diff --git a/.changeset/add-guildmember-move-method.md b/.changeset/add-guildmember-move-method.md deleted file mode 100644 index b49920f..0000000 --- a/.changeset/add-guildmember-move-method.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'@fluxerjs/core': minor ---- - -feat(core): add GuildMember.move() method for moving members between voice channels :> - -Adds a new `move()` method to the `GuildMember` class that provides an easy way to move members between voice channels or disconnect them from voice. - -This method wraps the existing `edit()` functionality with a cleaner API similar to d.js: - -```ts -// moves member to a different voice channel -await member.move('123456789012345678'); - -// disconnect said member from voice -await member.move(null); - -// move with specific connection ID -await member.move('123456789012345678', 'connection-id'); -``` - -The method requires the `MOVE_MEMBERS` permission and will throw appropriate errors if the member is not in voice or if permissions are missing. diff --git a/.changeset/community-bootstrap-release.md b/.changeset/community-bootstrap-release.md new file mode 100644 index 0000000..b1ab7b5 --- /dev/null +++ b/.changeset/community-bootstrap-release.md @@ -0,0 +1,17 @@ +--- +'@erinjs/builders': patch +'@erinjs/collection': patch +'@erinjs/core': patch +'@erinjs/rest': patch +'@erinjs/types': patch +'@erinjs/util': patch +'@erinjs/voice': patch +'@erinjs/ws': patch +--- + +chore(release): bootstrap @erinjs prerelease packages + +Initial prerelease for the @erinjs package line. + +Publishes the current SDK packages under @erinjs with the community prerelease +tag. Runtime APIs and package exports stay the same. \ No newline at end of file diff --git a/.changeset/config.json b/.changeset/config.json index 1472851..2602310 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -4,7 +4,7 @@ "commit": false, "fixed": [], "linked": [], - "access": "restricted", + "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", "ignore": [] diff --git a/.changeset/fix-ack-backpressure-4013.md b/.changeset/fix-ack-backpressure-4013.md deleted file mode 100644 index 72f5db0..0000000 --- a/.changeset/fix-ack-backpressure-4013.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@fluxerjs/ws': patch ---- - -fix(ws): add gateway close code 4013 (AckBackpressure) and mark as reconnectable - -The Fluxer gateway sends close code 4013 (`ack_backpressure`) when the -session's event acknowledgement buffer overflows. This is a transient -condition (the server had too many unacknowledged events queued) and is -safe to reconnect after. - -- Add `AckBackpressure: 4013` to `GatewayCloseCodes` -- Add `case 4013` to `shouldReconnectOnClose()` so the shard auto-reconnects diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 0000000..f084a2e --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,17 @@ +{ + "mode": "pre", + "tag": "community", + "initialVersions": { + "@erinjs/builders": "1.2.4", + "@erinjs/collection": "1.2.4", + "@erinjs/core": "1.2.4", + "@erinjs/docgen": "1.2.4", + "@erinjs/docs": "1.2.4", + "@erinjs/rest": "1.2.4", + "@erinjs/types": "1.2.4", + "@erinjs/util": "1.2.4", + "@erinjs/voice": "1.2.4", + "@erinjs/ws": "1.2.4" + }, + "changesets": [] +} \ No newline at end of file diff --git a/.changeset/six-icons-occur.md b/.changeset/six-icons-occur.md deleted file mode 100644 index 654ae58..0000000 --- a/.changeset/six-icons-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@fluxerjs/ws': patch ---- - -fix socket not closing before reconnect on an invalid session diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 816a8e6..12a0d8a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,5 +1,7 @@ -# These funding links will display a "Sponsor" button on your GitHub repo. -# Add your GitHub Sponsors username, or other platforms as needed. -# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository - -github: [blstmo] +custom: + [ + 'https://paypal.me/vesaber', + 'https://ko-fi.com/dogbonewish', + 'https://ko-fi.com/forgetfulskybro', + ] +ko_fi: jbcrn diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index aee27a2..e9d63e7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -22,7 +22,7 @@ What you expected to happen. ## Environment -- @fluxerjs/core version: +- @erinjs/core version: - Node.js version: - OS: diff --git a/.github/workflows/autoapp.yml b/.github/workflows/autoapp.yml new file mode 100644 index 0000000..b27b899 --- /dev/null +++ b/.github/workflows/autoapp.yml @@ -0,0 +1,21 @@ +name: Auto Approve + +on: + pull_request_target: + types: [opened, synchronize, reopened] + +jobs: + debug: + runs-on: ubuntu-latest + steps: + - run: echo "Author association: ${{ github.event.pull_request.author_association }}" + + auto-approve: + runs-on: ubuntu-latest + permissions: + pull-requests: write + if: github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' + + steps: + - uses: hmarr/auto-approve-action@v4 + continue-on-error: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fdaca8..f972571 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,11 @@ jobs: permissions: contents: write issues: write + pull-requests: write steps: - uses: actions/checkout@v4 with: - ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }} token: ${{ secrets.GITHUB_TOKEN }} - uses: pnpm/action-setup@v4 @@ -55,6 +56,7 @@ jobs: - name: Comment on fork PR about format fixes if: ${{ steps.format_check.outputs.has_changes == 'true' && github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository }} + continue-on-error: true uses: actions/github-script@v7 with: script: | @@ -87,7 +89,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }} - uses: pnpm/action-setup@v4 @@ -111,7 +113,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }} - uses: pnpm/action-setup@v4 @@ -141,7 +143,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }} - uses: pnpm/action-setup@v4 diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..a89ab4d --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,54 @@ +name: Deploy docs to blstmo-abandoned-us-for-the-milk/docs + +on: + push: + branches: [main] + paths: + - 'apps/docs-vitepress/**' + workflow_dispatch: + +permissions: + contents: read + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Generate GitHub App token + id: app-token + uses: actions/create-github-app-token@v1 + with: + app-id: ${{ secrets.DOCS_APP_ID }} + private-key: ${{ secrets.DOCS_APP_PRIVATE_KEY }} + owner: blstmo-abandoned-us-for-the-milk + repositories: docs + + - uses: pnpm/action-setup@v4 + + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Generate API docs + working-directory: apps/docs-vitepress + run: node --import tsx/esm scripts/generate-api.ts api-data/latest/main.json + + - name: Build VitePress + working-directory: apps/docs-vitepress + run: npx vitepress build + env: + VITEPRESS_BASE: /docs/ + + - name: Deploy to docs gh-pages + uses: peaceiris/actions-gh-pages@v4 + with: + personal_token: ${{ steps.app-token.outputs.token }} + external_repository: blstmo-abandoned-us-for-the-milk/docs + publish_branch: gh-pages + publish_dir: apps/docs-vitepress/.vitepress/dist diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml deleted file mode 100644 index 4562c49..0000000 --- a/.github/workflows/docs-deploy.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Deploy Docs - -on: - workflow_run: - workflows: [Publish] - types: [completed] - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - # Only run after Publish succeeds (Publish only runs on v* tags) - if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.event.workflow_run.head_sha || github.sha }} - - - uses: pnpm/action-setup@v4 - - - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install --ignore-scripts - - - name: Build docs - run: pnpm run docs:build - - - name: Test package loads (ESM + CJS) - run: pnpm run test:load - - - name: Deploy to Cloudflare Workers - uses: cloudflare/wrangler-action@v3 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - packageManager: pnpm diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e456069..5c2e12b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,16 +1,17 @@ -name: Publish +name: Release on: push: - tags: - - 'v*' + branches: [main] workflow_dispatch: jobs: - publish: + release: + if: ${{ vars.ERINJS_RELEASE_ENABLED == 'true' }} runs-on: ubuntu-latest permissions: - contents: read + contents: write + pull-requests: write id-token: write steps: - uses: actions/checkout@v4 @@ -24,12 +25,19 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install dependencies - run: pnpm install --ignore-scripts + run: pnpm install --frozen-lockfile --ignore-scripts - name: Test (all) run: pnpm run test:all - - name: Publish to npm - run: pnpm run publish:packages + - name: Create release PR or publish + uses: changesets/action@v1 + with: + version: pnpm exec changeset version + publish: pnpm exec changeset publish + commit: 'chore: version packages' + title: 'chore: version packages' env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.npmrc b/.npmrc index 3b4c929..98dee58 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1,3 @@ -# Prefer workspace packages; avoid fetching @fluxerjs/* from registry during install/publish +# Prefer workspace packages; avoid fetching community SDK packages from the registry during local install/publish +@erinjs:registry=https://registry.npmjs.org/ link-workspace-packages=true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 951e60b..cfcb97f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to Fluxer SDK +# Contributing to erin.js SDK Thank you for your interest in contributing! @@ -7,7 +7,7 @@ Thank you for your interest in contributing! 1. Clone the repository and install dependencies: ```bash - git clone https://github.com/fluxerjs/core.git + git clone https://github.com/blstmo-abandoned-us-for-the-milk/core.git cd core pnpm install ``` diff --git a/README.md b/README.md index 22a3a02..5876403 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ -# @fluxerjs/core +# @erinjs/core -[![CI](https://github.com/fluxerjs/core/actions/workflows/ci.yml/badge.svg)](https://github.com/fluxerjs/core/actions/workflows/ci.yml) -[![CodeQL](https://github.com/fluxerjs/core/actions/workflows/codeql.yml/badge.svg)](https://github.com/fluxerjs/core/actions/workflows/codeql.yml) -[![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/fluxerjs/core?utm_source=oss&utm_medium=github&utm_campaign=fluxerjs%2Fcore&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)](https://coderabbit.ai) -[![npm version](https://img.shields.io/npm/v/@fluxerjs/core.svg)](https://www.npmjs.com/package/@fluxerjs/core) +[![CI](https://github.com/blstmo-abandoned-us-for-the-milk/core/actions/workflows/ci.yml/badge.svg)](https://github.com/blstmo-abandoned-us-for-the-milk/core/actions/workflows/ci.yml) +[![CodeQL](https://github.com/blstmo-abandoned-us-for-the-milk/core/actions/workflows/codeql.yml/badge.svg)](https://github.com/blstmo-abandoned-us-for-the-milk/core/actions/workflows/codeql.yml) +[![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/blstmo-abandoned-us-for-the-milk/core?utm_source=oss&utm_medium=github&utm_campaign=blstmo-abandoned-us-for-the-milk%2Fcore&labelColor=171717&color=FF570A&link=https%3A%2F%2Fcoderabbit.ai&label=CodeRabbit+Reviews)](https://coderabbit.ai) +[![npm version](https://img.shields.io/npm/v/@erinjs/core.svg)](https://www.npmjs.com/package/@erinjs/core) [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE) -SDK for building bots on [Fluxer](https://fluxer.app). +erin.js is the SDK for building bots on [Fluxer](https://fluxer.app). ## Install ```bash -npm install @fluxerjs/core +npm install @erinjs/core ``` ## Usage ```javascript -import { Client, Events } from '@fluxerjs/core'; +import { Client, Events } from '@erinjs/core'; const client = new Client({ intents: 0 }); @@ -35,10 +35,12 @@ See [`examples/ping-bot.js`](./examples/ping-bot.js) for voice, embeds, and more The docs site is a custom Vue app that pulls API docs from the SDK via a custom docgen (TypeScript Compiler API). +Public docs: https://erin.js.org + **From the repo root:** ```bash -# Dev server — http://localhost:3333 +# Local dev server — http://localhost:3333 pnpm run docs:dev # Generate docs JSON + build the site diff --git a/SECURITY.md b/SECURITY.md index effd65c..bc3a340 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -18,4 +18,4 @@ If you discover a security vulnerability, please report it responsibly: 3. Include a description of the vulnerability and steps to reproduce 4. Allow time for a fix before public disclosure -We will acknowledge your report and work on a fix. Thank you for helping keep the Fluxer SDK secure. +We will acknowledge your report and work on a fix. Thank you for helping keep the erin.js SDK secure. diff --git a/apps/docs-vitepress/.gitignore b/apps/docs-vitepress/.gitignore new file mode 100644 index 0000000..36e86b3 --- /dev/null +++ b/apps/docs-vitepress/.gitignore @@ -0,0 +1,5 @@ +node_modules/ +.vitepress/dist/ +.vitepress/cache/ +v/latest/api/ +v/*/api/ diff --git a/apps/docs-vitepress/.vitepress/config.ts b/apps/docs-vitepress/.vitepress/config.ts new file mode 100644 index 0000000..d92ec41 --- /dev/null +++ b/apps/docs-vitepress/.vitepress/config.ts @@ -0,0 +1,141 @@ +import { defineConfig } from 'vitepress' + +// Set to '/docs/' for project pages (github.com/blstmo-abandoned-us-for-the-milk/docs) +// Set to '/' if using a custom domain +const BASE = process.env.VITEPRESS_BASE ?? '/docs/' + +export default defineConfig({ + base: BASE, + title: 'erin.js', + + + description: 'SDK for building bots on erin.', + lang: 'en-US', + + head: [['link', { rel: 'icon', href: `${BASE}favicon.svg` }]], + + themeConfig: { + siteTitle: 'erin.js', + + nav: [ + { text: 'Guides', link: '/v/latest/guides/installation' }, + { text: 'API', link: '/v/latest/api/classes/' }, + { text: 'Changelog', link: '/changelog' }, + { + text: 'v/latest', + items: [ + { text: 'latest', link: '/v/latest/guides/installation' }, + // Add versioned links here as new versions are cut: + // { text: '1.2.4', link: '/v/1.2.4/guides/installation' }, + ], + }, + { + text: 'GitHub', + link: 'https://github.com/blstmo-abandoned-us-for-the-milk/core', + }, + ], + + sidebar: { + '/v/latest/guides/': [ + { + text: 'Getting Started', + items: [ + { text: 'Installation', link: '/v/latest/guides/installation' }, + { text: 'Basic Bot', link: '/v/latest/guides/basic-bot' }, + { text: 'Discord.js Compatibility', link: '/v/latest/guides/discord-js-compatibility' }, + ], + }, + { + text: 'Sending Messages', + items: [ + { text: 'Sending Without Reply', link: '/v/latest/guides/sending-without-reply' }, + { text: 'Embeds', link: '/v/latest/guides/embeds' }, + { text: 'Editing Embeds', link: '/v/latest/guides/editing-embeds' }, + { text: 'Reactions', link: '/v/latest/guides/reactions' }, + ], + }, + { + text: 'Media', + items: [ + { text: 'Embed Media', link: '/v/latest/guides/embed-media' }, + { text: 'GIFs', link: '/v/latest/guides/gifs' }, + { text: 'Attachments', link: '/v/latest/guides/attachments' }, + { text: 'Attachments by URL', link: '/v/latest/guides/attachments-by-url' }, + { text: 'Profile URLs', link: '/v/latest/guides/profile-urls' }, + ], + }, + { + text: 'Webhooks', + items: [ + { text: 'Webhooks', link: '/v/latest/guides/webhooks' }, + { text: 'Webhook Attachments & Embeds', link: '/v/latest/guides/webhook-attachments-embeds' }, + ], + }, + { + text: 'Voice', + items: [ + { text: 'Voice', link: '/v/latest/guides/voice' }, + ], + }, + { + text: 'Events', + items: [ + { text: 'Events', link: '/v/latest/guides/events' }, + { text: 'Wait for Guilds', link: '/v/latest/guides/wait-for-guilds' }, + { text: 'Prefix Commands', link: '/v/latest/guides/prefix-commands' }, + ], + }, + { + text: 'Channels', + items: [ + { text: 'Channels', link: '/v/latest/guides/channels' }, + { text: 'Roles', link: '/v/latest/guides/roles' }, + ], + }, + { + text: 'Emojis', + items: [ + { text: 'Emojis', link: '/v/latest/guides/emojis' }, + ], + }, + { + text: 'Other', + items: [ + { text: 'Permissions', link: '/v/latest/guides/permissions' }, + { text: 'Moderation', link: '/v/latest/guides/moderation' }, + { text: 'Deprecated APIs', link: '/v/latest/guides/deprecated-apis' }, + ], + }, + ], + + '/v/latest/api/': [ + { + text: 'Classes', + link: '/v/latest/api/classes/', + }, + { + text: 'Interfaces', + link: '/v/latest/api/interfaces/', + }, + { + text: 'Enums', + link: '/v/latest/api/enums/', + }, + ], + }, + + editLink: { + pattern: 'https://github.com/blstmo-abandoned-us-for-the-milk/core/edit/main/apps/docs-vitepress/:path', + text: 'Edit this page on GitHub', + }, + + search: { + provider: 'local', + }, + + footer: { + message: 'Released under the Apache-2.0 License.', + copyright: 'erin.js — forked from fluxer.js', + }, + }, +}) diff --git a/apps/docs-vitepress/api-data/latest/main.json b/apps/docs-vitepress/api-data/latest/main.json new file mode 100644 index 0000000..66bacd9 --- /dev/null +++ b/apps/docs-vitepress/api-data/latest/main.json @@ -0,0 +1,15035 @@ +{ + "meta": { + "generator": "fluxer-docgen", + "version": "1", + "date": 1775296500443 + }, + "package": "@fluxerjs/core", + "version": "1.2.4", + "packages": [ + "@fluxerjs/builders", + "@fluxerjs/collection", + "@fluxerjs/core", + "@fluxerjs/rest", + "@fluxerjs/types", + "@fluxerjs/util", + "@fluxerjs/voice", + "@fluxerjs/ws" + ], + "classes": [ + { + "name": "AttachmentBuilder", + "description": "Builder for attachment metadata (filename, description, spoiler). Actual file data is passed separately when sending.", + "constructor": { + "params": [ + { + "name": "id", + "type": "number", + "optional": false, + "description": "Index of the attachment (0-based). Must match the FormData part order." + }, + { + "name": "filename", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "Partial", + "optional": true + } + ] + }, + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "spoiler", + "type": "boolean", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "setDescription", + "params": [ + { + "name": "description", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the attachment description (alt text).", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 46 + } + }, + { + "name": "setName", + "params": [ + { + "name": "name", + "type": "string", + "optional": false + } + ], + "returns": "this", + "description": "Set the displayed filename.", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 37 + } + }, + { + "name": "setSpoiler", + "params": [ + { + "name": "spoiler", + "type": "boolean", + "optional": false + } + ], + "returns": "this", + "description": "Mark the attachment as a spoiler (blurred until clicked).", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 52 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "APIAttachmentPayload", + "description": "Convert to API format for MessagePayload.", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 62 + } + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 19, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "Base", + "description": "Base class for all Fluxer structures. Provides the client reference.", + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false, + "description": "The client instance this structure belongs to." + } + ], + "methods": [], + "source": { + "file": "Base.ts", + "line": 4, + "path": "packages/fluxer-core/src/structures/Base.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "BitField", + "constructor": { + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable", + "optional": false + } + ] + }, + "properties": [ + { + "name": "[Symbol.toStringTag]", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "bitfield", + "type": "bigint", + "readonly": false, + "optional": false + }, + { + "name": "defaultBit", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "Flags", + "type": "Record", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "add", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "BitField.ts", + "line": 56 + } + }, + { + "name": "equals", + "params": [ + { + "name": "bitfield", + "type": "BitField", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "BitField.ts", + "line": 98 + } + }, + { + "name": "freeze", + "params": [], + "returns": "Readonly>", + "async": false, + "source": { + "file": "BitField.ts", + "line": 102 + } + }, + { + "name": "has", + "params": [ + { + "name": "bit", + "type": "BitFieldResolvable", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "BitField.ts", + "line": 51 + } + }, + { + "name": "remove", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "BitField.ts", + "line": 65 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable", + "optional": false + } + ], + "returns": "bigint", + "async": false, + "source": { + "file": "BitField.ts", + "line": 28 + } + }, + { + "name": "serialize", + "params": [], + "returns": "Record", + "async": false, + "source": { + "file": "BitField.ts", + "line": 74 + } + }, + { + "name": "toArray", + "params": [], + "returns": "S[]", + "async": false, + "source": { + "file": "BitField.ts", + "line": 83 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "string", + "async": false, + "source": { + "file": "BitField.ts", + "line": 90 + } + }, + { + "name": "valueOf", + "params": [], + "returns": "string", + "async": false, + "source": { + "file": "BitField.ts", + "line": 94 + } + } + ], + "source": { + "file": "BitField.ts", + "line": 15, + "path": "packages/util/src/BitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "CategoryChannel", + "extends": "GuildChannel", + "properties": [], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 388, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Channel", + "description": "Base class for all channel types.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannelPartial", + "optional": false, + "description": "API channel from GET /channels/{id} or GET /guilds/{id}/channels" + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Channel icon hash (Group DMs). Null if none." + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "lastPinTimestamp", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "ISO timestamp when the last message was pinned. Null if never pinned." + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Channel name. Guild channels and Group DMs have names; 1:1 DMs are typically null." + }, + { + "name": "type", + "type": "ChannelType", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "bulkDeleteMessages", + "params": [ + { + "name": "messageIds", + "type": "string[]", + "optional": false, + "description": "Array of message IDs to delete (2–100)" + } + ], + "returns": "Promise", + "description": "Bulk delete messages. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 107 + } + }, + { + "name": "canSendMessage", + "params": [], + "returns": "boolean", + "description": "Whether the bot can send messages in this channel.\nFor DMs: always true (when the channel exists).\nFor guild channels: checks ViewChannel and SendMessages permissions via guild.members.me.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 126 + } + }, + { + "name": "createDM", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannelPartial", + "optional": false + } + ], + "returns": "DMChannel", + "description": "Create a DM channel from API data (type DM or GroupDM).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 47 + } + }, + { + "name": "from", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "Channel data from the API" + } + ], + "returns": "GuildChannel | TextChannel | null", + "description": "Create the appropriate channel subclass from API data.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 76 + } + }, + { + "name": "fromOrCreate", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ], + "returns": "DMChannel | GuildChannel | TextChannel | null", + "description": "Create a channel from API data, including DM and GroupDM.\nUsed by ChannelManager.fetch() for GET /channels/{id}.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 93 + } + }, + { + "name": "isDM", + "params": [], + "returns": "boolean", + "description": "Whether this channel is a DM or Group DM.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 33 + } + }, + { + "name": "isLink", + "params": [], + "returns": "boolean", + "async": false, + "source": { + "file": "Channel.ts", + "line": 42 + } + }, + { + "name": "isTextBased", + "params": [], + "returns": "boolean", + "description": "Whether this channel has a send method (TextChannel, DMChannel).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 28 + } + }, + { + "name": "isVoice", + "params": [], + "returns": "boolean", + "description": "Whether this channel is voice-based (VoiceChannel).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 38 + } + }, + { + "name": "sendTyping", + "params": [], + "returns": "Promise", + "description": "Send a typing indicator to the channel. Lasts ~10 seconds.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 117 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 26, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ChannelManager", + "description": "Manages channels with fetch and send.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + } + ], + "returns": "Promise", + "description": "Fetch a channel by ID from the API (or return from cache if present).", + "examples": [ + "const channel = await client.channels.fetch(channelId);\nif (channel?.isTextBased()) await channel.send('Hello!');" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 56 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + }, + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from the API.", + "examples": [ + "const channel = await client.channels.resolve(channelId);\nconst message = await channel?.messages?.fetch(messageId);" + ], + "async": true, + "deprecated": "Use channel.messages.fetch(messageId). Prefer (await client.channels.resolve(channelId))?.messages?.fetch(messageId).", + "source": { + "file": "ChannelManager.ts", + "line": 99 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + } + ], + "returns": "Promise", + "description": "Get a channel from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.channels.get(id) ?? (await client.channels.fetch(id))`.", + "examples": [ + "const channel = await client.channels.resolve(message.channelId);\nif (channel?.isTextBased()) await channel.send('Hello!');" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 43 + } + }, + { + "name": "send", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel (text channel or DM)" + }, + { + "name": "payload", + "type": "string | MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to a channel by ID. Works even when the channel is not cached.\nSkips the fetch when you only need to send.", + "examples": [ + "await client.channels.send(logChannelId, 'User joined!');\nawait client.channels.send(channelId, { embeds: [embed] });\nawait client.channels.send(channelId, { content: 'Report', files: [{ name: 'log.txt', data }] });" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 134 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "Channel", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "ChannelManager.ts", + "line": 25 + } + } + ], + "source": { + "file": "ChannelManager.ts", + "line": 17, + "path": "packages/fluxer-core/src/client/ChannelManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Client", + "description": "Main Fluxer bot client. Connects to the gateway, emits events, and provides REST access.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "ClientOptions", + "optional": false, + "description": "Token, REST config, WebSocket, presence, etc." + } + ] + }, + "properties": [ + { + "name": "channels", + "type": "ChannelManager", + "readonly": true, + "optional": false + }, + { + "name": "events", + "type": "ClientEventMethods", + "readonly": true, + "optional": false, + "description": "Typed event handlers. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...)." + }, + { + "name": "guilds", + "type": "GuildManager", + "readonly": true, + "optional": false + }, + { + "name": "readyAt", + "type": "Date | null", + "readonly": false, + "optional": false, + "description": "Timestamp when the client became ready. Null until READY is received." + }, + { + "name": "rest", + "type": "REST", + "readonly": true, + "optional": false + }, + { + "name": "Routes", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "user", + "type": "ClientUser | null", + "readonly": false, + "optional": false, + "description": "The authenticated bot user. Null until READY is received." + }, + { + "name": "users", + "type": "UsersManager", + "readonly": true, + "optional": false + }, + { + "name": "ws", + "type": "WebSocketManager", + "readonly": true, + "optional": false, + "description": "WebSocket manager. Throws if not logged in." + } + ], + "methods": [ + { + "name": "assertEmojiInGuild", + "params": [ + { + "name": "emojiId", + "type": "string", + "optional": false + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Asserts that a custom emoji (by id) belongs to the given guild.\nUsed when reacting in guild channels to reject emojis from other servers.", + "async": true, + "source": { + "file": "Client.ts", + "line": 254 + } + }, + { + "name": "assertReady", + "params": [], + "returns": "void", + "description": "Throws if the client is not ready. Use before accessing client.user or other post-ready state.", + "async": false, + "source": { + "file": "Client.ts", + "line": 534 + } + }, + { + "name": "destroy", + "params": [], + "returns": "Promise", + "description": "Disconnect from the gateway and clear cached data.", + "async": true, + "source": { + "file": "Client.ts", + "line": 507 + } + }, + { + "name": "fetchInstance", + "params": [], + "returns": "Promise", + "description": "Fetch instance info (API URL, gateway URL, features). GET /instance.\nDoes not require authentication.", + "async": true, + "source": { + "file": "Client.ts", + "line": 271 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + }, + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by channel and message ID. Use when you have IDs (e.g. from a DB).", + "examples": [ + "const channel = await client.channels.resolve(channelId);\nconst message = await channel?.messages?.fetch(messageId);" + ], + "async": true, + "deprecated": "Use channel.messages.fetch(messageId). For IDs-only: (await client.channels.resolve(channelId))?.messages?.fetch(messageId)", + "source": { + "file": "Client.ts", + "line": 286 + } + }, + { + "name": "getOrCreateUser", + "params": [ + { + "name": "data", + "type": "APIUserPartial", + "optional": false + } + ], + "returns": "User", + "description": "Get or create a User from API data. Caches in client.users.\nUpdates existing user's username, avatar, etc. when fresh data is provided.", + "async": false, + "source": { + "file": "Client.ts", + "line": 351 + } + }, + { + "name": "handleDispatch", + "params": [ + { + "name": "payload", + "type": "GatewayReceivePayload", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "Client.ts", + "line": 377 + } + }, + { + "name": "isReady", + "params": [], + "returns": "boolean", + "description": "Returns true if the client has received Ready and `user` is set.", + "async": false, + "source": { + "file": "Client.ts", + "line": 526 + } + }, + { + "name": "login", + "params": [ + { + "name": "token", + "type": "string", + "optional": false, + "description": "Bot token (e.g. from FLUXER_BOT_TOKEN)" + } + ], + "returns": "Promise", + "description": "Connect to the Fluxer gateway and authenticate.", + "async": true, + "source": { + "file": "Client.ts", + "line": 392 + } + }, + { + "name": "resolveEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Emoji string or object" + }, + { + "name": "guildId", + "type": "string | null", + "optional": true, + "description": "Guild ID for resolving custom emoji by name (required when id is missing)" + } + ], + "returns": "Promise", + "description": "Resolve an emoji argument to the API format (unicode or \"name:id\").\nSupports: <:name:id>, :name:, name:id, { name, id }, unicode.\nWhen id is missing (e.g. :name:), fetches guild emojis if guildId provided.\nWhen reacting in a guild channel, custom emojis must be from that guild.", + "async": true, + "source": { + "file": "Client.ts", + "line": 203 + } + }, + { + "name": "sendToChannel", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "payload", + "type": "string | MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a message to any channel by ID. Shorthand for client.channels.send().\nWorks even when the channel is not cached.", + "async": true, + "deprecated": "Use client.channels.send(channelId, payload).", + "source": { + "file": "Client.ts", + "line": 299 + } + }, + { + "name": "sendToGateway", + "params": [ + { + "name": "shardId", + "type": "number", + "optional": false, + "description": "Shard ID (use 0 for single-shard)" + }, + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false, + "description": "Gateway payload to send" + } + ], + "returns": "void", + "description": "Send a payload to the gateway (e.g. Voice State Update).", + "async": false, + "source": { + "file": "Client.ts", + "line": 373 + } + } + ], + "source": { + "file": "Client.ts", + "line": 152, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientUser", + "extends": "User", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIUserPartial", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetchGuilds", + "params": [], + "returns": "Promise", + "description": "Fetch guilds the bot is a member of.", + "async": true, + "source": { + "file": "ClientUser.ts", + "line": 18 + } + }, + { + "name": "leaveGuild", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "The guild ID to leave" + } + ], + "returns": "Promise", + "description": "Leave a guild. Requires the bot to be a member.", + "async": true, + "source": { + "file": "ClientUser.ts", + "line": 36 + } + } + ], + "source": { + "file": "ClientUser.ts", + "line": 7, + "path": "packages/fluxer-core/src/client/ClientUser.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Collection", + "description": "Extended Map with utility methods for key-value collections.\nSimilar to discord.js Collection.", + "extends": "Map", + "properties": [], + "methods": [ + { + "name": "clone", + "params": [], + "returns": "Collection", + "description": "Creates an identical shallow copy of this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 148 + } + }, + { + "name": "concat", + "params": [ + { + "name": "collections", + "type": "ReadonlyCollection[]", + "optional": false + } + ], + "returns": "Collection", + "description": "Combines this collection with others into a new collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 155 + } + }, + { + "name": "every", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "boolean", + "description": "Tests whether all elements pass the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 106 + } + }, + { + "name": "filter", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "Collection", + "description": "Creates a new collection with all elements that pass the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 74 + } + }, + { + "name": "find", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "V | undefined", + "description": "Searches for a single item where the given function returns a truthy value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 54 + } + }, + { + "name": "findKey", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "K | undefined", + "description": "Returns the key of the first item where the given function returns a truthy value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 64 + } + }, + { + "name": "first", + "params": [], + "returns": "V | undefined", + "description": "Obtains the first value(s) in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 10 + } + }, + { + "name": "first", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 11 + } + }, + { + "name": "first", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 12 + } + }, + { + "name": "last", + "params": [], + "returns": "V | undefined", + "description": "Obtains the last value(s) in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 23 + } + }, + { + "name": "last", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 24 + } + }, + { + "name": "last", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 25 + } + }, + { + "name": "map", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => T", + "optional": false + } + ], + "returns": "T[]", + "description": "Creates a new array with the results of calling the provided function on every element.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 85 + } + }, + { + "name": "partition", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "[Collection, Collection]", + "description": "Partitions the collection into two collections: one that passes the predicate and one that fails.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 127 + } + }, + { + "name": "random", + "params": [], + "returns": "V | undefined", + "description": "Returns a random value from this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 36 + } + }, + { + "name": "random", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 37 + } + }, + { + "name": "random", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 38 + } + }, + { + "name": "reduce", + "params": [ + { + "name": "fn", + "type": "(accumulator: T, value: V, key: K) => T", + "optional": false + }, + { + "name": "initialValue", + "type": "T", + "optional": false + } + ], + "returns": "T", + "description": "Applies a function against an accumulator and each element to reduce the collection to a single value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 116 + } + }, + { + "name": "some", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "boolean", + "description": "Tests whether at least one element passes the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 96 + } + }, + { + "name": "sort", + "params": [ + { + "name": "compareFn", + "type": "(a: V, b: V, aKey: K, bKey: K) => number", + "optional": true + } + ], + "returns": "this", + "description": "Sorts the collection in place and returns it.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 166 + } + }, + { + "name": "tap", + "params": [ + { + "name": "fn", + "type": "(collection: this) => void", + "optional": false + } + ], + "returns": "this", + "description": "Invokes the given function and returns this collection (for chaining).", + "async": false, + "source": { + "file": "Collection.ts", + "line": 140 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "V[]", + "description": "Returns an array of the values in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 181 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a string representation of the collection (array of values).", + "async": false, + "source": { + "file": "Collection.ts", + "line": 188 + } + } + ], + "source": { + "file": "Collection.ts", + "line": 5, + "path": "packages/collection/src/Collection.ts" + }, + "package": "@fluxerjs/collection" + }, + { + "name": "DMChannel", + "description": "DM channel (direct message between bot and a user).", + "extends": "Channel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ] + }, + "properties": [ + { + "name": "lastMessageId", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "MessageManager", + "readonly": true, + "optional": false, + "description": "Message manager for this channel. Use channel.messages.fetch(messageId)." + }, + { + "name": "nicks", + "type": "Record", + "readonly": false, + "optional": false, + "description": "Group DM member display names (userId -> nickname)." + }, + { + "name": "ownerId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Group DM creator ID. Null for 1:1 DMs." + }, + { + "name": "recipients", + "type": "User[]", + "readonly": false, + "optional": false, + "description": "Group DM recipients as User objects. Empty for 1:1 DMs." + } + ], + "methods": [ + { + "name": "addRecipient", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Add a recipient to this Group DM. Requires Group DM (type GroupDM).\nPUT /channels/{id}/recipients/{userId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 491 + } + }, + { + "name": "createMessageCollector", + "params": [ + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "MessageCollector", + "description": "Create a message collector for this DM channel.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 453 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this DM channel.", + "async": true, + "deprecated": "Use channel.messages.fetch(messageId) instead.", + "source": { + "file": "Channel.ts", + "line": 479 + } + }, + { + "name": "fetchPinnedMessages", + "params": [], + "returns": "Promise", + "description": "Fetch pinned messages in this DM channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 461 + } + }, + { + "name": "removeRecipient", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ silent?: boolean; }", + "optional": true, + "description": "silent: if true, does not send a system message (default false)" + } + ], + "returns": "Promise", + "description": "Remove a recipient from this Group DM. Requires Group DM (type GroupDM).\nDELETE /channels/{id}/recipients/{userId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 502 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this DM channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 434 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 411, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "EmbedBuilder", + "description": "Builder for creating rich embeds. Use `toJSON()` when passing to `reply`, `send`, or `edit`.\nEmbeds must have at least one of: title, description, fields, or image/thumbnail.\nA description-only embed (no title) is valid.", + "properties": [ + { + "name": "data", + "type": "APIEmbed", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addFields", + "params": [ + { + "name": "fields", + "type": "EmbedFieldData[]", + "optional": false + } + ], + "returns": "this", + "description": "Add one or more fields. Max 25 fields.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 181 + } + }, + { + "name": "from", + "params": [ + { + "name": "data", + "type": "APIEmbed", + "optional": false + } + ], + "returns": "EmbedBuilder", + "description": "Create an EmbedBuilder from an existing API embed.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 223 + } + }, + { + "name": "setAudio", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false, + "description": "Audio URL, full media options, or null to clear" + } + ], + "returns": "this", + "description": "Set the embed audio. Supported by Fluxer.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 175 + } + }, + { + "name": "setAuthor", + "params": [ + { + "name": "options", + "type": "EmbedAuthorOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed author (name, optional icon URL and link).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 120 + } + }, + { + "name": "setColor", + "params": [ + { + "name": "color", + "type": "string | number | [number, number, number] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed color. Number (hex), hex string, or `[r,g,b]` array.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 99 + } + }, + { + "name": "setDescription", + "params": [ + { + "name": "description", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed description. Max 4096 characters.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 82 + } + }, + { + "name": "setFooter", + "params": [ + { + "name": "options", + "type": "EmbedFooterOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed footer (text, optional icon URL).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 134 + } + }, + { + "name": "setImage", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed image (URL string or full media options).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 147 + } + }, + { + "name": "setThumbnail", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed thumbnail (URL string or full media options).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 153 + } + }, + { + "name": "setTimestamp", + "params": [ + { + "name": "timestamp", + "type": "number | Date | null", + "optional": true + } + ], + "returns": "this", + "description": "Set the embed timestamp. Omit for current time.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 109 + } + }, + { + "name": "setTitle", + "params": [ + { + "name": "title", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed title. Max 256 characters.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 74 + } + }, + { + "name": "setURL", + "params": [ + { + "name": "url", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed URL (title becomes a link).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 90 + } + }, + { + "name": "setVideo", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false, + "description": "Video URL, full media options (e.g. duration for progress bars), or null to clear" + } + ], + "returns": "this", + "description": "Set the embed video. Supported by Fluxer.\nEmbed stays type 'rich'; this adds the .video field.\nInclude a title (e.g. setTitle) when using video.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 165 + } + }, + { + "name": "spliceFields", + "params": [ + { + "name": "index", + "type": "number", + "optional": false + }, + { + "name": "deleteCount", + "type": "number", + "optional": false + }, + { + "name": "fields", + "type": "EmbedFieldData[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 195 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "APIEmbed", + "description": "Convert to API embed format for `reply`, `send`, or `edit`.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 208 + } + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 70, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "FluxerAPIError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "body", + "type": "APIErrorBody", + "optional": false + }, + { + "name": "statusCode", + "type": "number", + "optional": false + } + ] + }, + "properties": [ + { + "name": "code", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "errors", + "type": "APIErrorBody", + "readonly": true, + "optional": true + }, + { + "name": "isRetryable", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "True if the error is retryable (429 rate limit, 5xx server errors)." + }, + { + "name": "statusCode", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "FluxerAPIError.ts", + "line": 3, + "path": "packages/rest/src/errors/FluxerAPIError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "FluxerError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "message", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "FluxerErrorOptions", + "optional": true + } + ] + }, + "properties": [ + { + "name": "code", + "type": "string", + "readonly": true, + "optional": true + } + ], + "methods": [], + "source": { + "file": "FluxerError.ts", + "line": 6, + "path": "packages/fluxer-core/src/errors/FluxerError.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Guild", + "description": "Represents a Fluxer guild (server).", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API guild from GET /guilds/{id} or gateway GUILD_CREATE" + } + ] + }, + "properties": [ + { + "name": "afkChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "AFK voice channel ID. Null if none." + }, + { + "name": "afkTimeout", + "type": "number", + "readonly": false, + "optional": false, + "description": "AFK timeout in seconds." + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "bannerHeight", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Banner image height. Optional." + }, + { + "name": "bannerWidth", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Banner image width. Optional." + }, + { + "name": "channels", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "defaultMessageNotifications", + "type": "DefaultMessageNotifications", + "readonly": false, + "optional": false + }, + { + "name": "emojis", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "explicitContentFilter", + "type": "GuildExplicitContentFilter", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "GuildFeature[]", + "readonly": false, + "optional": false, + "description": "Enabled guild features." + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "members", + "type": "GuildMemberManager", + "readonly": false, + "optional": false + }, + { + "name": "mfaLevel", + "type": "GuildMFALevel", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfwLevel", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "ownerId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "roles", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "rulesChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Rules/guidelines channel ID. Null if none." + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Invite splash image hash. Null if none." + }, + { + "name": "splashHeight", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Splash image height. Optional." + }, + { + "name": "splashWidth", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Splash image width. Optional." + }, + { + "name": "systemChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "System messages channel ID. Null if none." + }, + { + "name": "vanityURLCode", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Custom vanity URL code (e.g. fluxer.gg/code). Null if none." + }, + { + "name": "verificationLevel", + "type": "GuildVerificationLevel", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "addRoleToMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member" + }, + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to add (or use guild.resolveRoleId for mention/name resolution)\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Add a role to a member by user ID. Does not require fetching the member first.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 138 + } + }, + { + "name": "ban", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to ban" + }, + { + "name": "options", + "type": "{ reason?: string; delete_message_days?: number; ban_duration_seconds?: number; }", + "optional": true, + "description": "Optional reason, delete_message_days (0–7), and ban_duration_seconds (temporary ban).\n ban_duration_seconds: 0 = permanent, or use 3600, 43200, 86400, 259200, 432000, 604800, 1209600, 2592000.\nRequires Ban Members permission." + } + ], + "returns": "Promise", + "description": "Ban a user from this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 264 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild banner URL, or null if no banner.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 119 + } + }, + { + "name": "createChannel", + "params": [ + { + "name": "data", + "type": "{ type: 0 | 2 | 4 | 5; name: string; parent_id?: string | null; topic?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; permission_overwrites?: Array<{ id: string; type: number; allow: string; deny: string; }>; }", + "optional": false, + "description": "Channel data: type (0=text, 2=voice, 4=category, 5=link), name, and optional parent_id, topic, bitrate, user_limit, nsfw, permission_overwrites\nRequires Manage Channels permission." + } + ], + "returns": "Promise", + "description": "Create a channel in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 376 + } + }, + { + "name": "createEmojisBulk", + "params": [ + { + "name": "emojis", + "type": "{ name: string; image: string; }[]", + "optional": false, + "description": "Array of { name, image } (base64), 1-50 emojis" + } + ], + "returns": "Promise", + "description": "Bulk create emojis. POST /guilds/{id}/emojis/bulk.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 641 + } + }, + { + "name": "createRole", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Role data (permissions accepts PermissionResolvable for convenience)" + } + ], + "returns": "Promise", + "description": "Create a role in this guild.\nRequires Manage Roles permission.", + "examples": [ + "const role = await guild.createRole({ name: 'Mod', permissions: ['KickMembers', 'BanMembers'] });" + ], + "async": true, + "source": { + "file": "Guild.ts", + "line": 160 + } + }, + { + "name": "createStickersBulk", + "params": [ + { + "name": "stickers", + "type": "{ name: string; image: string; description?: string; tags?: string[]; }[]", + "optional": false, + "description": "Array of { name, image, description?, tags? }, 1-50 stickers" + } + ], + "returns": "Promise", + "description": "Bulk create stickers. POST /guilds/{id}/stickers/bulk.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 658 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this guild. POST /guilds/{id}/delete.\nMust be the guild owner.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 462 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string; icon?: string | null; system_channel_id?: string | null; system_channel_flags?: number; afk_channel_id?: string | null; afk_timeout?: number; default_message_notifications?: DefaultMessageNotifications; ... 7 more ...; features?: GuildFeature[]; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this guild. PATCH /guilds/{id}.\nRequires guild owner or Administrator.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 421 + } + }, + { + "name": "fetchAuditLogs", + "params": [ + { + "name": "options", + "type": "{ limit?: number; before?: string; after?: string; userId?: string; actionType?: number; }", + "optional": true, + "description": "Optional limit, before, after, user_id, action_type for filtering" + } + ], + "returns": "Promise", + "description": "Fetch guild audit logs. Requires View Audit Log permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 346 + } + }, + { + "name": "fetchBans", + "params": [], + "returns": "Promise", + "description": "Fetch guild bans. Requires Ban Members permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 284 + } + }, + { + "name": "fetchChannels", + "params": [], + "returns": "Promise", + "description": "Fetch all channels in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 402 + } + }, + { + "name": "fetchEmoji", + "params": [ + { + "name": "emojiId", + "type": "string", + "optional": false, + "description": "The emoji ID to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a single emoji by ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 613 + } + }, + { + "name": "fetchEmojis", + "params": [], + "returns": "Promise", + "description": "Fetch all emojis in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 593 + } + }, + { + "name": "fetchMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a guild member by user ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 317 + } + }, + { + "name": "fetchRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a role by ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 210 + } + }, + { + "name": "fetchRoles", + "params": [], + "returns": "Promise", + "description": "Fetch all roles in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 190 + } + }, + { + "name": "fetchVanityURL", + "params": [], + "returns": "Promise", + "description": "Fetch vanity URL for this guild. GET /guilds/{id}/vanity-url.\nRequires Manage Guild permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 471 + } + }, + { + "name": "fetchWebhooks", + "params": [], + "returns": "Promise", + "description": "Fetch all webhooks in this guild. Returned webhooks do not include the token (cannot send).", + "async": true, + "source": { + "file": "Guild.ts", + "line": 365 + } + }, + { + "name": "iconURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild icon URL, or null if no icon.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 112 + } + }, + { + "name": "kick", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to kick\nRequires Kick Members permission." + } + ], + "returns": "Promise", + "description": "Kick a member from this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 306 + } + }, + { + "name": "removeRoleFromMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member" + }, + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to remove\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Remove a role from a member by user ID. Does not require fetching the member first.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 148 + } + }, + { + "name": "resetRoleHoistPositions", + "params": [], + "returns": "Promise", + "description": "Reset role hoist positions. DELETE /guilds/{id}/roles/hoist-positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 558 + } + }, + { + "name": "resolveRoleId", + "params": [ + { + "name": "arg", + "type": "string", + "optional": false, + "description": "Role mention (@role), role ID, or role name" + } + ], + "returns": "Promise", + "description": "Resolve a role ID from an argument (role mention, raw ID, or name).\nFetches guild roles if name is provided.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 239 + } + }, + { + "name": "setChannelPositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; position?: number; parent_id?: string | null; lock_permissions?: boolean; }[]", + "optional": false, + "description": "Array of { id, position?, parent_id?, lock_permissions? }\nRequires Manage Channels permission." + } + ], + "returns": "Promise", + "description": "Update channel positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 575 + } + }, + { + "name": "setDetachedBanner", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set detached banner feature. PATCH /guilds/{id}/detached-banner.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 501 + } + }, + { + "name": "setDisallowUnclaimedAccounts", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set disallow unclaimed accounts. PATCH /guilds/{id}/disallow-unclaimed-accounts.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 513 + } + }, + { + "name": "setRoleHoistPositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; hoist_position?: number; }[]", + "optional": false + } + ], + "returns": "Promise", + "description": "Update role hoist positions. PATCH /guilds/{id}/roles/hoist-positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 541 + } + }, + { + "name": "setRolePositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; position?: number; }[]", + "optional": false, + "description": "Array of { id, position? }" + } + ], + "returns": "Promise", + "description": "Update role positions. PATCH /guilds/{id}/roles.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 526 + } + }, + { + "name": "setTextChannelFlexibleNames", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set text channel flexible names feature. PATCH /guilds/{id}/text-channel-flexible-names.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 489 + } + }, + { + "name": "splashURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild splash (invite background) URL, or null if no splash.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 126 + } + }, + { + "name": "transferOwnership", + "params": [ + { + "name": "newOwnerId", + "type": "string", + "optional": false + }, + { + "name": "password", + "type": "string", + "optional": true + } + ], + "returns": "Promise", + "description": "Transfer guild ownership to another user. POST /guilds/{id}/transfer-ownership.\nMust be the guild owner.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 479 + } + }, + { + "name": "unban", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to unban\nRequires Ban Members permission." + } + ], + "returns": "Promise", + "description": "Remove a ban (unban a user).", + "async": true, + "source": { + "file": "Guild.ts", + "line": 297 + } + } + ], + "source": { + "file": "Guild.ts", + "line": 41, + "path": "packages/fluxer-core/src/structures/Guild.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildBan", + "description": "Represents a ban in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API ban from GET /guilds/{id}/bans or gateway GUILD_BAN_ADD" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "expiresAt", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "ISO timestamp when a temporary ban expires. Null for permanent bans." + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "unban", + "params": [], + "returns": "Promise", + "description": "Remove this ban (unban the user).\nRequires Ban Members permission.", + "async": true, + "source": { + "file": "GuildBan.ts", + "line": 30 + } + } + ], + "source": { + "file": "GuildBan.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildBan.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildChannel", + "extends": "Channel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "parentId", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permissionOverwrites", + "type": "APIChannelOverwrite[]", + "readonly": false, + "optional": false, + "description": "Permission overwrites for roles and members." + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + } + ], + "methods": [ + { + "name": "canSendMessage", + "params": [], + "returns": "boolean", + "description": "Whether the bot can send messages in this channel.\nChecks ViewChannel and SendMessages via guild.members.me permissions.\nReturns false if guild or bot member not cached.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 234 + } + }, + { + "name": "createInvite", + "params": [ + { + "name": "options", + "type": "{ max_uses?: number; max_age?: number; unique?: boolean; temporary?: boolean; }", + "optional": true, + "description": "max_uses (0–100), max_age (0–604800 seconds), unique, temporary\nRequires Create Instant Invite permission." + } + ], + "returns": "Promise", + "description": "Create an invite for this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 177 + } + }, + { + "name": "createWebhook", + "params": [ + { + "name": "options", + "type": "{ name: string; avatar?: string | null; }", + "optional": false, + "description": "Webhook name and optional avatar URL" + } + ], + "returns": "Promise", + "description": "Create a webhook in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 154 + } + }, + { + "name": "delete", + "params": [ + { + "name": "options", + "type": "{ silent?: boolean; }", + "optional": true, + "description": "silent: if true, does not send a system message (default false)" + } + ], + "returns": "Promise", + "description": "Delete this channel. Requires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 302 + } + }, + { + "name": "deletePermission", + "params": [ + { + "name": "overwriteId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Remove a permission overwrite. DELETE /channels/{id}/permissions/{overwriteId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 260 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string | null; topic?: string | null; parent_id?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; rate_limit_per_user?: number; rtc_region?: string | null; permission_overwrites?: Array<{ id: string; type: number; allow?: string; deny?: string; }>; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this channel. PATCH /channels/{id}.\nRequires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 270 + } + }, + { + "name": "editPermission", + "params": [ + { + "name": "overwriteId", + "type": "string", + "optional": false, + "description": "Role or member ID" + }, + { + "name": "options", + "type": "{ type: 0 | 1; allow?: string; deny?: string; }", + "optional": false, + "description": "type (0=role, 1=member), allow, deny (permission bitfields)" + } + ], + "returns": "Promise", + "description": "Set or update a permission overwrite. PUT /channels/{id}/permissions/{overwriteId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 210 + } + }, + { + "name": "fetchInvites", + "params": [], + "returns": "Promise", + "description": "Fetch invites for this channel.\nRequires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 199 + } + }, + { + "name": "fetchWebhooks", + "params": [], + "returns": "Promise", + "description": "Fetch all webhooks in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 166 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a message to this guild channel.\nWorks for text and announcement channels. Voice/category/link channels will fail at the API.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 247 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 132, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildEmoji", + "description": "Represents a custom emoji in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API emoji from GET /guilds/{id}/emojis or guild emoji events" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "identifier", + "type": "string", + "readonly": true, + "optional": false, + "description": "Emoji identifier for use in reactions: `name:id`" + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "CDN URL for this emoji image." + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this emoji. Requires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildEmoji.ts", + "line": 37 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name: string; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this emoji's name.\nRequires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildEmoji.ts", + "line": 49 + } + } + ], + "source": { + "file": "GuildEmoji.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildEmoji.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildManager", + "description": "Manages guilds with fetch.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "create", + "params": [ + { + "name": "options", + "type": "{ name: string; icon?: string | null; empty_features?: boolean; }", + "optional": false, + "description": "name (required), icon (base64), empty_features" + } + ], + "returns": "Promise", + "description": "Create a guild. POST /guilds.", + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 44 + } + }, + { + "name": "fetch", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Snowflake of the guild" + } + ], + "returns": "Promise", + "description": "Fetch a guild by ID from the API (or return from cache if present).", + "examples": [ + "const guild = await client.guilds.fetch(guildId);\nif (guild) console.log(guild.name);" + ], + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 66 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Snowflake of the guild" + } + ], + "returns": "Promise", + "description": "Get a guild from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.guilds.get(id) ?? (await client.guilds.fetch(id))`.", + "examples": [ + "const guild = await client.guilds.resolve(message.guildId);\nif (guild) console.log(guild.name);" + ], + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 35 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "Guild", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "GuildManager.ts", + "line": 18 + } + } + ], + "source": { + "file": "GuildManager.ts", + "line": 10, + "path": "packages/fluxer-core/src/client/GuildManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildMember", + "description": "Represents a member of a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API guild member from GET /guilds/{id}/members or GET /guilds/{id}/members/{user_id}" + }, + { + "name": "guild", + "type": "Guild", + "optional": false + } + ] + }, + "properties": [ + { + "name": "accentColor", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "avatar", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "banner", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "communicationDisabledUntil", + "type": "Date | null", + "readonly": false, + "optional": false + }, + { + "name": "deaf", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "displayName", + "type": "string", + "readonly": true, + "optional": false, + "description": "Nickname, or global name, or username." + }, + { + "name": "guild", + "type": "Guild", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "joinedAt", + "type": "Date", + "readonly": true, + "optional": false + }, + { + "name": "mute", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "any", + "readonly": true, + "optional": false, + "description": "Get the member's guild-level permissions (from roles only, no channel overwrites).\nUse this for server-wide permission checks (e.g. ban, kick, manage roles).", + "examples": [ + "const perms = member.permissions;\nif (perms.has(PermissionFlags.BanMembers)) { ... }" + ] + }, + { + "name": "profileFlags", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "roles", + "type": "GuildMemberRoleManager", + "readonly": true, + "optional": false, + "description": "Role manager with add/remove/set and cache. Discord.js parity: member.roles.add(), member.roles.cache", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager" + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to add\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Add a role to this member.\nPrefer member.roles.add(roleId) for Discord.js parity.", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 90 + } + }, + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild-specific avatar URL for this member.\nReturns null if the member has no guild avatar (use displayAvatarURL for fallback).", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 64 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild-specific banner URL for this member.\nReturns null if the member has no guild banner.", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 80 + } + }, + { + "name": "displayAvatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string", + "description": "Get the avatar URL to display for this member.\nUses guild-specific avatar if set, otherwise falls back to the user's avatar.", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 72 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ nick?: string | null; roles?: string[]; avatar?: string | null; banner?: string | null; bio?: string | null; pronouns?: string | null; accent_color?: number | null; profile_flags?: number | null; ... 5 more ...; connection_id?: string | null; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this guild member. PATCH /guilds/{id}/members/{userId} or /members/@me for the bot.\nFor @me: nick, avatar, banner, bio, pronouns, accent_color, profile_flags, mute, deaf,\ncommunication_disabled_until, timeout_reason, channel_id, connection_id.\nFor other members: same plus roles (array of role IDs).", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 110 + } + }, + { + "name": "move", + "params": [ + { + "name": "channelId", + "type": "string | null", + "optional": false, + "description": "The voice channel ID to move the member to, or null to disconnect" + }, + { + "name": "connectionId", + "type": "string | null", + "optional": true, + "description": "Optional connection ID for the specific voice session (usually not needed)" + } + ], + "returns": "Promise", + "description": "Move this member to a different voice channel or disconnect them from voice.\nRequires Move Members permission.", + "examples": [ + "// Move member to a different voice channel\nawait member.move('123456789012345678');\n\n// Disconnect member from voice\nawait member.move(null);" + ], + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 195 + } + }, + { + "name": "permissionsIn", + "params": [ + { + "name": "channel", + "type": "GuildChannel", + "optional": false, + "description": "The guild channel to check permissions for" + } + ], + "returns": "any", + "description": "Compute the member's effective permissions in a guild channel.\nApplies role permissions and channel overwrites.", + "examples": [ + "const perms = member.permissionsIn(channel);\nif (perms.has(PermissionFlags.SendMessages)) { ... }" + ], + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 168 + } + }, + { + "name": "removeRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to remove\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Remove a role from this member.\nPrefer member.roles.remove(roleId) for Discord.js parity.", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 100 + } + } + ], + "source": { + "file": "GuildMember.ts", + "line": 14, + "path": "packages/fluxer-core/src/structures/GuildMember.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildMemberManager", + "description": "Manages guild members with a Collection-like API.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProvides guild.members.me for Discord.js parity.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "guild", + "type": "Guild", + "optional": false + } + ] + }, + "properties": [ + { + "name": "me", + "type": "GuildMember | null", + "readonly": true, + "optional": false, + "description": "The current bot user as a GuildMember in this guild.\nReturns null if the bot's member is not cached or client.user is null.\nUse fetchMe() to load the bot's member when not cached.", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberManager", + "examples": [ + "const perms = guild.members.me?.permissions;\nif (perms?.has(PermissionFlags.BanMembers)) { ... }" + ] + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "options", + "type": "{ limit?: number; after?: string; }", + "optional": true, + "description": "limit (1-1000), after (user ID for pagination)" + } + ], + "returns": "Promise", + "description": "Fetch guild members with pagination. GET /guilds/{id}/members.", + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 69 + } + }, + { + "name": "fetchMe", + "params": [], + "returns": "Promise", + "description": "Fetch the current bot user as a GuildMember in this guild.\nCaches the result in guild.members.", + "examples": [ + "const me = await guild.members.fetchMe();\nconsole.log(me.displayName);" + ], + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 56 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + } + ], + "returns": "Promise", + "description": "Get a guild member from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `guild.members.get(userId) ?? (await guild.fetchMember(userId))`.", + "examples": [ + "const member = await guild.members.resolve(userId);\nconsole.log(member.displayName);" + ], + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 28 + } + } + ], + "source": { + "file": "GuildMemberManager.ts", + "line": 13, + "path": "packages/fluxer-core/src/client/GuildMemberManager.ts" + }, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberManager", + "package": "@fluxerjs/core" + }, + { + "name": "GuildMemberRoleManager", + "description": "Manages a guild member's roles with add/remove/set and a cache of Role objects.\nDiscord.js parity: member.roles.add(), member.roles.remove(), member.roles.set(), member.roles.cache", + "constructor": { + "params": [ + { + "name": "member", + "type": "GuildMember", + "optional": false + }, + { + "name": "initialRoleIds", + "type": "string[]", + "optional": false + } + ] + }, + "properties": [ + { + "name": "cache", + "type": "Collection", + "readonly": true, + "optional": false, + "description": "Collection of Role objects for this member's roles (from guild.roles).\nDiscord.js parity: member.roles.cache", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager" + }, + { + "name": "roleIds", + "type": "readonly string[]", + "readonly": true, + "optional": false, + "description": "Role IDs for this member. Used by permissions; prefer cache for Role objects." + } + ], + "methods": [ + { + "name": "add", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "Promise", + "description": "Add a role to this member.\nDiscord.js parity: member.roles.add(roleId)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 75 + } + }, + { + "name": "has", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "boolean", + "description": "Check if the member has a role. Discord.js parity: member.roles.cache.has(roleId)", + "async": false, + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 46 + } + }, + { + "name": "remove", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "Promise", + "description": "Remove a role from this member.\nDiscord.js parity: member.roles.remove(roleId)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 90 + } + }, + { + "name": "set", + "params": [ + { + "name": "roleIds", + "type": "string[]", + "optional": false + } + ], + "returns": "Promise", + "description": "Replace all roles for this member. PATCH /guilds/{id}/members/{userId}\nDiscord.js parity: member.roles.set(roleIds)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 106 + } + } + ], + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 30, + "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" + }, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "package": "@fluxerjs/core" + }, + { + "name": "GuildSticker", + "description": "Represents a custom sticker in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API sticker from GET /guilds/{id}/stickers or guild sticker events" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "CDN URL for this sticker image." + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this sticker. Requires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildSticker.ts", + "line": 36 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string; description?: string; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this sticker's name and/or description.\nRequires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildSticker.ts", + "line": 46 + } + } + ], + "source": { + "file": "GuildSticker.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildSticker.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "HTTPError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "statusCode", + "type": "number", + "optional": false + }, + { + "name": "body", + "type": "string | null", + "optional": false + } + ] + }, + "properties": [ + { + "name": "body", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "isRetryable", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "True if the error is retryable (429 rate limit, 5xx server errors)." + }, + { + "name": "statusCode", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "HTTPError.ts", + "line": 7, + "path": "packages/rest/src/errors/HTTPError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "Invite", + "description": "Represents an invite to a guild or channel.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIInvite", + "optional": false, + "description": "API invite from GET /invites/{code}, channel/guild invite list, or gateway INVITE_CREATE" + } + ] + }, + "properties": [ + { + "name": "channel", + "type": "APIChannelPartial", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "createdAt", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "expiresAt", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "guild", + "type": "APIGuildPartial", + "readonly": true, + "optional": false + }, + { + "name": "inviter", + "type": "User | null", + "readonly": true, + "optional": false + }, + { + "name": "maxAge", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "maxUses", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "memberCount", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "presenceCount", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "temporary", + "type": "boolean | null", + "readonly": true, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "Full invite URL (https://fluxer.gg/{code} or instance-specific)." + }, + { + "name": "uses", + "type": "number | null", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this invite.\nRequires Manage Guild or Create Instant Invite permission.", + "async": true, + "source": { + "file": "Invite.ts", + "line": 61 + } + }, + { + "name": "getGuild", + "params": [], + "returns": "Guild | null", + "description": "Resolve the guild from cache if available.", + "async": false, + "source": { + "file": "Invite.ts", + "line": 53 + } + } + ], + "source": { + "file": "Invite.ts", + "line": 9, + "path": "packages/fluxer-core/src/structures/Invite.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "LinkChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 402, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "LiveKitRtcConnection", + "description": "Voice connection using LiveKit RTC. Used when Fluxer routes voice to LiveKit.\n\nSupports both audio playback ({@link play}) and video streaming ({@link playVideo}) to voice channels.\nVideo uses node-webcodecs for decoding (no ffmpeg subprocess). Audio uses prism-media WebM demuxer.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The Fluxer client instance" + }, + { + "name": "channel", + "type": "VoiceChannel", + "optional": false, + "description": "The voice channel to connect to" + }, + { + "name": "_userId", + "type": "string", + "optional": false, + "description": "The user ID (reserved for future use)" + } + ] + }, + "properties": [ + { + "name": "activeSpeakers", + "type": "Set", + "readonly": true, + "optional": false + }, + { + "name": "audioSource", + "type": "AudioSource | null", + "readonly": false, + "optional": false + }, + { + "name": "audioTrack", + "type": "LocalAudioTrack | null", + "readonly": false, + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "currentStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "currentVideoStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "lastServerEndpoint", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "lastServerToken", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "participantTrackSids", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "playing", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether audio is currently playing." + }, + { + "name": "playingVideo", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether a video track is currently playing in the voice channel." + }, + { + "name": "receiveSubscriptions", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "requestedSubscriptions", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "room", + "type": "Room | null", + "readonly": false, + "optional": false + }, + { + "name": "videoSource", + "type": "VideoSource | null", + "readonly": false, + "optional": false + }, + { + "name": "videoTrack", + "type": "LocalVideoTrack | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "audioDebug", + "params": [ + { + "name": "msg", + "type": "string", + "optional": false + }, + { + "name": "data", + "type": "object", + "optional": true + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 298 + } + }, + { + "name": "clearReceiveSubscriptions", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 452 + } + }, + { + "name": "connect", + "params": [ + { + "name": "server", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false, + "description": "Voice server update data (endpoint, token)" + }, + { + "name": "_state", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false, + "description": "Voice state update data (session, channel)" + } + ], + "returns": "Promise", + "description": "Connect to the LiveKit room using voice server and state from the gateway.\nCalled internally by VoiceManager; typically not used directly.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 474 + } + }, + { + "name": "debug", + "params": [ + { + "name": "msg", + "type": "string", + "optional": false + }, + { + "name": "data", + "type": "string | object", + "optional": true + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 294 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "description": "Disconnect from the room and remove all event listeners.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1750 + } + }, + { + "name": "disconnect", + "params": [], + "returns": "void", + "description": "Disconnect from the LiveKit room and stop all playback.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1737 + } + }, + { + "name": "emitDisconnect", + "params": [ + { + "name": "source", + "type": "string", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 304 + } + }, + { + "name": "getParticipantId", + "params": [ + { + "name": "participant", + "type": "RemoteParticipant", + "optional": false + } + ], + "returns": "string", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 340 + } + }, + { + "name": "getVolume", + "params": [], + "returns": "number", + "description": "Get current volume (0-200).", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 332 + } + }, + { + "name": "isAudioTrack", + "params": [ + { + "name": "track", + "type": "RemoteTrack", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 336 + } + }, + { + "name": "isConnected", + "params": [], + "returns": "boolean", + "description": "Returns true if the LiveKit room is connected and not destroyed.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 312 + } + }, + { + "name": "isSameServer", + "params": [ + { + "name": "endpoint", + "type": "string | null", + "optional": false, + "description": "Voice server endpoint from the gateway" + }, + { + "name": "token", + "type": "string", + "optional": false, + "description": "Voice server token" + } + ], + "returns": "boolean", + "description": "Returns true if we're already connected to the given server (skip migration).", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 321 + } + }, + { + "name": "play", + "params": [ + { + "name": "urlOrStream", + "type": "string | NodeJS.ReadableStream", + "optional": false, + "description": "Audio source: HTTP(S) URL to a WebM/Opus file, or a Node.js ReadableStream" + } + ], + "returns": "Promise", + "description": "Play audio from a WebM/Opus URL or readable stream. Publishes to the LiveKit room as an audio track.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1529 + } + }, + { + "name": "playOpus", + "params": [ + { + "name": "_stream", + "type": "NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 460 + } + }, + { + "name": "playVideo", + "params": [ + { + "name": "urlOrBuffer", + "type": "string | ArrayBuffer | Uint8Array", + "optional": false, + "description": "Video source: HTTP(S) URL to an MP4 file, or raw ArrayBuffer/Uint8Array of MP4 data" + }, + { + "name": "options", + "type": "VideoPlayOptions", + "optional": true, + "description": "Optional playback options (see {@link VideoPlayOptions})" + } + ], + "returns": "Promise", + "description": "Play video from an MP4 URL or buffer. Streams decoded frames to the LiveKit room as a video track.\nUses node-webcodecs for decoding (no ffmpeg). Supports H.264 (avc1) and H.265 (hvc1/hev1) codecs.", + "examples": [ + "```ts\nconst conn = await voiceManager.join(channel);\nif (conn instanceof LiveKitRtcConnection && conn.isConnected()) {\n await conn.playVideo('https://example.com/video.mp4', { source: 'camera' });\n}\n```" + ], + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 587 + } + }, + { + "name": "playVideoFFmpeg", + "params": [ + { + "name": "url", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "VideoPlayOptions", + "optional": true + } + ], + "returns": "Promise", + "description": "FFmpeg-based video playback. Bypasses node-webcodecs to avoid libc++abi crashes on macOS.\nRequires ffmpeg and ffprobe in PATH. URL input only.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1160 + } + }, + { + "name": "setVolume", + "params": [ + { + "name": "volumePercent", + "type": "number", + "optional": false + } + ], + "returns": "void", + "description": "Set playback volume (0-200, 100 = normal). Affects current and future playback.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 327 + } + }, + { + "name": "stop", + "params": [], + "returns": "void", + "description": "Stop playback and clear both audio and video tracks.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1720 + } + }, + { + "name": "stopVideo", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1693 + } + }, + { + "name": "subscribeParticipantAudio", + "params": [ + { + "name": "participantId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ autoResubscribe?: boolean; }", + "optional": false + } + ], + "returns": "LiveKitReceiveSubscription", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 422 + } + }, + { + "name": "subscribeParticipantTrack", + "params": [ + { + "name": "participant", + "type": "RemoteParticipant", + "optional": false + }, + { + "name": "track", + "type": "RemoteTrack", + "optional": false + }, + { + "name": "options", + "type": "{ autoSubscribe?: boolean; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 344 + } + } + ], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 253, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "Message", + "description": "Represents a message in a channel.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIMessage", + "optional": false, + "description": "API message from POST/PATCH /channels/{id}/messages or gateway MESSAGE_CREATE" + } + ] + }, + "properties": [ + { + "name": "attachments", + "type": "Collection", + "readonly": true, + "optional": false + }, + { + "name": "author", + "type": "User", + "readonly": true, + "optional": false + }, + { + "name": "call", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "channel", + "type": "DMChannel | GuildChannel | TextChannel | null", + "readonly": true, + "optional": false, + "description": "Channel where this message was sent. Resolved from cache; null if not cached.\nMessages can only exist in text-based channels (text, DM, announcement), so this always has send() when non-null." + }, + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "createdAt", + "type": "Date", + "readonly": true, + "optional": false + }, + { + "name": "editedAt", + "type": "Date | null", + "readonly": true, + "optional": false + }, + { + "name": "embeds", + "type": "APIEmbed[]", + "readonly": true, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "guild", + "type": "Guild | null", + "readonly": true, + "optional": false, + "description": "Guild where this message was sent. Resolved from cache; null for DMs or if not cached." + }, + { + "name": "guildId", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "mentionEveryone", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "mentionRoles", + "type": "string[]", + "readonly": true, + "optional": false, + "description": "Role IDs mentioned in this message." + }, + { + "name": "mentions", + "type": "User[]", + "readonly": true, + "optional": false, + "description": "Users mentioned in this message." + }, + { + "name": "messageReference", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "messageSnapshots", + "type": "APIMessageSnapshot[]", + "readonly": true, + "optional": false + }, + { + "name": "nonce", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Client-side nonce for acknowledgment. Null if not provided." + }, + { + "name": "pinned", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "reactions", + "type": "APIMessageReaction[]", + "readonly": true, + "optional": false + }, + { + "name": "referencedMessage", + "type": "Message | null", + "readonly": true, + "optional": false + }, + { + "name": "stickers", + "type": "APIMessageSticker[]", + "readonly": true, + "optional": false + }, + { + "name": "tts", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "type", + "type": "MessageType", + "readonly": true, + "optional": false + }, + { + "name": "webhookId", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Webhook ID if this message was sent via webhook. Null otherwise." + } + ], + "methods": [ + { + "name": "createReactionCollector", + "params": [ + { + "name": "options", + "type": "ReactionCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "ReactionCollector", + "description": "Create a reaction collector for this message.\nCollects reactions matching the filter until time expires or max is reached.", + "examples": [ + "const collector = message.createReactionCollector({ filter: (r, u) => u.id === userId, time: 10000 });\ncollector.on('collect', (reaction, user) => console.log(user.username, 'reacted with', reaction.emoji.name));\ncollector.on('end', (collected, reason) => { ... });" + ], + "async": false, + "source": { + "file": "Message.ts", + "line": 272 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this message.", + "async": true, + "source": { + "file": "Message.ts", + "line": 290 + } + }, + { + "name": "deleteAttachment", + "params": [ + { + "name": "attachmentId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Delete a specific attachment from this message.\nDELETE /channels/{id}/messages/{id}/attachments/{attachmentId}.", + "async": true, + "source": { + "file": "Message.ts", + "line": 298 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "MessageEditOptions", + "optional": false, + "description": "New content and/or embeds" + } + ], + "returns": "Promise", + "description": "Edit this message. Only the author (or admins) can edit.", + "async": true, + "source": { + "file": "Message.ts", + "line": 251 + } + }, + { + "name": "fetch", + "params": [], + "returns": "Promise", + "description": "Re-fetch this message from the API to get the latest content, embeds, reactions, etc.\nUse when you have a stale Message (e.g. from an old event or cache) and need fresh data.", + "examples": [ + "const updated = await message.fetch();\nconsole.log('Latest content:', updated.content);" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 285 + } + }, + { + "name": "fetchReactionUsers", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji or custom `{ name, id }`" + }, + { + "name": "options", + "type": "{ limit?: number; after?: string; }", + "optional": true, + "description": "limit (1–100), after (user ID for pagination)" + } + ], + "returns": "Promise", + "description": "Fetch users who reacted with the given emoji.", + "async": true, + "source": { + "file": "Message.ts", + "line": 382 + } + }, + { + "name": "formatEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id: string; }", + "optional": false + } + ], + "returns": "string", + "description": "Format emoji for reaction API: unicode string or \"name:id\" for custom.\nFor string resolution (e.g. :name:), use client.resolveEmoji; Message methods resolve automatically when guildId is available.", + "async": false, + "source": { + "file": "Message.ts", + "line": 322 + } + }, + { + "name": "pin", + "params": [], + "returns": "Promise", + "description": "Pin this message to the channel. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Message.ts", + "line": 307 + } + }, + { + "name": "react", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`" + } + ], + "returns": "Promise", + "description": "Add a reaction to this message (as the bot).", + "async": true, + "source": { + "file": "Message.ts", + "line": 337 + } + }, + { + "name": "removeAllReactions", + "params": [], + "returns": "Promise", + "description": "Remove all reactions from this message.\nRequires moderator permissions.", + "async": true, + "source": { + "file": "Message.ts", + "line": 361 + } + }, + { + "name": "removeReaction", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`" + }, + { + "name": "userId", + "type": "string", + "optional": true, + "description": "If provided, removes that user's reaction (requires moderator permissions)" + } + ], + "returns": "Promise", + "description": "Remove the bot's reaction, or a specific user's reaction if userId is provided.", + "async": true, + "source": { + "file": "Message.ts", + "line": 348 + } + }, + { + "name": "removeReactionEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`. Requires moderator permissions." + } + ], + "returns": "Promise", + "description": "Remove all reactions of a specific emoji from this message.", + "async": true, + "source": { + "file": "Message.ts", + "line": 369 + } + }, + { + "name": "reply", + "params": [ + { + "name": "options", + "type": "string | (MessageSendOptions & ReplyOptions)", + "optional": false, + "description": "Text content or object with content, embeds, and/or reply options (ping, replyTo)" + }, + { + "name": "replyOptions", + "type": "ReplyOptions", + "optional": true + } + ], + "returns": "Promise", + "description": "Reply to this message (shows as a reply in the client).", + "examples": [ + "await message.reply('Pong!');\nawait message.reply({ embeds: [embed] });\nawait message.reply('No ping!', { ping: false });\nawait message.reply({ content: 'Reply to other', replyTo: otherMessage });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 186 + } + }, + { + "name": "resolveChannel", + "params": [], + "returns": "Promise", + "description": "Resolve the channel (from cache or API). Use when you need the channel and it may not be cached.", + "async": true, + "source": { + "file": "Message.ts", + "line": 107 + } + }, + { + "name": "resolveEmojiForReaction", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false + } + ], + "returns": "Promise", + "async": false, + "source": { + "file": "Message.ts", + "line": 327 + } + }, + { + "name": "resolveGuild", + "params": [], + "returns": "Promise", + "description": "Resolve the guild (from cache or API). Returns null for DMs.", + "async": true, + "source": { + "file": "Message.ts", + "line": 115 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "string | MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this channel without replying. Use when you want a standalone message.", + "examples": [ + "await message.send('Pong!');\nawait message.send({ embeds: [embed] }); // EmbedBuilder auto-converted\nawait message.send({ content: 'File', files: [{ name: 'data.txt', data }] });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 160 + } + }, + { + "name": "sendTo", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the target channel (e.g. log channel ID)" + }, + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content and/or embeds" + } + ], + "returns": "Promise", + "description": "Send a message to a specific channel. Use for logging, forwarding, or sending to another channel in the guild.", + "examples": [ + "await message.sendTo(logChannelId, 'User ' + message.author.username + ' said: ' + message.content);\nawait message.sendTo(announceChannelId, { embeds: [embed] });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 173 + } + }, + { + "name": "unpin", + "params": [], + "returns": "Promise", + "description": "Unpin this message from the channel. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Message.ts", + "line": 313 + } + } + ], + "source": { + "file": "Message.ts", + "line": 56, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollector", + "description": "Collects messages in a channel. Use channel.createMessageCollector().", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "collected", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "Required", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "emit", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "args", + "type": "MessageCollectorEvents[K]", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 81 + } + }, + { + "name": "on", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "listener", + "type": "(...args: MessageCollectorEvents[K]) => void", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 74 + } + }, + { + "name": "stop", + "params": [ + { + "name": "reason", + "type": "MessageCollectorEndReason", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 63 + } + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 30, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFlagsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly SuppressEmbeds: bigint; readonly SuppressNotifications: bigint; readonly VoiceMessage: bigint; readonly CompactAttachments: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 16, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessageManager", + "description": "Manages messages for a channel. Access via channel.messages.", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + } + ] + }, + "properties": [], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this channel.\nWhen message caching is enabled, the fetched message is added to the cache.", + "async": true, + "source": { + "file": "MessageManager.ts", + "line": 38 + } + }, + { + "name": "get", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Message | undefined", + "description": "Get a message from cache. Returns undefined if not cached or caching is disabled.\nRequires options.cache.messages > 0.", + "async": false, + "source": { + "file": "MessageManager.ts", + "line": 26 + } + } + ], + "source": { + "file": "MessageManager.ts", + "line": 15, + "path": "packages/fluxer-core/src/client/MessageManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessagePayload", + "description": "Builder for message payloads. Use with `channel.send()` or `message.reply()`.", + "properties": [ + { + "name": "ContentMaxLength", + "type": "2000", + "readonly": true, + "optional": false + }, + { + "name": "data", + "type": "MessagePayloadData", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addEmbed", + "params": [ + { + "name": "embed", + "type": "any", + "optional": false + } + ], + "returns": "this", + "description": "Add one embed. Max 10 total.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 44 + } + }, + { + "name": "create", + "params": [ + { + "name": "contentOrOptions", + "type": "string | MessagePayloadData", + "optional": true + } + ], + "returns": "MessagePayload", + "description": "Create a MessagePayload from a string or options object.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 105 + } + }, + { + "name": "setAttachments", + "params": [ + { + "name": "attachments", + "type": "(AttachmentBuilder | { id: number; filename: string; description?: string | null; })[] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set attachment metadata (for files sent with the request).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 53 + } + }, + { + "name": "setContent", + "params": [ + { + "name": "content", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set message text. Max 2000 characters.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 25 + } + }, + { + "name": "setEmbeds", + "params": [ + { + "name": "embeds", + "type": "any[] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set embeds. Max 10. Replaces existing.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 33 + } + }, + { + "name": "setFlags", + "params": [ + { + "name": "flags", + "type": "number", + "optional": false + } + ], + "returns": "this", + "description": "Set message flags (e.g. ephemeral, suppress embeds).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 94 + } + }, + { + "name": "setReply", + "params": [ + { + "name": "reference", + "type": "any", + "optional": false + } + ], + "returns": "this", + "description": "Set reply reference (creates a reply to another message).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 69 + } + }, + { + "name": "setTTS", + "params": [ + { + "name": "tts", + "type": "boolean", + "optional": false + } + ], + "returns": "this", + "description": "Enable text-to-speech.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 88 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "MessagePayloadData", + "description": "Get the payload as a plain object.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 100 + } + } + ], + "source": { + "file": "MessagePayload.ts", + "line": 19, + "path": "packages/builders/src/messages/MessagePayload.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "MessageReaction", + "description": "Represents a reaction added to or removed from a message.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": true, + "optional": false + }, + { + "name": "emojiIdentifier", + "type": "string", + "readonly": true, + "optional": false, + "description": "Emoji as a string: unicode or \"name:id\" for custom." + }, + { + "name": "guild", + "type": "Guild | null", + "readonly": true, + "optional": false, + "description": "Guild where this reaction was added. Resolved from cache; null for DMs or if not cached." + }, + { + "name": "guildId", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "messageId", + "type": "string", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetchMessage", + "params": [], + "returns": "Promise", + "description": "Fetch the message this reaction belongs to.\nUse when you need to edit, delete, or otherwise interact with the message.", + "async": true, + "source": { + "file": "MessageReaction.ts", + "line": 53 + } + } + ], + "source": { + "file": "MessageReaction.ts", + "line": 16, + "path": "packages/fluxer-core/src/structures/MessageReaction.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "PermissionsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly CreateInstantInvite: bigint; readonly KickMembers: bigint; readonly BanMembers: bigint; readonly Administrator: bigint; readonly ManageChannels: bigint; readonly ManageGuild: bigint; ... 30 more ...; readonly UpdateRtcRegion: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 57, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "RateLimitError", + "extends": "FluxerAPIError", + "constructor": { + "params": [ + { + "name": "body", + "type": "RateLimitErrorBody", + "optional": false + }, + { + "name": "statusCode", + "type": "number", + "optional": false + } + ] + }, + "properties": [ + { + "name": "global", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "retryAfter", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "RateLimitError.ts", + "line": 4, + "path": "packages/rest/src/errors/RateLimitError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RateLimitManager", + "properties": [ + { + "name": "buckets", + "type": "Map", + "readonly": false, + "optional": false + }, + { + "name": "globalResetAt", + "type": "number", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "getBucket", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "RateLimitState | undefined", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 15 + } + }, + { + "name": "getGlobalReset", + "params": [], + "returns": "number", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 27 + } + }, + { + "name": "getWaitTime", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "number", + "description": "Returns ms to wait before we can send again (0 if no wait).", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 32 + } + }, + { + "name": "setBucket", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "limit", + "type": "number", + "optional": false + }, + { + "name": "remaining", + "type": "number", + "optional": false + }, + { + "name": "resetAt", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 19 + } + }, + { + "name": "setGlobalReset", + "params": [ + { + "name": "resetAt", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 23 + } + }, + { + "name": "updateFromHeaders", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "headers", + "type": "Headers", + "optional": false + } + ], + "returns": "void", + "description": "Parse rate limit headers and update state.", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 42 + } + } + ], + "source": { + "file": "RateLimitManager.ts", + "line": 11, + "path": "packages/rest/src/RateLimitManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ReactionCollector", + "description": "Collects reactions on a message. Use message.createReactionCollector().", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "messageId", + "type": "string", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "ReactionCollectorOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "collected", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "messageId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "Required", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "emit", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "args", + "type": "ReactionCollectorEvents[K]", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 110 + } + }, + { + "name": "on", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "listener", + "type": "(...args: ReactionCollectorEvents[K]) => void", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 103 + } + }, + { + "name": "stop", + "params": [ + { + "name": "reason", + "type": "ReactionCollectorEndReason", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 92 + } + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 37, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RequestManager", + "constructor": { + "params": [ + { + "name": "options", + "type": "Partial", + "optional": false + } + ] + }, + "properties": [ + { + "name": "baseUrl", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "RestOptions", + "readonly": true, + "optional": false + }, + { + "name": "rateLimiter", + "type": "RateLimitManager", + "readonly": true, + "optional": false + }, + { + "name": "token", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "buildHeaders", + "params": [ + { + "name": "_route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "RequestOptions", + "optional": false + }, + { + "name": "body", + "type": "string | FormData | undefined", + "optional": false + } + ], + "returns": "Record", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 60 + } + }, + { + "name": "getRouteHash", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "string", + "description": "Hash route for rate limit bucket (use path without ids for grouping).", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 51 + } + }, + { + "name": "request", + "params": [ + { + "name": "method", + "type": "string", + "optional": false + }, + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "RequestOptions", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "RequestManager.ts", + "line": 78 + } + }, + { + "name": "setToken", + "params": [ + { + "name": "token", + "type": "string | null", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 42 + } + }, + { + "name": "waitForRateLimit", + "params": [ + { + "name": "routeHash", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "RequestManager.ts", + "line": 55 + } + } + ], + "source": { + "file": "RequestManager.ts", + "line": 26, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "REST", + "description": "HTTP client for the Fluxer API. Used by Client internally.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "RESTOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "requestManager", + "type": "RequestManager", + "readonly": true, + "optional": false + }, + { + "name": "Routes", + "type": "any", + "readonly": true, + "optional": false, + "description": "Route helpers (from @fluxerjs/types) for building paths." + }, + { + "name": "token", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Current bot token, or null." + } + ], + "methods": [ + { + "name": "delete", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a DELETE request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 82 + } + }, + { + "name": "get", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a GET request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 45 + } + }, + { + "name": "patch", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a PATCH request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 66 + } + }, + { + "name": "post", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; files?: Array<{ name: string; data: Blob | ArrayBuffer | Uint8Array; filename?: string; }>; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a POST request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 50 + } + }, + { + "name": "put", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a PUT request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 74 + } + }, + { + "name": "setToken", + "params": [ + { + "name": "token", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the bot token for authenticated requests.", + "async": false, + "source": { + "file": "REST.ts", + "line": 33 + } + } + ], + "source": { + "file": "REST.ts", + "line": 16, + "path": "packages/rest/src/REST.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "Role", + "description": "Represents a role in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIRole", + "optional": false + }, + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "The guild this role belongs to" + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "color", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "hoistPosition", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "Separately sorted position for hoisted roles. Null if not set." + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "PermissionsBitField", + "readonly": true, + "optional": false + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "unicodeEmoji", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this role.\nRequires Manage Roles permission.", + "async": true, + "source": { + "file": "Role.ts", + "line": 107 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Role updates (permissions accepts PermissionResolvable for convenience)" + } + ], + "returns": "Promise", + "description": "Edit this role.\nRequires Manage Roles permission.", + "examples": [ + "await role.edit({ name: 'Moderator', permissions: ['BanMembers', 'KickMembers'] });" + ], + "async": true, + "source": { + "file": "Role.ts", + "line": 78 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a mention string (e.g. `<@&123456>`).", + "async": false, + "source": { + "file": "Role.ts", + "line": 66 + } + } + ], + "source": { + "file": "Role.ts", + "line": 14, + "path": "packages/fluxer-core/src/structures/Role.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "SnowflakeUtil", + "description": "Utilities for Fluxer snowflake IDs.\nFluxer uses Twitter Snowflakes with a custom epoch.", + "properties": [ + { + "name": "EPOCH", + "type": "1420070400000n", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "dateFromSnowflake", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "Date", + "description": "Converts a snowflake to a Date.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 21 + } + }, + { + "name": "deconstruct", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "{ timestamp: number; date: Date; workerId: number; processId: number; increment: number; }", + "description": "Deconstructs a snowflake into its components.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 37 + } + }, + { + "name": "isValid", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "boolean", + "description": "Checks if a string is a valid snowflake format (numeric string, 0 or positive).", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 62 + } + }, + { + "name": "snowflakeFromTimestamp", + "params": [ + { + "name": "timestamp", + "type": "number", + "optional": false + } + ], + "returns": "string", + "description": "Converts a Unix timestamp (ms) to a snowflake string.\nUseful for pagination (before/after).", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 29 + } + }, + { + "name": "timestampFromSnowflake", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "number", + "description": "Converts a snowflake to a Unix timestamp in milliseconds.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 14 + } + } + ], + "source": { + "file": "SnowflakeUtil.ts", + "line": 8, + "path": "packages/util/src/SnowflakeUtil.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "TextChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "lastMessageId", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "MessageManager", + "readonly": true, + "optional": false, + "description": "Message manager for this channel. Use channel.messages.fetch(messageId)." + }, + { + "name": "nsfw", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "rateLimitPerUser", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "topic", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "methods": [ + { + "name": "createMessageCollector", + "params": [ + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "MessageCollector", + "description": "Create a message collector for this channel.\nCollects messages matching the filter until time expires or max is reached.", + "examples": [ + "const collector = channel.createMessageCollector({ filter: m => m.author.id === userId, time: 10000 });\ncollector.on('collect', m => console.log(m.content));\ncollector.on('end', (collected, reason) => { ... });" + ], + "async": false, + "source": { + "file": "Channel.ts", + "line": 353 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this channel.", + "async": true, + "deprecated": "Use channel.messages.fetch(messageId) instead.", + "source": { + "file": "Channel.ts", + "line": 379 + } + }, + { + "name": "fetchPinnedMessages", + "params": [], + "returns": "Promise", + "description": "Fetch pinned messages in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 361 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 329 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 311, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "User", + "description": "Represents a user (or bot) on Fluxer.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIUserPartial", + "optional": false, + "description": "API user from message author, GET /users/{id}, or GET /users/@me" + } + ] + }, + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "avatarColor", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "RGB avatar color (e.g. 7577782). Null if not set." + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Banner hash (from profile, member, or invite context). Null when not available." + }, + { + "name": "bot", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "discriminator", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "Public flags bitfield. Null if not set." + }, + { + "name": "globalName", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "system", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether this is an official system user." + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true, + "description": "Optional `size` and `extension` (default: png, or gif for animated)" + } + ], + "returns": "string | null", + "description": "Get the URL for this user's avatar.\nAuto-detects animated avatars (hash starting with `a_`) and uses gif extension.", + "async": false, + "source": { + "file": "User.ts", + "line": 61 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the URL for this user's banner.\nReturns null if the user has no banner (only available when fetched from profile/member context).", + "async": false, + "source": { + "file": "User.ts", + "line": 77 + } + }, + { + "name": "createDM", + "params": [], + "returns": "Promise", + "description": "Create or get a DM channel with this user.\nReturns the DM channel; use {@link DMChannel.send} to send messages.", + "async": true, + "source": { + "file": "User.ts", + "line": 93 + } + }, + { + "name": "displayAvatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string", + "description": "Get the avatar URL, or the default avatar if none set (Fluxer: fluxerstatic.com).", + "async": false, + "source": { + "file": "User.ts", + "line": 69 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a DM to this user.\nConvenience method that creates the DM channel and sends the message.", + "async": true, + "source": { + "file": "User.ts", + "line": 105 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a mention string (e.g. `<@123456>`).", + "async": false, + "source": { + "file": "User.ts", + "line": 85 + } + } + ], + "source": { + "file": "User.ts", + "line": 12, + "path": "packages/fluxer-core/src/structures/User.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "UserFlagsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly Staff: bigint; readonly CtpMember: bigint; readonly Partner: bigint; readonly BugHunter: bigint; readonly FriendlyBot: bigint; readonly FriendlyBotManualApproval: bigint; ... 24 more ...; readonly StaffHidden: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 44, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UsersManager", + "description": "Manages users with fetch and profile helpers.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + } + ], + "returns": "Promise", + "description": "Fetch a user by ID from the API.\nUpdates cache if user already exists.", + "examples": [ + "const user = await client.users.fetch(userId);\nconsole.log(user.username);" + ], + "async": true, + "source": { + "file": "UsersManager.ts", + "line": 54 + } + }, + { + "name": "fetchWithProfile", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + }, + { + "name": "options", + "type": "{ guildId?: string | null; }", + "optional": true, + "description": "Optional guildId for server profile and member data" + } + ], + "returns": "Promise", + "description": "Fetch a user with full profile and optional guild context.\nReturns user, global profile, server profile (when guildId), and member (when guildId).\nIdeal for userinfo commands.", + "examples": [ + "const { user, globalProfile, serverProfile, member } = await client.users.fetchWithProfile(\n userId,\n { guildId: message.guildId ?? undefined },\n);" + ], + "async": true, + "source": { + "file": "UsersManager.ts", + "line": 73 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "User", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "UsersManager.ts", + "line": 36 + } + } + ], + "source": { + "file": "UsersManager.ts", + "line": 28, + "path": "packages/fluxer-core/src/client/UsersManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "VoiceChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "bitrate", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "rtcRegion", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "userLimit", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 389, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "VoiceConnection", + "description": "Voice connection using Discord's UDP-based protocol. Emits `ready`, `error`, `disconnect`.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "optional": false + }, + { + "name": "userId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "audioPacketQueue", + "type": "Buffer[]", + "readonly": false, + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "currentStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "heartbeatInterval", + "type": "NodeJS.Timeout | null", + "readonly": false, + "optional": false + }, + { + "name": "pacingInterval", + "type": "NodeJS.Timeout | null", + "readonly": false, + "optional": false + }, + { + "name": "playing", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether audio is currently playing." + }, + { + "name": "remoteUdpAddress", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "remoteUdpPort", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "secretKey", + "type": "Uint8Array | null", + "readonly": false, + "optional": false + }, + { + "name": "sequence", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "sessionId", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Discord voice session ID." + }, + { + "name": "ssrc", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "timestamp", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "udpSocket", + "type": "dgram.Socket | null", + "readonly": false, + "optional": false + }, + { + "name": "voiceWs", + "type": "VoiceWebSocket | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [ + { + "name": "server", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false + }, + { + "name": "state", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false + } + ], + "returns": "Promise", + "description": "Called when we have both server update and state update.", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 110 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "description": "Disconnect and remove all listeners.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 405 + } + }, + { + "name": "disconnect", + "params": [], + "returns": "void", + "description": "Disconnect from voice (closes WebSocket and UDP).", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 386 + } + }, + { + "name": "getWebSocketConstructor", + "params": [], + "returns": "Promise VoiceWebSocket>", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 206 + } + }, + { + "name": "play", + "params": [ + { + "name": "urlOrStream", + "type": "string | NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "Promise", + "description": "Play a direct WebM/Opus URL or stream. Fetches the URL (if string), demuxes with prism-media WebmDemuxer,\nand sends Opus packets to the voice connection. No FFmpeg or encoding; input must be WebM with Opus.", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 297 + } + }, + { + "name": "playOpus", + "params": [ + { + "name": "stream", + "type": "NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "void", + "description": "Play a stream of raw Opus packets\nUses the same queue and 20ms pacing as play(). Use this for local files (MP3 → PCM → Opus) or other Opus sources.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 257 + } + }, + { + "name": "sendAudioFrame", + "params": [ + { + "name": "opusPayload", + "type": "Buffer", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 353 + } + }, + { + "name": "sendVoiceOp", + "params": [ + { + "name": "op", + "type": "number", + "optional": false + }, + { + "name": "d", + "type": "unknown", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 214 + } + }, + { + "name": "setupUDP", + "params": [ + { + "name": "remoteAddress", + "type": "string", + "optional": false + }, + { + "name": "remotePort", + "type": "number", + "optional": false + }, + { + "name": "onReady", + "type": "() => void", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 219 + } + }, + { + "name": "stop", + "params": [], + "returns": "void", + "description": "Stop playback and clear the queue.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 372 + } + } + ], + "source": { + "file": "VoiceConnection.ts", + "line": 68, + "path": "packages/voice/src/VoiceConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceManager", + "description": "Manages voice connections. Use `getVoiceManager(client)` to obtain an instance.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "options", + "type": "VoiceManagerOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "connectionIds", + "type": "Map", + "readonly": true, + "optional": false, + "description": "channel_id -> connection_id (from VoiceServerUpdate; required for voice state updates)" + }, + { + "name": "connections", + "type": "any", + "readonly": true, + "optional": false, + "description": "channel_id -> connection (Fluxer multi-channel: allows multiple connections per guild)" + }, + { + "name": "pending", + "type": "Map void; reject: (e: Error) => void; server?: any; state?: any; }>", + "readonly": true, + "optional": false, + "description": "channel_id -> pending join" + }, + { + "name": "shardId", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "voiceStates", + "type": "VoiceStateMap", + "readonly": true, + "optional": false, + "description": "guild_id -> user_id -> channel_id" + } + ], + "methods": [ + { + "name": "getConnection", + "params": [ + { + "name": "channelOrGuildId", + "type": "string", + "optional": false, + "description": "Channel ID (primary) or guild ID (returns first connection in that guild)" + } + ], + "returns": "VoiceConnection | LiveKitRtcConnection | undefined", + "description": "Get the active voice connection for a channel or guild.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 451 + } + }, + { + "name": "getVoiceChannelId", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Guild ID to look up" + }, + { + "name": "userId", + "type": "string", + "optional": false, + "description": "User ID to look up" + } + ], + "returns": "string | null", + "description": "Get the voice channel ID the user is currently in, or null if not in voice.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 90 + } + }, + { + "name": "handleVoiceServerUpdate", + "params": [ + { + "name": "data", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 158 + } + }, + { + "name": "handleVoiceStatesSync", + "params": [ + { + "name": "data", + "type": "{ guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 71 + } + }, + { + "name": "handleVoiceStateUpdate", + "params": [ + { + "name": "data", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 126 + } + }, + { + "name": "join", + "params": [ + { + "name": "channel", + "type": "VoiceChannel", + "optional": false, + "description": "The voice channel to join" + } + ], + "returns": "Promise", + "description": "Join a voice channel. Resolves when the connection is ready.\nSupports multiple connections per guild (Fluxer multi-channel).", + "async": true, + "source": { + "file": "VoiceManager.ts", + "line": 346 + } + }, + { + "name": "leave", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Guild ID to leave" + } + ], + "returns": "void", + "description": "Leave all voice channels in a guild.\nWith multi-channel support, disconnects from every channel in the guild.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 399 + } + }, + { + "name": "leaveChannel", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Channel ID to leave" + } + ], + "returns": "void", + "description": "Leave a specific voice channel by channel ID.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 426 + } + }, + { + "name": "listParticipantsInChannel", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + } + ], + "returns": "string[]", + "description": "List participant user IDs currently in a specific voice channel.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 99 + } + }, + { + "name": "registerConnection", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "conn", + "type": "VoiceConnection | LiveKitRtcConnection", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 249 + } + }, + { + "name": "storeConnectionId", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "connectionId", + "type": "string | null | undefined", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 243 + } + }, + { + "name": "subscribeChannelParticipants", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "opts", + "type": "{ autoResubscribe?: boolean; }", + "optional": true + } + ], + "returns": "LiveKitReceiveSubscription[]", + "description": "Subscribe to inbound audio for all known participants currently in a voice channel.\nOnly supported for LiveKit connections.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 113 + } + }, + { + "name": "tryCompletePending", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "pending", + "type": "{ channel: VoiceChannel; resolve: (c: VoiceConnection | LiveKitRtcConnection) => void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData; state?: GatewayVoiceStateUpdateDispatchData; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 286 + } + }, + { + "name": "updateVoiceState", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Channel ID (connection key)" + }, + { + "name": "partial", + "type": "{ self_stream?: boolean; self_video?: boolean; self_mute?: boolean; self_deaf?: boolean; }", + "optional": false, + "description": "Partial voice state to update (self_stream, self_video, self_mute, self_deaf)" + } + ], + "returns": "void", + "description": "Update voice state (e.g. self_stream, self_video) while in a channel.\nSends a VoiceStateUpdate to the gateway so the server and clients see the change.\nRequires connection_id (from VoiceServerUpdate); without it, the gateway would treat\nthe update as a new join and trigger a new VoiceServerUpdate, causing connection loops.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 468 + } + }, + { + "name": "uploadStreamPreview", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "conn", + "type": "VoiceConnection | LiveKitRtcConnection", + "optional": false + } + ], + "returns": "Promise", + "description": "Upload a placeholder stream preview so the preview URL returns 200 instead of 404.", + "async": true, + "source": { + "file": "VoiceManager.ts", + "line": 270 + } + } + ], + "source": { + "file": "VoiceManager.ts", + "line": 31, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "Webhook", + "description": "Represents a Discord/Fluxer webhook. Supports creating, fetching, sending, and deleting.\nThe token is only available when the webhook was created; fetched webhooks cannot send messages.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API webhook from POST /channels/{id}/webhooks (has token) or GET /webhooks/{id} (no token)" + } + ] + }, + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "channelId", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Present only when webhook was created via createWebhook(); not returned when fetching." + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false, + "description": "User who created the webhook." + } + ], + "methods": [ + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the URL for this webhook's avatar.\nReturns null if the webhook has no custom avatar.", + "async": false, + "source": { + "file": "Webhook.ts", + "line": 81 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this webhook. Requires bot token with Manage Webhooks permission.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 86 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Fields to update (name, avatar, channel_id when using bot auth)" + } + ], + "returns": "Promise", + "description": "Edit this webhook. With token: name and avatar only. Without token (bot auth): name, avatar, and channel_id.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 95 + } + }, + { + "name": "editMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "The ID of the message to edit" + }, + { + "name": "options", + "type": "APIWebhookEditMessageRequest", + "optional": false, + "description": "Fields to update (content, embeds, attachments)" + } + ], + "returns": "Promise", + "description": "Edit a message previously sent by this webhook.\nRequires the webhook token.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 174 + } + }, + { + "name": "fetch", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "webhookId", + "type": "string", + "optional": false, + "description": "The webhook ID" + } + ], + "returns": "Promise", + "description": "Fetch a webhook by ID using bot auth.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 193 + } + }, + { + "name": "fromToken", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "webhookId", + "type": "string", + "optional": false, + "description": "The webhook ID" + }, + { + "name": "token", + "type": "string", + "optional": false, + "description": "The webhook token (from createWebhook or stored)" + }, + { + "name": "options", + "type": "{ channelId?: string; guildId?: string; name?: string; }", + "optional": true, + "description": "Optional channelId, guildId, name for display" + } + ], + "returns": "Webhook", + "description": "Create a Webhook instance from an ID and token (e.g. from a stored webhook URL).", + "async": false, + "source": { + "file": "Webhook.ts", + "line": 205 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "string | WebhookSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, username, avatar_url, tts, files, attachments" + }, + { + "name": "wait", + "type": "boolean", + "optional": true, + "description": "If true, waits for the API and returns the created Message; otherwise returns void (204)" + } + ], + "returns": "Promise", + "description": "Send a message via this webhook. Requires the webhook token (only present when created, not when fetched).", + "examples": [ + "await webhook.send('Hello!');\nawait webhook.send({ embeds: [embed] });\nawait webhook.send({ content: 'File attached', files: [{ name: 'data.txt', data: buffer }] });\nconst msg = await webhook.send({ content: 'Hi' }, true);" + ], + "async": true, + "source": { + "file": "Webhook.ts", + "line": 136 + } + } + ], + "source": { + "file": "Webhook.ts", + "line": 52, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebSocketManager", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "WebSocketManagerOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "gatewayUrl", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "options", + "type": "WebSocketManagerOptions", + "readonly": true, + "optional": false + }, + { + "name": "shardCount", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "shards", + "type": "Map", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [], + "returns": "Promise", + "async": true, + "source": { + "file": "WebSocketManager.ts", + "line": 40 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 120 + } + }, + { + "name": "getShardCount", + "params": [], + "returns": "number", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 127 + } + }, + { + "name": "send", + "params": [ + { + "name": "shardId", + "type": "number", + "optional": false + }, + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 116 + } + } + ], + "source": { + "file": "WebSocketManager.ts", + "line": 28, + "path": "packages/ws/src/WebSocketManager.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShard", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "WebSocketShardOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "destroying", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "heartbeatAt", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "heartbeatInterval", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "lastHeartbeatAck", + "type": "boolean", + "readonly": false, + "optional": false, + "description": "True until we send a heartbeat; then false until we get HeartbeatAck. Avoids closing before first heartbeat." + }, + { + "name": "options", + "type": "WebSocketShardOptions", + "readonly": true, + "optional": false + }, + { + "name": "reconnectDelayMs", + "type": "number", + "readonly": false, + "optional": false, + "description": "Current reconnect delay in ms; resets on successful connect." + }, + { + "name": "reconnectTimeout", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "seq", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "sessionId", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "status", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "ws", + "type": "WebSocketLike | null", + "readonly": false, + "optional": false + }, + { + "name": "WS", + "type": "WebSocketConstructor", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 103 + } + }, + { + "name": "debug", + "params": [ + { + "name": "message", + "type": "string", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 160 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 258 + } + }, + { + "name": "handleHello", + "params": [ + { + "name": "data", + "type": "GatewayHelloData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 202 + } + }, + { + "name": "handlePayload", + "params": [ + { + "name": "payload", + "type": "GatewayReceivePayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 164 + } + }, + { + "name": "scheduleReconnect", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 62 + } + }, + { + "name": "send", + "params": [ + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 253 + } + }, + { + "name": "startHeartbeat", + "params": [ + { + "name": "interval", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 231 + } + }, + { + "name": "stopHeartbeat", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 246 + } + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 46, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + } + ], + "interfaces": [ + { + "name": "APIApplicationCommandInteraction", + "description": "Minimal application command interaction (slash command) payload from the gateway.", + "properties": [ + { + "name": "application_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "data", + "type": "{ id?: string; name: string; type?: number; options?: Array<{ name: string; type: number; value?: APIApplicationCommandOptionValue; }>; }", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true, + "description": "Guild member (when interaction is in a guild). Includes user." + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true, + "description": "User who ran the command (DM context or fallback)." + } + ], + "source": { + "file": "interaction.ts", + "line": 9, + "path": "packages/types/src/api/interaction.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIApplicationCommandOptionValue", + "description": "Application command option value (string, number, or boolean).", + "properties": [], + "source": { + "file": "interaction.ts", + "line": 6, + "path": "packages/types/src/api/interaction.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIAttachmentPayload", + "description": "API format for an attachment in a message payload.", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 12, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "APIBan", + "properties": [ + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "ISO timestamp when a temporary ban expires. Null for permanent bans." + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ban.ts", + "line": 3, + "path": "packages/types/src/api/ban.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannel", + "description": "Channel from GET /channels/{id} or GET /guilds/{id}/channels", + "properties": [ + { + "name": "bitrate", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "last_message_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "nicks", + "type": "Record", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "owner_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "parent_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permission_overwrites", + "type": "APIChannelOverwrite[]", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "rate_limit_per_user", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "recipients", + "type": "APIUserPartial[]", + "readonly": false, + "optional": true + }, + { + "name": "rtc_region", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "topic", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "External URL (link channels, type 998)" + }, + { + "name": "user_limit", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "channel.ts", + "line": 45, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannelOverwrite", + "description": "Permission overwrite from GET /channels/{id} or GET /guilds/{id}/channels", + "properties": [ + { + "name": "allow", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "deny", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "OverwriteType", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "channel.ts", + "line": 26, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannelPartial", + "description": "Minimal channel (id, type required)", + "properties": [ + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "parent_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "channel.ts", + "line": 34, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIConnectedAccount", + "description": "Connected account from profile response.", + "properties": [ + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 46, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbed", + "properties": [ + { + "name": "audio", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "children", + "type": "APIEmbedChild[] | null", + "readonly": false, + "optional": true, + "description": "Nested embeds from unfurlers" + }, + { + "name": "color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "fields", + "type": "APIEmbedField[] | null", + "readonly": false, + "optional": true + }, + { + "name": "footer", + "type": "APIEmbedFooter | null", + "readonly": false, + "optional": true + }, + { + "name": "image", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "provider", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "thumbnail", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "EmbedType", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "video", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 64, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedAuthor", + "properties": [ + { + "name": "icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "proxy_icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 1, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedChild", + "description": "Nested embed from unfurlers (subset of APIEmbed)", + "properties": [ + { + "name": "audio", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "fields", + "type": "APIEmbedField[] | null", + "readonly": false, + "optional": true + }, + { + "name": "footer", + "type": "APIEmbedFooter | null", + "readonly": false, + "optional": true + }, + { + "name": "image", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "provider", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "thumbnail", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "EmbedType", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "video", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 46, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedField", + "properties": [ + { + "name": "inline", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "value", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "embed.ts", + "line": 37, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedFooter", + "properties": [ + { + "name": "icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "proxy_icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "embed.ts", + "line": 8, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedMedia", + "properties": [ + { + "name": "content_hash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "EmbedMediaFlags bitfield (e.g. EmbedMediaFlags.CONTAINS_EXPLICIT_MEDIA)" + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 placeholder for lazy loading" + }, + { + "name": "proxy_url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 22, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmoji", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "emoji.ts", + "line": 4, + "path": "packages/types/src/api/emoji.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmojiWithUser", + "properties": [ + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "emoji.ts", + "line": 10, + "path": "packages/types/src/api/emoji.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIErrorBody", + "properties": [ + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "errors", + "type": "{ path: string; message: string; code?: string; }[]", + "readonly": false, + "optional": true + }, + { + "name": "message", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "errors.ts", + "line": 58, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGatewayBotResponse", + "description": "Response from GET /gateway/bot\nurl: WebSocket URL, session_start_limit: rate limit info in ms", + "properties": [ + { + "name": "session_start_limit", + "type": "{ total: number; remaining: number; reset_after: number; max_concurrency: number; }", + "readonly": false, + "optional": false + }, + { + "name": "shards", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "gateway.ts", + "line": 5, + "path": "packages/types/src/api/gateway.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuild", + "description": "Guild from GET /guilds/{id} or gateway GUILD_CREATE", + "properties": [ + { + "name": "afk_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "afk_timeout", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "banner_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "banner_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "default_message_notifications", + "type": "DefaultMessageNotifications", + "readonly": false, + "optional": false + }, + { + "name": "disabled_operations", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "explicit_content_filter", + "type": "GuildExplicitContentFilter", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "GuildFeature[]", + "readonly": false, + "optional": false + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "message_history_cutoff", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "mfa_level", + "type": "GuildMFALevel", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfw_level", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "owner_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "rules_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "splash_card_alignment", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "splash_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "splash_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "system_channel_flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "system_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "vanity_url_code", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "verification_level", + "type": "GuildVerificationLevel", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 55, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildAuditLog", + "description": "Response from GET /guilds/{id}/audit-logs", + "properties": [ + { + "name": "audit_log_entries", + "type": "APIGuildAuditLogEntry[]", + "readonly": false, + "optional": false + }, + { + "name": "users", + "type": "{ id: Snowflake; username?: string; discriminator?: string; avatar?: string | null; }[]", + "readonly": false, + "optional": false + }, + { + "name": "webhooks", + "type": "{ id: Snowflake; name?: string; avatar?: string | null; }[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 114, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildAuditLogEntry", + "description": "Audit log entry from GET /guilds/{id}/audit-logs", + "properties": [ + { + "name": "action_type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "changes", + "type": "{ key: string; old_value?: string | number | boolean | null; new_value?: string | number | boolean | null; }[]", + "readonly": false, + "optional": true, + "description": "Changed fields. Value types vary by action_type (e.g. string for name, number for permissions)." + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "target_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "user_id", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "guild.ts", + "line": 88, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildFeatureToggle", + "description": "Request body for guild feature toggles (text-channel-flexible-names, etc.)", + "properties": [ + { + "name": "enabled", + "type": "boolean", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 109, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildMember", + "description": "Guild member from GET /guilds/{guild_id}/members or GET /guilds/{guild_id}/members/{user_id}", + "properties": [ + { + "name": "accent_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "communication_disabled_until", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "joined_at", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "premium_since", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "When the user started boosting this guild." + }, + { + "name": "profile_flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "roles", + "type": "string[]", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "user.ts", + "line": 65, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildPartial", + "properties": [ + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "features", + "type": "string[]", + "readonly": false, + "optional": true + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "invite.ts", + "line": 5, + "path": "packages/types/src/api/invite.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIInstance", + "description": "Response from GET /instance (unauthenticated).\nInstance info and API/gateway endpoints.", + "properties": [ + { + "name": "api_code_version", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "captcha", + "type": "Record", + "readonly": false, + "optional": true + }, + { + "name": "endpoints", + "type": "{ api: string; gateway: string; }", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "{ voice_enabled?: boolean; }", + "readonly": false, + "optional": true + }, + { + "name": "push", + "type": "Record", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "instance.ts", + "line": 5, + "path": "packages/types/src/api/instance.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIInvite", + "properties": [ + { + "name": "channel", + "type": "APIChannelPartial", + "readonly": false, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "created_at", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild", + "type": "APIGuildPartial", + "readonly": false, + "optional": false + }, + { + "name": "inviter", + "type": "APIUserPartial | null", + "readonly": false, + "optional": true + }, + { + "name": "max_age", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "max_uses", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "member_count", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "presence_count", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "temporary", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "uses", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "invite.ts", + "line": 14, + "path": "packages/types/src/api/invite.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessage", + "description": "Message from GET /channels/{id}/messages, POST /channels/{id}/messages, PATCH, or gateway MESSAGE_CREATE", + "properties": [ + { + "name": "attachments", + "type": "APIMessageAttachment[] | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIUserPartial", + "readonly": false, + "optional": false + }, + { + "name": "call", + "type": "APIMessageCall | null", + "readonly": false, + "optional": true, + "description": "Call info when type is Call" + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "edited_timestamp", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member", + "type": "APIGuildMember | null", + "readonly": false, + "optional": true, + "description": "Author's guild member (gateway MESSAGE_CREATE only, when guild message)" + }, + { + "name": "mention_everyone", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "mention_roles", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mentions", + "type": "APIUserPartial[] | null", + "readonly": false, + "optional": true + }, + { + "name": "message_reference", + "type": "APIMessageReference | null", + "readonly": false, + "optional": true + }, + { + "name": "message_snapshots", + "type": "APIMessageSnapshot[] | null", + "readonly": false, + "optional": true, + "description": "Snapshots of forwarded messages" + }, + { + "name": "nonce", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "pinned", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "reactions", + "type": "APIMessageReaction[] | null", + "readonly": false, + "optional": true + }, + { + "name": "referenced_message", + "type": "APIMessage | null", + "readonly": false, + "optional": true + }, + { + "name": "stickers", + "type": "APIMessageSticker[] | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "MessageType", + "readonly": false, + "optional": false + }, + { + "name": "webhook_id", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 111, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageAttachment", + "properties": [ + { + "name": "content_hash", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Hash of attachment content for integrity" + }, + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "expired", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags bitfield" + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 placeholder for lazy loading" + }, + { + "name": "proxy_url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "size", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "waveform", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 audio waveform for voice messages" + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 75, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageCall", + "description": "Call metadata for call-type messages", + "properties": [ + { + "name": "ended_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "participants", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "message.ts", + "line": 47, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageReaction", + "properties": [ + { + "name": "count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "APIReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "me", + "type": "boolean | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 31, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageReference", + "description": "Reply/forward reference from GET /channels/{id}/messages (type 0 = reply)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": true, + "description": "0 = reply, 1 = forward" + } + ], + "source": { + "file": "message.ts", + "line": 38, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageSnapshot", + "description": "Snapshot of a forwarded message", + "properties": [ + { + "name": "attachments", + "type": "APIMessageAttachment[] | null", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "edited_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mention_roles", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mentions", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "stickers", + "type": "APIMessageSticker[] | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 53, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageSticker", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 100, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIProfileResponse", + "description": "Full profile response from GET /users/{id}/profile.\nOptionally use ?guild_id=GUILD_ID for server-specific profile.", + "properties": [ + { + "name": "connected_accounts", + "type": "APIConnectedAccount[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mutual_guild_ids", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mutual_guilds", + "type": "{ id: Snowflake; }[] | null", + "readonly": false, + "optional": true + }, + { + "name": "user_profile", + "type": "APIUserProfile | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 55, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIReactionEmoji", + "properties": [ + { + "name": "animated", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "message.ts", + "line": 25, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIRole", + "description": "Role from GET /guilds/{id}/roles\npermissions is bitfield as string (e.g. \"8933636165185\")", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 7, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APISticker", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "sticker.ts", + "line": 4, + "path": "packages/types/src/api/sticker.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIStickerWithUser", + "properties": [ + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "sticker.ts", + "line": 12, + "path": "packages/types/src/api/sticker.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUser", + "properties": [], + "source": { + "file": "user.ts", + "line": 28, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUserPartial", + "description": "Partial user object returned by the API (messages, members, webhooks, etc.).", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "avatar_color", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "RGB color as number (e.g. 7577782)" + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "User banner hash (from profile, member, or invite context)" + }, + { + "name": "bot", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Present when author is a bot" + }, + { + "name": "discriminator", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Public/user flags bitfield" + }, + { + "name": "global_name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "public_flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "system", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether this is an official system user" + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "user.ts", + "line": 8, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUserProfile", + "description": "User profile sub-object from GET /users/{id}/profile.", + "properties": [ + { + "name": "accent_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "banner_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "bio", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "pronouns", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "theme", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 34, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIVanityURL", + "description": "Response from GET /guilds/{id}/vanity-url", + "properties": [ + { + "name": "code", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "uses", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 103, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhook", + "description": "Webhook from GET /channels/{id}/webhooks (includes token) or GET /webhooks/{id} (no token)", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": true, + "description": "Present when listing channel webhooks; not returned when fetching by ID without token" + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "webhook.ts", + "line": 12, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookEditMessageRequest", + "description": "Request body for PATCH /webhooks/{id}/{token}/messages/{message_id}. All fields optional.", + "properties": [ + { + "name": "attachments", + "type": "unknown[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "unknown[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 37, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookTokenUpdateRequest", + "description": "Request body for PATCH /webhooks/{id}/{token} (token auth). All fields optional.", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 31, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookUpdateRequest", + "description": "Request body for PATCH /webhooks/{id} (bot auth). All fields optional.", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 24, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "AttachmentData", + "description": "File handling for multipart requests. Matches fluxer_api parseMultipartMessageData exactly:\n- payload_json: JSON string with content, embeds, attachments metadata\n- files[N]: File parts where N is 0-based index (fluxer API expects files[0], files[1], etc.)", + "properties": [], + "source": { + "file": "files.ts", + "line": 10, + "path": "packages/rest/src/utils/files.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "AttachmentPayload", + "properties": [ + { + "name": "data", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override filename for the part (defaults to name)" + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false, + "description": "Used as filename when filename is not set (required)" + } + ], + "source": { + "file": "files.ts", + "line": 12, + "path": "packages/rest/src/utils/files.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "AttachmentPayloadOptions", + "description": "Builder for message attachment metadata (filename, description, spoiler).\nActual file data is passed separately when sending (e.g. FormData).", + "properties": [ + { + "name": "description", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "spoiler", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 5, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "BitFieldResolvable", + "description": "Data structure that allows efficient storage of multiple flags (bits) in a single number.\n\nNote: JavaScript bitwise operations (|, &, ^, <<, >>) operate on 32-bit signed integers.\nFlags with values exceeding 2^30 may exhibit unexpected behavior. For permission-style\nbitfields with more than 30 bits, consider using BigInt-based implementations.", + "properties": [], + "source": { + "file": "BitField.ts", + "line": 8, + "path": "packages/util/src/BitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "CacheSizeLimits", + "description": "Optional cache size limits. When exceeded, oldest entries are evicted (FIFO). Omit or use 0 for unbounded.", + "properties": [ + { + "name": "channels", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "guilds", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max messages per channel to cache. Enables channel.messages.get() and oldMessage in messageUpdate. 0 = disabled." + }, + { + "name": "users", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "Options.ts", + "line": 5, + "path": "packages/fluxer-core/src/util/Options.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "CdnUrlOptions", + "properties": [ + { + "name": "extension", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "size", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "cdn.ts", + "line": 3, + "path": "packages/fluxer-core/src/util/cdn.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientEventMethods", + "description": "Typed event handler methods. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...).", + "properties": [], + "source": { + "file": "Client.ts", + "line": 135, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientEvents", + "description": "Callback parameter types for client events. Use with client.on(Events.X, handler).", + "properties": [ + { + "name": "[Events.ChannelCreate]", + "type": "[channel: GuildChannel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelDelete]", + "type": "[channel: Channel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelPinsUpdate]", + "type": "[data: GatewayChannelPinsUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelUpdate]", + "type": "[oldChannel: Channel, newChannel: Channel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Debug]", + "type": "[message: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Error]", + "type": "[error: Error]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildBanAdd]", + "type": "[ban: GuildBan]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildBanRemove]", + "type": "[ban: GuildBan]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildCreate]", + "type": "[guild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildDelete]", + "type": "[guild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildEmojisUpdate]", + "type": "[data: GatewayGuildEmojisUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildIntegrationsUpdate]", + "type": "[data: GatewayGuildIntegrationsUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberAdd]", + "type": "[member: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberRemove]", + "type": "[member: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberUpdate]", + "type": "[oldMember: GuildMember, newMember: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleCreate]", + "type": "[data: GatewayGuildRoleCreateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleDelete]", + "type": "[data: GatewayGuildRoleDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleUpdate]", + "type": "[data: GatewayGuildRoleUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventCreate]", + "type": "[data: GatewayGuildScheduledEventCreateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventDelete]", + "type": "[data: GatewayGuildScheduledEventDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventUpdate]", + "type": "[data: GatewayGuildScheduledEventUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildStickersUpdate]", + "type": "[data: GatewayGuildStickersUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildUpdate]", + "type": "[oldGuild: Guild, newGuild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InteractionCreate]", + "type": "[interaction: APIApplicationCommandInteraction]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InviteCreate]", + "type": "[invite: Invite]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InviteDelete]", + "type": "[data: GatewayInviteDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageCreate]", + "type": "[message: Message]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageDelete]", + "type": "[message: PartialMessage]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageDeleteBulk]", + "type": "[data: GatewayMessageDeleteBulkDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionAdd]", + "type": "[reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemove]", + "type": "[reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemoveAll]", + "type": "[data: GatewayMessageReactionRemoveAllDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemoveEmoji]", + "type": "[data: GatewayMessageReactionRemoveEmojiDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageUpdate]", + "type": "[oldMessage: Message | null, newMessage: Message]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.PresenceUpdate]", + "type": "[data: GatewayPresenceUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Ready]", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Resumed]", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.TypingStart]", + "type": "[data: GatewayTypingStartDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.UserUpdate]", + "type": "[data: GatewayUserUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceServerUpdate]", + "type": "[data: GatewayVoiceServerUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceStatesSync]", + "type": "[data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceStateUpdate]", + "type": "[data: GatewayVoiceStateUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.WebhooksUpdate]", + "type": "[data: GatewayWebhooksUpdateDispatchData]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "Client.ts", + "line": 72, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientOptions", + "properties": [ + { + "name": "cache", + "type": "CacheSizeLimits", + "readonly": false, + "optional": true, + "description": "Cache size limits (channels, guilds, users). When exceeded, oldest entries are evicted. Omit or 0 = unbounded." + }, + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": true, + "description": "Gateway intents. Not yet supported by Fluxer—value is always sent as 0. Set suppressIntentWarning to silence the warning." + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true, + "description": "Initial presence (status, custom_status, etc.) sent on identify. Can also update via PresenceUpdate after connect." + }, + { + "name": "rest", + "type": "any", + "readonly": false, + "optional": true + }, + { + "name": "suppressIntentWarning", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Suppress the warning when intents are set (Fluxer does not support intents yet)." + }, + { + "name": "waitForGuilds", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "When true, delay the Ready event until all guilds from READY (including unavailable) have been received via GUILD_CREATE. Default: false." + }, + { + "name": "WebSocket", + "type": "new (url: string) => { send(data: string | ArrayBufferLike): void; close(code?: number): void; readyState: number; addEventListener?(type: string, listener: (e: unknown) => void): void; on?(event: string, cb: (data?: unknown) => void): void; }", + "readonly": false, + "optional": true, + "description": "Optional WebSocket constructor (e.g. `require('ws')` in Node for compatibility)" + } + ], + "source": { + "file": "Options.ts", + "line": 13, + "path": "packages/fluxer-core/src/util/Options.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "CollectedReaction", + "properties": [ + { + "name": "reaction", + "type": "MessageReaction", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "User", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 20, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "DispatchHandler", + "properties": [], + "source": { + "file": "EventHandlerRegistry.ts", + "line": 43, + "path": "packages/fluxer-core/src/client/EventHandlerRegistry.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "EmbedAuthorOptions", + "description": "Author field for an embed.", + "properties": [ + { + "name": "iconURL", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 46, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedFieldData", + "description": "A single embed field (name, value, optional inline).", + "properties": [ + { + "name": "inline", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "value", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 59, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedFooterOptions", + "description": "Footer field for an embed.", + "properties": [ + { + "name": "iconURL", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 53, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedMediaOptions", + "description": "Options for embed media (image, thumbnail, video, audio).", + "properties": [ + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 5, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedType", + "properties": [], + "source": { + "file": "embed.ts", + "line": 43, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "FetchedUserWithProfile", + "description": "Result of {@link UsersManager.fetchWithProfile}.", + "properties": [ + { + "name": "globalProfile", + "type": "any", + "readonly": false, + "optional": false, + "description": "Global profile (bio, pronouns, mutual guilds, etc.). Null if unavailable." + }, + { + "name": "member", + "type": "GuildMember | null", + "readonly": false, + "optional": false, + "description": "Guild member when guildId was provided and user is in the guild. Null otherwise." + }, + { + "name": "memberData", + "type": "any", + "readonly": false, + "optional": false, + "description": "Raw member data when member exists (for premium_since, etc.)." + }, + { + "name": "serverProfile", + "type": "any", + "readonly": false, + "optional": false, + "description": "Server-specific profile when guildId was provided. Null if unavailable." + }, + { + "name": "user", + "type": "User", + "readonly": false, + "optional": false, + "description": "The user (cached in client.users)." + }, + { + "name": "userData", + "type": "APIUserPartial", + "readonly": false, + "optional": false, + "description": "Raw user data from GET /users/{id}." + } + ], + "source": { + "file": "UsersManager.ts", + "line": 9, + "path": "packages/fluxer-core/src/client/UsersManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "FluxerErrorOptions", + "properties": [ + { + "name": "cause", + "type": "Error", + "readonly": false, + "optional": true + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "FluxerError.ts", + "line": 1, + "path": "packages/fluxer-core/src/errors/FluxerError.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GatewayAuthSessionChangeDispatchData", + "description": "AUTH_SESSION_CHANGE — login/logout on another client", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 412, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallCreateDispatchData", + "description": "CALL_CREATE — call created", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 438, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallDeleteDispatchData", + "description": "CALL_DELETE — call ended", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 452, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallUpdateDispatchData", + "description": "CALL_UPDATE — call updated", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 445, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelCreateDispatchData", + "description": "CHANNEL_CREATE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 169, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelDeleteDispatchData", + "description": "CHANNEL_DELETE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 177, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelPinsAckDispatchData", + "description": "CHANNEL_PINS_ACK — user acknowledged viewing pinned messages", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 354, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelPinsUpdateDispatchData", + "description": "CHANNEL_PINS_UPDATE — pins in a channel changed.", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 348, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelRecipientAddDispatchData", + "description": "CHANNEL_RECIPIENT_ADD — channel_id, user (group DM)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 179, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelRecipientRemoveDispatchData", + "description": "CHANNEL_RECIPIENT_REMOVE — channel_id, user (group DM)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 184, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelUpdateBulkDispatchData", + "description": "CHANNEL_UPDATE_BULK — channels[]", + "properties": [ + { + "name": "channels", + "type": "APIChannel[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 173, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelUpdateDispatchData", + "description": "CHANNEL_UPDATE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 171, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCustomStatus", + "description": "Custom status object (Fluxer uses this root object rather than Discord-style activities array).", + "properties": [ + { + "name": "emoji_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "emoji_name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 39, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayDispatchEventName", + "properties": [], + "source": { + "file": "events.ts", + "line": 188, + "path": "packages/types/src/gateway/events.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeCreateDispatchData", + "description": "FAVORITE_MEME_CREATE — favorite meme/media added", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 458, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeDeleteDispatchData", + "description": "FAVORITE_MEME_DELETE — favorite meme/media removed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 464, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeUpdateDispatchData", + "description": "FAVORITE_MEME_UPDATE — favorite meme/media updated", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 461, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildBanAddDispatchData", + "description": "GUILD_BAN_ADD — guild_id, user, reason?", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 231, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildBanRemoveDispatchData", + "description": "GUILD_BAN_REMOVE — guild_id, user", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 237, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildCreateDispatchData", + "description": "GUILD_CREATE — full guild with channels, members, roles, unavailable?", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 159, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildDeleteDispatchData", + "description": "GUILD_DELETE — id, unavailable? (true = temp outage)", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "unavailable", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 163, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildEmojisUpdateDispatchData", + "description": "GUILD_EMOJIS_UPDATE — emoji list for a guild changed.", + "properties": [ + { + "name": "emojis", + "type": "APIEmoji[]", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 313, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildIntegrationsUpdateDispatchData", + "description": "GUILD_INTEGRATIONS_UPDATE — integrations for a guild changed.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 325, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberAddDispatchData", + "description": "GUILD_MEMBER_ADD — member + guild_id", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 190, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberListUpdateDispatchData", + "description": "GUILD_MEMBER_LIST_UPDATE — lazy member list; guild_id, id (list_id), member_count, online_count, groups, ops", + "properties": [ + { + "name": "groups", + "type": "{ id: string; count: number; }[]", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "online_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "ops", + "type": "{ op: \"SYNC\" | \"INVALIDATE\"; range?: [number, number]; items?: Array>; }[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 217, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberRemoveDispatchData", + "description": "GUILD_MEMBER_REMOVE — guild_id, user", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 203, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMembersChunkDispatchData", + "description": "GUILD_MEMBERS_CHUNK — from request_guild_members; members[], chunk_index, chunk_count", + "properties": [ + { + "name": "chunk_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "chunk_index", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "members", + "type": "(APIGuildMember & { guild_id?: Snowflake; })[]", + "readonly": false, + "optional": false + }, + { + "name": "nonce", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "presences", + "type": "{ user: { id: Snowflake; }; status?: string; activities?: unknown[]; }[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 208, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberUpdateDispatchData", + "description": "GUILD_MEMBER_UPDATE — guild_id, roles, user, nick?, avatar?, joined_at?, ...", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "communication_disabled_until", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "joined_at", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "premium_since", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "roles", + "type": "string[]", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 192, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleCreateDispatchData", + "description": "GUILD_ROLE_CREATE — guild_id, role", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role", + "type": "APIRole", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 264, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleDeleteDispatchData", + "description": "GUILD_ROLE_DELETE — guild_id, role_id", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 274, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleUpdateBulkDispatchData", + "description": "GUILD_ROLE_UPDATE_BULK — guild_id, roles[]", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "roles", + "type": "APIRole[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 279, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleUpdateDispatchData", + "description": "GUILD_ROLE_UPDATE — guild_id, role", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role", + "type": "APIRole", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 269, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventCreateDispatchData", + "description": "GUILD_SCHEDULED_EVENT_CREATE — a scheduled event was created.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 330, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventDeleteDispatchData", + "description": "GUILD_SCHEDULED_EVENT_DELETE — a scheduled event was deleted.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 342, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventUpdateDispatchData", + "description": "GUILD_SCHEDULED_EVENT_UPDATE — a scheduled event was updated.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 336, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildStickersUpdateDispatchData", + "description": "GUILD_STICKERS_UPDATE — sticker list for a guild changed.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "stickers", + "type": "APISticker[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 319, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildSyncDispatchData", + "description": "GUILD_SYNC — guild sync state (passive/lazy)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 418, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildUpdateDispatchData", + "description": "GUILD_UPDATE — full guild object", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 161, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayHelloData", + "description": "// Incoming (gateway -> client)", + "properties": [ + { + "name": "heartbeat_interval", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 79, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayIdentifyData", + "description": "// Outgoing (client -> gateway)", + "properties": [ + { + "name": "compress", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "large_threshold", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "properties", + "type": "{ os: string; browser: string; device: string; }", + "readonly": false, + "optional": false + }, + { + "name": "shard", + "type": "[shardId: number, numShards: number]", + "readonly": false, + "optional": true + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 18, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInteractionCreateDispatchData", + "description": "INTERACTION_CREATE — slash command or component interaction", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 467, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInviteCreateDispatchData", + "description": "INVITE_CREATE — full invite: code, guild, channel, inviter?, expires_at?, ...", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 243, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInviteDeleteDispatchData", + "description": "INVITE_DELETE — code, channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 246, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageAckDispatchData", + "description": "MESSAGE_ACK — read receipt; message_id, channel_id", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 153, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageCreateDispatchData", + "description": "MESSAGE_CREATE — full message with author, content, embeds, attachments, member? (guild).", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 94, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageDeleteBulkDispatchData", + "description": "MESSAGE_DELETE_BULK — ids[], channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "ids", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 107, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageDeleteDispatchData", + "description": "MESSAGE_DELETE — id, channel_id, guild_id?, content?, author_id? (Fluxer may send content/author_id)", + "properties": [ + { + "name": "author_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 98, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionAddDispatchData", + "description": "MESSAGE_REACTION_ADD — message_id, channel_id, user_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 121, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveAllDispatchData", + "description": "MESSAGE_REACTION_REMOVE_ALL — message_id, channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 147, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveDispatchData", + "description": "MESSAGE_REACTION_REMOVE — message_id, channel_id, user_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 130, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveEmojiDispatchData", + "description": "MESSAGE_REACTION_REMOVE_EMOJI — message_id, channel_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 139, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageUpdateDispatchData", + "description": "MESSAGE_UPDATE — partial message (edited fields).", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 96, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPassiveUpdatesDispatchData", + "description": "PASSIVE_UPDATES — lazy-loaded entity updates", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 415, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPresenceUpdateData", + "properties": [ + { + "name": "activities", + "type": "{ name: string; type: number; url?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "afk", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "custom_status", + "type": "GatewayCustomStatus | null", + "readonly": false, + "optional": true, + "description": "Custom status; set text (and optionally emoji) for bots. Passable on identify and via presence update." + }, + { + "name": "since", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "status", + "type": "\"online\" | \"idle\" | \"dnd\" | \"invisible\"", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 45, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPresenceUpdateDispatchData", + "description": "PRESENCE_UPDATE — user presence (status, activities) changed.", + "properties": [ + { + "name": "activities", + "type": "{ name: string; type: number; url?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "custom_status", + "type": "GatewayCustomStatus | null", + "readonly": false, + "optional": true, + "description": "Custom status (Fluxer)." + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "status", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "{ id: Snowflake; }", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 360, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReactionEmoji", + "description": "Emoji data sent with reaction events (id is null for unicode emoji).", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 114, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReadyDispatchData", + "description": "READY — v, user, guilds, session_id, shard?, application", + "properties": [ + { + "name": "application", + "type": "{ id: Snowflake; flags: number; }", + "readonly": false, + "optional": false + }, + { + "name": "guilds", + "type": "(APIGuild & { unavailable?: boolean; })[]", + "readonly": false, + "optional": false + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "shard", + "type": "[number, number]", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + }, + { + "name": "v", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 84, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReceivePayload", + "properties": [ + { + "name": "d", + "type": "T", + "readonly": false, + "optional": true + }, + { + "name": "op", + "type": "GatewayOpcodes", + "readonly": false, + "optional": false + }, + { + "name": "s", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "t", + "type": "GatewayDispatchEventName", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 469, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRecentMentionDeleteDispatchData", + "description": "RECENT_MENTION_DELETE — recent mention cleared", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 401, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipAddDispatchData", + "description": "RELATIONSHIP_ADD — relationship (friend, block) added", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 421, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipRemoveDispatchData", + "description": "RELATIONSHIP_REMOVE — relationship removed", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 433, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipUpdateDispatchData", + "description": "RELATIONSHIP_UPDATE — relationship updated", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 427, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayResumeData", + "properties": [ + { + "name": "seq", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 32, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayResumedDispatchData", + "description": "RESUMED — connection resumed; typically no payload.", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 378, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySavedMessageCreateDispatchData", + "description": "SAVED_MESSAGE_CREATE — message saved (bookmarked)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 404, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySavedMessageDeleteDispatchData", + "description": "SAVED_MESSAGE_DELETE — saved message unsaved", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 407, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySendPayload", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 67, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySessionsReplaceDispatchData", + "description": "SESSIONS_REPLACE — user's active sessions list replaced", + "properties": [ + { + "name": "sessions", + "type": "Record[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 381, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayTypingStartDispatchData", + "description": "TYPING_START — channel_id, user_id, timestamp, guild_id?, member?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 253, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserGuildSettingsUpdateDispatchData", + "description": "USER_GUILD_SETTINGS_UPDATE — per-guild settings changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 389, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserNoteUpdateDispatchData", + "description": "USER_NOTE_UPDATE — note on another user changed", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "note", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 395, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserPinnedDmsUpdateDispatchData", + "description": "USER_PINNED_DMS_UPDATE — pinned DM order changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 392, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserSettingsUpdateDispatchData", + "description": "USER_SETTINGS_UPDATE — user settings (theme, locale, etc.) changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 386, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserUpdateDispatchData", + "description": "USER_UPDATE — full current user (APIUser)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 261, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceServerUpdateDispatchData", + "description": "VOICE_SERVER_UPDATE — token, guild_id, endpoint, connection_id?", + "properties": [ + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID for subsequent voice state updates (Fluxer)." + }, + { + "name": "endpoint", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 304, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceStateUpdateData", + "properties": [ + { + "name": "channel_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID from VoiceServerUpdate; required for updates when already in channel." + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "self_deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_stream", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user is screen sharing / streaming." + }, + { + "name": "self_video", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user has video enabled (e.g. camera)." + } + ], + "source": { + "file": "payloads.ts", + "line": 54, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceStateUpdateDispatchData", + "description": "VOICE_STATE_UPDATE — guild_id?, channel_id, user_id, member?, session_id, deaf?, mute?, ...", + "properties": [ + { + "name": "channel_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID for voice session (Fluxer)." + }, + { + "name": "deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true + }, + { + "name": "mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_stream", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user is screen sharing / streaming." + }, + { + "name": "self_video", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "suppress", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 285, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayWebhooksUpdateDispatchData", + "description": "WEBHOOKS_UPDATE — webhooks in a channel were updated.", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 370, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildFeature", + "properties": [], + "source": { + "file": "guild.ts", + "line": 27, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "LiveKitAudioFrame", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 193, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "LiveKitReceiveSubscription", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 201, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "LiveKitRtcConnectionEvents", + "description": "LiveKit-specific: emitted when server sends leave (token expiry, server policy, etc.). Emitted before disconnect.", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 181, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "MessageAttachmentMeta", + "description": "Attachment metadata for file uploads (id matches FormData index).", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags: IS_SPOILER (8), CONTAINS_EXPLICIT_MEDIA (16), IS_ANIMATED (32)" + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "messageUtils.ts", + "line": 56, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorEndReason", + "properties": [], + "source": { + "file": "MessageCollector.ts", + "line": 16, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorEvents", + "properties": [ + { + "name": "collect", + "type": "[message: Message]", + "readonly": false, + "optional": false + }, + { + "name": "end", + "type": "[collected: Collection, reason: MessageCollectorEndReason]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 18, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorOptions", + "properties": [ + { + "name": "filter", + "type": "(message: Message) => boolean", + "readonly": false, + "optional": true, + "description": "Filter function. Return true to collect the message." + }, + { + "name": "max", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max messages to collect. Collector stops when limit reached." + }, + { + "name": "time", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max duration in ms. Collector stops when time expires." + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 7, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageEditOptions", + "description": "Options for editing a message (content and/or embeds).", + "properties": [ + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true, + "description": "New text content" + }, + { + "name": "embeds", + "type": "any[]", + "readonly": false, + "optional": true, + "description": "New embeds (replaces existing)" + } + ], + "source": { + "file": "Message.ts", + "line": 32, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFileData", + "description": "File data for message attachment uploads. Use `data` for buffers or `url` to fetch from a URL.", + "properties": [], + "source": { + "file": "messageUtils.ts", + "line": 12, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFlagsResolvable", + "properties": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 20, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessageFlagsString", + "properties": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 14, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessagePayload", + "properties": [], + "source": { + "file": "Message.ts", + "line": 39, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessagePayloadData", + "description": "Data for a message payload (content, embeds, reply reference, etc.).", + "properties": [ + { + "name": "attachments", + "type": "{ id: number; filename: string; description?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "message_reference", + "type": "any", + "readonly": false, + "optional": true + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "MessagePayload.ts", + "line": 6, + "path": "packages/builders/src/messages/MessagePayload.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "MessageSendOptions", + "description": "Options for sending a message (content, embeds, files). Used by Message.send, Channel.send, ChannelManager.send.\nEmbedBuilder instances are auto-converted to API format—no need to call .toJSON().", + "properties": [], + "source": { + "file": "messageUtils.ts", + "line": 68, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MP4File", + "properties": [ + { + "name": "onError", + "type": "(e: Error) => void", + "readonly": false, + "optional": true + }, + { + "name": "onReady", + "type": "(info: { tracks?: Array<{ id: number; type: string; codec: string; video?: { width: number; height: number; }; timescale?: number; }>; }) => void", + "readonly": false, + "optional": true + }, + { + "name": "onSamples", + "type": "(trackId: number, user: unknown, samples: Array<{ data: ArrayBuffer; is_sync?: boolean; is_rap?: boolean; timescale: number; dts: number; duration: number; }>) => void", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "mp4box.d.ts", + "line": 2, + "path": "packages/voice/src/mp4box.d.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "PartialMessage", + "description": "Minimal message data for MessageDelete when the full message is not available.", + "properties": [ + { + "name": "authorId", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Author user ID, when provided by the gateway (e.g. Fluxer)." + }, + { + "name": "channel", + "type": "Channel | null", + "readonly": false, + "optional": true + }, + { + "name": "channelId", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Message content, when provided by the gateway (e.g. Fluxer)." + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "PartialMessage.ts", + "line": 4, + "path": "packages/fluxer-core/src/structures/PartialMessage.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "PermissionResolvable", + "properties": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 61, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "PermissionString", + "properties": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 55, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "RateLimitErrorBody", + "properties": [ + { + "name": "code", + "type": "\"RATE_LIMITED\"", + "readonly": false, + "optional": false + }, + { + "name": "global", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "retry_after", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "errors.ts", + "line": 64, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RateLimitState", + "description": "Tracks rate limit state per bucket (route hash).\nDelays requests when limit is exceeded.", + "properties": [ + { + "name": "limit", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "remaining", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "resetAt", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "RateLimitManager.ts", + "line": 5, + "path": "packages/rest/src/RateLimitManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ReactionCollectorEndReason", + "properties": [], + "source": { + "file": "ReactionCollector.ts", + "line": 18, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReactionCollectorEvents", + "properties": [ + { + "name": "collect", + "type": "[reaction: MessageReaction, user: User]", + "readonly": false, + "optional": false + }, + { + "name": "end", + "type": "[collected: Collection, reason: ReactionCollectorEndReason]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 25, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReactionCollectorOptions", + "properties": [ + { + "name": "filter", + "type": "(reaction: MessageReaction, user: User) => boolean", + "readonly": false, + "optional": true, + "description": "Filter function. Return true to collect the reaction." + }, + { + "name": "max", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max reactions to collect. Collector stops when limit reached." + }, + { + "name": "time", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max duration in ms. Collector stops when time expires." + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 9, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReadonlyCollection", + "description": "Read-only view of a Collection (e.g. for method return types).", + "properties": [], + "source": { + "file": "Collection.ts", + "line": 196, + "path": "packages/collection/src/Collection.ts" + }, + "package": "@fluxerjs/collection" + }, + { + "name": "ReplyOptions", + "description": "Options for message.reply() — ping toggle and reply-to-different-message.", + "properties": [ + { + "name": "ping", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether to ping the replied-to user (default true). Use false to suppress the mention notification." + }, + { + "name": "replyTo", + "type": "Message | { channelId: string; messageId: string; }", + "readonly": false, + "optional": true, + "description": "Reply to a different message instead of this one. Default: this message." + } + ], + "source": { + "file": "Message.ts", + "line": 45, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RequestOptions", + "properties": [ + { + "name": "auth", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "body", + "type": "unknown", + "readonly": false, + "optional": true + }, + { + "name": "files", + "type": "{ name: string; data: Blob | ArrayBuffer | Uint8Array | Buffer; filename?: string; }[]", + "readonly": false, + "optional": true + }, + { + "name": "headers", + "type": "Record", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "RequestManager.ts", + "line": 6, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ResolvedMessageFile", + "description": "Resolved file data (after URL fetch). Used internally by REST layer.", + "properties": [ + { + "name": "data", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "messageUtils.ts", + "line": 5, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RESTCreateRoleBody", + "description": "Body for POST /guilds/{id}/roles (create role). All fields optional.", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 20, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RestOptions", + "properties": [ + { + "name": "api", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "authPrefix", + "type": "\"Bot\" | \"Bearer\"", + "readonly": false, + "optional": false + }, + { + "name": "retries", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "timeout", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "userAgent", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "RequestManager.ts", + "line": 17, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RESTOptions", + "description": "Options for the REST client.", + "properties": [ + { + "name": "api", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "authPrefix", + "type": "\"Bot\" | \"Bearer\"", + "readonly": false, + "optional": true + }, + { + "name": "retries", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "timeout", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "userAgent", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "REST.ts", + "line": 6, + "path": "packages/rest/src/REST.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RESTUpdateRoleBody", + "description": "Body for PATCH /guilds/{id}/roles/{roleId} (update role). All fields optional.", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 32, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RoleResolvable", + "description": "Role ID or Role object for add/remove.", + "properties": [], + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 7, + "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "SendBodyResult", + "description": "API-ready body from MessageSendOptions or text content (serializes EmbedBuilder, includes attachments when files present).", + "properties": [ + { + "name": "attachments", + "type": "{ id: number; filename: string; title?: string | null; description?: string | null; flags?: number; }[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[]", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "Message flags (e.g. SuppressNotifications for reply without ping)." + } + ], + "source": { + "file": "messageUtils.ts", + "line": 81, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Snowflake", + "description": "Snowflake ID type - 64-bit unsigned integer as string.\nFluxer uses Twitter Snowflakes with epoch 1420070400000 (first second of 2015).", + "properties": [], + "source": { + "file": "snowflake.ts", + "line": 5, + "path": "packages/types/src/common/snowflake.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "TenorMediaResult", + "description": "Result for embed media: url and optional flags.", + "properties": [ + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "tenorUtils.ts", + "line": 4, + "path": "packages/util/src/tenorUtils.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UserFlagsResolvable", + "properties": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 48, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UserFlagsString", + "properties": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 42, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "VideoPlayOptions", + "description": "Options for video playback via {@link LiveKitRtcConnection.playVideo}.", + "properties": [ + { + "name": "height", + "type": "number", + "readonly": false, + "optional": true, + "description": "Output height for resolution override (FFmpeg path)." + }, + { + "name": "loop", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Loop video to keep stream continuously live (default: true)." + }, + { + "name": "maxFramerate", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max framerate for encoding (default: 60)." + }, + { + "name": "resolution", + "type": "\"480p\" | \"720p\" | \"1080p\" | \"1440p\" | \"4k\"", + "readonly": false, + "optional": true, + "description": "Output resolution. When set, overrides width/height and maxFramerate. FFmpeg path only." + }, + { + "name": "source", + "type": "\"camera\" | \"screenshare\"", + "readonly": false, + "optional": true, + "description": "Track source hint - camera or screenshare (default: camera)." + }, + { + "name": "useFFmpeg", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Use FFmpeg for decoding (avoids node-webcodecs; requires ffmpeg in PATH)." + }, + { + "name": "videoBitrate", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max video bitrate in bps for encoding (default: 2_500_000)." + }, + { + "name": "width", + "type": "number", + "readonly": false, + "optional": true, + "description": "Output width for resolution override (FFmpeg path)." + } + ], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 223, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceConnectionEvents", + "properties": [ + { + "name": "disconnect", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "error", + "type": "[err: Error]", + "readonly": false, + "optional": false + }, + { + "name": "ready", + "type": "[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "VoiceConnection.ts", + "line": 61, + "path": "packages/voice/src/VoiceConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceConnectionLike", + "description": "Union of connection types (Discord-style or LiveKit).", + "properties": [], + "source": { + "file": "index.ts", + "line": 17, + "path": "packages/voice/src/index.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceManagerOptions", + "description": "Options for creating a VoiceManager.", + "properties": [ + { + "name": "shardId", + "type": "number", + "readonly": false, + "optional": true, + "description": "Gateway shard ID to use for voice (default 0)." + } + ], + "source": { + "file": "VoiceManager.ts", + "line": 25, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceStateMap", + "description": "Maps guild_id -> user_id -> channel_id (null if not in voice).", + "properties": [], + "source": { + "file": "VoiceManager.ts", + "line": 17, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "WebhookAttachmentMeta", + "description": "Attachment metadata for webhook file uploads (id matches FormData index).", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags: IS_SPOILER (8), CONTAINS_EXPLICIT_MEDIA (16), IS_ANIMATED (32)" + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "Webhook.ts", + "line": 21, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebhookFileData", + "description": "File data for webhook attachment uploads. Use `data` for buffers or `url` to fetch from a URL.", + "properties": [], + "source": { + "file": "Webhook.ts", + "line": 18, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebhookSendOptions", + "description": "Options for sending a message via webhook. Aligns with WebhookMessageRequest in the API.", + "properties": [ + { + "name": "attachments", + "type": "WebhookAttachmentMeta[]", + "readonly": false, + "optional": true, + "description": "Attachment metadata for files (id = index). Use when files are provided." + }, + { + "name": "avatar_url", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override the webhook's default avatar URL for this message" + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true, + "description": "Message text content (up to 2000 characters)" + }, + { + "name": "embeds", + "type": "any[]", + "readonly": false, + "optional": true, + "description": "Embed objects. Use EmbedBuilder or APIEmbed; EmbedBuilder is serialized automatically." + }, + { + "name": "files", + "type": "MessageFileData[]", + "readonly": false, + "optional": true, + "description": "File attachments. When present, uses multipart/form-data (same as channel.send)." + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Text-to-speech" + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override the webhook's default username for this message" + } + ], + "source": { + "file": "Webhook.ts", + "line": 31, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebSocketConstructor", + "properties": [], + "source": { + "file": "WebSocketShard.ts", + "line": 20, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketLike", + "properties": [], + "source": { + "file": "WebSocketShard.ts", + "line": 13, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketManagerOptions", + "properties": [ + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "rest", + "type": "{ get: (route: string) => Promise; }", + "readonly": false, + "optional": false + }, + { + "name": "shardCount", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "shardIds", + "type": "number[]", + "readonly": false, + "optional": true + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "WebSocket", + "type": "WSConstructor", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "WebSocketManager.ts", + "line": 17, + "path": "packages/ws/src/WebSocketManager.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShardEvents", + "properties": [ + { + "name": "close", + "type": "[code: number]", + "readonly": false, + "optional": false + }, + { + "name": "debug", + "type": "[message: string]", + "readonly": false, + "optional": false + }, + { + "name": "dispatch", + "type": "[payload: GatewayReceivePayload]", + "readonly": false, + "optional": false + }, + { + "name": "error", + "type": "[error: Error]", + "readonly": false, + "optional": false + }, + { + "name": "ready", + "type": "[payload: unknown]", + "readonly": false, + "optional": false + }, + { + "name": "resumed", + "type": "[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 34, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShardOptions", + "properties": [ + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "numShards", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "shardId", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true, + "description": "Gateway API version (e.g. \"1\" for Fluxer). Defaults to \"1\" when not set." + }, + { + "name": "WebSocket", + "type": "WebSocketConstructor", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 22, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + } + ], + "enums": [ + { + "name": "APIErrorCode", + "description": "API error codes returned by the Fluxer API.\nSubset of commonly used codes for bot development.", + "members": [ + { + "name": "Unauthorized", + "value": "UNAUTHORIZED" + }, + { + "name": "Forbidden", + "value": "FORBIDDEN" + }, + { + "name": "MissingAuthorization", + "value": "MISSING_AUTHORIZATION" + }, + { + "name": "InvalidAuthToken", + "value": "INVALID_AUTH_TOKEN" + }, + { + "name": "InvalidToken", + "value": "INVALID_TOKEN" + }, + { + "name": "TwoFactorRequired", + "value": "TWO_FACTOR_REQUIRED" + }, + { + "name": "SudoModeRequired", + "value": "SUDO_MODE_REQUIRED" + }, + { + "name": "NotFound", + "value": "NOT_FOUND" + }, + { + "name": "UnknownUser", + "value": "UNKNOWN_USER" + }, + { + "name": "UnknownGuild", + "value": "UNKNOWN_GUILD" + }, + { + "name": "UnknownChannel", + "value": "UNKNOWN_CHANNEL" + }, + { + "name": "UnknownMessage", + "value": "UNKNOWN_MESSAGE" + }, + { + "name": "UnknownRole", + "value": "UNKNOWN_ROLE" + }, + { + "name": "UnknownEmoji", + "value": "UNKNOWN_EMOJI" + }, + { + "name": "UnknownSticker", + "value": "UNKNOWN_STICKER" + }, + { + "name": "UnknownWebhook", + "value": "UNKNOWN_WEBHOOK" + }, + { + "name": "UnknownInvite", + "value": "UNKNOWN_INVITE" + }, + { + "name": "BadRequest", + "value": "BAD_REQUEST" + }, + { + "name": "ValidationError", + "value": "VALIDATION_ERROR" + }, + { + "name": "InvalidRequest", + "value": "INVALID_REQUEST" + }, + { + "name": "InvalidFormBody", + "value": "INVALID_FORM_BODY" + }, + { + "name": "RateLimited", + "value": "RATE_LIMITED" + }, + { + "name": "SlowmodeRateLimited", + "value": "SLOWMODE_RATE_LIMITED" + }, + { + "name": "InternalServerError", + "value": "INTERNAL_SERVER_ERROR" + }, + { + "name": "BadGateway", + "value": "BAD_GATEWAY" + }, + { + "name": "GatewayTimeout", + "value": "GATEWAY_TIMEOUT" + }, + { + "name": "ServiceUnavailable", + "value": "SERVICE_UNAVAILABLE" + }, + { + "name": "BotsCannotSendFriendRequests", + "value": "BOTS_CANNOT_SEND_FRIEND_REQUESTS" + }, + { + "name": "BotAlreadyInGuild", + "value": "BOT_ALREADY_IN_GUILD" + }, + { + "name": "BotApplicationNotFound", + "value": "BOT_APPLICATION_NOT_FOUND" + }, + { + "name": "BotIsPrivate", + "value": "BOT_IS_PRIVATE" + }, + { + "name": "NotABotApplication", + "value": "NOT_A_BOT_APPLICATION" + }, + { + "name": "CannotSendEmptyMessage", + "value": "CANNOT_SEND_EMPTY_MESSAGE" + }, + { + "name": "FileSizeTooLarge", + "value": "FILE_SIZE_TOO_LARGE" + }, + { + "name": "MaxEmojis", + "value": "MAX_EMOJIS" + }, + { + "name": "MaxStickers", + "value": "MAX_STICKERS" + }, + { + "name": "MaxWebhooks", + "value": "MAX_WEBHOOKS" + } + ], + "source": { + "file": "errors.ts", + "line": 5, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "ChannelType", + "description": "Channel type enum (Fluxer/Discord compatible).\nAPI may return additional types (e.g. 998 for link channels with url).", + "members": [ + { + "name": "GuildText", + "value": 0 + }, + { + "name": "DM", + "value": 1 + }, + { + "name": "GuildVoice", + "value": 2 + }, + { + "name": "GroupDM", + "value": 3 + }, + { + "name": "GuildCategory", + "value": 4 + }, + { + "name": "GuildLink", + "value": 5 + }, + { + "name": "GuildLinkExtended", + "value": 998 + } + ], + "source": { + "file": "channel.ts", + "line": 8, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "DefaultMessageNotifications", + "members": [ + { + "name": "AllMessages", + "value": 0 + }, + { + "name": "OnlyMentions", + "value": 1 + } + ], + "source": { + "file": "guild.ts", + "line": 22, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayOpcodes", + "description": "Gateway opcodes (Discord-compatible).", + "members": [ + { + "name": "Dispatch", + "value": 0 + }, + { + "name": "Heartbeat", + "value": 1 + }, + { + "name": "Identify", + "value": 2 + }, + { + "name": "PresenceUpdate", + "value": 3 + }, + { + "name": "VoiceStateUpdate", + "value": 4 + }, + { + "name": "Resume", + "value": 6 + }, + { + "name": "Reconnect", + "value": 7 + }, + { + "name": "RequestGuildMembers", + "value": 8 + }, + { + "name": "InvalidSession", + "value": 9 + }, + { + "name": "Hello", + "value": 10 + }, + { + "name": "HeartbeatAck", + "value": 11 + } + ], + "source": { + "file": "opcodes.ts", + "line": 5, + "path": "packages/types/src/gateway/opcodes.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildExplicitContentFilter", + "members": [ + { + "name": "Disabled", + "value": 0 + }, + { + "name": "MembersWithoutRoles", + "value": 1 + }, + { + "name": "AllMembers", + "value": 2 + } + ], + "source": { + "file": "guild.ts", + "line": 16, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildMFALevel", + "members": [ + { + "name": "None", + "value": 0 + }, + { + "name": "Elevated", + "value": 1 + } + ], + "source": { + "file": "guild.ts", + "line": 11, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildVerificationLevel", + "members": [ + { + "name": "None", + "value": 0 + }, + { + "name": "Low", + "value": 1 + }, + { + "name": "Medium", + "value": 2 + }, + { + "name": "High", + "value": 3 + }, + { + "name": "VeryHigh", + "value": 4 + } + ], + "source": { + "file": "guild.ts", + "line": 3, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "MessageFlags", + "members": [ + { + "name": "SuppressEmbeds", + "value": 4 + }, + { + "name": "SuppressNotifications", + "value": 4096 + }, + { + "name": "VoiceMessage", + "value": 8192 + }, + { + "name": "CompactAttachments", + "value": 131072 + } + ], + "source": { + "file": "message.ts", + "line": 18, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "MessageType", + "members": [ + { + "name": "Default", + "value": 0 + }, + { + "name": "RecipientAdd", + "value": 1 + }, + { + "name": "RecipientRemove", + "value": 2 + }, + { + "name": "Call", + "value": 3 + }, + { + "name": "ChannelNameChange", + "value": 4 + }, + { + "name": "ChannelIconChange", + "value": 5 + }, + { + "name": "ChannelPinnedMessage", + "value": 6 + }, + { + "name": "UserJoin", + "value": 7 + }, + { + "name": "Reply", + "value": 19 + } + ], + "source": { + "file": "message.ts", + "line": 6, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "OverwriteType", + "description": "Permission overwrite type", + "members": [ + { + "name": "Role", + "value": 0 + }, + { + "name": "Member", + "value": 1 + } + ], + "source": { + "file": "channel.ts", + "line": 20, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "WebhookType", + "members": [ + { + "name": "Incoming", + "value": 1 + }, + { + "name": "ChannelFollower", + "value": 2 + } + ], + "source": { + "file": "webhook.ts", + "line": 4, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + } + ] +} \ No newline at end of file diff --git a/apps/docs-vitepress/api-data/v1.2.4/main.json b/apps/docs-vitepress/api-data/v1.2.4/main.json new file mode 100644 index 0000000..66bacd9 --- /dev/null +++ b/apps/docs-vitepress/api-data/v1.2.4/main.json @@ -0,0 +1,15035 @@ +{ + "meta": { + "generator": "fluxer-docgen", + "version": "1", + "date": 1775296500443 + }, + "package": "@fluxerjs/core", + "version": "1.2.4", + "packages": [ + "@fluxerjs/builders", + "@fluxerjs/collection", + "@fluxerjs/core", + "@fluxerjs/rest", + "@fluxerjs/types", + "@fluxerjs/util", + "@fluxerjs/voice", + "@fluxerjs/ws" + ], + "classes": [ + { + "name": "AttachmentBuilder", + "description": "Builder for attachment metadata (filename, description, spoiler). Actual file data is passed separately when sending.", + "constructor": { + "params": [ + { + "name": "id", + "type": "number", + "optional": false, + "description": "Index of the attachment (0-based). Must match the FormData part order." + }, + { + "name": "filename", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "Partial", + "optional": true + } + ] + }, + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "spoiler", + "type": "boolean", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "setDescription", + "params": [ + { + "name": "description", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the attachment description (alt text).", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 46 + } + }, + { + "name": "setName", + "params": [ + { + "name": "name", + "type": "string", + "optional": false + } + ], + "returns": "this", + "description": "Set the displayed filename.", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 37 + } + }, + { + "name": "setSpoiler", + "params": [ + { + "name": "spoiler", + "type": "boolean", + "optional": false + } + ], + "returns": "this", + "description": "Mark the attachment as a spoiler (blurred until clicked).", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 52 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "APIAttachmentPayload", + "description": "Convert to API format for MessagePayload.", + "async": false, + "source": { + "file": "AttachmentBuilder.ts", + "line": 62 + } + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 19, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "Base", + "description": "Base class for all Fluxer structures. Provides the client reference.", + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false, + "description": "The client instance this structure belongs to." + } + ], + "methods": [], + "source": { + "file": "Base.ts", + "line": 4, + "path": "packages/fluxer-core/src/structures/Base.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "BitField", + "constructor": { + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable", + "optional": false + } + ] + }, + "properties": [ + { + "name": "[Symbol.toStringTag]", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "bitfield", + "type": "bigint", + "readonly": false, + "optional": false + }, + { + "name": "defaultBit", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "Flags", + "type": "Record", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "add", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "BitField.ts", + "line": 56 + } + }, + { + "name": "equals", + "params": [ + { + "name": "bitfield", + "type": "BitField", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "BitField.ts", + "line": 98 + } + }, + { + "name": "freeze", + "params": [], + "returns": "Readonly>", + "async": false, + "source": { + "file": "BitField.ts", + "line": 102 + } + }, + { + "name": "has", + "params": [ + { + "name": "bit", + "type": "BitFieldResolvable", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "BitField.ts", + "line": 51 + } + }, + { + "name": "remove", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "BitField.ts", + "line": 65 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "bits", + "type": "BitFieldResolvable", + "optional": false + } + ], + "returns": "bigint", + "async": false, + "source": { + "file": "BitField.ts", + "line": 28 + } + }, + { + "name": "serialize", + "params": [], + "returns": "Record", + "async": false, + "source": { + "file": "BitField.ts", + "line": 74 + } + }, + { + "name": "toArray", + "params": [], + "returns": "S[]", + "async": false, + "source": { + "file": "BitField.ts", + "line": 83 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "string", + "async": false, + "source": { + "file": "BitField.ts", + "line": 90 + } + }, + { + "name": "valueOf", + "params": [], + "returns": "string", + "async": false, + "source": { + "file": "BitField.ts", + "line": 94 + } + } + ], + "source": { + "file": "BitField.ts", + "line": 15, + "path": "packages/util/src/BitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "CategoryChannel", + "extends": "GuildChannel", + "properties": [], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 388, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Channel", + "description": "Base class for all channel types.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannelPartial", + "optional": false, + "description": "API channel from GET /channels/{id} or GET /guilds/{id}/channels" + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Channel icon hash (Group DMs). Null if none." + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "lastPinTimestamp", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "ISO timestamp when the last message was pinned. Null if never pinned." + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Channel name. Guild channels and Group DMs have names; 1:1 DMs are typically null." + }, + { + "name": "type", + "type": "ChannelType", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "bulkDeleteMessages", + "params": [ + { + "name": "messageIds", + "type": "string[]", + "optional": false, + "description": "Array of message IDs to delete (2–100)" + } + ], + "returns": "Promise", + "description": "Bulk delete messages. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 107 + } + }, + { + "name": "canSendMessage", + "params": [], + "returns": "boolean", + "description": "Whether the bot can send messages in this channel.\nFor DMs: always true (when the channel exists).\nFor guild channels: checks ViewChannel and SendMessages permissions via guild.members.me.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 126 + } + }, + { + "name": "createDM", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannelPartial", + "optional": false + } + ], + "returns": "DMChannel", + "description": "Create a DM channel from API data (type DM or GroupDM).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 47 + } + }, + { + "name": "from", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "Channel data from the API" + } + ], + "returns": "GuildChannel | TextChannel | null", + "description": "Create the appropriate channel subclass from API data.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 76 + } + }, + { + "name": "fromOrCreate", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ], + "returns": "DMChannel | GuildChannel | TextChannel | null", + "description": "Create a channel from API data, including DM and GroupDM.\nUsed by ChannelManager.fetch() for GET /channels/{id}.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 93 + } + }, + { + "name": "isDM", + "params": [], + "returns": "boolean", + "description": "Whether this channel is a DM or Group DM.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 33 + } + }, + { + "name": "isLink", + "params": [], + "returns": "boolean", + "async": false, + "source": { + "file": "Channel.ts", + "line": 42 + } + }, + { + "name": "isTextBased", + "params": [], + "returns": "boolean", + "description": "Whether this channel has a send method (TextChannel, DMChannel).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 28 + } + }, + { + "name": "isVoice", + "params": [], + "returns": "boolean", + "description": "Whether this channel is voice-based (VoiceChannel).", + "async": false, + "source": { + "file": "Channel.ts", + "line": 38 + } + }, + { + "name": "sendTyping", + "params": [], + "returns": "Promise", + "description": "Send a typing indicator to the channel. Lasts ~10 seconds.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 117 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 26, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ChannelManager", + "description": "Manages channels with fetch and send.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + } + ], + "returns": "Promise", + "description": "Fetch a channel by ID from the API (or return from cache if present).", + "examples": [ + "const channel = await client.channels.fetch(channelId);\nif (channel?.isTextBased()) await channel.send('Hello!');" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 56 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + }, + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from the API.", + "examples": [ + "const channel = await client.channels.resolve(channelId);\nconst message = await channel?.messages?.fetch(messageId);" + ], + "async": true, + "deprecated": "Use channel.messages.fetch(messageId). Prefer (await client.channels.resolve(channelId))?.messages?.fetch(messageId).", + "source": { + "file": "ChannelManager.ts", + "line": 99 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + } + ], + "returns": "Promise", + "description": "Get a channel from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.channels.get(id) ?? (await client.channels.fetch(id))`.", + "examples": [ + "const channel = await client.channels.resolve(message.channelId);\nif (channel?.isTextBased()) await channel.send('Hello!');" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 43 + } + }, + { + "name": "send", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel (text channel or DM)" + }, + { + "name": "payload", + "type": "string | MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to a channel by ID. Works even when the channel is not cached.\nSkips the fetch when you only need to send.", + "examples": [ + "await client.channels.send(logChannelId, 'User joined!');\nawait client.channels.send(channelId, { embeds: [embed] });\nawait client.channels.send(channelId, { content: 'Report', files: [{ name: 'log.txt', data }] });" + ], + "async": true, + "source": { + "file": "ChannelManager.ts", + "line": 134 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "Channel", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "ChannelManager.ts", + "line": 25 + } + } + ], + "source": { + "file": "ChannelManager.ts", + "line": 17, + "path": "packages/fluxer-core/src/client/ChannelManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Client", + "description": "Main Fluxer bot client. Connects to the gateway, emits events, and provides REST access.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "ClientOptions", + "optional": false, + "description": "Token, REST config, WebSocket, presence, etc." + } + ] + }, + "properties": [ + { + "name": "channels", + "type": "ChannelManager", + "readonly": true, + "optional": false + }, + { + "name": "events", + "type": "ClientEventMethods", + "readonly": true, + "optional": false, + "description": "Typed event handlers. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...)." + }, + { + "name": "guilds", + "type": "GuildManager", + "readonly": true, + "optional": false + }, + { + "name": "readyAt", + "type": "Date | null", + "readonly": false, + "optional": false, + "description": "Timestamp when the client became ready. Null until READY is received." + }, + { + "name": "rest", + "type": "REST", + "readonly": true, + "optional": false + }, + { + "name": "Routes", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "user", + "type": "ClientUser | null", + "readonly": false, + "optional": false, + "description": "The authenticated bot user. Null until READY is received." + }, + { + "name": "users", + "type": "UsersManager", + "readonly": true, + "optional": false + }, + { + "name": "ws", + "type": "WebSocketManager", + "readonly": true, + "optional": false, + "description": "WebSocket manager. Throws if not logged in." + } + ], + "methods": [ + { + "name": "assertEmojiInGuild", + "params": [ + { + "name": "emojiId", + "type": "string", + "optional": false + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Asserts that a custom emoji (by id) belongs to the given guild.\nUsed when reacting in guild channels to reject emojis from other servers.", + "async": true, + "source": { + "file": "Client.ts", + "line": 254 + } + }, + { + "name": "assertReady", + "params": [], + "returns": "void", + "description": "Throws if the client is not ready. Use before accessing client.user or other post-ready state.", + "async": false, + "source": { + "file": "Client.ts", + "line": 534 + } + }, + { + "name": "destroy", + "params": [], + "returns": "Promise", + "description": "Disconnect from the gateway and clear cached data.", + "async": true, + "source": { + "file": "Client.ts", + "line": 507 + } + }, + { + "name": "fetchInstance", + "params": [], + "returns": "Promise", + "description": "Fetch instance info (API URL, gateway URL, features). GET /instance.\nDoes not require authentication.", + "async": true, + "source": { + "file": "Client.ts", + "line": 271 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the channel" + }, + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by channel and message ID. Use when you have IDs (e.g. from a DB).", + "examples": [ + "const channel = await client.channels.resolve(channelId);\nconst message = await channel?.messages?.fetch(messageId);" + ], + "async": true, + "deprecated": "Use channel.messages.fetch(messageId). For IDs-only: (await client.channels.resolve(channelId))?.messages?.fetch(messageId)", + "source": { + "file": "Client.ts", + "line": 286 + } + }, + { + "name": "getOrCreateUser", + "params": [ + { + "name": "data", + "type": "APIUserPartial", + "optional": false + } + ], + "returns": "User", + "description": "Get or create a User from API data. Caches in client.users.\nUpdates existing user's username, avatar, etc. when fresh data is provided.", + "async": false, + "source": { + "file": "Client.ts", + "line": 351 + } + }, + { + "name": "handleDispatch", + "params": [ + { + "name": "payload", + "type": "GatewayReceivePayload", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "Client.ts", + "line": 377 + } + }, + { + "name": "isReady", + "params": [], + "returns": "boolean", + "description": "Returns true if the client has received Ready and `user` is set.", + "async": false, + "source": { + "file": "Client.ts", + "line": 526 + } + }, + { + "name": "login", + "params": [ + { + "name": "token", + "type": "string", + "optional": false, + "description": "Bot token (e.g. from FLUXER_BOT_TOKEN)" + } + ], + "returns": "Promise", + "description": "Connect to the Fluxer gateway and authenticate.", + "async": true, + "source": { + "file": "Client.ts", + "line": 392 + } + }, + { + "name": "resolveEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Emoji string or object" + }, + { + "name": "guildId", + "type": "string | null", + "optional": true, + "description": "Guild ID for resolving custom emoji by name (required when id is missing)" + } + ], + "returns": "Promise", + "description": "Resolve an emoji argument to the API format (unicode or \"name:id\").\nSupports: <:name:id>, :name:, name:id, { name, id }, unicode.\nWhen id is missing (e.g. :name:), fetches guild emojis if guildId provided.\nWhen reacting in a guild channel, custom emojis must be from that guild.", + "async": true, + "source": { + "file": "Client.ts", + "line": 203 + } + }, + { + "name": "sendToChannel", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "payload", + "type": "string | MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a message to any channel by ID. Shorthand for client.channels.send().\nWorks even when the channel is not cached.", + "async": true, + "deprecated": "Use client.channels.send(channelId, payload).", + "source": { + "file": "Client.ts", + "line": 299 + } + }, + { + "name": "sendToGateway", + "params": [ + { + "name": "shardId", + "type": "number", + "optional": false, + "description": "Shard ID (use 0 for single-shard)" + }, + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false, + "description": "Gateway payload to send" + } + ], + "returns": "void", + "description": "Send a payload to the gateway (e.g. Voice State Update).", + "async": false, + "source": { + "file": "Client.ts", + "line": 373 + } + } + ], + "source": { + "file": "Client.ts", + "line": 152, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientUser", + "extends": "User", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIUserPartial", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetchGuilds", + "params": [], + "returns": "Promise", + "description": "Fetch guilds the bot is a member of.", + "async": true, + "source": { + "file": "ClientUser.ts", + "line": 18 + } + }, + { + "name": "leaveGuild", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "The guild ID to leave" + } + ], + "returns": "Promise", + "description": "Leave a guild. Requires the bot to be a member.", + "async": true, + "source": { + "file": "ClientUser.ts", + "line": 36 + } + } + ], + "source": { + "file": "ClientUser.ts", + "line": 7, + "path": "packages/fluxer-core/src/client/ClientUser.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Collection", + "description": "Extended Map with utility methods for key-value collections.\nSimilar to discord.js Collection.", + "extends": "Map", + "properties": [], + "methods": [ + { + "name": "clone", + "params": [], + "returns": "Collection", + "description": "Creates an identical shallow copy of this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 148 + } + }, + { + "name": "concat", + "params": [ + { + "name": "collections", + "type": "ReadonlyCollection[]", + "optional": false + } + ], + "returns": "Collection", + "description": "Combines this collection with others into a new collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 155 + } + }, + { + "name": "every", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "boolean", + "description": "Tests whether all elements pass the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 106 + } + }, + { + "name": "filter", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "Collection", + "description": "Creates a new collection with all elements that pass the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 74 + } + }, + { + "name": "find", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "V | undefined", + "description": "Searches for a single item where the given function returns a truthy value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 54 + } + }, + { + "name": "findKey", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "K | undefined", + "description": "Returns the key of the first item where the given function returns a truthy value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 64 + } + }, + { + "name": "first", + "params": [], + "returns": "V | undefined", + "description": "Obtains the first value(s) in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 10 + } + }, + { + "name": "first", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 11 + } + }, + { + "name": "first", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 12 + } + }, + { + "name": "last", + "params": [], + "returns": "V | undefined", + "description": "Obtains the last value(s) in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 23 + } + }, + { + "name": "last", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 24 + } + }, + { + "name": "last", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 25 + } + }, + { + "name": "map", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => T", + "optional": false + } + ], + "returns": "T[]", + "description": "Creates a new array with the results of calling the provided function on every element.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 85 + } + }, + { + "name": "partition", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "[Collection, Collection]", + "description": "Partitions the collection into two collections: one that passes the predicate and one that fails.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 127 + } + }, + { + "name": "random", + "params": [], + "returns": "V | undefined", + "description": "Returns a random value from this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 36 + } + }, + { + "name": "random", + "params": [ + { + "name": "amount", + "type": "number", + "optional": false + } + ], + "returns": "V[]", + "async": false, + "source": { + "file": "Collection.ts", + "line": 37 + } + }, + { + "name": "random", + "params": [ + { + "name": "amount", + "type": "number", + "optional": true + } + ], + "returns": "V | V[] | undefined", + "async": false, + "source": { + "file": "Collection.ts", + "line": 38 + } + }, + { + "name": "reduce", + "params": [ + { + "name": "fn", + "type": "(accumulator: T, value: V, key: K) => T", + "optional": false + }, + { + "name": "initialValue", + "type": "T", + "optional": false + } + ], + "returns": "T", + "description": "Applies a function against an accumulator and each element to reduce the collection to a single value.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 116 + } + }, + { + "name": "some", + "params": [ + { + "name": "fn", + "type": "(value: V, key: K) => boolean", + "optional": false + } + ], + "returns": "boolean", + "description": "Tests whether at least one element passes the test implemented by the provided function.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 96 + } + }, + { + "name": "sort", + "params": [ + { + "name": "compareFn", + "type": "(a: V, b: V, aKey: K, bKey: K) => number", + "optional": true + } + ], + "returns": "this", + "description": "Sorts the collection in place and returns it.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 166 + } + }, + { + "name": "tap", + "params": [ + { + "name": "fn", + "type": "(collection: this) => void", + "optional": false + } + ], + "returns": "this", + "description": "Invokes the given function and returns this collection (for chaining).", + "async": false, + "source": { + "file": "Collection.ts", + "line": 140 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "V[]", + "description": "Returns an array of the values in this collection.", + "async": false, + "source": { + "file": "Collection.ts", + "line": 181 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a string representation of the collection (array of values).", + "async": false, + "source": { + "file": "Collection.ts", + "line": 188 + } + } + ], + "source": { + "file": "Collection.ts", + "line": 5, + "path": "packages/collection/src/Collection.ts" + }, + "package": "@fluxerjs/collection" + }, + { + "name": "DMChannel", + "description": "DM channel (direct message between bot and a user).", + "extends": "Channel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ] + }, + "properties": [ + { + "name": "lastMessageId", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "MessageManager", + "readonly": true, + "optional": false, + "description": "Message manager for this channel. Use channel.messages.fetch(messageId)." + }, + { + "name": "nicks", + "type": "Record", + "readonly": false, + "optional": false, + "description": "Group DM member display names (userId -> nickname)." + }, + { + "name": "ownerId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Group DM creator ID. Null for 1:1 DMs." + }, + { + "name": "recipients", + "type": "User[]", + "readonly": false, + "optional": false, + "description": "Group DM recipients as User objects. Empty for 1:1 DMs." + } + ], + "methods": [ + { + "name": "addRecipient", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Add a recipient to this Group DM. Requires Group DM (type GroupDM).\nPUT /channels/{id}/recipients/{userId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 491 + } + }, + { + "name": "createMessageCollector", + "params": [ + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "MessageCollector", + "description": "Create a message collector for this DM channel.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 453 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this DM channel.", + "async": true, + "deprecated": "Use channel.messages.fetch(messageId) instead.", + "source": { + "file": "Channel.ts", + "line": 479 + } + }, + { + "name": "fetchPinnedMessages", + "params": [], + "returns": "Promise", + "description": "Fetch pinned messages in this DM channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 461 + } + }, + { + "name": "removeRecipient", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ silent?: boolean; }", + "optional": true, + "description": "silent: if true, does not send a system message (default false)" + } + ], + "returns": "Promise", + "description": "Remove a recipient from this Group DM. Requires Group DM (type GroupDM).\nDELETE /channels/{id}/recipients/{userId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 502 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this DM channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 434 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 411, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "EmbedBuilder", + "description": "Builder for creating rich embeds. Use `toJSON()` when passing to `reply`, `send`, or `edit`.\nEmbeds must have at least one of: title, description, fields, or image/thumbnail.\nA description-only embed (no title) is valid.", + "properties": [ + { + "name": "data", + "type": "APIEmbed", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addFields", + "params": [ + { + "name": "fields", + "type": "EmbedFieldData[]", + "optional": false + } + ], + "returns": "this", + "description": "Add one or more fields. Max 25 fields.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 181 + } + }, + { + "name": "from", + "params": [ + { + "name": "data", + "type": "APIEmbed", + "optional": false + } + ], + "returns": "EmbedBuilder", + "description": "Create an EmbedBuilder from an existing API embed.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 223 + } + }, + { + "name": "setAudio", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false, + "description": "Audio URL, full media options, or null to clear" + } + ], + "returns": "this", + "description": "Set the embed audio. Supported by Fluxer.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 175 + } + }, + { + "name": "setAuthor", + "params": [ + { + "name": "options", + "type": "EmbedAuthorOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed author (name, optional icon URL and link).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 120 + } + }, + { + "name": "setColor", + "params": [ + { + "name": "color", + "type": "string | number | [number, number, number] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed color. Number (hex), hex string, or `[r,g,b]` array.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 99 + } + }, + { + "name": "setDescription", + "params": [ + { + "name": "description", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed description. Max 4096 characters.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 82 + } + }, + { + "name": "setFooter", + "params": [ + { + "name": "options", + "type": "EmbedFooterOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed footer (text, optional icon URL).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 134 + } + }, + { + "name": "setImage", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed image (URL string or full media options).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 147 + } + }, + { + "name": "setThumbnail", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed thumbnail (URL string or full media options).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 153 + } + }, + { + "name": "setTimestamp", + "params": [ + { + "name": "timestamp", + "type": "number | Date | null", + "optional": true + } + ], + "returns": "this", + "description": "Set the embed timestamp. Omit for current time.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 109 + } + }, + { + "name": "setTitle", + "params": [ + { + "name": "title", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed title. Max 256 characters.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 74 + } + }, + { + "name": "setURL", + "params": [ + { + "name": "url", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the embed URL (title becomes a link).", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 90 + } + }, + { + "name": "setVideo", + "params": [ + { + "name": "input", + "type": "string | EmbedMediaOptions | null", + "optional": false, + "description": "Video URL, full media options (e.g. duration for progress bars), or null to clear" + } + ], + "returns": "this", + "description": "Set the embed video. Supported by Fluxer.\nEmbed stays type 'rich'; this adds the .video field.\nInclude a title (e.g. setTitle) when using video.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 165 + } + }, + { + "name": "spliceFields", + "params": [ + { + "name": "index", + "type": "number", + "optional": false + }, + { + "name": "deleteCount", + "type": "number", + "optional": false + }, + { + "name": "fields", + "type": "EmbedFieldData[]", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 195 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "APIEmbed", + "description": "Convert to API embed format for `reply`, `send`, or `edit`.", + "async": false, + "source": { + "file": "EmbedBuilder.ts", + "line": 208 + } + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 70, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "FluxerAPIError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "body", + "type": "APIErrorBody", + "optional": false + }, + { + "name": "statusCode", + "type": "number", + "optional": false + } + ] + }, + "properties": [ + { + "name": "code", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "errors", + "type": "APIErrorBody", + "readonly": true, + "optional": true + }, + { + "name": "isRetryable", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "True if the error is retryable (429 rate limit, 5xx server errors)." + }, + { + "name": "statusCode", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "FluxerAPIError.ts", + "line": 3, + "path": "packages/rest/src/errors/FluxerAPIError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "FluxerError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "message", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "FluxerErrorOptions", + "optional": true + } + ] + }, + "properties": [ + { + "name": "code", + "type": "string", + "readonly": true, + "optional": true + } + ], + "methods": [], + "source": { + "file": "FluxerError.ts", + "line": 6, + "path": "packages/fluxer-core/src/errors/FluxerError.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Guild", + "description": "Represents a Fluxer guild (server).", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API guild from GET /guilds/{id} or gateway GUILD_CREATE" + } + ] + }, + "properties": [ + { + "name": "afkChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "AFK voice channel ID. Null if none." + }, + { + "name": "afkTimeout", + "type": "number", + "readonly": false, + "optional": false, + "description": "AFK timeout in seconds." + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "bannerHeight", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Banner image height. Optional." + }, + { + "name": "bannerWidth", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Banner image width. Optional." + }, + { + "name": "channels", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "defaultMessageNotifications", + "type": "DefaultMessageNotifications", + "readonly": false, + "optional": false + }, + { + "name": "emojis", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "explicitContentFilter", + "type": "GuildExplicitContentFilter", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "GuildFeature[]", + "readonly": false, + "optional": false, + "description": "Enabled guild features." + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "members", + "type": "GuildMemberManager", + "readonly": false, + "optional": false + }, + { + "name": "mfaLevel", + "type": "GuildMFALevel", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfwLevel", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "ownerId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "roles", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "rulesChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Rules/guidelines channel ID. Null if none." + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Invite splash image hash. Null if none." + }, + { + "name": "splashHeight", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Splash image height. Optional." + }, + { + "name": "splashWidth", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Splash image width. Optional." + }, + { + "name": "systemChannelId", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "System messages channel ID. Null if none." + }, + { + "name": "vanityURLCode", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Custom vanity URL code (e.g. fluxer.gg/code). Null if none." + }, + { + "name": "verificationLevel", + "type": "GuildVerificationLevel", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "addRoleToMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member" + }, + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to add (or use guild.resolveRoleId for mention/name resolution)\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Add a role to a member by user ID. Does not require fetching the member first.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 138 + } + }, + { + "name": "ban", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to ban" + }, + { + "name": "options", + "type": "{ reason?: string; delete_message_days?: number; ban_duration_seconds?: number; }", + "optional": true, + "description": "Optional reason, delete_message_days (0–7), and ban_duration_seconds (temporary ban).\n ban_duration_seconds: 0 = permanent, or use 3600, 43200, 86400, 259200, 432000, 604800, 1209600, 2592000.\nRequires Ban Members permission." + } + ], + "returns": "Promise", + "description": "Ban a user from this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 264 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild banner URL, or null if no banner.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 119 + } + }, + { + "name": "createChannel", + "params": [ + { + "name": "data", + "type": "{ type: 0 | 2 | 4 | 5; name: string; parent_id?: string | null; topic?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; permission_overwrites?: Array<{ id: string; type: number; allow: string; deny: string; }>; }", + "optional": false, + "description": "Channel data: type (0=text, 2=voice, 4=category, 5=link), name, and optional parent_id, topic, bitrate, user_limit, nsfw, permission_overwrites\nRequires Manage Channels permission." + } + ], + "returns": "Promise", + "description": "Create a channel in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 376 + } + }, + { + "name": "createEmojisBulk", + "params": [ + { + "name": "emojis", + "type": "{ name: string; image: string; }[]", + "optional": false, + "description": "Array of { name, image } (base64), 1-50 emojis" + } + ], + "returns": "Promise", + "description": "Bulk create emojis. POST /guilds/{id}/emojis/bulk.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 641 + } + }, + { + "name": "createRole", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Role data (permissions accepts PermissionResolvable for convenience)" + } + ], + "returns": "Promise", + "description": "Create a role in this guild.\nRequires Manage Roles permission.", + "examples": [ + "const role = await guild.createRole({ name: 'Mod', permissions: ['KickMembers', 'BanMembers'] });" + ], + "async": true, + "source": { + "file": "Guild.ts", + "line": 160 + } + }, + { + "name": "createStickersBulk", + "params": [ + { + "name": "stickers", + "type": "{ name: string; image: string; description?: string; tags?: string[]; }[]", + "optional": false, + "description": "Array of { name, image, description?, tags? }, 1-50 stickers" + } + ], + "returns": "Promise", + "description": "Bulk create stickers. POST /guilds/{id}/stickers/bulk.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 658 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this guild. POST /guilds/{id}/delete.\nMust be the guild owner.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 462 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string; icon?: string | null; system_channel_id?: string | null; system_channel_flags?: number; afk_channel_id?: string | null; afk_timeout?: number; default_message_notifications?: DefaultMessageNotifications; ... 7 more ...; features?: GuildFeature[]; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this guild. PATCH /guilds/{id}.\nRequires guild owner or Administrator.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 421 + } + }, + { + "name": "fetchAuditLogs", + "params": [ + { + "name": "options", + "type": "{ limit?: number; before?: string; after?: string; userId?: string; actionType?: number; }", + "optional": true, + "description": "Optional limit, before, after, user_id, action_type for filtering" + } + ], + "returns": "Promise", + "description": "Fetch guild audit logs. Requires View Audit Log permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 346 + } + }, + { + "name": "fetchBans", + "params": [], + "returns": "Promise", + "description": "Fetch guild bans. Requires Ban Members permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 284 + } + }, + { + "name": "fetchChannels", + "params": [], + "returns": "Promise", + "description": "Fetch all channels in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 402 + } + }, + { + "name": "fetchEmoji", + "params": [ + { + "name": "emojiId", + "type": "string", + "optional": false, + "description": "The emoji ID to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a single emoji by ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 613 + } + }, + { + "name": "fetchEmojis", + "params": [], + "returns": "Promise", + "description": "Fetch all emojis in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 593 + } + }, + { + "name": "fetchMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a guild member by user ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 317 + } + }, + { + "name": "fetchRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to fetch" + } + ], + "returns": "Promise", + "description": "Fetch a role by ID.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 210 + } + }, + { + "name": "fetchRoles", + "params": [], + "returns": "Promise", + "description": "Fetch all roles in this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 190 + } + }, + { + "name": "fetchVanityURL", + "params": [], + "returns": "Promise", + "description": "Fetch vanity URL for this guild. GET /guilds/{id}/vanity-url.\nRequires Manage Guild permission.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 471 + } + }, + { + "name": "fetchWebhooks", + "params": [], + "returns": "Promise", + "description": "Fetch all webhooks in this guild. Returned webhooks do not include the token (cannot send).", + "async": true, + "source": { + "file": "Guild.ts", + "line": 365 + } + }, + { + "name": "iconURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild icon URL, or null if no icon.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 112 + } + }, + { + "name": "kick", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to kick\nRequires Kick Members permission." + } + ], + "returns": "Promise", + "description": "Kick a member from this guild.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 306 + } + }, + { + "name": "removeRoleFromMember", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID of the member" + }, + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to remove\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Remove a role from a member by user ID. Does not require fetching the member first.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 148 + } + }, + { + "name": "resetRoleHoistPositions", + "params": [], + "returns": "Promise", + "description": "Reset role hoist positions. DELETE /guilds/{id}/roles/hoist-positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 558 + } + }, + { + "name": "resolveRoleId", + "params": [ + { + "name": "arg", + "type": "string", + "optional": false, + "description": "Role mention (@role), role ID, or role name" + } + ], + "returns": "Promise", + "description": "Resolve a role ID from an argument (role mention, raw ID, or name).\nFetches guild roles if name is provided.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 239 + } + }, + { + "name": "setChannelPositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; position?: number; parent_id?: string | null; lock_permissions?: boolean; }[]", + "optional": false, + "description": "Array of { id, position?, parent_id?, lock_permissions? }\nRequires Manage Channels permission." + } + ], + "returns": "Promise", + "description": "Update channel positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 575 + } + }, + { + "name": "setDetachedBanner", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set detached banner feature. PATCH /guilds/{id}/detached-banner.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 501 + } + }, + { + "name": "setDisallowUnclaimedAccounts", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set disallow unclaimed accounts. PATCH /guilds/{id}/disallow-unclaimed-accounts.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 513 + } + }, + { + "name": "setRoleHoistPositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; hoist_position?: number; }[]", + "optional": false + } + ], + "returns": "Promise", + "description": "Update role hoist positions. PATCH /guilds/{id}/roles/hoist-positions.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 541 + } + }, + { + "name": "setRolePositions", + "params": [ + { + "name": "updates", + "type": "{ id: string; position?: number; }[]", + "optional": false, + "description": "Array of { id, position? }" + } + ], + "returns": "Promise", + "description": "Update role positions. PATCH /guilds/{id}/roles.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 526 + } + }, + { + "name": "setTextChannelFlexibleNames", + "params": [ + { + "name": "enabled", + "type": "boolean", + "optional": false + } + ], + "returns": "Promise", + "description": "Set text channel flexible names feature. PATCH /guilds/{id}/text-channel-flexible-names.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 489 + } + }, + { + "name": "splashURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild splash (invite background) URL, or null if no splash.", + "async": false, + "source": { + "file": "Guild.ts", + "line": 126 + } + }, + { + "name": "transferOwnership", + "params": [ + { + "name": "newOwnerId", + "type": "string", + "optional": false + }, + { + "name": "password", + "type": "string", + "optional": true + } + ], + "returns": "Promise", + "description": "Transfer guild ownership to another user. POST /guilds/{id}/transfer-ownership.\nMust be the guild owner.", + "async": true, + "source": { + "file": "Guild.ts", + "line": 479 + } + }, + { + "name": "unban", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "The user ID to unban\nRequires Ban Members permission." + } + ], + "returns": "Promise", + "description": "Remove a ban (unban a user).", + "async": true, + "source": { + "file": "Guild.ts", + "line": 297 + } + } + ], + "source": { + "file": "Guild.ts", + "line": 41, + "path": "packages/fluxer-core/src/structures/Guild.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildBan", + "description": "Represents a ban in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API ban from GET /guilds/{id}/bans or gateway GUILD_BAN_ADD" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "expiresAt", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "ISO timestamp when a temporary ban expires. Null for permanent bans." + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "unban", + "params": [], + "returns": "Promise", + "description": "Remove this ban (unban the user).\nRequires Ban Members permission.", + "async": true, + "source": { + "file": "GuildBan.ts", + "line": 30 + } + } + ], + "source": { + "file": "GuildBan.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildBan.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildChannel", + "extends": "Channel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "parentId", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permissionOverwrites", + "type": "APIChannelOverwrite[]", + "readonly": false, + "optional": false, + "description": "Permission overwrites for roles and members." + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + } + ], + "methods": [ + { + "name": "canSendMessage", + "params": [], + "returns": "boolean", + "description": "Whether the bot can send messages in this channel.\nChecks ViewChannel and SendMessages via guild.members.me permissions.\nReturns false if guild or bot member not cached.", + "async": false, + "source": { + "file": "Channel.ts", + "line": 234 + } + }, + { + "name": "createInvite", + "params": [ + { + "name": "options", + "type": "{ max_uses?: number; max_age?: number; unique?: boolean; temporary?: boolean; }", + "optional": true, + "description": "max_uses (0–100), max_age (0–604800 seconds), unique, temporary\nRequires Create Instant Invite permission." + } + ], + "returns": "Promise", + "description": "Create an invite for this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 177 + } + }, + { + "name": "createWebhook", + "params": [ + { + "name": "options", + "type": "{ name: string; avatar?: string | null; }", + "optional": false, + "description": "Webhook name and optional avatar URL" + } + ], + "returns": "Promise", + "description": "Create a webhook in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 154 + } + }, + { + "name": "delete", + "params": [ + { + "name": "options", + "type": "{ silent?: boolean; }", + "optional": true, + "description": "silent: if true, does not send a system message (default false)" + } + ], + "returns": "Promise", + "description": "Delete this channel. Requires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 302 + } + }, + { + "name": "deletePermission", + "params": [ + { + "name": "overwriteId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Remove a permission overwrite. DELETE /channels/{id}/permissions/{overwriteId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 260 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string | null; topic?: string | null; parent_id?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; rate_limit_per_user?: number; rtc_region?: string | null; permission_overwrites?: Array<{ id: string; type: number; allow?: string; deny?: string; }>; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this channel. PATCH /channels/{id}.\nRequires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 270 + } + }, + { + "name": "editPermission", + "params": [ + { + "name": "overwriteId", + "type": "string", + "optional": false, + "description": "Role or member ID" + }, + { + "name": "options", + "type": "{ type: 0 | 1; allow?: string; deny?: string; }", + "optional": false, + "description": "type (0=role, 1=member), allow, deny (permission bitfields)" + } + ], + "returns": "Promise", + "description": "Set or update a permission overwrite. PUT /channels/{id}/permissions/{overwriteId}.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 210 + } + }, + { + "name": "fetchInvites", + "params": [], + "returns": "Promise", + "description": "Fetch invites for this channel.\nRequires Manage Channel permission.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 199 + } + }, + { + "name": "fetchWebhooks", + "params": [], + "returns": "Promise", + "description": "Fetch all webhooks in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 166 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a message to this guild channel.\nWorks for text and announcement channels. Voice/category/link channels will fail at the API.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 247 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 132, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildEmoji", + "description": "Represents a custom emoji in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API emoji from GET /guilds/{id}/emojis or guild emoji events" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "identifier", + "type": "string", + "readonly": true, + "optional": false, + "description": "Emoji identifier for use in reactions: `name:id`" + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "CDN URL for this emoji image." + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this emoji. Requires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildEmoji.ts", + "line": 37 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name: string; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this emoji's name.\nRequires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildEmoji.ts", + "line": 49 + } + } + ], + "source": { + "file": "GuildEmoji.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildEmoji.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildManager", + "description": "Manages guilds with fetch.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "create", + "params": [ + { + "name": "options", + "type": "{ name: string; icon?: string | null; empty_features?: boolean; }", + "optional": false, + "description": "name (required), icon (base64), empty_features" + } + ], + "returns": "Promise", + "description": "Create a guild. POST /guilds.", + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 44 + } + }, + { + "name": "fetch", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Snowflake of the guild" + } + ], + "returns": "Promise", + "description": "Fetch a guild by ID from the API (or return from cache if present).", + "examples": [ + "const guild = await client.guilds.fetch(guildId);\nif (guild) console.log(guild.name);" + ], + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 66 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Snowflake of the guild" + } + ], + "returns": "Promise", + "description": "Get a guild from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.guilds.get(id) ?? (await client.guilds.fetch(id))`.", + "examples": [ + "const guild = await client.guilds.resolve(message.guildId);\nif (guild) console.log(guild.name);" + ], + "async": true, + "source": { + "file": "GuildManager.ts", + "line": 35 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "Guild", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "GuildManager.ts", + "line": 18 + } + } + ], + "source": { + "file": "GuildManager.ts", + "line": 10, + "path": "packages/fluxer-core/src/client/GuildManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildMember", + "description": "Represents a member of a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API guild member from GET /guilds/{id}/members or GET /guilds/{id}/members/{user_id}" + }, + { + "name": "guild", + "type": "Guild", + "optional": false + } + ] + }, + "properties": [ + { + "name": "accentColor", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "avatar", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "banner", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "communicationDisabledUntil", + "type": "Date | null", + "readonly": false, + "optional": false + }, + { + "name": "deaf", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "displayName", + "type": "string", + "readonly": true, + "optional": false, + "description": "Nickname, or global name, or username." + }, + { + "name": "guild", + "type": "Guild", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "joinedAt", + "type": "Date", + "readonly": true, + "optional": false + }, + { + "name": "mute", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "any", + "readonly": true, + "optional": false, + "description": "Get the member's guild-level permissions (from roles only, no channel overwrites).\nUse this for server-wide permission checks (e.g. ban, kick, manage roles).", + "examples": [ + "const perms = member.permissions;\nif (perms.has(PermissionFlags.BanMembers)) { ... }" + ] + }, + { + "name": "profileFlags", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "roles", + "type": "GuildMemberRoleManager", + "readonly": true, + "optional": false, + "description": "Role manager with add/remove/set and cache. Discord.js parity: member.roles.add(), member.roles.cache", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager" + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to add\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Add a role to this member.\nPrefer member.roles.add(roleId) for Discord.js parity.", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 90 + } + }, + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild-specific avatar URL for this member.\nReturns null if the member has no guild avatar (use displayAvatarURL for fallback).", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 64 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the guild-specific banner URL for this member.\nReturns null if the member has no guild banner.", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 80 + } + }, + { + "name": "displayAvatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string", + "description": "Get the avatar URL to display for this member.\nUses guild-specific avatar if set, otherwise falls back to the user's avatar.", + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 72 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ nick?: string | null; roles?: string[]; avatar?: string | null; banner?: string | null; bio?: string | null; pronouns?: string | null; accent_color?: number | null; profile_flags?: number | null; ... 5 more ...; connection_id?: string | null; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this guild member. PATCH /guilds/{id}/members/{userId} or /members/@me for the bot.\nFor @me: nick, avatar, banner, bio, pronouns, accent_color, profile_flags, mute, deaf,\ncommunication_disabled_until, timeout_reason, channel_id, connection_id.\nFor other members: same plus roles (array of role IDs).", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 110 + } + }, + { + "name": "move", + "params": [ + { + "name": "channelId", + "type": "string | null", + "optional": false, + "description": "The voice channel ID to move the member to, or null to disconnect" + }, + { + "name": "connectionId", + "type": "string | null", + "optional": true, + "description": "Optional connection ID for the specific voice session (usually not needed)" + } + ], + "returns": "Promise", + "description": "Move this member to a different voice channel or disconnect them from voice.\nRequires Move Members permission.", + "examples": [ + "// Move member to a different voice channel\nawait member.move('123456789012345678');\n\n// Disconnect member from voice\nawait member.move(null);" + ], + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 195 + } + }, + { + "name": "permissionsIn", + "params": [ + { + "name": "channel", + "type": "GuildChannel", + "optional": false, + "description": "The guild channel to check permissions for" + } + ], + "returns": "any", + "description": "Compute the member's effective permissions in a guild channel.\nApplies role permissions and channel overwrites.", + "examples": [ + "const perms = member.permissionsIn(channel);\nif (perms.has(PermissionFlags.SendMessages)) { ... }" + ], + "async": false, + "source": { + "file": "GuildMember.ts", + "line": 168 + } + }, + { + "name": "removeRole", + "params": [ + { + "name": "roleId", + "type": "string", + "optional": false, + "description": "The role ID to remove\nRequires Manage Roles permission." + } + ], + "returns": "Promise", + "description": "Remove a role from this member.\nPrefer member.roles.remove(roleId) for Discord.js parity.", + "async": true, + "source": { + "file": "GuildMember.ts", + "line": 100 + } + } + ], + "source": { + "file": "GuildMember.ts", + "line": 14, + "path": "packages/fluxer-core/src/structures/GuildMember.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GuildMemberManager", + "description": "Manages guild members with a Collection-like API.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProvides guild.members.me for Discord.js parity.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "guild", + "type": "Guild", + "optional": false + } + ] + }, + "properties": [ + { + "name": "me", + "type": "GuildMember | null", + "readonly": true, + "optional": false, + "description": "The current bot user as a GuildMember in this guild.\nReturns null if the bot's member is not cached or client.user is null.\nUse fetchMe() to load the bot's member when not cached.", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberManager", + "examples": [ + "const perms = guild.members.me?.permissions;\nif (perms?.has(PermissionFlags.BanMembers)) { ... }" + ] + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "options", + "type": "{ limit?: number; after?: string; }", + "optional": true, + "description": "limit (1-1000), after (user ID for pagination)" + } + ], + "returns": "Promise", + "description": "Fetch guild members with pagination. GET /guilds/{id}/members.", + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 69 + } + }, + { + "name": "fetchMe", + "params": [], + "returns": "Promise", + "description": "Fetch the current bot user as a GuildMember in this guild.\nCaches the result in guild.members.", + "examples": [ + "const me = await guild.members.fetchMe();\nconsole.log(me.displayName);" + ], + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 56 + } + }, + { + "name": "resolve", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + } + ], + "returns": "Promise", + "description": "Get a guild member from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `guild.members.get(userId) ?? (await guild.fetchMember(userId))`.", + "examples": [ + "const member = await guild.members.resolve(userId);\nconsole.log(member.displayName);" + ], + "async": true, + "source": { + "file": "GuildMemberManager.ts", + "line": 28 + } + } + ], + "source": { + "file": "GuildMemberManager.ts", + "line": 13, + "path": "packages/fluxer-core/src/client/GuildMemberManager.ts" + }, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberManager", + "package": "@fluxerjs/core" + }, + { + "name": "GuildMemberRoleManager", + "description": "Manages a guild member's roles with add/remove/set and a cache of Role objects.\nDiscord.js parity: member.roles.add(), member.roles.remove(), member.roles.set(), member.roles.cache", + "constructor": { + "params": [ + { + "name": "member", + "type": "GuildMember", + "optional": false + }, + { + "name": "initialRoleIds", + "type": "string[]", + "optional": false + } + ] + }, + "properties": [ + { + "name": "cache", + "type": "Collection", + "readonly": true, + "optional": false, + "description": "Collection of Role objects for this member's roles (from guild.roles).\nDiscord.js parity: member.roles.cache", + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager" + }, + { + "name": "roleIds", + "type": "readonly string[]", + "readonly": true, + "optional": false, + "description": "Role IDs for this member. Used by permissions; prefer cache for Role objects." + } + ], + "methods": [ + { + "name": "add", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "Promise", + "description": "Add a role to this member.\nDiscord.js parity: member.roles.add(roleId)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 75 + } + }, + { + "name": "has", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "boolean", + "description": "Check if the member has a role. Discord.js parity: member.roles.cache.has(roleId)", + "async": false, + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 46 + } + }, + { + "name": "remove", + "params": [ + { + "name": "roleOrId", + "type": "RoleResolvable", + "optional": false + } + ], + "returns": "Promise", + "description": "Remove a role from this member.\nDiscord.js parity: member.roles.remove(roleId)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 90 + } + }, + { + "name": "set", + "params": [ + { + "name": "roleIds", + "type": "string[]", + "optional": false + } + ], + "returns": "Promise", + "description": "Replace all roles for this member. PATCH /guilds/{id}/members/{userId}\nDiscord.js parity: member.roles.set(roleIds)\nRequires Manage Roles permission.", + "async": true, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 106 + } + } + ], + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 30, + "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" + }, + "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", + "package": "@fluxerjs/core" + }, + { + "name": "GuildSticker", + "description": "Represents a custom sticker in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API sticker from GET /guilds/{id}/stickers or guild sticker events" + }, + { + "name": "guildId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "CDN URL for this sticker image." + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this sticker. Requires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildSticker.ts", + "line": 36 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "{ name?: string; description?: string; }", + "optional": false + } + ], + "returns": "Promise", + "description": "Edit this sticker's name and/or description.\nRequires Manage Emojis and Stickers permission.", + "async": true, + "source": { + "file": "GuildSticker.ts", + "line": 46 + } + } + ], + "source": { + "file": "GuildSticker.ts", + "line": 8, + "path": "packages/fluxer-core/src/structures/GuildSticker.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "HTTPError", + "extends": "Error", + "constructor": { + "params": [ + { + "name": "statusCode", + "type": "number", + "optional": false + }, + { + "name": "body", + "type": "string | null", + "optional": false + } + ] + }, + "properties": [ + { + "name": "body", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "isRetryable", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "True if the error is retryable (429 rate limit, 5xx server errors)." + }, + { + "name": "statusCode", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "HTTPError.ts", + "line": 7, + "path": "packages/rest/src/errors/HTTPError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "Invite", + "description": "Represents an invite to a guild or channel.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIInvite", + "optional": false, + "description": "API invite from GET /invites/{code}, channel/guild invite list, or gateway INVITE_CREATE" + } + ] + }, + "properties": [ + { + "name": "channel", + "type": "APIChannelPartial", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "createdAt", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "expiresAt", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "guild", + "type": "APIGuildPartial", + "readonly": true, + "optional": false + }, + { + "name": "inviter", + "type": "User | null", + "readonly": true, + "optional": false + }, + { + "name": "maxAge", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "maxUses", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "memberCount", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "presenceCount", + "type": "number | null", + "readonly": true, + "optional": false + }, + { + "name": "temporary", + "type": "boolean | null", + "readonly": true, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false, + "description": "Full invite URL (https://fluxer.gg/{code} or instance-specific)." + }, + { + "name": "uses", + "type": "number | null", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this invite.\nRequires Manage Guild or Create Instant Invite permission.", + "async": true, + "source": { + "file": "Invite.ts", + "line": 61 + } + }, + { + "name": "getGuild", + "params": [], + "returns": "Guild | null", + "description": "Resolve the guild from cache if available.", + "async": false, + "source": { + "file": "Invite.ts", + "line": 53 + } + } + ], + "source": { + "file": "Invite.ts", + "line": 9, + "path": "packages/fluxer-core/src/structures/Invite.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "LinkChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 402, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "LiveKitRtcConnection", + "description": "Voice connection using LiveKit RTC. Used when Fluxer routes voice to LiveKit.\n\nSupports both audio playback ({@link play}) and video streaming ({@link playVideo}) to voice channels.\nVideo uses node-webcodecs for decoding (no ffmpeg subprocess). Audio uses prism-media WebM demuxer.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The Fluxer client instance" + }, + { + "name": "channel", + "type": "VoiceChannel", + "optional": false, + "description": "The voice channel to connect to" + }, + { + "name": "_userId", + "type": "string", + "optional": false, + "description": "The user ID (reserved for future use)" + } + ] + }, + "properties": [ + { + "name": "activeSpeakers", + "type": "Set", + "readonly": true, + "optional": false + }, + { + "name": "audioSource", + "type": "AudioSource | null", + "readonly": false, + "optional": false + }, + { + "name": "audioTrack", + "type": "LocalAudioTrack | null", + "readonly": false, + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "currentStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "currentVideoStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "lastServerEndpoint", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "lastServerToken", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "participantTrackSids", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "playing", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether audio is currently playing." + }, + { + "name": "playingVideo", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether a video track is currently playing in the voice channel." + }, + { + "name": "receiveSubscriptions", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "requestedSubscriptions", + "type": "Map", + "readonly": true, + "optional": false + }, + { + "name": "room", + "type": "Room | null", + "readonly": false, + "optional": false + }, + { + "name": "videoSource", + "type": "VideoSource | null", + "readonly": false, + "optional": false + }, + { + "name": "videoTrack", + "type": "LocalVideoTrack | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "audioDebug", + "params": [ + { + "name": "msg", + "type": "string", + "optional": false + }, + { + "name": "data", + "type": "object", + "optional": true + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 298 + } + }, + { + "name": "clearReceiveSubscriptions", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 452 + } + }, + { + "name": "connect", + "params": [ + { + "name": "server", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false, + "description": "Voice server update data (endpoint, token)" + }, + { + "name": "_state", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false, + "description": "Voice state update data (session, channel)" + } + ], + "returns": "Promise", + "description": "Connect to the LiveKit room using voice server and state from the gateway.\nCalled internally by VoiceManager; typically not used directly.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 474 + } + }, + { + "name": "debug", + "params": [ + { + "name": "msg", + "type": "string", + "optional": false + }, + { + "name": "data", + "type": "string | object", + "optional": true + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 294 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "description": "Disconnect from the room and remove all event listeners.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1750 + } + }, + { + "name": "disconnect", + "params": [], + "returns": "void", + "description": "Disconnect from the LiveKit room and stop all playback.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1737 + } + }, + { + "name": "emitDisconnect", + "params": [ + { + "name": "source", + "type": "string", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 304 + } + }, + { + "name": "getParticipantId", + "params": [ + { + "name": "participant", + "type": "RemoteParticipant", + "optional": false + } + ], + "returns": "string", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 340 + } + }, + { + "name": "getVolume", + "params": [], + "returns": "number", + "description": "Get current volume (0-200).", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 332 + } + }, + { + "name": "isAudioTrack", + "params": [ + { + "name": "track", + "type": "RemoteTrack", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 336 + } + }, + { + "name": "isConnected", + "params": [], + "returns": "boolean", + "description": "Returns true if the LiveKit room is connected and not destroyed.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 312 + } + }, + { + "name": "isSameServer", + "params": [ + { + "name": "endpoint", + "type": "string | null", + "optional": false, + "description": "Voice server endpoint from the gateway" + }, + { + "name": "token", + "type": "string", + "optional": false, + "description": "Voice server token" + } + ], + "returns": "boolean", + "description": "Returns true if we're already connected to the given server (skip migration).", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 321 + } + }, + { + "name": "play", + "params": [ + { + "name": "urlOrStream", + "type": "string | NodeJS.ReadableStream", + "optional": false, + "description": "Audio source: HTTP(S) URL to a WebM/Opus file, or a Node.js ReadableStream" + } + ], + "returns": "Promise", + "description": "Play audio from a WebM/Opus URL or readable stream. Publishes to the LiveKit room as an audio track.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1529 + } + }, + { + "name": "playOpus", + "params": [ + { + "name": "_stream", + "type": "NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 460 + } + }, + { + "name": "playVideo", + "params": [ + { + "name": "urlOrBuffer", + "type": "string | ArrayBuffer | Uint8Array", + "optional": false, + "description": "Video source: HTTP(S) URL to an MP4 file, or raw ArrayBuffer/Uint8Array of MP4 data" + }, + { + "name": "options", + "type": "VideoPlayOptions", + "optional": true, + "description": "Optional playback options (see {@link VideoPlayOptions})" + } + ], + "returns": "Promise", + "description": "Play video from an MP4 URL or buffer. Streams decoded frames to the LiveKit room as a video track.\nUses node-webcodecs for decoding (no ffmpeg). Supports H.264 (avc1) and H.265 (hvc1/hev1) codecs.", + "examples": [ + "```ts\nconst conn = await voiceManager.join(channel);\nif (conn instanceof LiveKitRtcConnection && conn.isConnected()) {\n await conn.playVideo('https://example.com/video.mp4', { source: 'camera' });\n}\n```" + ], + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 587 + } + }, + { + "name": "playVideoFFmpeg", + "params": [ + { + "name": "url", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "VideoPlayOptions", + "optional": true + } + ], + "returns": "Promise", + "description": "FFmpeg-based video playback. Bypasses node-webcodecs to avoid libc++abi crashes on macOS.\nRequires ffmpeg and ffprobe in PATH. URL input only.", + "async": true, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1160 + } + }, + { + "name": "setVolume", + "params": [ + { + "name": "volumePercent", + "type": "number", + "optional": false + } + ], + "returns": "void", + "description": "Set playback volume (0-200, 100 = normal). Affects current and future playback.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 327 + } + }, + { + "name": "stop", + "params": [], + "returns": "void", + "description": "Stop playback and clear both audio and video tracks.", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1720 + } + }, + { + "name": "stopVideo", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 1693 + } + }, + { + "name": "subscribeParticipantAudio", + "params": [ + { + "name": "participantId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ autoResubscribe?: boolean; }", + "optional": false + } + ], + "returns": "LiveKitReceiveSubscription", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 422 + } + }, + { + "name": "subscribeParticipantTrack", + "params": [ + { + "name": "participant", + "type": "RemoteParticipant", + "optional": false + }, + { + "name": "track", + "type": "RemoteTrack", + "optional": false + }, + { + "name": "options", + "type": "{ autoSubscribe?: boolean; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 344 + } + } + ], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 253, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "Message", + "description": "Represents a message in a channel.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIMessage", + "optional": false, + "description": "API message from POST/PATCH /channels/{id}/messages or gateway MESSAGE_CREATE" + } + ] + }, + "properties": [ + { + "name": "attachments", + "type": "Collection", + "readonly": true, + "optional": false + }, + { + "name": "author", + "type": "User", + "readonly": true, + "optional": false + }, + { + "name": "call", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "channel", + "type": "DMChannel | GuildChannel | TextChannel | null", + "readonly": true, + "optional": false, + "description": "Channel where this message was sent. Resolved from cache; null if not cached.\nMessages can only exist in text-based channels (text, DM, announcement), so this always has send() when non-null." + }, + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "createdAt", + "type": "Date", + "readonly": true, + "optional": false + }, + { + "name": "editedAt", + "type": "Date | null", + "readonly": true, + "optional": false + }, + { + "name": "embeds", + "type": "APIEmbed[]", + "readonly": true, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "guild", + "type": "Guild | null", + "readonly": true, + "optional": false, + "description": "Guild where this message was sent. Resolved from cache; null for DMs or if not cached." + }, + { + "name": "guildId", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "mentionEveryone", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "mentionRoles", + "type": "string[]", + "readonly": true, + "optional": false, + "description": "Role IDs mentioned in this message." + }, + { + "name": "mentions", + "type": "User[]", + "readonly": true, + "optional": false, + "description": "Users mentioned in this message." + }, + { + "name": "messageReference", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "messageSnapshots", + "type": "APIMessageSnapshot[]", + "readonly": true, + "optional": false + }, + { + "name": "nonce", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Client-side nonce for acknowledgment. Null if not provided." + }, + { + "name": "pinned", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "reactions", + "type": "APIMessageReaction[]", + "readonly": true, + "optional": false + }, + { + "name": "referencedMessage", + "type": "Message | null", + "readonly": true, + "optional": false + }, + { + "name": "stickers", + "type": "APIMessageSticker[]", + "readonly": true, + "optional": false + }, + { + "name": "tts", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "type", + "type": "MessageType", + "readonly": true, + "optional": false + }, + { + "name": "webhookId", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Webhook ID if this message was sent via webhook. Null otherwise." + } + ], + "methods": [ + { + "name": "createReactionCollector", + "params": [ + { + "name": "options", + "type": "ReactionCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "ReactionCollector", + "description": "Create a reaction collector for this message.\nCollects reactions matching the filter until time expires or max is reached.", + "examples": [ + "const collector = message.createReactionCollector({ filter: (r, u) => u.id === userId, time: 10000 });\ncollector.on('collect', (reaction, user) => console.log(user.username, 'reacted with', reaction.emoji.name));\ncollector.on('end', (collected, reason) => { ... });" + ], + "async": false, + "source": { + "file": "Message.ts", + "line": 272 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this message.", + "async": true, + "source": { + "file": "Message.ts", + "line": 290 + } + }, + { + "name": "deleteAttachment", + "params": [ + { + "name": "attachmentId", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "description": "Delete a specific attachment from this message.\nDELETE /channels/{id}/messages/{id}/attachments/{attachmentId}.", + "async": true, + "source": { + "file": "Message.ts", + "line": 298 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "MessageEditOptions", + "optional": false, + "description": "New content and/or embeds" + } + ], + "returns": "Promise", + "description": "Edit this message. Only the author (or admins) can edit.", + "async": true, + "source": { + "file": "Message.ts", + "line": 251 + } + }, + { + "name": "fetch", + "params": [], + "returns": "Promise", + "description": "Re-fetch this message from the API to get the latest content, embeds, reactions, etc.\nUse when you have a stale Message (e.g. from an old event or cache) and need fresh data.", + "examples": [ + "const updated = await message.fetch();\nconsole.log('Latest content:', updated.content);" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 285 + } + }, + { + "name": "fetchReactionUsers", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji or custom `{ name, id }`" + }, + { + "name": "options", + "type": "{ limit?: number; after?: string; }", + "optional": true, + "description": "limit (1–100), after (user ID for pagination)" + } + ], + "returns": "Promise", + "description": "Fetch users who reacted with the given emoji.", + "async": true, + "source": { + "file": "Message.ts", + "line": 382 + } + }, + { + "name": "formatEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id: string; }", + "optional": false + } + ], + "returns": "string", + "description": "Format emoji for reaction API: unicode string or \"name:id\" for custom.\nFor string resolution (e.g. :name:), use client.resolveEmoji; Message methods resolve automatically when guildId is available.", + "async": false, + "source": { + "file": "Message.ts", + "line": 322 + } + }, + { + "name": "pin", + "params": [], + "returns": "Promise", + "description": "Pin this message to the channel. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Message.ts", + "line": 307 + } + }, + { + "name": "react", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`" + } + ], + "returns": "Promise", + "description": "Add a reaction to this message (as the bot).", + "async": true, + "source": { + "file": "Message.ts", + "line": 337 + } + }, + { + "name": "removeAllReactions", + "params": [], + "returns": "Promise", + "description": "Remove all reactions from this message.\nRequires moderator permissions.", + "async": true, + "source": { + "file": "Message.ts", + "line": 361 + } + }, + { + "name": "removeReaction", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`" + }, + { + "name": "userId", + "type": "string", + "optional": true, + "description": "If provided, removes that user's reaction (requires moderator permissions)" + } + ], + "returns": "Promise", + "description": "Remove the bot's reaction, or a specific user's reaction if userId is provided.", + "async": true, + "source": { + "file": "Message.ts", + "line": 348 + } + }, + { + "name": "removeReactionEmoji", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false, + "description": "Unicode emoji, custom `{ name, id }`, `:name:`, `name:id`, or `<:name:id>`. Requires moderator permissions." + } + ], + "returns": "Promise", + "description": "Remove all reactions of a specific emoji from this message.", + "async": true, + "source": { + "file": "Message.ts", + "line": 369 + } + }, + { + "name": "reply", + "params": [ + { + "name": "options", + "type": "string | (MessageSendOptions & ReplyOptions)", + "optional": false, + "description": "Text content or object with content, embeds, and/or reply options (ping, replyTo)" + }, + { + "name": "replyOptions", + "type": "ReplyOptions", + "optional": true + } + ], + "returns": "Promise", + "description": "Reply to this message (shows as a reply in the client).", + "examples": [ + "await message.reply('Pong!');\nawait message.reply({ embeds: [embed] });\nawait message.reply('No ping!', { ping: false });\nawait message.reply({ content: 'Reply to other', replyTo: otherMessage });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 186 + } + }, + { + "name": "resolveChannel", + "params": [], + "returns": "Promise", + "description": "Resolve the channel (from cache or API). Use when you need the channel and it may not be cached.", + "async": true, + "source": { + "file": "Message.ts", + "line": 107 + } + }, + { + "name": "resolveEmojiForReaction", + "params": [ + { + "name": "emoji", + "type": "string | { name: string; id?: string; animated?: boolean; }", + "optional": false + } + ], + "returns": "Promise", + "async": false, + "source": { + "file": "Message.ts", + "line": 327 + } + }, + { + "name": "resolveGuild", + "params": [], + "returns": "Promise", + "description": "Resolve the guild (from cache or API). Returns null for DMs.", + "async": true, + "source": { + "file": "Message.ts", + "line": 115 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "string | MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this channel without replying. Use when you want a standalone message.", + "examples": [ + "await message.send('Pong!');\nawait message.send({ embeds: [embed] }); // EmbedBuilder auto-converted\nawait message.send({ content: 'File', files: [{ name: 'data.txt', data }] });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 160 + } + }, + { + "name": "sendTo", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Snowflake of the target channel (e.g. log channel ID)" + }, + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content and/or embeds" + } + ], + "returns": "Promise", + "description": "Send a message to a specific channel. Use for logging, forwarding, or sending to another channel in the guild.", + "examples": [ + "await message.sendTo(logChannelId, 'User ' + message.author.username + ' said: ' + message.content);\nawait message.sendTo(announceChannelId, { embeds: [embed] });" + ], + "async": true, + "source": { + "file": "Message.ts", + "line": 173 + } + }, + { + "name": "unpin", + "params": [], + "returns": "Promise", + "description": "Unpin this message from the channel. Requires Manage Messages permission.", + "async": true, + "source": { + "file": "Message.ts", + "line": 313 + } + } + ], + "source": { + "file": "Message.ts", + "line": 56, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollector", + "description": "Collects messages in a channel. Use channel.createMessageCollector().", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "collected", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "Required", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "emit", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "args", + "type": "MessageCollectorEvents[K]", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 81 + } + }, + { + "name": "on", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "listener", + "type": "(...args: MessageCollectorEvents[K]) => void", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 74 + } + }, + { + "name": "stop", + "params": [ + { + "name": "reason", + "type": "MessageCollectorEndReason", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "MessageCollector.ts", + "line": 63 + } + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 30, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFlagsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly SuppressEmbeds: bigint; readonly SuppressNotifications: bigint; readonly VoiceMessage: bigint; readonly CompactAttachments: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 16, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessageManager", + "description": "Manages messages for a channel. Access via channel.messages.", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + } + ] + }, + "properties": [], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this channel.\nWhen message caching is enabled, the fetched message is added to the cache.", + "async": true, + "source": { + "file": "MessageManager.ts", + "line": 38 + } + }, + { + "name": "get", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Message | undefined", + "description": "Get a message from cache. Returns undefined if not cached or caching is disabled.\nRequires options.cache.messages > 0.", + "async": false, + "source": { + "file": "MessageManager.ts", + "line": 26 + } + } + ], + "source": { + "file": "MessageManager.ts", + "line": 15, + "path": "packages/fluxer-core/src/client/MessageManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessagePayload", + "description": "Builder for message payloads. Use with `channel.send()` or `message.reply()`.", + "properties": [ + { + "name": "ContentMaxLength", + "type": "2000", + "readonly": true, + "optional": false + }, + { + "name": "data", + "type": "MessagePayloadData", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "addEmbed", + "params": [ + { + "name": "embed", + "type": "any", + "optional": false + } + ], + "returns": "this", + "description": "Add one embed. Max 10 total.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 44 + } + }, + { + "name": "create", + "params": [ + { + "name": "contentOrOptions", + "type": "string | MessagePayloadData", + "optional": true + } + ], + "returns": "MessagePayload", + "description": "Create a MessagePayload from a string or options object.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 105 + } + }, + { + "name": "setAttachments", + "params": [ + { + "name": "attachments", + "type": "(AttachmentBuilder | { id: number; filename: string; description?: string | null; })[] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set attachment metadata (for files sent with the request).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 53 + } + }, + { + "name": "setContent", + "params": [ + { + "name": "content", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set message text. Max 2000 characters.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 25 + } + }, + { + "name": "setEmbeds", + "params": [ + { + "name": "embeds", + "type": "any[] | null", + "optional": false + } + ], + "returns": "this", + "description": "Set embeds. Max 10. Replaces existing.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 33 + } + }, + { + "name": "setFlags", + "params": [ + { + "name": "flags", + "type": "number", + "optional": false + } + ], + "returns": "this", + "description": "Set message flags (e.g. ephemeral, suppress embeds).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 94 + } + }, + { + "name": "setReply", + "params": [ + { + "name": "reference", + "type": "any", + "optional": false + } + ], + "returns": "this", + "description": "Set reply reference (creates a reply to another message).", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 69 + } + }, + { + "name": "setTTS", + "params": [ + { + "name": "tts", + "type": "boolean", + "optional": false + } + ], + "returns": "this", + "description": "Enable text-to-speech.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 88 + } + }, + { + "name": "toJSON", + "params": [], + "returns": "MessagePayloadData", + "description": "Get the payload as a plain object.", + "async": false, + "source": { + "file": "MessagePayload.ts", + "line": 100 + } + } + ], + "source": { + "file": "MessagePayload.ts", + "line": 19, + "path": "packages/builders/src/messages/MessagePayload.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "MessageReaction", + "description": "Represents a reaction added to or removed from a message.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": true, + "optional": false + }, + { + "name": "emojiIdentifier", + "type": "string", + "readonly": true, + "optional": false, + "description": "Emoji as a string: unicode or \"name:id\" for custom." + }, + { + "name": "guild", + "type": "Guild | null", + "readonly": true, + "optional": false, + "description": "Guild where this reaction was added. Resolved from cache; null for DMs or if not cached." + }, + { + "name": "guildId", + "type": "string | null", + "readonly": true, + "optional": false + }, + { + "name": "messageId", + "type": "string", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetchMessage", + "params": [], + "returns": "Promise", + "description": "Fetch the message this reaction belongs to.\nUse when you need to edit, delete, or otherwise interact with the message.", + "async": true, + "source": { + "file": "MessageReaction.ts", + "line": 53 + } + } + ], + "source": { + "file": "MessageReaction.ts", + "line": 16, + "path": "packages/fluxer-core/src/structures/MessageReaction.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "PermissionsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly CreateInstantInvite: bigint; readonly KickMembers: bigint; readonly BanMembers: bigint; readonly Administrator: bigint; readonly ManageChannels: bigint; readonly ManageGuild: bigint; ... 30 more ...; readonly UpdateRtcRegion: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 57, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "RateLimitError", + "extends": "FluxerAPIError", + "constructor": { + "params": [ + { + "name": "body", + "type": "RateLimitErrorBody", + "optional": false + }, + { + "name": "statusCode", + "type": "number", + "optional": false + } + ] + }, + "properties": [ + { + "name": "global", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "retryAfter", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [], + "source": { + "file": "RateLimitError.ts", + "line": 4, + "path": "packages/rest/src/errors/RateLimitError.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RateLimitManager", + "properties": [ + { + "name": "buckets", + "type": "Map", + "readonly": false, + "optional": false + }, + { + "name": "globalResetAt", + "type": "number", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "getBucket", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "RateLimitState | undefined", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 15 + } + }, + { + "name": "getGlobalReset", + "params": [], + "returns": "number", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 27 + } + }, + { + "name": "getWaitTime", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "number", + "description": "Returns ms to wait before we can send again (0 if no wait).", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 32 + } + }, + { + "name": "setBucket", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "limit", + "type": "number", + "optional": false + }, + { + "name": "remaining", + "type": "number", + "optional": false + }, + { + "name": "resetAt", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 19 + } + }, + { + "name": "setGlobalReset", + "params": [ + { + "name": "resetAt", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 23 + } + }, + { + "name": "updateFromHeaders", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "headers", + "type": "Headers", + "optional": false + } + ], + "returns": "void", + "description": "Parse rate limit headers and update state.", + "async": false, + "source": { + "file": "RateLimitManager.ts", + "line": 42 + } + } + ], + "source": { + "file": "RateLimitManager.ts", + "line": 11, + "path": "packages/rest/src/RateLimitManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ReactionCollector", + "description": "Collects reactions on a message. Use message.createReactionCollector().", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "messageId", + "type": "string", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "ReactionCollectorOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "channelId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "collected", + "type": "any", + "readonly": true, + "optional": false + }, + { + "name": "messageId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "Required", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "emit", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "args", + "type": "ReactionCollectorEvents[K]", + "optional": false + } + ], + "returns": "boolean", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 110 + } + }, + { + "name": "on", + "params": [ + { + "name": "event", + "type": "K", + "optional": false + }, + { + "name": "listener", + "type": "(...args: ReactionCollectorEvents[K]) => void", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 103 + } + }, + { + "name": "stop", + "params": [ + { + "name": "reason", + "type": "ReactionCollectorEndReason", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "ReactionCollector.ts", + "line": 92 + } + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 37, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RequestManager", + "constructor": { + "params": [ + { + "name": "options", + "type": "Partial", + "optional": false + } + ] + }, + "properties": [ + { + "name": "baseUrl", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "options", + "type": "RestOptions", + "readonly": true, + "optional": false + }, + { + "name": "rateLimiter", + "type": "RateLimitManager", + "readonly": true, + "optional": false + }, + { + "name": "token", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "buildHeaders", + "params": [ + { + "name": "_route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "RequestOptions", + "optional": false + }, + { + "name": "body", + "type": "string | FormData | undefined", + "optional": false + } + ], + "returns": "Record", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 60 + } + }, + { + "name": "getRouteHash", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + } + ], + "returns": "string", + "description": "Hash route for rate limit bucket (use path without ids for grouping).", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 51 + } + }, + { + "name": "request", + "params": [ + { + "name": "method", + "type": "string", + "optional": false + }, + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "RequestOptions", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "RequestManager.ts", + "line": 78 + } + }, + { + "name": "setToken", + "params": [ + { + "name": "token", + "type": "string | null", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "RequestManager.ts", + "line": 42 + } + }, + { + "name": "waitForRateLimit", + "params": [ + { + "name": "routeHash", + "type": "string", + "optional": false + } + ], + "returns": "Promise", + "async": true, + "source": { + "file": "RequestManager.ts", + "line": 55 + } + } + ], + "source": { + "file": "RequestManager.ts", + "line": 26, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "REST", + "description": "HTTP client for the Fluxer API. Used by Client internally.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "RESTOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "requestManager", + "type": "RequestManager", + "readonly": true, + "optional": false + }, + { + "name": "Routes", + "type": "any", + "readonly": true, + "optional": false, + "description": "Route helpers (from @fluxerjs/types) for building paths." + }, + { + "name": "token", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Current bot token, or null." + } + ], + "methods": [ + { + "name": "delete", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a DELETE request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 82 + } + }, + { + "name": "get", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a GET request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 45 + } + }, + { + "name": "patch", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a PATCH request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 66 + } + }, + { + "name": "post", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; files?: Array<{ name: string; data: Blob | ArrayBuffer | Uint8Array; filename?: string; }>; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a POST request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 50 + } + }, + { + "name": "put", + "params": [ + { + "name": "route", + "type": "string", + "optional": false + }, + { + "name": "options", + "type": "{ body?: unknown; auth?: boolean; }", + "optional": true + } + ], + "returns": "Promise", + "description": "Send a PUT request.", + "async": true, + "source": { + "file": "REST.ts", + "line": 74 + } + }, + { + "name": "setToken", + "params": [ + { + "name": "token", + "type": "string | null", + "optional": false + } + ], + "returns": "this", + "description": "Set the bot token for authenticated requests.", + "async": false, + "source": { + "file": "REST.ts", + "line": 33 + } + } + ], + "source": { + "file": "REST.ts", + "line": 16, + "path": "packages/rest/src/REST.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "Role", + "description": "Represents a role in a guild.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIRole", + "optional": false + }, + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "The guild this role belongs to" + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "color", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "hoistPosition", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "Separately sorted position for hoisted roles. Null if not set." + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "PermissionsBitField", + "readonly": true, + "optional": false + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "unicodeEmoji", + "type": "string | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this role.\nRequires Manage Roles permission.", + "async": true, + "source": { + "file": "Role.ts", + "line": 107 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Role updates (permissions accepts PermissionResolvable for convenience)" + } + ], + "returns": "Promise", + "description": "Edit this role.\nRequires Manage Roles permission.", + "examples": [ + "await role.edit({ name: 'Moderator', permissions: ['BanMembers', 'KickMembers'] });" + ], + "async": true, + "source": { + "file": "Role.ts", + "line": 78 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a mention string (e.g. `<@&123456>`).", + "async": false, + "source": { + "file": "Role.ts", + "line": 66 + } + } + ], + "source": { + "file": "Role.ts", + "line": 14, + "path": "packages/fluxer-core/src/structures/Role.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "SnowflakeUtil", + "description": "Utilities for Fluxer snowflake IDs.\nFluxer uses Twitter Snowflakes with a custom epoch.", + "properties": [ + { + "name": "EPOCH", + "type": "1420070400000n", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "dateFromSnowflake", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "Date", + "description": "Converts a snowflake to a Date.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 21 + } + }, + { + "name": "deconstruct", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "{ timestamp: number; date: Date; workerId: number; processId: number; increment: number; }", + "description": "Deconstructs a snowflake into its components.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 37 + } + }, + { + "name": "isValid", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "boolean", + "description": "Checks if a string is a valid snowflake format (numeric string, 0 or positive).", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 62 + } + }, + { + "name": "snowflakeFromTimestamp", + "params": [ + { + "name": "timestamp", + "type": "number", + "optional": false + } + ], + "returns": "string", + "description": "Converts a Unix timestamp (ms) to a snowflake string.\nUseful for pagination (before/after).", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 29 + } + }, + { + "name": "timestampFromSnowflake", + "params": [ + { + "name": "snowflake", + "type": "string", + "optional": false + } + ], + "returns": "number", + "description": "Converts a snowflake to a Unix timestamp in milliseconds.", + "async": false, + "source": { + "file": "SnowflakeUtil.ts", + "line": 14 + } + } + ], + "source": { + "file": "SnowflakeUtil.ts", + "line": 8, + "path": "packages/util/src/SnowflakeUtil.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "TextChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "lastMessageId", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "MessageManager", + "readonly": true, + "optional": false, + "description": "Message manager for this channel. Use channel.messages.fetch(messageId)." + }, + { + "name": "nsfw", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "rateLimitPerUser", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "topic", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "methods": [ + { + "name": "createMessageCollector", + "params": [ + { + "name": "options", + "type": "MessageCollectorOptions", + "optional": true, + "description": "Filter, time (ms), and max count" + } + ], + "returns": "MessageCollector", + "description": "Create a message collector for this channel.\nCollects messages matching the filter until time expires or max is reached.", + "examples": [ + "const collector = channel.createMessageCollector({ filter: m => m.author.id === userId, time: 10000 });\ncollector.on('collect', m => console.log(m.content));\ncollector.on('end', (collected, reason) => { ... });" + ], + "async": false, + "source": { + "file": "Channel.ts", + "line": 353 + } + }, + { + "name": "fetchMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "Snowflake of the message" + } + ], + "returns": "Promise", + "description": "Fetch a message by ID from this channel.", + "async": true, + "deprecated": "Use channel.messages.fetch(messageId) instead.", + "source": { + "file": "Channel.ts", + "line": 379 + } + }, + { + "name": "fetchPinnedMessages", + "params": [], + "returns": "Promise", + "description": "Fetch pinned messages in this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 361 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, and/or files" + } + ], + "returns": "Promise", + "description": "Send a message to this channel.", + "async": true, + "source": { + "file": "Channel.ts", + "line": 329 + } + } + ], + "source": { + "file": "Channel.ts", + "line": 311, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "User", + "description": "Represents a user (or bot) on Fluxer.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIUserPartial", + "optional": false, + "description": "API user from message author, GET /users/{id}, or GET /users/@me" + } + ] + }, + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "avatarColor", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "RGB avatar color (e.g. 7577782). Null if not set." + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false, + "description": "Banner hash (from profile, member, or invite context). Null when not available." + }, + { + "name": "bot", + "type": "boolean", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "discriminator", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": false, + "description": "Public flags bitfield. Null if not set." + }, + { + "name": "globalName", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "system", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether this is an official system user." + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true, + "description": "Optional `size` and `extension` (default: png, or gif for animated)" + } + ], + "returns": "string | null", + "description": "Get the URL for this user's avatar.\nAuto-detects animated avatars (hash starting with `a_`) and uses gif extension.", + "async": false, + "source": { + "file": "User.ts", + "line": 61 + } + }, + { + "name": "bannerURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the URL for this user's banner.\nReturns null if the user has no banner (only available when fetched from profile/member context).", + "async": false, + "source": { + "file": "User.ts", + "line": 77 + } + }, + { + "name": "createDM", + "params": [], + "returns": "Promise", + "description": "Create or get a DM channel with this user.\nReturns the DM channel; use {@link DMChannel.send} to send messages.", + "async": true, + "source": { + "file": "User.ts", + "line": 93 + } + }, + { + "name": "displayAvatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string", + "description": "Get the avatar URL, or the default avatar if none set (Fluxer: fluxerstatic.com).", + "async": false, + "source": { + "file": "User.ts", + "line": 69 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "MessageSendOptions", + "optional": false + } + ], + "returns": "Promise", + "description": "Send a DM to this user.\nConvenience method that creates the DM channel and sends the message.", + "async": true, + "source": { + "file": "User.ts", + "line": 105 + } + }, + { + "name": "toString", + "params": [], + "returns": "string", + "description": "Returns a mention string (e.g. `<@123456>`).", + "async": false, + "source": { + "file": "User.ts", + "line": 85 + } + } + ], + "source": { + "file": "User.ts", + "line": 12, + "path": "packages/fluxer-core/src/structures/User.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "UserFlagsBitField", + "extends": "BitField", + "properties": [ + { + "name": "Flags", + "type": "{ readonly Staff: bigint; readonly CtpMember: bigint; readonly Partner: bigint; readonly BugHunter: bigint; readonly FriendlyBot: bigint; readonly FriendlyBotManualApproval: bigint; ... 24 more ...; readonly StaffHidden: bigint; }", + "readonly": false, + "optional": false + } + ], + "methods": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 44, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UsersManager", + "description": "Manages users with fetch and profile helpers.\nExtends Collection so you can use .get(), .set(), .filter(), etc.", + "extends": "Collection", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + } + ] + }, + "properties": [ + { + "name": "maxSize", + "type": "number", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "fetch", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + } + ], + "returns": "Promise", + "description": "Fetch a user by ID from the API.\nUpdates cache if user already exists.", + "examples": [ + "const user = await client.users.fetch(userId);\nconsole.log(user.username);" + ], + "async": true, + "source": { + "file": "UsersManager.ts", + "line": 54 + } + }, + { + "name": "fetchWithProfile", + "params": [ + { + "name": "userId", + "type": "string", + "optional": false, + "description": "Snowflake of the user" + }, + { + "name": "options", + "type": "{ guildId?: string | null; }", + "optional": true, + "description": "Optional guildId for server profile and member data" + } + ], + "returns": "Promise", + "description": "Fetch a user with full profile and optional guild context.\nReturns user, global profile, server profile (when guildId), and member (when guildId).\nIdeal for userinfo commands.", + "examples": [ + "const { user, globalProfile, serverProfile, member } = await client.users.fetchWithProfile(\n userId,\n { guildId: message.guildId ?? undefined },\n);" + ], + "async": true, + "source": { + "file": "UsersManager.ts", + "line": 73 + } + }, + { + "name": "set", + "params": [ + { + "name": "key", + "type": "string", + "optional": false + }, + { + "name": "value", + "type": "User", + "optional": false + } + ], + "returns": "this", + "async": false, + "source": { + "file": "UsersManager.ts", + "line": 36 + } + } + ], + "source": { + "file": "UsersManager.ts", + "line": 28, + "path": "packages/fluxer-core/src/client/UsersManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "VoiceChannel", + "extends": "GuildChannel", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "APIChannel", + "optional": false + } + ] + }, + "properties": [ + { + "name": "bitrate", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "rtcRegion", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "userLimit", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "methods": [], + "source": { + "file": "Channel.ts", + "line": 389, + "path": "packages/fluxer-core/src/structures/Channel.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "VoiceConnection", + "description": "Voice connection using Discord's UDP-based protocol. Emits `ready`, `error`, `disconnect`.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "optional": false + }, + { + "name": "userId", + "type": "string", + "optional": false + } + ] + }, + "properties": [ + { + "name": "audioPacketQueue", + "type": "Buffer[]", + "readonly": false, + "optional": false + }, + { + "name": "channel", + "type": "VoiceChannel", + "readonly": true, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "currentStream", + "type": "{ destroy?: () => void; } | null", + "readonly": false, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "heartbeatInterval", + "type": "NodeJS.Timeout | null", + "readonly": false, + "optional": false + }, + { + "name": "pacingInterval", + "type": "NodeJS.Timeout | null", + "readonly": false, + "optional": false + }, + { + "name": "playing", + "type": "boolean", + "readonly": true, + "optional": false, + "description": "Whether audio is currently playing." + }, + { + "name": "remoteUdpAddress", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "remoteUdpPort", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "secretKey", + "type": "Uint8Array | null", + "readonly": false, + "optional": false + }, + { + "name": "sequence", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "sessionId", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Discord voice session ID." + }, + { + "name": "ssrc", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "timestamp", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "udpSocket", + "type": "dgram.Socket | null", + "readonly": false, + "optional": false + }, + { + "name": "voiceWs", + "type": "VoiceWebSocket | null", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [ + { + "name": "server", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false + }, + { + "name": "state", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false + } + ], + "returns": "Promise", + "description": "Called when we have both server update and state update.", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 110 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "description": "Disconnect and remove all listeners.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 405 + } + }, + { + "name": "disconnect", + "params": [], + "returns": "void", + "description": "Disconnect from voice (closes WebSocket and UDP).", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 386 + } + }, + { + "name": "getWebSocketConstructor", + "params": [], + "returns": "Promise VoiceWebSocket>", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 206 + } + }, + { + "name": "play", + "params": [ + { + "name": "urlOrStream", + "type": "string | NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "Promise", + "description": "Play a direct WebM/Opus URL or stream. Fetches the URL (if string), demuxes with prism-media WebmDemuxer,\nand sends Opus packets to the voice connection. No FFmpeg or encoding; input must be WebM with Opus.", + "async": true, + "source": { + "file": "VoiceConnection.ts", + "line": 297 + } + }, + { + "name": "playOpus", + "params": [ + { + "name": "stream", + "type": "NodeJS.ReadableStream", + "optional": false + } + ], + "returns": "void", + "description": "Play a stream of raw Opus packets\nUses the same queue and 20ms pacing as play(). Use this for local files (MP3 → PCM → Opus) or other Opus sources.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 257 + } + }, + { + "name": "sendAudioFrame", + "params": [ + { + "name": "opusPayload", + "type": "Buffer", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 353 + } + }, + { + "name": "sendVoiceOp", + "params": [ + { + "name": "op", + "type": "number", + "optional": false + }, + { + "name": "d", + "type": "unknown", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 214 + } + }, + { + "name": "setupUDP", + "params": [ + { + "name": "remoteAddress", + "type": "string", + "optional": false + }, + { + "name": "remotePort", + "type": "number", + "optional": false + }, + { + "name": "onReady", + "type": "() => void", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 219 + } + }, + { + "name": "stop", + "params": [], + "returns": "void", + "description": "Stop playback and clear the queue.", + "async": false, + "source": { + "file": "VoiceConnection.ts", + "line": 372 + } + } + ], + "source": { + "file": "VoiceConnection.ts", + "line": 68, + "path": "packages/voice/src/VoiceConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceManager", + "description": "Manages voice connections. Use `getVoiceManager(client)` to obtain an instance.", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "options", + "type": "VoiceManagerOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "connectionIds", + "type": "Map", + "readonly": true, + "optional": false, + "description": "channel_id -> connection_id (from VoiceServerUpdate; required for voice state updates)" + }, + { + "name": "connections", + "type": "any", + "readonly": true, + "optional": false, + "description": "channel_id -> connection (Fluxer multi-channel: allows multiple connections per guild)" + }, + { + "name": "pending", + "type": "Map void; reject: (e: Error) => void; server?: any; state?: any; }>", + "readonly": true, + "optional": false, + "description": "channel_id -> pending join" + }, + { + "name": "shardId", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "voiceStates", + "type": "VoiceStateMap", + "readonly": true, + "optional": false, + "description": "guild_id -> user_id -> channel_id" + } + ], + "methods": [ + { + "name": "getConnection", + "params": [ + { + "name": "channelOrGuildId", + "type": "string", + "optional": false, + "description": "Channel ID (primary) or guild ID (returns first connection in that guild)" + } + ], + "returns": "VoiceConnection | LiveKitRtcConnection | undefined", + "description": "Get the active voice connection for a channel or guild.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 451 + } + }, + { + "name": "getVoiceChannelId", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Guild ID to look up" + }, + { + "name": "userId", + "type": "string", + "optional": false, + "description": "User ID to look up" + } + ], + "returns": "string | null", + "description": "Get the voice channel ID the user is currently in, or null if not in voice.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 90 + } + }, + { + "name": "handleVoiceServerUpdate", + "params": [ + { + "name": "data", + "type": "GatewayVoiceServerUpdateDispatchData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 158 + } + }, + { + "name": "handleVoiceStatesSync", + "params": [ + { + "name": "data", + "type": "{ guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 71 + } + }, + { + "name": "handleVoiceStateUpdate", + "params": [ + { + "name": "data", + "type": "GatewayVoiceStateUpdateDispatchData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 126 + } + }, + { + "name": "join", + "params": [ + { + "name": "channel", + "type": "VoiceChannel", + "optional": false, + "description": "The voice channel to join" + } + ], + "returns": "Promise", + "description": "Join a voice channel. Resolves when the connection is ready.\nSupports multiple connections per guild (Fluxer multi-channel).", + "async": true, + "source": { + "file": "VoiceManager.ts", + "line": 346 + } + }, + { + "name": "leave", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false, + "description": "Guild ID to leave" + } + ], + "returns": "void", + "description": "Leave all voice channels in a guild.\nWith multi-channel support, disconnects from every channel in the guild.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 399 + } + }, + { + "name": "leaveChannel", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Channel ID to leave" + } + ], + "returns": "void", + "description": "Leave a specific voice channel by channel ID.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 426 + } + }, + { + "name": "listParticipantsInChannel", + "params": [ + { + "name": "guildId", + "type": "string", + "optional": false + }, + { + "name": "channelId", + "type": "string", + "optional": false + } + ], + "returns": "string[]", + "description": "List participant user IDs currently in a specific voice channel.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 99 + } + }, + { + "name": "registerConnection", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "conn", + "type": "VoiceConnection | LiveKitRtcConnection", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 249 + } + }, + { + "name": "storeConnectionId", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "connectionId", + "type": "string | null | undefined", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 243 + } + }, + { + "name": "subscribeChannelParticipants", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "opts", + "type": "{ autoResubscribe?: boolean; }", + "optional": true + } + ], + "returns": "LiveKitReceiveSubscription[]", + "description": "Subscribe to inbound audio for all known participants currently in a voice channel.\nOnly supported for LiveKit connections.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 113 + } + }, + { + "name": "tryCompletePending", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "pending", + "type": "{ channel: VoiceChannel; resolve: (c: VoiceConnection | LiveKitRtcConnection) => void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData; state?: GatewayVoiceStateUpdateDispatchData; }", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 286 + } + }, + { + "name": "updateVoiceState", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false, + "description": "Channel ID (connection key)" + }, + { + "name": "partial", + "type": "{ self_stream?: boolean; self_video?: boolean; self_mute?: boolean; self_deaf?: boolean; }", + "optional": false, + "description": "Partial voice state to update (self_stream, self_video, self_mute, self_deaf)" + } + ], + "returns": "void", + "description": "Update voice state (e.g. self_stream, self_video) while in a channel.\nSends a VoiceStateUpdate to the gateway so the server and clients see the change.\nRequires connection_id (from VoiceServerUpdate); without it, the gateway would treat\nthe update as a new join and trigger a new VoiceServerUpdate, causing connection loops.", + "async": false, + "source": { + "file": "VoiceManager.ts", + "line": 468 + } + }, + { + "name": "uploadStreamPreview", + "params": [ + { + "name": "channelId", + "type": "string", + "optional": false + }, + { + "name": "conn", + "type": "VoiceConnection | LiveKitRtcConnection", + "optional": false + } + ], + "returns": "Promise", + "description": "Upload a placeholder stream preview so the preview URL returns 200 instead of 404.", + "async": true, + "source": { + "file": "VoiceManager.ts", + "line": 270 + } + } + ], + "source": { + "file": "VoiceManager.ts", + "line": 31, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "Webhook", + "description": "Represents a Discord/Fluxer webhook. Supports creating, fetching, sending, and deleting.\nThe token is only available when the webhook was created; fetched webhooks cannot send messages.", + "extends": "Base", + "constructor": { + "params": [ + { + "name": "client", + "type": "Client", + "optional": false + }, + { + "name": "data", + "type": "any", + "optional": false, + "description": "API webhook from POST /channels/{id}/webhooks (has token) or GET /webhooks/{id} (no token)" + } + ] + }, + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "channelId", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "client", + "type": "Client", + "readonly": true, + "optional": false + }, + { + "name": "guildId", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string | null", + "readonly": true, + "optional": false, + "description": "Present only when webhook was created via createWebhook(); not returned when fetching." + }, + { + "name": "user", + "type": "User", + "readonly": true, + "optional": false, + "description": "User who created the webhook." + } + ], + "methods": [ + { + "name": "avatarURL", + "params": [ + { + "name": "options", + "type": "{ size?: number; extension?: string; }", + "optional": true + } + ], + "returns": "string | null", + "description": "Get the URL for this webhook's avatar.\nReturns null if the webhook has no custom avatar.", + "async": false, + "source": { + "file": "Webhook.ts", + "line": 81 + } + }, + { + "name": "delete", + "params": [], + "returns": "Promise", + "description": "Delete this webhook. Requires bot token with Manage Webhooks permission.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 86 + } + }, + { + "name": "edit", + "params": [ + { + "name": "options", + "type": "any", + "optional": false, + "description": "Fields to update (name, avatar, channel_id when using bot auth)" + } + ], + "returns": "Promise", + "description": "Edit this webhook. With token: name and avatar only. Without token (bot auth): name, avatar, and channel_id.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 95 + } + }, + { + "name": "editMessage", + "params": [ + { + "name": "messageId", + "type": "string", + "optional": false, + "description": "The ID of the message to edit" + }, + { + "name": "options", + "type": "APIWebhookEditMessageRequest", + "optional": false, + "description": "Fields to update (content, embeds, attachments)" + } + ], + "returns": "Promise", + "description": "Edit a message previously sent by this webhook.\nRequires the webhook token.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 174 + } + }, + { + "name": "fetch", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "webhookId", + "type": "string", + "optional": false, + "description": "The webhook ID" + } + ], + "returns": "Promise", + "description": "Fetch a webhook by ID using bot auth.", + "async": true, + "source": { + "file": "Webhook.ts", + "line": 193 + } + }, + { + "name": "fromToken", + "params": [ + { + "name": "client", + "type": "Client", + "optional": false, + "description": "The client instance" + }, + { + "name": "webhookId", + "type": "string", + "optional": false, + "description": "The webhook ID" + }, + { + "name": "token", + "type": "string", + "optional": false, + "description": "The webhook token (from createWebhook or stored)" + }, + { + "name": "options", + "type": "{ channelId?: string; guildId?: string; name?: string; }", + "optional": true, + "description": "Optional channelId, guildId, name for display" + } + ], + "returns": "Webhook", + "description": "Create a Webhook instance from an ID and token (e.g. from a stored webhook URL).", + "async": false, + "source": { + "file": "Webhook.ts", + "line": 205 + } + }, + { + "name": "send", + "params": [ + { + "name": "options", + "type": "string | WebhookSendOptions", + "optional": false, + "description": "Text content or object with content, embeds, username, avatar_url, tts, files, attachments" + }, + { + "name": "wait", + "type": "boolean", + "optional": true, + "description": "If true, waits for the API and returns the created Message; otherwise returns void (204)" + } + ], + "returns": "Promise", + "description": "Send a message via this webhook. Requires the webhook token (only present when created, not when fetched).", + "examples": [ + "await webhook.send('Hello!');\nawait webhook.send({ embeds: [embed] });\nawait webhook.send({ content: 'File attached', files: [{ name: 'data.txt', data: buffer }] });\nconst msg = await webhook.send({ content: 'Hi' }, true);" + ], + "async": true, + "source": { + "file": "Webhook.ts", + "line": 136 + } + } + ], + "source": { + "file": "Webhook.ts", + "line": 52, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebSocketManager", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "WebSocketManagerOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "gatewayUrl", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "options", + "type": "WebSocketManagerOptions", + "readonly": true, + "optional": false + }, + { + "name": "shardCount", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "shards", + "type": "Map", + "readonly": false, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [], + "returns": "Promise", + "async": true, + "source": { + "file": "WebSocketManager.ts", + "line": 40 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 120 + } + }, + { + "name": "getShardCount", + "params": [], + "returns": "number", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 127 + } + }, + { + "name": "send", + "params": [ + { + "name": "shardId", + "type": "number", + "optional": false + }, + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketManager.ts", + "line": 116 + } + } + ], + "source": { + "file": "WebSocketManager.ts", + "line": 28, + "path": "packages/ws/src/WebSocketManager.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShard", + "extends": "EventEmitter", + "constructor": { + "params": [ + { + "name": "options", + "type": "WebSocketShardOptions", + "optional": false + } + ] + }, + "properties": [ + { + "name": "destroying", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "heartbeatAt", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "heartbeatInterval", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "lastHeartbeatAck", + "type": "boolean", + "readonly": false, + "optional": false, + "description": "True until we send a heartbeat; then false until we get HeartbeatAck. Avoids closing before first heartbeat." + }, + { + "name": "options", + "type": "WebSocketShardOptions", + "readonly": true, + "optional": false + }, + { + "name": "reconnectDelayMs", + "type": "number", + "readonly": false, + "optional": false, + "description": "Current reconnect delay in ms; resets on successful connect." + }, + { + "name": "reconnectTimeout", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "seq", + "type": "number | null", + "readonly": false, + "optional": false + }, + { + "name": "sessionId", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "status", + "type": "number", + "readonly": true, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": true, + "optional": false + }, + { + "name": "ws", + "type": "WebSocketLike | null", + "readonly": false, + "optional": false + }, + { + "name": "WS", + "type": "WebSocketConstructor", + "readonly": true, + "optional": false + } + ], + "methods": [ + { + "name": "connect", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 103 + } + }, + { + "name": "debug", + "params": [ + { + "name": "message", + "type": "string", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 160 + } + }, + { + "name": "destroy", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 258 + } + }, + { + "name": "handleHello", + "params": [ + { + "name": "data", + "type": "GatewayHelloData", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 202 + } + }, + { + "name": "handlePayload", + "params": [ + { + "name": "payload", + "type": "GatewayReceivePayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 164 + } + }, + { + "name": "scheduleReconnect", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 62 + } + }, + { + "name": "send", + "params": [ + { + "name": "payload", + "type": "GatewaySendPayload", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 253 + } + }, + { + "name": "startHeartbeat", + "params": [ + { + "name": "interval", + "type": "number", + "optional": false + } + ], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 231 + } + }, + { + "name": "stopHeartbeat", + "params": [], + "returns": "void", + "async": false, + "source": { + "file": "WebSocketShard.ts", + "line": 246 + } + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 46, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + } + ], + "interfaces": [ + { + "name": "APIApplicationCommandInteraction", + "description": "Minimal application command interaction (slash command) payload from the gateway.", + "properties": [ + { + "name": "application_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "data", + "type": "{ id?: string; name: string; type?: number; options?: Array<{ name: string; type: number; value?: APIApplicationCommandOptionValue; }>; }", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true, + "description": "Guild member (when interaction is in a guild). Includes user." + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true, + "description": "User who ran the command (DM context or fallback)." + } + ], + "source": { + "file": "interaction.ts", + "line": 9, + "path": "packages/types/src/api/interaction.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIApplicationCommandOptionValue", + "description": "Application command option value (string, number, or boolean).", + "properties": [], + "source": { + "file": "interaction.ts", + "line": 6, + "path": "packages/types/src/api/interaction.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIAttachmentPayload", + "description": "API format for an attachment in a message payload.", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 12, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "APIBan", + "properties": [ + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "ISO timestamp when a temporary ban expires. Null for permanent bans." + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ban.ts", + "line": 3, + "path": "packages/types/src/api/ban.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannel", + "description": "Channel from GET /channels/{id} or GET /guilds/{id}/channels", + "properties": [ + { + "name": "bitrate", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "last_message_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "nicks", + "type": "Record", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "owner_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "parent_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "permission_overwrites", + "type": "APIChannelOverwrite[]", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "rate_limit_per_user", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "recipients", + "type": "APIUserPartial[]", + "readonly": false, + "optional": true + }, + { + "name": "rtc_region", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "topic", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "External URL (link channels, type 998)" + }, + { + "name": "user_limit", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "channel.ts", + "line": 45, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannelOverwrite", + "description": "Permission overwrite from GET /channels/{id} or GET /guilds/{id}/channels", + "properties": [ + { + "name": "allow", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "deny", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "OverwriteType", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "channel.ts", + "line": 26, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIChannelPartial", + "description": "Minimal channel (id, type required)", + "properties": [ + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "parent_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "channel.ts", + "line": 34, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIConnectedAccount", + "description": "Connected account from profile response.", + "properties": [ + { + "name": "name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 46, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbed", + "properties": [ + { + "name": "audio", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "children", + "type": "APIEmbedChild[] | null", + "readonly": false, + "optional": true, + "description": "Nested embeds from unfurlers" + }, + { + "name": "color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "fields", + "type": "APIEmbedField[] | null", + "readonly": false, + "optional": true + }, + { + "name": "footer", + "type": "APIEmbedFooter | null", + "readonly": false, + "optional": true + }, + { + "name": "image", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "provider", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "thumbnail", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "EmbedType", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "video", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 64, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedAuthor", + "properties": [ + { + "name": "icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "proxy_icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 1, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedChild", + "description": "Nested embed from unfurlers (subset of APIEmbed)", + "properties": [ + { + "name": "audio", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "fields", + "type": "APIEmbedField[] | null", + "readonly": false, + "optional": true + }, + { + "name": "footer", + "type": "APIEmbedFooter | null", + "readonly": false, + "optional": true + }, + { + "name": "image", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "provider", + "type": "APIEmbedAuthor | null", + "readonly": false, + "optional": true + }, + { + "name": "thumbnail", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "EmbedType", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "video", + "type": "APIEmbedMedia | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 46, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedField", + "properties": [ + { + "name": "inline", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "value", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "embed.ts", + "line": 37, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedFooter", + "properties": [ + { + "name": "icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "proxy_icon_url", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "embed.ts", + "line": 8, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmbedMedia", + "properties": [ + { + "name": "content_hash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "EmbedMediaFlags bitfield (e.g. EmbedMediaFlags.CONTAINS_EXPLICIT_MEDIA)" + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 placeholder for lazy loading" + }, + { + "name": "proxy_url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "embed.ts", + "line": 22, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmoji", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "emoji.ts", + "line": 4, + "path": "packages/types/src/api/emoji.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIEmojiWithUser", + "properties": [ + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "emoji.ts", + "line": 10, + "path": "packages/types/src/api/emoji.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIErrorBody", + "properties": [ + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "errors", + "type": "{ path: string; message: string; code?: string; }[]", + "readonly": false, + "optional": true + }, + { + "name": "message", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "errors.ts", + "line": 58, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGatewayBotResponse", + "description": "Response from GET /gateway/bot\nurl: WebSocket URL, session_start_limit: rate limit info in ms", + "properties": [ + { + "name": "session_start_limit", + "type": "{ total: number; remaining: number; reset_after: number; max_concurrency: number; }", + "readonly": false, + "optional": false + }, + { + "name": "shards", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "gateway.ts", + "line": 5, + "path": "packages/types/src/api/gateway.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuild", + "description": "Guild from GET /guilds/{id} or gateway GUILD_CREATE", + "properties": [ + { + "name": "afk_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "afk_timeout", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "banner_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "banner_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "default_message_notifications", + "type": "DefaultMessageNotifications", + "readonly": false, + "optional": false + }, + { + "name": "disabled_operations", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "embed_splash_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "explicit_content_filter", + "type": "GuildExplicitContentFilter", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "GuildFeature[]", + "readonly": false, + "optional": false + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "message_history_cutoff", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "mfa_level", + "type": "GuildMFALevel", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfw_level", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "owner_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "rules_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "splash_card_alignment", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "splash_height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "splash_width", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "system_channel_flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "system_channel_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "vanity_url_code", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "verification_level", + "type": "GuildVerificationLevel", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 55, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildAuditLog", + "description": "Response from GET /guilds/{id}/audit-logs", + "properties": [ + { + "name": "audit_log_entries", + "type": "APIGuildAuditLogEntry[]", + "readonly": false, + "optional": false + }, + { + "name": "users", + "type": "{ id: Snowflake; username?: string; discriminator?: string; avatar?: string | null; }[]", + "readonly": false, + "optional": false + }, + { + "name": "webhooks", + "type": "{ id: Snowflake; name?: string; avatar?: string | null; }[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 114, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildAuditLogEntry", + "description": "Audit log entry from GET /guilds/{id}/audit-logs", + "properties": [ + { + "name": "action_type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "changes", + "type": "{ key: string; old_value?: string | number | boolean | null; new_value?: string | number | boolean | null; }[]", + "readonly": false, + "optional": true, + "description": "Changed fields. Value types vary by action_type (e.g. string for name, number for permissions)." + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "target_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "user_id", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "guild.ts", + "line": 88, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildFeatureToggle", + "description": "Request body for guild feature toggles (text-channel-flexible-names, etc.)", + "properties": [ + { + "name": "enabled", + "type": "boolean", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 109, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildMember", + "description": "Guild member from GET /guilds/{guild_id}/members or GET /guilds/{guild_id}/members/{user_id}", + "properties": [ + { + "name": "accent_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "communication_disabled_until", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "joined_at", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "premium_since", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "When the user started boosting this guild." + }, + { + "name": "profile_flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "roles", + "type": "string[]", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "user.ts", + "line": 65, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIGuildPartial", + "properties": [ + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "features", + "type": "string[]", + "readonly": false, + "optional": true + }, + { + "name": "icon", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "splash", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "invite.ts", + "line": 5, + "path": "packages/types/src/api/invite.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIInstance", + "description": "Response from GET /instance (unauthenticated).\nInstance info and API/gateway endpoints.", + "properties": [ + { + "name": "api_code_version", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "captcha", + "type": "Record", + "readonly": false, + "optional": true + }, + { + "name": "endpoints", + "type": "{ api: string; gateway: string; }", + "readonly": false, + "optional": false + }, + { + "name": "features", + "type": "{ voice_enabled?: boolean; }", + "readonly": false, + "optional": true + }, + { + "name": "push", + "type": "Record", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "instance.ts", + "line": 5, + "path": "packages/types/src/api/instance.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIInvite", + "properties": [ + { + "name": "channel", + "type": "APIChannelPartial", + "readonly": false, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "created_at", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild", + "type": "APIGuildPartial", + "readonly": false, + "optional": false + }, + { + "name": "inviter", + "type": "APIUserPartial | null", + "readonly": false, + "optional": true + }, + { + "name": "max_age", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "max_uses", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "member_count", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "presence_count", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "temporary", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "uses", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "invite.ts", + "line": 14, + "path": "packages/types/src/api/invite.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessage", + "description": "Message from GET /channels/{id}/messages, POST /channels/{id}/messages, PATCH, or gateway MESSAGE_CREATE", + "properties": [ + { + "name": "attachments", + "type": "APIMessageAttachment[] | null", + "readonly": false, + "optional": true + }, + { + "name": "author", + "type": "APIUserPartial", + "readonly": false, + "optional": false + }, + { + "name": "call", + "type": "APIMessageCall | null", + "readonly": false, + "optional": true, + "description": "Call info when type is Call" + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "edited_timestamp", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member", + "type": "APIGuildMember | null", + "readonly": false, + "optional": true, + "description": "Author's guild member (gateway MESSAGE_CREATE only, when guild message)" + }, + { + "name": "mention_everyone", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "mention_roles", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mentions", + "type": "APIUserPartial[] | null", + "readonly": false, + "optional": true + }, + { + "name": "message_reference", + "type": "APIMessageReference | null", + "readonly": false, + "optional": true + }, + { + "name": "message_snapshots", + "type": "APIMessageSnapshot[] | null", + "readonly": false, + "optional": true, + "description": "Snapshots of forwarded messages" + }, + { + "name": "nonce", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "pinned", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "reactions", + "type": "APIMessageReaction[] | null", + "readonly": false, + "optional": true + }, + { + "name": "referenced_message", + "type": "APIMessage | null", + "readonly": false, + "optional": true + }, + { + "name": "stickers", + "type": "APIMessageSticker[] | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "type", + "type": "MessageType", + "readonly": false, + "optional": false + }, + { + "name": "webhook_id", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 111, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageAttachment", + "properties": [ + { + "name": "content_hash", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Hash of attachment content for integrity" + }, + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "expired", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "expires_at", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags bitfield" + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "nsfw", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 placeholder for lazy loading" + }, + { + "name": "proxy_url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "size", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "waveform", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Base64 audio waveform for voice messages" + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 75, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageCall", + "description": "Call metadata for call-type messages", + "properties": [ + { + "name": "ended_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "participants", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "message.ts", + "line": 47, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageReaction", + "properties": [ + { + "name": "count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "APIReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "me", + "type": "boolean | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 31, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageReference", + "description": "Reply/forward reference from GET /channels/{id}/messages (type 0 = reply)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": true, + "description": "0 = reply, 1 = forward" + } + ], + "source": { + "file": "message.ts", + "line": 38, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageSnapshot", + "description": "Snapshot of a forwarded message", + "properties": [ + { + "name": "attachments", + "type": "APIMessageAttachment[] | null", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "edited_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mention_roles", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mentions", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "stickers", + "type": "APIMessageSticker[] | null", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 53, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIMessageSticker", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "message.ts", + "line": 100, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIProfileResponse", + "description": "Full profile response from GET /users/{id}/profile.\nOptionally use ?guild_id=GUILD_ID for server-specific profile.", + "properties": [ + { + "name": "connected_accounts", + "type": "APIConnectedAccount[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mutual_guild_ids", + "type": "string[] | null", + "readonly": false, + "optional": true + }, + { + "name": "mutual_guilds", + "type": "{ id: Snowflake; }[] | null", + "readonly": false, + "optional": true + }, + { + "name": "user_profile", + "type": "APIUserProfile | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 55, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIReactionEmoji", + "properties": [ + { + "name": "animated", + "type": "boolean | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "message.ts", + "line": 25, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIRole", + "description": "Role from GET /guilds/{id}/roles\npermissions is bitfield as string (e.g. \"8933636165185\")", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 7, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APISticker", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": false + }, + { + "name": "description", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "tags", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "sticker.ts", + "line": 4, + "path": "packages/types/src/api/sticker.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIStickerWithUser", + "properties": [ + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "sticker.ts", + "line": 12, + "path": "packages/types/src/api/sticker.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUser", + "properties": [], + "source": { + "file": "user.ts", + "line": 28, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUserPartial", + "description": "Partial user object returned by the API (messages, members, webhooks, etc.).", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "avatar_color", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "RGB color as number (e.g. 7577782)" + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "User banner hash (from profile, member, or invite context)" + }, + { + "name": "bot", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Present when author is a bot" + }, + { + "name": "discriminator", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true, + "description": "Public/user flags bitfield" + }, + { + "name": "global_name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "public_flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "system", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether this is an official system user" + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "user.ts", + "line": 8, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIUserProfile", + "description": "User profile sub-object from GET /users/{id}/profile.", + "properties": [ + { + "name": "accent_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "banner", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "banner_color", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "bio", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "pronouns", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "theme", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "user.ts", + "line": 34, + "path": "packages/types/src/api/user.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIVanityURL", + "description": "Response from GET /guilds/{id}/vanity-url", + "properties": [ + { + "name": "code", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "uses", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "guild.ts", + "line": 103, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhook", + "description": "Webhook from GET /channels/{id}/webhooks (includes token) or GET /webhooks/{id} (no token)", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": true, + "description": "Present when listing channel webhooks; not returned when fetching by ID without token" + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "webhook.ts", + "line": 12, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookEditMessageRequest", + "description": "Request body for PATCH /webhooks/{id}/{token}/messages/{message_id}. All fields optional.", + "properties": [ + { + "name": "attachments", + "type": "unknown[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "unknown[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 37, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookTokenUpdateRequest", + "description": "Request body for PATCH /webhooks/{id}/{token} (token auth). All fields optional.", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 31, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "APIWebhookUpdateRequest", + "description": "Request body for PATCH /webhooks/{id} (bot auth). All fields optional.", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "webhook.ts", + "line": 24, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "AttachmentData", + "description": "File handling for multipart requests. Matches fluxer_api parseMultipartMessageData exactly:\n- payload_json: JSON string with content, embeds, attachments metadata\n- files[N]: File parts where N is 0-based index (fluxer API expects files[0], files[1], etc.)", + "properties": [], + "source": { + "file": "files.ts", + "line": 10, + "path": "packages/rest/src/utils/files.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "AttachmentPayload", + "properties": [ + { + "name": "data", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override filename for the part (defaults to name)" + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false, + "description": "Used as filename when filename is not set (required)" + } + ], + "source": { + "file": "files.ts", + "line": 12, + "path": "packages/rest/src/utils/files.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "AttachmentPayloadOptions", + "description": "Builder for message attachment metadata (filename, description, spoiler).\nActual file data is passed separately when sending (e.g. FormData).", + "properties": [ + { + "name": "description", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "spoiler", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "AttachmentBuilder.ts", + "line": 5, + "path": "packages/builders/src/messages/AttachmentBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "BitFieldResolvable", + "description": "Data structure that allows efficient storage of multiple flags (bits) in a single number.\n\nNote: JavaScript bitwise operations (|, &, ^, <<, >>) operate on 32-bit signed integers.\nFlags with values exceeding 2^30 may exhibit unexpected behavior. For permission-style\nbitfields with more than 30 bits, consider using BigInt-based implementations.", + "properties": [], + "source": { + "file": "BitField.ts", + "line": 8, + "path": "packages/util/src/BitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "CacheSizeLimits", + "description": "Optional cache size limits. When exceeded, oldest entries are evicted (FIFO). Omit or use 0 for unbounded.", + "properties": [ + { + "name": "channels", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "guilds", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "messages", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max messages per channel to cache. Enables channel.messages.get() and oldMessage in messageUpdate. 0 = disabled." + }, + { + "name": "users", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "Options.ts", + "line": 5, + "path": "packages/fluxer-core/src/util/Options.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "CdnUrlOptions", + "properties": [ + { + "name": "extension", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "size", + "type": "number", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "cdn.ts", + "line": 3, + "path": "packages/fluxer-core/src/util/cdn.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientEventMethods", + "description": "Typed event handler methods. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...).", + "properties": [], + "source": { + "file": "Client.ts", + "line": 135, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientEvents", + "description": "Callback parameter types for client events. Use with client.on(Events.X, handler).", + "properties": [ + { + "name": "[Events.ChannelCreate]", + "type": "[channel: GuildChannel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelDelete]", + "type": "[channel: Channel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelPinsUpdate]", + "type": "[data: GatewayChannelPinsUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.ChannelUpdate]", + "type": "[oldChannel: Channel, newChannel: Channel]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Debug]", + "type": "[message: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Error]", + "type": "[error: Error]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildBanAdd]", + "type": "[ban: GuildBan]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildBanRemove]", + "type": "[ban: GuildBan]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildCreate]", + "type": "[guild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildDelete]", + "type": "[guild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildEmojisUpdate]", + "type": "[data: GatewayGuildEmojisUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildIntegrationsUpdate]", + "type": "[data: GatewayGuildIntegrationsUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberAdd]", + "type": "[member: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberRemove]", + "type": "[member: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildMemberUpdate]", + "type": "[oldMember: GuildMember, newMember: GuildMember]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleCreate]", + "type": "[data: GatewayGuildRoleCreateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleDelete]", + "type": "[data: GatewayGuildRoleDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildRoleUpdate]", + "type": "[data: GatewayGuildRoleUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventCreate]", + "type": "[data: GatewayGuildScheduledEventCreateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventDelete]", + "type": "[data: GatewayGuildScheduledEventDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildScheduledEventUpdate]", + "type": "[data: GatewayGuildScheduledEventUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildStickersUpdate]", + "type": "[data: GatewayGuildStickersUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.GuildUpdate]", + "type": "[oldGuild: Guild, newGuild: Guild]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InteractionCreate]", + "type": "[interaction: APIApplicationCommandInteraction]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InviteCreate]", + "type": "[invite: Invite]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.InviteDelete]", + "type": "[data: GatewayInviteDeleteDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageCreate]", + "type": "[message: Message]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageDelete]", + "type": "[message: PartialMessage]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageDeleteBulk]", + "type": "[data: GatewayMessageDeleteBulkDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionAdd]", + "type": "[reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemove]", + "type": "[reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemoveAll]", + "type": "[data: GatewayMessageReactionRemoveAllDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageReactionRemoveEmoji]", + "type": "[data: GatewayMessageReactionRemoveEmojiDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.MessageUpdate]", + "type": "[oldMessage: Message | null, newMessage: Message]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.PresenceUpdate]", + "type": "[data: GatewayPresenceUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Ready]", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.Resumed]", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.TypingStart]", + "type": "[data: GatewayTypingStartDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.UserUpdate]", + "type": "[data: GatewayUserUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceServerUpdate]", + "type": "[data: GatewayVoiceServerUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceStatesSync]", + "type": "[data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.VoiceStateUpdate]", + "type": "[data: GatewayVoiceStateUpdateDispatchData]", + "readonly": false, + "optional": false + }, + { + "name": "[Events.WebhooksUpdate]", + "type": "[data: GatewayWebhooksUpdateDispatchData]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "Client.ts", + "line": 72, + "path": "packages/fluxer-core/src/client/Client.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ClientOptions", + "properties": [ + { + "name": "cache", + "type": "CacheSizeLimits", + "readonly": false, + "optional": true, + "description": "Cache size limits (channels, guilds, users). When exceeded, oldest entries are evicted. Omit or 0 = unbounded." + }, + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": true, + "description": "Gateway intents. Not yet supported by Fluxer—value is always sent as 0. Set suppressIntentWarning to silence the warning." + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true, + "description": "Initial presence (status, custom_status, etc.) sent on identify. Can also update via PresenceUpdate after connect." + }, + { + "name": "rest", + "type": "any", + "readonly": false, + "optional": true + }, + { + "name": "suppressIntentWarning", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Suppress the warning when intents are set (Fluxer does not support intents yet)." + }, + { + "name": "waitForGuilds", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "When true, delay the Ready event until all guilds from READY (including unavailable) have been received via GUILD_CREATE. Default: false." + }, + { + "name": "WebSocket", + "type": "new (url: string) => { send(data: string | ArrayBufferLike): void; close(code?: number): void; readyState: number; addEventListener?(type: string, listener: (e: unknown) => void): void; on?(event: string, cb: (data?: unknown) => void): void; }", + "readonly": false, + "optional": true, + "description": "Optional WebSocket constructor (e.g. `require('ws')` in Node for compatibility)" + } + ], + "source": { + "file": "Options.ts", + "line": 13, + "path": "packages/fluxer-core/src/util/Options.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "CollectedReaction", + "properties": [ + { + "name": "reaction", + "type": "MessageReaction", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "User", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 20, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "DispatchHandler", + "properties": [], + "source": { + "file": "EventHandlerRegistry.ts", + "line": 43, + "path": "packages/fluxer-core/src/client/EventHandlerRegistry.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "EmbedAuthorOptions", + "description": "Author field for an embed.", + "properties": [ + { + "name": "iconURL", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 46, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedFieldData", + "description": "A single embed field (name, value, optional inline).", + "properties": [ + { + "name": "inline", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "value", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 59, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedFooterOptions", + "description": "Footer field for an embed.", + "properties": [ + { + "name": "iconURL", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 53, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedMediaOptions", + "description": "Options for embed media (image, thumbnail, video, audio).", + "properties": [ + { + "name": "content_type", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "duration", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "height", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "placeholder", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "width", + "type": "number | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "EmbedBuilder.ts", + "line": 5, + "path": "packages/builders/src/messages/EmbedBuilder.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "EmbedType", + "properties": [], + "source": { + "file": "embed.ts", + "line": 43, + "path": "packages/types/src/api/embed.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "FetchedUserWithProfile", + "description": "Result of {@link UsersManager.fetchWithProfile}.", + "properties": [ + { + "name": "globalProfile", + "type": "any", + "readonly": false, + "optional": false, + "description": "Global profile (bio, pronouns, mutual guilds, etc.). Null if unavailable." + }, + { + "name": "member", + "type": "GuildMember | null", + "readonly": false, + "optional": false, + "description": "Guild member when guildId was provided and user is in the guild. Null otherwise." + }, + { + "name": "memberData", + "type": "any", + "readonly": false, + "optional": false, + "description": "Raw member data when member exists (for premium_since, etc.)." + }, + { + "name": "serverProfile", + "type": "any", + "readonly": false, + "optional": false, + "description": "Server-specific profile when guildId was provided. Null if unavailable." + }, + { + "name": "user", + "type": "User", + "readonly": false, + "optional": false, + "description": "The user (cached in client.users)." + }, + { + "name": "userData", + "type": "APIUserPartial", + "readonly": false, + "optional": false, + "description": "Raw user data from GET /users/{id}." + } + ], + "source": { + "file": "UsersManager.ts", + "line": 9, + "path": "packages/fluxer-core/src/client/UsersManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "FluxerErrorOptions", + "properties": [ + { + "name": "cause", + "type": "Error", + "readonly": false, + "optional": true + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "FluxerError.ts", + "line": 1, + "path": "packages/fluxer-core/src/errors/FluxerError.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "GatewayAuthSessionChangeDispatchData", + "description": "AUTH_SESSION_CHANGE — login/logout on another client", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 412, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallCreateDispatchData", + "description": "CALL_CREATE — call created", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 438, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallDeleteDispatchData", + "description": "CALL_DELETE — call ended", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 452, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCallUpdateDispatchData", + "description": "CALL_UPDATE — call updated", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 445, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelCreateDispatchData", + "description": "CHANNEL_CREATE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 169, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelDeleteDispatchData", + "description": "CHANNEL_DELETE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 177, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelPinsAckDispatchData", + "description": "CHANNEL_PINS_ACK — user acknowledged viewing pinned messages", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 354, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelPinsUpdateDispatchData", + "description": "CHANNEL_PINS_UPDATE — pins in a channel changed.", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "last_pin_timestamp", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 348, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelRecipientAddDispatchData", + "description": "CHANNEL_RECIPIENT_ADD — channel_id, user (group DM)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 179, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelRecipientRemoveDispatchData", + "description": "CHANNEL_RECIPIENT_REMOVE — channel_id, user (group DM)", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 184, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelUpdateBulkDispatchData", + "description": "CHANNEL_UPDATE_BULK — channels[]", + "properties": [ + { + "name": "channels", + "type": "APIChannel[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 173, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayChannelUpdateDispatchData", + "description": "CHANNEL_UPDATE — full channel", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 171, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayCustomStatus", + "description": "Custom status object (Fluxer uses this root object rather than Discord-style activities array).", + "properties": [ + { + "name": "emoji_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "emoji_name", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "text", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 39, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayDispatchEventName", + "properties": [], + "source": { + "file": "events.ts", + "line": 188, + "path": "packages/types/src/gateway/events.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeCreateDispatchData", + "description": "FAVORITE_MEME_CREATE — favorite meme/media added", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 458, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeDeleteDispatchData", + "description": "FAVORITE_MEME_DELETE — favorite meme/media removed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 464, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayFavoriteMemeUpdateDispatchData", + "description": "FAVORITE_MEME_UPDATE — favorite meme/media updated", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 461, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildBanAddDispatchData", + "description": "GUILD_BAN_ADD — guild_id, user, reason?", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "reason", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 231, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildBanRemoveDispatchData", + "description": "GUILD_BAN_REMOVE — guild_id, user", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 237, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildCreateDispatchData", + "description": "GUILD_CREATE — full guild with channels, members, roles, unavailable?", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 159, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildDeleteDispatchData", + "description": "GUILD_DELETE — id, unavailable? (true = temp outage)", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "unavailable", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 163, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildEmojisUpdateDispatchData", + "description": "GUILD_EMOJIS_UPDATE — emoji list for a guild changed.", + "properties": [ + { + "name": "emojis", + "type": "APIEmoji[]", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 313, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildIntegrationsUpdateDispatchData", + "description": "GUILD_INTEGRATIONS_UPDATE — integrations for a guild changed.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 325, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberAddDispatchData", + "description": "GUILD_MEMBER_ADD — member + guild_id", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 190, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberListUpdateDispatchData", + "description": "GUILD_MEMBER_LIST_UPDATE — lazy member list; guild_id, id (list_id), member_count, online_count, groups, ops", + "properties": [ + { + "name": "groups", + "type": "{ id: string; count: number; }[]", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "member_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "online_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "ops", + "type": "{ op: \"SYNC\" | \"INVALIDATE\"; range?: [number, number]; items?: Array>; }[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 217, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberRemoveDispatchData", + "description": "GUILD_MEMBER_REMOVE — guild_id, user", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 203, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMembersChunkDispatchData", + "description": "GUILD_MEMBERS_CHUNK — from request_guild_members; members[], chunk_index, chunk_count", + "properties": [ + { + "name": "chunk_count", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "chunk_index", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "members", + "type": "(APIGuildMember & { guild_id?: Snowflake; })[]", + "readonly": false, + "optional": false + }, + { + "name": "nonce", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "presences", + "type": "{ user: { id: Snowflake; }; status?: string; activities?: unknown[]; }[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 208, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildMemberUpdateDispatchData", + "description": "GUILD_MEMBER_UPDATE — guild_id, roles, user, nick?, avatar?, joined_at?, ...", + "properties": [ + { + "name": "avatar", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "communication_disabled_until", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "joined_at", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "nick", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "premium_since", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "roles", + "type": "string[]", + "readonly": false, + "optional": false + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 192, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleCreateDispatchData", + "description": "GUILD_ROLE_CREATE — guild_id, role", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role", + "type": "APIRole", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 264, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleDeleteDispatchData", + "description": "GUILD_ROLE_DELETE — guild_id, role_id", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 274, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleUpdateBulkDispatchData", + "description": "GUILD_ROLE_UPDATE_BULK — guild_id, roles[]", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "roles", + "type": "APIRole[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 279, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildRoleUpdateDispatchData", + "description": "GUILD_ROLE_UPDATE — guild_id, role", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "role", + "type": "APIRole", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 269, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventCreateDispatchData", + "description": "GUILD_SCHEDULED_EVENT_CREATE — a scheduled event was created.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 330, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventDeleteDispatchData", + "description": "GUILD_SCHEDULED_EVENT_DELETE — a scheduled event was deleted.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 342, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildScheduledEventUpdateDispatchData", + "description": "GUILD_SCHEDULED_EVENT_UPDATE — a scheduled event was updated.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 336, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildStickersUpdateDispatchData", + "description": "GUILD_STICKERS_UPDATE — sticker list for a guild changed.", + "properties": [ + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "stickers", + "type": "APISticker[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 319, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildSyncDispatchData", + "description": "GUILD_SYNC — guild sync state (passive/lazy)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 418, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayGuildUpdateDispatchData", + "description": "GUILD_UPDATE — full guild object", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 161, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayHelloData", + "description": "// Incoming (gateway -> client)", + "properties": [ + { + "name": "heartbeat_interval", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 79, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayIdentifyData", + "description": "// Outgoing (client -> gateway)", + "properties": [ + { + "name": "compress", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "large_threshold", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "properties", + "type": "{ os: string; browser: string; device: string; }", + "readonly": false, + "optional": false + }, + { + "name": "shard", + "type": "[shardId: number, numShards: number]", + "readonly": false, + "optional": true + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 18, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInteractionCreateDispatchData", + "description": "INTERACTION_CREATE — slash command or component interaction", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 467, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInviteCreateDispatchData", + "description": "INVITE_CREATE — full invite: code, guild, channel, inviter?, expires_at?, ...", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 243, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayInviteDeleteDispatchData", + "description": "INVITE_DELETE — code, channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "code", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 246, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageAckDispatchData", + "description": "MESSAGE_ACK — read receipt; message_id, channel_id", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 153, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageCreateDispatchData", + "description": "MESSAGE_CREATE — full message with author, content, embeds, attachments, member? (guild).", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 94, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageDeleteBulkDispatchData", + "description": "MESSAGE_DELETE_BULK — ids[], channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "ids", + "type": "string[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 107, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageDeleteDispatchData", + "description": "MESSAGE_DELETE — id, channel_id, guild_id?, content?, author_id? (Fluxer may send content/author_id)", + "properties": [ + { + "name": "author_id", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 98, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionAddDispatchData", + "description": "MESSAGE_REACTION_ADD — message_id, channel_id, user_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 121, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveAllDispatchData", + "description": "MESSAGE_REACTION_REMOVE_ALL — message_id, channel_id, guild_id?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 147, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveDispatchData", + "description": "MESSAGE_REACTION_REMOVE — message_id, channel_id, user_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 130, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageReactionRemoveEmojiDispatchData", + "description": "MESSAGE_REACTION_REMOVE_EMOJI — message_id, channel_id, guild_id?, emoji", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "emoji", + "type": "GatewayReactionEmoji", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "message_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 139, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayMessageUpdateDispatchData", + "description": "MESSAGE_UPDATE — partial message (edited fields).", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 96, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPassiveUpdatesDispatchData", + "description": "PASSIVE_UPDATES — lazy-loaded entity updates", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 415, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPresenceUpdateData", + "properties": [ + { + "name": "activities", + "type": "{ name: string; type: number; url?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "afk", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "custom_status", + "type": "GatewayCustomStatus | null", + "readonly": false, + "optional": true, + "description": "Custom status; set text (and optionally emoji) for bots. Passable on identify and via presence update." + }, + { + "name": "since", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "status", + "type": "\"online\" | \"idle\" | \"dnd\" | \"invisible\"", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 45, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayPresenceUpdateDispatchData", + "description": "PRESENCE_UPDATE — user presence (status, activities) changed.", + "properties": [ + { + "name": "activities", + "type": "{ name: string; type: number; url?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "custom_status", + "type": "GatewayCustomStatus | null", + "readonly": false, + "optional": true, + "description": "Custom status (Fluxer)." + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "status", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "{ id: Snowflake; }", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 360, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReactionEmoji", + "description": "Emoji data sent with reaction events (id is null for unicode emoji).", + "properties": [ + { + "name": "animated", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 114, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReadyDispatchData", + "description": "READY — v, user, guilds, session_id, shard?, application", + "properties": [ + { + "name": "application", + "type": "{ id: Snowflake; flags: number; }", + "readonly": false, + "optional": false + }, + { + "name": "guilds", + "type": "(APIGuild & { unavailable?: boolean; })[]", + "readonly": false, + "optional": false + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "shard", + "type": "[number, number]", + "readonly": false, + "optional": true + }, + { + "name": "user", + "type": "APIUserPartial", + "readonly": false, + "optional": false + }, + { + "name": "v", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 84, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayReceivePayload", + "properties": [ + { + "name": "d", + "type": "T", + "readonly": false, + "optional": true + }, + { + "name": "op", + "type": "GatewayOpcodes", + "readonly": false, + "optional": false + }, + { + "name": "s", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "t", + "type": "GatewayDispatchEventName", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 469, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRecentMentionDeleteDispatchData", + "description": "RECENT_MENTION_DELETE — recent mention cleared", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 401, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipAddDispatchData", + "description": "RELATIONSHIP_ADD — relationship (friend, block) added", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 421, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipRemoveDispatchData", + "description": "RELATIONSHIP_REMOVE — relationship removed", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 433, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayRelationshipUpdateDispatchData", + "description": "RELATIONSHIP_UPDATE — relationship updated", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "type", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 427, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayResumeData", + "properties": [ + { + "name": "seq", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 32, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayResumedDispatchData", + "description": "RESUMED — connection resumed; typically no payload.", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 378, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySavedMessageCreateDispatchData", + "description": "SAVED_MESSAGE_CREATE — message saved (bookmarked)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 404, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySavedMessageDeleteDispatchData", + "description": "SAVED_MESSAGE_DELETE — saved message unsaved", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 407, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySendPayload", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 67, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewaySessionsReplaceDispatchData", + "description": "SESSIONS_REPLACE — user's active sessions list replaced", + "properties": [ + { + "name": "sessions", + "type": "Record[]", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 381, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayTypingStartDispatchData", + "description": "TYPING_START — channel_id, user_id, timestamp, guild_id?, member?", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true + }, + { + "name": "timestamp", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 253, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserGuildSettingsUpdateDispatchData", + "description": "USER_GUILD_SETTINGS_UPDATE — per-guild settings changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 389, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserNoteUpdateDispatchData", + "description": "USER_NOTE_UPDATE — note on another user changed", + "properties": [ + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "note", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "payloads.ts", + "line": 395, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserPinnedDmsUpdateDispatchData", + "description": "USER_PINNED_DMS_UPDATE — pinned DM order changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 392, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserSettingsUpdateDispatchData", + "description": "USER_SETTINGS_UPDATE — user settings (theme, locale, etc.) changed", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 386, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayUserUpdateDispatchData", + "description": "USER_UPDATE — full current user (APIUser)", + "properties": [], + "source": { + "file": "payloads.ts", + "line": 261, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceServerUpdateDispatchData", + "description": "VOICE_SERVER_UPDATE — token, guild_id, endpoint, connection_id?", + "properties": [ + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID for subsequent voice state updates (Fluxer)." + }, + { + "name": "endpoint", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 304, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceStateUpdateData", + "properties": [ + { + "name": "channel_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID from VoiceServerUpdate; required for updates when already in channel." + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "self_deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_stream", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user is screen sharing / streaming." + }, + { + "name": "self_video", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user has video enabled (e.g. camera)." + } + ], + "source": { + "file": "payloads.ts", + "line": 54, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayVoiceStateUpdateDispatchData", + "description": "VOICE_STATE_UPDATE — guild_id?, channel_id, user_id, member?, session_id, deaf?, mute?, ...", + "properties": [ + { + "name": "channel_id", + "type": "string | null", + "readonly": false, + "optional": false + }, + { + "name": "connection_id", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Connection ID for voice session (Fluxer)." + }, + { + "name": "deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "member", + "type": "APIGuildMember & { guild_id?: Snowflake; }", + "readonly": false, + "optional": true + }, + { + "name": "mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_deaf", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_mute", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "self_stream", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether the user is screen sharing / streaming." + }, + { + "name": "self_video", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "session_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "suppress", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "user_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 285, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayWebhooksUpdateDispatchData", + "description": "WEBHOOKS_UPDATE — webhooks in a channel were updated.", + "properties": [ + { + "name": "channel_id", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "guild_id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "payloads.ts", + "line": 370, + "path": "packages/types/src/gateway/payloads.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildFeature", + "properties": [], + "source": { + "file": "guild.ts", + "line": 27, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "LiveKitAudioFrame", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 193, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "LiveKitReceiveSubscription", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 201, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "LiveKitRtcConnectionEvents", + "description": "LiveKit-specific: emitted when server sends leave (token expiry, server policy, etc.). Emitted before disconnect.", + "properties": [], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 181, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "MessageAttachmentMeta", + "description": "Attachment metadata for file uploads (id matches FormData index).", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags: IS_SPOILER (8), CONTAINS_EXPLICIT_MEDIA (16), IS_ANIMATED (32)" + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "messageUtils.ts", + "line": 56, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorEndReason", + "properties": [], + "source": { + "file": "MessageCollector.ts", + "line": 16, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorEvents", + "properties": [ + { + "name": "collect", + "type": "[message: Message]", + "readonly": false, + "optional": false + }, + { + "name": "end", + "type": "[collected: Collection, reason: MessageCollectorEndReason]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 18, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageCollectorOptions", + "properties": [ + { + "name": "filter", + "type": "(message: Message) => boolean", + "readonly": false, + "optional": true, + "description": "Filter function. Return true to collect the message." + }, + { + "name": "max", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max messages to collect. Collector stops when limit reached." + }, + { + "name": "time", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max duration in ms. Collector stops when time expires." + } + ], + "source": { + "file": "MessageCollector.ts", + "line": 7, + "path": "packages/fluxer-core/src/util/MessageCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageEditOptions", + "description": "Options for editing a message (content and/or embeds).", + "properties": [ + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true, + "description": "New text content" + }, + { + "name": "embeds", + "type": "any[]", + "readonly": false, + "optional": true, + "description": "New embeds (replaces existing)" + } + ], + "source": { + "file": "Message.ts", + "line": 32, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFileData", + "description": "File data for message attachment uploads. Use `data` for buffers or `url` to fetch from a URL.", + "properties": [], + "source": { + "file": "messageUtils.ts", + "line": 12, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessageFlagsResolvable", + "properties": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 20, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessageFlagsString", + "properties": [], + "source": { + "file": "MessageFlagsBitField.ts", + "line": 14, + "path": "packages/util/src/MessageFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "MessagePayload", + "properties": [], + "source": { + "file": "Message.ts", + "line": 39, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MessagePayloadData", + "description": "Data for a message payload (content, embeds, reply reference, etc.).", + "properties": [ + { + "name": "attachments", + "type": "{ id: number; filename: string; description?: string | null; }[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[] | null", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "message_reference", + "type": "any", + "readonly": false, + "optional": true + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "MessagePayload.ts", + "line": 6, + "path": "packages/builders/src/messages/MessagePayload.ts" + }, + "package": "@fluxerjs/builders" + }, + { + "name": "MessageSendOptions", + "description": "Options for sending a message (content, embeds, files). Used by Message.send, Channel.send, ChannelManager.send.\nEmbedBuilder instances are auto-converted to API format—no need to call .toJSON().", + "properties": [], + "source": { + "file": "messageUtils.ts", + "line": 68, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "MP4File", + "properties": [ + { + "name": "onError", + "type": "(e: Error) => void", + "readonly": false, + "optional": true + }, + { + "name": "onReady", + "type": "(info: { tracks?: Array<{ id: number; type: string; codec: string; video?: { width: number; height: number; }; timescale?: number; }>; }) => void", + "readonly": false, + "optional": true + }, + { + "name": "onSamples", + "type": "(trackId: number, user: unknown, samples: Array<{ data: ArrayBuffer; is_sync?: boolean; is_rap?: boolean; timescale: number; dts: number; duration: number; }>) => void", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "mp4box.d.ts", + "line": 2, + "path": "packages/voice/src/mp4box.d.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "PartialMessage", + "description": "Minimal message data for MessageDelete when the full message is not available.", + "properties": [ + { + "name": "authorId", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Author user ID, when provided by the gateway (e.g. Fluxer)." + }, + { + "name": "channel", + "type": "Channel | null", + "readonly": false, + "optional": true + }, + { + "name": "channelId", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "content", + "type": "string | null", + "readonly": false, + "optional": true, + "description": "Message content, when provided by the gateway (e.g. Fluxer)." + }, + { + "name": "id", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "PartialMessage.ts", + "line": 4, + "path": "packages/fluxer-core/src/structures/PartialMessage.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "PermissionResolvable", + "properties": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 61, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "PermissionString", + "properties": [], + "source": { + "file": "PermissionsBitField.ts", + "line": 55, + "path": "packages/util/src/PermissionsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "RateLimitErrorBody", + "properties": [ + { + "name": "code", + "type": "\"RATE_LIMITED\"", + "readonly": false, + "optional": false + }, + { + "name": "global", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "retry_after", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "errors.ts", + "line": 64, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RateLimitState", + "description": "Tracks rate limit state per bucket (route hash).\nDelays requests when limit is exceeded.", + "properties": [ + { + "name": "limit", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "remaining", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "resetAt", + "type": "number", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "RateLimitManager.ts", + "line": 5, + "path": "packages/rest/src/RateLimitManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ReactionCollectorEndReason", + "properties": [], + "source": { + "file": "ReactionCollector.ts", + "line": 18, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReactionCollectorEvents", + "properties": [ + { + "name": "collect", + "type": "[reaction: MessageReaction, user: User]", + "readonly": false, + "optional": false + }, + { + "name": "end", + "type": "[collected: Collection, reason: ReactionCollectorEndReason]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 25, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReactionCollectorOptions", + "properties": [ + { + "name": "filter", + "type": "(reaction: MessageReaction, user: User) => boolean", + "readonly": false, + "optional": true, + "description": "Filter function. Return true to collect the reaction." + }, + { + "name": "max", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max reactions to collect. Collector stops when limit reached." + }, + { + "name": "time", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max duration in ms. Collector stops when time expires." + } + ], + "source": { + "file": "ReactionCollector.ts", + "line": 9, + "path": "packages/fluxer-core/src/util/ReactionCollector.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "ReadonlyCollection", + "description": "Read-only view of a Collection (e.g. for method return types).", + "properties": [], + "source": { + "file": "Collection.ts", + "line": 196, + "path": "packages/collection/src/Collection.ts" + }, + "package": "@fluxerjs/collection" + }, + { + "name": "ReplyOptions", + "description": "Options for message.reply() — ping toggle and reply-to-different-message.", + "properties": [ + { + "name": "ping", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Whether to ping the replied-to user (default true). Use false to suppress the mention notification." + }, + { + "name": "replyTo", + "type": "Message | { channelId: string; messageId: string; }", + "readonly": false, + "optional": true, + "description": "Reply to a different message instead of this one. Default: this message." + } + ], + "source": { + "file": "Message.ts", + "line": 45, + "path": "packages/fluxer-core/src/structures/Message.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RequestOptions", + "properties": [ + { + "name": "auth", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "body", + "type": "unknown", + "readonly": false, + "optional": true + }, + { + "name": "files", + "type": "{ name: string; data: Blob | ArrayBuffer | Uint8Array | Buffer; filename?: string; }[]", + "readonly": false, + "optional": true + }, + { + "name": "headers", + "type": "Record", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "RequestManager.ts", + "line": 6, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "ResolvedMessageFile", + "description": "Resolved file data (after URL fetch). Used internally by REST layer.", + "properties": [ + { + "name": "data", + "type": "any", + "readonly": false, + "optional": false + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "messageUtils.ts", + "line": 5, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "RESTCreateRoleBody", + "description": "Body for POST /guilds/{id}/roles (create role). All fields optional.", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 20, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RestOptions", + "properties": [ + { + "name": "api", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "authPrefix", + "type": "\"Bot\" | \"Bearer\"", + "readonly": false, + "optional": false + }, + { + "name": "retries", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "timeout", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "userAgent", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "RequestManager.ts", + "line": 17, + "path": "packages/rest/src/RequestManager.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RESTOptions", + "description": "Options for the REST client.", + "properties": [ + { + "name": "api", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "authPrefix", + "type": "\"Bot\" | \"Bearer\"", + "readonly": false, + "optional": true + }, + { + "name": "retries", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "timeout", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "userAgent", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "REST.ts", + "line": 6, + "path": "packages/rest/src/REST.ts" + }, + "package": "@fluxerjs/rest" + }, + { + "name": "RESTUpdateRoleBody", + "description": "Body for PATCH /guilds/{id}/roles/{roleId} (update role). All fields optional.", + "properties": [ + { + "name": "color", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "hoist", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "hoist_position", + "type": "number | null", + "readonly": false, + "optional": true + }, + { + "name": "mentionable", + "type": "boolean", + "readonly": false, + "optional": true + }, + { + "name": "name", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "permissions", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "position", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "unicode_emoji", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "role.ts", + "line": 32, + "path": "packages/types/src/api/role.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "RoleResolvable", + "description": "Role ID or Role object for add/remove.", + "properties": [], + "source": { + "file": "GuildMemberRoleManager.ts", + "line": 7, + "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "SendBodyResult", + "description": "API-ready body from MessageSendOptions or text content (serializes EmbedBuilder, includes attachments when files present).", + "properties": [ + { + "name": "attachments", + "type": "{ id: number; filename: string; title?: string | null; description?: string | null; flags?: number; }[]", + "readonly": false, + "optional": true + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "embeds", + "type": "APIEmbed[]", + "readonly": false, + "optional": true + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "Message flags (e.g. SuppressNotifications for reply without ping)." + } + ], + "source": { + "file": "messageUtils.ts", + "line": 81, + "path": "packages/fluxer-core/src/util/messageUtils.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "Snowflake", + "description": "Snowflake ID type - 64-bit unsigned integer as string.\nFluxer uses Twitter Snowflakes with epoch 1420070400000 (first second of 2015).", + "properties": [], + "source": { + "file": "snowflake.ts", + "line": 5, + "path": "packages/types/src/common/snowflake.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "TenorMediaResult", + "description": "Result for embed media: url and optional flags.", + "properties": [ + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "tenorUtils.ts", + "line": 4, + "path": "packages/util/src/tenorUtils.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UserFlagsResolvable", + "properties": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 48, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "UserFlagsString", + "properties": [], + "source": { + "file": "UserFlagsBitField.ts", + "line": 42, + "path": "packages/util/src/UserFlagsBitField.ts" + }, + "package": "@fluxerjs/util" + }, + { + "name": "VideoPlayOptions", + "description": "Options for video playback via {@link LiveKitRtcConnection.playVideo}.", + "properties": [ + { + "name": "height", + "type": "number", + "readonly": false, + "optional": true, + "description": "Output height for resolution override (FFmpeg path)." + }, + { + "name": "loop", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Loop video to keep stream continuously live (default: true)." + }, + { + "name": "maxFramerate", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max framerate for encoding (default: 60)." + }, + { + "name": "resolution", + "type": "\"480p\" | \"720p\" | \"1080p\" | \"1440p\" | \"4k\"", + "readonly": false, + "optional": true, + "description": "Output resolution. When set, overrides width/height and maxFramerate. FFmpeg path only." + }, + { + "name": "source", + "type": "\"camera\" | \"screenshare\"", + "readonly": false, + "optional": true, + "description": "Track source hint - camera or screenshare (default: camera)." + }, + { + "name": "useFFmpeg", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Use FFmpeg for decoding (avoids node-webcodecs; requires ffmpeg in PATH)." + }, + { + "name": "videoBitrate", + "type": "number", + "readonly": false, + "optional": true, + "description": "Max video bitrate in bps for encoding (default: 2_500_000)." + }, + { + "name": "width", + "type": "number", + "readonly": false, + "optional": true, + "description": "Output width for resolution override (FFmpeg path)." + } + ], + "source": { + "file": "LiveKitRtcConnection.ts", + "line": 223, + "path": "packages/voice/src/LiveKitRtcConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceConnectionEvents", + "properties": [ + { + "name": "disconnect", + "type": "[]", + "readonly": false, + "optional": false + }, + { + "name": "error", + "type": "[err: Error]", + "readonly": false, + "optional": false + }, + { + "name": "ready", + "type": "[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "VoiceConnection.ts", + "line": 61, + "path": "packages/voice/src/VoiceConnection.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceConnectionLike", + "description": "Union of connection types (Discord-style or LiveKit).", + "properties": [], + "source": { + "file": "index.ts", + "line": 17, + "path": "packages/voice/src/index.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceManagerOptions", + "description": "Options for creating a VoiceManager.", + "properties": [ + { + "name": "shardId", + "type": "number", + "readonly": false, + "optional": true, + "description": "Gateway shard ID to use for voice (default 0)." + } + ], + "source": { + "file": "VoiceManager.ts", + "line": 25, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "VoiceStateMap", + "description": "Maps guild_id -> user_id -> channel_id (null if not in voice).", + "properties": [], + "source": { + "file": "VoiceManager.ts", + "line": 17, + "path": "packages/voice/src/VoiceManager.ts" + }, + "package": "@fluxerjs/voice" + }, + { + "name": "WebhookAttachmentMeta", + "description": "Attachment metadata for webhook file uploads (id matches FormData index).", + "properties": [ + { + "name": "description", + "type": "string | null", + "readonly": false, + "optional": true + }, + { + "name": "filename", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "flags", + "type": "number", + "readonly": false, + "optional": true, + "description": "MessageAttachmentFlags: IS_SPOILER (8), CONTAINS_EXPLICIT_MEDIA (16), IS_ANIMATED (32)" + }, + { + "name": "id", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "title", + "type": "string | null", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "Webhook.ts", + "line": 21, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebhookFileData", + "description": "File data for webhook attachment uploads. Use `data` for buffers or `url` to fetch from a URL.", + "properties": [], + "source": { + "file": "Webhook.ts", + "line": 18, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebhookSendOptions", + "description": "Options for sending a message via webhook. Aligns with WebhookMessageRequest in the API.", + "properties": [ + { + "name": "attachments", + "type": "WebhookAttachmentMeta[]", + "readonly": false, + "optional": true, + "description": "Attachment metadata for files (id = index). Use when files are provided." + }, + { + "name": "avatar_url", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override the webhook's default avatar URL for this message" + }, + { + "name": "content", + "type": "string", + "readonly": false, + "optional": true, + "description": "Message text content (up to 2000 characters)" + }, + { + "name": "embeds", + "type": "any[]", + "readonly": false, + "optional": true, + "description": "Embed objects. Use EmbedBuilder or APIEmbed; EmbedBuilder is serialized automatically." + }, + { + "name": "files", + "type": "MessageFileData[]", + "readonly": false, + "optional": true, + "description": "File attachments. When present, uses multipart/form-data (same as channel.send)." + }, + { + "name": "tts", + "type": "boolean", + "readonly": false, + "optional": true, + "description": "Text-to-speech" + }, + { + "name": "username", + "type": "string", + "readonly": false, + "optional": true, + "description": "Override the webhook's default username for this message" + } + ], + "source": { + "file": "Webhook.ts", + "line": 31, + "path": "packages/fluxer-core/src/structures/Webhook.ts" + }, + "package": "@fluxerjs/core" + }, + { + "name": "WebSocketConstructor", + "properties": [], + "source": { + "file": "WebSocketShard.ts", + "line": 20, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketLike", + "properties": [], + "source": { + "file": "WebSocketShard.ts", + "line": 13, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketManagerOptions", + "properties": [ + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "rest", + "type": "{ get: (route: string) => Promise; }", + "readonly": false, + "optional": false + }, + { + "name": "shardCount", + "type": "number", + "readonly": false, + "optional": true + }, + { + "name": "shardIds", + "type": "number[]", + "readonly": false, + "optional": true + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true + }, + { + "name": "WebSocket", + "type": "WSConstructor", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "WebSocketManager.ts", + "line": 17, + "path": "packages/ws/src/WebSocketManager.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShardEvents", + "properties": [ + { + "name": "close", + "type": "[code: number]", + "readonly": false, + "optional": false + }, + { + "name": "debug", + "type": "[message: string]", + "readonly": false, + "optional": false + }, + { + "name": "dispatch", + "type": "[payload: GatewayReceivePayload]", + "readonly": false, + "optional": false + }, + { + "name": "error", + "type": "[error: Error]", + "readonly": false, + "optional": false + }, + { + "name": "ready", + "type": "[payload: unknown]", + "readonly": false, + "optional": false + }, + { + "name": "resumed", + "type": "[]", + "readonly": false, + "optional": false + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 34, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + }, + { + "name": "WebSocketShardOptions", + "properties": [ + { + "name": "intents", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "numShards", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "presence", + "type": "GatewayPresenceUpdateData", + "readonly": false, + "optional": true + }, + { + "name": "shardId", + "type": "number", + "readonly": false, + "optional": false + }, + { + "name": "token", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "url", + "type": "string", + "readonly": false, + "optional": false + }, + { + "name": "version", + "type": "string", + "readonly": false, + "optional": true, + "description": "Gateway API version (e.g. \"1\" for Fluxer). Defaults to \"1\" when not set." + }, + { + "name": "WebSocket", + "type": "WebSocketConstructor", + "readonly": false, + "optional": true + } + ], + "source": { + "file": "WebSocketShard.ts", + "line": 22, + "path": "packages/ws/src/WebSocketShard.ts" + }, + "package": "@fluxerjs/ws" + } + ], + "enums": [ + { + "name": "APIErrorCode", + "description": "API error codes returned by the Fluxer API.\nSubset of commonly used codes for bot development.", + "members": [ + { + "name": "Unauthorized", + "value": "UNAUTHORIZED" + }, + { + "name": "Forbidden", + "value": "FORBIDDEN" + }, + { + "name": "MissingAuthorization", + "value": "MISSING_AUTHORIZATION" + }, + { + "name": "InvalidAuthToken", + "value": "INVALID_AUTH_TOKEN" + }, + { + "name": "InvalidToken", + "value": "INVALID_TOKEN" + }, + { + "name": "TwoFactorRequired", + "value": "TWO_FACTOR_REQUIRED" + }, + { + "name": "SudoModeRequired", + "value": "SUDO_MODE_REQUIRED" + }, + { + "name": "NotFound", + "value": "NOT_FOUND" + }, + { + "name": "UnknownUser", + "value": "UNKNOWN_USER" + }, + { + "name": "UnknownGuild", + "value": "UNKNOWN_GUILD" + }, + { + "name": "UnknownChannel", + "value": "UNKNOWN_CHANNEL" + }, + { + "name": "UnknownMessage", + "value": "UNKNOWN_MESSAGE" + }, + { + "name": "UnknownRole", + "value": "UNKNOWN_ROLE" + }, + { + "name": "UnknownEmoji", + "value": "UNKNOWN_EMOJI" + }, + { + "name": "UnknownSticker", + "value": "UNKNOWN_STICKER" + }, + { + "name": "UnknownWebhook", + "value": "UNKNOWN_WEBHOOK" + }, + { + "name": "UnknownInvite", + "value": "UNKNOWN_INVITE" + }, + { + "name": "BadRequest", + "value": "BAD_REQUEST" + }, + { + "name": "ValidationError", + "value": "VALIDATION_ERROR" + }, + { + "name": "InvalidRequest", + "value": "INVALID_REQUEST" + }, + { + "name": "InvalidFormBody", + "value": "INVALID_FORM_BODY" + }, + { + "name": "RateLimited", + "value": "RATE_LIMITED" + }, + { + "name": "SlowmodeRateLimited", + "value": "SLOWMODE_RATE_LIMITED" + }, + { + "name": "InternalServerError", + "value": "INTERNAL_SERVER_ERROR" + }, + { + "name": "BadGateway", + "value": "BAD_GATEWAY" + }, + { + "name": "GatewayTimeout", + "value": "GATEWAY_TIMEOUT" + }, + { + "name": "ServiceUnavailable", + "value": "SERVICE_UNAVAILABLE" + }, + { + "name": "BotsCannotSendFriendRequests", + "value": "BOTS_CANNOT_SEND_FRIEND_REQUESTS" + }, + { + "name": "BotAlreadyInGuild", + "value": "BOT_ALREADY_IN_GUILD" + }, + { + "name": "BotApplicationNotFound", + "value": "BOT_APPLICATION_NOT_FOUND" + }, + { + "name": "BotIsPrivate", + "value": "BOT_IS_PRIVATE" + }, + { + "name": "NotABotApplication", + "value": "NOT_A_BOT_APPLICATION" + }, + { + "name": "CannotSendEmptyMessage", + "value": "CANNOT_SEND_EMPTY_MESSAGE" + }, + { + "name": "FileSizeTooLarge", + "value": "FILE_SIZE_TOO_LARGE" + }, + { + "name": "MaxEmojis", + "value": "MAX_EMOJIS" + }, + { + "name": "MaxStickers", + "value": "MAX_STICKERS" + }, + { + "name": "MaxWebhooks", + "value": "MAX_WEBHOOKS" + } + ], + "source": { + "file": "errors.ts", + "line": 5, + "path": "packages/types/src/api/errors.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "ChannelType", + "description": "Channel type enum (Fluxer/Discord compatible).\nAPI may return additional types (e.g. 998 for link channels with url).", + "members": [ + { + "name": "GuildText", + "value": 0 + }, + { + "name": "DM", + "value": 1 + }, + { + "name": "GuildVoice", + "value": 2 + }, + { + "name": "GroupDM", + "value": 3 + }, + { + "name": "GuildCategory", + "value": 4 + }, + { + "name": "GuildLink", + "value": 5 + }, + { + "name": "GuildLinkExtended", + "value": 998 + } + ], + "source": { + "file": "channel.ts", + "line": 8, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "DefaultMessageNotifications", + "members": [ + { + "name": "AllMessages", + "value": 0 + }, + { + "name": "OnlyMentions", + "value": 1 + } + ], + "source": { + "file": "guild.ts", + "line": 22, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GatewayOpcodes", + "description": "Gateway opcodes (Discord-compatible).", + "members": [ + { + "name": "Dispatch", + "value": 0 + }, + { + "name": "Heartbeat", + "value": 1 + }, + { + "name": "Identify", + "value": 2 + }, + { + "name": "PresenceUpdate", + "value": 3 + }, + { + "name": "VoiceStateUpdate", + "value": 4 + }, + { + "name": "Resume", + "value": 6 + }, + { + "name": "Reconnect", + "value": 7 + }, + { + "name": "RequestGuildMembers", + "value": 8 + }, + { + "name": "InvalidSession", + "value": 9 + }, + { + "name": "Hello", + "value": 10 + }, + { + "name": "HeartbeatAck", + "value": 11 + } + ], + "source": { + "file": "opcodes.ts", + "line": 5, + "path": "packages/types/src/gateway/opcodes.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildExplicitContentFilter", + "members": [ + { + "name": "Disabled", + "value": 0 + }, + { + "name": "MembersWithoutRoles", + "value": 1 + }, + { + "name": "AllMembers", + "value": 2 + } + ], + "source": { + "file": "guild.ts", + "line": 16, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildMFALevel", + "members": [ + { + "name": "None", + "value": 0 + }, + { + "name": "Elevated", + "value": 1 + } + ], + "source": { + "file": "guild.ts", + "line": 11, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "GuildVerificationLevel", + "members": [ + { + "name": "None", + "value": 0 + }, + { + "name": "Low", + "value": 1 + }, + { + "name": "Medium", + "value": 2 + }, + { + "name": "High", + "value": 3 + }, + { + "name": "VeryHigh", + "value": 4 + } + ], + "source": { + "file": "guild.ts", + "line": 3, + "path": "packages/types/src/api/guild.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "MessageFlags", + "members": [ + { + "name": "SuppressEmbeds", + "value": 4 + }, + { + "name": "SuppressNotifications", + "value": 4096 + }, + { + "name": "VoiceMessage", + "value": 8192 + }, + { + "name": "CompactAttachments", + "value": 131072 + } + ], + "source": { + "file": "message.ts", + "line": 18, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "MessageType", + "members": [ + { + "name": "Default", + "value": 0 + }, + { + "name": "RecipientAdd", + "value": 1 + }, + { + "name": "RecipientRemove", + "value": 2 + }, + { + "name": "Call", + "value": 3 + }, + { + "name": "ChannelNameChange", + "value": 4 + }, + { + "name": "ChannelIconChange", + "value": 5 + }, + { + "name": "ChannelPinnedMessage", + "value": 6 + }, + { + "name": "UserJoin", + "value": 7 + }, + { + "name": "Reply", + "value": 19 + } + ], + "source": { + "file": "message.ts", + "line": 6, + "path": "packages/types/src/api/message.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "OverwriteType", + "description": "Permission overwrite type", + "members": [ + { + "name": "Role", + "value": 0 + }, + { + "name": "Member", + "value": 1 + } + ], + "source": { + "file": "channel.ts", + "line": 20, + "path": "packages/types/src/api/channel.ts" + }, + "package": "@fluxerjs/types" + }, + { + "name": "WebhookType", + "members": [ + { + "name": "Incoming", + "value": 1 + }, + { + "name": "ChannelFollower", + "value": 2 + } + ], + "source": { + "file": "webhook.ts", + "line": 4, + "path": "packages/types/src/api/webhook.ts" + }, + "package": "@fluxerjs/types" + } + ] +} \ No newline at end of file diff --git a/apps/docs-vitepress/api-data/versions.json b/apps/docs-vitepress/api-data/versions.json new file mode 100644 index 0000000..eaceadb --- /dev/null +++ b/apps/docs-vitepress/api-data/versions.json @@ -0,0 +1,6 @@ +{ + "versions": [ + "1.2.4" + ], + "latest": "1.2.4" +} \ No newline at end of file diff --git a/apps/docs-vitepress/changelog.md b/apps/docs-vitepress/changelog.md new file mode 100644 index 0000000..3974e8d --- /dev/null +++ b/apps/docs-vitepress/changelog.md @@ -0,0 +1,3 @@ +# Changelog + +See [GitHub releases](https://github.com/blstmo-abandoned-us-for-the-milk/core/releases) for the full changelog. diff --git a/apps/docs-vitepress/index.md b/apps/docs-vitepress/index.md new file mode 100644 index 0000000..dba9500 --- /dev/null +++ b/apps/docs-vitepress/index.md @@ -0,0 +1,15 @@ +--- +layout: home + +hero: + name: erin.js + text: SDK for building bots. + tagline: A simple, powerful bot SDK. + actions: + - theme: brand + text: Get Started + link: /v/latest/guides/installation + - theme: alt + text: API Reference + link: /v/latest/api/classes/ +--- diff --git a/apps/docs-vitepress/package-lock.json b/apps/docs-vitepress/package-lock.json new file mode 100644 index 0000000..ab645a2 --- /dev/null +++ b/apps/docs-vitepress/package-lock.json @@ -0,0 +1,2924 @@ +{ + "name": "erinjs-docs", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "erinjs-docs", + "version": "1.0.0", + "dependencies": { + "vitepress": "^1.6.3" + }, + "devDependencies": { + "tsx": "^4.19.0", + "typescript": "^5.6.0" + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.16.1.tgz", + "integrity": "sha512-Xxk4l00pYI+jE0PNw8y0MvsQWh5278WRtZQav8/BMMi3HKi2xmeuqe11WJ3y8/6nuBHdv39w76OpJb09TMfAVQ==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", + "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", + "@algolia/autocomplete-shared": "1.17.7" + } + }, + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", + "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", + "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", + "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", + "license": "MIT", + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.50.1.tgz", + "integrity": "sha512-4peZlPXMwTOey9q1rQKMdCnwZb/E95/1e+7KujXpLLSh0FawJzg//U2NM+r4AiJy4+naT2MTBhj0K30yshnVTA==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.50.1.tgz", + "integrity": "sha512-i+aWHHG8NZvGFHtPeMZkxL2Loc6Fm7iaRo15lYSMx8gFL+at9vgdWxhka7mD1fqxkrxXsQstUBCIsSY8FvkEOw==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.50.1.tgz", + "integrity": "sha512-Hw52Fwapyk/7hMSV/fI4+s3H9MGZEUcRh4VphyXLAk2oLYdndVUkc6KBi0zwHSzwPAr+ZBwFPe2x6naUt9mZGw==", + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.50.1.tgz", + "integrity": "sha512-Bn/wtwhJ7p1OD/6pY+Zzn+zlu2N/SJnH46md/PAbvqIzmjVuwjNwD4y0vV5Ov8naeukXdd7UU9v550+v8+mtlg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.50.1.tgz", + "integrity": "sha512-0V4Tu0RWR8YxkgI9EPVOZHGE4K5pEIhkLNN0CTkP/rnPsqaaSQpNMYW3/mGWdiKOWbX0iVmwLB9QESk3H0jS5g==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.50.1.tgz", + "integrity": "sha512-jofcWNYMXJDDr87Z2eivlWY6o71Zn7F7aOvQCXSDAo9QTlyf7BhXEsZymLUvF0O1yU9Q9wvrjAWn8uVHYnAvgw==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.50.1.tgz", + "integrity": "sha512-OteRb8WubcmEvU0YlMJwCXs3Q6xrdkb0v50/qZBJP1TF0CvujFZQM++9BjEkTER/Jr9wbPHvjSFKnbMta0b4dQ==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/ingestion": { + "version": "1.50.1", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.50.1.tgz", + "integrity": "sha512-0GmfSgDQK6oiIVXnJvGxtNFOfosBspRTR7csCOYCTL1P8QtxX2vDCIKwTM7xdSAEbJaZ43QlWg25q0Qdsndz8Q==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.50.1", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.50.1.tgz", + "integrity": "sha512-ySuigKEe4YjYV3si8NVk9BHQpFj/1B+ON7DhhvTvbrZJseHQQloxzq0yHwKmznSdlO6C956fx4pcfOKkZClsyg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.50.1.tgz", + "integrity": "sha512-Cp8T/B0gVmjFlzzp6eP47hwKh5FGyeqQp1N48/ANDdvdiQkPqLyFHQVDwLBH0LddfIPQE+yqmZIgmKc82haF4A==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.50.1.tgz", + "integrity": "sha512-XKdGGLikfrlK66ZSXh/vWcXZZ8Vg3byDFbJD8pwEvN1FoBRGxhxya476IY2ohoTymLa4qB5LBRlIa+2TLHx3Uw==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.50.1.tgz", + "integrity": "sha512-mBAU6WyVsDwhHyGM+nodt1/oebHxgvuLlOAoMGbj/1i6LygDHZWDgL1t5JEs37x9Aywv7ZGhqbM1GsfZ54sU6g==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.50.1.tgz", + "integrity": "sha512-qmo1LXrNKLHvJE6mdQbLnsZAoZvj7VyF2ft4xmbSGWI2WWm87fx/CjUX4kEExt4y0a6T6nEts6ofpUfH5TEE1A==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz", + "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", + "license": "MIT" + }, + "node_modules/@docsearch/js": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.8.2.tgz", + "integrity": "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==", + "license": "MIT", + "dependencies": { + "@docsearch/react": "3.8.2", + "preact": "^10.0.0" + } + }, + "node_modules/@docsearch/react": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz", + "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "1.17.7", + "@algolia/autocomplete-preset-algolia": "1.17.7", + "@docsearch/css": "3.8.2", + "algoliasearch": "^5.14.2" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 19.0.0", + "react": ">= 16.8.0 < 19.0.0", + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@iconify-json/simple-icons": { + "version": "1.2.76", + "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.76.tgz", + "integrity": "sha512-lLRlA8yaf+1L5VCPRvR9lynoSklsddKHEylchmZJKdj/q2xVQ1ZAEJ8SCQlv9cbgtMefnlyM98U+8Si2aoFZPA==", + "license": "CC0-1.0", + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "license": "MIT" + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz", + "integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz", + "integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz", + "integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz", + "integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz", + "integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz", + "integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz", + "integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==", + "cpu": [ + "arm" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz", + "integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==", + "cpu": [ + "arm" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz", + "integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==", + "cpu": [ + "arm64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz", + "integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==", + "cpu": [ + "arm64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz", + "integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==", + "cpu": [ + "loong64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz", + "integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==", + "cpu": [ + "loong64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz", + "integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==", + "cpu": [ + "ppc64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz", + "integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==", + "cpu": [ + "ppc64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz", + "integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==", + "cpu": [ + "riscv64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz", + "integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==", + "cpu": [ + "riscv64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz", + "integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==", + "cpu": [ + "s390x" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz", + "integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==", + "cpu": [ + "x64" + ], + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz", + "integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==", + "cpu": [ + "x64" + ], + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz", + "integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz", + "integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz", + "integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz", + "integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz", + "integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz", + "integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz", + "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", + "license": "MIT", + "dependencies": { + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.4" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", + "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^3.1.0" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", + "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-2.5.0.tgz", + "integrity": "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-2.5.0.tgz", + "integrity": "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==", + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/transformers": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-2.5.0.tgz", + "integrity": "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/types": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz", + "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "license": "MIT" + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "license": "MIT", + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.21", + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", + "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", + "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.32.tgz", + "integrity": "sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/shared": "3.5.32", + "entities": "^7.0.1", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.32.tgz", + "integrity": "sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.32", + "@vue/shared": "3.5.32" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.32.tgz", + "integrity": "sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/compiler-core": "3.5.32", + "@vue/compiler-dom": "3.5.32", + "@vue/compiler-ssr": "3.5.32", + "@vue/shared": "3.5.32", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.8", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.32.tgz", + "integrity": "sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.32", + "@vue/shared": "3.5.32" + } + }, + "node_modules/@vue/devtools-api": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.9.tgz", + "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==", + "license": "MIT", + "dependencies": { + "@vue/devtools-kit": "^7.7.9" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", + "license": "MIT", + "dependencies": { + "@vue/devtools-shared": "^7.7.9", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", + "license": "MIT", + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.32.tgz", + "integrity": "sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.32" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.32.tgz", + "integrity": "sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.32", + "@vue/shared": "3.5.32" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.32.tgz", + "integrity": "sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.32", + "@vue/runtime-core": "3.5.32", + "@vue/shared": "3.5.32", + "csstype": "^3.2.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.32.tgz", + "integrity": "sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.32", + "@vue/shared": "3.5.32" + }, + "peerDependencies": { + "vue": "3.5.32" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.32.tgz", + "integrity": "sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==", + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz", + "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.21", + "@vueuse/metadata": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/integrations": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz", + "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", + "license": "MIT", + "dependencies": { + "@vueuse/core": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true + }, + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz", + "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "12.8.2", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz", + "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", + "license": "MIT", + "dependencies": { + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/algoliasearch": { + "version": "5.50.1", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.50.1.tgz", + "integrity": "sha512-/bwdue1/8LWELn/DBalGRfuLsXBLXULJo/yOeavJtDu8rBwxIzC6/Rz9Jg19S21VkJvRuZO1k8CZXBMS73mYbA==", + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.16.1", + "@algolia/client-abtesting": "5.50.1", + "@algolia/client-analytics": "5.50.1", + "@algolia/client-common": "5.50.1", + "@algolia/client-insights": "5.50.1", + "@algolia/client-personalization": "5.50.1", + "@algolia/client-query-suggestions": "5.50.1", + "@algolia/client-search": "5.50.1", + "@algolia/ingestion": "1.50.1", + "@algolia/monitoring": "1.50.1", + "@algolia/recommend": "5.50.1", + "@algolia/requester-browser-xhr": "5.50.1", + "@algolia/requester-fetch": "5.50.1", + "@algolia/requester-node-http": "5.50.1" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/birpc": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz", + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/copy-anything": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz", + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", + "license": "MIT", + "dependencies": { + "is-what": "^5.2.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "license": "MIT" + }, + "node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/focus-trap": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.8.0.tgz", + "integrity": "sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==", + "license": "MIT", + "dependencies": { + "tabbable": "^6.4.0" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.7", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.7.tgz", + "integrity": "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-what": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz", + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "license": "MIT" + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/minisearch": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.2.0.tgz", + "integrity": "sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==", + "license": "MIT" + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/oniguruma-to-es": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", + "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", + "license": "MIT", + "dependencies": { + "emoji-regex-xs": "^1.0.0", + "regex": "^6.0.1", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/preact": { + "version": "10.29.1", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.29.1.tgz", + "integrity": "sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "license": "MIT" + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "license": "MIT" + }, + "node_modules/rollup": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz", + "integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.1", + "@rollup/rollup-android-arm64": "4.60.1", + "@rollup/rollup-darwin-arm64": "4.60.1", + "@rollup/rollup-darwin-x64": "4.60.1", + "@rollup/rollup-freebsd-arm64": "4.60.1", + "@rollup/rollup-freebsd-x64": "4.60.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.1", + "@rollup/rollup-linux-arm-musleabihf": "4.60.1", + "@rollup/rollup-linux-arm64-gnu": "4.60.1", + "@rollup/rollup-linux-arm64-musl": "4.60.1", + "@rollup/rollup-linux-loong64-gnu": "4.60.1", + "@rollup/rollup-linux-loong64-musl": "4.60.1", + "@rollup/rollup-linux-ppc64-gnu": "4.60.1", + "@rollup/rollup-linux-ppc64-musl": "4.60.1", + "@rollup/rollup-linux-riscv64-gnu": "4.60.1", + "@rollup/rollup-linux-riscv64-musl": "4.60.1", + "@rollup/rollup-linux-s390x-gnu": "4.60.1", + "@rollup/rollup-linux-x64-gnu": "4.60.1", + "@rollup/rollup-linux-x64-musl": "4.60.1", + "@rollup/rollup-openbsd-x64": "4.60.1", + "@rollup/rollup-openharmony-arm64": "4.60.1", + "@rollup/rollup-win32-arm64-msvc": "4.60.1", + "@rollup/rollup-win32-ia32-msvc": "4.60.1", + "@rollup/rollup-win32-x64-gnu": "4.60.1", + "@rollup/rollup-win32-x64-msvc": "4.60.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/search-insights": { + "version": "2.17.3", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", + "license": "MIT", + "peer": true + }, + "node_modules/shiki": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-2.5.0.tgz", + "integrity": "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==", + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/langs": "2.5.0", + "@shikijs/themes": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/superjson": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz", + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", + "license": "MIT", + "dependencies": { + "copy-anything": "^4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/tabbable": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.4.0.tgz", + "integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==", + "license": "MIT" + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vitepress": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.4.tgz", + "integrity": "sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==", + "license": "MIT", + "dependencies": { + "@docsearch/css": "3.8.2", + "@docsearch/js": "3.8.2", + "@iconify-json/simple-icons": "^1.2.21", + "@shikijs/core": "^2.1.0", + "@shikijs/transformers": "^2.1.0", + "@shikijs/types": "^2.1.0", + "@types/markdown-it": "^14.1.2", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/devtools-api": "^7.7.0", + "@vue/shared": "^3.5.13", + "@vueuse/core": "^12.4.0", + "@vueuse/integrations": "^12.4.0", + "focus-trap": "^7.6.4", + "mark.js": "8.11.1", + "minisearch": "^7.1.1", + "shiki": "^2.1.0", + "vite": "^5.4.14", + "vue": "^3.5.13" + }, + "bin": { + "vitepress": "bin/vitepress.js" + }, + "peerDependencies": { + "markdown-it-mathjax3": "^4", + "postcss": "^8" + }, + "peerDependenciesMeta": { + "markdown-it-mathjax3": { + "optional": true + }, + "postcss": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.32.tgz", + "integrity": "sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.32", + "@vue/compiler-sfc": "3.5.32", + "@vue/runtime-dom": "3.5.32", + "@vue/server-renderer": "3.5.32", + "@vue/shared": "3.5.32" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/apps/docs-vitepress/package.json b/apps/docs-vitepress/package.json new file mode 100644 index 0000000..fd20f0a --- /dev/null +++ b/apps/docs-vitepress/package.json @@ -0,0 +1,20 @@ +{ + "name": "erinjs-docs", + "version": "1.0.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vitepress dev", + "build": "node --import tsx/esm scripts/generate-api.ts api-data/latest/main.json && vitepress build", + "preview": "vitepress preview", + "generate-api": "node --import tsx/esm scripts/generate-api.ts api-data/latest/main.json", + "migrate-guides": "node --import tsx/esm scripts/migrate-guides.ts ../docs/public/docs/latest/guides.json" + }, + "dependencies": { + "vitepress": "^1.6.3" + }, + "devDependencies": { + "typescript": "^5.6.0", + "tsx": "^4.19.0" + } +} diff --git a/apps/docs-vitepress/scripts/generate-api.ts b/apps/docs-vitepress/scripts/generate-api.ts new file mode 100644 index 0000000..9428f72 --- /dev/null +++ b/apps/docs-vitepress/scripts/generate-api.ts @@ -0,0 +1,243 @@ +import { readFileSync, writeFileSync, mkdirSync, rmSync } from 'fs' +import { join, dirname } from 'path' +import { fileURLToPath } from 'url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) + +// ---- Types ---------------------------------------------------------------- + +interface Param { + name: string + type: string + optional: boolean + description?: string +} + +interface Method { + name: string + params: Param[] + returns: string + description?: string + async: boolean + source?: { file: string; line: number; path?: string } +} + +interface Property { + name: string + type: string + readonly: boolean + optional: boolean + description?: string +} + +interface ApiClass { + name: string + description?: string + constructor?: { params: Param[] } + properties: Property[] + methods: Method[] + package: string + source?: { file: string; line: number; path?: string } +} + +interface ApiInterface { + name: string + description?: string + properties: Property[] + package: string + source?: { file: string; line: number; path?: string } +} + +interface EnumMember { + name: string + value: string +} + +interface ApiEnum { + name: string + description?: string + members: EnumMember[] + package: string + source?: { file: string; line: number; path?: string } +} + +interface MainJson { + meta: { version: string; date: number } + package: string + version: string + packages: string[] + classes: ApiClass[] + interfaces: ApiInterface[] + enums: ApiEnum[] +} + +// ---- Helpers --------------------------------------------------------------- + +function escapeType(type: string): string { + // Used inside HTML tags in markdown table cells. + // & must come first to avoid double-escaping. + // < and > use HTML entities so the browser renders them correctly. + // | must be \| so markdown-it's escapedSplit() strips the backslash + // and keeps | as literal cell content instead of a column separator. + return type + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/\|/g, '\\|') +} + +function fixBranding(text: string): string { + return text + .replace(/@fluxerjs\//g, '@erinjs/') + .replace(/\bFluxerError\b/g, 'ErinError') + .replace(/\bFluxer\b/g, 'erin.js') +} + +function renderPropertiesTable(properties: Property[]): string { + if (properties.length === 0) return '_None_\n' + const header = '| Name | Type | Readonly | Optional | Description |' + const divider = '| --- | --- | --- | --- | --- |' + const rows = properties.map(p => + `| \`${p.name}\` | ${escapeType(p.type)} | ${p.readonly ? 'Yes' : 'No'} | ${p.optional ? 'Yes' : 'No'} | ${fixBranding(p.description ?? '')} |` + ) + return [header, divider, ...rows].join('\n') + '\n' +} + +function renderParamsTable(params: Param[]): string { + if (params.length === 0) return '_None_\n' + const header = '| Name | Type | Optional | Description |' + const divider = '| --- | --- | --- | --- |' + const rows = params.map(p => + `| \`${p.name}\` | ${escapeType(p.type)} | ${p.optional ? 'Yes' : 'No'} | ${fixBranding(p.description ?? '')} |` + ) + return [header, divider, ...rows].join('\n') + '\n' +} + +function renderMethod(method: Method): string { + const asyncTag = method.async ? ' `async`' : '' + const parts = [`### \`${method.name}()\`${asyncTag}\n`] + if (method.description) parts.push(`${fixBranding(method.description)}\n`) + parts.push(`**Returns:** ${escapeType(method.returns)}\n`) + parts.push('**Parameters:**\n') + parts.push(renderParamsTable(method.params)) + return parts.join('\n') +} + +// ---- Generators ------------------------------------------------------------ + +function generateClassPage(cls: ApiClass): string { + const parts: string[] = [`# ${fixBranding(cls.name)}\n`] + if (cls.package) parts.push(`**Package:** \`${cls.package.replace('@fluxerjs/', '@erinjs/')}\`\n`) + if (cls.description) parts.push(`${fixBranding(cls.description)}\n`) + + if (cls.constructor && cls.constructor.params?.length > 0) { + parts.push('## Constructor\n') + parts.push(renderParamsTable(cls.constructor.params)) + } + + parts.push('## Properties\n') + parts.push(renderPropertiesTable(cls.properties)) + + if (cls.methods.length > 0) { + parts.push('## Methods\n') + parts.push(cls.methods.map(renderMethod).join('\n---\n\n')) + } + + return parts.join('\n') +} + +function generateInterfacePage(iface: ApiInterface): string { + const parts: string[] = [`# ${fixBranding(iface.name)}\n`] + if (iface.package) parts.push(`**Package:** \`${iface.package.replace('@fluxerjs/', '@erinjs/')}\`\n`) + if (iface.description) parts.push(`${fixBranding(iface.description)}\n`) + parts.push('## Properties\n') + parts.push(renderPropertiesTable(iface.properties)) + return parts.join('\n') +} + +function generateEnumPage(en: ApiEnum): string { + const parts: string[] = [`# ${fixBranding(en.name)}\n`] + if (en.package) parts.push(`**Package:** \`${en.package.replace('@fluxerjs/', '@erinjs/')}\`\n`) + if (en.description) parts.push(`${fixBranding(en.description)}\n`) + parts.push('## Members\n') + const header = '| Name | Value |' + const divider = '| --- | --- |' + const rows = en.members.map(m => `| \`${m.name}\` | \`${m.value}\` |`) + parts.push([header, divider, ...rows].join('\n') + '\n') + return parts.join('\n') +} + +function generateIndex(names: string[], section: string, basePath: string): string { + const links = names.map(name => `- [${fixBranding(name)}](${basePath}/${name})`).join('\n') + return `# ${section}\n\n${links}\n` +} + +// ---- Filename deduplication (case-insensitive, for cross-platform Rollup compat) --- + +function makeUniqueSlug(name: string, seen: Map): string { + const key = name.toLowerCase() + const count = seen.get(key) ?? 0 + seen.set(key, count + 1) + return count === 0 ? name : `${name}-${count + 1}` +} + +// ---- Main ------------------------------------------------------------------ + +const inputPath = process.argv[2] +if (!inputPath) { + console.error('Usage: generate-api.ts ') + process.exit(1) +} + +const data: MainJson = JSON.parse(readFileSync(inputPath, 'utf8')) +const apiDir = join(__dirname, '../v/latest/api') + +const classesDir = join(apiDir, 'classes') +const interfacesDir = join(apiDir, 'interfaces') +const enumsDir = join(apiDir, 'enums') +// Clean stale files from previous runs before writing fresh output +rmSync(apiDir, { recursive: true, force: true }) +mkdirSync(classesDir, { recursive: true }) +mkdirSync(interfacesDir, { recursive: true }) +mkdirSync(enumsDir, { recursive: true }) + +const classSeen = new Map() +const classSlugs: Array<{ name: string; slug: string }> = [] +for (const cls of data.classes) { + const slug = makeUniqueSlug(cls.name, classSeen) + classSlugs.push({ name: cls.name, slug }) + writeFileSync(join(classesDir, `${slug}.md`), generateClassPage(cls), 'utf8') +} +writeFileSync( + join(classesDir, 'index.md'), + generateIndex(classSlugs.map(c => c.slug), 'Classes', '/v/latest/api/classes'), + 'utf8' +) + +const ifaceSeen = new Map() +const ifaceSlugs: Array<{ name: string; slug: string }> = [] +for (const iface of data.interfaces) { + const slug = makeUniqueSlug(iface.name, ifaceSeen) + ifaceSlugs.push({ name: iface.name, slug }) + writeFileSync(join(interfacesDir, `${slug}.md`), generateInterfacePage(iface), 'utf8') +} +writeFileSync( + join(interfacesDir, 'index.md'), + generateIndex(ifaceSlugs.map(i => i.slug), 'Interfaces', '/v/latest/api/interfaces'), + 'utf8' +) + +const enumSeen = new Map() +const enumSlugs: Array<{ name: string; slug: string }> = [] +for (const en of data.enums) { + const slug = makeUniqueSlug(en.name, enumSeen) + enumSlugs.push({ name: en.name, slug }) + writeFileSync(join(enumsDir, `${slug}.md`), generateEnumPage(en), 'utf8') +} +writeFileSync( + join(enumsDir, 'index.md'), + generateIndex(enumSlugs.map(e => e.slug), 'Enums', '/v/latest/api/enums'), + 'utf8' +) + +console.log(`Generated ${data.classes.length} classes, ${data.interfaces.length} interfaces, ${data.enums.length} enums`) diff --git a/apps/docs-vitepress/scripts/migrate-guides.ts b/apps/docs-vitepress/scripts/migrate-guides.ts new file mode 100644 index 0000000..79f859a --- /dev/null +++ b/apps/docs-vitepress/scripts/migrate-guides.ts @@ -0,0 +1,129 @@ +import { readFileSync, writeFileSync, mkdirSync } from 'fs' +import { join, dirname } from 'path' +import { fileURLToPath } from 'url' + +const __dirname = dirname(fileURLToPath(import.meta.url)) + +interface GuideTable { + headers: string[] + rows: string[][] + codeColumns?: number[] +} + +interface GuideSection { + title?: string + description?: string + code?: string + language?: string + table?: GuideTable + tip?: string + alternateCode?: { label: string; code: string; language?: string } + discordJsCompat?: boolean | string +} + +interface Guide { + id: string + slug: string + title: string + description: string + category: string + sections: GuideSection[] +} + +const inputPath = process.argv[2] +if (!inputPath) { + console.error('Usage: migrate-guides.ts ') + process.exit(1) +} + +const guides: Guide[] = JSON.parse(readFileSync(inputPath, 'utf8')) +const outDir = join(__dirname, '../docs/v/latest/guides') +mkdirSync(outDir, { recursive: true }) + +function escapeMarkdown(str: string): string { + return str + .replace(/@fluxerjs\//g, '@erinjs/') + .replace(/fluxerjs/gi, 'erinjs') + .replace(/Fluxer\.js/g, 'erin.js') + .replace(/Fluxer SDK/g, 'erin.js SDK') + .replace(/Fluxer API/g, 'erin.js API') + .replace(/FluxerError/g, 'ErinError') + .replace(/\bFluxer\b/g, 'erin.js') + .replace(/FLUXER_BOT_TOKEN/g, 'ERIN_BOT_TOKEN') + .replace(/FLUXER_SUPPRESS_DEPRECATION/g, 'ERIN_SUPPRESS_DEPRECATION') +} + +function renderTable(table: GuideTable): string { + const codeColumns = table.codeColumns ?? [] + const header = `| ${table.headers.join(' | ')} |` + const divider = `| ${table.headers.map(() => '---').join(' | ')} |` + const rows = table.rows.map(row => + `| ${row.map((cell, i) => (codeColumns.includes(i) ? `\`${cell}\`` : cell)).join(' | ')} |` + ) + return [header, divider, ...rows].join('\n') +} + +function renderSection(section: GuideSection): string { + const parts: string[] = [] + + if (section.title) { + parts.push(`## ${escapeMarkdown(section.title)}\n`) + } + + if (section.discordJsCompat) { + const rawLink = typeof section.discordJsCompat === 'string' ? section.discordJsCompat : '' + // Remap old /docs/classes/ and /docs/typedefs/ paths to new VitePress structure + const link = rawLink + .replace(/^\/docs\/classes\//, '/v/latest/api/classes/') + .replace(/^\/docs\/typedefs\//, '/v/latest/api/interfaces/') + if (link) { + parts.push(`::: info Discord.js Compatible\nSee [API reference](${link}) for full details.\n:::\n`) + } else { + parts.push(`::: info Discord.js Compatible\nThis API follows Discord.js conventions.\n:::\n`) + } + } + + if (section.description) { + parts.push(`${escapeMarkdown(section.description)}\n`) + } + + if (section.tip) { + parts.push(`::: tip\n${escapeMarkdown(section.tip)}\n:::\n`) + } + + if (section.table) { + parts.push(renderTable(section.table) + '\n') + } + + if (section.code) { + const lang = section.language ?? 'javascript' + const codeFixed = escapeMarkdown(section.code) + + if (section.alternateCode) { + const altLang = section.alternateCode.language ?? 'javascript' + const altCode = escapeMarkdown(section.alternateCode.code) + parts.push( + `::: code-group\n\`\`\`${lang} [Default]\n${codeFixed}\n\`\`\`\n\`\`\`${altLang} [${section.alternateCode.label}]\n${altCode}\n\`\`\`\n:::\n` + ) + } else { + parts.push(`\`\`\`${lang}\n${codeFixed}\n\`\`\`\n`) + } + } + + return parts.join('\n') +} + +for (const guide of guides) { + const lines: string[] = [ + `# ${escapeMarkdown(guide.title)}\n`, + `${escapeMarkdown(guide.description)}\n`, + ...guide.sections.map(renderSection), + ] + + const content = lines.join('\n') + const outPath = join(outDir, `${guide.slug}.md`) + writeFileSync(outPath, content, 'utf8') + console.log(`wrote ${outPath}`) +} + +console.log(`\nMigrated ${guides.length} guides to ${outDir}`) diff --git a/apps/docs-vitepress/tsconfig.json b/apps/docs-vitepress/tsconfig.json new file mode 100644 index 0000000..f277910 --- /dev/null +++ b/apps/docs-vitepress/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + }, + "include": ["scripts/**/*", ".vitepress/**/*"] +} diff --git a/apps/docs-vitepress/v/latest/guides/attachments-by-url.md b/apps/docs-vitepress/v/latest/guides/attachments-by-url.md new file mode 100644 index 0000000..61411cd --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/attachments-by-url.md @@ -0,0 +1,57 @@ +# File Attachments by URL + +Attach files by passing a URL instead of buffer data. The SDK fetches the URL and uploads it as a normal attachment. + +## Using a URL + +Pass { name, url } in the files array. The SDK fetches the URL (30s timeout), validates it with URL.canParse(), and uploads the result. Works with channel.send(), message.reply(), message.send(), webhook.send(), and client.channels.send(). + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!attachurl') { + await message.reply({ + content: 'Image from URL:', + files: [ + { + name: 'image.png', + url: 'https://example.com/image.png', + }, + ], + }); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Mixing buffers and URLs + +You can combine file data and URLs in the same message. Order is preserved; attachments metadata id matches the file index. + +```javascript +await message.reply({ + content: 'Two files:', + files: [ + { name: 'local.txt', data: Buffer.from('Hello') }, + { name: 'remote.png', url: 'https://example.com/logo.png' }, + ], +}); +``` + +## Optional filename override + +Use filename to control the displayed attachment name independently from the local name used during upload. + +```javascript +files: [ + { + name: 'fetched-image.png', + url: 'https://example.com/image.jpg', + filename: 'custom-display.png', + }, +] +``` diff --git a/apps/docs-vitepress/v/latest/guides/attachments.md b/apps/docs-vitepress/v/latest/guides/attachments.md new file mode 100644 index 0000000..28c9700 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/attachments.md @@ -0,0 +1,62 @@ +# File Attachments + +Upload files with messages and set attachment metadata (title, description, flags for spoiler, animated, explicit). + +## Basic File Upload + +Pass files in your send options. Each file needs a name and data (Buffer, Blob, Uint8Array). Use with message.reply(), message.send(), or channel.send(). + +```javascript +import { Client, Events } from '@erinjs/core'; +import { readFileSync } from 'fs'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!file') { + const data = Buffer.from('Hello from erin.js!', 'utf-8'); + await message.reply({ + content: 'Here is a file:', + files: [{ name: 'hello.txt', data }], + }); + } +}); +``` + +## Attachment Metadata + +When using files, you can pass attachments to set metadata per file: filename, title, description, and flags. The id in each attachment matches the file index (0, 1, 2...). + +```javascript +import { MessageAttachmentFlags } from '@erinjs/core'; + +await message.reply({ + content: 'Spoiler image:', + files: [{ name: 'secret.png', data: imageBuffer }], + attachments: [ + { + id: 0, + filename: 'secret.png', + title: 'Hidden image', + flags: MessageAttachmentFlags.IS_SPOILER, + }, + ], +}); +``` + +## Attachment Flags + +MessageAttachmentFlags: IS_SPOILER (8) blurs until clicked, CONTAINS_EXPLICIT_MEDIA (16) for explicit content, IS_ANIMATED (32) for GIFs and animated WebP. Combine with bitwise OR. + +```javascript +import { MessageAttachmentFlags } from '@erinjs/core'; + +// Spoiler (blurred until clicked) +flags: MessageAttachmentFlags.IS_SPOILER + +// Animated image (GIF, animated WebP) +flags: MessageAttachmentFlags.IS_ANIMATED + +// Combine flags +flags: MessageAttachmentFlags.IS_SPOILER | MessageAttachmentFlags.IS_ANIMATED +``` diff --git a/apps/docs-vitepress/v/latest/guides/basic-bot.md b/apps/docs-vitepress/v/latest/guides/basic-bot.md new file mode 100644 index 0000000..53fa6ef --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/basic-bot.md @@ -0,0 +1,49 @@ +# Basic Bot + +A minimal bot that responds to !ping with Pong. See examples/first-steps-bot.js for !hello, !avatar, !embed, !perms. + +::: tip +You can also use client.events for chainable, typed handlers with better autocomplete. +::: + +::: code-group +```javascript [Default] +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.Ready, () => console.log('Ready!')); +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!ping') { + await message.reply('Pong!'); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` +```javascript [client.events] +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client + .events.Ready(() => console.log('Ready!')) + .events.MessageCreate(async (message) => { + if (message.content === '!ping') await message.reply('Pong!'); + }); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` +::: + +## Common mistakes + +Always await message.reply() to avoid unhandled promise rejections. Use intents: 0 (erin.js does not support intents yet). Set ERIN_SUPPRESS_DEPRECATION=1 to silence deprecation warnings. + +```javascript +// ❌ BAD — unhandled rejection if reply fails +message.reply('Pong!'); + +// ✅ GOOD +await message.reply('Pong!'); +``` diff --git a/apps/docs-vitepress/v/latest/guides/channels.md b/apps/docs-vitepress/v/latest/guides/channels.md new file mode 100644 index 0000000..83edd28 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/channels.md @@ -0,0 +1,180 @@ +# Channels + +Create and manage channels, roles, and invites. Covers guild.createChannel(), channel.edit(), channel.createInvite(), guild.createRole(), and more. + +## Channels — Create + +Use guild.createChannel() to create text (0), voice (2), category (4), or link (5) channels. Requires Manage Channels permission. Pass parent_id to put a channel under a category. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (!message.guildId || message.content !== '!createchannel') return; + const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId); + if (!guild) return; + + // Text channel (0), voice (2), category (4), link (5) + const textChannel = await guild.createChannel({ + type: 0, + name: 'general', + }); + + // Category, then voice channel under it + const category = await guild.createChannel({ + type: 4, + name: 'Voice Chats', + }); + const voiceChannel = await guild.createChannel({ + type: 2, + name: 'Lounge', + parent_id: category.id, + bitrate: 64000, + }); + + await message.reply(`Created ${textChannel.name} and ${voiceChannel.name} in ${category.name}`); +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Channels — Fetch and Edit + +Use guild.fetchChannels() to load all guild channels. Use channel.edit() to rename, set topic, move to a category, set slowmode, or update permission overwrites. + +```javascript +const guild = client.guilds.get(guildId) ?? await client.guilds.resolve(guildId); +if (!guild) return; + +const channels = await guild.fetchChannels(); + +// Edit a text channel +const channel = guild.channels.get(channelId); +if (channel) { + await channel.edit({ + name: 'renamed-channel', + topic: 'New topic here', + parent_id: categoryId, // Move under category + rate_limit_per_user: 5, // 5 second slowmode + nsfw: false, + }); +} +``` + +## Channels — Delete and Reorder + +Use channel.delete() to remove a channel. Use guild.setChannelPositions() to reorder channels or move them between categories. + +```javascript +// Delete channel (silent: true skips system message) +await channel.delete(); +await channel.delete({ silent: true }); + +// Reorder channels +await guild.setChannelPositions([ + { id: channelId1, position: 0 }, + { id: channelId2, position: 1, parent_id: categoryId }, +]); +``` + +## Channel Permission Overwrites + +Use channel.editPermission() to add or update overwrites (type 0=role, 1=member). Use channel.deletePermission() to remove. Use resolvePermissionsToBitfield() for allow/deny bitfields. + +```javascript +import { resolvePermissionsToBitfield, PermissionFlags } from '@erinjs/core'; + +// Deny SendMessages for a role (type 0=role, 1=member) +await channel.editPermission(roleId, { + type: 0, + deny: resolvePermissionsToBitfield(['SendMessages']), +}); + +// Allow ViewChannel for a specific member +await channel.editPermission(userId, { + type: 1, + allow: resolvePermissionsToBitfield([PermissionFlags.ViewChannel]), +}); + +// Remove overwrite +await channel.deletePermission(roleId); +``` + +## Roles — Quick Reference + +Create roles with guild.createRole(), fetch with guild.fetchRoles() or guild.fetchRole(roleId). Add/remove with guild.addRoleToMember() / guild.removeRoleFromMember(). Reorder with guild.setRolePositions(). + +::: tip +See the Roles guide for full examples, permission bitfields, and role.edit() / role.delete(). +::: + +```javascript +// See the Roles guide for full examples and permission bitfields. +const role = await guild.createRole({ name: 'Mod', permissions: ['KickMembers', 'BanMembers'] }); +await guild.addRoleToMember(userId, role.id); +await guild.removeRoleFromMember(userId, role.id); +await guild.setRolePositions([{ id: role.id, position: 5 }]); +``` + +## Invites + +Use channel.createInvite() to create an invite. Use channel.fetchInvites() to list channel invites. Use invite.delete() to revoke. invite.url gives the full invite URL. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (!message.content.startsWith('!invite') || !message.guildId) return; + const channel = message.channel; + if (!channel?.createInvite) return; + + if (message.content === '!invite') { + const invite = await channel.createInvite({ + max_age: 86400, // 24 hours + max_uses: 10, + temporary: false, + }); + await message.reply(`Invite: ${invite.url}`); + } + + if (message.content === '!invitelist') { + const invites = await channel.fetchInvites(); + const list = invites.map((i) => `${i.code} (${i.max_uses ?? '∞'} uses)`).join('\n'); + await message.reply(list || 'No invites.'); + } + + if (message.content.startsWith('!inviterevoke ')) { + const code = message.content.slice(13).trim(); + const invites = await channel.fetchInvites(); + const inv = invites.find((i) => i.code === code); + if (inv) { + await inv.delete(); + await message.reply('Invite revoked.'); + } + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Quick Reference + +| API | Method | Purpose | +| --- | --- | --- | +| `Channels` | `guild.createChannel()` | Create text, voice, category, or link channel | +| `Channels` | `guild.fetchChannels()` | Fetch all guild channels | +| `Channels` | `channel.edit()` | Rename, set topic, slowmode, parent, overwrites | +| `Channels` | `channel.delete()` | Delete a channel | +| `Channels` | `guild.setChannelPositions()` | Reorder or reparent channels | +| `Channels` | `channel.editPermission()` | Add or update permission overwrite | +| `Channels` | `channel.deletePermission()` | Remove permission overwrite | +| `Roles` | `guild.createRole()` | Create a role | +| `Roles` | `guild.addRoleToMember()` | Add role to member | +| `Roles` | `guild.removeRoleFromMember()` | Remove role from member | +| `Invites` | `channel.createInvite()` | Create invite with max_uses, max_age | +| `Invites` | `channel.fetchInvites()` | List channel invites | +| `Invites` | `invite.delete()` | Revoke invite | diff --git a/apps/docs-vitepress/v/latest/guides/deprecated-apis.md b/apps/docs-vitepress/v/latest/guides/deprecated-apis.md new file mode 100644 index 0000000..34b1372 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/deprecated-apis.md @@ -0,0 +1,58 @@ +# Deprecated APIs + +APIs that are deprecated and will be removed in a future release. Migrate to the recommended alternatives. + +## Overview + +The following methods emit a one-time deprecation warning at runtime. Set ERIN_SUPPRESS_DEPRECATION=1 to silence warnings. Migrate to the recommended replacements. + +## Client.sendToChannel + +Use client.channels.send(channelId, payload) instead. Accepts the same MessageSendOptions (content, embeds, files). + +| Deprecated | Replacement | +| --- | --- | +| `client.sendToChannel(channelId, content)` | `client.channels.send(channelId, payload)` | + +```javascript +// ❌ Deprecated +await client.sendToChannel(channelId, 'Hello!'); +await client.sendToChannel(channelId, { embeds: [embed] }); + +// ✅ Use instead +await client.channels.send(channelId, 'Hello!'); +await client.channels.send(channelId, { embeds: [embed] }); +``` + +## Client.fetchMessage + +Use channel.messages.fetch(messageId) instead. Resolve the channel first if you only have IDs. + +| Deprecated | Replacement | +| --- | --- | +| `client.fetchMessage(channelId, messageId)` | `(await client.channels.resolve(channelId))?.messages?.fetch(messageId)` | + +```javascript +// ❌ Deprecated +const message = await client.fetchMessage(channelId, messageId); + +// ✅ Use instead +const channel = await client.channels.resolve(channelId); +const message = channel?.messages ? await channel.messages.fetch(messageId) : null; +``` + +## ChannelManager.fetchMessage + +Use channel.messages.fetch(messageId) instead. + +| Deprecated | Replacement | +| --- | --- | +| `client.channels.fetchMessage(channelId, messageId)` | `channel.messages.fetch(messageId)` | + +## Channel.fetchMessage + +Use channel.messages.fetch(messageId) instead. Available on TextChannel and DMChannel. + +| Deprecated | Replacement | +| --- | --- | +| `channel.fetchMessage(messageId)` | `channel.messages.fetch(messageId)` | diff --git a/apps/docs-vitepress/v/latest/guides/discord-js-compatibility.md b/apps/docs-vitepress/v/latest/guides/discord-js-compatibility.md new file mode 100644 index 0000000..6157293 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/discord-js-compatibility.md @@ -0,0 +1,42 @@ +# Discord.js Compatibility + +APIs designed to ease migration from Discord.js. Look for the green "Discord.js compatible" badge in guides. + +## Overview + +erin.js SDK provides Discord.js-style APIs where it makes sense. Sections marked with the green "Discord.js compatible" badge offer familiar patterns — click the badge to see the full API reference. + +## member.roles (GuildMemberRoleManager) + +::: info Discord.js Compatible +See [API reference](/v/latest/api/classes/GuildMemberRoleManager) for full details. +::: + +member.roles is a manager with add(), remove(), set(), and cache. Use member.roles.add(roleId), member.roles.remove(roleId), member.roles.set(roleIds), and member.roles.cache.has(roleId) instead of the old member.addRole() / member.roles.includes() pattern. + +```javascript +// Discord.js style +await member.roles.add(roleId); +await member.roles.remove(roleId); +await member.roles.set(['id1', 'id2']); +if (member.roles.cache.has(roleId)) { ... } +``` + +## guild.members.me + +::: info Discord.js Compatible +See [API reference](/v/latest/api/classes/GuildMemberManager) for full details. +::: + +guild.members.me returns the bot's GuildMember in that guild. Use guild.members.fetchMe() to load it when not cached. Same as Discord.js. + +```javascript +const me = guild.members.me ?? await guild.members.fetchMe(); +if (me?.permissions.has(PermissionFlags.BanMembers)) { + await message.reply('I can ban members here.'); +} +``` + +## Other parity + +client.channels.cache and client.guilds.cache are compatibility aliases. Collection extends Map with find(), filter(), etc. See the API reference for full details. diff --git a/apps/docs-vitepress/v/latest/guides/editing-embeds.md b/apps/docs-vitepress/v/latest/guides/editing-embeds.md new file mode 100644 index 0000000..7faeffa --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/editing-embeds.md @@ -0,0 +1,65 @@ +# Editing Embeds + +Edit existing message embeds with message.edit(). + +## Overview + +The erin.js API supports editing existing messages via PATCH. You can update the message content, embeds, or both. Only the message author (or admins with proper permissions) can edit messages. + +## Edit Content + +Update the text content of a message you sent. + +```javascript +const reply = await message.reply('Initial message'); +await reply.edit({ content: 'Updated message!' }); +``` + +## Edit Embeds + +Replace or update embeds on an existing message. Pass an array of EmbedBuilder instances or APIEmbed objects. + +```javascript +import { Client, Events, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!editembed') { + const embed = new EmbedBuilder() + .setTitle('Loading...') + .setColor(0x5865f2) + .setTimestamp(); + + const reply = await message.reply({ embeds: [embed] }); + + // Simulate loading, then update the embed + await new Promise((r) => setTimeout(r, 2000)); + + const updatedEmbed = new EmbedBuilder() + .setTitle('Done!') + .setDescription('This embed was edited after 2 seconds.') + .setColor(0x57f287) + .setTimestamp(); + + await reply.edit({ embeds: [updatedEmbed] }); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Edit Content and Embeds Together + +You can update both content and embeds in a single edit call. + +```javascript +await message.edit({ + content: 'Updated text', + embeds: [new EmbedBuilder().setTitle('Updated embed').setColor(0x5865f2)], +}); +``` + +## API Reference + +The edit endpoint is PATCH /channels/{channel_id}/messages/{message_id}. See openapi.json for the full request body schema. The SDK Message.edit() accepts { content?: string; embeds?: (APIEmbed | EmbedBuilder)[] }. diff --git a/apps/docs-vitepress/v/latest/guides/embed-media.md b/apps/docs-vitepress/v/latest/guides/embed-media.md new file mode 100644 index 0000000..552f534 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/embed-media.md @@ -0,0 +1,87 @@ +# Embed Media + +Add images, thumbnails, video, and audio to embeds with EmbedBuilder and EmbedMediaOptions. + +## Images and Thumbnails + +Use setImage() and setThumbnail() with a URL string, or pass full EmbedMediaOptions for width, height, content_type, and other metadata. + +```javascript +import { Client, Events, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!embedimg') { + const embed = new EmbedBuilder() + .setTitle('Image Embed') + .setDescription('Simple image from URL.') + .setImage('https://placehold.co/400x200/5865f2/white?text=Image') + .setThumbnail('https://placehold.co/100x100/57f287/white?text=Thumb') + .setColor(0x5865f2); + + await message.reply({ embeds: [embed] }); + } +}); +``` + +## Image with Full Media Options + +Pass an object to setImage or setThumbnail with url, width, height, content_type, description, placeholder, duration, and flags. Use EmbedMediaFlags.IS_ANIMATED for animated GIFs. + +```javascript +const embed = new EmbedBuilder() + .setTitle('Image with metadata') + .setDescription('EmbedMediaOptions: width, height') + .setImage({ + url: 'https://placehold.co/400x200/5865f2/white?text=Image', + width: 400, + height: 200, + content_type: 'image/png', + }) + .setColor(0x5865f2); +``` + +## GIFs in embeds + +Embeds require GIF format for animated images (not MP4). Add EmbedMediaFlags.IS_ANIMATED to the flags field. For Tenor URLs, use resolveTenorToImageUrl() to get the GIF URL and flag — see the GIFs (Tenor) guide. + +## Video in Embeds + +Use setVideo() to add video to a rich embed. erin.js supports the .video field. Include a title when using video. Pass a URL or EmbedMediaOptions (e.g. duration for progress bars). + +```javascript +const embed = new EmbedBuilder() + .setTitle('Video embed') + .setDescription('Rich embed with video field.') + .setVideo('https://example.com/sample.mp4') + .setURL('https://example.com/sample.mp4') + .setColor(0x5865f2); + +// With full options (duration, dimensions for progress bar): +const embedWithDuration = new EmbedBuilder() + .setTitle('Video with metadata') + .setVideo({ + url: 'https://example.com/video.mp4', + duration: 120, + width: 1280, + height: 720, + }) + .setColor(0x5865f2); +``` + +## Audio in Embeds + +Use setAudio() to add audio to an embed. Pass a URL or EmbedMediaOptions (e.g. duration, content_type). + +```javascript +const embed = new EmbedBuilder() + .setTitle('Audio embed') + .setDescription('Rich embed with audio field.') + .setAudio({ + url: 'https://example.com/sample.mp3', + duration: 180, + content_type: 'audio/mpeg', + }) + .setColor(0x5865f2); +``` diff --git a/apps/docs-vitepress/v/latest/guides/embeds.md b/apps/docs-vitepress/v/latest/guides/embeds.md new file mode 100644 index 0000000..35f6ff0 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/embeds.md @@ -0,0 +1,166 @@ +# Embeds + +Complete reference for EmbedBuilder: title, description, author, footer, fields, color, media, and more. + +## Overview + +Use EmbedBuilder to create rich embeds. EmbedBuilder instances are auto-converted—no need to call .toJSON() when passing to reply(), send(), or edit(). An embed must have at least one of: title, description, fields, or image/thumbnail. A description-only embed (no title) is valid. + +## Basic embed + +Minimal embed with title, description, color, fields, footer, and timestamp. + +```javascript +import { Client, Events, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!embed') { + const embed = new EmbedBuilder() + .setTitle('Hello!') + .setDescription('This is a erin.js embed.') + .setColor(0x5865f2) + .addFields( + { name: 'Field 1', value: 'Value 1', inline: true }, + { name: 'Field 2', value: 'Value 2', inline: true } + ) + .setFooter({ text: 'Powered by erin.js' }) + .setTimestamp(); + + await message.reply({ embeds: [embed] }); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Title, Description, and URL + +setTitle() and setDescription() accept strings (max 256 and 4096 chars). setURL() makes the title a clickable link. + +```javascript +const embed = new EmbedBuilder() + .setTitle('Clickable Title') + .setDescription('Main body text here.') + .setURL('https://example.com'); +``` + +## Color + +setColor() accepts: number (0x5865f2), hex string ("#5865f2"), or [r, g, b] array. + +```javascript +embed.setColor(0x5865f2); +embed.setColor('#57f287'); +embed.setColor([88, 101, 242]); +``` + +## Author + +setAuthor() adds a header line with name. Optional: iconURL, url. + +```javascript +embed.setAuthor({ + name: 'erin.js', + iconURL: 'https://example.com/icon.png', + url: 'https://erinjs.dev', +}); +``` + +## Footer + +setFooter() adds text at the bottom. Optional: iconURL. + +```javascript +embed.setFooter({ + text: 'Powered by erin.js', + iconURL: 'https://example.com/footer-icon.png', +}); +``` + +## Timestamp + +setTimestamp() shows a date. Omit or pass null for current time. Pass Date or number (ms) for a specific time. + +```javascript +embed.setTimestamp(); // current time +embed.setTimestamp(new Date('2026-01-01')); +embed.setTimestamp(Date.now() - 3600000); // 1 hour ago +``` + +## Fields + +addFields() adds name/value pairs. Max 25 fields. Use inline: true for side-by-side layout. spliceFields() to insert/remove. + +```javascript +embed.addFields( + { name: 'Field 1', value: 'Value 1', inline: true }, + { name: 'Field 2', value: 'Value 2', inline: true }, + { name: 'Long field', value: 'Not inline, full width' } +); + +// Insert/replace fields +embed.spliceFields(1, 1, { name: 'Replaced', value: 'New value' }); +``` + +## Image and Thumbnail + +setImage() adds a large image. setThumbnail() adds a small image (e.g. top-right). Pass a URL string or EmbedMediaOptions (url, width, height, content_type, etc). + +```javascript +embed.setImage('https://example.com/image.png'); +embed.setThumbnail('https://example.com/thumb.png'); + +// With metadata +embed.setImage({ + url: 'https://example.com/image.png', + width: 400, + height: 200, + content_type: 'image/png', +}); +``` + +## Video and Audio + +setVideo() and setAudio() add video/audio to embeds (erin.js supports these). Pass URL or EmbedMediaOptions. Include a title when using video. See Embed Media guide for full examples. + +```javascript +embed.setVideo('https://example.com/video.mp4'); +embed.setAudio({ + url: 'https://example.com/audio.mp3', + duration: 120, + content_type: 'audio/mpeg', +}); +``` + +## Multiple embeds + +Messages can include up to 10 embeds. Pass an array to embeds. + +```javascript +await message.reply({ + embeds: [ + new EmbedBuilder().setTitle('First').setColor(0x5865f2), + new EmbedBuilder().setTitle('Second').setColor(0x57f287), + ], +}); +``` + +## Load from existing embed + +EmbedBuilder.from() creates a builder from an API embed (e.g. from a received message). Edit and toJSON() to send. + +```javascript +const existing = message.embeds[0]; +if (existing) { + const edited = EmbedBuilder.from(existing) + .setTitle('Updated title') + .setColor(0x57f287); + await message.edit({ embeds: [edited] }); +} +``` + +## Limits + +Title ≤256, description ≤4096, field name ≤256, field value ≤1024, footer ≤2048, author name ≤256. Max 25 fields. Combined title+description+fields+footer ≤6000 chars. diff --git a/apps/docs-vitepress/v/latest/guides/emojis.md b/apps/docs-vitepress/v/latest/guides/emojis.md new file mode 100644 index 0000000..db79aa3 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/emojis.md @@ -0,0 +1,77 @@ +# Emojis & Stickers + +Fetch, create, edit, and delete guild emojis and stickers. Use guild.fetchEmojis(), guild.createEmojisBulk(), and guild.createStickersBulk(). + +## Fetch Emojis + +Use guild.fetchEmojis() to get all emojis in a guild. Cached in guild.emojis. Use guild.fetchEmoji(emojiId) for a single emoji. Use emoji.delete() to remove an emoji (e.g. autocreated ones). + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (!message.guildId || message.content !== '!emojis') return; + const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId); + if (!guild) return; + + const emojis = await guild.fetchEmojis(); + const list = emojis.map((e) => `:${e.name}: (${e.id})`).join(', '); + await message.reply(emojis.length ? list : 'No emojis.'); + + // Or get from cache after fetching: guild.emojis.get(emojiId) +}); + +// Fetch single emoji by ID +const emoji = await guild.fetchEmoji(emojiId); +await emoji.delete(); +``` + +## Create Emojis & Stickers + +Use guild.createEmojisBulk() and guild.createStickersBulk() with base64 image data. Use emoji.edit() / emoji.delete() and sticker.edit() / sticker.delete() for individual updates. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +// Create emoji from URL (fetch and convert to base64) +async function createEmojiFromUrl(guild, name, imageUrl) { + const res = await fetch(imageUrl); + const buf = await res.arrayBuffer(); + const base64 = Buffer.from(buf).toString('base64'); + const [emoji] = await guild.createEmojisBulk([{ name, image: base64 }]); + return emoji; +} + +client.on(Events.MessageCreate, async (message) => { + if (!message.guildId || !message.content.startsWith('!addemoji ')) return; + const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId); + if (!guild) return; + + const [_, name, url] = message.content.split(/\s+/); + if (!name || !url) return; + const emoji = await createEmojiFromUrl(guild, name, url); + await message.reply(`Created emoji :${emoji.name}:`); +}); + +// Bulk create stickers +const stickers = await guild.createStickersBulk([ + { name: 'cool', image: base64Image, description: 'A cool sticker' }, +]); + +// Edit and delete +await emoji.edit({ name: 'newname' }); +await emoji.delete(); +``` + +## Quick Reference + +| API | Method | Purpose | +| --- | --- | --- | +| `Emojis` | `guild.fetchEmojis()` | Fetch all guild emojis (cached in guild.emojis) | +| `Emojis` | `guild.fetchEmoji(emojiId)` | Fetch single emoji by ID | +| `Emojis` | `guild.createEmojisBulk()` | Bulk create emojis (base64 image) | +| `Stickers` | `guild.createStickersBulk()` | Bulk create stickers | diff --git a/apps/docs-vitepress/v/latest/guides/events.md b/apps/docs-vitepress/v/latest/guides/events.md new file mode 100644 index 0000000..343847b --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/events.md @@ -0,0 +1,202 @@ +# Events + +Listen to gateway events with client.on. Handle messages, guild updates, voice state changes, and more. + +## Basic Usage + +Use client.on(Events.X, handler) to subscribe to events. Handlers receive event-specific payloads. + +::: tip +client.events.X(handler) offers the same API with chaining and better autocomplete. +::: + +::: code-group +```javascript [Default] +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.Ready, () => { + console.log('Bot is ready!'); +}); + +client.on(Events.MessageCreate, async (message) => { + console.log(message.content); +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` +```javascript [client.events] +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client + .events.Ready(() => console.log('Bot is ready!')) + .events.MessageCreate(async (message) => console.log(message.content)); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` +::: + +## Common Events + +Essential events for most bots. + +```javascript +// Bot finished loading +client.on(Events.Ready, () => {}); + +// New message (DM or guild) +client.on(Events.MessageCreate, async (message) => {}); + +// Reaction events +client.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {}); +client.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {}); + +// Guild joined/left/updated +client.on(Events.GuildCreate, (guild) => {}); +client.on(Events.GuildDelete, (guild) => {}); + +// Channel created/updated/deleted +client.on(Events.ChannelCreate, (channel) => {}); +client.on(Events.ChannelDelete, (channel) => {}); + +// Member joined/left/updated +client.on(Events.GuildMemberAdd, (member) => {}); +client.on(Events.GuildMemberRemove, (member) => {}); + +// Voice state changed (for @erinjs/voice) +client.on(Events.VoiceStateUpdate, (data) => {}); +client.on(Events.VoiceServerUpdate, (data) => {}); +``` + +## Reaction Events + +Listen for when users add or remove reactions. Handlers receive (reaction, user, messageId, channelId, emoji, userId). Use MessageReactionRemoveAll and MessageReactionRemoveEmoji for moderator actions. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => { + const emojiStr = emoji.id ? `<:${emoji.name}:${emoji.id}>` : emoji.name; + console.log(`User ${userId} reacted with ${emojiStr} on message ${messageId}`); + + // Filter for specific message (e.g. poll) or emoji + if (emoji.name === '👍') { + console.log('Someone voted yes!'); + } +}); + +client.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => { + console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`); +}); + +client.on(Events.MessageReactionRemoveAll, (data) => { + console.log(`All reactions cleared from message ${data.message_id}`); +}); + +client.on(Events.MessageReactionRemoveEmoji, (data) => { + console.log(`All ${data.emoji.name} reactions removed from message ${data.message_id}`); +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Error Handling + +```javascript +client.on(Events.Error, (err) => { + console.error('Client error:', err); +}); +``` + +## Gateway Dispatch Events Reference + +All events the erin.js gateway can send. Use GatewayDispatchEvents from @erinjs/types for type-safe checks. + +| Category | Events | +| --- | --- | +| Connection & Session | `Ready, Resumed, SessionsReplace` | +| User | `UserUpdate, UserSettingsUpdate, UserGuildSettingsUpdate, UserPinnedDmsUpdate, UserNoteUpdate, RecentMentionDelete` | +| Saved Messages & Auth | `SavedMessageCreate, SavedMessageDelete, AuthSessionChange` | +| Presence | `PresenceUpdate` | +| Guild | `GuildCreate, GuildUpdate, GuildDelete, GuildMemberAdd, GuildMemberUpdate, GuildMemberRemove, GuildMembersChunk, GuildMemberListUpdate, GuildSync` | +| Roles | `GuildRoleCreate, GuildRoleUpdate, GuildRoleUpdateBulk, GuildRoleDelete` | +| Guild Assets | `GuildEmojisUpdate, GuildStickersUpdate` | +| Moderation | `GuildBanAdd, GuildBanRemove` | +| Channels | `ChannelCreate, ChannelUpdate, ChannelUpdateBulk, ChannelDelete, ChannelRecipientAdd, ChannelRecipientRemove, ChannelPinsUpdate, ChannelPinsAck` | +| Passive | `PassiveUpdates` | +| Invites | `InviteCreate, InviteDelete` | +| Messages | `MessageCreate, MessageUpdate, MessageDelete, MessageDeleteBulk, MessageReactionAdd, MessageReactionRemove, MessageReactionRemoveAll, MessageReactionRemoveEmoji, MessageAck` | +| Typing | `TypingStart` | +| Webhooks | `WebhooksUpdate` | +| Relationships | `RelationshipAdd, RelationshipUpdate, RelationshipRemove` | +| Voice | `VoiceStateUpdate, VoiceServerUpdate` | +| Calls | `CallCreate, CallUpdate, CallDelete` | +| Favorites | `FavoriteMemeCreate, FavoriteMemeUpdate, FavoriteMemeDelete` | +| SDK / Compatibility | `InteractionCreate, GuildIntegrationsUpdate, GuildScheduledEventCreate, GuildScheduledEventUpdate, GuildScheduledEventDelete` | + +## Event Payload Reference + +Payload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from @erinjs/types. + +| Event | Payload | +| --- | --- | +| `READY` | `{ v, user, guilds, session_id, shard?, application: { id, flags } }` | +| `RESUMED` | `(no payload)` | +| `SESSIONS_REPLACE` | `Array of session objects` | +| `USER_UPDATE` | `APIUser — id, username, discriminator, global_name, avatar, etc.` | +| `GUILD_CREATE` | `APIGuild — id, name, icon, owner_id, channels[], members[], roles[], ...` | +| `GUILD_UPDATE` | `APIGuild — full guild object` | +| `GUILD_DELETE` | `{ id, unavailable? }` | +| `GUILD_MEMBER_ADD` | `APIGuildMember & { guild_id } — user, roles, nick, joined_at, ...` | +| `GUILD_MEMBER_UPDATE` | `{ guild_id, roles, user, nick?, avatar?, joined_at?, ... }` | +| `GUILD_MEMBER_REMOVE` | `{ guild_id, user }` | +| `GUILD_MEMBERS_CHUNK` | `{ guild_id, members[], chunk_index, chunk_count, presences?, nonce? }` | +| `GUILD_MEMBER_LIST_UPDATE` | `{ guild_id, id, member_count, online_count, groups[], ops[] }` | +| `GUILD_ROLE_CREATE` | `{ guild_id, role: APIRole }` | +| `GUILD_ROLE_UPDATE` | `{ guild_id, role: APIRole }` | +| `GUILD_ROLE_UPDATE_BULK` | `{ guild_id, roles: APIRole[] }` | +| `GUILD_ROLE_DELETE` | `{ guild_id, role_id }` | +| `GUILD_EMOJIS_UPDATE` | `{ guild_id, emojis: APIEmoji[] }` | +| `GUILD_STICKERS_UPDATE` | `{ guild_id, stickers: APISticker[] }` | +| `GUILD_BAN_ADD` | `{ guild_id, user, reason? }` | +| `GUILD_BAN_REMOVE` | `{ guild_id, user }` | +| `CHANNEL_CREATE` | `APIChannel — id, name, type, guild_id?, parent_id, ...` | +| `CHANNEL_UPDATE` | `APIChannel` | +| `CHANNEL_UPDATE_BULK` | `{ channels: APIChannel[] }` | +| `CHANNEL_DELETE` | `APIChannel` | +| `CHANNEL_RECIPIENT_ADD` | `{ channel_id, user }` | +| `CHANNEL_RECIPIENT_REMOVE` | `{ channel_id, user }` | +| `CHANNEL_PINS_UPDATE` | `{ channel_id, guild_id?, last_pin_timestamp? }` | +| `CHANNEL_PINS_ACK` | `{ channel_id, last_pin_timestamp? }` | +| `INVITE_CREATE` | `APIInvite — code, guild, channel, inviter?, expires_at?, ...` | +| `INVITE_DELETE` | `{ code, channel_id, guild_id? }` | +| `MESSAGE_CREATE` | `APIMessage — id, channel_id, author, content, embeds, attachments, member?, ...` | +| `MESSAGE_UPDATE` | `APIMessage — partial (edited fields)` | +| `MESSAGE_DELETE` | `{ id, channel_id, guild_id?, content?, author_id? }` | +| `MESSAGE_DELETE_BULK` | `{ ids[], channel_id, guild_id? }` | +| `MESSAGE_REACTION_ADD` | `{ message_id, channel_id, user_id, guild_id?, emoji: { id, name, animated? } }` | +| `MESSAGE_REACTION_REMOVE` | `{ message_id, channel_id, user_id, guild_id?, emoji }` | +| `MESSAGE_REACTION_REMOVE_ALL` | `{ message_id, channel_id, guild_id? }` | +| `MESSAGE_REACTION_REMOVE_EMOJI` | `{ message_id, channel_id, guild_id?, emoji }` | +| `MESSAGE_ACK` | `{ message_id, channel_id } — read receipt` | +| `TYPING_START` | `{ channel_id, user_id, timestamp, guild_id?, member? }` | +| `VOICE_STATE_UPDATE` | `{ guild_id?, channel_id, user_id, member?, session_id, deaf?, mute?, ... }` | +| `VOICE_SERVER_UPDATE` | `{ token, guild_id, endpoint, connection_id? }` | +| `WEBHOOKS_UPDATE` | `{ guild_id, channel_id }` | +| `PRESENCE_UPDATE` | `{ user: { id }, guild_id?, status?, activities?, custom_status? }` | +| `GUILD_INTEGRATIONS_UPDATE` | `{ guild_id }` | +| `GUILD_SCHEDULED_EVENT_CREATE` | `{ guild_id, id }` | +| `GUILD_SCHEDULED_EVENT_UPDATE` | `{ guild_id, id }` | +| `GUILD_SCHEDULED_EVENT_DELETE` | `{ guild_id, id }` | +| `USER_NOTE_UPDATE` | `{ id, note? }` | +| `SAVED_MESSAGE_CREATE` | `APIMessage` | +| `SAVED_MESSAGE_DELETE` | `{ id }` | +| `RELATIONSHIP_ADD / UPDATE` | `{ id, type }` | +| `RELATIONSHIP_REMOVE` | `{ id }` | +| `CALL_CREATE / UPDATE / DELETE` | `{ id, channel_id, ... }` | +| `INTERACTION_CREATE` | `APIApplicationCommandInteraction` | diff --git a/apps/docs-vitepress/v/latest/guides/gifs.md b/apps/docs-vitepress/v/latest/guides/gifs.md new file mode 100644 index 0000000..ed7afee --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/gifs.md @@ -0,0 +1,47 @@ +# GIFs (Tenor) + +Send Tenor GIFs as content (gifv) or in embeds using resolveTenorToImageUrl() for GIF URLs. + +## How Tenor GIFs Work + +Tenor embeds are created by the erin.js unfurler when you send a Tenor URL as message content. Do not use custom embeds for Tenor GIFs—the API turns the URL into a type: "gifv" embed. + +## Send a Tenor GIF + +Send the Tenor URL as content. No embeds needed. The unfurler detects the URL and creates the gifv embed. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!gif') { + const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840'; + await message.reply({ content: tenorUrl }); + } +}); +``` + +## Tenor URL in an embed + +Tenor page URLs do not work as setImage() URLs. Use resolveTenorToImageUrl() to fetch the Tenor page or oEmbed, derive the GIF URL (embeds require GIF, not MP4), and return { url, flags: IS_ANIMATED }. For full gifv embeds, send the Tenor URL as content. + +```javascript +import { EmbedBuilder, resolveTenorToImageUrl } from '@erinjs/core'; + +const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840'; +const media = await resolveTenorToImageUrl(tenorUrl); +if (media) { + const embed = new EmbedBuilder() + .setTitle('Tenor in embed') + .setDescription('GIF URL + IS_ANIMATED flag') + .setImage(media) + .setColor(0x5865f2); + await message.reply({ embeds: [embed] }); +} +``` + +## Important + +Custom embeds cannot create gifv embeds. For full animated gifv, send the Tenor URL as content. resolveTenorToImageUrl() returns GIF URL + IS_ANIMATED (derived from media.tenor.com path). diff --git a/apps/docs-vitepress/v/latest/guides/installation.md b/apps/docs-vitepress/v/latest/guides/installation.md new file mode 100644 index 0000000..9c31539 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/installation.md @@ -0,0 +1,10 @@ +# Installation + +Install the package and configure your bot token. + +```bash +npm install @erinjs/core + +# Run your bot (Node 18+) +ERIN_BOT_TOKEN=your_token node your-bot.js +``` diff --git a/apps/docs-vitepress/v/latest/guides/moderation.md b/apps/docs-vitepress/v/latest/guides/moderation.md new file mode 100644 index 0000000..e4d5296 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/moderation.md @@ -0,0 +1,89 @@ +# Moderation + +Implement ban, kick, and unban commands. Check permissions first (see Permissions guide). + +## Overview + +Use guild.ban(), guild.kick(), and guild.unban() for moderation. Always check member permissions before allowing moderation commands—see the Permissions guide. + +## Ban a member + +guild.ban(userId, options) bans a user. Pass reason for the audit log. Requires BanMembers permission. + +```javascript +const userId = parseUserMention(target); +if (userId) { + await guild.ban(userId, { reason: rest.join(' ') || undefined }); + await message.reply(`Banned <@${userId}>.`); +} +``` + +## Kick a member + +guild.kick(userId, options) kicks a user from the guild. Pass reason for the audit log. Requires KickMembers permission. + +```javascript +const userId = parseUserMention(target); +if (userId) { + await guild.kick(userId, { reason: rest.join(' ') || undefined }); + await message.reply(`Kicked <@${userId}>.`); +} +``` + +## Unban a user + +guild.unban(userId, reason?) removes a ban. Requires BanMembers permission. + +```javascript +const userId = parseUserMention(target); +if (userId) { + await guild.unban(userId, rest.join(' ') || undefined); + await message.reply(`Unbanned <@${userId}>.`); +} +``` + +## Full moderation example + +See examples/moderation-bot.js for a complete bot with !ban, !kick, !unban, and !perms commands. + +```javascript +import { Client, Events, PermissionFlags, parseUserMention } from '@erinjs/core'; + +const PREFIX = '!'; +const client = new Client({ intents: 0 }); + +async function getModeratorPerms(message) { + const guild = message.guild ?? await message.client.guilds.resolve(message.guildId); + if (!guild) return null; + const member = guild.members.get(message.author.id); + const resolved = member ?? await guild.fetchMember(message.author.id); + return resolved?.permissions ?? null; +} + +client.on(Events.MessageCreate, async (message) => { + if (message.author.bot || !message.content?.startsWith(PREFIX)) return; + const [cmd, target, ...rest] = message.content.slice(PREFIX.length).trim().split(/\s+/); + const perms = await getModeratorPerms(message); + if (!perms) return; + + const guild = message.guild ?? await message.client.guilds.resolve(message.guildId); + if (!guild) return; + + if (cmd === 'ban' && (perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator))) { + const userId = parseUserMention(target); + if (userId) { + await guild.ban(userId, { reason: rest.join(' ') || undefined }); + await message.reply(`Banned <@${userId}>.`); + } + } + if (cmd === 'kick' && (perms.has(PermissionFlags.KickMembers) || perms.has(PermissionFlags.Administrator))) { + const userId = parseUserMention(target); + if (userId) { + await guild.kick(userId, { reason: rest.join(' ') || undefined }); + await message.reply(`Kicked <@${userId}>.`); + } + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` diff --git a/apps/docs-vitepress/v/latest/guides/permissions.md b/apps/docs-vitepress/v/latest/guides/permissions.md new file mode 100644 index 0000000..a657f9c --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/permissions.md @@ -0,0 +1,130 @@ +# Permissions + +Check member permissions (guild-level and channel-specific), bot permissions via guild.members.me, owner override, and PermissionFlags. + +## Overview + +Use member.permissions for guild-level checks (roles only) and member.permissionsIn(channel) for channel-specific permissions (includes overwrites). The server owner always has all permissions. + +## Guild-level permissions + +member.permissions returns an object with has(permission). Use it for server-wide actions like ban, kick, manage roles. + +```javascript +import { Client, Events, PermissionFlags } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +async function getMemberPerms(message) { + const guild = message.guild ?? await message.client.guilds.resolve(message.guildId); + if (!guild) return null; + const member = guild.members.get(message.author.id) ?? await guild.fetchMember(message.author.id); + return member?.permissions ?? null; +} + +client.on(Events.MessageCreate, async (message) => { + const perms = await getMemberPerms(message); + if (!perms) return; + + if (perms.has(PermissionFlags.BanMembers)) { + await message.reply('You can ban members.'); + } + if (perms.has(PermissionFlags.Administrator)) { + await message.reply('You have Administrator.'); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Bot's own permissions (guild.members.me) + +::: info Discord.js Compatible +See [API reference](/v/latest/api/classes/GuildMemberManager) for full details. +::: + +Use guild.members.me to get the bot's GuildMember. Returns null if not cached. Use guild.members.fetchMe() to load it. Discord.js parity. + +```javascript +// Check if the bot can ban members in this guild +const guild = message.guild ?? await message.client.guilds.resolve(message.guildId); +const me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null); +if (me?.permissions.has(PermissionFlags.BanMembers)) { + await message.reply('I have Ban Members permission.'); +} +``` + +## Editing the bot's guild profile (nickname) + +Use guild.members.me.edit({ nick }) to change the bot's nickname in that guild. Pass nick: null to clear and show the username. Requires Change Nickname permission (or bot has Manage Nicknames). See examples/ping-bot.js for a !setnick command. + +```javascript +const guild = message.guild ?? await client.guilds.resolve(message.guildId); +const me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null); +if (me) { + await me.edit({ nick: 'My Custom Nick' }); + await message.reply('Nickname updated!'); +} +// Clear nickname (show username) +await me.edit({ nick: null }); +``` + +## Owner override + +The guild owner automatically receives all permissions regardless of roles. No need to give the owner a role with Administrator. + +```javascript +// When the message author is the server owner: +const perms = member.permissions; +perms.has(PermissionFlags.BanMembers); // true +perms.has(PermissionFlags.ManageRoles); // true +perms.has(PermissionFlags.Administrator); // true +// ... all permission flags return true for the owner +``` + +## Channel-specific permissions + +member.permissionsIn(channel) applies channel overwrites. Use it when checking if a user can send messages, read history, or connect to voice in a specific channel. + +```javascript +const channel = message.channel; +if (channel?.canSendMessage?.()) { + const perms = member.permissionsIn(channel); + if (perms.has(PermissionFlags.SendMessages)) { + await channel.send('You can send here!'); + } +} +``` + +## Managing roles + +Create, fetch, edit, and delete roles with guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Use resolvePermissionsToBitfield() for permission bitfields. See the Roles guide for full examples. + +```javascript +// Create a role with specific permissions +const role = await guild.createRole({ + name: 'Mod', + permissions: ['KickMembers', 'BanMembers', 'ManageMessages'], +}); + +// Add/remove roles from members +await guild.addRoleToMember(userId, roleId); +await guild.removeRoleFromMember(userId, roleId); +``` + +## PermissionFlags reference + +Common flags: BanMembers, KickMembers, Administrator, ManageRoles, ManageChannels, ManageGuild, ViewAuditLog, ManageMessages, SendMessages, EmbedLinks, AttachFiles, ReadMessageHistory, MentionEveryone, Connect, Speak, MuteMembers, ModerateMembers, CreateExpressions, PinMessages, BypassSlowmode. + +```javascript +import { PermissionFlags } from '@erinjs/core'; + +// Check multiple +const canModerate = perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator); + +// List all permissions the user has +const names = Object.keys(PermissionFlags).filter((name) => + perms.has(PermissionFlags[name]) +); +await message.reply(`Your permissions: ${names.join(', ')}`); +``` diff --git a/apps/docs-vitepress/v/latest/guides/prefix-commands.md b/apps/docs-vitepress/v/latest/guides/prefix-commands.md new file mode 100644 index 0000000..0f3c10d --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/prefix-commands.md @@ -0,0 +1,41 @@ +# Prefix Commands + +Handle !commands by listening to MessageCreate and parsing the content. + +## Basic Structure + +Check for a prefix, split args, and dispatch to command handlers. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const PREFIX = '!'; +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.author.bot || !message.content) return; + if (!message.content.startsWith(PREFIX)) return; + + const args = message.content.slice(PREFIX.length).trim().split(/\s+/); + const command = args.shift()?.toLowerCase(); + + if (command === 'ping') { + await message.reply('Pong!'); + } + if (command === 'hello') { + const name = args[0] ?? 'there'; + await message.reply(`Hello, ${name}!`); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Guild-Only Commands + +```javascript +if (!message.guildId) { + await message.reply('This command only works in a server.'); + return; +} +``` diff --git a/apps/docs-vitepress/v/latest/guides/profile-urls.md b/apps/docs-vitepress/v/latest/guides/profile-urls.md new file mode 100644 index 0000000..111f3de --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/profile-urls.md @@ -0,0 +1,58 @@ +# Profile URLs + +Get avatar, banner, and other CDN URLs easily with User/Webhook/GuildMember methods or standalone CDN helpers for raw API data. + +## User avatar and banner + +When you have a User object (e.g. message.author), use avatarURL(), displayAvatarURL(), and bannerURL(). These handle animated avatars (a_ prefix) and default fallbacks. + +```javascript +import { Client, Events, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!avatar') { + const user = message.author; + // avatarURL() returns null if no custom avatar; displayAvatarURL() uses default + const avatarUrl = user.displayAvatarURL({ size: 256 }); + const bannerUrl = user.bannerURL({ size: 512 }); + + const embed = new EmbedBuilder() + .setTitle(`${user.username}'s profile`) + .setThumbnail(avatarUrl) + .setColor(user.avatarColor ?? 0x5865f2); + if (bannerUrl) embed.setImage(bannerUrl); + await message.reply({ embeds: [embed] }); + } +}); +``` + +## Raw API data: CDN helpers + +When you have raw API data (e.g. from client.rest.get(Routes.user(id))), use the standalone CDN helpers. They work with id + hash and support size and extension options. + +```javascript +import { cdnAvatarURL, cdnBannerURL } from '@erinjs/core'; + +// From REST response +const userData = await client.rest.get(Routes.user(userId)); +const avatarUrl = cdnAvatarURL(userData.id, userData.avatar, { size: 256 }); +const bannerUrl = cdnBannerURL(userData.id, profile?.banner ?? null, { size: 512 }); + +// Or use User: client.getOrCreateUser(userData) then user.displayAvatarURL() +const user = client.getOrCreateUser(userData); +const avatarUrl2 = user.displayAvatarURL({ size: 256 }); +``` + +## Guild member and webhook avatars + +GuildMember has displayAvatarURL() (guild avatar or fallback to user) and bannerURL(). Webhook has avatarURL(). + +```javascript +// Member avatar (guild-specific or user fallback) +const memberAvatar = member.displayAvatarURL({ size: 128 }); + +// Webhook avatar +const webhookAvatar = webhook.avatarURL({ size: 64 }); +``` diff --git a/apps/docs-vitepress/v/latest/guides/reactions.md b/apps/docs-vitepress/v/latest/guides/reactions.md new file mode 100644 index 0000000..33a68f0 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/reactions.md @@ -0,0 +1,69 @@ +# Reactions + +Add, remove, and listen for message reactions with Message.react(), removeReaction(), and reaction events. + +## Add a Reaction + +Use message.react() to add an emoji reaction as the bot. Pass a unicode emoji string or custom emoji { name, id }. + +```javascript +const reply = await message.reply('React to this!'); +await reply.react('👍'); +await reply.react({ name: 'customemoji', id: '123456789012345678' }); +``` + +## Remove Reactions + +Remove the bot's reaction with removeReaction(emoji). Remove a specific user's reaction with removeReaction(emoji, userId). Clear all reactions with removeAllReactions() or removeReactionEmoji(emoji). + +```javascript +// Remove the bot's reaction +await message.removeReaction('👍'); + +// Remove a specific user's reaction (requires moderator permissions) +await message.removeReaction('👍', userId); + +// Remove all reactions of one emoji from the message +await message.removeReactionEmoji('👍'); + +// Remove all reactions from the message +await message.removeAllReactions(); +``` + +## Listen for Reactions + +MessageReactionAdd and MessageReactionRemove emit (reaction, user, messageId, channelId, emoji, userId). Use client.on(Events.X, handler) or client.events.MessageReactionAdd(handler). + +```javascript +client.on(Events.MessageReactionAdd, async (reaction, user, messageId, channelId, emoji, userId) => { + if (emoji.name === '👍') { + console.log(`User ${userId} voted yes on message ${messageId}`); + const message = await reaction.fetchMessage(); + if (message) await message.react('✅'); + } +}); + +client.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => { + console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`); +}); +``` + +## Reaction Roles Example + +::: info Discord.js Compatible +See [API reference](/v/latest/api/classes/GuildMemberRoleManager) for full details. +::: + +See examples/reaction-roles-bot.js for a full bot that assigns roles when users react to a message. Uses (reaction, user), Guild.fetchMember(), member.roles.add() (Discord.js parity), and guild.createRole() if you need to create roles programmatically. See the Roles guide for role CRUD. + +```javascript +// Simplified reaction-roles logic +client.on(Events.MessageReactionAdd, async (reaction, user) => { + if (!reaction.guildId || reaction.messageId !== rolesMessageId) return; + const roleId = ROLE_EMOJI_MAP[reaction.emoji.name]; + if (!roleId) return; + const guild = client.guilds.get(reaction.guildId); + const member = await guild?.fetchMember(user.id); + if (member && !member.roles.cache.has(roleId)) await member.roles.add(roleId); +}); +``` diff --git a/apps/docs-vitepress/v/latest/guides/roles.md b/apps/docs-vitepress/v/latest/guides/roles.md new file mode 100644 index 0000000..07a3da2 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/roles.md @@ -0,0 +1,130 @@ +# Roles + +Create, fetch, edit, and delete guild roles. Use PermissionFlags and resolvePermissionsToBitfield for permission bitfields. + +## Overview + +Guild roles can be created, fetched, edited, and deleted. Use guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Requires Manage Roles permission. For permission bitfields, use resolvePermissionsToBitfield() or role.has() to check a role's permissions. + +## Create a role + +Use guild.createRole() to create a new role. Pass name, permissions, color, hoist, mentionable, unicode_emoji, position, or hoist_position. Permissions accept PermissionResolvable (string, number, array) for convenience. + +```javascript +import { Client, Events, PermissionFlags, resolvePermissionsToBitfield } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!createrole' && message.guildId) { + const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId); + if (!guild) return; + + const role = await guild.createRole({ + name: 'Moderator', + permissions: ['BanMembers', 'KickMembers', 'ManageMessages'], + color: 0x5865f2, + hoist: true, + mentionable: false, + }); + await message.reply(`Created role ${role.name} (${role.id})`); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Fetch roles + +Use guild.fetchRoles() to fetch all roles from the API and cache them. Use guild.fetchRole(roleId) to fetch a single role by ID. Throws ErinError with ROLE_NOT_FOUND on 404. + +```javascript +// Fetch all roles (updates guild.roles cache) +const roles = await guild.fetchRoles(); + +// Fetch a single role by ID +const role = await guild.fetchRole(roleId); +console.log(role.name, role.color); +``` + +## Edit a role + +Use role.edit() to update a role. Pass any of name, permissions, color, hoist, mentionable, unicode_emoji, position, hoist_position. Permissions accept PermissionResolvable. + +```javascript +const role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId); +await role.edit({ + name: 'Senior Mod', + permissions: ['BanMembers', 'KickMembers', 'ManageMessages', 'ManageRoles'], + color: 0x57f287, +}); +``` + +## Delete a role + +Use role.delete() to remove a role. The role is removed from guild.roles cache. + +```javascript +const role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId); +await role.delete(); +await message.reply('Role deleted.'); +``` + +## Check role permissions + +Use role.has(permission) to check if a role has a specific permission. Administrator implies all permissions. + +```javascript +import { PermissionFlags } from '@erinjs/core'; + +if (role.has(PermissionFlags.BanMembers)) { + await message.reply('This role can ban members.'); +} +if (role.has('ManageChannels')) { + await message.reply('This role can manage channels.'); +} +``` + +## Add/remove roles from members (member.roles) + +::: info Discord.js Compatible +See [API reference](/v/latest/api/classes/GuildMemberRoleManager) for full details. +::: + +Use member.roles.add(), member.roles.remove(), and member.roles.set() for Discord.js-style role management. member.roles.cache is a Collection of Role objects. Also available: guild.addRoleToMember() and guild.removeRoleFromMember() when you only have user ID. + +```javascript +// Discord.js parity: member.roles.add(), remove(), set() +const member = await guild.fetchMember(userId); + +await member.roles.add(roleId); // Add a role +await member.roles.remove(roleId); // Remove a role +await member.roles.set(['id1', 'id2']); // Replace all roles + +// Check if member has a role +if (member.roles.cache.has(roleId)) { + await message.reply('Member already has this role.'); +} + +// Guild-level: when you only have user ID (no member fetch needed) +await guild.addRoleToMember(userId, roleId); +await guild.removeRoleFromMember(userId, roleId); +``` + +## Permission bitfields for create/edit + +When creating or editing roles, pass permissions as a string (API format), number, PermissionString, or array. Use resolvePermissionsToBitfield() to combine multiple permissions. Handles high bits (PinMessages, ModerateMembers, etc.) correctly with BigInt. + +```javascript +import { resolvePermissionsToBitfield, PermissionFlags } from '@erinjs/core'; + +// Single permission by name +resolvePermissionsToBitfield('SendMessages'); // "2048" + +// Array of permissions (OR'd together) +resolvePermissionsToBitfield(['SendMessages', 'ViewChannel', 'ReadMessageHistory']); +// Returns combined bitfield as string + +// From PermissionFlags enum +resolvePermissionsToBitfield(PermissionFlags.BanMembers); // "4" +``` diff --git a/apps/docs-vitepress/v/latest/guides/sending-without-reply.md b/apps/docs-vitepress/v/latest/guides/sending-without-reply.md new file mode 100644 index 0000000..cf9dedf --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/sending-without-reply.md @@ -0,0 +1,172 @@ +# Sending Without Reply + +Send messages to the same channel or to specific channels. Covers message.send(), message.sendTo(), client.channels.send(), and client.channels.resolve(). + +## message.send() vs message.reply() + +message.reply() sends a message that references another message (shows as a "reply" in Discord). message.send() sends to the same channel with no reference—a regular standalone message. + +## Sending to the same channel + +Use message.send() when you want to post in the channel without replying. Same signature as reply(): pass a string or object with content and/or embeds. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!hello') { + await message.send('Hello! This is a regular message, not a reply.'); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Sending to a specific channel (e.g. logging) + +Use message.sendTo(channelId, payload) to send to another channel—handy for logging, announcements, or forwarding. You only need the target channel ID. + +```javascript +import { Client, Events, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +const LOG_CHANNEL_ID = process.env.LOG_CHANNEL_ID; // Your log channel's snowflake + +client.on(Events.MessageCreate, async (message) => { + if (message.content === '!report' && message.guildId && LOG_CHANNEL_ID) { + const embed = new EmbedBuilder() + .setTitle('User report') + .setDescription(message.content) + .addFields( + { name: 'Author', value: message.author.username, inline: true }, + { name: 'Channel', value: `<#${message.channelId}>`, inline: true } + ) + .setTimestamp(); + + await message.sendTo(LOG_CHANNEL_ID, { embeds: [embed] }); + await message.send('Report logged.'); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## client.channels.send() — send by channel ID + +Use client.channels.send(channelId, payload) when you have a channel ID. Works even if the channel is not cached. No need to fetch first when you only need to send. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +const ANNOUNCE_CHANNEL_ID = process.env.ANNOUNCE_CHANNEL_ID; + +client.on(Events.Ready, async () => { + if (ANNOUNCE_CHANNEL_ID) { + await client.channels.send(ANNOUNCE_CHANNEL_ID, 'Bot is online!'); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## client.channels.resolve() — get channel by ID + +Resolve a channel by ID from cache or API. Use channel.canSendMessage() or channel.isTextBased() before sending. For sending when you only have an ID, prefer client.channels.send() which skips the fetch. + +```javascript +import { Client } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +await client.login(process.env.ERIN_BOT_TOKEN); + +// Fetch channel (from API if not cached) +const channel = await client.channels.resolve(channelId); +if (channel?.canSendMessage()) { + await channel.send('Hello!'); +} +// Or for webhooks: if (channel?.createWebhook) { ... } +``` + +## fetch message by id + +Use channel.messages.fetch(messageId) when you have the channel. For IDs-only, fetch the channel first. + +```javascript +// When you have the channel +const message = await channel.messages.fetch(messageId); +if (message) { + await message.edit({ content: 'Updated!' }); + await message.react('👍'); +} + +// When you only have IDs (e.g. from sqlite) +const ch = await client.channels.resolve(channelId); +const msg = await ch?.messages?.fetch(messageId); +if (msg) await msg.delete(); + +// When channel is cached +const m = client.channels.get(channelId); +if (m?.canSendMessage()) { + const mes = await m.messages.fetch(messageId); + if (mes) await mes.edit({ content: 'Edited!' }); +} + +// Refresh a stale message instance +const updated = await message.fetch(); +if (updated) console.log(updated.content); +``` + +## message.channel and message.channel.send() + +message.channel returns the channel (from cache); null if not cached. Messages only exist in text-based channels, so when non-null it always has send(). Use message.channel.send() for the same as message.send() but via the channel object. + +```javascript +client.on(Events.MessageCreate, async (message) => { + const channel = message.channel; // TextChannel | DMChannel | GuildChannel | null + const guild = message.guild; // Guild | null (null for DMs) + if (channel) { + await channel.send('Same channel, different API'); // or message.send() + } +}); +``` + +## channel.canSendMessage() — permission check + +Before sending, use canSendMessage() to check if the bot has ViewChannel and SendMessages. For DMs always true; for guild channels uses guild.members.me permissions. + +```javascript +const channel = await client.channels.resolve(channelId); +if (channel?.canSendMessage()) { + await channel.send('Hello!'); +} +``` + +## Typing indicator + +Use channel.sendTyping() before a slow operation so users see "Bot is typing...". Lasts ~10 seconds. + +```javascript +const channel = message.channel ?? (await message.resolveChannel()); +if (channel?.canSendMessage?.()) { + await channel.sendTyping(); + await slowOperation(); // e.g. fetch external API + await message.reply('Done!'); +} +``` + +## Quick reference + +```javascript +// Same channel, no reply +await message.send('Pong!'); + +// Reply to the message +await message.reply('Pong!'); + +// Send to a specific channel +await message.sendTo(logChannelId, 'User joined!'); +await client.channels.send(channelId, 'New update available!'); +``` diff --git a/apps/docs-vitepress/v/latest/guides/voice.md b/apps/docs-vitepress/v/latest/guides/voice.md new file mode 100644 index 0000000..1046426 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/voice.md @@ -0,0 +1,109 @@ +# Voice + +Join voice channels and play audio with @erinjs/voice. Supports WebM/Opus streams—no FFmpeg required. + +## Installation + +Add the voice package alongside the core library. + +```bash +pnpm add @erinjs/voice @erinjs/core +``` + +## Setup + +Create a VoiceManager before login so it receives VoiceStatesSync from READY/GUILD_CREATE. This lets the manager see users already in voice when the bot starts. + +```javascript +import { Client, Events, VoiceChannel } from '@erinjs/core'; +import { getVoiceManager } from '@erinjs/voice'; + +const client = new Client({ intents: 0 }); +getVoiceManager(client); // Must be before login + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## Join a Voice Channel + +Get the user's voice channel with getVoiceChannelId, then join. The connection resolves when ready. + +```javascript +const voiceManager = getVoiceManager(client); +const voiceChannelId = voiceManager.getVoiceChannelId(guildId, userId); +if (!voiceChannelId) return; // User not in voice + +const channel = client.channels.get(voiceChannelId); +if (!(channel instanceof VoiceChannel)) return; + +const connection = await voiceManager.join(channel); +``` + +## Play Audio + +Play a WebM/Opus URL or stream. The voice package does not use FFmpeg—input must be WebM with Opus. Use yt-dlp or similar to get direct stream URLs from YouTube. + +```javascript +// URL (fetched and demuxed automatically) +await connection.play('https://example.com/audio.webm'); + +// Or a Node.js ReadableStream of Opus +await connection.play(opusStream); +``` + +## Getting Stream URLs from YouTube + +Use youtube-dl-exec or yt-dlp to extract a WebM/Opus URL. + +```javascript +import youtubedl from 'youtube-dl-exec'; + +const result = await youtubedl(videoUrl, { + getUrl: true, + f: 'bestaudio[ext=webm][acodec=opus]/bestaudio[ext=webm]/bestaudio', +}, { timeout: 15000 }); + +const streamUrl = String(result ?? '').trim(); +await connection.play(streamUrl); +``` + +## Volume Control + +LiveKitRtcConnection supports setVolume(0-200) and getVolume(). 100 = normal, 50 = half, 200 = double. Affects current and future playback. + +```javascript +import { LiveKitRtcConnection } from '@erinjs/voice'; + +if (connection instanceof LiveKitRtcConnection) { + connection.setVolume(80); // 80% volume + console.log('Current volume:', connection.getVolume()); +} +``` + +## Stop and Leave + +Stop playback and disconnect. getConnection accepts channel ID or guild ID. leave(guildId) leaves all channels; leaveChannel(channelId) leaves a specific channel. + +```javascript +// By channel ID (primary) or guild ID +const connection = voiceManager.getConnection(channelId) ?? voiceManager.getConnection(guildId); +connection?.stop(); +if (connection) voiceManager.leaveChannel(connection.channel.id); +// Or leave all channels in the guild: +voiceManager.leave(guildId); +``` + +## LiveKit and serverLeave + +If using LiveKit, the server may emit serverLeave. Listen and reconnect if needed. + +```javascript +connection.on?.('serverLeave', async () => { + try { + const conn = await voiceManager.join(channel); + await conn.play(streamUrl); + } catch (e) { + console.error('Auto-reconnect failed:', e); + } +}); +``` diff --git a/apps/docs-vitepress/v/latest/guides/wait-for-guilds.md b/apps/docs-vitepress/v/latest/guides/wait-for-guilds.md new file mode 100644 index 0000000..a1cc7f7 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/wait-for-guilds.md @@ -0,0 +1,37 @@ +# Wait for All Guilds + +Delay the Ready event until all guilds have been received. Use when your bot needs the full guild cache before handling Ready. + +## Overview + +By default, Ready fires as soon as the gateway sends the READY payload. Some guilds may be sent as unavailable stubs and arrive later via GUILD_CREATE. Enable waitForGuilds if your Ready handler needs every guild to be in client.guilds before proceeding. + +## Usage + +Pass waitForGuilds: true in ClientOptions. Ready will emit only after all guilds from READY (including those marked unavailable) have been received via GUILD_CREATE. + +```javascript +import { Client, Events } from '@erinjs/core'; + +const client = new Client({ + waitForGuilds: true, +}); + +client.on(Events.Ready, () => { + // client.guilds now contains every guild — no stubs, all fully loaded + console.log(`Bot is in ${client.guilds.size} guilds`); + for (const [id, guild] of client.guilds) { + console.log(`- ${guild.name} (${guild.channels.size} channels)`); + } +}); + +await client.login(process.env.ERIN_BOT_TOKEN); +``` + +## When to use it + +Use waitForGuilds when your bot iterates over all guilds in Ready (e.g. syncing state, broadcasting announcements, or building in-memory caches). Without it, client.guilds may be incomplete at Ready time. + +::: tip +If you only need a few guilds by ID, prefer client.guilds.resolve(guildId) instead — no need to wait for all guilds. +::: diff --git a/apps/docs-vitepress/v/latest/guides/webhook-attachments-embeds.md b/apps/docs-vitepress/v/latest/guides/webhook-attachments-embeds.md new file mode 100644 index 0000000..c7aa239 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/webhook-attachments-embeds.md @@ -0,0 +1,73 @@ +# Webhook Attachments & Embeds + +Send embeds with or without a title, and attach files to webhook messages—same API as channel messages. + +## Overview + +Webhooks support rich embeds and file attachments. Embeds can have just a description (no title required), and you can attach files the same way as with channel.send or message.reply. + +## Embeds Without a Title + +You do not need a title for embeds to work. At least one of title, description, fields, or image/thumbnail is required. A description-only embed is valid. + +```javascript +import { Client, Webhook, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +const webhook = Webhook.fromToken(client, webhookId, webhookToken); + +// Description only—no title +await webhook.send({ + embeds: [ + new EmbedBuilder() + .setDescription('This embed has no title. Description-only works fine.') + .setColor(0x5865f2) + .setTimestamp(), + ], +}); +``` + +## Direct Attachments + +Attach files to webhook messages using the files array. Each file needs name and data (Blob, ArrayBuffer, or Uint8Array). Optional filename overrides the display name. + +```javascript +import { Client, Webhook } from '@erinjs/core'; +import { readFileSync } from 'fs'; + +const client = new Client({ intents: 0 }); +const webhook = Webhook.fromToken(client, webhookId, webhookToken); + +const buffer = readFileSync('report.pdf'); +await webhook.send({ + content: 'Report attached', + files: [ + { name: 'report.pdf', data: buffer }, + { name: 'log.txt', data: new TextEncoder().encode('Log content'), filename: 'log-2025.txt' }, + ], +}); +``` + +## Full Example: Embed + Files + +Combine content, description-only embed, and file attachments in a single webhook send. + +```javascript +import { Client, Webhook, EmbedBuilder } from '@erinjs/core'; +import { readFileSync } from 'fs'; + +const client = new Client({ intents: 0 }); +const webhook = Webhook.fromToken(client, webhookId, webhookToken); + +await webhook.send({ + content: 'Build completed', + embeds: [ + new EmbedBuilder() + .setDescription('Deploy succeeded. See attachment for logs.') + .setColor(0x57f287) + .setTimestamp(), + ], + files: [{ name: 'deploy.log', data: readFileSync('deploy.log') }], + username: 'CI Bot', +}); +``` diff --git a/apps/docs-vitepress/v/latest/guides/webhooks.md b/apps/docs-vitepress/v/latest/guides/webhooks.md new file mode 100644 index 0000000..7137ef5 --- /dev/null +++ b/apps/docs-vitepress/v/latest/guides/webhooks.md @@ -0,0 +1,131 @@ +# Webhooks + +A complete guide to Discord webhooks—sending messages without a gateway, creating, editing, and managing webhooks. + +## What are Webhooks? + +Webhooks let you send messages to a channel using a URL (ID + token). You can use them in scripts, CI pipelines, or anywhere you need to post without a full bot connection. No gateway, no events—just REST. + +## Webhooks Without a Bot + +A Client with intents: 0 is enough. No need to connect to the gateway or handle events. Ideal for scripts or one-off sends. + +```javascript +import { Client, Webhook } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +const webhook = Webhook.fromToken(client, webhookId, webhookToken); +await webhook.send('Message from a script!'); +``` + +## Creating a Webhook + +Create a webhook on a text channel. Requires Manage Webhooks permission. The token is returned only when creating—store it securely. It will never be returned when listing or fetching. + +```javascript +import { Client } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +await client.login(process.env.ERIN_BOT_TOKEN); + +const channel = client.channels.get(channelId); +if (!channel?.createWebhook) throw new Error('Channel does not support webhooks'); + +const webhook = await channel.createWebhook({ name: 'My Webhook' }); +console.log(webhook.id, webhook.token); // Store token—it won't be returned when listing +``` + +## Sending Messages + +Send text, embeds, or both. You can override the username and avatar for each message. + +```javascript +import { Client, Webhook, EmbedBuilder } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +const webhook = Webhook.fromToken(client, webhookId, webhookToken); + +await webhook.send({ + content: 'Hello from webhook!', + embeds: [ + new EmbedBuilder() + .setTitle('Webhook Message') + .setColor(0x5865f2) + .setTimestamp(), + ], + username: 'Custom Name', + avatar_url: 'https://example.com/avatar.png', +}); +``` + +## Simple text only + +```javascript +await webhook.send('Plain text message'); +``` + +## Embeds without a title + +Embeds can use only a description—no title required. At least one of title, description, fields, or image is needed. + +```javascript +await webhook.send({ + embeds: [ + new EmbedBuilder() + .setDescription('Description-only embed works.') + .setColor(0x5865f2), + ], +}); +``` + +## Fetching & Listing Webhooks + +Fetch by ID or list channel/guild webhooks. Requires a logged-in bot. Fetched webhooks have no token and cannot send—but you can edit or delete them with bot auth. + +```javascript +import { Client, Webhook } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +await client.login(process.env.ERIN_BOT_TOKEN); + +// Fetch single webhook (no token) +const webhook = await Webhook.fetch(client, webhookId); + +// List channel webhooks +const channel = client.channels.get(channelId); +const channelWebhooks = await channel?.fetchWebhooks() ?? []; + +// List guild webhooks +const guild = client.guilds.get(guildId); +const guildWebhooks = await guild?.fetchWebhooks() ?? []; +``` + +## Editing a Webhook + +Use webhook.edit() to change name, avatar, or (with bot auth) channel. With a token (e.g. from createWebhook or fromToken), you can update name and avatar. Without a token (fetched webhook), bot auth lets you also change the target channel. + +```javascript +import { Client, Webhook } from '@erinjs/core'; + +const client = new Client({ intents: 0 }); +await client.login(process.env.ERIN_BOT_TOKEN); + +// With token (name and avatar only) +const webhook = Webhook.fromToken(client, webhookId, webhookToken); +await webhook.edit({ name: 'New Name', avatar: null }); +// avatar: null clears the webhook avatar + +// With bot auth (fetched webhook — can also move to another channel) +const fetched = await Webhook.fetch(client, webhookId); +await fetched.edit({ + name: 'Updated Name', + channel_id: newChannelId, // move webhook to different channel +}); +``` + +## Deleting a Webhook + +```javascript +const webhook = await Webhook.fetch(client, webhookId); +await webhook.delete(); +``` diff --git a/apps/docs/index.html b/apps/docs/index.html index af1eea5..f431946 100644 --- a/apps/docs/index.html +++ b/apps/docs/index.html @@ -2,7 +2,8 @@ - + + - + content="erin.js — SDK for building bots on Fluxer. Get started with guides, API docs, and examples." /> + + content="erin.js — SDK for building bots on Fluxer. Get started with guides, API docs, and examples." /> + - Fluxer.js Documentation + erin.js Documentation
diff --git a/apps/docs/package.json b/apps/docs/package.json index a299132..44f51b2 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -1,5 +1,5 @@ { - "name": "@fluxerjs/docs", + "name": "@erinjs/docs", "version": "1.2.4", "private": true, "license": "Apache-2.0", diff --git a/apps/docs/public/@flux.png b/apps/docs/public/@flux.png new file mode 100644 index 0000000..a849c06 Binary files /dev/null and b/apps/docs/public/@flux.png differ diff --git a/apps/docs/public/docs/latest/guides.json b/apps/docs/public/docs/latest/guides.json index c01a8ba..23819d9 100644 --- a/apps/docs/public/docs/latest/guides.json +++ b/apps/docs/public/docs/latest/guides.json @@ -7,7 +7,7 @@ "category": "getting-started", "sections": [ { - "code": "npm install @fluxerjs/core\n\n# Run your bot (Node 18+)\nFLUXER_BOT_TOKEN=your_token node your-bot.js", + "code": "npm install /core\n\n# Run your bot (Node 18+)\nFLUXER_BOT_TOKEN=your_token node your-bot.js", "language": "bash" } ] @@ -20,12 +20,12 @@ "category": "getting-started", "sections": [ { - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => console.log('Ready!'));\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!ping') {\n await message.reply('Pong!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => console.log('Ready!'));\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!ping') {\n await message.reply('Pong!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript", "tip": "You can also use client.events for chainable, typed handlers with better autocomplete.", "alternateCode": { "label": "client.events", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient\n .events.Ready(() => console.log('Ready!'))\n .events.MessageCreate(async (message) => {\n if (message.content === '!ping') await message.reply('Pong!');\n });\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);" + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient\n .events.Ready(() => console.log('Ready!'))\n .events.MessageCreate(async (message) => {\n if (message.content === '!ping') await message.reply('Pong!');\n });\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);" } }, { @@ -81,25 +81,25 @@ { "title": "Sending to the same channel", "description": "Use message.send() when you want to post in the channel without replying. Same signature as reply(): pass a string or object with content and/or embeds.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!hello') {\n await message.send('Hello! This is a regular message, not a reply.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!hello') {\n await message.send('Hello! This is a regular message, not a reply.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { "title": "Sending to a specific channel (e.g. logging)", "description": "Use message.sendTo(channelId, payload) to send to another channel—handy for logging, announcements, or forwarding. You only need the target channel ID.", - "code": "import { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst LOG_CHANNEL_ID = process.env.LOG_CHANNEL_ID; // Your log channel's snowflake\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!report' && message.guildId && LOG_CHANNEL_ID) {\n const embed = new EmbedBuilder()\n .setTitle('User report')\n .setDescription(message.content)\n .addFields(\n { name: 'Author', value: message.author.username, inline: true },\n { name: 'Channel', value: `<#${message.channelId}>`, inline: true }\n )\n .setTimestamp();\n\n await message.sendTo(LOG_CHANNEL_ID, { embeds: [embed] });\n await message.send('Report logged.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst LOG_CHANNEL_ID = process.env.LOG_CHANNEL_ID; // Your log channel's snowflake\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!report' && message.guildId && LOG_CHANNEL_ID) {\n const embed = new EmbedBuilder()\n .setTitle('User report')\n .setDescription(message.content)\n .addFields(\n { name: 'Author', value: message.author.username, inline: true },\n { name: 'Channel', value: `<#${message.channelId}>`, inline: true }\n )\n .setTimestamp();\n\n await message.sendTo(LOG_CHANNEL_ID, { embeds: [embed] });\n await message.send('Report logged.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { "title": "client.channels.send() — send by channel ID", "description": "Use client.channels.send(channelId, payload) when you have a channel ID. Works even if the channel is not cached. No need to fetch first when you only need to send.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst ANNOUNCE_CHANNEL_ID = process.env.ANNOUNCE_CHANNEL_ID;\n\nclient.on(Events.Ready, async () => {\n if (ANNOUNCE_CHANNEL_ID) {\n await client.channels.send(ANNOUNCE_CHANNEL_ID, 'Bot is online!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst ANNOUNCE_CHANNEL_ID = process.env.ANNOUNCE_CHANNEL_ID;\n\nclient.on(Events.Ready, async () => {\n if (ANNOUNCE_CHANNEL_ID) {\n await client.channels.send(ANNOUNCE_CHANNEL_ID, 'Bot is online!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { "title": "client.channels.resolve() — get channel by ID", "description": "Resolve a channel by ID from cache or API. Use channel.canSendMessage() or channel.isTextBased() before sending. For sending when you only have an ID, prefer client.channels.send() which skips the fetch.", - "code": "import { Client } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch channel (from API if not cached)\nconst channel = await client.channels.resolve(channelId);\nif (channel?.canSendMessage()) {\n await channel.send('Hello!');\n}\n// Or for webhooks: if (channel?.createWebhook) { ... }", + "code": "import { Client } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch channel (from API if not cached)\nconst channel = await client.channels.resolve(channelId);\nif (channel?.canSendMessage()) {\n await channel.send('Hello!');\n}\n// Or for webhooks: if (channel?.createWebhook) { ... }", "language": "javascript" }, { @@ -147,7 +147,7 @@ { "title": "Basic embed", "description": "Minimal embed with title, description, color, fields, footer, and timestamp.", - "code": "import { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embed') {\n const embed = new EmbedBuilder()\n .setTitle('Hello!')\n .setDescription('This is a Fluxer embed.')\n .setColor(0x5865f2)\n .addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true }\n )\n .setFooter({ text: 'Powered by Fluxer.js' })\n .setTimestamp();\n\n await message.reply({ embeds: [embed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embed') {\n const embed = new EmbedBuilder()\n .setTitle('Hello!')\n .setDescription('This is a Fluxer embed.')\n .setColor(0x5865f2)\n .addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true }\n )\n .setFooter({ text: 'Powered by Fluxer.js' })\n .setTimestamp();\n\n await message.reply({ embeds: [embed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -236,7 +236,7 @@ { "title": "Edit Embeds", "description": "Replace or update embeds on an existing message. Pass an array of EmbedBuilder instances or APIEmbed objects.", - "code": "import { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!editembed') {\n const embed = new EmbedBuilder()\n .setTitle('Loading...')\n .setColor(0x5865f2)\n .setTimestamp();\n\n const reply = await message.reply({ embeds: [embed] });\n\n // Simulate loading, then update the embed\n await new Promise((r) => setTimeout(r, 2000));\n\n const updatedEmbed = new EmbedBuilder()\n .setTitle('Done!')\n .setDescription('This embed was edited after 2 seconds.')\n .setColor(0x57f287)\n .setTimestamp();\n\n await reply.edit({ embeds: [updatedEmbed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!editembed') {\n const embed = new EmbedBuilder()\n .setTitle('Loading...')\n .setColor(0x5865f2)\n .setTimestamp();\n\n const reply = await message.reply({ embeds: [embed] });\n\n // Simulate loading, then update the embed\n await new Promise((r) => setTimeout(r, 2000));\n\n const updatedEmbed = new EmbedBuilder()\n .setTitle('Done!')\n .setDescription('This embed was edited after 2 seconds.')\n .setColor(0x57f287)\n .setTimestamp();\n\n await reply.edit({ embeds: [updatedEmbed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -261,7 +261,7 @@ { "title": "Images and Thumbnails", "description": "Use setImage() and setThumbnail() with a URL string, or pass full EmbedMediaOptions for width, height, content_type, and other metadata.", - "code": "import { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embedimg') {\n const embed = new EmbedBuilder()\n .setTitle('Image Embed')\n .setDescription('Simple image from URL.')\n .setImage('https://placehold.co/400x200/5865f2/white?text=Image')\n .setThumbnail('https://placehold.co/100x100/57f287/white?text=Thumb')\n .setColor(0x5865f2);\n\n await message.reply({ embeds: [embed] });\n }\n});", + "code": "import { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embedimg') {\n const embed = new EmbedBuilder()\n .setTitle('Image Embed')\n .setDescription('Simple image from URL.')\n .setImage('https://placehold.co/400x200/5865f2/white?text=Image')\n .setThumbnail('https://placehold.co/100x100/57f287/white?text=Thumb')\n .setColor(0x5865f2);\n\n await message.reply({ embeds: [embed] });\n }\n});", "language": "javascript" }, { @@ -302,13 +302,13 @@ { "title": "Send a Tenor GIF", "description": "Send the Tenor URL as content. No embeds needed. The unfurler detects the URL and creates the gifv embed.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!gif') {\n const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\n await message.reply({ content: tenorUrl });\n }\n});", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!gif') {\n const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\n await message.reply({ content: tenorUrl });\n }\n});", "language": "javascript" }, { "title": "Tenor URL in an embed", "description": "Tenor page URLs do not work as setImage() URLs. Use resolveTenorToImageUrl() to fetch the Tenor page or oEmbed, derive the GIF URL (embeds require GIF, not MP4), and return { url, flags: IS_ANIMATED }. For full gifv embeds, send the Tenor URL as content.", - "code": "import { EmbedBuilder, resolveTenorToImageUrl } from '@fluxerjs/core';\n\nconst tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\nconst media = await resolveTenorToImageUrl(tenorUrl);\nif (media) {\n const embed = new EmbedBuilder()\n .setTitle('Tenor in embed')\n .setDescription('GIF URL + IS_ANIMATED flag')\n .setImage(media)\n .setColor(0x5865f2);\n await message.reply({ embeds: [embed] });\n}", + "code": "import { EmbedBuilder, resolveTenorToImageUrl } from '/core';\n\nconst tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\nconst media = await resolveTenorToImageUrl(tenorUrl);\nif (media) {\n const embed = new EmbedBuilder()\n .setTitle('Tenor in embed')\n .setDescription('GIF URL + IS_ANIMATED flag')\n .setImage(media)\n .setColor(0x5865f2);\n await message.reply({ embeds: [embed] });\n}", "language": "javascript" }, { @@ -327,19 +327,19 @@ { "title": "Basic File Upload", "description": "Pass files in your send options. Each file needs a name and data (Buffer, Blob, Uint8Array). Use with message.reply(), message.send(), or channel.send().", - "code": "import { Client, Events } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!file') {\n const data = Buffer.from('Hello from Fluxer!', 'utf-8');\n await message.reply({\n content: 'Here is a file:',\n files: [{ name: 'hello.txt', data }],\n });\n }\n});", + "code": "import { Client, Events } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!file') {\n const data = Buffer.from('Hello from Fluxer!', 'utf-8');\n await message.reply({\n content: 'Here is a file:',\n files: [{ name: 'hello.txt', data }],\n });\n }\n});", "language": "javascript" }, { "title": "Attachment Metadata", "description": "When using files, you can pass attachments to set metadata per file: filename, title, description, and flags. The id in each attachment matches the file index (0, 1, 2...).", - "code": "import { MessageAttachmentFlags } from '@fluxerjs/core';\n\nawait message.reply({\n content: 'Spoiler image:',\n files: [{ name: 'secret.png', data: imageBuffer }],\n attachments: [\n {\n id: 0,\n filename: 'secret.png',\n title: 'Hidden image',\n flags: MessageAttachmentFlags.IS_SPOILER,\n },\n ],\n});", + "code": "import { MessageAttachmentFlags } from '/core';\n\nawait message.reply({\n content: 'Spoiler image:',\n files: [{ name: 'secret.png', data: imageBuffer }],\n attachments: [\n {\n id: 0,\n filename: 'secret.png',\n title: 'Hidden image',\n flags: MessageAttachmentFlags.IS_SPOILER,\n },\n ],\n});", "language": "javascript" }, { "title": "Attachment Flags", "description": "MessageAttachmentFlags: IS_SPOILER (8) blurs until clicked, CONTAINS_EXPLICIT_MEDIA (16) for explicit content, IS_ANIMATED (32) for GIFs and animated WebP. Combine with bitwise OR.", - "code": "import { MessageAttachmentFlags } from '@fluxerjs/core';\n\n// Spoiler (blurred until clicked)\nflags: MessageAttachmentFlags.IS_SPOILER\n\n// Animated image (GIF, animated WebP)\nflags: MessageAttachmentFlags.IS_ANIMATED\n\n// Combine flags\nflags: MessageAttachmentFlags.IS_SPOILER | MessageAttachmentFlags.IS_ANIMATED", + "code": "import { MessageAttachmentFlags } from '/core';\n\n// Spoiler (blurred until clicked)\nflags: MessageAttachmentFlags.IS_SPOILER\n\n// Animated image (GIF, animated WebP)\nflags: MessageAttachmentFlags.IS_ANIMATED\n\n// Combine flags\nflags: MessageAttachmentFlags.IS_SPOILER | MessageAttachmentFlags.IS_ANIMATED", "language": "javascript" } ] @@ -354,7 +354,7 @@ { "title": "Using a URL", "description": "Pass { name, url } in the files array. The SDK fetches the URL (30s timeout), validates it with URL.canParse(), and uploads the result. Works with channel.send(), message.reply(), message.send(), webhook.send(), and client.channels.send().", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!attachurl') {\n await message.reply({\n content: 'Image from URL:',\n files: [\n {\n name: 'image.png',\n url: 'https://example.com/image.png',\n },\n ],\n });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!attachurl') {\n await message.reply({\n content: 'Image from URL:',\n files: [\n {\n name: 'image.png',\n url: 'https://example.com/image.png',\n },\n ],\n });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -381,13 +381,13 @@ { "title": "User avatar and banner", "description": "When you have a User object (e.g. message.author), use avatarURL(), displayAvatarURL(), and bannerURL(). These handle animated avatars (a_ prefix) and default fallbacks.", - "code": "import { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!avatar') {\n const user = message.author;\n // avatarURL() returns null if no custom avatar; displayAvatarURL() uses default\n const avatarUrl = user.displayAvatarURL({ size: 256 });\n const bannerUrl = user.bannerURL({ size: 512 });\n\n const embed = new EmbedBuilder()\n .setTitle(`${user.username}'s profile`)\n .setThumbnail(avatarUrl)\n .setColor(user.avatarColor ?? 0x5865f2);\n if (bannerUrl) embed.setImage(bannerUrl);\n await message.reply({ embeds: [embed] });\n }\n});", + "code": "import { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!avatar') {\n const user = message.author;\n // avatarURL() returns null if no custom avatar; displayAvatarURL() uses default\n const avatarUrl = user.displayAvatarURL({ size: 256 });\n const bannerUrl = user.bannerURL({ size: 512 });\n\n const embed = new EmbedBuilder()\n .setTitle(`${user.username}'s profile`)\n .setThumbnail(avatarUrl)\n .setColor(user.avatarColor ?? 0x5865f2);\n if (bannerUrl) embed.setImage(bannerUrl);\n await message.reply({ embeds: [embed] });\n }\n});", "language": "javascript" }, { "title": "Raw API data: CDN helpers", "description": "When you have raw API data (e.g. from client.rest.get(Routes.user(id))), use the standalone CDN helpers. They work with id + hash and support size and extension options.", - "code": "import { cdnAvatarURL, cdnBannerURL } from '@fluxerjs/core';\n\n// From REST response\nconst userData = await client.rest.get(Routes.user(userId));\nconst avatarUrl = cdnAvatarURL(userData.id, userData.avatar, { size: 256 });\nconst bannerUrl = cdnBannerURL(userData.id, profile?.banner ?? null, { size: 512 });\n\n// Or use User: client.getOrCreateUser(userData) then user.displayAvatarURL()\nconst user = client.getOrCreateUser(userData);\nconst avatarUrl2 = user.displayAvatarURL({ size: 256 });", + "code": "import { cdnAvatarURL, cdnBannerURL } from '/core';\n\n// From REST response\nconst userData = await client.rest.get(Routes.user(userId));\nconst avatarUrl = cdnAvatarURL(userData.id, userData.avatar, { size: 256 });\nconst bannerUrl = cdnBannerURL(userData.id, profile?.banner ?? null, { size: 512 });\n\n// Or use User: client.getOrCreateUser(userData) then user.displayAvatarURL()\nconst user = client.getOrCreateUser(userData);\nconst avatarUrl2 = user.displayAvatarURL({ size: 256 });", "language": "javascript" }, { @@ -446,19 +446,19 @@ { "title": "Webhooks Without a Bot", "description": "A Client with intents: 0 is enough. No need to connect to the gateway or handle events. Ideal for scripts or one-off sends.", - "code": "import { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.send('Message from a script!');", + "code": "import { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.send('Message from a script!');", "language": "javascript" }, { "title": "Creating a Webhook", "description": "Create a webhook on a text channel. Requires Manage Webhooks permission. The token is returned only when creating—store it securely. It will never be returned when listing or fetching.", - "code": "import { Client } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\nconst channel = client.channels.get(channelId);\nif (!channel?.createWebhook) throw new Error('Channel does not support webhooks');\n\nconst webhook = await channel.createWebhook({ name: 'My Webhook' });\nconsole.log(webhook.id, webhook.token); // Store token—it won't be returned when listing", + "code": "import { Client } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\nconst channel = client.channels.get(channelId);\nif (!channel?.createWebhook) throw new Error('Channel does not support webhooks');\n\nconst webhook = await channel.createWebhook({ name: 'My Webhook' });\nconsole.log(webhook.id, webhook.token); // Store token—it won't be returned when listing", "language": "javascript" }, { "title": "Sending Messages", "description": "Send text, embeds, or both. You can override the username and avatar for each message.", - "code": "import { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Hello from webhook!',\n embeds: [\n new EmbedBuilder()\n .setTitle('Webhook Message')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n username: 'Custom Name',\n avatar_url: 'https://example.com/avatar.png',\n});", + "code": "import { Client, Webhook, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Hello from webhook!',\n embeds: [\n new EmbedBuilder()\n .setTitle('Webhook Message')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n username: 'Custom Name',\n avatar_url: 'https://example.com/avatar.png',\n});", "language": "javascript" }, { @@ -475,13 +475,13 @@ { "title": "Fetching & Listing Webhooks", "description": "Fetch by ID or list channel/guild webhooks. Requires a logged-in bot. Fetched webhooks have no token and cannot send—but you can edit or delete them with bot auth.", - "code": "import { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch single webhook (no token)\nconst webhook = await Webhook.fetch(client, webhookId);\n\n// List channel webhooks\nconst channel = client.channels.get(channelId);\nconst channelWebhooks = await channel?.fetchWebhooks() ?? [];\n\n// List guild webhooks\nconst guild = client.guilds.get(guildId);\nconst guildWebhooks = await guild?.fetchWebhooks() ?? [];", + "code": "import { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch single webhook (no token)\nconst webhook = await Webhook.fetch(client, webhookId);\n\n// List channel webhooks\nconst channel = client.channels.get(channelId);\nconst channelWebhooks = await channel?.fetchWebhooks() ?? [];\n\n// List guild webhooks\nconst guild = client.guilds.get(guildId);\nconst guildWebhooks = await guild?.fetchWebhooks() ?? [];", "language": "javascript" }, { "title": "Editing a Webhook", "description": "Use webhook.edit() to change name, avatar, or (with bot auth) channel. With a token (e.g. from createWebhook or fromToken), you can update name and avatar. Without a token (fetched webhook), bot auth lets you also change the target channel.", - "code": "import { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// With token (name and avatar only)\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.edit({ name: 'New Name', avatar: null });\n// avatar: null clears the webhook avatar\n\n// With bot auth (fetched webhook — can also move to another channel)\nconst fetched = await Webhook.fetch(client, webhookId);\nawait fetched.edit({\n name: 'Updated Name',\n channel_id: newChannelId, // move webhook to different channel\n});", + "code": "import { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// With token (name and avatar only)\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.edit({ name: 'New Name', avatar: null });\n// avatar: null clears the webhook avatar\n\n// With bot auth (fetched webhook — can also move to another channel)\nconst fetched = await Webhook.fetch(client, webhookId);\nawait fetched.edit({\n name: 'Updated Name',\n channel_id: newChannelId, // move webhook to different channel\n});", "language": "javascript" }, { @@ -505,19 +505,19 @@ { "title": "Embeds Without a Title", "description": "You do not need a title for embeds to work. At least one of title, description, fields, or image/thumbnail is required. A description-only embed is valid.", - "code": "import { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\n// Description only—no title\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('This embed has no title. Description-only works fine.')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n});", + "code": "import { Client, Webhook, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\n// Description only—no title\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('This embed has no title. Description-only works fine.')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n});", "language": "javascript" }, { "title": "Direct Attachments", "description": "Attach files to webhook messages using the files array. Each file needs name and data (Blob, ArrayBuffer, or Uint8Array). Optional filename overrides the display name.", - "code": "import { Client, Webhook } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nconst buffer = readFileSync('report.pdf');\nawait webhook.send({\n content: 'Report attached',\n files: [\n { name: 'report.pdf', data: buffer },\n { name: 'log.txt', data: new TextEncoder().encode('Log content'), filename: 'log-2025.txt' },\n ],\n});", + "code": "import { Client, Webhook } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nconst buffer = readFileSync('report.pdf');\nawait webhook.send({\n content: 'Report attached',\n files: [\n { name: 'report.pdf', data: buffer },\n { name: 'log.txt', data: new TextEncoder().encode('Log content'), filename: 'log-2025.txt' },\n ],\n});", "language": "javascript" }, { "title": "Full Example: Embed + Files", "description": "Combine content, description-only embed, and file attachments in a single webhook send.", - "code": "import { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Build completed',\n embeds: [\n new EmbedBuilder()\n .setDescription('Deploy succeeded. See attachment for logs.')\n .setColor(0x57f287)\n .setTimestamp(),\n ],\n files: [{ name: 'deploy.log', data: readFileSync('deploy.log') }],\n username: 'CI Bot',\n});", + "code": "import { Client, Webhook, EmbedBuilder } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Build completed',\n embeds: [\n new EmbedBuilder()\n .setDescription('Deploy succeeded. See attachment for logs.')\n .setColor(0x57f287)\n .setTimestamp(),\n ],\n files: [{ name: 'deploy.log', data: readFileSync('deploy.log') }],\n username: 'CI Bot',\n});", "language": "javascript" } ] @@ -526,19 +526,19 @@ "id": "voice", "slug": "voice", "title": "Voice", - "description": "Join voice channels and play audio with @fluxerjs/voice. Supports WebM/Opus streams—no FFmpeg required.", + "description": "Join voice channels and play audio with /voice. Supports WebM/Opus streams—no FFmpeg required.", "category": "voice", "sections": [ { "title": "Installation", "description": "Add the voice package alongside the core library.", - "code": "pnpm add @fluxerjs/voice @fluxerjs/core", + "code": "pnpm add /voice /core", "language": "bash" }, { "title": "Setup", "description": "Create a VoiceManager before login so it receives VoiceStatesSync from READY/GUILD_CREATE. This lets the manager see users already in voice when the bot starts.", - "code": "import { Client, Events, VoiceChannel } from '@fluxerjs/core';\nimport { getVoiceManager } from '@fluxerjs/voice';\n\nconst client = new Client({ intents: 0 });\ngetVoiceManager(client); // Must be before login\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, VoiceChannel } from '/core';\nimport { getVoiceManager } from '/voice';\n\nconst client = new Client({ intents: 0 });\ngetVoiceManager(client); // Must be before login\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -562,7 +562,7 @@ { "title": "Volume Control", "description": "LiveKitRtcConnection supports setVolume(0-200) and getVolume(). 100 = normal, 50 = half, 200 = double. Affects current and future playback.", - "code": "import { LiveKitRtcConnection } from '@fluxerjs/voice';\n\nif (connection instanceof LiveKitRtcConnection) {\n connection.setVolume(80); // 80% volume\n console.log('Current volume:', connection.getVolume());\n}", + "code": "import { LiveKitRtcConnection } from '/voice';\n\nif (connection instanceof LiveKitRtcConnection) {\n connection.setVolume(80); // 80% volume\n console.log('Current volume:', connection.getVolume());\n}", "language": "javascript" }, { @@ -593,7 +593,7 @@ { "title": "Usage", "description": "Pass waitForGuilds: true in ClientOptions. Ready will emit only after all guilds from READY (including those marked unavailable) have been received via GUILD_CREATE.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({\n waitForGuilds: true,\n});\n\nclient.on(Events.Ready, () => {\n // client.guilds now contains every guild — no stubs, all fully loaded\n console.log(`Bot is in ${client.guilds.size} guilds`);\n for (const [id, guild] of client.guilds) {\n console.log(`- ${guild.name} (${guild.channels.size} channels)`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({\n waitForGuilds: true,\n});\n\nclient.on(Events.Ready, () => {\n // client.guilds now contains every guild — no stubs, all fully loaded\n console.log(`Bot is in ${client.guilds.size} guilds`);\n for (const [id, guild] of client.guilds) {\n console.log(`- ${guild.name} (${guild.channels.size} channels)`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -613,24 +613,24 @@ { "title": "Basic Usage", "description": "Use client.on(Events.X, handler) to subscribe to events. Handlers receive event-specific payloads.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => {\n console.log('Bot is ready!');\n});\n\nclient.on(Events.MessageCreate, async (message) => {\n console.log(message.content);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => {\n console.log('Bot is ready!');\n});\n\nclient.on(Events.MessageCreate, async (message) => {\n console.log(message.content);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript", "tip": "client.events.X(handler) offers the same API with chaining and better autocomplete.", "alternateCode": { "label": "client.events", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient\n .events.Ready(() => console.log('Bot is ready!'))\n .events.MessageCreate(async (message) => console.log(message.content));\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);" + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient\n .events.Ready(() => console.log('Bot is ready!'))\n .events.MessageCreate(async (message) => console.log(message.content));\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);" } }, { "title": "Common Events", "description": "Essential events for most bots.", - "code": "// Bot finished loading\nclient.on(Events.Ready, () => {});\n\n// New message (DM or guild)\nclient.on(Events.MessageCreate, async (message) => {});\n\n// Reaction events\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {});\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {});\n\n// Guild joined/left/updated\nclient.on(Events.GuildCreate, (guild) => {});\nclient.on(Events.GuildDelete, (guild) => {});\n\n// Channel created/updated/deleted\nclient.on(Events.ChannelCreate, (channel) => {});\nclient.on(Events.ChannelDelete, (channel) => {});\n\n// Member joined/left/updated\nclient.on(Events.GuildMemberAdd, (member) => {});\nclient.on(Events.GuildMemberRemove, (member) => {});\n\n// Voice state changed (for @fluxerjs/voice)\nclient.on(Events.VoiceStateUpdate, (data) => {});\nclient.on(Events.VoiceServerUpdate, (data) => {});", + "code": "// Bot finished loading\nclient.on(Events.Ready, () => {});\n\n// New message (DM or guild)\nclient.on(Events.MessageCreate, async (message) => {});\n\n// Reaction events\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {});\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {});\n\n// Guild joined/left/updated\nclient.on(Events.GuildCreate, (guild) => {});\nclient.on(Events.GuildDelete, (guild) => {});\n\n// Channel created/updated/deleted\nclient.on(Events.ChannelCreate, (channel) => {});\nclient.on(Events.ChannelDelete, (channel) => {});\n\n// Member joined/left/updated\nclient.on(Events.GuildMemberAdd, (member) => {});\nclient.on(Events.GuildMemberRemove, (member) => {});\n\n// Voice state changed (for /voice)\nclient.on(Events.VoiceStateUpdate, (data) => {});\nclient.on(Events.VoiceServerUpdate, (data) => {});", "language": "javascript" }, { "title": "Reaction Events", "description": "Listen for when users add or remove reactions. Handlers receive (reaction, user, messageId, channelId, emoji, userId). Use MessageReactionRemoveAll and MessageReactionRemoveEmoji for moderator actions.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {\n const emojiStr = emoji.id ? `<:${emoji.name}:${emoji.id}>` : emoji.name;\n console.log(`User ${userId} reacted with ${emojiStr} on message ${messageId}`);\n\n // Filter for specific message (e.g. poll) or emoji\n if (emoji.name === '👍') {\n console.log('Someone voted yes!');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n\nclient.on(Events.MessageReactionRemoveAll, (data) => {\n console.log(`All reactions cleared from message ${data.message_id}`);\n});\n\nclient.on(Events.MessageReactionRemoveEmoji, (data) => {\n console.log(`All ${data.emoji.name} reactions removed from message ${data.message_id}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {\n const emojiStr = emoji.id ? `<:${emoji.name}:${emoji.id}>` : emoji.name;\n console.log(`User ${userId} reacted with ${emojiStr} on message ${messageId}`);\n\n // Filter for specific message (e.g. poll) or emoji\n if (emoji.name === '👍') {\n console.log('Someone voted yes!');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n\nclient.on(Events.MessageReactionRemoveAll, (data) => {\n console.log(`All reactions cleared from message ${data.message_id}`);\n});\n\nclient.on(Events.MessageReactionRemoveEmoji, (data) => {\n console.log(`All ${data.emoji.name} reactions removed from message ${data.message_id}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -640,7 +640,7 @@ }, { "title": "Gateway Dispatch Events Reference", - "description": "All events the Fluxer gateway can send. Use GatewayDispatchEvents from @fluxerjs/types for type-safe checks.", + "description": "All events the Fluxer gateway can send. Use GatewayDispatchEvents from /types for type-safe checks.", "table": { "headers": [ "Category", @@ -731,7 +731,7 @@ }, { "title": "Event Payload Reference", - "description": "Payload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from @fluxerjs/types.", + "description": "Payload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from /types.", "table": { "headers": [ "Event", @@ -1078,7 +1078,7 @@ { "title": "Guild-level permissions", "description": "member.permissions returns an object with has(permission). Use it for server-wide actions like ban, kick, manage roles.", - "code": "import { Client, Events, PermissionFlags } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nasync function getMemberPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id) ?? await guild.fetchMember(message.author.id);\n return member?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n const perms = await getMemberPerms(message);\n if (!perms) return;\n\n if (perms.has(PermissionFlags.BanMembers)) {\n await message.reply('You can ban members.');\n }\n if (perms.has(PermissionFlags.Administrator)) {\n await message.reply('You have Administrator.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, PermissionFlags } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nasync function getMemberPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id) ?? await guild.fetchMember(message.author.id);\n return member?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n const perms = await getMemberPerms(message);\n if (!perms) return;\n\n if (perms.has(PermissionFlags.BanMembers)) {\n await message.reply('You can ban members.');\n }\n if (perms.has(PermissionFlags.Administrator)) {\n await message.reply('You have Administrator.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -1115,7 +1115,7 @@ { "title": "PermissionFlags reference", "description": "Common flags: BanMembers, KickMembers, Administrator, ManageRoles, ManageChannels, ManageGuild, ViewAuditLog, ManageMessages, SendMessages, EmbedLinks, AttachFiles, ReadMessageHistory, MentionEveryone, Connect, Speak, MuteMembers, ModerateMembers, CreateExpressions, PinMessages, BypassSlowmode.", - "code": "import { PermissionFlags } from '@fluxerjs/core';\n\n// Check multiple\nconst canModerate = perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator);\n\n// List all permissions the user has\nconst names = Object.keys(PermissionFlags).filter((name) =>\n perms.has(PermissionFlags[name])\n);\nawait message.reply(`Your permissions: ${names.join(', ')}`);", + "code": "import { PermissionFlags } from '/core';\n\n// Check multiple\nconst canModerate = perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator);\n\n// List all permissions the user has\nconst names = Object.keys(PermissionFlags).filter((name) =>\n perms.has(PermissionFlags[name])\n);\nawait message.reply(`Your permissions: ${names.join(', ')}`);", "language": "javascript" } ] @@ -1152,7 +1152,7 @@ { "title": "Full moderation example", "description": "See examples/moderation-bot.js for a complete bot with !ban, !kick, !unban, and !perms commands.", - "code": "import { Client, Events, PermissionFlags, parseUserMention } from '@fluxerjs/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nasync function getModeratorPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id);\n const resolved = member ?? await guild.fetchMember(message.author.id);\n return resolved?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content?.startsWith(PREFIX)) return;\n const [cmd, target, ...rest] = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const perms = await getModeratorPerms(message);\n if (!perms) return;\n\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n if (cmd === 'ban' && (perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n }\n }\n if (cmd === 'kick' && (perms.has(PermissionFlags.KickMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, PermissionFlags, parseUserMention } from '/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nasync function getModeratorPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id);\n const resolved = member ?? await guild.fetchMember(message.author.id);\n return resolved?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content?.startsWith(PREFIX)) return;\n const [cmd, target, ...rest] = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const perms = await getModeratorPerms(message);\n if (!perms) return;\n\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n if (cmd === 'ban' && (perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n }\n }\n if (cmd === 'kick' && (perms.has(PermissionFlags.KickMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" } ] @@ -1171,7 +1171,7 @@ { "title": "Create a role", "description": "Use guild.createRole() to create a new role. Pass name, permissions, color, hoist, mentionable, unicode_emoji, position, or hoist_position. Permissions accept PermissionResolvable (string, number, array) for convenience.", - "code": "import { Client, Events, PermissionFlags, resolvePermissionsToBitfield } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!createrole' && message.guildId) {\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const role = await guild.createRole({\n name: 'Moderator',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages'],\n color: 0x5865f2,\n hoist: true,\n mentionable: false,\n });\n await message.reply(`Created role ${role.name} (${role.id})`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events, PermissionFlags, resolvePermissionsToBitfield } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!createrole' && message.guildId) {\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const role = await guild.createRole({\n name: 'Moderator',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages'],\n color: 0x5865f2,\n hoist: true,\n mentionable: false,\n });\n await message.reply(`Created role ${role.name} (${role.id})`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -1195,7 +1195,7 @@ { "title": "Check role permissions", "description": "Use role.has(permission) to check if a role has a specific permission. Administrator implies all permissions.", - "code": "import { PermissionFlags } from '@fluxerjs/core';\n\nif (role.has(PermissionFlags.BanMembers)) {\n await message.reply('This role can ban members.');\n}\nif (role.has('ManageChannels')) {\n await message.reply('This role can manage channels.');\n}", + "code": "import { PermissionFlags } from '/core';\n\nif (role.has(PermissionFlags.BanMembers)) {\n await message.reply('This role can ban members.');\n}\nif (role.has('ManageChannels')) {\n await message.reply('This role can manage channels.');\n}", "language": "javascript" }, { @@ -1208,7 +1208,7 @@ { "title": "Permission bitfields for create/edit", "description": "When creating or editing roles, pass permissions as a string (API format), number, PermissionString, or array. Use resolvePermissionsToBitfield() to combine multiple permissions. Handles high bits (PinMessages, ModerateMembers, etc.) correctly with BigInt.", - "code": "import { resolvePermissionsToBitfield, PermissionFlags } from '@fluxerjs/core';\n\n// Single permission by name\nresolvePermissionsToBitfield('SendMessages'); // \"2048\"\n\n// Array of permissions (OR'd together)\nresolvePermissionsToBitfield(['SendMessages', 'ViewChannel', 'ReadMessageHistory']);\n// Returns combined bitfield as string\n\n// From PermissionFlags enum\nresolvePermissionsToBitfield(PermissionFlags.BanMembers); // \"4\"", + "code": "import { resolvePermissionsToBitfield, PermissionFlags } from '/core';\n\n// Single permission by name\nresolvePermissionsToBitfield('SendMessages'); // \"2048\"\n\n// Array of permissions (OR'd together)\nresolvePermissionsToBitfield(['SendMessages', 'ViewChannel', 'ReadMessageHistory']);\n// Returns combined bitfield as string\n\n// From PermissionFlags enum\nresolvePermissionsToBitfield(PermissionFlags.BanMembers); // \"4\"", "language": "javascript" } ] @@ -1223,7 +1223,7 @@ { "title": "Basic Structure", "description": "Check for a prefix, split args, and dispatch to command handlers.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content) return;\n if (!message.content.startsWith(PREFIX)) return;\n\n const args = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const command = args.shift()?.toLowerCase();\n\n if (command === 'ping') {\n await message.reply('Pong!');\n }\n if (command === 'hello') {\n const name = args[0] ?? 'there';\n await message.reply(`Hello, ${name}!`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content) return;\n if (!message.content.startsWith(PREFIX)) return;\n\n const args = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const command = args.shift()?.toLowerCase();\n\n if (command === 'ping') {\n await message.reply('Pong!');\n }\n if (command === 'hello') {\n const name = args[0] ?? 'there';\n await message.reply(`Hello, ${name}!`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -1243,7 +1243,7 @@ { "title": "Channels — Create", "description": "Use guild.createChannel() to create text (0), voice (2), category (4), or link (5) channels. Requires Manage Channels permission. Pass parent_id to put a channel under a category.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!createchannel') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n // Text channel (0), voice (2), category (4), link (5)\n const textChannel = await guild.createChannel({\n type: 0,\n name: 'general',\n });\n\n // Category, then voice channel under it\n const category = await guild.createChannel({\n type: 4,\n name: 'Voice Chats',\n });\n const voiceChannel = await guild.createChannel({\n type: 2,\n name: 'Lounge',\n parent_id: category.id,\n bitrate: 64000,\n });\n\n await message.reply(`Created ${textChannel.name} and ${voiceChannel.name} in ${category.name}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!createchannel') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n // Text channel (0), voice (2), category (4), link (5)\n const textChannel = await guild.createChannel({\n type: 0,\n name: 'general',\n });\n\n // Category, then voice channel under it\n const category = await guild.createChannel({\n type: 4,\n name: 'Voice Chats',\n });\n const voiceChannel = await guild.createChannel({\n type: 2,\n name: 'Lounge',\n parent_id: category.id,\n bitrate: 64000,\n });\n\n await message.reply(`Created ${textChannel.name} and ${voiceChannel.name} in ${category.name}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -1261,7 +1261,7 @@ { "title": "Channel Permission Overwrites", "description": "Use channel.editPermission() to add or update overwrites (type 0=role, 1=member). Use channel.deletePermission() to remove. Use resolvePermissionsToBitfield() for allow/deny bitfields.", - "code": "import { resolvePermissionsToBitfield, PermissionFlags } from '@fluxerjs/core';\n\n// Deny SendMessages for a role (type 0=role, 1=member)\nawait channel.editPermission(roleId, {\n type: 0,\n deny: resolvePermissionsToBitfield(['SendMessages']),\n});\n\n// Allow ViewChannel for a specific member\nawait channel.editPermission(userId, {\n type: 1,\n allow: resolvePermissionsToBitfield([PermissionFlags.ViewChannel]),\n});\n\n// Remove overwrite\nawait channel.deletePermission(roleId);", + "code": "import { resolvePermissionsToBitfield, PermissionFlags } from '/core';\n\n// Deny SendMessages for a role (type 0=role, 1=member)\nawait channel.editPermission(roleId, {\n type: 0,\n deny: resolvePermissionsToBitfield(['SendMessages']),\n});\n\n// Allow ViewChannel for a specific member\nawait channel.editPermission(userId, {\n type: 1,\n allow: resolvePermissionsToBitfield([PermissionFlags.ViewChannel]),\n});\n\n// Remove overwrite\nawait channel.deletePermission(roleId);", "language": "javascript" }, { @@ -1274,7 +1274,7 @@ { "title": "Invites", "description": "Use channel.createInvite() to create an invite. Use channel.fetchInvites() to list channel invites. Use invite.delete() to revoke. invite.url gives the full invite URL.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.content.startsWith('!invite') || !message.guildId) return;\n const channel = message.channel;\n if (!channel?.createInvite) return;\n\n if (message.content === '!invite') {\n const invite = await channel.createInvite({\n max_age: 86400, // 24 hours\n max_uses: 10,\n temporary: false,\n });\n await message.reply(`Invite: ${invite.url}`);\n }\n\n if (message.content === '!invitelist') {\n const invites = await channel.fetchInvites();\n const list = invites.map((i) => `${i.code} (${i.max_uses ?? '∞'} uses)`).join('\\n');\n await message.reply(list || 'No invites.');\n }\n\n if (message.content.startsWith('!inviterevoke ')) {\n const code = message.content.slice(13).trim();\n const invites = await channel.fetchInvites();\n const inv = invites.find((i) => i.code === code);\n if (inv) {\n await inv.delete();\n await message.reply('Invite revoked.');\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.content.startsWith('!invite') || !message.guildId) return;\n const channel = message.channel;\n if (!channel?.createInvite) return;\n\n if (message.content === '!invite') {\n const invite = await channel.createInvite({\n max_age: 86400, // 24 hours\n max_uses: 10,\n temporary: false,\n });\n await message.reply(`Invite: ${invite.url}`);\n }\n\n if (message.content === '!invitelist') {\n const invites = await channel.fetchInvites();\n const list = invites.map((i) => `${i.code} (${i.max_uses ?? '∞'} uses)`).join('\\n');\n await message.reply(list || 'No invites.');\n }\n\n if (message.content.startsWith('!inviterevoke ')) {\n const code = message.content.slice(13).trim();\n const invites = await channel.fetchInvites();\n const inv = invites.find((i) => i.code === code);\n if (inv) {\n await inv.delete();\n await message.reply('Invite revoked.');\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);", "language": "javascript" }, { @@ -1370,13 +1370,13 @@ { "title": "Fetch Emojis", "description": "Use guild.fetchEmojis() to get all emojis in a guild. Cached in guild.emojis. Use guild.fetchEmoji(emojiId) for a single emoji. Use emoji.delete() to remove an emoji (e.g. autocreated ones).", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!emojis') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const emojis = await guild.fetchEmojis();\n const list = emojis.map((e) => `:${e.name}: (${e.id})`).join(', ');\n await message.reply(emojis.length ? list : 'No emojis.');\n\n // Or get from cache after fetching: guild.emojis.get(emojiId)\n});\n\n// Fetch single emoji by ID\nconst emoji = await guild.fetchEmoji(emojiId);\nawait emoji.delete();", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!emojis') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const emojis = await guild.fetchEmojis();\n const list = emojis.map((e) => `:${e.name}: (${e.id})`).join(', ');\n await message.reply(emojis.length ? list : 'No emojis.');\n\n // Or get from cache after fetching: guild.emojis.get(emojiId)\n});\n\n// Fetch single emoji by ID\nconst emoji = await guild.fetchEmoji(emojiId);\nawait emoji.delete();", "language": "javascript" }, { "title": "Create Emojis & Stickers", "description": "Use guild.createEmojisBulk() and guild.createStickersBulk() with base64 image data. Use emoji.edit() / emoji.delete() and sticker.edit() / sticker.delete() for individual updates.", - "code": "import { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\n// Create emoji from URL (fetch and convert to base64)\nasync function createEmojiFromUrl(guild, name, imageUrl) {\n const res = await fetch(imageUrl);\n const buf = await res.arrayBuffer();\n const base64 = Buffer.from(buf).toString('base64');\n const [emoji] = await guild.createEmojisBulk([{ name, image: base64 }]);\n return emoji;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || !message.content.startsWith('!addemoji ')) return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const [_, name, url] = message.content.split(/\\s+/);\n if (!name || !url) return;\n const emoji = await createEmojiFromUrl(guild, name, url);\n await message.reply(`Created emoji :${emoji.name}:`);\n});\n\n// Bulk create stickers\nconst stickers = await guild.createStickersBulk([\n { name: 'cool', image: base64Image, description: 'A cool sticker' },\n]);\n\n// Edit and delete\nawait emoji.edit({ name: 'newname' });\nawait emoji.delete();", + "code": "import { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\n// Create emoji from URL (fetch and convert to base64)\nasync function createEmojiFromUrl(guild, name, imageUrl) {\n const res = await fetch(imageUrl);\n const buf = await res.arrayBuffer();\n const base64 = Buffer.from(buf).toString('base64');\n const [emoji] = await guild.createEmojisBulk([{ name, image: base64 }]);\n return emoji;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || !message.content.startsWith('!addemoji ')) return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const [_, name, url] = message.content.split(/\\s+/);\n if (!name || !url) return;\n const emoji = await createEmojiFromUrl(guild, name, url);\n await message.reply(`Created emoji :${emoji.name}:`);\n});\n\n// Bulk create stickers\nconst stickers = await guild.createStickersBulk([\n { name: 'cool', image: base64Image, description: 'A cool sticker' },\n]);\n\n// Edit and delete\nawait emoji.edit({ name: 'newname' });\nawait emoji.delete();", "language": "javascript" }, { diff --git a/apps/docs/public/docs/latest/main.json b/apps/docs/public/docs/latest/main.json index 171fcf9..0a1094e 100644 --- a/apps/docs/public/docs/latest/main.json +++ b/apps/docs/public/docs/latest/main.json @@ -4,17 +4,17 @@ "version": "1", "date": 1773927822187 }, - "package": "@fluxerjs/core", + "package": "/core", "version": "1.2.4", "packages": [ - "@fluxerjs/builders", - "@fluxerjs/collection", - "@fluxerjs/core", - "@fluxerjs/rest", - "@fluxerjs/types", - "@fluxerjs/util", - "@fluxerjs/voice", - "@fluxerjs/ws" + "/builders", + "/collection", + "/core", + "/rest", + "/types", + "/util", + "/voice", + "/ws" ], "classes": [ { @@ -135,7 +135,7 @@ "line": 19, "path": "packages/builders/src/messages/AttachmentBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "Base", @@ -155,7 +155,7 @@ "line": 4, "path": "packages/fluxer-core/src/structures/Base.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "BitField", @@ -331,7 +331,7 @@ "line": 15, "path": "packages/util/src/BitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "CategoryChannel", @@ -343,7 +343,7 @@ "line": 388, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "Channel", @@ -563,7 +563,7 @@ "line": 26, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ChannelManager", @@ -711,7 +711,7 @@ "line": 17, "path": "packages/fluxer-core/src/client/ChannelManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "Client", @@ -1010,7 +1010,7 @@ "line": 152, "path": "packages/fluxer-core/src/client/Client.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ClientUser", @@ -1073,7 +1073,7 @@ "line": 7, "path": "packages/fluxer-core/src/client/ClientUser.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "Collection", @@ -1441,7 +1441,7 @@ "line": 5, "path": "packages/collection/src/Collection.ts" }, - "package": "@fluxerjs/collection" + "package": "/collection" }, { "name": "DMChannel", @@ -1610,7 +1610,7 @@ "line": 411, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "EmbedBuilder", @@ -1890,7 +1890,7 @@ "line": 70, "path": "packages/builders/src/messages/EmbedBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "FluxerAPIError", @@ -1942,7 +1942,7 @@ "line": 3, "path": "packages/rest/src/errors/FluxerAPIError.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "FluxerError", @@ -1975,7 +1975,7 @@ "line": 6, "path": "packages/fluxer-core/src/errors/FluxerError.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "Guild", @@ -2727,7 +2727,7 @@ "line": 41, "path": "packages/fluxer-core/src/structures/Guild.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildBan", @@ -2804,7 +2804,7 @@ "line": 8, "path": "packages/fluxer-core/src/structures/GuildBan.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildChannel", @@ -3025,7 +3025,7 @@ "line": 132, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildEmoji", @@ -3132,7 +3132,7 @@ "line": 8, "path": "packages/fluxer-core/src/structures/GuildEmoji.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildManager", @@ -3243,7 +3243,7 @@ "line": 10, "path": "packages/fluxer-core/src/client/GuildManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildMember", @@ -3533,7 +3533,7 @@ "line": 14, "path": "packages/fluxer-core/src/structures/GuildMember.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildMemberManager", @@ -3622,7 +3622,7 @@ "path": "packages/fluxer-core/src/client/GuildMemberManager.ts" }, "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberManager", - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildMemberRoleManager", @@ -3737,7 +3737,7 @@ "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" }, "discordJsCompat": "https://discord.js.org/docs/packages/discord.js/main/GuildMemberRoleManager", - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GuildSticker", @@ -3849,7 +3849,7 @@ "line": 8, "path": "packages/fluxer-core/src/structures/GuildSticker.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "HTTPError", @@ -3895,7 +3895,7 @@ "line": 7, "path": "packages/rest/src/errors/HTTPError.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "Invite", @@ -4038,7 +4038,7 @@ "line": 9, "path": "packages/fluxer-core/src/structures/Invite.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "LinkChannel", @@ -4071,7 +4071,7 @@ "line": 402, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "LiveKitRtcConnection", @@ -4578,7 +4578,7 @@ "line": 253, "path": "packages/voice/src/LiveKitRtcConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "Message", @@ -5103,7 +5103,7 @@ "line": 56, "path": "packages/fluxer-core/src/structures/Message.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageCollector", @@ -5219,7 +5219,7 @@ "line": 30, "path": "packages/fluxer-core/src/util/MessageCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageFlagsBitField", @@ -5238,7 +5238,7 @@ "line": 16, "path": "packages/util/src/MessageFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "MessageManager", @@ -5301,7 +5301,7 @@ "line": 15, "path": "packages/fluxer-core/src/client/MessageManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessagePayload", @@ -5474,7 +5474,7 @@ "line": 19, "path": "packages/builders/src/messages/MessagePayload.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "MessageReaction", @@ -5558,7 +5558,7 @@ "line": 16, "path": "packages/fluxer-core/src/structures/MessageReaction.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "PermissionsBitField", @@ -5577,7 +5577,7 @@ "line": 57, "path": "packages/util/src/PermissionsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "RateLimitError", @@ -5616,7 +5616,7 @@ "line": 4, "path": "packages/rest/src/errors/RateLimitError.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "RateLimitManager", @@ -5753,7 +5753,7 @@ "line": 11, "path": "packages/rest/src/RateLimitManager.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "ReactionCollector", @@ -5880,7 +5880,7 @@ "line": 37, "path": "packages/fluxer-core/src/util/ReactionCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "RequestManager", @@ -6027,7 +6027,7 @@ "line": 26, "path": "packages/rest/src/RequestManager.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "REST", @@ -6054,7 +6054,7 @@ "type": "{ readonly channel: (id: Snowflake) => `/channels/${string}`; readonly channelMessages: (id: Snowflake) => `/channels/${string}/messages`; ... 55 more ...; reado...", "readonly": true, "optional": false, - "description": "Route helpers (from @fluxerjs/types) for building paths." + "description": "Route helpers (from /types) for building paths." }, { "name": "token", @@ -6198,7 +6198,7 @@ "line": 16, "path": "packages/rest/src/REST.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "Role", @@ -6343,7 +6343,7 @@ "line": 14, "path": "packages/fluxer-core/src/structures/Role.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "SnowflakeUtil", @@ -6448,7 +6448,7 @@ "line": 8, "path": "packages/util/src/SnowflakeUtil.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "TextChannel", @@ -6576,7 +6576,7 @@ "line": 311, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "User", @@ -6767,7 +6767,7 @@ "line": 12, "path": "packages/fluxer-core/src/structures/User.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "UserFlagsBitField", @@ -6786,7 +6786,7 @@ "line": 44, "path": "packages/util/src/UserFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "UsersManager", @@ -6885,7 +6885,7 @@ "line": 28, "path": "packages/fluxer-core/src/client/UsersManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "VoiceChannel", @@ -6930,7 +6930,7 @@ "line": 389, "path": "packages/fluxer-core/src/structures/Channel.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "VoiceConnection", @@ -7230,7 +7230,7 @@ "line": 68, "path": "packages/voice/src/VoiceConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "VoiceManager", @@ -7596,7 +7596,7 @@ "line": 31, "path": "packages/voice/src/VoiceManager.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "Webhook", @@ -7809,7 +7809,7 @@ "line": 47, "path": "packages/fluxer-core/src/structures/Webhook.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "WebSocketManager", @@ -7907,7 +7907,7 @@ "line": 28, "path": "packages/ws/src/WebSocketManager.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" }, { "name": "WebSocketShard", @@ -8136,7 +8136,7 @@ "line": 46, "path": "packages/ws/src/WebSocketShard.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" } ], "interfaces": [ @@ -8206,7 +8206,7 @@ "line": 9, "path": "packages/types/src/api/interaction.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIApplicationCommandOptionValue", @@ -8217,7 +8217,7 @@ "line": 6, "path": "packages/types/src/api/interaction.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIAttachmentPayload", @@ -8247,7 +8247,7 @@ "line": 12, "path": "packages/builders/src/messages/AttachmentBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "APIBan", @@ -8277,7 +8277,7 @@ "line": 3, "path": "packages/types/src/api/ban.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIChannel", @@ -8398,7 +8398,7 @@ "line": 45, "path": "packages/types/src/api/channel.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIChannelOverwrite", @@ -8434,7 +8434,7 @@ "line": 26, "path": "packages/types/src/api/channel.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIChannelPartial", @@ -8476,7 +8476,7 @@ "line": 34, "path": "packages/types/src/api/channel.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIConnectedAccount", @@ -8500,7 +8500,7 @@ "line": 46, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbed", @@ -8608,7 +8608,7 @@ "line": 64, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbedAuthor", @@ -8643,7 +8643,7 @@ "line": 1, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbedChild", @@ -8745,7 +8745,7 @@ "line": 46, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbedField", @@ -8774,7 +8774,7 @@ "line": 37, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbedFooter", @@ -8803,7 +8803,7 @@ "line": 8, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmbedMedia", @@ -8876,7 +8876,7 @@ "line": 22, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmoji", @@ -8905,7 +8905,7 @@ "line": 4, "path": "packages/types/src/api/emoji.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIEmojiWithUser", @@ -8922,7 +8922,7 @@ "line": 10, "path": "packages/types/src/api/emoji.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIErrorBody", @@ -8951,7 +8951,7 @@ "line": 58, "path": "packages/types/src/api/errors.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGatewayBotResponse", @@ -8981,7 +8981,7 @@ "line": 5, "path": "packages/types/src/api/gateway.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuild", @@ -9167,7 +9167,7 @@ "line": 55, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuildAuditLog", @@ -9197,7 +9197,7 @@ "line": 114, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuildAuditLogEntry", @@ -9246,7 +9246,7 @@ "line": 88, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuildFeatureToggle", @@ -9264,7 +9264,7 @@ "line": 109, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuildMember", @@ -9349,7 +9349,7 @@ "line": 65, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIGuildPartial", @@ -9396,7 +9396,7 @@ "line": 5, "path": "packages/types/src/api/invite.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIInstance", @@ -9438,7 +9438,7 @@ "line": 5, "path": "packages/types/src/api/instance.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIInvite", @@ -9527,7 +9527,7 @@ "line": 14, "path": "packages/types/src/api/invite.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessage", @@ -9692,7 +9692,7 @@ "line": 111, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageAttachment", @@ -9815,7 +9815,7 @@ "line": 75, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageCall", @@ -9839,7 +9839,7 @@ "line": 47, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageReaction", @@ -9868,7 +9868,7 @@ "line": 31, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageReference", @@ -9905,7 +9905,7 @@ "line": 38, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageSnapshot", @@ -9971,7 +9971,7 @@ "line": 53, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIMessageSticker", @@ -10012,7 +10012,7 @@ "line": 100, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIProfileResponse", @@ -10048,7 +10048,7 @@ "line": 55, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIReactionEmoji", @@ -10077,7 +10077,7 @@ "line": 25, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIRole", @@ -10143,7 +10143,7 @@ "line": 7, "path": "packages/types/src/api/role.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APISticker", @@ -10184,7 +10184,7 @@ "line": 4, "path": "packages/types/src/api/sticker.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIStickerWithUser", @@ -10201,7 +10201,7 @@ "line": 12, "path": "packages/types/src/api/sticker.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIUser", @@ -10211,7 +10211,7 @@ "line": 28, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIUserPartial", @@ -10294,7 +10294,7 @@ "line": 8, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIUserProfile", @@ -10342,7 +10342,7 @@ "line": 34, "path": "packages/types/src/api/user.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIVanityURL", @@ -10366,7 +10366,7 @@ "line": 103, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIWebhook", @@ -10421,7 +10421,7 @@ "line": 12, "path": "packages/types/src/api/webhook.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIWebhookTokenUpdateRequest", @@ -10445,7 +10445,7 @@ "line": 31, "path": "packages/types/src/api/webhook.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "APIWebhookUpdateRequest", @@ -10475,7 +10475,7 @@ "line": 24, "path": "packages/types/src/api/webhook.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "AttachmentData", @@ -10486,7 +10486,7 @@ "line": 10, "path": "packages/rest/src/utils/files.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "AttachmentPayload", @@ -10517,7 +10517,7 @@ "line": 12, "path": "packages/rest/src/utils/files.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "AttachmentPayloadOptions", @@ -10547,7 +10547,7 @@ "line": 5, "path": "packages/builders/src/messages/AttachmentBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "BitFieldResolvable", @@ -10558,7 +10558,7 @@ "line": 8, "path": "packages/util/src/BitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "CacheSizeLimits", @@ -10595,7 +10595,7 @@ "line": 5, "path": "packages/fluxer-core/src/util/Options.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "CdnUrlOptions", @@ -10618,7 +10618,7 @@ "line": 3, "path": "packages/fluxer-core/src/util/cdn.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ClientEventMethods", @@ -10629,7 +10629,7 @@ "line": 135, "path": "packages/fluxer-core/src/client/Client.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ClientEvents", @@ -10899,7 +10899,7 @@ "line": 72, "path": "packages/fluxer-core/src/client/Client.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ClientOptions", @@ -10958,7 +10958,7 @@ "line": 13, "path": "packages/fluxer-core/src/util/Options.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "CollectedReaction", @@ -10981,7 +10981,7 @@ "line": 20, "path": "packages/fluxer-core/src/util/ReactionCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "DispatchHandler", @@ -10991,7 +10991,7 @@ "line": 43, "path": "packages/fluxer-core/src/client/EventHandlerRegistry.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "EmbedAuthorOptions", @@ -11021,7 +11021,7 @@ "line": 46, "path": "packages/builders/src/messages/EmbedBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "EmbedFieldData", @@ -11051,7 +11051,7 @@ "line": 59, "path": "packages/builders/src/messages/EmbedBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "EmbedFooterOptions", @@ -11075,7 +11075,7 @@ "line": 53, "path": "packages/builders/src/messages/EmbedBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "EmbedMediaOptions", @@ -11135,7 +11135,7 @@ "line": 5, "path": "packages/builders/src/messages/EmbedBuilder.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "EmbedType", @@ -11145,7 +11145,7 @@ "line": 43, "path": "packages/types/src/api/embed.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "FetchedUserWithProfile", @@ -11199,7 +11199,7 @@ "line": 9, "path": "packages/fluxer-core/src/client/UsersManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "FluxerErrorOptions", @@ -11222,7 +11222,7 @@ "line": 1, "path": "packages/fluxer-core/src/errors/FluxerError.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "GatewayAuthSessionChangeDispatchData", @@ -11233,7 +11233,7 @@ "line": 412, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayCallCreateDispatchData", @@ -11257,7 +11257,7 @@ "line": 438, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayCallDeleteDispatchData", @@ -11281,7 +11281,7 @@ "line": 452, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayCallUpdateDispatchData", @@ -11305,7 +11305,7 @@ "line": 445, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelCreateDispatchData", @@ -11316,7 +11316,7 @@ "line": 169, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelDeleteDispatchData", @@ -11327,7 +11327,7 @@ "line": 177, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelPinsAckDispatchData", @@ -11351,7 +11351,7 @@ "line": 354, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelPinsUpdateDispatchData", @@ -11381,7 +11381,7 @@ "line": 348, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelRecipientAddDispatchData", @@ -11405,7 +11405,7 @@ "line": 179, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelRecipientRemoveDispatchData", @@ -11429,7 +11429,7 @@ "line": 184, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelUpdateBulkDispatchData", @@ -11447,7 +11447,7 @@ "line": 173, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayChannelUpdateDispatchData", @@ -11458,7 +11458,7 @@ "line": 171, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayCustomStatus", @@ -11488,7 +11488,7 @@ "line": 39, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayDispatchEventName", @@ -11498,7 +11498,7 @@ "line": 188, "path": "packages/types/src/gateway/events.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayFavoriteMemeCreateDispatchData", @@ -11509,7 +11509,7 @@ "line": 458, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayFavoriteMemeDeleteDispatchData", @@ -11520,7 +11520,7 @@ "line": 464, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayFavoriteMemeUpdateDispatchData", @@ -11531,7 +11531,7 @@ "line": 461, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildBanAddDispatchData", @@ -11561,7 +11561,7 @@ "line": 231, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildBanRemoveDispatchData", @@ -11585,7 +11585,7 @@ "line": 237, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildCreateDispatchData", @@ -11596,7 +11596,7 @@ "line": 159, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildDeleteDispatchData", @@ -11620,7 +11620,7 @@ "line": 163, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildEmojisUpdateDispatchData", @@ -11644,7 +11644,7 @@ "line": 313, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildIntegrationsUpdateDispatchData", @@ -11662,7 +11662,7 @@ "line": 325, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildMemberAddDispatchData", @@ -11673,7 +11673,7 @@ "line": 190, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildMemberListUpdateDispatchData", @@ -11721,7 +11721,7 @@ "line": 217, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildMemberRemoveDispatchData", @@ -11745,7 +11745,7 @@ "line": 203, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildMembersChunkDispatchData", @@ -11793,7 +11793,7 @@ "line": 208, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildMemberUpdateDispatchData", @@ -11853,7 +11853,7 @@ "line": 192, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildRoleCreateDispatchData", @@ -11877,7 +11877,7 @@ "line": 264, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildRoleDeleteDispatchData", @@ -11901,7 +11901,7 @@ "line": 274, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildRoleUpdateBulkDispatchData", @@ -11925,7 +11925,7 @@ "line": 279, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildRoleUpdateDispatchData", @@ -11949,7 +11949,7 @@ "line": 269, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildScheduledEventCreateDispatchData", @@ -11973,7 +11973,7 @@ "line": 330, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildScheduledEventDeleteDispatchData", @@ -11997,7 +11997,7 @@ "line": 342, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildScheduledEventUpdateDispatchData", @@ -12021,7 +12021,7 @@ "line": 336, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildStickersUpdateDispatchData", @@ -12045,7 +12045,7 @@ "line": 319, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildSyncDispatchData", @@ -12056,7 +12056,7 @@ "line": 418, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayGuildUpdateDispatchData", @@ -12067,7 +12067,7 @@ "line": 161, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayHelloData", @@ -12085,7 +12085,7 @@ "line": 79, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayIdentifyData", @@ -12139,7 +12139,7 @@ "line": 18, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayInteractionCreateDispatchData", @@ -12150,7 +12150,7 @@ "line": 467, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayInviteCreateDispatchData", @@ -12161,7 +12161,7 @@ "line": 243, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayInviteDeleteDispatchData", @@ -12191,7 +12191,7 @@ "line": 246, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageAckDispatchData", @@ -12215,7 +12215,7 @@ "line": 153, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageCreateDispatchData", @@ -12226,7 +12226,7 @@ "line": 94, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageDeleteBulkDispatchData", @@ -12256,7 +12256,7 @@ "line": 107, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageDeleteDispatchData", @@ -12298,7 +12298,7 @@ "line": 98, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageReactionAddDispatchData", @@ -12340,7 +12340,7 @@ "line": 121, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageReactionRemoveAllDispatchData", @@ -12370,7 +12370,7 @@ "line": 147, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageReactionRemoveDispatchData", @@ -12412,7 +12412,7 @@ "line": 130, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageReactionRemoveEmojiDispatchData", @@ -12448,7 +12448,7 @@ "line": 139, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayMessageUpdateDispatchData", @@ -12459,7 +12459,7 @@ "line": 96, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayPassiveUpdatesDispatchData", @@ -12470,7 +12470,7 @@ "line": 415, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayPresenceUpdateData", @@ -12512,7 +12512,7 @@ "line": 45, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayPresenceUpdateDispatchData", @@ -12555,7 +12555,7 @@ "line": 360, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayReactionEmoji", @@ -12585,7 +12585,7 @@ "line": 114, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayReadyDispatchData", @@ -12633,7 +12633,7 @@ "line": 84, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayReceivePayload", @@ -12668,7 +12668,7 @@ "line": 469, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayRecentMentionDeleteDispatchData", @@ -12679,7 +12679,7 @@ "line": 401, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayRelationshipAddDispatchData", @@ -12703,7 +12703,7 @@ "line": 421, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayRelationshipRemoveDispatchData", @@ -12721,7 +12721,7 @@ "line": 433, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayRelationshipUpdateDispatchData", @@ -12745,7 +12745,7 @@ "line": 427, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayResumeData", @@ -12774,7 +12774,7 @@ "line": 32, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayResumedDispatchData", @@ -12785,7 +12785,7 @@ "line": 378, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewaySavedMessageCreateDispatchData", @@ -12796,7 +12796,7 @@ "line": 404, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewaySavedMessageDeleteDispatchData", @@ -12814,7 +12814,7 @@ "line": 407, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewaySendPayload", @@ -12824,7 +12824,7 @@ "line": 67, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewaySessionsReplaceDispatchData", @@ -12842,7 +12842,7 @@ "line": 381, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayTypingStartDispatchData", @@ -12884,7 +12884,7 @@ "line": 253, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayUserGuildSettingsUpdateDispatchData", @@ -12895,7 +12895,7 @@ "line": 389, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayUserNoteUpdateDispatchData", @@ -12919,7 +12919,7 @@ "line": 395, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayUserPinnedDmsUpdateDispatchData", @@ -12930,7 +12930,7 @@ "line": 392, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayUserSettingsUpdateDispatchData", @@ -12941,7 +12941,7 @@ "line": 386, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayUserUpdateDispatchData", @@ -12952,7 +12952,7 @@ "line": 261, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayVoiceServerUpdateDispatchData", @@ -12989,7 +12989,7 @@ "line": 304, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayVoiceStateUpdateData", @@ -13045,7 +13045,7 @@ "line": 54, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayVoiceStateUpdateDispatchData", @@ -13137,7 +13137,7 @@ "line": 285, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayWebhooksUpdateDispatchData", @@ -13161,7 +13161,7 @@ "line": 370, "path": "packages/types/src/gateway/payloads.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GuildFeature", @@ -13171,7 +13171,7 @@ "line": 27, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "LiveKitAudioFrame", @@ -13181,7 +13181,7 @@ "line": 193, "path": "packages/voice/src/LiveKitRtcConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "LiveKitReceiveSubscription", @@ -13191,7 +13191,7 @@ "line": 201, "path": "packages/voice/src/LiveKitRtcConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "LiveKitRtcConnectionEvents", @@ -13202,7 +13202,7 @@ "line": 181, "path": "packages/voice/src/LiveKitRtcConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "MessageAttachmentMeta", @@ -13245,7 +13245,7 @@ "line": 56, "path": "packages/fluxer-core/src/util/messageUtils.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageCollectorEndReason", @@ -13255,7 +13255,7 @@ "line": 16, "path": "packages/fluxer-core/src/util/MessageCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageCollectorEvents", @@ -13278,7 +13278,7 @@ "line": 18, "path": "packages/fluxer-core/src/util/MessageCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageCollectorOptions", @@ -13310,7 +13310,7 @@ "line": 7, "path": "packages/fluxer-core/src/util/MessageCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageEditOptions", @@ -13336,7 +13336,7 @@ "line": 32, "path": "packages/fluxer-core/src/structures/Message.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageFileData", @@ -13347,7 +13347,7 @@ "line": 12, "path": "packages/fluxer-core/src/util/messageUtils.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessageFlagsResolvable", @@ -13357,7 +13357,7 @@ "line": 20, "path": "packages/util/src/MessageFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "MessageFlagsString", @@ -13367,7 +13367,7 @@ "line": 14, "path": "packages/util/src/MessageFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "MessagePayload", @@ -13377,7 +13377,7 @@ "line": 39, "path": "packages/fluxer-core/src/structures/Message.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MessagePayloadData", @@ -13425,7 +13425,7 @@ "line": 6, "path": "packages/builders/src/messages/MessagePayload.ts" }, - "package": "@fluxerjs/builders" + "package": "/builders" }, { "name": "MessageSendOptions", @@ -13436,7 +13436,7 @@ "line": 68, "path": "packages/fluxer-core/src/util/messageUtils.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "MP4File", @@ -13465,7 +13465,7 @@ "line": 2, "path": "packages/voice/src/mp4box.d.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "PartialMessage", @@ -13509,7 +13509,7 @@ "line": 4, "path": "packages/fluxer-core/src/structures/PartialMessage.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "PermissionResolvable", @@ -13519,7 +13519,7 @@ "line": 61, "path": "packages/util/src/PermissionsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "PermissionString", @@ -13529,7 +13529,7 @@ "line": 55, "path": "packages/util/src/PermissionsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "RateLimitErrorBody", @@ -13558,7 +13558,7 @@ "line": 64, "path": "packages/types/src/api/errors.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "RateLimitState", @@ -13588,7 +13588,7 @@ "line": 5, "path": "packages/rest/src/RateLimitManager.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "ReactionCollectorEndReason", @@ -13598,7 +13598,7 @@ "line": 18, "path": "packages/fluxer-core/src/util/ReactionCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ReactionCollectorEvents", @@ -13621,7 +13621,7 @@ "line": 25, "path": "packages/fluxer-core/src/util/ReactionCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ReactionCollectorOptions", @@ -13653,7 +13653,7 @@ "line": 9, "path": "packages/fluxer-core/src/util/ReactionCollector.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "ReadonlyCollection", @@ -13664,7 +13664,7 @@ "line": 196, "path": "packages/collection/src/Collection.ts" }, - "package": "@fluxerjs/collection" + "package": "/collection" }, { "name": "ReplyOptions", @@ -13690,7 +13690,7 @@ "line": 45, "path": "packages/fluxer-core/src/structures/Message.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "RequestOptions", @@ -13725,7 +13725,7 @@ "line": 6, "path": "packages/rest/src/RequestManager.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "ResolvedMessageFile", @@ -13755,7 +13755,7 @@ "line": 5, "path": "packages/fluxer-core/src/util/messageUtils.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "RESTCreateRoleBody", @@ -13815,7 +13815,7 @@ "line": 20, "path": "packages/types/src/api/role.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "RestOptions", @@ -13862,7 +13862,7 @@ "line": 17, "path": "packages/rest/src/RequestManager.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "RESTOptions", @@ -13910,7 +13910,7 @@ "line": 6, "path": "packages/rest/src/REST.ts" }, - "package": "@fluxerjs/rest" + "package": "/rest" }, { "name": "RESTUpdateRoleBody", @@ -13970,7 +13970,7 @@ "line": 32, "path": "packages/types/src/api/role.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "RoleResolvable", @@ -13981,7 +13981,7 @@ "line": 7, "path": "packages/fluxer-core/src/structures/GuildMemberRoleManager.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "SendBodyResult", @@ -14018,7 +14018,7 @@ "line": 81, "path": "packages/fluxer-core/src/util/messageUtils.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "Snowflake", @@ -14029,7 +14029,7 @@ "line": 5, "path": "packages/types/src/common/snowflake.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "TenorMediaResult", @@ -14053,7 +14053,7 @@ "line": 4, "path": "packages/util/src/tenorUtils.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "UserFlagsResolvable", @@ -14063,7 +14063,7 @@ "line": 48, "path": "packages/util/src/UserFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "UserFlagsString", @@ -14073,7 +14073,7 @@ "line": 42, "path": "packages/util/src/UserFlagsBitField.ts" }, - "package": "@fluxerjs/util" + "package": "/util" }, { "name": "VideoPlayOptions", @@ -14141,7 +14141,7 @@ "line": 223, "path": "packages/voice/src/LiveKitRtcConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "VoiceConnectionEvents", @@ -14170,7 +14170,7 @@ "line": 61, "path": "packages/voice/src/VoiceConnection.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "VoiceConnectionLike", @@ -14181,7 +14181,7 @@ "line": 17, "path": "packages/voice/src/index.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "VoiceManagerOptions", @@ -14200,7 +14200,7 @@ "line": 25, "path": "packages/voice/src/VoiceManager.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "VoiceStateMap", @@ -14211,7 +14211,7 @@ "line": 17, "path": "packages/voice/src/VoiceManager.ts" }, - "package": "@fluxerjs/voice" + "package": "/voice" }, { "name": "WebhookAttachmentMeta", @@ -14254,7 +14254,7 @@ "line": 16, "path": "packages/fluxer-core/src/structures/Webhook.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "WebhookFileData", @@ -14265,7 +14265,7 @@ "line": 13, "path": "packages/fluxer-core/src/structures/Webhook.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "WebhookSendOptions", @@ -14326,7 +14326,7 @@ "line": 26, "path": "packages/fluxer-core/src/structures/Webhook.ts" }, - "package": "@fluxerjs/core" + "package": "/core" }, { "name": "WebSocketConstructor", @@ -14336,7 +14336,7 @@ "line": 20, "path": "packages/ws/src/WebSocketShard.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" }, { "name": "WebSocketLike", @@ -14346,7 +14346,7 @@ "line": 13, "path": "packages/ws/src/WebSocketShard.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" }, { "name": "WebSocketManagerOptions", @@ -14405,7 +14405,7 @@ "line": 17, "path": "packages/ws/src/WebSocketManager.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" }, { "name": "WebSocketShardEvents", @@ -14452,7 +14452,7 @@ "line": 34, "path": "packages/ws/src/WebSocketShard.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" }, { "name": "WebSocketShardOptions", @@ -14512,7 +14512,7 @@ "line": 22, "path": "packages/ws/src/WebSocketShard.ts" }, - "package": "@fluxerjs/ws" + "package": "/ws" } ], "enums": [ @@ -14674,7 +14674,7 @@ "line": 5, "path": "packages/types/src/api/errors.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "ChannelType", @@ -14714,7 +14714,7 @@ "line": 8, "path": "packages/types/src/api/channel.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "DefaultMessageNotifications", @@ -14733,7 +14733,7 @@ "line": 22, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GatewayOpcodes", @@ -14789,7 +14789,7 @@ "line": 5, "path": "packages/types/src/gateway/opcodes.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GuildExplicitContentFilter", @@ -14812,7 +14812,7 @@ "line": 16, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GuildMFALevel", @@ -14831,7 +14831,7 @@ "line": 11, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "GuildVerificationLevel", @@ -14862,7 +14862,7 @@ "line": 3, "path": "packages/types/src/api/guild.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "MessageFlags", @@ -14889,7 +14889,7 @@ "line": 18, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "MessageType", @@ -14936,7 +14936,7 @@ "line": 6, "path": "packages/types/src/api/message.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "OverwriteType", @@ -14956,7 +14956,7 @@ "line": 20, "path": "packages/types/src/api/channel.ts" }, - "package": "@fluxerjs/types" + "package": "/types" }, { "name": "WebhookType", @@ -14975,7 +14975,7 @@ "line": 4, "path": "packages/types/src/api/webhook.ts" }, - "package": "@fluxerjs/types" + "package": "/types" } ] } \ No newline at end of file diff --git a/apps/docs/public/docs/latest/rag-index.json b/apps/docs/public/docs/latest/rag-index.json index 3bd4c90..d324efb 100644 --- a/apps/docs/public/docs/latest/rag-index.json +++ b/apps/docs/public/docs/latest/rag-index.json @@ -1 +1 @@ -{"model":"openai/text-embedding-3-small","dimensions":1536,"generatedAt":1771602237878,"chunks":[{"id":"class-AttachmentBuilder","type":"class","source":"main","text":"Class: AttachmentBuilder\nDescription: Builder for attachment metadata (filename, description, spoiler). Actual file data is passed separately when sending.\nProperties: description: string | null, filename: string, id: number, spoiler: boolean\nMethods: setDescription(description: string | null) -> this — Set the attachment description (alt text).; setName(name: string) -> this — Set the displayed filename.; setSpoiler(spoiler: boolean) -> this — Mark the attachment as a spoiler (blurred until clicked).; toJSON() -> APIAttachmentPayload — Convert to API format for MessagePayload.","meta":{"url":"/docs/classes/AttachmentBuilder"},"embedding":[-0.004026309,0.01704269,-0.009464065,0.021182232,-0.030461965,-0.024626583,0.022709543,-0.008121084,-0.021234898,-0.026038028,-0.006577973,-0.02974571,0.005429856,-0.04381804,-0.012365957,0.002460815,0.032041945,0.030251302,0.02190902,0.025827365,-0.005956515,0.002714928,0.029640377,0.0040210425,0.01846467,-0.028839856,-0.026417224,0.049843024,0.011660234,-0.011786632,0.01806441,-0.010311986,0.0583117,0.038467184,0.0010895261,0.018211873,0.031725947,-0.00489793,0.0131138135,-0.023657529,-0.028376395,-0.014978186,-0.014451527,0.0020131546,-0.013851136,0.07175204,0.029240116,0.06324123,0.0011356088,0.007620758,-0.011828764,0.038593583,-0.007209964,0.09909619,0.0033758853,-0.025363905,-0.03398005,0.029808909,-0.0058459165,0.019359991,-0.0108386455,0.0012810983,-0.028355328,0.009248135,-0.036571212,-0.0153468475,-0.054941084,0.05890156,0.021203298,0.020065714,0.06644332,0.0028544927,-0.019296791,0.052623782,0.003436451,-0.038193323,-0.031852346,0.038572516,0.00006167673,-0.015041386,-0.02730201,0.028376395,-0.01621057,0.00013438037,-0.04676733,0.023762861,-0.03524403,-0.010333053,-0.010406785,-0.004192207,-0.027028147,-0.002235668,-0.051359802,-0.04782065,0.05106487,0.0068360358,-0.0024028823,0.0015997272,0.0067781033,0.012618753,0.019444257,-0.020792503,-0.03960477,-0.03246327,0.017158555,-0.04198527,-0.04411297,0.027470542,-0.00792622,0.0006662238,-0.06197725,0.015873507,-0.012660886,0.009432466,-0.025764165,-0.06244071,0.020929435,0.025427105,-0.009727394,-0.026332958,-0.0112389065,-0.04807345,0.034422442,-0.014156599,-0.0032336873,-0.004574035,0.009279734,0.015083518,-0.031409953,0.0036392147,0.014767523,0.024710847,0.027449476,-0.038045857,0.0040289424,-0.028271064,-0.032884598,0.0063409763,-0.009964392,-0.0351387,0.03530723,0.009632596,0.05797464,-0.035897087,-0.05026435,0.021993287,0.0029150585,0.0007149398,-0.017442951,0.0023383666,-0.023320468,0.035749625,-0.03593922,0.016263235,0.007884088,-0.032336872,0.0073995613,-0.010169788,-0.03848825,-0.00373928,0.034127515,-0.032126207,0.011038776,-0.03210514,-0.029324383,-0.022625277,0.033074196,-0.011786632,-0.03918344,0.0035707492,0.05102274,-0.01240809,-0.0150308525,-0.0033495522,-0.012028895,0.003765613,0.013187545,-0.06568493,-0.01098611,-0.0117971655,0.034127515,0.024479117,-0.06180872,-0.036613345,-0.005403523,0.0073679616,0.0066569718,0.054646153,0.018728,-0.020539707,-0.03199981,0.0014390962,-0.0013943302,-0.01330341,0.02382606,-0.027681205,-0.0048294645,0.015252049,-0.015905106,-0.0047030663,0.040995147,-0.0047820653,0.0013824803,-0.008610877,-0.006251444,0.008468679,0.008905807,-0.023194069,-0.042743657,-0.044702828,0.013840603,-0.043228183,0.016157903,0.015062452,0.006109246,0.023531131,-0.00078801374,0.0538035,-0.017169088,0.004832098,-0.05738478,0.018485736,0.053129375,-0.04512416,-0.0395837,-0.001985505,-0.036550146,0.00017034131,-0.018843865,0.01707429,-0.029408647,0.0046504005,-0.031346753,-0.022941273,-0.030461965,-0.0031678549,-0.017790547,-0.022056485,0.016505498,-0.022772742,0.021930087,-0.0044845026,0.0036681811,0.023699662,-0.004724133,0.005256058,0.011007177,-0.024837246,0.04029996,0.027870802,0.02220395,-0.013450875,0.014019667,-0.005687919,-0.000015655767,0.009785327,-0.044702828,0.005271858,0.062524974,-0.017158555,0.0039315107,-0.050517146,-0.03454884,-0.0081632165,-0.019496921,0.02713348,0.059238624,0.026248692,0.029471846,-0.0034390844,0.009701062,0.02243568,0.0057142517,0.024626583,-0.0033416525,0.030588364,-0.04110048,-0.023109803,0.0010480518,0.006251444,0.016400166,-0.018043343,0.0032731867,0.023004472,-0.032084078,0.01942319,0.041416477,0.019486388,0.033558723,0.03606562,0.04609321,-0.017727347,0.05797464,-0.032379005,-0.009685262,0.029851042,0.04782065,-0.034738436,0.046977997,0.029956372,0.016221102,-0.016136836,0.06071327,-0.007968353,0.033284858,-0.016895225,-0.01472539,-0.01776948,-0.026627887,-0.050390746,0.026922816,-0.022056485,-0.046935864,-0.023088738,-0.017095357,-0.0150308525,-0.030988624,-0.01591564,-0.005340324,0.03848825,0.0046793665,0.0040105097,-0.01121784,-0.061092462,-0.0111967735,-0.015957773,-0.008252749,-0.0051217605,0.01001179,0.08772035,-0.0010210604,-0.022835942,-0.017632548,-0.0039367774,0.018980796,-0.010570049,0.010164522,0.046051078,-0.01029092,0.07170991,0.0037735128,-0.0073837615,0.00088347076,0.052539516,-0.034590974,-0.06694891,-0.016442299,0.012734618,-0.01621057,0.0020618706,-0.02736521,-0.011870897,-0.061429523,-0.037350666,-0.0068149697,0.005482522,0.0045003025,-0.025911631,-0.004645134,0.01027512,-0.024436984,0.026290825,-0.0023541665,-0.000044436867,-0.0045872014,0.0070782993,-0.027744405,0.000104591214,-0.0066464385,-0.02719668,-0.031620614,0.044787094,-0.03907811,-0.008800475,0.021097966,-0.021498227,0.010243521,-0.01820134,-0.0064041754,-0.027091347,0.034970168,0.048284113,-0.030946491,0.00060763303,0.019433724,-0.02696495,-0.006746504,0.036739744,-0.06876062,0.011660234,0.041521806,0.034801636,-0.03716107,0.025700968,-0.050180085,0.070740856,0.046346005,0.021930087,-0.0024858313,0.0057774507,0.011533836,-0.0442815,-0.010733314,0.033748318,0.020465976,-0.0146305915,0.02521644,-0.029197983,0.06277777,-0.025869498,0.040278893,-0.008268549,0.024626583,0.023088738,0.020771436,0.013177012,-0.021287562,-0.009553597,0.03577069,0.027344143,-0.052328855,0.0072678966,-0.01614737,0.013261277,0.0047030663,-0.001981555,0.022119684,-0.033706184,0.015325782,-0.037203204,-0.02464765,0.013429808,0.026943883,0.006314643,0.02690175,-0.0012323824,-0.023236202,0.018148674,-0.045292687,0.0074996264,-0.012165827,-0.035454694,-0.0038156456,0.02683855,-0.05270805,0.03391685,-0.010859712,-0.021213831,0.021930087,-0.020655572,-0.043354582,0.03414858,-0.026164427,0.050137952,0.016326433,0.044155102,-0.040974084,-0.001379847,0.053634968,-0.011491703,0.017590417,0.03914131,-0.010585849,-0.005930182,-0.02938758,-0.07010887,-0.06492654,-0.02005518,-0.0052455254,-0.010706981,0.015831374,0.019201992,0.032442205,0.0029150585,-0.010849179,-0.04063702,0.029935306,-0.06981394,0.023783928,0.01588404,-0.04265939,0.027997201,-0.025637768,0.003249487,-0.043986574,0.10828112,0.04331245,0.020918902,0.03183128,-0.026627887,0.0063515096,-0.041142613,0.043270316,-0.0068149697,-0.0024397485,-0.0041158414,0.0041553406,-0.05426696,0.023657529,-0.004745199,0.012313291,-0.02021318,-0.010817579,0.0040526423,0.00512966,-0.040910885,-0.0055509876,0.017727347,-0.03425391,0.0077682226,-0.048157714,0.009095403,0.034970168,-0.035370428,-0.019865584,-0.0060407803,-0.015072985,0.024710847,0.0009894609,-0.03842505,-0.024542317,0.01518885,0.034127515,0.013556207,0.02422632,-0.003152055,-0.026080161,-0.038993843,-0.025722032,-0.026986016,0.0075364923,-0.015631244,0.010933444,0.043523114,-0.02203542,-0.00038281537,0.009448266,-0.019043995,-0.018106543,-0.011091442,-0.028608125,0.016537098,0.05199179,0.0016273768,0.004068442,0.025974829,-0.04086875,-0.0015470613,0.0070782993,0.0328214,-0.00020984076,-0.032737132,0.034127515,-0.012365957,-0.022288216,0.0024687147,-0.008394947,-0.0048399977,0.0068676355,-0.0121552935,0.0001705059,-0.007157298,-0.02544817,-0.0125134215,0.018843865,0.029935306,-0.021529827,-0.007884088,0.014904454,-0.0056036534,0.010185588,0.025469236,-0.0057300515,-0.015441647,-0.011586501,0.009200735,0.0017748413,0.002501631,-0.0075364923,-0.07419574,-0.009342933,-0.02677535,-0.03572856,0.008958472,-0.022098618,0.00075773086,0.006541107,0.017790547,-0.010548983,-0.00015651651,0.006024981,0.0021790522,0.025743099,-0.009732661,0.05119127,-0.03878318,0.025300706,0.020076247,0.000051431558,0.01985505,0.028207865,-0.003855145,-0.004402871,0.013356077,0.025953764,0.017516684,0.016463365,-0.041585006,-0.03084116,0.010469984,0.01588404,0.05658426,-0.05009582,-0.06505294,-0.020329043,0.026585754,0.017516684,-0.025321772,-0.0028518594,-0.042238064,0.007152031,-0.0005490422,-0.030862227,0.052665915,0.010196121,0.016789895,-0.014472594,-0.017780013,0.013587806,0.03444351,-0.014367262,0.001522045,0.0013245478,-0.01234489,0.022983406,-0.0005381798,0.038509317,0.016726695,0.0016023605,0.03195768,0.015399514,0.04702013,0.06522147,0.015536445,0.027660139,-0.012671419,-0.026712153,0.033369124,-0.006893968,0.007194164,-0.02928225,-0.029808909,-0.0033047863,-0.0041553406,0.0062251114,-0.020244777,0.0015931439,0.04520842,-0.016779361,0.010891312,-0.0015931439,-0.015546978,-0.010053923,0.005493055,-0.009227068,-0.019275725,-0.00022580511,-0.039330907,0.0022975507,0.015515379,0.0164107,-0.00605658,-0.011733966,-0.00893214,0.0055035884,-0.039857566,0.0040210425,-0.026016962,-0.016263235,0.014746456,-0.011038776,-0.01234489,-0.010764914,-0.048663307,0.024142057,0.008595077,-0.010965044,0.037582397,0.025700968,-0.01611577,-0.017421884,0.008990072,-0.025174309,-0.042216998,0.040342093,0.04110048,0.009801127,0.044660695,0.03785626,-0.029977439,-0.017748414,0.0042659394,-0.040405292,0.009853792,0.022793809,-0.021887954,-0.008410747,0.03663441,0.014904454,-0.010912377,-0.042069532,0.00886894,-0.013703671,0.030272368,-0.027786538,0.01234489,-0.02266741,0.010217188,-0.0084054805,-0.0045898347,-0.013377142,-0.023847127,-0.001843307,-0.01968652,-0.021087432,0.016684562,0.03560216,0.036297347,-0.027049214,0.00059677067,0.0023344166,-0.0010335686,0.03404325,0.023088738,-0.0010197437,0.04036316,0.012629286,0.0012666152,0.012492355,0.01707429,0.026501488,0.053382173,0.04546122,0.009485131,0.02249888,-0.018159207,-0.013387675,0.0005026303,-0.0026820118,-0.016526565,0.00082092994,0.003923611,-0.019781318,0.003196821,-0.0016365934,-0.0035681159,0.016505498,-0.009564131,-0.019475855,0.019012395,0.02031851,0.03914131,-0.03315846,0.016368566,-0.022119684,-0.027512675,-0.011059842,-0.0030414567,0.008863674,0.00012590445,-0.012313291,-0.018822799,-0.05675279,-0.0040026098,0.031199288,-0.013735271,-0.026417224,-0.011154641,-0.016779361,0.03320059,-0.0042185397,0.0093482,0.016642429,0.008521345,-0.018074943,0.0010118439,-0.046219606,-0.0067781033,-0.06058687,-0.00910067,0.00304409,0.017980143,-0.01826454,-0.06787583,0.033032063,0.019381057,-0.019338924,-0.07861968,-0.0058248504,0.019802384,-0.016526565,-0.021698358,0.02412099,0.011312638,0.04937956,0.04394444,-0.04824198,0.030799028,-0.02713348,0.025237506,0.01577871,-0.012071028,0.0019683887,-0.010922911,-0.014209264,0.0067359707,-0.019317858,-0.0062777773,0.0010678015,-0.01730602,0.004139541,-0.012429156,-0.0054403893,0.00747856,0.036781877,0.03994183,0.0044292035,0.02677535,0.019475855,-0.065474264,0.019939316,-0.008716209,0.04213273,-0.0013719471,0.024015658,-0.0015575945,0.005645786,0.03315846,-0.012365957,0.0036971474,0.04782065,0.014451527,-0.006746504,0.03785626,0.046851598,-0.0060407803,0.04162714,-0.019749718,-0.03821439,0.03756133,-0.018306673,0.028081466,-0.02382606,-0.06399962,-0.007810355,0.007736623,-0.028460661,-0.0023791827,-0.0071783643,0.02445805,0.010880779,-0.011765566,-0.017527217,0.028249998,-0.041711405,0.00068531523,0.019191459,0.019728651,-0.006604306,0.023109803,0.008516079,-0.02551137,-0.006230378,-0.0032389539,-0.013482475,-0.051696863,0.0050506615,0.052539516,-0.012502888,0.021140099,0.03937304,-0.018917598,0.03060943,-0.010670114,0.023699662,0.032336872,0.029956372,0.030883294,0.005358757,0.006730704,-0.040552754,-0.02428952,-0.009416666,0.008795208,-0.019296791,0.03391685,0.011439037,-0.007088832,0.0067096376,0.012218492,-0.044492166,-0.013967001,-0.012892616,-0.008473946,0.02025531,-0.0049611293,0.032189406,0.034991235,-0.030925427,-0.02150876,0.015873507,-0.03113609,-0.044323634,0.0071888976,0.036044553,0.01148117,-0.009458799,0.009574664,0.036170952,0.003810379,-0.02226715,0.005766918,0.03240007,-0.0059881145,-0.005253425,-0.002397616,0.019201992,-0.034864835,-0.005445656,0.00032998488,-0.014440994,0.018612135,-0.0071098986,0.032779265,0.0397733,-0.05485682,-0.007452227,0.011881431,0.030925427,0.016263235,-0.017948544,0.004621434,0.015831374,0.0074364273,0.0083212145,-0.0019433723,-0.051444065,0.015230983,-0.014788589,-0.03183128,-0.029008387,0.0021040034,0.015178317,-0.032695,-0.0035417827,0.00052073423,-0.0036365816,-0.03345339,0.017758947,-0.005919649,-0.05211819,-0.028734524,0.0063725756,-0.03842505,-0.015694443,0.025363905,0.0028860923,-0.013619406,-0.020666106,0.056794923,-0.016157903,-0.021171698,0.012207959,-0.018538402,0.0064041754,0.022519946,0.0046188007,0.0020263211,-0.020371176,0.005253425,-0.023467932,0.057932507,0.035517894,0.017811613,-0.0013916969,0.031178223,0.039204508,0.011660234,0.029640377,-0.0149887195,-0.023510065,-0.023531131,0.02256208,-0.000562867,0.021677291,0.0021066365,-0.027007082,0.027323077,-0.0011672083,0.0077945557,-0.010849179,0.02527964,0.0016747761,-0.012703019,0.023025539,-0.025890565,0.03534936,0.011365305,-0.0108386455,-0.027344143,0.0030730562,0.0022830674,0.0019960382,-0.013682605,0.0035496827,-0.039815433,0.011375838,-0.026585754,-0.0058353837,0.02428952,0.03242114,-0.012681953,-0.0027017614,0.029577179,0.010048657,-0.020034114,0.0068255025,-0.010348853,0.020013047,0.004026309,-0.0001784058,0.0492953,-0.026564687,0.0035180831,0.0017919578,-0.0014167131,0.00771029,0.04122688,-0.02719668,0.0028439595,-0.0057563847,-0.022772742,-0.022793809,0.029556112,0.06138739,-0.020929435,0.0022369847,0.016537098,0.012313291,-0.010780713,0.017348154,-0.004129008,-0.001824874,-0.02084517,0.006409442,0.011828764,0.02313087,0.017190155,0.013145412,0.026648954,-0.02928225,0.044365767,-0.0035075499,-0.009664196,0.029029453,0.04042636,0.02677535,-0.018633202,0.011649701,-0.0210137,0.016663495,-0.021024233,0.00655164,0.007404828,0.0059881145,0.016874159,0.0016550265,-0.034422442,-0.07701863,-0.010159255,-0.020529173,-0.011860364,-0.000036578123,-0.0044134036,0.014914988,-0.007841955,0.038109057,0.011744499,0.033242725,0.00655164,-0.024415918,0.0058459165,-0.0017932744,-0.024942577,-0.013292877,0.009553597,-0.022309283,-0.03345339,-0.022119684,-0.012007829,0.055910137,-0.000053982563,-0.00513756,0.028713457,-0.0029782576,-0.03391685,0.009506198,-0.014546326,-0.01816974,0.029303316,0.024921512,0.027028147,-0.010096056,-0.019412657,-0.008210616,-0.0070361663,-0.027786538,0.008737275,0.0009710278,-0.016242169,0.03652908,-0.0013930135,-0.024247387,0.02260421,-0.005982848,-0.0009157286,0.00653584,0.0040816083,-0.014451527,0.012692486,-0.015072985,0.013629939,-0.008610877,-0.071667776,-0.01747455,-0.0035812822,0.013556207,-0.00396311,0.025995895,-0.04841051,0.001981555,0.023531131,-0.012892616,0.02869239,0.006398909,-0.012260625,-0.010338319,0.035370428,0.007362695,0.010406785,-0.01449366,0.015241516,-0.039330907,0.012892616,0.027807603,-0.062230047,0.022793809,0.03292673,-0.010222455,0.03722427,-0.00537719,0.010117122,-0.0041474407,-0.007404828,0.00022136142,0.00039631102,-0.0035049168,0.014820188,0.011965696,0.01823294,-0.0057616513,-0.014851788,-0.022014353,0.026248692,-0.018654268,-0.06998247,-0.010859712,0.013714205,0.0210137,-0.007473293,0.044955626,-0.021203298,-0.031199288,-0.04238553,0.0015694443,-0.007778756,-0.020107847,0.021930087,0.003818279,-0.016726695,0.026986016,-0.014978186,-0.004495036,-0.033685118,-0.0032073543,-0.06117673,0.0050875274,0.035180833,0.011428503,0.021076899,0.004621434,0.044913493,-0.03490697,-0.027175613,0.00516126,-0.043059655,0.009316601,-0.008911073,0.00053719233,-0.0003365681,-0.014388328,0.027407343,0.02898732,0.024247387,-0.011165174,0.032189406,0.02249888,-0.012576621,0.011733966,-0.009964392,-0.008479212,0.03326379,0.016031506,-0.0016800427,-0.022077551,-0.0021566693,0.025342839,-0.0027886603,-0.03176808,0.016094703,0.024268454,0.00011833373,0.025574569,0.013514074,-0.0051138606,-0.011312638,0.021097966,0.01767468,0.0121974265,0.026396157,0.018559469,0.030925427,0.06029194,0.005190226,0.015610177,0.0028887254,-0.02487938,0.013819536,-0.013977534,-0.04122688,-0.004308072,-0.028881988,-0.017421884,0.0066991043,0.006604306,0.0033469188,0.011660234,-0.006925568,-0.046851598,0.011375838,-0.036170952,0.022583144,-0.046598803,0.006899235,0.0022909674,-0.0075628255,0.0029756243,-0.0027807604,-0.015062452,0.028587058,0.009206002,0.011038776,-0.022077551,-0.0029440247,-0.018443603,0.033284858,0.010169788,0.029535046,0.017211221,0.034590974,-0.01793801,0.022646343,0.0009400866,-0.011354771,-0.00515336,-0.034169648,0.009864326,-0.057258382,-0.022793809,0.034696307,0.0047609988,0.04173247,0.0060987133,-0.028228931,0.0014193464,0.0049927286,-0.01214476,0.009716862,0.012302758,-0.009801127,-0.045039892,0.036044553,0.023088738,0.015294182,0.024942577,-0.038593583,0.01661083,-0.009711595,0.0038340786,-0.0075470256,-0.056373596,0.007209964,0.024731914,0.0031546883,-0.043270316,0.021371828,-0.015515379,-0.031409953,-0.0040394757,-0.014304062,0.0047056996,-0.031115023,-0.026943883,0.000843313,-0.00043745627,-0.043438848,-0.039330907,0.024099924,-0.009174403,0.018949196,0.011691833,-0.032273673,0.024247387,-0.014156599,-0.031388886,-0.019833984,0.03659228,0.02829213,-0.021319162,-0.048494775,-0.004779432,0.010670114,-0.01148117,0.012039429,0.026585754,0.009026938,-0.008768875,0.033811517,0.0058459165,0.06395749,-0.031115023,0.00056714605,-0.023278335,-0.026290825,-0.006988767,0.025827365,0.002119803,0.02031851,-0.0016589763,-0.014251397,-0.06753877,0.03258967,0.0023001838,-0.020739838,0.012471288,0.02011838,-0.004129008,0.009306068,0.029008387,0.038045857,-0.004708333,-0.014609525,-0.0017708914,0.009748461,0.012218492,0.028881988,0.044576433,-0.016305368,-0.02051864,0.015546978,0.022772742,0.033032063,0.009016405,-0.009769527,-0.024900446,0.000979586,0.009511464,-0.017990677,0.014598992,-0.029577179,-0.02719668,-0.0021593026,-0.00559312,-0.008726742,0.035854954,-0.008416014,-0.019096661,0.0002667858,0.01707429,0.0024292155,-0.021266498,0.0044634365,-0.019833984,-0.009137536,0.004089508,-0.022793809,0.003249487,-0.01800121,0.009632596,0.05085421,-0.012281692,-0.019675987,-0.0053982562,-0.019096661,0.0041869404,0.020560773,0.019981448,-0.008300148,-0.012534488,-0.0059723146,0.015662843,-0.023994591,-0.021593025,0.021108499,-0.03728747,0.0013403476,-0.00564052,-0.01962332,0.028439594,0.028418528,0.0013475891,0.028460661,-0.013830069,-0.03914131,0.0015984105,0.015789242,0.014019667,0.00791042,-0.008937406,0.014040733,-0.034274977,0.011302105,0.008015753,-0.042406596,0.0101381885,-0.0008577961,-0.0068834354,0.02875559,-0.011207307,-0.02174049,0.021866888,-0.024373787,0.008584544,0.01260822,0.0017945911,-0.013682605,0.019233592,-0.017211221,0.0059775813,-0.017516684,0.04150074,0.0034654173,0.042638324,-0.041016214,0.012281692,0.017095357,0.007310029,-0.0081632165,-0.017811613,0.017442951,-0.017495617,0.0046240673,-0.034127515,0.0035575826,0.008811007,0.0054983217,0.0018854397,-0.0071783643,0.03756133,0.016600296,-0.035454694,0.023762861,0.01816974,-0.026164427,0.010891312,-0.011028242,-0.013261277,-0.0064410414,0.0052823913,0.00039927347,0.0005464089,0.04845264,0.043607377,0.0071730977,-0.015515379,0.015294182,-0.036318414,0.00655164,0.018738532,0.0053982562,-0.026185494,0.0074943597,0.007520693,-0.010975577,-0.021150632,0.015599644,-0.019107195,0.016916292,-0.003544416,-0.031725947,0.028608125,0.011712899,0.009953858,0.036718678,0.014082866,0.06058687,0.032147273,-0.0043765376,-0.0028518594,-0.03130462,-0.0028492261,0.0048689637,-0.017400818,0.000560892,-0.020760903,0.011228373,0.010475251,0.0073310956,-0.005271858,-0.01562071,0.0133139435,-0.0068255025,-0.043733776,-0.034485642,0.03242114,0.0069045015]},{"id":"class-Base","type":"class","source":"main","text":"Class: Base\nDescription: Base class for all Fluxer structures. Provides the client reference.\nProperties: client: Client","meta":{"url":"/docs/classes/Base"},"embedding":[-0.038849954,0.019582117,0.03418409,0.0090416195,0.0142514305,0.007875154,-0.04032466,-0.005626837,0.012111902,-0.03909171,0.0011324689,-0.043491643,0.010691594,-0.03360388,0.012166297,0.05434642,0.0069202236,-0.035054408,-0.008449322,0.05386291,0.027245738,-0.051348664,0.043999325,0.0024130126,-0.035610445,-0.007844935,-0.04622347,0.017261274,-0.00656968,-0.021068908,0.09162497,-0.019026082,0.031718194,0.045087222,-0.017261274,-0.020065626,0.004696082,0.04090487,-0.03058195,0.021117259,0.017756872,-0.022894155,0.006388364,0.009343813,0.02079089,0.00020926878,-0.00488042,0.019642556,-0.021685382,0.05541014,-0.03701262,-0.04503887,0.0077421893,0.030606125,-0.027294088,0.007476259,-0.0061768284,0.018675538,-0.023861174,0.014118466,0.033942338,0.030606125,0.020174416,0.051348664,-0.018010713,0.07204285,-0.04559491,0.044265255,0.024683138,0.06329134,0.017623907,-0.008268005,-0.01616129,-0.01188828,-0.031935774,-0.034764305,0.0059260083,0.027995177,0.0014233298,0.0067086886,0.014976694,0.025553456,0.005811175,-0.026133666,-0.008975137,-0.010631156,-0.007161978,0.0035296164,-0.019642556,-0.031403914,-0.0042730113,-0.027245738,-0.052895892,0.0584079,0.04237957,-0.01611294,0.025335876,-0.01659645,-0.022543611,0.0320083,0.099119365,0.009434471,-0.021637032,-0.01303057,0.031500615,-0.022301856,-0.03471595,0.0026849865,-0.094090864,-0.0037441736,-0.08069766,-0.016318431,0.05323435,0.03471595,-0.029905036,-0.02398205,-0.0065575917,0.057585932,-0.014795378,0.03962357,0.036335707,0.029687457,-0.0006659582,0.036553286,0.020645838,-0.039381813,0.049994837,0.0056812316,-0.050091542,-0.056135405,0.04095322,-0.03266104,-0.028623737,-0.0064306706,-0.00020133621,-0.0064367144,-0.003324125,-0.002574686,-0.024997419,-0.06754622,-0.0013885776,-0.03382146,0.06522538,0.0066240747,0.020923855,0.06290453,-0.035054408,0.035973076,0.005799087,0.0411708,0.011561911,-0.003011355,-0.00965205,0.012994306,-0.008763602,-0.006521329,0.03239511,0.003015888,-0.018494222,0.010588849,0.061889164,0.042814728,0.022132628,0.015931625,-0.027149035,-0.022422733,-0.057054073,-0.039164234,-0.03261269,-0.00433345,0.03258851,0.010975656,-0.035441216,-0.028623737,-0.010721814,-0.04813333,-0.00234653,0.025456753,-0.031258862,-0.01159213,0.066627555,-0.029276475,0.04627182,-0.08093942,-0.019497504,0.0024205674,-0.036553286,0.025601806,0.025190823,-0.026593,-0.02526335,0.027608369,-0.0034057172,0.02685893,0.022616137,0.02722156,0.010600937,-0.009065796,-0.015037132,0.016209641,-0.026157841,-0.020234855,0.008020207,-0.027366614,0.0039647743,-0.021745821,-0.015859097,-0.014855817,-0.007826803,0.0029886905,0.014215167,0.026496299,-0.035997253,0.025069946,-0.036722515,0.03232258,0.01946124,0.048326734,-0.03377311,-0.021298574,0.013622869,-0.0030884142,0.014771203,-0.0067147324,-0.041460905,0.040131252,0.011084446,-0.032999493,-0.016209641,-0.021528242,0.0095795235,-0.011017963,0.005605683,-0.06387155,-0.018808503,0.020138154,0.011894324,0.0064367144,0.029373176,-0.042307045,-0.07262307,-0.028140228,0.0028965217,0.01755138,-0.032781918,-0.0011030051,-0.03940599,-0.016209641,0.044579536,0.03367641,0.0398895,0.0020609575,0.016016237,0.0027786663,-0.0032546206,0.01313936,0.049801435,0.013743746,0.026182016,-0.036649987,-0.024755664,-0.025940262,0.016040415,-0.02238647,-0.036408234,-0.016294256,0.02015024,-0.02238647,-0.03515111,0.010504235,-0.015834922,-0.0027967978,0.021854611,-0.04489382,-0.015895361,0.0021425497,-0.00725868,0.018034888,-0.011694876,0.0024251002,0.00017206123,-0.025601806,0.028188579,0.028575387,0.011295981,0.021902962,0.046658628,0.030872054,-0.0020549137,-0.012003113,0.0070531885,0.026351245,0.009911936,-0.0637265,-0.019642556,0.01701952,0.00478674,-0.03892248,0.036384057,0.040759817,-0.0125591485,0.033362128,-0.0011173593,0.021491978,0.0035537917,0.027584193,0.06928685,-0.0063460567,0.0155569045,-0.045981713,0.004421086,-0.009724576,-0.037955463,-0.06295288,-0.045715783,-0.015339325,0.026302895,0.042742204,0.024876542,0.045715783,-0.018010713,-0.022084277,0.06343639,-0.0306303,-0.02685893,-0.035320338,-0.05908481,-0.012812991,0.020283205,0.007820759,0.041412555,-0.045014694,0.03413574,-0.02579521,0.05202558,-0.028067702,-0.007083408,0.048641015,0.012371789,0.0061949603,0.050381646,-0.037471954,-0.049656384,0.044386134,-0.0034873092,-0.0035658795,0.005369973,0.03926094,0.023994138,0.009531173,-0.034861006,0.007222417,-0.05212228,-0.012081684,0.0090416195,-0.031984124,0.028406158,-0.08369542,-0.021975487,0.015242624,-0.012359701,0.013550342,-0.000498241,0.0173338,-0.037206024,0.010788296,-0.042742204,0.00786911,-0.051010206,-0.029977564,-0.025239173,0.023969963,-0.0030733047,-0.014795378,0.0035084628,-0.016294256,-0.008908655,-0.005799087,0.013816272,-0.019231575,0.018868942,0.018216204,-0.024634788,-0.04366087,0.018808503,-0.035271987,-0.0049287705,0.008261962,-0.06561218,0.020234855,0.026157841,0.0020231833,0.006466934,-0.014529448,0.020875504,0.019799696,0.045014694,0.006823522,0.016983256,0.027995177,0.035852198,-0.0013228506,0.029905036,0.00092697755,-0.021612857,-0.0466828,-0.010335007,0.011972894,0.018977731,-0.0016318432,0.0186151,-0.023740295,0.020355733,0.06010018,0.020512873,-0.047504768,-0.023039207,-0.034208268,-0.0118097095,0.00840097,0.022410646,-0.012958043,-0.009615787,-0.005811175,-0.009083927,0.013792097,0.028116053,-0.021685382,-0.031307213,-0.04078399,0.05806944,0.024610613,0.018844767,0.016185466,0.02360733,0.021745821,0.010214129,-0.031500615,-0.039962027,0.036843393,-0.016656889,0.031500615,0.01356243,0.00877569,-0.03287862,-0.037254374,0.0030778374,0.0063037495,-0.014396483,-0.0081773475,-0.054733228,0.020089803,-0.024973243,0.029687457,0.0051523936,-0.011344332,0.012958043,0.06266278,0.044216905,0.00022230085,0.024115015,-0.00073546264,-0.0585046,-0.005360907,-0.017237099,-0.035441216,0.021105172,0.013284412,0.0063460567,-0.04206529,0.0102927,0.026979806,0.011447078,0.0070713204,0.008836129,0.01637887,-0.011265761,0.0005348819,0.06928685,0.03797964,0.0386082,0.028212754,-0.04010708,-0.022035927,-0.044700414,0.105791785,0.0116707,0.011054226,-0.00015836812,-0.0129822185,0.021068908,-0.00009301884,0.043249886,-0.012510798,0.0306303,-0.04600589,-0.035344515,-0.014287693,-0.0061163898,-0.026568824,0.004925749,0.01770852,-0.0054213456,-0.0032878618,0.023849085,0.007083408,-0.0037079102,-0.0013878222,-0.02041617,-0.035030235,0.025988612,0.024550173,-0.018494222,0.003281818,0.016511835,0.01135642,-0.022894155,0.0026502341,-0.027729247,-0.004158178,0.039962027,0.04605424,-0.027777597,-0.043104835,-0.0047202576,-0.019437065,-0.043346588,-0.05105856,0.021346927,-0.018917292,0.022011751,-0.0043153185,-0.008268005,0.02435677,-0.020500785,0.05802109,0.011658613,-0.010921261,0.010020725,-0.039478518,-0.06271113,0.030001739,-0.01007512,-0.028599562,-0.01356243,0.016318431,-0.023486454,0.013151447,-0.012825078,0.033362128,-0.008805909,-0.03285444,0.021588681,-0.027584193,0.050623402,0.027052334,0.0034782435,0.01204542,-0.0031246773,-0.004058454,-0.044386134,-0.0040554325,0.020561224,0.01584701,0.011229498,-0.0090234885,-0.014867905,-0.0026804535,0.015230536,-0.010909174,-0.041678485,0.021552417,-0.034474198,0.052412383,-0.0006266731,-0.022737015,-0.028164404,0.011876192,-0.0011158483,0.006207048,-0.0018751087,-0.03036437,0.008219655,0.03133139,0.02074254,-0.0032395108,0.018590923,0.0022845804,0.0027167166,0.022035927,0.0020639794,-0.0054757404,-0.014203079,-0.021383189,-0.020138154,-0.004735367,-0.00004915361,0.03292697,-0.0070652766,-0.0018237358,-0.009077883,-0.018143678,-0.061018847,-0.00059796474,-0.0013190733,-0.016681064,0.008606462,0.017188748,-0.03307202,0.019606294,-0.0042427923,0.07088243,-0.03972027,-0.019968925,0.00043402496,0.030267669,-0.0046779504,0.0043697134,-0.006388364,0.01361078,-0.018373346,0.006243311,-0.0047897617,0.016040415,0.011991025,0.026593,-0.024308419,-0.017309625,-0.00949491,-0.0058262846,0.0074520838,-0.030267669,0.008358663,0.0439268,-0.00744604,-0.00699275,0.031524792,0.011598174,-0.008358663,-0.028357808,-0.017611818,0.010486104,0.00835262,-0.02685893,0.018324994,-0.024102928,-0.01276464,0.01002677,-0.010661376,-0.017478853,0.021588681,0.034909356,-0.002573175,-0.052847542,0.0054364554,-0.031790722,-0.005786999,0.020730453,0.034812655,0.028913843,-0.013429465,-0.016898643,-0.0011218921,0.0042186165,-0.027511667,-0.00083934155,-0.0045752046,-0.0077421893,-0.020343645,-0.000058030535,0.060438637,0.04818168,0.01154378,0.01010534,-0.018965643,0.0039768624,0.017152485,-0.014589886,-0.026979806,0.02169747,-0.014565711,-0.0017436546,-0.033483002,-0.013526167,0.009162497,-0.024562262,-0.02302712,0.034280796,0.0029750918,0.062130917,-0.015327238,0.0346676,0.022205155,-0.010697639,0.0054364554,-0.035296164,0.020222768,0.006040842,0.016874466,-0.022120541,0.0037562612,-0.031935774,-0.0121179465,0.008497672,0.0071921977,-0.06599899,0.010909174,-0.023788648,0.009845453,-0.051493715,-0.021842523,0.012220692,-0.0048139375,0.010600937,0.0073009874,0.039430164,-0.022579875,0.012825078,0.021020558,0.0002530868,-0.012130034,0.022954594,0.013320675,-0.007548786,-0.0198964,0.008219655,0.015822835,0.050188243,-0.013816272,-0.018409608,0.000107561886,-0.0012707224,-0.013260237,0.0113685075,-0.01914696,-0.012970131,-0.018240381,0.013393202,-0.05395961,-0.024078753,-0.03754448,-0.02280954,-0.008074602,0.003009844,0.013042658,-0.0009360434,-0.008685032,0.038366444,-0.035707146,0.020730453,-0.012728376,0.008062514,-0.0054727183,0.0116707,0.0065575917,0.0010810961,0.003907358,-0.01044984,-0.013804184,0.013864623,-0.020234855,0.017672257,-0.013054745,-0.012160254,-0.010286655,-0.035779674,-0.041968588,-0.03285444,0.028381983,-0.009646006,-0.013659132,0.021371102,-0.02930065,0.013683307,0.009011401,-0.00047746522,-0.036649987,-0.050768454,-0.040276308,-0.023256786,0.017188748,-0.01303057,0.0386082,-0.025094122,-0.0049741,0.01018391,0.02930065,-0.006019688,-0.026834754,-0.03249181,0.024175454,-0.00063082826,-0.012776728,-0.007971856,0.029929211,0.012885517,0.022084277,-0.09626666,0.020645838,-0.008141085,0.006642206,0.03314455,0.0048381127,0.0466828,0.021093084,0.04158178,-0.036480762,-0.0030007781,0.0106190685,0.0233414,-0.0007256414,0.021854611,0.023039207,0.023039207,0.013465728,0.0035598357,-0.017793134,-0.028164404,-0.018071152,-0.009192716,0.04003455,0.018977731,0.027922649,0.0064367144,-0.004826025,0.040977396,0.0075366977,0.015351414,0.026617175,0.004605424,0.031041283,0.033942338,0.04109827,0.008328444,-0.025867736,0.02302712,-0.04387845,0.0048109153,-0.0070652766,-0.024550173,0.025891911,0.041412555,0.036359884,-0.023619419,0.02207219,-0.013900886,-0.018977731,0.0016907708,-0.05333105,-0.0034601118,0.009108102,0.011997069,0.024562262,-0.02632707,0.011447078,-0.015182185,-0.029687457,-0.010401489,0.042742204,0.03159732,-0.016390959,-0.028841317,-0.036625814,0.00007162923,0.008207567,0.0065031974,0.02930065,-0.01728545,0.008346575,-0.011295981,0.027971,0.028406158,0.027777597,0.015834922,-0.049051996,0.0015623387,-0.043080658,0.0053971703,0.038221393,-0.0033996732,-0.02557763,0.013369026,-0.01637887,-0.01633052,0.0226524,-0.0073856013,-0.008721295,0.029010545,-0.021153523,0.0032123134,-0.013864623,-0.006720776,0.0009700401,-0.062179267,0.01946124,0.014178904,-0.031887423,0.037471954,-0.024900718,0.052460734,0.051493715,-0.024308419,0.013417377,0.018131591,-0.0018312907,-0.022301856,-0.038269743,0.003496375,-0.02552928,-0.00078041386,0.031524792,-0.018856855,0.0032606644,0.021600768,-0.02690728,-0.018578837,0.025190823,0.012716289,0.015085483,0.0071559343,-0.03897083,-0.028502861,-0.012994306,0.05270249,0.023413928,-0.0399862,0.0051765693,-0.0054183234,0.02951823,-0.0058262846,0.025819385,0.016656889,0.0005073068,-0.021189785,-0.03372476,-0.014481097,0.017841484,0.03312037,-0.018107414,0.055700246,-0.027414965,-0.018603012,0.032370932,-0.009108102,0.025360052,0.00048766425,-0.025287526,0.015436027,0.0065394603,-0.007488347,0.0505267,-0.0066059427,0.009863585,-0.0036776909,0.015701957,-0.03807634,0.045328975,-0.004783718,0.03926094,-0.024284244,-0.042524625,-0.024260068,-0.0011755314,-0.012994306,0.024151279,0.013465728,0.017297538,0.022688664,-0.03174237,0.04849596,0.0082921805,-0.025940262,0.043467466,0.033628058,-0.0013802673,0.0043062526,0.004396911,0.027318263,-0.04823003,-0.006732864,0.033483002,0.06783632,0.017841484,0.041871887,0.002885945,-0.00789933,0.025553456,-0.0033392345,-0.0033785198,0.05255744,-0.03701262,0.021878786,-0.002926741,0.028261106,0.03324125,-0.0010161245,-0.0159558,0.050671753,0.023728209,0.003813678,-0.0022558721,0.028236931,0.017768959,-0.034208268,0.033265423,0.010014682,0.014094289,0.0069202236,-0.02739079,-0.021927137,0.007808672,-0.012704201,-0.0071257153,-0.031186337,0.009954243,0.0005031516,0.016415134,0.027753422,-0.02898637,-0.0006686024,0.016463485,-0.010165779,-0.03217753,-0.002124418,0.005487828,-0.021878786,0.01345364,-0.027608369,0.012680026,0.01642722,0.011471253,0.0044482835,-0.019739259,-0.019533766,0.013417377,0.012534973,0.0199931,-0.010606981,-0.004644709,0.016946994,-0.029324826,0.004705148,0.020718364,-0.0006157186,0.044047676,-0.011797622,-0.018179942,0.019231575,-0.0050284946,0.021709558,-0.018603012,-0.010492147,0.007294943,-0.030606125,0.004644709,0.012317394,0.00957348,0.0049952534,0.0065878113,0.00007115705,-0.010673463,-0.002168236,0.003632362,0.02898637,0.02323261,-0.012849254,0.0059139202,-0.044313606,-0.0017466765,0.018748065,-0.004514766,-0.023522716,0.0035628576,0.017104134,-0.00070448784,-0.010721814,-0.0059562274,-0.022616137,-0.0292523,-0.001953679,-0.011628393,-0.0014150195,-0.02025903,-0.0043183407,-0.019666731,0.0026804535,0.006956487,0.008709207,-0.002083622,-0.007294943,0.012680026,0.018820591,0.0132965,-0.019715082,0.016523924,0.013199798,-0.014747027,-0.03510276,0.013925062,-0.0023193327,0.008080645,-0.0049771215,0.020802978,0.018252468,-0.028454509,-0.009706445,0.003994994,-0.020077715,-0.03195995,0.0028904777,-0.020512873,0.0055150255,0.014879992,-0.044216905,-0.043999325,0.008606462,0.018034888,0.043950975,0.0075064786,-0.022458997,-0.002479495,-0.020670014,0.013078921,0.022362296,-0.013876711,0.0010690084,-0.006466934,0.0037532393,0.0015744264,-0.014323956,0.007857023,0.0060015563,0.018893117,-0.010087208,0.0119064115,0.005013385,0.014263518,-0.018554661,-0.016548099,-0.030170966,-0.004366691,0.019388715,0.016451396,0.002834572,-0.002521802,-0.007844935,-0.041775186,0.05110691,-0.010165779,-0.00038491856,-0.011066314,-0.0049831653,0.012619587,0.0071559343,0.029421527,-0.000764171,0.013574517,-0.052460734,0.0049831653,-0.006720776,-0.021141434,0.031839073,0.029349001,0.0010078142,-0.02030738,0.02286998,-0.010884998,0.017503029,0.011163016,-0.0038348313,-0.030436898,-0.039599393,-0.019231575,-0.015931625,-0.012849254,0.026593,-0.0047172355,0.012402008,0.01936454,-0.019968925,-0.035223637,-0.029010545,-0.013925062,-0.032781918,-0.014456921,0.04083234,0.0052037663,-0.0135019915,-0.016185466,0.027825948,-0.02903472,-0.013804184,0.015859097,-0.027487492,-0.018167853,-0.008733382,-0.0035991208,0.004680972,0.017370064,0.007494391,-0.003632362,-0.0038710947,-0.01744259,0.037375253,0.024924893,-0.0063279252,-0.011471253,-0.021854611,0.00050957326,0.00052241643,0.0048925076,0.020343645,0.027487492,0.009911936,0.00725868,-0.001592558,0.05333105,0.006188916,0.0032395108,-0.021600768,0.0048381127,-0.029953388,0.0126558505,0.011791578,-0.041291676,-0.0067389077,-0.00068711175,0.028357808,-0.00469306,0.00030313752,0.037931286,-0.0074158204,-0.012740464,0.020017276,-0.015871186,-0.028502861,0.018796416,0.027632544,0.016209641,0.012970131,-0.0068960483,-0.0125591485,0.0025414447,-0.011876192,-0.025408402,0.011120709,-0.009210848,0.013937149,0.026447946,-0.0024946046,0.007863066,-0.016137116,-0.014323956,-0.011549823,0.015290975,0.012154209,0.007579005,-0.025408402,0.0045208097,0.0037169761,0.00020775781,0.01888103,0.01037127,0.038148865,-0.026786404,-0.008769646,-0.001770852,0.009670181,0.028381983,0.013260237,-0.05221898,-0.015242624,-0.0078509785,0.01371957,-0.037399426,0.014771203,0.014384395,0.007917461,-0.011761358,-0.020452434,-0.0043002088,0.0063037495,0.008364707,-0.0044936123,-0.008678988,-0.024828192,0.0071196714,-0.0006840898,-0.00744604,0.023305139,-0.003985928,0.025360052,-0.005194701,0.00813504,-0.022676576,-0.033168722,0.042645503,0.011211366,0.00203376,0.00380159,-0.00066822465,0.020174416,0.015617344,0.0026381465,0.03350718,0.02021068,-0.027366614,-0.018095328,-0.012510798,0.01888103,-0.0505267,0.010189954,-0.022301856,0.028696263,-0.021890873,-0.006291662,0.009688313,-0.029397352,-0.015593168,-0.019159047,0.008074602,-0.004387845,-0.008739427,0.030436898,-0.00028613917,0.0055210693,-0.017406328,-0.04462789,0.0012133056,0.0318149,0.018167853,-0.017575555,-0.017926099,-0.058166143,-0.022168892,0.0025112254,-0.01936454,-0.004288121,-0.019811785,0.008340532,0.008824041,0.007264724,-0.011991025,-0.003587033,0.004735367,-0.00018112703,-0.020271119,-0.0008370751,-0.0043546036,0.00786911,-0.007216373,-0.004919705,-0.029421527,-0.014227254,0.02413919,0.007349338,-0.00041249368,0.0077663646,0.020500785,-0.02579521,-0.0479641,0.014239343,0.003901314,0.019340362,0.028647913,0.009210848,0.019243661,0.0072042854,0.016681064,-0.029639106,-0.044289432,0.02238647,0.01983596,-0.019860135,-0.0041974634,-0.027269913,-0.030920405,-0.00055527996,-0.0008461409,-0.011876192,-0.0028919887,0.06319464,-0.03935764,-0.029711634,-0.0021153523,-0.010093252,0.013465728,0.03292697,0.00088467053,-0.024997419,-0.0020957098,-0.0021108193,0.020706277,0.034764305,0.0193041,-0.03261269,0.014420658,0.020609574,0.021830436,0.005357885,0.018433783,-0.02313591,-0.020839242,-0.014928343,-0.013586605,0.021153523,-0.021649119,0.013320675,0.034861006,-0.016632712,-0.024175454,0.012825078,-0.008491628,-0.036674164,-0.0010055478,-0.029759984,0.04003455,0.024997419,0.0054122796,-0.010461927,0.006104302,-0.06459682,0.011066314,-0.0013372048,-0.023147997,0.051397014,0.0051221745,-0.02526335,0.025553456,0.0070531885,-0.03355553,0.015544817,0.03701262,0.02526335,0.0064427587,0.021588681,0.0013024526,-0.01026248,0.028865492,0.037689533,-0.02280954,-0.006388364,-0.008038338,-0.022120541,0.002477984,0.0052400297,0.005566398,-0.02898637,-0.013006395,-0.0034842873,0.0019143937,-0.01749094,0.009724576,0.0033513224,-0.018083239,-0.061115548,0.016971169,-0.0014633705,-0.02286998,-0.021769997,0.00212744,0.0009473756,-0.017563468,0.024066664,-0.0015895361,0.025771035,0.049003646,0.026036965,-0.00090582407,0.03839062,-0.011864104,0.056570563,0.036722515,-0.0011166037,0.048520137,0.017853573,0.056812316,-0.036674164,-0.0027847101,0.011852017,0.0022815585,0.0372302,0.0030491292,-0.0048139375,0.03067865,-0.0134052895,-0.017188748,-0.009446559,-0.043975152,-0.010056989,-0.0464894,-0.0038408753,0.030340195,-0.008128996,-0.011984982,-0.011489385,-0.027971,0.006732864,0.02047661,-0.006599899,-0.02335349,0.012474534,0.014396483,0.008237786,-0.039019182,-0.0016152225,0.015109659,-0.0058323285,-0.005590574,-0.022023838,-0.005055692,-0.00893283,0.0173338,0.012643763,-0.01515801,-0.010238305,0.00874547,-0.034643427,-0.0049922313,0.0015442071,-0.0066542937,0.010117427,0.0023374641,-0.029349001,-0.028309457,0.008503716,-0.015520642,0.007983943,-0.0110784015,-0.040227957,0.005977381,-0.043830097,-0.022217242,-0.0061073243,0.011108621,0.016995344]},{"id":"class-BitField","type":"class","source":"main","text":"Class: BitField\nProperties: [Symbol.toStringTag]: string, bitfield: number, defaultBit: number, Flags: Record\nMethods: add(bits: BitFieldResolvable[]) -> this; equals(bitfield: BitField) -> boolean; freeze() -> Readonly>; has(bit: BitFieldResolvable) -> boolean; remove(bits: BitFieldResolvable[]) -> this; resolve(bit: BitFieldResolvable) -> number; serialize() -> Record; toArray() -> S[]; toJSON() -> number; valueOf() -> number","meta":{"url":"/docs/classes/BitField"},"embedding":[0.006078237,0.0012443577,0.0035672083,0.018231736,-0.004897102,-0.0131620765,-0.009169421,-0.019600308,0.0055010575,-0.013899914,0.0642157,0.020409549,0.03796295,0.003965879,0.048197474,0.015089975,-0.015327987,-0.0077651488,0.04691221,-0.012007717,-0.032726683,0.001566418,0.038129557,-0.0035582827,0.013066871,-0.0095680915,-0.028989889,-0.015125677,0.008401832,-0.00545048,0.008229272,-0.02161151,0.059550658,0.0059473305,-0.013185877,-0.016018223,0.038819794,0.02045715,0.0024247495,0.017946122,-0.018422145,-0.010561792,-0.04336583,-0.015506497,0.018600656,0.048554495,-0.016410943,0.015078074,-0.052077074,0.038010553,0.009579992,0.039581433,0.032560073,0.02451526,0.0065929387,0.022658763,-0.02882328,0.05279111,0.038248565,-0.01965981,0.07492625,-0.02960872,-0.038224764,0.013007368,-0.017481998,0.03156042,-0.058884226,0.0758783,0.013542895,0.021932827,0.03017995,-0.021123584,0.023777422,0.057932176,0.038605582,-0.0032696929,0.031465217,-0.004459754,0.03017995,-0.027585616,-0.041295122,-0.0025511936,0.00076238293,-0.03798675,0.055028427,0.032774284,-0.04557934,0.019314691,-0.036463473,-0.044889107,-0.011061618,-0.0331075,-0.052077074,-0.005971132,-0.021194989,-0.05336234,-0.03217925,0.0039361273,-0.040438276,-0.0370109,0.05003017,0.042080563,-0.014494944,0.019505102,0.03617786,-0.005980057,-0.021920927,-0.0026716872,0.008508937,0.005765846,-0.054028776,0.022539757,-0.0028115194,0.03522581,-0.03915301,-0.013090672,-0.021849522,0.004909002,0.017565303,-0.0050726356,-0.03401195,-0.024562862,0.0026553238,0.010139321,-0.010829557,-0.014506845,0.009603794,-0.047816657,-0.0050339587,-0.017160682,0.02958492,-0.03289329,0.014340237,-0.0077591985,-0.017946122,-0.008163819,-0.02453906,0.019481301,-0.018338842,-0.051267833,0.02684778,-0.040557284,0.05141064,-0.009615694,0.032679077,0.051125027,-0.04070009,-0.01478056,0.033488322,0.031179601,0.0544572,-0.012138624,-0.003599935,0.0038260466,0.014566348,-0.06878553,0.011174674,0.039867047,-0.0059413803,0.0002820817,0.02549111,0.0132453805,-0.03367873,0.019743115,-0.0017717035,0.0130787715,0.012793157,-0.025800526,-0.036130257,-0.044341676,0.007354578,-0.05003017,-0.020778468,-0.039272018,-0.044103667,0.014673454,-0.021694815,-0.05740855,-0.025848128,-0.022634963,-0.0048613995,0.022158938,-0.035773236,-0.02996574,0.024098737,-0.007973409,0.006598889,-0.010305929,0.046864606,0.005840225,-0.019397996,0.065120146,0.053171933,0.040057458,0.027204797,-0.01518518,0.0039063757,0.0056974175,-0.026514562,-0.04950654,-0.008931409,0.013495293,0.010294029,0.009740651,-0.014364038,-0.061026335,0.018291239,0.019981127,-0.04795946,-0.023813123,0.013173977,-0.01206722,-0.014102224,-0.024063036,-0.012876461,0.031822234,0.018326942,-0.016577551,-0.046269577,0.031441417,-0.012674151,-0.012013667,0.015851615,0.013483393,-0.0046055363,0.01730349,-0.01891007,0.004421077,0.029442113,-0.021980429,-0.041223716,0.020945076,-0.022861075,-0.008140018,-0.058312997,-0.0028576343,-0.03867699,0.040414475,-0.026752574,-0.064786926,0.013126374,-0.031869836,-0.021302095,0.045055714,-0.027895033,0.021278294,0.00008507077,-0.00091932225,0.009419334,-0.001162541,-0.022087535,-0.008937359,-0.02551491,-0.00089849613,-0.025776723,-0.031869836,0.027680822,0.06769068,0.0081757195,-0.0067476467,-0.051696256,-0.09672817,-0.020730864,-0.069785185,-0.031036794,-0.030727379,0.055599656,0.01616103,-0.004596611,-0.039557632,0.045674548,0.025776723,0.022337448,-0.052457895,-0.0060425354,-0.03582084,0.017232085,-0.0006177161,-0.011722102,-0.00016056528,0.02202803,-0.010383284,0.017755711,0.0018312066,-0.0084256325,-0.026490761,0.031203402,0.0016482347,0.015970621,0.029442113,0.063168444,0.030013341,0.09244395,-0.012156474,-0.023610814,0.009520489,0.050791807,-0.05431439,0.07354578,0.0046233875,0.05274351,-0.023277596,0.019802617,-0.03327411,0.020100132,0.02606234,0.0013499756,-0.022361249,0.013209678,-0.037510727,0.037891548,-0.017815216,-0.073878996,-0.032060247,-0.035202008,-0.04457969,0.056170885,-0.009175371,-0.0060008834,-0.010597494,0.0011707227,0.011222277,-0.007824652,0.010526091,0.0013611324,0.019921623,-0.033464517,0.038296167,0.027204797,-0.01265035,0.004299096,0.009901308,0.00350473,0.009942961,-0.011805407,-0.038795993,-0.019540804,0.038819794,-0.04027167,-0.0056914673,0.027371407,-0.016482346,0.015232783,0.017684309,-0.0039777793,0.010829557,-0.0056914673,0.011466239,0.007539037,-0.017958023,-0.0024530136,0.021064082,-0.061169144,-0.046793204,-0.020516654,-0.05212468,-0.0067654974,-0.082019016,-0.024217743,0.05179146,-0.0071106153,0.02841866,0.004697766,0.014875764,0.003873649,0.020564256,-0.059693467,-0.046221975,0.0076996954,-0.029918136,-0.02062376,0.013888014,0.025729122,-0.010728401,0.03541622,-0.048744906,0.02218274,0.00010162006,0.008711248,-0.023598913,-0.014911466,0.039962254,-0.020802269,-0.0409381,0.009847756,0.004549009,-0.027133394,0.03215545,-0.05436199,0.03777254,0.042913605,0.02646696,0.022075634,0.015292286,0.010805755,0.008812402,0.0032072146,0.05279111,-0.0031774633,-0.028490063,0.013650001,-0.005340399,0.012352834,-0.006384678,0.015256584,0.014518746,0.02996574,0.04500811,0.053647954,-0.010240476,0.003076308,-0.008758849,0.04031927,0.011841108,0.03915301,-0.0005797829,-0.01654185,-0.00021755804,0.026014736,0.012602747,-0.023848824,0.007955559,-0.021040281,-0.054266788,0.0077532483,0.025657717,-0.014625851,-0.02803784,-0.012156474,-0.030060943,-0.021456802,0.013578597,0.03546382,0.0039986055,0.03798675,-0.025943333,-0.025348302,0.0016586477,-0.028204449,0.027799828,-0.03539242,0.034226157,0.03451177,0.03217925,-0.044436883,0.004459754,0.008312577,-0.026919182,0.046436187,-0.032560073,0.0036564628,-0.013769007,-0.056980126,0.0038498477,0.005920554,0.025871929,0.043627642,-0.023015782,0.0022938428,-0.012114822,-0.0051261885,0.019743115,0.011305581,0.065453365,-0.01380471,0.0018936847,-0.0142212305,0.03524961,0.025038887,0.0103773335,-0.0074259816,-0.013602398,0.010823606,0.02084987,-0.017232085,0.0024738396,0.04415127,-0.005509983,0.034987796,-0.026252748,0.027419008,-0.0038855495,-0.02412254,-0.0011067569,-0.032869488,0.074450225,0.062216397,0.010252377,-0.010442787,0.0013142738,-0.03617786,-0.051601052,0.023991633,-0.011109221,0.030941589,0.009228924,-0.034345165,-0.013745206,0.04460349,-0.046959814,0.04186635,-0.025372103,0.0114067355,-0.011168724,0.016315738,0.01808893,0.015268484,-0.009919159,-0.036534876,0.017612904,0.018588755,0.011025917,-0.029632522,-0.0105439415,0.000783209,-0.012626548,0.021135485,-0.0005392464,-0.018077029,-0.032774284,-0.014685354,-0.021361597,0.010413035,-0.021159288,0.01772001,0.004403226,-0.029775329,-0.00040945542,0.0015225344,-0.030441763,0.003736792,-0.027014388,0.0038260466,0.018731562,0.009068266,0.009841805,-0.015197081,0.050172977,0.00700946,0.008621993,-0.016339539,0.0053582503,0.014161727,0.019302791,-0.013971318,0.010413035,-0.0048137973,0.0075687887,0.0055546104,0.043699045,0.024063036,0.0057926225,0.03931962,-0.06269242,0.019338494,0.037891548,0.03782014,0.0005611882,-0.05102982,0.017243985,0.0006969295,-0.045650747,-0.0116566485,-0.0014667504,0.021456802,-0.010484438,-0.009853706,-0.017553402,0.03934342,-0.035797037,-0.027133394,0.018374544,-0.0051113125,-0.0047423937,0.0019264114,-0.011888711,-0.013292983,-0.027038189,0.022218442,0.0066881436,-0.008502987,-0.039414823,-0.029323107,-0.0034184507,0.0069737583,0.03858178,0.061740372,0.00719987,-0.0015961695,-0.00062664156,-0.018612556,0.021361597,0.009532389,0.025276897,0.014959068,-0.015982522,-0.010752202,0.03467838,-0.0662626,0.035511423,0.03213165,0.024063036,-0.016470445,0.0037903448,-0.020183437,0.022266043,0.021813821,-0.01964791,-0.005527834,0.0120196175,-0.03217925,0.024241544,0.02240885,-0.049982566,0.025324501,0.019493202,-0.005477256,0.0099310605,-0.0099310605,0.012864561,-0.027823629,0.022682564,-0.021980429,0.020112034,0.017374892,0.010918811,-0.0040402575,-0.015542198,0.007973409,0.0145544475,-0.017005974,0.006206169,0.009038514,-0.0045817355,-0.02356321,-0.0009765939,0.06659582,0.043127816,-0.017505798,-0.017648606,0.05436199,0.01888627,0.02958492,0.0019963277,0.026157543,-0.03541622,0.023027683,0.037653536,-0.01850545,-0.033416916,0.01891007,-0.014768658,0.030108547,-0.026990587,-0.009984612,0.008574391,-0.027799828,0.032203056,0.0016705483,0.0065691373,0.017874718,0.004260419,-0.003466053,-0.028704274,0.024467656,0.020695163,-0.0062775724,0.0018654208,-0.005158915,0.018326942,-0.004980406,-0.015101876,0.04945894,-0.01420933,-0.0034184507,-0.008437534,-0.0063192244,0.004049183,-0.029918136,0.04248518,-0.0041741394,-0.012400437,-0.03915301,-0.048007067,-0.01868396,-0.040771496,-0.023920229,0.01733919,0.020588057,-0.022230342,0.0021227715,0.029108895,-0.013899914,-0.035963647,-0.022813471,0.020754667,0.047673848,-0.018136531,-0.035773236,-0.045674548,-0.012412338,0.012388537,-0.05369556,-0.030822583,-0.0057509704,-0.0144711435,-0.025657717,0.043342028,0.0116864005,-0.022266043,-0.033178903,-0.0034214258,-0.01926709,0.028180648,-0.02315859,-0.0036624132,0.015458894,0.05279111,0.021183088,-0.009669247,-0.01207317,-0.0155302975,-0.03384534,-0.00077279593,0.032036446,0.03227446,0.007687795,0.039629035,-0.005730144,-0.0025095413,0.0035761336,0.028204449,-0.006563187,-0.0052303188,-0.015161379,0.030513167,0.003448202,0.0024530136,0.016399043,-0.0008300676,-0.0053642006,0.014340237,0.035797037,-0.013959417,-0.006967808,-0.0011997303,-0.03132241,0.018553052,-0.029132696,0.016994072,-0.0034422518,0.007491435,-0.0146377515,-0.018053228,0.02237315,0.010948562,-0.027680822,-0.015875416,-0.025015084,0.0019502126,-0.06454892,0.039414823,-0.02644316,-0.013400088,-0.016660856,0.008021012,-0.021135485,-0.005861051,0.009520489,0.017958023,-0.01244804,0.051601052,-0.040819097,-0.017101178,0.064120494,-0.014328336,0.0054623806,-0.021885224,-0.055456847,-0.043889455,-0.014256933,-0.010115519,0.015863515,-0.023396602,-0.03991465,0.005685517,0.0060484856,0.0134119885,-0.03384534,-0.027133394,-0.03167943,0.0070808637,-0.030679775,0.010204774,0.01616103,-0.01244804,0.004852474,-0.071356066,0.018136531,0.021528207,-0.027419008,-0.025752923,-0.020718964,0.0039391024,0.04596016,-0.0030911837,-0.033226505,0.012198127,-0.024824675,0.013959417,0.019064778,-0.01168045,-0.017541502,0.028204449,0.00021718616,0.007991261,-0.0067416965,-0.01400702,0.036630083,-0.016898869,0.043342028,-0.018434048,0.03639207,0.010186924,0.004450829,0.011787555,-0.03325031,0.03234586,0.02956112,0.002490203,0.021873323,0.007092764,-0.029108895,0.01694647,0.02453906,0.015435093,0.021397298,0.019302791,-0.009633545,-0.028204449,0.039843246,0.019909723,-0.01343579,0.009240825,-0.024443856,-0.023146689,-0.026657369,-0.025086489,-0.00700351,0.03167943,-0.031822234,0.032702878,-0.017029775,-0.019624108,-0.008270925,-0.02706199,-0.004688841,-0.022277944,0.044555888,-0.0027416034,0.012043418,0.06869033,-0.04024787,0.021742417,-0.028680474,0.0056111384,-0.0034749785,0.021944728,-0.03175083,-0.012555145,0.021647211,-0.005486182,0.032631475,0.010353532,-0.042961206,-0.051696256,-0.03444037,0.0052630454,-0.015125677,0.04417507,-0.035678033,-0.018077029,-0.002717802,-0.03677289,0.0661198,0.038034353,-0.0154469935,0.05183906,0.0025303676,-0.011216327,-0.0004555703,0.007437882,-0.0080924155,-0.035178207,-0.008116217,-0.052315086,0.012156474,0.009175371,0.004242568,-0.0121326735,-0.04379425,-0.03479739,-0.0051321387,0.028537666,-0.004534133,-0.009514539,-0.010496339,-0.012924064,-0.03546382,0.008699347,-0.007973409,-0.007539037,0.009324129,0.047412034,0.03539242,-0.03798675,-0.030941589,-0.0014823698,0.01149004,0.00043883504,-0.025419706,-0.01769621,0.031846035,0.05293392,0.00033135765,0.005801548,-0.027728423,-0.002061781,0.027300002,-0.017850917,0.01769621,0.03384534,-0.026514562,-0.028490063,-0.00267615,-0.023408502,-0.013316784,-0.019933524,0.0069261556,-0.0043913256,0.0121326735,-0.019231388,0.009907259,-0.024634266,-0.008479185,-0.013899914,-0.010555842,-0.014173628,0.016625155,-0.0014898077,0.039200615,-0.014066523,0.026157543,-0.026514562,-0.006598889,0.012816958,0.049554147,-0.042699393,0.047626246,0.028847082,-0.024705669,-0.0061942684,-0.020683262,-0.018945774,0.0015210469,-0.022694467,0.048982915,0.0032399413,-0.006325175,-0.000109522814,0.051125027,-0.02591953,0.023229994,-0.012293331,-0.019493202,0.0013923715,-0.03760593,0.011049718,-0.04655519,0.023122888,-0.0045609092,0.039200615,0.006170467,-0.018005624,0.003677289,0.02375362,0.052648306,0.0038409224,0.036701486,0.016696557,0.011222277,-0.010674848,-0.0063192244,-0.0005712293,0.008949259,0.035035398,-0.017553402,0.0072653233,-0.0013328685,-0.018553052,-0.0044359528,-0.006563187,-0.018160332,0.017946122,0.02684778,-0.008580341,0.048506893,-0.0052600703,-0.023801222,0.0056557655,-0.008449434,-0.020611858,-0.007497385,-0.018005624,0.03134621,0.010050066,0.015851615,-0.0095680915,-0.008354229,-0.033202704,-0.014185528,-0.029489715,-0.032774284,0.049982566,-0.024824675,-0.031869836,-0.014697255,0.011626897,0.0087886015,-0.0045728097,-0.038605582,0.045079514,0.020778468,-0.001503196,-0.026205147,-0.0148876645,-0.0115733445,0.0051142876,-0.005004207,0.046293378,0.0026835878,0.0080924155,-0.018933872,-0.019636009,-0.0027609419,0.0054534553,-0.0019531879,0.008752899,0.01773191,-0.011376984,0.0075092856,-0.0058670016,-0.006896404,0.0034898543,0.0045876857,0.027728423,0.017386792,0.04422267,0.01499477,0.024170142,-0.004650164,-0.020219138,-0.0008278363,0.018410245,0.0046799155,0.009818004,0.011781605,-0.041152313,-0.006563187,0.025443507,-0.021397298,-0.0010710551,0.03929582,-0.02684778,-0.018303141,0.007027311,-0.007283174,-0.03460698,-0.02901369,0.018207936,0.020933175,-0.01851735,-0.020159636,-0.006997559,-0.009722799,0.018148432,-0.018422145,0.04422267,-0.017291589,0.0037219161,-0.026181344,0.05507603,-0.020754667,-0.008610092,-0.042770796,0.030084746,0.01381661,-0.01244804,0.0071165655,-0.03936722,0.0025407805,0.0025511936,-0.009693048,0.014709156,-0.025562514,-0.04110471,0.0023548335,-0.0035196058,0.011900611,-0.006018734,-0.027585616,0.013840411,0.03620166,0.0032786184,-0.06673863,0.01244804,-0.023539409,-0.0036267112,-0.000635567,-0.0136262,0.024705669,0.0023964855,0.005587337,0.008407782,-0.02708579,-0.03365493,0.0331075,-0.012674151,-0.026990587,0.0447463,-0.0006545336,0.007860354,0.017041676,-0.004828673,0.02511029,0.022170838,0.0036683634,0.01439974,-0.015708806,-0.004459754,-0.00065155845,-0.008544639,-0.021159288,-0.0041979407,-0.045198523,-0.0023637589,-0.01851735,0.04591256,0.024051135,0.0077115963,-0.002735653,-0.0021644237,-0.028751876,-0.0022417777,-0.014697255,-0.023825023,0.03486879,-0.008264975,0.018850569,-0.019885922,0.024039235,0.0034511774,0.0053225486,0.03677289,0.0038498477,0.020088231,-0.0004555703,0.0022878926,-0.0052481694,0.009074216,-0.021290194,-0.028204449,-0.02960872,-0.0037903448,0.02082607,0.0075449874,-0.037106104,0.008776701,0.027014388,0.016827464,-0.00020640122,-0.077258766,-0.016101528,-0.019100482,0.004346698,-0.010972364,-0.008026962,-0.03791535,-0.009829905,-0.011543593,0.031798434,0.010169072,-0.01323348,-0.011359134,-0.012793157,-0.020611858,-0.031631824,-0.0018148433,-0.04405606,0.01576831,-0.00025195826,-0.005432629,0.0013544384,0.018660158,-0.011983915,0.011644748,-0.011341282,-0.029680125,-0.0009661809,-0.010061967,0.0028858983,0.021968529,0.0064739324,0.015720708,-0.030727379,0.018672058,0.03558283,-0.00091262814,0.026633568,0.0031447366,-0.008979011,0.021552008,-0.010930711,0.022206541,-0.0120196175,-0.0046680146,0.009455035,0.020088231,0.0041979407,-0.030298956,0.030917788,-0.031869836,-0.008074565,-0.01226953,-0.024420055,0.0136143,-0.0007809776,-0.005093462,0.047578644,0.008520838,-0.0012339447,-0.017184483,-0.0023578086,-0.0035582827,0.0067416965,-0.0059265043,-0.028133046,0.01537559,0.007812751,0.004897102,-0.016494248,0.03365493,-0.025752923,-0.0052600703,-0.013578597,0.020088231,-0.01518518,0.02258736,0.030251354,-0.03936722,0.00037970388,-0.0058521256,-0.008782651,0.006402529,-0.010567742,-0.011638798,-0.008770751,0.023444204,-0.01968361,-0.015482695,0.00086056296,0.013114474,-0.00022797109,0.00680715,-0.016589452,0.020302443,-0.017017875,0.03075118,0.009211073,-0.019933524,0.02841866,-0.0067654974,-0.003698115,0.017113078,-0.017160682,-0.009008762,0.044532087,-0.023110988,-0.0056349393,0.03929582,-0.012947865,-0.003326221,0.021873323,0.008336378,-0.008854055,-0.030441763,0.0025630943,-0.036273062,-0.04186635,-0.020909375,-0.02549111,0.029465914,0.017386792,0.018755363,-0.0037427424,0.0013685703,0.020100132,0.007907956,-0.0037486926,-0.010175022,-0.04398466,-0.032607675,0.031988844,0.0062002186,0.005477256,0.024289148,0.011037817,0.009466936,0.015351788,-0.045793552,0.023075284,0.0016988122,-0.010294029,0.03296469,0.02082607,-0.02161151,-0.021540107,-0.035154406,-0.019874021,-0.0040878598,0.035773236,-0.029275503,-0.027323803,-0.00034641934,-0.007783,0.02760942,-0.008984962,0.040985703,0.008169769,-0.02839486,0.0053642006,0.009722799,0.011085419,-0.003894475,0.024848476,-0.005331474,0.011127071,-0.034202356,-0.015518397,-0.009074216,-0.015399391,0.012156474,-0.027395207,-0.028728075,0.0066702925,0.0011365084,-0.0311558,-0.023015782,-0.007336727,-0.0045698346,-0.038486578,0.003153662,-0.004052158,-0.0148876645,0.001197499,0.033583526,0.02102838,0.005718244,0.021171188,0.0311558,-0.0044270274,-0.0012882411,-0.005932455,-0.018077029,0.010401134,0.020885574,-0.0016809613,0.0028323454,-0.0015976571,-0.024610464,0.0043109963,0.047721453,-0.01929089,0.007051112,-0.0043318225,0.017898519,0.024253447,-0.017113078,-0.03915301,0.008205472,-0.026157543,0.017541502,-0.0044686794,0.017362991,0.011722102,-0.012233828,-0.0009884945,-0.0233609,0.0023935104,0.0036326617,-0.0052035423,-0.0016006322,-0.014364038,-0.0011841109,0.015256584,-0.020647561,-0.015625503,0.0031179602,0.0009014713,0.021909025,-0.01322158,0.012519443,-0.004843549,0.003272668,-0.03405955,-0.021302095,-0.004316947,-0.027704623,-0.008401832,-0.024872277,0.00089031446,-0.0010881622,0.0022893802,0.021397298,-0.048316482,-0.019993028,0.00573907,0.004656114,-0.011008065,0.0053433743,0.020885574,0.039605234,0.04979216,-0.024277247,-0.005730144,0.009478837,0.0085386885,0.028061641,0.0031090346,0.012483741,-0.017077377,0.02123069,-0.031631824,-0.058646213,-0.012983567,0.01303117,0.013650001,-0.003233991,-0.004123562,0.005191642,0.019017177,-0.037082303,0.025467308,-0.005447505,-0.0052630454,0.0063430257,-0.0042871954,-0.0103475815,-0.0029796155,0.01441164,-0.007051112,-0.00053850265,-0.004245543,-0.0101809725,-0.0059503056,0.01186491,0.0049149524,0.0052035423,-0.014673454,0.008270925,-0.0005295772,0.039771844,-0.031988844,-0.036630083,0.02120689,-0.0132453805,0.034963995,-0.013019268,0.030870186,-0.0013849336,-0.04460349,0.067024246,-0.0061883177,-0.02179002,-0.0034601027,-0.024027335,-0.021064082,0.0050101574,-0.00066420285,-0.021147387,-0.04805467,0.0046828906,0.065405756,0.004052158,0.00041057108,0.027990237,0.016375242,0.01245994,0.021373497,0.0054980824,-0.018386444,0.0015292285,0.030298956,0.038105756,0.009187272,0.010645097,-0.023503708,0.0025735071,0.002743091,-0.02199233,-0.0006794505,-0.0019308742,0.020968877,0.018303141,0.013150175,0.009907259,0.023789322,-0.002981103,0.0026106967,-0.014959068,-0.0036921646,-0.042889804,-0.0070213606,-0.029227901,0.05974107,-0.02084987,0.010145271,0.062025987,-0.012686051,-0.007842503,0.0068785534,0.002423262,0.01965981,0.014102224,0.0027698672,0.039843246]},{"id":"class-CategoryChannel","type":"class","source":"main","text":"Class: CategoryChannel","meta":{"url":"/docs/classes/CategoryChannel"},"embedding":[0.0039052747,-0.005364893,-0.05191011,-0.02307116,0.03579423,0.04515275,-0.01778402,0.02120511,-0.012320169,-0.0020887034,0.018900823,-0.0012369648,-0.011443691,0.05196666,0.048375927,-0.0039406163,-0.025304766,0.00016599626,-0.023862818,0.07385033,0.010461188,0.01929665,0.035850774,0.04184475,-0.027665602,-0.0044919495,-0.02229364,0.03336271,0.008828394,-0.0028997988,0.10336785,-0.037320994,-0.0010452352,0.0112881875,0.007881233,0.020766871,0.0018943233,0.0139388265,0.020356907,-0.0025446133,-0.015988654,0.018292943,-0.02606815,-0.0007920992,0.035765953,0.01998935,-0.034748107,0.05312587,0.02038518,-0.0060752644,-0.057027612,0.0016654847,0.018208122,0.006198961,0.003226711,0.016158294,0.0148435775,-0.0051846495,-0.023622494,-0.034635015,-0.02411728,-0.06197547,0.030818094,-0.016059337,-0.000010140074,-0.03760373,-0.056999337,-0.002480998,-0.033899903,-0.009556437,0.005651162,-0.016667217,0.004127928,-0.010758059,0.00083495124,0.014476023,-0.044954836,0.028216934,0.033560622,-0.012157597,-0.04297569,0.051938385,-0.02120511,0.019268377,0.011083204,-0.012270691,-0.05598149,0.025149262,0.0033875164,-0.016214842,0.0074005835,-0.0022283038,-0.048743483,0.007831754,0.026039876,-0.03616178,0.021459572,-0.036048688,-0.007033028,-0.017642653,0.059883233,-0.0073157633,-0.0052977437,0.023311485,0.004530825,-0.03808438,-0.027397003,0.028697584,-0.070231326,-0.0641808,-0.038791217,0.014631527,-0.014433612,0.009938128,0.005972773,-0.026082287,0.10568627,0.006319123,0.019310787,0.0015806643,0.001869584,-0.020031761,0.015154586,-0.054794006,0.033419255,0.016002791,0.0011998558,-0.009273701,-0.039611146,-0.07673423,0.011302324,0.0064816955,-0.0344371,-0.011676948,-0.023961775,-0.018717045,-0.04727326,-0.0067821015,-0.030648453,-0.024668612,0.022717742,0.0033415721,0.084933534,0.004177407,-0.004219817,-0.027354592,-0.017981933,-0.014228629,0.034719836,-0.016879268,-0.011917273,-0.0052588675,-0.018292943,0.013627818,-0.024484834,-0.02137475,0.010998384,-0.006972947,0.008482045,-0.051853564,0.047216713,-0.029376147,-0.0110761365,0.0057571875,-0.031638026,-0.044219725,0.0013809828,0.017812293,-0.055840123,-0.0016690189,0.0036402107,0.0064569563,-0.02980025,-0.03129874,-0.032288317,-0.030931188,-0.031129103,-0.050609533,-0.01899978,-0.008178105,0.07311522,0.054143716,0.0031153841,-0.040996548,0.02034277,0.061523095,0.0009065185,-0.019692479,0.020102445,-0.0064781616,-0.047555994,0.0057006404,0.02082342,0.037632003,0.026054014,0.008248788,-0.0039547533,0.013380425,0.014518432,-0.034776382,0.003933548,-0.015522141,0.043145332,-0.027029447,0.0010602556,-0.0028821279,-0.037547182,0.0071885325,-0.05663178,0.00060964696,0.031129103,-0.009485753,-0.008941488,0.0019526373,-0.0688742,-0.018377762,-0.04198612,-0.009443343,-0.041307557,-0.049167585,-0.005442645,-0.006704349,0.030082984,0.0055981493,-0.018335352,0.04110964,0.0035394863,-0.046311963,0.03426746,-0.014970808,0.007612635,0.019480428,0.013217852,-0.048375927,-0.018010207,0.011691084,-0.021530256,0.02523408,0.004714603,-0.048121464,-0.035850774,0.027142541,-0.012624109,0.008729437,-0.025516817,-0.010687375,0.014574979,-0.020766871,-0.022929793,0.02818866,0.08662994,0.030818094,-0.045661673,-0.0026099957,0.02611056,0.011514375,0.0146032525,-0.0032761896,-0.0048807096,-0.023820408,0.016059337,-0.021544393,-0.013309741,-0.038536754,-0.04110964,-0.009761419,0.0080226,-0.020795146,-0.0082134465,0.040911727,0.018816002,-0.018151576,0.05123155,-0.01522527,0.013960031,-0.010150179,0.012723067,0.013903485,0.006350931,-0.027905926,-0.028655173,-0.013154237,0.018504994,0.033277888,0.015705919,0.036981713,-0.0077257287,-0.005442645,0.033815082,-0.022816699,-0.0031595614,0.015154586,-0.04020489,-0.06661232,-0.03457847,0.061070718,0.046679515,0.03248623,0.044870015,0.04150547,-0.00687399,0.041364104,-0.0027213225,-0.024668612,0.019593522,0.024187963,0.08097525,-0.0507509,0.007336968,-0.033899903,0.0094786845,-0.0105035985,-0.00587735,-0.011175093,-0.052249394,-0.013719707,-0.035285305,-0.006357999,0.06548138,0.051146727,-0.028202796,-0.025757141,0.02208159,-0.033899903,-0.008178105,-0.052927956,-0.029602334,-0.008884941,0.06559448,-0.018095028,0.009506958,-0.046255413,0.015522141,-0.0124332635,0.036840346,-0.0020727995,0.016384482,0.05541602,-0.04549203,0.008538592,0.019353198,-0.02042759,-0.009952266,0.036359698,0.017034773,0.04289087,0.0070613017,-0.0023060557,0.027312182,0.026365021,-0.025827825,-0.021304067,-0.0102915475,-0.02441415,-0.012609973,-0.068026,0.023042887,-0.034493648,-0.02523408,0.04416318,0.016299661,-0.011429555,-0.005651162,0.034295734,-0.0019968145,0.018759456,-0.057875816,-0.03296688,0.019141147,-0.05742344,0.012913913,-0.0034511317,0.044700373,-0.031807665,-0.022123998,-0.025262356,0.023608357,0.007004755,-0.002233605,0.016836857,0.015691781,-0.0014366462,0.029687155,-0.0072380113,0.04492656,-0.010093633,-0.022095725,0.03045054,-0.041901298,0.015069765,0.0051917178,-0.00591976,-0.005442645,-0.001166281,0.01222828,0.021106154,0.020074172,-0.027679738,0.039695967,0.022222957,0.0015780136,0.013507656,0.008050874,0.046114046,0.0021523188,0.010461188,-0.030478813,-0.018448446,-0.0054532476,0.01470221,0.0019579385,-0.016271388,0.038282294,0.024484834,-0.02319839,-0.008015532,-0.0679129,-0.0016743202,0.037801646,0.0042268853,0.019395608,-0.044983108,0.0096907355,0.015592825,-0.021233384,0.029517515,0.06457663,0.011380076,-0.034210913,-0.009697804,0.01587556,0.026025739,0.005403769,0.006697281,0.054624364,-0.008425497,0.0012996966,-0.029630609,0.021714034,0.032542776,-0.050241977,0.0008689678,0.020314496,-0.021445435,0.014108467,-0.016158294,-0.0009789693,-0.034295734,-0.02615297,-0.0362466,-0.044785194,-0.013917621,-0.042523317,0.023834545,-0.024668612,-0.01123164,-0.003820454,0.0669516,0.0015250009,0.018024344,0.016455166,0.048602115,-0.02355181,0.036670703,-0.0029740168,-0.0048948466,-0.004092586,-0.029093413,0.019508703,-0.035426673,0.031977307,0.04761254,0.042495042,0.023254938,-0.030761547,0.009422137,-0.0104753245,-0.056094587,-0.009591779,0.0039229454,0.019749027,-0.018448446,-0.022647059,-0.011577991,-0.028782403,0.06644268,0.005559273,-0.0037108944,0.0064958325,0.030280897,-0.0036402107,0.011556786,0.015946243,-0.0167379,-0.039158773,-0.06033561,-0.029743701,0.018900823,0.05174047,-0.04263641,0.025078578,-0.0446721,0.03214695,-0.0059303627,0.03135529,0.01205864,0.011061999,-0.029036865,0.0038628643,-0.018929096,-0.04532239,0.032853786,-0.04294742,-0.020908238,-0.0046615903,-0.017939523,-0.035426673,0.0037002917,-0.024103142,0.042240582,-0.010319821,0.01192434,-0.0016009859,-0.026661893,-0.046170596,0.038791217,0.027071858,-0.056801423,-0.040063523,-0.0027213225,-0.004601509,-0.0034864736,-0.0018483788,0.0108358115,-0.0372079,0.023297349,-0.004145599,0.040063523,0.014143809,-0.010772197,-0.026789123,0.008750643,-0.021332342,0.034550194,0.04297569,0.010468257,-0.0069446736,0.012122255,0.031694572,0.038932584,-0.0133662885,-0.07006168,0.008644617,-0.04238195,0.012242417,0.02042759,-0.014348792,-0.033447526,-0.02225123,0.007252148,-0.039356686,-0.014433612,0.0047640814,-0.00033132985,-0.016172431,-0.02676085,-0.0008124208,-0.012397922,0.00014578513,0.0035801295,-0.0035730612,0.020060034,-0.011217504,0.03522876,0.041562017,0.018886685,-0.033560622,-0.011740563,0.02980025,-0.012086913,-0.017416464,-0.030846369,0.04351289,-0.01696409,-0.0235094,-0.022364324,0.016059337,-0.017246824,-0.03921532,0.01786884,-0.00011033284,0.0056370255,-0.009224223,-0.021968495,-0.05043989,-0.007831754,0.0044601415,-0.009853308,-0.012044503,-0.014688074,0.01214346,0.03669898,-0.051712196,0.021431299,0.012093982,0.023919364,0.012214144,-0.0065241056,-0.032118674,0.026972901,-0.011394213,0.009655394,-0.013740912,-0.043173604,0.040996548,0.011203367,-0.014419476,-0.018490857,0.02086583,-0.0014127905,-0.03856503,-0.008941488,-0.014016578,0.026478115,-0.022491554,0.055755306,0.0052093887,-0.047414627,0.01994694,-0.037405815,0.050609533,0.014532569,0.03842366,-0.007598498,-0.0070188916,-0.029460967,-0.02611056,-0.014801167,0.018024344,-0.013811596,0.021572666,0.026633618,-0.010701513,0.0035447876,-0.02177058,-0.012949254,0.041279282,0.0018289408,-0.040996548,-0.008100352,0.011726426,0.007690387,-0.004884244,0.0044566076,-0.0016107048,-0.024301058,-0.037943013,0.053041052,-0.041533742,-0.002770801,-0.02623779,-0.0008539475,0.028344166,-0.0011212202,0.017642653,-0.009005103,-0.017246824,0.002420917,-0.051712196,0.0042162826,-0.002062197,0.011309393,0.010185521,-0.0071107806,0.041392375,-0.0054779868,0.01297046,0.016115883,-0.01929665,0.0045732358,-0.034804653,0.033758536,-0.038140927,-0.011825384,0.0050256113,-0.026619483,-0.020158991,-0.015041492,0.00009349024,0.058017183,0.014327587,0.030761547,-0.0242021,-0.021897811,-0.022731878,0.012150529,0.002806143,0.007619703,-0.0048771757,-0.051853564,-0.020766871,-0.016327934,-0.029489242,-0.008453771,0.023212528,-0.013550065,-0.038197473,0.0030111258,0.0014180918,-0.004601509,-0.009316112,-0.01635621,-0.0112881875,0.006965879,0.008496181,0.033108246,-0.03500257,0.0071355198,0.040713813,-0.011373008,-0.0040607788,0.030393992,-0.014214492,-0.030478813,-0.0133380145,0.011486102,-0.04662297,0.03460674,-0.026661893,0.016016927,0.0181233,-0.001248451,0.032118674,0.032599322,-0.02758078,0.022958066,-0.013656091,0.027015312,0.021049606,-0.01214346,0.021063743,0.020724462,0.027792832,-0.023283212,0.035059117,-0.0031966704,-0.0055274656,-0.016723763,-0.011705221,-0.0044389367,0.016780311,0.011676948,-0.039130498,0.0020074171,-0.009273701,-0.004969064,0.013797458,-0.034776382,-0.012461537,0.00031940197,-0.034408826,0.026661893,0.005499192,-0.0051987865,-0.04766909,-0.018646361,-0.028245207,-0.04229713,0.0032549845,-0.0029104014,-0.024470698,-0.0032779567,-0.008524454,-0.020583095,0.0018183383,-0.010807538,-0.016271388,-0.040402804,-0.024923073,-0.0018660497,-0.0053931666,-0.020625504,-0.031157376,-0.012348443,-0.0025481475,0.005039748,0.0027230897,-0.025050305,-0.016935816,-0.0395546,-0.021431299,-0.034889475,0.044389363,0.019324925,-0.02160094,-0.014468954,-0.0018925561,-0.05318242,-0.012355511,-0.012723067,-0.0064286827,0.012298964,-0.030167805,0.025417859,0.02355181,0.03525703,-0.018335352,-0.004378855,0.024442425,0.018010207,0.010828743,0.017289234,0.0014772894,0.03500257,-0.00060125324,-0.010948906,0.011365939,0.023820408,0.0008088866,-0.012956323,0.047527723,0.011132683,0.010143111,-0.019876257,0.014744621,0.04085518,-0.017642653,0.009909855,0.037971284,0.0061106062,0.060448702,-0.03339098,0.0330517,0.0067290883,0.012214144,0.010390504,-0.07243666,0.019452155,-0.0005447063,-0.027849378,0.048715208,-0.01153558,0.0008614576,-0.02710013,-0.028033156,-0.011825384,-0.021275794,0.002786705,-0.05233421,0.04639678,0.030761547,0.036953438,0.002367904,-0.07102299,-0.011387144,0.035115663,-0.005364893,0.022618786,0.018307079,0.021261659,-0.018929096,-0.0139105525,-0.045265842,0.0018395433,-0.018250532,-0.012185871,0.029149959,0.037971284,0.0039441506,0.0023908762,0.034295734,0.019706616,0.02086583,-0.015833149,-0.0066937464,-0.01261704,0.034182638,-0.0014198589,0.0059303627,-0.011295255,-0.0007421789,-0.0062943837,0.040826906,-0.022025041,0.011606264,-0.0059515676,-0.018547403,0.032853786,-0.018250532,-0.0061176745,0.01856154,0.0042410223,0.0385933,-0.0058314055,-0.029545788,-0.025304766,-0.01547973,0.042466767,0.037575457,-0.013952963,-0.054115444,0.0074571306,-0.043399792,0.009902786,0.038480207,0.01470221,-0.009521095,0.0018642826,0.023834545,0.0074217888,-0.006594789,-0.02940442,-0.036501065,-0.014504296,0.033560622,0.003647279,0.019197693,-0.0053330855,-0.009450411,-0.0035818967,-0.028683446,-0.04450246,0.01799607,-0.0001497611,-0.020498274,-0.012906844,-0.03867812,-0.03013953,0.01579074,-0.014815304,0.026661893,0.0367838,-0.02359422,0.0063862726,-0.006898729,-0.01613002,0.019932805,-0.00014887755,0.0035059117,-0.022647059,-0.0029528118,-0.00020122767,0.009379728,0.0023626029,-0.006923469,-0.009726077,0.006700815,0.014433612,-0.037829917,-0.009422137,0.010630829,-0.04710362,0.050496437,0.017232686,0.029432693,0.016879268,0.008149831,-0.027665602,0.062088564,0.041929573,-0.003016427,0.010510666,-0.0013774487,-0.017699199,-0.024640338,0.020130718,0.04518102,-0.03766028,-0.0051175,0.03214695,-0.007485404,-0.050637804,0.017642653,0.049987514,0.013620749,0.019876257,-0.016709628,0.00041703385,0.013719707,-0.009634188,-0.029828522,0.007944848,0.05360652,0.038876038,-0.0117688365,0.0028697583,0.015465594,-0.018575678,0.013825732,0.014871851,0.011577991,-0.0040784497,-0.026972901,0.009860377,0.0027796365,-0.01791125,0.0016663683,0.06746052,-0.0055451365,0.0248948,0.03621833,0.01053894,-0.00031962286,-0.01661067,0.0031012474,0.0018183383,0.012164665,0.021827128,-0.010807538,-0.018052617,-0.0039300136,-0.014857714,-0.0082134465,0.008015532,-0.054115444,0.041618563,0.0094786845,-0.018985642,-0.020272085,-0.019466292,-0.010659102,0.0038982062,-0.017430602,0.041279282,0.018872548,0.012892707,0.018377762,0.024908938,0.028739993,0.005280073,-0.0036437449,-0.04362598,-0.0446721,0.0025463803,0.01183952,-0.0037533047,0.009641257,-0.012673588,0.015635235,0.013373356,-0.01965007,0.0028591559,-0.0013253194,0.0023749724,-0.011959682,-0.010567213,0.0036790867,-0.009316112,0.041901298,0.02059723,0.041533742,-0.012249486,-0.014928398,-0.016186567,-0.008446703,0.034663286,0.019593522,0.019664206,-0.00077619543,0.022548102,0.013239058,-0.017600242,0.003873467,-0.0059338966,0.00067547115,-0.0070365625,0.038282294,0.041873027,0.035850774,-0.009909855,0.039158773,-0.011804178,0.0009727845,-0.024385877,0.01652585,-0.0035412535,0.008715301,-0.03005471,0.0063297255,-0.036020413,0.002597626,0.014136741,0.018490857,-0.012659451,0.013422835,-0.0040113,-0.038536754,0.01747301,-0.008291198,-0.010616692,-0.042919144,0.04142065,-0.044728648,0.0059444993,-0.03313652,0.014256903,0.018462583,0.00088045385,-0.001183952,-0.016384482,0.014348792,-0.004195078,0.017374054,-0.051146727,-0.031044282,-0.020908238,0.0011433089,-0.0077964123,-0.0020303894,-0.021784717,0.0076479767,0.0029740168,0.02940442,-0.026902217,-0.01921183,0.0023643698,-0.024131415,0.010249137,-0.033447526,0.0070931097,-0.01868877,-0.011577991,-0.0062449053,0.018674634,-0.002539312,0.011457828,0.0036101702,0.024682749,-0.020130718,-0.015635235,-0.007640908,0.00648523,0.021728171,-0.025559226,0.00997347,0.018533267,-0.018321216,0.003972424,-0.019254241,-0.0039406163,-0.0011760001,0.015833149,0.0038275225,0.023608357,0.01439827,-0.0038487276,-0.023707313,0.11054931,0.018010207,0.003516514,0.029885069,0.008376019,0.016794447,-0.033871632,0.0074571306,-0.025827825,0.012779613,0.0054461793,0.03873467,0.007732797,0.016158294,0.010333957,0.013684365,-0.022449143,-0.027736286,0.029036865,-0.014885988,0.0034900077,-0.017529558,0.0123413745,-0.003873467,-0.020879965,-0.020130718,-0.012595836,0.0032602858,-0.011599195,0.012906844,0.008821326,0.0020286222,-0.021318205,0.01214346,-0.0110761365,0.019070463,-0.020978922,-0.029489242,-0.0034069545,0.002062197,0.007655045,-0.008920283,-0.009605915,-0.012023298,-0.017981933,0.03248623,-0.039356686,-0.03873467,0.012454469,-0.024442425,0.004007766,0.00819931,0.028471395,-0.02285911,-0.013762116,-0.0170065,0.0058526103,0.026379157,0.004530825,0.008418429,-0.0136985015,0.02684567,0.010913564,0.013952963,0.0014587349,-0.004887778,0.033108246,-0.039102223,0.009506958,0.019551111,0.011698153,0.017967798,-0.007612635,-0.02923478,-0.007845891,0.000336852,-0.034861203,-0.038876038,-0.011365939,0.022406735,0.017812293,-0.0048453677,-0.016681354,-0.009457479,-0.027043585,0.04580304,0.030987736,-0.024753433,-0.008269994,-0.023226665,0.02688808,0.02233605,0.028047293,0.014200356,0.0016345606,0.0064816955,0.0056299567,0.010821675,0.023127707,0.00014302405,-0.009330248,0.002496902,-0.026774986,0.0019385006,-0.033108246,-0.0080013955,-0.021968495,0.012242417,-0.023523536,-0.011394213,-0.0066478024,-0.0031736982,0.011867793,0.013924689,0.009697804,-0.016016927,-0.0042480906,-0.05496365,-0.014306381,-0.015380774,0.0109277,-0.0026276666,0.043230154,0.02424451,-0.032457955,-0.0024774638,0.019678343,0.007782276,0.022406735,0.012298964,-0.044050083,-0.012984596,0.003983027,0.013769185,0.03669898,0.019452155,-0.036670703,0.0014013044,-0.001221061,0.027920062,-0.0011017822,-0.014242766,0.040317982,-0.0007814967,0.019070463,0.025559226,0.000062731786,-0.0060257856,-0.025347175,0.010044154,-0.012390853,0.009210086,0.0150839025,-0.028485533,-0.007442994,0.014320518,0.042438496,-0.0020533616,0.022887383,-0.005976307,0.025530953,-0.030422265,-0.03271242,-0.012708929,-0.03669898,0.03118565,-0.02380627,0.019084599,-0.0075348825,-0.002770801,-0.0049337223,0.022109862,-0.00040024647,0.0037851122,-0.0044601415,-0.014645663,0.028782403,-0.026873944,-0.038367115,-0.010468257,-0.034861203,-0.0064039435,-0.009273701,0.013451109,-0.02059723,0.02047,0.003739168,-0.013903485,0.010510666,0.0047464105,0.034069546,-0.014532569,-0.006259042,0.00011060895,-0.0025057374,-0.022760153,0.013345083,0.02099306,0.012016229,-0.00941507,-0.0062943837,0.028980318,0.010609624,0.0052270596,0.01266652,-0.031892486,0.02606815,0.025841963,-0.0035642257,0.0150556285,-0.002367904,0.022661194,0.008658754,-0.00056635315,-0.0358225,0.004597975,0.019720754,0.003760373,-0.036642432,-0.002539312,0.0036331422,-0.008828394,0.04167511,-0.046849158,-0.0025958589,0.019324925,-0.008262925,-0.048517294,0.0061176745,-0.047160167,-0.002556983,0.021897811,0.005004406,-0.0030111258,0.0052588675,-0.012150529,-0.020667914,-0.0059657046,-0.02147371,-0.0036031017,0.022647059,-0.010687375,-0.045124475,-0.024569655,0.009726077,0.024781706,-0.022166409,-0.025191672,0.0073228315,-0.034013,0.036416244,0.039695967,0.021275794,-0.041929573,-0.00717793,-0.0075348825,-0.022109862,-0.0032037387,0.024145553,0.0108358115,-0.040148344,0.026336748,0.004848902,-0.036727253,0.021403026,0.007619703,-0.05052471,0.018179849,0.00793778,0.028231071,-0.0028927305,0.0132744,-0.005576944,-0.03095946,-0.043032236,0.015112176,-0.01049653,0.018674634,0.014066056,-0.0068174433,0.01110441,-0.0022177012,-0.0059409654,-0.015861424,0.03404127,-0.010298615,0.0026471047,0.0033186,-0.023212528,0.013804527,-0.0061742216,0.031694572,-0.029376147,-0.018660497,0.025912646,-0.008008463,-0.020399317,-0.017430602,0.024173826,0.003207273,-0.012913913,-0.023905229,-0.016002791,-0.021657486,0.001834242,0.0024880664,0.0017882977,-0.014829441,0.013260263,-0.03599214,-0.021728171,0.006697281,0.00036910147,0.006340328,-0.005152842,0.03322134,0.000108731416,0.013641954,0.027439414,0.026251927,-0.0068845926,0.0050927605,0.028160388,-0.0017193811,0.0032620528,0.010630829,-0.026562935,0.00012590534,0.028344166,0.025530953,-0.0026135298,-0.00819931,0.00542144,-0.0018377763,0.053323787,-0.035200484,0.0024916006,-0.01721855,-0.020074172,-0.01747301,-0.02307116,0.0057183118,0.018660497,-0.013380425,0.009266634,0.062032018,-0.0019809108,-0.0033645441,0.023099434,-0.012998733,-0.010164317,0.029630609,-0.022915656,0.0037073602,0.023565946,0.03621833,0.020752735,-0.0024474233,0.021501983,-0.02428692,0.025813688,-0.00007830429,-0.061523095,0.035398398,-0.030393992,0.018844275,0.03316479,-0.018307079,0.008347745,0.039413232,-0.033645444,0.0027142542,0.0074005835,-0.0043576504,0.0027160214,0.005036214,-0.04427627,-0.009316112,0.02103547,0.0024509574,0.008439634,0.011825384,-0.028202796,0.028782403,-0.0127937505,0.0035659927,-0.016497577,0.0032214096,0.0011194531]},{"id":"class-Channel","type":"class","source":"main","text":"Class: Channel\nDescription: Base class for all channel types.\nProperties: client: Client, icon: string | null, id: string, lastPinTimestamp: string | null, name: string | null, type: ChannelType\nMethods: bulkDeleteMessages(messageIds: string[]) -> Promise — Bulk delete messages. Requires Manage Messages permission.; createDM(client: Client, data: APIChannelPartial) -> DMChannel — Create a DM channel from API data (type DM or GroupDM).; from(client: Client, data: APIChannelPartial | APIChannel) -> GuildChannel | TextChannel | null — Create the appropriate channel subclass from API data.; fromOrCreate(client: Client, data: APIChannelPartial | APIChannel) -> DMChannel | GuildChannel | TextChannel | null — Create a channel from API data, including DM and GroupDM.\nUsed by ChannelManager.fetch() for GET /channels/{id}.; isDM() -> boolean — Whether this channel is a DM or Group DM.; isSendable() -> boolean — Whether this channel has a send method (TextChannel, DMChannel).; isVoice() -> boolean — Whether this channel is voice-based (VoiceChannel).; sendTyping() -> Promise — Send a typing indicator to the channel. Lasts ~10 seconds.","meta":{"url":"/docs/classes/Channel"},"embedding":[-0.01317084,0.019229427,0.009683431,-0.0050793635,0.029342342,0.034748115,0.004698554,-0.011372735,-0.0003267657,0.014087073,-0.0036248444,-0.013067764,-0.017259527,0.01651509,0.0500721,0.0040944135,-0.043543942,-0.003607665,0.03591631,0.00979796,-0.0036792457,0.03575597,0.01864533,0.034289997,-0.0126096485,-0.0038653554,-0.0034330082,0.031587113,-0.0054658987,-0.004953381,0.08502637,-0.021336762,0.030258574,0.009311211,0.02476118,0.006545335,-0.006047134,0.038733725,0.00024426897,-0.010708466,-0.0130105,-0.019183615,-0.009769328,0.004483812,-0.02535673,-0.0024136996,-0.019824978,0.030304385,0.017603114,0.010645475,-0.05181294,0.012907424,0.020363264,0.052042,0.010822995,0.0022762648,-0.022848545,-0.0045496663,-0.026868515,0.0013364109,0.017797815,-0.01644637,-0.04782733,0.003063652,0.02306615,0.02854064,-0.04975142,0.029182002,0.014522283,0.04301711,0.025219297,-0.042994205,-0.010868806,-0.016549448,-0.02153146,-0.009775055,-0.012873065,0.0339006,0.006997725,0.009357023,-0.040863965,0.053599596,-0.039443806,0.012987594,-0.008435064,0.0055861543,-0.01798106,-0.015587403,0.00029956503,-0.020328905,0.027647313,-0.043154545,-0.058684684,0.03426709,0.022321712,-0.07746745,0.025333825,0.0008210301,-0.04029132,0.023753325,0.06587711,-0.0031667282,-0.06958785,0.032778215,0.017637473,-0.043269075,-0.04901843,0.016938847,-0.061479192,-0.015243816,-0.047369216,0.003985611,0.0121171735,0.030877031,-0.0029176276,-0.01801542,0.038458854,0.017752003,0.022104107,0.01727098,-0.04668204,0.015381251,0.036603484,-0.01880567,0.001632039,-0.025654506,0.004266207,-0.013617503,-0.044826668,-0.028952943,0.03958124,0.014671171,0.0008811579,-0.0020958816,-0.003533221,0.024784086,-0.01273563,-0.0041974895,-0.05859306,-0.017259527,0.018152853,-0.03181617,0.057493582,0.010616843,0.010101462,0.013159388,-0.067114025,-0.007455841,-0.015621762,-0.0013299686,-0.0077421637,0.021668896,-0.017832173,0.0026284417,0.0015805009,-0.0063563623,0.0068889223,0.029502682,-0.012964688,-0.03683254,0.06482344,-0.010244624,-0.002386499,0.0025654507,-0.026960138,-0.03454196,0.009597534,-0.05437839,-0.032640778,0.015953897,0.042123783,0.027899276,-0.050759275,-0.00774789,-0.02330666,-0.04782733,-0.012987594,-0.04920168,-0.0579517,-0.05098833,0.05712709,0.018381912,-0.0081831,-0.10829867,-0.02476118,0.023638796,-0.015266722,0.006568241,0.063174225,-0.025058955,-0.01759166,0.02282564,0.03699288,0.02184069,0.028586451,0.016079878,0.01076573,0.02897585,0.012346231,-0.042513184,0.038504668,-0.008967624,0.05117158,-0.030693784,0.0014566663,-0.03848176,0.012472213,0.0114414515,-0.031724546,-0.016938847,0.012941782,0.0059440574,-0.007822334,0.0022147056,-0.07536011,0.0057608113,-0.047094345,0.01549578,-0.07192424,0.011613245,-0.0034244186,0.0027916455,0.032549154,-0.022459146,-0.015598856,0.0023478456,0.01113795,-0.018714046,0.038435947,-0.0067514875,0.022218635,0.0062361066,-0.004420821,-0.041574046,-0.024234347,-0.0143963015,0.0068545635,0.03367154,0.029090378,-0.04597196,-0.022298805,-0.00981514,-0.015564498,0.04127627,0.008566773,0.01651509,0.010525219,-0.0630826,0.007976948,0.03520623,0.06413627,0.007862419,-0.0032698044,0.007329859,0.0061960216,0.02314632,0.027601501,0.020008225,0.031174807,0.015667574,-0.020374717,-0.030304385,0.013182294,-0.009253947,-0.025975188,0.0020228694,0.039924826,-0.0014831512,-0.019114899,0.0016850086,0.032228474,-0.020981722,0.062624484,-0.04203216,0.0007601866,-0.0019770577,-0.02066104,0.023638796,0.007994127,-0.019538656,-0.015553045,-0.0055260267,0.032228474,0.03946671,-0.007873872,0.03662639,0.026021,0.004629837,-0.009580355,-0.021027533,0.007936863,0.020844286,-0.018874386,-0.09803686,0.033121802,0.012632554,0.027693124,-0.006596873,0.057585206,0.07430644,0.014820059,0.0421925,0.010502313,-0.048880998,0.017866531,0.034198374,0.030212762,-0.017797815,0.037084505,-0.08786669,0.051400635,0.019607373,-0.028334487,-0.027143383,-0.056485727,-0.0010751415,-0.012449307,0.0043091555,0.016297484,0.034450337,-0.012701271,0.00069218496,-0.042055067,-0.031999417,-0.018049778,-0.014728435,-0.03209104,-0.033098895,0.033213425,-0.0052998317,0.03378607,-0.052179433,0.05918861,0.03465649,0.025769036,0.01167051,-0.020214377,0.024234347,-0.027830558,0.031174807,0.04095559,0.0097177895,-0.007140886,0.043910436,0.017316792,0.000034761357,-0.04869775,0.0047815875,-0.017752003,0.030418916,-0.024921522,0.004329198,-0.027441159,-0.034129657,-0.003252625,-0.003644887,0.026822703,-0.03532076,-0.0042833863,0.018828575,-0.015117834,0.008160194,-0.008509508,0.03181617,-0.008961898,-0.0006220359,-0.031610016,0.018439177,-0.019676091,-0.041917633,0.002564019,-0.024074005,0.01585082,0.0083835265,0.002153146,-0.015278175,0.0047300495,0.0047386396,-0.01848499,0.0045410767,0.038023643,0.025333825,0.03497717,-0.0169503,0.0020157113,0.0041287723,0.0052740625,-0.004798767,-0.014224508,0.05071346,0.023844948,0.0010092872,-0.0021660307,0.014258866,0.002430879,0.059005365,-0.017545851,-0.008400706,0.013056312,0.02503605,0.053874463,0.020328905,-0.021783425,0.034725208,-0.015117834,-0.0016434918,0.0044122315,0.018759858,0.017683284,-0.0104965875,0.040520377,0.004558256,0.031197712,0.053507973,0.0441624,-0.05460745,-0.033327952,-0.028242864,0.031403866,-0.0000037467998,-0.022882903,-0.052774984,-0.016492182,-0.0053628227,-0.026272964,0.0035532636,0.027280819,-0.014716983,-0.051858753,-0.040360037,-0.012701271,0.0018568021,0.048010577,0.0044580433,0.045170255,-0.03126643,-0.024577934,-0.025288014,-0.04979723,0.05744777,-0.04308583,0.03300727,-0.031724546,0.018507894,0.013594598,0.012346231,-0.01557595,-0.037863303,-0.0016950299,-0.020157112,-0.050621837,-0.02771603,-0.03717613,0.06312841,-0.05772264,-0.046659134,0.012621101,0.053599596,-0.038665008,0.00015819324,-0.0022676752,0.013376993,0.0048188097,0.029731741,-0.013457163,0.007289774,-0.009208135,0.015049117,-0.004847442,0.0042747967,-0.0021703255,0.037519716,0.049293302,0.01644637,-0.029365247,-0.007850966,0.004518171,0.011527348,0.02271111,0.0067743934,0.025562884,0.007106527,-0.023822041,-0.016400559,-0.03383188,0.0879125,-0.012666913,-0.022802733,0.01076573,0.012655459,-0.0220812,-0.016457824,0.005128038,-0.009420014,-0.029754646,-0.046201017,-0.032274287,-0.010204538,0.02448631,-0.05121739,0.035504006,-0.049934667,0.018507894,0.008303356,0.068900675,-0.00079168205,0.021554368,-0.0044580433,-0.012162985,-0.01798106,-0.058730494,0.043154545,-0.034038033,-0.009551723,0.022527864,-0.009116512,-0.036534768,0.011876662,-0.036214083,0.024303064,0.011968286,0.024990238,0.01908054,0.010645475,-0.012552383,0.017912343,-0.026639456,-0.051034145,-0.005820939,0.021416932,0.001265546,-0.01113795,0.013216652,0.044643424,-0.013789297,0.0138007505,-0.010215991,-0.0052167983,0.003518905,-0.027418254,-0.00490757,0.0068488372,-0.0015604583,0.0094085615,0.008744293,0.010748551,-0.028265769,0.031197712,0.015530139,0.015953897,0.020134207,-0.038619194,0.025517073,-0.061433382,0.037748773,0.038413044,-0.02377623,-0.022802733,0.007083622,0.013583145,-0.042558994,-0.024738275,0.008360621,0.02164599,-0.025517073,-0.008801557,-0.009981207,0.01533544,-0.033854786,-0.010158727,-0.0024108365,0.014842965,0.003014977,0.0050822264,0.020180019,-0.0074386615,-0.046384264,-0.0102503495,-0.0034473243,-0.040428754,0.000013231237,-0.050255347,0.038779534,0.011538802,-0.0060700397,0.014911682,-0.0037565527,-0.0063105505,-0.010301888,0.037794586,0.019504298,-0.01328537,0.0085266875,-0.004787314,-0.04427693,0.013892373,0.001809559,0.01525527,-0.03252625,-0.009626167,0.018782765,0.037451,-0.035687253,-0.0055288896,0.013067764,0.011086412,-0.0011216688,-0.03516042,-0.043543942,0.01959592,0.0039455257,0.048789375,0.0041058664,-0.03289274,0.019893695,-0.005328464,-0.012231702,0.020042583,0.04505573,0.026364587,-0.04171148,-0.0041201827,0.006734308,0.019332504,0.023008885,0.006064313,0.006092945,-0.020363264,0.016904488,-0.02618134,0.014980399,-0.026364587,0.029731741,0.012964688,-0.005886793,-0.02590647,0.02373042,-0.014258866,-0.006923281,-0.008612584,0.019149257,0.030235669,0.0056663244,-0.020271642,-0.007954042,-0.0402226,0.007129433,-0.020535057,-0.021932313,-0.004266207,-0.018507894,0.019447032,0.020168565,-0.010822995,0.006963366,-0.05909699,-0.045628373,0.029044567,-0.02168035,0.03481683,-0.023524266,0.010032744,0.005694957,0.02886132,0.0021345352,-0.020809928,-0.030029517,-0.004681375,-0.01806123,-0.012460761,0.016308937,0.0100041125,0.0068545635,0.016629618,0.015644668,-0.018427724,0.0025210707,-0.0031610017,0.008354894,0.040726528,-0.0037193308,0.0066770436,-0.04448308,-0.02373042,0.03055635,-0.028838415,0.0027300862,0.04952236,0.020683946,0.036488954,-0.005757948,-0.0031810442,-0.026708174,-0.017144999,0.0030836945,0.016114237,0.030464727,0.022195728,0.020477794,-0.026479116,-0.0319307,-0.034908455,-0.038183983,0.007713531,0.018553706,-0.0103477,-0.025791941,0.01643492,0.025517073,-0.022619488,-0.062395424,-0.005027825,-0.027349537,-0.007999854,0.0017580208,0.008074298,-0.0413908,-0.00032408143,0.0024036784,-0.0056863674,0.004847442,0.011991192,-0.018748404,-0.008784378,0.0072325096,-0.004735776,-0.0056749145,0.03378607,-0.03442743,0.0031552752,0.0073985765,0.019435579,0.010021292,-0.009483005,-0.019011822,0.021600178,-0.0033528379,0.0240511,-0.009729243,-0.0025797668,-0.0010565305,0.027441159,0.021394026,-0.046796568,0.004532487,-0.026272964,-0.03083122,-0.009042068,-0.0034616406,0.017374057,-0.013594598,0.0067400346,-0.06807607,0.028380297,0.00026323786,0.008274724,-0.00051144377,-0.019332504,-0.0048159463,0.052545927,-0.042123783,0.02046634,-0.006562514,-0.003507452,-0.056210857,-0.06491506,-0.03919184,-0.0335112,0.019515749,0.020878645,-0.044780858,0.009345571,-0.027257914,-0.0029519862,0.017763454,-0.019000368,-0.022504957,-0.042879675,-0.013044858,-0.035572723,-0.030052422,0.0050306884,0.0029262172,0.017958155,0.012002644,0.019698996,-0.008349167,-0.029319435,-0.037382282,-0.022218635,-0.03181617,0.017099187,0.012266061,0.023707513,-0.014923135,-0.018610971,0.028723884,-0.08685883,-0.0019412674,0.017064828,0.0073184064,0.021657443,-0.040612,0.015862273,0.03662639,0.01703047,-0.037313562,-0.00006299098,0.015209458,0.027212102,0.0023650248,0.05066765,-0.009053521,0.00056369766,-0.018187214,-0.0059154253,-0.0015776376,0.03165583,0.007106527,-0.045834526,0.058776308,0.04549094,-0.021520007,-0.0056147864,-0.011533075,0.041344985,-0.017877985,0.025013143,0.020718304,-0.0036420238,0.017087733,-0.038710818,0.043200355,0.019057633,-0.017752003,0.0075360113,-0.07416901,0.031884886,-0.0024552164,-0.018691141,0.022035388,0.009294032,-0.020764116,-0.0016506499,0.013079218,-0.012483667,-0.014339036,-0.03399222,-0.052500114,0.020008225,0.023547173,0.00034143974,0.0057407687,-0.08099494,0.034564868,-0.015564498,-0.020420529,0.016858676,0.033488292,0.013651863,-0.0013994018,0.006035681,-0.027120478,-0.0132051995,-0.025104767,0.006545335,0.05538625,0.015346892,0.028769696,0.014465019,0.03422128,0.00650525,0.053049855,-0.0103477,-0.0059669632,0.009047795,0.0027186333,-0.022401882,0.010341973,0.0038052276,0.007192424,-0.01683577,0.003733647,-0.04746084,0.025173485,0.0005128754,-0.015289628,0.031289335,-0.011017694,0.013766391,-0.0043091555,0.020317454,-0.008331988,-0.022768375,-0.012437855,-0.013113576,-0.033442482,0.03836723,0.018908747,-0.00091623235,-0.022378976,0.020443436,-0.01415579,-0.011521623,0.00059447734,0.013491522,0.016171502,0.021703254,-0.0055346163,0.034771018,0.007604729,-0.043933343,-0.02590647,0.033969317,0.017122092,-0.0102503495,-0.0057436316,-0.018633876,0.014694077,0.02913619,-0.00952309,-0.02929653,0.0104965875,0.020512152,0.012861612,-0.03772587,-0.012483667,-0.026708174,0.024417592,-0.007873872,0.030212762,-0.010582484,0.004469496,0.005236841,0.01790089,-0.032938555,-0.015049117,-0.030258574,0.009139418,-0.013720579,0.021382574,-0.031426772,-0.005849571,-0.0093283905,0.014132884,0.0134113515,-0.048560318,0.02503605,-0.00883019,0.035733063,0.03875663,-0.016583806,0.026593644,0.0019469938,0.025379637,0.013216652,0.00060521445,0.008251818,0.040680718,0.051309012,-0.012689819,0.009752149,-0.0012791463,0.0056920936,0.010857354,-0.01841627,0.03165583,0.01880567,-0.000828904,0.013468616,0.025333825,-0.0102102645,0.06372396,0.044070777,-0.0025998093,-0.0068144784,0.022619488,0.03286984,-0.0055890176,0.008618311,-0.013548787,0.03067088,0.025104767,0.016079878,0.014098526,0.014648265,0.002911901,-0.020214377,-0.0022376112,0.061754063,0.01031334,0.025219297,-0.03651186,0.039283462,0.017889436,0.0134113515,-0.0064079002,0.035343666,0.03603084,0.003189634,-0.0010329088,0.012002644,0.0068144784,-0.0041058664,0.04235284,-0.013720579,0.042329937,0.016549448,-0.008005581,-0.0016878719,-0.0017895164,0.007049263,-0.0068373843,-0.017488586,-0.0024666693,0.025837753,-0.005405771,-0.008709934,-0.0240511,-0.015014758,0.03612246,-0.023363926,-0.022814186,-0.00721533,0.008601132,-0.01766038,-0.0056777773,0.0018324647,0.011143676,0.008824463,-0.012987594,0.014064167,-0.049980476,0.00979796,0.038069457,-0.0012698409,0.038000736,-0.0015618899,0.036374427,-0.01514074,-0.03442743,-0.0021932314,0.0075016525,0.016893035,0.017339697,0.0005479499,0.0068946485,-0.023192132,0.032801118,-0.0027172016,-0.0019827841,-0.009706337,-0.006986272,-0.027532782,-0.0075875493,0.006974819,0.014968947,0.005772264,0.0055747014,-0.008835916,0.0003348185,0.015839368,-0.0047042808,0.013228105,0.009935395,-0.0107027395,0.026021,0.035114605,0.022218635,-0.0009978344,0.0347023,-0.0163662,-0.03699288,-0.025127674,-0.012460761,-0.01415579,0.025081862,-0.038275607,-0.027441159,-0.029342342,-0.018874386,-0.0018152854,-0.013949638,-0.019492844,-0.014499377,-0.0011746385,-0.02961721,-0.017099187,0.031220619,-0.024646651,-0.02421144,0.021668896,-0.040841058,0.004669922,-0.013812203,0.0167556,0.001239777,-0.023100508,-0.0055117104,-0.023329567,0.032388814,0.022023937,0.008492329,-0.0015618899,-0.029594306,0.011510169,0.0063449093,-0.029479777,-0.008349167,0.015072023,-0.018313196,0.007994127,0.031312242,-0.046315547,-0.06312841,0.0072439625,0.017396962,0.026914326,-0.027120478,0.0132051995,0.010433597,-0.024257252,-0.00072833314,0.056394104,0.0075875493,0.039993543,0.008349167,0.035297852,-0.03793202,-0.026066812,0.015553045,-0.012907424,-0.006642685,-0.03910022,-0.00091623235,0.02716629,0.002453785,0.015346892,-0.020283094,-0.03236591,0.03761134,0.014339036,-0.0018811396,0.026364587,0.0030350199,-0.029250719,-0.056806408,0.042284124,0.008744293,0.002694296,0.0147857005,0.023043245,0.0073126797,-0.012563837,0.021714708,-0.038000736,0.0071981507,-0.002867521,0.014339036,0.013548787,0.023203585,0.005365686,0.0011911021,-0.013273916,-0.03339667,0.023547173,-0.030968655,0.023799136,0.03575597,-0.011613245,0.0025597243,-0.026021,-0.015782103,0.007896778,-0.024623746,0.04088687,-0.0022819913,0.011699142,0.026960138,-0.015885178,-0.008498055,-0.039924826,0.0058552977,-0.028678073,-0.04897262,0.020191472,-0.010805815,0.0009777917,-0.048285447,0.0029806185,-0.031678736,0.0049447916,0.013754939,-0.018714046,-0.03958124,0.0061960216,-0.020431982,0.020729758,0.013422804,0.028723884,-0.014648265,-0.0048932536,0.0060185012,0.01809559,0.0623038,-0.006568241,-0.0016019751,-0.018141402,0.028380297,0.0013142208,-0.015530139,0.015873726,0.011309744,0.009202409,-0.03319052,0.0111322235,0.057539392,-0.015438516,0.025288014,0.0009198114,-0.03454196,-0.029548494,0.014339036,-0.0122202495,-0.04077234,0.004369283,0.04127627,0.0030693784,-0.028563544,-0.004200353,0.02350136,-0.031312242,0.033579916,0.023867853,-0.043475226,0.015106381,-0.026089717,0.027303725,0.0035790328,0.0077765225,0.027761841,-0.0052482937,0.031060278,-0.01628603,-0.0034387347,-0.013789297,-0.014522283,-0.008664123,0.038344324,0.023375379,-0.01908054,-0.028334487,-0.0068030255,-0.005302695,0.016240219,-0.01088026,-0.007919684,-0.02984627,0.00043234715,-0.004397915,0.02590647,0.0063105505,-0.026043905,-0.008062845,-0.0059154253,-0.012082814,-0.040909775,0.014694077,0.039352182,0.033098895,0.003264078,-0.03406094,0.013594598,-0.0066140527,-0.016641071,0.038229797,0.023547173,-0.017534398,0.018278835,-0.0005246862,-0.013228105,-0.00089976884,0.0026069675,-0.0062246537,-0.023249397,-0.0128158005,0.001753726,-0.024852803,0.0057149995,0.039993543,-0.0019527202,0.016331842,0.01880567,0.01506057,-0.019424126,-0.0048588947,0.031312242,-0.03000661,0.007518832,0.002827436,-0.016938847,-0.0059039723,-0.02787637,0.022333164,0.001139564,0.013239558,-0.0072611417,0.006596873,-0.02224154,-0.034885548,-0.039031498,-0.011842304,0.019504298,0.0045868885,-0.00605286,-0.01293033,0.009064974,-0.024257252,0.030968655,-0.005769401,0.0052855154,0.014190149,-0.0053513697,0.008767199,-0.020649588,-0.038413044,-0.034175467,-0.014934588,-0.014029808,-0.0021345352,0.0036735192,-0.016469277,0.01435049,-0.009477279,-0.018988917,0.022012483,-0.011149403,0.01157316,0.008761472,-0.0065510613,-0.0013213789,0.01042787,-0.048193824,0.034198374,0.023524266,0.026937231,-0.01806123,0.031472582,0.011407093,-0.0027673081,0.016709788,-0.019275239,0.0032297191,-0.039764486,0.0021331036,0.019985318,-0.028174145,-0.021668896,0.03809236,0.010376331,-0.030327292,-0.007112254,-0.00356758,0.020729758,-0.015896631,-0.005179576,0.0013879489,-0.019916601,0.008326261,0.01774055,-0.04975142,0.010044198,0.0032554881,-0.015014758,-0.022997433,0.031197712,-0.02657074,-0.017614568,0.0005762243,-0.015518686,0.017946701,0.004838852,-0.018370459,-0.012506572,-0.020168565,0.005820939,0.022585128,-0.001106637,-0.011424272,-0.039168935,0.008778651,0.008240365,0.0425819,-0.037038695,-0.0065510613,-0.013388446,-0.010301888,0.036763825,0.033098895,0.024005288,0.00021438405,0.0012347663,-0.0034444612,-0.0058008963,-0.02432597,0.021256592,0.024715368,-0.009860951,0.019664638,0.009551723,-0.018233024,0.014957493,0.011321196,-0.0063620885,-0.015507233,-0.014545189,0.022608034,-0.021978125,0.013113576,0.0048159463,0.0022190004,-0.020569418,-0.024463404,-0.0063620885,-0.005110859,0.027601501,0.011911021,-0.0056376923,0.0011882388,-0.0025697455,-0.00899053,-0.0004062202,0.029502682,-0.0006581841,-0.010834448,0.02014566,-0.014339036,0.028265769,0.004300566,0.009070701,-0.017809266,0.020832833,0.0073642177,-0.019183615,-0.004214669,0.037084505,0.010044198,-0.014854417,-0.019286692,-0.005442993,0.009992659,-0.0067400346,-0.0011739228,0.008234639,-0.031174807,-0.032274287,0.0132051995,-0.012586743,0.0038281335,0.012781442,0.0069175544,-0.012357684,0.007163792,-0.024623746,0.010634022,0.04723178,-0.0037021514,0.01659526,0.0034501876,0.016812865,-0.012472213,0.039924826,0.022149919,-0.021222232,0.0072955005,0.031403866,0.039375085,-0.01423596,-0.040428754,0.014934588,-0.0072840475,0.042238314,0.00067643716,-0.025769036,-0.002864658,0.021336762,-0.017614568,-0.040268414,-0.034244183,-0.0023836358,-0.024692463,-0.00005135912,0.0335112,-0.0029949346,-0.011544528,0.0128158005,-0.03300727,0.02673108,0.017877985,0.014201602,-0.036695108,0.029892081,-0.00080599816,0.014144338,-0.0014788563,0.027945088,0.012884518,0.020993175,-0.013228105,-0.04581162,0.046956908,-0.010708466,-0.00016857244,0.02755569,-0.015117834,0.014591001,0.05268336,-0.039810296,-0.0014201602,-0.011286838,-0.01751149,0.02022583,0.02058087,-0.044643424,0.021955218,0.016492182,0.018908747,0.016789958,-0.0006270465,-0.008778651,0.010817269,-0.0062303804,0.00826327,-0.011252479,-0.008446517,-0.0005379286]},{"id":"class-ChannelManager","type":"class","source":"main","text":"Class: ChannelManager\nDescription: Manages channels with fetch and send.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: fetch(channelId: string) -> Promise — Fetch a channel by ID from the API (or return from cache if present).; fetchMessage(channelId: string, messageId: string) -> Promise — Fetch a message by ID from the API.; resolve(channelId: string) -> Promise — Get a channel from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.channels.get(id) ?? (await client.channels.fetch(id))`.; send(channelId: string, payload: MessageSendOptions) -> Promise — Send a message to a channel by ID. Works even when the channel is not cached.\nSkips the fetch when you only need to send.; set(key: string, value: Channel) -> this","meta":{"url":"/docs/classes/ChannelManager"},"embedding":[-0.020950638,-0.009077522,-0.026411293,-0.009496317,0.023082687,0.052213427,0.00008260328,-0.0077721863,-0.00043783136,-0.0037066096,0.03550513,-0.017752565,-0.030022722,0.02780365,0.04716613,0.0117480215,-0.019590912,-0.022843374,0.015935974,0.013521102,-0.0073153186,0.036723442,0.029500587,0.029348297,-0.045817282,0.0040166266,-0.05051649,0.08136593,-0.013477591,-0.027238006,0.06496221,-0.011399932,0.0056129433,0.002232668,0.03372117,0.030349055,0.009300517,0.029718142,-0.020972393,0.032263547,-0.00686389,-0.002869019,0.0047780727,-0.037267335,0.030305544,0.0029478832,-0.030414322,-0.0058957664,0.016577763,0.03709329,-0.028913185,0.010698314,-0.03768069,0.07792854,0.011998211,-0.033742927,-0.011312909,-0.00503642,-0.024583822,0.0027643202,0.000064374464,-0.012172256,-0.062743135,0.0042994493,-0.01150871,0.030196765,-0.015674906,0.03639711,-0.0075002415,0.032328814,-0.020950638,-0.02123346,-0.005096248,-0.03428682,0.0012822204,0.01738272,-0.009148228,0.053257696,0.043881036,-0.008044131,-0.027325027,-0.033068504,-0.029174253,-0.022299485,-0.02538878,0.0013549656,-0.013640758,-0.0023468847,0.027303271,-0.016327575,-0.022234218,-0.0032116696,-0.06265611,0.02177735,0.012324545,-0.03520055,0.011715388,-0.00992599,0.009044888,0.014935216,0.066006474,-0.014445715,-0.031284545,0.026933426,0.028238762,-0.040617697,-0.04681804,0.019188434,-0.019449502,-0.040465407,-0.053562276,-0.035983752,0.0035624786,0.023191465,-0.027085716,-0.03452613,0.0134340795,0.0033639588,0.009322273,0.014652393,-0.03056661,0.02923952,0.058653083,0.007886403,0.021200826,-0.010344786,0.0051832707,0.008653288,-0.068138525,0.018524889,0.03946465,0.022245096,0.02049377,0.009403856,-0.0032415837,0.00065606716,-0.0311105,-0.0099151125,-0.008968744,-0.0309147,0.0038208263,-0.029609365,0.047644753,0.014108503,0.033177283,-0.0092842,-0.016773563,0.010975698,0.011280276,-0.021244338,-0.0244968,0.010845164,-0.036310088,0.02043938,-0.004476214,0.010524269,-0.014293426,0.011932944,-0.02780365,-0.066354565,0.0318937,-0.022386508,-0.02562809,-0.008332393,0.0050255423,-0.022408262,-0.0099912565,-0.0122592775,-0.020058658,0.017948367,0.03526582,-0.0047835116,-0.035700932,0.02356131,0.021407505,-0.015033116,-0.016588641,-0.06705074,-0.0307189,0.011650121,0.049950846,0.04751422,-0.018339967,-0.06705074,-0.02884792,0.016730053,-0.012868434,0.022016661,0.045860793,-0.018503133,-0.03530933,0.040226094,0.013749536,0.03757191,0.0034890536,0.01362988,0.021690328,0.01491346,0.01091587,-0.04405508,0.005651016,-0.0041553187,0.07044461,-0.021973152,0.00020072935,-0.04009556,-0.022495285,0.022299485,-0.029326541,-0.011606609,0.0044027884,0.017545888,0.003733804,-0.024931911,-0.060611088,-0.016175285,-0.027781894,0.0038072292,-0.092852876,0.016033873,-0.032524616,0.011182376,0.07192399,-0.05512868,-0.014706782,0.004829742,0.013260035,-0.055694323,0.03319904,0.012814045,0.038246337,-0.0033476423,-0.042836767,-0.041901276,-0.0013168934,0.013488469,-0.011280276,0.058957662,0.011057281,-0.02997921,-0.008337832,-0.026389537,-0.024518555,0.019384235,-0.0062221,0.0048215836,-0.01461976,-0.04651346,0.03744138,0.028782653,0.062090468,-0.010981137,-0.014554493,-0.01491346,0.046731018,0.025954425,0.007728675,0.017524133,-0.0049249227,0.047296662,-0.0009008176,0.02084186,-0.008044131,0.01906878,-0.051038627,-0.027673116,0.022299485,0.01664303,-0.0025046128,0.06787746,0.054650053,0.019721447,0.027477317,-0.04261921,0.009066644,0.042488676,-0.01590334,-0.008919794,0.010279519,0.008898038,-0.0091101555,-0.015446472,0.027107472,0.022451773,0.039007783,0.009838968,0.017012876,0.023278486,0.009441928,0.01570754,-0.014554493,-0.0025372463,-0.0144565925,-0.09581164,0.03161088,0.064875185,0.05961033,0.0125529785,0.08650024,0.055781346,0.019982513,0.053127162,-0.03757191,-0.065701894,0.0024733392,0.043598212,0.016316697,-0.01901439,0.024866644,-0.06587594,0.0027425648,0.033373084,-0.035135284,-0.02064606,-0.03896427,0.03413453,0.011356421,-0.05042947,0.026650604,0.042858522,0.0012026764,0.0068258177,-0.035004754,0.028217006,-0.018372599,-0.051430225,-0.014097625,-0.063656874,-0.0054660933,0.038268093,0.057173703,-0.038637936,0.001516093,0.00998038,0.0138691915,-0.014315181,0.0017173323,-0.010312152,-0.032807436,0.0049222033,0.09102541,0.016914975,-0.025954425,0.05860957,0.021124683,0.031175768,-0.02301742,0.000060762697,0.007886403,0.0019783995,-0.025345268,-0.0076634083,-0.04029136,-0.021026783,-0.02103766,0.021951396,-0.0056129433,-0.04503408,-0.045904305,-0.0046992083,-0.012748779,0.01654513,-0.01951477,0.0120417215,-0.028565096,0.017426232,0.0026405854,0.0023849572,-0.0011700431,-0.027629606,0.03580971,-0.010703753,0.015489983,0.0023128917,0.0028418247,-0.043184854,0.0134340795,-0.02893494,0.013368813,0.035896733,0.060045443,0.009012255,-0.0021415665,0.0016439072,0.009866162,-0.009044888,-0.024866644,0.009920551,-0.009893357,0.059871398,0.0037745957,0.008881722,-0.013923581,0.016207919,-0.0018573839,0.029913943,-0.01101377,-0.0024679003,0.0036902928,0.02222334,0.06944386,0.03955167,-0.02183174,0.018883856,-0.021494528,0.005302926,0.018633667,0.023648331,0.023278486,-0.031284545,0.04607835,0.01678444,0.040900517,0.043902792,0.018731568,-0.005699966,0.0010687436,0.0143804485,0.03187195,0.011867677,0.00839222,-0.06069811,-0.0060480554,0.007130396,-0.011519588,-0.0042151464,0.07061866,-0.0045414804,-0.05156076,-0.018775078,-0.045860793,0.011758899,0.03393873,0.026868159,0.020026024,0.0031871947,0.0022489845,-0.009974941,-0.032328814,0.008511877,-0.01767642,-0.0006734037,-0.048079863,0.029500587,-0.02306093,0.052779075,-0.008397659,-0.01372778,-0.021864373,0.026889915,-0.020080414,-0.056477524,-0.02301742,0.04908062,-0.062743135,-0.0027874357,0.0013570052,0.021298727,0.027825406,-0.020461136,-0.016751807,-0.0009647247,-0.011024647,-0.015348572,0.022158073,0.05556379,-0.008582582,0.024823133,-0.016131774,0.031480346,0.015218039,0.007913598,0.04351119,0.04503408,-0.043380655,-0.05230045,0.00084166956,-0.032437593,0.030436078,-0.020667816,0.03507002,0.02014568,-0.013347058,-0.009904235,-0.050298937,0.08114837,0.014859071,-0.004715525,0.017600276,0.016012117,-0.039268848,0.012128744,-0.0096975565,-0.007995181,0.021113805,-0.016458107,-0.011617487,-0.0041716355,0.036484133,-0.02682465,0.042706233,-0.01969969,-0.015772806,0.010546025,0.0036359038,-0.0012998967,0.0059936666,-0.012455078,-0.013901825,0.011182376,-0.0075274357,0.059697352,-0.018535767,-0.016751807,-0.0010313512,-0.0068095014,-0.03017501,-0.0119547,-0.01733921,0.021581551,-0.015794562,-0.024366267,-0.023387264,0.0030702583,0.0005972591,0.040682964,-0.016708298,0.015152772,-0.016294941,0.044903547,-0.0050663343,-0.027912429,0.02227773,0.01555525,0.018655423,-0.0075002415,-0.023039175,-0.014489226,0.0052322205,-0.027586095,-0.0077721863,0.0010021171,-0.040530674,0.011541343,-0.011432565,0.01471766,-0.015631394,0.056999657,0.002820069,0.027890673,0.021603305,0.001076222,0.031371567,-0.056085926,0.041313875,0.020461136,0.0013196128,-0.027390294,0.018927367,-0.039834496,-0.0124442,-0.0059882277,0.03254637,0.019590912,-0.03892076,0.012215766,-0.008283443,-0.019493014,-0.033329573,-0.022147195,-0.00022622419,-0.0074240966,-0.024475044,0.01985198,0.032676905,0.015022239,-0.024953667,-0.046252396,-0.013325302,-0.011682754,0.020123925,-0.034700174,0.029522343,0.02889143,-0.0032660586,0.023583066,-0.01600124,-0.009365784,0.0017513254,0.06439656,-0.0052485373,-0.015468228,0.00022775389,0.009077522,-0.05003787,-0.0120417215,0.00212389,0.017643787,-0.017904855,-0.027477317,0.024301,0.02064606,-0.004865095,-0.020559037,0.0039703962,0.012030844,-0.004672014,-0.04087876,-0.028499829,0.011617487,-0.00087770226,0.01150871,0.016349329,-0.060088955,-0.012901068,0.0047699143,0.00172821,-0.0120417215,0.03724558,0.02340902,-0.025497558,-0.022886885,0.02834754,0.025758624,0.03600551,-0.001007556,0.012618245,-0.0028309468,0.037941758,-0.042205855,0.06400496,0.0133579355,0.034482617,0.013999726,-0.003442823,-0.0045550778,0.0066952845,-0.0057108435,-0.03250286,0.02978341,0.051082138,0.013880069,-0.0016615835,0.0239094,0.0042151464,-0.023931155,0.01960179,-0.00002602598,-0.01259649,-0.0035080896,-0.05438899,-0.017589398,-0.008413976,-0.058217973,0.027542584,-0.030022722,-0.039965026,0.029000208,-0.002133408,0.026433047,-0.048863064,0.021527162,-0.018144166,0.04503408,-0.011780655,-0.030066231,-0.0052077454,0.024126954,0.008326954,0.020852737,0.007250052,0.021059416,0.020374116,0.0014209123,0.0013685629,-0.0069400347,0.019134047,0.0050037866,-0.0015976765,0.0121505,-0.029805165,0.032959726,-0.049254667,-0.021897007,0.045991328,-0.037267335,-0.011726266,0.02538878,-0.000750568,0.027499072,-0.01289019,0.009958624,0.022821618,-0.03620131,-0.028086472,0.002874458,0.012030844,0.021124683,0.024409778,-0.034634907,-0.009686679,-0.0032769365,-0.026280759,0.016479863,0.01535945,-0.01832909,-0.059088197,-0.00084778835,0.024823133,-0.0075491914,-0.06735532,-0.0313063,-0.028086472,-0.026280759,0.017447988,-0.0006737436,0.0011917987,0.015348572,0.018046265,-0.046252396,0.006439656,-0.00003841222,-0.026694115,0.010997453,-0.0121831335,0.0050744927,-0.0044082273,0.044685993,-0.019482136,0.024605578,0.02148365,0.028782653,0.015761929,-0.005131601,-0.010801652,0.003165439,-0.006194906,-0.0083813425,0.0023047333,-0.011312909,-0.004041102,-0.008647849,0.010910431,-0.0047535975,0.026128469,-0.036440622,-0.0009837608,-0.021179073,-0.020058658,0.00016240211,-0.0088218935,0.0044163857,-0.058957662,0.047731776,0.0027398453,-0.035896733,-0.045469195,-0.052039385,-0.015315939,0.0071575907,-0.058217973,0.03535284,-0.04405508,-0.024257489,-0.0182747,-0.042358145,-0.038246337,-0.043184854,0.011476076,-0.0021075732,-0.017252186,0.034395594,-0.01590334,-0.005199587,0.010110913,-0.021266093,0.0010884596,-0.017447988,-0.03802878,-0.0059991055,-0.0022313083,0.0049765925,-0.017937489,-0.0035842343,0.004242341,0.015544373,-0.00246926,-0.023191465,-0.04573026,-0.057217214,-0.019144924,-0.008968744,0.012835801,-0.003486334,-0.022386508,-0.008865405,0.00859346,-0.06465763,-0.0011374097,0.021733839,-0.003788193,-0.0006193546,-0.029652877,0.009387539,0.028086472,0.028238762,-0.020461136,0.016730053,0.0088218935,0.004103649,0.0049765925,0.013640758,0.014543615,-0.0017404476,0.015772806,0.006347195,0.030675389,0.013347058,0.019634424,-0.06448358,0.04751422,0.022756353,-0.032916214,0.018383477,-0.02202754,0.035548642,-0.021962274,-0.008713116,0.042532187,-0.0026745785,0.039725717,-0.039595183,0.042249367,0.012911946,-0.006439656,-0.0137930475,-0.05769584,0.01965618,0.003570637,-0.041661963,0.013183891,0.005240379,-0.005868572,0.027934184,-0.012922823,-0.017121654,-0.04603484,0.0070814462,-0.04725315,0.0014549054,0.013140379,0.017263064,-0.009218933,-0.039094806,0.05051649,0.0244968,-0.0060208607,0.040226094,0.019873736,0.04207532,-0.008185542,0.026237248,-0.033177283,-0.008256248,-0.010366541,0.0119655775,0.052430984,0.030784167,0.030697145,0.013140379,0.049211156,0.027499072,0.014989605,-0.013009846,-0.015772806,0.001703735,-0.02010217,-0.015827196,-0.004647539,0.042358145,0.013934459,-0.02562809,0.003225267,-0.06435305,0.020363238,0.02706396,-0.00039635974,0.012868434,-0.018437866,-0.0032089502,0.011476076,0.037180312,-0.0037011707,0.004508847,-0.036027264,-0.026759382,-0.048950087,0.030109743,0.020733083,-0.0041525993,-0.018372599,0.0059229606,0.0052485373,-0.010110913,-0.0029750776,0.034069262,0.036745198,-0.03324255,0.028565096,0.00034095097,-0.0067333565,-0.027172739,-0.00780482,0.009148228,0.016240552,-0.008843649,0.02049377,0.03409102,0.018361721,-0.0095507065,-0.00083283137,-0.016980242,-0.0010850603,0.012879312,-0.0061024446,-0.0049765925,-0.019677935,-0.024627334,0.0060262997,-0.0046910504,0.038485646,0.017643787,-0.016425474,0.007239174,0.0018859381,-0.024083443,-0.0048215836,-0.021005027,0.029457076,0.022136318,0.0072228573,0.008647849,0.0012189932,-0.010986576,0.01240069,-0.02029797,-0.0029206886,0.03134981,-0.017556764,-0.000077674275,0.05451952,-0.018209433,0.021712083,-0.023735354,0.012911946,0.018111533,-0.018883856,0.0010497074,0.022691086,0.019199312,-0.014391326,0.0151854055,-0.0067496733,-0.02084186,0.014739416,-0.015272427,0.03126279,0.01965618,0.0088218935,0.020689571,0.029065475,-0.01417377,0.029500587,0.063047715,0.01560964,0.0025943548,0.0073751467,0.03352537,0.004835181,0.035853222,0.022386508,0.0005102367,0.012030844,-0.013890947,0.0104318075,-0.013390569,-0.009855284,-0.0015636834,0.0034020313,0.030784167,0.036853977,-0.00065810676,-0.024670845,-0.035853222,0.0029315664,-0.0050309813,-0.004076455,0.032959726,0.0061459555,-0.010540586,-0.031393323,-0.016566886,0.010437246,-0.020069536,0.028913185,-0.0073261964,0.0649187,0.040617697,0.012237522,-0.01689322,-0.0024475043,0.013053357,0.008142032,-0.017110776,-0.0072935633,0.034482617,0.00044870915,-0.027020449,0.00050853705,-0.015968606,0.016479863,-0.015283305,-0.0046040276,0.010257763,-0.022778109,-0.027738383,0.0059936666,0.009964063,0.019775836,0.00419611,-0.00666809,0.02480138,-0.026084958,-0.02869563,-0.0008158348,0.016708298,0.014489226,-0.009017694,0.06269962,-0.0039649573,-0.040900517,0.007696042,-0.04409859,-0.02202754,0.018198555,-0.0047971085,0.023670087,-0.025171224,0.038311604,-0.0029451638,0.0005941997,0.011323787,0.015794562,-0.017589398,0.021451017,0.004258658,-0.0065756286,-0.01017618,-0.01061673,-0.0038181068,-0.01985198,0.024192221,-0.010535147,0.010970259,0.00212389,-0.0039187265,0.03393873,0.010709192,0.011943822,-0.0021755595,0.06169887,0.015870707,-0.0073914635,-0.03313377,-0.017480621,-0.013967092,-0.00028044323,-0.0142390365,-0.0028608607,-0.030588366,-0.033220794,-0.0017064544,0.034504373,-0.0034836147,0.005126162,0.010676558,-0.046252396,0.027934184,0.0246926,-0.025345268,-0.013553736,0.049124133,-0.01452186,-0.013890947,-0.0048079863,0.0035679175,0.01308599,-0.04251043,-0.01190031,-0.012520345,0.037593666,-0.009664923,0.013303546,-0.024583822,-0.023147954,0.0038344236,0.003151842,-0.04183601,0.014793805,0.015141894,-0.020733083,0.014130259,0.0371368,0.0023224098,-0.050647024,-0.008332393,0.016468985,0.025345268,-0.026650604,0.006445095,-0.0037773151,-0.0054606544,0.001150327,0.02054816,0.018905612,0.003497212,-0.013706025,0.0181768,-0.019275457,-0.0004109768,0.0030838556,-0.0026310673,-0.004756317,-0.07636214,0.003377556,0.0061405166,0.0022530637,0.007146713,-0.039290603,0.009964063,0.052735563,0.019003512,0.021472773,0.005493288,0.023213219,-0.054301966,-0.0313063,0.029174253,0.008555388,-0.030087987,0.017752565,0.024344511,-0.0076579694,-0.0117480215,-0.008876283,-0.008256248,-0.028630363,-0.017719932,0.014859071,0.0022992943,0.014946094,0.01516365,-0.016523374,0.00027279477,-0.0042885714,0.0033802756,-0.045643236,0.026128469,0.015098383,0.0017050947,-0.015033116,-0.043489434,-0.015272427,-0.010681997,-0.035853222,-0.0011088555,0.015870707,0.0038235458,0.046165373,-0.033590637,-0.008386781,-0.014021481,-0.0077558695,-0.024170466,-0.021396628,0.01999339,-0.003165439,-0.0029941138,-0.033851705,-0.0069074016,-0.019580035,-0.016947608,0.013890947,-0.005868572,-0.024322756,-0.0056618936,-0.018764202,-0.010143546,-0.00028520226,0.013020723,-0.015033116,0.0061513945,-0.0071575907,-0.00046638557,0.04529515,-0.0114543205,0.010192496,0.0044626165,0.026150225,0.008343271,0.012531223,-0.019231945,-0.009175423,0.017545888,-0.007304441,0.02183174,0.003502651,-0.037419625,-0.0048161447,0.005468813,-0.04203181,-0.005971911,0.008413976,0.0094800005,-0.020330604,-0.019057902,-0.011737144,0.03916007,-0.026715871,-0.010660241,-0.027477317,-0.017491499,0.038594425,-0.006178589,-0.011932944,-0.0050037866,0.022103684,-0.008473804,0.007810259,0.032481104,-0.012139622,0.0054987264,0.044229124,0.014956972,0.011693632,0.0056673326,-0.032220036,-0.014739416,0.010486197,0.01308599,-0.0318937,-0.015468228,-0.01471766,-0.0011816007,0.03278568,0.0029669192,0.019982513,-0.042162344,-0.034265064,0.0010626249,0.010877797,-0.016556008,-0.024018176,-0.011215009,-0.018307334,-0.03250286,-0.031154012,0.011057281,0.031371567,0.030849434,-0.02070045,-0.023844132,-0.00987704,-0.017959243,0.014434837,-0.0015405681,0.026781138,-0.011867677,0.02035236,0.01150871,-0.007875525,0.016371084,0.0061350777,-0.0134340795,-0.011835043,0.0076470915,-0.005694527,-0.010556903,-0.0009246128,0.026193736,-0.0017159726,0.028391052,0.022799864,0.0032035112,-0.014032358,0.01975408,0.030610122,-0.051952362,-0.028978452,0.0067931847,-0.03145859,0.036723442,-0.015326817,0.043163102,-0.015283305,0.025519313,-0.033547126,0.010165302,-0.03670169,-0.036310088,-0.015022239,0.015696662,0.010562342,0.010676558,0.028282274,-0.01580544,0.017263064,-0.026628848,0.038442135,-0.044729505,0.0030240277,0.009295078,0.00007733434,0.020178314,-0.030762412,-0.022266852,-0.028652119,-0.018100655,0.00037902326,-0.013009846,0.017458865,-0.045251638,-0.0003446902,0.013140379,-0.0073316353,-0.009251567,0.00809852,0.006009983,0.026476558,-0.0019933563,-0.014848193,0.004968434,-0.07984304,0.053257696,0.013227401,0.02997921,-0.026063202,0.004321205,0.000568025,-0.01872069,0.0028608607,-0.005379071,-0.008636971,-0.04398981,0.026237248,0.00666809,-0.006923718,0.018307334,0.019318968,-0.00079951814,0.008995938,-0.003546162,-0.0043375217,0.019384235,-0.0099912565,-0.012857556,0.025062446,-0.036592912,-0.010687436,0.020210948,-0.038398623,-0.0022217901,0.043010812,-0.0016711017,-0.027390294,-0.010007573,-0.016142651,-0.031589124,0.0015596042,0.012172256,0.0073370743,0.0032878143,-0.02192964,-0.0066898456,0.022321241,-0.007032496,0.005308365,-0.026585337,-0.017447988,-0.03441735,0.007043374,0.01427167,0.023082687,-0.01353198,-0.0064777285,0.0070814462,-0.018318212,0.006336317,0.031980723,0.0034509813,-0.015598762,-0.016381962,0.0034509813,0.0050663343,0.005754355,-0.005596627,0.018133288,-0.004647539,0.0030349055,0.023670087,-0.015033116,0.007674286,0.004497969,0.005131601,0.0019022549,0.006553873,-0.0052512567,-0.009692118,0.009229811,-0.011432565,0.00016529154,0.004919484,-0.03382995,-0.015838074,-0.034482617,0.0043184855,0.014772049,-0.0017050947,0.006891085,0.023778865,-0.0054715322,-0.0075546303,0.029413564,-0.010839725,-0.013564614,0.00047352412,-0.009028572,0.044860035,-0.009670362,-0.0033449228,0.0055531156,0.016033873,-0.009387539,-0.030936455,-0.013619003,0.0107907755,0.010132669,-0.005748916,-0.009654045,-0.007935354,-0.0072881244,-0.025758624,-0.019449502,-0.0039432016,-0.0082344925,-0.015305061,0.021418383,-0.022430018,-0.011008331,0.017371843,0.023974666,-0.022430018,-0.01975408,-0.044642482,0.010540586,-0.006673529,-0.0018777798,0.030109743,0.0033122892,0.015000483,-0.014859071,0.03402575,-0.0048922896,-0.03546162,-0.022691086,0.02958761,0.025910914,-0.0049711536,-0.043380655,-0.015729295,0.0038833737,0.060915668,-0.0046285028,-0.00913735,0.009855284,-0.008854527,-0.00036780554,-0.01936248,-0.026433047,-0.008272565,-0.010953942,-0.009055766,0.05077756,-0.0017309295,0.01625143,-0.0009817212,-0.04681804,0.0043592774,-0.0028445441,-0.009447367,0.0049657146,0.003867057,0.02222334,0.023213219,0.022049295,0.030740656,0.0045550778,0.011084476,-0.0009443288,-0.00553136,0.035135284,0.019057902,0.0004330723,0.030087987,0.0026691395,0.010730947,0.027085716,-0.021962274,0.022299485,-0.017980998,-0.0071793464,-0.017687298,-0.010584097,-0.042358145,0.035722688,-0.019743202,0.00785377,-0.020287093,0.0026405854,-0.0121505,0.0064233392,0.010730947,0.019340724,-0.009594217,-0.008865405,0.006499484]},{"id":"class-Client","type":"class","source":"main","text":"Class: Client\nDescription: Main Fluxer bot client. Connects to the gateway, emits events, and provides REST access.\nProperties: channels: ChannelManager, events: ClientEventMethods, guilds: GuildManager, readyAt: Date | null, rest: REST, Routes: { readonly channel: (id: Snowflake) => `/channels/${string}`; readonly channelMessages: (id: Snowflake) => `/channels/${string}/messages`; ... 55 more ...; reado..., user: ClientUser | null, users: UsersManager, ws: WebSocketManager\nMethods: assertEmojiInGuild(emojiId: string, guildId: string) -> Promise — Asserts that a custom emoji (by id) belongs to the given guild.\nUsed when reacting in guild channels to reject emojis from other servers.; assertReady() -> void — Throws if the client is not ready. Use before accessing client.user or other post-ready state.; destroy() -> Promise — Disconnect from the gateway and clear cached data.; fetchInstance() -> Promise — Fetch instance info (API URL, gateway URL, features). GET /instance.\nDoes not require authentication.; fetchMessage(channelId: string, messageId: string) -> Promise — Fetch a message by channel and message ID. Use when you have IDs (e.g. from a DB).; getOrCreateUser(data: APIUserPartial) -> User — Get or create a User from API data. Caches in client.users.\nUpdates existing user's username, avatar, etc. when fresh data is provided.; handleDispatch(payload: GatewayReceivePayload) -> Promise; isReady() -> boolean — Returns true if the client has received Ready and `user` is set.; login(token: string) -> Promise — Connect to the Fluxer gateway and authenticate.; resolveEmoji(emoji: string | { name: string; id?: string; animated?: boolean; }, guildId: string | null) -> Promise — Resolve an emoji argument to the API format (unicode or \"name:id\").\nSupports: <:name:id>, :name:, name:id, { name, id }, unicode.\nWhen id is missing (e.g. :name:), fetches guild emojis if guildId provided.\nWhen reacting in a guild channel, custom emojis must be from that guild.; sendToChannel(channelId: string, payload: string | { content?: string; embeds?: APIEmbed[]; }) -> Promise — Send a message to any channel by ID. Shorthand for client.channels.send().\nWorks even when the channel is not cached.; sendToGateway(shardId: number, payload: GatewaySendPayload) -> void — Send a payload to the gateway (e.g. Voice State Update).","meta":{"url":"/docs/classes/Client"},"embedding":[-0.013568682,0.0051912684,-0.021182928,0.006163362,0.052046165,0.0037229722,-0.04375871,0.013510646,0.030271275,0.029505208,0.0043062284,-0.018722227,-0.003308019,0.036724813,0.029598065,0.019801686,-0.068063945,-0.022215959,-0.023399882,0.03435697,0.012756186,-0.0033805633,0.016621344,0.039394446,-0.026603438,0.031826627,-0.016470453,0.042458713,-0.01037093,-0.03960337,0.06049612,-0.023957022,0.050142605,-0.01353386,0.008281655,0.014671355,-0.0183508,0.036933742,-0.027578432,0.0084093325,-0.03526232,-0.04136765,0.016574915,0.009755754,-0.024258805,0.008606653,-0.05473901,0.018838298,-0.010150395,0.048053328,-0.03888373,0.017166877,0.020045435,0.06992108,0.014787425,-0.035006966,-0.030921273,-0.0024665054,-0.0311302,0.014195464,0.029040925,0.00041676688,0.0005117999,0.024514161,-0.00030795045,0.04717119,-0.014195464,0.030224847,0.009465577,0.064674675,0.032174837,-0.0016380497,0.0021429579,-0.0393248,-0.027183792,-0.0116128875,-0.005078099,0.039487302,-0.01160128,-0.04944618,-0.009308881,0.01866419,-0.036074817,-0.06490681,0.005464035,0.0073472844,-0.0511176,-0.01214101,-0.015402601,-0.01620349,0.01076557,-0.016458845,-0.07507462,0.0052551073,0.05473901,-0.0015234298,0.030921273,-0.0100227175,-0.0071441606,0.05557472,0.09243882,-0.05297473,-0.068899654,-0.02567487,0.05970684,-0.018826691,-0.033753403,0.016099026,-0.053764015,-0.011241461,-0.09192811,0.008188798,-0.007718711,0.031153414,-0.0029714135,-0.014845461,0.05083903,-0.01464814,0.02428202,-0.0036359192,-0.029551636,0.023748094,0.04454799,-0.002511483,0.019349009,-0.0019470884,0.043201566,-0.003255787,-0.09137097,-0.01890794,0.039765872,-0.030619489,0.04048551,0.003662035,-0.030456988,0.005081001,-0.010893249,-0.021507926,-0.04104265,-0.014996353,0.0019891642,-0.04299264,0.057199713,-0.015379387,-0.0007566368,0.026603438,-0.057896137,0.023307025,-0.03379983,0.026998078,-0.010312894,0.018397229,-0.032708764,-0.008554421,0.010939677,-0.0032209659,0.02372488,0.027764145,-0.020207934,-0.041785505,0.006906215,-0.03586589,-0.026858794,-0.0006902588,-0.048935466,-0.049864035,-0.0007617149,-0.000113894515,-0.03180341,0.0040334617,0.038976587,0.003662035,-0.028112357,-0.00015134549,0.0018716423,-0.03157127,-0.006337468,0.014265107,-0.057478283,0.015379387,0.045360487,0.005780328,-0.023527559,-0.07679247,-0.037374813,0.0038970786,0.006784341,0.023910593,0.0064477352,0.007033893,-0.03704981,0.025907012,0.0039754263,0.00054190576,0.035169464,0.0062097902,0.061888974,-0.017282948,0.030085562,0.0014109862,-0.007068714,-0.0098602185,0.03184984,-0.026765937,0.02333024,-0.02165882,0.022390066,-0.010968694,-0.015901705,0.015669564,0.03677124,0.016168669,-0.019488294,-0.011142801,-0.06499967,0.046521194,-0.053206876,0.055203293,-0.06374611,0.0012724266,-0.048703324,0.042690855,0.014253499,-0.075028196,-0.018141873,0.017584732,0.0398123,-0.031060558,0.0011969806,-0.0025579112,0.003052663,0.024815947,-0.03674803,-0.05631757,0.02057936,-0.035123035,0.039789084,0.022854349,0.013150826,-0.006093719,-0.039626587,-0.02344631,0.027949858,-0.022482922,0.007823175,-0.0070513035,-0.010132984,-0.018257944,0.03626053,0.023771308,0.07433177,0.027090935,0.027415933,0.00018154205,0.026905222,-0.014276714,0.022007031,-0.012152617,0.024862375,0.011670923,0.022819528,-0.0253963,0.022877563,0.037839096,-0.02189096,0.009668701,0.017015986,0.044222992,-0.029830206,-0.0027929547,0.0067146984,0.015054388,0.04666048,-0.031106986,-0.01994097,-0.023817737,-0.00070948305,0.015936527,0.018594548,0.003952212,-0.010695928,-0.020776682,0.025930226,0.028344499,0.0059602377,0.054321155,0.04995689,-0.023109704,-0.011311104,0.023016848,-0.022007031,0.032058768,0.01001111,-0.06272468,0.035401605,0.043921206,0.06871394,0.038953375,0.017851695,0.045151558,0.0067901444,0.020207934,-0.04283014,-0.014624926,-0.0007348735,0.016876701,0.02762486,0.013011541,0.04533727,-0.04016051,0.006970054,-0.0084093325,-0.04693905,-0.026092725,-0.0391623,-0.012106189,0.006575413,0.04231943,0.060913976,0.012593687,-0.020649003,-0.056410428,0.013835644,-0.03491411,-0.044222992,-0.03308019,0.008484779,-0.016470453,-0.016075812,0.03240698,0.03888373,-0.07224249,0.042806927,-0.0022865955,0.033289116,-0.00062678254,-0.023643631,0.029923063,0.023492739,0.028669499,0.023434702,-0.042806927,-0.056364,0.025999868,0.03498375,0.03797838,-0.0076664793,0.020474896,0.001977557,0.023585595,-0.019279366,0.02488559,-0.022192745,-0.021554355,0.022633815,-0.03725874,-0.012837435,-0.028367713,-0.030712346,0.03340519,-0.030758774,-0.005426312,-0.04164622,0.026092725,-0.01194369,0.0009822495,0.0016815764,0.01640081,0.008780759,-0.026533794,0.025744513,0.0009807986,-0.018640976,-0.0014262205,0.011311104,-0.010957087,-0.040833723,-0.02138025,-0.02388738,0.022552565,0.03013199,0.031431984,0.008444154,-0.005339259,-0.020730253,-0.012570472,-0.029133782,0.00035655513,-0.011769583,0.05418187,0.030689131,-0.009390132,-0.055667575,-0.0101736095,-0.012210652,0.00504618,0.058453277,-0.0045935037,0.017329376,0.026603438,0.048935466,0.03352126,-0.009424953,0.008490582,-0.026092725,-0.010202627,0.016215097,0.015901705,0.011409764,0.0020863733,0.017828481,-0.0098312,0.019035619,0.045708697,0.00380132,-0.048889037,0.018176693,-0.038140878,0.008827187,0.039719444,-0.0057484084,-0.034031972,-0.029830206,0.022738278,0.0062213973,-0.009349506,0.047635473,-0.06499967,-0.01520528,-0.04250514,-0.009239239,-0.016830273,0.06639252,0.00024229789,0.044733703,-0.020254362,-0.009802182,-0.00011063002,-0.041344434,0.019244546,-0.03312662,-0.0035575712,0.014857068,0.024444519,-0.012593687,0.018455263,-0.01751509,-0.0014566891,-0.0016815764,-0.022622207,-0.043364067,-0.034728397,0.0077883536,0.026998078,-0.076978184,-0.011508424,-0.002774093,0.046080124,0.02829807,-0.018768655,-0.0050113588,0.0027769948,-0.050653316,0.018884726,0.0011853735,0.01823473,-0.035123035,-0.0011331416,0.009935664,0.04283014,-0.0065812166,-0.0092102215,0.030921273,0.038698018,-0.011624495,0.005670061,0.009384328,0.009935664,0.08770313,0.035796247,0.046428338,0.051581882,-0.045987267,-0.043085497,-0.025698084,0.045430128,-0.007579426,-0.019708829,-0.026185581,0.0038506503,0.000988053,-0.0065057706,0.0480069,-0.01055084,0.03101413,-0.04478013,-0.03168734,-0.05000332,0.0033283315,-0.03168734,0.00879817,0.0012187439,-0.022157924,-0.0011549048,-0.004236586,0.008328083,0.02750879,-0.01759634,-0.0198249,-0.013870466,0.0015350368,0.028437356,0.0010308542,0.022947205,0.003676544,-0.0004933011,-0.032337338,-0.00044433368,-0.02806593,0.000804516,0.024165949,0.01500796,-0.0063897,-0.016099026,-0.009465577,0.0046225213,0.015704384,-0.07577105,-0.018141873,0.010005306,0.026371295,-0.021310607,0.01297672,0.015518672,-0.018582942,0.039348017,-0.040531937,-0.037676595,0.011595477,-0.038674805,-0.013882073,0.0032412782,-0.010423162,0.0106494995,0.00537408,0.033056974,-0.008426744,0.027671289,-0.0042307824,0.0011418469,0.015994562,-0.021798104,0.014485641,-0.019360617,0.018339192,0.02460702,-0.01194369,-0.006795948,0.003029449,-0.0028335794,-0.015274923,0.007364695,0.019441865,-0.007341481,-0.02138025,0.006476753,-0.018594548,-0.00048278217,-0.047519404,-0.0014276714,-0.026324866,0.0090593295,-0.0124195805,0.00026932062,0.019685615,0.0018092543,-0.025535585,0.01325529,-0.023713274,0.011520031,-0.016307954,-0.0476819,-0.0006532612,0.034101613,-0.029017711,-0.011049944,-0.04041587,-0.027717717,-0.023980236,0.06490681,0.00090970524,0.005110019,0.0067611267,-0.0022227566,-0.024328448,-0.006708895,-0.010283876,0.0014523364,-0.029598065,0.0013181295,0.028646285,-0.036515888,-0.048981894,0.010516019,-0.007631658,-0.018594548,0.010846821,-0.014137428,-0.006871394,0.029783778,0.016540095,0.050189033,-0.014485641,-0.022471314,-0.038999803,0.023214169,-0.027253434,0.003928998,0.007591033,0.012918685,-0.01512403,0.0012259983,0.010127181,-0.0044948435,0.009459774,0.03073556,0.009744147,-0.015158852,-0.021240965,-0.026023082,0.026649866,-0.037235525,0.010539233,-0.008693706,-0.026162367,-0.038419448,0.017050806,-0.0023794523,-0.021043643,-0.023434702,0.009790575,0.013719574,0.010974498,0.021229357,0.031896267,-0.001255016,-0.0368641,-0.00899549,0.013777609,0.0025288935,-0.019325795,0.009744147,0.03496054,-0.056503285,0.040462296,-0.021705247,-0.014775818,0.028808784,-0.011688334,0.021751676,-0.022575779,0.024932018,-0.0019891642,0.05418187,0.0029511012,0.0008719822,-0.0045470754,0.038187306,0.024815947,0.018745441,0.048331898,0.03570339,0.03263912,0.0037926147,-0.019999007,-0.011549049,-0.00750398,-0.03136234,0.012930292,0.016052598,-0.016783845,0.01230351,-0.03797838,-0.011247264,0.06142469,-0.043874778,-0.00085747335,-0.0017178485,0.03526232,0.017132057,0.0018339193,0.033823043,0.0026043395,-0.016574915,-0.02500166,0.001495863,0.0035981962,0.033219475,0.0032906083,-0.02829807,0.0116128875,-0.018223122,-0.0035082411,-0.0030787792,0.021983817,-0.046706907,-0.007591033,-0.014276714,0.034287326,-0.021449892,-0.047635473,0.012907078,-0.018141873,-0.037281953,0.0052144825,-0.0009002745,-0.01946508,0.0007994379,0.006883001,-0.025373086,0.0067727338,0.02583737,-0.018408835,-0.01112539,-0.009105758,-0.025628442,0.02472309,0.03574982,-0.015379387,-0.0016540095,0.0085196,0.035726607,0.015727598,-0.024073092,-0.03809445,0.014566891,-0.015982956,0.024699876,-0.034217685,-0.022424886,-0.018896334,-0.027183792,-0.019697223,-0.019174904,-0.007428534,-0.035540894,-0.0017657276,0.020057041,-0.032894477,0.02957485,-0.023957022,0.0072312136,-0.032755192,0.004387478,-0.020161506,-0.012013332,-0.014810639,-0.0055975164,-0.00602988,0.010388341,-0.008241029,0.031942695,-0.00008387932,0.024142735,-0.007033893,-0.01887312,-0.027578432,-0.03001592,-0.022007031,-0.02829807,-0.0113053,-0.009337899,-0.022900777,0.03853552,0.016273132,-0.04248193,-0.044756915,-0.047914043,-0.008467368,-0.015518672,0.015100816,-0.0034066793,0.012071367,-0.010556643,0.008403529,0.008345493,-0.030898059,-0.005942827,-0.033335544,-0.060403265,-0.020451682,-0.00038412193,-0.010684321,-0.025071302,-0.03742124,0.011351729,0.014938317,-0.10910659,-0.0054205083,0.007887014,-0.017967766,-0.019105261,-0.0074227303,0.0035082411,0.038187306,0.014485641,-0.01620349,0.033242688,-0.017793661,-0.009227632,0.015274923,0.010875838,0.005580106,0.00010020178,0.014833854,0.005934122,0.0022575778,-0.004625423,-0.011334318,-0.016934736,0.03804802,0.026765937,0.010446376,0.00788121,-0.0029365923,0.029621279,-0.004222077,0.019035619,-0.014218678,0.011920475,-0.016690986,0.009871826,0.054367583,0.018327586,-0.023515953,0.036283746,-0.059660412,0.000025911908,0.00011507336,-0.02046329,0.0025201882,0.016586524,-0.0028553428,-0.0032006535,0.026789151,-0.0049272073,-0.016052598,-0.03312662,-0.037490882,0.010539233,0.01902401,-0.0072428207,0.030712346,-0.03196591,0.044571202,-0.029528422,-0.026742723,0.004677655,0.021577569,0.034658752,-0.024328448,0.014857068,-0.038512304,-0.020091863,-0.019198118,0.01620349,0.0253963,0.0050171623,0.0022633814,0.014833854,0.018223122,-0.018826691,0.055760432,0.00927406,0.013290112,0.014949924,-0.023980236,-0.02057936,0.007451748,0.026719509,-0.002955454,0.007991478,0.0052173845,-0.014091,0.023423096,0.027717717,-0.023063276,0.016876701,-0.025257016,0.027369505,0.022401672,0.015611528,-0.012907078,-0.043874778,0.011502621,0.01643563,-0.019801686,0.048610467,-0.031919483,0.009999503,-0.005156447,-0.023237383,0.023423096,0.010730749,0.019198118,-0.02320256,-0.03988194,-0.002750879,-0.01230351,-0.0074227303,0.01990615,-0.026882008,0.012860649,0.04009087,-0.0008415136,-0.0122570805,0.01751509,0.019256152,0.0022387165,0.0053769816,-0.011850833,-0.030712346,-0.027996287,0.025976654,-0.005260911,-0.012941899,0.010202627,-0.018304372,-0.008966473,-0.010440572,-0.004422299,-0.01138655,0.015774028,-0.011595477,0.0018672897,-0.011641906,0.0074923728,-0.014357964,-0.003902882,0.008177191,-0.007416927,-0.0018368211,-0.009796379,0.006476753,0.047821186,-0.036074817,-0.027857002,0.024165949,0.0008690804,-0.017120449,0.0368641,0.030967701,0.030898059,-0.02595344,0.007068714,-0.029435566,0.017584732,0.056039,0.03001592,-0.0040537743,-0.04907475,-0.035169464,-0.009268257,-0.039998014,0.0048952876,-0.042342644,-0.020277577,0.0028364812,-0.0007167375,0.026487365,-0.0021632703,-0.0095410235,0.04972475,0.0335909,0.009796379,0.008676295,0.0054814457,0.024792733,0.004355558,-0.008809777,0.04433906,0.042064074,-0.0041495324,0.03542482,-0.0082526365,-0.036631957,0.00023359257,-0.0073356773,0.018733835,0.038419448,0.02165882,-0.036678385,-0.014799032,0.020416861,0.01866419,-0.021623997,-0.029644493,0.06866751,0.038628377,0.00035637376,-0.02829807,0.0012151166,0.027183792,-0.03363733,0.03442661,-0.027648075,0.049399752,0.024932018,0.024839161,-0.020753467,-0.0039493106,-0.00045158813,-0.0008741585,-0.039278373,-0.0103361085,0.0020457485,0.0046979673,-0.008803973,-0.023295417,-0.0035952944,0.025024874,-0.004355558,-0.0026638259,-0.03284805,-0.034728397,-0.044176564,0.010603071,-0.015959742,-0.010028521,0.004007346,0.0019282269,0.027694503,-0.028762355,0.010899052,0.017294556,0.011717351,0.059660412,0.00006814628,0.023074884,0.0009953075,-0.03837302,-0.012466009,0.016586524,0.005211581,0.049864035,-0.031640913,0.019720437,-0.018130265,0.016702594,0.008908438,-0.010777177,0.008148173,0.009047722,-0.0042598,0.012512437,0.012825828,0.00093727204,0.020509718,-0.0025695183,-0.00796246,-0.05195331,0.019604364,0.009088347,0.0027915037,0.015216887,0.0007987125,-0.009308881,0.009198614,0.006499967,0.024490947,0.012001725,-0.00038920005,-0.009616469,-0.026487365,-0.010283876,-0.017213305,0.008502189,-0.030549847,-0.02623201,-0.008049513,-0.005878988,-0.014439213,-0.011316908,-0.007631658,-0.03586589,0.0077129076,-0.01862937,0.029714135,0.001992066,-0.02049811,-0.027160577,0.021693641,-0.008972276,-0.03786231,0.0075968364,0.022726672,0.007968264,-0.009906647,-0.0090593295,-0.026092725,-0.018107051,-0.014996353,-0.0072950525,-0.008554421,-0.0340784,0.034519468,0.007672283,-0.013661538,-0.0059138094,0.02957485,-0.014613319,0.014462427,0.030921273,-0.038465876,-0.057153285,0.025419515,-0.010539233,0.029969491,0.007213803,-0.017468661,0.015263316,-0.015774028,-0.00040842427,0.03786231,0.017062414,0.021333821,-0.017979374,0.039069444,-0.05752471,-0.021043643,-0.02488559,-0.01353386,0.0063200574,-0.05942827,0.013673145,0.016110633,-0.001274603,-0.013731181,0.0050490815,-0.035935532,0.0114678,0.03753731,-0.0060995226,-0.012175831,-0.013789216,-0.02528023,-0.022355244,0.040973008,-0.00061336183,-0.012756186,0.0185133,0.02667308,0.01317404,0.0011607084,0.03263912,0.019813294,-0.024374876,-0.036051605,0.026208796,-0.0119320825,-0.014764211,0.04426942,-0.011044141,-0.013998143,-0.006819162,-0.0143463565,-0.029017711,0.006116933,0.027415933,0.0011636101,0.015483851,-0.041506935,-0.032337338,0.013069577,-0.019732043,0.01520528,0.037490882,-0.0032499835,0.026742723,-0.03514625,0.006145951,-0.028715927,0.008885223,-0.013673145,-0.024305234,0.029203424,-0.0061401473,-0.0076896935,-0.031037344,0.0012898372,-0.0036039997,-0.02046329,0.014044572,-0.005121626,-0.055667575,-0.03259269,-0.017735625,0.007364695,0.011659316,0.024421304,-0.017979374,0.023376668,-0.0020486503,0.030201633,0.07637461,-0.0017120449,-0.02511773,-0.021182928,0.025883798,0.00066994637,0.008989687,0.000053274704,0.03985873,-0.00050128094,0.0006753872,-0.00037360302,0.060124695,-0.008873616,0.0035140447,0.0038506503,0.00070839486,-0.0052260896,0.006325861,0.0012767792,-0.020393647,-0.0128954705,0.01341779,0.012361545,0.003496634,0.009390132,0.025628442,-0.029644493,0.013882073,0.011195033,-0.0035865891,-0.016772237,0.012431188,0.018014194,0.0040363637,0.01659813,0.020242754,-0.003511143,0.016110633,-0.037653383,0.004068283,0.004224979,-0.024165949,-0.0037200705,0.015599921,0.004300425,-0.009517809,-0.026301652,-0.014903496,-0.028692713,0.034240898,0.0060530943,0.008217815,-0.01445082,-0.015356173,0.0059486306,0.024862375,-0.0025680673,-0.036005177,0.027462361,-0.008455761,-0.031942695,-0.041112293,0.013011541,0.034380183,0.022842743,-0.0008088687,-0.024862375,0.030062348,0.00815978,-0.027601646,0.006476753,-0.004500647,-0.0083571,0.017944552,-0.0029481994,-0.008084334,0.00069098425,0.00010391968,0.013998143,-0.0050606886,-0.041948,-0.013568682,-0.016969558,0.02252935,0.023492739,-0.023295417,0.0023243185,-0.030874845,0.023515953,-0.012965113,-0.008177191,0.017805267,-0.00435846,-0.025349872,-0.0016685184,-0.022993634,0.0112994965,-0.015147245,0.025373086,0.013557075,0.014578498,-0.02384095,-0.03419447,-0.03085163,-0.015182066,-0.028089143,0.003548866,0.01205976,0.033823043,-0.0022909483,-0.00046246976,-0.0140213575,0.0060124695,-0.0043149334,-0.035169464,-0.023388274,0.008647278,-0.011409764,0.021043643,0.01194369,-0.03542482,-0.035053395,-0.029505208,-0.00899549,-0.0007950853,0.01784009,0.005588811,-0.048471183,-0.017410627,-0.0069526434,-0.028344499,-0.012187438,-0.013777609,-0.007614247,-0.0006597902,-0.0030903863,-0.00453837,-0.040856935,0.008136566,-0.006262022,0.016377596,0.011473603,-0.020149898,0.004454219,-0.0136963595,0.01568117,-0.038071238,0.016737416,-0.037839096,0.021403464,0.0022836938,-0.0044252006,-0.01168253,0.03029449,0.02651058,0.0012332527,0.036214102,0.0066740736,0.003081681,0.02229721,0.013974929,0.0015945232,-0.013870466,0.00583256,-0.002380903,-0.039394446,0.021519534,0.024212377,-0.018223122,-0.015390994,0.022784706,-0.026719509,0.029156996,0.0022851448,-0.018455263,-0.010521822,0.025930226,-0.015797243,-0.0071267495,-0.013023148,-0.0084151365,-0.006436128,0.019813294,-0.0042162733,-0.024374876,0.036051605,0.00140083,0.012570472,0.012477616,-0.017642768,-0.019917756,0.0060879155,0.020207934,-0.009639683,-0.00091333245,-0.0056439447,-0.0038477485,-0.024815947,0.0025129337,-0.029133782,0.006314254,-0.035564106,-0.018826691,0.010986106,-0.017282948,-0.008873616,0.02030079,0.022622207,0.009430756,0.0017309064,-0.04171586,0.021182928,0.013266897,0.024374876,-0.03920873,0.017248128,-0.009512005,-0.03229091,0.004384576,-0.015240101,0.021438284,0.00061191095,-0.0080901375,0.039510515,0.009082544,-0.010463786,0.011067355,0.020254362,-0.008264244,-0.033289116,-0.0117753865,0.010237448,0.015216887,0.00044687276,0.005321848,-0.04104265,0.015240101,-0.0033283315,0.0044426117,0.0052551073,0.0014871577,0.0013456963,0.013394576,-0.036794458,0.0040102475,0.013348147,-0.0069236257,0.010614678,-0.0046428335,-0.00509551,-0.03630696,0.031176629,-0.013324933,-0.01676063,0.020683825,-0.0067611267,0.02762486,-0.017375804,0.007486569,0.0031629305,0.015251709,0.02790343,0.017793661,-0.0066508595,0.023063276,-0.015994562,0.017967766,0.043944422,-0.004695066,-0.009216025,0.0073704985,0.036956955,-0.022041854,0.015913313,0.0018672897,-0.012291902,0.042690855,0.016609738,-0.031385556,0.019047225,0.0058905953,-0.02141507,-0.020254362,-0.031269483,0.005220286,-0.039696228,-0.02428202,0.020254362,0.0027334683,-0.029505208,-0.016412416,-0.053485446,0.05441401,0.025164159,0.02472309,-0.016493667,-0.015054388,0.012640115,-0.012825828,-0.00090099993,0.033173047,-0.0043932814,-0.010243252,-0.027462361,-0.0055830074,0.018292764,0.00014989461,0.032453407,0.030596275,-0.015193673,0.020521324,0.0101736095,-0.02460702,-0.025326658,0.0010119927,-0.019766865,-0.012640115,-0.011711548,-0.04092658,-0.0074053197,-0.02472309,-0.017747233,-0.01612224,0.009929861,-0.014032965,0.003662035,0.01009236,0.009999503,-0.020625789,-0.0055336775,0.00286695]},{"id":"class-ClientUser","type":"class","source":"main","text":"Class: ClientUser\nProperties: client: Client\nMethods: fetchGuilds() -> Promise — Fetch guilds the bot is a member of.; leaveGuild(guildId: string) -> Promise — Leave a guild. Requires the bot to be a member.","meta":{"url":"/docs/classes/ClientUser"},"embedding":[-0.05399631,0.0021292185,0.051841844,0.0051954053,0.0057003587,0.020613303,-0.052874193,0.033573765,0.015126148,0.013364423,0.040957298,-0.051168572,0.010935038,0.006261417,0.038174447,-0.026661519,-0.08177994,-0.037097216,0.002242833,0.012848249,0.05736266,0.06355675,0.024237745,0.027447002,-0.032608744,0.052649766,-0.0012427454,0.03191303,-0.029309716,-0.029175064,0.05202138,-0.014621195,0.018795474,-0.036895234,0.002576663,0.007697728,0.031598836,0.043695267,-0.015328129,0.015081263,-0.049597606,-0.044907153,0.026818616,-0.027357232,-0.016326815,0.03321469,-0.015507668,0.014935388,0.012724816,0.0422814,-0.04973226,-0.02381134,-0.0011936529,0.09704075,0.0032541417,-0.023025857,0.0015288854,-0.033798188,-0.050360646,-0.0030802134,-0.00063960714,0.008500042,0.017101076,0.025157882,0.031868145,0.03097045,-0.01419479,0.007967036,0.01799877,0.021780306,-0.0068785823,-0.033394225,-0.024686592,-0.010834048,-0.010087839,0.005220653,0.025763825,-0.00015534318,0.01561988,-0.028030504,-0.013734722,-0.004468834,-0.046814755,-0.019973697,0.023654243,-0.023878668,-0.04306688,0.0016972031,0.029085293,-0.015900409,0.020400101,-0.07666309,-0.07554097,-0.01951363,0.023856224,-0.03761339,0.03860085,-0.04486227,-0.0154066775,0.05152765,0.06791057,-0.03458367,-0.069391765,-0.018739367,0.046276137,0.005122468,-0.058933627,0.013353202,-0.054175846,0.0052711484,-0.09125062,0.060235284,-0.016293151,0.029736122,-0.016360477,-0.042169187,0.026930828,-0.0044800555,0.0075574634,-0.024753919,-0.036985002,0.027357232,0.055926353,-0.035683345,0.028412024,-0.0035486976,0.014980272,-0.031823263,-0.033843074,0.003077408,0.008471989,0.041473474,0.020456208,0.022386251,-0.03990251,0.0061997008,-0.023115627,-0.014071357,-0.037299197,-0.024709035,-0.0058069597,-0.032339435,0.0039105806,0.0268635,-0.051482763,0.0016424999,-0.00876374,0.027491886,-0.046724986,0.0046904525,-0.04207942,0.011294115,-0.032743398,-0.013745943,-0.019031119,0.03907214,0.0046231253,0.015182254,-0.057003584,0.010020512,0.03936389,-0.034695882,0.012073987,-0.000084378,-0.057093352,-0.022767771,-0.004019987,0.037366524,-0.014508983,0.013835712,0.0365586,0.02991566,-0.053951424,0.012960461,-0.0137122795,-0.031037778,-0.02610046,0.005610589,-0.02924239,-0.034426574,0.029736122,0.006250196,-0.006048215,-0.07563074,-0.06678845,0.036536157,-0.008118522,-0.012612605,-0.013229769,0.0055292356,0.007675286,0.012646267,-0.0030830186,-0.012152536,0.038915046,0.015900409,0.026908385,-0.00097273587,0.010912595,-0.030454278,-0.006087489,0.0041013407,0.04183255,-0.02762654,0.0072825444,-0.03058893,0.008556148,-0.04685964,0.031823263,0.0089264475,-0.012511614,0.01343175,-0.0625244,0.0055516777,-0.044929598,0.012926797,-0.06791057,0.04151836,-0.037927583,0.004076093,-0.031217318,0.035369154,0.025853595,-0.045759965,0.006547557,0.0070637316,0.052515112,-0.049642492,0.011137019,0.0056358366,-0.0061884797,0.024911014,-0.032047685,-0.037703156,0.0015358988,-0.0004951345,0.052245803,0.06961619,0.012309632,-0.035638463,-0.033932842,-0.038421314,0.012376959,-0.017606027,0.034897864,-0.022902424,-0.0033579376,0.0049485397,0.052604884,0.023205396,0.032833166,0.026504422,0.00072236336,-0.0140937995,-0.000053475927,0.026526865,0.0045950725,0.011602698,0.015373014,-0.0063399654,0.016427804,0.006525115,0.010491801,-0.0018795474,-0.013409308,0.02219549,-0.0034505122,0.032541417,-0.0220945,-0.0030184968,-0.038331546,0.009566055,0.04088997,-0.056420084,0.008533706,-0.0012406415,0.0005410712,0.043223977,-0.001018322,0.0003052511,-0.016035063,0.011277284,-0.016562458,-0.009364073,0.031015337,0.045580424,0.0014601558,-0.0065587787,0.0015962126,0.04055334,0.01875059,0.027267462,0.008791793,-0.033304457,0.03056649,0.008236345,0.051392995,-0.022554567,0.04295467,0.07441885,-0.02675129,0.0009755412,-0.04544577,-0.050136223,0.02228526,0.012163757,0.07096273,-0.0073610926,-0.010435696,-0.043493286,0.015462783,0.0029876386,-0.015081263,0.021656873,-0.026975712,-0.03018497,-0.025786268,0.018896464,0.020927496,0.03626685,0.013992809,-0.022004731,0.003495397,0.011484875,-0.040441126,-0.049328297,-0.018122202,-0.037186984,-0.015137369,0.054355387,0.056420084,-0.068494074,-0.0076079587,0.037119657,0.05067484,0.013016567,-0.018683262,0.034920305,0.050315764,0.0007097395,0.0140937995,-0.016371699,-0.024282629,0.025831152,0.016629785,0.0061267633,0.018312963,0.060325053,-0.03085824,0.04241605,-0.000819146,0.044727616,-0.0217242,-0.0459395,-0.04124905,-0.046545446,0.006356797,-0.017763125,-0.029758563,0.04753291,-0.017202066,-0.0030325234,-0.0312622,0.025876036,0.020994823,0.052874193,-0.028748658,0.022072056,0.0074508623,-0.022128163,0.0045024976,-0.0109799225,-0.023856224,-0.017650913,-0.005924782,-0.009364073,-0.037972465,-0.011535371,0.01152415,0.024462167,-0.007961426,-0.00072446733,-0.0010092047,-0.011726131,-0.007394756,-0.024821246,-0.042528264,0.0020675021,-0.01647269,0.020557199,0.02942193,-0.0041237827,-0.006278249,-0.03229455,-0.014868061,-0.013644952,0.0543105,-0.0010688172,-0.013207327,-0.023003414,0.06001086,0.014026472,0.005122468,0.008584201,0.0013773995,0.025651613,0.02715525,0.005411413,-0.012354517,0.017909,0.032092568,0.023788897,0.030903123,-0.005694748,0.031598836,-0.059517127,0.0055488725,-0.041765224,0.038713064,0.018268079,-0.032586303,-0.006166037,0.04192232,-0.0063231336,0.04466029,-0.016405363,0.07845847,0.03094801,-0.020119572,-0.04905899,-0.049373183,-0.00014631364,0.011226788,0.009678266,-0.001638292,-0.034224592,0.008578591,-0.008471989,-0.015081263,0.020523535,-0.0024518273,-0.016180938,-0.01457631,0.05175207,0.027200136,0.0005736827,0.036513712,-0.0472636,0.022027172,-0.01553011,-0.021656873,-0.039004814,0.017965106,0.045109134,-0.049103875,0.0017911806,-0.016169718,0.00035434376,0.014183569,-0.018167088,0.009599717,-0.018896464,-0.0122086415,0.06333233,-0.012534056,0.02933216,-0.024058206,0.025786268,0.00962216,-0.0005701761,0.015563774,0.02419286,0.029601468,0.0066541587,-0.03038695,0.010912595,-0.004278074,0.020792844,0.01305023,0.043560613,0.05098903,0.011972997,-0.018526165,0.0035010076,-0.013891818,0.009824141,0.0287711,0.019311648,-0.0032120622,0.027177693,-0.031845704,-0.0038937489,0.055971235,-0.009706319,0.044548076,-0.0008051195,0.028883312,-0.079490826,0.007153501,-0.009594107,0.010143945,-0.049014106,-0.027379675,0.007058121,-0.006642937,-0.0038236163,-0.034089938,-0.06059436,0.0049793976,-0.004931708,-0.022139383,-0.010076618,-0.03076847,-0.024731476,0.021578325,0.0067832023,-0.044929598,-0.015485225,-0.033124916,0.019008676,-0.019883927,0.026594192,-0.018470058,-0.048026644,0.0056919428,0.03106022,-0.0011417549,0.0046090987,-0.016730776,0.040620666,0.027334789,-0.0048531597,0.010127113,0.017471375,-0.01419479,-0.0051701576,-0.02372157,0.006822476,0.012197421,-0.050315764,-0.020905055,-0.004098535,-0.0013360215,0.0063792397,-0.03229455,0.025314977,-0.004552993,0.037186984,0.013611289,0.0032569468,0.05296396,-0.006895414,0.0057564643,-0.014430435,0.011501707,-0.010390811,0.0040396242,-0.03047672,0.011069692,-0.012433065,-0.00097483984,-0.003029718,0.019446302,-0.011692467,-0.01438555,0.0052795643,0.01457631,0.009610939,-0.0188628,-0.0070637316,0.008163407,0.020029802,-0.031351972,0.019210657,0.029489256,0.0028978693,-0.026796173,0.014901725,-0.020804064,0.00012097832,0.025651613,-0.049777146,-0.0015246776,0.042214073,-0.0075181895,-0.003896554,-0.030903123,-0.009571665,-0.010037344,0.06409537,0.015182254,-0.039745413,0.0057368274,-0.02037766,0.012275969,-0.010446916,0.011658804,0.021028487,-0.042236514,0.004199526,0.021847634,-0.004496887,-0.026930828,0.003554308,-0.014307002,-0.046141483,0.01915455,-0.0042416053,-0.016753219,0.014430435,0.017819231,0.031643722,-0.009723151,-0.0543105,-0.014430435,-0.017965106,-0.026841057,-0.00790532,-0.010491801,0.027289905,0.021376343,-0.001181029,0.025045669,0.03314736,0.02372157,0.01647269,-0.0021081788,-0.027424559,-0.04335863,-0.031351972,-0.007753834,-0.012163757,-0.002990444,-0.017291835,-0.040261585,-0.053771883,0.0064802305,-0.0075406316,-0.0041237827,0.0033663535,0.009627771,-0.006642937,-0.001733672,-0.025314977,-0.0019580955,-0.008466379,-0.035862885,-0.008264397,0.0048082746,-0.016079947,-0.011782237,0.0105366865,0.018941348,-0.039094586,0.011108967,-0.04241605,-0.012433065,0.02134268,-0.017044969,0.046141483,-0.04466029,0.01789778,0.007327429,0.04324642,-0.011080913,0.0049737873,-0.016068727,0.06238975,-0.011097745,0.014172348,0.0022512488,0.024305072,0.019715609,0.015922852,0.022217933,-0.014419214,-0.033394225,-0.04288734,0.01095748,0.010564739,-0.04030647,0.004895239,-0.03954343,-0.017920222,0.03673814,-0.02829981,0.025876036,0.0077313916,0.0038067847,0.03294538,0.009863416,0.0099644065,0.012679931,-0.036132194,-0.019367753,-0.0035683345,0.0056554736,0.012489171,0.017505039,0.0075574634,-0.0018542997,-0.008814235,0.025427189,-0.006732707,0.008864731,-0.01685421,0.007574295,-0.005125273,-0.017190844,-0.020557199,-0.05175207,0.047398254,-0.03678302,0.012433065,0.0071422798,-0.0060369936,-0.029848333,-0.038645737,0.035750672,-0.045266233,0.011058471,0.023788897,0.0072152177,0.0099419635,-0.016349256,-0.001371789,-0.004179889,0.015855525,-0.024641708,0.008471989,0.0067888126,0.025472075,0.016551238,-0.009650213,0.013701058,0.0015176643,-0.021275353,0.041585688,-0.035458922,-0.037590947,-0.013285874,0.0072152177,-0.006115542,-0.049687374,0.0014243883,0.0054478818,0.027850963,0.028165156,-0.020512313,0.0064633987,-0.021769086,0.005666695,-0.016932758,-0.0037843422,0.00036679226,-0.03936389,-0.01523836,-0.005419829,-0.0543105,0.024147974,0.0010996754,0.015743313,0.02334005,0.037882697,-0.0053553074,0.013072672,-0.015496447,-0.028928196,-0.005686332,-0.030409392,-0.017213287,0.015900409,-0.0009741385,0.010082228,0.027469443,-0.043493286,-0.033865515,-0.02522521,-0.0014489347,-0.02980345,0.008864731,0.017089855,0.039565872,-0.025045669,-0.015384235,-0.012623825,0.0025317783,-0.0074564726,-0.009824141,-0.028075388,-0.0201869,-0.0089264475,-0.021870077,0.023497147,-0.023654243,0.01848128,-0.008084859,-0.0792664,-0.014531425,0.025045669,0.00226247,-0.020826505,0.04562531,0.017224507,0.046276137,-0.044323653,-0.016248265,0.04248338,-0.039184354,-0.005896729,-0.0075125787,0.0300952,0.01836907,-0.023968436,-0.01076111,0.043942135,-0.008370999,0.007002015,-0.0037029888,-0.06212044,0.00022494956,0.048251066,0.020882612,0.0071703326,-0.0320028,0.021780306,-0.0011670025,-0.009779257,0.0051926,-0.013106336,-0.009173313,-0.01542912,0.0150476,0.013577625,-0.007961426,0.010295431,-0.06732707,0.0010323484,0.03085824,-0.018851578,0.018021211,0.021589547,0.025068112,0.000071140516,0.026459537,-0.021971067,-0.0051785735,-0.004070482,0.0156311,0.025808709,0.014082578,-0.012702374,-0.01028982,-0.016281929,0.023609359,-0.030611373,-0.036715694,0.0058518443,0.010082228,-0.012085209,-0.025000785,-0.016281929,-0.03702989,-0.041451033,-0.011310947,0.013701058,0.01124362,-0.012522834,0.0039386335,0.020534756,0.014273338,0.04295467,0.015417899,-0.0012932408,0.017684577,0.010026122,-0.019827822,-0.025045669,0.033506438,0.010564739,0.017808009,-0.013992809,-0.024798803,-0.02124169,0.026122902,0.009874636,-0.04694941,0.0071310587,0.02247602,0.038174447,0.017067412,0.006076268,-0.01647269,-0.005714385,0.0039189965,0.011501707,-0.028187599,-0.027963176,-0.0052795643,0.0061379843,-0.0034028222,-0.023788897,-0.040710434,0.014295781,0.01076672,-0.00046392556,-0.013992809,0.0025948975,-0.022161826,-0.046141483,-0.0040620663,-0.026145345,0.013768385,0.050629955,-0.012298411,-0.0070805633,0.0306787,0.007439641,0.019771716,0.012915576,-0.034897864,0.0011165072,0.0047970535,0.0057424377,0.028187599,-0.028748658,0.05992109,-0.02105093,-0.006065047,0.0110023655,-0.0055853412,-0.015799418,0.013510298,0.016338035,-0.013970367,0.0026061186,0.015967736,-0.0056695,0.018155865,-0.043583054,0.016607344,0.0182793,-0.010009291,0.0025542206,0.019165773,-0.0056610843,-0.0018879632,0.0036160245,-0.011602698,-0.0049737873,0.008034363,0.012320854,0.037927583,0.00428649,-0.00040080646,0.00020127988,0.0024125532,0.014980272,0.0114456015,0.009358463,-0.06310791,-0.016427804,0.02029911,-0.006469009,-0.013656174,-0.06382606,-0.020231783,-0.011075303,0.031800818,0.018874021,0.033753302,0.0021853244,0.054534923,0.03936389,-0.021454893,-0.011602698,0.026706403,0.042438496,-0.0007917944,-0.03543648,0.019850263,0.056913815,0.004064872,0.024462167,0.007585516,-0.012466729,-0.016326815,0.037209425,0.017359162,0.0076472326,-0.0074340305,-0.006929077,-0.05018111,0.011613919,0.013173663,-0.005677916,0.005085999,0.019356532,0.026437096,-0.014980272,-0.00264399,0.0137122795,-0.007114227,0.00036959755,0.05323327,-0.027289905,0.011670025,-0.019771716,-0.009487506,0.016169718,0.01829052,0.019839043,0.035391595,-0.022408692,-0.019726831,0.00790532,-0.012994125,-0.02601069,0.026459537,0.013218548,0.010620845,0.0015934072,0.0015176643,-0.008875952,-0.023878668,-0.034134824,0.01771824,0.012354517,-0.009672656,-0.007114227,0.026841057,0.008432715,-0.006620495,0.0060033305,0.027604098,-0.0020885419,0.035144728,0.026257556,0.051886726,0.0077370023,-0.028793544,0.010906985,0.010110281,0.0016831767,0.0236318,-0.015103705,0.012107651,-0.011546592,0.0046904525,-0.014677301,-0.012982903,0.01514859,0.0005768387,-0.0048643807,0.016068727,0.021668095,0.006648548,0.018167088,0.020254226,-0.04391969,-0.03543648,0.012275969,0.0035767504,0.034606114,-0.005402997,0.0058237915,-0.013768385,-0.0031026558,0.031284645,0.0030661868,0.02942193,-0.013588847,-0.020882612,-0.031105105,-0.0014980272,-0.011479265,0.032990262,-0.05076461,-0.032249667,-0.010054176,0.03696256,-0.011782237,-0.02522521,0.008230734,-0.03173349,-0.015204696,-0.034157265,0.0050074505,0.017381605,-0.037680715,-0.018716926,0.011411938,-0.0028529845,-0.016831767,0.009829752,0.019031119,0.008275619,-0.045849733,-0.030521603,-0.034381688,-0.014239674,0.009616549,0.0035122286,0.005975277,0.005181379,0.020153236,-0.0047661955,0.012421844,0.007344261,0.028075388,-0.021466114,-0.009465064,0.032855608,-0.02066941,-0.033775747,-0.019962477,0.00380959,0.013308317,-0.01848128,-0.021634432,0.0017897779,-0.011894449,-0.009970017,0.021567104,0.020209342,0.015754534,-0.048071526,0.02296975,-0.037748042,0.0048868232,-0.021264132,-0.003515034,-0.029197505,-0.04268536,0.010143945,0.0101551665,0.0127809215,-0.008421494,-0.030050315,-0.023609359,-0.0048643807,0.007686507,0.012242305,-0.0035795558,-0.021926181,0.00036784424,0.0007356885,0.05736266,0.004536161,-0.03191303,-0.014845618,0.03887016,0.0076360116,-0.012792143,-0.0033551322,0.008471989,0.0022372224,-0.011512929,-0.012186199,0.00028736735,0.010800384,0.016450247,-0.018245636,-0.008730076,0.0045221345,0.011782237,-0.037142098,-0.029130178,0.028703773,0.004561409,0.001586394,-0.035975095,-0.030140083,0.04183255,0.0013037606,0.0060538254,0.017785568,0.01991759,0.018492501,-0.017875336,0.00006044533,-0.039992277,0.008976943,0.006755149,-0.0048868232,0.018155865,-0.011512929,0.005790128,-0.022846319,0.013207327,0.013757165,-0.007097395,0.032047685,-0.022363808,-0.036042422,-0.03474077,0.0062277536,-0.048340835,-0.010312263,0.02829981,0.0038460589,-0.020321554,0.005142105,-0.010216882,0.03752362,0.028412024,-0.0040508453,0.0037731212,0.027581656,-0.017953886,-0.0074733044,0.012646267,-0.008146576,-0.023542032,0.0048840176,-0.016876651,0.06580099,-0.0019819406,0.011726131,-0.019659504,-0.044458307,0.018301742,-0.008993774,0.009403347,-0.012545277,-0.022509683,0.0068561397,0.01085649,-0.012433065,0.014969052,-0.0064633987,0.008657139,0.03543648,0.003125098,0.006923467,0.012612605,0.00028508806,-0.018548608,-0.017056191,0.028030504,0.005515209,-0.007927762,0.023945995,-0.035862885,0.010676951,-0.03417971,-0.015765755,-0.008135354,0.02257701,0.034897864,-0.028344696,0.014621195,0.010127113,-0.0036272458,0.0499118,0.02886087,0.0036609094,0.013701058,0.020321554,-0.009083544,0.024080647,0.026347326,-0.032810725,0.033124916,-0.0133307595,-0.019603398,-0.023070741,0.038645737,0.027267462,0.0029595857,0.020366438,-0.006895414,0.012646267,-0.020130793,-0.02991566,0.04306688,0.0082475655,-0.04941807,0.017033748,-0.003458928,0.013151221,-0.0004579643,0.012522834,-0.00481108,-0.010244936,-0.047981758,-0.01228719,-0.023676686,0.0108957635,-0.008140964,-0.00742842,0.022678,-0.018997455,0.015350572,-0.026526865,0.016977642,-0.004067677,-0.03961076,0.01800999,0.012534056,-0.010357147,0.032092568,-0.017213287,0.038353987,0.00043867793,-0.012466729,-0.029848333,0.00048531595,-0.008068027,-0.015934072,-0.035099845,0.03525694,0.016798103,0.03114999,-0.018571049,-0.010676951,0.016506353,0.018200751,0.018324183,-0.035571136,-0.02144367,0.014699743,-0.042214073,0.004474445,0.010632066,-0.02094994,-0.031082664,-0.023564475,-0.00089769426,-0.017875336,-0.00004900499,-0.023003414,-0.04313421,0.008601033,-0.008539316,0.0061099315,0.014890503,-0.021365123,-0.007013236,0.032631185,-0.0116363615,0.0017280615,-0.03763583,0.03543648,-0.028254926,0.04342596,-0.021297796,0.0046259305,-0.0071759433,-0.031396855,0.009739983,-0.009313578,-0.0016495131,0.0045389663,0.03983518,-0.01952485,0.02038888,-0.016079947,0.012702374,0.018986233,0.008466379,-0.003638467,0.0014854034,0.028973082,0.010604013,-0.012253527,0.02372157,0.0008443936,0.012747258,-0.024776362,-0.06862873,-0.012904354,-0.0059472243,-0.011064081,-0.03238432,0.017437711,0.0103459265,0.0019342506,-0.0038320322,-0.004466029,-0.012320854,-0.0038993594,-0.0027730337,-0.027312348,-0.022072056,-0.0036328563,0.009414569,0.015114927,-0.013364423,-0.029309716,0.043583054,0.0024953096,-0.0028417634,0.02285754,-0.02522521,-0.023138069,-0.0069683515,0.0320028,0.018189529,0.013757165,0.023833781,-0.025741382,0.00742842,-0.013420529,-0.022217933,-0.0065307254,-0.020074688,0.00097133324,0.015586216,-0.008342946,-0.014486541,0.030072758,0.01495783,-0.011108967,0.029399486,-0.015373014,-0.003057771,-0.022442356,0.0072601023,-0.0045894617,-0.01400403,-0.034808096,-0.028591562,-0.025920922,0.0018430785,0.008258787,-0.016607344,-0.012960461,0.029848333,-0.0025387916,0.0025429996,-0.009442621,0.031172432,-0.03144174,-0.027559213,0.033035148,0.0028080998,0.010660119,-0.004064872,0.011737352,-0.00007740859,0.037703156,-0.021510998,0.00026562632,0.008230734,-0.01457631,0.021309016,-0.02648198,-0.052829307,0.0046932576,-0.009610939,-0.025202766,0.025741382,-0.0063175233,0.023676686,-0.03781537,0.02219549,0.01836907,-0.005397387,0.031553954,-0.012332074,0.026504422,-0.021376343,0.013229769,0.023586916,0.0058911187,0.004836328,0.024417283,-0.005975277,0.027648984,-0.037927583,0.03505496,0.040912416,-0.00025598312,0.010660119,-0.012881912,0.0415408,-0.009122818,0.0006525816,0.010435696,0.0025864816,0.02142123,0.034224592,-0.038241774,-0.019872706,-0.017022528,-0.012870691,-0.031800818,0.003551503,-0.008219513,-0.02190374,-0.01447532,0.035167173,0.009706319,-0.005829402,0.00024581392,-0.035324268,0.05170719,0.007136669,0.008281229,0.009414569,-0.01076111,-0.021398786,0.020108351,-0.027761195,0.059023395,0.014587532,-0.014789512,-0.008174628,0.007198386,0.035750672,-0.014015252,0.049597606,0.017493816,0.0063175233,0.011748574,-0.00015262555,-0.010828436,-0.036715694,-0.0035486976,-0.005868676,-0.010115892,-0.00038888396,-0.03458367,0.013588847,-0.016214602,-0.028883312,-0.016326815,0.02904041,-0.008039974,0.022689221,0.01572087,0.010272988,-0.010884543,-0.008561759,0.012444287]},{"id":"class-Collection","type":"class","source":"main","text":"Class: Collection\nDescription: Extended Map with utility methods for key-value collections.\nSimilar to discord.js Collection.\nMethods: clone() -> Collection — Creates an identical shallow copy of this collection.; concat(collections: ReadonlyCollection[]) -> Collection — Combines this collection with others into a new collection.; every(fn: (value: V, key: K) => boolean) -> boolean — Tests whether all elements pass the test implemented by the provided function.; filter(fn: (value: V, key: K) => boolean) -> Collection — Creates a new collection with all elements that pass the test implemented by the provided function.; find(fn: (value: V, key: K) => boolean) -> V | undefined — Searches for a single item where the given function returns a truthy value.; findKey(fn: (value: V, key: K) => boolean) -> K | undefined — Returns the key of the first item where the given function returns a truthy value.; first() -> V | undefined — Obtains the first value(s) in this collection.; first(amount: number) -> V[]; first(amount: number) -> V | V[] | undefined; last() -> V | undefined — Obtains the last value(s) in this collection.; last(amount: number) -> V[]; last(amount: number) -> V | V[] | undefined; map(fn: (value: V, key: K) => T) -> T[] — Creates a new array with the results of calling the provided function on every element.; partition(fn: (value: V, key: K) => boolean) -> [Collection, Collection] — Partitions the collection into two collections: one that passes the predicate and one that fails.; random() -> V | undefined — Returns a random value from this collection.; random(amount: number) -> V[]; random(amount: number) -> V | V[] | undefined; reduce(fn: (accumulator: T, value: V, key: K) => T, initialValue: T) -> T — Applies a function against an accumulator and each element to reduce the collection to a single value.; some(fn: (value: V, key: K) => boolean) -> boolean — Tests whether at least one element passes the test implemented by the provided function.; sort(compareFn: (a: V, b: V, aKey: K, bKey: K) => number) -> this — Sorts the collection in place and returns it.; tap(fn: (collection: this) => void) -> this — Invokes the given function and returns this collection (for chaining).; toJSON() -> V[] — Returns an array of the values in this collection.; toString() -> string — Returns a string representation of the collection (array of values).","meta":{"url":"/docs/classes/Collection"},"embedding":[-0.025356648,-0.019071978,0.032912783,0.006805366,0.034704946,0.012169738,0.01977431,-0.020331334,-0.02306801,0.01724349,0.041655622,-0.03480182,0.050180495,0.015330237,0.034753382,0.0069082943,-0.051488288,-0.0043805004,0.04858208,0.05265077,-0.0002872149,-0.0389916,0.009305914,0.0002720784,-0.012157629,-0.008331125,-0.047734436,0.05265077,-0.024787517,-0.076239474,0.08553933,-0.0073805526,0.008573309,0.01903565,-0.010147504,0.03882207,0.061369386,-0.0048285406,-0.008197923,0.020428207,-0.027608959,-0.035334624,0.00990532,-0.0016635003,-0.00030821678,-0.02142116,0.0011178298,-0.03434167,-0.061369386,0.03313075,-0.024896499,0.023649253,-0.010880109,0.05851162,0.011770135,-0.035891645,-0.04812193,0.004162535,-0.01214552,-0.013925571,0.021396942,-0.014179864,-0.023479724,0.030951096,-0.01933838,0.029546428,-0.002281069,0.039693933,-0.0036721125,0.020173915,0.008113159,0.02383089,-0.06088502,-0.020173915,0.023164885,0.041582968,-0.0067084925,0.019265724,-0.030830003,0.010395742,-0.007186806,-0.0024036746,0.051003918,0.0053371266,-0.005866904,-0.041486092,-0.0596741,0.009790282,0.0027018636,-0.031290155,-0.015112272,-0.014179864,-0.048170365,0.036376014,0.006593455,-0.031580772,-0.00861569,-0.015693514,-0.036497105,0.044004805,0.072461404,-0.0088033825,-0.00039430556,0.027512085,0.043375127,0.011497678,-0.033905737,-0.019665329,-0.060061593,-0.0029531294,-0.06931302,-0.015838824,-0.002247769,-0.007792265,-0.009184822,-0.015136491,0.022813719,0.009984029,-0.05037424,-0.061950628,-0.02862613,-0.047952402,0.07289734,-0.020355552,0.00689013,-0.027463648,0.051149227,-0.036279142,-0.029788613,-0.00014067476,0.025695706,0.010970929,-0.020876247,-0.005506655,-0.0148579795,0.015669296,-0.053813253,0.043084506,-0.028359728,0.009838719,0.0077559375,-0.002889556,0.08224563,0.000827966,0.017630985,0.014022444,-0.034535415,0.046111804,-0.027173027,0.010868,0.011788298,0.009796336,0.013598623,0.004870923,-0.0011715643,-0.026349602,0.009548098,0.061708443,0.0052281437,0.0028063054,-0.00045447313,-0.0075985184,-0.030999532,-0.016214209,-0.02802067,-0.041316565,-0.031265933,-0.0071746963,-0.055266354,-0.014664232,0.019968059,-0.053425755,-0.025066027,0.012545124,-0.027003499,-0.010208049,-0.014870089,-0.0486063,-0.021227414,-0.006112115,0.011231276,0.024484787,-0.056913204,-0.031096406,-0.01604468,0.010970929,0.02114265,0.006623728,-0.02202662,-0.0059274496,-0.029037843,0.04664461,-0.010147504,0.040735323,0.050277367,-0.010371523,0.011104129,0.009578371,-0.0075743,-0.037368968,-0.0067690387,0.004577275,0.01574195,-0.02144538,-0.018393863,0.0148579795,-0.0025807717,0.0061423876,-0.022389896,-0.0699427,0.023818782,-0.008367452,-0.037223656,0.018757138,0.0064239264,-0.0145915765,-0.003575239,0.019423144,-0.0023734018,0.08069566,-0.023249649,0.0058245216,0.071202055,-0.007828593,-0.012054701,-0.018115351,0.023334414,-0.07619104,0.023612926,0.0041262074,0.0140951,-0.0070536043,-0.00982661,-0.008125268,-0.013961899,-0.04335091,-0.046983667,0.048969574,0.009760009,0.011770135,0.0025005483,-0.021530144,-0.010952764,0.0644209,0.010262541,0.019604782,-0.040129863,-0.033784647,-0.00735028,0.0123574305,0.07086299,-0.012236339,-0.02714881,-0.03284013,-0.010129339,0.0030817895,0.014506812,0.046596173,0.030539382,0.03702991,-0.04487667,-0.028141763,-0.015269691,-0.03870098,-0.05981941,0.01378026,0.046305552,-0.0064118174,0.03686038,0.016843887,0.08021129,0.050422676,0.04032361,-0.057736628,-0.02787536,-0.002350697,-0.008331125,0.010825618,0.02354027,-0.010486561,0.018054806,-0.01364706,0.029425338,-0.00501926,0.03465651,0.015003289,0.049986746,-0.010565271,-0.023419177,0.015875151,0.020416098,-0.0185755,0.013126365,-0.06267718,0.024085183,0.06538964,0.038773634,0.008888147,0.06800523,-0.029715959,0.027003499,-0.047516473,-0.002057049,0.030515164,0.04722585,0.009106113,-0.015996244,-0.04378684,-0.002738191,-0.015972024,0.042357955,0.030369854,-0.06805366,-0.010208049,-0.015402893,0.007768047,0.021554362,-0.02456955,0.047903966,0.01572984,-0.0057034297,-0.055217918,0.03191983,0.044319645,-0.041437656,0.0024854117,-0.036279142,-0.032791693,-0.01843019,0.024097294,0.028844096,-0.038458794,0.0031604993,-0.01379237,-0.0025262802,-0.035116658,0.020525081,0.001867843,0.0077317194,0.023964092,0.005303826,-0.0495266,-0.02743943,0.0410986,0.024024637,0.031508118,0.024496896,0.021481708,-0.048678953,-0.006121197,-0.016105225,0.0027487867,-0.060013156,0.022607863,0.0029561566,-0.005110079,-0.0054975734,-0.008633854,-0.007852811,0.021275852,0.0010625817,0.009699463,-0.010468396,-0.013295894,-0.018127462,0.03313075,-0.051052354,-0.008912366,-0.0062120156,-0.013974008,0.026276948,0.00944517,0.012175793,-0.05056799,-0.015463439,-0.00090667576,-0.013877135,0.04930863,0.041752495,0.031532336,0.010244377,0.011098075,-0.0051252157,-0.006508691,0.05623509,0.041365,-0.022813719,0.017304037,-0.007961794,0.02007704,0.034075268,0.02188131,-0.024557441,0.007241297,0.026034763,0.0029243699,-0.019084087,0.015245473,0.016480612,0.02429104,0.0401783,-0.024012528,-0.019326271,0.024920719,0.020864138,0.026301166,0.04107438,0.054927297,0.06630994,0.007089932,0.026616005,0.05008362,0.035964303,-0.022680517,0.049405504,0.00000494301,-0.0037538495,-0.0063209985,0.000027907905,-0.019677438,0.012284775,-0.000025519177,-0.06703649,-0.037514277,0.013235347,0.061563134,0.06446934,-0.035746336,-0.08302062,-0.011334204,-0.02683397,0.022995356,0.049986746,0.024351586,0.039887678,-0.030418292,0.022874264,0.0333245,-0.027657395,0.038894724,0.007846757,0.026083201,-0.032258887,0.041631404,-0.046257116,-0.0036478941,0.017861059,-0.035286188,-0.00078407023,0.00040565795,-0.011309986,0.04078376,-0.002483898,0.02683397,-0.050616425,-0.015632967,0.0016302001,-0.022087166,0.016093116,-0.06495371,-0.02008915,0.018345427,-0.04197046,-0.017291926,0.053086698,0.020779375,-0.014228301,0.0032210452,0.048460986,0.012581451,0.006974895,0.0050949426,0.04829146,0.0065571275,0.0046892846,-0.012333212,0.04870317,-0.013683387,0.034293234,0.0007659064,-0.0020827812,-0.039960336,-0.01846652,-0.014409939,-0.005839658,0.042067334,0.017267708,0.018805576,0.05550854,0.0068416935,-0.05923817,-0.003575239,-0.011067802,-0.01139475,-0.00615147,0.044150114,-0.020900466,-0.049986746,0.0042291353,-0.00995981,0.020137588,-0.06674587,0.014748996,0.020815702,-0.0022659327,0.043714184,0.02098523,-0.025501959,-0.00078255654,0.024242602,-0.027415212,0.0056035286,0.007307898,-0.021627018,-0.0008953234,-0.010268595,-0.018684484,0.012654106,0.020367661,-0.031871393,0.031701867,-0.029958142,-0.0061696335,-0.044586048,-0.00066865445,-0.0021978184,-0.0012646538,-0.0007500131,-0.015330237,0.015184927,-0.0022840963,-0.022208259,0.0010966387,0.011400805,0.0097176265,-0.04344778,-0.00015978458,-0.028916752,0.019447362,-0.015209146,0.0077317194,0.012496687,0.0366182,0.014773214,0.001483376,0.039040036,0.014034554,0.013126365,0.008948693,0.03313075,0.002885015,-0.012956836,0.025090247,-0.055217918,0.020597735,0.034995567,0.02697928,0.0056822384,0.012569342,-0.043496218,0.014627905,0.022559425,0.025017591,0.010462342,-0.014131428,0.010032466,0.0002563743,0.022002403,-0.000034719324,-0.0057851668,-0.011449241,-0.04318138,-0.0006906024,-0.031193279,-0.0048648682,-0.00915455,-0.012115247,-0.03116906,-0.016141554,0.017328255,-0.023467615,-0.014409939,-0.0053250175,0.023189103,-0.023625035,0.06393654,0.033518244,0.018260662,0.009190877,-0.01378026,0.023976201,0.03526197,-0.0028063054,0.017316146,0.010286759,-0.0074592624,0.019822748,0.025211338,-0.014773214,-0.036036957,0.020646174,0.03734475,-0.00058426854,-0.030539382,-0.051778905,0.00027983586,0.0062786164,-0.03584321,-0.0009952242,0.016153663,0.033227623,0.0084219435,0.011812517,-0.049429722,-0.008748892,0.012981054,-0.0023915656,-0.0059546954,-0.03281591,-0.03189561,-0.008210032,-0.035601027,-0.013925571,-0.013429094,0.048775826,0.0060576233,-0.008597527,-0.0091969315,-0.033348717,-0.030248763,-0.0058214944,0.007913358,0.009245369,0.011382641,0.009638917,0.017049743,-0.012103138,0.027851142,0.05860849,-0.0036902763,0.0010830159,0.03104797,0.036061175,-0.023358632,0.028262855,-0.010916437,-0.009275641,0.015330237,-0.046983667,-0.009130331,0.025017591,-0.032428417,-0.026858188,-0.02714881,0.019180961,-0.031435464,-0.00029289108,-0.007901248,-0.0088154925,0.013501749,0.0031877449,-0.007507699,-0.010492615,0.014482594,0.000055768505,-0.0035691843,-0.018393863,0.033978395,0.022692626,0.036400232,0.026858188,-0.024920719,0.015814606,0.026955063,0.001117073,-0.016759122,0.0007863407,-0.006314944,-0.008367452,0.023879327,-0.00621807,0.0045137014,-0.032888565,-0.009469388,0.011988101,-0.038119737,0.007925467,0.016020462,0.020440316,0.011818572,-0.018066915,0.015257582,0.017630985,0.008258469,-0.021953966,0.037853334,0.025235556,0.010904328,-0.003472311,-0.032040924,0.0030212435,0.026737098,-0.027366774,-0.016311083,-0.015342346,0.0033693828,-0.0027639233,0.002031317,0.014216192,-0.03550415,-0.03550415,-0.0017679421,-0.041171253,0.02323754,-0.005797276,0.007320007,-0.011733808,-0.0024521116,0.008821547,-0.012908399,0.013223238,0.017134508,-0.051488288,-0.02456955,-0.040396266,0.016420064,0.0003549507,0.017013416,-0.022317242,-0.0051464066,0.010129339,0.014979071,0.01574195,0.0018421109,0.0027639233,0.0034511199,0.018490737,0.0065147453,0.006690329,-0.0023749154,-0.02172389,-0.009923483,0.037829116,0.0033663556,-0.0069930586,-0.02218404,0.029812831,-0.015402893,-0.043617312,-0.007320007,-0.014361503,0.008464325,-0.02369769,0.04497354,0.008573309,-0.024339477,-0.019435253,-0.008839711,-0.014906416,0.022898482,-0.0075500812,0.045385253,-0.016214209,0.022523098,0.02188131,-0.013041601,-0.04344778,-0.02610742,-0.017328255,0.020403989,0.028311292,0.025526177,-0.026083201,0.015342346,0.03911269,0.01665014,-0.0055883923,-0.012242394,-0.03928222,0.02472697,0.00007133071,-0.0053583174,-0.0050707245,-0.016274754,0.02323754,-0.002933452,0.015463439,-0.0075500812,-0.015657187,-0.06330686,-0.015487657,-0.03179874,-0.012520905,-0.011576388,-0.048194587,0.011055693,-0.014942744,-0.086120576,0.019156743,0.028601913,-0.0023037738,0.018369645,-0.013743933,0.0046680938,0.009657081,-0.008028395,-0.025308212,-0.017800514,0.014276737,0.0022492826,-0.012411922,-0.008082886,-0.019907512,0.006956731,-0.012278721,-0.015959915,-0.014652123,0.0031211444,0.0366182,-0.03179874,0.034269016,-0.012908399,0.040202517,0.007392662,-0.023891436,0.0037417405,0.0039960337,-0.0099961385,-0.010692417,-0.0036478941,0.01979853,0.014264628,-0.018987214,0.00990532,-0.0046741483,0.020730937,-0.03281591,0.026301166,-0.015160709,-0.04511885,0.007913358,0.03775646,-0.0205493,-0.009790282,0.030394074,0.0035146931,0.006865912,-0.018163789,-0.025405085,-0.007870975,-0.012030482,0.058269434,0.03044251,-0.012060756,0.058463182,-0.011425023,0.028456602,0.012327158,0.03567368,0.029619085,-0.013852916,0.00674482,-0.035019785,-0.029037843,-0.0013637978,0.056089777,0.03986346,0.04436808,0.0023219376,-0.0028184145,0.026034763,-0.01709818,0.027681613,0.012908399,-0.02202662,-0.0072231335,-0.02413362,0.043472,-0.028844096,0.030999532,0.022862155,0.021651236,0.008306906,-0.037223656,0.0185755,-0.0101111755,-0.015911479,0.016226318,-0.015620858,0.021396942,-0.015197037,0.012193956,0.0035994574,-0.016831778,0.0016014407,0.03298544,0.0007061173,0.006926458,0.0140951,-0.0048921136,-0.024521114,-0.0227895,0.01692865,0.022414114,0.01708607,-0.01184279,0.014422048,0.025671488,-0.009802391,-0.0056035286,-0.021505926,-0.027608959,0.0020691582,0.059383478,0.026882406,-0.0044107735,-0.016081007,0.02037977,0.05066486,-0.0281902,-0.00089078245,-0.009535989,-0.0019465527,0.0066358373,0.010583434,-0.025211338,0.0052281437,-0.0103896875,-0.005991023,-0.00097478996,0.023431288,0.052263275,0.005004124,0.014107209,0.0071746963,0.023879327,0.028383946,-0.04138922,0.0024324341,0.031847175,-0.011449241,0.023467615,-0.002138786,0.0065995096,0.0009725195,-0.013961899,0.035310406,0.015075944,-0.0026413177,0.008876038,0.05604134,-0.021820765,0.014373612,-0.035189312,-0.015826715,-0.010995147,0.0012949267,0.0014720237,0.01470056,0.028674567,-0.050422676,0.04274545,0.003411765,-0.045506343,-0.0019071978,-0.024472678,0.026543349,0.031411245,0.0011609688,-0.016577484,0.05187578,-0.0077135554,0.04151031,0.0356979,0.014567358,0.038434576,0.020864138,0.029449556,0.028359728,-0.0035722118,-0.034075268,0.030757349,0.009620753,-0.047952402,-0.0389916,-0.013610732,0.0014909443,0.016577484,0.015536094,-0.016238427,0.007307898,-0.041001726,-0.02743943,-0.024182057,-0.004937523,0.011679316,-0.010759017,0.029933924,0.036957256,-0.022523098,-0.0281902,-0.00509797,0.047419596,-0.042333737,0.032476854,0.0069204033,0.067181796,-0.0012200011,-0.010964873,0.0014432644,-0.011691425,0.030926878,0.016068898,-0.021990294,0.01753411,0.0027230547,-0.0029818886,-0.020730937,-0.015850933,-0.039693933,-0.009699463,-0.026761316,-0.0006667624,0.032888565,0.00207824,-0.03506822,-0.0065147453,-0.024387913,0.020924684,0.019762201,-0.010692417,0.041897807,-0.018212225,0.0073805526,0.007828593,0.013138474,-0.009215095,0.0073805526,-0.00008164244,0.02473908,0.024400022,-0.038652543,-0.018648157,0.0049314685,0.027948016,-0.004995042,0.026301166,-0.020658283,0.015669296,0.0067872023,0.022353569,0.013574405,-0.042551704,-0.014349393,0.027245684,-0.020186024,0.043738402,0.0020222352,0.01259356,-0.01843019,-0.020561408,-0.019980168,0.010105121,-0.012557233,0.025913673,0.0038537504,0.0075440267,-0.03497135,0.0085369805,-0.0000050908275,0.03480182,-0.015754059,-0.0044925106,-0.041631404,-0.018321209,-0.0162021,-0.007967848,-0.020222351,-0.024993373,-0.015923588,0.0029364792,0.008306906,-0.014216192,0.002765437,-0.012520905,0.009348297,-0.013865026,-0.002639804,0.023637144,-0.0302972,0.018188007,0.002273501,-0.013501749,0.00002363894,-0.027318338,-0.010323087,0.009499662,-0.041025944,0.016093116,-0.015475548,0.015184927,0.022523098,-0.010583434,-0.005067697,-0.015536094,-0.005016233,-0.0059456136,-0.0026806726,-0.01214552,0.021336397,0.0059698317,-0.02460588,0.02473908,-0.0076348456,-0.053813253,-0.0044047185,0.00966919,-0.011364477,-0.029183153,0.02802067,-0.004304818,-0.029425338,0.012460359,0.048921138,-0.00749559,-0.020416098,-0.025211338,-0.026664441,-0.0293769,0.026616005,-0.013501749,0.001160212,0.020198133,-0.057833504,-0.00054491364,-0.00044009346,-0.025719924,0.0247633,-0.038846288,-0.016734904,0.007792265,0.024460569,-0.0074108257,0.007828593,0.012084974,0.0030696802,0.002872906,0.046257116,0.018200116,-0.015536094,-0.009178768,0.022874264,-0.01799426,-0.049114883,-0.008476434,0.009360406,-0.02593789,-0.016226318,-0.005706457,-0.008300851,-0.0008120727,-0.034608074,0.013283784,-0.02322543,-0.026858188,0.017643094,-0.025259776,0.02369769,-0.0075319177,0.031314373,-0.002583799,0.011140457,-0.05158516,0.025841016,-0.0062120156,0.0034420379,-0.0028880425,0.0012903858,0.024048856,-0.021239523,-0.012557233,-0.015596639,-0.0030545439,0.013041601,-0.022692626,-0.0038719142,-0.027851142,-0.0216028,-0.056331962,-0.0025641215,0.0019026569,0.020040713,-0.0011534005,0.015051726,-0.033687774,0.01724349,-0.0037508223,-0.04182515,-0.008222141,-0.004592411,-0.0011420482,0.015608749,-0.01919307,0.00040868524,0.05715539,0.014216192,-0.01753411,-0.018212225,0.039693933,-0.013513858,-0.018502846,0.03102375,-0.027366774,-0.014022444,-0.022244586,0.0027291093,0.022426223,-0.02430315,0.034147922,-0.01146135,0.020767264,0.011497678,0.02444846,-0.019144634,0.0006353542,-0.002010126,0.031193279,0.04124391,-0.00982661,-0.015160709,0.025719924,-0.019616893,-0.0038265048,-0.007834648,-0.01950791,-0.009548098,0.04182515,-0.0031453627,-0.004831568,0.061224077,0.016238427,-0.009378569,-0.02579258,-0.025017591,-0.01243614,-0.00042647062,-0.030369854,0.020621955,0.02115476,-0.010595543,0.0053250175,-0.016795449,0.0024733027,0.027681613,0.027003499,0.008252415,-0.015051726,0.034559634,-0.0056035286,-0.0040868525,0.004822486,0.0041110707,-0.0054794094,-0.00370844,0.003747795,-0.016734904,-0.005709484,0.015197037,0.02625273,0.0070293862,-0.010080903,0.02487228,-0.006081842,0.0013660683,-0.0074592624,0.015027508,0.013320112,-0.017461454,-0.027948016,0.0101111755,-0.013283784,0.012424031,0.014930634,-0.02234146,-0.01783684,-0.02400042,0.017352473,-0.025259776,0.04322982,0.0075924634,0.016432174,0.021215305,0.010934601,-0.002040399,-0.037126783,0.021069994,0.006714547,-0.060497526,-0.03237998,-0.031314373,-0.018369645,0.009039512,-0.004559111,0.0023098285,-0.0020434263,0.034680728,0.0046741483,-0.016286863,0.007586409,-0.010371523,-0.03133859,-0.018926667,-0.00840378,-0.00058578217,-0.030926878,0.001453103,-0.009372515,0.0151243815,0.035455715,-0.006436036,-0.032016706,0.0040293336,-0.005409782,0.009184822,-0.01289629,-0.017073961,0.0076530096,-0.03521353,0.016638031,0.0046680938,0.011649043,-0.00054491364,-0.03342137,-0.018115351,0.001660473,-0.010553162,0.0057397573,0.011128347,0.009281696,0.037102565,0.012545124,0.007229188,-0.01933838,0.037247878,-0.021675454,-0.0028365783,0.033469807,0.024424242,-0.00577003,-0.010964873,0.0006731954,-0.0031544445,-0.000010459551,-0.016880214,0.041316565,-0.019314162,0.01993173,0.017170835,0.038725197,0.0184423,-0.01784895,0.0004976121,0.044949323,-0.006847748,-0.006914349,-0.0020676446,0.025308212,-0.0017845922,0.025090247,0.024097294,-0.05386169,0.0045833294,0.033518244,-0.024327368,-0.039960336,0.02202662,-0.00412318,0.0024218385,0.024993373,0.016904432,0.021191087,-0.00059183675,-0.004780104,0.00936646,0.051924217,0.0005959993,0.011776189,-0.031241717,-0.015342346,0.000858239,0.01740091,-0.00055475236,-0.0008877552,0.0028320374,0.025405085,-0.008524871,-0.016456392,-0.035625245,0.03850723,-0.012375595,-0.008863929,-0.010619761,-0.009408843,-0.006051569,-0.019871185,0.014010335,-0.027802706,0.0043229815,0.008912366,0.022414114,-0.022087166,0.015632967,-0.01041996,-0.0010936115,0.0059274496,-0.029449556,0.027681613,-0.021554362,-0.012847853,-0.00040490113,0.023794563,0.028650349,0.008791273,-0.002376429,-0.05129454,0.000240481,-0.03613383,-0.0075924634,-0.0030030797,0.025889453,0.015511875,0.02966752,0.021844983,-0.011582443,0.005046506,0.0031665538,-0.0011412913,0.005116134,0.0020827812,0.015766168,0.0038749415,0.017824732,-0.004135289,0.016589593,-0.003087844,-0.007386607,0.021130541,-0.030660475,-0.03521353,0.030006578,0.015632967,0.0053250175,0.012333212,-0.015705623,0.024896499,-0.032888565,0.027173027,0.005818467,-0.02114265,0.0031847176,0.043472,-0.023588708,0.02833551,-0.055702284,0.023673471,-0.012242394,-0.01650483,0.023394959,-0.006314944,0.014422048,0.008603581,-0.035358842,0.017182944,-0.045361035,-0.01740091,0.007186806,0.0106318705,-0.002411243,0.0389916,-0.0016544184,0.020331334,0.044222772,-0.02460588,-0.03325184,0.024400022,-0.0036509214,-0.000019062518,0.019846966,0.013610732,0.012266612,0.00183757,0.0058638765,0.033954177,0.037708025,-0.015281801,0.016068898,0.0029001515,0.018999323,0.015608749,-0.03102375,0.011527951,0.027948016,-0.013029491,0.033590898,0.02775427,0.012175793,-0.0020721855,0.013114255,0.021009449,0.006569237,0.023891436,-0.015536094,0.0140708815,-0.0061393604,-0.009760009,-0.022983247,-0.009535989,0.004831568,0.0281902,-0.027197246,0.022523098,-0.00915455,-0.02023446,-0.010601598,-0.0020676446,-0.047177415,-0.0052584168,0.023285978,-0.010002193,0.02668866,0.0045046196,-0.01753411,0.005800303,0.022898482,-0.025598833,-0.0067690387]},{"id":"class-DMChannel","type":"class","source":"main","text":"Class: DMChannel\nDescription: DM channel (direct message between bot and a user).\nProperties: lastMessageId: string | null, messages: MessageManager, nicks: Record, ownerId: string | null, recipients: User[]\nMethods: addRecipient(userId: string) -> Promise — Add a recipient to this Group DM. Requires Group DM (type GroupDM).\nPUT /channels/{id}/recipients/{userId}.; createMessageCollector(options: MessageCollectorOptions) -> MessageCollector — Create a message collector for this DM channel.; fetchMessage(messageId: string) -> Promise — Fetch a message by ID from this DM channel.; fetchPinnedMessages() -> Promise — Fetch pinned messages in this DM channel.; removeRecipient(userId: string, options: { silent?: boolean; }) -> Promise — Remove a recipient from this Group DM. Requires Group DM (type GroupDM).\nDELETE /channels/{id}/recipients/{userId}.; send(options: MessageSendOptions) -> Promise — Send a message to this DM channel.","meta":{"url":"/docs/classes/DMChannel"},"embedding":[0.022557158,-0.0063871914,0.00020676485,0.032645643,0.039917216,0.038213965,0.013920802,0.01746924,-0.03736234,0.0075936606,0.0003592795,-0.023561638,0.007943045,0.03362829,0.038781714,-0.0040179254,-0.03362829,0.019281674,0.07092512,0.015209158,-0.0028414812,0.07188593,0.031138921,0.021279719,-0.023736332,0.034654606,-0.0032372687,0.025177544,-0.02899894,-0.017960563,0.039895378,-0.009553491,-0.010148537,-0.0051315897,0.009100383,0.044393707,-0.00023474293,0.061972134,-0.035593577,0.014586817,-0.016290067,0.002906991,-0.02222961,-0.0041926177,-0.01570048,0.022688176,-0.020526359,-0.017753117,0.050617125,-0.010306852,-0.054460358,0.0037886417,0.033409923,0.0696586,0.008024933,-0.034217875,0.007206062,0.0015094517,0.009171352,-0.005748472,0.0094825225,-0.03360645,-0.039021917,-0.026706101,0.013626008,-0.0067693307,-0.03229626,0.058609303,0.009111301,0.027645074,0.032318097,-0.0036003015,-0.012217551,-0.03177218,-0.037711725,0.021061353,-0.00008444604,0.014040902,-0.009657214,-0.02380184,-0.013746109,0.019019635,-0.06677617,0.0062889266,-0.05079182,-0.032514624,-0.012763464,-0.027077323,0.020002281,-0.028103642,0.014008148,-0.038541514,-0.036685407,0.01158429,0.026509574,-0.036685407,-0.016486596,-0.009034873,-0.026880795,0.046511855,0.012479589,-0.06415579,-0.060661938,0.010323229,0.013178359,-0.046162467,-0.044415545,-0.016475677,-0.04203536,0.01613721,0.007686466,-0.004225373,0.0027746067,0.007986719,0.0003957875,-0.009957467,0.047079604,-0.021072272,0.0046566445,0.026138352,-0.07494304,0.012523262,0.05336853,0.006294386,-0.028671391,-0.02836568,0.0039879,-0.03869437,-0.022753686,0.035506234,0.03443624,-0.0027241097,-0.0036876476,0.0020908497,0.017873216,0.009231402,-0.008969364,0.017742198,-0.043978814,-0.016388332,0.013582335,-0.04279964,0.014106412,-0.0048859282,0.035309702,0.0053172004,-0.06725658,-0.014641408,0.0007608673,-0.02740487,-0.008106819,0.017905973,-0.007402591,0.038082946,-0.012872647,-0.008074065,-0.006196121,0.036292348,-0.011660718,-0.06175377,0.027252017,-0.028038131,-0.006703821,-0.005186181,-0.01868117,-0.014128248,0.030549334,-0.04323637,-0.034720115,0.03413053,0.018943207,0.013494989,-0.07376387,0.022382464,-0.036379695,-0.028627718,0.006856677,-0.056250956,-0.026946304,-0.015089056,0.04729797,0.015536706,0.010083027,-0.083459295,-0.03576827,-0.0047903936,-0.008745539,-0.014008148,0.029544855,-0.00044048417,-0.004438279,0.052014664,0.005115212,-0.013440398,-0.0040752464,-0.010678073,0.04729797,0.018255357,0.030636681,-0.07887362,0.028474864,0.011660718,0.026160188,-0.029457508,-0.0094825225,-0.001950277,0.013189277,0.017447405,-0.025985496,-0.05437301,0.022076754,-0.017425569,0.035440724,-0.029610364,-0.057386458,-0.011442353,-0.057211764,0.0039087427,-0.06467986,0.014575898,-0.008554469,0.024129389,0.052407723,-0.0116498,-0.0018015155,-0.00823238,0.0019680192,-0.040615987,0.0031553817,0.03653255,0.015493033,-0.003411961,-0.034589097,-0.07328346,0.0020144219,-0.008701866,-0.018812189,0.03528787,0.029195469,-0.030178113,-0.0042526685,-0.016846899,0.034654606,0.06629577,0.011103886,0.0033983132,0.012414079,-0.035528067,-0.007320704,0.04142394,0.092849016,0.032383606,-0.02184747,-0.0040343027,0.008527174,0.005374521,-0.008374318,0.040244766,0.022131344,0.024587957,0.004083435,0.008892936,-0.009575328,0.017065264,-0.014281104,-0.0024784487,0.024129389,0.00070149923,0.022644503,0.024915505,0.02893343,-0.037820905,0.04293066,0.013222031,-0.0276014,0.014139167,-0.00016462713,-0.00084684876,0.015372932,-0.020297075,-0.001104793,0.021694614,0.013429479,0.009728184,-0.0069713187,0.029260978,0.035506234,0.0020744724,-0.018812189,0.028977104,-0.019325348,0.00031253565,0.011131182,-0.057342783,0.03838866,-0.013462233,0.04502697,-0.015067221,0.06957125,0.051883645,-0.017141692,0.02740487,0.021039518,-0.06568435,0.018910453,0.022360628,0.016388332,-0.0075499876,0.034283385,-0.07044471,0.03609582,0.0264659,-0.050573453,0.019030554,-0.03489481,0.020559113,0.0050578914,-0.01969657,0.020548195,0.009744561,-0.004481952,0.0012562841,-0.058041554,-0.0388909,-0.044677585,-0.02786344,-0.0062452536,-0.028671391,0.037755396,0.015984356,0.014423042,-0.042210054,0.0036876476,0.04424085,0.02266634,-0.013473152,-0.03760254,-0.0036821885,-0.0019543713,0.03354094,0.04686124,0.016246393,0.012108368,0.013353051,-0.03603031,0.0041352967,-0.032536462,0.024806323,-0.01190092,0.011758983,-0.011191232,0.030178113,-0.014324778,-0.036794588,-0.02343062,0.026815284,0.009793693,-0.023037562,-0.0034665526,0.017884135,-0.03343176,0.0062288763,-0.04463391,0.024587957,0.0010979691,-0.0148379365,-0.080795236,0.00021802432,-0.0037395095,-0.03646704,0.012119286,-0.0638064,-0.020297075,0.024981014,0.021814715,0.0074135093,0.015984356,-0.0113222515,-0.0014111871,0.051184878,0.021694614,0.011529699,-0.0017987859,-0.0028223742,0.017840462,0.01576599,-0.011758983,-0.008527174,0.008745539,0.04007007,0.03159749,-0.015962519,-0.013243868,0.011376843,-0.0036357858,0.036052145,0.01468508,0.004705777,0.006736576,0.011365925,0.027317526,0.0068457588,-0.013265705,0.035178684,-0.00024378463,0.019969527,0.00017895736,0.0058085225,-0.008456204,-0.01215204,0.03520052,0.03046199,0.020166054,0.035091337,0.04249393,-0.033475433,-0.027754257,0.001519005,0.025439583,-0.002235517,-0.02899894,-0.032864008,0.0037504276,-0.010983786,-0.008909313,0.018910453,0.046773892,0.014619571,-0.018648414,-0.053412203,-0.08127564,-0.00481223,0.0730651,-0.013265705,0.02026432,-0.049656317,-0.0071132565,-0.0018369999,-0.07040104,0.034654606,0.009515277,0.0027200154,-0.03183769,0.018910453,0.00019089923,0.0054400307,0.018146174,-0.011344088,0.012861729,-0.02032983,-0.02799446,-0.05476607,0.004970545,0.035222355,-0.08542459,-0.057692166,0.0059886742,0.06930921,-0.040310275,-0.014554061,-0.0096845105,-0.045157988,0.037384175,0.024806323,-0.006032347,0.0008700501,-0.035921127,0.009258698,-0.0024961908,0.030636681,0.010568891,0.04103088,0.027885275,0.05039876,-0.0049787336,-0.04489595,0.0045228954,-0.01728363,0.017567506,0.00085981423,0.03432706,0.022950215,-0.0014603194,0.007402591,0.019216165,0.06411211,0.012272142,-0.019860344,0.0021072272,0.006338059,-0.011038377,0.0072661126,-0.023954697,-0.007997637,0.0055055404,-0.03262381,0.016060783,-0.041554958,0.033759307,-0.04007007,0.042886987,-0.017567506,0.004768557,0.015089056,0.06053092,-0.00016360353,-0.026880795,-0.012839892,-0.013571417,0.014466715,0.011682555,0.016956082,-0.03489481,-0.006496374,0.06310763,-0.028038131,-0.063282326,-0.022819197,-0.043716777,0.027535891,0.03932763,0.0031226268,0.013647844,0.005229854,-0.01811342,0.018844943,-0.021388901,-0.0181025,0.01633374,0.053630568,-0.0054482194,0.012676118,0.02463163,0.034589097,0.0067857085,-0.023583476,-0.04290882,-0.008521714,0.015110893,-0.015514869,0.04646818,-0.002159089,-0.018823108,-0.009324207,0.01861566,0.00009195235,-0.020886661,0.06297661,0.026051005,0.004610242,-0.015351095,-0.03343176,0.014423042,-0.04843347,0.005715717,0.018331785,-0.014226513,-0.025352236,0.038017437,-0.03236177,-0.026160188,-0.0017469241,0.007162389,0.01456498,-0.0445684,0.007566365,0.014979874,0.015252831,-0.011824492,0.008205084,-0.0005319247,-0.005819441,-0.01456498,-0.046817567,0.044350035,-0.000086493215,-0.036860097,0.011944594,-0.02799446,-0.017108938,-0.00039715227,-0.03882539,0.029217305,-0.00557378,0.0010693086,0.028693229,-0.021792877,-0.010295934,-0.017654851,0.033016864,0.028889757,-0.036794588,0.030047094,-0.005511,-0.026596919,0.0067911674,-0.01133317,0.00085571985,-0.018506477,-0.007877536,0.04247209,0.026815284,-0.052276704,0.0050224066,0.056818705,0.030636681,0.02026432,-0.032885846,-0.03469828,0.020471767,0.02279736,-0.0006765919,-0.009067628,-0.056512993,0.0010345066,0.0084998775,0.009362421,0.012992748,0.036183164,0.034196038,-0.023692658,-0.003551169,0.0030816833,0.019412694,-0.0050196773,0.029981585,0.02038442,-0.035615414,0.025461419,-0.008680029,-0.008505337,-0.019467285,0.02912996,0.008920231,0.0018233521,-0.028715065,-0.00607602,0.00968997,-0.020286156,0.0020062332,0.027230179,-0.011376843,0.010295934,-0.017949644,-0.022557158,-0.023015724,0.0039305794,-0.03183769,-0.057124417,-0.01158429,-0.035069503,-0.0057648495,0.0159516,-0.01588609,0.007462641,-0.050922837,-0.02007871,0.042450257,-0.022491647,0.014728754,-0.008270593,0.01716353,-0.002805997,0.038541514,0.027754257,0.001212611,-0.04148945,0.003805019,-0.024085715,0.008265135,-0.0016896032,-0.0066000978,0.0055382955,0.0109564895,0.033846654,-0.03306054,0.004724884,-0.006654689,0.009220484,-0.004547462,-0.014794263,-0.004784934,-0.040222928,-0.023911024,0.036881935,-0.03456726,0.02006779,0.0077083027,0.019292593,-0.007222439,-0.012643363,-0.019270757,0.004547462,-0.027339362,0.026924467,-0.008117738,0.033977672,0.026203861,0.01006665,-0.02469714,-0.013811619,-0.038454168,-0.03723132,0.022906542,0.027950786,-0.004105272,-0.022447975,-0.0056611258,0.018157093,-0.0041380264,-0.038410492,0.013287541,-0.019412694,0.002677707,0.008527174,-0.0065946383,-0.013265705,0.0062288763,0.017512914,-0.017796788,0.03546256,0.011617045,-0.04242842,0.0071460116,-0.005349955,0.0031253563,-0.0076318746,0.027055487,-0.0038650695,0.0043099895,0.0051452373,-0.010410576,0.025941823,-0.020974007,-0.030178113,-0.010907358,0.0017128044,0.026706101,-0.0021058624,-0.009253238,0.017327303,0.028715065,0.020111464,-0.071711235,-0.022557158,-0.01728363,0.009018496,-0.015864255,0.0033409924,0.004443738,-0.055246476,0.0051452373,-0.0552028,0.03653255,-0.012490507,0.014586817,0.026291208,-0.03336625,-0.014597734,0.014772427,-0.03233993,0.046773892,-0.008259675,0.0011041106,-0.019205246,-0.04325821,-0.02823466,-0.0019680192,-0.008816508,0.0002731275,-0.010961949,0.02843119,-0.00462116,0.002482543,0.015110893,-0.028125478,-0.032252587,-0.031881366,0.0019393587,-0.024151227,0.0019843965,0.0013975393,-0.011726228,-0.00848896,0.015733235,0.007085961,-0.029304652,-0.050573453,-0.02633488,-0.016825063,-0.040004563,0.0026135622,0.00013767263,0.03179402,-0.04895755,-0.007009533,0.02740487,-0.07489937,0.0054591377,0.031007903,-0.012796219,-0.007571824,-0.033912163,0.0284967,-0.01399723,-0.0123048965,-0.062059477,-0.04550737,-0.01411733,0.017185366,-0.05799788,0.032885846,0.0032836713,-0.04799674,-0.014401206,0.02843119,-0.021607267,-0.010170374,-0.0042199134,-0.055814225,0.01741465,0.015143648,-0.018626578,0.0031007903,0.016388332,0.024522446,-0.028081805,0.036576223,0.02044993,-0.012894483,0.025046524,-0.010088487,0.03893457,0.027011814,0.0009505724,-0.03520052,-0.033737473,0.031575654,0.010661696,-0.04943795,0.0017223579,-0.0018369999,-0.009313289,-0.01050884,0.02709916,-0.026509574,0.0049869223,-0.0020267048,-0.009029414,-0.0065564243,0.005590157,0.011638882,-0.003641245,-0.043782286,0.054285668,0.024151227,-0.023780005,0.028103642,0.024544284,0.005628371,0.017971482,-0.0027800659,-0.023408784,-0.014630489,-0.037733562,0.0059450013,0.046555527,-0.0017974211,0.027252017,-0.0059613786,0.014947119,-0.0084835,0.016180884,-0.0062725493,0.020471767,0.002969771,0.008756457,-0.01734914,0.020460848,-0.028409353,0.012905402,-0.017108938,0.002482543,-0.023954697,0.027492218,-0.0036330563,0.0025876313,0.015263749,-0.03627051,-0.00083593046,-0.016552106,0.009586246,0.0018738491,-0.021236045,-0.026400391,0.031619325,-0.030330969,0.021388901,0.03980803,-0.032754827,-0.0137788635,-0.0021099567,-0.011071132,-0.00004930284,0.016442923,-0.0006144942,0.03153198,0.006862136,0.0116498,0.0029916074,0.017447405,-0.020875743,-0.014794263,0.0095207365,0.026793448,-0.021432575,-0.026378553,-0.024194898,0.0066328524,0.04076884,0.024151227,-0.0066765253,0.039349467,0.0036330563,0.0077083027,-0.021115946,-0.0143466145,-0.04812776,0.026924467,0.0042199134,0.023823677,-0.028278334,0.012206632,0.025417745,0.02323409,-0.023889188,0.011802656,-0.0056229117,0.02266634,-0.011529699,0.027492218,-0.0054482194,-0.009766397,-0.016442923,0.0029861485,-0.0058030635,-0.037689887,0.032536462,-0.0002727863,0.056076262,0.01544936,-0.015241913,0.018419132,-0.004468304,0.014401206,-0.010072109,0.008439827,0.019314429,0.04312719,0.04046313,-0.0026927197,-0.01418284,-0.00026084442,-0.01716353,-0.015776908,-0.035680924,0.013505907,0.008374318,0.012959993,-0.0018834026,0.044939622,-0.0053390367,0.043454736,0.028955268,0.024675302,-0.021050435,0.012785301,0.011846329,0.020144219,-0.0061251526,-0.02589815,-0.0019298053,0.04096537,-0.0051234006,0.025221217,-0.027928948,-0.01919433,0.022022162,0.032318097,0.031684835,0.020810233,0.024522446,-0.01215204,-0.0029779596,0.020417176,0.022120425,-0.015875172,0.057692166,0.020439012,0.0060432656,0.021552676,-0.0146741625,-0.009215024,0.0024170333,0.025374072,-0.027252017,0.04349841,0.013211113,0.00075336103,-0.0016213639,-0.012785301,0.016814144,0.0043946058,-0.029872403,-0.004653915,0.021094108,-0.0050497022,-0.036619898,-0.004735802,0.0036985658,0.046992257,-0.04406616,0.00696586,-0.00084684876,-0.00032703648,-0.03836682,-0.005672044,0.030593008,0.011638882,-0.0060705612,-0.024020206,0.018670252,-0.035440724,0.00060084637,0.03838866,-0.015176403,0.00968997,-0.006059643,0.012457753,-0.028016295,-0.057080746,-0.009515277,-0.015427523,0.01760026,0.027710583,-0.00893115,0.004427361,-0.0063326,0.019554632,-0.008794671,0.022360628,0.017709443,-0.016224558,-0.01133317,-0.01133317,0.013418561,-0.009122219,0.011540617,0.016038947,0.0010031166,-0.007238817,-0.0030816833,-0.021694614,0.02323409,-0.00045276724,-0.0070368284,0.013811619,0.03323523,0.021268802,-0.017381895,0.02539591,-0.028627718,-0.04223189,-0.015427523,-0.009389717,-0.018593824,0.036379695,-0.032449115,-0.044153508,-0.040856186,0.021738287,-0.010716287,-0.012021021,0.005046973,-0.0069058095,0.014728754,-0.050355088,0.02229512,0.04369494,-0.031663,-0.013374887,0.03633602,-0.03233993,-0.0048831985,-0.025308562,0.011278579,-0.022054916,-0.04400065,-0.015383851,-0.029260978,-0.016825063,0.042646784,-0.013353051,0.015656807,-0.0015940682,0.020428093,-0.0066819848,-0.032121565,-0.04065966,0.02222961,-0.022131344,-0.016988836,0.024828158,-0.04756001,-0.035637252,-0.0029861485,0.023212254,-0.027077323,-0.026378553,0.009591705,0.012479589,-0.020460848,-0.008243298,0.0552028,0.017338222,0.03919661,-0.011507862,0.022491647,-0.04812776,-0.036052145,-0.00040568216,-0.029217305,-0.010159455,-0.06402477,0.008286972,0.00696586,-0.0061306115,0.033584617,-0.0029479344,-0.008401613,0.06533496,0.012621527,0.0016541188,0.022054916,-0.0035757353,-0.0030216328,-0.03886906,0.04489595,0.0151654845,-0.024653466,0.04843347,0.031422798,0.028955268,-0.01968565,0.008538092,-0.018451886,-0.02399837,0.006103316,0.026837122,0.025810804,0.029981585,-0.019150656,-0.015711399,-0.011365925,-0.0016582131,0.008281512,-0.04400065,0.024893668,0.0135277435,-0.013833455,0.011311334,-0.014029984,-0.0325583,0.004894117,-0.029151795,0.021792877,-0.008319726,-0.00874008,0.020722887,0.000058941627,-0.009034873,-0.05223303,-0.006894891,-0.0069276458,-0.0035757353,0.016541187,-0.02563611,0.026291208,-0.01697792,0.012392242,-0.016486596,0.0044300905,-0.0016322822,-0.046948586,-0.045813084,-0.0056884214,-0.016453842,0.015755072,0.008456204,0.037340503,-0.02912996,-0.008860181,0.015536706,0.012075613,0.052451394,-0.0014016336,-0.00033539577,0.0029779596,0.017185366,-0.005325389,-0.01234857,0.02139982,-0.009695428,0.0020594597,-0.0018056098,0.02786344,0.033453595,-0.040179253,0.0075499876,0.014608652,-0.026989978,-0.008478041,-0.02083207,-0.012992748,-0.032405443,0.018135255,0.02583264,0.007762894,0.0039360384,0.010175833,0.0075063147,-0.035156846,0.03310421,0.007882995,-0.017272713,-0.0016554835,-0.008068605,0.019849425,0.035506234,0.008882017,0.007326163,0.0018888616,0.03133545,-0.015460278,-0.008112279,0.00033710175,-0.007364377,-0.007140552,0.027492218,0.031379122,-0.0079703415,-0.013636926,0.007184225,0.017567506,0.03760254,-0.041838832,-0.027819766,-0.017829545,-0.01741465,-0.016748635,0.015274667,-0.0075936606,-0.04756001,0.00033795476,0.006938564,-0.01702159,-0.0012863093,0.0070368284,0.010224965,0.0330387,0.029588526,-0.010972867,-0.010159455,0.0066765253,-0.00033113084,0.046992257,0.020111464,-0.007921209,0.019904016,0.022251446,-0.020657377,-0.012588772,0.013058257,-0.010421494,-0.035855617,0.005753931,0.017960563,-0.046206143,0.023692658,-0.008647274,0.005792145,0.0136150895,-0.008303349,-0.0026490467,-0.026247535,0.028693229,0.0049678152,-0.03183769,-0.0053335777,0.00070695835,-0.0045965943,0.01760026,-0.022164099,0.017545668,-0.0005537613,0.007861159,-0.015755072,0.0012248941,-0.029217305,-0.01988218,-0.017895054,-0.0037258614,0.032034222,0.0014343885,-0.018266276,-0.013178359,0.012643363,-0.008259675,0.04369494,-0.01323295,-0.020198809,-0.020056872,0.004506518,-0.0032427278,-0.03830131,-0.053455878,-0.015372932,-0.011453271,-0.02696814,0.0036275971,0.017556587,-0.04096537,0.004198077,0.0026313043,-0.021345228,0.011180314,0.004348203,0.0021126864,0.010983786,-0.005216206,-0.010394199,0.003824126,-0.026989978,0.013789782,0.0017373706,0.011245823,0.023736332,0.016202722,-0.010077569,-0.03982987,0.03533154,-0.0049623563,0.009231402,-0.014947119,-0.010634401,-0.0016036218,-0.011726228,-0.018539231,0.035986636,0.02406388,0.008712784,-0.0076646293,0.0041352967,0.020733805,-0.003128086,-0.009793693,0.023452455,-0.03233993,-0.032318097,0.010989244,-0.06769331,-0.030090768,0.008920231,-0.008314267,-0.007981259,0.01956555,-0.011617045,0.0077847303,0.015940683,-0.01848464,0.016104456,-0.0026040087,-0.02766691,-0.02386735,-0.010557973,-0.020755641,0.010568891,-0.004468304,-0.022164099,-0.021410739,-0.002204127,0.024435101,0.033191558,-0.034916647,-0.0036548928,-0.022622667,0.0029233682,0.025723457,0.019008718,0.029785056,-0.017960563,0.037777234,-0.021301556,0.0036303266,-0.008816508,0.0325583,0.03404318,-0.012217551,0.009558951,0.022469811,-0.013145604,0.023517966,0.01228306,-0.026422227,-0.015252831,-0.008226921,0.022196854,-0.04007007,-0.029239142,0.024391428,-0.017545668,0.0011498309,-0.007124175,-0.00015464713,-0.025723457,0.01488161,-0.0065455064,0.00506608,0.03046199,-0.014990793,0.017556587,-0.021803796,0.017076183,0.0041816994,-0.006578261,0.026924467,-0.013505907,0.029916076,-0.013953556,-0.009504359,-0.030112604,0.03672908,0.03456726,0.0020144219,-0.008314267,0.03533154,0.018288111,-0.008456204,-0.016355576,0.035309702,-0.037908252,-0.00816687,-0.005972297,-0.018561069,-0.010940112,-0.015853336,0.0024470584,-0.020526359,0.0042963414,0.022469811,0.01126766,0.022338793,0.01158429,-0.0015913387,0.013112849,0.020995844,-0.003564817,0.02279736,-0.0056775035,0.019641979,0.017818626,0.048651837,0.02799446,-0.010809093,0.017611178,0.0049104947,0.036183164,0.024675302,-0.01576599,-0.013080094,-0.0025849016,0.03939314,-0.009635379,-0.03019995,0.000016014892,-0.0040697875,0.0026695183,-0.034021348,-0.027623238,-0.01570048,-0.0044355495,0.009329666,0.015667725,0.022218691,-0.021345228,0.0056392895,-0.0012624256,0.018528314,0.0018369999,0.00240475,-0.03006893,0.037580706,-0.004544732,0.026007332,-0.024042042,0.026138352,0.015558543,0.010388739,-0.020690132,0.00607602,0.041751485,0.02120329,0.01848464,0.040790677,-0.0053827097,0.015045384,0.048040412,-0.010694451,-0.009346044,-0.016846899,-0.0053990874,0.00013025162,-0.0130364215,-0.012512344,0.02786344,0.010197669,-0.0048367963,0.016071701,0.028278334,-0.021192374,-0.0076537114,0.016737716,0.0037668052,-0.018266276,-0.00886564,0.015536706]},{"id":"class-EmbedBuilder","type":"class","source":"main","text":"Class: EmbedBuilder\nDescription: Builder for creating rich embeds. Use `toJSON()` when passing to `reply`, `send`, or `edit`.\nEmbeds must have at least one of: title, description, fields, or image/thumbnail.\nA description-only embed (no title) is valid.\nProperties: data: Partial\nMethods: addFields(fields: EmbedFieldData[]) -> this — Add one or more fields. Max 25 fields.; from(data: APIEmbed) -> EmbedBuilder — Create an EmbedBuilder from an existing API embed.; setAudio(input: string | EmbedMediaOptions | null) -> this — Set the embed audio. Supported by Fluxer.; setAuthor(options: EmbedAuthorOptions | null) -> this — Set the embed author (name, optional icon URL and link).; setColor(color: string | number | [number, number, number] | null) -> this — Set the embed color. Number (hex), hex string, or `[r,g,b]` array.; setDescription(description: string | null) -> this — Set the embed description. Max 4096 characters.; setFooter(options: EmbedFooterOptions | null) -> this — Set the embed footer (text, optional icon URL).; setImage(input: string | EmbedMediaOptions | null) -> this — Set the embed image (URL string or full media options).; setThumbnail(input: string | EmbedMediaOptions | null) -> this — Set the embed thumbnail (URL string or full media options).; setTimestamp(timestamp: number | Date | null) -> this — Set the embed timestamp. Omit for current time.; setTitle(title: string | null) -> this — Set the embed title. Max 256 characters.; setURL(url: string | null) -> this — Set the embed URL (title becomes a link).; setVideo(input: string | EmbedMediaOptions | null) -> this — Set the embed video. Supported by Fluxer.\nEmbed stays type 'rich'; this adds the .video field.\nInclude a title (e.g. setTitle) when using video.; spliceFields(index: number, deleteCount: number, fields: EmbedFieldData[]) -> this; toJSON() -> APIEmbed — Convert to API embed format for `reply`, `send`, or `edit`.","meta":{"url":"/docs/classes/EmbedBuilder"},"embedding":[-0.037929356,-0.0043839943,-0.029399484,0.00023183314,0.03416182,-0.02671141,0.012456153,0.0021602483,-0.025377957,-0.0001881784,0.017959297,-0.014530415,-0.010630591,-0.03737904,0.006767808,0.012752476,-0.013641445,0.0060058343,0.036849894,0.016139027,-0.010106734,-0.0414429,-0.01080521,0.006963593,0.021070689,-0.022054905,-0.011165031,0.0820815,0.014699742,-0.015895618,0.02395984,-0.0078049386,0.03301886,0.02421383,-0.021419927,-0.020700285,0.0559204,0.021578671,-0.01971607,0.019737234,0.03265904,-0.023451857,-0.05634372,-0.009672833,-0.012699561,0.050078604,-0.03536828,0.01233974,-0.006661978,0.04286102,-0.022774547,0.01721849,0.00008325819,0.03534711,-0.021631585,-0.007021799,-0.041802723,0.037738863,-0.04550676,0.01226566,0.025039302,-0.001814979,0.022689883,0.030859934,-0.033103522,-0.0084557915,-0.05541242,0.062820494,0.02014997,0.04732703,0.040130615,-0.033145856,-0.0067307674,0.028150694,0.042204875,-0.001045068,-0.01847786,0.0077996473,-0.012032834,-0.037061553,0.013482701,0.030605942,-0.05875664,-0.016932748,-0.040998418,0.02332486,-0.012593731,0.0037675365,-0.024467822,-0.030288454,-0.055962734,-0.041527566,-0.06624938,-0.044194475,0.04364416,0.03270137,0.0057148025,-0.004923726,0.012509068,0.030732939,0.05613206,-0.034796797,-0.09558536,-0.01786405,0.019387998,-0.03716738,-0.033230517,0.009810411,-0.0013222095,-0.03337868,-0.05473511,0.0044104517,0.007968974,-0.016414182,0.007720275,-0.01197992,-0.01127086,0.038522,-0.0665457,-0.03177007,-0.033188187,-0.048300665,0.06315915,0.026415087,0.03020379,0.0010119963,0.005773009,-0.000021662012,-0.0492743,-0.016530596,0.024975805,0.024975805,0.027261725,0.02249939,-0.017483063,-0.023494188,-0.028235357,0.0042596445,0.026796075,-0.0617622,0.016498847,0.014837321,0.055285424,-0.024044503,-0.024192665,0.018509611,-0.009635792,-0.031473745,0.0017871987,0.015313555,-0.027685044,0.02442549,-0.054862104,0.02760038,-0.013323956,-0.055497084,0.0061963275,0.028298855,-0.009715164,-0.018065127,0.01226566,0.0029764597,-0.03166424,-0.003928927,-0.036109086,-0.012932386,0.008106553,-0.037463706,-0.032976527,0.016932748,0.0116518475,-0.01718674,-0.038924154,0.04326317,-0.027642712,-0.033569172,-0.01080521,-0.06400579,-0.0011085658,0.019091673,-0.024742978,0.03936864,-0.059349284,-0.012297409,-0.01215983,0.028955,-0.03329402,0.03009796,0.0075403643,-0.025081633,-0.037484873,-0.014964316,-0.0148479035,0.03441581,0.04724237,-0.011112116,0.028976165,0.0046591517,0.041739225,-0.010493012,0.049909275,0.017419565,-0.0003078982,0.005402605,0.013207544,-0.0057994663,0.0045982995,0.04123124,-0.054396454,0.0021298223,0.02927249,-0.012043417,-0.0074662836,-0.0037066843,-0.00044679968,0.05879897,-0.014890236,-0.012974719,-0.055327754,0.024361992,-0.058036994,0.062820494,0.04800434,-0.039283976,-0.037209716,0.004799376,-0.024234995,-0.0015054272,-0.018763602,0.04364416,-0.010418932,-0.012953552,-0.02817186,-0.0015623106,-0.019282168,0.01915517,-0.02999213,0.038246844,0.014456334,-0.0033151146,-0.019017594,-0.03625725,0.006508525,0.0070482567,-0.008725657,0.004182918,0.0051803626,-0.074038446,0.022774547,0.040807925,0.03515662,0.018139206,0.025399122,-0.0039421553,0.016615259,-0.030224957,-0.050967574,0.05156022,-0.004389286,-0.03875483,0.021462258,-0.022880375,-0.021568088,-0.010799918,0.0279602,-0.025970602,0.033802,-0.00079901406,0.025420288,-0.033209354,-0.0039712586,0.0054105422,-0.0024565714,0.0020663245,-0.016858667,-0.01526064,0.020298133,0.0043734116,-0.022266565,0.023473023,-0.019419746,-0.015874451,0.003648478,0.032468546,-0.0059952512,-0.018668355,0.043284338,0.008805029,0.027727375,0.013874271,0.04097725,-0.0044871783,0.0693396,-0.03744254,-0.01903876,-0.011609515,0.084706075,0.003762245,0.06675736,0.020837864,0.0056565963,-0.011694179,0.022054905,0.010995704,0.02927249,0.010328976,-0.0017726471,-0.026944235,0.04863932,-0.055116095,0.0078102304,-0.0025412352,-0.044660125,-0.04114658,-0.055962734,0.035495274,0.03936864,0.008445208,0.01023373,0.0062598255,0.01611786,0.003791348,-0.03244738,-0.07242983,-0.028425852,-0.045379765,-0.020520374,0.01429759,0.0000041262206,-0.003230451,0.02578011,-0.013144046,-0.0062968656,0.03494496,0.04161223,-0.06193153,0.023557685,-0.013006467,-0.0019261001,0.03009796,0.012688979,-0.034034826,0.013069965,0.024192665,-0.02942065,-0.011260278,-0.020552123,0.041739225,-0.020012392,-0.010265479,-0.04385582,-0.0007513907,-0.040638596,-0.037971687,0.04660739,-0.040702093,0.02143051,-0.07966858,-0.034966126,-0.0020120868,0.001163465,0.02249939,0.014551581,0.03708272,-0.0251028,-0.0034923793,0.0038204514,0.028785672,-0.023261363,-0.01754656,-0.007783773,0.034860294,0.019345665,0.037357878,-0.0022766609,-0.03562227,0.010201981,-0.029187825,-0.018890597,-0.0148479035,0.010784044,0.01811804,-0.009498213,-0.040871423,-0.028828004,-0.02870101,0.024340825,0.031008095,-0.05266085,0.04838533,0.012614897,-0.013461535,-0.013218126,-0.02817186,0.076070376,0.03441581,-0.012646646,-0.00065581326,0.003823097,0.0022316833,-0.022880375,-0.027113562,0.026499752,0.018446112,0.021494007,-0.017408982,0.079710916,-0.0042993305,0.021843245,0.0043125595,0.061127223,-0.01989598,0.03761187,0.033463344,0.009662249,-0.008212383,0.0015530505,-0.06015359,-0.01658351,0.03265904,-0.043601826,-0.040913753,-0.01658351,-0.008180634,0.03763303,-0.010371309,0.035431776,-0.031050427,-0.034923792,-0.007995432,-0.04453313,-0.0049343086,0.1090469,0.035474107,0.024383157,-0.0064979424,-0.009387093,-0.012773642,-0.028404685,-0.0007222876,-0.015810953,0.027219392,0.018054543,0.004735878,-0.063243814,-0.0041696895,-0.009397675,-0.0010834313,0.01971607,-0.028341187,-0.010239021,0.009635792,-0.013948351,0.024467822,-0.01790638,0.029208992,0.03805635,0.01565221,0.027642712,0.027769707,0.024869975,0.02467948,-0.008254715,-0.0043125595,-0.010074985,-0.017154992,-0.026266925,0.030119127,0.0022263918,-0.030267287,0.0027542172,0.008508706,-0.0025372666,0.027325222,-0.026266925,-0.004656506,0.0042702276,-0.046903715,0.008963774,0.038966488,-0.024383157,0.015197142,-0.059814934,-0.02984397,-0.053253494,0.034987293,0.024764145,-0.039029986,0.014361087,-0.031410247,-0.0024459884,-0.029081995,0.007302248,-0.0069688843,0.021631585,-0.013630862,-0.06341314,-0.011598933,0.039305143,-0.012466736,0.0065455656,-0.015927367,-0.027663877,0.034987293,0.02520863,-0.0060640406,-0.010540636,-0.022880375,-0.025695445,0.028044865,-0.017557144,-0.0007857854,0.003629958,0.02489114,0.02588594,0.038416173,-0.054650445,0.031431414,-0.022922708,-0.02489114,0.004881394,-0.0013982746,0.028087197,0.006661978,0.019768983,-0.00026953497,-0.027790872,-0.0270289,0.0036220206,-0.024933472,-0.02916666,-0.000099298,0.0148479035,0.019906562,-0.033103522,0.01437167,-0.052576184,0.035389446,-0.01843553,-0.03369617,-0.033802,0.03066944,-0.00033137918,0.005836507,-0.034394644,0.028976165,-0.008053638,0.005577224,-0.012128081,0.0337385,0.040680926,-0.022478223,0.046946045,-0.064175114,-0.00052650267,0.08055755,0.01187409,0.007820813,0.0011971982,0.013387454,0.008963774,-0.008916151,0.016520012,0.034754466,-0.02260522,0.014350505,0.004323142,0.003886595,0.01711266,-0.0012104269,-0.044660125,0.010418932,-0.020499209,0.059857264,-0.0231767,0.0061116638,0.008672742,0.015038397,-0.01861544,-0.026203427,-0.017303152,-0.04567609,-0.016244855,-0.0015332075,-0.002367939,0.010366017,0.008572204,0.015271222,-0.020922527,0.01119678,0.02129293,0.04389815,0.0019247773,0.0067360587,0.014784406,-0.026859572,-0.0013063351,0.008429334,-0.028150694,0.032426212,0.02656325,-0.016594093,-0.012678395,0.017483063,-0.0057994663,0.00086846476,0.041273575,-0.0048231874,-0.041379403,0.004532156,0.03651124,0.025653115,-0.015250056,-0.046522725,-0.0025253608,0.016202524,0.00247906,-0.014752657,0.015736872,-0.0013546199,0.013874271,-0.007228167,-0.022224233,0.03581276,-0.0151336435,0.03445814,0.0044157435,-0.019536158,0.037315544,0.01754656,0.0048761023,-0.0067889737,0.0032251594,-0.0131863775,-0.004233187,-0.022457058,0.04034227,-0.00010822738,-0.016922165,-0.0029314822,0.032002896,0.013757858,0.049697615,0.018139206,-0.021843245,-0.009953281,-0.027473385,0.00043489382,-0.020837864,0.010069693,-0.014742074,-0.03532595,0.01950441,-0.035452943,0.022372393,-0.00902198,-0.028002532,0.01262548,-0.018922346,0.009064312,-0.018848266,0.004481887,-0.008942608,0.0064344443,0.021451676,0.036341913,-0.033251684,-0.0006224108,0.0011052587,0.020329881,-0.008836778,-0.02848935,-0.002817715,-0.020234635,0.014773823,-0.06938194,0.028193027,0.0027224685,0.028108362,0.009360635,-0.02395984,-0.0006832628,-0.040807925,-0.042607028,0.007688526,-0.05515843,-0.016414182,0.03155841,0.021197684,0.0028282981,-0.030457782,0.03577043,-0.006328615,-0.03030962,-0.008461082,0.06629171,-0.009260097,0.0051697795,-0.0022224232,-0.053761475,-0.005159197,0.013461535,-0.04508344,-0.01515481,-0.004973995,0.009783953,-0.01544055,0.028298855,0.0178958,-0.038881823,-0.034119487,0.014318755,0.0061592874,-0.009016689,-0.02061562,-0.011239111,-0.0131334625,0.011577766,0.009101353,0.010201981,-0.012604315,-0.01801221,-0.03098693,-0.0107417125,-0.024848808,-0.031854734,0.023049703,0.05905296,-0.023367193,0.0028865044,0.018139206,0.024933472,0.00024671544,-0.0019763692,-0.040172946,0.042734023,-0.011842341,-0.0108475415,-0.015482882,0.017853467,-0.01726082,0.005693637,0.05062892,0.025589615,0.01468916,-0.012064584,0.0139377685,0.0034262359,-0.0032198678,0.010921623,-0.023197865,0.0042569987,-0.04275519,0.0070376736,-0.031833567,0.0010179492,0.016964497,-0.020351047,-0.029801637,0.009773371,-0.000079785656,0.024510153,-0.012688979,-0.0117047625,-0.014318755,-0.0434325,0.005296775,0.0045665507,0.0038627833,-0.006947718,-0.028933834,-0.018774185,-0.03776003,-0.005450228,0.09922591,-0.03488146,-0.011217946,-0.011260278,-0.017514812,0.024234995,-0.04478712,0.0105618015,0.0023044413,-0.0032701371,-0.013112297,0.003362738,-0.046776716,-0.035262447,-0.0434325,-0.044067476,0.011800009,-0.017377233,-0.0022277148,-0.015588711,0.004603591,0.035685766,-0.02906083,-0.082843475,-0.0111861965,0.035685766,-0.008090679,0.0016681403,-0.022880375,0.01091104,-0.0054713944,-0.0048893313,-0.03822568,0.0318124,-0.0011370076,0.03327285,0.0048549366,-0.036574736,-0.0010159649,0.025864772,0.023240197,0.008244132,-0.03780236,0.007402786,0.024827642,0.018636607,0.024721812,0.015736872,0.017737053,0.02228773,0.028806837,0.02770621,-0.0041617523,0.033928994,0.044871785,-0.03833151,0.009969155,0.03754837,0.00060058344,0.020086473,-0.012075166,0.0026100245,-0.044236805,0.019779567,-0.036574736,-0.0045559676,0.0018467279,0.011905839,0.00010153035,0.02285921,0.005352336,-0.019070508,0.02264755,0.037209716,0.0056248475,-0.0096305,-0.0013718172,0.030817602,0.05139089,-0.055581745,0.01176826,0.01847786,-0.00044084675,-0.007699109,0.01041364,0.01947266,-0.01215983,0.046268735,-0.0251028,0.0061010807,0.0003196387,-0.005444937,-0.03651124,0.024764145,-0.014308172,0.0008704491,0.014234091,-0.027939035,0.005773009,0.025526118,0.014731491,0.0064503187,0.0038204514,0.021631585,-0.04279752,0.024192665,0.019853648,-0.021885578,-0.005556058,-0.01950441,0.018001629,0.011927005,0.05253385,0.04796201,-0.034288816,0.030838767,-0.017991045,-0.010694089,-0.00023778605,-0.0001499805,-0.005979377,0.05769834,-0.017027995,0.048808645,0.017017413,0.007307539,0.000075279626,-0.04978228,-0.0013757858,-0.0014273778,0.016625842,-0.015302971,0.00050665956,0.021472842,-0.006672561,0.004042694,0.010392474,-0.0036775812,-0.01726082,0.009397675,-0.03790819,0.0020583873,0.009799828,0.033886664,0.02999213,-0.010551219,-0.03854317,-0.0010642497,0.017599475,0.03847967,0.007947809,-0.010180815,-0.003944801,-0.016202524,0.025716612,-0.015525213,-0.03744254,0.014234091,0.013376871,0.0059635025,0.023388358,-0.041569896,-0.0037384334,0.016784586,-0.02713473,0.031135092,-0.04576075,-0.020774366,0.02734639,-0.030119127,0.039093483,-0.017641807,-0.047200035,0.01911284,0.00040347566,-0.02863751,-0.003066415,0.02186441,0.019134006,-0.025335625,-0.006661978,-0.010963955,-0.009979739,-0.005841798,0.06658804,0.029335987,-0.022330062,-0.008048347,-0.021091854,0.00058570114,-0.021314098,-0.02535679,0.0006872315,-0.008540455,0.0045877164,0.030267287,0.018065127,-0.011524851,0.026901904,0.01583212,0.029801637,0.024848808,0.0104824295,-0.018340284,0.001836145,0.016160192,0.014403419,0.0034844421,0.0047120666,0.011408439,0.005947628,0.024171498,0.03898765,-0.005198883,0.016139027,0.02307087,-0.03511429,-0.020742618,0.0049475376,-0.00205045,0.009963864,0.004952829,-0.009545837,0.041527566,-0.015885035,-0.0049052057,-0.037019223,0.0046432773,-0.009175433,0.0034474018,0.03301886,0.004992515,0.021123603,0.0051750713,-0.024234995,0.0025491724,0.014318755,-0.005384085,0.0065402742,-0.007783773,0.018033378,-0.013736692,0.008328795,-0.016424766,0.00045176042,-0.008281172,0.02870101,-0.024192665,-0.008429334,0.014001266,0.0058576725,-0.029970964,0.014540997,-0.015937949,-0.025631947,-0.008609245,-0.026097598,0.04732703,-0.014318755,-0.03462747,-0.02624576,-0.010477138,0.040850256,0.03359034,0.009265388,-0.0000018577035,-0.018287368,-0.03177007,0.011927005,0.03646891,0.026224595,-0.017408982,0.011143865,0.0077361492,-0.00024456577,0.024446655,-0.00452951,0.021546923,0.006804848,-0.01929275,0.003793994,0.014361087,-0.0070694224,0.013419203,0.01778997,0.008498123,-0.014488082,0.0023811678,0.010572385,0.0071805436,0.027113562,-0.0019009656,0.0472847,-0.028658677,0.020403963,0.0019327145,0.028341187,-0.01872127,0.0520682,-0.03900882,-0.00041339718,0.032997694,-0.0035214825,-0.03259554,-0.045845415,0.003309823,-0.03801402,0.017091492,0.012075166,-0.011683596,-0.013027634,0.02431966,0.013747275,0.020732034,0.03443698,-0.02321903,-0.017916964,0.018266203,-0.017715888,-0.023388358,-0.0145621635,0.054396454,0.009408258,-0.010000904,0.008720365,-0.013715526,0.030034462,-0.017239654,0.0052438607,0.03202406,-0.008868527,0.024129167,-0.004585071,-0.031748902,-0.00934476,0.027198227,-0.053549815,0.018022794,-0.003526774,-0.011006286,-0.07670535,0.025420288,-0.0067201843,-0.005751843,0.0058100494,-0.01632952,0.02817186,-0.005413188,-0.014265841,0.019514993,-0.017398398,0.027219392,0.012022251,0.010868708,-0.032786034,0.030246122,0.00035254512,-0.012403239,-0.0017647098,-0.0549891,0.014361087,-0.029145492,0.026584415,0.007741441,0.0073974943,-0.040448103,0.014022432,0.01322871,-0.030923432,-0.0015041042,0.00233619,-0.036680568,-0.00798485,0.037040386,-0.0049687033,0.0043019764,-0.009884492,0.0074609923,-0.005251798,0.006180453,0.024975805,-0.009567003,0.015948532,-0.011778843,-0.0093659265,0.017377233,0.0016258084,-0.0063497806,-0.016456515,-0.0018163018,-0.008148885,0.008371128,-0.025229795,0.0017660328,0.0060852063,0.039241645,0.03979196,-0.022266565,0.000113684226,0.007402786,0.00641857,0.02613993,-0.013662611,0.008265298,0.010180815,0.014826737,0.036341913,-0.04779268,0.0048761023,-0.046226405,-0.021462258,0.0075932792,-0.013630862,-0.011038035,-0.030436615,0.0022713696,-0.008286464,0.008117137,-0.012794808,-0.031748902,-0.020393379,-0.0048126047,-0.01790638,-0.00095908146,-0.01754656,0.02713473,0.006746642,0.019726653,-0.00007081494,0.016890416,0.020742618,-0.023240197,0.03306119,-0.012995885,0.03519895,-0.0024473113,0.026161097,0.014604496,0.03723088,0.008476957,0.004365474,-0.0075932792,0.026986567,0.0027118854,0.007640903,-0.0049343086,0.012964135,-0.006905386,0.022033738,0.014435168,-0.012434987,0.0036008547,0.02937832,0.0053867307,-0.028214192,-0.011683596,0.026838407,-0.0015332075,0.03716738,-0.0034315272,0.004619465,-0.010694089,0.027113562,-0.0019208087,0.005688345,0.021367012,0.015673375,0.020552123,0.00738162,0.0035532315,0.021652753,0.018954094,-0.0023335444,0.003495025,0.008408168,-0.0058788387,0.0042278958,-0.012815974,-0.029293654,-0.039749626,0.012392655,-0.018880015,0.010228438,-0.0063921125,0.0049475376,0.012434987,-0.030965764,0.0068313056,0.00274628,-0.0251028,0.00299498,-0.024023337,-0.03270137,-0.00035221438,0.005926462,0.02453132,-0.01858369,0.012540816,-0.00641857,-0.0030505403,-0.025335625,0.02942065,-0.01708091,0.010784044,0.0033918412,0.018573109,-0.0061857444,0.0068313056,-0.029801637,-0.00017395754,-0.011757677,0.01732432,0.00016180366,-0.037569534,-0.0065243994,0.04525277,0.042607028,0.031071594,-0.047454026,-0.007503324,0.0052941297,-0.029230157,0.018562526,-0.013863687,0.0037807652,-0.010318394,-0.034331147,0.038373843,0.026097598,0.0015464361,0.04732703,0.0102760615,-0.027536882,0.0059423363,-0.00053245557,-0.0022078718,-0.039326306,0.026182262,0.0009941375,0.0077149835,0.00040215277,0.011598933,0.0070376736,0.020012392,-0.015091312,-0.029505314,-0.004296685,-0.007958392,0.004849645,0.020097056,-0.0038495546,-0.022668717,-0.006868346,-0.003823097,0.010424223,-0.01312288,0.01903876,0.0066461037,0.015302971,-0.0032992403,-0.02182208,-0.018604858,0.0025412352,0.00563543,-0.012487902,-0.0318124,-0.01744073,0.01664701,-0.013355705,-0.01780055,0.01098512,0.03240505,0.016202524,0.018562526,-0.01921867,0.036574736,0.008318213,-0.0030769978,0.0064873593,-0.026944235,0.009831577,-0.0006286944,0.016266022,0.015588711,-0.021345846,0.009688707,-0.02999213,0.013726109,0.0099903215,-0.021282349,0.010598842,0.029251322,0.0015398219,0.04207788,0.014667993,0.006386821,-0.014244675,0.04275519,-0.00020024959,0.00067929423,0.0030267288,0.04190855,0.024721812,-0.008831487,-0.019747818,-0.026118765,0.034352314,-0.001650943,-0.032574374,0.008566912,-0.02307087,0.03505079,-0.016318936,0.014424585,0.036680568,-0.01601203,0.007783773,-0.01793813,-0.000085159816,-0.037484873,0.03629958,-0.023727013,0.013271041,-0.011101533,0.03712505,0.014128262,-0.04775035,-0.0044025145,-0.024234995,0.018372033,-0.02197024,-0.029335987,0.0015914137,0.03160074,0.02453132,0.012900637,0.0056142644,-0.008932025,-0.027685044,0.0019710776,-0.031833567,0.022351228,0.037527204,0.01544055,-0.0006485375,-0.011842341,0.021123603,-0.023197865,-0.018742437,0.029103162,-0.025060467,-0.01233974,-0.022922708,-0.037209716,0.021218851,-0.008720365,0.012678395,0.027536882,0.017525395,-0.015514631,0.0067413505,-0.012477319,-0.019885397,0.026753742,-0.000789754,-0.019567907,-0.01658351,0.007053548,-0.008789155,-0.020626204,0.010932205,0.009180725,-0.022033738,-0.005106282,-0.022266565,0.0018917054,-0.0037569536,-0.0010649111,0.02781204,-0.020890778,0.0130805485,-0.01091104,-0.0030108544,-0.01997006,-0.04478712,-0.00549256,-0.017250238,0.007947809,-0.0032410338,0.001896997,0.014540997,-0.0018440821,0.023473023,-0.0017501583,0.026626747,0.009662249,-0.02328253,0.024954638,-0.049655285,-0.0060640406,-0.007244041,0.01668934,0.037061553,-0.0076726517,0.024171498,0.01294297,-0.03519895,0.03437348,-0.013260459,-0.0061592874,0.01390602,0.0038310343,-0.025907105,0.012382072,-0.0068948036,-0.011016869,-0.009498213,0.026626747,0.054142464,-0.01429759,-0.013112297,0.04307268,-0.0065561486,0.022118403,0.02806603,0.017483063,-0.047369365,-0.044956446,0.015101895,0.0038680746,-0.0057042195,0.024488987,-0.010921623,0.0026417733,0.023981005,-0.0046009454,-0.0050083897,-0.013831939,0.037040386,0.02567428,0.010302519,0.041887388,0.02264755,-0.016318936,0.0017276695,-0.017144408,-0.013789607,-0.004764981,-0.020414544,-0.034246482,-0.0041458774,-0.0076091536,-0.02884917,0.0046432773,0.006318032,-0.050163265,0.010000904,0.004026819,-0.022372393,-0.04410981,-0.0034923793,0.0013043508]},{"id":"class-FluxerAPIError","type":"class","source":"main","text":"Class: FluxerAPIError\nProperties: code: string, errors: { path: string; message: string; code?: string; }[] | undefined, isRetryable: boolean, statusCode: number","meta":{"url":"/docs/classes/FluxerAPIError"},"embedding":[-0.050595745,0.019687835,-0.023142869,0.0024682994,0.029748425,0.020765338,-0.059028372,-0.0073375544,0.05232912,-0.00011528979,-0.008526321,-0.025742928,0.029139401,0.011255211,-0.019699547,0.048815526,-0.01089214,0.0051444867,0.02368162,0.05120477,-0.004942455,-0.06600871,0.03298093,0.026984397,-0.025157329,0.026117712,0.010048877,0.026234832,0.006623124,-0.010997548,0.050220963,-0.02604744,0.009457422,0.044037037,0.020941017,0.023880724,0.03450349,0.04794884,-0.029162826,-0.03604947,0.0050156545,-0.028015053,-0.009158767,-0.005282102,-0.01527242,0.03782969,-0.031177286,-0.03457376,-0.014405733,0.040617142,-0.025532113,0.00018656816,-0.024688851,0.035065662,-0.011553867,0.0091821905,-0.06408794,0.057201304,-0.02906913,0.00028968847,0.045723565,0.00665826,0.018329246,-0.0342224,-0.031950276,0.057529237,0.011483595,0.043966766,0.004254376,0.062214028,0.025625808,0.02527445,0.036517948,-0.043919917,0.0010174781,0.020765338,0.00018473816,0.019219356,0.036307134,-0.027663693,0.006435732,0.027804237,-0.0092173265,-0.073270135,0.00012453127,0.011946218,-0.0504552,-0.040687412,-0.005422646,-0.021222105,-0.012508393,0.019488731,-0.04724612,0.059684243,0.010318253,-0.011419179,-0.013187688,-0.013363367,-0.0016674929,0.029139401,0.066524036,0.0021740359,0.0066524036,0.013386792,-0.03848556,-0.03883692,-0.030099785,0.024079828,-0.016267939,-0.053968795,-0.013948966,-0.007612786,-0.037080124,0.0028665066,0.0061429325,-0.04483345,-0.017040929,0.016010275,0.013866982,0.03522963,-0.020929305,-0.027195213,0.05143901,0.039984696,-0.03925855,-0.0000813891,0.069990784,0.0097033745,-0.054858908,0.013656166,0.038883768,-0.031294405,0.019149084,0.006997907,-0.015647203,-0.0060843728,-0.0028284427,-0.022686101,-0.016279649,-0.02740603,0.028624075,-0.007366834,0.04499742,-0.019816667,0.023236565,-0.012883176,-0.0062073483,0.007823601,0.0058267093,0.022241047,-0.003176874,0.030521415,-0.024384338,0.011120523,-0.016666146,-0.043638833,0.03593235,0.020905882,-0.03729094,-0.005311382,-0.010347533,0.02178428,-0.0071560186,-0.028905163,0.020917593,-0.009398863,0.00028108747,-0.046192043,-0.033262018,-0.0055719735,-0.0026015232,-0.014628261,-0.03611974,-0.002698147,0.008186673,-0.032161094,0.05546793,-0.0029031066,0.0013922615,0.010312397,-0.014347173,0.007770898,0.027616845,-0.03429267,-0.008251089,-0.009802925,-0.017275168,0.0427253,0.013269671,0.0055631897,-0.007852881,0.009053359,-0.025180753,-0.023904148,-0.000052063402,0.0049834466,0.005847205,0.016642721,-0.0046847914,0.014768804,-0.017181473,0.0054753497,0.05453097,-0.009551118,-0.0013585895,0.012976872,-0.02705467,-0.034198977,-0.019910363,-0.0336368,0.053359773,0.05097053,-0.022170775,0.029443914,-0.033004355,0.011290347,0.041811764,0.04659025,-0.012988584,-0.021233818,-0.03628371,0.025133906,-0.0011543619,-0.010019598,-0.008836688,0.04790199,0.04410731,-0.0157409,-0.028272716,0.0011382579,-0.011940362,0.006792947,-0.046168618,-0.04317035,0.04368568,-0.024337491,0.019488731,-0.009469135,-0.01757968,0.02065993,-0.004020137,-0.035206206,-0.020519385,0.016361633,-0.015893154,0.029209673,-0.0038971608,-0.008983088,0.04251448,0.014312037,0.04794884,-0.004406632,0.029982664,-0.026258254,0.013047144,-0.028366411,0.024899665,0.004807767,0.010300685,-0.021749144,0.03368365,0.01640848,-0.045301933,0.010183565,-0.037923384,-0.042420786,0.04434155,0.00846776,-0.009978605,-0.034901697,0.0022809077,-0.009838061,0.04317035,-0.038017083,0.0028430826,0.00023735056,0.033472832,0.00534359,-0.004854615,0.04286584,0.044669487,-0.019886939,-0.012930024,0.017462559,0.01692381,0.011858378,0.04340459,-0.011003404,-0.021339225,-0.015588643,-0.01959414,0.0056363894,0.019137373,-0.047503784,0.009135343,0.053781405,0.0427253,-0.04150725,0.026797006,0.051907487,-0.017158048,-0.044083886,-0.03267642,-0.028319564,-0.0015591572,0.03907116,0.010107437,0.012988584,0.05068944,-0.005835493,0.030334024,-0.008087121,-0.079454064,-0.040687412,-0.03604947,-0.027218638,0.027452877,-0.045301933,0.06488436,-0.026539342,-0.0032588579,-0.06952231,0.03232506,-0.00651186,-0.05551478,-0.046262313,-0.030568263,0.009147055,0.04919031,0.04197573,-0.008034417,-0.056545433,-0.0029953385,0.027663693,-0.0022765158,-0.008748848,-0.035815228,0.032652996,0.017521119,-0.0024609794,0.025883472,-0.05860674,-0.03209082,0.01480394,0.048159655,0.007770898,-0.024688851,-0.056545433,0.01432375,-0.013199399,-0.051954336,0.032770116,-0.040874805,-0.01811843,-0.005782789,-0.011290347,-0.0131408395,-0.035815228,-0.03515936,0.033894464,-0.029935816,0.046496555,-0.04178834,0.004374424,-0.01763824,0.014991332,0.019172508,-0.06202664,0.03143495,-0.02728891,0.011629994,0.010488076,-0.0050215106,-0.03281696,-0.021093274,0.0035575135,-0.04801911,-0.0064005964,0.007214579,0.01959414,0.02557896,0.018493215,-0.077767536,-0.013386792,0.007167731,-0.011366475,-0.02480597,-0.01698237,-0.015412963,0.02445461,0.034386367,0.029209673,-0.016033698,-0.051813792,0.05706076,0.0019983563,0.015424675,0.0426316,0.00665826,-0.026351951,0.028225867,0.0028240508,0.013550759,0.056217495,0.021936536,-0.010488076,0.025906896,-0.015893154,0.034433216,-0.025368145,0.0130354315,-0.0036336412,0.029162826,0.039563064,0.019664412,-0.052657053,0.061464462,-0.039094582,-0.03984415,0.029818697,0.00878984,-0.012520105,-0.05696706,0.014897636,-0.017556256,-0.054671515,0.024688851,-0.042537905,-0.019687835,-0.037361212,0.028624075,-0.03698643,0.045208238,0.021104984,0.02942049,-0.0067402436,0.025485264,-0.06802317,-0.0013000296,0.015916578,-0.011887658,0.021186968,0.031083591,-0.0038913048,-0.013866982,-0.024126675,0.005399222,0.0023028678,0.011061964,0.016010275,-0.060480654,-0.033121474,-0.00025766352,-0.031575494,-0.043802798,-0.02244015,0.021116696,0.010119149,0.06132392,-0.004345144,-0.017860767,-0.004854615,-0.03291066,-0.052610207,0.050267812,-0.009785358,0.0056744535,-0.005375798,0.017567968,-0.0034140416,-0.037642296,0.033472832,0.013187688,-0.00011666228,0.009527694,0.011442603,-0.007981713,-0.04445867,0.06783578,0.043709103,-0.020413978,0.008163249,-0.011384043,-0.02663304,0.008397489,0.08933897,0.0067812353,0.015530083,-0.06924122,-0.005976037,-0.026703311,0.006558708,0.03640083,-0.011946218,-0.015541796,-0.033660226,-0.054437276,-0.046285737,0.0193599,-0.040710837,-0.015295844,-0.05701391,-0.008959663,-0.0044329837,0.030334024,0.0059116213,-0.003967433,-0.0258132,-0.009545262,-0.008579024,0.06390055,0.0111263795,0.0036160734,-0.0068515074,-0.026797006,0.014370597,-0.034245826,0.01823555,-0.027804237,-0.020987865,0.03759545,-0.012039914,0.0112669235,0.03918828,-0.0313881,-0.024501458,-0.014253478,-0.0074605304,0.0058120694,0.014721957,0.006945203,0.015764322,-0.002717179,-0.006008245,-0.012543528,0.04427128,-0.03204397,0.0028972507,-0.017052641,-0.052610207,-0.0065352838,0.0314818,-0.0119930655,0.028600652,-0.028975435,0.027640268,-0.01887971,0.03166919,-0.026609614,0.03387104,0.013503911,-0.027429454,0.002743531,-0.026726734,0.049471397,0.017029217,0.056639127,-0.018715741,-0.031762887,-0.00069393474,0.0044505517,0.008901103,0.049471397,0.0039645047,0.0020657002,-0.0077299057,-0.013386792,-0.0022062438,0.00991419,0.013632743,-0.009264175,0.011981354,-0.034316096,0.06455643,0.005361158,0.021233818,-0.010611053,-0.025602385,0.033262018,0.016994081,-0.0047374954,-0.054015644,0.007946577,0.066805124,-0.037853114,0.025742928,-0.0012736777,-0.025110481,-0.015026468,0.02238159,0.025672656,-0.003264714,0.009978605,-0.039727032,0.0003676463,0.00079568254,0.027874509,0.010886284,0.002742067,0.054249883,0.007653778,-0.02853038,0.0074605304,-0.02368162,0.018856285,-0.013749862,-0.0033320577,0.019664412,-0.032652996,-0.0029880186,-0.0058120694,0.025532113,-0.031997126,-0.05855989,0.021034714,-0.01278948,-0.014675109,0.026726734,0.014276901,-0.009469135,-0.008965519,-0.010652044,-0.022721238,-0.004368568,-0.023435669,-0.0131759755,-0.026258254,-0.05884098,-0.013269671,-0.0051444867,0.059871633,0.014194918,0.016865248,0.024735698,0.011436746,0.04731639,-0.019851804,0.031762887,-0.03855583,-0.019793244,0.018083295,0.0005105691,0.04495057,-0.0034930976,0.014464294,-0.03600262,-0.019020252,-0.017626528,-0.030146632,0.010148429,0.01207505,-0.013269671,-0.039118007,0.014897636,0.02728891,-0.024196947,0.0039264406,-0.003803465,-0.017907614,-0.011659275,-0.006558708,0.008579024,0.0005812069,0.036799036,-0.024946515,0.008116401,-0.0157409,0.008813264,0.0050185826,-0.0019954282,0.027921356,0.025625808,0.0014200774,0.00016616369,-0.011436746,-0.004930743,0.0008183745,-0.049518242,-0.01187009,-0.0008264265,-0.048440743,0.016279649,-0.047129,0.029654728,0.031950276,-0.04024236,-0.014827364,-0.0120282015,-0.013925542,0.0639474,-0.0150850285,0.046965033,0.012836328,0.013749862,0.014757093,-0.021514904,-0.022568982,0.01059934,0.004353928,0.024056403,0.042936113,0.011934506,0.019453596,-0.008983088,-0.01639677,0.006710964,0.02848353,-0.0052879583,0.04103877,-0.0028416188,-0.014932772,-0.0014515533,-0.01716976,0.019886939,-0.035651263,0.030685384,-0.001607469,0.014358886,-0.010880427,0.0014647293,0.01408951,0.021339225,-0.04736324,-0.01568234,-0.0151553,-0.008824975,0.022920342,0.0454659,-0.027031247,-0.009381294,-0.0035077375,0.017708512,-0.033613376,-0.026445648,-0.0061019408,-0.016666146,0.009504271,0.027499724,-0.013726438,0.0033613378,0.010546637,-0.024501458,-0.0025136834,-0.0073961145,-0.013398503,-0.024829393,-0.0003645353,0.008895247,0.0043802797,-0.014944484,0.0014354493,0.0061839246,0.0046320874,0.0054899896,-0.0022501638,-0.033191748,-0.0027962348,0.011887658,-0.009076783,-0.01169441,-0.027546573,0.04427128,0.00049885706,-0.028858315,0.02995924,-0.03019348,-0.011243499,0.0014581413,0.00534359,0.00044798318,-0.006675828,0.0025473554,-0.016689569,0.012684072,0.024688851,-0.004289512,-0.03604947,-0.008157393,-0.028998857,0.0054724216,-0.03853241,-0.0073141307,0.0034169697,-0.021104984,-0.0033847617,-0.011032684,-0.014897636,-0.014358886,-0.035018817,-0.017544543,0.016830113,-0.0019178365,0.037361212,-0.06572762,-0.0060433806,0.0012026738,-0.028319564,-0.04759748,0.007888017,-0.0013585895,0.0336368,0.028319564,-0.014944484,0.002253092,0.024267219,-0.007565938,0.012590377,0.038696375,0.03593235,-0.028975435,-0.019348187,0.03237191,0.0024068116,0.026305104,0.008180817,0.019640988,-0.0019851804,0.00072394666,0.025133906,-0.0019222285,0.056451734,0.013656166,0.052422814,-0.017860767,0.0029426345,0.043709103,0.0029104266,0.029561033,-0.01924278,0.018750878,-0.029467337,0.036752187,0.016209379,0.0007060127,-0.048768677,-0.013761574,-0.040546868,0.023353685,0.010950699,0.007934866,0.012086761,0.020308571,-0.008356497,0.0056656697,0.00867272,0.017790494,-0.021468056,-0.033707075,0.0025912751,-0.010253837,-0.03302778,0.0033642657,0.068210565,-0.042163122,0.05143901,-0.015541796,-0.06760154,-0.0034726015,0.022182487,-0.0028430826,-0.02114012,0.036658492,-0.016748128,-0.040336054,0.016057122,0.023693332,-0.030052936,0.022955477,0.0025707793,0.0035194494,0.042842418,-0.009199759,0.015869731,0.05204803,-0.020741913,0.02534472,-0.03759545,0.015260708,-0.0073551224,0.06418164,-0.016689569,0.013339943,0.004725783,-0.008959663,0.026609614,0.008842544,-0.00017805868,0.017427424,-0.021233818,-0.019875227,0.007554226,0.024243794,0.02338882,0.009843918,0.010247981,-0.0039879284,-0.012039914,0.028881738,-0.00018016317,0.013304807,0.038930617,0.011922793,0.007618642,0.032489028,0.011020971,-0.040827956,0.0006997907,-0.002128652,-0.0012751416,0.03843871,0.051485855,0.027851084,0.0015547652,0.03984415,-0.08423255,0.008655152,0.008795695,0.036752187,0.010107437,-0.04492715,0.021737432,-0.014604837,0.021690585,0.030732231,0.0012692857,-0.017614815,0.006546996,-0.0062483405,0.0102245575,-0.0062659085,0.0050156545,0.04729297,0.010318253,-0.004362712,-0.0024155956,-0.008040274,0.017767072,0.023435669,-0.01509674,0.03096647,-0.044083886,0.017474271,0.011548011,-0.045091115,0.056264345,0.0059116213,-0.014019238,0.020250011,0.0022062438,-0.006441588,0.039516214,-0.004904391,0.05359401,-0.013093992,0.0071208826,-0.03848556,0.014312037,0.044013616,0.06108968,0.017064352,-0.04984618,-0.008567312,-0.0336368,-0.028085323,-0.0040464886,-0.0028708987,0.016068835,0.012402985,-0.03876665,0.024876243,-0.03262957,-0.029584458,0.003949865,0.0041431123,0.025414992,0.033496257,-0.0041489685,0.013878695,-0.034152128,0.00982635,0.043638833,0.023154581,0.046496555,0.02101129,-0.0035926492,-0.004796055,0.028015053,0.004421272,0.0313881,0.07809547,0.016958944,0.015764322,0.0058062132,0.0002177696,0.021386072,-0.03066196,-0.011278635,0.039281975,0.0041079763,-0.027991628,-0.021948248,0.019453596,-0.018856285,-0.031247558,-0.0020378842,-0.03677561,0.03558099,-0.004974663,0.015120164,-0.011887658,0.006611412,0.014101222,-0.02019145,-0.043896496,-0.07106829,0.009820494,0.0060785166,0.010142573,-0.008865967,-0.0044798316,0.05209488,0.009369583,0.0045296075,-0.017122913,-0.011471882,-0.023423957,0.0029294586,0.0024595154,-0.017462559,-0.0034667456,-0.007448818,0.022627542,0.011858378,-0.039633334,-0.02017974,0.042701874,0.01397239,0.010950699,0.008725424,-0.019640988,-0.012824616,0.03042772,0.0020305642,-0.0062659085,0.027663693,-0.009961038,0.011348907,0.019945499,0.00057352096,-0.009972749,0.0252276,0.008543888,-0.014007526,-0.01640848,0.009996174,0.013995814,0.031692613,-0.0055221976,0.0066992515,-0.0011990138,0.010447085,0.014581413,0.0061195088,-0.007688914,0.017872479,0.018844573,0.02782766,-0.017837344,-0.00962139,0.011184939,0.017872479,-0.024899665,0.0023760677,-0.032067396,-0.00030249843,-0.003135882,-0.021877976,-0.04415416,-0.02114012,-0.013293095,-0.028225867,0.018680606,0.01550666,-0.009053359,0.0030421864,0.027921356,-0.0044124876,0.012988584,-0.0130002955,-0.04317035,-0.0063069,0.01759139,-0.007437106,-0.01598685,0.04352171,0.005044935,0.006019957,-0.0006503808,-0.005569046,-0.006406452,-0.018247262,-0.0483002,0.007905586,-0.035487294,0.009820494,0.030919623,-0.002664475,-0.045489322,0.006476724,-0.012285865,-0.016888672,0.050174113,0.029537609,-0.04504427,-0.03843871,-0.026539342,0.015752612,0.005425574,-0.013679591,-0.0051649823,0.0014017774,-0.005012727,0.0018036447,0.008994799,0.001083358,-0.006002389,0.0062366286,0.02705467,-0.033730496,0.0030714662,0.010792588,-0.0115772905,0.023669908,0.0081749605,0.010165997,0.015553507,-0.008508752,-0.0040406324,0.020308571,-0.0067695235,0.006927635,0.007858737,0.007448818,0.020004058,0.01042366,-0.028624075,-0.043545134,0.04848759,0.021093274,0.010575917,0.003244218,-0.013831846,0.013585894,0.012836328,0.01408951,0.028413258,-0.022475285,0.003253002,0.031083591,0.024993362,0.009439855,0.0071560186,0.022920342,-0.012531817,0.022182487,-0.013410215,-0.007150163,0.017462559,0.017146336,0.020273434,0.0022838358,-0.024688851,-0.0061312206,-0.019231068,0.005501702,0.0061663566,0.016467042,-0.02078876,0.009469135,-0.016830113,-0.02794478,-0.04499742,0.0022311318,-0.009018224,-0.0115772905,0.004722855,0.0001578372,0.0049190307,-0.02724206,0.009750222,0.0038825208,-0.015319267,-0.0012326858,-0.031528644,-0.03883692,-0.01201649,0.022100503,0.022686101,-0.014557989,0.010271405,0.0020876601,0.0003824693,0.009732654,0.016666146,0.036635067,0.010470509,-0.009838061,-0.028600652,-0.00012562927,-0.037501756,0.0067753796,0.0039996407,0.0110912435,0.03623686,-0.007062323,-0.014464294,0.046145193,0.0020012844,0.0065177158,0.0009713622,-0.015612067,-0.017017504,0.015073316,0.009609678,-0.01106782,-0.018926557,0.005331878,0.012250729,0.04476318,0.005246966,-0.003841529,-0.014312037,0.005785717,-0.003220794,0.00031439343,-0.036635067,0.009311023,0.012414697,0.024993362,0.011079531,-0.033589955,0.0058062132,-0.00011583878,-0.001660173,-0.010962412,0.03084935,-0.00025272253,-0.011436746,0.0009713622,-0.00055595295,0.0056422455,0.0030011944,-0.015424675,-0.007197011,0.00846776,-0.024595154,-0.01800131,-0.0065177158,-0.016631009,-0.030404296,-0.015553507,0.0010262621,-0.002193068,0.026000591,-0.01941846,0.02207708,-0.019090524,0.010927276,-0.00528503,0.022639254,-0.026703311,-0.03368365,0.025719505,0.013714727,-0.0029133547,-0.009996174,-0.0029880186,-0.012461545,-0.010078157,-0.023189718,-0.044786606,0.029256523,-0.02848353,0.023283413,-0.008192529,0.008444336,-0.006025813,0.013644455,0.0019236924,0.027335757,0.0129066,0.0006394008,-0.029654728,0.00041284724,-0.027218638,0.015729187,0.026211407,-0.0015664771,0.00324129,-0.00766549,-0.007981713,0.014136358,0.013574183,-0.035323326,0.012157033,-0.028553803,-0.008813264,-0.018610334,-0.0036629213,-0.013761574,-0.0055719735,-0.010177709,-0.0023541076,-0.00088279037,0.025742928,-0.0009918582,0.01189937,-0.012473257,-0.019863516,-0.015424675,-0.00010010081,0.027921356,-0.014054374,-0.0010489541,0.0016909168,0.0038620248,-0.0023731396,-0.038321592,-0.012590377,-0.008028561,0.02362306,-0.01140161,-0.0036599932,-0.023880724,-0.018598622,-0.023060886,-0.023810452,-0.022065368,-0.0086961435,0.01533098,0.0072672823,-0.033707075,-0.034901697,-0.006107797,0.024712274,-0.009422286,0.028553803,-0.003823961,0.004274872,-0.015904866,-0.0024199875,-0.02604744,-0.005027367,-0.033191748,-0.009849774,-0.004834119,0.0022399158,-0.0038210328,0.012648936,-0.01823555,-0.014253478,0.04120274,-0.014651685,0.002742067,-0.000037034555,-0.006476724,0.026281679,0.009978605,0.038321592,-0.035862077,-0.0213158,0.037150394,0.024314066,0.0033818337,0.017333727,-0.016631009,-0.0131759755,0.0072087226,0.022182487,-0.035862077,-0.004222168,0.049705636,-0.030451143,-0.042163122,-0.0016865248,0.011331339,0.00043480718,0.019500444,-0.025742928,-0.043966766,-0.0046203756,0.013948966,-0.0033730497,0.031458374,0.036541373,-0.017603103,0.026750159,0.02114012,-0.025953744,0.020413978,-0.0027962348,-0.023107734,-0.009422286,-0.007618642,-0.036260284,-0.019746395,-0.02740603,0.006429876,0.000527771,-0.016373346,0.010066445,0.00654114,0.013468775,0.018387806,0.0004282192,0.0027933067,0.009838061,-0.007999281,0.0045442474,-0.041882034,0.007536658,-0.027874509,-0.03775942,0.009100207,-0.032840386,-0.0022940838,-0.019746395,-0.040757686,0.048112806,0.02101129,-0.007823601,0.007770898,0.0023936355,0.008157393,-0.0051152064,-0.0056685973,0.01764995,0.006927635,0.015424675,-0.0106754685,-0.0004809231,0.029912392,-0.0007685986,-0.040617142,-0.029256523,0.027616845,-0.009674094,-0.00651186,-0.017790494,0.011934506,0.0028108747,-0.024969937,-0.022510422,-0.039024312,-0.042233393,-0.021491481,0.039563064,-0.0053084544,-0.0286475,0.02853038,0.022721238,-0.006693396,0.004743351,-0.014663396,-0.026773583,-0.0020832682,0.022205912,-0.0030861064,-0.0039791446,0.01230929,0.018762589,0.04600465,0.021339225,0.015131876,0.0037214812,0.017076064,0.034316096,-0.029490761,0.0067988033,-0.018903133,-0.008754704,0.014358886,0.008286225,-0.008221809,0.017064352,-0.030029513,-0.020753626,0.0067051076,-0.01569405,-0.014054374,-0.0505489,0.003985001,0.0036599932,0.0044329837,-0.016783265,-0.004236808,0.0061487886,0.036096316,0.030521415,0.036143165,-0.0056246775,-0.00214622,0.031762887,0.008778128,0.015623779,0.029748425,-0.0036775612,-0.003780041,-0.008971375,-0.004673079,0.030380871,-0.0120633375,0.014440869,0.026070863,-0.014276901,-0.0046291593,0.015389539,-0.001108978,-0.017076064,-0.06450958,0.007478098,-0.013948966,0.00985563,-0.009603823,-0.02995924,-0.035674687,-0.047339816,-0.0009552582,0.0040464886,0.02101129,-0.0014288614,0.0060492367,-0.00008317335,-0.010874572,-0.02290863,0.023306837]},{"id":"class-FluxerError","type":"class","source":"main","text":"Class: FluxerError\nProperties: code: string","meta":{"url":"/docs/classes/FluxerError"},"embedding":[-0.026621552,0.0016783152,-0.042671647,0.005266438,0.03174009,0.012629162,-0.044832237,-0.0052889436,0.0047745174,-0.009221088,-0.002374398,-0.022081742,0.028241996,-0.0023534996,0.0048163147,0.048073124,-0.004880618,-0.010307814,0.0019258829,0.07063071,-0.01912379,-0.075620644,0.04650412,0.045449547,-0.036447093,0.004880618,-0.0019033767,0.023303503,0.029810995,0.014892637,0.07371727,-0.032151632,0.02736747,0.011921826,0.0026718008,0.012506985,0.034569435,0.048536107,-0.013439382,-0.016821735,-0.01378662,-0.015072686,-0.010307814,0.0040093088,0.0052696527,0.023856511,-0.027033094,0.00041716744,-0.019419586,0.050105106,-0.025862774,-0.041642796,-0.011947547,0.027058816,-0.036318485,-0.0006751843,-0.0456296,0.055197924,-0.030196814,-0.025296906,0.025772749,-0.016603103,0.013426522,0.002448347,-0.020654209,0.028396323,-0.017541932,0.05252291,0.018262127,0.06625809,0.010725785,0.00985126,0.014686867,-0.03799037,-0.014108137,0.012262633,0.0016083855,0.03145716,0.029322289,-0.026955929,0.036781467,0.023740767,-0.023136316,-0.040896878,-0.008224388,0.04133414,-0.05494071,-0.038273305,-0.002985279,-0.06157681,-0.011947547,0.005967343,-0.042825975,0.039353598,0.014583981,0.0029917094,-0.013297915,-0.044806518,0.0053371713,0.03991947,0.049256302,0.0016542015,0.01912379,-0.01831357,-0.04917914,-0.024962528,-0.039662257,0.003446655,-0.04447214,-0.025528397,-0.010410699,0.00090828363,-0.010243511,0.040639665,0.0055043595,-0.044832237,0.006349948,0.0061473926,-0.000257414,0.03541824,-0.025901357,-0.032357402,0.012487695,0.012191899,-0.041437026,0.010770797,0.03940504,0.0033019728,-0.046941385,-0.0112337805,0.03662714,-0.040279567,-0.012699896,-0.0046716323,-0.011452412,-0.011336666,-0.01082224,-0.011838231,-0.030428305,-0.021220079,-0.01927812,0.030196814,0.043391846,-0.01871225,-0.004346901,-0.0028293438,0.0145196775,0.020358413,0.000017683398,0.04208006,-0.0037488805,0.014841194,-0.027650405,0.031791534,0.0063531627,-0.06661818,0.042748813,0.01887944,-0.06198835,-0.036344208,-0.0056008147,0.011651752,0.011638891,-0.030582635,0.005768003,-0.018274989,-0.010552166,-0.03703868,-0.038016092,0.024911085,0.0022538295,-0.003912854,-0.04012524,0.0088224085,-0.0018197824,-0.02043558,0.037527386,-0.020615628,-0.01162603,0.020294111,-0.0025882064,0.008719523,0.052625794,-0.044369254,-0.015201292,-0.014005251,-0.019831128,0.026955929,0.012031142,-0.0014082416,-0.016474497,0.023496414,-0.010005589,-0.0024676379,0.019959735,0.015021243,0.027676126,0.0073884455,-0.02476962,-0.001629284,-0.017233275,0.046684172,0.045166615,-0.009999158,0.0024869288,0.0017297579,-0.047532976,-0.03228024,-0.0025383714,-0.021567315,0.05488927,0.049487796,-0.026235733,0.0051603373,-0.03783604,0.036781467,0.05375753,0.053448875,-0.0025817761,-0.04153991,-0.04033101,0.013825202,-0.015072686,-0.014468235,0.004703784,0.02736747,0.02816483,-0.010976568,-0.01495694,0.004173282,-0.009921994,-0.0027457494,-0.021760225,-0.059673432,0.04645268,0.00010690418,0.001909807,0.0051217554,-0.010880113,0.04310891,-0.040048074,-0.05591812,0.0024531696,0.0033437698,-0.02458957,0.021065751,0.011658182,0.0052278554,0.063891724,0.01436535,0.055866677,0.021631619,0.02754752,-0.027264586,-0.0047359355,-0.010783657,0.025296906,0.0107450755,0.01908521,-0.03680719,0.026724437,-0.0271617,-0.048356056,0.0017635172,-0.036086995,-0.04624691,0.057770055,-0.006616806,-0.029605225,-0.01516271,0.013683735,-0.026222872,0.03405501,-0.02754752,0.012577719,0.0025624852,0.011458842,0.06656674,0.006099165,0.03876201,0.02659583,-0.010365686,-0.01750335,0.020538464,-0.01318217,0.032434568,-0.007401306,-0.016268726,-0.023136316,-0.026004242,-0.00075877854,0.007980036,0.019162374,-0.043057468,-0.019059489,0.058181595,0.03937932,-0.038324747,0.03325765,0.049436353,-0.03523819,-0.035315353,-0.024911085,-0.028267717,0.005330741,0.027264586,0.0057712183,0.010057031,0.044034876,-0.027984781,0.00481953,-0.042002894,-0.061216712,-0.023663603,-0.056381106,-0.027496077,0.024293775,0.008134363,0.077009596,-0.014249604,0.01945817,-0.068984546,0.034312222,-0.046992827,-0.04236299,-0.018609365,-0.021631619,0.021747366,0.061319597,0.048510384,-0.0126677435,-0.045449547,0.0014628994,0.012924957,0.029991044,-0.026441503,-0.006713261,0.044806518,0.006443187,0.004247231,0.024550987,-0.053397432,-0.004787378,0.0043276097,0.057152744,-0.0026300037,0.0021396913,-0.041462746,0.021361545,-0.018969463,-0.07736969,0.036164157,-0.054632057,-0.020345554,0.0020191225,-0.03505814,0.006912601,-0.029090798,-0.010076322,0.029991044,-0.003719944,0.047610138,-0.0017619096,0.0114781335,-0.045526713,0.021168636,0.005237501,-0.065280676,0.04745581,-0.045218058,0.006436757,-0.021528734,-0.021991717,-0.0048548966,-0.02855065,-0.02618429,-0.018416455,0.0065235663,0.016204424,0.0012900843,0.025875635,0.04040817,-0.07479756,-0.012674174,0.0145196775,-0.009954146,-0.0010553774,0.0065782242,-0.02302057,0.02855065,0.04169424,0.021490151,-0.011278793,-0.04367478,0.034929536,0.014108137,0.044780795,0.0468385,0.023972258,-0.0057422817,0.046401236,0.007208396,0.01791489,0.048484664,0.023560718,-0.017297579,-0.0004653949,-0.003665286,0.020950004,-0.016705988,0.016603103,-0.024293775,0.04650412,0.040716827,0.0071376627,-0.065280676,0.058644578,-0.036447093,-0.027933339,0.026415782,0.01970252,-0.00031187086,-0.039482206,0.0030929872,0.0040671816,-0.016796013,0.035315353,-0.046529844,-0.01851934,-0.036781467,0.016988924,-0.02280194,0.031508602,0.0318687,0.047558695,-0.0059351916,0.005060667,-0.04012524,0.0009114988,0.03310332,-0.028139109,0.0546835,0.08045625,-0.019586775,-0.0055429414,-0.047198597,0.017554792,0.0109894285,0.013735178,0.0046234047,-0.0633773,-0.020242669,-0.010372117,-0.04210578,-0.04650412,0.00629529,0.014802612,0.017387604,0.049127694,0.021130053,-0.031354275,0.0051024645,-0.04272309,-0.03932788,0.013207891,-0.036987238,-0.003912854,-0.0038260445,0.032974716,-0.01770912,-0.018442176,0.0334377,0.029759552,0.008198666,0.008751675,0.003758526,-0.0039032083,-0.04231155,0.061422482,0.00807006,-0.002670193,0.037270173,-0.012211191,-0.02970811,-0.008610208,0.12932673,-0.006378884,-0.028010502,-0.05766717,-0.000538138,-0.04033101,-0.004581608,0.020834258,-0.014944079,0.003781032,-0.035366796,-0.053500317,-0.034209337,0.019741103,-0.055558022,-0.009272531,-0.05260007,-0.023097733,-0.0046941387,0.03582978,0.007439888,0.021387266,-0.034492273,-0.035341077,-0.02340639,0.08380002,0.020962864,-0.013105006,-0.021091472,-0.0248082,0.010558597,-0.04665845,-0.004880618,-0.025901357,-0.006790425,0.03716729,0.00089220784,-0.004089688,-0.007922162,-0.022403259,-0.020628488,-0.003620274,-0.036344208,0.0064303265,0.0042633065,0.023059152,-0.010757936,0.0016091892,-0.016783152,-0.030454027,0.021927414,-0.017541932,0.0151498495,-0.008906002,-0.018815136,-0.026338618,0.028241996,0.0026396492,0.04917914,-0.03364347,0.038710568,-0.02852493,0.033669192,-0.017001783,0.045526713,0.022467561,-0.045115173,-0.011716056,-0.031379994,0.035161026,0.024782479,0.042543042,-0.012166178,-0.022004578,-0.008809548,0.006655388,-0.030634077,0.04979645,0.01867367,0.009066761,0.002813268,-0.032563176,0.005153907,0.01199899,0.014532538,-0.022866242,0.007266269,-0.024460962,0.052420024,-0.00092757464,-0.005468993,-0.019818267,-0.005182843,0.033772077,-0.023149176,0.0016751001,-0.040022355,0.0135036865,0.05828448,-0.031071339,0.02479534,0.0061763288,-0.036678582,-0.015059825,0.0014902282,0.03148288,-0.0031910497,-0.0074849003,-0.01475117,0.017194694,0.015304178,0.022596167,0.0046137595,0.013619432,0.036344208,0.0123526575,-0.01675743,-0.01219833,-0.029476618,0.058335923,0.004314749,0.004289028,0.012172609,-0.024859643,0.0212458,-0.030273978,0.045192335,-0.026068544,-0.049256302,0.0074270274,-0.013124296,-0.028859306,0.014043833,0.009716224,-0.0016389295,0.0068225767,-0.02006262,-0.028473487,-0.016178701,-0.0059191156,0.017606234,-0.017850587,-0.032331683,0.005645827,-0.013079285,0.025837053,-0.017554792,0.01101515,0.016808875,0.018146383,0.019200956,-0.01989543,0.02914224,-0.03426078,-0.031148503,0.018776555,-0.023329224,0.046375517,-0.0055654477,0.029733831,-0.026119987,0.0039257146,0.00012629564,-0.02303343,0.0125262765,0.02615857,-0.004899909,-0.03405501,-0.006745413,0.027033094,-0.010520015,0.0073434333,-0.000019253303,-0.0016445561,-0.01338794,-0.005980204,0.011092314,-0.014892637,0.024846783,-0.040665384,0.005986634,-0.030556912,-0.00025500264,-0.013812342,-0.008121503,0.028499208,0.032768946,-0.015381342,-0.0059384066,-0.00845588,-0.0071376627,0.0029611655,-0.05231714,-0.019509612,-0.014789752,-0.033334814,0.030145371,-0.04313463,0.026492946,0.011889674,-0.0035109583,-0.030196814,-0.018840857,-0.008340133,0.07510622,-0.020319832,0.044009157,0.027058816,-0.0009854476,-0.003700653,-0.04550099,-0.02659583,0.015239874,0.015754301,-0.007793556,0.04012524,0.0007342629,0.0148669155,0.009092482,0.0049642124,-0.03125139,0.026467225,-0.011497424,0.050285153,-0.0013166094,-0.014776891,0.006848298,-0.034492273,-0.011317375,-0.045449547,0.05254863,-0.018763693,0.0046169744,0.01417244,0.00006892507,0.014185301,0.023805069,-0.045346662,-0.013362219,-0.023264922,-0.007992896,0.004703784,0.037938926,-0.00747847,-0.006771134,-0.019226678,-0.0032296316,-0.0377846,-0.028370602,-0.027521798,-0.0029386594,-0.0024853214,0.0088931415,-0.010918695,-0.015844325,0.014892637,0.0076842406,0.00983197,-0.013162878,-0.013336497,0.0032875044,0.006951183,0.0010175993,-0.012854223,-0.0010593963,-0.003581692,0.009484732,0.002932229,-0.019728241,-0.008642359,-0.021734504,0.013285055,0.0065396423,-0.0023647526,-0.006314581,-0.0016228537,0.029965322,0.006925462,-0.014532538,0.004861327,-0.025772749,-0.016500218,-0.012635592,0.0030479748,-0.003258568,-0.014391071,-0.0019081994,-0.031045618,0.030917011,-0.012661314,-0.004980288,-0.060084973,-0.013799481,-0.011696764,0.015689997,-0.008365855,0.0035752617,-0.00055059674,-0.025296906,-0.0012249772,-0.039868027,0.009201798,-0.029476618,-0.030711241,-0.020229807,0.019265259,-0.0006289663,0.018969463,-0.05885035,0.004070397,0.01476403,-0.007227687,-0.057975825,-0.012500555,-0.0042408006,0.028473487,0.012802781,0.007992896,0.031508602,0.026119987,0.00945901,0.0020432363,0.021335823,0.034183618,-0.011799649,0.012024711,0.033000436,-0.007182675,0.041256975,-0.012584149,-0.00443371,0.008976736,-0.021335823,-0.009741945,0.0057905093,0.04758442,0.0123526575,0.036858633,-0.026724437,0.004629835,0.041874286,0.021605898,0.052677236,-0.011523145,0.025901357,-0.021335823,0.034209337,0.0020030467,-0.0033534153,-0.053243104,-0.009150355,-0.038890615,0.015844325,-0.006931892,-0.016204424,0.026621552,0.0018937312,0.0071891053,-0.0016895684,0.012770629,0.008037908,-0.017644817,-0.0440606,-0.0023952967,0.0018712251,-0.03973942,0.028036224,0.033411976,-0.06157681,0.044806518,-0.013593711,-0.05962199,-0.0056393966,0.021528734,0.0040253843,-0.013902366,0.027393192,-0.045423828,-0.041205533,-0.003858196,0.009015318,-0.024268053,0.031765815,0.002586599,0.007182675,0.05260007,-0.01495694,0.015702859,0.05115968,-0.01713039,0.02636434,-0.043263238,0.00043404705,0.017001783,0.035315353,-0.016191563,0.01869939,0.013111436,-0.010294953,0.045218058,-0.006160253,0.017246136,0.034132175,-0.02226179,-0.018776555,0.004571962,0.012371949,0.029553782,-0.012802781,-0.008320843,0.0071312324,-0.010873683,0.016564522,0.0036556406,-0.011317375,0.022338955,-0.0046234047,0.0188923,0.016937481,0.012262633,-0.031405717,-0.015227013,-0.0027875467,0.005063882,0.014738309,0.036164157,-0.0026605476,0.022338955,0.030839847,-0.0665153,0.008764535,0.0020882485,0.038864896,0.009182506,-0.030145371,0.00027308794,-0.0072984206,0.01436535,0.01868653,0.015522809,-0.02599138,-0.0003166936,-0.00012508995,-0.013323637,0.007034777,-0.005671548,0.069241755,-0.011979698,-0.02303343,-0.0010819024,-0.046401236,0.029039355,0.0228148,-0.013207891,0.025039691,-0.049770728,0.020319832,0.018133521,-0.03068552,0.04586109,0.003781032,-0.0050027943,0.015522809,0.011722486,-0.02325206,0.030556912,-0.00206735,0.032588895,-0.0064882,0.02067993,-0.035726894,0.021541594,0.042825975,0.05612389,-0.0020930714,-0.056021005,-0.017606234,-0.0131564485,-0.012487695,0.0037520956,0.0022956266,0.009812678,-0.021605898,-0.031405717,0.036447093,-0.03696152,-0.021528734,0.008783827,0.005253577,0.018467898,0.026647273,-0.005829091,0.02186311,-0.023560718,0.004195788,0.03582978,0.004247231,0.053500317,0.030865569,-0.0030945947,-0.028113388,0.052214254,-0.0035688314,0.031945862,0.081382215,-0.013349358,0.04310891,0.004996364,-0.0070733596,0.028653536,-0.05278012,-0.02361216,0.060187858,-0.019792546,-0.018004915,-0.036549978,0.022956267,0.01338794,-0.036755748,0.024422381,-0.049693566,0.0012732047,-0.009825539,0.0154970875,0.0049127694,0.008237248,0.014532538,0.004957782,-0.025914216,-0.051005352,0.00707979,-0.007581355,0.01751621,0.005719776,-0.006439972,0.019625356,-0.0037360198,0.014108137,-0.02361216,-0.0073691546,-0.022917684,0.0021589822,0.002294019,-0.042825975,0.025103996,-0.0050060092,0.009754806,-0.00009519898,-0.036755748,-0.023239201,0.032717504,0.01633303,-0.006423896,-0.0076327976,-0.0025142578,-0.0014202984,0.008237248,0.0052889436,-0.009896273,0.024692455,-0.019946873,0.0047069993,0.010937986,-0.0043436857,0.00077806955,0.038530517,0.011716056,-0.00009354116,0.007105511,0.009278961,0.024332356,0.026544388,-0.004385483,0.0030962024,0.010044171,0.00031870307,0.0043790527,-0.009278961,-0.01830071,0.012732047,0.009420428,0.023084873,0.012449113,-0.0036363497,-0.000641827,0.015278456,-0.017631955,0.0032730363,-0.012564858,0.011510285,-0.0015151458,-0.023599299,-0.03696152,-0.015175571,-0.018223546,0.0019210601,0.0026685856,-0.00043243947,-0.009201798,0.005970558,0.02615857,-0.02341925,0.017361881,-0.018776555,-0.05002794,0.0005425588,0.01966394,-0.0023534996,-0.022660471,0.044214927,0.004748796,0.011838231,0.012828502,0.009246809,-0.0040125237,-0.011600309,-0.0574614,-0.0050928188,-0.043006025,0.0051796283,0.014686867,-0.006931892,-0.015651416,0.026621552,-0.020036899,-0.018069219,0.042388715,0.03716729,-0.040793993,-0.033746354,-0.0020319833,0.008590916,0.016577382,-0.01417244,-0.0017136821,0.004173282,-0.010339965,-0.0048066694,-0.015265595,-0.006629667,0.019329563,0.00015272025,0.016435916,-0.027521798,0.023637882,-0.00038180064,-0.0074270274,0.01750335,0.007992896,0.016114399,0.0056779785,-0.0018615796,-0.009722654,0.020036899,-0.03544396,0.0042825975,0.01868653,0.01199256,0.0016268727,0.0026846614,-0.01356799,-0.0103271045,0.060959496,-0.004385483,0.004661987,0.0069769043,-0.0057037,0.031302832,-0.010880113,0.026827322,0.026930207,-0.010802949,-0.009986297,0.028756421,0.019934013,-0.002943482,0.01752907,0.030248256,-0.014005251,0.015509948,-0.012912096,-0.008153655,0.023534996,0.008925294,0.025155438,-0.009336835,-0.023856511,-0.008449449,-0.0070733596,0.012706325,-0.005841952,0.02497539,-0.0072148265,0.011503855,-0.008918863,-0.031508602,-0.06044507,0.0072726994,-0.03053119,0.0000057207303,0.0016976063,-0.018763693,-0.01475117,-0.02006262,0.014982661,0.0012281924,-0.014468235,-0.0027875467,-0.050310876,-0.016628824,0.0032987576,0.00235993,0.020692792,-0.008918863,-0.0074527487,-0.007420597,-0.0006635293,0.000043580534,0.018274989,0.0084751705,0.012449113,0.0010674342,-0.01891802,0.007960744,-0.021104332,0.007729253,0.032228798,0.03426078,0.021232938,0.0017603019,-0.0073112813,0.06497202,0.012905666,0.022506144,-0.014699727,0.003446655,-0.02161876,0.016320169,0.019046627,-0.032151632,-0.0038421203,0.0070154862,0.0145196775,0.025451234,0.01630731,0.00629529,-0.011355957,-0.00767138,-0.005848382,-0.0096969325,-0.021425849,-0.014609702,0.041411303,0.02520688,0.008931723,-0.04601542,0.0074334578,0.0030608354,-0.00216702,-0.0032135558,0.03819614,-0.005038161,0.014313907,-0.011536006,-0.026621552,0.02537407,0.00924038,-0.020757094,-0.0049352758,0.0037649563,-0.015072686,-0.014699727,-0.006275999,-0.0173233,-0.02950234,-0.019715382,0.012867084,-0.010571457,0.037938926,-0.045912534,0.007394876,-0.0074270274,0.0020159073,-0.016937481,0.023509275,-0.035752617,-0.013683735,0.007163384,0.025142577,-0.009272531,0.014918358,-0.0029450897,-0.0031637207,0.012031142,-0.021580176,-0.03737306,0.025309766,-0.02713598,0.007497761,-0.01219833,0.010764367,0.018750833,0.022621889,-0.0066875396,0.022737635,0.006616806,0.0048516816,0.00049593893,0.014712588,-0.019651078,-0.0040093088,0.029605225,0.0031765813,0.0044112043,-0.02146443,-0.006912601,0.0072598387,0.010352826,-0.027624683,0.011497424,-0.012378379,0.015419924,-0.009028179,-0.016358752,-0.013760899,-0.042002894,-0.016088678,-0.0039385753,0.0076842406,-0.00028976658,-0.012269063,0.025271185,-0.0046877083,-0.025078274,-0.0043533314,0.0025335487,-0.005700485,-0.025541257,0.008777396,-0.0005180432,-0.016847456,0.006536427,-0.037681714,-0.03246029,-0.011529576,0.01851934,-0.02439666,0.0020351985,-0.022506144,-0.012539137,-0.014005251,-0.013490826,-0.015368481,-0.015960071,0.014082415,-0.0012635592,-0.029605225,-0.022004578,-0.025168298,0.017168973,-0.0036106284,0.027187422,-0.005906255,-0.0028856092,0.0056329663,-0.004784163,-0.009857691,-0.017374743,-0.019239537,0.0028454196,0.0021509442,-0.012744907,-0.009600478,-0.0017233276,-0.013490826,-0.013529408,0.03089129,-0.006337087,0.013992391,0.013220752,-0.0055558025,0.013310776,0.012532706,0.018056357,-0.037681714,-0.01475117,0.008307982,0.043623336,0.014326768,-0.0060477224,0.006414251,-0.022981988,0.01711753,0.034209337,-0.030994175,-0.0050060092,0.058233038,-0.013902366,-0.021695923,0.005867673,0.003604198,-0.01986971,0.02458957,0.0031315691,-0.031560045,-0.00036331345,0.015239874,0.020178365,0.016461637,0.03467232,-0.011285223,0.016088678,0.021400128,-0.021708783,0.025065413,0.0027152055,-0.037141565,-0.02439666,-0.010339965,-0.036292765,-0.017683398,-0.025862774,0.023316365,-0.0074527487,-0.0006816146,0.012275494,0.008481601,0.023084873,0.0080186175,0.009806248,0.011542437,-0.009690503,-0.014262465,-0.015677137,-0.04328896,0.031302832,-0.027856175,-0.011343096,0.010545736,-0.038479075,-0.023689324,-0.020962864,-0.02537407,0.021014309,0.021747366,-0.021708783,0.018982325,0.008886712,0.026441503,0.003562401,-0.009124634,0.012539137,-0.024988249,0.006713261,-0.016873177,-0.015857186,0.016191563,-0.005571878,-0.036369927,-0.0062277713,-0.0020818182,-0.015214153,-0.0019966164,-0.020654209,0.03109706,0.003758526,-0.014609702,-0.029476618,-0.011851092,-0.04650412,0.0045687472,0.042131502,-0.0078064166,-0.023072012,0.016628824,0.02636434,-0.0060091405,-0.0018422886,0.008185806,-0.014339629,-0.0018406811,0.008185806,-0.0039675115,0.006931892,0.005980204,0.012146887,0.02561842,0.004922415,0.013850924,0.017271858,0.040793993,0.045938253,-0.028910749,0.003996448,-0.013799481,-0.015329899,0.021541594,0.004800239,-0.0054175504,0.013606572,0.0085073225,-0.02030697,-0.003996448,-0.0050124396,-0.014776891,-0.016461637,-0.011561727,0.009291822,0.021104332,-0.013966669,0.020448439,-0.006144177,0.026287176,0.016281588,-0.0031106705,-0.0032891121,-0.0070926505,0.040768273,0.028987912,0.010140625,0.026145708,-0.0074720397,-0.019020906,-0.0143782105,0.009497592,0.010635761,-0.030556912,0.025232602,0.00688688,-0.027624683,-0.002448347,0.012777059,-0.021348685,0.013838063,-0.0412827,0.008758105,-0.03467232,-0.008217958,-0.028782142,-0.042594485,-0.03348914,-0.052059926,0.0029579503,0.0015698035,-0.0021268306,-0.005015655,-0.01615298,-0.0034177187,-0.015985793,-0.0038935628,0.018146383]},{"id":"class-Guild","type":"class","source":"main","text":"Class: Guild\nDescription: Represents a Fluxer guild (server).\nProperties: afkChannelId: string | null, afkTimeout: number, banner: string | null, bannerHeight: number | null, bannerWidth: number | null, channels: Collection, client: Client, defaultMessageNotifications: DefaultMessageNotifications, emojis: Collection, explicitContentFilter: GuildExplicitContentFilter, features: GuildFeature[], icon: string | null, id: string, members: GuildMemberManager, mfaLevel: GuildMFALevel, name: string, nsfwLevel: number, ownerId: string, roles: Collection, rulesChannelId: string | null, splash: string | null, splashHeight: number | null, splashWidth: number | null, systemChannelId: string | null, vanityURLCode: string | null, verificationLevel: GuildVerificationLevel\nMethods: addRoleToMember(userId: string, roleId: string) -> Promise — Add a role to a member by user ID. Does not require fetching the member first.; ban(userId: string, options: { reason?: string; delete_message_days?: number; ban_duration_seconds?: number; }) -> Promise — Ban a user from this guild.; bannerURL(options: { size?: number; }) -> string | null — Get the guild banner URL, or null if no banner.; createChannel(data: { type: 0 | 2 | 4 | 5; name: string; parent_id?: string | null; topic?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; permission_overwrites?: Array<{ id: string; type: number; allow: string; deny: string; }>; }) -> Promise — Create a channel in this guild.; createEmojisBulk(emojis: { name: string; image: string; }[]) -> Promise — Bulk create emojis. POST /guilds/{id}/emojis/bulk.; createRole(options: RESTCreateRoleBody & { permissions?: string | PermissionResolvable; }) -> Promise — Create a role in this guild.\nRequires Manage Roles permission.; createStickersBulk(stickers: { name: string; image: string; description?: string; tags?: string[]; }[]) -> Promise — Bulk create stickers. POST /guilds/{id}/stickers/bulk.; delete() -> Promise — Delete this guild. POST /guilds/{id}/delete.\nMust be the guild owner.; edit(options: { name?: string; icon?: string | null; system_channel_id?: string | null; system_channel_flags?: number; afk_channel_id?: string | null; afk_timeout?: number; default_message_notifications?: DefaultMessageNotifications; ... 7 more ...; features?: GuildFeature[]; }) -> Promise — Edit this guild. PATCH /guilds/{id}.\nRequires guild owner or Administrator.; fetchAuditLogs(options: { limit?: number; before?: string; after?: string; userId?: string; actionType?: number; }) -> Promise — Fetch guild audit logs. Requires View Audit Log permission.; fetchBans() -> Promise — Fetch guild bans. Requires Ban Members permission.; fetchChannels() -> Promise — Fetch all channels in this guild.; fetchEmoji(emojiId: string) -> Promise — Fetch a single emoji by ID.; fetchEmojis() -> Promise — Fetch all emojis in this guild.; fetchMember(userId: string) -> Promise — Fetch a guild member by user ID.; fetchRole(roleId: string) -> Promise — Fetch a role by ID.; fetchRoles() -> Promise — Fetch all roles in this guild.; fetchVanityURL() -> Promise — Fetch vanity URL for this guild. GET /guilds/{id}/vanity-url.\nRequires Manage Guild permission.; fetchWebhooks() -> Promise — Fetch all webhooks in this guild. Returned webhooks do not include the token (cannot send).; iconURL(options: { size?: number; }) -> string | null — Get the guild icon URL, or null if no icon.; kick(userId: string) -> Promise — Kick a member from this guild.; removeRoleFromMember(userId: string, roleId: string) -> Promise — Remove a role from a member by user ID. Does not require fetching the member first.; resetRoleHoistPositions() -> Promise — Reset role hoist positions. DELETE /guilds/{id}/roles/hoist-positions.; resolveRoleId(arg: string) -> Promise — Resolve a role ID from an argument (role mention, raw ID, or name).\nFetches guild roles if name is provided.; setChannelPositions(updates: { id: string; position?: number; parent_id?: string | null; lock_permissions?: boolean; }[]) -> Promise — Update channel positions.; setDetachedBanner(enabled: boolean) -> Promise — Set detached banner feature. PATCH /guilds/{id}/detached-banner.; setDisallowUnclaimedAccounts(enabled: boolean) -> Promise — Set disallow unclaimed accounts. PATCH /guilds/{id}/disallow-unclaimed-accounts.; setRoleHoistPositions(updates: { id: string; hoist_position?: number; }[]) -> Promise — Update role hoist positions. PATCH /guilds/{id}/roles/hoist-positions.; setRolePositions(updates: { id: string; position?: number; }[]) -> Promise — Update role positions. PATCH /guilds/{id}/roles.; setTextChannelFlexibleNames(enabled: boolean) -> Promise — Set text channel flexible names feature. PATCH /guilds/{id}/text-channel-flexible-names.; splashURL(options: { size?: number; }) -> string | null — Get the guild splash (invite background) URL, or null if no splash.; transferOwnership(newOwnerId: string, password: string) -> Promise — Transfer guild ownership to another user. POST /guilds/{id}/transfer-ownership.\nMust be the guild owner.; unban(userId: string) -> Promise — Remove a ban (unban a user).","meta":{"url":"/docs/classes/Guild"},"embedding":[-0.03591699,0.026400737,-0.00625675,-0.0025429754,-0.010484114,0.00803012,-0.059645183,0.0029051425,0.030721765,0.042036366,0.05130285,-0.0045395778,0.006743802,0.009010469,0.03414362,0.0034780535,-0.08756952,0.0015485768,-0.01978182,0.035717174,0.0268753,0.000042270723,-0.0058539947,0.05225198,-0.04283563,0.02637576,0.018370617,0.032145455,-0.016072728,-0.066139214,0.062242795,-0.029348029,0.008217447,-0.030272178,0.00043163457,0.029123234,0.013362719,0.022591738,0.005591736,-0.038189903,0.011439486,-0.03736566,0.03017227,-0.023490911,-0.03736566,0.059395414,-0.05519927,0.0024290176,0.016097706,0.027999267,-0.020256383,-0.0063941237,-0.017259138,0.08077576,0.0053169886,-0.012632141,-0.028423877,0.010758862,-0.05544904,0.018632876,-0.0008609275,-0.036541417,0.0047955927,-0.024365107,0.011096052,0.01742149,-0.080825716,0.03726575,0.033069607,0.048905056,0.029073281,-0.024402574,0.015598165,-0.010927457,-0.023490911,-0.014261893,0.029897522,0.04480882,-0.010658954,-0.036066853,-0.004514601,0.048580352,-0.03751552,-0.042635817,0.01538586,-0.008173738,-0.035367496,-0.027374841,0.008061341,-0.020256383,-0.024377596,-0.000100103316,-0.10880001,-0.021630121,0.023653261,-0.051352806,0.024664832,-0.0059414147,-0.026775392,0.071334444,0.09526245,-0.045533154,-0.08467218,-0.03794013,0.036291648,0.02324114,-0.045158498,0.04478384,-0.0034593206,-0.0064440775,-0.084872,0.026725437,-0.010427916,0.031820755,-0.014536641,-0.005835262,0.021267954,-0.010746374,0.028448854,-0.04098733,-0.06299211,-0.03769036,0.045583107,-0.01926979,0.031945642,0.0020481178,-0.011926539,-0.00782406,-0.06329183,-0.0204562,0.029597798,-0.0046550967,0.04743141,-0.0043865936,-0.052451793,0.014611571,-0.01200147,-0.030971536,-0.039538663,-0.0054168967,0.027999267,-0.021792471,0.018945089,-0.0039307624,-0.0897675,0.022267036,-0.01496125,0.00029543162,-0.050903216,0.008198715,-0.07712912,0.011764188,-0.0036903585,0.009297705,-0.005048485,-0.04598274,-0.024564924,0.03129624,-0.03998825,-0.016672177,-0.017396512,-0.01683453,-0.004973554,-0.022441875,-0.00011376263,-0.06239266,0.0039338847,0.004280441,-0.07543068,0.016871994,0.04293554,-0.0019716255,-0.024140313,-0.017284116,-0.03624169,-0.025339212,-0.010746374,-0.035542335,-0.025551517,-0.01009697,0.02180496,0.019332232,-0.05020386,-0.05544904,-0.0818248,0.024277687,-0.01504867,0.008192471,0.03364408,0.046806984,-0.008848119,0.021779982,0.032744907,0.0043772273,0.03084665,-0.015685584,0.037015982,0.016459873,0.025751334,-0.031471077,0.014299358,0.00008429753,0.065639675,-0.035792105,0.013812306,-0.018220754,0.004661341,-0.018657852,-0.008785675,0.00879192,0.03017227,-0.04141194,-0.02400294,-0.001865473,-0.049479526,0.04268577,-0.06983582,0.007099725,-0.014324335,0.01031552,-0.05509936,0.043085404,0.0063660243,-0.034867954,0.012282462,0.026250875,0.03339431,-0.007249587,0.025489075,0.03017227,-0.0067687794,0.010178146,-0.030022409,-0.03129624,0.0032345273,-0.041361988,0.013250322,0.06299211,0.0044833794,-0.005760331,-0.011027365,-0.028298993,-0.0052389354,-0.028274015,0.021105602,-0.0022276402,0.004773738,-0.01742149,0.03356915,0.022029754,0.07762866,0.02620092,-0.026175942,-0.013874749,0.011220938,-0.030971536,-0.012201287,0.034643162,0.0061224983,0.016722132,0.028249038,0.023690727,-0.013512582,-0.0015634069,-0.01352507,0.025251793,0.028274015,0.005067218,0.0015938476,-0.0204562,0.016297521,0.02754968,0.061893117,-0.017396512,0.009216529,0.012569698,0.021879891,0.023715705,0.02255427,-0.034967862,0.01648485,-0.0064877872,0.008086318,0.016160147,-0.017608818,0.0461326,0.020493666,-0.005395042,0.015623142,0.04503361,-0.041611757,-0.0140371,0.0014876953,-0.04151185,0.048030857,0.015610653,0.051028103,-0.006793756,0.031645916,0.04116217,0.007262076,0.039538663,-0.032769885,-0.022591738,0.02434013,0.0004987604,-0.007998899,0.014986227,0.01919486,-0.04370983,0.04166171,0.023728192,-0.045333337,-0.013962168,-0.023928009,0.0024415061,0.011732967,0.014186962,0.050903216,0.050153907,0.02645069,-0.049654365,-0.023428468,0.00041875578,0.0038776863,-0.059445366,0.017309092,-0.010234344,0.005957025,0.047381453,0.03509275,-0.06439082,0.013375208,0.054549865,0.014736457,0.0004429523,-0.014024611,0.041037284,0.03649146,-0.008735722,0.01792103,-0.03659137,-0.016921949,-0.00803012,0.0048611574,-0.0056479345,-0.0051327827,0.03389385,-0.020693481,0.026900278,-0.02932305,0.033444263,-0.030122316,-0.012507255,-0.036066853,-0.042485952,0.025139395,-0.0028801656,-0.013262811,0.036841143,-0.027224978,-0.0042898073,-0.040337928,-0.012195042,0.018145824,0.021342885,0.0057696975,-0.00035572777,0.026026081,-0.041461896,0.017970985,0.011670524,-0.021093115,-0.0050047752,0.000164107,-0.022829019,-0.02442755,-0.0018920111,-0.0017265383,0.020393757,0.029672729,-0.021592656,0.034468323,-0.01504867,-0.01564812,-0.029697707,-0.009185309,0.0018233242,-0.009965841,0.015610653,0.0028645548,0.025926173,-0.02612599,-0.013824794,0.004227365,-0.013687421,0.034168597,0.03644151,0.01504867,0.012863178,0.04353499,0.033344354,-0.048080813,-0.002318182,-0.035292566,0.034393393,0.031396147,0.013812306,0.005373187,0.0054075303,0.005466851,0.027349865,0.023203675,0.0189326,0.051852345,-0.041911483,0.048405513,-0.035867035,0.010708908,0.046282463,0.010309275,-0.021405328,-0.001543113,-0.056747846,-0.0013120754,-0.011302113,0.030496972,-0.042236183,0.023503399,-0.075280815,-0.09026704,-0.010577778,0.061493486,0.004230487,0.009029202,-0.04343508,-0.013699909,-0.0044396697,-0.018033426,0.03162094,-0.010852526,-0.032994676,-0.012463545,0.0014041782,-0.015585676,0.0046956846,0.0329697,-0.05240184,0.007917724,0.00659394,-0.009241506,-0.030022409,0.018620387,0.030247202,-0.03719082,-0.040262997,0.019244812,0.012288706,-0.009666116,-0.014723968,0.0038402206,0.020368781,0.0120576685,0.024552435,0.018158311,0.010352985,-0.06394123,0.017309092,-0.0045083566,0.021829937,-0.0034218552,0.032744907,0.0363416,0.014761434,-0.0439596,-0.016584758,0.00023611113,-0.033294402,0.026525622,0.018720295,0.018957578,-0.00032723832,-0.03339431,-0.038589533,0.03212048,0.027624613,0.016160147,-0.023865566,-0.024327641,-0.0064440775,-0.008548394,0.019669423,0.03516768,-0.01254472,0.014499174,-0.023016347,-0.018058404,-0.045583107,0.017096788,-0.010690175,0.00012566576,-0.07682939,-0.0059601474,-0.0014283748,0.033369333,-0.0005733012,-0.00071184576,-0.026750416,-0.0039057855,0.048730213,-0.012800735,0.0027053263,-0.0015704317,-0.001956015,-0.0009225896,0.0145116635,-0.052301932,0.006643894,-0.014324335,0.0053669424,-0.0012035813,0.022816531,0.019557027,-0.024914602,0.004726906,0.013462627,-0.008585859,-0.06873683,-0.009054178,0.035817083,0.01818329,-0.025002021,0.044259325,0.0036747477,-0.017883563,0.015011204,-0.04183655,-0.0070310384,0.020143988,-0.03431846,0.004467769,0.010034528,-0.019919194,0.01928228,-0.00659394,0.010352985,-0.022779064,0.030322133,0.008211204,0.01538586,0.029572822,-0.029722683,0.0143493125,-0.037140865,-0.015398349,0.021580167,0.0008086318,-0.025976127,0.006350414,-0.015910378,0.024577413,-0.00048158865,0.01579798,-0.00064472,-0.057197433,-0.0014955006,0.018907623,0.04623251,-0.030347109,-0.017009368,-0.0021214879,0.011614326,0.013162903,0.013225345,0.01529844,0.008985492,-0.029198166,0.011464464,-0.0029972454,-0.024452528,-0.02375317,-0.08192471,0.021667587,0.016522314,-0.055798717,0.000021001208,-0.031121397,-0.0049111117,-0.013762352,0.03406869,0.020668505,0.031546008,0.023503399,-0.004342884,0.011408266,-0.0026241508,-0.022679158,-0.009385125,-0.038439672,0.0068499544,0.0032345273,-0.008823141,-0.04083747,-0.0034468323,-0.010059505,-0.048030857,0.024240222,-0.02240441,-0.016847016,0.01885767,0.034218553,0.022379432,-0.015548211,-0.028124154,0.0073682284,-0.008042608,-0.014274381,-0.005569881,0.024689808,0.0016375575,0.025976127,-0.0042679524,0.021954823,0.034118645,0.028473832,0.008392287,-0.030571904,-0.028673647,-0.00027513778,-0.028498808,-0.01386226,-0.0280742,0.0011169423,-0.02173003,-0.034718093,-0.029098257,0.015885402,0.009135354,0.010871259,-0.007880257,0.053201105,-0.0067750234,0.023790635,-0.034368414,0.0009873738,-0.010234344,-0.006693848,-0.031970616,-0.026500644,-0.016609736,-0.017009368,-0.014324335,0.01742149,-0.023278605,0.031246284,-0.027349865,-0.028423877,0.04183655,-0.03746557,0.021068137,-0.025876218,-0.009416346,0.027175024,0.028323969,0.022741599,-0.0073932055,-0.0037215797,0.04370983,0.0007910699,0.0115456395,0.012269974,0.013125437,0.014898808,0.023528377,0.009772269,-0.012707071,-0.016634712,-0.035367496,0.011583105,0.045458224,0.00030206612,-0.00048041786,-0.029348029,-0.0033281913,0.048730213,-0.03212048,0.029547844,-0.013450139,0.030796697,-0.0047862264,-0.0085671265,0.011601837,0.012525988,-0.014786411,-0.021954823,0.039164007,0.0032470159,0.018820204,0.013362719,-0.04927971,-0.0023759415,0.018120846,-0.008086318,-0.027574658,-0.006194307,-0.013899726,-0.011551883,0.025051976,0.008754455,-0.016859505,-0.06449073,0.011864096,-0.058346376,-0.0028395778,-0.00701855,0.0063941237,0.0090791555,-0.040862445,0.017046833,-0.03371901,0.015960332,0.024027918,-0.016010286,-0.020281361,-0.000057222802,0.0044146925,-0.009166576,0.0351427,-0.00015757003,-0.008623324,-0.021093115,0.0053232326,0.023003858,-0.023890544,-0.020318827,0.022079708,-0.00722461,0.015161066,-0.010796328,-0.008642058,-0.01411203,-0.002892654,0.019656934,-0.03729073,-0.04715666,-0.022978881,-0.012269974,-0.009066667,-0.030621856,0.052202024,0.003393756,0.009260239,-0.03779027,-0.007449404,-0.0032688708,-0.04118715,-0.0034780535,-0.026076036,-0.012825713,0.030996513,0.009878421,0.017721213,0.027025163,0.017371535,-0.029697707,-0.011146006,-0.031895686,-0.0044865017,-0.018045915,-0.027000185,-0.007262076,-0.017209183,-0.0047862264,0.006625161,0.02450248,-0.028323969,0.00147989,-0.0442843,0.0106027555,-0.023415979,-0.0019716255,0.013112948,0.0056479345,0.0014236915,-0.022779064,-0.0041930215,0.0012902205,-0.04151185,-0.030946558,-0.032919746,-0.059045736,0.01310046,0.007836548,-0.0043460056,-0.022129662,-0.009141599,-0.004021304,-0.105203316,-0.011146006,0.041287057,-0.02104316,-0.019831773,0.014586594,0.0034686872,0.04648228,-0.004558311,-0.005741598,0.035392474,-0.030996513,0.005573003,-0.0072995415,0.053051244,0.018832693,0.019482095,0.0069748396,0.022117173,0.018395593,0.01698439,-0.0011067953,-0.02205473,0.01818329,0.026026081,-0.010671442,0.030621856,-0.027924336,0.032994676,-0.01767126,0.020206429,0.013974656,-0.020531131,-0.02450248,-0.021917356,0.010871259,0.005185859,0.019881727,0.010765106,-0.033244446,0.033419285,-0.008379798,-0.00811754,-0.004274197,0.006981084,-0.021168046,0.021605143,0.015535722,0.004973554,0.010559046,0.007867769,0.01564812,0.02114307,0.028373923,-0.022841508,-0.020643529,-0.03804004,0.017608818,-0.044509094,-0.024827182,0.033594124,0.04328522,0.020606061,-0.030996513,0.023278605,-0.021505237,-0.043559965,-0.018782739,0.008261157,-0.017533885,0.0036903585,0.011951516,-0.009416346,0.0019903583,0.0035873281,0.024964556,-0.002967585,0.0005100781,-0.016110195,-0.0028458221,-0.011314602,0.015435814,0.03769036,-0.0006837466,0.014474197,0.00621304,-0.021392839,-0.0013003674,-0.007861525,-0.017284116,0.04775611,0.033519194,0.037090912,-0.004708173,0.010352985,-0.0018045915,0.0047924705,-0.011383289,0.026550598,-0.03399376,-0.0025710745,0.0039619836,0.0016235079,-0.035392474,0.0026382003,-0.0058633615,0.018820204,0.012607164,0.0002484045,-0.028099176,0.0030175392,0.014898808,-0.0076367315,-0.007961433,-0.03983839,-0.00014781338,0.042635817,0.016010286,0.008798164,0.010303031,0.0006400368,0.014886319,-0.0031190084,0.030896604,0.0026928377,0.0133252535,-0.012613407,0.0043865936,-0.009747292,0.022841508,-0.022754088,-0.00085936644,0.00060881546,0.021205511,-0.00482057,-0.0054918276,0.014087053,-0.0061006434,-0.043210287,0.004564555,-0.016160147,0.0008437558,-0.028698625,0.03771534,-0.005757209,0.030247202,-0.004948577,0.017758679,-0.017059322,-0.019919194,0.019844262,0.0031642795,-0.017783657,0.037890177,-0.012494767,0.0048549133,-0.03921396,0.00088356296,-0.04158678,0.012813224,0.01377484,0.01162057,0.023216164,-0.048130766,-0.019069973,0.012813224,-0.017021855,-0.024027918,-0.025726356,-0.037215795,-0.030721765,0.0031190084,0.042061344,0.03386887,0.004920478,0.040737562,0.01622259,-0.011851608,0.022766577,0.05764702,-0.0043709828,0.01808338,-0.022616714,-0.013412673,0.06269238,-0.0029020205,0.017533885,-0.027699543,0.007555556,-0.030921582,0.011558128,0.052451793,0.0059382925,0.007817815,-0.037215795,-0.04021304,0.016547292,-0.0068999087,-0.0077990824,-0.00006122303,0.062792294,0.002700643,0.00048002758,0.0060600555,-0.027424796,-0.004180533,-0.03286979,0.038264833,-0.01928228,0.029048303,0.005441874,0.03017227,-0.0072745644,0.009522499,0.035617266,-0.002363453,-0.021592656,-0.052301932,0.019719377,-0.01951956,-0.014586594,0.01238237,-0.004445914,0.022192104,-0.005257668,-0.0125572095,-0.059845,0.0025117542,-0.023515888,0.01767126,0.0053169886,0.014324335,-0.016659688,0.012369881,0.012244997,-0.014087053,0.018670341,0.016809551,0.012744538,0.019032508,0.035217635,0.034293484,-0.037965108,-0.0143368235,-0.0038558312,0.020730948,0.01208889,0.053800557,0.0283989,0.0028348947,-0.016359964,0.012326172,-0.02560147,-0.023728192,0.023615796,0.025139395,0.018070891,0.007674197,0.0086483015,0.016959414,0.002297888,0.04368485,-0.02249183,-0.014186962,0.002010652,0.0037809003,0.0002464532,0.008236181,0.020418735,0.008492195,0.037240773,-0.00764922,0.0046707075,0.02450248,-0.012725804,-0.01809587,-0.053151153,0.0101843905,0.013874749,0.016522314,-0.02662553,-0.016334988,-0.030871628,0.022966392,-0.025126908,-0.042460978,0.011764188,-0.019094951,0.0062380168,0.008579615,0.027749497,0.017471444,-0.0023572086,-0.045458224,0.006000735,-0.018620387,-0.0021043161,-0.015835447,0.02366575,0.032495137,-0.02680037,-0.008273646,-0.014424244,0.010546558,0.022341967,0.001003765,0.03501782,-0.023865566,0.033169515,0.019644447,0.005635446,-0.0050921952,0.014599083,-0.014611571,0.014386778,0.013537559,-0.017708724,-0.03739064,-0.019344721,0.00091400376,-0.005804041,-0.015573188,0.010964923,0.0083236005,-0.018570432,-0.018720295,0.03399376,0.0037871446,0.025314236,-0.011121029,0.01885767,-0.039763454,-0.008336089,-0.009154087,-0.022129662,-0.0038558312,-0.03779027,0.017783657,0.022079708,-0.015872912,-0.0051546376,0.02316621,-0.03846465,0.025564006,0.007212122,-0.00010927457,-0.00313618,-0.02442755,-0.02882351,0.0059414147,0.08682021,0.00008190714,-0.0055792476,0.0025710745,0.027274933,0.008304868,-0.008941782,0.013562536,-0.0021168045,0.014499174,-0.01824573,0.01809587,-0.0010045455,0.0110336095,0.01538586,-0.010577778,-0.026500644,0.018945089,0.026675483,0.002964463,0.016422408,0.026076036,0.0076304874,0.0098472,0.005042241,-0.016971903,0.02797429,-0.0042086323,0.03119633,0.011639303,-0.0024680442,0.025176862,-0.017858587,0.0031408635,-0.035592288,0.0061849407,0.013013041,-0.011139762,0.01614766,-0.001695317,0.018870158,-0.022516806,0.01496125,-0.010658954,-0.010740129,-0.0121326,0.0014650598,-0.049354643,-0.0032626265,-0.020143988,-0.03254509,0.012488523,0.019619469,-0.022441875,-0.027799452,-0.009572453,-0.018120846,0.034368414,0.004951699,-0.019719377,-0.011951516,0.04236107,-0.01572305,0.0024774107,0.004040037,0.00917282,0.0015103307,-0.009678605,0.011683012,0.042136274,-0.00046910014,0.011614326,0.011014877,0.013425162,-0.000034733705,0.011046099,0.0036716256,0.00306281,-0.024315154,0.0029379248,0.0115456395,-0.0067687794,0.010702664,0.02999743,-0.030022409,0.0586461,0.026550598,-0.031720847,0.002936364,0.0014939395,-0.0067000925,-0.015285952,-0.0018045915,0.02492709,0.0003258724,0.012332416,-0.03506777,0.0033281913,0.01123967,-0.01758384,0.012051424,0.0101843905,0.03366906,0.011308357,0.0033750231,0.018657852,-0.0012028008,0.019119928,0.017733702,0.011083564,0.0044303034,-0.012669606,0.010877503,0.021655098,-0.016871994,-0.0110336095,0.04608265,0.0053638206,-0.02612599,-0.02180496,0.037315704,0.04608265,0.035692196,0.017721213,-0.010421672,0.004233609,-0.026675483,-0.010633977,0.009859689,0.008204959,-0.007024794,0.005373187,0.02874858,-0.03349422,-0.008155005,0.006500276,0.017121764,-0.007293297,-0.0360169,-0.014761434,-0.038514603,0.017221672,0.016197614,0.0069373744,0.0041961437,-0.034768045,-0.0045083566,-0.0048455466,-0.003874564,-0.005548026,-0.02450248,-0.021580167,-0.00655023,-0.02442755,0.006309826,-0.029772637,0.036391556,0.011158495,0.0153608825,-0.022716623,-0.014536641,-0.025626449,-0.010640221,-0.0064690546,-0.0060132234,0.0073682284,0.0073744725,0.0020200184,0.024477504,0.008935538,0.01757135,0.010477871,-0.054449957,0.0010693298,0.021193022,-0.011258403,-0.012788247,-0.0022604226,-0.029747661,-0.042460978,-0.024964556,-0.008635813,-0.01563563,0.0070310384,0.0040712585,-0.020019101,0.016597247,-0.005035997,0.00033114097,-0.0031158864,-0.0069685956,-0.01953205,-0.0046082647,-0.023515888,0.031795777,-0.04520845,0.038139947,0.01179541,0.0052857674,0.0040275487,-0.0028052344,-0.00591956,0.004751883,0.0049829204,-0.011164739,-0.0009826906,-0.019794308,0.047281545,-0.0046519744,-0.0018779616,-0.022304501,0.020231407,0.04445914,0.03169587,0.013200369,-0.009859689,-0.0057072546,0.020231407,-0.015161066,0.019482095,0.006119376,0.019107439,-0.010977412,-0.050553538,-0.0046082647,0.009784757,-0.031845734,-0.016859505,0.03726575,0.013962168,0.014211939,-0.019419653,-0.00059086323,-0.0027365475,-0.011127274,-0.027574658,-0.03669128,0.001768687,-0.014524152,-0.006425345,0.009272728,-0.017458955,-0.027649589,0.021118091,-0.016709642,-0.00053856755,0.0036404042,-0.041736644,-0.031246284,0.0038308543,0.0017905419,0.009122865,-0.00044217176,0.012157577,-0.016722132,-0.022591738,0.024015428,-0.042136274,0.027025163,0.008529661,-0.016971903,-0.0036622593,0.024977045,-0.027924336,0.031221306,0.0002552342,0.0009257117,0.014786411,-0.016946925,-0.024465015,-0.010121947,0.029397981,-0.023503399,-0.00212461,-0.0068499544,-0.031096421,0.021005696,-0.013162903,0.00040587698,-0.016285034,-0.015485768,0.009741047,0.024752252,0.013475115,0.013737375,0.015460791,-0.030022409,-0.022117173,0.007530579,0.010746374,0.038589533,-0.025464097,-0.024102848,-0.03524261,0.032994676,-0.010471626,0.011932783,-0.013000552,-0.0021136825,-0.009054178,-0.008448485,-0.023940498,0.010334252,0.0034468323,-0.011583105,0.002297888,-0.0026709829,0.008011387,-0.018158311,0.024789717,0.0018451792,-0.0015376493,-0.002987879,-0.027849406,0.029797615,-0.020531131,-0.018120846,0.0129880635,-0.0022151517,-0.0062505053,0.0204562,-0.0054356293,0.038989168,-0.011008632,0.031221306,0.0012496328,-0.036616348,-0.008979248,-0.00072940777,0.0153608825,-0.015373372,-0.020056566,0.0006419881,-0.013150414,0.015485768,0.019332232,-0.005950781,-0.0032220387,0.026750416,-0.034768045,-0.01564812,0.0073494953,-0.0005608127,-0.021367863,0.005682278,0.021018183,-0.002962902,-0.01428687,0.011464464,-0.032570068,0.047106706,0.009241506,0.02874858,-0.015061158,-0.027175024,0.0103592295,0.03399376,-0.0028083564,0.056897707,0.0005288109,-0.007580533,-0.01123967,0.0007715565,0.029847568,-0.0143493125,0.022679158,0.038164925,0.014911296,0.010402939,-0.0024774107,-0.027000185,-0.039188985,-0.0018248854,-0.0136749325,0.007318274,-0.022691645,-0.03534252,0.0072308546,-0.022841508,-0.014761434,0.012170065,0.04236107,-0.0040462813,0.013300276,0.0062005515,0.015485768,-0.016247569,0.0021776862,-0.02173003]},{"id":"class-GuildBan","type":"class","source":"main","text":"Class: GuildBan\nDescription: Represents a ban in a guild.\nProperties: client: Client, expiresAt: string | null, guildId: string, reason: string | null, user: User\nMethods: unban() -> Promise — Remove this ban (unban the user).\nRequires Ban Members permission.","meta":{"url":"/docs/classes/GuildBan"},"embedding":[-0.016625462,0.02133718,0.003732545,0.0023470898,-0.027919553,0.014415749,-0.07763226,-0.0010858579,0.03116982,-0.02264664,0.018484429,-0.034022573,0.021009814,0.01084981,0.061357547,-0.005711349,-0.033812124,0.030187726,0.0065414533,0.06879341,0.0317544,0.04929181,0.01747895,0.055090845,-0.010294459,0.0381614,0.00942928,0.014520974,-0.016941136,-0.021898378,0.089090034,-0.015643368,0.003378874,-0.024879737,0.017174968,0.02817677,0.024716053,0.015128938,-0.0059247212,-0.0025955364,-0.008341961,-0.053968452,-0.010399683,-0.022249125,0.01362072,0.066548616,-0.01296599,0.012708775,-0.010767968,0.0444281,-0.026165813,-0.031356886,0.011919592,0.037319604,-0.01070951,-0.03388227,-0.010002169,0.053781386,-0.010592595,0.00011719007,-0.0016324404,0.011346703,-0.02817677,0.03984499,-0.013725945,0.010627669,-0.039657924,0.033835504,0.0008702939,0.031777784,0.02745189,-0.0057055033,0.012837383,0.050554503,-0.06781131,0.01096088,0.016496856,0.008154895,-0.009493584,0.0014373368,-0.009692341,0.019641897,-0.047023635,0.03378874,0.053220186,0.021079965,-0.044100735,-0.021454096,0.044451483,-0.017467258,0.011475311,-0.015386153,-0.06575359,0.0117091425,0.028246919,-0.034911133,-0.0028746736,-0.000022835167,-0.005030313,0.06332173,0.06958844,0.039564393,-0.029369313,-0.012229419,0.0222842,0.009031765,-0.07445215,0.02862105,-0.06523916,0.007248795,-0.02862105,0.05307989,-0.012498327,0.039377328,-0.057662997,-0.019852346,0.040944003,0.0016002884,0.003732545,-0.03437332,-0.017654324,-0.0046620276,0.035939995,-0.04232361,0.0009908635,0.008295194,-0.00065107626,0.009873561,-0.020963049,-0.05134953,0.033952422,0.0111421,-0.0019729584,-0.001955421,-0.040242504,0.0122177275,-0.0014512205,-0.039494243,-0.035074815,-0.017899849,0.008032133,-0.011662376,0.038184784,0.028059853,-0.039774843,0.059159525,-0.008084745,0.0134570375,-0.029018564,0.0038728444,-0.04845001,0.03313401,-0.0017873541,-0.009861869,0.0038962276,-0.043095257,-0.025440933,0.033110626,-0.041551966,-0.012229419,0.05106893,-0.038441997,0.04760822,-0.024739437,-0.024856353,-0.009166218,0.0019276534,0.020273244,-0.018519502,-0.0134570375,0.032222066,0.035448946,-0.04849678,-0.023207836,-0.0022725558,-0.045176364,-0.03846538,0.011568843,-0.048964445,-0.04061664,0.003963454,-0.016952828,-0.04157535,-0.093345776,-0.03131012,0.028083237,-4.0246982e-7,0.004273282,-0.012790617,-0.04770175,0.013129673,0.029509611,0.020507077,0.044334568,0.062900834,-0.014018235,0.011083642,-0.0038406923,-0.0067402106,-0.030561857,-0.011814367,-0.008195816,0.0033847198,-0.01696452,0.017245118,-0.02192176,0.04407735,-0.04363307,0.020623991,0.022272509,-0.012404793,-0.020565534,-0.01710482,-0.0006006562,0.0126737,-0.004922166,-0.03212853,0.002195099,-0.013492113,0.0010807428,-0.0051355376,0.018016763,-0.0028805193,-0.0051706126,-0.0008330269,-0.008768704,0.025838448,-0.0018998858,-0.012825691,0.008529026,-0.030211108,0.0030719694,-0.028200151,-0.038933046,0.015923966,0.019910805,0.034069337,0.082262136,-0.0039225337,-0.055231143,-0.026376262,-0.017443875,0.012790617,0.000025461211,0.014626198,-0.032666344,0.03713254,-0.013936394,0.03292356,0.044802234,0.044474866,0.062152576,-0.01325828,-0.022272509,-0.021430712,0.011083642,0.0030602778,0.034981284,0.0378808,-0.037974335,0.014392367,-0.030819071,0.009552042,-0.021676237,-0.025604615,0.033461373,0.05256546,-0.018659802,0.00093021337,0.006576528,0.0144040575,-0.011457773,0.043305706,-0.066735685,-0.011714988,0.03895643,0.020179711,0.022985697,-0.019887421,-0.028574284,-0.011773447,0.019712046,0.022120517,0.04040619,-0.01449759,0.038512148,-0.019431448,0.004740946,0.0059510274,0.0314738,-0.0041797487,-0.011405161,0.004884168,-0.0018560423,0.043212175,-0.017198352,0.07389095,-0.00848226,0.07650986,0.03984499,-0.0036711642,-0.004206055,-0.01718666,-0.045199748,0.026165813,0.044615164,0.031801168,0.02024986,-0.031123053,-0.024996653,0.010382146,-0.020775983,-0.033157393,-0.015234162,-0.026095664,-0.014193609,-0.055605274,0.022903856,0.02068245,0.05831773,0.0128724575,-0.026446411,-0.0071844915,0.028714582,-0.01995757,-0.038021103,-0.021734694,-0.0048724767,0.03334446,0.04632214,-0.0012298108,-0.052752525,-0.016917752,0.036150444,0.042884808,-0.008464722,0.0076580015,0.052331626,0.007850913,-0.017958306,0.029112097,-0.018028455,-0.007769072,0.003288264,0.04290819,-0.032876793,0.005182304,0.0442878,-0.007850913,0.00086371735,0.007377403,0.029743444,-0.029088715,-0.04587786,0.0014461054,-0.04929181,0.0021015662,-0.02380411,0.0016192873,0.02286878,0.002924363,0.016683921,-0.021489171,0.034864366,-0.0054950546,0.030024042,-0.024575755,0.021793153,0.014953563,-0.023757342,-0.03474745,-0.039517626,-0.068278976,-0.024084708,0.0035688626,0.0071611083,-0.032596197,0.016157798,0.057335634,-0.02112673,-0.013702561,-0.0016982057,0.022529723,-0.0015082171,0.0049543176,-0.016625462,-0.011183021,0.00098721,-0.023640426,0.00027073373,0.05336049,0.02462252,0.00017921039,-0.0350982,0.0036302435,-0.009815102,0.011457773,0.015199087,-0.0004994508,0.005375216,0.0575227,-0.0023061691,0.011942975,-0.027498655,-0.0048257103,0.04660274,0.03109967,0.019770505,0.014450824,-0.006167322,0.006956505,0.033975806,0.009604654,0.0028849037,0.041809183,-0.064771496,-0.012954298,-0.027288208,0.002279863,0.036314126,-0.0057639615,0.0043375855,0.037693735,-0.04262759,0.01529262,0.008868082,0.018776719,-0.00538983,-0.010358762,-0.03261958,-0.042276844,0.051536597,0.0023193222,-0.016882678,-0.028106619,0.017607559,-0.005801959,-0.005074157,-0.04989977,0.049853005,0.0023397824,-0.023488436,0.010697819,0.049198277,0.032502662,-0.038278315,0.042183314,-0.035706162,0.029112097,-0.015269237,-0.008032133,-0.009838486,0.0064362288,0.021664545,-0.07809992,-0.007079267,-0.020565534,0.017163277,-0.006781131,0.0039868373,0.002522464,0.029182248,0.0011348164,0.02876135,-0.009879407,0.04660274,-0.032900177,0.010259383,0.028808115,0.011381778,-0.04989977,0.031988233,0.06388293,0.007313099,0.002652533,0.025908597,0.017806316,-0.03030464,0.063602336,0.049198277,0.058224194,0.04318879,-0.033321075,-0.03226883,0.017385418,0.028901648,0.022903856,0.0043755835,0.0041739033,0.03341461,-0.019256074,0.008435493,-0.024599139,-0.010224309,0.034537002,-0.0016704381,0.0017668939,-0.08352483,0.016473472,-0.00037066042,-0.005042005,-0.0824492,-0.016111033,-0.030491706,-0.00455388,0.0065706824,-0.009394205,-0.008143203,0.027077759,0.026563328,-0.0506948,0.008236736,-0.025066802,-0.023406593,-0.010300305,0.016064266,-0.044638548,0.015082171,-0.04283804,0.019864038,0.03264296,0.03357829,-0.019384682,-0.029392697,-0.009417588,0.0088563915,0.009815102,-0.0077983006,0.0015213701,0.033180777,0.02417824,-0.017022977,0.013386888,0.05303312,-0.003732545,-0.022903856,-0.022599874,0.0032824182,0.023640426,-0.052331626,-0.01944314,0.003051509,0.005091694,0.010651053,-0.008295194,-0.004556803,-0.011866979,0.064397365,-0.03159072,0.011381778,0.025043419,-0.03750667,0.007470936,-0.038699213,-0.021933451,0.0011881595,0.027522039,0.0006985734,-0.03299371,-0.004206055,0.011598073,0.012521709,0.006781131,-0.002282786,-0.004650336,-0.014006543,0.010890731,0.023044154,-0.0410843,-0.015199087,0.004621107,0.049011208,-0.010656898,0.027849404,0.031637486,0.017081436,0.028831499,0.042697743,-0.031286735,0.004206055,0.016122723,-0.041832563,-0.015760284,-0.010224309,-0.034022573,-0.019127466,-0.016251331,-0.026329495,-0.026469795,0.048309714,-0.023944408,-0.017385418,-0.022541415,-0.021781461,0.025604615,-0.009522812,-0.009709878,0.013725945,-0.026960842,0.014988638,0.029252397,0.0022594028,-0.0208929,0.042767894,-0.010048935,-0.01980558,0.017221734,0.021255339,-0.03446685,-0.016298098,0.016391631,0.022751864,-0.024599139,-0.018285671,-0.0015959041,-0.043586306,0.006430383,-0.004062833,0.003732545,0.008669325,0.048169415,0.0033116473,0.004919243,0.020787675,0.011510385,0.021664545,-0.02118519,-0.025464317,-0.016870987,-0.007529394,0.009996323,-0.072768554,-0.0073890947,-0.010797198,-0.031941466,-0.029018564,0.006599911,0.01623964,0.04508283,-0.04377337,0.030678773,-0.024458839,0.004083293,-0.057475932,-0.012416485,-0.020588918,-0.030959371,-0.012229419,-0.03357829,-0.027077759,-0.0030310487,0.0037266992,0.005813651,-0.037810653,0.02679716,-0.023932716,-0.029556379,0.05920629,0.0041300594,0.017362034,-0.012007278,0.027732488,0.024154857,0.017385418,-0.0068805097,-0.028340451,0.011703297,0.032245446,0.0038991503,-0.0119955875,0.040265888,0.004062833,0.004615261,0.027522039,0.01689437,0.0028366758,-0.04360969,-0.026119046,-0.028714582,0.029836977,-0.012404793,0.007020809,0.016508548,0.0065414533,0.032315597,0.01110118,0.027709104,0.032736495,-0.011650685,0.032385748,0.0017902771,0.022377733,0.012568476,-0.031006137,-0.01008401,0.0037266992,0.022634948,0.011001801,-0.01515232,-0.026820542,0.010440604,0.026259346,-0.037226073,-0.001221042,-0.01958344,0.01733865,0.011942975,-0.0002630611,-0.023874259,-0.034443468,-0.05148983,0.0050829253,-0.05452965,0.011942975,-0.015327695,-0.006839589,-0.018554578,-0.0102476925,0.008195816,-0.013199822,0.018285671,0.035238497,-0.02316107,-0.014649581,0.00015007272,0.0029711293,-0.011790984,-0.0057698074,0.008909003,-0.0021161805,-0.014100076,0.018800102,0.0053489096,0.0006762863,0.017642632,-0.004235284,0.017584175,0.015970733,-0.022225741,-0.012977682,-0.0057522696,0.03533203,-0.00615563,-0.0513963,-0.013901318,0.001117279,0.00426159,-0.015701827,-0.021898378,0.01981727,-0.016952828,0.007254641,-0.04204301,0.0052904515,0.013129673,-0.018624727,-0.0020825672,0.0020328779,-0.027638955,0.029532995,-0.043352474,0.021571012,0.029369313,0.0253474,-0.0028805193,-0.02243619,-0.021383947,-0.0070558838,0.019641897,-0.019256074,-0.005658737,0.010966726,-0.025885215,0.006313467,0.030889222,-0.006547299,-0.0042820503,-0.014076693,0.01637994,-0.00681036,0.02972006,0.020530459,0.0033408762,0.0059247212,0.0066875983,-0.005837034,-0.016555313,-0.02665686,-0.06472473,-0.005535975,-0.014778189,0.0039020733,-0.022026984,0.022541415,-0.006196551,-0.009055149,-0.0070266547,-0.065379456,0.025885215,0.031731017,0.023488436,-0.005804882,-0.00990279,0.009645575,0.025464317,-0.018402588,-0.032198682,0.019489907,-0.02948623,0.0030632005,0.03516835,0.028317068,-0.006576528,-0.015386153,-0.00021812151,0.0010705126,0.0065648365,-0.006757748,-0.020951357,-0.041318133,0.010919959,0.030351408,0.015982425,0.03561263,-0.004264513,0.025277251,0.0013481883,0.016204566,-0.025136951,-0.04929181,-0.009546196,-0.009815102,-0.009096069,0.01172668,-0.0004592609,0.019185925,-0.05340725,0.018554578,0.01515232,-0.03051509,0.009575425,0.0041855946,0.001431491,0.031731017,0.03904996,-0.02352351,-0.01733865,-0.033975806,0.025277251,0.023009079,0.01739711,-0.044521634,-0.023254603,-0.03713254,0.017701091,-0.052518692,-0.010879039,0.029462846,0.017782932,-0.017034668,0.011036876,-0.0022418653,-0.0043931208,-0.03254943,-0.0253474,-0.006751902,-0.01398316,-0.0043112794,0.020846132,0.0067635938,0.012626934,0.0034314862,0.03837185,-0.011019338,0.02176977,-0.018309055,0.003647781,-0.009189602,0.03126335,0.008710246,0.02302077,0.02417824,-0.014906797,-0.029649911,0.021652853,-0.013702561,-0.0076696933,0.017899849,0.04674304,0.0066174488,-0.004141751,-0.0077223056,-0.009996323,-0.0066174488,0.002282786,0.00877455,0.007564469,-0.00022159246,-0.000784799,-0.014146843,-0.0027343743,-0.014906797,-0.056166474,0.036898706,0.02133718,-0.0054365965,-0.020436926,0.0020971817,0.011592227,-0.0023558585,-0.027147908,-0.011422698,0.0160175,0.032970328,0.02097474,0.003907919,0.0089323865,-0.005983179,-0.0003142119,0.016730687,-0.00020953549,-0.0056382767,0.03563601,0.0128023075,0.011884517,-0.021664545,0.0034811755,-0.044965915,0.004436964,-0.0032911869,0.002293016,0.0068278974,0.01325828,0.009306518,0.01878841,-0.018928709,0.007751534,0.0057639615,0.016368248,-0.017350342,0.009218831,0.021372255,0.012615242,0.023207836,-0.02679716,0.012124195,0.022658331,-0.02417824,-0.024786204,-0.015900584,-0.0055885874,-0.0020679526,0.02403794,0.00010449372,0.03954101,-0.05490378,0.03699224,-0.011983896,0.0035747082,0.012065737,-0.030468324,-0.059580423,-0.0040277583,-0.031660866,-0.030117575,-0.060796347,0.0038903817,0.015491378,0.006634986,0.021115039,0.03853553,-0.021161806,0.034233022,0.003820232,-0.061217245,0.0012999604,0.041247983,0.0043317396,-0.030865839,-0.05831773,-0.043282323,0.04604154,0.018309055,0.0058808774,-0.027545422,0.016929444,0.0013174978,0.02380411,0.043025106,0.055044077,-0.026539944,0.025955364,-0.056166474,0.007085113,0.031918082,0.017291885,-0.016122723,0.021255339,0.021173498,-0.018659802,-0.0008871006,-0.0110485675,-0.0047906353,-0.004124214,0.05256546,-0.031123053,-0.01646178,0.005503823,0.04042957,0.031333502,-0.0022681714,0.034396704,-0.008406265,-0.030959371,-0.020530459,0.005477517,-0.0125801675,-0.03591661,0.01296599,0.022810321,0.042861424,-0.017139893,-0.021500863,-0.014228684,0.001657285,-0.029977277,0.015678443,0.019057317,0.01784139,-0.016929444,0.0031596564,-0.0028849037,0.0036273205,0.009961247,0.023032462,0.010481524,0.017221734,0.009487738,-0.0034490237,-0.02462252,0.01296599,-0.0122878775,0.011785138,0.027755871,0.047374386,-0.018671494,0.011598073,0.028597666,0.005991948,-0.028059853,-0.01551476,0.017969998,-0.031356886,-0.018121988,0.022927238,0.030959371,0.0024859277,0.005986102,0.018110298,-0.047374386,-0.025627999,0.02817677,0.018952092,0.025791682,-0.0126503175,-0.004764329,-0.006950659,0.027545422,0.007856759,0.021454096,-0.01718666,-0.006523916,-0.012755541,-0.037389755,0.020144636,0.002976975,0.028270302,0.0046415674,-0.027989704,-0.010639361,0.032736495,-0.024435455,-0.025160335,0.0012700006,-0.025861831,-0.023757342,-0.0058165737,-0.007617081,0.016333172,-0.014018235,-0.015561527,-0.000109974164,-0.010469832,0.012498327,0.019267766,0.023874259,0.050507735,-0.044685315,-0.023546893,-0.020775983,-0.0075995433,0.012790617,0.01981727,0.0036068603,0.006003639,-0.024926502,0.021360563,0.009522812,0.0077164597,-0.008260119,-0.007710614,0.010142468,0.029182248,-0.024154857,-0.049104743,-0.00151114,0.0026715319,0.0060620974,-0.041996248,-0.024739437,0.008447185,0.0023383212,-0.005053696,0.012545093,0.0057084262,0.00021282375,-0.017362034,0.027007608,-0.021781461,-0.00881547,0.002455237,0.018145371,-0.029626528,-0.03205838,0.022634948,0.025066802,-0.0032181144,-0.0109784175,-0.016111033,-0.03247928,0.006751902,-0.023488436,0.022997389,-0.008768704,-0.032245446,0.0013554955,-0.008026287,0.06855957,-0.013842861,-0.019548364,0.01856627,-0.0012765771,0.003978069,0.0031216587,-0.027147908,-0.01827398,0.0008396034,0.006822052,-0.008207507,-0.01369087,0.00067774777,0.008078899,0.007979521,-0.027755871,0.019209309,0.018192139,-0.006634986,0.01565506,0.037179306,0.016952828,-0.004743869,0.0046620276,-0.045901243,0.031356886,0.007850913,0.027007608,0.015923966,0.034537002,0.038769364,-0.017934922,-0.02293893,-0.027802637,0.0037822344,0.027288208,-0.02899518,0.01637994,-0.009242214,0.03131012,-0.013433655,0.038418617,0.027498655,0.010814735,0.027872788,-0.018870251,-0.024692671,0.018589653,-0.048543546,-0.039494243,0.0137493275,0.022307582,-0.0020226478,-0.023733959,0.011679914,-0.0076580015,0.03947086,-0.003375951,-0.0070675756,-0.016917752,0.060843114,0.0054921317,-0.014906797,0.017619248,-0.0027489888,-0.04807588,-0.014906797,-0.02782602,0.0284106,0.022950621,0.006494687,0.000111526955,-0.0083478065,-0.0007018617,0.010995955,0.018765027,-0.02476282,-0.008727783,0.000585311,0.024856353,-0.035355415,0.019653589,0.03888628,-0.008768704,0.05200426,-0.015362769,-0.0046094153,-0.010855655,0.018145371,-0.00008494682,0.014883414,-0.006132247,-0.0042528217,0.010119084,0.00811982,-0.034045953,-0.012638626,-0.009458508,-0.017818006,-0.007874296,0.018402588,0.014041618,-0.00852318,0.008809624,0.015573218,0.013585646,0.01966528,-0.0018852714,-0.03205838,-0.00038436154,0.0065297615,-0.029065331,-0.004878322,0.010808889,-0.045924626,0.01806353,-0.031286735,0.016625462,-0.031871315,0.043095257,0.045386814,0.025604615,0.0016865141,0.011568843,-0.0044808076,-0.00340518,-0.009750799,0.007763226,-0.014661273,-0.035215117,0.01274385,-0.01660208,-0.008178278,-0.014661273,0.010148314,-0.010808889,-0.0030105885,-0.04674304,0.0011048567,-0.019501599,-0.009072686,0.017818006,0.009698187,0.015865508,-0.00090683013,-0.00018542155,-0.0039546858,-0.016391631,-0.023090921,-0.031006137,0.015748592,-0.039143495,-0.0108322725,0.0043668146,-0.0043405085,0.038021103,0.0020664912,-0.012416485,-0.024716053,0.002503465,-0.0072195665,0.00031110633,-0.025581233,0.030702155,0.014216992,0.017081436,-0.037179306,0.011346703,0.012322952,0.0135271875,0.01208912,-0.013153056,0.010317842,0.019560056,-0.041996248,0.010504907,0.011177175,0.003411026,-0.0011903516,-0.031941466,-0.04360969,-0.003226883,-0.0122878775,-0.020226477,-0.05223809,-0.0075352397,-0.037039004,-0.0064362288,-0.022307582,-0.00006617631,-0.027919553,-0.0014994484,-0.015982425,-0.010662744,-0.042580828,0.05976749,-0.001806353,0.027428506,-0.00818997,-0.014287142,-0.015105554,-0.012825691,0.016590388,-0.014953563,-0.036103677,0.010808889,0.028737966,0.0029199785,-0.030468324,-0.010528291,0.00888562,-0.0034256403,0.00059956015,0.014041618,-0.0068571265,0.0034256403,-0.011136254,-0.033695206,-0.002947746,0.0028951338,0.02438869,-0.020366777,-0.050507735,-0.013609028,-0.019501599,-0.0021614856,-0.038395233,0.0039868373,0.01987573,0.012989374,-0.014556048,-0.00050858484,-0.012346336,0.022763556,-0.043796755,-0.0034227176,0.008113974,-0.007079267,-0.011259016,0.0016455934,0.005652891,-0.022471266,0.0016923599,0.013468729,-0.002506388,0.00048118262,-0.014298833,-0.026563328,0.011206403,0.006348542,0.012755541,0.0058165737,0.020004338,-0.040032055,-0.00906684,-0.006839589,-0.03708577,0.012708775,-0.0034168717,-0.01456774,0.010089856,0.023733959,-0.031614102,0.01725681,-0.006453766,-0.006348542,0.03750667,0.000103306294,-0.00039897603,-0.036314126,0.017210044,-0.008622559,0.012732158,-0.034490235,0.0031362732,0.011405161,-0.014754806,0.022342658,0.001543292,-0.009394205,-0.015888892,-0.008897312,-0.013071215,-0.006775285,0.017537408,-0.022670023,0.00081183587,0.017373726,0.008359497,0.01981727,-0.010949189,-0.028200151,-0.00038911123,0.074124776,0.0027884478,0.03584646,-0.00710265,-0.020904591,0.008172432,-0.039657924,-0.026843926,0.020144636,-0.0284106,-0.030842455,-0.013386888,0.006348542,0.030982755,-0.017408801,0.014076693,0.008581638,0.0062725465,-0.008663479,-0.026259346,0.015935658,0.010919959,0.022295892,0.017946614,0.0014994484,0.015701827,0.04391367,0.03044494,0.022097135,-0.022518031,0.048262946,0.026025513,-0.0102476925,0.03420964,-0.026235962,0.046555974,-0.03271311,-0.0005476786,-0.008581638,-0.020495385,0.015432919,0.026095664,-0.025160335,-0.036524575,0.016344864,-0.00016770147,-0.016356556,0.0053226035,-0.000024228111,-0.015748592,0.015012021,0.059112757,0.020425234,0.029065331,0.018168755,-0.024552371,0.010469832,-0.0031567335,0.008511488,-0.026259346,-0.011083642,0.025815064,0.053547554,-0.011954666,0.031286735,0.0013518418,-0.03226883,-0.025440933,-0.038418617,-0.0013321122,-0.0055944333,0.019033933,0.029953893,-0.0013028833,-0.004208978,0.013679178,-0.025440933,-0.05018037,-0.035729546,-0.002053338,0.0065531447,0.005860417,-0.031123053,-0.0014358753,-0.027171291,-0.036080293,-0.021103349,0.026750393,-0.021945143,-0.0037822344,-0.0026744548,0.017619248,0.012825691,-0.03030464,-0.014135151]},{"id":"class-GuildChannel","type":"class","source":"main","text":"Class: GuildChannel\nProperties: guildId: string, name: string | null, parentId: string | null, permissionOverwrites: APIChannelOverwrite[], position: number\nMethods: createInvite(options: { max_uses?: number; max_age?: number; unique?: boolean; temporary?: boolean; }) -> Promise — Create an invite for this channel.; createWebhook(options: { name: string; avatar?: string | null; }) -> Promise — Create a webhook in this channel.; delete(options: { silent?: boolean; }) -> Promise — Delete this channel. Requires Manage Channel permission.; deletePermission(overwriteId: string) -> Promise — Remove a permission overwrite. DELETE /channels/{id}/permissions/{overwriteId}.; edit(options: { name?: string | null; topic?: string | null; parent_id?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; rate_limit_per_user?: number; rtc_region?: string | null; permission_overwrites?: Array<{ id: string; type: number; allow?: string; deny?: string; }>; }) -> Promise — Edit this channel. PATCH /channels/{id}.\nRequires Manage Channel permission.; editPermission(overwriteId: string, options: { type: 0 | 1; allow?: string; deny?: string; }) -> Promise — Set or update a permission overwrite. PUT /channels/{id}/permissions/{overwriteId}.; fetchInvites() -> Promise — Fetch invites for this channel.\nRequires Manage Channel permission.; fetchWebhooks() -> Promise — Fetch all webhooks in this channel.","meta":{"url":"/docs/classes/GuildChannel"},"embedding":[-0.028924007,0.0032528262,-0.0075852424,-0.0064156866,0.0069611045,-0.004638862,-0.030903256,0.0019806535,0.021108227,0.030206019,0.060502004,0.0033203005,-0.0068374015,0.015935194,0.049661126,-0.020489713,-0.05357464,-0.005375457,0.01634004,0.022019131,-0.021456845,0.046872187,0.011245726,0.042846218,-0.06176153,-0.011796767,0.0110714175,0.038033046,-0.034209497,0.013371169,0.06086187,-0.017385893,-0.024718106,0.0051055597,-0.0252579,0.03623373,0.0064550466,-0.0075290133,-0.030206019,-0.024223294,-0.02849667,0.024290768,0.017880704,-0.007849516,0.0015898645,0.028789058,-0.061356682,0.03654861,0.024448209,-0.0021591794,-0.028361721,0.022142835,0.0003630261,0.09158519,0.015440382,-0.010464148,-0.009513884,-0.00027411457,-0.05906255,0.021029508,-0.00036618896,-0.04509536,-0.0022477396,-0.010244857,0.010059302,0.020748364,-0.05685839,0.033534754,0.022705121,0.060232107,0.04475799,-0.011673064,-0.0025654312,-0.033017453,-0.019353895,0.023975888,-0.015923947,0.044690516,0.017948179,-0.01789195,-0.021940412,0.00856362,-0.071972646,-0.014799375,-0.00011078797,0.03531158,-0.028451687,-0.04178912,0.015575331,-0.016295057,-0.03713339,0.00029238887,-0.08650213,0.0064494237,0.015800245,-0.043453485,0.027237149,-0.009176512,-0.015159239,0.06751934,0.055868767,-0.033242367,-0.089740895,0.0062076407,0.026697353,-0.014675672,-0.03423199,0.008760421,-0.010756537,-0.041474238,-0.06207641,0.0017332475,-0.02820428,0.006151412,0.008237494,-0.030295985,0.0188141,-0.040237207,0.03717837,-0.013719786,-0.07435674,-0.034951717,0.06823906,-0.017217206,-0.00019961163,0.0020354765,-0.006691207,0.0038207355,-0.03405206,0.007894499,0.049616143,0.022862561,0.024673123,-0.00785514,-0.018240567,0.024268277,-0.040214717,0.015800245,-0.022806332,-0.034591854,0.025662746,-0.029508784,0.034321956,0.006741813,-0.04957116,-0.026809812,-0.020017393,0.0024909284,-0.04619744,0.019713758,-0.057263236,0.015013044,-0.0038151126,-0.017071012,-0.0151030095,0.003505855,-0.013686049,0.024695614,-0.027956875,-0.027462063,0.025617763,-0.012010436,-0.014315809,-0.02246896,-0.015136747,-0.043723382,0.028249264,0.01891531,-0.0436784,0.024853054,0.02415582,-0.009626341,-0.04988604,0.01626132,0.013933455,-0.0033287348,-0.026292507,-0.070758104,-0.0022449282,-0.025302883,0.028069332,0.029261379,-0.022401486,-0.056003716,-0.070128344,0.04754693,0.005693149,-0.014776884,0.0154628735,0.007146659,-0.021861691,0.013607329,0.010312331,0.015901456,0.034209497,-0.014574461,0.029531276,-0.0053529656,0.050785698,-0.059467398,0.0030728946,-0.026382472,0.06994841,-0.027821926,0.0038910212,-0.032612607,0.0048075477,0.003373718,-0.04140676,-0.012055418,0.028114315,-0.035648953,0.040956933,0.008670455,-0.03205032,-0.0028760943,-0.033962093,0.000820938,-0.043430995,-0.0083836885,-0.06589995,0.006601241,0.011875487,-0.009598227,0.033354823,0.036728542,0.0012117269,-0.027507046,0.017846968,0.013449889,-0.031982843,0.02160304,-0.03438943,-0.03580639,-0.00092988095,-0.025212917,0.040821984,0.029396327,0.00073729793,-0.046962153,-0.02160304,-0.017453367,-0.031577997,-0.00012414227,0.019466352,0.0032556376,0.008344329,-0.025505306,0.024673123,0.03825796,0.081509024,-0.00012291227,-0.010942091,0.013483626,0.007298476,-0.0078832535,0.004234016,0.016823607,0.011144514,0.026832303,0.053484675,0.0074727847,-0.012404036,-0.009795027,-0.017981917,-0.016857343,0.031825405,0.010346068,-0.030093562,-0.0073603275,0.061536614,-0.032612607,0.06320098,-0.03983236,-0.024223294,0.012257841,-0.0041524842,0.013820997,0.029801173,-0.03144305,-0.035716426,-0.014923078,0.0025330998,0.028249264,0.013663557,0.0591975,-0.020950787,0.006550635,0.011897978,0.024718106,-0.033557247,0.009969336,-0.0076920767,-0.040327173,0.018409254,0.057353202,0.05514904,-0.014034666,0.09221495,0.05222515,-0.012426527,0.023413602,-0.016834851,-0.053214774,0.00432117,0.017194714,0.030790798,-0.028001858,0.03378216,-0.07066814,0.029643733,0.06846398,-0.046827205,-0.017397137,-0.03846038,0.0055413316,0.006477538,-0.0019426992,0.03330984,0.03807803,0.0023320825,-0.004832851,-0.054159418,-0.020152342,-0.0039444384,-0.030385952,0.0076976996,-0.03254513,0.038640313,0.028316738,0.017318418,-0.061221734,0.001765579,0.0715678,0.028721584,0.022603909,-0.00062027207,0.054699212,0.005305171,-0.013090025,0.05033587,0.0029295117,-0.014282072,0.005257377,0.01860043,-0.0064944066,-0.03501919,0.020748364,-0.03162298,0.056633476,-0.001577213,0.00005078148,-0.070758104,-0.046287406,-0.017475858,-0.021827955,0.054159418,-0.035356563,-0.051955253,0.010379805,-0.038550347,0.000016132784,-0.045275293,0.020354765,0.043251064,0.0074446704,-0.02284007,-0.0021493393,0.0018499219,-0.030385952,0.015833981,-0.0025935455,0.00669683,-0.019376386,-0.025595272,-0.015372908,-0.024178311,0.034187008,-0.012921339,0.01107704,0.03807803,-0.0020354765,0.031645473,-0.0009038752,-0.004911571,0.006977973,0.002018608,0.011122023,0.011324446,0.0090865465,0.014169615,0.0078832535,0.007596488,-0.016351286,0.015237959,-0.012032927,0.02694476,-0.0047400733,0.019713758,0.008737929,0.034726802,0.050470818,-0.033399805,0.006938613,-0.037403286,-0.017487103,0.010593474,0.015350416,0.031667963,-0.004189033,0.015204222,0.051955253,0.018195584,0.022513943,0.061086785,-0.062211357,0.003348415,-0.034029566,0.040642053,0.018769117,0.01310127,0.017588316,-0.00022509023,0.0062638693,-0.019500088,-0.013461134,0.032027826,0.008557998,-0.00924961,-0.074311756,-0.060007192,-0.009575736,0.074311756,0.019983655,0.04417321,-0.040349666,0.023031246,-0.0069161216,-0.0013375386,0.000057063273,-0.021108227,-0.006786796,0.011886733,0.030633358,0.019736249,0.0066574696,0.019882444,-0.071972646,-0.0278894,0.006443801,-0.011594344,-0.034007076,0.027349606,0.022660138,-0.052135184,-0.008231872,-0.016688658,0.050470818,-0.03328735,-0.004155296,-0.04109188,0.021265667,0.02818179,0.06428057,-0.008659209,0.022671383,-0.051055595,0.019668775,-0.018836591,0.0042143357,0.019803723,0.0073659504,0.05330474,0.0436784,-0.017464612,-0.027484555,-0.01003681,0.005622863,0.03252264,0.0017276247,0.03146554,0.033377316,-0.00068915216,0.0048440965,-0.022986263,0.044330653,0.010076171,-0.0061008064,-0.015822737,0.018105619,0.0049143825,-0.01294383,0.0053838915,-0.009294593,-0.0059771035,-0.033062436,-0.034929223,-0.017273435,0.011369429,0.005909629,-0.008501769,-0.06828405,0.010520376,0.014012175,0.02649493,-0.011301954,-0.035828885,-0.05298986,-0.004613559,0.030430935,-0.044195704,0.012145384,-0.020028638,0.011571852,-0.005563823,0.014574461,-0.04876147,-0.0016713961,-0.012055418,0.0005984835,-0.019117733,0.03544653,-0.022041623,0.013955946,-0.019668775,0.006247001,-0.01844299,-0.045185328,0.027237149,-0.0008167208,-0.0010999725,-0.012876356,-0.013764769,0.009952468,-0.0031741061,0.0040540844,-0.02252519,0.0063763265,0.0037757524,-0.018904066,-0.0013740872,0.039360043,-0.03544653,0.02555029,0.0050858795,0.021737989,0.011296332,0.022435224,0.012887602,0.04385833,0.023818448,-0.045477714,-0.014304563,-0.020984525,0.0018189962,0.042576317,0.00023229452,-0.034142025,-0.003154426,-0.032725062,0.011127646,0.003373718,0.001137224,0.0004059004,-0.03744827,-0.014979307,-0.00033368176,0.019218946,-0.010745292,-0.02431326,0.0019216135,0.0061851493,-0.00077525224,0.0136185745,0.01310127,0.007022956,-0.04606249,-0.0037560724,-0.01634004,-0.030948238,-0.02123193,-0.0647304,0.05146044,0.024425717,-0.030520901,-0.010644079,-0.027169675,0.015035535,0.00669683,0.034771785,0.0139447,0.0041018785,0.03825796,-0.0038347926,-0.032927487,-0.0007309722,0.001176584,0.008035071,-0.028114315,0.0063032294,-0.0072478703,0.045500208,-0.03846038,-0.018139357,-0.009283347,0.0062582465,0.0046051247,-0.023571042,-0.041901574,0.02849667,-0.011909224,-0.009513884,-0.011127646,-0.0085242605,0.000027587172,-0.0106328335,-0.019623792,0.007107299,0.02928387,0.0065843724,0.023481077,-0.0062132636,0.0011590127,0.04554519,-0.0013958757,0.011616835,-0.0141808605,-0.041901574,0.011909224,0.008333083,0.049931023,-0.014833112,0.026472438,-0.007961974,-0.03373718,-0.0069104987,0.02354855,-0.0066687153,-0.0027355228,0.015226713,0.0376282,0.0044870446,0.003101009,-0.024335751,-0.012426527,-0.024875546,-0.0029463803,-0.01223535,-0.019859953,-0.0002964303,-0.00952513,0.005909629,0.021456845,-0.017959425,0.038977686,-0.025280392,-0.036188748,0.054429315,-0.040327173,-0.006314475,-0.02431326,-0.0046922793,0.026989743,0.030116053,0.037223354,-0.00092496094,-0.033534754,0.018802853,-0.014675672,-0.0059827263,-0.0046838447,0.024425717,0.0060108406,0.0020931107,0.008372443,-0.0154628735,0.0024796827,-0.041609187,0.018712888,0.030723324,0.0015870531,0.010121154,-0.021670515,-0.027619503,0.033984583,-0.029643733,0.04786181,-0.0035564608,0.048671503,0.003674541,0.009688193,0.0010599097,0.011808013,-0.023863431,0.0008877095,0.042958673,0.020253552,0.024425717,0.02633749,-0.06176153,-0.0094464095,-0.00948577,-0.0043296046,-0.010295462,0.0025007683,0.015114255,-0.01991618,0.048851434,-0.009502638,-0.023661008,-0.03160049,0.016722394,-0.032949977,-0.014293318,0.009283347,0.015946439,0.0032106547,-0.022345258,-0.0055413316,-0.022244046,0.045837577,0.008990958,-0.022041623,-0.006404441,-0.027619503,0.014439512,0.029351344,0.036166254,-0.02339111,-0.011886733,-0.008271231,-0.0061739036,0.020253552,0.000027872708,-0.023953397,0.02160304,-0.016171355,0.01103768,-0.019578809,-0.013303693,0.002270231,0.0334223,0.031533014,-0.031240627,0.0011428469,-0.020478467,-0.018015653,0.0145407235,-0.009378935,0.021816708,-0.031712946,0.0062526236,-0.052764945,0.036323696,-0.032747556,-0.018667905,-0.02354855,-0.041609187,-0.02070338,0.027214658,-0.00079141796,0.024043363,0.0098681245,0.0058983834,-0.075346366,-0.035536494,-0.027124692,-0.011228858,0.01789195,0.018038144,-0.015788998,-0.020478467,-0.008546752,0.0032500147,0.013753523,-0.034097042,-0.02865411,-0.04943621,0.002329271,-0.02757452,0.012876356,0.0049931025,0.002413614,-0.02773196,0.0040568956,-0.010818388,-0.01084088,-0.023323637,-0.048986383,-0.043430995,-0.05906255,0.0091034155,0.0077764196,0.0139447,-0.029936122,-0.01199919,-0.03128561,-0.08245366,0.004456119,0.030385952,-0.033692196,0.0013438642,-0.046152458,0.0042846217,0.024965512,-0.004658542,-0.022907544,0.023661008,-0.013404906,0.02665237,-0.0025879226,0.040934443,-0.018229323,0.011228858,-0.0025949513,0.029508784,0.023166195,0.038640313,0.0025977627,-0.041429255,0.024830563,0.036143765,0.0114312805,0.020276044,-0.026697353,0.031173153,-0.024110837,-0.025235409,0.017903196,0.0021352821,0.008074432,-0.0052348855,0.011358183,0.0061345436,0.007062316,-0.020872068,-0.03731332,0.04334103,0.006320098,-0.015339171,0.016598692,-0.003446815,0.010537245,-0.009502638,0.01084088,0.019781232,-0.023930905,0.009924353,-0.023863431,0.0019173963,0.023008754,0.0012440585,0.02757452,-0.02044473,0.039247584,0.01199919,-0.0027945628,0.033534754,0.03193786,0.015327925,-0.040934443,-0.00054822915,-0.0360538,-0.026764829,-0.026000118,-0.00082304655,0.026472438,0.0068823844,0.039180107,0.01797067,0.008293723,0.0029913632,0.0031431804,-0.015552839,0.0011386297,0.02415582,0.0058927606,0.00577468,0.0014464814,0.011875487,0.041069392,-0.0067249443,0.03380465,-0.013314939,-0.0035592723,0.0034046436,-0.02075961,0.020084867,-0.0040568956,0.020410992,-0.0052686227,0.048221674,0.0012039955,-0.006634978,-0.018409254,-0.003995044,-0.030138545,0.01728468,0.026899777,-0.022873806,-0.03636868,0.025370358,0.008726683,-0.0048047365,0.027192166,0.014045912,0.013236219,-0.0024515684,0.032095302,-0.018904066,-0.01923019,-0.037898097,-0.020883312,0.015361662,0.010593474,0.035514,-0.010700309,0.011442526,0.008378066,0.00917089,-0.00693299,0.015833981,0.009766913,0.008839141,0.0010943497,-0.003798244,-0.013843489,-0.05811791,0.035221614,0.001899122,0.048221674,-0.014585706,-0.014619444,0.033557247,0.0023911225,-0.045950036,-0.011318823,-0.01834178,0.0070004645,-0.028091824,0.038505364,0.00073167507,0.023818448,0.005153354,0.027394589,-0.007146659,-0.014574461,0.0033568493,-0.038190484,0.01954507,0.026832303,-0.015384153,0.03310742,0.015384153,0.051325493,-0.022513943,-0.020984525,0.0015884588,-0.0031965976,0.07129791,-0.011661818,-0.03022851,0.030138545,-0.016936064,-0.020321026,0.011515623,0.004307113,-0.0075177676,0.040214717,0.01215663,0.04136178,-0.014169615,0.04259881,0.04554519,-0.0045770104,0.0050661997,0.056003716,-0.0026413398,-0.020332273,0.0058927606,-0.016092634,0.02215408,0.0068880073,0.0010233611,0.0022660138,0.041811608,-0.027597012,-0.01317999,0.039539974,0.02555029,0.033399805,-0.024245786,-0.051055595,0.009598227,-0.030835781,0.012752653,-0.0138997175,0.041271813,0.0148218665,0.02152432,0.015766507,0.00020277449,-0.0043802103,-0.01844299,0.0066855843,-0.0068767616,0.03022851,0.03877526,0.0032949976,-0.013573592,0.016722394,0.017318418,-0.009856879,-0.034974206,-0.025482815,0.023323637,-0.013067533,-0.022795087,-0.0042621302,-0.0056678457,0.033579737,-0.029531276,-0.0043296046,-0.036953457,0.00058618345,-0.028159298,0.012561476,0.034142025,0.016092634,-0.021872938,-0.023908414,-0.0019328592,-0.047322016,-0.011105155,0.012212859,-0.0038263584,0.038212977,0.009693815,0.05083068,0.009272101,-0.017397137,-0.0064494237,0.0074727847,0.029238887,0.023571042,0.020433484,-0.00023739025,-0.03744827,0.02770947,-0.0161826,0.001873819,0.005988349,0.011954207,-0.0026272826,0.00095377816,0.016846098,-0.008136283,0.007916991,0.016924817,-0.030880764,-0.016598692,0.0031375575,0.017801983,0.007838271,-0.016688658,0.009120284,-0.0165762,0.054159418,0.019871198,0.00024600024,0.030880764,-0.015406645,-0.034906734,-0.012201613,0.017239697,-0.012955076,0.025617763,-0.026719844,-0.0044589303,-0.034321956,0.016295057,-0.009969336,-0.004756942,0.020332273,-0.014968061,-0.031398065,-0.007838271,0.021175701,0.011583097,-0.00037356897,-0.042014033,0.023278654,-0.025325375,0.004090633,-0.0080406945,-0.007894499,0.008681701,-0.019500088,0.0009917325,-0.03007107,-0.016767377,0.028429195,0.01952258,0.0065393895,-0.008614226,0.004875022,0.027079709,-0.034794275,-0.011200743,0.021344388,-0.016250074,0.039472498,0.030385952,-0.024875546,-0.026922269,-0.0012032926,-0.0036126894,-0.006151412,-0.04039465,0.022705121,0.018791609,-0.017993161,-0.035851374,0.030588375,0.0124152815,-0.0010866183,-0.013337431,0.02268263,-0.010565359,-0.02160304,-0.0010774811,0.003980987,-0.01270767,-0.046557307,0.015215468,0.0045517078,-0.0012574127,0.0154628735,-0.0203885,-0.011751784,0.03252264,0.0051561655,-0.004815982,0.0026047912,-0.01003681,-0.019455105,-0.0018021276,0.06877886,0.02991363,-0.018611677,0.035064172,0.035963833,0.02239024,0.00090036093,0.021175701,-0.018645413,0.017914442,-0.017768247,0.00038762612,0.0030251003,0.023323637,0.013742277,0.0011597155,-0.0148218665,-0.017262189,0.0070904302,-0.012640196,0.0058534006,0.04154171,0.00522364,-0.0039388156,-0.010542868,-0.010216742,0.016137617,-0.015530348,0.013731032,0.013269956,0.013359922,0.027394589,-0.0054598,0.010391051,-0.052270133,0.020163586,-0.00071726646,-0.01378726,0.026135067,0.013888472,0.0012693614,-0.031847894,0.024875546,-0.014889341,0.003961307,0.012516493,-0.031712946,-0.054789178,-0.02725964,-0.022480207,-0.019747496,0.010166137,0.018094374,-0.03713339,0.001216647,0.000120012985,-0.010548491,0.038212977,-0.0042930557,0.015822737,-0.03007107,0.039989803,-0.010745292,0.026629878,-0.007961974,0.022851314,0.022930035,-0.0072085103,0.012887602,0.018353024,-0.027641995,0.025977626,-0.0036042552,0.010385428,-0.0026582084,0.0025822998,0.017408384,-0.022963772,-0.024583157,0.019342648,0.012494002,-0.045162834,-0.0021479337,0.01302255,-0.022963772,0.046557307,0.020017393,-0.022356503,-0.019680021,-0.0138997175,0.0010767783,0.016834851,-0.01812811,0.02602261,0.005769057,0.020410992,-0.022334011,0.0028592257,-0.028924007,-0.013146253,-0.002413614,0.024403226,0.025482815,-0.0014970873,-0.015429136,-0.017914442,0.009766913,0.040304683,-0.017700773,0.0039528725,0.0029660603,-0.009142775,-0.024043363,0.006235755,-0.012280333,-0.011436903,-0.013011305,-0.014585706,-0.015384153,-0.024133328,0.035356563,0.017790738,0.027012235,0.025797695,-0.021614285,-0.0015982988,0.00075697794,-0.010419165,0.029036464,-0.0014408586,-0.013967192,0.004546085,0.008737929,-0.0055919373,-0.0021085737,0.021625532,0.007838271,-0.028744075,0.003955684,-0.02541534,-0.044668023,0.0066574696,-0.0015111445,0.023188688,-0.006202018,0.005299548,-0.016002668,-0.014720655,0.018701643,0.0019497278,-0.018083127,-0.011200743,-0.0252579,-0.028519161,0.021052,-0.012336561,0.04925628,-0.026832303,-0.0058140405,-0.02005113,0.009345198,-0.02399838,-0.017487103,-0.0032303347,0.000117289404,0.0015997045,-0.00019082591,-0.018780362,0.011397543,0.013967192,0.0033399805,-0.0032359576,-0.018555447,-0.025460323,0.0027762887,-0.017464612,0.005226451,-0.032455165,-0.020399747,-0.053439688,-0.042441368,-0.030273493,0.0008856009,0.007607734,0.019376386,0.0014007958,-0.0045826333,0.0025851112,-0.0031375575,0.0003303432,-0.020242307,-0.005780303,-0.013359922,-0.019949919,0.02384094,-0.037920587,0.033557247,-0.0026047912,0.041721642,0.006589995,-0.028924007,0.0050661997,0.038640313,0.018420499,-0.0010071953,0.0030138546,-0.02833923,0.034029566,-0.013326185,-0.00037848897,0.00011623512,0.04507287,0.023346128,-0.005802795,-0.016058898,0.003486175,0.02586517,-0.00022386023,-0.042373896,0.011065794,-0.003817924,0.010526,0.0023011568,-0.05173034,-0.008417426,-0.017194714,-0.009558867,-0.0049031368,0.009187758,-0.0021296593,0.013562346,-0.011054548,-0.0034046436,0.007298476,-0.008917861,-0.031330593,-0.00071621215,0.032770045,-0.038505364,0.0022674196,-0.004073764,0.00677555,-0.008676077,0.010211119,0.0042536957,0.012100401,-0.028271755,-0.039607447,-0.011138892,-0.025640255,0.010244857,0.018836591,0.015631558,-0.019702513,-0.008687323,0.005409194,-0.013371169,-0.011515623,0.028564144,0.016137617,-0.006078315,0.0027313058,0.027304623,0.0054232515,0.023188688,-0.006044578,0.0029154546,0.0059771035,0.0057634343,-0.0010177383,0.00046072333,0.04397079,-0.032185268,0.008237494,-0.024583157,-0.058027945,0.0069104987,0.021816708,-0.00086873234,-0.012775145,-0.008754797,0.028924007,-0.006769927,0.01565405,0.0040934444,0.03513165,-0.0323652,-0.0076302253,-0.002280071,-0.017205961,0.030858273,-0.011341315,-0.032117795,-0.025482815,0.058972586,0.032432675,-0.013213728,-0.007798911,0.029846156,-0.026517421,0.011875487,-0.028361721,0.0244707,-0.007866385,-0.024875546,0.009384559,-0.014372038,0.005999595,-0.027282132,0.004745696,0.013112516,0.011015189,0.03625622,-0.0051983367,-0.011785521,0.00047688908,-0.0049284394,-0.0052433196,0.039742395,-0.012730162,0.007838271,-0.0073153446,0.00932833,-0.010615965,0.048266657,-0.008299346,-0.012583967,-0.009497016,0.03081329,0.021648023,-0.01347238,-0.015878964,0.012572722,-0.006826156,0.028631618,0.0058534006,-0.0017712018,-0.0066237324,0.01231407,-0.0070735617,-0.0141808605,-0.012662687,0.0019848705,-0.009615095,-0.0044027017,0.024920529,-0.0014408586,-0.021861691,0.021378124,-0.020782102,0.005988349,0.025617763,0.018296797,-0.025167935,-0.01068344,0.016981047,0.021254422,0.017172223,0.040687036,-0.021501828,0.0018485162,0.013483626,0.00085045805,0.027979366,0.0023967454,0.025212917,0.020725872,0.0058927606,-0.0025288826,0.042238947,-0.014450758,-0.011144514,-0.006438178,-0.018566694,0.009052809,-0.038010553,-0.040214717,0.016744886,-0.005153354,0.0034833637,-0.013877226,0.035693936,0.017509595,0.016767377,-0.019983655,0.0009629153,-0.026629878,-0.006471915,-0.025077969]},{"id":"class-GuildEmoji","type":"class","source":"main","text":"Class: GuildEmoji\nDescription: Represents a custom emoji in a guild.\nProperties: animated: boolean, client: Client, guildId: string, id: string, identifier: string, name: string, url: string\nMethods: delete() -> Promise — Delete this emoji. Requires Manage Emojis and Stickers permission.; edit(options: { name: string; }) -> Promise — Edit this emoji's name.\nRequires Manage Emojis and Stickers permission.","meta":{"url":"/docs/classes/GuildEmoji"},"embedding":[0.022349562,0.019494772,-0.03992263,0.0049014636,-0.011202551,0.030236337,-0.004293293,-0.0057317964,0.034235265,-0.002768702,0.048387025,-0.04254415,0.018917149,-0.035012834,0.022082968,0.003340771,-0.06411614,-0.016606659,0.019128203,0.021660859,0.0003929502,0.03259126,0.0387896,0.042788528,0.010552726,0.048164863,-0.02326043,0.024882216,0.014074004,-0.020905506,-0.00805895,-0.017362012,0.08459954,-0.054074388,-0.03634581,0.04365496,-0.020472288,0.030502932,-0.024793351,-0.007292489,-0.030258553,-0.05376336,-0.0027728677,0.012674379,-0.00972517,0.027103843,-0.023149349,0.03254683,0.022693915,-0.008225572,-0.007953423,0.033168882,-0.019816909,0.046476427,-0.025948597,-0.045543343,-0.041455552,0.023149349,-0.0516306,0.028525684,0.0013774084,-0.022349562,-0.0025951376,0.006520474,0.018694988,0.03063623,-0.0958854,0.060294945,0.015518061,0.012663271,0.02979201,-0.01861723,-0.031191636,0.008936493,-0.016873254,-0.04038917,-0.0017939634,0.020383423,0.0211721,-0.040055927,-0.044588044,0.044032637,-0.029903093,-0.030547364,0.028103575,-0.018506149,-0.050964113,-0.037745435,-0.0056651477,0.0039711576,-0.0053180186,-0.028747847,-0.08202245,-0.009525224,0.022538401,-0.016073467,0.010347226,0.012541082,-0.010063968,0.051230706,0.05922856,0.0008997587,-0.07664611,0.00012600787,-0.0011170616,0.006709312,-0.06540468,0.070514426,-0.008325545,0.0018050715,-0.076024055,0.028103575,-0.0015676352,0.003090838,-0.00343519,-0.024126863,0.01909488,-0.017828552,0.024193512,-0.044121504,-0.06025051,-0.028947793,0.059628457,-0.065982305,0.0045460034,0.011230322,-0.00040926525,0.00285479,-0.029414335,-0.024793351,-0.019006014,0.010919294,0.007886774,-0.0062538786,-0.033813156,0.009358602,-0.0005120155,-0.017450877,-0.031969205,0.002599303,0.024704486,-0.014240626,0.018406175,0.027570385,-0.034235265,0.01820623,-0.021916345,-0.013885166,-0.06780404,0.020427857,-0.01260773,0.022949401,-0.013296435,-0.023860268,-0.020383423,-0.013140921,-0.013585246,-0.015684683,-0.043877125,-0.01141916,-0.0039850427,-0.031324934,0.008158923,-0.023726972,-0.014607194,-0.014329491,0.037545487,0.01320757,-0.005198606,-0.0029575403,0.0700701,-0.018595014,-0.04580994,0.012629947,-0.04289961,-0.004543226,0.022560617,-0.006387176,-0.087709814,0.013407516,0.025526488,0.01136362,-0.060694836,-0.023904702,-0.007131421,0.05038649,0.0062816488,0.006298311,0.012330027,0.0057595666,-0.02765925,0.031658176,0.024482325,-0.009347494,0.047542807,-0.0009330831,0.047542807,-0.00095113384,0.0066426634,-0.06313863,0.013252002,0.030236337,0.03243575,0.0035823728,0.018806068,-0.02474892,-0.021871913,-0.0626943,0.011408052,0.008325545,0.037900947,-0.026726168,-0.018983798,-0.017350903,-0.04709848,0.02260505,-0.011996783,0.030302987,-0.03972268,0.047142915,-0.047187347,0.024237946,0.016406711,-0.03270234,-0.0056651477,-0.024215728,-0.0071536372,-0.030236337,0.0000028611034,0.03694565,-0.052208222,-0.017273147,-0.021149885,-0.05625158,-0.00053909153,-0.025193244,0.00086574006,0.041899875,0.01659555,0.010352779,-0.025748651,-0.02801471,0.033879805,-0.024437891,0.010702685,0.012152297,0.017506417,0.022993835,0.015418088,-0.0056762556,0.030747311,0.018906042,-0.016995443,-0.029214388,-0.004532118,-0.0009157267,-0.028947793,0.040411387,0.025348758,0.011180336,0.01237446,-0.007736814,0.0064038383,-0.0023604783,0.00805895,0.018295094,0.038567435,0.0018134026,-0.017995175,-0.00082130753,0.023571458,-0.004334949,0.038678516,0.008042288,-0.004107232,0.051008545,-0.019294826,0.054652013,0.030258553,-0.01986134,-0.032324664,-0.030103039,0.02283832,0.0028825605,-0.031391583,0.07491325,0.05865094,-0.01909488,0.004110009,0.034346346,0.022238482,-0.021327615,0.009453021,-0.016262306,0.015007087,0.021160992,0.02164975,0.021094345,0.04896465,0.029458767,0.009269737,-0.052030493,-0.03314667,-0.0046404223,-0.018928258,0.03390202,-0.008447735,0.024215728,-0.003110277,-0.035234995,0.028881144,0.0051680584,-0.019117096,0.00886429,-0.031258285,0.0030630676,-0.0064093927,0.039944846,0.047853835,0.00094905106,0.025259893,-0.009008695,-0.009802927,-0.0055596204,-0.073313676,-0.025148813,0.0042127594,-0.019761369,0.027748115,0.024526756,0.022038534,-0.039700467,0.010713794,0.0904202,0.07869001,0.00444603,0.008036734,0.037456624,0.044365883,-0.027570385,0.017528633,-0.03967825,0.005848432,0.018595014,0.043032907,-0.04829816,-0.011385836,0.04269966,-0.010480523,-0.01141916,-0.01879496,0.01606236,-0.027770331,-0.04281074,0.02837017,-0.06602674,0.0012573018,-0.00016965937,-0.0066148927,0.061005864,0.0059150807,0.010336117,-0.019383691,0.051008545,0.02152756,0.0091642095,-0.0058373236,0.043699395,0.0461654,-0.058073316,-0.013951815,-0.0030019728,-0.020738883,-0.05371893,-0.011674647,0.0016939902,-0.00603727,0.006964799,-0.0060817027,-0.0045598885,0.0040100357,0.0014787702,-0.004437699,0.010397212,0.018095149,-0.03359099,-0.0034157508,-0.00823668,-0.016995443,0.023038266,0.046787456,0.0036406904,-0.04900908,-0.019650286,-0.018828284,0.026281841,-0.0007393851,0.007125867,0.014240626,0.009486346,0.008797641,0.005115295,-0.011396944,0.00019387163,0.011485809,-0.0009830698,0.0014746046,0.019761369,0.030058607,-0.01243,0.009008695,0.02670395,0.029436551,0.0193948,0.018172905,-0.054429848,-0.010702685,-0.068781555,0.011385836,0.02688168,-0.031658176,-0.044343665,0.0033685411,-0.043277286,0.029014442,-0.019583637,0.016384495,0.010741564,-0.01558471,-0.05549623,-0.02414908,0.013785193,0.035368294,-0.008703222,0.06478263,-0.022882754,-0.018961582,-0.037034515,-0.0047487267,-0.005959513,-0.06873713,0.0003644856,0.0046848548,0.026037462,0.049942166,0.0070758807,0.018450608,-0.037456624,-0.0037989814,-0.0056623705,-0.037190028,0.009008695,-0.005598499,0.02450454,-0.021838589,-0.0048292605,-0.015118169,-0.00886429,-0.011058146,-0.03854522,-0.008964263,0.020139044,0.010552726,0.08775425,-0.01320757,0.004334949,-0.06367181,0.00092752906,0.013540814,0.020672234,-0.054429848,0.00838664,0.06340522,0.02932547,0.0027187155,0.011830161,-0.0052319304,-0.033035588,0.057184666,0.04205539,0.026815033,0.057273533,-0.0022618936,-0.051052976,-0.02939212,0.051586166,0.011385836,-0.043921556,0.020616693,-0.021805264,-0.012407784,0.0068315016,-0.004340503,-0.009030912,0.012829893,-0.02897001,-0.021505345,-0.07971196,0.011024822,-0.023038266,0.02968093,-0.03230245,-0.04580994,0.020416748,0.010352779,0.032857858,0.008953155,-0.0145516535,0.022038534,0.024593405,-0.012696596,0.0013232563,-0.020894397,-0.013329759,0.034790672,-0.0024743364,-0.037101164,0.019039338,0.0023368734,-0.00975294,-0.015540278,0.0002346593,0.0479427,-0.028392388,-0.0042294213,0.011219214,0.0062316624,-0.025881948,0.0065593524,0.0330578,0.0004002399,-0.041611064,0.020450072,0.016973227,0.0056679244,-0.013418624,0.002924216,0.013252002,0.021860804,-0.044121504,0.013796301,0.0170732,0.04216647,0.00010700256,-0.023215996,0.025304327,-0.06496036,0.03641246,0.020239018,0.01820623,0.017995175,-0.037923165,0.028592333,-0.03585705,-0.002768702,0.010924849,-0.023704754,0.012618839,0.027126059,0.007298043,0.0026978876,-0.0003717753,-0.0061594597,-0.012474433,-0.03836749,-0.00045300354,0.027059412,0.031547096,-0.042033173,0.00059636787,-0.0058151074,0.02028345,0.022527292,0.0134741645,0.014085112,0.04514345,0.0075313137,0.023327079,-0.03308002,-0.016839929,-0.003676792,-0.051319573,0.0045043477,-0.009180872,-0.026837248,0.017162064,-0.0323691,-0.029969743,-0.029991958,0.057628993,0.0053263498,0.005881756,-0.0045709964,-0.019228177,-0.010436091,-0.013185353,-0.011485809,0.00097543286,-0.003185257,-0.010519401,0.008020071,-0.0012114807,-0.04365496,0.022382887,0.0050375382,-0.028770063,0.011308079,-0.015018195,-0.007686828,0.026015246,-0.010852645,0.021205425,-0.008147815,-0.032813422,-0.027614817,-0.045721073,0.0027089957,0.001996687,-0.014596086,-0.013285327,-0.009541886,0.00441826,0.029169956,-0.0147516,0.00031970593,0.028903361,-0.0032130273,-0.025904166,-0.0077812467,0.0058317697,-0.003840637,-0.04758724,-0.017573066,-0.013052056,0.0020175145,-0.037567705,0.023393728,-0.025482057,0.028459035,-0.021494236,0.036501322,0.016806604,0.027081627,-0.0133853,0.031413797,-0.02450454,0.0025895834,-0.01785077,0.006098365,-0.0045737736,-0.010547172,-0.009858468,-0.0021160992,-0.02260505,0.005623492,-0.0068315016,-0.017584173,0.047142915,-0.031902555,0.025171028,-0.0066704336,0.016506685,0.010302793,0.047276214,0.013996247,0.05598499,0.016551118,0.018117364,-0.00036032006,-0.020561153,0.02599303,0.02152756,-0.00841441,0.013096488,-0.026792815,-0.030614013,-0.02790363,-0.0702034,-0.0049903286,-0.018550582,0.015640251,-0.001973082,-0.023060484,0.0052235993,0.07242502,-0.03890068,0.023571458,0.038100895,0.00841441,-0.002343816,0.015684683,0.014185085,-0.012929866,-0.020194585,-0.0063094194,0.025304327,0.013707436,0.017684147,0.017062092,0.011130349,0.010524956,0.011119241,-0.038945112,0.0009830698,0.019472556,0.007136975,-0.009963995,-0.013551922,0.034990616,0.015095952,-0.027459303,-0.025748651,-0.024104647,0.0073258136,-0.0062261084,-0.0277259,-0.029103307,-0.022116292,0.01641782,-0.006848164,0.017828552,0.04323285,-0.04972,-0.020216802,-0.023815837,0.021338722,0.004362719,0.038989544,-0.015429196,-0.03901176,-0.0155513855,0.029947525,0.018906042,-0.023949133,0.0161179,0.043521665,0.019883558,0.025570922,-0.026192976,0.0029464322,-0.006609339,0.05194163,-0.0094085885,-0.037523273,-0.04865362,0.0000069751263,-0.009808481,-0.0020702782,-0.022393996,0.0038878464,0.010308347,0.005542958,-0.038389705,-0.01682882,-0.031569313,-0.014207302,-0.01510706,-0.020261234,-0.03194699,0.025482057,0.016373387,0.019728044,0.018850502,0.05847321,-0.039122842,-0.04705405,0.0034740684,0.023060484,-0.0074257865,-0.011008159,-0.036967866,0.00066162815,-0.038767383,-0.0062427707,0.017406443,-0.034301914,0.017573066,-0.02326043,0.018472824,0.011069254,-0.015773548,0.011463593,0.007636841,-0.049275678,0.026037462,-0.0034990618,-0.005209714,-0.047498375,-0.011147011,-0.024837784,-0.009569656,-0.009936225,0.010363888,-0.0059872833,-0.031969205,-0.007536868,0.000965019,-0.054118823,-0.023993567,0.04989773,-0.02134983,-0.0017675816,0.00954744,-0.001921707,0.023571458,0.00919198,-0.017028768,0.023238214,-0.032346882,0.018761637,0.0016578888,0.02354924,-0.016462252,-0.003965603,-0.01121366,-0.007053664,0.0111136865,0.015751332,-0.014162869,-0.030902825,-0.009341939,0.027192708,0.010863754,0.0028714524,-0.017395336,0.033502128,-0.0051375115,-0.014396139,-0.014251734,0.00336021,-0.031902555,-0.011474701,-0.009886238,0.010658253,-0.018928258,0.0092919525,-0.031813692,0.046476427,-0.006103919,-0.0053374576,-0.027970279,-0.024082432,-0.029836444,0.0092419665,0.0460321,-0.0397449,-0.030547364,-0.005645708,-0.0028797833,0.045721073,0.043699395,-0.036656838,-0.023327079,-0.03021412,0.029947525,-0.05318574,-0.0113191875,0.013252002,0.024260161,0.039456088,0.016506685,-0.006848164,-0.023038266,-0.050830815,-0.010419428,0.018628338,-0.012096756,0.009375264,0.00007940579,-0.027437087,-0.0069870153,-0.030147472,0.0023507585,-0.0077756927,-0.008597694,0.02783698,0.0037323325,-0.025237678,-0.0064871493,0.028214656,0.032924503,-0.005865094,0.031502664,-0.03587927,-0.014607194,0.008075613,-0.017539741,0.011974567,-0.0074146786,-0.0019175414,0.011630215,0.018861609,-0.0019814132,0.0006647523,-0.01576244,0.025704218,0.007859004,0.018539473,0.00090461853,-0.0035768186,-0.037723217,0.00029731612,-0.03407975,0.017828552,0.015651358,-0.0035657105,0.0075590843,0.00090461853,0.019816909,-0.009980657,0.0013544979,-0.026903898,-0.0030825068,0.03712338,0.00024021337,0.02147202,0.00019664866,0.0100361975,0.016262306,0.0029214388,-0.02801471,-0.005595722,-0.018872717,0.0035462712,0.01963918,-0.026992762,0.0050542005,-0.0134741645,-0.0170732,0.017617498,-0.0065815686,0.00031623465,-0.015806872,-0.0068148393,0.036012568,-0.027437087,-0.021727508,-0.012174513,-0.015451413,-0.017050983,-0.018295094,-0.014185085,0.0023799173,0.011024822,0.012641055,-0.0077257063,-0.015706899,0.023949133,-0.022105183,-0.011313633,0.00336021,0.039411653,0.05336347,-0.0016578888,0.0069814613,-0.03354656,-0.006709312,0.0424775,-0.0074813273,0.0029630943,-0.046431992,-0.031013906,-0.01826177,-0.038100895,-0.00336021,-0.0461654,-0.030436283,0.022571726,0.0026090227,0.018283986,0.027392656,-0.0002435111,0.011002605,0.034546293,-0.020894397,0.0026215194,0.06273873,-0.027370438,-0.011430268,-0.028747847,-0.00014917876,0.058517642,0.021871913,0.031924773,-0.046609726,0.017295362,0.015817981,-0.031191636,0.009436359,0.00024906517,0.011019267,0.0141406525,-0.020372314,0.006637109,0.011441377,0.012318919,-0.0076423953,0.036879,0.007953423,0.012341135,-0.01038055,-0.018272879,0.023926917,-0.0070758807,0.040855713,-0.006931475,0.001637061,-0.0075090975,0.021960778,0.014440572,0.018850502,0.012741028,-0.006015054,-0.053496767,-0.012829893,-0.009275291,0.013896273,-0.006198338,0.013429732,0.006687096,0.0018106257,-0.025326543,0.007570192,-0.014185085,0.006048378,-0.045476694,0.016973227,-0.0025812523,0.0056762556,-0.0036490215,-0.004362719,0.01308538,-0.020594478,0.006626001,-0.005345789,0.0042266445,0.03623473,0.004929234,0.029192172,-0.016962118,-0.026948329,-0.015662467,0.011707972,0.04634313,0.04900908,0.0068315016,-0.0034018655,-0.036723487,0.006137243,-0.033857588,-0.0032324665,-0.0004904935,0.0040739076,-0.008325545,0.005479086,0.0016051251,-0.011052592,0.015840197,0.012063432,-0.018072931,-0.054163255,0.007464665,0.0076090707,0.02136094,0.01861723,0.015495845,-0.016395604,0.026437355,0.030791743,0.015095952,0.011607998,-0.0113191875,0.023949133,-0.006548244,0.00904202,0.015840197,0.008775425,0.0009087841,-0.045410044,0.0005196523,0.019350367,-0.016440036,-0.004168327,-0.000014286534,-0.004543226,0.023149349,0.02670395,-0.0038961775,-0.008186693,-0.004845923,-0.0341464,0.030369634,-0.011785729,-0.015595818,-0.015029304,0.0230827,0.016962118,-0.00469874,-0.0026479012,-0.012163405,0.014029572,0.028792279,0.000029657846,-0.0011510802,-0.0069148126,0.024082432,0.029969743,0.007975639,0.03230245,0.031213852,-0.013052056,0.02379362,0.0055013024,-0.014018463,-0.049586702,-0.01742866,-0.0063149733,0.023460375,-0.027970279,-0.007597963,0.01796185,0.0045737736,-0.01831731,0.033213317,0.013896273,0.010824875,-0.015395871,0.00242435,-0.027770331,-0.013418624,-0.01374076,0.017484201,0.00042488606,-0.06647106,-0.00080603384,0.003024189,-0.019794691,0.009175317,-0.014862682,-0.06655993,-0.012185621,-0.026903898,0.02605968,-0.019350367,-0.017884094,0.01963918,-0.0024548974,0.060828134,0.0049181255,-0.019483665,-0.015429196,0.0590064,0.00093100034,0.020394532,0.019605855,-0.009714062,-0.008886506,0.009714062,-0.0070758807,0.022371778,-0.0100750765,0.023815837,-0.010391658,-0.027503736,0.00059949205,0.011396944,-0.0047542807,0.008392194,0.04272188,-0.0003669155,0.012174513,-0.013318651,-0.028814496,0.034746237,0.017028768,-0.011563566,0.010730456,-0.0000032570476,0.046831887,0.010275023,0.0029936417,-0.016973227,0.005876202,-0.008186693,-0.010958172,0.030769527,-0.030725095,0.0037906503,-0.029836444,-0.01819512,0.012863218,-0.004365496,-0.008697668,-0.024015782,-0.05976175,-0.025548704,-0.013185353,0.015307006,0.019383691,0.00788122,-0.004854254,0.01068047,-0.010225036,-0.014851573,0.03534608,-0.010213928,-0.005448539,0.0022785557,0.0885096,-0.04252193,0.00050194876,-0.007681274,0.04896465,0.0054846406,-0.029725363,-0.004179435,0.07109205,0.0031463786,0.012318919,0.0010816545,-0.023415944,0.0031352704,0.011008159,0.006442717,-0.013774084,-0.01469606,0.049097944,0.009808481,-0.011035929,0.021749724,0.033857588,-0.026970547,0.068070635,0.010897078,-0.021905238,0.018395068,0.025171028,-0.0040877927,0.002935324,0.005692918,0.015606926,0.014540546,0.004023921,-0.04187766,0.017517526,-0.0033491019,0.0021758054,-0.009108669,0.01921707,-0.0026104113,0.009019803,0.034923967,-0.0012267544,-0.017995175,0.006442717,-0.0056512626,-0.0019744704,0.030325202,-0.0019855788,-0.0012732696,0.0010531899,-0.0032324665,-0.03634581,0.015140384,-0.025904166,-0.02605968,-0.04478799,-0.0058928644,0.023815837,-0.012218946,0.019783584,-0.015929062,0.025504272,0.0053041335,-0.014729383,0.02177194,0.008203356,-0.01055828,0.023682538,-0.009064236,-0.005798445,-0.014662735,0.017017659,0.012952083,0.012618839,-0.05642931,0.004957004,-0.0055762827,-0.010547172,0.03485732,-0.012707704,0.036901217,0.012263378,0.011696864,0.0030436283,-0.032991152,-0.0060872566,-0.022460643,-0.017384227,-0.044765774,-0.03288007,0.021605318,-0.022227373,0.0003188381,-0.000897676,0.0033268856,-0.019439232,-0.022682806,0.003851745,-0.014062895,-0.04218869,0.02843682,0.0014662734,0.00343519,-0.012141189,-0.0050736396,0.0045543346,0.015018195,-0.0148848975,-0.017695256,-0.033946455,0.021783048,-0.019705826,0.023771403,0.019039338,-0.025415407,-0.021216534,-0.011485809,-0.010574942,-0.0125632975,-0.004790382,-0.017395336,-0.017406443,0.0034907307,-0.027392656,-0.021105452,-0.019739151,0.013674111,-0.021438695,-0.03312445,-0.024437891,-0.01932815,-0.03663462,0.0277259,0.030836176,0.054207686,0.010441645,-0.015951278,-0.0019328151,0.025748651,-0.0077479226,0.00034174864,-0.012407784,-0.021394264,0.034479644,0.007953423,-0.0061483514,-0.01998353,0.01588463,0.0277259,0.013318651,0.011985675,-0.0048042675,-0.014107328,-0.0068259477,-0.0016814936,0.0049181255,0.0014003189,0.0033907574,0.007764585,-0.03641246,0.0016842706,-0.04358831,-0.009508561,0.031013906,0.043699395,0.006264987,-0.0033074464,-0.027281573,-0.0039794883,-0.015095952,0.003346325,-0.008158923,-0.01320757,0.00016367139,-0.014707168,0.0012087036,0.0032796762,0.010935957,-0.016995443,0.019794691,-0.02932547,0.0025895834,-0.023149349,0.012685487,-0.0073924623,-0.0073424755,0.01987245,0.017395336,0.008381086,0.038811814,-0.03294672,-0.03836749,-0.0062483246,-0.015273682,0.008258897,-0.0033074464,0.0020772207,-0.0071480833,0.031680394,-0.0024590627,-0.007192516,0.0049125715,-0.002341039,0.029814228,-0.019561421,0.020572262,-0.016939903,0.041655496,-0.031813692,0.009347494,-0.011830161,0.0012232831,0.029192172,-0.020383423,0.015862413,-0.024526756,0.016728848,0.0063149733,-0.018228445,-0.0015023749,-0.021982994,0.018483933,-0.027414871,-0.030147472,0.014707168,-0.028747847,0.0145516535,-0.012652163,-0.020961046,-0.012385568,0.028503468,0.014029572,-0.0032657909,-0.03294672,-0.018417284,0.004770943,-0.008419964,-0.057140235,-0.017384227,-0.02153867,-0.011763512,0.0012170348,0.011830161,-0.005617938,-0.0295032,0.031569313,0.00459599,0.012230054,-0.022716131,-0.023282645,0.02141648,-0.0005331904,-0.018517258,-0.004179435,-0.0028797833,0.019472556,-0.0018397844,0.02242732,-0.005765121,-0.01641782,0.012663271,0.010363888,-0.022416212,-0.028347954,-0.006209446,0.04692075,-0.0076701655,0.0038211977,-0.011485809,-0.034213047,0.056784775,0.03261348,-0.04709848,0.01945034,0.038278624,-0.015340331,-0.01404068,0.0135630295,0.016262306,-0.020605586,-0.015595818,0.017384227,0.01815069,-0.02486,0.023304863,-0.03574597,0.035190564,0.0014468343,0.0069092587,-0.04949784,-0.00292977,-0.03359099,0.018161796,0.009503007,0.033768725,-0.027459303,-0.02081664,-0.029880876,-0.0060817027,-0.001680105,-0.010058414,0.014185085,0.017561957,0.017506417,0.024104647,0.026926113,-0.03354656,-0.032146934,-0.034568507,-0.03354656,-0.0016009596,-0.02379362,-0.044876855,-0.00069391116,-0.016373387,-0.021127667,0.0054929717,-0.032080285,-0.0071480833,0.011974567,0.021605318,0.02022791,-0.012085648,-0.012285595,-0.007986748]},{"id":"class-GuildManager","type":"class","source":"main","text":"Class: GuildManager\nDescription: Manages guilds with fetch.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: create(options: { name: string; icon?: string | null; empty_features?: boolean; }) -> Promise — Create a guild. POST /guilds.; fetch(guildId: string) -> Promise — Fetch a guild by ID from the API (or return from cache if present).; resolve(guildId: string) -> Promise — Get a guild from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.guilds.get(id) ?? (await client.guilds.fetch(id))`.; set(key: string, value: Guild) -> this","meta":{"url":"/docs/classes/GuildManager"},"embedding":[-0.042317893,0.015786514,0.0066271415,-0.009855164,0.0011869826,0.019014535,-0.04078943,-0.010488221,0.006296355,0.012330362,0.039397843,-0.051055226,0.002304101,-0.002207146,0.04562576,-0.0043971827,-0.061594777,-0.02575574,0.023679769,-0.004796408,0.017611543,0.022858506,0.012900683,0.024706349,-0.056256562,0.049138945,-0.03104833,0.087966464,-0.013813199,-0.028470473,0.032736484,-0.009792428,0.000076547905,-0.014976655,0.003698538,0.030044563,0.048819564,0.022288183,-0.0029856355,0.02669107,-0.016938563,-0.03857658,0.034036815,-0.033215553,0.037184995,0.005469388,-0.02543636,-0.01810202,0.013322722,0.029086422,-0.037321873,-0.027261391,-0.057442833,0.09262029,0.0027760423,-0.071860574,-0.0435726,0.0143378945,-0.036797173,0.031344898,-0.002748952,0.014292269,0.010488221,0.027945777,0.0041861637,0.04500981,-0.029428614,0.042682897,0.01723513,0.03946628,-0.009222107,-0.04129131,-0.02198021,-0.008634675,0.016208552,0.026280437,0.009809539,0.04015067,0.022607563,-0.0033363837,-0.024820413,-0.02598387,-0.012524271,-0.046812028,0.027831713,0.0007706476,-0.017474666,0.003632951,0.013482412,-0.017007003,-0.018695155,-0.032759294,-0.079480074,0.035268713,-0.02098785,-0.028538913,0.03193803,-0.004702305,-0.0043715183,0.06675049,0.078385055,-0.009666958,-0.009860868,-0.0026092231,0.013288503,-0.0044684727,-0.107311785,0.017908111,-0.011691601,-0.0020745462,-0.08746458,0.018524058,0.010585176,0.023291951,-0.031093955,-0.02605231,-0.014600243,-0.017805453,-0.015010875,-0.017771233,-0.04396042,0.016014641,0.0510096,-0.017908111,0.034356195,-0.0071974634,-0.006307761,-0.00015888814,-0.05251525,0.002383946,0.01714388,0.019025942,0.01018595,0.0010665022,-0.023348982,-0.003478964,-0.046812028,-0.020679876,-0.047952674,-0.05269775,-0.00426886,-0.045032624,0.020223618,0.03946628,-0.027238578,-0.0018449917,-0.013778979,0.027307017,-0.025048543,0.013459599,-0.06670486,0.006923709,-0.037002493,-0.016037455,0.02431853,-0.010334235,-0.020383308,0.006427529,-0.05069022,-0.012661148,0.036135603,-0.037093744,-0.010722053,-0.0047707437,0.002959971,0.0069065993,-0.025253858,0.010528144,-0.027375456,0.024683535,0.04596795,0.014588837,-0.05123773,0.032348663,0.021740675,0.0038325638,-0.050507717,-0.00990079,-0.05005146,-0.02137567,0.044393864,-0.005580601,-0.057169076,-0.032668043,-0.04927582,0.027945777,-0.020850971,0.0057859165,0.031344898,-0.02201443,-0.014588837,0.026234811,-0.0007906089,0.030683324,0.037344683,-0.007260199,0.03786938,0.010334235,0.0067526125,-0.025573239,-0.02265319,-0.008668894,0.059860997,-0.012900683,0.011748633,-0.025550425,0.004043583,-0.00022099978,0.015718075,-0.002587836,-0.018216085,-0.005058756,-0.02431853,-0.0002894384,-0.03216616,0.003852525,-0.032918986,0.025801366,-0.03848533,0.042888213,-0.017771233,0.009507268,0.055070292,-0.035451215,0.027466707,-0.012284736,-0.010054776,-0.037641253,0.029017983,0.0132999085,0.019812986,-0.023428828,-0.074050605,-0.07660565,-0.020862378,0.009541487,-0.00040920603,0.075784385,0.028972358,-0.0050017238,-0.011417846,-0.05853785,-0.009501564,-0.0191286,0.004656679,-0.021501139,-0.020246431,-0.009929306,0.06834739,0.02075972,0.027786087,-0.009632738,-0.0044684727,-0.016265584,0.02986206,0.038918775,-0.045831077,0.030934265,-0.0021814816,0.027763275,-0.022208339,0.007830521,0.01255849,0.02012096,-0.049640827,0.005315401,-0.011942542,0.002383946,-0.01880922,0.05237837,0.023063822,0.02764921,0.031709902,-0.06419545,-0.011377924,0.031823967,-0.0071632443,0.027307017,0.01108706,-0.020645656,-0.017862486,-0.023885084,0.046059202,0.028584538,0.03572497,0.022037242,0.027945777,0.0059769745,0.0110015115,0.05648469,-0.0037413123,-0.021455513,-0.0032479838,-0.035382777,0.031002704,0.030158628,0.039990976,-0.013676321,0.080118835,0.06091039,-0.00046338662,0.010476815,-0.060499758,-0.057716586,0.00020406833,0.020782534,0.013106,-0.007876147,-0.023656957,-0.039968167,0.019037347,-0.0056205234,-0.029747995,-0.0010486796,-0.02021221,0.035154648,0.010533847,-0.005711775,0.0074712182,0.04895644,0.046697963,0.013026155,-0.017064035,0.032029282,-0.012706774,-0.06647673,-0.037595626,-0.06091039,-0.035542466,0.053747144,0.044393864,-0.023497267,-0.018911878,0.05830972,0.036569048,-0.0048734015,0.0014714308,0.0058229878,0.028607352,-0.012193484,0.03476683,0.008047244,-0.02233381,0.024683535,0.033215553,0.005563491,0.0015911984,0.045192316,-0.005386691,-0.0050188336,-0.010984401,0.043618225,-0.032987423,-0.014086953,-0.027603585,-0.040903494,0.0009795281,-0.025208233,-0.036819987,0.025778554,-0.043207593,0.030249879,-0.029360177,0.027147327,-0.04350416,0.045169502,0.006815348,0.030090189,0.008035837,-0.02986206,-0.001703837,0.026919197,-0.031071141,-0.011372221,-0.012957715,-0.049138945,-0.0056262263,-0.003786938,0.057716586,0.018660937,0.016527932,-0.007157541,0.01493103,-0.01323147,0.018364368,-0.041154437,-0.026417315,-0.008452172,-0.029360177,0.025481986,0.024866039,0.034424637,0.019778768,-0.012444426,-0.03303305,-0.011047137,0.027968591,-0.01076768,0.008474985,0.025367923,0.057579707,0.010596583,-0.012467239,-0.0023725396,-0.0067012836,0.012010981,0.040173482,0.042454768,0.018877657,-0.03912409,0.03786938,0.03978566,0.04254602,-0.005446575,0.02447822,-0.014109766,0.0038981508,-0.019527825,0.012216297,0.031504586,0.004819221,-0.014554617,0.03193803,-0.0137333535,0.02748952,0.0016967079,0.06506234,0.006404716,-0.058994107,-0.016493712,-0.07026367,0.016892938,0.045671385,0.027307017,-0.0045882403,0.013014748,0.0049874657,-0.01746326,0.016870124,-0.002837352,-0.0007253783,-0.02591543,-0.009438829,0.03129927,-0.015022282,0.045123875,0.027717648,-0.06218791,0.0013652083,0.012182077,0.0007720734,-0.011491988,0.018432807,0.036888428,-0.01489681,0.024683535,-0.02098785,0.00072181376,0.0013887341,-0.053747144,0.013185845,0.0072487923,-0.018775,0.0006808219,0.018216085,0.059860997,-0.02293835,0.023383202,0.005512162,0.03225741,-0.03469839,-0.003290758,0.038530953,0.027717648,-0.042888213,0.00988368,-0.0194822,-0.012068014,0.043298844,0.021934584,0.02271022,0.010454002,-0.0034561513,-0.026029496,-0.0059769745,0.08344951,0.00579162,0.015615416,0.013710541,-0.022402247,-0.048910815,0.023702582,0.033215553,-0.010454002,0.004964653,0.019664703,-0.0011356537,-0.070309296,-0.0038240089,-0.00042025602,0.036911238,-0.03166428,-0.044872936,0.0022285332,-0.023907898,-0.010670724,-0.013436786,-0.010630802,0.0011021473,0.029223299,-0.002442404,0.053975273,-0.012866464,-0.028926732,0.0026092231,0.009935009,-0.041382562,0.01106995,-0.004066396,0.009581409,-0.020018302,-0.0022413654,-0.028128281,-0.015398694,0.0052441107,0.023953523,-0.01489681,0.0066784704,-0.011554724,0.053519014,-0.006501671,-0.020885192,0.027854526,0.01964189,-0.00089825713,-0.042728525,-0.014086953,-0.013322722,0.0221399,-0.06652236,-0.0064446386,0.009746803,-0.009102339,0.009090933,-0.03579341,0.017280756,-0.027831713,0.023520079,0.003165287,0.024364155,0.028789854,-0.00908523,0.033763062,-0.055663425,0.009843757,0.01928829,0.023029601,0.017121065,0.00823545,-0.013334128,0.010146028,0.0027104553,0.021158947,0.01342538,-0.036249667,0.031071141,0.011400737,0.011286672,-0.023120854,-0.038530953,-0.006051116,-0.006878083,-0.012695367,0.03248554,0.02630325,0.019402355,-0.015524165,-0.023406014,0.02012096,0.019835798,-0.0016853015,-0.03166428,0.025732929,0.03992254,-0.03597591,0.02518542,-0.0010287183,0.026668256,0.00501313,0.076240644,-0.001191973,0.014839779,0.017543105,0.008805771,-0.0031852482,-0.02185474,-0.004254602,0.03424213,-0.03748156,0.0017366305,0.0068210512,0.016573558,-0.024774788,-0.015421507,-0.002361133,-0.025367923,0.032576792,-0.008440766,-0.012045201,0.013254283,0.01103573,0.010168841,-0.0064731548,-0.08262825,-0.0030455193,-0.018398587,-0.006746909,0.010009151,-0.0026063714,0.010311422,0.00002517437,-0.03319274,0.028402036,0.0146800885,0.05173961,-0.016584964,-0.021774894,0.00084336364,-0.0003247271,-0.028059842,0.02534511,-0.0044542146,-0.002200017,-0.00016476959,-0.009666958,-0.0069636316,0.0177142,0.013756166,0.009336171,0.019630482,0.04129131,0.010083293,0.004642421,-0.0077620824,0.015752293,-0.01659637,0.023018196,-0.009427423,-0.019630482,0.0009731119,-0.039238155,-0.025299484,-0.022425061,-0.059997875,0.03232585,-0.031071141,-0.023474453,0.022926943,-0.01640246,0.045899514,-0.060956016,0.0031766936,-0.0033021644,0.045534506,-0.0065929224,0.008446469,0.013334128,0.044393864,-0.010146028,0.03556528,0.02764921,0.028493287,0.018638123,0.022801474,0.0034418933,-0.009501564,-0.008839991,-0.037983444,-0.016368242,0.0073514506,-0.037915006,0.022208339,-0.04348135,-0.0077677853,0.05292588,-0.050918348,0.010157434,0.016870124,0.010704944,0.020850971,-0.0031396225,0.013836011,0.03447026,-0.03374025,-0.018227492,0.0064731548,-0.003034113,0.0019904238,0.0009873699,-0.027033262,0.00018695868,0.033306804,-0.007465515,0.0026006682,0.0071746507,0.011161202,-0.04808955,0.0011983891,0.028265158,-0.023474453,-0.06173165,0.009176481,-0.06916865,-0.0092677325,0.014816965,-0.0011078505,0.007779192,-0.013505225,0.04001379,-0.053884022,0.003216616,0.011668788,-0.03572497,-0.0043173376,-0.029725183,0.011794259,-0.0044371053,0.0064731548,-0.02717014,0.002060288,-0.0014671533,0.044736058,0.006341981,-0.013048967,0.009290545,0.010904556,0.009113746,0.014315082,-0.020965036,0.0014785598,-0.0052441107,0.009347578,-0.020474559,-0.006946522,-0.035063397,-0.021991616,0.018957503,0.010322828,-0.04510106,0.0041804602,-0.018090613,0.006142368,-0.036774363,0.019322509,-0.0057716584,-0.047085784,-0.04389198,-0.011092762,-0.03866783,0.03748156,0.0063876063,0.00092748617,0.0035416996,-0.007180354,0.000011345175,-0.017132472,-0.023029601,-0.02255053,0.0046481243,-0.019904237,0.000066478155,0.021044882,-0.033648998,-0.015318849,0.009467345,-0.034196507,0.0074198893,-0.024090402,-0.013596476,-0.00804154,0.0116459755,-0.0020702688,0.008948352,0.0012490052,0.009929306,0.010277202,0.023793833,-0.02582418,-0.012216297,-0.028265158,-0.010117512,0.006849567,-0.016539337,0.007978804,-0.032759294,0.0034390416,-0.030204253,-0.06939678,-0.0074997344,0.04325322,-0.0006148784,-0.015946204,0.0145089915,0.014600243,0.02575574,-0.0278089,-0.021090508,0.006718393,-0.027238578,-0.004716563,0.01643668,0.029428614,0.02931455,-0.013790386,0.008121385,0.023291951,0.022322403,0.011862697,0.008988274,-0.04904769,-0.012934903,0.034036815,-0.026987636,0.030090189,-0.037048116,0.03752719,0.011166905,0.0011613182,0.0016211403,-0.010123216,0.008765849,-0.034515887,0.015775107,0.01138933,0.010972995,0.019972676,-0.033854313,0.011748633,0.010106105,-0.041085996,0.01973314,0.0040008086,0.008144198,0.051465858,0.022573344,-0.020269243,-0.02060003,0.016014641,-0.008606159,0.014794152,0.0040920605,-0.0068039414,-0.0255048,-0.015136345,0.05306276,-0.017794047,-0.021900365,0.031322084,0.00031314243,0.023679769,-0.020622844,0.0023625589,-0.03611279,0.0038496736,-0.0033449384,0.00972399,0.016071673,0.037892193,0.024888853,-0.011931136,0.034105256,0.03348931,-0.008309592,-0.014839779,-0.015079314,0.000053334017,-0.01259271,-0.0011827053,0.0020959333,0.036318105,0.009079526,0.01525041,0.002653423,-0.04220383,0.013881638,0.023086634,-0.020075334,0.013436786,0.0026063714,0.0136421025,0.024888853,-0.00154985,-0.036774363,-0.0026120748,-0.032668043,-0.0009025346,-0.022208339,-0.005044498,0.016493712,0.0081898235,0.0061366647,-0.023406014,-0.025573239,0.012467239,-0.01989283,-0.00086688943,0.0027674874,-0.010585176,0.03389994,-0.01207942,-0.002084527,-0.008805771,0.007283012,0.015626824,0.0066727675,-0.0027817455,0.013881638,0.043139156,0.038850334,0.0014593113,0.0006612171,0.0019048755,-0.015353068,0.015273223,0.022219745,-0.012991935,0.037983444,-0.00097097317,-0.012672555,0.026942011,0.041222874,0.0184214,-0.0315274,0.00084265077,0.008303888,-0.021067694,0.0026519974,-0.017987955,0.008914133,0.021398481,-0.0011306633,0.040219106,0.0005058043,-0.00043166245,0.0055549364,-0.026942011,0.017999362,0.011919729,-0.030135814,-0.00052362686,0.026189186,0.0021757784,0.0070491796,-0.024181653,0.011851291,-0.018273117,-0.01223911,0.023291951,-0.015934797,0.012102232,-0.028219532,-0.0023383202,-0.00013892687,-0.009444532,0.0032936095,-0.046812028,-0.012296142,-0.007802005,0.009119448,0.012204891,0.0354284,0.0001933748,0.05465966,0.036774363,-0.00905101,0.0019718884,0.036318105,0.012798025,0.00055748975,0.012250517,0.009997744,0.028151093,0.010071887,-0.012501458,-0.03255398,0.0017209466,-0.007653721,0.0055549364,0.031573027,0.005657594,0.02701045,-0.0015142049,-0.039511908,0.0025350812,0.004708008,0.011520504,-0.017417634,0.031709902,-0.005988381,-0.044576366,-0.01973314,-0.01339116,0.0025536167,-0.0011791408,0.027877338,-0.021888958,0.03809751,0.018558277,0.024706349,0.022219745,-0.0059997872,0.045808263,0.02518542,-0.04927582,-0.023234919,0.048910815,-0.020303464,-0.020018302,0.004006512,-0.0025564684,0.0063191676,-0.019048754,0.001177002,-0.023497267,-0.026508566,-0.03175553,0.008412249,-0.0015027984,0.029542679,0.014531804,0.004246047,0.03848533,0.0029628228,-0.029428614,-0.0004341576,0.0108304145,0.011851291,0.029337363,0.06177728,-0.0030398162,-0.014965249,-0.001147773,-0.022196932,-0.0018549723,0.029565493,0.0092278095,0.02915486,-0.0063762,-0.002522249,-0.025732929,-0.0040606926,0.016733248,0.011577536,-0.013288503,0.038074695,0.000068527756,0.0038268606,-0.022185525,0.009068119,-0.042431958,-0.027626397,0.029497053,0.0054095043,0.022607563,0.00056390587,-0.0027503779,0.0046680854,0.0036728736,-0.006490264,0.011058544,0.047268286,0.007898959,0.0061994,-0.03216616,-0.015558384,0.007859037,-0.015067907,-0.026326064,-0.00011023255,-0.034949332,-0.0017437595,-0.017896704,0.014372114,-0.0014429146,-0.014098359,0.00908523,-0.025002915,0.0030968485,0.038143136,-0.027763275,-0.019003129,0.032736484,-0.003567364,-0.022755848,-0.007864741,-0.0014785598,0.01864953,-0.057123452,-0.025641676,-0.008007321,0.016334021,0.011235343,-0.0009374668,-0.0045882403,-0.009165075,0.0040321765,0.009512971,-0.0063647935,0.02591543,0.005512162,-0.014258049,0.010106105,0.038051885,0.012683962,-0.027375456,-0.038873147,0.007955992,0.020497372,-0.026645444,-0.0036700221,-0.0039352216,0.008109978,-0.0030597774,0.0069636316,0.011320892,-0.0040008086,-0.039101277,0.04190726,-0.031732716,0.018877657,-0.0093589835,0.017052628,-0.0010800472,-0.077974424,0.010362751,0.0255048,0.008737333,-0.0114349555,-0.03143615,-0.0097411,0.00669558,-0.012341768,0.036728736,-0.008948352,0.00057816395,-0.011400737,-0.009872274,0.056986574,0.0012853632,-0.033010237,-0.008737333,0.031732716,0.008452172,-0.017976549,-0.034264944,0.009621332,-0.029405802,-0.022310996,-0.018729374,-0.01493103,-0.00031492466,0.008897023,-0.027900152,-0.023885084,0.010727757,0.004123428,-0.02701045,0.029246112,0.01255849,0.021056289,0.0041490924,0.00010060836,-0.031185206,0.016288396,-0.021444106,-0.0004109883,-0.0083609205,0.0040008086,0.029907685,-0.037595626,-0.007950288,-0.0109615885,-0.033375245,-0.0027746165,-0.024501033,0.03501777,-0.007334341,0.003136771,-0.03198366,-0.0019562044,-0.005221298,-0.01941376,-0.0029656743,0.006068226,-0.014543211,-0.0143378945,-0.020542998,-0.037413124,-0.00577451,-0.011377924,-0.0018107723,0.0020289205,-0.028447662,-0.0065415935,0.06912302,0.0056062653,0.0024680684,-0.014520398,0.023189291,-0.020474559,-0.00905101,-0.024660723,-0.0040778024,0.010944479,-0.009336171,-0.0036785768,0.03992254,-0.017029814,-0.025231045,0.0018464174,-0.032896172,0.007459812,0.010408376,0.020691281,-0.014600243,-0.024546659,-0.018273117,0.03786938,-0.02732983,0.021033475,0.0031567323,-0.032918986,0.05064459,-0.016482305,-0.004716563,0.0017794046,0.07176932,-0.018569684,-0.02678232,0.027466707,-0.0071176183,0.015980422,0.028242346,-0.019208444,0.02268741,-0.0032308742,-0.00671269,-0.0013616438,0.03761844,0.016117299,-0.019778768,0.0054750913,0.011885511,0.0023896492,0.028584538,0.02159239,0.002880126,-0.018957503,-0.013026155,-0.010071887,0.007151838,-0.003866783,-0.02316648,0.012090826,-0.0146800885,-0.023725394,-0.06141227,0.024888853,0.041930072,0.02207146,0.0047564856,-0.009672661,0.004688047,-0.036956865,-0.04078943,0.02931455,0.01627699,-0.03620404,0.019014535,-0.003986551,-0.021615203,0.00054216234,0.012615522,0.003399119,-0.008948352,-0.012900683,-0.016459493,-0.011241047,0.02463791,0.00937039,-0.016984189,0.034515887,0.0056718523,-0.0021087655,-0.021638017,-0.0080985725,-0.0008711668,-0.07897819,-0.019505013,-0.014292269,-0.022755848,0.03456151,-0.014566024,0.036158413,0.008663191,-0.008252559,-0.042272266,-0.024774788,-0.011395033,-0.029839247,-0.0014856888,0.024592284,0.009820945,0.023189291,0.0052982913,-0.023029601,0.01076768,0.01730357,0.016858717,-0.042135388,-0.030067375,-0.0011741504,-0.019653296,-0.0014008534,0.009877977,-0.012855058,-0.019619077,-0.021170352,-0.006564406,0.0023055268,0.02021221,-0.049777705,-0.03579341,0.008452172,-0.0037897897,-0.02255053,0.002610649,-0.013961483,0.011714414,-0.008303888,-0.03866783,0.0036358028,-0.06232479,0.05853785,0.005825839,0.024843225,-0.04275134,-0.0009880828,-0.03588466,-0.00044770277,-0.0047336724,-0.0061081485,-0.011007215,-0.017212318,0.058446597,-0.0062393225,0.004234641,0.002472346,-0.0011078505,0.014657275,0.03193803,0.0038439701,0.010722053,0.015558384,0.022447873,-0.004052138,0.055709053,0.0012347471,-0.0057345876,0.001755166,-0.03784657,-0.015467132,0.02502573,-0.0016439531,-0.0061822906,-0.0044684727,0.0435726,-0.036774363,-0.02098785,-0.0069008963,-0.0032622418,-0.014976655,-0.02114754,-0.034105256,0.005315401,0.0038867444,-0.015033687,-0.0123988,-0.011896917,-0.027603585,0.008383733,-0.013790386,0.011497691,0.008868507,-0.008018727,-0.003618693,0.00054430106,-0.006438935,0.036181226,-0.00063697837,0.036158413,-0.038371265,0.0029941904,0.0045796856,-0.008640378,-0.008332404,-0.011149795,0.0210791,-0.0031396225,0.009079526,-0.021010661,0.009250623,-0.0024281458,-0.0001710966,0.011828478,-0.00078704435,-0.022082867,-0.022425061,0.010761976,-0.023999149,0.007100509,-0.025299484,-0.008817178,-0.01663059,-0.0072430894,0.02685076,0.019676108,-0.0064674513,-0.0016981338,0.04350416,-0.010083293,-0.0012996212,0.031823967,-0.0123988,-0.0045682793,0.026554191,-0.007511141,0.046720777,-0.016026048,-0.005609117,0.0010401247,0.026873572,-0.017383415,0.017531699,-0.0143378945,-0.022447873,0.010111809,-0.0067240964,-0.020189399,0.010191654,0.0040692473,-0.015889172,-0.001994701,-0.0060796323,0.020645656,-0.02995331,0.031253647,-0.013322722,-0.015261817,0.008822882,0.0070320703,-0.007180354,-0.01973314,-0.04594514,0.05014271,-0.020257838,0.00093817967,0.041245688,0.0008583346,0.00013464945,-0.025550425,0.01358507,0.012524271,-0.009638442,-0.028151093,0.0008298185,0.0075510633,-0.014873997,-0.025002915,-0.0042574536,-0.0032308742,0.038051885,0.036249667,-0.008149901,0.015113533,0.0007977379,-0.018375775,-0.006245026,0.0069636316,-0.020155178,0.007784895,-0.0016567854,0.032782108,0.003151029,0.018717967,-0.0055007557,-0.02518542,0.026280437,-0.0070434767,0.023839459,0.003034113,0.0011727246,-0.016813092,0.038987212,0.0051785237,0.02630325,0.005532123,-0.013699134,-0.0011242472,0.026942011,0.045215126,0.014429146,0.01569526,0.03620404,0.007009257,0.007864741,0.009969229,0.0022256817,-0.014782746,-0.055435296,-0.020702688,-0.022025835,-0.03066051,-0.025938245,0.021478327,-0.028470473,-0.013140218,-0.032759294,0.01675606,-0.0033449384,0.01746326,0.015273223,0.00772216,0.0088742105,-0.015239004,-0.0035645124]},{"id":"class-GuildMember","type":"class","source":"main","text":"Class: GuildMember\nDescription: Represents a member of a guild.\nProperties: accentColor: number | null, avatar: string | null, banner: string | null, client: Client, communicationDisabledUntil: Date | null, deaf: boolean, displayName: string, guild: Guild, id: string, joinedAt: Date, mute: boolean, nick: string | null, permissions: { has(permission: PermissionResolvable): boolean; }, profileFlags: number | null, roles: GuildMemberRoleManager, user: User\nMethods: addRole(roleId: string) -> Promise — Add a role to this member.\nPrefer member.roles.add(roleId) for Discord.js parity.; avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the guild-specific avatar URL for this member.\nReturns null if the member has no guild avatar (use displayAvatarURL for fallback).; bannerURL(options: { size?: number; extension?: string; }) -> string | null — Get the guild-specific banner URL for this member.\nReturns null if the member has no guild banner.; displayAvatarURL(options: { size?: number; extension?: string; }) -> string — Get the avatar URL to display for this member.\nUses guild-specific avatar if set, otherwise falls back to the user's avatar.; edit(options: { nick?: string | null; roles?: string[]; avatar?: string | null; banner?: string | null; bio?: string | null; pronouns?: string | null; accent_color?: number | null; profile_flags?: number | null; ... 5 more ...; connection_id?: string | null; }) -> Promise — Edit this guild member. PATCH /guilds/{id}/members/{userId} or /members/@me for the bot.\nFor @me: nick, avatar, banner, bio, pronouns, accent_color, profile_flags, mute, deaf,\ncommunication_disabled_until, timeout_reason, channel_id, connection_id.\nFor other members: same plus roles (array of role IDs).; permissionsIn(channel: GuildChannel) -> { has(permission: PermissionResolvable): boolean; } — Compute the member's effective permissions in a guild channel.\nApplies role permissions and channel overwrites.; removeRole(roleId: string) -> Promise — Remove a role from this member.\nPrefer member.roles.remove(roleId) for Discord.js parity.","meta":{"url":"/docs/classes/GuildMember"},"embedding":[-0.0074089505,0.038620517,0.0034007828,0.036947343,0.017671464,0.013809413,-0.026495736,-0.01832469,0.025853971,0.03529709,0.018519511,-0.03788707,0.01829031,0.01591807,0.022335723,0.0014439719,-0.046046656,0.0011610507,0.0014196191,0.04173766,0.01107618,0.020479187,0.011322573,0.045886215,-0.038162112,0.022507625,0.0051856926,0.05129538,-0.01212478,-0.039629005,0.06999826,-0.021671038,-0.0059305984,-0.0050624963,-0.018737253,-0.0051513123,0.029612882,0.008297108,-0.016445234,-0.010732378,-0.018152788,-0.013626051,-0.003905027,-0.019287338,-0.018657032,0.044465166,-0.016697356,0.0134426905,-0.0038649167,0.03548045,-0.059271604,0.020135384,0.008090827,0.1200101,-0.023493193,0.00043261854,-0.043754637,-0.010228134,-0.025235126,0.008010605,-0.005371919,-0.025395568,-0.008056446,0.014428258,-0.018152788,-0.002695987,-0.067522876,0.013144728,0.02447876,0.02309209,0.060463455,-0.017316202,0.00041793528,-0.0006664761,-0.030758891,-0.006217101,0.013316629,0.02194608,0.0090935845,-0.012892606,0.011838277,0.037359904,-0.040064488,-0.019161277,0.041072976,-0.016353553,-0.02933784,-0.039651923,0.00074418983,-0.036122214,-0.016605675,-0.049645126,-0.105707906,-0.030346328,0.013557291,-0.011419984,0.019035216,0.013935474,-0.03685566,0.0562003,0.06284715,0.0145887,-0.06486413,-0.033234272,0.045679934,-0.0022203932,-0.0657351,0.044396404,-0.060509294,0.013603131,-0.05244139,0.06999826,0.006858866,0.01604413,-0.043158714,0.0045353323,-0.0023808344,0.014393878,-0.0006793687,-0.049874328,-0.070364974,-0.011712216,0.04288367,-0.03401356,0.0024782452,-0.02697706,-0.006234291,-0.01588369,-0.044923566,-0.008228348,-0.0086409105,-0.016949479,0.013843793,-0.026449896,-0.045634095,-0.0073631103,-0.00005394302,-0.055512693,-0.03752035,-0.05734631,-0.0026114688,0.0052916985,0.03435736,0.013671892,-0.022312803,0.026426977,-0.03275295,0.033853117,-0.061838668,0.018622652,-0.051799625,0.02075423,-0.00978692,-0.021877319,-0.038643435,-0.02073131,-0.0027833702,0.022553464,-0.05147874,-0.01580347,0.009615019,-0.028489793,-0.0010965877,-0.02070839,0.018118408,-0.057208788,0.004062603,0.032202862,-0.04396092,-0.0017505293,0.032317463,-0.009425927,-0.021395994,-0.021751259,-0.01722452,-0.007540742,-0.0126634035,-0.03419692,-0.038414236,-0.024524601,0.02319523,0.01228522,-0.040431213,-0.060142573,-0.05647534,0.009345707,-0.0014912448,-0.0034408933,0.008841462,0.014382418,0.0023034788,0.033303034,0.018106949,-0.0051914225,0.055375174,-0.027022902,0.06578094,0.015643029,-0.006910437,-0.039789446,0.0011703621,0.0075063617,0.04613834,-0.03671814,0.03772663,-0.018084029,0.015104404,-0.030919334,-0.03387604,0.00089102227,0.0022819913,-0.044602685,0.005704262,-0.010268244,-0.005598256,0.02571645,-0.07059418,0.016135812,-0.035090808,0.023011869,-0.069356486,0.045817453,0.026266536,-0.012961366,0.011505934,-0.0003070947,0.026312375,-0.020651089,0.016869258,0.0364431,-0.017213061,-0.019734282,-0.026220694,-0.034678243,-0.00018058601,-0.022221122,0.010285434,0.07884545,0.033188432,-0.0061368803,-0.024868404,-0.021659577,0.018473672,0.027572986,0.03048385,-0.009901521,0.0013472773,-0.007431871,0.024501681,0.018210089,0.0633514,0.04891168,-0.02805431,0.013362469,-0.029567042,0.02306917,-0.0009361464,0.08728007,0.009632209,0.025028845,-0.01715576,0.016422315,0.009317056,-0.018634113,-0.008342949,0.025899813,0.03768079,0.008245538,0.0005536658,0.0029767593,0.025028845,-0.014176136,0.027435465,-0.028145991,-0.005824593,0.023080628,0.0064291125,0.026060253,0.022278422,-0.01704116,0.012972826,0.0048476197,0.04302119,0.009179535,-0.029475361,0.04510693,0.017671464,-0.013614591,0.008818543,0.033188432,-0.020857371,0.00084733067,0.04290659,-0.021338696,0.031377736,-0.0014282143,0.05514597,-0.009076394,0.04276907,0.0413251,0.015333606,0.018530972,-0.007454791,-0.009666589,-0.0016903639,0.016834877,-0.0052888333,0.016697356,-0.012388362,-0.06105938,0.031171456,0.019321717,-0.017660005,0.009827031,-0.061701145,-0.0028335082,-0.011952878,0.015631568,0.031331897,0.056933746,0.027343784,-0.009798381,-0.0013587374,0.0077584838,-0.0063832724,-0.034907445,-0.027870947,-0.0087039415,0.03046093,0.0114314435,0.05271643,-0.04056873,0.0047874544,0.043754637,0.049553446,0.038826797,-0.012388362,0.057896394,0.021304315,0.00028757672,0.016342094,-0.044373482,-0.02325253,0.02194608,-0.0015628703,-0.004128499,-0.0105146365,0.028329352,-0.011746597,0.012995746,-0.010726647,0.033761438,-0.034930367,-0.019734282,-0.02333275,-0.026656179,0.020536488,-0.010291165,-0.00039967077,0.037061945,-0.032363307,-0.0005296712,-0.06623934,0.013259329,0.010337004,0.010571936,-0.008617991,0.019791583,0.011551775,-0.04274615,-0.025968572,0.03793291,-0.010205214,-0.020078084,-0.0041256337,-0.025280967,-0.055741895,0.0040826583,-0.024730882,0.025258048,0.025189286,0.025601849,0.05363324,-0.03050677,-0.006835946,-0.046115417,-0.045473654,-0.0043233205,-0.03055261,0.00095548533,0.031033935,0.038551755,-0.044419322,-0.018565351,-0.011769516,-0.016536916,0.03057553,0.050745297,0.016101431,-0.03680982,0.01822155,0.020696929,0.0001923147,-0.013694813,-0.019940563,-0.028879436,0.013202028,0.040820856,0.012090399,0.012709244,0.027733427,0.03162986,0.016949479,-0.0005733628,0.038345475,-0.05147874,0.023493193,-0.018920615,0.038574677,0.037657868,-0.021774178,-0.014978343,-0.0099359015,-0.049324244,0.018714333,-0.029727483,-0.0058131325,-0.010577667,0.008360138,-0.030162968,-0.067293674,0.012858225,0.0538166,0.0050796866,0.011918497,-0.035136648,-0.0039594625,-0.0014232004,-0.00095047156,0.03786415,0.01343123,-0.04762815,-0.007557932,0.0039451374,0.016365014,0.007666803,0.04031661,-0.0685772,0.032111183,-0.011872658,-0.007672533,0.041668903,0.020433348,0.05610862,-0.035778414,0.003916487,0.015127324,0.05244139,-0.016238952,-0.055558536,-0.021315774,0.015115864,0.011225162,0.039468564,-0.047398947,0.008967523,-0.06972321,-0.021201173,0.0013035857,0.010016122,-0.004128499,0.03515957,0.06793544,-0.001780612,-0.0062056407,0.03671814,-0.016433775,-0.026495736,0.016491076,0.035709653,0.038391314,0.043754637,-0.013729192,-0.043410834,-0.0012283789,0.028145991,0.024089117,0.0035526291,0.008039256,0.011952878,-0.0056842067,-0.00730008,0.011746597,-0.009597829,0.03499913,-0.005518035,0.018714333,-0.05624614,0.022805586,-0.01968844,0.0018808879,-0.058446478,-0.005346134,0.035961773,-0.010703728,0.015138784,-0.010033312,-0.042356506,-0.01463454,0.06353476,-0.036007617,0.0085435,-0.008354409,-0.018806014,0.0073115397,-0.0036557699,-0.044946488,0.024639202,-0.014943962,-0.005380514,0.027664667,0.030300489,0.018817473,-0.024960084,-0.0055466853,0.013041587,0.0027160423,-0.03568673,0.018634113,0.014370957,0.00734592,-0.019161277,0.054045804,0.0072370493,-0.024937164,-0.0061311503,-0.01580347,-0.017373502,0.011735136,-0.054687567,-0.0000463328,0.0010006095,-0.0019997864,0.0068875165,0.0072255894,0.031286057,-0.010130723,0.017866286,0.01338539,0.007815784,0.020502107,-0.03419692,0.0011768084,-0.049645126,-0.04056873,-0.0008065041,0.0061827204,0.0098213,-0.012915526,-0.023974515,0.011952878,0.008256998,0.0064061927,0.0049478956,-0.026656179,-0.0067729154,0.027687587,0.04501525,-0.015070023,-0.0067786453,-0.0077298335,0.022713905,0.00243527,-0.011133481,0.03332595,-0.006348892,-0.008715401,0.044533923,-0.01457724,0.020525029,-0.016662976,-0.06330556,0.024845483,-0.007557932,-0.041943945,0.0036099295,-0.016250413,-0.0043347804,-0.016468154,0.037268225,0.019356098,0.020444807,0.01840491,-0.0055438206,-0.014863742,-0.0073688403,-0.017545404,0.021395994,-0.035503373,-0.006618204,0.02304625,0.0053633237,-0.039789446,0.011735136,-0.0036930153,-0.040935457,0.04173766,-0.01699532,-0.010405765,0.008915953,0.019356098,0.02926908,-0.021361616,-0.005320349,-0.021533517,-0.010915739,-0.0072714295,-0.016708817,0.020444807,0.010239594,0.02695414,-0.007454791,0.021820018,0.014015695,0.023561953,0.014118835,-0.026106093,-0.017522484,0.002544141,-0.033486396,-0.006314512,-0.03676398,0.013373929,-0.010228134,-0.01837053,-0.021464756,0.032523748,-0.0069161667,0.031308975,-0.017029699,0.031446498,0.011437174,0.0013658999,-0.02807723,0.017831907,-0.01598683,0.0024510275,-0.012468582,-0.025189286,-0.028398113,-0.00611396,-0.028833596,0.010165103,-0.046642583,0.022198202,-0.02789387,-0.016846338,0.044350564,-0.04162306,0.029796245,-0.021659577,-0.0129269855,0.013270789,0.0316757,0.02309209,0.0009089287,-0.0067786453,0.029842084,-0.021373075,-0.0042574247,0.030667212,0.04033953,0.033807278,0.0027289349,0.01834761,-0.028650235,-0.020272907,-0.027091661,-0.017384963,0.01942486,0.0053891093,0.0026530118,-0.014932502,-0.009162345,0.03176738,-0.009087854,0.01583785,0.009236836,0.033303034,-0.023768235,0.00307417,0.014302197,0.02551017,-0.039491482,-0.021636657,0.030942254,0.0068015656,-0.009637939,0.025853971,-0.051707942,-0.0023994572,0.011058991,-0.010503176,-0.0060566594,0.006835946,-0.012583183,0.010279704,0.040522892,0.0065207933,-0.022851428,-0.055696055,0.019241497,-0.047078066,0.009764,0.010566207,-0.0008029228,-0.01105326,-0.013075967,0.009311326,-0.0021874455,-0.0020914671,0.018794553,-0.0046957736,-0.0023378592,-0.024066197,0.013259329,-0.021533517,0.03208826,-0.008984714,-0.033303034,-0.004134229,-0.0011510232,0.025831051,-0.02327545,0.016112892,0.02826059,-0.0020255717,0.035915934,-0.013316629,0.006956277,-0.00729435,0.006595284,0.010818329,-0.04040829,-0.048682477,0.01102461,-0.0036557699,-0.012078939,-0.002558466,0.04173766,-0.032477904,0.0072370493,-0.025876893,-0.021189714,-0.019264419,-0.033188432,-0.023584872,-0.0044579767,-0.008898763,0.049507607,0.0007885977,0.03781831,0.024043277,0.03781831,-0.028398113,-0.0045926324,0.013889634,-0.017682925,0.007798594,-0.011190781,-0.0110418005,0.009334247,-0.019275878,0.0027360974,0.036030535,-0.0047215587,0.0034838684,-0.029039878,0.0036156597,-0.009007634,0.009609289,0.014508479,0.003059845,-0.025601849,-0.012525883,-0.01698386,-0.019906184,-0.033257194,-0.026014414,-0.031538177,-0.055512693,0.028833596,-0.039881125,0.01602121,-0.035893016,-0.023630714,0.010136453,-0.08375037,0.001472622,0.041921023,-0.027779268,0.0007130327,0.028466873,0.02184294,0.04639046,0.005042441,-0.012743624,0.022668066,-0.023470271,0.014050075,0.0069161667,0.04260863,-0.005592526,-0.0032603967,0.006566634,0.02821475,-0.003936542,0.004641338,-0.0005837485,-0.051570423,0.0019625411,0.029796245,-0.0011452931,0.019711362,-0.043319155,0.033646837,0.0070135775,-0.0009841355,-0.0013916851,-0.0171443,0.011929958,-0.021567896,0.03302799,0.01834761,-0.01212478,0.024639202,-0.041072976,0.039606083,0.016158732,-0.011179321,-0.008623721,0.031194376,-0.021017812,0.00606812,0.05047025,-0.025601849,0.010617777,-0.012331061,0.011047531,0.03499913,0.020421887,-0.008165317,-0.023791155,-0.04402968,0.028604394,-0.029567042,-0.00018604746,0.051524583,0.033463474,0.013373929,0.0022977488,0.025372649,-0.030300489,-0.028008468,-0.035709653,0.022335723,0.008268458,-0.008176777,-0.0052229376,-0.019814502,-0.015665948,-0.02207214,0.036053456,-0.003283317,0.0038591865,-0.026449896,0.0020685468,-0.024341239,0.02695414,0.036832742,0.002326399,0.007941845,0.0014146053,-0.03064429,0.013534371,-0.015024183,-0.004036818,0.05262475,0.02071985,0.026129015,-0.02309209,0.0028678884,-0.00972389,0.014153216,-0.009764,0.04150846,-0.017350582,-0.002514058,-0.018508052,-0.015299225,-0.028604394,-0.0059019485,-0.044167202,0.03192782,0.017029699,-0.008027796,-0.015425286,0.0014826496,0.029979605,-0.01715576,-0.012594643,-0.04061457,-0.007999145,0.05102034,0.009615019,0.04008741,0.0107782185,-0.024822563,0.014302197,0.020307286,0.019264419,0.015115864,0.01583785,-0.0026014412,-0.0025885487,-0.0074376008,0.01824447,-0.024753803,-0.0056612864,0.02210652,0.0021587953,0.0010249622,0.0018665628,0.0037159354,0.009569178,-0.05225803,-0.02070839,-0.022794127,0.031033935,-0.023607794,0.029567042,-0.007724103,0.027664667,0.04022493,0.0013315197,-0.0079246545,0.01706408,0.03135482,-0.010881359,0.00011585439,-0.0026472816,-0.014932502,0.011505934,-0.0074032205,0.022988949,-0.03545753,0.007586582,0.015379446,0.014348038,0.024180798,-0.06261795,-0.05262475,0.01100169,-0.024753803,-0.04061457,-0.023493193,-0.03055261,-0.009001904,0.009861411,0.026885381,0.036786903,0.018049648,0.0466655,0.026289456,-0.019997863,0.027183343,0.058813203,-0.0024109173,-0.0030913602,-0.049278405,-0.010016122,0.07934969,0.005856108,0.016880719,-0.05775887,0.00089102227,0.007208399,0.016857797,0.019699901,0.02089175,0.005884758,0.0054406794,-0.053495716,0.0413251,-0.019436318,0.020135384,0.009529068,0.04758231,-0.0034609484,0.0019625411,0.0015886555,-0.027550066,0.0014769196,-0.0073974906,0.05115786,-0.021453295,0.024616282,-0.014806441,0.043296233,0.00305698,0.00020520731,0.015734708,0.0026386867,-0.02697706,-0.0014468369,-0.012858225,-0.012938446,-0.017877746,0.013603131,-0.014370957,0.0269083,0.006950547,0.013786493,-0.037199464,0.012331061,-0.05477925,0.007219859,-0.0068072956,0.007449061,-0.019356098,-0.0000049998016,0.027962629,-0.017889207,0.018874774,-0.007913195,-0.002684527,0.044121362,0.038689278,0.014164676,-0.04641338,-0.01945924,-0.005586796,-0.022221122,0.033738516,0.040935457,-0.0003344915,-0.008108016,0.003048385,0.028306432,0.0042631547,-0.020043705,0.016055591,0.00034845847,-0.016296253,0.000074535375,0.020479187,-0.0030999554,0.014061535,0.033440553,-0.035182487,-0.01966552,0.0029122964,-0.022931648,0.01095585,0.011402793,0.038872637,0.024134958,0.0007244928,-0.004735884,0.010033312,0.015127324,0.0019868938,-0.007196939,-0.047032226,0.023160849,0.005750102,0.037749548,-0.021567896,-0.040935457,-0.01960822,0.04297535,-0.02807723,-0.0024725152,-0.009941631,-0.032363307,0.012812385,-0.0054550045,0.009517608,0.010176564,0.013247868,-0.03204242,0.043387916,-0.02443292,-0.01570033,-0.0033377523,0.040843774,0.029131558,-0.03199658,-0.024226638,-0.031056855,0.012365441,0.032982152,0.005993629,0.01942486,-0.011144942,-0.022920188,0.03937688,-0.00041041462,0.006320242,0.0077527533,-0.01095585,0.024226638,0.021407455,-0.026426977,-0.034953285,0.007088068,-0.018760175,-0.0034895986,-0.010846979,0.004500952,0.025326807,-0.010147913,-0.02184294,0.032546666,0.013969854,0.02068547,-0.027756346,0.014187596,-0.03399064,0.012938446,0.0057787523,-0.0038419964,0.002379402,-0.038437154,-0.0034609484,0.0148752015,-0.016055591,0.013843793,0.0010249622,-0.03460948,0.026220694,-0.01457724,0.006452033,0.0109787695,-0.014978343,-0.011207972,-0.00857215,0.060325935,0.011546045,-0.0027876678,0.009517608,0.03660354,0.007792864,0.027687587,-0.011374143,-0.010623507,0.034747005,0.0028865112,0.009586369,-0.012067479,0.0024510275,0.00090606365,-0.020880291,-0.02060525,0.02327545,0.026610337,0.013167648,0.0067557255,0.034678243,0.021567896,0.0073058098,-0.014405338,-0.027366703,0.03043801,-0.017923586,0.0035927393,0.010686537,-0.009317056,0.04020201,0.004647068,-0.0003985964,-0.040706255,0.01099023,0.010594857,-0.0153909065,0.015608648,-0.016376475,0.02821475,-0.00090248237,-0.0018207224,0.0023006138,-0.015425286,-0.011735136,-0.016685897,-0.03561797,-0.007070878,-0.014279277,-0.03525125,0.018794553,0.024616282,-0.020307286,-0.012949906,0.0022289883,0.0010543286,0.054366685,-0.009345707,-0.00552663,-0.017430803,0.06225123,-0.018588273,-0.008715401,0.019356098,0.010657887,-0.0051971525,-0.0068531362,-0.0055552805,0.06724783,-0.022977488,0.010629237,0.005712857,0.0019782986,-0.008434629,0.00734592,0.008182507,-0.018084029,0.006199911,0.013167648,0.026518658,-0.016869258,0.0031085506,0.019917643,-0.034540724,0.027572986,-0.0030999554,-0.028650235,0.02457044,0.009488958,0.009998932,0.012078939,-0.02076569,0.02686246,0.004286075,0.005572471,-0.025189286,0.013522911,-0.0059134085,0.011614805,0.0030025446,0.011591885,0.028810676,0.0018737253,-0.005890488,0.018026728,0.01105326,0.026679099,0.03433444,0.010044772,0.021212634,0.0035526291,-0.008102287,0.00030494595,-0.0018594002,-0.04368588,0.026449896,-0.0018020998,-0.007832974,-0.031148534,0.044167202,0.041027136,0.009523338,0.0069734673,0.010835519,0.0038334015,-0.0056956667,-0.03263835,0.0117580565,0.006343162,-0.038987238,0.010136453,0.018817473,-0.019126896,-0.020674009,0.018897695,0.02086883,-0.023905756,-0.04758231,-0.00027540038,-0.04650506,0.016468154,0.026724938,0.0005468614,0.015241925,-0.02810015,-0.000915375,0.009414467,-0.032157023,-0.0023579143,-0.03321135,-0.01827885,-0.017969428,-0.051707942,-0.015081484,-0.027183343,0.024547521,-0.0002693122,-0.022954568,-0.022931648,-0.015562807,-0.013270789,-0.0047731292,-0.0047215587,0.010480256,0.035847172,0.011803897,-0.03674106,-0.0037445857,0.017407883,0.01463454,0.012949906,-0.025464328,0.0003677974,0.0025226532,-0.037497427,0.0029509743,0.021728339,-0.024822563,-0.02681662,-0.016101431,-0.013270789,0.009597829,-0.01338539,-0.009517608,-0.043204553,0.017648544,-0.008887303,0.02058233,-0.0062858616,-0.0048046443,-0.01816425,-0.0128009245,-0.004280345,0.010824058,-0.030300489,0.05111202,-0.03055261,0.011614805,-0.005987899,0.008595071,-0.006583824,-0.010079153,-0.0018407776,-0.03520541,0.0024223772,-0.014955423,0.052991472,0.013293709,-0.026541578,-0.029062798,0.015310685,0.057529673,0.026541578,0.02567061,0.004274615,0.0062572113,0.018530972,-0.016342094,0.023516113,0.007540742,0.023516113,0.0034895986,-0.06394732,-0.007890275,0.0048046443,-0.01835907,-0.025808131,0.0033635376,-0.0028678884,0.025326807,-0.01212478,0.018519511,0.0021960405,-0.002001219,-0.008847193,-0.021487676,0.002544141,-0.017854827,-0.0042287745,0.00024370606,-0.017889207,-0.023699474,0.019413399,-0.0067958357,-0.012342521,0.00861226,-0.019390479,-0.01101315,-0.009861411,-0.00152276,-0.015539887,-0.01586077,0.0073917606,-0.010285434,-0.03884972,0.018393451,-0.036993183,0.003286182,0.0041915295,-0.0020656819,0.005268778,0.03662646,-0.020066625,0.037428666,0.01213624,0.014244896,0.008434629,0.009225376,-0.021636657,-0.025143446,0.0070078475,-0.017373502,0.011964338,-0.017522484,-0.0040941187,-0.0026687693,-0.029016959,-0.0013673324,-0.01814133,-0.025303887,0.011597615,0.03536585,0.008108016,0.020066625,0.03197366,-0.042952433,-0.00979265,0.009878601,0.013098887,0.018233009,-0.013018667,-0.022771206,-0.014061535,0.03896432,-0.00426029,0.014726221,-0.026610337,0.008784162,-0.00038749442,-0.016640056,-0.029910846,-0.014554319,0.011127751,-0.005709992,0.018118408,-0.0039623273,0.008858653,-0.03784123,-0.00031282476,0.025258048,0.008795622,-0.019058136,-0.027527146,0.032225784,-0.022977488,-0.00364431,-0.004627013,-0.0033778627,0.0070651476,0.033234272,0.004684313,0.01228522,-0.021522056,0.04506109,-0.0010700863,-0.013775033,0.007850165,0.008004876,0.034838684,-0.020078084,-0.03046093,0.008726861,-0.0007513524,0.012823845,0.01570033,-0.017407883,0.0006729224,0.01832469,-0.010732378,-0.011488744,0.013729192,-0.011505934,-0.019711362,0.01715576,0.019711362,-0.0033205622,-0.031308975,0.017877746,-0.02201484,0.0344032,0.016685897,0.0055667404,-0.025074685,-0.009529068,-0.0219117,0.021671038,-0.014726221,0.025922732,-0.0095462585,-0.013557291,-0.032982152,-0.017728765,0.023951596,-0.013328089,0.038712196,0.04425888,0.012514423,0.037222385,-0.0035297088,-0.009890061,-0.040935457,-0.019825961,-0.016617136,0.005263048,-0.03311967,-0.022427404,-0.005033846,-0.005334674,-0.024914244,0.0030999554,0.010337004,-0.002584251,0.008875843,-0.017728765,0.0020513567,-0.015688868,-0.0066755046,-0.016903639]},{"id":"class-GuildMemberManager","type":"class","source":"main","text":"Class: GuildMemberManager\nDescription: Manages guild members with a Collection-like API.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProvides guild.members.me for Discord.js parity.\nProperties: me: GuildMember | null\nMethods: fetch(options: { limit?: number; after?: string; }) -> Promise — Fetch guild members with pagination. GET /guilds/{id}/members.; fetchMe() -> Promise — Fetch the current bot user as a GuildMember in this guild.\nCaches the result in guild.members.; resolve(userId: string) -> Promise — Get a guild member from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `guild.members.get(userId) ?? (await guild.fetchMember(userId))`.","meta":{"url":"/docs/classes/GuildMemberManager"},"embedding":[-0.008696421,-0.0004970963,0.022156712,0.0033842344,-0.0029022463,0.022463297,-0.025470197,-0.0009484995,0.012841224,0.028158717,0.047591534,-0.056128766,-0.0040946878,0.014126525,0.044926595,-0.007293202,-0.018913979,-0.00015016066,0.0002336242,0.021979837,0.02495136,0.056317434,0.037356287,0.0035758505,-0.028111551,0.006615176,-0.051270563,0.064760335,-0.038865633,-0.06584518,0.038629796,-0.011579506,-0.00027618508,0.02173221,-0.019079063,0.029337892,0.04462001,-0.0034255055,-0.014503862,0.0060668592,-0.041624904,-0.019515358,-0.005459584,-0.005344614,0.0035876422,-0.0143151935,0.01469253,-0.008000707,0.029762397,0.037261955,-0.039242968,0.0046459525,-0.029526561,0.096032076,0.0043098875,-0.038158126,-0.036955368,-0.0030024762,-0.018336182,-0.000070105685,-0.0012595071,0.023265138,-0.015954249,0.023489181,-0.0070750546,0.03495077,-0.008490065,0.040492896,-0.0043098875,0.024739107,0.028111551,0.001986911,-0.02321797,-0.03266317,0.0018763634,-0.010541831,0.026555037,0.02341843,0.012994517,-0.0007907847,-0.0020709275,-0.01117269,-0.012876599,-0.027474795,0.010618478,-0.018171098,-0.021036496,-0.0036407053,0.029267142,0.001217499,-0.030776488,-0.033441424,-0.08438182,0.0063852365,0.00310418,-0.02436177,0.020022403,0.0029361476,-0.017286716,0.05924179,0.064571664,-0.008395731,-0.011090148,-0.0070750546,0.045327514,-0.026389953,-0.057260774,0.00848417,-0.07457107,0.03320559,-0.044242673,0.040044807,0.044266257,0.014350569,-0.029880313,0.011644361,0.0032191498,0.018524852,-0.01184482,-0.009144508,-0.053298745,0.019008312,0.0565061,-0.030634986,0.024055185,-0.021378456,-0.0088379225,-0.031153824,-0.047497198,0.015211367,-0.008773068,0.0021711574,0.010459289,0.001994281,-0.035941277,-0.013348269,-0.021979837,-0.014197276,-0.0070219915,-0.0303284,-0.0078061437,-0.024385355,0.03575261,0.031389657,-0.0043541063,-0.000120220655,-0.040563647,-0.0005044661,-0.045539767,-0.011302399,-0.053110074,-0.017888097,-0.022085963,-0.023477389,-0.027191794,-0.010070161,-0.017098049,0.014209067,-0.045917105,-0.024338188,0.01057131,-0.0519309,-0.029078474,-0.005757326,0.039808974,0.015494369,-0.02549378,0.0040003536,-0.030634986,0.006874595,0.042851247,-0.01992807,-0.022628382,-0.007593892,0.0024467898,-0.010860208,-0.039761808,-0.036389362,-0.051270563,-0.024408938,0.022144921,-0.026177702,-0.021460999,-0.03528094,-0.054430753,0.014503862,-0.009333177,0.02495136,0.026272036,0.01696834,0.0025897648,0.08829668,-0.021826543,0.007641059,0.051695064,-0.010305996,0.043511584,-0.002915512,0.01067154,-0.044289842,-0.0022168504,0.010553623,0.058345616,-0.0149637405,0.01723955,-0.0006415453,0.00095365837,-0.030941572,-0.0258947,-0.0042509288,0.00862567,-0.020152114,0.0010759978,0.0043069394,-0.016673544,0.0017893992,-0.06711868,0.011974529,-0.031861328,0.051364895,-0.019444609,0.048817877,0.06556217,0.022722717,0.01374919,-0.036059193,0.026720123,-0.077778436,-0.0073403693,0.022758093,0.003693768,-0.01811214,-0.062496316,-0.03313484,0.0130416835,0.009415719,-0.011950946,0.0690997,0.021649666,-0.011367254,-0.016355168,-0.017333884,-0.013536938,0.026649373,0.018678144,-0.026696539,-0.01764047,-0.025706032,0.04160132,-0.0009625022,0.03153116,0.009852014,0.026272036,-0.00670951,0.011479276,0.036861036,-0.06726018,0.08466482,0.016991923,0.03301692,-0.044101175,0.04943105,-0.011337775,0.023760391,-0.050798893,0.018041389,-0.00017844245,-0.002386357,-0.013584104,0.06730735,0.05414775,0.030988738,0.04084665,-0.036861036,-0.02931431,0.03997406,-0.0050822473,0.027451212,0.0143151935,-0.004421909,-0.011815341,-0.046058606,0.04924238,0.023394847,0.033229172,0.034243263,0.046648193,0.028889807,-0.0077118096,0.044454925,-0.0011069513,-0.0031778787,0.0118742995,-0.05065739,0.052166734,0.017322091,0.07211839,-0.008537233,0.059524793,0.057779614,-0.0031955664,0.0031395555,-0.026272036,-0.03167266,-0.0054654796,-0.0011644361,-0.011833029,-0.017286716,-0.05509109,-0.037521373,0.00046982785,-0.0050321324,-0.03502152,0.0057602734,-0.026555037,0.01751076,0.019267732,-0.0070219915,0.03990331,0.050798893,0.019114438,0.004539827,-0.012068864,0.005020341,-0.014114734,-0.054666586,-0.04226166,-0.068533696,-0.02945581,0.009521844,0.04193149,-0.0046371087,-0.030068982,0.023489181,0.049949884,0.018395143,0.011160899,-0.0047904016,0.014433111,0.013631272,0.039808974,0.010270621,-0.059147455,0.03308767,0.016260834,0.0034343493,0.002233064,0.039266553,-0.0037468309,0.014338777,-0.02483344,0.02556453,-0.031955663,-0.011998113,0.012287011,-0.024173103,0.009368551,-0.026696539,0.0063970285,0.017204175,-0.057402276,0.036507282,-0.04186074,0.011090148,-0.018713519,0.008495961,-0.00043997995,-0.013336478,0.03884205,-0.0153528685,-0.006626968,0.025635282,-0.0098755965,-0.02313543,0.011502859,0.010730499,-0.02025824,0.012841224,0.0061081303,0.05013855,0.0040003536,0.0013862685,0.039502386,-0.05004422,0.030068982,-0.034314014,-0.030210482,0.00494959,-0.035870526,0.01718059,0.026272036,0.05452509,-0.0023952008,-0.036813866,-0.03174341,-0.00048641,0.030045398,-0.017215965,-0.0024718472,-0.01965686,0.05556276,0.024597606,-0.008248335,-0.01274689,-0.015930664,-0.008154,0.015600495,0.037898708,0.034785684,-0.027639879,0.016249042,0.01669713,0.041153233,-0.022321798,0.03388951,-0.025257945,0.00093228585,0.019008312,0.049478214,0.0073580565,-0.012900183,-0.047049113,0.007817935,0.012098343,0.03709687,-0.0092270505,0.06589234,0.013985025,-0.039478805,-0.023654265,-0.10197512,0.015753789,0.027639879,0.016095748,0.0038205294,0.007151701,0.0147043215,0.0031985142,-0.008908673,0.027050292,0.029432226,-0.007794352,-0.04259183,0.01449207,0.0057927007,0.0005980632,0.045068096,-0.059902128,0.0065385294,0.012829432,-0.013124227,0.009173987,0.048346207,0.04495018,-0.03254525,0.0015461942,-0.010724603,0.041011732,0.013914274,-0.07749543,-0.029078474,0.011467484,-0.018336182,0.033441424,0.018595602,0.022852426,-0.035611108,0.018866813,0.01703909,0.02636637,-0.021496374,0.00069423974,0.058487117,0.02032899,-0.029219976,0.0102647245,-0.016661754,-0.0047491305,0.029809562,0.014527446,0.021991627,0.011491068,-0.031696245,-0.012935558,0.018159308,0.031554744,-0.00310418,0.011237545,0.018666353,-0.0065326337,-0.032498084,0.0101114325,0.050563056,-0.010830729,0.031248158,0.01063027,-0.026531454,-0.07961795,-0.0040652086,-0.007918165,0.023029303,-0.050421555,-0.017274925,0.051364895,-0.025352279,-0.011886092,-0.020116739,-0.007487766,0.012369554,0.060751136,-0.020564824,0.04414834,0.00085342844,-0.0081363125,0.009822534,0.020741701,-0.04094098,0.0006747096,-0.000118838805,0.02931431,0.024008019,0.007865102,-0.026932374,-0.036908202,0.009244738,0.004383586,-0.015034491,0.0004860415,0.029361477,0.06792052,-0.016649961,-0.014834031,0.052166734,0.023772184,-0.01772301,-0.02749838,-0.012593597,-0.017557926,0.0035227875,-0.06608101,0.009374447,0.025140027,-0.016520252,-0.0001614918,-0.011396734,0.0037232474,-0.04025706,0.030422734,0.024125936,0.006762573,0.0032751607,-0.012381345,0.04322858,-0.046954777,-0.027427629,0.0078002475,0.028701138,0.002290549,0.0045486703,-0.022510465,0.01656742,0.0045840456,0.041766405,0.016249042,-0.029738812,0.002729792,0.011331879,-0.00845469,-0.023029303,-0.018241849,-0.006845115,0.006615176,-0.028111551,-0.0025573375,0.020576617,-0.006526738,-0.0054684277,0.025305111,-0.031625494,0.045162432,-0.00082394906,-0.034455515,0.02047049,0.027451212,-0.039408054,0.017392842,-0.04044573,0.027097458,0.011585401,0.064713165,-0.00063307,0.009769471,0.027852131,-0.0017392843,0.019196982,0.0012219208,0.0071281176,0.019244147,-0.03825246,-0.010653853,0.015341077,0.032828253,-0.004530983,-0.00885561,0.0039590825,-0.023996226,0.037662875,0.017157007,-0.018642768,-0.0013096221,0.003897176,0.017381052,0.010276517,-0.06263781,-0.018206473,-0.0027902247,-0.02756913,-0.010423914,0.015341077,0.011632569,0.020045988,-0.033724427,0.042025823,0.00033624933,0.045869935,0.008207063,-0.012970934,-0.02844172,-0.0058988268,-0.04221449,-0.0065856967,0.018878603,0.017098049,-0.0053858855,-0.003549319,0.009321384,0.029998232,0.025729615,0.006626968,0.0032840045,0.031059489,0.021626083,0.004651848,-0.010742291,-0.0037114557,-0.03629503,0.010022994,0.0045427745,-0.033913095,-0.0076646423,-0.028701138,-0.024927776,-0.040139142,-0.049619716,0.03080007,-0.016756088,-0.022251047,0.037544955,-0.02120158,0.028488886,-0.042072993,0.023100054,-0.016249042,0.03386593,-0.030021815,0.027427629,-0.006556217,0.03756854,-0.012428513,0.025399446,0.043322917,0.01851306,0.028630387,0.0034756206,0.038276047,-0.0151642,-0.018737102,-0.017593302,-0.03174341,0.018501267,-0.018501267,0.014291611,-0.01204528,-0.003410766,0.05589293,-0.026720123,0.016166499,0.026272036,0.008071458,0.02354814,-0.0027180002,-0.022357173,0.03488002,-0.026012618,-0.018359767,0.018572018,0.016461294,-0.0040003536,0.016991923,-0.024974942,-0.0035345794,0.02133129,-0.0059106187,0.018772477,0.0022581215,0.03113024,0.008006603,0.0153528685,0.01247568,-0.018666353,-0.059996463,0.00058737694,-0.07155239,0.012805848,0.01818289,0.0038735922,0.0065915924,-0.008018395,0.036483698,-0.005318083,0.0048935795,0.01436236,-0.026578622,0.012970934,-0.025989033,-0.0065208417,0.006043276,0.011703319,-0.03388951,-0.029361477,0.012699723,0.039007135,-0.0023509816,0.00016213667,0.016355168,0.011703319,0.02287601,0.014338777,-0.039502386,-0.009793054,-0.01167384,-0.0049938094,0.010653853,-0.025257945,-0.031295326,0.005819232,0.021236956,-0.001510819,-0.015175992,0.011756382,-0.034691352,0.0075172456,-0.03221508,0.04891221,-0.008171688,-0.03959672,-0.023489181,-0.017616887,-0.028111551,0.01361948,-0.008619775,0.03160191,0.0015683038,0.031248158,-0.016060375,-0.024196686,0.004239137,-0.04313425,0.0030142681,-0.027427629,0.0011725429,0.022758093,-0.0055657094,-0.00595189,0.03716762,-0.025069276,0.019079063,-0.0066387593,-0.0053298743,0.014834031,0.011738694,0.020081364,0.009109133,-0.020340782,0.006485467,0.0060049524,0.011149107,-0.03341784,-0.018465891,-0.028960556,0.0019500619,-0.00034914658,-0.012723306,0.013985025,-0.04716703,0.010182182,0.008690526,-0.052496906,-0.015376451,0.04919521,-0.023265138,0.0074818702,0.02502211,0.022144921,0.017274925,-0.013536938,-0.03396026,0.005707211,-0.027687047,0.02120158,-0.004719651,0.017357467,0.025234362,-0.043181416,0.023394847,0.040540062,0.017852722,0.0018306704,0.020435115,-0.025210777,-0.0034431932,0.022227462,-0.010205766,0.025823949,-0.026625788,0.042945582,-0.001992807,-0.025446612,0.017050881,-0.021177996,0.0139260655,-0.027144626,0.024338188,0.014279818,-0.0069335536,0.029738812,-0.035233773,0.026814457,0.030351983,-0.027592713,0.010164495,-0.0033930782,0.03436118,0.019161606,0.025611697,-0.023642475,-0.009757679,-0.021319497,-0.011833029,0.029573727,0.011508755,-0.012487471,-0.012605389,-0.040351395,0.04862921,-0.0075054537,-0.01321856,0.032899003,0.0025131183,0.020364365,-0.010459289,0.008289605,-0.011060668,-0.018595602,0.0021107246,0.0108366255,0.044714347,0.024338188,0.035917692,0.0016641117,0.006680031,0.019338483,-0.003994458,-0.009368551,-0.016850421,-0.02133129,-0.0054625315,0.00083426683,-0.0025499675,0.030823654,0.028559636,-0.0057307943,0.005819232,-0.05641177,-0.009433406,-0.001218973,-0.021307707,0.03582336,0.015411827,0.0012595071,0.0018188786,0.015588704,-0.022628382,-0.01992807,-0.011962738,0.041577738,-0.00261777,0.021744002,-0.00555097,0.005494959,-0.0024261542,-0.0027990683,-0.04228524,-0.00062791107,-0.014562821,0.004047521,0.0035198396,-0.013760981,0.030375568,-0.027616296,-0.011650257,-0.024196686,0.010642061,0.04233241,0.01629621,0.01932669,0.0034962562,0.027592713,0.025729615,-0.013230352,0.0044897115,0.0057691173,-0.014586404,0.014716113,0.022781676,-0.009604387,0.019880904,-0.021295914,0.007540829,0.04815754,0.022699133,0.024526855,-0.017404635,0.012027592,-0.00838394,-0.016815046,0.0013295207,-0.029550144,0.018076764,-0.00088069687,0.03544602,0.017864512,-0.0007027151,0.014951949,0.011007606,-0.022027003,0.038724132,0.035705443,-0.01590708,-0.013914274,0.025941867,-0.015187784,0.03414893,-0.008749484,0.009132716,-0.021555332,-0.0018793114,0.0068686986,0.011048877,-0.0011931785,-0.023276929,-0.030163316,0.0064088204,-0.037144035,-0.018807853,-0.04775662,0.009014798,0.01157361,-0.0066387593,0.039337303,0.026342787,0.025470197,0.050940394,0.057543777,-0.012251636,0.03348859,0.030682154,0.007440599,-0.01254643,-0.014598195,0.02422027,0.046058606,0.0064382995,-0.0053239786,-0.051836565,0.0147043215,0.016661754,0.0046577444,0.025257945,0.011379046,-0.0016420023,0.009386239,-0.01972761,-0.011838924,0.0030010024,-0.00083352986,-0.0076882257,0.03778079,0.019114438,-0.0116679445,-0.022156712,-0.02106008,-0.0022817052,0.005391781,0.015529744,-0.032380167,0.059854962,-0.0072283475,0.009586699,0.014716113,-0.02361889,0.03818171,-0.00047830318,-0.0069630328,-0.013312894,0.021095455,-0.009916868,-0.008395731,0.029550144,-0.02462119,0.038393963,-0.026625788,0.0027356877,-0.034667768,-0.008124521,-0.04414834,-0.007057367,-0.01047108,0.019550733,-0.013525146,-0.0000037914415,0.03763929,0.023394847,-0.019621484,-0.02778138,0.006455987,-0.0066918223,0.0227463,0.036318615,-0.008130417,-0.0060609635,-0.010948647,-0.028536053,0.03386593,0.04072873,0.006125818,0.026389953,0.0042126053,0.033111256,-0.011508755,-0.0063380697,0.025140027,0.001843936,-0.038417548,0.024691941,0.0071340133,-0.01022935,-0.024243854,0.004395378,-0.031837747,-0.014480278,0.023300514,-0.01120217,-0.0064913626,-0.00066476036,0.019161606,0.00017927156,-0.006467779,-0.010164495,-0.011827133,0.040610813,0.003749779,0.010176287,-0.025800366,0.0009300749,-0.0010376747,0.013784565,-0.021177996,-0.036955368,-0.015270326,0.0409174,-0.020623785,0.018642768,0.008944049,-0.0057661696,0.035540357,-0.023430223,0.017770179,0.028819056,0.0044012736,-0.013136018,0.036530863,-0.007841519,-0.0216025,-0.015671246,0.015694829,-0.00031008638,-0.0776841,-0.014385944,-0.02730971,0.03756854,0.021472791,-0.016095748,-0.008195272,0.02067095,-0.010117328,0.012463888,-0.009173987,0.017569719,-0.0004628265,-0.011579506,-0.0010413596,0.030163316,-0.007876894,-0.014904781,-0.0009956665,0.01610754,0.014668946,-0.018913979,0.0003795472,-0.0005892194,0.00932728,0.006762573,0.019279523,0.009362656,0.0020694535,-0.052638404,0.009091445,-0.018289017,0.028795471,-0.014716113,0.006998408,-0.0154825775,-0.041955072,0.0005796386,0.01374919,-0.02361889,0.022958552,-0.02509286,-0.0020001768,0.009091445,-0.015140616,0.039667472,0.023725016,0.0141854845,2.8500585e-7,-0.020918578,0.05862862,0.021696834,-0.019704027,-0.0033635988,0.044360593,-0.014067567,-0.0030835446,-0.010011202,0.028465303,-0.022522258,-0.02314722,0.0028314958,-0.0043069394,-0.0126525555,-0.005869347,-0.047049113,-0.046601027,0.019350274,0.006568009,-0.0034903602,0.00592241,0.005005601,0.020305406,0.020812452,-0.013006309,-0.022581216,0.03436118,-0.0013553151,-0.030965155,0.0097282,0.008466482,0.040115558,-0.036955368,-0.008596191,-0.019633276,-0.029644478,0.0018233005,-0.011956843,0.02227463,-0.030399151,0.032238666,-0.022687342,0.003354755,-0.0005405784,-0.0035640588,-0.017157007,0.0071163257,-0.0097458875,-0.011184482,0.001892577,-0.026932374,0.009286009,0.010984022,0.0032663168,0.023642475,0.0068922825,0.010370851,0.07537291,0.0071222214,-0.034856435,0.0150934495,0.05655327,-0.025540946,-0.013442604,-0.0043511586,-0.016213667,-0.0023730912,-0.018418726,0.022133129,0.017133424,-0.0050291847,-0.02018749,-0.0075467248,-0.005058664,0.02938506,0.012864808,-0.0012034962,-0.01772301,-0.02643712,0.013029892,0.04629444,-0.0024924828,0.014751488,-0.019951655,-0.028795471,0.031766996,-0.009050174,-0.0033016922,0.021578915,0.055751428,0.0016773775,0.009268321,0.011113731,-0.0020163904,0.013124227,0.023465598,-0.02065916,0.024691941,0.0024040446,-0.005497907,-0.015317493,0.02381935,0.022380756,-0.02294676,-0.0103001,0.024385355,0.03636578,0.03999764,0.017829137,-0.0058663995,0.008920465,0.0040563648,-0.009657449,0.003310536,-0.012110135,-0.031106656,0.011084252,0.010612582,-0.026743706,-0.019373858,0.026319202,0.058251284,0.0102647245,-0.008920465,0.006373445,-0.017416425,-0.030139733,-0.033771593,0.006402924,0.018796062,-0.059477624,0.0108896885,0.00049267436,-0.023453806,0.001557986,0.011296504,-0.0067802607,-0.008289605,-0.03912505,-0.020423325,-0.049383882,0.023442013,-0.00056968926,-0.008873298,0.011915571,-0.0027474796,-0.025069276,-0.01838335,-0.005707211,-0.0026634634,-0.07211839,-0.0204587,-0.003997406,-0.03938447,0.015683038,-0.027592713,0.02702671,-0.0033812865,-0.027404044,-0.02314722,-0.0130181005,-0.020564824,-0.05084606,-0.0048788395,0.04862921,-0.0055981367,0.014256235,-0.00093228585,-0.04862921,0.0238901,-0.0010737869,0.038393963,-0.003982666,-0.0067271977,0.0074700783,-0.01772301,-0.0087082125,-0.0027784328,-0.031153824,-0.038134545,-0.0103177875,0.0108896885,0.012204469,0.00047830318,-0.015058074,-0.05273274,0.002429102,-0.007139909,-0.007487766,-0.0060196924,-0.0013663699,0.006986616,-0.012015801,-0.007016096,0.023064679,-0.06145864,0.04603502,-0.032097165,0.017970638,-0.02161429,-0.013607688,-0.029149225,-0.028111551,-0.014385944,-0.009073758,0.005562762,-0.027639879,0.05131773,-0.014515653,-0.00476387,-0.0012639291,0.021543542,0.029054891,0.0477802,0.009952243,0.016520252,-0.010783562,0.0012226579,0.002679677,0.051081892,-0.0061435057,0.029149225,-0.010323684,-0.05556276,-0.01207476,0.017392842,-0.009398031,-0.010972231,-0.021460999,0.013961441,-0.005406521,-0.031979248,0.007894582,0.014586404,-0.013253936,-0.0053740935,-0.023253346,0.026224868,0.007428807,-0.014527446,0.017958846,-0.023159012,-0.011620777,0.030682154,-0.002141678,0.0031719827,0.009168091,0.0058634514,0.008195272,-0.024597606,-0.010258829,0.023725016,-0.0150934495,0.003988562,-0.02483344,0.0075172456,0.01751076,-0.006084547,-0.012440304,-0.0024718472,0.009887389,0.014409528,0.01623725,-0.040021226,0.00005550417,0.0021210425,0.01670892,0.0073698484,0.011343671,-0.01120217,-0.024456104,-0.017145215,-0.023524556,0.0019338483,-0.0057219504,-0.002485113,-0.017864512,-0.036648784,0.0056659393,-0.0183126,-0.015576912,0.018171098,0.04400684,-0.005503803,0.024456104,0.013902483,-0.022569424,-0.021284122,0.0076587466,-0.008407523,0.030705737,0.0033429633,-0.006845115,0.01690938,0.013265727,-0.0032957962,0.009822534,-0.04999705,-0.011184482,0.002340664,-0.010877896,-0.030139733,-0.0087082125,0.011255233,-0.01784093,-0.03535169,-0.006851011,0.016260834,-0.009050174,0.029833147,0.0047373385,0.0008165792,0.0036908202,-0.00670951,-0.0025602854,0.0023789871,-0.02153175,0.03374801,0.009492365,0.011526443,0.034526266,-0.005934202,0.012994517,-0.02025824,0.016874004,0.015046283,0.0015786216,-0.010895584,0.0028034903,0.018831437,-0.013006309,-0.007641059,-0.018041389,0.0050468724,0.024243854,0.029267142,-0.02032899,0.008478274,0.0034461413,-0.010895584,-0.033582926,0.03339426,-0.014173693,-0.008419315,0.0068686986,0.050798893,0.029974647,-0.008560816,0.011691527,-0.045917105,0.008437002,-0.0005685838,-0.013808148,-0.02778138,-0.000008636541,-0.012216261,0.027073875,0.0032692647,0.024715524,-0.00022275368,-0.017428217,-0.02113083,-0.003216202,0.04145982,-0.012511055,0.019963445,0.036483698,-0.009315489,0.015871705,-0.009309593,0.0056394082,-0.025328696,-0.044926595,-0.01765226,-0.037615705,-0.009162196,-0.018489476,0.022911385,0.0032840045,-0.027404044,-0.023041094,0.028536053,0.004035729,0.021354873,0.001170332,0.0021018807,0.01718059,-0.02436177,-0.004813985]},{"id":"class-GuildMemberRoleManager","type":"class","source":"main","text":"Class: GuildMemberRoleManager\nDescription: Manages a guild member's roles with add/remove/set and a cache of Role objects.\nDiscord.js parity: member.roles.add(), member.roles.remove(), member.roles.set(), member.roles.cache\nProperties: cache: Collection, roleIds: readonly string[]\nMethods: add(roleOrId: RoleResolvable) -> Promise — Add a role to this member.\nDiscord.js parity: member.roles.add(roleId)\nRequires Manage Roles permission.; has(roleOrId: RoleResolvable) -> boolean — Check if the member has a role. Discord.js parity: member.roles.cache.has(roleId); remove(roleOrId: RoleResolvable) -> Promise — Remove a role from this member.\nDiscord.js parity: member.roles.remove(roleId)\nRequires Manage Roles permission.; set(roleIds: string[]) -> Promise — Replace all roles for this member. PATCH /guilds/{id}/members/{userId}\nDiscord.js parity: member.roles.set(roleIds)\nRequires Manage Roles permission.","meta":{"url":"/docs/classes/GuildMemberRoleManager"},"embedding":[-0.017766263,0.038399834,-0.024372093,-0.005265916,-0.003291887,0.042612568,0.0033966538,-0.0006475561,0.032091763,0.0011255551,0.04259051,-0.042789016,0.0042678737,0.02966558,0.00918089,-0.011800064,-0.05152327,-0.00063652796,-0.025629297,0.040539283,0.03215793,0.013200632,0.0031374935,0.026776219,-0.044950522,0.010388467,-0.0122411875,0.047597267,-0.02624687,-0.037583753,0.06934468,-0.015715038,-0.020247586,0.011866232,-0.01431447,-0.006291529,0.026313039,0.02022553,0.0022276756,0.02909212,-0.0072013475,-0.018295612,-0.04433295,-0.041928824,-0.00817182,0.020060109,-0.0013240608,0.012627171,-0.010250616,-0.00039390984,-0.021659182,0.004091424,-0.016520089,0.07163852,-0.004554604,-0.0028562772,-0.032929897,0.009401453,-0.028033422,0.017766263,0.01929917,-0.037539642,-0.024063308,0.026952669,-0.0012330791,-0.0028948754,-0.06153678,-0.0014184889,0.015130549,0.029533243,0.016178219,-0.0049791858,-0.006688541,-0.022056194,-0.0071903192,-0.011436136,0.050729245,0.014645313,0.02549696,-0.0025929813,0.009186405,0.023666296,-0.02792314,-0.01086819,0.030459603,-0.022960497,-0.044112388,-0.02300461,0.013244744,-0.037010293,-0.022111334,-0.009462107,-0.10031157,0.014744566,-0.028430434,-0.038730677,0.014623256,0.02202311,-0.006936673,0.05893415,0.0487883,0.0016073451,-0.04936176,0.0017052195,0.027107062,-0.0031430076,-0.06175734,0.041752376,-0.024350038,-0.026070422,-0.059242938,0.0064790067,0.027901085,0.0021808061,-0.025849858,0.021416564,0.0069091027,0.012891845,-0.000132251,-0.013465307,-0.05761078,-0.026864445,0.030349324,-0.053773,-0.028518658,0.00042458173,-0.041399475,-0.053817112,-0.041421533,0.034407664,-0.0322241,-0.01703841,0.030569885,-0.040649567,-0.036304496,0.00083675684,-0.017225888,-0.03191531,0.00020884459,-0.04016433,-0.010167905,0.017060466,-0.00014853469,0.042039104,-0.030503716,0.011943429,0.0033883827,-0.00843098,-0.07388825,0.029797917,-0.05972817,-0.004874419,0.0065176054,-0.02838632,-0.016872989,-0.05783134,-0.025916027,0.018394865,-0.008574345,-0.028981838,-0.019431507,-0.054567024,0.013509419,-0.044862296,0.016310556,-0.053155426,-0.015042325,0.04512697,-0.026974725,0.013112407,0.033944484,-0.0032119332,-0.012825677,-0.0011972378,-0.0053679263,-0.021184973,-0.04159798,0.002952773,-0.04298752,-0.0010483585,0.024350038,-0.00441951,-0.04009816,-0.031187458,-0.05094981,0.020313755,-0.02115189,-0.0016969484,0.021196002,0.05227318,0.0056408714,0.059507612,0.006859476,0.015626814,0.040848073,-0.015979713,0.03319457,0.034738507,-0.025607241,-0.03864245,-0.03678973,0.0084364945,0.06308071,-0.025011724,0.012538946,-0.011866232,-0.029819975,-0.040803958,-0.037274968,0.009842576,-0.0076645273,-0.021648154,0.0010297486,0.026643882,-0.0130021265,0.034495886,-0.052626077,0.008761823,-0.01159053,0.031496245,-0.041509755,0.027239399,0.01727,-0.016299527,0.02468088,0.015494476,-0.009798464,-0.019729266,0.022067223,0.047244366,-0.011667727,-0.040340777,-0.04045106,-0.032113817,0.005894518,0.034694392,-0.028187815,0.04398005,0.039546754,0.001655593,-0.009837062,-0.0077582663,-0.041686207,-0.020027025,0.045391645,-0.007879576,0.014700453,0.006159192,0.035311967,0.0067657377,0.03714263,0.0372088,0.009903231,-0.007846491,-0.016431864,-0.0044718934,0.03970115,0.06634503,-0.022298813,0.05730199,-0.016498033,0.0043257712,0.011744923,0.011711839,-0.04543576,0.020655626,0.017192803,-0.008094623,-0.029930254,-0.008585374,0.035091404,0.0059882565,0.012770536,-0.044421174,-0.0060985377,0.032246154,0.0064293803,0.043031633,0.0057346104,0.026357152,0.018858045,-0.02271788,0.05430235,0.039414417,0.015759151,0.052934866,0.019310197,0.030040536,-0.013685868,0.04230378,-0.017876545,-0.018097106,0.015097464,-0.018758792,0.027614355,-0.021945912,0.02085413,-0.031650636,0.060081072,0.066477366,0.01808608,0.06753606,-0.04993522,-0.025122005,0.01541728,-0.005081196,-0.030437548,-0.02079899,-0.023114892,-0.04512697,-0.003432495,0.034738507,0.0072068614,0.0037081975,-0.042965464,0.018119164,-0.0021394507,0.00002101154,0.06330127,0.05562572,0.046494458,-0.03390037,-0.018648513,-0.023953026,0.013575587,-0.07843182,-0.021714322,-0.02318106,0.010438094,0.043803602,0.059992846,0.0039011892,0.0035675894,0.022739936,0.017214859,0.029445019,0.009500706,0.04005405,0.03240055,-0.016487004,0.025232285,-0.011744923,-0.04045106,0.017567758,-0.0038515627,0.02468088,-0.040406946,0.009202947,0.018902158,0.013994655,-0.012902874,0.02428387,-0.03866451,-0.016409809,-0.05893415,-0.00958893,0.015031296,-0.013796149,0.018527202,0.022519374,-0.036061876,0.021692267,-0.06484521,0.015373167,0.0009380775,0.01506438,-0.0186044,-0.0062198467,0.020115249,-0.017689068,-0.008381354,0.031893257,-0.048170727,0.0004107966,-0.0013605915,-0.0056270864,-0.035554584,-0.008712197,-0.018119164,0.0073281704,0.013134464,0.037914596,0.046318006,0.0018389352,0.013939515,-0.039436474,-0.047773715,0.00091671053,-0.042149387,-0.0005510602,0.035003178,0.044840243,-0.02346779,-0.0053954963,-0.053287763,-0.029114176,0.059992846,0.048082504,0.021482732,-0.026798276,0.030349324,0.04393594,-0.023269285,-0.0017245186,-0.036547113,-0.03899535,-0.0011793171,0.018935243,0.008739767,-0.008998927,0.037076462,0.033591583,0.035620753,0.02364424,0.053464215,-0.0268865,0.023401622,-0.027790803,0.043671265,0.025166117,-0.029908199,-0.0053844685,-0.018527202,-0.038796846,0.057434328,-0.006131622,-0.007609387,0.005356898,-0.012594087,-0.009357341,-0.0840341,0.04241406,0.034584112,0.015461392,-0.014281386,0.010035568,0.016740652,-0.015659899,0.0035841316,0.015031296,0.022376008,-0.024063308,-0.031584468,0.008188362,0.034694392,0.009919773,0.021945912,-0.07005047,0.051832054,0.0028783332,0.0155716725,0.03802488,-0.009539304,0.03581926,-0.0368559,-0.013454278,0.039833486,0.034385607,-0.01878085,-0.015891487,0.014413723,0.04512697,0.013774093,0.0005445123,-0.020015996,0.023600128,-0.028055478,-0.020170389,-0.02717323,-0.010890245,-0.011188004,0.032929897,0.06391885,0.012715396,-0.020776935,-0.006622372,-0.024041252,-0.020313755,-0.0012117121,0.011270715,0.051214483,0.023533959,-0.0034876356,-0.028783333,0.01755673,0.031606525,-0.011568474,-0.0004807561,-0.0078023784,0.022045165,-0.054214124,0.020214502,0.014810734,-0.008287615,0.053552438,-0.011066696,0.045259308,-0.040031992,-0.0058448915,-0.014512976,0.035488416,-0.05633152,-0.019894687,0.040826015,-0.015031296,0.016244387,0.013178576,-0.009666127,0.00042492637,0.06466876,-0.02097544,0.0049157743,-0.020137304,-0.01854926,0.02196797,-0.0053183,-0.04896475,-0.0019188889,-0.0025102706,-0.022894328,-0.016012797,0.011888289,0.015406251,-0.0136196995,0.020920299,-0.00278873,-0.006594802,0.011744923,0.00027087764,0.025122005,0.011436136,-0.009136778,0.045920994,0.039657038,-0.026092477,-0.015152605,0.0014501947,-0.015152605,0.022673767,-0.026842387,0.017247943,0.026114533,-0.03478262,0.011110808,-0.014932043,0.0019561087,-0.012704368,0.016001768,0.03094484,0.024526488,0.0041107233,-0.03731908,0.013542503,-0.051655605,-0.011513333,-0.014479891,-0.0034407661,-0.015097464,0.001157261,-0.010796507,0.0131454915,-0.0047475956,0.020313755,-0.004744839,-0.053067204,-0.023247229,0.012891845,0.012814648,-0.020060109,0.001313722,0.0011669105,0.02984203,-0.009296685,0.0006727139,0.023975084,0.0072454596,-0.023269285,0.017303085,-0.023070779,-0.005806293,-0.012119878,-0.07172674,-0.0072399457,0.008943787,-0.03998788,0.008419952,-0.030746333,0.01164567,-0.003076839,0.022607598,0.0014308955,0.0084364945,0.04433295,-0.010156877,-0.013222688,-0.012274272,0.007046954,0.016950184,-0.017402338,-0.003203662,0.005993771,0.008116679,-0.02891567,-0.0077582663,-0.005340356,-0.01639878,0.04400211,0.004551847,-0.003970115,0.014612229,0.0062805014,0.002102231,-0.025519017,-0.035378136,-0.037980765,-0.015560645,0.003523477,-0.028496603,0.034275327,0.004987457,0.033503357,-0.0028673052,0.025099948,-0.017082522,0.017071495,0.007173777,-0.022221616,-0.0030244556,-0.022519374,-0.026379207,0.008353784,-0.008144249,0.012792593,-0.013542503,-0.008816963,-0.017777292,0.025099948,0.025629297,0.03176092,0.0015191203,0.05778723,-0.0026646638,-0.019740293,-0.005624329,0.029797917,-0.02909212,0.017975798,0.008596402,-0.024019195,-0.03054783,-0.013829233,-0.044663794,-0.016354667,-0.028474547,0.019508703,-0.02086516,-0.015318027,0.04728848,-0.031849142,0.025651354,-0.047641378,-0.028077535,-0.015351111,0.034385607,0.0143806385,0.018405894,-0.013465307,0.022982555,0.033348966,0.035378136,0.011044639,0.02364424,0.017953742,0.013134464,0.020071136,-0.0055002635,-0.010272672,-0.0010159634,-0.030216986,0.02179152,0.0031237085,-0.015152605,0.0019450806,-0.015362139,0.06956524,-0.029158289,0.018383838,-0.021758435,0.021008525,-0.01552756,-0.0010518047,-0.0023503632,-0.016244387,-0.049097087,-0.0107909925,0.03414299,0.005326571,0.010002484,0.04746493,-0.04600922,0.00057104864,0.009379396,-0.006076481,-0.004309229,-0.014104936,-0.013057266,-0.0038598338,0.032356437,0.005894518,-0.01014585,-0.057699002,-0.0050839526,-0.036833845,0.0048440914,-0.013542503,0.028695108,0.0041796486,-0.029599411,0.040605452,0.0114802485,-0.0054837214,0.040892184,-0.011347911,-0.0045876885,-0.031474188,0.01385129,-0.0029858572,0.025563128,-0.009688183,-0.022585543,0.0040252553,0.0071903192,0.019056551,0.021438621,0.021196002,0.02439415,0.0023779334,0.023975084,-0.011292771,0.02230984,-0.00053520733,0.0038239926,0.00056139904,-0.05156738,-0.016288498,-0.01269334,0.0036640852,0.0033167002,-0.009004441,0.047376703,-0.02624687,0.0050867097,0.0037936654,0.00950622,-0.0068980744,-0.054964036,-0.0097708935,-0.0056105442,-0.051832054,0.049405873,0.0024992425,0.041928824,0.014623256,0.001383337,-0.019155804,-0.02329134,-0.010939872,-0.0041741347,0.009076124,0.0056684418,-0.0047089974,0.01680682,-0.018637484,-0.018968327,0.034032706,-0.004094181,0.051214483,-0.012219131,0.011143892,-0.0108626755,0.025651354,0.0076700416,-0.012186047,-0.024350038,-0.030613998,0.012891845,-0.008293129,-0.032356437,0.010906788,-0.018681597,-0.04109069,0.0019588657,0.0026880987,0.0053293277,-0.035466358,-0.014943072,0.012594087,-0.056463856,-0.024195645,0.01663037,-0.026732108,-0.015891487,0.018207388,0.026379207,0.043252196,0.028033422,-0.010879218,0.013421194,-0.06281604,0.008530233,-0.0089493,0.05615507,0.008480607,-0.037738148,0.032775503,0.0131454915,0.009699211,-0.0035069347,0.02329134,-0.029687637,-0.0146012,-0.0015094707,-0.005254888,0.026996782,-0.055316932,0.032576997,0.0071462067,-0.00011493345,0.0040335264,-0.034319438,0.0036971695,-0.05575806,0.050729245,0.03054783,0.029070063,0.03581926,-0.033547472,-0.00056002056,0.025452849,0.0026109018,-0.022563485,0.0120537095,-0.016266443,0.025474904,0.022761991,-0.033988595,-0.002002978,0.0014529518,0.009473136,0.01755673,0.026511544,-0.008442008,-0.013013154,-0.007840977,0.038929183,-0.01089576,-0.01069174,0.05156738,0.031209514,0.0009553089,-0.0037412818,0.01831767,-0.018207388,-0.025364622,-0.0072068614,0.006263959,0.016509062,-0.01210885,0.008993413,-0.04433295,0.009566874,0.0052218037,-0.0035758605,-0.016365696,-0.0074384515,-0.02115189,-0.015406251,-0.009566874,0.019100664,0.045876883,0.0035786175,-0.009225003,-0.022331897,-0.045215197,0.016354667,0.020302726,0.00020195202,0.03632655,0.01709355,0.018968327,-0.015516533,0.036767676,0.009026498,-0.0029003895,-0.014656341,0.013884374,0.004890961,-0.035201684,-0.020379923,-0.008601916,-0.02450443,0.0067657377,-0.031628583,0.027239399,0.011176976,-0.015130549,-0.0025378407,-0.005662928,0.02474705,-0.011524362,-0.00057001476,-0.02318106,0.0012358361,0.033657752,0.034275327,0.009511733,0.014987184,0.013222688,0.020611513,0.01953076,0.0245706,0.033084292,-0.0021780492,-0.005001242,0.007388825,0.012152962,0.03436355,0.0016032096,-0.0073281704,0.020192446,0.019685153,0.0006713354,0.008833505,0.005006756,0.013895402,-0.0368559,0.0022511103,-0.039546754,0.036128044,-0.010421552,0.045920994,0.008094623,0.037164688,0.027680524,0.009169863,-0.024526488,0.020666653,0.021515816,-0.006826392,-0.008701169,0.0044002105,-0.02104161,0.047156144,-0.02567341,0.0242177,-0.01141408,-0.035554584,-0.013310913,0.023533959,-0.0117669795,-0.019795435,-0.039502643,-0.0011868989,0.00064617756,-0.02375452,-0.013123435,-0.043274254,0.0067767655,-0.016001768,0.0005324503,0.04051723,0.012064738,0.025474904,0.013862317,-0.022673767,0.024791162,0.055008147,-0.022806104,-0.015869431,-0.007896117,0.0012530675,0.05077336,0.016619341,0.009748838,-0.065859795,-0.008883132,-0.010482206,0.017247943,0.0094841635,0.0015632327,-0.0012916658,0.0006416974,-0.04351687,0.0066389143,-0.01298007,0.008133221,0.016674483,0.04433295,-0.004094181,-0.015306999,0.005616058,-0.05822835,-0.001703841,0.03290784,0.026202759,-0.022739936,0.03813516,0.028518658,0.06171323,0.0117669795,-0.01210885,0.036436833,0.0043891827,-0.03087867,-0.04027461,0.018152248,-0.007747238,-0.003432495,0.019652069,-0.0019492161,0.009197433,0.0025116492,-0.011369968,-0.048744187,0.009456594,-0.055934507,0.0041272654,-0.013068295,-0.020931328,-0.013465307,-0.007179291,0.03703235,-0.021857688,0.020203473,-0.021427592,0.012549974,0.019431507,-0.011899317,0.030922784,-0.0441565,-0.011899317,-0.00097185106,-0.0338342,0.026313039,0.040715735,0.011303799,0.0016707567,-0.004182406,0.030261097,0.0048496057,-0.033525415,0.028673053,0.012141935,-0.003981143,-0.0027060192,0.025276398,-0.014887931,-0.023070779,0.013465307,-0.016089993,-0.014126992,-0.00073681475,-0.028650995,0.007510134,0.021229086,0.049847,0.011176976,0.022012081,-0.009076124,0.009952857,0.033018123,0.0078023784,-0.01739131,-0.04263462,0.02219956,0.0065451753,0.00072716514,-0.017402338,-0.015858402,-0.023864802,0.04305369,-0.014336526,-0.009037525,0.025916027,-0.008827992,0.030569885,-0.0060489113,-0.0056270864,0.04195088,0.004444323,-0.015814291,0.019288141,-0.012208103,-0.02838632,-0.007074524,0.038046934,0.017766263,-0.033348966,-0.0063246135,-0.039833486,0.016189246,0.007410881,0.00660583,0.0106751975,-0.0021449649,-0.01269334,0.017501589,0.012781564,0.037848428,0.024107419,0.002568168,0.024724994,0.02318106,-0.017314112,-0.01611205,-0.030988952,-0.0143806385,0.014744566,0.0055967593,-0.006467979,0.017424393,-0.017258972,0.0029307168,0.009401453,0.010548375,0.0093407985,-0.02120703,0.016244387,-0.042347893,-0.0025392193,-0.0033608126,-0.001997464,-0.003173335,-0.03279756,0.02318106,0.0031898771,-0.009826034,0.00007017488,0.0026715565,-0.008282101,0.05006756,-0.018207388,0.021184973,0.02219956,-0.0061261076,-0.01790963,-0.0017465749,0.07163852,0.013586615,0.0036530572,0.00083193206,0.048700076,-0.00799537,0.022353953,-0.022188531,0.0035731033,-0.002969315,-0.020765906,-0.0014763864,-0.014788678,0.010752395,-0.010416037,-0.026842387,-0.019960856,0.034584112,0.0114802485,0.005461665,0.009831549,0.0058338633,0.0005103941,-0.005464422,-0.0014929286,-0.025298454,0.013024182,-0.04433295,0.004138293,0.013255772,-0.0015811534,0.04561221,-0.020368895,-0.012075766,-0.008695655,0.015692983,0.028650995,-0.0019602443,0.022045165,-0.02862894,0.03928208,0.010879218,-0.0016294013,0.001302694,0.0038984322,-0.012505862,-0.04109069,-0.044178557,-0.002966558,0.011121836,-0.030966897,0.020015996,0.037539642,-0.013939515,-0.0005221115,-0.00058104284,0.006015827,0.025276398,0.00245513,0.00025778176,0.002322793,0.069477014,-0.031606525,0.012825677,-0.01112735,-0.02745996,-0.0007554246,0.005494749,0.012616143,0.027261456,-0.018902158,0.009004441,0.020545345,-0.011292771,0.04104658,0.039480586,0.03129774,0.0035593184,0.0066389143,-0.0029417449,0.05231729,0.0009049932,0.043141916,0.023886858,-0.03343719,0.026732108,0.014766621,-0.011667727,0.016817847,0.034981124,0.009004441,0.018251501,-0.021747407,0.001421246,0.021747407,0.01807505,-0.0020815532,0.008464064,0.01901244,-0.005362412,-0.020611513,-0.006291529,0.019486647,0.021240115,0.0029334738,0.026070422,0.022420121,0.060522195,0.026754163,0.013917458,0.027945198,-0.00087949075,-0.0010028676,0.016872989,-0.03237849,-0.041311253,0.026158646,0.008607429,-0.008899674,-0.031628583,0.029687637,0.040826015,0.0014184889,-0.0036144587,-0.011744923,-0.023379566,-0.021240115,-0.019685153,0.009655098,-0.003625487,-0.033569526,0.012373525,-0.010184447,-0.01246175,-0.011325856,0.0045959596,0.02282816,-0.0065727457,-0.016255414,-0.014138021,-0.050685134,0.038840957,0.014535031,0.016012797,0.0077748084,0.0036006738,-0.003931517,0.023820689,0.006964243,0.010046597,-0.01506438,-0.0063246135,-0.022409093,-0.040296666,-0.0065617175,-0.0124286655,0.033040177,0.006131622,-0.0056381146,-0.03240055,-0.016784763,-0.018405894,-0.017589815,0.011546417,0.021637127,0.02966558,0.024658825,-0.014590172,-0.009202947,-0.0029196886,0.03628244,0.006721625,-0.02028067,0.0029858572,0.015461392,-0.02318106,-0.0057511525,0.0026012524,-0.017225888,-0.009914259,-0.03934825,0.025849858,-0.021339368,0.0059551722,-0.018813934,-0.0022704094,0.0048303064,-0.011226603,0.012858761,0.02880539,-0.010416037,-0.0062970435,-0.015152605,-0.0020732821,0.006980785,-0.017644955,0.050332233,-0.019861603,-0.006368726,-0.023092834,0.020181417,-0.03923797,-0.05302309,-0.04098041,-0.0072178897,0.0054120384,-0.019905714,0.042325836,0.009109208,-0.02155993,-0.006958729,0.016520089,0.027217343,0.057390217,0.015439335,0.015373167,0.008480607,0.014821762,0.0025902244,0.02706295,0.010300242,-0.009633043,0.013343997,-0.05337599,-0.00527143,0.016895045,-0.01141408,-0.0081056515,0.0039590867,0.047156144,0.015957655,-0.021372452,0.023798633,-0.0009525519,0.0074770497,0.0017286541,-0.012219131,0.017920658,-0.018714681,-0.0062860153,0.0047117546,-0.019751322,-0.017545702,0.0059276023,0.011028097,0.00018868384,0.012009597,-0.006721625,-0.0057566664,-0.010239588,-0.019541787,-0.0055112913,-0.0322241,0.014987184,-0.017512618,0.00094979483,0.037297025,-0.045215197,-0.009638556,0.03436355,0.030393435,-0.021835633,0.03910563,-0.03125363,0.048214838,-0.026268927,0.022585543,-0.0094124805,0.019718237,-0.035311967,-0.019420478,0.019376365,0.0020470906,0.018041966,-0.0042899298,-0.00068787753,0.00352072,-0.021284226,-0.0041879197,-0.011733895,-0.043538928,-0.022464233,0.01912272,-0.0002641574,0.015306999,0.032025594,-0.053773,-0.013079323,0.026048364,-0.0074660215,0.03112129,-0.018185332,-0.033040177,-0.011965485,0.0242177,-0.0000192884,-0.012792593,-0.06365418,-0.020413008,0.009313228,-0.03528991,0.000850542,0.011601558,0.007852005,-0.004866148,-0.027746692,-0.0069973273,-0.012252215,-0.039789375,0.01680682,0.010950901,0.016740652,-0.023578072,-0.044752017,0.028584827,-0.00637424,-0.023070779,0.010526318,-0.028496603,-0.0067877937,0.03244466,-0.0053155427,0.010140335,-0.010575945,0.06859476,-0.00032239952,0.01298007,-0.0039590867,-0.0018926972,0.02891567,-0.005480964,-0.055890396,-0.017942714,-0.025607241,-0.0065341475,0.021868717,-0.018692624,0.014369611,0.017170748,0.0017451963,-0.040892184,0.012549974,-0.03912769,0.014512976,0.009219489,0.015957655,-0.009963886,-0.0123845525,0.012803621,-0.028562771,0.0022414606,0.017314112,0.007399853,-0.019751322,0.0009870146,-0.023070779,0.034848787,0.007289572,0.0060930233,-0.020832075,-0.001284084,-0.0053238138,0.008684627,0.019188888,0.0048082503,0.021240115,0.054434687,0.022232644,0.03467234,0.0035786175,-0.0012992476,-0.01298007,-0.01164567,-0.017115606,0.0055995164,-0.006357698,-0.026930613,-0.0051446073,-0.0031512787,-0.023269285,0.0013874725,0.014887931,-0.0035620753,0.0076700416,-0.042392004,0.022111334,-0.01883599,-0.026930613,-0.007874061]},{"id":"class-GuildSticker","type":"class","source":"main","text":"Class: GuildSticker\nDescription: Represents a custom sticker in a guild.\nProperties: animated: boolean, client: Client, description: string, guildId: string, id: string, name: string, tags: string[], url: string\nMethods: delete() -> Promise — Delete this sticker. Requires Manage Emojis and Stickers permission.; edit(options: { name?: string; description?: string; }) -> Promise — Edit this sticker's name and/or description.\nRequires Manage Emojis and Stickers permission.","meta":{"url":"/docs/classes/GuildSticker"},"embedding":[0.012129856,0.0007949037,-0.04339511,-0.004682863,-0.040417466,0.039563414,-0.026498714,0.007513355,0.0038403517,0.00082231424,0.05392073,-0.04150234,0.016227001,-0.03520082,0.0030382345,-0.0047232574,-0.048473258,-0.0074441074,0.023705732,0.026891118,0.023578778,0.010958419,0.029430194,0.044780057,0.002915609,0.04535712,-0.0026660291,0.026037065,0.0010365488,0.010450603,-0.0041548507,-0.021524435,0.07100178,-0.019054607,-0.049027238,0.045864936,0.0025809126,0.015799975,-0.016192377,-0.034993075,-0.030538153,0.004330855,0.014865133,0.015696103,-0.000521881,0.055721164,-0.033954363,0.04607268,0.0059783687,0.006388083,-0.029868761,-0.0064284774,-0.032592498,0.05299743,0.0021106065,-0.015823057,-0.04801161,0.023821145,-0.026960365,0.02488294,-0.002482812,-0.025967818,-0.0025361902,-0.019977907,0.02903779,0.026567962,-0.08226605,0.059691355,0.001966341,0.041894745,0.041156106,-0.02037031,-0.03926334,0.016873311,-0.03824771,-0.030930556,-0.012556883,0.037832223,0.045957267,0.0073517775,-0.046765152,0.028806966,-0.026891118,-0.015776891,0.028299151,-0.032384753,-0.04655741,-0.061076306,0.0062553585,-0.021512894,-0.020035613,-0.03365429,-0.06550815,0.0036470357,0.049904376,-0.0019923088,-0.003603756,0.0049742796,-0.027606675,0.02940711,0.046649743,-0.03033041,-0.07072479,-0.010646805,-0.008101959,0.021812966,-0.06389237,0.08055794,-0.0014563617,-0.007778804,-0.06296907,0.0362857,-0.028229903,0.016896393,0.0076980153,-0.039863486,-0.003078629,-0.018835323,0.02340566,-0.0455187,-0.07095562,-0.040048145,0.06878586,-0.06550815,0.0063996245,0.027260438,-0.018639123,-0.029337863,-0.027975995,-0.03291565,-0.041109942,-0.024075052,0.021743719,-0.015534526,-0.04120227,-0.017450374,-0.020335685,-0.028460728,-0.022620855,-0.0025823552,0.020035613,-0.06010684,0.0065323487,0.010029349,-0.018731453,0.012279892,-0.019654753,0.017346501,-0.06786256,0.02323254,-0.027768252,0.05733694,-0.0040048147,-0.019943284,-0.026521798,-0.011114226,0.013976457,-0.024813693,-0.047411464,-0.01870837,-0.011085372,-0.023982722,0.045380205,-0.030907473,-0.022147663,-0.029568689,0.05484403,-0.013757173,-0.026106313,0.027121942,0.074971974,-0.025690828,-0.03815538,-0.010710282,-0.030907473,-0.009302249,0.0020485723,-0.015465278,-0.051473986,-0.007478731,0.020139486,-0.00087424985,-0.033261888,-0.05041219,-0.0206473,0.064077035,0.020970454,0.002070212,0.017369585,0.018304426,-0.022620855,0.012453011,0.017854318,-0.0132031925,0.02525226,-0.015188288,0.02940711,-0.0054157325,-0.002676128,-0.055536505,0.01502671,0.00059401384,0.0059956806,0.0017672542,-0.003880746,-0.03252325,-0.019377762,-0.027652841,0.024075052,0.0006041124,0.032684825,-0.018985359,-0.036747348,0.0022447736,-0.045472533,0.043810595,0.00396442,-0.0026443894,-0.0073864013,0.034993075,-0.024859857,0.031184463,0.0025376328,-0.035431646,-0.013468641,-0.014888215,0.0016806949,-0.0022375602,0.0028146228,0.009042571,-0.070216976,0.0005244056,-0.02073963,-0.06790873,-0.02350953,-0.02571391,0.014080328,0.030191915,0.022413112,-0.01750808,-0.020127945,-0.029153204,0.039332587,-0.014703555,0.032754075,0.016203918,0.005482095,0.0188007,0.019781707,-0.006693926,0.05392073,0.037393656,-0.015696103,-0.026152477,-0.018939195,0.013861044,-0.012683836,0.03757832,0.05142782,0.0034941141,0.010831465,-0.0234172,-0.018731453,-0.01852371,0.014495812,0.03785531,0.05327442,0.0012781937,-0.0050752657,0.002070212,-0.011720141,-0.027168108,0.048473258,-0.008909847,0.004642469,0.020024072,-0.018812241,0.07543363,0.012926202,0.022101497,-0.012418387,-0.019770166,0.009723505,0.030999804,-0.044041418,0.07861901,0.04856559,-0.023798062,-0.0072594476,0.04544945,0.023890393,0.007484502,0.03199235,0.011010354,0.0031421059,0.0034537197,0.000025990359,0.0028752144,0.049165733,0.02589857,0.0041433093,-0.049165733,-0.008344325,0.0057042637,0.00025300588,0.0048588673,0.015326783,-0.003058432,-0.0046338127,-0.03143837,0.024190465,-0.021882214,-0.010883401,0.012118314,-0.041917827,0.0069478336,0.0064169364,0.033146475,0.012372223,0.005972598,0.03954033,0.0016648256,0.015199829,-0.013064697,-0.034254435,-0.06758557,0.004359708,-0.00023930064,0.011495087,0.04360285,0.017473456,-0.034785334,0.0117086,0.08471279,0.061537955,0.013330147,0.012545341,0.019643212,0.044387657,-0.00033956527,-0.0022707414,-0.060522325,-0.022967093,0.024282794,0.037370574,-0.019758623,0.0097292755,0.03492383,-0.013491724,-0.01151817,-0.013595595,0.045934185,-0.0362857,-0.03942492,-0.0076980153,-0.050827675,0.018604498,-0.016827146,0.0019764395,0.046626657,0.023463367,0.017311879,-0.048334762,0.03097672,0.0066073667,0.01548836,-0.0234172,0.006809339,0.03686276,-0.06453868,0.007669162,0.0023356609,-0.026775705,-0.0339082,0.0047521107,-0.01668865,-0.00073864014,0.022297699,-0.0049800505,-0.025483085,0.013399394,-0.0023919246,-0.00060771906,0.03501616,0.024675198,-0.015349865,-0.002091852,0.023728814,-0.03088439,0.012637671,0.031415287,-0.01760041,-0.03550089,-0.0004825686,-0.013768714,0.0041894745,-0.0031651885,0.034600675,0.01696564,0.025206095,0.011737454,0.02101662,-0.034139022,0.00080572366,0.008679022,0.022828598,-0.005107004,0.025875488,0.026891118,-0.02047418,-0.011754765,0.014230364,0.021859132,0.0117086,0.015465278,-0.026037065,-0.029014708,-0.07081712,0.033308055,0.0468344,0.003955764,-0.011310427,0.01456506,-0.038178463,0.026429467,-0.013537888,0.002406351,-0.00557731,-0.037624482,-0.063523054,-0.004656895,0.054059226,0.0449878,-0.015338324,0.039794236,-0.024467455,-0.021420565,-0.046049595,-0.0050666095,-0.011177703,-0.036747348,-0.030653566,0.007380631,0.029199367,0.023013256,-0.006693926,0.03335422,-0.066246785,0.015973093,-0.020139486,-0.032938734,0.0152575355,-0.028137572,0.028645389,-0.008979094,0.0037364804,-0.02543692,0.0038836314,0.004108686,-0.04563411,-0.0020687694,0.01696564,0.0022779547,0.07220207,-0.031761527,-0.012118314,-0.05862956,0.009152213,0.043649014,0.016642485,-0.03981732,0.009688881,0.04706523,0.031553783,0.00939458,-0.014253447,-0.02193992,-0.029614853,0.042356394,0.015465278,0.03965574,0.054243885,-0.011829783,-0.047965445,-0.031484537,0.04930423,0.013560971,-0.047965445,-0.0012507832,-0.036401108,-0.013076238,-0.009896624,0.014807426,-0.010087054,0.001146912,-0.032730993,-0.0071440353,-0.061630286,0.001415246,-0.014599684,0.048796415,-0.03310031,-0.035362396,0.041987076,0.024490537,0.043718264,0.020197192,-0.015442195,0.041525424,-0.0015479705,-0.03540856,0.0005756199,-0.012776166,-0.04009431,0.018027436,-0.016123129,-0.042541057,0.052489616,-0.029499441,0.002243331,-0.028368399,0.0070920996,0.04468773,-0.018985359,-0.0022519869,0.017208006,-0.024675198,-0.025644662,0.0080154,0.010802612,-0.027306603,-0.05826024,0.015234453,0.039032515,0.00783651,-0.010664117,0.0031392206,0.02737585,0.018916111,-0.03882477,-0.0018163045,0.020716548,0.04958122,0.039401837,-0.026660293,0.0083847195,-0.0547517,0.03882477,0.019146938,0.032500166,0.026152477,-0.040071227,0.027237356,-0.02792983,0.023151752,-0.0003206304,-0.022886302,0.006036075,0.03088439,0.0031738444,-0.0005460455,-0.019654753,0.0015566264,-0.009284938,-0.01456506,-0.0010329421,0.010802612,0.06269208,-0.017842775,0.00022451342,-0.001931717,0.029822595,0.024467455,-0.00008579298,0.012279892,0.040532876,0.004405873,0.021766802,-0.028368399,-0.022828598,0.0073229247,-0.060291503,0.009786982,-0.0010163515,-0.022932468,0.028160656,-0.024467455,-0.024305876,-0.025852405,0.05115083,-0.0052772374,-0.022516983,-0.0036297238,-0.007224824,0.0009723505,-0.0067170085,-0.02314021,0.010825695,-0.024305876,-0.004959853,-0.0069478336,-0.003095941,-0.0492119,0.014045704,0.011581646,-0.027999077,-0.011420069,-0.0019187331,0.0035085406,0.037462905,0.0061803404,0.016192377,-0.024998352,-0.028576141,-0.010733364,-0.03097672,-0.0010935336,0.006324606,0.008788664,-0.0188007,0.004385676,0.011356592,0.028806966,-0.011668206,-0.0065496606,0.019700918,0.01161627,-0.014345776,-0.00437702,0.012049067,-0.00082592084,-0.040763702,-0.017946647,-0.0008244782,0.008557838,-0.024559785,0.004146195,-0.016446285,0.033261888,-0.022343865,0.041894745,-0.006157258,0.041917827,-0.034900747,0.04210249,-0.0034854582,0.0017787955,-0.002436647,-0.024005804,0.012603047,-0.0055542276,-0.01667711,-0.012660754,-0.037762977,-0.0089387,0.010710282,-0.0020904094,0.027860582,-0.01990866,0.034900747,-0.000054460284,0.024282794,-0.019031525,0.050319858,-0.0018667976,0.030515071,0.0077845748,0.022274617,-0.0026934398,-0.025852405,0.019758623,0.01889303,0.013006991,0.015961552,-0.025136847,-0.010687199,-0.016804064,-0.055675,-0.0018624696,-0.025598498,0.0109872725,0.026937282,-0.018315967,-0.009036801,0.03125371,-0.015915386,0.008996406,0.04044055,0.009711964,0.006295753,0.00940035,0.021224363,-0.0058571855,-0.02479061,0.0030064962,0.043210447,0.01878916,0.02719119,0.0057475436,-0.003263289,0.012545341,-0.0025188783,-0.050550684,-0.024629032,0.015592231,0.016215459,0.0055340305,-0.0032315506,0.026406385,0.019943284,-0.035731718,-0.0013265227,-0.042079404,0.0086963335,-0.004146195,-0.026337137,-0.03316956,-0.031900022,0.026152477,-0.0029213794,0.0012471766,0.038940184,-0.030214999,-0.022944009,-0.010485227,0.025690828,-0.012464552,0.033215724,-0.00839049,-0.041525424,-0.010635264,0.033538878,-0.0003076465,-0.0107853,0.015095958,0.036701184,0.024929104,0.03907868,-0.013480183,0.012453011,-0.026937282,0.05078151,0.0012969482,-0.011119996,-0.028622305,-0.011218097,-0.018685287,-0.01760041,-0.0287608,-0.01593847,0.01907769,0.0068728155,-0.017104136,-0.029499441,-0.0037999572,-0.015153664,0.0057735112,-0.024028886,-0.028137572,0.02165139,0.019839412,0.026429467,0.032384753,0.045033965,-0.020139486,-0.027445098,-0.012799249,0.03780914,-0.011720141,-0.015349865,-0.022736266,-0.02746818,-0.025829323,0.0034335225,0.008788664,-0.035154656,0.01641166,-0.02479061,0.017588869,0.024490537,0.0014664604,0.016527073,0.018015895,-0.034577593,0.018096684,-0.0071382644,0.0045501385,-0.03993273,-0.007513355,-0.021986086,-0.035985623,0.011777848,-0.027491262,-0.0029661017,-0.04311812,0.003817269,0.0008619873,-0.0501352,-0.029914925,0.05345908,-0.017773528,-0.013399394,0.024352042,0.02885313,0.02525226,0.0031190235,-0.00654389,0.010179385,-0.017381126,0.010883401,0.019435469,0.024559785,-0.0038778607,-0.003929796,-0.0141495755,0.012660754,0.0046770927,0.03300798,-0.006803568,-0.05576733,0.0050752657,0.032661743,0.0059148916,0.002608323,-0.017034888,0.0241443,-0.012291433,0.0026487175,0.004313543,-0.01096996,-0.031299874,-0.008725187,-0.0039990437,0.018858407,0.00598991,0.022136122,-0.011108455,0.04865792,0.00036246746,-0.016665569,-0.016919475,-0.0023746127,-0.041156106,-0.003107482,0.055813495,-0.021524435,-0.006139946,0.013618678,-0.015499902,0.047503795,0.033954363,-0.014969004,-0.039332587,-0.039563414,0.03411594,-0.056875292,0.011143079,0.008857911,0.016388578,0.028276067,0.027329685,0.0031478766,-0.02211304,-0.0241443,0.0050723804,0.027306603,-0.018985359,0.034139022,0.0058860388,-0.027214272,-0.0010127448,-0.023174834,0.014438107,-0.0055628833,-0.020543428,-0.009631175,0.030030338,-0.007767263,0.014969004,0.018846864,0.039563414,-0.010190926,0.027422015,-0.040971447,-0.0011497972,0.013410935,-0.003364275,0.03335422,0.017565785,-0.002012506,0.0017759101,0.014495812,-0.013849502,0.0023587435,-0.025206095,0.029176285,0.0084597375,0.009440744,0.009383038,-0.0094061205,-0.014680473,-0.03963266,-0.01705797,0.02903779,0.031969268,0.0034046695,0.0053234026,0.002683341,-0.0028001964,-0.016157754,0.0038114986,-0.044826224,-0.0076056854,0.018489085,-0.003566247,0.01935468,-0.003511426,0.00977544,0.021812966,0.005430159,-0.013560971,0.019308515,0.01833905,0.0078018866,0.0178774,-0.008742498,0.010208238,-0.023913475,0.0073171537,0.041133024,-0.0025390754,0.010000495,-0.0051733665,0.010606411,0.039309505,-0.044756975,-0.03954033,-0.0028290495,-0.017150301,-0.015546067,-0.015003628,-0.000031760985,0.002339989,0.025159929,0.0073690894,0.021709096,-0.012129856,0.013422476,-0.0002558912,-0.0086097745,-0.00004258091,0.014288071,0.053043596,0.008967553,0.019158479,-0.035454728,-0.0003148598,0.00931379,0.019366222,-0.013318605,-0.056090485,-0.0339082,-0.0026112082,-0.018962277,-0.005900465,-0.021028161,-0.03097672,-0.007778804,0.011021896,0.022563148,0.010087054,-0.004140424,-0.0036672328,0.031830773,-0.015003628,0.018662205,0.051750977,-0.020531887,-0.00331811,-0.00930802,-0.012487635,0.075802945,0.045587946,0.029661018,-0.03723208,-0.0059206625,0.0019201759,-0.004607845,0.009758129,0.015776891,-0.006440019,0.020901207,-0.028991625,-0.005842759,0.020554971,0.018766075,-0.010883401,0.0658313,0.018062059,0.013630219,0.013249357,-0.015176747,0.031369124,-0.010814154,0.03785531,-0.012845414,-0.005909121,-0.0030613171,-0.03725516,0.027352767,0.024744445,0.029291699,-0.008684793,-0.026706457,-0.022159204,-0.019054607,0.010306338,-0.006786256,0.0025318621,-0.011875949,-0.011910573,-0.015546067,-0.008690563,-0.031022886,-0.0005391929,-0.04083295,0.010104367,0.0036932006,0.030353494,-0.0013835076,-0.017854318,0.027583594,-0.026198642,0.031969268,0.018073602,0.01686177,0.03501616,-0.004544368,-0.000008064225,-0.040140476,-0.020428017,-0.0051877927,0.0062091937,0.041963995,0.0658313,-0.0043625934,0.00433374,-0.027491262,0.022436194,-0.021316692,-0.010283256,-0.0024900252,0.014992086,-0.026683375,-0.0043193134,-0.025506167,-0.01788894,0.024998352,0.017923564,-0.014992086,-0.041871663,0.008811746,0.0043827905,0.022055333,0.01815439,-0.005640787,0.00086920056,0.023082504,0.019112313,0.015130581,0.009463827,-0.010283256,0.014138034,-0.010762217,0.0015912502,0.008500132,-0.0011454693,-0.016919475,-0.033423465,0.008234683,-0.0034883434,-0.01567302,-0.029222451,0.0051647103,0.008425114,0.011143079,-0.003955764,0.002713637,-0.041802414,-0.008113501,-0.014172657,0.024236629,-0.013076238,-0.0001271341,0.007161347,0.006111093,0.0103525035,0.015326783,-0.020024072,-0.013976457,0.024375124,0.04865792,0.015915386,-0.0061803404,0.005297435,0.009440744,0.029199367,0.019781707,0.011125767,0.017150301,-0.015950011,0.009660028,0.030445823,-0.01318011,-0.015453736,-0.02497527,-0.007270989,0.015950011,-0.053043596,0.0136763835,-0.008702104,-0.026960365,-0.02432896,0.012418387,0.008713645,0.037693728,0.0056927227,0.0287608,-0.0043799053,-0.017588869,-0.01889303,0.001001925,0.0073979427,-0.051381655,-0.010646805,0.007501814,-0.01484205,0.011829783,-0.017923564,-0.057937086,-0.018315967,-0.031184463,0.01271846,-0.026567962,-0.03741674,0.005594622,-0.0073402366,0.06920135,0.011443151,-0.019273892,-0.011581646,0.06730858,-0.012983909,0.018189013,0.027652841,-0.0013560972,0.016873311,0.025159929,0.003372931,-0.0061630285,-0.009031029,0.01732342,-0.0054503563,-0.023336412,0.02035877,0.028252985,-0.024513619,0.02571391,0.039678823,0.0030468905,0.004783849,0.010427522,-0.04422608,0.03291565,0.00940035,-0.02525226,-0.013687925,0.021085868,0.026198642,0.010612181,0.014668931,-0.055675,-0.0070920996,0.0075883735,-0.0022462162,0.021305151,-0.017288797,0.019123854,-0.0077557215,-0.011171932,0.035039242,0.014865133,-0.00350277,-0.011454693,-0.043995254,0.00005545211,-0.015880764,0.0021308037,0.006867045,0.018212097,0.0017860088,0.002318349,-0.026752623,-0.015442195,0.014530436,-0.04893491,-0.030930556,-0.013307064,0.06223043,-0.049627386,0.0060129925,-0.0037162832,0.05456704,0.010767988,-0.024490537,-0.02155906,0.055259515,0.008350096,0.024675198,-0.014911298,0.0007472961,-0.013537888,0.025921652,0.012302975,-0.016550155,-0.018408297,0.024859857,0.03178461,-0.018581416,0.016007718,0.035085406,-0.025113765,0.059876017,0.01732342,0.0049944767,-0.0070863287,0.021709096,0.0056292457,-0.018996902,0.02267856,0.008500132,0.02377498,-0.0025679285,-0.018685287,0.01244147,-0.0008980537,-0.030284246,0.0023659568,0.01742729,-0.00006293589,-0.0011115669,0.013226275,0.017865859,-0.012187562,0.03972499,-0.024375124,-0.03328497,0.026013982,0.016100047,0.016884852,0.009862,0.0019071919,-0.062091935,0.01105652,-0.022401571,-0.015823057,-0.039032515,0.0068728155,0.011789389,-0.0076287678,0.023359494,0.0053147464,0.0064111655,0.0053955354,-0.007778804,0.042956542,0.0032488625,-0.007594144,0.021812966,-0.009359956,-0.004682863,-0.021547519,0.029384028,-0.0012608818,0.02996109,-0.035824046,-0.0014520338,-0.028806966,-0.009873541,0.0296841,-0.013064697,0.013053156,0.024813693,0.014761262,-0.008719416,-0.042610303,-0.00010567459,0.0015941354,-0.009862,-0.034577593,-0.028368399,0.03520082,-0.013053156,0.0069824574,0.0031882708,0.00783074,-0.010410209,-0.030191915,-0.00047138802,-0.020970454,-0.034485262,0.018073602,0.013768714,-0.008552068,-0.0155806905,0.017034888,-0.0024914679,0.006463101,-0.017254172,0.00446935,-0.036701184,0.012603047,0.0023500875,0.020220274,0.008632856,-0.022089956,-0.015061334,-0.017658116,-0.021328233,-0.0074729607,-0.01761195,-0.0065669725,-0.029430194,-0.009937018,-0.024675198,-0.008575151,-0.022724725,0.006711238,-0.029707182,-0.026775705,-0.010687199,-0.005407077,-0.0116220405,0.034323685,0.019920202,0.05761393,0.01004666,-0.011085372,-0.010975731,0.020878125,-0.024352042,0.011691288,-0.023440283,-0.032384753,0.03187694,0.011812472,-0.008338555,-0.012487635,0.01918156,0.003234436,0.016515533,0.019250808,-0.0063361474,-0.034762252,0.0062553585,-0.014911298,0.0032402065,0.033515796,0.015315241,-0.010612181,-0.040417466,0.0010314994,-0.03501616,0.010900713,0.030030338,0.050458353,0.02663721,0.006405395,-0.03485458,-0.0014772803,-0.015442195,-0.0034768023,0.009233002,-0.04304887,-0.0006939178,-0.033331137,-0.012314516,-0.0010314994,0.022101497,0.0042644925,0.002953118,-0.011558564,-0.003834581,-0.03963266,0.020728089,0.005407077,-0.002272184,0.019273892,0.012118314,-0.0059322035,0.03935567,-0.029199367,-0.060337666,-0.0051012333,-0.009106048,0.030676648,-0.020289522,-0.02728352,-0.01853525,0.042056322,-0.01041598,-0.0063765417,-0.0036932006,-0.02018565,0.02166293,-0.022274617,0.009025259,-0.014288071,0.034693003,-0.013353229,0.0141495755,-0.015534526,-0.009348414,0.041594673,-0.005372453,0.02267856,0.009694652,0.018408297,0.0045472533,-0.021512894,-0.00802117,-0.015984634,0.0042731487,-0.035547055,-0.009798523,0.021535976,-0.00033127,0.010340962,-0.009561927,-0.030745896,-0.007247906,0.038963266,0.0022692988,0.007842281,-0.03910176,-0.01151817,-0.004985821,-0.0045674504,-0.053505246,-0.008327014,-0.0073575485,-0.0044001024,-0.010248632,0.021120492,-0.00959078,-0.030861309,0.024859857,0.008032711,0.017254172,-0.02617556,-0.015615314,0.035824046,-0.009267625,-0.021686012,0.0024640574,0.0013784583,0.024098134,0.010629493,0.015707644,0.00006866144,-0.022055333,0.014449648,-0.013872585,-0.004720372,-0.033677373,-0.011408527,0.03033041,0.0018956506,0.009054112,-0.00820006,-0.01723109,0.03787839,0.038478535,-0.016019259,0.0068785865,0.023094045,-0.01824672,-0.00028690833,0.036724266,0.024490537,-0.006803568,-0.004027897,0.031669196,0.016815605,-0.019493176,0.034139022,-0.025967818,0.02534459,0.011875949,0.011968278,-0.023624944,-0.008586692,-0.022655478,0.036170285,-0.010104367,0.022609312,-0.039771155,-0.01641166,-0.027814418,-0.0013597037,0.011223868,-0.0007509027,0.013376311,0.024028886,0.022263076,0.017034888,0.023440283,-0.023013256,-0.028576141,-0.036331862,-0.011737454,-0.0034248666,-0.010918025,-0.03344655,-0.0141495755,-0.009844688,0.009631175,0.015234453,-0.02285168,0.011818242,-0.0046107303,0.017796611,0.014438107,-0.0080154,-0.0023573008,-0.004498203]},{"id":"class-HTTPError","type":"class","source":"main","text":"Class: HTTPError\nProperties: body: string | null, isRetryable: boolean, statusCode: number","meta":{"url":"/docs/classes/HTTPError"},"embedding":[-0.028445205,0.012388804,-0.012111601,0.013081809,0.0042140055,0.033562783,-0.025758477,-0.0021229952,0.023050426,-0.015470012,-0.009574136,-0.006615536,0.03729435,0.015320749,-0.0019417477,-0.0001875779,-0.033776015,0.025225395,0.05808451,0.042113405,-0.0017818235,-0.020214433,0.00848665,-0.0020603582,-0.0031851593,0.041025918,0.021547137,-0.0029479382,-0.030151064,-0.007740337,0.028722407,-0.038765654,-0.017986154,0.028914316,0.011983662,0.03656936,0.013582905,-0.012580713,-0.019958554,-0.026781993,0.012079617,-0.056336004,-0.0072445716,-0.023284981,-0.05215665,0.022346757,0.0031611708,-0.033967923,0.021152657,0.05236988,-0.02354086,0.0063223415,0.017591674,0.027784184,0.0030438928,-0.00953149,-0.03787008,0.06947112,-0.022090878,-0.016482865,0.033413522,-0.005405442,-0.009750052,-0.025737153,-0.013657536,0.036846563,0.0009335582,0.002809337,0.0049256687,0.046783194,-0.009131678,0.045930263,0.055397782,-0.024585698,-0.0014779672,0.02867976,0.057060994,-0.008438673,0.054800734,-0.05386251,-0.043840587,0.024948193,-0.029554013,-0.034778208,0.012346157,-0.017517043,-0.07744601,-0.025566567,-0.0010348436,-0.013359011,0.012836591,0.00047810707,-0.0339466,0.03189957,-0.0020150463,-0.05663453,-0.009723399,-0.0032038172,0.013625552,0.0028306604,0.050791964,0.008838484,-0.048190527,0.04413911,-0.02603568,-0.015864491,0.00045944922,0.0027213788,0.0019204245,-0.049896386,-0.006135763,0.0309187,-0.062818274,-0.0009488843,-0.00050009665,-0.057956573,-0.018828424,-0.041942816,-0.002801341,-0.012506082,0.03288044,-0.034501005,0.019841276,0.0017445077,-0.036014955,-0.0060717934,0.025971709,0.004440565,-0.03044959,0.051005196,0.05279635,0.012047632,-0.006476935,-0.025182748,0.026078325,0.014041355,0.0076123974,-0.0022749235,-0.021131333,-0.010293795,0.049214043,-0.030598853,0.03511938,-0.01854056,0.053180166,-0.0025494602,0.0037582214,0.02729375,-0.010432396,0.022879839,-0.015565967,0.034351744,-0.01934018,0.009291602,-0.0032091478,0.0015406043,0.02631288,0.00011153055,-0.03769949,-0.009350242,-0.016344264,-0.0002202291,0.016344264,-0.04878758,-0.012068955,-0.0017844888,0.013849446,-0.04190017,-0.04004505,-0.012506082,0.049640507,0.009835346,-0.022325434,-0.001124801,0.007596405,0.0028653108,0.08290476,-0.036867887,0.05168754,-0.018242033,0.012378142,0.024521729,0.024415113,-0.012612698,0.007063324,-0.016781392,-0.008907785,0.070537284,0.031387813,-0.011866384,0.005714629,0.020150464,-0.017357118,-0.021184642,0.0041020587,-0.00388083,-0.028253296,0.024351142,-0.027933447,0.011216026,-0.028018741,-0.0093289185,0.03769949,-0.019372165,-0.024116587,0.016429558,-0.007596405,-0.06469472,-0.020832807,0.0010515024,0.041750908,0.030620176,-0.0048377104,0.035993632,-0.0190843,0.004800395,0.03946932,-0.012623359,-0.01255939,0.0044805463,-0.08115626,0.021461843,0.030236358,0.0024814922,0.012015647,0.039682552,0.01689867,0.028978286,-0.026888609,0.000023468061,0.000007980598,-0.010229825,-0.022837192,-0.0062050633,0.009718068,-0.015491336,0.03411719,0.0108215455,0.0035476545,-0.0049150074,0.017527705,-0.022581313,-0.022218818,0.062050633,0.027890801,0.030620176,-0.012975193,-0.033051025,0.025566567,0.0008009543,0.011919692,0.009355572,-0.0023508875,-0.047849357,-0.015821846,0.0020776833,0.028061386,-0.016600143,0.0013540259,-0.008225441,0.024969516,0.021621767,-0.01795417,0.0104110725,-0.041601647,-0.04290236,0.03755023,-0.0034570305,0.013838784,-0.031131934,-0.0049549886,-0.007921585,0.07919452,-0.031217227,0.013337688,0.01710124,-0.0022242807,-0.018999008,-0.043371476,0.02808271,0.042667806,-0.021035379,-0.02492687,0.0078096376,-0.000023030767,0.023284981,0.024692314,0.011727783,0.0072712256,0.012378142,0.0006583551,-0.01729315,0.010069901,-0.043925878,0.008907785,0.018529898,0.0036462743,-0.03268853,0.03334955,-0.019158933,0.031878248,-0.009003739,-0.009376896,-0.037656847,-0.012132925,0.07279755,0.024329819,0.031259872,-0.0046991096,-0.007830961,0.002039035,0.00986733,-0.08998408,0.01841262,-0.007676367,-0.009579467,0.029255489,-0.033839986,0.010283134,-0.040684745,0.009456858,-0.050066974,0.012218217,0.07505781,-0.048574347,-0.023754092,-0.014777007,0.01170646,-0.0038515106,0.016994623,-0.027634922,-0.038232572,0.042006787,0.01440385,0.012751299,0.016205665,-0.038701683,0.024756284,-0.017836891,-0.012111601,0.040812686,-0.032176774,-0.037784785,0.011877046,0.03906418,-0.038829625,-0.045844972,-0.028978286,-0.020299727,-0.030705469,-0.005741283,-0.012143587,-0.03985314,-0.015075532,-0.07429018,0.0002697057,0.003840849,-0.022133525,-0.0075537586,0.046527315,-0.051730186,0.04051416,-0.039106827,-0.015619275,0.029426074,0.0588095,0.0061197705,-0.0348635,0.03656936,0.00802287,-0.0004271312,0.058766857,-0.024329819,-0.030236358,0.007836292,0.0058212453,-0.051133133,0.023626152,-0.019819954,0.04066342,0.026248911,0.02142986,-0.062647685,0.021685738,0.024756284,0.003302437,-0.022773223,-0.012452774,-0.016365588,-0.02782683,0.033882633,0.035417907,-0.0035236657,-0.026270235,0.026526114,0.027976094,-0.025694506,-0.011429258,0.016600143,-0.056037482,0.041921493,0.011578521,-0.01170646,0.021984262,0.031323843,0.014979578,0.010992131,-0.019510766,0.032070156,-0.041580323,0.015875153,-0.0038168603,0.013103132,0.018519236,0.021792354,0.0050136275,0.047039073,-0.03270985,0.03433042,0.016685437,-0.032923087,-0.010171186,-0.041409735,0.008651906,0.00049176725,-0.005042947,-0.013668198,-0.04597291,-0.01689867,-0.030428266,0.047508184,-0.036292158,-0.0009722066,0.026739346,0.054033097,0.007228579,0.0148836225,-0.06077124,0.010283134,0.004440565,0.002137655,0.017858215,-0.019244226,0.017090578,0.024415113,0.008795837,0.027379043,-0.029319458,0.024095263,-0.02018245,-0.041665614,-0.0023189026,-0.030833408,0.02033171,-0.054630145,-0.018199388,0.014414512,-0.028978286,0.02058759,-0.05616542,-0.010746914,-0.004432569,0.013433643,-0.018401958,0.019553414,0.013988047,-0.0028519835,-0.004190017,0.033967923,-0.029554013,-0.014808992,0.047252305,0.02946872,0.0017644983,-0.004643136,0.0118344,-0.0066635134,-0.014094663,0.024372466,-0.0057839295,-0.0033957262,-0.019542752,0.031323843,-0.04379794,-0.0069620386,0.06200799,0.008977085,0.021941615,-0.015374058,0.018913716,-0.015960447,-0.005184213,-0.020640898,-0.008145479,-0.05335075,-0.0017898197,0.012111601,-0.04326486,0.019564075,-0.032326035,-0.0029346112,-0.06622999,-0.0336694,0.010197841,0.054758087,0.031089287,-0.0023855376,-0.039618585,-0.0071326243,-0.028295942,-0.0036382782,0.029809892,-0.0013686856,-0.015203471,-0.042198695,-0.013572244,-0.0045685046,0.009440865,-0.044608224,0.0052721715,-0.002196294,-0.01118404,0.006583551,0.03584437,-0.03893624,-0.0023735433,0.019510766,0.02887167,0.020193111,0.034543652,-0.00559202,-0.008459996,-0.002160311,0.028765054,-0.0039154803,0.031750306,-0.047508184,-0.013124456,-0.0070046852,-0.069087304,0.0054694116,0.0009675421,-0.009259618,0.028615791,-0.020065172,0.014627744,0.005144232,-0.010437727,0.0018484585,0.022282789,0.027570952,-0.00065868825,0.029617984,0.0063703186,0.031281196,-0.014307896,0.05262576,-0.017591674,-0.042710453,-0.008012208,0.00888113,-0.0046138167,0.033882633,0.016749406,0.00463514,0.009478181,-0.016951978,0.018380634,0.0257798,-0.016056402,-0.0039288076,0.04610085,-0.021387212,0.035801724,0.011407934,0.026120972,0.004960319,-0.07514311,0.03868036,0.0327525,0.009755383,-0.029084902,0.0055173887,0.036612008,-0.03313632,0.033413522,0.027613599,0.026014356,0.002985254,0.0357804,0.0207795,-0.007201925,0.039703876,-0.016024416,0.0011841063,-0.015384719,0.034351744,0.010245818,-0.013433643,0.036078926,0.02157912,-0.040684745,0.015224795,0.0070100157,-0.0015219464,0.019233564,0.0069353846,-0.009984608,-0.0071912636,-0.03168634,-0.0014606421,0.03682524,-0.031153256,-0.047380242,0.01032578,-0.0188071,0.011823738,-0.017783584,-0.004195348,-0.025993032,-0.015533982,-0.013039162,0.010938823,0.016856022,-0.06533442,-0.017943509,-0.02111001,-0.060515363,-0.01656816,-0.012442112,0.05096255,0.01598177,0.011962339,0.0017098575,-0.019713337,0.046740547,0.008310733,0.015043547,-0.01644022,0.0013180429,0.009515497,0.030961348,0.031814277,0.004445896,0.021611106,-0.04136709,-0.0099472925,-0.013657536,-0.02032105,0.0044272384,0.011653151,-0.03592966,-0.017751599,0.03262456,-0.0017844888,-0.01322041,-0.04524792,0.014808992,-0.04477881,-0.01966003,-0.017794246,0.00007588076,-0.015757876,0.0315584,-0.043968525,-0.003603628,-0.021035379,-0.0036516052,-0.0059865,0.0073085413,0.043371476,0.011791753,0.036995824,-0.0031691669,0.0019377497,-0.0005407441,0.0013673529,-0.024052616,-0.04253987,0.01243145,-0.035737753,-0.0020496966,-0.046783194,-0.010938823,0.019969216,-0.023882031,0.015533982,-0.005959846,-0.0024988174,0.026206264,-0.013881431,-0.00516289,-0.013945401,0.02795477,0.01854056,0.009925969,-0.030001802,0.021120671,0.006892738,0.022346757,0.037315674,0.019521428,0.015747214,0.011983662,-0.03170766,0.035673782,0.012836591,0.019638706,0.021397874,0.037912723,-0.00083160645,-0.024159234,0.004978977,0.021408536,-0.030876055,0.026781993,0.018274019,0.052327234,-0.0026520782,0.0009622113,0.04900081,0.00954215,-0.05676247,0.00089157803,0.016909331,0.048446406,-0.0022962466,0.03057753,-0.021024717,0.00051508954,0.033520136,0.043755293,-0.010906838,0.0017951505,-0.0032118133,-0.009776707,0.0061037783,0.05236988,0.01684536,0.00677546,-0.0085612815,-0.013359011,-0.010080563,-0.008017539,0.0056666518,-0.03439439,-0.013263057,0.0065142503,0.0020550275,-0.038914915,-0.005306822,0.0032651215,-0.006844761,0.014958254,0.041004594,-0.047508184,0.010101886,-0.00822011,-0.03170766,-0.0043552723,-0.04985374,0.004059412,-0.033008378,-0.013796138,0.043350153,-0.030705469,-0.009115686,0.0052508484,0.020811485,0.016536174,-0.032070156,-0.009909977,-0.012527404,-0.01558729,0.019126948,-0.0053041563,-0.037251703,-0.0061304322,-0.045333214,0.019510766,-0.01953209,-0.0116424905,0.00008466827,-0.0015339408,0.0030465582,-0.013988047,-0.026291557,-0.0052082017,-0.022133525,-0.023029102,-0.011088086,-0.00041713592,0.05420368,-0.059022736,-0.0116424905,-0.011759768,-0.03196354,-0.03592966,0.02407394,0.04367,0.04426705,0.013828122,-0.025438627,-0.035268642,0.0073085413,-0.001234749,-0.00039747855,0.01940415,0.06887407,-0.02236808,-0.025395982,0.031089287,-0.0028972956,0.034031894,-0.02703787,0.0038754994,-0.007404496,0.031345166,0.026462143,0.0014273245,0.033818662,0.014979578,0.056336004,-0.004091397,0.009248956,0.041686937,-0.014158633,0.022730576,-0.010085894,-0.0012174238,-0.011354626,0.03868036,-0.009019732,-0.0073831724,-0.02631288,-0.034287773,-0.0297246,0.024628345,-0.014766345,-0.0017111902,0.030897377,0.009968616,-0.020768838,-0.015000901,0.01065096,0.00266274,-0.022858515,-0.034948792,0.026654053,-0.0041260472,-0.009984608,-0.0336694,0.04925669,-0.024095263,0.01545935,-0.02426585,-0.06767997,-0.012761961,-0.01301784,-0.042070758,-0.015139502,0.03196354,-0.008961093,-0.04108989,-0.0045205276,0.029703276,0.016653452,-0.009398219,0.024223203,-0.016813377,0.039810494,-0.021227287,0.013774814,0.009179655,0.00834805,0.01710124,0.012783283,0.013902754,-0.043968525,0.04260384,-0.0064502805,-0.004701775,-0.019702675,0.009771376,0.019105624,0.021984262,-0.013167102,-0.011365288,0.033584107,-0.02157912,-0.0043979185,0.050749317,0.030620176,0.019308196,-0.02722978,-0.006802114,-0.033157643,-0.025417304,0.014531789,0.02347689,0.036995824,0.026995225,-0.042198695,0.014158633,0.013476289,0.010315118,0.032453973,-0.037742138,0.006386311,0.04546115,0.022922486,0.032859117,-0.025395982,0.056336004,-0.025332011,0.0053654606,0.018924378,0.00061237684,0.014702375,-0.007596405,-0.0070046852,-0.0248629,0.037379645,0.018711144,-0.024585698,0.0039154803,0.000853596,0.009334249,0.03993843,0.0051975404,0.009350242,0.017922185,-0.0043232874,0.011098747,0.011471904,-0.029831216,-0.016088387,0.008950431,0.0025068137,0.008236102,-0.025182748,0.026739346,0.007409827,-0.046015557,-0.0016911996,0.04452293,0.0057785986,-0.0012387472,-0.022218818,-0.0077243443,-0.026163617,-0.025417304,0.05569631,-0.019755984,0.004597824,-0.010459051,-0.0015206137,-0.0022189498,0.055824246,0.043094274,-0.03328558,0.04767877,-0.06537706,-0.03571643,0.0036516052,0.017357118,0.02899961,-0.00010278469,-0.021333903,0.005432096,-0.026120972,-0.03196354,0.0064182957,0.011557197,-0.0028519835,0.017079918,0.008875799,0.043435443,-0.024905547,0.011173379,-0.010427065,0.058510978,0.039298736,0.00032051498,0.008017539,0.010443058,0.013689522,-0.014830315,0.028125357,0.061538875,0.009232963,-0.01743175,-0.027272427,0.018828424,-0.0036356128,-0.008795837,-0.024457758,-0.0007762993,0.011322642,-0.033584107,-0.0072232485,0.017858215,-0.01637625,-0.013881431,-0.015576628,-0.013529597,0.013508274,-0.01565126,0.005306822,-0.022282789,0.0058372375,0.0069620386,0.010032586,-0.044864103,-0.06320209,0.01328438,0.012932546,0.007703021,0.02170706,0.016749406,0.051218428,0.014179956,-0.0057999217,0.034671593,0.010315118,-0.0044378997,-0.009153002,0.031153256,-0.025097456,-0.01854056,-0.002568118,0.03369072,0.0036489398,-0.030684145,-0.0026813976,0.018050125,-0.027379043,0.01743175,0.016919993,-0.01617368,0.005149563,0.015736552,-0.014254588,0.018231371,-0.009558143,0.0025521256,0.011578521,-0.0131351175,-0.006834099,0.0052188635,0.033370875,0.0047310945,-0.029703276,-0.030300327,0.009776707,0.011791753,0.036398776,0.01960672,0.054502208,-0.010421734,0.030769438,0.01723984,-0.00029602658,0.028786376,0.023690121,0.023007778,0.023690121,-0.012602036,0.010698937,0.034245126,0.027464336,-0.01867916,-0.022858515,-0.0008322728,-0.014819654,-0.009137009,0.005602682,-0.047465537,-0.04326486,-0.016632129,-0.035140704,0.04708172,-0.0020736854,-0.021493828,-0.0318356,0.04499204,0.01433988,0.00664219,-0.0055493736,-0.046143495,-0.0148836225,0.011578521,-0.01822071,0.024713637,-0.008539959,-0.0032437982,0.016546836,-0.0045418506,-0.0012167575,-0.017133225,-0.026099648,-0.03392528,0.01809277,-0.03151575,0.00565599,0.01255939,0.024223203,-0.05808451,0.003926142,-0.012740637,-0.036334805,0.0128259305,0.035012763,0.003958127,0.0039687883,-0.07492987,-0.0048430413,-0.015395381,-0.01992657,-0.010379088,-0.01131198,-0.020011863,0.0188071,0.006194402,-0.0059865,-0.030151064,0.047465537,0.013902754,-0.023882031,0.0102031715,0.062647685,-0.024884224,-0.0018537893,0.010059239,-0.018860407,-0.009702075,-0.022943808,0.030151064,0.018732468,0.0032304712,0.0048563685,-0.043115597,0.023711445,0.027762862,0.039810494,-0.017858215,-0.061410937,0.049896386,-0.005077597,0.017996816,0.021419197,-0.022645283,0.02189897,0.05335075,0.01585383,0.007703021,-0.015299426,0.049640507,-0.000536746,-0.016909331,0.001333369,-0.030534882,0.00848132,-0.028295942,0.024500405,-0.00069233903,-0.010016593,-0.015374058,0.0077776527,0.029383428,-0.019628044,-0.010581659,-0.02202691,-0.020544944,0.030982671,0.0190843,0.037976693,0.007740337,0.023839384,0.017932847,0.007505781,-0.033370875,-0.012250203,0.0049043456,-0.014702375,-0.007836292,0.0069567077,0.005336141,-0.008065516,0.0116424905,0.026334204,-0.008939769,-0.013902754,-0.008523966,-0.040492836,-0.008907785,0.021120671,0.021611106,-0.032901764,-0.010240487,0.008310733,0.009584798,0.026120972,-0.006812776,0.033733368,0.019564075,0.0008282747,-0.014041355,-0.014702375,-0.04347809,0.029362105,0.0053041563,0.00072365755,0.047209658,-0.01301784,-0.022602636,0.021685738,-0.005405442,-0.015491336,0.011461243,-0.010336442,-0.01762366,0.008966424,-0.017485058,-0.01808211,-0.042241342,0.041537676,0.010341773,0.050024327,-0.020342372,0.0037475599,-0.025374658,0.030428266,-0.0076283896,0.023199687,-0.017303811,-0.022794547,-0.005911869,0.013913415,0.02618494,-0.029426074,0.017325135,0.007084647,0.000026903934,-0.009131678,-0.036270835,-0.03563114,-0.020598251,-0.002554791,0.00644495,0.01874313,-0.012463435,0.00037748803,0.013508274,-0.01038975,-0.016450882,-0.015608613,-0.015256779,-0.011749106,-0.008534628,-0.0058052526,0.010171186,-0.014414512,0.004011435,-0.018039463,0.012591374,-0.010480373,-0.015171487,-0.013870769,0.032368682,-0.0066528516,-0.028914316,0.011599843,-0.002985254,0.030641498,-0.0028386565,0.007964231,-0.02571583,-0.004539185,-0.012239541,-0.010597651,0.025758477,0.0042593176,0.023157042,-0.026696699,-0.0038035333,-0.024287174,0.04190017,-0.016994623,0.008209448,0.026355527,-0.015331411,-0.018849745,-0.0025694508,-0.004741756,0.023967324,-0.0030225695,-0.034607623,0.036142897,0.012879238,0.00053174834,0.025395982,-0.00015609279,-0.00907837,-0.012196895,-0.021014055,0.0013520268,-0.008955762,-0.0055813584,-0.00940355,0.016280295,0.022687929,0.014872962,-0.016109709,0.050493438,0.013327027,-0.026824638,0.000284532,-0.021184642,-0.013433643,0.02584377,0.04806259,-0.0058585606,-0.017378442,0.027443012,-0.017357118,0.012932546,-0.043968525,0.005405442,-0.021035379,0.018103432,-0.018529898,-0.022730576,-0.017474396,-0.020225095,-0.0007629723,-0.021408536,-0.00743115,0.013476289,-0.010491035,0.013604228,-0.040812686,-0.0069353846,0.023562182,0.025054809,0.009392888,-0.00016550501,0.023114394,-0.004952323,-0.0075910743,-0.009344911,-0.0011827736,0.01243145,-0.05228459,-0.0064556114,0.013241733,-0.025182748,-0.047892,-0.0006870082,-0.016418897,0.0013673529,0.032070156,-0.009099694,0.014190618,-0.01671742,0.012292849,0.037571553,-0.03196354,0.02722978,-0.01118404,-0.008646575,0.03262456,-0.0010495033,-0.0058052526,-0.0063809804,-0.022090878,0.00081894576,0.009003739,0.015470012,0.01834865,-0.016546836,0.05045079,-0.026462143,-0.020214433,0.009019732,0.016941316,-0.016290957,-0.01131198,-0.04032225,-0.049384627,-0.004315291,0.009248956,-0.023135718,0.02426585,0.021067362,-0.010533681,0.01940415,0.03776346,-0.030279003,0.027315073,-0.004603155,-0.018060787,0.017207857,0.0012527405,-0.047124363,-0.007089978,0.016482865,0.013636214,0.0058319066,0.011013455,0.015374058,0.0044112457,-0.006546235,-0.0067328135,0.0083533805,0.03392528,-0.006786122,-0.02177103,0.010187179,-0.02473496,-0.025950385,-0.03953329,-0.033456165,0.022240141,-0.010901508,0.010251149,-0.025801122,-0.0336694,0.006535574,0.00624771,0.0035423236,-0.013124456,-0.0040727393,-0.008364041,0.0026027681,0.018508574,0.010283134,0.0058585606,-0.0074418113,-0.006023816,0.027549628,0.04300898,-0.022197494,-0.045162626,-0.026462143,0.017751599,-0.022666607,-0.024031295,-0.021355227,0.017538367,-0.011813076,-0.024670992,-0.017527705,-0.059406552,-0.022410728,-0.021461843,0.008678559,-0.0025201407,-0.022943808,0.015054209,0.029745923,-0.02821065,0.019180257,-0.023860708,-0.015971107,0.027379043,0.025374658,-0.004011435,-0.014670391,-0.011152056,0.026163617,0.036803916,0.03959726,-0.013849446,0.017133225,0.0131351175,0.023946,0.008491981,-0.026547436,0.0035236657,-0.0024721634,0.049555216,0.0037475599,-0.01492627,0.01427591,-0.01656816,0.00017991486,0.028615791,-0.019436136,0.010618974,-0.057316873,0.026888609,0.020843469,0.010592321,-0.019329518,0.010592321,0.0089451,0.011759768,0.026270235,0.028423881,0.005885215,0.0030998662,0.020939425,0.0086625675,0.03230471,0.020214433,-0.014084001,0.03044959,-0.0038035333,-0.0067168213,0.031665016,-0.017453074,-0.0092276335,0.013540259,0.007916254,0.02262396,0.024287174,-0.0012034305,-0.027336396,-0.04742289,-0.0069407155,-0.0072125867,0.017506381,0.025054809,-0.012282187,-0.030790761,-0.024116587,-0.021685738,-0.019414812,0.02899961,-0.003899488,-0.010213833,-0.010443058,0.007969562,-0.018977685,0.021749707]},{"id":"class-Invite","type":"class","source":"main","text":"Class: Invite\nDescription: Represents an invite to a guild or channel.\nProperties: channel: APIChannelPartial, client: Client, code: string, createdAt: string | null, expiresAt: string | null, guild: APIGuildPartial, inviter: User | null, maxAge: number | null, maxUses: number | null, memberCount: number | null, presenceCount: number | null, temporary: boolean | null, type: number, url: string, uses: number | null\nMethods: delete() -> Promise — Delete this invite.\nRequires Manage Guild or Create Instant Invite permission.; getGuild() -> Guild | null — Resolve the guild from cache if available.","meta":{"url":"/docs/classes/Invite"},"embedding":[-0.02987698,-0.00685572,-0.028661188,0.011375543,0.017189959,-0.013981616,-0.070335865,0.010474955,0.015231181,0.017448878,0.037261795,-0.045524683,0.0058481884,-0.010165378,0.05227909,-0.011752663,-0.04372351,0.029111482,0.011223569,0.023730474,-0.02035327,0.047551006,0.032871433,0.03669893,-0.030417332,-0.025914397,-0.0036839645,0.01765151,-0.0068163197,0.011583803,0.050883178,-0.016446974,0.008291031,0.011454344,-0.01337372,0.049397208,0.036181092,0.02924657,-0.04169719,0.003233671,-0.030710025,0.015073579,0.011673862,-0.0053725657,-0.02078105,0.053990204,-0.046965625,0.02022944,0.00999089,-0.0018968618,-0.03712671,-0.027963232,0.00014133239,0.057952788,-0.004016056,-0.047596034,-0.0118877515,0.025576677,-0.05205394,0.017842885,-0.023167606,-0.033321727,-0.0039288118,0.025441589,0.021265116,0.016323144,-0.05146856,0.07402827,0.029989554,0.044894274,0.0046014376,-0.010722617,-0.020871108,0.018687185,-0.005594898,0.018822273,-0.04845159,0.044849243,0.03627115,-0.013576352,-0.023437783,0.013486294,-0.07857624,-0.034177285,0.017662767,-0.0036558213,-0.015613931,-0.013249889,-0.007435473,0.0011700598,-0.00423276,0.011094109,-0.057502493,-0.0039879126,0.03852262,-0.029314114,0.024901237,0.009028387,-0.022908688,0.05160365,0.06493234,-0.008566836,-0.075334124,0.019463941,0.022964975,-0.01823689,-0.034605063,0.031813245,-0.007204698,-0.02251468,-0.06704872,0.035753313,-0.008837012,0.017527679,-0.015445071,0.0046295812,0.024360884,-0.042935494,0.017786598,-0.0050967606,-0.06132999,-0.016919782,0.06619316,-0.014206763,-0.025599191,-0.0366539,-0.005167119,-0.005476696,-0.04421883,0.021163799,0.015073579,0.028255925,0.011420571,0.035483137,-0.029426688,-0.008110913,-0.036000974,0.014994777,-0.039941043,-0.047460947,0.009844544,-0.0319033,0.047010653,0.03179073,-0.04926212,-0.02501381,-0.027197734,0.03305155,-0.0058144163,0.013317433,-0.032691315,0.037509456,0.001612614,-0.010559385,-0.01845078,-0.009715085,-0.021512777,-0.008904556,-0.05362997,-0.01921628,0.021186315,-0.05295453,0.007835109,-0.01671715,-0.035190444,-0.029516745,0.019790404,0.0009814993,-0.025193928,0.064346954,0.02708516,-0.012090383,-0.053179674,0.032150965,0.037892208,0.010356753,-0.0020220997,-0.05844811,-0.014848432,-0.035415594,0.032331083,0.005476696,-0.0052628065,-0.112483345,-0.025914397,0.050207738,0.017257502,-0.020589676,0.022188218,-0.021704152,-0.024788663,-0.027873175,0.016773436,0.042575262,0.044151288,0.0006891603,0.04854165,-0.010829561,0.022874916,-0.04050391,-0.001088444,-0.034312375,0.045412112,-0.013508808,0.023100061,-0.047415916,0.019227536,-0.005240292,-0.037059166,0.015433813,0.023482813,-0.017583966,0.0030366676,-0.004156773,-0.018507067,0.013272404,-0.021377688,0.0014521969,-0.02717522,0.011313627,-0.07799085,0.020116867,0.02645475,-0.008775096,-0.0027284978,-0.004198988,-0.016492004,-0.040999234,0.012990971,-0.00049074966,-0.026094515,0.019418912,-0.027017616,-0.0699306,-0.028728733,0.02111877,0.027242763,0.044241346,0.007643734,-0.05912355,-0.021895526,-0.031182833,-0.012754566,0.0067487755,0.018417008,-0.032331083,0.02848107,-0.004902572,0.026004456,0.053044587,0.07961191,0.011673862,-0.007863252,0.020747278,0.005586455,0.012675765,-0.0057806442,0.0136213815,0.026342176,-0.011853979,0.04151707,-0.029764408,-0.00033684072,0.0064054267,-0.0009892387,0.010125978,0.021433976,-0.00579753,-0.03275886,0.0017364448,0.017572708,-0.05205394,0.065022394,-0.061600167,-0.018000487,0.033681963,0.00008253917,0.006444827,0.026769955,-0.03440243,-0.0366539,-0.013351206,0.0016140211,-0.0014029461,-0.007908282,0.07038089,0.0046774247,0.000019315574,0.021017455,0.013643896,-0.012293016,-0.010238551,0.013632639,-0.026477264,0.0064560845,0.0108239325,0.04388111,-0.028728733,0.08105285,0.05633173,-0.0020615004,-0.015073579,-0.039580807,-0.049802475,0.017426362,0.052414175,0.04367848,0.009985261,0.01392533,-0.06790428,0.037081677,0.03861268,-0.051738735,0.0024245495,-0.037667062,0.017752826,-0.016435716,0.024113223,0.0028030777,0.07474874,0.009118445,0.02429334,-0.018642155,-0.0012143856,-0.0020530575,-0.021006197,-0.026814984,-0.052234057,0.0107395025,0.0317457,0.02280737,-0.07267739,-0.012214215,0.04777615,0.05335979,0.0009019944,-0.0022880544,0.050613,0.01075076,0.027242763,0.05277441,-0.0090903025,0.028841306,0.029809438,0.015332498,0.009169104,-0.049082004,0.013835271,-0.026117029,0.0155126145,-0.026252117,0.018912332,-0.037531972,-0.026049485,0.01286714,-0.021006197,0.06187034,-0.017685281,-0.04194485,0.028233409,-0.048811827,-0.023392754,-0.024113223,0.025981942,-0.014859689,0.01972286,-0.017527679,-0.012687023,-0.0012854475,-0.055476174,0.010519984,0.019081192,-0.03804981,-0.046650417,-0.0027777487,-0.023122577,-0.015433813,0.02176044,0.043025553,-0.004215874,0.013171088,-0.0060508205,0.028233409,0.0018011745,-0.007958939,-0.024023164,-0.007823852,-0.0011278448,-0.013193603,0.024270825,0.047731124,0.0037149223,-0.0075030173,-0.027940718,0.03593343,-0.0037599516,0.0006360397,-0.007165297,0.019655315,-0.024743633,0.048406564,0.011831464,-0.00791391,-0.013992874,-0.0170999,0.0005660331,0.035843372,0.004114558,-0.007925168,-0.03395214,0.026139544,0.017156187,0.032916464,0.014206763,0.046155095,-0.03786969,-0.023325209,-0.03242114,0.029561775,0.037689574,0.0058256737,0.020161897,0.00774505,-0.025193928,0.03309658,-0.018934846,0.07582945,0.024541002,-0.045051876,-0.06340134,-0.0725423,-0.0005509061,0.050297797,0.0075367894,0.050477915,-0.0048856856,0.048136387,-0.039648354,-0.0022585038,0.014533226,-0.020679735,-0.005949504,-0.009315449,0.0368115,0.029359143,0.00643357,0.04714574,-0.076459855,0.022739828,-0.00040878216,-0.033659447,-0.0034081598,0.018946104,0.031858273,-0.02992201,0.028998908,-0.040864144,0.04376854,-0.023077548,0.021141285,-0.033749506,0.002451286,0.0047899983,0.050387856,-0.020713506,0.012259244,-0.027377851,0.010497469,-0.003377202,-0.028458556,-0.017809112,-0.0003470427,0.0657879,0.018248148,-0.04629018,-0.008020855,0.0051924484,0.006501114,0.012833368,0.037014134,0.05651185,0.053900145,0.0134525215,-0.0033715735,-0.0037402513,0.03579834,0.008561207,-0.00036902967,-0.036158577,-0.014127962,0.0039175544,-0.016683377,0.010064062,-0.00914096,0.016840981,-0.010756388,-0.010857705,-0.052594293,0.04588492,0.0015788419,-0.032173477,-0.026072,-0.0035685769,0.006174651,0.0073454147,0.026184574,-0.03775712,-0.01930634,0.0006515186,0.008065884,-0.040278763,0.040436365,-0.007851995,-0.0006300593,-0.006669974,0.009698198,-0.03593343,0.02467609,-0.04372351,0.0107395025,-0.019137478,0.028075807,-0.0407966,-0.010339867,0.00677129,0.016604576,-0.02742288,-0.03361442,0.031385466,0.012495648,0.018529583,-0.015816564,0.015073579,0.03194833,0.018585868,0.0064785993,-0.014116704,0.028255925,0.023370238,-0.02357287,-0.004325633,0.026769955,-0.013238632,-0.0071765543,-0.021974329,0.013666411,0.0059438758,0.01121794,0.01654829,0.05853817,0.021073742,-0.019576514,0.005341608,-0.040639,0.016784694,0.025981942,0.0002121305,-0.040323794,-0.0041201864,-0.03564074,-0.01714493,-0.022334563,-0.026184574,-0.012506905,-0.008246002,-0.0268375,0.007469245,0.013272404,-0.020961167,-0.035010327,0.025148898,0.004373477,-0.01943017,0.0398735,0.04228257,-0.007058352,-0.04559223,-0.0019855134,-0.015073579,0.0035545053,0.0068951207,-0.05151359,0.010587528,0.031498037,0.0023401196,-0.03847759,-0.010559385,-0.017809112,-0.00196722,0.036631387,0.006754404,-0.0011721705,0.030619966,-0.011060337,-0.04608755,-0.010762017,-0.0036501926,0.02785066,-0.013497551,0.004626767,0.005586455,0.045479655,-0.03577583,-0.00187294,0.0068163197,0.017381333,-0.0010406004,-0.015309983,-0.03271383,0.014679572,0.007863252,0.0127095375,-0.008578094,-0.01765151,-0.026364692,-0.020803565,-0.0056117843,0.01887856,0.01282211,-0.014105448,0.025576677,-0.008386718,0.005752501,0.025756795,0.020308241,0.036496297,-0.030439848,-0.050252765,-0.01595165,0.008003969,0.040481396,-0.022312049,0.005651185,-0.005155862,0.010525613,-0.013824014,-0.005518911,-0.000797864,0.00086962956,0.009934602,0.027062645,0.01578279,0.0042215027,-0.027625512,0.014296822,-0.022210732,0.0040864144,-0.006844463,-0.023325209,0.014488197,-0.002351377,-0.013508808,0.0046830536,-0.045344565,0.034582548,-0.030439848,-0.022570968,0.06443702,-0.04266532,-0.0028452927,-0.02809832,-0.017043613,0.036879048,0.032060906,0.008330432,0.018101804,-0.036046002,0.037261795,-0.038837824,0.005099575,0.028616158,0.03347933,0.008195343,0.005938247,0.007199069,0.0012249394,-0.030327275,-0.014308079,0.004806884,-0.014589513,0.012180442,0.012495648,-0.0056596277,-0.019857949,0.045997493,-0.021107513,0.053269733,-0.000944913,0.024113223,0.01088022,-0.002704576,0.022582224,0.010998421,-0.0155126145,0.011099737,0.00952371,0.036721446,0.0047337115,0.004525451,-0.041584615,-0.018383237,0.019542743,-0.0052290345,-0.0008710367,0.02679247,-0.013396235,-0.009968375,0.019869205,-0.0073904437,-0.012101641,-0.024203282,0.02751294,-0.053855117,-0.0029916381,-0.018079288,0.0035376193,-0.02505884,0.0019615917,-0.0050601745,-0.010007775,0.023325209,0.011212311,-0.017291274,0.016582062,-0.020488359,0.025419075,0.028165866,0.03564074,-0.007553675,-0.037667062,-0.021422718,-0.0015915065,0.002511794,0.002344341,-0.015298725,0.024023164,0.001764588,0.017167443,-0.023978135,-0.004728083,0.0142743075,0.021445233,0.03568577,-0.0070358375,-0.015839078,-0.005217777,-0.02645475,0.0048744283,-0.005344422,0.013430007,-0.013081029,0.0065067424,-0.044151288,0.02400065,0.006360397,-0.011730148,-0.005561126,-0.02688253,-0.042777892,0.018585868,-0.012923427,-0.003956955,0.023077548,0.014825917,-0.041787248,-0.04036882,-0.0077056494,-0.008482406,-0.0046239523,-0.014702086,-0.009101559,-0.004863171,-0.020634705,-0.029471716,0.0074973884,-0.05358494,-0.04629018,-0.025329016,0.0028818792,-0.00774505,0.016615834,-0.013058514,-0.008538692,-0.04602001,0.021996843,-0.011628833,-0.003166127,-0.015467585,-0.025779309,-0.031250376,-0.022661027,0.011127881,-0.0114768585,0.0030366676,-0.06218555,-0.024586031,-0.011763921,-0.07056101,0.0019221909,0.044286378,0.0068951207,0.0014521969,-0.023820532,0.010756388,-0.006174651,-0.0007007694,-0.023888076,0.01269828,-0.015794048,0.030394819,-0.013553837,0.027152704,-0.025509132,0.005645556,-0.0031013973,0.010238551,0.003529176,0.03483021,0.012405589,-0.01866467,0.027040131,0.035438105,0.011032194,-0.00668686,-0.016458232,0.03305155,-0.023843046,0.008640009,0.007964568,-0.013722698,-0.02564422,-0.007925168,0.011324884,0.010165378,0.0044719786,-0.009765742,-0.079206645,0.027783116,0.010384897,-0.020848595,0.015163638,-0.0002379872,0.017460134,0.007266613,0.030192187,0.009895202,-0.0044607213,-0.0010610044,0.0007144893,0.015670218,0.019081192,-0.018248148,0.018799758,-0.024766149,0.04334076,-0.0058819605,-0.018225634,0.053179674,0.014150477,0.009534967,-0.02111877,0.008690666,-0.029359143,-0.014229278,0.00025311427,-0.021231344,0.015298725,-0.010497469,0.026297146,0.003931626,0.0026229604,-0.0069570364,-0.0007802744,-0.036293667,0.001764588,0.020938653,0.017167443,-0.009900831,0.0021290444,0.021197572,0.038004782,-0.027783116,0.009895202,-0.035505652,0.008476777,0.010193521,-0.00013667115,0.01604171,0.005645556,0.02429334,0.028571129,0.020578418,-0.0069345217,-0.03780215,-0.0054119662,0.004947601,-0.023077548,0.023865562,0.01789917,-0.0036192348,-0.015771534,0.012326787,-0.023910591,0.016559547,0.02568925,0.014375623,0.024608545,0.00032751824,0.023077548,-0.023798017,0.013553837,-0.022525938,-0.012833368,0.009805144,0.01481466,0.022469651,-0.0003327951,0.02568925,0.0015239625,0.029359143,-0.029696863,0.012124156,0.026567323,0.02751294,0.006326625,-0.016795952,0.0017125229,-0.07425342,0.03284892,0.01248439,0.037644546,-0.013317433,0.0031013973,0.017415104,0.01909245,-0.02890885,-0.0071090106,-0.008037741,-0.0022782043,-0.047505975,0.03284892,0.006906378,0.013171088,-0.0025934097,-0.00045908842,-0.015231181,-0.011865237,-0.017178701,-0.020465845,0.0118877515,0.0058256737,0.0023415268,0.035032842,-0.00018486663,0.038072325,-0.027355338,-0.011043451,0.014499454,0.022469651,0.044579066,0.0061915372,-0.048721768,0.0019714418,-0.027017616,0.0067656613,-0.024405913,0.0028523286,-0.0015844706,0.02463106,0.010019033,0.043700993,-0.01739259,0.018642155,0.036293667,0.00846552,0.0136213815,0.04854165,-0.003762766,-0.015692733,-0.016829723,-0.010052805,0.014488197,0.022312049,0.0061352504,-0.02205313,0.04583989,-0.005496396,-0.024495972,0.028773762,0.009247905,0.009771371,0.016604576,-0.023640415,0.0039372547,-0.012405589,0.023437783,-0.009709456,0.011240454,0.013520066,-0.0010230108,0.01621057,0.01832695,-0.017280018,-0.011060337,0.0013044443,-0.014319337,-0.0056821425,0.016097996,0.0013769134,0.021782953,0.035910916,0.035348047,-0.004744969,-0.08024232,-0.017257502,0.01075076,-0.010868962,-0.024856208,-0.0048322133,-0.006990808,0.05376506,-0.02496878,0.007897024,-0.016143026,0.01282211,-0.032938976,0.006033934,0.027445396,0.0027341265,-0.022086902,-0.009777,-0.007519903,-0.03406471,-0.011268598,-0.0037261797,0.034695122,0.0137001835,0.0046211383,0.029494232,0.026995102,-0.05011768,-0.0071033817,-0.018079288,0.042755377,0.052144,-0.01028358,0.016120512,-0.045637257,0.023707958,-0.026522294,0.0055076536,-0.00006741212,0.0037346226,0.006416684,-0.0059607616,0.040076133,-0.03699162,-0.0026145172,0.021411462,-0.018011745,-0.04550217,0.011212311,0.01705487,0.02535153,-0.017212473,0.0012931869,0.004215874,0.031070258,-0.010947763,0.01015975,0.0043143756,-0.0021374875,-0.03131792,-0.037689574,-0.007165297,0.009478681,0.016334401,-0.018777244,-0.020657219,-0.023888076,0.02992201,-0.033659447,0.0013459558,0.007199069,-0.01604171,0.0026454749,-0.030372305,0.0027228692,0.027377851,-0.00008143982,-0.029201541,0.018934846,-0.014488197,-0.005552683,0.006906378,0.024023164,0.0351229,-0.018788502,-0.009900831,-0.020882366,0.015174895,0.016323144,0.032691315,0.014566998,-0.00888767,0.019554,0.01685224,-0.02052213,-0.024158252,0.03179073,-0.012281758,0.026927559,0.046830535,-0.038117353,-0.028931364,-0.0007120268,-0.0053190934,-0.0021782953,-0.0317457,0.010120349,0.012732052,-0.021951813,-0.032781374,0.026364692,0.013767727,0.00045803303,-0.026589837,0.03771209,-0.010773275,-0.014566998,0.013497551,0.018090546,-0.004184916,-0.06975048,0.04561474,-0.01705487,0.00774505,0.00618028,-0.034357402,-0.018844787,0.025599191,-0.019205023,-0.018574612,0.0000022014476,0.0054372954,-0.030034583,0.000329629,0.050207738,0.020893624,0.0031407978,0.030124642,0.021107513,0.032150965,0.028436042,0.027197734,-0.0052487347,0.015028549,-0.0057750153,-0.011330513,0.0051192753,0.010660701,0.0057862727,0.004871614,-0.013407492,-0.016435716,0.018056775,-0.022424622,-0.009219762,0.038027294,0.0118877515,0.014364366,-0.011381171,-0.014589513,0.048496623,0.0070189517,0.027873175,-0.0023696702,0.016278114,0.04858668,-0.024923751,0.016582062,-0.04719077,0.014792145,-0.019317595,-0.004047014,0.0220081,-0.004525451,0.0010321573,-0.04858668,0.031182833,-0.016435716,0.0029128368,0.016345657,-0.03309658,-0.048361532,-0.008611865,-0.021940555,-0.03969338,0.012011582,0.0036389353,-0.026049485,-0.003571391,-0.0037177366,0.018439524,0.05070306,0.0020600932,0.0136213815,-0.029741893,0.028300954,-0.002720055,0.0030985828,0.010187893,0.032398626,-0.004207431,-0.025171412,-0.0042383885,0.0351229,-0.0010870369,0.011696377,-0.015906623,0.010458069,-0.020837337,-0.007199069,0.013643896,-0.018000487,-0.007728164,0.02251468,0.027490424,-0.060879696,-0.0057384293,0.033029035,-0.019621544,0.038319986,0.010277952,-0.012405589,-0.000856965,-0.00009401638,-0.010396154,-0.00010861574,0.0014254607,0.0005621634,0.02742288,0.020657219,0.012551934,0.017685281,-0.030890143,-0.0051699337,-0.011606318,0.034515005,0.033884592,0.014375623,-0.008662524,0.008206601,-0.0017730311,0.03025973,-0.018979875,-0.0017547379,0.011842722,-0.01214667,-0.0038668963,-0.0118877515,-0.0023302694,-0.025283987,-0.009726342,-0.007249727,-0.0030676252,-0.056872085,0.023752987,0.006912007,0.017516421,0.028210895,0.00062091264,0.001898269,-0.0031407978,-0.005760944,0.031137804,0.0053472365,-0.017809112,0.019418912,-0.0062196804,-0.014792145,0.0056877714,0.015400042,-0.008133428,-0.006214052,-0.005769387,-0.0069570364,-0.03453752,0.0023724844,-0.013261147,0.009163475,0.020038066,-0.008155943,0.004331262,-0.03188079,-0.0061633936,-0.0052487347,-0.018754728,-0.0203983,-0.042575262,-0.041156836,0.026342176,-0.022458393,0.031813245,-0.03338927,-0.028976394,-0.03949075,0.012743309,-0.003911926,-0.034582548,-0.029539261,-0.0005445738,0.009067788,-0.00007317271,-0.009112817,-0.020083096,-0.0003686779,0.010294838,-0.011353028,-0.026364692,-0.004882871,-0.013058514,-0.03525799,0.006326625,-0.033591904,-0.007666249,-0.022075644,-0.028008262,-0.033456814,0.007351043,0.0053810086,-0.014882204,-0.0075480468,0.0020220997,-0.014870946,-0.010362382,0.0029944526,0.0034166027,-0.01604171,-0.029696863,-0.026995102,0.012349302,-0.030957686,0.028413527,0.01337372,0.056646936,0.01663835,-0.0309802,0.011403685,0.017538937,-0.019351369,-0.0022585038,-0.0047674836,-0.015006035,0.044511523,-0.0038106097,0.0071090106,-0.03329921,0.04592995,0.010581899,-0.009658798,-0.0104130395,-0.00037043684,0.02463106,-0.0054457383,-0.0058763316,0.016300628,0.008459891,-0.0050939466,-0.01806803,-0.06592298,0.005527354,-0.023662928,0.0039259973,-0.016480746,-0.008116542,0.010351124,0.001955963,-0.0047505978,-0.008876413,-0.009197247,-0.017370077,-0.03136295,0.002660954,0.03546062,-0.014488197,0.016311886,-0.017617738,0.01248439,0.00008838771,-0.0057018427,0.002410478,-0.010013404,-0.018991133,-0.043318246,-0.008611865,-0.0134525215,0.029156512,0.0368115,0.016525775,-0.0052796924,-0.013959102,0.025081353,-0.012619479,-0.007474874,0.0049588582,-0.005181191,-0.00026982438,-0.014409396,0.0063885404,-0.0024498787,0.033344243,0.00076057407,-0.015467585,0.016874753,0.00067438505,0.0031379836,0.0032533712,0.05637676,-0.021490263,0.011662604,-0.055070907,-0.022323305,0.0058425595,-0.012112898,0.011899008,0.013047257,-0.0005582937,0.027873175,-0.008910185,0.0006578508,-0.024248311,0.05619664,-0.038590163,-0.017493907,0.014904719,-0.014353109,0.018079288,-0.02679247,-0.0035742056,-0.028998908,0.039805956,0.023257665,-0.005938247,-0.03093517,0.021692894,-0.024923751,0.010069691,-0.03314161,0.025779309,-0.0154901,-0.02035327,0.022300791,-0.017246244,0.01515238,-0.021028712,0.022143189,0.010671958,0.0036164206,0.031588096,-0.010700102,0.0033293583,0.008775096,0.010829561,0.01493849,0.017066129,0.0010560793,0.013733955,0.023392754,0.0005192448,-0.030529907,0.042980526,-0.009022758,0.031835757,-0.00080912135,0.017628996,0.039896015,-0.011527517,-0.012079126,-0.025216442,-0.011527517,0.038252443,-0.008499292,-0.0118089495,-0.011786435,0.00016956369,-0.0042637177,-0.025981942,-0.017212473,-0.015231181,-0.000081175975,-0.0090115005,0.022931201,0.022131931,-0.020465845,0.017685281,-0.033591904,0.023055034,0.031678155,0.03305155,-0.053089615,-0.02996704,-0.018214377,0.024608545,-0.0005874924,0.03318664,-0.0002685931,-0.013238632,-0.023910591,0.0021318588,0.013914073,0.0019587772,0.019745374,0.00029427392,0.00029216317,0.018732214,0.035528164,-0.00677129,-0.039130516,-0.0053528654,-0.022188218,-0.0026032599,-0.021918042,-0.03444746,-0.009534967,-0.009292934,-0.017133672,0.000006348744,0.027445396,0.0030929542,0.01375647,0.0054316665,-0.008223487,-0.023100061,-0.020094352,-0.011043451]},{"id":"class-LinkChannel","type":"class","source":"main","text":"Class: LinkChannel\nProperties: url: string | null","meta":{"url":"/docs/classes/LinkChannel"},"embedding":[-0.03139103,-0.04305497,-0.020942079,-0.0029463605,0.030131852,0.023084886,0.013265526,-0.01779414,-0.028055318,0.04301079,0.0082730055,0.015342061,0.021151941,-0.006737694,-0.0046694432,-0.061147336,0.001030674,0.0035483348,0.020422945,0.043629333,-0.011144809,-0.01971604,0.0043215128,0.0595568,-0.030176034,-0.006980693,0.020467127,0.029159857,-0.013022527,0.012370849,0.09225119,-0.034572102,0.02096417,0.07877579,-0.0071408516,0.036295187,0.03943208,0.01832432,0.013917205,0.008018961,0.0045534666,0.009311273,0.00075177755,0.0052714176,-0.007002784,0.018843453,-0.03934372,0.050587934,0.06954184,0.024962606,-0.043496788,-0.010968083,-0.026376417,0.006008698,-0.032716475,0.014359021,0.023394158,0.003012633,-0.045418687,-0.050587934,-0.02454288,-0.020975215,-0.0070469654,-0.025713693,0.0070911474,0.0058209263,-0.063798234,0.030220216,-0.00869273,0.0202904,0.011045401,-0.03689164,0.011663943,0.029535402,-0.025691602,0.022289619,-0.0535481,0.043077063,0.026067145,-0.032053754,-0.0314573,0.021174032,-0.042546883,-0.030065581,0.020025311,-0.016303012,-0.03441747,-0.015640287,0.019484086,0.016369283,-0.004456819,-0.01973813,-0.03804036,-0.012536529,0.002388568,-0.0053321673,0.02701705,0.008852889,-0.01779414,0.027503047,0.03278275,-0.046788316,-0.06720021,-0.0028331452,-0.008582276,-0.033511747,0.00020261407,0.0012474399,-0.046611592,-0.06066134,-0.008394504,0.023394158,-0.026862415,0.022300664,0.03494765,-0.035897553,0.045065235,-0.005475757,0.03525692,0.022731435,-0.03859263,-0.016104193,0.04966012,0.017252916,-0.05513864,-0.025978781,0.0068315803,0.00031462134,-0.049969394,-0.05376901,0.06516787,0.034284923,-0.06954184,0.0047329543,0.0061467653,0.011321535,-0.02816577,-0.038504265,-0.032053754,0.015297879,0.017838322,-0.03894608,0.05986607,-0.0063234917,0.004694295,0.023615066,-0.025338149,0.006737694,0.045551233,0.017893549,-0.016104193,0.002137285,0.0020406377,0.03638355,-0.030551579,-0.016755873,-0.01959454,-0.0059037665,-0.04267943,-0.04630232,0.06887912,-0.011222127,0.03479301,-0.015375198,-0.027591411,-0.025006786,0.036825366,-0.0023816645,-0.059203345,0.012183077,0.017672641,-0.004108889,-0.026796142,0.014093931,0.009421727,-0.013398071,-0.0066051497,-0.07117656,0.027326321,0.07484364,0.052045926,0.022488436,0.018998088,-0.051118113,-0.030419033,0.028077409,-0.04351888,0.025073059,0.048202127,-0.008670639,-0.03315829,0.0278565,0.018357456,0.025713693,0.0040011965,0.036560275,-0.014723519,0.009885633,-0.009962952,-0.041000526,-0.034395378,0.027061231,0.025603238,0.0096647255,0.011133764,-0.0025694363,-0.013066709,-0.02235589,-0.056199,0.023372067,0.041884158,-0.01186276,0.014778746,0.011465126,-0.020135766,-0.026045054,-0.0033384722,0.01904227,0.004354649,-0.037576452,-0.027878592,-0.0074556456,-0.0042994223,-0.0018846215,0.05107393,0.047848675,-0.0026757482,-0.015684469,0.0021193363,0.03859263,0.01652392,0.02756932,-0.015021745,-0.052531924,-0.004385024,0.015132199,-0.0025970498,-0.004379501,-0.013353889,-0.05982189,-0.013806751,-0.042966608,-0.009289182,0.03883563,0.02589042,0.0010265319,0.00092643296,-0.039586715,-0.0086872075,0.036825366,0.053415556,0.069365114,-0.013729433,-0.00793612,0.016026877,-0.008521526,-0.04267943,0.017805185,0.021372851,-0.06742112,0.061854243,-0.046169773,0.018302228,-0.035875462,0.006649331,-0.0075108726,0.019230042,-0.0069420342,-0.0040011965,-0.019903813,0.040647075,-0.04630232,0.06715603,-0.039564624,-0.014635156,0.008648548,-0.020080538,0.0024355107,-0.018390592,0.005630393,-0.020334583,-0.016512875,-0.04550705,0.025161423,0.009029615,0.022952342,0.017440688,-0.006080493,0.011233172,0.0071739876,0.018622546,0.019561404,-0.0005139563,-0.06198679,-0.017904595,0.09525553,0.04656741,-0.03030858,0.052752834,-0.006334537,0.022665162,0.022278573,0.0523552,0.00086292194,0.0166896,0.03262811,0.055580456,-0.009946384,0.031854935,-0.044490874,0.025404422,0.0023002047,-0.056596633,-0.021030443,-0.034395378,-0.03563246,-0.017639505,0.0025860043,0.014800836,0.0055641206,-0.014359021,0.016722737,-0.038658902,-0.0069917385,-0.04656741,0.0040260484,-0.0000774041,-0.022841888,0.0103826765,0.015640287,0.0058485395,-0.043761875,0.054741006,-0.0047108633,-0.014811882,0.007135329,0.017341278,0.06799549,-0.043386333,-0.0042635244,-0.0015353106,-0.04108889,-0.01791564,0.0689233,-0.0061467653,0.031103848,-0.053636465,-0.0044982396,0.0061964695,-0.007162942,-0.066360764,-0.008361368,-0.024962606,-0.044026967,-0.03689164,-0.067465305,0.0131661175,-0.029137766,-0.045860503,-0.014922336,0.010874197,0.011520353,-0.026597325,0.0040205256,-0.043253787,0.00053017924,-0.0152316075,-0.05155993,0.02843086,-0.03315829,0.013530616,-0.004443012,0.033843108,0.0057436083,-0.006174379,-0.009587408,0.030750396,0.021858849,-0.016755873,0.026354326,0.03247348,0.018125502,-0.04073544,-0.035190646,-0.0020406377,-0.009581885,-0.02067699,0.0031258482,-0.0028331452,-0.024896333,0.0007455645,0.020654898,-0.017319188,-0.012536529,0.025492784,0.03421865,0.011122718,-0.022521572,0.01945095,-0.020544445,0.022587843,0.010830015,-0.017109325,0.016203603,0.003343995,-0.021891983,-0.037465997,-0.00054674735,0.012658029,-0.0024576017,-0.026155509,0.029204039,0.04709759,0.06587477,0.024719607,0.012889982,0.022090802,-0.016060013,0.06304715,0.015364152,0.04855558,0.020710126,-0.012205168,0.021671075,0.014027659,0.017992958,0.04859976,0.0017465539,-0.0073396685,-0.053680647,-0.012017396,0.023482522,0.028497133,0.020047402,0.02343834,-0.039741352,0.0013868881,-0.034682557,-0.022709344,0.011465126,-0.03253975,0.010244609,-0.038460083,0.0010769266,-0.007985825,0.0021262397,0.05178084,-0.030286489,0.009764134,-0.022090802,-0.07749453,-0.026707778,-0.028452951,0.065963134,-0.0039956737,0.020467127,0.02122926,-0.011271832,-0.039034445,-0.0011073014,-0.001362036,0.019660814,-0.009841452,0.014038704,-0.013188208,-0.007135329,-0.015540878,-0.009957429,0.0010569068,-0.017871458,0.07086729,0.029027313,0.034682557,-0.0056607677,-0.02836459,-0.009841452,0.004407115,-0.027878592,0.005677336,-0.00607497,0.00085601857,0.017595323,-0.0013288998,-0.02262098,-0.020091584,0.100734055,0.03455001,0.021505395,0.02315116,-0.0026785096,0.005646961,0.0072016013,-0.012050532,-0.009372022,-0.04212716,-0.007532963,-0.03808454,0.03667073,0.046744134,0.01983754,-0.014635156,-0.07351819,-0.013696297,-0.005837494,0.03667073,-0.0017244632,-0.02026831,-0.058717348,0.017275006,-0.011597671,0.012006351,-0.0012308718,-0.027966954,-0.029866762,-0.01613733,-0.00392664,-0.025956692,-0.016170466,-0.013983477,0.020765353,-0.013541661,0.005986607,-0.0032832453,-0.014138113,-0.015673423,0.039851807,-0.031125939,-0.04139816,0.0018942863,0.0067542624,-0.0224553,-0.031479392,0.01666751,-0.0110785365,-0.009454863,0.03090503,-0.0062958784,-0.036471914,0.031854935,-0.00017034079,-0.04228179,0.014414248,-0.011663943,0.016612282,-0.028607588,-0.0031451778,-0.012658029,0.029093586,0.029071495,0.018600455,0.0501903,-0.044181604,-0.01378466,0.00081805,0.029535402,0.005387394,0.01666751,-0.027127504,-0.029358674,0.018070275,-0.024101064,-0.037951995,0.012613848,0.0039542536,-0.004721909,-0.024631243,-0.01613733,-0.011929032,-0.0002851094,-0.023747612,-0.007720735,-0.011929032,-0.020732217,0.034329105,0.04550705,0.03284902,-0.048025403,-0.010089973,0.00895782,-0.007223692,-0.012050532,-0.030993395,0.012348758,-0.004777136,-0.009018569,0.018169684,0.039741352,-0.02756932,-0.006997261,0.046611592,0.004061946,0.0101452,0.002519732,0.010123109,-0.022996524,0.0055392683,0.01585015,-0.008582276,0.020301446,-0.011652898,0.0038686516,0.033423383,-0.0034240743,0.017252916,0.034262832,0.034815103,-0.013508525,0.013497479,-0.06817221,0.018070275,-0.008157028,0.018224912,-0.0027613502,-0.02893895,0.056419905,0.024918424,-0.01738546,0.024763787,0.010592539,-0.031479392,-0.03117012,0.019185862,-0.025735782,0.030463215,-0.007367282,0.0027144072,-0.053371377,-0.02869595,-0.016976781,-0.018269092,0.06578641,0.016612282,0.015596106,-0.01110615,0.008676162,-0.000050437786,0.00051706284,0.012205168,-0.005826449,-0.0023305796,0.014005568,0.014811882,0.012437121,-0.0044678645,-0.02423361,-0.012613848,0.016501829,0.02509515,0.0008332374,-0.0037333453,-0.006362151,0.009233955,0.0025045446,0.007914029,-0.0015629241,-0.029314494,-0.05597809,0.050278664,0.000107951535,-0.0010106541,-0.026906596,0.008543617,-0.013596888,0.0050449865,-0.024741698,-0.021527486,0.01940677,0.014414248,-0.049527574,-0.019682905,-0.002001979,0.02125135,0.018434774,-0.0077814846,0.017418597,-0.05902662,0.03443956,-0.028850587,-0.016910508,0.012889982,-0.020621764,0.013210299,-0.034903467,-0.03477092,-0.0069033755,-0.015596106,0.004092321,-0.0025059253,-0.009349932,0.04385024,-0.024719607,0.020058447,-0.001797639,0.0035593803,-0.026111327,0.024211518,-0.004462342,0.027215866,-0.012105759,0.0011542444,0.016656464,-0.040293623,-0.0131661175,0.01544147,0.009465909,-0.03090503,-0.002196654,-0.04055871,-0.0076489397,0.010200428,-0.011431989,0.0011563153,-0.009377545,0.005100214,0.010575971,0.019970084,-0.030485306,0.0032722,0.0014635156,-0.025492784,0.021704212,0.0073065325,-0.019439906,-0.008267483,0.008637503,0.032363024,-0.028784314,0.04460133,-0.03163403,0.020588627,0.011431989,-0.0028276225,-0.020754308,0.019086452,0.008863934,0.024344062,0.007593713,0.008085233,0.011763352,-0.011050924,0.02106358,0.013066709,0.009112456,0.0053735874,0.0125144385,0.008157028,0.008615413,-0.0137957055,-0.012061577,-0.006914421,-0.000983731,0.0045866026,-0.009697862,0.009620544,-0.017407551,0.016347192,0.033821017,-0.04577214,-0.014436338,-0.008543617,-0.045418687,0.03479301,0.018644636,0.0026964585,0.01392825,-0.008869457,-0.0021510918,-0.029933035,0.029314494,0.03828336,-0.017838322,-0.016104193,-0.018998088,0.012845801,0.009051706,-0.001423476,-0.041530706,-0.016755873,-0.016512875,-0.017705778,-0.001683043,0.0024631242,0.0046004094,-0.027922772,0.019528268,-0.01337598,-0.013221345,-0.018191775,-0.024056882,-0.003603562,-0.02290816,-0.014856064,0.004605932,-0.03499183,0.0338652,0.02204662,0.004674966,-0.033975653,-0.0060528796,-0.008996479,-0.008333755,0.009576363,-0.026972868,0.023570884,-0.0028207193,0.02922613,-0.048334673,0.018655682,0.043121245,0.016247785,-0.0066051497,0.044269964,-0.026972868,0.023769703,-0.0124702575,0.08169178,0.01421543,0.008902593,0.022797707,-0.0054094847,0.04051453,0.049527574,0.007814621,0.034837194,0.037267182,0.029424947,-0.034307014,0.02082058,0.052266836,-0.0034931079,0.025536966,-0.014027659,0.0019550358,-0.0055696433,-0.022709344,-0.026332235,0.004227627,0.017440688,-0.013541661,0.006356628,0.039895985,0.0079029845,0.0048296014,-0.029800491,-0.00021711116,-0.020025311,-0.040072713,-0.02219021,-0.027237957,0.045418687,0.010443427,-0.0053901556,0.015684469,-0.046788316,0.014016613,0.016358238,-0.005809881,-0.0071187606,0.03806245,-0.0062572192,-0.03446165,-0.01325448,-0.035367373,-0.0145136565,-0.0041392636,0.007168465,0.036030095,0.003921117,0.032937385,0.03302575,0.07166256,-0.0025376808,0.031236393,-0.0111669,0.0085988445,-0.0025183514,-0.015805969,0.009725475,-0.025404422,-0.010332972,0.046434864,-0.005677336,-0.00091607793,-0.018556273,0.0110785365,-0.015054881,-0.019771267,0.04630232,-0.010603584,0.0063787187,-0.0024506983,0.060528796,0.018235957,-0.0019978369,0.0027213106,0.019318406,-0.05023448,0.016579146,0.011586625,-0.013221345,-0.015021745,0.040492438,-0.023327885,0.012216213,0.04546287,0.0018998089,0.013188208,-0.019660814,0.02509515,-0.005503371,0.0044540577,-0.0103605855,-0.031832844,0.005638677,0.04073544,0.009846974,0.022665162,-0.0010672618,-0.019439906,-0.00509193,-0.016755873,-0.05160411,0.016093148,-0.008935729,-0.028651768,-0.029469129,-0.027723955,-0.03916699,-0.0019426098,-0.009581885,-0.005749131,0.02370343,-0.012492348,-0.025448604,0.0009381687,-0.039807625,0.0066935127,-0.0032583931,0.009692339,0.002706123,-0.007914029,-0.033202473,0.039321627,-0.023924338,0.0067487396,0.010680903,-0.04495478,0.025073059,-0.007963734,-0.015408333,0.0224553,-0.015110108,0.021582713,-0.033821017,-0.026994959,0.009029615,0.0062572192,-0.04020526,0.035146464,0.012050532,-0.019130634,0.04798122,-0.02370343,-0.025050968,-0.020235173,0.002256023,0.06702349,0.0042635244,0.016656464,0.033821017,-0.044225782,0.009151114,0.016987827,0.053857375,0.010344017,0.024189427,-0.0022090802,0.027525138,-0.01851209,-0.0075108726,-0.0007897461,0.042900335,0.024852151,0.01748487,-0.007715212,0.016888417,0.0017727868,-0.021074625,0.016601237,0.03229675,0.0010230802,0.0066051497,0.0031589845,-0.039100718,-0.014005568,0.0018777181,0.013442253,0.026310144,-0.028718041,0.007798053,0.04022735,0.00578779,-0.03229675,-0.04992521,0.012370849,-0.015916422,0.0021579952,0.020411901,-0.017937731,-0.057303537,0.009300227,0.031324755,0.03455001,-0.013762569,-0.01849,-0.015861195,-0.012912073,-0.0028096738,-0.010200428,-0.03368847,-0.0027075037,-0.019241087,-0.021538531,0.015076972,-0.025073059,0.017738914,0.007720735,-0.016943645,0.000046036883,0.0100347465,-0.03368847,-0.018302228,-0.027348412,0.0010037508,0.00081390794,0.008239869,0.0050532706,0.0009768276,-0.004912442,0.010813447,-0.027414685,0.0053680646,0.006726649,-0.003943208,-0.016358238,-0.006522309,-0.0012605564,-0.014182295,0.00779253,0.016534965,0.048909035,-0.022013484,-0.0018666727,-0.006063925,0.00062475546,0.021328669,0.035676643,0.008123892,0.0019191384,-0.0010196285,0.01642451,0.001478703,-0.0055558365,0.01294521,0.017540095,0.013696297,0.024675425,0.020997306,0.019417815,0.021483304,0.052929558,-0.045727957,0.0035234827,0.01844582,-0.005086407,-0.007372805,0.022433208,-0.031302664,-0.019318406,-0.006025266,0.014922336,-0.005843017,0.036781184,-0.032208387,0.024631243,-0.0075274403,-0.03775318,0.03887981,-0.016037922,-0.01224935,-0.017076189,0.061058976,-0.018368501,0.023813883,-0.030419033,0.005530984,0.03477092,-0.010542835,0.0058761532,-0.008052097,0.002545965,0.002779299,0.020975215,-0.021262396,-0.024476608,0.024631243,-0.012039486,-0.011117196,-0.025603238,-0.015308925,-0.022709344,0.046169773,0.03633937,0.00096233055,-0.021284487,-0.0030457692,-0.026729869,-0.01000161,-0.028718041,-0.005622109,-0.004177923,0.0041889683,0.020710126,-0.026884506,-0.022819798,0.030396942,-0.02564742,0.03547783,-0.016435556,-0.008631981,0.040161077,0.003399222,0.007770439,-0.02843086,-0.0070966696,-0.014082885,0.018556273,0.020378765,0.0145357475,0.027679773,0.0056055407,0.017186644,-0.014204385,0.009526658,0.020157857,0.04687668,-0.015331016,0.04086798,0.0489974,0.016004786,0.0015822536,-0.013055664,0.061677516,-0.004122696,0.0055779275,-0.052487742,0.017164553,-0.0031175644,0.016766919,0.0024783118,-0.0040895594,0.011398854,-0.0042441953,0.027436774,0.0010741652,0.036538184,0.0015408334,0.005553075,0.0028303838,0.024852151,0.011641853,-0.04336424,-0.0056607677,0.01462411,0.034064014,-0.0131440265,-0.002940838,0.029358674,0.009973996,-0.019704994,0.020179946,-0.04166325,-0.014955472,0.0016540487,-0.00096094987,-0.015529833,-0.0056248703,0.03667073,-0.037885725,0.01570656,-0.03751018,-0.01877718,0.010299836,-0.036759093,-0.01517638,0.0043408424,-0.012503393,0.037951995,-0.009841452,0.01599374,-0.015540878,-0.016004786,0.023372067,0.023040706,-0.010940469,-0.0011528637,0.006649331,-0.06649331,0.023813883,-0.007538486,0.016700646,0.05708263,0.030286489,0.048423037,-0.012646983,0.008245392,0.01985963,-0.0112884,0.0051305885,-0.033511747,0.0069862157,0.00012477851,0.0103826765,0.0051609636,-0.046744134,-0.040691257,0.03479301,0.0021538532,0.00062717166,-0.050985567,-0.023062797,-0.019925904,0.040337805,-0.024675425,0.01599374,-0.01392825,-0.0032722,-0.00071035733,0.0056331544,0.01930736,-0.0012936925,0.017606368,0.019461995,-0.010498653,-0.014723519,0.016700646,0.016347192,0.01685528,-0.0148892,-0.01640242,0.016225694,-0.02644269,-0.029447038,-0.032053754,0.00662724,-0.01615942,-0.006097061,-0.01755114,0.0018915249,-0.005456428,-0.0071960785,0.022665162,-0.030242307,-0.014281703,-0.038150813,-0.050322846,-0.016291967,-0.0059424257,-0.014999654,0.030706214,0.005881676,-0.023305796,-0.0046694432,0.00076627464,0.0056524836,0.014403203,0.03826127,-0.009178728,-0.014027659,-0.027966954,-0.010636721,0.0205334,0.010178337,-0.025757873,-0.03114803,-0.007405941,0.00965368,0.015750742,-0.01572865,0.0074335546,0.019870676,0.045948867,-0.010791357,0.014347975,0.011597671,0.0032280183,0.01462411,-0.015916422,-0.001139057,0.007334146,-0.01904227,0.037134636,0.031832844,0.012779528,0.00910141,0.013773615,-0.01392825,0.034638375,-0.031678207,-0.0060694474,-0.034815103,0.0030485305,0.004534137,-0.009973996,-0.011409899,0.0026536575,0.026265962,-0.016082102,0.012569666,-0.0023388637,-0.000038464743,0.003114803,-0.032915294,0.0319433,-0.014414248,-0.0297784,-0.012956255,-0.00971443,-0.0059589935,-0.015772833,0.0166896,-0.01558506,0.01515429,-0.012912073,0.0019218997,0.024852151,-0.0037361067,0.00035517866,-0.029822582,0.0039625373,-0.015220562,-0.008140461,-0.055492092,-0.005274179,0.03804036,0.02427779,0.016612282,0.01392825,0.024034793,0.018744044,0.012072623,0.008924684,-0.014900246,-0.021019397,0.043474697,-0.034064014,0.0035510962,-0.02178153,0.01224935,0.016976781,-0.007891939,-0.019395724,0.008123892,0.013707343,-0.00724026,-0.022609934,0.012746392,0.023791794,-0.029137766,-0.0040094806,-0.016093148,0.0050726,0.0039100717,0.036184732,-0.010211472,0.004401592,-0.02012472,0.002378903,0.006654854,0.008460777,-0.010200428,0.057259355,-0.01224935,-0.010355063,-0.013994522,-0.041199345,0.016060013,0.012735347,-0.02204662,-0.01041029,0.0016388613,-0.02237798,0.023372067,-0.012326667,0.012525484,-0.012602802,-0.016744828,-0.0032473477,-0.012613848,0.06481441,-0.0093830675,-0.03393147,0.0070690564,0.020047402,-0.012901028,0.021240305,0.006080493,-0.008355846,0.009344409,0.009565317,-0.020886853,0.031589847,0.009780702,-0.011282877,0.027525138,-0.026928687,0.03496974,0.03340129,-0.023084886,-0.0145357475,0.009256045,-0.0540341,-0.033180382,0.010498653,-0.03388729,0.018865544,-0.029712128,-0.015839104,0.020787444,0.00009448995,0.008681685,0.0130888,-0.007212647,-0.020334583,-0.0015656855,0.004260763,0.025006786,-0.005056032,0.004431967,-0.0039956737,-0.021405986,0.024984697,0.0038189474,0.010178337,0.004917965,0.02122926,-0.009206342,-0.033423383,-0.015805969,0.0029933036,-0.0131440265,-0.025249785,0.0066935127,-0.009272614,-0.012326667,-0.009405158,-0.016601237,-0.037333455,-0.027679773,-0.00046010996,0.012790574,0.012923119,0.0076710307,-0.0042027747,0.0078090983,0.00023281634,0.00607497,-0.017584277,-0.005859585,0.010813447,0.0028524748,0.026729869,0.010178337,-0.0020005982,0.04024944,0.051339023,0.028187862,-0.022952342,0.013541661,0.012017396,-0.006041834,0.04495478,0.0037747656,0.0039045492,0.011840669,0.0010603585,-0.022930251,-0.021041488,-0.045551233,-0.02135076,0.0090130465,0.013917205,0.02204662,0.016291967,-0.003683641,0.008554663,-0.012646983,0.00991877,0.021295533,-0.0086651165,0.013972431,0.0047688517,0.050587934,0.010487608,-0.026265962,-0.0054288143,-0.00056262506,-0.00750535,-0.002137285,-0.04270152,0.030573668,-0.024012702,0.013022527,0.03114803,-0.015088017,-0.0041392636,0.00750535,-0.0013958625,-0.014756655,-0.0057933126,0.0005615896,-0.006649331,0.000009319557,-0.031103848,0.0030650985,-0.0034019833,-0.02043399,-0.015640287,0.011509308,0.014734564,0.013729433,-0.0035731872,0.0152316075,-0.03558828,-0.011630807,0.018423729]},{"id":"class-LiveKitRtcConnection","type":"class","source":"main","text":"Class: LiveKitRtcConnection\nDescription: Voice connection using LiveKit RTC. Used when Fluxer routes voice to LiveKit.\n\nSupports both audio playback ({@link play}) and video streaming ({@link playVideo}) to voice channels.\nVideo uses node-webcodecs for decoding (no ffmpeg subprocess). Audio uses prism-media WebM demuxer.\nProperties: audioSource: AudioSource | null, audioTrack: LocalAudioTrack | null, channel: VoiceChannel, client: Client, currentStream: { destroy?: () => void; } | null, currentVideoStream: { destroy?: () => void; } | null, guildId: string, lastServerEndpoint: string | null, lastServerToken: string | null, playing: boolean, playingVideo: boolean, room: Room | null, videoSource: VideoSource | null, videoTrack: LocalVideoTrack | null\nMethods: audioDebug(msg: string, data: object) -> void; connect(server: GatewayVoiceServerUpdateDispatchData, _state: GatewayVoiceStateUpdateDispatchData) -> Promise — Connect to the LiveKit room using voice server and state from the gateway.\nCalled internally by VoiceManager; typically not used directly.; debug(msg: string, data: string | object) -> void; destroy() -> void — Disconnect from the room and remove all event listeners.; disconnect() -> void — Disconnect from the LiveKit room and stop all playback.; emitDisconnect(source: string) -> void; getVolume() -> number — Get current volume (0-200).; isConnected() -> boolean — Returns true if the LiveKit room is connected and not destroyed.; isSameServer(endpoint: string | null, token: string) -> boolean — Returns true if we're already connected to the given server (skip migration).; play(urlOrStream: string | NodeJS.ReadableStream) -> Promise — Play audio from a WebM/Opus URL or readable stream. Publishes to the LiveKit room as an audio track.; playOpus(_stream: NodeJS.ReadableStream) -> void; playVideo(urlOrBuffer: string | ArrayBuffer | Uint8Array, options: VideoPlayOptions) -> Promise — Play video from an MP4 URL or buffer. Streams decoded frames to the LiveKit room as a video track.\nUses node-webcodecs for decoding (no ffmpeg). Supports H.264 (avc1) and H.265 (hvc1/hev1) codecs.; playVideoFFmpeg(url: string, options: VideoPlayOptions) -> Promise — FFmpeg-based video playback. Bypasses node-webcodecs to avoid libc++abi crashes on macOS.\nRequires ffmpeg and ffprobe in PATH. URL input only.; setVolume(volumePercent: number) -> void — Set playback volume (0-200, 100 = normal). Affects current and future playback.; stop() -> void — Stop playback and clear both audio and video tracks.; stopVideo() -> void","meta":{"url":"/docs/classes/LiveKitRtcConnection"},"embedding":[-0.061690714,-0.008560401,-0.011933385,-0.027798042,0.0069146175,0.021110227,-0.021540575,-0.0097991,0.016934706,0.0019103884,0.014980702,0.0014160718,-0.002371266,0.030729048,0.01710917,0.0010104413,-0.053409457,0.04724504,-0.0041551674,0.021168383,-0.017353421,-0.020424,0.0118228905,0.013143007,-0.009688606,-0.015050488,0.003500925,0.05401427,-0.014527094,-0.04950145,0.053874698,-0.029123973,-0.0022476867,-0.044104673,-0.0125730885,-0.0020223365,0.027472373,0.004853026,-0.044546653,-0.0012517842,0.025820775,-0.059969332,-0.05364208,0.023541102,-0.01496907,0.0087116035,-0.02375046,0.012759184,-0.036474753,-0.014585248,-0.043243982,0.010078244,-0.05531694,0.011386729,0.013270948,0.009607189,-0.006053925,-0.0179466,-0.014189795,-0.011125032,0.01709754,-0.010432988,-0.007943959,-0.013352364,-0.01484113,0.022831613,-0.057643134,0.01556225,-0.009572296,0.055409987,0.034823153,0.018970128,-0.023285221,0.0046669305,-0.025495106,0.031054715,-0.023227066,0.022145385,-0.006507533,-0.076810986,0.015190059,0.017074278,-0.050664548,-0.030822096,-0.0040417654,-0.008374305,-0.0805329,-0.0014822229,-0.0049867826,0.038289186,-0.024029603,-0.0360793,-0.06638963,0.0025922547,0.024192438,0.002336373,0.051222835,-0.042104147,0.039126616,0.034264866,0.05447951,-0.009217551,-0.050618023,-0.040685166,0.05652656,0.012375362,-0.0016646839,0.0467798,-0.054246888,-0.026332539,-0.03340417,0.00783928,-0.010781918,0.028077185,0.020749668,-0.008554585,0.053083792,-0.02910071,-0.016911445,-0.026053395,-0.050059736,-0.018179221,0.015259845,-0.0029688075,0.07304255,-0.017900078,0.061690714,0.023355007,-0.040661905,-0.012189266,0.07495003,0.024983345,0.027588684,0.0062865443,-0.009857255,0.034939464,-0.022947922,0.008257995,-0.006908802,-0.030077713,0.010089875,-0.03945228,0.06848321,0.007321702,0.012096219,0.04466296,-0.01294528,0.03910335,-0.0515485,-0.008833729,-0.024913559,-0.0050449376,-0.04866402,-0.007321702,-0.07220512,-0.0054956377,0.0179466,0.053874698,-0.051036738,0.019540045,0.008211471,0.021773193,0.034102034,0.0032799363,-0.040150143,-0.004931535,0.008740681,0.033427436,-0.05354903,0.024541367,0.030007927,0.017539518,-0.030240547,0.0064435625,-0.007199576,-0.052618552,0.03703304,-0.006740153,-0.011945016,-0.035823416,0.004399418,-0.013724556,-0.024611153,-0.024378533,-0.041173667,0.011334389,-0.031403646,0.03372984,0.025355535,-0.016527621,0.0042249532,0.0515485,-0.017748876,0.060620666,0.030124238,0.046616968,0.020563573,-0.0387079,0.022226801,-0.035102297,-0.0022942107,-0.024006343,0.02742585,-0.097886324,-0.020935763,-0.0015178429,0.022226801,0.037242398,-0.018202484,-0.0001526566,0.04096431,0.04461644,0.010555114,-0.026518634,-0.0676923,0.06518001,-0.019516783,0.0054520215,-0.02054031,0.025378797,-0.036800418,0.016667193,0.013805972,-0.038870733,0.011921754,-0.0040504886,-0.0041348133,-0.03524187,0.0027841658,-0.03752154,-0.0049286275,-0.018481627,-0.046942633,-0.016562514,0.027449112,-0.07629923,-0.008234734,-0.0037800684,0.012770816,0.023413163,-0.012212529,-0.044337295,0.017632565,0.004789056,0.021191645,-0.0030851173,0.0032275969,-0.06364472,0.014061854,0.009328046,0.045733012,0.022354743,0.021040441,0.023541102,-0.00084615377,0.010194554,0.0043499866,0.021528943,-0.036660846,-0.0036521277,0.0031432721,-0.0772297,-0.018981759,-0.045081675,-0.037707634,-0.048384875,0.0006251652,0.039242923,-0.013049959,0.040545594,-0.03221781,0.0017213849,0.013282578,-0.009845624,-0.0091245035,-0.00087232346,0.042848527,0.01816759,0.03028707,0.006780861,-0.038172875,-0.006804123,-0.01948189,0.0050885538,-0.0052920957,0.05554956,-0.012189266,0.015143535,0.010752841,0.011159925,-0.0058561983,0.00034602164,0.049734067,-0.04308115,0.060481094,0.029356593,0.06987893,-0.035637323,0.007112344,0.016562514,0.0095374035,0.0031432721,0.0044284957,-0.025332274,0.024843773,0.076810986,0.0456167,0.0012932195,0.02505313,-0.024843773,0.009072164,0.04308115,-0.019214379,-0.007821834,-0.015853025,0.020028546,0.04501189,-0.00040490346,-0.011386729,-0.006280729,0.010973829,-0.029217022,0.037451755,-0.0020601372,0.043197457,-0.0017461008,-0.0026853024,-0.0025791698,-0.03940576,0.012491672,0.010293417,-0.050571498,-0.00914195,0.003794607,0.0027972506,-0.02589056,-0.024890296,-0.0024773986,-0.01876077,-0.0007647369,0.024471581,0.0074496423,-0.030915143,0.039173137,0.031450167,0.03910335,-0.005984139,-0.045733012,0.0026038855,0.029891618,-0.037102826,0.009147765,-0.012863863,-0.03707956,0.015538989,-0.040848,0.019644724,-0.031450167,-0.033427436,0.02313402,-0.06345862,0.02505313,-0.041731954,-0.019900605,0.013270948,0.007513613,-0.04996669,0.022854874,-0.03147343,-0.06420301,0.07620618,0.011415807,0.016108906,0.022843244,-0.003966164,-0.0446397,-0.005277557,-0.016981231,-0.012259052,0.053735126,0.017562779,0.015957704,0.038056564,-0.011532117,0.005152524,-0.025867298,-0.021994183,0.025960347,-0.0051350775,0.042127408,0.005108908,0.00017500989,-0.04596563,-0.035311654,0.00054992724,-0.0144456765,0.03621887,0.013724556,0.016957968,0.009176843,0.049361877,0.04666349,-0.038033303,0.05364208,0.029472902,-0.0046669305,0.025518369,0.03942902,0.04782659,0.0025602693,0.042173933,-0.026076656,0.015387786,-0.009101242,0.05592175,-0.026332539,0.020470524,-0.039219663,0.031775836,0.024611153,0.016178692,-0.002144462,-0.036009513,-0.011008722,0.0076880776,0.034381177,0.033148292,-0.017911708,0.007833465,-0.056340463,-0.03265979,0.020121595,0.1116574,0.023890032,0.024913559,-0.005812582,-0.030124238,-0.012352101,-0.053455982,0.015341262,-0.008478984,-0.0022287865,-0.013154638,0.027891088,-0.004536082,0.025937084,0.024680939,-0.043895315,-0.013561722,-0.009293153,-0.03386941,0.021563835,-0.00073057093,0.024425058,-0.012991804,-0.050245833,0.033543743,0.012363731,-0.00647264,-0.032357384,-0.029961403,0.025192702,-0.008577848,0.015038856,-0.0008854083,0.021273062,0.027728256,0.0057515195,-0.023087494,0.0046029603,0.019691247,-0.028333066,0.014317736,0.031147763,-0.03182236,-0.00042925583,0.03691673,-0.03168279,-0.007286809,-0.014561987,0.023482949,0.035544273,-0.03905683,-0.008874438,0.029752046,0.046035416,0.004754163,0.02768173,-0.031799097,-0.019586569,0.009397832,-0.024122652,-0.0076415534,-0.010659792,0.02993814,0.004896642,-0.055735655,0.0112994965,0.044197723,-0.025913822,0.018214114,-0.0072751776,0.007286809,0.0643891,0.02029606,0.048850115,0.045197986,-0.032962196,-0.030636,0.011125032,0.014631772,-0.03138038,0.0009166666,-0.023610888,0.005053661,0.006257467,-0.027449112,-0.026402324,-0.013945544,-0.00448665,-0.020156488,0.004890827,0.00085633085,0.017469732,0.0017606395,0.014945809,0.0069262483,0.0021153844,0.013503567,-0.030961668,0.016667193,-0.00871742,-0.025309011,-0.0014618688,-0.021889504,0.031496692,0.0012830425,-0.0066994443,0.026890825,-0.02017975,0.0042772926,0.03861485,-0.014666665,0.019202746,0.0057137185,0.030682525,0.013038328,-0.024029603,-0.0049635204,0.031008191,0.018411841,-0.047384612,-0.007263547,-0.02910071,0.034102034,0.0047163623,0.014387522,-0.013445413,-0.04547713,-0.015108642,-0.004559344,-0.009089611,0.00064770016,-0.03135712,-0.02433201,-0.0182839,-0.0025777158,0.0026707638,-0.012991804,0.047082204,0.0076066605,-0.016899813,0.010502774,0.027960874,0.0069262483,-0.030449905,-0.0049722437,0.0036230502,0.0077229706,0.010386465,-0.019993654,-0.06564525,0.0044517573,-0.0140037,-0.020156488,-0.010159661,-0.013701294,-0.029868355,-0.019493522,0.041173667,0.041731954,0.023366638,-0.011607718,0.019842451,-0.017399946,-0.00016992135,-0.00542876,-0.010194554,-0.004570975,-0.002097938,-0.0066587357,0.050524976,-0.020935763,0.020493787,0.025448583,-0.006065556,0.034148555,-0.018807294,-0.0072809933,0.009549034,0.040429287,0.0064028543,-0.007525244,-0.044593174,-0.015713453,0.0006019032,-0.03717261,0.012014802,0.026751254,-0.013619877,-0.04964102,-0.011654242,-0.033125028,-0.0032973827,0.025797512,0.028588947,-0.027472373,-0.032845885,-0.0013477397,-0.0015062118,0.02910071,0.0039370866,0.015632037,-0.01388739,0.011607718,-0.060853284,0.035451226,-0.0066529205,-0.0031258257,-0.034288127,0.0429881,0.020005286,0.031031454,0.0012808617,0.02114512,-0.008595294,-0.030636,0.015306369,0.005094369,-0.017481362,0.0006295268,-0.023657413,0.030729048,0.0008883161,0.009403647,-0.03359027,-0.040150143,0.04026645,0.022622256,0.0077578635,-0.0123869935,-0.0018391487,0.01009569,0.02791435,0.0033787997,0.007432196,0.008822098,0.039847735,0.0031054716,-0.005838752,0.00006810484,0.0102876015,0.008048638,-0.022459421,0.02423896,-0.018609567,0.0109621985,-0.020924132,0.003192704,0.012317208,-0.0123869935,0.0031171024,-0.06285381,0.0011354744,0.0077636787,-0.02315728,0.0035619875,-0.040033832,0.014352629,0.012456779,-0.011043615,0.018144328,0.007007665,0.029961403,-0.041499335,0.044034887,0.015469203,-0.011130847,0.001458234,-0.047919635,0.0217383,-0.012759184,-0.011258788,-0.01388739,-0.0263558,-0.01401533,0.00854877,-0.0045418977,0.023006078,-0.021086967,-0.030612739,-0.00777531,-0.037963517,0.025029868,-0.017260375,0.013212793,-0.01708591,-0.03382289,0.030705785,-0.0018871265,-0.026076656,0.046361085,-0.0145968795,-0.012328838,0.00433254,0.0071065286,-0.026123181,0.009357123,-0.011142478,0.038033303,0.014061854,-0.009531587,0.014620141,-0.00943854,-0.038149614,0.006100449,-0.044104673,0.0045680674,-0.0076531847,-0.01886545,-0.00448665,-0.014201426,0.019807559,0.021261431,-0.0076764463,-0.038056564,0.01543431,0.01592281,-0.04417446,0.0052746492,-0.010636531,0.0068680933,-0.044383816,0.011136663,-0.011526301,-0.011439068,0.0017315621,-0.018121066,-0.02221517,0.017190589,-0.028077185,-0.0015745439,0.02493682,-0.004887919,0.004559344,-0.0032305045,-0.014096747,-0.03372984,0.01211948,-0.004274385,-0.010054982,-0.010142215,-0.02991488,0.03535818,0.014538724,-0.031287335,-0.026611682,-0.015062119,0.021994183,-0.018784031,-0.010770287,-0.026332539,0.021994183,-0.050385404,0.032962196,0.009636266,-0.006379592,-0.016434574,-0.058480565,-0.019388843,-0.046523917,-0.025564892,-0.0045535285,-0.02707692,-0.008636002,0.034590535,0.0018420564,-0.079137184,-0.018923603,-0.035683844,-0.011002907,0.0046814694,0.002869944,0.0032159658,0.02029606,0.011758921,-0.032380648,0.04238329,0.0020179749,0.027053658,-0.022133755,-0.008205656,-0.014480569,0.013026698,0.012166005,0.05675918,0.0050565684,0.005321173,0.030333595,-0.035962988,0.055735655,0.039824475,0.015469203,0.020959025,-0.014631772,0.007228654,0.019388843,0.0019336503,0.023308484,-0.0027754426,0.011933385,0.0019743587,0.020912502,0.0007836372,-0.019039914,-0.015131905,-0.01626011,0.028891353,-0.029891618,-0.033520482,-0.0038789317,0.044220984,-0.021761563,-0.022994447,0.02826328,-0.017516255,-0.014340998,-0.020633359,-0.021424264,-0.004890827,-0.018702615,-0.0018333332,0.0332646,-0.038452018,0.024076128,-0.016690455,0.014178164,0.016771872,0.03693999,0.018004756,-0.022622256,0.0018362409,-0.025215963,-0.044593174,-0.011468146,0.016318263,-0.0024308746,-0.0027056567,0.011677504,0.019644724,-0.016353156,-0.0067575993,0.030356856,0.027821302,0.031077977,0.01128205,-0.008426645,0.002144462,-0.042011097,0.010450435,-0.015748346,0.018249007,-0.017167326,0.005661379,0.009490879,0.0019641817,-0.0039138244,0.043639436,-0.043243982,0.0156087745,0.004003965,-0.015655298,-0.0022971185,-0.0017577318,0.004443034,0.015934441,-0.029123973,0.043988366,-0.01686492,0.0024570443,-0.019516783,0.0036317734,0.016155431,0.029310068,0.036963254,0.042546123,-0.026425585,-0.017027754,-0.02623949,0.001539651,0.05531694,-0.030333595,-0.008502246,0.02482051,-0.013329103,-0.040336236,-0.0077113393,-0.011979909,0.028751781,0.0036201423,-0.011741474,-0.0217383,-0.0059085377,-0.006507533,-0.028961139,0.010130583,0.021342847,0.0039865184,-0.021784825,0.020365845,-0.03252022,-0.013491936,-0.0043906947,0.0049431664,0.060481094,0.021703407,-0.00997938,-0.011718212,0.032985456,0.021936027,0.036149085,-0.030915143,0.010339941,0.024401795,0.010485328,-0.016248478,-0.017120803,0.044011626,0.020319322,0.0027100183,0.015829762,0.012375362,0.029612474,-0.00096246356,0.0023014802,0.011159925,-0.023820246,0.048059206,0.041150406,0.017027754,-0.05294422,0.026030133,-0.013282578,-0.023843508,-0.008659264,-0.031868882,0.004661115,0.0049722437,0.007443827,0.017969863,0.015376155,-0.0014502378,0.022250064,0.01851652,-0.017306898,0.023575995,0.001846418,0.02458789,0.016492728,-0.025239225,-0.010235262,0.048617493,-0.007455458,0.01057256,0.004201691,-0.020272797,-0.009560665,0.03370658,0.002349458,0.06583134,-0.025611417,-0.02765847,-0.06755273,0.006745968,-0.004841395,-0.014771344,0.044895582,0.033287864,0.04394184,0.031892147,0.016353156,0.00006088091,-0.0003921821,-0.020028546,0.015352893,0.02910071,0.011886861,-0.004640761,0.00041362672,-0.041871525,0.0145968795,0.023459686,0.023529472,-0.018016387,-0.034148555,-0.04675654,-0.018621199,-0.017876815,-0.021424264,0.008537139,0.0037422676,0.020133225,-0.00070222036,0.0033671686,-0.010049166,-0.031287335,0.014480569,-0.0018595029,0.004399418,-0.009246629,-0.0041987835,0.010904043,0.010188738,0.0046785614,-0.0019627279,0.022645516,0.02017975,0.020993918,-0.004777425,0.0035648951,0.017830292,0.025332274,0.031008191,0.009380385,0.009205921,-0.003451493,0.030729048,-0.0065831346,0.00400978,0.0013775441,0.015445941,-0.0031432721,0.01627174,0.010956382,-0.0006622389,0.02600687,-0.0038498542,-0.024355272,-0.0049373507,0.0033497221,-0.022517577,0.0008759581,0.008891884,-0.04631456,0.040150143,0.025029868,0.027844565,-0.009031456,0.0067634145,0.019749403,0.030194024,-0.005745704,-0.00035292754,0.012642874,-0.016306633,-0.005664287,0.02019138,-0.03940576,-0.012875495,-0.033450697,-0.016167061,0.008042823,-0.01744647,-0.033055242,-0.0025893468,0.009485064,-0.0044546654,-0.009746761,-0.008409198,-0.0050333063,-0.027495636,0.03335765,-0.028309803,-0.0033090138,0.011607718,0.01709754,0.0026823946,0.006908802,0.028077185,-0.021214906,0.0111482935,-0.0049431664,-0.0017620934,0.024145914,-0.009485064,0.0019103884,0.03026381,-0.027867828,0.01032831,-0.0065598725,0.038149614,-0.019028282,0.029519426,0.008990747,-0.044895582,0.0012685037,-0.0150853805,-0.012666137,0.0013710017,0.004402326,-0.009107057,0.009607189,0.00012803164,0.027611945,-0.014910916,0.055596083,-0.0078509115,0.020458894,-0.060015853,0.021819718,0.00986307,0.018853817,0.03524187,-0.024425058,0.013049959,-0.01032831,0.011729843,-0.03372984,-0.0030909327,-0.023657413,-0.0014444223,-0.0040853815,0.000678595,0.0018536873,-0.008618556,-0.007100713,0.024029603,0.046616968,0.026216228,0.02682104,-0.026914086,0.022971185,0.009444355,0.0010249801,0.028193494,-0.011543747,0.028100446,-0.027123444,0.014236319,0.02826328,-0.010450435,-0.01115411,-0.028193494,0.02505313,-0.008984932,-0.004707639,0.000061062645,0.0115611935,-0.0009072164,0.0133988885,0.021842979,-0.035125557,-0.022424528,0.010752841,-0.007193761,0.039940786,0.013503567,0.018702615,-0.0031432721,-0.019667987,0.02577425,-0.043034624,-0.007589214,-0.015980966,-0.0017955324,0.036009513,0.015318,0.009333861,-0.040871263,-0.0067634145,-0.015469203,0.0029382762,-0.0052979114,0.009892148,-0.044918843,-0.005893999,0.008176578,-0.0014109832,0.0062167584,0.026402324,-0.0016283372,0.0027768963,-0.022540838,0.019493522,0.0268443,-0.020365845,-0.013224424,-0.06210943,0.0012503304,0.011689135,-0.010054982,-0.013689663,0.04142955,0.013782711,0.026983872,-0.032706313,0.04012688,-0.0005713719,-0.007205392,0.03168279,-0.008909331,-0.035427965,-0.022063969,0.0046029603,-0.05164155,0.006461009,-0.015527357,-0.007420565,0.015469203,-0.030938406,0.032357384,-0.03561406,0.03954533,0.022261694,-0.014527094,-0.0011274781,-0.010310863,0.0040214113,0.016923076,0.009973565,-0.0036404966,-0.0053182654,0.009868886,0.021086967,0.04140629,-0.032613266,0.0011376552,-0.004902458,-0.024029603,0.03086862,0.016167061,-0.00057864125,-0.00605974,-0.010078244,-0.0050071366,-0.0026707638,0.04140629,-0.0242157,-0.028821567,-0.0032741209,0.023727199,0.012282315,-0.011130847,0.013992068,0.012735923,-0.04617499,-0.017725613,0.020749668,0.015015595,0.027402587,-0.0354047,-0.0069611412,0.028588947,0.032938935,0.019819189,-0.0063098064,0.0034253234,0.005585778,-0.02257573,-0.009839809,-0.012549827,0.011369282,0.028100446,0.009205921,-0.027030397,-0.0187724,-0.034823153,0.029310068,0.011572825,0.018609567,0.016178692,0.035195343,-0.012061326,0.031240812,0.03300872,0.01495744,0.013840865,-0.051362406,-0.00926989,-0.008583663,0.008944224,0.018109435,-0.019493522,0.009118688,-0.008118424,0.006391223,0.004821041,-0.03370658,-0.024867034,-0.009647897,0.012096219,-0.006385408,-0.020586833,-0.03168279,0.0029208297,0.040661905,-0.0034253234,-0.035474487,0.0057718735,-0.06662225,-0.019854082,0.050618023,-0.014213057,0.014910916,0.011090139,-0.033683315,-0.029054187,-0.029310068,0.0028670365,0.011159925,-0.014364259,0.0022883953,-0.016236847,-0.03217129,-0.007158868,0.0071763145,-0.0032508587,0.006513349,0.018795663,0.00055029074,0.031077977,0.020098332,-0.017841922,0.02255247,0.022901399,-0.01852815,-0.004969336,-0.009647897,-0.01199154,-0.03847528,0.010822627,0.02304097,0.00041071896,-0.007135606,0.0446397,-0.0062400205,0.007693893,-0.025099654,-0.0179466,0.027100183,-0.011444883,-0.010473697,0.048152257,0.025448583,-0.003556172,-0.00047505283,0.028891353,0.0076299226,-0.0019409197,-0.008647634,-0.05150198,0.049827117,0.031008191,-0.01780703,-0.02600687,-0.02542532,-0.030240547,0.012968542,0.03133386,0.013666401,0.015853025,0.0012248876,-0.0103980955,0.006839016,0.016434574,-0.033148292,0.0024773986,0.000026192422,0.0020237905,0.0026387784,0.0015876287,-0.0080370065,0.0020775837,0.012061326,0.02292466,-0.012189266,-0.004166798,-0.011171556,-0.0059899543,0.05545651,-0.024494844,-0.005018768,-0.017853554,0.020249536,-0.033078507,0.00029713518,-0.029845094,-0.0027405496,0.026634943,-0.004364525,-0.011287865,0.042499598,0.01181126,-0.004230769,0.029868355,0.006804123,0.019156223,0.023168912,0.010514406,-0.026099918,0.040289715,-0.0019481891,-0.0010475151,0.03182236,-0.024285486,-0.015329631,-0.029775308,-0.0067983074,0.045174725,-0.009758391,0.03552101,0.01342215,0.0021052072,-0.023575995,-0.0036550353,0.0179466,-0.018132698,-0.0055305306,-0.020714775,-0.014585248,-0.037684374,0.010002643,0.00884536,-0.0034631242,-0.00006088091,0.025122916,-0.00789162,-0.018074542,0.0116367955,0.0036666663,0.044593174,0.0017141156,0.022866506,0.002016521,-0.0048704725,-0.024308747,0.019842451,-0.010188738,-0.009031456,-0.044197723,-0.008182394,0.019667987,0.0074147494,0.016225217,-0.052292883,-0.0065366104,0.0036724817,0.008118424,-0.0045418977,0.01935395,-0.024122652,0.0062051276,-0.0015018502,-0.013899021,-0.0024890297,0.04764049,0.049315352,0.0018435103,-0.003774253,0.037614588,0.0010337033,-0.006065556,0.0034107848,-0.0011500131,0.019319057,0.019086437,-0.011689135,0.0038992858,-0.017853554,0.010642346,-0.016213585,-0.0022040706,0.013352364,-0.03966164,-0.009118688,0.0100259045,-0.046244774,-0.011910123,0.055875227,-0.002026698,-0.013096483,-0.011846153,0.0115611935,0.010281786,-0.008287073,-0.017039385,-0.011508854,0.0021488236,0.032683052,0.003387523,0.0199355,-0.046849586,0.01413164,0.0023887125,0.0016283372,0.034450963,-0.0011318397,-0.005018768,0.00067168905,0.0046756538,-0.021749932,-0.004274385,-0.01912133,-0.02409939,-0.039568592,-0.035451226,0.010171291,0.00023298306,0.0027056567,0.028402852,0.008473169,-0.0174581,0.008182394,0.0034398623,-0.010671424,-0.011648426]},{"id":"class-Message","type":"class","source":"main","text":"Class: Message\nDescription: Represents a message in a channel.\nProperties: attachments: Collection, author: User, call: APIMessageCall | null, channel: Channel | null, channelId: string, client: Client, content: string, createdAt: Date, editedAt: Date | null, embeds: APIEmbed[], flags: number, guild: Guild | null, guildId: string | null, id: string, mentionEveryone: boolean, mentionRoles: string[], mentions: User[], messageReference: APIMessageReference | null, messageSnapshots: APIMessageSnapshot[], nonce: string | null, pinned: boolean, reactions: APIMessageReaction[], referencedMessage: Message | null, stickers: APIMessageSticker[], tts: boolean, type: MessageType, webhookId: string | null\nMethods: createReactionCollector(options: ReactionCollectorOptions) -> ReactionCollector — Create a reaction collector for this message.\nCollects reactions matching the filter until time expires or max is reached.; delete() -> Promise — Delete this message.; deleteAttachment(attachmentId: string) -> Promise — Delete a specific attachment from this message.\nDELETE /channels/{id}/messages/{id}/attachments/{attachmentId}.; edit(options: MessageEditOptions) -> Promise — Edit this message. Only the author (or admins) can edit.; fetch() -> Promise — Re-fetch this message from the API to get the latest content, embeds, reactions, etc.\nUse when you have a stale Message (e.g. from an old event or cache) and need fresh data.; fetchReactionUsers(emoji: string | { name: string; id?: string; animated?: boolean; }, options: { limit?: number; after?: string; }) -> Promise — Fetch users who reacted with the given emoji.; formatEmoji(emoji: string | { name: string; id: string; }) -> string — Format emoji for reaction API: unicode string or \"name:id\" for custom.\nFor string resolution (e.g. :name:), use client.resolveEmoji; Message methods resolve automatically when guildId is available.; pin() -> Promise — Pin this message to the channel. Requires Manage Messages permission.; react(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise — Add a reaction to this message (as the bot).; removeAllReactions() -> Promise — Remove all reactions from this message.\nRequires moderator permissions.; removeReaction(emoji: string | { name: string; id?: string; animated?: boolean; }, userId: string) -> Promise — Remove the bot's reaction, or a specific user's reaction if userId is provided.; removeReactionEmoji(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise — Remove all reactions of a specific emoji from this message.; reply(options: MessageSendOptions) -> Promise — Reply to this message (shows as a reply in the client).; resolveChannel() -> Promise — Resolve the channel (from cache or API). Use when you need the channel and it may not be cached.; resolveEmojiForReaction(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise; resolveGuild() -> Promise — Resolve the guild (from cache or API). Returns null for DMs.; send(options: MessageSendOptions) -> Promise — Send a message to this channel without replying. Use when you want a standalone message.; sendTo(channelId: string, options: MessageSendOptions) -> Promise — Send a message to a specific channel. Use for logging, forwarding, or sending to another channel in the guild.; unpin() -> Promise — Unpin this message from the channel. Requires Manage Messages permission.","meta":{"url":"/docs/classes/Message"},"embedding":[0.016005406,0.022233646,-0.014548232,0.0150300395,0.0014020888,0.009307108,-0.016886761,-0.035042673,-0.012867782,0.03266889,0.01478326,-0.045054864,0.007491517,0.042305037,0.041247413,0.007421009,0.001681919,-0.0008872306,0.021105513,0.03259838,0.0028467765,0.01848495,0.016769247,0.030177593,-0.0022415794,-0.010159085,0.010682022,0.06665394,-0.033397477,-0.03316245,0.034220073,-0.022057377,0.034290582,-0.009424622,0.0040248544,0.038145043,-0.026017597,0.006375134,-0.0243489,0.0048973956,-0.010294226,-0.0019610147,-0.0019007889,0.012656257,-0.04131792,-0.0066042864,-0.02040043,0.002561805,0.009271854,0.0243489,-0.043127634,0.035912275,0.030530134,0.10435242,-0.006198863,-0.0562657,-0.030530134,0.019342802,-0.025383022,0.007996827,-0.005006096,-0.01848495,-0.019695345,-0.043033622,-0.0260411,0.009395244,-0.034455102,0.05316333,0.010652644,0.04105939,0.05400943,-0.007685415,-0.008096714,-0.021093762,-0.014606989,-0.014994785,0.013725635,0.021892857,-0.013161567,-0.056970783,-0.010482248,0.03386753,-0.040354304,-0.0028232737,-0.041364927,0.0067981845,-0.014771509,-0.016099418,0.0040219165,0.007908692,-0.010153209,0.012656257,-0.082964875,-0.00852564,0.047170117,-0.042187523,-0.028320871,0.005631858,-0.028015336,0.037345946,0.046841078,-0.06618388,-0.06594885,0.016228681,0.028438386,-0.008202476,-0.04613599,0.022409918,-0.03208132,0.0042657577,-0.044232268,-0.00864903,-0.0028981888,0.0136668775,-0.0071507264,-0.026769686,0.015993655,-0.0031552506,0.003149375,-0.019977378,-0.04063634,-0.018661221,0.06388061,-0.008678408,0.037486963,-0.037157923,0.03570075,-0.009736034,-0.017556591,0.025265507,0.040847864,0.0352542,0.019906871,-0.028532397,-0.012186201,0.009277729,0.014336707,-0.011087446,-0.029731039,0.0019007889,0.03485465,-0.028602906,-0.007879313,0.017356817,-0.021540314,0.0073269974,-0.051706158,0.005893327,-0.0068216873,-0.01142236,-0.005003158,0.0218341,-0.034713633,0.015147554,0.013220324,-0.0056876773,0.019859865,0.029543018,0.0035841768,-0.030201096,0.007844059,-0.03476064,-0.026276128,-0.031634767,-0.0072271107,-0.02225715,0.0021005627,-0.009548012,-0.03198731,0.0226802,0.0545735,-0.0060989764,-0.035066176,-0.0034108437,-0.041881986,-0.019331051,-0.01612292,-0.018966759,-0.0148655195,-0.009107335,0.041270915,0.021728337,-0.06308151,-0.08790047,-0.019624837,0.019378057,-0.013326087,0.01754484,0.021822348,0.021951614,-0.02930799,0.024372403,0.010100327,0.00907208,0.018590713,-0.041012384,0.048838817,0.0019992068,-0.0084903855,-0.056500725,0.02653466,0.020741219,0.06496173,-0.012691511,0.010969931,-0.029166972,-0.0028629347,-0.010276599,-0.008748917,-0.0335855,0.047828194,-0.03668787,0.018790487,-0.010399988,-0.057910897,-0.0015893767,-0.06947427,-0.0043685827,-0.070790425,0.019495571,-0.07041439,0.023632064,0.095468365,-0.018167663,-0.019354554,0.021317039,0.026652174,-0.026652174,-0.00075576187,0.019131279,-0.023232516,0.0034989791,-0.02907296,-0.03990775,0.017204048,-0.050013956,0.02292698,0.04467882,0.037439957,-0.04141193,0.026981212,-0.009512758,0.0045507294,0.04477283,0.025053984,0.015558853,0.005590728,-0.030953186,0.048744805,0.031893298,0.103412315,-0.0068921954,-0.0040571704,-0.0022151386,0.022738958,-0.031728778,-0.019190034,0.020447435,0.025524039,0.013843148,0.028908443,0.016745744,-0.043315656,-0.015500096,-0.03652335,0.018966759,0.05424446,0.025053984,0.0037898263,0.008355245,0.054714516,0.00048988644,0.052270222,0.0048210113,-0.009924057,0.027991833,-0.012338969,0.013854899,0.017556591,0.021904608,-0.0030406746,-0.012738517,0.033891033,0.0019874554,-0.024748446,0.033397477,0.03668787,-0.036546852,0.0026044038,0.02385534,-0.0097066555,-0.017368568,-0.020294666,-0.05734683,0.034807645,0.009900554,0.057628863,0.012926539,0.036734875,0.041364927,-0.006104852,-0.02275071,0.034079056,-0.05903903,0.028626408,0.011016937,0.016369699,-0.030530134,0.052881297,-0.0638336,0.030248102,-0.0064456426,-0.06359857,-0.04249306,-0.045242887,0.015406084,0.008437505,-0.011804281,0.02907296,0.038333066,0.017474331,-0.037439957,-0.0067100488,-0.0020256473,-0.048744805,-0.036217812,0.025547542,-0.038544588,0.042916108,0.05006096,0.038497582,-0.059603095,0.0019477945,0.03365601,0.044302776,-0.00869016,0.002599997,0.013702132,0.021211276,0.03492516,0.039155662,-0.031540755,-0.0061694845,0.004826887,-0.0004597735,0.002388472,-0.029213978,0.015265067,-0.011486992,0.0031229344,-0.023044493,0.018872747,-0.021058507,-0.031564258,0.048885822,0.0086137755,0.014677498,-0.0072858674,-0.024842458,0.018508453,-0.019742351,-0.042610575,-0.008590273,0.0019272295,0.033538494,0.016369699,-0.05466751,-0.011892416,0.027709799,-0.049261864,0.013079307,-0.034173068,-0.004926774,-0.0032316349,-0.010764281,0.004474345,-0.01604066,-0.013819645,0.0005280785,0.023526302,0.016733993,0.022656698,0.012150947,0.0036517472,0.015770378,-0.025806073,-0.018038398,-0.0042011254,0.0025294886,0.0722476,0.052881297,-0.014042922,-0.05039,0.0041364925,0.042187523,0.032880414,-0.004110052,0.031023694,0.021093762,0.004189374,0.03586527,0.012997047,-0.006439767,0.042281535,-0.018708227,0.039343685,0.020282915,-0.010188463,0.038615096,0.002968697,0.054526493,0.031305727,0.021951614,0.0453369,0.02302099,-0.05734683,0.011910043,0.004110052,0.025594547,0.0022327658,-0.02930799,-0.091143854,-0.012703262,-0.023067996,-0.040048767,-0.008596148,0.058568973,-0.04510187,0.011334225,-0.044584807,-0.06848715,-0.02418438,0.083622955,-0.0031699399,0.032950923,-0.05645372,0.018872747,0.013290833,-0.048885822,0.0285559,-0.0062047387,0.005787564,0.0050560394,0.027263246,-0.042211026,0.027263246,0.0017759302,-0.024301894,0.013478855,-0.006592535,-0.05847496,-0.031117706,0.007074342,0.0125975,-0.07102545,-0.054996546,0.018191166,0.0369699,0.02283297,-0.03158776,0.0062693716,0.032057818,0.024818955,0.06538478,-0.0021064384,-0.0022768336,-0.060966257,-0.019695345,-0.01334959,0.028814431,0.008425754,-0.0038397696,0.035818264,0.05029599,-0.0065161507,-0.050437003,0.009512758,-0.02669918,0.026229123,0.004718187,0.033397477,-0.0034872277,-0.006880444,-0.030600643,-0.04747565,0.019342802,-0.009077956,-0.039155662,0.025571045,0.017074782,-0.023655567,0.011857161,-0.0017142354,-0.010282475,0.004668243,-0.01814416,-0.036170807,-0.07248263,0.023091499,-0.029707538,0.017168794,-0.004759317,-0.013055804,0.023244267,0.024912966,0.015323824,-0.00034023973,-0.0041981875,0.0038838375,0.058239933,0.005258751,0.024419408,-0.008337618,-0.009841797,0.040025264,-0.0008035019,-0.034502108,-0.004718187,-0.023538053,-0.009736034,0.04575995,-0.0072271107,0.020705964,0.018085403,-0.016475461,0.012021681,-0.020717716,-0.053022314,-0.014818515,0.026558163,-0.006880444,-0.0122449575,0.036993403,0.014548232,-0.000047831865,0.00047629888,-0.06759405,-0.012691511,0.0063633826,-0.03595928,-0.0012177387,-0.0031405615,0.008713663,-0.016922016,0.0130087985,0.018778736,-0.0344316,0.07036738,0.0007054512,0.02418438,-0.002738076,-0.019542577,0.042516563,-0.04301012,0.019154781,0.009818294,-0.028508894,-0.03015409,0.033961542,-0.01427795,0.0049914066,-0.0021225964,0.0047211247,0.00970078,-0.050719038,0.0078088045,0.013514109,0.011545749,-0.04660605,0.023126753,-0.008584397,-0.01200993,-0.016534219,-0.041952495,0.0026132173,0.013948911,-0.03661736,-0.009571515,-0.019977378,-0.03299793,-0.0030230475,-0.03990775,0.024912966,-0.023984605,-0.014324956,0.014630492,-0.0243489,-0.009201346,-0.02032992,0.03299793,0.019754102,-0.0030935558,0.01629919,0.013196821,-0.026135111,-0.003951408,-0.016005406,0.0076795393,-0.03335047,-0.0044155885,0.04293961,0.023667319,-0.053962424,0.00594327,0.001527682,0.023115002,0.017909132,-0.046418026,-0.05029599,0.031775784,-0.004068922,0.025970591,-0.011398857,-0.034713633,-0.009565639,0.0067335516,0.004909147,-0.01587614,0.027545279,0.0054908413,-0.02796833,0.009971062,0.0009797729,0.0026558163,0.01705128,0.02283297,0.0032375106,-0.026581666,0.022022123,0.002795364,0.027827313,0.007238862,0.013831397,-0.008396375,0.010405864,-0.028532397,0.0068393145,0.00030773977,-0.0027821437,0.010640892,0.036311824,0.0019698283,0.021716585,-0.024795452,0.0072094835,0.020459186,-0.0017318624,-0.021599071,-0.033726517,-0.018708227,-0.027709799,-0.00005008116,0.010611514,-0.036499847,0.0055260956,-0.029966068,-0.009671401,0.0537744,-0.021540314,0.0050149094,-0.025853079,0.02510099,0.012668008,0.025242005,0.008678408,0.0022136697,-0.03436109,-0.0037868884,0.036076795,0.011369479,0.00613423,-0.00017324134,0.019072521,0.002542709,0.026393643,-0.03236335,-0.0017759302,-0.014054674,-0.00048180736,0.0038662103,0.021305287,-0.005749372,-0.053633384,-0.003872086,0.028038839,-0.01612292,0.014336707,0.011204959,0.023714323,-0.011857161,-0.0098300455,-0.032551374,-0.013114561,-0.02418438,0.015840886,0.018097155,0.028038839,0.03031861,0.026628671,-0.04613599,-0.00898982,-0.016005406,-0.039249673,0.0029995446,0.04301012,-0.0123272175,-0.021986868,-0.008126092,0.029096464,-0.0061929873,-0.06947427,-0.008707787,-0.020940993,0.000938643,-0.026934206,-0.005655361,0.024630932,0.0077206693,0.03382053,-0.019683594,0.020705964,0.02377308,-0.03997826,-0.0038045156,-0.012609251,-0.00007551192,0.0056671123,0.06500874,-0.022386415,0.028861437,-0.013878402,0.026863698,0.010088576,-0.012914788,-0.019178284,0.009277729,-0.005590728,0.017991392,-0.003974911,-0.018238172,-0.0035900525,0.0054291463,0.037745494,-0.04016628,-0.025665056,-0.04695859,-0.016651733,-0.0037457584,-0.008983945,0.022186643,-0.014630492,0.0078910645,-0.05057802,0.039108656,-0.0025706186,-0.022210144,-0.009771288,-0.035160188,-0.039367188,-0.010964056,0.005825756,0.04764017,-0.0054644006,0.017074782,-0.00426282,-0.005910954,-0.021035004,0.008108465,0.002444291,-0.007844059,-0.0034960413,-0.004383272,-0.0011868913,0.0024163814,0.0075150197,-0.017497834,0.010217842,-0.034149565,-0.0135023575,-0.012280212,-0.014936028,-0.007750048,-0.01571162,-0.016780999,-0.0026249688,0.019601334,-0.03619431,-0.043221645,-0.016169926,-0.021093762,-0.021822348,-0.016028909,0.024489915,-0.024654435,-0.022456923,0.008995696,0.00029598837,-0.09020374,0.028931946,0.033115443,-0.029449007,-0.02024766,-0.01436021,-0.010417615,0.022374664,-0.011445863,-0.034807645,0.021129016,-0.015582356,0.02653466,-0.0076325336,0.025077486,0.0039984137,0.008631403,-0.027944827,-0.0009364396,-0.007180105,0.019848114,0.0041364925,-0.028320871,0.0344316,0.029660532,-0.0040718596,-0.0036223687,0.034149565,0.023009239,-0.033044934,0.00018315658,0.010576259,-0.017533088,0.01881399,-0.013972414,0.029895559,0.021176022,0.0067923088,0.0124094775,-0.022562686,0.051189095,-0.0063810097,-0.019742351,-0.019013764,0.01461874,-0.034619622,0.015594107,0.051048078,-0.005373327,0.008243606,-0.008184849,-0.019601334,-0.005220559,0.01326733,0.026299631,0.0048562656,-0.06778207,0.01117558,-0.018990261,-0.020059638,0.026863698,0.028814431,0.028931946,-0.019378057,0.026581666,-0.01881399,-0.05645372,-0.026581666,0.02302099,0.015688118,-0.007138975,0.008831177,0.019342802,0.0024075678,-0.001761241,0.027686296,0.018038398,0.012879534,0.000646327,-0.019272294,-0.012374223,-0.016639981,0.0041129896,-0.0036399958,-0.012738517,0.026417146,-0.021105513,0.015276819,0.014031171,0.0026146863,0.032222338,-0.026675677,0.0039455323,-0.00051816326,-0.00050898246,0.014853769,-0.005631858,-0.020929242,0.03570075,-0.044749327,0.027075224,0.010523378,-0.021563817,-0.04585396,-0.017533088,-0.020600203,-0.0024957033,0.021481557,0.02116427,0.02510099,-0.005399768,-0.0016745743,0.0023811273,0.021058507,-0.007003834,0.0048180735,0.04065984,0.038779616,-0.0044684694,-0.01427795,-0.021610823,-0.0062282416,0.00453604,-0.011704394,-0.001564405,0.015547101,-0.024912966,0.0074268845,-0.00045610117,-0.0319168,-0.027192738,-0.003263951,-0.008596148,0.020388678,-0.030013073,0.0061283545,0.052223217,0.014172187,-0.031352732,-0.0053527625,-0.021305287,0.020118395,0.0032257591,0.028156353,-0.034995668,-0.012444732,-0.014924277,0.030530134,-0.022633195,-0.060919255,0.04275159,-0.006610162,0.030765163,0.012033433,-0.020846982,0.03015409,-0.0034578491,-0.012903037,-0.014900774,-0.0034931034,0.01334959,0.030671151,0.017709358,-0.04192899,-0.03259838,-0.037510466,-0.006263496,-0.020341672,-0.020059638,0.0032933296,0.00873129,0.017615348,0.04159995,0.0068334388,0.009929933,0.04007227,0.048838817,0.025735565,-0.006880444,0.022691952,-0.008549143,0.020447435,0.01243298,0.014971282,0.018014895,-0.009271854,0.008043833,-0.014242696,-0.024654435,-0.02620562,0.010211966,0.035395212,0.025477033,0.03175228,-0.020588452,-0.010012192,-0.026981212,0.011816032,-0.014724503,0.0072329864,0.058098916,0.019871617,0.018661221,-0.028532397,0.021422802,0.0033873408,-0.031540755,0.023690822,-0.004615362,0.05617169,0.0067511788,0.023690822,0.0073211216,0.020259412,0.023056244,-0.007297619,-0.024008108,-0.028861437,0.011945297,0.007356376,-0.028109347,-0.00062429305,-0.011093321,0.037980523,-0.042540066,0.0064221397,0.024301894,-0.01427795,-0.026346637,-0.012221456,0.011639761,0.008954566,-0.01579388,-0.010505751,0.058098916,-0.033138946,0.010640892,0.018120658,0.028250363,0.01696902,0.01188654,0.009524509,-0.044420287,-0.03403205,-0.014054674,-0.009377616,0.029213978,0.028955448,0.009712531,-0.007661912,-0.035042673,0.034337588,-0.028273866,0.004456718,0.022527432,-0.022210144,-0.015641112,-0.001975704,-0.011857161,0.014089928,0.026487654,0.010558632,-0.016839756,-0.018966759,0.0063281283,-0.011957048,-0.0029187538,0.009342362,0.0036458715,-0.0019859865,-0.0009239538,0.034243576,0.0045242887,0.007949822,-0.009066205,-0.008102589,-0.028931946,-0.024031611,-0.00055708975,0.008760668,-0.032386854,-0.029354995,-0.04940288,-0.023984605,-0.014983034,0.011251965,0.012668008,-0.019307548,0.010253096,-0.009477504,0.02015365,0.030459628,-0.027075224,-0.02897895,0.033726517,-0.020517943,-0.022315906,-0.013901905,0.032645386,-0.000900451,-0.023831837,-0.015923146,-0.0063281283,0.0352542,0.021704834,0.0016363823,0.0045095994,-0.018637719,0.026769686,-0.027662793,-0.027874319,0.01142236,0.02679319,-0.023491047,0.0030230475,0.0065866592,-0.027897822,-0.03635883,0.00056957564,0.008267109,-0.008701911,-0.015993655,0.009265978,0.025712062,-0.013948911,-0.014959531,0.06608987,-0.0067805573,-0.0037780749,0.022962233,0.03175228,-0.031047197,-0.005202932,0.004671181,-0.01914303,0.011880664,-0.06905122,-0.0074092573,-0.00008694199,-0.0019037267,-0.0007844059,-0.013937159,-0.03979024,0.032903917,0.03563024,-0.017497834,0.019354554,-0.0018816928,-0.04272809,-0.017063031,0.04907384,-0.0041805604,-0.008002703,0.03929668,0.0010914112,0.014571735,-0.0044214637,0.04183498,-0.016440207,-0.006040219,-0.0012801681,-0.0013697725,0.023761328,0.010693774,0.010640892,-0.0116867665,-0.022539183,0.008043833,0.020529695,-0.016181676,0.009753661,0.043903228,0.0033726515,0.005182367,-0.016828004,-0.024207883,0.029613527,-0.009512758,0.005655361,0.032574877,-0.000059675072,0.020529695,-0.009019199,-0.0021754778,-0.03266889,0.007567901,-0.0040424815,-0.016440207,0.005652423,-0.043057125,-0.005784626,-0.007703042,-0.016064163,0.0023018054,-0.003601804,-0.0010649705,-0.035982784,-0.046653055,-0.014418967,-0.02679319,-0.007926319,0.02242167,0.011263716,-0.031846292,0.008202476,0.006140106,-0.021963365,0.05020198,-0.021634325,0.0011420891,-0.02747477,0.060590215,-0.005764061,0.0048738928,0.003187567,-0.0010201683,0.005341011,-0.028696917,-0.007961573,0.045148876,-0.02653466,-0.000061694845,0.029801548,0.007591404,-0.025571045,0.025006978,-0.015182808,-0.015229814,0.008002703,0.023291273,0.012291963,-0.03687589,0.010458745,0.0144307185,-0.021963365,0.0403308,0.034314085,-0.02653466,-0.010852417,0.0017891505,0.016158175,-0.0027307314,0.021481557,0.008719538,0.0025691497,0.031681772,-0.0156058585,0.000023961837,0.002934912,-0.023209013,-0.0058580725,0.024278391,0.01746258,-0.015676366,-0.04712311,0.00567005,0.009553888,0.01839094,-0.0016114106,-0.011616258,0.010846541,-0.018473199,0.01411343,0.009495131,-0.02083523,-0.036335327,0.011892416,-0.021763591,-0.03175228,-0.04568944,0.0017186421,0.04399724,0.026511157,0.021375796,-0.009336486,0.0013940097,-0.010541005,-0.0049032713,0.024748446,0.023479296,0.004970842,0.024207883,0.044490796,-0.000889434,0.000023284754,0.010811287,-0.027310252,0.008231855,-0.026746184,-0.0060519706,-0.03299793,0.02470144,0.021704834,0.004321577,0.0079733245,-0.010746654,-0.0018199979,-0.026769686,0.002403161,0.011046316,-0.04143543,-0.020846982,-0.012691511,-0.027404264,0.03873261,-0.020670712,0.01562936,-0.0025970591,-0.016898513,-0.011410609,-0.016028909,-0.022468675,-0.03821555,-0.020012632,0.01411343,-0.0015908456,0.0043979613,-0.012668008,0.0017920884,-0.0022783026,-0.012750268,0.011281343,-0.030718157,-0.009312984,0.018496701,-0.0066042864,-0.0018802239,-0.007468014,-0.038826622,-0.039672725,-0.017309811,-0.010811287,0.015417836,-0.0015203373,-0.014701,-0.006686546,0.0034314087,-0.0193193,-0.00676293,0.007291743,-0.0105938865,0.0065043992,-0.022280652,-0.010981683,0.004771068,-0.047076106,0.047381643,0.0044625937,0.021975117,0.007744172,-0.0035518603,0.016686987,-0.008343494,0.0034196572,-0.05081305,0.0027718614,-0.04063634,0.020717716,0.009653774,-0.0008174567,-0.011486992,0.015735123,0.035113182,-0.02486596,0.026652174,0.017239302,-0.005282254,0.011099196,0.0015027102,0.015817383,-0.020776473,0.00970078,0.020365175,-0.06942727,-0.009718407,0.0036164932,-0.0062282416,-0.016181676,0.022116134,-0.008725414,0.01629919,-0.016733993,-0.0018346872,0.0018949131,0.013702132,0.0035048549,-0.015805632,0.0122449575,0.0006419202,0.005811067,-0.0019272295,-0.004967904,-0.021375796,-0.01075253,-0.0032992053,0.0013022019,-0.010805411,-0.024066865,-0.019589582,-0.009342362,0.03492516,0.0078029293,0.0064632697,-0.032222338,0.028861437,-0.022891726,0.00978304,-0.016158175,0.025853079,0.00571118,0.004086549,-0.0011582472,0.027874319,-0.016698739,0.0025691497,0.0019992068,-0.009759537,-0.0051529887,-0.011475241,0.024031611,-0.019683594,0.031023694,-0.04073035,0.009683153,0.011105072,-0.03840357,0.009882927,-0.03805103,0.016922016,-0.025759067,-0.003263951,0.038662102,0.0026044038,0.013737385,-0.009753661,0.010687898,-0.0135846175,-0.020341672,0.0037986399,-0.015934898,0.03332697,-0.007838183,-0.014489475,-0.019824611,0.01796789,0.015323824,-0.005540785,-0.034149565,0.015594107,0.022868223,0.023820085,-0.032809906,0.028955448,-0.0019786418,-0.0058375075,-0.006939201,-0.004926774,0.0097477855,-0.028179856,0.019448565,-0.0008233324,-0.02007139,0.011075694,0.009982813,0.009295356,0.019436814,-0.020200655,0.01553535,0.01914303,-0.011028688,-0.0034284708,0.031728778,0.022327658,-0.018320432,0.029331492,-0.0014953655,-0.024207883,-0.002720449,0.008719538,0.012668008,0.021810597,-0.0006599145,-0.016252184,0.0034490356,0.02108201,0.011874788,-0.0066042864,-0.0018905064,-0.0032140077,-0.009794791,-0.027944827,-0.013984165,0.012209704,-0.024419408,0.011904167,0.02284472,0.037157923,-0.014736255,0.0057376204,-0.039343685,0.019953875,-0.00990643,0.026111608,-0.02907296,0.012938291,-0.009019199,0.00793807,0.0009929932,0.03847408,-0.0033197703,-0.019096024,-0.011692642,0.0073681273,0.036546852,-0.011704394,0.0043333285,0.018943256,-0.010905298,0.02091749,0.0352542,-0.0024927654,-0.0047886954,0.010570384,-0.036993403,-0.009218972,-0.024959972,-0.039320182,0.0035107306,-0.01129897,-0.020012632,0.02747477,0.013196821,-0.015617609,-0.010423491,0.02083523,-0.012021681,-0.015041791,0.007961573,0.015241564]},{"id":"class-MessageCollector","type":"class","source":"main","text":"Class: MessageCollector\nDescription: Collects messages in a channel. Use channel.createMessageCollector().\nProperties: channelId: string, client: Client, collected: Collection, options: Required\nMethods: emit(event: K, args: MessageCollectorEvents[K]) -> boolean; on(event: K, listener: (...args: MessageCollectorEvents[K]) => void) -> this; stop(reason: MessageCollectorEndReason) -> void","meta":{"url":"/docs/classes/MessageCollector"},"embedding":[0.013435822,-0.017026912,0.00040658464,0.006499761,-0.0002375531,0.04546476,-0.009050441,-0.0008733005,-0.033494465,0.0027814165,0.0054313834,-0.008709231,0.021043114,0.034881677,0.031122778,-0.003991032,-0.02414197,-0.015181025,0.054906756,0.03490405,-0.009878294,0.035329163,0.06452774,0.019566406,-0.041347876,-0.022329643,-0.024209091,0.055980727,-0.029757941,-0.03729811,0.05101361,-0.031480767,-0.016568236,0.015773946,-0.006868938,0.054190777,0.014487418,0.032174375,-0.028460225,0.05656246,-0.021468228,-0.013066645,0.014588104,0.003812037,-0.015270522,0.004701419,-0.013983995,0.0067962212,0.015002029,0.045062024,-0.028415477,-0.00394069,0.026826896,0.026558403,-0.012305915,-0.07092682,-0.022497451,0.019387411,0.013089019,-0.0070199654,0.004947537,-0.008653296,0.007624074,-0.024343338,0.007355581,0.015594951,-0.028370729,0.0587999,-0.03230862,0.037119117,0.016053626,-0.00031918468,-0.041325502,-0.031346522,-0.060947843,0.009688111,-0.00809953,-0.00019525153,0.0012711451,-0.02134517,-0.043630064,-0.011136853,-0.03801409,0.022553386,-0.030608168,-0.046851974,-0.002373084,0.011450095,0.015729196,-0.023425987,0.004007813,0.01755271,-0.031257026,0.017507961,0.058262914,-0.023761604,0.005604785,0.004449707,-0.0052495915,0.019488094,0.029825063,-0.036895372,-0.05150585,0.029109083,0.012540846,-0.033293094,-0.0404529,0.022363205,-0.058755152,-0.029825063,-0.023403613,-0.014632852,-0.021110239,0.02960132,-0.00063312537,-0.008250557,0.039759293,-0.015594951,0.015494266,-0.0005226518,-0.044883028,-0.006924874,0.011030575,0.022117086,-0.0024569877,-0.052848313,-0.0029310454,0.016803168,0.003742117,0.05002914,0.059292138,0.03107803,-0.00394908,0.0018374969,0.04810494,-0.013726689,-0.013939246,0.014554542,-0.027319131,-0.023649732,0.0071709924,-0.010549526,0.022933751,0.012552033,0.021468228,0.02002508,-0.066004455,0.006438231,0.042891707,-0.03718624,0.005436977,0.030048808,-0.010616649,0.03459081,-0.00221926,0.041191254,-0.0033198004,0.038953815,-0.0021101849,-0.025081692,0.017340153,0.007025559,-0.031413645,0.027923241,-0.06940536,-0.026401782,0.0005261478,0.001571801,-0.017541522,0.0207075,0.007232522,-0.01915248,-0.017810015,-0.02405247,-0.015236961,-0.04192961,-0.014442669,-0.033449717,-0.0033309874,-0.00036638067,0.04436842,-0.0021954873,0.013536506,-0.046807226,-0.012742216,0.03749948,-0.0000073142846,-0.0029422324,0.0020710295,-0.03291273,-0.051371604,0.025260689,-0.012842901,0.06296153,0.007512202,-0.0020528503,0.022228958,0.040430523,-0.00035589267,-0.07481997,-0.021792658,-0.016847916,0.022352017,-0.025551556,0.035127796,0.0154718915,0.03575428,0.02812461,0.0025087285,-0.066899434,0.06399076,-0.0033589555,0.003437266,-0.037208613,-0.04161637,0.01831344,-0.033807706,0.020081017,-0.0477022,-0.059963368,-0.01086836,0.01106973,0.059068393,-0.03881957,-0.010734114,0.021233298,0.01508034,-0.05624922,0.0057110633,-0.0051964526,-0.012552033,-0.025820049,-0.030384423,-0.059739623,0.026312284,-0.032621864,-0.04819444,0.07012134,0.021568913,-0.034120947,-0.004186808,-0.011450095,0.025954293,0.03358396,-0.024499958,0.00457836,-0.022564573,0.012428975,-0.0021996824,0.023202244,0.043451067,-0.0109578585,-0.02812461,0.021636037,0.012015048,0.03470268,0.015326458,-0.018347,-0.024231466,-0.012462536,0.055846483,-0.025394933,-0.03239812,-0.020383071,-0.011394159,-0.020439006,0.036089893,-0.027587624,0.028079862,0.066899434,0.006069054,-0.03801409,0.053832784,-0.008888227,-0.028616847,0.016064813,-0.011869615,0.006298391,0.019577593,-0.021322794,-0.0054481644,0.009928636,0.0011452892,0.01859312,0.013100206,0.037790347,0.0394908,0.011657058,0.013570068,0.019118918,0.019476907,-0.02852735,-0.013312763,-0.040587146,-0.012305915,0.040520024,0.06452774,0.03613464,0.025059318,-0.020696312,-0.007383549,0.009967791,0.0022821878,-0.062066562,-0.00068661413,-0.008351241,0.024074845,-0.040878013,0.035172544,-0.0303173,0.01990202,-0.014610478,-0.07034509,-0.008703638,0.009251811,0.011198383,-0.023515485,0.02234083,0.04304833,-0.023067998,0.0018221145,-0.03830496,0.00422876,0.018402938,-0.045755632,-0.014957281,-0.00831768,-0.033718206,0.023470737,0.0386182,0.019700652,-0.043518193,0.008138685,0.012563221,0.056293968,-0.011450095,0.009022473,-0.031861134,-0.00038595826,0.027431004,0.027453378,-0.010460028,-0.0042371503,0.022933751,0.02050613,0.011433314,0.010163567,0.03295748,-0.007691197,-0.008373616,-0.0063207657,0.0151698375,-0.008250557,-0.054996256,0.020204075,-0.027363881,-0.00089217885,0.007254896,0.022307267,0.017619833,-0.013256826,0.045957,-0.001592777,-0.013491758,0.0038903472,-0.027744245,-0.12681805,-0.04591225,0.040587146,-0.004279102,0.028639222,-0.060858343,0.018693805,-0.007859005,0.056070223,0.016266182,0.006298391,0.011947925,0.028572097,0.025864797,-0.025394933,0.005551646,-0.015348832,-0.008949757,0.014364359,0.033897202,-0.02796799,0.012876462,-0.0104712155,0.03928943,0.02226252,0.0014795066,-0.020539692,0.024477584,0.057144195,0.043831434,-0.03036205,0.015975315,0.02669265,0.06036611,-0.003851192,0.021602474,0.03593327,0.06385651,0.016366867,0.030451547,-0.024768451,0.020774622,0.023940599,-0.023202244,0.056383464,-0.013055458,0.022631697,0.03067529,-0.018581932,-0.011746556,-0.06305104,0.0065556965,-0.0048216814,-0.041347876,-0.024925072,-0.060052868,-0.01332395,0.009369276,0.0032862388,-0.016836729,0.034971174,-0.02218421,-0.034210443,-0.028393103,-0.0533853,-0.0069919974,0.031861134,0.03230862,0.056875702,-0.051908586,0.05262457,-0.041840114,-0.029780315,0.06340902,-0.05105836,0.05083462,0.010001353,0.054638263,-0.039446052,0.012093359,0.0065053543,0.029578945,-0.017228281,-0.021199737,-0.08027931,-0.044055175,-0.009699299,0.015527828,-0.04922366,-0.04213098,0.028214108,0.04703097,-0.0032722547,-0.040027786,-0.027363881,0.020170514,0.0010963451,0.02537256,-0.010253065,0.0041057006,-0.055309497,-0.011791305,0.023649732,0.02074106,0.033248346,-0.010918703,0.038953815,0.019723026,0.0027184885,-0.016769607,0.04204148,-0.018816862,-0.0049727084,-0.030183055,0.034881677,0.020192888,0.019980332,-0.021367544,-0.03286798,0.033539213,-0.0057502184,-0.019074168,0.010113225,-0.0032191155,-0.014263675,0.0017731705,-0.0022206584,-0.009302153,-0.008250557,-0.013279201,-0.025775298,-0.012820526,0.034277566,-0.028169358,0.004477675,-0.0025101271,0.009598614,-0.017664582,0.026245162,0.019208414,-0.05580173,0.004256728,-0.0049978797,0.009106377,0.021870967,0.008200214,-0.03962505,0.0013872123,0.026871644,-0.026737398,-0.045755632,-0.008977724,-0.028572097,0.016299743,0.042757463,0.008586173,-0.00529434,0.008647703,-0.007886973,0.020349508,-0.02868397,-0.009632176,0.0073388005,0.01803376,-0.00450844,-0.020729873,-0.005372651,0.0029226549,0.011075323,-0.017731706,-0.035978023,-0.01156756,0.001564809,-0.01663536,-0.027363881,0.011377378,-0.0062648295,-0.0023311318,-0.0005313918,0.014979655,-0.010666991,0.04436842,0.0014130827,0.030384423,-0.0086029535,-0.05038713,0.055712234,-0.04423417,0.021647224,-0.0056411433,-0.009458774,0.0024164342,0.019566406,-0.027050639,0.00039504786,0.012317102,-0.001890636,0.002279391,-0.03331547,-0.023873476,-0.012798152,-0.0017619833,-0.028258856,0.0036526194,0.010644617,-0.02246389,-0.017608646,-0.028594472,0.018772114,0.009274186,-0.026245162,-0.004357413,-0.013939246,-0.0018458873,0.008882633,-0.017239468,-0.00038036465,0.0062368615,-0.01051037,0.0025087285,0.013480571,0.006231268,-0.004002219,0.03027255,-0.0046426863,-0.0248132,0.0048300717,0.016691295,-0.030652916,-0.00036183588,0.024522332,0.02358261,0.01021391,-0.03470268,0.045778006,0.026066165,-0.06023186,0.0041252784,0.027498128,0.03881957,0.001753593,-0.03246524,-0.0101803485,0.015606138,0.035217293,0.020103391,-0.014274862,-0.018839238,0.0023716856,0.006936061,0.00047860222,0.004144856,0.009469961,0.047925945,-0.02074106,0.010342563,-0.036291264,-0.003353362,0.013234452,0.027900865,0.00044713824,-0.029444698,0.012697467,-0.010655804,0.030071182,-0.012082172,0.019320287,-0.02369448,0.028102236,-0.019297913,0.0028974838,0.031861134,0.00740033,0.017698143,0.032666612,-0.0022486264,-0.00726049,0.016612986,0.0117353685,0.010409686,-0.0010341164,0.032219123,-0.03235337,0.0007663229,-0.026334658,0.0030541045,-0.0016025658,-0.030183055,0.010739708,-0.013547694,-0.012395413,0.03557528,0.019443346,0.031726886,0.0020458584,0.009772016,-0.009967791,0.0432497,-0.007635261,0.013167329,-0.023448363,0.000040815783,0.0034652338,0.0035127795,0.04855243,0.030921409,-0.02939995,-0.025931919,0.027431004,-0.009805577,-0.034456562,-0.010527151,-0.000039919934,0.017485587,-0.03566478,0.028325979,-0.038551077,-0.023761604,-0.018693805,-0.04284696,-0.034478936,-0.04535289,0.016076,0.030764788,0.00893857,-0.01122635,0.0197454,0.0038567858,-0.01164587,0.014823034,0.019096542,-0.0077415393,0.003644229,-0.0063207657,-0.00023615471,-0.028482601,-0.02142348,0.035418663,0.030026434,0.020774622,-0.039871164,-0.015539015,0.014375546,0.034411814,-0.04546476,-0.0135924425,0.010890735,0.0022080727,-0.028460225,0.015024404,0.000491887,-0.010275439,0.036313638,0.0063319528,0.02772187,0.0035910897,-0.05177434,0.013872122,-0.00529434,0.0026136085,-0.0019269944,0.0238511,-0.027632372,-0.000007483622,0.015897006,0.007791882,0.030899035,-0.007154212,0.007920534,0.018414125,0.0005002774,-0.016087187,0.021680785,-0.0070814947,-0.0117241815,0.023761604,0.049760647,-0.0431602,0.013872122,-0.027923241,0.014442669,0.0038288177,-0.01001254,0.007954096,-0.03593327,0.0051209386,-0.034859303,0.068465635,0.016769607,-0.005397822,0.010102037,-0.039468426,-0.030227803,-0.03338259,0.007277271,0.050118636,-0.01009085,0.020069828,0.013995182,-0.028214108,-0.017854765,-0.0031967412,-0.014733537,-0.014409108,0.0053894315,0.00578378,0.016948601,-0.015807508,0.0038707696,0.009251811,-0.010845986,-0.052982558,-0.027878491,0.0058956523,0.02613329,0.006606039,-0.018883986,-0.03785747,0.0060578664,-0.029690817,-0.04635974,-0.026558403,-0.018089695,-0.016299743,-0.01691504,-0.04891042,0.019051794,-0.010627836,-0.030988531,-0.014442669,-0.01037053,-0.05105836,0.000059781578,0.013480571,-0.00058767735,-0.018223941,-0.0072716773,-0.019331474,0.008821104,0.0047517614,-0.026782146,-0.032979853,0.0048804143,0.020081017,-0.031413645,-0.0057669994,0.008228183,-0.007484234,0.007942909,0.018246315,0.014744724,0.009895074,0.013368699,-0.027073013,0.07311951,0.003630245,-0.001445945,-0.018168006,0.047657453,0.018201567,-0.012831713,0.0023367256,0.021278046,0.008625328,0.020192888,0.012596782,0.03235337,0.013547694,-0.0012543643,-0.019778961,-0.055712234,0.00889382,-0.007775101,-0.05799442,-0.023045624,0.021445854,-0.012026235,0.00007503287,0.026043791,-0.020729873,-0.0037337265,-0.0156397,-0.039983038,-0.03937893,-0.003378533,0.07916059,0.021949278,-0.024276216,0.016982162,0.017765267,-0.025708176,0.024276216,0.02812461,-0.003353362,0.0015004827,-0.033740584,-0.04738896,-0.035776652,0.0012298924,0.0025199158,0.01058868,0.003895941,0.03546341,0.021994026,0.012697467,0.0039854385,0.008216995,0.032577112,-0.015181025,0.011992673,-0.0019787352,-0.020796997,0.0059739626,0.0055572395,0.015572577,-0.035351537,0.016769607,-0.00606346,-0.021524165,-0.005302731,0.019991519,0.034523685,-0.03906569,0.0076967906,-0.031547893,0.045308143,0.02588717,-0.040788516,0.014409108,0.014767098,-0.026558403,0.016724858,0.020036267,0.013860935,-0.027945615,0.008630921,-0.0066451943,0.0026611541,0.010845986,0.049492154,-0.009626582,-0.0067906277,0.0049503343,-0.014129428,0.033606336,0.0051489067,0.021647224,0.018716179,0.028057488,-0.04152687,-0.01114804,-0.018414125,0.011903176,0.008513456,-0.010890735,0.007254896,0.042309973,-0.014711162,-0.014297236,-0.024186717,-0.0023073591,-0.03470268,-0.011120073,0.011802492,0.029198581,-0.013715502,-0.0051097516,-0.0017172345,0.008530237,0.024947446,0.01778764,-0.02441046,-0.013547694,0.004715403,0.014107054,-0.00879873,-0.042824585,0.021613661,0.017586272,-0.019219602,-0.03239812,0.02014814,0.0012026236,0.002894687,0.00995101,-0.03286798,0.040945135,-0.036045145,0.013760251,0.0023395224,0.015594951,0.023493111,0.057233695,0.0047209966,0.006550103,-0.005227217,-0.030787162,-0.03801409,-0.0151698375,-0.013368699,0.042712715,-0.009620989,-0.008731606,0.027274383,-0.0064326376,-0.002635983,0.014397921,0.04667298,0.06721267,-0.019566406,-0.00031236748,-0.03418807,0.007847818,0.01994677,0.0066451943,0.02628991,-0.012563221,0.0027772214,0.01099142,-0.051371604,-0.018671429,-0.016702482,0.013782625,0.020405445,0.0002548583,-0.0007579325,0.0015969722,-0.019096542,0.023157496,0.005115345,0.018369375,0.029109083,0.034411814,-0.00837921,-0.022956125,0.016959788,-0.007831037,-0.042667963,0.035776652,-0.021613661,0.04448029,-0.019174853,-0.017485587,-0.0073891426,-0.0011949324,0.02369448,0.0030009653,-0.016870292,0.021322794,0.021680785,0.00001390752,-0.018984672,-0.034053825,-0.021199737,0.02796799,-0.019778961,-0.008972131,0.025618678,-0.030473921,-0.025685802,-0.017586272,0.045129146,0.0061977063,0.029265704,-0.016892666,0.048373435,-0.046493985,-0.019711839,0.019532844,0.032152,0.021244485,-0.015281709,0.010314594,0.012272353,-0.044010427,-0.004337835,-0.020774622,0.0059348075,0.027833743,0.01515865,0.005134923,0.005025848,0.037588976,0.012194043,0.040699016,0.028930089,0.00009002197,-0.028236482,0.014453857,0.021524165,0.025820049,0.03143602,-0.01184724,0.0010718732,-0.049134165,-0.034053825,-0.025148816,-0.0074618594,0.03264424,-0.016769607,-0.022654071,-0.0110976985,0.026715023,-0.00275205,-0.008491081,-0.027341506,-0.03383008,-0.03239812,-0.032733735,-0.015539015,0.037678476,-0.019219602,-0.020383071,-0.0587999,-0.008110717,0.004270712,0.034971174,-0.030473921,0.0076688225,0.018604307,-0.06551222,0.012865275,0.0017284218,-0.038439203,0.014095866,0.032800857,-0.004955928,-0.002363295,-0.012719842,0.0014214731,-0.025797673,-0.022217771,-0.011891989,-0.03011593,0.018145632,-0.0076016993,-0.0020486552,-0.008832291,0.029511822,-0.007775101,-0.0074227042,-0.06519897,0.03470268,0.00816106,-0.023403613,-0.016736045,0.014733537,-0.013715502,-0.047567956,0.0073667686,0.0057502184,-0.0012816332,-0.022598136,0.0008306493,-0.018358188,-0.045621384,0.007886973,0.024074845,-0.022475077,0.02904196,0.0056411433,0.0030764788,-0.027386256,0.014453857,0.0019074169,-0.0016962586,0.028482601,-0.08233776,0.0019759384,0.010946671,0.03705199,0.009190281,-0.02050613,-0.041146506,0.014677601,0.050297633,-0.015818695,0.013737876,-0.012999522,-0.019320287,-0.0035491379,0.055667486,0.023828726,-0.047567956,0.00802122,0.030294927,0.01268628,0.007103869,0.025059318,0.018973485,-0.022866627,-0.014677601,-0.00036917746,0.04060952,0.000020735642,0.02389585,-0.0027338709,0.006208894,-0.013167329,0.006477386,-0.06023186,0.031928256,-0.0248132,0.011780117,-0.008714826,-0.057502184,-0.027990364,-0.00040169025,0.004813291,0.013066645,0.038215462,0.029914562,0.00522442,-0.0039295023,0.009788796,-0.059336886,0.037275735,-0.009565053,-0.010778863,0.0034316722,-0.009290966,-0.010241877,-0.008642109,0.0060970215,-0.026222786,-0.026916392,0.0059348075,-0.016020063,-0.014901345,-0.019969145,-0.041280754,-0.007204554,-0.022810692,0.016702482,-0.021602474,-0.022687633,-0.006829783,-0.0021129816,0.02995931,-0.0042483374,-0.0077695074,-0.025797673,0.022486264,0.01599769,0.010023727,0.049850143,0.017239468,0.026312284,-0.019286726,0.025663426,0.039356556,-0.018056134,0.021099051,0.0068633445,-0.0020108984,-0.036537383,0.009402838,0.0070814947,-0.036246516,-0.017989011,-0.0061641447,-0.0011844443,-0.011399752,-0.0010061484,0.0238511,-0.011813679,0.05405653,-0.0095538655,-0.023761604,-0.0238511,0.032487616,0.00117955,0.006466199,0.023000874,-0.02541731,-0.004030187,0.020573253,-0.018682618,-0.0006789229,0.007014372,-0.010202723,0.02445521,0.005062206,-0.00020906072,-0.0053614634,-0.016165499,-0.011388565,0.033606336,0.026782146,-0.019051794,-0.039199933,-0.0009683916,0.009005693,0.006371108,-0.018414125,-0.0035211698,-0.03183876,0.006628413,0.006024305,-0.030406797,-0.022508638,0.018850425,0.03072004,0.011164822,0.012294728,0.012719842,0.000070793976,0.028974837,-0.011533999,0.04396568,0.031771637,0.01994677,0.022497451,0.0026443733,-0.00083274685,0.0060019307,0.029735567,-0.040676642,-0.007803069,-0.0042371503,0.024768451,0.013558881,0.027811369,0.0012620555,-0.0029534197,0.002894687,-0.0034540466,0.020752247,-0.0477917,0.009358089,0.039155185,-0.05038713,-0.016467553,-0.0018696601,-0.011746556,0.04049765,0.004589547,0.02262051,-0.007842224,0.01113126,-0.019566406,0.025663426,0.0023059607,-0.036246516,-0.04783645,-0.00002715954,-0.0017591865,0.01990202,0.011903176,-0.007970877,-0.00012428276,-0.020550879,0.04224285,-0.0031212275,-0.026424157,0.03235337,-0.01058868,0.018995859,-0.01735134,-0.0025045334,0.004340632,-0.01994677,-0.011187196,-0.00045692702,-0.004743371,-0.032375745,-0.042757463,-0.002615007,-0.014979655,-0.0112711,-0.006734692,-0.0030652916,0.01874974,0.027319131,-0.033785332,-0.012227605,-0.020528505,0.039915916,0.005369854,-0.00036952706,0.007663229,-0.029578945,-0.009151126,-0.023470737,0.011914363,-0.018358188,0.013357512,-0.048373435,0.03051867,-0.039020937,-0.008373616,0.014084679,0.02358261,0.020685125,-0.017921887,-0.013995182,-0.0028723124,-0.0077974754,-0.008015626,-0.019644715,0.009727267,-0.005990743,-0.020550879,0.020271199,-0.061216336,-0.009688111,0.029422324,0.0019060185,-0.011522812,-0.0022066743,-0.03347209,0.015684448,0.032621864,0.01679198,0.016411616,-0.0066731623,-0.012462536,-0.022217771,0.01946572,0.0019088152,0.010801237,0.006578071,0.009945417,-0.00754017,-0.03454606,0.036761124,0.03358396,-0.025976669,0.016221434,0.005299934,-0.017776454,0.018179193,0.005772593,0.004200792,-0.0002541591,-0.009492336,0.02074106,0.0067962212,-0.0028275638,0.020953618,-0.020975992,0.026558403,0.02173672,0.025820049,-0.0051964526,-0.015292897,0.016389241,-0.03953555,0.013245639,-0.015527828,0.019812524,-0.012921211,0.00040658464,-0.028751092,0.011041762,0.010303407,0.010465622,-0.008138685,-0.024030097,-0.008071561,-0.02329174,0.03924468,0.0126639055,-0.01009085,0.008015626,-0.0037253362,0.021826219,0.015304084,-0.039155185,0.014442669,-0.014017556,0.015371207,-0.006969623,-0.017944261,-0.008742793,0.046493985,-0.006885719,-0.004351819,0.011142447,0.0012865275,0.022687633,0.015002029,-0.03454606,0.004813291,-0.0312794,-0.007914941,-0.014722349,-0.0032023347,-0.0058788713,-0.035284415,0.0030065589,-0.02541731,-0.041996732,0.007937315,0.024343338,0.013983995,-0.0013893099,-0.01120957,0.012182856,-0.010829206,-0.009632176,0.0021171768,-0.0045280172,0.029019585,-0.012943585,0.0065053543,0.008916195,-0.016747233,-0.016467553,0.012115733,0.014644039,-0.0051684845,0.006231268,-0.025215939,-0.0057949675,0.04895517,-0.012428975,-0.025708176,-0.018760927,-0.023470737,0.011416533,-0.016165499,-0.022956125,-0.025999043,-0.029578945,-0.008994506,-0.0035295603,0.054548766,0.030093556,0.019286726,-0.0238511,0.009039254,0.00853583,-0.035015922,-0.0002730375,0.035217293,0.033449717,0.021691972,0.010722927,0.019991519,0.0031743667,0.023604983,-0.01156756,0.02173672,0.022251332,-0.018201567,0.04025153,0.020964805,-0.010398499,0.012261166,0.034971174,-0.0064829797,0.015102714,-0.0027492533,0.015885819,-0.041661117,-0.005481726,-0.015013217,0.02014814,-0.0025338999,-0.021971652,0.0082785245,-0.009660143,0.0008089741,-0.015516641,0.016467553,0.000966294,-0.025283063,-0.00069115893,-0.017049287]},{"id":"class-MessageFlagsBitField","type":"class","source":"main","text":"Class: MessageFlagsBitField\nProperties: Flags: { readonly SuppressEmbeds: number; readonly SuppressNotifications: number; readonly VoiceMessage: number; readonly CompactAttachments: number; }","meta":{"url":"/docs/classes/MessageFlagsBitField"},"embedding":[-0.013432574,0.0014380866,-0.028267244,0.03169737,0.00049370655,0.009921077,0.0057930322,-0.026439512,0.007899305,-0.02761627,0.018828137,0.0010296637,0.024085995,0.037856575,0.02956919,0.0058869226,-0.0037243157,0.029644301,0.026790036,0.012712749,-0.009101101,0.051426854,0.013657911,0.020142602,-0.018352427,-0.008118383,-0.01095387,-0.014471627,0.034176074,0.013319906,0.03730575,-0.026764998,0.03753109,-0.008099604,-0.007943121,-0.0055082315,0.015372974,0.030345349,-0.008375016,0.009482922,0.0038432435,-0.0035490538,-0.03567832,-0.0048885555,0.0048697777,0.049824458,0.013507687,0.008713021,-0.02287168,0.039609194,-0.031897668,0.02626425,0.042488497,0.021932777,0.006503469,0.039709345,0.0072858883,0.008450128,0.025838614,-0.003558443,0.03277398,-0.025838614,-0.04499224,-0.00018015204,0.0037055376,0.0224836,-0.04526765,0.050825957,0.042087898,0.022408487,0.035503056,-0.0038307249,-0.006309429,0.04661967,0.01743856,0.016124096,0.009539256,-0.0034176074,0.008349978,-0.04681997,-0.010140154,0.027841607,-0.03324969,0.010302897,-0.002782283,0.018928288,-0.040936176,0.006096611,-0.050475433,-0.02781657,-0.04644441,-0.0071231453,-0.054831944,-0.031947743,-0.03645448,-0.03500231,-0.027290784,0.00012724093,-0.029243702,-0.029669339,0.09288882,0.008199754,-0.053229548,0.018915769,-0.00024039832,-0.01822724,0.008518981,-0.0032047892,-0.03209797,0.026439512,-0.06519743,0.0036085176,0.02724071,0.02520016,0.030620761,-0.020668387,-0.012068035,0.0067663617,0.018915769,-0.0020702814,-0.030069938,-0.020305345,0.018389983,0.026990335,0.030796023,0.0035052383,-0.00065214647,-0.03199782,-0.015372974,0.0009342086,0.008180976,0.016499657,0.06039025,-0.0011321607,-0.02781657,0.0043314733,0.0003501326,0.02946904,-0.08267355,-0.030570686,0.005505102,-0.009720777,0.024949785,0.014546739,0.028767992,0.024561705,-0.050876033,0.0061717234,0.02413607,0.044341266,0.00055708253,0.01569846,-0.023923252,0.0061310376,-0.010002448,-0.01725078,0.044441413,0.0036022584,-0.017288337,-0.021469586,-0.009201251,-0.029118516,-0.017150631,-0.011235541,0.0060496656,0.008493944,0.045818474,-0.026714923,-0.014772076,0.0075174845,0.025262754,-0.015748534,-0.007104367,-0.06339474,-0.03082106,0.02394829,0.026038913,0.0049980944,-0.055783365,-0.028642805,0.022859162,0.04591862,-0.0014490405,-0.075913444,-0.022471081,-0.012812898,0.00726711,0.009194992,0.022020409,-0.030170087,-0.0030561297,0.026314326,0.03703034,0.07045529,0.00031081605,0.0030545648,-0.004062321,-0.0053173215,-0.021657366,-0.08042018,-0.029418964,-0.0055426583,0.034751933,-0.01773901,-0.016912775,-0.04729568,0.011310653,0.02180759,-0.00038240742,0.022796568,0.04449149,-0.0024208052,-0.015873723,0.0063438555,-0.014772076,-0.0064784316,-0.02811702,-0.034251187,-0.04681997,-0.012212,-0.0031468903,-0.026714923,0.06284392,-0.010772348,0.0017009795,0.03935882,-0.023510134,0.006534766,-0.03480201,0.0011431145,-0.03139692,-0.015335417,0.0038119466,-0.0343263,-0.03314954,-0.006716287,-0.03450156,0.046068847,0.033600215,-0.038131986,0.0016149133,0.0006674036,0.019842153,0.014233772,-0.026139064,0.017826641,0.017501155,0.008281126,-0.01735093,-0.013094569,0.020142602,0.012343447,-0.0033331062,-0.012299631,-0.0033956997,0.020906243,-0.0047258125,0.046744857,0.0007683357,0.012268335,-0.0057273093,-0.08402557,-0.03224819,-0.06174227,-0.0008575315,0.001735406,0.08011974,0.0048635183,-0.030195124,-0.01871547,-0.00639706,-0.00018474874,0.03294924,0.035928693,-0.0032423455,-0.036654778,-0.014884744,-0.021194173,0.019792078,0.013920804,0.009739555,-0.002353517,-0.026589736,0.018915769,-0.012493671,-0.016562251,0.036429442,0.01598639,0.033274725,-0.009482922,0.00084736006,-0.020067489,0.0521279,-0.026389437,-0.023009386,0.022934273,0.009864742,-0.06464661,0.04867274,0.021469586,0.028617768,-0.010528234,0.0019106679,-0.04243842,0.003286161,0.05518247,0.05097618,-0.019416517,-0.013194718,-0.053279623,0.010509456,-0.008994692,-0.07280881,-0.048197027,-0.069954544,0.0013762756,0.025112528,0.026965298,0.036654778,-0.009176213,0.0045787175,0.033224653,0.010108857,-0.052077826,0.0021094023,0.018202202,0.025938764,0.048096877,0.011072798,0.0069040675,-0.02734086,0.008443869,0.008068307,0.033274725,0.008944618,-0.033675324,-0.034301262,0.016587289,-0.064796835,0.016925294,0.057535984,-0.009777111,-0.0071481825,-0.018339908,-0.011104095,-0.02926874,-0.07305918,0.021369435,0.015548236,-0.027015373,-0.02673996,0.008944618,-0.009194992,-0.052678727,-0.011949107,-0.041612186,0.021569734,-0.05573329,-0.018051978,0.05523254,-0.033500064,0.040861063,-0.029494077,-0.017889235,-0.02906844,-0.0006490168,-0.06114137,-0.009157435,0.005379915,-0.030670835,0.010490677,-0.0047258125,0.019616816,-0.0040247645,0.027741458,-0.04301428,0.013144644,-0.03440141,0.00011217936,-0.039734382,0.028943254,0.031346846,-0.02075602,0.001420091,0.0096519245,-0.006281262,-0.03662974,0.030495573,-0.040134978,0.024286294,0.057636134,0.024436519,0.015585792,0.010647162,-0.0035615726,0.058487404,-0.014146141,0.048848,0.0051921345,-0.012725267,-0.011811402,-0.006860252,0.016987888,0.07110626,0.02714056,-0.008124642,-0.027015373,0.0050325207,0.059839427,0.005498843,0.07516233,-0.0087067615,0.02839243,-0.006447135,0.030195124,0.0024004623,0.0012135323,-0.009520478,0.008030752,-0.01638699,-0.004760239,0.0003209875,-0.0063219476,0.014621851,0.02666485,0.011454619,-0.008644168,-0.057886507,0.024060957,-0.05147693,-0.05728561,-0.0035521835,0.024912229,0.037631236,0.04962416,-0.06985439,0.004991835,-0.02481208,-0.0014560822,-0.00006943971,-0.020192677,0.015635867,-0.0059870724,0.0137580605,0.015072525,0.009051026,-0.008080826,-0.013207237,0.049574085,-0.040861063,-0.07100611,-0.028717916,-0.08718029,0.0128567135,-0.07145679,0.008512721,0.032824054,0.012550005,0.029218666,-0.0070229955,-0.0061498154,0.014083547,0.026289288,0.042914134,-0.008155938,-0.018064497,-0.043314733,-0.019116068,0.042763907,0.040861063,0.0006204585,-0.0003245084,0.028142057,0.06740072,0.021970334,-0.0298446,0.052879024,-0.04817199,0.00070808944,-0.02084365,0.020806093,0.0043439916,-0.008750577,-0.03277398,-0.0416873,0.06549788,0.07416083,0.00784923,-0.0072608506,-0.02626425,-0.020029934,-0.024686893,-0.00012724093,-0.0132698305,-0.0008277996,-0.008988433,-0.024186146,-0.020480607,0.06920342,-0.063244514,-0.005339229,0.0065911,0.02510001,-0.038732883,0.07896801,0.060640622,-0.025125047,0.0061341673,-0.05202775,-0.0034551634,0.025375422,0.018077014,-0.04176241,-0.005505102,0.009808408,-0.018890731,0.00061380793,0.057936583,-0.022984348,-0.04061069,-0.01231215,-0.0034176074,0.013820654,-0.0009475097,0.0025037418,-0.024261257,-0.04469179,-0.0060527953,-0.012744045,-0.006415838,0.005736698,-0.025813576,0.012618858,-0.034351334,-0.014847188,0.000034744306,-0.016537214,0.004991835,0.015072525,0.0016305618,-0.01007756,0.0075300033,0.006087222,-0.0053955633,-0.04313947,0.006872771,-0.015347936,0.040936176,0.019554222,0.017200705,-0.0073797787,-0.004782147,0.014709482,-0.018740507,0.033575177,0.0042782687,0.014947338,0.013620355,0.0005003571,0.026439512,0.0073985565,-0.059288602,-0.014809632,-0.0006732718,0.0036241661,-0.011179207,-0.0056928825,0.021945296,0.029343853,0.010121375,0.007974417,0.032298267,-0.037455976,0.023522653,-0.022358414,0.006365763,-0.017488636,-0.01803946,0.02393577,0.02520016,0.022258263,-0.018077014,0.020367939,0.0061623342,-0.019278811,0.01231215,0.045442913,0.006697509,-0.021144098,0.02394829,-0.007811674,-0.0015538847,0.014371477,0.008093345,-0.012199481,0.004196897,0.011035241,0.007242073,-0.023785546,0.014221253,0.013257313,0.00630004,-0.040009793,0.016099058,0.031171585,0.014797113,0.000108169465,-0.043439917,-0.012437337,0.023021905,-0.012787861,0.037330788,-0.04043543,-0.04827214,-0.02568839,-0.016211728,0.008775614,-0.017476117,0.021356916,0.01618669,-0.02819213,0.00882569,-0.028091982,0.020730982,-0.032398418,0.04641937,-0.02501238,-0.043289695,0.024874674,-0.005680364,0.0037650017,0.0008575315,-0.004544291,-0.009752074,-0.008068307,-0.025938764,0.010090079,0.022395968,-0.0039621713,-0.031922705,0.055683214,-0.0054206005,0.035027348,0.0133449435,0.039734382,0.004090488,0.027441008,-0.0025757242,-0.012531227,0.0005062253,0.013006938,-0.015598311,0.008975914,0.0030874265,-0.02295931,-0.02859273,-0.023409985,0.033099465,-0.033850588,0.031446997,-0.017288337,0.014421552,0.013332425,-0.008224792,0.01075357,0.013632873,-0.038682807,-0.008925839,-0.021043949,0.009176213,0.01792679,0.01347013,0.00852524,-0.0017338411,-0.014947338,-0.016224246,-0.01996734,-0.002461491,0.00552388,0.0168627,-0.00038807996,0.020117564,-0.044666752,-0.031021358,-0.023122054,-0.017037962,-0.005730439,0.000010091986,0.021544697,-0.0031453255,0.020931281,0.011679955,0.0052077826,-0.028742954,0.007091848,0.03287413,0.040685803,-0.023535172,-0.009251325,-0.03500231,-0.006312559,0.008944618,-0.05893808,0.01579861,0.017012924,-0.00049135933,-0.017338412,-0.0022267653,0.020230234,0.0063219476,-0.007298407,0.0075300033,-0.002588243,-0.0033080687,0.013144644,-0.0164621,-0.016161652,0.002305007,0.051827453,0.030295275,0.013420056,-0.0021453938,-0.0070730704,0.03915852,0.024574224,-0.017238261,0.0013175941,0.06574826,-0.016925294,0.019554222,-0.0018793711,0.03149707,0.0008645733,-0.015009931,-0.0025475572,0.041587148,-0.0065159877,0.01783916,-0.0037180565,-0.017263299,0.020931281,0.017751528,0.043489993,-0.031547144,-0.018264795,-0.007936861,-0.009545515,0.0020483737,-0.040785953,0.03858266,-0.0046507004,0.0089133205,-0.005098244,0.0023034425,0.029969787,-0.0040372834,-0.009514218,0.014696964,-0.0010766089,-0.009645665,-0.015135119,0.07015484,-0.024449037,-0.025074974,-0.0378065,0.00055317045,-0.03450156,-0.03632929,-0.010672199,0.02646455,-0.041987747,0.028567692,-0.042763907,-0.013820654,0.044766903,-0.016637363,-0.0020812352,-0.056033738,-0.056935087,-0.019141106,0.010509456,-0.02335991,-0.02819213,-0.015623348,-0.031547144,-0.045618173,-0.013457611,-0.0335251,-0.016349433,-0.0011071232,-0.0024755746,0.010559531,-0.02334739,-0.007930602,0.017200705,0.0062687434,0.027541159,-0.06880282,0.018815618,0.036429442,-0.011767586,-0.03450156,0.021194173,-0.019153623,0.022233225,-0.00091856025,-0.031547144,-0.005398693,0.014847188,0.024398962,-0.020180158,0.033875626,-0.007648931,0.027090484,0.019153623,0.030220162,-0.014358958,0.020568239,0.016286839,-0.0209438,0.044641715,0.0152352685,0.007980676,-0.026890185,0.023660358,0.034301262,-0.018778063,0.021582253,0.012531227,-0.013257313,0.020305345,0.013432574,-0.010108857,0.004422234,-0.0051358,-0.028041907,0.02064335,0.010346713,-0.0069228457,-0.018189684,0.026339363,0.0057992917,-0.0054299897,0.020430531,-0.022558713,-0.0036898893,-0.017100556,0.004719553,-0.022934273,-0.008687983,0.0012855149,0.04867274,0.007611375,-0.039909642,-0.012180704,-0.01772649,-0.01996734,-0.019792078,0.03207293,0.024173627,0.028993329,0.047245607,-0.04837229,-0.0016227376,-0.00785549,-0.014596814,-0.009927336,0.016912775,-0.009439106,0.013119606,0.0207435,-0.009845964,0.012819157,-0.0040560616,-0.017263299,-0.039984755,0.0048103137,-0.01851517,-0.017088037,0.038232137,-0.02453667,-0.00823105,0.040084906,-0.00949544,0.020705944,0.05147693,-0.019429035,0.051927604,-0.0024208052,-0.021732477,0.006622397,-0.0059150895,-0.028742954,-0.035928693,0.020305345,-0.02229582,-0.0064596534,0.01871547,-0.0113356905,-0.010340453,-0.056935087,-0.014371477,-0.029093478,0.0021594772,0.010584568,-0.0014513878,-0.016812626,0.00027345555,-0.040760916,0.012474893,0.057786357,-0.035878617,-0.0066787307,0.038908146,0.016649881,-0.045668248,-0.021294324,-0.000576643,0.0075613,-0.00581807,-0.024987342,-0.025913727,0.0451675,0.023910733,-0.0075550405,-0.018565245,-0.021094024,-0.007861749,0.036404405,-0.010816164,-0.01937896,0.00008313205,-0.008412572,-0.02005497,0.009201251,-0.054331195,0.012524968,-0.0032767719,0.0151226,0.0222833,0.027691383,0.002995101,-0.0018386852,0.007348482,-0.023134572,0.0052797655,-0.039233632,-0.0047132936,0.007386038,-0.008406313,-0.008256088,-0.047971692,0.031446997,-0.018077014,-0.020705944,-0.0040591913,0.05663464,-0.04005987,0.035803504,0.0021344398,-0.028717916,-0.0067413244,-0.025162604,-0.041136477,0.00013574974,0.02548809,0.07921839,0.009601849,-0.0098584825,0.024499113,0.0072733695,-0.033675324,0.028893178,-0.013808135,-0.023084499,-0.016587289,-0.014183696,-0.010327934,-0.0007683357,0.034151036,-0.022796568,0.043189544,0.026714923,0.024048438,0.011417062,0.0094891805,0.03547802,0.013157163,0.031171585,0.016549733,0.0060747033,-0.0070981076,0.008769355,-0.01871547,0.040861063,-0.0064283567,0.021356916,0.02714056,-0.0043565105,-0.021845147,-0.00348959,-0.0093264375,-0.004547421,0.016424546,0.018590283,0.00008166501,0.025713427,0.004215675,0.026439512,-0.02180759,-0.0020311605,-0.021131579,0.01696285,-0.028167093,-0.007611375,-0.0012886445,0.028667843,-0.008932099,0.0042970465,-0.010133894,0.020205196,-0.025325347,-0.011805142,0.018452575,-0.004572458,0.004741461,0.017701454,0.015548236,0.00044050204,0.012831676,-0.036779966,0.05057558,-0.004077969,-0.013933322,-0.016637363,0.013632873,-0.0020327254,0.016812626,0.0032016598,0.017325893,0.0021000134,-0.0011110354,-0.01956674,0.005195264,-0.017375967,-0.022370933,-0.007586337,-0.0048259622,-0.006212409,0.0009412504,0.004660089,0.00011599366,0.011667436,-0.016937813,0.0112418,0.012099331,0.013057013,0.030871134,0.02307198,0.033775475,-0.030971285,0.019754522,-0.012262075,0.012668933,0.020906243,-0.0023488228,0.0054206005,-0.00097645924,0.03798176,0.0038244654,-0.019691927,0.005930738,0.0298446,-0.0492486,0.017864197,-0.034276225,0.0004706252,-0.051977675,-0.023034424,-0.0033831808,-0.011817661,-0.018690431,0.014696964,-0.015398012,-0.016787589,0.04296421,0.019942302,0.027215673,0.036779966,0.009626887,-0.04178745,0.05302925,-0.0304455,-0.007498706,-0.015135119,0.05050047,0.0109225735,0.0024051568,0.029444002,-0.030345349,-0.00020714551,-0.0060715736,-0.015723499,-0.015660904,0.022421006,-0.03470186,-0.016812626,-0.0028151446,0.019141106,0.0100212265,-0.01522275,0.023497615,0.0036585925,-0.008606612,-0.07551285,-0.0037149268,-0.018202202,0.017288337,0.008187235,0.0008489249,0.025262754,-0.017964346,0.000421724,0.022633824,-0.0039402633,0.0072858883,0.020342901,0.014684445,-0.023597766,0.04043543,-0.004572458,0.0014584295,0.018189684,-0.026489588,0.031722408,0.00785549,0.019441554,-0.015297862,0.004522383,-0.030094976,0.009507959,0.012981901,-0.0131822,0.026314326,-0.037055377,-0.014646889,-0.054331195,0.0604904,0.004390937,-0.0071106264,0.008656687,-0.011054019,-0.013319906,0.017826641,0.0018684173,-0.02578854,0.03965927,-0.0028511358,0.0017870456,0.002384814,-0.006853993,0.0122808525,-0.012055516,-0.004174989,0.019867191,0.027265746,-0.013157163,0.0022502379,0.0034582932,0.025713427,-0.022333376,-0.032573678,-0.018252278,-0.003053,0.001347326,0.019716965,0.006803918,-0.0072858883,0.017851679,0.036479518,-0.0056741047,-0.058487404,0.023535172,-0.03885807,0.0015734452,0.02926874,-0.019829635,-0.033600215,-0.022070482,-0.018152127,0.012812898,0.009608109,-0.032423455,-0.047445904,-0.006447135,0.013107087,-0.034852084,0.044791937,-0.02229582,-0.012449856,-0.029519115,0.003702408,0.006735065,0.048772886,0.000494489,-0.019629335,-0.010872498,-0.01977956,0.006622397,0.00013359809,0.012468633,0.03632929,0.024373924,0.036504555,-0.023397466,-0.006534766,0.044366304,-0.021306843,-0.015423048,0.035703357,0.005348618,-0.014183696,0.0029340722,-0.036880113,-0.04591862,0.008487685,0.0205432,-0.00958933,-0.0020921892,-0.009507959,0.038257174,-0.049574085,0.028993329,-0.00071591366,-0.037481014,0.003470812,0.004544291,-0.003896448,0.02335991,0.013482649,-0.014096065,-0.00037927774,0.021945296,0.016199209,0.007586337,-0.0051326705,-0.005201523,0.025563203,0.0014623416,-0.0040341537,-0.019641854,-0.021081505,-0.00054534624,-0.027165597,-0.018940806,0.030595724,-0.045192536,-0.010935091,-0.02103143,-0.0020123823,-0.008569056,0.008412572,-0.038307246,0.018440057,-0.024561705,0.011398284,-0.009977411,-0.009157435,-0.0029105998,0.0077177836,-0.004149952,-0.0039590416,-0.0016352563,0.026088988,0.014396515,0.014146141,0.02346006,0.00049370655,0.011999182,-0.009363994,0.013933322,0.0000933035,0.0005844672,0.0054925834,-0.019904746,-0.002801061,0.013482649,0.01996734,0.027290784,0.01696285,0.0094891805,0.022032926,-0.008637909,0.008800652,0.0038839292,-0.034726895,-0.0012714313,-0.018790582,-0.003896448,0.0020655869,-0.024098514,0.0063313367,0.004412845,0.026489588,-0.004766498,-0.006735065,-0.0022502379,0.016324395,0.005958905,-0.032598715,-0.014045991,-0.022759011,0.013207237,0.028567692,0.014784595,-0.0042501013,-0.007648931,0.006174853,0.015172674,-0.034526598,0.014709482,0.016587289,-0.014984894,0.019466592,0.009933596,-0.062192943,-0.04767124,-0.019403998,0.0010891276,0.015648386,0.026239213,-0.0022142464,-0.030295275,-0.0032799016,-0.015272824,0.008011973,0.010709755,0.015836166,-0.010672199,-0.034476522,-0.008700502,-0.008349978,0.0072232946,0.007817933,0.04777139,0.034025848,0.011285615,-0.03264879,-0.008831949,0.010071301,-0.019729484,0.01114791,-0.018452575,-0.012042997,-0.022859162,0.017037962,-0.04243842,-0.005351748,-0.00494489,0.013733023,-0.035528094,0.0058024214,0.008850727,-0.0047445903,-0.01124806,0.0032204378,0.029218666,-0.04323962,0.0100212265,0.042288195,-0.03743094,-0.0070042172,-0.009451625,0.019303849,-0.0089571355,0.051527005,-0.04584351,0.0242237,0.003761872,-0.027891682,0.020593274,-0.017889235,0.00842509,0.00084970734,0.032223154,0.0027713291,-0.015285343,-0.022045445,-0.028217169,0.0044816975,-0.048797924,-0.028467543,0.013883248,-0.013257313,0.012587561,-0.011079057,0.022608787,0.016537214,-0.026439512,0.015197712,-0.0143339215,-0.0072858883,-0.02606395,0.011010204,-0.005370526,0.009989929,-0.027641308,0.0013825349,-0.013395018,0.04644441,-0.018051978,0.018402502,0.01745108,-0.02560076,-0.0022956182,0.0037837797,0.0090322485,-0.022608787,-0.022533676,0.007442372,0.007886786,-0.005511361,-0.0059651644,0.027165597,-0.02956919,-0.032173082,-0.0058744038,0.019040955,0.036379367,0.023635322,0.016987888,-0.010190229,0.03277398,0.004419104,-0.013082051,-0.011617362,-0.018652875,-0.004212545,0.00029399403,-0.003924615,-0.015823647,0.0343263,-0.0003689107,-0.045217574,-0.005514491,0.018377464,0.0029638042,0.008900802,-0.0026774388,0.010809905,-0.02936889,-0.021594772,0.019842153,0.017288337,0.009946113,-0.0027713291,-0.0006016804,-0.035152532,0.0038463732,0.005514491,0.008969654,-0.005311062,0.011992923,-0.01095387,0.01803946,0.03159722,-0.01250619,-0.043690294,0.026589736,-0.0066787307,-0.011329431,0.043865554,-0.021557216,-0.010384269,0.012024219,0.030320311,0.03227323,-0.023147091,0.014959857,-0.01270023,-0.034551635,0.042313233,-0.0074298535,-0.011054019,0.0025272144,0.009144916,-0.003693019,-0.011054019,-0.024636818,0.0037962983,-0.045392837,0.03400081,0.047546055,-0.01996734,-0.0042907875,0.030946247,-0.007423594,0.019466592,0.005379915,-0.0011039936,0.0054425085,0.01230589,0.027165597,0.040911138,-0.0044253636,0.028342355,-0.03915852,0.017200705,-0.022270782,-0.008381275,0.03480201,0.036880113,0.024474075,0.020718463,0.029744452,0.010678458,0.034927197,-0.0416873,0.014096065,-0.010960129,-0.0038056874,0.0015249351,0.027290784,-0.023885695,0.038106948,-0.013945841,-0.026815074,0.066699676,0.011573546,-0.033975776,-0.000051835275,0.0048103137,0.002489658,-0.012337187,-0.018214721,0.021256767]},{"id":"class-MessageManager","type":"class","source":"main","text":"Class: MessageManager\nDescription: Manages messages for a channel. Access via channel.messages.\nMethods: fetch(messageId: string) -> Promise — Fetch a message by ID from this channel.","meta":{"url":"/docs/classes/MessageManager"},"embedding":[-0.010040068,-0.021975668,-0.0232463,0.0024592439,0.032682296,0.020517567,-0.003077635,-0.012175146,-0.009519318,-0.008035179,0.02391286,-0.007816464,-0.021319523,-0.010904514,0.049867064,0.010618102,-0.028766254,-0.032703128,-0.0067957933,0.03849387,0.03586929,0.043201458,0.020996658,0.039639525,-0.016986879,0.0032807277,-0.04890888,0.0174868,-0.0035332916,-0.020267608,0.07490474,-0.0061084027,0.019517727,-0.04653426,0.050741922,0.031932417,-0.021069562,0.00822265,-0.05536619,0.0122168055,-0.02476689,0.026204161,0.00410091,-0.030724276,-0.009081888,-0.009290188,-0.0057074246,0.03720241,0.04757576,0.032224037,-0.027537283,-0.00984739,0.010081729,0.061323572,0.03551518,-0.03224487,-0.034577828,0.0151017625,-0.006254213,0.008529892,0.0050721094,-0.021027902,-0.032598976,0.0037337807,0.010831609,0.028391315,-0.01654945,0.013779056,0.02395452,-0.0017458159,0.002659733,0.014466447,0.011373189,-0.038952135,-0.0040201936,0.010237954,0.0027912224,0.018934486,0.0471175,0.000081041784,0.0041477773,-0.00025288944,-0.06065701,0.0045956224,-0.041993316,-0.021996498,-0.026516613,-0.014685162,0.028891234,-0.014653917,-0.015372553,-0.003814497,-0.06969724,0.0028276748,0.022038158,-0.04790904,-0.029078705,-0.009946333,-0.019288596,0.021996498,0.054532986,-0.031765778,-0.027828904,0.0069936784,0.004363889,-0.024329461,-0.012091825,0.006649983,-0.08848591,-0.02318381,-0.05694927,-0.032494828,0.031599138,0.048658922,-0.024329461,-0.0187366,0.040201932,-0.026495783,0.02297551,0.05090856,-0.06482302,0.015247573,0.049992044,0.018351246,0.014893463,-0.02468357,-0.00020911384,0.012508426,-0.07323834,0.028495464,0.04578438,0.01636198,0.00412174,0.02418365,-0.028224673,0.026120842,0.012498011,-0.028662104,0.014456032,-0.011591905,-0.006925981,-0.0166536,-0.0027651847,0.0011371888,0.03220321,-0.025704242,-0.03699411,-0.009795316,0.027016534,-0.039743673,-0.028037203,-0.021204958,-0.031911585,-0.007040546,-0.003741592,-0.0059001027,-0.001417743,-0.008946492,-0.020194702,-0.011008664,0.016705675,-0.043451417,0.0030125412,-0.01162315,0.012123071,-0.009040228,-0.005749085,-0.067697555,-0.004160796,-0.010576442,0.014403957,-0.004845583,-0.024287801,0.012935441,0.027224833,0.0098161455,0.007852917,-0.028849574,-0.0355985,0.0085351,0.052158363,0.013466607,0.012591746,-0.055532828,-0.013758226,0.051158525,-0.053991407,-0.0076446165,0.019559387,-0.016622353,-0.02332962,0.044951178,0.027037363,0.045076158,0.006790586,0.01657028,0.0071603185,-0.0017080614,-0.0070665833,-0.03232819,-0.026037522,0.0075300513,0.03943122,0.012956271,-0.0052699945,-0.0112377945,0.006629153,0.023496259,0.010935759,-0.0123522,0.015455873,-0.0058896877,0.0053533143,-0.03553601,-0.050325323,-0.009113133,-0.027620604,0.03318222,-0.0761962,-0.005790745,-0.029078705,0.02374622,0.086402915,-0.04615932,0.0056449347,0.020080136,0.015320478,-0.018528301,0.0012133485,0.0039837407,0.042909835,-0.03732739,-0.041243434,-0.03553601,0.02320464,0.04582604,-0.0035254804,0.067864195,0.014497693,-0.042659875,0.01116489,-0.020434247,0.010633724,0.006295873,0.012550086,-0.009972371,-0.009993201,-0.0141331665,0.033640478,0.05832405,0.053366505,-0.019986402,-0.004395134,-0.021725709,0.024350291,0.028162183,-0.0072228084,0.025350131,0.018434566,-0.006124025,0.0255376,0.021319523,-0.053991407,0.027995544,-0.053033225,-0.025204321,0.053658124,-0.0063531552,-0.03553601,0.03776482,-0.005493917,-0.030807596,0.03584846,0.01742431,-0.016122434,0.0019176635,-0.004022797,0.004077476,0.027391473,0.025641752,-0.014528938,-0.0017458159,0.009998408,-0.021350767,0.014820557,0.041826677,0.045326117,0.0027495623,-0.007826879,0.016622353,-0.025662582,-0.00435087,-0.0042805686,-0.10523325,0.03793146,0.050242003,0.07003052,0.03591095,0.060823653,0.07490474,0.013612417,0.017018124,-0.015778739,-0.051366825,-0.0061292327,0.022746379,0.020767527,-0.0141331665,0.02487104,-0.072738424,-0.003278124,-0.002835486,-0.042534895,0.021767369,-0.04686754,0.003153144,-0.0012790933,-0.022079818,0.041972484,-0.0024917908,-0.0004611896,0.0314325,-0.019653121,0.013487437,-0.079487346,-0.051533464,-0.011362774,-0.038952135,0.0004305955,0.062115114,0.03147416,-0.018830337,0.00594697,0.021579899,0.021684049,0.025141831,-0.01734099,-0.0019397954,0.009508903,0.008175782,0.073946565,0.0021793407,-0.012445936,0.020080136,-0.013091666,-0.041493393,-0.043868016,-0.009566186,0.024954362,-0.008321592,-0.01902822,0.001838249,-0.0016117226,-0.08940244,-0.0033484253,-0.0069207735,0.009628676,0.006441683,-0.022725549,-0.031286687,-0.010024446,-0.0055095395,0.00083254976,0.025287641,0.020600887,0.010175464,-0.011800205,0.012654236,0.022038158,-0.020954998,0.0066343606,-0.050450303,0.0020348323,-0.016788995,0.017601365,-0.042743195,-0.015403798,-0.028203843,0.014643502,0.08202861,0.050533623,0.02216314,0.0022665663,0.0016364582,0.009946333,-0.0054262197,-0.0127688,-0.015976623,0.00006761619,0.05540785,0.01971561,-0.0045747925,-0.03711909,0.007165526,-0.028412145,0.018476225,-0.024287801,-0.037139922,0.0072488463,-0.014070677,0.040181104,0.07157194,-0.023496259,0.03776482,-0.004991393,-0.02326713,-0.041597545,0.01777842,-0.03639004,-0.03353633,-0.002890165,0.016309904,0.002028323,0.04453458,0.0048820353,-0.016164094,0.025725072,0.015351723,0.0155391935,-0.013050006,-0.01802838,-0.063948154,-0.000935398,0.0029917113,-0.0026011486,-0.020028062,0.07398822,0.0048169415,-0.02239227,-0.02474606,-0.07594624,-0.014883048,0.016476544,0.028724594,0.029495304,-0.005702217,0.013529097,-0.029391155,-0.013997772,-0.004593019,-0.006087573,0.016643183,-0.04749244,0.025204321,0.0136332465,0.018184606,-0.0026974874,0.0025139228,0.021194544,-0.0005936555,-0.01732016,-0.043243118,-0.027578942,0.010987834,-0.08290347,-0.017413896,0.019726027,0.02330879,0.0232463,-0.016039114,-0.03657751,-0.010326481,0.016736919,0.010862854,-0.026266653,0.04907552,-0.024412781,-0.0172785,-0.019840593,0.010383763,-0.016736919,0.017518045,0.029474474,0.03430704,0.009316226,-0.036369212,-0.009560978,-0.019132372,-0.0028979762,0.0066864355,0.0073009213,0.01779925,-0.011300284,-0.029141195,-0.04570106,0.06569788,0.010243162,-0.013299966,0.029974395,0.032057397,-0.052200023,-0.000504477,-0.0060927803,-0.006748926,-0.027662264,0.0021142468,0.024308631,-0.011925185,0.03549435,-0.06732262,0.0033015579,-0.033244707,-0.0111024,0.01796589,0.019090712,-0.020392587,-0.021434087,-0.027474793,0.01149817,0.0013396305,-0.00006887738,0.05803243,-0.016351564,-0.026308313,0.03653585,-0.00878506,-0.026724912,-0.015268403,-0.025329301,0.027849734,0.01807004,-0.0021259636,0.029703606,-0.029120365,0.0004855998,0.031036727,-0.01149817,0.015310063,-0.0008227857,0.05919891,0.019621877,-0.048617262,0.022496419,0.016768165,0.027703924,0.00049926946,-0.039951973,-0.0131437415,0.014174827,-0.012893781,-0.019080296,0.02360041,-0.015841229,0.02466274,-0.028078863,0.024996022,-0.045534417,0.08182031,-0.009264151,0.042597387,0.009987993,-0.0034187266,0.018465811,-0.029203685,0.022100648,-0.012758385,-0.011925185,0.002542564,0.04457624,-0.0065093804,0.02487104,0.0039837407,0.03755652,0.016809825,-0.038118932,0.014299807,0.0031869926,-0.03357799,-0.03732739,-0.011779375,0.03576514,0.02341294,-0.008540307,0.0074883914,0.011591905,0.040451895,-0.042826515,-0.0021181523,-0.021725709,-0.02464191,0.040035293,-0.019913496,0.027349813,0.01779925,-0.00474664,0.04449292,-0.019455237,-0.016414054,-0.026058352,0.045117818,0.0044367937,-0.04770074,-0.013612417,-0.0007700597,-0.03447368,-0.01648696,-0.016986879,0.009045435,-0.009909881,-0.019132372,0.012456351,0.029307835,-0.031661626,-0.0051918817,0.03743154,0.027204003,-0.008300762,-0.04599268,-0.03524439,0.0035072542,-0.018767847,0.024225311,-0.013737396,-0.062073454,-0.0174868,-0.0077748043,-0.008467402,0.01166481,0.051700104,0.055907767,-0.01877826,-0.012977101,0.017559705,0.0047752815,0.014362297,0.013768641,-0.0003550867,-0.01237303,0.0024436214,-0.029016215,0.08956908,0.016132848,0.03524439,-0.0019879648,0.00428838,0.015903719,-0.008217442,-0.00039544486,-0.012831291,0.020902922,0.04707584,0.0064677205,-0.010789949,0.024433611,0.0024436214,-0.029641114,0.030661786,-0.00828514,-0.007321751,-0.0073009213,-0.05103354,-0.0052908245,0.01779925,-0.01782008,0.00905585,-0.020111382,-0.030016055,0.03797312,-0.019174032,0.018580375,-0.024954362,0.061323572,-0.0045982264,0.026016692,-0.0127167255,-0.005561615,-0.004264946,0.008837135,-0.0011469529,0.028099693,0.039493714,0.0042597386,0.03374463,-0.009930711,0.0005116373,-0.003236464,0.003968118,0.00010805572,0.009279773,0.023038,-0.030474316,0.013477022,-0.0145914275,-0.01717435,0.07336332,-0.021309108,0.005178863,0.0013695736,0.03607759,0.04595102,0.0023694145,-0.030182695,0.015164252,-0.020757113,-0.028849574,-0.029891076,0.013029176,0.041180946,0.012904196,0.009383923,-0.012935441,-0.01886158,-0.010331688,-0.005999045,0.009909881,-0.02353792,-0.027683094,0.00049568934,0.040389404,0.026683252,-0.06186515,-0.023496259,-0.02230895,-0.0079258215,0.00145029,-0.0058271973,-0.009274566,-0.007701899,0.03420289,-0.027724754,0.02474606,0.0018864184,-0.0054366346,0.022642229,0.028245503,-0.0176951,0.0063479478,0.051908404,-0.0042727576,0.026516613,0.012810461,0.021684049,0.0062125525,-0.017643025,-0.0064781355,0.008561137,-0.018674111,0.0037728369,0.0023668108,-0.0112586245,0.01143568,0.019194862,-0.01650779,-0.050242003,0.0019241729,-0.026808232,0.0030411826,-0.0030802388,-0.01189394,0.01777842,-0.02391286,0.0032208415,-0.03661917,0.008462194,-0.005660557,-0.030307675,-0.000173475,-0.029641114,-0.04582604,0.036848303,-0.02466274,0.008227857,-0.021559069,-0.026683252,-0.032578148,-0.021017488,-0.01636198,-0.013237476,0.027766414,-0.017080614,-0.01224805,0.030745106,0.0040514385,0.0058480273,0.026829062,-0.006514588,0.03597344,0.014716407,0.022517249,0.020267608,0.004085287,0.014008187,-0.015299648,-0.014789312,0.0062021376,0.021454917,-0.010081729,-0.021954838,-0.0127688,-0.04432628,-0.010935759,-0.0341404,-0.026662422,0.0067957933,-0.037098262,-0.017455555,0.0018252303,-0.0429515,-0.009196453,0.00060537236,0.0045982264,0.013039591,-0.023038,0.006165685,0.017205594,0.009269358,-0.009290188,0.019038636,-0.042034976,0.00410091,-0.008977737,0.024954362,0.009784901,-0.0022327176,0.0127167255,0.0063219103,0.038181424,0.013352041,-0.0062906654,-0.063114956,0.057907447,-0.0012484991,-0.025204321,-0.022558909,-0.03374463,0.07173858,-0.022642229,-0.0071915635,0.013216646,0.0015700626,0.011519,-0.025912542,0.05111686,0.004129551,0.012675066,-0.027974714,-0.051783424,0.030286845,0.0056553497,-0.04824232,0.01187311,0.019923912,-0.0067749633,0.020080136,-0.005009619,-0.02243393,-0.039681185,0.014560183,-0.009691166,-0.014539353,0.024891872,0.016882729,-0.02332962,-0.036973283,0.017038954,0.0041686073,-0.028703764,0.03614008,0.02355875,0.0234546,0.019215692,0.03541103,-0.009378715,-0.020975828,-0.01170647,0.01838249,0.031953245,-0.014174827,0.027599772,0.02476689,0.03639004,0.02353792,-0.014008187,-0.0026310915,0.01231054,0.012987516,-0.0029083912,-0.037139922,0.0004855998,0.04765908,0.05678263,-0.03686913,0.00051944854,-0.026579103,0.003499443,0.0037546107,-0.015497533,0.020673793,-0.00453834,-0.03409874,0.026162501,0.02216314,-0.0032937466,-0.0036608756,-0.006285458,-0.012810461,-0.0709887,0.010097351,0.02305883,-0.013851962,-0.02389203,-0.0065406254,0.0013825924,-0.011331529,-0.0017210802,0.03426538,0.017476385,-0.031307515,0.025329301,-0.018142946,0.015153837,-0.021215374,0.0006691643,0.03451534,0.00636357,0.0001975597,-0.0009100114,0.026454123,0.004465435,0.00013710382,-0.008045594,0.012445936,0.02466274,-0.016372394,0.014841388,-0.0060459124,-0.017872155,-0.029078705,0.013799886,-0.022579739,0.028516294,-0.013737396,-0.026704082,0.0051840707,0.005046072,-0.020559227,0.008076839,-0.0164453,0.020746697,0.0004686754,0.04661758,-0.004067061,-0.01890324,-0.015257988,0.015653757,-0.015882889,-0.026766572,0.05944887,-0.025683412,0.0049861856,0.052325003,-0.01667443,0.06040705,0.013258306,0.012977101,0.0066343606,0.0043456624,0.021236204,0.022100648,0.00598863,-0.019632291,-0.022517249,-0.021892348,-0.018653281,0.0008143235,-0.031682458,0.05732421,-0.0028120524,0.025933372,0.038473044,0.02362124,-0.0053637293,0.015174668,0.0462843,0.02293385,0.007597749,-0.0012003297,0.0026115635,-0.003541103,0.019788517,0.030995065,-0.020444661,-0.000014259612,-0.006535418,0.02289219,-0.02226729,0.017643025,-0.0009406055,0.017028539,0.012050165,0.052949905,0.037535693,-0.006077158,-0.019778103,0.03651502,-0.013029176,-0.001176245,0.027266493,0.034557,0.0026284878,-0.0070769987,-0.012508426,0.015757909,-0.014164412,0.0064468905,-0.0036817056,0.02310049,0.008790268,0.029745266,-0.011060739,-0.009961956,-0.0066447756,0.006019875,-0.010842024,-0.030620126,0.028807914,-0.014435202,-0.03276562,0.0054158047,0.00052172685,0.024371121,-0.017955475,0.013789471,0.029953565,-0.013726981,-0.03241151,-0.016872315,0.04745078,-0.010086936,-0.026120842,0.025829222,0.029307835,-0.015726663,-0.027266493,0.026808232,0.014174827,0.010618102,-0.0072592613,0.05690761,-0.013945697,-0.0018174191,0.040889323,-0.021913178,0.027308153,0.040076952,-0.0022340193,0.01671609,-0.013539512,0.027453963,-0.0041998522,-0.014310222,0.010810779,0.014737237,-0.010904514,-0.022704719,0.031036727,-0.0034864242,0.009852598,-0.019434407,-0.007628994,-0.007082206,-0.00112417,-0.03236985,0.019798933,-0.0028016374,-0.0021493975,0.040639363,0.030849256,-0.007394656,-0.0016716089,0.016059944,0.015893303,-0.034494508,-0.009399545,0.014487278,-0.007123866,0.017705515,-0.051200185,0.007207186,-0.045451097,0.0054574646,0.00046737352,0.011060739,-0.00069520186,-0.025829222,0.008191405,-0.037952293,0.0055095395,0.040243596,-0.022642229,-0.038348064,0.03605676,-0.040576875,-0.025641752,-0.007155111,-0.00021269401,0.010649347,-0.013299966,0.016966049,0.008477817,0.009555771,-0.0060927803,-0.017393066,-0.012091825,0.013185401,0.014633087,-0.012612576,-0.03447368,0.03489028,0.021413257,-0.00818099,0.031161707,0.03813976,-0.022642229,-0.030724276,0.023475429,0.025766732,-0.0040826835,-0.015008028,0.0010499631,-0.00474664,-0.031765778,0.0022223026,0.031703286,0.020257192,0.022746379,0.009779694,0.032182377,-0.049867064,0.0006060233,0.001775759,-0.029557794,-0.032036565,-0.040576875,0.0051007504,0.0067541334,0.010029653,0.013758226,0.005790745,-0.01648696,0.027516453,0.0022105856,0.0024761683,0.032224037,0.010217124,-0.040451895,-0.025683412,0.040410236,0.03374463,-0.022121478,0.019215692,0.039285414,0.005178863,-0.015174668,-0.015466288,-0.018653281,-0.011019079,0.0046815462,0.0049210917,-0.006316703,-0.0012055372,0.014581013,-0.010331688,0.013799886,0.010602479,0.01233137,-0.018465811,0.00032498082,0.015487118,0.00022864199,-0.01170647,-0.052116703,-0.029057875,-0.021892348,-0.011800205,0.018247096,0.024308631,0.0069728484,-0.0031062763,-0.021538239,-0.0374732,-0.02316298,0.0031271065,-0.018590791,-0.010524366,0.00584282,-0.0040306086,0.012945856,-0.009331848,-0.0150809325,-0.00834763,-0.007217601,0.03549435,-0.01746597,-0.046992518,-0.008477817,-0.017913815,0.02218397,0.012164731,0.013872792,-0.022100648,-0.0039368733,-0.010154634,0.0038379307,0.05994879,-0.013091666,-0.002584224,0.020392587,0.03951454,-0.01168564,-0.003038579,0.0046633203,0.005441842,0.02226729,0.0054262197,0.018465811,0.026474953,-0.028370485,-0.021434087,0.0019215691,-0.03674415,-0.0012439427,0.014351882,0.017601365,-0.029953565,-0.005108562,-0.008394497,0.02335045,0.00042994457,0.018122116,-0.0077643893,0.010331688,0.043201458,-0.008404912,-0.021079978,0.01875743,-0.014841388,0.0075404663,0.013560342,0.009071473,-0.026120842,0.0064781355,0.0496171,-0.02378788,-0.0034421603,0.032140717,-0.026162501,-0.01667443,0.010180671,0.03878549,-0.005210108,-0.008186197,0.021454917,0.008394497,0.029224515,0.0013487437,-0.009415168,-0.016799409,-0.009665128,-0.026391633,0.02372539,-0.013289551,-0.045534417,-0.0021064356,-0.019090712,-0.027370643,-0.038868815,0.0044211713,0.015028858,-0.00287975,-0.0025855259,-0.021371597,-0.0064260606,0.009967163,0.003879591,0.0077175214,-0.01892407,-0.00582199,0.0429515,0.00441336,0.0024748666,0.024975192,0.014695577,-0.018653281,0.0068062083,0.013581172,-0.025225151,-0.0018968335,-0.020777943,-0.043159798,-0.018101286,0.005728255,0.021704879,0.007660239,-0.010170256,0.018486641,0.05849069,-0.03507775,-0.0044289823,-0.0014646106,-0.018809507,0.021538239,0.028495464,0.031786606,-0.006243798,-0.0036738943,-0.0022210006,-0.02391286,-0.018392906,-0.041930825,-0.021517409,0.023517089,-0.007587334,0.010279614,0.011196135,-0.025350131,0.00058877346,-0.0151017625,0.0333072,-0.028599614,0.0222048,0.006769756,-0.006535418,-0.011862695,-0.008139329,-0.022683889,-0.04757576,-0.0031479364,-0.019226106,-0.004728414,0.013976942,-0.055699468,0.019319842,0.031307515,-0.0009698977,-0.033244707,-0.00066330587,0.020684207,0.018486641,0.013039591,-0.019507311,-0.013039591,-0.06290665,0.039035454,-0.007009301,0.015799569,-0.010185879,-0.0060927803,0.011946015,-0.01178979,-0.009170415,-0.03236985,-0.018528301,-0.043868016,0.010821194,-0.0011970751,-0.027370643,-0.01164398,0.0062125525,0.012445936,0.004022797,-0.014830973,0.0053793523,0.0255376,0.0040201936,0.010737875,0.028162183,-0.028120523,-0.004014986,0.00559286,-0.053158205,-0.028016374,0.038598023,0.02237144,-0.0060354974,-0.016913975,-0.015195498,-0.014403957,-0.0042154747,0.01715352,0.02332962,-0.010566026,-0.01765344,-0.02414199,0.01742431,0.0046424903,0.014008187,-0.017768005,-0.014976783,-0.021725709,0.028974555,0.0048846393,0.031057557,-0.00594697,-0.014258147,-0.0060146675,0.0127688,-0.0023316601,0.019423991,-0.009977578,-0.0072123935,-0.0038483457,0.027099853,-0.0062906654,0.012664651,-0.021059148,0.0058896877,0.004757055,-0.029245345,0.018309586,0.009123548,0.0059938375,-0.01648696,0.018330416,0.002122058,0.011414849,0.010123389,-0.030807596,0.008878795,-0.011060739,-0.008207027,0.0033692555,-0.014268562,-0.013018761,-0.040160272,0.039868653,0.016893145,-0.012518841,0.009222491,0.026641592,0.010472291,0.00033181568,0.01892407,0.0059001027,-0.018694941,-0.010649347,-0.008962115,0.048408963,-0.0057751224,-0.00818099,-0.00032563176,0.017205594,-0.0005409295,0.007967481,-0.038348064,-0.0021285673,0.019538557,-0.027079023,-0.042743195,-0.00024719373,-0.031453326,-0.027995544,-0.016539034,-0.00088657765,-0.0011515095,-0.026391633,0.020330098,0.0010174161,-0.016872315,-0.009441205,0.025850052,0.028745424,0.0011417454,-0.051325165,0.0022561513,0.025058512,-0.011029494,0.018747015,0.011487755,0.032744788,-0.023038,0.018653281,-0.0036608756,-0.039222922,-0.005241353,0.007983104,0.015632927,-0.01744514,-0.039181262,-0.045659397,-0.0079154065,0.013570757,-0.008160159,-0.030932575,-0.0007973991,0.0072488463,-0.005400182,-0.03634838,-0.043534737,-0.0244961,-0.013560342,0.0024319047,0.055074565,-0.00830597,0.006936396,0.0008501251,-0.031557478,0.016830655,-0.0008058613,-0.0136332465,-0.003876987,0.03345301,0.013862377,0.033119727,-0.0035905743,0.039889485,-0.0065770783,-0.012956271,-0.011019079,0.011508585,0.04678422,0.021413257,0.021350767,0.038952135,-0.0023251506,0.018632451,0.02368373,-0.042909835,0.017559705,-0.0058167824,-0.012810461,-0.0048950543,0.0013318192,-0.03614008,0.03549435,0.008253895,-0.026974874,0.0029760888,0.0013487437,0.004022797,-0.011352359,0.013081251,0.0064364756,-0.010852439,0.006056328,0.015882889]},{"id":"class-MessagePayload","type":"class","source":"main","text":"Class: MessagePayload\nDescription: Builder for message payloads. Use with `channel.send()` or `message.reply()`.\nProperties: ContentMaxLength: 2000, data: MessagePayloadData\nMethods: addEmbed(embed: APIEmbed | EmbedBuilder) -> this — Add one embed. Max 10 total.; create(contentOrOptions: string | MessagePayloadData) -> MessagePayload — Create a MessagePayload from a string or options object.; setAttachments(attachments: (AttachmentBuilder | { id: number; filename: string; description?: string | null; })[] | null) -> this — Set attachment metadata (for files sent with the request).; setContent(content: string | null) -> this — Set message text. Max 2000 characters.; setEmbeds(embeds: (APIEmbed | EmbedBuilder)[] | null) -> this — Set embeds. Max 10. Replaces existing.; setFlags(flags: number) -> this — Set message flags (e.g. ephemeral, suppress embeds).; setReply(reference: APIMessageReference | { channel_id: string; message_id: string; guild_id?: string | null; } | null) -> this — Set reply reference (creates a reply to another message).; setTTS(tts: boolean) -> this — Enable text-to-speech.; toJSON() -> MessagePayloadData — Get the payload as a plain object.","meta":{"url":"/docs/classes/MessagePayload"},"embedding":[0.016884089,0.0035678905,0.013011402,0.0058704987,0.005232735,0.015664909,-0.0070948,-0.013369985,-0.003368109,-0.0148965195,-0.0026560677,-0.00025661022,-0.00823714,-0.057086248,0.010414245,-0.015132159,0.011085305,0.019086806,0.03915715,0.014824803,0.0032656572,-0.021330504,-0.03298954,0.039874315,-0.004049415,-0.054258574,0.010757458,0.056102708,-0.039833333,-0.06229081,0.045980453,-0.02078751,0.0381941,-0.03335837,0.031022461,-0.0043106675,0.025100738,0.040960304,-0.029977452,-0.01085991,-0.028789008,-0.0024153057,-0.013288023,0.0139334705,-0.042947873,0.016812371,0.0018531004,0.032600224,-0.007043574,0.029752057,-0.03973088,0.03411651,0.011853695,0.10056687,-0.010685743,-0.016771391,-0.042456105,0.009471687,-0.010240076,0.00825763,-0.030940501,-0.021822274,-0.03462877,0.01771395,-0.005578511,-0.005219929,-0.07155247,0.035407405,-0.044054355,0.07806841,0.047660664,0.01414862,-0.04132913,0.02833822,-0.016269377,-0.012294238,-0.03800969,0.032641202,0.018656507,-0.049832646,-0.033747684,0.022949245,-0.026207218,-0.03294856,-0.042988855,0.011915166,0.014865783,0.007402156,0.028215278,-0.011833205,-0.012949931,-0.047660664,-0.028420182,0.005634859,0.0143637685,-0.026330162,-0.025203189,-0.015941529,0.01239669,0.034710735,0.06729046,-0.0078734355,-0.07060991,0.0017775419,0.0009937843,-0.059831962,-0.021945216,0.005409465,-0.000058989935,-0.013574888,-0.04475103,0.01873847,0.0131343445,0.0059114797,-0.0211256,0.0029557399,-0.00039540065,0.01929171,0.0148760285,-0.03298954,-0.027477624,-0.034198474,0.054791324,-0.036985166,0.037825275,-0.058233712,-0.0005407544,0.024096707,-0.009036265,0.07056893,0.029813528,0.019681027,0.03292807,0.004802437,-0.03911617,-0.013216306,-0.028768519,0.009087492,-0.031760115,-0.06880675,0.044546124,-0.011392661,0.032313358,0.0012870531,-0.02524417,0.02735468,-0.028112825,0.018912638,-0.025039267,0.009650977,-0.011659036,0.026514575,-0.043029834,0.020971922,-0.01673041,-0.019926911,0.02210914,-0.0064391075,-0.0087955035,-0.0031503986,-0.019486368,-0.017119728,-0.02673997,-0.0033143219,-0.031104423,-0.021269033,0.05368484,-0.054422498,-0.021002658,-0.04270199,0.02528515,-0.044669066,-0.006147119,0.01212007,-0.028256258,-0.00010797479,-0.032231394,-0.039505485,-0.028133316,-0.02319513,0.030510202,0.016832862,-0.056553498,-0.0371286,-0.034321416,0.0030530693,-0.011546339,0.043193758,0.042988855,-0.029608624,-0.0443822,-0.011474622,0.026268689,0.018717978,0.009072123,-0.0075148535,0.024158178,0.0023756055,0.024117198,-0.036964677,0.037333503,0.0073355623,0.0484393,-0.005583633,0.013964206,-0.020838734,-0.030776577,0.036903206,-0.042087276,-0.040386572,0.0071152905,-0.04475103,-0.012458161,-0.014005187,-0.012949931,0.023891803,-0.024137689,0.029772548,-0.042661007,0.0047460883,-0.07470799,0.03462877,0.07507682,-0.039566956,-0.061143346,-0.02366641,-0.03546888,-0.011618055,-0.047291838,0.026125258,-0.008570109,-0.0057168207,-0.0065825405,-0.005358239,-0.017570516,0.013359739,-0.027088305,0.026022805,0.03821459,-0.014455976,-0.007289459,-0.015695645,0.01834915,0.01805204,-0.045201816,-0.00015703969,-0.030756086,-0.022990227,0.036882717,0.051717762,0.09999314,-0.010071031,0.03194453,-0.0030556305,0.011413151,-0.0029813529,-0.0013741372,0.043398663,0.030120885,-0.0034475094,0.039341565,0.022928756,-0.024527006,0.00014695457,-0.02327709,-0.00028174298,0.03874734,0.019732254,0.03409602,0.017252915,0.021105109,-0.0143432785,0.021576388,0.011228738,0.00951779,0.04397239,-0.030305298,-0.044013374,-0.015316572,-0.0065825405,-0.031124914,-0.032743655,-0.01081893,0.029075874,-0.023154149,0.007023084,0.04290689,0.03087903,-0.015480495,0.013492927,0.028707048,-0.025510546,0.030223336,-0.040386572,0.027047325,0.024875343,0.04897205,0.009328254,0.06024177,0.03507956,-0.009481931,-0.010199095,0.017037766,-0.0386244,0.0051584574,-0.017211935,0.01342121,-0.04397239,-0.00392135,-0.061676096,0.035714764,0.014804312,-0.037845764,-0.023748372,-0.0680691,0.042579047,-0.00012222202,0.023625428,-0.0135851335,0.056471534,0.013410965,0.021248542,-0.030448731,-0.078642145,-0.025653977,-0.0049766055,-0.01834915,0.016382072,0.013667095,0.04434122,0.00032944718,-0.008564986,0.00032624556,0.034710735,0.011771734,0.011956147,-0.0008324224,0.034669753,0.0048997663,0.03147325,0.028932441,-0.017457819,0.033686213,-0.010357896,-0.004561675,-0.0033194444,-0.021514917,0.051389918,-0.026350651,-0.015234611,-0.031268347,0.011167266,-0.034772206,-0.04548868,0.047086935,-0.024588477,0.030653635,-0.053275034,-0.012263503,-0.00567584,-0.0142408265,0.0025139158,-0.00993272,0.032641202,-0.013329004,0.0026304547,-0.025981825,0.0133392485,-0.021064129,-0.018554054,-0.001150664,0.042210218,0.006418617,0.03141178,-0.00036306423,-0.052537378,0.02673997,0.014742841,-0.029588135,-0.003598626,0.054955248,0.04733282,-0.0023576764,0.036964677,0.0050867414,-0.0055016717,-0.006393004,0.04290689,-0.01702752,0.037272032,0.010470593,0.020500643,-0.071511485,0.023830332,0.021514917,0.061143346,-0.0058500087,-0.0132777775,-0.004144183,0.0021169141,-0.006085648,0.012355709,0.012980667,0.023604939,0.003913666,-0.05360288,0.03442387,-0.022539437,0.03774331,0.024055727,0.06929853,0.024383573,0.00993272,0.034690242,0.015316572,-0.007852945,0.025653977,0.0023064504,-0.010260567,0.0027380295,-0.03042824,-0.044792008,-0.04548868,-0.0045770425,0.018338906,0.012068844,0.042988855,-0.035182014,-0.050201476,-0.026985854,-0.06835597,0.0026458227,0.08581378,0.009358989,0.049709704,-0.052865226,-0.04839832,-0.020531379,-0.032333847,0.016597223,-0.0221911,-0.02430161,-0.012980667,0.034198474,-0.019906422,-0.014476466,0.00041140878,-0.0033015152,0.029096365,-0.016207904,0.0024255507,0.000938076,-0.025940843,0.016248886,-0.04905401,0.0011244105,-0.016166924,0.035202503,0.031657666,0.004930502,0.021965707,0.010081275,0.040468536,-0.036124572,-0.018359397,-0.02274434,-0.050939128,-0.016648449,-0.0155727025,0.013861754,0.020265004,0.005476059,0.01340072,0.021965707,-0.0016610029,-0.020131815,0.0076634088,-0.030243827,-0.0011935657,0.02268287,-0.0071511487,0.03239532,-0.011136531,-0.002248821,-0.07114266,0.06589712,0.022375515,-0.02012157,0.019558085,-0.015460005,-0.046308298,-0.021002658,-0.00046551623,-0.0057578017,0.007996378,-0.029588135,-0.018533565,-0.040816873,0.04901303,-0.0153677985,0.01314459,-0.061471194,-0.02372788,-0.012222522,0.03966941,0.0029378107,-0.037435956,0.014763331,-0.028071845,0.050816186,-0.04585751,0.0057987827,0.038829304,-0.018492583,0.009820023,-0.0027662036,-0.024629459,0.021760803,-0.02270336,-0.026166238,0.0044797133,-0.0022155242,0.035591822,0.011525849,-0.009154085,-0.028625086,-0.0105628,-0.03096099,0.010260567,-0.013042138,-0.0059627057,-0.0043875063,0.011781978,0.012181541,-0.014927255,-0.021842765,-0.055324074,-0.020387946,0.01261184,-0.022129629,-0.03813263,0.01596202,-0.0013075435,0.01621815,-0.019691272,0.029670095,0.010655006,0.03854244,-0.02727272,0.020603094,0.017826647,-0.035673782,0.03303052,-0.013759302,0.024322102,0.0150604425,-0.016443545,-0.010460348,0.009389725,0.0132777775,-0.013298268,-0.027743999,0.018922882,0.034157492,-0.021740312,0.023625428,-0.019793725,-0.022559928,-0.005307013,-0.01290895,-0.008549619,0.036800753,-0.015255101,-0.0046385136,0.023522977,0.0054914267,0.004717914,-0.0049407473,-0.01133119,-0.0403251,-0.0054658134,-0.042415123,-0.00042773705,-0.010245198,-0.017918853,0.017509045,-0.009369235,-0.008170546,-0.03958745,0.03858342,0.019875687,0.015880058,0.024834363,-0.012540123,-0.008677684,-0.02936274,-0.01728365,-0.010982853,-0.028604595,0.019783478,0.012253257,0.007858068,-0.032702673,0.026350651,0.009184821,-0.010798439,0.01365685,-0.041349623,-0.009645855,0.02575643,0.020510888,0.030756086,-0.031124914,-0.04848028,-0.02577692,-0.0057629244,-0.003639607,-0.0018466971,0.024957305,0.00033168832,0.017140217,0.013820773,0.00015143685,-0.0019747622,-0.027621057,0.02264189,-0.0058500087,0.0006928316,0.040898833,0.000097809636,0.03555084,-0.0015956897,0.023543468,-0.008170546,0.009763675,-0.008923568,0.019783478,-0.011085305,-0.0283792,0.01570589,0.013052383,0.028645575,0.0335018,-0.012786008,0.004343964,0.007227988,-0.01212007,0.005368484,0.022355024,-0.009205312,-0.017037766,-0.011822959,0.051922668,-0.008913323,0.010363019,-0.040017746,-0.032805126,0.034915637,-0.015900549,-0.009364111,-0.030530693,-0.02571545,0.0038829304,0.026883401,0.03358376,-0.014988726,-0.030325789,-0.016310357,-0.0144457305,0.022826303,0.011310699,0.011546339,0.021699332,-0.024055727,0.0034218964,-0.021289524,-0.013984696,0.010798439,0.031083934,0.013984696,0.009707326,-0.036206532,-0.075281724,-0.032682184,0.022416495,-0.044546124,-0.009548525,0.027784979,0.05151286,0.0020464784,0.00035121822,0.010265689,-0.0262482,-0.040939815,0.0044643455,0.050283436,0.0200601,0.016607467,0.018134002,-0.018963862,-0.04532476,-0.0046794945,-0.052250516,0.0012377481,0.008723787,-0.03237483,-0.069995195,0.023113169,0.0073765432,-0.01209958,-0.049217936,-0.007965642,-0.024096707,-0.017119728,-0.015296082,-0.011361926,-0.008160301,0.005855131,0.003368109,0.010127379,-0.0019120103,-0.011976638,-0.0128269885,0.025838392,-0.023481995,-0.015664909,0.029424211,0.052947186,-0.016382072,0.03147325,0.019547839,0.0082217725,0.00004678374,-0.0056194915,-0.0136875855,-0.0031836955,-0.017201688,0.008672561,0.0061932225,0.007868312,-0.011669282,0.01751929,0.04327572,-0.028420182,0.0029301269,-0.034464847,0.0052506644,-0.0075353435,0.022436986,0.00020202251,-0.0014625022,0.0030223336,-0.039505485,0.02524417,-0.013318758,0.012365955,0.004756334,-0.01085991,-0.03249777,-0.0025228802,-0.0052916454,0.034915637,-0.024813872,-0.035202503,-0.02421965,-0.038255572,-0.0505703,-0.01570589,0.039771862,-0.022252573,-0.02727272,0.0066901147,-0.023318073,-0.003383477,0.03346082,-0.027764488,-0.0048869597,-0.02522368,-0.05880744,0.005225051,-0.020326475,0.011997128,-0.006254694,-0.0050560054,0.007007716,-0.00043510078,-0.036780264,-0.010788194,-0.017662723,-0.02630967,-0.035120543,0.010460348,-0.0051482124,-0.020685056,0.00451301,0.021822274,-0.0008599564,-0.05409465,0.025367113,0.029444702,-0.018717978,-0.0062188357,-0.026658008,0.008047604,0.008938936,0.016566487,-0.05102109,0.057168208,-0.015142404,0.044710048,-0.0017250354,-0.00087020156,0.011925411,0.02270336,-0.018687243,-0.009820023,-0.02833822,0.0070538195,0.009220679,-0.02477289,0.03874734,0.003734375,0.005178948,0.010931627,0.026330162,0.049709704,-0.0142408265,0.009661223,0.01984495,-0.01777542,0.02940372,0.007986132,0.020193286,0.016925069,-0.017119728,0.016412808,-0.055938784,0.022908265,0.0012793692,-0.020418681,0.0149989715,0.005527285,0.01135168,0.015316572,0.031145405,-0.009758552,0.01704801,0.028174296,-0.03257973,0.0012012495,-0.01314459,0.057864882,0.010214463,-0.04327572,0.009948088,0.0051840707,0.0030735596,0.01391298,0.014210091,0.0061676097,0.009154085,-0.0051943157,-0.049340878,0.015890304,-0.037825275,-0.0068642832,0.02035721,0.008759645,-0.008477902,0.027477624,0.026391633,-0.029444702,-0.0047460883,0.0007081994,0.010475716,-0.010747214,-0.008426676,0.0152038755,-0.027067816,0.017334877,0.004495081,-0.03497711,0.011361926,-0.014066658,-0.001653319,0.010921382,0.02313366,0.029383231,-0.012540123,0.0044054356,-0.016433299,-0.026002314,-0.030489711,0.004082712,-0.012150805,0.019967893,-0.03608359,-0.010122256,0.02165835,-0.021228053,-0.031001972,-0.022047669,0.0066388887,-0.02059285,0.026371142,0.003923911,0.027580075,0.009896862,-0.017560272,0.0002550094,0.051471878,-0.031206876,-0.021986196,0.0074789952,0.02008059,-0.016925069,-0.0020272688,-0.00041172892,0.0443822,-0.0023423086,-0.012294238,0.005563143,0.03596065,-0.021514917,0.013011402,0.0021604563,-0.0028020618,-0.020685056,0.028010374,-0.016955804,-0.0032195537,0.0056092464,0.024035236,0.014128129,0.019926911,-0.039464507,-0.016822616,-0.0031503986,0.021699332,0.028645575,-0.0069667352,0.032006003,0.029424211,0.0143022975,0.03141178,0.010532064,-0.057004288,0.029834019,0.011710262,0.0026714357,0.0028660945,-0.03860391,0.011085305,-0.021269033,0.008626457,-0.015070687,0.004187725,-0.027108796,0.041370112,0.026535066,-0.033010032,-0.04063246,-0.042865913,-0.027600566,-0.021863254,-0.0072331103,0.03143227,-0.0061881,0.027989883,0.019783478,-0.0074994857,0.0018569423,0.06425789,0.015244856,0.03714909,0.007248478,0.025408093,0.0075865695,-0.005639982,0.015736625,0.017652478,0.024875343,-0.0069462447,0.02321562,0.005266032,0.011218493,0.022047669,-0.0138515085,0.022764832,0.003998189,0.008129565,-0.022949245,-0.018656507,-0.0031094179,0.011730753,0.0077043897,0.018851167,0.052373458,0.010076153,0.016935313,-0.025428584,0.048234396,0.030018432,-0.01521412,0.05729115,-0.0017596129,0.06647085,0.019465879,-0.00022011169,-0.012519633,0.018431112,-0.027088305,0.014414995,0.008564986,-0.0039674533,0.0031299083,0.026698988,-0.03444436,0.0040903958,0.0044771517,0.020387946,-0.042661007,0.0017839452,0.029875,0.023297582,-0.023994256,0.004692301,-0.0040391698,-0.019885931,0.009184821,0.004287616,0.075445645,-0.046103396,-0.017570516,-0.016802127,-0.011546339,0.015931284,0.035182014,0.04059148,-0.019957647,-0.02780547,-0.012519633,-0.016064472,0.010808685,0.02424014,-0.0011071218,0.011044324,0.00029262848,0.03450583,-0.016207904,-0.036964677,0.055733882,-0.0020541623,-0.0143022975,0.0015803219,-0.0020029363,0.0058500087,0.015931284,0.026104767,0.0004978526,-0.011894676,0.027498113,-0.011290209,0.024998285,0.024465535,0.01777542,0.027662037,-0.015255101,0.040570986,-0.02078751,0.026903892,0.0147121055,0.016925069,-0.0053428714,0.002819991,0.00097457453,0.03655487,-0.03854244,-0.04165698,-0.0017532096,-0.05098011,-0.037579387,0.016269377,0.0015675154,-0.0017083869,-0.00016872562,0.025879372,-0.008564986,0.034854166,-0.015111668,-0.014394504,0.019394161,-0.011208247,-0.011536093,-0.00835496,0.009896862,0.015388289,-0.014005187,-0.008718664,-0.010229831,0.02577692,-0.005122599,0.016576732,0.018492583,0.0020861786,-0.015347308,-0.009246292,-0.035366427,-0.008944059,0.031001972,-0.016402563,0.021576388,0.021002658,-0.029670095,-0.02114609,0.03647291,0.01722218,0.018656507,-0.01647428,-0.0273137,0.0065261917,-0.0051328447,-0.02477289,0.042456105,-0.008534251,0.02424014,0.027190758,0.02165835,-0.035755742,0.0045360615,-0.01986544,-0.01909705,-0.01188443,-0.0638071,-0.017160708,-0.0034577546,0.0055170394,0.0064134942,-0.022621399,-0.04634928,0.027252229,0.005424833,-0.009072123,0.043726508,0.0036037487,-0.027170267,0.01109555,0.034649264,0.008621335,-0.030715106,0.02012157,0.014179355,0.013841264,-0.0015009217,0.013288023,-0.017509045,0.017345121,0.0036575359,0.008775013,0.031616684,0.006725973,0.009620242,-0.011556584,-0.012314729,-0.016996784,0.034895148,-0.02221159,-0.010614026,0.017908607,0.01907656,-0.01135168,-0.08208454,-0.02366641,0.01156683,-0.023031207,-0.010931627,-0.002735468,0.0070896777,0.028215278,-0.00482805,0.03397308,-0.018892147,0.0034475094,-0.05454544,-0.048562244,0.0032067471,-0.005307013,0.0132777775,-0.00049369055,-0.02268287,0.012786008,-0.009415338,-0.022887774,0.008734032,-0.016330848,0.0037241299,-0.010624271,0.018318415,-0.0044156807,0.0061881,-0.021002658,0.046841048,-0.0024076218,-0.0013229114,0.015890304,-0.062126886,0.03721056,-0.013595379,0.007227988,-0.009072123,0.008836484,0.0273137,0.03503858,0.01081893,0.0006268781,0.045570645,0.061553154,-0.018338906,0.005829518,0.010491083,-0.015009216,-0.012949931,0.0050867414,-0.021043638,-0.030674126,-0.011505358,0.03194453,-0.0014817119,-0.039464507,-0.0073816655,0.053848766,-0.01805204,0.03546888,-0.00097457453,0.002260347,0.0030146497,0.019711763,0.016863598,0.0028148685,-0.007888803,0.0142818075,0.0077402475,0.03868587,-0.0050022183,-0.009369235,0.0006569734,-0.0071050455,0.019250728,0.01135168,0.01986544,0.009379479,-0.036206532,-0.019660536,-0.0045155715,0.024998285,0.011126286,-0.011874186,-0.041062757,-0.046062414,-0.0005810949,-0.019752743,0.0134826815,-0.022047669,0.009466563,0.021166582,-0.032292865,-0.0390547,0.026371142,0.037435956,0.045775548,0.024117198,-0.011781978,0.00094447925,-0.009020898,-0.012079089,0.034751713,0.00567584,0.012017618,0.023010716,0.010311793,-0.0043772613,0.02323611,-0.0008055288,-0.014476466,-0.023010716,-0.0034756837,-0.008539373,-0.012253257,0.0141896,0.035243485,0.030325789,-0.0019158522,-0.00541971,-0.008124443,-0.023113169,-0.000113657676,0.01156683,-0.030366769,-0.012437671,0.003229799,-0.028604595,0.011812714,-0.0070128385,0.022396004,0.005634859,0.008554741,-0.021535408,0.028666066,-0.013841264,-0.022293553,-0.0042850543,0.010501329,0.0050303927,0.011628301,0.0060702804,-0.018666752,-0.0047921916,-0.021330504,-0.0067464635,0.023400035,-0.011597565,-0.013329004,-0.025182698,0.0040109954,0.0012665627,-0.04483299,-0.037456445,0.0058653764,0.0023602378,0.002252663,-0.002819991,-0.0074636275,0.006941122,0.0070640645,-0.010675497,-0.0025139158,0.0014868345,0.015142404,-0.008416431,-0.038501456,-0.022969736,0.0033296896,-0.015644418,0.024117198,0.009251415,0.021699332,0.004653882,0.019855196,-0.0023756055,0.04376749,-0.0038317044,-0.022477966,-0.0010840701,-0.018625772,-0.01905607,0.000047984347,-0.018656507,0.019926911,0.001034765,-0.0024934253,-0.08298611,0.01933269,0.0017749807,0.013595379,0.0029583012,-0.00041172892,-0.0024127443,-0.027559584,0.013810528,0.058069788,-0.028092336,0.0014343278,0.030223336,-0.034608282,-0.009866127,0.035448387,-0.022396004,-0.0030377014,0.007924661,0.018687243,0.031186385,-0.011546339,-0.013011402,0.0015662347,0.0025062317,0.027784979,-0.016699674,-0.0072843363,0.00289683,-0.0147735765,-0.03622702,-0.0059729507,0.025408093,-0.05671742,0.036759775,-0.01913803,-0.0146506345,-0.013431456,0.029875,-0.008109075,-0.019342935,0.010614026,-0.0019939719,0.012437671,0.012990912,0.004384945,0.0041749184,0.017119728,0.00038515544,0.06798714,-0.017621743,-0.02784645,-0.0031478372,-0.009763675,-0.027887432,-0.010403999,0.034669753,0.003598626,-0.011597565,-0.008339592,0.0135441525,-0.012857725,0.0031811344,0.015337063,-0.018574545,0.011648791,-0.027108796,-0.028993912,0.025981825,-0.0038829304,0.006710605,0.007146026,0.014537937,0.0037241299,0.008605967,0.0053531164,-0.016720165,0.016300112,-0.023563957,-0.010716478,-0.01367734,0.016638203,-0.010972608,-0.037353996,0.033378858,0.0070691872,0.0016392318,0.010055663,-0.0034987354,0.008949181,-0.026555555,-0.012038109,0.022006687,0.015388289,0.012171296,-0.0047230367,0.01621815,-0.007197252,-0.0039700144,-0.0005042559,0.019834705,-0.006879651,0.006556927,-0.021350995,0.010583291,0.004664127,0.0123762,0.0026202097,0.0015316572,0.030756086,-0.025449075,0.005225051,-0.028440671,-0.0061419965,-0.008313979,0.0046205847,0.010911137,0.005476059,0.015787851,0.015316572,-0.015798097,0.009220679,0.027703017,-0.02268287,-0.0034142125,0.023113169,-0.025121227,-0.015746871,-0.0008010465,-0.0028789009,-0.0140564125,0.03622702,0.022539437,-0.006101016,-0.023686899,0.021166582,-0.02266238,0.009830268,0.028317729,0.019322446,-0.04384945,0.010890646,0.0012409497,-0.008815994,0.0026714357,0.028666066,-0.037374485,-0.004484836,0.014230581,0.0044566616,0.035817213,0.0152858365,-0.022826303,0.02678095,-0.00039347966,0.038562927,0.03145276,-0.01933269,0.010398877,0.009031143,-0.01986544,0.0069257542,-0.010368141,-0.020111326,-0.018717978,0.018093022,-0.015152649,-0.0041595506,-0.01544976,-0.04798851,0.00861109,0.01085991,-0.018431112,-0.030182356,0.022334533,0.00012598393]},{"id":"class-MessageReaction","type":"class","source":"main","text":"Class: MessageReaction\nDescription: Represents a reaction added to or removed from a message.\nProperties: channelId: string, client: Client, emoji: GatewayReactionEmoji, emojiIdentifier: string, guild: Guild | null, guildId: string | null, messageId: string\nMethods: fetchMessage() -> Promise — Fetch the message this reaction belongs to.\nUse when you need to edit, delete, or otherwise interact with the message.","meta":{"url":"/docs/classes/MessageReaction"},"embedding":[0.015889147,0.019585347,-0.017951356,0.03856217,0.033243254,0.048861947,-0.011730924,-0.0046061627,-0.012102798,-0.007499452,-0.0019678315,-0.056705102,0.010339215,0.020712236,0.01810912,0.021140454,0.019810725,-0.0011487234,-0.027811643,0.07798078,-0.013995972,0.005623181,0.028623004,0.059409637,-0.000696911,0.0021354563,0.0130268475,0.044669915,-0.044286773,-0.03071902,0.034054615,-0.018188003,0.03378416,-0.016970962,-0.019427583,0.012395789,-0.03856217,0.028307475,-0.048501343,0.03603794,-0.046563093,0.0026298794,-0.019585347,0.03644362,-0.064863786,0.007905133,-0.047870282,0.012057723,0.012745125,0.013240957,-0.05436117,-0.0016776574,-0.0026214276,0.055037305,-0.0069923517,-0.04512067,-0.026459375,0.027901795,-0.014356578,0.0237323,-0.037390206,-0.020306556,-0.01658782,-0.02537756,-0.019236011,-0.018785255,-0.054947153,0.02887092,0.014491804,0.012159143,0.021027766,-0.023168856,-0.0022735004,0.0047667446,-0.03276996,-0.00476111,-0.012147874,-0.0025974812,0.011843613,-0.04620249,-0.012328176,0.020915076,-0.03908054,-0.023980217,0.008412234,0.01008003,-0.013184612,-0.029975273,-0.008513654,0.013477603,0.015675038,0.0052992,-0.08659022,0.008755934,0.017849937,-0.034865975,-0.022785714,0.013793132,-0.005149887,0.02537756,0.050033912,-0.0640975,-0.034077153,-0.007155751,0.011911226,-0.013274763,-0.027698955,0.046292637,-0.03358132,-0.014288964,-0.031282466,-0.01823308,0.0037750811,0.02488173,-0.018266886,-0.040117282,0.022301152,-0.018469727,-0.01330857,-0.01708365,-0.05445132,-0.011911226,0.050214216,-0.032589655,0.007984015,-0.02846524,0.03991444,-0.015224283,-0.014446729,0.0057471385,0.0175006,0.008508019,-0.03849456,-0.023078706,-0.027698955,0.010136375,0.04462484,-0.05386534,-0.04104133,-0.008981313,0.015167939,-0.026391761,-0.007398032,0.0178274,-0.02293221,0.015066518,-0.047149073,-0.0141312,0.0060344953,-0.020870002,-0.016137064,0.0050428323,-0.045300975,-0.00614155,0.02099396,0.011753462,0.024115445,0.0017001951,0.0023523828,-0.03092186,0.029975273,-0.05458655,-0.011082962,-0.012632436,-0.024453511,-0.0044314945,0.007657217,0.017838668,-0.00018611291,0.003783533,0.041086406,-0.010333581,-0.031778295,-0.011775999,-0.039711602,-0.012091529,-0.010525152,-0.009088367,-0.021895472,0.011353416,0.03910308,-0.009048926,-0.074374735,-0.08523795,-0.011144942,-0.005538664,-0.024633814,0.01638498,0.010333581,-0.0088460855,-0.031597994,0.040680725,0.04584188,0.022289883,0.01646386,-0.030471103,0.03450537,0.015190477,-0.012654974,-0.044354387,-0.0074374736,0.0013733971,0.03646616,-0.013443797,0.0065697683,-0.023213932,-0.018740179,-0.028217323,0.010671647,-0.0010839272,0.036421083,-0.03867486,0.0055189435,0.012316907,-0.057651687,-0.001977692,-0.061663415,0.0045441836,-0.071084216,0.003597596,-0.044422,0.00476111,0.08465197,-0.016711777,-0.037345134,0.04248375,0.022503993,0.0005412593,-0.0046343347,0.019359969,-0.030042885,-0.0076515824,-0.016858272,-0.07423951,0.013883283,-0.002721439,0.025738167,0.02476904,0.034077153,-0.05977024,0.0053245546,-0.028352551,0.018537339,0.035474494,0.0044399463,0.019630423,0.01647513,0.025197258,0.019405045,0.030673943,0.041807614,0.03211636,0.0064852512,-0.005904903,0.012756394,-0.029299138,0.0075388937,0.027158046,0.03799873,0.009432069,0.035564646,-0.014153738,-0.028690618,0.011753462,-0.047915358,0.009567295,0.051115725,0.01320715,-0.023980217,0.030696481,0.029051222,-0.024746502,0.04660817,-0.003760995,-0.002645374,0.022492724,-0.013263495,0.0088348165,0.018007701,0.016159602,0.0048850677,0.013973435,0.038629785,-0.010153278,-0.04349795,0.03173322,0.034370143,-0.03155292,-0.0069867177,0.03184591,-0.010012417,-0.017185071,-0.005161156,-0.054721773,-0.00721773,0.0358351,0.043520488,0.0017185071,0.06103236,0.04043281,0.008062897,-0.0008958775,-0.0075839693,-0.03430253,0.029637204,0.024295747,0.053910412,-0.034550443,0.019123321,-0.025152182,0.029254062,-0.03274742,-0.023912605,-0.015370779,-0.05291875,-0.014007241,-0.027315812,0.028397625,0.0073754946,0.036781687,0.0255804,-0.0040680724,0.00012325359,-0.016847005,-0.051025577,-0.04013982,0.026481913,-0.05016914,0.054631624,0.06504408,0.06508916,-0.043565564,0.047239225,0.036398545,0.06080698,0.008502385,-0.0053076516,0.042303447,0.041334324,0.027405962,0.079423204,-0.026256535,0.0047047655,-0.01433404,0.012102798,-0.026481913,-0.023619613,-0.018559877,0.020092446,-0.02713551,-0.026121309,0.009809577,-0.04403886,-0.087176204,0.050394516,-0.03166561,-0.0047808303,-0.008023457,0.009325014,0.015291896,0.008896796,-0.0062317015,0.0017720344,0.037232444,0.020227674,0.034234915,-0.0474646,0.0025087388,0.046518017,-0.053775188,-0.014525611,-0.036285855,-0.015032711,-0.010316677,-0.034144763,0.0041018794,-0.009279938,-0.012745125,-0.004194848,0.00885172,0.0071219443,0.028037021,-0.007668486,0.029389288,0.0067218984,-0.046022184,-0.05476685,-0.021117916,-0.027924333,0.06599067,0.051250953,-0.027811643,-0.052332766,-0.0036764783,-0.0056992457,0.038449485,-0.0015184842,0.01535951,0.03621824,0.017354105,0.0058203866,0.026391761,0.011573159,0.0099391695,-0.028104635,0.028194785,-0.030358415,0.019427583,0.018886674,0.005842924,0.040996253,0.010981542,0.014457998,0.061798643,-0.014469267,-0.04032012,0.033017874,0.019371238,0.011218189,0.013894552,-0.0058710966,-0.036781687,-0.0016706144,-0.021478523,0.003921577,-0.005141435,0.027991945,0.0017973895,-0.0019974124,-0.029299138,-0.06919104,-0.025039494,0.06233955,-0.023687227,0.07374368,-0.0386974,0.011629504,0.0034454658,-0.035068814,0.006676823,-0.009454606,0.007448742,0.0028510315,0.037345134,-0.0019410679,0.008817914,0.0073135155,-0.043588102,0.0047442066,-0.014345309,-0.03775081,-0.0037018333,0.0015184842,0.0057076975,-0.043452874,-0.028938534,0.027270736,0.015179208,0.018075313,-0.01515667,-0.0040286314,0.019371238,0.023574537,0.06901074,-0.01781613,-0.013218419,-0.04624756,-0.035429418,-0.003746909,-0.0066711884,-0.008936237,0.008209393,0.0292766,0.035902712,-0.010632207,-0.024656352,0.03153038,-0.011499912,0.034888513,0.040387735,0.014672107,0.05968009,0.0011874603,-0.040680725,-0.06261,0.060942207,-0.03263473,-0.02783418,0.020971421,0.048095662,0.004538549,0.01238452,-0.035677336,-0.0094151655,-0.003859598,-0.004437129,0.008254468,-0.051476333,0.03603794,-0.04768998,-0.020182598,-0.00050921337,-0.03295026,0.00017818947,-0.0021101013,0.030020347,0.008322082,0.0046061627,0.01166331,0.028487777,-0.015539812,0.0077755405,-0.0030876785,-0.031350076,0.029547054,-0.024092907,-0.051656634,-0.02794687,-0.010880122,-0.0044681183,0.037728276,0.005831655,0.030538717,0.005490771,-0.011133673,0.014446729,0.0069754487,-0.035767484,-0.011009715,0.022503993,-0.0007169837,-0.013421259,0.06675696,0.017725978,0.0066204784,-0.0083333505,-0.05305398,-0.02056574,0.014097393,-0.059229333,-0.0025636745,-0.016328635,0.026684754,0.0011698526,0.006795146,0.03193606,-0.02537756,0.062159248,0.0024594374,0.030651405,0.01946139,-0.017106188,0.002790461,-0.027608803,0.0020143157,-0.013657906,0.0004356134,-0.019123321,0.036781687,0.0077642715,0.00037222583,-0.0019143042,-0.009854652,-0.0094208,-0.0528286,-0.009313745,0.030133037,0.018300692,-0.05679525,-0.0050231116,-0.0057471385,0.006665554,-0.004510377,-0.025670553,0.012745125,0.040275045,-0.022909673,0.025602939,0.0011761914,-0.028420163,0.007279709,-0.033017874,0.043993782,-0.028284937,-0.016137064,0.009539123,-0.029817507,-0.036308393,-0.019607885,0.038629785,0.010046223,-0.011483008,0.016565282,0.049177475,-0.009539123,-0.0036821128,0.0006307062,-0.008085435,0.00043420476,-0.0053583616,0.031485304,0.03141769,-0.0565248,0.024295747,0.011674579,0.041289248,0.008778472,-0.044579767,-0.042731665,0.041401934,-0.026684754,0.025309948,-0.019224742,-0.013883283,-0.03051618,-0.013725519,0.014277696,0.009685619,0.01913459,0.0006979674,-0.029118836,0.024904268,0.0077360994,-0.017725978,0.0047047655,0.027067896,-0.0064739827,-0.025850855,0.026436837,-0.0029693549,0.039553836,-0.013083192,-0.004473753,-0.036511235,0.012677511,-0.0368493,0.039779212,-0.015911685,0.009967341,0.0057443213,0.04320496,-0.006023227,0.0053865337,-0.004115965,0.036308393,0.017455526,0.030133037,-0.024859192,0.013691712,-0.0077755405,-0.013579023,0.0049047885,0.03360386,-0.05057482,-0.022909673,-0.0011043521,-0.019979758,0.05949979,0.0033299597,-0.017016038,-0.0178274,0.03376162,-0.0021706717,0.042957045,-0.011640773,0.013748057,-0.017523138,-0.007814982,0.022966016,0.0006595827,0.037119754,0.010975908,0.025242334,-0.008812279,0.01627229,-0.046698317,-0.004600528,-0.013545217,-0.011922495,-0.0024073187,0.036173165,-0.001929799,-0.0230449,-0.010023686,0.034077153,-0.02722566,0.008062897,0.008744665,0.020881271,0.0159793,0.006626113,-0.020768581,-0.019934682,-0.038021266,0.02109538,-0.002012907,0.029592128,0.022560336,0.016103256,-0.0006888115,0.01218168,-0.0099053625,-0.013398721,-0.017511869,0.036421083,-0.024430973,-0.008941871,-0.0049554985,0.03624078,-0.00373564,-0.037367668,-0.0076234103,0.014401653,0.0051048114,-0.024723966,-0.0093588205,-0.0069416417,0.004978036,0.023304084,-0.00802909,0.0049949395,0.026256535,-0.02578324,-0.0055865566,-0.021839127,0.025648015,0.0062317015,0.05548806,-0.027991945,0.031800833,-0.007747368,0.026639678,-0.0048681647,-0.0071726544,-0.006479617,0.010147643,-0.015269359,0.027090434,0.008609439,0.005651353,-0.02190674,0.019236011,0.017883742,-0.027000282,-0.03563226,-0.03624078,0.01140976,-0.0103842905,-0.020599548,0.022695564,-0.015641233,0.005780945,-0.05990547,0.017883742,-0.021501059,-0.02077985,-0.01504398,-0.007781175,-0.05539791,-0.0016748401,-0.015956761,0.025039494,-0.0023340709,0.024385897,-0.0017776688,-0.0011346373,-0.025107108,0.0036567578,0.009065829,-0.013252226,-0.0015283445,0.015472199,-0.022177193,-0.015325703,0.028758232,0.003997642,0.006575403,0.0014522794,-0.00030496457,-0.0054654162,-0.018807793,0.0003792689,-0.0050822734,-0.015675038,-0.0073247845,0.010626572,-0.023574537,-0.022774445,-0.0072740745,-0.029547054,0.007882595,-0.015911685,0.013455066,-0.00977577,-0.02887092,0.02210958,0.000020358852,-0.053955488,0.033648934,0.046743393,-0.023709765,0.012159143,0.023416772,-0.00020319234,0.03040349,0.008440405,-0.066396356,0.029637204,-0.034077153,0.0376832,0.0029918926,0.01748933,0.00012501435,0.010339215,-0.023213932,-0.015731383,-0.00009719426,0.035474494,-0.015066518,-0.046427865,0.019033171,0.013860746,0.03182337,0.00844604,0.016768122,0.028825844,-0.0017283674,0.0319586,0.016035644,-0.002870752,0.006907835,-0.038336795,0.03581256,0.030741557,-0.008502385,-0.025016956,-0.042551365,0.04268659,-0.005738687,-0.020588279,-0.009499682,0.031350076,-0.016396249,-0.017996432,0.02672983,0.0027890524,0.0064007347,-0.005037198,-0.0028693434,0.012057723,0.010311043,0.0020692516,0.005040015,-0.024611276,0.025129646,-0.009618006,-0.026639678,0.012114067,0.01391709,0.028149711,-0.015246821,0.013894552,-0.037705738,-0.025918469,-0.023799915,0.008367158,0.026955206,-0.0013522679,-0.00034827943,0.010322312,0.009708157,-0.011336513,0.037660662,0.0046822275,0.03121485,-0.014649569,0.0028876555,-0.024723966,-0.0014762258,-0.009246131,0.0043836017,0.0040286314,0.033243254,-0.008045994,0.011342147,0.01152245,-0.0109082945,0.022064505,-0.026684754,-0.012035185,0.03509135,0.003544069,-0.0020946066,-0.022751907,-0.03633093,0.012339445,-0.04832104,0.0035891444,-0.0034651866,-0.028577928,-0.04976346,0.008840451,-0.034640595,-0.0034116593,0.03092186,0.008215028,0.02293221,-0.020926345,-0.006693726,-0.015798997,-0.00736986,-0.0056344494,0.0064120037,0.022966016,0.0528286,-0.0014466449,0.0028932898,-0.030471103,-0.03441522,0.023822453,-0.011032253,0.0020607999,0.02702282,-0.027901795,0.01852607,0.007645948,-0.025963543,0.0053470926,-0.018773986,-0.013860746,0.03031334,-0.030966936,0.010322312,0.026481913,0.022154655,-0.025828317,-0.0011149168,0.0007004325,0.018368306,0.009798308,0.01617087,-0.034550443,-0.023574537,-0.00644581,0.014153738,-0.00609084,-0.05089035,0.052242618,-0.0007747368,0.019010633,0.0052992,-0.009048926,0.04881687,0.013725519,-0.0064120037,-0.005473868,0.02089254,0.0074149356,0.03646616,0.0028792038,-0.03633093,-0.029794969,-0.044782605,-0.009139077,-0.014424191,-0.039891902,0.016238485,-0.00957293,0.00081276934,0.024498587,0.0011733741,-0.0068120495,0.019472659,0.04002713,0.013657906,0.0046568727,0.008874258,0.0010867445,0.0001621665,0.0030369684,-0.0024171788,0.020306556,-0.024656352,0.048997175,-0.0178274,-0.028780768,0.008778472,-0.028848382,0.04034266,0.011775999,0.017128726,0.015956761,-0.030065423,-0.023011092,0.02528741,-0.028983608,-0.01014201,0.051250953,0.020836195,0.0489521,-0.0130268475,0.03292772,0.010068761,-0.017973894,0.04309227,-0.018334499,0.04291197,0.013195881,0.02783418,-0.015753921,0.021151723,0.0038793185,0.000943066,-0.039779212,-0.026481913,0.013139537,0.02774403,-0.028442701,-0.0057865796,-0.002882021,0.050935425,-0.01576519,0.012722587,0.03387431,-0.033423554,-0.05332443,-0.013533948,0.02138837,-0.024904268,-0.04554889,-0.0013339559,0.04665324,-0.032274127,0.008688321,0.01925855,-0.005826021,0.044872757,0.0027890524,0.007758637,-0.03950876,-0.037593048,-0.028532853,-0.0140410485,0.039959516,0.01627229,-0.00035320956,-0.003645489,-0.035451956,0.038539637,-0.02427321,0.013646637,0.003721554,-0.036826763,-0.006817684,-0.005572471,0.0119901085,-0.0025932554,0.026076233,-0.010502614,-0.030110499,-0.024926806,0.01781613,-0.021286951,0.02517472,0.017061112,0.024656352,-0.0015339789,0.0044934736,0.03376162,0.0056598047,-0.010147643,0.00447657,-0.0024678889,-0.022143386,-0.024115445,-0.00931938,0.02508457,-0.025264872,-0.03757051,-0.04832104,-0.0035018104,-0.010666013,0.014976367,0.017568214,0.0014762258,0.026504451,-0.021005228,-0.016137064,0.039779212,-0.0111055,-0.03867486,0.04032012,-0.030628867,-0.021005228,-0.0331531,0.02846524,0.009516586,-0.020791119,0.010463173,-0.018007701,0.011719655,0.005341458,0.015889147,0.00068986794,0.0009078507,-0.0002944,-0.008355889,-0.015573619,0.0059725167,-0.0083333505,-0.021861665,0.00455827,0.032815035,-0.009888459,-0.026459375,0.012677511,-0.010389925,0.00056485354,-0.016948424,-0.021501059,0.027293274,-0.005690794,0.0075050867,0.032702345,-0.0012656383,0.008558729,0.019607885,0.046427865,-0.03328833,-0.024904268,-0.006614844,-0.0046794103,-0.0088911615,-0.043137345,-0.013669175,0.0070825033,-0.0039920076,0.00952222,-0.022154655,-0.04403886,-0.0021255962,0.01781613,-0.016756853,0.01791755,-0.016869541,0.013759326,-0.022177193,0.04872672,0.014007241,0.00023189282,0.036533773,0.01842465,0.016418787,-0.004084976,0.057922143,-0.023687227,-0.021839127,0.011071693,-0.00024298564,0.007206461,-0.0067613395,-0.017940087,0.008947506,-0.0033017874,0.027518652,0.016001837,-0.017804861,-0.015990568,0.018379575,0.0061077434,0.012305638,-0.05557821,-0.037502896,0.031305,0.008733396,0.0019326162,0.025850855,0.005826021,0.043114807,-0.009550392,0.0029299138,-0.021816589,0.025467712,-0.00609084,0.00086981815,0.017782323,-0.038832627,0.01494256,-0.021760244,-0.017478062,0.0061978945,0.015089056,0.0047667446,-0.053820264,-0.04329511,-0.03400954,-0.010722358,-0.015945492,0.005372448,0.021140454,-0.023281546,0.021253144,0.007730465,-0.0029299138,0.021410909,-0.0109308325,0.00079023157,-0.019788187,0.06017592,-0.022684295,0.014908753,0.0011240727,0.011674579,0.035136428,-0.012531016,-0.008423503,0.06878536,0.0036314027,-0.013849477,0.02099396,-0.011094231,-0.0127902,0.014311502,-0.019303624,-0.010998446,0.014525611,0.016125795,0.013421259,-0.01218168,0.011753462,0.0311247,-0.001460731,0.07090391,0.021162992,-0.021951815,0.00711631,-0.011821075,0.021005228,0.008384061,0.0068514906,-0.0021509512,0.027991945,0.01596803,-0.016734315,-0.003358132,0.01130834,-0.022267345,-0.023551999,0.0010458947,0.034618057,-0.0014064995,-0.016396249,0.0030848612,0.0036539405,0.0051865107,0.008237565,0.015055249,-0.015911685,-0.005842924,0.006152819,-0.0009909588,-0.011821075,-0.054496396,0.0003852555,-0.048456267,-0.040297583,-0.03337848,-0.0008106564,0.045932032,0.004099062,0.00450756,-0.044106472,-0.0104293665,0.041740004,0.0052569415,0.025242334,0.041807614,0.01044627,0.033423554,0.020712236,0.021884203,-0.0026115675,0.009499682,-0.046157412,0.011539353,-0.029051222,0.023281546,-0.0061866255,0.0041046967,0.030966936,-0.035902712,0.021940546,0.015269359,0.030426027,0.01115621,0.01351141,0.011708386,-0.0227181,0.0062993146,-0.03644362,-0.04347541,0.023551999,-0.026684754,0.014818602,0.0018114755,0.0045413664,-0.018413382,-0.018266886,-0.018458458,-0.035564646,-0.044354387,0.03247697,0.018988095,0.004073707,-0.016317366,-0.023754839,-0.005510492,-0.012068991,0.011037887,-0.0156525,0.0003813818,0.0073022465,-0.03358132,-0.00024615502,0.00915598,-0.02508457,-0.012260563,-0.030065423,0.009122174,0.01812039,-0.024498587,-0.0175006,-0.008023457,0.0007993875,-0.03288265,0.010874487,0.0066204784,0.010113837,-0.0034060248,-0.017354105,0.002620019,-0.012452134,-0.047915358,0.04482768,0.029524516,0.022368765,-0.00017968612,-0.01340999,0.021467254,-0.018064046,0.0011459062,-0.0376832,-0.015134132,-0.047374453,0.008153048,0.017883742,-0.027270736,-0.015911685,0.007865692,0.024498587,-0.041401934,0.026143845,0.011246362,0.008479847,0.020622086,0.026233997,0.025309948,-0.02159121,-0.016632896,0.016655432,-0.056569874,-0.006073937,0.00080220477,0.014615762,-0.007347322,0.0065472303,0.0078206165,-0.0022904037,0.0047132173,-0.0013741014,0.004597711,0.01667797,0.02201943,-0.017793592,0.0024073187,-0.010705454,0.0030876785,0.01739918,0.013083192,-0.01913459,0.009561661,-0.0033919387,-0.000075888995,-0.018909212,-0.0076008723,0.0013283215,-0.0009325014,0.031305,0.00010546985,0.017342836,-0.0065303273,-0.003963835,-0.012452134,0.023461848,-0.018897943,0.025760703,0.018830331,0.0048822504,0.009313745,-0.016452594,-0.008739031,0.011015349,-0.013319839,-0.019224742,0.022267345,-0.009330649,0.03427999,-0.013432528,0.0074656457,-0.057246007,0.008733396,-0.013680443,-0.020543203,0.005287931,-0.034347605,0.022898404,-0.012102798,-0.002681998,0.021050304,0.02528741,0.0057978486,-0.025512788,-0.006564134,-0.013725519,-0.015720114,0.007747368,0.008592536,0.012869083,0.000023704306,-0.0093813585,-0.021365833,0.013376183,0.022571605,-0.028577928,-0.04841119,0.017748516,0.022188462,0.0011705569,-0.022402572,0.009099636,-0.02621146,-0.012835276,0.029592128,0.009832115,0.0044653015,-0.022447648,0.022075774,-0.0030482372,-0.044196624,0.0002658756,0.012902889,0.015021442,0.008062897,-0.004662507,0.020182598,0.020757312,0.009037657,0.010959004,0.03932846,-0.0002732708,-0.045503814,0.02578324,0.016001837,-0.011499912,-0.008581267,0.02436336,0.004259644,-0.0045639044,0.00839533,-0.03603794,0.022943478,0.0067106294,0.018492263,-0.028532853,-0.01966423,0.010570227,-0.01863876,-0.034437757,-0.0036370372,-0.014773527,-0.008068532,0.029299138,0.013150806,0.022436379,-0.00041906218,0.019157128,-0.03775081,0.024295747,-0.01638498,-0.0023115329,-0.035136428,0.011212555,-0.0063331216,0.0024847924,-0.012857814,0.04863657,-0.017895011,-0.022639219,-0.019709304,-0.009488413,0.008226297,-0.0033271424,0.002743977,0.03040349,-0.002474932,0.014210082,0.02702282,-0.004099062,-0.0019805091,-0.0015889148,-0.042528827,0.0023199846,-0.024025293,-0.043565564,-0.038224105,0.019236011,-0.040184893,0.007961477,-0.036083017,-0.029592128,-0.0038567807,0.00931938,-0.003946932,-0.012745125,0.017185071,0.025107108]},{"id":"class-PermissionsBitField","type":"class","source":"main","text":"Class: PermissionsBitField\nProperties: Flags: Record","meta":{"url":"/docs/classes/PermissionsBitField"},"embedding":[-0.001795852,0.02318356,0.008712955,0.026264505,-0.005028385,0.011799362,-0.010941723,-0.031399414,0.004599566,-0.019479873,0.040336337,0.008183076,0.03434925,0.026198953,0.024297945,-0.008155762,0.006435022,0.00415709,0.037124287,0.00242679,-0.030918697,0.0141046075,0.015371947,-0.0066808425,-0.020594256,-0.0005380727,-0.01206157,-0.050824657,0.017644417,0.0105647985,0.01370037,-0.016366152,0.011111066,0.003321302,-0.0146399485,-0.029148793,0.024276095,-0.0009894257,-0.014825679,-0.013154103,-0.019097485,-0.010067696,-0.039527863,-0.0018873516,0.015262693,0.03561659,0.009718086,0.027247785,-0.01036268,0.02133718,-0.008991551,0.029542105,0.009832801,0.013263357,0.042215493,0.062842526,-0.0038156733,0.01699982,0.01855122,-0.021959923,0.02348947,-0.0060580983,-0.017720893,-0.0076859733,0.0024445436,0.037430197,-0.05807908,0.07346195,0.06314844,0.023074307,0.021599388,0.021457357,0.0027723038,0.0489455,0.032579347,0.011777511,0.043460984,0.018048653,0.0016852329,-0.02100942,-0.007866241,-0.0032557498,-0.033300422,-0.00023523612,0.042237345,0.039615266,-0.030809445,-0.002156388,-0.0023503127,-0.03620656,-0.030263178,-0.008226777,-0.03194568,0.0025797447,-0.008674716,-0.031443115,-0.06091967,0.004820804,-0.03878494,-0.020047989,0.05318453,0.067562275,-0.009958442,0.0031983918,-0.00037931398,0.012017868,-0.0050720866,0.02316171,0.012706164,-0.025281224,-0.05283492,0.022615444,0.013514639,0.028973987,0.021064045,-0.020801838,-0.0044247606,-0.013383536,-0.0016428973,0.0058505167,-0.045755304,-0.03000097,-0.0019119337,-0.0068720356,-0.014880306,0.00040116464,-0.028952137,-0.062187005,0.031552367,-0.025565283,0.02279025,-0.022145653,0.06231811,-0.03450221,-0.019818557,-0.0117665855,-0.0005633376,0.02971691,-0.061138175,-0.036621723,-0.008838596,0.007183408,0.031246457,-0.004299119,0.022549892,0.024166841,-0.06174999,-0.017928474,0.040030427,0.028536975,0.003414167,-0.0015227186,-0.010586649,0.007942718,-0.0005008583,-0.055675507,0.036578022,0.02515012,-0.035966203,0.014552546,0.014869381,-0.0023066113,-0.011974167,-0.0031874664,0.0039467774,0.008794894,0.029935418,-0.03225159,-0.03852273,-0.00012751915,0.016682986,-0.01990596,-0.029476553,-0.05641843,-0.03524513,0.023576872,0.02041945,0.0005128079,-0.056942847,-0.04212809,-0.0036135544,0.02164309,0.0045804465,-0.049469918,0.015229917,0.014181085,0.022528041,0.011395125,0.0075821825,0.007440153,0.031880125,0.04955732,0.026657818,0.021697715,-0.019796707,-0.016704837,-0.022243982,-0.017808296,-0.036075454,-0.09902724,-0.043155074,0.0051540267,0.01451977,0.0004861774,0.0007217549,-0.061444085,0.0023516784,-0.011635481,-0.04466277,0.00055446074,0.020179093,0.0035889726,-0.021654014,-0.0101550985,0.005271474,0.013689444,0.033147465,-0.025652686,-0.04145072,-0.013481863,0.009843727,-0.041996986,0.001910568,0.004288194,0.0014913082,0.05519479,-0.020594256,0.032426395,0.012640612,-0.02381723,-0.06896071,0.007959107,-0.011285871,-0.036665425,-0.03520143,0.012039719,-0.023380216,0.030197626,-0.0066152904,-0.029192494,0.0033158392,0.008636477,-0.0072981236,0.03271045,-0.026832623,0.01650818,0.010728679,0.008183076,0.025565283,-0.010827007,-0.029498404,0.03939676,-0.014432367,-0.014814754,-0.032207888,-0.0020962986,0.0011546713,0.059914537,0.020222794,-0.0023462158,-0.028515125,-0.08049787,-0.030525386,-0.054451868,-0.021806968,0.0030754819,0.06922292,-0.008303255,-0.028187364,-0.05060615,-0.0065169623,0.023707977,0.04212809,-0.018693248,-0.008303255,-0.05781687,0.017382208,-0.014913082,-0.0220364,-0.0013151371,0.022571743,0.013175954,-0.023270963,0.039047148,0.007767913,-0.014814754,0.022112878,-0.011624556,0.039243802,-0.023402067,-0.009335699,-0.009810951,0.06651344,0.00267261,-0.020714436,0.020026138,0.032491945,-0.08626644,0.052616414,0.033060063,0.002906139,0.021304403,0.0026780728,-0.01288097,0.023292813,0.026351908,0.029236196,-0.013339834,-0.02547788,-0.04328618,0.039265655,-0.025543433,-0.06572682,-0.03714614,-0.07049026,-0.031923827,0.038457178,-0.012782642,0.011864914,-0.017557014,-0.0044083726,0.01370037,-0.027335187,-0.029301748,0.015066037,0.03201123,-0.0066152904,0.06437207,0.045449395,-0.013307058,-0.01271709,0.027357038,-0.018441966,0.045056082,-0.0071233185,-0.0067136185,0.014814754,0.050125435,-0.044203904,0.006637141,0.05349044,0.0053889216,-0.007287198,-0.0016879642,0.010013069,-0.01646448,-0.036927633,0.025980446,0.021424582,-0.0152408425,-0.008592776,0.018420115,-0.054670375,-0.04492498,-0.03649062,-0.06362915,0.019742081,-0.082726635,-0.034436654,0.048377384,-0.033081915,0.039418608,-0.022396937,-0.05121797,0.00068795466,0.0013779579,-0.04142887,-0.02545603,0.016726688,-0.023926483,-0.00040082322,0.019993363,0.024494601,-0.016377077,0.040576693,-0.0037938226,0.028231066,-0.01955635,0.007511168,-0.049076606,0.0066808425,0.043766893,-0.0325575,-0.03196753,0.0228121,-0.0021085897,-0.015546751,0.037058737,-0.040817052,0.0048972815,0.024407199,0.038719386,0.08246443,0.009958442,-0.026592266,0.03393409,0.026002297,0.07044656,0.008472597,-0.0489455,-0.036665425,-0.007407377,0.026810773,0.04531829,0.018649546,-0.05423336,-0.031727172,0.024713108,0.0749915,0.0085436115,0.0441165,0.020758137,0.03321302,-0.025281224,0.058647197,-0.006555201,-0.0015131589,0.008303255,-0.000092011804,-0.0041625528,-0.018201608,0.013492788,-0.0022355968,-0.025521582,0.0015568602,0.0054544737,-0.034065194,-0.041669227,0.021577537,-0.025521582,-0.0033076452,0.0012850926,-0.007751525,0.026963726,0.018791577,-0.04053299,-0.0065606637,-0.043111373,0.0032776005,-0.009761787,-0.006844722,0.01845289,0.028012559,0.012192674,0.004755252,-0.03301636,-0.0018040459,-0.042630658,0.036752827,-0.016377077,-0.0034278238,0.015000485,-0.07796319,0.016672062,-0.047066342,0.02248434,0.042892866,-0.003927658,-0.02082369,-0.010308053,-0.019796707,0.011012738,0.05248531,0.062230706,-0.021817895,-0.0015896362,-0.04343913,-0.010493784,0.025587134,0.0027682066,-0.02908324,0.026920024,0.031530518,0.022702847,0.00014151723,-0.012039719,0.026963726,-0.038631983,-0.00017890235,-0.03133386,0.022101952,-0.011001812,-0.015852662,-0.0065114996,-0.013907951,0.08919443,0.09902724,0.0358788,-0.020102616,-0.037058737,-0.039353058,-0.021096822,-0.006096337,-0.008532686,-0.028187364,0.01288097,0.012520433,-0.03788906,0.05344674,-0.030241327,0.00452582,-0.022418788,0.005484518,-0.010548411,0.0024814168,0.039680816,0.0016019272,-0.020004287,-0.043788742,-0.007729674,0.018398264,0.055019986,-0.042040687,-0.0057904273,-0.017906625,-0.030787595,-0.0028405872,0.052004594,-0.031464964,-0.010887097,-0.0023066113,0.0018996426,0.015022336,-0.007101468,0.0027067517,-0.01955635,-0.03983377,0.023686126,0.0011696937,-0.040336337,-0.0016319719,-0.013733146,0.003397779,0.0057849647,-0.005230504,-0.012924671,0.002922527,0.03168347,0.0023475813,-0.0033021825,-0.013110402,0.0037228079,0.0038784938,0.015513975,-0.030132074,-0.018802501,-0.003780166,-0.0056320103,0.017404059,0.02543418,0.002299783,-0.011941391,0.0069430503,-0.021774193,0.017174626,0.017185552,0.032120485,-0.007735137,-0.017983101,0.013307058,0.005653861,-0.04951362,-0.0053643393,-0.012870044,0.008341493,0.003954971,0.010515635,-0.003971359,0.06174999,-0.009887428,-0.025412329,0.041057408,-0.016125795,0.056025118,-0.022659145,-0.004891819,-0.021315329,-0.037779808,0.037277244,0.014563471,0.01191954,-0.03032873,0.023707977,0.012323778,0.013317984,0.003108258,0.073505655,0.0408389,-0.0057685766,-0.010138711,-0.02447275,-0.0050065345,0.009821876,0.0057904273,0.024691258,0.031049801,-0.0036381364,0.039374907,-0.040008575,0.015863586,0.023096157,0.018507518,-0.026264505,0.0019774856,0.014290338,0.010493784,0.022243982,-0.006642604,-0.019949662,0.017010747,-0.031443115,0.018802501,-0.03292896,-0.012214525,0.009472265,0.0035643906,-0.0051840716,-0.0048672366,-0.014159234,0.027269635,-0.02442905,0.033846688,-0.018463816,0.021697715,-0.02442905,0.0064514102,-0.011985092,-0.01763349,-0.0037364645,0.01124217,0.013416312,-0.02021187,0.029279897,0.013929802,-0.020058915,-0.008445284,0.04955732,0.030394282,-0.0013021633,-0.02805626,0.060570057,0.001393663,0.024385348,-0.01069044,0.025718238,-0.04175663,0.03286341,0.023139859,-0.016497256,-0.0146727245,0.0080082705,-0.015754333,0.002775035,-0.00054831523,-0.0028597065,-0.010220651,-0.046935238,0.0053588767,-0.04442241,0.023423918,0.018398264,0.019512648,-0.0152408425,-0.02246249,0.016868718,0.02009169,-0.05086836,-0.019938735,-0.018299935,0.009816414,0.011548079,0.030219477,0.0060253222,-0.0031901977,-0.010695903,-0.010237039,-0.0014325845,-0.0033103765,0.0063093808,0.042390298,0.009729011,0.009920204,-0.023445768,-0.048464786,-0.024997165,-0.030700192,-0.0053261006,0.04304582,0.014039055,-0.008844059,0.015371947,0.017578864,0.008237703,-0.030896846,0.00091226544,0.024822362,0.030481685,-0.012509508,-0.00051349076,-0.02836217,-0.0061673517,0.012826343,-0.042827312,-0.016398927,0.011493452,0.0032147798,-0.0025592598,0.0066262158,0.011963242,-0.008046509,-0.004927326,-0.005296056,0.0019788514,0.021413656,0.0117665855,-0.00419806,-0.0061837398,0.01140605,0.035114028,0.029476553,0.012596911,-0.009576056,0.0041707465,0.007964569,0.033540778,0.029432852,0.02770665,0.035594743,0.0008603701,-0.0007654563,-0.0058013527,-0.0023748947,-0.009663459,-0.021610312,-0.012443956,0.027619246,0.0013410848,0.029651359,-0.011220319,-0.006762782,-0.0012762157,0.019654678,0.023249112,-0.018562144,-0.029891716,0.007855316,-0.03749575,0.02164309,-0.05611252,0.040554844,-0.0014940395,0.0049655647,-0.016366152,-0.037583154,0.0456679,0.016224122,-0.040620394,-0.00888776,-0.018583994,0.0035889726,-0.05030024,0.0782254,-0.021435507,-0.04461907,-0.053577844,-0.01050471,-0.01517529,-0.032513797,0.00062615826,-0.000079166,-0.034458507,0.034524057,-0.017043522,-0.019742081,0.0653335,0.008488985,0.017393133,-0.055063687,-0.06437207,-0.0391127,-0.00063981494,-0.017480535,-0.012968373,-0.023096157,-0.022025475,-0.043963548,-0.006391321,-0.0022205743,-0.024079438,0.0018586726,-0.024560153,0.04955732,-0.008898686,0.0046432675,0.020965718,0.0029279897,0.020922016,-0.05349044,-0.01709815,0.021916222,-0.021468284,-0.046498224,0.007341825,0.016256899,0.036774676,-0.013066701,-0.03061279,0.014039055,-0.017076299,0.021763267,0.019130262,0.0146399485,0.001885986,0.04304582,0.0064787236,0.062449213,-0.010985424,-0.016551882,-0.010368143,-0.04527459,0.0424777,0.03434925,0.024079438,-0.010368143,0.009149968,0.03035058,-0.0440728,0.024188692,0.042499553,0.036425065,0.02250619,-0.00088495214,-0.02606785,-0.01824531,0.008374269,-0.012542284,0.02868993,0.008964237,-0.0014639948,-0.029891716,0.038916044,0.012553209,-0.027204083,0.021621238,-0.027007427,-0.013175954,-0.008904148,0.007341825,-0.02215658,0.030831296,-0.006882961,0.026351908,-0.0014298533,-0.015754333,0.001996605,-0.02543418,-0.013416312,-0.014781978,0.008297792,0.004741595,0.010581187,0.037605003,-0.037583154,0.011149304,-0.017021671,-0.00075657945,-0.006254754,0.037605003,-0.016737614,0.0101550985,0.03710244,-0.020288346,0.008046509,0.009199132,-0.020922016,-0.051436476,-0.005845054,0.008357882,0.0023707976,0.045449395,-0.030765744,0.005320638,0.01887898,-0.027684798,0.023926483,0.036621723,-0.03939676,0.059608627,0.013831474,-0.020779988,0.00045237713,-0.0035097639,-0.008434359,-0.02442905,0.011613631,-0.030197626,0.015656006,0.014268488,-0.01402813,-0.012848194,-0.03581325,0.01222545,-0.020834614,0.021479208,-0.02348947,-0.0067573194,-0.010149636,-0.022080101,-0.024166841,0.026133401,-0.0074674664,-0.007729674,0.021927146,0.039943025,0.022112878,-0.009166356,-0.018157907,-0.0068064835,-0.013951653,-0.0110182,-0.027794052,0.0012591449,0.018037727,0.06415357,0.0017439566,0.005653861,-0.02578379,-0.00913358,0.06393506,0.017884774,-0.0047170133,0.022593593,-0.041581824,-0.01066859,0.00066678686,-0.046454523,-0.018037727,-0.0069375876,0.03030688,0.027357038,0.045143485,-0.006762782,0.013307058,-0.016617434,-0.0055637266,0.002865169,-0.0015049649,-0.039680816,-0.004400179,-0.0018204339,-0.0039822846,-0.063803956,0.025084568,-0.01709815,0.01857307,-0.016409853,0.049120307,-0.039593413,0.02316171,-0.0011539885,-0.010023994,-0.0047252076,-0.011176618,-0.010635814,0.0056320103,0.026679669,0.05768577,0.026504863,-0.028165514,0.016857792,0.033387825,-0.03332227,0.014301264,-0.014443292,-0.03909085,-0.018321786,-0.0140718315,-0.004416567,-0.029760612,0.015929138,-0.031923827,0.049819525,0.042586956,0.020954791,-0.020801838,0.029782463,0.019807633,0.0055473386,0.04610491,0.036075454,0.0093794,0.0111656925,0.016672062,-0.008259553,0.0039495085,-0.0069211996,-0.014727351,0.041931435,-0.0049655647,-0.026876323,0.021162374,-0.03740835,-0.02041945,0.027204083,-0.016442629,-0.006866573,0.029848015,-0.0028050798,0.008423434,-0.038697537,-0.025346776,-0.022746548,-0.0038429867,-0.029214345,0.0014803829,0.005910606,0.0062984554,-0.019436171,0.00059918634,-0.017240178,-0.0036954945,-0.0037446585,-0.038304225,0.039047148,-0.03847903,0.0034851818,-0.0062602167,0.024887912,0.02009169,-0.012203599,-0.0455805,0.028121812,0.04044559,-0.008319642,-0.013394461,-0.0060362476,-0.020878315,0.015000485,0.016693912,0.0260897,0.010329904,0.0075002424,-0.018671397,0.0039795535,-0.010247964,-0.0037747032,-0.013547415,-0.011832138,0.0030153925,0.0024322527,0.012826343,0.0009860115,-0.0036791065,-0.014476068,0.00028491224,0.01003492,0.011362349,0.026635967,0.028646229,0.0260897,0.013405386,-0.00029293555,-0.0117338095,0.020528704,0.0067409314,0.018868053,-0.010264352,-0.014694575,-0.0070031397,0.018037727,-0.026504863,-0.023052456,0.04140702,-0.04044559,0.03194568,-0.0040396424,-0.0015787109,-0.030743893,-0.01578711,0.00092045945,0.00921552,-0.037910912,0.008609164,0.020878315,-0.019621901,0.013317984,-0.017371282,0.053796347,-0.0016210466,0.03129016,-0.020004287,0.030940548,-0.026941875,-0.005686637,-0.028821034,0.016093018,0.0016510913,0.005107594,0.02156661,-0.030918697,0.012105271,0.008920536,0.0021673134,-0.020441301,0.027881455,-0.042434,0.011722884,-0.016595583,0.000022170749,0.01566693,-0.008696566,0.0071233185,0.028602527,-0.01271709,-0.06970364,0.005992546,-0.0054599363,0.012006943,0.0033021825,0.004042374,0.028602527,-0.011722884,0.001902374,0.00032980854,-0.019512648,-0.026461162,0.008631014,0.02086739,-0.005164952,0.015950989,0.0025674538,0.012312853,0.02205825,0.03885049,0.002041672,0.011220319,-0.007112393,0.0005107594,-0.01419201,0.011832138,0.018955456,0.0056483983,-0.00009226787,0.029935418,-0.031552367,-0.015961913,-0.035376236,0.045056082,0.02093294,0.011996018,0.0071069305,-0.012269151,-0.024101289,0.012148973,-0.005910606,-0.02672337,0.047197446,0.011274946,0.0031246457,-0.024210542,0.00074838544,-0.009248296,-0.013602042,0.0006165986,0.008450747,0.01988411,0.019742081,0.014399592,-0.0015322783,0.015142514,-0.03168347,0.0087020295,-0.02234231,-0.008106599,-0.0017221059,0.015765259,-0.01648633,-0.0012181748,0.016082093,0.053359337,-0.004763446,-0.077526174,-0.0069539757,-0.011722884,0.01353649,0.021599388,0.008237703,-0.034414805,0.0074019143,0.0012045181,0.024013886,-0.009745399,-0.038326073,-0.034065194,0.0046596555,-0.016672062,-0.02283395,0.012006943,-0.024560153,-0.011438826,-0.022396937,-0.00407515,0.0039850157,0.03382484,-0.012105271,0.0073363623,-0.009259221,-0.031421263,0.009089879,-0.021752343,-0.006014397,0.03426185,0.020801838,0.0070413784,-0.021162374,0.0008719783,0.035441786,0.0097891,0.035114028,0.0005858711,-0.0024404468,0.020353898,-0.024691258,0.015940063,-0.0070577664,-0.005522757,0.024101289,0.0015595915,0.014454218,-0.027641097,0.038063865,-0.03882864,-0.00636947,0.005320638,-0.033540778,0.0015950989,0.010728679,-0.00039877472,0.038347926,0.010073159,-0.013121327,-0.010373605,0.013656668,0.010898022,0.014377741,-0.0034005104,-0.017786445,0.016388003,-0.007489317,-0.0091772815,-0.011296797,-0.0031983918,-0.016245972,-0.0034742565,-0.010903484,0.020583332,-0.023533171,0.0096197575,0.0011464773,-0.03889419,0.020222794,-0.0020553286,-0.013427237,0.004173478,-0.02805626,0.035114028,0.007735137,-0.009565131,-0.017480535,-0.01878065,0.021675864,0.009925667,0.023598723,0.02742259,-0.014902157,0.036446918,0.02138088,0.017622566,0.001554129,-0.022145653,0.01335076,0.007259885,-0.0125859855,0.016049316,-0.026351908,0.0038702998,0.018813428,0.0029088703,0.0033404212,0.026592266,-0.013394461,0.00023813816,0.0049464456,-0.006653529,-0.008226777,-0.023139859,0.006435022,-0.013143178,0.001554129,-0.018299935,-0.013547415,0.0132524315,0.019731155,0.027051128,-0.010805156,-0.016114868,0.018004952,0.027160382,-0.0020512317,-0.0046268795,-0.023380216,-0.045755304,0.01568878,0.014781978,-0.022123802,0.012214525,0.008625552,0.0149240075,0.0092701465,-0.027575545,0.0021195149,0.00849991,-0.0001072902,0.030175775,0.014836605,-0.06275512,-0.04337358,-0.030241327,-0.010182412,-0.011635481,0.028864734,-0.006833797,-0.023402067,-0.0125859855,-0.0058013527,0.05279122,0.017349431,0.04164738,-0.022440638,-0.021992698,-0.013361685,0.005779502,0.013296133,-0.010368143,0.04271806,0.010821545,-0.028733632,-0.03266675,-0.016377077,0.008226777,-0.015186216,0.016311524,-0.027160382,-0.0035261519,-0.006746394,0.0088604465,-0.030678341,-0.02381723,-0.00708508,0.006254754,-0.0120506445,-0.011657332,-0.008647403,-0.0077023613,0.0047497894,-0.010750529,0.031508666,0.0053943843,0.029432852,0.017600715,-0.0063803955,-0.014246637,-0.03102795,0.007888092,0.0074019143,0.020157242,-0.043985397,0.0056156223,-0.005894218,-0.026679669,-0.016038392,0.010903484,-0.009690772,0.02670152,0.0065989024,-0.0117338095,0.006555201,-0.014650874,-0.037058737,-0.0070359157,-0.041887734,-0.0045777154,-0.016530031,0.019152112,0.019458022,-0.00012401963,0.0031983918,0.008106599,-0.023576872,0.0013383535,0.002439081,-0.013121327,-0.025106419,-0.0011512572,-0.0059706955,0.0013274282,-0.013307058,-0.021402732,0.0026056925,0.009865577,-0.023904633,0.019840408,0.03301636,-0.008652865,-0.0009853287,-0.013022999,-0.018278085,-0.014836605,-0.025171971,0.016355226,0.01650818,-0.0059379195,-0.009690772,0.016540958,-0.021632163,-0.05244161,-0.021697715,-0.003651793,0.025346776,0.0277285,0.025324926,0.0125859855,0.047809266,-0.0010809253,0.023292813,0.014344965,-0.016595583,0.0014080026,0.0123347035,-0.011788436,-0.03362818,0.03686208,-0.021763267,-0.06677565,-0.011460676,0.016956119,0.0015568602,-0.0034524058,-0.016355226,0.029520255,-0.013995354,-0.020277422,0.0260897,0.008931462,-0.0054626674,-0.012312853,-0.0082923295,-0.009860115,0.0025606253,0.022396937,-0.023729827,-0.007511168,0.0099966815,-0.015098813,-0.017414983,0.034065194,0.0097126225,-0.030263178,0.00055616786,-0.015819885,0.0078116143,0.048377384,-0.017622566,-0.040685948,0.015164365,-0.0076805106,0.031661622,-0.02009169,0.04531829,0.005148564,-0.05847239,0.06258032,0.012520433,0.00079754944,-0.0036818378,-0.0024363496,-0.012520433,-0.0046132226,-0.009614294,-0.0040724184,-0.027859604,0.028733632,0.053053427,-0.010799694,0.01337261,0.03032873,0.021675864,0.028099962,0.028995838,0.001672942,0.024975315,-0.010827007,0.024210542,0.051786087,-0.002434984,0.015513975,-0.031180905,0.02100942,-0.00015278398,-0.018223459,0.02166494,0.003151959,0.026330058,-0.00079345243,0.017152775,-0.018835278,0.021828819,-0.020157242,-0.0012987492,-0.006418634,0.0024008423,0.0018054115,-0.005845054,-0.0069211996,0.05392745,-0.008925999,-0.004228105,0.040991858,0.0069375876,-0.009559668,0.0077897636,-0.00022584715,-0.001926956,-0.021140523,0.014224786,0.01878065]},{"id":"class-RateLimitError","type":"class","source":"main","text":"Class: RateLimitError\nProperties: global: boolean, retryAfter: number","meta":{"url":"/docs/classes/RateLimitError"},"embedding":[0.0029281797,0.025792131,0.0016874768,-0.016397806,-0.039678346,0.058442846,-0.019018074,0.009961849,-0.0046790503,-0.035935104,0.007444218,-0.01511786,-0.036949404,0.021143269,-0.011978368,-0.031877916,-0.014163937,0.025864583,0.03354426,0.04520868,0.01329454,-0.00078411825,0.004286614,0.017677754,-0.01295644,-0.0045583006,0.032385066,0.012159493,0.010094673,-0.017170604,0.024777835,-0.01903015,-0.04617468,0.007794392,-0.0070276316,0.0010520316,0.018523002,0.029245572,-0.015890658,-0.047744423,0.018390177,-0.058104746,-0.03279561,-0.019066375,-0.06592932,-0.0021991536,-0.0010686347,-0.019090524,-0.0053793984,0.011936106,-0.03477591,0.02301489,-0.011797244,0.05380606,0.051680863,0.00037187128,-0.035717756,0.068827316,0.041296393,0.005334117,0.015951034,0.021433068,-0.032699015,0.011386695,-0.036055855,0.054675456,-0.01907845,-0.032264315,-0.002298772,0.036249053,-0.042697087,0.025574783,0.036007553,-0.0069551817,-0.006260871,0.036780354,0.00943055,0.06708852,0.046875026,0.018184902,-0.022531891,-0.021807393,-0.046778426,0.012497592,0.014659012,-0.011199533,-0.08737447,-0.04250389,0.021674568,-0.02291829,0.021976443,-0.012135343,-0.030284021,0.042890288,0.008005704,-0.058587745,0.011767057,-0.023413364,0.009804874,0.02639588,0.043952886,0.010619935,-0.008355878,0.025405733,-0.017689828,0.00856719,-0.04602978,0.04093414,-0.007993629,-0.03750485,-0.029921772,-0.0022731128,-0.06670213,-0.0012437217,0.014719387,-0.06481843,-0.021203645,0.032457516,0.0052133673,0.021505518,-0.03054967,-0.050714865,0.043252535,-0.014550337,0.012231943,-0.009394325,0.038688198,0.031781316,-0.01046296,0.04240729,0.046971627,0.018679976,0.0011584422,-0.024632934,0.0038700274,0.0039937957,-0.016542707,-0.013982813,-0.022060966,-0.004597544,0.0065687825,0.024681235,0.0386399,0.03470346,0.028110527,0.028279575,-0.002790827,-0.0029628954,0.028352026,0.03434121,-0.027289428,0.01701363,-0.058056448,0.012274205,-0.028714275,0.0008490212,0.012594192,0.039943993,-0.06404563,-0.014767686,-0.043832134,0.0013161715,0.025164234,-0.047140677,-0.013451515,0.010589747,-0.0036073967,-0.041030742,-0.0753961,-0.03880895,0.055786353,-0.008162678,-0.023196014,-0.042383138,0.0383018,-0.027458478,0.005651085,0.006435958,0.016373657,0.031032668,0.012256092,0.03463101,-0.0031062856,-0.0030398732,-0.022085117,-0.029076524,-0.040499445,-0.0009893927,0.008923401,-0.021795318,0.031733017,-0.0047092377,-0.00849474,-0.015999332,-0.039219495,-0.0047001815,0.006749907,0.022217942,-0.04552263,0.011392732,-0.03400311,-0.0025508371,0.037166752,-0.00856719,0.015697459,0.008168716,0.003547022,-0.06250004,-0.032240164,-0.0048209312,0.04148959,0.03707015,-0.028327875,0.008023816,-0.011851582,0.0036134343,0.025985332,0.007371768,0.006345396,-0.013330765,-0.05404756,-0.042721238,-0.025140084,0.008229091,0.007903066,0.008633602,0.011205571,0.046464477,-0.0014044697,0.025767982,-0.0015938958,-0.03453441,0.007456293,-0.047285575,0.034655157,0.013161715,-0.004060208,0.006761982,0.005512223,-0.044967182,0.0035440032,0.0140190385,0.03006667,0.029390473,-0.0012633435,-0.009907511,0.009847136,0.018993925,0.00033375967,0.014296763,-0.00082789,0.0005305439,0.008458516,-0.039364398,0.0075891176,-0.01698948,0.0191992,0.03330276,-0.0061159716,-0.044001184,0.012461367,-0.017098155,-0.025164234,-0.008621527,-0.031757165,-0.020249723,0.06322453,-0.011259908,0.020648196,-0.043349136,-0.008319653,-0.0013259824,0.06491503,-0.06317624,0.039654195,0.02087762,0.043373287,-0.011585932,-0.029825171,0.043856286,0.00031583587,-0.027844876,0.00607069,0.020334246,0.04863797,0.015492184,0.018088302,0.009279613,0.035138156,0.0061703087,0.0025870618,-0.011320283,0.035717756,-0.04668183,-0.01223798,0.025381584,-0.008802651,-0.025212534,0.007915142,-0.0379154,0.051777463,-0.00278328,0.0006573311,-0.04610223,-0.020032372,0.055061854,0.024089562,0.0008241166,0.028376175,0.024125786,-0.013463589,0.015564634,-0.040571894,-0.009841099,-0.0046820687,-0.03083947,0.06105104,-0.052453663,0.047406327,0.01043881,0.0020919882,-0.03380991,0.013113416,0.03774635,-0.02642003,-0.039774947,-0.018426402,-0.006774057,0.058780946,0.022857916,-0.012992666,-0.03059797,0.020503296,0.02457256,-0.0050594117,0.012751167,-0.04214164,0.034075562,-0.014405437,0.023570338,0.04148959,-0.02272509,-0.009798837,0.05815305,0.025019335,-0.010970108,-0.00611899,-0.037335802,0.06399733,-0.015407659,-0.009062263,-0.006846507,-0.051391065,0.000056271238,-0.028207125,0.016120082,0.027506778,-0.027047928,-0.010408622,0.03511401,-0.02656493,0.05742855,-0.019537298,-0.01718268,-0.010185236,0.01869205,-0.03047722,-0.062258538,0.01715853,-0.0038247462,-0.028182976,0.009038114,-0.009273576,-0.028955774,0.014936736,0.026927179,-0.050908066,0.05617275,0.011163308,0.039581746,0.03769805,0.009979961,0.0074985554,-0.005020168,0.015323135,0.033834063,-0.028545225,0.012074968,-0.048106674,-0.060085043,0.009315838,0.03376161,-0.00093430065,-0.044073634,0.04223824,0.010481073,0.022302466,0.015347284,0.020165198,0.009339988,0.020116897,-0.035548706,-0.03023572,0.03504156,0.023787687,-0.0058020223,-0.017979627,0.03393066,0.071000814,-0.04658523,0.004694144,0.0051680864,0.01747248,-0.01235873,0.06051974,0.006774057,0.018076228,-0.028279575,-0.025598932,0.0023666937,-0.018462626,0.05317816,-0.0067378324,0.005433736,0.011585932,0.000693556,0.009822987,-0.01682043,-0.025067635,-0.0734641,0.030936068,0.009255463,0.054240756,0.003136473,0.052260462,0.05322646,0.013089266,-0.04578828,-0.0077883545,-0.025816282,0.025671382,0.0132341655,0.017122304,0.014972961,0.023666937,0.02301489,0.0148642855,-0.014791836,0.029583672,-0.012437217,-0.051439364,-0.015661234,-0.031829618,0.025647232,-0.05255026,-0.008108341,0.02627513,0.003616453,0.012932291,-0.027941477,-0.02719283,-0.011199533,-0.028424475,-0.019537298,0.05718705,0.025381584,0.020153122,0.0036073967,0.02685473,-0.009267538,-0.030042522,0.02627513,0.049000222,-0.02615438,0.017967552,0.022990739,0.014381287,-0.009587524,0.05709045,-0.021107044,-0.021964367,-0.0025976275,0.024294836,-0.04132054,-0.009913549,0.041199792,0.03021157,-0.007456293,-0.027410178,0.027724126,-0.009798837,0.007033669,0.03347181,-0.0121111935,-0.04989377,0.012328543,-0.018559227,-0.05312986,0.026057782,-0.016977405,-0.016808355,-0.062644936,-0.027458478,0.019090524,-0.01660308,0.01334284,-0.0032542038,-0.06592932,-0.012992666,0.0029689327,-0.042866137,0.008802651,-0.01324624,-0.005479017,-0.039074596,0.0024632935,-0.017074006,0.03347181,-0.009792799,0.020128973,0.029801022,-0.027410178,-0.03535551,0.021107044,0.01312549,0.0083498405,0.022193791,0.0056842915,0.0032028854,0.017895103,0.007184606,-0.028496925,-0.03001837,0.010420698,-0.0023817874,0.004177939,-0.0046911254,0.0051801614,-0.009466775,-0.066798724,0.03436536,0.010058449,-0.026130231,0.01329454,-0.04516038,-0.0003375331,0.021891918,0.017508704,0.0186196,0.033665013,-0.022471515,-0.038591597,0.008253241,-0.013053041,0.029414622,-0.009853174,0.022374917,-0.0072268685,-0.040088896,0.0036798466,-0.0019984073,-0.0038670085,0.028931623,-0.002546309,-0.03006667,-0.005980128,0.0086034145,-0.020020297,0.040740944,0.018679976,-0.015540484,0.03504156,-0.02670983,0.017375879,0.01562501,0.012437217,-0.0017569079,-0.02644418,0.027458478,0.0044767945,-0.007033669,-0.026806429,0.00669557,0.05317816,-0.03784295,0.023002815,-0.005300911,0.03303711,-0.028835025,0.031201718,-0.012044781,0.02291829,0.0022655658,0.0023666937,-0.028762573,-0.015866509,0.00030621365,0.024149936,-0.009853174,-0.0034685347,0.027772427,-0.022048892,-0.018221127,0.013451515,0.018945625,0.044387583,-0.004636788,0.03905045,-0.0095996,-0.050666567,0.0025070652,-0.019066375,-0.028931623,-0.07008312,0.059408844,-0.025647232,0.0056208977,0.0033900472,0.0015682365,-0.002387825,-0.010227498,0.024113711,-0.0041869953,-0.007975517,-0.041030742,-0.013874139,-0.04559508,-0.058056448,-0.01535936,0.007939291,0.050908066,0.03023572,-0.020370472,-0.008247203,-0.017726053,0.024801984,-0.020394621,0.033568412,-0.02111912,-0.01874035,0.01742418,-0.008850952,0.02651663,-0.014151863,0.018559227,-0.014900511,0.020962145,0.002526687,-0.016083857,0.031032668,-0.0072751683,-0.026878878,-0.023570338,0.0019048263,0.0012573061,-0.017532853,-0.04141714,0.01776228,0.003169679,-0.008035892,-0.026106082,0.021662492,-0.006058615,0.028810874,-0.036683753,0.04107904,-0.018824875,-0.01336699,-0.019730497,-0.009750537,0.033423513,0.040740944,-0.0040300204,0.0010656159,-0.048154972,-0.001094294,-0.025043484,-0.031757165,-0.048251573,-0.012871916,-0.036925253,-0.009376213,-0.04907267,-0.031467367,0.036466405,-0.043011036,0.011048596,0.015854433,0.000801476,0.01735173,-0.020913845,-0.0057265535,0.015178235,-0.011561782,-0.0073898807,-0.017581154,-0.009587524,0.0077098673,0.017858878,0.025043484,0.020672346,0.00052752515,-0.01526276,0.020430846,-0.037432402,0.035935104,0.01519031,0.027965626,0.0053793984,0.018064152,0.009563375,0.028086375,-0.034244608,0.015806133,-0.031733017,0.029197274,-0.0038579523,0.018704126,0.022990739,-0.0035379657,0.007975517,0.03125002,-0.027313579,0.0044043446,-0.011948181,0.062644936,0.03847085,0.04909682,-0.018993925,-0.022471515,0.051149566,0.004866212,-0.0072812056,0.0066533075,-0.019790873,0.0020482165,-0.02651663,0.034486108,-0.021324394,0.020551596,0.017496629,0.022471515,-0.00052186503,-0.022857916,0.02260434,-0.009822987,-0.006834432,0.008060041,-0.0076011927,-0.0024029186,0.0019440699,0.0076374174,0.0018459607,0.04919342,0.020141046,-0.047889322,0.024222387,0.0058110785,-0.063127935,-0.029559523,-0.04163449,0.03327861,-0.017834729,0.01869205,0.010625972,0.0062246462,-0.03303711,-0.0031757166,0.02274924,0.010499185,-0.0008603415,-0.017206829,0.0007780808,0.019923698,0.03832595,0.014067338,-0.034824207,0.010656159,-0.05626935,0.008096267,0.008150604,0.014236388,-0.013910363,-0.024946885,-0.027869027,-0.03347181,0.007317431,-0.018172827,-0.0065687825,0.0052526114,0.0031153418,-0.004220201,0.014695236,-0.04970057,-0.0043711383,0.0112417955,-0.010161086,-0.033834063,0.008959627,0.028569374,0.023968812,-0.009533187,-0.013572264,-0.011990444,0.012195718,-0.00647822,-0.007407993,0.039605897,0.028134676,-0.035766054,-0.0123647675,0.027265279,0.0012988137,0.00381569,-0.010106748,0.036224905,0.0015954052,0.00655067,0.021107044,-0.04168279,0.013644714,0.02095007,0.03504156,-0.011845544,0.004510001,0.0049446994,0.0039273836,0.05013527,-0.020611972,-0.00928565,0.027313579,0.044073634,-0.018124526,-0.014188088,-0.040523592,-0.036104154,-0.03364086,-0.022205867,-0.014912586,0.06066464,0.034969106,-0.023244314,-0.02082932,0.0052465736,0.021336468,-0.0119723305,-0.01708608,-0.029197274,0.010161086,0.0015025788,-0.027168678,-0.019090524,0.048686273,-0.011036521,0.029728571,-0.012328543,-0.047430474,0.022109266,0.03798785,-0.039702494,-0.03047722,0.031443216,-0.0042896327,-0.0023817874,-0.009925623,-0.003405141,0.027941477,-0.014139787,0.016832506,-0.0024180124,0.04566753,-0.032240164,0.02620268,0.031491518,-0.02668568,0.0025855526,-0.006122009,0.033495963,-0.021469293,0.015226535,-0.019476924,-0.001969729,-0.0014180541,-0.017689828,0.027265279,0.021638343,-0.011857619,0.014453737,0.02702378,-0.009503,0.006822357,0.025357433,0.028134676,-0.005777872,0.008555115,-0.009635825,0.029100673,-0.023642788,-0.029801022,0.017387955,0.028883323,0.033012964,-0.013693014,0.02683058,0.0191509,0.01706193,0.014248462,-0.03033232,0.031105118,0.03429291,0.03296466,0.029004073,0.028231276,0.051101264,-0.042672936,0.039195348,0.0005939375,0.00058714533,0.01053541,-0.02123987,0.024391435,-0.025309132,0.02087762,0.02313564,-0.0041205827,0.021650419,0.009690162,0.010426735,0.023280539,0.01776228,0.024379361,0.014960886,-0.025647232,0.0070397067,0.001790114,-0.009774687,-0.015685383,0.017979627,0.004718294,0.016627232,-0.04115149,0.04542603,-0.0114651825,0.0023410344,-0.0097807245,0.016699681,0.026878878,0.035162307,-0.02625098,-0.024729535,-0.011616119,-0.03405141,0.054965254,-0.016011408,0.008555115,-0.038760647,-0.00040903955,-0.003710034,0.04965227,0.037021853,-0.03487251,0.012763241,-0.047841024,-0.028979924,0.005675235,0.036635455,0.008398141,0.03059797,-0.025260834,-0.0037583339,0.00876039,-0.031950366,0.031733017,0.000427152,0.029511223,-0.006749907,-0.0007169512,0.047092374,-0.028134676,-0.024198236,-0.005349211,0.025381584,0.030936068,-0.03038062,0.03001837,-0.01070446,0.016409881,-0.016421957,0.023220165,0.06027824,0.020454995,-0.013620564,-0.047358025,0.00021017992,0.0376739,-0.0074261054,-0.048154972,-0.01740003,-0.027530927,-0.027917327,0.020201422,0.0031576043,-0.027748277,-0.0052405363,-0.023280539,-0.020515371,0.018897325,-0.007758167,0.029535372,-0.043663085,0.005850322,0.007317431,0.024488036,-0.008138529,-0.014803911,-0.01579406,0.01336699,-0.0042051077,-0.0011629703,0.01927165,0.062355135,0.036369804,-0.004298689,0.044484183,-0.010982184,-0.004597544,0.008217016,0.027772427,0.020744795,-0.029293872,-0.03813275,-0.017315505,0.015516334,0.008138529,0.018897325,0.029052373,-0.018583376,0.027555078,-0.021879843,-0.0036073967,-0.016301207,0.018921476,-0.035814356,-0.0037824837,-0.0064299204,-0.014876361,0.013886213,0.012654566,0.003930402,0.009092451,0.04264879,-0.016120082,-0.04156204,-0.008476628,0.01677213,0.012702866,0.054916956,0.0019123731,0.042697087,-0.0026127212,0.026106082,-0.035572857,-0.005768816,0.016337432,0.05341966,0.02620268,-0.02284584,0.0078004296,-0.027579227,0.0089113265,0.026299281,-0.055303354,0.0068404693,0.014284687,-0.005068468,-0.010305986,-0.016264983,-0.03871235,-0.016421957,0.0073596933,-0.029366322,0.040402845,-0.021179494,0.032771464,-0.026927179,0.031757165,0.046488628,0.023099415,0.014743536,-0.03376161,0.014852211,0.045305282,0.0008127963,-0.0106803095,0.017967552,-0.018317727,0.010088636,-0.022060966,-0.014079413,-0.02442766,-0.0063152085,-0.009961849,0.0028693143,-0.013898289,0.004715275,0.009400363,-0.019187124,-0.020672346,-0.0043952884,0.026347581,-0.031877916,-0.006755945,0.019645974,0.024222387,0.00013923948,-0.029173123,0.007878916,-0.0004252653,0.00535223,-0.0005169596,-0.021469293,-0.03064627,0.028134676,-0.002627815,0.029221423,-0.011773094,0.04511208,-0.011127084,-0.024053337,-0.006846507,0.03013912,0.013934514,0.039992295,-0.02625098,0.016180458,-0.011036521,-0.036538854,0.012594192,0.002054254,0.015371434,-0.0028979923,-0.002677624,0.020696495,-0.004214164,0.022519816,-0.03673205,-0.040475294,0.055351656,-0.018510927,-0.026009481,0.008923401,-0.040716793,-0.005771835,-0.0057325913,-0.005346192,0.010656159,-0.01878865,0.010970108,0.0064902953,-0.023099415,-0.0010158067,0.021662492,0.012099118,0.00066072715,0.025454033,0.009967886,-0.010064486,0.025985332,-0.008114379,0.047406327,-0.009267538,-0.020937994,-0.022169642,-0.0062548337,0.015830284,-0.013753389,0.023679012,-0.0038821022,0.034824207,-0.010312023,0.008289466,-0.046367876,0.014163937,0.024753684,0.014369212,0.036055855,0.028714275,-0.03064627,0.009684124,0.0013380575,0.04520868,-0.037166752,-0.008730202,-0.027120378,-0.00069393334,0.0034775909,0.009877324,0.03832595,-0.008331728,0.0040420955,0.005113749,-0.025454033,0.034969106,-0.007311393,0.015419735,0.00376739,0.020696495,-0.001842942,0.018112453,-0.010263723,0.027216978,0.028158827,0.0021508536,-0.00054412824,-0.029390473,-0.010951996,-0.0019138824,-0.019162975,-0.013596415,-0.016337432,-0.006345396,0.006097859,0.004425476,-0.013572264,0.012654566,-0.04240729,0.017726053,0.00280743,0.031950366,0.01168857,-0.007975517,-0.011785169,0.039291948,-0.012032705,-0.0048752683,-0.015842358,0.021674568,-0.03050137,0.0066774576,0.04945907,-0.033665013,-0.0053160046,-0.012340617,0.007673642,-0.00015669157,-0.051874064,-0.015806133,-0.012702866,-0.023691088,-0.01334284,0.014236388,0.009792799,-0.0023651845,-0.0086879395,-0.023509962,-0.040257946,-0.013934514,-0.011827432,-0.0043258574,-0.0016995518,-0.0109036965,0.020177271,0.0052495925,-0.008826802,-0.017363803,0.032191865,0.005560523,0.012165531,0.0046730125,0.004902437,-0.020008223,-0.023232238,0.003230054,0.0010973128,0.007848729,-0.0058684344,0.0027289428,-0.002574987,0.028786724,-0.015806133,-0.01509371,0.025140084,0.01694118,0.022688866,-0.028496925,-0.012594192,-0.0067982073,0.028158827,-0.012980591,0.020382546,-0.019018074,0.0038488961,0.0042654825,-0.0085188905,-0.0031877917,0.02029802,-0.0070819687,-0.047092374,0.017436255,-0.001531257,0.0026247962,0.0019667104,-0.02454841,-0.014381287,0.012739091,-0.014369212,-0.0038428586,0.013789614,-0.013717164,0.018655825,0.025115933,0.022302466,-0.0036073967,-0.0063936957,0.029728571,-0.002677624,0.03042892,0.012473443,0.0064902953,-0.034824207,-0.009243388,0.050666567,-0.028883323,-0.0018127545,0.007969479,0.0065144454,0.029414622,-0.048927773,-0.01701363,-0.003124398,0.007836655,-0.031443216,-0.025792131,-0.0026519648,-0.012050819,-0.029293872,-0.013016815,-0.0062789833,0.0066291573,0.012968516,-0.013089266,-0.021928143,-0.035790205,0.01696533,0.01869205,-0.00035357015,0.027530927,0.016808355,0.017267205,-0.02658908,-0.004096433,-0.010692384,0.032216016,-0.047188975,0.013825838,-0.0023259406,-0.04569168,-0.039412696,0.014598637,-0.02320809,-0.018752426,0.015866509,-0.04199674,0.017858878,0.00211161,-0.02457256,-0.012509667,-0.025623083,0.03750485,-0.010716534,-0.03296466,0.019162975,-0.017846802,0.03076702,-0.003779465,-0.0017387954,0.02102252,-0.0043952884,0.026106082,-0.011072746,-0.009762612,0.05317816,-0.007208756,-0.036080007,0.00972035,-0.006188421,-0.0114108445,0.01026976,-0.02423446,-0.03330276,-0.036659602,0.034486108,0.0109036965,0.025284983,0.035258908,-0.021034595,0.039557595,-0.013886213,-0.018040003,-0.0010105239,-0.02107082,0.0020859507,-0.006206534,-0.0041960515,-0.027506778,-0.0008746805,0.0027998833,0.026299281,-0.014815986,0.007921179,-0.011024446,-0.00947885,0.008162678,0.021759093,-0.0038639898,0.03045307,0.0021644381,-0.03025987,0.013946588,-0.004588488,-0.007323468,-0.027965626,-0.036997702,0.020153122,-0.05680065,-0.007232906,-0.011217645,-0.043566484,0.02445181,-0.0017176642,-0.021034595,-0.029487072,-0.005629954,0.016349507,0.01509371,-0.015745759,-0.0093339505,0.009146788,0.012068931,-0.009062263,0.013379064,0.05284006,0.006460108,-0.03477591,0.013475665,-0.0008361915,0.00477565,-0.013354915,0.035814356,0.01041466,-0.005092618,-0.00832569,-0.02707208,-0.02642003,-0.001360698,-0.010040336,0.0131496405,-0.0039092707,0.011525557,-0.018341877,0.016301207,-0.028762573,0.0154801095,-0.036152456,-0.006755945,0.00611899,-0.0002486689,-0.009484887,-0.014031113,-0.019706348,-0.003556078,0.02078102,0.023147713,0.0054578856,0.032843914,0.016337432,-0.013572264,0.009617712,-0.006472183,0.023992961,-0.027530927,0.01878865,0.0118032815,0.00091392413,0.0032511852,-0.005325061,0.0032028854,-0.01701363,-0.009388288,-0.0055061853,-0.0053914734,0.018752426,0.010577672,-0.024367286,-0.005092618,0.022616416,0.023159789,0.014840136,0.020841395,-0.01648233,0.002937236,0.00415077,0.031370766,0.028955774,0.032167714,0.040499445,-0.0011667438,0.019488998,-0.030984368,0.005817116,-0.00012103269,0.0016995518,0.014284687,0.023884287,0.00775213,-0.025115933,0.011115008,0.018329801,0.012129306,-0.066315725,0.018172827,-0.014043188,0.02087762,-0.004340951,-0.012763241,-0.028062226,-0.040064745,0.009515075,-0.021131195,0.028714275,-0.02447596,0.024560485,0.006900844,-0.012714941,0.0023093377,0.025019335]},{"id":"class-RateLimitManager","type":"class","source":"main","text":"Class: RateLimitManager\nProperties: buckets: Map, globalResetAt: number\nMethods: getBucket(route: string) -> RateLimitState | undefined; getGlobalReset() -> number; getWaitTime(route: string) -> number — Returns ms to wait before we can send again (0 if no wait).; setBucket(route: string, limit: number, remaining: number, resetAt: number) -> void; setGlobalReset(resetAt: number) -> void; updateFromHeaders(route: string, headers: Headers) -> void — Parse rate limit headers and update state.","meta":{"url":"/docs/classes/RateLimitManager"},"embedding":[-0.022900827,-0.0024833635,0.025185054,-0.020593174,-0.033197414,-0.008018218,-0.017781818,0.01925778,0.006571542,-0.012030256,0.03774244,-0.003824614,-0.030081496,0.02149515,0.015954439,-0.035704207,-0.04263888,0.048449013,0.00949418,0.03659447,-0.010923285,-0.014443335,0.02682501,0.051447794,-0.027691845,-0.0014056774,0.0013968919,0.00010588338,-0.009710888,-0.02809012,0.037461303,-0.016259002,-0.024833634,0.056929935,0.03448595,-0.0073973774,0.021085162,0.060818974,-0.0032945564,0.017535826,0.0064075463,-0.048449013,-0.026005032,0.004079393,-0.068737626,0.021120302,-0.027527848,0.018027812,-0.030479772,0.038562417,0.0011267383,0.022303415,-0.011813547,0.0049052285,0.071080424,0.03188545,0.019117212,0.018531514,0.024622783,-0.001883022,0.024411932,-0.011526555,-0.08771427,0.03954639,-0.038632702,0.06878448,-0.015626447,0.0025858607,-0.007901078,0.020452606,-0.003315056,0.043880563,0.024716495,-0.052572336,-0.026309595,-0.021448294,0.004770518,0.07796824,0.031206038,0.031206038,-0.030198636,-0.025630185,-0.005731064,-0.0038041144,-0.0021773358,-0.028910099,-0.031908877,-0.060584694,0.034767088,-0.033408266,-0.010249731,-0.014431621,-0.0044952394,0.009295042,0.022842258,-0.046035934,-0.010419584,0.0033970538,-0.022151133,0.0066886814,0.06400518,-0.027738702,-0.0020045545,0.018144952,0.021776285,0.005555354,-0.0689719,0.043505717,-0.029566081,-0.015872441,-0.054868273,0.005162936,-0.023509955,0.0042258175,-0.013494503,-0.016950127,-0.033993967,0.026684443,0.007467661,-0.01330708,0.0073270933,-0.036008768,0.033853397,-0.019175783,0.004096964,0.0005648334,0.0320963,0.009869027,0.006032699,0.010325872,0.04999526,-0.0128033785,-0.0052068634,-0.05327517,-0.0152047435,0.03589163,0.016914984,0.02567704,0.0006497597,0.014677615,0.013435933,0.020675171,0.028113548,0.0021187658,0.012065398,0.0024291864,-0.032166585,0.020476034,0.0024072225,0.01277995,-0.012651097,0.01949206,-0.06016299,-0.008644916,0.015837299,-0.026918722,0.010999425,0.034087677,0.004820302,-0.020066045,0.010437155,-0.0089143375,0.0025272907,-0.040788073,0.056227095,0.0026283239,0.003499551,-0.0035961913,-0.04540338,-0.06742566,0.05618024,-0.008779626,-0.018929789,-0.022736832,0.0332677,-0.016200433,-0.0657857,0.029097522,0.0004066947,0.008896766,0.044278838,0.024318218,-0.018320663,0.0067589656,-0.03729731,0.017688107,-0.01519303,0.03378311,0.04331829,-0.056273952,0.014865039,0.058757316,-0.0022285844,0.023697378,-0.03666475,-0.018484658,0.027879268,-0.01878922,0.014736185,0.028792959,-0.046059363,-0.022104276,0.06484859,-0.032260295,-0.007122099,0.00354055,0.024669638,0.03415796,-0.01513446,0.0144081935,0.023193678,0.036149338,-0.014443335,0.005107295,-0.04231089,-0.0009693317,-0.049479846,0.03357226,-0.003001707,0.0255599,-0.04664506,-0.007678513,-9.895109e-7,0.009751887,0.004577237,0.0062494073,-0.0077897958,0.024201078,0.040647503,0.013670213,0.0089143375,0.0046035936,-0.030667195,-0.026965579,-0.036852177,0.010314158,-0.04680906,-0.022244845,0.023357673,-0.036641326,0.0042785304,0.0040413225,-0.0124871,-0.010390298,0.019210925,-0.013635071,-0.018531514,0.017863818,0.015521022,0.010753432,0.020335466,-0.015333598,-0.0075438023,-0.040061805,-0.0008726914,0.04437255,0.047957025,0.052431766,0.0019152354,-0.024716495,-0.03568078,-0.022490839,0.005107295,-0.007994791,-0.010050593,-0.010355157,0.018836077,0.004638735,-0.02682501,-0.027129574,-0.030362632,-0.001639957,0.021249156,-0.022162847,0.010308301,-0.005590496,0.058288757,-0.02408394,-0.022221416,0.034345385,-0.0018098097,-0.031744882,0.045122243,-0.010050593,0.03324427,-0.00992174,0.047371328,0.07318894,0.06110011,0.034813944,0.024201078,0.03062034,0.00013937804,-0.0408115,0.020862596,0.017852103,-0.014349624,-0.0038773268,0.020604888,-0.0103961555,0.085465185,0.015837299,-0.0473479,-0.017160978,0.010448868,0.05374373,0.023228819,-0.033642545,-0.021600576,-0.015111032,-0.04301373,0.034907654,-0.030924903,-0.00025075235,-0.031721454,-0.028113548,0.019820051,-0.025185054,0.0051248656,0.0015111032,0.013166511,-0.05182264,0.012287963,0.020159757,0.0040852497,-0.015567877,-0.013471075,0.025161626,-0.023064824,0.03324427,0.036313333,-0.023263961,0.015895868,0.013857637,-0.043294866,0.017383544,0.013834208,0.026684443,-0.011251276,0.055664826,0.03521222,0.005288861,-0.015064176,0.03441567,0.0190235,0.04596565,0.015731873,-0.014244198,0.019691197,-0.012533957,0.025161626,0.004205318,-0.045778226,0.012815093,-0.023135107,0.01519303,0.05261919,-0.0030251348,-0.07056501,0.024529072,-0.047066767,0.04043665,-0.0522912,-0.040178947,-0.037180167,0.018262092,-0.055758536,-0.06456745,-0.029987784,-0.015837299,0.033993967,0.0144081935,-0.026684443,0.008580489,0.00468852,-0.021401439,0.031018615,0.032166585,-0.011157565,0.020440891,0.032963134,0.01577873,0.0019562345,0.017980957,0.081576146,0.02042918,0.0058423467,0.011801833,-0.0007745868,-0.021647433,0.018484658,0.040319514,-0.012428531,-0.044513118,0.012744809,0.01324851,0.0034380527,0.00013873744,0.005979986,0.012112253,-0.009183759,0.025138197,-0.049479846,0.024857063,0.045051962,0.009330184,-0.018086383,0.026801582,0.045122243,-0.05126037,0.024810206,-0.017301546,0.01772325,-0.0010872036,0.09052563,-0.013201654,0.010419584,-0.019667769,-0.06110011,0.0048935143,-0.024318218,-0.0021041234,-0.010694862,0.006102983,-0.00044988998,0.0045538093,0.033173986,-0.026543874,-0.04345886,-0.0538843,0.02694215,-0.00811193,0.04425541,0.026871866,0.028558679,0.021869998,0.014876752,-0.023369387,0.005069224,0.0038978262,0.03106547,-0.0045860223,-0.022643121,0.05903845,-0.032658573,0.024318218,0.016575279,-0.0072450954,0.038656127,0.008281782,-0.015884155,0.013904492,-0.03450938,0.0451691,-0.063958324,-0.019714626,0.053603165,0.0069053904,-0.040342942,-0.02532562,0.0044864537,0.041561194,0.0068058213,-0.027598133,0.033642545,0.04619993,0.017617824,-0.0067472514,0.0019020572,0.021061733,-0.016071578,0.011175135,0.055805393,0.011456271,0.009705031,-0.0032916279,0.0008060681,-0.033525407,0.03680532,0.01769982,0.008006504,-0.022842258,-0.024857063,-0.045543946,0.008088502,0.06236522,0.03706303,0.002777677,-0.0031452032,-0.016095007,-0.031440318,0.017149264,0.022994539,-0.010478154,-0.0283244,-0.0018054169,-0.032190014,-0.027832413,0.024833634,-0.05411858,0.0141622,-0.09624205,0.010823716,0.050510675,0.02390823,-0.002705929,-0.030409487,-0.03539964,-0.009306756,-0.0069053904,-0.061053254,0.028441539,-0.032166585,-0.039593246,0.008047503,0.019738054,-0.013377363,-0.021225728,-0.0055348547,0.00016994421,0.0033501978,-0.016177004,-0.021799713,0.0144081935,-0.010911571,0.031440318,-0.015228172,-0.009986167,0.0060268417,-0.00036111998,0.032494575,-0.041772045,-0.017301546,0.01731326,-0.017676393,0.023017967,0.021542005,-0.030690623,-0.002000162,-0.06527029,0.014759612,0.0025360764,-0.009312613,-0.011766692,-0.02888667,-0.011069709,0.026005032,0.06227151,0.03774244,0.03495451,-0.026005032,-0.05561797,0.019433491,-0.017945815,0.03495451,-0.023744235,0.024177652,-0.0098046,-0.013834208,0.0071630976,0.02464621,-0.005376716,0.020604888,-0.004126249,-0.02820726,-0.008533633,-0.008100216,0.0009883669,-0.01949206,-0.010044737,0.019164069,0.06934675,-0.007438376,0.014865039,-0.0031159183,0.016586993,-0.019538917,-0.035118505,0.03186202,0.004779303,-0.005411858,-0.035774488,0.0059653437,0.018695509,-0.027223285,0.03900755,0.007649228,0.00007911511,-0.0046621636,0.05299404,-0.01330708,0.022725118,0.045707945,0.024013655,-0.061756093,0.024224507,-0.01828552,0.0005952165,-0.03303342,0.0014291054,0.02670787,0.0022710476,-0.008873339,0.012393389,-0.002480435,-0.023181964,-0.02476335,0.0079303635,-0.052010063,0.02093288,-0.004606522,0.04205318,-0.006466116,-0.078343086,0.041326914,-0.03689903,-0.028136976,0.0063489764,-0.021506865,0.008334495,-0.010437155,0.040788073,0.0066769677,-0.046738774,-0.013810781,0.0085453475,-0.060209848,-0.02705929,-0.0033209128,-0.050276395,0.024552498,0.008879196,-0.031112326,-0.0011216134,-0.010021308,0.023217104,0.008873339,0.008674201,-0.03942925,-0.007983076,0.04423198,-0.00059777894,0.02841811,-0.01731326,0.03706303,-0.009060762,-0.022771973,-0.012651097,-0.017875532,0.027949553,-0.016727561,-0.034134533,0.0077722245,-0.013002516,0.006993245,-0.001752704,-0.0239668,0.022268273,0.043130867,0.018355804,-0.02155372,0.000053216238,-0.0032886993,0.04514567,0.0030719908,0.021951996,-0.014583903,0.0113215605,-0.01760611,0.034298528,-0.0070811,0.03406425,0.011175135,-0.008129501,-0.0013017158,0.0144667635,0.008328639,-0.012241107,-0.04746504,-0.009927597,-0.042592026,0.001853737,-0.02511477,-0.024786778,0.021178873,-0.039241828,-0.01666899,-0.0007346861,0.006337262,-0.019445203,-0.022279987,0.003766044,0.016083293,-0.018695509,0.0013544287,0.029331801,0.0030807762,0.036852177,0.02196371,-0.042709164,-0.016001295,-0.004791017,-0.044911392,0.029542653,0.017278118,0.0092599,-0.016106721,0.058897883,0.022139419,-0.005110223,0.0052127205,0.0058364896,-0.02211599,-0.005824776,-0.034439098,0.04561423,0.032143157,0.013658498,0.0115031265,-0.013353935,-0.037086457,0.02390823,-0.005370859,0.003244772,0.0070811,0.024411932,0.050604388,0.0050077257,-0.014794755,-0.019128926,0.044583403,0.03565735,-0.012276249,-0.01566159,-0.03350198,0.0046035936,-0.013435933,-0.0011391843,-0.00848092,0.010513295,-0.019784909,0.00957032,-0.027598133,0.010320015,0.029167807,-0.042170323,-0.009769458,-0.015544449,-0.036735035,0.0007775153,-0.022057422,0.007479375,0.02167086,0.04310744,0.049151853,-0.014349624,0.008000648,0.0046943766,-0.038866982,-0.0010315622,-0.016024722,0.06311492,-0.037320737,-0.04460683,-0.020558031,-0.029776933,-0.03783615,0.02317025,0.022268273,0.022619693,-0.012112253,-0.014665901,-0.023744235,-0.004820302,0.046387356,-0.011104851,0.020007474,-0.014806469,-0.053181462,0.007116242,0.015825585,0.014829896,0.010314158,-0.016059864,-0.014080202,0.01052501,0.0041877474,-0.015403882,-0.004120392,-0.015860727,0.007209954,0.013213367,-0.007555516,-0.011462128,-0.0044893823,0.010975998,0.052010063,-0.04542681,-0.007127956,0.024435358,-0.0022432269,0.0036225477,-0.016376141,-0.008644916,0.014525333,0.025021058,-0.0071923826,0.037203595,0.018203523,-0.035282504,-0.028675819,0.038913835,0.0046563065,-0.00022256559,0.0103961555,0.038562417,-0.00028406398,0.029027238,0.016680704,-0.018367518,0.03448595,0.027504422,0.0057339924,-0.012428531,0.02499763,0.038164143,0.008240784,0.023240533,0.020979736,-0.051916353,0.003440981,0.017500684,0.012381675,0.00031298285,0.01690327,0.0059067737,-0.0020806955,-0.02797298,-0.005473356,0.020276897,0.031791735,-0.047652464,-0.02199885,0.0066476827,-0.013810781,-0.0083579235,-0.005526069,-0.033314556,-0.024458786,-0.013096227,-0.013646785,-0.0012050755,0.012686239,-0.005810133,0.004498168,0.00084560283,-0.011508984,0.015509307,0.03828128,-0.0261456,-0.01023216,0.032916278,-0.0097753145,-0.0050077257,-0.0010937927,-0.03657104,0.028254116,-0.013084514,-0.006542257,0.002540469,0.013002516,0.017160978,-0.00517465,0.006067841,-0.0035844774,0.02379109,-0.008990479,0.051307224,-0.060444128,0.015884155,-0.014033346,0.023217104,-0.013857637,0.0036166909,0.02499763,0.017582681,-0.00756723,-0.006559828,0.0042785304,0.012065398,0.0060619838,0.024318218,-0.017348401,0.01254567,-0.0057984195,0.0022373698,0.019831765,-0.04976098,-0.04540338,0.01015602,-0.005944844,-0.024857063,0.0048876572,0.02223313,0.04015552,0.011175135,0.03003464,0.016422998,-0.0067413948,-0.00228569,0.020569745,-0.007924506,0.026403308,0.030878047,-0.017324975,0.011526555,-0.024622783,-0.016200433,-0.023650521,0.00641926,0.019574057,-0.028277544,0.010197018,0.04643421,0.03774244,0.03392368,-0.008797198,0.009705031,0.005892131,-0.0030924904,0.044091415,-0.004779303,-0.00908419,-0.015708445,0.006969817,-0.0047295187,0.030901475,-0.026801582,0.014935322,0.027106145,0.012885376,0.0017775962,-0.01566159,-0.017770106,0.0061849807,0.0002771088,0.021987136,0.0283244,-0.037391018,-0.0025302193,0.039616674,-0.027715273,0.046246786,-0.029566081,-0.028394684,-0.02161229,-0.009189616,0.010296587,0.0364539,-0.015638161,-0.04275602,-0.014033346,-0.03244772,-0.041818902,0.017114121,0.012475387,0.021424867,0.018062955,-0.0067179664,0.012510529,0.037883006,0.008188071,0.026239311,0.008275926,-0.030784335,0.016235573,0.00859806,0.004659235,-0.008082645,-0.017160978,-0.00058277044,0.058148187,0.015157888,-0.04584851,0.0010674363,-0.012428531,0.033150557,-0.0067648226,0.021284299,0.06423946,0.03750816,-0.0077429395,-0.04062408,-0.007947934,0.020276897,-0.004310744,-0.011040425,0.020768883,0.0261456,-0.05468085,0.0035200506,-0.015767016,0.016832987,0.000112838556,-0.008047503,-0.011391844,0.06006928,-0.0063196914,-0.010671434,-0.05037011,-0.0012943946,-0.022572836,0.007086957,0.0107065765,-0.009031477,0.02258455,-0.028816387,-0.015614733,-0.016598707,0.013143084,0.031721454,0.022479124,-0.009213044,0.020394037,0.00853949,-0.02137801,-0.009019763,0.0021348726,0.019351492,-0.01616529,-0.04748847,0.009306756,0.029612938,0.001995769,0.022713404,0.008147072,0.001071829,0.029612938,-0.011251276,-0.03118261,-0.036008768,0.027082717,-0.04929242,-0.011098995,0.009552749,0.006389975,-0.008334495,0.0111341365,-0.0026663942,0.011544126,0.041490912,0.012533957,-0.03256486,-0.0441617,0.010946712,0.011708122,0.02281883,-0.023006253,0.008258355,-0.0043371003,0.005312289,-0.018508086,-0.010343443,0.006829249,0.05182264,0.035118505,-0.010853001,0.0005293254,-0.025723897,0.04128006,0.02408394,-0.0055817105,-0.0018669153,0.0104547255,0.00015594234,-0.02031204,-0.0077722245,-0.0113801295,0.01342422,0.007561373,-0.05974129,0.04151434,-0.0097753145,0.029050667,-0.03256486,0.028628962,-0.016528424,0.027199857,0.0031393461,0.00082437124,0.0003913201,0.0261456,0.00070723146,-0.038257852,0.0023589025,0.007860079,0.0045625945,-0.046059363,0.008926052,-0.038702983,0.030456344,-0.014642473,-0.003971039,-0.029800361,-0.0033033418,-0.002653216,0.0056900647,-0.00466802,-0.0123113915,-0.00071308843,0.008082645,-0.0028669962,0.038328137,-0.00028516215,-0.009751887,-0.027082717,0.018660368,0.0030719908,0.0010147233,-0.01058358,-0.017980957,-0.027223285,0.03233058,0.018203523,0.015825585,-0.03448595,0.033408266,-0.012569099,-0.014525333,-0.029870644,0.01593101,-0.0056285667,0.019011786,-0.0027088574,-0.023029681,0.001432766,-0.0035698349,0.021799713,-0.0016253145,-0.011872117,0.0030397773,0.004861301,0.03497794,-0.029519225,0.00018962003,-0.011485556,-0.011948258,0.04711362,-0.015368739,-0.015649876,0.004849587,-0.023755947,-0.016235573,0.019046929,-0.01675099,0.007016673,-0.025958177,-0.0038509704,-0.029800361,-0.015977867,-0.013260224,0.019292923,0.025958177,-0.019175783,0.02116716,0.01628243,-0.012065398,0.042240605,0.011561696,0.025044486,-0.04322458,-0.036032196,-0.03279914,-0.01581387,0.021916853,-0.0073329504,-0.010683148,0.0038597558,0.006946389,-0.0030719908,-0.015626447,-0.059553865,0.008926052,0.009816314,0.019749768,0.029050667,0.029894073,0.022022279,0.004536238,-0.034111105,0.029987784,0.0020806955,-0.01566159,-0.017641252,-0.009517607,-0.0034146246,0.005039939,-0.00945318,0.014993892,0.0067765363,-0.004832016,-0.010249731,0.016387856,0.005569997,0.022631407,-0.06662911,-0.0028889598,0.002717643,0.028558679,-0.016352713,-0.0051775784,-0.01040787,0.020066045,-0.023427956,0.009183759,-0.030011212,-0.0014539976,-0.029800361,-0.025630185,-0.04470054,0.020183185,0.039476108,-0.00931847,-0.017266404,-0.02161229,0.00027491243,-0.023896515,0.0110111395,-0.027035862,-0.0066769677,0.027199857,-0.013810781,0.021237442,0.012768236,0.012943946,-0.017711535,0.02876953,0.015228172,0.01663385,0.004463026,-0.006442688,0.0025858607,0.00051944173,-0.032845996,0.008603917,-0.010120877,-0.022373699,-0.0068233926,-0.036641326,0.006331405,0.0051717213,-0.050838664,-0.015052462,-0.011186849,0.0028699248,-0.014091916,-0.028043265,0.007122099,0.017746678,-0.0016502067,-0.013670213,0.005406001,-0.03380654,-0.020335466,0.00038948978,-0.005956558,-0.03668818,0.020710314,0.0042785304,0.020148043,-0.022666547,-0.019468632,0.01840266,0.007034244,0.022104276,-0.0057486347,-0.010507438,-0.0119365435,0.038562417,-0.020370608,0.02114373,0.0023471883,0.030995186,0.012651097,-0.020148043,-0.00986317,0.008691772,0.015439023,-0.0016736346,0.037320737,-0.004351743,-0.008920195,0.0027161788,-0.008703486,0.02408394,0.029425513,-0.002095338,-0.04779303,0.030760907,0.0013368578,-0.008246641,0.028136976,-0.050979234,0.02126087,0.0070752427,0.01840266,-0.01046644,-0.01289709,-0.044114843,-0.0065364,0.0036020484,0.001030098,-0.008328639,-0.0018127381,0.015755301,0.013096227,0.040085234,-0.0135413585,0.010612864,-0.037391018,0.02637988,0.02830097,-0.0006285281,0.0066476827,-0.012006828,-0.03406425,0.0090373345,-0.068737626,0.00052053994,0.0034966224,-0.020066045,-0.00012766405,-0.03141689,0.022069136,-0.011163421,0.038585845,0.018882932,-0.0026693228,-0.030948332,-0.012100539,0.0050897235,0.010671434,-0.011585125,0.046293642,0.039827526,0.010771003,-0.00466802,0.013916207,-0.0021700144,-0.028910099,0.02064003,-0.014349624,0.0010052058,-0.047535323,-0.0046211644,-0.009289185,-0.018929789,-0.013763924,0.017395258,-0.027434137,-0.0016443497,-0.004176033,-0.022619693,0.0033326268,-0.01857837,-0.017266404,-0.044817682,0.014396479,0.04472397,0.020253468,-0.00061901053,0.01186626,0.024903918,0.0190235,-0.05322832,0.021706002,-0.010413727,0.0027381424,-0.03233058,-0.019632628,0.04413827,0.053603165,0.005476285,-0.00059228804,0.017336687,-0.018976646,-0.010062307,0.01748897,-0.0027893912,-0.02544276,-0.019000072,0.007573087,-0.003807043,0.010759289,0.00811193,0.0033121274,0.008533633,-0.011251276,-0.028113548,-0.00021689163,0.0050457963,-0.01566159,0.00022714135,0.031791735,-0.013400791,0.022713404,-0.0073505216,0.006126411,-0.010431298,0.031604312,-0.0023720807,-0.0342751,0.00022183347,0.026309595,0.030526627,-0.0033355553,0.018601798,-0.00077239046,0.016259002,-0.017945815,0.0072626667,-0.039874382,-0.063677184,0.024669638,-0.03155746,-0.0061146966,0.0055787824,-0.014384765,0.016481567,0.022889113,-0.02231513,-0.00671211,0.014232484,-0.016528424,0.002795248,0.0043839565,0.006887819,-0.029495798,-0.00593313,0.0065539707,-0.0017570967,0.035844773,-0.013447647,-0.0064016893,0.00005193502,0.027106145,-0.009611319,-0.015462452,0.028628962,-0.017395258,-0.010560151,-0.01898836,-0.027808985,-0.008803055,-0.019339778,0.008644916,0.008580489,-0.020534605,0.007578944,-0.021331154,0.0072626667,-0.008381352,0.0061439816,-0.031580884,-0.008275926,0.034579664,-0.0016355643,0.03563392,-0.010238017,0.0038333994,-0.025021058,0.022631407,-0.012416817,-0.017910672,-0.0025887892,0.004020823,0.005824776,-0.016645564,-0.008176357,0.008639059,-0.019351492,0.004477668,0.0067823934,-0.016528424,-0.009992024,-0.011854546,-0.014209055,0.011139994,-0.00992174,-0.030760907,-0.016739275,0.029425513,0.013904492,-0.020382322,0.0028596749,0.038937263,0.0010557222,0.0016370284,0.022385413,0.01816838,-0.01710241,0.04020237,0.040178947,0.04919871,-0.020030903,0.008568775,-0.04732447,-0.009652318,0.011397701,-0.04687934,0.0068702484,0.018964931,-0.0072802375,0.017746678,0.023826232,0.0005044332,-0.005649066,0.0059682718,0.0009188152,-0.015333598,0.0049432986,-0.0024247936,0.0043634567,-0.022959398,-0.027387282,-0.01003888,0.024669638,0.03760187,-0.028371256,0.030760907,-0.0023647593,0.0034263385,0.0074852323,-0.031510603,0.015052462,-0.007537945]},{"id":"class-ReactionCollector","type":"class","source":"main","text":"Class: ReactionCollector\nDescription: Collects reactions on a message. Use message.createReactionCollector().\nProperties: channelId: string, client: Client, collected: Collection, messageId: string, options: Required\nMethods: emit(event: K, args: ReactionCollectorEvents[K]) -> boolean; on(event: K, listener: (...args: ReactionCollectorEvents[K]) => void) -> this; stop(reason: ReactionCollectorEndReason) -> void","meta":{"url":"/docs/classes/ReactionCollector"},"embedding":[0.029393725,0.0003589386,-0.011216971,0.026188876,-0.0060449666,0.031043984,-0.0111033665,-0.00089463714,-0.038458187,-0.011617577,0.010170612,-0.04675731,0.044102546,0.015294782,0.02415595,0.0051899417,0.016095994,-0.003931321,0.02602146,0.07404636,-0.017949546,0.011067491,0.067875825,0.015019739,-0.023964616,-0.021740355,-0.0027593987,0.07705987,-0.054625932,-0.037788518,0.059074454,-0.017279875,-0.012388893,0.03864952,-0.037334096,0.043982964,0.0035994758,0.028963223,-0.04326546,0.07313752,-0.023749365,-0.0223024,0.010344008,0.039941028,-0.04044328,-0.0015060098,-0.04058678,-0.003411131,0.0093036285,0.041495617,-0.03812335,0.00062445225,0.012048079,0.04206962,-0.0013991317,-0.0822259,-0.037047096,0.04058678,-0.006140634,0.0111751165,-0.0043528546,-0.011677369,0.0026921327,-0.03331608,-0.010469572,-0.01003907,-0.045202717,0.058835283,-0.002645794,0.041232534,0.03018298,-0.0059403307,-0.020317307,-0.0067146365,-0.033794414,0.026571546,-0.0076832664,-0.02944156,0.0041794577,-0.031235317,-0.024478827,0.00047160906,-0.03145057,-0.0118208695,-0.0151991155,-0.038816936,0.007181014,-0.026667213,0.009638463,-0.0021450364,-0.0025635802,0.037645016,-0.053908426,0.018164797,0.036879677,-0.02630846,-0.0121796215,0.022625277,0.0016098984,0.025232205,0.008574166,-0.07686854,-0.018152839,0.0055935374,0.009357441,0.011258826,-0.03960619,0.039080024,-0.046350725,-0.023964616,-0.01641887,-0.02870014,-0.021752313,0.03745368,0.0063140304,-0.04754656,0.006006102,0.0057250797,-0.046470307,0.0068700956,-0.053238757,0.002535179,0.019803096,0.000260095,-0.009554755,-0.042093538,0.025901875,-0.0032885575,0.02341453,0.027886968,0.047857482,0.0038386437,-0.02475387,-0.019540012,0.024969121,-0.0028012532,0.013381439,-0.009722172,-0.032765992,-0.022876402,0.025590956,0.00051159493,0.0033184534,0.016084036,-0.0049119093,0.0032676305,-0.063570805,-0.0106668845,0.03695143,-0.03841035,-0.0019895774,0.03501417,-0.032526825,0.03283774,0.022936195,0.012723728,-0.0034260792,0.03353133,0.013202064,-0.040562864,0.030637398,-0.017590793,-0.054960765,0.0023139487,-0.05433893,-0.007970268,-0.0068521583,0.0075337864,-0.030900482,0.03568384,0.03310083,-0.013046605,-0.033459578,0.008807356,-0.031378817,-0.03223982,-0.01842788,0.0016637112,0.012580227,0.0016412892,0.042284872,-0.009698255,-0.02870014,-0.0614183,-0.0038266852,-0.0022795682,-0.020125972,-0.004056884,0.0093036285,-0.034464084,-0.025088705,0.04847932,0.0027265132,0.034631502,0.004212343,-0.043528546,0.029034974,0.03085265,-0.027671717,-0.053095255,-0.030398231,-0.004914899,0.0279348,-0.013716275,0.018762715,-0.012771562,0.002571054,0.009680318,0.024921287,-0.056300107,0.06744532,-0.02891539,0.020723892,0.003010525,-0.063953474,0.016885249,-0.04058678,0.01812892,-0.034727167,-0.023892866,-0.04541797,0.0014200589,0.07729904,-0.045465805,-0.008107789,0.039964944,0.0310679,-0.020102056,-0.00036435723,-0.017040707,-0.049603406,-0.020915227,-0.023366697,-0.05371709,0.025830125,-0.026858546,-0.006200426,0.03841035,0.03740585,-0.041017283,0.027839135,-0.01627537,0.018248504,0.0480249,-0.0026652263,0.0224459,-0.0064934064,0.0056622983,0.02556704,0.021668606,0.022613317,0.0044335737,0.0055217873,0.0051630354,0.0039373003,0.009877631,0.0017249979,-0.0066249487,-0.0056832256,-0.0021226145,0.04429388,-0.02616496,-0.027910884,-0.010284216,-0.036999263,-0.0049836594,0.05156458,-0.014529445,0.019145384,0.055343434,0.010152674,-0.04749873,0.039343107,-0.018344171,-0.011641494,0.036544845,0.016036203,0.004110697,-0.007898517,0.013716275,-0.012024162,0.02846097,0.019707428,0.0154143665,-0.014134819,0.013871734,0.026954213,-0.011097387,0.016681956,0.018679008,0.014397903,-0.039414857,-0.007874601,-0.031904988,-0.017351625,0.0026517732,0.033650912,-0.0050583994,0.03245507,-0.025064789,-0.018607257,0.009506921,0.022386108,-0.047474813,0.027623884,-0.003174953,0.03931919,-0.037716765,0.020998934,-0.0019596813,0.02468212,-0.03554034,-0.044724382,-0.016287329,0.0009835777,0.02013793,-0.010188549,0.016789582,0.02683463,-0.021393562,0.026667213,-0.033029076,0.012089933,0.00721091,-0.032287657,-0.04979474,0.0035277253,-0.047737896,0.05084708,0.06414481,0.039964944,-0.039510526,0.0013258866,0.029178474,0.07935588,-0.013034646,0.011402326,-0.036903594,0.006325989,0.068497665,0.052282088,-0.015629617,-0.0076832664,-0.0056622983,0.014445736,0.025590956,0.023498239,0.030661315,-0.016478663,-0.034488,-0.00988959,0.020102056,-0.053860594,-0.06821066,0.051421084,-0.029250225,-0.018475715,-0.022111066,0.018822508,0.012388893,-0.0015224527,0.042619705,0.022350233,-0.014170693,0.019193217,0.014553362,-0.11910558,-0.055343434,0.06720616,-0.03989319,0.027002048,-0.032431155,0.015474158,-0.0020344213,0.01278352,0.007157097,0.005856622,0.0064455727,0.036999263,0.021309853,-0.029537227,0.013536898,-0.017901711,-0.011258826,0.014660988,0.006030019,-0.051755916,-0.0016397944,-0.033483494,0.05099058,0.047618315,-0.033196494,-0.03018298,-0.002765378,0.038482103,0.037381932,-0.019133426,0.048120566,0.04163912,0.06801933,-0.014278319,0.024215743,0.038912605,0.060844295,0.028389221,0.043432876,-0.029776394,0.029345892,0.045752805,-0.014027193,0.061896633,0.0017668523,0.036401343,0.014553362,-0.006266197,-0.022565484,-0.038984355,0.030541731,-0.00031241297,-0.02704988,-0.04369596,-0.050129578,-0.01226931,-0.020125972,-0.0050494308,-0.011025636,0.029824227,-0.02096306,-0.006367843,-0.016980916,-0.049986076,-0.0038027684,0.043432876,0.035659924,0.04510705,-0.040562864,0.05017741,-0.020102056,-0.042858873,0.0444613,-0.01969547,0.044413466,0.03389008,0.04479613,-0.067301825,0.008622,0.013919568,-0.015498075,-0.008490458,-0.0076234746,-0.06409698,-0.0025546113,-0.008651896,0.014517487,-0.038769104,-0.04214137,0.03652093,0.04288279,-0.009082398,-0.016239496,-0.0021898805,0.026141044,0.0072527644,0.034488,-0.019599803,-0.01211983,-0.0631403,-0.008089852,0.02117831,-0.0069837,0.011109346,-0.015892701,0.018164797,0.023306904,-0.005814768,-0.022864444,0.056778442,-0.007641412,-0.011994266,-0.023306904,0.031713653,0.038314685,0.021130478,-0.03310083,-0.0077550164,0.052903924,-0.030063394,-0.025064789,0.008239332,0.0073245144,0.008065935,0.019013843,-0.0054231305,-0.012131788,-0.015450241,-0.0111033665,0.0035695797,-0.023318863,0.021967564,-0.012986813,-0.0076234746,0.020173807,-0.019755263,0.0072946185,0.018774673,0.023868948,-0.023223195,0.022338275,0.0068641165,0.020711934,0.02482562,0.013620608,-0.028724056,-0.017088542,0.012149725,-0.026930297,-0.049172904,-0.02817397,-0.026786797,-0.009548775,0.04230879,-0.005617454,-0.0042721354,0.02318732,-0.024072241,0.027408633,-0.0072826603,-0.008478499,-0.01553395,0.014397903,-0.01851159,0.00014733111,0.02563879,0.008197477,0.00017498489,-0.0043438855,-0.05773511,0.00475645,-0.009423212,-0.049316406,-0.008185519,0.0067146365,0.0019267958,-0.02891539,0.0045172824,0.027528217,0.0068641165,0.04496355,-0.010547301,0.041686952,0.0022347244,-0.05343009,0.03967794,-0.06309247,0.013656483,-0.016550414,-0.0023871937,-0.006565157,0.020532558,-0.03525334,-0.0034440167,0.009154148,-0.001378952,-0.01828438,-0.043456793,-0.013620608,0.008699729,0.0012489045,-0.03998886,0.016095994,-0.008663855,-0.031904988,-0.019444345,-0.053573593,0.007617495,0.024562536,-0.018033253,-0.0026517732,-0.00091107993,-0.026619378,0.0028580555,-0.004801294,0.017064624,-0.005596527,-0.0023901835,0.007408223,0.013716275,0.0035546317,-0.011623556,0.011384388,0.003390204,-0.014182652,0.028508805,0.045704972,-0.031139651,0.010726677,0.021943647,0.030756982,0.0028789826,-0.015653534,0.051468916,0.01946826,-0.07074584,-0.011575723,0.002757904,0.051995084,-0.003160005,-0.028508805,-0.054291096,0.03372266,0.0005642866,0.016909165,-0.018188713,-0.022936195,-0.006481448,0.010720697,0.012962896,0.00817954,-0.005955279,0.03300516,-0.028891472,0.008077893,-0.027839135,-0.009249816,0.001397637,0.021070685,-0.0041794577,-0.013560816,0.031617988,0.016215578,0.01486428,-0.0054889014,-0.015175198,-0.03188107,0.027193382,-0.02704988,0.025088705,0.022218691,0.0008505406,0.02630846,0.0376211,0.0066189696,0.017172249,0.008592104,0.025590956,0.036401343,0.018499631,0.0043678023,-0.008849209,0.00042414918,-0.02401245,0.002988103,-0.0045800637,-0.05008174,-0.009387337,0.0045382096,-0.014362028,0.03597084,0.020090098,0.011509951,0.0009596609,0.015581784,-0.008107789,0.01754296,-0.020066181,0.015043656,-0.019444345,-0.017184207,0.0044784173,0.010918011,0.028891472,0.02616496,-0.010086903,-0.020424932,0.032981243,-0.023689574,-0.012125809,0.0010919506,-0.022649193,0.010051028,0.0033334016,0.01948022,-0.028030468,-0.015211074,-0.015426325,-0.031043984,-0.017411418,-0.030278647,0.007832746,0.02385699,-0.0141946105,-0.019611761,0.0057191006,0.0058087884,0.017315751,0.002965681,0.02281661,-0.013740191,-0.0024948195,-0.0309244,0.0010829818,-0.00721091,-0.005862601,0.02147727,0.043767713,0.010367925,-0.0055337455,-0.020185765,0.032598574,0.014481612,-0.03195282,0.007390286,0.013811942,0.011336555,-0.049842574,0.014314194,0.029250225,0.010708739,0.0451788,-0.00044507638,0.013094438,0.01650258,-0.043743797,-0.003375256,-0.021919731,0.0379081,0.013237939,0.03604259,-0.046781227,0.02743255,0.009237858,0.011462118,0.0121078715,0.0032736096,-0.008047997,0.008125727,-0.020353181,-0.0020912236,0.028484888,-0.00003012954,-0.037884183,0.010660905,0.036664426,-0.025519207,0.005106233,-0.025925793,0.014541403,0.010714718,-0.02333082,0.0048132525,-0.040778115,0.0070793675,-0.044700466,0.071032844,0.021836022,-0.013249897,0.004577074,-0.031928904,-0.055008598,-0.03625784,0.026260627,0.02683463,-0.0039731753,0.011856745,0.019456303,-0.012986813,-0.020998934,0.020090098,-0.009764026,-0.018140879,0.028365305,0.0006005355,0.009339504,-0.017758211,0.012448685,0.021967564,-0.010284216,-0.023534114,-0.02704988,0.010971824,0.016442789,-0.009201982,-0.022266524,-0.02348628,-0.012628061,-0.009925465,-0.034583665,-0.012819395,-0.008520354,-0.015115406,0.0133336065,-0.03613826,0.029752478,-0.03032648,-0.013871734,0.01576116,-0.01553395,-0.05783078,0.00468171,0.031546235,-0.02468212,-0.014254402,0.0060330085,-0.010218445,0.010015152,-0.013847817,-0.03989319,-0.01389565,-0.02282857,0.019205175,-0.018989924,0.006756491,0.00914219,0.010995741,-0.00022010914,0.0055397246,-0.0075098695,-0.002503788,0.0066608237,-0.030111229,0.057878613,-0.0035067983,0.011366451,-0.006810304,0.04690081,0.0029940822,-0.008926939,0.0277913,0.033698745,-0.02831747,0.03998886,0.0066847405,0.03575559,0.024347285,0.008849209,-0.007922434,-0.023055779,0.036616594,-0.017794086,-0.030828733,-0.024586452,0.053477924,-0.027504299,-0.0025994552,0.04221312,-0.014254402,0.035349004,-0.00022066968,-0.040467195,-0.037071012,-0.012819395,0.06696699,0.03695143,-0.027217299,0.014362028,0.009913506,-0.037286263,0.0044634696,0.017112458,0.00958465,-0.011904579,-0.01389565,-0.029011058,-0.052951757,-0.0012578733,0.0075038904,0.014876239,0.014063068,0.011850766,0.0009536817,0.0064993855,0.008496437,0.029895978,0.033770498,-0.011808911,-0.0044634696,-0.0010448644,-0.0005399961,0.011659431,-0.024777787,-0.008885085,-0.01872684,0.014039151,0.0019297854,-0.010654926,0.0008497932,0.020592349,0.017853878,-0.0618488,-0.008592104,-0.018607257,0.011832828,0.020556474,-0.0380516,-0.006696699,0.035229422,-0.018009337,0.010266279,0.016024245,0.0014723769,-0.023259072,0.003784831,-0.034464084,0.010816365,0.01963568,0.032359406,-0.0046428456,-0.01606012,-0.007617495,-0.026332377,0.010589155,0.028939307,0.03245507,0.01895405,0.0480249,-0.019743305,0.0015269371,-0.02824572,0.0003193264,0.015665492,0.003076296,0.02282857,0.033961833,-0.01754296,0.005850643,0.012927021,-0.005082316,-0.004920878,-0.030063394,0.026212793,0.034129247,0.0037100909,0.003375256,0.01865509,0.02378524,-0.0111033665,0.03195282,0.0012645999,0.0018221599,0.011193054,0.0011524899,-0.032072406,-0.031713653,0.0039373003,0.014098943,-0.0150556145,-0.033363912,0.024634285,0.0077251205,0.015713327,-0.0007141402,-0.031498402,0.044413466,0.00416451,-0.025184372,0.010128757,0.019300843,0.022601359,0.07012401,0.015079531,-0.0022347244,0.003961217,-0.045609303,-0.013776067,-0.030087313,-0.017949546,0.007772954,-0.009692276,-0.03893652,0.022063231,-0.0050583994,-0.012568269,-0.011701286,0.034009665,0.054291096,-0.0054799328,0.0010306638,-0.025136538,0.010140716,0.012376935,0.0068401997,0.024490785,-0.002237714,0.01345319,-0.0048640757,-0.03530117,-0.0141946105,-0.023474323,0.03099615,0.010349988,-0.0023961626,-0.012424768,0.013381439,-0.017255958,0.00076496333,-0.014314194,-0.0012952433,0.043145876,0.01412286,0.017136374,-0.022984028,0.033052992,-0.0057878615,-0.024729952,0.033029076,-0.025901875,0.03896044,-0.0064096977,-0.0064993855,-0.029513309,0.018081088,0.02578229,0.0015770128,-0.025901875,0.000414433,0.015139324,0.0076952246,-0.011031616,-0.037286263,-0.024777787,0.041495617,-0.022541568,0.013680399,0.036281757,-0.02578229,-0.035205502,-0.028724056,0.025973625,-0.004044926,0.008077893,-0.016478663,0.04869457,-0.043887295,-0.0022631255,0.020412974,0.025351789,0.018942092,0.000033212564,-0.0100211315,-0.017949546,-0.03128315,-0.037214514,-0.023091653,0.017351625,0.009614547,0.015545908,0.0034171103,-0.011545827,0.021130478,0.011635515,0.05878745,0.029178474,-0.038553853,-0.019061675,0.015557867,0.003946269,0.007551724,0.008974773,-0.0014267856,0.002222766,-0.03314866,-0.021800147,-0.019611761,0.0015052625,0.029417641,0.0057131215,-0.031091817,-0.0223024,0.014003276,-0.00071862456,-0.005381276,-0.030374313,-0.004792325,-0.019013843,-0.034201,-0.0056742565,0.004340896,-0.023474323,-0.030374313,-0.07519437,-0.023904825,0.009578671,0.022780735,-0.019229094,0.027982635,0.028341386,-0.046278972,0.011497993,0.020257514,-0.032646406,0.0068043247,0.028771888,0.00021768009,-0.024143992,-0.01909755,0.01665804,-0.029465476,-0.0310679,-0.0039283317,-0.020652141,0.008753543,-0.007276681,0.003240724,-0.0013535403,0.01842788,-0.004717585,-0.012998771,-0.049986076,0.02288836,0.002355803,-0.019217135,-0.026762879,0.021441394,0.0036473093,-0.036233924,-0.015820952,0.00035576214,-0.0149838645,-0.003091244,-0.013190106,-0.011085428,-0.01939651,0.026619378,0.02208715,-0.024993038,0.006302072,0.0034171103,0.012472602,-0.031474486,-0.0073245144,0.010152674,0.0011121304,0.038027685,-0.041663036,-0.008903022,0.0039193626,0.040897697,0.014660988,-0.03204849,-0.04348071,0.017949546,0.04764223,-0.01665804,0.010690802,-0.017662544,-0.016382996,-0.0024111106,0.061513964,0.0047624293,-0.03278991,0.0313549,0.010242362,-0.0032526825,0.02341453,0.047737896,0.006792366,-0.02683463,-0.016072078,-0.012735686,0.03025473,0.0012892641,-0.017148333,0.007336473,0.009638463,0.003085265,0.01352494,-0.060413793,0.021190269,0.015557867,0.011264805,0.011330576,-0.03582734,-0.0190258,0.017375542,0.0053125154,-0.018451797,0.027623884,0.045226634,0.01226931,-0.011456138,0.020927185,-0.052138586,0.0066548446,-0.022182815,0.003405152,-0.0035486526,-0.02824572,-0.009483004,-0.016490621,-0.0050942744,-0.012060038,-0.0012361987,-0.01606012,-0.038912605,0.004107707,-0.027097715,-0.027360799,-0.03774068,-0.009148169,0.012747645,-0.022481775,-0.0056832256,-0.0027848103,-0.003530715,0.010320092,0.014266361,-0.0054171514,-0.026356295,0.033244327,-0.005826726,0.00060427247,0.028389221,0.007928413,0.023474323,-0.026284544,-0.0017877795,0.031187484,-0.00847252,0.004355844,0.016705872,0.002237714,-0.027743468,0.026356295,0.018619215,-0.018140879,0.002333381,0.002728008,0.005925383,-0.023749365,0.0027444507,0.025662707,-0.0077071832,0.052377753,0.012131788,-0.023809157,-0.0133336065,0.035396837,-0.0011980813,-0.004080801,0.024993038,-0.01977918,0.0075337864,0.008352936,-0.011689328,-0.0005284114,0.007850684,-0.020233598,0.017052665,-0.0007780428,0.017399458,0.0018968998,-0.034894586,-0.009148169,0.011420264,0.005506839,-0.028604472,-0.032144155,-0.007904497,0.009847735,0.0000069543185,-0.020054221,-0.023725448,-0.03470325,-0.013106396,-0.026954213,-0.04020411,-0.018176755,0.004780367,0.043169793,0.00416152,0.011581702,0.020783683,-0.014649029,0.045609303,-0.012795478,0.05166025,0.03731018,0.046470307,0.027623884,0.01791367,0.0059941434,0.0011263309,0.035516422,-0.06481448,-0.010212466,-0.00047983046,0.034344498,-0.0011726697,0.027863052,0.02103481,-0.005438078,0.017423376,0.02081956,0.01591662,-0.029680727,0.011862724,0.041519534,-0.025208289,-0.012376935,-0.018296339,-0.0029641862,0.048192315,-0.025208289,0.017782127,0.00084231916,-0.0028520762,-0.014649029,0.010816365,-0.00423626,-0.03367483,-0.051612414,0.019743305,0.010965845,0.007982226,-0.0012429253,-0.017531002,0.012915063,-0.01812892,0.029895978,-0.0006072621,-0.01472078,0.02200344,-0.015211074,0.010308133,-0.005124171,-0.010690802,0.018846424,-0.03664051,-0.006065894,0.0052437545,-0.013225981,-0.016741747,-0.03896044,-0.014134819,-0.034583665,0.0139674,0.0028311491,-0.008287165,0.02281661,0.018762715,-0.01635908,0.00071899826,-0.0019462282,0.04479613,0.015844868,0.0019955565,0.002571054,-0.026284544,0.0052646818,-0.028054386,0.0068043247,-0.029848143,-0.006071873,-0.054912932,0.025303956,-0.015306741,-0.008209435,0.004415636,0.035492506,0.020161847,-0.017638627,-0.0006659329,0.008077893,-0.010720697,0.02771955,-0.005892497,0.02311557,-0.0021973543,-0.029537227,0.016933082,-0.070411004,-0.010864198,0.015820952,0.011850766,0.008364894,-0.0032616511,-0.001575518,0.015665492,0.00996134,0.0027265132,0.01641887,0.0044365632,0.004224302,-0.033937912,0.012903104,-0.020233598,0.012317142,0.004735523,0.009423212,-0.011527889,-0.0483119,0.025303956,0.012927021,-0.02810222,0.020125972,0.0039044146,-0.012472602,0.00035277253,-0.00542612,0.020424932,0.00044582377,-0.009853714,0.0029043942,0.010140716,-0.0048790234,0.033698745,0.0035486526,0.02980031,0.010338029,-0.005085306,-0.0074440986,-0.009046523,0.005781882,-0.033029076,0.019133426,-0.00758162,0.019827012,-0.009201982,0.008998689,-0.041184697,0.019241052,0.0075995577,-0.002630846,-0.00029615703,-0.04015628,-0.007904497,-0.038912605,0.022410026,0.014362028,0.015629617,0.0042691454,-0.0066847405,0.011868703,-0.007007617,-0.03589909,0.015450241,0.0090883775,-0.0077789333,0.005234786,-0.019372594,-0.016430829,0.029489392,0.017973462,-0.011737161,-0.0279348,-0.00025075252,0.024873454,0.017949546,-0.016885249,0.019827012,-0.027910884,-0.008191498,-0.0052796295,-0.0033872144,0.008897043,-0.031163568,0.0067026783,-0.021226143,-0.06304464,-0.00083633995,0.02355803,0.01664608,0.0061197067,0.0039193626,0.016095994,-0.012113851,0.012616103,-0.00446048,0.019408468,0.016072078,-0.0080838725,0.02303186,-0.0042093536,-0.008394791,-0.003991113,-0.014995823,0.0064993855,0.014589237,0.013835859,-0.019587845,0.011013678,0.016825456,0.008358915,-0.0073185354,-0.034798916,-0.015354575,0.010176591,-0.0077251205,-0.008346957,-0.022338275,-0.012747645,0.0053782864,0.013560816,0.062183633,0.0031629945,0.015701368,-0.015258907,-0.0062841345,-0.022780735,-0.02371349,0.003784831,0.010104841,0.020484723,0.01687329,-0.0015874765,0.0052198377,0.00654124,0.010786469,-0.017973462,0.031115733,-0.0009088377,-0.024287492,0.01932476,0.0072348267,-0.007760996,0.016705872,0.022577442,0.02311557,0.010200508,0.0056832256,0.006810304,-0.04637464,-0.03403358,-0.029967729,-0.023103612,0.0028924358,-0.04020411,0.022756819,-0.030972233,0.00021487733,-0.0279348,0.0073484313,-0.022218691,-0.010086903,0.016382996,0.008424686]},{"id":"class-RequestManager","type":"class","source":"main","text":"Class: RequestManager\nProperties: baseUrl: string, options: RestOptions, rateLimiter: RateLimitManager, token: string | null\nMethods: buildHeaders(_route: string, options: RequestOptions, body: string | FormData | undefined) -> Record; getRouteHash(route: string) -> string — Hash route for rate limit bucket (use path without ids for grouping).; request(method: string, route: string, options: RequestOptions) -> Promise; setToken(token: string | null) -> void; waitForRateLimit(routeHash: string) -> Promise","meta":{"url":"/docs/classes/RequestManager"},"embedding":[-0.023651648,0.020703632,0.0075219446,-0.03215814,0.0066667944,-0.0048917956,-0.026239602,0.016697928,0.013041037,-0.008197063,-0.001070344,-0.00454861,-0.024259256,-0.007195637,-0.018261954,-0.017913142,-0.017620591,0.024416784,0.012129628,0.017654346,0.014458786,0.008855304,-0.0068749557,0.009215366,-0.025902044,0.042667486,-0.008860929,0.017721858,-0.012894762,-0.04115972,0.018689528,-0.013929944,0.029142613,0.05490963,0.04932865,-0.02497938,0.01636037,0.009997379,-0.0041463524,0.01299603,-0.010666871,-0.04644815,-0.01573026,0.020838656,-0.05004878,-0.014053715,0.01858826,0.022503948,-0.017091747,-0.00877654,-0.036298867,0.016742937,-0.027117256,0.047573347,0.03386844,0.0009725925,-0.03245069,0.03580378,-0.0032518203,0.027049745,0.042667486,-0.015752763,-0.054819617,-0.007972023,-0.014470038,0.05108396,-0.016225345,0.014863857,0.015325189,0.035533734,0.01744056,-0.010081768,0.0074544325,-0.00057666365,-0.002542946,-0.028017415,0.016315361,0.044377785,0.049733724,0.015719008,-0.035983812,-0.027927399,-0.035826284,-0.056394894,-0.0050774533,-0.034363527,-0.076558426,-0.044782855,0.021997608,-0.038391735,-0.011882084,-0.018003158,-0.050903928,0.032225654,0.021615041,-0.022796499,-0.028197447,0.025519477,-0.02855751,0.013749911,0.06310107,-0.031955604,-0.013558628,0.055764783,0.010188662,-0.007403799,-0.054639585,0.03449855,-0.016405378,-0.025519477,-0.014087471,-0.006351739,-0.025902044,0.023224074,-0.005114022,-0.043860193,-0.031595543,-0.002146314,0.02217764,-0.0034909248,-0.008619012,-0.028084926,0.051489033,-0.00022275392,-0.0069143376,-0.011229469,0.0015485529,-0.021581285,-0.045187928,0.013896188,0.027162265,0.037919153,0.013479864,-0.06301105,0.0050183805,0.012455935,0.019150859,0.0021505335,0.0045176675,-0.0059860502,0.012422179,0.003454356,0.02479935,-0.022965278,-0.008152055,0.009862355,0.005173095,0.0076232124,-0.005170282,-0.0008389753,-0.023966704,0.013547377,-0.028512502,0.016270354,0.010711879,-0.05607984,-0.007280027,0.047123265,-0.03677145,-0.010976301,0.0110606905,0.022132631,0.016484141,-0.031775575,0.023449114,0.0004683634,0.013693652,-0.005144965,-0.06179584,-0.044332776,0.055134673,-0.017856883,-0.03769411,0.0031252357,0.024754342,-0.004658317,-0.0273648,-0.009648567,0.010953796,-0.0033080804,0.06472135,0.015707755,-0.012500943,-0.016349118,-0.036951482,0.010875032,-0.060220562,0.05837524,0.031888094,0.008000153,-0.01020554,0.098477274,-0.011758313,-0.008258949,-0.014154983,-0.04241994,-0.00020007415,-0.012433431,0.0015654309,0.04190235,-0.030267809,-0.007364417,0.037199024,-0.019702205,0.00031030833,0.006717428,0.0015443334,0.007904512,-0.038504254,0.030335322,0.018475741,0.019229623,0.016889213,-0.0026006124,-0.024304263,0.028602516,0.0036400135,0.036613923,0.010965048,0.014548802,-0.022222647,-0.008157681,0.043860193,-0.028377477,0.019623442,0.031370502,0.008534622,0.007679472,0.0054515814,0.020118529,-0.007848252,0.021828828,-0.08029409,0.00034881118,-0.022143884,0.0057666367,-0.021277482,-0.008731532,0.020141033,-0.043702666,0.021648798,-0.016484141,-0.014098723,0.028062422,0.035826284,-0.006818696,-0.01602281,-0.01721552,0.011555777,0.014638818,0.045570493,-0.023944201,-0.014177487,-0.052074134,0.009564178,0.044445295,0.0021786634,0.024551807,0.011994604,0.008725906,0.0006054968,-0.0020352008,0.012759739,0.033553384,0.0071393773,-0.019589687,-0.0069818497,0.024754342,-0.0040563364,0.0074881883,-0.016011558,0.017834378,0.021131206,-0.0125346985,-0.011724557,-0.007797618,0.032675732,-0.025902044,-0.01459381,0.028017415,0.008984701,-0.018543253,0.025114406,0.016045315,0.018768292,0.010801895,0.08659519,0.06800693,0.0070493617,0.044602823,0.02308905,-0.008377095,-0.010166158,-0.09982751,0.024529302,0.03380093,0.054414544,-0.021390002,0.038886823,0.02057986,0.07088743,0.012118376,0.015719008,-0.04406273,0.012017108,0.023336593,0.020309813,-0.032225654,0.006064814,-0.023156563,-0.005597857,0.000041909207,-0.06913213,-0.024304263,-0.022616467,-0.008022658,0.03618635,-0.0632811,0.03488112,0.008793417,0.012725982,-0.027094753,-0.0060479357,0.054594576,0.028152438,-0.042397436,-0.015043889,-0.04338761,-0.04246495,0.03215814,0.03681646,-0.049058605,0.019578435,0.008213941,-0.011848329,0.030762896,-0.002542946,0.015381448,0.009845477,0.080654144,0.050183803,-0.049238637,-0.007960771,0.014031211,0.00029466106,0.033890944,-0.012208392,-0.022942774,-0.030267809,-0.017361796,-0.027612343,-0.0066892984,-0.0553147,0.0031618045,-0.0053671915,0.006323609,0.0010295556,-0.033890944,-0.060625635,0.019375898,-0.07106747,0.035286188,-0.05279426,-0.016967976,-0.012219643,0.025902044,-0.036838964,-0.0319106,-0.021705057,-0.04235243,0.016799197,0.0022982156,-0.017834378,0.012861006,-0.02371916,-0.045592997,0.040507104,0.010762513,0.04707826,0.028692532,0.064496316,-0.003988825,0.0062054633,0.034003466,0.0536044,0.004320758,-0.017913142,0.0032490075,-0.010762513,-0.007566952,0.007589456,0.03580378,-0.031302992,-0.060220562,0.0018059418,0.037266538,0.022706483,0.008073291,-0.004753959,0.025834532,0.020096024,0.032990787,-0.04372517,0.03067288,0.01972471,-0.014177487,-0.0039156866,-0.0004564082,0.024641823,-0.029907746,0.026059572,-0.03911186,0.031077951,0.035533734,0.06427127,-0.005974798,0.029615195,-0.06422626,-0.027544832,0.028917572,-0.061480783,0.040147044,-0.059950516,-0.0065936567,-0.022020113,0.0012981965,0.056754954,-0.002375573,-0.07349789,-0.049553692,0.016461637,0.0030942927,0.07682848,0.03985449,0.025384452,0.014301258,-0.023291586,-0.033553384,-0.0066499165,0.01675419,0.016112827,-0.010064891,-0.011713305,0.0536044,-0.004697699,-0.009153481,0.017136756,-0.015077645,0.037829135,0.03209063,-0.030087778,0.014830101,-0.0069931014,0.01652915,-0.018678276,-0.03447605,0.069942266,0.01756433,-0.030560361,0.0028467493,0.044917878,0.008247697,-0.013007281,-0.010329312,0.016664173,0.013311085,-0.019657198,-0.014740085,-0.021817576,-0.028580014,0.00050247094,0.013412353,0.027634848,-0.020118529,-0.027229777,-0.024664326,0.028399982,-0.022999035,0.032653227,-0.007364417,0.00075528875,0.011437631,-0.02639713,-0.0014353299,-0.012095871,0.08641516,0.0018143808,0.017598087,-0.027207272,-0.011960848,0.0070268577,0.005234981,0.015516472,-0.009744209,-0.03312581,0.008073291,-0.03170806,-0.019679703,0.007319409,-0.030312818,0.027837383,-0.07430804,0.018340718,0.03688397,0.01550522,0.040102035,-0.00592979,-0.02125498,0.00044339808,-0.0019494045,-0.044242762,0.031550534,-0.015797772,-0.01801441,0.0053981342,0.045750525,-0.044625327,0.008619012,-0.01585403,-0.029412659,-0.013772416,-0.0075444486,0.011589533,-0.011111324,-0.01083565,0.019994758,-0.009867981,0.01983723,0.017339291,-0.005153404,-0.013389849,-0.043882698,0.019477166,0.0058397744,-0.011645793,-0.007746984,0.011139454,-0.041024696,0.01978097,-0.028940076,-0.014267502,0.0039606947,0.007229393,0.0036231356,-0.010486839,-0.010115525,-0.021412507,0.040799655,0.005150591,0.017001733,0.005496589,-0.059275396,0.025204422,-0.030987935,0.011645793,-0.010807521,0.017238025,-0.010323686,-0.027207272,-0.015133904,0.03404847,0.0071393773,0.011268851,0.0015190165,-0.024641823,0.015617739,-0.008157681,0.032923274,-0.011578281,-0.024191743,0.03404847,0.027589839,-0.0037891022,0.003803167,0.0024065159,0.035286188,-0.02252645,-0.031595543,0.0032912022,0.023246577,0.0023797925,-0.04305005,-0.017181763,0.031212974,0.006419251,0.037041496,-0.005111209,0.006424877,0.0057413196,0.04680821,0.030807905,0.010211166,0.030627873,0.0069987276,-0.035646252,0.0065992824,0.018093174,-0.006436129,-0.02115371,0.018678276,0.044557817,-0.014582558,-0.0049171126,-0.00082561356,-0.0062954794,0.015032637,0.0026287423,-0.012613462,-0.014683826,0.00031030833,0.015628992,0.051038954,-0.010633115,-0.08074416,0.042554963,-0.014458786,-0.06089568,-0.00678494,-0.028737541,0.04196986,0.031798076,0.016855456,0.020422332,-0.012253399,-0.00089382863,0.011415128,-0.034341022,-0.04145227,-0.020827403,-0.02320157,0.039134365,0.04707826,0.014368771,0.01277099,0.012219643,0.036906473,0.031100456,0.0095360475,-0.044220258,-0.022650223,0.045908052,0.006076066,0.022256404,-0.028242454,0.0035303067,-0.015775267,-0.014166235,0.008107047,-0.017519323,-0.0022686792,-0.056889977,-0.020838656,0.018295709,-0.025924547,0.00009326831,0.02639713,-0.041137215,0.020456089,0.017451812,0.014278755,-0.003339023,0.0007106325,-0.033485875,0.04833848,-0.04343262,0.033733416,0.007218141,0.026082074,-0.019240875,0.017181763,0.018892065,0.027319793,0.01818319,-0.022042617,0.0015752764,0.010858155,0.005997302,-0.022121381,-0.046583172,0.027072249,-0.011043812,-0.014503794,-0.03204562,-0.04640314,0.024281759,-0.04703325,0.022132631,0.008855304,0.024439286,0.011803321,-0.006008554,-0.0045654885,0.01282725,-0.059410423,0.006970598,0.047213282,-0.00038467685,0.04685322,0.0005306009,-0.004368579,-0.0053249965,-0.017541828,-0.0138399275,-0.014616313,-0.019522175,0.028242454,-0.015156409,0.026262106,0.028647525,-0.0031477397,-0.043567643,-0.014121227,-0.010036761,0.014301258,-0.015944047,0.02862502,0.021142459,0.011713305,0.009080343,-0.030717889,-0.019769717,0.03512866,-0.042397436,0.009845477,0.037064,0.03112296,0.04320758,0.031280488,-0.024866862,-0.044850368,0.0598605,0.031302992,-0.033823434,-0.010818773,-0.021772569,-0.00618296,0.006762436,0.01693422,0.03152803,-0.001908616,0.0003401964,-0.003369966,-0.033710912,0.013333589,0.008528996,-0.013862432,-0.0032208774,-0.010740009,-0.052209157,-0.01208462,-0.026959728,0.005552849,-0.0050549493,0.035376206,0.025744516,-0.02439428,-0.016979229,-0.019049592,-0.06445131,-0.0026695307,-0.020568607,0.056844972,0.0028580013,-0.023989208,0.0098004695,-0.024124231,-0.014368771,0.02531694,0.025519477,0.02439428,-0.00037026027,-0.008405224,-0.031257983,-0.0062954794,0.06971723,-0.017170511,0.007741358,0.005417825,-0.013086045,-0.0066949246,0.044827864,0.0057413196,0.018250702,-0.012714731,0.01385118,0.030582864,-0.04235243,-0.014154983,0.0044585946,-0.026104579,-0.009040961,0.019915994,-0.016900465,-0.009204115,-0.011482639,-0.020647371,0.0100592645,-0.04892358,-0.0037244032,0.016281607,0.014076219,0.007364417,-0.0018748601,0.025046894,0.010565603,-0.004756772,0.0048833564,0.045975566,0.04343262,-0.0165404,-0.036501404,0.02803992,0.0150551405,0.00869215,-0.0055922307,0.0433426,0.024664326,0.029142613,0.010807521,-0.0025148161,0.05490963,0.034070976,-0.005963546,0.015606487,-0.010087394,0.04320758,-0.039179374,0.03870679,0.025969556,-0.059095368,0.009761088,-0.019072095,0.034566063,0.017316788,-0.013288581,0.014256251,0.0018523561,0.019488418,0.009266,0.0036203226,0.033305842,-0.041474774,-0.04698824,0.03956194,-0.028129933,-0.012838502,-0.011280104,-0.01550522,-0.038211703,-0.0028369038,-0.02057986,-0.012309659,0.04937366,-0.013007281,0.024146736,-0.043905202,-0.016945472,-0.0075444486,0.03665893,-0.010683749,-0.0059466683,0.05175908,-0.040912177,-0.007195637,0.0025274747,-0.027859887,0.038009167,0.0017665599,0.0113194855,0.007313783,0.030942928,-0.005189973,0.0063123573,-0.0010436205,0.03148302,0.022616467,-0.038346726,0.061480783,-0.062695995,0.04941867,0.006447381,-0.0042701242,-0.022593964,-0.0009402431,0.007589456,0.0116232885,0.011280104,0.0075219446,-0.0015851218,0.017294284,-0.015032637,0.02684721,-0.00056927954,0.007178759,0.0020070707,0.027409809,0.0028861312,-0.027184768,-0.02479935,-0.0122759035,0.03625386,0.019645946,0.02087241,0.007201263,0.025091901,-0.00056927954,0.04829347,0.007775114,-0.026127083,-0.011403875,0.016664173,-0.015493968,0.0030549108,0.025496973,0.0011420753,-0.011071942,0.006858078,0.006531771,0.010762513,0.03182058,0.0433426,-0.03294578,-0.00860776,0.028805053,0.011533273,0.015156409,-0.023156563,-0.0032096256,0.011432005,-0.0069424678,0.0069987276,0.016495394,0.0050352584,-0.022031365,0.02434927,-0.03983199,0.009569803,-0.0085402485,0.017800622,0.05112897,0.023561632,-0.026014563,-0.025519477,-0.01219714,0.013344841,-0.020962426,-0.00039909343,0.01236592,-0.030290313,0.0381892,0.022638971,-0.038639277,0.051804088,-0.022211395,-0.00044480458,-0.014177487,-0.016450386,-0.0017960963,0.026892217,0.00013836412,-0.029255131,-0.009614811,-0.0065486487,-0.010616237,-0.012984778,0.0051590297,0.014076219,0.026554657,0.0028158063,0.0021533465,0.025091901,0.02502439,0.058105193,-0.0058172704,-0.0165404,0.04178983,0.04133975,0.013524872,0.0007021935,-0.028535005,-0.013266077,0.06301105,0.017665599,-0.053199332,0.009046587,0.004216677,0.044377785,0.00937852,0.02371916,0.039719466,0.012062116,-0.006987476,-0.0053053056,0.015460212,-0.0016807636,-0.0004363656,-0.008574004,0.047168273,0.041429766,-0.035038646,0.0032011864,-0.01431251,0.003865053,-0.02713976,-0.011499518,-0.0058341483,0.045705516,-0.008658394,-0.015583984,-0.056259867,-0.010875032,-0.0011863799,-0.0036484525,0.015775267,-0.004739894,0.015156409,0.0062786015,-0.032293163,0.025586989,0.023786673,0.006931216,0.004658317,-0.00518716,-0.014526298,0.00074403675,-0.018734537,0.001053466,-0.000051556894,0.02303279,-0.02993025,-0.04178983,0.00852337,0.026149588,-0.018216945,0.027229777,0.025902044,0.022706483,-0.020219797,0.016619164,-0.02662217,-0.00700998,0.024506798,-0.022661475,0.021367498,-0.000104784005,-0.007251897,0.016349118,0.011927092,0.042960037,0.031145463,0.035623748,-0.0041716695,-0.027859887,-0.016630417,-0.006064814,0.034588568,0.04109221,0.0071843853,0.028917572,-0.0026456204,-0.007268775,0.00963169,-0.023359098,0.024529302,0.01630411,0.023381602,0.0048045926,-0.0020436398,-0.019645946,0.044580318,0.05594481,0.008770914,-0.010301182,0.00937852,-0.023179065,-0.025091901,0.00190299,-0.014695077,0.018914567,-0.023156563,-0.02993025,0.04019205,-0.010379946,0.02446179,-0.042487454,-0.006362991,-0.014154983,0.016990481,0.0028973832,0.004613309,-0.0070887436,0.037604097,-0.0063179834,-0.024844358,-0.021333743,0.012208392,0.01704674,-0.02885006,0.022301411,-0.025767019,0.0025992058,-0.0006673827,0.02479935,-0.0016329427,-0.0049424293,0.018993331,0.021131206,-0.022627719,0.029907746,0.0010710473,-0.022942774,-0.0037665982,0.03841424,-0.009738583,-0.0010168971,-0.012185887,0.016394125,-0.0054487684,-0.043950208,-0.025564484,0.004222303,-0.0290751,0.04082216,-0.013997455,0.022278909,-0.011268851,0.017631844,0.035263687,-0.011049438,-0.024821853,0.024214247,-0.025767019,-0.016157834,-0.032810755,-0.025384452,-0.008303957,-0.0022897767,0.02160379,0.01248969,-0.010965048,0.010655619,0.010762513,0.017924394,-0.012410927,0.022954026,-0.0005460724,-0.047348306,0.040012017,0.02446179,0.0113644935,0.0102336705,-0.004306693,-0.018453237,0.015246425,0.00032648304,0.002512003,0.015347692,0.009344764,-0.017755615,0.0013727408,-0.022143884,-0.004728642,-0.006537397,-0.006036684,0.023786673,0.025519477,0.011460135,0.033823434,0.0057610106,0.019634694,0.001741243,-0.017350543,-0.02468683,0.0010808927,0.005395321,0.00022961058,0.004815845,0.01704674,0.03101044,-0.001684983,-0.0011512176,-0.04327509,-0.014121227,0.005952294,0.0027342297,0.023764169,-0.007302531,0.025226925,-0.0018875186,0.0066611683,0.002375573,-0.0018664212,0.011403875,-0.014515046,-0.008810296,-0.013333589,0.011139454,0.029097604,0.0025471656,0.016967976,0.015966551,0.0094516575,0.013761164,0.0040563364,0.01637162,-0.0290751,-0.022638971,-0.019454662,0.03636638,-0.009232244,0.006486763,-0.0017145195,-0.003049285,-0.021333743,0.0018903316,-0.006739932,0.0066274125,-0.028197447,-0.013266077,-0.02713976,-0.0141437305,0.02479935,0.014672574,-0.009682324,-0.017238025,-0.016450386,-0.013052289,0.044197753,-0.050858922,-0.019150859,0.020816151,-0.03148302,0.038976837,0.017125504,0.011690801,-0.0050155674,0.02930014,-0.005274363,0.017339291,-0.000010762997,-0.005550036,0.013929944,0.004835536,-0.029097604,0.0045598624,0.017170511,0.013614888,0.0044529685,-0.016641669,0.011657045,0.02269523,-0.0044614077,-0.00992424,-0.0031618045,-0.011848329,0.005851026,-0.036456395,0.006447381,-0.012680975,0.007859504,-0.008140803,0.017834378,-0.019679703,-0.0073981727,0.018273205,-0.032675732,-0.016810449,0.016202843,0.01145451,0.029165115,-0.019645946,-0.023471618,0.026914721,0.016664173,0.0071618813,0.010357441,0.03323833,0.008472736,0.01277099,-0.03996701,-0.006852452,0.022425184,-0.0021238101,-0.013693652,-0.008129551,0.013266077,-0.022447687,-0.010565603,0.019634694,0.0047849016,-0.014447534,-0.012095871,0.005890408,0.0020506722,0.02188509,0.034611072,-0.0032715113,-0.03584879,0.024416784,-0.014852606,-0.02349412,0.039809484,-0.02434927,0.031933103,0.0010604985,-0.0028917573,-0.00863589,0.023066547,-0.042960037,-0.01687796,0.0007215328,0.013052289,-0.0053165574,-0.00030608886,0.015876535,0.022762742,0.017699355,-0.028422486,0.025496973,-0.04019205,0.023809176,0.024124231,0.003381218,-0.015010133,-0.0054262644,-0.02405672,-0.0070268577,-0.07286778,0.013671148,-0.007769488,-0.00018882219,0.011291356,-0.020073522,0.005153404,-0.01641663,0.020276057,0.011645793,-0.01784563,-0.0132323215,0.0035190547,-0.016956724,0.017024236,0.013783668,-0.0014711956,0.037581593,-0.004194173,-0.0075557004,0.040169545,0.02001726,0.024529302,0.014166235,-0.009401024,0.020647371,-0.0780887,0.0013882122,0.01675419,-0.01185958,-0.030762896,0.020039765,-0.0015443334,0.005552849,0.0110156825,-0.0066386643,0.015482716,0.0007897479,-0.0063798693,-0.021232475,-0.0068412,0.03164055,0.013693652,-0.0003783476,0.00797765,0.020512348,0.0032490075,0.0071450034,0.010194289,-0.004700512,-0.00877654,0.005896034,0.003850988,0.0045345454,0.050543867,-0.0020492657,-0.020276057,0.036793955,-0.023516625,-0.0083208345,-0.006498015,-0.03506115,-0.022267656,0.01017741,0.0018889251,0.01807067,0.0062617236,0.02160379,-0.0075725783,0.01442503,-0.022548955,-0.023854185,0.023359098,-0.01994975,0.0082702,0.0028073674,0.015640244,-0.016900465,0.04100219,0.028715037,0.0070943693,-0.019342143,0.02405672,0.00888906,-0.014053715,0.0011477013,0.033778425,0.012140879,0.01282725,0.020107277,-0.013603636,-0.012005856,0.011690801,0.027162265,-0.0008544467,-0.032068126,-0.011927092,-0.011837076,-0.017586835,-0.013063542,-0.035376206,0.014908865,0.017260527,0.00031083578,-0.021412507,0.03717652,-0.011460135,0.0031646176,0.011302607,-0.017226772,-0.008827173,0.020174788,-0.008905937,-0.016045315,0.013412353,-0.020141033,-0.010728757,-0.03773912,0.020647371,-0.017935647,-0.012343415,-0.0008424915,-0.0020211358,-0.0104080755,-0.03506115,-0.011690801,-0.030290313,-0.013052289,0.013142305,0.008995953,0.008900311,-0.03665893,0.007645716,0.0066555426,-0.0022518013,-0.0051815338,-0.049058605,-0.001973315,-0.002990212,0.00769635,0.040619627,-0.010846903,0.021108702,0.0066386643,0.033373356,0.0060873176,-0.009069091,0.011533273,0.0023305651,0.003001464,-0.014109975,0.01875704,0.010301182,-0.012377171,-0.006419251,0.008416477,-0.048608527,-0.019994758,0.018959576,-0.0066836723,0.011460135,-0.005645678,-0.029907746,-0.0039353776,0.033395857,0.048833568,-0.037064,0.01715926,0.03287827,-0.020467341,0.0404621,0.047888402,0.05855527,-0.018768292,-0.0138399275,0.0151001485,0.026037067,-0.004613309,-0.012692226,-0.029097604,0.015797772,0.010678123,-0.014335015,0.0113644935,0.04003452,0.002808774,-0.00047082477,0.032968283,-0.018880812,0.02292027,-0.017766867,-0.0017060805,-0.043365106,-0.029435163,-0.005687873,-0.021615041,-0.0049705594,-0.015111401,-0.0013207004,0.025046894,0.045885548,0.021221222,0.05580979,0.010143654,-0.0034599819,-0.038301717,-0.02342661,-0.011094446,-0.018689528]},{"id":"class-REST","type":"class","source":"main","text":"Class: REST\nDescription: HTTP client for the Fluxer API. Used by Client internally.\nProperties: requestManager: RequestManager, Routes: { readonly channel: (id: Snowflake) => `/channels/${string}`; readonly channelMessages: (id: Snowflake) => `/channels/${string}/messages`; ... 55 more ...; reado..., token: string | null\nMethods: delete(route: string, options: { auth?: boolean; }) -> Promise — Send a DELETE request.; get(route: string, options: { auth?: boolean; }) -> Promise — Send a GET request.; patch(route: string, options: { body?: unknown; auth?: boolean; }) -> Promise — Send a PATCH request.; post(route: string, options: { body?: unknown; auth?: boolean; files?: Array<{ name: string; data: Blob | ArrayBuffer | Uint8Array; filename?: string; }>; }) -> Promise — Send a POST request.; put(route: string, options: { body?: unknown; auth?: boolean; }) -> Promise — Send a PUT request.; setToken(token: string | null) -> this — Set the bot token for authenticated requests.","meta":{"url":"/docs/classes/REST"},"embedding":[-0.042837195,-0.008948088,-0.045882385,-0.024111545,0.06281273,0.0034087952,-0.05349536,0.059222136,0.03245173,0.018464308,-0.0020822058,-0.0026844263,-0.015032787,0.006635788,0.0106752105,0.05058652,-0.01410105,-0.037951253,-0.0007002234,0.046177812,0.0053773746,-0.0047353846,-0.005388737,0.00827201,-0.029156562,0.0018464307,-0.018873364,0.0397011,0.008754922,-0.056722354,0.052768152,-0.007862954,0.02742944,0.033292565,0.06299454,-0.000823082,0.011391058,0.037360396,-0.012476191,-0.0133624775,-0.021611761,-0.019339232,0.014635094,0.013248851,-0.013532917,0.024702404,-0.021339059,0.0021802087,-0.011623992,0.024066094,-0.041269146,0.0069653047,-0.040405586,0.06976668,0.05208639,-0.025611416,-0.022918466,0.00007465616,-0.035337843,0.023725215,0.025088733,-0.017827999,-0.025929568,-0.0063289963,-0.032678984,0.065630674,-0.005062061,0.037269495,0.012487553,0.1126266,0.023213895,-0.022963917,-0.01264663,-0.038178507,0.0041984995,-0.009101483,-0.009328736,0.025565965,0.016305404,-0.04488247,-0.016884899,-0.003226993,-0.012180761,-0.057813168,-0.030270102,-0.0022725302,-0.039042067,-0.055404287,0.02404337,-0.030451905,0.008112933,-0.005306358,-0.082220145,0.015021425,0.014510105,-0.02370249,0.011748981,-0.0052751107,-0.009629847,0.039064795,0.069039464,-0.026588602,-0.047041375,0.018702922,0.025952294,-0.01354428,-0.03699679,-0.0028903743,-0.01015821,-0.010993364,-0.040132884,-0.02456605,0.014328303,0.03472426,0.03738312,-0.015282765,0.0119535085,0.0037326308,0.003334938,-0.00068317936,-0.023475237,-0.020339144,0.060676556,-0.011243343,-0.015657732,-0.017453032,0.0207482,-0.032610808,-0.062130976,-0.025179634,0.0319745,-0.008391318,-0.015919074,-0.037724,-0.029520167,0.011067222,0.0072664153,-0.018237054,0.008521988,-0.022770753,0.010805881,-0.009146933,0.034178853,0.00077479077,-0.0263159,-0.012680719,-0.009544627,0.027315812,-0.035905976,0.0244297,-0.029611068,0.0012030207,0.008181108,0.021679938,-0.016566744,-0.049359355,0.051041026,0.03704224,-0.036087777,-0.006351722,0.012237575,0.0042553125,-0.008760604,-0.036155954,-0.00784591,-0.010300243,-0.0072380085,-0.0030764376,-0.029951947,0.020680025,0.039837454,0.009726429,0.003579235,0.0054256655,-0.037905805,-0.025497789,-0.00724369,0.031406365,-0.0037581967,-0.010260474,0.045018822,0.01903244,-0.015453205,-0.030792784,-0.03558782,-0.00069205643,-0.040837366,0.062949084,0.02152086,0.012828433,-0.056358747,0.07962946,-0.015510018,0.014191951,-0.018225692,0.0020651617,0.030247377,-0.007828866,0.006476711,0.013839709,-0.020009628,0.008158383,0.039496575,-0.027293088,-0.009669616,-0.0031360916,-0.020350508,0.00048894907,-0.0033065313,0.012476191,0.01637358,0.07081204,-0.009544627,-0.0047524287,-0.043518953,0.053858966,0.006175601,0.07962946,-0.056676902,0.00334346,-0.013816983,0.004775154,0.025429612,-0.039019343,-0.002683006,0.058540378,0.03433793,-0.04197363,-0.021748114,-0.038973894,0.016669009,0.06031295,-0.06363084,-0.02674768,-0.0015012902,-0.018362043,-0.009459407,0.00437178,0.009254879,-0.021191344,-0.023452511,-0.03724677,-0.012612542,-0.0038945486,0.0033747072,0.005465435,-0.028179374,-0.060540203,0.021225432,0.039837454,0.08740151,-0.000428585,0.026656779,-0.030383728,0.028065747,0.009805968,0.019134704,0.0001594322,-0.0056216717,0.017737098,0.023543412,0.0091582965,0.039337497,0.026520427,-0.034837887,-0.021191344,-0.028497528,0.022395784,-0.00021926365,0.03299714,-0.01765756,0.0263159,0.029997397,-0.035474196,-0.034656085,-0.0022142965,0.01949831,-0.024270622,0.012828433,0.023111632,0.029588344,-0.029247463,-0.013612456,0.009306011,0.014646457,0.013396565,0.04401891,0.014930523,0.0037951253,0.027406713,0.010180935,0.036201406,0.027111284,-0.087946914,0.00981733,0.03856484,0.049313903,-0.01702125,0.041473676,0.04817764,0.026179548,0.017771186,-0.028065747,-0.018271143,0.003241196,0.015555469,0.03497424,-0.03381525,0.045314252,-0.05417712,0.022509411,0.023259345,-0.0414964,-0.030815508,-0.023997918,-0.0028747506,0.006005161,-0.014328303,0.070675686,-0.005172847,0.0018577934,-0.06576702,0.01590771,-0.0034144765,-0.030770058,-0.07872044,-0.0340425,-0.028065747,-0.029224738,0.046155088,0.02902021,-0.050041113,0.014862347,0.022486687,0.047086824,-0.0067607774,-0.015635008,0.024384249,0.017430305,0.039246596,0.04758678,-0.04808674,-0.026429527,0.029383816,0.010124122,0.053949866,-0.016305404,-0.009720747,-0.0082208775,0.0301792,-0.038905717,0.04474612,-0.025565965,-0.006249458,-0.027543066,0.0131238615,-0.01032865,-0.04465522,-0.024293348,0.012737531,-0.03879209,-0.0051415996,-0.07181195,0.03192905,-0.0018166038,-0.00037283698,-0.007936812,-0.018112065,-0.025929568,-0.049813863,0.024725128,-0.008431087,0.0046984563,0.025088733,-0.021929916,-0.042450864,-0.033406194,0.0018208647,0.0007428333,-0.0004775864,0.055086132,0.02949744,-0.017623471,-0.033156216,-0.0023293435,-0.0033150534,-0.02310027,-0.007453899,-0.012135311,0.02902021,0.001663208,0.026474977,-0.013657906,-0.0059483475,0.014714633,0.044382513,0.021316333,0.015566831,0.007601613,0.011192211,0.043223523,0.01838477,-0.027156735,0.059131235,0.0034996965,-0.008544713,0.008249285,-0.00835723,0.00054753775,0.009482132,0.032815337,-0.016521294,0.03622413,0.08249284,0.00013510902,-0.05031382,0.036360484,-0.047950387,0.0053376053,0.011061541,-0.024111545,-0.009646891,-0.024816029,0.02027097,0.017691648,0.0044200714,0.052495446,-0.0339516,-0.045746032,-0.0169758,0.027702143,-0.00835723,0.06467621,0.036814988,0.032724433,0.012669356,0.00415873,-0.046950474,-0.015271403,0.010646804,-0.011669442,-0.0007197529,0.028815683,0.014532831,-0.0017583702,-0.0033491412,0.0045194943,-0.002255486,0.034928787,0.017043976,-0.07035753,-0.037451297,0.0023293435,0.011851245,-0.045791484,-0.002631874,0.033497095,0.05417712,0.06831226,0.0074652615,0.03613323,-0.0044030272,-0.04161003,-0.0058176774,0.024066094,-0.004488247,0.0005894375,0.0046927747,-0.0060449303,-0.008556076,0.0030111026,0.010476364,0.029770145,0.02558869,-0.030588256,-0.050359268,-0.0066073816,-0.0018876203,0.044337064,0.04256449,0.07353908,0.025225084,-0.05717686,-0.024679678,0.00484333,0.06976668,0.0069368985,0.0026375554,-0.023884293,-0.00029560647,0.0039371587,0.000021549089,0.018168878,-0.009680978,-0.0077834157,-0.05576789,-0.04042831,-0.007448218,0.019089254,-0.06803955,0.030201925,-0.04313262,-0.011862608,0.020736838,0.057495013,0.034201577,0.02708856,-0.014498742,-0.0013812722,-0.019998265,0.027224911,0.062267326,0.014601006,-0.004474044,-0.00081598037,0.020282332,-0.037792176,0.0113740135,-0.044132534,-0.019986903,0.0013926349,0.0028364018,0.0116126295,0.0028946353,-0.017566659,0.004337692,-0.021679938,-0.008913999,-0.0027398192,0.011203574,0.027588516,-0.021236794,0.02091864,0.012328476,0.0038604606,0.038587563,-0.015271403,-0.00037958357,-0.019214243,-0.018441582,-0.03211085,-0.0009288967,-0.033678897,0.01260118,-0.008289054,0.051495533,-0.003922955,0.032156304,0.0021830492,0.014214676,0.03899662,-0.008203834,-0.011589903,-0.014532831,0.027247638,0.041541852,-0.01281707,-0.023861567,-0.010862694,-0.0066471505,-0.022191256,0.010408188,0.011476277,0.021043628,-0.039746553,-0.0021887305,-0.005093308,0.045405153,-0.034610633,-0.01598725,0.020043716,0.014941886,-0.0030707563,0.0395193,-0.0024699562,0.035133317,-0.055449735,-0.033156216,-0.014396478,0.036883164,-0.0050649014,-0.045723308,0.016316766,0.05504068,-0.008834461,0.005306358,-0.026020471,-0.028724782,-0.012339839,0.051586434,0.056904156,0.033383466,0.009453725,-0.023657039,-0.032951687,0.01170353,0.012328476,-0.0044087083,0.010527496,0.017100789,-0.0034428833,-0.01260118,-0.022577588,-0.0032383555,-0.014373753,0.0003579235,0.0133511145,-0.024656951,-0.038087606,0.05576789,0.031451818,0.038973894,-0.006113106,-0.043791655,0.008556076,0.01937332,-0.032156304,-0.0058460836,0.006158557,0.008834461,-0.0074879867,-0.0062380955,-0.00059831457,-0.009544627,-0.0032042675,0.016396305,-0.00088415627,-0.0340425,-0.015589557,-0.0005691978,0.02331616,0.004346214,0.038723912,0.045246076,-0.024202446,0.017180327,0.03283806,0.017180327,-0.041632753,-0.035246942,0.04401891,0.00398829,0.027361263,-0.013453378,0.013828346,-0.027861219,-0.031474542,0.0034400425,-0.0031105257,-0.003309372,-0.02275939,-0.015316853,0.011771706,-0.02379339,0.02220262,0.015964525,-0.027202185,-0.0040536257,0.016918987,0.03299714,-0.0061187875,0.009226472,-0.00780046,0.060722005,-0.024838755,0.009709385,0.027906671,0.041019168,0.015328216,0.003763878,0.038496662,0.013623819,0.03299714,-0.0018379088,-0.008936725,0.020691387,0.0022966757,-0.020066442,-0.01264663,0.033542544,-0.025338711,0.012521641,-0.02940654,-0.033224393,0.06831226,-0.0642217,-0.022702577,0.0053432863,0.0008031974,0.06381264,-0.003965565,0.015419117,0.0067891837,-0.028815683,0.010260474,0.0036701362,0.006164238,0.05344991,-0.0060449303,-0.024884205,-0.00093883905,-0.02408882,-0.009555989,-0.0006544177,-0.009663935,-0.018634748,-0.013282939,0.004346214,0.040746465,0.010959277,-0.031656343,-0.008504944,-0.004797879,-0.00050741335,0.017328043,0.043178074,-0.0135897305,0.011249024,-0.008902637,-0.02091864,0.0114876395,-0.0077266027,-0.024588777,-0.013907884,0.01663492,-0.025747767,0.02858843,0.016793998,-0.022100355,-0.008476538,0.025475062,0.0017342246,-0.025656866,-0.008902637,-0.032860786,0.0036843396,-0.03486061,0.010078671,-0.005363171,-0.008982175,-0.004556423,-0.013385203,-0.015612282,-0.019225605,0.02529326,-0.017134877,-0.011413783,-0.005598946,-0.031769972,-0.0052751107,-0.007897043,0.0063289963,-0.01118653,0.022907104,-0.019486947,-0.03013375,-0.0244297,-0.042791743,-0.019191517,0.005246704,-0.02563414,0.04179183,0.0022057747,-0.03183815,-0.0068516782,-0.019748287,-0.037996706,-0.0062380955,0.0073061846,0.0013010235,-0.002521088,-0.00002685314,-0.008209515,0.03254263,0.053813513,-0.040064707,-0.012839795,0.0023605907,-0.018089341,-0.016487205,0.02190719,-0.0009615643,0.007806141,-0.032179028,-0.0028236187,0.0263159,-0.025475062,-0.020770926,-0.044223435,-0.035178766,-0.010766111,-0.019986903,0.0030537124,-0.030270102,-0.01744167,0.00582904,0.00095162203,-0.054813426,0.02897476,-0.0015680458,-0.007959537,-0.009499176,-0.010533177,0.031951774,0.04465522,0.03883754,-0.022486687,0.0414964,0.0073800418,-0.016907625,-0.008328823,0.03226993,-0.0050137695,-0.002031074,0.00019067948,0.042291787,0.0033917513,0.012487553,0.014351028,-0.0012413696,0.040587388,0.018623386,0.023611588,-0.00065938884,0.001482826,0.02931564,0.019998265,0.016066788,0.02858843,-0.03124729,0.0072664153,-0.0001945854,0.07672062,0.03486061,-0.01371472,0.0133624775,-0.02756579,0.028429352,-0.0019316507,-0.012237575,0.0064710295,-0.0017881972,-0.0056046275,0.0037212681,-0.022043543,0.004192818,-0.0226344,-0.010857013,-0.03665591,-0.025020557,-0.0051700063,-0.0062210513,0.030429179,-0.026497701,0.06949397,-0.04024651,-0.027679417,-0.002940086,0.039587475,0.0226344,-0.011584222,0.016157689,-0.03729222,-0.03356527,-0.007470943,-0.012362564,0.0063176337,0.028361177,0.01410105,0.015657732,0.034951515,0.0049796817,-0.0028520254,0.04538243,-0.0056301933,0.03558782,-0.048904847,0.021850377,-0.014180589,0.03642866,0.013521555,0.011714893,-0.009788924,-0.034610633,0.038155783,0.021714026,0.0039485213,0.023566138,-0.0011270329,0.03776945,-0.012180761,0.027952122,-0.002661701,-0.025020557,0.03472426,0.02031642,-0.010169572,0.03863301,-0.0000037561106,0.026884032,0.027952122,-0.012248938,0.049223002,0.016146326,0.039155696,-0.016180415,-0.011601266,-0.013907884,-0.02267985,0.0319745,0.0037297902,-0.024793305,-0.0017924581,0.038133055,-0.043655306,-0.022963917,0.03342892,0.027247638,0.018146154,0.006306271,0.010538858,-0.029861046,-0.03313349,0.0025054645,0.01787345,-0.023429787,0.02275939,-0.048995752,0.015532744,-0.017907538,0.006158557,-0.0039797686,0.005172847,-0.008544713,0.0013819824,-0.013487467,0.024952382,-0.011885333,-0.0029429265,0.020043716,0.009362824,-0.041564576,-0.011180849,0.0074823056,0.06031295,-0.019293781,-0.030883685,0.022691214,0.01825978,0.0044257524,0.02563414,0.0036076417,0.039587475,-0.009658253,-0.0064483043,-0.006357403,-0.022975279,0.013305664,0.03433793,-0.010300243,-0.052404545,-0.0131238615,0.012805708,-0.04076919,0.0014799853,0.0029017369,-0.00394284,0.026634054,-0.00036751074,0.013623819,0.027452165,0.0023179809,0.017032614,0.03149727,0.032201752,0.058131322,0.018350681,0.005113193,0.013407928,-0.006493755,0.028861133,0.044382513,0.035519645,-0.01702125,0.030770058,0.010413869,0.0208391,0.018941538,0.016998526,0.0378149,0.025838668,0.0060506114,-0.0055961055,0.011214936,0.009925275,-0.018964265,-0.009112846,0.015316853,0.040996443,-0.007448218,-0.016475843,0.006380128,-0.0039030705,-0.029520167,0.02511146,0.0011802954,0.040132884,0.015237315,0.013476104,-0.03265626,-0.012726169,0.042587217,-0.011385377,-0.046018735,-0.016475843,0.02486148,0.019816464,-0.0072720964,-0.0053177206,-0.0026688026,0.0026659619,0.00089125795,-0.009538946,-0.013748808,0.006124469,-0.011748981,0.019248331,-0.025066007,0.008533351,-0.027406713,-0.014328303,0.028656606,0.010669529,-0.013487467,0.00801635,0.029065661,0.03326984,-0.0037695593,0.058676727,0.027974846,-0.03086096,0.009652572,-0.0008813156,-0.004437115,0.017407581,-0.009141252,0.024816029,-0.004877418,0.038428485,0.021486772,0.025906844,0.010982002,-0.0132034,-0.022111718,0.0004530857,0.031792697,0.019350594,0.0058176774,-0.0021447004,-0.000065601555,-0.014441929,-0.0022228186,-0.0025707998,-0.0036559328,-0.008323141,0.035087865,0.014419204,0.0066244253,0.0052069346,0.01157286,0.035565097,-0.010578628,0.0015552628,-0.007402767,0.012703444,-0.03211085,-0.017827999,-0.000023746165,-0.012692081,-0.019043803,-0.02704311,0.0029514486,0.007919768,0.008845824,-0.029383816,0.015589557,-0.03090641,0.031133663,-0.009459407,0.0029088387,-0.0121921245,0.022827566,-0.023520688,-0.020589123,-0.014816897,0.011050178,0.007857273,0.009595758,0.045314252,-0.019691475,-0.014396478,-0.02053231,-0.003596279,-0.023657039,-0.006453986,0.025315985,0.0048973025,-0.005769386,0.022907104,-0.0032696028,-0.018782461,0.010703617,0.042587217,-0.04179183,-0.033383466,-0.011771706,0.0053347647,-0.0022441235,-0.038519386,-0.021804927,0.01985055,-0.035633273,0.017078064,0.008817417,0.004902984,0.0036303669,-0.005422825,0.044996098,-0.02048686,-0.020930003,-0.014112412,0.0052495445,-0.015453205,-0.03138364,-0.0009416797,0.018577933,0.0011753242,-0.032906238,-0.003326416,-0.019771012,0.022873016,0.030406453,-0.017089427,-0.02636135,0.016828086,-0.020191431,-0.046995923,0.04115552,0.022304883,0.014430567,0.016828086,0.0244297,0.009896869,0.0042496314,0.00514444,0.0029713332,0.0033065313,-0.00930033,0.017805275,0.01286252,-0.020725476,0.03454246,0.014055599,-0.040655565,0.014191951,-0.030156475,-0.012669356,0.004689934,0.02237306,-0.00093599834,0.0006039959,-0.0244297,0.0062210513,0.028315727,0.0082265595,0.02636135,0.014794172,0.0059937984,0.0069709863,-0.03972383,-0.020327782,-0.040496487,-0.0035934383,0.0024926816,-0.025702316,0.017055338,-0.0141692255,0.008056119,-0.032951687,0.014680545,0.0075448,0.014430567,0.03279261,-0.03647411,-0.04449614,-0.011760344,-0.010283199,0.03865574,0.022600312,0.010226386,-0.009056033,0.0021986729,0.0014139399,0.039405674,0.025088733,-0.01337384,-0.014032873,-0.021998093,0.021884466,0.0017612108,0.0022824726,-0.0068914476,-0.0043973457,0.009913913,0.013635181,0.007862954,0.017293954,-0.014646457,0.0061699194,-0.002729877,-0.008896955,-0.0036417295,0.0208391,0.016907625,-0.013987423,-0.018407494,-0.0063914913,0.04522335,0.0111353975,-0.0034343612,0.011601266,-0.011714893,0.017203053,-0.017066702,-0.001041813,-0.005482479,0.003317894,0.01779391,0.012169399,0.025066007,-0.015737271,-0.013419291,0.002546654,-0.026543152,-0.01041955,0.025747767,-0.001881939,0.0036672954,-0.00064838125,0.012203487,0.011794431,-0.028474802,-0.015169139,-0.018873364,0.034201577,0.017123515,-0.0245206,-0.025475062,-0.049450256,-0.0037581967,0.012805708,0.008482219,-0.010919508,0.019396044,0.015328216,-0.018612022,-0.03086096,-0.00014265454,0.013521555,0.0529045,-0.009652572,-0.018725649,0.013896522,0.0067607774,-0.018589297,0.00797658,0.016214503,-0.010925189,-0.010783155,-0.02057776,-0.013782895,0.0061358316,-0.01577136,-0.01011276,-0.004900143,0.0071811955,-0.018714286,-0.011169486,0.024793305,0.006630107,-0.02125952,-0.0015240156,-0.006482392,0.0091582965,-0.01654402,0.022475323,-0.0015424798,-0.012089861,-0.008771966,0.0013897943,-0.006323315,0.022702577,-0.0027185143,0.0032298334,0.029202012,0.03361072,-0.0152259525,0.008192471,-0.020191431,-0.019714199,-0.013169312,0.007107338,-0.00068317936,0.009095802,0.009646891,-0.0021106123,0.03313349,-0.033042587,0.013680631,-0.04358713,0.016953075,0.008465175,0.005130237,-0.008703791,-0.003823532,-0.026202273,-0.024929656,-0.04740498,0.0207482,-0.023202533,0.016100876,-0.0072152833,-0.0067664585,-0.0073061846,-0.019998265,-0.011339925,0.019430133,-0.0141465,-0.013282939,0.0065392056,-0.003724109,0.01671446,0.0007833127,0.008737879,0.0127716195,0.043223523,-0.01663492,0.009448044,0.022929829,0.00071868766,0.018168878,-0.011748981,0.014135137,-0.06553977,0.004658687,-0.021998093,0.0263159,-0.020691387,0.021611761,0.008760604,-0.000098180404,0.03351982,-0.012385289,0.020020992,0.025020557,0.010027539,0.0044513186,-0.0075675254,0.0030593937,-0.02147541,-0.040041983,0.0432008,0.016248591,-0.009823011,-0.0013358216,0.021895828,-0.016816724,0.020032354,0.025066007,-0.004377461,-0.0058034738,0.04813219,-0.0070618875,-0.00882878,-0.017157603,-0.01264663,-0.020464133,0.043655306,-0.036269583,-0.020952728,0.039746553,0.024316072,-0.0026105691,0.009061714,0.019964177,-0.004797879,0.02674768,0.018986989,-0.033338018,0.01371472,-0.020032354,0.018362043,-0.027020384,-0.012146674,-0.017055338,0.017771186,-0.0034315207,-0.014305578,-0.017987076,0.010947914,-0.0063119526,0.033587996,-0.0016319607,0.0070902943,0.0074823056,-0.0043234886,0.039542023,0.0071471073,0.0029741738,-0.04088282,0.014601006,-0.007766372,-0.02945199,-0.0003604091,-0.023611588,0.0056046275,0.008334504,-0.022293521,0.037087694,0.0026588603,-0.01860066,0.020736838,0.044382513,-0.0031588168,-0.00793113,0.0002828235,-0.0035763944,-0.0035394658,0.017350769,-0.014282852,-0.029906496,-0.00025725752,-0.023157082,-0.012521641,-0.018362043,0.027270362,-0.030497355,-0.011589903,-0.046495967,0.010805881,-0.013396565,-0.02511146,-0.01590771,-0.02413427,-0.023202533,0.0010439436,0.02597502,-0.035269666,-0.020759564,0.00023417713,-0.0031531355,0.008993538,-0.003190064,0.007317547,0.013896522,0.013305664,0.019248331,0.010703617,0.002079365,0.05031382,-0.013237488,0.04324625,0.029792871,0.005042176,-0.015055512,0.022486687,0.04624599,-0.032088127,0.013691994,-0.012328476,-0.010822925,0.009271923,0.013601093,-0.0338607,0.0025182476,0.012782983,-0.008913999,-0.012021685,-0.03372435,-0.009368505,-0.029974673,-0.0106752105,0.02331616,-0.027270362,-0.0034741305,0.006255139,-0.014964611,0.017680285,0.04445069,0.033883426,-0.037519474,-0.0056728036,0.03820123,0.03256536,0.00035348497,0.0021120326,-0.01637358,0.0052864733,0.00082663284,-0.0077777347,0.021509498,-0.0032298334,0.01833932,0.039746553,-0.0077095586,-0.020214155,0.022645762,-0.041632753,-0.030406453,-0.031065488,-0.033747073,0.0038434167,-0.007664108,-0.015657732,0.0009778981,-0.022782115,-0.0014508684,0.0045961924,0.0263159,0.018362043,-0.007982262,-0.013794258,-0.016066788,-0.026247723,0.017078064,0.0065732934]},{"id":"class-Role","type":"class","source":"main","text":"Class: Role\nDescription: Represents a role in a guild.\nProperties: client: Client, color: number, guildId: string, hoist: boolean, hoistPosition: number | null, id: string, mentionable: boolean, name: string, permissions: string, position: number, unicodeEmoji: string | null\nMethods: delete() -> Promise — Delete this role.\nRequires Manage Roles permission.; edit(options: RESTUpdateRoleBody & { permissions?: string | PermissionResolvable; }) -> Promise — Edit this role.\nRequires Manage Roles permission.; has(permission: PermissionResolvable) -> boolean — Check if this role has a permission. Administrator grants all permissions.; toString() -> string — Returns a mention string (e.g. `<@&123456>`).","meta":{"url":"/docs/classes/Role"},"embedding":[-0.019354675,0.05292724,-0.0025941916,0.026165502,-0.0022387442,0.03428346,-0.035246607,-0.0062375255,0.04843255,0.027472632,0.045497246,-0.042080365,0.016121252,-0.0033796153,0.04820323,-0.0020280557,-0.04783632,0.009075371,0.010892738,0.09888313,0.03462744,-0.028206458,0.022186788,0.017783828,-0.017749429,0.05237687,0.008335811,0.037998457,-0.011018864,-0.042424347,0.08351863,-0.016568428,0.00409051,-0.0019635593,0.004405826,-0.021774009,0.030797783,0.009602808,-0.0213383,0.020042637,-0.023425119,-0.023023808,0.0057215537,-0.026280163,-0.014103229,0.057605382,0.00896071,0.023872295,0.014091763,0.021774009,-0.021934533,0.008502069,0.0070917457,0.097965844,-0.0047641397,-0.0039901817,-0.034122933,0.011144991,-0.027862476,0.014000035,-0.015502086,-0.06856692,0.0043771607,0.027793681,-0.0029410392,0.02310407,-0.09062758,0.029765839,0.003508608,0.062145937,0.027495563,-0.032104913,-0.022175321,0.025844453,-0.016235912,-0.052881375,0.047377676,0.021349765,0.016568428,-0.016923875,-0.057284337,0.040406324,-0.026303096,-0.017187594,0.042309687,0.004981994,-0.037677407,-0.07728111,-0.0076191835,-0.03520074,-0.0043083644,-0.04751527,-0.062237665,0.009780532,0.013002489,-0.046185207,-0.0020280557,0.020764997,-0.023803499,0.057100877,0.055954274,0.023287527,-0.05888958,0.000963864,0.0016568428,0.05356934,-0.061457973,0.051459588,-0.010325169,-0.0128992945,-0.0994335,0.0243768,-0.012830499,0.023964023,-0.027495563,0.02078793,0.001261981,-0.037677407,0.011901749,-0.037104104,-0.04756113,-0.050679896,0.016511098,-0.046941966,-0.04487808,0.0034742102,-0.005463568,-0.013059819,-0.030201549,0.009849329,-0.03451278,0.0050335913,0.014103229,-0.028435778,-0.024606122,0.022473438,0.007240804,-0.05150545,0.004520486,-0.029834636,0.010353834,0.015582348,-0.009591342,0.02188867,-0.025752725,0.040314596,-0.008708457,0.004299765,-0.058614396,0.02637189,-0.0033910812,0.015972193,-0.017646234,0.018047547,-0.03740222,-0.044167187,0.005661357,0.016201515,-0.059302356,-0.018953364,0.029605314,-0.018918965,0.006031137,-0.021315368,-0.013896841,-0.055633225,0.017244924,0.017623303,-0.034031205,0.013185945,0.039190926,-0.003024168,-0.034122933,0.001944927,-0.019985307,0.005704355,0.022049194,-0.017887022,-0.020134365,-0.009923858,0.04524499,0.00089076796,-0.02637189,-0.05535804,-0.034466915,0.014068831,-0.05567909,0.028435778,0.033870682,0.042516075,0.0011007398,0.045726568,0.030728986,0.0015049177,0.007269469,0.008318611,0.017990217,0.02270276,-0.008519268,-0.050450575,-0.014000035,0.019205617,0.053661067,-0.042103298,-0.010829675,-0.022198252,-0.021430029,-0.034673303,-0.026899328,-0.0033996808,0.025339948,-0.027816612,-0.03471917,-0.006323521,-0.046575055,0.046919037,-0.0068853567,0.021877203,-0.017267857,0.01664869,-0.046850238,0.017451312,0.0011186555,-0.046460394,0.016522564,0.0128992945,-0.0035286737,0.014573337,0.031485744,-0.015937796,-0.008886181,0.000022069888,-0.01786409,-0.042607803,-0.015846066,-0.0176577,0.013449664,0.051459588,0.019366141,-0.015043444,-0.025271151,-0.046460394,0.014516006,-0.0028435779,0.051230267,0.0011107726,0.040727373,0.015788738,0.039007466,0.016075388,0.045864157,0.03719583,-0.002191447,-0.03189852,-0.025821522,0.005704355,0.0286651,0.052468598,0.01023344,-0.0037837932,-0.02637189,-0.0115807,0.00926456,-0.024720782,-0.027472632,0.017371051,0.04320404,-0.026004978,-0.023436585,-0.018769907,-0.0037465284,0.0059164767,0.04907465,-0.037815,-0.0113972435,0.03054553,0.027541427,0.02634896,-0.008989375,-0.00055287813,0.02634896,0.0042424346,0.024651986,0.012819032,-0.029765839,0.05810989,0.012715838,-0.0019836249,-0.0091212345,0.022416107,0.010130246,0.001225433,0.023184333,-0.053523473,0.016545495,-0.014825589,0.057742976,-0.018632315,0.049166378,0.03604923,0.01792142,0.033710156,-0.025041832,-0.01795582,0.005136786,0.009717469,0.012165468,-0.022794487,-0.024399733,-0.07480444,0.010537291,0.047056627,0.00058727624,-0.00560116,-0.04013114,-0.024216276,-0.03141695,-0.0065471088,0.03627855,0.08085851,0.046712644,-0.037860863,-0.015811669,0.031783864,-0.021407096,-0.042149164,-0.036530804,0.00518265,0.021498825,0.041598793,0.04719422,-0.05907304,0.0255922,0.07108945,0.04178225,0.013185945,-0.04212623,0.115210764,0.04577243,-0.018930431,0.025706861,-0.025844453,-0.019801851,0.019882113,-0.026096707,-0.009969722,-0.022095058,0.0015307163,-0.0046953433,0.028940285,-0.0045462847,0.023058206,-0.03694358,0.0052285143,-0.059348222,-0.009912391,0.017050002,-0.022507835,-0.006375118,0.051413722,-0.02110898,-0.021430029,-0.039878886,0.021934533,0.013048354,0.033136856,-0.02426214,0.034535713,0.018265402,-0.012750236,0.0033280181,0.01571994,-0.050542302,-0.043754406,0.0030700322,-0.0064783124,-0.037425153,-0.01323181,-0.010170377,-0.007945966,0.0019492267,0.01091567,-0.00095454784,-0.008777253,0.009006574,-0.039443176,-0.013988568,-0.015272765,-0.020638872,-0.016373504,0.046941966,0.03749395,0.019996773,0.014928784,-0.015834602,0.015742872,0.022771556,0.06031137,0.030063957,-0.021693747,0.017302254,0.023986956,-0.016602825,0.025638064,-0.016063921,-0.025775658,0.0025425942,0.013564325,-0.011305516,-0.0059738066,0.031692132,0.03033914,0.03283874,0.04756113,0.049670883,-0.05301897,0.039167993,-0.042355552,0.01847179,0.0084906025,-0.036255617,-0.022989409,-0.007028682,-0.021556154,0.034558643,-0.007321066,0.008226884,-0.04058978,-0.03591164,-0.030155685,-0.016350573,0.04320404,0.049349837,0.021005785,0.025615133,-0.0031330953,-0.012956625,-0.023849363,-0.0027160181,0.00511672,-0.005996739,-0.0061228652,0.009109769,0.012692906,0.051872365,-0.0025712594,0.0402458,-0.07283229,0.023195798,-0.0077567757,-0.0040331795,0.04125481,-0.030728986,0.050129525,-0.0014547538,-0.0201229,0.008335811,0.048111502,-0.023665907,-0.009562677,-0.012303061,0.013518461,0.03031621,0.044052526,-0.046391595,0.008450471,-0.033503767,-0.03462744,-0.033457905,-0.04595589,-0.006627371,0.043158174,0.056183595,-0.018494722,0.021258038,0.00068939565,-0.01139151,-0.011357113,0.022450507,0.008261282,0.033343244,0.02678467,-0.009597075,-0.06416396,0.007945966,0.06902556,0.022473438,0.010411164,0.000013447962,0.021498825,-0.01714173,0.0035172077,0.0069828182,-0.009574143,0.018288333,-0.031187627,0.015192503,-0.058155753,-0.009367755,-0.024606122,0.0026873532,-0.06315495,-0.017428381,-0.006352186,0.0057014883,0.023413653,0.030407937,-0.02435387,-0.0017686366,0.04554311,-0.038663488,0.029903432,0.0019463602,-0.044488233,-0.015582348,-0.037425153,-0.046368666,0.009407885,-0.008880448,-0.022897681,0.022186788,0.02701399,0.05026712,-0.01670602,-0.0033824816,0.016086854,-0.008582331,0.004030313,0.019389072,-0.0009287492,0.023986956,-0.02646362,0.036439076,0.02156762,-0.0017098732,0.014951716,0.020432483,0.011718293,0.036966514,-0.03561352,-0.0025397278,0.0055409637,0.016786283,0.0015479154,-0.010485694,0.01636204,-0.008731389,0.026945194,0.01395417,0.034145866,0.024743713,-0.048157368,0.0018331332,-0.025385812,-0.00044538398,-0.003987315,-0.019538132,-0.016843613,0.018712576,-0.007888636,0.0031502945,-0.0012340326,-0.011517637,-0.022117991,-0.046575055,-0.0065184436,0.012979557,0.030063957,-0.005598294,-0.022152388,0.0064955116,0.019217083,0.021705214,0.025271151,0.033274446,0.000035002773,0.025546337,0.0094594825,0.017325185,-0.009935323,0.0017213392,-0.0659068,0.0030700322,-0.006856692,-0.011901749,-0.0077567757,-0.0028034467,-0.007561853,-0.03396241,0.03419173,0.02556927,-0.0005313793,0.026876397,-0.023081139,-0.031806793,-0.0255922,0.021842806,0.01989358,-0.016946808,-0.010411164,0.024720782,0.004855868,-0.057192605,0.015708474,-0.014103229,-0.0073096002,0.033687226,-0.010858339,-0.005841947,0.022347312,0.004176505,0.033572566,-0.036140956,-0.017531576,-0.0015608147,-0.018781373,-0.0012777469,-0.0077051786,0.00134081,-0.010227707,0.0016941074,0.0009867961,0.014756793,-0.008559398,-0.011007398,-0.000053612694,-0.03043087,-0.016981205,-0.03515488,-0.015330095,0.016717486,-0.047331814,0.010990199,-0.00046509123,0.0035831374,-0.04487808,0.017749429,0.006713366,0.022129457,-0.029353062,0.020707669,0.0042854324,-0.01499758,-0.023665907,0.020719133,-0.007951698,-0.005810416,0.013667519,-0.008060626,-0.005036458,-0.015398892,-0.06306322,0.008582331,-0.041873977,0.014642132,-0.01780676,-0.035498857,0.07237364,0.010732213,0.03265528,-0.0148141235,-0.026004978,0.009344823,0.024491461,0.039672498,-0.012601178,-0.012142536,0.034421053,0.008565132,-0.0036433341,0.026738806,0.033503767,0.008484869,0.013610189,0.024422664,0.0016926741,-0.00044645893,-0.02481251,-0.011041797,0.009608542,0.009402153,-0.02921547,0.0050192587,-0.012199867,0.032104913,-0.02889442,0.008880448,-0.011695361,0.02556927,-0.012371857,-0.005454968,0.009958255,0.002642922,-0.031118833,-0.030522598,0.019205617,-0.009407885,-0.010789543,0.024285072,-0.011810021,0.0027661822,0.020042637,0.01017611,-0.017554507,-0.004440224,-0.03043087,-0.018494722,0.04508447,0.013140081,-0.0072924015,-0.053431746,0.014756793,-0.029192537,-0.010755145,0.0024293673,0.015880466,-0.015203969,-0.0146192005,0.0487536,0.0098722605,-0.0014791192,0.043181106,-0.008484869,-0.024170412,0.003204758,0.03054553,0.0065012444,0.02944479,-0.014435744,-0.038686417,0.017382516,-0.009602808,0.024651986,0.0015751473,-0.012142536,-0.00047118257,-0.004491821,0.024835441,0.0073554646,0.010629019,0.0067936284,0.013243276,-0.013828044,-0.036783054,-0.019285878,-0.020650338,-0.004807137,0.009172832,-0.0013744915,0.036095094,-0.014699463,0.0074070618,-0.011970545,-0.014986114,0.0032534888,-0.051643044,-0.046506256,-0.020593008,-0.043639746,0.04788218,-0.019526666,0.032678213,0.0073096002,0.029926363,-0.034214664,-0.028275253,-0.00031603273,0.0052915774,0.012887829,-0.019778918,0.019182684,-0.0027661822,-0.01632764,-0.00091584993,0.0010692083,-0.011764157,0.03758568,-0.018460324,-0.005773151,-0.026876397,0.009098303,0.0039156526,0.003737929,-0.053661067,0.00038447065,0.023895226,0.012692906,-0.028435778,0.0048501347,-0.034466915,-0.016556961,0.025064763,0.0058648796,-0.0026558214,-0.029192537,-0.010313703,0.004497554,-0.053431746,-0.01621298,0.03143988,-0.00390132,0.017795295,0.0032305566,0.04480928,0.030041024,0.024743713,-0.009390687,0.023448052,-0.043295767,0.039443176,0.010336635,0.032907534,0.00031674936,-0.014298151,-0.012452119,0.004248168,0.0041363738,0.018208072,-0.030499665,-0.027220378,-0.0065069776,0.0036290016,0.009751867,0.011294049,-0.030407937,0.051046807,0.0014877187,-0.001927728,0.0030127019,-0.018185139,-0.01201641,-0.014527473,0.028756827,0.01760037,-0.010485694,0.038227778,-0.03075192,0.030270346,0.02481251,-0.014538938,0.003024168,0.0201229,-0.021980397,0.020925522,0.01055449,0.0023620042,0.020421017,0.009465216,0.012475051,0.024514394,0.017795295,-0.006323521,-0.01621298,-0.02018023,0.029375995,-0.04038339,-0.060770012,0.027770748,0.020111434,-0.003984449,0.015341561,0.0062088603,-0.03508608,-0.025890319,0.004434491,-0.003153161,0.007785441,0.014252287,-0.0062031276,-0.029834636,0.015995126,-0.0035172077,-0.019744521,-0.0231614,0.007739577,0.004959062,0.011500438,-0.019033626,0.020615939,0.019010695,0.019159753,0.014000035,-0.015112241,-0.017737964,0.010732213,-0.003603203,-0.02067327,0.028389914,0.020524211,0.023470983,-0.019492269,0.0329534,0.0034025472,-0.025683928,-0.005030725,0.021980397,0.0033796153,-0.028733896,-0.0020581542,-0.009356288,-0.023321925,0.0004801404,-0.019068025,0.041529994,0.018804306,-0.010376766,0.019354675,-0.012933693,0.016591359,-0.0032018917,-0.007865704,-0.042837124,-0.014137627,0.050221253,0.029054945,0.016121252,0.0070114834,-0.0137477815,0.021372698,0.01809341,0.009694536,0.0038726549,0.024422664,-0.016224446,0.015100774,-0.012314526,0.019778918,-0.015742872,-0.01760037,0.0037149969,0.022232652,-0.009889459,-0.013690451,-0.006902556,0.02602791,-0.03563645,-0.02515649,-0.008593797,0.026280163,0.0005768851,0.020604473,-0.017818226,0.018116344,0.00890338,0.012337459,0.0029697043,0.014630667,0.016511098,-0.0023089738,0.027403835,-0.009235895,-0.028940285,0.030706055,0.005850547,0.032494757,-0.01505491,0.010250639,-0.0056126267,0.043387495,-0.016671622,-0.050221253,-0.042974718,-0.007865704,-0.0021470159,-0.017760895,-0.031279355,-0.040039413,0.017749429,0.027816612,0.0023147068,0.046139345,0.01945787,0.022576632,0.034902625,0.00237777,0.00738413,0.050909217,-0.011339913,-0.0021126177,-0.018953364,-0.0043542287,0.057513654,0.03141695,0.0062891226,-0.06086174,-0.01752011,0.013163013,0.0065471088,0.034879692,0.03983302,-0.0046122144,0.012761702,-0.038801078,0.046781443,-0.00536324,0.028298186,-0.020501278,0.04930397,0.015089308,-0.016488165,0.016935341,-0.019090956,-0.008553666,0.009614274,0.028389914,-0.027747815,-0.0062317927,0.016373504,0.01760037,-0.013736316,-0.015479154,0.03859469,-0.0036863317,-0.036003366,-0.020638872,0.01841446,-0.024720782,-0.016981205,0.0050937883,-0.009877994,0.0038325237,0.012635576,-0.018127808,-0.0016926741,0.0144013455,-0.029628247,0.005245713,-0.0030700322,0.01042263,-0.0022573767,-0.010932869,0.015536484,-0.039190926,0.039741293,0.002721751,-0.0019176952,0.006868158,-0.004279699,0.025890319,-0.016637223,-0.023688838,0.017932886,-0.008289947,0.031394016,0.054715943,0.007894369,0.0047240085,-0.020203162,0.0033738823,-0.029742908,-0.004938997,0.027197447,-0.0064955116,0.0022559434,-0.015972193,0.035659384,0.015135173,0.016522564,0.041759316,-0.041277744,-0.039489042,0.007773975,-0.021303901,0.02469785,0.024995966,0.021498825,-0.012750236,0.015043444,-0.01754304,0.0075159892,0.01566261,-0.0073554646,-0.015146638,-0.022679826,0.031004172,0.0073669306,0.010686349,-0.02513356,-0.027793681,-0.013988568,0.046827305,-0.028688032,0.0019936576,0.0043714275,-0.041736383,0.0046810107,0.012417721,-0.008909113,0.02602791,-0.028986149,-0.022370243,0.026738806,-0.027495563,-0.005830481,-0.008261282,0.035131946,0.039122127,-0.0085422,-0.005452102,-0.043914933,0.026578281,-0.008576598,0.014745327,0.03233423,-0.005664224,0.0066961674,0.02327606,-0.00719494,0.02156762,0.0026142572,-0.00024329503,0.021739611,0.033778954,-0.037608612,-0.014057364,-0.024881307,-0.026670009,-0.0010211942,-0.006002472,-0.0023003742,-0.006977085,-0.04114015,0.020684736,0.018941898,0.0076478487,0.0070000174,-0.020421017,0.025225287,-0.013197412,-0.040108208,0.002114051,0.009081104,-0.013816578,-0.020948455,0.015593814,0.0019750253,-0.0133120725,0.0003622552,-0.00816382,-0.01719906,0.018460324,0.004133507,0.02154469,0.00058620126,-0.024629053,-0.01273877,-0.0048988657,0.061595567,0.026257232,-0.0255922,-0.0031904255,0.032265436,0.004093376,0.020283425,-0.026004978,-0.0055667623,0.030637259,0.0007596251,-0.008662593,-0.01334647,0.006071268,0.006048336,-0.0003755128,-0.027770748,-0.011597899,0.026853465,0.010760878,0.0071261437,0.030683123,0.0012282995,-0.018185139,0.0036318682,-0.035980433,0.019354675,-0.026968125,0.024995966,0.0141834915,0.0078370385,0.05700915,0.009350555,-0.0041793715,-0.0493957,0.021556154,0.041759316,-0.0054664346,0.019538132,-0.020627405,0.013977103,-0.024629053,0.011970545,0.006724832,-0.003995915,-0.003855456,-0.024422664,-0.045038603,-0.014779725,-0.01262411,-0.031806793,0.0067706965,0.021533223,-0.002422201,-0.009746134,-0.010084382,-0.024995966,0.035934567,-0.013449664,0.019870646,-0.03439812,0.06618198,-0.016224446,0.01879284,0.0028851423,0.019882113,-0.0051654507,0.0034828095,0.022209719,0.060907602,-0.0068738908,0.012348925,-0.0002608524,-0.0015335828,0.01456187,0.00628339,0.019228548,-0.009172832,0.0017944352,0.006914022,0.023620041,-0.011196588,0.02032929,0.06132038,-0.026922261,0.049487427,0.012383323,-0.033182718,0.015731407,0.0065471088,0.024537325,-0.00329362,-0.009906658,0.028619235,0.0048272028,0.013392335,-0.022565166,-0.0020137231,-0.0078141065,0.003995915,-0.0038669219,0.011643764,0.026738806,0.027197447,0.018150741,0.007521722,0.0176577,0.0052485797,0.023069672,0.008095024,0.021842806,-0.01748571,-0.0036777323,0.02128097,-0.010302236,-0.06916315,0.02556927,0.007527455,-0.0037895262,-0.040956695,0.0141605595,0.004311231,0.0013687585,0.012257197,-0.009350555,0.0076535814,-0.01334647,-0.01395417,0.044052526,0.02822939,-0.013013955,0.0353154,-0.028160594,-0.006369385,-0.002276009,0.013461131,0.018918965,-0.031118833,-0.008811652,0.0070516146,-0.034145866,0.0010369599,0.019813316,-0.006059802,0.013335004,-0.0095569445,0.00700575,0.0011544869,-0.026417756,0.01256678,-0.029605314,-0.016316175,-0.015834602,-0.044167187,0.00499346,-0.0329534,0.009298958,0.004182238,0.004918931,-0.03749395,0.004658079,-0.004646613,-0.00897791,-0.027793681,-0.0057932166,0.035498857,0.034489848,-0.01334647,0.0051224534,0.00878872,-0.0037637276,0.017909953,-0.018081944,0.01919415,0.018185139,-0.028917352,0.017244924,0.011936148,-0.0021900136,0.0048988657,-0.03547593,-0.014344016,-0.0035602055,0.011798555,-0.02758729,-0.012108138,-0.0070401486,-0.017508643,0.004990594,0.027633157,0.018884568,-0.009281759,-0.0039156526,0.0055352305,-0.00081265555,-0.0005614776,0.037172902,-0.0037522616,-0.0028880087,-0.021475893,0.0051625846,0.007722378,-0.0030442337,-0.010858339,-0.033343244,-0.0035372733,-0.028275253,0.034375187,0.022163855,-0.03671426,-0.038250707,0.031990252,0.017153196,-0.007963165,-0.008995108,0.019148286,0.022794487,0.0061629964,-0.004815737,-0.0006618055,0.008014762,-0.02536288,0.0049791276,-0.050909217,-0.0053603738,-0.008072092,-0.03254062,0.0016310442,-0.023058206,-0.02206066,0.015868999,-0.028160594,0.018345663,-0.02162495,0.0030270345,-0.00926456,-0.0026228565,0.007544654,-0.02845871,-0.015536484,-0.034443982,-0.0042854324,-0.016591359,0.004480355,-0.002118351,0.0028306786,0.014126161,-0.013369403,-0.01372485,0.00998692,0.036118027,-0.0032792874,-0.015651144,0.02845871,-0.026440687,0.004552018,-0.005991006,-0.05292724,0.006535643,0.020054104,0.0056068935,0.00028700932,0.03584284,-0.014000035,0.050450575,-0.017187594,-0.004930397,0.0015894797,0.008324345,-0.019274414,-0.03143988,0.012532381,0.0038669219,0.015639678,-0.028527508,0.0097747985,0.0010154612,-0.014882919,-0.0035888704,-0.007246537,-0.04322697,-0.012222799,0.024881307,-0.0013178779,0.008307146,0.04962502,-0.030614326,0.012211332,0.023895226,0.01163803,0.0001877564,-0.0032764208,-0.020581542,-0.02040955,0.018208072,0.011798555,-0.02078793,-0.039649565,-0.0046122144,0.0030786316,-0.034008276,-0.044029593,-0.008605263,0.012039342,0.0028966083,0.0065299096,-0.021613484,-0.02359711,-0.0408879,0.0054320362,0.023688838,0.0053603738,-0.02046688,-0.027541427,0.017772362,-0.021120446,-0.012383323,-0.02067327,-0.026165502,-0.009832129,0.016774816,0.006575774,0.009877994,-0.009562677,0.034008276,0.015043444,-0.00689109,0.00823835,0.00329362,0.04870774,-0.014894386,-0.012658508,0.009832129,-0.030866578,0.011259651,0.0164767,-0.022771556,0.015857533,0.023574177,-0.0020825195,-0.0012397656,0.0025769924,-0.030086888,0.01011878,0.008547933,0.039328516,0.0012526648,-0.012337459,0.014194957,-0.018334197,0.006329254,0.028733896,0.018586451,-0.0084676705,0.027954206,-0.0076478487,0.033939477,-0.004895999,0.024835441,0.00036798822,-0.00237777,-0.031050036,-0.01632764,0.021395631,0.02435387,0.009929591,0.032104913,0.011208054,0.042263824,-0.0016453767,-0.03483383,-0.010095848,0.0043484955,-0.033434972,-0.021991864,-0.0035602055,-0.04884533,-0.021407096,-0.009482414,-0.030912444,0.00079903967,0.0017758029,0.014263754,-0.010778077,-0.035338335,-0.0065929727,-0.019240014,0.008009029,-0.018425927]},{"id":"class-SnowflakeUtil","type":"class","source":"main","text":"Class: SnowflakeUtil\nDescription: Utilities for Fluxer snowflake IDs.\nFluxer uses Twitter Snowflakes with a custom epoch.\nProperties: EPOCH: 1420070400000n\nMethods: dateFromSnowflake(snowflake: string) -> Date — Converts a snowflake to a Date.; deconstruct(snowflake: string) -> { timestamp: number; date: Date; workerId: number; processId: number; increment: number; } — Deconstructs a snowflake into its components.; isValid(snowflake: string) -> boolean — Checks if a string is a valid snowflake format (numeric string, 0 or positive).; snowflakeFromTimestamp(timestamp: number) -> string — Converts a Unix timestamp (ms) to a snowflake string.\nUseful for pagination (before/after).; timestampFromSnowflake(snowflake: string) -> number — Converts a snowflake to a Unix timestamp in milliseconds.","meta":{"url":"/docs/classes/SnowflakeUtil"},"embedding":[-0.03381073,-0.027494172,-0.01782347,-0.019439334,0.04739868,-0.021581579,-0.04450971,-0.0050250925,0.042697985,-0.009597253,0.048647303,0.018239679,-0.027983828,-0.014322432,0.010613289,0.06576077,-0.05116903,0.002096339,-0.03283142,0.049455233,-0.025755893,-0.041375913,0.0017627608,0.0027191197,-0.0040519014,0.017040022,-0.011304928,0.06972698,0.020075887,-0.039392807,0.035965215,-0.017590884,-0.011151911,0.02344227,0.045342125,-0.02054106,0.0066470774,0.0074121645,-0.046811093,-0.0085261315,-0.038633842,-0.01606071,-0.026637275,-0.00051222584,0.0010634712,0.022279339,-0.045758333,-0.018533472,-0.010588806,0.05273593,0.0024697015,0.024029858,-0.0127065675,0.014677432,-0.012186308,-0.015216053,-0.040249705,0.034790043,-0.041204534,-0.004002936,0.020749163,0.0024421583,0.021912096,0.05415593,0.047055922,0.07261595,0.0053586704,0.040445566,-0.02088382,0.05616352,0.009603374,0.016746229,0.037287287,-0.08152769,0.0023809513,0.043848675,-0.028473483,0.01325743,0.032243833,-0.021924337,0.024886755,0.040788326,-0.031460386,-0.016293297,-0.014824329,-0.011047859,-0.015020191,-0.012755533,-0.02396865,0.0005822313,0.01325743,0.014383638,-0.069580086,-0.0058513866,0.009034149,-0.032904867,-0.0057473346,-0.014285708,-0.0070020775,0.019867783,0.026759688,0.002905801,-0.01843554,-0.021091923,0.037776943,-0.00036858075,-0.044558678,-0.030579004,-0.051805582,0.0017061444,-0.074868366,-0.052980755,-0.022230372,0.018668126,0.0037611686,0.015999503,-0.052882824,0.037874874,0.0059034126,0.024299169,-0.016195364,-0.048010748,0.0011751739,-0.011029497,-0.019353645,-0.027028998,0.024862273,-0.03266004,-0.03562246,0.002755844,0.01273105,-0.052540064,-0.010778548,-0.028130725,-0.011812946,-0.032855902,-0.019696403,-0.030750383,0.0020489034,-0.013906225,-0.020712439,0.037238322,0.081870444,0.01062553,-0.034741078,-0.007118371,0.029207967,0.04661523,-0.020075887,0.019010887,-0.007963027,-0.020430887,-0.0052699205,0.00921777,0.020945026,-0.0240421,0.035597976,0.008844407,0.02098175,-0.03317418,-0.010968289,0.013906225,-0.03307625,0.023197442,-0.011543635,-0.0032103057,-0.0005432119,-0.041229017,-0.07418285,0.0021606062,0.01281674,-0.06179456,0.013330879,-0.056849036,-0.042697985,0.015056916,-0.005318886,0.002264658,-0.050018337,-0.053323515,0.033345558,-0.0034796165,-0.0137348445,-0.07961803,0.011023376,-0.03880522,-0.036552805,0.0412535,0.039490737,0.036112115,-0.015754675,0.039074533,0.007314233,0.054106966,0.03816867,0.014910019,0.026074171,-0.026980033,0.023674857,0.02879176,-0.027175896,0.020381922,0.014457087,0.0007639395,-0.007418285,0.03381073,0.0059431973,-0.021116406,-0.015154846,-0.045856263,0.020222783,0.056653176,0.0011254433,0.02159382,-0.01782347,0.06767043,-0.018276403,0.017921401,-0.03221935,0.008183372,-0.03870729,0.023270892,0.008336389,-0.019561749,0.007932424,-0.052246273,0.0047619026,-0.053519376,-0.013392085,0.02800831,-0.009334063,-0.014334673,-0.022267098,-0.0007964557,-0.051511787,0.0061574215,-0.049357302,0.0056861276,-0.013465534,0.013845017,-0.02509486,-0.040445566,-0.014910019,0.0509242,-0.00491798,0.020026922,-0.036920045,-0.035842802,0.013061568,0.023307616,0.02440934,-0.017052263,0.014077604,-0.027690034,0.011959842,-0.075162165,0.021716233,0.055429034,0.0165014,-0.01483657,-0.011598721,-0.054204896,-0.04186557,0.029110037,-0.02344227,-0.028938657,0.028473483,0.04379971,-0.0030251546,0.0013916936,-0.01009915,0.048010748,0.025168307,-0.0091014765,-0.028718311,0.022842443,0.0019004765,0.021091923,-0.01290243,-0.015815882,0.008330269,-0.015742434,0.010044064,-0.0054994463,-0.021618303,0.031754177,0.01967192,0.019818818,0.020051405,-0.013477775,-0.024727616,-0.0009877275,0.037703495,-0.033957627,-0.008477165,0.009015787,0.028595898,0.016085193,0.014346914,-0.017505195,-0.01588933,-0.047790404,-0.0040519014,-0.029452795,-0.0150936395,0.012431136,0.023944167,-0.018655885,0.0068796636,-0.009401391,-0.02054106,-0.025339687,-0.04284488,-0.05880766,-0.018545713,-0.022622097,0.041106604,0.043432467,0.04284488,-0.008134407,0.021434681,-0.07570078,0.015411916,-0.021508131,-0.03496142,-0.044093505,-0.047619026,-0.012559671,-0.018019333,0.01992899,0.016036227,-0.021373475,0.027739,0.024727616,0.012529068,-0.047104888,0.009946133,0.009291219,-0.013171741,0.0055331104,-0.007999752,-0.080156654,-0.049259372,-0.016697261,0.010962169,0.0056647053,-0.019353645,-0.012161826,0.025339687,0.022316063,-0.071685605,0.062284216,-0.07335044,-0.0030175038,0.006591991,-0.017003298,0.026196584,-0.03310073,0.022303822,-0.009664581,0.013722603,-0.007057164,0.023895202,0.021361234,-0.028865209,-0.0028828485,-0.010111392,0.011298807,-0.014775363,-0.053862136,-0.03327211,-0.015668985,0.030603487,-0.03836453,-0.013318637,-0.01623209,-0.029012104,-0.009976736,0.028032793,0.056898,0.044069022,0.036210045,-0.026025204,-0.034398317,0.034814525,-0.037874874,0.005548412,0.029183485,-0.01281674,0.03361487,0.030652452,-0.012841223,-0.016672779,-0.03711591,-0.010466392,-0.0021453043,-0.001334312,0.03643039,0.015142605,-0.021471405,0.012939154,0.0405435,-0.004061083,-0.023221925,0.0024023736,0.0078957,-0.014383638,0.058513865,-0.005689188,0.0007926303,-0.03133797,-0.021728475,0.020957267,-0.019745369,0.06257801,-0.0344228,0.03221935,0.005784059,-0.032194868,0.010037944,-0.032072455,-0.013269672,0.0010588806,-0.024286928,-0.005689188,-0.004501773,0.029820038,-0.041620743,-0.009670702,-0.016697261,0.008415959,-0.014775363,0.09009667,-0.013661397,0.0036387546,-0.020149335,0.027494172,0.033492457,0.013906225,0.030383142,0.013845017,0.059884902,0.04073936,0.0076692337,-0.082360104,-0.007081647,0.002852245,-0.014444846,0.022169165,-0.048867647,0.02054106,0.02458072,0.039270394,-0.016550366,-0.0073693194,-0.019635197,0.0034857371,-0.029061072,0.10023254,-0.021214336,0.031191073,-0.005126084,-0.03256211,0.030652452,0.019157782,0.004501773,-0.019059852,-0.003458194,0.032488663,0.010956048,0.00877708,0.034300387,0.043016262,0.05356834,-0.0131594995,0.0040580225,-0.006292077,-0.026710723,0.09964495,0.05924835,0.0108948415,0.01701554,0.0028109301,-0.0023733003,-0.039466254,0.07873665,0.034716595,0.010594927,-0.010637772,-0.009603374,-0.037605565,-0.020785889,0.04091074,-0.012425016,-0.043652814,0.01483657,-0.012351567,-0.0036662978,-0.00029283713,-0.059297316,0.025388652,-0.007216302,-0.0004521665,0.05082627,-0.0031200254,0.00948096,0.007173457,-0.03931936,-0.05900352,-0.02940383,0.058220074,0.047080405,-0.027102448,-0.011684411,0.02668624,0.016207606,-0.05038558,0.0027160593,-0.010056306,-0.034104526,0.01781123,-0.015216053,-0.015130363,-0.003406168,0.028375553,0.016966572,-0.035793837,-0.0795201,-0.024103306,0.030334176,0.026441412,-0.048402473,0.020590026,0.0054382393,-0.012174067,-0.010539841,-0.035867285,-0.0055086277,-0.021606062,-0.015313985,0.046517298,0.019329162,-0.0036479356,0.0058422056,0.011745618,0.010674496,0.00055162783,0.00027504883,-0.047961783,0.019243471,0.011041738,-0.036283493,0.0062186285,-0.011066221,0.012529068,0.02274451,0.008807683,0.0072285435,0.012076136,-0.01281674,0.004468109,0.026074171,0.014799846,0.04776592,-0.0075345784,-0.00047970965,0.011555877,0.012645361,-0.0330028,0.017713297,0.00022321419,0.0038376772,-0.0421104,0.018153988,-0.026025204,0.01992899,-0.009756392,-0.007999752,0.013330879,0.0210552,0.008134407,0.002993021,-0.02387072,0.04458316,-0.007057164,0.007852854,0.02371158,-0.0024115548,-0.014555018,-0.0088750115,0.013098292,0.03447177,-0.016072951,0.007742682,0.010129754,-0.015509847,0.038119704,-0.004510954,0.014322432,0.026759688,-0.010888721,-0.027836932,-0.0030236244,-0.02913452,0.026392447,0.0004758842,0.012296481,0.021801924,-0.02291589,0.043310054,-0.0057197916,0.0075345784,-0.0187783,-0.012106739,0.0013289565,0.029207967,0.002151425,0.030823832,-0.009395271,0.004872075,-0.025315205,-0.024801066,-0.011916998,-0.023258649,0.025829343,0.029526243,-0.020039164,-0.027739,-0.029893486,0.004872075,-0.028375553,-0.014689674,-0.0028415336,-0.015191571,0.007932424,0.047814887,0.008464924,0.017358297,0.007100009,-0.008770959,0.015668985,0.03275797,0.06492836,0.0014712627,0.03246418,-0.00047894457,-0.0449504,0.025682446,-0.031289004,-0.0006828403,-0.014591742,0.0039845738,0.019390369,-0.020736922,0.004795566,-0.017517436,0.0006859006,-0.0172114,0.011959842,-0.0013526741,-0.0063410425,-0.005425998,-0.025070377,0.020381922,0.03212142,0.015840365,0.017701056,-0.005254619,0.038437977,0.015730193,0.03099521,0.014163294,0.00081252254,0.0009081585,-0.04698247,-0.021655027,0.008036476,-0.033223145,-0.02132451,0.027616587,-0.050434545,0.0047680233,-0.014273466,-0.0146407075,0.026196584,-0.037164874,-0.0062369904,-0.0389766,0.0032409092,0.019267956,0.0013105943,0.02142244,0.035597976,-0.010503117,0.0023840116,-0.005756516,-0.014799846,0.029256932,-0.02317296,-0.029869003,-0.01781123,0.009095356,-0.03168073,-0.040788326,-0.011531394,-0.008948459,0.011929239,0.010698979,0.032782454,-0.039735567,0.023454512,0.0036724184,-0.01334312,-0.014555018,-0.046296954,0.042428672,0.01606071,-0.0035224613,0.0060778526,-0.020504337,0.034790043,-0.023944167,-0.025878308,0.004685394,0.01606071,-0.019696403,0.019561749,0.012241394,0.00210705,-0.0033419007,0.024788825,0.005202593,0.008067079,0.012345446,-0.009132081,0.010190961,-0.0044313846,0.04029867,0.0069041466,-0.0064818184,-0.0070877676,-0.014946743,-0.029159002,-0.00605643,0.021875372,-0.03711591,0.00447729,-0.0072285435,-0.010992772,0.03148487,0.008893373,0.008813804,0.007259147,0.0032990559,-0.013649155,-0.020687956,-0.020381922,-0.0045599197,-0.021312268,0.008458803,-0.021397958,0.023736063,0.011360014,0.003917246,0.011139669,0.0040457807,-0.027739,-0.034373835,-0.035451077,-0.02553555,-0.018398816,0.017541919,-0.042159364,0.0041498328,0.02274451,-0.033296593,-0.04389764,-0.00834251,-0.021361234,0.030015899,-0.02238951,0.024127789,0.0071673365,-0.043848675,-0.022854684,-0.015265019,0.0130370855,0.0027543139,0.0003266922,-0.041914534,-0.011647687,0.024592962,-0.017064504,-0.0044313846,-0.01404088,-0.018019333,-0.0023472875,-0.114775315,-0.003914186,-0.0043854797,-0.015167088,0.01658709,-0.003960091,-0.030750383,0.02099399,0.009738029,0.0033143575,0.0038315565,-0.019476058,-0.01211898,0.0010611758,0.011231479,-0.024103306,0.050434545,0.028669346,-0.020749163,-0.014958984,-0.014261224,0.018925196,-0.023907444,0.015387433,-0.0015347649,0.028987622,-0.016342262,0.03028521,0.0210552,-0.0038284962,-0.015546571,-0.01746847,0.0062981974,-0.023332098,0.052540064,0.029207967,0.007865096,-0.001869873,-0.0047710836,-0.046664197,0.027690034,-0.0344228,-0.010496995,0.016709503,0.037238322,0.0042355224,-0.009560529,-0.017358297,0.012571912,-0.0028032793,0.012780016,0.0075713024,-0.025608998,0.010478633,-0.0043242727,0.00623393,-0.040959705,0.0058605676,-0.020969508,-0.021189854,0.002255477,0.024507271,0.035034873,-0.016281055,-0.00037106726,-0.014579501,-0.043016262,-0.01887623,0.02185089,-0.014787605,-0.0003234406,-0.013232947,0.019769853,0.04220833,0.008666907,0.02440934,0.049749028,-0.0644387,-0.024813307,-0.055526964,0.018802783,-0.02132451,0.020773647,-0.027714517,-0.024788825,0.017505195,-0.024727616,0.023258649,0.008960701,-0.019769853,0.021569338,-0.011837428,-0.006068671,0.013171741,-0.009823719,0.024299169,-0.05400903,0.033761766,-0.021667268,0.0055698347,0.027175896,-0.028546931,-0.017419504,-0.005875869,-0.04328557,0.018863989,0.0057381536,0.030823832,-0.043065228,0.029942451,0.01597502,-0.023527961,-0.024898997,0.05655524,-0.011623204,-0.003213366,0.06267594,0.0023411666,-0.041424878,0.000086933025,0.0026380206,0.004847592,-0.009689064,0.0026043567,-0.02229158,-0.011047859,0.0076937163,0.0046486696,-0.013918466,0.034790043,-0.027494172,-0.0012623938,-0.025927274,-0.026759688,0.007950786,0.0032470298,0.0029884304,-0.007644751,0.012939154,0.005070998,-0.011170273,-0.008385356,0.03310073,-0.007277509,0.024531756,-0.006775612,-0.033125214,0.043824192,-0.010050185,0.01633002,-0.03177866,0.027494172,-0.030113831,0.074574575,-0.011959842,0.02764107,-0.03241521,-0.015216053,-0.019549508,0.025315205,0.0110172555,0.026465895,-0.018153988,-0.04803523,-0.041302465,-0.01527726,-0.055869725,0.030407624,-0.01246174,0.017933642,0.0010642363,-0.017664332,0.032341763,0.013881741,-0.003142978,0.0025615117,0.00031904134,0.022303822,0.04213488,0.014799846,-0.0023457573,0.0028308225,0.043163158,-0.0007559061,0.039294876,0.051511787,-0.014077604,0.0069286292,-0.021961061,0.052784894,-0.01000122,0.028106242,0.027567621,0.0021131707,-0.003589789,0.015460881,-0.008703631,0.016464675,-0.010154237,-0.007877338,0.054106966,0.024152271,0.008391476,0.024213478,0.006212508,0.020565543,-0.04308971,0.02879176,-0.014053121,0.011965963,-0.012057774,0.007620268,0.02388296,0.028032793,0.0149712255,-0.029305898,-0.03501039,-0.003090952,-0.00518117,-0.0029272235,-0.004091686,-0.006132939,-0.017443987,-0.008568976,-0.0054106964,-0.022756752,0.02913452,-0.0003098603,-0.028497966,-0.0032470298,-0.04326109,-0.011604842,-0.0013366073,-0.004232462,0.017297091,-0.0013304866,-0.02098175,0.00798751,0.013514499,0.0345697,0.01701554,-0.01799485,0.016170882,0.004670092,-0.006898026,0.009756392,0.0068245777,0.027420724,0.029012104,0.019953473,0.018215194,-0.020418646,0.04047005,-0.0061941454,-0.006873543,0.01763985,-0.016207606,0.017872436,0.0042691864,0.0137348445,-0.0008714343,0.03239073,0.013991914,-0.010943807,0.023050547,0.0073203538,-0.0051383255,-0.0017382781,0.0161464,-0.006653198,0.013906225,0.012406654,0.00022971742,-0.008483286,-0.04668868,0.003819315,-0.038217634,0.031289004,-0.007767165,-0.021006234,-0.012633119,-0.011066221,-0.011317169,0.017958125,-0.0066654393,-0.023062788,-0.012302602,-0.009156563,0.022879167,-0.025853826,0.004951644,0.0048843166,-0.018288644,-0.008746477,-0.0359897,0.0032531505,-0.027151413,-0.052344203,0.013710362,-0.0056249206,-0.024898997,-0.0009418223,0.015313985,-0.014799846,-0.024788825,0.003274573,-0.00728363,-0.021875372,-0.020137094,-0.013269672,0.035695907,-0.004774144,-0.00042079794,0.0073509575,0.01027053,0.020638991,-0.019427093,-0.024091065,0.034692112,-0.0077365614,0.012988119,-0.009346304,0.0150936395,0.033419006,0.007155095,-0.013135016,0.020675715,-0.020247266,-0.020479852,0.008030355,0.004495652,-0.0054015154,-0.007357078,-0.0035071597,-0.020088129,0.023846237,0.005817723,0.0082139755,0.006567508,-0.00077388564,-0.032194868,-0.013000361,-0.02678417,0.0005818488,-0.0045691007,-0.0061145765,0.010986651,0.008366994,0.0147631215,-0.0031858229,0.050336614,0.02957521,0.026735205,-0.020638991,0.014469328,-0.009352425,-0.008550614,0.0029409952,0.025951756,-0.017603125,0.0062278095,0.02202227,-0.027885897,-0.011274325,0.017272608,0.02035744,-0.025486583,0.0091014765,-0.043040745,-0.010044064,0.012657602,0.01150691,-0.008673028,-0.025878308,-0.03552453,-0.008801563,0.004933282,-0.008850528,0.005080179,-0.013086051,-0.02098175,0.002123882,0.01009915,-0.04764351,-0.015766917,-0.023295375,0.005101601,0.033027284,0.009707426,0.023062788,-0.00081481785,-0.033296593,-0.018717092,0.015840365,0.005119963,0.017860195,-0.011023376,-0.0020948087,-0.013893982,-0.01325743,-0.005318886,-0.030652452,0.0146407075,-0.01202105,-0.009425874,-0.031558316,0.042722467,0.05317662,0.02194882,0.001966274,-0.0048200493,0.008568976,0.0021988605,0.020920543,0.016476918,-0.014077604,0.0127065675,0.0069714743,0.018215194,0.01456726,0.003029745,0.04389764,-0.010570444,-0.011653808,0.018007092,0.052442133,-0.011109065,-0.0069225086,0.0093279425,0.007620268,0.023527961,-0.010301134,0.015815882,0.007767165,-0.01193536,-0.02835107,-0.010827513,0.011953722,-0.024911238,0.037091427,0.008140528,0.011084583,0.009168805,-0.0013802173,-0.023111753,-0.00904027,-0.020492094,-0.048304543,0.016746229,-0.027469689,0.012161826,-0.0044528074,-0.0078100096,0.06483042,-0.0045691007,-0.04073936,-0.0006866657,0.021801924,0.0149712255,-0.004468109,0.017395021,-0.004660911,0.0008943869,0.013171741,0.014542777,0.010552082,0.014114328,0.015693467,-0.008611821,-0.042600054,0.027004516,0.016770711,0.0008890313,-0.026221067,0.0044038417,-0.014285708,0.019121058,-0.05307869,0.020590026,-0.008617942,-0.0018239678,0.022401752,0.0039539705,-0.031313486,0.022536408,0.009511564,-0.020908302,-0.023050547,-0.01053372,0.035842802,-0.056506276,0.016195364,-0.00088520587,-0.03785039,0.013208465,-0.002657913,-0.008183372,-0.049283855,0.00058070116,0.015167088,-0.008636304,0.018986402,-0.0045415573,-0.007559061,0.011861911,0.01395519,0.0020152396,0.0065430254,0.013808293,0.008103803,-0.013649155,-0.0070449226,0.030089349,0.0031858229,-0.013232947,-0.010105271,-0.0032011247,-0.030921763,-0.011794584,0.034006596,-0.002527848,-0.011549756,0.046639714,-0.011396739,0.002423796,-0.026465895,0.0137348445,0.011451825,-0.016293297,-0.03493694,-0.02256089,-0.02658831,0.010368461,0.034177974,-0.0052607395,-0.015693467,-0.035867285,-0.013306396,-0.018362092,0.012473981,0.010570444,0.011066221,0.016550366,0.041204534,0.008611821,-0.032782454,-0.013832776,-0.01492226,-0.0058850506,0.0054290583,0.009891047,0.026343482,-0.010417427,-0.012853464,-0.0012126631,0.011751738,0.011721135,0.00040434857,-0.012767775,0.018692609,-0.026441412,0.037532117,-0.01009303,0.013490017,0.038854185,0.00948096,-0.0433835,0.071685605,0.00054282934,-0.01202105,-0.021214336,-0.000023143886,0.020847095,-0.05307869,0.013832776,0.027004516,0.008036476,-0.007155095,0.035500046,0.013747086,-0.019855542,0.021801924,-0.024274684,-0.02800831,0.06762146,-0.009089235,0.012406654,0.021189854,0.004853713,-0.02414003,0.027690034,-0.008477165,0.021202095,0.010741823,-0.015656743,0.039001085,0.0389766,0.044387296,0.015754675,0.017456228,-0.03905005,-0.005272981,0.023099512,-0.00028920296,-0.011151911,-0.010172599,0.008042596,-0.006469577,-0.016011745,-0.030652452,-0.0010190961,0.0060778526,-0.014151053,0.0043701776,0.000089563015,-0.0103378575,-0.011029497,-0.00022914361,-0.03537763,0.013796052,-0.009370788,-0.0009158093,-0.0029562968,0.025045894,-0.019549508,-0.004110048,0.036577288,-0.005958499,0.004960825,0.005119963,0.010552082,0.012449498,0.020847095,-0.006068671,-0.0039539705,0.017762264,-0.01588933,0.024286928,-0.025315205,0.0085444935,0.020075887,0.0172114,-0.0033235387,-0.030334176,-0.0105826855,-0.015228295,0.007399923,0.01633002,0.017492954,0.019378128,0.03266004,-0.06478146,-0.015032433,-0.014958984,-0.009113718,0.0052393167,-0.0074427677,-0.011427342,-0.040249705,0.023919685,0.0078957,0.008960701,0.0010504647,0.009199408,-0.0026303697,0.022487441,-0.02658831,0.01018484,0.03415349,0.02274451,0.019806577,0.028032793,0.023062788,0.013086051,0.0026716844,0.015044674,-0.039392807,0.01781123,-0.002096339,0.0051689288,-0.022634339,-0.0004678508,-0.05126696,-0.0059738006,0.012486222,0.020137094,-0.01834985,0.0048292303,0.004997549,-0.03616108,-0.0013993444,-0.027053483,-0.03150935,-0.026147619,-0.019243471,0.0114885485,-0.015203812,-0.01334312,0.0088750115,0.0022172227,0.009150443,0.008979063,0.022499682,0.0007589665,-0.008434321,0.038119704,0.02290365,0.006151301,-0.0011415101,-0.027371759,-0.014089845,0.016782952,-0.003142978,0.014334673,0.0049455236,-0.009272857,0.03537763,-0.02079813,-0.0030863616,-0.014506052,0.0076508718,-0.0012937624,-0.028130725,-0.008036476,-0.009462598,-0.02563348,0.001193536,0.041424878,-0.044730056,0.01825192,-0.0031307368,0.018802783,-0.0010428138,0.0073938025,0.013122775,-0.0059615592,-0.0013802173,0.038413495,0.010747944]},{"id":"class-TextChannel","type":"class","source":"main","text":"Class: TextChannel\nProperties: lastMessageId: string | null, messages: MessageManager, nsfw: boolean, rateLimitPerUser: number, topic: string | null\nMethods: createMessageCollector(options: MessageCollectorOptions) -> MessageCollector — Create a message collector for this channel.\nCollects messages matching the filter until time expires or max is reached.; fetchMessage(messageId: string) -> Promise — Fetch a message by ID from this channel.; fetchPinnedMessages() -> Promise — Fetch pinned messages in this channel.; send(options: MessageSendOptions) -> Promise — Send a message to this channel.","meta":{"url":"/docs/classes/TextChannel"},"embedding":[-0.009464992,-0.005217953,-0.0025394228,0.0005589143,0.0034578166,0.031932283,0.009976,-0.040426362,-0.009334401,0.019770307,0.029706562,0.008198829,-0.020417584,0.04469611,0.09134541,-0.013876689,-0.006188867,-0.0031909572,0.03979044,0.016329525,-0.0102542145,0.031523477,0.038586736,0.0036764143,-0.0454683,-0.010787933,0.00045529337,0.057187404,-0.032704473,-0.016704263,0.03329497,-0.014455831,-0.014739724,0.021768915,0.008414588,0.043129023,0.01838491,0.006830465,-0.042833775,0.028911661,-0.010521074,-0.015205308,0.0076991776,-0.025323255,-0.0061548,-0.020122334,-0.0028474466,0.0050902013,0.017033579,0.055870138,-0.055643026,0.018839138,0.015012261,0.042379543,0.0032108296,-0.05696029,-0.03206855,0.030774,-0.007988749,-0.0066544516,0.023460917,0.006830465,-0.019917931,-0.03804166,-0.0007835446,0.024573777,-0.006262679,0.0770372,-0.024119548,0.047285214,0.04226599,-0.016761042,-0.024732757,-0.029570293,-0.020633342,0.019361502,-0.0023364392,0.01058353,0.010225825,-0.015000905,-0.033045143,0.0041732267,-0.04973805,0.022302633,-0.07026919,-0.029865542,-0.025868328,-0.025822906,0.027389996,-0.016749686,-0.0062513235,-0.00032878356,-0.05568845,0.02350634,0.027526263,-0.03785997,-0.0103848055,-0.017839836,-0.029229622,0.030615019,0.06713501,-0.038745716,-0.050283127,0.017442385,-0.020145046,0.0029780373,-0.036224745,-0.017306115,-0.06722586,-0.023142956,-0.040608052,-0.034793925,0.0010035617,0.021678068,-0.022404835,-0.037201338,0.031523477,0.0032562525,0.031137383,0.048193675,-0.039154522,0.018055594,0.03658813,0.03565696,0.013297548,-0.053235613,0.019634038,0.00024130904,-0.0042413613,0.047875714,0.053008497,0.019213878,0.0044088583,0.001859499,-0.014149226,0.018600669,-0.00018665964,-0.009277623,-0.012729761,-0.002051127,0.0020170596,-0.015795806,0.01092988,-0.0039234012,0.03801895,-0.019134387,-0.042720217,0.01514853,0.0040312805,-0.027389996,-0.027003901,0.033885468,-0.021984672,0.033567507,-0.011719102,0.010231503,0.021076215,0.04608151,-0.015568691,-0.049601782,0.024732757,-0.013138567,-0.034634944,-0.010112268,0.007279016,-0.008590601,0.023869723,-0.045082208,-0.017646788,0.020315383,0.042220566,-0.007301728,-0.0369288,-0.008715515,-0.02180298,-0.01689731,-0.015375644,-0.051373273,-0.024369374,0.005640954,0.022756862,0.025527658,-0.008318065,-0.06926989,-0.009277623,0.013592796,-0.008283997,-0.014535321,0.042379543,-0.048829593,-0.04955636,0.027730666,-0.00096523616,0.036542706,0.0035884073,-0.011855371,0.028139472,0.015352933,-0.006603351,-0.050283127,-0.0045138984,0.032908875,0.029297756,-0.014796502,0.016386304,0.007807057,0.027162882,0.027231015,-0.025436811,-0.06899735,0.047285214,0.020099623,0.019088965,-0.029411314,-0.062093075,-0.0028403492,-0.057687055,0.015659537,-0.03947248,-0.0068134316,-0.025981886,0.039994843,0.051691234,-0.031023825,0.017237982,0.017669499,0.0047268183,-0.026890343,0.007767312,0.017181203,0.028162183,-0.018680159,-0.026299845,-0.066953324,0.016545283,-0.015171241,-0.039858576,0.072404064,0.008119339,-0.008454333,-0.03742845,0.005550108,0.008374843,0.05368984,-0.008096628,-0.0136495745,-0.0056523094,-0.028707258,0.026640518,0.04733064,0.08521332,0.002809121,-0.0023406977,-0.015954785,0.04026738,-0.016181901,-0.022961264,0.012479936,0.020621987,-0.039972134,0.03817793,0.0011802851,-0.040176537,-0.03976773,-0.0068985997,-0.020497074,0.06658994,-0.01405838,0.0121392645,0.035134595,0.053417303,-0.009845409,0.057732478,-0.00036764142,-0.02570935,0.020065555,-0.00994761,-0.020417584,0.020247247,0.010549463,-0.014989549,-0.0016962606,0.013229413,-0.012423157,-0.0103109935,0.014501254,0.052508846,0.005019228,0.025913753,0.016386304,0.004817664,-0.019213878,-0.023256514,-0.05591556,0.037042357,0.038881984,0.073039986,0.020883167,0.046467602,0.0134451715,-0.001865177,-0.03125094,0.028048627,-0.048557058,0.025641214,0.018725581,0.014296851,-0.049692627,0.06500014,-0.07431183,0.02082639,0.009487703,-0.09175421,-0.00994761,-0.01657935,0.0036366691,0.0062286123,-0.00096736534,0.02188247,0.009464992,0.0028062821,-0.01705629,0.009271945,0.026799498,-0.054598298,-0.02130333,-0.007897903,-0.0065465723,0.038268775,0.039881285,0.012729761,-0.05237258,-0.008494078,0.033522084,0.028003205,-0.018532533,0.0010205953,-0.017465096,-0.017794412,0.015137174,0.043015465,0.00907322,-0.009027797,0.05146412,0.006268357,0.015716316,0.003366971,0.040199246,0.01437634,0.014853281,-0.0081647625,0.03790539,-0.007755956,-0.061275464,0.0355434,-0.0007409607,0.01286603,-0.012695694,-0.019350145,0.0013981729,-0.0026884666,0.007869514,-0.012718406,0.009351435,0.0012647433,-0.027866935,-0.08044392,-0.006966734,-0.006444371,-0.02555037,0.025822906,-0.03095569,0.022609238,-0.012332311,0.041084994,0.004238522,0.011066149,-0.0005266215,0.016034275,0.05823213,0.018895917,0.001122087,0.012582137,-0.0026260102,0.01397889,0.039926708,0.01989522,0.01806695,-0.024460219,0.046444893,0.01207113,0.0070235124,-0.041879892,0.024437508,0.030819422,0.03824606,-0.015841229,-0.0016863244,0.026390692,0.028616413,0.017680855,0.026231712,0.0032590914,0.059958197,0.0022427547,0.023551762,-0.013785844,0.025936464,0.027299149,-0.027526263,0.048239097,0.03899554,0.02146231,0.05259969,-0.0023463755,-0.026640518,-0.016215967,0.008681447,0.023120245,-0.0120257065,0.0034918836,-0.055052526,0.01790797,-0.018316776,0.0024428992,-0.018441688,0.06895193,-0.03138721,-0.03458952,-0.015602758,-0.05178208,-0.017385606,0.037973527,0.031228228,0.042811062,-0.040471785,0.015103106,-0.0012108036,-0.042038873,0.046967257,-0.004479831,0.048375364,-0.023551762,0.0561881,-0.015818518,0.035066463,0.0053485436,0.015409711,-0.011049115,-0.019645395,-0.07581078,-0.030069945,-0.013172635,0.038223352,-0.052327156,-0.025345966,0.005618242,0.058640935,-0.03093298,-0.040176537,-0.00864738,-0.00761401,0.01705629,0.012968232,-0.011497666,0.0073755397,-0.051373273,0.015568691,0.020485718,0.03895012,0.023937857,0.012616204,0.032295667,0.058413822,0.016545283,-0.05259969,-0.006188867,-0.00400573,0.014421764,-0.009538804,0.018612023,0.021530444,-0.007284694,-0.014137871,-0.027072035,0.05364442,0.014603456,-0.0032562525,0.017499164,-0.006359203,-0.043015465,0.027117457,-0.013797199,-0.009175422,0.010651665,-0.013388393,-0.020304026,-0.05132785,0.016931377,-0.055597603,0.045263898,-0.023177024,0.024755469,0.0062513235,0.020088268,-0.0042697503,-0.01602292,0.009890832,-0.029252334,0.049510937,0.022064162,0.03597492,-0.041084994,-0.030842135,0.041607358,-0.024096837,-0.041539222,-0.004124965,-0.037201338,0.027299149,0.055597603,-0.007330117,0.024164971,0.015670894,-0.026209,0.020519786,-0.056097254,-0.007012157,0.01761272,0.040471785,0.0074209627,-0.029502159,0.008925595,0.00013192152,0.01183266,-0.013604152,-0.031637035,-0.014682945,-0.017487807,-0.021655357,-0.0088177165,0.01886185,-0.0139675345,0.018214574,-0.010475651,0.018010171,-0.027094746,0.06622656,0.00011994479,0.018225929,-0.014853281,-0.032454647,0.03820064,-0.042038873,0.041312106,0.0223367,0.0041079316,-0.0014975355,0.01912303,-0.0023591507,-0.0056863767,-0.002241335,0.015659537,0.0069497004,-0.021587223,0.00085167895,-0.0059106518,0.016204612,-0.00005691167,-0.00631378,0.017635433,-0.018884562,-0.0035543402,0.0007665111,0.030592307,-0.003318709,-0.031069249,-0.018101016,-0.009680751,0.016988156,0.0013073272,-0.01949777,0.043992057,0.0022995332,-0.013570085,0.03631559,0.0024315433,-0.014682945,-0.019384213,0.030910268,0.005019228,-0.027185593,0.020326737,0.001621029,-0.05464372,0.0016338042,0.0026487214,0.0081647625,-0.007869514,-0.018986763,0.054416608,0.0012789379,-0.055597603,0.020258604,0.019270657,0.010072523,0.016942734,-0.027276438,-0.034453254,0.013536017,-0.0047154627,0.00036622194,-0.015125819,-0.048193675,0.028820816,0.003355615,-0.00025816518,-0.010356416,0.049420092,0.02714017,-0.030637732,-0.0014734046,-0.023642607,0.022143653,0.021723492,0.017726278,-0.02809405,-0.026209,0.021291973,-0.024800891,0.043923922,0.01663613,0.017998815,0.029456737,0.006058276,-0.009453637,0.008550856,0.031773303,-0.013785844,0.018237285,0.047557753,0.024846314,-0.0012540972,0.010163369,-0.0032136687,0.011122927,-0.003523112,0.0112989405,-0.048239097,-0.0092094885,-0.057914168,0.009374146,-0.01610241,-0.027253726,0.022745507,-0.0355434,-0.008301031,0.038654868,-0.019531837,0.023233801,-0.010271248,0.014240072,-0.010117946,0.037678275,-0.011787237,-0.019588616,-0.031069249,0.0005418807,0.009697785,0.0041476763,0.045672704,0.013592796,-0.006671485,-0.023483628,-0.0012406124,-0.01491006,0.003196635,-0.028661836,0.04013111,0.009453637,-0.025845617,0.035884075,-0.030864846,-0.013388393,0.023756165,-0.018725581,0.012445869,-0.009527449,0.0071370695,0.020315383,0.0000371057,-0.02019047,0.0022739829,-0.017362894,0.011469277,-0.001082342,0.022404835,0.018259997,-0.004360596,-0.009748885,-0.031682458,-0.024869025,-0.013036366,0.014739724,0.008068238,-0.0066147065,-0.03549798,-0.016829176,0.031682458,0.04651303,-0.07231322,0.009345757,-0.010129302,-0.0015330222,-0.0017203914,-0.003029138,0.010504041,-0.022268565,0.03329497,-0.021473665,0.048329942,0.00044251818,-0.03377191,0.00030979823,0.006802076,0.0004918446,-0.021485021,0.045263898,-0.032931585,0.01886185,0.010299638,-0.008005782,0.032931585,-0.031773303,-0.015988853,0.016045632,0.014069736,0.0050078724,0.022166364,-0.012434512,0.00034936582,0.013944823,0.035111886,-0.05259969,0.010146336,-0.0401084,0.0020326737,-0.0066147065,0.028048627,-0.0060980213,-0.010129302,0.0065238606,-0.043469694,0.05337188,0.00005256456,0.0011561542,0.01132733,-0.027571687,-0.017374251,-0.013592796,-0.02888895,0.04955636,-0.033522084,-0.003278964,-0.010725477,-0.010867423,-0.023392782,0.015057684,0.009022119,-0.012105197,0.006847499,0.0035827295,0.014546677,-0.006989445,0.0020724188,0.008692803,0.018646091,-0.0063819145,-0.01294552,0.009022119,0.012207398,0.010606242,-0.021825694,-0.0462632,0.008090951,-0.009016441,-0.012684339,-0.030887557,-0.0042044553,-0.009782952,-0.029479448,-0.010083878,0.007489097,-0.0043038176,-0.009771597,-0.00952177,0.0023364392,-0.0577779,0.01785119,0.03000181,0.007659433,0.0042413613,-0.04499136,0.006126411,0.0069269887,-0.026890343,-0.028139472,-0.03327226,0.0064046257,0.00583684,-0.03138721,0.00036036666,0.016204612,-0.019213878,0.0005599789,0.042084295,-0.0020128014,-0.01626139,0.032409225,-0.048239097,0.061275464,0.022268565,-0.040857878,-0.013252124,0.031591613,0.04451442,-0.025209697,-0.008113662,0.016409015,0.012831963,0.036202032,0.017022224,0.033635642,0.009584228,0.0034237495,-0.015807161,-0.039745018,0.019634038,0.018055594,-0.05269054,0.007040546,0.0033499373,-0.021473665,0.0152734425,0.039154522,-0.03343124,-0.0072733383,-0.008363487,-0.040199246,-0.013763132,-0.009976,0.03488477,0.011719102,-0.053916957,0.019611327,-0.005354222,-0.016034275,0.02122384,0.043515116,0.01910032,-0.00021558124,0.017419674,-0.040153824,-0.043288004,-0.026935767,0.009351435,0.021598577,-0.0040142466,0.023029398,0.014285495,0.0051611746,0.01029396,0.009243555,0.023188379,-0.016965445,0.016147833,-0.012286888,-0.030546885,-0.0008169021,0.010702766,-0.0020908718,-0.005368416,-0.000028699806,-0.008034172,0.009243555,0.026913054,-0.019622684,0.050964467,-0.024323951,-0.011809948,-0.021837048,0.029434025,-0.006467082,0.0033357425,-0.0067055523,-0.004051153,-0.045877106,-0.0004897154,0.03343124,-0.027730666,-0.03804166,-0.019350145,0.007937648,0.026890343,0.027526263,0.044877805,-0.00053868693,-0.0017814285,0.019645395,0.012525358,0.021257907,0.014137871,-0.020213181,0.029456737,0.026890343,-0.02589104,-0.0134451715,0.008301031,0.017839836,-0.009022119,-0.01586394,-0.028843528,0.04453713,-0.027821513,-0.0040823813,-0.005005033,-0.020463007,-0.045831684,-0.0027055002,-0.0077446005,0.0137063535,0.001474824,0.0018850494,0.015489201,0.0058936183,0.004811986,0.019940643,-0.008420266,0.010992336,0.028957084,0.034135293,-0.01711307,-0.017010868,-0.013308903,0.01610241,-0.01838491,-0.035429843,0.04465069,-0.02811676,-0.0032221854,0.012252822,-0.027526263,0.03461223,-0.016125122,0.016613418,-0.011202417,0.012650272,0.020497074,0.062002227,0.037337605,-0.0177717,0.0017033579,-0.021098927,-0.0013825588,-0.0103109935,0.0001944667,0.04199345,-0.004366274,-0.013933468,0.032091264,0.013558729,0.006506827,0.02952487,0.051872928,0.04592253,-0.017044935,0.0022214625,-0.0021320363,0.014274139,-0.022359412,-0.00037438388,0.030615019,0.018362198,-0.014841925,0.04029009,-0.024437508,0.0040227636,-0.004042636,0.016726974,0.032704473,0.035157308,0.01689731,-0.020497074,-0.02825303,0.034839347,0.018475756,0.00891424,0.046217777,0.021712136,0.0029468092,0.003682092,-0.0046899123,0.013490595,-0.028979795,0.01665884,-0.03835962,0.05364442,-0.003965985,-0.016761042,-0.030637732,-0.021700779,0.026163578,0.014047025,-0.013751776,0.012718406,0.027231015,0.0026458825,-0.027571687,-0.009368468,-0.021507733,0.03265905,-0.043356135,0.00591633,0.023869723,-0.009714818,-0.03404445,-0.0057147657,0.04024467,-0.0018225929,0.028434722,-0.008777971,0.058186706,-0.02069012,-0.032250244,0.030274348,0.04165278,-0.0046757176,-0.0010362094,0.020815033,-0.026095442,-0.024414796,-0.00899373,0.010464296,0.008000105,0.009623972,0.02249568,-0.005831162,-0.0053229933,0.029729273,-0.018316776,0.026776787,0.029979099,-0.0002673917,-0.036065765,0.006120733,-0.00081903127,0.018816426,0.015398355,0.014558032,-0.013115856,-0.037201338,0.0070575797,-0.037950814,-0.015375644,0.0004066767,0.000729605,0.005337188,-0.0019460864,0.020304026,-0.0017842674,0.026549673,-0.02058792,-0.034407828,-0.028593702,-0.026595095,-0.023756165,0.043197155,-0.03404445,-0.031023825,-0.027548974,0.0026998222,0.016590705,0.031773303,0.0058652293,-0.014342274,-0.002244174,-0.032704473,0.020292671,0.011225129,-0.045354743,0.010276926,0.025164274,-0.034294274,-0.016454438,0.0011597029,0.002021318,-0.0012810671,-0.03774641,-0.007943326,0.0043435628,0.019327434,-0.00064976007,-0.001920536,-0.018600669,0.0006039823,0.011628257,-0.03917723,-0.032409225,0.004579194,0.0038126828,-0.028502855,-0.0015131496,0.022268565,-0.022756862,-0.04574084,-0.0007104422,0.008431622,-0.0000017576969,-0.029638428,0.027208304,-0.01578445,-0.028525567,0.0073471502,0.04260666,0.002711178,0.029456737,0.018691514,0.0102542145,-0.037928104,-0.0020766773,0.0010546624,-0.027912358,-0.003517434,-0.069996655,-0.008902884,0.0121392645,0.019236589,0.005944719,-0.012286888,-0.022109585,0.027753377,0.018475756,-0.014183293,-0.0013144246,0.007210882,-0.01840762,-0.012514003,0.04596795,0.023869723,-0.033817332,0.016874598,0.0011043437,-0.0067452975,-0.012729761,-0.005314477,0.011054792,-0.0054251947,-0.0035855684,-0.0017530392,0.01975895,0.01975895,0.032636337,-0.0035429844,-0.015205308,-0.009181099,0.012570782,-0.05855009,0.03681524,0.022768218,0.003594085,-0.0028786748,-0.063228644,-0.020780966,-0.007369862,-0.0014705657,0.0043918244,0.020213181,0.009799986,0.009970321,-0.01875965,-0.0043946635,-0.048239097,0.005337188,-0.012854675,-0.009743207,0.008017138,-0.03031977,0.016295457,-0.025845617,-0.0020908718,0.0034492998,-0.021291973,0.011605545,-0.019088965,-0.018112373,-0.01894134,-0.015216664,0.016318168,-0.0065636057,0.0100271,-0.030047234,-0.009765918,0.0084884,-0.011412498,0.05805044,-0.015829872,-0.00796036,-0.012968232,0.021496376,-0.0098624425,0.011866727,0.011787237,0.0081647625,0.010674376,-0.0037104813,0.028275741,0.036088478,-0.043356135,0.010634631,0.01018608,-0.017374251,-0.015205308,0.0075174863,-0.013433816,-0.036610838,-0.009300334,0.004008569,0.021019436,0.01100937,0.0031682458,0.009493382,-0.000065384105,0.04210701,-0.005709088,-0.0027168558,-0.0028446077,0.020883167,-0.008681447,0.015114463,0.051963773,0.0054024835,0.0027892485,0.029320467,-0.030569596,0.011957573,0.011111571,-0.026799498,0.0118213035,0.029002508,0.032113973,-0.028048627,-0.0200542,0.011230807,0.01719256,0.040335514,-0.021814337,-0.037496585,-0.007193848,-0.0120257065,0.0021135833,0.0037814546,-0.008528145,-0.035566114,-0.0066998745,-0.001865177,-0.033749197,-0.032590915,-0.0007778668,0.032568205,0.03867758,-0.006643096,-0.010521074,-0.009374146,-0.004017086,-0.013501951,0.033135988,0.02122384,-0.0152734425,0.0105153965,-0.012956876,0.0019801536,-0.008641702,-0.0033840043,-0.017442385,-0.029865542,-0.0077900235,0.016988156,0.004275428,0.021008082,0.006688519,-0.014308207,0.010759545,0.0018453044,0.010935558,-0.05446203,0.00070299,0.01657935,-0.06772551,-0.0034152325,0.0062513235,-0.00824993,0.015829872,0.017306115,-0.005763028,-0.022824995,0.015852584,-0.0062059006,0.016465792,-0.037632853,-0.034316983,-0.029252334,0.006921311,0.012877386,-0.003477689,0.008953985,-0.04231141,0.018850494,-0.012968232,0.021428242,-0.028684547,-0.011923505,0.01806695,0.009879475,0.0035770517,-0.021644002,-0.045241185,-0.035566114,0.003108628,-0.01912303,0.006716908,0.011452243,-0.03947248,-0.03250007,-0.001740264,-0.017442385,-0.008539501,-0.026277134,-0.018089661,0.00070476433,0.012650272,-0.010986659,-0.007284694,-0.036202032,0.028003205,-0.0005653019,0.0030774,0.0060242093,-0.032091264,-0.011497666,-0.007097325,0.009930576,-0.033817332,0.0086303465,-0.04122126,0.0103848055,-0.020201825,-0.00970914,0.0026586577,0.025209697,0.02287042,-0.005950397,-0.011139961,0.0069951233,0.0067509753,0.0039546294,0.0007044095,0.01397889,-0.012230109,-0.025845617,0.012502647,-0.057687055,-0.0153302215,0.03268176,0.00037083522,-0.042197853,-0.006643096,-0.02527783,-0.0035827295,-0.0019035025,0.0041874214,0.036224745,0.016840532,-0.02857099,-0.043833077,0.012218754,-0.0075458754,0.006915633,-0.008193152,0.0015954786,-0.036361013,0.00832942,0.02188247,0.050146855,-0.01342246,-0.003071722,0.001416626,-0.02557308,0.009953288,0.022484325,0.0067282636,-0.012411801,-0.0007672208,0.019952,-0.000790642,-0.0063819145,0.021961961,-0.013513306,0.004369113,0.008976696,0.032727182,-0.010282604,-0.0060185315,0.00796036,0.018339487,-0.010140657,0.010532429,0.008102306,-0.029729273,-0.014875992,-0.018316776,-0.00530596,0.004406019,-0.031773303,-0.022109585,-0.055007104,0.015034973,-0.023960568,0.009385502,0.036065765,-0.013717709,0.010430228,0.0032676084,0.036088478,0.0010127883,-0.033363104,0.02201874,-0.0065863174,0.018180506,0.010333705,-0.0022824996,-0.010941235,0.025595792,0.0024358018,-0.009215166,-0.006353525,0.014399053,0.012741117,0.023937857,-0.03663355,0.002854544,-0.008959662,-0.005672182,-0.031432632,0.0053570606,-0.0141719375,-0.019690817,0.01262756,-0.026935767,-0.026890343,0.012718406,0.016681552,0.0015017939,0.034067158,-0.04099415,0.01564818,0.008005782,-0.021019436,0.019929288,0.0002185976,0.02527783,0.020621987,0.022279922,-0.007727567,-0.033885468,-0.0077957013,0.021337397,0.0060469205,-0.0051895636,-0.024437508,-0.032250244,-0.017862547,0.03016079,-0.004102254,0.00038219092,-0.01626139,-0.0115033435,0.00482902,-0.017442385,-0.048375364,-0.012854675,-0.00047019776,0.0015713477,0.01743103,0.02384701,0.0008509692,0.018101016,-0.023279225,0.016942734,-0.0075912983,0.011809948,0.011015048,0.04451442,0.0030121047,0.03913181,0.0047438517,0.030569596,0.017317472,0.0073755397,-0.01785119,0.023324648,0.049147554,0.01167368,0.010083878,0.051872928,0.015591403,0.02555037,0.03345395,-0.035679672,0.0040284414,-0.015898008,0.020724189,-0.017442385,-0.0054081613,-0.043197155,0.016761042,-0.014364985,-0.018180506,0.02350634,0.0139675345,0.0038240384,-0.010152013,0.033204123,-0.014478542,-0.007120036,-0.013240769,0.013956179]},{"id":"class-User","type":"class","source":"main","text":"Class: User\nDescription: Represents a user (or bot) on Fluxer.\nProperties: avatar: string | null, avatarColor: number | null, banner: string | null, bot: boolean, client: Client, discriminator: string, flags: number | null, globalName: string | null, id: string, system: boolean, username: string\nMethods: avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this user's avatar.\nAuto-detects animated avatars (hash starting with `a_`) and uses gif extension.; bannerURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this user's banner.\nReturns null if the user has no banner (only available when fetched from profile/member context).; createDM() -> Promise — Create or get a DM channel with this user.\nReturns the DM channel; use {@link DMChannel.send} to send messages.; displayAvatarURL(options: { size?: number; extension?: string; }) -> string — Get the avatar URL, or the default avatar if none set (Fluxer: fluxerstatic.com).; send(options: MessageSendOptions) -> Promise — Send a DM to this user.\nConvenience method that creates the DM channel and sends the message.; toString() -> string — Returns a mention string (e.g. `<@123456>`).","meta":{"url":"/docs/classes/User"},"embedding":[-0.0027152696,-0.005020308,-0.029123524,0.02285818,0.05650285,-0.0006433166,-0.012553639,0.02207788,0.023431929,0.048240855,-0.026231827,-0.028802224,-0.001331816,0.013230663,0.006035845,0.020046808,-0.057558548,0.015502711,0.02150413,0.029307123,0.005746101,0.009105405,0.05737495,0.031831622,-0.007688243,0.06306654,-0.012645438,0.048378557,-0.024969578,-0.05742085,0.053014454,-0.009610304,0.008135768,-0.010229954,0.019541908,0.010574203,0.030133324,0.04365086,-0.030362822,0.012829038,-0.008669355,-0.058109347,0.030385774,0.0088816425,-0.008434118,0.031074272,-0.021550031,0.011010253,0.0065292693,0.037844516,-0.053840652,0.018428834,0.023982728,0.051958755,-0.014997812,0.013586388,-0.018440308,-0.029123524,-0.047965456,0.019266509,0.020471381,-0.018107533,-0.0024456072,0.006414519,-0.007137444,0.03437907,-0.030293973,0.040598515,-0.013907688,0.03265782,0.07077774,-0.025015477,0.01607646,-0.02386798,-0.02414338,-0.0008921805,0.014986336,0.00863493,-0.030385774,-0.012484789,-0.012301189,0.027608825,-0.04755236,-0.008646404,-0.028802224,0.0114635145,-0.04172306,-0.017258385,-0.01170449,-0.04631306,0.028733375,-0.041264065,-0.049571957,-0.0049256394,0.05608975,0.0065350067,0.011193853,-0.019174708,-0.018440308,0.039129715,0.046749108,-0.0038527278,-0.03550362,-0.00086349295,0.03254307,-0.062148545,-0.040300164,0.01834851,-0.04433936,-0.0020052544,-0.044224612,0.018784558,0.011113527,0.023099154,0.010447978,-0.025130227,0.01605351,0.039313316,0.011738915,-0.018578008,-0.06526974,-0.01635186,0.07513823,0.010287329,0.009076717,-0.03708717,0.010884028,-0.002402576,-0.096757114,-0.038441215,0.019415682,-0.031189023,-0.013907688,-0.04378856,-0.038464166,-0.021205781,0.00018897874,-0.012874939,-0.04365086,-0.020643506,0.026828526,-0.039680514,0.033185672,-0.007212031,0.005031783,0.013058539,-0.061138745,0.06751884,-0.0065694316,-0.0013648066,-0.006712869,-0.0077628307,-0.029031724,0.013207713,-0.0058866697,0.012702813,0.020448431,0.0037867466,-0.042595163,-0.049480155,0.039978866,-0.022548355,-0.0041711587,-0.01126844,-0.037729766,-0.029766124,0.0069595813,-0.04470656,-0.030936573,0.02322538,0.010700428,0.012840513,-0.036628168,-0.049021155,-0.025107278,-0.01690266,-0.013115914,-0.020356633,-0.015571561,-0.0022892605,0.039290365,0.016340386,0.022777855,-0.093498215,-0.043490212,-0.0095586665,0.0136781875,-0.011744652,0.017487884,0.0009832631,0.00068132754,0.031739824,0.012978214,-0.024235178,0.024556478,0.030248074,0.050627656,-0.013976538,-0.0010922756,-0.015387962,0.018337034,0.028595675,0.0077972556,-0.052142352,0.02400568,-0.00897918,0.01113074,0.012381514,-0.018979633,-0.0108496025,0.01651251,0.013551963,-0.012955263,-0.024740078,-0.06728934,0.04257221,-0.027310476,0.06572874,-0.054804552,-0.00024993962,-0.048791658,0.06724344,0.04330661,-0.047460556,-0.038808417,-0.02244508,0.0075218556,-0.021354957,-0.019163232,0.020333681,0.01745346,0.029972672,-0.027608825,-0.054253753,0.004291646,-0.03561837,0.00936933,0.03385122,0.029077625,0.005361689,-0.04218206,-0.02150413,0.025841678,0.05315215,0.003872809,0.0054907827,-0.0013461597,-0.03258897,0.03141852,0.035824917,0.08964262,-0.0028572725,-0.031716872,-0.004475246,0.030110374,0.027494075,-0.026920326,0.041057512,0.04367381,0.0068735187,0.0065464815,-0.03343812,0.009834066,0.024395829,-0.016271535,-0.0072062938,0.025818728,0.0015362143,-0.0070341686,0.018635383,-0.008583292,-0.024831878,0.0035830655,0.03573312,-0.031602122,0.01710921,0.028251424,0.021022182,0.019117333,0.03373647,0.023569629,0.027953075,0.04583111,0.015319112,-0.030867722,0.028228475,0.038923167,-0.027976025,-0.0058866697,0.03708717,-0.008508705,0.061138745,0.036788817,-0.055538952,0.024441728,0.03720192,0.061735444,0.00095816166,0.01736166,0.050765354,0.014194562,0.014148663,0.018761609,-0.02136643,-0.0019120201,0.059761748,0.049112957,0.011119265,0.052876752,-0.04424756,0.0039732154,-0.013150338,-0.042755812,0.0046617147,-0.049526054,0.008531655,-0.013196238,0.020379582,0.00918573,0.030752972,-0.020827107,-0.013609338,-0.033300422,-0.04569341,-0.027264576,-0.043995112,-0.020264832,-0.012048739,0.014343738,0.00060960883,0.052968554,-0.026828526,-0.0046272897,-0.02324833,0.041241113,0.0012185004,-0.029169424,0.030959522,-0.00021192872,0.014091288,0.03486102,-0.061735444,-0.01749936,0.017992783,-0.009403754,0.015778111,-0.0019234952,-0.0133683635,-0.019622233,-0.010815178,-0.035480667,0.03323157,-0.014010962,-0.030339872,-0.015628936,-0.0029304256,-0.010775016,-0.026484277,-0.04392626,0.005192433,0.0013103004,0.008789842,-0.010838128,-0.0052641514,-0.03447087,-0.030592322,0.008388218,0.01710921,0.01644366,-0.03564132,-0.01175039,-0.040782113,0.0025890446,-0.0022390573,-0.005315789,-0.022812279,-0.008210355,-0.03304797,-0.028274374,0.07646933,0.040621463,0.041149314,-0.011876615,-0.060725644,-0.01697151,-0.03180867,-0.017487884,-0.018187858,-0.005123583,0.038188767,0.019174708,-0.010975827,-0.017625585,-0.019541908,0.00008400051,0.047139257,0.041378815,-0.004432215,-0.0021601669,-0.0062079695,0.028480925,0.012909364,-0.0048424457,0.018841933,-0.0051035015,0.0031986535,0.00047155036,0.006076007,0.015158461,0.03334632,0.028825175,-0.020563181,0.022984404,0.04424756,0.01062584,-0.016409235,0.060817447,-0.039978866,0.037867468,0.05677825,-0.03382827,-0.005238333,-0.014183087,-0.035090517,0.0066841817,-0.0011812068,0.020459907,-0.012163489,-0.022112306,-0.035549518,-0.024189278,-0.04323776,0.047185156,0.013735563,-0.010287329,-0.04470656,0.01106189,0.005089158,-0.04273286,0.05700775,0.0029490723,0.0012909364,0.049985055,-0.003927315,-0.014699462,0.00803823,0.025405627,0.023420455,0.028113725,-0.048149057,-0.01761411,-0.033070922,-0.0040736212,0.020735307,-0.060817447,-0.0028027662,0.020000907,0.08266582,0.013448688,-0.017763285,-0.015663361,-0.0075046434,-0.025222028,0.027080975,0.0049084267,-0.04750646,-0.027953075,0.017786235,0.022548355,-0.016478086,0.019174708,0.052968554,0.038533017,0.040965714,-0.016202686,-0.022307381,0.000092517104,-0.06531564,0.038372368,0.023845028,0.04599176,0.03499872,-0.039565764,-0.01113074,-0.013276563,0.07160394,0.026828526,-0.03453972,0.0019521826,0.0028687473,-0.010889765,-0.03357582,0.043880362,-0.009570141,0.032129973,-0.038716614,0.012576588,-0.03341517,0.022410655,-0.052188255,0.014424062,-0.026300676,0.0025173258,0.019828781,0.035939667,0.0038010904,-0.016248586,-0.038533017,-0.025451528,0.0025259322,-0.014940437,0.0064604194,-0.00831363,0.03467742,0.0044953274,0.00918573,-0.026599027,0.0053817704,-0.023213904,0.0052211205,0.011687277,-0.015915811,-0.009352117,-0.0053674267,-0.0038240403,0.0029921036,-0.015284686,-0.07715783,-0.01582401,0.013563438,0.012507739,-0.0034998718,0.028389124,-0.01085534,-0.029857924,0.018669808,-0.051637456,-0.01122254,-0.011256965,-0.0091914665,-0.0005461378,0.007659556,0.006896469,0.006454682,0.018497683,0.037913367,-0.017992783,0.041080464,0.0066956566,-0.028435025,0.03426432,-0.020287782,-0.010166841,-0.064030446,0.020046808,0.03584787,-0.00037508874,0.0031154598,-0.007045644,-0.038142867,-0.03479217,-0.0055797137,0.024372878,0.027517026,0.00014953346,-0.011595477,0.0018388671,0.008893117,-0.031234922,0.00072686886,-0.011073365,0.003362172,-0.021791006,0.02145823,0.010207003,-0.0047334335,-0.006035845,0.03336927,0.0051809577,0.016661685,-0.014802737,-0.04750646,0.0037207655,0.01795836,-0.0101725785,0.02400568,-0.03382827,-0.024304029,-0.04470656,0.031234922,0.031234922,-0.015066662,-0.014240462,-0.008198881,-0.03265782,0.0037982217,-0.0022433605,0.014309312,-0.018245233,-0.0017743203,-0.006041582,-0.01701741,-0.039519865,-0.025428578,0.028825175,-0.024877777,0.0011324381,-0.02338603,-0.059761748,0.023982728,0.015410911,0.047965456,-0.012381514,-0.016501036,0.0040133777,0.04502786,-0.00831363,-0.014033913,0.024349928,0.019014059,-0.015055187,-0.027494075,-0.012209389,0.026071176,-0.0051780893,0.035044618,-0.0020583263,-0.021377906,-0.023707328,-0.027585875,-0.021022182,-0.020689407,0.04479836,0.0078087305,0.009398017,-0.039542817,0.006030107,-0.0014573237,-0.04238861,-0.020230407,0.016133836,0.010161104,0.011991364,0.009943078,-0.031326722,-0.0029490723,-0.050076857,0.013081488,-0.040024765,0.0052354643,-0.037178967,-0.0062251817,0.0085144425,-0.020597607,0.0027855537,-0.013506063,-0.0043490212,0.02187133,-0.014447012,0.03378237,0.010390603,0.027448175,0.019909108,0.0006372205,0.012174964,0.0056055323,-0.03222177,0.025038429,-0.036215067,-0.007085806,0.010522566,0.03334632,0.006431732,-0.0022806542,-0.0040391963,-0.032910272,-0.00068527204,-0.03490692,0.014527337,0.017533785,-0.012553639,0.021446755,-0.021664781,0.021194305,0.036903568,-0.025703978,0.005949782,0.0010987303,0.007315306,0.011274178,-0.048332658,0.025612177,0.02414338,-0.005439145,0.0052698893,0.0000051715897,-0.006816144,0.004825233,0.005338739,-0.019702557,-0.0032302097,-0.016363336,-0.018394409,0.0033105346,0.035044618,-0.03417252,-0.0130011635,-0.006575169,0.014137187,-0.020620557,-0.03460857,0.009644729,-0.03398892,0.024028629,-0.0058551137,0.014687987,-0.012392989,-0.018141959,0.010574203,0.011274178,0.023982728,0.014171612,-0.049617857,0.017487884,-0.00018987522,-0.04564751,0.025703978,0.029146474,-0.014619137,-0.031349674,0.011784814,-0.0124503635,0.030431673,-0.018543584,-0.040369015,-0.012255289,-0.0035457718,0.013288038,-0.029421873,-0.03203817,-0.0053444766,0.024189278,-0.021940181,-0.016397761,-0.025658077,0.013884738,-0.0068792566,-0.0089447545,-0.015043711,0.026576076,-0.00838248,0.007177606,-0.020184508,-0.0066210693,-0.04615241,-0.00014845768,0.006902206,-0.030867722,0.0052412017,0.03529707,-0.021917231,0.06568284,0.0038871528,-0.014424062,-0.03199227,-0.04367381,0.0015089612,-0.01786656,-0.011842189,-0.024166329,-0.029284174,0.010683215,-0.04454591,0.03284142,0.009030817,-0.027998975,-0.03295617,-0.02386798,-0.03235947,-0.0130011635,-0.014114237,0.039703466,0.028779274,-0.03359877,0.008640667,-0.025612177,-0.023982728,-0.04500491,-0.03274962,-0.01800426,-0.03362172,0.0059383074,-0.015651885,-0.023374554,-0.028251424,-0.0070226938,0.027058026,-0.06453534,-0.000579487,-0.0032416845,-0.019496007,0.006053057,0.0071603935,0.04346726,0.018669808,0.03313977,-0.010551253,0.0015204361,0.0041396026,-0.0069136815,-0.016730536,0.026851475,-0.025244977,-0.040713266,-0.021802481,0.041149314,-0.027539976,-0.04507376,-0.017487884,-0.045119658,0.036674067,0.03412662,0.013196238,-0.006179282,0.0035371657,0.013115914,-0.01821081,0.018910782,-0.013873262,0.011331553,0.014768312,0.0094955545,0.049985055,0.020046808,-0.012679864,-0.013253613,-0.047414657,0.008279205,0.022456555,-0.019323884,0.00013976179,0.018750133,0.012863464,-0.013150338,0.032336522,-0.025864627,0.003020791,-0.031005422,-0.036605217,-0.000393377,0.0142289875,-0.01667316,-0.0050260457,-0.060496148,0.019932058,-0.014492912,-0.040506713,0.026438376,0.027517026,0.006649757,0.0074702185,0.02425813,-0.014837162,-0.0088816425,-0.01662726,0.025405627,-0.0053760326,0.018382933,0.0048338394,0.027287526,0.049434256,0.021320531,0.027654726,0.04417871,0.0035572469,0.020104183,-0.03281847,-0.008296418,0.038487114,-0.0066382815,-0.0015304767,0.0077398806,0.0026363789,-0.029513674,0.02269753,-0.00004643785,0.0069825314,0.05558485,-0.010677478,0.013643763,-0.03196932,-0.010034879,0.0006608877,-0.043031212,0.021538556,0.05411605,-0.02304178,0.047460556,-0.032566022,-0.025818728,0.011411877,-0.022272956,-0.009908654,-0.0046617147,-0.007303831,-0.0040592775,-0.006644019,0.0022749167,-0.02285818,0.0071833436,0.040414914,-0.029169424,0.040391963,0.028894024,-0.0008018149,0.0016753485,0.0118307145,-0.012530689,0.009403754,0.027379327,0.005020308,-0.023546679,-0.0115897395,0.030569373,-0.018141959,-0.031211972,-0.0031584909,-0.043490212,0.037913367,-0.0074128434,-0.013942112,0.00051637454,0.03215292,-0.009346379,-0.00218742,0.0033564344,0.0029189505,-0.0028328882,0.03398892,0.015009287,-0.0038699403,-0.038211714,0.029077625,-0.0001740971,0.025933476,0.013815887,-0.03584787,0.013919163,0.023076205,0.009593092,0.050260454,0.01724691,0.003215866,-0.020150082,-0.0155830365,-0.04392626,0.04523441,0.048194956,0.028251424,0.025244977,-0.059073247,-0.008984917,-0.002782685,-0.029513674,0.040414914,-0.020930381,0.014642087,-0.0019177577,-0.019105857,0.019507483,0.0033334845,-0.015410911,0.030798873,0.027035076,0.038372368,-0.01722396,0.018405885,0.014447012,0.02219263,-0.008348055,0.0035945405,0.026874427,0.050719455,0.0064374693,-0.004985883,-0.024510577,0.0066612316,0.007516118,-0.0017269859,0.060037147,0.017304284,0.01747641,-0.01630596,0.010103729,0.029743174,-0.012392989,-0.0117102275,0.029421873,-0.0031154598,-0.012829038,0.0070743314,-0.008531655,0.017522309,-0.012496264,0.076836534,-0.026599027,0.02198608,-0.017292809,-0.0076710307,0.01706331,-0.027539976,0.016661685,0.026667876,0.0023136449,-0.0039932965,-0.0070399065,-0.0034654469,0.0010643053,-0.014561762,-0.0036519156,0.025061378,-0.015181411,-0.014171612,-0.015227311,0.018945208,-0.015479761,0.0060932194,-0.010132416,-0.027264576,0.03467742,0.01103894,0.024556478,-0.031211972,0.009220154,0.010390603,0.016156785,0.009317691,0.024487628,-0.0069825314,-0.02386798,-0.04684091,-0.019232083,-0.0002558564,0.02212378,0.020987757,-0.032680772,0.00067415566,0.0008312196,0.0070226938,-0.010103729,0.025635127,-0.006305507,-0.00069029233,-0.024556478,0.0021960263,0.016007612,0.0038756777,0.008112818,0.03557247,-0.0056485636,-0.020310732,-0.003227341,-0.013976538,0.019714033,0.028939925,-0.012588064,0.05636515,0.006322719,0.01704036,-0.0030867723,0.008973442,-0.034929868,-0.015869912,-0.028205525,0.0025044165,-0.008445593,0.047873657,-0.03261192,-0.047093358,-0.013253613,0.0052899704,-0.0063341944,-0.018578008,-0.018910782,-0.019691082,0.009702104,-0.026782626,0.03405777,-0.0041281274,-0.00003014426,-0.02375323,0.03669702,-0.011056153,-0.0077628307,-0.009088192,0.026025277,0.016133836,-0.01694856,-0.010034879,-0.018451784,-0.017522309,0.037133068,-0.005430539,0.016822334,-0.007292356,0.01694856,0.011079103,0.010476666,-0.03265782,0.014779787,0.0029103444,0.005545289,0.019037008,-0.040552612,-0.019105857,0.012174964,-0.00037437154,0.012783139,-0.020574657,0.010252903,0.020459907,0.007825943,0.009162779,0.029054673,0.02262868,0.03424137,0.0019019796,0.021905756,-0.04704746,-0.010201266,-0.0031527535,-0.04560161,-0.009111142,-0.05563075,-0.0023853634,0.04479836,0.008261993,-0.004985883,-0.00062036666,-0.012519214,0.041470613,0.011865139,-0.00561127,-0.013035588,-0.017832134,-0.0029949723,0.00021927989,0.041309964,-0.006598119,-0.005158008,0.011865139,0.003967478,0.0010234256,0.0056084013,0.013322463,0.005318658,0.028641574,-0.0072521935,-0.0002522705,-0.006644019,0.0059153573,0.032405373,0.010654528,0.009443916,-0.018715708,-0.011670064,-0.013884738,0.02352373,-0.0016724798,0.0025302353,0.022571305,-0.03320862,-0.012232339,-0.0036174906,-0.02219263,0.03203817,-0.024418779,-0.008560343,0.021332007,0.0010112334,-0.021263156,-0.052463654,-0.016202686,-0.000110626075,-0.030890673,0.021836905,-0.006397307,0.019243557,-0.042939413,0.0036547843,-0.025681026,-0.013574913,0.020333681,-0.012025789,-0.050535854,-0.020127133,-0.03231357,0.036536366,0.02299588,0.04502786,-0.0042285337,-0.011606952,0.015548611,0.026943276,0.038372368,-0.0010721943,0.010889765,0.0027009258,0.03396597,-0.009082454,-0.0065464815,0.037018318,0.016064987,-0.013529013,0.00822183,0.00063076586,0.061230544,-0.024304029,0.005043258,0.0018302609,-0.007154656,-0.0114635145,0.015433861,0.00046724724,-0.04541801,-0.014871587,0.04555571,0.002521629,-0.011343027,0.0010040617,-0.0013052801,-0.01782066,-0.003976084,0.010453716,-0.0060587944,-0.0091283545,0.009983242,0.041355863,0.030110374,0.027953075,0.043260712,-0.008830004,0.024785979,-0.023822078,-0.014871587,0.014447012,0.01149794,0.0026191664,0.018979633,0.028733375,0.003600278,-0.032566022,0.0070915436,-0.016432185,0.03157917,0.0009509898,-0.021469707,0.007384156,-0.016914135,0.005278495,0.024326978,0.03412662,-0.028526824,0.01775181,0.026392477,-0.010901241,-0.048699856,0.031166073,0.0120143145,-0.0025244977,0.009564404,0.0015146986,0.0018603827,-0.0034998718,-0.03382827,0.0075562806,0.010384866,-0.019507483,0.0038068278,0.0067415563,-0.021768056,-0.043995112,0.019461583,-0.008003806,-0.038028117,-0.051866952,0.0117733395,-0.029720224,-0.011979889,0.013012638,-0.023064729,0.026782626,-0.03467742,0.01743051,-0.0058235573,-0.024602378,0.009042292,0.009122617,-0.013689663,0.025153177,-0.004647371,0.015594511,-0.027333425,-0.008594767,0.026369527,-0.009489817,-0.009168517,-0.0066210693,-0.019415682,0.019564858,-0.041768964,0.0046272897,0.0131847635,0.0030925097,-0.039749365,-0.009943078,0.0073095686,-0.0031211972,-0.006976794,-0.02361553,-0.026415426,-0.021515606,-0.029651374,0.01161269,0.017797709,-0.04261811,-0.008158717,-0.02414338,-0.03284142,-0.0029720224,-0.0012557942,-0.028894024,-0.031556223,0.0036605217,-0.023684379,0.004524015,0.0016868236,-0.003884284,-0.03293322,0.048653957,-0.0018833327,0.026851475,-0.04300826,0.015697787,-0.019541908,0.021653306,0.027976025,0.031074272,0.0069653187,-0.030982472,0.023845028,-0.025979377,0.0043547587,-0.017992783,0.017797709,0.017155109,-0.007607918,-0.015043711,0.04296236,0.027517026,-0.025818728,0.04553276,-0.00090939295,0.012163489,0.017648535,-0.018050158,0.009461129,-0.015112561,-0.00012658349,-0.01642071,-0.039175615,0.0017671484,0.014768312,0.0041396026,-0.03389712,0.030454623,-0.02203198,0.025244977,0.011188115,-0.006632544,0.0055739763,0.019736983,-0.013827363,-0.009036554,-0.024671229,0.006121907,0.026713775,0.027195726,-0.0017327234,-0.03444792,0.027035076,0.0064374693,0.01860096,0.027448175,-0.006689919,-0.021412332,0.0034138095,0.019541908,0.006827619,0.019186184,-0.001738461,0.015032236,-0.031349674,-0.006689919,-0.023317179,-0.028641574,-0.0067989314,-0.026736727,-0.0065005817,0.025543327,-0.0057747886,0.021045132,0.020333681,-0.004770727,0.0016954298,-0.029123524,0.04661141,-0.005860851,-0.0065866443,0.012209389,0.01570926,-0.014102763,-0.026874427,0.01609941,-0.040988665,-0.011469252,-0.006971056,-0.00815298,0.023546679,-0.008847217,0.0103561785,0.00405354,0.019656658,-0.0049112956,-0.025910527,-0.008256255,0.01717806,-0.006644019,-0.005545289,0.0021601669,-0.029192373,-0.011549577,-0.0085775545,0.0011532365,-0.010866815,0.010316016,0.011492202,0.0012715723,-0.035549518,0.01690266,0.01621416,-0.018623909,0.022559829,-0.010184053,0.00023147206,-0.025405627,0.018451784,-0.00874968,-0.023145054,0.01170449,0.012645438,0.03362172,-0.028182575,0.0060071573,-0.0066268067,0.038533017,0.020299258,0.03759207,0.003396597,0.022594254,0.019955007,0.019151758,0.037936315,-0.0144125875,0.024602378,0.025703978,0.03300207,0.00085560395,0.01720101,0.009587354,-0.013747037,0.03364467,-0.016248586,-0.013735563,0.028343225,0.007653818,-0.010189791,-0.0058551137,-0.030959522,-0.0033478283,-0.02301883,-0.00067487283,0.012163489,-0.007458743,-0.036536366,-0.0030351349,-0.021354957,0.048653957,0.026782626,0.005370295,0.0041051777,0.025290877,0.001278027,-0.00039660433,-0.010797965,0.010780753,0.013999487,-0.038670715,-0.02260573,-0.009174255,0.018623909,0.030179223,0.04195256,0.007825943,-0.038028117,0.013666713,0.0062423944,-0.007011219,-0.013919163,-0.018417358,-0.027494075,0.007498906,-0.0068333563,-0.025979377,0.0031068535,-0.01809606,-0.012347089,0.014607662,0.03304797,-0.0045957332,-0.00045541365,-0.009145567,-0.0017958359,-0.024900727,0.013196238,-0.009139829]},{"id":"class-UserFlagsBitField","type":"class","source":"main","text":"Class: UserFlagsBitField\nProperties: Flags: { readonly Staff: number; readonly CtpMember: number; readonly Partner: number; readonly BugHunter: number; readonly FriendlyBot: number; readonly FriendlyBotManualApproval: number; ... 24 more ...; readonly StaffHidden: number; }","meta":{"url":"/docs/classes/UserFlagsBitField"},"embedding":[-0.018862741,0.02020317,-0.009016804,0.028687948,0.015946962,-0.007206534,-0.015366569,-0.022510918,0.020230807,0.009735385,0.0403787,0.0038520065,0.04054453,0.030733138,0.037310917,0.010253592,-0.015615309,0.018696913,-0.006491408,0.019816242,0.0038554613,0.056436215,0.018655458,0.024030993,-0.022884028,0.033414,-0.007524368,-0.04344649,0.0047605964,0.022289816,0.037808392,-0.03346927,0.029185427,0.012706439,-0.006180484,-0.034491867,0.019871516,0.043805778,0.013501024,0.00811167,-0.039881222,-0.027388975,-0.04557459,-0.006118299,-0.017259752,0.014316336,-0.0010044582,0.028964326,-0.0062323045,0.039964136,-0.0013594301,0.02357497,0.02346442,0.055358343,0.01052306,0.04305956,0.013770492,-0.012153685,0.011642387,0.012823899,0.038554613,-0.0014224786,-0.02866031,0.0013309288,-0.005081885,0.024086269,-0.06776768,0.034685332,0.0307055,0.036205407,0.035652652,0.025813626,-0.016057512,0.046403725,0.079762444,-0.0007950161,0.03023566,0.001574486,0.016928101,0.004802053,-0.02866031,0.03979831,-0.03310998,-0.008236039,0.0030919693,-0.00847096,-0.058813058,-0.03349691,-0.025799807,-0.068652086,-0.038001858,0.011103452,-0.047923796,-0.0013982956,-0.0035583558,-0.03833351,-0.044662546,-0.021073757,-0.052318193,-0.035016984,0.09446571,0.016112788,-0.008581511,0.030677864,0.021488324,0.011075814,-0.00082351756,-0.008381137,-0.011939493,0.016292432,-0.10800819,0.03797422,-0.006118299,0.03374565,0.012077682,-0.025606344,-0.0017049016,0.026753308,0.021350134,-0.013590846,-0.016651724,0.0062357592,0.028826136,-0.018848922,0.007938934,-0.0011055087,-0.022082534,-0.0578181,-0.017328847,-0.04701175,0.0010113677,-0.01873837,0.038416423,-0.0026687668,-0.044358533,0.007330904,0.0026825857,0.03313762,-0.08186291,-0.060747698,-0.0013577028,0.004815872,0.031838648,0.02528851,-0.0048953304,0.049554422,-0.058094475,0.031838648,-0.012830809,0.037725482,-0.028964326,-0.0030556947,-0.03181101,0.0017161294,0.0058591957,-0.018918015,0.053561892,0.009977215,-0.03230849,-0.016154245,0.0066986913,-0.0340773,-0.030208023,0.017853964,0.049305685,0.0100394,0.019346401,-0.02407245,-0.059918568,-0.0059732012,0.036758162,-0.025937995,-0.011898036,-0.041318383,-0.042866096,0.011739119,-0.006007748,0.012906813,-0.0681546,-0.052870948,0.010571426,0.024210637,0.0005717552,-0.071747504,-0.024335008,-0.02877086,0.01753613,-0.028743224,0.026172915,-0.033027068,0.05381063,0.053782992,0.031285893,0.039356105,0.016651724,-0.010198317,0.011656206,-0.023975717,-0.014813815,-0.065888315,-0.037891306,0.005296077,0.03930083,-0.023450602,0.0038416423,-0.05201418,0.0049402416,0.009030623,-0.04305956,0.003969467,0.03170046,-0.0013119278,-0.038140047,0.005510269,-0.0010882351,0.00347717,-0.021267222,-0.012519885,-0.03493407,-0.0014198876,-0.020935569,0.018696913,0.042285703,-0.0022041078,-0.034795884,0.054805588,0.017715774,-0.0024165728,-0.0018914561,-0.014620352,-0.047868524,0.023740796,-0.02140541,-0.039494295,-0.055828184,-0.001762768,-0.025813626,0.04112492,0.003786367,-0.021806156,-0.016043693,0.009065171,0.028715586,0.03324817,-0.015408026,0.01719066,0.016002238,0.017867783,-0.010329596,-0.00250985,0.037449103,0.010419418,0.020161713,-0.029655268,-0.027789723,0.033718012,-0.024597567,0.054860864,0.023685522,0.0032491588,-0.0073585417,-0.0672702,-0.006301399,-0.041871138,-0.0336351,-0.0049575153,0.06533556,0.019097662,-0.027900273,-0.012816991,-0.01016377,0.04488365,0.028964326,-0.0026134914,0.0016453078,-0.036813438,0.013632303,0.013494114,-0.007897477,-0.016402984,0.004197478,0.02032754,0.02212399,0.04120783,-0.0055620903,0.0072549,0.016872825,0.014606533,0.053976458,0.00471914,0.03457478,0.03059495,0.06942594,-0.009493555,-0.0077454695,0.04692884,0.017093927,-0.04245153,0.048310727,-0.019456951,-0.0026601302,-0.009065171,0.013687578,-0.03664761,0.031120067,0.039494295,0.070918374,-0.04764742,-0.04701175,-0.010875441,0.0062944894,-0.03637123,-0.0708631,-0.03521045,-0.06959177,-0.025205595,0.030650226,0.02067301,0.04753687,0.004014378,-0.012754805,-0.000015910578,-0.0031956108,-0.025744531,0.01936022,-0.0068368795,0.025578706,0.05165489,0.03930083,-0.013597756,-0.022635289,-0.00022995443,-0.025412878,0.03012511,0.0019363674,-0.030926604,-0.018296167,0.06257179,-0.047702696,-0.019733328,0.03203211,-0.01608515,-0.042866096,0.0013412929,0.007932024,0.005188981,-0.044330895,-0.001211741,0.008312043,-0.017273571,-0.017232114,0.024265913,-0.014136692,-0.049139857,-0.058702506,-0.06008439,0.025537249,-0.03919028,-0.046127345,0.07860166,-0.03230849,0.03327581,-0.009707747,-0.050273005,-0.016002238,-0.006280671,-0.011773666,-0.027084962,0.0004966152,-0.046127345,-0.0124577,-0.0079527525,0.02673949,-0.015076374,0.033800926,-0.011124181,0.017632863,-0.02115667,-0.0037449105,-0.0014155692,0.027416613,0.019443132,0.004145657,-0.0065121367,0.0056795506,-0.035735566,-0.016292432,0.04112492,-0.06351147,-0.0043011196,0.050245367,0.010502332,0.03736619,0.0034892615,-0.010419418,0.022151629,0.024335008,0.07804891,0.0047951434,-0.03639887,-0.037034538,-0.01848963,0.007068346,0.04714994,0.018959472,-0.006325582,-0.039881222,0.026103823,0.046293173,0.004871147,0.0466801,0.008719699,0.03686871,0.00033467545,0.058702506,-0.0215436,0.0024839395,0.008415684,0.0075865528,-0.016237158,-0.039991774,-0.009210268,0.015408026,-0.020590097,0.020465728,-0.000964729,-0.025468154,-0.05698897,0.0008014937,-0.03905209,-0.029904008,0.0069681588,-0.015463302,0.031424083,-0.014551257,-0.050825756,0.014523619,-0.033552185,0.009500464,0.0020538277,0.011511108,0.030816052,0.001910457,0.009120446,0.019415494,-0.023077492,0.0051578884,-0.0073585417,0.04621026,-0.032336127,-0.020880293,0.010025581,-0.062074307,0.035155173,-0.054252833,0.01898711,0.05925526,0.039356105,0.0055966373,-0.012512975,-0.012789353,0.041097283,0.0016029874,0.06450643,0.0023146586,-0.031755734,-0.060139667,0.020507185,0.03664761,0.01656881,-0.0007112393,-0.013307559,0.048808206,0.027402794,0.015297475,-0.026435474,0.014413068,-0.04944387,0.010295048,-0.028522123,0.04789616,-0.010246683,0.0020970115,0.010391781,-0.0005717552,0.05721007,0.09761641,0.026642757,-0.009707747,0.00393492,-0.04460727,-0.01850345,0.050466467,-0.016859006,0.017508492,-0.006056114,0.018600183,-0.045270577,0.013162462,-0.04170531,0.026863858,-0.042562082,-0.009818298,0.0049160584,0.036233045,0.05201418,-0.0057244617,-0.029047238,-0.073626876,-0.008415684,-0.038996816,0.038969178,-0.03601194,-0.025924176,0.0021764701,-0.0249154,0.0064568613,0.03396675,-0.03241904,-0.038830988,-0.025136502,-0.002824229,-0.012720258,-0.024832487,0.0020106437,-0.021833794,-0.035238087,0.012810081,-0.020175532,0.000015816115,-0.0047571417,-0.04344649,0.014178148,-0.03192156,-0.027858816,0.016997194,0.0003780753,0.006978523,0.008920073,-0.023188043,-0.019788604,0.011214003,0.023270955,-0.003124789,-0.032363765,0.0215436,-0.009403733,0.021958165,0.029682906,-0.015007279,0.014019231,0.0038865537,-0.005613911,-0.02043809,0.021695606,-0.0023526605,0.010944535,-0.004522221,-0.025661618,-0.00049531966,-0.011739119,-0.067822956,-0.013362835,-0.008643695,0.010599064,0.005710643,0.0104056,0.013501024,0.019277306,0.009065171,-0.012450791,0.06378785,-0.05331315,0.018448174,-0.0010657794,-0.0050335187,-0.02455611,-0.011144908,0.029240703,0.022193085,-0.008367318,-0.029240703,0.012934451,0.016195701,-0.011711482,0.0037690934,0.049526785,0.029295977,-0.027306063,0.019747147,-0.012664983,0.0018171797,0.04549168,0.0021108305,0.00068835187,0.01113109,-0.0012687439,0.023243317,-0.030042196,-0.0026100366,-0.011303825,-0.012084591,-0.027264606,0.009175722,0.004073108,-0.009334638,0.004618953,-0.03244668,-0.023312412,0.015408026,-0.014772358,0.0109652635,-0.017163021,-0.03120298,-0.013715216,-0.0043805777,-0.007793836,-0.024528472,-0.008173854,0.0054480843,-0.036067218,0.017923059,-0.007051072,0.05165489,-0.009362276,0.050162453,-0.03521045,-0.018296167,0.02043809,0.0014233423,-0.029351253,-0.005112977,0.00096904737,-0.024335008,-0.011027448,-0.034049664,0.021004664,0.026352562,-0.0015978054,-0.026449293,0.0733505,0.026131459,0.04004705,-0.016168064,0.026435474,-0.0049575153,0.022842571,0.0042769364,-0.015242199,-0.025012132,0.011234731,-0.023768434,-0.008415684,-0.006902519,-0.020216988,-0.036094856,-0.041760586,0.00810476,-0.03045676,0.027513346,-0.002611764,-0.018904196,0.018779827,-0.03686871,-0.00013581346,0.026297286,-0.044579633,-0.0073585417,-0.025219414,0.009818298,0.0076971035,0.0430872,0.009085899,0.0032387946,-0.011766757,-0.0074069076,-0.017715774,-0.016402984,-0.011877308,0.05284331,0.0015140285,0.023865167,-0.01318319,-0.027278425,-0.012374787,-0.02432119,-0.010536878,0.021571236,0.010861622,0.0092033595,0.032944158,0.019277306,0.014744721,-0.029489443,-0.014592714,0.027955549,0.010495422,-0.030346211,-0.009224087,-0.0500519,-0.008533144,0.019429313,-0.03264014,0.010840894,-0.010979082,-0.014399249,0.008650605,0.01632007,0.009030623,0.019415494,-0.020659192,0.021792337,-0.012278055,0.014965823,0.0041214745,-0.00980448,-0.03244668,-0.000082643244,0.04198169,0.017563768,-0.004498038,-0.0003208566,0.026311105,0.01572586,0.012913723,-0.007448364,0.032197937,0.037863668,-0.005043883,-0.0005847104,-0.00980448,0.018945653,0.0094313705,0.013203918,-0.00021851069,0.024100088,-0.013715216,0.03733855,-0.004090382,-0.026145278,0.00003163223,0.0015537578,0.002544397,-0.0129551785,-0.03485116,0.007434545,-0.024652842,0.02770681,-0.03725564,0.027775904,-0.01947077,0.012043134,0.0032647052,-0.043584675,0.031396445,-0.037780758,-0.011960221,0.008498597,-0.020797381,0.049968988,-0.03504462,0.06942594,-0.007427636,-0.03725564,-0.015919324,0.019401675,-0.015573853,-0.036592335,-0.023215681,0.0001846113,-0.021363953,0.013894862,-0.054169923,-0.0044807647,0.03360746,0.0031679731,0.0026566754,-0.059365813,-0.030346211,-0.030926604,0.005997384,-0.008629876,-0.017895421,-0.012499156,-0.016637905,-0.050659932,0.03457478,-0.006674508,-0.006263397,0.004981698,-0.023796072,-0.0006715101,-0.016831368,0.005572454,0.014661808,-0.0041214745,0.023851348,-0.05649149,-0.013383564,0.0370069,-0.028881412,-0.02745807,0.037062176,0.005710643,0.04825545,0.0002977532,-0.019042386,0.014143601,0.0011461015,0.0017593133,-0.00093536393,0.020410452,-0.013846495,0.0215436,-0.005465358,0.02998692,-0.0077109225,-0.03012511,-0.0096870195,-0.04897403,0.019802423,0.025979452,0.009272453,-0.02528851,0.017011013,0.027236968,-0.01583641,0.008194583,0.025537249,-0.017812507,0.025095046,0.01959514,0.0031887013,-0.0060768425,0.0018603636,-0.010149951,0.028273383,-0.0054584485,-0.012568251,-0.01669318,0.032391403,0.018199435,-0.024984494,0.013245375,-0.018296167,-0.01596078,-0.0114489235,-0.02527469,-0.009452098,0.016430622,0.01801979,0.007938934,-0.0017636317,-0.034989346,-0.027181692,-0.030263297,-0.020479547,-0.011310735,0.03521045,-0.00022077785,0.017950695,0.039245553,-0.0319492,-0.010253592,0.014468344,0.005710643,0.0069094286,0.030318573,-0.035127535,0.0012894721,0.05732062,0.00044868104,0.005112977,-0.013894862,-0.032004476,-0.026200553,-0.028259564,-0.0013663395,0.013722125,0.0418435,-0.02057628,-0.012022406,-0.0010528242,-0.022303635,0.011379829,0.046790652,-0.023008397,0.066606894,0.011870398,-0.012588979,-0.0019225485,0.0011815123,-0.016250977,-0.016375346,0.03711745,-0.037034538,-0.00075528695,0.005962837,-0.0043633045,-0.004010923,-0.033690374,0.00067626033,-0.03338636,0.01415051,-0.026587483,-0.003017693,-0.010177588,-0.007717832,-0.0024321189,-0.009652472,0.020382814,-0.05698897,0.0073378133,0.028356295,0.019208211,-0.029213065,0.0040661986,-0.009859755,0.021709425,-0.007247991,-0.013058821,-0.0104539655,0.036426507,0.067712404,0.021598874,0.016720818,0.0089753475,-0.0151869245,0.03338636,0.015435664,-0.027872635,0.022897847,-0.026172915,0.02226218,-0.014468344,-0.035265725,-0.0003703022,-0.019456951,0.042534444,-0.009161903,0.017259752,0.022441825,0.014454525,-0.02745807,-0.010543788,0.017619044,-0.008650605,-0.013058821,0.0051993453,-0.027002048,0.00008129375,-0.03977067,0.012775534,-0.03471297,-0.031866286,-0.016582629,0.069094285,-0.02794173,0.013901771,0.027375156,-0.023312412,0.027914092,-0.0040972913,-0.006038841,0.01463417,0.02034136,0.04958206,0.027126417,-0.04112492,0.031838648,0.020286083,-0.024487015,0.049416233,-0.011980949,-0.020299902,-0.018904196,0.012789353,0.015283656,0.0017860873,0.0030919693,-0.01620952,0.06406422,0.028204288,0.019318763,-0.022441825,0.028632673,0.035735566,0.014330155,0.011220912,0.04692884,0.008671333,-0.0033579823,0.0026635847,0.010799437,0.022801114,0.014827634,-0.009362276,0.014413068,-0.016914282,-0.028093737,0.022234542,-0.01753613,0.003776003,0.007552006,0.028093737,-0.011994768,0.030263297,-0.0020417362,0.042258065,-0.004194023,-0.0024165728,-0.033414,0.02769299,0.0017351303,-0.008643695,-0.007399998,0.015283656,0.0013197009,0.0045671323,-0.02383753,-0.010854713,-0.00943828,-0.009769932,-0.0021229219,-0.025841264,-0.0015857139,0.005209709,0.0021125579,0.008415684,0.04424798,-0.002065919,0.027872635,0.012879175,0.009590287,-0.015062555,-0.03203211,-0.0003912464,0.033358723,0.029130151,0.022151629,-0.011697663,-0.025095046,-0.0056691864,-0.022911666,-0.034795884,-0.015753498,-0.023685522,-0.0100394,-0.01607133,0.02068683,0.009258634,-0.005068066,-0.0066503254,0.008277495,0.019277306,-0.004726049,0.013293741,0.015311294,0.021488324,0.024238275,0.004404761,0.012050044,-0.0151731055,0.016720818,0.0060906615,0.010219045,-0.0029831459,-0.029931646,0.014799996,0.009631744,0.00013419407,-0.01730121,0.02792791,-0.05505433,0.004767506,-0.011179456,0.02346442,-0.021502143,-0.015421845,0.001566713,0.006460316,-0.008374227,-0.005855741,0.00019335604,-0.015200743,0.017218295,0.010557607,0.04065508,0.0011512835,0.02382371,-0.03313762,0.03288888,-0.030512037,-0.0016997195,-0.04220279,0.054501574,0.013521752,0.005734826,0.016375346,-0.014482163,-0.013376654,0.017798688,-0.017688138,-0.0044462173,0.01864164,-0.024984494,-0.015767317,-0.003955648,0.008118579,-0.0028363205,-0.0024165728,0.010992901,0.022787295,-0.010101585,-0.04220279,-0.0159746,-0.018116523,0.021612693,0.014813815,-0.006557048,0.013963955,0.013266103,0.015905505,-0.0176605,-0.008940801,-0.012153685,-0.015684403,0.005344443,-0.02285639,0.020949388,0.0042769364,-0.0191253,-0.0014362975,-0.010502332,0.026200553,0.0124577,0.024279732,0.0057244617,0.00064991816,-0.010136132,0.020769743,0.0057762824,0.013501024,0.012865356,-0.046431363,-0.014454525,-0.041428935,0.08224984,0.0076487376,-0.011573293,0.00193464,-0.016679361,-0.03360746,0.027844997,-0.0056173657,-0.0044738553,0.0035376274,0.0055793636,-0.007476002,-0.024030993,0.018890379,-0.0020400088,0.010011762,-0.013307559,0.01004631,0.042755544,-0.00919645,0.015546215,-0.00065898674,0.010536878,-0.037310917,-0.0060526594,-0.008761155,0.016720818,-0.0066814176,0.020106437,-0.0032128843,0.012561342,0.014454525,0.041290745,-0.006905974,-0.050355915,0.0051095225,-0.010433237,0.011967131,0.016748454,-0.013190099,-0.027900273,-0.030042196,-0.002679131,0.017853964,0.014717083,-0.03327581,-0.023975717,-0.020755924,-0.0018707279,-0.0290196,0.0052304375,0.010702705,0.0089477105,-0.015338932,0.0044462173,0.015062555,0.03443659,-0.0016021238,0.022884028,-0.014440706,-0.011234731,0.016651724,-0.027762085,0.009376095,0.052815672,0.030926604,0.01522838,-0.034491867,-0.005765918,0.040599804,0.005721007,0.0053478978,0.01730121,-0.0049644248,0.033662736,-0.00956265,-0.038361147,-0.023796072,0.0005341852,0.032723054,-0.00032798195,-0.010599064,0.00069957966,0.010972173,-0.015007279,0.0001620477,0.01572586,-0.025329966,-0.0026566754,-0.0030107836,-0.003952193,0.01717684,0.0224971,0.009852845,-0.008616057,0.008878616,0.0072272625,0.0092309965,-0.0021488324,-0.002872595,0.03374565,-0.0010718252,0.0079527525,-0.0074552735,-0.020852655,-0.012989726,-0.013266103,0.0051060678,0.023616428,-0.055579446,0.008318952,0.008166945,-0.0119464025,-0.001064052,0.013542481,-0.0037932764,0.0074414546,-0.03518281,0.030373849,-0.0019190938,0.007780017,0.0019052749,-0.019277306,0.005696824,0.00550336,0.009756113,0.02575835,-0.00008895889,0.0071167117,0.02479103,-0.012001677,0.0089891665,-0.023270955,0.014060687,-0.009009895,0.016472079,-0.005140615,-0.03725564,-0.027292244,-0.010550697,-0.0047951434,0.00798039,0.024998313,0.012243507,-0.0067263287,-0.010626702,-0.008664424,0.007386179,-0.023326231,0.017011013,-0.0092033595,0.0031645184,0.0069370666,0.0051060678,0.00021354452,-0.0073032663,0.050355915,0.011994768,-0.007752379,0.015794953,0.026394017,-0.013321378,-0.0111932745,-0.039853584,-0.0029226884,0.0074690925,0.00847096,0.015946962,0.008270586,0.018862741,0.0072549,-0.0014587531,-0.0099703055,0.00411111,0.0023647519,-0.019387856,0.016043693,0.017605225,-0.046652462,-0.043197747,-0.044579633,-0.008809522,-0.0026618575,0.013072639,0.014219604,-0.03012511,-0.0024338462,0.0009897756,0.04026815,0.010896169,0.019912973,-0.045823332,-0.024390284,0.001402614,0.010447056,0.030180385,-0.004694957,0.012312602,0.027914092,-0.005403173,-0.021571236,-0.010543788,-0.0023923898,-0.009210268,0.000045693996,-0.03327581,-0.008864797,-0.010274321,-0.0043391213,-0.026877677,-0.010060128,0.000050174327,0.00907899,-0.021626512,-0.010585245,-0.011511108,-0.008926982,-0.001910457,-0.02164033,0.004556768,-0.0076487376,-0.0031213344,0.014247242,-0.041898776,0.007234172,-0.030650226,0.019498408,-0.01583641,0.045740418,-0.040323425,0.013127915,-0.00058255123,-0.014772358,0.007026889,-0.0070718005,0.0099288495,0.009769932,0.020106437,-0.0087058805,-0.0013879315,0.000033872395,-0.023174224,-0.012644255,-0.032087386,-0.037421465,0.00038930314,0.02528851,0.002587581,-0.0011918765,0.011718391,0.010391781,0.008484779,0.03346927,0.0016245794,0.001085644,-0.022884028,-0.010909988,-0.008629876,-0.01052306,-0.015946962,-0.0022611106,-0.008899344,0.039383743,-0.02926834,0.042064603,0.02625583,-0.008236039,0.014730902,-0.016513534,-0.008388046,0.0026514933,-0.007766198,0.030650226,0.028231926,-0.013114096,-0.0070614363,0.010778708,-0.0058937427,-0.04388869,-0.018116523,0.012229688,0.020866474,0.014357793,0.03327581,0.006021567,0.021806156,-0.012789353,-0.0023250228,0.0151731055,0.002394117,-0.017591406,0.0073930887,0.011518017,-0.022566194,0.004100746,-0.035735566,-0.044165067,-0.013742854,-0.016859006,0.01669318,0.018185616,-0.021225765,0.026186734,-0.03131353,-0.010944535,0.0061839386,0.021322496,-0.0035082623,-0.010937626,-0.017978333,-0.0134526575,0.01633389,-0.0008727472,-0.008298224,-0.0065501384,0.004560223,0.0021263766,0.017923059,0.02020317,-0.012132957,-0.01088926,0.029240703,0.009355366,0.009161903,0.03860989,0.017121565,-0.01742558,0.008719699,0.0052338922,0.012948269,-0.005755554,0.021322496,-0.003148972,-0.035597377,0.05649149,-0.009763023,-0.014882909,-0.025440516,0.0018690005,-0.012063863,-0.01511783,-0.008139307,-0.004874602,-0.030014558,0.028010825,0.06450643,-0.01705247,-0.025316147,0.024473196,0.014143601,0.023312412,0.012257326,-0.008609148,0.034878798,-0.0060664783,0.0092171775,0.051295597,-0.018779827,0.02298076,-0.027029686,-0.0044565815,-0.025343785,-0.027430432,0.022994578,0.028466847,0.042783182,0.0056795506,0.0129689975,0.0064154044,0.014495982,-0.01897329,-0.008312043,-0.014005412,-0.016140426,0.0056277295,0.011483471,-0.02636638,0.025551068,-0.02346442,-0.020590097,0.04245153,0.007524368,-0.057044245,0.0074207266,0.012810081,0.015366569,-0.014551257,-0.013404292,0.023961898]},{"id":"class-UsersManager","type":"class","source":"main","text":"Class: UsersManager\nDescription: Manages users with fetch and profile helpers.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: fetch(userId: string) -> Promise — Fetch a user by ID from the API.\nUpdates cache if user already exists.; fetchWithProfile(userId: string, options: { guildId?: string | null; }) -> Promise — Fetch a user with full profile and optional guild context.\nReturns user, global profile, server profile (when guildId), and member (when guildId).\nIdeal for userinfo commands.; set(key: string, value: User) -> this","meta":{"url":"/docs/classes/UsersManager"},"embedding":[-0.019310933,0.017848661,-0.015169687,0.0010639152,0.014689704,0.016564986,-0.019456044,0.0043254257,0.009605236,0.0062621003,0.0058323485,-0.05121304,0.0048695924,-0.016520336,0.03667961,-0.0022896852,-0.044314686,-0.016977994,-0.013707414,0.008801544,0.033174623,0.029781254,0.057017483,-0.0032482552,-0.01695567,0.06572415,-0.06134849,0.0858611,-0.02069507,-0.040206928,0.012256304,-0.0036054517,0.0009739185,0.017368678,0.036925185,-0.01900955,0.056258444,0.018607702,0.000964849,0.04301985,-0.018864438,-0.047908977,0.0006638133,-0.014265534,0.01186562,-0.010062894,-0.015828269,-0.00934292,0.032705802,0.057821177,-0.010766124,-0.039068364,-0.029133836,0.07902972,0.013450679,0.0021027152,-0.0035496398,-0.022447566,-0.029111512,0.010581945,-0.0021752706,-0.0006931146,-0.0143548325,0.013383705,0.004690994,-0.008070407,-0.007813673,-0.0018669096,-0.0004918428,0.010319629,-0.001864119,-0.033665765,-0.020326711,0.009923364,0.034424808,0.01228979,0.030384025,0.043555643,0.005876998,-0.0135288155,-0.009264783,-0.0037533534,-0.031321663,-0.0055281734,-0.013260919,0.015046901,-0.040765047,-0.021498762,0.037416328,-0.0123679275,0.0038007936,0.0055811945,-0.06590275,0.0077020484,0.00038928833,-0.010682407,0.02411076,-0.031232364,-0.014299021,0.03156724,0.05237393,0.0054165493,-0.0063737244,-0.01845143,0.025494898,-0.033643443,-0.07224298,0.010208005,-0.015906405,-0.013618115,-0.064027466,-0.009075022,0.025584197,0.030160775,-0.017770523,-0.027727375,0.009878715,-0.0012369322,0.013461841,-0.025160026,-0.032549527,0.019110011,0.041925933,-0.0050454,0.041278515,-0.0046323915,-0.0141873965,0.009895458,-0.07652934,0.010403347,0.0045151864,-0.0035328963,0.024311684,-0.009510356,-0.024802828,-0.007395083,-0.0075569376,-0.0057151434,-0.012993021,-0.044225387,-0.018585378,-0.045765795,0.0008636899,0.019143498,-0.04250638,-0.030875169,-0.025539547,0.06773338,-0.03203606,0.01158656,-0.041836634,-0.034692705,-0.06143779,0.005743049,0.026320914,0.0018836532,-0.002803155,-0.010671244,-0.0403632,-0.06849242,0.040809695,-0.039447885,-0.012088868,-0.029156161,0.0141873965,-0.012390252,-0.029513357,-0.0075792624,-0.036143817,0.0031450032,0.021342488,-0.014310183,-0.070010506,-0.0015766874,-0.008511322,-0.03308532,-0.036456365,-0.0045849513,-0.057821177,-0.016129652,0.057776526,0.006619297,-0.027303204,-0.047864325,-0.06795663,0.0068481257,-0.034670383,0.005536545,0.021286676,-0.028330144,0.016598472,0.061928935,-0.022347104,0.027459478,0.024825154,-0.013428355,0.036791235,-0.014790166,-0.023374043,-0.017435651,-0.01826167,0.007138348,0.05866952,-0.030584946,0.0072220657,-0.034424808,0.02097413,0.020728556,-0.04011763,-0.012189329,-0.008974561,0.03830932,-0.025003752,0.028932912,-0.053892016,0.034179237,-0.037103783,0.029558007,-0.017201241,0.036367066,-0.027593426,0.033844363,0.07983341,-0.0606341,0.032259304,-0.023530317,-0.008025758,-0.057285383,-0.0038984644,0.016620798,0.011966081,-0.04728388,-0.05938391,-0.038666517,-0.01560502,-0.0149352765,-0.015560371,0.07331457,-0.0028798964,-0.0013513467,-0.017435651,-0.027839,0.010057312,0.03895674,0.02321777,0.0035356868,-0.022637326,0.0068704505,0.059964355,0.01840678,0.02929011,0.0006861381,-0.00031551192,-0.041189216,0.024400983,0.022949873,-0.010593108,0.022994522,0.016464524,0.028017597,-0.013249756,0.017737037,0.005910485,0.043533318,-0.047775026,-0.019913703,0.02723623,0.020058814,0.008025758,0.0506326,0.009610817,0.048846617,0.0119549185,-0.017324029,-0.0054416647,0.045810446,0.00985639,0.02013695,-0.038465593,0.020628095,-0.0074899634,-0.009934527,0.06179499,0.03455876,0.027772024,0.036099166,0.02625394,0.022815924,0.00032022104,0.044024464,0.007227647,-0.0071495106,0.0025492106,-0.042394754,0.07201973,0.046167642,0.04176966,-0.019377908,0.066349246,0.04105527,0.020069975,0.007417408,-0.043711916,-0.045185354,0.03415691,0.0044621653,0.036612637,-0.019534182,-0.027057631,-0.04147944,-0.051480938,-0.025003752,-0.014611567,-0.00046568093,-0.04732853,-0.01616314,-0.0067309206,-0.038130723,-0.0036640542,0.066126,0.04360029,-0.010654501,-0.034223884,-0.0031087254,-0.027124606,-0.08278028,-0.044002138,-0.059919707,-0.027548777,0.07152859,0.07152859,-0.027437152,-0.045051403,0.010157774,0.01340603,0.007835997,0.0056649125,0.038599543,-0.018350968,-0.027660402,0.045296974,-0.02924546,-0.045207676,0.0114135435,-0.011452612,0.016319413,-0.024400983,0.032482553,-0.035608023,-0.009928945,-0.020728556,0.035005253,-0.0041217124,-0.008628527,0.009499193,-0.034982927,0.009560587,-0.02462423,-0.04453793,0.011084253,-0.007841579,0.0138525255,-0.05139164,0.0035384775,-0.014488781,0.03699216,0.012535363,0.0074118264,0.011452612,-0.043890513,-0.013093483,-0.011798645,-0.0026454863,0.0077522793,-0.0146004055,-0.021108078,-0.01971278,-0.027481802,0.012602338,0.047015984,0.042729627,0.021945257,0.056124493,-0.015727807,0.013461841,-0.034782004,-0.010470321,-0.019444883,-0.017859822,0.014321346,0.030584946,0.038041424,0.012624662,-0.019277446,-0.007060211,-0.018741652,0.05255253,0.013517654,0.011731671,-0.018306319,0.049739607,0.020393685,0.01210003,0.0031003535,-0.017949121,-0.00094950077,-0.025293974,0.014968764,0.01793796,-0.029401733,0.03283975,0.013952986,0.01771471,0.0139195,0.059562508,-0.01210003,0.009722441,-0.0076741427,0.029401733,0.030875169,-0.0701891,-0.026990658,-0.0003721959,-0.002582698,0.015850592,-0.024311684,0.06969796,-0.0050565624,-0.05639239,-0.007166254,-0.042528704,0.032571852,0.028374793,0.015314798,-0.023307068,-0.024847478,0.03121004,0.014656217,0.0023524736,0.0165315,0.006044434,-0.006010947,-0.0122004915,0.00289664,0.0043282164,0.023865188,0.025227,-0.020215087,0.00934292,0.016844045,-0.015727807,0.02219083,0.019456044,0.034134585,-0.03895674,-0.010660082,-0.003041751,-0.007808091,0.013238594,-0.05130234,0.026053017,0.013216269,-0.029089186,-0.0043058917,0.05357947,0.041568737,-0.019110011,0.02676741,0.011190295,-0.004978426,0.0506326,-0.005196092,0.036791235,0.0024696786,-0.03911301,-0.045029078,-0.017357515,0.0040072976,0.036925185,-0.009928945,0.052909724,0.031544913,-0.0164422,0.018384455,0.021096915,0.05858022,0.02634324,0.023619616,0.003638939,0.01723473,-0.078538574,-0.0009739185,0.055097554,-0.009097347,0.01620779,0.01724589,0.032170005,-0.05456176,-0.000624745,-0.029089186,0.036835887,-0.024691205,-0.035161525,0.05223998,-0.033063,-0.0054779425,-0.0022059672,-0.015906405,-0.013238594,0.01336138,-0.039135337,0.044091437,-0.037126105,-0.018004933,0.005703981,0.014979927,-0.034112263,0.011832133,-0.0038482337,0.048087575,-0.011028441,-0.016297089,-0.020762045,-0.02634324,0.015325961,0.018897925,-0.02420006,-0.01579478,-0.015482234,0.049203813,-0.012390252,-0.038197696,0.025628846,0.0081318,-0.0013227431,-0.043176122,-0.01900955,-0.021922933,0.033732742,-0.036143817,-0.012725124,-0.0044091437,-0.007863903,0.01601803,-0.011631209,0.013439517,-0.0010555434,0.035630345,0.007685305,-0.0010360093,0.015828269,-0.012970696,0.0009013629,-0.02933476,0.013339055,0.009733603,0.0035384775,-0.016040353,-0.005377481,-0.07880647,0.01620779,-0.016553823,0.040296227,0.002466888,-0.039135337,0.0380191,0.015627345,-0.033040673,-0.021041105,-0.0071718353,-0.00023946814,0.0005807931,-0.013461841,0.0010290327,0.028330144,0.012434902,-0.0015780828,-0.01588408,0.00789181,0.036456365,-0.008031339,0.0059551345,0.005383062,0.032013733,-0.046748087,-0.0021948048,-0.0067978953,0.0302724,-0.011028441,0.07760093,0.005246323,-0.019980676,0.017770523,0.0053970153,0.017915634,-0.002415262,0.008075989,0.02728088,-0.018652353,0.0038984644,0.021978745,-0.01036986,-0.018038422,0.0004426585,0.028151546,-0.003948695,0.013071158,0.0011225177,-0.040876668,0.029200811,-0.007774604,0.013707414,-0.031076092,-0.047239233,-0.0039263703,-0.008628527,-0.00047684333,-0.025584197,0.0017748199,0.025427923,-0.022815924,-0.030205425,0.0043617035,0.053668767,0.024869803,-0.007925296,-0.035563372,-0.0074397326,-0.0046630884,-0.042216156,0.023619616,-0.0011846086,-0.0034547595,0.004264033,0.023329394,-0.018105395,-0.0010171727,0.0018208647,-0.024222385,0.009884296,0.058133725,0.02195642,0.0150134135,0.03690286,-0.009147578,-0.0066695274,-0.016877532,-0.008237843,-0.017435651,-0.017826336,-0.055945896,-0.05929461,-0.0073002027,-0.042818926,0.015058063,-0.01727938,-0.02536095,0.027303204,-0.0009815926,0.024222385,-0.040407848,0.04107759,-0.010542877,0.019980676,0.002023183,-0.005943972,-0.02411076,0.0326165,0.02415541,0.033710416,0.0068090577,0.020639258,0.020717395,-0.0014399482,0.013182782,-0.0126135,0.0327951,-0.015214337,-0.015348285,0.03158956,-0.020538796,0.0055979383,-0.020494146,-0.011463773,0.032862075,-0.029937528,0.0037449817,0.01466738,0.009610817,0.007434151,0.008198775,0.015069226,0.03817537,-0.047551777,-0.032393254,-0.017837498,-0.018205857,-0.0044175154,0.021822471,-0.009917783,0.00836621,0.015906405,-0.027124606,0.020482985,-0.018663514,0.019076522,-0.06143779,-0.0048807547,-0.0020566701,-0.01714543,-0.08318213,0.0042863577,-0.045609523,0.0034129005,0.018618865,0.010074057,-0.01654266,-0.020482985,0.057865825,-0.020628095,0.0016199418,0.01097821,-0.036724262,0.032906722,-0.018228183,-0.0008811311,0.008243425,0.024088437,-0.00009069441,-0.03391134,0.023061497,-0.0034156912,0.0066416217,-0.00425287,0.012903722,-0.006250938,0.03714843,0.0040240414,-0.024088437,-0.002471074,0.010861005,0.0017887729,-0.02873199,0.013004184,-0.004400772,-0.011095415,0.011843295,0.0277497,-0.01892025,-0.0019324886,-0.028553393,0.0056844465,0.0012557688,0.023865188,0.026544161,-0.052865077,-0.017859822,0.011100996,-0.051838137,0.024423309,0.0050398186,0.051123742,-0.010453577,-0.019288609,-0.02041601,0.001784587,-0.0040659,-0.0037952124,0.016832883,-0.021230865,-0.03250488,0.01667661,-0.013796713,0.023865188,0.008042501,-0.017536113,0.009225715,-0.031790484,-0.01943372,0.004794246,0.022302454,0.04420306,0.03980508,-0.05643704,0.0064127925,-0.004615648,0.027459478,-0.014656217,-0.024601907,-0.057955123,0.0016297088,-0.01620779,-0.012167004,-0.0013311149,-0.037527952,0.0019366746,-0.008656433,-0.059562508,0.0015557581,0.050945144,-0.027035307,-0.008165288,0.025249325,0.04357797,0.0032956954,-0.026410213,-0.020762045,0.015995704,-0.039492533,-0.033375543,0.0003559756,-0.014656217,0.023083821,-0.027660402,-0.0046937848,0.025427923,-0.0047830837,-0.023016848,-0.014142747,-0.07309133,-0.002877106,0.027258554,-0.034581084,0.015046901,-0.018752813,0.042774275,-0.021041105,-0.02821852,-0.0053188787,-0.030897494,0.030852845,-0.015270148,0.04460491,0.014968764,-0.00896898,0.010727056,-0.0251377,0.0034240629,0.023932163,-0.018339805,0.011653534,0.0033933662,0.010782868,0.03895674,0.018897925,-0.03326392,-0.014834816,0.0055616605,-0.028798964,0.006624878,0.0033766227,-0.02238059,-0.02625394,-0.034536432,0.03732703,-0.018228183,-0.010319629,0.036835887,0.0049309856,0.029491033,-0.028106896,0.01625244,-0.0065299976,0.007512288,0.02415541,0.019578831,0.04130084,0.032705802,0.005025866,-0.0054500364,0.020661583,0.05371342,-0.011396799,0.0054249214,-0.021532249,-0.006602553,-0.03817537,0.008622945,0.00012793145,0.050677247,-0.0066918526,-0.001287163,0.004724481,-0.040095303,0.014779003,0.04420306,-0.024601907,0.022615,-0.005268648,0.010397766,-0.0041691526,0.0054500364,-0.036634963,0.0046491353,0.008282493,0.0017929588,-0.006301169,0.009940107,-0.0022506167,-0.000328244,0.01597338,-0.0213983,-0.0074118264,0.009649886,-0.02092948,-0.008293656,0.01821702,-0.018909087,0.023240095,-0.029982178,-0.0009836856,-0.040340874,0.038041424,0.0017524951,0.031366315,-0.010760543,0.03312997,0.02172201,0.05858022,0.0043254257,0.023552641,-0.021844795,-0.0069820746,0.023396367,0.021264352,0.0164422,0.03638939,-0.01121262,0.0277497,0.026923683,0.020907154,0.01597338,-0.0139195,0.0075681,-0.028598042,-0.00019917889,0.0043840283,-0.0032873238,0.026745085,0.00014223326,0.00064253504,0.026611136,-0.005938391,0.002397123,0.017324029,-0.0019422558,0.013160457,0.0015892452,-0.012222816,-0.010676825,0.05433851,0.007685305,0.0011553073,-0.019936027,0.0029217554,-0.00040986898,-0.0013415797,0.039626483,-0.007623912,0.009275946,-0.007138348,0.003962648,-0.030986793,-0.013941824,0.014700866,-0.054159913,-0.006418374,-0.0068090577,-0.004704947,0.035920568,0.034223884,0.013238594,0.075770296,0.027950622,0.011184714,0.0041551995,0.015627345,0.024512608,-0.0071550915,0.0021292258,0.015024576,0.03596522,0.025338624,-0.035340123,-0.039961353,-0.03402296,-0.00161157,0.015951054,0.01083868,0.020829018,0.022949873,0.014656217,-0.030160775,0.005321669,-0.0027836207,-0.030808194,-0.015939891,0.042216156,0.014276696,-0.011497261,-0.011441449,-0.021074591,0.04625694,-0.01317162,0.016899858,-0.05849092,0.029870553,0.012401414,0.0105484575,0.01864119,-0.0059830407,0.020962967,0.035072226,-0.0053886436,-0.015281311,0.012747449,-0.017725874,-0.012814423,0.005988622,-0.011843295,0.020516472,0.0017524951,-0.000006954692,0.010894492,-0.011698184,-0.013339055,0.012914885,-0.005162605,0.024222385,0.00523237,-0.010487065,0.023753565,0.0058658356,-0.0201816,-0.015348285,-0.009493612,-0.009867552,0.00971686,0.06474186,-0.010353116,-0.012434902,0.007199741,-0.046792734,-0.015158525,0.01083868,0.019333258,0.021264352,-0.008410861,0.004568208,0.019322095,0.0065244166,0.022626163,0.000939036,-0.033509493,0.02050531,-0.013908337,-0.0053188787,-0.022045719,0.011290757,-0.028709665,-0.039626483,0.028285494,0.003817537,-0.005871417,0.03429086,0.006083502,0.015158525,0.0014469248,0.013707414,0.017826336,0.042394754,-0.038331646,0.0020120207,-0.04643554,0.009733603,0.019790916,0.021521086,-0.01962348,0.025338624,-0.023507992,-0.00001031758,-0.0046798317,0.016230114,0.006312331,-0.032683477,-0.009510356,-0.017737037,0.020114625,0.015850592,-0.02676741,0.009867552,0.02013695,-0.0065244166,-0.03830932,-0.0005766072,-0.00705463,0.011809808,-0.04746248,-0.0066918526,-0.0054081776,0.04719458,0.021554574,-0.013495329,0.0116200475,0.008533646,0.026320914,-0.014779003,0.0037226568,-0.012669312,-0.00053509703,-0.0036054517,-0.0025240954,0.026700435,-0.016754746,-0.011698184,-0.03493828,0.008488997,0.015571533,-0.005759793,0.01205538,-0.011279594,0.0033096485,0.00789181,0.028039921,0.016129652,-0.011687022,-0.024825154,0.015437584,-0.027615752,-0.008388535,0.009370826,-0.016587311,-0.017837498,-0.059875056,0.0047579682,0.010927979,-0.0063904678,0.00093833834,-0.01677707,0.013562303,0.008622945,0.009381988,0.05447246,-0.012513039,0.029870553,-0.020427173,-0.011039603,0.040095303,-0.0073839207,-0.020829018,0.0058825794,0.030450998,-0.021309001,0.005787699,-0.010916817,0.016743584,-0.015526883,-0.013819038,-0.017681224,-0.021543412,0.0003437667,0.011391219,-0.015247824,-0.0354071,0.019746266,0.016933344,-0.03942556,0.049918205,-0.0127809355,0.020817855,-0.008338305,-0.008885262,-0.021844795,0.009242458,-0.020404847,-0.011943757,0.00640163,0.020862505,0.0060555963,-0.02728088,-0.011675859,-0.038465593,-0.010224748,0.010520552,-0.017413327,0.032303955,0.003962648,0.00037917242,-0.03761725,0.003811956,0.001583664,-0.029513357,-0.0017399375,0.008193194,-0.005943972,-0.009917783,-0.0053105066,-0.021766659,0.035987545,0.019880215,0.00026475792,0.016408712,-0.010749381,-0.01695567,0.05929461,-0.012233979,0.0139195,-0.004877964,0.05268648,-0.026030691,0.006217451,0.012178167,-0.012914885,-0.00850574,0.008288074,0.022637326,0.02411076,-0.0019952771,-0.002284104,-0.0036277766,-0.023999138,0.034536432,0.045430925,0.016743584,-0.018060746,0.016375225,0.001812493,0.02069507,-0.03714843,-0.012713961,-0.021387137,-0.018775139,0.028620366,0.010810774,0.022023395,-0.021108078,0.07161789,0.008645271,-0.009582912,0.024735855,0.018306319,0.0026706017,0.030584946,-0.0007084629,-0.012077705,-0.014767841,-0.01023033,-0.017536113,0.009867552,0.030651921,-0.016710097,-0.016654285,0.01560502,0.010403347,0.020125788,0.006859288,-0.016174302,-0.03172351,-0.010872168,-0.0045961137,0.02163271,-0.0036221952,-0.04241708,0.0030110546,0.0083550485,-0.019132335,-0.03967113,-0.00020615538,0.03471503,0.0034408064,-0.008321561,0.0028380374,-0.011441449,-0.022905223,-0.03312997,-0.008779219,0.0251377,-0.05246323,0.017056132,-0.013986474,-0.031076092,-0.0076797237,0.0057067717,-0.004247289,-0.011608885,-0.025204675,-0.015113875,-0.038934413,0.0024487493,-0.010085219,0.019534182,0.014957601,0.0045486735,-0.0024864222,0.0027445524,-0.0075234505,0.026566487,-0.036612637,0.002369217,-0.00034830143,-0.0116200475,0.037103783,-0.01205538,0.027213905,0.021320164,-0.018585378,-0.002994311,-0.025070727,-0.03203606,-0.02821852,0.0026092085,0.028999887,-0.0005996296,0.027392503,-0.020036489,-0.022001069,0.010029407,0.0022729416,0.0007876461,-0.03185746,0.0064965105,-0.017446814,-0.02971428,0.009917783,0.03330857,-0.0058658356,-0.0072164848,0.0033766227,-0.015292473,-0.029781254,0.011340988,-0.007953202,-0.030116126,0.032125358,0.009164321,-0.01256885,-0.00882945,-0.01999184,-0.0012501876,0.030562622,-0.04255103,0.018228183,-0.045296974,0.033174623,-0.02364194,-0.0084331855,-0.02135365,0.006128152,-0.019322095,-0.037416328,-0.008427604,-0.025718145,0.008237843,-0.015125037,0.032951374,-0.0035719646,0.0034045288,-0.0006666039,0.02471353,0.013729739,0.023418693,0.021855958,0.03078587,0.022135017,0.023887513,-0.0150134135,0.03984973,0.0068034763,-0.008260168,-0.008226681,-0.042260807,0.007908553,0.035541046,0.014566918,-0.010676825,-0.014399482,0.017201241,-0.006479767,-0.0032901142,-0.0003364414,-0.014031123,-0.003251046,-0.0012906513,-0.034692705,0.009409894,0.021230865,0.012133517,-0.02191177,-0.041412465,-0.010386603,0.005330041,0.0088741,0.023463342,0.04134549,0.013662765,0.0088741,0.009700117,-0.013584628,0.041836634,-0.0063569807,0.00108624,-0.0060723396,0.0000030331394,0.026566487,0.0015501768,-0.008025758,0.002606418,-0.016576149,-0.015895242,0.01676591,-0.020025326,0.016453361,0.0077801854,0.023485668,-0.009287108,-0.018395618,-0.003153375,-0.017681224,-0.0189649,-0.005011913,0.022123856,-0.029022213,-0.029825903,-0.02826317,-0.015325961,0.012088868,0.014488781,-0.012267466,0.0275711,0.02462423,0.0024752598,0.014912952,0.015348285,-0.031232364,0.002144574,0.00084345805,0.023976812,0.030607272,0.029736605,-0.01648685,0.04011763,0.01387485,-0.02587442,-0.0046882033,-0.021186216,-0.015683157,0.011988406,-0.005854673,-0.05420456,0.00836621,-0.015805943,-0.013093483,-0.005433293,0.0056928187,0.03685821,-0.020962967,0.022414077,0.010007082,-0.009130835,0.008996886,0.015069226,-0.0066974335,-0.026521837,-0.026990658,0.033107646,0.004827733,0.0012599546,0.05630309,0.009114091,0.018350968,0.007283459,0.0012173981,0.019679293,0.0076741427,-0.0006547439,-0.002411076,-0.007863903,0.00048068038,0.0072890404,0.0035887081,0.013651602,0.035116877,0.009488031,-0.036612637,0.028017597,-0.010141031,0.00028743153,-0.035764296,-0.0074397326,-0.010336372,0.010358698,-0.0065132543,0.054070614,-0.008120638,-0.005634216,-0.009303851,-0.022157343,0.018752813,0.0010492646,0.011112158,0.012635824,0.022123856,0.00046637858,0.02172201,0.012970696,0.0033152297,0.0048361053,-0.033174623,-0.0021222492,0.026499512,0.02186712,0.030071476,0.045386273,0.013562303,-0.022302454,-0.0006181173,-0.021041105,-0.001036707,0.004760759,-0.04107759,-0.017681224,-0.021041105,-0.022670813,-0.013372542,0.0036026612,-0.017491464,-0.0032315117,-0.0129483715,0.037126105,-0.024825154,0.0146004055,-0.014265534,-0.005960716,0.014779003,-0.022414077,-0.009035954]},{"id":"class-VoiceChannel","type":"class","source":"main","text":"Class: VoiceChannel\nProperties: bitrate: number | null, rtcRegion: string | null, userLimit: number | null","meta":{"url":"/docs/classes/VoiceChannel"},"embedding":[-0.021789547,-0.034361396,0.054063916,-0.014845216,-0.040572785,0.037814926,0.02395111,0.00734186,0.02188893,-0.0063169813,0.0102612125,0.04924388,-0.016261412,0.033367574,0.03505707,-0.032522824,-0.057095073,0.03272159,-0.014124695,0.0036026048,-0.020845417,0.023888996,0.03411294,0.030634563,-0.030013425,0.0039566536,-0.020783303,0.033765104,-0.0112364,-0.033516645,0.02068392,-0.04857305,0.043902088,-0.030982401,-0.029268058,-0.03304458,0.05031224,0.016186876,-0.02503189,-0.023019401,-0.0009550008,-0.015491201,-0.035703056,0.040051028,-0.022621874,0.007068559,-0.014882484,0.018832928,-0.036498114,0.010410286,-0.043430023,0.016857706,-0.008851227,0.0065157455,0.03249798,0.019193187,0.030634563,0.019329838,0.0037144097,-0.03505707,0.020398196,-0.052722257,0.009068626,-0.02118083,0.006751778,0.021404441,-0.0421629,-0.0031476207,0.010814026,-0.0020342295,-0.011727099,-0.014335882,-0.012205376,0.024857972,-0.03997649,0.0026833194,-0.06996507,0.032249525,0.02292002,-0.040697012,-0.034038402,0.01691982,-0.07006445,0.0145594925,0.02444802,-0.0005462139,-0.052175656,-0.032398596,0.044225078,0.0010419602,-0.014112272,-0.023243012,-0.062163565,-0.0068884287,0.03195138,-0.057890132,0.03423717,0.0059070294,0.0021770913,-0.004512573,0.04087093,-0.013329637,-0.033690564,-0.010391652,-0.0060250456,0.0077145435,-0.0012539239,0.041492067,-0.06136851,-0.026385974,-0.050784305,0.052573185,-0.014311037,-0.0016025379,0.003153832,-0.029218366,0.01588873,-0.010192887,0.01231097,-0.012050091,-0.029069293,-0.032696743,0.03495769,0.033317883,0.04641149,-0.03505707,-0.0044131908,0.0029861245,-0.040175255,-0.0035591251,0.061964802,0.022149809,0.02377719,-0.00014771456,0.0052455165,-0.0011312489,-0.013130873,0.004394557,-0.014733411,-0.034883153,-0.008341894,0.03923112,0.07851194,0.0016817332,0.013826548,0.038013693,-0.066933915,0.03706956,-0.010981733,0.024013223,-0.04561643,-0.024112606,-0.053865153,0.004077776,-0.010453765,0.0064225746,-0.0025590917,0.03756647,-0.04198898,-0.03751678,0.026783504,0.0057331105,0.025715144,-0.033914175,0.013665052,-0.02032366,-0.0054908665,0.017851528,-0.06375368,0.010727067,0.02099449,0.0061182166,-0.059529938,-0.05048616,-0.024112606,-0.048076138,0.027727634,-0.01951618,-0.0050374353,-0.0070375022,0.02077088,0.015963266,-0.0029240106,-0.035529137,0.007869828,-0.002017148,-0.035479445,0.00054155535,0.033914175,-0.042088363,-0.0012810987,0.03577759,0.025441844,0.025938755,-0.024361061,0.0013043914,0.00048526464,0.0150315575,-0.022982134,-0.04623757,-0.006034363,-0.0037330438,0.022820638,-0.06241202,-0.006230022,-0.05381546,0.010031391,0.027553715,-0.0382373,0.015304859,0.057641678,0.028721455,0.0021755386,-0.0055529806,-0.070561364,0.028174853,-0.029069293,0.023404509,-0.03483346,-0.03075879,-0.06549287,-0.019851595,-0.004332443,-0.0022795792,0.036995023,0.03026188,-0.014186809,0.032150142,0.021255368,-0.01795091,0.021951044,-0.021242945,-0.048448823,-0.04911965,0.004087093,0.0005846468,0.015329705,0.013379329,-0.034485623,-0.040622473,-0.027677942,-0.036249656,0.006459843,0.03264705,0.0057144766,0.02328028,0.012404141,-0.018969577,-0.0075841043,0.00922391,0.0035001168,0.02175228,-0.00021118717,0.0063138753,0.01705647,0.013267524,-0.0004014109,0.04735562,0.027156185,0.00926739,-0.0026848721,-0.082338154,-0.052672565,-0.011565603,-0.004450459,-0.045492202,0.020360928,-0.011981767,0.029938888,-0.020721188,-0.0004406203,-0.025715144,0.03523099,-0.010602838,0.02668412,0.040150408,0.03411294,-0.010404074,-0.02685804,0.025255501,-0.063008316,0.041839905,-0.048672434,0.008602772,0.021590782,-0.013938353,0.04405116,0.02618721,0.046486024,0.022137385,0.03075879,0.031106628,0.02341693,-0.07493418,0.016721055,0.03985226,0.059877776,-0.037218634,0.020149741,-0.007472299,0.022000734,0.041665986,0.045194056,-0.033069428,-0.027528869,0.08551838,0.04238651,-0.01602538,0.020845417,-0.03366572,0.015478778,0.055405576,-0.045467358,-0.043256104,-0.045864884,-0.007087193,0.030783636,0.003163149,0.015304859,0.012161897,-0.039603807,-0.042088363,0.01759065,0.013590516,0.037044715,-0.012907263,-0.0006475371,-0.014584338,0.0066399733,-0.00090686255,-0.02444802,-0.037442245,0.036249656,0.019627985,0.02049758,-0.026609585,0.0000033301287,0.033168808,-0.030386107,0.011795425,0.065393485,-0.012404141,-0.019950977,0.043454867,0.039131742,0.034137785,-0.003366572,-0.035106763,0.026783504,0.026038136,-0.035156455,-0.0022531808,-0.03093271,-0.026112674,0.011031425,-0.047827683,0.050660077,-0.02202558,-0.059033025,0.03679626,-0.038162764,0.021516247,-0.011043847,-0.010795391,0.0038355319,-0.019466488,-0.049840175,0.017938487,-0.020373352,-0.045939423,0.02735495,-0.054014225,-0.0010908749,0.008043746,0.013988045,-0.024882818,0.0015839038,0.046709634,-0.03287066,0.020621806,0.0113668395,-0.005916347,0.008845015,-0.02041062,0.024659209,-0.00028514152,-0.014422841,0.026385974,-0.019329838,-0.019528603,-0.0116898315,0.036150277,-0.00413989,-0.020783303,0.009764302,0.028398464,-0.0062952414,0.009286025,0.0070250793,0.020646652,0.040274635,0.016969511,-0.031851996,0.039777726,0.021106295,0.022274036,-0.019665252,0.046436332,0.039181434,0.00041266906,0.01087614,-0.035603672,0.008248722,0.04231197,0.06797743,-0.0026584738,-0.030609718,0.0032050759,0.015789347,0.037889462,-0.02041062,0.009360561,-0.032622207,0.013329637,0.0039690766,0.019553447,0.01334206,-0.012286125,-0.025590917,-0.02601329,-0.006183436,0.018124828,0.045144364,0.011205343,-0.0063014524,-0.033740256,-0.023044247,-0.00259636,-0.015590583,0.037641007,-0.023292704,0.026236901,-0.006133745,0.021528669,0.01065253,0.009994122,0.021913774,-0.032398596,0.026783504,-0.01150349,-0.053865153,-0.0023339288,-0.04097031,0.056001868,-0.031976223,-0.042585272,0.048871197,0.04777799,-0.05147998,-0.00009496629,-0.020659074,-0.018013023,0.015453932,0.019466488,0.008751845,0.00072712055,-0.00027601855,0.011286091,-0.00967113,-0.037417397,0.03701987,0.020249123,0.0326719,0.020857839,0.0063853064,-0.020137317,0.043678477,-0.03962865,-0.0033945232,-0.037243478,0.034038402,0.016099917,0.026485356,0.01454707,-0.006751778,0.07766719,0.07329437,0.0073294374,-0.023963533,-0.012932109,0.032075606,-0.017826682,-0.004938053,-0.012994222,0.025889063,-0.0060281516,-0.039827418,0.033417266,0.057144765,-0.02802578,0.0023680914,-0.03831184,0.015913574,-0.008931975,0.044026315,0.06653638,0.003326198,-0.05466021,-0.038113073,-0.008497179,-0.0022438637,0.0061896476,-0.030237034,-0.03329304,-0.010087294,0.0020777092,0.013354483,-0.01920561,-0.043976624,0.01387624,0.002178644,-0.00049846387,0.0048324596,0.023205744,-0.0089878775,-0.0036243447,0.027330104,-0.0720024,0.0237275,-0.030162498,0.014720988,-0.02708165,-0.013466288,0.00095189514,-0.007136884,0.032199834,0.024187142,0.006571648,0.018932309,-0.014224078,-0.03841122,-0.0042051096,-0.01101279,0.023429353,-0.015839038,0.0025094005,0.010230156,0.0010520538,0.019640407,-0.0029643846,0.004590215,-0.03205076,0.03701987,-0.0070375022,0.045517046,-0.005537452,0.045715813,-0.019814325,-0.011578026,0.0007542954,-0.013068759,-0.03438624,0.0019596927,-0.022547336,-0.034137785,-0.041690834,-0.04511952,0.016621673,-0.005292102,0.005202037,-0.010565571,0.027379796,0.0042827516,0.031355083,0.025665453,-0.009584171,-0.008143129,0.006571648,0.014137118,0.009565537,-0.010577993,-0.009254968,0.03401356,0.008422641,-0.022038003,-0.018062714,0.011081115,-0.021690166,-0.023454199,0.022944866,0.031678077,0.040721856,0.026808348,0.005326265,-0.031355083,0.015466355,0.0032081816,0.0036460846,-0.013702321,0.010174253,0.02350389,0.036050893,-0.025864217,0.020522425,0.0061679077,0.014199232,-0.014832794,0.0059349807,-0.03401356,-0.004431825,0.017640341,0.024857972,-0.0047330773,-0.0427095,0.0035063282,-0.008683519,-0.0061088996,-0.029914042,0.010112138,0.021901352,-0.049219035,0.02919352,-0.017801836,0.0329452,-0.019478912,0.038932975,-0.053020403,-0.04777799,0.042287126,0.0022345467,0.012907263,0.018596895,0.0212181,0.005506395,-0.012453832,-0.048597895,0.014696143,-0.005301419,-0.014484956,-0.0491445,0.053467624,0.012292336,-0.010758123,0.007813926,0.0072238436,-0.026137518,-0.0054008015,-0.010838871,-0.0064349975,-0.02959105,-0.01759065,-0.02090753,0.01857205,0.0075282017,-0.017938487,-0.016596828,-0.04427477,0.027802171,0.028945066,0.016944665,-0.03734286,0.013515979,0.01652229,0.024112606,0.0027128235,0.009136951,-0.010397863,0.008435064,-0.043802705,-0.016062649,-0.017342193,0.015068826,-0.004664752,-0.014944598,0.020472733,-0.0068697943,-0.017118584,-0.025168542,0.0061896476,0.01580177,-0.017839106,0.028945066,-0.061219435,-0.03870937,-0.037790082,-0.002799783,0.01459676,-0.022534914,0.008994089,0.015317282,-0.013901086,0.021615628,-0.0028432626,0.0404734,-0.020783303,0.045243748,0.027280414,-0.01911865,0.022187077,-0.016000533,-0.0016662047,-0.0018323594,-0.00045265487,-0.0096276505,-0.00028145348,0.03388933,0.006183436,0.023441777,0.0063231923,0.016547136,0.008608983,0.04723139,-0.033789948,0.010379229,0.0022687092,0.016634095,-0.0329452,0.010863717,0.009900952,0.028845683,0.019727366,0.034734078,-0.014646452,0.010472399,0.042634964,0.008472333,-0.0008517365,0.024361061,-0.03093271,0.041268457,0.0068697943,-0.00855308,-0.004394557,0.0038790114,-0.036845952,0.03026188,-0.027603406,0.0036833528,0.004512573,-0.026361128,0.026634429,0.007627584,0.011397896,0.0059101353,0.026758658,0.015168209,0.01624899,-0.0023758558,-0.01710616,-0.009652496,-0.026361128,0.008360527,-0.032920353,-0.0011855986,0.007863617,-0.008074803,0.026485356,-0.04079639,-0.027827015,-0.0013067207,-0.046709634,-0.0063014524,0.0063231923,0.019690098,-0.03433655,0.011205343,-0.017640341,-0.049045116,0.041889597,0.03003827,-0.069617234,-0.022882752,-0.032522824,-0.017180698,0.013677475,0.0020373352,-0.06191511,-0.045467358,-0.037715543,-0.007416397,0.007056136,-0.0123296045,0.0027951244,-0.008876073,0.013814126,-0.022497645,-0.018982,-0.024249258,-0.009602805,-0.011335782,-0.038759056,0.0063853064,-0.01164014,-0.0001820713,0.010466188,0.012248856,0.015143363,-0.032572515,0.028870529,-0.0023339288,-0.0030761897,-0.003720621,-0.021342328,0.007602738,-0.0011902571,-0.009335715,-0.039554115,0.018037869,0.021367174,-0.0036057103,-0.04141753,-0.0043169144,-0.01208736,0.004167841,0.014770679,0.06012623,0.016957087,0.0032827184,0.024423176,0.0065343794,0.081244946,0.046163034,0.03719379,0.009571748,0.03329304,0.026261747,-0.019764636,0.018323593,0.05962932,0.005382167,0.03853545,0.022584604,0.010751911,-0.011143229,-0.060623143,-0.036995023,-0.032249525,0.0332185,-0.031131474,0.0003839414,0.053169478,0.012627751,0.008062381,-0.034808617,0.0031988646,-0.014472533,-0.0025435633,0.012192953,0.010335749,0.0096276505,0.0074101854,-0.016944665,0.051181834,-0.047082316,0.010435131,-0.0017764568,-0.01289484,0.03756647,0.051678743,0.014807948,-0.021702588,-0.006236233,-0.043355484,-0.013068759,0.010112138,0.0009045333,0.016944665,-0.0017686926,0.013801703,0.0003519139,0.04181506,0.0008633829,0.03344211,-0.009609017,0.023466622,-0.027553715,0.01060905,0.00016761041,-0.021392018,0.015640274,-0.020460311,0.0073977625,0.0060840542,-0.002493872,-0.020534847,0.03577759,-0.023466622,0.039007515,-0.012515945,-0.0078822505,-0.009596594,-0.0023960427,0.0028650025,-0.024833128,-0.008099649,-0.027056804,-0.016683787,0.05157936,-0.0077580228,-0.0039597596,-0.03689564,0.034883153,-0.052722257,0.006652396,0.046510868,0.0396535,-0.0006886876,0.02252249,0.002422441,0.012944532,0.016981933,-0.05182782,-0.0011087327,0.054113608,0.014447687,-0.037318017,0.00037986517,-0.021131141,0.022932442,0.036920488,-0.018112406,-0.032249525,0.015180631,0.007888462,-0.017044047,0.015652696,-0.01664652,0.01127988,-0.009385406,0.038336683,0.009236333,0.032696743,0.01643533,-0.005158557,-0.011397896,-0.037616163,-0.012037669,-0.044796526,0.04002618,0.0008579479,0.000031712043,-0.016087493,0.005599566,-0.009074837,-0.000636279,-0.024733745,0.006136851,0.032001067,-0.012484889,0.009006511,0.032299213,-0.026733812,0.036870796,-0.01320541,0.02126779,0.006217599,-0.028845683,-0.008608983,0.055008046,0.013963199,-0.0013525296,0.032920353,-0.025690299,-0.04579035,-0.018099982,0.0010675822,0.043405175,0.0140750045,-0.019218033,0.026485356,0.00922391,-0.017031625,0.041641142,0.0167459,-0.018770812,0.0025932542,-0.017752146,0.041740526,-0.013913508,0.015056403,-0.018932309,0.03048549,0.019329838,-0.006441209,0.020124895,0.012994222,-0.007994056,-0.0060467855,-0.010857506,0.048150677,0.011087326,-0.00049147604,-0.039057206,0.0013890215,0.017131006,-0.025864217,0.0069691767,0.024025647,0.007962999,0.0006587953,0.023342393,-0.017093739,0.0097891465,-0.040572785,0.010242578,0.0036554015,0.0044131908,0.03172777,0.009341927,-0.063654296,-0.008602772,-0.0015613876,0.0023913842,-0.008745634,-0.00792573,-0.03751678,0.02892022,-0.023329971,-0.004242378,-0.022137385,0.017131006,0.03868452,0.027653096,0.032224678,-0.014099849,-0.008571715,-0.0016040908,0.024895241,-0.0051647685,0.027031958,-0.021093871,0.016621673,0.0070002335,-0.029292904,0.011310937,-0.0040156622,0.028373618,0.014634029,-0.018050293,-0.006987811,-0.023454199,-0.000044280398,0.0027625146,-0.034808617,-0.018298747,0.008329471,0.040125564,-0.0072859577,0.0052113542,0.021690166,0.03567821,-0.0045746868,-0.008770479,-0.016137185,0.0012096678,0.038609985,0.04256043,-0.024187142,0.009640073,0.0108947735,0.024870396,-0.0040933043,-0.013950776,-0.01826148,0.041914444,0.0039380197,0.014745834,0.016211722,-0.017553382,0.031628385,0.0032671897,-0.012677442,-0.025379729,0.015739655,-0.031280547,-0.053070094,0.024100183,-0.02909414,-0.014870062,-0.017478844,-0.04695809,-0.0011242612,-0.009211488,-0.01655956,-0.01790122,-0.0050343294,-0.014037736,0.023168474,0.015988111,-0.017528536,-0.03401356,0.036423575,-0.033243347,-0.0024100184,-0.010683587,0.015764501,0.021640474,-0.017963333,-0.007615161,-0.013242678,-0.015627852,0.0044256137,0.034932844,0.019143496,0.027901553,-0.04087093,0.00014150317,-0.034361396,-0.014584338,0.024771014,-0.008944398,-0.0069940225,-0.01903169,-0.004323126,-0.04606365,-0.005742428,-0.023392085,-0.01275819,0.008298414,-0.007956787,-0.014422841,-0.027901553,0.022758523,0.008726999,-0.016485022,0.03885844,0.011006579,0.005624411,-0.022497645,0.003568442,0.032796126,0.010553148,-0.0100997165,0.0008633829,0.012447621,0.005326265,0.004394557,0.034808617,-0.020311236,-0.0056337286,0.0037765235,0.012391718,0.0145594925,0.0046305894,0.036100585,0.00975809,-0.019242879,0.053020403,0.026137518,0.00016644578,0.01342902,0.012143263,0.020572115,-0.006236233,0.023118785,0.0026103356,0.026261747,0.0007822466,0.017205544,-0.00926739,-0.001694156,-0.015590583,-0.005009484,0.0050156955,-0.01468372,0.029690431,-0.021056604,0.0016677575,-0.0012104441,0.010416497,0.010323326,-0.020919953,-0.028323928,-0.007403974,-0.0043883454,0.015143363,0.009447521,-0.002767173,0.0067890463,0.010466188,0.028845683,-0.06986569,0.021242945,-0.010627684,-0.00604368,0.0063853064,-0.0030715312,0.0032889296,-0.023628118,-0.014112272,-0.011932075,-0.037790082,0.018907463,-0.01839813,-0.02341693,-0.0045187846,-0.007994056,0.035653364,0.004714443,0.028795993,-0.0032206045,-0.008944398,0.01655956,0.039777726,-0.013963199,-0.0005271915,0.008938187,-0.03639873,0.00017624813,-0.007975422,0.033342727,0.008882284,0.003661613,0.0054008015,-0.022100117,-0.00827978,0.0022516279,-0.003630556,-0.008888495,-0.011025213,-0.0041895807,-0.024783436,-0.020932376,-0.0072549004,-0.06017592,-0.013901086,0.0034411086,-0.006366672,0.009658707,-0.045591585,-0.0037237268,-0.04897058,0.047305927,0.016994357,-0.0016770746,0.0069443313,-0.019975822,-0.010366806,0.02515612,0.014174386,-0.0032112873,-0.03689564,0.013988045,0.018994423,0.017876374,-0.02578968,-0.011509701,-0.016845282,-0.01490733,0.01655956,-0.012571848,-0.02668412,-0.006214493,0.000024299627,-0.015739655,-0.013416597,0.018472666,-0.026038136,0.002535799,0.011925864,0.04584004,0.006509534,-0.041665986,-0.020460311,0.003813792,-0.045715813,0.008186609,0.024323793,0.008174186,0.02216223,-0.00091928535,-0.014149541,0.0047951913,0.03500738,0.012807881,0.014099849,-0.01588873,-0.0058480212,-0.024211988,-0.017441576,0.026236901,0.022795793,0.010255001,0.011025213,-0.043256104,-0.02193862,0.009987911,-0.008354316,-0.0044908333,0.016298681,-0.019466488,0.024075339,-0.024559826,0.008354316,0.014472533,0.016075071,-0.02601329,-0.03689564,-0.0056834198,-0.0010023627,0.006056103,0.018050293,-0.00543807,0.013478711,-0.004633695,-0.018249057,0.015366972,0.030783636,-0.00003571548,-0.018783236,-0.012422775,0.010758123,-0.03195138,0.019801904,0.016385641,0.0006851937,0.021826815,-0.0030435799,0.0081928205,-0.026634429,0.011180498,0.050287392,-0.011087326,0.029640742,-0.018273901,-0.020932376,-0.020659074,-0.022994557,-0.0028122056,-0.011292302,0.01790122,-0.005730005,-0.032398596,-0.009907163,0.003689564,0.02852269,0.017255234,0.026708966,0.022174653,0.016733479,0.019168342,0.009913375,-0.029441977,0.0010411838,0.027851861,0.0012430539,-0.0052796793,-0.010795391,0.024224412,0.010428919,0.0064846887,0.031181166,-0.020311236,-0.01795091,0.022447955,-0.0110500585,-0.02802578,0.00476724,-0.006751778,0.0076710638,-0.0076524294,0.0070623476,0.009292236,-0.00019692039,-0.026112674,-0.030609718,-0.01781426,0.021628052,0.013168141,0.01853478,-0.04539282,0.04472199,0.036845952,-0.0112364,-0.017404309,0.011137018,-0.03003827,0.008584137,0.01454707,0.010975522,0.0028013356,0.039777726,-0.0116960425,-0.0074101854,0.00066811236,-0.017180698,-0.010130773,0.013130873,0.0030497913,-0.018348439,-0.013292369,0.009956854,0.022795793,-0.01777699,-0.008081015,0.010130773,-0.025640607,-0.004242378,-0.015404241,0.032622207,-0.034659542,-0.031007247,-0.022770947,-0.015106094,-0.01867143,0.023839306,0.000054592274,-0.021230523,-0.009099683,0.0050529637,-0.018348439,0.04638664,0.022435531,0.0038044748,0.017391885,0.0073977625,0.021988312,-0.006509534,-0.00003991302,-0.03172777,0.020857839,-0.003456637,-0.018236633,0.03478377,-0.019665252,0.01616203,-0.032348905,0.004754817,0.040299483,-0.022410685,-0.008043746,0.0026833194,0.00953448,-0.0351813,-0.008969244,0.044076007,-0.0039411252,-0.009341927,0.012074937,0.012503523,-0.017913641,0.029640742,0.0046989145,-0.013242678,0.011621506,0.036845952,-0.015764501,0.0037547837,0.006857372,-0.0031414093,-0.0025280346,-0.0042548003,0.019752212,-0.0143979965,0.013404174,0.015776925,0.019640407,-0.01275819,0.023019401,-0.02852269,-0.002818417,-0.0031771248,0.008919553,-0.016050225,0.0142365005,0.021416863,0.011447587,-0.010255001,-0.019416798,0.005434964,-0.011708465,0.021565937,-0.009242545,-0.0354546,-0.002493872,0.07533171,0.024112606,0.018149674,-0.008397796,0.03841122,-0.03383964,0.0013238019,-0.008776691,-0.033690564,0.014870062,-0.0023696444,-0.019777058,0.015242745,-0.05157936,0.010087294,-0.028795993,-0.009727033,0.03612543,-0.020311236,-0.018696276,0.015143363,-0.0212181,-0.017453998,0.06052376,-0.025938755,0.014795525,0.008472333,0.041492067,0.024050493,0.006441209,0.024783436,-0.0063325097,0.02193862,0.028497845,-0.019714944,0.027504023,0.0009945984,0.037790082,0.020832993,0.019491334,0.0064660544,0.028671764,-0.00087658205,-0.007900885,-0.02323059,-0.017404309,0.00845991,0.025814526,-0.013155718,-0.008857438,-0.025938755,0.006602705,0.015155786,0.019888863,-0.0065281685,-0.0044597764,0.00667103,0.0010031391,-0.025938755,0.018099982,0.015627852]},{"id":"class-VoiceConnection","type":"class","source":"main","text":"Class: VoiceConnection\nDescription: Voice connection using Discord's UDP-based protocol. Emits `ready`, `error`, `disconnect`.\nProperties: audioPacketQueue: Buffer[], channel: VoiceChannel, client: Client, currentStream: { destroy?: () => void; } | null, guildId: string, heartbeatInterval: NodeJS.Timeout | null, pacingInterval: NodeJS.Timeout | null, playing: boolean, remoteUdpAddress: string, remoteUdpPort: number, secretKey: Uint8Array | null, sequence: number, sessionId: string | null, ssrc: number, timestamp: number, udpSocket: dgram.Socket | null, voiceWs: VoiceWebSocket | null\nMethods: connect(server: GatewayVoiceServerUpdateDispatchData, state: GatewayVoiceStateUpdateDispatchData) -> Promise — Called when we have both server update and state update.; destroy() -> void — Disconnect and remove all listeners.; disconnect() -> void — Disconnect from voice (closes WebSocket and UDP).; getWebSocketConstructor() -> Promise VoiceWebSocket>; play(urlOrStream: string | NodeJS.ReadableStream) -> Promise — Play a direct WebM/Opus URL or stream. Fetches the URL (if string), demuxes with prism-media WebmDemuxer,\nand sends Opus packets to the voice connection. No FFmpeg or encoding; input must be WebM with Opus.; playOpus(stream: NodeJS.ReadableStream) -> void — Play a stream of raw Opus packets\nUses the same queue and 20ms pacing as play(). Use this for local files (MP3 → PCM → Opus) or other Opus sources.; sendAudioFrame(opusPayload: Buffer) -> void; sendVoiceOp(op: number, d: unknown) -> void; setupUDP(remoteAddress: string, remotePort: number, onReady: () => void) -> void; stop() -> void — Stop playback and clear the queue.","meta":{"url":"/docs/classes/VoiceConnection"},"embedding":[-0.034173597,-0.025018707,0.015397919,-0.0031098672,-0.00735536,0.044050626,-0.013452796,-0.0046880958,0.00710494,0.022421326,0.043794382,0.017785644,0.015071791,0.025507899,0.02518177,-0.028163515,-0.06620406,0.05036354,0.032216825,-0.019637588,-0.03547811,0.01136208,0.0073378887,0.026882296,-0.018333074,-0.0065458626,-0.0032409008,0.053671416,-0.022339795,-0.066157475,0.039787665,-0.023131821,0.005293763,-0.0029759216,0.006394446,0.007815434,-0.009830441,0.0024910967,-0.055861134,0.0051132273,0.017296452,-0.04822041,-0.008473515,-0.024133502,-0.0122647565,0.0070758215,-0.06079965,0.007500953,-0.016679138,-0.0010730206,-0.018461196,0.03790078,-0.015409566,0.03995073,0.026090272,0.009475195,-0.00089248526,-0.0032176059,-0.028885657,-0.031145262,-0.0035029682,-0.023201706,-0.032985557,-0.0032409008,0.009585845,0.01676067,-0.031424798,0.02809363,-0.011338785,0.049012437,0.032915674,0.017366337,-0.0364332,0.010674881,-0.016795613,0.027697619,-0.032682724,0.03848315,-0.036130365,-0.034732673,-0.034220185,0.009341249,-0.055069108,-0.023073584,-0.0032962263,0.018589318,-0.112467706,0.031308327,0.028559528,0.038553033,-0.013406206,-0.03692239,-0.07626745,-0.039927434,0.008380335,0.010174041,0.056140672,-0.0077979625,0.012078398,0.017249862,0.051994182,-0.013382912,-0.057398595,-0.060147393,0.022130141,0.004970546,0.0075533665,0.014046815,-0.04999082,0.0041901674,-0.05064308,0.042117152,0.0004953803,0.008601637,0.0046473294,-0.015083438,0.05488275,-0.03815702,0.019462876,-0.023842314,-0.060240574,-0.026462989,0.0066565135,0.008601637,0.05888947,-0.02441304,0.024645988,0.0013110653,-0.021978725,-0.0053345286,0.055814546,0.021699185,0.0264164,-0.035501406,-0.015432862,0.012276405,-0.04253646,0.002549334,-0.03128503,0.00367768,0.03885587,-0.032612838,0.044959128,0.013080078,0.027627734,0.060054213,-0.038366675,0.008112444,-0.059215598,0.034639493,-0.045331847,0.00042549564,-0.026835708,-0.0035903242,-0.031727634,0.01266077,0.0066739847,0.07156189,-0.035547994,-0.032216825,0.015281444,0.019870536,0.01407011,-0.028792478,0.0057975147,-0.00860746,0.028978838,0.016364656,-0.02832658,0.005998433,0.038925752,0.0019975363,-0.022234967,0.031634454,-0.010570054,-0.08204459,-0.007436892,0.0054597384,-0.022479564,-0.059634905,0.032682724,-0.0005663569,-0.0033340803,-0.030586183,-0.05059649,-0.019241575,0.007687312,0.022689218,0.03491903,-0.020138428,0.018204952,0.02204861,-0.0076348986,0.038692802,0.022782398,-0.00016160826,0.030027106,-0.0017107181,0.0036893275,-0.060193982,-0.021140108,-0.014943669,-0.0093121305,-0.049851052,-0.0025624374,-0.03433666,0.032123648,-0.0076116035,0.021338115,-0.001796618,0.031005492,0.010628291,0.008659873,-0.016096765,-0.09979529,-0.01202016,-0.026579464,0.018566024,-0.015130028,-0.025274951,-0.03412701,-0.0034796735,0.01471072,-0.005785867,0.021338115,0.0036602088,0.018833915,-0.04759145,0.02923508,-0.016923733,-0.019194985,-0.054836158,-0.031121965,-0.033824172,0.0040620454,-0.06303596,0.028699297,0.023877257,0.03885587,0.03265943,-0.04759145,-0.063548446,0.015782284,0.01990548,0.04703237,0.01867085,-0.027115246,-0.057258826,0.032869082,0.012521001,0.0382502,0.035128687,0.0015956996,0.0027851947,0.0029569943,-0.01907851,0.017727407,0.008240566,0.0065458626,0.008991825,-0.0009914886,-0.021244936,-0.014827195,0.005031695,-0.047335207,-0.0382502,0.057072468,0.0027313253,-0.00488319,0.018857209,-0.01111166,0.019206632,0.05628044,-0.012951956,-0.035454813,-0.014536008,0.004848248,0.02081398,0.04849995,0.0027225898,-0.013382912,-0.023329828,-0.02431986,0.036689445,0.009294659,0.07510271,-0.028000452,0.019462876,-0.008933588,0.040556394,-0.02427327,0.0065283915,0.03580424,-0.021093518,0.07417092,0.033218507,0.06802107,-0.0073029464,0.010290516,-0.012288052,0.06769493,0.009160713,-0.0025202155,0.008741406,0.001003864,0.050084002,0.040812638,0.00010082318,0.018041888,-0.012124987,0.014734015,0.021536121,-0.039694484,0.015456156,-0.00042039988,0.013173257,0.012788892,0.00965573,-0.02126823,-0.018833915,0.003782507,-0.02272416,0.017704112,0.012288052,0.0382502,0.009929445,-0.008193975,-0.009189832,-0.030399825,0.016189946,0.023737488,-0.054463442,-0.0048220414,0.03147139,0.03743488,0.010441932,-0.062290523,0.031774223,0.0053345286,0.0150484955,0.017494459,-0.01202016,-0.028792478,0.037015572,0.011461084,0.03429007,-0.020697506,0.009172361,0.010430285,0.0245994,-0.031937286,-0.00068683515,-0.029537914,-0.021151755,0.044749472,-0.029747568,0.043072242,-0.009702319,-0.021466237,0.018507786,-0.016283125,-0.0027022066,-0.052693028,0.020010306,-0.018519433,0.008351216,-0.060892828,-0.0012499162,-0.023155116,-0.055395238,0.03333498,0.035850827,-0.03920529,0.01798365,-0.03314862,-0.008741406,-0.049944233,0.013289732,-0.025624374,0.074729994,0.023795726,0.050922617,0.025577784,0.00004035657,-0.02377243,-0.02532154,-0.036153663,0.039018933,0.008042559,-0.014990258,0.046985783,-0.010738942,-0.055535007,-0.01599194,-0.017669171,-0.009923621,0.029817453,-0.016248181,0.0084618665,-0.004073693,0.053718004,0.02404032,-0.03929847,0.036596265,-0.03366111,0.028023746,0.064247295,0.0131150205,0.02932826,0.018996978,0.04335178,-0.02618345,0.027045362,0.008683168,0.046613064,-0.019160043,-0.0063187378,-0.0646666,0.040463217,0.060287163,0.024855642,0.013010194,-0.0332418,-0.0016655843,0.020161724,0.0751493,0.017773997,0.0060508465,0.040090498,-0.035874125,-0.047661334,-0.008572518,0.08404794,0.037551355,0.037015572,-0.05628044,-0.026230041,0.0043561435,-0.02541472,0.0037883306,-0.02176907,-0.00765237,-0.030819133,0.0138371615,-0.01602688,0.027557848,0.025577784,-0.04882608,0.011431965,0.010447755,0.011146602,0.0014937845,-0.02636981,0.010488522,-0.0047579804,-0.023073584,0.01366245,0.014629188,-0.037458174,-0.065225676,-0.020511147,-0.026462989,-0.018600965,0.023784077,-0.027744208,0.0065749814,0.013464443,0.008240566,-0.010389519,0.03953142,0.030027106,-0.023760783,-0.0013511033,0.0034796735,-0.0064526834,0.0024736256,0.054137312,0.022712512,0.02090716,0.008945236,0.028582824,0.012847129,-0.04034674,-0.007378655,0.010337105,0.013429501,0.006720574,-0.00082114467,-0.046846014,0.0074077733,-0.021617653,-0.022968756,0.009661553,-0.010261397,0.0036019715,0.0048511596,-0.05884288,-0.021070223,0.05073626,-0.023970436,0.018566024,-0.020779038,-0.008042559,0.03442984,0.063082546,0.02190884,0.023213353,-0.024645988,-0.008927764,-0.0020368465,0.010966067,0.0066739847,0.0010417182,-0.026975477,0.009713967,0.025065295,0.011292196,-0.000625686,-0.0207208,0.0005787323,-0.032542955,-0.0064177406,0.0066739847,0.028047042,0.0024357715,-0.0006831953,0.005209319,-0.031681042,0.014011873,0.0057276296,-0.0031855756,-0.002234853,-0.021932134,-0.017750703,-0.033684403,0.031005492,-0.014920373,-0.034546316,-0.0022727072,-0.009521784,-0.019590998,0.015316387,-0.007186472,-0.02618345,0.03647979,0.012905367,0.0054568266,0.024785757,-0.00076363544,0.013487739,-0.0065283915,-0.0036369138,-0.022386385,-0.0066565135,0.053065747,0.029025426,0.0025784525,-0.014862137,-0.02048785,-0.04717214,0.018437902,-0.017296452,-0.0030166877,-0.0010526376,-0.014058463,-0.01407011,-0.019649236,0.008269684,-0.018962037,0.029072016,-0.021279877,0.00043896298,-0.0015796844,-0.013860457,-0.008444396,-0.009411134,0.007827082,-0.0069302283,-0.024669284,0.020103486,-0.017051855,-0.017179977,0.01580558,0.009515961,-0.025484605,-0.008630754,0.010075037,-0.035711057,0.014419534,0.047568154,0.024576103,0.03228671,-0.0031156908,0.024086911,-0.025834028,-0.019975364,0.024878938,0.008939412,0.005471386,-0.0015127116,-0.028769182,0.040230267,-0.010768061,0.0108204745,0.016096765,-0.019113453,0.028745888,-0.025857322,-0.003698063,0.027045362,0.00047936506,0.038063843,-0.031005492,-0.027557848,0.0068079303,0.008409454,-0.030190172,0.0056548333,0.011239782,-0.029770862,-0.0040212795,-0.0122647565,-0.028186811,0.035687763,0.008735582,0.03419689,-0.034080416,-0.029141901,0.00502296,-0.013930341,-0.009690672,-0.009277188,0.011874568,0.005119051,-0.012800539,-0.07002442,0.035082098,-0.017669171,0.026695939,-0.044143807,0.012917014,0.008176505,0.025740847,0.029887337,0.012905367,0.019160043,-0.047987465,-0.027744208,-0.026020387,-0.022526154,-0.012066751,-0.01024975,0.05488275,0.011298019,0.013417854,-0.04859313,-0.038692802,0.002737149,-0.017016914,0.018635908,-0.012322994,-0.000397105,0.016329715,0.02222332,-0.015945349,0.004455147,0.0017587638,0.054044135,-0.026882296,-0.004513384,-0.024645988,0.04134842,0.032869082,0.006493449,0.045564797,-0.030260056,-0.00985956,-0.03338157,0.022200026,0.026742527,0.0031156908,0.006871991,-0.034173597,0.0001087398,0.017727407,-0.002217382,-0.0027910185,-0.039647896,-0.0033806702,-0.004865719,0.01026722,0.023294885,0.017226567,0.011903686,-0.0032874907,0.033311684,0.03543152,0.0012062383,0.008595812,-0.063315496,0.022642627,-0.036293432,-0.024296565,-0.034895737,-0.034010533,-0.016376304,0.0040678694,-0.018927094,-0.03529175,-0.007576661,-0.037854187,0.021594359,-0.05096921,0.010278868,-0.0032729313,-0.010261397,-0.017436221,-0.042792704,0.010791356,-0.011618324,0.020744095,0.034732673,-0.0029147724,-0.011694033,-0.023166763,-0.0264164,-0.018030241,0.013266437,-0.033940647,0.038366675,-0.014233175,0.014512713,0.017506106,0.013010194,-0.029933928,0.02012678,0.00547721,0.009772204,-0.016341362,-0.018076831,0.0036689444,-0.016644195,0.01366245,-0.027091952,-0.0105234645,-0.024506219,0.018065182,0.0049821935,-0.031774223,0.019392991,-0.021932134,0.0075242477,-0.05902924,0.003112779,-0.0051918477,-0.03161116,-0.003634002,0.0155376885,0.0014471947,0.020324787,-0.023923846,-0.0069942893,-0.0074893055,0.030539595,0.001693247,0.018076831,-0.024902232,-0.022095198,0.024576103,0.0010002241,-0.009824618,0.00058018824,-0.053298697,0.031215146,0.010803003,-0.020301493,-0.026812412,-0.030516298,-0.0037708594,-0.036759328,-0.0327992,-0.009504313,-0.0011618324,-0.035944007,0.008601637,-0.008613284,0.019742414,-0.008869528,-0.038366675,-0.01635301,-0.057398595,-0.003555382,-0.023655955,-0.014419534,-0.009201479,0.007186472,0.004009632,-0.10855416,-0.003363199,0.0038989813,-0.0070117605,-0.008636579,-0.0030574535,0.017680818,0.05488275,0.022363089,-0.023923846,0.031657748,-0.01530474,0.010948596,-0.043095537,0.02436645,-0.016795613,-0.015456156,0.021023633,0.023784077,-0.007838729,0.025880618,0.0077571967,-0.022013666,0.046123873,0.031121965,0.020872217,0.010220631,0.012742302,-0.00056016917,0.010960244,0.013778924,0.008490985,-0.013709039,0.015514393,0.01798365,0.018845562,-0.0023498714,-0.006889462,-0.02090716,-0.033777583,0.01375563,-0.02751126,-0.038180318,-0.02522836,0.011199016,-0.01004592,-0.020755742,0.022363089,-0.021943782,-0.016318066,-0.025857322,-0.027255015,-0.009294659,-0.02026655,0.027814092,0.026975477,-0.036945686,0.045005716,-0.016318066,-0.01115825,0.028047042,0.033265095,0.01716833,-0.02613686,0.0054830336,-0.017296452,-0.013615861,0.004801658,0.01854273,-0.01461754,0.021419646,0.0005914717,0.045564797,-0.050410133,-0.008659873,0.02946803,0.033125326,0.010977714,0.014349649,-0.005159817,0.010762237,-0.021419646,-0.0020310227,-0.0028973012,0.033078738,-0.014105053,0.0025857321,0.005156905,0.010383695,0.023108525,0.03037653,-0.04076605,0.0014122524,-0.019800652,-0.022619333,-0.019695826,-0.012847129,-0.0071922955,0.013743982,-0.019579351,0.032170236,-0.033591226,-0.0111815445,-0.03939165,0.008304627,0.012975251,-0.0071922955,0.020685857,0.0021358498,-0.014046815,-0.010593349,-0.04181432,-0.007477658,0.02841976,-0.05478957,-0.024622694,0.020709153,0.010581701,-0.04335178,0.0073437123,-0.044563115,0.007838729,-0.008793819,-0.0052500847,-0.0473585,0.038553033,-0.01061082,-0.028606119,-0.0127539495,-0.004734685,-0.014116701,-0.0017325571,0.009772204,-0.015001906,-0.014955316,0.02532154,-0.0019873448,0.018880505,-0.008141562,0.018006947,-0.011793035,0.014536008,-0.000023226637,-0.010896183,-0.017587638,0.015025201,0.013126668,0.032636132,0.013918694,0.041022293,0.046939194,-0.027255015,-0.005517976,-0.018193305,-0.002277075,0.051994182,-0.0110010095,-0.0087588765,0.01621324,-0.023434654,0.043514844,0.031028787,0.034523018,-0.05082944,-0.00055834925,-0.024529513,-0.006790459,-0.010599173,-0.027161837,-0.00543062,-0.002782283,0.022887224,-0.004446411,0.02222332,-0.005069549,0.040882524,0.021792365,0.0011865832,0.012835481,0.0069244048,0.014477771,-0.0131150205,0.011961923,0.0034767615,0.0746834,-0.0036136191,0.019649236,-0.0014981523,-0.025764143,-0.024529513,0.029677683,0.016562663,0.044749472,-0.023923846,-0.040789343,-0.05669975,-0.0010817562,0.01416329,-0.009591669,0.021116814,0.0216293,-0.006079965,-0.0032263417,0.015735695,-0.008578341,0.012847129,-0.02923508,0.042699523,0.033311684,0.0029700978,0.0017019826,0.009772204,-0.024389744,0.010704,-0.014722368,0.008525928,-0.0346162,-0.016644195,-0.014477771,-0.011565911,0.0049909293,-0.014139995,-0.007850376,0.041697845,0.007233062,-0.0140817575,0.021664243,-0.009020944,-0.049711283,0.022095198,0.0044114687,-0.032542955,-0.0007337889,-0.0029628181,0.03671274,-0.015246502,0.022782398,0.00355247,0.024902232,0.025042001,0.028349875,-0.0145709505,0.01694703,-0.011414493,0.03470938,-0.014803899,0.010744765,0.039018933,0.020348081,0.031308327,-0.003992161,0.012684065,0.0070699975,0.017843882,-0.009096652,0.008258036,-0.004717214,0.035128687,0.014536008,0.007169001,-0.021990372,0.005721806,-0.012451116,-0.023492891,0.009690672,0.017960357,-0.053298697,0.028349875,0.0137206875,0.037038866,0.0068428726,0.017051855,0.036596265,0.0013205288,0.020185018,-0.030353235,0.002674544,-0.04030015,-0.009277188,0.03501221,-0.043281898,-0.013511034,-0.030260056,0.0030079521,0.015491098,-0.025205066,-0.03515198,-0.032240123,-0.0043299366,0.018426254,-0.008368688,0.013639155,-0.036689445,-0.022165082,0.043747794,-0.018996978,-0.002591556,0.010837945,0.022980403,-0.0016379216,-0.031774223,0.015584278,-0.019462876,-0.009661553,0.014431181,-0.020569384,0.016644195,-0.0051947595,-0.008840409,0.029677683,-0.026486285,-0.0026570729,0.0029555385,0.025577784,-0.003997985,0.034895737,-0.024692578,-0.021873897,-0.017447868,0.008671521,-0.027837388,-0.038226906,0.008205623,-0.010651587,-0.0048395125,0.0024546986,0.05013059,0.0004968362,0.075242475,0.0022188378,0.008852056,-0.05502252,0.023492891,-0.0029409793,0.01621324,0.028000452,-0.039904136,0.023644308,-0.0093121305,-0.017179977,-0.015712399,-0.024110205,-0.0050287833,-0.009743086,-0.0076581934,0.0123928785,0.009125771,-0.016248181,0.009929445,0.029910631,0.05059649,0.01835637,0.0010242469,0.014384591,0.020848922,0.014396239,-0.022526154,-0.0069302283,-0.0182166,-0.008555046,-0.01120484,0.025694259,-0.010447755,-0.0138488095,-0.0013751262,-0.02048785,0.0048133056,0.00200336,0.010896183,-0.003133162,-0.0047579804,0.0091083,0.011210663,0.025251655,-0.022665923,-0.047428384,-0.008741406,-0.002237765,0.0437245,0.035641175,0.012847129,0.012672418,-0.011950276,0.0055005047,-0.058050852,0.017937062,-0.0027429727,-0.0025129358,-0.01561922,0.009178185,0.0021868073,-0.01780894,-0.0014617541,-0.014407886,0.025717553,0.0050084004,0.023516186,-0.01762258,-0.005814986,-0.002528951,0.036316726,0.015188265,0.022200026,-0.026486285,0.005928548,-0.018461196,0.026230041,0.02946803,-0.014384591,-0.011024305,-0.04153478,0.0056315386,0.0014726735,0.030050403,-0.019008625,0.049524926,0.0064002695,0.001796618,-0.0010904918,0.032869082,-0.009807146,-0.0013299923,0.023807373,-0.018414607,-0.03242648,-0.008723934,-0.008042559,-0.038949046,0.0031593689,0.019882184,-0.0093121305,-0.0047579804,-0.009807146,0.04635682,-0.039321765,0.05227372,0.0060275514,0.005660657,-0.0026075712,0.010238102,0.010540935,0.012474411,-0.0025609813,0.0003992889,-0.03538493,0.00017725951,-0.01757599,0.02381902,-0.039787665,-0.033591226,-0.00019782453,-0.005366559,0.018298132,-0.007203943,-0.0050637256,-0.014873784,0.03060948,0.0053083217,-0.007867848,0.014605893,0.0110534225,-0.0048220414,0.009626611,0.010634115,0.025507899,-0.03123844,0.020033602,0.0019130924,-0.018006947,0.004548326,0.01521156,0.012602533,0.0382502,-0.023993732,-0.016655842,0.041325126,0.017051855,0.0067962827,0.012684065,0.014349649,-0.022153435,-0.004219286,-0.0070525263,0.010208983,-0.0019422111,0.042210333,0.019789005,-0.021780718,-0.041907497,-0.030982196,-0.005451003,0.030632773,-0.017972004,0.010337105,0.018798972,-0.013813867,0.025391424,0.0034185243,0.02951462,0.028000452,-0.0068195774,-0.023283238,-0.0039572185,-0.018006947,-0.0043357606,-0.026090272,0.02186225,-0.026230041,-0.023690898,-0.033707697,-0.01853108,-0.02363266,-0.027674323,0.007017584,-0.021524474,0.0028157693,-0.03247307,-0.029864043,0.01516497,-0.016702432,-0.017937062,-0.022922168,-0.030889018,-0.008135739,0.03228671,-0.053065747,-0.0033923176,-0.018449549,-0.0182166,-0.011676561,-0.043375075,0.011035952,0.0076290746,0.0076348986,-0.002278531,-0.014139995,-0.022735808,-0.021757422,0.008817114,-0.006184792,-0.0052588205,0.007669841,-0.027441375,0.014139995,0.022782398,0.0023091054,0.031168556,0.01420988,-0.012241462,-0.014594246,-0.032240123,-0.00946937,-0.02613686,0.023923846,0.03424348,-0.00055616535,-0.012218167,0.0387161,0.008263861,-0.017680818,-0.00041312023,-0.0016248182,0.042233627,-0.022549449,0.01266077,0.028163515,-0.006266324,-0.020406319,-0.023970436,0.03501221,0.02381902,0.006708927,0.011950276,-0.046426706,0.012124987,0.0055325353,-0.03524516,-0.026695939,0.0040824288,-0.026975477,0.0093645435,0.017249862,0.018251542,-0.01721492,-0.0035233514,-0.0033399041,0.019987011,-0.0057975147,-0.02148953,-0.0013285364,0.008025087,-0.008391982,-0.018624261,0.022141788,-0.0028128573,-0.0117872115,0.003654385,0.017692465,-0.032356594,-0.028186811,-0.014268117,0.026206745,0.016772317,0.014466124,-0.047940873,0.018600965,0.0048511596,-0.07221414,0.017005267,-0.025531193,0.0073437123,0.030958902,-0.013580918,-0.0040503982,0.030958902,-0.0032001347,-0.01215993,0.026882296,-0.013010194,0.016120061,-0.004932692,0.031005492,-0.028186811,0.011327138,-0.03624684,-0.014652482,0.057817906,-0.014501066,-0.00013030577,-0.028699297,0.0029147724,0.031937286,0.015654163,0.033917353,0.00075489987,-0.018100126,-0.019101806,-0.004650241,0.014594246,-0.005247173,-0.020522794,0.0063595036,-0.026859002,-0.022013666,0.023096878,0.011682385,-0.009888679,0.045238666,0.019113453,-0.002571173,-0.01475731,-0.010488522,0.016457837,0.032007173,0.018111773,0.00543062,-0.012602533,0.00063223776,-0.019229928,0.006662337,0.01031381,0.0058033383,-0.017016914,-0.005934372,0.030027106,0.014966964,-0.0058120736,-0.02172248,0.0019989924,-0.008467691,-0.00054997765,0.016877145,0.014407886,-0.014512713,0.014244822,0.01812342,-0.020010306,-0.0061323782,0.023353122,0.0069826418,-0.0028987573,0.009923621,0.012369584,0.0072621806,0.01854273,-0.00765237,-0.028769182,0.014873784,0.010581701,-0.0029700978,0.036409903,-0.031774223,0.010546759,-0.015467804,-0.0013511033,0.0058790464,-0.021373058,-0.014221528,0.000396741,-0.041651253,-0.0063129137,0.022596039,-0.012998546,0.017878825,0.014116701,-0.018239895,-0.008397806,0.0067788116,-0.014233175,0.0058120736,-0.0078037865,-0.015316387,-0.012427821,-0.00031611888,-0.02655617,0.031657748,0.0062605003,-0.0031244264,0.020208312,0.015922055,0.016073471,-0.014407886,0.00435032,-0.01215993,-0.01712174,-0.01921828,-0.025298245,-0.021827307,-0.028815772,0.013231494,-0.002610483,0.025973797,0.028443055,0.010086685,-0.0062779714,0.015863817,-0.0071631772,-0.017156683,-0.014547655]},{"id":"class-VoiceManager","type":"class","source":"main","text":"Class: VoiceManager\nDescription: Manages voice connections. Use `getVoiceManager(client)` to obtain an instance.\nProperties: client: Client, connectionIds: Map, connections: Collection, pending: Map void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData | undefined; state?: GatewayVoiceStateUpdateDispatchData | undefined; }>, shardId: number, voiceStates: VoiceStateMap\nMethods: getConnection(channelOrGuildId: string) -> VoiceConnection | LiveKitRtcConnection | undefined — Get the active voice connection for a channel or guild.; getVoiceChannelId(guildId: string, userId: string) -> string | null — Get the voice channel ID the user is currently in, or null if not in voice.; handleVoiceServerUpdate(data: GatewayVoiceServerUpdateDispatchData) -> void; handleVoiceStatesSync(data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }) -> void; handleVoiceStateUpdate(data: GatewayVoiceStateUpdateDispatchData) -> void; join(channel: VoiceChannel) -> Promise — Join a voice channel. Resolves when the connection is ready.\nSupports multiple connections per guild (Fluxer multi-channel).; leave(guildId: string) -> void — Leave all voice channels in a guild.\nWith multi-channel support, disconnects from every channel in the guild.; leaveChannel(channelId: string) -> void — Leave a specific voice channel by channel ID.; registerConnection(channelId: string, conn: VoiceConnection | LiveKitRtcConnection) -> void; storeConnectionId(channelId: string, connectionId: string | null | undefined) -> void; tryCompletePending(channelId: string, pending: { channel: VoiceChannel; resolve: (c: VoiceConnection | LiveKitRtcConnection) => void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData; state?: GatewayVoiceStateUpdateDispatchData; }) -> void; updateVoiceState(channelId: string, partial: { self_stream?: boolean; self_video?: boolean; self_mute?: boolean; self_deaf?: boolean; }) -> void — Update voice state (e.g. self_stream, self_video) while in a channel.\nSends a VoiceStateUpdate to the gateway so the server and clients see the change.\nRequires connection_id (from VoiceServerUpdate); without it, the gateway would treat\nthe update as a new join and trigger a new VoiceServerUpdate, causing connection loops.; uploadStreamPreview(channelId: string, conn: VoiceConnection | LiveKitRtcConnection) -> Promise — Upload a placeholder stream preview so the preview URL returns 200 instead of 404.","meta":{"url":"/docs/classes/VoiceManager"},"embedding":[-0.040698268,0.0027246997,0.0115052685,-0.002071125,-0.00786056,0.021208791,-0.017110702,-0.03217236,-0.009626978,0.024588536,0.022433508,0.0008265364,-0.00256425,0.03587006,0.006995015,-0.014213776,-0.09646997,0.039897494,0.018747583,0.0047045597,-0.043689404,0.035163492,0.023081195,0.048941553,-0.035563882,0.034221403,-0.013083269,0.031748418,-0.02798006,-0.06038794,0.08752012,-0.022916328,0.016133284,-0.010445418,-0.01041009,0.048564717,-0.007842896,0.0008361045,-0.052144658,0.011617142,-0.00030341907,-0.011022448,-0.010145127,0.011646582,-0.0052639255,0.0114169475,-0.040015254,0.015250075,-0.02203312,-0.0040715933,-0.050872836,-0.0029469738,-0.032337222,0.03657663,0.042299822,-0.010822253,0.010003814,-0.025954567,-0.02892215,-0.018936,0.002277207,-0.014178447,-0.023328492,0.026661135,-0.0021329497,0.03820173,-0.033962328,0.034056537,-0.008060753,0.019077314,0.008508246,0.005102004,-0.024659194,-0.0008751129,-0.039120268,0.02724994,-0.013766283,0.05007206,-0.0035122277,-0.036859255,-0.05073152,-0.01022756,-0.039120268,-0.013177478,0.005628985,0.016604329,-0.079229735,-0.0021152855,0.03229012,0.022610148,-0.00029035495,0.0001481215,-0.06359105,-0.010298217,0.032007493,-0.010180456,0.06712388,-0.014484627,-0.020337358,0.0054847277,0.067924656,-0.010610283,-0.061801076,-0.040227223,0.0610003,-0.0010583787,-0.020561105,0.013801612,-0.06919648,0.00158536,-0.064438924,0.026072329,-0.011522933,0.026425611,-0.015579806,-0.0389554,0.042441133,-0.02245706,0.011157873,-0.02124412,-0.04912997,-0.014048911,0.03681215,0.0025156734,0.058456656,0.010339432,0.028827941,0.019371716,-0.05219176,-0.0032119367,0.03177197,0.0053699105,0.019748552,-0.012918403,-0.027697433,0.021903582,-0.026849553,0.00965053,-0.04766973,-0.025295105,0.0035505,-0.009980261,0.039497104,0.0043395,0.032478537,0.045785554,-0.034574687,0.048423402,-0.046562776,0.0055023916,-0.05492382,0.0043689404,-0.04246469,-0.01689873,-0.021138133,0.018488508,-0.008584791,0.068395704,-0.052474387,-0.048423402,0.018158777,0.002866013,0.042182058,-0.0071657686,-0.019689672,-0.024894716,-0.019701447,0.034786656,-0.036411762,-0.023163626,0.03657663,-0.01483791,-0.037824895,0.011193202,0.014731925,-0.083657555,-0.0076250373,-0.006794821,-0.036341105,-0.04197009,0.043194804,0.008908634,-0.016062627,-0.044254657,-0.040651165,0.011181425,-0.012941956,0.04387782,0.027720986,-0.03365615,-0.006329664,0.042606,0.015485597,0.06773624,0.02009006,0.014720149,0.022115553,-0.023446254,0.008337492,-0.05553618,-0.0032914253,-0.059916895,-0.0018223545,-0.060340837,-0.006836037,-0.048988655,0.027509015,0.043524537,0.009968485,-0.006135358,0.033821017,-0.006694724,0.008943963,0.008172627,-0.0893572,0.030688567,-0.03304379,-0.023834866,-0.05417015,-0.003267873,-0.011087216,0.02451788,0.036859255,-0.026731791,0.006500418,0.017322673,0.028780837,-0.06368525,0.04703382,-0.02339915,-0.012718209,-0.015815329,-0.031748418,-0.020525776,-0.0060470374,-0.08332782,0.022197984,0.03587006,0.05647827,0.0032708172,0.00008767689,-0.023929074,0.021797597,0.013000836,0.039355792,0.008561239,-0.0043689404,-0.058880597,0.038625672,0.02251594,0.043783613,0.03398588,0.0048841457,0.025224447,0.006470978,0.036553074,0.009208925,0.0134247765,0.042323373,-0.005949884,-0.010945903,0.0039744405,-0.016592553,0.013730955,-0.03198394,-0.024235254,0.048140775,0.024894716,-0.019984074,0.008508246,-0.014331537,-0.0044572614,0.050354686,-0.027838746,-0.03219591,-0.019230403,0.012812418,0.014366866,0.034904417,0.021456089,-0.03577585,-0.0064886417,-0.010309992,0.054970924,0.0066476194,0.04321836,-0.022009566,0.03134803,-0.0035976046,0.042888626,0.004148138,0.023375597,0.007318858,-0.045714896,0.078428954,0.053086746,0.060670566,-0.012824194,0.0076485896,0.06439182,0.03881409,0.010292328,-0.051579405,-0.0035769963,0.00006371065,0.05671379,0.0020240205,-0.0013196614,0.014649493,-0.04164036,-0.01083403,0.0023405037,-0.0069184704,-0.0032884814,-0.047080927,0.010451306,0.014390418,-0.0051520523,0.000079672805,0.023587568,-0.0075720446,-0.030947642,-0.0033944664,0.013083269,-0.014449298,-0.054641195,-0.023022313,-0.04597397,-0.044984777,0.037094776,0.051155463,-0.07937104,0.0004633167,0.029134119,0.008090194,0.021185238,-0.051909134,0.028710179,0.0019062593,0.0016604328,-0.005417015,-0.002863069,-0.029887792,0.045149643,0.031183165,0.02977003,-0.018865343,-0.015544478,-0.027720986,0.017440433,-0.013130373,0.020584656,-0.02534221,-0.045903314,-0.020466896,-0.0058880597,0.02188003,-0.017487537,-0.035563882,0.007501388,-0.053604897,-0.0060588135,-0.04178167,0.0096740825,-0.020160716,0.016945835,-0.033067342,0.03177197,-0.018217657,-0.034315612,0.06019952,-0.009850724,0.0012026362,0.0384137,-0.011964537,-0.049930748,-0.025248,-0.005664313,-0.020678865,0.051767822,0.028568866,0.050967045,0.028898597,0.0018120504,-0.019383492,-0.012600448,-0.053604897,0.010362986,-0.019913418,0.021762269,0.03879054,-0.01504988,-0.021456089,-0.01138162,-0.019948747,-0.0043718843,0.02494182,0.012906627,0.014249104,0.017499313,0.087567225,0.06133003,-0.061801076,0.025177343,0.0015632799,-0.0001687297,0.007995985,0.028027164,0.04637436,0.011399284,0.045879763,-0.022645477,0.02491827,0.04126352,0.04847051,-0.042982835,-0.0038861195,-0.034692448,0.046656985,0.041805223,0.0028365727,-0.01724024,0.019548358,0.0008567127,0.012777089,0.017746612,0.019972298,-0.00025171455,0.018182328,-0.037000567,-0.067170985,0.015108761,0.05869218,0.02266903,0.012635776,-0.028592417,0.0034268508,-0.000054418553,-0.023834866,0.003164832,-0.025507074,-0.0115641495,-0.03019397,0.036411762,0.019548358,0.03881409,0.00057445385,-0.047952358,-0.017016493,0.012364926,-0.030617911,0.00033764343,0.010304105,0.051202565,-0.03914382,-0.028686628,0.023434477,0.031088956,-0.051202565,-0.04927128,-0.036058478,-0.003365026,-0.009703523,0.03311445,-0.006600515,0.015956642,-0.023375597,0.007224649,-0.041569702,0.029793583,0.01830009,-0.017675955,0.0006543106,0.040698268,0.013730955,0.012953731,0.007630925,0.0061530224,0.024706298,0.0008971931,0.015191194,0.042370476,-0.051720716,0.007489612,0.034786656,0.031112507,0.042346925,0.012871299,-0.018676925,-0.017887926,0.010039141,-0.013071492,0.014461075,-0.010839918,0.03914382,-0.014802583,-0.049506806,-0.02282212,0.020254925,-0.026684687,-0.014720149,-0.015591582,0.016757417,0.057608776,0.030311732,0.04705737,-0.004819377,-0.029251881,-0.030735672,-0.006900806,-0.027226388,0.02215088,-0.023705328,-0.012341374,0.016368806,0.00094356155,0.005949884,-0.009703523,-0.0031736642,0.010739821,-0.03462179,-0.0027188116,0.025012478,0.01683985,-0.0042894515,0.016180389,0.0055818805,0.0059322203,0.020855507,-0.0058380114,0.015497373,-0.012930179,-0.028686628,0.02093794,-0.021927135,0.02482406,0.0040922016,-0.026260747,0.017016493,0.0001379094,-0.021915358,0.028451104,-0.0112638585,-0.006170687,-0.0137545075,0.0037065337,0.014873239,0.04281797,0.016427686,0.02309297,0.014567059,-0.018806463,-0.016533671,-0.034763105,0.021279449,0.0057702987,0.01031588,0.0071775448,0.0043866043,-0.02278679,0.01356609,-0.018252986,0.019218627,-0.014661268,-0.044348866,-0.02251594,-0.027179284,-0.009450336,-0.051155463,0.004554414,0.01526185,0.009214814,0.013577865,-0.0011893881,0.011952762,-0.016121507,-0.0045720786,-0.010080358,-0.010451306,-0.0017943862,-0.01049841,-0.053887524,0.02278679,0.0022080224,-0.021232344,-0.0021859421,-0.020266702,-0.03323221,0.013554313,0.06816018,0.014437523,0.008472918,0.024211701,0.019607238,-0.021138133,-0.011210865,-0.009185373,0.010109798,0.018382523,-0.009091164,-0.002762972,0.047481313,-0.03153645,-0.003450403,0.0040922016,-0.011358067,0.018747583,-0.0108458055,-0.0038095745,0.033420626,-0.003945,0.011617142,-0.014614164,-0.04479636,-0.0041775783,0.014849687,-0.03650597,0.0106043955,0.03250209,0.015344284,-0.023069417,0.015591582,0.002974942,0.036317553,0.03810752,0.013271687,-0.018606268,-0.028380448,0.0006429025,-0.017452208,-0.006211903,-0.006606403,0.024141045,-0.008343381,-0.029982,-0.034339163,0.03219591,0.0016854571,0.0014087183,-0.023705328,0.06344973,-0.019312836,0.0067418283,0.010527851,0.032784715,-0.008784985,-0.027414806,-0.01726379,-0.011575925,-0.0076485896,-0.029510954,-0.03742451,0.026025224,-0.02357579,0.025389314,-0.042959284,-0.039850388,0.02418815,0.0025613059,-0.004233515,-0.032690506,0.011952762,0.010156903,0.037165433,-0.013212806,-0.014932119,0.0066358433,0.04385427,0.0005229333,0.021491418,-0.003556388,0.051767822,0.022445284,-0.014979224,0.028356895,0.001682513,0.0018326585,-0.037141882,0.01687518,0.001666321,0.00813141,0.026237193,-0.050260477,-0.004321836,0.02136188,0.0064886417,0.019995851,-0.03565809,0.023363821,0.009362015,-0.013342343,0.024800507,0.00038934796,-0.011558261,-0.042558897,0.017887926,0.023717105,0.0075720446,0.007666254,-0.057090625,-0.0140253585,-0.018523837,-0.032643404,-0.0140253585,0.013636746,-0.004554414,-0.017004717,0.014472851,0.014366866,-0.023328492,-0.04385427,0.022044895,-0.035304807,0.0020122444,0.009568097,0.009049947,-0.031088956,-0.019018432,0.034268506,-0.032572746,-0.0067771566,0.038861193,-0.0176053,-0.00767803,0.016050851,0.00084052054,-0.026237193,0.004424877,-0.029157672,0.022798568,-0.021091029,0.00572025,-0.009097052,-0.019666119,-0.015956642,0.025200896,-0.044348866,0.0036034926,-0.042558897,-0.038484357,-0.00989194,-0.014484627,-0.015038105,-0.0050077946,-0.01626282,-0.033915225,0.030641463,-0.00013928942,-0.048070118,0.02494182,-0.037071224,0.007601485,-0.034880865,0.010769261,0.015379612,-0.029605165,-0.011081329,-0.025883911,-0.018653372,0.021762269,-0.012247164,0.0046721753,0.0048929774,0.013895821,-0.0072599775,-0.006512194,-0.027414806,-0.024659194,0.03440982,0.029228328,-0.038460806,-0.010374761,-0.03544612,0.037730686,0.005205045,-0.026048776,-0.022044895,-0.04385427,0.01231782,-0.04503188,0.0038184067,-0.0058762836,-0.01556803,-0.021550298,0.021173462,-0.0054523433,0.002068181,-0.037754238,-0.040250774,-0.01905376,-0.04173457,0.0032060484,-0.047716837,0.0013660298,-0.03820173,0.0027114514,0.011840888,-0.08252704,-0.005796795,0.011952762,-0.017051822,0.01162303,-0.0044454853,0.009038172,0.027603224,0.00042651632,-0.014472851,0.03198394,-0.0039037836,-0.0015868321,-0.022833895,0.019548358,-0.018182328,-0.02724994,0.02670824,0.03923803,0.0029646382,0.012965508,0.033302866,-0.051202565,0.048234984,0.024164597,-0.018182328,0.011346291,-0.026449164,0.01872403,0.037000567,-0.026449164,-0.0111755375,0.0023964404,0.010951791,0.0029528618,0.026119433,-0.0024950653,0.005010739,-0.013554313,-0.047198687,0.0009001371,-0.013024388,-0.03007621,0.010133351,0.0032884814,-0.010945903,-0.009886052,0.031960387,-0.012694657,0.0047781602,-0.008784985,-0.0063826567,0.0067359405,-0.009962597,0.023340268,0.02388197,-0.04093379,0.06952621,-0.0029793582,0.010563179,0.03987394,0.046256598,0.021043925,-0.019948747,-0.009079388,-0.028074268,-0.018924223,-0.0023037035,0.011575925,0.013507209,-0.00411281,0.020867284,0.0057526343,-0.0022139105,0.007960657,0.04609173,0.0023169515,0.019725,0.013707403,0.012906627,-0.013919373,-0.019077314,0.014378642,0.015379612,0.013789835,-0.012447358,-0.010015589,0.0025362817,0.02215088,-0.007101,0.01572112,-0.032996688,0.001077515,0.009520993,0.0035769963,-0.037754238,-0.0035328357,-0.017393328,-0.02082018,-0.009520993,0.02892215,0.0022168544,0.034456924,-0.032337222,-0.011316851,0.00073490344,0.01899488,0.018158777,0.01805279,0.0008125522,-0.019371716,0.004698672,-0.011681911,0.02066709,-0.06335552,-0.02776809,0.01941882,-0.009880165,-0.027909404,0.01572112,-0.0057467464,0.035399016,0.010362986,-0.02063176,0.00013349335,0.0099154925,0.026873104,-0.009144157,-0.00015925361,0.001953364,0.0118644405,-0.013177478,0.0063473284,0.0024700412,-0.029016359,0.029251881,0.0023360876,0.036270447,-0.0028336288,0.01335412,-0.016404135,0.014437523,-0.014614164,-0.012541567,0.009261918,-0.00615891,0.004625071,-0.015874209,-0.015238298,0.022351075,0.016274597,0.0015051352,0.013907597,0.025883911,0.0012387006,0.04964812,-0.001672209,0.012753537,-0.005729082,-0.032996688,0.024564985,0.035563882,0.00012456927,-0.005043123,-0.025200896,-0.015085209,0.016274597,-0.0090146195,-0.029228328,-0.015332508,-0.0072482014,-0.017840821,0.015191194,0.042794418,0.0037212537,0.037754238,0.03304379,-0.026331402,0.014307985,0.023811314,0.024847612,-0.0018002742,-0.008449365,-0.014496403,0.052521493,0.00376247,0.0039891605,0.0063767685,-0.018064568,-0.013483657,0.016663209,0.002654043,0.04312415,0.010092135,-0.032243013,-0.06453314,0.029204777,0.023917299,0.01729912,0.011711351,0.04411334,0.0136956265,0.001575056,-0.0059616603,-0.017322673,0.01945415,-0.03532836,0.0080548655,0.020619985,0.017346224,0.01726379,0.010027366,-0.00752494,0.0033296978,-0.0019298116,0.014979224,-0.012035194,-0.05007206,0.008796761,-0.023905523,0.012788866,-0.021644507,-0.03963842,0.028898597,0.015485597,0.0064886417,-0.005711418,-0.043406777,-0.058456656,0.009874276,-0.0048723696,-0.0015147034,-0.022881,-0.00044822856,0.022139104,0.0034768994,0.016804522,0.020372687,0.009479776,0.03829594,0.009067612,0.025695493,-0.010675052,-0.01878291,0.024423672,-0.000394868,0.008920411,0.032101702,0.011193202,0.043642297,-0.014849687,0.0133658955,-0.018205881,-0.003547556,-0.0106515,0.00046736473,-0.0144139705,-0.0012644609,0.02788585,-0.0064238734,-0.020867284,-0.023929074,-0.028827941,-0.026496269,0.03956776,0.025789702,-0.03217236,0.018688701,0.0029661101,0.027532566,0.026307851,0.013471881,0.034032986,0.009827171,-0.00016182964,-0.029157672,-0.010421866,-0.010445418,-0.026472716,0.016722089,-0.05647827,-0.008190291,-0.022881,-0.010922351,-0.0022875112,-0.011640694,-0.020431567,-0.0079665445,-0.0021005652,-0.02066709,0.0013461576,0.04175812,-0.010233448,-0.013189253,0.028733732,-0.0142962085,-0.020360911,0.0074425074,0.013954702,0.0013682379,-0.046868954,0.01225894,-0.046986718,-0.0005328694,0.011234418,-0.003844903,0.016922284,-0.016368806,0.0047869924,0.032996688,-0.014696597,0.021385433,0.017652404,0.018323641,0.0046132947,0.038625672,0.005949884,-0.03914382,-0.004710448,0.00085229665,-0.018182328,-0.016533671,0.011393395,-0.0139664775,-0.007831119,-0.010610283,0.045102537,0.0057850187,0.04272376,-0.026048776,0.02136188,-0.032031044,0.0053551905,0.011087216,0.009750627,0.007566157,-0.041687462,0.029911343,0.0021344216,-0.008243283,0.009632866,-0.018488508,-0.03577585,0.014402194,0.016333478,0.025624836,0.013836941,-0.0013093572,-0.029793583,-0.008390485,0.060435046,0.010056806,0.018276537,0.0041922983,0.050354686,0.01138162,-0.0038095745,0.006317888,-0.0118055595,-0.030876985,-0.024682747,0.02536576,-0.0036241007,-0.016215716,0.013848716,-0.028757283,0.023163626,0.01572112,-0.00004328644,-0.010257,0.0029381418,0.017287344,0.012659328,0.015685791,-0.03601137,-0.024470776,0.014943896,-0.01268288,0.05341648,0.026590478,0.015850658,0.017475761,-0.019242179,-0.008696664,-0.06288448,0.019124418,-0.020843731,0.0038920075,0.016969388,0.020643538,0.02136188,-0.047457762,-0.007407179,-0.0018326585,-0.014991,0.006323776,-0.011522933,-0.046562776,-0.014531732,-0.0087143285,-0.0108752465,0.0066829477,0.017087149,-0.028757283,-0.0048605935,-0.021138133,0.008896858,0.032690506,-0.026001671,-0.021067478,-0.04861182,0.0011864441,0.005037235,0.018688701,0.0032119367,0.02536576,0.006417985,0.005885116,-0.028380448,0.031253822,-0.025483523,-0.013153926,0.003161888,-0.018229432,-0.005196213,-0.006417985,0.0056554815,-0.03742451,0.0033826903,-0.029440299,0.020337358,-0.015462045,-0.01689873,0.030476596,-0.05374621,0.045714896,0.0052904217,0.010257,0.018029239,-0.00012337325,-0.0015956642,0.012883075,0.012529791,0.0043689404,0.012812418,0.018158777,-0.0029337257,0.024447223,-0.02030203,-0.012977283,-0.009827171,-0.0020976213,0.028545313,-0.006794821,-0.031936835,-0.013036164,0.01377806,0.012518015,0.017381553,0.015756447,0.0031883842,-0.0006322304,0.01787615,0.007825231,-0.012294268,-0.048423402,0.0075602685,-0.028521761,-0.031819075,-0.035493225,0.02946385,0.030759225,0.005090228,-0.030994747,-0.02597812,-0.00068779895,0.00667706,0.011375732,0.016003747,-0.030123314,-0.026778895,0.008149074,-0.0072423136,-0.004822321,0.015391388,0.03662373,0.005702586,-0.020172492,-0.033185106,-0.037919104,0.013401224,0.013801612,-0.012447358,0.004854705,0.018335419,0.023387372,0.024082163,0.011693686,0.017369777,0.011216754,-0.0040038805,-0.025507074,-0.026284298,-0.030335283,0.01678097,-0.04239403,0.05059021,-0.009797731,-0.009968485,-0.030900538,-0.037518717,-0.039921045,-0.029298985,-0.0027055633,-0.0063649924,-0.023257837,-0.009102941,-0.015426717,0.01645124,-0.019795656,-0.015579806,0.01608618,-0.057655882,-0.004728112,0.039426446,-0.040863134,0.013389448,-0.000062744635,-0.0054111267,-0.023175403,-0.0431477,0.0004246763,-0.0011731959,0.02418815,0.01268288,-0.02903991,-0.037094776,-0.0053463583,-0.01325991,-0.009827171,-0.009238366,0.004663343,-0.0029072296,0.00090160914,0.0022197985,-0.021385433,0.022539493,0.018535612,-0.0022301027,-0.02461209,-0.00767803,0.006730052,-0.023163626,0.01241203,0.006317888,0.0070892237,-0.013471881,0.029558059,-0.0044219326,-0.010492522,-0.008531799,0.004595631,0.027603224,-0.009344351,-0.004934194,0.022810344,-0.005001907,-0.017558195,-0.00022853032,0.014790806,0.012294268,0.0009339935,0.016910508,-0.05793851,0.023022313,0.02651982,-0.0036034926,-0.037377402,-0.007083336,-0.02861597,0.018523837,0.0005453815,0.013012612,-0.0017973302,-0.015603358,-0.008184403,-0.012553344,0.01225894,-0.020549329,0.010021478,-0.013707403,0.0021123413,-0.024729852,0.022433508,0.002969054,0.028215582,0.004736944,0.007978321,-0.021632731,-0.009838948,-0.008531799,0.014637716,0.030476596,-0.0061412463,-0.026048776,-0.009833059,0.012459135,-0.03144224,0.0015205914,-0.023846641,-0.0013123013,0.007000903,0.013142149,-0.017016493,0.035917163,0.0072423136,-0.003859623,0.020561105,-0.020290254,-0.029134119,0.01298906,0.005001907,-0.033373524,0.03271406,-0.02239818,-0.017699508,0.013719179,-0.017016493,0.022574821,0.00256425,-0.014461075,0.022433508,0.033962328,0.02576615,0.0051844367,-0.0035858285,-0.042794418,-0.014013582,0.030123314,0.015850658,0.01414312,-0.016427686,0.0014985112,-0.016168611,0.024541432,0.010080358,-0.010492522,0.004910642,0.0060823658,-0.0030823993,-0.017887926,-0.029487403,0.018111672,0.023799537,0.009603425,-0.0025613059,-0.01556803,0.00002272423,-0.020537551,0.028262686,-0.00496069,-0.006182463,-0.0194777,-0.0063708806,0.021091029,0.013672074,0.008302164,-0.011958649,0.0019298116,0.0051285,0.01483791,0.0003242113,0.012671105,-0.021161687,0.027344149,0.014425746,-0.009179485,-0.018629821,0.021173462,0.025224447,0.0023154796,0.0022330466,-0.006235455,-0.0020490447,0.0051756045,0.0049518584,-0.024447223,0.003741862,0.02798006,-0.007984209,0.034975074,-0.01766418,-0.0048782574,-0.007566157,-0.022327522,0.0030853434,-0.022881,-0.014932119,-0.018017463,-0.04983654,-0.0041834665,0.045479372,0.0034003544,0.013766283,0.009897828,0.018429628,0.026001671,0.008119634,0.010828142,-0.010298217,-0.0031942723,-0.018205881,0.022374626,0.018194104,-0.013789835,0.05440567,-0.0043041715,-0.0032796492,0.023929074,0.00030746713,0.0069479104,-0.007301194,-0.014096015,-0.0038242948,-0.0062825596,-0.003735974,-0.022080224,-0.015591582,-0.02776809,0.0140253585,0.009350238,0.0463037,0.01830009,-0.00096196175,-0.021927135,0.024211701,-0.02245706,-0.018653372,-0.020890836]},{"id":"class-Webhook","type":"class","source":"main","text":"Class: Webhook\nDescription: Represents a Discord/Fluxer webhook. Supports creating, fetching, sending, and deleting.\nThe token is only available when the webhook was created; fetched webhooks cannot send messages.\nProperties: avatar: string | null, channelId: string, client: Client, guildId: string, id: string, name: string, token: string | null, user: User\nMethods: avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this webhook's avatar.\nReturns null if the webhook has no custom avatar.; delete() -> Promise — Delete this webhook. Requires bot token with Manage Webhooks permission.; edit(options: APIWebhookUpdateRequest | APIWebhookTokenUpdateRequest) -> Promise — Edit this webhook. With token: name and avatar only. Without token (bot auth): name, avatar, and channel_id.; fetch(client: Client, webhookId: string) -> Promise — Fetch a webhook by ID using bot auth.; fromToken(client: Client, webhookId: string, token: string, options: { channelId?: string; guildId?: string; name?: string; }) -> Webhook — Create a Webhook instance from an ID and token (e.g. from a stored webhook URL).; send(options: string | WebhookSendOptions, wait: boolean) -> Promise — Send a message via this webhook. Requires the webhook token (only present when created, not when fetched).","meta":{"url":"/docs/classes/Webhook"},"embedding":[-0.04749759,0.019452902,-0.025163168,-0.035253767,0.060290273,-0.01303545,0.019136252,0.0066813277,0.04192454,0.04272672,0.04336002,-0.014766473,-0.007868768,-0.024360986,0.01545255,0.009256752,-0.05868591,0.024297656,-0.012560474,0.015800865,-0.015357554,0.015399775,0.029364066,0.03202393,-0.01309878,0.04580879,-0.015653094,0.04580879,-0.033923835,-0.02619756,0.042684503,-0.0040979865,-0.0006323117,0.0020226056,-0.010259479,0.04173455,0.004351307,0.03276278,-0.01311989,0.008977044,-0.038504712,-0.038378052,-0.0132993255,0.0332272,0.00052016455,0.048257552,-0.06919871,0.0068449304,-0.041164577,0.048004232,-0.05167738,0.009710618,-0.0032245587,0.06995867,-0.021585016,-0.014006511,-0.038694702,0.0033406639,-0.08705781,0.008897882,0.000532039,0.013088224,-0.009568126,-0.035844848,0.009341192,0.048130892,-0.044964384,0.01780632,0.006248572,0.04690651,0.088071086,0.012644914,0.0011122352,0.004588795,-0.034303814,-0.018977925,-0.01810186,0.025120948,-0.012761019,-0.038462494,-0.030862879,0.003791891,-0.11053217,-0.029068526,-0.011821622,-0.01805964,-0.029258516,-0.059234772,0.045133267,-0.038546935,-0.006053304,-0.024698747,-0.060670257,0.018967371,0.02583869,-0.0064543947,-0.0032826113,-0.033269424,-0.015114789,0.031622842,0.048806414,0.011811067,-0.072322994,0.01068168,0.011314982,-0.03554931,-0.024002116,-0.01595919,-0.005029467,-0.009288418,-0.07004312,-0.022946613,-0.009900609,0.03316387,0.0125076985,-0.04686429,0.01087167,0.012518254,-0.010850561,-0.013278215,-0.04863753,-0.038441382,0.059994735,-0.019590117,0.02600757,0.004061044,-0.021247255,0.04703317,-0.060121395,0.0011406018,0.044077765,0.022059992,0.018809047,-0.007314629,-0.055730507,-0.028414113,-0.0146714775,0.011768848,-0.011800513,-0.015758645,0.024170997,-0.04270561,0.02151113,-0.030229578,-0.009378135,0.003308999,-0.020086203,0.028540775,-0.05653269,-0.013721526,-0.027274173,0.0122016035,0.04348668,-0.00021967635,-0.034852676,0.034134936,-0.016845811,0.065314464,-0.048215333,-0.019706223,-0.0066760504,0.017078022,-0.008961212,-0.0059846966,-0.010987776,-0.039328005,0.011642187,-0.0146714775,-0.038694702,0.009082595,0.050241895,-0.02602868,-0.013478761,0.00220468,-0.023073275,-0.017954089,0.038378052,-0.03660481,-0.034493804,-0.027063072,0.046230987,0.011979948,0.0068449304,-0.01638139,-0.05826371,-0.014017067,-0.008982322,0.028224124,0.0017363008,-0.0059846966,-0.020698395,0.042410072,0.0020212864,-0.0009393968,0.039876867,0.021891112,0.018830156,0.017500224,0.0073410165,-0.044246644,-0.0141542815,0.017215237,-0.0068343757,-0.025690919,0.019400127,-0.0038050846,0.016244177,-0.0005739292,0.0004558449,-0.04127013,0.012074943,-0.024867628,0.024930958,0.027316391,-0.08266692,0.03115842,-0.0130565595,0.055772725,-0.0317495,0.007910987,-0.039982416,0.039095793,0.002963322,-0.04796201,-0.020128423,0.0025991737,0.009642011,-0.028034134,-0.024614306,0.025015397,-0.0060110837,0.004554491,-0.0022389835,-0.04703317,0.0022125961,-0.020529514,0.005288065,0.023242155,0.009578681,0.002153224,-0.045175485,-0.057165988,-0.011494417,0.025585368,-0.009583958,0.005301259,-0.021542797,-0.039602436,0.03276278,0.018091304,0.08731113,0.01892515,-0.025754249,0.024234327,0.027126402,-0.0037760583,-0.028139684,0.013067115,0.02104671,0.0097053405,0.04673763,0.0071246387,-0.021458356,0.040721267,-0.013278215,0.00028679968,0.038546935,0.012497144,-0.00075006613,0.021416135,0.006290792,0.029152965,0.04707539,-0.004372417,-0.06708771,0.029870708,-0.0105866855,0.010227814,0.008977044,0.019664003,0.010924445,0.024698747,-0.011853288,0.039771315,-0.0001341642,0.043951105,0.039623544,0.006860763,0.010560297,0.032952774,-0.006438562,0.03548598,-0.000052156644,-0.07418068,0.028730765,0.081062555,0.08372242,0.007789605,0.06219018,0.017816873,0.0031401184,0.0035517642,-0.034430474,-0.035844848,-0.0043565845,0.015906416,0.02127892,-0.030883988,-0.0020714228,-0.05665935,-0.0030556782,0.03620372,-0.05349284,-0.009647288,-0.043001153,0.040151298,0.051888477,0.0357393,0.016508052,-0.01869294,0.004256312,-0.03666814,-0.025690919,0.01780632,-0.028984085,-0.046357647,-0.025247607,0.0069663133,0.011146101,0.028266344,0.053408403,-0.036499258,0.025289828,-0.0031374798,0.01286657,-0.012169939,0.0031190084,0.017859094,-0.00060163613,0.02537427,0.023221044,-0.020635065,-0.009103705,-0.0013550007,-0.05133962,0.024128776,-0.004596711,0.030292908,-0.045851007,-0.0020714228,-0.033353865,0.010591962,-0.043908883,-0.05290176,-0.025184277,-0.025437599,-0.009066762,-0.009167035,-0.039707985,-0.010074766,-0.0269153,0.017225793,-0.032741673,0.030081807,-0.009969217,-0.01574809,0.04690651,-0.017056912,0.003652037,-0.046568748,0.023474365,0.0100694895,0.029005196,-0.019252356,-0.010734456,-0.027464163,0.004084793,0.014629258,0.019326242,0.0022178737,0.071563035,-0.0006682647,0.0023722406,-0.051255178,-0.023326594,-0.015610875,-0.006839653,0.009077317,-0.026830861,0.024170997,0.019695668,-0.00039878185,-0.018735161,-0.002886798,0.01835518,0.0091248145,-0.0116844075,-0.00011453846,0.012908789,-0.005105991,0.027949693,0.0028393003,-0.0332272,0.014998684,0.015230894,-0.0027838866,0.019125696,0.053661723,0.020212863,0.018809047,0.0050109955,0.060332496,0.019790662,0.030947318,-0.0032430298,-0.017204683,0.05281732,-0.0632879,0.045006607,0.048679754,-0.028688544,0.022249982,-0.037681423,0.0025912574,-0.020698395,-0.02092005,0.0027231951,-0.00032753547,-0.024740968,-0.04741315,-0.048004232,-0.05281732,0.067003265,0.023706576,0.035401538,-0.0624435,0.0013200372,-0.0047207326,-0.028772986,0.023748795,-0.018080749,0.014017067,0.030482898,0.03231947,-0.0010337323,0.03103176,0.02680975,-0.003641482,0.00006403104,-0.004010908,0.0072935186,-0.04677985,0.026957521,0.0018550447,-0.017753543,-0.035697076,-0.03141174,0.004586156,0.033543855,0.0028023578,-0.029131856,-0.024234327,-0.033797175,0.03601373,0.00529862,-0.0036493982,-0.023748795,0.029300736,0.025754249,-0.0037048121,0.0029131856,0.016529161,0.039496884,0.03244613,0.013974846,0.0020674646,0.05121296,-0.02666198,0.038251393,0.028646324,0.033586074,0.017225793,-0.05763041,-0.05247956,-0.022608854,0.07696721,0.03187616,-0.013341545,0.0023986283,0.00077315525,-0.040657938,-0.0047207326,-0.018027974,-0.0067816004,-0.010692235,-0.020350078,-0.064807825,-0.040109076,0.0040663215,-0.049186394,-0.023664355,-0.058728132,-0.014101507,0.0039159125,0.026999742,0.008934825,0.0066338303,-0.008892604,-0.012908789,0.038124733,-0.029638497,-0.008929547,-0.0042272857,0.028224124,-0.00057920674,0.011504971,-0.021310585,0.02590202,-0.0029131856,-0.0017468558,-0.011378312,0.006211629,0.008887327,-0.017268013,-0.01587475,0.00794793,-0.032868333,-0.034831565,0.0034435752,0.02623978,-0.018787935,-0.011209431,0.004113819,-0.028266344,-0.019748442,0.011209431,-0.040657938,-0.027400833,0.02655643,-0.025500929,-0.02640866,0.034282707,-0.013869297,0.003662592,-0.021500576,0.03126397,-0.015062014,0.027611932,0.004261589,0.016275842,0.039475776,-0.029976256,-0.020592844,-0.028371895,0.023896566,0.033607185,0.008470404,0.025310937,0.0032430298,-0.0073410165,-0.0077737723,-0.0029342957,0.024044335,0.020075649,-0.012655469,0.0007612808,-0.0032878888,0.0028234678,-0.027105292,0.005095436,0.0027311114,-0.023052163,0.010665848,-0.0072987964,-0.0049371105,0.027717482,-0.019980652,0.000726977,-0.003736477,0.013067115,-0.00780016,-0.041565668,0.01044947,0.029701827,-0.015969746,0.029722936,-0.0012085498,-0.019336797,-0.0021835698,0.034409367,0.04762425,0.0130248945,-0.013932627,-0.005478055,-0.023854345,-0.008934825,0.01015393,0.00955757,-0.029828487,0.0047022616,-0.029047415,0.006406897,-0.03723811,-0.028941864,-0.011061661,0.006280237,0.014998684,-0.011716072,-0.035127107,0.022144431,0.010264757,0.03690035,-0.010296422,-0.0041613164,0.032805003,0.013943181,-0.020012317,0.011547192,0.007314629,0.008713169,0.008507346,-0.00056304433,-0.001352362,0.007657667,0.012676579,0.050284114,-0.017584663,-0.043528903,-0.024762077,0.006248572,0.024276545,-0.008539011,0.031073978,-0.008649839,-0.017890759,-0.010977221,0.04791979,-0.012771574,-0.025395378,-0.0036493982,-0.0071774134,0.010233092,0.0056786006,-0.00445158,-0.0083015235,0.0161914,-0.022672184,0.019431792,-0.01551588,-0.0064438395,-0.008787055,0.0058422037,0.041502338,-0.009019265,0.027084181,-0.031179529,-0.008502069,0.0044964384,0.011884953,0.010755565,0.03736477,0.010760843,0.00008740876,0.049355272,-0.0025279273,0.019526787,-0.0032588625,0.016180845,-0.017352453,-0.00921981,-0.009230365,0.030609557,0.024297656,0.0039132736,-0.010370308,-0.028097464,-0.00028613998,-0.047877572,0.02655643,0.054463904,-0.025226498,-0.014798138,-0.003533293,-0.015336445,0.060839135,-0.029680716,0.03521155,0.02138447,0.037618093,0.03681591,-0.018840712,-0.02174334,0.0269153,0.003694257,-0.02049785,0.0319606,0.013827076,0.04842643,0.023685465,-0.0052009863,0.0099164415,-0.038694702,-0.023178823,-0.027210841,-0.0260709,-0.0114416415,0.016645266,0.0013233357,0.016508052,0.013320436,-0.043866664,0.025078727,-0.01810186,0.02155335,-0.021183925,0.02592313,0.002551676,-0.034050494,0.0069082608,0.0002021946,0.04762425,-0.008697337,-0.039116904,-0.013721526,0.00071840105,-0.025648698,0.012381039,0.024656527,-0.023664355,-0.009415078,-0.012433814,-0.013890406,0.009420356,-0.048679754,-0.019041257,0.01049169,-0.030166248,0.013837631,0.009726451,-0.006987423,0.012708244,0.016835257,0.0019737887,-0.007573227,-0.02073006,-0.0061641317,0.043908883,-0.010243647,0.014988128,0.009963939,-0.00070718635,0.004533381,-0.04694873,0.0088820495,-0.03709034,-0.011061661,-0.018407956,-0.03641482,-0.018027974,0.017215237,0.00205559,0.04661097,0.030546227,0.0013002466,-0.023305485,-0.031073978,-0.018260185,0.0095206285,0.033691622,-0.035359316,-0.014502598,-0.021500576,-0.05784151,0.024002116,0.06691883,-0.04198787,0.016940808,0.0054622227,-0.016465832,-0.03601373,-0.000041972697,0.016866922,0.016909143,-0.03263612,-0.0018009503,-0.030630669,-0.045597687,-0.0057999836,-0.060079176,-0.024424316,-0.031116199,-0.016592491,0.011874397,-0.04749759,-0.02149002,0.0044199144,-0.010354475,-0.06877651,-0.01871405,0.03618261,-0.01898848,0.007837103,-0.02638755,-0.008554844,0.024909846,-0.03276278,0.00822236,0.02685197,0.0010165804,0.0016650545,-0.019685112,0.038948026,0.0017956728,-0.013679306,-0.00015288287,0.016265286,0.011779402,-0.005063771,-0.005810539,-0.012349374,0.030440677,0.045259926,0.020212863,0.0015753368,-0.009467853,0.04211453,-0.013795411,0.008137921,0.008623451,0.0040214625,-0.019896213,0.00896649,0.027168622,-0.0014552734,0.005884424,0.0018590029,-0.017669104,0.038082514,-0.0006636469,-0.039686877,-0.0024210578,-0.0016096405,0.013425985,-0.015357554,0.029554056,0.0029765156,-0.0011168531,-0.0021571822,0.005947754,-0.0029342957,-0.014850914,-0.016729707,0.023009943,-0.014492042,0.016993582,-0.019452902,-0.027020851,0.022672184,0.04855309,0.00896649,-0.011272761,0.019347351,-0.02609201,-0.040974587,-0.011663297,0.010697513,0.0021716955,0.009457298,0.00510863,0.04732871,0.024192106,0.02678864,0.016508052,0.023432145,-0.024234327,0.03155951,-0.032783892,0.0124760335,-0.01816519,0.017964644,0.026957521,0.008670949,-0.015410329,-0.0016650545,-0.013858741,0.021405581,-0.041101247,0.0030292908,-0.0045307423,0.023052163,-0.029089635,0.03288944,-0.022376642,-0.029342955,-0.014945908,0.035359316,-0.024656527,0.012106608,-0.016866922,-0.012676579,-0.033501633,0.019262912,0.008528456,0.016413055,0.019083476,-0.0011095965,-0.0376392,-0.0021782923,0.008259303,-0.0057472084,0.011051106,-0.045724347,0.0041745105,0.05817927,0.017289123,0.010686958,0.012528809,0.02155335,0.06818543,0.010734456,0.028582994,-0.043951105,-0.010328087,0.016603047,-0.011483862,0.0062432946,0.026176449,-0.026957521,0.021162815,-0.0014974935,-0.006148299,-0.019938434,0.03136952,0.021996662,-0.0024039058,-0.035105996,0.017278567,-0.007900433,0.004375056,-0.0057999836,0.02566981,0.032952774,0.007240744,0.0075151743,0.030356238,0.00049113826,-0.009610346,0.007235466,-0.034472696,-0.04219897,0.030778438,0.008285691,0.027126402,-0.008560121,-0.011188321,-0.023516584,0.034557134,0.0062432946,0.022059992,0.05839037,-0.05708155,-0.006860763,0.013689861,-0.028540775,0.014703143,-0.0060058064,-0.004488522,-0.007246021,0.02638755,0.00822236,-0.0054622227,0.032403912,0.0359504,0.024002116,0.03185505,0.018175745,0.03139063,-0.01602252,-0.018766826,0.008327911,-0.012212158,0.019030701,0.037681423,-0.007240744,0.01299323,-0.0089717675,0.017162463,0.00926203,0.04737093,0.020381743,0.006955758,-0.005148211,-0.011557747,-0.0072935186,0.014935354,-0.024234327,0.012402149,0.028055243,0.025332049,-0.0046917065,0.017816873,-0.00794793,-0.016275842,-0.03704812,0.055097204,0.00330636,0.033944946,0.014059287,-0.0071985237,-0.025099838,0.013584311,0.017848538,0.018640166,-0.027084181,-0.028097464,0.0105866855,-0.013447096,-0.0051983474,0.0018880292,0.020297304,0.022735514,-0.040974587,-0.014893133,0.020466184,0.023411034,-0.01587475,0.0076629445,-0.008918992,-0.025944239,-0.019210137,0.020065093,0.015674205,-0.029258516,-0.027970804,-0.004243118,-0.0050109955,0.03671036,0.033586074,0.05345062,-0.012666024,-0.024297656,-0.014998684,0.0011815026,0.03198171,0.006127189,-0.017774655,0.012560474,-0.010665848,0.023917675,-0.0050796033,0.011716072,0.023242155,0.0013266341,0.019410681,0.025543148,0.030398458,0.0020714228,0.033311643,0.006169409,-0.017373564,-0.03736477,-0.006428007,0.014597593,-0.00659161,0.014143727,-0.013088224,0.0096736755,0.034430474,0.0116527425,-0.018555725,0.03713256,-0.00041197563,-0.0077684945,-0.004665319,0.0015093678,-0.011029996,0.018809047,-0.0015120066,-0.055603847,-0.007752662,-0.0016294313,0.0016399863,-0.010027269,0.02092005,-0.024213215,-0.010248925,-0.0033987164,0.011156656,0.004116458,0.00008559461,-0.02191222,0.03282611,-0.016740263,-0.02030786,-0.037871413,0.009742283,0.030081807,-0.0035016278,-0.0006032854,-0.0028234678,-0.03605595,0.00464157,0.0015766561,-0.003198171,-0.010338642,0.03698479,0.029258516,-0.036098167,-0.009383413,0.02661976,-0.0031506736,0.0068924283,0.049355272,-0.04580879,-0.056068268,0.004330197,0.0064174524,-0.023537695,-0.0843135,-0.0119588375,0.030314017,0.004406721,-0.0029527668,0.028266344,0.0060058064,0.01309878,0.016803592,0.006797433,-0.02613423,-0.012898235,-0.023178823,0.003910635,-0.026176449,-0.044753283,-0.0036256495,0.024783187,0.0011333453,0.011040551,0.017246902,-0.03548598,0.029131856,0.0053830603,-0.00801126,0.0031110921,-0.006322457,-0.0078054373,-0.002663823,0.037744753,-0.0060849693,0.005805261,0.011336092,0.016560826,0.0067921556,0.004718094,0.003641482,-0.004119097,-0.0007507258,-0.021996662,-0.007119361,-0.011462752,-0.0015806142,0.01871405,-0.030461788,-0.0054991655,-0.014597593,-0.007615447,0.009731729,-0.013964292,0.04217786,0.012666024,0.017500224,-0.061008018,-0.015906416,-0.0006999298,0.02666198,0.016782481,-0.035422646,0.0010159207,0.024339877,-0.010095877,-0.027527492,-0.044711065,-0.0077843275,-0.0045043547,-0.01320433,0.030039588,-0.012106608,0.02573314,-0.03179172,0.001964553,0.008122088,0.0025569536,0.040847927,0.011547192,-0.04198787,-0.01303545,-0.028794095,0.05336618,0.02602868,0.044499964,0.0024580003,0.010729178,0.0040452112,-0.007794882,0.048130892,-0.031116199,-0.0006583694,0.02191222,0.04614655,-0.017014692,0.016930252,-0.00032506164,0.0138165215,0.004158678,0.017384117,0.007689332,0.054759443,-0.020276194,0.006290792,-0.0067499354,-0.0068924283,-0.0069979783,-0.0040003527,-0.011526082,-0.023706576,-0.023664355,0.016940808,-0.015241449,-0.0011095965,0.012064388,0.029448505,-0.019357907,0.07076085,0.010792508,0.0021347527,0.0020384383,-0.023537695,0.04067905,0.043275584,0.043275584,0.029722936,-0.019347351,0.014196502,-0.04253673,-0.020888384,-0.00784238,-0.0034224652,0.016286395,-0.0074782316,0.021405581,-0.0069715907,-0.017669104,-0.0083015235,-0.010248925,0.015536989,0.04198787,0.008174863,0.018682385,-0.008375408,-0.020392299,0.011642187,0.018830156,-0.010433638,0.009019265,-0.014544818,-0.034472696,-0.0092461975,0.024170997,-0.0050584935,-0.00096908276,0.010053657,-0.011515527,-0.0103017,0.022819953,-0.025120948,0.015378664,0.025416488,-0.016307507,-0.011557747,-0.006063859,-0.026873082,-0.00890316,0.028941864,-0.020402854,-0.015051459,-0.00090839143,-0.016402502,-0.009272585,-0.014323162,0.008359576,-0.0025490373,0.03073622,-0.028266344,-0.009467853,-0.008734279,0.0026400744,0.023389924,-0.030018477,-0.011642187,0.0015951274,-0.015864195,0.0357393,-0.018555725,0.0043671397,0.014449823,-0.0069768685,-0.028772986,-0.0050479383,-0.030356238,-0.017605774,-0.01339432,0.02130003,0.022566633,0.013531536,-0.029575165,-0.016434167,0.0045729624,-0.00640162,-0.0073304614,-0.015040903,-0.014460377,0.015199229,-0.029722936,0.0040452112,-0.011694962,-0.032150593,-0.034451585,-0.04758203,-0.028709654,-0.012011613,0.0034198265,0.0010370307,-0.016814146,-0.007953208,-0.024424316,3.6334418e-7,0.004192982,-0.016793037,-0.026830861,-0.008649839,0.0017217876,0.028435225,-0.015758645,0.016909143,0.013953737,0.025015397,-0.0059635863,-0.003813001,0.011821622,0.0008740876,0.028561885,-0.015304779,0.017711323,-0.035295986,0.029638497,0.005514998,0.031010648,-0.054548346,0.027210841,0.033121653,-0.016961917,0.061134677,-0.0045175487,0.020972826,0.019094031,-0.01560032,0.0012811156,-0.011705517,-0.0023788377,-0.0031110921,-0.027231952,0.012275488,-0.023178823,-0.010312255,0.004121735,0.01837629,0.002757499,-0.0108611155,-0.010095877,-0.011842732,-0.009393968,0.0037971684,-0.011621078,-0.0050030793,0.030567339,-0.00013787494,-0.0053909766,0.024002116,0.008544289,-0.029237406,0.06459672,-0.015294224,0.027738594,0.016328616,0.023136605,-0.012391593,0.014238722,-0.0038314722,0.001422289,0.028984085,-0.0072671315,-0.02106782,0.024255436,0.021247255,-0.020719504,0.009747561,-0.0315384,-0.006686605,0.0058633136,0.035823736,0.015653094,-0.01545255,-0.021120595,0.009467853,0.015737535,-0.021785561,0.039138015,0.009256752,0.008312078,-0.030546227,0.013172665,-0.019938434,-0.016265286,0.005926644,-0.024572087,0.011082771,-0.0032694174,-0.031073978,0.037744753,-0.019146806,0.021658901,-0.02149002,0.020487294,-0.0042695054,-0.033121653,0.004644209,-0.015252004,0.011642187,0.0047867014,-0.018608501,0.004815728,0.03202393,0.008132643,0.033522744,0.03660481,0.00905093,0.0057524857,-0.0035728742,-0.05936143,-0.009230365,-0.0035174605,-0.024867628,0.012486589,-0.011779402,0.016529161,-0.02089894,0.024698747,-0.028772986,-0.038631372,0.011114436,0.0053804214,0.01080834,0.0075151743,-0.009288418,-0.0006939926,0.022967724,0.010211982,0.010882226,0.006728825,0.021975553,0.012433814,0.01856628,0.012845459,-0.011811067,0.011325536,0.038272504,0.029152965,-0.028582994,0.016835257,0.0059371986,-0.03120064,0.021806672,-0.0036916183,-0.003747032,0.0073726815,0.008634007,-0.030841768,0.015083124,-0.015653094,0.003554403,-0.023706576,-0.007251299,0.013436541,-0.033776063,-0.018830156,0.0033353863,-0.020466184,0.040066857,0.024065446,-0.0051244623,0.010781953,-0.01570587,0.005794706,0.0020001763,0.010000882,0.040531278,-0.010945556,-0.039032463,0.005525553,0.01309878,0.039074685,-0.0070454758,0.032678343,-0.009942829,-0.017331343,0.028287454,0.011842732,-0.014861468,-0.019748442,-0.031686172,-0.038019184,0.008048203,-0.034177154,-0.008839829,-0.000885962,-0.018798491,0.00095127115,-0.026957521,0.026282,0.013953737,-0.009700064,-0.029385176,-0.013436541,0.00085759535,0.0034805178,-0.009293695]},{"id":"class-WebSocketManager","type":"class","source":"main","text":"Class: WebSocketManager\nProperties: gatewayUrl: string | null, options: WebSocketManagerOptions, shardCount: number, shards: Map\nMethods: connect() -> Promise; destroy() -> void; getShardCount() -> number; send(shardId: number, payload: GatewaySendPayload) -> void","meta":{"url":"/docs/classes/WebSocketManager"},"embedding":[-0.029590653,0.002466771,0.020995375,-0.0105453795,0.005050124,0.024270272,-0.0036458399,-0.047650278,0.020285284,0.020211095,0.02825526,0.022892483,0.0063060313,-0.0057231206,0.004159861,-0.033130508,-0.06236082,0.05082979,0.009183489,0.04290221,-0.021451104,0.056213763,0.039129186,0.044513162,-0.050787397,0.058503013,0.007805701,0.018430568,-0.033109315,-0.0066822735,0.07211132,-0.013332752,0.03279136,0.021853842,0.016363885,0.03794217,0.0023011714,0.023528386,-0.023040859,0.031286392,-0.03548335,-0.026856273,-0.020285284,0.022998467,-0.022595728,-0.012400094,-0.038705252,-0.0024098048,0.009300071,-0.0045016585,0.0017262098,0.011350856,0.011255471,0.036140446,0.028785177,-0.012601464,0.018578945,0.011658208,0.011043503,-0.0022508292,0.010842134,-0.010518884,-0.017487314,0.015198065,0.014064039,0.016544059,-0.02121794,0.06414135,-0.011742996,0.048922084,0.007477151,-0.0037067805,-0.005264741,0.020295883,-0.024630615,0.023591975,0.0018732622,0.014593958,0.022744106,0.028721588,-0.056213763,-0.012421291,-0.06537075,-0.043538112,-0.008669468,-0.04926123,-0.04283862,-0.014201818,0.023973517,0.012686251,-0.001047914,-0.0039346456,-0.05460281,0.029866211,0.003306692,-0.0305869,0.025584469,0.031455968,-0.020020325,-0.011764193,0.0416516,-0.061343376,-0.05159287,0.0047719167,0.012633259,-0.010990512,-0.023825139,0.0010267172,-0.052610315,-0.013693096,-0.07083952,-0.005479358,0.00027439845,0.034190346,0.019712972,-0.031625543,0.016289698,0.008213738,0.013131383,0.02141931,-0.004419521,0.020603234,0.054899566,-0.01835638,-0.009035111,0.009872383,0.008293225,0.009570329,-0.04849815,-0.0074294587,0.0145833595,-0.038874827,0.017349534,-0.021281531,0.009141096,0.03181631,-0.016438074,0.00002970442,-0.022171794,-0.0114038475,0.0030973742,-0.030714082,0.05909652,-0.020083914,0.040846124,0.016109524,-0.00008064698,0.041227665,-0.016226107,0.0021130503,-0.010269823,0.011043503,0.035038218,-0.02467301,0.015346442,0.06503161,0.0024058304,0.058545403,-0.019628184,-0.058757372,0.06032593,0.012135136,-0.020942383,-0.02159948,0.0043188366,0.008748956,0.0025595068,-0.0004073749,-0.031731524,-0.03703071,0.044046834,-0.071051486,0.013205571,-0.016618246,0.04438598,-0.03397838,-0.021366317,-0.014848319,0.009093403,-0.005264741,0.06469246,0.022595728,0.024164287,-0.018907495,-0.037115496,0.009713408,-0.008494595,0.044894703,0.036416005,-0.028806373,-0.0015937302,0.073976636,0.020921186,0.02505455,0.042033143,0.015378238,-0.0069737285,0.0066610766,-0.023062056,-0.019617585,-0.03279136,-0.035907283,0.0017036883,-0.014138227,0.012251718,0.0027926709,0.007943479,-0.018918093,0.01841997,0.037327465,0.032155458,-0.015420631,0.0075778356,-0.0069101383,-0.028149275,0.0065074,0.027894914,0.016236706,-0.012400094,-0.0032907943,-0.03118041,0.02062443,0.021376915,-0.010365208,0.032600593,0.024376255,0.031561952,-0.02174786,0.024312664,0.028615603,-0.041206468,-0.017307142,-0.046887197,-0.02395232,-0.030629294,-0.009459047,-0.0048832,0.008616476,0.022404958,-0.029272702,-0.009146395,-0.031074425,0.0034285733,-0.010810339,0.030883655,0.012961809,-0.016713632,-0.02134512,-0.014233613,0.035780102,0.01834578,0.0032060074,0.00079818984,-0.0110117085,0.009533235,-0.0034868643,-0.040379796,0.012177529,0.04379247,-0.0031450668,0.0024773693,-0.025690453,0.00709561,0.017519109,-0.007196294,-0.028742785,0.049981922,0.014117031,0.001282403,-0.012781636,0.029336292,0.06515879,0.003325239,-0.008351517,-0.03414795,0.013512923,-0.030480918,0.009358362,-0.018377576,0.003977039,-0.020899989,-0.0076838196,-0.0044142217,0.06342065,0.038684055,0.042329896,0.021111956,0.07206893,0.004636788,0.0572736,0.0017619793,0.0351442,0.0035796,-0.04561539,0.022298973,0.05846062,0.07804641,-0.011075298,0.011880775,0.021313325,0.038111743,0.0027502775,-0.04258426,-0.03662797,0.0025012158,0.012071545,0.021334521,-0.029993393,0.012219923,-0.033660427,-0.05740078,-0.01979776,-0.06138577,-0.0060569695,-0.05265271,0.02088939,0.013110186,0.018653134,0.003118571,-0.02433386,-0.025584469,-0.0025634812,-0.027534569,0.014042842,-0.037200283,-0.04680241,0.03098964,-0.07804641,-0.0081342505,0.021567686,0.005166706,-0.031773917,0.034699067,0.014689343,-0.0047878143,0.014360794,0.033512052,0.025923617,0.0006776334,0.010979913,0.012569669,0.0065815886,-0.027131831,0.007021421,0.0151874665,0.008489296,-0.02628396,0.0057761124,0.029845014,-0.027428586,-0.019882545,-0.014434982,-0.09580928,-0.023337614,0.0005627073,-0.056044187,0.0351442,-0.025987208,-0.05129612,-0.0063484246,-0.022362564,0.032642983,-0.019935537,0.015049688,-0.010831536,0.04216032,0.015272253,-0.0029966896,0.026262766,-0.039256368,0.025075747,0.040189024,-0.03442351,0.004504308,-0.012156332,-0.007588434,0.032812558,-0.00572842,0.0002611505,0.0047745663,0.046378475,0.0442588,-0.036034465,0.019055871,-0.0012949886,-0.018992282,-0.049176443,0.06795676,-0.0032166059,0.0017142866,0.037920974,0.034699067,-0.048201393,-0.032960936,0.013163177,-0.036013268,-0.0023634369,-0.049388412,0.0015963797,-0.011806586,0.010651363,0.033300083,-0.060029175,-0.031625543,0.00032043515,-0.029972196,-0.0068571465,0.03997706,0.01633209,-0.04237229,0.023825139,0.015505417,0.020274686,0.05023628,0.0195328,-0.020158103,0.020359471,-0.04387726,-0.006782958,0.015632598,0.008166045,0.029209113,-0.046039328,0.027576962,0.04612411,0.0030761773,0.038959615,0.0044884104,-0.043834865,-0.03677635,-0.032706574,0.0115204295,0.06342065,0.039680302,0.06350544,-0.013777883,-0.028657997,-0.029187916,-0.05871498,0.002877458,-0.00618415,0.016904403,-0.04705677,0.03346966,0.011562823,0.0026601914,0.0116370125,-0.029654244,-0.011340258,-0.030798867,-0.040379796,-0.02329522,0.02740739,0.040167827,-0.057188813,0.00006470802,6.391108e-7,0.018070223,0.0047613187,0.0069419337,-0.0018639886,-0.03476266,-0.059478063,0.018843904,-0.015802173,0.057315994,0.01015324,-0.019151257,-0.008950325,0.063547835,0.00045374277,0.0023488642,0.005929789,0.019024078,0.010677859,-0.008303824,0.00021362343,0.047565494,0.045403425,-0.011181282,0.0032033578,-0.0072651836,-0.033109315,-0.0048858495,-0.006867745,0.081649855,0.021525294,-0.0015301399,-0.018557748,0.023189237,-0.014000449,0.02740739,-0.0042287502,-0.007948779,-0.02219299,-0.01679842,-0.07639306,-0.030311342,0.021016572,-0.008515792,-0.020115709,-0.076138705,-0.02838244,0.00761493,0.006555093,-0.01119188,-0.054009303,-0.009856486,-0.039150383,-0.03607686,-0.045106668,0.009353063,0.008404509,-0.021684268,0.0047851647,-0.012007955,-0.00036233183,0.05218638,-0.007413561,-0.032113068,-0.020571439,0.010375806,0.011626414,-0.000973063,-0.020857595,0.028340045,-0.0114038475,-0.021546489,0.03501702,0.022447351,-0.033808805,-0.024948567,-0.021981023,0.004541402,-0.0031026732,0.0060357726,-0.015569008,-0.047438312,0.032918543,-0.0260296,0.0015539862,0.01926784,0.007705016,-0.0067776586,-0.03794217,0.010524183,0.03325769,0.035313774,0.017211756,0.027979702,0.0397015,-0.022701712,0.008595279,-0.02662311,0.006820052,-0.008483997,-0.0016016789,0.008812546,-0.015314647,-0.015727984,-0.013025398,0.027301405,0.019363225,-0.013194973,-0.035949677,0.024482239,-0.035059415,0.014339597,-0.01893929,-0.033342477,0.0005302498,0.02433386,-0.02141931,-0.015113278,-0.0059986785,-0.010232728,-0.031265195,0.007153901,-0.014042842,-0.0032378025,-0.027937308,-0.026156781,-0.04283862,0.011954963,-0.018144412,0.028212866,0.015600803,-0.015282852,0.030141769,0.05108415,0.0065232976,-0.005707223,0.025669256,0.01529345,-0.005770813,-0.029166719,0.027153028,0.021546489,0.019289037,0.02141931,0.040337402,0.012548472,-0.030035784,-0.025881223,0.033427265,0.019193651,0.0011969536,-0.0064915027,0.014445581,0.0023568128,-0.0076308274,0.040846124,-0.024842583,-0.068762235,-0.0011731073,0.028806373,-0.054645203,0.027619356,0.023507189,-0.02552088,-0.029929802,0.019299636,0.015357041,-0.00559594,-0.0072651836,-0.0030735277,-0.051338512,-0.020041522,-0.03734866,0.0049971323,0.057824716,-0.010502987,-0.0043506315,-0.008833743,-0.04216032,0.011372053,0.030078178,0.030290145,-0.02850962,0.016692435,0.024439845,0.0043585803,0.012877022,0.026962258,0.027195422,0.020518448,-0.043538112,0.005166706,-0.0023978816,0.004758669,-0.03879004,-0.0012704798,0.038832434,-0.036034465,0.016756026,-0.018102018,-0.04964277,0.02037007,-0.033215296,-0.0091146,-0.0027237816,0.0006359023,0.009453747,0.02649593,-0.0028986547,-0.007699717,0.004536103,0.026453536,-0.0010710979,0.029654244,0.041821174,0.044894703,0.05863019,-0.01809142,-0.025393698,-0.019882545,0.011446241,-0.032261442,-0.027428586,0.025860026,0.0031212205,0.019829553,-0.019384421,0.019628184,0.05629855,-0.021641875,0.019119462,0.0068889414,0.034932233,0.027937308,0.0075142453,-0.0016559956,0.025605666,-0.016257903,-0.028361242,0.03961671,0.020603234,0.04224511,-0.025096944,-0.010524183,-0.022595728,0.0014731736,-0.02329522,-0.0240795,0.012792234,-0.0286368,-0.014286605,0.02395232,0.02297727,0.01522986,0.01574918,0.0049547385,-0.04146083,-0.046675228,-0.02609319,-0.022447351,-0.019755365,-0.013258563,-0.011700602,-0.015017892,0.0020507849,0.0012022528,-0.047438312,0.0045970436,0.0001821595,0.00689954,0.034995824,0.031943493,-0.018886298,-0.010677859,0.03391479,0.04447077,0.01906647,0.0023024962,-0.015357041,0.02467301,0.023655565,0.0035531041,0.026177978,0.009035111,-0.0038472088,0.005707223,-0.02825526,0.0116370125,-0.01412763,-0.039955862,0.032897346,0.0052038003,-0.012527275,0.042117927,-0.042796224,0.0036140447,-0.02096358,0.020984776,0.0023091203,-0.048243787,-0.008727759,-0.021504097,-0.03168913,0.0035557537,-0.039341155,-0.0033941285,-0.0071750977,-0.011700602,0.013035997,-0.02329522,-0.0462089,-0.0110117085,0.029378686,0.029209113,0.02232017,-0.02759816,-0.05218638,0.034020774,0.01900288,-0.04290221,-0.031455968,0.007699717,-0.0077421106,-0.035970874,-0.000096627344,-0.02850962,-0.005211749,-0.02369796,0.01060897,0.00086840405,0.00819784,0.0073711677,-0.007334073,-0.0010704355,-0.0384085,0.016003542,-0.03571651,-0.0305869,-0.02552088,-0.023867533,0.006729966,-0.043919653,0.00025833532,0.020062717,-0.020465456,-0.0015844565,-0.02121794,0.003762422,0.0050792694,0.0028191668,-0.015452426,0.03363923,0.013481129,-0.034529496,0.02545729,0.024482239,-0.028170472,0.007328774,0.015113278,0.0019275788,0.034847446,0.00956503,0.02643234,-0.021249736,0.032685377,0.020126307,-0.0201793,0.035907283,0.022489745,0.031138016,-0.009543833,-0.000031753716,0.02291368,-0.020094512,-0.017455518,-0.0041042194,0.009814092,0.02193863,0.022277778,0.0052965363,-0.0022879236,0.015145073,0.029527063,-0.041439634,0.0305869,-0.006502101,-0.034084365,-0.0011532353,-0.021164948,-0.040506978,-0.026792683,-0.037475843,-0.012304709,0.003910799,-0.0020799304,0.00270126,0.010492388,0.002401856,0.06630341,0.0069419337,-0.014265408,0.00852639,0.047438312,-0.027216619,-0.015961148,-0.0040909713,-0.028106881,-0.017932445,-0.003494813,-0.0036458399,0.065625116,0.00917819,0.0056224363,0.071560204,0.010132044,0.021567686,0.040189024,-0.04349572,0.031540755,0.038874827,0.0027688246,-0.043071784,-0.01705278,0.02129213,0.028361242,-0.01834578,-0.027555766,0.008743657,0.02010511,0.029060734,-0.026347551,-0.01575978,-0.0041307155,-0.009268276,-0.0068518473,0.0331729,-0.006613384,0.017232953,-0.004027381,-0.030883655,-0.0067140684,-0.0027052343,-0.004869952,0.023464795,-0.011795987,0.011181282,-0.009156993,0.027767735,0.026771488,-0.009353063,0.018992282,-0.014339597,0.00030934,-0.020062717,0.034275133,-0.015886959,-0.020295883,0.0036140447,0.025245322,-0.016999789,0.0046553346,0.010312215,0.0020613833,0.03715789,-0.012781636,-0.010449994,0.024884976,0.02759816,-0.0035848992,0.014848319,0.0041413135,0.0137248915,0.017646288,0.0035133602,-0.013279759,-0.009066907,-0.0004461252,-0.010979913,0.018208003,-0.008081258,-0.0038498584,0.0052673905,-0.0060039777,-0.021769056,0.009692211,0.028467227,-0.017338935,0.011223676,0.0037995162,-0.010328113,0.004302939,0.0070055234,-0.050490644,-0.03834491,0.04283862,-0.0036855838,0.03611925,-0.03376641,-0.019924939,-0.005511153,0.0061735515,0.020158103,0.034317527,-0.0129830055,-0.011213077,-0.015410032,-0.007848094,-0.031286392,-0.00036200063,-0.035695314,0.009082804,-0.014201818,-0.027089437,0.015696188,0.010238027,0.015219262,0.04544582,0.0066557773,-0.0227865,-0.008001771,-0.013237366,0.027025847,0.0022534789,-0.0013685147,0.014276006,0.0748669,0.019214848,0.014360794,-0.01803843,-0.036818743,0.018430568,-0.023125647,-0.0057390183,0.008717161,0.01522986,-0.011234274,-0.018218601,0.0019156557,0.004854054,-0.0041386643,-0.031116819,0.043834865,-0.017423723,0.0017778769,-0.012792234,0.0143289985,-0.01964938,-0.016575852,0.023380008,-0.03262179,0.011107094,0.020497251,0.00012121887,-0.034868643,0.0009531911,0.0065444945,0.0032139563,-0.0110647,-0.029823817,0.01901348,-0.012728645,-0.023634369,-0.011764193,0.015049688,0.020730415,0.0074559543,0.014911909,-0.031455968,-0.014159424,-0.05396691,0.01958579,0.016194312,-0.019882545,-0.0045652487,-0.030184163,0.027810127,-0.0005001107,-0.017360132,0.0004120117,-0.0037571227,0.032812558,-0.012792234,0.014350195,-0.023485992,-0.021917433,0.0008478697,0.008314422,0.020454857,0.01080504,-0.027047044,0.027153028,-0.0065074,0.01295121,-0.008998018,-0.017095173,0.004218152,-0.0020136905,-0.0039664404,-0.0117535945,0.011181282,0.006178851,0.039998256,0.022616925,-0.032833755,-0.009220583,0.045021884,0.018769717,0.019638782,0.018981684,-0.00299404,-0.007296979,0.032431018,0.001490396,0.026071994,0.010714954,-0.018197404,-0.019840151,0.014498573,-0.021016572,-0.02643234,0.030820064,-0.016893804,-0.021578284,-0.020846996,-0.00057297444,0.02069862,0.0075778356,-0.044046834,-0.015145073,0.014604556,-0.021875039,0.0033305383,-0.0052011507,-0.038281318,-0.02257453,0.039659105,0.0016983891,-0.022701712,0.008208439,0.0045652487,0.012029151,-0.053670153,0.0028933554,-0.008833743,-0.03202828,-0.0007471852,-0.034995824,-0.000025771431,-0.033427265,0.0011068675,0.042986996,-0.008346218,-0.039786287,-0.01639568,-0.019045275,-0.0067776586,0.04447077,0.020571439,-0.034995824,-0.0031795115,0.019501004,-0.009962469,-0.048159,-0.0017672784,0.0019818954,-0.013502326,0.015516016,-0.00003024262,0.03272777,0.008642972,0.009612723,0.036225233,-0.033342477,-0.027513374,-0.008860239,-0.009941272,-0.016300296,-0.064226136,0.009575629,-0.012569669,0.012018553,0.014170023,0.006825351,-0.017148165,-0.00638022,-0.013173776,0.011085897,0.008738358,0.005654231,0.01770988,-0.031010835,0.046844803,-0.0020123657,-0.005474059,-0.018462364,0.027195422,0.009119899,-0.014721138,-0.019289037,-0.011435643,-0.021122554,-0.008335619,-0.013152579,-0.013650702,-0.021769056,0.018197404,-0.015780976,-0.008499894,0.0020150153,-0.010730851,-0.021588882,-0.0072651836,-0.011901971,0.009077505,0.01314198,-0.039044403,-0.032431018,0.024312664,0.012866423,0.019140659,0.0305869,0.04313537,0.0015659094,-0.006162953,0.01282403,-0.044428375,-0.0069419337,-0.012877022,0.013714293,-0.01203975,-0.005648932,0.048201393,-0.020444259,-0.028170472,-0.000510709,-0.009935973,-0.0061470554,0.0076626227,-0.048625328,0.00043917002,0.0038498584,0.02257453,-0.0035107106,0.0109163225,-0.022871286,0.01998853,0.022426154,0.010582474,0.06329347,-0.01998853,-0.026220372,0.0058873952,0.006729966,0.020677423,0.041376043,-0.0032907943,0.039086796,0.031095622,0.009194087,0.019691775,0.043389734,-0.021790253,-0.02687747,0.0025621564,0.028912358,-0.00053389295,0.0072492864,-0.0029516465,-0.052313562,-0.029060734,-0.012007955,0.010206232,-0.016257903,0.00092801993,0.032770164,-0.029039538,0.029103128,0.0037253276,0.028318848,-0.0011797312,-0.055408288,0.012781636,-0.019617585,-0.01164761,0.0069737285,0.00950144,0.027153028,-0.017943043,-0.017042182,-0.013110186,0.011721799,-0.0007405612,-0.010884528,0.014530367,0.02291368,-0.008425705,-0.027682947,0.022934876,0.023231631,-0.00735527,0.015855163,0.0036140447,0.008939726,-0.0036882334,-0.026220372,0.015410032,-0.027301405,0.0076626227,-0.0085051935,-0.058163863,-0.0031980586,0.05383973,0.03662797,0.024164287,-0.006470306,-0.009098702,0.032812558,0.020942383,0.008309123,-0.027110634,0.025096944,0.00014249842,0.017593296,-0.010582474,0.005908592,0.041821174,0.014742335,0.014032244,0.0057973093,0.008738358,-0.014138227,0.016480468,-0.018430568,-0.033300083,-0.024037106,0.018409371,0.010296318,0.021398112,-0.015388835,0.021567686,0.027153028,-0.058206256,-0.005349528,-0.0019183053,-0.005063372,0.012325906,-0.02564806,0.0338512,0.013650702,0.013809678,-0.048074212,-0.031667933,-0.058079075,-0.0110329045,-0.0013168476,0.017784068,-0.0029516465,0.008468099,-0.006809454,0.010990512,-0.027047044,-0.0022004868,0.011531028,-0.0077739055,0.017413124,0.033808805,-0.015314647,0.022850089,-0.0074559543,-0.010497687,-0.024588222,-0.022108203,0.0016069781,0.0030231855,0.02609319,-0.0019792458,-0.012198726,-0.047226343,-0.01379908,-0.005479358,-0.013523522,-0.022256581,-0.009236481,-0.02096358,-0.020592635,-0.015240459,0.008060061,-0.008536988,0.025542075,0.009591526,0.028170472,0.01782646,-0.0013923611,-0.0019077068,0.024185484,0.010794441,0.0059774816,-0.044809915,-0.006809454,-0.0104764905,-0.011213077,-0.015092081,0.014265408,0.01658645,-0.001575183,0.043580506,0.0020322378,0.018303389,-0.021875039,0.008870837,0.01276044,0.025944814,0.0023806593,0.022510942,-0.029103128,0.0020521097,0.0067405645,-0.00279797,-0.024588222,-0.01705278,0.0011697953,0.0013009501,0.006560392,0.012781636,-0.033512052,0.014731737,-0.020603234,0.017232953,-0.008065361,-0.031561952,0.01568559,-0.03391479,0.006136457,-0.01782646,0.028149275,-0.023570778,-0.00032772153,-0.002584678,0.023062056,-0.0121245375,-0.008282627,-0.00015425599,-0.00950674,0.03800576,-0.0028271156,-0.055408288,0.069737285,0.03098964,-0.007334073,0.012198726,-0.008902633,-0.0008935752,0.007477151,0.021832645,0.004854054,0.027153028,-0.013332752,0.016607648,0.012961809,-0.01979776,-0.019373823,-0.014466777,-0.0034842147,-0.05252553,0.03467787,-0.050745003,-0.015325245,-0.0038896024,0.0065815886,0.037412252,0.0098034935,-0.024503436,0.040697746,0.016077729,-0.00038518457,0.013714293,0.027619356,-0.014371392,0.003441821,-0.007890488,-0.011859578,0.001064474,-0.028615603,-0.007037319,-0.019702373,0.043962047,0.008113054,-0.036945924,-0.023210434,0.002322368,-0.0260296,0.0017633041,-0.04086732,0.007832197,0.006215945,-0.02257453,0.00043155244,-0.01874852,-0.014519769,0.018695528,0.028170472,-0.0031821611,0.0005577393,-0.026008405,0.028594406,0.02505455,0.0010240676,-0.03495343,-0.023782747,-0.005866199,-0.012050348,0.002160743,0.011340258,0.049303625,0.014180621,0.02662311,-0.0013532796,-0.021164948,-0.01711637,0.019628184,0.012993604,-0.015664393,-0.0072598844,-0.014731737,-0.020836398,0.0130995875,0.0036723358,-0.03467787,0.013767284,-0.008706562,-0.0033808805,0.030968443,-0.0044142217,-0.042011946,0.0017818513,-0.007863992,0.008499894,0.00032225673,-0.014742335,-0.005317733,-0.05909652,0.044089224,0.04485231,0.00833032,-0.014021645,-0.025160534,0.00741886,-0.009156993,-0.0064862035,0.041757584,-0.026008405,0.0055747433,-0.047735065,0.009051009,-0.019946136,0.023549581,0.019405618,0.015176868,-0.0068041547,0.040400993,0.009342465,0.0061735515,-0.008595279,-0.032685377,-0.013756687,-0.03378761,-0.039680302,-0.033724017,-0.007440057,-0.0015076183,0.023973517,-0.016003542,0.032431018,0.046039328,0.01698919,0.00036465022,-0.0035557537,-0.012527275,0.0013214845,0.0032404521]},{"id":"class-WebSocketShard","type":"class","source":"main","text":"Class: WebSocketShard\nProperties: destroying: boolean, heartbeatAt: number, heartbeatInterval: number | null, id: number, lastHeartbeatAck: boolean, options: WebSocketShardOptions, reconnectDelayMs: number, reconnectTimeout: number | null, seq: number | null, sessionId: string | null, status: number, url: string, ws: WebSocketLike | null, WS: WebSocketConstructor\nMethods: connect() -> void; debug(message: string) -> void; destroy() -> void; handleHello(data: GatewayHelloData) -> void; handlePayload(payload: GatewayReceivePayload) -> void; scheduleReconnect() -> void; send(payload: GatewaySendPayload) -> void; startHeartbeat(interval: number) -> void; stopHeartbeat() -> void","meta":{"url":"/docs/classes/WebSocketShard"},"embedding":[-0.017448658,-0.0056210626,0.02577168,0.011335581,0.011907307,0.022583203,-0.0012767646,-0.022473255,0.0420439,0.0063989405,0.036260664,0.017712532,0.013160707,0.021560691,0.017272742,-0.0061735483,-0.050751735,0.050311945,0.012907829,0.018537138,-0.016096305,0.0042577144,0.026431363,0.031422976,-0.014150235,0.021582682,0.037602022,0.009554432,-0.026717227,-0.029685806,0.07155379,-0.025133984,0.0382837,0.02248425,0.00094486075,0.021846555,-0.017866459,0.018592112,-0.017745515,0.0057172664,-0.02742089,-0.037558045,-0.031598892,0.037887886,-0.035095222,-0.039998878,-0.064825006,-0.014831909,-0.0040735523,-0.005329702,0.014908872,0.01648112,0.013688455,0.06201035,-0.011445528,-0.0015213976,0.019086875,0.030565387,0.016338188,0.0060526063,-0.004821195,0.00063082343,-0.0076248543,-0.012204166,-0.025903616,0.038217727,-0.0261455,0.06135067,-0.025441837,0.044286825,0.036590505,0.02524393,-0.0061955377,0.0012259139,-0.01782248,-0.0022800348,-0.030125597,-0.001222478,0.01947169,0.015139761,-0.0449685,-0.008548413,-0.05488576,-0.033973757,0.010285582,-0.03595281,-0.07291714,-0.033533968,0.011291602,0.043891016,-0.0012836363,0.0074489387,-0.025573773,-0.0108683035,-0.0062615066,-0.050092053,0.021450745,0.013193692,-0.014172224,-0.02702508,0.02032928,-0.049124513,-0.08699041,0.0015983608,-0.009142129,-0.016997874,-0.010016211,-0.0018910959,-0.052466914,-0.008207576,-0.090948515,-0.007025641,-0.0113795595,0.028410416,0.0034413547,-0.03641459,0.000041895986,0.0058492036,0.011731391,-0.0060471087,-0.007899723,0.005678785,0.044836562,-0.011786365,-0.028212512,-0.0026153745,0.037118252,0.012369086,-0.016184263,-0.0014485575,0.030543396,-0.020857029,-0.006228522,-0.06561663,-0.0003662624,0.052554872,-0.034017734,-0.00006996265,-0.026893143,-0.017679548,-0.002484812,-0.041845992,0.06517684,-0.008636371,0.019515669,0.041648086,-0.011033225,0.02825649,-0.014480077,-0.006607841,0.021945508,0.032302555,0.049872156,-0.0044143894,-0.009065166,0.031005176,0.012281128,0.037118252,-0.02355074,-0.07212552,0.05910774,0.022913044,-0.03212664,-0.015425625,-0.04283552,-0.009356527,0.02484812,0.008867261,-0.039251234,-0.0100711845,0.023001004,-0.058008265,0.02702508,-0.026079532,-0.02081305,-0.020835038,-0.010527466,-0.011599454,0.014271177,-0.0049064043,0.06741977,0.028146543,-0.011544481,-0.018108342,-0.030873239,-0.017998395,-0.0112806065,0.046485774,0.012072228,-0.036656473,-0.03425962,0.054665864,0.004997111,0.011874323,0.04208788,0.014370129,0.02076907,0.028586334,-0.040614583,-0.047189437,-0.029641828,-0.008718831,0.01499683,-0.013391597,0.034413546,0.032742348,0.0063824486,-0.015425625,0.011198146,0.015062799,0.0384816,-0.024188435,0.0013990811,0.0039526103,-0.010884796,0.017657558,0.028036596,0.012413065,0.0017467899,-0.03131303,-0.06073496,0.01947169,0.04934441,0.012028249,0.018471168,0.0071135988,0.047453314,-0.018559126,-0.0052115084,0.012687934,-0.048596766,-0.017855464,-0.021263834,-0.027992617,-0.046002008,-0.021934513,-0.011654428,-0.0063549615,0.00075451424,-0.042241804,-0.0462219,-0.05026797,-0.00092493277,-0.004156013,0.042923477,0.023594718,-0.008394486,-0.0026785943,-0.008559408,0.018581117,0.023001004,-0.022407288,0.0048266924,0.008768308,-0.011187151,-0.03386381,-0.008834276,-0.006223025,0.036568515,-0.011423538,0.014798924,-0.016799968,0.006937683,0.015887404,-0.005107058,-0.03384182,0.03768998,0.009994222,0.022979014,-0.04327531,0.02788267,0.06434124,0.009570925,-0.025507804,-0.009504955,0.014315156,0.002497181,0.0052417438,-0.013710445,0.009735845,-0.019163838,-0.020714097,-0.0025466573,0.05655696,-0.0053187073,0.05783235,-0.010873801,0.062186267,-0.018625095,0.05774439,0.0036502548,0.020450223,0.025859637,-0.054577906,0.026673248,0.06711192,0.04241772,0.0043951487,0.019581638,-0.016195256,0.04382505,-0.016327195,-0.030257534,-0.022627182,0.039273225,0.0047387346,0.028036596,-0.009554432,0.003795935,-0.013633482,-0.0010568697,0.0042384737,-0.07476425,-0.031093134,-0.033577945,-0.040284738,0.038789455,0.036018778,0.0018003893,-0.04930043,-0.010346053,-0.05185121,-0.025353879,0.012358092,-0.03342402,-0.022671161,0.033577945,-0.02009839,0.012929819,0.0248921,-0.0021412263,-0.045342322,0.029751776,-0.0018484913,-0.016931904,-0.022209382,-0.026541311,0.024276393,-0.014205208,0.029355966,0.016470125,-0.03560098,-0.03256643,0.007130091,-0.00032090908,0.031840775,-0.015777458,-0.010532964,-0.016338188,-0.024760162,-0.008476947,-0.005546848,-0.10572545,-0.03252245,0.0064978935,-0.03377585,0.02918005,-0.018691063,-0.027179006,0.022440271,-0.016525099,0.021813571,-0.0038426628,0.046045985,0.026827173,0.047321375,-0.031137113,0.01198427,-0.0030647847,-0.05475382,0.014930861,0.043605153,-0.01740468,-0.0017096826,-0.01752562,-0.0026978352,0.026915131,0.0033478993,-0.016382167,-0.009395008,0.039559085,0.033929776,-0.025551783,-0.005057582,0.00000154882,-0.001675324,-0.060295172,0.08633073,-0.0072290436,0.015546567,0.06007528,0.02612351,-0.050707757,-0.028102564,0.041230287,-0.027266964,-0.019042896,-0.010802335,0.005599073,-0.0110387225,0.016239235,0.008779302,-0.050751735,-0.018460175,-0.0163162,0.020296296,0.0014375628,0.013908351,0.012610971,-0.051983148,0.019086875,0.022099433,0.026387384,0.036524538,0.019977449,-0.047761165,0.012621965,-0.044704627,0.0006390695,0.027948638,-0.00015684689,0.011346575,-0.064561136,0.00019464131,0.035557,0.051807232,0.012940813,-0.039822962,-0.04499049,-0.038921393,-0.0071905623,0.025221942,0.07318101,0.031796798,0.07155379,-0.021076923,-0.0269811,-0.0248921,-0.07388467,-0.010258095,-0.022385297,-0.0066023436,-0.018713053,0.052598853,-0.026233457,0.016129289,0.012995787,-0.049168494,-0.029795755,-0.011335581,-0.009873279,-0.030917218,0.0024985555,0.04969624,-0.0029108583,-0.042241804,-0.029663818,0.026277436,0.008125115,0.0012355343,-0.007218049,-0.059899364,-0.048816662,0.04327531,-0.024650214,0.021263834,0.024606235,-0.013523534,-0.0041340236,0.04499049,0.024584247,0.009070664,0.014260182,-0.004227479,0.013908351,0.012797881,0.015898399,0.056688897,0.0650449,-0.019999439,0.010807833,-0.019108864,-0.017701536,0.0015901148,0.0035650455,0.07784279,0.029465912,-0.026607279,-0.034435537,0.023902573,-0.014699972,0.032830305,0.00422473,-0.009026684,-0.029905703,-0.012171181,-0.05281875,-0.029026123,0.04417688,-0.018888969,0.008652863,-0.048728704,-0.00951595,0.007751294,0.028344449,-0.020318286,-0.028190522,-0.0054836283,-0.05000409,-0.0506198,-0.011995265,0.0054836283,0.020846033,-0.018460175,-0.009664379,-0.004656274,0.008454958,0.035073232,-0.014666988,-0.03170884,-0.006673809,0.0009867782,0.0014403114,0.018965932,-0.022209382,-0.0122481445,-0.031972714,-0.023440793,0.024936078,0.02918005,-0.023374824,-0.020955982,-0.035666946,-0.000028131082,-0.0015777457,0.017019862,-0.023946552,-0.0265633,0.022561213,-0.019548655,0.0023515008,0.021989487,0.009939248,-0.010560451,-0.0063109826,0.022429276,0.02524393,-0.001583243,0.015062799,0.029004132,0.018075358,-0.03608475,0.011786365,-0.01478793,0.012665944,0.019064885,0.0023982285,-0.014447093,-0.01325966,-0.023748646,-0.03390779,0.033468,0.006976165,-0.00945548,-0.05405016,0.017349705,-0.0046507763,-0.0014416857,-0.024210425,-0.022803098,-0.005610068,-0.020571165,-0.01627222,-0.013897356,0.015898399,-0.015447615,-0.019570643,0.007086112,0.003683239,-0.006404438,-0.04279154,-0.04591405,-0.058140203,0.025375867,-0.05018001,0.014568035,0.019460697,-0.015920388,0.033028208,0.014655993,0.00932904,0.03549103,0.04965226,0.02997167,0.009884275,-0.05303864,0.030609366,0.0048514307,0.01288584,-0.0057062716,0.02658529,0.003603527,-0.028432406,0.007899723,0.0044666147,0.007861242,0.035447054,-0.026761206,0.019647606,0.026255447,-0.00054114754,0.048464827,-0.007481923,-0.060339153,0.0039773486,0.036106735,-0.03654653,0.029949682,0.014403114,-0.037953854,-0.02568372,0.012116207,0.008361503,0.015843425,-0.0169429,0.00445562,-0.051719274,-0.024056498,-0.01865808,-0.004342924,0.0048789172,-0.0031527427,-0.020703102,-0.017184785,-0.04081249,0.02742089,0.029751776,0.009878777,-0.010906786,0.013776413,0.0022346815,0.012918823,0.02786068,-0.00985129,0.020626139,0.035864852,-0.049388386,-0.004513342,-0.006404438,0.0010932898,-0.012962802,-0.0034193653,0.037602022,-0.018372215,0.022220377,-0.024518277,-0.024870109,0.022583203,-0.003342402,-0.0075973677,0.018669074,-0.003526564,0.019570643,0.044066932,0.0021989488,0.0116654225,0.022759119,0.019592633,0.0018278761,0.019790538,0.030653344,0.013996309,0.06135067,-0.020780064,0.008476947,-0.03469941,-0.007426949,-0.029311987,-0.0064704064,0.05699675,-0.00020804117,0.025573773,-0.03474339,0.018317243,0.036326632,-0.009158622,0.014853898,0.015502588,0.035381082,0.01995546,0.0041725053,0.016975883,0.0007325248,-0.0045710644,0.0069321855,0.03859155,0.015392641,0.032874282,-0.005486377,-0.058536015,-0.0030290517,-0.0067067933,-0.010335059,-0.009785322,0.00089401007,-0.020043418,-0.011324585,0.049828175,0.002244302,-0.0029823242,0.030719314,0.017833473,-0.03938317,-0.020648127,-0.04153814,-0.0071630753,-0.03256643,0.0050108545,-0.006866217,-0.02357273,0.016184263,0.019878495,-0.030939208,-0.003666747,-0.018185306,-0.0067342804,0.042659603,0.0147109665,-0.0040543117,-0.012775891,0.0066903015,0.03375386,0.027047068,0.005827214,-0.011225633,0.034457527,-0.008812287,-0.0048981584,0.025881626,0.017888447,-0.0043264315,-0.016591068,0.0036172706,0.009406003,0.01114867,-0.04626588,0.041362226,0.00033963448,0.012336102,0.011077204,-0.005162032,0.0051043094,-0.043385256,0.02051619,-0.006701296,-0.02076907,0.001294631,0.010379038,-0.008042655,-0.02658529,-0.03384182,-0.01712981,-0.005684282,0.00095585553,0.03390779,0.0037602023,-0.048552785,-0.012171181,0.028784238,0.03258842,0.0073829703,-0.029861722,-0.03894338,0.047805145,0.03907532,-0.0382837,-0.034589462,0.012358092,-0.023022993,-0.03434758,-0.030279523,-0.029839734,0.006294491,-0.0051675295,0.015546567,-0.004950383,0.0006531565,0.0136994505,-0.018372215,-0.0011970527,-0.04591405,0.005750251,-0.022187391,-0.03173083,-0.004612295,-0.019570643,-0.004661771,-0.07282918,0.018471168,0.027530838,-0.014666988,-0.002428464,-0.02056017,-0.0033204125,0.0073389914,0.010532964,-0.022957025,0.01928478,0.0060745957,0.0026662252,-0.009823803,0.016821958,-0.015535573,0.034193654,0.0136004975,-0.006772762,0.004821195,0.009878777,0.036964327,0.013149713,0.05361037,0.0064264275,0.015612535,0.0074489387,0.035710927,0.006332972,0.012501023,-0.013589503,0.000833539,-0.029883713,0.00066827424,0.017008867,-0.007866739,0.0039828457,0.03779993,0.0075204046,-0.005370932,0.020241322,-0.028058585,-0.017998395,0.038085792,-0.0068112435,-0.023264877,-0.05141142,-0.02079106,-0.029597849,-0.007245536,-0.028454395,-0.0257277,-0.021890534,-0.001907588,0.037492074,0.0019254545,-0.002039525,0.054182097,-0.0030153084,-0.019317765,0.027244974,0.057216644,-0.012171181,-0.04325332,0.013820392,-0.040878456,-0.024232414,-0.014161229,0.014260182,0.0462219,0.0011551352,0.008064644,0.061746478,-0.021505717,0.0010190753,0.045562215,-0.029531881,0.016415153,0.045474257,-0.016832951,-0.012182176,-0.034963284,0.016404158,0.026805185,-0.024232414,-0.008938726,0.021450745,0.041670077,0.03984495,-0.025969584,-0.027508847,0.0035183178,-0.005909675,-0.0049778703,0.02271514,-0.005115304,-0.0015365154,-0.024188435,0.0071960595,0.016283214,0.008312026,-0.0036859878,0.029070102,0.00014499317,-0.008465952,-0.01740468,0.017668553,0.042373743,-0.018339232,0.007251033,-0.002252548,-0.010274588,0.003089523,0.025177963,-0.04149416,-0.023198908,0.014919867,0.021010954,-0.045254365,0.007619357,-0.026189478,-0.014370129,0.036128726,0.009532442,-0.02915806,0.05233498,0.012050238,-0.008801292,0.005260985,0.0097578345,0.019229807,0.035205167,-0.001374343,-0.0020780065,0.0048981584,0.008592392,0.012072228,0.030455438,-0.022781108,-0.015370651,0.0071520805,-0.014974841,-0.032368526,0.002208569,0.006552867,-0.014941856,0.0099282535,0.023352835,-0.005871193,0.0060086274,-0.009834798,-0.045518238,-0.02737691,0.009169616,0.013270656,0.052598853,-0.017899442,-0.025199952,0.027552826,0.008597889,0.011874323,0.032302555,0.0033973758,-0.018273264,-0.0033616428,-0.009510453,-0.022000482,-0.012534007,0.0018539886,0.0041312748,-0.028168533,-0.007701818,0.0076523414,-0.0027706753,0.020714097,0.019779542,0.008828779,-0.0044226353,-0.007982183,0.00084178505,0.03944914,0.015084788,0.019317765,0.00021525646,0.08316424,0.044440754,0.02167064,0.0040625576,-0.040878456,-0.0016203503,-0.01177537,0.017415674,-0.0035815376,-0.011423538,-0.01627222,-0.03980097,0.015491594,0.019636612,0.012105213,-0.03386381,0.011313591,0.016909916,0.016470125,-0.004950383,0.03432559,-0.018625095,-0.024232414,0.051103566,0.0073884674,0.0057392563,0.012413065,-0.01947169,-0.03131303,0.019317765,-0.0098293,-0.0032571927,0.008636371,-0.015029814,0.020208338,-0.02264917,-0.021725614,-0.027464869,0.0040570605,0.029268008,-0.0103405565,-0.011467517,-0.036964327,-0.0027019582,-0.06772762,0.0010108292,0.039031338,-0.031203082,-0.010043698,-0.023484772,0.046177924,-0.0037492076,-0.0047442317,0.0027157017,-0.0068057464,0.03733815,-0.0066518197,-0.017701536,-0.013325629,-0.021362787,-0.019350749,0.011896312,0.012534007,-0.0015736227,-0.0073389914,-0.0036639983,0.008114121,0.018954938,-0.003185727,-0.0038041812,0.0042742067,-0.0040543117,0.00078406266,0.019449702,0.0032929257,0.0202853,0.045518238,0.040130813,-0.029905703,-0.009818306,0.017558604,0.006833233,-0.004461117,0.03214863,0.010137154,-0.011033225,0.0265633,0.009400506,-0.0026057542,0.0015255207,-0.021890534,0.004461117,-0.011995265,-0.023001004,-0.015722483,0.02056017,0.0020670118,-0.042131856,-0.02248425,0.017074836,0.010137154,-0.020439228,-0.05879989,-0.023396814,0.027970627,-0.00784475,-0.005843706,-0.006327475,-0.05361037,-0.025595762,0.017184785,-0.010675896,-0.019482685,0.0024958067,0.013413587,-0.007306007,-0.04197793,0.0010754233,0.00782276,-0.03344601,-0.0122481445,-0.019548655,0.00034753696,-0.04356117,0.014205208,0.047673207,-0.0016217247,-0.035710927,-0.0053324504,-0.017976405,-0.020318286,0.04334128,0.011511496,-0.019669596,-0.010192127,0.0124900285,-0.026739215,-0.025221942,-0.008713334,-0.00009251046,-0.009713856,0.0148099195,0.033819832,0.011687412,0.009647887,0.02918005,0.01627222,-0.023088962,-0.02484812,0.026475342,0.020670118,-0.0102690905,-0.04032872,-0.0015653766,-0.022143412,0.016492115,-0.005871193,-0.0108957905,-0.0079491995,-0.0020065408,-0.0042467196,0.0008307903,0.0012939438,-0.017030858,0.014897877,-0.028168533,0.051499378,-0.008790297,0.0027541833,-0.024298383,0.004609546,0.0034578468,-0.01884499,-0.0015640022,-0.0120062595,-0.007426949,0.0035567994,-0.012468039,-0.004848682,-0.009136632,-0.0038893905,0.022671161,-0.0022635427,0.0051592835,-0.00011484353,-0.005263733,0.0011730017,-0.017019862,0.018987922,-0.026211469,-0.022209382,-0.038921393,0.015084788,0.020780064,0.026673248,0.023836603,0.043934993,-0.02104394,0.022803098,0.013347618,-0.06394543,0.0049311426,-0.021747602,0.021241844,-0.0027074555,0.00832302,0.013798403,-0.01305076,-0.029333975,-0.0045985514,0.016821958,-0.012962802,-0.0038206733,-0.022935035,0.0069871596,-0.004549075,0.015843425,0.01091778,0.022759119,-0.02662927,0.011577465,0.019251795,0.00033396532,0.041692067,-0.0082625495,-0.014161229,0.0065473695,-0.0049393885,-0.0010767977,0.028146543,-0.005684282,0.02311095,0.033665903,0.006360459,0.0021494722,0.031071145,-0.016536094,-0.041010395,0.027222985,0.03258842,-0.014183219,0.0019666848,-0.019592633,-0.030059628,-0.0031637375,0.0046425303,0.0177785,-0.016404158,-0.02079106,0.033380043,-0.020461217,0.046045985,0.017723527,0.017283736,-0.0015049055,-0.03685438,0.025969584,0.010197625,0.0010307572,0.009609406,0.00022779734,0.013897356,-0.022869065,-0.031884756,-0.03977898,-0.01838321,0.009460976,-0.011973276,0.019185828,0.012523013,-0.03342402,-0.025903616,0.03804181,0.000073742085,-0.015304683,0.028476385,0.005766743,0.0154366195,-0.0019433209,-0.017019862,0.0140842665,-0.04019678,0.018394206,-0.013193692,-0.0403727,0.033358052,0.024716184,0.025793668,0.03980097,-0.00545889,0.014337146,0.023594718,0.021219855,0.017657558,0.0016052325,0.035227157,0.014128245,0.011544481,0.015711488,0.031774808,0.023836603,0.025463825,0.04065856,0.009235584,-0.00353481,-0.0064649093,0.02120886,-0.003018057,-0.030697323,-0.01014265,0.019482685,-0.008218571,0.013270656,-0.018042374,0.034391556,0.017140806,-0.05827214,0.00824056,0.011291602,-0.009988724,0.015975362,-0.0351392,0.0053681834,0.015227719,0.021549698,-0.038393643,-0.042681593,-0.06332972,-0.008564905,-0.004543578,-0.0048871636,0.012116207,-0.0068112435,0.00057207025,0.028740259,-0.021076923,-0.002003792,0.01219317,0.012501023,0.0011214638,0.048508808,-0.027596805,0.015315678,-0.011060712,-0.010488985,-0.018273264,-0.03562297,0.014601019,0.006712291,0.017459653,0.005538602,0.007212552,-0.05699675,-0.0008720206,-0.005153786,-0.015458609,-0.020208338,-0.015821436,-0.009010192,-0.015799446,-0.019064885,0.02528791,-0.0019020906,0.01930677,-0.003735464,0.03390779,-0.0038014324,0.009010192,0.0033643914,0.026893143,-0.000054716027,0.004400646,-0.050751735,0.009554432,-0.018042374,-0.00041814384,-0.025397858,0.030455438,-0.0011358944,-0.017162794,0.070806146,0.018295253,-0.009510453,-0.022055455,-0.012962802,0.0016574576,0.018350227,0.005467136,0.03219261,-0.047541272,-0.0019144597,0.0007531399,-0.025661731,-0.020076402,-0.0031637375,-0.0015681253,0.0067782593,0.021934513,0.016536094,-0.033533968,0.01583243,-0.034611452,0.012369086,-0.021505717,-0.027618796,0.00046143564,-0.0025232937,0.007245536,-0.023748646,0.0028476384,-0.010818828,-0.009466474,-0.0050960635,0.039273225,-0.030609366,-0.0092026,0.010785843,-0.005137294,0.03940516,-0.018691063,-0.03296224,0.031950723,0.02568372,-0.010846314,0.033336062,0.0007290889,0.0035760403,-0.007657839,0.019526664,-0.0060416115,0.010983748,-0.029663818,-0.00057962915,-0.00032571927,-0.02528791,0.0006236081,-0.022352314,-0.006712291,-0.060295172,-0.0015186489,-0.05018001,-0.004112034,-0.0026868405,0.009933751,0.02790466,-0.013369608,-0.013963324,0.06847526,0.021307813,0.01988949,0.020494202,0.010120661,0.008306528,0.0070311385,0.012105213,-0.003149994,0.0027830445,-0.0027981622,-0.018460175,-0.0006115826,0.052862726,0.014095261,-0.048464827,0.017217768,0.026893143,-0.02528791,0.017888447,-0.040130813,0.0044143894,-0.016107298,-0.0046782633,-0.0014265679,-0.021780586,-0.017228764,0.016239235,0.01566751,-0.0017014366,0.012599976,-0.01886698,0.013479555,0.027003089,0.0036777416,-0.015931383,-0.033709884,0.006904699,-0.005101561,-0.0034001244,-0.0048349383,0.032346535,0.017767506,0.01325966,0.005766743,-0.039669033,-0.0023460034,0.0184052,0.003892139,-0.009807311,0.016657036,-0.008015168,-0.011918302,0.005948156,-0.0056622927,-0.019317765,0.02871827,-0.03135701,0.0039828457,0.0118633285,-0.0006356336,-0.019680591,-0.034501504,-0.014535051,-0.0019419466,0.017052848,-0.006492396,0.0030592873,-0.046485774,0.028894186,0.035205167,0.019438706,-0.030345492,-0.0080206655,-0.004892661,-0.025859637,0.009362024,0.032280568,-0.0257277,-0.0042879498,-0.011220136,0.005959151,-0.02317692,-0.008163597,0.029224029,-0.00508232,0.004463866,0.0248921,0.024562256,0.01175338,-0.017536616,-0.021472733,-0.013743429,-0.015887404,-0.029355966,-0.026849164,-0.0073554832,-0.0071355887,0.03685438,-0.005799727,0.031994704,0.030059628,0.002172836,0.0059976326,-0.0060800933,-0.014952851,0.012577986,-0.0076468443]},{"id":"interface-APIApplicationCommandInteraction","type":"interface","source":"main","text":"Interface: APIApplicationCommandInteraction\nDescription: Minimal application command interaction (slash command) payload from the gateway.\nProperties: application_id: string, channel_id: string, data: { id?: string; name: string; type?: number; options?: Array<{ name: string; type: number; value?: APIApplicationCommandOptionValue; }>; }, guild_id: string, id: string, member: APIGuildMember & { guild_id?: Snowflake; }, token: string, type: number, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIApplicationCommandInteraction"},"embedding":[-0.010168191,0.0053321,0.011313736,0.00556239,0.04371968,-0.041523065,-0.008136915,0.023040814,0.0250839,0.0315084,-0.014148075,-0.04889235,0.011118876,0.011868794,0.0006284999,-0.008408539,-0.016202971,0.034555316,-0.008438064,0.010740964,-0.004608753,-0.016781649,0.008863214,0.04315281,-0.06452845,-0.009223412,-0.008898644,0.03287833,-0.015895918,-0.018907404,0.08384919,-0.035594575,0.016486404,-0.037720326,0.01089449,0.013274155,0.010168191,0.005066381,0.01394731,-0.017738238,-0.030540003,-0.009595418,0.014478749,0.04142859,-0.0023914736,0.025060281,-0.037862044,-0.03353968,0.009707611,0.02737499,-0.042892996,-0.015140094,0.034437217,0.08219583,0.043436244,0.018659398,-0.012211277,-0.029429886,-0.01767919,0.0426568,-0.031862695,-0.022828238,-0.02964246,0.04832548,0.038783204,0.028036335,0.004431607,0.058245666,0.042137172,0.023820257,0.008319966,-0.014998377,-0.04275128,0.022473946,0.010067808,-0.0007624667,-0.0660401,0.011166114,0.035074946,-0.036492113,-0.017513853,0.018494062,-0.040625524,-0.10931101,-0.014608655,0.0051992405,-0.01900188,-0.0075641423,0.009825708,-0.019438842,-0.033563297,0.01723042,-0.050451234,-0.0067728893,-0.0113668805,-0.020336382,0.019568749,0.003909026,-0.007753098,0.034153786,0.050356757,-0.054986175,-0.050073322,-0.042373367,0.056450583,-0.047994807,-0.005264194,0.04542028,-0.01815158,-0.005975731,-0.039420933,0.018328726,-0.023832066,0.03533476,-0.0112310685,-0.0014370985,0.049837127,-0.021588216,0.01723042,-0.036374018,-0.012719097,-0.012695476,-0.010546103,-0.033185385,-0.039208356,0.0059403023,0.0020253714,-0.034697033,-0.0344136,-0.019698655,0.015399909,0.0068142232,0.0103512425,-0.0006196426,0.003117773,-0.026075918,-0.012636428,0.004378463,-0.042538702,-0.027918238,-0.000065599444,-0.026075918,0.04634144,0.030114852,-0.043790538,0.00498076,-0.05522237,0.050451234,-0.024753228,0.035476476,0.012482901,0.014679514,-0.014679514,-0.013144247,0.03349244,-0.037295178,0.013604827,0.026170397,-0.016025824,-0.054513786,-0.018269677,-0.054608263,-0.021588216,0.01046934,-0.063347474,-0.011290117,0.03335072,0.0427749,-0.05201012,0.0076940493,-0.019793134,-0.051962882,-0.030799817,-0.0068024136,-0.04879787,-0.025863344,-0.04216079,-0.04870339,-0.03663383,-0.010050094,0.045703717,0.0029583413,-0.023796638,-0.051821165,-0.034295503,0.02184803,-0.010634676,-0.0015396955,-0.021021347,-0.010835442,-0.022958146,0.04504237,0.0010968301,0.039231975,0.047640514,-0.0034543506,0.05763156,-0.0067728893,0.038358055,-0.0075641423,0.057678796,-0.03389397,0.028603204,-0.012919862,-0.0033539678,-0.026666407,-0.0032092985,-0.029571604,-0.024021022,0.00023102816,-0.0070799426,-0.019639608,-0.005394101,0.018187009,-0.04917578,-0.0000147045175,0.008951787,0.011833365,-0.016155733,-0.014207124,-0.02228499,0.024209978,0.031815454,-0.05994627,-0.012412042,0.03682279,-0.005910778,-0.07822776,0.004030076,0.0010842823,-0.013285964,0.021741742,-0.0011684267,-0.050262276,-0.033043668,0.005704107,0.007806242,0.022922717,0.004334177,-0.015163713,0.00014402354,-0.015140094,0.029996755,-0.0035635908,0.0032594898,0.0006598695,0.009170268,-0.027941858,-0.030398285,0.0028786254,0.012187658,0.03755499,0.018954642,0.0070917523,-0.0075523322,-0.042916615,0.038688727,0.03932645,0.062875085,0.026619166,0.033445198,-0.014006359,0.012884432,0.04173564,-0.020360002,-0.0065189796,0.033327103,0.04686107,-0.0036403541,0.019108169,0.025036661,0.039775223,0.035618193,0.008278632,-0.033657774,-0.0045703715,0.024257218,-0.0362323,0.017502043,-0.0034248263,-0.06594562,0.01858854,0.0012710239,0.05290766,0.017927194,0.044829793,0.033964828,-0.013404061,0.057300888,0.006855557,-0.006459931,0.027445849,0.05805671,-0.048231002,0.012919862,0.056922976,0.0034307311,-0.034177404,0.062024783,0.005772013,0.0019471318,0.0020002758,0.002747242,-0.039727986,0.047120884,-0.036988124,0.029500745,-0.009223412,-0.0118274605,-0.038759585,0.011467263,-0.004573324,-0.05715917,-0.015907727,-0.060229704,-0.01621478,0.007386996,0.025886962,0.0019057977,0.02739861,0.03618506,-0.01347492,-0.0019781324,-0.0641033,-0.024021022,-0.042892996,-0.0023088052,-0.034531698,-0.008260917,0.033256244,0.033563297,-0.01994666,-0.011071636,0.029406266,0.05711193,0.0361142,-0.04360158,0.010835442,0.006601648,0.03531114,0.002387045,0.011443644,-0.040578287,-0.00017733072,-0.005627344,0.013203296,-0.018789306,0.033043668,0.024174549,0.032264225,-0.031012392,-0.020135617,-0.031272206,-0.041263252,0.020324573,-0.033728633,0.0036285443,-0.052765943,-0.041097917,0.029831417,-0.060749333,-0.015659723,0.017750047,0.008101486,0.007570047,0.004703231,0.026501069,-0.057489842,0.005311433,-0.03847615,0.06542599,0.024564272,-0.025792485,-0.008945882,0.01209318,-0.00008317567,-0.038783204,0.032264225,0.016297448,-0.044475503,0.048514437,0.010333528,-0.012990721,-0.007977483,0.01019181,-0.013061578,-0.02418636,0.052340794,-0.030965153,0.027752902,0.051207058,0.008827785,-0.0150101865,0.0073633767,-0.030705338,0.019450651,0.017903574,0.0010739488,0.038688727,-0.009737135,0.02416274,0.0031295826,0.004561514,0.012223087,-0.028225292,-0.05252975,0.010723249,-0.018765686,0.048514437,0.05805671,0.043837775,0.010404386,0.022556614,0.027233273,0.04175926,-0.06887443,-0.030020373,-0.033964828,0.03767309,0.03398845,0.03115411,0.0464123,-0.012400233,-0.011520407,-0.05309662,0.015069235,0.022532996,0.013923691,0.039657127,-0.055411328,-0.028201673,0.020489909,0.050120562,-0.02130478,0.046648495,-0.031059632,-0.008467588,0.021611834,-0.0052996236,0.0063300235,0.01046934,-0.02458789,-0.008993122,0.01621478,-0.021257542,0.022922717,0.026784504,-0.07071676,0.048986826,-0.005237622,-0.062402695,-0.026784504,0.01578963,0.05205736,-0.00579268,-0.054655503,0.030705338,-0.00950094,0.0006646672,0.036444876,0.0131678665,0.01952151,0.008402634,0.036988124,-0.009111219,0.031319447,-0.0053557195,-0.013699305,-0.050356757,0.05059295,-0.003787976,0.002700003,0.021009538,0.014148075,-0.044286545,-0.014112646,0.024304457,0.009683992,0.034767892,0.016462786,0.00045024656,0.03108325,0.009802089,0.011567646,0.051254295,0.06934683,-0.002016514,0.019391602,-0.040153135,0.024753228,-0.025225617,-0.029406266,0.00950094,-0.011744793,0.019816753,0.0058960156,-0.0047061834,-0.009300175,-0.0066666016,-0.012955291,-0.01810434,-0.029973134,0.007522808,-0.004334177,0.000013828013,-0.029453507,0.014029978,-0.049270257,-0.030610861,-0.024103692,-0.030894294,-0.029075595,-0.0006251784,-0.010864966,-0.026690025,0.018423203,-0.067693464,0.017998053,0.01997028,-0.0003509709,-0.033657774,0.010504769,0.0038499772,0.0062001166,0.0029184835,-0.022662902,0.014289793,-0.067457266,-0.03155564,0.02284005,-0.0038145478,-0.01488028,-0.013852832,0.04879787,0.0037348322,-0.020289144,-0.037318796,-0.026855363,0.031413924,-0.0027649568,0.0129789105,-0.027020698,0.01390007,0.028957497,-0.017041463,0.034082927,0.015305431,0.003979884,0.029571604,0.007853481,-0.015860489,-0.0021065634,-0.0069323205,-0.0037997856,-0.004667802,0.028744921,0.010286288,-0.023111673,0.009430082,0.012896243,0.0017301277,-0.023194341,0.02687898,-0.05238803,-0.030965153,0.017584711,0.036326777,-0.015364479,-0.021895269,-0.024965802,-0.0025405716,0.03198079,-0.002821053,-0.029146453,0.0024948088,-0.009199792,-0.03899578,0.04593991,0.023572253,0.009430082,-0.007162611,-0.008993122,0.030705338,0.05758432,-0.03814548,-0.009187982,0.003855882,0.0029849133,-0.028697683,0.016840698,-0.011095257,0.0037732138,0.015978586,0.007953864,-0.047309842,0.024422554,0.038617868,0.009855233,-0.0157542,-0.008786451,0.014585036,-0.025060281,-0.019734085,0.0125183305,0.0129789105,0.005154954,0.0172068,0.026099538,-0.0015426481,0.014431509,0.010197716,0.018470442,-0.017383946,-0.015435338,-0.02739861,0.0019973232,-0.014159885,0.01717137,0.020076567,-0.010522484,-0.036350396,-0.026808122,-0.012766335,-0.0080365315,0.01343949,0.03807462,-0.024705987,-0.020230094,0.004053695,-0.0036521638,-0.010032379,-0.004679612,-0.015482577,-0.034626175,-0.014419699,0.0023161864,-0.01811615,0.004723898,0.009790279,0.005704107,-0.015140094,0.008928168,0.024942184,-0.0069854646,0.032264225,0.016793458,-0.02789462,-0.009908376,-0.0062414506,0.00232652,-0.02510752,-0.018753877,0.03157926,-0.035547335,0.028201673,0.013959119,-0.027776523,0.01000876,-0.026831742,0.0012245231,-0.012600998,0.0054561025,-0.0023442346,-0.0002238316,0.029666081,0.022166893,-0.03531114,0.032311466,0.009672182,0.016876128,0.03486237,0.026146777,0.033610538,0.031862695,0.0032181558,0.008491207,-0.039680745,0.0010636152,0.0028594346,-0.0077412883,-0.017738238,0.012600998,0.0004336391,-0.02320615,0.012010511,-0.018269677,0.042562325,-0.0025390952,0.026690025,-0.03391759,0.021930698,0.012211277,0.019214457,-0.01439608,0.005721822,0.021623645,0.023713969,0.016628122,-0.017714618,0.002482999,0.009223412,-0.013781973,0.017088702,0.003348063,0.0065248846,-0.034012068,0.00250219,0.00927065,0.018068912,0.008691973,-0.030516382,0.030091232,-0.040153135,-0.017466614,0.003300824,0.029925896,-0.013203296,0.005910778,0.0069972742,-0.0037259748,0.006082019,-0.0038115955,-0.024174549,-0.002801862,-0.014726753,0.027941858,-0.016876128,0.014289793,0.013640257,-0.008987216,0.015081045,0.005650963,-0.012660047,0.009205697,-0.008999026,0.017218608,0.012412042,0.026382972,0.010144572,0.0061942115,0.022438517,0.00091820775,-0.0315084,0.024540652,-0.048042044,-0.03519304,-0.017360326,0.015482577,-0.0056184866,-0.008184154,-0.012648238,0.0066606966,-0.020891441,0.0111365905,-0.005284861,-0.03068172,0.000097522665,0.02320615,-0.03531114,0.049978845,-0.015187333,-0.021470118,-0.0074991887,0.07988112,-0.016415546,-0.03016209,-0.010711439,-0.068968914,0.046719354,0.047427937,0.003997599,0.012305755,-0.041003436,0.021552786,0.016887937,-0.07605476,-0.017466614,-0.034626175,0.02829615,-0.01346311,0.002826958,-0.025036661,-0.033303484,-0.011792031,0.012412042,-0.03897216,-0.029618843,-0.005506294,-0.014750373,-0.05385244,-0.038358055,0.0126128085,-0.0028254816,-0.044404645,-0.0077767177,0.0025450003,-0.0022984718,-0.09244669,-0.011514502,0.04133411,-0.022166893,-0.015222763,0.050923623,0.0053202906,0.030776197,-0.029784178,-0.0022645188,0.021352021,-0.017950814,0.002050467,-0.0033510153,0.030847056,-0.00011726708,0.039727986,-0.018340535,0.022816429,-0.0009610181,-0.015860489,0.015931347,0.0043666535,0.032358702,0.00034285168,-0.00019135479,0.0038027382,0.014514177,0.052293554,-0.018895593,0.01112478,-0.004836091,-0.028768541,-0.00879826,0.016344689,0.03446084,0.0036639736,-0.017147752,0.004611706,-0.022592044,-0.012494711,-0.025910582,-0.00976666,0.01045753,-0.0005011761,-0.03157926,-0.019438842,0.0013485253,0.022131464,0.00765862,-0.0050161895,0.013392252,-0.00029395195,-0.014762182,-0.017336708,0.00082446786,-0.029288169,0.045585617,-0.018364154,-0.01183927,0.0003120356,0.025768865,-0.0071448963,-0.021233924,0.021682693,-0.04220803,-0.0013020245,0.010380766,-0.016179351,0.014915708,0.03190993,0.015057426,0.030847056,0.04797119,0.0029701511,0.028012717,-0.0043135094,0.005810395,0.016970605,-0.013451301,0.0020519432,-0.027658425,0.063253,0.034295503,0.0122467065,0.00061115436,-0.025698006,0.036350396,-0.009660372,-0.049459215,0.016994225,-0.013215105,-0.0065248846,0.0073102326,-0.0068024136,0.033634156,0.010900395,0.026713645,-0.019167216,-0.02370216,0.026288494,-0.006070209,-0.030067613,-0.03198079,-0.027823761,0.040176757,-0.031012392,0.05064019,0.003625592,-0.0011558789,-0.016108492,0.034933228,-0.03472065,0.025154758,-0.01209318,-0.020088378,0.03774395,0.016132113,0.026524689,-0.0023368534,0.005196288,0.011874699,0.0009610181,0.028886639,-0.011130685,0.011650315,0.02232042,0.005999351,-0.015919536,0.032594897,-0.016061254,-0.031130489,-0.002813672,0.014927519,0.02180079,0.011561741,0.031744596,-0.02553267,-0.060229704,-0.023619492,-0.030280188,-0.0024372363,-0.0005465698,-0.028012717,0.0069441306,0.007227564,0.00037311416,0.01440789,-0.0033628251,-0.033516057,-0.0038854063,-0.018907404,-0.01486847,-0.0063536433,-0.050073322,0.0064953603,-0.041641165,-0.0066370773,0.027989097,0.065378755,-0.0006351429,-0.0021346116,-0.006743365,0.027918238,-0.039302833,0.0023117578,-0.019580558,-0.015281811,-0.031886313,0.003342158,-0.013581208,0.0185413,0.0064776456,-0.0044197976,-0.002801862,0.0151991425,0.034697033,-0.027351372,0.0102567645,0.0066606966,0.009199792,0.023347868,0.00087096874,-0.008308156,0.028886639,0.004304652,0.009058075,-0.025485432,-0.003808643,-0.04690831,-0.00696775,0.033610538,0.023536824,0.018175198,-0.00042515085,-0.016781649,-0.00090565986,0.01808072,-0.004006456,-0.004239699,0.016911555,0.034082927,0.0021626598,-0.029453507,0.03807462,0.010924015,-0.04643592,-0.006554409,-0.0180571,0.02087963,0.020608006,0.031130489,-0.004499513,-0.0076999543,0.034130163,-0.019604178,-0.041050676,-0.027115176,-0.006902796,-0.01046934,-0.0039503598,-0.011573551,0.05205736,-0.018871974,-0.024540652,0.020584388,-0.03892492,0.008544351,-0.01909636,0.013781973,-0.015364479,-0.0020932774,-0.020466289,-0.030020373,0.024398934,-0.009099409,0.0008274203,-0.013841022,0.010463434,0.020230094,0.0013883832,0.011957368,-0.012813574,-0.036350396,-0.035476476,-0.025579909,0.027351372,0.028555965,0.0063359286,0.008060152,0.004540847,0.0072157546,0.013108818,0.005600772,0.016391927,-0.01045753,0.032665756,-0.007386996,0.0012097608,0.01907274,0.03897216,0.008957692,0.023088053,-0.037531372,-0.015116475,0.014313412,0.002116897,-0.013545779,0.0070445132,0.0049423785,0.047711372,0.016439166,-0.0059875413,0.022107843,-0.010746868,0.019403413,-0.029618843,-0.0029199596,-0.0025878106,-0.008290442,-0.017053273,0.007203945,-0.018978262,0.009170268,-0.0111484,0.004635325,-0.007906625,-0.002468237,-0.010032379,-0.022910906,0.02834339,0.035429236,0.0042456035,-0.039350074,-0.00036960814,-0.0048980922,-0.031413924,-0.008632924,0.03951541,-0.009908376,-0.060229704,0.035594575,0.0034130164,-0.011567646,-0.009624943,0.010309908,0.023997404,-0.0021552786,0.030941533,-0.0014658847,-0.014077217,0.008715592,0.013640257,0.004726851,0.011703458,0.01667536,-0.0095658945,-0.03528752,0.012063655,-0.017797288,0.040294852,-0.014443319,-0.0052258126,-0.001616459,-0.023135291,-0.011526312,0.0074047106,-0.0032033934,-0.011396404,-0.036964506,0.036799166,-0.029429886,-0.0027354325,-0.00021829577,0.00477409,0.004647135,-0.029382648,0.040578287,0.0056184866,-0.040223993,-0.06405606,-0.01488028,-0.028603204,0.006270975,0.012813574,0.031744596,-0.0077826222,-0.021174874,0.03016209,-0.03287833,0.045325805,-0.017112322,0.00015500291,0.039727986,0.047026407,0.046672117,0.030280188,0.006855557,-0.017313087,-0.0152936205,-0.007150801,0.016521834,0.053332813,0.033114526,0.022155084,-0.0057513462,0.027658425,0.024540652,0.020348191,-0.020537147,-0.0017817954,0.031933554,0.0012902147,-0.004402083,-0.023395106,-0.02881578,0.038877685,-0.026382972,-0.002739861,0.019934852,0.017065082,-0.036374018,-0.0039267405,0.004679612,-0.023938354,0.005459055,-0.006642982,-0.020171046,-0.0023088052,0.0061056386,0.040743623,-0.048608914,-0.029831417,-0.012742716,-0.006690221,-0.028201673,0.019403413,-0.023430536,0.0053409575,0.008863214,-0.02602868,0.01904912,0.0102567645,-0.016226592,0.019568749,0.0031000583,0.030894294,0.06736279,-0.005736584,-0.010180001,-0.039208356,0.0031561546,-0.002016514,0.012990721,0.013829213,0.0015884108,-0.0071212766,0.019651417,0.0068201283,0.04504237,0.056828495,-0.0015042664,0.03620868,0.004771137,0.009335604,0.03013847,0.020537147,-0.041050676,0.006465836,-0.003415969,0.02134021,-0.0029745798,0.0010931396,0.037885666,-0.019580558,0.03627954,0.0033539678,0.018435013,-0.0068614623,0.006324119,0.0157542,-0.04419207,-0.0132623445,0.023643112,0.0051254295,-0.004496561,0.020159235,0.015529816,-0.02881578,-0.011945558,-0.009713516,0.020501718,0.0025686198,-0.02178898,-0.02697346,-0.010752774,0.0020918013,0.009725326,0.01766738,0.01069963,-0.018718448,-0.019816753,0.022934526,0.0011898319,-0.006684316,-0.019757705,0.03446084,-0.012341185,-0.0044197976,-0.007056323,0.026335733,0.014289793,0.042373367,0.020714294,-0.018529491,-0.0020858964,0.035452858,-0.009719421,0.0072334693,0.03438998,-0.01577782,-0.035618193,0.039161116,-0.018812925,0.006826033,-0.0020327524,-0.009518655,-0.017726429,0.020194665,-0.008739212,-0.022462137,-0.00073552574,-0.021021347,-0.015718771,-0.010859061,0.012282136,0.01809253,0.0021021347,-0.013498539,-0.040790863,-0.0094714165,-0.036870025,-0.020029329,-0.011325547,0.015718771,-0.023277009,0.00062960706,0.018801115,-0.00452018,0.012849003,-0.016049445,-0.031839073,-0.02881578,-0.017915385,0.0075523322,-0.002333901,-0.009134838,-0.017490234,0.0066311723,-0.0037554991,-0.040790863,0.020395432,0.022214131,0.017442994,-0.0015736487,-0.016805269,0.013085199,-0.014195315,-0.049506456,-0.08498293,-0.00013350548,-0.025249237,0.011496788,0.031059632,0.032311466,0.005642106,-0.023347868,0.007829862,0.008331776,0.003442541,-0.0065248846,0.002462332,-0.00085251604,-0.025603529,0.038428914,-0.020135617,-0.00047681847,0.004939426,0.005376387,0.011154305,-0.031886313,0.0016489357,0.0072216596,-0.005134287,-0.011095257,0.0060347803,-0.004236746,-0.0017906528,-0.004588086,-0.024800466,-0.027705664,0.039539028,0.033185385,-0.008420349,0.016073063,0.016262019,0.002605525,0.007528713,-0.012211277,0.027682044,0.019757705,-0.004493608,0.03490961,-0.013203296,-0.00879826,0.005934397,-0.006406787,-0.005898968,0.014939329,0.000946994,0.016297448,0.03668107,-0.011573551,-0.016002206,-0.0025641911,-0.008804166,-0.027304132,-0.028059956,-0.021422878,-0.023465965,-0.0058960156,-0.01719499,-0.008331776,-0.0062473556,-0.012636428,0.00016856566,-0.017407564,-0.03951541,0.002454951,-0.0022910908,0.008745117,0.03984608,0.024729608,0.014325222,-0.0071921353,0.020041138,-0.006347738,-0.022521185,0.010244954,0.00053291477,-0.023135291,0.0061942115,0.01117202,-0.007014989,-0.017419375,0.030705338,-0.00250219,-0.012175848,-0.014159885,0.02737499,0.018281486,-0.016179351,-0.025839724,-0.008686068,-0.0070445132,-0.010593342,0.014785802,0.00021903387,0.01808072,-0.029146453,-0.0027782426,0.042042695,0.007014989,0.020820582,0.0012909528,0.028201673,-0.020289144,-0.018068912,0.0010924014,0.010327622,-0.000568344,-0.008804166,0.007883005,-0.024115501,-0.024942184,0.020501718,-0.007133086,-0.005910778,0.03715346,0.000034967918,-0.018175198,-0.01717137,0.01394731,-0.01348673,-0.01488028,0.028839398,-0.024517031,0.035878006,-0.036326777,-0.009601323,-0.002333901,0.007977483,0.017927194,0.027563946,0.0032594898,0.021600025,0.026642786,0.014159885,-0.009447796,0.023773018,0.010711439,-0.008314061,0.01947427,-0.007227564,0.030209329,0.05862358,0.019769514,-0.0021006586,0.0007698478,0.035523716,-0.01630926,0.030445525,-0.010900395,-0.0141835045,0.00453199,0.01949789,-0.009111219,-0.00006029429,0.009666277,-0.01811615,-0.020749724,-0.015364479,-0.009648562,-0.020773342,0.0061233533,0.034082927,-0.0139355,0.006129258,0.001481385,-0.0501678,0.015470766,0.049978845,0.015187333,0.0007860862,0.0043459865,0.0029804846,-0.006235546,-0.025627147,0.03748413,-0.01204594,-0.014809421,-0.023879306,-0.00046390158,0.025603529,0.002043086,0.04549114,-0.00765862,-0.00049416407,0.0147385625,0.023643112,-0.011603075,-0.030799817,-0.017903574,-0.016982414,0.022202322,0.003956265,-0.014159885,-0.013793783,-0.008869119,-0.024032833,0.036515735,0.014502368,-0.0102154305,0.005515151,0.020513529,0.001035567,-0.038806826,-0.006879177,0.02510752]},{"id":"interface-APIApplicationCommandOptionValue","type":"interface","source":"main","text":"Interface: APIApplicationCommandOptionValue\nDescription: Application command option value (string, number, or boolean).","meta":{"url":"/docs/typedefs/APIApplicationCommandOptionValue"},"embedding":[-0.010135305,0.0029120299,-0.031009931,0.0084340805,0.014086355,-0.034711618,-0.024404528,-0.0011463866,0.03322651,0.04195983,0.025645813,-0.026909262,-0.011088434,0.02529116,-0.0025920114,-0.027840225,-0.046282157,0.027197417,-0.01728931,-0.004120065,0.005630109,-0.036418382,-0.042292316,-0.0020420228,-0.016857078,-0.021146158,-0.00035465255,-0.012989149,-0.023540063,-0.041804668,0.0019381207,-0.045971837,0.024338031,-0.0025573773,-0.048543066,0.0016070193,0.053064886,-0.011121682,0.021966292,-0.053729862,-0.039255604,0.010573079,0.03905611,0.060069274,-0.015094899,0.04459756,-0.02291942,-0.051291626,-0.008267838,-0.026621107,-0.0384798,-0.034423463,-0.003319326,0.0011650891,0.05177927,0.011625954,-0.01556038,-0.02084692,-0.008134843,0.00758624,-0.039255604,-0.03834681,-0.0011533134,0.026798433,0.02307458,0.023517897,-0.051069967,0.058163017,0.021600557,0.034401298,0.019228818,-0.009027015,-0.021833297,0.06871393,0.013687371,0.022221198,-0.03400231,-0.0032029557,0.022808593,-0.048986383,-0.051557615,0.015671209,-0.03821381,-0.072349116,-0.00091226056,0.027108753,-0.013365968,-0.010622952,-0.018497346,-0.016203187,-0.018419767,0.01827569,0.024515357,-0.0071761725,-0.030256296,0.01540522,-0.011614871,0.00037162323,-0.034379132,-0.028837685,-0.021135075,-0.02058093,-0.018497346,0.0351106,0.018364351,0.022963753,0.019594554,0.036617875,-0.002644655,0.00067051494,-0.051380288,0.013177559,-0.03675087,0.019982455,0.013388134,-0.016890328,0.028483033,-0.0015238976,-0.0032666824,-0.049030714,0.013975527,-0.03218472,0.010113139,-0.04668114,-0.0318079,0.010151929,-0.042380977,0.009071347,-0.0021223738,-0.006832603,0.02460402,0.03901178,-0.004688063,-0.0080683455,-0.0073368745,-0.037504505,-0.012978067,0.05590211,0.00019100672,0.027640732,0.018397601,-0.00016849459,0.05053799,-0.00031136,-0.020558765,0.008173632,-0.048410073,0.025823139,0.019960288,0.014939738,-0.017355809,0.047346115,0.018608175,-0.023806052,0.028217044,-0.039765418,0.036462717,0.0053170174,-0.021279152,-0.009038098,-0.0047296244,0.0034661745,0.008461788,0.005430617,-0.046016168,0.014995153,0.027153086,0.03233988,-0.04195983,0.02360656,0.028483033,-0.027020091,-0.02571231,-0.04164951,-0.017455555,-0.029436162,0.029391829,0.01092219,-0.06503441,0.009193259,0.047035795,0.009575618,-0.008960518,0.0027236207,0.010789195,-0.009553453,-0.011282384,-0.01383145,0.011060726,-0.01984946,0.015349805,0.027884556,0.031054264,-0.027574236,-0.01616994,0.0071207583,0.0368617,-0.014075273,-0.0072980844,-0.05630109,0.047168788,-0.0056578163,0.0553258,-0.023362737,-0.0005991689,-0.0007716464,0.004934658,-0.030189797,-0.037083358,-0.019727549,0.011371047,-0.004325099,-0.047390446,0.0072371284,-0.010850151,-0.014784578,0.0610889,0.0042447476,-0.007154007,-0.026931427,0.011515125,0.016535675,0.029037178,-0.00019308476,-0.050759647,0.0064280774,-0.042159323,-0.02084692,0.018264607,-0.0058074356,-0.029081509,-0.03570908,0.013465714,-0.05062665,-0.039721087,0.0044830297,0.009935813,0.027175251,0.017444473,-0.02042577,0.017688295,0.010855692,0.032295547,0.009376126,-0.000076497934,0.020381438,0.0309656,-0.01997137,-0.01249042,-0.0025199726,-0.027330412,0.02897068,0.017145233,-0.04406558,-0.004524591,-0.04499654,0.032406375,0.0014421613,0.057897028,0.012966984,0.0035049645,-0.012157933,-0.005380744,0.0047961217,-0.019406144,0.04085154,0.016923577,0.015782038,-0.048099753,-0.0023592706,0.007403372,0.040053573,0.05568045,0.019262066,0.0021126764,-0.05062665,0.03444563,0.03158624,0.022941587,0.05452783,-0.08923945,-0.02100208,0.038834453,0.017843457,0.029702151,-0.009813901,0.05510414,0.01011868,0.011614871,0.0077580246,-0.019805128,0.014884324,0.051912267,-0.06840361,-0.010822444,0.017610716,0.020592013,-0.043289777,0.08649089,0.017566385,0.0141639365,0.010024476,0.0014199956,-0.043201115,0.0032251216,-0.016845996,0.033470333,0.011681369,-0.03322651,-0.027153086,0.03996491,-0.013299471,-0.022176867,-0.024737015,-0.07332441,-0.008273379,0.034822445,0.037105523,-0.012501502,0.019893792,0.036994692,-0.0018577698,0.007990765,-0.018796586,0.022420691,0.004410991,0.004580005,-0.010611869,0.05200093,-0.0027347037,0.011692451,0.01456292,-0.009021474,0.006583238,0.028992845,0.018198108,-0.040762875,0.008605866,0.005968137,-0.008157008,-0.042513974,-0.027263915,-0.016890328,0.0013521129,-0.008655739,-0.04885339,-0.04089587,0.0134324655,0.06250751,0.026421614,-0.02184438,-0.0043971376,0.011980606,-0.0327167,-0.042070657,-0.05541446,0.03632972,-0.029281002,-0.040519055,0.029347498,-0.026665438,0.0016624338,0.011947358,-0.015582547,0.0120914355,-0.024315866,-0.035576083,-0.020525517,0.0045079663,-0.012401756,0.0071207583,-0.025667978,0.012423922,-0.0018563844,0.031032098,0.007996307,-0.006721774,0.015272225,-0.0075363666,-0.01057862,0.056389757,0.007442162,-0.035864238,-0.010356963,0.026266454,-0.033625495,-0.018464098,0.087776504,0.006128839,0.0022262759,0.052444246,0.031697072,-0.015128148,-0.017677212,-0.000607481,0.069955215,-0.008262296,0.05200093,0.043201115,-0.06490142,0.0043666596,-0.007763566,-0.014463174,0.05505981,-0.020758256,-0.038524132,0.029790813,0.026377283,0.048011087,0.036573544,0.05740938,-0.00954237,0.047567774,0.04342277,0.036041565,-0.03191873,-0.042292316,0.004663127,0.047080126,-0.007403372,-0.010284924,0.05204526,-0.008943894,-0.034622956,-0.008966059,0.015006236,-0.011891943,0.008533827,0.045883175,-0.038546298,-0.00070549536,0.03865713,0.031630576,-0.034379132,0.033315174,-0.0443759,0.033315174,-0.0075474493,0.036728702,0.045705847,-0.05231125,0.0044082203,0.03065528,-0.00900485,-0.035686914,0.023517897,0.0070875096,-0.010417919,0.032894023,-0.030899104,-0.037305016,-0.0045994003,-0.052532908,0.044087745,0.020636344,-0.018486263,0.029192338,-0.01946156,0.014230434,0.035930738,-0.015094899,-0.01889633,0.0102627585,0.020858003,-0.022110369,0.01889633,-0.0036878323,0.011393213,-0.053020556,0.00916001,-0.04433157,-0.0033664284,0.036263224,-0.01490649,-0.004255831,-0.026000464,0.08148142,-0.010534289,-0.013665206,-0.013997693,0.00044643274,0.044043414,-0.011448627,0.010584162,0.045617186,0.07394505,-0.00021750176,0.046769805,0.010096515,-0.0029452785,0.010301548,-0.03302702,-0.0007252367,-0.008079428,0.02533549,0.035354424,-0.010196261,-0.014418842,0.009824984,-0.015937198,0.010822444,-0.032406375,0.010157471,-0.03107643,0.06964489,-0.02549065,0.07434404,-0.02996814,-0.052843228,0.007248211,-0.042181488,-0.023717389,-0.004222582,-0.02142323,-0.06676334,-0.0005513739,-0.0018148236,-0.01456292,0.017732628,0.037504505,-0.028460868,-0.0180097,0.022442857,0.012058186,0.0066663595,-0.021234822,-0.039144773,-0.04668114,-0.0018189796,0.0025809284,-0.017311478,-0.011171555,-0.03816948,0.040762875,-0.00728146,0.0012392058,0.028084049,0.022276614,0.046503816,0.028150545,-0.020303858,-0.051557615,0.037637502,0.014518589,-0.037969988,0.029546991,-0.010861234,0.007874395,0.024249367,0.0076970686,-0.03460079,0.02571231,0.011321174,-0.017865622,0.042979456,0.040053573,-0.0066275694,-0.0024049876,0.009570077,-0.012545833,0.019516973,-0.038878784,0.04805542,-0.03954376,-0.00900485,-0.019217735,0.005064882,0.00034062576,0.002655738,0.010977604,-0.015715541,0.040519055,-0.019472642,0.07873286,0.0131886415,-0.009586702,0.034977607,-0.00017239092,0.020713925,0.02229878,0.01751097,-0.029458327,0.02560148,-0.00053578854,0.009791736,-0.010927731,0.029281002,0.01605911,-0.004519049,0.0007127685,0.026111294,-0.01390903,-0.012556917,0.028483033,-0.024692684,0.013099979,-0.016912494,0.018497346,-0.024958674,0.0140420245,-0.0021930272,-0.031830065,0.006162088,-0.003299931,0.04668114,0.046548147,0.02034819,0.0016070193,0.015194645,-0.008362042,-0.006500116,0.0073867477,-0.03874579,-0.02549065,-0.030101135,0.03007897,0.011758949,-0.015150313,0.024515357,0.0070764264,-0.07425538,0.02360656,-0.029724317,-0.009453707,0.007392289,0.030256296,-0.0040452555,-0.03081044,0.005450012,-0.0026959134,-0.03417964,0.03023413,-0.0007661049,-0.01624752,-0.024005543,0.015238977,-0.02549065,0.015992614,0.016036944,-0.038900953,0.034135308,-0.021378899,-0.015992614,-0.012966984,0.010379128,-0.036728702,-0.013842532,0.006915725,-0.0057963524,0.021888712,0.0009067191,-0.034379132,0.013088896,0.0062784585,0.014496422,0.003881783,-0.020337107,-0.008411915,-0.01935073,-0.0023855926,-0.0076582786,-0.0068436856,0.020292776,-0.040718544,-0.000038725182,0.041361354,0.005297622,0.0015377513,0.0016832142,-0.011470794,0.007431079,0.010755947,-0.03329301,0.014053107,-0.023008084,0.012933735,0.00066081743,0.01532764,0.004208728,-0.0040036947,-0.012556917,-0.000013160934,0.004017548,-0.026665438,0.024382362,0.012590165,0.025956133,-0.015105982,0.022099286,0.012833989,0.012047104,-0.0011734013,-0.017976452,0.004255831,0.0045966296,0.0124571705,0.028217044,0.0016762874,-0.004962365,0.033559,-0.023806052,-0.0059792204,-0.016114525,-0.017533135,-0.05514847,-0.028327873,0.009874857,-0.022985918,0.03537659,0.022852924,-0.012656663,0.013853615,-0.05989195,0.0112380525,-0.02268668,0.008833065,0.0018148236,-0.003790349,0.032472875,0.026931427,-0.021511894,-0.031741403,-0.013321636,0.0071041337,0.0128229065,0.029524824,-0.026177792,0.014839993,-0.007963058,0.04322328,-0.000029092591,-0.025800973,-0.02628862,0.043090284,0.0012696838,0.028682524,0.02897068,0.014341262,0.031697072,-0.0014934198,0.039410762,0.02628862,0.0014518589,0.0077081514,-0.02084692,0.012401756,-0.018109446,-0.0137982005,-0.031408917,0.018885247,0.0048681605,0.005474949,0.014784578,0.02744124,0.0013999077,-0.015737707,0.030522285,-0.031009931,-0.038634963,0.016469177,-0.053729862,0.00027672597,-0.012479337,0.043821756,-0.012102518,-0.023628727,0.013532211,-0.04459756,0.032051723,0.019805128,-0.014130687,0.021090744,-0.06077858,-0.037770495,0.022210116,-0.05736505,-0.047789432,-0.04116186,-0.027906721,-0.00080420234,-0.014097439,-0.007525284,-0.01122697,-0.034379132,0.0027540987,-0.033426,0.009110137,-0.0077857315,0.004225353,-0.013465714,-0.0192399,0.008290003,-0.020514432,-0.058694996,0.05062665,-0.0025338263,0.034955442,-0.06618703,0.009514662,0.026864931,0.0014352346,-0.022719929,0.025933968,0.041583013,0.032406375,-0.029502658,0.005430617,0.014197185,0.0054389294,0.03296052,-0.00498176,-0.0067661055,-0.01961672,0.011614871,0.010379128,0.015294391,0.0004211499,-0.014540754,0.039166942,-0.029857311,0.08263405,-0.009448165,0.047656436,-0.0046132538,0.013521128,0.041051034,-0.026554609,-0.024847845,0.007464328,0.012446088,0.0049762186,0.026598942,-0.020913417,-0.012157933,-0.03754884,-0.028261375,-0.025645813,-0.006189795,-0.053020556,0.00047206195,0.019838376,-0.013277304,-0.030034637,-0.0064336187,0.0060346345,0.0054250755,-0.007154007,0.0059958445,0.012612331,-0.016391598,-0.028194878,0.0020877398,0.0027153085,-0.014319097,0.004879243,-0.022697764,-0.018065114,0.020858003,0.024072042,-0.03566475,-0.0114818765,0.014119605,-0.0128229065,0.01892958,0.015427385,0.007719234,-0.0043528057,0.009741862,0.0226091,0.026532443,0.04027523,-0.0033082434,-0.013742786,0.007403372,-0.013321636,0.014463174,-0.014086355,0.04426507,-0.02080259,0.025845304,-0.034024477,0.0061565465,0.03985408,-0.014884324,-0.021667054,-0.008489495,-0.0654334,0.035265762,0.007115217,0.0043278695,0.005089818,0.021833297,0.017278228,0.021600557,0.026798433,-0.04805542,-0.008650198,0.06170954,0.015216811,-0.0025393676,-0.012689912,-0.014175019,0.018785503,-0.020680677,0.013498963,-0.011548374,0.008506119,-0.04911938,-0.018264607,-0.026488112,0.023916882,0.0085837,0.007846688,0.044553228,0.029945975,-0.003130917,0.01789887,-0.011936274,0.010307089,-0.03448996,-0.034622956,-0.0014449321,0.0030228589,0.008040639,-0.029458327,-0.029524824,0.033470333,-0.012290928,-0.010600787,-0.00862249,0.031032098,-0.006090049,-0.008705611,-0.009065806,-0.014285848,-0.054705154,-0.05505981,-0.001590395,0.0011075966,0.015294391,-0.019284232,0.015449552,0.0017400141,-0.002655738,0.004402679,0.007093051,-0.02854953,0.021079661,-0.014208267,-0.0017621799,0.0032140387,-0.06920158,0.0072038798,-0.030367125,-0.03548742,0.023628727,0.048764724,-0.041250523,-0.020869086,0.008833065,-0.013410299,0.0030561076,-0.036662206,0.013277304,0.008600324,-0.0023703536,0.029635653,-0.013443548,0.033448167,-0.03395798,-0.016413763,-0.002536597,0.008306627,0.0070819682,-0.021777883,0.038812287,-0.010334797,0.017732628,-0.021190489,0.0048570773,0.0043278695,0.05120296,0.017799124,0.04000924,-0.018109446,-0.014030942,-0.036883865,0.022420691,0.053596865,0.019938122,0.016469177,-0.029347498,0.016114525,-0.0154828,0.019051492,-0.009636574,0.021933043,0.0012537522,-0.0010972063,-0.004757331,-0.017721545,-0.011171555,-0.0017607944,-0.012257678,0.0016887557,0.00866128,0.024471026,-0.0091045955,0.032362044,-0.015870702,-0.004311245,0.03307135,-0.015471717,-0.026953593,-0.042779963,-0.02460402,0.017012239,0.027485572,0.012257678,0.004169938,-0.0146515835,-0.0023648122,-0.0016181022,0.028638193,0.022897255,0.008578159,0.006755023,-0.036928196,-0.0028870935,-0.0030893562,-0.013277304,-0.014518589,0.0093484195,-0.011260218,0.019683216,0.032672364,-0.0041366895,-0.0034634038,0.010207344,0.007974141,0.0006130225,0.0052837688,0.0052837688,0.038679294,0.03158624,-0.005702148,0.038723625,-0.0035021938,-0.016646504,0.013133227,0.014629417,0.012944818,0.0044276156,0.01383145,-0.012346342,-0.027529905,0.038945284,-0.0043057036,-0.0015335951,0.04947403,0.033470333,-0.03085477,0.013266222,0.027042257,-0.0077691074,0.01981621,0.01356546,-0.023251908,-0.0023745096,0.0081902575,0.04138352,0.017632881,0.013742786,-0.00973078,-0.006971139,-0.01682383,-0.0015973218,-0.026177792,-0.011293467,0.026776267,0.017765876,-0.02184438,-0.024338031,0.017621798,-0.028305706,-0.011559457,-0.016591089,0.004394367,0.02544632,0.014208267,-0.029303167,-0.013055647,-0.0014698686,-0.0041976455,-0.04000924,0.03564258,0.018342186,0.004879243,0.03238421,-0.003061649,0.0054056807,-0.0054056807,0.011648119,0.030056803,0.024360197,-0.0076859854,0.024847845,-0.0069434317,-0.0037293932,0.017965369,0.012545833,0.023916882,0.009830525,-0.014274765,-0.009442624,-0.02854953,0.0051978766,0.035553917,-0.026465947,-0.013299471,0.016158856,-0.015992614,-0.037061192,-0.0073978305,-0.005768645,0.01766613,0.0063782046,-0.00091641664,-0.00827892,0.020337107,0.009054723,0.01517248,0.0006407297,-0.032517206,0.048676062,0.034933276,-0.013033481,-0.024892176,0.0025629187,0.0017303166,-0.028815519,0.036617875,0.018597092,0.03069961,0.0036961446,0.029591322,-0.02571231,0.03276103,0.0024146852,0.012612331,-0.017987534,0.027529905,-0.0084950365,0.00490418,0.0039759874,-0.03123159,0.016701918,0.007342416,0.0014643271,0.033559,0.0018037406,-0.027175251,-0.02073609,0.038368974,-0.0024922653,0.058960985,-0.029480493,-0.008040639,-0.0012073426,0.030056803,0.010894483,-0.0009136459,-0.014186102,-0.010855692,0.00429185,0.045018706,-0.012013855,-0.018696839,0.021944126,0.02755207,0.0052865394,-0.009304088,-0.033426,0.030566616,0.007392289,0.03632972,-0.008533827,-0.013764952,-0.01966105,-0.021788966,-0.004311245,-0.009664282,-0.008816441,0.044353735,0.016845996,0.036396217,-0.019528056,-0.0012274303,-0.026864931,0.0036878323,-0.012623414,-0.0027831912,-0.020326024,0.047035795,-0.015105982,-0.019295314,0.0056550456,-0.040652048,-0.0013638884,-0.024958674,0.029214503,0.034512125,0.027263915,-0.0097751105,0.0053281,-0.0025546066,0.040940203,0.04133919,-0.011836529,0.031187259,0.0056661284,0.013155393,-0.0058573084,0.03069961,-0.03280536,0.015870702,-0.018364351,0.006882476,-0.0015142001,0.0021680908,-0.0073368745,-0.012856155,-0.0066885254,-0.013399216,0.028460868,-0.025667978,-0.025978299,-0.015504966,-0.009232049,0.025690144,0.015471717,-0.01414177,0.0034634038,0.03712769,0.025512818,-0.02249827,-0.012512585,-0.0043361816,-0.013853615,0.0018397601,-0.008539368,0.0014878783,-0.0067162327,0.04537336,-0.019738631,0.0133105535,0.0056467336,-0.052843228,0.011947358,0.010279383,-0.023407068,-0.00870007,-0.0028621568,0.024249367,0.0049983845,0.0050842767,0.010046641,0.0036490422,-0.025845304,0.03123159,0.013764952,-0.031940896,0.01241284,0.004771185,0.015161396,0.021190489,0.010977604,-0.010257216,-0.02518033,-0.0013057032,-0.020891251,0.015593629,0.014851076,-0.01390903,-0.021234822,0.010999771,0.013277304,0.023407068,-0.009736321,0.018065114,0.0069600563,-0.018796586,0.016291851,0.007913185,-0.02034819,-0.047833763,-0.00050600327,-0.046991464,-0.021489728,-0.034246136,-0.048232745,0.021190489,-0.048720393,-0.0013181715,0.024249367,-0.010994229,0.000965597,0.022110369,0.014518589,-0.0033525748,-0.021434313,-0.03149758,-0.024227202,-0.01624752,-0.03069961,0.0027915034,-0.02276426,-0.018175943,0.012180098,0.011947358,0.0089217285,0.014019858,-0.022786425,0.026000464,-0.019073658,-0.017721545,-0.0610889,0.009547912,-0.027485572,0.00490418,0.022941587,0.01847518,0.029990306,-0.026842766,-0.014629417,0.0044220737,0.03107643,0.04610483,0.00006203822,0.0009759872,-0.028261375,0.009813901,0.03065528,-0.019528056,0.008217964,0.017632881,0.009786193,-0.024249367,-0.0035631498,-0.0043583475,-0.030189797,0.007486494,-0.0120914355,-0.006189795,-0.0017067654,-0.0033387213,0.0072149625,-0.0010126992,0.032628033,0.001360425,-0.024537522,0.00012078621,0.028749023,-0.01874117,-0.004818287,-0.029037178,0.030167632,0.026111294,0.0065666134,0.04289079,-0.03280536,-0.008362042,0.022465022,0.008611407,-0.01697899,0.016236437,0.016901411,-0.032007392,0.031519745,0.011559457,0.019716466,0.0034550915,-0.02885985,-0.022365276,-0.015737707,-0.015660126,-0.0087998165,-0.008639114,-0.0056245676,-0.02000462,0.0022830758,0.019627802,0.008184716,-0.008062804,-0.0034356965,-0.009254215,0.035864238,0.004951282,0.03269453,-0.010822444,0.019683216,0.015105982,0.0076582786,-0.01789887,-0.015438468,0.013033481,0.027330412,0.0020641887,-0.0030394832,0.017278228,-0.004782268,-0.020514432,-0.0021362274,-0.015183562,-0.017034406,0.013022399,0.03333734,-0.008040639,0.014695914,-0.031408917,0.0040840455,0.027485572,0.012102518,0.023141079,0.007979683,-0.025113834,-0.02739691,-0.04490788,0.022808593,-0.026820598,0.026399449,-0.018464098,0.051601946,-0.004710229,-0.015205728,0.028039716,0.0007113831,-0.03905611,0.00781898,0.0023661975,-0.023163244,-0.02126807,0.0062729167,-0.007009929,0.019029325,-0.007492035,0.006300624,-0.02533549,-0.018131612,0.013543294,-0.0030228589,0.0016499655,0.029613487,-0.024737015,-0.01877442,-0.029502658,-0.01997137,0.008533827,0.0011754793,-0.009858233,0.035354424,-0.010700532,0.016236437,-0.018730087,0.027618567,-0.008821982,-0.0008727778,-0.014108522,-0.018519513,0.018175943,-0.042425312,0.061221898,0.04583884,-0.004488571,0.003621335,0.024803512,0.037039027,-0.0027624108,0.028217044,0.0044470103,-0.045439858,0.028926348,0.0052449787,0.0014781808,-0.01456292,0.016857078,0.0018065114,0.036617875,-0.013576543,-0.027751561,-0.023695223,0.01383145,0.037836995,0.014330179,0.022431774,-0.0012073426,0.00084784126,0.001260679,0.040408224,0.0034855695,0.0008686217,0.0035021938,-0.018608175,0.00065562234,-0.009426,0.026222123,-0.007464328,0.024471026,-0.03132025,-0.006771647,0.017799124,0.00724267,0.025512818,-0.037571006,-0.010013393,0.023872549,-0.013753869,-0.0118476115,0.040097903,0.013332719,-0.01693466,0.028882017,0.030433621,-0.010833527,0.016923577,-0.035553917,-0.0068880175,0.055192802,-0.01249042,0.03322651,0.008273379,0.018042948,0.0077358587,-0.014629417,0.021279152,0.044486728]},{"id":"interface-APIAttachmentPayload","type":"interface","source":"main","text":"Interface: APIAttachmentPayload\nDescription: API format for an attachment in a message payload.\nProperties: description: string | null, filename: string, id: number","meta":{"url":"/docs/typedefs/APIAttachmentPayload"},"embedding":[-0.01973963,0.024615318,0.020312078,0.011202239,-0.010985104,-0.052033663,-0.040663637,0.013057765,0.029905539,0.005660339,0.0013546321,-0.03369555,0.05227054,-0.045716982,-0.005788646,-0.0062673325,0.019068481,0.039577957,-0.0047917953,0.038334362,-0.013748652,0.015199515,0.022858491,0.042992912,0.010165909,-0.028405327,-0.009025945,0.024082348,-0.004619073,-0.030418769,0.05807399,-0.02562204,0.06735162,0.053691793,-0.0017013093,0.020331819,0.034879927,0.047493547,-0.01865395,-0.02724069,-0.046072297,0.008942052,0.03559055,0.008690372,-0.016749077,0.04903324,0.0112614585,0.031070177,-0.0023884953,0.03154393,-0.0025242053,0.027536783,-0.0010159741,0.026174748,-0.0052458066,-0.00829558,0.0022157733,0.041374262,-0.01814072,0.023213804,-0.051915225,0.004332849,-0.009672418,0.0023588857,-0.020548955,0.00611435,-0.03259013,0.051915225,0.036005083,0.01757814,0.07931383,0.049230635,-0.03243221,0.050336055,0.010175779,-0.018357856,-0.051125642,-0.0024230396,0.022720315,-0.03359685,-0.024812715,0.04267708,-0.04958595,-0.04623021,-0.010165909,0.019423796,-0.009756312,-0.0512046,-0.04275604,0.029135693,-0.04161114,0.0119128665,-0.053297002,-0.031208355,-0.00212201,-0.023332242,-0.010402785,0.01704517,-0.00083770056,0.02724069,0.02451662,-0.017676838,-0.026352406,0.0017864365,-0.0032940507,-0.020943748,-0.02558256,-0.002321874,0.001955457,0.006287072,-0.0148442015,0.030675385,0.021002965,0.025148287,-0.028425066,0.00030688956,0.0042070085,0.04267708,0.040782075,-0.00032724606,-0.019107962,-0.0043353164,0.05866618,0.021733332,-0.0095786555,-0.011073932,0.015238994,0.022680834,-0.070549436,0.014044747,0.031859763,0.004809067,-0.0061192852,0.013097244,-0.0014582651,-0.025128549,-0.00017503499,0.015811443,-0.035787947,-0.043427184,0.046072297,-0.01814072,0.025385164,0.014617195,-0.018417075,0.03639988,-0.03610378,0.034386434,0.025306204,-0.023648076,-0.018752648,0.016956342,-0.057995033,0.0064104446,0.019867938,-0.036005083,0.005813321,-0.011330548,-0.0059268237,0.00008235127,0.021535937,-0.04512479,-0.004841144,-0.0137585215,-0.013610475,-0.0074418406,0.043545622,-0.0288396,-0.030221373,0.0053593093,-0.010708749,-0.046111774,-0.06344317,0.012633363,-0.02283875,0.013235422,0.060047954,-0.02021338,-0.027438086,0.016127277,0.059337325,0.02984632,-0.032372992,-0.052349497,-0.016650377,0.000115893214,-0.009519436,0.051678352,0.04220333,0.006005782,0.0048806234,-0.008507781,0.0070223734,-0.014557977,-0.004216878,-0.024832454,-0.007012503,-0.005438268,-0.025029851,-0.020015985,0.024931151,-0.019956766,0.05598159,0.020884529,-0.017133998,0.016729336,-0.011014713,0.0071260063,-0.03517602,-0.06747005,0.0004737511,0.0005638132,0.008399213,0.015505479,-0.00041638283,-0.030339811,0.029155433,0.027793398,-0.02343094,-0.017795276,-0.035353675,0.019433666,0.096171476,-0.02937257,-0.027260428,0.009583591,-0.05550784,0.0153870415,-0.021989947,-0.050336055,-0.024792975,0.048717406,-0.021970209,-0.023549378,0.002276226,0.018347986,-0.013018286,-0.0141927935,-0.009272691,0.006094611,0.006178504,-0.008744656,-0.006148895,0.012643233,-0.005640599,0.0077478047,0.0062525277,0.0032915832,0.031030698,0.017972933,0.054718252,-0.023312503,0.01492316,0.0075306688,0.009317106,-0.023036148,-0.046664484,0.012880108,0.03286648,0.0072247046,0.0056356643,-0.032945443,-0.029096214,0.008734786,-0.028582985,0.03896603,0.026589282,0.05712649,-0.02931335,0.0075454735,0.02609579,-0.007915592,0.04540115,0.02343094,-0.02613527,0.049270116,-0.051678352,-0.037426338,-0.03466279,0.009055555,-0.012988676,-0.038492277,-0.033853464,0.055863153,-0.022187343,0.006331486,0.016304934,-0.008719982,0.026905116,0.0111528905,0.032136116,0.030695124,0.055665754,-0.050336055,-0.0063759005,0.036419615,0.039005507,-0.023884952,0.07552382,0.018505903,0.011083802,-0.06316681,0.05002022,-0.05756076,-0.038729154,-0.012426097,-0.0065338174,0.01014617,-0.00072049646,-0.038492277,0.03896603,-0.012149742,-0.06778589,-0.024891673,-0.066956826,0.011794428,-0.008344929,0.0014706025,-0.041255824,0.06747005,0.0099586435,0.006040327,-0.015199515,-0.050770327,-0.023233544,-0.007728065,-0.016689857,0.0024538827,-0.0047029667,0.06024535,0.016768815,-0.020864788,0.012514926,-0.014163184,0.039025247,0.004142855,-0.011863518,0.041334786,0.0058330605,0.052546892,-0.0122385705,0.0053543746,-0.014222403,-0.004387133,-0.0048066,-0.027615743,-0.031583406,0.009746443,0.006617711,-0.01707478,-0.0140842255,0.005433333,-0.019473145,-0.01760775,-0.011014713,-0.03045825,0.018446684,-0.065851405,-0.06683838,-0.011399636,-0.057955552,-0.0136499535,-0.016206237,0.04267708,-0.042440202,-0.009346714,-0.008423887,-0.012909718,-0.0061636996,-0.048717406,0.012692582,0.01596936,-0.0609165,0.012337268,-0.023865212,0.010777838,-0.026490582,-0.005176718,-0.02718147,-0.011705601,0.034860186,0.06466702,-0.040288582,0.032807264,0.023549378,-0.034958884,-0.043979894,0.04315083,-0.02824741,0.02082531,0.028346108,0.029254131,-0.041216347,0.0056554037,-0.02345068,0.0053691794,0.019265879,-0.018091371,-0.0019616256,-0.048638448,0.012722191,-0.016314805,0.013018286,0.03424826,-0.0051421737,-0.024299484,0.015071208,-0.029609444,0.053415436,-0.013531516,0.021733332,0.043743018,0.015900271,0.033912685,0.018713169,-0.016443111,-0.021437237,0.016452981,0.020173902,0.032234814,-0.0059959125,0.026411625,-0.0022416818,0.004631411,-0.005270481,-0.016719466,0.022187343,-0.0384528,-0.020904267,-0.01981859,0.00957372,0.0131071145,0.027438086,-0.058152948,0.01766697,-0.033498153,-0.002284862,-0.021772811,-0.051994186,0.04259812,0.020864788,-0.034919403,0.00020896249,0.019117832,-0.018229548,0.004611671,0.005102694,-0.013038025,0.037248682,0.007881047,-0.05436294,0.03639988,-0.03448513,0.01712413,0.013600605,0.007575083,-0.06849652,-0.008418952,0.019502753,-0.008991402,0.0043698605,-0.0137585215,0.03353763,0.024220526,-0.029668663,-0.0074319704,-0.025246987,-0.024082348,-0.03736712,0.013057765,-0.0004345803,0.02459558,0.029412048,-0.007086527,-0.006331486,-0.03300466,0.029589705,-0.059100453,0.01173521,0.024615318,-0.018841477,0.028938297,-0.019897547,-0.037031546,-0.018703299,0.1075415,0.06269307,0.027832877,0.029747622,-0.01811111,-0.029017255,0.008073509,0.038156703,-0.0036419616,-0.018871086,-0.0017790342,0.0050336057,-0.05606055,0.01643324,0.015347562,0.011103542,-0.017617619,0.04488792,-0.05325752,0.04998074,-0.028582985,-0.012070783,-0.012366878,-0.005971238,0.009756312,0.034741748,0.015268603,-0.0042489553,-0.014656675,-0.040900514,0.021022705,-0.035787947,0.0154956095,-0.005275416,-0.0044389493,-0.015939752,0.007900787,0.036498576,0.031859763,-0.018229548,-0.013659824,-0.035097063,-0.044808958,0.01601871,-0.017676838,0.032905962,0.026372146,-0.0034248258,0.03786061,-0.0023058355,0.0050336057,-0.002832637,-0.049151678,0.02459558,0.015811443,-0.055073567,-0.0065338174,0.026411625,0.023727035,-0.00081919465,0.030714864,-0.01121211,0.043861456,0.015722616,0.03253091,-0.027122252,0.01122198,0.019532364,-0.0055665756,-0.0061439597,0.019798849,0.0026525126,-0.031247834,0.016689857,-0.016443111,-0.010234998,-0.019966636,-0.0043920674,-0.035097063,0.002118309,0.054047108,-0.0042119436,-0.030576685,0.026885375,-0.0031830154,0.021160884,0.012110263,-0.011379897,0.0047128364,0.012386617,0.017390614,-0.018555252,-0.0033261275,0.012978806,-0.0031558734,0.015525219,-0.0045179077,-0.023292763,0.024240265,0.019581713,0.0052606114,0.011606902,-0.030695124,-0.0014002799,0.023904692,0.019887676,-0.008068574,0.029352829,-0.0053691794,-0.0032693762,-0.0069483495,0.022483438,0.015308083,0.01706491,0.017291915,0.012376748,0.035965607,-0.011458855,0.0019048742,0.015071208,0.02135828,-0.006726279,-0.03945952,-0.031010957,-0.016936602,0.012189222,0.044808958,-0.034524612,-0.052546892,-0.0011448985,0.013018286,-0.0006168634,0.01702543,0.0074517103,-0.03675519,0.0047498485,0.024773235,-0.019828457,-0.0010677906,-0.019996244,-0.008270904,-0.030102935,-0.035432637,0.018782258,-0.00081425975,0.03936082,0.033261277,0.0016297532,-0.018456554,0.0244574,0.015021858,0.014715894,0.027299907,-0.0019986376,0.008912443,-0.017183349,0.029214652,0.06731214,-0.014607326,0.04907272,-0.010156039,-0.014636936,0.011360157,0.00077848166,0.02880012,-0.013788131,-0.025918134,0.03341919,0.036557794,0.020884529,-0.017282046,0.0021281787,0.039005507,-0.009953708,0.011340417,-0.013985528,0.022601876,0.027359126,0.0013608007,-0.0016914395,-0.021496456,0.016946472,-0.017420223,-0.012031305,0.013709173,0.027813138,0.010925885,0.021614894,0.011616772,0.0063068117,-0.0426376,0.019443534,0.019601453,-0.0072691184,0.014538237,-0.023075627,-0.012011564,-0.026470844,-0.058705658,0.008078444,0.021042446,0.021516196,0.03195846,0.023805993,-0.004189736,-0.0012670375,-0.006597971,-0.015021858,-0.013047895,0.025266726,0.04275604,0.020025855,0.025207506,0.015564698,0.0061192852,-0.003577808,0.003513654,-0.016186496,0.005433333,0.01920666,-0.016778685,0.023608597,0.013946048,0.0051471083,-0.0075454735,-0.019779108,0.0077922186,-0.013413078,0.01757814,-0.00173462,0.020193642,-0.028109232,0.02347042,-0.025878655,0.033379715,0.046190735,-0.0073678168,0.0053691794,0.008882834,-0.0026500453,-0.00333353,0.0052507413,0.018574992,0.0038344231,0.0021886313,0.017242566,-0.0119128665,0.015357432,0.025385164,0.023766514,0.04204541,0.018397335,0.008369603,-0.031050438,0.039696395,0.02396391,0.023273023,0.027122252,0.0041650617,0.024654798,-0.02668798,-0.01650233,-0.0012041174,0.013038025,-0.0074221008,0.012208961,-0.000022149252,-0.003802346,0.002159022,-0.0014002799,0.030793821,0.012603753,0.021160884,-0.026056312,0.0013817741,-0.024023129,0.006296942,-0.0046560853,0.02459558,0.003952861,-0.02238474,-0.018081501,0.0042538904,0.06229827,-0.013580865,0.005482682,0.00067361485,-0.034564093,0.017341265,0.033202056,-0.040209625,-0.0060107172,-0.040821552,-0.031642627,0.019946896,0.03728816,-0.02929361,-0.014794853,-0.0063166814,0.003360672,-0.00027743433,-0.04046624,-0.0125642745,-0.028602723,-0.018930305,-0.032254554,0.025148287,-0.00006762365,-0.053573355,0.018959913,0.026944594,-0.009509566,-0.05108616,0.021772811,0.018634211,-0.0015187177,-0.020410776,0.003089252,-0.00173462,0.04093999,0.0048608836,-0.04370354,0.01764723,-0.018466424,0.032767784,-0.00037998788,0.01225831,-0.019364577,0.021930728,-0.012139873,0.015002118,-0.0094700875,-0.014528368,0.0151699055,0.01819994,0.042361245,0.016058188,0.022187343,-0.016926732,0.023884952,0.05594211,-0.015011989,0.020963486,-0.0010684074,-0.036893368,0.024694277,0.03663675,0.0276947,-0.024220526,0.00075257337,-0.004991659,-0.018456554,0.0032224946,-0.0068595214,0.029550226,0.023944171,0.01489355,0.028069753,0.0136499535,0.036005083,0.003002891,0.025760217,0.0154956095,-0.04113739,0.020963486,-0.022819012,0.027457824,-0.02662876,-0.048875324,-0.026194489,-0.015683135,-0.030537207,0.010156039,0.0052556763,0.008315319,0.0016285195,0.03262961,-0.017755797,0.0080044195,0.00043118754,0.0015532621,-0.015298213,0.013679563,0.004024417,0.01918692,0.026549801,0.0028153646,0.015801573,-0.01859473,-0.013126854,-0.014567846,-0.008083378,0.034544352,-0.0062821372,0.05436294,0.004313109,-0.022700574,0.04366406,0.0042612925,0.017351134,0.014163184,-0.00072296395,0.014725763,0.0030201634,-0.0005940395,-0.010156039,-0.05017814,0.0042612925,0.0553894,0.0056208596,0.0043476536,-0.029727882,0.022542657,-0.0071506808,-0.015377171,-0.028977776,-0.04836209,-0.014064486,0.0075948224,0.0045475173,0.002172593,0.055823673,0.007032243,-0.03371529,-0.019088222,0.042361245,-0.016344413,-0.034425914,0.013955918,0.024299484,0.0072740535,0.0075602783,-0.016206237,0.017143868,0.0032940507,-0.0025735542,0.0017247502,0.05013866,-0.030813562,-0.031761065,-0.010777838,-0.016867513,-0.034702267,-0.009021011,-0.022266302,-0.00026540548,-0.012011564,0.016077928,0.03963718,-0.009953708,-0.08266957,-0.04255864,0.0151699055,0.030932,0.008591674,-0.019325098,0.014706024,0.008887768,-0.008902573,0.041374262,0.014557977,-0.063285254,0.009869815,-0.018012412,-0.0055270963,0.0044093397,0.00013601838,0.020588433,-0.049862303,-0.023292763,-0.01226818,0.05740284,-0.059929516,0.022483438,0.009790856,-0.0040219496,-0.02392443,-0.052586373,-0.05057293,-0.0038492277,0.007782349,0.019591583,0.02297693,0.025898393,0.032353252,-0.02609579,-0.03365607,0.042795517,0.02933309,-0.010442264,0.032827005,-0.023786254,-0.0016865046,0.0069335448,0.021674113,-0.02568126,0.0297871,-0.0032002875,0.023490159,-0.00039170828,0.036084045,-0.00012900156,0.023904692,0.04646709,0.0015618982,0.011962215,0.0015532621,0.012435967,-0.023825733,0.023746774,-0.023253284,0.0068792608,0.030991219,0.024042869,0.020144291,-0.014725763,0.028681682,-0.008162336,0.00613409,0.016541809,0.008803875,0.024891673,0.020391038,0.02400339,-0.02933309,0.008152467,-0.0105014825,-0.009134513,-0.03411008,-0.019167181,-0.035965607,-0.000266485,-0.014094096,0.0022145398,0.011646382,0.042361245,-0.03367581,0.040900514,0.029806841,0.0041848016,-0.025977353,0.008423887,0.004046624,0.03628144,-0.005640599,-0.016620768,0.060482226,0.0045376476,0.0012843097,-0.0129985465,0.01967054,0.006366031,0.0055122916,0.0056159245,0.0063216165,0.009006206,-0.004591931,-0.040782075,0.023115106,0.0778531,-0.015120557,-0.010817317,0.007999485,0.0043747956,0.0036419616,-0.02406261,0.021160884,-0.014479019,-0.014479019,0.0018049424,-0.030517468,0.02238474,0.0029091279,0.021772811,0.01806176,-0.01967054,0.01657142,0.00691874,-0.02133854,0.020371297,0.016739206,0.038867332,-0.0033754767,-0.014222403,-0.013403209,0.014212533,0.023569118,0.04157166,0.009830335,0.0069138054,0.0426376,0.0019591583,-0.02609579,-0.008729851,-0.010560702,-0.028543504,-0.022996668,0.007229639,-0.008986467,-0.0022786935,-0.012159612,0.025483862,-0.0006390705,0.038709413,0.019710021,-0.05108616,0.011814169,0.007145746,-0.033892944,-0.004868286,0.016798425,-0.013570995,-0.012110263,-0.02183203,-0.002859779,0.025404904,-0.0018752648,0.0012263245,0.030655645,-0.002199735,-0.0077626095,0.0028449742,-0.016147017,-0.039814834,0.0046560853,0.010708749,0.037623733,0.0069878288,-0.03476149,-0.028425066,-0.006380835,0.0040589613,0.021575416,-0.0045105056,-0.0017864365,0.0042612925,-0.001783969,-0.024714015,0.031030698,0.014587587,-0.0022416818,0.014873811,0.027438086,-0.022759793,-0.02984632,-0.012376748,-0.017953193,0.00505828,-0.050967723,0.0054086586,-0.013363729,-0.0065288823,-0.016482592,0.0244574,-0.02183203,0.03993327,0.010629791,-0.015781835,0.012189222,0.0119128665,0.002009741,-0.046269692,0.0028178322,-0.0106594,0.0027808202,0.009183862,0.041926973,-0.01384735,0.03772243,0.020450257,-0.040782075,0.012830759,0.026312927,0.016235845,0.03734738,-0.015120557,-0.0048263394,-0.01873291,0.004216878,0.04634865,0.012653102,0.012218831,0.013807871,0.021239841,0.0031780803,-0.007910657,-0.017361004,-0.037584256,0.03095174,-0.004046624,-0.04322979,-0.01657142,-0.016897123,-0.0012682712,-0.0057837116,0.019631062,-0.006597971,-0.02289797,-0.013442688,-0.033241536,0.0039775353,-0.0013348925,0.026451103,-0.0056850133,-0.00748132,-0.014113835,-0.024082348,-0.023194065,-0.010994974,0.0009777285,0.023904692,-0.013018286,-0.002325575,0.055626277,0.006820042,-0.010225128,0.042479683,0.007427036,-0.008803875,0.03638014,-0.048954282,-0.002461285,0.0134328175,0.01874278,0.0050829547,-0.016650377,0.056178987,0.05219158,0.029451527,-0.000118823315,0.027655222,0.045480106,-0.007027308,-0.013116984,0.012110263,0.01175495,0.0044858307,0.0052408716,0.00022685152,-0.023865212,-0.0024674537,0.016818164,-0.01604832,-0.020864788,-0.013561126,0.056376383,-0.034307476,0.017686708,-0.016383892,-0.02127932,-0.024102088,0.014469149,0.010945625,-0.0036444291,0.008665698,0.020608174,0.026510322,0.054560337,0.029017255,-0.019976506,-0.03716972,-0.014123705,-0.03249143,0.005156978,0.0109357545,-0.011143021,-0.00072419766,-0.0013879427,0.020687131,0.033873204,0.003622222,0.013462427,-0.007964941,-0.03369555,-0.013462427,-0.019413926,-0.0033162578,-0.034800965,0.0042267484,-0.014311232,-0.0186046,0.036518317,0.01594962,-0.026352406,0.018880956,0.018436814,-0.0031682106,0.014232273,0.021516196,0.009657614,0.008019225,0.028267149,0.015920011,0.0015137829,0.027635481,-0.02396391,0.031622887,-0.022009687,-0.0072888583,0.0055172266,-0.00746158,0.007920526,-0.014942899,-0.024200786,-0.004295837,-0.00063968735,0.0027265362,0.00426376,0.0067164088,-0.0063759005,0.024200786,0.00030226307,-0.019344836,-0.0037159852,-0.025720738,-0.030596426,0.037505295,-0.0027857553,0.013225552,0.025029851,-0.025819436,-0.0096872235,-0.003224962,0.004305707,-0.03193872,-0.008976596,0.02191099,-0.007037178,0.004828807,-0.013492037,-0.00693848,-0.03142549,-0.037505295,-0.017232697,-0.0038072811,0.023055887,-0.024042869,-0.03251117,-0.0015076142,0.0043920674,-0.051954705,-0.037268423,-0.0038665,-0.02283875,0.037248682,0.03144523,-0.02767496,0.031010957,-0.008418952,-0.014015137,-0.042479683,0.016275324,0.0051964577,0.0047671204,-0.022029426,-0.01173521,0.004209476,-0.032807264,0.0055172266,0.02767496,0.030793821,-0.010373175,-0.0014126173,0.025483862,0.015594307,-0.04001223,0.009929034,-0.016916862,-0.015150166,-0.010471874,0.012139873,-0.0008858159,-0.0009925333,-0.0076343017,-0.030556947,-0.03462331,-0.0028992582,0.016443111,0.0069335448,-0.0068101725,0.009287496,-0.015623917,-0.0053297,0.019779108,0.033833724,-0.0058379956,0.0018222146,-0.003748062,0.028642202,0.026845897,-0.02137802,0.007969876,-0.017469572,0.0036542988,0.0019295488,0.008315319,0.0015298213,-0.012337268,-0.019986374,-0.000785884,-0.00909997,0.012366878,-0.016551679,0.014636936,-0.0022910307,-0.018249288,-0.0033779442,-0.015160035,0.025464123,0.021121403,-0.00017195068,-0.02076609,0.02343094,0.019601453,-0.012208961,-0.030102935,-0.0016038449,-0.007955071,-0.010363306,0.022207083,-0.019078352,0.0017815016,-0.001761762,0.049506992,0.02937257,0.011300938,0.0105014825,-0.013413078,-0.009933969,-0.001874031,-0.015130426,0.017361004,-0.029510746,0.0067953677,-0.012830759,0.010156039,-0.025878655,-0.013728912,0.014814592,-0.034919403,-0.0038442928,-0.023253284,0.015317952,0.039676655,0.04417729,-0.000013262564,-0.009929034,0.014044747,-0.03991353,-0.016778685,0.027971055,0.0067509534,0.025918134,-0.014942899,0.006129155,-0.03351789,0.0080044195,0.03728816,-0.01545613,0.014597456,0.025306204,0.0024193383,0.01659116,-0.025246987,-0.01543639,0.010471874,-0.04220333,0.03422852,-0.011468725,0.012001695,-0.038669936,-0.006454859,-0.009218407,0.0111528905,-0.029885799,0.025325945,0.009800727,0.043466665,-0.038571235,-0.008803875,0.046625007,0.01657142,-0.016275324,-0.0017407886,-0.011567423,-0.04165062,0.028819859,-0.0082758395,0.032116376,0.03351789,0.038768634,0.029648924,-0.02181229,0.038867332,-0.02181229,-0.03790009,-0.010304087,0.018249288,-0.0030719799,0.022246562,-0.018505903,-0.012722191,0.0041996064,-0.028109232,0.0015002119,-0.02293745,0.041255824,0.03195846,0.0073974263,0.0012867771,-0.011133151,-0.05065189,0.049309596,0.04958595,0.03424826,-0.016235845,0.016127277,-0.0053000906,-0.0071605504,-0.02982658,0.018880956,-0.03414956,-0.027990796,0.009183862,-0.02242422,0.02662876,0.008078444,0.02607605,0.0014385255,-0.009065425,0.012495185,0.018269027,-0.029135693,0.03841332,-0.019798849,-0.013817741,0.029905539,-0.013580865,-0.020726612,-0.01439019,0.03882785,-0.010007992,0.008917377,-0.018229548,-0.060482226,0.00983527,0.011488465,-0.014212533,-0.021614894,0.028879078,0.0077774143]},{"id":"interface-APIBan","type":"interface","source":"main","text":"Interface: APIBan\nProperties: expires_at: string | null, reason: string | null, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIBan"},"embedding":[-0.049154554,-0.008573469,0.02598625,-0.009577029,-0.023380978,-0.025587484,-0.031449344,0.0063038254,0.027621191,-0.018343234,-0.0122819925,-0.008706391,0.016774755,-0.005067651,-0.006380256,-0.013411829,-0.014834095,0.07555286,-0.00014777188,0.039610755,0.05021793,0.0085203,0.008354147,0.050138175,-0.002098506,0.018609079,0.013577982,-0.017638749,0.007682891,-0.031874694,0.06194165,-0.022397356,0.032300044,0.033496343,0.031236669,-0.0057521993,0.051361058,0.017120354,0.006945174,-0.027302178,-0.007390463,-0.03716499,-0.018409695,0.005280326,-0.035995275,0.06300502,-0.0018858308,0.030359384,-0.026517939,0.04989892,-0.008852605,-0.01223547,-0.029083332,0.023793038,0.02477666,-0.010347977,-0.012913371,0.039424665,-0.03304441,0.031449344,0.010613821,-0.012394976,-0.012242116,0.02085546,-0.04880896,0.016163314,-0.030492306,0.0548702,0.014209361,0.015006893,0.049526736,0.01278045,-0.0023709962,0.041046314,-0.006788991,0.010208409,0.017997637,0.018516034,0.0017678626,-0.018396404,-0.046788543,0.051228136,-0.059868068,-0.033097576,0.031210085,0.0051640193,-0.0741173,-0.023128428,-0.0033629264,0.029269423,-0.017266568,0.033443175,-0.04030195,-0.014887263,0.039982937,-0.027328761,-0.0010027303,0.004333257,-0.02689012,0.038892977,0.03511799,-0.03607503,-0.028498476,0.016123438,0.002892715,-0.0014729418,0.00009917227,0.0236867,-0.08544226,-0.037616923,-0.02024402,0.01250796,-0.035516758,-0.0058319527,-0.06635466,-0.023819622,0.006865421,0.04689488,0.04864945,-0.03150251,-0.019552825,0.004938052,0.03769668,-0.009650137,-0.022623323,-0.0015560181,-0.017678626,-0.02857823,-0.046442945,-0.0732666,0.058166664,-0.00040375057,0.036340874,0.0055627855,-0.03421412,0.007317356,-0.0047287,-0.017798254,-0.03216712,-0.03413437,0.00082287024,-0.0042202733,0.031396177,0.0018858308,-0.065982476,0.015020185,-0.039079066,0.0059316442,0.017014015,0.006004751,-0.00996915,0.030651812,-0.005207219,0.026571106,0.012062671,-0.04391743,-0.00809495,0.019991469,-0.019473072,-0.034001447,0.024218388,-0.034958486,0.0023826268,-0.032113954,0.022144804,0.026983164,0.02900358,-0.0078955665,-0.04888871,-0.016123438,0.008460485,-0.0067590834,-0.075925045,-0.013338722,-0.0063005025,-0.03588894,0.00087562366,-0.03027963,-0.007603138,-0.008261102,0.029163085,0.032778565,-0.05064328,-0.07464899,-0.03498507,-0.02591979,-0.024843121,0.035038237,0.010254932,-0.035676263,0.03655355,0.037085235,0.0006002259,0.02677049,0.025893204,-0.043412324,-0.013484936,-0.05138764,0.00045858088,0.0026218863,0.0049712826,-0.0056192772,0.045246646,0.013823887,0.008513654,0.014395452,0.023474025,-0.0016897708,-0.02152007,0.017359613,0.017306443,0.007902212,-0.015817717,-0.015498704,0.00731071,-0.02152007,0.015631627,-0.021865668,0.02036365,0.010620467,-0.022503695,0.036181368,0.0548702,-0.03806886,0.012262054,0.02544127,0.03027963,0.037616923,-0.027328761,0.014328991,-0.03280515,0.06008074,-0.055614565,-0.014461913,0.02622551,0.027568022,0.01187658,0.004997867,0.00050801126,-0.04133874,-0.021546656,-0.004329934,-0.048303854,0.036234535,0.00017290244,-0.007530031,0.04333257,-0.016336113,0.0047885147,0.034373626,0.05518921,0.0012311899,0.04218944,-0.0054431558,0.030891072,-0.02857823,-0.009929273,0.02423168,-0.026212217,0.003735108,0.059814896,-0.023341103,-0.00064508704,-0.009371,0.017572287,-0.016827924,0.03886639,0.0012162363,0.012248762,0.017931176,0.04181726,0.0026866859,0.04062096,-0.039850015,-0.014581542,0.015259445,0.065663464,0.02646477,-0.08320917,-0.003665324,-0.03113033,-0.0031236669,0.014342283,0.018728709,0.019991469,0.033097576,-0.010228348,0.015751256,0.04181726,0.015445536,0.010706867,0.034612887,0.031688605,-0.03384194,0.04205652,0.014528374,0.05705012,-0.034187537,0.065291286,0.02924284,-0.012182301,-0.029083332,0.010367916,-0.07215006,0.019300275,0.012328515,0.03860055,0.02544127,0.02847189,0.025760282,0.015817717,-0.03360268,-0.053647317,-0.035702847,-0.0461771,-0.027621191,0.012773803,-0.012926664,-0.04333257,-0.00026044404,-0.02211822,-0.050244514,-0.04604418,-0.014009979,0.011637321,-0.05651843,0.030226462,-0.018582495,0.038175195,0.0033978184,-0.0058153374,-0.04870262,-0.03764351,-0.031874694,0.024816537,0.01027487,0.017372904,0.03216712,-0.0010741758,0.034772392,0.010986003,-0.049048215,-0.044582035,-0.014475205,0.04923431,0.010647052,-0.021799207,-0.001364112,-0.030864486,0.02695658,-0.01070022,0.0006409332,-0.02043011,-0.015033478,-0.017598873,-0.030864486,0.04718731,-0.04660245,-0.07124619,0.04466179,-0.029588437,0.019619286,0.02254357,-0.008919066,-0.02005793,-0.033974864,-0.037244745,-0.0071644955,0.009869458,-0.03759034,-0.022477109,-0.01576455,-0.026198925,-0.019699039,-0.00029699758,0.03899931,-0.03245955,0.0023028736,0.07044866,-0.028179463,0.04133874,0.012129132,0.0068188985,-0.016721588,0.020018052,0.0021998591,-0.0044861175,0.0058319527,-0.017838132,0.03522433,0.02918967,-0.012587713,-0.025467854,-0.025481146,0.0357826,-0.015658211,0.02380633,0.019752208,-0.005190604,-0.023128428,0.013877057,-0.008693098,0.018702125,-0.0056658,-0.04139191,0.04128557,0.014315699,-0.009503922,0.0369789,-0.0074236933,0.024577277,-0.021613117,0.037723262,0.012056025,0.064653255,-0.043944012,0.011617382,-0.00207026,0.003532402,0.024072174,0.009889397,-0.007942089,0.00628721,-0.053806823,-0.019380027,-0.007649661,0.032991238,-0.028684566,-0.049526736,-0.05630576,0.0028594844,0.04923431,-0.00085734687,-0.03304441,-0.0366333,0.0020553065,0.042216025,0.026159048,-0.07278808,0.022437233,0.004383103,-0.029907448,0.0037749847,0.019499656,-0.044316195,-0.021825792,0.038042273,-0.024843121,0.023075258,0.0022364126,-0.040594377,-0.033443175,-0.009071927,0.05003184,-0.06709902,-0.009503922,-0.01278045,0.024630446,-0.026664153,0.032007616,0.017931176,-0.0069385283,0.00039274295,0.040886804,0.05837934,0.03171519,-0.025215302,0.021759331,-0.016841216,-0.0049579903,0.015605043,0.020084513,0.031236669,-0.024324724,-0.01739949,-0.018010931,0.026677445,-0.0690131,-0.0030306214,-0.0077626444,-0.0036620009,0.015232861,-0.01157086,0.014249238,0.04224261,0.10782632,0.05518921,-0.0020735832,-0.04646953,0.033336837,0.0005620108,0.028684566,-0.030784734,-0.015751256,0.023115136,-0.007589846,-0.017904593,-0.06385573,0.012547837,0.009929273,0.03716499,-0.082996495,0.011052464,-0.0039610756,0.0018941384,0.0040375055,0.007603138,-0.02187896,-0.008307625,-0.03136959,-0.027993372,-0.016934263,-0.03432046,-0.014727757,-0.06337721,0.028126294,-0.023646822,0.06327087,-0.04030195,0.04476813,0.028206047,0.009550446,0.02501592,0.014780926,-0.005007836,0.0022679816,-0.004791838,-0.034905314,-0.028019957,-0.013730842,0.027966788,-0.012713989,0.0093577085,0.037005484,0.006117735,-0.012614298,-0.009390939,-0.015259445,0.019566117,-0.037537172,-0.0012087594,0.0047619306,0.010347977,0.0054930015,-0.035942107,-0.007875628,-0.0030189909,0.020469988,-0.022477109,0.0042834114,-0.0048184223,0.00020156374,0.024005713,-0.023048675,-0.006513178,0.03487873,0.05045719,-0.038547378,-0.04296039,-0.012295284,-0.020376941,0.00097116135,0.033762187,-0.0113781225,-0.030226462,0.00032918964,0.019087598,-0.00672253,-0.02054974,-0.014594835,0.013690965,0.06252651,-0.039610755,0.04888871,0.029987203,0.012694051,0.019925008,0.024869705,-0.0037118467,-0.021254227,-0.007397109,-0.0112385545,-0.020948507,0.06103778,-0.0077825827,-0.016030394,-0.01564492,0.0040840283,-0.013797303,0.055455055,-0.011291724,-0.0043000267,-0.03769668,-0.017253274,-0.0026949935,0.023181597,0.015299322,0.035197746,-0.00961026,0.02574699,0.025055796,-0.004200335,0.0036221244,0.023527194,0.026983164,0.042588208,0.004941375,0.032300044,-0.04181726,-0.0015435567,0.029934034,0.020283896,-0.029880865,-0.036713056,-0.000019328209,-0.0013699273,-0.02985428,-0.02187896,0.0023178272,0.004775223,0.018024223,0.011943041,-0.0051307892,0.05149398,0.00042368885,0.014541666,-0.01934015,-0.04593784,-0.004316642,-0.00097365363,0.01951295,-0.023553777,-0.016349405,-0.00882602,-0.0060944734,-0.00092463865,0.005792076,0.03777643,-0.03336342,-0.032246877,0.022078343,-0.012089255,0.030120123,-0.04973941,0.003294804,-0.028126294,-0.034905314,0.018569203,-0.026198925,0.013026356,-0.019792086,-0.021001676,-0.0075832,-0.0028827458,0.028259216,-0.018290067,0.017519118,0.028365554,0.020695955,-0.00640684,-0.014169484,0.038760055,0.020337066,0.000549134,-0.013591274,-0.019486364,0.014342283,-0.0026418245,-0.012321869,-0.019074306,-0.017878009,0.0005761338,-0.026478061,0.03934491,0.029694773,-0.0052271574,-0.012182301,-0.019100891,-0.009304539,0.020709246,-0.0084538385,0.0029109917,-0.017319735,-0.01879517,0.0029325916,-0.018835047,0.014581542,0.013591274,-0.027647775,0.0009977458,-0.011338246,0.04575175,0.0386803,-0.01928698,0.0016183252,0.0045160246,0.032406382,0.003259912,-0.009630199,0.006945174,-0.00061019504,0.00500119,-0.015897471,-0.00048599605,-0.05758181,0.03684598,0.034905314,0.017239982,-0.012095901,-0.031103747,-0.04338574,0.006788991,-0.047639243,0.056890614,-0.018077392,0.02767436,-0.023965836,0.028206047,-0.008227872,0.008061719,0.025893204,0.011198678,-0.056837443,0.026358431,0.03769668,0.023739869,0.04585809,0.023394272,0.009949211,0.031236669,-0.01199621,-0.0140897315,-0.023474025,0.0089390045,-0.01564492,-0.003221697,0.01027487,-0.0038912913,-0.010873019,-0.00040188135,0.029960617,0.018037515,-0.015671503,-0.010879666,-0.0060446276,0.0044462406,-0.008081657,-0.0009977458,0.008772852,-0.009975796,-0.00785569,0.01027487,-0.017200107,0.0060014282,0.02169287,-0.005865183,0.023181597,0.011225263,-0.04920772,-0.0036420627,-0.021812499,0.040328532,-0.0132058,-0.010288162,-0.004821745,0.00095703837,-0.0055461703,-0.008772852,0.037005484,0.023553777,-0.0055561396,-0.016336113,-0.0226632,0.002399242,0.03735108,-0.010613821,-0.029880865,-0.02048328,-0.0066892994,0.00016189483,0.02574699,0.005659154,-0.030864486,-0.0084538385,0.0070315734,-0.022251142,-0.01758558,-0.031263255,-0.04224261,0.009663429,-0.015777841,-0.0036420627,0.017811548,-0.05074962,0.029296007,0.004911468,-0.005257065,-0.07528702,0.019326858,0.047905087,0.0369789,-0.009623553,-0.04389084,-0.020297188,0.012095901,-0.018436281,0.0010874681,0.05923004,-0.0028877303,-0.018808462,-0.023859499,0.0048782374,-0.01722669,-0.006785668,0.020523157,0.04944698,0.014275822,-0.03899931,0.032246877,-0.01462142,0.062473338,-0.0019157382,-0.0018426311,0.0066195154,0.008852605,0.0224904,-0.04389084,0.0036221244,-0.009231432,-0.027966788,-0.00972989,0.01896797,0.016867802,0.006463332,0.0016166638,0.006925236,-0.03650038,0.007902212,-0.024736783,-0.0018143852,0.014661296,-0.03899931,0.032539304,0.026571106,0.0010143609,-0.047001217,0.0041770735,-0.03806886,-0.019167352,0.02895041,-0.0019772146,-0.032193705,0.01825019,-0.037856184,0.020961799,-0.03142276,-0.046336606,0.02199859,0.02405888,-0.02653123,-0.017426074,0.053408056,0.007330648,-0.0062240725,-0.012826973,-0.032060787,0.017146938,-0.03969051,0.022942336,0.024962751,0.031263255,0.0113781225,0.027488269,-0.0025803482,0.010859727,0.0065464084,-0.0274351,0.025348224,0.00964349,0.046203684,0.024032297,0.0037882768,-0.0027581314,-0.02217139,0.020868754,0.024882998,-0.02005793,0.036021862,-0.0014845725,0.008653222,0.003861384,-0.0025089027,-0.0011206985,0.020390235,0.044449117,-0.0044196565,0.019659163,0.026252095,0.0055561396,-0.017426074,0.0054431558,-0.02961502,-0.038387872,0.022556862,0.019433195,-0.0037118467,0.07044866,-0.0067657297,-0.0000025766617,0.0016058638,0.034772392,0.016960846,0.03479898,0.0072309566,-0.008666514,-0.0038082153,0.032486137,-0.035463586,0.003871353,-0.00836744,0.020775707,0.0029807757,0.004070736,0.040036105,-0.018821755,-0.009211495,-0.012920018,-0.04133874,-0.0090785725,-0.0029508683,-0.0075765536,0.011663905,0.00402089,0.031901278,-0.030837903,-0.020044636,0.0255609,0.025614068,0.011816765,0.002367673,0.0032765272,0.0128402645,0.041551415,-0.026597692,0.010281516,-0.019167352,-0.0021217673,-0.028392138,-0.042029936,-0.015498704,0.009377647,-0.028073125,0.022796122,-0.027249008,-0.01202944,-0.02683695,0.050350852,-0.024683615,0.024258263,0.019871838,-0.002766439,-0.010573945,-0.033097576,-0.05106863,-0.004206981,-0.02140044,0.01583101,0.014554959,0.020682663,0.016296236,0.0011439599,-0.039477833,0.037085235,0.004060767,-0.021413734,0.006742468,0.013624504,0.019353442,-0.030864486,-0.03735108,-0.042747714,0.029907448,-0.011590798,-0.006380256,-0.0042368886,0.026677445,-0.028498476,0.047001217,0.062367,0.06061243,-0.006872067,0.00809495,-0.0018160468,0.014687881,0.0008739621,0.0015585104,-0.025295056,0.029056748,0.032991238,-0.023035381,-0.012315223,-0.009909335,-0.007942089,-0.039238572,-0.008121534,0.017811548,-0.0058186604,-0.01308617,0.008427255,-0.0016008792,-0.02380633,-0.004682177,0.01758558,-0.032432966,-0.027209133,-0.015126523,0.0013167586,-0.0068188985,-0.011982918,0.029136501,0.04405035,-0.021825792,0.010334685,-0.018582495,-0.01172372,-0.01148446,0.022158097,0.00052753417,0.025188718,-0.0076297224,-0.017878009,0.04878237,0.019871838,0.012966541,0.017173521,0.03790935,0.0048250686,-0.0047154077,-0.0060280124,-0.035623096,-0.0043764566,-0.017612165,-0.004070736,-0.0049081445,0.05747547,-0.0054996475,0.03293807,0.046256855,0.02738193,-0.010228348,0.012581067,0.03195445,-0.049819164,-0.0059482595,0.017000724,-0.019167352,-0.009583676,0.0030090217,-0.0032084046,-0.003798246,-0.011477814,0.023460733,0.011311661,-0.023354394,0.009377647,0.01903443,0.011717074,0.026597692,-0.0028478538,0.033390004,-0.00044445792,-0.030997409,0.019792086,-0.041258987,0.0050211283,-0.0021417057,-0.00988275,-0.004874914,-0.018263482,-0.009783058,-0.02102826,0.012800388,-0.027155964,0.0064899162,-0.03705865,-0.026637567,-0.0073040635,0.0067092376,0.043598413,0.029880865,-0.027594605,-0.0058884444,0.003298127,0.006729176,0.01825019,0.013278907,0.019167352,-0.03227346,0.010381208,0.0004490271,0.032964654,-0.013371953,0.030066956,0.035383835,0.012262054,0.021746038,0.002136721,-0.031263255,-0.06678001,0.00719108,-0.003990983,0.01504677,0.0070448657,0.008287687,-0.051148385,-0.006878713,0.005642539,-0.0032732042,-0.0067690527,-0.019778794,0.020921921,0.015897471,0.01988513,0.028817488,-0.010760035,-0.04694805,-0.0005528724,0.021506779,-0.029774526,-0.008161411,0.006788991,-0.014953724,0.0029708066,-0.033948276,0.038387872,0.00226632,-0.0030871134,0.000023118562,-0.0014696188,0.03360268,-0.0066959453,0.02102826,0.011836704,-0.024524108,0.004868268,-0.006865421,-0.0449808,0.049819164,-0.00029699758,0.0070049893,0.012820327,-0.026092587,0.00022534432,0.03769668,0.014594835,-0.004977929,-0.008287687,0.011032525,0.00069036364,-0.006745791,-0.016096853,-0.0034127722,0.008600053,0.0044960864,0.026305262,0.013690965,-0.012753866,0.01673488,0.030306214,0.018502742,-0.00273487,0.010294808,-0.012926664,0.006127704,0.0050875894,0.0009994073,0.015910763,-0.0017612164,0.016163314,-0.035862353,0.01922052,-0.023699991,-0.012155716,0.025840037,0.017452657,0.003221697,0.0037218158,0.019499656,-0.005144081,0.03304441,0.010022318,-0.015365782,0.0011464522,-0.025308348,-0.019087598,-0.01148446,-0.026478061,-0.02580016,0.026092587,0.038972728,0.00092463865,-0.01187658,0.0027398546,0.0055694315,0.02985428,-0.0005296111,0.0004976267,-0.016336113,0.03051889,0.0004760269,-0.0047851917,0.03596869,0.027222425,-0.024311433,-0.010986003,-0.007769291,0.005921675,0.022330895,0.010042257,-0.010793266,-0.003934491,0.016482327,0.025029212,0.0153391985,-0.02815288,0.00236435,0.01175695,0.024151927,-0.019699039,0.0021350596,0.024976043,0.0007497631,0.025308348,0.017426074,0.009384293,-0.005051036,0.008207933,-0.0040109213,-0.015857594,0.008327563,0.027049625,0.004934729,-0.0039444603,0.005144081,0.006788991,0.006782345,-0.0056259236,-0.010839788,0.007131265,-0.0074436315,-0.029880865,-0.018077392,0.013877057,-0.01070022,0.030066956,-0.024643738,-0.02387279,-0.00625398,0.013877057,0.0055827238,0.006745791,-0.012468083,0.0021516748,0.015671503,-0.00855353,0.010088779,0.0068255444,0.03317733,0.013877057,0.0011871596,-0.017306443,0.011810119,0.01266082,0.039079066,0.028498476,-0.01661525,0.010201763,-0.046336606,-0.008114887,-0.009397585,-0.00032129738,0.015365782,-0.0008328394,0.0070249275,-0.011969626,-0.039717093,-0.0035789248,-0.01301971,-0.027116086,0.018037515,0.021174474,0.00038028153,-0.0055129398,-0.013823887,-0.015259445,0.0029325916,0.025893204,-0.02054974,-0.0010974372,-0.01576455,0.005051036,0.015897471,-0.0034460027,0.013690965,0.016455743,-0.020695955,0.00539331,0.02465703,-0.02012439,-0.01290008,-0.011530983,0.014169484,-0.019433195,-0.02695658,-0.016176607,0.0045758397,0.016389282,-0.027647775,-0.015325906,0.004987898,0.026677445,0.018715417,-0.016056977,0.003977691,0.014116316,-0.007981966,-0.018103976,-0.020031344,-0.027461683,0.009291247,0.016695002,0.026491353,-0.010906249,-0.014328991,-0.022636617,-0.022184681,-0.008699745,0.0012386668,-0.017027307,0.021958714,0.000025364217,-0.000084737774,-0.02767436,0.01407644,0.030572059,0.048250683,-0.0065032085,-0.021427026,0.05651843,-0.028285801,0.0037783077,0.024417771,-0.0033380035,0.005984813,0.0040175673,0.0008361624,-0.0053368183,0.013225739,0.03160885,-0.003200097,-0.015870886,0.028737735,-0.009802997,-0.012494667,0.015737964,-0.02494946,-0.033576097,0.027966788,0.005659154,-0.013391891,-0.02924284,0.019313566,-0.011936395,0.0104011465,-0.015977224,-0.0018426311,0.0039411373,0.018170437,-0.006656069,-0.014953724,-0.026132464,0.040594377,-0.05609308,-0.01042773,-0.0056923847,-0.008819374,0.045113724,-0.026876828,0.0030173294,-0.027461683,-0.014634712,-0.0059083826,-0.017505826,0.0178913,-0.026092587,-0.041498248,0.011039171,-0.009955858,0.03740425,0.040328532,-0.019007845,-0.01770521,-0.030385967,-0.0055195857,-0.027023042,-0.0068853595,-0.015060062,-0.043704752,-0.004599101,0.0034991715,0.009018757,-0.013179216,0.00049264217,0.03378877,-0.0044994093,-0.00480513,0.004316642,-0.012966541,0.028711151,0.008460485,0.02804654,-0.00020519833,-0.020164266,0.026717322,-0.024191802,0.02847189,-0.038627133,-0.0019506303,0.008181348,0.0034160952,-0.009277956,-0.018954676,0.021679576,-0.019845255,0.00035535864,0.037297912,0.01576455,0.0018243544,-0.0029292684,-0.013544751,-0.0016050331,0.03764351,0.024085466,-0.0059316442,-0.006237365,-0.0052171885,-0.007815814,-0.011750304,-0.008340855,0.03934491,-0.010627113,-0.033416588,0.019419903,-0.024856413,0.008626637,-0.017093768,0.019380027,0.011903165,0.0029392375,-0.017359613,-0.0017512473,0.008972235,0.00539331,-0.00016812555,0.009763121,0.0199383,0.008626637,0.028498476,-0.008693098,0.0021201058,0.01105911,0.05011159,0.009749828,0.03370902,0.048543114,-0.0012785435,0.032884903,-0.021174474,0.031901278,-0.006539762,-0.03487873,-0.026557814,-0.019845255,-0.022929044,-0.02895041,-0.03354951,0.0050178054,-0.025427978,-0.032060787,-0.00096617674,-0.012773803,-0.0015302645,0.045592245,0.01981867,0.02653123,0.022344187,-0.009138388,0.040222194,0.043412324,0.026823658,-0.009683368,-0.012607651,0.021360565,0.015950639,-0.022264434,0.009603614,0.0064965626,-0.022689784,-0.036606718,-0.011198678,0.009131741,0.0005046882,0.0037583695,-0.010733451,-0.0011697136,-0.02314172,0.022025175,-0.009364354,-0.023832913,-0.016482327,-0.017319735,-0.0034559718,0.030066956,-0.014860679,0.009523861,-0.028844073,0.0049513443,0.024005713,0.012773803,-0.019114183,0.007749352,0.0017246628,0.007151203,-0.029083332,-0.024763368,0.012162362]},{"id":"interface-APIChannel","type":"interface","source":"main","text":"Interface: APIChannel\nDescription: Channel from GET /channels/{id} or GET /guilds/{id}/channels\nProperties: bitrate: number | null, guild_id: string | null, icon: string | null, last_message_id: string | null, last_pin_timestamp: string | null, name: string | null, nicks: Record, nsfw: boolean, owner_id: string | null, parent_id: string | null, permission_overwrites: APIChannelOverwrite[], position: number, rate_limit_per_user: number, recipients: APIUserPartial[], rtc_region: string | null, topic: string | null, url: string | null, user_limit: number | null","meta":{"url":"/docs/typedefs/APIChannel"},"embedding":[-0.018136604,-0.020851089,-0.01388471,0.027577246,0.024046013,-0.008515796,-0.0020163457,-0.0012153626,0.044080354,0.006221696,0.018677097,0.016743327,-0.021055276,0.020082384,0.05140706,-0.021439627,-0.019854175,-0.00040762316,-0.028514102,0.013464326,-0.00094811793,0.028898455,0.0047263266,0.056884073,-0.027601268,-0.005849355,0.00503561,0.012071051,-0.033222415,0.0041407906,0.050878577,-0.023985958,0.037306152,0.022160286,0.0010712306,-0.024046013,0.025151024,0.023553561,-0.0074408115,-0.022520617,-0.010809896,0.049533345,0.009392599,0.0145693375,-0.047491476,0.02570353,-0.021343539,0.03490395,0.020226516,-0.0065519977,-0.04261501,0.02558342,-0.023997968,0.025199069,0.020779021,0.017343877,-0.005416959,0.022208331,-0.01411292,-0.009170395,-0.019649988,-0.042254683,0.0076570096,-0.016599195,0.004399027,0.019373735,-0.06317784,0.058853876,0.04235077,-0.0019953265,0.047707673,-0.013536392,-0.023577584,0.002887143,0.0068402616,0.022016155,-0.046650704,-0.0090082465,0.020346627,-0.047515497,-0.03259784,0.042783163,-0.063754365,-0.05818126,0.02171588,0.014196997,-0.00107048,-0.0025042924,-0.001216864,0.018196657,-0.035432436,-0.019169549,-0.08100215,-0.009722901,0.01858101,-0.048188113,0.022676758,0.015674349,-0.004891478,0.007302685,0.057989087,-0.026640387,-0.070192255,-0.015133854,-0.0017130682,-0.010990061,0.0068642837,0.032189466,-0.035264283,-0.04033292,-0.03968433,0.027072784,-0.04175022,0.008095411,-0.0081314435,0.000365397,0.04480101,0.00068312534,0.04645853,0.012227193,-0.0506864,-0.011320363,0.062216956,0.0136925345,0.0053809257,-0.016803382,-0.015518206,-0.0065700146,-0.035312325,-0.029114652,0.04006868,0.0045281453,0.002570353,0.012635567,-0.011638654,0.004420046,-0.019013405,-0.02906661,-0.02450243,-0.05597124,-0.0026874603,-0.028538125,0.06034324,-0.027192893,-0.022820892,0.014293085,-0.046002112,-0.006383844,0.013548403,0.012827743,-0.035744723,0.018076548,-0.03970835,-0.02038266,-0.007506872,-0.013464326,-0.003215944,0.0012206174,-0.025078958,-0.04621831,0.026784519,-0.024118079,-0.0138727,-0.0045581725,-0.043647956,-0.012071051,0.022820892,0.010773863,-0.059622582,0.034591667,-0.018172637,-0.00015492307,-0.077927336,-0.009068302,-0.019613955,-0.03764246,-0.004411038,-0.048428334,-0.024514442,-0.0037864663,0.023913892,0.025199069,-0.009993148,-0.07499666,-0.0126475785,0.035672657,-0.026640387,-0.016983548,0.017524041,-0.028898455,-0.052319895,0.011224275,0.0333185,0.022244364,0.0038945652,-0.015229942,0.03925193,-0.013812644,0.03490395,-0.051695324,0.03994857,0.0023646648,0.058998007,-0.037426263,0.00094886863,-0.020094395,0.020418692,0.014028843,-0.059814755,0.004570184,0.028970521,-0.00053298794,-0.00061068404,-0.02906661,-0.03334252,-0.009800972,-0.041053582,0.036225162,-0.050974663,-0.034471557,-0.035408415,0.031204566,0.034303404,-0.0026213997,0.011218269,0.031660985,0.014172974,-0.0008392683,0.009674856,0.016575174,-0.019770099,0.034831885,-0.038891602,-0.04636244,-0.02378177,-0.0021079297,0.0074348063,0.03905976,-0.022388496,-0.062409133,-0.016707294,-0.044128396,-0.016875448,0.03641734,0.0029742226,-0.026448213,0.022184309,-0.013848677,-0.026159948,0.038050834,0.05236794,0.011128187,-0.007626982,0.0021799956,0.04126978,-0.0077170646,0.028994543,0.027337026,0.023625627,-0.024478408,0.050157916,-0.0160587,-0.03937204,0.0006643582,-0.012227193,-0.009080312,-0.008329625,0.016839415,-0.012959864,0.012371325,0.024670584,-0.031036412,0.085278064,-0.015398096,-0.001607972,0.015097821,0.01954189,-0.0049545355,-0.009560753,-0.03848323,-0.035120152,0.0063658273,-0.0041407906,0.046002112,0.0068823,0.00015942719,0.053761214,0.004936519,0.05395339,0.02160778,0.0030613025,0.049076926,0.025751574,-0.042783163,-0.0032850073,0.039468132,0.07000008,0.007747092,0.07120118,0.028393993,0.001389522,-0.015842503,0.022184309,-0.070288345,0.004738338,-0.006768196,0.04235077,0.00941662,0.031180544,-0.05659581,0.06961573,0.04657864,-0.07043248,-0.0056481706,-0.056691896,-0.00422787,0.030700104,0.027577246,-0.011848846,0.03862736,-0.0253432,-0.012803721,-0.0149056455,-0.018857263,0.010521632,-0.009314527,0.030748148,-0.033510678,0.020863099,0.016178811,0.029595092,-0.07062465,0.024646562,0.014461238,0.007891224,-0.021271473,-0.028706279,0.033582743,0.027913554,-0.0063658273,0.065724164,-0.0019833157,-0.030003466,0.026232013,0.024214167,0.021391582,-0.05164728,-0.009236455,0.011770776,0.027601268,-0.0071885805,0.015434129,-0.031660985,-0.028706279,-0.019698033,-0.03425536,0.02426221,-0.009458659,-0.0650996,0.029883357,-0.03658549,-0.006467921,-0.007675026,0.01822068,0.038339097,-0.01774024,-0.038891602,0.018184647,-0.037354194,-0.07706255,0.04261501,-0.00092184386,-0.026207991,-0.016863437,0.03101239,0.00820351,0.0034171282,-0.005567096,-0.021343539,-0.0034921968,0.023265298,-0.0006076813,0.00947067,-0.02726496,0.021055276,-0.01279171,-0.022232352,0.024358299,-0.050974663,0.014701459,0.012191161,-0.01291182,-0.017848339,-0.040380966,0.02292899,0.011236286,0.0001011551,0.006966377,-0.0024547472,0.00043840133,0.035576567,0.02945096,-0.03305426,0.013500359,-0.042302724,0.015482173,0.016587185,0.009674856,0.050013784,-0.026015816,0.006407866,-0.0138727,0.021655824,0.034447536,0.059430405,-0.024538463,-0.038315076,-0.045401562,0.038987692,0.055298623,0.038074855,-0.015157877,-0.023733728,0.006660097,-0.006798223,0.009200422,0.0045461617,-0.007891224,-0.033222415,-0.05179141,-0.020190483,0.017103657,0.041822284,-0.010329456,0.03221349,-0.010689786,0.034303404,-0.015482173,-0.026736476,0.043816112,-0.018809218,0.0032429688,-0.018196657,-0.018737152,-0.0044740955,0.017584097,0.03463971,-0.054241654,0.00820351,-0.025006892,-0.0311325,-0.01931368,0.00070977473,0.07936866,-0.022400506,-0.036057007,-0.006503954,0.06399459,-0.058853876,0.024298243,-0.009614802,0.011170225,0.011062127,0.052512072,0.012587523,-0.015362063,-0.034567643,-0.0051977583,-0.03985248,0.008659927,-0.011038105,0.002855614,0.031901203,-0.0008617889,-0.027673334,-0.019734066,0.010509621,0.009236455,0.017884372,0.022016155,-0.0010847431,0.010449566,-0.03629723,-0.019121505,-0.0014150453,0.09916278,0.03101239,-0.009722901,-0.020250538,0.004843434,0.006996405,0.0042729117,0.0044770986,-0.011704715,-0.003948615,-0.04343176,-0.054241654,-0.0019352717,0.035048082,-0.010509621,0.018136604,-0.04151,0.028802367,0.011104166,0.030363796,-0.016443053,-0.030604016,-0.021872023,-0.04561776,-0.018292746,-0.00941662,0.013007908,-0.013380249,-0.008461746,-0.022640726,-0.0051707337,-0.04403231,-0.010942017,-0.04066923,0.0463144,0.0020073375,0.014977711,0.0253432,0.026568322,0.0079632895,0.022028165,-0.026015816,-0.04744343,0.0013730068,0.011494523,0.017247789,0.00018110329,0.0136084575,0.046650704,-0.014677436,0.007218608,-0.0149056455,0.001180831,0.014857601,-0.025655486,-0.041606087,0.0080473665,-0.02062288,0.035912875,0.006900317,0.029907377,-0.014100908,0.0027219919,0.026808541,0.020082384,0.008473758,-0.033510678,0.021908056,-0.014269062,0.020526791,0.04499319,0.023493506,-0.051695324,0.010948022,-0.0054589976,-0.03689778,-0.011752759,0.011008077,-0.00049620424,-0.0231572,-0.034231335,-0.0034591667,0.020334614,-0.011368407,-0.03065206,0.013428293,0.011338379,0.006852273,0.024886783,0.0542897,-0.008888137,-0.043143496,0.030988367,0.021799957,0.012371325,-0.016743327,-0.05717234,0.034567643,0.030628039,0.0001920821,-0.032429688,-0.021908056,-0.025391243,0.0011845845,0.037570395,0.014425205,0.019349713,0.013416282,0.0013527384,-0.036249183,0.013656502,0.02364965,0.005705223,-0.023793781,0.00590941,0.0131039955,0.033222415,-0.04237479,0.0037354196,0.026520278,0.033967096,-0.00063470606,-0.013584436,-0.0424949,0.012695622,0.00093010144,0.01025739,-0.026496256,-0.045089275,0.0040717274,0.01080389,-0.028033663,0.0063898494,0.014581349,0.03053195,-0.030339774,0.019145526,0.0075368998,0.035864834,-0.014064875,0.009194417,-0.025175046,-0.04451275,0.017283821,-0.017656162,0.010167307,0.0077891303,0.0132721495,0.012383336,-0.012875787,-0.021427616,-0.002334637,0.002951702,-0.014377161,-0.0047023045,0.043888178,0.013908733,0.0061796573,-0.0073267072,0.028273882,-0.048284203,-0.011638654,-0.033006214,-0.02016646,0.004257898,-0.0150737995,-0.007651004,0.015133854,-0.021091308,0.025895705,-0.034471557,-0.025006892,0.04309545,-0.040380966,0.002270078,-0.030315753,0.011092154,0.023457473,0.021403594,0.026448213,-0.01544614,-0.011116176,0.011494523,-0.024934826,-0.0020824063,0.00814946,0.0074408115,-0.009122351,-0.011194248,0.04309545,-0.010707802,0.00832362,-0.022400506,0.010815902,0.022628715,-0.020899132,0.026352124,-0.04028488,-0.04840431,0.007506872,-0.031685006,0.03500004,0.0010021675,0.02039467,-0.004570184,0.00034193802,0.03584081,0.01116422,-0.0069483607,0.015025755,0.013212095,0.012527468,0.018905306,0.01169871,0.0013707548,-0.008954197,0.008161471,-0.002510298,-0.033943072,0.0011372911,0.029114652,-0.0011155212,0.018989384,0.003540241,-0.016346965,-0.055442754,0.026616365,-0.028538125,0.015025755,0.005750264,0.026159948,-0.02471863,0.0055941213,0.0075248885,0.011812814,0.018412856,0.0030012475,-0.012149122,0.012275238,0.030868258,-0.001764115,-0.015265975,0.02450243,-0.023133177,0.000020784651,-0.0072726575,0.0010201839,0.011452484,0.009086318,-0.010143286,0.052944466,-0.006143624,0.0131039955,-0.0067862123,-0.0016019664,0.0011005074,0.020010319,0.022712791,-0.015061788,0.025271134,-0.0055310633,-0.02099522,0.00037440524,-0.0055430746,-0.02486276,-0.012743666,0.0074047786,-0.06341805,0.023745738,-0.014689447,-0.0013542398,0.019277647,-0.041630108,-0.034783844,0.017572086,-0.028778344,0.0022340452,0.012299259,0.030507928,-0.016851427,-0.0035702684,-0.013800634,-0.022676758,0.050254006,0.009752928,-0.03872345,-0.008119433,-0.009098329,-0.01954189,0.023697693,-0.040597163,-0.048692577,-0.039924547,0.008059378,-0.026159948,0.004278917,-0.018280735,0.002193508,0.013500359,0.013452315,0.009254472,-0.0076570096,0.002073398,-0.024346288,-0.00107048,-0.058229305,0.023265298,0.013680523,-0.003444153,-0.004456079,-0.002510298,-0.0013422287,-0.07153749,0.01007122,0.033102304,-0.012707633,-0.0021604777,-0.03644136,0.009362571,0.03101239,-0.028874433,-0.022953013,0.019662,-0.0028526115,0.012683611,-0.029114652,0.04585798,0.0039996617,0.023469485,0.0078792125,0.041341845,0.022292407,0.0031618946,0.036249183,0.003753436,0.076582104,0.02836997,0.018965362,0.0058913934,0.012755677,0.047611587,-0.043888178,0.012611545,0.030796193,0.001135039,0.019085472,0.0022730809,0.017896382,-0.008545823,-0.012575512,-0.04393622,-0.04420046,0.027433114,-0.0325498,-0.029859334,0.0074648336,0.017463988,0.012839754,-0.02642419,-0.002325629,-0.026640387,0.008948191,-0.026472233,-0.0057562697,0.0070624654,0.036873754,0.0027730386,0.009692873,-0.069135286,0.0028421017,-0.03226153,-0.03197327,0.03629723,0.028153773,0.03151685,-0.024178134,0.0029336857,-0.031805117,0.0041948403,-0.026880607,-0.011002072,0.009885049,-0.0038585323,0.025439288,-0.009380587,0.020803044,0.0013609959,0.057460602,-0.007050454,0.017488008,0.021355549,-0.0013227109,-0.025871685,-0.0047863815,0.038795516,-0.0029502008,-0.006888306,-0.0060325223,-0.040861405,0.023265298,0.01628691,-0.016995559,0.00953673,0.015253964,0.019649988,-0.0003986149,0.011776781,0.0007401776,0.018124592,-0.010449566,-0.034303404,-0.032934148,0.0650996,0.0032189467,-0.01629892,-0.053184688,0.014929667,-0.036489405,0.015422118,0.046722773,0.010936012,0.021331528,0.0010922499,0.006167646,0.011620638,-0.028201817,-0.02861019,-0.016334953,0.029042587,0.0027054767,-0.017163713,0.01116422,-0.027649311,-0.028946498,0.013920744,-0.03538439,0.002282089,0.027817465,0.0080053285,-0.010215351,0.013620469,-0.018388834,-0.056499723,-0.006059547,0.008774032,0.027216915,0.0053478954,-0.0015156375,-0.0035222245,-0.004966547,-0.06442698,-0.002498287,0.005329879,0.014064875,-0.028105728,0.004684288,-0.0038675405,0.021091308,-0.016082723,0.021379571,0.0062337066,-0.040861405,0.023793781,-0.043503825,0.0050866567,0.012053033,-0.021103319,0.01568636,-0.010653753,0.042422835,0.020502768,0.011086149,-0.007687037,0.04838029,0.0403089,0.012971875,-0.0000013312969,-0.0013324698,-0.016082723,-0.016635228,-0.019181559,0.033582743,-0.0055040387,0.028273882,0.022388496,-0.013776612,-0.033462632,0.029523026,0.057364512,0.0001714382,0.0068943114,-0.00645591,0.014581349,-0.029835312,0.0011538062,-0.023301331,0.036729623,0.0073267072,-0.001555424,-0.0034351447,0.020118417,-0.040380966,-0.0105997035,0.037282128,0.02969118,0.029667158,-0.018316768,-0.03475982,-0.0025523365,-0.0013519877,0.0019307676,0.009278494,0.04244686,0.02909063,0.01943379,-0.006900317,-0.012443392,-0.020454725,-0.03101239,-0.009891055,0.01774024,0.026039837,0.020658912,0.0074167894,-0.020803044,0.003336054,0.01568636,-0.016118756,-0.017824316,-0.020839076,0.012695622,0.0072065974,0.006966377,-0.029426938,-0.032309577,0.033558723,-0.026808541,0.0047893845,-0.02316921,-0.005489025,-0.029667158,0.0075128777,0.020779021,0.03315035,-0.012383336,-0.021799957,0.034303404,-0.016971536,0.004912497,0.0048794667,0.030964347,0.03905976,-0.000022813854,0.012010995,0.0007142789,-0.05227185,-0.009518714,-0.0047863815,-0.003612307,0.007813153,0.017319854,0.021535715,-0.019337703,0.021848,0.006443899,0.004807401,-0.015253964,-0.0074768444,-0.00340812,0.013248128,-0.005468006,0.030748148,0.003885557,-0.013296172,0.002385684,-0.006419877,-0.007638993,0.000008427637,-0.022304418,-0.0011470501,0.023373397,0.026039837,0.020094395,-0.008239543,0.013091985,0.021679847,-0.0030177627,-0.0043329666,-0.0333185,-0.003251977,0.0025883694,0.036129072,-0.030243685,0.0072966795,-0.034783844,-0.010359484,-0.0093445545,0.01799247,-0.018328778,-0.0017971451,-0.015434129,-0.036609516,0.015674349,0.019625966,-0.016875448,-0.04576189,0.04309545,-0.045161344,0.0068042288,-0.025751574,0.021751912,0.010527638,-0.037306152,-0.022004144,-0.0124794245,-0.023241276,-0.0028841402,0.0355045,0.008978219,-0.013716557,0.004987566,-0.00083026005,-0.030555973,-0.028153773,0.021920066,-0.014076887,0.026376145,0.008936181,-0.011746753,-0.052319895,0.014425205,-0.004804398,0.0031588918,-0.010323451,0.0013076972,0.0023646648,-0.023481496,-0.019121505,0.03437547,0.0015884541,0.02111533,-0.017163713,0.013380249,-0.023745738,-0.019181559,0.023277309,-0.015434129,-0.015866525,-0.024406342,0.033414587,0.01628691,-0.0149897225,0.006756185,-0.020526791,0.020178473,0.016611207,0.007110509,-0.017175723,0.025607442,-0.0069243386,0.004897483,-0.035864834,0.03524026,0.029474983,0.018088559,0.016575174,0.00034362706,0.04345578,0.0057682805,0.037258107,-0.021631803,-0.012719644,0.0052277856,0.02015445,0.015157877,0.020214505,0.010251384,0.011464495,0.0072426302,0.013380249,0.024886783,-0.013584436,0.012827743,0.023709705,0.0090082465,0.021127341,-0.014377161,-0.006539987,0.024178134,0.005260816,0.015241953,0.01847291,0.0011432966,-0.004678283,-0.011650666,0.00042714103,-0.04151,0.0064859376,0.00054612494,0.010353478,-0.0009511207,-0.0068342565,0.037834637,-0.034831885,-0.029474983,-0.007530894,-0.029979445,0.011320363,-0.009524719,-0.039516173,-0.018160624,-0.0011598117,-0.027841488,0.028802367,0.019445801,-0.00681624,-0.011032099,0.0121851545,0.017848339,0.033222415,0.005558088,0.0006230704,-0.025006892,0.029643137,-0.018196657,0.024790695,0.0069483607,0.028081708,0.038819537,-0.020682935,-0.004723324,0.008900148,0.008828081,-0.014545315,-0.005903404,0.0064018606,-0.0056721927,-0.013836667,-0.005176739,-0.032501753,-0.007164559,0.011050115,0.0018421864,-0.042807188,-0.040837385,0.009494692,-0.044440683,0.04775572,0.022544637,-0.016755339,-0.011356396,-0.030507928,-0.008533812,0.010557665,-0.013091985,0.037089955,-0.012047028,0.01751203,0.011314358,0.021139352,-0.016683273,-0.0029742226,-0.034087203,0.023625627,0.024958849,-0.020178473,-0.014545315,0.014617382,-0.0014293084,0.023493506,-0.015662339,-0.01315204,-0.014124931,0.008762021,-0.0025087968,0.009476676,-0.016575174,-0.03886758,-0.0049905684,-0.03221349,-0.008299598,-0.00019189442,0.04717919,0.0077290754,0.051695324,0.011908902,-0.038387142,0.018605031,-0.0025388242,-0.0008377669,0.01080389,0.011482512,-0.015398096,-0.016827404,0.04451275,-0.008780038,0.010407527,-0.01193893,0.0030658066,-0.027000718,-0.010695791,-0.004627236,-0.008551829,-0.023037089,0.013932754,-0.025919728,0.009290505,0.001108765,0.011998984,-0.012719644,0.01255149,-0.021763923,-0.036849733,-0.010701797,-0.0124794245,-0.031324677,0.0347358,-0.016803382,0.008299598,-0.017043602,0.017668175,0.0132721495,0.029138675,-0.009026263,-0.03598494,-0.021920066,0.0069783884,0.0017941424,-0.02885041,0.0003301147,0.016695283,0.038819537,-0.02642419,0.044104375,-0.023037089,0.001264908,0.028658235,-0.021343539,0.0015584267,-0.028273882,-0.038339097,-0.035624612,-0.031709027,0.005389934,0.010401522,0.03305426,-0.0018391836,0.034951996,-0.0030988369,-0.004305942,0.008960202,-0.017596109,0.011920913,-0.02570353,-0.010047197,-0.030579994,-0.006479932,-0.04393622,0.025679508,0.034687754,0.021127341,-0.0039996617,-0.023685683,0.045641784,0.009380587,-0.017439965,0.007074476,-0.012203171,-0.014221018,0.041221734,-0.007626982,0.0035072106,-0.021535715,0.0122692315,0.0275292,0.0030748148,-0.015350052,-0.0038645377,-0.017175723,-0.018785197,-0.034351446,0.02172789,0.047347344,0.010815902,-0.008125438,-0.054337744,0.0092604775,0.009116345,-0.023241276,-0.018617043,0.0042999364,-0.012959864,-0.007386762,-0.0068042288,-0.021067286,-0.010942017,-0.007759103,-0.02812975,-0.028033663,-0.027721377,-0.0077050533,0.027961597,0.013920744,0.00024603773,-0.039155845,-0.012827743,0.0006144375,0.034351446,-0.012371325,-0.02256866,-0.0020328609,-0.012971875,0.023733728,0.02630408,0.024694607,-0.038555294,-0.007819158,-0.015770437,-0.014833579,-0.0104315495,0.016731316,0.0016334953,-0.024466397,0.017488008,0.020370647,-0.028874433,0.043239582,0.01520592,0.009746923,-0.008095411,-0.019698033,0.018761175,-0.0013249629,0.015542228,-0.014233029,0.0018872276,-0.0038525267,-0.03389503,0.024190145,-0.000102937986,0.029114652,-0.013668513,0.0008745506,0.04501721,0.007542905,0.016683273,0.011980968,0.029378895,-0.038939647,-0.039420087,0.036657557,0.008768027,0.009855022,-0.0050175935,-0.0015223937,-0.016575174,0.031036412,0.014449228,-0.01181882,-0.005056629,0.05467405,-0.024394331,0.0012776697,-0.004362994,0.017067624,-0.012323281,-0.0242502,0.009590779,-0.02750518,-0.007903235,-0.01820867,-0.00748285,-0.003384098,-0.01183083,0.007987312,-0.015422118,0.011278325,0.010911989,-0.0033871008,0.026856586,0.048596486,-0.01580647,0.0032669907,-0.015001733,-0.005906407,-0.019217592,0.054962315,0.019181559,0.017584097,0.020863099,0.04826018,0.0253432,-0.009788961,-0.029883357,-0.000047997062,0.0047893845,0.026688432,-0.012839754,-0.012455402,-0.01556625,-0.027673334,-0.021079296,-0.024190145,-0.03656147,-0.0024082046,-0.023913892,0.00082650664,0.04175022,-0.0047293296,-0.007278663,0.0049995766,-0.03668158,0.0325498,0.06452306,0.017836329,-0.029667158,0.015506195,-0.00046617675,0.0116026215,0.01104411,0.02921074,-0.014449228,0.017163713,0.01882123,-0.03149283,0.041317824,-0.021427616,0.03137272,0.013656502,0.0029622116,0.012719644,0.048164092,-0.021031253,-0.01085794,-0.024430364,-0.034087203,0.018100569,0.021427616,-0.022604693,0.019181559,0.0056481706,-0.0043569887,0.023817804,0.053376865,-0.022616705,0.02402199,0.02147566,0.008395686,-0.03937204,-0.0015509197,0.00844373]},{"id":"interface-APIChannelOverwrite","type":"interface","source":"main","text":"Interface: APIChannelOverwrite\nDescription: Permission overwrite from GET /channels/{id} or GET /guilds/{id}/channels\nProperties: allow: string, deny: string, id: string, type: OverwriteType","meta":{"url":"/docs/typedefs/APIChannelOverwrite"},"embedding":[0.021269493,0.0002472564,-0.049365655,0.026517205,-0.02215185,-0.009346038,-0.014965271,0.00770903,0.0032449907,-0.02387013,0.043491002,0.0067918412,-0.005456693,0.043119483,0.010176152,-0.017623957,0.033576075,0.021014072,0.027701423,0.03229898,-0.036060613,0.04358388,0.0066525214,0.066641316,-0.049597856,-0.015557379,0.01530196,0.02211702,-0.019121645,-0.001912745,0.046463158,-0.02248854,0.013966812,0.014431211,0.000033288004,-0.018401826,0.026517205,0.00078585086,0.0070066256,-0.03090578,-0.0065190066,0.007947034,0.024171988,0.010971435,-0.033692177,0.082198694,-0.011760915,0.02303421,-0.016253978,-0.027724644,0.01152291,0.020572893,-0.058514323,0.020398743,0.035712313,-0.0026253078,0.014036472,0.0006534245,-0.049179897,-0.0016892528,-0.028490903,-0.039520387,-0.0058485297,0.0067047663,-0.0062751966,0.0072504357,-0.056656726,0.03750025,0.06747723,0.04353744,0.03006986,0.00588336,-0.021397201,-0.020201374,-0.027887182,0.009131253,-0.034458436,0.013084453,0.048622616,-0.03222932,-0.034272674,0.018808175,-0.06311188,-0.012109214,0.014965271,0.037755672,0.0126781035,-0.01098885,0.028792761,-0.013525632,-0.018065136,0.0030679384,-0.059257362,-0.031161198,-0.009798827,-0.026215345,0.013548852,0.00750005,-0.018947495,0.0611614,0.054938447,-0.05377745,-0.055867247,-0.008481094,0.016068218,0.0033146506,-0.00279075,0.01575475,0.0047426787,-0.07583642,-0.03889345,-0.019481555,-0.026726184,0.0022842644,-0.007471025,-0.044071503,0.03647857,-0.029187502,0.06037192,-0.047275856,-0.06924195,-0.044373363,0.06766299,-0.0041621793,-0.034040473,-0.006118462,-0.019609265,-0.014164181,-0.031741697,-0.058096364,0.042353224,0.008759733,-0.0027805914,-0.02234922,-0.03828973,0.0319739,-0.0022537883,0.0023829495,-0.053545248,-0.047136538,-0.031393398,-0.014338331,0.03780211,-0.005973337,-0.042144243,0.020897973,-0.0130960625,-0.041285105,0.00377905,0.035735533,-0.0312773,0.01474468,-0.0064957864,0.00012897968,-0.0107160155,-0.026424326,0.017635567,0.024102328,-0.023092259,-0.012329804,0.041912045,-0.027631763,-0.021687452,-0.04706688,-0.0439554,-0.027794303,0.05967532,0.05159477,-0.026354665,0.032879476,-0.047600936,0.024009448,-0.04676502,-0.0022247634,-0.018483095,-0.026563644,-0.017473027,-0.033738617,0.009142863,0.012202094,0.044071503,0.048018895,-0.027167365,-0.03784855,-0.042933725,0.041052908,-0.004286987,0.0002530614,-0.019829854,-0.005288348,-0.017264048,0.011668035,0.028165823,0.027863963,-0.012283363,-0.025216887,0.028351583,-0.02216346,0.024915027,-0.046138078,0.024357747,-0.01115139,0.047252636,-0.0016224954,-0.024775708,0.0030969635,0.011772525,-0.042306785,-0.06506235,-0.019272575,0.01576636,0.009055788,0.0070008207,0.008156015,0.0024351943,-0.053916767,-0.01518586,-0.021548131,-0.042562205,-0.021211442,-0.02331285,0.0038371,0.020735433,-0.014779511,0.0072039957,0.017194387,0.009984586,0.010924996,0.017565906,0.017310487,-0.0073200953,0.04472166,-0.025170447,-0.046556037,0.002972156,0.006675741,0.013873932,0.011627399,0.0006084358,-0.062833235,-0.03810397,-0.0041331546,-0.021153392,-0.00048072592,0.009473748,0.031811357,0.02347539,-0.011401005,-0.02403267,0.01509298,0.017066678,0.034481656,-0.017194387,-0.006884721,0.01482595,-0.01562704,0.056842484,0.008370799,-0.021652622,-0.012260144,0.057353325,0.018703686,-0.037012633,0.027980063,-0.014071302,-0.003253698,0.028839203,0.0024482554,-0.0062635867,-0.016416518,0.008115379,0.017565906,0.058792964,-0.021223051,-0.026099246,-0.012805813,0.06552675,0.02369598,-0.006913746,-0.016404908,-0.04739196,-0.018912666,-0.028351583,0.031788137,0.0026078927,0.001877915,-0.03926497,0.01517425,0.032577615,0.002959095,-0.027260244,0.03970615,0.040309865,-0.02259303,-0.027004825,0.055170648,0.028792761,-0.002935875,0.10012451,0.031184418,0.044117942,0.011813159,0.005540865,-0.020340694,0.028049722,-0.0065248115,0.021141782,0.01156935,0.013328263,-0.049922936,0.028676663,0.014059692,-0.054984886,0.006861501,-0.01544128,-0.03747703,0.029582242,0.009438918,0.006170707,0.019922733,-0.020921193,-0.005990752,-0.064783715,-0.0473223,0.006890526,0.0036252178,0.033181336,-0.0016050804,0.06654843,0.014222232,-0.0048616813,-0.031439837,0.011319735,0.006066217,-0.006089437,0.015719919,-0.028607002,0.06701283,0.024102328,-0.027097704,0.05981464,-0.004194107,-0.012631663,0.017031848,-0.012654883,-0.032833036,-0.017066678,-0.0043450366,-0.0011784134,0.0710531,0.012051164,-0.006727986,-0.06329764,-0.020781873,-0.0593038,-0.006722181,0.034226235,-0.01613788,-0.041447647,0.025286546,0.004130252,0.011900234,-0.022326,0.027562104,0.035665873,-0.03687331,-0.02321997,-0.009601457,-0.015406449,-0.041795947,0.033645734,-0.020143323,-0.021281103,-0.006646716,0.011993114,0.026447546,-0.027747864,-0.03687331,-0.023823688,-0.021095343,0.011197831,0.02292972,0.0071691656,-0.0049168286,-0.009822047,0.03896311,-0.028746322,0.040867146,-0.047159757,-0.014106131,-0.0053899353,0.018239286,0.010158736,-0.004504674,0.0111223655,0.021048902,0.020607723,0.014593751,-0.0011268941,0.004890706,0.027167365,0.027701423,-0.054984886,-0.005346398,-0.035549775,-0.0041447645,0.02321997,0.0029271673,0.047229417,-0.02301099,-0.0064261267,-0.008486899,0.03109154,0.024125548,0.086378284,-0.0076742,-0.013084453,-0.06060412,0.014036472,0.014419601,0.02176872,0.014547311,-0.03106832,0.0058543347,0.029024962,-0.03647857,-0.00029188226,-0.0009469394,0.03076646,-0.070913784,-0.026981605,0.020654162,0.040727828,-0.039125647,0.028932082,0.013955202,0.032368638,-0.014721461,-0.008765538,-0.0035352404,-0.025077567,-0.027585324,0.007807715,0.011401005,0.0070530656,-0.0074071703,0.008289529,-0.056192327,-0.020712214,0.018738516,-0.04565046,-0.033297434,0.00079020456,0.078344174,-0.0093170125,-0.050991055,-0.03102188,0.05131613,-0.03199712,0.041819166,-0.021199832,-0.018866224,0.011789939,0.04504674,0.019620875,0.028328363,-0.025611626,-0.0069601857,-0.058421444,-0.027469223,0.0131773325,0.019783413,0.033390317,0.0012800008,-0.034086917,-0.03088256,0.0082488945,-0.009496967,0.026052807,0.008597193,-0.0009991843,-0.01632364,-0.008063135,0.0046062614,0.010466401,0.10634746,0.0054073506,-0.011000461,-0.0637156,-0.0001901135,0.017240828,-0.002684809,-0.001532518,-0.0107972855,0.0048819985,-0.046138078,0.0046207737,-0.029628681,0.049551416,-0.018227676,0.023963008,-0.05317373,0.017647177,-0.01484917,0.010704406,-0.023893349,-0.0004897962,-0.036362473,-0.019853074,-0.0062577818,-0.03756991,-0.020735433,-0.011877014,-0.0036223151,-0.05094461,-0.0045191864,-0.049365655,0.0064783716,-0.013862322,0.039473947,-0.013363092,0.010745041,-0.008939688,0.017113118,0.008608804,0.017101508,-0.027097704,-0.036037393,-0.006913746,0.019551214,0.020398743,-0.0054450827,-0.03260084,0.04590588,0.0015934705,-0.0015847629,-0.005909482,0.026261786,0.01553416,0.012968353,-0.010837921,0.0033843105,-0.024566727,0.047113318,-0.012724543,0.006507396,-0.013409533,0.012085994,0.027840743,0.026865505,0.00562794,-0.03297236,-0.0073259003,0.008666853,-0.033483196,0.049969375,0.021118563,-0.056192327,-0.00082140643,-0.01519747,-0.0064261267,-0.013862322,0.0034858978,-0.025425866,-0.02916428,-0.018041916,0.0035468503,0.019098425,0.03552655,-0.03873091,0.006861501,0.032949135,0.010402546,0.050573092,0.020526454,0.008707489,-0.00382549,0.04609164,0.0008540595,-0.03622315,-0.020224594,-0.039868686,0.064133555,0.02951258,0.004130252,-0.019144865,-0.006037192,-0.0028647638,-0.0117783295,0.034737073,0.0049690735,0.03199712,0.008573974,-0.0058543347,-0.011853795,0.026052807,0.036641113,0.013188942,-0.003854515,-0.006942771,0.004295694,0.03027884,0.00065886666,-0.004844266,-0.0070066256,0.03067358,0.023092259,-0.014872391,-0.011813159,0.022395661,-0.0020839924,-0.0084985085,-0.033576075,0.0036716578,-0.005024221,0.017205996,0.011133975,0.025588406,0.032020338,0.025193667,0.016428128,-0.0016007266,0.02338251,0.03065036,-0.020712214,-0.033065237,-0.0019911125,-0.034574535,0.028862422,-0.008928078,0.009102228,-0.033552855,0.027678203,-0.0018648538,-0.033042017,-0.012341414,-0.0012749215,-0.010837921,-0.0016137878,-0.017763276,0.01598695,-0.028885642,0.016346859,0.0006149664,-0.0052970555,-0.04736874,0.0028241288,-0.020410353,0.0026078927,0.008852613,-0.0067512062,0.0020056248,0.008208259,-0.0067047663,0.008562364,-0.036432132,-0.028398022,0.015719919,-0.02247693,-0.0020578697,-0.013061233,0.026795845,0.018076746,-0.011517105,0.012306584,-0.028351583,-0.021281103,-0.008463679,-0.03889345,0.007018236,-0.012039554,-0.016927358,-0.00370939,0.0047426787,0.019493164,0.004136057,0.021130173,-0.0017269852,0.00073251745,0.019214524,0.012608443,0.021664232,0.0070124306,-0.03849871,0.0038574175,-0.024891807,0.026726184,0.004316012,-0.0056424527,-0.025588406,-0.0052506155,0.029141061,0.014257061,-0.044071503,0.025658065,0.048018895,0.024543507,0.007929619,0.017658787,0.0015833117,0.0070008207,-0.0054450827,-0.0066525214,-0.012852253,-0.0127593735,0.03782533,0.011192026,0.027863963,-0.0063680764,-0.018169627,-0.034504876,0.01518586,-0.026749404,0.004908121,0.016265588,0.036757212,-0.03685009,0.0047426787,0.005555378,0.013305043,0.032531176,-0.011911844,-0.016822867,0.00729107,-0.016695159,0.025286546,0.02144364,0.04458234,-0.0303485,0.00379066,-0.026493985,0.018587586,-0.011133975,0.0004197735,-0.026192125,0.033668954,0.008521729,0.013827492,-0.02280201,-0.004321817,0.016741598,0.028908862,0.015859239,-0.013931981,0.01502332,0.0027820426,-0.033297434,0.008591388,-0.017751666,0.017287267,-0.021234661,0.006600276,-0.040379528,0.01583602,0.014477651,-0.017902596,0.0043798666,-0.066130474,-0.048343975,0.009868487,-0.01563865,0.020723823,0.003866125,0.021919651,-0.050526652,0.0022015434,-0.038800567,-0.020793483,0.025309766,0.047786698,-0.029141061,-0.018587586,-0.018401826,0.0006363723,0.0066176914,-0.04353744,-0.020480013,-0.05368457,0.01630042,-0.038429048,-0.004435014,-0.0073259003,-0.021246271,-0.0063274414,-0.0054073506,0.024264868,-0.0066699362,-0.056238767,-0.012155654,-0.010402546,-0.050665975,0.01148808,0.023986228,0.0033117482,-0.0053667156,0.0296519,-0.009943952,-0.073467985,0.021106953,0.025007907,-0.030116301,0.0027065778,-0.027028045,0.012782593,0.020236203,-0.00806894,-0.03887023,0.040727828,0.0014889805,-0.008231479,-0.011377785,0.054566927,-0.011319735,0.005555378,-0.00039655354,0.019620875,0.03787177,0.037407372,-0.009659507,-0.006687351,0.0072098006,0.0006247623,0.020178154,0.024845367,-0.017949037,0.025379427,-0.02254659,-0.018227676,0.019400284,-0.025681287,0.0046410915,0.018123185,0.004048982,0.014384771,-0.0010797286,-0.03065036,-0.03055748,-0.025611626,-0.024961468,-0.006832476,0.013897152,-0.013560462,0.01538323,-0.010553476,-0.017867766,0.011946674,0.0007307034,-0.01115139,-0.023254799,0.04544148,0.025425866,0.004368257,0.025425866,-0.018146407,0.012875473,-0.017531076,-0.0144892605,0.040704608,0.019597653,0.0300002,-0.010489621,-0.001989661,-0.03770923,-0.004812339,-0.03088256,-0.00199982,-0.011801549,0.013723002,0.025867047,0.029117841,0.043165922,-0.00007056694,0.02969834,0.006333247,0.01483756,0.033367097,0.03030206,0.03780211,0.011319735,0.03928819,0.040658165,0.005334788,0.029582242,-0.05229137,0.018819785,-0.032763377,-0.049644295,0.008394019,-0.019504774,0.019330624,-0.01122105,0.019458335,0.0037703426,0.007331705,-0.017345317,-0.031439837,-0.008382409,0.010454792,0.0056395503,-0.0032914307,-0.028978521,-0.00030911583,0.0008025402,-0.0008272114,0.043096263,0.0063158316,0.048297536,0.004832656,0.013003183,-0.033831496,-0.01482595,-0.024055889,-0.0029271673,0.02286006,0.007935424,0.024566727,0.03552655,-0.027771084,-0.03083612,-0.0048645837,-0.032693718,0.014442821,0.033552855,0.016660329,0.0015238104,-0.015580599,-0.032786597,-0.050573092,0.0055727926,0.014431211,0.018041916,-0.0044379164,-0.033158116,0.03016274,0.019040374,-0.061997317,-0.0073433155,0.0032682107,-0.0027733352,-0.010942411,0.02299938,0.008185039,0.029233942,0.016462957,-0.0031346958,-0.013107672,-0.035108592,0.008928078,-0.032113217,-0.013479192,-0.017728446,-0.021188222,0.028653443,0.007505855,0.073514424,0.0055902074,-0.005218688,-0.026076026,0.006507396,0.017298877,0.041215446,-0.0028937887,0.006246172,-0.00019446724,0.01124427,0.010118102,0.025611626,-0.014454431,0.025518747,-0.020096883,-0.0049168286,-0.033274215,0.023603098,0.028885642,0.003645535,0.004913926,-0.013641732,0.02265108,-0.023963008,-0.0032014532,-0.050851732,0.02265108,-0.0011116561,0.025704507,0.028142603,0.023487,-0.049133454,-0.0013300689,0.0609292,0.025054347,0.028839203,-0.0312773,-0.05275577,0.011017876,0.0018169626,-0.0025658067,-0.026029585,0.0055844025,0.017600738,0.021095343,0.0010775517,-0.011830575,0.01520908,-0.012527173,0.0039561023,-0.0016486178,0.020398743,0.03729127,0.009572432,-0.012527173,-0.00016136064,0.012921913,-0.009044178,-0.021478472,-0.021594571,0.020654162,0.0466257,0.020363914,-0.0121904835,-0.012109214,0.03264728,-0.03585163,-0.012585224,-0.0001629026,0.008504313,-0.016950577,0.016869308,0.010344496,0.02292972,-0.020259423,-0.024589948,-0.008428849,0.01519747,0.0038719298,0.007947034,0.0031579158,0.033088457,-0.011900234,0.033506416,-0.0145705305,-0.041865606,-0.011470665,-0.00013814068,-0.0033843105,0.054195408,-0.0026078927,0.008028304,-0.032740157,0.0011261685,-0.001327892,-0.0011493885,0.00074666715,-0.01516264,0.0111223655,0.008376604,0.0046614087,0.029117841,0.0025658067,0.00025233577,-0.025193667,0.019388674,-0.018668855,0.026911944,-0.0047484837,0.007848349,0.04495386,0.017623957,0.071517505,0.010524451,-0.02144364,0.035990953,-0.027028045,-0.027237024,-0.013038013,0.035317574,-0.024055889,0.012724543,-0.004832656,0.0046527013,-0.0037297076,-0.0026398203,-0.019353844,0.017902596,0.019028764,0.03780211,-0.06380848,-0.008957103,-0.0048007285,0.006002362,-0.017310487,-0.020433573,0.01541806,-0.020700602,0.00038748325,0.002269752,-0.024450628,-0.013630122,-0.031393398,0.01475629,-0.020096883,-0.018854614,0.0045830416,0.016625497,-0.011023681,-0.00045859438,0.03027884,0.010820506,-0.019795025,-0.022395661,0.034969274,-0.025704507,0.044396583,0.0055466704,-0.018018696,-0.026865505,0.012631663,0.009258963,-0.0008054427,-0.0028923375,0.009584042,0.014593751,-0.047647376,-0.021838382,0.040588506,0.011261685,-0.018250896,-0.018982325,0.012898693,-0.01544128,-0.012585224,-0.017449807,-0.009264768,-0.025936706,0.017380146,0.035967734,0.0003468483,-0.04527894,-0.017008627,-0.019272575,0.029373262,0.019249355,0.03002342,-0.017623957,-0.015847629,-0.039497167,0.0036803652,-0.036037393,0.05126969,-0.0061358768,0.0078425445,-0.004054787,0.010454792,0.034504876,0.0051519307,0.018250896,-0.036432132,-0.010971435,0.002912655,0.01551094,0.011540324,0.016579058,0.0133398725,0.022024142,0.007024041,0.0022944233,0.0018851713,0.009578237,0.009758192,0.024682827,-0.01138359,-0.0028386412,0.029559022,-0.022244731,0.024775708,0.00033741517,0.013908762,0.016695159,-0.0035410454,0.0098917065,0.004060592,-0.0053899353,-0.03613027,-0.004995196,0.035062153,0.007941229,0.01578958,0.017623957,0.005903677,-0.058467884,-0.0071865804,0.0035120205,-0.026192125,0.008376604,-0.020596113,-0.041912045,-0.015905678,-0.009079008,-0.033924375,-0.004394379,0.009555018,-0.013154113,0.0015194567,0.013885542,-0.0015310667,0.02246532,-0.016404908,0.010756651,-0.016033389,0.040983245,-0.018320557,0.02370759,0.002152201,0.036037393,0.026168905,0.00588336,0.014187401,-0.008608804,0.026215345,-0.0064203218,-0.018506316,-0.012306584,0.017519467,-0.027422784,0.012236924,-0.008765538,-0.024334528,0.015905678,0.0012234021,-0.036664333,-0.0023887544,0.019481555,-0.017298877,0.050712414,0.0072852653,-0.02180355,-0.03552655,-0.014338331,0.0043392316,0.01504654,-0.0064609563,0.019168084,0.010472206,0.003276918,0.008684268,0.014419601,-0.021362372,0.028189043,-0.02320836,0.018668855,-0.01527874,0.0022146045,0.001158096,0.0025832215,0.0122717535,0.01551094,0.0024134256,0.01544128,-0.0080050845,-0.016706768,-0.001204536,0.028560562,-0.014709851,-0.02180355,-0.00565116,-0.027237024,0.023452168,0.041726284,0.013212163,0.020259423,0.03687331,0.0121904835,-0.02225634,0.011598375,0.018843004,0.016091438,0.026633305,0.0028908863,-0.0027225413,0.0014657605,0.034760293,-0.012178874,-0.019632485,0.0032188683,0.021106953,-0.017995477,0.023254799,-0.013281822,-0.017345317,-0.0315095,-0.0053028604,-0.0058049923,-0.014500871,0.016184319,0.014616971,0.010234201,0.024450628,-0.01072182,-0.01458214,0.0024380968,-0.019063596,-0.048622616,0.021815162,-0.0073084855,0.009049983,0.011795744,0.013154113,0.008208259,0.009102228,-0.04637028,-0.020363914,-0.00556989,0.0021681646,0.022012532,-0.024845367,-0.0070472606,0.034620974,0.021629402,-0.034063697,0.016068218,-0.008115379,-0.027678203,0.0448842,-0.032925915,0.014524091,-0.0149768805,-0.030627139,-0.029303601,-0.02304582,-0.007517465,-0.010373522,0.014082911,0.01466341,0.048622616,0.0012517015,-0.0036049003,0.027329903,0.0094795525,-0.003082451,-0.012701323,-0.017438198,-0.012945133,-0.0014156925,-0.034133356,0.014384771,0.027306683,0.009734972,-0.0069659906,-0.017078288,0.03822007,0.03006986,-0.014512481,-0.009299598,-0.022569811,-0.0013141051,0.020491622,0.0027834938,-0.02248854,-0.014280281,0.026076026,0.034481656,0.0008250345,0.0048413635,0.00765098,0.024822148,0.0018764638,-0.043816082,0.02301099,0.0051751505,0.021710671,0.0027167364,-0.042144243,-0.0065886662,0.009148668,-0.011900234,-0.013154113,0.034667414,0.017438198,-0.0128406435,0.032995578,-0.022244731,-0.03060392,-0.025007907,-0.02320836,-0.0091544725,-0.020096883,-0.03866125,0.030952219,0.0033088457,-0.010855336,-0.06645555,0.004301499,-0.01506976,-0.0019403187,-0.012144044,-0.044094723,-0.0011994565,0.009816242,-0.0025788678,0.034272674,0.009351843,-0.028885642,-0.020352304,-0.028142603,-0.035921294,-0.014616971,0.0050300257,0.043189142,-0.016973797,0.0028517025,0.0016747403,-0.029396482,0.032089997,0.0126781035,0.003300138,-0.0042434493,-0.009084813,0.000115737035,0.020073663,0.010553476,-0.0296519,0.009717558,-0.0026935164,-0.035781972,0.03803431,0.029001743,0.018784955,-0.007819325,-0.020944413,0.03153272,0.033018798,0.017426588,0.014140962,0.00375583,-0.011801549,-0.015870849,0.028072944,-0.002989571,0.042051364,0.0076974197,-0.040286645,-0.0035207279,0.03729127,0.021548131,-0.040147327,-0.0072852653,0.014140962,-0.023777248,0.013653342,-0.00733751,0.04321236,-0.009096423,-0.012399464,0.010327081,-0.029187502,0.0047949236,-0.016404908,-0.006931161,0.0029170087,0.009613067,0.018761735,-0.02194287,-0.021420421,0.0095608225,0.013711392,0.019713754,0.03552655,-0.017914206,0.018483095,-0.020677382,-0.006722181,0.005392838,0.03053426,0.017983867,0.013792662,0.02254659,0.051362574,0.028839203,-0.0093170125,-0.016497789,0.038429048,-0.025100786,-0.006124267,0.008463679,-0.017716836,-0.035433672,-0.025727727,-0.013850711,-0.033970814,0.0021318835,0.011830575,-0.003317553,0.016021779,0.03083612,-0.003900955,0.017147947,0.042655084,-0.012631663,0.018912666,0.03148628,-0.014245451,-0.050851732,0.0105476715,0.021908041,0.01544128,0.024613168,0.034179796,-0.0064493464,0.03659467,-0.022233121,0.01467502,0.006861501,0.002147847,0.017705226,0.03777889,-0.012573614,-0.0028212264,0.06144004,-0.02296455,0.015685089,-0.033668954,-0.042678304,0.036014173,0.019191304,0.00056852645,0.020990852,0.0018590488,-0.008440459,-0.0029170087,0.049690735,-0.0094795525,0.028932082,-0.014396381,0.028723102,-0.040495627,-0.0034191406,0.003668755]},{"id":"interface-APIChannelPartial","type":"interface","source":"main","text":"Interface: APIChannelPartial\nDescription: Minimal channel (id, type required)\nProperties: icon: string | null, id: string, name: string | null, parent_id: string | null, type: number","meta":{"url":"/docs/typedefs/APIChannelPartial"},"embedding":[-0.015134748,-0.019190906,-0.023348186,0.02366279,0.04948287,-0.035820026,0.014887558,-0.008769615,0.023438072,0.028988604,0.0031235781,0.0033202064,0.012898805,-0.0013602453,0.030898705,-0.0032555999,-0.025820082,-0.0025280758,0.016696537,0.034381833,-0.018067315,0.019876294,0.033303186,0.053797454,0.0028960514,0.0016586987,-0.0031235781,-0.01805608,0.005870754,0.015584184,0.09653879,-0.023707734,0.047280636,0.035168346,-0.002940995,0.012954985,0.040741347,0.02103359,-0.0143369995,-0.0006481706,-0.014932502,0.034247,0.027348163,0.02152797,0.0020758312,0.022078529,-0.00856175,0.06683109,0.023730205,0.0009367926,-0.03312341,0.0019283601,0.013089815,0.016730245,-0.01923585,0.024381887,-0.031820048,-0.008320179,-0.01611227,-0.009640397,-0.023820093,-0.04137056,-0.00921905,0.023303242,-0.0018103833,0.057572715,-0.05721317,0.025775138,0.015741486,-0.008730289,0.019056074,-0.009365117,-0.027348163,0.006056146,0.016651593,0.048539057,-0.045842443,-0.003443801,0.024763908,-0.0026558843,-0.035280704,0.053527795,-0.040336855,-0.041730106,0.0013370713,0.0033145885,-0.04402223,-0.0058314283,-0.04588739,0.0008384785,-0.0061347974,-0.012157236,-0.07613441,-0.026651539,0.0016938108,-0.03244926,0.030089721,0.02032573,-0.025640307,0.036202047,0.039572816,-0.021685272,-0.072763644,0.007837036,0.00733142,-0.022932457,0.004480312,0.016977435,-0.04188741,-0.01857293,-0.00938197,0.00064465933,-0.016404403,0.03397734,-0.009224668,-0.018865064,0.062022127,-0.011101062,0.029100962,-0.018157203,-0.02265156,-0.03660654,0.031932406,0.024381887,-0.008432537,-0.018696526,-0.03649418,-0.00063693465,-0.06660637,-0.052404206,0.035325646,0.049392987,-0.009713429,0.006213449,0.017707767,-0.0044381777,-0.0005084241,-0.024606606,-0.06310078,-0.06242662,-0.008235909,-0.0018117877,0.094381504,-0.003988742,-0.0022359428,0.049213212,-0.029393096,0.04530312,0.0045786262,-0.002497177,0.020258315,0.010207809,-0.01674148,-0.02026955,-0.021662802,-0.009387588,-0.0063538975,-0.012988692,-0.018808885,-0.07662879,0.034022283,-0.06543784,-0.0032977345,-0.008977478,-0.04292111,0.0030533539,0.000081416336,0.020213371,-0.05626935,0.018629111,-0.0017963384,-0.016954962,-0.052179486,-0.005345476,0.002609536,-0.02590997,-0.010179719,-0.0475503,-0.049617704,0.027752655,0.07029174,0.046201993,0.017595408,-0.035752613,-0.0026474572,0.02957287,-0.022179652,-0.0065673795,0.025572892,-0.04442672,-0.04065146,0.0022879087,-0.008056135,0.028471753,0.045775026,-0.004120764,0.026808841,-0.0026432439,0.0077022044,-0.027393106,0.018157203,0.007533666,0.05411206,-0.0124156615,-0.008499953,-0.004412897,-0.00047647208,-0.018898772,-0.023235826,0.0029578488,0.01898866,-0.046246935,-0.023999868,-0.017101029,-0.018460572,-0.018842593,-0.003463464,0.02152797,-0.001838473,-0.051145785,-0.008129168,0.0059381695,0.058516532,-0.04166269,-0.00045294693,0.03474138,-0.008679727,-0.019910002,-0.02617963,0.020056069,-0.016415639,0.052763753,-0.045864914,-0.0058426643,-0.013786441,0.0036432382,-0.015966203,0.017505521,-0.015505532,-0.051640164,-0.02995489,-0.021516735,-0.015370701,0.012707795,0.0049578375,-0.0023103806,0.021617858,-0.007129174,-0.019797644,-0.0073988354,0.060044613,0.0035421152,-0.0062583922,0.03312341,0.0021249882,0.008758378,0.039797533,0.037055977,0.033842508,-0.00949433,0.024202114,-0.051145785,-0.016011147,-0.010516795,0.0055477223,-0.02240437,0.02640435,0.017381927,0.012134764,-0.00015914589,0.030876234,-0.038269453,0.07155017,-0.002144651,-0.029258266,0.0033876216,-0.0027738612,0.012999929,-0.069033325,-0.01635946,-0.041842464,0.0046853675,-0.017089793,0.07033669,-0.0049999724,0.037550353,0.03651665,-0.02390998,0.02894366,0.00166853,0.009977473,0.03397734,0.04357279,-0.08377482,-0.011190949,0.048269395,0.0548761,-0.0038145857,0.06543784,0.0074213073,0.019786408,-0.02768524,0.0018525178,-0.06647154,0.017134737,-0.0138313845,0.04287617,0.00757861,0.013056108,-0.055685084,0.04062899,-0.010567357,-0.05186488,-0.0384717,-0.045482896,-0.013112287,-0.014460594,0.0015898788,0.0012535043,0.04199977,-0.028516697,-0.03564025,-0.0438874,-0.034898683,-0.016438112,-0.0009241522,-0.0012127742,-0.023550432,0.02640435,0.0043398635,0.007780856,-0.08337033,0.041954823,0.020415617,0.004387616,-0.016831368,-0.03613463,0.0377526,-0.027909959,0.03444925,0.04489863,0.006426931,-0.013988687,0.027887486,0.026584122,-0.0030365,-0.033864982,0.0045842445,0.0140336305,-0.016426876,-0.045482896,-0.01534823,-0.025572892,-0.06516818,-0.027954902,-0.0012457797,0.020348202,-0.062921,-0.08013439,0.028898716,-0.024247058,0.0074774865,0.012247123,0.011752744,-0.012539256,-0.037213277,0.0008813153,-0.038269453,-0.038269453,-0.04732558,0.027393106,-0.016674066,0.009129163,-0.002565997,0.018865064,-0.00024771632,-0.0077977097,0.0042359317,-0.035820026,-0.04004472,0.052089598,-0.009432532,0.019078545,0.021921227,-0.00038693607,-0.013685318,-0.010617919,0.0351234,-0.043999758,0.03399981,0.0193145,0.00962916,-0.015550476,0.008876355,0.026763897,0.023820093,-0.0145392455,0.006572997,0.013808913,-0.0008967647,0.014314528,-0.0066797384,-0.0049634557,0.018527988,-0.03323577,-0.00019153686,0.013617902,-0.013269589,0.031415556,-0.022561673,0.036404293,-0.03208971,0.022033585,0.055280592,0.02694367,-0.032157127,-0.0034241383,-0.03173016,0.035887443,0.03665148,0.008157258,-0.001567407,-0.01742687,-0.041280672,-0.011786452,-0.008005573,0.020235844,0.022572909,-0.019247085,-0.05874125,0.0035870587,0.031325668,0.03033691,0.0067808614,0.046741314,-0.035370592,0.01094376,-0.0051095225,-0.019426858,0.043145828,0.006719064,-0.014797671,0.0056965975,-0.013269589,-0.0051348032,-0.0033033525,0.007438161,-0.031999823,-0.03647171,-0.009483093,-0.0797299,-0.00089255127,-0.020651571,0.069752425,-0.0001873234,-0.044966042,0.030853761,0.027977373,-0.040471688,0.03274139,0.0040168315,0.018011136,0.006213449,0.06328055,0.0029522309,-0.013674081,-0.02667401,0.022415606,-0.042246956,-0.00817973,0.01761788,-0.02669648,0.06125809,0.037909903,-0.031752635,-0.023100996,-0.009471858,-0.026651539,-0.0018960569,-0.0012633357,0.02314594,-0.01447183,-0.011337016,-0.030673988,0.0020407191,0.08368493,0.012067349,0.012674088,-0.025865026,0.0058426643,-0.008039282,-0.007825799,0.010359493,-0.009325791,0.004935366,-0.033415545,-0.05537048,0.009449386,0.01679766,0.0011271005,0.015011153,-0.031752635,0.0076010814,0.016044855,0.026381876,-0.023100996,0.016415639,-0.028786357,-0.020943705,-0.032516673,-0.015820138,0.009820171,-0.025640307,-0.034269474,-0.051100843,0.017247096,-0.053662624,-0.013438128,-0.017348219,0.03986495,-0.013853856,0.022011114,0.03260656,0.019415623,0.01359543,0.002245774,-0.034202058,-0.07590969,-0.034179587,0.010601065,0.01830327,-0.004278066,-0.0006225387,0.030112194,-0.019213377,0.02820209,-0.001573025,0.0015294859,0.021842577,0.0035870587,-0.0059100795,-0.0026938054,-0.021516735,0.026336933,-0.001991562,0.04139303,0.0035224524,0.013775204,0.0042836843,0.059190683,-0.0024255484,-0.011438139,0.01682013,-0.02642682,0.011286454,0.024426831,0.018381922,-0.014528009,0.006842659,-0.015370701,-0.06692098,-0.00013114394,0.019089783,-0.024044812,-0.016719008,-0.01698867,0.018404393,-0.010146012,-0.015483061,-0.022988636,-0.0029887476,0.026224574,0.01742687,0.035055988,0.0340897,0.008763997,-0.058606416,0.003971888,0.036426764,-0.022235831,-0.00006324579,-0.03546048,0.013752733,0.031864993,-0.0041376175,-0.0014311719,-0.00058040407,-0.017101029,-0.000894658,0.031348143,0.008758378,-0.000842692,-0.009146017,0.013067343,-0.0664266,0.025865026,0.04289864,0.018887537,-0.020808874,-0.022685267,0.01157297,0.04139303,-0.026876256,0.0020772356,0.019977417,0.032651506,0.020640336,-0.015269578,-0.036269464,0.010213426,-0.022741448,0.048673887,0.008966243,-0.025572892,-0.0044466048,-0.00028879757,-0.003039309,0.025550421,0.013145994,0.02793243,-0.021516735,0.0076853507,-0.02453919,0.03397734,0.0015898788,0.007235915,-0.010499942,-0.03422453,0.038404282,-0.014426886,-0.00273594,0.004738738,0.017853834,0.0024044812,0.01110668,-0.03460655,0.0031966115,0.027595352,-0.016202157,0.019629104,0.014921266,0.011999934,-0.000091818314,-0.026988614,0.014831379,-0.026808841,0.019078545,0.00040975897,-0.00692131,-0.0015365083,0.017707767,-0.012494313,-0.00018697228,-0.0022865043,0.018011136,-0.022089766,-0.008174112,0.02705603,-0.05424689,0.0014943738,-0.007353892,0.03564025,0.014752727,-0.014292056,0.0012071562,-0.020640336,-0.00333706,-0.016438112,-0.040314384,-0.03083129,0.015112276,-0.004109528,0.0029887476,0.0060505285,0.012640379,-0.011280837,0.0007830013,-0.024179641,0.0022921222,-0.012292067,-0.000053458272,0.023887508,-0.014516774,-0.021101007,-0.0021516734,-0.026898727,0.044089645,0.018370684,0.011365105,-0.02453919,0.022662796,0.013337005,0.049887363,-0.03258409,0.00033830572,0.034808796,0.015640363,0.017247096,0.0188763,-0.010028034,-0.009898822,-0.0038173946,0.00473312,0.03170769,0.023865037,0.045775026,-0.016336989,0.038202036,0.0106740985,-0.01408981,-0.04894355,0.011117916,-0.009932529,-0.026112216,0.007028051,0.026763897,-0.034359362,0.015134748,-0.019123489,-0.0062921,0.009303319,-0.000735951,-0.017876307,0.033820037,0.008348268,0.024134697,-0.007426925,0.022325719,0.0066572665,0.005575812,-0.0013763969,-0.0029690848,-0.0027556028,0.022280775,0.02196617,0.04790985,-0.00020733733,0.0179999,-0.018831357,0.0047612097,0.0007654452,0.013797676,0.020292023,0.0045982893,0.018224617,-0.010556121,-0.02642682,-0.00790445,0.0053707566,-0.012280831,-0.003662901,0.00517132,-0.05622441,0.028831301,-0.0015828564,0.026808841,0.0034213294,-0.03914585,-0.018483045,0.026112216,-0.024629077,-0.012640379,-0.033550378,0.041123368,-0.03865147,-0.026831312,0.0036600921,-0.053617682,0.039055962,0.030291967,-0.013101052,-0.0075168125,-0.0038482933,0.009758373,0.014314528,-0.04647165,-0.02667401,-0.038269453,-0.029123435,-0.0033623409,0.017887542,-0.007859507,-0.0009683935,-0.0032331282,0.029640285,-0.008067371,-0.0049803094,0.0068145692,-0.025145927,-0.00965725,-0.057572715,0.012033641,-0.0046713226,-0.023572903,0.00059269334,0.0030617807,0.0054943515,-0.07321308,0.00492413,0.029213322,0.00091712974,0.0027850969,-0.04844917,0.004657278,0.03559531,0.0069381637,-0.018775176,-0.011584206,0.031145895,0.017393162,-0.022842571,0.05635924,0.001573025,0.043011,-0.004848288,0.040426742,-0.00019662813,-0.017415633,0.019730227,0.011410049,0.055055875,-0.008572986,-0.024202114,-0.021808868,0.00082022016,0.025213344,-0.021550443,0.025999857,0.008162877,0.0076010814,0.021561678,0.028134676,0.03937057,-0.018617874,-0.016011147,-0.016842604,-0.0128201535,-0.0042499765,-0.030763876,-0.01603362,0.020168427,0.01679766,-0.0025547612,-0.008028045,0.026988614,-0.018258326,0.0064606383,-0.04166269,-0.039258208,0.020898761,0.009269612,0.012348247,-0.0025182446,-0.047730073,-0.0007865125,-0.004803344,-0.029280737,0.006617941,0.03786496,0.017449342,-0.02566278,0.020741459,-0.024718964,0.003867956,-0.018292034,-0.007999956,0.02590997,0.013606667,0.03271892,-0.012887569,0.039437983,-0.0188763,0.0457975,-0.019494275,0.0001971548,-0.0026460527,-0.025550421,-0.04705592,-0.011056119,0.051685106,0.0019817306,-0.022449315,0.008089843,-0.03550542,0.03952787,0.040359326,0.009910057,0.025078513,0.005598284,0.0020884715,0.0072977124,0.012056113,0.025505478,0.007960631,-0.004811771,-0.02919085,-0.011898811,0.0414155,-0.0047949175,-0.012471841,-0.066336714,0.01780889,-0.005030871,0.0035421152,0.030134665,0.017988665,0.04590986,-0.0036376202,0.013853856,-0.003985933,-0.006640413,-0.02741558,-0.0044831214,0.052898582,-0.005752777,0.018359449,0.029280737,-0.02076393,0.0056937886,0.027977373,-0.026381876,-0.03222454,0.029730173,0.022044823,0.0039803153,0.004202224,-0.060044613,-0.012190944,-0.0017022378,-0.01110668,0.018629111,0.05339296,-0.008505571,0.005893226,-0.03550542,-0.08871861,-0.027393106,0.006112326,0.02705603,-0.021168422,-0.011146006,-0.00070751016,0.015494296,-0.022247069,0.031123424,0.013977451,-0.048853662,0.010078596,0.0076235533,-0.0054887338,0.004174134,-0.012741502,0.015325758,-0.011235893,0.019842587,0.029303208,0.01923585,-0.014561717,0.038449224,0.051280614,0.014325763,-0.008308942,-0.019662812,-0.010117922,-0.008303325,-0.0006611621,0.0438874,-0.009426914,0.04253909,0.01578643,-0.021157186,-0.028336922,0.040179554,0.026134687,0.0079831015,0.008044899,-0.03737058,0.011190949,0.0011664261,0.022876278,-0.027527938,0.01515722,-0.014258348,0.0092977015,-0.0062527745,0.036022272,-0.058426645,-0.032898694,0.018022371,0.010263988,0.009707811,0.0048848046,-0.005261207,0.031393085,-0.011101062,0.0070673767,0.0063876053,0.008814558,0.02869647,0.008477481,0.020741459,-0.010016799,-0.0234156,-0.017775182,0.015179691,0.00070435007,0.009595453,0.017820125,0.013719025,-0.02120213,0.001200836,0.014561717,-0.004792108,-0.03961776,0.007915687,-0.020752694,-0.0020336965,0.007690969,-0.027370635,-0.014415651,0.012123529,-0.008679727,0.013820148,-0.00086656824,-0.01635946,-0.010713424,0.00068679394,0.004278066,0.008117933,-0.0061067077,-0.015887553,0.0046657044,-0.017269567,0.0021699318,0.00067555805,0.036831256,0.020370673,0.0035280704,0.0073201843,0.0107358955,-0.021572914,0.0023019535,-0.036269464,0.007758384,0.014584189,-0.008898827,0.012089821,-0.031235782,0.025235815,0.0063426616,0.004286493,-0.006505582,0.005955023,0.0007872147,-0.019595398,-0.0024957727,0.009769609,0.010814547,-0.015280814,0.026291989,-0.02002236,-0.016696537,-0.0011558925,0.009005568,0.00984826,0.024336943,0.038853716,0.040246967,-0.02043809,0.0193145,0.00886512,-0.013820148,-0.0032050384,-0.025820082,0.01573025,0.0058482825,0.0030056015,-0.031775106,0.004367953,-0.01622463,0.007820182,0.0021586958,0.008499953,-0.05146039,0.010870727,-0.011685329,-0.015325758,0.037393052,-0.00015730251,0.016370695,-0.019921238,0.03312341,-0.02719086,0.02932568,-0.016617885,0.009067366,0.004424133,-0.009404442,-0.013325769,0.0037471703,0.003783687,-0.025550421,0.03460655,0.01091567,-0.020640336,0.0269212,0.007151646,-0.026741425,-0.015449353,0.019426858,-0.0064999643,0.04103348,0.02566278,-0.027999844,-0.085257955,0.017685296,-0.0045505366,-0.007747148,0.012539256,0.02169651,-0.007561756,-0.025842553,-0.0007039989,0.038179565,-0.008314561,0.027235804,-0.0042050327,0.030404326,-0.045100875,0.0037612151,0.0022345383,-0.0011481678,0.015359466,-0.05020197,0.047505356,-0.013157231,-0.02026955,0.00418537,0.0072752405,0.0016432493,0.042246956,0.027550409,-0.023640318,0.018853828,-0.00755052,-0.0029718936,-0.03361779,0.027999844,-0.0017415634,0.011808923,0.025438061,0.019741464,0.048718832,0.0088538835,0.017674059,-0.025842553,-0.0036207666,0.0034129026,0.038269453,0.018280799,0.034291945,0.004525256,0.023325713,0.007365128,-0.00062604994,0.0041291905,-0.017876307,0.02995489,0.030291967,0.026539179,0.0015589801,-0.017763946,-0.011348252,0.018966187,0.013381949,-0.01855046,0.034831267,0.0018202147,-0.024426831,0.014685312,0.0064999643,-0.033011053,0.01630328,-0.017393162,-0.014078574,0.0049550286,-0.013808913,0.023078524,-0.035303175,-0.006752772,-0.030426798,-0.02171898,-0.020213371,-0.021370668,-0.029842531,0.021303253,0.010949378,-0.03507846,0.032022294,-0.003353914,-0.020235844,0.009589835,-0.007241533,0.0010098258,0.05083118,-0.008264,-0.01980888,-0.03865147,0.034561608,-0.018539224,0.013337005,0.06781985,0.03912338,0.02957287,-0.014617897,0.005654463,0.046112105,-0.00366571,0.00075772055,-0.010117922,-0.0024775143,-0.011988698,0.016235866,0.0058539,-0.04467391,0.010623537,-0.012999929,0.03211218,-0.039055962,-0.049033437,0.0054269363,-0.0015884744,0.03247173,0.03564025,-0.007971866,0.012943748,-0.017876307,-0.011050501,0.009455004,-0.010898816,0.019516746,0.012179708,0.0037078448,0.03159533,0.021438085,-0.005272443,0.0139325075,-0.02705603,-0.00095294416,0.020662807,-0.041932352,-0.02202235,-0.006853895,-0.019932475,0.0050673876,0.006286482,-0.016292045,-0.00044065766,0.010747132,-0.0033623409,0.0034100935,-0.00487076,-0.018674053,0.010758367,-0.017145973,-0.007915687,0.0063538975,0.009584216,-0.018067315,0.04352785,-0.009207814,-0.003466273,0.0234156,0.01534823,0.0075954637,-0.010129157,-0.0158089,-0.011719036,-0.023460545,0.03364026,-0.015224635,0.007921305,-0.035932384,-0.012662851,-0.025460534,-0.018943716,-0.022662796,0.012471841,-0.055010933,0.00536233,-0.0111797135,0.009550509,0.02615716,0.006528054,-0.008971861,0.014685312,-0.0062359204,-0.0132246455,-0.019190906,-0.010089831,-0.022550438,0.01999989,-0.016011147,0.0020631908,0.012292067,0.018910008,0.007567374,-0.007825799,-0.0038707652,-0.031011064,-0.02982006,0.02314594,0.017022377,-0.02453919,0.010612301,0.019853823,0.011887575,-0.030898705,0.02590997,-0.02095494,0.012426898,0.026112216,-0.007876361,0.0016151596,-0.0158089,-0.038044732,-0.013685318,-0.037797544,-0.016943727,0.033280715,0.019887531,-0.0059381695,0.028763887,-0.022887513,-0.01529205,0.01901113,-0.020921232,0.017853834,-0.011595441,0.013145994,-0.013370712,0.00009532953,-0.045505367,0.011089826,0.036381822,0.009955001,0.01573025,0.0026657155,0.05865136,0.009724665,-0.014752727,-0.018943716,-0.022718975,-0.011629149,0.035258234,-0.01138196,-0.005977495,-0.020584157,0.018651582,0.02125831,-0.013449363,0.0021825721,0.0044578407,-0.01901113,0.0070842304,-0.029100962,-0.012797682,0.039235737,-0.01422464,0.006213449,-0.0050786235,-0.016719008,-0.022168417,0.011853867,-0.013370712,-0.012988692,-0.017078558,-0.025640307,-0.012797682,-0.013696553,0.00053089595,0.0025505477,-0.02246055,-0.027977373,-0.008539279,-0.024336943,0.018179676,0.010550504,-0.013561723,-0.03838181,-0.008730289,-0.017853834,0.027393106,-0.009039276,-0.023370657,-0.0117078,-0.0052921055,0.016438112,0.0349661,0.041617747,-0.04341549,-0.019033603,-0.0053117685,-0.005994349,-0.00058812875,0.0073201843,0.008264,-0.027887486,-0.0018426864,0.023235826,0.011808923,0.05685362,0.007865125,0.0012766783,-0.0058314283,-0.008797704,0.021415612,-0.0063426616,0.013999922,0.01698867,-0.016595414,-0.014528009,-0.01244937,0.017786419,-0.009651632,0.026291989,-0.027460523,0.036426764,0.052673865,0.009870732,-0.004030877,0.010353875,0.035258234,-0.03937057,-0.05348285,0.0316178,-0.0031320052,0.009202196,-0.0064606383,0.0044494136,-0.00817973,0.0045730085,0.031415556,-0.009584216,-0.04240426,0.042741336,-0.019876294,-0.006056146,0.003449419,-0.00013035392,0.012370718,-0.00817973,0.014393179,-0.02831445,-0.016044855,-0.012101057,-0.017786419,0.0038595293,0.006505582,0.007898833,-0.0023483017,-0.008662874,0.026291989,-0.0066460306,0.020696515,0.041954823,0.0016306089,0.007780856,-0.007926922,-0.010263988,0.014078574,0.048628945,0.007544902,0.019415623,0.02070775,0.035348117,0.03460655,0.009421296,-0.00053932285,-0.004421324,0.0048679505,0.02856164,-0.023707734,0.0029999835,-0.016561706,-0.0038089678,-0.0022275157,-0.007342656,-0.038426753,-0.011370724,-0.025190871,0.018730234,0.04656154,-0.010353875,-0.023572903,0.0019353826,-0.023797622,0.032359373,0.06894344,0.0071965894,-0.021370668,0.0045701996,-0.0003728912,-0.014696548,0.015438117,0.0033202064,-0.016752716,-0.014011159,-0.0090561295,-0.043460432,0.032381844,-0.00072050164,0.034044754,0.025370646,-0.00073033303,0.012235887,0.0583817,-0.025999857,-0.008140405,-0.0030842526,-0.048404228,0.015528004,0.024269529,-0.02579761,0.00853366,0.0024157169,0.016696537,0.04166269,0.026044799,-0.029168379,0.007943776,-0.010454998,0.031011064,-0.041100897,-0.0041432357,0.020887526]},{"id":"interface-APIConnectedAccount","type":"interface","source":"main","text":"Interface: APIConnectedAccount\nDescription: Connected account from profile response.\nProperties: name: string | null, type: string | null","meta":{"url":"/docs/typedefs/APIConnectedAccount"},"embedding":[0.0019808812,-0.02084902,-0.0011474531,0.011708648,0.06195265,-0.031155769,0.009914218,0.004486072,0.04075596,0.00366456,-0.0014369449,-0.015005911,0.02682671,-0.011641356,0.0027435133,0.01807887,-0.015454518,0.08689521,0.0029439847,0.02875572,0.00916841,-0.021454638,0.054460913,0.02494256,-0.026467824,0.010121699,-0.069668695,-0.030079111,-0.008512321,-0.033892274,0.06998272,-0.021779878,0.03575399,0.06127974,0.046161678,-0.0041355975,-0.005156179,0.00437392,0.005156179,0.020456487,-0.044008363,0.018605983,0.0051169256,0.027880937,-0.048225272,0.028935164,0.00055164663,0.01593677,0.003115016,0.04295414,-0.02559304,-0.009448789,-0.001502834,-0.012605862,-0.012538571,-0.03236701,0.0077665118,0.030123973,-0.0457355,0.0236416,-0.03436331,0.0068861204,-0.000111538466,0.018415324,0.00658331,0.002516406,-0.016475098,0.042124216,0.0071328543,-0.016441453,0.042886846,0.027544482,-0.02065836,0.038176473,0.013873178,-0.0151180625,-0.04488315,0.0060057286,-0.011293686,-0.038580216,-0.017091934,0.010704889,-0.032097843,-0.04867388,0.030168833,-0.014523658,-0.039724167,-0.041630745,-0.021454638,0.016362946,-0.003978585,0.023843471,-0.0071048164,-0.032052983,0.014142342,-0.035350244,0.017305022,-0.012460064,-0.03602316,0.039656874,0.03736898,0.015992846,-0.005072065,-0.018448971,-0.016710619,0.02063593,-0.0007668379,-0.042909276,-0.013256342,0.021510715,-0.012594647,0.015633961,0.03678579,0.026669698,-0.020759298,-0.014276924,0.028284684,0.01142266,-0.009745991,-0.019234033,0.0074861324,0.004864584,0.062894724,0.019850869,-0.035978295,0.00008696145,-0.04378406,0.0048421538,-0.079538055,-0.04429996,-0.031133339,-0.003050529,-0.04362705,0.050827194,-0.03434088,-0.0036281105,-0.0025935103,-0.013211481,0.004345882,-0.01626201,-0.023933193,-0.048135553,0.056389924,0.0025065925,-0.020882664,0.034520324,0.008125397,0.033309083,-0.0063646142,0.01314419,-0.01751811,0.023215422,-0.04073353,0.019884514,0.007446879,-0.017484466,0.020804157,0.0031542692,-0.025772482,-0.03799703,0.0550441,-0.07585947,0.009359067,0.019110667,-0.017675122,0.007816981,0.021084538,0.03252402,-0.044860717,0.014736746,-0.03683065,0.01216847,-0.096271105,0.011030129,-0.034767058,-0.028307114,0.0023607954,0.009269346,-0.010704889,0.0139180375,0.024875268,0.0088880295,-0.014860113,-0.07765391,0.0051730014,0.013850747,-0.024471521,0.029742656,0.043200873,-0.023080839,0.0040711104,0.034228727,0.0060786274,-0.01312176,0.004769255,-0.027118305,0.0261538,0.018819071,-0.07330241,-0.009246916,0.00860765,-0.04934679,0.017047074,0.0030785669,-0.0387148,0.02035555,0.027903367,-0.012953533,-0.052845925,-0.02678185,0.04629626,0.009577763,-0.0043991543,0.029854808,-0.015275074,-0.025884634,0.033219364,0.035574548,0.033466097,-0.006129096,-0.029540783,0.026736988,0.06908551,-0.01803401,0.020063957,0.00034188773,0.00089581247,0.0030252947,0.0032664211,-0.024673395,-0.022116335,0.043851353,-0.02028826,-0.04665515,0.0020902292,0.008338486,0.032277286,0.02812767,0.009774029,0.026714558,-0.0523076,-0.041630745,0.029697796,0.07298839,0.019626563,0.012931102,0.025525749,-0.026961291,-0.015970416,0.021858385,-0.008927283,0.0041524204,0.016463883,-0.0005088888,0.00483935,-0.029832378,0.013155405,0.006437513,0.042640112,-0.033914704,0.05006456,-0.03371283,-0.022890182,-0.018830286,-0.02812767,-0.016901275,0.039253127,0.00642069,-0.03499136,0.031155769,-0.020209754,0.00015850204,0.038602646,0.014938619,-0.055851594,0.011686217,-0.0045309328,0.01468067,-0.029069746,0.035327815,-0.0127292285,-0.0084226,0.009202055,0.015656391,-0.0121909,0.0055038496,0.0126955835,-0.016665757,0.019469552,0.010172168,0.011652571,0.026019217,0.048404716,-0.033309083,0.034587614,0.0041524204,0.034856778,0.004948698,0.07998666,0.0037122245,0.051006638,-0.047866385,0.03505865,-0.01184323,-0.0032720286,0.0028304309,0.02035555,0.043873783,0.03501379,-0.026041647,-0.0022037828,-0.015095632,0.027185595,-0.021813525,-0.06468916,-0.0057702097,0.000060675873,-0.043851353,-0.035911005,0.017372314,-0.027275316,-0.02035555,-0.042101786,-0.04378406,-0.027185595,0.021589221,0.0018911597,-0.01586948,0.0055150646,0.0336904,0.03122306,-0.060831133,0.020220969,0.030437997,0.0058150706,0.0143329995,0.0061459183,0.022531295,-0.0022598587,0.037795156,0.030213693,-0.0074412716,-0.03375769,0.016598465,0.023753751,-0.0010759563,-0.0011103028,0.039051257,-0.030684732,-0.012482495,-0.004718787,0.00492066,-0.008467461,0.002746317,-0.0017874192,0.017809706,-0.013289988,-0.02877815,-0.043425176,0.029159468,-0.02115183,-0.014747961,-0.0025332286,0.029159468,-0.034049284,0.0013374102,-0.009796459,-0.017675122,0.0058150706,-0.08003152,0.042886846,-0.028621139,-0.014613379,-0.0058599315,-0.029518353,0.02628838,-0.05432633,-0.022654662,-0.0023607954,0.004721591,0.104884356,0.0472832,0.02561547,-0.04167561,0.048987903,-0.017058289,-0.04997484,0.01833682,-0.049077626,0.008030069,0.056345064,0.020804157,-0.023237852,-0.037727863,0.00018137049,-0.027544482,0.0029159468,-0.0062973234,0.013704949,-0.056703947,0.004783274,0.010789003,0.036292322,-0.034251157,0.02749962,-0.014860113,0.013704949,0.007839411,0.0535637,-0.014299354,0.029473493,-0.027723923,0.017327452,0.02498742,0.03375769,-0.044838287,-0.028598707,-0.019211603,-0.0104805855,-0.0086693335,-0.020456487,-0.018538691,0.0012490907,-0.04181019,-0.0031710921,-0.020591069,0.055717014,0.0023439724,-0.044501834,-0.02678185,0.0172153,0.031088477,0.0047916854,-0.019447122,0.037660573,-0.054640356,0.034004424,-0.008983359,-0.048987903,0.003129035,0.0096730925,0.0114955595,0.0029495922,-0.000044663575,-0.009622624,-0.017484466,0.021555575,-0.07801279,-0.014826467,0.020344336,-0.054819796,0.055268407,0.01077218,0.02743233,-0.01314419,-0.009325421,-0.016463883,0.024897698,0.022161195,0.031671666,-0.016149858,-0.03750356,-0.012594647,0.036606345,0.008086145,-0.033555817,-0.02682671,0.0014467582,0.009549726,-0.015499379,0.0026173426,0.023551878,0.028935164,-0.0057057226,-0.0036533447,0.0006343586,0.016250795,0.007093601,0.0073066894,-0.026759418,0.00059615687,0.055717014,-0.017383529,-0.007884271,0.032950196,0.080883875,0.032838047,0.027813645,-0.009207662,0.04620654,0.003145858,-0.0051786094,0.026490254,-0.009499257,0.026467824,-0.022576157,-0.022721954,-0.065182626,0.023237852,-0.03447546,-0.005330014,-0.027768785,0.019839652,0.055178683,0.023462156,-0.0033981993,0.014602164,-0.021140613,-0.062580705,-0.024000484,0.023260282,0.04804583,-0.07805765,-0.031380072,-0.056031037,0.028508987,-0.024067776,0.00024060065,0.010060016,0.02561547,0.029159468,-0.017338667,0.0336904,0.019581703,-0.0037570852,0.0002521663,-0.008742233,-0.047507502,0.014086266,-0.008944105,0.03241187,-0.022206055,0.020086387,0.01589191,-0.014770391,0.019996665,0.016643327,-0.052173015,0.00858522,0.005355248,-0.012381558,-0.008781485,0.02147707,0.020142462,-0.01279652,0.04003819,0.008108575,-0.034789488,0.014860113,0.012089964,0.018314388,-0.031469792,0.021813525,-0.012628293,0.0074132336,0.012830165,0.019615348,-0.0023397668,0.04243824,-0.0324343,-0.015824618,-0.031312782,0.009370282,-0.022116335,-0.0080805365,0.034699764,0.006846867,0.015196568,-0.014579734,0.0056131976,0.0015070398,0.046071958,-0.025144434,-0.019424692,0.034071717,-0.005728153,-0.011574065,0.012269407,0.019974235,0.019323755,-0.000018126097,-0.0077945497,-0.0011411445,0.034654904,0.02749962,0.0048085083,0.030191263,-0.018067654,0.016306872,0.029608075,0.013671304,-0.022318207,-0.013660089,0.027925797,-0.017585402,-0.0022135961,0.023394864,0.018235883,0.0033449272,0.027185595,0.031985693,0.03234458,-0.027387468,-0.030101541,0.047686942,0.006426298,-0.009611409,0.0023187385,-0.028015519,0.013716165,-0.026916431,0.026894001,0.0021827542,0.0010920782,-0.008590828,0.038423207,-0.008411385,0.010127307,0.0027785609,-0.005430951,-0.023753751,0.00060982537,-0.043828923,0.043357883,0.003911294,0.0010023566,-0.04992998,0.01374981,0.0008993172,0.002705662,0.016789123,0.011013307,0.0016332106,0.004797293,-0.004923464,0.011159103,0.031043617,0.031267922,0.012045103,-0.019222818,0.0075590312,0.0029580037,0.004197281,0.027185595,0.031626806,-0.01156285,0.007637537,-0.017125579,-0.015174138,0.031178199,-0.010155345,-0.062894724,0.025862204,-0.011203964,0.008960929,-0.020624716,-0.0035888574,0.0344306,-0.0073347273,0.03640447,0.0051898244,0.008344093,0.02091631,-0.013570367,-0.025862204,-0.019772362,0.02752205,-0.0064599435,-0.025525749,0.012897457,-0.010194599,0.04369434,0.038288623,0.008467461,-0.002038359,-0.008220727,0.007149677,-0.026108937,-0.015028341,-0.029159468,0.011966596,-0.0031682882,-0.0029636112,0.033309083,0.0019107863,-0.017641477,0.044501834,-0.024157496,0.0069253733,0.007917916,-0.016688187,0.031110909,0.032052983,-0.020434057,-0.01751811,-0.008131005,0.01407505,0.03315207,0.0073235123,0.030886605,0.017506896,-0.06809857,-0.01044694,-0.015230214,-0.01281895,0.04246067,0.038221333,0.033421237,0.014647025,-0.012605862,-0.052845925,-0.003294459,-0.016407808,0.026019217,-0.005714134,0.049122486,-0.065362066,-0.0014411506,0.011574065,-0.026714558,0.040935405,-0.0016528371,0.003499136,0.017955502,0.03187354,0.027028583,0.030415567,0.02927162,-0.0015294701,0.025705192,-0.039163407,-0.041496165,-0.025705192,0.020187324,0.041585885,0.025772482,-0.004814116,-0.015252644,0.0028065988,0.0020089191,0.020669576,0.011428268,-0.013458216,-0.0051421598,-0.017047074,0.021118183,-0.031985693,0.018191021,-0.020860234,-0.00639826,0.003210345,0.0046178503,0.0019808812,-0.01498348,0.0023579914,0.014411506,-0.023507016,0.02280046,-0.012919887,0.028060379,0.0044271923,-0.017899428,0.01996302,0.053159952,-0.006392652,0.0026986527,0.02617623,-0.032008123,0.026108937,0.012605862,0.0031654844,-0.013906823,-0.012280622,0.0037374585,0.03373526,-0.030325845,-0.03250159,-0.013009609,-0.008332878,-0.0010717507,0.0054197353,-0.0066618165,0.011832015,-0.048314992,0.016205935,0.0020187323,0.03236701,-0.015353581,-0.007301082,-0.008349701,-0.0016528371,0.014770391,-0.029585645,-0.045488767,0.027387468,-0.000018126097,0.014613379,-0.057242278,0.010626383,-0.00718893,-0.00949365,0.04010548,-0.0005569038,-0.0021140613,-0.012807735,-0.010104877,-0.049795397,0.01440029,-0.010996483,0.03384741,-0.02052378,0.0040795216,-0.0104693705,0.00014246783,-0.013559152,0.021398563,0.015566669,-0.03176139,0.00609545,-0.016351731,0.07487254,-0.025189294,-0.0135367215,-0.027051013,0.039791457,0.057376858,-0.02875572,0.017181655,-0.022564942,0.00037781138,-0.008349701,0.032972626,0.02005274,-0.010721711,-0.01649753,-0.028643569,-0.013009609,0.009443182,-0.015376011,0.01970507,0.02280046,0.007071171,0.04674487,-0.020770513,0.037840016,-0.036920372,0.040845685,-0.02431451,-0.031985693,0.05302537,-0.004864584,0.005358052,0.01593677,-0.039185837,0.009224486,-0.009140371,-0.014030189,0.042684972,0.025144434,-0.011506774,0.01805644,0.036449336,0.01654239,-0.018762995,0.018953653,0.028710859,0.025974356,-0.012347912,0.0013128769,-0.01216847,-0.020624716,0.01807887,0.027836075,0.010559091,-0.018807856,0.018202236,-0.023462156,0.015903125,0.0060618045,0.069758415,0.01905459,-0.024628535,-0.0024042542,-0.02810524,0.017854566,0.014860113,0.0046178503,0.009431966,-0.027140735,0.028867872,0.019839652,0.0029552,0.012762874,-0.021791093,-0.0030981933,-0.010553484,-0.023529448,0.04925707,0.0013920842,0.01186566,0.008013246,-0.016104998,-0.031424932,-0.0068524745,0.050378587,0.011282471,0.05692825,-0.021813525,-0.0064767664,-0.014691886,0.004264572,-0.0007535199,0.002691643,0.034206297,0.003064548,0.02749962,0.013671304,-0.021578006,0.026041647,-0.0021897638,0.0046150465,0.027993089,0.009628232,0.011411445,-0.041608315,-0.015589099,-0.009605802,-0.051141217,-0.04062138,-0.018258313,0.0052262736,-0.025077142,0.020983601,0.015499379,-0.028531417,0.00809736,-0.008338486,0.030998757,0.037211966,0.0112768635,-0.027006153,-0.021723803,-0.023013549,-0.02033312,0.027611772,-0.0056664697,-0.024538813,0.024090206,0.012875026,-0.04488315,-0.000017918002,-0.010979661,0.042999,-0.034610044,-0.02433694,-0.011686217,0.08554939,-0.0118880905,0.045399047,-0.00031262313,0.0017201281,-0.008231942,-0.044075657,-0.04555606,0.036292322,-0.02028826,0.019693855,-0.023215422,-0.007054348,0.00609545,-0.028419266,-0.060831133,0.056703947,0.03875966,-0.00090001815,0.029652935,-0.0065328423,0.00036449335,0.009600194,0.0045617744,0.00858522,0.021723803,0.03124549,-0.0012511935,-0.025234153,-0.01000394,-0.046161678,0.00937589,0.06639386,0.028935164,-0.0053692674,-0.010172168,0.0050888876,0.014131126,0.014041405,-0.021073323,-0.008377739,0.04008305,0.007951562,0.02117426,-0.013671304,0.0040907366,0.03999333,0.0020145266,0.0045281285,0.011764724,-0.012269407,-0.0018224667,-0.0025234155,-0.020366766,0.0044776606,-0.018067654,0.013233912,-0.020277044,-0.01626201,-0.025413597,-0.0046683187,0.025234153,0.024695825,-0.023596738,0.0071048164,-0.023237852,0.0362026,0.021398563,-0.0018280742,-0.01623958,0.00981889,-0.02035555,0.016161073,-0.0017159225,-0.030931465,0.022991119,0.0013766633,0.049660817,-0.008613258,0.012101179,0.00069744396,0.012998393,-0.025122002,-0.00037115236,-0.019929374,0.015667606,-0.036965232,-0.0001107499,0.042595252,0.016104998,0.0069870567,-0.020815372,0.0139180375,0.0057758177,0.0075926767,-0.0076655755,-0.029473493,-0.005523476,-0.0036757751,0.0011011905,0.01123761,0.009931042,0.02494256,0.010413295,-0.021039678,0.01372738,0.01651996,-0.02682671,0.029159468,0.00459542,0.02070322,0.022766815,-0.012931102,-0.018762995,0.014501227,-0.015667606,0.008321663,-0.00001616563,0.0070207026,0.009645054,0.034789488,-0.039230697,-0.0098917885,-0.02568276,0.02931648,0.0066506015,0.0048449575,0.0022332226,-0.01754054,0.010474978,-0.03687551,0.015566669,0.010626383,0.025503319,-0.035282955,0.01691249,-0.019906944,0.008198297,0.0004731404,0.021432208,0.00949365,-0.0281501,0.0067571457,-0.037279256,0.012314267,-0.0073347273,0.0073347273,0.025862204,-0.014119911,0.034587614,-0.025727622,-0.033331513,-0.0449953,0.0052150586,0.00029299656,0.019974235,0.0033309083,-0.001202828,-0.026535114,-0.011753508,0.007945955,-0.013559152,0.014916189,0.02286775,-0.011775939,0.007138462,0.026736988,0.031581946,-0.0076319296,-0.013884393,-0.017002212,-0.009185232,-0.024920128,-0.008613258,0.018549908,-0.030953895,0.020804157,-0.023865903,0.016643327,-0.0068861204,-0.017742414,0.014736746,-0.009274954,0.0064767664,-0.026422963,0.0096843075,0.011540419,0.030482858,-0.0065160193,0.044187807,-0.023843471,0.032322146,-0.0022304188,-0.0031206238,-0.0011201161,0.01719287,-0.00003708457,0.023798611,0.03992604,-0.008063714,0.008074929,0.0236416,0.031492226,0.0071833227,-0.012056318,-0.042931706,0.031110909,0.014490012,-0.013043254,-0.0011081999,0.0009469817,0.026467824,0.019144312,0.00642069,-0.0058262856,-0.017787274,-0.014747961,0.011349762,0.032120276,0.0010885734,0.008304841,-0.01931254,-0.0037711042,-0.0080805365,0.003813161,-0.020277044,0.009218877,-0.030168833,-0.014848898,-0.0062973234,0.003555212,0.019951804,-0.02678185,0.0024084598,-0.023260282,-0.019839652,0.00303651,-0.009202055,-0.019211603,0.017944288,-0.0119105205,-0.038266193,0.0096955225,0.0022444378,-0.019604133,0.0026467824,-0.017439604,0.030819314,0.01996302,0.0005043326,-0.017675122,-0.0021140613,0.065451786,-0.009532902,-0.003145858,0.053473976,0.049122486,0.013895608,0.021735018,0.020321906,0.030236125,0.014781606,-0.037840016,0.004073914,-0.025301445,-0.015263859,-0.010160953,-0.0088880295,-0.041922342,-0.009117941,-0.017002212,-0.014523658,-0.038894244,-0.019974235,0.01654239,-0.023462156,0.0071945377,0.0021252765,0.019480767,-0.029854808,0.00874784,0.031649236,-0.024426661,0.026602406,0.004990755,0.018247098,-0.018819071,0.009544118,-0.0019584508,-0.016643327,-0.0045701857,-0.009465612,-0.0018196629,0.005439362,-0.00858522,-0.021320056,0.013884393,0.020759298,0.010615167,0.02245279,-0.00366456,-0.019940589,0.02089388,0.0032215603,0.022464005,0.0036477372,-0.036471765,0.025391167,-0.042729836,-0.023551878,-0.009465612,-0.0051982356,-0.038826954,-0.00015815155,-0.045488767,-0.0057589947,-0.008136612,0.042684972,0.015746113,0.007228183,0.020490132,-0.014501227,0.021230334,0.0020047133,-0.030191263,0.0077328663,-0.012852596,-0.029765086,-0.009202055,-0.051724408,0.02996696,0.03570913,-0.013704949,-0.0064319056,-0.007901094,0.027342608,0.009106725,0.010553484,0.012000242,0.0032187565,0.031155769,-0.01654239,-0.0042449455,-0.009897396,-0.0072674365,0.013794671,-0.0113105085,0.024583673,0.0686369,-0.01309933,-0.03447546,0.016463883,-0.0076487525,-0.04741778,-0.04297657,0.015398442,0.003210345,-0.01437786,-0.024135066,-0.017989147,-0.013648873,-0.032950196,-0.0018939634,0.01617229,0.009729168,0.009942257,-0.026400533,0.004825331,0.019278893,-0.025144434,-0.014478797,-0.020557424,0.002174343,-0.015858265,0.006381437,-0.037548423,0.0018196629,-0.003841199,-0.03732412,-0.021118183,-0.02182474,0.009297384,-0.00044335006,-0.017742414,-0.016934922,0.0064487285,-0.02619866,-0.037638143,-0.0020495742,0.0002248293,-0.01309933,0.007043133,0.054146886,-0.009196447,-0.015566669,-0.01619472,-0.0042701797,-0.023417296,0.034587614,0.027073443,-0.002805197,-0.01658725,0.04068867,0.012460064,-0.031492226,0.00041075595,-0.00027319478,0.0010626382,0.014736746,-0.0022093903,-0.017114364,0.019693855,0.00077454833,0.0105142305,-0.02494256,0.0046290653,-0.019559273,0.014893758,-0.008944105,-0.07155284,-0.019525629,0.0013268959,0.0046094386,-0.008013246,-0.04124943,-0.01247128,-0.011989027,-0.040374648,0.0010584326,-0.033398803,0.018976083,-0.005764602,0.010037586,-0.0055795517,0.009774029,-0.0034935283,-0.022430358,0.03938771,-0.0063646142,-0.0143329995,0.024493951,-0.011411445,0.031043617,0.019491982,0.00732912,-0.03176139,-0.021791093,0.0024967794,0.014198418,-0.024561243,0.016688187,-0.024404231,0.040195204,0.00029334705,0.012347912,0.026041647,0.0023033174,0.00004670071,-0.0019304128,-0.019592918,-0.017125579,-0.01314419,-0.014490012,0.0056160013,0.0034374525,-0.011024522,-0.008344093,-0.02680428,-0.039118547,0.00017436099,-0.031963263,-0.0066337786,0.070924796,0.029809948,-0.029697796,0.01656482,0.016901275,0.0033196933,-0.024404231,0.060427386,0.013256342,-0.0067963987,0.015275074,0.006616956,-0.0013009608,-0.01091237,0.015230214,-0.025189294,0.004466445,0.062221818,-0.01407505,0.012392773,-0.020389197,0.013435785,0.01751811,-0.026916431,0.026535114,-0.031380072,0.026064077,-0.03999333,0.00732912,-0.0063477918,0.007121639,-0.01584705,0.009129156,-0.016452668,-0.008063714,0.012123609,0.00051449635,0.035529688,0.008405777,0.055941317,-0.016643327,0.017966717,0.02286775,0.014669455,0.0374587,0.028957594,0.06374708,0.035327815,0.02433694,-0.027051013,-0.019155527,0.0073066894,-0.02810524,0.0020425646,0.001654239,-0.00008003958,-0.016015276,-0.03678579,0.0012497916,-0.003459883,-0.019884514,-0.01840411,-0.026759418,-0.0046795337,0.0023397668,0.0063253613,-0.016183505,-0.02147707,-0.015600315,0.014478797,0.060382526,-0.0066674245,0.030236125,-0.0066786394,-0.02317056,-0.0010437126,-0.01440029,-0.00025461963,0.01747325,-0.03178382,-0.023439726,-0.016205935,0.022273347,-0.03236701,0.04239338,-0.00021238746,-0.020546209,-0.0018280742,0.0061515262,0.015633961,0.009762814,0.0028360386,-0.019794792,-0.015555454,0.0012105384,-0.01768634,-0.0036954016,0.0077721193,-0.017047074,0.03245673,-0.024224788,-0.017619047,-0.009207662,-0.02070322,0.032950196,-0.0135142915,0.031357642,0.0021154631]},{"id":"interface-APIEmbed","type":"interface","source":"main","text":"Interface: APIEmbed\nProperties: audio: APIEmbedMedia | null, author: APIEmbedAuthor | null, children: APIEmbedChild[] | null, color: number | null, description: string | null, fields: APIEmbedField[] | null, footer: APIEmbedFooter | null, image: APIEmbedMedia | null, nsfw: boolean | null, provider: APIEmbedAuthor | null, thumbnail: APIEmbedMedia | null, timestamp: string | null, title: string | null, type: EmbedType, url: string | null, video: APIEmbedMedia | null","meta":{"url":"/docs/typedefs/APIEmbed"},"embedding":[-0.021645669,-0.003366206,-0.004460301,-0.008162195,-0.001947302,-0.055400975,0.040232845,-0.042072915,0.027178306,-0.011966661,0.029416228,-0.024803624,0.0038448723,-0.01254479,0.004802205,-0.01375078,0.0015276918,-0.0038728465,0.010089293,0.021508906,-0.008746541,0.0007483048,-0.004702742,0.027725354,0.001599181,-0.031977404,-0.0041246125,0.033568814,0.0043888115,0.020054258,0.020029392,-0.02195649,0.056395605,0.017679576,-0.03642838,-0.030883309,0.030584918,0.0002603137,-0.012917777,0.002907743,0.007770559,-0.035931062,-0.033792607,0.017729307,-0.05624641,0.04204805,-0.019096926,0.02465443,0.009082229,0.04416164,-0.040133383,0.040406905,-0.02465443,0.030758979,-0.0075467667,0.030908175,-0.019793168,-0.0011896725,-0.03555808,-0.030560054,0.016336823,-0.00014288115,0.020116422,0.0130545385,-0.024256576,-0.008553831,-0.04356486,0.045852512,0.008603563,-0.0020623063,0.073553,-0.012209102,-0.034289923,0.0071426975,0.022652732,0.015304892,-0.040481504,-0.0070743165,-0.022553269,-0.04940832,-0.015628148,0.04488275,-0.053361982,-0.022018654,-0.009318454,0.03655271,-0.02225488,0.012196669,-0.050925132,0.011867197,-0.08698053,-0.018674206,-0.07320488,-0.034215324,-0.016436286,0.008653294,-0.010194973,0.017903367,0.014223231,0.034215324,0.03535915,-0.013091837,-0.070867494,-0.01293021,-0.0045286817,-0.036527842,0.011251769,-0.006300369,-0.042520497,-0.030236797,-0.048314225,-0.009225207,-0.021135919,-0.003907037,0.0072297277,-0.020825097,0.017418485,0.018835835,0.0007405342,-0.02487822,-0.061120108,-0.010903648,0.046250366,0.012638037,0.048040703,-0.010369034,-0.015727611,0.0010490254,-0.089864954,-0.072757296,0.009144394,-0.017418485,-0.004488275,0.002073185,-0.020253183,0.009679008,-0.0004646794,0.019768301,-0.003310258,-0.023336543,0.021123488,-0.024281442,0.055997755,-0.01765471,-0.013626452,0.004643686,0.004656119,0.011208254,0.015205429,0.019842898,0.010679856,0.011823682,-0.039685797,0.023473304,-0.038119253,-0.04557899,0.0030849117,-0.021111054,0.007360273,-0.026780454,0.026830185,-0.015043802,-0.0077829915,0.022913823,-0.03956147,0.043017812,0.028073475,-0.025487432,-0.03175361,0.03222606,-0.024070082,-0.040133383,-0.051919766,-0.016038433,-0.038467374,-0.033021767,0.06848038,-0.060026012,0.029739482,0.019109357,0.020912128,0.06420346,-0.028769717,-0.022230014,0.00089361425,0.023709528,-0.037796,0.020091556,0.016896304,-0.014049171,-0.03182821,-0.018276354,0.0069872863,0.035334285,0.045181137,-0.011649622,0.02750156,0.012781015,0.03849224,-0.036378648,0.054207418,0.003935011,0.058583796,-0.00867816,-0.0133404955,-0.01555355,-0.0041525867,-0.0020187912,-0.051372718,0.021931624,0.05808648,0.0043701623,0.004603279,-0.037124623,-0.027029112,0.028894046,-0.016137896,0.0021773106,-0.015503819,0.015727611,-0.021098621,0.07350327,0.04953265,-0.029664885,0.02556203,0.009424133,-0.032151464,-0.00044991536,-0.018972596,-0.0069748536,-0.013688616,0.061269302,-0.03346935,-0.003170388,0.016958468,-0.008497883,-0.01434756,0.009647925,-0.0002985837,-0.00069313386,-0.023721961,-0.042296704,-0.013887542,0.029590288,0.0058341357,-0.0011492657,0.024293875,-0.05395876,-0.019494778,0.029640019,0.067386284,0.0015898563,0.027203172,0.033742875,0.03642838,-0.033693142,-0.013377794,0.0622142,0.010518229,0.0099028,0.006688897,-0.030734114,-0.04008365,-0.037572205,0.026059346,-0.029192435,0.008653294,0.031952538,0.008790056,0.0028859854,0.01675954,-0.020128855,0.007720827,0.009107095,-0.020116422,-0.005675616,0.009641709,0.015677879,-0.034513712,0.010586609,-0.032872573,-0.023261944,-0.01774174,0.057887554,-0.018189324,-0.02311275,0.010020913,0.03612999,0.022690032,0.0042085345,0.004102855,0.011369881,0.08916871,-0.067585215,-0.0049576163,0.025164178,0.057788093,-0.0018618258,0.044559494,0.008354905,0.03617972,-0.05147218,0.04197345,-0.026308004,0.00076967385,0.011662055,0.033867203,0.020514276,0.010139025,-0.029540556,0.0032480936,-0.0036335133,-0.048015837,-0.0022985314,-0.06281098,0.022963556,0.061169837,0.01662278,-0.02298842,-0.017244425,0.009405484,0.015665445,-0.020240752,-0.06783387,-0.013415093,-0.028471326,-0.005349253,-0.014272963,0.019258553,-0.005035322,0.0025642845,-0.017120095,-0.011202037,0.0037609504,0.054804195,-0.046722814,0.0020218994,0.011115007,-0.009853069,0.024903087,0.0022721114,-0.05584856,-0.004463409,0.019320717,0.008721675,-0.019855332,-0.061418496,-0.009958748,-0.021011591,0.0051410017,-0.022142984,-0.006968637,-0.024865787,0.0031159942,0.007901104,-0.029490825,0.01443459,-0.070867494,-0.08837301,0.002197514,-0.03431479,0.019855332,0.010860133,0.037050024,-0.039188482,-0.036378648,-0.04871208,0.0385917,0.0051130275,-0.039586335,0.053859297,0.038691167,0.019967228,0.019382881,-0.016660077,0.018450415,0.000067749555,-0.021720266,-0.014832443,-0.029863812,0.020949427,0.013526988,0.045703318,-0.038939822,-0.00077433616,-0.028993508,-0.010350384,0.02190676,-0.045355197,0.05012943,0.025164178,-0.0150811,-0.044385433,-0.05460527,0.06649112,0.0059584645,-0.004799097,0.016635211,-0.0075156842,-0.0046623354,0.006076577,0.0023731287,0.0105057955,0.047443923,-0.013725915,-0.020066692,0.051621377,0.0028315915,0.058882184,-0.0128431795,0.0060144123,-0.014086469,0.04416164,0.014832443,0.021844594,0.0021648777,0.0047555817,-0.050775938,0.009399268,0.045031942,-0.012917777,-0.027228037,-0.022006223,0.027601024,0.018027697,-0.033046633,0.03389207,-0.008752758,-0.017679576,-0.025810689,-0.028421596,0.044559494,0.06216447,-0.018761236,0.015764909,0.008709243,-0.0046001705,-0.029416228,-0.039238214,0.0434654,-0.035259686,-0.0031626173,0.005380335,-0.010605259,-0.026308004,-0.010194973,0.009007632,0.004077989,-0.042595096,-0.06604353,-0.004640578,0.01954451,-0.03655271,0.06296018,0.016386554,-0.0036894614,-0.009455216,0.028421596,0.001000848,-0.0018571635,0.008019216,0.019880198,0.005647642,0.037696533,0.014359993,-0.020302916,0.004954508,0.0059740054,0.027874548,-0.016560614,0.026830185,-0.00056725077,-0.011326366,0.021944057,-0.026855052,-0.046847146,0.013713482,-0.05107433,-0.014086469,-0.0002043657,0.0039039287,-0.0026808428,-0.05515232,-0.043838385,-0.017231992,0.09076013,0.03493643,0.00042932338,0.01378808,-0.029416228,0.001975276,-0.003655271,-0.000820571,-0.013626452,-0.012700201,-0.017729307,-0.058583796,-0.01555355,0.012302348,-0.00026614164,0.033444487,-0.035433747,-0.002584488,0.0039723096,0.038343046,-0.03737328,0.0023140723,-0.043763787,-0.076735824,-0.0034874268,-0.011276634,-0.020725634,-0.040108517,0.021024024,-0.006900256,0.0047928807,-0.008050299,0.040232845,-0.035433747,0.014596217,-0.004799097,-0.010275787,0.03351908,-0.010350384,0.0148200095,-0.013004807,-0.025885286,-0.07345354,0.0035371582,-0.023933321,-0.014198365,0.0052218153,0.0036677036,0.010300653,-0.045355197,0.018450415,-0.0022705572,-0.00069080264,0.008895735,-0.035856467,-0.024952818,0.010922297,-0.008634645,0.000016730984,-0.01744335,0.045181137,-0.018537445,-0.015006503,-0.008112463,0.03324556,0.020738067,-0.033842336,0.041525867,-0.027824817,0.016137896,0.074597366,0.032499585,-0.0128431795,-0.010884998,0.011966661,-0.0047213915,-0.0035122926,0.036527842,0.015155698,-0.027402097,0.022006223,0.025835553,0.0065707844,0.030013006,-0.011313934,-0.028670253,-0.015230295,-0.01628709,0.054804195,-0.005296413,0.0039723096,-0.008908168,0.015640581,0.0060703605,-0.0084543675,-0.0014499862,-0.010512012,0.0003121822,0.029490825,0.0032076866,0.014049171,0.019681271,-0.012731283,-0.0055823694,0.015777342,0.036925696,0.011941794,0.01235208,-0.00951738,0.009274939,0.002904635,0.045181137,-0.007273243,-0.020887261,0.015864372,0.014882174,0.0072545935,-0.025611762,0.029242167,0.04533033,0.04381352,0.015690312,-0.007988134,-0.048836406,0.0014546486,-0.008914385,-0.019171523,-0.031554684,-0.037920326,-0.00839842,-0.011537726,-0.020551573,0.0028906479,0.0026248947,-0.0065459185,-0.021844594,-0.00726081,-0.006577001,0.018922865,-0.047767177,0.01765471,-0.023734394,-0.03841764,0.010518229,0.016946035,0.033618547,0.022876525,-0.0007735591,0.018437982,0.021123488,-0.009641709,-0.005175192,0.008298957,-0.025226342,-0.018661775,0.012215318,0.02586042,0.04746879,0.018276354,0.01516813,-0.022975989,-0.025450135,0.00063757435,-0.02904324,0.018462848,-0.038641434,-0.028620522,0.0013326508,-0.010922297,0.023137616,-0.041401535,-0.024517667,0.036577575,-0.036502976,-0.0019970336,0.0050726207,0.022453807,0.008671943,-0.015690312,0.007329191,0.008566264,-0.014583784,0.0013567396,-0.04799097,0.001849393,-0.0080627315,0.013626452,0.0049576163,0.00092003413,0.0519695,-0.06987286,0.016088165,0.005560612,0.00070750935,0.024679294,-0.06191581,-0.0116371885,-0.042470764,-0.04356486,0.0010777765,-0.046200633,-0.011158522,0.03476237,0.0075716325,-0.0074846023,-0.015354624,0.023038153,0.035110492,0.0016675619,-0.006465105,0.08543885,-0.010014696,-0.027874548,0.024766324,-0.04204805,-0.008373554,-0.025835553,-0.028645387,-0.020999158,-0.028123206,0.010642557,0.0043452964,0.027551293,0.015715178,0.00386663,-0.010791752,0.008858437,-0.022478672,0.0022192716,0.011662055,-0.005604127,-0.0003854197,0.004708959,0.018375818,0.026855052,0.003941227,-0.027849682,-0.022391642,0.006844308,-0.014770278,-0.009299804,-0.00019513816,0.020651037,-0.011966661,-0.0045597637,-0.024070082,-0.0006822551,-0.0038075738,0.003490535,-0.034463983,0.04214751,0.003966093,0.008230575,-0.0044292184,0.021583503,-0.0008734108,0.017381186,0.048836406,0.018077428,0.01632439,0.013987006,-0.017629843,0.019731002,0.023560334,-0.0026031372,-0.03217633,0.008155978,-0.038541973,0.009554679,-0.033693142,-0.02470416,0.024480369,-0.00200325,-0.044310834,0.022540838,0.019370448,0.02727777,0.008790056,-0.0027771976,-0.009399268,-0.042097777,0.0088460045,-0.0038635219,0.025512299,0.05022889,-0.030062737,-0.013999439,0.0014709667,-0.015727611,0.04756825,-0.041128013,-0.017144961,-0.025375536,-0.017430916,0.013987006,-0.014981637,-0.007932186,-0.0059864386,-0.02190676,0.0058217025,0.002878215,-0.04125234,0.009020065,-0.02586042,-0.04179939,-0.049383454,-0.013004807,0.030535188,-0.03707489,0.019793168,0.011718002,-0.008864653,-0.079570524,-0.018810969,0.04975644,0.0008182398,0.012153154,-0.03222606,0.027178306,-0.0038448723,-0.008342472,-0.02615881,0.012979941,0.015951402,0.0037423011,-0.037522472,0.008578697,-0.0044913827,0.022540838,-0.0044416515,0.03182821,-0.0016022892,0.010493362,0.02457983,0.021247815,0.051919766,0.026556661,0.015018936,0.000674873,0.023423573,0.03346935,-0.019320717,-0.0020809555,0.03655271,-0.023398707,0.042445898,0.03831818,0.0041246125,-0.0018587176,-0.02586042,-0.010244705,-0.042520497,0.035757,-0.019519644,-0.02349817,0.01898503,0.010648774,0.013079405,0.016859004,0.026133943,-0.021222949,0.001821419,0.0076027145,-0.015292459,0.0067945765,-0.005280872,0.006831875,0.026109077,-0.05142245,-0.0015238066,-0.0273275,-0.026656125,-0.018525012,0.0062817195,0.018152025,-0.02775022,0.017207125,0.00617604,-0.005047755,-0.0007708394,-0.042893484,-0.019445047,0.0041401535,0.01644872,0.041277207,0.022304611,-0.0076959613,0.024343606,-0.0022239338,-0.005355469,0.02615881,-0.024281442,-0.00053578004,-0.01649845,0.026929649,0.011823682,-0.012613171,0.0026497606,-0.0080627315,0.02482849,-0.0006371858,0.015951402,0.05550044,-0.025935017,0.019594241,-0.010431198,-0.022428941,0.0122464,0.03433965,0.013216166,0.02874485,-0.021036457,0.040357172,-0.00659565,-0.017157394,-0.0414264,-0.027352367,-0.020340215,-0.00906358,0.02234191,-0.0039287945,0.047269862,-0.0076400135,-0.007677312,-0.00278186,0.004307998,-0.008858437,-0.02491552,0.009318454,-0.014832443,0.011823682,-0.0011616985,-0.005060188,0.013949707,-0.017393619,-0.032698512,0.0007525786,-0.011444479,0.022739762,-0.02302572,-0.0074783857,-0.0012541682,-0.013154002,0.030485457,-0.00041572488,-0.019880198,0.018848266,0.01028822,0.0070308014,-0.010599042,-0.041227475,-0.017642276,0.035632674,-0.0054052006,-0.0031097776,-0.028123206,-0.022155417,0.034513712,-0.041724794,0.04587738,-0.020986725,-0.04291835,0.015640581,-0.030584918,-0.025686359,-0.014583784,0.03272338,0.014509187,-0.024903087,-0.009610627,-0.0066329488,0.055749096,-0.0099028,0.032599047,0.042246975,-0.026183674,0.020514276,-0.018612042,-0.019917496,-0.021247815,-0.022615435,0.013850244,0.006620516,0.033792607,0.026680991,-0.007192429,-0.0014523175,0.03011247,0.021769997,0.012700201,0.015702745,-0.0066578146,0.0022612326,0.026059346,-0.010132808,-0.004827071,0.039934456,-0.004991807,0.004155695,-0.028595656,0.0112144705,-0.00035006367,0.008317606,0.012582089,0.03334502,-0.015367057,0.0016224927,-0.0020762933,-0.011413396,-0.0028968642,0.01907206,-0.0074100047,0.0018043238,0.0029310547,0.027128575,-0.01235208,-0.008435719,-0.041650195,-0.012805881,0.005877651,0.014322693,0.024629563,-0.019594241,-0.010698506,-0.0077270437,0.01907206,-0.011015544,0.023833858,-0.03625432,-0.0019224362,-0.01782877,0.0072670267,-0.0008555385,-0.0010925406,-0.022006223,0.03921335,-0.022317044,-0.0024803623,-0.013377794,-0.0056538587,-0.0068194424,0.0058030533,0.0052777636,0.0358316,0.011630972,-0.042520497,0.07932186,-0.019469911,0.0008671944,-0.0064215898,0.03140549,0.0023063018,0.0036614873,0.016635211,-0.006688897,-0.029167568,-0.0076959613,-0.017368753,0.0367765,0.009940099,0.0133404955,0.00031898145,-0.0040717726,-0.0004339857,0.022018654,-0.016809274,0.022963556,-0.019581808,-0.005952248,-0.013564288,-0.009436566,-0.0061449576,0.02213055,0.0063096937,0.010841483,-0.023572767,0.01310427,0.01366375,-0.036229454,0.0024290767,0.017120095,0.026755588,0.002531648,-0.01366375,0.018699072,0.026929649,-0.021944057,0.05082567,-0.006744845,-0.005840352,0.020166153,-0.0042924564,-0.05301386,-0.01235208,-0.019432614,-0.019221254,-0.011506643,0.015914105,-0.025313372,-0.020153722,0.019755868,0.007745693,0.000059104812,0.0433908,-0.018922865,-0.035110492,0.014223231,-0.004438543,-0.007801641,-0.017716873,0.042893484,-0.008068948,-0.015304892,0.012420461,-0.019308284,0.01945748,-0.008821138,0.01177395,0.013253465,-0.01293021,0.02496525,0.0027430071,-0.03329529,-0.043664325,-0.013365361,-0.03148009,0.019643972,-0.0044571925,0.0055388543,-0.06669004,-0.010692289,0.0002711925,-0.0046250364,-0.010810401,0.004258266,0.015391923,0.017505515,0.003754734,0.033494215,-0.03170388,-0.0020327782,-0.0041929935,0.006340776,-0.007838939,0.00043864804,-0.006340776,-0.0028859854,0.01808986,-0.048438556,0.022155417,-0.031902805,0.012289915,0.0047307163,-0.007372706,0.0053896597,-0.006800793,0.00019125288,-0.011208254,0.0016675619,0.0009744281,-0.0087714065,-0.019233687,0.044833016,0.0033475568,0.0188607,-0.013154002,0.005364794,-0.0038075738,0.018239055,0.038865227,-0.011202037,0.01777904,-0.02993841,0.009287372,0.012302348,-0.0053523607,-0.005604127,-0.020153722,0.013564288,0.0076959613,0.02750156,-0.020091556,0.013937274,-0.011388531,0.017841203,0.035856467,-0.02045211,-0.007465953,0.008622212,0.020116422,0.017679576,-0.008124896,-0.0016660078,0.0061791483,0.018326085,0.03493643,-0.019992093,0.027526427,-0.013352928,-0.023000853,0.003266743,0.00021369036,0.03272338,-0.028993508,-0.02482849,-0.028471326,-0.0007821067,-0.020091556,-0.02349817,-0.022615435,0.013116703,-0.019830465,-0.0179158,0.041824255,-0.017692009,0.017132528,0.007360273,0.0038759548,0.0009821986,0.029515691,-0.0076151476,-0.010561744,-0.028993508,0.054058224,0.00090293895,0.02213055,0.03175361,0.04239617,0.026954515,0.0007471392,0.013377794,0.024107382,-0.005159651,0.021210518,0.017580112,0.019096926,0.0034781022,0.02341114,-0.008814922,-0.023684664,0.006048603,0.02615881,-0.023945754,-0.027402097,-0.008690593,0.017841203,-0.009169259,0.024107382,0.0132658975,-0.017940667,-0.014297828,0.0036677036,-0.021682967,0.0025658384,-0.00043903658,0.040133383,0.021533772,0.019382881,0.0076959613,0.016635211,-0.020501843,0.014782711,-0.0121345045,0.010331735,-0.021919193,0.005495339,-0.0044851666,-0.0060113044,-0.045007076,0.014049171,-0.039287943,0.013415093,0.022677599,0.01898503,0.0179158,-0.025151744,-0.028670253,-0.0037298682,-0.0054642567,-0.025213908,-0.01649845,-0.02517661,0.018748805,-0.015876805,0.017381186,-0.026805319,0.0032387688,0.029068107,0.04073016,0.0026528686,-0.013328062,0.022926256,0.014148633,-0.0002583711,0.034638043,-0.02500255,0.024990117,-0.014546486,0.007826507,-0.008497883,-0.0071426975,-0.01490704,0.0015976268,-0.017853636,0.028073475,0.03046059,0.041451268,-0.021260248,0.011295284,0.00934332,-0.024206845,0.013638885,-0.034016397,0.0042955647,-0.010157675,-0.0011508197,0.034463983,-0.0062319883,0.001042809,0.035931062,0.010170108,-0.023784125,0.002631111,-0.00055248674,-0.04682228,0.01112744,0.010816618,-0.027899414,-0.041898854,0.008429502,0.036627304,0.009809554,-0.023846291,-0.0047307163,-0.03448885,0.03230066,0.0022565702,-0.010051995,0.0070432345,-0.007950836,-0.037472744,-0.017418485,-0.00017775153,-0.04132694,0.011699353,0.032201197,0.021484042,0.041724794,-0.015180564,-0.03433965,0.00386663,-0.021944057,-0.008180845,-0.012868045,-0.03329529,-0.0010466942,0.017244425,-0.021148352,-0.00155722,0.02775022,0.039710663,0.0048488285,-0.00043903658,0.021670533,0.028844314,-0.021633236,0.022018654,0.008497883,-0.007994351,0.027849682,-0.0037485175,0.019594241,0.03033626,-0.02556203,0.020016959,-0.027974011,0.0070494507,0.016175196,-0.0015766463,-0.018413115,0.007919754,0.019345583,0.05147218,0.0025394186,0.011251769,-0.04321674,0.017729307,0.0056818323,0.019954795,-0.0034998597,0.022068387,-0.0048332876,-0.01020119,-0.01628709,-0.043689188,0.022279747,0.0018338518,-0.036677036,-0.0029248383,-0.020091556,-0.005716023,0.02650693,-0.011226904,0.009927666,-0.0060299537,0.0003009149,-0.05072621,-0.003002544,-0.001126731,0.012196669,-0.018935297,0.00008057098,0.0011578132,0.036677036,0.03540888,-0.06514836,0.0017747956,-0.026954515,0.0053772265,-0.0462255,0.0014663044,-0.012793448,-0.023398707,0.031131966,0.0064215898,0.01426053,0.012955075,-0.039039288,0.020825097,0.007702178,0.0122401845,0.016299523,0.002281436,0.0032107949,-0.03406613,0.008671943,0.009038714,-0.017604977,0.031679016,-0.03381747,-0.021297548,-0.04025771,-0.011643405,0.032797974,-0.010549311,0.024679294,0.021446742,0.03759707,-0.04304268,-0.022055954,0.010916081,-0.024517667,0.007988134,0.015578416,-0.027775085,-0.029789213,0.00038114592,0.023709528,-0.01641142,-0.017542813,0.013402659,-0.0128431795,-0.0037858163,0.0245674,0.0036739202,-0.010263354,-0.0004945961,0.030385993,-0.032599047,0.0034563446,-0.016274659,-0.0026653016,-0.0017188475,-0.023746828,-0.008218143,-0.0048208544,-0.0017033065,0.0273275,-0.028123206,0.00027060971,0.026109077,0.001781012,-0.008504099,0.0023125182,0.0035122926,0.014645949,0.024331173,-0.045380063,0.035160225,0.030783845,0.041749656,0.039760396,-0.01046228,0.009299804,0.011034193,-0.021247815,0.0046343612,-0.012035041,-0.0014041399,0.008473017,-0.0155286845,-0.022379208,0.007957052,-0.01679684,0.00792597,-0.01777904,0.018487712,0.06261206,0.024020351,-0.0066578146,0.011736652,-0.03453858,0.031430356,0.06360669,0.02745183,-0.02444307,0.0014080253,0.011761517,0.0045659803,-0.018562311,0.018164458,-0.0035682407,0.017505515,0.018437982,-0.03926308,0.006148066,0.0016256009,0.048960738,0.002491241,0.0040966384,0.009169259,0.018612042,-0.044857882,0.004851937,-0.012308565,-0.010232272,-0.0032885005,-0.013216166,-0.057290774,0.028272402,-0.01812716,-0.01620006,0.010232272,0.0052901963,-0.050775938,0.038890094,0.012756149,-0.0036832448,-0.04162533,-0.030236797,0.0033972883]},{"id":"interface-APIEmbedAuthor","type":"interface","source":"main","text":"Interface: APIEmbedAuthor\nProperties: icon_url: string, name: string, proxy_icon_url: string, url: string","meta":{"url":"/docs/typedefs/APIEmbedAuthor"},"embedding":[-0.00096552115,-0.038863607,-0.013131088,-0.002562769,0.011227632,-0.056894023,0.05888024,-0.004135189,0.00072276156,0.0026248381,0.010416594,-0.034847036,0.02729942,-0.042836037,0.006030369,-0.018957319,-0.02020422,0.024143547,-0.0009958661,-0.00051896763,0.018736627,0.0014841439,-0.005517264,0.066604406,-0.016849723,0.07075339,-0.01657386,-0.023635957,0.03502359,-0.0021779398,0.028535288,-0.014951785,0.04482225,0.026681487,-0.01988422,0.0018524213,0.025048377,0.030256674,0.012071773,-0.017622141,0.0058041615,-0.005073124,-0.012104876,0.04201948,-0.0616168,0.04219603,-0.015017992,0.0045351908,0.05773265,0.031669095,-0.03411876,-0.008739346,-0.033081513,-0.009202796,-0.050758827,0.016242824,-0.017842831,0.021086982,-0.05742368,0.007365547,0.025732517,0.025313206,-0.032794617,-0.004788985,-0.01494075,0.0019834563,-0.03268427,0.045859497,-0.023481475,-0.039746366,0.0406512,-0.013682814,0.003558635,0.003597256,-0.023569752,0.0076027894,-0.04484432,-0.0016731102,-0.0049489858,-0.054069184,-0.023613889,0.013561434,-0.03833395,-0.057291266,0.015933858,0.012546258,-0.03714222,0.0055034705,-0.045373976,-0.022311814,-0.031647027,-0.026306314,-0.054996084,-0.059895415,0.004044154,0.00205656,0.002187595,-0.0137269525,-0.026504936,0.039746366,0.06576578,-0.0369436,-0.06898787,-0.0027407007,-0.0152276475,-0.01952008,0.016728343,-0.012954535,-0.008148999,-0.017831797,-0.06713407,0.0072938227,-0.008744863,0.005881403,0.018063521,-0.024717342,0.028336667,0.014686956,-0.006217956,-0.04126913,-0.025423551,-0.03506773,0.07084167,0.014278678,0.0049407096,-0.0037186358,-0.044976734,-0.01949801,-0.06841407,-0.09825143,-0.0023503543,0.0011317288,-0.027895285,0.00014275919,0.008783484,-0.015547649,-0.0028662186,-0.0002129319,-0.041291203,0.004907606,-0.011464874,-0.021362845,0.031227713,-0.02941805,-0.028358735,0.0160111,0.002322768,0.013296606,-0.0075420993,0.07097408,0.020193186,0.020491118,-0.027144937,-0.0018938008,-0.046300877,-0.016430411,0.022753196,-0.030433226,-0.012833156,-0.013395917,0.013991781,-0.024298029,-0.0070676147,0.015194545,-0.056011263,0.05857127,0.028380804,-0.0098207295,-0.03528842,0.019089732,-0.0059751966,-0.017611105,-0.033081513,0.0069352007,0.014841439,-0.010013834,0.05376022,-0.014002816,-0.0091807265,0.06408854,0.016143514,0.030433226,0.008987622,-0.059851278,-0.019431803,0.022223538,-0.025710449,0.0073103746,0.035244282,0.0032772548,-0.003583463,0.009611074,-0.019553183,0.004595881,0.030102191,0.0053214007,0.00998073,-0.0015696615,-0.0121490145,-0.051729865,0.0049186405,0.028204253,0.046389155,0.019564217,-0.0045158803,-0.008722794,-0.0012296601,-0.021969745,-0.0028234597,0.057511955,0.048905026,-0.038885675,0.017202828,-0.018151797,-0.03248565,-0.025798725,0.010096593,0.016540756,-0.0052469177,0.020491118,-0.029131152,0.061219558,0.05389263,-0.06417681,0.041666377,0.02427596,-0.020215254,0.009318658,-0.020976637,0.010306248,-0.014841439,0.061219558,-0.032132544,-0.012888328,0.003597256,-0.00061931286,-0.014775232,-0.0100083165,0.0034565658,-0.009313141,-0.010791768,-0.011177977,-0.030653918,0.014874543,-0.0072938227,-0.00312553,0.028535288,-0.022135261,-0.025887001,0.0100469375,0.062014043,0.008651069,0.0542016,0.009473142,0.037318774,-0.022355953,-0.053098146,-0.0022331125,0.03802498,-0.02334906,0.03824567,-0.011238666,0.0064883023,-0.010692457,0.0369436,-0.014841439,-0.008606931,0.045153286,-0.014532473,-0.019630425,0.0406512,-0.012612465,0.02941805,0.030764263,-0.025820794,-0.0062841633,-0.0018593179,0.02522493,-0.06929683,0.0212525,-0.020093875,-0.033522893,-0.021418018,0.061793353,-0.022775264,-0.011354528,0.009616591,0.019553183,0.022124227,0.0020924222,0.041732583,0.0215725,0.064132676,-0.026218038,0.0123366015,0.006444164,0.025533896,-0.019873183,0.036789116,0.012182118,0.06117542,-0.041644305,-0.00059069204,-0.024430444,-0.015481442,-0.0010317283,0.046345014,0.031007022,0.029462188,-0.017555933,0.023437336,-0.030477365,-0.041865,-0.013837297,-0.021241466,0.031382196,0.03107323,-0.0057379543,-0.0271008,0.023481475,0.010863492,0.0061572664,-0.03996706,-0.040077403,-0.00979866,-0.049213994,-0.0011275908,0.029859431,0.029285636,0.037053943,0.03643601,-0.025644243,0.019166974,0.024298029,0.021086982,-0.009688315,-0.019806977,0.014653852,-0.0028993222,0.04647743,0.016518688,-0.046609845,-0.013572468,-0.0031807024,0.00782348,-0.013120053,-0.025158722,0.0059255413,-0.03780429,0.006173818,-0.014929716,0.023613889,-0.047316052,-0.0029351844,-0.038709123,-0.031271853,-0.0036993253,-0.05812989,-0.100370064,0.020027667,-0.022841472,0.031713232,0.021120086,0.0019613872,-0.06488302,-0.01800835,-0.011509012,0.017048344,-0.0019420768,-0.041533962,0.03224289,0.0360167,0.00711727,0.016033169,0.0120166,0.048198815,0.0020744912,-0.022124227,-0.028667703,-0.04952296,0.04524156,0.002042767,-0.036259457,-0.03619325,0.013782125,-0.05649678,0.0070455456,-0.013760055,-0.015779374,0.036502216,0.011862117,0.0017406967,-0.02683597,-0.049831927,0.071503736,0.007012442,0.0072331326,0.004124155,-0.0018938008,0.015933858,0.0067034755,-0.0034179448,0.037671875,0.021848364,-0.03500152,-0.027762871,0.022091124,-0.005815196,0.043829143,-0.004971055,0.0023862165,-0.03224289,0.03945947,-0.010813837,0.005431746,0.0043503623,0.008695208,-0.07997826,0.012215222,0.052391935,-0.02066767,0.012325567,-0.049567096,-0.012855224,0.027189076,-0.056673333,0.029572533,-0.013153157,-0.045197424,-0.017390415,-0.012060738,0.017853865,0.02941805,0.02522493,-0.0123366015,-0.03151461,0.038179465,-0.018880077,0.011994531,0.04413811,-0.033743586,0.00082758954,-0.01542627,-0.02098767,0.0002651735,-0.038444296,0.030764263,-0.026747694,-0.020358704,-0.0016055238,-0.043718796,-0.023834579,-0.005602781,0.080463775,0.009544866,0.009831764,0.006604165,0.01713662,-0.0070234765,0.010670388,0.018560074,0.0056220917,-0.029815294,0.03738498,0.050758827,-0.043145,-0.02966081,0.05000848,0.023415267,-0.017313173,0.011128321,-0.0035558764,-0.016320067,-0.0017255242,-0.03992292,-0.02266492,-0.0057379543,-0.079889975,-0.02473941,-0.008391758,0.01588972,0.005815196,-0.02220147,-0.056629196,0.021749053,0.087967254,0.022587677,0.0063338187,-0.00560554,-0.028579427,0.014664887,0.013715917,0.010217972,-0.009164175,-0.015680064,-0.055525742,-0.054245736,-0.044336732,0.0005124159,0.0024262166,0.02824839,-0.043498106,-0.032287028,-0.0038731191,0.024584927,-0.020877326,-0.0074593406,-0.034229103,-0.06364715,-0.005881403,0.0074427887,-0.048242953,-0.031382196,0.0015986272,0.0010344869,0.0628968,-0.025533896,0.052259523,-0.02451872,0.00065069227,0.013793159,0.006946235,0.01691593,-0.00034327726,0.015591787,0.003357255,-0.055614017,-0.039944988,0.0056303674,-0.0033241515,-0.023018025,-0.0139145395,-0.012215222,-0.0043365695,-0.026902178,0.0156028215,-0.01691593,-0.013053846,0.025269069,-0.046653982,-0.00560554,0.007553134,0.011806944,0.0038979468,-0.053583667,0.011189011,-0.029572533,0.02752011,-0.00852969,0.018405592,0.008833139,-0.0012772465,0.057158854,-0.032154612,0.034648415,0.023966994,0.017942142,0.008860726,-0.010913148,-0.014057988,-0.011464874,0.003169668,0.01026211,0.017898003,-0.0020882844,0.02893253,0.019288354,0.004333811,0.019674562,-0.0042758794,-0.0039227745,0.022995954,-0.0038041533,0.08121412,-0.011299356,0.014543507,-0.006427612,-0.0027751836,0.004482777,-0.01915594,-0.026593212,0.0034344967,-0.016684206,0.022753196,0.003566911,0.0013641434,-0.0026427694,-0.008601414,0.023635957,0.031492542,0.0029434601,0.015271786,0.0013117294,-0.011343494,-0.0008255206,-0.0052248486,0.05954231,-0.0048772614,-0.003580704,0.028888393,0.00976004,0.012115912,-0.037870497,0.007972446,0.043542244,0.031095298,0.017224897,-0.023172507,-0.04385121,0.009280037,-0.015260751,-0.00019965599,-0.0021117327,-0.033875998,-0.014212471,0.013020743,-0.0026634592,0.023326991,-0.055172637,-0.021020776,-0.019222148,-0.008314516,-0.02006077,0.039944988,-0.046653982,-0.010245559,-0.00038276016,-0.03197806,0.00502071,0.017125586,0.040276024,0.02919736,-0.021793192,-0.012833156,0.030543571,0.006482785,0.013693849,0.017313173,-0.027365629,-0.004460708,0.016463514,0.0021462156,0.018891111,0.030653918,-0.02113112,0.008634518,-0.02637252,0.012281429,-0.021760087,0.0038565674,-0.013131088,-0.0016524205,-0.00859038,0.0057765753,0.023459405,-0.0056000226,0.000062629566,0.031691164,-0.037627738,0.021660777,-0.0026607004,0.018504903,0.012424878,-0.032309096,-0.0035172557,0.0004044844,-0.0092965895,-0.004311742,-0.04691881,0.0069352007,-0.018273177,0.036082905,0.008937967,0.020027667,0.021164224,-0.04504294,0.017787658,-0.0271008,-0.014841439,0.042372584,-0.030278744,0.001480006,-0.01518351,-0.019111801,0.010880044,-0.040011197,0.0066869236,0.018173866,-0.018858008,0.0038703606,-0.005815196,0.03319186,0.026438728,-0.012005566,0.010096593,0.06916442,-0.011398667,-0.009732453,0.0062676114,-0.02593114,0.018317316,0.0027958734,-0.009302107,-0.008237274,-0.014609714,0.021296637,0.001242074,-0.022223538,0.006019335,-0.016783517,-0.052656766,0.008744863,-0.027034592,-0.0019434561,0.024298029,0.008971071,0.008292448,-0.007591755,0.009417969,-0.00025465622,0.015834548,-0.006587613,-0.041379478,0.0298815,-0.016187651,0.0076689967,0.010140731,0.031492542,-0.016562825,-0.011255218,-0.030278744,-0.028778048,-0.007315892,0.0094841765,-0.021550432,0.032419443,0.032309096,-0.0003665532,-0.004863468,0.018869042,0.010035903,0.02381251,0.001195867,0.011486943,0.0030924263,0.0056303674,-0.01752283,0.02088836,0.032088406,-0.009158658,-0.013804194,0.0046731224,-0.03522221,0.03674498,-0.02286354,-0.0060138176,0.0551285,-0.03689946,-0.03219875,0.02661528,0.0008006929,0.015735237,-0.017566968,0.006902097,-0.019575251,0.0015806961,0.0054758843,-0.0063007153,0.012535223,0.045131218,0.00625106,-0.025246998,-0.005613816,-0.01342902,0.031713232,-0.035840146,-0.023172507,-0.013142122,-0.02661528,0.014411093,-0.004788985,-0.010455214,-0.017589036,-0.028689772,0.029815294,-0.01869249,-0.0030234605,-0.006609682,0.011354528,-0.017445588,-0.024938032,0.006758648,0.0063724397,-0.046786398,0.023878718,0.021583537,-0.0068469243,-0.051729865,-0.054157462,0.050758827,0.01837249,-0.020071806,-0.011365564,0.038488433,-0.019233182,-0.0109848725,-0.015900753,0.002484148,-0.0018827663,-0.007448306,-0.02705666,0.03923878,-0.008308999,0.011564185,0.011696599,0.05323056,0.03200013,0.0152276475,0.017754555,0.02476148,0.02752011,0.0099696955,-0.011442805,-0.017721452,0.0041379477,0.014808336,-0.00227863,-0.016099375,0.0006972442,-0.01659593,0.010582112,0.04396156,0.009125554,-0.01657386,0.0015406959,-0.01854904,-0.0067255446,0.008822105,-0.018162832,-0.004893813,0.000023965615,-0.023437336,0.012071773,0.007161408,0.004504846,-0.041445684,-0.011398667,0.0034344967,-0.015139372,0.011928325,0.030146329,0.01352833,0.011762806,-0.020435944,0.00073241675,-0.027939424,-0.0489933,-0.02088836,0.018846974,0.0028579426,-0.0063338187,0.026306314,0.0018344902,-0.009875902,-0.01167453,-0.028601496,-0.0031669093,0.017787658,0.025401482,0.051067792,0.039437402,0.003544842,0.004562777,-0.008695208,-0.018968353,0.060071968,-0.013241433,0.022951817,-0.015139372,0.05000848,0.050847102,-0.019718701,-0.0126014305,-0.019067664,0.010096593,0.027012523,0.013517296,0.042328447,-0.0028800117,0.027873216,-0.0011062113,0.0019806977,0.014124195,0.008027619,0.03663463,0.028424943,-0.005051055,0.010780733,0.006902097,0.009666246,-0.008077274,-0.008921416,-0.01740145,0.0094069345,0.020358704,0.00572692,0.06664854,-0.00358898,0.0032193235,-0.025776656,-0.0025641483,-0.00079172733,-0.020965602,0.047227778,-0.00029327706,0.023746302,0.016893862,0.013384881,0.0036744976,-0.012171084,-0.015569719,0.0073765814,-0.03343462,0.022841472,0.0102345245,-0.027829079,-0.017291104,-0.0013234536,-0.011575219,0.00076896866,-0.02846908,0.020855257,-0.003296565,0.013219364,-0.0070455456,-0.074549265,-0.027144937,0.02254354,0.014046953,-0.017555933,-0.03175737,-0.034626346,0.016562825,-0.05879196,0.03288289,-0.007939342,-0.029285636,0.030477365,0.0048303646,-0.070488565,0.003506221,0.0032386337,0.036546353,-0.035597384,-0.015205579,-0.0008013826,0.053186424,0.004016568,0.0074262368,0.028314598,-0.02381251,-0.0119614275,-0.05464298,-0.0012248325,-0.004038637,0.0035420833,-0.0016096617,0.016827654,0.028005632,0.0126014305,-0.023437336,0.012546258,0.009787626,0.007911757,0.0023144921,0.028093906,-0.011884186,-0.015900753,0.021925606,-0.02264285,-0.0073765814,0.030698055,-0.02893253,0.017456623,-0.0203256,0.0039172573,-0.02161664,-0.0014386266,0.016121445,-0.01167453,-0.00979866,-0.023547681,0.041688446,0.015172475,-0.0048000193,0.005500712,-0.0064772675,0.0035641524,-0.01284419,0.0016234549,-0.01250212,-0.015569719,-0.02198078,-0.025511827,0.008055205,-0.008281413,0.006946235,0.0017544898,-0.023569752,0.006444164,0.054951947,0.020965602,0.045638807,-0.06519199,0.017842831,-0.027696664,-0.021870434,0.01952008,0.0012317292,0.0069572697,0.03623739,-0.039856713,-0.012766948,-0.0040717404,0.008154516,0.011034528,0.018317316,-0.011564185,0.033015307,0.006444164,-0.008766932,0.05649678,-0.0064772675,0.01984008,-0.0157242,0.036568426,-0.0007751756,0.024143547,0.010951769,-0.0035089797,-0.008121412,-0.012888328,0.00729934,0.027277352,0.0069186487,-0.023371128,-0.012546258,0.008651069,-0.0019365596,-0.0029848397,-0.009958661,-0.0049517443,-0.016099375,0.012822121,0.0052579525,-0.039216712,0.004306224,0.023702165,0.0011041424,-0.00064862333,-0.033522893,0.013881436,-0.0057986444,-0.02139595,0.00994211,0.03592842,0.026659418,0.033346344,-0.0005003469,0.0015931099,0.021704916,-0.032772545,0.0320222,-0.004452432,0.025754588,-0.0058041615,-0.005892438,-0.0745934,-0.0021406983,-0.021638708,0.015779374,-0.018096626,0.009120037,-0.015459373,0.014333852,-0.020546291,0.022598712,0.0048358818,0.03197806,0.017357312,-0.01891318,0.01167453,0.00572692,0.0032662202,-0.0028041494,0.0075200303,0.042460863,-0.008397276,0.012811086,-0.0024648376,0.007674514,-0.019067664,0.023613889,0.019486975,-0.010885561,0.050273307,-0.019762838,-0.023282854,-0.04274776,-0.015161441,-0.028601496,0.038466364,0.04126913,0.026085623,-0.06651613,-0.02941805,0.0014524197,-0.0022510437,0.003986223,-0.004976572,0.015073164,0.009340728,-0.0065324404,0.005597264,-0.015017992,0.0048496746,-0.0066648545,0.015349028,-0.02615183,-0.019111801,-0.0070234765,-0.011062114,0.027983561,-0.06329405,0.03621532,-0.019729735,0.004135189,0.0033379446,0.009451073,0.03299324,0.002082767,0.012579361,0.0048220884,-0.008297965,0.006819338,0.0121490145,-0.013230398,0.035133936,-0.0249601,0.0043558795,-0.017346278,0.0026165624,0.012347636,0.039636023,0.042769827,-0.024871824,-0.01952008,-0.008386241,-0.010449697,0.005073124,-0.015536615,0.0011937979,0.0016827654,0.007922791,-0.0037931188,0.0060083,-0.016033169,0.019486975,-0.0010200042,-0.004921399,0.030322881,-0.022775264,0.007878653,0.0031889784,0.012921432,-0.009853833,-0.0032469097,-0.0127890175,0.0015806961,0.012557292,0.042637415,-0.039282918,0.005682782,0.016077306,-0.007983481,0.011133838,-0.004135189,0.039658092,-0.034891177,0.0031420817,-0.05230366,-0.023989063,-0.042240173,-0.017015241,-0.013053846,0.014091091,-0.029925639,-0.0051503656,0.01518351,-0.007277271,0.0013379365,0.0010055213,-0.0045876047,0.0064938194,0.043277416,-0.0061351974,-0.012612465,0.008148999,0.04788985,-0.016706275,0.020435944,0.04396156,0.06598648,0.026990455,0.0040358785,0.016066272,0.030631848,0.019211112,0.02917529,-0.0024938032,0.0123366015,0.014179368,0.010995907,-0.01131039,-0.022477333,-0.018306281,-0.0013172467,0.006571061,-0.008209689,-0.016463514,0.012623499,-0.029594602,0.01740145,0.03310358,0.0024648376,0.012667637,0.02590907,-0.01564696,-0.01272281,-0.004733812,0.013042811,0.022565609,0.007547617,0.018416626,-0.022731127,-0.0018551799,0.021539398,-0.008077274,-0.023702165,-0.024849756,-0.013109019,-0.0063227843,-0.00081241707,-0.028689772,0.006024852,-0.0064110607,-0.011497977,0.010300731,0.008259344,0.019718701,-0.019906288,-0.021627674,-0.035862215,0.007961412,-0.010841424,-0.020336634,-0.0092193475,0.0006103473,-0.01389247,0.007911757,0.00058896793,0.015569719,0.0360167,0.021451121,0.006902097,-0.0056110574,0.017555933,0.03038909,0.011343494,0.00057517475,-0.040960167,0.022124227,-0.020513186,0.010791768,-0.008662104,-0.024805618,-0.008910381,0.021649742,-0.018129729,0.010753147,-0.00026672523,0.057070576,-0.018681455,0.020689739,0.006984856,-0.030035984,0.016540756,-0.014576611,-0.028888393,0.02359182,-0.008253827,0.024253892,-0.044336732,-0.0067089926,0.03802498,0.013241433,-0.02286354,-0.009324175,-0.004471742,-0.056011263,-0.028557356,0.023834579,-0.014742129,-0.028888393,0.011166941,0.012987639,0.016320067,-0.046521567,-0.007470375,0.0051889867,0.01272281,0.028226322,-0.002772425,0.021362845,0.0010544871,-0.01659593,-0.023900786,-0.01296557,-0.016971104,0.0019765596,0.024651134,0.02115319,0.044226386,0.0074317544,-0.026902178,-0.0071448567,-0.0068689934,0.00723865,-0.030653918,-0.012855224,0.005842782,-0.012822121,-0.013605572,-0.020248357,0.036502216,0.0038400155,0.019486975,-0.00893245,0.010824871,0.025887001,-0.056143675,0.013760055,0.025357343,-0.0127890175,0.025732517,-0.008562793,0.015315924,-0.0043503623,-0.017511794,0.0013703504,-0.020921465,-0.011205562,0.013903504,-0.011895221,-0.015746271,0.024849756,0.027873216,0.043564316,-0.016099375,0.0009648315,-0.01764421,-0.0099696955,0.0007613824,0.030653918,-0.006046921,-0.017611105,-0.00041586376,-0.014057988,-0.011062114,-0.05323056,-0.0042400174,0.017489726,-0.008000032,-0.034449793,-0.018504903,-0.020358704,0.05323056,-0.015713166,-0.026482865,-0.009473142,0.0249601,-0.03550911,-0.009307624,0.010526939,0.028557356,-0.031249782,0.006973821,0.01949801,0.03976844,0.027696664,-0.035818078,-0.013660745,-0.021329742,0.025313206,-0.017302139,-0.028579427,-0.012215222,-0.025754588,0.023635957,0.011122804,0.0063669225,0.045682944,-0.020248357,0.022951817,0.016849723,-0.0035365662,-0.0037517394,0.004198638,-0.0036386354,-0.0357298,-0.01250212,-0.0050427793,-0.022013882,0.006240025,-0.017070414,-0.008148999,-0.048198815,0.013296606,0.05724713,0.0068855453,0.014024884,0.007691066,0.04409397,-0.035398763,-0.007315892,0.0036220837,-0.011939359,0.010620733,-0.0041020857,-0.025754588,-0.02897667,-0.012590396,0.013749021,-0.010256593,-0.031713232,-0.010151765,-0.000818624,0.02254354,0.021627674,0.009307624,-0.018339384,0.0054869186,0.032331165,-0.0071889944,-0.00019103526,-0.023040093,0.013042811,-0.00015758685,-0.005028986,-0.003470359,0.024849756,-0.006604165,-0.0024758722,-0.02683597,0.04550639,0.014212471,-0.0178649,-0.004720019,0.013142122,-0.007994515,0.036347732,0.016364204,0.0008400034,0.02829253,0.03901809,0.056629196,0.040253956,-0.002532424,0.0039972574,0.02308423,-0.017809728,0.0040800166,-0.029594602,0.0016593171,0.0022372503,-0.0068358895,-0.013252468,-0.0006782786,-0.0044689835,0.001851042,-0.0035089797,0.028336667,0.045859497,0.020171117,0.0011682806,-0.029506326,-0.040033266,0.043277416,0.045462254,0.043145,-0.018394558,0.0044800183,0.027586319,-0.009715902,-0.013826263,-0.0023158714,-0.017920073,-0.003776567,-0.008380723,-0.018858008,0.001881387,0.022510435,0.043564316,0.011784876,-0.0026662177,0.0209325,0.034648415,-0.030874608,-0.012590396,-0.035133936,-0.024452513,0.0015337993,0.010256593,-0.038400155,0.016849723,-0.025820794,-0.011542115,0.011497977,0.02966081,-0.058438856,0.009263486,0.019486975,0.03385393,-0.030013915,-0.01655179,-0.0006500026]},{"id":"interface-APIEmbedChild","type":"interface","source":"main","text":"Interface: APIEmbedChild\nDescription: Nested embed from unfurlers (subset of APIEmbed)\nProperties: audio: APIEmbedMedia | null, author: APIEmbedAuthor | null, color: number | null, description: string | null, fields: APIEmbedField[] | null, footer: APIEmbedFooter | null, image: APIEmbedMedia | null, nsfw: boolean | null, provider: APIEmbedAuthor | null, thumbnail: APIEmbedMedia | null, timestamp: string | null, title: string | null, type: EmbedType, url: string | null, video: APIEmbedMedia | null","meta":{"url":"/docs/typedefs/APIEmbedChild"},"embedding":[-0.031665936,-0.00046718452,-0.0058238707,0.0011629085,0.008494829,-0.04621784,0.029725684,-0.025795426,0.020932354,0.006716263,0.019303039,-0.030820185,-0.008171454,-0.019788101,0.0026849506,-0.0032026626,0.019526914,-0.004732478,0.0081776725,0.032835066,0.007145358,-0.029029183,0.0016168782,0.016790658,-0.0091167055,-0.036242947,-0.0064302003,0.033481818,-0.0042225397,0.021442292,0.02778543,-0.018979663,0.045993965,0.015335468,-0.039004076,-0.022350231,0.03537232,-0.00041004963,-0.02241242,0.022499481,0.011734804,-0.042884585,-0.026591428,0.016554344,-0.06631688,0.049675472,-0.022934794,0.034501694,0.007848078,0.05606836,-0.017611535,0.015944906,-0.030272935,0.033581316,-0.039501578,0.020472165,-0.021641294,0.0078791715,-0.029551558,-0.045446716,0.009788332,0.00069067127,0.02466361,0.024128798,-0.011765898,-0.009576894,-0.044998962,0.0512426,0.014564341,0.02115623,0.074276894,-0.007916484,-0.034501694,-0.005335698,0.05567036,0.003230647,-0.03004906,-0.010739802,-0.033879817,-0.04586959,0.007512265,0.034750443,-0.0516406,-0.024452174,-0.011100491,0.0251238,-0.009104268,0.008544579,-0.046914343,-0.0039520236,-0.073381394,-0.03226294,-0.07029689,-0.03723795,-0.010857959,0.01411659,-0.027860055,0.020621415,0.010963677,0.03335744,0.04487459,-0.034849945,-0.086565174,-0.02547205,-0.0028015524,-0.0362927,-0.005817652,0.00001226748,-0.040869705,-0.024688486,-0.048755094,-0.011971117,-0.02808393,0.0073381397,0.0038929451,-0.013146464,0.015036968,0.023432296,-0.017512035,-0.029103808,-0.06910288,-0.04004883,0.050197847,0.017760785,0.048804846,-0.0140668405,-0.01667872,0.019452289,-0.08447567,-0.077212155,0.023084046,-0.0090420805,-0.026268052,0.0015663507,-0.014900154,0.014676279,-0.008631642,0.00552537,0.0013385885,-0.027312804,0.009676394,-0.024738235,0.06333187,-0.030322684,-0.012580556,0.024091486,0.008109266,0.019924914,0.016517032,0.019402537,-0.0007769566,0.0043375865,-0.04019808,0.024153672,-0.049426723,-0.03562107,0.00057018275,-0.029203307,0.013121588,-0.030621186,-0.0008511931,-0.01055324,-0.023307921,0.007375452,-0.041168205,0.011343023,0.02788493,-0.017375221,-0.035745446,0.036218073,-0.032735564,-0.040372204,-0.047760095,-0.0015663507,-0.053282354,-0.03236244,0.035844944,-0.072187394,0.023482047,0.009788332,0.052187853,0.062436372,-0.022822857,-0.0182956,0.003426538,0.03442707,-0.023046734,0.022847733,0.0139922155,-0.009539581,-0.034153443,-0.013059401,-0.0067038257,0.026939679,0.048954096,-0.0008737361,0.050769974,0.0015717922,0.044426836,-0.035347443,0.046143215,0.018009536,0.060346868,0.0025139346,0.0041261488,-0.005711933,-0.0027720132,0.0009164901,-0.053680357,0.03427782,0.057710115,0.0185941,0.009122924,-0.026442178,-0.021778105,0.022847733,-0.009769675,-0.016268281,0.00023203756,0.024875049,-0.00037157105,0.07651565,0.054227605,-0.02305917,0.005531589,0.0018018864,-0.04868047,-0.019166226,-0.04266071,0.027536679,-0.004325149,0.059401616,-0.017362785,-0.0128728375,0.008345579,0.019203538,-0.017300596,0.015186218,-0.0067597944,-0.0044588526,-0.029253058,-0.026790427,-0.0035104912,0.0047013843,0.0059171524,0.0023895593,0.023183545,-0.049426723,-0.014663842,0.02803418,0.06537163,0.01366884,0.026243176,0.033034064,0.03144206,-0.025546676,0.00002514226,0.07223714,0.02044729,-0.0032648502,0.007157795,-0.028457057,-0.031143561,-0.004586337,0.025185987,-0.0387802,0.03487482,0.032835066,0.021479605,0.0131713385,0.011075616,-0.017474722,0.0015453624,0.010932584,-0.037461825,-0.00985052,0.03146694,-0.004306493,-0.017524472,-0.005696386,-0.03315844,-0.0063027157,-0.024750674,0.035422068,-0.03044706,-0.024091486,0.0043935557,0.027088929,0.02989981,0.013233526,-0.011492273,0.0038773983,0.10706221,-0.048406847,-0.013432526,0.018531911,0.06552088,0.009894051,0.07129189,-0.0013245963,0.010161458,-0.049725223,0.032785315,0.0038649607,0.011828085,-0.005267292,0.054376855,0.021691043,0.0127609,-0.029949559,-0.016964784,0.007331921,-0.070545636,0.0026414192,-0.052486353,0.029725684,0.04069558,0.026914803,-0.01618122,-0.012524587,0.0073070456,0.022922358,-0.017263284,-0.059849367,-0.008320704,-0.035994194,-0.009881613,-0.010515927,0.016255844,0.0035540226,0.0032586313,-0.026591428,-0.00039236504,-0.0070272014,0.051441602,-0.058754865,0.0044526337,0.01120621,0.004309602,0.0255218,-0.010099269,-0.039725453,0.008911487,0.013046963,-0.021280605,0.0013106042,-0.056914113,0.002582341,-0.026268052,0.015820531,-0.032486815,-0.010882834,-0.024688486,-0.00095380266,0.00054608507,-0.037436947,0.022574106,-0.09318193,-0.06691388,-0.012101712,-0.022375107,0.008171454,0.007170233,0.054128107,-0.043232836,-0.023419859,-0.039501578,0.03211369,-0.0019697929,-0.040372204,0.02577055,0.020472165,0.03547182,0.026690928,-0.026964553,0.01914135,0.0099811135,-0.035297696,-0.002733146,-0.00793514,0.021293042,0.006019762,0.029576434,-0.045844715,-0.008874174,-0.02286017,-0.0017599097,0.0047977753,-0.06114287,0.045894466,0.0096079875,-0.02351936,-0.032984316,-0.05089435,0.052784853,-0.010012208,0.011952461,0.014514592,-0.00708317,0.007916484,0.018345349,-0.012139024,0.0071329204,0.029626183,-0.0131713385,-0.00587984,0.073530644,-0.00073498,0.043183085,-0.013569339,-0.0132459635,-0.017648848,0.040173203,0.005537808,0.027263055,0.009968676,0.001494835,-0.0781574,0.006386669,0.04437709,0.00045396964,-0.04390446,-0.013930027,0.029352559,0.034849945,-0.044302464,0.035098694,-0.002908826,-0.006038418,-0.029029183,-0.012151461,0.041193083,0.0757694,-0.020322915,0.020671166,-0.012226087,0.0076552965,0.008233641,-0.050769974,0.027387429,-0.010124145,-0.0001717933,0.002064629,-0.017798098,-0.05049635,-0.017711034,-0.008208767,-0.006125481,-0.058605615,-0.07925191,0.0052144323,0.009968676,-0.012344243,0.046615843,0.02145473,0.000052227886,0.017611535,0.021442292,0.029526683,0.016691158,0.026516803,0.02130548,-0.006312044,0.02411636,0.019278163,-0.016342908,0.006647857,0.014328028,0.024725799,-0.020559229,0.026666053,-0.02391736,-0.0131713385,0.029999308,-0.015832968,-0.032884814,0.015335468,-0.042685583,-0.015148905,0.006828201,0.0066229817,-0.009060737,-0.04370546,-0.046939217,-0.034775317,0.09527144,0.017487159,0.01019877,0.019340351,-0.036964323,0.004060852,-0.0015679054,0.010323145,-0.013681277,0.008768455,-0.020770665,-0.053680357,-0.0059917774,0.009010986,-0.0031700141,0.025845176,-0.042387083,0.0026647397,0.022499481,0.02848193,-0.0378847,0.0022714029,-0.051789854,-0.06616763,-0.0030876154,-0.019763226,0.0016666283,-0.033581316,0.03144206,-0.010982335,0.012344243,-0.026641177,0.038680702,-0.019974664,0.0022947232,0.0017210424,-0.0115171475,0.013345464,-0.01160421,0.026591428,-0.0058269803,-0.02195223,-0.08367967,-0.0014225419,-0.0074873897,-0.010111707,0.011529585,0.010173895,0.020571666,-0.049526222,0.023332795,-0.002647638,0.018929912,0.012748463,-0.03999908,-0.019377664,0.019713476,0.0033892253,0.012474837,-0.024551673,0.05965037,-0.006828201,-0.016591657,0.0010797326,0.039352328,0.025335237,-0.028382432,0.04532234,-0.018071722,0.009775895,0.069351636,0.036541447,-0.018171223,-0.007984891,0.014663842,0.006902826,-0.012250962,0.053182855,0.01532303,-0.03487482,0.020832853,0.013357901,0.012362899,0.027088929,-0.0066913883,-0.039625954,-0.007928922,-0.024501923,0.04029758,-0.0027844508,-0.0009164901,0.00062148756,0.029078932,0.010018426,-0.0019215975,-0.0008177672,-0.008196329,-0.0035260383,0.01667872,0.007829422,0.010584333,0.029775433,-0.013482276,0.0010983889,0.018718474,0.030571435,0.028929682,-0.0024595205,0.0019620196,0.005948246,0.00031482484,0.026666053,-0.014763341,-0.018606536,0.012325587,0.022686046,-0.008936361,-0.010316927,0.026690928,0.030272935,0.033233065,0.023382546,-0.01381809,-0.058555864,-0.0029632403,-0.0073381397,-0.015658844,-0.036839947,-0.02226317,-0.014688716,-0.012350461,0.0067784507,0.007263514,0.009091831,0.0022076606,0.0136190895,-0.008302048,-0.010634083,0.028133681,-0.06119262,0.017449846,-0.009085611,-0.035944447,0.020559229,0.02210148,0.023419859,0.031068936,-0.007617984,0.000737312,0.0091913305,-0.015248405,-0.00028936678,0.009925145,-0.027710805,-0.014676279,0.0021532464,0.022723358,0.042113457,0.025434738,0.0033674599,-0.0068095447,-0.022275606,0.007400327,-0.011423866,0.018220974,-0.029800309,-0.028755557,0.015285717,-0.021479605,0.014775779,-0.043730337,-0.01517378,0.044252712,-0.032014187,0.0009716816,0.003983117,0.029302808,0.009129143,-0.027561555,0.019502038,0.0019076053,-0.007139139,-0.0036659604,-0.023705922,0.002235645,0.01085174,-0.0046858373,0.010024644,-0.01175346,0.031989314,-0.06850588,0.02537255,0.008923924,0.012145243,0.013432526,-0.071441144,0.0018547458,-0.024787987,-0.04345671,-0.0006619095,-0.039053828,-0.020322915,0.026566552,-0.00091804477,0.0011123811,-0.013333026,0.020161226,0.04089458,-0.012275836,-0.0132459635,0.08537117,-0.018469725,-0.016815534,0.024128798,-0.023842735,-0.0015243741,-0.026218303,-0.023457171,-0.02788493,-0.02069604,0.0006051633,0.0128728375,0.035795197,0.00889283,0.0036690698,-0.0013564675,-0.006240528,-0.009925145,0.002974123,-0.011112928,-0.010254739,0.0013113815,0.0046267593,0.01613147,0.018009536,-0.005416542,-0.023805423,-0.006184559,0.01271115,-0.008724923,0.004029758,0.0060011055,0.01667872,-0.009968676,0.000049507176,-0.024539236,-0.011660179,-0.01396734,0.0155717805,-0.031392314,0.028954556,-0.0006871732,0.013059401,-0.016367782,0.016616533,0.0069214823,-0.0022185436,0.04666559,0.03191469,0.020870166,0.010447521,-0.0002695445,0.028606307,0.019613976,0.0030674045,-0.030372435,0.008326923,-0.03582007,0.0067908885,-0.036367323,-0.018469725,0.009154018,-0.000027935846,-0.045496464,0.02251192,0.032735564,0.0155717805,0.011349241,-0.0054787295,-0.0057243705,-0.03674045,0.00899233,-0.015584218,0.008787111,0.039053828,-0.021467168,-0.030670935,-0.013581777,-0.015012092,0.058008615,-0.045894466,-0.03300919,-0.0017723473,-0.019601539,0.016989658,-0.018979663,-0.002577677,-0.0031389203,-0.012773338,-0.001904496,-0.0035167101,-0.031392314,0.0055689015,-0.027536679,-0.046168093,-0.0521381,-0.023718359,0.030571435,-0.032486815,0.01813391,0.020969667,-0.007829422,-0.09357993,-0.0021392542,0.048357096,-0.0018531912,0.003759242,-0.02376811,0.011262178,-0.015671281,0.0010167676,-0.014626529,0.0072883894,-0.0036255384,0.014377778,-0.031392314,0.024352673,-0.009241081,0.022499481,0.0016697376,0.036342446,-0.016952345,0.016740909,0.009253519,0.011150241,0.042685583,0.0037094916,0.018905038,0.0033985535,0.011311929,0.041491583,-0.015285717,-0.0030114357,0.045844715,-0.032138564,0.035645947,0.04833222,0.00044619618,0.0018967225,-0.029402308,-0.019402537,-0.029551558,0.036815073,-0.032039065,-0.021666167,0.014638966,0.009359237,0.01813391,0.0052299793,0.03161619,-0.016753346,0.00040577425,0.0059202616,-0.014265841,0.0052393074,-0.007219983,0.007972453,0.016641408,-0.0512426,-0.005882949,-0.008233641,-0.014626529,-0.006741138,0.0102049885,0.023830296,-0.026342677,0.014402653,0.0011947796,0.0005495831,-0.0054538543,-0.033531565,-0.016840408,0.016218532,0.019775664,0.04392934,0.016616533,0.007823203,0.026019301,0.011685054,-0.013295714,0.01727572,-0.016927471,-0.0027844508,-0.026491927,0.024775548,0.010609209,-0.017972223,-0.0065172627,-0.023643734,0.022288043,0.004835088,0.025360113,0.047760095,-0.012549462,0.026491927,-0.0030114357,-0.028979432,0.018183662,0.014079277,0.011330585,0.033183314,-0.020260727,0.039352328,-0.0013121589,-0.022524357,-0.050172973,-0.04221296,-0.01983785,-0.018233411,0.039277703,-0.010385333,0.033183314,-0.008861736,-0.014900154,-0.0122323055,0.012555681,-0.00502476,-0.030272935,0.01090149,-0.0011450296,0.00814036,0.016342908,0.0041261488,0.010124145,-0.0074873897,-0.01955179,-0.0023227078,-0.004754244,0.015758343,-0.027287928,-0.017661285,-0.006877951,-0.026566552,0.021914918,0.0030829513,-0.0071329204,0.03517332,0.0094463,0.0185941,-0.012114149,-0.028656056,-0.0151240295,0.034228068,-0.015036968,0.022275606,-0.019987103,-0.010528364,0.03507382,-0.023867609,0.038805075,-0.009178893,-0.034377318,0.01416634,-0.014427529,-0.030919686,-0.007170233,0.042188082,-0.00040033282,-0.021989543,-0.0006362571,-0.022151232,0.06940138,-0.019327912,0.03611857,0.038382202,-0.026491927,0.008861736,-0.0057368083,-0.028929682,-0.007530921,-0.023432296,0.01195868,0.009185112,0.036093697,0.03693945,-0.008482392,0.004477509,0.030969435,0.016927471,0.04169058,0.016454846,-0.021342792,0.0047760094,0.017449846,0.002070848,-0.00024311474,0.04054633,-0.005923371,0.013333026,-0.016939908,0.012630306,0.002974123,0.010360458,0.032685816,0.010814427,-0.017064285,0.00683442,-0.0041572424,-0.011790773,-0.008382891,0.025136238,-0.011896492,0.012375337,0.0063991062,0.012530806,-0.011560679,-0.012400212,-0.03532257,-0.010777115,0.005354354,0.011535804,0.03723795,-0.015683718,-0.005699496,-0.014813092,0.011697492,0.006915264,0.019203538,-0.021006979,-0.00074780616,-0.01507428,0.005767902,-0.0034451943,0.006728701,-0.0119338045,0.02748693,-0.014427529,0.0011870062,-0.0010556349,-0.0011061623,-0.0042878366,0.005155354,-0.006296497,0.024501923,-0.0013704597,-0.032138564,0.06537163,-0.017810535,-0.014987217,-0.014278278,0.006053965,0.012244743,0.009247299,0.009035861,0.0005526925,-0.038009074,-0.008886611,-0.015235968,0.033183314,0.027113803,0.010913928,-0.021094041,-0.008358017,-0.0019184882,0.036516573,-0.010907709,-0.0018034411,-0.007325702,-0.0113678975,-0.004732478,-0.0025885599,0.00763664,0.021865169,-0.0011240413,0.003370569,-0.022524357,0.0019386992,0.0127982125,-0.02039754,0.0053636823,0.015633969,0.027362553,0.017512035,-0.0021765667,0.03221319,0.02350692,-0.026840178,0.044128336,-0.009085611,0.0037903355,0.022586545,-0.0007960016,-0.041267708,-0.019775664,0.0018531912,0.0031715687,-0.0063338093,0.030845061,-0.020322915,-0.013681277,0.023034295,0.0015492492,0.0019682383,0.035347443,-0.0063275904,-0.0382827,0.028208306,-0.011498491,-0.0003295944,-0.021827856,0.03671557,-0.02305917,-0.007661515,0.014514592,-0.023755671,0.0051024943,-0.010024644,0.01672847,0.015534468,-0.010478615,0.021790544,0.0040079923,-0.020260727,-0.043829836,0.0043438054,-0.037362322,0.032611188,-0.0029865606,0.0076490776,-0.0765654,-0.0023289265,-0.008606767,-0.006392888,0.007593109,0.0057305894,0.01894235,0.017748348,0.008351798,0.035496697,-0.033854943,0.007512265,-0.0073132645,-0.0044495245,-0.0043375865,0.0028295368,-0.011597992,-0.023283046,-0.003849414,-0.03783495,0.027511803,-0.0249248,0.010366676,-0.012033305,-0.010391552,-0.0030378653,-0.006486169,-0.0053978856,-0.021902481,0.00065802276,-0.0057243705,0.0010214318,-0.0245268,0.045595966,0.002251192,0.016753346,-0.016342908,0.0055036047,-0.0077299215,0.013780777,0.028282931,-0.008053297,0.026964553,-0.03211369,0.019427413,0.0028310914,0.0053170417,-0.00024700147,-0.0077547967,0.025459612,0.009209987,0.0071826703,-0.006386669,0.027263055,0.0010696271,0.013457402,0.029601308,-0.020708479,-0.007058295,0.00763664,0.013842965,0.021293042,-0.0054880576,-0.010578115,0.0022200982,0.024128798,0.027362553,-0.011747242,0.024501923,0.0010237638,-0.0109947715,-0.0061627934,0.008519704,0.01411659,-0.031516686,-0.01391759,-0.03470069,-0.0033519128,-0.02049704,-0.023444735,-0.016902596,0.008171454,-0.012935026,-0.016081719,0.03823295,-0.0042225397,0.012250962,0.014365341,0.0021967778,-0.01532303,0.030397309,-0.0063275904,-0.005923371,-0.02125573,0.04285971,0.009104268,0.018917475,0.04174033,0.04487459,0.026914803,0.0071018264,-0.0020506368,0.028009305,-0.0028621852,0.021516917,0.007418983,0.025994426,0.0062467465,0.017039409,-0.010310708,-0.015596656,0.005108713,0.035645947,-0.029551558,-0.038158324,-0.007698828,0.005015432,0.01985029,0.003678398,0.0139922155,-0.015012092,-0.015509593,0.019278163,-0.024700923,0.0031575765,-0.0061068246,0.022598982,0.018556787,0.014788217,0.016355345,0.01281065,-0.010497271,0.024228297,-0.00017237631,0.00026041066,-0.020608978,0.011025866,-0.0051677916,-0.023979547,-0.053033605,0.014303153,-0.037461825,0.002129926,0.016243408,0.0188926,0.02290992,-0.020521915,-0.005512933,0.012935026,-0.007114264,-0.02196467,-0.015347905,-0.01080199,0.017711034,-0.034327567,0.011641523,-0.042163208,0.008314485,0.020173665,0.033432066,-0.0114860535,-0.0053947764,0.01085174,0.015099155,-0.00042481918,0.028755557,-0.025994426,0.011896492,-0.010459959,-0.0039955545,-0.01844485,-0.0037312573,-0.011100491,-0.006567013,-0.013146464,0.024203423,0.035048943,0.039451826,-0.014701154,0.021591542,0.0066105444,-0.01758666,0.019626414,-0.033083815,0.013519589,-0.0127982125,-0.0017023862,0.031665936,-0.0026072161,0.001215768,0.038755327,0.0251238,-0.022723358,0.0023740125,0.015982218,-0.02818343,0.0065297005,0.023705922,-0.022847733,-0.032312687,0.0014178779,0.041317455,0.013855402,-0.012487275,-0.01537278,-0.029327683,0.023270609,-0.011498491,-0.006355575,0.008917705,0.0025559112,-0.032611188,-0.008445079,-0.011703711,-0.040969204,0.02310892,0.016939908,0.025297925,0.04636709,-0.012847963,-0.031790312,0.009321924,-0.012431306,-0.0020630744,-0.0188926,-0.041168205,0.011461179,0.016803095,-0.027760554,-0.01884285,0.020571666,0.028730681,0.007344358,0.009831863,0.019327912,0.03753645,-0.008351798,0.016716033,0.0034731787,0.0059016054,0.028108805,-0.013009651,0.018905038,0.03241219,-0.004461962,0.009384112,-0.03703895,0.021293042,0.0063617937,-0.007195108,-0.00638045,0.0047822283,0.003980008,0.049600847,-0.0032493032,0.011498491,-0.030621186,0.009900269,0.01727572,0.02295967,-0.0057212613,0.015161342,0.0061161527,-0.010882834,-0.013407651,-0.058108114,0.024153672,0.0060664024,-0.03783495,0.008650298,-0.0057150424,-0.010982335,0.028954556,0.00031929457,0.019576663,-0.008202547,0.0026756225,-0.062237374,-0.0057492456,0.0017070503,0.026268052,-0.024004422,0.002632091,-0.00005334532,0.04778497,0.027014304,-0.054327108,-0.009595551,-0.039650828,0.014974779,-0.05228735,0.0068095447,-0.013046963,-0.005873621,0.047262594,0.01366884,0.0052517448,0.0052921665,-0.041839834,0.00969505,0.0062032156,0.01517378,0.02547205,0.00492526,-0.0006603548,-0.03290969,0.0068406384,0.010117927,-0.029651059,0.021044292,-0.03295944,-0.014614091,-0.031516686,-0.0253228,0.018071722,-0.011112928,0.024278048,0.026566552,0.028282931,-0.030372435,-0.029004307,-0.002712935,-0.025198424,0.01552203,0.02376811,-0.032586314,-0.034750443,-0.0031187092,0.02009904,-0.027263055,-0.0041945553,0.012219868,-0.019153789,-0.0016153235,0.03457632,-0.0010634083,-0.0032617408,-0.011380335,0.03892945,-0.0370887,0.008214985,-0.021367667,-0.0072137644,0.00041160433,-0.028755557,-0.0045583528,-0.005603105,-0.009744801,0.026690928,-0.021094041,0.009110487,0.02300942,0.013009651,-0.008451298,0.012823088,0.0012437524,0.030994311,0.007798328,-0.04109358,0.024377547,0.023332795,0.031143561,0.04853122,-0.026442178,0.024427298,0.0055533545,-0.012350461,0.00552537,-0.008867955,0.014912592,-0.008625424,-0.0038929451,-0.022885045,0.0023242624,-0.0134698395,0.0023942236,-0.011915148,0.024713362,0.06850588,0.0033798972,-0.016653845,0.03176544,-0.023133796,0.033556443,0.059700117,0.017250847,-0.026193427,0.0006677396,0.019502038,0.008463736,-0.02014879,0.012984776,-0.003793445,0.007418983,0.031690814,-0.035546444,0.008426423,0.0049905567,0.05646636,0.008762236,0.0052517448,0.012592994,0.008320704,-0.028506806,-0.005195776,-0.016803095,-0.018245848,-0.011716148,-0.011529585,-0.051889353,0.02241242,-0.025434738,-0.031790312,0.0005352022,0.006915264,-0.044750214,0.02577055,0.0012390884,0.000036097972,-0.038257826,-0.021168666,0.0016324251]},{"id":"interface-APIEmbedField","type":"interface","source":"main","text":"Interface: APIEmbedField\nProperties: inline: boolean, name: string, value: string","meta":{"url":"/docs/typedefs/APIEmbedField"},"embedding":[-0.021145742,0.017305098,-0.028105523,0.023909675,0.003313388,-0.027350714,0.019958029,-0.020357635,-0.009351858,0.010828175,0.035387207,0.012631945,0.03414399,-0.008269595,-0.011433131,-0.0007010424,-0.016394889,0.036763623,0.023776473,0.02001353,0.013242452,-0.009313007,-0.015839882,0.017571501,-0.0015581804,-0.029104535,-0.007081881,0.0016178436,0.016761193,-0.001777408,0.0057887165,-0.022166954,0.06540195,0.00611062,-0.027350714,0.015184974,0.04773055,-0.008080893,-0.009934614,-0.018115409,-0.025485894,0.013353453,-0.016694592,0.025974298,-0.010961376,0.05812027,-0.01911442,0.03993826,0.017571501,0.010639472,-0.004675929,-0.017293999,-0.036186416,-0.031191358,-0.0090355035,0.030725153,-0.031102557,0.04186968,0.024109477,-0.012654145,0.017937806,-0.013364553,0.006632326,0.044045307,-0.05328061,0.012842848,-0.07206203,0.042424686,0.025330491,0.0055861394,0.061539106,-0.0003029988,-0.014074962,0.03558701,0.03207937,-0.009396258,0.0032051618,0.023021664,0.006460274,-0.008358396,-0.022721961,0.02870493,-0.05146019,-0.033833187,0.009634911,0.02690671,-0.035853412,-0.0016455939,-0.061450306,0.022067053,-0.06566835,-0.01911442,-0.041980684,-0.05505663,-0.002958184,0.005561164,-0.015151674,-0.005982969,-0.045910127,0.012276741,0.05754306,-0.024819884,-0.074504055,0.015051773,-0.017538201,-0.0056943656,0.0074426355,0.0011655134,-0.006349273,-0.03294518,-0.07556967,-0.009834713,-0.00036769174,0.03629742,0.004712004,-0.037829235,0.007464836,0.032589976,-0.0062882225,-0.01305375,0.0019258722,-0.026484905,0.025663495,-0.025019687,-0.024642283,0.010223217,-0.04084847,0.01217684,-0.08857902,-0.04870736,-0.01835961,0.008119743,-0.022144755,0.0142414635,-0.024220478,0.005994069,0.0013105088,0.049240164,-0.0076923883,-0.021678548,-0.02952634,-0.03578681,0.06251592,-0.011743935,-0.009490609,0.045643725,-0.0090965545,0.017993307,0.06855439,0.017837904,0.005899718,0.016905494,-0.033522386,0.0038073438,-0.040471066,-0.059674285,0.013286852,-0.013420055,0.016861094,-0.030547552,-0.0006091195,-0.018515013,-0.008358396,0.030192347,-0.03303398,0.05319181,0.012498744,-0.01922542,-0.03294518,0.02874933,-0.010112216,-0.030525351,-0.055145435,0.006698927,-0.017871205,-0.0017718578,0.04861856,-0.030614153,-0.023776473,0.037784833,0.014219264,0.054568227,-0.027239714,-0.019014519,0.05576704,0.02175625,-0.019769328,0.014252564,0.012321142,-0.00698198,-0.007958791,0.005064433,-0.004842431,-0.0077145887,-0.004614878,-0.005982969,0.013309053,0.02011343,-0.0005810223,-0.047641747,0.055012234,0.022200255,0.007420435,-0.0047536297,-0.011161178,-0.0030303348,-0.030369949,-0.03307838,-0.04710894,0.012332242,0.029703941,-0.004403976,0.004267999,-0.029215535,-0.0039793956,0.017693603,0.026551506,-0.009385158,0.010583972,-0.006443624,-0.034898803,0.027284114,0.06535755,-0.032523375,-0.008025392,0.022955064,-0.022455558,-0.015096174,-0.022411158,-0.033677787,-0.033522386,0.010284268,0.00866365,-0.03572021,0.0010933626,0.03674142,-0.034832202,0.035231806,-0.02515289,-0.010162167,-0.023421269,-0.005905268,-0.007420435,0.015950883,-0.02513069,0.0020077357,0.044000905,-0.021600848,0.010756023,0.009174256,-0.0006947986,0.025286091,-0.0026321178,0.0037157678,0.01913662,-0.036008812,-0.014174863,0.05141579,0.0054862383,0.018692615,-0.014296965,-0.01912552,-0.026618106,-0.02690671,0.024642283,-0.030702952,0.06895399,0.031524364,-0.0013202215,-0.029415337,0.05310301,0.025508093,-0.008358396,0.00062438217,0.007364935,-0.024642283,0.025286091,0.033322584,-0.04790815,0.05736546,-0.050172575,-0.033566784,-0.0031885116,0.0174605,-0.011621834,-0.029304337,-0.022477759,0.00003841685,0.025952099,0.026751308,0.04697574,0.046620537,0.08880102,-0.013619857,-0.0027223062,-0.012010338,0.013819659,-0.006787728,0.07219523,-0.021556448,0.02079054,-0.03398859,0.03321158,-0.0023643272,-0.0029165584,0.015817681,0.009185355,0.038650643,0.016805593,-0.04415631,-0.013697557,-0.0045177517,-0.03909465,-0.022411158,-0.050350178,0.020723939,0.043090694,0.007947692,-0.019447424,-0.023954075,0.01222124,0.048174553,-0.024997488,-0.08946703,-0.028571729,-0.059496682,-0.0021950502,0.022999464,0.015295976,0.0034438146,0.013420055,-0.008613699,-0.030591952,0.0021284495,0.04777495,-0.040337864,-0.014896371,0.015595679,-0.014063861,0.03387759,0.025707895,-0.006626776,0.01045632,0.049506567,-0.0087025,-0.027594917,-0.010722723,0.027950121,-0.012887248,-0.002654318,0.0049978322,0.009313007,-0.04959537,-0.027039912,-0.024620082,-0.044822317,0.028238725,-0.06846559,-0.04151448,-0.00052899047,-0.02002463,0.02692891,0.015473578,0.03845084,-0.0435791,-0.01908112,-0.0067211273,0.011138978,-0.00043498626,-0.014607768,0.015573479,-0.0070041805,0.01990253,0.028949132,0.004767505,0.009890214,-0.008313996,-0.021900551,0.0056249895,-0.048352156,0.03045875,0.0067211273,-0.013275753,-0.035054203,-0.031857368,0.00052413414,-0.023221467,0.023110466,-0.031701963,0.031035956,0.014185963,0.002780582,-0.035298407,-0.043357097,0.075747274,-0.008819051,-0.006626776,0.017882306,0.0051948596,-0.024953086,0.008091993,-0.06291553,0.0060995203,0.009634911,0.007881091,-0.024953086,0.006843229,-0.030059146,0.0782781,0.0060717696,-0.013542156,-0.035831213,0.03667482,0.04613213,0.0076868385,-0.007309434,-0.00045441146,-0.060251493,0.032745376,-0.0010142742,-0.02259986,-0.02515289,-0.00038711695,-0.004195848,0.03192397,-0.016006384,0.028949132,-0.0024115026,-0.043734502,-0.032634374,-0.04182528,0.03392199,0.034410395,0.0024961412,0.0022602635,-0.011399831,0.047641747,-0.015939783,-0.012820647,0.027950121,-0.046576135,-0.0002731672,0.003307838,0.0130981505,-0.028549528,-0.0004655116,-0.034965403,-0.015895383,-0.041336875,-0.052215,-0.020379834,0.019724926,0.0074703856,0.03651942,0.055500638,0.042158283,0.035165206,-0.00080684054,0.008996653,0.048130155,-0.00016901678,-0.020479735,0.012765147,0.06775518,0.020368734,0.007220633,0.009240856,0.011144528,0.018836917,-0.0011918762,-0.018037707,-0.009079904,0.021134643,0.008508247,-0.019325322,-0.010528471,-0.009091005,-0.04870736,-0.018936818,-0.07241723,0.010151067,-0.0031829616,-0.026196301,-0.041536678,0.01041747,0.096171506,0.05319181,0.018803617,-0.010739373,-0.036919024,0.043334898,-0.01393066,0.03141336,-0.009174256,0.011072378,-0.02348787,-0.050350178,-0.007475936,0.032589976,-0.016805593,0.044422712,-0.02351007,0.005464038,0.011988138,0.054168623,0.017194098,0.008469397,-0.04422291,-0.093862675,-0.00240179,-0.013653157,-0.02963734,-0.025441492,-0.010817074,-0.0043901005,0.017849006,-0.017593702,0.04428951,-0.020701738,0.0035131904,0.027506117,0.002691781,0.030813955,-0.017260699,0.005225385,-0.018981218,-0.040426664,-0.00955721,0.00096640486,-0.00784224,-0.031679764,-0.011477532,-0.0063714734,0.03134676,-0.02868273,0.020679537,-0.014585568,0.032834176,0.013864059,-0.007109632,-0.03050315,0.012865048,0.0147520695,0.011422032,-0.0350098,0.032612175,-0.036275215,-0.025974298,0.014119362,0.05665505,-0.0052475855,-0.009684862,0.02080164,-0.034543596,0.026817909,0.055456236,0.02344347,0.01476317,0.0021145742,-0.01221014,-0.0078921905,-0.056122243,0.03565361,-0.011066827,-0.00565829,0.00780339,0.019058919,-0.0056888154,0.04539952,0.0012903898,-0.04626533,0.022522159,0.0002599858,0.075747274,-0.014962972,-0.0074592857,-0.009473959,0.012665246,0.0031940618,-0.009718162,0.018048808,0.00477583,-0.021378845,0.027661517,0.037118826,-0.011089028,0.026329502,-0.013242452,-0.0032273622,0.019303123,0.018503912,0.000093917486,0.0031191357,0.0071484824,0.017027596,-0.019525124,0.03814004,0.02351007,-0.01481867,0.0034216144,0.026640305,-0.0016955445,0.017194098,-0.0031940618,0.053502616,0.03838424,0.030547552,-0.01993583,0.004165323,-0.00304421,-0.012920548,-0.002052136,-0.007548087,-0.03931665,-0.0017926706,-0.017516002,-0.007647988,0.024131678,-0.014740969,-0.0070319306,-0.023687672,0.014851971,-0.021911653,0.0066489764,-0.037673835,-0.005214285,0.017271798,-0.02959294,0.04424511,0.018803617,0.023843074,0.0062937723,-0.022388957,-0.0138529595,0.016394889,-0.018126508,0.0046537286,0.047242142,-0.009296357,-0.03742963,0.018737016,-0.015462478,0.039671857,0.03034775,0.0173828,-0.037007824,0.017160797,0.016228387,0.0073427344,0.027128711,-0.0099956645,-0.007992092,-0.0045899027,-0.008308445,0.0061328206,-0.014507866,-0.011377631,0.024930887,-0.0041403477,-0.010805974,0.009140955,0.0072872336,-0.010195468,-0.045443922,-0.020746138,0.0121990405,-0.008147494,-0.04697574,-0.012509843,0.006771078,0.008613699,-0.004376225,-0.022799661,-0.007886641,0.0076313377,-0.049861774,0.018836917,0.017127497,-0.007992092,0.03649722,-0.051770996,0.008319546,-0.03665262,-0.044800114,-0.020402035,-0.017593702,-0.014863071,0.010867025,-0.0061272704,-0.012809548,-0.0057887165,0.022244656,0.008491597,-0.01649479,-0.023643272,0.052747805,-0.000063175336,-0.0139972605,0.022055954,-0.02170075,0.022710862,-0.01818201,-0.035254005,-0.0047314293,-0.024198279,0.012532044,0.030103546,0.019058919,0.04009366,-0.013386754,-0.038983647,0.032745376,-0.015451377,0.0068931794,-0.0032717625,0.0028999082,-0.015862083,0.024775485,0.015451377,0.039449852,0.02183395,-0.03043655,-0.014008361,0.02175625,0.011566333,0.013764158,-0.0021575873,0.05328061,-0.010595072,-0.0056111147,-0.027128711,-0.035076402,-0.00697088,0.012476543,0.015473578,0.06287112,-0.008391696,-0.02089044,-0.008502698,0.0149962725,0.022710862,0.03751843,0.07055241,0.006643426,-0.004523302,0.004784155,-0.021567548,0.02442028,0.0011800823,-0.0120769385,0.015096174,0.004889606,-0.019891428,0.02430928,-0.02173405,-0.021212343,0.037474032,-0.032678775,-0.028838132,0.013131451,0.017516002,0.031635363,-0.014430166,0.0061161704,0.005464038,-0.04093727,0.018881317,-0.0019036719,0.024287079,0.05754306,-0.022888463,-0.021301145,-0.006360373,-0.0173828,0.053547017,-0.027350714,-0.032101568,-0.018015508,-0.033699986,0.005555614,-0.043357097,-0.00696533,-0.032634374,-0.037052225,0.010756023,-0.008058692,-0.005328061,-0.0174383,0.019769328,-0.022566559,-0.04861856,-0.015329276,-0.0059496686,-0.041225873,0.04440051,0.023021664,-0.01990253,-0.047419745,-0.005755416,0.016783392,0.010639472,-0.0019355847,-0.0174383,0.03916125,0.014596668,-0.024176078,-0.025707895,0.0049145813,0.038539644,0.011100127,-0.030813955,-0.019991329,-0.030081347,0.051637795,-0.007564737,0.05310301,-0.0011447007,0.0005550064,0.047552947,0.017971106,0.041492276,-0.023843074,0.02435368,-0.005910818,0.029082334,0.016239487,-0.004989507,0.014585568,-0.0064824745,0.004165323,-0.003391089,0.05052778,-0.0037740434,-0.0054612625,-0.017638102,-0.033344783,0.02273306,0.009168705,-0.016006384,0.0014194289,0.0350098,-0.018082108,0.041381277,0.009313007,0.007570287,-0.02868273,-0.009701512,-0.004795255,0.0021825626,0.044111907,0.004459476,0.021667449,-0.0017357825,-0.03398859,0.021978253,-0.016872194,-0.05314741,-0.014474566,0.018548314,-0.013686458,0.0056222146,0.058653075,-0.023399068,0.026307302,0.011177829,-0.024531282,-0.044977717,0.028727131,-0.004587128,0.018781416,0.018703716,-0.019813728,0.032567773,0.016128486,-0.045443922,-0.0008193282,0.02090154,0.01900342,0.0077256886,0.024065077,0.035276204,-0.017482702,0.013719758,-0.03851744,0.0062382715,-0.020413134,-0.005316961,0.048130155,-0.0042208233,0.012110239,0.02263316,0.034965403,0.009929064,-0.0036158666,-0.0011523319,0.0043706754,0.0015401427,0.009296357,-0.0059496686,-0.0052697854,-0.022144755,-0.005408537,-0.00784224,-0.016128486,0.014230364,-0.0035076402,0.03929445,-0.025019687,-0.021478746,-0.02430928,0.002086824,-0.004603778,-0.020213332,0.020635137,-0.04275769,0.007392685,0.01040082,0.018004406,0.028172124,-0.010012315,-0.0695756,0.018981218,-0.0087080505,0.010572871,-0.021134643,-0.007992092,-0.015939783,-0.038983647,-0.0031829616,-0.017915606,-0.023687672,0.003210712,-0.026329502,0.024975287,0.0047480795,-0.043290496,-0.01657249,0.03911685,-0.031058157,-0.024398081,-0.031879567,-0.015462478,0.023887474,-0.03816224,0.029370937,-0.022522159,-0.029104535,-0.010295369,0.0105451215,-0.046798136,-0.0065657254,0.0028444077,0.031058157,-0.014896371,-0.0114442315,-0.0064991247,0.028549528,-0.02692891,0.010556221,0.022155855,-0.017971106,0.011194479,-0.04508872,-0.018104307,0.028061122,0.01388626,-0.009884664,-0.015784381,0.030747354,0.012332242,-0.022910664,-0.016949894,0.03378879,0.0003833013,0.030591952,0.01564008,-0.024287079,-0.0048923814,-0.0019716602,0.017105296,-0.017904505,0.012543144,0.0017371699,0.00960716,0.008547098,-0.0035409406,-0.015451377,0.0086914,0.069042794,-0.0023060516,-0.022011554,0.009951265,0.02870493,0.00782559,0.014663269,0.0021423246,-0.017760204,-0.012232341,-0.0036075416,0.009396258,-0.036630422,-0.006343723,-0.064069934,0.027705919,-0.0043179495,-0.02003573,0.02519729,-0.005916368,0.0070763314,0.0031274608,0.0077867396,0.017793505,0.045643725,-0.04100387,0.026418304,0.01305375,0.015451377,0.03749623,0.011999238,-0.00780339,0.022355657,-0.023621071,-0.0061994214,0.013486655,0.020668438,0.007653538,0.015284875,0.014030561,0.050794184,0.007570287,-0.021256745,0.051637795,0.018870218,0.029814942,-0.016061885,0.009862463,-0.01218794,-0.011599633,0.021190144,0.022233555,0.00049430254,-0.018026607,-0.027306315,0.02684011,0.014252564,-0.017638102,0.010289818,-0.009207556,0.0109946765,-0.0077256886,0.008325095,0.0053447112,-0.0008998041,0.011510832,0.0086581,-0.014308064,-0.0042985245,0.025552494,-0.018670416,0.03372219,0.008652549,-0.017627003,0.005480688,0.010478521,0.024708884,0.026285103,0.011921537,0.013297953,0.0029026833,-0.0031579863,0.0066600763,-0.029326538,0.063137524,-0.021911653,0.0037768185,0.004001596,-0.019092219,-0.032323573,-0.015928684,0.026751308,0.012476543,-0.0045538275,0.0097903125,0.03143556,0.00039891084,0.030081347,-0.00303311,-0.007997642,0.048174553,0.0005223997,-0.028083323,0.02430928,-0.012509843,-0.0059885187,-0.025974298,0.01829301,0.029970344,0.028438527,0.04102607,-0.045554925,0.007070781,-0.018004406,-0.006365923,0.0260631,-0.004598228,0.013986161,-0.012476543,-0.02690671,-0.02781692,0.008580399,-0.06331513,0.04697574,-0.006704477,0.021911653,-0.03219037,-0.0031163609,-0.0011370693,-0.011677334,-0.0065823756,-0.00873025,0.028238725,-0.02261096,0.0148741705,0.012387742,-0.017149698,0.010606172,0.0027958446,0.012565345,0.0013223027,0.01391956,-0.010228768,0.024930887,0.00037081365,-0.03838424,0.037074424,-0.034343794,0.017449401,0.024864286,0.024597883,0.006870979,-0.00782559,-0.0033466886,-0.018581614,-0.008042042,-0.028616128,-0.021001441,-0.035032004,0.043956507,0.022311257,0.005855317,-0.012964949,0.01914772,-0.016405988,0.049950574,0.011533032,0.011799436,0.012143539,-0.0044178506,-0.004795255,0.007364935,-0.01990253,-0.0037490681,-0.0052864356,0.0435791,-0.0037213177,0.02259986,0.0015609554,0.008846802,-0.02258876,-0.0014582792,0.023177067,-0.022344558,-0.0038017938,0.0085859485,0.004251349,0.00016893007,0.0006628857,-0.022932863,0.0020313233,0.028371926,0.048174553,-0.0260187,-0.0013875159,-0.011610733,0.008608149,0.008252945,0.014130462,-0.0081974445,-0.0128539475,0.013209152,-0.036341816,0.018725915,-0.027483916,-0.041936282,-0.007154032,0.02430928,-0.04515532,0.0040404466,0.019691626,-0.00055327197,-0.0027514442,0.013864059,0.001169676,0.005047783,0.007620238,-0.022366757,-0.011943737,-0.0063104224,0.045133118,-0.023865275,0.0007492586,0.043334898,0.082451746,0.017749105,-0.0040404466,0.00047140854,0.02442028,0.043956507,0.0047175544,0.013597656,0.012387742,0.0052836607,0.01213244,-0.0038545192,-0.025707895,0.0010496558,-0.009640461,-0.011183378,-0.016195087,-0.023621071,0.0044872267,-0.0073760347,0.029881543,0.002312989,-0.031080358,-0.0011752261,0.01650589,0.022266855,0.0046648285,0.007420435,0.00020344452,0.025596894,0.012565345,0.035831213,-0.0032523375,-0.011266629,-0.009840263,0.0032384621,-0.008541549,-0.03212377,-0.015173875,0.024664484,-0.023976276,-0.031146958,0.018803617,0.015307076,-0.001866209,-0.0010052553,0.038539644,0.007980992,-0.027639318,-0.027417315,-0.021711849,0.01478537,-0.016983194,0.008352846,0.00082140946,-0.018725915,-0.036119815,-0.004082072,0.0026446055,0.019092219,0.011138978,0.024020676,-0.013209152,0.012742947,0.025774496,0.016050784,0.007492586,-0.033389185,-0.005994069,0.034343794,-0.015973084,0.017804604,-0.01660579,-0.0035964414,0.008042042,0.009634911,-0.004184748,0.012376642,0.040382262,0.0610063,-0.011033527,0.026396103,0.02266646,-0.010090016,0.01562898,-0.03219037,-0.023709873,0.015995285,-0.013420055,0.018814716,-0.022821862,-0.0014943547,0.05137139,0.037141025,-0.011644034,-0.0007111019,-0.0013361778,-0.022022653,-0.010139966,0.012365542,-0.024797685,-0.008469397,0.011127878,0.006599026,-0.010051166,0.020402035,-0.0069375797,-0.030836154,-0.0018759215,0.004240249,-0.004906256,0.030702952,0.002829145,-0.017338399,-0.002485041,-0.004761955,-0.021278944,0.010156617,0.0108115245,0.004698129,0.0173717,-0.026396103,-0.036275215,0.017194098,-0.021423247,0.002269976,-0.020468635,-0.03216817,-0.00062472903,-0.014296965,-0.018481713,-0.03920565,0.03398859,0.05763186,0.00059142866,-0.004623203,0.0009095167,0.0260187,-0.018925717,0.011150078,0.008241844,-0.028416326,0.023598872,-0.023998477,-0.0014999048,0.010356419,-0.019458523,0.009468409,-0.04238029,-0.009407358,0.011188929,-0.004625978,-0.0053696865,0.008302895,-0.0006216071,0.02783912,0.0014027787,-0.0068654288,-0.044911116,0.011943737,-0.0016664066,0.004867406,0.017005395,-0.0051393593,0.0013188339,-0.0173828,0.019203221,-0.05394662,0.03223477,-0.006704477,-0.010184367,-0.002713981,0.0039488706,-0.023110466,0.019747127,-0.016727893,0.022033753,-0.006854329,0.02515289,-0.022477759,-0.005064433,-0.014130462,0.03807344,-0.013431154,0.00961271,-0.0002138509,0.03920565,0.006526875,-0.021323346,-0.025441492,-0.04768615,-0.008202994,-0.0029443088,-0.011150078,-0.032323573,-0.0016192311,0.05026138,0.013109251,0.016738992,0.023154866,-0.016195087,0.015873183,0.0069209295,0.03734083,0.02172295,0.0036658172,-0.01047297,-0.031635363,-0.003130236,0.027328514,-0.016672391,0.026595905,-0.036386218,-0.004087622,-0.026262902,0.0038905947,-0.0018828592,0.01912552,0.027306315,0.013075951,0.019802628,-0.015240476,-0.0133423535,0.0060162693,-0.02177845,0.0076923883,0.014507866,-0.009018853,-0.025086287,-0.006887629,0.001155107,-0.023776473,0.006277122,-0.02697331,-0.009007754,0.01827081,0.02877153,0.004148673,-0.012409942,-0.015906483,0.0016983196,-0.022977265,0.0077867396,-0.005916368,-0.0030081347,-0.005921918,-0.0105451215,-0.010145517,0.012498744,-0.0021908877,-0.007109632,-0.00076244003,0.02513069,0.0434459,-0.012276741,-0.019303123,0.014918571,-0.024020676,0.0009719549,0.021312244,-0.05026138,0.02089044,0.041447878,0.05119379,0.06504675,0.005289211,0.019613925,0.013442255,-0.02945974,0.015329276,-0.006815478,0.011921537,0.001395841,-0.001048962,-0.015839882,-0.019613925,0.00021541186,-0.003041435,-0.0080753425,0.014119362,0.051504593,0.029171135,0.008408346,0.0025724545,0.00393777,0.0435125,0.05567824,0.028172124,-0.03749623,-0.04289089,0.00432905,0.035387207,0.018792516,0.022178056,-0.020668438,0.011172279,0.004065422,-0.03665262,0.016794493,-0.0007860278,0.06491355,0.010173267,0.0021922751,0.023643272,0.020812739,-0.014419066,0.02426488,-0.020168932,0.013198052,-0.012321142,0.008302895,-0.055456236,-0.0059885187,-0.015551278,-0.009712611,0.016639091,-0.015529078,-0.051770996,0.037030026,0.03234577,0.022222456,-0.012931649,-0.0022463882,0.012820647]},{"id":"interface-APIEmbedFooter","type":"interface","source":"main","text":"Interface: APIEmbedFooter\nProperties: icon_url: string, proxy_icon_url: string, text: string","meta":{"url":"/docs/typedefs/APIEmbedFooter"},"embedding":[-0.019553674,-0.016019223,0.0059487545,0.010287974,0.017607007,-0.030102655,0.0599008,-0.015747342,0.039324854,0.015442836,-0.0038498337,-0.02575256,0.005538214,-0.062858865,0.026296321,-0.024077773,-0.027231593,-0.0003847115,-0.003020597,0.034213495,0.023773268,0.008439183,-0.0041924035,0.048938565,0.023381758,0.039585862,-0.0027011367,-0.012158514,0.024752038,0.012919781,0.04223942,-0.037563067,0.06477291,0.010233598,0.0018963694,-0.010298849,0.034431,0.026644329,0.014648943,-0.027318595,0.008667563,-0.006155384,0.011440748,0.0368018,-0.040129624,0.025143547,0.010842611,0.048634056,0.04323994,0.04828605,-0.0015374866,-0.006041194,-0.01538846,0.012473896,-0.05485469,0.025491554,-0.04885156,0.01842265,-0.035127014,0.0011514156,0.034148242,0.021587344,-0.021511218,-0.008673001,-0.02483904,0.0206847,-0.03347398,0.023033751,-0.028210364,-0.037410814,0.07686617,-0.0023993491,-0.014398813,0.011973635,-0.024208276,0.0035262955,0.0001721346,-0.0050352346,-0.003047785,-0.06303287,0.0047334465,0.003915085,-0.028732374,-0.05381067,0.014257435,0.010010655,-0.037606567,0.01566034,-0.0642944,-0.0131046595,-0.027818855,-0.043805454,-0.062684864,-0.04276143,-0.029058632,0.008634938,-0.006280449,-0.0131046595,-0.021000082,0.0070689037,0.07556114,-0.04911257,-0.08025925,-0.006867712,0.008575124,-0.012582649,0.0059215664,-0.03395249,-0.017791888,-0.0054321806,-0.057682253,-0.0052908026,-0.005413149,0.031081425,0.024447532,-0.021543844,0.013681048,0.003020597,0.011680004,-0.051548623,-0.016987119,-0.04332694,0.027383845,0.02988515,-0.0252523,0.00963546,-0.053288657,0.0034501688,-0.0829128,-0.068209484,0.00053900393,-0.0021179523,-0.03714981,0.008167302,0.0062206355,0.016291104,-0.0010079985,0.036127534,-0.05150512,0.017226374,-0.010396726,-0.020695575,0.013126411,-0.023207754,-0.040173125,0.0184444,-0.00895032,0.0006294043,-0.015769092,0.022294234,0.023381758,0.022576991,-0.040368877,0.0013342556,-0.035235766,-0.029624144,0.017433004,-0.033691484,0.032429956,-0.033669733,-0.025513304,-0.026861833,-0.01239777,0.031429432,-0.040129624,0.030450663,0.026339823,-0.020989206,-0.05020009,0.0109513635,0.0076398537,-0.027470848,-0.027818855,-0.014594567,0.008923132,0.020989206,0.026144069,-0.0017509131,-0.0019480267,0.022642242,0.029667646,0.030102655,0.026231071,-0.042522173,-0.011462499,0.009559333,0.0010861643,0.013180787,0.033778485,0.020673824,-0.015334084,0.0082434295,-0.010075906,-0.006807898,-0.0028737811,0.02851487,0.008830692,-0.018585779,-0.0149752,-0.02710109,0.0016340043,0.03034191,0.03449625,0.02093483,-0.007922609,-0.0066828327,-0.025970064,-0.030189656,-0.0017250844,0.049069066,0.04689402,-0.033669733,-0.0048530744,-0.03179919,-0.026644329,-0.019423172,0.04004262,0.016432483,-0.004004806,0.011310246,0.0034501688,0.05006959,0.068644494,-0.05598572,0.039672863,0.027840605,-0.039281353,0.036649548,-0.057595253,0.026405074,-0.017161123,0.04911257,-0.0101357205,-0.006867712,-0.0028737811,-0.00931464,-0.019825555,-0.021891851,0.017226374,-0.0392161,-0.0207717,-0.012898031,-0.033343475,-0.0017617883,-0.027492598,-0.0029091258,0.013050284,0.0010052797,0.0035833905,0.033691484,0.044436216,-0.003689424,0.011440748,-0.009330953,0.03767182,-0.015508087,-0.034518,0.019553674,0.026535576,-0.019390546,0.029210886,-0.018955538,-0.006497954,0.014616318,0.07155906,-0.026274571,0.00085574517,0.041282397,-0.024882542,-0.029297886,0.063206874,-0.017269876,0.017520007,0.035562024,-0.01561684,0.01769401,-0.024099523,0.009434268,-0.06546892,0.00321907,0.0036839864,-0.047720537,-0.02847137,0.03040716,-0.043087687,-0.027862355,-0.017596133,0.027296843,0.052636143,0.009504957,0.02253349,0.020304067,0.07590915,-0.027449097,-0.0023775985,0.006394639,0.033299975,-0.015442836,0.03860709,-0.019205667,0.01771576,-0.032321204,-0.026144069,-0.04228292,-0.0027976546,0.013876801,0.045588993,0.04841655,0.012136764,-0.046198003,-0.005214676,-0.030124405,-0.045371488,-0.00700909,-0.006737209,0.021228462,0.06246736,-0.0030940047,-0.027253343,-0.024317028,0.0040510255,0.0004876864,-0.011538626,-0.036606047,0.0064218272,-0.043370444,0.007618103,0.059291787,0.0069438387,0.031581685,0.032930218,-0.009613709,0.03821558,0.0064218272,0.023425259,0.009695273,-0.03860709,-0.0032707273,-0.00096585695,0.053636666,-0.0068894625,-0.036823552,0.016704364,-0.010722984,0.01960805,-0.03858534,-0.043979455,-0.0015714717,-0.011854008,-0.00963546,-0.031864442,0.022185482,-0.01678049,-0.027492598,-0.018477026,-0.038889844,0.012550022,-0.04928657,-0.09291802,0.017171998,-0.03177744,0.021271963,-0.0051766126,-0.01977118,-0.034061242,-0.0367148,-0.016465109,0.022044104,0.034322247,-0.008939444,0.02997215,0.0368888,0.021717846,0.03308247,-0.020293191,0.04419696,0.011038365,-0.023077251,-0.038454834,-0.04545849,0.038911596,-0.009162387,-0.048503555,-0.010614231,0.02842787,-0.026644329,0.0066937082,-0.009265701,-0.01605185,0.03773707,0.0150078265,0.000052634445,-0.015932221,-0.038889844,0.090742975,0.012908906,-0.001189479,-0.0021016395,0.0038933347,0.0019548237,0.0074277865,-0.007792107,0.015366709,0.009184137,-0.041760907,-0.021772223,0.0063293874,-0.0050488287,0.034365747,-0.010603355,0.0137898,-0.04402296,0.042391673,0.025687309,-0.011941009,0.023099001,0.012452146,-0.07773619,0.009983467,0.046111003,0.0004883661,0.025643807,-0.030494163,-0.015627716,0.020902205,-0.02438228,0.015736466,0.0018025704,-0.07921522,-0.0459805,-0.004483316,-0.0031456621,0.05093961,0.04741603,-0.012376019,0.0013696001,0.024556285,-0.023882018,0.005992255,0.043783702,-0.038389586,-0.0053669293,0.00105014,-0.03636679,-0.032799713,-0.023273006,0.015964847,-0.020391067,-0.032386456,-0.005627935,-0.056246724,0.00045132232,-0.0037791447,0.086262375,0.03641029,0.01333304,0.012919781,0.011941009,0.017476505,-0.023838518,0.054463185,0.010271661,-0.0051195174,0.04367495,0.015953971,-0.02436053,-0.017259,0.05650773,0.022446489,-0.008395683,0.00025624776,0.010978552,0.00666652,0.0020010434,-0.028993381,-0.044414464,0.013626671,-0.052766647,-0.030646417,0.0036377667,-0.0014450471,-0.011386372,-0.030494163,-0.04367495,-0.0059596295,0.093005024,0.031124927,0.010309724,0.0049373573,-0.025078295,0.020206189,0.007563727,0.010103094,-0.008624063,-0.03819383,-0.024164775,-0.032799713,-0.025382802,-0.006155384,-0.002846593,0.031342432,-0.028710624,-0.03234295,0.008934007,0.06764397,-0.022207232,-0.029776398,-0.024534533,-0.08517485,-0.010831735,0.028841127,-0.024991294,-0.0029036882,0.0003395113,-0.0097714,0.062380355,-0.04876456,0.0504611,-0.025643807,-0.031364184,-0.00264812,0.010054156,0.034256995,-0.0028003734,0.020336693,0.0035235765,-0.073386095,-0.057290744,0.007879109,0.000559395,-0.003988493,-0.026426824,-0.021130584,-0.010065031,-0.0079824235,0.010217285,-0.0299069,-0.013855051,0.025839562,-0.047155026,0.011011177,0.021761348,-0.006639332,0.0058726277,-0.05433268,0.016443357,-0.026622579,0.01906429,0.0013505684,0.017443879,-0.009075385,-0.007862796,0.04454497,-0.011538626,0.012049762,0.014344437,0.035605524,0.0020350285,-0.016704364,0.0052636145,-0.0052228323,-0.024643285,-0.00022311228,0.037476066,-0.023120753,0.059509292,0.007552852,0.017052371,0.028667124,-0.006133633,-0.0052201133,0.010119407,-0.0062913243,0.06538192,-0.012745777,0.036693048,-0.011157992,-0.0137898,0.015094828,0.013539669,-0.017737512,-0.0004118996,-0.0008938085,0.025078295,0.0039776177,-0.0030287534,0.029102134,0.018640155,0.018694531,0.03082042,0.013452668,0.022750994,-0.0023694423,0.0023667233,-0.011527751,-0.012756652,0.058726277,-0.009613709,0.019966934,0.022598742,0.014833823,-0.014300936,-0.0038389585,-0.005954192,0.03036366,0.03221245,0.006443578,-0.021706972,-0.017574383,0.034278747,-0.019205667,0.006394639,-0.008803504,-0.029624144,-0.021772223,-0.003800895,-0.011179743,0.026361573,-0.046502512,-0.02344701,-0.023360008,0.0025448054,-0.007193969,0.00010747792,-0.040890887,-0.0066937082,-0.0074712876,-0.017422128,0.009613709,-0.004328344,0.04458847,0.027840605,-0.033756733,-0.017302502,0.032429956,0.014203059,0.0012594883,0.030646417,-0.020565072,-0.0034556063,0.017259,-0.001716928,0.014822947,0.0029281573,0.010451103,0.017759262,-0.017443879,0.021348089,-0.0112232445,0.040651634,0.008140114,-0.0017563507,0.004529536,0.025382802,0.027514348,0.0050760168,-0.00534246,0.04506698,-0.029254386,0.008129239,-0.019575426,0.01910779,0.0035127015,-0.023751516,-0.020195315,0.0077268556,-0.0031266306,-0.0065033915,-0.030994425,0.0074386615,-0.028232114,0.01748738,0.010059594,0.022424737,0.013322164,-0.029319638,0.023186004,-0.046633013,-0.0072592204,0.043957707,-0.06342438,-0.0011949167,-0.023055501,-0.053158157,-0.008498997,-0.0598573,0.01842265,0.01746563,0.0058019385,0.0104076015,-0.0061281957,0.04867756,0.033408727,-0.02442578,0.008656688,0.04872106,-0.007552852,-0.021511218,0.022337737,-0.015605965,0.01746563,-0.0027636695,-0.020782577,-0.0019684178,-0.02714459,0.0063728886,-0.015518962,-0.009374454,0.0015007827,0.00758004,-0.046241507,0.011397248,-0.0074984757,-0.0020391068,0.012789278,0.017791888,0.006394639,-0.013072034,0.017084997,-0.020238815,0.01422481,-0.01216939,-0.02807986,0.05006959,-0.0031538187,0.020130062,-0.008819817,0.034713756,0.008221678,-0.009445143,-0.005285365,-0.009243951,-0.012441271,0.009102573,-0.010304286,0.031603437,0.008852443,-0.013942054,-0.0058019385,0.006998215,-0.014387938,0.021043582,0.023403509,0.011277621,-0.014931699,0.0042359047,-0.0035725152,0.0031646937,0.019705929,-0.022903249,-0.00235177,0.0045213797,-0.0252958,0.032125447,-0.0005529378,0.01495345,0.02897163,-0.030233158,-0.015257956,0.001362803,0.005483838,0.031103177,0.0048857,0.014007305,-0.034626752,-0.009961717,-0.020336693,0.009167824,0.01680224,0.030450663,0.010097657,0.00021478592,-0.00006771534,-0.01239777,0.04406646,-0.0437402,-0.011941009,-0.019901684,-0.030689918,0.0019317139,0.021097958,0.00018844746,-0.0120280115,0.01796589,0.026339823,-0.032277703,0.003292478,0.0070580286,0.021456841,-0.03910735,-0.027296843,-0.009918216,-0.0010399445,-0.040281877,0.010875236,0.053158157,0.00012540507,-0.053158157,-0.03495301,0.038998596,0.030450663,-0.020619448,0.0023340976,0.009113448,-0.004083651,-0.009396205,0.0026956992,-0.0218701,0.03540977,-0.003363167,-0.014909949,0.04750303,-0.024730287,0.038911596,0.021978853,0.07499563,0.0017577101,0.0008278774,0.021413341,0.016965369,0.018999038,-0.009923654,-0.015649466,-0.002732403,-0.019738555,0.041565154,-0.019357922,-0.008324994,0.012104138,-0.0019548237,0.006699146,0.06490341,0.021913601,-0.008955757,-0.0065577677,-0.047068022,0.015834345,0.013594045,-0.006878587,-0.01883591,0.027971108,-0.020358443,0.016997995,0.018194271,0.0025448054,-0.03906385,0.013006783,0.0024822727,-0.025013044,0.0018895724,0.032843214,-0.0093200775,0.0037220498,-0.013931178,-0.0030097216,-0.030037403,-0.037062805,-0.017781012,0.015192705,-0.019510174,-0.0029607832,0.025904814,-0.014453189,-0.02718809,-0.001056937,-0.017204624,0.00881438,0.02799286,0.012234641,0.03499651,0.039716363,0.015692966,-0.0076126656,-0.008276055,-0.02164172,0.06416389,-0.004641007,0.03954236,-0.010271661,0.01915129,0.03825908,-0.014855573,0.000057562287,-0.01887941,0.018226895,0.030472413,-0.006405514,0.058117263,-0.011201493,0.027014088,0.016378107,-0.0006239667,0.017150247,0.03817208,0.013159036,0.039346606,-0.024882542,0.013952929,0.004070057,0.002207673,-0.018846786,-0.0043881577,-0.012669651,-0.011930134,0.009445143,-0.007264658,0.019640677,-0.018477026,-0.02136984,0.007025403,0.02089133,-0.018281272,-0.0070417156,0.051157113,-0.0045675994,0.01960805,0.01794414,0.007308159,0.024491033,0.005100486,-0.023425259,-0.003433856,-0.023316506,-0.014137807,-0.011658253,-0.013952929,-0.004548568,0.0046355696,0.00004919345,-0.015344959,-0.013963804,0.0075963526,-0.014137807,0.010440227,-0.004586631,-0.08708889,-0.014311811,0.0077757942,-0.010918737,-0.0031375056,-0.02673133,0.00023976498,0.0075147883,-0.041043144,0.030211408,-0.022598742,-0.053071152,0.02136984,-0.01929267,-0.06999302,-0.0021451404,0.0038117704,0.019879932,-0.025208797,-0.013865926,0.020923955,0.07303809,-0.0013328962,0.03493126,0.020108312,-0.059465792,-0.0018542279,-0.057769258,-0.025339302,0.017248126,0.03321297,0.011168868,0.013550545,0.04426221,0.020619448,-0.024034273,0.031472933,0.022381237,0.0018691813,-0.0038824594,0.034061242,-0.011571252,-0.00062022835,0.026818333,-0.017128497,-0.0075419764,0.05089611,-0.0106740445,0.007253783,-0.013463543,-0.0041842475,-0.015464586,0.01262615,0.024295278,-0.027927607,-0.002920001,-0.014148682,0.040716887,0.02440403,0.030581165,0.016497733,-0.0112232445,0.0038443962,0.012049762,0.0029934088,-0.020369317,-0.02396902,-0.008210803,-0.032081947,0.01079911,0.0031728502,0.0063565755,-0.014235685,-0.021195836,-0.009124324,0.057986762,0.034365747,0.00815099,-0.061031826,0.023207754,-0.018901162,0.014692444,0.021978853,0.0069873394,0.02710109,0.026753081,-0.0095973965,-0.020695575,-0.0017114903,-0.009401642,0.020630324,0.03678005,-0.0076235407,0.027253343,0.012463021,-0.0013315368,0.052984152,-0.0040102433,0.006068382,-0.024273528,0.02479554,0.008417433,0.018324774,0.0136484215,-0.01719375,0.0002292296,0.0054947133,0.011054678,0.016704364,-0.005258177,-0.032364704,0.00073203933,0.013082909,0.00038811,-0.009472331,-0.010320599,-0.012789278,-0.01262615,0.01262615,-0.0041924035,-0.013039408,0.023816768,0.014279186,0.037802324,-0.014420563,-0.040542882,0.03036366,0.00895032,-0.0059976927,-0.0029526267,0.019890808,0.023207754,0.01931442,0.014605443,0.004083651,0.037389062,-0.020075686,0.027405595,-0.0029798148,0.02164172,-0.029558893,-0.0149752,-0.05394117,0.005152143,0.02897163,-0.002022794,-0.0141921835,0.010576167,-0.013496169,-0.021435091,-0.0036567983,0.037845824,-0.0055735586,0.01912954,0.013517919,-0.019988684,0.019488424,0.004056463,0.008613187,-0.020662948,-0.004499629,0.024012523,-0.015149204,0.0048884186,0.0033359788,0.00036601967,-0.042435173,0.02159822,0.018759783,-0.026579078,0.059161287,-0.010706671,0.007319034,-0.03812858,-0.033734985,-0.04554549,0.036671296,0.022196358,0.018335648,-0.04698102,-0.036975805,0.01426831,0.005361492,-0.020010436,-0.0007558289,0.034605004,-0.002036388,0.005785626,0.021217586,-0.021728722,0.026274571,0.0016571141,0.036627796,-0.02716634,-0.016987119,-0.0063565755,-0.015605965,0.025448054,-0.05615972,0.014681569,-0.021826599,0.0026386043,-0.0027527942,0.016040973,0.0076452913,0.013822425,0.02349051,-0.011130804,-0.007933485,-0.009662648,0.0039259605,-0.02486079,0.03812858,-0.02041282,0.010837173,0.00066101045,0.007868233,0.014996951,0.015779968,0.013626671,-0.0033359788,0.02390377,-0.01862928,-0.010054156,0.01765051,-0.03310422,0.0017726636,0.004910169,0.013604921,0.005736687,0.009483206,-0.007933485,0.014627193,0.0029444704,0.017574383,0.021989727,-0.025861312,-0.0034692003,0.007933485,-0.0018188833,-0.023425259,0.0048258863,-0.021924477,-0.0012227844,0.0026182132,0.027753603,-0.02945014,-0.007781232,0.022859747,-0.009271139,0.012560898,0.002365364,-0.019575426,-0.02399077,-0.00771598,-0.052244637,-0.022131106,-0.041108392,-0.029798148,0.0012390972,0.0062858867,-0.029210886,0.0035915468,-0.015790842,-0.020293191,-0.006508829,0.016269354,-0.020608572,0.0014001867,0.05694274,-0.011043803,-0.010902424,0.0019575425,0.051983632,-0.023229506,0.0074658496,0.048155546,0.07016703,0.01356142,0.011353747,0.0022593304,0.03858534,0.021435091,0.013289539,-0.009733337,0.026361573,-0.017824512,0.0064109517,-0.013637546,-0.017748386,-0.0019072446,-0.012430395,-0.004872106,-0.0047524786,-0.013278664,0.022642242,-0.01995606,0.027362095,-0.0028574683,-0.0024319747,-0.00006376457,0.006133633,-0.019651553,-0.025034795,0.0070145275,0.0009515832,0.021413341,0.0070689037,0.025904814,-0.0122998925,-0.01586697,0.012985032,-0.0068296487,0.000292272,-0.023816768,-0.031994946,-0.0004897255,-0.013365665,-0.026818333,-0.0072592204,-0.006508829,-0.020401943,0.004700821,-0.006052069,0.00815099,-0.018303024,-0.011593002,-0.009205888,0.021532968,0.0039613047,-0.01401818,0.00815099,-0.011875758,-0.010326037,0.0018351962,-0.029624144,0.01634548,0.039585862,0.022968499,0.017607007,-0.00979315,0.02942839,0.03499651,0.013876801,-0.0014273748,-0.030602915,0.0077540437,-0.025491554,0.012789278,-0.0050325156,-0.014420563,-0.011603877,0.031385932,-0.0027745448,0.0055599646,0.01748738,0.072342075,-0.021630846,0.015682092,0.00028054713,-0.035736028,0.01198451,-0.03266921,-0.024273528,0.028645372,-0.0040673385,0.015573339,-0.04872106,-0.016258478,0.020140938,0.0054756817,-0.010179222,0.005141268,-0.011386372,-0.054463185,-0.012376019,0.020380193,-0.020717325,-0.016280228,0.036519043,-0.0007469928,0.010722984,-0.04178266,-0.034343995,-0.02164172,0.0011296652,0.025861312,-0.010336912,0.02399077,0.018248647,-0.01426831,-0.029080382,-0.018292148,-0.012604399,0.01262615,0.02942839,0.033669733,0.024208276,0.008803504,-0.0054784003,0.0030314722,-0.009847526,-0.0122998925,-0.02573081,-0.010369538,-0.0012594883,-0.0040646195,-0.0021492187,-0.008047675,0.038476586,0.009401642,-0.0077649187,0.01495345,0.021902727,0.020423694,-0.03819383,0.0066882703,0.011973635,-0.027666602,-0.0017971328,-0.0026467608,-0.013430917,-0.008455496,-0.014300936,0.017139373,-0.0098692775,-0.00895032,-0.004159778,-0.04732903,-0.005758438,0.020760827,0.03395249,0.018683657,-0.0065523298,-0.01538846,-0.012713151,-0.0074549746,-0.016497733,0.033887237,-0.005323428,0.0017794606,0.0025081015,-0.012811028,-0.013550545,-0.060944825,0.011386372,0.016943619,-0.0112123685,-0.02157647,0.033452228,-0.03495301,0.033734985,-0.016639112,-0.014616318,-0.012778403,0.036562543,-0.04178266,-0.0061010076,-0.011582127,0.026600828,-0.015518962,0.020380193,0.03084217,0.019727679,0.02673133,-0.014714195,-0.011092741,-0.04197841,0.022859747,-0.0025815093,-0.012104138,-0.01104924,-0.017563507,0.020510696,0.017759262,0.0045268172,0.012691401,-0.021195836,0.022381237,0.016443357,-0.014812072,0.02436053,-0.0007048513,-0.0063620135,-0.013311289,-0.0016176915,-0.015073078,-0.034409247,0.016443357,-0.01837915,-0.014050806,-0.039303105,0.03862884,0.059074286,0.022707494,-0.0023979896,-0.015214456,0.00035208577,-0.023403509,-0.0014409688,0.024251778,-0.03588828,-0.0008645813,-0.0039096475,-0.01653036,-0.027775355,0.006079257,-0.005943317,-0.0036622358,-0.014844698,-0.005171175,-0.016008347,0.012778403,0.015225331,0.009689836,-0.018553153,-0.0028520308,0.023555763,-0.009287452,0.014116057,0.0066284565,0.0056333723,-0.0050678602,-0.012528272,-0.024251778,0.034844257,-0.003202757,0.0005097767,-0.01790064,0.0032054759,0.008346744,-0.0058291266,-0.01630198,-0.0021750473,-0.0075147883,0.03860709,0.025687309,0.0028547496,0.022794496,0.0391726,0.06151034,0.022207232,-0.017770136,-0.0048068543,0.004673633,-0.0160736,-0.0014695163,-0.011875758,0.02022794,-0.002066295,-0.00379002,-0.019814681,-0.0045540053,-0.013463543,-0.017226374,-0.018085519,0.033974238,0.04867756,-0.0038362397,-0.008961195,-0.0070960918,-0.030711668,0.053593166,0.03234295,0.019814681,-0.015051328,-0.018912036,0.000027804072,0.013278664,-0.022131106,0.017933264,-0.02159822,0.010565292,0.0032652898,-0.012506522,-0.01636723,0.02346876,0.04052113,0.040260125,-0.012223766,-0.0069003375,0.009309202,-0.027840605,-0.029167384,-0.0117778815,-0.011875758,0.027536098,0.0024754757,-0.03179919,0.025774311,-0.022946749,-0.03825908,0.0061771343,0.0010195534,-0.030711668,0.005244583,0.019531924,0.00094682525,-0.03036366,-0.0061010076,0.00881438]},{"id":"interface-APIEmbedMedia","type":"interface","source":"main","text":"Interface: APIEmbedMedia\nProperties: content_hash: string | null, content_type: string | null, description: string | null, duration: number | null, flags: number | null, height: number | null, placeholder: string | null, proxy_url: string | null, url: string, width: number | null","meta":{"url":"/docs/typedefs/APIEmbedMedia"},"embedding":[-0.0347664,-0.024392018,-0.0073864716,0.0038209718,0.007586406,-0.059713792,0.039231606,-0.033833373,0.03965369,-0.010229985,0.024347588,-0.031767383,0.018993784,-0.032633767,-0.016028088,-0.017760854,-0.016250238,0.035144053,0.01372884,0.016028088,0.0029184893,0.0015522698,-0.01733877,0.048961755,-0.0034933013,0.0029379274,-0.012151578,-0.0058147637,0.035010766,0.037743203,0.013095714,-0.02605814,0.06886635,0.011785032,-0.0034460945,-0.0193159,0.014228676,-0.014328645,-0.03823193,-0.019793522,0.015261672,-0.013984312,-0.031567447,0.008563864,-0.027657615,0.02781312,-0.004853967,0.028568428,0.004476313,0.06495652,-0.030923214,0.0026408024,-0.04458541,0.027213316,-0.0046318173,0.0027657615,-0.007025479,-0.006697808,-0.018060757,-0.015439392,0.03472197,-0.017416522,-0.0074975463,-0.006103558,-0.021159742,0.0074808854,-0.019815737,0.039720334,-0.0019021552,0.00754753,0.056425977,0.011851677,-0.010874219,-0.0075586373,0.005975822,0.0012252935,-0.0362548,-0.015783723,0.003859848,-0.026902307,-0.031411942,0.037076756,-0.040053558,-0.027968625,0.007364257,0.04414111,-0.04602938,-0.0041514193,-0.029434811,0.031478588,-0.09703491,0.015828153,-0.05202742,-0.019749092,-0.039120533,-0.054515492,-0.004415222,0.0056203827,-0.032456044,0.062201865,0.049850352,-0.0066478243,-0.088815376,-0.008202871,0.007780787,-0.044207755,-0.028923867,0.010435474,-0.02596928,-0.006892189,-0.023125766,-0.026857877,-0.043052576,0.008730476,0.01417314,-0.039209392,0.0015120052,0.032811485,-0.0020784864,-0.007053247,-0.07019925,-0.027479896,0.06411235,-0.012873565,0.008919303,-0.007364257,0.010130018,0.0027532657,-0.08526099,-0.04758443,-0.018316228,0.010635409,0.003348904,-0.0024561407,0.025147326,0.014950663,0.016494602,0.039853625,-0.0054565477,-0.00649232,0.024414232,-0.019837953,0.040853295,0.033100277,-0.012784705,0.0133067565,-0.012906888,0.026435792,0.012162686,0.0012697234,0.016483495,-0.0009371933,-0.0347664,0.014795158,-0.035899363,-0.04549622,-0.010107803,-0.038787305,-0.01302907,-0.017183265,0.013873238,-0.021070883,-0.0075364225,0.012451481,-0.014772943,0.053093735,0.0366991,-0.013651088,-0.03358901,0.0011760041,-0.013673303,-0.036899034,-0.028901653,-0.020360004,-0.014828481,-0.010702053,0.07601957,-0.06380134,0.029168231,0.017194374,0.03856516,0.038520727,0.002585265,-0.03605487,0.00046824955,0.028146345,-0.0514054,0.029279307,0.03543285,-0.018016327,-0.018982677,0.008069581,0.009163667,0.040586717,0.03832079,-0.011807247,0.0069477265,0.0043735686,0.037832063,-0.0077308035,0.030301195,0.019660233,0.049672633,0.0010614581,-0.02512511,-0.024991821,-0.0019993456,-0.029412597,-0.05975822,0.048384167,0.031434156,-0.008674939,0.008075135,-0.039231606,0.0018480064,0.036588028,0.0022284375,-0.00017112456,-0.02785755,-0.0070754625,-0.05731458,0.058292035,0.043674596,-0.03318914,0.000029959814,-0.008808228,-0.0509611,0.027790906,-0.035455063,-0.0050816704,-0.010535441,0.05562624,-0.0514054,-0.008619402,0.003543285,0.020015672,-0.020248929,-0.00006586386,0.0036626903,-0.012562555,-0.0006726965,-0.029146018,-0.036987897,0.04476313,-0.004409668,0.011540668,0.02596928,-0.027235532,-0.019693555,0.028790578,0.0433858,-0.03916496,0.0077974484,0.002163181,0.06286831,-0.0366991,-0.017061083,0.04722899,-0.0089581795,0.05242729,0.01632799,-0.016205808,-0.03780985,-0.019382546,0.041342027,0.019115966,-0.015861476,0.03212282,-0.0057203504,-0.023214625,0.022970261,-0.01724991,0.02790198,0.02085984,-0.04736228,0.013406724,0.01760535,0.00979124,-0.03987584,0.009824563,-0.042275053,-0.06455665,-0.041275382,0.053760186,-0.016028088,-0.0052094064,0.031545233,0.038209718,0.03665467,0.0073253806,0.0064312285,0.0046984623,0.07179873,-0.052382857,-0.02323684,0.031834025,0.010929757,-0.009458016,0.0600248,0.005684251,0.024902962,-0.05016136,0.03647695,-0.04396339,0.007208752,0.021848405,0.039720334,-0.000295563,0.036210373,-0.018760527,0.014584116,-0.0034099952,-0.058158744,0.0056287134,-0.03701011,0.03736555,0.06548968,-0.005434333,-0.05211628,-0.02745768,0.017527597,-0.004098659,-0.0442744,-0.07899637,0.0038903935,-0.045851663,-0.00004132762,-0.014561901,0.0077030347,-0.011218551,0.022625929,-0.020837625,0.013628873,-0.018460626,0.057581156,-0.03529956,-0.019104859,0.0146063315,-0.013362294,0.020271145,0.04660697,-0.050516803,-0.0032572674,0.025835989,-0.00041965433,0.00027109185,-0.06513424,-0.0087637985,-0.031700738,-0.02794641,-0.019382546,-0.018205153,-0.03678796,0.008352822,0.0049456037,-0.0375877,0.019660233,-0.06069125,-0.09961185,0.00090178824,-0.034255456,0.02865729,0.008247301,0.011740603,-0.024280943,-0.04289707,-0.02574713,0.026902307,0.0060591283,-0.017994111,0.042763785,0.033522364,-0.027368821,0.008597187,-0.029945755,0.00016461627,-0.0049344962,0.004193072,0.00027491004,-0.026080353,0.025680484,-0.0051816376,0.03834301,-0.0035904916,-0.0077530183,-0.042786,-0.0044179987,0.016294667,-0.036121514,0.02485853,0.037787635,0.0150062,-0.061091118,-0.03732112,0.034833044,0.009802348,0.005234398,0.011451808,-0.011312964,-0.002568604,0.010735376,-0.005428779,0.00044846436,0.021715116,-0.013229004,-0.029923541,0.02785755,-0.011640635,0.05491536,0.012884673,0.004820645,0.0004744975,0.04069779,-0.016050303,0.011462916,0.016627891,0.0032045068,-0.043408018,0.033278,-0.0025574963,-0.001716105,0.031523015,-0.045474008,0.04638482,-0.0054565477,-0.02372557,0.019204827,-0.014828481,-0.032411616,-0.041741896,-0.009624628,0.06060239,0.059180632,0.003007349,0.02319241,0.007230967,0.010018944,-0.0054121176,-0.023303485,0.042097334,-0.03616594,0.010496565,-0.00946357,-0.022437101,-0.029945755,-0.027013382,0.014461934,0.036210373,-0.0094802305,-0.042008474,0.026746802,0.0096135205,-0.018827172,0.048695177,0.00048456364,-0.004720677,-0.01949362,0.009291404,0.0087027075,0.003562723,-0.011651742,0.031167578,0.022903616,0.032233894,0.033278,-0.002879613,-0.010285523,0.028190775,0.0069866027,-0.018860495,0.0375877,0.021159742,0.017683102,0.02579156,-0.027590971,-0.047806576,0.015506037,-0.058380894,0.0054204483,-0.007914077,-0.012495911,-0.0028226874,-0.05193856,-0.009208098,-0.021770652,0.10467686,0.05149426,0.0031295314,0.02552498,-0.048606314,-0.018693883,-0.0033294659,-0.0033461272,-0.009263635,-0.029768037,-0.010352167,-0.05091667,-0.017494274,0.01254034,0.012129364,0.06886635,-0.027835336,-0.0075641912,-0.016294667,0.037476625,-0.029590316,0.0041430886,-0.039898053,-0.06593398,-0.025813775,-0.0042236177,-0.002185396,-0.022992475,0.010752037,-0.027324392,0.033766728,-0.01390656,0.04072001,-0.02781312,0.021315247,-0.037387766,0.0009378875,0.04634039,-0.017705318,-0.008341715,0.0033877802,-0.012029396,-0.06628942,0.017594242,-0.012484803,-0.02125971,0.010068927,-0.0015550466,0.011090815,-0.033522364,0.0053510265,-0.008152887,0.0022103877,0.01010225,-0.04445212,-0.017971896,-0.02305912,-0.013073499,0.009569091,-0.031745166,0.03365565,-0.024680812,0.0035321773,0.0020312797,0.0043569077,0.0007358703,-0.05136097,0.040031344,-0.014028742,0.0078752,0.025502766,0.027924195,-0.027590971,-0.00066610146,0.013784378,-0.012429265,-0.01491734,0.033122495,0.025014035,-0.0044346596,0.028612858,0.018216262,-0.009874546,0.019338116,-0.020715443,-0.018782742,0.006236848,-0.0033294659,0.06744459,0.0031045396,0.021137526,-0.01839398,0.016116947,-0.0173832,-0.007803002,-0.004853967,-0.002032668,-0.020260036,0.018582808,0.03812086,0.018205153,0.020060102,0.020182284,0.0013828807,0.043941174,0.006253509,0.01848284,0.015517144,-0.00882489,-0.0005244811,-0.00050747284,0.05593725,0.009857885,-0.008741584,0.017694209,0.0216929,-0.0064589973,-0.00695328,0.028190775,0.03010126,0.034388747,0.022148307,-0.02816856,-0.053093735,-0.0029740268,-0.013117929,-0.008974841,-0.003371119,-0.038009785,-0.019171504,0.008480558,-0.042430557,0.015283887,-0.007253182,-0.00019854614,0.0088970885,-0.0072587356,-0.010113357,0.028568428,-0.05598168,0.0054593245,-0.036210373,-0.053804614,-0.00462071,0.008669385,0.024547523,0.0032211682,-0.022948045,-0.011518452,0.02279254,0.020759873,-0.014706299,0.01377327,-0.03823193,-0.0007275397,0.020404434,0.010546548,0.02160404,0.0013766328,0.020337788,-0.011773924,-0.01051878,0.020593261,-0.033389073,0.008513881,-0.010141126,-0.016216915,0.027391037,-0.008458343,0.010940864,-0.026524654,-0.03225611,0.04607381,-0.0181274,-0.008380591,0.017227696,0.045007493,-0.0036765747,-0.02305912,0.0072587356,-0.0015855922,-0.033011418,-0.043630168,-0.030034615,-0.013473368,-0.007758572,0.004098659,0.017594242,0.010552103,0.033344645,-0.05624826,0.01580594,0.016405743,-0.024081009,0.033700082,-0.03396666,0.014350859,-0.032145035,-0.040342353,0.013917668,-0.03929825,0.011251873,0.020448864,0.024547523,0.01897157,-0.025369475,0.016650107,0.026635727,-0.012495911,-0.005070563,0.07459781,0.0055454075,-0.0002990341,0.02865729,-0.01084645,0.011146353,0.0033211354,-0.031323083,-0.009035932,0.0024214298,0.02565827,0.0030017954,0.012162686,0.012740275,0.019837953,-0.027924195,-0.022381565,-0.019460298,-0.02081541,0.014028742,0.009824563,0.00924142,0.010346614,0.021393,0.02130414,0.035677213,-0.029923541,-0.036632456,0.01280692,-0.007397579,0.0023783883,0.009730149,0.019771308,0.019882383,-0.020293359,-0.010496565,0.006253509,0.00754753,0.021381892,-0.03138973,0.024658596,0.010813128,0.009607967,0.0087637985,0.009491338,0.015961444,0.025280615,0.02816856,0.018227369,0.017283233,-0.016716752,-0.009074808,0.0013565006,0.02790198,-0.017216587,-0.045540653,0.004767884,-0.023903288,0.021592934,-0.0062257405,-0.02601371,0.019682448,-0.00026987697,-0.030523345,0.006109112,-0.0062868316,0.03503298,0.0045707263,-0.004362461,-0.009874546,-0.031323083,-0.0002632819,-0.023836644,0.026613513,0.027257746,-0.012018289,-0.002578323,-0.023392344,-0.027257746,0.03616594,-0.031367514,-0.033300214,-0.026613513,-0.030745493,0.00818621,-0.013606658,-0.0056092753,-0.0027241085,-0.024769671,0.0015717079,0.0069199577,-0.041475315,-0.013129037,-0.0051677534,-0.030612204,-0.053182594,0.0077974484,0.04634039,-0.06420121,0.0022617597,-0.0046734707,-0.021293031,-0.06304603,-0.0020507178,0.07450895,-0.017883036,-0.010241093,-0.017749747,0.008769352,-0.003987584,-0.008552756,-0.026458008,0.027702045,0.035832718,-0.000025252153,-0.033766728,0.008197318,-0.015561574,0.033700082,-0.01724991,0.052738298,0.014906233,0.034655325,0.048561886,0.02952367,0.028212989,0.018160723,0.013151252,0.0042930394,0.0033294659,0.024325373,-0.032456044,-0.00580921,0.041830756,-0.034077737,0.014350859,0.005731458,-0.0038015337,-0.012862457,0.005359357,-0.01518392,-0.020404434,0.034166597,0.0058147637,0.0010100862,0.031212008,0.00032732345,0.03265598,0.0149950925,0.01641685,-0.01628356,0.0014717405,0.0049539343,-0.020348895,0.019338116,0.013817701,-0.00096079666,0.03396666,-0.047184557,0.0025977609,-0.040564504,-0.017716425,-0.023592278,0.020804303,0.017683102,-0.034033306,0.03050113,0.018938247,-0.006703362,-0.009080362,-0.026569083,-0.0013627484,-0.016627891,0.01932701,0.0328337,0.032633767,-0.0049594883,0.021848405,-0.024480877,0.010113357,0.027968625,-0.017883036,0.021170849,0.004773438,0.043674596,0.019138182,-0.017094405,-0.012329298,-0.037920922,0.027080027,0.0079862755,-0.0083139455,0.02776869,-0.009246974,0.024503093,-0.0023256277,-0.010007836,-0.010602086,0.02218163,-0.012606985,0.04267492,-0.009069255,0.017638672,-0.017883036,-0.0018896593,-0.06122441,-0.007186537,-0.022692574,-0.02485853,0.016128056,0.0026477447,0.036143728,-0.008891535,-0.032722626,-0.007519761,0.01839398,0.0069866027,-0.029412597,0.01522835,-0.018382873,0.0068533127,-0.022370458,0.010302184,0.028546214,-0.016361313,-0.0073253806,-0.024192084,-0.02310355,0.026391363,-0.008908195,-0.01962691,-0.045540653,-0.017005546,0.030701064,0.006869974,0.0041653034,0.007614175,0.0133067565,0.014772943,-0.008869319,-0.0438301,-0.03138973,0.020615475,0.00038841454,0.0020743213,-0.020837625,-0.020426648,0.053804614,-0.06948837,0.054959793,-0.014339752,-0.044518765,-0.00095871405,-0.040209062,-0.030256765,-0.01082979,0.015394961,0.0094080325,-0.01848284,0.004470759,0.030478915,0.04682912,0.0035044088,0.03278927,0.03516627,-0.013295649,0.022970261,-0.012862457,0.0031239777,-0.0058203177,0.01102417,0.018860495,0.02794641,0.011918322,0.0018605023,-0.042141765,-0.011274088,0.023747783,0.014928448,0.0019840728,0.011196336,-0.020837625,-0.010702053,0.01695001,0.0014370297,-0.035388418,0.033811156,0.00846945,0.019082643,-0.014239784,0.0153838545,0.0046706935,-0.008641616,0.020304466,0.037743203,0.006420121,0.0020076763,0.007975168,-0.007925184,-0.014361966,0.00946357,-0.013484476,0.008591632,-0.01852727,0.003054556,0.009380263,-0.009824563,-0.028412923,0.00005072125,0.022148307,0.016905578,0.026635727,0.008930411,-0.006142434,0.005212183,0.026102569,-0.008158442,0.031123148,-0.038276363,0.015239458,-0.025813775,0.0017410968,0.013917668,0.007058801,-0.017738638,0.02045997,-0.02534726,0.010268861,0.008885981,0.0052288445,0.003498855,-0.0052427286,0.00008881642,0.02508068,0.011773924,-0.035832718,0.056114968,-0.0129179945,0.013151252,0.010229985,0.006297939,0.004073667,0.0022992475,0.026124785,-0.013373401,0.001252368,-0.023525635,-0.016994439,0.010885326,0.008686046,0.006464551,-0.0006692254,-0.0056509282,-0.009596859,-0.0077530183,-0.010313292,0.009341387,-0.032811485,0.005662036,0.00091081305,-0.017238803,0.008636063,0.022637036,0.014306429,0.013551121,-0.010379937,0.021726223,-0.008280624,-0.0031961761,-0.0035488387,0.001102417,0.01487291,0.0038459636,-0.004376346,0.010363275,0.02839071,-0.030589988,0.031123148,-0.0038987242,0.0029490348,0.013739948,-0.007142107,-0.058869623,-0.006886635,-0.012906888,-0.029434811,-0.018027434,0.02248153,-0.026613513,-0.019138182,0.011740603,0.008924857,0.01020777,0.041875184,0.017283233,-0.028190775,0.0304567,-0.010368829,-0.006931065,-0.012729168,0.052560575,0.015250565,-0.008619402,0.005725904,-0.035366204,-0.012207116,-0.042052906,0.01258477,0.02816856,-0.015161705,0.037609912,-0.011013063,-0.048695177,-0.058558613,-0.013451153,-0.03261155,0.026146999,-0.0031017626,0.01817183,-0.032056175,-0.021559611,0.007997382,-0.004559619,0.008280624,-0.011651742,-0.0012218223,-0.0037626575,0.0029101588,0.026502438,-0.02561384,0.020826519,0.023525635,0.015783723,0.002764373,-0.015572681,0.0123959435,-0.0057092425,0.019638019,-0.05233843,0.0028337948,-0.039009456,0.008391698,0.009124791,-0.002885167,0.012629201,-0.0013821865,-0.007275397,-0.02328127,0.0063701374,0.007358703,-0.008102904,-0.025680484,0.02983468,0.015439392,0.027235532,-0.016994439,0.023392344,0.011168567,0.02601371,0.03409995,-0.0151283825,0.014417504,-0.016605677,-0.01386213,-0.00081431685,0.0048789587,0.0033738958,-0.0023506195,0.0035099625,0.003671021,0.018382873,-0.014139817,0.027057812,-0.00933028,0.004004245,0.042186193,-0.045762803,-0.008963733,-0.021293031,0.008064028,-0.02952367,0.028768362,-0.020382218,0.02133746,0.00025234796,0.020037888,-0.028568428,0.026569083,-0.006192418,-0.0011128302,0.02248153,0.007103231,0.022614822,-0.03032341,-0.0052010757,-0.005428779,0.008030705,-0.015950335,-0.03050113,-0.025302831,0.028990513,-0.038187504,-0.0012037727,0.03638809,0.0067144693,0.005512085,0.0099300835,0.01097974,-0.001843841,0.011596205,-0.022359349,-0.01258477,-0.019227041,0.042763785,-0.033944447,0.005825871,0.03274484,0.047539998,0.024947392,-0.00946357,-0.012606985,0.049494915,-0.0054121176,0.006020252,0.01289578,0.0028990512,0.0072365208,0.027102241,-0.0059091775,-0.02314798,-0.0062479554,0.0049789264,-0.027257746,-0.04538515,-0.021137526,0.030812139,-0.024369802,0.025813775,0.026924523,-0.012706953,0.005892516,0.018693883,-0.01038549,0.005070563,0.010118911,0.006464551,0.017138835,0.031078719,0.010346614,-0.017405415,-0.018338444,-0.012196009,-0.0045068585,0.01906043,-0.02345899,0.03252269,-0.00042069567,-0.0059258384,-0.049894784,0.0070643546,-0.011896107,-0.0045901644,-0.008658278,-0.0014356413,0.029034942,-0.010590979,-0.02574713,-0.027924195,-0.005048348,-0.020715443,-0.00873603,-0.04009799,0.007314273,-0.005959161,0.018316228,-0.032233894,-0.001060764,0.029568102,0.031434156,-0.0036543596,-0.0042125103,0.03696568,0.0064423364,0.0021256933,0.023547849,-0.022503747,0.015028415,-0.008308392,-0.00791963,-0.0038515173,-0.0016300221,-0.005556515,-0.003918162,-0.01632799,-0.012029396,0.03934268,0.036899034,-0.005759226,-0.010913095,0.025880419,0.004309701,0.016672323,-0.0366991,-0.015439392,-0.010296631,0.008402806,0.04225284,-0.008802675,0.00846945,0.01813851,0.008552756,-0.017805284,-0.003918162,-0.010146679,-0.038476296,-0.009335834,0.026924523,-0.026346933,-0.053049307,-0.0057981024,0.02790198,-0.011440701,-0.0036849051,-0.019249257,-0.011407378,0.016605677,-0.006808883,-0.020026779,-0.007880754,-0.0066700396,-0.049361624,-0.029612532,-0.011474023,-0.026258074,0.01641685,0.021048667,0.0055870605,0.04507414,-0.0028226874,-0.029279307,0.0034516482,-0.0036932358,-0.010546548,0.010718714,-0.016650107,-0.0035988223,0.0080473665,-0.03812086,-0.019415868,0.027879765,0.047095697,0.0144730415,0.0108408965,0.028013054,0.021204172,-0.018671667,0.025369475,0.0055676224,-0.009274743,0.00088790385,0.01184057,0.0150062,0.038920596,-0.041608606,-0.014406396,-0.007897415,0.012484803,0.030856568,-0.007947399,-0.018260691,0.018671667,0.021803975,0.010135572,-0.0020951477,0.010752037,-0.029701391,0.013173467,-0.0058647473,0.0044790898,-0.016772289,0.00008226474,0.003940377,-0.012329298,-0.04009799,-0.0048789587,0.006464551,-0.002968473,-0.029412597,0.014284214,0.012340406,0.02319241,0.011196336,-0.016383527,-0.0062812776,-0.005220514,-0.023259055,-0.024769671,-0.023392344,-0.006420121,0.004767884,-0.007114338,-0.0046373713,-0.016827825,0.026258074,0.027235532,-0.04651811,0.0044346596,-0.017705318,0.012118257,-0.045851663,-0.008191763,-0.0048012068,-0.015195027,0.013262327,0.021759545,-0.000006633029,-0.008730476,-0.043941174,0.009019271,0.009874546,0.00042694362,0.010291076,-0.0027268855,-0.010657623,-0.030767709,-0.00411532,0.0051233233,-0.021781761,0.02552498,-0.035410635,-0.02283697,-0.033744514,-0.012951317,0.024836317,-0.0052510593,0.040409,0.0029184893,0.025147326,-0.036610242,-0.0064145676,0.012262654,-0.025813775,0.032722626,0.007292058,-0.02516954,-0.026302503,0.005164976,-0.002649133,-0.033766728,-0.00640346,-0.007886308,-0.01267363,-0.037743203,0.025147326,0.0075419764,0.0032489367,0.010118911,0.011018616,-0.029345952,-0.016361313,-0.013395616,-0.001939643,-0.025325045,-0.011762817,-0.012162686,0.008202871,-0.010857558,0.013151252,-0.035410635,-0.0021048668,0.03454425,-0.011851677,-0.005659259,-0.010435474,-0.0010524334,0.0096024135,0.05509308,-0.032989204,0.031567447,0.026680158,0.035277344,0.03969812,-0.026080353,-0.010291076,-0.006175757,-0.022359349,0.002808803,0.00021190982,-0.005848086,0.014684084,-0.005231621,-0.02085984,0.008747137,-0.018216262,0.00759196,-0.048961755,0.015628219,0.05531523,0.0049456037,0.005403787,0.004198626,-0.02516954,0.042275053,0.067533456,0.028190775,-0.042008474,-0.0009837059,0.01928258,0.0022603713,0.0069421725,0.0068588667,-0.024525307,0.0042458326,0.0076419436,-0.077485755,0.0039542615,0.01505063,0.06331261,0.01285135,-0.001098946,-0.003951485,0.024591953,-0.03854294,0.019138182,-0.019182611,-0.01403985,0.01082979,-0.00046026605,-0.048428595,0.011685065,-0.009035932,-0.024503093,0.008774906,0.0068366514,-0.044385474,0.034522034,0.015972551,-0.019515835,-0.037254475,-0.04625153,-0.0050622323]},{"id":"interface-APIEmoji","type":"interface","source":"main","text":"Interface: APIEmoji\nProperties: animated: boolean, id: string, name: string","meta":{"url":"/docs/typedefs/APIEmoji"},"embedding":[-0.0011318211,-0.004777981,-0.044193376,0.024279222,-0.029328546,0.0045833224,0.017519264,-0.02630839,0.04065413,-0.02831396,-0.002105851,-0.0153131345,0.014003614,-0.034448653,-0.0037545492,-0.0005430529,-0.04098446,0.01702377,0.016575465,0.00885991,-0.010777001,0.007302643,0.015147969,0.05969527,0.04426416,0.036548607,-0.059648078,-0.009095861,0.012635105,-0.02654434,-0.0036542707,-0.035368856,0.09579557,-0.018120935,0.0009651817,0.021789953,-0.03005999,-0.007733251,-0.024987072,-0.033363286,-0.04284846,-0.042966437,0.0023757184,0.012233991,-0.039096862,0.05096513,-0.020185495,0.020102913,0.011549737,0.03942719,0.0026087186,0.05200331,-0.017035566,0.019996736,-0.028195987,-0.035321668,-0.027464543,0.007249554,-0.05271116,0.014428323,0.03067346,-0.018840581,-0.0036070808,0.0027237441,-0.025553351,0.02232084,-0.08163859,0.048322495,0.030343128,-0.046293326,0.0778162,0.031121762,-0.03921484,0.030413914,0.003559891,-0.018392278,-0.04711915,0.02025628,0.019937748,-0.023087677,-0.029800445,0.044948414,-0.03338688,-0.07540952,-0.001223989,-0.0067776544,-0.045325935,-0.031971183,-0.05714701,0.004084879,-0.001075783,0.017802404,-0.122127555,-0.054504376,-0.0029626433,-0.020810762,0.010912673,-0.0018492556,-0.013307562,0.03211275,0.05879866,-0.0077391495,-0.08531941,0.020456837,-0.023146663,0.027110618,-0.00806358,0.027582517,-0.04520796,-0.009007379,-0.055306606,0.017283315,0.011219407,0.0058397544,0.0015218754,-0.0211057,0.030248748,0.004494841,0.020598408,-0.057524532,-0.0029906621,-0.00923743,0.053702146,0.0018212366,-0.010057355,0.010948065,-0.020315267,0.0012475839,-0.06625467,-0.041527145,-0.005881046,-0.011024749,-0.0038282836,0.009868596,-0.017377693,-0.012104219,-0.027535327,0.018781595,-0.02935214,0.034448653,0.017389491,-0.01664625,0.02279274,-0.0063706413,-0.01477045,0.0173541,-0.005763071,0.012021637,-0.0020955282,0.0050227786,0.027417352,0.019182708,-0.033740804,-0.019194506,-0.004951994,-0.021624789,-0.013590702,-0.01724792,-0.016327718,-0.011832876,-0.012269383,-0.062715426,0.011567433,-0.008718341,-0.025860084,0.039922684,0.021353446,0.0029051304,-0.013366549,0.015879413,0.023123069,-0.034967743,-0.07437134,-0.020091115,-0.05087075,-0.014664273,0.07054895,0.0064532235,-0.07418258,0.061724436,0.050493233,0.07413539,-0.039922684,-0.027558923,0.04398102,0.011921357,-0.020362457,0.017472073,0.019949546,-0.021211876,-0.004760285,0.047567457,0.043249577,-0.005332463,0.021070307,-0.022592181,0.04763824,-0.023052284,-0.0090250755,-0.0403238,0.042541727,0.04055975,0.05809081,-0.0069900095,-0.016905794,-0.021164685,-0.038530584,-0.04702477,0.0002324473,-0.023594968,0.05724139,-0.028125202,-0.0039492077,-0.045892213,-0.04983257,-0.020150103,0.019796178,0.056014456,0.006995908,0.033717208,-0.048228115,0.018510252,0.055165034,-0.03138131,0.015914805,0.0001719852,-0.002551206,0.0021530408,-0.024019677,0.02405507,-0.043863047,0.012387359,-0.011478952,-0.018604632,0.021388838,-0.022863524,-0.0048399176,0.005665742,-0.00040480116,0.034023944,-0.004763234,-0.012670497,-0.004751437,0.022202864,-0.0005161399,0.033835184,0.020515826,0.016433895,-0.019961342,-0.008960189,0.023193853,-0.011585129,0.020869749,0.023052284,0.012741283,-0.034118325,-0.041833878,0.03900248,0.011077837,0.013567107,0.01692939,-0.018439468,-0.019159114,-0.013862044,0.019395065,-0.04473606,0.0035716882,0.057996433,-0.007444212,-0.009721126,0.046411302,-0.001697363,0.015124374,0.050493233,-0.004188107,0.0013493373,0.0056716404,0.026851073,-0.04107884,0.036265466,-0.03690253,-0.018144531,0.015985591,0.0076388707,-0.02883305,0.032655437,0.04379226,0.0036955618,0.0082877325,0.010393583,0.049974144,0.005825008,0.027228594,-0.036289062,0.020338863,0.054645944,0.06063907,0.0073970226,0.07102086,0.011496648,0.036784556,-0.076778024,0.0065063126,-0.0164103,-0.030555483,0.043863047,-0.027322972,0.06554682,0.019064734,-0.0055772606,0.038648557,-0.009756519,-0.022061296,-0.034873363,-0.050304472,-0.017011972,0.035132907,0.03713848,0.009361303,0.002198756,-0.02460955,-0.01444012,0.00675406,-0.024232032,-0.053041488,-0.031452093,0.020374255,-0.009278721,0.04530234,0.016823212,0.01415698,-0.038884506,0.01116042,0.04251813,0.05851552,-0.011119129,-0.027653303,0.03860137,-0.016422099,0.008783227,0.06054469,-0.02331183,-0.015183362,0.020881547,0.030791434,-0.039568763,-0.04242375,-0.0020409648,0.008482391,0.02227365,-0.011744395,0.011762092,-0.03961595,-0.045986593,-0.007161073,-0.029824039,-0.018109137,-0.0036601694,-0.04530234,0.049313482,-0.0029419975,0.02564773,0.028573506,0.049077533,-0.012587915,-0.041291196,-0.002231199,0.02949371,0.03529807,-0.056958254,0.013543512,-0.0123519655,0.004468297,-0.03239589,0.025671326,0.0138266515,-0.05308868,-0.0028343454,-0.004052436,0.0023875157,0.031121762,0.015891211,-0.023665752,-0.024821907,0.006582996,-0.0149238175,0.00482812,0.0003517125,-0.026615124,0.054976277,0.07465448,-0.01415698,-0.069180444,-0.016304122,0.00120703,-0.0031587763,-0.02025628,0.0063588438,0.009715228,-0.020857953,-0.005659843,-0.0262612,0.020987725,0.00736163,-0.009160746,-0.01983157,-0.015737843,-0.0018758,0.05903461,-0.022191068,0.032136347,-0.023252841,0.01940686,0.05289992,0.03520369,-0.02306408,0.0010580869,-0.08376214,-0.0023565474,0.027653303,-0.01847486,-0.035793565,-0.0412676,-0.05002133,-0.013602499,0.017755214,0.022214662,-0.0052557793,-0.031475686,-0.027842062,0.016516477,0.02935214,0.021530408,0.0037516,0.053041488,-0.040111445,0.029116191,-0.016681643,-0.026190415,0.0033357386,-0.06257386,0.0005987223,0.018168125,0.015525489,0.0025069653,-0.006653781,-0.024302818,-0.021164685,-0.057005443,-0.028762266,-0.047827,0.024751121,-0.039804712,0.04084289,0.010004266,-0.012623308,0.011821079,-0.001385467,-0.011561534,-0.01669344,-0.006382439,-0.016304122,0.00062784733,0.049124725,0.05068199,-0.012764878,-0.027558923,0.023465196,0.030602673,-0.0022724904,-0.0069074268,-0.0037663467,0.054551568,-0.010157634,-0.011360977,-0.018061949,0.040205825,-0.042376563,0.017283315,-0.014428323,-0.031239737,0.03466101,-0.002011471,-0.055212226,0.0014732109,0.079467855,0.03685534,-0.016846808,0.00037272676,-0.00895429,-0.0053531085,0.003919714,0.008877607,-0.011738497,0.019796178,-0.037586786,-0.034354273,-0.06276262,0.010399482,-0.027464543,0.05733577,-0.037940707,-0.026166819,0.02274555,0.027653303,0.00033696563,0.030295938,-0.01749567,-0.04188107,-0.00033493794,0.04801576,-0.027393758,-0.020362457,-0.01097166,-0.010594141,0.005084716,-0.024137652,0.018734405,-0.0011450932,0.0019259392,0.004978538,-0.013496322,0.057288583,-0.018085543,0.009555962,-0.020739976,0.004580373,-0.070124246,-0.020315267,-0.012210396,0.024680337,-0.02208489,-0.005143703,0.0032413588,-0.0072377566,0.011915459,-0.013154195,-0.004627563,0.010493862,-0.021093901,0.009597253,0.008370315,0.033717208,-0.008264137,-0.027299378,0.050068524,-0.044004615,0.0068897307,0.0021323953,-0.0015336729,0.002119123,-0.0365722,0.0370441,-0.043060817,0.011939053,0.013107005,0.00956776,-0.008045884,0.029069,-0.007951505,-0.015938401,-0.01448731,0.02958809,-0.015985591,-0.011136825,0.019890558,0.026567934,-0.011944952,-0.0054179947,0.008635758,-0.014381133,-0.0073498324,0.015643464,0.030649863,-0.011927256,0.009007379,0.004577424,0.023736538,0.009107658,-0.038955294,-0.021919725,-0.0036218276,-0.0046629556,0.040677726,-0.0054356907,0.025907274,-0.01960742,-0.028384747,-0.01669344,0.013012625,0.004860563,-0.015961995,-0.021778155,-0.015029995,-0.022438815,-0.0065770973,0.016068174,-0.01847486,-0.00064775563,-0.0023078828,0.01899395,-0.025034262,-0.020091115,0.0061641852,0.050398853,0.017554656,-0.015631666,-0.036595795,-0.01205113,0.0057778177,-0.035321668,0.02996561,-0.0041527143,-0.062196337,-0.04551469,-0.013732271,-0.0036218276,-0.0017460276,-0.022250054,-0.029234165,-0.034071133,0.017212529,-0.0032000674,0.017637238,0.0021589396,0.014746855,0.0037398024,-0.02348879,-0.0141923735,-0.016186148,-0.0012652802,-0.016162554,-0.010788799,-0.013909234,0.0076388707,-0.0028195987,-0.007857124,0.02602525,0.012233991,-0.0035480934,0.0058633494,0.015077185,0.03159366,0.031050978,0.021093901,-0.016115364,0.0056391973,-0.0006569724,0.022261852,0.031145358,0.0024155348,-0.011319686,-0.0010448147,-0.0053531085,0.0075739846,-0.025624136,-0.02358317,0.03138131,-0.017884986,0.01003376,0.024125855,0.02996561,0.0045066387,-0.0058309063,-0.005031627,0.03647782,0.035769973,-0.00632935,-0.022828132,-0.008818619,0.028573506,0.03789352,-0.0150064,0.0164103,-0.008818619,-0.040017065,-0.005199741,-0.037633974,-0.0046157655,0.006630186,-0.006264464,-0.012481738,-0.036454227,-0.00482812,0.029753255,-0.021837143,0.027204998,0.022155674,0.0035834857,-0.017377693,-0.0038341824,0.024892692,0.017318707,0.013295764,0.02593087,0.016988376,0.014145183,0.016941188,0.0239135,0.0023403259,0.010605938,0.005963628,-0.016150756,0.005152551,-0.011290193,0.013673284,0.016587263,-0.011337382,0.025340995,0.01885238,-0.04622254,0.008977885,0.0010256438,0.020386053,0.010458469,0.00952057,-0.027511733,-0.0048546647,-0.0045213858,0.014782247,0.0257893,0.008022289,-0.03551043,0.009673937,0.02151861,0.017825998,0.03595873,0.041385572,-0.008983784,-0.003913815,-0.021046711,0.013968221,0.009662139,0.014251361,-0.010198925,0.03149928,0.019701798,-0.01533673,-0.019111924,-0.010051456,-0.002026218,0.013260372,-0.013000827,-0.015419312,-0.028054416,0.020268077,-0.01992595,0.0067009707,-0.018215315,-0.027936442,0.023842715,0.0068425406,-0.02944652,0.00047374272,-0.022969702,0.018840581,0.012646903,-0.014711463,-0.02090514,0.013248575,0.018581036,0.0057453746,-0.032183535,0.03192399,-0.015737843,-0.035416048,0.034236297,-0.010010165,-0.0010285932,0.03900248,-0.034731794,-0.015785033,-0.033882376,-0.013755866,0.049549434,-0.026615124,-0.0008022289,-0.013154195,-0.005302969,0.02517583,-0.0300128,-0.0018905468,-0.0077568456,-0.032702625,0.033646423,-0.0074914023,-0.0023845665,-0.015088982,-0.00054673967,-0.013980019,-0.02644996,-0.00032627417,0.0071256803,-0.060072787,0.035793565,0.00464231,0.009579557,-0.06870855,-0.049030345,0.03201837,-0.012186801,-0.0039787013,-0.021636585,0.006771756,0.043084413,0.0011170743,-0.007686061,0.031782422,-0.009526468,0.0004789041,-0.04431135,-0.0024229083,-0.010588242,0.026992643,-0.0077155544,0.025860084,0.017884986,-0.023252841,0.035345264,0.0015262995,0.047048368,-0.011419965,0.021483218,-0.02039785,0.011083736,0.039380003,-0.00361003,-0.0013028847,-0.029375736,0.012257586,-0.0023005095,0.029328546,-0.015549084,-0.008423404,-0.021754561,-0.027275784,-0.012871055,0.04322598,-0.014109791,0.0066183885,-0.007980998,-0.00288301,0.020102913,-0.0057512736,0.047331505,-0.042730488,0.001327217,-0.024019677,0.0009762418,0.049360674,0.036383443,-0.023559576,0.017979365,-0.04393383,-0.010411279,-0.032325108,-0.052144878,0.037586786,0.034778982,-0.008075378,0.0025497312,0.060261548,-0.009856798,-0.0159502,0.000082766725,0.02574211,-0.010104545,0.0028137,0.0017843695,0.008789126,0.009526468,-0.026001655,0.039922684,-0.008777328,-0.008234644,0.03010718,-0.023559576,-0.0032325105,0.0018138632,0.057996433,0.015891211,0.013354752,0.039804712,-0.017365897,0.0018463063,0.007821732,0.012222193,0.0168822,-0.016563667,-0.01533673,0.028431937,0.015513691,0.026096035,0.02536459,0.019170912,0.010228419,-0.00853548,0.042470943,0.0152777415,-0.018451264,-0.05138984,-0.023288233,-0.009231531,-0.0075149974,0.032938577,-0.010623635,0.03456663,-0.02640277,-0.016115364,-0.009886292,0.00900148,-0.028172392,-0.016056376,0.053466197,0.004816323,0.020716382,0.0078040357,-0.022875322,-0.006063907,0.003904967,-0.021436028,-0.01205113,-0.026992643,0.01467607,0.0019185658,-0.005945932,-0.027912848,-0.0123519655,-0.053183056,-0.02199051,-0.01833329,0.023170259,-0.031263333,-0.013248575,0.00900148,-0.025671326,-0.024538767,0.008812721,-0.014841235,-0.014711463,-0.030413914,-0.037822735,0.003394726,-0.022662967,0.023146663,-0.012458143,-0.045656264,0.024161248,-0.014381133,-0.03131052,0.03128693,0.018227113,0.036029518,-0.02602525,-0.028597102,-0.013401941,0.043697882,0.039828304,-0.0090427715,0.029894825,-0.041479953,-0.007526795,-0.027039833,-0.036642984,0.003671967,-0.00923743,0.008323125,0.020657394,0.0009209411,0.01786139,-0.024892692,-0.030083584,0.01795577,0.056391973,0.01626873,0.024774717,0.015372122,-0.023123069,-0.009437988,-0.010063254,-0.007196465,0.026072439,0.0010544001,0.02883305,-0.024255628,-0.000098619596,0.007520896,-0.02039785,0.011077837,-0.0023373766,-0.0033416373,-0.013531714,0.024114057,0.028549911,0.007609377,0.0123283705,-0.019194506,0.012092421,0.006122894,-0.01026971,-0.01181518,-0.011071939,0.030508293,-0.008989682,0.006016717,0.00834672,0.009839102,-0.0201619,0.01116042,-0.003132232,0.01771982,-0.023665752,0.0039492077,-0.042730488,-0.010847786,-0.024208438,0.0033740804,0.010181229,-0.0025733262,-0.0019746039,0.010334596,-0.0041999044,0.036878936,0.0022061295,0.009184341,-0.019678203,0.014746855,-0.00052240735,0.029611684,0.007821732,-0.004459449,0.042140614,-0.0018905468,0.023276435,0.0031853206,0.038860913,0.0003264585,-0.0015292489,-0.010517457,-0.018722607,-0.013189587,-0.01744848,-0.009856798,0.027747683,0.025718516,0.0036513214,0.004052436,-0.017755214,-0.0010374412,-0.006205477,0.010912673,0.0025394084,-0.022214662,0.0014267582,0.012953637,-0.018097341,0.008500087,0.009325911,0.0027266934,0.04336755,-0.031121762,-0.0030039344,0.001566116,-0.02460955,0.032679033,0.02405507,0.008334923,0.012552523,0.0011495174,0.022898916,0.010092747,-0.038955294,0.0492191,-0.013968221,0.0023241043,0.0010101596,0.0023801425,-0.02053942,-0.029611684,0.0042411955,0.00628216,-0.00417336,-0.009266924,-0.008924796,-0.016351312,0.026921859,0.011620522,0.028998217,-0.0014621507,0.013260372,-0.049171913,0.021070307,-0.006022616,-0.028431937,-0.048369683,0.03338688,0.0065476038,-0.008930695,0.025671326,-0.013791258,0.023123069,-0.0074383137,0.010116342,0.012753081,-0.012753081,0.048416875,0.0021264965,-0.02963528,-0.014204171,0.020610204,0.00045494048,0.02939933,0.011537939,0.003132232,-0.061252538,-0.0053855516,-0.022887118,0.0065476038,0.015844021,-0.005134855,0.019866964,-0.012918245,0.018451264,0.047756214,-0.012015738,-0.000026751717,0.0031912194,-0.018168125,-0.018097341,-0.0020321165,-0.0011355078,-0.028455531,0.0010190076,-0.042636108,0.017660834,0.0022724904,-0.01945405,0.0057217795,0.028054416,-0.012175003,0.011048344,0.0012851884,0.008358518,-0.004252993,-0.0071669715,0.007249554,-0.013048017,0.045656264,-0.0005965103,-0.010664926,-0.011195812,0.042706892,0.0019923002,0.009231531,0.022674764,-0.008010492,-0.036029518,0.0105115585,-0.014050803,0.020338863,-0.012186801,-0.016681643,-0.0004210227,0.0017327555,-0.007868921,0.011337382,-0.00085974165,0.002334427,0.02930495,-0.00019465848,0.021129293,-0.03718567,-0.01889957,0.01856924,0.016280528,0.012753081,0.008429302,-0.020515826,0.0034124223,0.0048871078,0.006854338,-0.0065535023,0.01790858,-0.024633147,-0.012918245,0.008948391,-0.011844674,0.014357538,-0.033410475,-0.0145462975,-0.02944652,-0.0021441928,-0.021412434,-0.024798311,-0.04084289,-0.017106352,-0.019029342,0.0141805755,0.02517583,-0.015808629,0.00013880477,0.009968874,-0.013048017,0.004300183,0.037869923,0.006063907,-0.02522302,-0.010198925,0.07356911,-0.028762266,0.0059665777,0.024633147,0.071870275,0.013567107,-0.029776849,0.015431109,0.055920076,0.005285273,0.0010529255,0.013059814,-0.012151409,0.02006752,0.020480432,-0.0048723607,0.00426774,-0.007060794,0.025246616,-0.006199578,0.004418158,0.0033711311,0.026379174,-0.027346568,0.02930495,0.017283315,-0.023512386,-0.017472073,0.013142398,0.008848113,0.0023609714,0.006494515,0.03239589,0.016941188,-0.005217437,0.00007774358,0.02030347,-0.018592834,-0.01940686,-0.0126587,0.0159502,-0.026520744,-0.016846808,0.018451264,-0.0052026906,-0.02902181,-0.010847786,0.0010897926,0.01477045,0.023394411,-0.004096676,0.0314049,-0.0074737063,-0.0015823375,-0.021341648,0.015737843,-0.038742937,-0.017943973,-0.011779788,-0.03020156,-0.014074398,-0.012599713,0.0013987392,-0.0026337884,0.021730965,0.01294184,0.0013780936,-0.0031027384,0.0239135,0.0009025075,0.015879413,0.008730138,-0.024703931,0.0039580557,-0.004459449,0.011720801,0.0025954465,-0.054221235,0.005665742,0.044334944,-0.02583649,0.02925776,-0.028903836,0.042447347,-0.0025644782,0.012682295,0.013956424,-0.020291673,0.008222846,-0.036737364,-0.042990033,-0.011148622,-0.009343607,0.0422114,-0.0015307235,-0.034330677,0.04181028,0.009721126,0.0012579068,-0.024774717,0.00015180044,-0.03501493,-0.037681162,0.021459624,-0.023465196,-0.013378347,-0.0094143925,0.0014105367,-0.008370315,-0.011950851,-0.0049490444,-0.023559576,-0.019300684,0.03409473,-0.011773889,0.0089071,0.017932177,-0.03671377,-0.026190415,-0.00064111955,-0.0006083078,-0.004356221,0.030036394,-0.014687868,0.02602525,-0.022002308,-0.012859258,-0.0506348,-0.026567934,0.013248575,-0.013968221,-0.018805189,-0.012646903,-0.038318228,-0.048275303,-0.015360325,0.030909408,0.04055975,0.019949546,-0.029281355,0.032041967,-0.0052203867,-0.024444386,0.0074560097,0.0060462104,-0.038530584,0.014215969,0.00361003,-0.013968221,-0.008871708,0.004577424,0.017106352,-0.0058780964,0.008901202,0.012481738,-0.031664446,-0.01771982,0.009243329,-0.00036590634,0.0041674613,-0.0014982804,0.02963528,-0.017684428,-0.0076978584,-0.019902356,-0.006895629,0.034826174,-0.004055385,-0.0079220105,0.006978212,0.027606113,-0.04346193,-0.0069664144,0.028337557,-0.024845501,-0.037398025,0.014664273,-0.01786139,0.044382136,-0.0047425884,0.0017519264,-0.02232084,0.011461256,-0.041220408,-0.0119685475,0.011077837,0.004196955,-0.028125202,0.018026555,0.023807323,0.019678203,0.017943973,0.009856798,-0.009113557,-0.021742763,0.0013567107,0.024279222,-0.023760132,0.00008143029,-0.033174526,0.0029906621,0.020150103,0.023453398,-0.006529907,-0.011986244,0.030815028,0.01724792,-0.03362283,0.023406208,-0.011042445,0.02020909,-0.026072439,0.010948065,0.015018197,-0.018746203,0.032608245,-0.033504855,0.010853685,-0.07418258,0.012871055,0.0295409,0.009373101,-0.0038607267,0.0006326401,0.004019993,-0.010995255,-0.02279274,0.019701798,-0.01795577,0.0030319535,-0.003315093,0.00042692144,-0.010098646,0.010193027,0.021872535,-0.00006156812,-0.021506814,0.0013235302,0.0036277263,0.024467982,0.0007557763,0.0043326262,-0.005367855,0.009579557,0.028290367,-0.011125027,0.0076801623,-0.032513864,0.013744069,0.0034212703,-0.004120271,-0.031853206,0.017129947,0.016705237,0.020987725,-0.04013504,0.003347536,0.014015411,0.023288233,0.010116342,0.0031528776,-0.014251361,0.00328265,-0.024821907,0.015348527,-0.0058456534,0.026638718,0.024656741,0.04211702,-0.013378347,0.0012276757,-0.0152777415,-0.03933281,0.02883305,-0.0056863874,-0.02987123,0.02255679,0.017790606,-0.010075051,-0.02987123,-0.0037633975,-0.021966916,-0.032419488,-0.002245946,0.030815028,0.022250054,-0.03072065,-0.00806358,-0.015678857,0.049030345,0.04973819,0.028667886,-0.022946106,-0.0076978584,-0.033174526,-0.006718667,0.017743416,0.014050803,-0.02217927,-0.004412259,-0.03414192,-0.009992469,-0.009213835,-0.004450601,0.017696226,-0.014227766,-0.014404728,0.016162554,0.031688042,-0.03418911,-0.017519264,-0.00919024,-0.013555309,-0.0026795035,-0.0089071,-0.036194682,-0.007957403,-0.003427169,-0.021282662,0.023748334,-0.04284846,-0.003872524,0.022969702,0.019442253,0.037067696,-0.001725382,0.0043827654,0.017165339]},{"id":"interface-APIEmojiWithUser","type":"interface","source":"main","text":"Interface: APIEmojiWithUser\nProperties: user: APIUserPartial","meta":{"url":"/docs/typedefs/APIEmojiWithUser"},"embedding":[-0.0023535634,-0.012847248,-0.014716392,0.05318337,0.0060248733,-0.02821161,0.0048036994,0.041918665,0.029831534,-0.03185021,-0.035189748,-0.02472254,-0.0075077275,-0.010186833,-0.013046623,-0.039052643,-0.008604292,0.02741411,-0.032722477,0.028660204,0.01248588,0.026840905,0.050516725,0.035015292,0.03885327,0.020809801,-0.038155455,0.00047273762,-0.017632257,-0.028410986,-0.025893873,-0.031277005,0.075064816,-0.005031112,0.021918826,0.0023893889,0.013121389,0.055226967,-0.0060279886,0.003432994,-0.03688444,-0.062853076,-0.0154266665,0.017121358,-0.056074314,0.035688184,0.020224135,0.06330167,0.026865827,0.0071276682,-0.0019485824,0.009931384,0.016186785,0.019264642,-0.022442186,-0.047127344,-0.0017881475,-0.003211812,-0.068286054,0.03227388,-0.019389251,-0.037532408,0.027763015,-0.0046572834,-0.04316476,-0.0026510688,-0.013931352,0.042292494,0.011993673,-0.03668506,0.0537815,0.0009719548,-0.06474714,0.043413978,0.050167818,-0.022467108,-0.017482724,0.0127350995,-0.011756915,-0.0424171,-0.0005560703,0.050616413,-0.04745133,-0.037308108,-0.021258395,-0.010355056,-0.07665981,-0.014342563,-0.04381273,-0.025445277,0.024012268,0.00818685,-0.07705857,-0.04770055,0.018404836,-0.0071276682,-0.004872235,-0.0012437594,-0.01013699,0.03197482,0.03521467,-0.0094454065,-0.08937,0.011003027,0.009894001,-0.008355073,0.015314518,0.0076634893,-0.06659136,0.0070030587,-0.042716164,0.045158513,0.013644749,-0.036834594,-0.013034163,-0.008024857,0.015326979,-0.0024439055,0.017221045,-0.033245835,-0.029557394,-0.014130727,0.04665383,-0.0028442137,0.0036572914,-0.021993592,-0.03823022,-0.024336252,-0.06394964,-0.024111954,0.011339473,-0.020772418,-0.0014049731,0.02366336,-0.0043395287,-0.020199213,-0.02092195,0.013619828,-0.047251955,-0.007202434,-0.008747593,-0.010697733,-0.01130832,-0.013495218,-0.057121035,-0.0067725307,-0.05343259,0.022604179,-0.018566828,0.01702167,-0.0017663409,0.001716497,-0.025133753,0.011059101,-0.0009524845,-0.016161863,-0.03314615,-0.019576166,-0.026292622,-0.031526227,0.0016697685,-0.06738886,0.010766268,-0.038255144,0.000070384944,0.001962601,0.022068357,-0.009962536,-0.030529348,-0.012622951,-0.008610522,-0.018766204,-0.08264108,-0.019015422,-0.06659136,-0.058068067,0.030778568,-0.015700808,-0.09365656,0.0008816128,0.04513359,0.059214476,-0.014267798,-0.06016151,0.0126790255,-0.012629181,0.00039719304,0.03314615,0.04196851,-0.032149274,0.012230431,0.04159468,0.025644653,-0.012566877,0.029607238,-0.036610298,0.046230156,-0.049245708,-0.017196123,-0.011800528,0.027837781,0.04732672,0.055575874,0.010847264,0.021993592,-0.03264771,-0.017245967,-0.01715874,-0.037981,-0.008355073,0.009526403,0.014679009,-0.019202337,-0.03264771,-0.025470199,0.010323904,-0.0067413785,0.029682003,-0.007563802,0.025844028,-0.041818976,0.044061948,0.09330766,-0.024161799,0.020498278,-0.0073768874,0.017619796,-0.012068438,-0.025968637,0.050815787,-0.028410986,0.04017413,-0.038554206,-0.023613516,0.015962487,-0.032423414,0.026566764,0.009638552,0.008280307,0.007750716,-0.04147007,-0.0043177223,-0.008112084,0.06275339,0.0038815886,0.016610458,0.017756866,0.002671318,-0.002289701,0.036585376,0.06320198,0.023601055,0.033270758,0.025270823,0.016884599,0.035837717,-0.01976308,0.06439824,-0.0024127532,0.023189845,0.041445147,-0.024211643,-0.0021526306,0.013171233,0.011489004,-0.049893677,0.00050389,0.025968637,-0.000991425,0.021644685,-0.005538896,0.017071513,0.016473386,0.041644525,-0.016398622,0.000802953,0.04316476,0.031301927,-0.04279093,0.0003773334,-0.05188743,0.01988769,0.017719483,0.058167756,0.0065606944,0.06389979,0.02679106,-0.023887657,-0.018217921,0.028660204,0.030903177,0.031301927,0.06399948,-0.027937468,0.02574434,0.035264514,0.05826744,-0.030878255,0.048846956,0.02144531,0.0014073096,-0.043314293,0.013046623,-0.056921657,0.016610458,-0.0051245694,0.04535789,0.009968767,0.010298982,-0.0062647467,0.0017476494,-0.025358051,-0.01469147,0.0018146271,-0.047276877,-0.02599356,0.010436052,-0.0010895551,-0.02093441,0.031152396,-0.020361206,-0.018616673,-0.019725697,-0.057918534,-0.0120248245,-0.008728902,0.012710177,-0.042840775,0.027139967,-0.010174372,0.028959267,-0.032174196,-0.019027883,-0.013532601,0.03040474,0.0027507567,0.001016347,0.07337012,0.011887754,0.015189908,0.041794054,-0.030604115,-0.018230382,-0.017495185,-0.0017710137,-0.021706989,-0.038055766,0.020111987,-0.026467076,-0.00054516696,-0.025370512,0.02002476,-0.016498309,-0.022255272,0.022778632,-0.030230286,0.020323824,-0.03511498,-0.04132054,0.051937275,0.013769359,-0.023289531,0.006330167,0.016274013,0.006566925,-0.027189812,0.00585042,0.01675999,0.0029968605,-0.079849824,-0.04156976,-0.013221077,0.013383069,0.017869014,-0.0026744332,0.025968637,-0.04665383,-0.015588659,-0.016361238,0.02689075,0.049046334,-0.0030077638,0.0054111714,-0.041719288,0.01248588,-0.04887188,0.004510867,0.012404884,-0.025569886,0.044136714,0.07242309,-0.02913372,-0.0021354968,-0.032149274,0.025968637,0.0007920497,0.008031088,0.032174196,-0.0008878433,-0.026242778,-0.012535724,-0.026940592,0.047625784,-0.0075575714,-0.023488907,0.021931287,-0.01612448,0.008460991,0.024660237,0.0072398167,0.009968767,-0.04513359,0.024859613,0.014728853,0.042367257,-0.017856553,0.007358196,-0.06080948,0.027638406,0.019015422,-0.01951386,-0.04054796,-0.006149483,-0.042666323,0.036759827,-0.004542019,0.04976907,0.012809865,-0.025470199,-0.03705889,0.00715259,0.02158238,0.0014664991,-0.039052643,0.0025015373,-0.019538783,0.06943246,0.03369443,-0.049121097,0.04017413,-0.025470199,-0.016049715,0.017719483,-0.018890813,-0.0016136941,-0.04069749,0.013208616,-0.023426602,-0.018616673,-0.012386193,-0.04054796,0.00058254984,0.0032398491,0.052036963,-0.017146278,-0.01533944,0.0037195962,0.055974625,-0.009115191,0.015389284,0.027588563,0.008018627,-0.0074267313,0.07062871,0.038554206,-0.016884599,-0.010984335,0.028660204,-0.0034205331,0.0049719224,-0.00988154,-0.0074828058,0.026342466,-0.010055994,-0.015002994,-0.03219912,0.022703866,-0.04251679,0.0005439987,0.005760078,-0.013171233,0.03511498,-0.00046767536,-0.012323888,0.017233506,0.083538264,0.051688056,-0.019401712,-0.018006084,0.016809832,0.009333258,-0.0020186752,0.013457835,-0.013931352,0.043413978,-0.023837814,0.019389251,-0.09181234,0.012946936,-0.031775445,0.06988105,-0.01742042,-0.011862832,0.007700872,-0.002495307,0.020049682,0.0038037077,-0.025445277,-0.046205234,-0.011021717,-0.011364394,-0.007900247,-0.049295552,-0.02651692,-0.025495121,0.0097507,-0.014641626,0.029457705,0.00741427,0.031277005,0.010554432,0.0015700808,0.031949896,-0.017383037,0.0040871943,-0.015102682,-0.004538904,-0.08054764,-0.004261648,-0.012797404,0.014055961,-0.0049937293,0.020124448,-0.0058659962,-0.022018515,0.0039843917,-0.036560453,-0.021806678,0.02796239,-0.011906446,-0.008816129,-0.012629181,0.017295811,0.002241415,-0.0070217503,0.03219912,-0.005962569,-0.023476446,0.019189876,-0.0143799465,0.0022741249,-0.0017211699,0.05383134,-0.045008983,0.0124422675,0.025108831,0.01872882,-0.022055896,0.00383486,-0.008604292,-0.044410855,-0.025196059,0.021096403,-0.009862849,-0.041918665,0.019164953,0.03197482,-0.036211547,-0.005108993,0.025407894,-0.021918826,0.015152525,-0.002609013,0.06998074,0.009277184,-0.0030264554,0.008436069,0.042167883,0.007837943,0.02130824,-0.02340168,-0.012529493,-0.016361238,0.05313353,0.010753808,-0.025794184,-0.03040474,-0.02443594,-0.01624909,0.034915607,0.024336252,-0.023862736,-0.014504556,0.0080933925,-0.026491998,0.0043083765,0.04249187,-0.012242892,-0.0092647225,-0.010753808,0.008479682,-0.015376823,-0.022816015,0.0035326818,0.045756638,0.033719353,0.022030974,-0.012685256,-0.03628631,0.017333193,-0.019912612,0.020946871,-0.013831664,-0.027463952,-0.019700775,0.019314487,-0.017707022,-0.027663328,0.0069532148,-0.012847248,-0.019925073,-0.013146311,-0.01613694,0.024485784,0.004641707,0.03860405,-0.01285971,-0.0149656115,-0.00083488424,-0.010679041,-0.0390028,-0.0028551172,0.01144539,-0.010006149,0.025943715,-0.026616607,0.0027460838,0.035812795,-0.0345667,-0.0037195962,-0.010591814,-0.013594906,0.02247957,0.017968703,0.019140033,-0.00558874,-0.021108864,-0.0026199166,-0.018043468,0.01613694,-0.016859677,-0.022604179,0.022853399,-0.009208648,0.009557555,-0.011414238,-0.0038847039,0.05198712,-0.011351933,-0.0024641545,-0.011750684,0.05263509,-0.005408056,-0.026616607,-0.0027414109,0.026467076,-0.0062772078,0.016049715,-0.01430518,0.023775509,0.0129593965,0.03623647,-0.012099591,0.009576247,0.012641642,-0.01052951,0.0012873728,-0.054778375,0.006133907,-0.004242956,0.017719483,-0.017046591,-0.032946773,-0.020722574,0.026666451,-0.035414044,-0.005953223,-0.017133817,-0.014105805,-0.030903177,-0.0006631566,0.010404901,0.032174196,-0.01403104,0.01911511,-0.007894017,0.02210574,-0.01611202,0.007894017,0.021383004,-0.02522098,-0.013993656,-0.018504523,0.0063145906,-0.01857929,0.017669639,0.0028333105,0.00053504243,0.016199246,0.014865924,-0.03155115,-0.0053114835,-0.012068438,0.020523198,0.008791206,0.022654023,-0.04027382,-0.0018691438,0.01416811,0.030329973,0.0038628972,0.011931368,-0.04196851,0.04044827,-0.0049314243,-0.005149491,0.034915607,0.036759827,0.02249203,-0.026641529,-0.008012396,-0.03209943,0.009794313,0.011127636,-0.03715858,0.013819203,0.022467108,-0.0036604065,-0.028834658,-0.007451653,-0.014703931,-0.0158628,-0.03389381,0.008884664,-0.026990436,0.025308207,-0.0023286417,0.032597866,-0.021569919,-0.018554367,-0.0058473046,0.008342612,-0.0045856326,-0.01378182,0.0025264593,0.0029329981,-0.00069002557,0.0045575956,-0.07955076,-0.0028847118,0.004214919,0.039750457,-0.023376757,0.002749199,-0.016411083,-0.0028083886,0.042267572,-0.031924974,0.030728724,-0.015638502,-0.039426472,-0.0027896971,-0.01638616,0.025295746,0.039850146,-0.04276601,-0.012510803,-0.01675999,-0.011987442,-0.01027406,-0.0023161806,0.023052773,0.0042055734,-0.053083684,-0.017495185,-0.03003091,-0.0055202045,-0.0060373344,-0.020984255,-0.020087065,-0.024361175,-0.0044952906,-0.007295891,-0.023601055,0.013619828,0.033594742,0.011501465,-0.06943246,0.0029034032,0.04874727,-0.028635282,0.01430518,-0.0061183306,-0.009171265,0.03314615,-0.004510867,-0.0024127532,0.02965708,-0.047526095,-0.0077943294,-0.042741086,-0.0053737885,-0.00435199,0.011432929,-0.026666451,0.0426414,-0.0046354765,-0.04834852,-0.00023928934,0.02716489,0.041918665,-0.007844173,-0.0061183306,-0.03237357,0.03576295,0.026417231,-0.037108734,-0.024099493,0.007115207,0.00025330792,-0.0061868657,0.032523103,0.02806208,0.007732025,-0.019339407,-0.02223035,-0.03770686,0.006647921,-0.01053574,0.007501497,0.0074080396,-0.032149274,0.042741086,-0.013956274,0.027837781,-0.059862446,0.011420469,-0.032548025,-0.03641092,0.03808069,0.014180571,-0.0053644427,0.0051712976,-0.03603709,-0.00034851744,-0.041694365,-0.036834594,0.008566909,0.02599356,0.017046591,-0.003975046,0.03690936,-0.0080373185,0.008697749,0.000048067173,-0.0042834543,-0.0022305115,-0.021657147,0.014890846,-0.003613678,0.017046591,0.0049345396,-0.013582445,0.018429758,0.0045482498,-0.017183661,-0.044061948,-0.010946952,0.026491998,0.04849805,0.011495234,-0.027887626,0.027090123,-0.02599356,-0.005629238,0.04692797,-0.005099647,0.048572816,-0.010641659,-0.0056728516,-0.002985957,-0.0067912224,0.012355041,0.01285971,0.028809736,-0.015650963,-0.0063862414,0.03304646,-0.005096532,-0.03857913,-0.017756866,-0.04615539,-0.018429758,0.03237357,-0.0090404255,0.010124529,0.04072241,-0.040323664,-0.026591685,-0.027488874,0.011121405,-0.0036074475,0.032572944,0.034118105,0.0062740925,0.017657178,0.039949834,-0.04122085,0.017146278,0.010897108,-0.01859175,0.013632288,-0.018703898,0.042367257,0.018230382,0.004978153,-0.0038878191,0.022865858,-0.007563802,0.0049937293,-0.03145146,0.027663328,0.009202418,0.017856553,-0.020884566,-0.029009111,0.005943877,0.016984286,0.007096516,0.01652323,-0.004629246,-0.0355885,0.0107413465,-0.030055832,0.04618031,0.0058597657,-0.06370042,0.007551341,-0.026766138,-0.015825417,0.006579386,0.01520237,-0.0016635379,-0.0003699347,-0.020710113,-0.022030974,0.05876588,0.02144531,0.011545078,0.030080754,-0.030903177,-0.011065331,-0.029009111,-0.036759827,0.018379914,-0.02534559,0.006915832,0.013233538,0.021893904,0.02454809,0.011974981,-0.016211707,0.041245773,0.021258395,0.021569919,0.0013925121,-0.0006339513,0.018031007,-0.025158675,0.01053574,-0.009351949,0.01104664,-0.0143799465,0.012504572,-0.04196851,-0.006189981,-0.003445455,0.01611202,0.021769295,0.015800495,0.006784992,0.007881557,0.018317608,0.010323904,0.008934507,-0.019974917,-0.032572944,0.005900264,0.03431748,0.0010264715,-0.0022071472,-0.025507582,0.024946839,-0.02171945,-0.0010101164,-0.008460991,0.010105837,-0.03209943,0.0065544643,-0.005781885,-0.016485848,-0.011476543,0.0014407983,-0.021482693,-0.009202418,-0.008199311,-0.0077071027,0.004510867,0.015326979,-0.0039220867,0.02689075,-0.0327474,0.016074637,-0.013295842,-0.013956274,-0.0026105708,0.001507776,0.0029766115,0.021906365,0.0004797469,-0.0049314243,0.02275371,0.012099591,0.005314599,-0.016274013,0.032672632,-0.0030981058,0.017221045,0.014517017,-0.022130663,-0.03860405,-0.01794378,0.005875342,0.025108831,0.03603709,-0.0077257943,0.0005992942,0.007314583,-0.0007161157,0.014118266,0.019326946,0.009520172,-0.018354991,-0.017333193,0.019252181,-0.006903371,-0.0061962116,0.013719515,0.02237988,0.01910265,-0.007869096,-0.00871021,-0.008404916,-0.01675999,0.05577525,0.025432816,-0.00038025394,-0.00031619682,0.004912733,0.018778665,0.02067273,-0.019451557,0.029358018,-0.03264771,0.017981162,0.013295842,0.015638502,-0.019414173,-0.011775605,-0.0113830855,0.014093344,0.013208616,0.0022242812,0.0055575874,-0.019638471,-0.0029516895,0.004028005,0.011669688,0.00096183026,0.003744518,-0.04069749,0.0017647833,-0.018429758,-0.010429822,-0.007084055,0.020386128,-0.029283252,-0.021245934,0.028759893,0.006485929,0.048846956,0.024635315,0.0026728755,0.056074314,0.022816015,0.038130533,0.0029220947,-0.0016853446,-0.044385932,0.038928036,0.014616705,0.011158789,0.011800528,-0.01638616,-0.062205106,0.0010132317,-0.0013325438,-0.017046591,0.019812925,-0.016996747,0.008436069,0.008355073,0.009894001,0.027015358,0.0015140064,-0.012193047,-0.009738239,-0.010080916,-0.034790996,-0.0051339148,-0.011806758,-0.057918534,-0.009688395,-0.037756704,0.006180635,-0.0022196083,-0.049694303,0.020959333,-0.0015116701,0.0006997607,-0.0051339148,-0.005009305,0.022791093,-0.022678945,0.009669703,0.004937655,0.00071183225,0.05343259,-0.010679041,0.008180619,-0.0039220867,-0.0036292542,-0.013009241,0.0028987306,0.027189812,0.023015391,-0.012006134,-0.0025794185,-0.019202337,-0.0042055734,-0.006152598,-0.015513893,0.006342628,-0.0038442058,0.021706989,0.016585536,-0.0004400276,0.0014532593,0.014629166,0.0039719306,0.015164986,-0.026292622,-0.00792517,0.005376904,-0.0012445382,0.027364265,0.019439096,-0.0069905976,0.0011214863,-0.0044174097,-0.0009431388,-0.02731442,0.009121422,-0.005199335,-0.010130759,0.009165035,-0.021731911,0.019675853,-0.030130597,0.009432945,0.0124422675,-0.04224265,-0.012598029,-0.0054921675,-0.02950755,-0.015788034,0.0048161605,-0.0061962116,0.041644525,0.031177318,0.0005439987,0.018367453,-0.012112051,0.0002840709,0.05432978,0.015875261,-0.023426602,-0.004034235,0.0662923,-0.013059084,-0.0034298787,0.038529284,0.04710242,-0.018217921,-0.009339488,-0.013993656,0.046205234,0.00079127087,0.0065046204,-0.009931384,-0.003626139,0.024523167,0.0223425,0.0023488908,-0.012392423,0.010772498,0.027812859,0.015788034,0.0021479577,0.0053488663,0.010865956,-0.006666613,0.0040871943,0.050915476,0.018031007,0.0015833206,-0.004700897,0.01014322,0.0058192676,-0.006591847,0.025445277,-0.0053924797,0.0036323695,0.026840905,0.039700612,0.0119126765,0.020174291,-0.03302154,0.021844061,0.0076385676,-0.0032460797,-0.012847248,0.00017046202,-0.03406826,0.022915702,-0.0032928083,-0.010093376,0.026043404,0.011881524,0.030753646,0.0073644263,0.006735148,-0.0059874905,0.017245967,0.010417362,-0.00585042,-0.016735068,0.0028115038,0.01131455,-0.025108831,0.00949525,0.009588707,0.035713106,0.024535628,-0.0028987306,-0.0006818481,0.010423591,-0.025171136,0.000076761455,0.017906398,-0.025943715,-0.015314518,-0.0071401293,-0.021544997,-0.011756915,-0.029308174,-0.016560614,-0.005286562,-0.03521467,0.02599356,0.010523279,-0.028111922,-0.003314615,0.01728335,-0.012454728,-0.039825223,-0.015675886,-0.005404941,-0.00011331684,-0.024136877,-0.009208648,0.025420355,-0.0068846797,-0.034766074,0.018417297,-0.024872074,0.038703736,0.015887722,-0.0057663084,-0.0070653637,-0.014579321,0.030080754,-0.018678976,-0.00532706,-0.011794297,-0.018492062,-0.014915767,-0.022006053,-0.02079734,-0.012897092,0.007071594,-0.0071401293,-0.027239656,0.006679074,0.041918665,0.0013099583,-0.020087065,-0.009015503,-0.027015358,-0.0031370462,0.027364265,-0.0013831664,0.002691567,0.0035638341,-0.017059052,-0.019638471,0.0033862654,-0.008959429,-0.019962456,0.011744454,-0.008130776,-0.013769359,-0.024560548,-0.0067663006,-0.008753823,0.03499037,0.014878385,-0.019812925,0.050666258,-0.0031043363,-0.012946936,-0.016934443,0.002404965,-0.0045357887,0.013034163,-0.025158675,-0.010610506,0.004560711,0.0171712,0.040248897,0.008772515,0.008024857,0.02586895,-0.016348777,-0.005722695,0.00025583906,-0.0028395408,0.026716296,-0.0096260905,-0.0060279886,-0.0424171,0.0043613357,-0.005962569,-0.015974948,0.016161863,0.012971858,0.01130832,-0.0010879975,0.0029158643,-0.03170068,-0.042068195,0.0055825096,-0.016635379,-0.033445213,-0.023700744,0.025158675,0.04540773,0.022865858,-0.008124545,-0.021407926,0.008672827,-0.043488745,-0.012411115,0.038554206,0.000013069403,-0.013171233,-0.00050350063,0.025108831,0.023563672,0.035414044,-0.022641562,0.009158804,-0.008317689,-0.005342636,0.003915856,-0.019962456,-0.0037663246,-0.043762885,0.00047468464,0.025794184,0.0020186752,0.015812956,0.0064547765,0.019052805,-0.00029731067,-0.02468516,0.033370446,-0.018379914,0.026990436,0.0046448223,0.035414044,-0.0013465623,-0.01585034,0.03690936,0.00040381294,0.01910265,-0.06858511,-0.002372255,0.043314293,0.002573188,0.016747529,-0.003457916,0.013233538,-0.011065331,-0.03222404,0.03339537,-0.010473436,-0.012672795,-0.008105854,-0.000338977,-0.0044298708,-0.0015046607,0.012305196,-0.0041027707,-0.03446701,0.002573188,0.001491421,0.046903048,-0.03641092,0.014753775,0.001872259,-0.00015566463,0.048647583,-0.02078488,0.027115045,-0.027638406,0.014816079,0.014018578,-0.008778745,-0.017121358,0.0055700485,0.027264576,0.015950026,0.011800528,0.022143124,0.04239218,0.00936441,0.031177318,0.0034921835,-0.013158772,0.037781626,-0.007619876,0.008249154,0.013993656,0.032797243,0.03379412,0.038429596,0.014654087,0.028037157,0.0065606944,-0.027339343,0.023364298,-0.017183661,-0.031576067,0.008959429,-0.007875326,-0.007819251,-0.039551083,-0.003928317,-0.010978105,-0.01715874,-0.0032990389,0.034591623,-0.00036078368,-0.047401488,0.0009509269,-0.033195995,0.046977814,0.047526095,0.00988154,-0.011258476,0.012971858,-0.0043488746,-0.0060653714,-0.009943845,-0.007476575,-0.000532706,-0.03688444,-0.024909455,0.021133786,-0.0038940494,-0.007975013,0.018292688,-0.0070030587,-0.049121097,0.012660334,0.010068455,0.004224265,-0.001179897,-0.0054579,-0.05642322,-0.027115045,0.0073021217,0.023426602,-0.01844222,-0.017731944,-0.0077444855,0.026491998,-0.0020700768,-0.012080899,0.0074703447,-0.0077133332,0.014990533,-0.02741411,-0.01365721,0.0113270115]},{"id":"interface-APIErrorBody","type":"interface","source":"main","text":"Interface: APIErrorBody\nProperties: code: string, errors: { path: string; message: string; code?: string; }[], message: string","meta":{"url":"/docs/typedefs/APIErrorBody"},"embedding":[-0.0037164525,0.01809109,0.009607697,0.05178617,0.031912092,-0.0041962694,-0.02121416,-0.0068934658,0.03302504,-0.0025637562,-0.010300451,-0.0020484496,0.017137134,-0.011958517,0.006706082,0.010749037,0.026347348,0.027142312,0.01342352,0.044699643,0.02332649,-0.06450558,0.05187702,0.02382618,0.03245721,-0.011742741,0.010561653,-0.023939747,0.0014444196,0.0055760983,0.060417198,-0.032161936,0.05846386,0.009198859,0.017159848,0.037408695,0.022020478,0.010726324,0.026233783,-0.036727298,-0.012128866,-0.012480921,-0.023667188,-0.0046221428,-0.11138569,0.021305012,0.024848277,0.012287859,0.0120153,0.00741587,-0.00040422456,-0.007262556,0.009323782,0.051695317,-0.0047811354,0.028368827,-0.080223136,0.036295746,-0.020918887,0.009505488,0.045290183,0.008392539,-0.049605697,-0.017614111,-0.033683725,-0.007728177,-0.0089092655,0.040293273,0.014502399,0.030685578,0.052740127,0.028754951,0.002782371,0.015785696,-0.008125659,-0.011924447,0.0009553753,0.011055666,0.030117746,-0.08113167,-0.006104181,0.032479923,-0.043654833,-0.054284625,-0.005050855,0.0046221428,-0.04195134,0.00426157,-0.04631228,-0.011373651,-0.020680398,0.009443026,-0.047334377,0.003429698,-0.007909883,-0.046062436,-0.048379183,0.002339463,0.006615229,-0.0071035633,0.062279683,-0.015388215,-0.0218842,0.01647845,-0.015501781,-0.040315986,0.02231575,-0.03799924,-0.061507434,-0.041701496,-0.009238607,0.03711342,-0.026869753,-0.015535851,0.005048016,-0.017773105,0.004145165,-0.012355998,0.030594723,-0.017750392,0.0064789494,-0.0091591105,0.0113793295,-0.0146046085,-0.014343406,0.016637443,0.0051161554,-0.010141458,-0.050695933,0.0052439175,0.038339935,0.018193299,-0.03345659,0.040293273,-0.001604122,-0.0022273164,-0.023371916,0.049060583,-0.008074554,-0.0053347703,0.03640931,0.019272178,0.036795437,-0.02114602,-0.007830387,-0.017091706,0.021202803,0.009528201,-0.001943401,0.016660156,0.0070183887,0.03654559,-0.0298679,0.00929539,0.0012449691,-0.0557837,0.039998002,0.010107389,-0.020657685,-0.036068615,-0.011731384,-0.028777665,0.0027837905,0.0109193865,-0.006882109,0.016660156,0.037499547,-0.0143320495,-0.020725824,-0.016058255,-0.009425991,-0.020930244,-0.04869717,0.022974435,-0.021793347,-0.014036777,0.083085,-0.04281444,-0.028050842,-0.003744844,0.010828533,0.018908765,0.008846804,-0.008511784,-0.039112184,-0.0076600374,0.0172507,0.044676926,0.01708035,-0.028550534,-0.044086386,0.014797671,0.019453883,-0.004048634,0.021305012,-0.033206746,-0.022099975,-0.027142312,0.015535851,0.006206391,0.040702112,-0.009579306,0.06432387,0.0030889995,-0.041587926,-0.012333285,-0.038408075,-0.018976906,-0.024348585,-0.00049543235,0.039929863,-0.025461534,-0.01882927,-0.02037377,0.008631028,-0.0124468515,0.024076026,0.031503253,0.0023352043,0.0048066876,-0.017784461,0.050923068,0.05637424,-0.0511502,0.029459063,0.013082822,0.018942835,0.0072114514,-0.011055666,-0.012617201,-0.012492278,0.050923068,-0.015479067,0.014104918,0.015058873,-0.036136754,0.021759277,0.0042303395,-0.0034495723,0.0146046085,-0.024212306,-0.024416724,-0.03014046,0.046176,0.020612258,0.01970373,0.021134663,0.019306248,-0.0033757542,0.02174792,0.037408695,-0.0052467566,0.022940364,-0.0042473744,-0.0029271678,-0.006325635,0.027187739,-0.0018752612,-0.027528437,-0.009318103,0.019090472,-0.01198123,-0.033343025,0.003722131,-0.034387834,-0.07658902,0.04481321,0.0317531,-0.011038631,0.008818412,0.033002328,-0.010152815,0.05228586,-0.014207127,-0.021418577,-0.0067685433,0.022088619,0.045721736,-0.04090653,-0.0046562124,-0.0069445707,-0.002688679,-0.017580042,0.020987026,-0.01919268,0.024121452,-0.008579924,0.015206509,0.018817913,-0.0032366356,0.03225279,0.048878875,0.004778296,-0.029368209,0.001714849,0.035932332,0.03427427,-0.019533379,0.09008068,0.02291765,0.0018653242,-0.060598902,0.0022812602,-0.058918126,-0.030413019,0.03163953,0.01275348,0.038680635,0.020998383,-0.03057201,0.024007887,-0.042314753,-0.057282772,0.012390068,-0.042269327,-0.03647745,0.031435113,-0.060417198,-0.023576334,-0.02473471,0.007313661,-0.018465858,0.0007104983,-0.03302504,-0.033683725,-0.005326253,0.027369445,0.01120898,0.0023735329,0.044040956,-0.027437584,-0.03856707,0.010885317,0.0039180326,0.036909003,-0.02164571,-0.020078497,0.023246992,-0.00071333745,0.017784461,0.035591636,-0.009329461,-0.012617201,0.01617182,0.064551,-0.020748537,-0.03195752,-0.0042275004,-0.031866666,0.019215394,-0.0449722,0.020589545,-0.017296126,-0.0005181456,-0.033706438,0.030254025,-0.024689283,-0.024689283,-0.029527202,0.04638042,-0.0511502,-0.0040145637,-0.0093976,0.012265146,0.009255642,0.016217249,-0.010232311,-0.022065906,0.045426466,-0.035932332,0.038907766,0.0060019717,-0.048969727,-0.025893085,-0.020260204,0.0044006887,-0.06028092,-0.0062915655,0.005380197,-0.019328961,0.032298215,0.0683214,-0.047697786,0.0030293774,0.05923611,0.015024804,-0.019067759,0.016944071,0.0034211806,0.025438821,0.04456336,0.011447469,-0.061053168,-0.020805322,0.028573247,0.008449323,0.015433641,0.014502399,0.019930862,-0.043677546,0.02446215,0.012060726,0.012764837,0.018011592,0.013468946,-0.035319075,0.043586694,0.0055164765,0.01070361,-0.027414871,0.03148054,-0.04306429,0.021906912,0.020226134,0.0061268946,-0.060689755,0.034773957,-0.047061816,-0.020282917,0.01926082,0.008977405,-0.029277356,-0.0822219,0.0070865285,-0.017307483,-0.024348585,0.0014820384,-0.014650035,-0.03352473,-0.045699023,0.0004705898,0.030685578,-0.015354145,0.0036568304,0.029618055,-0.0056669516,0.01429798,-0.05900898,0.01278755,0.03902133,-0.028028129,0.014513755,0.015660774,0.014888524,-0.00095466553,-0.03372915,0.010186885,-0.008398217,0.0107092885,0.00007253151,-0.046698406,-0.012287859,-0.036727298,0.016398953,-0.03547807,-0.0069388924,0.011799525,-0.0127194105,-0.014525112,-0.0107092885,0.011600783,0.0255751,0.0071773813,0.003174174,0.024757423,-0.024053313,-0.027732857,-0.0131168915,-0.007654359,0.006177999,-0.055647418,0.00781903,0.023212923,-0.040293273,-0.0031457827,-0.02684704,-0.022395248,-0.028754951,-0.008318721,0.011822238,-0.037703965,-0.008472036,0.0137869315,-0.026688049,0.025983937,0.06332449,-0.005107638,-0.008875196,-0.022792729,0.03084457,-0.036636442,-0.011118127,0.021236872,-0.010255025,-0.013798289,-0.031934805,-0.057146493,-0.03554621,0.043609407,-0.030049607,0.04869717,-0.06078061,0.0014706817,0.0027937277,0.041042812,0.002000184,0.00865942,-0.060462624,-0.053012684,-0.0329569,0.028300688,0.007262556,-0.000926274,-0.021997765,-0.06318821,0.002413281,-0.024007887,0.015547208,-0.035250936,0.01936303,0.01946524,0.0029129721,0.03561435,-0.0032508313,0.00022819701,-0.027346732,-0.032866046,-0.006325635,0.007847422,0.008142694,0.010590045,-0.006785578,0.009425991,0.017091706,0.019964932,-0.009874578,-0.0059508667,-0.014559181,0.01050487,-0.03275248,0.0017176882,0.015444998,-0.005306379,0.043087002,-0.0036994177,0.030254025,-0.049832832,0.01613775,0.0054682107,0.0384535,0.008205155,-0.039998002,0.023110714,-0.029913327,0.026506342,0.014695461,0.023780754,-0.033842716,-0.017307483,0.009073936,0.00627453,-0.023417342,0.05987208,-0.028096268,0.0011157875,0.04077025,0.010215276,0.009352174,0.012094796,0.004312675,-0.0019462401,0.032230075,-0.013412164,0.05628339,-0.016716938,0.011890377,0.003023699,-0.03491024,0.01157807,-0.005110477,0.0048947018,-0.016864575,-0.006859396,0.069729626,-0.022838155,0.020623615,0.0348421,0.0068991445,0.019476596,0.012231075,0.06064433,0.012935186,0.032298215,-0.020294273,0.0141617,-0.009783724,0.035796054,0.016205892,0.0017176882,0.04251917,0.009584984,-0.020725824,0.021986408,-0.004190591,0.021270942,0.03007232,-0.0028065038,-0.022043193,0.01422984,0.0066436203,-0.0042104656,0.068139695,-0.03014046,-0.046970963,-0.02185013,-0.028754951,-0.029572628,-0.006785578,-0.0038555712,-0.025711378,-0.0015459193,-0.0023777916,-0.017727679,-0.0077849603,-0.009670159,0.0031543002,-0.00036767044,-0.038907766,-0.0014174477,-0.026120218,0.017262056,0.025257114,0.017829888,-0.0041366476,-0.009232929,0.049060583,-0.019010976,0.0103742685,-0.053512376,-0.012038013,0.0037192919,-0.0038640886,0.041133665,-0.03647745,0.0406794,-0.033842716,-0.026438203,-0.0005309218,-0.034773957,0.020010358,-0.016149107,-0.010828533,-0.008278973,0.023917034,0.02446215,-0.0037902705,-0.030458445,0.012390068,-0.014434259,-0.027596578,-0.00094685785,0.04329142,-0.0025027143,0.015354145,-0.03245721,0.00045781358,-0.0031656567,0.002443092,-0.035114657,0.0008318721,0.016319457,0.012072083,-0.01268534,0.00748401,0.047243524,0.003316132,0.0083016865,-0.025870372,-0.034705818,-0.0083641475,-0.023553621,0.0008886552,-0.041996766,-0.027982702,0.013673366,-0.0034211806,0.0052666306,-0.009249964,0.016092325,0.027096886,0.009164789,0.025393393,0.0020285756,0.013173674,0.0015217866,-0.0022571275,-0.023917034,0.0064392015,0.025143549,0.0097042285,0.01345759,-0.013026039,0.016921358,-0.018443145,-0.032298215,0.020498693,0.0077168206,0.039680015,0.043314133,0.008801377,-0.026233783,0.024984555,-0.0341607,0.0056896647,-0.025870372,0.03661373,-0.002034254,0.023417342,-0.0013876365,0.004551164,0.019022333,0.01016985,-0.05900898,0.008182442,0.01788667,-0.004236018,0.017023567,0.034751244,-0.0069616055,-0.014082204,-0.010010857,0.036045898,-0.026665336,0.009857543,-0.010317486,0.0018255761,0.021441292,0.023099357,0.0022258968,-0.0026929376,-0.024280446,-0.018375006,0.018102447,-0.01060708,-0.033252172,-0.027937276,-0.020146636,-0.0056328815,0.0070922067,-0.015376858,-0.027664717,0.0052978615,-0.05460261,-0.008443644,0.03765854,-0.0050451765,-0.023576334,0.0012449691,-0.045244757,-0.0037931097,-0.019272178,0.024553005,-0.009374887,-0.010243667,0.0034808028,-0.029481776,-0.011799525,-0.009034188,0.013207745,0.028868519,0.007904205,0.013253171,-0.0019008137,0.01254906,0.026778901,-0.051695317,-0.059917506,-0.022270324,-0.011197624,-0.0065130196,-0.005496602,0.009692872,-0.011328225,0.017443763,0.024757423,0.013264528,-0.008358469,0.0056811473,-0.014138987,-0.01960152,0.003466607,-0.0018227369,0.0372497,-0.04590344,0.01745512,0.013945925,-0.016932715,-0.043109715,-0.00714899,0.024484864,0.042473745,-0.0016921358,-0.03434241,-0.0056641125,0.02114602,-0.019885436,0.009323782,0.018897409,0.037953813,0.020566832,-0.048152052,0.035500783,-0.017477833,0.017829888,-0.01919268,0.013968638,0.03434241,0.027210452,0.048424613,0.015092943,0.06873024,-0.019771868,0.015195153,-0.020828035,0.027278593,0.045653597,0.000056428187,0.02167978,-0.007926918,0.0021790508,-0.008966048,0.010964813,-0.034614965,-0.005718056,-0.021838773,-0.056964785,-0.043950103,0.019590164,-0.008193798,0.0025112317,0.046562128,-0.02818712,0.023099357,-0.013775575,0.0144569725,-0.003245153,-0.004335388,-0.045562744,-0.016455736,0.021395864,0.0019150093,0.00044929612,0.04574445,-0.050468802,0.035387214,-0.049287714,-0.046743833,0.0021350437,-0.0053716796,-0.025915798,-0.020316986,0.0441091,-0.0116518885,-0.015501781,-0.014911237,-0.019351674,0.0085515315,-0.027846422,0.014286623,0.016205892,0.044018243,-0.008273295,0.0028164408,0.024371298,0.02530254,0.048333757,-0.026052078,0.000011911138,-0.008403896,0.0652324,-0.0045625204,0.0023706937,0.02600665,0.008398217,0.017148491,-0.039362032,0.010414017,-0.0017545972,0.019794581,-0.015649417,0.015149726,0.048333757,0.04299615,0.0520133,-0.015762983,-0.007535115,-0.013582513,0.016274031,0.047561508,0.014127631,-0.0022982953,-0.024825564,-0.003318971,-0.009942718,0.06014464,-0.02174792,0.064051315,-0.03836265,0.024166878,0.00082974276,0.00808591,0.005405749,-0.018477215,0.049605697,-0.061098594,-0.0076373243,0.014309336,-0.0014188673,0.0077679255,-0.032638915,0.0011335323,0.014116274,0.043177854,-0.007342052,-0.015797053,-0.015581277,-0.0048805056,-0.035091944,-0.017909383,-0.017500546,0.011038631,0.020600902,-0.0034438937,-0.029322783,-0.0049316105,-0.052376714,-0.009000118,0.01697814,-0.0028235386,-0.013605226,-0.038953193,0.011021596,-0.0030151815,-0.05473889,0.054057494,-0.010476478,-0.018840626,0.019692373,-0.018942835,0.0037249702,-0.014241196,-0.031366974,0.044472508,-0.029527202,0.029118363,-0.018533997,0.049060583,0.0085515315,0.05242214,0.035727914,-0.007943953,-0.02775557,-0.044313516,-0.019113185,-0.00926132,0.0076997858,0.033047754,-0.016239962,0.012151579,0.038203657,-0.051195625,-0.016467093,0.028777665,0.024484864,-0.013514373,0.032093797,0.0004006756,0.018477215,-0.04919686,-0.018034307,0.023939747,-0.0029243287,0.0046704086,0.027619291,0.00048088172,-0.021202803,0.0058316225,0.018886052,0.05074136,0.06037177,-0.0007424388,0.009142076,0.0050764075,-0.008648063,0.016626086,0.00600765,-0.012026656,0.00479817,0.02550696,-0.022588309,-0.053557802,-0.009602019,-0.018886052,-0.010777429,0.0063880966,0.009817795,0.011430434,-0.024984555,0.017193917,-0.010890995,-0.0039606197,0.0004251633,0.014786314,-0.018817913,-0.02973162,0.008477714,-0.0024374137,0.031139841,0.017829888,0.05551114,0.04678926,-0.014888524,0.02097567,-0.018704347,0.008619672,0.012628557,0.0030691256,0.026460916,-0.016239962,-0.004389332,-0.028936658,0.044790495,0.020759894,0.0038981584,-0.008744595,0.01617182,-0.02775557,-0.006836683,0.006904823,-0.012923829,-0.012378711,0.011186267,-0.007007032,0.025007268,0.03647745,-0.009885934,-0.00050217536,0.00959634,0.016012829,0.00042871226,0.027573863,0.024189591,-0.033910856,0.024007887,-0.007410192,-0.0018170585,0.015342789,0.037408695,0.028868519,-0.014366119,0.0023905677,0.031139841,0.01594469,-0.013809646,0.020214777,0.007682751,0.0271196,0.023917034,-0.0116518885,0.013650653,0.013718792,0.009306747,-0.020214777,-0.0093692085,-0.0015416606,0.0015473389,-0.049514845,-0.042133044,-0.017398335,-0.012299215,-0.022463387,0.011129484,-0.030935422,-0.0053177355,-0.019010976,0.010260703,0.010856925,-0.005658434,-0.0031401045,-0.02319021,-0.02332649,0.02375804,-0.014286623,0.017670894,0.00818812,0.028005416,0.012128866,-0.024189591,0.004514255,-0.022792729,0.0067231166,-0.05137733,-0.016024185,-0.0146046085,0.012901116,0.033820003,0.02332649,-0.047606934,0.00644488,0.0068934658,-0.018329578,0.021804703,0.020123923,-0.009374887,-0.023065288,-0.03990715,0.008051841,-0.006518698,-0.0006430684,-0.008772986,-0.003906676,0.0058997623,0.014138987,0.021543501,-0.02691518,-0.016455736,0.0036568304,0.02852782,-0.0341607,0.032002944,0.013241814,-0.04856089,0.005624364,-0.028028129,-0.0024587074,-0.016115038,-0.019340318,0.011396364,0.034546826,-0.0021023937,-0.009284033,0.026710762,0.0052694697,0.009942718,0.011135162,-0.02077125,-0.024575718,0.045653597,0.016228605,-0.002681581,0.029527202,0.004960002,0.032093797,0.024348585,0.03098085,-0.0012776193,-0.012605844,0.0034893204,-0.003949263,0.013014682,-0.01342352,-0.003483642,0.027074173,-0.008091589,0.03681815,0.0078531,-0.012537704,0.0051303515,0.0067685433,0.018647565,-0.011992587,-0.0057748393,-0.013128248,0.007995058,0.01419577,-0.0010937841,0.065096125,-0.041837774,0.009437348,-0.0062234257,0.0058259442,-0.031571392,0.018749774,-0.020884817,-0.034932952,-0.019840008,-0.017568685,-0.0070922067,0.007506723,-0.0021719527,-0.014797671,-0.02621107,-0.0016197374,-0.019135898,-0.024575718,0.00010522614,0.027528437,-0.021077879,-0.026688049,-0.026688049,-0.00061538664,0.010050605,-0.006047398,0.0060417196,0.06364248,-0.0028987762,-0.0071433117,0.000037507885,0.017545972,-0.024757423,0.00036057257,0.020294273,0.069547914,0.040997386,0.0023607565,0.007370444,0.032366358,-0.0031826918,-0.0076032546,0.0102493465,0.012810263,0.002859028,-0.0076997858,-0.005286505,-0.030390305,-0.009562271,0.001406091,-0.023508195,-0.00039819136,0.005252435,0.04413181,-0.030185886,0.016853219,-0.011572392,-0.0026971963,-0.025120836,-0.03527365,0.042973436,-0.006728795,-0.0007899946,0.026097504,0.023371916,0.007501045,0.02446215,0.0070865285,-0.008091589,-0.021770634,-0.045994297,0.0055874554,-0.02121416,0.010635471,-0.011697315,0.009993822,0.01798888,-0.0045681987,-0.012764837,-0.0016126395,-0.00013512599,-0.006762865,-0.016955428,-0.005814587,-0.03127612,-0.019828651,0.033070467,-0.056737654,0.0013422101,0.0008950433,0.008199477,-0.0218842,-0.014070847,-0.018375006,-0.026665336,0.023258349,0.0030861604,0.029072937,0.0067231166,0.012276502,-0.019181324,0.005564742,0.034069847,-0.03443326,0.018931478,-0.024711996,0.017511902,-0.006155286,0.01161214,-0.028641386,0.025847659,-0.0033587192,-0.017296126,0.029322783,-0.015831122,-0.00644488,0.00086310285,-0.02923193,0.00036376662,-0.005820266,-0.043268707,0.008744595,0.002856189,-0.012458208,0.00973262,0.007393157,-0.013514373,0.015785696,-0.030549297,-0.003500677,-0.0019760511,0.0105843665,-0.054284625,-0.0148544535,-0.006910501,0.0017758908,-0.024984555,0.021906912,0.02027156,-0.007614611,-0.060326345,-0.022929007,-0.0061155376,0.03752226,0.03268434,-0.027142312,0.0038555712,-0.009034188,0.007943953,0.000013253082,-0.022190828,-0.013207745,0.019908149,0.008261939,0.0042729266,0.01634217,-0.0013053011,0.0007665716,-0.00063419604,-0.030867282,-0.016285388,0.024689283,0.00016236411,0.002524008,-0.03077643,-0.008335756,-0.008642385,0.018783843,0.014502399,-0.00021027484,-0.004480185,0.016228605,0.0157062,-0.011299833,-0.00047129957,-0.015286005,-0.043836538,-0.0022372534,0.029322783,-0.01124305,-0.0072114514,0.0001607671,0.030344877,-0.004605108,0.026052078,0.0032281182,-0.02241796,-0.03245721,0.016989497,0.03134426,0.023917034,0.048742596,-0.0094316695,-0.009670159,0.0055902945,0.022077262,-0.041338082,0.007239843,-0.017898027,-0.033115894,-0.004483024,0.032797907,-0.03443326,-0.00029775628,0.02332649,-0.023917034,-0.04111095,0.019510666,0.014366119,0.016535234,-0.007245521,-0.009284033,-0.012424138,-0.02020342,0.0014387413,-0.015251935,-0.014070847,-0.00058202655,-0.027006034,0.009925682,0.028959371,0.015694844,0.04140622,0.0059962934,-0.020044427,-0.018477215,0.0053546443,-0.031934805,-0.03372915,-0.02845968,-0.0011385008,0.02950449,0.016705582,0.012912473,0.009726942,0.015558564,0.02768743,-0.024507578,-0.0025637562,-0.010720646,-0.025484247,-0.00096105365,-0.027778283,0.0036255997,-0.0031656567,-0.019851364,0.012185649,-0.023371916,0.0089717265,-0.03949831,0.005252435,0.026052078,0.0511502,0.037272412,0.0065698023,0.03395628,-0.017773105,-0.038317222,0.017364265,0.006302922,-0.009999501,-0.007171703,0.0074953665,-0.0068877875,0.036045898,0.013173674,-0.05024167,-0.0024785814,0.017466476,0.0079666665,-0.00016121072,-0.0105843665,0.052149583,-0.013843715,-0.014774958,0.01483174,-0.027800996,-0.037635826,-0.022735946,0.031775814,0.013957282,-0.009511166,-0.0034069847,0.019124541,0.0022741624,0.010794464,-0.022383891,0.0070354235,0.023803467,-0.013798289,0.013707436,-0.008772986,-0.009471417,-0.00023653702,0.05446633,-0.0028718044,0.011021596,0.007654359,0.019374387,0.0667769,-0.028936658,0.0025098121,0.003137265,0.003296258,0.007892848,0.011498574,-0.0375904,-0.014774958,0.002829217,-0.007932596,0.014218483,-0.020021714,-0.0012400005,-0.040497694,0.012344642,0.03238907,0.03600047,-0.006927536,0.018102447,-0.027233165,0.031912092,0.046925537,0.032411784,-0.0071660248,-0.0040117246,0.0033757542,-0.018545354,0.007268234,0.025007268,0.0007495367,-0.008931979,-0.007512402,-0.021736564,0.0410201,-0.023258349,0.042269327,0.012878403,-0.016603373,0.00091633695,0.05010539,-0.012390068,-0.008596959,-0.027074173,0.011924447,-0.022531526,-0.0020115406,-0.01332131,-0.020555476,-0.0018908766,-0.00781903,0.027937276,-0.02161164,0.00848907,0.005030981,-0.013605226,0.012708053,-0.0046334993,-0.01016985,0.018284151]},{"id":"interface-APIGatewayBotResponse","type":"interface","source":"main","text":"Interface: APIGatewayBotResponse\nDescription: Response from GET /gateway/bot\nurl: WebSocket URL, session_start_limit: rate limit info in ms\nProperties: session_start_limit: { total: number; remaining: number; reset_after: number; max_concurrency: number; }, shards: number, url: string","meta":{"url":"/docs/typedefs/APIGatewayBotResponse"},"embedding":[-0.040820524,-0.020061765,0.037591126,-0.007852782,-0.01793594,-0.018993044,-0.012952442,0.053017892,0.021629998,0.029506013,0.01296406,-0.031271726,-0.017413193,-0.022036577,-0.015206052,-0.013904999,-0.018354135,0.06821232,-0.038195185,0.037149698,0.034872856,-0.01564748,-0.01763391,0.06955984,-0.023012366,0.03543045,0.037056763,-0.0019675517,-0.035314284,-0.027438268,0.03905481,-0.03113233,0.0308303,0.0036243605,0.00863109,0.013695901,-0.00708609,0.022059811,0.0200153,-0.022559322,-0.052599695,-0.008613665,-0.00060333405,0.04230744,-0.06904872,-0.018319285,-0.01658842,-0.03868308,-0.0083755255,0.017029848,-0.047906615,0.013045375,-0.015206052,0.03861338,0.028646389,-0.0005521487,0.03491932,0.019190526,0.032828342,0.003458825,-0.0013518749,0.0041180635,-0.0053842664,-0.0028010383,-0.005413308,0.0146019915,0.0083000185,0.040379096,-0.0069699246,0.024394736,0.023384096,0.03935684,-0.038473982,-0.0081141535,-0.03138789,0.029993908,-0.017889472,0.008027029,-0.007968946,-0.031945486,-0.015577781,-0.02363966,-0.044003457,-0.07076796,0.007266146,-0.03491932,0.0012407918,-0.034710225,-0.0044752723,0.024627065,-0.027879698,-0.04179631,-0.040820524,0.0025643513,0.0056224056,-0.039217442,0.018539999,0.024325036,0.00032798576,-0.002857669,0.047627818,-0.092235334,-0.05970902,-0.003377509,0.0026805168,-0.011564266,0.032619245,-0.03045857,-0.034872856,-0.010425845,-0.048696537,-0.018911729,-0.009920525,0.002385747,-0.0008959257,-0.03220105,0.023953307,-0.0010694477,0.027949397,0.010681409,-0.006859567,0.042330675,0.024441201,-0.0306212,-0.02081684,-0.008514924,0.012057969,-0.012580713,-0.030853532,0.004968975,-0.010257405,-0.008718214,0.025858419,-0.008317443,-0.013568119,-0.022617405,-0.010634943,-0.020282479,-0.012638796,-0.0049980166,-0.021327969,-0.074020594,0.045374207,0.023767442,-0.026903909,0.010896315,-0.040541727,0.013881766,-0.0127433445,0.03703353,-0.026671577,0.033525337,-0.04846421,-0.017238947,0.0012553125,-0.0035837027,-0.0024961042,0.05738571,-0.046721727,-0.029947441,0.016007593,-0.016507104,-0.018783946,-0.033827364,-0.028646389,0.022849735,0.021211803,0.018191503,-0.036336537,-0.024069471,0.037428495,-0.0245806,-0.036011275,-0.032154582,-0.0068944166,-0.017750073,-0.06258992,0.008607857,0.024092706,0.003377509,0.030133307,0.003804417,-0.006853759,-0.022361841,-0.0104200365,-0.013045375,-0.009142217,0.019051127,0.025904885,-0.031085862,0.0050386745,-0.010722067,0.018795563,0.02035218,0.012917593,-0.035500146,0.026532179,-0.041285183,0.003569182,0.020410262,0.007643684,-0.011854679,0.052971426,-0.011041522,-0.0141373295,0.004858618,0.022024961,-0.030597968,-0.00597671,0.049439996,0.043864056,0.0025062687,0.016205074,-0.010658176,-0.03182932,-0.009153834,-0.014834322,0.01836575,-0.00037499645,-0.011012481,-0.0458621,0.039078042,0.0040135146,-0.008677556,0.007428778,0.030597968,0.02555639,-0.009624304,-0.020526428,0.001719248,-0.04449135,0.043701425,-0.03884571,-0.07481052,-0.011209962,0.017947555,0.04425902,0.018969811,0.018458683,-0.04781368,0.0011050234,-0.021943646,0.015566165,0.017436428,0.009264191,-0.037614357,0.00097433734,-0.03649917,0.005215827,0.044607516,-0.01772684,-0.016100526,0.027229171,-0.022059811,0.026903909,-0.046837892,-0.0153454505,0.015333833,0.026113983,-0.026439246,0.044653982,-0.0146019915,-0.02326793,0.0337809,-0.011424867,-0.015995976,0.00953718,0.0026747084,-0.021734547,-0.0028082987,-0.004812152,0.00752171,0.06542435,-0.020375412,-0.053575486,-0.0115178,0.02571902,-0.011779172,-0.03731233,0.013812067,-0.0018223448,0.005593364,0.004301024,0.061892927,0.0047221235,0.019016277,0.020526428,0.019364772,0.045443907,0.03484962,-0.004277791,0.07337007,0.061474733,-0.026276615,0.024069471,0.009043477,0.08475428,0.016936917,0.05896556,0.0061161085,0.051995635,-0.015601014,-0.005111278,-0.020340562,0.009264191,0.041354883,0.039217442,-0.019922366,0.01776169,-0.012847894,-0.016774284,-0.013138307,-0.07885308,0.02269872,-0.06407684,-0.020282479,0.060870674,0.0148807885,0.012429698,-0.047627818,-0.027020073,-0.022536088,0.024510901,-0.0044404226,-0.0026311465,-0.033664733,0.031713154,-0.0012429699,-0.0007263968,-0.00816062,0.012882743,-0.046489395,0.017959172,-0.034501124,0.0023087875,0.0019414143,-0.025207892,0.022559322,0.018725863,0.036661804,0.015659096,0.0008857612,-0.07234781,-0.032944508,0.025138194,0.044886313,0.0012306273,0.005697913,0.01601921,0.014021165,0.0016858504,0.010489736,-0.022524472,-0.020735525,0.01903951,-0.03814872,0.024510901,-0.015717179,-0.045978267,0.04288827,-0.06519203,0.01198827,0.019457705,0.03543045,-0.023999773,0.013939849,-0.030179773,-0.044839848,0.006058026,-0.02948278,0.034361728,0.0006396358,-0.020991089,-0.044468116,-0.005419116,0.03696383,-0.021420902,0.022826502,-0.030714134,-0.008421992,0.009223533,0.060591877,-0.05557353,-0.012511014,0.024046239,-0.0154383825,-0.055387665,0.062404055,-0.04223774,0.018505149,0.007806315,-0.008828571,-0.029808043,-0.055294733,0.033571802,-0.012534247,0.017111164,-0.032549545,0.004664041,0.00554109,0.021606766,-0.003740526,-0.008195469,-0.003290385,0.0013308199,-0.03038887,-0.0011950516,0.018307667,0.036313307,-0.021653231,0.023349246,-0.0277403,0.0007115131,-0.025695788,0.029575713,-0.0019893325,-0.006272932,-0.041517515,-0.0034472083,0.052832026,0.02843729,0.019469323,-0.048510674,0.035802178,-0.017773308,0.032921277,0.0012429699,0.016565187,-0.036243606,-0.018040488,-0.017808156,0.012348383,0.045722704,-0.026648344,0.0367315,0.024348268,-0.0008342128,0.0042458456,-0.036011275,-0.0058373115,-0.0010135431,-0.042330675,-0.02085169,0.019399622,-0.03273541,0.002321856,0.02488263,-0.031109096,0.017029848,-0.049718793,-0.056363456,-0.055805862,-0.0027531201,0.045420673,-0.056549318,-0.02843729,0.008439417,0.032781877,-0.007144172,0.023256315,-0.018319285,-0.0459318,-0.038288116,0.02783323,0.004820864,0.035732478,-0.016356088,-0.0045856293,-0.040820524,0.04177308,-0.010600093,0.0021534162,0.017750073,-0.019631954,0.0067956764,0.0109021235,0.042725638,0.018377367,0.0089505445,0.002404624,0.00903186,-0.020944623,-0.060127214,0.026880674,0.03475669,0.08024706,0.023535112,-0.018145036,-0.04660556,0.010019266,0.0014941775,0.0075042853,0.034640525,-0.010478119,-0.0042894077,0.0035604697,-0.06509909,-0.0521815,0.0126504125,0.0062206574,-0.042865034,-0.04328323,-0.008195469,0.0024786794,-0.00816062,-0.035848644,-0.012476165,-0.011070563,-0.012150901,-0.04486308,-0.0024365694,-0.014253495,0.008143195,0.00007001688,-0.031085862,0.0214906,-0.028948419,0.0049602627,-0.012383232,0.0034181671,-0.008538158,0.011564266,-0.0047017946,0.015531315,-0.017169246,0.0054452536,-0.004678562,-0.064309165,-0.021641616,0.027345337,0.005308759,0.00077685615,0.0006185808,0.013091841,0.0033136182,0.017831389,0.013451954,-0.00769015,-0.035755713,-0.032619245,-0.0040309397,-0.008323251,-0.0026340506,0.02911105,-0.03603451,-0.010390995,0.02948278,-0.0137656005,0.011413251,0.04479338,0.015937893,0.0008080756,0.016995,0.0068653757,0.012917593,-0.013266089,0.016332855,-0.015786879,0.0041500092,0.019899134,0.020445112,-0.0011188181,0.028228194,-0.020770375,-0.03468699,0.03452436,0.0010701738,0.032712176,-0.008997011,-0.030783832,-0.021653231,0.054923005,-0.0017482893,0.030365637,0.014299962,-0.011918571,-0.036847666,0.014346427,0.0015086982,0.007695958,-0.011093796,-0.066074885,-0.010501353,0.057106912,-0.029436314,0.020445112,0.011291278,0.0034268794,0.008886654,0.02518466,-0.022582555,0.010303872,0.01010639,0.0013388064,0.008352293,-0.019283457,0.017099548,-0.0077830823,0.000989584,0.06807293,0.016867217,-0.010669792,-0.03264248,-0.023999773,0.024789698,0.012905977,0.0046814657,0.020967856,0.019062743,-0.008090921,0.027205938,0.020328946,-0.01417218,-0.06547082,-0.018423833,0.010449078,-0.03724263,0.0020169218,0.0015014379,-0.036754735,0.003290385,0.022489622,0.0014360949,-0.018168269,-0.03180609,0.024743231,-0.011570075,-0.051670372,-0.027902931,-0.0022260195,0.02669481,-0.002985451,-0.016460638,-0.024836164,-0.0429115,0.024766464,-0.0066969357,0.05194917,-0.015194435,-0.014381277,0.014660074,-0.007132556,0.0018034679,-0.016100526,0.033897065,-0.014381277,-0.039101277,-0.032828342,-0.047070224,0.020096615,-0.023023983,-0.013591353,0.0024975562,-0.023163382,0.0064355633,-0.018818796,-0.027600901,0.0077714655,-0.01621669,-0.0013671216,-0.009746278,0.023221465,0.008265168,0.0019486747,-0.01232515,0.033897065,-0.025695788,0.011233195,-0.012998909,0.0115875,0.0077656573,0.026439246,0.060127214,0.005346513,0.026508946,0.02145575,-0.011413251,-0.036011275,-0.0011028453,0.024348268,-0.0013627654,0.016170224,-0.024487667,0.015624247,0.024394736,-0.020630976,0.071418494,0.006725977,0.04274887,0.026160449,0.018993044,0.012127669,-0.0034181671,-0.00012868948,-0.0061219167,0.008549774,0.0231053,0.06212526,-0.015903044,0.014543909,-0.010286447,-0.021316351,0.01470654,-0.027136238,0.007475244,0.014555525,0.02804233,0.01779654,-0.0039496236,-0.013591353,-0.020468345,0.03347887,-0.06017368,0.012673645,-0.021734547,0.00889827,-0.017285412,-0.009618496,0.01655357,-0.001460054,0.004820864,-0.0065168794,-0.03340917,0.015508082,-0.007330037,-0.0033978382,0.047627818,0.0055585145,-0.0026267902,0.013184774,0.026555412,0.030644434,-0.02427857,-0.008340676,0.00382765,0.018086953,-0.014299962,0.020294096,-0.02246639,-0.03552338,-0.0037201971,-0.012046353,-0.019864284,-0.00015001673,0.009699811,-0.04562977,0.010518777,0.00069554034,0.010269022,-0.023291163,-0.027763532,0.0061799996,-0.021316351,0.010489736,0.018214736,0.00061168347,0.028088795,-0.037614357,-0.012255451,-0.0034907705,-0.06802646,-0.0097695105,-0.0038595956,0.03264248,0.028530223,0.0029999716,-0.033571802,-0.031155562,0.0027444076,0.010100582,0.038427517,-0.011732706,-0.022361841,0.03024947,0.033455636,-0.029691877,-0.041935712,-0.0122903,-0.005840216,-0.041192252,0.016483871,-0.026416013,-0.0058315033,-0.016541954,0.00013431624,-0.0041151596,0.019922366,0.018296052,-0.010896315,0.003243919,-0.057943303,0.009339699,-0.010559435,-0.04042556,-0.0059592854,-0.007364887,0.010013458,-0.05464421,0.03266571,0.02609075,-0.022141127,0.015670713,-0.043956988,0.013602969,0.014195412,-0.014985337,-0.031550523,0.062311124,0.00024539942,-0.04307413,-0.011906954,0.0063426313,-0.04372466,-0.0029404368,0.028367592,0.043538794,0.01759906,-0.02367451,0.04990466,-0.009159642,0.042586237,0.020619359,0.016843984,0.017250562,0.029459547,0.032456614,-0.044444885,0.0019399623,0.018679397,-0.004513026,0.0021635806,-0.0184703,-0.003984473,-0.0009772414,0.028785788,-0.002363966,0.008032838,-0.013753984,-0.035988044,0.020654209,0.04358526,-0.0057734204,0.0070802816,-0.0064123305,-0.0043707234,-0.019318307,0.0028228194,-0.028576689,0.009810168,-0.0039292946,-0.031689923,-0.013614586,0.037451725,0.03038887,0.025974585,-0.014021165,-0.032549545,0.017866239,0.016785901,-0.019016277,-0.029506013,0.041122552,-0.022861352,-0.025951352,0.0033629886,0.007028007,0.03949624,-0.03536075,0.034477893,0.03821842,-0.008590432,0.01655357,0.06500616,-0.00852654,0.03875278,0.054923005,0.021699699,-0.0040338435,-0.012127669,0.010693026,0.024603833,-0.00087414467,-0.018528381,0.020294096,0.037823457,0.01406763,-0.00691765,-0.020665826,-0.00936874,0.020433495,0.030063607,-0.0045188344,0.017982405,0.035732478,0.02495233,0.0028896146,0.0034936746,0.027717065,-0.011761747,0.002771997,0.026903909,0.022234058,-0.03529105,0.00051294285,0.06937398,-0.0056543513,0.00970562,0.012011503,-0.010263214,-0.005439445,0.00027044758,0.0024452817,0.03612744,0.047906615,-0.041958943,-0.003502387,-0.0031509865,0.004074502,-0.011192537,-0.0040251315,0.00408031,-0.01866778,0.0033920298,0.006981541,-0.035848644,0.0050764284,0.011024097,-0.023116916,-0.021629998,0.018296052,-0.0036388813,-0.04086699,0.005137415,-0.0055352817,-0.023930073,-0.013312556,-0.0009598167,0.0069524995,-0.0016829463,-0.01121577,-0.00614515,-0.024929097,-0.016088909,-0.023198232,0.010083158,-0.02005015,0.024929097,0.01866778,-0.06342631,-0.02534729,0.037776988,0.00993795,0.029877743,-0.028762555,-0.0024554462,-0.009165451,0.04177308,0.016344473,0.05692105,0.019155676,0.014613608,-0.047023755,-0.043840826,-0.04841774,0.014729774,-0.012104435,0.03347887,-0.01252263,0.0073358454,0.023930073,-0.018307667,-0.00069554034,0.026253382,0.032526314,-0.009380356,0.029622179,-0.012720112,0.043631725,0.009432631,-0.018516766,0.0033833175,0.03122526,-0.0018223448,0.014613608,0.008921503,-0.049439996,-0.0078179315,0.004205188,0.044212554,0.02918075,0.02024763,-0.010582669,-0.028158493,0.013788833,0.022408307,-0.025672555,0.0010723519,0.022791652,0.012720112,-0.019794585,-0.015531315,0.019155676,-0.0035778945,-0.02578872,-0.004089022,-0.0015304792,-0.018284434,-0.007910864,0.0032293983,-0.029691877,-0.0066678943,-0.011541033,-0.017111164,-0.01802887,-0.033525337,0.0067143603,-0.016681353,0.0015014379,0.0005753818,0.035407215,0.045048945,0.016332855,0.040053833,-0.013126691,-0.018342517,-0.03505872,0.017517744,0.02078199,-0.04267917,-0.027438268,-0.04734902,0.06667894,0.01900466,0.019933984,0.017320262,0.014369661,0.044003457,0.02804233,0.0037231012,0.0033223305,-0.03317684,-0.002339281,0.020119848,0.005994135,0.0072371047,-0.029064585,-0.007498477,0.003029013,0.02058451,0.008689173,0.024743231,0.022303758,-0.028460525,-0.00083566486,-0.0016713297,0.010936973,-0.0038421708,0.032944508,0.01662327,-0.032224283,-0.009641728,0.03898511,0.011209962,-0.008189661,-0.00036592103,-0.0070163906,0.016936917,-0.0047221235,0.0058547365,0.013753984,0.016239924,-0.012673645,-0.014160563,0.008962161,0.0009837758,-0.0143231945,0.03213135,-0.021420902,-0.0038799245,-0.0115352245,-0.018342517,-0.00004714682,-0.0009975705,0.015101503,-0.031782854,-0.0053407047,-0.022071427,0.016704585,0.03287481,-0.018563231,-0.022989133,0.019933984,0.00903186,-0.016460638,-0.006150958,0.0014709445,-0.008619473,-0.039984133,0.016193457,0.009647537,-0.05143804,-0.017506126,0.01712278,0.026532179,-0.010907931,0.010390995,-0.005840216,0.0017119877,-0.024812931,-0.009810168,-0.000064843895,-0.0097869355,0.031202028,0.022814885,-0.036592104,0.0077656573,0.033014208,-0.009513946,-0.0034443042,-0.013916615,0.009845018,0.0027385994,0.0018659069,-0.0034065505,0.004690178,0.007643684,0.008927312,0.05701398,-0.03424556,-0.024394736,0.010489736,-0.026439246,-0.008015413,-0.037660826,0.0018005638,-0.0073590786,-0.037079997,-0.016077291,0.0013649436,0.0061974246,-0.017099548,-0.0019893325,0.004594342,0.0036417854,-0.0020648402,0.025161427,-0.021130487,0.03326977,0.0039234865,-0.018481916,0.02323308,-0.004812152,0.03324654,0.04156398,0.0023930073,-0.0072777625,0.007800507,0.0130221415,0.0246503,0.004658233,-0.01541515,0.037358794,-0.00091915875,-0.005677584,0.054040145,0.0013482447,-0.003821842,-0.003270056,0.018818796,-0.00029531424,0.009798552,-0.0031887405,-0.0066214283,0.043399397,0.00896797,0.049811725,0.04772075,0.006261315,-0.030807065,-0.046652026,0.030969698,-0.037591126,-0.009328082,0.0054423492,0.019155676,0.007881823,0.0050706198,0.037776988,0.0111634955,-0.010727875,0.022222443,-0.007475244,0.016867217,-0.00007605204,-0.04832481,0.008712405,-0.010989247,0.0014063275,0.003351372,0.017436428,-0.014660074,0.00095763855,0.013823683,0.010663984,0.04214481,0.017715225,-0.009461672,-0.0005525117,0.023407329,-0.00528843,0.027531201,0.019457705,0.004562396,0.015856577,0.032712176,0.01937639,0.013405488,0.015554548,-0.026857441,-0.018609699,0.021571916,-0.0023799387,-0.003287481,0.007422969,-0.024859397,-0.0017497414,-0.01296406,-0.009432631,-0.01541515,-0.009757894,0.018423833,-0.0051490315,0.01470654,0.0070570484,0.014718157,-0.008573007,-0.039891202,0.021920413,-0.025091728,-0.008921503,0.02639278,-0.00752171,0.014114097,0.0014121357,0.004989304,-0.020596126,-0.0069931573,-0.02219921,-0.010112199,-0.020735525,-0.012139285,-0.03519812,-0.025068494,0.008073496,0.025324058,-0.011378402,0.034570824,0.0010890507,0.017819773,0.039728567,0.02363966,-0.00219117,-0.023546727,0.00567468,0.021932028,-0.03738203,0.01252263,0.030690901,0.008927312,0.029738344,-0.013939849,-0.015089886,0.042586237,0.03038887,-0.008119962,-0.0038595956,0.010814999,-0.008102537,0.0043968605,0.031759623,-0.0063484395,0.037010297,0.016983382,-0.0055556106,-0.022419924,-0.026230149,-0.0005289156,0.009426823,-0.010652368,-0.04435195,-0.049811725,0.01900466,-0.011407442,0.019701652,-0.013544886,0.031527292,-0.007852782,-0.06500616,-0.039078042,-0.0031074246,0.016263157,0.030505035,-0.02262902,0.023430562,0.01594951,-0.018284434,-0.020503193,-0.011076371,-0.052832026,-0.044746913,-0.019724885,0.032967743,-0.0064529884,0.009821785,0.0039031575,-0.0115875,0.03333947,0.00096635096,0.005593364,-0.01726218,0.02081684,0.052274432,0.0073590786,0.014381277,0.013928232,-0.032456614,-0.014799473,-0.0520421,0.012104435,0.006232274,-0.027182706,0.013219623,-0.014195412,-0.018807178,-0.017355112,-0.0037782798,-0.015298984,-0.01504342,-0.03522135,-0.027647367,-0.024534134,-0.018923344,-0.0020140177,0.0058779693,0.038590148,0.01877233,0.002318952,-0.008456841,0.008317443,-0.027229171,0.038450748,0.0009227889,0.031039396,-0.059894882,0.015868194,-0.027391803,-0.030505035,-0.01749451,-0.007149981,0.018818796,-0.008363909,0.048092477,-0.023372479,-0.032224283,-0.017029848,-0.0029404368,0.03234045,0.019945601,0.03831135,-0.0020111136,-0.044979244,0.0070105824,-0.01017609,0.004254558,-0.024998795,-0.017099548,-0.01091374,-0.0077191913,0.02918075,-0.010170281,-0.025742253,0.004103543,-0.023128532,-0.010797574,-0.026718043,-0.011599116,0.023209848,-0.02017793,0.017111164,-0.04042556,-0.0025483787,0.007876014,-0.011262236,0.017982405,-0.008439417,-0.035337515,0.03145759,0.0016553571,0.004385244,0.013138307,-0.02427857,-0.01900466,0.047163155,0.0034559208,-0.0215603,-0.013289322,-0.0045856293,-0.058686763,0.0044200937,-0.0013141212,-0.014125713,0.006813101,0.022524472,0.0015696851,-0.019132443,-0.0052710054,0.014241879,0.00009120799,-0.016065676,-0.05050872,-0.0058315033,-0.00068464986,-0.0034762498,0.009606879,-0.023953307,0.036847666,-0.0056543513,-0.00769015,0.068862855,0.017668758,-0.003415263,0.013510036,0.016681353,-0.017924322,-0.00040331177,0.0069931573,-0.009914718,-0.0051867855,-0.0043184487,-0.001140599,-0.016332855,0.0103271045,0.033664733,0.016193457,0.014021165,0.02699684,-0.023209848,-0.0025730638,-0.03491932,0.03529105,-0.024371503,-0.02115372,0.028646389,-0.013719134,0.016239924,0.0075739846,0.018876879,0.017157631,0.0015667808,-0.015775261,0.010594285,0.02038703,-0.010617518,0.0059012026,0.012336766,-0.012023119,-0.001719248,0.0138585325,0.0044810805,0.024836164,0.025114961,0.044839848,0.021955261,0.008230319,0.021374434,0.016437406,-0.022210825,-0.043259997,0.0075797928,0.018145036,-0.02262902,-0.0016727819,0.017134398,-0.028321126,-0.012185751,-0.040913455,-0.0097695105,-0.025370525,-0.03408293,-0.01729703,-0.03738203,0.004873139,0.016065676,0.0062438906,-0.008236127,0.011099605,-0.017680375,0.010971823,0.07485699,0.027252404,-0.014276728,-0.013231239,0.005262293,-0.012871127,0.000077549485,0.029622179,-0.008363909,-0.039124507,-0.033455636,0.012778195,0.002896875,0.011204153,0.086705856,0.0034762498,-0.0027168184,0.02571902,0.005099661,0.005430733,-0.029947441,-0.031480826,-0.029970674,-0.015089886,-0.0018499341,-0.0141373295,-0.01161654,0.008346484,0.011070563,0.025114961,0.0122903,0.037103232,0.014567141,0.014114097,-0.015357067,-0.023418946,0.007004774,0.03622037]},{"id":"interface-APIGuild","type":"interface","source":"main","text":"Interface: APIGuild\nDescription: Guild from GET /guilds/{id} or gateway GUILD_CREATE\nProperties: afk_channel_id: string | null, afk_timeout: number, banner: string | null, banner_height: number | null, banner_width: number | null, default_message_notifications: DefaultMessageNotifications, disabled_operations: number, embed_splash: string | null, embed_splash_height: number | null, embed_splash_width: number | null, explicit_content_filter: GuildExplicitContentFilter, features: GuildFeature[], icon: string | null, id: string, message_history_cutoff: string | null, mfa_level: GuildMFALevel, name: string, nsfw_level: number, owner_id: string, permissions: string | null, rules_channel_id: string | null, splash: string | null, splash_card_alignment: number, splash_height: number | null, splash_width: number | null, system_channel_flags: number, system_channel_id: string | null, vanity_url_code: string | null, verification_level: GuildVerificationLevel","meta":{"url":"/docs/typedefs/APIGuild"},"embedding":[-0.03745258,0.011186976,0.036818203,0.013395092,0.00022702577,-0.024472272,-0.04567507,-0.028351726,0.03930691,0.03615943,0.024630867,-0.036720607,-0.0008074569,0.004663273,0.037891764,-0.013224299,-0.040429268,0.029693674,-0.014163663,0.016932959,0.0088507645,0.028937303,-0.014724842,0.045333482,-0.03459789,0.013797677,0.013053505,0.023301117,-0.004455881,-0.022081163,0.038184553,-0.020788012,0.025228644,-0.014822438,0.00581003,-0.009430243,0.036013033,0.010442805,-0.009930423,-0.017738128,-0.0063742585,-0.012968108,0.008997159,-0.025985016,-0.039794892,0.05401955,-0.016932959,0.0151762245,0.0030010862,0.0025558032,-0.044991896,0.016798763,-0.049237333,0.072221264,0.016200986,0.016774364,-0.028376125,-0.010607498,-0.02505785,0.05099407,-0.02608261,-0.011644458,-0.0011978421,0.007362421,0.019080076,0.012467927,-0.04108804,0.063193604,0.017396541,0.01476144,0.021471186,-0.039087318,-0.003827605,-0.018311506,-0.009308247,0.011510264,-0.02532624,0.014749241,0.018604295,-0.051677242,-0.030645238,0.026326602,-0.071586885,-0.0632912,0.04250319,-0.005245801,-0.034939475,0.0009386019,-0.017457537,0.012553324,-0.044113528,-0.0130779045,-0.095156394,-0.0067097456,-0.0033365735,-0.054653928,0.04701702,-0.0027342213,-0.030035261,0.052409213,0.095156394,-0.028083336,-0.060460906,-0.033670723,0.007697908,-0.008594574,-0.017823525,0.011821352,-0.009442442,-0.00448028,-0.08339604,0.015212824,-0.018640893,0.0037056096,-0.010168315,-0.009796228,-0.001663712,-0.017335543,0.04116124,-0.03794056,-0.06890299,-0.007984597,0.047358606,0.000098358774,0.016823161,0.0056331363,-0.01372448,-0.015469014,-0.08354244,-0.010284211,0.011479765,-0.019641256,0.026497396,0.016993957,-0.014541849,0.0004803568,-0.0422836,-0.02054402,-0.053141184,-0.036476616,-0.016420577,-0.029108096,0.04516269,0.024777262,-0.07470997,0.0014929184,-0.04301557,0.017835723,0.0026564493,0.049920507,-0.03772097,0.021666378,-0.014322257,-0.025838621,-0.00090657815,-0.021605382,-0.023837896,-0.01214464,-0.023191322,-0.010601399,0.019165473,-0.040990446,-0.009521739,0.0060540205,-0.03664741,-0.003769657,0.028571317,0.0001963363,-0.061095282,0.03084043,0.013224299,-0.0066670473,-0.06831741,-0.012736317,-0.018396903,-0.0109185865,-0.030694036,-0.014639445,-0.028107734,-0.019092277,0.026302204,-0.029937666,-0.023935493,-0.06465755,-0.03830655,0.05118926,-0.037574574,-0.016237585,0.014480851,-0.021751776,-0.05904576,0.0064230566,0.018579897,0.03059644,0.024069687,-0.016993957,0.05748422,-0.005486742,0.043893937,-0.018396903,0.033402335,-0.042625185,0.075929925,-0.007197727,0.008527476,-0.026985377,0.04884695,0.010778291,-0.016993957,0.011150377,0.014468651,-0.022825334,-0.02744896,-0.00063132605,-0.046236247,0.030206054,-0.04884695,0.0075820126,-0.0006057833,-0.021544384,-0.022276355,0.027107373,0.04299117,-0.029669276,0.013151102,0.029059298,-0.0057276827,-0.01870189,-0.007569813,0.023825698,-0.028058937,0.039209314,-0.031913992,-0.041820016,-0.025375038,-0.02032443,0.0026716988,0.07090371,0.023972092,-0.018287107,-0.008033396,-0.032597166,-0.0100585185,0.005364747,0.0058161295,-0.04508949,0.011376069,0.007203827,-0.011333371,0.033329137,0.04662663,0.01951926,-0.026424197,0.0007239663,0.02742456,-0.014834638,-0.023569506,0.017628333,0.009723031,-0.021251595,0.016237585,-0.0017552085,-0.027936941,0.005724633,0.0064291563,0.022752138,-0.014944433,0.026399799,-0.023252318,0.016847562,0.0092960475,-0.018055316,0.06397437,-0.039136115,0.00065496267,0.006252263,0.01265092,0.009399744,0.016701167,-0.05031089,-0.019958444,-0.029498482,0.0064718546,0.04774899,-0.006813442,0.03481748,0.04147843,-0.009131354,0.047187813,0.047992982,-0.0020144486,0.03010846,0.041746818,-0.006148567,0.018409101,0.014688243,0.05377556,0.025716625,0.07553954,0.052945994,0.026229005,-0.014615046,-0.024203882,-0.045431077,-0.004059396,-0.00094622665,0.04960332,0.02927889,-0.008204189,-0.013944072,0.05114046,-0.026155809,-0.028449321,0.022020165,-0.055581093,0.008490878,0.04079525,0.0211174,-0.009546138,0.035403058,0.019165473,-0.006386458,-0.015542211,-0.03462229,0.014297858,-0.050213296,0.046504635,-0.04274718,-0.0026442497,0.021605382,0.047919784,-0.06656068,-0.0023834847,0.025960617,0.027546557,0.011241874,-0.018299306,0.056361865,0.06734145,0.029864468,0.018604295,-0.017774725,-0.016701167,0.004980461,0.033060748,-0.006642648,-0.037867364,0.012175138,0.022093363,0.02453327,-0.007600312,0.04396713,-0.03532986,-0.034988273,-0.041649222,-0.06987895,0.048383366,0.008222489,-0.04457711,0.049139738,-0.027278166,0.007594212,-0.003772707,0.029327689,-0.012821714,0.013065705,-0.016213186,0.019409465,-0.02874211,-0.048700552,0.036330223,0.04567507,-0.025009053,-0.028376125,-0.009967023,-0.0028912905,-0.0049133636,0.012943709,0.015883798,-0.01716475,0.03750138,-0.019860847,0.028376125,-0.024582068,0.019982843,-0.025106648,-0.010241512,0.030986825,-0.05987533,0.01398067,0.036476616,-0.00897276,-0.019287469,-0.049627718,0.00553249,-0.015578809,0.027790546,-0.022971729,0.00422104,0.0024993801,0.03237757,0.015688606,-0.023398712,-0.006618249,-0.027546557,-0.002349936,0.030938027,0.007362421,0.047870986,-0.0066365483,-0.0129193105,-0.0036598612,0.020873409,0.0043582846,0.017237946,-0.04713901,-0.02321572,-0.06460875,0.013382893,0.06490154,0.014871236,0.022800935,-0.013870874,-0.014493051,0.019421663,-0.0071855276,0.010772192,0.0023118122,-0.051872432,-0.06636549,-0.0711477,-0.0014098091,0.042186,-0.006176016,0.009052057,-0.015737403,0.010162215,-0.030669637,-0.038477343,0.032499567,-0.030157257,-0.0060570706,-0.02028783,0.0015577284,-0.015810601,0.0028562166,0.05645946,-0.07461237,0.023288917,-0.038428545,-0.021483386,0.021153998,0.0012664645,0.042649582,-0.002084596,-0.025789822,0.0068195416,0.03828215,-0.031084422,0.012053143,0.0005996835,0.012028744,-0.019702254,0.055044312,0.00022130723,0.003245077,-0.06719505,-0.016444977,0.018872684,0.029059298,-0.02530184,-0.0016926859,0.026716987,-0.016200986,-0.016713366,0.00553249,0.0051726038,0.013346294,0.036476616,0.053531572,-0.009979222,-0.0028668912,-0.031987187,-0.03586664,0.04355235,0.0764667,0.0040502464,-0.0067402446,-0.036183827,0.0030422597,0.012345932,-0.0014708068,0.03193839,-0.012858313,-0.007765006,-0.04804178,-0.03454909,-0.055825084,-0.008423781,0.004095995,0.0039922986,-0.03725739,-0.002131869,-0.0047608693,0.047505,-0.042405594,-0.04618745,-0.049408127,-0.042356793,-0.0036232627,-0.016432777,-0.010985684,-0.0061821155,-0.0052884994,-0.018299306,0.014480851,-0.051921234,0.035378657,-0.011430967,0.0136512825,-0.012955909,0.012455728,0.006807342,-0.0027357463,0.010717294,-0.0011391318,-0.014529649,-0.08461599,-0.010881987,0.025765423,0.01029031,-0.011815252,0.035012674,0.03059644,-0.005087207,-0.004434532,-0.025033452,-0.0005253426,0.022727739,-0.057581816,-0.0067707435,-0.0023514607,0.01637178,0.014676044,-0.009027658,0.03357313,-0.029059298,-0.006514553,0.025716625,0.009363145,0.029156895,-0.030498844,-0.0022752138,-0.0069537363,0.0016530374,0.037525777,0.006496254,-0.02559463,0.014200262,-0.00922895,-0.011205276,-0.0042362893,0.01505423,-0.00316883,-0.019982843,-0.005669735,0.014017269,0.04694382,-0.01293151,-0.022886332,0.0024155085,0.009881625,0.00017746515,0.018518899,0.038062558,0.012242236,-0.04904214,0.034988273,0.03084043,0.021032002,-0.017176948,-0.05699624,0.03269476,0.040551264,-0.02608261,-0.015444615,-0.015090828,0.012504526,0.01134557,0.056605853,-0.0051085562,0.022203159,0.012449628,-0.01240083,-0.0058191796,-0.016176587,0.005523341,-0.0043704845,-0.024374677,0.03401231,0.018579897,0.009784029,-0.03513467,0.00060197094,0.02134919,-0.0059991227,0.039355706,-0.008350584,-0.001422771,0.011022282,0.002792169,0.0063986573,-0.02822973,-0.03769657,-0.044991896,-0.0079296995,-0.02505785,0.01897028,0.019580258,-0.012724117,-0.0109185865,-0.0035988635,0.013285296,0.037232988,0.022154361,0.0044894298,-0.044943098,-0.030523242,-0.011961646,-0.031474806,-0.018030917,-0.0034982173,-0.0000075830135,-0.016469376,-0.009631535,-0.010265911,0.008838565,0.01767713,0.006697546,0.0017872322,0.046382643,-0.0047364705,0.009674233,-0.03474428,0.0368914,-0.008472579,-0.015505612,-0.01003412,-0.024923654,-0.002191342,-0.01502983,-0.006435256,0.023386514,-0.0069232373,0.03513467,-0.012638721,-0.009405843,0.034915075,-0.032597166,0.014810239,-0.04377194,0.007606412,0.03381712,0.04355235,0.021007603,-0.012516726,-0.016835362,0.023410913,-0.037842967,-0.00026476808,0.017396541,0.02291073,-0.04618745,0.019141074,0.0063620587,-0.030523242,0.0004323211,-0.052604407,-0.0027448959,0.0065389522,-0.0012466402,0.014163663,-0.037379384,-0.009058157,0.01688416,-0.025789822,0.04274718,0.0051116063,0.03613503,-0.02400869,0.01609119,0.01794552,0.027595354,-0.013639083,0.012626521,0.036208227,0.009997521,0.03640342,0.0016072891,-0.023020528,0.004263738,0.025838621,0.0040014484,-0.025106648,-0.001739959,0.014688243,0.010491602,0.025521433,0.019482661,-0.028400524,-0.059582543,0.02691218,-0.039794892,0.0017857073,-0.0015028305,0.03186519,-0.011967747,-0.020165836,0.016823161,-0.0048706653,0.009387544,0.0052397014,-0.022788737,0.0016042392,-0.010040219,0.010265911,0.007826003,0.0068195416,-0.006886639,-0.021751776,-0.020690415,0.023606105,0.011912849,0.021861572,-0.014737042,0.025155446,0.017847924,-0.001134557,-0.012992508,-0.0045290785,0.009521739,0.025375038,0.00659385,0.0038886026,-0.031596802,-0.020629417,0.01135167,0.003406721,-0.025009053,0.02766855,-0.012217836,0.008381083,-0.040453665,0.017347742,-0.010747792,-0.0448455,0.0097718295,0.0048676156,-0.0447967,0.03725739,0.031913992,-0.0044741803,0.02664379,0.049139738,-0.019982843,0.0057581817,-0.014163663,-0.013541487,0.021080801,0.017872322,-0.012870512,-0.020104839,-0.012217836,-0.020788012,0.026351001,-0.057142634,-0.029913265,-0.05348277,0.02693658,-0.0069842353,0.0015127426,-0.015347018,0.004699872,0.027766148,0.005065858,0.000025137719,0.0237281,-0.0011071081,0.014078266,-0.019360665,-0.046870623,0.02847372,-0.0078016045,-0.0018802538,-0.010455004,0.0067646434,-0.009960922,-0.09730351,0.005663635,0.04374754,-0.0053403475,-0.0028287678,-0.0115834605,0.014358856,0.00553249,-0.03801376,-0.024716264,0.028376125,-0.0034738183,-0.005254951,-0.009674233,0.054507535,-0.0016515123,0.0018787287,-0.008911762,0.04294237,0.031328414,0.0071550286,0.037745368,-0.004672423,0.029620478,0.013004707,-0.007338022,0.015627608,-0.031182017,0.024386875,-0.0017186098,-0.005352547,-0.0050811074,-0.015725205,-0.009570537,-0.008521377,0.018531097,-0.0065023536,-0.0001544957,-0.0063437596,-0.016652368,0.017433139,-0.0055538393,-0.03381712,0.023288917,0.00042202775,0.003242027,0.006514553,0.012455728,-0.018396903,0.026180208,-0.012504526,0.019177673,0.029718073,0.026180208,-0.000037122813,0.011504164,-0.06358399,-0.009552238,-0.050359692,-0.033402335,0.029449685,0.027009776,0.016957358,-0.0139684705,0.007051333,-0.025155446,-0.0010758467,-0.026546193,-0.025789822,-0.014395454,0.0017460588,0.016579172,0.010070718,0.0036354621,0.0023240119,0.060021725,-0.01607899,-0.00063971325,0.010479403,0.0061912653,-0.027546557,0.0029446634,0.035012674,0.0070269336,0.0053006993,0.023349915,-0.034671087,0.015639808,-0.01711595,-0.013504888,0.019226471,0.020495223,0.01634738,0.029742472,-0.007935799,-0.009710832,0.02608261,-0.014956633,0.004163092,-0.033060748,0.028888505,-0.00764911,-0.014053867,-0.051042866,-0.019568058,-0.028400524,0.008039495,0.037745368,-0.0044101328,0.015761802,0.014407654,0.018567696,0.0032877754,0.0010781342,-0.022752138,-0.010137816,0.02162978,0.02214216,0.007850402,-0.0013266997,-0.017445339,0.003748308,0.007490516,-0.020568421,0.013883074,-0.006563351,0.02265454,-0.008808066,-0.014883436,0.0020144486,-0.04008768,-0.0008417681,-0.009125254,0.018604295,-0.025692226,-0.0059167757,-0.003455519,-0.021068601,-0.057337828,-0.016005794,-0.0056361863,-0.012821714,-0.03584224,-0.003242027,0.01080879,0.024350276,0.007594212,0.008289586,-0.0029324638,-0.028790908,0.0027875942,-0.047090214,-0.024813859,0.0123154335,0.0005581289,0.0115529625,-0.035403058,0.02188597,-0.03381712,0.046285044,0.005328148,0.014529649,0.024460074,-0.010076818,-0.033109546,-0.02004384,-0.028668914,0.005913726,-0.01977545,-0.0018650043,-0.0054196445,0.018909283,0.012821714,-0.02400869,-0.009832827,0.0474318,0.024130685,-0.016652368,0.001584415,0.03374392,0.016920758,-0.011711556,-0.016396178,-0.032231178,0.04723661,-0.0021196697,0.018531097,-0.020214634,0.010192714,-0.014419854,0.0119982455,0.03401231,0.015481213,0.012211737,-0.01818951,-0.03903852,0.025155446,0.026229005,0.0008623548,-0.013992869,0.019995041,0.01345609,-0.0024078838,-0.027278166,-0.02822973,-0.009704732,-0.033963513,0.013797677,-0.0110771805,0.021190597,-0.011559062,0.0075027156,0.03247517,0.007228226,0.028961701,0.014810239,-0.039746094,-0.024435673,0.00040830328,0.0005668973,0.008405481,-0.018262709,-0.007783305,0.0105038015,-0.00922285,0.011796953,-0.049554523,-0.014700443,-0.025497034,0.017469738,0.02004384,0.025667828,-0.0009386019,-0.024874857,0.033133943,-0.015810601,0.028839707,0.030694036,0.03872133,0.031596802,0.019982843,0.014968833,-0.021410188,-0.02217876,-0.0077589056,0.0041234437,0.023862295,0.047895383,0.0035988635,0.013492689,-0.0051634545,-0.00090886554,-0.012858313,-0.015932595,-0.010125617,-0.010705094,0.011113779,0.0050231596,-0.010997883,0.0062888614,-0.0013205999,0.0016820113,-0.018860485,-0.022471549,0.009052057,0.020775812,-0.018384703,-0.028156532,0.0019199022,0.003928251,0.036842603,-0.021202797,0.016786564,0.005145155,-0.013004707,0.0035012672,-0.030645238,0.02030003,0.004175292,0.02139799,-0.040844053,0.0021547433,-0.0051512546,0.016164387,-0.027619753,0.010473303,-0.016847562,-0.011912849,0.0131877,-0.001973275,-0.002083071,0.04535788,-0.007783305,-0.056020275,0.040258475,-0.012455728,-0.00050056225,-0.010357407,0.013102303,0.020385427,-0.04167362,-0.005407445,-0.039233714,-0.029425284,-0.0062095644,0.008198089,0.03032805,-0.01477364,0.03664741,0.01372448,0.009125254,-0.040429268,0.012577723,-0.017250147,0.036842603,0.028546918,-0.007807704,-0.03562265,-0.005505041,-0.0040502464,0.0030117608,-0.015444615,0.022068964,-0.004571777,-0.025375038,-0.012809514,0.052409213,0.011388268,0.014200262,-0.013224299,0.03830655,-0.014114865,-0.00047692566,-0.010192714,-0.01451745,-0.0105587,-0.05070128,0.021178396,0.029864468,-0.008509178,-0.0047578197,0.008478679,-0.0036842604,-0.014590647,-0.005358647,0.0030178607,0.0040227976,-0.018262709,0.008625073,-0.0063193603,0.057972204,-0.0030925828,-0.0091374535,0.0028241929,0.017298944,0.037525777,0.014663844,0.031157618,-0.012272735,0.005694134,-0.002086121,-0.0006496254,0.014005069,0.0040014484,0.009631535,-0.010692894,-0.003723909,0.013151102,0.032841153,-0.012419129,0.013541487,0.015383617,0.028986102,0.03245077,-0.0018284057,-0.017982118,0.03245077,0.012589923,0.018909283,0.025716625,-0.023435311,0.008155391,-0.0028135183,0.019751051,-0.031035623,0.014395454,0.008368882,-0.0066304486,0.023874495,-0.004016698,0.034207504,-0.016066791,-0.020531822,0.001291626,-0.02298393,-0.0063681584,-0.0021562683,-0.052799597,-0.006734145,-0.013931872,-0.029864468,0.022251956,-0.014139264,-0.017640531,0.010461103,-0.009979222,0.022093363,0.051823635,-0.0065267524,-0.009942623,-0.018421302,0.014139264,-0.0184701,0.0040197475,0.0051543047,0.03925811,0.016810963,0.0042301896,-0.00422409,0.03720859,0.02031223,-0.017347742,-0.00012771391,0.017774725,0.012419129,0.007051333,-0.016518174,-0.023349915,-0.028693313,0.034646686,0.0047669695,-0.03296315,-0.0077223075,0.030669637,-0.050018106,0.061632063,0.015139626,0.0010743218,-0.0040532965,0.015212824,-0.012870512,-0.013785478,-0.00066334987,0.040258475,0.0030620839,0.011821352,-0.008496978,0.021190597,-0.02744896,-0.0018253558,-0.008948361,0.023130324,0.022081163,-0.007978498,-0.01504203,0.0136512825,-0.0049713114,0.02769295,0.016749965,0.0080882935,-0.009155753,-0.0062949616,0.0053403475,-0.011156477,-0.017262345,-0.021666378,0.034890678,-0.029888866,-0.0014410703,-0.028205331,0.041356433,0.014407654,0.021666378,-0.026570592,-0.018848285,0.005465393,-0.009106955,-0.020568421,0.018799488,0.015993593,-0.008295686,0.0077162073,0.03874573,-0.025814222,-0.008564075,0.0048066177,0.007606412,0.0051726038,-0.04433312,-0.013675681,-0.010881987,0.0027113473,-0.010137816,-0.033963513,0.020690415,-0.008289586,-0.00013648233,-0.007624711,-0.0112662725,-0.013114503,-0.054458737,-0.02212996,-0.008411581,-0.038257748,0.00738682,-0.040038884,0.01108938,0.03462229,0.013297496,-0.0022858884,-0.019494861,0.0051573543,-0.033109546,0.0078931,0.002877566,0.009558338,-0.0008097443,-0.00026248067,-0.0032389772,0.005642286,-0.0049255635,0.015652006,-0.010698995,-0.017579533,0.009363145,-0.03408551,-0.017274546,-0.008381083,-0.04013648,-0.041283235,-0.0048706653,-0.018543297,0.029669276,0.03088923,0.0012329158,-0.010509902,-0.006880539,-0.0066853464,-0.003138331,-0.017396541,-0.022886332,-0.03032805,-0.025155446,-0.04774899,-0.016810963,-0.03740378,0.027082974,0.0057642814,0.013090104,-0.013163301,-0.027131772,0.016420577,0.031840794,-0.0237403,-0.013553686,-0.002319437,-0.017957719,0.04382074,-0.0015722153,0.0030666587,-0.021288194,0.015090828,0.012980308,-0.013370693,0.01371228,-0.0054745423,0.003109357,-0.0017689329,0.007179428,0.022593543,0.037062194,0.021544384,-0.011382168,-0.06377918,-0.0071123303,-0.010326909,-0.017652731,-0.01213244,0.0157862,0.0037635574,0.0059259254,0.003455519,-0.028132133,-0.011095479,-0.035525054,-0.032328773,-0.043576747,-0.0052092024,-0.00017708392,0.020910008,-0.009289948,-0.00037284836,-0.024411274,0.0032145781,-0.033036347,0.009631535,-0.019799849,-0.02718057,-0.029425284,0.014859037,0.01426126,0.017847924,0.010497702,-0.006642648,-0.01951926,-0.031206418,-0.0050262096,-0.015456814,0.0023682353,-0.014395454,-0.023349915,0.001225291,-0.00048226296,-0.029132497,0.019909644,-0.0056178872,0.004879815,0.006041821,-0.016652368,-0.009204551,0.0053098486,0.008045595,-0.028376125,-0.0050323093,-0.005437944,-0.04413793,0.012352032,0.0028394423,0.0263754,-0.0126021225,-0.019433863,0.047895383,0.04294237,0.01712815,0.0075515136,0.020373227,-0.016993957,-0.002137969,0.000029378965,-0.0036110631,0.017335543,-0.0056270366,-0.00075332145,-0.038379744,0.032426372,0.023105925,0.013297496,-0.0027342213,0.03325594,0.0032389772,0.01160176,-0.023032727,0.032816757,-0.0038062558,-0.011821352,0.016701167,0.0018421302,0.01265092,-0.024325877,0.017274546,-0.007283124,-0.007100131,-0.01950706,-0.015359217,0.025253043,-0.00013857913,-0.009698632,0.04079525,0.0012230036,-0.017067153,0.02298393,-0.0032603263,0.004385734,-0.024216082,0.050945267,0.009186252,0.028424922,0.0117420545,0.030035261,0.0045748265,-0.02876651,-0.012846113,0.005694134,0.00055507896,-0.0028241929,0.026716987,-0.007051333,-0.0046236245,-0.008393282,-0.02927889,0.0030132858,-0.0063742585,-0.0052671502,-0.037598975,-0.0003720859,0.01871409,0.0068500405,-0.016444977,0.031060023,-0.043576747,0.06148567,0.048895746,0.036476616,-0.042771578,0.0028196182,-0.019873047,0.0002746802,-0.009820628,0.039965685,-0.0082163885,-0.0071428292,-0.022727739,-0.016701167,0.05031089,-0.012065343,0.05572749,0.022215357,0.004721221,0.023093725,0.0146028465,-0.021214996,-0.017494136,-0.033890314,-0.0124435285,0.0030514093,0.016505973,-0.027278166,0.008826366,-0.009265549,-0.009631535,0.0033030247,0.041722417,-0.029742472,0.0342807,0.033939112,0.0055812886,-0.017091552,-0.011711556,-0.0062827617]},{"id":"interface-APIGuildAuditLog","type":"interface","source":"main","text":"Interface: APIGuildAuditLog\nDescription: Response from GET /guilds/{id}/audit-logs\nProperties: audit_log_entries: APIGuildAuditLogEntry[], users: { id: Snowflake; username?: string; discriminator?: string; avatar?: string | null; }[], webhooks: { id: Snowflake; name?: string; avatar?: string | null; }[]","meta":{"url":"/docs/typedefs/APIGuildAuditLog"},"embedding":[-0.033107203,0.038304128,0.0026985155,-0.027794274,0.0097906375,-0.005979945,-0.04364026,-0.008149197,0.04751475,-0.012887913,0.030995952,-0.053454097,0.06069267,-0.00094977306,0.017539626,0.0068209656,-0.046470728,0.016646404,-0.030833548,0.04612272,0.04087939,0.012412301,0.021124113,-0.0039846967,-0.048535578,0.01316632,-0.041737814,0.004176101,-0.01401314,0.007957793,0.010596857,-0.033200007,0.061527893,0.035775267,-0.0073545785,0.025103008,0.0039353953,-0.008903216,0.036981698,-0.02765507,-0.029603919,-0.02804948,-0.017365621,0.014361149,-0.029186308,0.024151785,-0.012470302,0.021889731,-0.003996297,0.02266695,-0.051737256,0.028188683,-0.016669605,0.027515868,0.0039005945,-0.0031668767,-0.0006655661,0.037376106,-0.040461782,0.03162237,-0.012911113,0.01890846,0.019824881,-0.032480787,0.04899959,-0.004991021,-0.042549834,0.051273245,0.06672482,-0.0029218209,0.06273432,0.0018980961,-0.0700657,0.0073603787,-0.020950109,0.00036577138,0.0015761883,-0.031923976,-0.0071805744,-0.061249487,-0.0020880506,0.055263743,-0.0536861,-0.0907142,0.050902035,-0.013920338,-0.025845427,-0.029418314,0.0012107794,0.026054231,0.010127046,0.029580718,-0.063708745,-0.017388823,0.034754444,-0.057862204,0.022597348,-0.012284698,0.008798813,0.044382676,0.042665835,-0.046470728,-0.01769043,-0.042225026,0.0134679265,0.04326905,0.00658896,-0.0064961575,-0.0058726426,-0.0247318,-0.05224767,-0.010776661,-0.019047663,-0.009222223,-0.027794274,0.012447102,-0.050948437,0.01693641,0.04029938,-0.04317625,-0.03129756,-0.009222223,0.005260728,-0.034313634,0.017191617,0.016518801,-0.0059973453,-0.036100075,-0.02800308,0.034731243,0.015115167,0.000012279986,-0.0016298395,-0.025311815,-0.03916255,0.008816214,-0.022086935,-0.013943538,-0.031088755,-0.01484836,0.0029551717,0.0026695149,-0.0073139775,0.010678059,-0.063569546,-0.0054173316,0.0020822505,0.0206253,-0.0016921911,0.0077025867,-0.03180797,0.035264857,-0.0065657594,0.004152901,0.0151847685,-0.010886864,-0.004161601,-0.019906083,-0.025613422,0.00007390648,0.025868628,-0.010852063,-0.024406992,0.005939344,-0.025195811,-0.017968835,0.017992036,-0.0069833696,-0.048489176,-0.00495042,-0.013212721,0.00044842338,-0.05647017,-0.007215375,-0.025219012,-0.010817262,-0.022748152,-0.02800308,-0.033594415,-0.036378484,-0.012354299,-0.033269607,-0.0056261364,-0.037631314,-0.029047105,0.024987007,-0.049695607,-0.006130749,0.035311256,-0.009007619,-0.030091131,0.01197149,-0.012551504,0.0371905,-0.021796929,-0.06440476,0.021657726,0.017562827,0.030346336,0.005165025,-0.003178477,-0.02313096,0.032016777,-0.045913912,-0.011716284,0.0164724,0.0033147805,-0.058001406,0.001234705,-0.019627675,0.03459204,-0.0017429423,-0.016542,-0.0009272975,-0.04663313,0.029000703,-0.03087995,-0.015300771,0.034731243,-0.004408107,-0.043895464,0.029812723,0.043524258,-0.021240115,0.028235085,0.025451018,0.007545983,-0.012481903,-0.019964084,0.0133867245,-0.054799728,0.020126488,-0.04029938,-0.020358494,0.008584208,-0.025172612,0.04654033,0.03746891,0.018119639,-0.0045125093,0.003952796,-0.018038439,-0.007580784,0.02103131,0.02180853,-0.007574984,0.016019989,-0.006635361,-0.013073517,0.06936968,0.0024795602,0.033710416,0.00078084395,-0.010347451,-0.010979666,-0.0021054512,-0.029163107,0.022643749,-0.013711533,-0.03046234,0.05062363,0.003752691,-0.036076877,0.01563718,-0.02021929,0.0038222927,0.031181557,0.0076909866,-0.061667096,0.012307899,-0.03340881,0.02306136,0.05804781,-0.0152659705,-0.0014703356,0.0008743712,0.02723746,0.010057444,0.0027072157,-0.038072124,-0.0134679265,0.009726836,0.026889453,0.06839526,-0.0058146412,0.030949552,0.014523553,-0.025381416,0.049231596,0.052850883,0.00032807045,-0.0011832287,0.012586306,0.0025738124,-0.004657513,0.0035786869,0.043547455,-0.0046343124,0.08078436,0.010231448,0.00987184,-0.015451575,-0.016112791,-0.059207838,0.002797118,0.012307899,0.03387282,0.035334457,-0.036332082,-0.003912195,0.025775826,0.012621107,-0.026007831,0.010927465,-0.03997457,-0.008120197,0.004205102,0.020010486,0.012389101,0.003543886,0.03220238,-0.032759193,0.020868907,-0.0146395555,-0.030392738,-0.016298395,0.008050595,-0.036610488,0.004295004,-0.0043182047,0.04992761,-0.006559959,-0.003741091,0.028791899,0.044313077,-0.0029044205,0.0036134876,0.011472679,0.028722297,0.0042283027,0.0047619157,-0.031459965,-0.027840676,0.010040044,-0.0032451788,0.017064014,-0.00034855222,0.027353464,-0.020752903,0.0453803,-0.024244588,0.028304687,-0.03582167,0.020312093,-0.044637885,-0.051319644,0.0075981845,-0.014059541,0.007551783,0.06885927,-0.030392738,-0.03162237,0.0025071108,-0.0046372125,0.017064014,0.0033031802,-0.018873658,-0.004376206,0.032295182,-0.06955529,0.05818701,0.016170792,-0.013746333,-0.02969672,-0.035125654,0.038512934,-0.03925535,0.000025398273,0.004483509,0.014627955,-0.01485996,0.020938508,0.03756171,-0.017075615,0.008265201,-0.0076329852,-0.032968,0.04282824,-0.04904599,0.008549407,0.013920338,-0.0005118624,-0.037306506,-0.06069267,0.0050055212,-0.042317826,0.037329707,0.015161568,0.0075923842,-0.0077721886,0.030671144,0.01071866,-0.0062177507,-0.011060868,-0.015544377,-0.0038019922,-0.0043501058,0.05851182,0.036053676,-0.0371905,0.02389658,0.026703848,0.0101734465,-0.0781395,0.057119787,-0.07507702,0.01156548,-0.01977848,0.0012020791,0.01569518,0.0035351857,0.028304687,-0.017156817,0.013792735,-0.014465551,-0.00165014,0.02721426,0.019627675,-0.03097275,-0.06338394,-0.06361594,0.0058755428,0.039394557,-0.032828797,0.002762317,-0.06542559,0.01523117,-0.03127436,-0.04282824,0.0069949697,-0.008421805,-0.026193436,0.0020488997,0.01443075,0.007986794,-0.023641374,0.045635507,-0.04456828,0.046656333,-0.0066469614,0.029859124,-0.0009722486,-0.01028365,0.028281486,-0.019546473,-0.053732503,-0.03596087,0.030207133,-0.020799305,-0.0073545785,-0.01690161,-0.00043066044,0.00001784223,0.060739074,0.03995137,-0.01981328,-0.055588547,-0.002637614,-0.015416774,0.0066933623,-0.03835053,-0.014523553,0.004660413,-0.005808841,-0.026541444,0.006293153,0.0012876312,-0.012412301,0.006803565,0.0127603095,-0.009129422,0.012412301,-0.040693786,-0.035566464,0.06876647,0.05939344,0.010098045,0.007163174,-0.012655907,0.00659476,-0.024638997,0.016553601,0.018247243,-0.011200071,-0.02228414,-0.025265412,-0.04250343,-0.080737956,0.0063801548,0.006797765,0.021669326,-0.06626081,-0.013873937,0.037260104,0.011246473,0.0046923137,-0.07099372,-0.052108463,-0.009645634,0.012145495,0.020451296,0.01773683,-0.019314468,-0.003378582,0.0023766076,0.013433126,-0.05554215,-0.014129143,-0.024453394,0.0031465765,0.010121246,-0.004045598,0.025891827,-0.037654515,0.014616354,0.020184489,-0.024012582,-0.08282601,0.012157095,0.010991267,-0.0066875624,0.011072469,0.051226843,0.020729704,0.0021156014,-0.027260661,0.008996018,-0.014233545,0.019558074,-0.04867478,0.0038802943,0.036332082,-0.039371356,-0.00453281,-0.005243327,-0.025613422,-0.015033965,-0.030276734,0.031111956,0.026611045,0.02017289,-0.033037603,0.000659041,-0.020892108,0.009309226,0.0031349761,0.030183932,-0.023641374,0.004161601,0.004457408,0.0205557,0.00078084395,0.0288151,-0.02226094,-0.028699096,0.011571281,0.036424883,-0.0073255775,0.018421248,0.016832009,0.0076793865,0.0049562203,-0.005124424,0.011890288,0.004643013,0.009297625,-0.028119082,0.047978763,0.000012971018,0.044011466,-0.013641931,-0.060182262,0.018711254,0.057073385,-0.00905402,-0.020428095,0.02187813,0.038211327,-0.0061945505,-0.025891827,0.004071699,0.03545046,-0.037399307,-0.030323137,0.0017965935,-0.0022649548,-0.003543886,-0.001153503,-0.03872174,0.031993575,0.016309995,0.046192322,-0.015358773,-0.014291547,0.040554583,0.019534875,0.007957793,0.015544377,-0.019824881,-0.0052665276,-0.008427604,-0.0054985336,-0.028559893,-0.041807413,-0.019337669,-0.023246964,-0.029766323,0.005643537,-0.013873937,-0.010591057,0.012389101,-0.013549129,0.045148294,0.025288614,0.019964084,0.020416496,-0.029580718,-0.040206574,-0.054799728,0.010654858,-0.019639276,-0.008033195,0.015381973,-0.024569396,-0.012783511,0.008943817,0.0076329852,0.0013275072,0.0036424883,0.007998394,0.044591483,0.022608949,0.03220238,-0.0153471725,0.047561154,-0.032851998,0.010150246,-0.011205872,-0.06505438,-0.0021939033,-0.0049591204,-0.024987007,0.0062699523,-0.009036619,0.0037207904,0.008166598,0.004645913,0.016391197,-0.005837842,0.0006760789,-0.056238163,0.033571213,0.00085987087,0.034012027,-0.019697279,0.004643013,-0.0024520096,0.019674078,0.019175265,0.030671144,-0.006809365,0.044313077,-0.014511952,0.021994134,0.017180016,0.0021736028,-0.016542,-0.026889453,0.005562335,0.022342142,0.0095876325,-0.008804614,0.0034800845,-0.025172612,-0.0038454933,-0.035659265,0.061435092,0.0075285826,0.04210902,0.009576032,0.009953042,0.022806153,0.02429099,-0.009436829,0.010805662,-0.00453571,-0.009941441,0.0121338945,-0.016333196,-0.0048344173,0.005916144,-0.0068731667,-0.009837039,-0.034522437,0.006472957,0.06523998,0.020010486,0.010196648,-0.0028362689,-0.042712238,-0.030415937,0.03250399,-0.04867478,0.015497976,-0.015764782,0.026518244,-0.038512934,-0.07025131,0.014732357,-0.0030363738,0.021483721,0.014500352,-0.011797486,-0.041436207,0.013154719,0.0076909866,-0.012783511,0.01729602,0.011820687,-0.013096718,-0.042758636,-0.012783511,0.0077141873,0.0061887503,-0.0133055225,0.020532498,-0.008874215,0.024940604,-0.01440755,-0.011229073,-0.005649337,0.0058407416,0.0036047874,-0.008630609,-0.027724672,-0.026286237,-0.031877574,0.028536692,-0.008822014,-0.028211884,0.005434732,0.006049547,-0.024940604,-0.036494486,0.005315829,-0.06537919,0.013920338,0.024499794,-0.019036062,0.016286796,0.019650877,-0.006356954,0.050345223,0.0411346,-0.022794554,0.0046749134,-0.030230334,0.004324005,0.019882882,-0.028559893,-0.007853391,-0.03092635,-0.0132243205,0.015405173,0.06101748,-0.041900218,0.011055068,-0.054567724,0.04707394,0.00031846398,0.007186374,0.009268625,-0.008282601,-0.016344797,0.0025361115,-0.009135222,0.015602378,-0.02965032,-0.0067745643,-0.000054557575,-0.045937113,-0.008259401,0.029580718,0.00034547088,0.00015180056,0.019558074,-0.022191338,-0.07651546,0.008508806,0.034452837,-0.009964642,-0.015138367,0.02353697,0.0069485684,0.034406435,-0.06691042,-0.010196648,0.02106611,-0.064822376,-0.005312929,-0.020544099,0.046888337,-0.0010657759,0.004283404,0.02347897,0.05025242,0.057490993,-0.01279511,0.038396932,0.0006420031,0.011855488,0.030949552,0.014732357,-0.008433404,0.018293643,0.058558222,-0.06347674,-0.00094034785,-0.013456327,-0.009767437,-0.034522437,0.009170023,-0.030531941,0.004495109,0.015602378,-0.01980168,-0.032225583,-0.01770203,-0.010376452,-0.026587846,-0.007122573,0.0147207575,0.014894761,-0.011089869,0.040716987,-0.009251225,0.028606294,0.016588403,0.027075058,0.021576524,0.005846542,0.002266405,0.035195254,-0.022968557,-0.029882325,-0.032318383,-0.032828797,-0.016112791,0.024082184,-0.009175823,-0.01980168,0.0077141873,-0.019952483,-0.050902035,-0.0012397801,0.010904265,-0.011002867,0.017470025,0.022759752,-0.026239837,0.0039266953,0.014987564,0.030995952,-0.0007801189,-0.028374288,-0.0019517473,-0.004790916,0.011060868,-0.008294201,0.034916848,0.0073661786,0.00028601944,0.0057363394,0.0050548227,0.01895486,-0.0127603095,-0.039440956,0.00782439,0.02920951,0.002266405,0.003010273,0.00988344,0.0061075483,0.032341585,0.0037584912,-0.016182393,-0.029163107,0.003250979,0.0070993723,0.0206601,0.01072446,-0.0148019595,-0.015115167,0.022608949,0.04241063,-0.006055347,0.009274425,0.010318451,0.029534318,-0.018653253,0.005072223,0.00022566173,0.002228704,0.037584912,-0.013456327,0.029163107,0.008514606,0.0011781536,0.026680648,-0.0072617764,0.012818311,0.03913935,0.0013637581,0.009332427,-0.05521734,-0.02512621,0.038860943,-0.023722576,-0.029023904,0.012969115,0.03744571,-0.037747316,-0.0029493715,0.019836482,-0.025172612,-0.022400143,0.0117916865,-0.010596857,-0.017574426,-0.009303425,0.0060669472,-0.01073026,0.013920338,-0.0060785473,0.020915307,-0.028931102,-0.015845984,-0.006304753,-0.014279947,-0.025659822,0.007168974,-0.02269015,0.0066179605,-0.015915586,-0.000011815521,-0.057862204,0.03872174,0.03779372,0.03788652,0.022898955,0.023409368,-0.04656353,-0.021750528,-0.02387338,-0.011878688,-0.04157541,0.005478233,0.010266249,0.011339275,0.03575207,0.0026927153,-0.006548359,0.030137531,0.038164925,0.0063395537,0.030415937,0.025497418,-0.0009207723,0.0071167727,-0.029835925,-0.0013478077,0.025683023,0.029395113,0.003987597,-0.027121458,-0.0041123,0.006809365,-0.015149968,0.05735179,0.013839136,-0.013955139,-0.009947241,-0.02389658,0.0025781626,0.00068622915,-0.012934314,0.009170023,0.02101971,0.0060437466,-0.007928792,-0.019674078,0.013920338,-0.0018386446,-0.040160175,0.013978339,-0.0022649548,0.0059248437,0.020787705,-0.014743958,0.003337981,-0.0009765987,0.01068386,0.018734455,-0.024546195,-0.038095325,0.0026216635,0.006467157,0.03999777,0.011664083,-0.005979945,0.06394075,-0.033988826,0.023606572,-0.047213145,-0.044034667,-0.022713352,0.026982255,0.025195811,0.013723133,-0.028235085,-0.013409926,0.008195599,0.01975528,0.030160733,-0.008775613,0.023757376,0.0077315876,-0.0015964888,0.035589665,-0.023258565,-0.013734734,0.01153648,0.0010955016,0.026541444,0.021193715,-0.012389101,0.03426723,-0.001896646,0.022748152,0.004976521,0.0091642225,-0.007493782,-0.028119082,-0.0048953188,0.017272819,-0.028165484,0.012191895,0.00020862381,0.033733618,-0.030601542,-0.038211327,0.027910277,0.028791899,-0.03953376,0.0019067962,-0.0029682221,-0.0037700916,0.010776661,-0.004857618,0.033640817,0.012180296,-0.033200007,0.018815657,-0.046192322,0.021727327,-0.006809365,0.0206601,-0.0040165973,-0.02758547,-0.02020769,-0.02020769,-0.01154228,0.005020022,0.0044371076,-0.010434453,0.006049547,0.033153605,0.014198745,0.029441515,-0.006554159,-0.032921597,-0.007389379,-0.0052143265,-0.0017559926,-0.03050874,0.040902592,0.028699096,-0.05684138,0.00078084395,-0.0045009092,-0.027446266,-0.0028261186,0.0060437466,0.006919568,0.0120526925,0.0328752,0.013212721,0.012075893,0.018746056,0.036772892,0.012574705,0.005863942,0.0046894136,0.0022417544,-0.03953376,-0.022782953,-0.01485996,0.004231203,-0.0014565603,0.017968835,0.007371979,0.008294201,-0.011403076,0.0125979055,-0.020022085,-0.025474219,-0.02351377,0.027330263,-0.015312372,-0.018363245,-0.012203496,-0.00025719998,0.007093572,-0.02431419,0.021344518,0.0035960872,-0.030694345,0.005945144,-0.012226697,-0.012319499,-0.012644307,0.003213278,-0.010272049,0.013154719,-0.016646404,-0.00076489354,0.018050037,0.05804781,-0.0035235854,-0.010753461,0.002556412,-0.004445808,0.013792735,0.011768485,0.014732357,0.02352537,0.013665131,-0.011704684,0.013943538,-0.00032970175,-0.022782953,0.015323971,-0.025195811,-0.024662198,0.04370986,0.03206318,-0.011014467,-0.012238297,0.0206253,0.005930644,0.00535353,0.000069782946,-0.02804948,0.042294625,-0.0069775693,0.023154162,0.016379597,-0.0037613914,0.01566038,0.0046343124,0.015196369,-0.029905526,-0.016008388,0.013456327,0.026959054,0.020787705,-0.001191204,0.035705667,0.010933265,-0.017191617,-0.002924721,-0.023618173,0.013293923,0.0036714892,-0.016588403,0.0016718906,0.01856045,-0.030555142,-0.010446054,0.009094621,0.009854439,0.007522783,-0.017238019,0.0055884356,0.06885927,-0.0086596105,-0.008410204,-0.0069543687,0.038164925,-0.010689659,-0.013212721,0.029232709,-0.030137531,0.0058175414,0.020822505,0.017145216,0.044730686,0.016982812,0.00453571,0.020752903,0.028652696,0.015196369,0.0056261364,-0.0048083165,0.008242,-0.017597627,0.044939492,-0.019036062,-0.023757376,0.0042631035,0.022144938,-0.036355283,0.04904599,0.015277571,-0.01607799,0.0061539495,0.012447102,0.01445395,-0.041436207,0.0056406367,0.06055347,0.0040252977,0.018444447,-0.00536513,-0.0055739353,-0.01485996,-0.028629495,-0.011797486,0.032851998,0.010747661,0.019070862,0.0024940604,0.008938017,0.013804335,0.01357233,0.007980994,0.010504055,0.0037178902,0.01939567,-0.029139906,0.0038831942,-0.008555207,-0.0027101159,0.014256746,-0.0016994412,-0.012029492,-0.004979421,0.0328752,0.029093506,-0.0029551717,0.0030421738,0.023722576,0.0033234807,0.005692838,-0.023444168,0.0022562547,0.019244866,-0.025868628,-0.014929562,0.032411188,-0.016553601,0.04029938,0.029789522,-0.0047967164,-0.025613422,-0.02099651,0.013769534,-0.015950387,0.00006121867,-0.00048032415,0.0005807391,-0.0024433092,0.012586306,0.009268625,-0.01361873,0.0097500365,-0.007244376,-0.0059509445,-0.027562268,-0.031158356,-0.001980748,0.047097143,0.0015573378,0.019732079,0.016588403,-0.018734455,-0.0030624743,0.007511182,0.008984418,-0.04408107,0.02637904,0.038536135,0.004788016,-0.019082462,0.003674389,0.0017690429,0.014674356,0.0045154095,0.0029986727,0.03846653,-0.017806431,-0.017632429,-0.019279668,-0.032666393,0.0033988825,0.003915095,-0.022864155,-0.018432848,-0.022562547,0.007615585,0.012191895,0.016321596,-0.0095470315,-0.0035380858,-0.0060959477,-0.009210624,-0.00701237,0.0073835794,0.0056957384,0.0066991625,-0.04213222,0.006304753,0.0068325656,0.014732357,0.0014246596,0.032457586,-0.022539347,-0.051041238,0.042596232,-0.014279947,0.008839414,0.023583373,0.014314747,-0.027121458,0.045542706,0.0075923842,0.014929562,-0.031552766,-0.010875264,0.052897282,0.011681483,-0.0038193928,0.012853112,-0.005191126,-0.024058985,0.001321707,0.04626192,0.048396375,0.02714466,0.01357233,-0.06677122,0.004573411,-0.01443075,0.0009359977,0.0013724583,0.0125979055,-0.0032741795,-0.01073026,-0.0023867579,-0.022701751,-0.026263038,-0.024476593,-0.017133616,-0.024615798,-0.015289171,0.00032082028,0.00658316,-0.006304753,-0.008746612,0.0074763815,0.0086596105,-0.015718382,-0.014082742,0.006675962,-0.0018922959,-0.022829354,-0.0011440777,-0.01030685,0.021704126,0.030021528,-0.02637904,-0.018711254,-0.006664362,0.0053796307,-0.018421248,-0.018316844,-0.03918575,0.0012013542,0.033640817,0.008096997,-0.005153425,0.012586306,0.0055739353,-0.010347451,0.0038164926,-0.040902592,-0.01975528,-0.028072681,0.00015479125,-0.024360592,0.025010208,-0.017180016,-0.022516146,-0.026866252,0.031135155,0.008682811,-0.030555142,0.007893992,0.039023347,0.038211327,-0.0013492578,-0.012075893,0.026216635,-0.037051298,-0.0535005,0.006965969,-0.0045937113,-0.0064845574,-0.013549129,-0.01523117,-0.01774843,0.037051298,0.02103131,-0.0017182917,0.020265691,0.037051298,-0.0032016777,0.011733685,-0.036007274,0.022736551,-0.019244866,-0.025335014,0.023734177,-0.0064845574,0.009599233,-0.05447492,0.007905592,0.030833548,-0.008143398,0.0043849065,-0.019337669,0.03860574,0.0056406367,0.029186308,0.04238743,0.025497418,-0.012180296,0.034452837,0.00044697334,-0.028119082,-0.0048112166,0.024615798,0.030624744,0.029534318,0.02925591,0.012864713,0.011084069,-0.026123835,-0.010382252,-0.01734242,-0.024801401,-0.025636623,0.00784179,-0.0246854,0.0013122818,0.0000936179,-0.022864155,-0.04612272,0.0127603095,-0.029487915,-0.023455769,-0.001483386,0.011675684,0.02723746,0.012400701,0.03953376,-0.02760867,0.009581832,0.03496325,0.028791899,-0.0009606483,-0.031135155,0.019500073,-0.0061249486,-0.0034974848,0.027028656,0.00008790838,-0.042619433,-0.007499582,0.013015516,0.020950109,-0.022388544,0.03412803,-0.016530402,-0.023629773,0.007864991,0.01940727,0.027887076,-0.019592876,-0.019592876,-0.008926417,0.0060321465,-0.03206318,0.014291547,-0.010074845,0.0048924186,-0.008752412,0.004489309,0.008764013,0.0019256467,0.004645913,0.007737388,-0.02142572,-0.020033685,0.021622924,-0.01357233]},{"id":"interface-APIGuildAuditLogEntry","type":"interface","source":"main","text":"Interface: APIGuildAuditLogEntry\nDescription: Audit log entry from GET /guilds/{id}/audit-logs\nProperties: action_type: number, changes: { key: string; old_value?: string | number | boolean | null; new_value?: string | number | boolean | null; }[], id: string, reason: string | null, target_id: string | null, user_id: string | null","meta":{"url":"/docs/typedefs/APIGuildAuditLogEntry"},"embedding":[-0.032944333,0.029680165,-0.009160211,-0.015521018,-0.011143573,0.024946038,-0.054604586,-0.019455316,0.03862961,-0.021973697,0.05304816,-0.05239965,0.05862535,0.028534463,0.039991483,-0.0035235737,-0.044033863,0.007819956,-0.023713868,0.0368354,0.035905864,0.017747572,0.033355057,0.016720762,-0.034111653,-0.006058169,-0.013348508,0.0045828074,-0.030415144,0.013661955,0.028858718,-0.036705695,0.065542795,0.025032505,-0.01869872,0.02725906,0.0071174027,-0.040250886,0.04565514,-0.040121183,-0.014688763,-0.018374465,-0.007144424,0.008398212,-0.02217906,-0.0024373187,-0.01572638,0.023000507,-0.020038975,0.024989272,-0.035451908,-0.008452253,-0.01623438,0.029182972,0.0067715305,-0.010776083,-0.00862519,0.030890718,-0.036921866,0.020601017,-0.02652408,0.0052610417,0.0061608497,-0.046476588,0.040856164,0.017553018,-0.072071135,0.05624748,0.08543045,0.0043098927,0.058365945,0.0067066797,-0.065542795,0.022125017,-0.018536592,0.014829273,0.00015199465,-0.045611907,0.0100357,-0.052010544,-0.013035061,0.051707905,-0.07142262,-0.064375475,0.07073088,-0.0051745735,-0.031993184,-0.05092969,-0.008889998,-0.003637063,-0.00862519,0.023130208,-0.04405548,-0.010894977,0.038435057,-0.022741102,-0.012418976,-0.023324762,-0.008954849,0.034025185,0.023324762,-0.049675904,0.0023413931,-0.017001783,-0.016537018,0.03363608,0.0021535952,-0.00065931905,-0.0067337006,-0.0440771,-0.049805608,-0.010900381,-0.052442882,0.003947808,-0.037354205,0.00084306364,-0.008884594,0.017877273,0.042369355,-0.03625174,-0.057068925,-0.009111573,0.000998436,-0.021789953,0.008744083,0.0062365094,-0.013586295,-0.033376675,-0.017369274,0.029961186,0.03752714,0.01848255,-0.0123000825,0.0013787603,-0.03389548,0.010278892,0.00072214345,-0.00027544808,-0.04889769,-0.045914546,-0.025421612,0.0061608497,0.00659319,0.019725528,-0.059100926,0.046908926,-0.013942976,0.02710774,0.019412082,0.01297021,-0.046779227,0.034630463,-0.00016305648,-0.007982084,0.0317554,-0.01963906,-0.0021698081,-0.029982803,-0.020157868,0.017952932,0.038024332,-0.019314805,-0.009014296,0.011802891,-0.009695232,-0.00833336,0.017498976,-0.012159572,-0.030998802,0.0037370417,-0.007955062,-0.015175146,-0.050972927,0.029982803,-0.020449698,-0.013078296,-0.03102042,-0.0368354,-0.0401428,-0.023605783,-0.0133377,-0.03138791,-0.027194208,-0.02695642,-0.003337127,0.023778718,-0.038067568,0.0027588718,0.023605783,-0.041547906,-0.020017358,-0.004423382,-0.010678806,0.022741102,-0.009019701,-0.046001013,0.02775625,0.01869872,0.032122888,0.0024062442,-0.020114634,-0.040553525,0.038283736,-0.0617382,-0.01694774,0.010203232,0.0061608497,-0.059792668,0.002214393,-0.012743232,0.006722892,-0.013867317,-0.05058382,-0.0018847337,-0.02898842,0.051967308,-0.020741528,-0.018817613,0.028058888,-0.008630594,-0.006652637,0.0032803824,0.052356414,-0.013921359,0.018720336,0.020968506,0.018979741,0.011662381,-0.022351995,0.012613529,-0.06087352,0.015920933,-0.031690545,-0.036619227,-0.00044314886,0.00306151,0.01108953,0.022157442,0.015380507,0.011100338,0.0099384235,-0.008122594,-0.018320423,0.01725038,0.0113057,0.0039424035,0.028383143,0.003231744,-0.00097209023,0.057933606,0.005636637,0.03702995,-0.0077821263,-0.015683146,-0.01876357,0.015466976,-0.019412082,0.017455742,-0.02544323,-0.020763146,0.0534805,-0.0058149775,-0.032836247,-0.0257891,-0.019249953,0.01471038,0.026783485,0.006522935,-0.063899904,-0.020168677,-0.014872508,0.007290339,0.06701275,-0.03406842,0.004952999,-0.005139446,0.042996246,0.010138381,0.01725038,-0.035905864,-0.0015239997,-0.018342039,0.03357123,0.07760509,-0.006755318,0.009754679,0.008944041,-0.028664164,0.05451812,0.04703863,-0.0027534675,-0.0065499563,0.023930037,-0.015888508,-0.020093018,0.004236935,0.031085271,-0.027086122,0.06632101,0.02587557,0.008960254,-0.02535676,-0.03638144,-0.0699959,0.010678806,0.024167825,0.049675904,0.046303652,-0.036359824,-0.023022123,0.03718127,0.0036884036,-0.02174672,-0.008122594,-0.028837102,0.014991402,0.0039451057,0.023649016,-0.0102086365,0.014256422,0.020384846,-0.036143653,0.033700928,0.018093443,-0.017434124,-0.015250806,0.008095573,-0.02399489,0.026415994,0.014623912,0.051967308,-0.018752763,0.016850464,0.024902804,0.062948756,0.026070122,-0.013035061,0.014256422,0.03984016,0.0043261056,0.0015280528,-0.050324414,-0.022697868,0.022805953,0.011143573,0.0022387123,0.0028615526,0.0042612543,-0.019001357,0.031236589,-0.012689189,0.014580678,-0.018612253,0.0004526063,-0.055815138,-0.043061096,-0.006928254,-0.01660187,0.01891489,0.08089088,-0.015250806,-0.023670634,-0.0052637435,-0.023800336,0.005896041,-0.0045584883,-0.030566461,0.023821954,0.015034636,-0.05542603,0.050237946,-0.004642254,-0.028793866,-0.03441429,-0.04131012,0.021843996,-0.02101174,-0.013856508,0.012040678,0.005928467,-0.016623486,0.023324762,0.028685782,0.0012699998,-0.0014942763,-0.0145050185,-0.015780423,0.048162714,-0.02674025,-0.008209062,0.008317147,0.003850531,-0.024794718,-0.04412033,-0.018450124,-0.004677382,0.059792668,0.020482123,0.025551314,0.00092750514,0.035257354,0.0091061685,-0.00862519,-0.01855821,-0.023757102,-0.004658467,-0.0011180051,0.050194714,0.033074036,-0.017423315,0.02717259,0.04081293,0.0156182945,-0.042455822,0.07211437,-0.07163879,0.008868381,0.026178207,-0.006317573,0.0071930625,0.013413359,0.0078794025,-0.01326204,0.0011727231,-0.017304422,-0.020903656,0.010613956,0.02246008,-0.011629955,-0.058971222,-0.04094263,0.020341612,0.04260714,-0.039732076,0.025097357,-0.06662364,-0.0025589145,-0.045914546,-0.0075281262,0.008641402,-0.0068255733,-0.019995742,0.010862551,0.017747572,0.013910551,0.006571573,0.015575061,-0.073108755,0.05542603,0.0005674467,-0.0077659134,0.0037343397,-0.016061444,0.028275058,-0.02137923,-0.049589437,-0.0114678275,0.012559487,-0.027237441,0.0046611694,-0.038521525,-0.010565317,0.020190295,0.043082714,0.013035061,-0.00840902,-0.07414637,-0.014753615,-0.04044544,-0.0075335302,-0.041223653,-0.017607061,0.026610548,-0.023281528,-0.031604078,0.030177357,0.00026497734,-0.033355057,-0.013715997,-0.004734127,-0.03361446,0.023951655,-0.02892357,-0.014126721,0.05732833,0.03514927,0.0019036486,0.02725906,-0.0048827436,-0.013467401,-0.02950723,0.017952932,0.009516892,-0.008506296,0.002425159,-0.0072362963,-0.0032911908,-0.08171233,0.024232676,0.01608306,0.035559993,-0.06852595,-0.015466976,0.026588932,-0.0017536805,0.0032911908,-0.047298033,-0.032555226,0.0036613822,-0.006225701,0.010813912,0.020525359,0.001369303,-0.020741528,0.011500253,-0.010624764,-0.04377446,0.0070255306,-0.017131487,0.015899315,0.014829273,0.0074308496,0.042931397,-0.0048449137,-0.0052394243,0.020049782,-0.012429785,-0.08006943,0.00823068,0.0012112284,0.007679445,0.028556079,0.056723054,0.028945185,-0.020471316,-0.026826719,0.01695855,-0.001487521,0.019628251,-0.02442723,0.011673189,0.039710462,0.0011274626,-0.004569297,-0.014440168,-0.0036667865,-0.014191572,-0.011889359,0.025335144,0.020406464,0.010776083,-0.036122035,-0.0035803185,-0.020093018,-0.0038451268,0.013661955,0.03238229,-0.011024679,-0.0033722545,-0.0064364667,0.026048506,-0.0060311477,0.013197189,-0.033960335,-0.022957273,0.008484679,0.02572425,0.0013280954,0.027713016,0.00045665947,0.011846125,-0.00280751,0.0074308496,0.0026656485,0.01253787,-0.000893053,-0.022805953,0.049632672,0.01754221,0.026070122,0.00061946263,-0.06333786,0.026697015,0.030977186,-0.0024292122,-0.020384846,0.03897548,0.029917952,-0.008998083,0.0034019782,0.014007827,0.022741102,-0.014342891,-0.022049358,0.011705615,0.009711445,-0.011910977,0.0139537845,-0.03512765,0.03320374,0.018385272,0.05188084,-0.011759657,0.00854953,0.014818465,0.015304848,0.0037937865,-0.0027142868,-0.027302293,-0.012667572,-0.012483828,-0.0030804249,-0.017671911,-0.033960335,-0.004893552,-0.02442723,-0.03847829,0.0052205096,-0.015747996,0.0025778292,0.021638634,0.0049692118,0.048638288,0.015650721,0.020449698,0.020817187,-0.040856164,-0.04803301,-0.042088334,-0.02217906,-0.013510636,-0.041483056,0.010051913,-0.022524932,-0.014677955,0.01811506,0.018298805,-0.0125811035,0.00663102,-0.006966084,0.048811223,0.02399489,0.021725101,-0.02544323,0.029463993,-0.028837102,0.016277613,-0.01398621,-0.05356697,0.008095573,0.00011661367,-0.039191652,0.01928238,-0.00014887031,0.012148764,0.0073011476,0.012656763,0.019520167,-0.0023440954,-0.01471038,-0.045482203,0.01355387,-0.0004130877,0.025205443,-0.03906195,0.005442084,-0.0023535527,0.011208423,0.018287996,0.0031452759,0.0019684995,0.03893225,-0.03415489,0.04284493,0.030544845,0.0015429145,-0.019044591,-0.017661102,0.0055339565,0.014332082,0.013661955,0.0063878284,0.010241061,-0.023432847,-0.012775657,-0.0058311904,0.044487823,0.011008466,0.043061096,0.013932168,0.020449698,0.01891489,0.034630463,-0.028080504,0.001464553,-0.0076416153,0.026653782,0.013110721,-0.02609174,0.0074092327,0.00854953,-0.009441232,-0.0037532547,-0.011651572,-0.011500253,0.07073088,0.023930037,0.01979038,-0.0062202965,-0.036619227,-0.03361446,0.018612253,-0.02341123,0.014483402,-0.02130357,0.029809866,-0.04833565,-0.043925777,0.012667572,-0.011683998,0.016990975,0.008327955,-0.015348082,-0.042001866,0.014937359,0.019077018,-0.035387058,0.016753187,0.008436041,-0.02492442,-0.03318212,0.0055988072,0.0045611905,-0.004658467,0.0025575634,0.0349331,-0.0045368713,0.016039826,0.014051061,0.003866744,-0.01833123,0.004190999,-0.0060257437,-0.017617868,-0.016407317,-0.021476507,-0.027215825,0.0054258713,-0.009370977,-0.017055826,0.002318425,0.0038802545,-0.03748391,-0.04608748,0.0076632327,-0.06238671,0.0063445945,0.009035913,-0.028512845,0.025140591,-0.0029074887,-0.014007827,0.058452412,0.03724612,-0.019952506,0.0048557227,-0.031712163,0.004334212,0.019098634,-0.013456593,-0.015099486,-0.02144408,-0.025205443,0.0054501905,0.064116076,-0.03653276,0.032274205,-0.05183761,0.045957778,0.010878764,-0.012440593,-0.006944467,-0.0153264655,-0.011694807,-0.0020252443,0.0047476375,0.011856934,-0.03984016,-0.024729868,-0.0025264889,-0.01572638,-0.010949019,0.039667226,-0.012051487,0.012699997,0.018244762,-0.020817187,-0.07587573,0.009073743,0.056333948,0.0009781701,-0.0023224782,0.003847829,0.01449421,0.042218033,-0.064116076,-0.021995315,0.0032371483,-0.053307563,0.013489018,-0.009608764,0.04349344,0.010100551,0.0010578828,0.0010551807,0.055771902,0.05724186,-0.008673828,0.05218348,-0.015661528,0.013099913,0.019898465,0.030371908,-0.008517105,0.009754679,0.055555735,-0.04885446,0.028685782,-0.037570376,-0.039191652,-0.03625174,0.013856508,-0.0084306365,-0.00081266474,0.029896334,-0.016093869,-0.03450076,-0.0040964247,-0.011327317,-0.020060591,0.021562975,0.02529191,-0.015272423,0.004296382,0.032425527,-0.0012416274,0.01594255,0.011284083,0.046995394,0.01646136,0.007906424,0.0103545515,0.018569017,-0.023216676,-0.02427591,-0.031128505,-0.052875225,0.0028048079,0.008138807,0.0043558287,-0.0175314,-0.00072146795,-0.03117174,-0.052140243,0.01811506,0.028015655,-0.035451908,0.023735484,0.03478178,-0.03406842,0.013618721,0.013272849,0.05015148,-0.013964593,-0.025118973,0.0076416153,-0.00014659039,0.02130357,0.012073104,0.03022059,0.027713016,0.0023049144,-0.0002702127,0.005469105,0.032447144,-0.021281954,-0.038737696,0.025399994,0.006993105,0.015380507,0.0038316164,0.011392168,-0.00051340414,0.033657696,-0.008376594,-0.038607992,-0.003147978,-0.015445359,0.023865188,0.014018635,0.011921785,-0.015391316,0.009392594,0.02470825,0.017012592,-0.0042153182,0.003169595,0.013737614,0.025810719,-0.014894125,0.00920885,-0.005896041,-0.010154594,0.024319144,0.00052759034,0.030307058,0.001977957,-0.01674238,0.0008754892,-0.011057104,-0.0007552445,0.035343822,0.017498976,-0.0032992973,-0.04375284,-0.03893225,0.024383996,0.008900806,-0.033679314,0.018817613,0.055598967,-0.05789037,-0.011694807,0.035776164,-0.021400847,-0.041785695,0.0020630741,-0.013888934,-0.005077297,-0.012224423,0.0125702955,-0.013370125,0.016645104,-0.019444507,0.005079999,-0.015553444,-0.028058888,0.014418551,-0.027734634,-0.014148338,-0.0133917425,-0.006890424,0.008490084,-0.027345527,0.002550808,-0.037591994,0.020525359,0.043601524,0.029723398,0.032511994,0.020125443,-0.026415994,-0.022784336,-0.016126296,-0.015683146,-0.05283199,-0.009322339,0.012083912,0.02760493,0.021854805,-0.01608306,-0.017336847,0.013564678,0.042671993,0.0020698295,0.010370764,0.019152677,-0.019012166,-0.00858736,-0.032728165,-0.013175572,0.04239097,0.017996166,0.02797242,-0.025918804,0.0037262333,0.004604425,-0.0147860395,0.078253604,0.029615313,0.0016631592,-0.03179863,-0.035257354,0.0018860848,-0.0068796156,-0.008192849,0.008684637,0.012397359,-0.0005610291,-0.019174295,-0.0073443814,0.017261188,0.0032479567,-0.018601444,0.014429359,0.005966297,-0.008695445,0.02920459,0.001530755,0.009198041,0.010576125,0.013586295,0.0107706785,-0.04734127,-0.035106037,0.013316083,0.006079786,0.03690025,0.01083553,0.0042639566,0.06057088,-0.013607913,0.040337354,-0.042931397,-0.02905327,-0.019509358,0.02319506,0.013380934,-0.0024413718,-0.02282757,-0.015834466,0.028318292,0.024751484,0.012094721,-0.01138136,0.023778718,0.045179565,-0.015456167,0.03694348,-0.028296676,-0.009052126,0.0030128718,0.0084306365,0.0034884461,0.047730375,-0.015110295,0.02115225,0.0038424248,0.017001783,-0.009025104,-0.013326891,-0.0023157229,-0.0401428,-0.012991827,0.010446424,-0.016191145,-0.005804169,0.009381785,0.032836247,-0.041202035,-0.028275058,0.009019701,0.0019712017,-0.017088251,0.020136252,-0.0019752549,0.00059784565,-0.0012044732,-0.0041801906,0.05451812,-0.014656338,-0.02145489,-0.006544552,-0.029399144,0.022719486,-0.00040363023,0.022006124,-0.0012585158,-0.037656844,-0.020028166,-0.0054258713,-0.008009105,-0.0031587866,-0.023346378,-0.0051799775,-0.0029912547,0.022395229,0.005460999,0.0256594,0.0028669569,-0.036446292,0.00005032712,-0.014148338,0.010051913,-0.010613956,0.03566808,0.031539228,-0.031971566,-0.012786466,-0.0073389774,-0.025313526,0.005582595,0.013726806,0.01826638,0.031712163,0.03951591,0.015564253,-0.000042558502,0.007014722,0.018212337,0.016915316,0.039256502,0.009397998,-0.019012166,-0.036986716,-0.017315231,-0.023886804,0.029680165,0.0015375103,-0.0013368774,-0.004869233,-0.0014848189,-0.024621783,0.024470463,-0.021022549,0.0029912547,-0.019974124,0.03071778,-0.017596252,-0.0120190615,0.0064256582,0.013834891,0.0032641697,-0.022805953,0.029118123,-0.0041369568,-0.014472593,0.0028129143,-0.011424594,-0.028231824,-0.016872082,0.012699997,-0.024102975,0.0044341907,-0.018385272,-0.0031560846,0.012429785,0.045395736,-0.011003062,0.002125223,0.02760493,-0.014948167,0.017217955,0.024297528,0.0025008186,0.016407317,0.0053502116,-0.0032560632,0.028880335,0.0125702955,0.00016643414,-0.0051313397,-0.03305242,-0.011008466,0.03564646,0.029118123,-0.018028593,0.0042558503,0.037267737,-0.008652211,-0.010095147,-0.009695232,-0.030393526,0.041266885,-0.0054528927,0.025097357,0.0029912547,-0.00049584033,0.048724756,0.008560339,0.016472166,-0.026026888,-0.020136252,0.028361527,0.031949952,0.01934723,0.0010740955,0.034738548,0.0075767646,-0.013586295,-0.021368422,-0.019466124,-0.0052745524,0.009008892,-0.0102897,-0.006614807,0.0038910632,-0.037505526,-0.0061446372,-0.0004988802,0.0033965737,0.01646136,-0.018968932,-0.0063445945,0.07276288,-0.01159753,-0.017639486,-0.017142294,0.035343822,-0.028966803,-0.026351145,0.014894125,0.00069579773,0.006609403,-0.0019793082,0.011175998,0.03951591,0.008165828,-0.004825999,0.02905327,0.025486464,0.0026413293,0.0047098077,-0.0016428933,-0.0059176586,-0.019995742,0.026459228,-0.0153264655,-0.020060591,-0.000005472863,0.022892421,-0.030544845,0.04042382,0.013110721,-0.022438463,0.018741954,0.029766632,0.011240849,-0.03389548,-0.0018847337,0.039321356,0.011921785,0.013564678,-0.0031641908,0.001977957,-0.016472166,-0.028534463,-0.01723957,0.015974976,0.014731997,0.01202987,0.022633016,-0.008030722,0.022222294,0.014310465,0.0026251166,0.015380507,-0.01725038,0.025464846,-0.0236274,-0.000711335,-0.007911828,-0.0013902445,0.0076416153,-0.030782633,0.0052367225,-0.016580252,0.020298379,0.024081357,0.000118471384,-0.0028885738,0.026243059,0.013726806,0.0075281262,-0.009068338,0.009300722,0.02550808,-0.033419907,-0.008998083,0.019185103,-0.0111868065,0.040899396,0.022784336,0.001592904,-0.030696165,-0.03145276,0.027194208,-0.0027102334,-0.029442377,0.028815484,0.028231824,0.009003487,0.019682294,0.021390038,-0.013067487,-0.0016253295,-0.011327317,-0.010441019,-0.049286798,-0.013867317,-0.022849187,0.055555735,0.0013625476,0.016299231,0.001973904,0.005352914,0.013921359,-0.00009212564,0.01782323,-0.0440771,0.023216676,0.030307058,0.004526063,-0.014569869,0.012386551,-0.007901019,-0.011651572,0.017271997,-0.004701701,0.032771397,-0.025962038,-0.023238294,-0.009824934,-0.024038123,-0.014537444,-0.011143573,-0.030371908,-0.024967656,-0.0065661687,-0.0022360103,-0.003485744,0.004739531,-0.003655978,-0.009597955,-0.016093869,-0.0022022335,-0.013791657,0.018352848,-0.0043936586,-0.0041423608,-0.030371908,0.005933871,-0.0040288717,0.014180764,0.014569869,0.023303144,-0.021065783,-0.03949429,0.036727313,-0.011273274,-0.0028885738,0.017271997,0.010154594,-0.02544323,0.041915394,0.012991827,0.026178207,-0.022351995,-0.0022643826,0.03891063,-0.00268051,-0.0037370417,0.012808083,-0.011078721,-0.045482203,-0.012083912,0.050194714,0.048076246,0.018882465,0.006393233,-0.06290552,-0.0059014456,-0.00590685,0.011284083,0.010630168,0.011024679,-0.0038127014,-0.010397785,0.000086805834,-0.014634721,-0.024881186,-0.022308761,-0.003931595,-0.030307058,-0.0024265102,-0.026502462,-0.004482829,-0.0064256582,0.010559913,-0.027345527,0.018169103,0.004534169,-0.003701914,-0.008673828,-0.0024373187,-0.004488233,0.0014915742,-0.0071498286,0.004993531,0.039451055,-0.0131323375,-0.039018717,-0.008052339,-0.0002453869,-0.028361527,-0.024340762,-0.018504167,-0.0045152544,0.047643907,-0.008938637,-0.019271571,0.02369225,-0.012473019,-0.0031749993,0.018720336,-0.03770008,-0.026718633,-0.01812587,-0.009965445,-0.043147568,0.027496846,-0.010516679,-0.013272849,-0.020990124,0.0111868065,0.000011547371,-0.039364588,0.0059014456,0.003850531,0.05732833,0.0076848497,-0.011392168,0.009295317,-0.047514204,-0.04811948,0.035603225,-0.007166041,-0.0029885527,-0.01362953,-0.021206293,-0.021952081,0.04074808,0.035257354,-0.017650295,0.02267625,0.027885951,-0.005544765,-0.00811719,-0.022914039,0.017282804,-0.0026048506,-0.01025187,0.025551314,0.00006848203,-0.016893698,-0.05270229,0.010154594,0.028945185,-0.012818892,-0.010495062,-0.015521018,0.034241356,0.0058095735,0.011586721,0.022200676,0.019811995,0.005298871,0.02942076,-0.007220084,-0.032209355,-0.015812848,0.019358039,0.0011429997,0.033463143,0.019098634,0.019358039,0.031323057,-0.020449698,-0.0076145944,-0.014213189,-0.024297528,-0.017607061,0.02101174,-0.017401699,0.011543487,0.016915316,-0.018774379,-0.0440771,0.019239144,-0.042455822,-0.030307058,-0.0014686061,0.0013969997,0.019163486,0.027821101,0.053134628,-0.0030534037,0.036273353,0.033938717,0.023584165,-0.028729016,-0.0035749143,0.011057104,0.010441019,-0.017596252,0.05940356,-0.010003274,-0.025335144,-0.018460933,0.010462636,0.028534463,-0.0052583395,0.045266032,-0.002272489,-0.02341123,0.007792935,0.026329527,0.02950723,-0.011208423,-0.0071336157,-0.004245042,0.014299657,-0.018968932,0.01007353,-0.015715571,-0.012224423,-0.025227059,0.0028939783,-0.007819956,0.0053231902,0.0049827225,0.021541357,-0.021487314,-0.015953358,0.0031506803,-0.001487521]},{"id":"interface-APIGuildFeatureToggle","type":"interface","source":"main","text":"Interface: APIGuildFeatureToggle\nDescription: Request body for guild feature toggles (text-channel-flexible-names, etc.)\nProperties: enabled: boolean","meta":{"url":"/docs/typedefs/APIGuildFeatureToggle"},"embedding":[0.031987663,0.039009936,-0.030486349,0.025110679,-0.0036231296,-0.0056329523,-0.033440545,0.0052122213,0.03329526,-0.014201941,0.009855396,-0.008093774,-0.007548943,0.009607196,0.032375097,-0.012210279,-0.01227687,0.024892746,-0.02330668,0.0119923465,-0.011847058,0.011138777,-0.038549855,0.011041919,-0.06450805,-0.008384352,-0.0031872643,0.019371787,0.005962878,-0.013342318,0.027411077,-0.04603221,0.04455511,0.0043283836,-0.028694458,0.02721736,0.0086083375,0.020994173,0.011544374,-0.02064306,-0.028500741,-0.026999427,-0.016683951,0.0228466,-0.017180353,0.074629806,-0.006695374,0.020437235,-0.0015073671,0.009334779,-0.013923472,-0.0039924043,-0.046686005,0.048405252,0.03356162,0.016248086,-0.05714677,0.01843952,-0.016090691,0.028500741,-0.04353809,-0.02690257,0.018318446,0.009813021,0.011114563,0.022640776,-0.07874631,0.031697087,0.03821085,0.004988235,0.028694458,-0.018173158,-0.01682924,0.044627752,0.021696402,0.0105878925,-0.0017646487,0.025522329,-0.012282924,-0.036854822,-0.052400682,0.037460193,-0.0976338,-0.048114676,0.014770987,0.024081552,-0.03191502,0.0028921473,-0.029202968,-0.010164134,-0.004143746,-0.052206963,-0.069399424,-0.019020673,-0.001118418,-0.04818732,0.024868531,0.017107708,-0.020897314,0.064362764,0.08620445,0.012083152,-0.072353624,-0.0340217,0.033004683,-0.011986293,0.028670244,0.008753626,0.013027526,0.0017828097,-0.07608269,0.013572358,0.0020113364,0.02680571,-0.022907138,-0.028113306,0.045402624,-0.0016874642,0.052110106,-0.027072072,-0.02027984,-0.026660422,0.039470017,-0.052739687,-0.020776242,-0.016005939,-0.031648654,-0.03387641,-0.04482147,0.04036596,0.00155731,0.010769502,0.03310154,0.06876984,-0.055693887,0.009607196,-0.009667732,0.016720273,-0.061069556,-0.003444546,-0.0022746716,-0.016417589,0.07608269,0.047896743,-0.059568245,-0.000743468,0.003438492,0.01645391,0.0016768703,0.0571952,-0.057631064,0.036176812,0.015412678,-0.01875431,-0.010708965,-0.049640205,0.023633579,0.003444546,-0.039373156,-0.02069149,0.0024517418,-0.03627367,-0.010006739,-0.0024229868,0.017361963,-0.0056692744,0.03145494,-0.0061626495,-0.054241,0.026151912,0.019165961,0.009268189,-0.053030267,0.013427069,0.02782273,0.029614618,0.0033900626,-0.044385605,-0.03290782,-0.027338434,0.033949055,-0.010884522,-0.03356162,-0.028912392,-0.03453021,0.0005372644,-0.00894129,0.009843289,0.01728932,-0.019843973,-0.035377726,0.033634264,0.013463392,0.00021755425,0.023112962,-0.015872758,0.02772587,-0.0021641918,0.0055149053,-0.04031753,-0.010521302,-0.014855739,0.06053683,-0.0114898905,-0.026563562,-0.013681324,-0.003326499,-0.010466819,-0.042448428,0.04579006,0.002380611,0.014492518,-0.04022067,-0.000015417974,-0.06513763,0.004516048,-0.030195773,0.018100513,0.027604796,-0.0020264704,-0.011435408,-0.00092924037,0.0509478,-0.01204683,0.0030616503,0.01043655,-0.022398628,0.00066968874,-0.007022273,0.010188349,0.00071849657,-0.006177784,-0.008898915,-0.012083152,-0.0103820665,-0.005448315,0.026248772,0.011102455,0.0034869215,-0.036491603,-0.053901996,-0.030583208,-0.040462818,-0.028936606,-0.006386636,-0.013669217,0.0084751565,0.011925756,0.0032235864,-0.014516733,0.033271044,0.05365985,-0.013584466,-0.041600913,0.023209821,-0.018681666,0.008789948,0.013935579,0.024941174,-0.038549855,0.041528266,0.008039291,-0.030413706,-0.0070041115,-0.00089216157,0.02473535,0.02460217,-0.0054997713,-0.036007307,0.035523012,-0.0048096515,0.009262135,0.060633693,0.009383209,0.005118389,0.039300513,0.023003997,0.048913762,0.012252655,-0.00622924,-0.03162444,-0.022168588,-0.014722558,0.015206853,-0.012991204,-0.016163334,-0.007930325,-0.002071873,0.032205597,0.04031753,0.011465676,0.032254025,0.06857613,0.011919702,0.0025410336,0.036757965,0.008456996,-0.014444089,0.08567172,0.024178412,0.047509305,-0.027992232,-0.042303137,-0.05002764,0.013475499,0.035740945,0.028791318,0.024360022,0.022616562,-0.020558309,0.047388233,-0.011169046,-0.038186636,-0.020400913,-0.0424,-0.01756779,0.040148027,0.038961507,0.0036352368,0.009891719,0.028113306,0.03973638,-0.0022095945,-0.034457564,0.026442489,-0.035184007,0.02804066,0.0040014847,-0.0074823527,0.02391205,0.019347573,-0.033343688,0.02782273,0.031067504,0.00859623,-0.008553854,-0.015921187,0.041528266,0.012337406,-0.01163518,0.015896972,0.0054150196,-0.024142088,0.023742545,0.01811262,0.019747116,-0.028355453,0.035644088,-0.015206853,0.055693887,0.020521987,0.026515134,0.01365711,0.008638606,-0.062425584,-0.115649566,0.02915454,-0.025764477,-0.0034173043,0.029445115,-0.011520159,0.026854139,0.0093468875,0.058841802,-0.0003666262,-0.026950998,-0.006477441,0.010376013,0.03610417,-0.010563677,0.043780237,0.036709536,-0.010388121,-0.027580582,0.02330668,0.031551797,-0.013596573,0.0016360079,0.015461107,-0.03227824,0.027386863,-0.013330211,0.025183322,-0.02143004,-0.020558309,-0.019710792,0.0016980582,0.01645391,-0.03971216,-0.02845231,0.02593398,-0.004458538,-0.03365848,-0.033077326,0.030728497,0.0017343803,0.018282123,0.021526897,0.017713077,-0.03489343,0.015182638,-0.014262478,-0.046564933,-0.0043041687,-0.045814276,0.0036201025,0.025304396,0.017495144,0.032835178,-0.012064991,0.016417589,0.004434323,0.028742889,0.014613591,-0.002114249,-0.008245117,-0.008565962,-0.043925527,0.020388806,0.010981382,0.024360022,-0.0007351442,0.026950998,0.0039712163,0.045814276,-0.009528497,-0.0046734437,0.0113567095,-0.006556139,-0.057970073,-0.054725297,0.0045009134,0.021127354,-0.025110679,0.04017224,-0.02455374,0.062231865,-0.046104852,0.012180011,0.0059083947,-0.030510563,0.007797144,-0.012821701,0.0016541689,0.013209137,0.0068103937,0.027023641,-0.05099623,0.003959109,-0.009710108,-0.06412061,0.033513192,-0.019105425,0.046564933,-0.0018539405,0.020376697,0.015097886,0.024747457,-0.018778525,0.023161393,0.012010507,0.0001841644,0.014879953,0.026103482,-0.021708509,-0.005717704,0.010606053,-0.0005875856,0.010406282,0.049398057,-0.039930094,0.014323015,0.0509478,0.0031842375,-0.027943803,0.013523929,0.042811647,0.053320844,0.015533752,0.009510336,0.010152027,0.03494186,-0.03038949,-0.03407013,0.06087584,0.0755984,0.04571742,-0.003175157,-0.04252107,-0.026563562,0.01862113,-0.0045705307,-0.0024910907,-0.012579554,0.046104852,-0.03755705,-0.02156322,-0.03380377,0.01880274,-0.012107367,0.01078161,-0.006792233,-0.020582523,0.0023140204,0.024214733,0.036709536,0.0073491717,-0.039131008,-0.060197826,-0.012204225,-0.05167424,-0.043610733,-0.00818458,-0.0024411478,-0.047509305,-0.0084448885,-0.06412061,0.01613912,0.008808109,0.022955567,-0.03474814,0.04373181,0.0019462592,-0.008148258,0.018572701,0.005829697,0.0064471727,-0.03825928,-0.015449,0.010303369,-0.011641233,-0.035232436,0.010733181,0.04368338,0.0008997287,-0.019783437,-0.011066133,0.022108052,0.03586202,-0.021720616,-0.008450942,-0.0104547115,-0.007845573,0.0018055111,0.0007960594,0.018984351,-0.05075408,-0.0024804967,0.02845231,-0.008856539,0.021127354,-0.036079954,-0.0036352368,-0.011314334,0.02721736,0.037532836,-0.009540604,-0.01250691,0.021672186,-0.00040748855,-0.011810736,-0.028888177,0.02675728,-0.01632073,-0.028573385,-0.014504625,0.030728497,0.029905196,-0.0028331238,-0.01096322,0.03903415,0.037072755,0.012410051,0.011308281,0.026878353,-0.0075428896,-0.023343002,0.009425585,0.00265,0.03145494,0.0050760135,-0.04506362,0.02212016,0.053175554,-0.028258594,-0.04022067,0.0024971443,0.011804682,-0.010309422,0.027483722,0.020655168,0.009250028,0.029808337,0.021938547,0.005181953,-0.03760548,0.005348429,-0.004852027,-0.026611991,0.019686578,-0.007942433,-0.028742889,-0.0262972,-0.019892404,0.015073671,0.009352941,0.031479154,-0.009044203,-0.009431639,0.029784122,-0.013814505,0.014892061,-0.018003654,-0.011017703,-0.053756706,-0.031358078,-0.009788806,0.013862935,0.022265447,-0.0066408906,-0.0006825528,-0.006044603,0.0001833131,-0.010448657,-0.0057661333,0.008729411,0.0002213378,-0.0071978294,0.018427411,-0.02956619,-0.011465676,-0.014746772,0.006002227,-0.021224214,-0.05646876,-0.022882923,0.012028669,0.012676413,0.010727127,-0.016344944,0.03329526,-0.017495144,0.0026666475,-0.032883607,0.0014793689,-0.046952367,-0.009395316,-0.002571302,-0.0031812105,0.01944443,0.029735692,0.016429696,-0.00020204169,-0.008251171,0.0188996,-0.0386225,-0.045911133,0.00012627605,0.02992941,-0.013463392,-0.015557966,0.0043677324,0.018475842,0.022689205,0.013681324,0.020231409,-0.008814163,0.023548828,-0.034869216,0.0080756135,0.013984009,0.038792003,-0.029638834,-0.019202283,-0.01613912,-0.0059537976,-0.01475888,-0.046419643,-0.004797544,0.03310154,-0.003420331,0.02900925,-0.03094643,-0.040123813,0.010309422,-0.049567558,0.015267389,0.0071736146,0.017834151,-0.033077326,0.004743061,0.021720616,-0.028863963,-0.028500741,-0.015436892,0.001181225,0.024021015,-0.01521896,-0.003614049,0.01645391,0.011514106,0.029299827,-0.0048974296,-0.021212107,-0.0011585236,0.009407423,-0.016974527,-0.006646944,0.01517053,-0.0027392916,-0.07433923,0.011005596,-0.02767744,-0.006937521,0.022192802,0.0058024554,-0.017991547,-0.0029405768,0.03871936,0.018778525,0.016381267,0.0054967445,0.028718673,0.041552484,-0.022217019,0.028331239,0.02041302,0.019965047,-0.04932541,-0.01337864,-0.021236321,0.049083263,0.0151099935,0.005790348,0.0102186175,0.033174183,0.034336492,0.0055209594,-0.035426155,-0.002006796,-0.0025924898,0.024129981,0.01728932,0.023161393,-0.023028212,0.017131925,-0.0025667618,0.0071736146,-0.035498798,0.022338092,-0.00046424184,0.0074460306,-0.035789374,0.025716046,0.014359336,-0.022834493,0.0021747858,-0.042496856,-0.027459508,0.030825356,-0.020170873,0.007875842,0.00668932,0.010842146,-0.019989261,0.011986293,-0.033682693,-0.00061369216,0.03457864,0.03709697,-0.006368475,-0.024335807,-0.0071130777,-0.0033022843,0.061989717,-0.029178753,-0.025401255,-0.048429467,0.04123769,-0.031285435,-0.0033204453,-0.010442603,-0.020122442,-0.03145494,0.0043465444,-0.025691831,0.032956254,0.0011426327,0.036757965,-0.01089663,-0.033125754,0.014553054,-0.0015285551,-0.007094917,0.015836436,0.055936035,-0.009425585,-0.070997596,0.0028316104,0.015267389,-0.019008566,-0.0038259279,0.017483037,0.011047972,0.0688667,-0.017652541,-0.020618845,0.036297884,-0.0074097086,0.03857407,0.0162723,0.009734322,0.010769502,0.021066818,-0.009147115,0.036201026,0.0050548255,-0.016078582,0.030147342,-0.010733181,0.012482695,-0.002046145,0.0325446,-0.007361279,-0.011072187,0.02634563,-0.029687263,0.027386863,0.0063745286,-0.0013408909,0.0104849795,0.014807309,0.0020491718,-0.003444546,-0.019662363,-0.003096459,0.024033124,-0.0001866237,-0.013172815,-0.015824327,0.023742545,-0.015315819,0.03094643,-0.015327926,-0.012749057,-0.0228466,-0.003067704,0.010823986,0.04615328,0.047049228,0.044119243,-0.006792233,-0.0032720158,0.0027544259,0.021260535,-0.024021015,-0.049034834,0.017035065,0.02905768,0.0032932037,-0.023657795,0.009183438,-0.045257337,0.012555339,-0.026176127,-0.018282123,-0.024481095,0.02762901,-0.00951639,-0.0018130782,0.008638606,-0.019299142,0.00386225,-0.0039924043,-0.0117259845,-0.011913649,0.015158423,0.018887492,0.021212107,0.024989605,-0.0036988005,0.021442147,0.020546202,-0.03356162,0.006961736,-0.015449,-0.0432233,0.018330554,0.0223502,0.033222616,0.009643517,0.018245801,-0.023439862,-0.00737944,-0.012331353,-0.017749399,-0.032714106,0.006265562,-0.008923129,0.0080756135,-0.057582635,-0.0040620216,-0.012579554,0.013875042,0.04206099,-0.0052818386,-0.011768361,-0.018318446,-0.011308281,-0.023500398,0.010242832,-0.0076881777,-0.032568816,0.03825928,0.014310908,0.014843632,0.014625699,0.021224214,-0.016623415,-0.012761164,-0.039421584,0.016768703,0.0019220444,0.003232667,-0.032496173,-0.0055905767,-0.0010926898,-0.042787433,-0.008723358,-0.013269674,-0.01494049,-0.015981724,-0.03973638,0.0021626784,-0.019117532,-0.05167424,-0.015691146,0.01696242,0.0003987864,-0.042375784,0.016659737,0.018173158,-0.027435293,0.016720273,-0.015436892,-0.03213295,-0.049567558,0.0035474584,-0.012785379,-0.011895488,0.030873785,0.018366875,0.040777612,-0.008862592,0.02721736,-0.026079267,0.028258594,-0.026418274,0.036515817,0.042303137,-0.0025213591,0.008263278,-0.03423963,-0.027362648,0.007803198,-0.004240605,0.017846258,-0.04983392,0.0069859507,-0.009280297,-0.01475888,-0.039009936,0.043053795,0.048913762,0.002427527,0.0046189604,0.05157738,0.0022595373,-0.0124948025,-0.0131001705,-0.02772587,0.022132266,0.005720731,0.03084957,-0.021502683,-0.0014680182,-0.016018046,-0.01411719,0.056759335,0.030292632,-0.010309422,-0.011744145,-0.015557966,0.02951776,-0.002913335,-0.0033779552,0.007815305,0.026224555,0.043925527,-0.009734322,-0.0038531695,-0.04496676,-0.032205597,0.00040673185,-0.013548143,-0.000011102361,0.02896082,0.0042345515,0.042278923,-0.0006205025,0.010109651,0.053998854,0.047025014,-0.04988235,-0.023100855,-0.0054937177,0.030292632,0.021236321,0.0004021916,-0.017870473,-0.038307708,-0.0103820665,-0.0059689316,0.0032266132,-0.008826271,-0.02059463,0.030680068,-0.002636379,0.0116230715,-0.0010942032,-0.0032447742,0.010491033,-0.011120616,0.01563061,0.0046401485,-0.026418274,0.042811647,0.009867504,0.037314903,0.022447057,-0.015788006,-0.0055542546,-0.015739577,0.0026696743,0.025619188,-0.007851628,0.011108509,-0.023294574,-0.00460988,-0.016986635,-0.002323101,0.0085780695,-0.00026598372,0.021478469,0.02583712,-0.017834151,0.014516733,-0.014649914,-0.030510563,0.020570416,-0.016671844,0.029638834,0.0071372925,0.018548485,-0.011768361,0.040801827,-0.037629694,0.030970644,0.0073552253,0.0043283836,0.051189948,-0.016526556,-0.0006927684,-0.016211763,0.003962136,-0.007942433,0.03462707,-0.018463735,-0.030752711,0.011671501,0.04072918,-0.023754653,-0.02381519,0.04055968,-0.003250828,0.0223502,0.036757965,0.0033355795,0.033222616,0.03770234,-0.07070702,0.014056653,-0.0116957165,-0.011090348,-0.019299142,0.020497771,0.008777841,-0.026079267,0.016308622,-0.025207538,-0.010951113,0.009365048,0.0035050826,0.012216333,-0.004319303,0.034723926,0.013039634,-0.002503198,-0.007670017,0.028064875,-0.010109651,0.048744258,0.016163334,0.009728269,-0.019880297,-0.0123918895,-0.012761164,0.0089776125,-0.0231735,-0.0041588806,0.012410051,-0.025691831,0.0012970016,0.0047854367,-0.0046673897,0.0062595084,-0.028016446,0.0031418616,-0.032036092,0.029420901,-0.0029012277,0.018052084,-0.017688863,-0.033343688,0.030922214,0.006477441,-0.0034415189,-0.012724842,0.04983392,0.010581838,-0.008142204,0.024541631,0.015049457,0.004107424,-0.008305654,0.0019598799,-0.032036092,0.06993215,-0.0007854654,-0.000085082625,-0.021454254,0.008154311,0.008995773,0.009788806,-0.006211079,0.012652198,0.00288458,0.00067612075,-0.009903826,0.0012417618,-0.01452884,-0.010660537,0.012210279,-0.012180011,-0.00368972,0.034094345,-0.015061564,0.00051040115,0.001758595,0.0035141632,0.014250371,-0.0104547115,-0.0034748141,0.053756706,-0.00018870465,0.028718673,0.008650714,-0.024033124,0.012979097,-0.011278012,0.03213295,0.0013424043,0.0021778126,0.016260194,-0.005581496,0.03387641,0.029541975,0.0028104226,-0.04215785,-0.01319703,-0.022616562,0.0019432324,-0.008935236,-0.022071728,-0.028428096,0.02381519,-0.035740945,-0.0048822956,-0.01273695,-0.028331239,-0.012603769,0.038477212,-0.004398001,0.011350656,0.03310154,-0.016429696,-0.008214848,0.0051758992,0.03591045,-0.03750862,-0.00311462,-0.0038077668,0.046758648,0.039009936,-0.006889092,0.017022958,0.040244885,0.028500741,-0.011393032,-0.0109874355,0.011380925,0.017022958,-0.0074641914,0.005584523,-0.037460193,-0.021878012,-0.016683951,-0.006265562,-0.0048278123,0.005660194,0.015896972,-0.047388233,0.050076067,-0.029663049,-0.016574984,0.0043525985,0.035934664,0.010254939,0.0041619074,0.00737944,0.027750084,0.021781152,-0.022495488,-0.0011327955,-0.0047642486,-0.02501382,-0.011169046,-0.011647287,0.011278012,-0.015715363,0.0008149771,0.0056329523,-0.012882238,0.0064471727,-0.018221587,0.038331922,-0.0038440889,-0.00956482,-0.0067135347,-0.0070283264,0.002866419,-0.0012932181,-0.030365275,0.013741861,-0.03903415,0.011350656,-0.03130965,0.0019144773,-0.010442603,0.0019901483,0.00009875071,-0.01245848,-0.0030026268,0.005275785,0.008160365,0.013911365,0.012234494,0.002208081,0.016708165,0.011804682,-0.004410108,-0.0061263274,-0.015267389,0.0060506565,-0.04736402,-0.03654003,0.013172815,-0.0077487146,-0.0007415762,0.01245848,-0.016744489,-0.005239463,0.0066287834,0.00992804,-0.027968017,-0.025594974,-0.005215248,-0.030776925,-0.009970416,0.0025728154,-0.052303825,0.029445115,-0.022241233,0.02100628,0.042448428,-0.005154711,-0.004513021,0.0036533978,0.015255282,-0.037339117,0.013753968,-0.0048217587,-0.016163334,-0.010902683,0.008862592,-0.0045705307,0.011253797,0.0151099935,0.004755168,-0.034845002,-0.045087833,0.026636207,-0.029832551,-0.0038350085,0.0035474584,-0.01944443,-0.009903826,-0.023972586,0.00691936,0.01696242,0.03641896,0.0021339233,-0.013184922,0.01586065,-0.020703597,-0.0018781553,0.0072099366,0.0027741003,-0.015933294,-0.041794628,-0.03825928,-0.008348029,-0.026781496,0.012313192,0.0019190176,0.03503872,-0.048986405,-0.023439862,-0.021345288,0.02639406,0.013039634,-0.033125754,-0.0012432752,-0.013911365,0.057582635,-0.004836893,-0.011447515,0.004164934,0.012355568,0.017131925,-0.0075973724,0.0040438604,0.0020945745,-0.012567447,0.0067559103,-0.021660078,0.034505993,0.004888349,0.023803083,-0.013572358,-0.044143457,-0.018064192,-0.019202283,-0.013705539,-0.012991204,0.01004306,-0.015800113,0.006592461,0.017337749,-0.0058569387,0.00042451455,-0.031527583,-0.042690575,-0.031793945,0.007343118,0.00038743572,0.011671501,-0.031939235,0.0012765705,-0.05690462,0.009770645,0.004888349,0.019989261,-0.021587435,-0.019226499,-0.01475888,0.03586202,0.0038713305,0.020618845,0.0012871644,0.008923129,-0.056614045,-0.020437235,0.013875042,-0.025231753,-0.027798513,-0.014553054,-0.014008223,0.0015512564,0.012155796,-0.028936606,0.031043287,0.0011759279,-0.0059901197,-0.010158081,0.01944443,-0.0028285836,0.0073915473,0.013741861,-0.021914333,0.02143004,0.010127813,-0.00009950742,0.028089091,-0.015642717,-0.012016562,-0.030050484,-0.012724842,0.008898915,0.02248338,0.02174483,-0.017640432,0.025401255,-0.015182638,-0.025909765,0.024105767,-0.0030737577,-0.022725526,0.0062776697,-0.00032784478,-0.03387641,0.03806556,0.009395316,-0.039978523,0.008614391,0.0037563106,0.017349856,-0.0030540833,-0.007022273,0.0016920045,-0.008620445,-0.0022020272,-0.012349514,-0.004927698,-0.0005035908,0.007452084,0.014831524,0.0059961732,0.01843952,-0.027532151,-0.030631637,-0.0061293542,0.007228098,0.014250371,0.02946933,0.04571742,0.0030011134,0.0062050256,-0.0033355795,-0.025812905,-0.045305766,0.02988098,0.023040319,0.018996459,0.016308622,0.060343117,0.032835178,-0.02542547,-0.0025122785,0.01756779,-0.009207652,0.0051849796,0.008220902,-0.013862935,0.011744145,0.0010457737,-0.035159793,-0.031358078,-0.0077245,-0.0069798967,-0.02992941,0.011393032,0.015061564,0.01494049,0.015969617,0.022229126,-0.037000112,0.036176812,0.053030267,0.041915704,-0.03387641,-0.034820788,-0.012664305,0.025812905,-0.011956025,0.063733175,-0.0050396915,-0.0066287834,-0.032157164,-0.004621987,0.0317213,0.0102186175,0.01829423,0.007930325,0.001309109,0.017313534,0.027580582,-0.0030450027,0.002370017,-0.014092974,0.0047158194,0.0036806394,0.028742889,-0.008680982,-0.017749399,-0.010727127,-0.034772355,0.020376697,0.026733065,-0.048017815,0.016817132,0.013354425,0.019165961,-0.010442603,0.0053454023,0.001999229]},{"id":"interface-APIGuildMember","type":"interface","source":"main","text":"Interface: APIGuildMember\nDescription: Guild member from GET /guilds/{guild_id}/members or GET /guilds/{guild_id}/members/{user_id}\nProperties: accent_color: number | null, avatar: string | null, banner: string | null, communication_disabled_until: string | null, deaf: boolean, joined_at: string, mute: boolean, nick: string | null, premium_since: string | null, profile_flags: number | null, roles: string[], user: APIUserPartial","meta":{"url":"/docs/typedefs/APIGuildMember"},"embedding":[-0.012133103,0.004431744,0.0059882733,0.031238977,0.0041095996,-0.02627735,-0.031624347,0.012765349,0.036465544,-0.008496183,0.009146493,-0.04886961,0.031166721,0.0012253531,0.02938439,0.009116386,-0.03094995,0.028613651,-0.044775065,0.026421864,0.034394186,0.0367064,0.011874183,0.040560093,-0.03463504,0.031696603,-0.0011967515,0.006683744,-0.011934398,-0.03215423,0.015342505,-0.02112304,0.037380796,0.020930355,-0.006762022,-0.014788536,0.029697502,0.02354364,-0.005765482,-0.028974934,-0.025723383,-0.0019810377,0.009598098,0.01566766,-0.030179212,0.057323646,0.0015730885,0.0015045952,-0.0004685395,0.02943256,-0.044293355,0.008098771,-0.009549926,0.06830666,-0.006936643,0.0018244815,-0.031190807,-0.004808081,-0.021929907,0.01341566,-0.034418274,-0.009056172,0.016113242,0.0069486853,-0.009905188,-0.005172375,-0.032250572,0.040222894,0.057468157,-0.019364795,0.059057806,-0.0230258,-0.025024902,0.0024476955,-0.006183969,0.009580034,-0.011482793,-0.015330462,-0.002730701,-0.027216688,-0.005617958,0.047279965,-0.0553968,-0.06618713,0.034129247,-0.015222077,0.002778872,-0.009977445,-0.005112161,0.0017040537,-0.028517308,-0.016775595,-0.101737425,-0.039066788,0.012861691,-0.028228281,0.022218933,0.014764451,-0.03463504,0.029023105,0.06979997,-0.002208345,-0.046388797,-0.036200605,0.0347073,-0.014379082,-0.007177498,0.014294783,-0.049110465,0.010796354,-0.05592668,0.050435174,-0.002324257,0.022459788,-0.050965056,0.03726037,-0.0016814735,0.013499959,0.026036495,-0.03745305,-0.060936477,-0.00835167,0.04311316,-0.024880389,0.0100737875,0.004591311,-0.031913374,-0.022447746,-0.076447584,-0.02324257,-0.009272942,-0.019653821,0.038223792,0.020159617,-0.036947258,-0.015920559,-0.0010785817,-0.044341523,-0.06344138,-0.06137002,-0.021086913,-0.013150718,0.02042456,0.0064609526,-0.039355814,0.00040606756,-0.043016817,0.04990529,0.002596725,0.024121692,-0.03241917,0.026470035,-0.019798335,-0.041138146,-0.023507511,-0.0018094281,-0.0036218667,-0.012054825,-0.04169211,-0.006828258,0.029312132,-0.04942358,-0.0183532,-0.01164537,-0.00943552,-0.017943745,0.01631797,0.021833565,-0.04448604,0.02921579,-0.011753756,-0.015559275,-0.046629652,-0.03639329,-0.039837524,-0.025097158,-0.013873286,-0.02883042,-0.036417373,-0.021448195,0.021628838,0.021568622,-0.024735875,-0.066861525,-0.020846056,-0.0021737223,-0.023664067,-0.011892248,0.01064582,-0.018497713,-0.017064624,0.019882634,0.011681499,0.019015552,0.038271964,-0.025723383,0.05120591,-0.017907618,0.0039530434,-0.013006205,0.03658597,-0.010681948,0.061321847,-0.034610957,0.01740182,-0.0018591045,0.03981344,-0.0014428758,-0.023627939,0.023796538,0.023049885,-0.011934398,-0.021833565,-0.020569073,-0.0036519738,0.014619938,-0.04361896,0.013512001,-0.003907883,0.014607895,-0.0550596,0.047930274,0.061659046,0.010742161,0.014957136,0.019641778,0.0068583647,-0.017811276,-0.0010891191,0.021327768,-0.023182357,0.01311459,-0.0390427,-0.017088708,-0.024205992,0.0012200844,0.012801478,0.06430846,0.027481629,-0.012596751,-0.03355119,-0.046894595,0.016775595,0.031046294,0.005560755,-0.026542293,0.030275555,0.008460054,-0.0073220115,0.037164025,0.04942358,0.036176518,-0.019677907,0.027216688,0.00248834,0.04077686,-0.0183532,0.057853527,0.011308173,0.0062321397,0.0053590382,0.0137649,-0.0024597384,-0.0017507195,0.0035435888,0.032780454,-0.007514696,0.035092667,-0.02142411,0.038151536,0.012030739,-0.0092247715,0.057805356,0.007496632,0.00032797764,0.01398167,0.032467343,0.018497713,0.015342505,-0.031311233,-0.01653474,-0.0049315193,0.013343403,0.043691214,-0.011524943,0.0037362732,0.029408475,-0.012596751,0.027433459,0.057275474,-0.002818011,0.026494121,0.074713424,-0.025771555,0.022002164,-0.023146227,0.05380715,-0.013740814,0.06141819,0.029697502,0.007153413,-0.011362365,-0.013644473,-0.041619856,-0.001183956,-0.009887124,0.026349608,0.03779025,-0.02639778,-0.03567072,0.042438764,-0.006617509,-0.027216688,0.034008816,-0.07847077,-0.018834911,0.0037212197,0.035815235,0.007605017,0.05067603,0.010880654,-0.0062321397,-0.0032906902,-0.016582912,-0.0011305162,-0.051061396,-0.005684193,-0.05294007,0.023700196,-0.009303049,0.04376347,-0.04894187,-0.026759062,0.03839239,0.03769391,0.026181009,-0.013319317,0.039307643,0.032611854,0.0027909148,0.02964933,-0.026470035,-0.032973137,0.010097873,0.023880837,-0.01588443,-0.037549395,0.0206052,-0.027553886,0.0033087544,-0.00036956288,0.050435174,-0.03160026,-0.009640248,-0.027505714,-0.06377857,0.03323808,-0.005461402,-0.022929458,0.053469952,-0.04024698,-0.0047207708,-0.023579767,0.024952644,-0.006304397,-0.0069787926,-0.004353466,0.017847404,-0.008779189,-0.09224771,-0.01077829,0.02354364,-0.007677274,-0.028107854,-0.00891768,0.0025154362,-0.042125653,-0.009399392,0.006081605,-0.007653188,0.038223792,0.027120346,0.059395004,-0.058190726,0.0021571633,-0.057949867,-0.04773759,0.008532312,-0.053373612,0.014547681,0.0393799,0.004353466,-0.027842913,-0.061948072,0.018858997,-0.03292497,0.007032985,0.010019595,0.010404964,-0.039139044,0.03340668,-0.0053861346,0.002410062,-0.027409373,-0.023748366,-0.0048261452,0.008231242,0.010868611,0.034201503,-0.030420069,0.0045160432,-0.011765799,0.01848567,0.0019750162,0.043570787,-0.046894595,0.011290109,-0.033189908,0.028541394,0.03605609,-0.020400474,0.017100751,-0.0006977287,-0.026542293,0.024121692,-0.02943256,-0.0032184336,0.021110997,-0.019701991,-0.02839688,-0.06459749,0.01743795,0.027313031,-0.0121933175,0.006370632,-0.020846056,0.042390592,-0.0048050703,-0.012825564,0.036899086,0.011247959,-0.04043966,-0.023483425,-0.030347811,0.011910312,-0.010061745,0.06739141,-0.06252613,0.037404884,-0.026421864,-0.021496367,0.04573849,0.01891921,0.08685254,-0.014993264,-0.00030125774,-0.00471776,0.062381614,-0.021568622,-0.013861243,-0.007894044,0.0023001714,-0.010730119,0.048291557,-0.004211963,-0.008261349,-0.053229097,-0.011518922,0.009206707,0.013367488,-0.015571318,0.014270697,0.027433459,-0.020075317,-0.018690398,0.0348759,0.0028992998,-0.00029937606,-0.0038506796,0.041258574,-0.003630899,0.02644595,-0.04785802,-0.048845526,0.05766084,0.07163047,0.03133532,-0.0030799415,-0.009483691,0.010326686,0.013728772,-0.0011267528,0.034081075,-0.012307724,0.040198807,-0.017088708,-0.0058407495,-0.06898106,0.0068101934,-0.0018470618,-0.0034291823,-0.049712606,0.0014850256,0.014728323,0.022833114,-0.027385287,-0.05033883,-0.034008816,-0.024687704,0.0077495305,-0.014595852,0.008279413,-0.01471628,-0.024519105,-0.013006205,0.027433459,-0.028878592,0.02683132,-0.024470935,0.034370102,0.012765349,0.013343403,0.02427825,-0.02103874,0.0008271886,0.0017296446,0.0014120162,-0.06787312,0.0029760725,0.025891982,0.00010236365,-0.0044076582,0.03969301,0.015053478,-0.017197093,0.00029636535,-0.0044738934,-0.0117838625,0.019063724,-0.057275474,-0.022845158,-0.0038416476,0.005377102,0.022483874,-0.006292354,0.049760778,-0.02644595,-0.003025749,0.019473178,0.0028601608,0.01878674,-0.021171212,0.025482528,-0.024169864,-0.016245713,0.027361201,0.02856548,-0.011880205,0.0035736957,-0.03176886,-0.013126633,-0.0014948103,0.03164843,-0.010597648,-0.028204197,-0.012801478,0.03533352,0.016643126,-0.009850996,-0.019425008,0.0070088995,0.016040986,-0.019834463,0.014848751,0.035453953,-0.00649106,-0.031214891,0.066861525,0.0094415415,0.039885696,-0.022881286,-0.03215423,0.009429499,0.029071277,-0.023471383,-0.027337115,-0.02112304,-0.016679253,0.008706932,0.032081973,0.018618142,0.016197542,0.011494836,-0.017016452,-0.017895574,-0.02410965,0.0056330115,0.0072557763,-0.020436602,0.02367611,0.025048988,0.0017296446,-0.019533394,0.008646717,0.03925947,0.007592974,0.038753673,-0.005813653,-0.035116754,0.007201584,0.0036158455,0.031214891,-0.02834871,-0.020376388,-0.028637737,0.006774065,-0.03285271,-0.007785659,-0.006617509,0.0043895943,0.009471648,-0.013295231,0.027674314,0.025771555,0.0153786335,0.013186847,-0.039933868,-0.024952644,0.0034893963,-0.026783148,-0.026518207,-0.031094464,-0.0049586156,-0.013403617,-0.023435254,-0.010254429,0.013018248,0.0020803907,-0.0037001448,-0.0029113425,0.04007838,0.016462484,0.02055703,-0.04147534,0.03465913,-0.035453953,0.0092307925,-0.045377202,-0.029938357,0.010513349,-0.02025596,-0.03533352,0.0074002896,-0.04116223,0.019978976,-0.012259552,0.002610273,0.04393207,-0.03340668,0.003371979,-0.04410067,0.0048893695,0.029191704,0.024061479,0.0040734713,0.002047273,-0.002008134,0.02839688,-0.049279064,0.014644023,0.035598464,0.04164394,-0.010447114,0.012036761,0.03834422,-0.008983916,-0.012741264,-0.022845158,-0.011272044,-0.0046033533,-0.009893145,0.01107936,-0.025024902,-0.016305927,0.022736773,-0.019834463,0.019834463,0.011410536,0.02349547,-0.0253621,0.010230344,0.021616794,0.0457144,-0.02791517,-0.004431744,0.024639532,0.013813071,-0.026855405,0.0015760992,-0.009140472,0.0039108936,0.02237549,0.0018274923,-0.014704238,-0.007069113,0.023278698,0.022821072,0.029769758,0.0065271882,-0.036104262,-0.036080174,0.032660026,-0.0622371,0.020135531,0.008773167,0.0231101,-0.028059684,-0.0073039476,0.012801478,0.009489712,-0.0042601344,0.011247959,0.00029410733,0.020834014,-0.008478119,0.0092307925,-0.0021692063,0.023001714,0.014306826,-0.030612752,-0.024519105,-0.0017778157,-0.0010612702,-0.0030182223,0.0031070379,0.04267962,0.030347811,0.017678805,-0.019714035,-0.0039741183,-0.004753888,0.003085963,-0.004747867,-0.009158536,-0.029793844,0.014945093,-0.011832033,-0.00913445,-0.027120346,0.0039440114,-0.028709993,0.0074544824,-0.026999919,-0.012181275,0.002181249,-0.04665374,0.012428151,0.013487916,-0.036296945,0.041041803,0.025554784,0.014005756,0.040800948,0.04496775,-0.016089158,0.029119447,0.019220281,-0.024218036,0.01943705,0.00018892114,-0.026036495,-0.017076666,-0.0134758735,-0.0025696286,0.04556989,-0.03942807,-0.021327768,-0.03745305,0.016040986,-0.0043143267,-0.00095589587,-0.008953809,0.008688867,-0.005955156,-0.0033478935,-0.0052175354,0.0126328785,-0.0034291823,-0.005112161,-0.013487916,-0.034008816,0.021652922,-0.026518207,-0.008098771,-0.009513798,-0.01363243,-0.0033478935,-0.07293109,0.014367039,0.045256775,-0.02462749,0.0006457942,0.024928559,0.014860793,0.038416475,-0.05419252,0.0014827676,0.019208238,-0.030853609,0.0021993131,-0.01766676,0.041764367,-0.0025485537,-0.000069387126,0.006436867,0.048990037,0.024928559,0.004744856,0.028324625,-0.005608926,0.024169864,0.01493305,-0.0069547067,0.008195113,-0.021436153,0.06532005,-0.01341566,-0.01147075,-0.00046402347,-0.03302131,0.01073614,-0.0014097582,0.006436867,0.00536807,-0.00580161,0.009357242,-0.040704604,0.020761756,0.0014451339,-0.003561653,0.02137594,-0.004561204,0.0098750815,-0.003402086,0.03458687,-0.029456645,0.01653474,-0.017281393,0.022989672,0.030468239,0.032274656,-0.030227384,-0.00007630232,-0.053855322,0.015306376,-0.047809847,-0.026855405,0.033141736,0.024687704,0.008682846,-0.0075809313,0.013487916,-0.016631082,-0.0092247715,-0.013379531,0.001973511,-0.0014165323,0.0009882608,-0.0050308723,-0.02601241,-0.001869642,0.0025048987,0.04956809,0.0024868345,-0.0061659045,0.0028872571,-0.0057082786,-0.040150635,0.024952644,0.056456562,-0.007839851,0.012102996,0.0030573613,-0.026325522,0.023868795,0.0015640564,-0.0039530434,0.032250572,0.036561888,0.033334423,0.009977445,-0.004224006,-0.016631082,0.03292497,0.005834728,0.0018937276,-0.017799232,0.022315275,-0.013283189,0.011826012,-0.040969547,-0.02017166,-0.06305601,0.017160965,0.02055703,-0.015499061,0.008803274,-0.0066897655,0.032322828,0.0031100486,-0.006557295,-0.02683132,-0.008255327,0.048460156,-0.006358589,0.019714035,0.021062827,-0.017847404,0.009363263,0.0032395085,-0.0038356262,0.03502041,-0.000068728536,0.02073767,0.00008199441,-0.011880205,0.01566766,-0.043185417,-0.017040538,0.022038292,-0.0024823186,-0.007406311,-0.00022824836,-0.0057082786,-0.01800396,-0.051254082,-0.006418803,0.010868611,0.014583809,-0.034683213,0.0026750031,-0.007942215,0.019653821,0.0227729,0.004428733,-0.008508226,0.005244632,0.0075869528,-0.017112793,-0.025506614,0.006683744,-0.012379981,-0.0073220115,-0.027626142,0.024507063,-0.019015552,0.04773759,-0.0019795324,0.023387084,0.018834911,-0.032973137,-0.051398594,-0.007948237,-0.010886676,-0.01064582,-0.02921579,-0.0014436286,-0.007394268,0.005006787,0.022459788,-0.0128496485,-0.0074544824,0.056890104,0.028059684,-0.015920559,0.036248773,0.037549395,0.0046545356,-0.0016573879,-0.028902678,-0.00818307,0.05419252,0.010007552,0.027240774,-0.0694146,0.0030543506,-0.007045028,0.0044227117,0.04410067,0.021773351,0.008779189,-0.0002052918,-0.041379,0.042390592,0.008508226,0.01723322,0.0010642809,0.018810825,0.0043775514,0.0016016901,-0.016956238,-0.037549395,-0.013487916,-0.017389778,0.013307274,0.0013743825,0.01268105,-0.04082503,0.031407576,0.030829523,-0.004440776,0.021821521,-0.00059724675,-0.029143533,-0.022267105,-0.00081589853,-0.007309969,0.00367907,0.005759461,-0.013174804,0.060213912,-0.01748612,0.024266206,-0.048965953,-0.015438847,-0.030058784,0.013138675,0.017016452,0.027891085,-0.021821521,-0.0019403934,0.032130145,0.010766247,0.023013758,0.00022900103,0.026253266,0.033117652,0.023856752,0.01575196,-0.034056988,-0.041306745,-0.0115670925,-0.020099403,0.024242122,0.048315644,-0.009616162,0.01783536,-0.00038104117,0.009321113,0.008273391,-0.009411435,0.009411435,-0.019557478,-0.005377102,0.0160169,-0.003968097,-0.009363263,0.005073022,0.005190439,-0.02025596,-0.035116754,0.012036761,-0.0061147227,-0.010880654,-0.0034111182,0.018076217,0.027192602,0.0039108936,-0.026686806,0.017642677,-0.0035857384,0.0025545752,0.00074853416,-0.052265674,0.016438399,0.0145356385,0.029914271,-0.023700196,-0.03172069,-0.017967831,0.037814338,-0.032057885,0.0064248242,-0.020665415,-0.018666312,0.016992366,-0.021520453,0.015980773,0.017028494,0.0061056907,-0.04947175,0.03160026,-0.023567725,-0.016546782,-0.011362365,0.04345036,0.012072889,-0.048821438,-0.017594505,-0.018979425,0.016522698,0.02397718,-0.001387178,0.03181703,-0.003630899,0.009616162,0.031431664,0.01160322,-0.013825114,-0.0024356528,-0.008863488,0.027409373,-0.0020352302,-0.009555948,-0.040897287,-0.003381011,-0.0077615734,0.007900065,-0.0011523437,0.0075207176,0.012151168,-0.0036399309,-0.013873286,0.050579686,0.0026509175,0.015294334,-0.04475098,0.007900065,-0.036200605,-0.0062261187,0.007478568,-0.009453584,-0.018256858,-0.04523269,0.018895125,0.013439745,-0.0320338,0.011597199,0.007219648,-0.017413864,-0.019075768,-0.0013924467,0.008514247,0.027048089,-0.007936194,-0.0038356262,-0.018365243,0.049616262,0.00036448234,0.021929907,-0.008104793,0.011530964,0.016823767,0.045208603,0.01925641,0.010037659,0.0105013065,-0.007123306,-0.0030438132,-0.00536807,-0.005913006,0.0055667763,-0.016896024,-0.010477221,0.041258574,0.024350505,-0.015210034,-0.013090504,0.033213995,0.026421864,0.036152434,0.0024115671,-0.008953809,0.046027515,0.011067317,0.015739916,0.011524943,-0.015691746,0.0065512736,0.0026464015,0.0012148157,-0.0147524085,-0.0035767064,0.0017100751,-0.015161863,0.024374591,-0.015258205,0.05679376,-0.016089158,-0.027577972,-0.0055216155,-0.022170762,-0.008574461,0.011597199,-0.041788455,0.0021887757,-0.01891921,-0.0579017,0.025338015,0.014523596,0.0061147227,0.0022670538,-0.012994162,0.008255327,0.058576092,0.016679253,-0.009838954,-0.014210483,0.037356712,-0.015438847,-0.0062321397,0.035550293,0.030974036,0.0035315459,0.004428733,-0.009182622,0.05375898,0.007647167,-0.01289782,-0.0052506533,0.026494121,0.005792578,0.012548579,0.015523147,-0.029769758,0.0009017033,0.005220546,0.017726976,-0.03639329,-0.010025617,0.007032985,-0.05457789,0.02432642,-0.00031047798,-0.02622918,0.023098057,-0.00023596326,0.0056239795,-0.01743795,-0.0348759,0.037380796,-0.0012102997,0.009863039,0.006418803,0.026494121,-0.01051937,0.017498164,-0.023254612,0.021267554,0.040054295,-0.016462484,-0.0016829788,0.028228281,0.004383573,0.043209504,0.019629735,0.0044738934,0.019834463,0.019918762,0.01723322,-0.007665231,-0.0064067603,-0.023531597,0.038320135,-0.026855405,-0.004627439,-0.02596424,0.050001632,0.03502041,0.025313929,0.022411618,0.0043233586,0.0060394555,0.00083170464,-0.019858548,0.0059973057,0.012584708,-0.04361896,-0.009814868,0.04306499,-0.03147983,-0.0013931994,0.00033588073,-0.0003396441,-0.010404964,-0.030155128,-0.00086858566,-0.028734079,-0.00086858566,0.013078461,-0.013969627,0.014547681,-0.0050670006,0.0044949683,-0.0047237813,-0.039187215,-0.025940154,-0.034996327,-0.011217852,-0.020641329,-0.04942358,-0.0024010297,-0.0322024,0.011061296,0.029480731,-0.02709626,-0.0014594347,-0.015438847,0.006280311,-0.027553886,-0.0051482893,0.029504817,-0.0041065887,-0.012717178,-0.006972771,-0.0035164924,0.021400025,-0.016053028,0.019364795,-0.013403617,0.009164558,-0.0030919844,-0.04275188,-0.013837157,0.0066114874,-0.011380429,-0.016667211,-0.022881286,-0.028300539,0.016089158,0.015185948,0.0060695624,-0.004853241,0.011314194,-0.007827808,0.0018320082,-0.002644896,-0.008213177,-0.022002164,-0.004519054,-0.024832217,-0.0013661031,-0.021628838,0.03540578,-0.007020942,0.012018696,-0.026253266,-0.015643574,0.025627041,-0.0009144988,-0.022688601,-0.014463382,0.012945991,0.0034050967,0.059154145,0.0057745143,0.0006081605,-0.026566379,0.0054674232,0.057949867,0.026205095,0.013620387,0.0073220115,-0.015739916,-0.009345199,0.001770289,0.03323808,0.048990037,0.029312132,-0.024254164,-0.058527924,-0.006605466,0.0006450415,-0.009766697,-0.011380429,0.007743509,0.00010302224,0.0033900433,-0.006870407,-0.025627041,-0.012169232,-0.01748612,-0.017558377,-0.038681418,-0.030636838,0.0034081074,0.03432193,0.012656964,-0.01645044,-0.035429865,0.012813521,-0.023218485,-0.0040283105,0.016293885,-0.03446644,-0.023218485,0.016161414,0.013668558,0.0033388615,0.012596751,-0.010206258,-0.012560622,-0.021869693,0.006695787,-0.021195296,-0.012644921,-0.0076953378,-0.0147524085,-0.0021993131,0.027337115,-0.019701991,0.03745305,0.010892697,0.010091851,0.013957585,0.000939337,-0.010898718,-0.0049104444,0.017076666,-0.025891982,0.0007078898,-0.016811725,-0.005605915,-0.00856844,-0.015101649,0.019340709,-0.023820624,-0.022652473,0.050387003,0.050242487,0.015462932,0.020003062,0.028758164,-0.031841118,-0.026686806,0.016655168,0.016173456,0.005301835,-0.01865427,-0.0050489367,0.001597174,0.039717097,-0.0005114419,0.005527637,-0.018967383,0.031383492,-0.0051181824,0.0032876795,-0.018292986,0.0047388347,-0.011103446,-0.0139094135,0.025891982,-0.0090260655,0.014656066,-0.028734079,-0.0012584707,0.018329116,0.008724996,-0.020665415,-0.011055274,0.03497224,-0.0023167303,0.017221179,0.047159534,0.033310335,-0.0041095996,0.04643697,-0.005431295,-0.011813969,-0.023941051,0.04544946,0.017726976,0.024350505,0.034610957,0.0074243755,0.030925864,-0.016582912,-0.030660924,-0.007725445,0.016739467,-0.010019595,0.010910761,-0.027048089,-0.006557295,-0.0052837706,-0.0066897655,-0.02687949,0.009303049,-0.008929723,-0.02103874,0.005443338,0.025121244,0.015282291,-0.03446644,0.014294783,-0.03133532,0.047255877,0.050579686,0.015438847,-0.012958034,0.003293701,-0.02579564,0.01987059,-0.034081075,0.031046294,-0.0035315459,-0.03752531,-0.034948155,-0.009959381,0.025193501,-0.012693092,0.055252284,0.011886226,-0.0035255246,0.029167619,0.018774698,-0.01670334,-0.038536903,-0.020207789,-0.017534291,-0.003697134,0.007755552,-0.0062261187,0.004648514,-0.0022730753,-0.020111447,0.018810825,0.0347073,-0.016161414,0.025313929,-0.0013457809,0.0050368938,-0.020653373,-0.0069848136,-0.0049887225]},{"id":"interface-APIGuildPartial","type":"interface","source":"main","text":"Interface: APIGuildPartial\nProperties: banner: string | null, features: string[], icon: string | null, id: string, name: string, splash: string | null","meta":{"url":"/docs/typedefs/APIGuildPartial"},"embedding":[0.011389888,-0.015150643,0.02184706,0.010421298,0.00023766301,-0.037547767,-0.02953598,-0.004941597,0.020746935,0.03463004,0.007085048,-0.03176015,0.013285213,-0.016155105,0.05491062,0.009859278,-0.060315583,0.02178727,-0.007228543,0.0071687535,0.028364109,0.030205624,0.008340626,0.05835449,-0.018367315,0.04613353,0.0011113362,0.023855986,0.023054807,-0.003820545,0.046492267,-0.028914172,0.04613353,-0.016143149,-0.001015673,0.0045380183,0.037571684,0.020280577,-0.027479226,-0.016824748,-0.007963953,-0.0063077854,-0.014385339,-0.009829383,-0.03338642,0.053236514,-0.011736667,0.031090507,0.028938087,0.05735003,-0.059358954,-0.006146354,-0.020125125,0.04907517,0.005904207,-0.014684286,-0.035849746,0.00401785,-0.014409254,0.03592149,-0.005282397,-0.0053511546,0.016179021,0.0039700186,0.016549716,0.019694641,-0.05677605,0.035132274,0.038313072,-0.027335731,0.04642052,-0.011617088,-0.004149387,0.00888471,-0.0004644892,0.009763615,-0.018690178,-0.010630562,0.042928815,-0.04285707,-0.030755686,0.039389282,-0.09174091,-0.075239025,0.029607728,-0.0004196471,-0.044268098,-0.0032854294,-0.013273255,0.0041972185,-0.030468697,-0.008597721,-0.09843733,-0.03010996,-0.010427278,-0.02207426,0.0635203,-0.020232745,-0.017649842,0.06595971,0.089158006,-0.01658559,-0.090066805,-0.027120488,0.019168494,-0.009105931,-0.0017309042,0.030970927,0.0027981456,0.008227026,-0.09317586,0.06906876,0.000063059175,0.03130575,-0.00752749,-0.024190806,0.01681279,0.004224124,0.038910966,-0.04178086,-0.041637365,-0.0037936398,0.005195702,0.025494216,0.0027652613,0.018367315,-0.03573017,-0.031138338,-0.062754996,-0.019718556,-0.011234435,0.007629132,0.0032704822,-0.0137754865,-0.0077008796,-0.020077292,-0.047281485,-0.024633247,-0.087292574,-0.039915428,-0.00008020192,-0.0028863351,0.012238897,0.0004431892,-0.057302196,-0.003357177,-0.01522239,0.020137083,-0.0086634895,0.021954682,-0.01573658,0.0022764828,-0.014158139,-0.04132646,-0.020077292,-0.029009834,-0.013058013,-0.04115905,-0.061941855,-0.01737481,0.033075515,-0.061080888,-0.0038863134,0.0070252586,-0.01046913,-0.03056436,0.022660196,0.027742298,-0.07423457,0.024083186,0.023891859,-0.007551406,-0.038910966,-0.0044005024,0.005533512,-0.0031927559,-0.0043825656,-0.047185823,-0.0150071485,0.0034827348,0.053953987,0.017123695,-0.013679823,-0.08863186,-0.025613794,0.039389282,-0.019909883,-0.0055394913,0.004454313,0.0042928816,-0.0330516,0.025374636,0.011916035,0.013285213,0.0419961,-0.026666088,0.038289156,-0.013787444,-0.0070551536,0.003940124,0.005010355,0.008759152,0.05529327,-0.014971275,-0.0010470625,-0.01472016,-0.0014312096,-0.026259521,-0.00019618409,0.022432996,0.027359646,-0.04376587,-0.016023569,-0.01505498,-0.05156241,0.0061194487,-0.004397513,0.036041074,0.016669296,0.007497595,-0.012448161,0.050988432,0.030755686,-0.045009486,0.06399861,0.031138338,0.006373554,0.009954941,-0.0058533857,0.0388153,-0.02145245,0.043335382,-0.020950219,0.0046336814,-0.023353754,-0.021249166,0.025709458,0.03039695,0.004005892,-0.017590052,-0.0054587754,-0.025972532,-0.036949873,0.0031718295,0.025494216,-0.026618257,0.042187426,0.015605043,0.01573658,-0.0056799967,0.036328062,0.026522594,-0.045918286,0.026881332,0.036997702,0.022050343,-0.033362504,0.012878644,0.030827433,0.0045529655,0.01619098,-0.010612625,-0.027742298,-0.0065170485,0.03570625,-0.0028325245,-0.007611195,0.053332176,-0.009058099,-0.0013654412,0.021954682,-0.018164031,0.030038213,-0.021177419,0.0032585242,0.018116198,0.014744075,0.041517783,-0.008418352,-0.011748624,-0.041350376,-0.02405927,-0.027742298,0.036423724,-0.03752385,0.020101208,0.07012105,-0.015377843,0.038504396,0.044172436,0.025900783,0.012938434,0.038910966,-0.018666262,0.017398726,0.010295741,0.035227936,0.0005388523,0.07275178,0.019503314,0.020878471,-0.05591508,-0.019610936,-0.039771933,0.0035843768,-0.007993848,0.028675014,0.02371249,-0.006804038,-0.015461548,0.047688056,-0.06060257,-0.036638968,-0.019395694,-0.057015207,-0.01472016,0.040991638,0.011300203,-0.02428647,0.05055795,0.027527057,-0.017506346,-0.03819349,-0.023975564,0.0018146094,-0.050079633,0.03293202,-0.010218015,0.017733546,0.025900783,0.04182869,-0.055723757,-0.008059616,0.030253455,0.003656124,0.016800832,-0.019276114,0.048142456,0.017625926,0.012412287,0.025111564,-0.055771586,-0.033242926,-0.0052375547,0.03996326,-0.03192756,-0.024441922,-0.007198648,-0.025542047,0.028459772,-0.010971362,0.025805121,-0.023365712,-0.019013042,-0.057828344,-0.07031238,0.03561059,-0.017960746,-0.05495845,0.056489058,-0.026522594,0.0117187295,0.02932074,-0.00041628396,-0.032955937,-0.005267449,-0.0007212101,-0.0048040813,0.006696417,-0.04668359,0.046277024,0.029846886,-0.03130575,-0.03453438,0.019216325,-0.0047054286,-0.029009834,0.013058013,-0.017446557,-0.054145314,0.02953598,-0.02659434,0.00007347561,-0.025948616,0.017362852,-0.045176897,0.0002602709,0.024095142,-0.028364109,0.033577748,0.033984315,-0.00077576796,-0.03147316,-0.030038213,0.014122264,-0.010140289,0.005904207,0.0016860621,0.0044453447,0.00679208,0.018355357,0.021380702,-0.01505498,-0.008460205,-0.03879139,0.021930765,0.029512066,0.0098951515,0.04249833,-0.023509206,-0.00786829,-0.019945756,0.045583468,0.031497076,0.015939863,-0.040393744,0.004149387,-0.097385034,0.0017847146,0.09441948,0.0042151553,0.009787531,-0.041135132,-0.039532777,0.019276114,-0.01578441,0.024142975,0.0044722497,-0.056728218,-0.039030544,-0.049553484,0.0043586497,0.04080031,0.0106604565,-0.007999826,-0.04137429,0.014014644,0.00030941033,-0.016095316,0.032740697,-0.0035574716,-0.018738009,0.0015664833,0.023186343,-0.013942896,-0.013727655,0.06356813,-0.04754456,0.003763745,-0.044794247,-0.039604522,0.021021966,-0.026833499,0.061080888,-0.00039946818,-0.0027921668,0.042259175,-0.0033183137,-0.028459772,-0.020507777,0.021906849,0.019921841,-0.038910966,0.03276461,0.021332871,-0.013859191,-0.04041766,0.03922187,0.023114596,0.01381136,-0.025542047,0.021237208,0.03726078,-0.03202322,-0.042737488,0.0004984944,-0.00067487324,0.019551145,0.010391404,0.024752827,0.0042211344,0.018761925,-0.0429049,-0.060937393,0.053666998,0.07691313,0.016250769,-0.01256774,-0.059024133,-0.011270309,0.011706771,0.00086171523,0.02898592,-0.012149214,-0.0082629,-0.05586725,-0.019766388,-0.044794247,-0.009703825,-0.0036860188,0.026426932,-0.046564013,-0.0050462284,-0.028101034,0.06237234,-0.029727308,-0.024489753,-0.03482137,-0.021177419,-0.021703565,-0.008221048,-0.052662537,0.0034079978,-0.0058623543,-0.010774056,0.023557037,-0.07241697,0.012687318,-0.01619098,-0.0066127116,-0.00611347,0.024991984,0.022648238,-0.030014297,0.025996447,-0.020280577,-0.027287899,-0.08705342,-0.0037159135,0.00005899536,-0.005647112,-0.05347567,0.015389801,0.011204541,-0.009082016,0.016717127,-0.011581214,-0.028340193,0.022325376,-0.04240267,-0.007928079,0.009416836,0.02348529,0.027311815,-0.030683938,0.03553884,-0.023102637,-0.0001344328,0.010612625,0.014301633,0.019551145,-0.011078983,0.019694641,-0.04347888,0.0024498722,-0.014983233,0.014457086,-0.021595944,0.021045882,-0.0024139986,-0.017028032,-0.004896755,0.018068368,-0.020459944,0.012161171,-0.0049954075,0.010062562,0.029153328,-0.01482778,-0.020615397,-0.009799489,0.034558292,-0.0009611152,0.043502793,0.026474763,0.003333261,-0.018104242,0.024382133,0.00033893136,-0.014552749,-0.010038646,-0.04512907,-0.0007623153,0.051945064,-0.013739613,-0.007856332,-0.0009984836,0.006367575,0.021045882,0.035227936,0.01805641,0.011927993,-0.009518478,-0.0016113253,-0.0026411985,-0.025661627,0.036543302,0.0039251763,-0.020005545,0.0055215545,0.0015074412,-0.010122351,-0.06710766,-0.015186517,0.024298428,-0.004239071,0.028053204,0.00515086,-0.046444435,-0.005880291,-0.026857415,0.028172782,-0.015760496,-0.024657164,-0.05581942,-0.022660196,-0.03293202,0.012830813,-0.0013773992,-0.01918045,0.0012563255,-0.0059729647,-0.0036351976,0.03879139,0.020292535,-0.014289675,-0.025709458,-0.013763528,-0.0015560201,-0.034056064,-0.006349638,-0.006684459,-0.012017677,-0.017398726,-0.023987522,-0.020149041,0.026833499,0.009416836,-0.005751744,0.0017129674,0.028053204,-0.020842597,0.01046913,-0.05620207,0.018558642,-0.014217928,0.0022226723,0.016657338,-0.0042360816,0.0049774707,-0.0020986092,0.013823317,0.035514925,-0.01335696,0.02151224,-0.0055215545,0.0027607772,0.032334127,-0.04357454,0.004035787,-0.03221455,0.025231142,0.021667691,0.019347861,0.014959317,-0.0013968307,-0.019575061,0.010654477,-0.03589758,-0.008992331,0.026905246,0.03407998,-0.033242926,0.011527403,0.008944499,-0.0081373425,-0.016705168,-0.055101946,-0.0070491745,0.029296825,-0.023114596,0.022887396,-0.014062475,-0.016059443,-0.013285213,-0.0072763744,0.035132274,0.01472016,0.029512066,-0.025302889,-0.01828361,0.018773884,0.029918633,-0.012214982,-0.0016666305,0.050127465,0.0061822277,0.006696417,0.010176162,-0.035777997,0.009925046,0.03683029,-0.008866773,-0.005138902,0.009494563,0.022947187,0.0111327935,0.024657164,-0.0023676618,-0.01863039,-0.068829596,0.025422469,-0.031210085,0.007521511,0.0070312377,0.045272563,-0.020866513,-0.0060357437,-0.0000122731835,-0.030349119,0.0025873878,-0.00008225719,-0.042426582,0.010218015,-0.014098349,0.019443525,0.009297257,0.014289675,-0.0015605043,-0.017398726,-0.0059580174,0.016477969,-0.00554846,0.02093826,-0.0003742445,0.025207227,0.026259521,-0.006236038,-0.011635024,-0.0047472813,-0.0017802304,0.015138686,0.0077606686,0.0079221,-0.021189377,0.0065230276,-0.02416689,0.014863654,-0.016561674,0.0075573847,-0.008711321,0.007874269,-0.012890602,0.0055544386,0.004056713,-0.011748624,0.028196698,-0.012209003,-0.02944032,0.01482778,0.030970927,0.007814479,0.018140115,0.06567272,-0.014504917,0.0032914085,0.017111737,-0.0054767122,0.017924873,0.017063905,-0.0012383887,-0.030205624,0.004561934,-0.013333044,0.03202322,-0.040226333,-0.003928166,-0.032525454,-0.0027039773,0.009859278,0.016167063,-0.0020134093,-0.000040708197,0.025900783,0.021069797,-0.025302889,-0.009996794,-0.008860795,0.0010291256,-0.02099805,-0.029368572,0.0392697,-0.019718556,-0.026953079,-0.009805468,0.017159568,0.0010814414,-0.06634236,-0.032501537,0.04890776,-0.00068458903,-0.009590225,0.023401586,0.012531866,0.02671392,-0.020579524,-0.002626251,0.040274166,-0.00021748408,-0.01375157,0.014170096,0.05299736,-0.015856158,0.01482778,-0.005082102,0.03592149,0.0016053463,-0.019335903,0.030277371,-0.003644166,0.03424739,-0.0033661453,-0.030516528,-0.0005343681,-0.030827433,0.05027096,0.005162818,-0.00549166,0.0039490922,-0.023760322,-0.01352437,0.027718382,0.026666088,-0.0073062694,-0.0004499155,0.019850092,-0.01171275,0.0009872731,0.0030462719,-0.031999305,0.01578441,0.00045589445,0.009070057,0.008496079,0.034677874,-0.019192409,0.022552576,-0.016860621,-0.0044154497,0.024418006,0.009285299,-0.0012069993,0.009476625,-0.04845336,-0.0061284173,-0.044124603,-0.026355183,0.007342143,0.040991638,-0.025829036,-0.030181708,0.031520993,-0.025039816,-0.019826178,-0.026929162,-0.014971275,0.0016457043,0.0042689657,0.020364283,0.012119318,0.0012383887,-0.0029909667,0.03333859,-0.027861878,0.019288072,0.010768077,-0.006971448,-0.01840319,0.0051807547,0.054814957,0.014672328,0.002892314,-0.003769724,-0.03384082,0.008519995,0.020687144,0.014277717,0.01867822,0.001273515,0.03044478,0.0067442483,0.015341969,0.003662103,0.02563771,0.006487154,-0.008113426,-0.024704995,0.012268793,-0.009070057,-0.024537586,-0.03967627,-0.029464234,-0.019108703,0.0053900178,0.018606473,-0.0076709846,0.0070252586,0.018355357,-0.0015201464,-0.014588622,0.0015814306,-0.03508444,-0.012639487,0.056967374,-0.012143235,0.028698929,-0.00040544712,-0.0005717365,-0.009632078,0.020746935,0.010146268,0.018068368,0.015150643,0.035562757,0.015951822,0.0054079546,-0.022157965,-0.0120116975,-0.019431567,-0.023975564,0.015341969,0.002370651,-0.008830899,-0.007198648,-0.013787444,-0.058019668,-0.009392921,0.0018639357,-0.00026064456,-0.051753737,0.00031165243,0.039987177,0.008597721,-0.003934145,0.0040955762,-0.014504917,-0.014600581,-0.002303388,0.010989298,-0.009859278,0.011043109,-0.009996794,0.008836878,-0.04936216,0.015090854,-0.009374984,0.049314328,0.005171786,0.004421429,0.017924873,-0.044555087,-0.016764957,-0.026666088,0.0020806724,0.004807071,-0.017853126,0.0020358304,-0.016944326,0.0039072395,0.0077845845,-0.0037786923,-0.009650015,0.049314328,0.005880291,-0.008203111,0.011820371,0.034343053,0.0020612408,-0.00065693643,-0.018558642,-0.02649868,0.027837962,-0.0045439973,0.017183485,-0.015318054,0.011168667,-0.010505004,-0.012376414,0.010702309,-0.0021150513,0.00679208,0.00083555735,-0.01772159,0.05591508,-0.0054647545,0.0066426066,-0.006923617,-0.0068159956,0.00060723646,-0.0062181014,-0.007085048,-0.051514577,-0.004271955,-0.063328974,0.022146007,0.003706945,-0.001403557,0.0019192409,-0.0025993458,0.04584654,0.033888653,0.031712316,0.03781084,-0.053332176,-0.004014861,-0.034964863,-0.027120488,0.005201681,-0.0005896733,0.0136559075,0.0030642087,-0.0020388197,0.0010186625,-0.040154584,-0.01641818,-0.017458515,0.026905246,0.0063077854,0.019252198,0.0031150295,-0.0053302282,0.04340713,-0.010965383,0.030038213,0.043096226,0.036423724,0.018833673,0.009548373,-0.012424245,-0.032286298,-0.0059520383,0.0053182705,-0.011862224,0.008627616,0.04120688,-0.027837962,0.00097382045,0.01817599,0.004833976,-0.016489927,-0.0062240805,-0.010851783,-0.0065290066,0.0073062694,0.0013684307,-0.01913262,0.016023569,0.004062692,-0.006271912,-0.0036202504,-0.052519042,0.03814566,0.026307352,-0.0068458905,-0.012214982,-0.0018250726,0.008980373,0.027287899,-0.012101382,0.02189489,0.015102812,-0.03515619,-0.0071926694,-0.029679477,0.013500455,-0.013572202,0.003162861,-0.041852605,0.0032645033,-0.018738009,0.026737835,-0.01737481,-0.0020911356,-0.027383562,-0.013907023,0.006361596,0.027192235,0.0032914085,0.023473334,-0.0031389454,-0.040537238,0.031449243,-0.00044431025,-0.009171699,-0.0056351544,0.023568995,0.04398111,-0.028364109,0.015186517,-0.031377498,0.016286643,-0.0104870675,0.012687318,0.043502793,0.007114943,0.025326805,0.0007174732,0.0047682077,-0.031497076,-0.01234054,-0.009237468,0.03864789,0.022480829,0.0022570512,-0.021548113,-0.013416749,-0.020149041,0.009195616,-0.011688835,0.0043347343,-0.005443828,-0.008256922,-0.012238897,0.0259247,-0.012029635,0.01958702,-0.018893462,0.04142212,-0.039389282,0.0011419782,0.002297409,-0.030707855,-0.0023527143,-0.05581942,0.02700091,0.0034498505,-0.002666609,0.01578441,0.012854729,0.004113513,-0.0050671548,0.01635839,0.0051418915,0.00020664724,-0.016884537,-0.0010022204,-0.012914518,0.053906158,-0.0003600445,0.0044064815,-0.011001256,0.004167324,0.022719987,-0.0014782938,0.0057427753,-0.0028698929,0.009279321,-0.0032854294,-0.012035614,0.010277804,-0.015306096,0.012238897,-0.00003244044,0.0015410727,0.0069295955,0.015150643,-0.03247762,0.014612539,0.015617001,0.036184568,0.015401759,-0.010445215,-0.018797798,0.02886634,-0.007838395,0.019909883,0.016681252,0.0022779775,0.006083575,0.0056530912,0.040537238,-0.024944153,0.009554352,0.0013983254,-0.017171526,0.024704995,-0.021261124,0.035873663,-0.030683938,-0.013153676,0.006989385,-0.038934883,-0.024095142,0.004062692,-0.036423724,0.02704874,-0.03283636,-0.035801914,0.01754222,-0.024441922,-0.00048093128,-0.0021524196,-0.0243343,0.028364109,0.0433593,0.0032166718,-0.022719987,-0.029679477,0.029296825,-0.025398552,0.018415146,0.042474415,0.046181362,0.009195616,-0.012155193,0.0057009226,0.047688056,0.006265933,-0.019335903,-0.0036740608,0.020591483,0.0033990294,0.0051478706,0.006768164,-0.016597548,-0.02484849,0.006666522,0.022600407,-0.019120662,-0.025948616,0.044961657,-0.053619165,0.048859928,0.019802261,-0.004209176,0.00084527314,0.012125297,0.014194013,-0.016992157,0.004669555,0.028914172,0.012866687,0.007653048,-0.0079221,0.0013564728,-0.01052892,-0.01222694,-0.018606473,0.013631991,-0.014744075,-0.013464581,-0.008238984,0.02953598,-0.002100104,0.02716832,0.014397296,-0.02234929,0.008089511,0.01895325,0.011916035,-0.017697673,-0.0048190285,-0.019850092,0.03606499,-0.028555434,0.0032525454,-0.016406221,0.02451367,0.029822972,0.018068368,-0.00028287878,0.015019107,0.020782808,-0.010893635,-0.0029730296,0.011790477,0.00798189,0.0037338503,0.013416749,0.026139941,-0.018427104,-0.015856158,-0.009093973,0.012603614,0.018594515,-0.030827433,-0.018427104,0.005428881,-0.020818682,-0.0051837442,0.0004738313,0.037332524,0.005258481,0.0012600623,-0.027120488,-0.022552576,-0.021607902,-0.0383609,-0.01913262,-0.0074198693,-0.041637365,0.020077292,-0.033816904,0.00026942615,0.017350895,0.01188614,-0.0026172826,-0.02853152,0.0032674926,-0.03147316,-0.03661505,0.007772627,0.000080996004,0.004295871,0.011186603,0.009829383,-0.000042997013,-0.000057360492,0.0027712404,-0.03606499,-0.0080177635,0.011371951,-0.030731771,-0.017590052,0.00854989,-0.034056064,-0.030349119,-0.022564534,-0.02054365,0.005452797,0.01064252,0.011324119,-0.004594818,0.0041643344,-0.0068638274,0.003865387,-0.020352324,-0.010325636,-0.03164057,0.0018295568,-0.032166716,-0.0019775357,-0.030133877,0.014791907,0.0135961175,0.010786015,-0.009357047,-0.025876869,0.002230146,0.029057667,-0.033242926,-0.022540618,0.006762185,-0.024968069,0.04749673,0.005025302,-0.009512499,-0.029703392,0.0054737227,0.017219357,-0.026020363,0.019288072,0.0061822277,-0.011862224,0.0040686713,-0.0043676184,0.02750314,0.033027686,0.021835102,-0.010212036,-0.032405876,-0.034438714,-0.010325636,0.02468108,-0.0024244618,-0.0047682077,-0.011652961,0.020842597,0.002189788,-0.036399808,0.021536155,0.0052704387,-0.0072703953,-0.03266895,-0.00333924,-0.015437633,0.017793337,-0.017924873,-0.024142975,-0.0316884,0.013823317,-0.015617001,0.008848837,-0.011055067,-0.035634503,-0.015174559,0.018522767,0.028053204,0.0084303105,0.013954855,-0.003180798,-0.025350722,-0.018821714,0.011067024,-0.0071926694,-0.029057667,-0.0234255,-0.03379299,-0.019216325,0.038313072,-0.008143322,0.019718556,0.009123868,0.013153676,-0.0044005024,0.012214982,0.017745504,0.006804038,0.010576751,-0.021906849,0.0006688943,-0.044865992,-0.030133877,0.018259695,-0.0041852607,0.015999652,-0.013787444,0.002666609,0.044052858,0.054145314,0.018104242,0.007449764,0.009931025,-0.03264503,-0.0022107144,0.021643776,-0.015234348,0.006576838,-0.033506,0.002835514,-0.02405927,0.029703392,0.02230146,0.022971101,-0.02280369,0.030062128,0.00786829,0.0124840345,-0.006361596,0.020184914,-0.009022226,-0.0040208395,-0.0027488193,0.0111327935,-0.004337724,-0.015102812,0.020651272,0.012125297,0.0069834064,-0.030277371,0.018008579,0.014600581,0.0041165026,-0.008340626,0.031281833,0.0048698494,-0.014851696,0.019957714,-0.003384082,-0.0068578483,-0.00181162,0.02841194,-0.0052704387,0.007826437,0.0064991117,0.017231315,0.028196698,-0.017888999,0.0044154497,0.009978857,0.013141718,-0.001080694,0.0028250508,-0.0011599151,0.011324119,0.019455483,-0.027120488,0.015987696,0.011844288,-0.013165634,-0.0388153,0.017458515,0.03769126,0.017877042,-0.025039816,0.030516528,-0.03752385,0.045272563,0.035132274,0.033888653,-0.023054807,-0.02178727,-0.021930765,-0.0017084832,-0.015258264,0.012543824,-0.01794879,0.0015022096,-0.025876869,-0.030229539,0.049266495,-0.0026695984,0.03606499,0.01578441,0.005156839,0.015365886,0.017984662,-0.028388025,-0.025207227,-0.008651531,-0.010122351,0.008454226,0.0017862094,-0.022038387,-0.0038833239,-0.027144404,-0.00043534185,0.0144212125,0.051801566,-0.038217407,0.027096573,0.013835276,0.020364283,-0.0014693254,0.014672328,-0.0039759977]},{"id":"interface-APIInstance","type":"interface","source":"main","text":"Interface: APIInstance\nDescription: Response from GET /instance (unauthenticated).\nInstance info and API/gateway endpoints.\nProperties: api_code_version: string, captcha: Record, endpoints: { api: string; gateway: string; }, features: { voice_enabled?: boolean; }, push: Record","meta":{"url":"/docs/typedefs/APIInstance"},"embedding":[-0.04166125,0.002673996,0.023661736,-0.030702904,0.019781163,0.0067116837,-0.010671577,0.023405472,0.03555972,-0.03084934,-0.0054364637,-0.036243092,0.007840467,-0.025894897,0.024943057,-0.011684432,-0.0067726993,0.07590304,-0.025260337,0.026993172,0.016010417,-0.028628383,-0.030361217,0.050715923,-0.023722751,-0.01542467,-0.021318749,-0.0014620794,0.00689473,-0.020122848,0.05798895,-0.018109344,0.057403203,0.056866266,0.0510088,-0.012764403,0.00426497,-0.010439719,-0.0039965026,0.013020666,-0.019537102,-0.012544747,-0.021477388,-0.0034016033,-0.08122358,0.012282382,-0.0034626187,-0.01642532,-0.014301988,0.017743252,-0.037634242,-0.0133379465,-0.016217869,0.054035157,-0.0110681765,-0.011946797,-0.004838514,0.040050447,0.030361217,0.010171252,0.0066689732,-0.0073828525,-0.007895381,0.029873095,-0.0077062333,0.023539705,0.004094127,0.07717216,-0.026016928,-0.018768309,0.034607884,-0.0030263592,-0.055109028,-0.0016931748,0.029360566,0.016083635,-0.041319568,0.055694774,-0.014460628,-0.03236252,-0.014851126,-0.014741299,-0.043808993,-0.095086254,0.040001635,-0.013972506,-0.03292386,-0.011458674,-0.017084286,0.023759361,-0.041441597,-0.0032551666,-0.025260337,0.007944193,0.015522295,-0.030946964,0.010512938,0.019024573,-0.008822814,0.04249106,0.07331599,-0.045224547,-0.018316796,0.014082333,0.02977547,-0.008066224,-0.016193463,0.00058650965,-0.018951355,-0.026724705,-0.067068025,-0.0058818758,0.005225961,0.014448425,-0.0362675,0.022856334,0.031581525,-0.053107724,0.0021141805,-0.0081211375,-0.036975276,0.017865282,0.025650835,-0.013728444,0.00185334,0.002463493,-0.0023734954,0.026553862,-0.06682397,-0.020342505,-0.0040270104,-0.015595512,0.016132448,0.00093963573,-0.00029192012,-0.0053113825,-0.0037890507,-0.017633423,-0.038366426,0.00021488829,-0.024906449,-0.029970719,0.04356493,-0.0048720725,-0.008414011,0.01586398,-0.042588685,-0.016705992,0.024821028,0.03128865,-0.0033832989,0.03948911,-0.030678498,-0.039928418,-0.010549547,-0.014350801,0.000099149875,0.02638302,-0.023698345,-0.0033985528,0.0013705563,-0.02662708,-0.005945942,0.012081031,-0.02618777,0.05344941,0.015717544,-0.015412467,-0.037658647,-0.0004366408,0.00049880013,-0.032386925,-0.06833714,0.014570456,-0.03431501,-0.015766356,-0.0056134085,-0.029751064,-0.03739018,-0.0051679965,0.011208512,-0.0069252374,0.011495284,-0.020391315,-0.0016336848,-0.013032869,-0.018109344,0.040929068,0.024955261,-0.025968116,-0.002646539,0.010445821,0.010622765,0.04080704,-0.027261639,-0.049056306,0.03726815,-0.043076806,-0.0017953755,0.0326798,-0.00032757592,-0.032020833,0.033265546,0.0037097307,0.004240564,-0.03475432,0.0179385,0.01151969,-0.018621871,-0.010445821,0.022465836,-0.010744796,-0.03690206,-0.033216733,-0.026016928,0.030190375,0.012459326,0.0024131555,0.00083819777,0.037878305,0.01582737,0.04746991,0.033826888,-0.027945012,0.01690124,0.056719832,-0.005268672,-0.035291255,0.009799059,-0.021038078,-0.044541176,0.054864965,-0.05081355,-0.014350801,-0.0038927766,0.031752367,0.012349498,0.013874881,0.013618616,-0.040148072,0.0052229105,-0.042100564,-0.046542477,0.026065739,0.04559064,-0.00052091817,0.044736423,-0.0227221,0.008389605,0.028506352,0.0050368137,-0.0019723198,0.025284743,-0.021367561,0.022807522,-0.043662556,0.023137005,0.0051954533,0.009683129,-0.0061564445,0.015998214,-0.03809796,-0.030946964,0.02184348,-0.025260337,-0.021135703,0.012801012,-0.0035449895,-0.048421748,0.002730435,-0.032777425,0.006119835,0.06833714,-0.0006612534,-0.015522295,-0.02279532,0.017609019,-0.03656037,-0.017438175,-0.011354948,-0.037365776,-0.011696635,-0.0050947783,0.052521978,-0.017840875,0.0124532245,0.020977063,-0.017767658,0.017328348,0.026846735,0.04041654,0.054035157,0.031752367,-0.04439474,0.021318749,0.017511394,0.075463735,-0.008182153,0.092840895,-0.028408727,0.053644657,-0.017877486,-0.04061179,-0.023149207,-0.032386925,0.037170526,0.048739027,0.0013858102,0.037121713,-0.03236252,0.02857957,-0.0047530923,-0.022941755,0.016754804,-0.032582175,-0.043735772,0.022148557,-0.011330543,-0.04815328,-0.013240322,-0.015766356,-0.01347218,-0.00036323175,0.013264728,-0.0043351375,-0.023759361,-0.03260658,-0.013203713,0.027041985,0.0017496139,-0.01259356,-0.049910523,-0.0021355357,-0.0024878993,0.024772216,0.0096953325,-0.04029451,0.021697044,-0.003822609,0.048690215,-0.0030889,0.01008583,-0.018926948,-0.006308983,0.029897502,0.014802313,-0.014436222,0.0071570957,-0.027286045,0.022868538,-0.0013934372,-0.02228279,-0.018780513,0.0048171584,0.020159457,-0.03177677,-0.013606413,-0.018951355,-0.05823301,0.06550603,-0.058769945,-0.0056408653,0.015449076,0.04029451,-0.028042635,0.012178656,-0.023625128,-0.005491378,0.024662387,-0.036413934,0.07092419,0.0121542495,-0.0050642705,-0.03770746,0.002710605,0.01957371,-0.038537268,0.009591606,0.013935897,0.004030061,0.045224547,0.029458191,-0.0026831483,-0.015351452,0.040270105,-0.018658482,-0.03475432,0.011531893,-0.048202094,0.024052234,0.031361867,0.003471771,0.0033039788,-0.07775791,0.039196234,-0.01479011,0.010311587,-0.023405472,0.03211846,-0.014460628,0.0041398886,-0.00080006325,0.009439068,0.021147905,-0.02235601,-0.029799877,0.04017248,0.029555814,0.05320535,-0.026968766,0.0054029054,-0.02128214,0.044126272,-0.02838432,0.05608527,-0.048250906,0.015778558,-0.06301661,0.023612924,0.044736423,-0.0075109843,0.017450377,-0.086055994,0.01466808,0.0035877002,-0.0007489629,-0.00081379164,0.0034809234,-0.04439474,-0.015497888,0.012465428,0.02882363,0.0064554196,-0.019976411,0.008816712,-0.009402459,0.016132448,-0.0131426975,-0.01419216,0.004631062,0.011971204,-0.014594861,-0.03638953,0.02052555,-0.030068344,-0.020891642,0.00243146,-0.069655076,0.0028783972,-0.021660434,-0.06931339,0.0036304109,-0.036243092,0.05169217,-0.032338113,-0.040758226,-0.010110237,0.014619268,-0.001761817,0.019463884,-0.023295645,-0.03714612,0.0069252374,0.032142863,0.020159457,-0.013752851,-0.01466808,-0.023759361,-0.027920606,-0.005073423,-0.002654166,-0.01191629,0.021587215,-0.008401808,-0.01466808,0.00038363374,0.023124801,0.029043287,0.017731048,0.012617966,0.0072242124,0.0042039547,-0.07277906,-0.0034961773,0.010262775,0.10582495,0.007785553,0.0059611956,-0.042930372,-0.001905203,0.021184515,-0.0067116837,0.035779376,-0.01191629,0.033924513,-0.029995125,-0.069459826,-0.04849497,-0.03231371,-0.0017160556,-0.006644567,-0.015497888,0.007889279,0.015485685,0.0374634,-0.006553044,-0.013484383,-0.021709247,-0.036853246,-0.060771246,-0.007529289,0.033826888,-0.025919303,0.00801131,-0.053986344,0.03192321,-0.0066018566,0.009268225,0.0057659466,0.0108790295,0.03536447,0.014655877,0.008517737,0.012148147,-0.005866622,-0.0040483656,-0.002925684,-0.02383258,-0.012367803,-0.00044121695,0.012739996,0.020366909,0.014741299,0.033021484,0.001257678,0.04834853,0.018145952,-0.014143349,0.0031941514,-0.012465428,-0.026016928,0.019659132,-0.00936585,0.020452332,-0.0036578677,0.019524898,-0.018438825,-0.015131797,-0.004353442,0.041441597,0.029873095,-0.020903844,0.017889688,-0.005073423,0.02650505,0.070436075,0.04866581,-0.030800527,0.020037428,0.04576148,-0.014009114,-0.030483248,0.03145949,0.0003418764,-0.011483081,0.031703554,-0.0007222687,-0.015485685,-0.007108283,-0.039830793,-0.011910188,0.024125453,0.0003432111,0.017560206,-0.005305281,-0.030068344,0.014424019,0.002706029,0.023734955,0.033338763,0.00769403,-0.03411976,-0.02064758,0.07092419,0.027505701,-0.0115685025,0.014924345,-0.01677921,0.022770913,-0.00039278605,0.019024573,-0.00080769014,0.009707536,-0.04078263,-0.015363654,0.0075231874,0.010061424,0.020318098,-0.051399294,0.06462742,0.008932641,0.003993452,-0.013374556,-0.019085588,-0.0013278456,0.027310451,0.017584613,0.018072734,0.003862269,-0.0054578194,-0.012959652,0.03328995,0.010116338,-0.032826237,-0.025479993,0.0025641683,-0.003590751,0.007944193,-0.0039354875,-0.031068996,-0.0072120093,0.0067177853,-0.0122518735,0.0029653439,-0.016693788,-0.0211235,-0.029238535,-0.027164016,-0.006388303,-0.0028646686,0.004084975,0.029043287,0.0035053294,-0.011025466,-0.010030917,0.012367803,-0.023222426,0.015046375,-0.021953307,-0.010659374,0.0013186934,0.013032869,0.009616013,0.008414011,0.060429562,-0.02694436,0.018194765,0.0024040032,-0.023930203,0.00816995,-0.029726658,-0.03922064,0.007126588,-0.016730398,0.031435087,-0.04117313,-0.005799505,0.027066391,-0.027847387,0.019061182,-0.005747642,0.03399773,0.03248455,-0.0064554196,-0.02474781,0.01630329,0.0070411665,0.0010952248,-0.023771564,0.03199643,-0.0004267258,0.020415721,0.037414588,0.018670684,0.045737077,0.037341367,0.018487638,0.003990401,-0.016632773,0.0068886285,-0.010573952,-0.0007848094,-0.048250906,-0.014753502,0.01765783,-0.014179958,0.011226817,0.018597465,0.0025443383,0.016169056,0.008285879,0.04620079,0.0070167603,0.018609669,-0.025602024,0.009853972,0.0069130342,-0.014631471,-0.013106088,-0.0005716372,-0.020659784,0.008883829,0.0044693714,-0.02984869,0.0067726993,0.002658742,0.01889034,0.0075353906,0.024027828,-0.039562326,-0.06238205,0.0058879773,-0.03328995,0.0030705954,-0.00928653,0.019512696,-0.00673609,0.008548245,0.014314191,-0.0061076325,0.0066506686,0.026871141,-0.027188422,-0.022978365,0.016132448,0.018670684,0.013935897,0.016254477,-0.001841137,-0.017108692,-0.014497237,0.017084286,0.002112655,-0.013996911,-0.0072608218,0.02933616,0.0067299884,-0.0011364102,-0.0033466897,-0.026090145,0.0011013263,-0.0018762207,-0.0004850717,0.0148145165,-0.04878784,-0.031703554,-0.007291329,-0.01347218,-0.007724538,-0.038439643,-0.022905147,0.007816061,-0.03726815,0.054230407,0.037048496,-0.010274977,0.021343155,-0.01630329,-0.037975926,0.017450377,-0.031532712,-0.007993005,0.0059398403,0.019524898,-0.0060283123,-0.008627565,-0.011891884,-0.02275871,0.03209405,-0.0024146808,-0.0045730975,-0.018194765,-0.011123091,0.0127522,0.038122363,-0.037536617,-0.041246347,-0.036926463,-0.011910188,-0.018109344,0.019378461,-0.01331354,-0.017877486,-0.013813865,0.033582825,0.026724705,0.04097788,0.019634726,-0.008505534,-0.010250572,-0.018865934,0.016376508,-0.014533847,-0.05667102,-0.007645218,0.007608609,0.0006997693,-0.07975921,0.009573302,0.011910188,-0.020696392,0.038708113,-0.013093885,0.032630987,0.014289785,-0.022368211,-0.006540841,0.026919954,-0.0006421861,0.0041307365,-0.017999517,-0.005799505,-0.014045724,-0.016291087,-0.027115203,0.019036775,0.042417843,0.014118942,0.008426214,0.02080622,0.07370649,0.0014323343,-0.016108042,-0.013484383,0.016291087,0.059599753,-0.04766516,-0.024576966,0.014960954,-0.0326798,0.0057964544,0.038537268,-0.006553044,-0.00892654,-0.008237067,-0.012215265,-0.008047919,0.0041917516,-0.009750246,-0.018646277,0.04934918,-0.00041757352,0.015156203,-0.0016870733,0.031142212,0.0022529901,0.01614465,-0.015961604,-0.012691184,0.008774001,-0.0147168925,-0.018475436,0.05515784,-0.021160109,0.0322893,-0.046518072,-0.044223893,0.030800527,0.009530591,-0.010494633,0.00009690947,0.050130177,-0.020037428,0.01526603,0.008352996,-0.0008442993,0.0051405397,0.020745205,0.02467459,0.012654575,-0.025553212,0.00125539,0.047177035,-0.019085588,0.013093885,-0.015949402,0.012617966,0.01024447,-0.035828188,0.03839083,0.028994475,0.007364548,-0.0028677194,0.006424912,0.009652622,-0.01932965,-0.015534498,-0.0025412876,-0.006620161,-0.022417024,0.041124318,-0.017828673,0.037927117,-0.0035358372,-0.016974458,-0.0007348531,0.022575663,0.045737077,0.0020516398,-0.008761798,-0.006388303,0.0054944283,0.00793199,0.00042138697,0.031117806,0.01016515,0.050423052,0.027554514,-0.009158398,0.005747642,0.0023689193,-0.018768309,0.010982756,0.053644657,-0.0054395148,-0.010830217,-0.017767658,-0.013252525,-0.00037734155,-0.0011280205,0.015449076,0.03443704,-0.018475436,0.03934267,-0.02439392,-0.031630337,-0.03470551,-0.02984869,-0.020549955,0.0023384118,0.008444519,0.00064485555,-0.011232918,-0.012654575,-0.02567524,-0.041636847,-0.03829321,0.0059703477,-0.0019463883,0.023466488,-0.039830793,-0.007895381,0.01378946,-0.029799877,0.07712335,-0.026919954,0.010525141,0.008505534,-0.013167104,-0.011141395,0.014936548,-0.0015833472,0.037658647,-0.002770095,-0.00051290996,0.0071937046,0.062284425,-0.023747157,0.050325427,0.008237067,0.009396357,-0.032557767,-0.024442732,-0.01980557,0.011794259,-0.031874396,0.022380415,0.0060954294,0.020342505,0.028237885,-0.018267984,-0.00074171735,0.044834048,0.030483248,-0.011629518,0.044785235,-0.016596165,-0.0007970125,-0.012495935,-0.0017084286,0.041466005,0.03104459,-0.016266681,-0.0022606172,0.018878136,0.023112599,-0.007993005,-0.0016519894,0.042783935,0.04859259,0.0063822013,-0.027408076,0.030312406,0.020916048,0.0023506146,0.00816995,0.0055890023,0.0077184364,0.05628052,-0.034022138,-0.045297764,-0.007169299,-0.006089328,-0.03719493,0.0049727475,-0.0031422884,-0.010335993,-0.017621221,0.014472831,0.006119835,-0.009262124,-0.0065347394,-0.0016870733,-0.058574695,-0.02288074,-0.0075536952,0.0047836,0.022624476,0.0104824295,-0.014875532,0.0410511,-0.005049017,0.012123742,-0.0031361869,-0.021318749,-0.029140912,-0.006620161,0.017425971,0.024113249,-0.0215262,-0.04539539,0.037927117,0.0056835758,0.049202744,0.0059733987,0.01897576,-0.008352996,0.012532544,0.0110742785,-0.00021908309,-0.016522946,0.0027289097,-0.0031178822,0.018280186,0.059795003,0.017047677,0.032753017,-0.01331354,0.015778558,0.014533847,0.008517737,0.024796622,-0.013167104,0.013716241,-0.03177677,-0.0010883606,0.009896683,0.019427273,-0.017914094,-0.004435813,-0.0334852,0.032630987,0.004762245,-0.039733168,-0.017609019,-0.026822329,0.012093234,0.005555444,-0.021233328,0.011653923,-0.020952657,0.021575013,0.0065774503,-0.041514814,0.003209405,-0.01203832,0.0015261454,-0.03180118,0.009817363,-0.0021309596,-0.024601372,0.013032869,0.002288074,-0.0028997525,-0.039562326,0.008285879,-0.0063822013,-0.008719088,0.06833714,-0.01769444,-0.05188742,0.015876183,-0.015180608,-0.011788158,0.011086482,0.0121542495,0.013411164,-0.015595512,0.020903844,-0.004268021,-0.033265546,-0.02407664,0.036023438,0.027237233,0.013643023,-0.0061564445,0.0069984556,-0.04595673,-0.030361217,0.01582737,0.0036334617,-0.0013606413,0.03077612,0.0060435664,-0.027286045,-0.024186468,0.016193463,-0.016449727,-0.010110237,-0.012001711,-0.028237885,-0.021892292,-0.010476328,0.015241624,-0.013264728,0.0032582174,-0.009530591,0.029482597,-0.029140912,0.009738043,0.0049483413,-0.0047530923,-0.01203832,-0.060429562,0.015790762,-0.006675075,-0.029824283,0.02307599,0.01705988,-0.00040231968,-0.03280183,0.0000947644,0.002777722,0.008499432,0.0021675688,0.02713961,-0.024650184,0.03538888,0.04288156,0.015754152,-0.011354948,0.015119594,0.01570534,0.043931022,0.031337462,-0.012245772,0.002387224,-0.0048568184,0.010744796,0.00944517,-0.028555164,0.000019472463,-0.00070892164,0.007895381,-0.0033619434,0.005595104,-0.016254477,0.019122198,0.013582008,0.010030917,-0.004978849,0.0038287106,-0.024637982,0.017413769,0.011580706,0.027115203,0.036804434,-0.02052555,0.020952657,-0.012764403,-0.0051679965,-0.022087542,0.031947616,-0.015278233,-0.0151073905,0.005707982,-0.010958349,0.027481295,-0.015998214,0.014265379,-0.026675893,-0.014680283,-0.00641881,-0.009616013,-0.044858456,0.0016779209,0.013301337,-0.016352102,0.04590792,0.007077776,-0.012801012,0.0050246106,-0.031313054,0.013801662,0.05520665,-0.0011333594,-0.030702904,-0.0346811,0.028750414,0.00093734765,0.024125453,0.02984869,0.034461446,-0.0024482391,0.008950946,0.027237233,0.0095000835,0.022209572,-0.011989508,-0.023185818,-0.026090145,0.010250572,0.0022621425,-0.002634336,-0.0038500659,-0.0070289634,0.0050673215,0.025211526,0.001391149,0.0062601706,0.039733168,-0.035340067,0.028433133,0.011190208,-0.019781163,-0.015095187,-0.044858456,0.010037018,-0.017011069,-0.02263668,0.019109994,0.014729096,0.014680283,-0.021343155,0.018390015,-0.013008464,-0.007218111,0.0061167846,0.01191629,-0.0004431237,-0.026895547,-0.03997723,-0.018475436,0.00868858,0.0049117324,-0.007919787,0.00048163958,-0.0026724704,0.006882527,0.019244228,0.023942407,0.00255044,-0.06662872,-0.0047530923,-0.009860074,-0.0150097655,-0.012556951,0.023124801,-0.022563461,-0.0076025072,-0.003862269,-0.0010120914,0.021587215,0.021855684,-0.017999517,-0.0048171584,0.015607716,-0.005235113,-0.020989265,0.025992522,-0.01662057,0.03436382,0.007877076,0.004020909,-0.008664174,-0.027774168,0.000110113564,0.036999684,-0.016278883,-0.033826888,-0.037634242,-0.007498781,-0.0016428372,0.025577618,-0.0021492643,0.020720799,-0.020464534,-0.052033857,-0.047177035,-0.020891642,0.022514649,0.030043937,-0.02694436,-0.010781405,0.041734472,-0.023979016,-0.012996261,-0.0179385,-0.0019723198,-0.0506183,0.008664174,-0.0072364155,0.010836319,-0.021160109,-0.0053266366,-0.0017557155,-0.023088193,-0.038708113,0.012886433,-0.014143349,0.037561025,0.021709247,-0.021233328,0.012337295,-0.015046375,-0.02458917,-0.022575663,-0.03424179,0.0033314358,0.024247484,0.027261639,0.019317446,0.006565247,-0.02770095,-0.02244143,-0.025138307,-0.036438342,0.023063786,-0.0044937776,0.015229421,-0.0052717226,-0.016376508,-0.012227468,-0.0063944045,0.014582658,0.009249921,0.0014208939,-0.028481945,0.047811594,0.0023963763,-0.0063822013,-0.0145216435,-0.001969269,-0.021745855,0.025602024,0.0022102795,-0.005244266,-0.01203832,0.004905631,-0.0054364637,0.0027639933,0.03575497,0.017914094,-0.030043937,-0.018817121,0.016986663,0.009585505,0.044126272,0.020598767,0.022990568,-0.020562159,0.029726658,-0.0095000835,0.038122363,0.015449076,0.0070289634,-0.03231371,0.0025717951,0.036121063,-0.041075505,-0.04539539,0.0267003,-0.024296295,-0.013643023,-0.014057927,-0.00038077365,0.04109991,-0.02004963,-0.015815169,-0.023820376,0.000079796584,-0.033656046,-0.011904087,0.025016276,-0.012007813,-0.034900755,0.015449076,0.01538806,0.022966161,0.0009472627,-0.023271238,-0.024503747,-0.022612274,-0.004094127,-0.041636847,-0.0051466413,-0.005177149,-0.023564111,0.016803617,-0.014216566,-0.016278883,0.017157504,0.0108729275,0.021355357,-0.006437115,-0.010555648,0.017889688,-0.02833551,-0.011721041,-0.03809796,0.043931022,0.022294994,-0.010262775,-0.021709247,0.0032338114,0.009164499,-0.0039629443,-0.009243819,0.054864965,0.008664174,0.0009259073,-0.0022148557,0.03399773,-0.017206317,-0.0001628346,0.038708113,0.029262941,0.012923042,0.02024488,0.030214781,-0.033607233,-0.0096953325,0.0124471225,-0.034461446,-0.0107631,0.043589335,-0.008340793,0.032508954,-0.025016276,0.043442897,0.0071937046,-0.0062479675,0.0410511,-0.021697044,0.0071631973,-0.028628383,0.001391149,0.03487635,-0.031313054,0.008865524,0.0012264077,0.022539055,-0.017316144,0.004606656,0.02530915,0.017120896,0.0011890358,0.014863329,0.010848522,0.01147698,-0.0051374887,0.023869189,0.028164666,0.005686627,0.03555972,0.012849824,0.009280428,-0.043906614,0.008182153,0.004771397,-0.011086482,0.035852596,-0.034290604,-0.035120413,-0.01287423,-0.025284743,0.017792065,-0.021208921,-0.0053388393,-0.011415964,-0.042759527,0.012410514,0.031947616,-0.00733404,-0.019232025,0.027090797,-0.053498223,0.03443704,0.06638466,0.041832097,0.016571758,0.021416374,-0.027969418,-0.014363004,0.014094536,0.01725513,0.00832859,-0.048812248,-0.030312406,0.0007257008,0.01980557,0.03128865,0.049837302,-0.0046890266,-0.02638302,0.016986663,0.029262941,-0.015815169,-0.006504232,0.003395502,-0.0131426975,-0.013838272,0.017609019,-0.0038348122,-0.007620812,0.0069618467,0.0012584408,0.02587049,-0.0008839593,0.00013728444,-0.008786204,-0.018341202,-0.014777907,-0.03211846,-0.016071431,0.02140417]},{"id":"interface-APIInvite","type":"interface","source":"main","text":"Interface: APIInvite\nProperties: channel: APIChannelPartial, code: string, created_at: string, expires_at: string | null, guild: APIGuildPartial, inviter: APIUserPartial | null, max_age: number, max_uses: number, member_count: number, presence_count: number, temporary: boolean, type: number, uses: number","meta":{"url":"/docs/typedefs/APIInvite"},"embedding":[-0.015174037,-0.014781059,-0.006984874,0.0063256845,-0.0089561045,-0.02664647,-0.040438745,0.015769843,0.026291523,0.014603584,0.024504105,-0.029866358,0.0029124771,-0.010458296,0.022767395,-0.010502664,-0.03356796,0.032629885,-0.0014720844,0.010648447,-0.021943407,0.039095014,0.013817628,0.051923856,-0.040210564,-0.015757166,0.0038822463,0.010648447,0.0036382193,-0.014388081,0.04010915,-0.031742513,0.041250054,0.025632333,-0.01612479,0.014045808,0.018241804,0.034201797,-0.04003309,-0.031311505,-0.026874652,0.019737657,0.0014546539,0.0037618175,-0.06394139,0.046371453,-0.036889262,0.03339049,-0.0046618646,0.016720597,-0.03612866,0.004211841,-0.03151433,0.05238022,0.022019466,-0.022374416,-0.004687218,0.0019126005,-0.04738559,0.01887564,0.0024656225,-0.026798591,0.015845904,0.012524602,-0.008791307,0.021005329,-0.05334365,0.058312923,0.044419236,0.025708394,0.02007993,0.0010291914,-0.018051652,0.002069475,0.013995102,0.021258865,-0.05724808,0.02490976,0.03805552,-0.01817842,-0.03658502,0.033745434,-0.08990332,-0.05461132,-0.00078556064,-0.0019094313,-0.02383224,-0.023489967,-0.02634223,0.015883934,-0.021157451,0.032832712,-0.069721974,-0.029866358,0.053140823,-0.039120365,0.022412445,-0.0016218282,-0.029333936,0.040362686,0.061862405,-0.022678657,-0.10339135,0.019167205,0.012537279,-0.0117766755,-0.0090194885,0.029384643,-0.029080402,-0.02773667,-0.05334365,0.030145247,-0.043024797,0.0058503076,-0.017012162,0.010920997,0.041224703,-0.008385652,0.04682781,-0.022146234,-0.056487475,-0.018558722,0.04784195,0.0078025227,-0.003650896,-0.037345625,-0.041047227,-0.041224703,-0.04482489,0.016314942,0.004490729,0.0080116885,0.048754677,0.0463461,-0.010236453,-0.01129496,-0.035824418,0.018051652,-0.039652787,-0.052583046,-0.002321425,-0.010344205,0.032579176,0.020650381,-0.049109623,-0.021296894,-0.030525548,0.01593464,0.0133359125,0.00789126,-0.036382195,0.04099652,-0.007840553,0.00568551,-0.009304714,-0.008689893,-0.0001221125,-0.011269607,-0.031159384,-0.031032616,0.01898973,-0.06728804,-0.024212541,-0.004348116,-0.010825921,-0.0121443,0.029080402,0.011415388,-0.04150359,0.06389068,0.004421007,-0.041402176,-0.07007692,-2.4449733e-7,0.011687938,-0.0194968,0.017886857,-0.062825836,-0.011396374,-0.023211079,0.019484123,0.04320227,-0.014400757,-0.08924413,-0.031007264,0.0073081306,-0.004367131,-0.011960488,0.011928796,-0.03922178,0.003299117,-0.017138928,0.010401251,0.035241287,0.04834902,-0.033136953,0.025746424,-0.042492375,0.031083325,-0.019192558,0.011586525,-0.04548408,0.06718663,-0.005210133,0.004316424,-0.03944996,0.020878563,-0.0028063094,-0.055067685,0.008715247,0.04325298,-0.0060309507,0.018305188,-0.0032056263,-0.03128615,0.0059358752,-0.028902927,-0.0149585325,-0.023578703,0.010477311,-0.07322075,0.022196941,0.0360526,-0.0055872654,-0.0018206943,0.03473422,-0.0017208651,-0.023654765,-0.0031422426,0.00093807746,-0.034911696,0.046320744,-0.04753771,-0.055625457,-0.0055175438,0.015528985,0.033745434,0.030221308,-0.007593357,-0.03906966,-0.004592143,-0.004088243,-0.023768855,0.017265696,0.007986335,-0.015921963,0.01763332,-0.011288621,-0.0060911654,0.04239096,0.08579606,-0.025328092,0.011250592,0.036458254,0.02019402,0.00080695265,-0.0024339308,0.033415843,0.014603584,0.00046349267,0.04981952,-0.020954622,-0.027990203,0.009659663,-0.014007779,-0.00003510858,0.017189637,0.03339049,-0.0052006254,0.006328854,0.014565554,-0.035773713,0.059276354,-0.03369473,-0.004842508,0.022361739,0.023604058,0.034151092,-0.027457781,-0.019750334,-0.05025053,3.7138835e-7,0.0029299075,0.03217352,0.014603584,0.04784195,0.021639166,0.0054097916,0.050529417,0.0054066223,-0.0011519971,0.023122342,0.045458727,-0.011561171,0.015744489,0.0452559,0.026798591,-0.028674746,0.07895063,0.047284175,0.004595312,-0.030195953,-0.022146234,-0.065665424,0.0071116416,0.023413906,0.044495296,0.0097484,0.020003868,-0.028750807,0.06581754,0.039906323,-0.07093894,-0.008778631,-0.048678614,0.0016907579,0.019344678,0.026012635,-0.023058958,0.03759916,-0.008981458,-0.0025812977,-0.034708865,-0.035444118,0.02534077,-0.03678785,0.014400757,-0.04490095,0.0218927,0.007758154,0.011339328,-0.07083753,-0.022615273,0.02994242,0.03597654,0.006157718,-0.00916527,0.042695202,-0.012226699,0.039475314,0.038968246,-0.024428045,-0.017417816,0.012074579,0.006468298,0.033213012,-0.0481969,-0.0004353662,-0.027609902,0.034911696,0.0011012902,0.018634783,-0.022158911,-0.035900477,0.008442697,-0.027609902,0.06378927,-0.043683987,-0.06323149,0.03465816,-0.057856563,0.0028459243,-0.010268145,0.014362726,0.009691355,-0.009761076,-0.014565554,-0.0441657,-0.014831766,-0.06941773,-0.00272708,0.024060419,-0.012214023,-0.027660608,0.004338608,0.020219373,-0.03782734,0.028776161,0.017595291,-0.018508015,0.03303554,-0.008100426,0.025416829,-0.010293499,-0.010420266,-0.021956084,-0.001473669,0.017772766,-0.028066264,0.028674746,0.04107258,-0.024757639,-0.029181816,-0.027254954,0.06084827,-0.0145021705,0.020586997,-0.0017842487,0.017658675,-0.012125285,0.01636565,0.019306649,0.00978643,-0.008537773,-0.042872675,0.0018111868,0.017316403,-0.0067440164,0.019813718,-0.01044562,0.030322721,-0.027381722,0.029029695,0.016150145,0.05496627,-0.034151092,-0.03744704,-0.02994242,0.015731813,0.04452065,-0.0014673306,0.0005930329,-0.010515342,-0.02564501,0.010692815,-0.031235445,0.046016503,0.0021629657,-0.060594734,-0.048298314,-0.047487002,0.027711315,0.05704525,0.012137962,0.031818572,-0.036559667,0.06348503,-0.016454386,-0.032122817,0.04221349,-0.024656225,-0.027584549,-0.016074084,0.022133557,-0.0062527936,-0.008670879,0.044546004,-0.04827296,0.016238881,-0.020586997,-0.05202527,-0.013513386,-0.007720124,0.054560613,-0.011453419,-0.008651863,-0.020878563,0.06728804,-0.039475314,0.026164755,-0.019192558,0.008170147,-0.011377359,0.032503117,0.023236433,0.000099779674,-0.019433416,0.03797946,-0.014844443,-0.016657213,0.0033276398,-0.02862404,0.035114523,0.023185726,-0.031387564,-0.024313955,0.023020929,-0.0016107361,0.0022215957,0.019813718,0.021094067,0.01751923,0.029967772,0.006240117,0.020979976,0.04583903,0.033872202,0.0031438272,-0.061355338,-0.0015774596,0.01953483,-0.0045319283,0.014983886,-0.014464141,0.029156461,-0.0023578703,-0.0022501182,-0.04429247,0.01983907,0.005653818,-0.00823987,-0.047816597,0.007529973,0.00057599857,0.01647974,0.015097977,-0.014337373,-0.04452065,-0.017468523,-0.00043497005,-0.04289803,0.00048726154,-0.013006317,0.0027936327,-0.03701603,0.016162822,-0.021550428,0.025708394,-0.044064287,0.019674273,-0.021372955,0.031488977,-0.007637725,0.027990203,0.028750807,-0.012613339,-0.027254954,-0.06673027,-0.0033339781,-0.0015814211,0.021664519,-0.01593464,0.004034367,0.014882472,-0.00022402145,0.008132118,-0.01666989,0.029156461,0.011066779,-0.023527997,-0.0020298602,0.03039878,-0.010477311,0.0032579177,-0.005707694,0.026114048,0.0033086247,0.006490482,0.0035051138,0.023718148,0.0033625006,-0.007225732,0.0053559155,-0.029790299,0.016999485,0.030956557,0.021258865,-0.059124235,-0.009317392,-0.037294917,-0.022881484,-0.034835633,-0.0084997425,-0.011415388,-0.02359138,-0.032477763,0.011085794,0.011504126,-0.012353466,-0.005767909,0.012930257,0.012442203,-0.027254954,0.017734734,0.040210564,-0.027838083,-0.033542607,0.003489268,0.0036730804,-0.015541662,0.0035209598,-0.021372955,0.02068841,0.057349492,0.012752783,-0.051492848,-0.011814705,0.016733274,0.00057164097,0.023147695,0.007827876,0.011060441,0.02649435,-0.013221822,-0.037649866,0.02023205,0.0071496717,0.016099438,-0.027939497,0.011453419,0.004579466,0.025226679,-0.028471919,0.002974276,0.014362726,0.035165228,-0.0015370527,-0.0031454118,-0.043683987,0.008303253,-0.0042181793,0.0031723499,-0.020637704,-0.029131109,-0.035368055,-0.0009974996,-0.020434877,0.001983907,0.009456835,-0.01052168,0.014666968,0.00031533348,-0.008322269,0.050529417,0.009273022,0.02951141,-0.03009454,-0.065513305,0.011624555,0.017924886,0.015579692,-0.013031671,0.010965365,-0.00061482104,-0.012626016,-0.0055207126,-0.008062395,0.019864425,-0.024935113,0.014400757,0.01427399,-0.004265717,0.023084313,-0.019192558,0.025987282,-0.018153068,-0.00823987,-0.017430494,-0.006870784,0.01647974,-0.00017559242,-0.01612479,-0.0015592369,-0.017937563,0.024884406,-0.041224703,-0.026367582,0.031438272,-0.021005329,-0.036458254,-0.013209145,-0.017607968,0.04251773,0.012854197,0.010806906,0.016961455,-0.031843927,0.007669417,-0.041883893,0.015465601,-0.0018270327,0.04203601,-0.022196941,0.0116499085,0.016796658,-0.006598234,-0.023844915,-0.013842981,-0.0015624061,0.0036065276,-0.004126273,0.015554339,-0.03186928,-0.02289416,0.008892721,-0.02394633,0.04834902,0.008081411,0.014476817,-0.00237847,-0.0022738872,0.04495166,0.018698165,-0.013285206,0.02332517,0.025011174,0.027812729,0.008632848,0.008075072,-0.02509991,-0.020409523,0.014578231,0.00089291664,-0.007865907,-0.011878089,0.0069405055,0.00073168456,0.047512356,-0.014033132,-0.0028253247,-0.03082979,0.03972885,-0.05283658,0.021943407,-0.008594818,0.03075373,-0.023046281,0.0064334366,-0.008493404,-0.0056601567,0.026950713,0.0067440164,-0.013881011,0.04165571,0.0010474143,0.0076060337,0.045585494,0.035342705,-0.004614327,-0.007175025,-0.022298355,-0.006598234,0.004877369,0.008632848,-0.0137922745,0.033491902,0.0016828349,0.00754265,-0.0389936,-0.00676937,0.021689873,-0.006528512,0.03833441,0.0017525569,-0.0044875597,-0.0136148,-0.02854798,0.011599202,-0.004741094,0.008797646,-0.0044812215,0.008708908,-0.03818229,0.034860987,0.0036572346,-0.011180869,0.004012183,-0.008341284,-0.033542607,0.019344678,0.0071306564,-0.0030899511,0.014781059,0.023895623,-0.018343218,-0.009970242,0.0051942873,-0.015237421,0.01879958,0.004633342,-0.021436337,-0.026925359,-0.011770337,-0.01972498,0.023756178,-0.058008682,-0.056639597,-0.036914617,0.0053083776,-0.014540201,0.020548968,-0.030779082,-0.005593604,-0.034404624,0.002990122,-0.035900477,0.005086535,-0.0034068692,-0.004173811,-0.02208285,-0.051847797,0.020472907,0.0017382955,-0.032198876,-0.026722532,-0.01585858,0.004104089,-0.08341283,-0.0015798366,0.061304633,0.004598481,-0.01256897,-0.02432663,0.009627971,-0.0039709834,-0.01751923,-0.012632354,0.024998497,-0.020675736,0.027356368,-0.037218858,0.025252031,-0.028902927,0.0154782785,0.015655752,0.048780028,-0.0014364312,-0.002947338,0.038511883,0.0030424134,0.07256156,0.0063732225,0.010204761,-0.017975593,0.009583603,0.035063814,-0.06231877,-0.0029726916,0.017836148,0.0042593786,-0.009659663,0.0035558208,0.024542134,-0.0011369436,0.0059770746,-0.023527997,-0.073017925,0.02027008,0.0010767292,0.0064809746,0.016099438,-0.014717675,0.026697177,-0.000609275,0.009558249,0.00032008725,0.0005763947,0.0015608214,0.004440022,0.025150618,0.0078025227,-0.006788385,0.034277856,-0.048171546,0.0441657,-0.009450497,-0.023211079,0.06581754,0.028776161,0.014071162,-0.046168625,0.014641615,0.005349577,0.014628938,-0.0002713611,-0.014210606,0.014717675,-0.01879958,0.0148951495,0.012600662,0.006173564,-0.009843475,0.015706459,-0.014654292,-0.0033783466,0.01957286,-0.0013373942,-0.0039773216,0.0024878068,0.049844872,0.015693782,-0.028319798,0.013766921,-0.024618195,0.012645031,0.0016115283,0.0027841253,0.030601608,-0.0015806289,0.021144774,0.020954622,0.009450497,0.009247669,-0.023794208,0.017050192,-0.009811783,-0.021575782,0.042644493,0.028674746,0.00792929,-0.024592843,0.0048013087,-0.00568551,-0.007022904,0.032579176,0.032097463,0.047360238,-0.013424649,0.022399768,-0.022070175,0.02332517,-0.022311032,-0.009666001,0.016036054,-0.0036604037,0.025594303,0.00059144833,0.0026240817,-0.011459758,0.017620644,-0.023540674,0.012543617,0.041985307,0.050909717,-0.013969748,-0.0074602515,-0.029764945,-0.05481415,0.037041385,-0.00050825736,0.02262795,-0.0015037762,0.0019712304,0.02553092,-0.029409997,-0.046371453,-0.01582055,0.007701109,0.011123824,-0.03430321,0.017582614,0.0038854156,0.0133992955,-0.01953483,0.010933673,-0.018596752,-0.015136007,-0.016340295,-0.03326372,0.019103821,0.019509476,-0.016505092,0.026519705,-0.022387093,0.027559195,-0.01744317,0.02317305,0.0065031587,0.049261745,0.057197373,0.014704999,-0.044064287,-0.0150219165,-0.011599202,-0.009222316,-0.002150289,0.033796143,0.006103842,-0.0033276398,0.010166732,0.0053464076,-0.044013582,0.02019402,0.037776634,0.0073081306,0.0051942873,0.027812729,0.003913938,-0.012125285,-0.005973906,-0.029156461,0.014185253,-0.0100272875,0.018038977,-0.010230116,0.048551846,-0.020941947,0.0067059863,0.043151565,0.033517256,0.022995574,-0.010616755,-0.014337373,0.0061640562,-0.0040438743,0.009095549,-0.0149585325,-0.0009135163,0.025847837,0.0068897987,0.0033213014,-0.008030704,0.001106044,-0.041706417,-0.021246187,0.01144708,0.012309098,0.014679645,-0.010920997,0.021994114,0.032325644,0.004135781,-0.0054763444,-0.06444846,-0.026139403,-0.01013504,-0.007758154,-0.0022580412,-0.0143754035,-0.002096413,0.05400284,-0.02104336,0.026088696,-0.03473422,0.008842014,-0.027407074,-0.0000124477,0.025885867,0.0033783466,-0.02444072,-0.029739592,0.031767868,-0.024846377,0.0047062333,0.008398329,0.0331116,0.010426604,0.01048365,0.023122342,0.013728891,-0.036154013,-0.0016622352,-0.012505587,0.0287001,0.039779555,0.009501204,-0.0011409051,-0.020954622,0.02185467,-0.009678678,0.0017525569,0.019813718,-0.005470006,0.018495338,-0.007941967,0.0054224683,-0.03222423,0.00607215,0.00079784123,0.009900521,-0.03780199,-0.0032959478,0.013297882,-0.019433416,-0.0072193937,0.020815179,0.010832259,0.028116971,-0.025911221,0.016238881,0.008265223,-0.0116182165,-0.023350524,-0.046320744,-0.0049565984,-0.010052641,0.0057869237,-0.041883893,-0.022830777,-0.030626962,-0.0021217666,-0.017722059,0.014248637,0.011611878,-0.010680139,-0.0060594734,-0.011706953,0.0257591,0.025746424,0.013437326,-0.030500194,0.013779597,-0.013196468,-0.009742062,0.005891507,0.020308109,0.0165558,-0.018774226,0.0025464366,-0.01636565,0.014248637,0.01593464,0.040514804,0.04114864,0.006293993,0.04386146,0.004490729,-0.04135147,-0.044317823,0.025328092,-0.0128161665,0.028877575,0.028218385,-0.02413648,-0.039855614,0.00018302018,-0.0031343198,-0.014058486,-0.008449036,0.019585537,0.013310559,-0.012074579,-0.03833441,0.04305015,0.013893688,0.0008144794,-0.0316411,0.020029223,-0.005137242,-0.019737657,0.010965365,-0.035114523,0.004810816,-0.06652744,0.03833441,-0.0065475274,-0.020625027,0.013272529,-0.010052641,-0.0042879013,0.004424176,-0.0010402836,-0.020941947,-0.0054097916,0.005745725,-0.029790299,-0.039120365,0.046193976,0.03339049,0.014717675,0.033821497,0.009773754,0.021474369,0.034480687,0.04135147,0.009456835,-0.00023650011,-0.004630173,0.008271562,0.01732908,0.010496327,-0.0008548865,0.007631387,0.0019442923,-0.0045699584,0.022450475,-0.015212067,-0.0028189863,0.018305188,0.01365283,0.012245714,-0.013754244,-0.0045160824,0.030221308,-0.009799107,0.028776161,0.024478752,0.009038503,0.0018634782,-0.019458769,0.0345821,-0.041883893,0.01891367,-0.019091144,0.016974133,0.017227666,-0.000161034,0.009520219,-0.041326117,0.0121062705,-0.019078467,-0.017151605,0.0005573796,-0.026063342,-0.03775128,-0.005197456,-0.027762022,-0.046903875,0.020751795,0.01957286,-0.007529973,0.0039202766,-0.0064080833,0.023959005,0.063637145,0.0020678905,0.0025559443,-0.032274935,0.004978783,0.0015695367,0.006680633,0.012511925,0.038892183,0.009735723,-0.021334924,0.004316424,0.027356368,0.0054319757,0.008506081,-0.007903936,0.004981952,0.0029600149,-0.011415388,0.006978536,-0.0218927,-0.011212561,0.009190624,0.021068713,-0.0404641,-0.012188669,0.019763011,-0.025302738,0.030373428,0.039526023,0.0015750828,-0.008227193,-0.0027651102,0.0043195933,-0.015136007,-0.008144794,0.01608676,0.0012217192,0.013247175,0.027052127,0.022653304,-0.0060055973,-0.0143754035,-0.01519939,0.022006791,0.021474369,-0.016834687,-0.017557262,-0.0022453645,-0.000802595,0.02664647,-0.018368572,0.01519939,0.022260325,-0.008645525,0.017303726,-0.01090832,-0.007086288,-0.004421007,-0.009925874,-0.0072320704,0.0066235876,-0.025987282,0.032756653,-0.011510464,0.019636244,0.027356368,-0.0019538,0.02289416,0.029257877,-0.0027825406,0.0058693225,-0.00676937,-0.024973143,-0.001527545,0.015414895,-0.0063066697,0.015883934,0.0017905871,0.013754244,-0.019002408,-0.014730352,-0.009596279,-0.022868808,0.0024814685,-0.013057024,-0.0014419772,0.0010355298,-0.009330068,-0.0030883665,-0.02994242,0.016581153,0.0026779578,-0.0040945816,-0.022805424,-0.018584076,-0.0209673,0.03364402,-0.0020663058,0.029790299,-0.012283744,-0.014286666,-0.017734734,0.014159899,-0.0025702056,-0.032629885,-0.013285206,0.011453419,-0.009691355,-0.01682201,0.0022802255,-0.009646986,-0.005438314,0.0031707652,-0.010103348,-0.021512398,-0.0006690933,0.0054288064,-0.03612866,-0.0032214723,-0.021436337,-0.032832712,-0.038740065,-0.028167678,-0.028598687,0.012771798,0.009811783,0.015440248,0.0009301545,-0.012911242,-0.0064714667,0.0010624678,-0.0095392335,0.0014855535,-0.005295701,-0.019826394,-0.025264708,0.0011052517,-0.030373428,0.020789824,0.005038997,0.049185686,0.0018745704,-0.038816124,0.04041339,0.011668923,-0.020510938,0.007663079,0.01133299,-0.0071243183,0.031970695,-0.01717696,0.010591402,-0.009254008,0.03399897,0.016581153,-0.029536763,0.0037396331,-0.015731813,-0.014045808,0.0023372706,-0.019965839,0.021841994,0.02509991,-0.0009974996,-0.019192558,-0.070330456,0.01964892,-0.020625027,0.009247669,-0.0058851684,-0.004484391,-0.007682094,0.024009712,0.0022421954,-0.032122817,-0.010198424,-0.009317392,-0.037903402,-0.026240816,0.020941947,0.0019949991,0.051087193,-0.0067757084,0.0011686353,-0.013741568,-0.0077391393,-0.003489268,-0.00939979,0.0018032638,-0.03709209,0.0057425555,-0.00028621661,0.038892183,0.036077954,0.0084046675,-0.045230545,0.0019284465,0.0014625769,-0.0102111,-0.015072623,-0.0011313976,-0.00901315,-0.02343926,-0.010585063,-0.0018206943,0.002799971,0.03658502,0.012778137,-0.009488527,-0.0060055973,-0.0058503076,-0.000092351904,0.008455374,0.052887287,-0.03841047,0.021905378,-0.026114048,-0.024047744,0.024630873,-0.025809808,0.02034614,-0.034632806,-0.0020314448,0.056639597,0.018317863,0.016264236,0.0019490462,0.037878048,-0.02715354,-0.025809808,0.022298355,0.00012894603,0.006316177,-0.026747884,0.0045889737,-0.015883934,0.02119548,0.03620472,-0.013221822,-0.029739592,0.038232997,-0.013297882,0.03592583,-0.007384191,0.03460745,-0.0204222,-0.010692815,0.026976066,-0.023058958,0.009406128,-0.029156461,0.018824933,0.03465816,0.0075109582,0.012042887,0.0047220793,0.005251332,0.019306649,0.008296915,0.019902455,0.027660608,0.019319326,0.000019968315,0.0057267095,-0.0015402219,-0.01191612,0.043379746,0.0008231947,0.046624985,0.016162822,0.022425123,0.015528985,0.004189657,0.0062749777,-0.013386619,-0.013018995,0.011783014,-0.030018479,-0.018254481,-0.01102241,-0.016745951,-0.016289588,-0.026164755,-0.023680119,-0.010705492,-0.026063342,0.0034322226,0.037294917,0.015402218,-0.020333463,0.01798827,-0.025695717,0.03369473,0.056031115,0.04586438,-0.024377339,-0.017341757,-0.020561645,0.00016519355,0.0037808325,0.018495338,-0.010280822,-0.0065031587,-0.021208158,0.014781059,0.014793735,0.0045192516,0.032122817,-0.0074665896,-0.0073524993,0.0058661536,0.03967814,-0.010318852,-0.017899532,0.0040470436,-0.034632806,-0.0026716194,-0.019230587,-0.020244727,-0.0067059863,-0.025163295,0.0051816106,0.03237635,0.021423662,-0.010990718,0.010787891,0.015009239,-0.012023872,-0.04517984,-0.032350995,0.003701603]},{"id":"interface-APIMessage","type":"interface","source":"main","text":"Interface: APIMessage\nDescription: Message from GET /channels/{id}/messages, POST /channels/{id}/messages, PATCH, or gateway MESSAGE_CREATE\nProperties: attachments: APIMessageAttachment[] | null, author: APIUserPartial, call: APIMessageCall | null, channel_id: string, content: string, edited_timestamp: string | null, embeds: APIEmbed[] | null, flags: number, guild_id: string | null, id: string, member: APIGuildMember | null, mention_everyone: boolean, mention_roles: string[] | null, mentions: APIUserPartial[] | null, message_reference: APIMessageReference | null, message_snapshots: APIMessageSnapshot[] | null, nonce: string | null, pinned: boolean, reactions: APIMessageReaction[] | null, referenced_message: APIMessage | null, stickers: APIMessageSticker[] | null, timestamp: string, tts: boolean, type: MessageType, webhook_id: string | null","meta":{"url":"/docs/typedefs/APIMessage"},"embedding":[0.008714562,0.010373084,0.01972644,0.034576945,-0.022258177,-0.049321964,-0.0057696616,-0.010396526,0.012881378,0.005221705,-0.013432264,-0.034319084,0.009288891,0.02076961,0.012377375,0.008187118,-0.0011742975,0.0075190207,0.01009178,0.044399142,0.014241014,0.012037465,-0.03989828,0.039382555,-0.01725331,-0.031998325,-0.038069803,0.0029361101,-0.017030612,0.006264874,0.04339114,-0.023172414,0.012166397,0.0025288055,0.011908535,0.053119566,-0.012588353,0.028739888,-0.016620377,-0.03767129,-0.0017947779,0.059589557,0.012939983,0.006253153,-0.079890326,0.030685576,0.003917744,0.04754037,0.004518445,0.021894826,-0.037014913,0.039851397,0.03242028,0.06324651,0.018226152,-0.015413114,0.0013530428,-0.0084918635,-0.025551777,0.024239026,-0.040742192,-0.025551777,-0.016479725,-0.012096071,-0.0138542205,-0.012506306,-0.017511172,0.060761657,0.024473445,0.019034902,0.031271625,0.009939407,-0.016796192,-0.008843494,-0.015741302,-0.009124798,-0.031881116,-0.006985715,0.012506306,-0.059683327,-0.0041345824,0.044422586,-0.048290513,-0.0448211,-0.04578222,0.02112124,-0.00077724876,-0.026466016,-0.026934855,0.039030924,-0.05935514,0.008198839,-0.06394977,-0.015987443,0.016128095,-0.047352836,-0.033498615,0.0015574277,-0.01877704,0.019046623,0.045383707,-0.035819374,-0.081296846,0.023172414,0.014639528,-0.0053447755,0.008896238,0.026372248,-0.043414578,0.00868526,-0.028458586,-0.016843075,-0.014112082,0.0054151015,-0.011275601,-0.0025507824,0.0044950033,-0.0018358014,0.03225619,-0.025012612,-0.057198476,0.021168124,0.054432318,-0.008263304,0.029021192,-0.030638691,0.018472293,0.015553765,-0.04378965,0.013795615,0.023535766,0.0072084144,0.031506047,-0.025973734,-0.019691277,0.02475475,-0.018097222,0.000121880075,-0.032349955,-0.036335096,0.04742316,-0.018390248,-0.0049433312,-0.0031002043,0.0047440743,-0.00030657736,-0.034319084,0.018284759,0.017347079,0.010572341,-0.0153193455,0.027145833,-0.036335096,0.013830778,-0.0010307153,0.0022738737,-0.0007087542,-0.02639569,0.011006018,-0.007524881,-0.008532887,-0.0626839,-0.014381666,-0.009851499,-0.030357387,-0.006581341,0.019433416,-0.017698709,-0.034225315,-0.004802679,-0.039007485,-0.032748472,-0.08350039,-0.007806185,-0.015553765,-0.027778767,-0.0044803517,-0.033193868,-0.035678722,-0.005362357,0.040203027,0.019773325,-0.050025225,-0.10305102,-0.026114386,0.026934855,-0.018237874,0.026606668,0.017276753,-0.03520988,-0.01888253,-0.0036042072,0.000027654232,0.022504319,0.028411701,-0.021988593,0.038304225,0.00010448172,0.004626864,-0.02487196,0.03352206,-0.021074357,0.07974967,0.007120507,-0.015190414,-0.0058341273,0.024942286,0.026301922,-0.044867985,-0.0029317148,0.044633564,-0.03474104,-0.0007552719,-0.023043483,-0.027872534,-0.018413689,-0.033451732,0.0028013187,-0.06587201,-0.0019383602,-0.07131056,0.0039060228,0.069575846,-0.004073047,-0.036077235,0.024778191,-0.019867092,0.0014519388,-0.03743687,-0.013678405,-0.031576373,0.017980013,-0.024801634,-0.07688975,-0.049134426,0.008081629,0.0044539794,0.035514627,0.017522894,-0.018988019,0.035842814,-0.019163834,0.0077241384,0.04303951,-0.005760871,-0.029068077,0.028435143,-0.066387735,0.016151536,0.041093823,0.08795437,0.014487155,-0.0035573232,0.03624133,0.023629533,-0.024332793,0.00668683,0.041445453,0.03999205,0.006581341,0.06929454,0.022105804,-0.05537,0.01513181,-0.009200984,0.011785464,0.033990897,0.048384283,-0.01653833,0.031928,-0.011896814,-0.0070384596,0.07234201,0.029513475,0.006710272,0.015190414,-0.029349381,-0.018495737,0.031998325,-0.0003937523,-0.008773168,-0.022269897,-0.002991785,0.04798577,-0.016350793,0.0342722,0.049275078,-0.00997457,-0.002583015,0.016456282,-0.012799331,0.033897128,0.04015614,-0.04303951,0.023524044,0.022609808,0.02569243,0.021379102,0.0185309,0.026606668,0.026090944,-0.017522894,0.050259642,-0.0533071,0.021297054,0.00457705,0.025903407,-0.025833081,0.013268171,-0.05021276,0.033545498,0.0016394748,-0.06929454,-0.02371158,-0.055791955,0.015917117,0.025926849,-0.01021485,-0.0058370573,0.020500027,0.0020394537,-0.014252734,0.023969444,-0.040414006,-0.011551044,-0.0185309,0.017054053,-0.017077494,0.015764743,0.037460312,0.013772174,-0.058229923,0.019269323,0.0016072419,0.047141857,0.0049931454,-0.019785047,0.02040626,0.043672442,0.051103555,0.045008637,-0.035936583,-0.018390248,-0.0021171055,-0.022187851,-0.020394538,-0.07431113,-0.00090691226,0.00833363,0.003744859,0.0028482028,-0.005127937,0.011369369,-0.011451416,0.008960703,-0.008902099,0.043813094,-0.007401811,0.0026445503,0.039241903,-0.054291666,-0.032560933,0.0017332427,0.030779343,-0.0009457381,0.004533096,-0.027849093,-0.014112082,-0.055932608,-0.04965015,0.028739888,-0.037694734,-0.012014024,-0.009704987,-0.016456282,0.023559207,-0.017686987,-0.004831982,-0.0061769662,0.01020899,0.035045788,0.03776506,0.011047041,0.027169276,0.03110753,-0.0003336822,-0.014041756,0.01794485,-0.0022841296,0.04814986,0.05340087,-0.008427398,-0.037272777,-0.017382242,0.015495161,0.033826802,-0.0123539325,-0.02745058,-0.008861075,-0.033733036,0.004659097,0.022867668,-0.023641255,0.021390824,-0.020593794,-0.008058187,0.010830203,-0.0052158446,0.054619856,-0.0057432894,0.0053359848,-0.009892523,0.02698174,0.033803362,0.023043483,-0.032795355,0.007905814,-0.016866518,0.021789337,0.03673361,0.0074428343,-0.04587599,-0.024496887,0.02075789,0.0025771547,-0.016596934,0.035584953,-0.04707153,0.02665355,-0.037507195,-0.059542675,0.021613522,0.060949195,-0.026466016,0.039499767,-0.049462616,0.019902255,-0.0066985507,-0.025036054,0.011052902,0.009247868,-0.025012612,-0.00785893,0.004497933,-0.005377008,0.002968343,-0.0045477473,-0.028927425,0.032842238,-0.035397418,-0.046157293,-0.058417458,-0.0075190207,0.008585632,-0.04575878,-0.040554658,0.0064992937,0.07895265,-0.00018002721,-0.0050400295,-0.019339649,-0.013830778,0.017640103,0.047610696,-0.02569243,-0.027778767,-0.049275078,-0.026489457,-0.03155293,0.0342722,-0.012377375,-0.041937735,0.03401434,0.04564157,0.009200984,-0.027731882,0.023125531,-0.020101514,0.016092932,0.0021097797,-0.000028112083,-0.027263043,-0.00739009,-0.036639843,-0.009535032,0.09704987,0.0002833185,-0.008556329,0.008064047,0.010812622,-0.029747896,0.0022240595,-0.012271886,-0.010918111,-0.018085502,-0.03980451,-0.018741878,-0.042101827,0.021613522,-0.019304486,-0.0029522267,0.003744859,-0.0004736016,-0.019878814,0.050072107,-0.017030612,-0.045383707,-0.040273353,0.0014885669,-0.020628957,0.0047206325,0.0032936006,0.0012944378,-0.015377951,-0.0075190207,-0.008896238,-0.025973734,0.028200723,-0.011410393,0.006030454,0.01572958,0.024239026,0.047094975,0.0026826437,0.0025844802,0.0069974363,-0.031013763,-0.040203027,-0.0018680342,-0.0003576736,0.019984303,0.01772215,0.024965728,0.008579771,-0.023981163,0.025176706,-0.051713046,-0.019808488,0.03687426,0.000857098,-0.014815343,-0.014932552,-0.006780598,0.025176706,-0.0015413114,0.006036314,-0.013221286,0.02217613,0.014041756,0.03638198,-0.018988019,0.0006417247,0.038163573,0.014053478,0.036077235,0.01843713,-0.025387684,-0.023957722,0.022680134,0.023922559,-0.011111507,-0.008544608,-0.0012915075,0.004322118,-0.048524935,0.0062824553,0.0027309926,0.034530062,-0.008110931,-0.003815185,-0.0013918686,0.02289111,-0.0076127886,0.020570353,0.00018442259,0.015120088,-0.03298289,0.009810476,0.016843075,-0.015424835,0.0051484485,-0.037249334,0.03811669,0.024004607,-0.0035719743,-0.012834494,-0.018366804,-0.021390824,0.0038913717,0.030896554,0.027052065,-0.020394538,0.0046297945,-0.020019466,-0.0060245935,-0.007694836,-0.0146043645,-0.006610643,-0.035678722,0.016491445,0.018929413,0.04257067,-0.04904066,-0.0019046623,0.034553505,0.04611041,-0.010478573,-0.028903984,-0.011041181,0.0026225734,0.0005461253,0.025973734,-0.041117262,-0.014217571,-0.023570929,0.016526608,0.040882844,-0.007700696,0.03242028,0.001038041,0.008866936,-0.00079629535,0.017335357,0.028599238,-0.02239883,0.028364817,-0.019445136,-0.046766784,-0.0048876563,0.004732353,0.049228195,-0.009968709,0.013643242,0.0066692485,-0.021332217,0.004788028,-0.0015838,-0.004158024,0.0051220767,0.0067044115,0.016104652,0.010384805,0.04707153,-0.007987861,0.041820522,-0.004163885,0.00043917118,-0.0033287636,-0.028153839,-0.0070325993,-0.025293915,-0.039241903,0.025879966,-0.0051689604,0.005435613,-0.0641373,-0.006593062,0.053072684,-0.013080635,0.004682539,-0.025879966,0.025153264,0.010273456,0.0541979,0.015565487,0.0020628958,-0.042430017,0.0017903826,0.0068978076,0.011322485,0.011597929,0.0145692015,0.01959751,-0.00017105333,0.037155565,-0.027239602,0.0065754806,-0.016397677,0.0058722203,0.017569777,0.014182408,-0.01044341,-0.05152551,-0.013209566,0.0138893835,-0.007026739,0.028575795,0.0018021036,0.030826228,-0.016819634,0.014487155,-0.0076245097,0.008269165,-0.02475475,0.028997751,0.011357648,0.03134195,0.03016985,-0.0011794255,-0.007706557,-0.021519754,-0.015166973,-0.029771337,-0.0008754121,0.0010211921,0.008280885,0.014698133,0.014065199,0.017651824,-0.00832777,-0.040648423,-0.011416253,-0.0048407726,0.018730156,-0.010548899,0.0007757836,-0.0016087071,0.0066340854,0.012834494,0.024285909,0.04306295,0.019433416,-0.0030445294,0.030943437,-0.0022035479,-0.022000315,0.028224165,0.02239883,-0.002956622,0.026676994,-0.027849093,0.021988593,0.000006289735,0.030005757,-0.012541469,0.040437445,-0.01220156,0.008603213,-0.010033175,0.020382818,0.010009733,0.015049762,0.026255038,-0.025200147,0.006370363,-0.019409973,0.0013933338,-0.011873372,-0.014967715,0.014862226,-0.016479725,0.006511015,-0.02698174,0.022562923,-0.020863378,-0.003952907,0.0036921147,-0.006546178,-0.035608396,0.00974015,0.012881378,0.025036054,-0.0011882163,0.023535766,-0.012998587,-0.011937837,-0.010502015,-0.0013413219,0.032678146,0.022246456,-0.025997175,-0.014932552,0.0066692485,-0.0027954583,0.021261891,-0.0506816,-0.0075893467,-0.027802208,-0.009335776,-0.0009691801,0.0011786929,-0.019175554,-0.01585851,-0.0022035479,0.010062478,0.012541469,-0.052510075,-0.020277329,-0.024590656,-0.012705563,-0.044891424,0.040765636,-0.0011845535,-0.03295945,0.001407985,0.012471143,0.0026723878,-0.07979656,0.03980451,0.028341375,-0.02663011,-0.012564911,-0.020839935,-0.009546754,-0.005913244,0.0012072629,-0.029513475,0.04904066,-0.014264456,0.007097065,-0.0096346615,0.04318016,0.017980013,0.0011896814,-0.020875098,-0.014522318,0.012529748,0.018273037,0.0049697035,-0.007987861,0.09011104,-0.012166397,-0.007958558,-0.003530951,0.043133277,0.056729633,-0.051103555,0.010900529,0.0021888965,-0.009710847,0.0065168752,0.004659097,0.021976873,-0.0016101722,0.0123890955,-0.02838826,-0.036546074,0.03626477,-0.033404846,-0.018015176,0.0015149391,0.0061535244,0.008749725,0.025176706,-0.009300613,-0.009294752,-0.0018006384,-0.0023720372,-0.004600492,-0.008948983,0.008732144,0.021648685,0.012693842,-0.05724536,-0.007894093,-0.023735022,-0.02571587,0.024215583,0.015928837,0.023981163,0.024356235,0.02205892,-0.015553765,0.00810507,-0.02381707,-0.010373084,0.0043602115,-0.033357963,0.01747601,0.023289625,0.02052347,0.0050751925,0.029255614,-0.006036314,0.020218723,0.007495579,0.008943122,-0.009488149,-0.015424835,0.053822827,0.014100362,-0.0073725083,-0.0028936216,0.0036686726,-0.007401811,-0.0024321072,0.022574645,0.02112124,0.0021918267,0.009576056,0.004193187,-0.00031243789,0.01466297,-0.0060245935,0.011931977,0.010613364,-0.05363529,0.043977186,-0.0025537126,-0.03312354,-0.052978914,-0.027989745,-0.03687426,-0.000014639802,0.03474104,0.028927425,0.06334028,-0.014451992,0.0013120193,0.0066985507,0.011052902,-0.0161867,-0.022785623,0.007671394,0.008357072,-0.006651667,-0.011820627,-0.029185288,-0.009535032,0.00892554,-0.018401967,0.006651667,0.015506881,-0.00011455445,-0.017065775,-0.0013501126,-0.02545801,-0.03392057,0.006007012,-0.029091518,-0.00026592016,-0.028857099,-0.0038737901,0.026536342,0.0011860186,-0.03814013,-0.005951337,-0.0089900065,0.008614934,-0.009822197,0.024004607,-0.0091541,-0.015424835,-0.026348805,0.021883104,0.0030298783,-0.05668275,0.023301346,-0.0483374,-0.008943122,0.006721993,-0.034576945,0.012787609,-0.027263043,-0.00044576425,0.0024965727,0.043344256,-0.007360787,0.051853698,0.005116216,-0.020980587,-0.033381406,-0.04777479,-0.014487155,-0.017054053,0.0014753807,0.030709017,0.0045008636,0.023875674,0.026489457,-0.0366164,-0.031154415,0.044188164,0.066200204,-0.015331066,0.019409973,-0.0131040765,-0.028224165,-0.017077494,0.008966564,0.01676103,0.03401434,-0.029982315,0.009177542,-0.002723667,-0.015694417,-0.034436293,0.019890536,0.03931223,0.017464288,0.026090944,-0.016796192,0.0031851814,-0.021402543,0.033967454,-0.014967715,0.010162106,-0.0002692167,0.049697034,0.016620377,-0.036217887,0.0091716815,0.010126943,0.0034811366,-0.01220156,-0.0029287846,0.03931223,0.023090368,-0.0002809377,0.023781907,-0.01349087,-0.008743865,-0.006071477,-0.02545801,-0.04378965,0.025950292,0.0073842295,0.0029302498,0.0027368532,0.0020819425,0.049275078,-0.028013187,0.026184712,-0.025293915,-0.01184407,-0.006370363,-0.00634106,0.0049140286,0.02663011,-0.041843966,-0.026606668,0.06840375,-0.009915965,-0.004591701,0.0028071792,0.020089792,0.020312492,0.026231596,0.03462383,-0.01220156,-0.032936007,0.019773325,-0.046626132,0.036171004,0.04273476,0.00299325,0.0009970175,-0.011691696,0.025786197,0.007425253,-0.0044774218,0.024918843,-0.0032203444,-0.008814191,-0.011281461,0.0034020199,0.020558631,0.03204521,0.0069388314,0.0041345824,-0.0075893467,-0.0016761029,-0.019562347,-0.020359375,0.021425987,0.014756737,0.019785047,0.00857391,0.0068099005,0.0042781644,-0.027192717,0.0031588092,-0.0032115537,-0.019538905,0.015975721,0.0017771964,0.01725331,-0.056307677,-0.0045711896,-0.041117262,-0.021425987,0.0065872013,0.035045788,-0.0024452934,-0.020980587,0.0024145257,-0.008614934,-0.0015207996,0.06324651,-0.0058546388,-0.06418419,0.04575878,-0.033357963,-0.033639267,0.004272304,0.04458668,0.003847418,-0.024028048,-0.004861284,0.009816336,-0.0026328294,0.01196714,0.023828791,0.026466016,0.003697975,0.015448277,-0.0062238504,-0.04200806,-0.0024218513,0.0070384596,-0.010595783,0.031177856,0.010783319,-0.024965728,-0.042148713,0.012307049,0.019034902,-0.018062059,-0.0032349958,-0.012916541,-0.0031998327,-0.013256449,-0.011205275,0.06755984,-0.011047041,0.01876532,-0.0023192926,0.031974886,-0.02803663,-0.008005442,0.0047850977,-0.027872534,0.0031031345,-0.045125846,0.019796766,0.006581341,-0.021672128,-0.034108106,0.012764168,-0.023735022,0.023453718,0.014557481,-0.03884339,0.038421433,0.0033639267,-0.019421695,-0.03155293,0.036475748,0.0028819006,0.0054942183,0.018589504,-0.014674691,0.039921723,0.011404532,0.030732458,-0.0401327,0.014112082,0.02442656,-0.007665533,0.02665355,0.0041257916,0.0152841825,-0.013654964,-0.0019661975,0.021156402,0.04775135,-0.010625086,0.02475475,0.018519178,0.017933128,0.008192978,-0.020359375,-0.016936844,0.02242227,-0.017417405,0.04165643,0.033803362,-0.003577835,0.0029698082,-0.027427137,0.00038459527,-0.012600074,0.014135525,-0.0026225734,-0.026278479,-0.0024614097,-0.03910125,0.042664435,-0.001525195,-0.031506047,0.008017163,-0.04479766,-0.0074545555,0.013045472,-0.051478628,-0.0057286383,-0.032209303,-0.011070483,0.029747896,0.0069036684,-0.01700717,0.009007588,-0.0042283502,0.007184972,0.036124118,-0.011287322,0.009136518,-0.011468997,0.02838826,0.0028804354,0.010232432,0.02346544,0.025504893,0.03814013,-0.009658103,-0.005998221,0.04739972,0.003038669,-0.019679558,0.015002878,0.019316206,-0.029396266,0.012377375,-0.013514312,-0.027614674,0.019339649,0.033592384,0.0022387109,-0.04306295,-0.010812622,0.037858825,-0.05879253,0.043578673,0.026559783,-0.044914868,-0.0145692015,-0.03591314,0.025973734,-0.009605358,-0.010771598,0.00880247,-0.01749945,0.038913716,0.0124242585,0.001197007,0.02195343,-0.0017698709,-0.012764168,-0.0024365026,0.03600691,-0.014862226,-0.04667302,0.007560044,-0.0033815082,0.029958872,-0.000642091,0.004286955,-0.0020878029,-0.018401967,0.019210717,-0.00007540815,-0.005268589,-0.03610068,0.0038591388,-0.03413155,-0.019093508,-0.029958872,0.016292188,0.02052347,0.023770185,0.008808331,-0.011627231,0.010970855,0.009499869,-0.0067044115,0.024825076,0.029419707,-0.025528336,0.020371096,0.029208729,0.00010860238,0.0483374,-0.014627807,-0.025739314,-0.0064231073,-0.021179846,0.0017098007,0.012025745,-0.00007888782,-0.019034902,-0.008931401,-0.00938852,-0.011234578,-0.009874942,-0.008192978,-0.012248443,-0.02827105,-0.05551065,-0.013256449,-0.027685,-0.0138542205,0.028528912,0.0038591388,0.011099786,0.018859087,-0.017991733,-0.00030566167,0.0002633562,-0.012588353,-0.040906288,-0.019058345,0.016479725,-0.024239026,-0.004916959,0.010449271,-0.007571765,-0.034459736,-0.029982315,0.010941552,-0.004117001,0.013701848,-0.008761447,-0.016796192,0.0021845012,-0.009839779,-0.040273353,-0.05269761,-0.00072010886,-0.015647534,0.025622103,0.006141803,0.010250013,0.025856523,-0.0017947779,-0.020793052,-0.027989745,0.0068040397,0.0029478313,0.0052597984,-0.033264194,-0.014522318,-0.01619842,-0.016772749,0.041117262,0.003495788,0.036780495,-0.00077505107,-0.010537178,0.03743687,0.012869657,0.0029053425,-0.000827063,0.008726284,-0.0113166245,0.010308619,-0.0059865,0.023781907,-0.016280467,0.00281597,0.018226152,-0.029888548,0.007888232,0.015588928,-0.0028189002,-0.0020467795,-0.011527603,0.013631522,0.008632516,0.022457434,0.007794464,-0.07037288,-0.018753598,0.0031793208,-0.0027676208,-0.004002721,0.007571765,-0.012635237,-0.0114572765,-0.026676994,-0.004295746,0.003003506,-0.012131234,-0.018566063,0.013654964,-0.0037770919,0.015342788,0.0051220767,-0.005652452,0.0067688767,-0.0016761029,-0.02407493,-0.0059044533,0.010167967,-0.01395971,-0.012564911,-0.012131234,0.005034169,0.044164725,0.017651824,0.032490607,-0.038304225,0.018167548,-0.016362514,0.018964576,-0.015975721,0.022351945,-0.008673539,-0.007466276,-0.0069681336,0.037858825,-0.0062707346,0.0032349958,-0.0037419288,-0.0023075717,-0.011222856,0.0072728796,0.020277329,-0.024731308,0.016643818,-0.015530324,0.009224426,0.01548344,-0.020207003,0.015881954,-0.019433416,0.04132824,-0.009904244,-0.011685836,0.04763414,0.022234734,0.033053216,-0.005857569,0.0030709016,-0.02135566,-0.026911413,0.012646957,-0.010314479,0.019081786,-0.023043483,-0.0015149391,-0.03321731,0.025997175,0.015811628,-0.018097222,-0.019281043,0.036124118,-0.0085270265,-0.00527738,0.0029712731,0.033756476,-0.021578358,-0.009804616,0.021449428,-0.031857673,0.0065403176,-0.01548344,-0.003967558,-0.0013237403,-0.00071314955,0.0012292397,0.0042752344,0.0056055677,0.016866518,-0.011474858,0.025973734,0.047938887,0.0015808697,0.0019749883,0.0032760191,0.022117525,-0.03438941,0.045243055,0.013385381,0.01714782,0.027497463,0.03600691,0.006382084,-0.008855214,-0.008187118,-0.02829449,-0.01912867,-0.006546178,0.0089196805,-0.020207003,0.009253728,-0.014487155,-0.015553765,-0.043344256,-0.01785108,-0.0016438701,-0.030310502,0.031412277,0.030076083,0.01688996,0.004386584,-0.0021185705,-0.038187016,0.032490607,0.031834234,0.018929413,-0.042289365,0.026184712,-0.0047206325,0.0060831984,-0.030568365,0.04343802,-0.021578358,-0.012834494,-0.019187275,-0.010525457,0.03295945,0.009019309,0.03122474,0.03239684,0.014545759,0.033990897,0.027567789,-0.030732458,-0.0058282665,-0.0050605414,-0.05527623,0.0123890955,0.0015999164,-0.013268171,0.01349087,-0.0013120193,0.00014559679,0.020582074,0.01656177,-0.021683848,0.014405107,0.022621527,0.009031029,-0.031740464,0.013221286,0.021918267]},{"id":"interface-APIMessageAttachment","type":"interface","source":"main","text":"Interface: APIMessageAttachment\nProperties: content_hash: string | null, content_type: string | null, description: string | null, duration: number | null, expired: boolean | null, expires_at: string | null, filename: string, flags: number | null, height: number | null, id: string, nsfw: boolean | null, placeholder: string | null, proxy_url: string | null, size: number, title: string | null, url: string | null, waveform: string | null, width: number | null","meta":{"url":"/docs/typedefs/APIMessageAttachment"},"embedding":[0.0065785996,0.019956311,0.03253773,0.037094973,-0.0014218412,-0.077816136,-0.002803868,-0.023790766,0.033027757,-0.006952245,0.00573943,-0.036923464,0.016685387,-0.00086213957,-0.014443518,-0.014786536,-0.010106787,0.04160321,0.004058028,0.01633012,0.021585647,0.017971706,-0.021916416,0.030136602,0.012109769,-0.025432352,-0.033248268,-0.0049278247,0.039790116,-0.0013873862,0.0093778735,-0.037560496,0.030136602,0.027661972,0.007276887,0.05566696,-0.010296673,0.023741763,-0.036604945,-0.056107983,0.009383999,0.015264312,0.0048726965,-0.0029187177,-0.06061622,0.028348008,0.02406028,0.053461842,-0.013990244,0.05811709,0.004875759,0.059538167,0.008771466,0.05890113,-0.027710974,-0.0017089659,0.00043642946,0.013561471,-0.045425415,0.0017503118,-0.006088574,-0.00592319,-0.04797355,0.002554261,-0.03613942,0.0016017726,-0.0062355814,0.032954253,0.016648635,0.038810063,0.07340591,0.047018,-0.005203464,0.017236667,-0.014455768,-0.024807569,-0.040696666,-0.04397984,-0.0068542394,-0.027441459,-0.026216393,0.05360885,-0.051746752,-0.023239486,-0.035257373,0.053951867,-0.06340937,-0.03258673,-0.046576977,0.050325677,-0.07129879,0.038222034,-0.05473591,-0.035281874,-0.025530357,-0.04101518,-0.043881834,0.015619581,-0.03966761,0.018118713,0.045033395,0.0024501302,-0.06840764,0.018853752,-0.0019432596,-0.033958804,-0.031827193,0.016293366,-0.04341631,0.028274503,-0.017934954,-0.02180616,-0.041333698,0.032072205,-0.0030090662,-0.043881834,-0.014700782,0.034546837,0.0394961,-0.02557936,-0.046405468,-0.0089797275,0.03871206,-0.012079142,0.02616739,-0.016795643,0.026608415,0.008348819,-0.07198483,-0.013169451,0.009855649,0.04023114,0.014811037,-0.040574156,0.014075998,0.019245774,0.0059446287,0.013745231,-0.042852778,-0.023717262,0.07673808,-0.00030837188,0.005123835,0.01280193,0.0065602236,0.05015417,-0.026730921,0.05414788,-0.0029125924,-0.0008981259,-0.024354296,0.013806484,-0.035159368,0.021340635,-0.0064193415,-0.013757481,0.012997941,-0.01766544,-0.017346922,-0.023435496,-0.011582991,-0.062282313,-0.015325565,-0.026877929,-0.0033964931,-0.0013789639,0.03856505,-0.008379445,-0.030259108,0.016624134,-0.013818734,-0.039079577,-0.031655684,-0.024354296,-0.009249242,0.023815267,0.07869819,-0.03633543,-0.015460322,-0.010014907,0.064242415,0.04155421,-0.019858306,-0.06973071,-0.014370014,-0.00826919,0.002537416,0.039594106,-0.008330443,-0.02898504,0.009102234,0.0048359446,0.014039246,0.017420426,0.050472684,-0.027637469,-0.008942976,0.015350066,-0.030063098,-0.019233523,0.007748537,0.016146358,0.07306288,0.009016479,-0.033836298,-0.01731017,0.0076872837,0.032219213,-0.024146033,-0.006658229,0.045253906,-0.017800197,0.016967151,-0.0070686257,-0.018130964,-0.031092154,0.012244526,-0.010774448,-0.03817303,0.0075831534,-0.0620373,0.023239486,0.06448743,-0.015754338,-0.024378797,0.03290525,-0.06943669,0.024746316,-0.050913706,-0.03346878,-0.037903514,0.022124676,-0.03160668,-0.04077017,-0.049370125,-0.01711416,0.0019340715,-0.014921294,0.014823288,-0.0207036,0.027049439,-0.014014745,-0.0022296186,0.049321122,0.005231028,-0.006505096,0.0022985286,-0.010694819,0.018081961,0.010400803,0.04250976,-0.02954857,-0.010621315,0.0045021144,0.02878903,-0.026191892,-0.04228925,0.03332177,0.038418043,0.013046944,0.05101171,-0.010327299,-0.053951867,-0.005099334,0.011852506,0.030822638,0.02500358,0.024905574,-0.017885951,0.01804521,-0.0049370127,0.01840048,0.06664354,0.039618608,-0.0098372735,0.06061622,-0.03682546,-0.011356354,0.00029956672,0.006057947,-0.021744907,-0.05694103,-0.04209324,0.01750618,-0.018878253,-0.0015328628,0.04471488,0.02500358,0.029426064,-0.007932297,-0.005013579,0.008612208,0.054588903,-0.063458376,-0.0062539577,0.035649396,-0.013708479,-0.0046215584,0.017812448,-0.018155465,0.018866003,-0.02594688,0.05115872,-0.05115872,0.025873376,0.015754338,0.032243714,0.0021055806,0.017530682,-0.034448832,0.025677366,-0.018951757,-0.08982178,-0.03783001,-0.06796661,0.016121857,0.03851605,-0.017138662,-0.029107548,0.010100662,0.015252061,-0.022051172,0.010400803,-0.05512793,0.005910939,-0.015362317,0.023239486,-0.0065785996,0.011674871,0.031288162,0.027955987,-0.030136602,0.03611492,-0.045278408,0.06600651,-0.017542932,-0.008495826,0.029254556,-0.0008774529,0.051844757,0.027490461,-0.054098878,-0.01176675,0.028691025,-0.003733386,-0.035453387,-0.07198483,-0.009285994,-0.010529435,-0.026461408,-0.014137251,-0.02856852,-0.012066891,0.02499133,-0.012238401,-0.043342806,0.046968997,-0.051991764,-0.046944495,0.023484498,-0.055519953,0.0153378155,0.018559737,0.014615027,-0.0133042075,0.0012151115,-0.04248526,-0.020029815,-0.0077546625,-0.03437533,0.011380855,0.013598223,-0.019527538,0.003506749,-0.053706855,0.018155465,-0.014921294,-0.007760788,0.002979971,-0.020532092,0.04023114,0.037388988,0.00549748,0.034840852,0.016097356,-0.045008894,-0.026755422,0.028078493,-0.040892676,0.02876453,0.05699003,0.0055464823,-0.04397984,-0.0065908507,-0.014737533,0.033199266,-0.010112912,0.0029585324,0.0034608091,-0.04077017,0.010817325,0.00864896,-0.005987506,0.03648244,-0.01840048,-0.0063458374,0.005368848,0.00097469246,0.06321336,0.0016829332,0.013769732,-0.004581744,0.03219471,0.008330443,0.03417932,-0.0007782992,0.0120485155,0.0017533745,0.042534262,0.01203014,0.017591935,0.027563965,-0.014700782,0.020213574,0.0044653625,-0.00456643,0.020752603,-0.049517132,-0.0004823694,-0.05233478,-0.023055727,0.045229405,0.044347357,-0.0058803125,0.03893257,-0.037879013,-0.0017258105,0.032513227,-0.046356466,0.00639484,0.0011017929,-0.022982221,-0.006848114,-0.010590688,-0.027857982,0.0070502497,0.0050625815,0.016036103,0.025775371,-0.02462381,-0.035796404,-0.017322421,-0.031508677,0.014578275,0.017261168,0.002157646,-0.030994149,0.0037119475,0.015729837,-0.024599308,-0.014884542,-0.007877169,0.027931485,0.024489053,-0.008673461,-0.020458588,-0.028299004,0.012458912,0.005886438,-0.008906224,0.012103643,-0.00695837,0.030528624,0.029818086,0.016317867,-0.04268127,0.07041674,-0.031508677,0.02726995,0.009941404,-0.011215472,-0.013573722,-0.018179966,-0.024954576,-0.049933653,0.11731224,0.035820905,0.008018051,0.04473938,-0.009463628,-0.04812056,-0.0013108196,0.0021316134,-0.0129856905,-0.029867088,-0.0118892575,0.011999513,-0.054686908,-0.004912511,-0.010596814,0.07061275,-0.025358848,0.01729792,-0.038859066,0.060959242,-0.018155465,-0.024023527,-0.014039246,0.004857383,-0.0030519436,0.025162838,-0.0048298193,0.0074790227,0.0019019137,-0.034130316,0.0111113405,-0.0078832945,0.046282962,0.0021943978,0.0025006642,-0.028151996,-0.008844971,0.059636172,-0.003298488,-0.005711866,-0.022222681,-0.03239072,-0.042754773,-0.014051497,-0.020715851,0.033003256,0.015570578,0.006076323,0.0143210115,-0.04194623,0.01335321,-0.01786145,-0.039814617,0.026216393,-0.0021898039,-0.021659153,-0.026363403,0.0014700781,0.010547811,-0.009818897,0.025015831,-0.027588466,0.030528624,0.0069706207,0.013193952,-0.019882808,-0.012997941,0.034473334,0.02163465,-0.001848317,0.0011079183,-0.0097760195,-0.016489377,-0.0021178313,0.016807893,0.00028731607,-0.033223767,-0.0137819825,-0.0038344539,-0.019135518,0.037339985,0.0095187565,0.016771141,0.003687446,-0.0032096708,0.0319742,0.008171185,-0.016036103,0.026216393,0.008140557,0.027490461,-0.026240895,0.008563206,0.012765178,-0.0117545,0.0019386656,0.0065540983,-0.0056904275,0.027171945,0.006088574,0.024513554,0.009806646,0.0059538167,-0.0056352997,0.027122943,0.020262577,-0.016771141,0.027367955,-0.003917146,-0.011325727,-0.013671727,0.010229294,0.0075157746,-0.017395925,-0.014651779,0.0282255,0.021022119,-0.008495826,-0.007411644,0.0319497,0.048047055,0.01071932,-0.038883567,-0.02050759,-0.00408253,-0.011705497,0.018228969,-0.03366479,-0.022712708,-0.012691675,0.026485909,-0.004443924,-0.0017671564,0.0015320971,-0.01842498,0.0117545,0.0015382224,0.003469997,0.03912858,-0.026289897,0.024550306,-0.014994797,-0.0508157,-0.007711785,0.0049553886,0.018351477,-0.006915493,0.0006033446,0.018657742,0.0013391493,0.015680835,0.001607898,0.020740353,-0.0050350176,0.0085815815,-0.0044745505,0.039202083,0.052628797,-0.029107548,0.06360538,0.0020688288,-0.019319277,0.019307027,-0.015729837,-0.009690265,-0.009635137,-0.032488726,0.01786145,-0.0066704797,-0.004058028,-0.042338252,-0.005031955,0.046797488,-0.012838683,0.0031576054,-0.0046981247,0.019025262,0.001940197,0.022847464,0.002920249,-0.009114484,-0.024207287,-0.029671079,-0.0016737452,-0.013071445,-0.003224984,0.02837251,0.03420382,0.009880151,0.02481982,-0.049762145,0.01297344,-0.019221272,-0.007313639,0.028102994,0.0008927662,-0.0026767673,-0.048047055,-0.029303558,0.018020708,-0.007013498,0.030014096,0.03307676,0.008238563,0.010021033,-0.0027732411,-0.002045859,-0.0023245611,-0.022602452,0.02575087,0.056549005,0.03496336,0.03288075,0.0045541795,0.0038099526,0.0018100337,-0.009794395,-0.04101518,0.028740028,0.0023873458,0.0048910724,0.015350066,0.0153378155,0.03371379,0.0042509763,-0.023643756,-0.009763769,-0.022283934,0.03721748,0.008722464,0.011864756,0.01484779,0.031435173,0.0020642348,0.015031549,0.067280576,-0.0028620583,-0.027980488,0.024011277,-0.016391372,0.0037364487,0.02386427,0.016967151,0.0089797275,0.0029998783,-0.017885951,0.014945795,0.0024485989,0.029573072,-0.0076872837,0.032733742,0.022308435,0.013218453,-0.0022388066,0.039741114,0.031508677,0.013193952,0.02031158,-0.009818897,0.0037395114,-0.029622074,-0.021916416,-0.0040274016,0.0022770897,-0.0112522235,-0.012403784,0.007760788,0.0018636304,0.03141067,0.00038111012,-0.0062845843,0.012397659,0.014627278,-0.01825347,0.0070625003,0.02236969,0.030259108,-0.019784803,0.014125001,-0.00022969971,0.00078059616,-0.009114484,0.0027364893,0.03555139,-0.014517022,-0.008354944,0.012379283,-0.015595079,0.010272171,0.004214224,-0.037781008,-0.004832882,-0.025897877,-0.028960539,0.025554858,0.023558002,-0.042534262,-0.019294776,-0.009849524,0.0016660886,0.0060273204,-0.065467484,-0.013218453,-0.011723873,-0.01935603,-0.044102345,0.044322856,0.02312923,-0.054686908,0.021377387,0.00027563964,-0.0082814405,-0.07580703,0.0141617535,0.050521687,-0.010419179,-0.019307027,-0.014174004,-0.032268215,-0.00027123708,0.030381616,-0.03329727,0.02935256,0.005442352,0.020262577,-0.024317542,0.029818086,-0.00272577,0.0073687667,-0.007938422,0.01033955,-0.0021790846,0.004903323,0.02238194,0.01580334,0.062380318,0.014921294,0.0030458183,-0.0055342317,0.028960539,0.034056813,-0.020568844,0.015031549,0.014345513,0.0005218012,0.023631506,0.018155465,0.0070808767,-0.017763445,0.0012595201,-0.025236342,-0.03126366,0.034252822,-0.022810712,-0.005286156,0.026804425,0.0016461813,0.030577626,0.028519517,0.0014363888,-0.012777429,0.0031239162,-0.009371748,-0.023925522,0.009016479,0.0005627643,-0.0006569412,-0.006952245,-0.060812235,-0.012342531,-0.023251737,-0.016268864,-0.00093487784,0.0060916366,0.02616739,0.0046919994,0.03349328,-0.00031889978,-0.0083610695,-0.001067338,0.009390124,0.0034118064,-0.03523287,-0.00258795,0.03307676,0.022136927,0.017236667,0.018817,-0.0141617535,0.0064193415,0.011944385,-0.0117299985,0.025456853,-0.0059660673,0.04552342,0.012887686,-0.01542357,0.0028406198,0.001307757,0.012850934,0.02146314,0.017885951,0.029426064,-0.0030641942,0.017065158,-0.0138432365,-0.021022119,-0.0073258895,0.023790766,-0.021732656,0.046993498,-0.034840852,0.044886388,-0.029205553,-0.043195795,-0.06879966,-0.027857982,-0.023582503,-0.013438964,0.026118388,0.013953492,0.037952516,-0.011748374,-0.019049764,-0.00137437,0.029720081,0.001852911,-0.03535538,0.02429304,0.02481982,-0.00968414,-0.023962274,-0.01542357,0.030259108,0.013022442,-0.009488129,-0.0060610096,-0.0026691107,0.025726369,-0.021744907,-0.002212774,-0.041333698,-0.007209508,0.016281115,0.001580334,-0.002787023,-0.004799193,0.00064239354,0.031165658,-0.0027793664,-0.06796661,-0.020336082,0.0008008863,0.0043642945,0.02200217,-0.006701106,-0.016709888,0.0137819825,-0.029720081,0.039251085,0.009604511,-0.06610452,-0.0042509763,-0.044886388,-0.0066276025,-0.023288488,-0.022847464,0.017653188,-0.044322856,-0.010511059,0.020397335,0.0602242,-0.004241788,0.026828926,0.00059147674,-0.009236991,0.00761378,-0.043955337,-0.024587058,-0.006596976,0.015729837,0.035575893,0.045180403,-0.0011806565,0.012201649,-0.041897226,-0.0319497,0.04814506,0.027661972,-0.03268474,0.020740353,-0.012471163,-0.022394191,-0.025897877,0.008238563,-0.009757644,0.06664354,0.0006132982,-0.00012920609,-0.008636709,0.006676605,-0.0046644355,0.017224416,0.036261927,0.025285345,0.010137414,-0.015031549,0.0073993932,-0.0413582,0.028250001,-0.025554858,0.0022234933,0.011907633,0.03555139,0.024562556,-0.010302798,0.008471325,0.014382265,-0.0030672569,0.0053810985,0.007332015,0.022737209,0.022602452,0.010780573,-0.022847464,-0.010259921,-0.013953492,0.016060604,-0.05321683,-0.001944791,-0.021757158,-0.0072401348,-0.0023245611,-0.004676686,0.0031729187,0.045082398,-0.030749135,0.027490461,0.0050840206,-0.0027962113,-0.003733386,0.0031484175,0.0024914762,0.025554858,-0.017444927,-0.034669343,0.06791761,-0.02538335,-0.010468181,0.001658432,0.013451215,0.0022112427,0.013206203,0.0015726774,-0.0050013284,0.019552039,-0.00024424735,-0.049909152,0.032635733,0.03158218,-0.005770057,-0.02310473,-0.0058343727,0.004471488,0.0002212774,0.012440536,-0.0033842425,-0.014125001,0.011154218,-0.0005662098,-0.01563183,0.03417932,0.025113836,0.026387904,-0.0018222844,-0.0099169025,0.013132698,-0.009629012,-0.02557936,0.01579109,0.02518734,0.009083858,-0.013132698,-0.005178963,-0.008869472,-0.003488373,0.010749946,0.004425548,0.008949101,0.021916416,0.011160343,0.0020627035,-0.05694103,-0.012520166,-0.015374567,-0.021144625,-0.004143783,0.047189508,-0.033762794,-0.022320686,0.0022479945,0.032758243,0.011166469,0.046601478,0.030381616,-0.048414573,0.020985365,0.0051759,-0.016905898,-0.008655085,0.04772854,0.006737858,-0.027122943,-0.0068971165,0.011246098,0.010168041,-0.0023352804,-0.0023551877,0.015141805,-0.02387652,0.021965418,-0.00042341315,-0.019503037,-0.016207611,0.0033750546,-0.015068301,0.015154055,-0.00073121075,-0.016060604,-0.026877929,-0.010321174,0.0005160587,-0.004333668,0.0052340906,0.0025649802,0.0066521037,0.012899936,0.001653838,0.045204904,-0.00733814,0.013696228,0.007129879,0.028323507,-0.02388877,-0.01916002,0.006296835,-0.034252822,0.0008514203,-0.05542195,-0.0026859553,-0.0010504933,-0.00303663,-0.018902754,0.021548895,-0.018694494,0.020532092,-0.013157199,-0.026240895,0.013855487,0.0006152124,-0.018951757,-0.034056813,0.033762794,-0.0017472492,0.012556918,-0.008018051,-0.014688531,0.030063098,0.03442433,0.038246535,-0.03138617,0.02366826,0.017199915,-0.026363403,0.034301825,0.00771791,0.021071121,0.0014915168,-0.00019715892,0.01542357,0.016048353,0.006431592,0.020274827,0.011442108,0.011699372,0.008520328,-0.0068358635,-0.019074265,0.011564615,-0.005374973,-0.023043476,0.030014096,-0.004263227,0.029426064,-0.020862859,0.016599633,-0.00997203,-0.0012419098,-0.024146033,-0.026583914,0.017065158,-0.037315484,0.025775371,-0.0027732411,-0.017640937,0.014419016,-0.02295772,-0.01805746,-0.020078817,-0.017885951,0.0074055186,-0.042191245,0.00074269576,0.053069822,-0.0017043719,-0.017934954,0.006676605,0.0077546625,-0.0009716298,0.028666524,-0.026730921,0.0070686257,-0.008955226,0.03270924,-0.010253795,-0.020372834,0.03214571,0.0339098,0.033542283,-0.009659639,-0.008679586,0.04998266,-0.0053474093,-0.0030764448,0.033836298,0.007423895,-0.0026874866,0.027857982,-0.013512469,-0.025481354,0.000806246,0.0301121,-0.00522184,-0.027612967,-0.009022605,0.056205988,-0.034644842,0.01297344,0.02935256,-0.044469863,-0.007411644,-0.00218521,-0.0044929264,0.008520328,0.01729792,0.011564615,-0.0042080986,0.052236777,0.011013336,-0.014100499,-0.008410072,-0.01391674,0.00056812394,0.020385085,0.000112265734,-0.010707069,-0.030430619,0.0027043312,-0.0048635085,0.027735475,-0.0052922815,-0.006615352,-0.007785289,-0.03680096,0.011080714,-0.01824122,0.020091068,-0.029426064,0.0033383025,-0.049590636,-0.025077084,-0.029254556,-0.00054821663,-0.018167716,0.007975174,-0.014443518,-0.01711416,0.004443924,0.0338853,0.005004391,0.018375978,0.046576977,0.0062845843,0.0016201487,0.01750618,0.0013460403,0.012250652,-0.009739268,-0.016562881,-0.0020550468,-0.038222034,-0.009586135,-0.01938053,-0.013659476,-0.02913205,0.0014088249,0.017591935,0.0013866206,-0.010762197,-0.00630296,0.008109931,-0.0038283286,-0.03501236,-0.008146683,-0.032268215,-0.020213574,0.0583131,0.022479946,0.016072854,0.009347247,-0.03400781,0.008685712,-0.008538704,-0.0066704797,-0.03236622,-0.024195036,0.026265396,-0.027220948,-0.010786698,-0.0118892575,0.030700132,-0.038785562,-0.0071605057,-0.016146358,-0.0024700377,-0.012275153,-0.0151173035,-0.022920968,0.0007285309,-0.00038532127,-0.05120772,-0.0488556,-0.020973114,-0.03349328,0.034889854,0.01259367,-0.010217044,0.028323507,-0.03422832,-0.00995978,-0.035796404,0.0057853702,0.0037854512,0.0061804536,-0.02428079,0.007356516,0.0076872837,-0.017322421,0.003169856,0.02616739,0.02837251,-0.00029899247,0.0028911538,0.025652863,0.018118713,-0.004912511,0.032782745,-0.011668745,0.015754338,-0.010498809,0.02218593,0.0071727564,-0.007907796,-0.01731017,-0.016611883,-0.02859302,0.0035312502,0.043661322,0.0075525264,-0.0031285102,-0.013892239,-0.0069216182,-0.035281874,0.00931662,0.040868174,-0.021328384,-0.0061375764,-0.008728589,0.021904165,0.0092186155,-0.016477127,0.02277396,-0.011687121,-0.039324593,0.01729792,0.0020182948,0.0057669943,-0.024538055,0.007632156,0.00931662,0.0008353413,0.017898202,-0.021610148,0.00019735034,-0.0051759,-0.040500652,0.00067072315,-0.007442271,0.015815591,-0.0021132373,-0.003215796,0.0031177907,0.028299004,-0.00081773096,0.034742847,-0.026289897,0.022418693,0.0029738457,0.017653188,-0.010774448,-0.003926334,-0.00018730098,-0.029573072,0.010645816,0.042044237,0.0153378155,-0.029475067,-0.016440375,-0.006768485,0.011472735,-0.008146683,0.013487967,-0.033419777,-0.014590526,-0.030161103,0.022259433,-0.0069216182,-0.02444005,0.0072401348,-0.04160321,0.01280193,-0.012936688,0.007037999,0.029450566,0.017016156,0.024599308,0.009469753,0.0025940754,-0.018841501,-0.029303558,0.017126411,0.000047782327,0.023999026,-0.026951432,-0.010786698,-0.02444005,0.02088736,0.011668745,-0.02651041,0.015092802,-0.0015359254,-0.02104662,-0.00035814013,-0.0028926851,0.0062417067,0.0016829332,-0.017077409,0.024342045,-0.023190483,0.0150438,-0.011497237,0.001268708,-0.008275315,0.017395925,-0.021144625,0.020213574,0.008887848,0.03591891,-0.036555942,-0.004281603,0.035036862,-0.0009096109,-0.01183413,-0.004067216,-0.00013906404,-0.014615027,0.038295537,-0.008195686,0.012122019,0.041897226,0.026338901,0.022626953,-0.038001522,0.001802377,-0.012654923,-0.030161103,-0.009843399,0.008973602,-0.01411275,0.0394471,-0.014811037,-0.00040235734,0.00035641738,-0.016109606,0.015509325,-0.042975284,0.04963964,0.015239811,0.0216469,0.002837557,0.0021147686,-0.018192217,0.02651041,0.029940592,0.009757644,-0.020458588,0.019760301,-0.0137819825,-0.015913596,-0.010866328,0.018866003,-0.03702147,-0.0063642133,-0.0035955661,-0.034130316,0.0059721926,0.01335321,0.016795643,0.007803665,0.015129554,0.010266046,0.02032383,-0.020777104,0.009273743,-0.016562881,-0.03307676,0.020948613,-0.01841273,-0.029181052,-0.0036078168,-0.0029079984,-0.009825022,0.026240895,-0.006315211,-0.022320686,0.026044885,0.023080228,-0.011950511,-0.028078493,0.0041989107,0.017775696]},{"id":"interface-APIMessageCall","type":"interface","source":"main","text":"Interface: APIMessageCall\nDescription: Call metadata for call-type messages\nProperties: ended_timestamp: string | null, participants: string[]","meta":{"url":"/docs/typedefs/APIMessageCall"},"embedding":[0.015385768,0.009271338,0.041671176,-0.032588143,-0.04058564,-0.038769037,0.01696976,-0.030372769,0.040895794,0.0033230602,-0.0025075257,-0.045415156,0.030372769,-0.018254677,0.011763633,-0.007332886,-0.058042783,0.046256997,0.031347536,0.041205946,0.0323223,0.012461475,-0.011730402,0.03464844,-0.047541913,-0.04147179,-0.053257577,0.046256997,0.0029298314,0.0005614587,0.052770194,-0.021345124,0.019018982,0.016426994,0.0019370671,0.02263004,0.009587028,-0.026717404,-0.0347149,-0.046212688,0.008988878,0.04514931,-0.050421897,-0.0012530705,-0.083696805,-0.0097144125,0.011060252,0.081835896,-0.00066876586,0.0071722716,-0.0041372096,-0.008800571,0.025742639,0.05861878,-0.012882397,-0.022430656,0.019606054,-0.0258091,-0.011763633,-0.02174389,-0.014510696,0.0130042415,0.0052919732,-0.0350029,-0.026008483,0.040851485,-0.018276831,0.05671356,0.032300144,0.02527741,0.028755547,0.038370267,-0.066992894,0.017645448,-0.019849746,-0.022364195,-0.04727607,-0.011265174,0.020326052,0.017224528,0.032078605,0.041427482,-0.033075526,0.019628208,0.021843582,0.016836839,-0.049092676,-0.054985568,-0.03008477,0.045105003,-0.061321534,0.012472552,-0.017700834,-0.00016883569,0.058397245,-0.038547497,-0.015341461,-0.036465045,-0.0027553707,0.0059593543,0.019417748,0.0070282724,-0.033673678,-0.0012800704,-0.0064356597,-0.038082268,0.0063082757,0.0039682877,-0.032676756,0.0043725935,-0.02817955,-0.0023690648,-0.014189467,0.036753044,-0.034072444,-0.03198999,0.014521773,0.011099021,0.05618187,-0.025654024,-0.060789846,0.020248514,-0.018575907,0.009537183,-0.00427844,-0.031236766,-0.020558665,-0.0047187456,-0.0019952208,0.016449148,-0.0080030365,-0.0032621373,-0.015551921,-0.012239938,0.0013347624,-0.000020282348,-0.012827012,0.01456608,-0.05374496,-0.062960915,0.034449056,0.0340946,0.009005493,0.013292241,0.040275488,-0.00037038274,0.018498369,0.050599128,-0.005776586,0.0029852157,-0.0046273614,0.0049928976,-0.01919621,-0.003910134,0.019617131,-0.009780874,0.009548259,0.019384518,-0.023704495,-0.007886729,0.016814684,-0.058220014,-0.0054608956,0.012118093,-0.03280968,0.026916787,0.02984108,0.008257804,-0.032676756,0.025654024,-0.004480593,-0.065663666,-0.08139282,-0.00049015135,-0.020392513,0.007449193,0.009891642,-0.041804098,-0.02782509,-0.009587028,0.03719612,0.00671812,-0.04514931,-0.07226548,-0.058175705,-0.016892223,-0.006950734,0.05857447,0.048693907,-0.02930939,0.006657197,0.02948662,0.0052947425,0.0394558,0.0012779935,0.013259009,0.017124837,0.01799991,-0.029331544,-0.008684264,0.0054387418,-0.051529586,0.050864972,0.022607885,-0.0043393625,-0.0027235246,-0.0030406,-0.047541913,-0.036775198,-0.026008483,0.06787904,-0.05214989,0.010783331,0.015463307,-0.025210949,-0.004306132,-0.028622625,-0.011193174,-0.06282799,-0.018431908,0.010700254,-0.026185714,0.050466206,0.002715217,-0.018708829,0.024989411,-0.049535748,0.016150072,-0.06553075,0.017091606,-0.018963596,0.0028661394,0.0077704224,-0.018409753,0.0033424445,-0.005557818,-0.029907541,0.008761802,0.0041067484,-0.02492295,0.02598633,0.012572244,0.010827637,0.03405029,-0.040940102,0.017457142,0.039633032,-0.057511095,0.0030433692,0.031591225,0.023350036,0.019185133,-0.0020686048,0.03779427,0.008440573,-0.015407922,0.022220196,0.035290897,0.027802937,0.00028072935,0.023704495,-0.0051590507,-0.0563591,0.015474384,-0.018188216,-0.027160479,0.052371427,0.009587028,-0.020414665,0.006219661,-0.06247353,0.012029477,0.056403406,0.05826432,-0.001750145,0.05144097,0.008789494,-0.0009962257,0.019628208,-0.014244851,0.003602751,0.0030987535,-0.011830094,0.024900798,-0.028378934,0.013657777,0.018431908,0.017268836,0.044529006,0.01672607,0.023438651,0.008263343,0.027514938,-0.06597382,-0.008047344,0.020735895,0.020713741,-0.01198517,0.0033479831,0.010556255,-0.016238688,-0.0077981143,-0.003203984,-0.05790986,0.0152639225,0.0059316624,0.024524184,-0.014510696,0.015917458,-0.04277886,0.015075616,0.008302112,-0.026850326,-0.04342132,-0.034382597,-0.00735504,0.020746972,-0.01767868,-0.0350029,0.0030876766,-0.018830674,-0.009775335,-0.0009886104,0.029686004,-0.0056768944,0.006491044,-0.005787663,-0.013314394,-0.00031482533,0.01569592,0.0038436728,-0.017734064,0.04816222,0.00069680414,0.07363901,0.048428062,-0.042446554,-0.0018096832,-0.011071329,0.046079766,0.056447715,-0.06947411,-0.02372665,0.005915047,0.028977085,-0.036819506,-0.038060114,0.008241189,-0.009924873,0.028201703,-0.0019772209,-0.026916787,0.028600471,0.0129377805,0.02372665,-0.0272934,0.03108169,-0.042468708,0.008185805,0.03125892,-0.045991153,0.0026722942,-0.001417839,-0.03143615,-0.02237527,-0.018265754,-0.07031595,-0.0133919325,-0.012660859,-0.06145446,0.0029132161,-0.034581978,-0.0076818075,0.0073051937,-0.03493644,0.0474533,-0.028644778,-0.024391262,0.023593727,0.02054759,0.05356773,-0.02008236,-0.0013707622,-0.009974719,0.02216481,0.0533905,-0.026518019,0.019140827,-0.003167984,0.0018013755,0.04413024,0.0090996465,0.000102201404,-0.023172805,0.0064965826,0.024014648,0.008119344,0.0005867278,-0.0024521414,-0.021101432,0.01693653,0.025521101,0.01163071,0.015673768,-0.023549419,0.010462101,0.01856483,0.03345214,0.066461205,0.006939657,0.05534003,-0.028755547,0.038037963,0.013547009,0.039367184,-0.01626084,-0.029686004,0.047497608,0.011752556,0.010833176,0.022541424,0.017036222,0.0014413773,0.017955601,-0.029508773,-0.017866986,0.04045272,-0.03185707,0.022973422,-0.043089014,-0.0060147387,0.064777516,0.08081682,-0.024058955,0.024701413,-0.04825083,0.020935278,0.01782268,-0.07341748,0.03910134,-0.012838089,-0.025587562,-0.0018622982,0.012417168,-0.005748894,-0.009775335,0.005183974,0.0055273566,0.043266244,0.00350029,-0.05547295,-0.008534726,-0.000951226,0.036642276,-0.04260163,-0.02064728,0.025366025,0.048605293,0.0065685823,-0.017578987,-0.034138903,-0.034781363,0.03910134,0.050820667,0.00061891996,-0.011730402,-0.042933937,0.010705792,-0.019030057,0.015972842,0.03061646,0.0073771933,0.0180996,0.004073518,0.0011741479,-0.011326097,0.049934518,-0.03227799,0.0046855146,-0.014311313,0.020381436,-0.06548644,0.014699003,0.058884624,-0.021843582,0.051706817,0.0025019874,-0.012251015,-0.012273169,0.018930366,-0.012959935,-0.005336281,-0.030505693,-0.009609182,-0.03167984,0.013037473,-0.028733393,-0.028489701,0.011940863,-0.02301773,-0.0005753048,-0.03801581,0.024391262,-0.0063913525,0.03125892,0.018476214,0.014599311,-0.017335298,-0.028578317,-0.013325471,0.017412836,0.058042783,-0.01771191,0.017069452,-0.037439812,-0.010445486,-0.009382106,0.0350029,0.0027138325,0.014521773,-0.02319496,0.025631871,0.02096851,-0.013358702,0.0033507522,-0.03779427,-0.010860868,-0.032388758,-0.0010744561,-0.0044224393,0.04563669,-0.023350036,-0.004751976,-0.016925452,0.0037993654,0.0048433603,0.014123006,0.013325471,0.02117897,0.0033562907,0.018874982,-0.00048149755,-0.025831254,-0.016836839,0.017158067,-0.0053972034,-0.0119740935,-0.016980838,0.0011353788,-0.004447362,0.0059759696,-0.022774039,0.044994235,0.019295903,0.018132832,-0.008080575,-0.0007947652,-0.007836884,0.040740717,0.020625126,0.0015424538,-0.05795417,-0.026495866,0.0020270667,0.008806109,0.0258091,0.005455357,0.020924201,0.013724239,0.024391262,-0.006175353,0.008540264,0.0057212017,0.030239847,-0.00039703646,-0.020669434,-0.015850997,0.022319887,-0.002753986,-0.029708158,0.025188796,0.01746822,0.0066904277,0.042025633,-0.014078698,-0.0042895167,-0.0006777658,0.014687926,0.011819017,0.002951985,0.035468128,-0.00367752,0.008739648,0.003976595,-0.0007788422,-0.010351332,0.0033424445,0.019650362,-0.024524184,0.016770376,0.012239938,0.058131397,-0.003935057,-0.015684843,0.03114815,0.0364872,-0.02966385,0.019705746,-0.022342041,-0.0008778417,-0.0011118405,0.017423911,0.011940863,-0.008850417,0.0065076593,-0.027714321,-0.00038769035,-0.014588234,-0.011237482,0.021300815,-0.00076015,0.009132877,-0.03274322,0.018110678,0.023903878,0.0060756616,-0.02711617,-0.041183792,-0.0029409083,-0.00015429729,0.04319978,0.0040042875,0.000042749783,0.020713741,-0.018022062,0.01732422,0.021190047,0.0050648972,-0.004995667,-0.0038270575,0.0014143775,-0.018132832,0.011951939,-0.017745141,0.02379311,-0.021577736,0.0022306042,0.0077316533,0.0055135107,0.011763633,-0.017634373,-0.07434793,0.021799274,-0.00052995887,0.0129377805,-0.046965916,-0.0031236764,0.027249092,0.015551921,0.007753807,-0.038303807,-0.00058776623,-0.001852606,0.029220775,0.007216579,0.012472552,-0.0088725705,-0.010340256,0.020104514,0.009897181,-0.00795319,0.026429405,-0.02022636,-0.00975872,0.05157389,-0.02591987,0.03190138,-0.00795319,0.001110456,0.005012282,-0.0025933716,-0.041316714,-0.01611684,-0.009803027,0.0044667465,0.009924873,0.041781943,-0.007510116,0.015219616,0.006280584,0.020414665,-0.023128498,-0.011708248,-0.0005171512,0.048915446,0.015673768,0.025122335,0.025255257,0.008075036,0.021610968,-0.014411004,-0.032898296,-0.03856965,-0.014111929,-0.03376229,0.052947424,0.022231271,-0.0067125815,0.030771537,0.016039303,-0.0317463,-0.0031458302,-0.019794362,0.04023118,0.0051950505,0.0075599616,-0.0080971895,0.009210415,-0.002765063,-0.002708294,0.022474963,0.029464466,0.0039267493,0.03571182,0.015673768,0.003256599,0.08569064,0.05689079,0.0033895213,0.013990083,-0.0058818166,0.0022153733,0.0144220805,0.015773458,0.02319496,0.027448477,-0.03227799,-0.013923622,0.0024272185,0.034604132,0.05183974,-0.010334717,0.03198999,-0.049491443,-0.005494126,0.02361588,-0.009448567,0.0013596854,-0.028932776,0.044927772,0.0062528914,0.0042729015,-0.016737146,-0.000368652,0.037816424,0.012417168,0.020071283,-0.0029713695,-0.024878643,0.012084862,0.020026976,0.02973031,0.011586403,0.0104897935,-0.006042431,-0.0012655321,-0.0020353743,-0.0011450711,0.044218853,0.037905037,-0.0682335,-0.0200159,-0.023903878,-0.0013631469,0.01583992,-0.008363035,-0.026185714,-0.0622963,0.018863905,0.029708158,0.03227799,0.007061503,-0.013270087,0.0061365846,0.024657106,0.002453526,-0.04109518,-0.045902535,-0.0013188395,0.0018152216,0.00090622617,0.02973031,0.0012738397,-0.008102728,-0.005200589,-0.014067621,0.03221153,-0.068676576,0.006873196,0.019417748,-0.0047242837,0.024169724,0.016836839,-0.01845406,-0.01750145,0.020569742,-0.011497788,0.04503854,-0.00017368181,0.043177627,-0.026429405,-0.008961186,0.025122335,0.005613202,-0.00781473,0.0027373708,-0.0045941304,0.010284871,0.005006744,-0.022319887,0.070493184,-0.043089014,-0.021444814,-0.0072996556,0.0323223,0.054320958,-0.0492256,0.014111929,0.016714992,-0.0064688902,0.0070338105,0.012815936,0.03311983,-0.0037522886,-0.027869398,-0.0350029,-0.01945098,0.018753136,-0.045282234,0.0032012146,0.02159989,0.0057544326,0.03564536,0.022818346,0.0071113487,-0.0021489123,0.018764213,-0.013768545,-0.024346953,0.0037384427,-0.0037744425,0.0003215753,0.03245522,-0.022220196,0.034382597,-0.0032122915,-0.024214031,0.026030637,0.03690812,0.005433203,0.008878109,-0.023305729,-0.029508773,-0.01272732,0.0038132116,0.029021392,0.0020090668,-0.029508773,0.04384224,0.018365446,0.023837417,0.022087272,0.016814684,-0.0026750634,-0.01940667,-0.028489701,-0.009791951,-0.012195631,-0.018653445,0.04222502,0.009193799,0.02188789,0.0072885784,-0.013668854,0.016858991,0.035512436,-0.018409753,0.020259589,-0.0061033536,-0.007753807,0.007886729,0.006812273,0.008241189,-0.007870114,0.0018747598,-0.0020132207,-0.017767295,0.025609717,-0.026961094,-0.041272406,-0.023859572,-0.011719326,-0.04432962,-0.020237437,0.04344347,0.013668854,0.04370932,-0.004353209,-0.032831833,0.0050095133,0.015474384,-0.022297733,-0.014078698,0.043221936,-0.017490374,-0.0030627537,-0.03274322,-0.036974583,0.005314127,0.010273795,0.009454106,-0.028223857,0.03376229,-0.00035515206,-0.011326097,-0.0153968455,-0.024058955,-0.0049042827,0.00012894165,-0.02616356,0.027869398,-0.017789448,0.014123006,0.005297512,-0.0030876766,-0.0028439856,-0.019473132,-0.012705167,0.027935859,0.027891552,0.01106579,-0.0022721423,-0.024546338,-0.056536328,0.020049129,-0.031790607,-0.020658357,0.0029796772,-0.006302737,-0.016836839,-0.012483629,-0.032853987,-0.015363615,-0.04342132,0.009060877,-0.011171021,0.04461762,-0.0023842957,0.045370847,0.0034310597,-0.0086178025,-0.011874402,-0.021555584,-0.019506363,-0.009819643,-0.0057156635,0.058308627,0.010733484,-0.015352538,0.0052061277,-0.06725874,-0.01640484,0.040497027,0.058042783,0.012749474,0.0079088835,-0.011409173,-0.038746882,0.0004977667,-0.01421162,0.02503372,0.019240517,-0.027891552,0.0126830125,-0.0032898295,0.0038409038,-0.0021973734,0.02616356,0.070493184,0.015241769,0.028135242,0.0026750634,0.003425521,-0.0031458302,0.03863611,-0.023593727,-0.027670015,-0.017689757,0.047719143,-0.017401759,-0.014765464,0.03369583,-0.014200544,0.0058873547,0.00805842,-0.0008778417,-0.0032621373,0.034205366,-0.00046730533,-0.008141497,-0.024745721,-0.03376229,-0.03103738,-0.010329179,-0.03642074,0.009293491,-0.011215328,-0.018952519,0.0003973826,0.01509777,0.05507418,0.018852828,0.03708535,0.0051673586,-0.0030350615,-0.0012468399,-0.0053999727,0.010916253,-0.03564536,-0.02895493,-0.05954924,0.048428062,0.025055874,0.000482536,-0.026385097,-0.0039682877,0.0093267225,0.026983248,0.01750145,-0.000036086356,0.00039045955,0.050864972,-0.04288963,0.026074946,0.066992894,0.0068288883,0.009077492,-0.0076430384,-0.008473803,0.0087784175,0.0144220805,0.011796864,-0.005314127,-0.010750099,-0.003461521,0.04129456,0.0101021025,0.014843002,0.01845406,-0.023416497,-0.022508195,-0.015275,0.008579033,-0.043753624,0.031657685,0.027337708,-0.016183304,-0.0010349947,-0.0065630437,0.012505783,-0.04348778,-0.012505783,-0.022342041,0.004283978,0.03440475,0.0004631515,-0.009852873,-0.005937201,-0.025676178,0.0045664385,0.0016047611,0.0005500357,0.043354858,-0.0148762325,0.010484255,0.0047990526,-0.035224438,0.006911965,0.019351287,-0.0035307514,-0.028157396,0.011215328,-0.019594979,0.011409173,0.016703915,0.024346953,-0.025476795,-0.0056658173,0.009974719,0.01583992,0.031635534,0.007144579,0.0036581354,0.04971298,0.04076287,-0.022552501,0.026983248,-0.07638607,-0.021478046,0.0060978155,0.008811648,0.023239268,0.034914285,-0.03624351,-0.057112325,0.02485649,0.007216579,-0.03269891,0.0000014305817,0.027249092,0.0030738306,-0.02811309,0.001968913,0.061897535,-0.009664566,0.04497208,-0.015208539,0.008905801,-0.03981026,0.013292241,0.030417077,-0.03108169,0.012638705,0.008318727,-0.009426414,-0.04656715,-0.0054387418,0.0077759605,0.013524855,-0.035578895,-0.0044639776,0.0037799808,-0.021932196,0.026407251,-0.006175353,-0.0031015228,-0.02188789,0.043975163,0.022186965,-0.015574075,0.03644289,-0.02800232,-0.0010093795,-0.012173477,0.013380855,-0.033297062,0.019262671,-0.0047741295,0.0020589128,0.0018373753,-0.030417077,-0.03670874,-0.0075322697,0.016537763,-0.019007904,0.019428825,0.00071653485,0.017025145,0.012982088,0.009276876,0.012749474,-0.0144220805,-0.03185707,0.002075528,-0.006424583,0.0062251994,0.019572824,0.016748223,0.021843582,0.001527223,-0.012118093,-0.011475634,0.027913705,-0.0053584343,0.012971011,0.012649782,-0.020204205,0.0012101477,-0.019007904,0.002464603,-0.008828263,0.0039682877,-0.0106504075,-0.023926033,-0.019384518,-0.01750145,-0.011686095,-0.020636203,-0.006047969,-0.0042729015,-0.019594979,0.0044169007,-0.030129079,-0.002150297,-0.0002442103,-0.0032925988,-0.010766715,-0.033319216,0.031413995,-0.015374691,-0.0031735224,0.05826432,0.022319887,0.0075599616,-0.0038852112,0.022685423,0.039500106,-0.011148866,0.008285496,0.021134662,-0.00021426815,-0.005748894,-0.0022222965,-0.0038104423,-0.038370267,0.02301773,0.010229487,0.00975872,0.010722407,-0.010567331,0.02711617,-0.06894242,0.023505112,0.016426994,-0.036531508,-0.030572154,-0.0007490731,0.047143146,-0.008412881,-0.029353697,-0.001852606,-0.010788868,0.009570413,-0.0038436728,0.004200902,0.002050605,-0.005898432,0.009371029,0.013635623,0.022707578,-0.0054498184,-0.01640484,-0.021267585,-0.016216533,0.0037716732,-0.015452229,-0.0110380985,-0.0091218,-0.016925452,0.0089390315,0.021046048,0.026185714,0.0073938086,0.015275,-0.044440392,-0.032964755,-0.009575952,0.028556162,0.024634952,-0.020026976,-0.0016781454,0.028622625,0.0076984228,0.021433737,-0.040940102,0.0034282904,0.042756706,-0.026074946,0.010805484,0.009387645,0.013569162,0.03832596,0.013513777,0.0050925897,-0.011675018,-0.022175888,0.014123006,0.014278081,0.00016260495,0.0076208846,0.008235651,0.011364866,0.018686675,-0.00491536,0.002011836,0.007654115,-0.013945776,-0.04147179,-0.010406717,-0.01955067,0.0016753761,0.012771628,0.0093931835,-0.029442312,0.007997498,-0.040009644,0.013956852,0.026008483,-0.006596274,-0.046921607,-0.012561168,0.008108267,-0.029265083,0.0044362852,-0.008639956,0.00042230554,-0.023128498,-0.028090935,-0.007964267,-0.0098750265,0.016294071,0.016327303,-0.028445395,0.018343292,0.00031067152,-0.045769613,-0.04572531,0.008174728,-0.035379514,0.056979403,0.021555584,-0.013214703,0.020204205,-0.021201124,-0.011486711,-0.011796864,-0.0034061365,0.011918709,0.044218853,-0.022408502,0.018686675,0.0006068046,-0.021356199,0.0008709187,-0.0054608956,-0.0018955289,-0.002591987,0.009775335,0.037063196,0.0027913705,0.008673187,0.014787617,0.0077482685,0.033651523,-0.004300594,-0.010185179,-0.01562946,-0.017191298,-0.0024742952,-0.014111929,-0.025831254,-0.00022603731,0.027182631,-0.025676178,-0.002573987,0.0029298314,-0.000044913235,-0.022995576,-0.006684889,0.012749474,-0.031125996,0.0029713695,-0.0022596808,0.0057156635,-0.011929786,-0.009215954,0.0007947652,-0.008019651,-0.007903345,-0.015618383,-0.0011263789,0.009647951,-0.024014648,0.0058485856,0.017135913,0.022253426,-0.009974719,-0.009531644,0.005175666,0.0038021347,-0.039433647,-0.032122914,-0.005228281,0.009033185,0.0108110225,0.0076984228,0.0059704315,0.020713741,-0.023992494,0.019373441,-0.006812273,-0.014156236,0.0070559643,0.023084192,-0.002018759,0.009365491,-0.012107016,0.016770376,0.010899637,-0.010761176,0.018199293,-0.01835437,0.022796193,-0.014521773,-0.010312563,-0.013247933,0.026074946,-0.035224438,-0.00072830403,-0.046877302,0.042801015,0.009509491,0.014765464,-0.00063622755,-0.035889048,0.039721645,-0.035047207,0.04408593,0.025654024,0.01693653,0.011254097,-0.00625843,0.00862888,0.011940863,-0.051529586,0.040740717,-0.028334625,0.011054713,-0.013414086,0.032787528,-0.027426323,-0.0039405953,0.046124075,-0.017401759,-0.019849746,0.027492784,0.0011810709,0.00083630346,0.028866315,0.013569162,-0.00010142256,0.000117691714,0.0003293637,-0.0167593,0.005815355,-0.013569162,0.014123006,0.010301487,0.02266327,-0.024989411,0.010013488,0.016881146,0.017058374,-0.01788914,0.016991913,0.015607306,-0.011586403,-0.011531019,0.00505659,0.0036359816,-0.0057655093,0.028866315,0.0036249047,0.025742639,0.030572154,0.052194197,-0.016703915,-0.013679931,-0.021079278,-0.041959174,-0.015884228,-0.029176468,-0.027404169,-0.032831833,0.021799274,-0.0031319843,-0.008534726,-0.06358121,-0.018797444,-0.0051147435,-0.035756126,0.0071778097,0.027625706,-0.033917367,0.041493945,-0.0027207555,-0.0071390406,-0.021976504,0.022541424,0.0066738124,-0.0044362852,0.04034195,0.01767868,-0.003397829,-0.00562151,0.028689086,0.008196882,-0.027426323,0.020724818,0.0069673494,0.0246128,-0.012804858,0.04674438,0.018143909,0.007587654,0.0012440706,0.030328462,-0.022563579,-0.010733484,0.0036609045,-0.030417077,0.005687971,-0.022585731,0.016858991,-0.016604224,-0.028644778,0.0069064265,0.038702574,-0.0077981143,0.01456608,-0.015529768,0.007914421,-0.007360578,-0.023815265,0.012095938,0.012948858]},{"id":"interface-APIMessageReaction","type":"interface","source":"main","text":"Interface: APIMessageReaction\nProperties: count: number, emoji: APIReactionEmoji, me: boolean | null","meta":{"url":"/docs/typedefs/APIMessageReaction"},"embedding":[0.016669026,0.01852807,0.012096273,0.05963918,-0.011865452,-0.01845321,0.008328275,-0.004610183,0.03510976,0.019064574,-0.008727533,-0.035708647,0.010168605,0.017891753,0.0018528071,-0.0075484733,0.021697182,0.011522339,0.025627378,0.049233515,-0.023880625,0.013262855,0.031591296,0.047786202,0.030069126,-0.01046181,-0.043743715,0.016132522,-0.028047882,-0.035484064,0.0046444945,-0.029994264,0.045315795,0.0060075866,-0.0139241265,-0.008103692,-0.03169111,0.025515087,-0.0347105,-0.028621815,-0.02346889,-0.0066314274,-0.007710672,0.009706963,-0.09282751,0.02934547,0.012732591,0.04391839,0.007592142,0.02762367,-0.038728036,0.04164761,-0.018166244,0.044342604,-0.0037212102,-0.049508005,0.0029304922,0.0012476816,-0.042570896,-0.005221547,-0.02308211,-0.016207384,0.005461726,-0.01570831,-0.022383407,-0.0061885007,-0.045265887,0.02288248,0.049882308,0.012913504,0.04831023,0.040649466,-0.028272465,0.028097788,-0.017991569,0.00034818114,-0.00037566913,-0.02029978,-0.01367459,-0.001979135,-0.021647274,0.054748267,-0.027948067,-0.077006906,-0.006930871,0.0063881297,-0.035908274,-0.058092054,-0.062384076,0.007018209,-0.014198616,0.032888886,-0.07116775,-0.01790423,0.008122407,-0.05399966,-0.010767492,0.0139366025,-0.00003175252,0.040524695,0.022171302,-0.053500585,-0.054798175,0.012096273,-0.010923452,0.033562634,-0.012801213,-0.007018209,-0.047910973,0.01849064,-0.010505479,0.008690102,-0.0058890567,-0.0054897987,-0.015383913,-0.02797302,-0.0044417465,0.0042889053,-0.0017093237,-0.051554203,-0.050830547,-0.007330129,0.077006906,0.0035870844,-0.0065503283,-0.01665655,0.004039369,0.0019073932,-0.018765131,0.007723149,0.012470577,0.00478174,-0.005383746,0.008022592,-0.015633449,0.0006409964,0.03169111,0.01081116,-0.027798345,0.016032709,0.047436852,0.022932388,-0.004731832,0.0047661434,0.00060590537,-0.02295734,-0.051154945,0.014834934,0.01535896,-0.01782937,0.013562298,0.02154746,-0.049782492,-0.0045072497,0.0242175,-0.0017576714,0.012639014,0.0020555553,-0.02436722,-0.0016906084,0.013063226,-0.09182936,-0.012083796,-0.027399087,-0.027473947,0.038478497,-0.011179226,-0.0020290422,-0.03478536,0.021971673,0.03209037,-0.0054648453,-0.06318259,-0.048135553,-0.069520816,-0.021871857,0.015259146,0.018228628,-0.026825154,0.00917046,0.059140105,0.04316978,-0.071916364,-0.05399966,0.024853816,-0.030867642,-0.024192546,0.058241773,0.013375146,-0.040075533,0.027074689,0.055846225,0.009925307,-0.01834092,0.049308375,-0.06577777,0.024317313,-0.004173495,-0.048360135,-0.051254757,0.006331984,0.015458775,0.08224717,-0.021996627,-0.010000167,-0.03016894,-0.0036650645,-0.046713196,-0.012121227,0.007192884,0.06767425,-0.034735456,-0.0078167245,-0.024978586,-0.041547794,-0.040449835,-0.0336874,0.014485583,-0.05629539,0.041522842,-0.03496004,0.009451188,0.103607476,-0.018989714,0.009763109,0.059389643,0.015408867,0.023169447,-0.02605159,-0.0064006066,-0.018253582,0.03166616,-0.023456413,-0.045989543,0.01900219,-0.024766479,0.044617094,0.021709658,0.022533128,-0.028846398,0.02064913,-0.014360814,0.016856179,0.034186475,-0.002707469,0.027199458,0.018440733,0.023443937,-0.023094585,0.01391165,0.035708647,0.028047882,0.036157813,0.03428629,0.0032938793,-0.028971165,-0.033487774,0.07870375,0.044342604,0.0147226425,0.013637159,0.0028322372,-0.03099241,-0.015059517,-0.023656042,-0.018615408,0.019875567,0.039801043,-0.015733264,0.02264542,-0.0018917972,-0.0047755013,0.06273343,0.038403638,0.011010789,0.037355587,0.014298431,0.024454558,-0.016893608,0.013899173,-0.005661355,-0.028197603,0.01814129,0.015558589,-0.0018387707,0.008559096,0.045315795,-0.0026154525,0.004482296,-0.0011158952,0.04494149,0.0055708983,0.041098632,-0.054398917,0.00018500778,0.0436439,0.033961892,-0.022944864,0.003318833,0.02652571,0.021048388,-0.038029335,0.031291854,-0.036731746,0.01962603,0.024317313,0.011828021,0.0129509345,0.0077980096,0.006029421,0.025652332,-0.025527565,-0.038154103,-0.045615237,-0.064430274,-0.012707637,0.010093744,0.020736467,0.0070618778,0.017105713,-0.012988365,-0.00090690854,0.004588349,-0.004117349,-0.04658843,-0.03071792,0.055347152,-0.034835268,0.06088686,0.02096105,0.019987859,-0.00044097746,0.009968976,0.029744728,0.0673249,-0.010050075,0.0036057997,0.024067776,-0.005589613,0.047711343,0.06163547,-0.030368568,-0.035783507,0.005492918,0.03268926,-0.036931373,-0.047337037,0.0004000379,0.01821615,-0.0049376995,-0.024778957,0.0032876409,-0.020274825,-0.03408666,0.018253582,-0.03897757,-0.00022906653,-0.0268002,0.021722136,0.035134714,-0.033013653,0.006288315,0.0041235876,0.020025289,-0.0054367725,-0.020549316,-0.040424883,-0.03318833,0.050181754,-0.018877422,-0.018927328,-0.018877422,0.0007957869,-0.02260799,-0.015209238,0.0047068787,-0.038752988,-0.003534058,-0.0066813347,0.027748438,0.035958182,0.013961556,-0.028596861,-0.0047099977,-0.004079919,-0.020374639,-0.011017028,-0.009900353,-0.014211093,0.047262177,0.09532287,-0.014834934,-0.040150393,-0.019264203,0.01261406,0.045191027,-0.043943346,0.025627378,0.0016375821,-0.005751812,-0.012888551,-0.004157899,0.0066189505,0.038129147,0.0010737859,0.0046850443,-0.044093065,0.032314952,0.0563453,0.015446298,0.054798175,-0.025477657,0.036582023,0.051454388,0.014211093,-0.02797302,0.0022427076,-0.004316978,0.042446125,0.0026107735,-0.026425896,-0.03925206,-0.011497386,-0.046912827,0.013237901,-0.0009997048,0.018640362,-0.0028774657,0.032664303,-0.060437694,-0.025502611,0.0028072835,0.0666262,-0.027548809,0.05629539,-0.046064403,0.023443937,0.009058168,-0.03668184,-0.0051872362,0.024491988,-0.030742874,0.006943348,-0.00144965,-0.028472094,-0.0040767994,-0.03306356,-0.057143815,0.021971673,-0.023169447,-0.07885347,-0.008677625,-0.014760072,0.042321358,-0.030243801,-0.025777102,0.023319168,0.04481672,0.036182765,0.0021616083,0.0039083622,-0.011123081,-0.008166076,0.051454388,0.006266481,0.010330804,-0.029595006,-0.002127297,0.009214128,0.011622153,-0.0542991,-0.050630916,0.0329887,0.047112454,-0.0015151533,-0.043194734,0.040075533,-0.024454558,0.021485077,0.02797302,0.00474119,0.02597673,0.026425896,-0.041947056,0.0075484733,0.077855326,0.0064193215,-0.019888043,0.00039048534,0.018852469,0.02817265,0.023493843,-0.0072739837,-0.013512392,0.01453549,-0.0068934406,0.01457292,-0.034510873,-0.0016796913,-0.033512726,0.013275332,-0.028946212,-0.03897757,-0.03381217,0.040050577,0.021559937,0.028022928,-0.030518292,-0.009039453,0.002691873,-0.0071367384,-0.013599729,-0.015695835,-0.037081096,-0.02515326,-0.004956415,-0.021809474,0.010524194,-0.015895464,-0.0015806566,0.03361254,-0.003624515,0.034261335,0.015071993,-0.0015307493,-0.0250784,0.004713117,-0.030668013,-0.034810316,-0.004482296,0.028022928,0.00053689297,0.020087672,0.0066002356,0.0050437525,0.010717585,-0.034735456,-0.010848591,0.031241946,-0.01830349,0.02554004,-0.015221715,0.02264542,-0.033961892,-0.027174504,0.04351913,-0.021260494,0.030892596,0.006335103,0.009239082,0.003378098,0.0049345805,0.054049566,-0.008565334,0.0041017532,0.011697015,-0.0038272631,-0.010511717,0.038852803,0.020524362,-0.01625729,-0.026351035,0.0024220617,0.0025717835,-0.046338893,0.0009685128,0.012863597,0.017068284,0.00077044335,0.012339571,-0.004638256,0.034336198,-0.023481367,-0.019975381,-0.00802883,0.024741525,-0.005433653,0.009332658,0.013200471,-0.0088523,0.000266497,0.015284099,0.014011464,0.028522,-0.009650817,0.03166616,-0.008309559,0.005783004,-0.007298937,0.0340118,0.004157899,-0.0059888717,0.031117178,0.020187488,-0.030692967,0.017879277,-0.0121524185,0.002961684,-0.028272465,0.016619118,0.024167592,0.014547967,-0.024704095,-0.018602932,0.018640362,0.059689086,-0.01669398,-0.023493843,-0.049857356,-0.0061136396,-0.04097386,0.02358118,-0.009451188,-0.040899,-0.0035839654,-0.0064006066,0.010493002,0.015820602,0.021722136,-0.021559937,-0.0491337,0.012196087,-0.019052098,0.010624008,-0.0051061367,0.029395377,-0.0044573424,-0.026949922,0.020636654,0.007804248,0.006743719,0.0056831893,-0.007486089,-0.01649435,0.0037991903,-0.0048721964,0.022932388,0.0032564488,0.012065081,0.0018247343,0.029445285,-0.0055771368,0.03800438,0.011547293,0.012464339,0.029170794,0.017467542,-0.016756363,0.022183778,0.019388972,-0.015895464,-0.041472934,-0.018640362,-0.017430112,-0.02123554,-0.047586575,-0.01665655,0.05375012,-0.00035285993,0.00038502674,0.010012644,0.022820096,-0.0091829365,-0.0007419806,-0.02460428,0.015720788,0.0111605115,-0.008309559,0.020586746,0.007972685,0.018553024,0.018553024,0.00540558,0.0058329115,0.01966346,-0.019301634,0.0056395205,-0.017779462,-0.03403675,-0.020349687,0.034885176,-0.018740177,-0.05504771,-0.01398651,0.01187169,-0.015296576,0.01457292,0.00069753197,-0.011497386,-0.01570831,-0.014972178,0.0045353225,0.015521158,-0.010087505,0.0037586407,0.007005732,0.025278028,0.00478174,0.0127513055,0.009376327,-0.015096947,0.007036924,-0.023593659,0.020199964,-0.004847243,0.010393187,0.029445285,0.016282244,0.03960141,0.023593659,-0.014360814,0.006637666,-0.0072115995,0.03505985,-0.009469903,-0.0007840899,0.008166076,0.010355757,0.009276512,0.025477657,0.029520145,0.013212948,0.008939639,0.023119539,0.004148541,0.019376494,0.049582865,0.047985833,-0.027997974,0.015720788,-0.011541055,0.030119034,-0.011846736,-0.005985752,0.00033589927,0.02041207,-0.003537177,0.028072836,-0.020661607,0.004940819,-0.0032938793,0.0043356935,0.022121394,-0.015683357,-0.0501568,0.010979597,-0.035883322,0.029120887,-0.030742874,0.013387623,0.0033219522,0.00842185,-0.023880625,0.049258467,-0.007879109,0.005418057,-0.009694486,-0.01480998,-0.015733264,0.0012367644,0.0115535315,0.040050577,-0.017929183,0.014148708,0.013974033,-0.019151911,-0.00058290124,-0.0137244975,-0.002303532,0.013612206,-0.010929691,-0.007822963,-0.018752653,-0.026775246,0.030318663,-0.041697517,0.006606474,-0.009607148,-0.031591296,0.027923113,-0.020424547,-0.0069246325,-0.0340118,-0.032938793,-0.0012430027,0.015658403,-0.007972685,-0.03758017,0.02174709,0.0019775752,0.014385768,0.0068123415,0.005474203,-0.05819187,0.00013558789,0.049557913,0.020723991,-0.0687223,0.02079885,0.030119034,-0.017342774,-0.0026793962,-0.000619162,-0.017467542,0.024005393,-0.0016609761,-0.013512392,0.046239078,-0.0007037704,0.018228628,-0.02927061,0.024691617,-0.008945877,0.0013420375,-0.014872364,0.02605159,-0.0034030515,0.0022629823,0.00067257835,-0.02570224,0.06278334,-0.015246669,0.029046027,-0.013824312,0.057742704,0.036457255,-0.0042046867,0.010043836,0.01903962,0.016394535,-0.0015588221,0.013637159,0.020000335,0.018228628,-0.011453717,-0.029794635,-0.023493843,0.038328778,-0.017267913,0.018428257,-0.0129509345,-0.0059420834,-0.03139167,-0.02029978,-0.004756786,0.0022629823,0.007935255,-0.028522,-0.012221041,0.030643059,-0.006500421,-0.024117684,0.037829705,-0.052851792,0.014597874,-0.009020737,-0.045465514,0.018415779,0.041797332,0.0017576714,-0.0028977403,0.049283423,-0.005555302,-0.0042452365,0.014710166,0.0039520315,0.023456413,-0.014622828,-0.0061729043,0.0041048722,0.018365873,-0.011746922,0.024205022,0.00055053947,-0.0006558126,-0.013300286,-0.0018855587,0.014435676,-0.009351374,0.022283593,-0.005817315,0.0072552683,0.0419221,0.0013693304,-0.004837885,0.018415779,-0.0024314194,0.026276173,-0.05105513,-0.010817399,0.017979091,0.017068284,0.022233685,0.0057019047,-0.010586578,0.013998987,-0.0119527895,0.03922711,-0.008727533,-0.026600571,-0.05469836,-0.018041475,-0.049283423,0.007904063,0.029445285,0.023943009,0.04376867,-0.041423026,-0.010667677,-0.0067998646,0.025215644,-0.008278367,0.010399425,0.015508682,0.028397232,0.02844714,0.0089833075,-0.014972178,0.002953886,0.0017186813,-0.02339403,0.006381891,0.013499915,0.013050749,0.018315965,0.015645927,-0.044991396,0.011709492,-0.03765503,-0.00854038,-0.012021412,0.024629233,0.0027059093,0.030293709,-0.016606642,-0.028596861,-0.019538693,0.014086325,-0.015658403,0.009282751,-0.02961996,-0.04289529,-0.014884841,-0.014934748,0.032614395,-0.0010153009,-0.054748267,0.03668184,-0.00006404115,0.018977236,0.017954137,-0.012483054,0.0075796656,-0.013599729,-0.05250244,-0.010567863,0.05983881,-0.01480998,0.030692967,0.016294722,-0.046288986,-0.0009989251,-0.0481106,-0.03091755,-0.018565502,-0.0018528071,0.023656042,0.054498732,0.009157983,0.0018652839,-0.04067442,0.0013170838,0.011416286,0.046139263,-0.007617096,-0.0059171296,-0.010867306,-0.008471758,-0.005202832,0.03079278,0.0011275922,0.045041304,-0.007972685,0.048983976,-0.028422186,-0.017504971,0.0019292276,0.007036924,0.039526552,0.028047882,0.022171302,-0.0038896473,0.008914685,-0.014398245,0.005673832,-0.03381217,-0.022545606,0.0123582855,0.010418141,0.0099752145,-0.036781654,0.012601583,0.0055053947,-0.0027417801,0.030867642,-0.03251458,0.030568197,-0.0070805927,0.034585733,-0.017467542,0.00017779462,0.02762367,0.0095821945,-0.04756162,-0.034560777,-0.014647782,0.016294722,0.00791654,0.008278367,-0.0099876905,0.032938793,-0.017529925,0.049632773,0.007629573,-0.020237396,-0.018864945,-0.008084976,-0.008453042,0.018752653,-0.039052434,-0.02358118,0.04489158,-0.0076732417,0.0012570391,-0.013225424,0.024641711,-0.008534142,0.024192546,-0.0007205361,-0.029919405,-0.011840498,-0.024317313,-0.046363845,0.024342267,0.04137312,0.007829201,-0.010536671,-0.01104822,0.012738829,0.0069371094,0.033787217,0.025165737,-0.041672565,-0.02158489,-0.01665655,-0.013150563,0.013499915,0.018889898,0.0003310255,0.006225931,0.011347664,0.008060023,-0.005046872,-0.00059459824,0.04124835,0.026850106,-0.030193893,-0.016157476,0.006010706,0.02041207,0.00462266,-0.0030537006,0.036107905,-0.009101837,-0.0005427415,-0.0048160506,0.012383239,-0.013262855,-0.0336874,-0.026775246,0.0021304162,-0.013175517,0.034061708,-0.0034311244,-0.022994772,0.02632608,0.01653178,0.0005821214,0.023181923,0.020848759,-0.04516607,0.020224918,-0.023531275,-0.036806606,-0.03922711,0.045615237,0.0016625357,-0.021684706,0.029370423,-0.005870342,0.0029523266,0.01089226,0.008197268,0.024354745,0.0022785785,0.0099876905,-0.0059015336,-0.05230281,-0.0347105,-0.004051846,-0.027174504,0.002013446,0.0017202409,-0.0024111446,-0.062234357,0.0010262181,0.002139774,-0.026101498,-0.0019619793,-0.021796998,0.03306356,-0.019538693,0.04673815,0.053700212,-0.00454468,0.008677625,0.007049401,-0.0036276341,-0.018590456,-0.006107401,-0.0062508844,-0.028696675,-0.001277314,-0.007667003,-0.0006983118,-0.003036545,-0.027773391,0.014735119,0.0029492073,-0.009120552,-0.013100657,0.0059701563,-0.0035059853,0.036057997,-0.018403303,-0.011522339,-0.032963745,0.051154945,-0.017417634,0.010748777,0.032190185,0.00223335,0.016082615,0.00783544,0.026949922,-0.018939806,-0.0125579145,0.0093825655,-0.01391165,-0.0035153427,-0.0055927327,-0.035883322,0.012127465,0.0026388464,0.005218428,0.029370423,-0.0070805927,0.0062321695,0.031167084,0.025827007,0.03663193,-0.01782937,-0.030293709,0.03149148,0.023606135,0.014211093,0.03767998,-0.001735837,0.03139167,-0.025415273,0.005168521,-0.0021834427,0.0033936938,0.004345051,0.008016354,-0.003624515,-0.05038138,0.028022928,-0.020624176,-0.0016313436,0.0041641374,-0.010730062,-0.02762367,-0.037405495,-0.02308211,-0.017367728,-0.015571066,-0.008677625,0.0035153427,-0.005156044,-0.010143651,0.029669868,0.008471758,0.008958354,0.004822289,0.000050638326,-0.0103744725,-0.020287301,0.07391266,-0.0026700385,0.004385601,0.032739162,0.03169111,0.018428257,-0.019102005,0.015209238,0.050481196,0.0024782075,-0.031092225,0.021297924,0.0028961808,-0.0022894957,0.019151911,-0.0085965255,-0.016419489,0.008128645,0.028472094,0.0073488443,0.005049991,0.013275332,0.03211532,-0.01731782,0.032414768,0.024192546,-0.018078906,-0.027224412,-0.00948238,0.0036151572,0.0029086575,0.002609214,-0.008821108,0.015608496,0.0071866456,0.0080101155,0.031915694,0.0032689257,-0.019226773,-0.019364018,0.019426402,0.025827007,-0.009856684,-0.0147226425,0.0011260326,-0.0015151533,-0.004806693,0.016419489,-0.0032782832,0.012395716,-0.005520991,0.029694822,-0.0036120382,-0.013350192,-0.030268755,0.016232338,-0.058241773,-0.03216523,-0.023281738,-0.020374639,0.028347325,-0.031716064,-0.018378349,-0.0129509345,0.026725339,0.038503453,0.011073174,0.010206035,0.03381217,0.00053728285,0.035234526,0.03718091,-0.0071616923,0.006930871,-0.007180407,-0.037131004,0.0035902036,-0.027473947,0.012470577,0.020387117,-0.012046365,0.024616757,-0.018790085,0.011041982,0.019563647,-0.008215983,-0.007972685,-0.020012813,0.013687067,-0.043893438,-0.029445285,-0.006612712,0.0029710417,0.025103353,-0.0008141122,-0.033986844,0.034411058,-0.018278535,-0.00842185,-0.0033874554,-0.015146854,-0.026600571,-0.03174102,0.037131004,-0.019102005,0.00084842346,0.00053104444,-0.033986844,-0.013250378,-0.019301634,0.010143651,-0.029170794,-0.011191703,0.03525948,-0.027199458,-0.0014714844,0.02244579,-0.037205864,-0.03660698,-0.004176614,0.0034404818,0.013362669,0.0060606133,0.007049401,-0.0007903283,-0.04529084,-0.022558082,-0.017654695,0.001426256,0.0091891745,0.0038927665,-0.026750293,-0.018640362,-0.013774404,-0.00936385,0.013362669,-0.015845556,0.039875902,0.011391332,-0.023693472,0.03154139,-0.019888043,-0.010511717,-0.01935154,0.008022592,-0.018989714,-0.0070805927,0.0044136737,-0.018041475,0.0007645949,0.026201313,0.015159331,-0.020474454,0.013013318,0.0051466865,-0.007355083,0.003796071,-0.008839824,0.019239249,-0.027598716,0.01285112,0.025851961,-0.049657725,-0.0020898667,-0.017143145,0.0017186813,0.010599054,0.0071055465,-0.0020836282,0.013038272,-0.0061292355,-0.011472432,0.004238998,0.021634798,0.0049314615,-0.02308211,-0.012570391,0.0023549988,0.018715223,0.010162367,-0.016481873,-0.024205022,-0.020886188,-0.003964508,-0.0029382901,-0.0011774994,0.005062468,0.0014847411,-0.001246122,0.016594164,-0.031291854,0.02797302,0.0127450675,0.003424886,-0.007467374,0.028671723,-0.016993422,0.004713117,-0.0030022338,-0.02240836,-0.0077481023,0.0040861573,0.023493843,-0.009220366,-0.0030708562,0.015508682,0.0016578569,0.008496711,0.025727194,-0.029220702,0.009862923,-0.050331473,0.035633784,-0.0012663967,-0.021385262,0.037555214,-0.05325105,-0.0045353225,-0.050531104,-0.007723149,0.04289529,0.018041475,0.0028104028,-0.021385262,0.0037524023,-0.00091782573,-0.05365031,0.03660698,-0.009900353,-0.0088523,-0.0029414094,-0.0011041982,-0.0026622405,0.016120046,0.047037594,-0.032963745,-0.03403675,0.019176865,0.013949079,0.024778957,-0.0099876905,0.0063538183,0.009282751,0.011272803,0.018977236,-0.024467036,0.009763109,-0.012651491,0.027848253,-0.0063007916,-0.00018559264,-0.03436115,0.01049924,-0.01653178,0.038852803,-0.021734612,0.017292866,0.03695633,0.013587252,-0.02401787,0.022221208,-0.0023721545,-0.012913504,-0.015146854,0.023967963,0.010917214,0.03079278,0.018677793,0.0064193215,-0.0054991567,-0.005099898,-0.014984655,-0.023481367,0.012202325,0.003005353,-0.018702747,0.00724903,0.007005732,-0.018602932,-0.034535825,0.003920839,-0.0274989,-0.02617636,0.032215137,0.013150563,0.037829705,-0.03436115,0.0044854153,-0.016444443,0.000025441006,0.022395885,0.012595345,-0.00239087,0.0063694143,-0.013836788,0.005296408,-0.031017363,0.011909121,-0.033213284,-0.010237227,-0.0426208,0.011927836,0.007298937,-0.009569718,0.0055708983,-0.006612712,0.005078064,0.02522812,0.003456078,-0.0059763948,0.007592142,0.01308818,-0.030418476,-0.014834934,0.0033157137,-0.025627378,-0.02617636,0.0053993417,-0.040699374,0.0354092,-0.04643871,-0.011653346,0.0056395205,0.022558082,0.022433314,-0.02257056,0.0030786542,0.053201143]},{"id":"interface-APIMessageReference","type":"interface","source":"main","text":"Interface: APIMessageReference\nDescription: Reply/forward reference from GET /channels/{id}/messages (type 0 = reply)\nProperties: channel_id: string, guild_id: string | null, message_id: string, type: number","meta":{"url":"/docs/typedefs/APIMessageReference"},"embedding":[-0.00487784,-0.004088411,0.0060384395,0.044208024,-0.025461162,0.004733804,-0.014447936,0.045293834,0.018181795,0.003456868,-0.011135104,-0.018957375,0.008060485,0.03159932,0.003193725,-0.029649291,-0.010758393,-0.011201582,0.0135394,0.06820667,0.015744261,0.027544146,-0.006088298,0.05566444,-0.062711135,-0.025505481,-0.02100712,0.024707742,-0.01809316,-0.01768321,0.040042054,-0.034457885,0.045338154,0.034989707,-0.024641264,0.03275161,0.006154776,0.009644884,-0.026458336,-0.00787767,0.010597738,0.04555975,0.030158957,0.0005280172,-0.049016617,0.010664216,-0.023378178,0.04773137,0.035344258,0.010564499,-0.019411644,0.024619104,0.00061492366,0.07037829,0.004055172,-0.008564612,-0.0056589595,-0.0032214243,0.0042352173,0.0051437533,-0.042302314,-0.045692705,-0.029804407,0.0018073769,-0.038513057,0.024729902,-0.04737682,0.07148626,0.032840244,0.012597625,0.028762914,0.0068250983,-0.012697342,-0.024663424,-0.036607347,0.004573148,-0.0071464097,-0.010054832,0.03494539,-0.044917125,-0.0053127185,0.027189596,-0.059032667,-0.0360312,-0.004429112,0.005082815,0.025306046,-0.023422496,-0.008215602,0.014026906,-0.039731823,-0.031422045,-0.04325517,0.0009701667,0.022613678,-0.07423402,-0.034036852,-0.020586092,-0.004478971,0.017095985,0.06466116,-0.011046466,-0.07667156,0.009124137,0.012464669,-0.01578858,0.0015013,0.022669077,-0.051409833,-0.00043660964,-0.052074615,-0.00976122,-0.006271113,0.00599966,-0.026613452,0.030557826,-0.023577612,-0.05597467,0.010957829,0.005600791,-0.04360972,0.03040271,0.06483843,0.009694742,0.0063652904,-0.02293499,0.0067697,0.0038169585,-0.050922323,0.007982927,0.066345274,0.019888071,-0.016630637,0.028075973,0.0017408987,0.02590435,0.005866704,-0.029050987,-0.040751155,-0.07777953,0.005301639,-0.0071519497,-0.00675308,0.04052956,0.024286713,0.019611077,-0.043831315,-0.0008572922,0.052429166,-0.0014237422,-0.041925605,0.035189144,-0.051631425,-0.011445335,0.006121537,0.018469868,-0.000050507875,-0.013317806,-0.023533294,-0.01050356,-0.027100958,-0.058367886,-0.010653136,-0.0061326167,-0.030136798,0.0071353302,0.0002570838,0.01573318,-0.018525267,0.017417297,-0.05606331,0.008054946,-0.083540976,-0.042390954,-0.02176054,-0.043343805,0.0002809744,-0.030668624,-0.030225435,0.000115211624,0.046401806,0.00067274587,-0.019411644,-0.07972956,-0.0017630581,0.04578134,-0.049459804,-0.012653023,-0.0038778968,-0.03266297,-0.01052018,0.046490442,0.021749461,0.018248275,-0.0006537026,0.016320406,0.035543695,0.0002215941,-0.0042961556,-0.049770035,0.014736008,-0.011029846,0.07263855,-0.0037338606,-0.034613,-0.019478122,0.015367551,-0.01542295,-0.030934537,-0.0018890897,0.031843074,-0.03372662,0.0073403046,-0.02927258,-0.040352285,-0.016375804,-0.035233464,0.027898697,-0.061204292,-0.048617747,-0.048972297,-0.0043820236,0.066522546,0.012154437,0.015057319,0.027366871,-0.013594798,0.0044595813,-0.04245743,-0.015267834,0.00081366586,0.013162689,0.013727754,-0.073037416,-0.03117829,0.036518708,0.00789983,0.037050534,0.008935782,-0.059121307,-0.005110514,-0.021306273,0.0052545504,0.018979535,-0.021128997,-0.018868739,0.034059014,-0.017129224,0.014436856,0.026015148,0.05402464,0.045648385,0.011722328,0.008459355,0.010082532,-0.03202035,0.014060146,0.060317915,0.035964724,-0.02816461,0.0518087,-0.02814245,-0.01649768,0.03151068,-0.0041521196,0.014957602,0.009833238,0.048706383,-0.014215262,0.023644092,-0.02515093,-0.0007215658,0.07569654,0.014835726,-0.015500507,0.013262407,0.01049248,-0.015267834,0.01502408,-0.02597083,-0.008741887,-0.030757261,0.013871791,0.026369698,-0.015589145,0.024574786,0.030225435,0.0073458445,0.017184623,0.017871564,-0.023178743,0.0262589,0.039155677,-0.062267944,0.001614867,0.043033574,0.055354208,0.015855057,0.0562849,0.0151570365,0.053182583,-0.006664443,0.027610626,-0.0548667,0.008520293,0.011456415,-0.00527671,-0.028895872,0.023821367,-0.07844431,0.039155677,-0.0027145278,-0.072948776,-0.009905256,-0.06045087,0.0016037873,0.028098132,-0.0025275578,-0.0038834366,0.0072461274,0.009511927,0.02366625,0.029715769,0.008808366,-0.014215262,-0.0006595887,0.004958168,-0.031333406,0.029250422,0.025837872,0.052783716,-0.03044703,0.0255498,-0.004462351,0.025815712,-0.002707603,-0.03146636,0.027943017,0.023887845,-0.012121198,0.07777953,0.00976676,-0.023954323,-0.019389484,-0.015899377,-0.021383831,-0.055841714,-0.0030496889,-0.004168739,0.011866365,-0.038801126,-0.012143357,0.0035925943,-0.0624009,0.0041548894,-0.027876537,0.021948896,-0.007113171,-0.0034651777,0.030779421,-0.04290062,-0.035876084,0.01809316,0.030336233,0.0045759184,-0.010852572,-0.013317806,-0.015589145,-0.033084,-0.028253248,0.011611531,-0.010243188,-0.041216504,-0.01618745,-0.012353871,0.0010851186,-0.025616279,-0.020442056,-0.011977161,0.039000563,0.024109438,0.00751204,-0.013594798,-0.009894176,0.023511134,-0.0013565714,0.0062544937,0.009700282,-0.022979308,0.023865685,0.023001468,-0.023444656,-0.031820912,-0.028430523,0.01993239,0.03558801,-0.0020982192,-0.017550252,0.008115884,-0.0049830973,0.007318145,0.014292819,-0.022669077,0.013561559,-0.04325517,-0.008293159,-0.036984056,-0.0010449546,0.044629052,0.006503787,-0.005800226,-0.041881286,0.008054946,0.053138267,0.015910456,-0.05225189,0.0016065573,-0.011013227,0.039554548,0.012243074,0.02061933,-0.011689089,-0.022104012,0.022259127,0.026923684,0.0119217625,0.009511927,-0.0011654465,0.0142595805,-0.06492707,-0.06944759,0.033305593,0.06373046,-0.013882871,0.032086827,-0.015345392,0.048307516,-0.035432898,0.0010221028,0.0120104,0.011678009,-0.031355567,-0.021705143,0.01731758,0.01278598,0.0015580836,0.0240208,-0.016453363,0.019112492,-0.0064373086,-0.0798182,-0.00752312,-0.022447482,0.015899377,-0.03301752,-0.019311925,0.009201695,0.051631425,-0.049371164,0.020209381,-0.016796833,-0.020962803,0.029494176,0.035100505,-0.01994347,-0.009833238,-0.03416981,0.0038862065,-0.039931256,-0.012918936,0.01688547,-0.03228626,0.044185866,0.0060052,-0.017140305,0.007118711,0.0052240808,-0.004836291,0.04542679,0.028364046,0.009955115,-0.006237874,-0.0064483886,-0.032153305,-0.020109665,0.07760225,0.009938495,-0.029339058,-0.005501074,0.03607552,-0.03146636,-0.009844318,0.010475861,-0.008941322,-0.00032408137,-0.033239115,-0.005232391,0.0018115318,0.021405991,-0.0028364046,-0.037560202,0.035876084,-0.025261728,0.027699264,0.054733742,-0.0022076312,-0.037294287,-0.041216504,-0.0015719332,-0.042656865,-0.000884299,0.011334538,-0.009628264,-0.0049304687,-0.0133842835,0.006725381,-0.060052004,-0.029671451,-0.014702769,0.014314979,0.0037532502,0.018591745,0.027943017,0.0062821927,0.025328206,0.0044512716,-0.015500507,-0.031998187,0.0016120971,0.008586772,0.031001015,0.0062544937,0.021505708,0.0098609375,0.008791746,0.004722724,-0.032818086,-0.01311837,0.0316658,-0.00069144287,-0.009467608,0.005376427,-0.00055640895,0.018946296,-0.021572186,0.008509213,-0.051365513,0.021317353,0.007174109,0.047110908,-0.0041188803,-0.024596946,0.046667717,0.012941096,0.03869033,0.009079819,-0.009196156,-0.035100505,0.040640358,0.016818993,-0.015179196,-0.026879365,-0.011533973,0.013007574,-0.041947763,-0.005562012,-0.0062932726,0.028873712,-0.0035150365,-0.022713395,0.0034956469,0.035610173,0.008808366,0.00097224413,0.013838552,0.022259127,-0.05296099,0.038801126,0.0009784765,-0.008071565,0.013860711,-0.02373273,0.039665345,0.012907856,0.024198076,-0.008680949,-0.018780101,-0.030225435,0.0016799603,0.035765287,0.0006620124,0.012309552,-0.03188739,-0.02142815,-0.02295715,0.011822046,-0.027300393,0.014724928,0.004312775,0.022713395,0.009506387,0.0548667,-0.035122667,-0.020818766,0.026480496,0.05788038,-0.030513508,-0.01694087,-0.016409043,-0.0052850195,-0.013162689,0.01848095,-0.046933632,-0.0065370263,-0.010808253,0.023976482,0.043764837,-0.008060485,0.02969361,0.022680156,-0.009977275,0.01503516,0.030779421,0.010309665,-0.012486828,0.016674956,-0.020630412,-0.02590435,0.035831768,-0.03687326,0.034103334,-0.026480496,0.012442509,-0.005794686,-0.030269755,0.014802486,0.0068971165,-0.00063950673,-0.006049519,0.006154776,0.016054492,0.010581118,0.02623674,0.0010761163,0.019998867,-0.03862385,0.008869304,-0.013107291,-0.010708535,0.003226964,-0.005600791,-0.0047642733,0.0038862065,-0.002218711,0.0020608252,-0.07246127,-0.032773767,0.059653133,0.0011495195,-0.007705935,-0.011855285,0.00086837186,0.00059553416,0.0014957602,-0.0051797624,-0.011988241,-0.017938042,0.008780667,-0.015877217,0.01802668,0.02628106,-0.0058390046,0.0025427924,-0.004686715,0.01955568,-0.016375804,0.01992131,-0.012952175,-0.010575579,0.0073957033,0.025527641,0.008542453,-0.033903897,-0.045338154,0.013749914,-0.0051271333,0.0151348775,0.005850084,0.031555,0.008531373,0.008149123,0.0077225543,0.033682305,-0.011966081,0.025815712,-0.019444883,0.032818086,0.017428376,0.001183451,0.011788806,-0.027544146,-0.014137704,0.009849858,0.012941096,0.0067087617,0.014204182,0.0072295074,0.025040133,0.034834594,-0.0042546066,-0.03939943,-0.0142706605,0.00016957143,0.026059467,-0.011522894,0.03727213,-0.021505708,0.0008912238,0.016464442,0.042280156,0.023976482,0.018370152,-0.004996947,0.009052119,0.022414243,0.01612097,0.014713848,0.021871338,-0.001918174,0.023621932,-0.016475521,0.023577612,-0.016276088,0.034059014,-0.0018143017,0.03301752,-0.040596038,-0.000050767554,0.0031410963,0.008553532,-0.0022976538,-0.002746382,-0.005761447,-0.026125945,0.022248048,0.009467608,-0.01542295,0.011434256,-0.028740754,-0.00077211694,0.007406783,0.004808592,-0.023932163,0.0026148104,0.009229395,-0.013406443,0.0046063876,-0.029959522,-0.035344258,0.014414696,-0.020885244,0.0071408697,-0.026990162,0.052916672,-0.005706048,-0.0010442622,-0.020187223,-0.015334312,0.04021933,0.0116226105,-0.031532843,-0.011079705,0.011129564,0.0008489824,0.029604971,-0.0534485,-0.014459015,-0.044584733,-0.016464442,0.011057545,-0.016996268,-0.013040813,-0.015699942,-0.013594798,0.013284567,0.012896777,-0.04387563,-0.0217827,-0.0029887503,-0.014669529,-0.010353984,0.015001921,-0.017406216,-0.030801581,-0.02515093,0.025749234,0.0032048046,-0.067054376,0.044518255,0.041371617,-0.012099038,0.010858111,-0.010919049,0.01015455,0.01390503,-0.00263143,-0.04196992,0.027300393,0.0029139624,0.02028694,-0.028098132,0.010486941,0.0052351607,0.00023890614,-0.0009140757,0.03146636,0.0030718483,0.009888637,0.0047698133,-0.007323685,0.053670093,-0.012099038,0.018469868,0.007672696,0.025283888,0.06528162,-0.039377272,0.017450536,-0.0028447143,0.00027751198,0.035034027,0.0009293103,0.032530013,0.007589598,-0.0066921418,-0.019611077,-0.008415036,0.01242035,-0.030114638,-0.021317353,0.0051382133,0.025527641,0.011777727,-0.01311837,0.010259807,-0.010065912,0.004395873,-0.017073825,0.005944262,-0.004008083,0.0017478234,0.0032131146,0.040330127,-0.009667043,0.0017782927,-0.029050987,-0.040773313,0.01809316,0.02623674,-0.0037421705,-0.00070910115,0.024286713,-0.052739397,-0.002775466,-0.026059467,0.013849632,0.013461842,-0.009872017,0.035920404,0.0127749,0.042922776,-0.01728434,0.050878007,-0.021716222,0.030181117,-0.0032408137,0.024552627,-0.00034277837,0.005412436,0.011722328,-0.01049248,-0.0039997734,-0.013351045,-0.03558801,-0.0039970037,-0.009151837,0.01239819,0.017982362,0.00044699686,-0.006603504,0.028120292,0.018347992,0.013772073,-0.013284567,-0.0011287449,-0.018702542,-0.059165627,0.037249967,-0.0040053134,-0.027167438,-0.037759636,0.012099038,-0.024885017,-0.02406512,0.052783716,0.034745954,0.043631878,-0.023932163,0.012630864,-0.006802939,0.013816392,-0.0052794795,-0.011029846,0.03343855,0.00601628,-0.009129677,0.004476201,-0.011988241,-0.043897793,0.007589598,-0.041615374,0.004401413,0.021339511,0.0016093272,-0.017262181,0.0017090446,-0.024286713,-0.017971281,0.0065259463,-0.010819332,0.009041039,-0.010930129,-0.0046756356,-0.007262747,0.030868059,-0.04578134,-0.011822046,-0.021117918,0.019467043,-0.0035648951,-0.0046340865,-0.010758393,0.012907856,-0.012619784,0.024951495,-0.00054706045,-0.038025547,0.027167438,-0.030978855,0.003196495,0.005409666,-0.0016855001,0.053891685,-0.026347538,-0.0009798615,0.027632784,0.017982362,-0.017450536,0.06089406,0.01848095,0.019500282,-0.04990299,-0.031488523,0.0029028826,0.028053813,-0.024087278,0.04963708,-0.0034097792,0.031377725,-0.008719728,-0.029649291,-0.018115317,0.04212504,0.08606715,-0.0019666476,0.02326738,0.0032408137,-0.020109665,-0.015511587,0.0073458445,0.018115317,0.021860259,0.0032546634,0.0054539847,0.023045788,0.008559072,-0.016486602,0.000769347,0.03680678,0.036230635,0.046623398,-0.0157775,-0.002174392,-0.0133842835,0.02818677,-0.007473261,0.020131825,0.021217635,0.03228626,-0.010431542,-0.003229734,-0.005944262,0.0014860654,-0.017749688,-0.0051049744,-0.0021882418,0.035831768,0.026170263,-0.0014195872,0.014724928,-0.028829392,-0.022868512,-0.008437196,-0.04990299,-0.012841378,0.034878913,0.018957375,0.0017575183,-0.0065868846,-0.029405538,0.039931256,-0.008066026,0.02026478,-0.01917897,-0.03913352,-0.016597398,0.00027110655,0.0027726963,0.036208477,-0.05593035,-0.026990162,0.03944375,-0.016043413,0.00262312,0.008282079,0.0075286594,0.007284906,0.039310794,0.027499828,-0.0088360645,-0.0406182,0.0154451085,-0.06018496,0.037803955,0.039465908,-0.00826546,-0.0060218195,-0.030868059,-0.0072018085,0.0078056525,-0.013051893,-0.010243188,-0.05411328,-0.0133842835,-0.006093838,0.018248275,0.01952244,0.025594119,-0.022591518,-0.009301413,-0.01915681,-0.0039249854,-0.0064373086,0.0039305254,0.021538947,0.006919276,0.0067087617,0.016420122,0.02253612,0.005146523,-0.011777727,-0.008586772,-0.015112718,-0.0000056318227,-0.00073541544,-0.016974108,0.017849404,-0.038424417,-0.0099994335,-0.057392873,-0.015699942,0.007113171,0.029649291,-0.012287393,-0.0060993778,0.0037449403,-0.005176992,0.008531373,0.020807687,-0.008897003,-0.033216957,0.04839615,-0.04030797,-0.01994347,-0.0060772183,-0.000028240263,0.0055481624,-0.024951495,0.0016688806,-0.0097723,-0.026148105,0.0077447137,0.033992536,0.045315996,0.009866477,0.040839795,0.013450762,-0.008631091,-0.0033239115,0.014614131,-0.02256936,0.038069867,0.021893498,-0.0046645557,-0.043897793,-0.012963255,0.028452683,-0.014946522,-0.017716449,0.006919276,0.009617184,-0.024331033,-0.013827472,0.030557826,0.0026937532,0.015145957,-0.006647823,0.014492255,0.014891123,-0.02479638,0.008198982,-0.026524814,-0.02064149,-0.026657771,0.037737478,0.010486941,-0.028098132,-0.009567325,0.0071408697,0.00031005862,0.03904488,0.029095305,-0.030868059,0.050922323,0.0068583377,-0.030557826,-0.032552175,0.035233464,0.0035150365,0.008564612,0.034302767,-0.001218075,0.03798123,0.0020608252,0.044407457,-0.048662066,-0.019854832,0.013949349,-0.0018987844,0.027300393,0.0073901634,-0.0034873371,0.0028862632,0.013450762,0.03609768,0.043676198,-0.0055814013,0.013760994,0.008952402,0.020929564,0.024486149,-0.04196992,-0.0337931,0.04742114,0.0014168173,0.026945842,0.03800339,0.0027145278,0.017782927,-0.007207348,0.014680609,-0.023112265,0.0061880155,0.014226342,-0.009340191,0.0022200958,-0.015722102,0.03348287,-0.027920857,0.00060245895,0.01874686,-0.019965628,0.017406216,-0.011101864,-0.064882755,-0.0034097792,0.00044976678,-0.012087958,0.0145587325,0.01616529,-0.03348287,0.027477669,0.011711248,-0.0043903333,0.049725715,-0.013805313,0.016641717,-0.018569585,0.0136834355,-0.03157716,-0.002476314,0.040086374,0.02628106,0.021494629,0.0017422836,-0.025483321,0.031532843,-0.00243892,-0.026347538,-0.0054429052,0.009234934,-0.017816165,0.006814019,-0.010963368,-0.037781794,0.020852005,-0.0020871395,0.032951042,-0.018636065,-0.014159863,0.0053431876,-0.051409833,0.03722781,-0.0033211417,-0.02705664,-0.0050689653,-0.00979446,0.015168116,-0.029405538,-0.011567212,-0.013229168,-0.012564385,0.0022450252,0.019389484,0.000013784711,-0.0023585923,-0.0013766533,-0.036695983,0.004033013,0.04208072,-0.016841153,-0.029095305,0.0004466506,0.009439909,0.012110118,0.0068195583,0.015123798,-0.017129224,-0.01732866,0.008187902,0.016442282,0.0029084226,-0.03346071,-0.0002659129,-0.026613452,0.014104465,-0.0122209145,0.009390051,0.02217049,0.005409666,0.00018662379,-0.023001468,0.005761447,0.015301073,-0.014104465,0.026945842,0.028075973,-0.007323685,0.028585639,0.017727528,0.009063199,0.034613,-0.014946522,-0.015511587,0.0016231769,-0.025527641,0.01390503,0.016564159,0.018724702,-0.021849178,-0.025217408,-0.007927529,-0.0104370825,0.015201355,-0.01688547,0.010270887,-0.0074566416,-0.03682894,-0.049459804,-0.026081625,-0.034081172,0.038424417,0.0035205763,0.005971961,0.035964724,-0.033194795,-0.0021923967,0.0068306383,-0.027123118,-0.046313167,-0.02969361,0.028452683,0.0006173473,0.005794686,-0.0074566416,-0.02670209,-0.03372662,-0.019068172,0.034302767,-0.026923684,-0.007262747,-0.013849632,-0.023112265,0.00069040415,0.0013357969,-0.038247142,-0.03315048,-0.0010733465,0.012121198,0.025084453,-0.005717128,-0.019633237,0.008930243,-0.013783153,-0.0064317686,0.008282079,-0.010719615,0.030579986,0.01463629,-0.023090106,-0.01991023,-0.008221141,-0.01731758,0.02781006,-0.002740842,0.01391611,0.028497001,-0.0017215092,0.030136798,-0.0054318253,-0.00024011798,-0.02026478,-0.0056838887,-0.020209381,0.03377094,-0.0021993215,-0.010016054,-0.040042054,0.0052046916,0.010847031,0.004733804,-0.01913465,0.019012773,0.00826546,-0.015622384,-0.02366625,0.026746409,0.012930016,0.03228626,-0.016630637,-0.0496814,-0.0127749,-0.011478575,0.0025358675,0.016420122,-0.016951948,-0.0025053984,-0.0154340295,-0.025350366,-0.014625211,0.0034845672,-0.023799207,-0.032928884,0.00048092846,-0.037449405,0.004326625,0.010592198,-0.0021951667,0.018082079,-0.025394684,-0.0042656865,-0.017816165,0.02816461,0.0048002824,-0.010813792,-0.005700508,0.015145957,0.024885017,0.009716901,0.035543695,-0.03875681,-0.003235274,0.007024533,0.0323749,-0.028762914,0.015744261,0.017095985,0.0038640471,-0.0014902203,0.005321028,-0.022757715,-0.0020732898,-0.0180156,-0.023378178,-0.003077388,-0.013694515,0.017095985,0.009827699,0.0086864885,-0.017118145,0.023577612,0.009550706,0.0032463537,0.0013489542,-0.022824192,0.03505619,-0.014603051,0.014403617,0.043388125,0.027898697,0.023223061,-0.0065924246,0.007417863,-0.005550932,-0.045692705,0.023799207,0.016364725,0.01880226,-0.014968682,0.024331033,-0.020852005,0.013184849,0.010420463,0.000111143294,-0.030247595,0.03481243,-0.007262747,-0.0052739396,0.0072959857,0.03505619,-0.030358393,-0.015999094,0.009661503,-0.04108355,-0.004667326,-0.024397511,-0.0026951383,0.000826823,-0.025217408,-0.0037338606,0.012475748,0.010342904,0.013439682,0.003310062,0.017627811,0.033283435,0.0016744204,-0.004093951,0.009644884,0.019677557,-0.043321647,0.050966643,0.041859128,0.043498922,0.035211302,0.030890217,0.00675308,-0.018924136,-0.015101638,-0.032862406,-0.016287167,0.022458563,-0.0054318253,-0.006115997,-0.011744487,-0.012464669,-0.012852458,-0.037870433,-0.053492818,-0.00070009887,-0.0194892,0.0428563,0.02590435,-0.0030607686,0.0003735938,-0.013594798,-0.049725715,0.039687503,0.03377094,-0.009079819,-0.03202035,0.020109665,0.014314979,-0.008957942,-0.01542295,0.051631425,-0.0037975688,-0.009052119,-0.013561559,-0.001801837,0.015578065,0.037693158,0.0399091,0.023932163,0.00066962966,0.007074392,0.028607799,-0.034258448,0.01843663,-0.009185076,-0.042811982,0.0063652904,-0.011445335,-0.023932163,0.0036590726,0.0050191064,-0.0068250983,0.012209835,0.0007818117,-0.010104691,-0.006802939,0.030624306,-0.00112459,-0.028563479,0.013694515,0.030336233]},{"id":"interface-APIMessageSnapshot","type":"interface","source":"main","text":"Interface: APIMessageSnapshot\nDescription: Snapshot of a forwarded message\nProperties: attachments: APIMessageAttachment[] | null, content: string | null, edited_timestamp: string | null, embeds: APIEmbed[] | null, mention_roles: string[] | null, mentions: string[] | null, stickers: APIMessageSticker[] | null, timestamp: string, type: number","meta":{"url":"/docs/typedefs/APIMessageSnapshot"},"embedding":[0.022305707,0.00061698153,0.0010759643,-0.0049329926,-0.017775932,-0.024433328,0.010100481,-0.020818658,0.028070873,-0.010569473,-0.00017265475,-0.024067285,0.0328523,-0.0011410227,-0.0073837605,0.006182684,0.019457439,0.016746437,0.022580238,0.056553543,0.030312883,-0.005745149,0.026309295,0.027293032,-0.0045412127,-0.013269035,-0.031639785,0.0071206675,0.026194906,-0.012388246,0.012960187,-0.029580798,0.022328584,0.026949868,-0.004003588,0.0993805,0.0053133336,0.030198494,-0.039029267,-0.016551977,0.037107542,0.030610291,-0.015991475,0.021264773,-0.056050234,0.030953456,0.023838509,0.028231015,-0.01467601,0.07865335,-0.042140625,0.004695637,-0.0020075135,0.08391521,0.0050988556,-0.010289222,0.0016185935,0.017364133,-0.042255014,0.03790826,-0.001624313,-0.030518781,-0.015762698,0.016906582,-0.022397216,0.0019474596,-0.029008856,0.07160704,0.006594482,0.021413477,0.06456072,0.028985979,-0.02013233,-0.030495903,-0.010775371,-0.02420455,-0.0028539863,-0.017032407,0.030152738,-0.034430858,0.027498933,0.021379162,-0.042071994,-0.03266928,-0.025783109,0.012193786,-0.00554497,-0.035277333,-0.037107542,0.033813164,-0.068861715,0.012365368,-0.028345404,-0.030656047,0.013406301,-0.04266681,-0.04936996,-0.014504428,-0.03170842,0.04323875,0.050971396,-0.024868002,-0.105054155,-0.02304923,0.012170908,-0.020349666,0.017066725,-0.024181673,-0.067214526,0.022591677,-0.0225688,-0.042758323,0.00063342485,0.012422563,-0.014698888,-0.015316585,-0.032120217,0.0031942914,0.049552985,-0.008699225,-0.041248396,-0.0013719439,0.028368283,0.012239541,0.014813276,-0.024776492,0.006085454,-0.009482784,-0.028848713,0.016300324,0.042941343,-0.006348547,-0.01059807,-0.033309855,0.0272244,0.009465626,0.01720399,0.015797015,-0.038892,-0.05238981,0.04220926,0.0009908881,-0.0150878085,-0.026583826,0.023541098,0.047310974,-0.030610291,0.046807665,0.02518829,0.027430298,-0.0056221816,0.0116676,-0.05238981,-0.0005958912,-0.0076182564,0.03703891,-0.010678141,-0.04335314,-0.013783783,-0.016609171,-0.034202084,-0.05650779,-0.013577883,-0.02800224,-0.048775144,-0.018919814,0.0136122,-0.023609731,-0.023380956,-0.03401906,-0.055272397,-0.060305476,-0.040882356,-0.027819218,-0.01000897,-0.010775371,0.033538632,-0.020006502,-0.0076296953,-0.0098717045,0.04239228,0.025142534,-0.007909946,-0.0916021,-0.02964943,-0.027110012,-0.016677804,0.041179765,0.003411629,-0.0018716775,0.015488167,0.039944373,-0.01964046,0.010998429,-0.013303352,-0.007601098,-0.012617023,0.032120217,0.00044790143,-0.05463182,-0.011793427,-0.001409835,0.030175617,0.016380396,-0.018130535,0.008310305,0.026652459,0.018130535,-0.03703891,-0.006989121,0.071286745,-0.013200402,-0.0111585725,-0.005270438,-0.023518221,0.007601098,-0.03266928,-0.00096229103,-0.034568124,0.009391274,-0.051062908,0.0012318183,0.08039205,-0.004501177,-0.012491195,0.0311136,-0.05037658,0.0062455977,-0.070554666,-0.0544488,-0.057788935,0.022134123,-0.057788935,-0.05870404,-0.026858358,-0.00046398726,0.011696197,-0.0047099357,0.01573982,0.0039206566,0.017135357,-0.0096829645,0.031571154,0.04616709,-0.0052275425,-0.0049644494,0.02662958,-0.03985286,-0.0010902629,0.035940785,0.068221144,0.0049272734,-0.040584944,0.02459347,0.0010523718,-0.02731591,-0.04239228,0.029443532,0.02692699,0.0484091,0.05152046,-0.0068690134,-0.057880446,-0.0018645283,0.008973757,0.00709779,0.067351796,0.029169,-0.0018287819,0.024044408,-0.030312883,0.03463676,0.052206792,0.05357945,-0.01787888,0.04598407,-0.029031733,-0.03246338,0.019274417,0.011438823,0.0028897328,-0.04259818,-0.005808063,0.041477174,-0.02304923,0.005176068,0.05238981,0.006114051,0.038869124,0.01808478,-0.01886262,0.0014370022,0.074626885,-0.015259391,0.027064256,-0.0048643597,-0.0053905454,0.028231015,0.041179765,0.009539979,0.05454031,-0.057331383,0.058566775,-0.0075496235,0.016117303,-0.0009880284,-0.0029126105,-0.0037690923,0.009522821,-0.016940897,-0.013966803,-0.033424243,-0.0760453,-0.053808227,-0.040173147,0.035117187,0.07284243,-0.030678924,0.0027481774,0.005201805,-0.012742849,-0.0115875285,0.029809574,-0.007738364,-0.0029126105,-0.014126947,0.0007814146,0.029786697,0.017467083,0.044222493,0.012067959,-0.027773464,-0.0074695516,-0.013852416,0.04209487,0.0055478294,-0.012651339,-0.026904114,0.012891554,0.027567565,0.0050130645,-0.020189524,-0.009757317,-0.00875642,-0.014264213,-0.029397776,-0.066162154,0.04987327,-0.027270155,-0.0352087,-0.013898171,-0.015499606,0.037587974,0.034362227,0.03141101,0.009025232,0.023609731,-0.028551303,0.016689243,0.048683632,-0.05376247,-0.039143655,0.028276771,0.002507962,-0.010735336,0.017238308,-0.039532576,-0.013783783,0.011238644,-0.013108891,0.037404954,0.0072293365,0.011438823,0.0039235163,-0.031296622,0.012193786,-0.019411683,-0.025005268,-0.012765727,0.014767521,0.017409889,0.009402713,0.0019703372,0.034682512,0.05298463,0.002665246,-0.022088367,0.012067959,-0.015236513,0.029603675,0.03159403,0.0068175388,-0.045526516,-0.029191878,0.0060511376,0.04987327,-0.009305483,0.013108891,-0.0023292305,-0.037862506,-0.019446,0.011850622,0.029169,-0.019457439,0.0012775736,-0.0024050127,0.00350028,0.019171469,0.07247639,-0.013269035,0.00025129665,-0.034842655,0.017638667,-0.0038434446,0.04511472,-0.010226308,0.0071378257,0.0030884824,0.02304923,0.035437476,0.028459793,-0.016792193,-0.014367162,0.03772524,0.03374453,-0.010569473,0.017615788,-0.044794433,0.037976895,-0.02489088,-0.02596613,0.04520623,0.061815403,-0.0040379046,0.026332172,-0.081535935,0.027430298,-0.000885079,-0.033767406,0.008790736,0.037748117,-0.044314,-0.002965515,0.017238308,-0.028528426,-0.022248512,-0.02450196,-0.011736233,0.025028145,-0.035643373,-0.020738587,-0.006096893,-0.020441178,0.023861386,-0.025531454,-0.018977009,-0.019869236,0.036512725,0.022362899,-0.0007842743,-0.043215875,0.0068690134,0.015579677,0.027864974,0.009030951,-0.004521195,-0.0250739,-0.010043287,0.012868676,0.043810695,-0.0061998423,0.0013669394,0.01467601,0.06327957,0.010592351,-0.021768082,0.036192436,-0.03296669,0.027430298,0.02246585,-0.017249746,-0.004838622,0.009997532,-0.035071433,-0.034453735,0.071790054,0.023586854,0.0029397777,0.029420653,0.0069948407,-0.019331612,-0.00071814365,-0.022969158,-0.010569473,-0.0038377254,-0.031754173,-0.0029855329,-0.047860038,0.011827744,-0.021905348,0.025805986,0.0008128714,-0.010357855,-0.00035639084,0.060991805,-0.01623169,-0.042026237,0.004629864,-0.0004940142,-0.018977009,0.004140854,0.0014062604,0.026904114,-0.028734324,-0.011124256,-0.004704216,-0.024868002,0.018599527,0.011839182,-0.007177862,0.025691597,-0.015991475,0.046075583,-0.004481159,0.018965568,-0.013657955,-0.02683548,-0.045000333,-0.012102275,-0.035712007,0.028025117,-0.006182684,-0.00026899108,0.019503195,-0.020052258,0.0041236957,-0.032623526,-0.023884263,0.032188848,-0.0020847255,-0.0030598852,0.023746997,0.012456879,0.0024936635,-0.01982348,-0.000544774,-0.007017718,0.014058314,0.0036890206,0.027819218,-0.0071321065,0.010214869,0.060076702,0.012273857,0.03395043,-0.0019360209,-0.013852416,0.0108497245,0.017581472,0.0045669503,-0.0048414823,-0.02516541,-0.0020246718,-0.018508017,-0.0015285128,0.016712122,0.013429179,0.031159354,0.010655264,-0.0069605242,0.005710833,0.016666366,0.0024850843,0.032920934,-0.008773577,0.030061228,-0.042758323,0.00884221,-0.014367162,0.00085219234,0.014355724,-0.017730176,0.012033642,0.016494783,0.049232695,0.02498239,0.014607377,-0.0016500503,-0.0087049445,-0.0151106855,0.061037563,-0.01000897,-0.01352069,-0.019160029,0.012434001,-0.0038291463,0.014847592,0.017284062,-0.040607825,0.00466704,0.011804866,0.030312883,-0.041294154,-0.0023764155,0.016380396,0.040333293,-0.0313195,-0.038640346,-0.0038606029,0.0051846467,-0.010043287,0.037862506,-0.047402486,-0.015511044,-0.009294044,0.019182907,0.019205784,0.007280811,0.029146122,-0.008316024,-0.011095659,-0.01214803,0.0008300296,0.00456981,-0.03042727,0.03818279,-0.0031256585,-0.026217783,-0.01127296,-0.0043124366,0.023369517,-0.02946641,0.017970392,0.035895027,0.0030370075,0.014378601,-0.008807894,-0.0027395983,0.022728942,-0.0087507,0.020647077,-0.000845758,0.026904114,-0.009145339,0.044565655,0.025943251,0.0096829645,0.0012918721,-0.041843217,-0.0015928561,-0.014149825,-0.050422333,0.03166266,0.004052203,-0.004684198,-0.036398336,0.0150878085,0.041866094,-0.024547715,0.0033372766,-0.0074523934,0.016757876,0.0015113546,0.014172702,-0.009122462,-0.011358752,-0.023232251,-0.033035323,-0.009128181,0.0028840133,-0.007423796,0.014023998,0.034385104,-0.009534259,0.034110572,-0.0369474,0.025005268,-0.019308735,0.013211841,-0.0016114443,-0.009568576,-0.023952896,-0.044268247,-0.0027524668,-0.008767858,0.0054134233,0.01672356,0.015808454,-0.0021819556,-0.025051024,0.0040607825,0.02198542,0.038159914,-0.0145158665,0.011118537,0.025531454,0.031022089,0.012090837,0.016792193,0.008173039,-0.0020689971,-0.023884263,-0.03335561,0.004335314,-0.0101062,-0.02809375,0.017821686,0.024456205,0.021951102,-0.02839116,-0.013394862,0.008235953,0.0049215537,0.035437476,-0.018553771,0.009402713,-0.018039025,0.022088367,0.0076468536,-0.0036575638,0.059939437,-0.0030312883,-0.014836154,0.04365055,-0.008836491,-0.018656721,0.037885383,0.024959512,-0.0062170005,0.0074009188,-0.022889085,-0.019754848,-0.013726588,0.02071571,-0.008453291,0.031845685,-0.009276886,0.012685656,-0.014607377,0.0136350775,0.022900525,0.0038062686,0.012434001,-0.002127621,-0.03509431,-0.00026166308,-0.023838509,0.0023478186,-0.03063317,0.007738364,-0.023106424,0.005776606,0.00046505965,0.016105864,0.0054248623,0.0004950866,-0.023907142,-0.0043610516,-0.009763036,0.024868002,0.054769088,0.009477065,-0.015602555,0.02314074,-0.009173936,-0.030564535,-0.011307277,-0.007069193,0.037565097,-0.009843107,-0.0074009188,-0.00077641016,-0.02109319,0.018405067,0.038892,-0.0060225404,-0.0041065374,-0.019617582,-0.030930579,0.018462261,-0.0009923179,-0.03296669,-0.0029712345,-0.016460467,0.003325838,-0.019709093,-0.049141187,-0.039418187,-0.026881235,-0.021642255,-0.011444543,0.003217169,0.012983065,-0.04548076,-0.00845901,0.016734999,0.016002914,-0.08039205,0.03198295,0.04678479,-0.051886503,0.010998429,0.0058195014,-0.036398336,-0.022889085,0.013166086,-0.044657167,0.019789165,-0.0050902762,0.0073094084,-0.017215429,0.02225995,-0.010718178,0.010781091,-0.004383929,-0.00021894622,-0.018588088,-0.022694625,0.00059446134,0.023209373,0.06575036,-0.013303352,-0.0016843667,-0.0075610625,0.04284983,0.026675336,-0.046029825,0.014378601,-0.004286699,-0.02342671,0.0053991247,0.037885383,-0.0005043806,0.0016614891,-0.01468745,-0.027201522,-0.009928899,0.015865648,-0.010580911,0.017638667,-0.0042037675,0.0026566668,0.029786697,0.017238308,0.00554211,-0.023792753,0.007852753,-0.011152853,-0.022637432,0.011736233,-0.0026580966,0.020555565,-0.012045081,-0.04859212,-0.012571267,0.009745877,-0.01790176,-0.0043696305,0.049507227,0.02411304,0.028047996,0.01748996,0.0058566774,0.009803072,-0.017387012,0.028711447,-0.006348547,-0.022763258,0.010186273,0.019983625,0.022294266,0.016471906,0.031273745,0.014424357,-0.019045642,-0.007749803,-0.0059539075,0.03957833,-0.01099271,0.035254452,-0.015991475,-0.02955792,-0.0015242232,0.0076068174,0.002186245,0.015442411,0.021859592,0.0313195,0.0006291353,0.014961981,-0.013852416,-0.022786137,-0.0038949193,-0.015602555,-0.011621845,0.037244808,-0.018405067,0.052710097,-0.0074809906,-0.02206549,-0.080254786,-0.04891241,-0.016082985,0.009946057,0.03530021,0.02129909,0.059253104,-0.03598654,-0.013406301,-0.005035942,0.026034763,-0.028253894,-0.031090721,0.0026995623,0.019308735,-0.017958952,-0.014115508,-0.025394188,0.009894582,-0.005748009,-0.012422563,0.014847592,0.013211841,0.0066059204,-0.04218638,-0.028642815,-0.0018287819,-0.017409889,-0.0048586405,-0.013246157,-0.0010287792,-0.018141974,0.023094984,0.038960632,-0.015568239,-0.040882356,0.01662061,-0.003423068,0.00047113653,0.039486818,0.004432544,-0.012113714,-0.0066345176,-0.005902433,0.0350028,0.004544073,-0.042552423,0.012925871,0.007761242,0.004023606,0.007423796,-0.015980037,0.03170842,-0.0352087,-0.01575126,-0.017375574,0.06309655,-0.012262419,0.05152046,-0.0030684643,-0.017661544,-0.033081077,0.0013290483,-0.023701243,0.01720399,0.0037376357,0.051886503,0.030038351,-0.012605583,0.032440502,-0.013589323,-0.037931137,0.040676456,0.054037,0.011553212,0.04220926,-0.02498239,-0.032326113,6.339387e-7,-0.0063027916,0.010437926,0.054677576,-0.016712122,-0.012479756,0.007749803,-0.011170011,-0.0023349498,0.019777726,0.05005629,0.008316024,0.045000333,-0.026355049,0.011999326,-0.028757202,-0.001837361,-0.019995064,0.0011052763,-0.018988447,0.03733632,0.008882246,-0.03779387,0.026789725,0.016460467,-0.019434562,0.025805986,0.009402713,0.0330582,0.0058795554,-0.018393628,-0.012422563,-0.012296735,-0.004647022,-0.041202642,-0.025028145,-0.011318716,0.0012575557,0.0062055616,0.0052961754,0.006445777,-0.013886732,0.06428619,-0.03422496,0.013772343,0.0009465626,-0.014058314,-0.005699394,-0.0012175197,-0.004586968,0.018061902,-0.017958952,-0.037016034,0.07078344,-0.03857171,0.0172955,-0.01739845,0.024753613,0.013566445,-0.0046441625,-0.0061998423,-0.02302635,-0.006114051,0.037702363,-0.048775144,0.033195466,0.062044177,0.0052961754,0.0133719845,-0.00057515834,-0.0015485308,0.018885497,-0.013166086,0.013383424,-0.006863294,-0.030678924,0.004052203,0.0064114607,0.022671748,0.015007736,0.01730694,0.006840416,-0.029420653,-0.0034659635,-0.015728382,-0.025691597,0.025920374,-0.0038119878,0.010031848,0.015762698,0.025943251,0.0019403105,-0.009843107,-0.009173936,-0.012731411,-0.0010237747,0.0204183,-0.02216844,-0.00096086116,-0.032920934,-0.015259391,-0.012983065,-0.034659635,-0.014104069,0.049919024,-0.023930019,0.026789725,0.017478522,0.004918694,0.015007736,0.03395043,0.006016821,-0.06890747,-0.00094441784,-0.0022548782,-0.0136350775,0.008436132,0.050742622,0.0009022372,-0.067717835,0.00077926985,0.017352695,-0.0051732077,0.00427812,0.017146796,0.022683186,-0.0023935738,0.021173263,-0.009997532,-0.03433935,-0.022637432,-0.0107296165,-0.010701019,0.009768755,0.006943366,-0.002011803,-0.042163502,-0.0061026122,-0.008127284,-0.018530894,0.017409889,0.016792193,0.003168554,-0.0073780413,-0.012800043,0.048546366,-0.020578444,0.0153509015,-0.003463104,0.010003251,-0.0024765052,-0.0088250525,-0.005716552,-0.017020969,0.018496577,-0.008041493,-0.0017615788,-0.0018459401,0.005161769,-0.027498933,0.014721766,-0.03671862,0.020464055,0.009368396,-0.033264097,-0.004529774,0.005027363,-0.029786697,-0.0136122,0.038663223,-0.0033115393,0.01157037,0.015305146,-0.024250306,0.00071313913,0.0057079727,0.018828303,-0.013303352,-0.0032715036,0.02489088,0.00446972,0.019720532,-0.026194906,0.017455645,-0.0068918914,0.00019428127,-0.0034173485,0.02839116,-0.035895027,0.041202642,0.023060668,0.020818658,0.009580014,-0.025622964,-0.029695185,0.009002354,-0.012491195,0.041683074,0.011953571,-0.00007891001,-0.0010666703,-0.011232925,0.01002041,-0.0017244027,0.0056765163,-0.0071378257,-0.0050073448,0.0115875285,-0.029672308,0.039624084,-0.016872264,-0.011198608,0.00035656957,-0.028665692,-0.028642815,-0.018119097,-0.038914878,-0.002323511,-0.017432768,-0.018450823,0.016197374,-0.032028705,-0.00913962,0.036100928,-0.024227427,-0.0069376463,0.041019622,-0.009946057,0.002615201,-0.026995623,0.030290004,-0.0055735665,-0.021939663,0.040218905,0.03722193,0.008464729,-0.0042466633,0.01751284,0.048363347,-0.029420653,0.000037287882,-0.001380523,0.0153737785,-0.0049930466,0.0070920708,-0.005727991,-0.028528426,0.019205784,0.02946641,-0.011307277,-0.005433441,-0.007458113,0.048866656,-0.038320057,0.012479756,0.007349444,-0.030015472,0.0066059204,0.0009723,0.023952896,-0.014710327,0.009906021,0.0062341588,0.0017730177,0.039418187,0.015122125,-0.03616956,0.0006409316,-0.015385218,-0.034751147,-0.0050016255,0.022134123,-0.0063085114,-0.020349666,0.018988447,-0.014287091,0.02614915,-0.017169675,0.004175171,-0.013005942,-0.0056336205,0.0013226139,-0.0033372766,-0.012605583,-0.024822246,0.012365368,-0.025211167,-0.0061598066,-0.016929459,0.012914431,0.0019217223,0.0010909778,-0.015499606,-0.012708533,0.003723337,0.023907142,-0.014092631,0.011953571,0.05184075,-0.0038148477,0.0352087,0.013623639,-0.010163395,0.028276771,0.000031769545,-0.027270155,-0.0021504988,-0.029100368,-0.0009193954,0.015488167,-0.014023998,0.006760345,0.0029683746,0.000065594504,-0.007572501,0.0062970724,-0.02450196,-0.011850622,0.0077212057,-0.03706179,-0.025600087,0.0049901865,-0.00022681041,0.028231015,-0.00904239,0.0020103732,0.043421775,-0.028025117,-0.014664572,0.0076754508,-0.017775932,-0.02791073,-0.01624313,0.018267801,-0.029695185,-0.011061342,-0.0011031316,0.0039521134,-0.065292805,-0.028825834,-0.0136350775,0.013280474,-0.0065773237,-0.04959874,-0.012948748,0.0037004594,0.013040259,-0.054952107,-0.045435008,0.008115845,-0.028688569,0.03072468,0.017570034,-0.02266031,-0.0028454072,-0.030015472,-0.036123805,-0.029832453,0.017672982,0.0027553267,0.024868002,-0.028894467,-0.0027982222,0.0071435454,0.031067844,0.019514633,0.0047185146,0.030175617,0.016792193,-0.018141974,0.031845685,-0.0012010764,0.020555565,0.03790826,0.0175014,0.0019274418,-0.018050464,0.03433935,0.01778737,-0.0010273494,0.005379107,-0.022728942,-0.05179499,0.010089043,0.019446,-0.008064371,0.011707636,-0.0034488053,0.011639003,-0.01779881,0.008327464,0.015682627,-0.0451376,-0.010546595,-0.024616348,0.03733632,0.013783783,-0.019102836,-0.0028911626,-0.003297241,-0.03676438,-0.015591117,-0.0059825047,0.017444206,-0.013898171,0.014561622,0.007166423,0.0052332617,-0.017215429,-0.031159354,0.004023606,0.016780755,-0.00043932232,-0.039715596,0.012216664,0.018999886,0.0070634736,-0.042529546,0.021379162,0.013040259,0.03141101,0.026400805,-0.01583133,0.0025322696,-0.027864974,-0.0034402262,-0.0213906,0.007349444,-0.02245441,-0.015808454,0.015922843,0.022317145,0.00690333,-0.022088367,-0.025874618,-0.017043848,-0.022957718,0.0026781145,0.019914992,-0.0313195,-0.003119939,-0.01877111,0.029535042,0.008453291,-0.012960187,-0.009168217,-0.011781988,-0.0012282437,-0.012971626,0.00086935057,0.023472466,0.012090837,0.013795221,0.018130535,0.013131769,-0.002848267,-0.023586854,0.0025737353,0.017741615,0.031159354,-0.015293707,-0.016128741,-0.0289631,0.016803632,0.004421105,-0.047677018,0.0088708075,0.003954973,-0.012216664,0.033218343,0.016266007,0.008001457,-0.0006391443,0.005213244,0.02791073,-0.04385645,0.017936075,-0.016300324,-0.01322328,0.021710888,0.01215947,-0.015442411,0.018393628,0.00016353943,0.019491754,-0.010071884,-0.0250739,0.03587215,0.01215947,-0.0064800936,0.0118963765,0.0015113546,-0.0021462094,0.022671748,0.034270715,0.02381563,0.05238981,0.053716715,0.022397216,-0.03626107,0.009551418,-0.010066165,-0.0052103843,-0.01565975,0.01768442,-0.003383032,0.03239475,-0.018153412,-0.009311202,-0.026721092,-0.03587215,0.005482056,-0.061220583,0.019114275,0.030884823,0.0145158665,0.020978803,-0.027704831,-0.03351575,0.031159354,0.023586854,0.038869124,-0.019331612,0.020784343,0.003754794,0.01886262,-0.028459793,0.020864414,-0.030839069,-0.0034459457,0.004009308,-0.004200908,-0.0014505858,0.012708533,0.024273183,-0.004089379,0.015430973,-0.011461701,-0.0012418273,-0.018896936,-0.0008378938,-0.014504428,-0.044222493,-0.0015256531,-0.021024557,0.0027081415,0.0002629142,-0.0097287195,-0.0020332509,0.013875293,-0.009597173,-0.0073837605,0.0022520183,0.016700683,-0.023609731,-0.025508577,0.017169675,0.015190758]},{"id":"interface-APIMessageSticker","type":"interface","source":"main","text":"Interface: APIMessageSticker\nProperties: animated: boolean, description: string, id: string, name: string, tags: string[]","meta":{"url":"/docs/typedefs/APIMessageSticker"},"embedding":[0.006841959,-0.025188718,-0.038286854,0.013144996,-0.05867214,-0.014257986,-0.008165831,-0.017924994,0.005658675,-0.033764597,-0.0014805695,-0.028445678,0.017034603,-0.018147593,-0.0057231113,-0.00746289,-0.02811764,0.009747448,0.032499306,0.03517048,0.029523522,-0.021920042,-0.0093959775,0.05487626,0.0061448757,0.016155927,-0.045386557,-0.01126463,0.015171809,0.03395205,0.0115926685,-0.0277896,0.056610182,0.02950009,-0.020397004,0.053095475,-0.030132737,0.002738541,-0.010790144,-0.064811155,-0.007281297,0.047776554,0.0071699983,0.004030195,-0.023150189,0.075214684,-0.0026418865,0.08154115,0.000020994412,0.027695876,-0.015581858,0.021592004,-0.025423033,0.025329307,0.0067423754,-0.013414457,-0.013133281,-0.0037255872,-0.020607887,0.008470438,0.025259012,-0.0063850475,-0.037865087,-0.0242046,-0.0062678903,0.036576364,-0.062139984,0.04423842,0.020912495,0.020033818,0.06738861,0.023630533,-0.028844012,0.0064026206,-0.039856754,-0.025282444,-0.04234048,0.026618032,0.04836234,0.025961954,-0.044660185,0.042504497,-0.036060873,-0.0452694,-0.013543329,-0.022775289,-0.031351168,-0.04320744,-0.020385288,-0.010350806,-0.03805254,0.022166071,-0.07990096,-0.024251465,0.0074336007,-0.025305875,-0.011739114,-0.027508425,-0.033717737,0.024462346,0.03481901,-0.05028371,-0.09203841,0.025446463,-0.019014554,-0.000043453285,0.0063791894,0.030413913,-0.024813816,0.0061975964,-0.03153862,0.013566761,-0.048456065,0.02760215,0.025657346,-0.03001558,0.016999457,-0.0052779154,0.0531892,-0.055110574,-0.051033515,0.0018818316,0.044214986,-0.009612718,-0.0075156107,-0.0046481974,-0.01793671,-0.020572739,-0.050846066,-0.023806268,-0.015300682,-0.0066662235,0.00010599032,-0.009202669,-0.019799504,-0.0061155865,-0.022447249,0.008880488,-0.027859895,0.0027912615,0.031608913,-0.029570384,-0.012336615,0.0072754393,0.023056464,-0.0034414819,-0.010426958,0.039856754,-0.00006786858,0.02350166,-0.0016094419,0.06584214,-0.034045774,-0.0063791894,-0.02554019,0.0079432335,0.022025485,-0.03242901,-0.00062239566,-0.034772146,-0.025352739,-0.06307724,0.03001558,-0.022892445,-0.032522738,0.010731566,0.032897636,-0.0000011984549,-0.025915092,0.054595083,0.012664653,-0.054407634,-0.055672925,-0.03718558,-0.050143123,0.0025027627,0.034069207,-0.029593816,-0.03238215,0.008698895,0.04798744,0.061015278,-0.017655535,-0.070200376,0.0018701159,0.011914849,-0.006988405,0.0056674615,0.008107252,-0.014304849,-0.00096215046,0.0066662235,0.015452986,0.014960927,0.01012235,-0.029218914,0.012032007,-0.020830484,-0.032171264,-0.053282928,0.01940117,-0.0056762486,0.03826342,0.0005942048,-0.02811764,-0.011387644,-0.014281417,-0.002510085,-0.0023240987,0.005603025,0.0699192,-0.0145157315,-0.004818075,-0.01614421,-0.050377436,-0.008517302,0.009144091,-0.006847817,-0.027813032,0.006367474,-0.021287397,0.01473833,0.032874208,-0.03053107,-0.010690561,0.03622489,-0.03345999,0.052251946,-0.03622489,-0.008505586,-0.060265474,0.005371641,-0.014550879,-0.05970312,-0.0055093,-0.011434507,-0.0023929283,0.008517302,0.010163355,0.005444864,0.008001812,-0.0009899752,0.017315779,0.014726614,0.033905186,0.026172835,0.017432936,-0.005556163,-0.009132375,-0.025493326,0.046253517,0.0006762146,0.009319826,0.025071561,-0.0001889154,-0.018604504,-0.0012857962,0.038427442,0.034256656,0.018253034,0.03549852,-0.010813575,-0.038310282,-0.011364212,0.023513377,-0.0018906184,0.047097046,0.036927834,0.0031749501,0.023044748,-0.014820339,-0.025587052,0.05164273,0.053282928,0.012746663,0.014937496,0.0011517981,0.05571979,-0.01085458,0.05473567,-0.0144923,-0.025141856,-0.002366568,0.014937496,-0.050752338,0.045363124,0.041801557,-0.0126880845,-0.0022860228,0.012032007,0.04374636,0.04850293,0.041707832,-0.0115926685,-0.0022054773,0.024228033,-0.016847152,-0.0015303611,0.040067635,0.0064611994,0.03587342,-0.06518606,0.04972136,-0.018815387,0.0020224198,-0.008224409,0.015019505,0.021931758,0.030203031,-0.007837792,0.025282444,-0.022915876,-0.010731566,-0.030554501,-0.078260764,-0.0046071922,0.053236064,0.026336856,-0.042645086,-0.0002522533,-0.013285585,0.01047382,0.030601364,-0.055766653,-0.038661756,-0.06799783,0.03702156,0.008833625,0.026055679,0.026196267,0.008341567,-0.035100188,0.01148137,0.02331421,0.06738861,-0.012114016,-0.0076444834,0.0013495003,0.002038529,0.05384528,0.037865087,-0.055766653,-0.041262634,0.017140044,-0.0030900114,-0.018827103,-0.04990881,-0.0032013103,0.021556856,0.011762545,0.01362534,0.02811764,0.0038368863,-0.05379842,-0.029874992,-0.05590724,0.034045774,-0.02119367,-0.025868228,0.05473567,-0.011985144,0.030203031,0.0033536144,0.0192723,-0.04116891,-0.011475512,-0.04836234,0.0013253366,0.0072578657,-0.041239206,0.046253517,-0.02160372,-0.012078869,-0.010145782,0.013367594,-0.020678181,-0.029617246,-0.016437104,-0.01791328,-0.019412886,0.04613636,0.005579594,-0.018979406,0.049533907,0.013719065,0.0029816413,-0.0021659369,0.04376979,-0.012242889,0.052908026,0.0552043,-0.035779696,-0.068044685,-0.00027751524,0.009970047,-0.0077850716,-0.041754693,0.018768525,0.010878012,0.002439791,-0.007158282,0.007181714,-0.025751071,0.023161905,-0.010057914,0.016050486,-0.0154295545,0.02374769,0.058578417,-0.023115043,0.0053101336,-0.05178332,0.022072347,0.05229881,0.029593816,-0.0015215743,-0.018651368,-0.0289846,0.027016366,0.05300175,0.026711758,0.0018715804,-0.005061175,-0.040887732,-0.0030080017,0.01774926,-0.0005832213,-0.039434988,-0.014070535,-0.03552195,0.02032671,0.09944272,0.055954102,-0.025774503,0.04376979,-0.058719,0.01294583,-0.013601908,-0.023864847,-0.011645389,-0.016542545,-0.062514886,0.007281297,0.03036705,-0.0040155505,-0.01657769,0.012570928,-0.03807597,0.01715176,-0.028562834,-0.069684885,-0.004185428,-0.05609469,0.033670872,0.005441935,-0.021369405,0.014527447,0.013929947,0.02040872,-0.02160372,0.003951114,-0.01750323,0.01050311,0.042504497,-0.0073047285,-0.028305091,-0.012629506,0.05492312,0.04662842,0.026454013,0.025001267,-0.0289846,0.033014797,0.033834893,0.008072105,-0.03631862,0.019366024,-0.044730477,0.02220122,-0.02811764,0.03704499,0.026547737,0.0070352675,-0.026196267,-0.009144091,0.095646836,0.017186906,-0.026266562,-0.021369405,-0.019260583,-0.017866416,-0.008710611,0.007128993,-0.011194335,0.00014800203,-0.033998914,0.009237817,-0.035545383,-0.008933208,-0.0059662117,0.045363124,-0.018241318,-0.023817984,0.013496467,0.090679385,0.021076513,0.002955281,-0.022259798,0.0025715923,-0.036506068,0.01612078,-0.05098665,-0.008903919,-0.04306685,-0.015991908,-0.00583441,-0.027883327,0.050752338,-0.023255631,0.012383477,-0.033061657,-0.0018540069,0.059093904,-0.0014673893,0.017842986,-0.0128755355,-0.042153027,-0.05867214,-0.025352739,-0.013121565,-0.0043084426,-0.029382933,-0.00879262,0.016378526,-0.0086696055,0.0021161453,-0.0125006335,0.013765927,0.029195482,-0.021556856,0.004214717,-0.0021674014,0.028164502,0.033834893,-0.031772934,0.02811764,-0.02966411,0.034678422,0.0034414819,0.029382933,-0.0009035721,-0.026828915,0.043863516,-0.011557521,0.036998127,-0.008898062,-0.041567244,-0.023044748,0.04681587,0.002811764,-0.018358475,-0.034280088,0.0061624493,-0.015464702,-0.0038632464,0.012242889,0.01595676,0.04447273,0.012172595,0.03221813,-0.014914065,0.0147031825,0.0068595326,0.020631317,-0.017022887,0.015827889,-0.01579274,-0.00024511406,0.00952485,-0.03718558,0.019073132,-0.0036699376,0.0071524247,0.03315538,-0.010754997,0.031163717,-0.0038632464,-0.012442055,-0.005585452,0.014855486,0.02051416,-0.048737243,-0.009618576,-0.011932423,-0.012957546,-0.016050486,-0.03587342,-0.0049586627,-0.02117024,0.00043348028,0.008329851,0.0033829035,-0.039177243,-0.0068888217,0.039927047,0.016530829,-0.03976303,-0.015863035,-0.0023358143,0.014000242,-0.02228323,0.044730477,-0.034537833,-0.015839603,-0.021392837,0.0008537804,0.025961954,-0.0008435292,0.007831934,-0.016753428,-0.015663868,0.0068888217,-0.004290869,0.01025708,-0.033998914,0.017620387,0.011159188,-0.017772691,-0.00083034905,-0.0057846187,0.016659701,-0.016940877,-0.030226462,0.010532399,0.0072520077,0.0035937857,-0.022681562,0.02556362,0.01913171,-0.005687964,0.010333233,0.00083327794,0.055860378,-0.008482154,0.048971556,-0.0010492859,0.02453264,0.012910683,-0.015183525,0.033225678,0.0033184672,-0.0353345,-0.002999215,-0.004079987,-0.0086754635,-0.005582523,-0.010561688,0.02108823,-0.0036142883,0.018042153,0.01500779,0.028914306,-0.01145208,0.026875777,-0.0041619963,0.023982003,0.022540973,0.005503442,-0.000044528748,-0.009759164,0.021053083,0.010467962,-0.0011583882,0.0028805935,-0.019658916,-0.024954405,0.012852104,-0.030788815,-0.0066955127,0.00025646362,0.00092261005,0.020373574,-0.040583126,0.008657889,0.010438673,0.012594359,0.0152421035,0.014105682,-0.014504015,-0.028422248,0.018897397,0.019928377,0.026172835,0.008616885,0.024602935,0.023161905,0.02469666,0.0042996556,0.0013604837,0.0055385893,0.00947213,-0.0018144664,-0.042270184,-0.0022450178,0.005553234,0.0054331482,0.01337931,-0.0007637161,0.047893714,0.042645086,-0.04046597,0.002477867,-0.018768525,0.04016136,-0.012090585,-0.002987499,-0.017081466,0.0012440591,0.004920587,0.007931517,0.019600337,0.022330092,-0.02016269,0.030132737,0.03071852,-0.005242768,0.019494897,0.02141627,-0.012067153,-0.0036670088,-0.02184975,0.025141856,-0.021685729,0.027086658,-0.00007230773,0.04697989,0.0293595,0.019776072,0.005805121,0.015570143,0.0074804635,0.020771906,0.013953378,-0.0123131825,-0.009501419,0.009899752,-0.0416844,-0.006953258,-0.04273881,-0.012617791,0.016003624,0.0067540915,-0.00223916,0.019904945,-0.01614421,0.023607101,0.02678205,-0.009929041,-0.018534211,0.00234753,0.024790386,0.03378803,-0.0075390423,0.020127544,-0.0156873,-0.020397004,-0.00767963,0.015406123,0.013578476,0.047964007,-0.039364696,-0.038474303,-0.0039423276,0.0038896068,0.020631317,-0.037841655,0.0019711638,-0.045527145,-0.0072637233,0.056891356,-0.0093959775,-0.0011664426,-0.019096563,-0.018276466,0.023712542,-0.005995501,-0.013847938,-0.015628722,0.0050904644,-0.01851078,-0.053939003,0.033881754,-0.014562594,-0.053892143,0.0007461426,0.00052793795,0.014281417,-0.047776554,-0.025399601,0.026149405,0.0036728666,-0.025071561,0.014093967,0.017350927,0.023712542,0.015863035,0.00746289,0.018768525,0.009313968,-0.0012316112,0.00067694683,0.014023673,0.002331421,0.013004408,-0.018311612,0.04976822,-0.00042542574,0.01286382,0.021217102,-0.023431366,0.065748416,0.0033741167,-0.0020033817,-0.023009602,0.034373812,0.030788815,-0.020209553,0.023044748,-0.016940877,-0.017034603,-0.00502017,0.023361072,0.012746663,0.00439631,0.0095834285,-0.018674798,0.0018335044,0.034701854,-0.0064494833,0.0092202425,-0.003992119,0.0050904644,-0.008511444,-0.005181261,0.027367836,-0.022798719,0.0013751283,0.008154116,-0.021943474,0.037302736,0.03430352,-0.0076737725,-0.011944138,-0.06420194,0.0039101094,-0.029992148,0.0000629718,0.027156953,0.030320188,0.010965879,0.038497735,0.040419105,-0.013004408,0.004003835,0.009595145,0.01063784,-0.0092143845,0.011311492,0.018885681,0.0034121927,0.013016124,-0.01120605,0.044285282,-0.002868878,-0.027297541,-0.015675584,0.020068966,0.019963523,0.020045534,0.061155867,0.018100731,0.015827889,0.025305875,-0.020631317,0.017854702,0.009718159,0.023478229,0.037349597,0.008611027,-0.020350141,0.011862129,0.018171024,0.014562594,0.0059369225,0.0055678785,0.030460777,-0.010280512,0.04580832,-0.008341567,-0.014960927,-0.03924754,-0.039153814,-0.017924994,-0.0012418624,0.04323087,0.039388128,0.05679763,-0.021310827,-0.030085875,-0.01310985,0.04046597,-0.03718558,-0.0064143366,0.00819512,-0.011639531,0.0035644965,-0.012442055,-0.014351712,0.0035059182,0.011276345,-0.010344948,0.0037109426,0.0041209916,0.002141041,-0.021662299,0.015663868,-0.030835677,-0.010819433,-0.015839603,-0.00013701858,0.005553234,0.017924994,-0.020830484,0.009272963,0.019073132,-0.038357146,-0.059609395,0.006976689,-0.016296515,0.0053862855,-0.017280633,-0.0132387215,-0.0148906335,-0.0061917384,0.029546952,0.017702397,-0.050471164,0.012090585,0.013121565,-0.014175977,0.025094993,-0.01071985,0.015909897,-0.034397244,-0.020525876,0.009811885,0.034678422,0.0024266108,0.03667009,0.0076386253,-0.04925273,-0.020900778,-0.0329445,-0.020701611,0.0038691044,0.032686755,0.020561025,-0.00019660381,-0.010292227,0.009354973,-0.050189987,-0.052579984,0.020174406,0.06631076,-0.0023226342,0.021392837,-0.0051900474,-0.026149405,-0.004138565,0.0075214687,-0.010995168,0.047401655,0.0008244912,0.015160094,-0.018920828,-0.035240773,-0.016261369,0.006139018,0.021861464,0.020525876,-0.0086696055,-0.010942448,0.01970578,-0.025188718,0.032335285,0.006139018,-0.012196026,0.025235582,0.023220483,-0.0002465785,0.007099704,0.0010104777,0.04046597,-0.009800169,0.016179359,0.0072637233,-0.0018496135,0.014293133,-0.03142146,0.025282444,0.010274654,0.014047104,0.007960807,-0.034280088,-0.028258227,-0.038685184,0.014023673,0.011862129,-0.006941542,-0.015394407,-0.000021932583,-0.002407573,0.027484993,-0.025423033,-0.014164261,-0.008370856,0.013836222,0.014960927,0.054079592,-0.0038544596,-0.02220122,0.068044685,-0.008118968,0.014468868,0.028281659,0.040442538,-0.011973429,-0.005497584,-0.011463796,-0.040044203,-0.0039686877,0.010655413,-0.041942146,0.034936167,0.06602959,-0.0039774743,-0.005052388,-0.018897397,0.009489703,0.004135636,-0.0020121685,0.005131469,-0.026641464,-0.011006884,-0.0038720332,-0.020221269,-0.0062503167,0.033131953,0.007550758,0.030741952,-0.004990881,-0.0067833806,-0.008939066,-0.0050406726,0.032827344,0.002830802,0.011247056,0.017362643,0.000438972,0.0061683073,-0.020725043,-0.018381907,0.022857297,-0.023056464,-0.0036377197,-0.006057008,-0.006174165,-0.031304304,-0.02399372,-0.016155927,-0.025001267,0.007345733,0.000013649228,-0.011247056,-0.0018715804,0.01680029,-0.0062210276,0.007849508,-0.02374769,0.00789637,-0.049815085,0.02162715,-0.02040872,-0.010034483,0.010631982,0.021685729,0.0004876653,0.018463917,0.013965094,-0.00947213,0.02333764,0.025961954,0.014035388,0.0126880845,0.0009584893,0.0116043845,-0.015160094,-0.02746156,-0.018171024,0.006631077,-0.00214397,0.010485536,0.021931758,0.003403406,-0.026618032,0.005465366,0.0026360287,-0.009021076,-0.008476296,0.011334923,0.00047924466,-0.026946072,0.003248173,0.03273362,-0.0026872847,0.038497735,-0.004027266,0.022376955,0.0064084786,-0.013262154,-0.0046686996,-0.03514705,0.022787003,-0.033670872,0.0016694849,-0.0011312957,-0.0103156585,0.0044050966,0.03242901,-0.035920285,0.0076972037,-0.016624555,-0.003183737,0.0052984175,-0.04477734,-0.007345733,-0.0086696055,0.045363124,-0.007580047,-0.0150898,0.0043084426,0.03360058,-0.0119617125,0.013098134,0.020150974,-0.025680777,0.0050406726,0.041004892,-0.004003835,0.015195241,-0.006800954,-0.01373078,-0.013590192,0.014714898,0.014175977,0.044707045,-0.03774793,0.02982813,0.021662299,0.021533426,0.024392052,-0.010749139,-0.02643058,0.026172835,-0.0043523763,0.0014842306,-0.0041532097,-0.0026667824,0.0046013347,-0.0004924248,0.029265776,-0.0385446,0.018335044,-0.00884534,-0.016647985,0.010005194,-0.04133293,0.03547509,0.006443626,-0.0010097454,0.015593574,0.009694728,-0.026969502,-0.008962497,-0.03859146,0.018979406,-0.041731264,0.010661271,0.019787788,0.0014168654,-0.0126880845,-0.0033799745,-0.029992148,-0.00035842668,0.003842744,-0.04749538,-0.039364696,-0.023548523,0.053236064,-0.026946072,0.011809409,0.035428226,0.07657371,0.032639895,-0.012078869,-0.0012777416,0.038497735,-0.010713992,-0.005761187,0.009149948,0.010198502,0.002249411,0.029172052,-0.0034649132,-0.014246271,0.016062202,0.00776164,0.006759949,-0.011393501,-0.0084997285,0.02982813,-0.04456646,0.0504243,0.03409264,-0.017526662,-0.032686755,-0.01639024,0.028562834,-0.025493326,0.030460777,0.007550758,0.010995168,0.0070469836,0.019366024,0.0024705448,0.009911468,-0.026828915,-0.0027502566,0.013344163,-0.003801739,-0.034725286,-0.017210338,0.015452986,-0.031655777,0.025118424,-0.0007153889,-0.01970578,0.01047382,-0.010344948,0.0607341,0.014550879,0.0090386495,-0.03889607,0.016097348,-0.05145528,-0.012723232,-0.010538257,-0.022212936,0.003620146,-0.004235219,0.0087399,-0.0025584123,0.0051226825,0.019565191,0.010426958,0.01886225,0.026360286,-0.006467057,0.020748476,-0.0005817569,-0.00055173546,0.008329851,0.011270487,0.0035059182,0.017878132,-0.044168126,0.010339091,0.034537833,-0.016355094,0.006549067,-0.028070776,0.022025485,0.015570143,0.016331661,-0.008763331,-0.03601401,-0.0036435775,-0.032171264,-0.02982813,-0.018311612,-0.011475512,0.037138715,0.0132387215,-0.019155141,0.036154598,0.008189263,0.016976025,-0.037771363,-0.005023099,-0.038568027,-0.02556362,0.012992692,-0.008165831,-0.020373574,0.0022479468,0.01983465,-0.036107734,-0.03036705,-0.00428794,0.0048005013,-0.026454013,0.02640715,-0.0027341475,0.018089015,0.008581738,-0.033366267,-0.030859109,0.019284014,-0.0072285766,0.035779696,0.0056967507,0.004633553,0.0012418624,-0.03430352,-0.018053867,-0.021509994,-0.02467323,0.020525876,0.0002685454,-0.02162715,-0.008962497,-0.016858868,-0.0047038468,-0.005582523,0.01484377,0.05951567,0.014129113,-0.013414457,0.021158524,-0.0049791653,-0.02296274,0.03203068,-0.0051256116,-0.027977051,0.006554925,0.0049410895,0.008827767,-0.014433721,-0.0012916541,-0.021287397,-0.004879582,0.008704753,0.015324114,-0.040348813,-0.0035322784,-0.012184311,0.0070118364,0.013355879,0.01278181,-0.0007593227,-0.033928618,0.0011949997,-0.018581074,0.015699016,0.03514705,0.0072227186,0.0013209432,0.028492542,-0.0015376834,-0.011170904,0.01579274,0.024462346,0.0033213962,-0.024462346,0.024368621,-0.031023128,0.025633914,-0.017643819,0.0115985265,0.012840388,-0.037982244,-0.014820339,-0.0019067274,-0.029992148,0.019682348,-0.00029069537,0.022107493,0.037466753,-0.0036670088,0.025985384,-0.0009921719,-0.008177547,-0.04391038,0.017315779,0.008745758,0.022751857,-0.023302494,-0.039364696,-0.014761761,0.051033515,0.011446223,-0.01945975,-0.0029816413,-0.007726493,0.011610242,-0.01004034,0.009647865,-0.012078869,0.0049615917,-0.010005194,0.018499063,0.01983465,-0.024157738,0.059562534,-0.017971858,0.025493326,-0.04632381,0.03596715,0.026688326,-0.010485536,-0.0036875112,-0.010479678,0.00022534384,-0.0042205746,-0.030554501,0.016237937,0.004926445,-0.00023248309,-0.017058035,-0.0048620086,-0.02982813,0.03538136,0.020432152,0.0043875235,-0.024907542,0.002086856,-0.015265535,0.007211003,0.009114802,0.023161905,-0.0017456368,0.0067716646,-0.005541518,-0.0026477443,-0.0047155623,-0.03631862,0.0036523642,-0.0061975964,0.01940117,-0.033975482,0.021615434,0.025094993,0.024720091,-0.019822937,0.0007282029,0.01983465,0.030882541,0.0043758075,0.0050377436,-0.0014168654,-0.0076737725,0.012723232,-0.0018935472,0.018721662,0.012547497,0.02220122,0.028234797,-0.0061214445,-0.0050494596,-0.0031515188,-0.028609699,0.0000034609318,0.016647985,-0.0069005373,0.021861464,0.0143399965,-0.009811885,-0.014035388,0.011703967,0.0042440062,-0.029617246,0.019342592,0.03976303,0.013332447,-0.006654508,0.003292107,-0.028164502,0.017995289,0.03189009,0.014011957,0.0054038586,0.017292349,-0.016495682,0.011580952,-0.017409505,0.011042031,-0.043512046,-0.0060042874,-0.029453227,-0.007738209,-0.00091528776,0.011024457,0.01025708,-0.0026726401,0.021556856,-0.0023782838,0.017514946,-0.042270184,-0.010409384,-0.014820339,-0.0062327436,0.0008032565,0.0027019293,-0.030132737,-0.018194456,0.0012360045,0.012114016,0.050189987,-0.03805254,-0.00583441,0.007234434,0.025868228,0.038685184,-0.01706975,0.025165288,0.028305091]},{"id":"interface-APIProfileResponse","type":"interface","source":"main","text":"Interface: APIProfileResponse\nDescription: Full profile response from GET /users/{id}/profile.\nOptionally use ?guild_id=GUILD_ID for server-specific profile.\nProperties: connected_accounts: APIConnectedAccount[] | null, mutual_guild_ids: string[] | null, mutual_guilds: { id: Snowflake; }[] | null, user_profile: APIUserProfile | null","meta":{"url":"/docs/typedefs/APIProfileResponse"},"embedding":[-0.0074085873,-0.0023693999,0.020854235,0.025695605,0.03361998,-0.045037646,-0.015145402,0.0082115745,0.040489335,0.025132928,0.0073616975,-0.03451089,0.028485548,-0.009249011,-0.016399704,-0.00038684078,0.0021334856,0.039481204,-0.041263018,0.04620989,0.0049204975,0.0015561549,0.024875036,0.018357353,-0.030783148,0.042177368,-0.029868798,0.012636799,0.008739085,-0.008662889,0.016927214,-0.021076962,0.037629057,0.010632261,0.044873532,-0.028602773,0.020080553,0.034112323,0.0005667071,0.008809419,-0.005342506,-0.00957724,-0.0016836366,0.023632456,-0.031158267,0.036269255,0.0057967505,-0.0023811222,0.012097566,0.028274544,-0.031931948,-0.01043884,0.019177925,0.03992666,0.011165632,-0.017407835,-0.012226514,-0.012343737,-0.0606285,0.03854341,-0.024218578,-0.0074261706,0.027078854,0.002016261,0.02719608,-0.02911856,-0.0013026571,0.02163964,0.014711672,0.02216715,0.04721802,-0.010632261,-0.018216684,0.027266415,0.02131141,0.007971264,-0.016458318,-0.032283623,-0.017782953,-0.07333563,-0.020326724,0.034979783,-0.02457025,-0.076758586,-0.004621575,-0.007848179,-0.013422203,-0.017020995,-0.004735869,0.06259787,-0.012695411,-0.006968995,-0.039621875,-0.027735312,0.019213092,-0.09987526,0.023948962,-0.0026404813,-0.032541517,0.053595033,0.06020649,-0.0041673305,-0.018275296,-0.05167255,0.029728128,0.01647004,-0.0014418612,-0.0052106283,-0.000785404,0.013469093,-0.025179818,0.025297042,0.0017202692,-0.0047856895,-0.028274544,0.013656652,-0.009583102,-0.0047768974,0.030478364,-0.015731525,-0.03633959,0.007918513,0.04965629,0.0062363422,0.007215167,-0.0056209136,-0.0065997383,-0.028884111,-0.059409365,-0.00022584028,-0.05336058,0.0012960632,0.0068224645,0.034721892,-0.039973546,0.0045571015,0.0031035182,-0.0438654,-0.006048783,-0.044568747,-0.017126497,-0.024335802,0.0045102118,0.014746839,-0.08810592,-0.0009832203,-0.02039706,0.028040096,-0.018568357,-0.008528081,-0.019705435,0.010374366,-0.0629261,-0.0023298366,0.025789386,-0.040020436,0.0013707938,-0.030572144,-0.017513337,-0.004993763,0.030900372,-0.04320894,-0.037816618,0.008147101,-0.0022756201,-0.002121763,0.048718493,0.03275252,-0.042177368,0.010761207,-0.020479117,-0.007010024,-0.1028762,-0.0057586525,-0.024406137,-0.042013254,-0.031486496,-0.0023869835,-0.042552486,-0.046889793,0.029376455,-0.0026888365,-0.026469288,-0.07225717,-0.038379293,0.034698445,-0.029564014,-0.010825681,0.036175475,0.008680473,0.008135379,0.025367377,0.021545859,0.001767159,-0.011915868,-0.052375898,0.03734772,-0.0047651753,-0.048015147,0.009893746,0.024828145,0.000016553378,0.063582554,-0.014406889,-0.014934399,-0.019623378,0.048343375,-0.014242774,-0.044943865,-0.013246366,0.006435624,0.0202095,-0.02264777,0.03476878,-0.026070725,-0.030970708,-0.03371376,0.0064297626,0.040020436,0.014957843,-0.03012669,0.06123807,0.04051278,-0.009981665,0.01398488,-0.0008125122,0.0000049482696,-0.025554936,-0.0060605058,-0.008387412,-0.004841371,0.027735312,-0.021862365,-0.04079412,-0.029845353,-0.014547558,0.03012669,0.05823712,0.003777559,-0.041309908,-0.013035363,-0.024148243,0.022155426,0.0479917,0.018064292,-0.018087737,0.008633583,-0.037699394,-0.02811043,0.04229459,0.004208359,0.019271705,0.0048911916,-0.0040764813,0.013586317,-0.04290416,0.01130044,0.0045219343,0.030501809,-0.023573844,0.008463607,0.040161107,-0.031580273,0.024335802,-0.03854341,0.003759975,0.016610708,0.008985257,-0.046702232,0.05186011,-0.021956146,0.020795623,0.037183605,-0.016434873,-0.04372473,0.008744946,0.015731525,0.00023683008,-0.0040588975,-0.0034815671,-0.015637746,-0.01996333,0.0068459096,0.033596534,0.010263003,0.007379281,0.020502562,-0.025578381,0.036597483,0.022272652,0.03992666,0.020174334,0.0351439,-0.008352244,0.019189646,0.00078979996,0.03605825,0.020139165,0.06588016,0.017818121,0.024968814,-0.046796013,0.014324832,-0.029798463,0.017982235,-0.017923623,0.0043226527,-0.011657975,0.0109897945,-0.010304032,-0.007719232,-0.006968995,-0.032189842,0.031767834,-0.06283232,-0.04564721,0.015965974,0.008229159,-0.008909061,0.021194186,0.00818813,-0.046772566,-0.037816618,-0.049796958,-0.036738154,-0.019975051,-0.028016651,-0.054954834,-0.0067228237,0.03730083,0.034792226,-0.043959178,-0.04712424,0.023151835,0.021498969,0.018955199,-0.003337967,0.036363035,0.034252994,-0.007725093,0.021006627,-0.0031914364,-0.042482153,-0.016481763,-0.01695066,0.011616946,-0.024101352,0.050265856,-0.03844963,0.0013253692,0.019658545,0.03270563,0.01775951,0.0115290275,0.040395554,-0.051719442,0.029821908,0.009460015,-0.018650414,0.05200078,-0.023233892,-0.023245614,-0.012238235,0.02360901,-0.0036574039,0.015344684,-0.004621575,0.017900178,-0.008633583,-0.0702878,0.011276995,0.004281624,-0.017267166,-0.028086985,-0.0018814529,0.026211394,-0.062457204,-0.0007839387,-0.0010586836,-0.00392702,0.052422788,0.04281038,0.036456812,-0.042833824,0.04170847,-0.02370279,-0.02331595,-0.011124603,-0.04529554,-0.011224244,0.064567246,0.003918228,0.0007491377,-0.08374517,0.026117614,-0.03936398,0.021991313,0.0015664122,0.0056912485,-0.057955783,0.010878432,0.008991118,0.034675002,-0.007689926,-0.018580081,-0.016962383,-0.011083575,-0.0012755488,0.0004340969,-0.035331458,0.017548505,-0.024968814,0.009108342,-0.0206784,0.050640974,-0.07375764,-0.032400846,-0.015766693,-0.0041057873,0.036363035,-0.034370217,0.008451885,-0.0036339588,-0.006459069,-0.012683689,-0.03591758,0.023327671,-0.014031771,-0.018509746,-0.040207997,-0.05003141,0.013480815,0.053266805,-0.018462855,0.009536211,-0.025461158,0.057486884,-0.013433926,-0.037136715,0.028907556,0.010567787,0.023691067,-0.021475526,-0.036034804,-0.025250154,-0.026305173,0.034721892,-0.040958233,0.0028192487,0.036222365,-0.013879378,0.055001725,0.038660634,0.03779317,-0.014406889,-0.031908505,-0.0300798,0.023421451,-0.0031621302,0.0057733054,0.02843866,-0.008850448,-0.039082643,0.03547213,0.008270187,0.0002511168,-0.03404199,0.0031035182,-0.021733418,0.014664782,-0.011019101,-0.0091552315,0.025203263,-0.0073148077,-0.012460962,-0.021299688,0.001108504,0.040043883,0.026211394,0.0339951,-0.013164309,0.011218383,-0.044404633,-0.023866905,0.050218966,0.06541126,-0.0033027998,-0.0074496157,-0.027031966,0.022999443,-0.018837973,-0.012965027,0.067943305,-0.010890154,0.027407084,0.008024015,-0.029845353,-0.06414524,0.035987914,-0.024898479,0.00948346,-0.022389876,-0.017079607,0.040114217,0.0117986435,-0.0065176813,-0.04951562,-0.035659686,-0.045623768,-0.0032734936,-0.014348276,0.055658184,-0.050312746,-0.025883164,-0.021745142,0.024664031,-0.057862002,-0.007349975,-0.0005571826,0.016153533,-0.01752506,0.0037218772,0.0076254522,0.030478364,0.02843866,0.016153533,-0.0081588235,-0.09302935,0.007250334,0.011757615,0.003997355,-0.005149085,0.035589352,0.023761403,-0.0038801304,0.010860848,-0.004601061,-0.026844407,0.016130088,-0.01738439,-0.024312356,-0.017536782,-0.008657028,0.038777858,-0.006248065,0.020619785,0.008024015,0.011065991,0.034932896,-0.010954628,0.012824358,-0.023069778,0.0030419752,-0.0010198529,-0.019306872,0.016317647,-0.0010410999,-0.039106086,0.015579133,-0.038777858,0.0031533386,-0.014020048,0.027946316,0.0045365873,-0.03453433,0.02452336,0.03371376,0.029821908,-0.022331264,0.009084897,0.023632456,0.01867386,-0.013093974,-0.031158267,0.04018455,0.0026360855,-0.03458122,0.046514675,0.011945174,0.054204598,-0.01924826,-0.03308075,-0.0017114774,0.028790332,-0.010409534,-0.015297795,-0.007273779,0.011359052,-0.0043021385,0.0321664,0.018169794,0.018896585,0.001288004,-0.0023430244,0.01570808,-0.008627722,0.034979783,0.017103052,0.0018228407,0.04161469,0.010602954,-0.0030419752,-0.03380754,0.009137648,0.027477417,0.0065059587,0.031181712,0.008686334,-0.033408977,0.0060839504,-0.02581283,0.011441109,-0.046092667,-0.0015165918,-0.012566464,0.022014758,-0.009823412,0.010022693,0.0064473464,0.00450142,-0.020455671,0.0040676896,-0.011452831,0.05167255,0.0066524893,-0.009448293,-0.06714618,-0.0049380814,-0.03012669,0.003625167,0.01140008,0.00972377,-0.012871248,0.025414268,-0.01819324,0.014066937,-0.010051999,-0.00876253,-0.009606546,-0.033221416,0.03505012,0.010163362,0.004258179,-0.0114469705,0.01958821,-0.021815475,-0.014981288,-0.016094921,-0.03200228,-0.00073192036,-0.022694658,-0.052844796,-0.002685906,-0.014524113,-0.004363681,-0.017736064,-0.004756383,0.027946316,-0.013773876,0.011915868,-0.023784846,0.040489335,0.025390822,0.0064532077,-0.006617322,0.03610514,-0.010837403,0.023691067,0.003572416,0.021346578,-0.017536782,0.028133875,0.02356212,-0.0034258855,0.009706187,0.009571379,0.0030243916,-0.033408977,-0.012824358,0.001374457,0.011235966,-0.006248065,-0.02581283,-0.009079036,-0.005870016,-0.015379852,0.05870602,-0.008311216,0.027805647,-0.013668374,0.004864816,0.023597287,0.025062595,-0.009125926,0.005749861,-0.021967867,0.009852718,0.013773876,-0.013832489,0.019295149,-0.020432226,-0.021850644,-0.0071506933,-0.034979783,0.0108549865,0.042153925,-0.0006593877,0.015473631,0.014934399,-0.032822855,-0.04965629,0.00799471,-0.042997938,0.01727889,-0.0018360284,0.026469288,-0.040536225,-0.02916545,0.04463908,-0.0004941744,0.029775018,-0.0086687505,-0.0140903825,0.008985257,0.021229353,0.003587069,0.023866905,0.026820961,0.020666676,-0.010544342,-0.0032910772,-0.0055710934,-0.022178872,0.009969942,0.010526759,-0.0043167914,0.034675002,0.028040096,-0.023960683,-0.0050582364,0.026891295,-0.0010689407,-0.024148243,-0.0074203094,-0.029470235,-0.003759975,-0.0146296155,0.039528094,-0.0083463825,-0.008944227,-0.02820421,0.006986579,-0.000929004,-0.0040911343,0.013035363,-0.027688421,-0.002077804,0.035706576,-0.039129533,-0.009706187,0.028602773,0.01311742,0.035190787,0.047897924,-0.02581283,0.018826252,0.022038203,-0.021721696,0.046467785,-0.008498775,-0.0072327503,0.0024001712,-0.0004685316,0.00995822,0.04424052,-0.03394821,-0.026211394,-0.014383444,0.026023835,-0.018310463,0.036714707,-0.011763477,0.045764435,-0.01915448,-0.0099113295,0.018251851,0.02921234,-0.016059754,0.027383639,-0.03544868,-0.022858774,-0.0023679344,-0.026211394,-0.024124797,-0.011124603,0.013785599,-0.015954252,-0.06728685,0.038519964,0.027266415,-0.06644283,0.0038127261,0.00971791,-0.00022052856,-0.004416432,-0.06930311,-0.037769727,0.03983288,-0.039668765,0.0051109875,-0.013070529,0.012144456,0.02092457,-0.011130464,-0.017736064,0.022659492,0.0028470897,-0.024640586,-0.007484783,-0.011898285,0.030103246,0.021287965,-0.013644929,-0.002763567,-0.01240235,0.053688813,-0.057439994,-0.012894693,0.0143599985,-0.0074144485,-0.01163453,-0.008440163,0.00020807346,0.006681795,0.00972377,-0.031111376,0.0031972977,0.009202122,0.012062399,0.032307066,0.0019664406,0.010245419,0.04166158,-0.033362087,0.022284374,-0.025015704,0.053641923,-0.024617141,-0.0034170935,-0.0020089345,0.00995822,-0.012179623,0.024406137,-0.041450575,0.013093974,-0.03922331,-0.029775018,0.010409534,0.021803753,0.02303461,-0.030876927,0.014617893,-0.0036310283,-0.022870496,0.0035138037,-0.002269759,0.0071565546,-0.0230815,-0.003950465,-0.020654954,-0.040348668,0.008780113,0.015121958,0.009981665,-0.0048472323,0.011329746,-0.019529598,-0.003563624,-0.0018961059,0.08229159,-0.027266415,-0.015344684,0.007226889,-0.022671215,0.014254496,0.00847533,-0.011939313,-0.021756863,-0.011224244,0.028133875,0.014981288,-0.015590856,-0.0020426365,0.014031771,0.005612122,0.0017041509,-0.02035017,0.047569692,0.0030478365,-0.0022756201,-0.003935812,-0.02581283,-0.043560617,0.037183605,0.057158656,-0.024875036,0.040114217,-0.027360193,-0.015508799,0.004281624,0.009612408,-0.0073441137,-0.01130044,0.023597287,-0.00289691,0.02183892,0.020021942,-0.0038684078,0.032307066,0.016774824,0.025062595,0.01747817,0.019494431,0.0068400484,-0.025976945,-0.015555688,0.029142005,-0.05162566,0.014770284,0.021979589,0.0038654772,-0.022155426,0.02399585,-0.0008432836,-0.041309908,0.0012000856,0.012859525,0.01350426,0.011482138,-0.019131035,-0.0259535,-0.018709026,-0.021815475,-0.0124726845,0.025883164,-0.012191346,-0.026258284,0.0009634387,-0.020737011,-0.03706638,0.017888455,0.024546806,0.0259535,-0.025578381,-0.0026551345,0.0052311425,0.050172076,0.0071858605,0.051719442,-0.003935812,0.008457746,-0.03706638,-0.047147688,-0.024007574,-0.009917191,-0.07272607,0.038074512,-0.010761207,0.0038244487,0.032494627,-0.004870677,-0.04740558,0.07277296,0.020514283,-0.010597093,0.013140864,-0.0014902162,0.0023093224,0.00007963022,-0.022565713,-0.011265272,0.06081606,-0.013773876,-0.0006374081,-0.035730023,-0.009067314,-0.037699394,0.01757195,0.03444055,0.021627916,0.007144832,0.009653436,-0.022905663,0.013715264,0.02030328,-0.02264777,-0.0013773877,0.038566854,0.013187754,0.024921924,-0.015403297,-0.008006432,0.032822855,-0.039621875,-0.0010198529,-0.016341092,0.0019605793,0.012214791,-0.008563248,0.02796976,-0.009506905,-0.008410856,-0.0069807176,-0.022014758,-0.02179203,-0.027782202,0.0017349223,0.01532124,-0.01043884,-0.01699755,0.029986022,-0.027078854,-0.00018719284,-0.0007839387,-0.015743248,-0.027758757,0.014254496,0.0023049263,0.039129533,-0.020854235,-0.03596447,0.025976945,0.0033203834,0.03256496,0.003519665,-0.018134627,0.009114203,0.028016651,0.0135511495,-0.017630562,-0.015450186,0.011962758,-0.038144846,0.027360193,0.0075316727,0.01671621,0.0046039913,-0.009753076,0.037769727,0.0030859343,0.0039563263,-0.021581026,-0.034229547,-0.022764994,-0.0036456813,-0.0033408976,0.0032647017,-0.0225071,0.015297795,-0.0055916077,-0.020619785,0.016305925,0.033502758,-0.024781255,0.003179714,0.016622432,-0.00761373,0.016587263,0.01297675,-0.0036368894,0.015473631,-0.027360193,0.010896015,-0.046772566,0.013902823,0.03549557,0.0500783,-0.010397811,0.005981379,-0.019928161,0.0028866527,-0.0037277385,0.00050113467,0.013961435,-0.04740558,-0.008674611,-0.0070979423,0.014383444,0.008598415,-0.0075140893,-0.038074512,0.03155683,-0.017349223,-0.005483175,-0.018744195,0.034839116,0.02064323,-0.055001725,-0.009952358,-0.018744195,0.0015869264,0.018415965,0.0019166203,0.040254887,-0.023913793,0.01584875,-0.019131035,0.011335608,-0.044217072,0.0024001712,-0.0045248647,0.032541517,-0.0005209163,0.0011165632,-0.023421451,-0.030994153,0.031392716,-0.001463108,0.0047182855,0.024312356,-0.012660244,-0.017607117,-0.009084897,0.036761597,0.012285125,-0.018017402,-0.02911856,-0.0056619425,-0.017642284,-0.009753076,-0.004727077,-0.029024782,-0.0069162445,-0.017103052,0.0206784,0.0027020243,-0.04970318,-0.02145208,0.005612122,0.013750431,-0.038379293,0.004946873,0.011851395,0.017876733,0.0014543162,0.026586512,-0.010667427,0.050547197,0.018709026,0.005861224,-0.016739655,0.033737205,0.012296848,0.031205157,0.031838167,-0.0014088918,0.021557583,0.009465877,-0.009700325,-0.005061167,-0.009987526,0.0033115915,0.008791836,-0.0219327,0.035167344,0.01724372,-0.011974481,0.010655705,-0.004035453,0.018709026,0.0127423005,-0.00032914436,-0.021534137,0.04093479,0.005491967,0.016387982,0.033362087,-0.015344684,-0.02705541,-0.017900178,0.0054480075,-0.009987526,0.0042699017,0.0016367468,-0.014946121,0.012144456,0.015051623,0.017982235,-0.035941027,-0.00799471,-0.0008711244,-0.04428741,0.015930807,0.019822659,-0.022448488,0.005799681,-0.00056597445,-0.043607507,0.009700325,0.0029525915,0.002375261,0.0058436403,-0.007889207,0.03136927,0.05443905,0.010204391,0.0045277956,0.00032969384,0.037324276,-0.028415214,0.007982987,0.039903212,0.011722448,0.018310463,0.008363967,0.018122904,0.03455778,0.03361998,-0.03390132,-0.0033262447,0.0027987345,-0.006042922,0.025203263,0.002567216,-0.013973158,-0.008088489,0.005204767,0.0036574039,-0.049843848,-0.019553043,0.0033819263,-0.02331595,0.03784006,0.003376065,-0.0017774162,-0.013680097,0.0146296155,0.012332016,-0.0362927,0.001391308,0.03720705,-0.015028179,-0.004448669,0.026938185,-0.017618839,-0.024218578,0.018591803,-0.031111376,0.021264521,0.044615638,0.0023899141,-0.011441109,0.019142758,0.013515983,0.016985826,0.015672913,-0.0026360855,0.0008974999,0.0122030685,0.011470416,0.022905663,-0.022296095,-0.04142713,0.04749936,0.0032266038,-0.010157501,-0.021030072,0.01747817,0.005837779,0.00032731274,-0.01943582,0.0000054576926,0.000751702,-0.001408159,-0.009307624,-0.00852222,-0.0032910772,-0.0422477,-0.002567216,0.034182657,-0.02447647,0.0036749875,-0.0013656652,-0.0068224645,-0.00497911,-0.01421933,0.010509174,-0.02112385,0.013773876,-0.029259231,-0.032775965,-0.001072604,-0.01130044,-0.012859525,0.0030859343,0.00493222,0.012953305,-0.019752325,0.000010531887,-0.037863508,-0.024171688,0.016727934,-0.002096853,0.013644929,0.045623768,-0.050218966,-0.0050113467,0.0015048692,-0.002489555,-0.036198918,-0.0184863,0.03505012,-0.0073441137,0.012601632,-0.017888455,-0.007402726,0.026375508,-0.008657028,0.007883347,0.005474383,0.003874269,0.00035149028,-0.02030328,-0.010872571,0.028977891,-0.0037189466,0.0020851304,-0.01924826,-0.017513337,-0.014805452,0.018521467,0.013715264,-0.014336553,0.027360193,-0.016176978,-0.013082252,-0.036808487,-0.011194938,0.010362644,0.002652204,-0.05181322,0.006113257,-0.0010982469,-0.011148048,-0.014371721,-0.0097765215,-0.026258284,0.01455928,0.045412764,-0.0113942195,-0.007162416,-0.025554936,0.015051623,-0.0059784483,0.03204917,0.010896015,0.004085273,-0.03540179,0.02935301,0.030197026,-0.01704444,0.023550399,0.015965974,-0.020842513,0.020948015,0.013304979,0.041638136,0.037183605,0.025015704,-0.013633207,-0.05870602,0.010204391,-0.00885631,0.009934775,0.006933828,-0.025179818,0.0028719997,-0.011083575,-0.00909662,-0.020057108,-0.039387424,-0.017513337,-0.018216684,-0.04721802,-0.025320487,0.016305925,0.029798463,-0.0062715095,-0.036949158,-0.0020426365,-0.0078599015,-0.0043548895,-0.016493484,0.053501252,-0.009876163,-0.030384585,0.017747786,0.02183892,0.03448744,0.000055040557,0.007771983,0.017947068,-0.014301387,0.007502367,-0.020150889,-0.024406137,0.010708456,-0.018298741,0.008586694,0.028274544,-0.02571905,0.030665925,0.0179119,0.015532244,-0.024781255,-0.015028179,-0.00005243048,-0.013621485,-0.0010821285,-0.0063945954,0.0010073979,-0.03413577,-0.027383639,-0.023222169,-0.016622432,0.022202317,0.0016133019,-0.011200799,0.07005335,0.010942905,0.013410481,-0.0020821998,0.037511833,-0.026797516,-0.024664031,0.025883164,0.012132734,-0.017103052,0.029001337,0.011763477,-0.00061982445,0.008721502,0.004366612,0.0039211586,-0.024195133,0.041309908,-0.0039592567,0.0030976569,-0.036761597,0.0230815,-0.016259035,-0.039129533,0.018427689,-0.03294008,0.013656652,-0.04946873,0.0014191489,0.0048501627,-0.0052692406,-0.005084612,0.014195885,0.0020646162,-0.008117795,0.0351439,0.021287965,0.040161107,-0.009840995,0.05387637,0.0037716976,0.016223868,-0.022378152,0.030337695,0.046655342,0.037042934,0.046444338,-0.008914921,-0.0023957754,-0.023151835,-0.00075536524,0.013222922,-0.0028221793,-0.0037980732,0.004343167,-0.019517876,-0.010937044,-0.033151083,-0.01920137,-0.032283623,-0.019810937,-0.020795623,-0.028040096,-0.00613084,0.023714513,-0.0006319132,-0.02140519,-0.009278318,-0.011558333,0.03547213,0.04740558,0.03247118,0.0041263015,-0.021534137,-0.0321664,-0.008563248,-0.019810937,-0.0024880895,0.0062128976,-0.03945776,-0.0059784483,-0.005239934,0.023151835,-0.02457025,0.053173024,-0.0020294487,-0.024945369,0.015790137,-0.001233055,0.0051608076,0.014910954,-0.014102105,-0.02457025,-0.016938938,-0.014852341,-0.013703542,0.015204015,0.007349975,-0.016024586,0.031134821,0.03298697,-0.04229459,-0.0005982112,-0.016294202,-0.020150889,-0.0058582933,0.018955199,-0.000365777]},{"id":"interface-APIReactionEmoji","type":"interface","source":"main","text":"Interface: APIReactionEmoji\nProperties: animated: boolean | null, id: string | null, name: string","meta":{"url":"/docs/typedefs/APIReactionEmoji"},"embedding":[0.014155989,0.003508383,-0.039675955,0.025764879,-0.016960245,0.00047643288,0.009478144,-0.01705821,0.031177461,-0.013947812,-0.0018812402,-0.024613786,0.029022224,-0.020156363,-0.00049633207,0.006814712,-0.016311225,0.009306705,0.010598622,0.026842497,-0.013935566,-0.0038573842,0.028973242,0.04621514,0.038426895,0.03352863,-0.050550103,0.010476166,0.0006708328,-0.026573092,0.014670306,-0.02929163,0.09247926,-0.004282921,-0.011370099,0.011014976,-0.04239449,-0.0009008217,-0.04741521,-0.010114918,-0.053146183,-0.03908816,0.007084117,0.04312923,-0.06152222,0.037692156,-0.031936694,0.01889506,0.0078004883,0.023487184,-0.016556138,0.03774114,-0.018686883,0.031716272,-0.008400526,-0.033798035,-0.022874901,0.011217029,-0.046778437,0.016274488,0.016531646,-0.02293613,-0.006924923,-0.0072433106,-0.025568947,0.0048370375,-0.07827429,0.0429333,0.04606819,-0.033430666,0.07357195,0.021246228,-0.028973242,0.022091178,0.00936181,-0.00087709574,-0.031201953,-0.015490766,0.01446213,-0.029512051,-0.029144682,0.057358693,-0.03152034,-0.084935926,-0.004797239,-0.014633569,-0.0361492,-0.059709862,-0.053733975,0.0046594753,-0.0062361048,0.030614162,-0.124709845,-0.033332698,0.001122009,-0.021858511,-0.0032757153,0.01511115,-0.006980029,0.048566304,0.035365477,-0.030320264,-0.066665396,0.022336092,-0.016115295,0.03573285,-0.010280236,0.020915596,-0.040876027,-0.005048275,-0.040998485,-0.001009502,-0.0014756026,0.000088637564,-0.017817441,-0.03867181,0.016433682,0.0071208538,-0.008602579,-0.055595316,-0.022629987,-0.025911827,0.07009418,0.0022210574,-0.0073902584,-0.0017266386,-0.008100507,0.0040043322,-0.0533911,-0.020756401,0.0010523618,-0.010935378,-0.01824604,0.00028949516,-0.01621326,-0.0007339745,-0.002605265,0.011780329,-0.030001879,0.038990196,0.01372739,0.012919176,0.01156603,-0.008988318,-0.017082702,0.015723433,-0.0038298315,0.0072371876,0.013678407,-0.0014342734,0.012239542,0.030075353,-0.05015824,-0.013262055,0.014853991,-0.024626032,-0.004053315,-0.007224942,-0.010770062,-0.019017518,0.013482477,-0.07905801,-0.007892331,-0.02064619,-0.026744531,0.036443096,0.010721079,0.012166068,-0.021515632,0.015686696,0.033455156,-0.018025618,-0.07533533,-0.018344006,-0.056525987,0.0017082702,0.063530505,0.02047475,-0.046533525,0.061228324,0.04364355,0.057407673,-0.06010172,-0.04222305,0.03668801,-0.002133807,-0.042663895,0.026793513,0.01858892,-0.029193664,-0.009459776,0.062012047,0.03154483,-0.012674263,0.028899768,-0.042516947,0.036981907,-0.020144118,-0.023193289,-0.038059525,0.028556889,0.03024679,0.061473235,-0.017462317,-0.023719853,-0.005795261,-0.041806698,-0.045210995,-0.00021085504,-0.012808965,0.0652449,-0.028850786,0.002994065,-0.021687072,-0.05295025,-0.026083264,-0.0023481061,0.04621514,-0.0050329682,0.0471703,-0.049643923,0.016372453,0.08111528,-0.04366804,0.0019011394,0.026254704,0.016115295,0.02112377,-0.028067064,0.028630363,-0.04917859,0.016164277,-0.011878295,-0.020633945,0.014756026,-0.026083264,0.017462317,-0.0025914887,0.003056824,0.0035206284,0.0043839477,-0.013176335,0.004077806,0.017450072,0.014805009,0.04219856,0.037937067,0.019201202,-0.013262055,-0.009355688,0.02875282,0.0073657674,0.034312353,0.025299544,0.002228711,-0.04276186,-0.034949128,0.049105115,0.015037676,0.016262243,0.01722965,-0.020242084,-0.01307837,-0.0070779943,0.00350226,-0.024760734,0.025960809,0.053538047,-0.008914844,-0.015527503,0.035243023,-0.0049196957,0.017952144,0.038892232,-0.009196494,0.024087222,0.01923794,0.032034658,-0.048713252,0.03169178,-0.024454592,-0.021821775,0.027920116,-0.007745383,-0.028997734,0.020940086,0.036394116,-0.01446213,0.009986339,0.003979841,0.03551243,-0.0017557221,0.032402027,-0.043031264,0.01606631,0.043349653,0.044990573,-0.009227108,0.06176713,0.004641107,0.04014129,-0.066028625,0.026426144,-0.0069126775,-0.0046625366,0.030565178,-0.009839391,0.055399384,0.01923794,-0.0010906295,0.03703089,-0.007341276,-0.016078558,-0.041953646,-0.068673685,-0.021503387,0.038035035,0.034581758,0.0018950165,0.011743592,-0.0044910973,-0.02027882,0.0071024853,-0.02892426,-0.04609268,-0.04237,0.0519706,-0.02285041,0.051872633,0.03553692,0.014976447,-0.044157866,0.012686509,0.031055005,0.083515435,-0.017548038,-0.026597584,0.03480218,-0.008767895,0.028140537,0.06460813,-0.030001879,-0.034753196,0.0033124522,0.047660127,-0.038059525,-0.025324034,-0.0180746,0.017266387,0.00797805,-0.017915407,0.016017329,-0.056770902,-0.050599087,0.014707043,-0.027846642,-0.017621512,-0.009502635,-0.033675577,0.042492457,0.00009466473,0.01951959,0.03208364,0.031226445,0.0014985632,-0.020486997,-0.005841182,0.022972867,0.04055764,-0.06372644,0.005112565,-0.009674075,0.002045026,-0.025470981,-0.010629237,0.004965617,-0.045798786,-0.0076780315,-0.0002762928,0.0060524195,0.031250935,0.02008289,-0.033993963,-0.024638277,-0.0058013834,-0.033259224,-0.012772228,-0.008363789,-0.02471175,0.047709107,0.07494347,-0.022189144,-0.06906555,-0.016360208,0.012447718,0.007341276,-0.015294835,0.018650146,0.029438578,-0.006606536,-0.003811463,-0.01852769,0.020119626,0.018907307,-0.0056972955,-0.01640919,-0.017658249,0.014315181,0.0556443,-0.012245664,0.05530142,-0.031250935,0.028311977,0.05637904,0.0046288613,-0.033479646,0.015662204,-0.055693284,0.0033063295,0.02728334,-0.028630363,-0.042541437,-0.031201953,-0.05990579,-0.02652411,0.023621887,0.030834584,-0.012821211,-0.0074882237,-0.035365477,-0.008908721,0.014756026,0.03744724,-0.007347399,0.053880922,-0.03284287,0.03779012,-0.016825544,-0.023254517,-0.0030399861,-0.033675577,0.00458294,0.035145056,0.019470606,-0.0111129405,-0.009759795,-0.025691405,-0.033675577,-0.03943104,-0.033577614,-0.061081376,0.032402027,-0.029536543,0.04555387,0.00021372511,-0.027503762,0.030173317,0.0142294625,-0.010433306,0.003612471,-0.0026221029,0.0065146936,-0.006496325,0.043104738,0.020903349,-0.0142294625,-0.04014129,0.008816878,0.021564616,-0.015380555,-0.024148451,-0.010598622,0.051480774,-0.007586189,-0.014278444,-0.031593814,0.033430666,-0.04072908,0.024417855,0.0010630768,-0.01753579,0.05304822,-0.005103381,-0.0632856,0.0025088305,0.09047097,0.013188581,-0.029536543,0.0069983974,0.018821586,0.016225506,0.014327427,-0.006275903,-0.01279672,0.016837789,-0.01647042,-0.021601353,-0.043912955,0.00594527,-0.030467214,0.04824792,-0.034875654,-0.020217592,0.0020067582,0.02818952,0.01714393,0.038941212,-0.013433494,-0.026646566,0.0053176796,0.02929163,-0.0070718713,-0.021858511,-0.012723246,-0.016666349,0.0017572528,-0.038647316,0.005332987,-0.0062054903,0.003964534,0.015784662,-0.003141013,0.052656356,0.007965805,-0.0016899017,-0.021491142,0.015417292,-0.07058401,-0.03210813,-0.016641859,0.012221173,-0.013200826,0.023940274,0.01165175,0.0047268267,0.015943855,-0.025397507,-0.008014787,0.011259888,-0.031226445,0.01623775,0.0074943467,0.042541437,-0.025324034,-0.019507343,0.0604446,-0.03764317,0.024479084,0.0019669598,0.009974094,0.011100695,-0.030197809,0.031030513,-0.043741513,0.0068698176,0.018197058,0.010739448,-0.011504802,0.02747927,0.0074576098,-0.019923696,-0.01141296,0.017388843,-0.014327427,-0.02507912,0.0029006917,0.031985674,-0.00019028614,-0.026254704,0.014584586,-0.010819045,0.0060677268,0.0000728043,0.017572528,-0.010059813,0.017364353,-0.0012391082,0.02349943,0.020486997,-0.03903918,-0.014413147,-0.0061901836,0.0049472484,0.032548975,-0.0028440556,0.01647042,-0.014547849,-0.032524485,-0.021148263,0.016335716,0.009539372,-0.0018031741,-0.004619677,0.02053598,-0.020621698,0.0014465192,0.00778212,-0.0058136294,0.0041359733,0.0050390908,0.020780893,-0.009312828,-0.020633945,-0.009674075,0.033896,0.032010168,-0.009955726,-0.03392049,-0.042467963,0.009582233,-0.04609268,0.026769023,-0.019103236,-0.060003757,-0.04001883,-0.0075249607,0.0035543041,0.005201346,-0.012184436,-0.036394116,-0.047488686,0.0223116,-0.0026986382,0.0132743,-0.002752213,0.0073535214,-0.002254733,-0.028238501,0.005017661,-0.00391249,0.00073359185,-0.0086821765,-0.023830064,-0.01982573,0.0064044823,-0.008180104,0.012955913,0.015356063,0.011645627,0.008994441,0.008614825,0.0135437045,0.04327618,0.024025993,0.021160508,0.0054401364,0.003943104,-0.016935755,0.018441971,0.032646943,-0.008939335,-0.0097291805,-0.0069861514,-0.011719101,-0.0031058067,-0.008418894,-0.025128104,0.031618305,-0.015870381,-0.0074025043,0.02728334,0.00888423,0.00042056205,-0.006539185,-0.01965429,0.033626594,0.024650523,-0.008265823,-0.01409476,-0.011498679,0.029340612,0.022617742,-0.011725224,0.017266387,0.009074037,-0.050403155,0.003949227,-0.0302223,-0.010335341,-0.0034165403,0.020633945,-0.024760734,-0.035806324,-0.006119771,0.016556138,-0.016592875,0.028507907,0.006392237,-0.0020542103,-0.0066616414,-0.0041359733,0.024344381,0.0060952795,0.016433682,0.027087409,0.011823189,0.020621698,0.0180746,0.013617179,-0.0056911726,0.007873963,0.0042278157,-0.014327427,0.0009934296,0.011302749,0.0019547143,0.035659377,-0.0064779567,0.050746035,0.0030216177,-0.03321024,0.0022960622,0.00094674295,0.022874901,-0.0030920303,0.01429069,-0.0017113317,0.010947624,-0.005143179,0.016078558,0.020156363,0.001517697,-0.024919927,0.007965805,0.011682364,0.02799359,0.03095704,0.043472107,-0.024479084,0.015907118,-0.0047115195,0.02347494,0.004576817,0.021025807,-0.0064106053,0.021674827,-0.0021185,-0.0075616976,-0.010114918,-0.007886208,-0.0043074125,-0.0011013445,0.000092607836,-0.00045079354,-0.030001879,0.015172378,-0.014364164,0.0024935235,-0.02460154,-0.020021662,0.01796439,0.008124999,-0.036761485,0.015723433,-0.023732098,0.0125089465,0.0079841735,-0.019972678,-0.028067064,0.01364167,0.017609265,0.008725036,-0.01640919,0.02321778,-0.00030920302,-0.027748676,0.032720417,-0.0027093533,0.001960837,0.039896376,-0.0072371876,-0.01982573,-0.03242652,-0.02092784,0.038794264,-0.01511115,-0.0061350777,-0.014168234,-0.011584398,0.026769023,-0.025470981,-0.00020989834,-0.021711564,-0.03225508,0.02304634,0.0030874382,-0.0055595315,-0.0114741875,0.00077721704,-0.0107761845,-0.00838828,-0.0014304466,0.012882439,-0.06294271,0.033896,0.020511487,-0.0045125275,-0.06519592,-0.031226445,0.033234734,-0.024197433,-0.0042278157,-0.0135804415,0.0039737183,0.03810851,0.004530896,-0.017572528,0.034214385,-0.0062146746,0.0059636384,-0.036002252,0.010286358,-0.019935941,0.021919739,-0.009147512,0.01519687,0.0051186876,-0.017205158,0.023438202,-0.006459588,0.04016578,-0.007304539,0.034508284,-0.017621512,0.023903538,0.037520718,-0.0006272076,0.015086658,-0.018307269,0.0047635636,0.010947624,0.019433869,-0.00016837788,-0.0007622926,-0.009588355,-0.022262618,-0.019984925,0.04866427,-0.017903162,0.023548413,-0.014645815,-0.0030522319,0.0018368497,-0.015441783,0.04753767,-0.031055005,0.011945645,-0.019617554,0.010531272,0.045602854,0.020609453,-0.017413335,0.042174067,-0.051823653,0.012490578,-0.029732473,-0.054860577,0.019617554,0.03352863,-0.0062054903,-0.01184768,0.056428023,-0.0051615476,-0.032548975,-0.0024445408,0.03298982,-0.009796532,-0.0020419646,0.0015100435,0.0036155325,0.010310849,-0.015968347,0.04528447,-0.008039279,-0.0027506824,0.029952895,-0.019862467,0.003774726,-0.0016378576,0.0392596,0.001835319,0.018478708,0.044182356,-0.021785038,0.0069616605,0.014498867,0.017817441,0.017339861,-0.037814613,-0.0032481626,0.025446491,0.013947812,0.033381682,0.011210905,0.002185851,0.012576298,-0.015943855,0.049472485,0.002280755,-0.01835625,-0.052264497,-0.028826294,-0.015282589,-0.009110774,0.044892605,-0.00130799,0.04751318,-0.017719477,-0.023156552,-0.010365955,0.0128334565,-0.016727578,-0.0054891193,0.044378288,0.014400901,0.03132441,0.019899204,-0.036957417,-0.017694985,0.0030859075,-0.019127728,-0.007916822,-0.0023634133,0.016335716,0.011063958,0.018441971,-0.033896,-0.00072172884,-0.051480774,-0.0142539535,-0.01647042,0.012447718,-0.02293613,0.0037777876,-0.0025210762,-0.02561793,-0.007304539,0.011547661,-0.005562593,-0.0014465192,-0.032695923,-0.03835342,0.0097169345,-0.022262618,0.03281838,-0.015380555,-0.053929906,0.038279947,-0.0075310837,-0.012759983,0.028556889,0.01409476,0.044427272,-0.01156603,-0.044647694,-0.02457705,0.05030519,0.026230214,0.009643461,0.040508658,-0.04185568,-0.009416916,-0.046729457,-0.035316497,-0.0022776935,-0.014364164,0.0119334,0.0063738683,-0.012747737,0.011070081,-0.033993963,-0.021331947,0.02053598,0.039186127,0.007892331,0.024368873,0.014437638,-0.014841746,0.0021582984,0.00029944477,0.002285347,0.028605873,-0.0039829025,0.040631115,-0.037300292,-0.000862554,0.0040043322,-0.025715895,0.015037676,-0.008051524,0.0049686786,-0.012080348,0.029879421,0.018490953,-0.002343514,-0.0005858785,-0.026866987,0.036051236,-0.004803362,0.013617179,-0.02265448,-0.0011319586,0.015490766,-0.012894684,0.024160696,-0.0039002441,0.013433494,-0.008394403,0.017523546,-0.02129521,0.02496891,-0.0006428974,0.009894497,-0.049007148,-0.024736242,-0.026793513,0.01344574,0.015319326,-0.00888423,-0.0031226445,0.01971552,-0.003774726,0.049129605,-0.000072182454,0.0073106615,-0.029585525,0.014058023,-0.006826958,0.015000939,-0.018503198,-0.017854178,0.047978513,-0.012931421,0.028532399,0.0028624241,0.033626594,0.011302749,-0.0052197147,-0.02282592,-0.032867365,-0.01675207,-0.033626594,-0.015037676,0.03225508,0.033136766,-0.002689454,0.0076474175,-0.025936317,0.00317775,-0.014315181,0.012141576,-0.0060983407,-0.051676705,-0.0044604833,0.0077576283,-0.024295399,0.00704738,0.0104271835,0.011621135,0.026842497,-0.024160696,0.00045155888,0.0058871033,-0.01753579,0.031250935,0.03041823,-0.0067351153,-0.0034257246,0.0067657297,0.026132248,0.015037676,-0.034410316,0.05402787,-0.019188955,-0.0019118544,0.0015253506,-0.0051309336,-0.022189144,-0.032720417,-0.009331197,0.0026435328,0.0005698061,-0.018429724,-0.006318763,-0.00912302,0.027258849,0.009863882,0.018197058,0.0071943277,0.015062167,-0.046729457,0.026254704,-0.014523358,-0.03612471,-0.048615288,0.043790497,0.006980029,-0.015576486,0.036516573,-0.011076204,0.009514881,0.0039675953,0.0036002253,0.014878483,-0.008376035,0.048419356,-0.013139598,-0.039577987,-0.0201931,0.01593161,-0.01035371,0.026450636,0.0052135917,0.00521053,-0.057946485,-0.019495098,-0.018086847,-0.011841558,0.023083078,-0.0048339763,0.029095698,-0.012711,0.026646566,0.039602477,-0.021025807,-0.0056513743,0.009435285,-0.0046319226,-0.015368309,-0.004488036,-0.012759983,-0.021785038,0.0014824908,-0.034557264,0.0049625556,0.00024778338,-0.01141296,0.0037930945,0.013739635,-0.0059850686,0.0031058067,0.009741426,-0.0073657674,0.0050268453,-0.013874338,0.0067657297,-0.022642234,0.048174445,-0.0076045576,0.0017603142,0.00020798495,0.019642046,0.0059483317,0.021344192,0.042125087,-0.015735678,-0.034704212,0.0047207037,-0.017841933,0.0058932262,-0.0076474175,-0.024797471,0.008057647,0.009178125,0.0013409003,0.013323283,0.0013324814,0.004481913,0.03810851,0.01686228,0.031765252,-0.023144307,-0.020242084,0.0265486,0.016788807,0.0013998325,0.014058023,-0.009870006,0.0107516935,-0.0023128998,0.013421249,-0.007745383,0.014498867,-0.01759702,-0.0035879796,-0.0035879796,-0.017780704,0.013690653,-0.030295774,-0.025960809,-0.024503574,0.001072261,-0.023511676,-0.042835336,-0.046533525,-0.012772228,-0.014670306,-0.012527315,0.020670682,-0.0012980404,-0.0022057502,0.025397507,-0.011584398,0.0057126023,0.034655232,0.00592384,-0.023670869,-0.014388655,0.06980029,-0.032499995,0.006649396,0.028311977,0.06284475,0.03213262,-0.029610017,0.010200638,0.054615665,0.0058166906,-0.017792951,0.016311225,-0.0045431415,0.015723433,0.034018457,-0.002589958,0.0043135355,0.000592384,0.030663144,-0.003281838,0.0019837976,0.0073902584,0.02313206,-0.012202805,0.038769774,0.033944983,-0.028899768,-0.010806799,0.006107525,0.012233418,-0.009686321,0.013800864,0.026793513,0.0156009765,-0.0039033056,-0.0009191902,0.013788618,-0.019495098,-0.024528066,-0.027185375,0.011712978,-0.010451674,-0.011376223,0.0011067019,0.0041237273,-0.023168797,-0.009882251,0.0098149,0.022054441,0.0030491704,-0.00559933,0.025470981,-0.0053636013,-0.023266762,-0.027430288,0.017033719,-0.049496975,-0.033822525,-0.0044604833,-0.032646943,0.002302185,-0.021172754,-0.009110774,-0.009190371,0.0086454395,0.030565178,0.0018904244,0.0008089792,0.020854367,0.0035818568,0.010978239,0.028311977,-0.01429069,0.0007775997,-0.004377825,0.001171757,-0.0006972375,-0.05069705,0.019580817,0.031006023,-0.015858136,0.03284287,-0.031422377,0.03504709,-0.00014599127,0.010072059,0.024956664,-0.009723058,0.017192913,-0.02765071,-0.03681047,-0.017646002,-0.01852769,0.044304814,-0.0048003006,-0.026818005,0.0344593,0.006324886,-0.006165692,-0.023830064,-0.007151468,-0.04104747,-0.044084392,0.03409193,-0.013984549,-0.029805947,-0.0132743,-0.012576298,-0.00782498,-0.020621698,0.005871796,-0.018882815,-0.008192349,0.031373393,-0.01474378,-0.0021506448,0.020609453,-0.03166729,-0.02200546,-0.01437641,0.008173981,0.008498491,0.03485116,-0.003229794,0.020609453,-0.018086847,-0.015417292,-0.027773168,-0.03058967,0.009116897,-0.006003437,-0.016629612,-0.006361623,-0.03058967,-0.033087786,-0.015809152,0.028605873,0.03259796,0.020719664,-0.02129521,0.04881122,-0.010629237,-0.03039374,-0.009049546,-0.004331904,-0.047317248,0.022250373,0.01675207,-0.012227296,-0.016054066,0.010206762,0.022887146,-0.023707606,0.02239732,0.01279672,-0.026132248,0.00896995,0.014707043,0.004766625,0.009349565,0.0012574766,0.027577236,-0.029340612,-0.0020205346,-0.013127352,-0.0023511676,0.030369248,-0.0004014282,-0.00025467156,0.0024215803,0.019397132,-0.03977392,-0.015429537,0.03482667,-0.0065820445,-0.04014129,0.0024935235,-0.023389218,0.033969473,-0.010035322,0.010384323,-0.026058774,0.011749715,-0.03906367,-0.011033344,0.012049734,0.0022409565,-0.027160883,0.02324227,0.010770062,0.015674451,0.02931612,0.006612659,-0.016164277,-0.030099843,0.008088262,0.0014541727,-0.008486246,0.019666538,-0.018148074,-0.008516859,0.00814949,0.02561793,-0.0044176234,-0.024491329,0.029046716,0.01629898,-0.012502823,0.02310757,-0.019225692,0.016347962,-0.045945734,0.013151844,0.009086283,-0.027748676,0.01858892,-0.04457422,0.015882626,-0.076363966,0.002795073,0.038206473,0.029267138,0.004699274,-0.012735491,-0.0070657483,-0.020511487,-0.032695923,0.023768835,0.0025210762,-0.009833269,0.004074745,-0.008406648,-0.017866425,0.011014976,0.03521853,-0.0035114442,-0.034900144,0.005541163,0.0027414982,0.021405421,-0.008474,0.015037676,-0.0048431605,0.0037349276,0.027307833,-0.013862092,-0.00048906123,-0.031079497,0.022299355,0.0015138703,-0.019360395,-0.03739826,0.014474375,0.006924923,0.026205722,-0.032671433,0.00977204,0.01519687,0.02228711,0.005336048,0.02581386,-0.005106442,0.004974801,-0.0070657483,0.019213447,-0.001934815,0.023548413,0.019286921,0.034679722,-0.008504614,-0.0010959869,-0.019923696,-0.027381307,0.024148451,0.004371702,-0.019078745,0.0039369813,0.014682552,-0.003906367,-0.0142294625,0.0035941026,-0.021846265,-0.024503574,-0.0010370547,0.03127543,0.028091554,-0.032402027,-0.010041445,-0.015747925,0.04290881,0.036443096,0.030197809,-0.0361492,-0.015147887,-0.03213262,0.00029485265,0.0031379515,0.012894684,-0.013213072,-0.0035328742,-0.029193664,-0.003266531,-0.005884042,-0.00916588,0.0196298,-0.013506968,-0.0035573656,0.016960245,0.022862656,-0.015588731,-0.0010753224,0.001489379,-0.019213447,-0.012735491,-0.022972867,-0.043594565,-0.02635267,0.0021429912,-0.034998108,0.03776563,-0.04844385,-0.0054064607,0.016152032,0.0034196018,0.022629987,-0.0030491704,0.006937169,0.01593161]},{"id":"interface-APIRole","type":"interface","source":"main","text":"Interface: APIRole\nDescription: Role from GET /guilds/{id}/roles\npermissions is bitfield as string (e.g. \"8933636165185\")\nProperties: color: number, hoist: boolean, hoist_position: number | null, id: string, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/APIRole"},"embedding":[-0.038213514,0.019660747,0.01854098,0.050354145,-0.009129046,-0.010578849,-0.038779292,0.0042786878,0.059925202,0.000077858786,0.024847036,-0.039557237,0.019778619,-0.0048798257,0.026803682,-0.0054485495,0.004143137,0.030504804,-0.0136022195,0.06369705,0.01929535,-0.021640968,-0.005828681,0.033003654,-0.048845407,0.022925751,0.009076005,0.049599774,-0.010425618,-0.026709385,0.05459747,-0.028194549,0.008021066,0.0128832115,-0.006370884,-0.055681877,0.024422703,0.020002572,0.00068733055,0.006306055,-0.02423411,-0.0068305773,-0.0030042164,-0.04330551,-0.034936722,0.060349535,0.0104491925,0.028076679,0.0073551,0.014309441,-0.0062530134,0.024257684,-0.037907053,0.08448935,0.008545589,0.016431104,-0.048656814,0.016902585,-0.03253217,0.023715481,-0.043706264,-0.045875076,0.011244816,-0.00009056667,-0.003592094,0.015476355,-0.09156156,0.040123012,0.029443974,0.018057713,0.042951897,-0.005896456,-0.028501011,-0.0012287967,0.007773539,-0.03637474,-0.002576937,0.045144282,-0.00018444842,-0.037129108,-0.04870396,0.03717626,-0.046322983,-0.0685533,0.049081147,-0.0055222185,0.02428126,-0.04622869,-0.036987666,0.010278281,-0.05313588,-0.04290475,-0.083829276,-0.023656547,-0.0065182215,-0.0624712,0.008651672,0.029184658,-0.018375963,0.06794038,0.0397694,0.0044378126,-0.08340494,-0.01676114,-0.017774824,0.03835496,-0.0006928557,0.02913751,0.0048827725,-0.044437062,-0.09269311,0.022913964,0.0018505619,0.008510227,-0.011574852,0.050259847,0.020497626,-0.019271776,0.038001347,-0.038850013,-0.05785069,-0.047761,0.022784308,0.010431511,-0.047030207,-0.009547485,-0.033003654,-0.027652346,-0.023892287,-0.015747458,-0.032791488,-0.021923855,0.048986852,-0.009565166,-0.008115362,-0.012388157,0.0041873385,-0.040594492,-0.010584743,-0.041301712,-0.012918573,0.012529601,0.009741971,0.026002163,-0.04941118,0.010673146,-0.032084264,-0.009989498,-0.007549586,0.042456843,-0.012529601,0.009093685,-0.029750437,-0.008032854,-0.03708196,-0.070957854,-0.007856048,0.0196136,-0.027275162,-0.0031176666,0.025412813,-0.03557322,-0.021582032,-0.014038339,-0.00008715948,-0.02645007,0.028194549,0.012329222,-0.026921552,0.048609667,-0.019637173,0.0016339755,-0.05681343,0.0032767912,-0.058227874,0.012953933,0.02332651,0.0038278343,-0.027133718,-0.012977508,0.025672127,0.004408345,-0.013413628,-0.055116102,-0.029561844,0.023149705,-0.05167429,-0.0027935235,0.0050743115,0.029326104,0.00009669039,0.04243327,0.037694886,-0.004517375,0.009317638,-0.017821973,0.0013127793,-0.0044378126,0.0063355225,-0.05073133,-0.00031806534,0.015570652,0.09175015,-0.0024517,-0.032084264,-0.018682426,-0.009777332,-0.03206069,-0.03981655,-0.0051745013,0.039321493,-0.01217599,-0.007408141,-0.01803414,-0.0020141068,0.021499522,-0.005672503,0.022831455,0.010407938,0.01272998,-0.01795163,0.008339316,0.032202136,-0.024104454,0.002518002,0.03373445,-0.008710607,0.0012884685,0.005218703,0.007844261,-0.028170975,0.024776313,-0.048020314,-0.024823463,-0.02463487,-0.0029732755,-0.015653161,0.0238805,0.004971175,-0.022583928,-0.025177073,-0.043423377,-0.0060408474,0.010266493,0.043894857,-0.013637581,0.042834025,0.042480417,0.005837521,0.0026727065,0.03946294,0.029066788,-0.020992681,-0.007973919,-0.0026491324,-0.01854098,0.0046087243,0.050825626,-0.023031835,0.010985502,-0.013012869,-0.014226932,-0.007531905,-0.024540573,-0.019625386,-0.010502234,0.0016796502,0.0020509413,-0.047006633,-0.017433,-0.002283735,0.0053896145,0.04926974,-0.0043435167,-0.031542063,0.040429473,0.048656814,0.0033239394,-0.03041051,-0.0077558584,0.01541742,0.018847443,-0.0032090158,0.043187637,-0.013896896,0.021770624,0.037412,-0.0055899937,0.021805985,0.018988887,0.019354286,0.016160002,0.052805845,-0.025059203,0.004470227,-0.009199768,0.07199511,-0.027605198,0.056719135,0.021004468,0.014792709,0.01795163,0.00064349757,-0.044932116,-0.0073433127,-0.013861534,0.0018667692,-0.017126538,-0.0060997824,-0.049364034,0.05238151,0.052805845,-0.025813572,0.01494594,-0.06977915,-0.03321582,0.0041991253,0.003353407,-0.002042101,0.059170835,0.011350899,-0.017892694,0.008604524,-0.01973147,0.015865328,-0.041065972,-0.018352387,-0.0035862005,0.015158107,-0.008421825,0.03333369,-0.028618881,0.0012413204,0.052475806,0.03463026,-0.012411731,-0.027534476,0.10627176,0.042173952,-0.009582846,0.013519711,-0.01304823,-0.031023433,0.005572313,-0.012352795,-0.018988887,-0.044059876,-0.0019625386,0.020214736,0.057190616,0.011916677,0.033027228,-0.024611296,0.003615668,-0.05879365,-0.037506294,0.029090364,-0.034653835,-0.041843917,0.05803928,-0.0397694,-0.012081695,-0.021794198,0.011675042,-0.00883437,0.0068070036,-0.02463487,0.03229643,0.010130943,-0.048421074,0.028831048,0.03316867,-0.04021731,-0.049929813,0.023974797,0.027558051,-0.042716157,-0.006282481,-0.020980893,-0.022124235,0.014568755,0.03491315,0.0038985566,-0.031872097,0.0042492202,-0.04571006,-0.029443974,-0.0061587174,-0.023538677,-0.001772473,0.030339787,0.0085868435,0.0059288703,-0.0010357843,-0.008256807,-0.02364476,0.020698005,0.03165993,0.0043140487,-0.03041051,-0.012052227,0.015700309,0.020120442,0.020839449,-0.060585275,-0.046322983,-0.010679039,0.021511309,0.0060025393,-0.028878197,0.023432594,0.008138937,0.015228828,0.022878604,0.07166508,-0.062424053,0.045380022,-0.04344695,-0.013672942,0.043093342,0.0002766266,0.0072608036,-0.017209047,-0.03842568,0.022784308,-0.00085603225,-0.006046741,-0.03519604,-0.022136021,-0.023385445,-0.030929137,0.05238151,0.04519143,-0.007272591,0.0229729,-0.040240884,0.015488143,-0.011610214,-0.021770624,0.008781329,0.009783226,-0.04646443,0.0007392671,-0.0180695,0.002693334,-0.007349206,0.041985363,-0.087601125,0.027958808,-0.024941333,-0.02032082,0.059972353,-0.013672942,0.062612645,0.010861738,-0.022631077,0.0061940784,0.042551138,-0.05091992,0.016713994,-0.0040400005,0.010514021,0.038378533,0.035691094,-0.015747458,0.013448988,-0.04601652,-0.049788367,-0.038850013,-0.03281506,-0.018929953,0.022937538,0.056766283,-0.040594492,0.011179987,0.009464976,0.0044466527,-0.011952037,0.006258907,0.013248609,-0.020910172,0.032202136,-0.055681877,-0.07223085,0.04827963,0.085573755,0.04391843,-0.011439302,-0.062424053,0.031306323,0.0039781188,0.0072254427,0.005755012,-0.0111092655,0.009871628,-0.03333369,-0.016867224,-0.06096246,-0.010761548,0.0046882867,0.02656794,-0.068270415,-0.017209047,-0.019083183,0.01439195,0.006488754,0.02866603,-0.020792302,-0.02522422,0.04460208,0.0022085926,0.0078089,-0.0046823933,-0.038001347,-0.03408806,-0.03397019,-0.044107024,0.031306323,0.005186288,0.0183406,0.005681343,0.033828743,0.053277325,0.011315539,-0.008050534,0.003267951,-0.013342906,-0.028760325,0.018364176,-0.032367155,0.0098068,-0.010407938,0.029113937,0.004266901,-0.00077941664,0.018847443,0.014910579,0.019743256,0.016666844,-0.028335994,-0.004426026,-0.013071804,-0.012069907,0.023927648,-0.022489632,0.03724698,-0.010567063,-0.0007109046,0.0343238,0.028053105,0.012052227,-0.017256195,0.011893102,-0.016336808,0.011280177,0.019719683,0.0075967335,-0.05469177,0.021452375,0.0010630417,-0.006665559,-0.0065653697,0.003907397,-0.024564147,-0.034017336,-0.008097682,0.02277252,0.028453864,0.020698005,-0.039792977,-0.0056165145,0.020132229,0.0036952305,0.00059413945,0.014132636,-0.012028653,-0.0064003514,0.03538463,0.03191925,0.014109062,-0.015924262,-0.040123012,0.01676114,0.023951223,-0.0054603363,-0.02925538,0.0034093952,0.00091423065,-0.004051788,-0.005469177,0.016690418,0.0050477907,0.021393439,-0.024917757,-0.033427987,-0.021888494,0.03036336,0.024493426,-0.035007447,0.018375963,0.014215144,0.00073300523,-0.038072072,0.0142033575,0.016325021,-0.0027169078,0.04057092,-0.0051008323,-0.015653161,0.013342906,0.0028612989,0.013873321,-0.036751926,-0.020037932,-0.027393032,-0.01672578,-0.019425007,0.005189235,-0.0076851365,-0.01115052,-0.00948855,0.0063178423,0.008392357,0.0019433848,-0.01914212,-0.02463487,-0.005852255,-0.031612784,-0.026591515,-0.032602895,0.028501011,-0.047265947,0.008875625,-0.012706406,-0.019590026,-0.013460776,0.013060017,0.03427665,0.009459083,-0.0053159455,0.024941333,0.0026535527,0.011627894,-0.035526074,0.04559219,-0.022925751,-0.008710607,-0.0074199284,-0.011062117,0.019271776,-0.018599916,-0.043234784,-0.00412251,-0.028642455,0.013625794,-0.005946551,-0.012246713,0.04057092,-0.0082627,0.02186492,-0.017845547,-0.014769135,0.009889309,-0.0003103301,0.05172144,-0.021428801,0.0067598554,0.018140223,-0.010714401,-0.004075362,0.030669823,0.042834025,-0.026968699,0.019625386,0.031636357,-0.002768476,-0.008910987,-0.014486246,-0.0071900813,0.007066318,-0.0040812553,-0.01739764,-0.0007993072,-0.04424847,0.02265465,-0.035856113,0.008274487,0.019743256,0.025601406,-0.039439365,0.016230725,0.03165993,0.0134843495,-0.023904074,-0.015629588,0.028972492,0.0037571122,-0.0130010815,0.014780922,0.016666844,0.0018711892,0.02439913,0.010331322,-0.029090364,-0.022513205,-0.00080225396,0.011881315,0.045757208,0.009647675,-0.015311337,-0.05271155,0.015476355,-0.03755344,-0.00049394974,0.0075142244,0.025766423,-0.018434897,-0.026308626,0.0189771,0.04424847,0.0287839,0.005027164,-0.016065707,-0.0059406576,-0.005419082,0.034818854,0.024422703,0.038024925,-0.0015779871,-0.021853132,0.0011197669,-0.0044289725,0.0045468425,0.021475948,-0.0033976082,0.018635277,0.027605198,0.030976286,-0.013767238,0.008899199,0.0072843777,0.006388564,0.0116809355,-0.017880907,-0.04769028,0.002155551,-0.029491121,0.016218938,-0.016030345,0.030457657,0.008374677,0.007195975,-0.0054573896,0.007531905,0.0022778413,-0.045851503,-0.03724698,0.002061255,-0.039439365,0.04512071,0.0017223782,0.041914638,-0.0049240272,0.040311605,-0.031707082,-0.0062765875,-0.0026240852,0.0007532642,0.022666438,0.017102964,0.011563065,0.008121256,0.009111365,-0.021593818,0.034253076,-0.025789997,0.020273672,-0.028571734,0.0006516011,-0.03781276,-0.0005657769,-0.017303344,-0.004649979,-0.01902425,-0.0029467547,0.02609646,-0.0032885782,0.010956034,0.039392218,-0.021900281,-0.0397694,0.033192243,0.01838775,-0.012836063,-0.016089281,0.0018166743,-0.00038013136,-0.06657308,-0.019672535,0.027982382,-0.013814386,-0.013354693,-0.008156617,0.06888334,0.05855791,-0.017138325,-0.0047030207,0.020804089,-0.054220285,0.015217042,0.006559476,0.048892554,-0.014333015,0.017091177,-0.0070781047,0.032485023,0.014639477,-0.0020391543,-0.0062412266,0.006070315,0.016702205,-0.01172219,0.018434897,-0.0021290302,-0.016572548,0.0624712,-0.020426903,-0.009541592,0.0058110002,-0.004744275,-0.006087995,-0.014333015,0.009358893,0.0047649024,-0.01138626,0.0064239255,-0.0060408474,0.012765341,0.0066950265,-0.008757755,0.004169658,0.0018122542,-0.0050625247,0.008910987,0.0023397233,0.00947087,0.04080666,-0.01229386,0.0027743697,0.03142419,0.020002572,-0.0029069735,0.010007179,0.0039869593,0.016277874,-0.03356943,-0.047808148,0.03851998,-0.0016649164,-0.002213013,0.009948244,0.035549648,-0.021699902,-0.015924262,-0.00446728,-0.000073162395,-0.0020229472,0.019036036,-0.0036009343,-0.027345885,0.0263322,-0.018599916,0.0025312623,-0.0028509852,-0.013083591,-0.015346698,0.005383721,-0.0025990377,0.042999044,0.043635543,0.005728491,0.033239394,0.015217042,-0.019342499,0.013649368,-0.02289039,-0.02384514,0.035526074,0.03828424,0.014733774,-0.010967821,0.013531498,0.016867224,0.009989498,0.027180865,0.011610214,-0.008032854,0.008881519,0.0058345743,-0.004711861,-0.03451239,-0.010101475,-0.0043965583,0.013531498,0.013614007,-0.0055428455,0.036492612,-0.029302528,0.008386464,0.006653772,-0.0009532751,-0.027982382,-0.0024192857,0.049694072,0.019578239,0.032909356,0.00636499,-0.029821157,0.0030351575,-0.015511717,0.01506381,0.013979404,0.016431104,0.012470666,-0.0034801173,-0.008728287,-0.007826581,-0.041749623,-0.01902425,0.011073904,0.0030940925,-0.015205255,-0.028854622,0.013472563,-0.015947837,-0.061386794,-0.016808288,0.020674432,0.027958808,-0.0024885344,0.027746642,-0.015653161,0.04186749,0.003353407,0.023892287,-0.0036598693,0.005301212,-0.013071804,-0.02416339,-0.002513582,0.00080962083,-0.019861126,0.02008508,-0.016713994,0.03340441,0.011663255,0.039015032,-0.026685812,0.043517675,0.0028878197,-0.020686219,-0.05294729,0.002030314,-0.020745153,-0.014050126,-0.01660791,-0.00007403721,0.022289252,0.0061351433,-0.0026255585,0.002659446,-0.014097274,0.030221917,0.024658443,0.000019614336,0.0142033575,0.038637847,-0.021346292,-0.011845954,-0.011144626,-0.010967821,0.049835514,0.0005963495,0.018564554,-0.063885644,-0.013401841,-0.01909497,-0.0014092855,0.061386794,0.016336808,0.031212026,0.0036362954,-0.046134394,0.036044702,-0.004974122,0.01138626,-0.004266901,0.036869794,0.01778661,-0.015723884,0.01272998,-0.045097135,-0.008080001,0.010614211,-0.010384364,0.022324614,0.005578207,0.0024708537,0.022348188,0.0021054563,-0.005419082,0.04653515,-0.01996721,-0.048986852,-0.031164877,0.01194025,0.008368784,0.020745153,-0.007349206,0.00636499,0.006871832,0.021263782,-0.007909089,0.00055214815,0.006641985,-0.021334505,0.011026756,0.028878197,0.03262647,-0.011062117,-0.031141303,0.05412599,-0.0021334505,0.039038606,0.0063237357,0.009795013,-0.0010755655,0.00915262,0.03467741,-0.007089892,-0.017102964,0.02439913,-0.016560761,0.03748272,0.050872773,0.018246306,0.0012892052,-0.006836471,0.0017651061,-0.012411731,-0.008256807,0.034182355,-0.020120442,0.031329896,0.010525808,0.0079857055,-0.003447703,0.008156617,0.026237903,-0.018706,-0.01949573,0.020367969,0.000006480558,0.008781329,0.008492547,0.013555071,-0.01272998,0.010920673,-0.043423377,0.021275569,0.0018726626,-0.02621433,0.009559272,-0.029208234,0.04344695,0.01257675,0.007496544,-0.02384514,0.00001801434,-0.016419318,0.044272043,-0.03293293,0.022359975,0.012671045,-0.04396558,0.011963824,0.025129924,0.0016236618,0.033640154,0.01237637,-0.057662096,0.01766874,-0.02866603,-0.026638662,-0.023267575,0.025601406,0.019554663,-0.019825766,0.01727977,-0.031023433,0.013036443,-0.010761548,0.011280177,0.041726045,0.0020332607,0.0046676593,0.013236823,-0.00081625103,-0.018175583,0.01205812,-0.0074552894,0.038378533,0.020580135,-0.018552767,-0.041490305,-0.0015529398,-0.021110551,-0.005419082,0.017656954,0.014380163,0.006288375,-0.041443158,0.01249424,0.025648553,0.005274691,0.019707896,-0.02300826,0.017362278,0.0021363972,-0.035950407,-0.016195364,-0.0065535824,-0.004434866,0.0073727802,0.011303751,0.0030130567,-0.036115427,0.002827411,0.00434941,0.017857334,0.0043877177,0.01526419,0.0024369662,0.02470559,-0.02372727,-0.0002799417,-0.024446277,0.036586907,0.02309077,-0.017491937,0.009205662,0.035926834,0.012600323,0.036987666,-0.014604117,-0.011745764,0.026968699,0.0040075863,0.002366244,0.003724698,0.0042580604,-0.0026299786,-0.01249424,-0.00901707,0.024823463,0.021157699,0.018352387,0.011728084,0.025907867,0.003135347,0.012953933,0.02320864,-0.03111773,0.016478252,-0.015582439,0.013060017,0.021157699,-0.00937068,0.00044974845,0.020367969,0.0054397094,-0.044130597,0.009936457,0.046275835,0.00323259,0.022324614,0.0070781047,0.021086976,-0.018446684,-0.008268594,-0.0005779323,-0.0024148654,0.003412342,-0.01194025,-0.030174768,-0.005018323,0.0031324003,-0.044979263,0.035926834,0.008392357,-0.0048503582,-0.004207966,0.00059377105,0.006453393,0.031377044,-0.008769542,-0.009618208,-0.037577014,0.046370134,-0.016431104,0.01684365,0.013555071,0.04460208,0.022949325,0.0077558584,0.031848524,0.056011915,0.022501418,-0.003256164,-0.0033298328,0.013225035,0.034300227,-0.0045468425,0.032885782,0.00018914482,-0.0002210066,0.0038720358,0.009712503,-0.0073374193,0.011297857,0.04354125,-0.038166367,0.036233295,0.0073609934,-0.044625655,-0.018328814,0.013932256,0.029302528,-0.02550711,-0.041136697,0.03708196,-0.008958135,0.009553378,0.0046529258,0.01850562,-0.014769135,0.00947087,-0.021593818,0.01933071,0.017433,-0.0015603066,0.026638662,0.0071900813,0.007048637,0.013684729,0.018753147,0.023856927,0.022666438,-0.008274487,0.01917748,0.024799887,-0.022289252,-0.049128294,0.01649004,-0.0041726045,0.0005131037,-0.008003386,0.023149705,0.015723884,0.021853132,0.031400617,-0.00634731,0.022831455,0.01150413,-0.014297654,0.039085753,0.040948104,-0.0047560623,0.022253891,0.018517407,-0.026190756,-0.0070839985,-0.0122231385,0.03168351,-0.02953827,-0.013531498,-0.0058404678,-0.014757347,0.0039692787,-0.0025710436,-0.0085279085,0.016383957,-0.030080473,0.011616107,0.0076792426,-0.015900688,0.011233029,-0.036186147,-0.030693397,-0.02403373,-0.032838635,0.006989702,-0.027699495,-0.015240615,0.010997289,-0.0039928528,-0.009859841,-0.0077558584,0.026402922,-0.030669823,-0.0062412266,0.0011403941,0.015110958,0.014309441,-0.0034211823,-0.011627894,0.005333626,-0.0251535,0.0062058656,-0.018729573,0.020556562,0.02913751,-0.022725372,0.003653976,0.005345413,-0.029396825,-0.02423411,-0.025530683,-0.012317435,0.018717786,0.019130332,-0.013932256,0.025294943,0.0039957995,-0.02040333,-0.0013658208,0.014792709,-0.0013584539,-0.015936049,-0.028430289,-0.02384514,-0.013826173,0.0029924293,0.008038747,-0.0077028167,0.013991191,-0.02186492,-0.019189266,0.019566452,0.009865735,-0.034135208,-0.018800296,-0.0048975064,-0.0076792426,0.029962601,0.016348595,-0.03420593,-0.025719276,0.016879011,0.031329896,0.014769135,0.00032782645,0.013012869,-0.0019109704,0.006706814,-0.016124642,0.023974797,0.026591515,-0.009954138,-0.0066773463,-0.033993762,0.0033593003,-0.005162714,-0.02384514,0.033640154,-0.022748947,-0.008386464,-0.005142087,-0.011138733,-0.01803414,-0.026072886,-0.0068187905,-0.03842568,-0.03420593,0.008740075,-0.01858813,0.024186963,-0.027605198,0.000081127844,-0.021004468,-0.0075024376,-0.027039422,-0.018364176,0.022595715,-0.026025739,-0.0044289725,0.0154645685,0.019908275,-0.010472766,0.005009483,-0.006895406,-0.0134843495,0.00034863793,-0.0129421465,-0.016183577,-0.0053660404,0.014321228,-0.01953109,0.0022616342,0.020474052,-0.03503102,0.04653515,-0.017409427,0.013555071,0.008687033,0.02004972,-0.022501418,-0.013649368,0.014486246,-0.002799417,0.0037423784,-0.021947429,0.005068418,0.0028524585,0.0015219988,0.0016295554,-0.050118405,-0.029585417,0.028854622,0.047100928,0.006488754,0.0064239255,0.06105676,-0.018729573,0.005634195,0.015676735,0.008633992,0.019790405,-0.015393847,-0.015936049,-0.024104454,0.013908682,0.0343238,0.006388564,-0.025672127,0.02953827,-0.012069907,-0.012270287,-0.015429208,0.0110797975,0.0060997824,-0.002709541,0.02435198,-0.027393032,-0.020957319,-0.03969868,-0.010749761,0.042362545,0.0085279085,-0.028713178,-0.037624165,0.01748015,-0.010631891,-0.015122745,0.0051951287,-0.009022963,-0.019872913,0.010213451,-0.0045733633,-0.014604117,-0.000017335205,0.04262186,0.0183406,0.014957727,0.016065707,0.02004972,0.028076679,-0.026072886,0.003206069,0.013496136,-0.007850154,-0.0116220005,0.01261211,-0.028642455,0.0069838087,0.0007867835,-0.012859638,-0.00992467,-0.016560761,-0.02550711,-0.003627455,0.017527297,0.011733977,0.016831864,-0.03479528,0.019507516,-0.011297857,0.048609667,0.04745454,0.037223406,-0.014521607,0.022277465,-0.019472156,0.027228015,-0.023078984,-0.0017488989,-0.0064710733,-0.0072136554,-0.022041725,-0.0066243047,0.029962601,0.035243187,0.019201053,0.025719276,0.0013687676,0.023267575,0.0011868054,-0.033781596,-0.016195364,-0.0074022477,-0.00945319,0.0072784843,-0.0017827866,-0.030669823,-0.013991191,0.009677143,-0.010920673,0.02446985,-0.015582439,-0.01172219,0.009600527,-0.008038747,-0.0042492202,-0.028571734,-0.0047236476,0.0015765138]},{"id":"interface-APISticker","type":"interface","source":"main","text":"Interface: APISticker\nProperties: animated: boolean, description: string, id: string, name: string, tags: string[]","meta":{"url":"/docs/typedefs/APISticker"},"embedding":[-0.0042302674,-0.03275864,-0.049426123,-0.013324766,-0.05297632,0.008385612,-0.015399557,-0.024966648,0.002877331,-0.046175618,0.024459476,-0.024736116,0.03013057,-0.044815477,0.00013066498,0.007820808,-0.028147994,0.0080398135,0.024044517,0.008933126,0.031444605,-0.021059126,0.022949489,0.038706373,0.0178432,0.03683906,-0.026142363,-0.017831672,0.008535458,0.03697738,0.015676197,-0.027179757,0.081147365,0.035087015,-0.014143156,0.032505054,-0.0068698623,-0.009175185,0.009255871,-0.045945086,-0.019307079,0.030107517,0.014189263,0.008506642,-0.014258422,0.075614594,-0.01699023,0.06773039,-0.008454772,0.027825247,-0.027686927,0.0026151007,-0.04490769,0.021646982,0.019364713,-0.007797755,-0.022488425,0.0024349974,-0.01780862,0.016333213,0.04038926,-0.012183632,-0.015042232,-0.013924151,-0.0028168163,0.044008613,-0.06662383,0.049426123,0.012414164,-0.006379981,0.081562325,0.01596436,-0.032666426,0.018880595,-0.021059126,-0.042187408,-0.043017324,0.026096255,0.056849264,0.025081914,-0.053160746,0.03421099,-0.03898301,-0.046014246,0.022476899,-0.049426123,-0.027733035,-0.055512175,-0.023813985,-0.009417244,-0.031467658,0.013705145,-0.08308384,-0.022142626,0.013520719,-0.021151338,-0.0019422346,-0.023387501,-0.054728366,0.0098610185,0.04068895,-0.048734527,-0.07985639,0.01637932,-0.025404658,0.02016005,0.0034147596,0.029807825,-0.005293598,0.000004567308,-0.04520738,0.019364713,-0.028954856,0.012368058,0.015849095,-0.03262032,0.015952835,0.0049391543,0.042394888,-0.062289827,-0.041242227,-0.017243816,0.062428143,-0.006172502,-0.0117283305,0.012978968,-0.029646453,-0.03404962,-0.073447585,-0.04184161,-0.028032726,-0.023076283,0.0076190922,-0.006431851,-0.027295023,-0.029116228,-0.027179757,0.0099301785,-0.011941573,0.016241,0.011319135,-0.050855424,0.017336028,-0.0015661787,-0.0014148919,-0.010126131,0.0009999338,0.036032196,0.010633302,0.027779141,0.010143421,0.07589123,-0.012022259,-0.00815508,-0.008961943,0.0031006592,0.022246366,-0.030084465,-0.008662251,-0.030937433,0.0025084794,-0.045783713,0.026972279,0.002462373,-0.03550197,0.02131271,0.0485501,-0.019479979,-0.030799113,0.048872847,0.03312749,-0.062013187,-0.054590046,-0.02155477,-0.041657183,-0.005806532,0.028516844,-0.029531186,-0.018742274,0.017001756,0.024182837,0.061690442,-0.020678746,-0.045507073,0.005613461,0.018684642,-0.011987679,0.008558512,0.012241265,0.00012346085,-0.021681562,0.006933259,0.008287636,0.00890431,0.006898679,-0.03421099,0.013186447,-0.02805578,-0.0074404296,-0.045945086,0.022822697,-0.003169819,0.011492034,-0.008437482,-0.029139282,-0.023007123,-0.038706373,-0.0134515595,-0.0028427513,-0.00237016,0.06371912,-0.006016893,-0.020010203,0.0014746862,-0.049748868,0.019307079,0.02026379,0.007780465,0.015768409,0.0160681,-0.023168495,0.027871354,0.029254548,-0.028655164,-0.0041178833,0.03418794,-0.019226393,0.038637213,-0.0065010106,-0.020113943,-0.077089995,0.041449707,-0.011578484,-0.031098805,0.009319268,-0.0028427513,-0.01036819,-0.0057114377,-0.005550065,0.0024566096,0.00059902377,-0.014731013,-0.012391111,-0.00068295194,0.0356864,0.04440052,0.0158952,0.009561326,-0.007849624,-0.02223484,0.04513822,-0.003495446,0.01029903,0.0057258457,0.0019667286,-0.02455169,-0.00079245475,0.029577293,0.02260369,0.026972279,0.013128814,-0.036055252,-0.032159254,-0.012540957,0.026718693,0.0030804877,0.046383098,0.051224276,0.009175185,-0.00039442634,0.009492167,-0.027225863,0.0485501,0.019583719,-0.018431056,-0.007763175,0.004276374,0.06325806,-0.03697738,0.06501011,-0.019491505,-0.025957936,0.004501143,0.027709981,-0.048181247,0.042279623,0.023456661,-0.009025339,0.019237919,0.02791746,0.05624988,0.04389335,0.026764799,-0.005333941,0.0027274853,0.016563745,0.01409705,-0.012264318,0.06003061,0.0023917726,0.033242755,-0.08395986,0.042210463,0.0007838098,-0.0011245654,-0.0021987017,0.0021900567,0.04433136,0.031744298,0.009728462,0.020332947,-0.017474348,-0.0077747013,-0.012955915,-0.061690442,-0.011468981,0.05975397,0.021128284,-0.052838,-0.0020949622,-0.021427976,-0.00029933176,0.023168495,-0.039766822,-0.021082178,-0.09013812,0.02066722,0.0038009011,0.024666956,0.02877043,0.009227055,-0.03983598,0.009492167,0.015722303,0.06003061,-0.009999339,-0.0007657994,0.013267133,-0.009624723,0.040158726,0.030545529,-0.058370776,-0.046705842,0.022949489,0.01310576,-0.0016238118,-0.033519395,-0.009763042,-0.0008997964,0.010068498,0.010650592,0.042371836,-0.039536286,-0.06869862,-0.04112696,-0.03932881,0.011566957,-0.026119309,-0.044216093,0.04947223,0.0034234044,0.04168024,-0.0015632971,0.021001492,-0.032090094,-0.021577822,-0.026465107,0.013762778,0.017013283,-0.054405622,0.067269325,-0.0046798056,-0.016056575,-0.0079476,0.009169422,-0.0042072143,-0.031605978,0.0012801746,-0.016183367,-0.025174126,0.049564444,0.0053137694,-0.008304926,0.029070122,0.011941573,-0.0016872082,-0.014696433,0.035294496,-0.024436424,0.04045842,0.049887188,-0.029047068,-0.08419039,0.0037547946,0.015537877,-0.04405472,-0.01841953,0.023860091,0.019998677,0.015284291,-0.0064087976,-0.0017217881,-0.018880595,0.017047863,-0.010483456,0.010114605,-0.013255606,0.020183101,0.06371912,-0.026833959,0.0073424536,-0.03796867,0.02376788,0.03204399,0.016794277,0.0010892651,-0.026995331,-0.040942535,0.01603352,0.066024445,0.026073202,0.0025200062,-0.0071926075,-0.053022426,-0.034372363,0.021716142,0.0065989867,-0.025012754,-0.04446968,-0.017624194,0.035847772,0.09059919,0.041956875,-0.020436687,0.027594715,-0.037300125,0.013728198,-0.035455868,-0.008575801,-0.010932994,-0.041011695,-0.05482058,0.015019178,0.029231494,-0.013002021,-0.024205891,0.012241265,-0.043386176,-0.0043051904,-0.025151072,-0.06473347,0.015768409,-0.06330416,0.036447156,0.0058295853,0.0017102615,0.0058901003,-0.0022145507,0.009814912,-0.009353847,0.007221424,0.0008954739,-0.009780332,0.025450764,0.009140605,-0.015157498,-0.010777385,0.051500913,0.05039436,0.016321687,0.021831408,-0.021105232,0.024159783,0.014431321,-0.0047691367,-0.04511517,0.002138187,-0.04375503,0.003429168,-0.041080855,0.023364447,0.029508132,-0.019998677,-0.030291943,0.02056348,0.08644961,0.024205891,-0.019260973,-0.025220232,-0.017750986,0.0039939717,-0.010869597,0.035248388,-0.010564142,0.0032908483,-0.03112186,-0.014731013,-0.03303528,-0.005290716,0.00015497893,0.06786871,-0.039490182,-0.024874434,0.030637741,0.0692519,0.0012009292,0.03262032,-0.024205891,-0.0070081814,-0.037230965,0.018004572,-0.0642724,-0.0178432,-0.035225336,-0.02441337,-0.0033772981,-0.027525555,0.05389845,-0.033888247,0.018361896,-0.0381992,-0.0071349745,0.056710944,0.001355818,0.018408004,-0.01399331,-0.036147464,-0.060952738,-0.01760114,-0.0178432,-0.014362162,-0.039490182,-0.011221159,0.021969728,0.0059707863,0.006506774,0.0028427513,0.025658244,0.015388031,-0.021105232,-0.014154683,0.008408666,0.04682111,0.04126528,-0.039720714,0.033288863,-0.0328278,0.019837303,0.0134285055,0.03506396,0.0165868,-0.033542447,0.042187408,-0.02877043,0.0331736,0.0080686305,-0.015572457,-0.039167438,0.02761777,-0.00888702,-0.033542447,-0.03268948,0.022188732,-0.01705939,0.022961017,0.013267133,0.010610249,0.019180287,0.019722037,0.026188469,-0.018142892,0.0051379884,0.0055097216,0.018846015,-0.008610381,0.012540957,-0.012218212,0.007521116,0.009036866,-0.044700213,0.009209765,-0.005028486,0.0049881423,0.038821638,-0.015699249,0.04011262,0.0026280682,-0.010489219,-0.00005074412,0.012206685,0.003112186,-0.03884469,-0.019111127,-0.015699249,-0.0012189394,-0.0025243287,-0.009192475,0.002605015,-0.011394058,0.011566957,0.009048392,-0.0063915076,-0.03303528,0.003527144,0.027295023,0.0023197313,-0.037254017,-0.016425425,-0.0057200827,0.023203075,-0.019410819,0.04654447,-0.027202811,-0.03704654,-0.01655222,0.0038412444,-0.0018514624,0.0021670035,-0.011054023,-0.03441847,-0.014546587,0.010529563,0.003852771,0.00013552778,-0.018569376,0.0033081383,0.013682092,-0.00946335,-0.0043801134,0.0029234376,0.0011152,-0.0050313673,-0.02761777,0.0021583585,0.009693882,0.006933259,-0.024897488,0.029600346,0.0011159204,-0.014857806,0.02202736,-0.0009624723,0.061367694,-0.010108841,0.039605446,-0.013705145,0.022937963,0.012172105,-0.01777404,0.043939456,0.0023442253,-0.027179757,-0.01317492,-0.0075729857,0.0022649798,0.010679408,-0.017820146,0.0032620318,-0.007872677,0.011226922,0.026649533,0.02621152,-0.020367527,0.013820411,-0.027456395,0.02570435,0.029946145,0.003429168,-0.0152727645,-0.02188904,0.004253321,0.019491505,-0.01592978,0.011474744,-0.013774305,-0.02016005,0.010518036,-0.019111127,-0.013071181,-0.00088682893,-0.012425691,0.029646453,-0.022788117,-0.011930046,0.0043080724,0.0040227883,0.018661588,0.026442055,-0.0038729424,-0.008564275,0.0151690245,0.033381075,0.021162864,0.021739194,0.0221311,0.027686927,0.010650592,0.011238449,0.011192342,-0.01045464,0.007705542,0.0013723875,-0.03439542,-0.024966648,0.0043051904,0.0078092813,0.024528636,-0.002197261,0.019710511,0.029946145,-0.05532775,0.019871883,-0.018788382,0.023652613,-0.022557585,0.000869539,-0.029508132,-0.0006336036,-0.010062735,-0.0008709798,0.0029998014,0.00660475,-0.03142155,0.018938228,0.047950715,-0.0055270116,0.002129542,0.009682356,-0.017589614,-0.019560665,-0.006789176,0.01655222,-0.022511479,0.013566826,-0.00660475,0.045022957,0.026142363,0.014615747,-0.00029176744,0.0063338745,-0.015480244,0.019456925,0.013324766,0.010085788,0.0013839141,-0.0070831045,-0.042026035,-0.004345534,-0.014546587,-0.039559342,0.015376504,0.006414561,-0.001613726,-0.0012830563,0.0021842935,0.002537296,0.030545529,-0.019560665,-0.012252791,0.024851382,0.014085523,0.018269684,0.0134746125,0.02798662,-0.021232024,-0.01756656,0.0015157498,0.017013283,0.0060802894,0.0478124,-0.022937963,-0.050763212,0.007924547,-0.0067200162,0.023929251,-0.02948508,-0.0020445331,-0.046221726,-0.012783015,0.04034315,-0.010224107,0.0034320494,0.0013457322,-0.015814515,0.023813985,0.0037634396,0.004976616,0.003593422,0.0056365146,-0.0152036045,-0.060814418,0.024321157,-0.01252943,-0.05883184,0.00658746,-0.0008205509,-0.005008314,-0.04068895,-0.03670074,0.03983598,0.0044982615,-0.028332418,0.0116649335,0.04181856,0.04255626,-0.0072848205,0.001489815,0.007745885,0.015388031,-0.014304529,-0.015537877,0.0026597662,-0.0080628665,0.028862642,-0.01042006,0.061413802,0.011509324,0.014996125,0.042464048,-0.009520983,0.04984108,-0.00024548086,-0.0016886491,-0.014454375,0.0067488328,0.031306285,-0.014754066,0.013947204,-0.0075556957,-0.025980989,-0.0032072805,0.03783035,0.000061055034,0.0056768577,0.022546059,-0.0056538046,0.011739857,0.03582472,0.004725912,0.0134515595,-0.0014588372,0.011474744,0.0013478935,-0.009618959,0.054082874,-0.031260177,0.019860357,0.018511742,-0.009267398,0.04410083,0.027248917,-0.009866782,-0.019191813,-0.064549044,0.019745091,-0.04020483,-0.0018341725,0.020033255,0.020448213,0.0060111294,0.011365242,0.042302676,-0.010932994,-0.011480508,0.028171046,0.004668279,-0.013947204,0.040827267,0.02281117,-0.011330662,0.011895467,-0.008212713,0.038637213,0.00028456328,-0.0367699,-0.0021857342,0.0028153756,0.023272235,0.027733035,0.050717104,0.017993046,0.013094234,0.038614158,-0.033496343,0.01991799,0.01763572,0.030660795,0.037023485,0.023191549,-0.015122918,0.01688649,0.0073078736,0.016425425,0.02955424,0.014915439,0.024367264,-0.0007838098,0.03647021,0.0054117455,0.0073078736,-0.016021995,-0.04446968,-0.0002802408,0.007901494,0.039098278,0.021508662,0.048411783,-0.003965155,-0.03006141,-0.0135437725,0.035248388,-0.03561724,-0.0060111294,0.012045312,-0.022142626,0.013393926,-0.0010201054,-0.0029133519,0.0016367793,-0.004336889,-0.0066162767,0.0051120534,0.0045213145,0.008910073,-0.025035806,0.008414429,-0.02277659,-0.02009089,-0.008973469,0.014523534,-0.0020243616,0.023998411,-0.015872149,0.009296214,0.013601406,-0.05297632,-0.05624988,0.016079627,-0.016690537,-0.014293002,-0.02992309,-0.010731278,0.0017750986,-0.016805803,0.027848301,0.007048525,-0.034718163,0.006939022,0.01845411,-0.017140076,0.03199788,-0.0069678384,0.038660266,-0.032873906,-0.016563745,0.0046711606,0.035110068,0.003236097,0.026787853,0.020540427,-0.03647021,-0.021543242,-0.016713591,-0.0076248557,0.009146369,0.021266604,-0.00030437467,-0.0040199067,-0.013843464,0.020863172,-0.039882086,-0.052653573,0.006858336,0.051869765,0.016563745,0.02577351,-0.0019335896,-0.015445664,0.007918784,0.011025207,-0.018811435,0.045161277,0.00881786,0.016736645,-0.014869332,-0.017186182,-0.023099335,0.0081435535,0.021612402,0.025473818,-0.023168495,0.0059131533,0.023180021,0.0026179822,0.014938492,0.019468453,-0.014500481,0.031513765,0.010310557,0.004103475,0.009250108,-0.017209236,0.024874434,-0.0152612375,0.021289658,0.006472194,-0.00730211,0.0067257797,-0.039236598,0.02192362,0.026810905,0.011509324,0.014373688,-0.03013057,-0.022303998,-0.043224804,0.00817237,0.0064606676,-0.009129079,-0.021439504,-0.0064491406,0.0044204565,0.015215131,-0.01950303,-0.01246027,-0.025589084,0.024182837,0.007941837,0.050440464,0.013416979,-0.019768143,0.056941476,0.010777385,0.03898301,0.03704654,0.03674685,-0.0026439172,-0.02152019,-0.021646982,-0.04052758,-0.006881389,-0.008270346,-0.011203869,0.021762248,0.06588613,-0.0033052568,0.004841178,-0.020505847,0.008178133,0.0046279356,-0.01770488,0.0037029248,-0.02890875,-0.004607764,-0.004691332,-0.039559342,-0.011526614,0.033565503,0.008431719,0.043086484,-0.010587196,0.006979365,-0.00089403306,-0.026004042,0.0146388,-0.0061609754,0.016125733,0.011906993,-0.01249485,0.019387765,-0.00297963,-0.028217152,0.039305754,-0.022753537,-0.012955915,0.00039514675,-0.015341924,-0.027387235,-0.020425161,-0.007953364,-0.02798662,0.004846941,-0.03169819,-0.024597796,0.0034752742,0.0032159255,-0.016782751,0.019157233,-0.03697738,-0.0002634912,-0.035455868,0.014500481,-0.019111127,-0.0074807727,-0.0073827966,0.017497402,-0.002702991,0.016609851,0.010523799,-0.01845411,0.029323708,0.01317492,0.018131364,0.004250439,-0.0073655066,0.021474082,-0.014120103,-0.024782222,-0.020551953,-0.007976417,0.004674042,0.01634474,0.01409705,0.0073827966,-0.016874963,-0.0019508795,-0.01324408,-0.0038153094,-0.018938228,0.0077919913,-0.013612932,-0.034718163,0.0011281674,0.017117023,-0.014246896,0.022246366,0.0077285953,0.029231494,0.008771754,-0.005417509,-0.0078092813,-0.02206194,0.021024546,-0.03377298,0.004492498,-0.0007845302,-0.009106025,0.010811964,0.026257629,-0.018258158,-0.0076824888,-0.006495247,0.0012419927,-0.01835037,-0.039351862,-0.010535326,-0.012759962,0.047720183,0.0014494718,-0.002868686,-0.002802408,0.050624892,-0.021174392,0.026234575,0.021105232,-0.017658774,-0.0050976453,0.031029647,0.007296347,-0.00033409172,-0.016632905,-0.0046855686,-0.013555299,0.0049823793,0.018984335,0.035386708,-0.029369814,0.028516844,0.021393396,0.012414164,0.027295023,-0.0072098975,-0.018534796,0.03312749,0.01582604,-0.017347556,-0.010627539,0.0039738,-0.011613064,0.0065355906,0.02505886,-0.05025604,0.010074262,-0.0099647585,-0.004336889,-0.0037980196,-0.0152958175,0.028931802,0.000028366278,-0.0007902935,0.00079677725,0.014915439,-0.014926966,-0.011895467,-0.03448763,0.013128814,-0.03469511,0.00207335,0.017612668,0.008587328,-0.0058267037,0.0016598325,-0.02267285,0.004607764,-0.0057604257,-0.04310954,-0.047858503,-0.026695639,0.039951246,-0.032412842,-0.000025259495,0.02448253,0.075752914,0.023156969,-0.0134746125,0.004411812,0.021796828,-0.00015416848,-0.005815177,-0.007826571,0.010587196,0.014477428,0.038498893,0.0041409363,0.0006926775,-0.0010186646,0.007567222,0.000869539,-0.015019178,-0.014304529,0.030176677,-0.032205362,0.0585552,0.035801664,0.0062358985,-0.033934355,-0.0065586437,0.022430792,-0.026419,0.026764799,0.016183367,0.024044517,-0.0056019346,0.012356531,-0.004253321,-0.00799947,-0.035986092,0.00052806304,0.0135437725,-0.019606771,-0.015710775,0.005374284,0.015618563,-0.028516844,0.026603427,-0.0037202148,-0.023952305,0.019445399,0.011007917,0.062289827,0.014385215,-0.005688384,-0.042740688,0.0017880661,-0.040942535,-0.01586062,-0.007722832,-0.0062013185,-0.01753198,-0.0011930047,0.0025156836,0.004714385,0.0011951658,0.012967441,0.01699023,0.023110863,0.017520454,-0.0038815874,0.00078020775,0.0029940382,-0.017497402,0.012068366,0.01896128,0.011399821,0.010806201,-0.039351862,0.0038210726,0.026119309,-0.014973072,0.019088075,-0.018696168,0.032735586,0.0062128454,0.019260973,0.0017693354,-0.03783035,0.010010865,-0.010690935,-0.0431787,-0.007936074,-0.0047201486,0.038936906,0.0009300537,-0.01828121,0.038798586,0.013416979,0.0016540692,-0.041242227,0.0017563679,-0.043317016,-0.028609058,0.0022145507,-0.005823822,-0.030522475,-0.0050486573,0.025934882,-0.018142892,-0.034925643,-0.011180816,0.004898811,-0.028747376,0.023433607,-0.0006303617,0.005400219,0.002462373,-0.023087809,-0.019272499,0.0046221726,0.004659634,0.020759434,0.018085258,0.0016511875,0.014880859,-0.0342571,-0.018938228,-0.018119838,-0.03176735,0.010322084,-0.013059654,-0.010823491,-0.0038412444,-0.014719487,-0.009019576,-0.014650327,0.020240735,0.045945086,0.013520719,-0.019145707,0.03398046,-0.0013025075,-0.030176677,0.038360573,-0.024367264,-0.042187408,0.021070652,-0.005431917,0.014523534,-0.009065682,0.0009790418,-0.008961943,0.00056300306,0.017220762,0.009140605,-0.05873963,0.0035588422,0.0005226599,0.012229738,0.040827267,0.0221311,-0.007895731,-0.02002173,0.0098206755,-0.0069044423,0.0151690245,0.0417494,0.010886887,0.0010251483,0.029784773,0.00439164,-0.016944123,0.0117456205,0.0219582,-0.0037922561,-0.047950715,0.022269418,-0.042348783,0.02512802,-0.015837569,0.020551953,0.012725382,-0.02274201,-0.029139282,-0.01838495,-0.031006593,0.024205891,0.0075153527,0.015088338,0.0054693785,0.01688649,0.0064433776,-0.011555431,-0.024828328,-0.051362593,0.0012045312,0.0029349641,0.01716313,-0.026833959,-0.05897016,-0.0076133288,0.039029118,-0.0032332153,-0.0006505333,-0.002702991,0.0043974034,0.0077285953,-0.014269949,0.0025747574,-0.009993575,0.014558114,-0.010644829,0.013935677,0.023076283,-0.0239062,0.05841688,-0.017647248,0.019664405,-0.04168024,0.033242755,0.03803783,-0.00399109,-0.013716672,0.011128946,0.005763307,-0.025865722,-0.020955386,0.023318341,0.01103097,-0.004302309,-0.001730433,-0.0037000433,-0.016321687,0.028609058,0.0066854362,-0.0005957819,-0.032505054,0.0013464526,-0.017174656,0.0076190922,-0.014269949,0.025727404,-0.002106489,0.0023831276,-0.013197973,0.006529827,-0.014212316,-0.0399743,-0.0017044981,-0.011503561,0.014823226,-0.047858503,0.0048527047,0.030591635,0.015733829,-0.034234047,0.00590739,0.020217681,0.0339113,0.0037720846,0.000045228455,-0.0069102054,-0.013854991,0.0072502405,-0.008881257,0.021151338,0.009774569,0.011434401,0.045230437,-0.006034183,0.009503693,-0.0016886491,-0.01920334,0.014915439,0.010010865,-0.0076997783,0.0008054222,0.011359478,-0.0135322455,-0.0014494718,0.022419265,-0.0019825776,-0.027456395,0.00296234,0.045576233,0.017543508,-0.012736909,0.018327316,-0.0176703,0.03119102,0.0439164,0.030937433,-0.0023917726,0.0065413537,-0.0075845122,0.015180551,0.0015460072,0.00944606,-0.03540976,-0.0040256702,-0.030245837,-0.011595774,-0.0047518467,-0.0014206553,0.0164139,-0.007446193,0.013647512,-0.0038239544,0.022926437,-0.030384157,-0.0040227883,-0.017289922,0.0135322455,-0.009618959,-0.0036222385,-0.040665895,-0.015088338,0.008650724,0.025312446,0.05311464,-0.029093174,-0.0034061146,0.010869597,0.018627008,0.03319665,-0.00881786,0.004120765,0.02145103]},{"id":"interface-APIStickerWithUser","type":"interface","source":"main","text":"Interface: APIStickerWithUser\nProperties: user: APIUserPartial","meta":{"url":"/docs/typedefs/APIStickerWithUser"},"embedding":[0.003105288,-0.021647587,-0.015319831,0.0242749,-0.02273305,-0.02473129,-0.016763004,0.042629097,-0.002844715,-0.05126346,-0.013025557,-0.024768293,-0.00045176232,-0.019723358,-0.015541857,-0.033229973,-0.0003810299,0.010194719,-0.017096043,0.021598248,0.027407942,0.007074012,0.039471384,0.020179745,0.012951548,0.010583265,-0.017330404,0.00050572713,-0.018415868,-0.0018687233,-0.0348335,-0.024077544,0.05955245,0.011335688,0.010780622,0.018329524,0.024644945,0.050375354,0.004761236,-0.0077955984,-0.02629781,-0.004872249,-0.0047026454,0.02306609,-0.02814803,0.05447051,0.025113668,0.08585026,0.00705551,0.0042770947,-0.016257277,-0.034414113,-0.007715422,0.01441939,0.036116317,-0.017971814,0.0031731292,-0.018156836,-0.04482469,0.031700455,-0.018329524,-0.038632616,0.027457282,-0.025483713,-0.0027013228,-0.007955951,-0.013198244,0.049857292,0.008640532,-0.004810575,0.053434387,-0.0051220288,-0.061032627,0.049092535,0.032613233,-0.02114186,-0.015356835,0.017441418,0.022905737,0.002243393,-0.0064511043,0.028296048,-0.0485498,-0.022202654,-0.011107494,-0.051411476,-0.083629996,-0.03397006,-0.034488123,-0.02886345,0.011539212,0.020204416,-0.038311914,-0.026939219,0.0348335,0.007357713,-0.015073135,-0.026396489,-0.031231733,0.025829086,0.02883878,-0.044528656,-0.08461678,0.0056740115,0.012630843,-0.0012990094,0.028468736,0.030466974,-0.038879313,0.010836128,-0.020241419,0.029677548,-0.001002974,-0.032489885,-0.003237887,-0.03214451,0.0016852431,-0.018366529,0.013272253,-0.042357728,-0.044479314,-0.02306609,0.05451985,-0.01955067,-0.0116317235,-0.02762997,-0.039249357,-0.044627335,-0.07075246,-0.034981515,-0.0054242318,-0.045762137,0.01104582,0.003743614,0.005078857,-0.040754203,-0.032292526,0.010324234,-0.032193847,-0.0033303981,-0.0058590337,-0.028518075,-0.017638775,-0.019439656,-0.039446715,-0.023571817,-0.030368296,0.036165655,-0.01691102,0.020845825,-0.003163878,0.031157725,-0.0025409705,0.016429964,-0.018872255,0.014012341,0.0037281956,-0.025829086,-0.03009693,-0.036387682,0.011415864,-0.058615007,0.03202116,-0.03473482,-0.0332053,-0.0071541886,0.036757726,-0.031281073,-0.046329536,0.020895164,0.0119647635,-0.03142909,-0.045737468,-0.032514554,-0.043393854,-0.03453746,0.017725118,-0.045120727,-0.050918087,-0.02878944,0.029085476,0.04748901,0.0013969169,-0.07183792,-0.0105462605,0.011940094,0.010891635,0.011237009,0.032933936,-0.0122669665,0.010139212,0.021080187,-0.016269611,-0.023855519,0.008227317,-0.04336918,0.01898327,-0.05767756,-0.007326876,-0.02016741,0.023892522,0.013568289,0.012618508,0.0048753326,0.014838774,-0.016207937,-0.028123362,0.009275775,-0.025903096,0.01152071,0.0069321617,0.017749788,-0.02753129,0.000910463,-0.023880187,0.029381512,0.013346261,-0.0086467005,0.011748904,0.017293401,-0.021437896,0.04623086,0.06290752,-0.04026081,0.012593838,-0.0011432825,0.011107494,0.017700449,-0.012303971,0.026396489,-0.059256416,0.051115442,-0.035400897,-0.011138331,0.01057093,-0.019254634,0.02214098,0.01026256,-0.0012488993,-0.018477542,-0.044503987,-0.0038731296,-0.0016127761,0.037078433,0.022992082,0.025878426,0.022720715,-0.0029403097,-0.008054629,0.017527761,0.08066964,0.0468476,0.021573579,0.016269611,-0.00401498,0.0526943,0.0030944948,0.05945377,0.015406175,0.028468736,0.045170065,-0.023103094,-0.020759482,-0.0039008828,0.0122361295,-0.010829961,0.031700455,0.02748195,0.020993842,0.022239657,-0.035326887,0.013247583,0.039890766,0.015356835,-0.02050045,0.00040396495,0.04285112,0.057825577,-0.06345025,0.033254642,-0.052200906,0.009682824,0.0052268747,0.06675598,-0.0066052894,0.07765995,0.005442734,-0.036905743,-0.028000014,0.031083714,0.028542744,0.046502225,0.06611457,0.0011548464,0.02437358,0.00992952,0.0133215925,-0.038780633,0.03014627,-0.003413658,-0.001479406,-0.056740116,0.02762997,-0.04179033,0.03318063,-0.03917535,0.056098703,-0.0052207075,0.013851989,0.0014901989,-0.021129526,-0.024250232,-0.008288991,0.0019041859,-0.05195421,-0.018156836,0.019155957,-0.014912782,-0.06147668,0.036017638,-0.015159478,0.0035616758,-0.010651106,-0.069716334,0.007635246,-0.05826963,0.02627314,-0.034907505,0.009923353,0.0049616764,0.00705551,-0.039446715,-0.028740102,-0.02219032,0.0410009,0.013333927,0.029208824,0.027185915,0.012513663,0.029825564,-0.0004251654,-0.06473307,-0.03658504,-0.00852952,-0.005803527,-0.020562124,-0.015714545,0.00023898689,-0.035943627,-0.0073700473,-0.0315031,0.048377115,-0.011366525,-0.029726885,-0.002141631,-0.015825558,0.045046717,-0.063302234,-0.030886358,0.047094297,0.017873136,-0.009281943,-0.016713664,-0.0032748913,0.001251983,-0.010324234,-0.0065189456,-0.017873136,0.00050842535,-0.06848285,-0.0026735696,-0.0043973587,0.0049246717,0.019760361,-0.0038854643,0.022214988,-0.023608822,-0.014801769,0.0031700456,0.002917182,0.058121614,-0.0059916326,0.035302218,-0.01570221,0.010540093,-0.028419396,-0.0080114575,0.04166698,-0.02940618,0.025878426,0.053582404,-0.04748901,0.0021030847,-0.013605293,0.035548914,-0.021277543,0.0058682845,0.05402646,0.008708375,-0.00496476,-0.008375335,-0.0071233516,0.0138643235,0.0015973576,-0.020007057,0.046378877,-0.021573579,0.00020121154,0.029430851,0.0039070505,-0.0056832624,-0.072923385,0.024644945,-0.0034938343,0.032835256,-0.0030790763,-0.013617627,-0.0332053,0.049117204,0.04667491,0.016306616,-0.01213745,0.018169172,-0.054125134,0.02432424,0.0073700473,0.035573583,0.0018286352,-0.031799134,-0.04233306,0.015221152,0.062562145,0.013124235,-0.048327778,-0.014123355,-0.012377979,0.052792978,0.0043973587,-0.03332865,0.029677548,-0.006099562,-0.04230839,0.012088112,-0.020401772,-0.011101327,-0.044405308,0.038780633,-0.048327778,0.0044528656,-0.007758594,-0.057973597,-0.013210579,-0.010398243,0.057924256,0.0006934475,-0.0032039662,-0.0046810596,0.06231545,-0.0065867873,0.01726873,0.03643702,0.017836131,-0.02149957,0.058664344,0.0028246709,-0.015714545,0.0069876686,0.041642312,0.010533926,0.012963883,0.0076784175,-0.011440534,0.013457275,0.0028570497,-0.025533052,-0.0602432,-0.0028077106,-0.04087755,-0.034068737,-0.027185915,0.019266969,0.04472601,-0.0004012667,0.0069136596,0.022054635,0.09418859,0.058565665,-0.01945199,-0.04995597,0.00066261046,0.01883525,-0.016207937,0.019994723,-0.013247583,0.013124235,-0.025557721,0.030417636,-0.06261148,-0.0055383286,-0.008159475,0.08234718,-0.015147144,-0.007931281,0.014160359,0.039224688,0.03843526,-0.00017808378,-0.016220272,-0.016109258,-0.052990332,-0.03140442,-0.00883789,-0.04105024,-0.038089886,-0.0384846,0.0065621175,-0.012624675,0.058565665,-0.0069568316,0.044528656,-0.014666086,0.011582384,0.035080194,-0.0009297361,0.005763439,-0.002359032,-0.034315433,-0.06571986,-0.013580623,-0.026100453,-0.011594719,-0.0256564,0.014814104,0.005377976,-0.009843176,0.007074012,-0.02337446,-0.0001940805,0.020081067,-0.01076212,-0.025237016,-0.016503973,0.023645826,0.04299914,-0.028937459,0.008689872,-0.003527755,-0.018045824,0.038657285,0.008073132,0.0052083726,-0.013827319,0.046921607,-0.029134816,0.028715432,0.010379741,0.0026334815,-0.035548914,-0.0009975776,-0.0034414113,-0.04803174,-0.037522484,0.014308377,-0.025311025,-0.019513665,0.016763004,0.015097804,-0.014678421,0.01893393,0.03599297,-0.024077544,0.036757726,-0.0035740105,0.062414125,0.014123355,-0.005467403,-0.0050850245,0.029258164,0.011193838,0.0038638785,-0.0040057288,-0.023880187,-0.022535693,0.046995617,0.010866965,-0.017441418,-0.020278424,-0.017860802,-0.012328641,0.030294288,0.013099565,-0.0410009,-0.016577981,0.013925998,-0.0020845826,0.016442299,0.012143618,-0.005112778,-0.008301325,0.0067101354,0.006229078,-0.013025557,-0.039397374,0.0066731307,0.03920002,0.027605299,0.010305732,0.021018513,-0.01795948,0.035030853,-0.008208814,0.02047578,-0.033032615,-0.0048136585,0.0031885477,0.02121587,-0.009948023,-0.03224319,0.018847587,-0.013210579,-0.015356835,-0.012926878,-0.003641852,0.021622917,-0.019970054,0.02888812,-0.003796037,-0.0047951564,-0.0034599134,-0.0014678421,-0.03347667,-0.007296039,-0.00009651023,-0.0041753324,0.037547152,-0.02755596,-0.0099418545,0.030491645,-0.030244948,-0.005044936,0.0087638805,-0.030837018,0.03453746,-0.011995601,0.026544506,-0.0059546283,-0.013173575,0.011422032,-0.04751368,0.023226442,-0.015973575,-0.034192085,0.013642297,-0.010330401,-0.0011748904,0.022066971,0.0016066086,0.028345387,-0.007228197,-0.0056955973,0.009343617,0.05762822,-0.04480002,-0.002348239,-0.020488115,0.018872255,-0.010022031,0.015159478,-0.011452869,-0.0005808923,-0.0069136596,0.02686521,-0.021326883,0.014259038,0.008862559,0.015122474,0.0056925137,-0.036066975,-0.0010153089,-0.019945383,0.014616747,0.008424673,-0.029578868,-0.01985904,0.014222033,-0.014407055,-0.0052083726,-0.018514546,-0.022387676,-0.024879307,0.003071367,0.025261685,0.027950674,-0.013481945,0.021561245,0.010385908,0.021339217,-0.014333046,-0.005553747,0.009392956,-0.022535693,-0.015171813,-0.035400897,-0.020562124,-0.011755072,0.020352433,0.010614102,0.012877539,0.013370931,0.03007226,-0.044676673,-0.0064696064,-0.021955958,0.026371818,-0.008720709,0.01919296,-0.032983277,-0.0008742295,0.018711902,0.030664332,0.007826435,0.01249516,-0.032884598,0.045589447,0.012149786,-0.0055568307,0.013716306,0.026100453,0.02240001,-0.031873144,-0.007986788,-0.0454661,-0.006333924,0.013309257,-0.027136577,0.017527761,0.014493399,0.013938333,-0.014530404,0.001468613,-0.02339913,-0.014456394,-0.008239651,0.035746273,-0.010472252,0.009553309,-0.019032609,0.025311025,-0.013000887,-0.04608284,0.0010577098,0.008128638,0.014320712,-0.010046701,0.023917193,0.004921588,0.011477538,0.0015295162,-0.08091634,0.0067101354,0.01221146,0.0404335,0.008905731,-0.010953309,-0.019279305,0.012340975,0.024644945,-0.010342736,0.032169178,-0.008967405,-0.026371818,-0.027753318,0.010638772,0.025051994,0.016503973,-0.041938346,-0.016664324,-0.031108385,-0.0040519843,0.0047519845,0.013296923,0.020253753,0.010083705,-0.039372705,-0.008689872,-0.041321605,0.0019781948,-0.0033242307,-0.016849346,-0.008424673,-0.05373042,0.012624675,-0.028542744,-0.029652877,-0.0041722488,0.030639661,0.0035123364,-0.05580267,0.00719736,0.057480205,-0.012575337,0.0056000026,0.02824671,0.022622038,0.020229084,0.005843615,0.0067718094,0.011927759,-0.012501327,-0.020031728,-0.022794724,0.0048629977,-0.0014817187,0.01575155,-0.037473146,0.060489897,-0.007622911,-0.028049352,-0.006142734,0.00850485,0.043418523,0.0006475774,-0.026125122,-0.024928646,0.024620276,0.019180626,-0.06098329,0.00076707086,0.012593838,-0.001975111,-0.0033612351,0.03796654,0.04487403,0.011483706,0.015295161,-0.009639652,-0.020821156,0.007992955,-0.0026365651,0.003145376,0.0070061707,-0.023263447,0.038879313,-0.0013568288,0.022153314,-0.04800707,0.01964935,0.0082519865,-0.056197383,0.04161764,0.013555953,0.011804411,-0.018169172,-0.05072073,0.023485474,-0.0549639,-0.011792076,-0.009812339,0.030639661,0.02619913,0.0013421812,0.022609701,-0.004227755,0.02365816,0.02881411,-0.02088283,-0.0018949348,0.0002634638,0.022313667,0.009170929,0.020722477,0.0113603575,-0.010367406,0.022634372,-0.017293401,-0.041543633,-0.008134806,0.017811462,0.032613233,0.042456407,0.011138331,-0.044602662,0.022597367,-0.03335332,0.00053849147,0.05891104,0.01731807,0.05126346,0.02026609,-0.005698681,-0.014530404,-0.019526001,0.005763439,0.0070370077,0.018650228,0.0028678428,-0.0014724677,0.03017094,-0.013309257,-0.030417636,0.019414987,-0.048253767,-0.007542735,0.04625553,-0.005387227,0.032218516,0.03332865,-0.019303974,-0.028962128,-0.04292513,0.011668728,-0.019057278,0.048253767,0.008905731,-0.014160359,0.015270492,0.041444954,-0.017083708,0.0048136585,0.015184148,-0.008689872,0.02401587,-0.0008356832,0.039471384,0.0025317192,0.019772697,0.01767578,0.010342736,0.03076301,0.051707514,-0.029899573,0.027926004,0.0054334826,0.031996492,-0.015825558,-0.05116478,-0.022301331,0.022387676,-0.0018949348,0.0064079324,-0.0038977992,-0.011008816,0.024928646,-0.02235067,0.037596494,0.025187677,-0.038213234,-0.0077832635,-0.005014099,-0.0069876686,0.0029295168,-0.017947145,0.0048352447,0.006278417,-0.013210579,-0.021918952,0.051608834,-0.0007508814,0.027358603,0.019488996,-0.02242468,-0.02681587,-0.01985904,-0.013099565,0.020340098,-0.007881942,-0.0070925145,-0.02306609,0.017836131,0.03078768,-0.0015595822,-0.029677548,0.01893393,0.008578858,0.020068731,0.00800529,-0.0014053971,0.013518949,-0.01631895,0.026840542,-0.02149957,0.025261685,0.00063986814,0.0045977994,-0.026421158,-0.023189439,-0.017725118,0.027728647,0.02624847,0.033081952,-0.02116653,0.03140442,0.0141356895,-0.0019041859,0.0036264334,-0.01767578,-0.02473129,0.020660803,0.040680196,0.013851989,0.009806172,-0.019945383,0.024854638,-0.016306616,0.005254628,-0.026125122,-0.018354194,-0.0256564,-0.05239826,0.0088563915,-0.010607935,0.023892522,0.004872249,-0.008726876,-0.016516307,-0.013740975,-0.0025903096,0.011230842,0.008017625,-0.021351552,0.0053409715,-0.021228204,-0.011724235,-0.030861689,-0.023497809,-0.00964582,0.0109964805,0.0056555094,0.046600904,0.004418945,-0.015221152,0.022844063,0.012248464,0.0149497865,0.013087231,0.03890398,-0.010472252,0.002801543,0.0039132177,-0.03409341,-0.038731296,-0.014049346,-0.0028477986,0.027432611,0.05126346,-0.017281065,0.009725995,-0.001417732,0.012106613,0.02473129,-0.008387669,0.00055699365,-0.013839654,-0.0256564,-0.004792073,-0.021154195,-0.01280353,0.020463446,0.029258164,0.02634715,0.0006371699,-0.0010307274,-0.010114542,-0.016590316,0.04282645,-0.00022395384,0.0051220288,0.018711902,0.009010577,0.01767578,0.0056647602,-0.02886345,0.02309076,-0.025927765,0.021709261,0.0049000024,0.0037528651,-0.0256564,-0.0057449364,-0.02116653,-0.012174455,0.023238778,-0.0175771,-0.004196918,0.00000493573,-0.021154195,-0.02473129,0.01667666,-0.016047584,0.0020151993,-0.025952434,-0.0017268731,-0.019723358,0.008850224,0.01736741,0.0040519843,-0.03466081,0.013333927,0.0070370077,0.011755072,0.06211809,0.04344319,0.015763884,0.05777624,0.036807064,0.018637894,-0.00914626,0.015813224,-0.033748034,0.026939219,0.0128282,0.0033273143,0.00928811,-0.009269608,-0.022979746,0.011866085,-0.010392075,-0.026075782,-0.006303087,-0.006167404,-0.017453752,-0.006475774,-0.0031253318,-0.00043595835,-0.0061704875,0.014986791,-0.0059515447,0.013037891,-0.0045792973,-0.006537448,-0.028000014,-0.043196496,0.009103088,-0.03350134,0.011921591,-0.0002359032,-0.03843526,0.02309076,-0.0031947151,-0.0056431745,-0.016874017,-0.005791192,0.016837012,-0.03007226,-0.0052916324,-0.004415861,-0.00024014329,0.06340091,-0.006463439,0.024891641,-0.007326876,0.012532164,-0.03643702,0.015504853,0.03224319,0.016084589,0.0058806194,0.024595607,0.0046070507,-0.023929527,-0.0048506632,-0.004233923,0.008079299,0.0028801775,0.039570063,0.029751556,-0.01696036,0.017996484,0.015110139,0.01598591,0.006340091,0.0016420713,-0.010589432,0.0067903115,0.011730402,-0.006340091,0.014061681,0.004958593,-0.014641416,-0.0021709262,0.008930401,-0.05525994,-0.0040828213,0.001964318,0.00013520106,0.0026288559,-0.013469609,0.024607942,-0.014061681,0.028024683,0.030442305,-0.029233495,-0.013580623,-0.0056955973,-0.020623798,0.0012820491,0.0026874463,-0.009035246,0.033575345,0.045885485,0.0007643726,0.010564763,-0.018391198,0.004258592,0.022103975,-0.01472776,-0.03643702,-0.007394717,0.036140986,-0.019748027,-0.0070925145,0.044577993,0.04615685,-0.015196483,-0.00084262155,-0.02442292,0.021548908,0.0011656393,0.016244942,-0.019069612,0.0036881075,0.016898686,0.023781508,0.009516304,-0.022683712,0.016158598,0.010533926,0.031774465,-0.013296923,0.0072775367,-0.0006907492,-0.0013575997,0.022868734,0.06789078,0.04499738,-0.013876659,-0.010176216,0.032514554,-0.005276214,0.02178327,0.006179739,0.006062558,-0.008881061,0.032218516,0.014259038,0.0062074917,0.020130405,-0.018847587,0.008757713,0.020093402,-0.0039995615,-0.034315433,0.026421158,-0.039274026,0.053681083,-0.008332162,-0.027753318,0.015862562,0.032317195,0.054174475,0.009300445,0.0038885481,-0.020993842,0.00802996,0.022572698,-0.0044528656,-0.0030852437,0.008140973,0.0045577115,-0.027679307,0.012624675,0.01793481,0.013333927,0.029850233,0.009053749,0.027087238,0.0043233503,-0.0301216,-0.005948461,0.007012338,-0.02026609,-0.010299564,0.0061088135,-0.024657281,0.0033365653,-0.016923357,-0.009966524,-0.01893393,-0.034142748,0.023510143,0.010453749,-0.042530417,0.016133929,0.016763004,-0.0058497824,-0.049413238,-0.008060797,0.018674899,0.0009690533,-0.01636829,-0.002937226,0.017823797,-0.009405291,-0.027087238,0.018391198,-0.00881322,0.0384846,-0.0009752207,-0.008770049,-0.016590316,-0.0077832635,0.020944504,-0.0066792984,-0.019896045,-0.017552432,-0.011200005,-0.018711902,-0.03910134,-0.030392965,0.000087114575,0.016133929,-0.017466087,-0.017860802,0.009812339,0.041124247,-0.0053656413,-0.0044436143,-0.00959648,-0.034241427,0.007333043,0.003620266,0.009392956,0.0060348045,-0.014888112,-0.014826438,-0.0014192738,-0.005852866,-0.0067656417,-0.015171813,0.021376222,0.009861679,-0.0029017634,0.0067101354,-0.005516743,-0.014530404,0.04304848,0.014690756,-0.014000007,0.05580267,0.0010068286,-0.009392956,0.005760355,-0.023140099,-0.0032563892,0.013543619,-0.03404407,-0.0013121151,-0.010885468,0.009232603,0.024250232,0.010170049,0.023559483,0.01964935,-0.02458327,0.011206172,-0.0037466977,-0.0066422937,0.071689904,0.0116008865,-0.028000014,-0.041370943,0.012007935,0.0007219717,-0.0016174016,0.01705904,0.02755596,0.01691102,0.014123355,-0.00012566085,-0.01040441,-0.032095168,-0.0023204857,0.0135312835,-0.05249694,-0.019266969,0.0018132167,0.024336575,0.011033486,0.0018471375,0.00705551,-0.009047581,-0.030442305,-0.0044127773,0.019402653,0.009608815,0.0068211486,0.0031268736,0.01798415,0.03836125,0.025187677,-0.01639296,-0.010022031,-0.033451997,-0.0015318289,-0.0075304,0.012501327,-0.022930408,-0.07104849,-0.012106613,0.035721604,-0.009707494,0.014542738,0.008523352,0.0033550677,-0.0023821597,-0.006068725,0.011372693,-0.015517188,0.03340266,0.013185909,0.040211473,-0.0026828207,-0.01919296,0.04312249,0.004841412,0.024435254,-0.038805306,-0.0066669635,0.05072073,-0.007326876,-0.005337888,-0.002618063,0.0133215925,-0.022979746,-0.022511024,0.024805298,0.007992955,-0.015480183,-0.0070493426,-0.012088112,-0.011983265,0.0068396507,-0.0035863454,-0.010903969,-0.053335708,-0.0040889885,-0.005976214,0.03850927,-0.046625573,0.02083349,-0.005883703,0.015541857,0.0237075,-0.015603531,0.032909267,-0.03451279,0.013975337,0.010355071,0.00926344,-0.031897813,-0.0025317192,0.030837018,0.011693398,0.013568289,0.022979746,0.040285483,0.0077215894,0.030417636,-0.0058405316,0.007289871,0.014320712,0.006093395,-0.0076599154,0.030318957,0.029899573,0.019488996,0.036066975,0.031749796,0.031577107,0.016516307,-0.011551547,0.002556389,-0.007314541,-0.014333046,0.0016837012,-0.013185909,-0.008091634,-0.027827326,0.008307493,0.0069321617,-0.018785913,-0.004455949,0.0513128,-0.0069444967,-0.021437896,0.010139212,-0.027037898,0.033131294,0.05777624,0.0071850256,-0.0033766537,0.012815865,0.005390311,0.023522478,-0.021092521,-0.0035339224,-0.017515427,-0.032267857,-0.028370058,0.02627314,0.006241413,-0.009466965,0.024126884,-0.015381505,-0.022881068,0.012439653,0.0026442744,0.010126877,0.008073132,-0.012427319,-0.033155963,-0.036338344,0.010669609,0.024225563,-0.021635253,0.0001398266,0.033131294,0.027259925,0.0026612347,-0.010392075,-0.008221149,-0.011496041,0.0034537462,-0.02888812,-0.010163882,0.008406172]},{"id":"interface-APIUser","type":"interface","source":"main","text":"Interface: APIUser","meta":{"url":"/docs/typedefs/APIUser"},"embedding":[-0.03773489,-0.010362077,-0.026103148,0.02875169,0.027304549,-0.04286814,-0.025406884,0.049721584,0.067933716,-0.026690196,-0.030990664,-0.0183077,0.013133489,0.04387841,0.013597665,-0.03830828,-0.01811657,0.018922053,-0.02214399,0.023673045,0.024628703,0.03822637,0.04363267,0.024014352,0.004631534,0.017543172,-0.030226136,-0.013440664,-0.03175519,-0.023017734,0.0014113039,-0.028833603,0.047455307,0.037707582,0.062308982,-0.0159049,0.023591131,0.04832905,0.003935268,-0.013065226,-0.043141186,-0.0010145346,0.026335238,0.0008362018,-0.067933716,0.04338693,0.023836872,0.04068378,0.015986813,0.0058773044,-0.027277244,0.0010768232,-0.0064370474,0.009761376,0.0118501745,-0.0078295795,0.020232672,-0.01662847,-0.047264174,0.029270478,-0.0067851804,-0.017242823,0.018826487,-0.027987164,-0.02869708,-0.007911493,0.007884189,0.03830828,-0.008205017,-0.012553266,0.04224014,-0.023181563,-0.05119603,0.007802275,0.03981003,-0.009365461,-0.00063184433,0.03511365,0.008205017,-0.024710618,-0.0055598887,0.028806299,-0.03991925,-0.05936009,0.0033004375,-0.008027538,-0.06635006,0.00015145492,-0.022457993,-0.031591363,-0.018212134,0.03912742,-0.055073276,0.0033584596,0.016901515,-0.027591247,-0.006669136,-0.014635239,-0.00124577,-0.0050342763,0.0660224,-0.025038272,-0.009986639,-0.008348366,0.025529753,-0.026881328,0.015099416,0.020027887,-0.06531248,0.022362426,-0.043496147,0.012341657,0.00735175,-0.04890245,-0.022376077,0.0036929403,0.053134654,-0.009433722,0.028915517,-0.04729148,-0.008232322,-0.0060479576,0.047619134,-0.040083077,0.020137105,-0.030417267,-0.018416919,0.0043960325,-0.08273278,-0.01740665,0.036342356,-0.036833838,0.013427012,0.025365926,0.00026963244,-0.013536231,-0.018143874,0.03175519,-0.019945974,-0.024710618,-0.012737572,-0.006860268,0.009658984,-0.02869708,-0.033093113,-0.03366651,-0.03434912,0.03762567,0.023427304,0.020096147,-0.0030990664,0.01963197,-0.04830175,-0.017911784,-0.023359042,-0.014471411,0.006672549,0.009536114,-0.00083108223,-0.018089265,0.03727071,-0.049967326,-0.0093722865,-0.0069899647,-0.036151223,0.0107306875,0.017980047,-0.020041538,-0.060889143,0.027918901,-0.02142042,-0.022826603,-0.058377128,-0.0270042,-0.046363126,-0.062254373,-0.014212018,-0.0075224033,-0.037898716,-0.0087852385,0.048001397,0.024942705,0.003638331,-0.083060436,0.006679375,0.010300641,0.001967634,0.0040990952,-0.0007257037,-0.03391225,-0.024819836,0.0408203,-0.020997198,0.006604288,0.039564293,-0.0021946032,0.02041015,-0.05485484,0.015468027,0.01482637,0.030471876,-0.00080889725,0.045762423,-0.021161025,-0.00447112,0.005809043,0.013037922,0.013133489,-0.047045738,0.006559918,0.008327887,0.029516218,-0.026744805,-0.04778296,-0.020969894,-0.008109451,0.021939205,0.0022065488,-0.023536522,-0.010949125,-0.024833487,0.039209332,0.090705715,-0.028860908,0.038390197,0.0139799295,0.04032882,-0.017611435,-0.03467678,-0.014280279,-0.035605133,0.060070008,-0.020328237,-0.041120652,0.01524959,-0.0023652567,-0.00011711092,0.00032850786,-0.011659043,-0.01656021,-0.07536056,0.008662368,-0.021229288,0.049967326,-0.0067920065,-0.0059455656,0.013536231,0.024396615,-0.010102684,0.048602097,0.040492646,0.012252917,0.045352858,0.0107306875,0.030826837,0.021283897,0.025652625,0.051032204,0.024082612,0.033229638,0.038554024,-0.047864877,0.0036144396,0.011119777,-0.009754551,-0.023850523,0.00086307974,0.038990896,-0.019072227,0.043605365,-0.012921878,0.027796032,0.015331505,0.020737804,-0.019372577,-0.0064404607,0.08289661,0.0564112,-0.055373628,-0.020628586,-0.047919486,-0.016177945,0.026813067,0.030799532,0.049912717,0.027140722,-0.0058431737,-0.007447316,-0.0044028587,0.01961832,-0.0029898481,0.0624182,0.04529825,-0.027140722,0.023208868,0.01765239,0.049257405,-0.012287047,0.049967326,0.03090875,0.053708047,-0.019249707,0.017980047,-0.020546673,0.0050172107,-0.026976895,0.07355846,-0.018375961,0.013208576,-0.003302144,-0.010403033,-0.03426721,-0.019959625,0.00086350634,-0.042349357,-0.027714118,0.007809101,-0.013665927,-0.05826791,0.04532555,-0.019741189,0.012949183,-0.017215518,-0.041994397,0.033448074,-0.036697313,0.01104469,-0.04584434,0.015386114,-0.0049523627,0.038144454,-0.031372927,-0.0384175,-0.059742354,0.07055496,0.0025342035,0.0055530625,0.025570711,0.018689964,0.028014468,0.022171294,-0.059851572,-0.046363126,-0.0101982495,0.019222403,-0.016573861,-0.017474912,0.029843872,-0.02869708,0.046144687,-0.0021519398,0.02376861,0.004068378,0.02244434,-0.0282056,-0.0033874707,0.042649705,-0.0468273,-0.04573512,0.041202564,-0.028478645,-0.017707,-0.017256476,0.0026246498,0.013365577,-0.00894224,-0.00855315,0.011037864,-0.02112007,-0.076507345,-0.011775087,-0.006665723,0.0061708284,0.031400234,-0.015085763,0.03576896,-0.018048307,-0.02724994,0.025161142,0.01735204,0.04297736,0.03271085,0.012007176,-0.055974327,0.008327887,-0.042403966,-0.029188564,0.014758109,-0.041038737,0.022703733,0.041857876,-0.011256301,-0.014894632,-0.042622402,0.052288212,-0.040410735,0.04136639,0.029133955,0.008716977,-0.044970594,0.012607875,0.0022713973,0.03727071,0.0071810964,-0.03565974,-0.012403091,0.0035086346,0.008102625,0.003522287,0.006624766,0.0014053311,-0.045543987,0.03331155,0.0056964117,0.027072461,-0.039455075,-0.023700349,-0.049776193,0.038908985,0.040410735,-0.029598132,-0.0155226365,-0.01071021,-0.021161025,0.008095799,-0.010990081,0.028833603,0.0043926192,-0.04286814,-0.02497001,0.008382496,0.025598016,-0.024942705,-0.020751458,-0.03732532,-0.0011706826,0.072848536,0.010996907,-0.0051093637,0.06924434,-0.009276721,-0.010614644,0.016573861,-0.014198366,0.006553092,-0.033420768,0.0016186478,-0.0018276983,-0.003785093,-0.016396381,-0.041530218,-0.020014234,0.0025171381,0.06351038,-0.025406884,-0.023304433,0.007153792,0.050813768,-0.0044199238,0.03456756,0.027154375,0.020928938,-0.027959859,0.08207747,0.022376077,-0.0048158397,0.011358692,0.039455075,-0.027017852,-0.0016706971,-0.011891131,-0.01656021,-0.012232438,-0.005727129,-0.03626044,-0.024983663,0.0016323001,-0.03871785,-0.047591828,-0.00008644663,-0.0017509043,0.022703733,-0.01914049,0.0033721118,0.05029498,0.08906744,0.04524364,-0.0027031503,-0.07006347,0.03156406,-0.002858445,-0.005969457,0.057940252,-0.01716091,0.013365577,-0.012007176,-0.019945974,-0.05646581,-0.0035154608,-0.030335354,0.06323734,-0.017597781,0.022799298,0.024792532,0.008990023,-0.011256301,-0.00036263856,-0.018348657,-0.047864877,-0.0324105,-0.026198715,-0.024178179,-0.017870827,-0.007611143,-0.038253672,0.020983547,-0.007338098,0.05239743,-0.00858728,0.030226136,0.0104917735,0.0139253205,0.0076316213,-0.02749568,-0.024355657,0.016396381,-0.02256721,-0.03792602,-0.0074746204,-0.020669544,0.011549824,0.021980163,0.009249416,0.0106214695,-0.010089031,0.0038499415,-0.0125123095,-0.017297432,0.0005345719,-0.025557058,-0.01878553,-0.018635355,0.0029079346,0.010259684,-0.0043823803,0.02634889,-0.017051691,-0.029598132,0.025775494,-0.004372141,-0.011017386,-0.00756336,0.026294282,-0.016136989,0.032000933,0.0207105,0.007160618,-0.022881212,-0.016997082,-0.022608167,-0.041912485,-0.015686464,0.03716149,-0.02916126,-0.038035236,0.007297141,0.014020886,-0.039536987,0.000046769706,0.021311201,-0.0070240954,0.040984128,-0.035086345,0.07470525,0.00022632911,-0.018881096,0.0069626602,0.018280396,0.024109917,0.036342356,-0.04218553,0.0054028877,-0.028123686,0.050731853,-0.022457993,-0.03170058,-0.0043823803,-0.003587135,-0.0032458282,0.051114116,0.01122217,-0.013993582,0.011829696,-0.017078996,-0.027372811,-0.014949241,0.017707,0.025106532,-0.026485413,0.011631738,-0.014430454,0.002976196,-0.01656021,-0.0048943404,0.024778878,0.016096031,0.0078295795,-0.013003792,-0.034403734,0.0061093927,0.017038038,0.011590782,-0.0018857204,-0.03265624,-0.02539323,0.016614819,-0.020519368,-0.015194981,-0.00044625872,-0.011686347,-0.025243055,-0.024109917,-0.002092211,0.029407,-0.005624737,0.025857408,-0.038581327,-0.021829987,-0.0032646002,-0.0104371635,-0.013959451,0.020219019,0.027577594,-0.0144031495,0.013720536,-0.02664924,-0.011351867,0.020355541,-0.034076076,-0.01585029,0.0062732203,0.01224609,0.016041422,0.020300932,0.01728378,0.0086009335,-0.032028235,-0.021556942,-0.027509334,0.014212018,-0.050513417,-0.0028089555,0.010798949,0.0007611143,0.03757106,-0.0058841305,-0.008996849,0.040001165,0.0010196542,0.0051912772,-0.005525758,0.048356358,-0.010307468,-0.0015930498,-0.010041248,0.0093722865,-0.010061726,0.023932438,-0.036697313,0.024205483,-0.011918436,0.04513442,-0.012553266,0.00078713894,0.035086345,0.017065343,0.012048133,-0.013508926,-0.008908109,-0.007269836,0.011672695,-0.011891131,-0.04073839,0.005518932,0.01717456,-0.021352157,-0.0064916564,-0.0052868435,-0.0057612597,-0.019126836,-0.004477946,0.027877945,0.02214399,-0.033994164,0.0031946322,-0.006153763,0.0027970097,-0.020765109,-0.012532788,-0.013270011,-0.018021002,-0.005454084,0.016573861,-0.014362193,-0.03981003,0.013379229,0.0068943985,-0.008566802,0.024628703,-0.0014326356,-0.036424268,0.021475028,-0.021925554,0.02677211,0.027522985,0.027714118,-0.013467969,-0.0015469734,0.016027771,0.039509684,0.0006792007,0.0069217035,-0.0219119,0.050076544,0.019522753,-0.011508867,0.025898365,0.033093113,0.010368902,-0.011420128,-0.028615167,-0.024833487,0.0006446433,0.02262182,-0.019454492,0.017092647,0.019031271,-0.0062868726,-0.035550524,0.0017338389,-0.012880921,-0.014689848,-0.012321178,0.0053482787,-0.032465108,0.024137221,-0.010150466,0.041120652,-0.015399766,-0.03787141,-0.004269749,0.010416686,-0.017242823,0.0046042297,0.0044130976,-0.041038737,0.0070855306,0.005174212,-0.045352858,0.018539788,-0.0027133897,0.051605597,0.010150466,-0.004617882,0.0058875433,0.0149901975,0.01656021,-0.008205017,0.05029498,-0.011085647,0.004331184,-0.008928588,-0.001191161,0.00924259,0.018498832,-0.042950056,-0.05646581,-0.03462217,-0.006720332,-0.011065168,-0.0058773044,0.017229171,-0.019522753,-0.057339553,-0.011017386,-0.030089613,-0.0039967033,0.040356126,-0.014389497,-0.0040717907,-0.026621936,-0.0021672987,0.010007117,-0.0066759624,-0.0003063229,0.024301048,-0.005307322,-0.05646581,0.01032112,-0.019263359,0.004918232,0.0056349766,-0.010648774,0.018102916,0.023918785,-0.011092473,0.012259742,0.0014036245,-0.027645856,-0.021939205,-0.050813768,-0.0016647242,-0.011051516,-0.0009232351,-0.0035905482,0.035550524,0.02166616,-0.020792414,0.015194981,-0.0022645711,0.055291712,0.011194865,-0.022457993,-0.027318202,0.042540487,0.036943056,-0.05690268,-0.026990548,-0.0035939612,-0.0062425025,-0.0023840284,0.034458343,0.03224667,0.014116452,-0.0015136959,-0.027563943,-0.04748261,-0.0024983662,0.0067988327,-0.007413185,0.025584362,-0.052834302,0.044014934,-0.0063653733,0.0130993575,-0.04224014,0.020396499,-0.015645506,-0.042403966,0.022307817,0.0139253205,-0.011693173,0.005969457,-0.022403382,0.025816452,-0.042485878,-0.026307933,0.0037646147,-0.010553208,-0.01452602,-0.017693348,0.02412357,0.006245916,0.0036656358,0.0021672987,-0.022294164,0.0084917145,-0.005921674,0.020778762,0.0016698438,0.037489146,0.07437759,-0.0046554254,-0.006129871,0.0045598596,0.010239206,-0.02965274,0.013420186,0.033966858,0.042513184,-0.005262952,-0.016997082,0.0059387395,-0.014498715,-0.004669078,0.00141813,-0.016232554,0.03912742,0.018580746,0.017133605,0.0034471992,0.011167561,0.004768057,-0.0006395237,0.035905484,0.002421572,0.013543056,0.041421,0.0033396876,-0.009952508,0.010771644,-0.05690268,0.0066315923,0.015645506,0.0144577585,0.021406766,0.06809755,-0.03677923,-0.004068378,-0.022758342,0.0064199823,-0.0018157525,0.032000933,0.005863652,0.0002286756,-0.012546441,0.020533022,-0.027277244,0.020451108,-0.018102916,-0.022430688,0.014212018,-0.014293931,0.041120652,-0.016887864,-0.0006454966,-0.005556476,-0.029079344,0.0081981905,-0.0011578836,-0.0064848303,0.002250919,0.006716919,0.019454492,-0.03391225,-0.007836405,-0.006716919,0.032519717,0.030635705,0.0038158107,-0.019754842,-0.024041656,0.010266511,-0.033884946,0.029816568,0.007303967,-0.016997082,-0.00447112,-0.03055379,-0.006276633,0.017242823,-0.021051807,0.004621295,-0.0006996791,-0.028096382,-0.0069797253,0.050131153,-0.009802333,0.0201098,0.03320233,-0.004416511,-0.0558105,-0.019918669,-0.023154259,0.009481505,-0.0048602098,-0.009829638,-0.0034471992,0.035495915,0.001478712,-0.039482377,-0.015167677,0.030690314,0.04753722,0.014334888,0.010573687,-0.016942473,0.024956359,-0.018498832,0.00088227825,0.021283897,0.03923664,-0.010792123,0.01860805,-0.02765951,-0.007877363,-0.02436931,0.045107115,0.044042237,0.023126952,-0.019823102,-0.017939089,-0.013775145,0.011338214,-0.008280105,-0.0039967033,-0.016177945,0.035550524,0.03978273,-0.009734072,0.0037646147,-0.007570186,0.0036553966,0.0044984245,-0.0046076425,0.01806196,0.009740898,-0.033584595,0.0028533253,0.006949008,0.0027441073,-0.013058401,0.019017618,-0.026731154,-0.029625436,-0.0017543173,-0.016792297,0.012676137,0.007454142,-0.0052015167,0.005082059,-0.031591363,0.0069899647,-0.039209332,-0.0011101005,0.0004573512,0.016068727,0.010655601,0.036833838,0.0009104361,0.0026297695,0.026635587,0.010348424,0.034239903,0.0033260353,0.02065589,-0.021051807,0.0021280483,0.034403734,-0.01104469,-0.024219135,0.012041306,0.012116394,0.024000699,0.010007117,-0.0063653733,0.016901515,0.01866266,-0.009822812,0.0183077,0.008020711,0.021652507,-0.019905016,-0.008949066,0.005573541,-0.010976429,-0.012908226,0.01836231,0.002180951,0.011372345,-0.0033175028,-0.014212018,0.009147024,-0.036642704,0.027304549,0.011788739,0.0076657524,0.009775029,0.008484889,0.008628238,0.014143757,-0.019468144,0.022785647,-0.029379696,0.035140954,0.0060377186,-0.0007385027,-0.030444572,0.009631679,-0.024451224,0.006563331,0.015058459,-0.024451224,0.003276546,-0.020041538,-0.033639204,-0.017720653,0.0040035294,0.01656021,0.021024503,-0.034922518,-0.011126604,-0.027932554,-0.005556476,0.015222286,0.04374189,-0.014061843,-0.002088798,0.030990664,-0.024232788,0.02484714,0.01813022,-0.0234,0.03385764,0.034731388,0.040410735,-0.0021178091,-0.003155382,-0.06476639,0.030471876,-0.0015793975,0.0010495186,0.009147024,-0.02472427,-0.021829987,-0.029188564,0.0024710617,-0.0054063005,0.013543056,-0.023782263,0.0039420943,-0.016177945,0.03049918,0.03415799,-0.0036212658,-0.00005850213,-0.0054404316,0.012519136,-0.04032882,0.00807532,-0.025065577,-0.03134562,-0.02484714,-0.031973626,0.018717268,0.019645624,-0.025284013,-0.009385939,-0.026034888,0.022881212,-0.010191423,0.0091333715,0.01908588,0.006198133,0.008846674,-0.0062902854,-0.031400234,0.08873978,-0.009508809,0.01687421,-0.0054131267,-0.00026963244,-0.0067373975,0.015932204,0.06192672,-0.0013498686,-0.0010341598,0.0013387762,-0.011106125,-0.010334772,-0.002360137,-0.0042049005,0.0058226953,0.023727654,0.0080138855,0.033393465,-0.008457584,0.013932146,-0.016532905,0.0071947486,0.024000699,0.013665927,-0.023113301,-0.0055359975,0.0051434943,0.033147722,0.024109917,-0.042076312,-0.008955892,-0.014198366,-0.010751166,-0.02875169,0.013317794,0.014212018,-0.02652637,-0.0022116685,-0.0013498686,0.041066043,-0.0057885647,0.015427071,-0.004129813,-0.03822637,-0.003407949,0.016055075,-0.010013944,0.0038021584,0.0031178382,-0.029079344,0.028069077,0.053926487,-0.0020239498,0.01806196,-0.004679317,0.00019230509,0.048574794,0.013406534,-0.021502333,0.0073176194,0.03527748,0.004989906,0.011843348,0.029516218,0.06045227,-0.014444106,0.020969894,-0.01782987,0.02226686,0.0056452155,0.020041538,-0.0046588387,0.007706709,0.039837338,0.0046042297,0.00080079125,-0.038199063,0.006819311,0.013263185,0.010505426,-0.021543289,0.013652274,0.02221225,-0.016000466,0.0112085175,0.050868377,0.0047407523,-0.030608399,-0.02472427,0.02118833,0.0026639001,-0.00018793209,0.023918785,-0.002257745,0.0068227244,0.025475144,0.015686464,-0.023263477,0.023290781,-0.03366651,0.017297432,0.027714118,-0.01332462,-0.036151223,0.0023004082,-0.009788681,0.049475845,-0.0020324823,-0.012396266,0.0074336636,0.0011809218,0.022198599,-0.00045052505,-0.00026344624,-0.0074200113,0.007850058,-0.0022236141,-0.002095624,-0.021748073,0.0058226953,0.014239322,-0.015959509,0.015986813,-0.0004206607,0.015235938,0.019195098,0.00073252985,0.002059787,0.0141028,-0.039482377,-0.019727537,0.006409743,-0.024710618,0.012164176,0.015331505,-0.02755029,-0.025324969,0.003382351,-0.012921878,-0.0031570885,-0.013584013,0.009686288,0.010717035,-0.038745154,0.008382496,0.0047851223,-0.005324387,-0.01848518,-0.011761434,-0.009693115,-0.008723804,0.011447432,-0.026935939,0.0021382875,-0.04136639,0.00846441,0.02136581,-0.034431037,0.006068436,0.01083308,-0.0012363842,-0.015386114,-0.0016937354,0.007406359,-0.021789031,-0.03830828,-0.011720478,-0.011317736,0.0100549,-0.040438037,-0.00014057576,-0.0054984535,0.018403266,-0.008423453,-0.030635705,0.00679542,0.015140372,0.011891131,0.012307526,0.0033379812,-0.022376077,0.021625202,0.031127186,0.01620525,0.04073839,-0.018375961,-0.001593903,-0.016546557,0.0006860268,-0.0018089263,-0.026963243,0.017939089,-0.0043960325,-0.008225496,0.0019420361,-0.014171061,-0.032601632,0.021993814,-0.022021119,-0.031318318,0.045898948,-0.008580455,-0.02293582,0.009604375,-0.010409859,0.01986406,0.032492414,-0.0020512543,0.024696965,0.0083074095,0.035741653,0.018580746,0.019126836,0.011781913,0.018239439,0.009706767,0.010846732,-0.0052049295,0.01908588,0.055537455,-0.0035564175,-0.006522374,-0.045025203,0.022840256,0.018102916,-0.010539556,0.013051574,-0.014840023,0.01806196,0.0072425315,0.03126371,-0.017365694,-0.054336052,-0.022253208,-0.021338506,-0.046718083,-0.010553208,-0.005911435,0.051223334,0.016109684,-0.0033226223,-0.024328353,0.009515636,-0.022826603,-0.01284679,0.053516917,-0.015959509,-0.029516218,0.011979871,0.006525787,0.049312018,0.009522461,-0.019358926,0.015563593,-0.0064438735,-0.016259858,-0.0016689906,-0.02466966,-0.006457526,-0.007112835,0.019031271,0.006454113,-0.0034216014,0.031181796,-0.002095624,0.0088535,-0.0012747812,-0.014252975,-0.0036042004,-0.002180951,0.023236172,-0.025406884,0.034239903,-0.00079225854,-0.008232322,0.017447608,0.0035973743,0.030417267,-0.046963826,-0.00408203,0.045352858,-0.007747666,0.014553324,0.008457584,0.034458343,-0.027782379,-0.03134562,0.014717152,0.0267175,-0.01194574,0.0011698293,0.0010145346,-0.0061913067,-0.0017329856,0.005082059,-0.017270127,-0.043496147,-0.0037407232,-0.00015966762,0.029816568,-0.026103148,0.040492646,-0.016027771,-0.012478179,0.03456756,-0.019522753,0.005454084,-0.033966858,0.019167794,0.0120890895,-0.017788913,-0.029816568,0.0061093927,0.021543289,0.011720478,0.01638273,0.03312042,0.04592625,0.0045598596,0.05048611,0.007795449,0.007447316,0.03230128,0.020969894,0.0073654023,0.022062076,0.038444806,0.028260209,0.046226602,0.0032594805,0.019823102,0.011447432,-0.005532584,0.004239031,-0.015208634,-0.029024735,-0.002785064,-0.02274469,-0.0052902563,-0.029215869,0.002723629,-0.02724994,-0.009515636,-0.014539672,0.040956825,0.020833371,0.009024153,-0.010089031,-0.03317503,0.00597287,0.057776425,0.008873979,0.0061947196,0.0070923567,0.010498599,-0.026922286,-0.025188446,0.0072015747,0.003969399,-0.035195563,-0.015263243,0.013631796,-0.0028089555,0.009877421,0.056520417,-0.0064029167,-0.044506416,0.007153792,0.023386346,-0.00011956406,0.007256184,-0.008566802,-0.010423511,-0.012703442,0.014635239,0.008498541,0.005515519,0.008703325,0.014375845,0.022116685,0.021447724,-0.013106184,0.016915169,-0.015317853,0.011754609,-0.016915169,-0.020928938,0.012580571]},{"id":"interface-APIUserPartial","type":"interface","source":"main","text":"Interface: APIUserPartial\nDescription: Partial user object returned by the API (messages, members, webhooks, etc.).\nProperties: avatar: string | null, avatar_color: number | null, banner: string | null, bot: boolean, discriminator: string, flags: number | null, global_name: string | null, id: string, public_flags: number | null, system: boolean, username: string","meta":{"url":"/docs/typedefs/APIUserPartial"},"embedding":[-0.011010307,-0.001480281,-0.014504459,0.06302095,0.0247402,-0.047506694,-0.009908702,0.013724156,0.036008697,0.009013649,-0.021217361,-0.02969742,-0.003993316,-0.025979506,-0.008921849,0.017086344,0.0008649316,0.03408089,-0.023432044,0.029444968,0.035274293,-0.004839601,0.0366513,0.03984136,-0.007917782,0.03201538,-0.038762707,-0.013104503,-0.024510698,-0.013311054,0.025704104,-0.014929036,0.036789,-0.0029146618,0.03961186,0.011377509,0.03961186,0.035503794,0.0051322146,0.022020614,-0.020127231,-0.0370644,-0.0055453163,0.007820244,-0.05388682,0.047368992,0.03426449,0.032107178,0.009002174,0.025543453,-0.026323756,-0.005224015,0.01996658,0.066050366,0.0029749058,0.006076037,-0.02205504,-0.015284762,-0.037729952,0.021561611,-0.021550138,-0.025497554,0.011497997,-0.010057878,-0.021687837,0.0033507135,-0.033116985,0.049893502,0.0063916007,-0.016684717,0.05200491,0.00558261,-0.03988726,0.016948644,0.055126123,0.021802587,0.011257021,0.024327097,0.010786544,-0.02103376,-0.015250336,0.058889937,-0.0368808,-0.022536991,-0.011738973,-0.02471725,-0.04727719,0.0068333903,-0.023432044,-0.011750448,0.0064661885,-0.006098987,-0.08459404,-0.038510256,0.010878344,-0.020333782,-0.030844925,-0.0036375897,-0.011589797,0.037248,0.0061104624,0.0042773234,-0.060909547,0.005619904,0.038303703,-0.053152416,0.025428703,0.0062481626,-0.057467032,0.006689952,-0.025566403,0.016994543,-0.0038584843,0.0025001257,-0.021641938,0.0040879855,0.025727054,0.021022284,0.021963239,-0.043674026,-0.040575765,-0.030661324,0.036100496,0.0000457433,0.022892717,-0.007980895,-0.045028083,-0.0071317414,-0.079958126,-0.010602943,0.007820244,0.012163549,-0.0037695528,-0.020563284,-0.02205504,-0.033575986,0.004231423,-0.017178144,-0.05916534,-0.071099386,-0.0093521625,-0.030661324,0.02949087,-0.0056141666,-0.03001872,-0.0015118374,-0.03460874,0.07197149,0.0024083254,-0.013345479,0.011429146,0.009908702,-0.017568296,-0.008422684,-0.014045456,0.00523549,0.00051243254,-0.027838463,-0.031235076,-0.051729508,0.02096491,-0.07596481,-0.0007939298,0.0038211904,0.013701205,-0.038625006,0.022250116,-0.00043533457,-0.051545907,-0.027563062,0.00017768392,-0.031074425,-0.06577496,-0.042664222,-0.037156202,-0.023454994,0.010872606,-0.030225271,-0.061184946,-0.02246814,0.03935941,0.025933605,-0.00866366,-0.057880133,-0.035503794,-0.0053617153,-0.010820969,0.018933827,0.016455216,-0.033323534,0.033553034,0.0053100777,-0.010872606,0.0056973607,0.027425362,-0.013724156,0.025795905,-0.04204457,-0.00074300927,0.030684274,0.029536769,0.009851327,0.04746079,0.0017083476,0.024418898,-0.01591589,0.025313953,-0.002937612,-0.034746442,-0.010264429,0.010080828,-0.0049285325,-0.021974714,-0.02728766,-0.014125782,0.002546026,0.0032044067,0.017671572,0.0005841516,0.0045469874,-0.011733235,0.0489296,0.07899422,-0.03254323,0.0028845398,0.009639039,0.018692851,0.00004269524,-0.043903526,-0.0010671794,-0.032818634,0.059762042,-0.041011814,0.01860105,-0.02124031,-0.028917117,0.014906085,0.041333117,-0.015147061,-0.026209006,-0.025612304,0.0077112312,0.0060932497,0.06178165,0.019209228,0.0182109,0.043146174,0.0003135915,-0.0024341443,0.025038552,0.075689405,0.018956777,0.008164495,0.041034766,0.0060129245,0.05250981,-0.012209449,0.05953254,-0.005272784,0.019989531,0.020253457,-0.019232178,0.0048654196,0.033438284,0.0047621443,0.017258469,0.033415336,0.03667425,0.010155416,0.023730395,-0.012140599,0.0058465363,0.048011594,0.0046617375,-0.02992692,0.010287379,0.04624444,0.025382802,-0.040828217,0.028113864,-0.015904414,0.04693294,0.016156865,0.04718539,-0.0126569765,0.05475892,0.05921124,-0.027563062,0.0040851166,0.044385478,0.045762487,0.05939484,0.07036498,-0.060404643,0.033484187,0.028940067,0.053565517,-0.028022064,0.04486743,-0.009277575,0.0010119557,-0.060175143,0.002105671,-0.038074203,0.024028746,-0.0046646064,0.05434582,0.0043863365,0.0075735305,-0.025405753,0.019427253,-0.038257804,-0.0374316,0.015089686,-0.06462746,-0.011853723,-0.017717471,-0.009684939,-0.04654279,0.034287438,-0.05145411,-0.021389486,-0.043696977,-0.029422019,-0.0001047098,-0.038625006,-0.04245767,-0.037041448,-0.0060875122,-0.02226159,0.03194653,-0.037385702,-0.025543453,-0.012725826,0.019978056,-0.015686389,-0.026254905,0.06875848,-0.013609405,0.024372999,0.011664385,-0.04179212,-0.034975942,-0.01368973,-0.014676584,-0.033300586,-0.03981841,0.006655527,-0.02717291,-0.015755238,-0.012404525,0.007825982,-0.0049256636,-0.011566847,-0.01067753,0.0024700037,0.041287217,-0.040874116,-0.06898798,0.045211684,-0.007934995,-0.0043490427,0.023913996,0.0039875787,-0.013609405,-0.02230749,-0.01355203,-0.006557989,-0.028733516,-0.06930928,-0.005160902,-0.030707223,-0.0075735305,-0.000067102126,0.0015433937,0.019025628,-0.04674934,-0.0056514605,-0.02983512,0.03708735,0.068115875,0.017384695,0.022100938,-0.029399069,0.0011955564,-0.011738973,-0.015192961,0.0040019224,-0.032451432,0.038349606,0.038349606,-0.025107402,-0.016133916,-0.02724176,0.01994363,-0.025658203,-0.014573309,0.013586455,0.0035285768,-0.036169346,-0.0246943,-0.0011654344,0.028618766,-0.018864976,-0.041149516,0.0048539448,0.008462846,-0.004128148,0.037844703,-0.019163327,0.03437924,-0.04651984,0.018245324,0.007120266,0.05641133,-0.018497774,0.0493427,-0.03249733,0.02740241,0.043605175,-0.03201538,-0.013942181,-0.030500673,-0.03713325,-0.0012687098,-0.0068907654,-0.008921849,0.004196998,-0.0495263,-0.035641495,-0.021538662,0.0093579,0.022766491,-0.03013347,-0.0059383367,-0.02717291,0.062286552,0.028572865,-0.050536104,0.059762042,0.02508445,-0.02235339,-0.009765265,-0.012725826,-0.050352503,-0.01950758,0.041172467,-0.026599158,0.0061276746,-0.028894167,-0.012117649,0.017981397,0.010161154,0.06265375,-0.038280755,-0.043352727,0.017637147,0.045418233,-0.011463571,-0.018073197,-0.0007161146,0.023454994,-0.030110521,0.05388682,0.03217603,-0.032635033,-0.00050382625,0.030248223,-0.015594588,0.0031871942,-0.0013268022,0.0114520965,0.051500008,-0.01500936,-0.033048134,-0.013402854,0.00067810353,-0.016960118,-0.00736698,0.023305818,0.028022064,0.0022605842,-0.033162884,-0.030385923,0.040552814,0.04498218,0.026254905,0.016351942,-0.014883135,0.016283091,-0.023007467,-0.029353168,0.03961186,-0.00993739,0.03458579,-0.00810712,-0.012025849,-0.066279866,0.01243895,-0.025566403,0.0375234,-0.032749783,0.0033363698,-0.015284762,0.01700602,-0.02749421,-0.04383468,-0.030317072,-0.03178588,-0.033598937,-0.045510035,0.014986411,-0.032566182,-0.006098987,-0.05622773,0.03444809,-0.015089686,0.023363195,0.011607009,0.019817404,0.013861856,0.020540332,0.018463349,-0.017889597,0.0021874306,-0.01642079,-0.033002235,-0.10281642,-0.018807601,0.016799469,0.0030494935,0.009581664,0.021423912,-0.027838463,-0.0039072535,0.015043786,-0.013815956,-0.024304148,0.0024685694,-0.0083882585,-0.011486521,-0.012048799,0.0063686506,0.0047478005,0.0057948986,0.050260704,0.010809493,-0.008921849,0.027815513,0.010109516,0.007206329,-0.001118817,0.035434943,-0.036123447,0.011125058,0.020907534,0.004727719,-0.018658426,0.0004120259,-0.028940067,-0.033644836,-0.013242204,0.038831558,-0.003499889,-0.011698809,0.0025488946,0.031166226,-0.03942826,0.010390654,0.033461235,-0.0018245324,0.032566182,-0.023799246,0.017315844,0.031464577,0.009369375,0.0043232236,0.02978922,0.013104503,0.03173998,-0.007699756,-0.0151814865,-0.014171682,0.054254018,0.010769331,-0.0187617,-0.023799246,-0.013827431,-0.0057862923,0.04399533,0.036054596,-0.0025890574,-0.029169569,0.00078173756,-0.038762707,0.0031585065,0.04684114,0.013861856,-0.028641716,-0.009610351,0.00027880777,-0.0074300924,-0.031694077,0.016810942,0.03401204,-0.0015419594,0.010339017,0.0066268393,-0.07013548,0.0053014713,-0.006844865,0.04160852,-0.0089906985,-0.00009538632,-0.019576428,0.008233346,-0.009036599,-0.013609405,-0.004859682,-0.016110966,-0.010396392,-0.028504016,-0.016225716,0.040162664,-0.00061463215,0.0062998002,-0.03426449,-0.012576651,-0.00076093903,-0.018061724,-0.036307048,0.0036146396,0.013379904,0.002636392,0.02214684,-0.026828658,0.002267756,0.020414108,-0.028182713,0.0063342256,-0.002267756,0.036100496,0.011830773,-0.035618544,0.012634026,-0.016386366,-0.040415112,-0.0029634307,-0.024189398,0.012106174,-0.014366758,-0.037385702,0.01707487,-0.008996436,0.004977301,-0.023707446,0.027631912,0.048516497,-0.03495299,0.0030753124,-0.008795623,0.035641495,0.0139192315,-0.011509472,-0.020586234,0.014837235,-0.0124160005,0.005376059,-0.027677812,-0.0006644769,-0.021814063,0.03938236,-0.0057317857,0.004432237,0.018922351,-0.009415275,0.0014974936,-0.028917117,0.017246995,0.0068161776,-0.0014243402,-0.004756407,-0.023156643,-0.0056858854,0.0024154973,-0.022743542,0.01953053,-0.0034195639,0.01239305,-0.04131017,0.010057878,0.026438506,0.0489296,-0.03185473,0.0038097154,0.011716022,0.01707487,-0.012140599,0.014860185,0.009661989,-0.015043786,-0.007183379,-0.009616089,0.00202678,-0.016248666,0.043398626,-0.00041704622,0.021423912,-0.0059498115,-0.02972037,-0.055814624,0.025887705,-0.033920236,0.0129553275,-0.0056715417,0.031166226,-0.037156202,0.0000018546095,0.021722263,0.008675135,0.014068407,-0.008049745,-0.033139933,0.062837355,0.013253679,-0.0247861,0.02490085,0.021102611,0.025130352,-0.02244519,0.012725826,-0.022020614,0.0014702403,0.003611771,0.0032675194,0.017671572,0.016374892,0.008141546,-0.031418677,-0.0036031646,-0.008342358,-0.02740241,-0.0020525989,0.013471705,-0.026668008,-0.013448754,-0.018578101,0.012163549,0.005137952,-0.029077768,-0.009851327,0.005797767,0.0010894123,-0.008789886,0.0051838523,-0.010798018,0.008141546,-0.0058866986,-0.050077103,0.006644052,0.026920458,0.035641495,0.0047076377,0.03453989,-0.027884362,0.0009431054,0.043719925,-0.030982625,0.038372554,-0.031694077,-0.01596179,0.0024800445,-0.019060053,0.025772953,0.02737946,-0.024074648,-0.02714996,0.0030581,-0.011784873,0.0075276303,0.012748777,0.030707223,0.016455216,-0.027746662,0.0050834455,-0.015147061,-0.0025029944,-0.0026091386,-0.022571417,0.00687929,-0.037248,0.0063743885,-0.0092202,-0.03974956,0.005835061,0.021527188,0.0116930725,-0.06292915,0.028504016,0.0369726,-0.017487971,0.017017493,0.0070686284,0.027127009,0.019427253,-0.0102529535,-0.008772673,0.02335172,-0.006540776,-0.0064891386,-0.025910655,0.017660096,-0.003861353,0.0062022624,-0.030431824,0.050214805,-0.03447104,-0.025153302,0.008175971,-0.015238862,0.049204998,-0.014447084,-0.008652185,-0.034516938,0.014068407,0.035457894,-0.046129685,-0.020023955,0.013334004,-0.032703884,-0.015537213,0.022892717,0.048608296,-0.019415779,-0.017889597,-0.020379683,-0.026094256,-0.0044264994,-0.016340466,-0.0044264994,0.012886477,-0.008244821,0.013276628,-0.0020812866,0.03483824,-0.022777967,0.04424778,-0.027586011,-0.03226783,0.00047549725,0.0005959852,0.000082476894,0.0013081552,-0.05429992,-0.019002676,-0.04463793,-0.02990397,0.010557042,0.033874337,0.0040277415,-0.008399734,0.029422019,0.012530751,0.0048797633,-0.0067358525,-0.008411209,0.017143719,-0.022709116,0.028504016,0.0059383367,0.017591245,0.008198921,0.010298854,0.022938618,0.0018675638,0.0035285768,-0.051132806,-0.024372999,-0.0039187283,0.050719704,-0.008916111,-0.02717291,0.02124031,-0.017637147,0.009541501,0.046496887,0.02237634,0.03465464,0.009317738,0.023592696,-0.0248779,-0.016845368,0.0093464255,0.0034080888,0.03901516,0.0047678817,-0.014355283,0.040483963,-0.021159986,-0.024602499,-0.015204436,-0.044087127,-0.016386366,-0.0043461737,0.003190063,0.011888148,0.057421133,-0.0131963035,-0.02705816,0.0069137155,0.015663438,-0.008428422,0.03467759,0.058063734,-0.010407867,0.014550359,0.033690736,-0.04640509,0.02694341,0.028641716,0.008227608,0.011876673,0.009484126,0.05521792,-0.008772673,0.0072981296,-0.005717442,-0.025015602,0.02244519,-0.0044437116,0.0003582366,0.0074071423,0.021733738,0.0044064177,-0.037638154,-0.03148753,0.0079694195,0.026002456,0.029077768,0.0036490648,0.009782477,0.020907534,0.011411933,-0.01751092,0.022709116,0.016581442,-0.043283876,0.0017972791,0.0009861368,-0.016592918,0.0123242,0.005390403,0.013540555,-0.022973042,0.0055309725,-0.021228835,0.07862702,0.0022620186,0.045555934,0.014481508,-0.039221708,-0.023110744,-0.032635033,-0.012186499,-0.000506695,-0.018922351,0.04640509,-0.0022921406,0.012266825,0.027907312,-0.0014056931,-0.0029060554,0.05232621,0.017591245,0.021309162,0.008382522,-0.0060301367,0.035733294,-0.021504236,-0.0030581,-0.016524067,0.017901072,-0.01841745,-0.0053272904,-0.015594588,0.017705997,-0.028022064,0.014297908,0.015365087,0.02444185,0.019002676,0.0057489984,0.0076366435,0.023959897,-0.0008742551,-0.004251505,-0.013471705,-0.01352908,0.024602499,-0.0034826766,-0.019668229,-0.021687837,0.01051688,-0.020632133,0.030408872,-0.011509472,-0.003032281,-0.0069366656,0.01355203,0.022158315,-0.01964528,0.00555966,-0.0002836488,-0.024143498,0.015789663,-0.03426449,-0.018842027,0.021400962,0.003499889,-0.010224266,0.01480281,-0.022571417,0.0059039113,-0.01500936,-0.010120991,0.007498943,-0.0028730647,-0.01612244,0.023638595,-0.016524067,-0.0002836488,0.015996214,-0.0011561109,0.017935498,0.005473597,0.012588126,-0.010258691,0.031189175,-0.0048453384,-0.024418898,-0.025038552,0.0011475047,-0.023397619,0.026645057,0.021114085,-0.033461235,0.017361745,0.0063514384,-0.0059670242,0.01174471,0.023168119,0.002395416,-0.019243652,-0.02082721,0.0064202882,-0.010304592,0.0011424843,0.008451371,0.003344976,0.005135083,-0.03173998,0.0050002513,-0.0065063513,0.0053445026,0.035389043,0.026759809,0.00984559,-0.025268052,-0.0055653974,0.02216979,-0.0023265656,-0.0063112755,-0.00042421813,-0.047139492,0.019519053,0.017671572,0.0368349,-0.043352727,-0.019450204,-0.014148733,0.0065120887,0.011899623,0.0017356008,-0.014619209,-0.025612304,0.0028027801,0.00032632163,0.02200914,0.011320134,0.012634026,-0.02226159,0.015479838,-0.025543453,0.000014679991,-0.001642366,0.029284319,-0.0097136265,-0.03699555,-0.010453767,0.0106144175,0.025382802,0.017522397,0.004174048,0.05145411,0.014125782,0.015537213,0.0009122662,-0.009771002,-0.041264266,0.039451208,0.011176695,0.012519276,0.011830773,-0.0373398,-0.06173575,0.017522397,-0.0059383367,-0.009042337,0.00915135,0.010597206,-0.008835786,-0.007825982,-0.008256296,0.031464577,0.00864071,0.0008649316,-0.02983512,0.034746442,-0.045555934,0.004079379,0.015066735,-0.048241094,0.0030552312,-0.039152857,0.017981397,-0.0037724215,-0.030569524,0.009765265,-0.0020325177,0.008525959,-0.0049027135,0.016053589,0.007906307,0.006523564,-0.0011503734,0.0015390906,-0.027999112,0.027723713,-0.001137464,0.020310832,-0.016351942,-0.019140378,0.011773397,0.03288748,0.022192739,0.023959897,0.007171904,0.0016438004,-0.003502758,-0.012381575,0.013793006,0.021228835,0.009759527,0.007148954,0.023822196,0.029444968,-0.022089465,0.015996214,0.03215308,0.037936505,-0.004696163,-0.004816651,-0.030982625,0.0247861,0.00262922,0.00938085,0.011325871,0.0066497894,0.009191512,-0.004799438,-0.023099268,-0.020345258,0.008198921,0.012209449,-0.010023453,0.017407645,-0.021389486,0.028871216,-0.020873109,-0.0014243402,0.0047449316,-0.041356068,0.0040822476,0.023913996,-0.02710406,-0.0058866986,-0.021699313,-0.025359852,0.051362306,0.03190063,0.014091357,-0.004592887,-0.010625893,0.00736698,0.06577496,0.0042400295,-0.033208784,-0.014137257,0.04433958,-0.0042830613,0.0028974493,0.07169609,0.023845145,0.0019923549,-0.014366758,0.007676806,0.04000201,-0.014596259,0.0014745435,-0.009059549,0.005499416,0.021928813,0.010321804,-0.009581664,-0.031143276,-0.003898647,0.017568296,0.009002174,-0.044913333,-0.0119340485,0.014642159,-0.01619129,0.016524067,0.03518249,0.014974936,-0.0008584769,-0.013391379,0.031510476,0.0030667062,-0.017063394,0.060312845,-0.013655305,0.014274958,0.015124111,0.00077600003,0.01352908,0.025497554,-0.01973708,-0.00033994825,0.028963016,-0.026231956,-0.038808607,0.0075505804,-0.026277857,0.020976385,0.014011032,-0.015560163,0.016294565,0.042319972,0.013896281,0.018050248,0.008290721,-0.014561834,0.02490085,0.027723713,0.002768355,-0.007384192,0.01818795,0.0025818856,-0.0060243993,0.0043748613,0.030454773,0.023156643,0.00493427,-0.017935498,-0.011182433,-0.0030150684,-0.028618766,-0.00013474215,0.041172467,-0.033231735,-0.014768384,0.0060473494,-0.023982847,-0.036789,-0.021768164,-0.009036599,-0.011750448,-0.02978922,-0.0042428984,-0.0012500628,-0.022755018,-0.015238862,0.015307711,-0.024350049,-0.006523564,-0.0248779,-0.023638595,-0.011148008,-0.011991424,-0.029146617,0.020574758,-0.04147082,-0.023913996,0.01739617,-0.03513659,0.014997886,0.008789886,0.006001449,-0.00038405546,-0.00875546,0.028963016,-0.008141546,-0.023214018,-0.0070456783,0.0021085397,-0.0054276967,-0.04482153,-0.023214018,-0.0039215973,0.027631912,-0.016317517,-0.019978056,-0.008721035,0.031533428,-0.013861856,-0.017786322,-0.030431824,-0.027815513,0.01002919,-0.000012225855,0.004475268,0.0063112755,0.0061907875,-0.0110332575,-0.002237634,-0.0026493014,0.023386145,-0.018428925,0.043972377,-0.017579772,0.012794677,0.012519276,0.03217603,0.0024398817,0.0063457005,-0.03208423,-0.0018905139,0.05664083,-0.0036519335,-0.019232178,-0.044913333,-0.0012156378,-0.0083882585,0.006776015,-0.006121937,0.00016593993,-0.02462545,0.023936946,0.039910212,-0.021963239,0.028710566,0.014515934,-0.010838182,0.012565176,-0.028320415,-0.012622551,0.0489296,-0.003431039,-0.021573087,-0.036697198,0.013907757,-0.011434884,0.0036002959,-0.018991202,-0.0104308175,-0.010884082,0.00014406562,-0.0048654196,-0.021710787,-0.019140378,-0.0022204216,-0.0061104624,-0.021802587,-0.0123242,0.026392607,0.040644616,0.018773176,-0.023386145,-0.016386366,0.01116522,-0.020723933,-0.0022419372,0.038441405,-0.009208725,-0.021274736,0.017568296,0.015629014,0.043123223,0.0499394,-0.03993316,0.015124111,-0.02237634,0.0028845398,-0.021802587,-0.02490085,-0.022250116,-0.0375234,-0.02235339,0.037156202,-0.012852052,0.019335452,0.028274514,-0.0070571536,-0.021446861,-0.012886477,0.015686389,-0.019461678,0.017637147,0.018945301,0.02114851,-0.009157087,-0.014079882,0.015927365,-0.011308658,0.013058603,-0.023913996,-0.010769331,0.06357176,0.014550359,0.026828658,-0.006317013,0.031877678,-0.03890041,-0.0371103,0.0067702774,0.018199423,-0.02751716,0.0022290277,0.021676363,0.0030609686,-0.0036002959,-0.0029218337,-0.0030753124,-0.030799024,0.02694341,0.013070078,0.008962011,-0.04411008,0.035228394,0.0023036157,-0.0016438004,0.02091901,-0.020046907,0.014366758,-0.041631468,-0.019266604,0.026828658,-0.005714573,-0.013391379,0.001661013,0.019679705,-0.0021644805,-0.0010126728,0.01755682,0.06320456,0.0014243402,0.041195415,0.012576651,0.002335172,0.03649065,0.027448311,0.033025183,0.0056084287,0.053519618,0.0011353124,0.01111932,0.0008828614,0.0075391056,-0.010579993,-0.008795623,0.004297405,-0.008692347,-0.023913996,0.008841523,-0.011377509,0.002708111,-0.017832221,-0.01764862,0.006862078,-0.02724176,0.031464577,0.04704769,-0.011388984,-0.03653655,-0.003861353,-0.021561611,0.02962857,0.055263825,0.0064776638,0.008049745,0.020219032,-0.03249733,0.0016509723,-0.021791114,-0.013907757,-0.0025919261,-0.033002235,-0.021733738,-0.014722484,0.016673243,0.020666558,0.038739756,0.0055539226,-0.028022064,-0.0055510537,-0.013976607,0.0002173087,-0.00493427,0.013276628,-0.05911944,-0.008313671,-0.014286432,0.01735027,0.0021028023,-0.0042887987,0.018038772,0.04709359,0.024005797,-0.01621424,0.0109701445,-0.025130352,0.0008462847,-0.008376784,0.0003074954,0.010034928]},{"id":"interface-APIUserProfile","type":"interface","source":"main","text":"Interface: APIUserProfile\nDescription: User profile sub-object from GET /users/{id}/profile.\nProperties: accent_color: number | null, banner: string | null, banner_color: number | null, bio: string | null, pronouns: string | null, theme: string | null","meta":{"url":"/docs/typedefs/APIUserProfile"},"embedding":[0.004952037,0.002629071,-0.009549336,0.03606891,-0.0015133608,-0.03721323,0.017427966,0.0053239404,0.06783518,0.010745148,-0.023641614,-0.033436976,0.04236266,-0.0058875172,0.005847466,-0.0024331065,-0.0022943579,0.028813932,-0.024213772,0.033620067,0.03789982,0.0075181704,0.016317977,0.0397765,0.009383409,0.055110365,-0.03650375,0.015780147,-0.0135716135,-0.014990568,0.0064253467,-0.015242319,0.007283585,0.011763591,0.039639182,-0.047054365,0.048244454,0.015436852,0.022577398,0.021204216,-0.007483841,-0.03959341,0.013045227,0.026891477,-0.041332774,0.06637046,0.026250659,0.019430524,0.034169342,0.034466863,-0.025701387,-0.014143772,0.015368193,0.026159113,-0.019945467,0.0026219191,-0.020483296,-0.027852705,-0.039273,0.023984909,0.00041266976,-0.023412751,-0.022108227,-0.010876744,-0.028630842,-0.041378547,-0.034512635,0.03185782,-0.006024835,-0.024808818,0.08605273,0.00931475,-0.028081568,-0.00046487927,0.027738273,0.007895796,-0.00733508,0.010779478,-0.013605943,-0.057627864,-0.0016778565,0.0347415,-0.04266018,-0.027806932,-0.0073922956,-0.006602716,-0.034375317,-0.029271659,-0.029981136,0.016306534,-0.021845033,-0.013743262,-0.06577541,-0.0236645,0.024282431,-0.016878692,-0.032201115,-0.0028693778,-0.009743869,0.028676614,0.03197225,-0.024785932,-0.04746632,-0.008393574,0.024534183,-0.031949364,0.027326318,-0.0013259787,-0.028287545,-0.01507067,-0.05570541,0.04336966,0.020242989,0.036343545,-0.029203,0.0053925994,-0.00046666726,-0.0031411534,0.021089785,-0.031743385,-0.057261683,-0.0021270015,0.041882046,0.015310978,0.018526511,-0.01945341,-0.024648614,0.0022528765,-0.118551366,-0.064127594,-0.007260699,-0.040188454,0.0038906818,-0.013125329,-0.033139456,0.018183216,0.006333801,-0.036183342,-0.034329545,-0.07566232,0.010584943,-0.0067858067,0.010773756,-0.026777046,-0.058131363,-0.012770591,-0.0047517815,0.096763544,0.026296431,0.02118133,0.010630716,0.0026376534,-0.05552232,-0.019911136,-0.011466068,-0.018034454,0.03844909,-0.024808818,-0.052318227,-0.037144568,0.07168009,-0.061793182,-0.0196365,-0.030576183,0.023424193,-0.007232091,0.010665045,0.010533449,-0.04199648,0.010584943,-0.030667728,-0.036961477,-0.064676866,-0.011254369,-0.04538366,-0.021867922,0.012255648,-0.023756046,-0.033620067,0.030667728,0.046596635,0.055293456,-0.014178103,-0.025518296,-0.02099824,-0.0037247557,0.008004506,0.0030667728,0.000092618255,-0.0024860313,0.028722387,0.027051682,0.017828478,-0.026090454,0.0027249076,-0.03460418,0.05671241,-0.016855806,-0.048656408,0.012988011,0.019270318,0.00668854,0.02977516,-0.014635829,0.011586222,-0.025152113,0.013926352,0.012667602,-0.031377204,-0.01456717,0.009869744,-0.001438265,-0.015459739,0.021410193,0.00064761256,-0.006991784,-0.000106832835,0.023893364,0.017679716,0.011500398,-0.030301545,0.02712034,0.11699509,-0.0046087415,0.028607955,0.009383409,-0.0057444773,0.0062422557,-0.012186989,-0.0004977784,0.0041052415,0.025220772,-0.023550069,-0.0016235014,-0.023572955,-0.010956847,-0.0031497357,0.030576183,-0.006648489,-0.054606862,-0.018286204,-0.01507067,0.016443852,0.052455544,0.024373978,0.025724273,0.032269772,0.0068373014,-0.010390409,0.014075113,0.033894707,-0.004502892,-0.03297925,0.0018866946,0.013285534,-0.0021069758,0.01898424,0.034398206,0.01891558,-0.02309234,0.0011629134,0.009555057,-0.0036532357,0.02200524,0.017508069,-0.0061392672,0.013960682,0.024831705,-0.024190886,0.016420966,-0.0082448125,0.014200989,0.038586408,0.040325772,-0.011540449,0.0012058252,0.03751075,-0.016272204,-0.03448975,0.040806387,-0.012862137,0.0050693294,0.0137203755,0.036984365,-0.012907909,-0.0016163494,0.023595842,0.009749591,0.0067343125,0.035656955,0.024076454,0.031743385,0.060008045,-0.034146454,0.032887705,-0.004271168,0.051906273,0.0058875172,0.055385,-0.005472702,0.079644546,-0.03970784,0.029477637,-0.031422976,0.016455296,-0.016775705,0.043392546,0.03277327,-0.013731819,-0.008239091,0.0039850883,-0.04696282,-0.027921364,-0.0051007983,-0.07268709,-0.03021,0.023824705,-0.004028,-0.04476573,0.014086557,-0.013834807,-0.009572222,-0.022154,-0.033688728,-0.0060362783,-0.019510625,-0.01118571,-0.042499978,0.048107136,0.019625057,0.038998365,-0.034283772,-0.043163683,0.014040784,0.03600025,-0.0081017725,0.0062479773,0.051402774,-0.009412017,0.017805591,0.006213648,-0.057856727,-0.05268441,-0.037236113,-0.017611057,-0.011082722,-0.0286995,0.0029952528,-0.035336547,0.010567779,0.007398017,0.025083454,-0.0071805967,0.01592891,-0.009875466,-0.026548183,-0.015105,-0.01104267,-0.0458185,0.0518605,-0.009766756,0.013926352,-0.019201659,0.0025060568,-0.012747705,-0.05350832,0.0075582215,0.013869137,0.0038391876,-0.055476546,-0.016855806,-0.042911932,0.01970516,-0.016123444,0.009589386,0.023824705,-0.03970784,-0.030736387,-0.023939136,-0.025564069,0.0800565,0.042911932,0.042294,-0.04764941,0.03998248,-0.06829291,0.006991784,-0.0021455965,-0.05016691,0.0347415,0.05886373,0.019487739,0.0286995,-0.04506325,0.056620862,-0.005678679,-0.0034443978,-0.0037676676,-0.0012079709,-0.031377204,-0.022760488,0.009703819,0.006053443,0.014040784,-0.035840046,-0.03336832,-0.0037276165,0.013010898,0.025449637,-0.054332227,0.035016138,-0.048244454,0.019213103,0.039273,0.021490296,-0.036847048,0.0102645345,-0.061518546,0.009371966,0.060145363,-0.029248772,-0.000030261852,-0.014132329,-0.043918934,-0.0028593652,-0.022428637,0.006505449,0.0034157897,-0.031400092,-0.0061907615,0.00014366557,0.0049005426,0.05282173,-0.034032024,-0.025632728,-0.026387978,0.025907364,0.01535675,-0.024145113,0.04449109,0.0049692015,0.012610386,-0.0022385726,-0.031812046,-0.009017227,0.005773085,0.050578862,-0.019739488,-0.0012952251,-0.03229266,-0.037144568,0.061335456,0.0015305256,0.08243668,0.014361193,0.01485325,0.0063109146,0.028241772,-0.008891352,0.0038849602,0.046848387,0.028241772,-0.042705953,0.06669086,0.044788614,-0.018331977,-0.043095022,0.0050006704,-0.0014246762,-0.015711488,0.027486524,0.009137381,0.051128138,-0.039135683,-0.017736932,-0.027166113,-0.014647272,0.032155342,-0.03938743,0.012404409,-0.0086796535,0.035336547,-0.038266,0.0043569915,0.053966045,0.089989185,0.03938743,-0.023332648,-0.013972125,0.019533511,0.024396865,-0.0020254431,0.03744209,-0.009944125,0.01456717,0.016306534,-0.017267762,-0.021856477,0.013091,-0.023321204,0.015482625,-0.018434966,-0.01467016,0.025266545,0.027074568,-0.03394048,-0.020689273,-0.030507524,-0.044353772,-0.019750932,-0.005438372,0.007850023,-0.03664107,-0.0145099545,-0.033116568,0.009583665,-0.033711612,0.03847198,-0.010602108,0.018824033,-0.0028236052,-0.010665045,0.0021126976,0.018675273,0.0062594204,-0.031308547,-0.00018487891,-0.097679004,0.013926352,-0.025655614,-0.0059905057,-0.04103525,0.009291864,-0.01978526,-0.010607829,0.026342206,-0.011626272,-0.03883816,0.02492325,-0.012392966,-0.03556541,-0.02650241,0.015116443,0.04053175,-0.008296307,0.046322,-0.009412017,-0.008147545,0.017988682,-0.008067443,0.014681603,-0.0050950767,0.0047374773,-0.016855806,0.026319318,0.029408978,0.018766819,-0.013697489,0.020128557,-0.0357485,-0.008553779,-0.013399966,0.051952045,0.0008689666,0.010487677,0.029180113,0.043735843,-0.013113886,-0.008725426,0.025724273,-0.0000620882,0.0016692742,-0.0307135,-0.0065111704,0.02272616,0.008313471,-0.035290774,0.032338433,0.030324433,-0.00068408775,-0.009194597,-0.017759819,-0.022932136,0.024602842,-0.03192648,0.014590057,0.0078843525,0.003229838,0.011282978,0.014098,0.019590728,-0.010453347,0.016752819,-0.028997023,-0.009360523,0.0023201052,0.047924045,0.014990568,0.012038227,0.010487677,-0.0011314446,-0.038952593,-0.029294545,0.009526449,0.043506976,0.022119671,0.033848934,-0.0037905541,-0.04948032,0.0043999036,-0.0057072868,0.038746614,-0.019796705,0.013777591,-0.023355534,0.02089525,0.0015648551,-0.021341534,0.012598943,-0.01733642,-0.021112671,-0.008399296,-0.018389193,0.04401048,-0.028470637,-0.016455296,-0.057810955,-0.01650107,0.013296978,-0.024854591,-0.019934023,-0.016192103,0.0009826833,0.01705034,0.007483841,0.011368801,0.00013284819,0.017027454,-0.03588582,-0.033093683,0.030805046,0.024236659,0.018286204,-0.009469233,0.011151381,-0.026891477,-0.027051682,0.0029351762,-0.014281091,0.019464852,-0.042889047,-0.046047363,0.012896466,-0.008519449,-0.002377321,-0.001755098,0.00989263,0.018640943,-0.033780273,0.029454751,-0.0114145735,0.04469707,0.030690614,-0.013193989,-0.004079494,-0.007375131,0.009240369,0.036366433,-0.029546296,-0.01575726,-0.0028436307,0.024145113,0.030988136,-0.012461625,0.0011271534,0.009291864,0.029386092,-0.029500524,-0.015906023,0.025152113,-0.0050578862,-0.022039568,-0.028653728,-0.024122227,-0.0041739005,-0.01822899,0.006082051,0.016878692,0.017794147,-0.010790921,0.0037562244,0.00949212,0.049892273,-0.012736262,0.000758826,0.0031640397,-0.009000063,0.014086557,0.014956239,0.015333864,-0.007832858,-0.012507398,0.0018523651,-0.030072682,-0.009120216,0.0156085,0.0070432783,0.008330637,0.006768642,-0.021044012,-0.0367555,0.01888125,-0.029317431,0.018686716,0.004823301,0.01204967,-0.025335204,-0.003567412,0.027852705,0.020769374,0.018801147,-0.017759819,-0.021375865,-0.0034672841,0.0034529802,0.00023780363,0.039936706,0.029019909,0.024168,-0.025518296,0.0007724148,-0.013354193,-0.01923599,0.023893364,-0.026639728,0.021753488,0.0236645,0.029683614,0.0030410255,0.0070661646,-0.0014482777,-0.006516892,-0.029088568,-0.011248648,-0.025838705,0.0076898183,-0.016798591,0.018480739,-0.017897137,-0.0055442215,-0.031079682,0.0058388836,0.0062308125,-0.022955023,0.014395523,-0.012816364,0.0017593892,0.0032470028,-0.034558408,0.0076039946,0.010802364,0.02448841,0.00819904,0.0008260547,-0.046413545,0.010951125,0.024877477,-0.01664983,0.018091671,-0.0012573196,-0.02934032,-0.0056357672,-0.015276648,0.005813136,0.036412206,-0.016718488,-0.007466676,-0.046230454,0.002740642,0.005369713,-0.0011500398,0.021890808,0.025838705,-0.040897932,0.014750262,-0.0016306534,0.0034386762,-0.014281091,-0.011878023,-0.029180113,-0.021192772,0.0023472826,-0.0053954604,-0.046093136,0.025998909,-0.004445676,0.004002253,-0.040783502,0.027669614,0.027532296,-0.019430524,0.009286142,-0.00008783536,0.04185916,-0.00920604,-0.03208668,-0.0034186507,0.026662614,-0.0045286394,-0.02099824,-0.0032212557,0.0053525483,-0.030164227,0.010762312,-0.032018024,0.0347415,0.0008196179,-0.033025023,-0.006619881,-0.039501864,0.07186318,0.0005428359,-0.013045227,-0.007426625,0.0059218467,0.056483544,-0.040371545,-0.010853858,-0.006728591,-0.040188454,0.020185772,0.0043970426,0.037625182,0.0045400825,0.008010227,-0.03719034,-0.010127216,0.006574108,0.013628829,-0.0058503267,0.021730602,-0.011900909,0.040188454,-0.028081568,0.024694387,-0.054789957,0.014990568,-0.04549809,-0.0176225,0.0076726535,-0.00073808525,-0.053142138,-0.0077241478,-0.03467284,-0.028722387,-0.045086138,-0.015310978,0.00848512,0.009503563,0.004265446,-0.0007752756,0.016878692,-0.008136102,-0.010893909,0.003118267,-0.004096659,-0.010607829,-0.002952341,0.020300204,0.0031154063,-0.014761705,0.0011393118,0.019716602,0.0111227725,0.007655489,0.023572955,-0.0266855,-0.00043341052,0.019693715,0.04085216,0.003161179,0.00045987288,0.02190225,-0.021776374,0.023183886,0.019831033,0.013892023,0.01690158,-0.0019710881,0.025175,-0.010642159,-0.008038836,-0.012381523,0.0236645,0.044582635,0.022634614,-0.012392966,0.03405491,-0.029683614,-0.022634614,-0.015288091,-0.035016138,-0.031033909,0.025518296,-0.0015362472,-0.023687387,0.029363206,-0.010871023,-0.0021198494,0.009343358,0.0007184173,-0.043735843,0.0043999036,0.03721323,0.027715387,0.011878023,0.011305864,-0.03998248,0.02290925,-0.0013510106,0.021925136,0.008353523,0.0042740284,0.006854466,-0.003733338,-0.024991909,-0.017679716,-0.027738273,0.021249989,-0.00052853196,-0.004703148,-0.00056178874,-0.008387852,-0.022531625,-0.033391204,-0.017954353,0.010928239,0.023962023,0.034215115,-0.026845705,-0.00024102202,-0.012450182,-0.0018523651,0.00021938725,0.015253762,-0.0005589279,-0.026342206,0.008250535,-0.013239762,-0.03719034,0.026273545,-0.0013517259,0.013022341,-0.025815818,-0.016672716,0.010905352,0.064905725,-0.0021370142,0.0045400825,0.013193989,-0.02934032,-0.022291318,-0.031674728,-0.011935239,0.008210483,-0.010081443,0.034352433,-0.0032384205,0.0397765,0.053966045,-0.01935042,-0.023035126,0.06975764,0.0034787273,0.019178772,-0.0062022046,0.0021684829,-0.0030753552,-0.00019739488,-0.022531625,-0.036160454,0.057444774,0.0058159973,0.0036189063,-0.038952593,0.0065455,0.011923796,0.010636438,0.010281699,0.039250113,0.017233431,-0.013262648,-0.0081704315,0.012267091,0.017645387,0.005272446,-0.006528335,0.015322421,-0.0009905504,-0.008405017,-0.024785932,-0.016283648,0.036778387,-0.032567296,0.025518296,-0.0086796535,-0.0022485852,-0.043003477,0.021867922,0.0029037073,0.003078216,0.0018323394,0.004142432,-0.027669614,0.016775705,-0.025884477,-0.012827807,0.027738273,0.004196787,-0.01255317,0.028104454,-0.002603324,-0.021055454,-0.013193989,-0.0020125697,0.0081761535,0.024648614,-0.0057673636,0.032201115,0.008782642,-0.014143772,0.04153875,0.011797921,0.035267886,-0.015986126,0.0068659093,-0.013789034,0.0060362783,0.014235319,-0.042133797,-0.04915991,-0.00058610545,-0.019682273,0.0020783679,-0.0053554093,0.021158444,-0.00445998,0.0026676918,0.010390409,0.014899023,-0.0076039946,0.0071176593,-0.014200989,-0.010144381,0.0071004946,-0.019030012,-0.0076726535,-0.0020340255,0.015207989,-0.0057273125,-0.018537955,0.022302762,0.01733642,-0.022142557,0.03851775,0.02193658,0.015276648,-0.006276585,-0.0067514773,0.034855932,-0.0064997273,-0.02190225,0.007329358,-0.03448975,0.029798046,0.014178103,0.044353772,-0.015413966,0.002714895,-0.0035845768,0.012701932,0.023000795,0.0021227102,-0.016958795,-0.070032276,-0.01136308,-0.016947353,0.023641614,-0.006207926,0.012782034,-0.051402774,0.05021268,-0.038494863,-0.0003048535,0.0048204404,0.01737075,0.0034901705,-0.013949239,-0.011717819,-0.008610995,0.041836273,0.032635953,0.015310978,0.04746632,-0.009509284,0.0102645345,0.013251205,0.011923796,-0.07067309,0.0017422244,0.009371966,0.029889591,0.0031983694,-0.03847198,-0.014624386,-0.005020696,0.011179988,0.0017636804,-0.0009855441,0.0018967075,-0.029431865,-0.028653728,0.019682273,0.03412357,-0.0087483125,-0.015093557,-0.0057959715,-0.016443852,-0.028997023,-0.0068487446,0.014326864,-0.03442109,0.0025704247,-0.0297065,0.006488284,-0.000054221015,-0.01388058,-0.008359244,0.0017879972,-0.007151989,-0.010722262,0.020838033,0.003567412,0.023710273,-0.00078743394,-0.004477145,-0.010338915,0.028218886,-0.0027392118,0.0064997273,-0.001398929,0.008960011,0.01535675,0.037487864,0.032178227,-0.014647272,0.016134886,-0.012324307,0.002909429,-0.023355534,-0.013926352,-0.0038792386,0.017817033,-0.002322966,0.005595716,0.035245,-0.023046568,0.018263318,0.007918682,0.027784046,-0.0019553537,0.00086753623,-0.008639602,0.009732426,0.0029466194,0.0015991847,-0.012598943,-0.022096785,-0.019041454,0.0038763778,-0.002923733,-0.020975353,0.024145113,0.027280545,-0.014956239,0.018000126,0.0011514702,0.029981136,-0.015974682,-0.006265142,-0.012415852,-0.03959341,0.004700287,0.027211886,-0.015551284,0.015745819,-0.025838705,-0.041492976,0.05845177,0.0028493523,0.00047381927,-0.008965733,0.011912352,0.02348141,0.03883816,0.011591943,-0.005246699,0.00028929795,0.062800184,-0.009537892,0.016272204,0.050487317,0.034283772,0.012106886,-0.0095436135,0.006448233,0.020437524,0.00074309163,-0.015196546,-0.007832858,0.015505511,-0.019327534,0.018858364,0.009812528,-0.018640943,0.0056271846,0.0033213836,0.006642767,-0.043758728,-0.022749046,0.0027163252,-0.03448975,0.0050550257,0.015322421,-0.001032032,-0.024213772,0.0028336179,0.028791046,-0.011448904,-0.013136772,0.08641891,0.007970177,0.0047346167,-0.0041367104,0.0009412017,-0.025289431,0.041332774,-0.02474016,-0.0021270015,0.028539296,-0.011231483,-0.01765683,-0.0010084304,0.0020039873,0.014578613,0.0011786477,-0.013983568,0.007283585,0.025289431,0.054973047,0.014052227,-0.0075696646,-0.027074568,0.014132329,-0.001301662,-0.014361193,-0.010739426,0.0012015341,-0.011323028,-0.005793111,-0.008427903,0.021398751,0.016260762,0.032635953,-0.009652324,-0.0073636877,0.005641489,-0.021284318,0.00068551814,0.029111454,-0.02118133,-0.007174875,-0.00891996,-0.0062308125,0.012232762,-0.029569183,-0.010127216,-0.009886909,-0.047924045,-0.013617386,-0.009537892,0.019052899,0.0017579588,0.010676488,0.016180659,-0.0091087725,0.011551892,-0.03870084,-0.020311648,-0.011088443,-0.03467284,-0.006820136,-0.03151452,-0.014761705,0.06399027,-0.05771941,0.011157102,-0.006659932,0.008771199,-0.019133,-0.038243115,0.017279204,-0.0006923125,-0.010745148,-0.035428092,-0.005449815,0.0013367067,-0.04801559,-0.018892694,-0.01567716,0.03991382,0.014246762,-0.034352433,-0.0013481498,0.037098795,-0.015253762,-0.00798162,-0.011740705,-0.011340193,0.010007063,0.020620614,0.008405017,0.032750387,0.015894579,-0.00417104,0.008639602,-0.026365092,-0.0002458496,-0.022771932,0.034855932,-0.019247431,0.002593311,-0.009125938,0.015139329,-0.014761705,0.001963936,-0.0119924545,0.0018352004,0.0669655,0.0064139036,-0.00005784171,-0.036709726,-0.01683292,-0.016466739,0.018045899,-0.01790858,-0.000884701,-0.026891477,0.023412751,0.00884558,-0.018457852,0.051723182,0.01769116,-0.030621955,0.00060398545,0.0055356394,0.0074895625,0.055247683,0.013525841,-0.007272142,-0.027372092,0.018801147,-0.008296307,0.0069460114,0.006631324,0.005735895,-0.01388058,0.0013245483,-0.0054326504,-0.035634067,0.0026276407,0.013388523,-0.016455296,-0.033642955,-0.02007134,-0.005401182,0.042385545,0.003678983,-0.02208534,-0.060648866,-0.0076039946,-0.020952467,-0.0078099715,0.033597182,-0.013125329,-0.011603386,0.036869932,0.010808085,0.0012122621,0.015768705,-0.03506191,0.006780085,-0.021444524,-0.004954898,0.0075067272,-0.008799807,0.015127886,-0.048336,0.0027477941,0.045360774,0.0020325952,0.027875591,0.016489625,0.02272616,-0.017714046,-0.012358637,0.021021126,0.010928239,-0.012885023,0.002548969,0.009217483,-0.023824705,-0.0042482815,0.01985392,-0.0028135923,0.0006933853,-0.027738273,0.007151989,0.041767616,-0.00938913,0.019396193,0.025953136,0.020105671,-0.022199772,0.0057387557,0.006894517,0.023618728,0.002690578,0.0025947415,-0.014876137,0.014120886,0.007941568,-0.004834744,0.002693439,-0.012015341,0.037281886,-0.0135716135,0.008490841,-0.012896466,0.043163683,-0.013411409,-0.018217545,0.03991382,-0.01805734,-0.017359307,-0.038746614,-0.005973341,0.022108227,-0.013651716,-0.020620614,0.00073737005,0.013617386,-0.017450852,-0.0074323467,0.015814478,0.013869137,0.0054069036,0.036366433,0.014464182,-0.012782034,0.015940353,-0.0001864881,0.023893364,0.034718614,0.05300482,0.0049835057,0.0008224787,-0.008336358,0.02373316,0.01237008,0.009280421,-0.0062193694,-0.023149557,-0.04286616,-0.01737075,-0.03737343,0.008015949,0.00031164792,-0.034901705,-0.02290925,0.0009941264,0.0000636527,0.067423224,-0.007312193,-0.006740034,0.008141824,0.017313534,0.0028107315,0.06939145,0.00492629,0.013159659,0.019876806,-0.03410068,-0.020254431,-0.01794291,-0.0033814602,0.021341534,-0.029637842,-0.03538232,-0.01844641,0.018045899,0.022462966,0.033505637,0.018560842,-0.044216454,0.016169216,-0.009377687,-0.04584139,-0.002980949,0.0039965315,-0.022565955,-0.00040873614,0.022760488,-0.01007,0.0111227725,-0.022279875,-0.012175546,0.04343832,0.019384751,-0.021272875,0.0067228694,-0.012072557,-0.013033784,0.009743869,0.03208668,-0.008839858]},{"id":"interface-APIVanityURL","type":"interface","source":"main","text":"Interface: APIVanityURL\nDescription: Response from GET /guilds/{id}/vanity-url\nProperties: code: string | null, uses: number","meta":{"url":"/docs/typedefs/APIVanityURL"},"embedding":[-0.06881055,-0.00583793,0.0015942631,0.0039124913,0.014257487,-0.020788575,-0.04837934,0.025434272,0.076401405,0.022008533,0.0064817965,-0.02507691,0.00956866,-0.04697454,0.016919214,-0.012273516,-0.026937656,0.020689992,-0.013776897,0.018767634,-0.005572989,-0.023240814,-0.011583438,0.05545263,-0.027455213,0.016056618,-0.017818779,0.012304323,-0.0049322033,-0.048896898,0.027874188,-0.025360337,0.052593738,0.03056056,0.002273558,0.02893395,0.070880786,-0.0009226702,0.019913655,0.004192835,-0.0011229158,0.008274765,0.025680728,0.0028234632,-0.022131762,0.022760224,-0.0072951014,0.005834849,-0.013370246,-0.0066050244,-0.017190315,-0.008163859,-0.06343781,0.043622736,-0.02967332,-0.017646259,-0.0034965964,0.022563059,-0.03223646,-0.004266772,-0.036031887,-0.017042441,0.006648154,-0.018213108,0.035243228,0.010609937,-0.025754666,0.06565592,0.057769317,0.010690034,0.026567971,0.03376449,-0.009057263,0.024670258,-0.014738076,0.036648028,-0.039605502,0.020049207,-0.00029959824,-0.06230411,-0.0011414,0.020566765,-0.046678793,-0.06920488,0.008490413,0.011725151,-0.010308028,-0.026050413,-0.009463916,0.066148825,-0.027775606,-0.0036629543,-0.07147228,0.0068268348,-0.016142877,-0.0097103715,-0.028638203,0.031078119,-0.0016373929,0.07871809,0.050424926,-0.020825543,-0.022846485,-0.0007305114,0.008681417,0.0009889052,-0.0032593824,0.00020159342,0.01101659,-0.013210049,-0.09123806,0.0025061509,-0.011059719,-0.0011275368,-0.005459003,0.024460772,-0.012704814,0.0006993193,0.014799691,-0.054417513,-0.059938133,0.0014409982,0.06649386,-0.020850189,-0.044312812,-0.0047350386,0.001760621,-0.03977802,-0.036376927,-0.009648758,0.050572798,-0.008958681,-0.012926624,0.043006595,-0.005733186,-0.025730021,0.000759393,-0.030831663,-0.05658633,0.0076586246,-0.014220519,-0.016906891,0.04569297,-0.005172498,-0.038570385,-0.017621614,-0.01730122,-0.004725796,-0.017831102,-0.004661102,-0.065212294,0.035046063,-0.023068294,-0.034306694,-0.010295705,-0.037436686,-0.008946357,0.00922362,-0.05017847,-0.017239606,0.027874188,-0.047738552,0.025730021,-0.04320376,-0.01303753,0.004987656,0.03191607,-0.0010743947,-0.036450863,0.036031887,0.0077325613,-0.023770694,-0.033049766,-0.024152702,-0.0009280614,-0.004266772,-0.023253135,0.014799691,0.011417081,0.0038570384,0.037190232,0.02186066,0.013394891,-0.025052266,-0.03051127,0.017486062,-0.02449774,0.0113677895,0.0036075017,-0.010055411,-0.028342456,0.00329327,0.014614848,0.051854372,0.024583999,-0.0035027578,0.0018961718,-0.021934597,-0.004272933,0.012174933,-0.01699315,0.0028819963,0.06861339,-0.019482357,0.0036321473,-0.020492828,0.027159465,-0.056832783,0.016648112,0.07452834,0.00072820083,0.010221768,0.01940842,0.011256884,0.0018915508,-0.02208247,0.044460688,0.03854574,0.035810076,0.018767634,-0.022686288,0.04460856,0.0039217332,-0.02208247,0.04948839,0.021700462,0.009987635,-0.0466295,-0.012667845,0.03585937,0.011953123,0.028613558,-0.059790257,-0.067233235,-0.023573529,0.02747986,0.0424151,0.051361457,0.008139214,-0.01861976,0.014565557,-0.013394891,-0.01857047,0.029278988,0.023647467,-0.03147245,0.0015881017,-0.0077941753,-0.007258133,0.05106571,0.0021980805,0.018508855,-0.0069993543,-0.011145978,0.008878582,-0.012889656,-0.059593093,0.009205136,0.015181698,-0.027011592,0.029254343,0.0029436105,-0.038225345,0.013616702,-0.008884744,0.024337543,-0.017104056,0.0009673403,-0.027553795,0.016795985,-0.025052266,-0.026001122,0.08374579,-0.017313544,0.015304926,-0.017954329,0.03534181,0.02651868,-0.0020656104,-0.026025768,0.0011683562,0.021121291,-0.018669052,0.07398613,0.0070055155,0.02607506,0.022932744,0.0149968555,0.018348658,0.022587705,-0.017794132,0.07354251,0.04438675,-0.031053472,0.010351158,0.043105178,0.0634871,-0.022649318,0.102230005,0.032063942,0.023635143,-0.0076894313,0.026395451,-0.021478653,-0.009266751,0.009112716,0.044657853,0.038176056,-0.03943298,-0.046383046,0.059543803,0.0061798873,-0.05495972,0.03662338,-0.037831016,-0.018360982,-0.039260462,0.012224224,0.0034873544,-0.0048675085,0.02406644,0.010874877,-0.026494034,0.0041835927,-0.03324693,-0.04044345,0.0019161964,-0.033789136,0.00037199474,0.009962989,0.03943298,-0.025409628,0.030634498,0.028441038,0.007633979,-0.005345017,-0.0032408983,0.03758456,0.016635789,0.028268518,0.015871774,-0.05466397,0.0056561683,-0.017917361,0.016980827,0.009544014,-0.028342456,0.008656772,0.019630231,0.0057485895,-0.027110174,0.012575424,0.020554442,-0.021688139,-0.04837934,-0.077436514,0.046777375,-0.024263605,-0.055551212,0.019248225,-0.03196536,-0.035588264,-0.0034164982,0.007178035,-0.020431213,0.030043002,-0.002444537,-0.037658498,0.03512,-0.06176191,-0.04369667,0.0161552,0.0012538456,-0.06669103,-0.00015817478,0.01861976,-0.037658498,0.006660477,0.027948126,0.007424491,0.019728813,0.03775708,-0.057374988,-0.0063277613,0.0339863,-0.021552589,-0.00063693506,0.015576027,-0.06501513,-0.001373993,-0.0032593824,-0.0012638578,-0.024165023,-0.055354048,0.00010108553,-0.009507045,0.03982731,0.002906642,-0.008145375,0.023376364,0.045052182,0.03196536,-0.026247578,-0.038348574,0.019593263,0.000579557,-0.029796546,-0.02550821,0.029278988,0.0030961053,-0.0032254946,0.0057485895,0.022846485,-0.016980827,0.056093417,-0.033394806,0.04017235,-0.04130605,0.0323104,0.026740491,-0.026740491,0.045323282,-0.0034842736,-0.03179284,0.017091732,-0.016204491,0.0052033053,0.00016202565,-0.027331986,-0.046604853,-0.04882296,0.009722695,0.041034948,-0.022797192,-0.004926042,-0.023302427,0.057177823,-0.01536654,0.007621656,0.042513683,-0.008397993,-0.030585207,-0.03253221,-0.034134176,-0.023105262,-0.002059449,0.07216235,-0.03622905,0.060578916,-0.027233403,0.0050030597,0.017769488,-0.026986947,0.055206176,0.0009450052,-0.011614245,-0.041897543,0.021983888,-0.030314105,0.019297516,-0.01203322,-0.013764575,-0.0073813614,0.04253833,0.0328526,-0.025311045,-0.049340516,-0.0052033053,-0.02098574,-0.03613047,-0.013530442,0.00017088267,0.044411395,0.0028635121,0.008484253,0.015773192,-0.007923565,-0.009593305,-0.023364041,0.0068206736,-0.022378217,-0.016574174,-0.037683144,-0.026025768,0.027208757,0.10124418,0.018471887,0.008927873,-0.017116379,-0.010893361,-0.0028157614,0.0011013509,0.0067282524,-0.013222371,0.0051509333,0.036721963,-0.014762723,-0.003051435,0.0325815,-0.012051705,0.004882912,-0.04865044,0.00952553,0.0040141544,0.06112112,-0.013801544,0.017362835,-0.015243312,-0.030585207,0.0078249825,-0.02160188,0.0007824982,-0.017596968,-0.035982594,-0.04271085,0.020295663,-0.0426862,-0.008176182,0.0019839718,0.017535353,-0.014540912,-0.012778751,0.023031326,-0.017362835,0.008268603,-0.003989509,-0.021626526,-0.054466806,-0.020406568,0.017338188,-0.046383046,-0.014454653,0.04096101,0.018582793,-0.019790428,0.010043087,0.011121333,0.0026309192,0.027060883,0.00012428706,-0.004999979,0.00014999167,-0.0017452175,0.018200785,-0.047344223,-0.004158947,-0.018040588,0.0025877894,0.020776251,0.011484856,0.035834722,-0.013111467,-0.02278487,-0.0045255506,-0.014848982,0.008816969,0.045520447,-0.030240167,0.022452153,0.024214314,0.007763368,-0.023166876,0.05229799,0.0015572947,-0.018336337,-0.010850231,-0.00829941,0.049414456,-0.0030129263,-0.013357922,0.016882244,0.0144916205,0.00040126138,0.019038737,0.014701108,0.005902624,-0.002216565,0.035711493,0.04303124,0.051213585,-0.0011421702,-0.021330778,0.030067649,0.03393701,-0.025680728,0.03376449,0.02792348,-0.026148995,0.02173743,0.02475652,-0.010400449,0.027997417,-0.0171287,0.028810723,-0.009377656,0.0038385543,0.009698049,-0.010018442,-0.018779958,0.0061614034,0.024374511,0.022193374,0.018336337,-0.0056623295,0.025656084,0.02463329,0.0015958034,0.025384981,-0.019925978,0.009494723,-0.008934035,0.002116442,-0.021256842,-0.03243363,-0.03903865,0.011145978,-0.017276576,0.019839719,-0.01110901,-0.02765238,0.02932828,-0.0037492139,0.008749193,0.0036290665,-0.00658654,0.0018484211,-0.03359197,-0.07004283,-0.049069416,-0.003428821,-0.0015619157,0.0026247578,-0.039260462,-0.037510622,0.012365936,0.020813221,-0.02607506,0.03894007,-0.021564912,-0.0151200835,0.024128055,-0.010991944,0.052100826,-0.0145778805,-0.0021010386,-0.033961654,-0.0024753439,0.0004921421,-0.04130605,0.021725109,0.00039355963,-0.0064078593,-0.027455213,-0.010702358,0.010110863,0.012926624,-0.036721963,0.045298636,-0.047566034,0.013875481,-0.016635789,0.009950667,0.012279677,0.0018869297,-0.034035593,-0.0010304947,0.021133613,0.01756,-0.029007887,0.01940842,0.02305597,0.047319576,-0.012643199,0.024226638,0.014885951,0.013431859,0.006913095,-0.034676377,-0.021552589,-0.01009854,0.00838567,-0.013900126,-0.02910647,-0.008502737,0.01536654,-0.0009827438,0.01576087,-0.0018869297,0.014011031,-0.0111583015,-0.027874188,0.054811843,-0.0046333754,0.012840364,-0.0061521614,-0.0076031717,0.0042944984,0.026420098,-0.011657375,0.0334441,-0.009463916,-0.0035551297,0.012667845,-0.028638203,0.0008394912,0.04473179,0.038521092,-0.0132346945,0.0024306737,-0.024768842,-0.04904477,0.02765238,-0.06314206,0.016808309,-0.028391747,0.03376449,-0.020123143,-0.03245827,0.0029359087,-0.0021072,0.012014736,0.0073998454,-0.04500289,-0.0060474174,0.02348727,0.020837866,-0.011737473,0.02393089,0.024596322,0.0072827786,-0.010646905,0.026370807,-0.04066526,-0.004904477,0.022760224,0.027750961,-0.01756,0.026222933,-0.015329571,0.00036929912,-0.022415185,0.013320954,-0.024583999,-0.01756,-0.034651734,0.013197726,-0.0016743614,-0.018853894,-0.034306694,-0.015921066,0.02590254,0.008182344,0.0062661474,-0.019543972,-0.0079297265,-0.028169936,0.051262874,0.00006166217,-0.04004912,0.0220455,0.012427551,-0.0189648,0.01668508,0.032162525,0.03196536,-0.007147228,-0.016524883,-0.019925978,0.008853937,0.014158905,-0.022895776,-0.00061845087,-0.05343169,-0.01080094,0.03775708,-0.051262874,-0.06728253,-0.012988239,0.013875481,-0.008971003,0.005668491,-0.000047630536,0.0015703876,-0.010431256,0.03359197,-0.023166876,0.039851956,-0.0095008835,0.011934638,-0.016943859,-0.030264813,0.03270473,-0.0019439227,-0.031225992,0.012840364,0.0053850664,0.011213754,-0.08630894,0.00049714826,0.029747255,-0.007652463,0.0031238315,0.0031053473,0.0028681334,-0.0013046771,-0.051460043,-0.012446035,0.013074498,-0.0139494175,0.01743677,-0.021922274,0.04029558,-0.0069439015,0.023869276,-0.024300575,0.052445866,0.013616702,0.0019916736,0.044362105,0.020653024,0.014553235,0.021675818,0.008083761,0.008946357,0.020246372,0.057128534,-0.059938133,0.0005352719,0.021638848,-0.02278487,-0.03433134,-0.024485417,-0.010770133,-0.010197123,0.009802793,0.0018345579,0.0053635016,-0.0018099123,-0.019901333,-0.03349339,0.008040631,-0.005431277,-0.002963635,0.013333277,0.018422596,-0.041281402,0.027874188,-0.007954372,-0.0019331403,0.012828042,-0.02173743,-0.029476153,0.0075538806,-0.007011677,0.004722716,-0.04293266,-0.041503213,0.020542119,0.004091172,0.025754666,-0.034405276,0.021638848,-0.017523032,-0.014146582,-0.0059827226,0.031644966,-0.0048613474,-0.020036884,0.029821193,0.027258048,0.00460873,0.018866217,0.027948126,0.0020702316,0.0070979367,0.011256884,-0.025384981,0.03797889,-0.024004828,0.036426216,0.048625797,0.032655437,0.018582793,0.007578526,0.00741833,-0.014109613,-0.041084237,0.0039402177,-0.006783705,-0.0021703544,0.037559915,0.001703628,0.0020255614,0.04231652,0.008595157,-0.018829249,0.0010528298,0.021897627,-0.0047412,-0.01483666,-0.02405412,-0.005834849,-0.022735579,-0.005671572,0.017313544,-0.020110821,-0.0019593262,-0.017412126,0.016192168,-0.026296869,0.016537206,0.0069377404,0.0057023787,0.01940842,-0.00073821313,-0.001159114,0.008102246,0.0012099455,0.014799691,-0.010893361,-0.017954329,0.021897627,0.013456505,-0.0051386105,-0.021047354,-0.050252404,0.0017313544,-0.029969066,-0.010622259,0.0033117542,-0.0039124913,0.0065495716,-0.028046709,-0.00041204385,-0.025705375,-0.046530917,-0.0367959,0.015551382,-0.0076647857,0.037116293,-0.036943775,-0.0053049685,0.03854574,-0.0034965964,0.02502762,0.0043561123,-0.034282047,0.00012679012,-0.037116293,-0.021971565,0.021848336,0.004670344,0.033296224,-0.020776251,-0.027331986,-0.0046826666,0.03455315,-0.022020856,0.046678793,0.012279677,-0.007362877,0.005606877,-0.021145936,-0.008003663,-0.0038323929,-0.020702315,0.04973485,0.007695593,0.0073443926,0.048083592,-0.03169426,0.027060883,0.0031330737,0.006176807,-0.003736891,0.06812047,0.008588997,0.0015580648,-0.014393038,-0.021626526,-0.021392392,0.041158173,-0.011127494,0.018151494,-0.025458919,0.0020794736,-0.03179284,0.011133656,0.05382602,0.02792348,0.0144916205,-0.0053665824,-0.0064078593,-0.003367207,0.0075600417,-0.0025800876,0.027159465,0.043105178,0.0022658561,-0.0048767505,-0.009852084,0.00052256405,0.0026031928,-0.046925247,0.018052911,0.0063647297,0.02089948,-0.035711493,0.0032809472,-0.01629075,0.026469389,0.00329327,0.016832953,-0.034972124,-0.04197148,-0.009771986,-0.020073852,0.043573443,0.0012684789,-0.00087029824,0.03573614,-0.041725025,0.014442329,-0.017276576,-0.008268603,0.0038570384,-0.000110808985,0.006734414,-0.00005294956,-0.046678793,-0.0049722525,0.0040850104,0.030609852,0.018151494,0.009383817,0.02792348,-0.010049249,0.035095353,0.0084719295,0.0062076137,0.0011475614,0.0013847754,-0.0014933702,0.016142877,0.033887718,0.019470034,-0.0035089192,-0.009882891,-0.0027680104,-0.010954975,0.034282047,0.0077263997,-0.0070548067,0.0028003578,0.0069254176,-0.0009165087,0.01251381,-0.0108440695,0.0027603088,-0.026740491,-0.0037153263,-0.014824336,0.01260007,0.01629075,-0.00465494,0.034010947,0.051952954,0.029969066,-0.012020898,0.01641398,0.035662204,-0.030930245,-0.009895214,-0.01769555,0.000970421,0.010918006,0.014232841,-0.044115648,-0.023105262,0.010418933,0.0021087404,0.0077263997,0.015107761,-0.02893395,0.014134259,0.0036629543,-0.0064386665,0.011540309,0.011620407,0.03095489,-0.043253053,0.0152926035,-0.015995003,-0.001430986,-0.0050554313,0.009808954,0.013752252,-0.042908013,0.027405921,0.014442329,-0.01044974,0.02098574,0.009038779,0.039531562,0.010018442,0.0088724205,0.030363396,0.026420098,-0.039408337,-0.0021256842,0.0059704,0.025286399,0.028022062,0.03657409,-0.040640615,-0.042119354,0.021823691,-0.01167586,-0.024768842,-0.012593908,0.004100414,-0.0006326991,0.0040942524,0.009537852,0.009845923,0.040468097,-0.042908013,0.030807016,-0.009765824,-0.0010251035,0.026025768,-0.035662204,-0.01874299,-0.00039509998,0.011595761,0.02590254,-0.055255465,-0.006133677,-0.004158947,0.002159572,-0.01185454,-0.0022658561,-0.005335775,-0.008311733,0.021170583,0.034479212,-0.0037245683,0.046604853,0.027381277,0.0220455,0.0044639367,-0.0009057263,0.035908658,0.035440393,0.013665993,-0.02432522,0.014121937,-0.0071164207,0.0015133946,0.008743031,-0.035686847,-0.00024048728,-0.017584644,-0.0041158176,0.036302987,0.02713482,0.03292654,0.012778751,0.0008525842,0.01202706,0.01944539,-0.0031669613,-0.03191607,0.04004912,0.02893395,0.028884659,0.028441038,-0.029205052,0.015933389,-0.016709726,-0.008373347,-0.004035719,-0.025039943,0.015304926,0.0171287,0.02520014,-0.002902021,0.042735495,-0.03955621,0.024731873,-0.014565557,-0.013370246,-0.0045255506,-0.007011677,-0.007270456,0.010240252,0.0016096666,-0.01668508,0.017227285,0.011860701,-0.0015788596,-0.0013493473,-0.02502762,0.025730021,0.011343144,-0.017449094,-0.019235902,0.012316645,0.033025123,-0.03494748,0.012741782,0.039975185,0.02747986,0.0044670175,0.014245165,-0.010301867,0.011509501,0.026937656,-0.013012884,-0.006641993,-0.014935242,0.0020779332,-0.014306779,0.01988901,0.006734414,-0.021614203,-0.0038755226,0.00021083553,-0.011552631,-0.0152926035,-0.0040665264,-0.033739846,0.012526133,0.0067282524,0.0067159296,-0.030856308,0.016179845,-0.02765238,-0.016512562,-0.0072273263,0.010998105,-0.010727003,0.017017797,0.024115732,0.009328364,0.0062723085,0.012452196,-0.021983888,0.016869923,0.0047011506,0.007301263,-0.010505193,0.006028933,0.0024583999,0.0051170457,-0.003924814,-0.0031068877,-0.00086644734,-0.006752898,-0.012051705,-0.023856955,0.020381922,-0.012304323,0.007942049,-0.027874188,-0.026198287,-0.005289565,0.014651817,0.012865011,0.008046793,0.008786161,0.00034831182,0.014479298,-0.005834849,-0.00038970876,0.029870484,0.011583438,-0.007997502,-0.014171228,0.017498385,-0.0040018316,0.007307424,-0.007011677,-0.027381277,-0.024275929,-0.03275402,-0.0012438333,0.0042390455,-0.012242708,-0.011035074,-0.0022350491,0.021269165,0.012082512,0.026296869,0.011860701,0.0068206736,-0.012458358,-0.03516929,-0.015181698,-0.013468828,-0.025187816,0.052938778,-0.0049691717,-0.0001341068,0.040887073,-0.0117682805,-0.010123186,0.012754105,-0.011343144,0.0060350946,-0.016894568,0.029796546,-0.017449094,-0.020566765,-0.029057179,-0.0025847086,0.011250722,-0.005659249,0.007905081,0.0042390455,0.026444742,0.0067775436,-0.01742445,0.002344414,0.009913698,-0.030092293,-0.024386834,-0.01848421,0.011380112,-0.0039402177,0.013629024,0.0010266438,0.021688139,0.008478091,-0.007516912,-0.004232884,-0.024128055,0.012563101,-0.05382602,-0.002778793,-0.022661641,-0.018595116,-0.0362537,0.02937757,-0.0025461998,0.03689448,-0.0052033053,-0.022439832,0.045988716,0.004781249,0.004947607,0.023166876,0.003367207,0.0069377404,0.033049766,0.012002414,-0.015995003,-0.035317164,0.017596968,0.041725025,0.0062692277,-0.009679564,-0.0022812595,-0.0071595507,-0.012230386,-0.008114568,0.0606775,0.02937757,0.016968505,-0.029451508,-0.04105959,0.024559354,-0.0283671,0.015908744,0.002757228,-0.014602526,0.042119354,-0.015107761,0.0145778805,-0.021872982,-0.03758456,0.00043977017,-0.03056056,-0.02235357,-0.015452799,-0.020874834,0.053875312,0.012174933,-0.02814529,-0.014405361,0.018052911,-0.038052827,-0.0027295016,0.009531691,-0.0063955365,-0.036993064,0.01598268,0.015489768,0.02146633,0.012298161,0.009032617,-0.027824897,-0.024177346,0.007917403,-0.02612435,0.018373305,-0.0011691262,-0.01435607,0.0034041754,-0.0019685684,-0.025606792,0.019433066,0.008638288,-0.0060782246,0.010911846,-0.023524238,-0.026567971,0.0017698631,-0.015341895,-0.022316603,0.032113235,-0.017633937,-0.007412168,0.0036968421,-0.0034534666,0.0058194455,-0.02747986,-0.023142232,0.043277696,0.026099704,0.046999186,-0.011170624,0.023918567,-0.03640157,-0.013727606,0.04298195,0.007030161,-0.0014009491,-0.025680728,-0.012926624,-0.019174287,-0.0017221122,0.010400449,0.0295008,0.013000561,0.012914302,-0.02115826,-0.0010027684,-0.02932828,0.020517474,0.0033487228,-0.014910596,-0.019334484,-0.0025184737,0.014109613,-0.023031326,-0.0029975227,0.0010058491,-0.045939423,0.021971565,0.011145978,0.023647467,-0.0003666035,-0.016007327,0.051509332,0.022365894,0.010258737,-0.0035335647,0.0161552,0.016340042,-0.011201431,0.01773252,0.007898919,0.0015865613,0.024337543,0.032063942,0.0050831577,-0.025532855,0.009470077,0.0106345825,-0.012261192,0.0034534666,0.020677669,-0.011004266,0.0023706,-0.0025800876,-0.033049766,0.016130554,-0.042217936,-0.006475635,-0.012612393,0.00838567,0.026198287,0.03600724,-0.0026986946,0.028958596,-0.026494034,0.05377673,0.038718257,0.014442329,0.0231792,-0.018915508,-0.029771902,0.0070178383,-0.015157052,0.0010458982,-0.013998709,-0.045421865,0.0033949332,-0.023462623,0.009100392,0.010166315,0.07635211,0.005338856,-0.0342574,-0.006703607,-0.007911242,0.0058163647,-0.0145778805,-0.037781727,-0.012815719,0.026715845,-0.0011113632,0.010221768,-0.022020856,-0.016487915,-0.015255635,0.012667845,0.0052125473,0.033000477,-0.00047750876,0.014553235,0.007467621,-0.02208247,-0.002330551,0.03689448]},{"id":"interface-APIWebhook","type":"interface","source":"main","text":"Interface: APIWebhook\nDescription: Webhook from GET /channels/{id}/webhooks (includes token) or GET /webhooks/{id} (no token)\nProperties: avatar: string | null, channel_id: string, guild_id: string, id: string, name: string, token: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIWebhook"},"embedding":[-0.03994716,0.008520348,-0.027873099,0.002360222,0.006845179,-0.039369147,0.03350338,0.006320685,0.052106854,0.009654967,0.025132885,0.013679654,-0.012427292,-0.032732695,0.0058604153,-0.0020765672,-0.039476186,0.024041083,-0.042773005,0.001672493,-0.0033663937,0.0097727105,0.008531052,0.04076066,-0.0065882844,0.04427156,-0.052963167,0.020316105,-0.021771844,0.0140328845,0.008327677,-0.017372519,0.028793639,0.0243622,0.0051271943,0.018111091,0.01166731,0.0073750247,0.0062671653,0.0032459742,-0.01673028,0.007717551,-0.002111355,0.03806326,-0.014760754,0.034638,-0.03894099,0.035494313,-0.02335603,0.010827051,-0.043672137,-0.026845518,0.010297204,0.051978406,-0.0082581015,-0.023377437,-0.00952652,-0.013133752,-0.051079273,0.00025538966,-0.024212345,-0.03695005,0.013733174,-0.039711673,0.0069361627,-0.0060423827,-0.054418907,0.00993327,0.018111091,-0.011517456,0.09505112,0.014621602,-0.021525653,0.018143203,0.0039551114,0.023784187,-0.059685253,-0.0017219987,-0.0021715648,-0.046241086,-0.04812498,0.007310801,-0.09530801,-0.04803935,-0.011271264,0.0047900197,0.0036072328,-0.028815046,-0.0032325943,0.0025301473,-0.02213578,-0.007615864,-0.08563164,-0.02498303,0.019117264,-0.018956704,0.0023053642,-0.019845132,-0.03399576,0.024212345,0.04146712,-0.008386549,-0.076040894,0.0055928165,0.014867793,-0.04769682,0.043607913,0.0023909959,-0.008841467,-0.037892,-0.05621717,-0.0227352,-0.0419595,0.030784573,0.0018785441,0.0072679855,0.03472363,0.011378304,0.0038855355,-0.040525172,-0.03821312,-0.003353014,0.04739711,-0.028108586,-0.0019588238,0.018496433,-0.056859408,0.03448814,-0.05673096,0.00050509284,0.021065382,0.020401739,0.020508777,0.030335007,-0.00024418396,-0.034959115,-0.012266732,0.004522421,-0.034852076,-0.010971554,0.008755835,-0.037592288,0.027337901,-0.022820832,-0.024833174,0.005014803,-0.017533079,0.035173196,-0.0035403331,-0.04240907,-0.037292577,0.009473,0.01572411,0.0024966975,-0.0043672137,0.006459837,-0.030998653,0.01093409,-0.027081005,-0.035001934,0.009654967,-0.03206905,0.004278906,-0.004645516,-0.02817281,-0.022007331,0.024747543,0.013636839,-0.029885441,0.019663164,0.0024752896,-0.0219217,-0.05921428,-0.005913935,-0.024640504,-0.027016781,0.003754412,-0.05591746,-0.051635876,-0.0047953716,0.045127872,0.036222182,0.0014450339,-0.04095333,-0.04037532,0.024854584,-0.012619963,0.013957957,0.025689492,-0.025989203,-0.00081283157,0.018004052,-0.00058905204,0.013968661,0.02213578,-0.012459404,0.0046294606,-0.027316492,0.030977245,-0.014375411,0.038726907,-0.02333462,0.031191325,-0.017715044,-0.018004052,0.008429364,0.0057961917,0.00065327575,-0.02416953,-0.016794505,0.012769818,-0.01675169,0.04525632,-0.027081005,-0.068676576,0.013583318,0.0012470108,0.03859846,-0.016259307,-0.030634718,-0.04427156,0.018357283,0.013197976,-0.021290166,-0.0043591857,0.016623242,0.004701712,-0.031212732,-0.011817166,0.005929991,-0.031062877,0.024405017,-0.0019481197,-0.025346965,-0.027487757,0.012941081,0.03919788,0.05099364,0.007856702,-0.024041083,-0.016280714,-0.03536587,-0.028258441,0.03361042,-0.015831148,0.00025438616,0.030977245,-0.03472363,0.0057961917,0.00668462,0.056474067,0.04701177,-0.01696577,0.036286406,0.02693115,0.02765902,-0.025132885,0.022200001,0.007856702,0.010955498,0.078053236,-0.021771844,-0.023591517,0.060841277,0.007246577,-0.011335488,0.018346578,0.035194602,-0.016441274,0.018614177,0.012780522,-0.01818602,0.059856515,0.00058202754,-0.039583225,0.011057185,0.0071502416,0.0029489396,-0.03001389,-0.0062671653,-0.025475413,0.04125304,-0.013883029,0.0893138,0.004013983,0.024704728,0.0303136,0.027573388,0.036564708,0.029264612,-0.02124735,0.06049875,0.007155594,-0.042451885,0.0051218425,0.07372884,0.058400776,0.009248217,0.0941948,-0.0039390554,0.007792479,0.006160126,-0.023377437,-0.04598419,-0.003323578,0.0009245541,0.011292673,-0.008632739,-0.019160079,-0.04380058,0.023805596,0.032197498,-0.026331728,0.014343299,-0.049495086,0.0016484091,0.033546194,0.022007331,0.0010155378,-0.0013781341,-0.019877244,0.01903163,-0.030591903,-0.026288914,-0.011785055,-0.045427583,0.0008703653,-0.01602382,0.016494794,0.018014755,0.01336924,-0.040097013,0.001651085,-0.0033663937,-0.0023950099,-0.012127581,-0.023891227,0.005667744,-0.006647156,0.023034912,0.04148853,0.006706028,-0.019727388,-0.014343299,-0.029500099,-0.0070217946,-0.014964129,0.015477919,-0.012256028,0.009922566,0.0038293398,-0.013925845,-0.034959115,-0.03778496,-0.05343414,-0.03806326,0.018357283,-0.007348265,-0.035151787,0.013818806,-0.011121409,0.015734814,-0.0051432503,0.017982645,0.0124701075,-0.036008105,0.033717457,-0.020958344,-0.023934042,-0.060798462,0.045427583,-0.013626134,-0.0016296771,-0.022007331,-0.0013453533,0.0065133567,-0.01956683,0.04313694,0.005887175,-0.013240792,0.05099364,-0.005440285,0.016013116,-0.026438769,-0.006668564,0.0026104269,-0.024212345,0.04268737,-0.04350087,0.01572411,0.006722084,-0.035772618,-0.024233753,-0.010586211,0.029714178,-0.021493541,0.023463069,0.00075329083,0.0007994516,-0.03461659,0.003569769,0.03536587,-0.022521121,-0.021065382,0.005164658,-0.0027669724,-0.021129606,0.025454005,0.049495086,-0.0016992529,-0.010538043,0.02243549,-0.0025395132,0.027209453,0.027123822,-0.025068661,-0.0053519774,-0.068077154,0.04555603,0.06850531,-0.023505885,0.021514948,-0.022200001,0.0048836796,-0.033118036,-0.0018544602,-0.00026876963,0.016676761,-0.0141292205,-0.04825343,-0.032968182,0.0026907066,0.045299135,-0.02939306,0.031105693,-0.04037532,0.051378984,0.0017969264,-0.032133274,0.049709167,-0.03172652,-0.017629413,0.0038346918,0.010645083,-0.022563936,-0.0064170207,0.0341028,-0.0641381,-0.060798462,-0.013412056,0.0006408993,-0.03718554,0.012480811,0.03380309,0.0060102707,-0.045770112,-0.024041083,0.069575705,-0.02817281,0.01044706,-0.008001206,-0.03318226,-0.009103714,0.075184576,0.05459017,-0.0076372717,-0.017543782,0.028065769,-0.007096722,-0.012812634,0.029136164,0.020872712,0.02156847,0.015113984,-0.004212006,-0.020476665,0.032540023,0.012694891,0.0051753623,0.019877244,0.0041049668,-0.0021782548,-0.076040894,-0.022713792,0.03662893,0.120826244,0.020936936,-0.012309548,0.0051031103,0.009890454,-0.024148121,0.0034466735,-0.017190551,-0.00811895,-0.022670977,-0.0140328845,-0.05159306,0.0038828596,0.009521168,-0.008076134,-0.02498303,-0.050222956,0.008648795,0.011057185,0.04208795,-0.018475026,-0.02222141,-0.013519095,-0.03472363,0.0124058835,-0.040503766,-0.016922953,-0.017533079,0.017747156,-0.035258826,-0.00069107406,-0.040204056,0.015531438,-0.005640984,0.04178824,-0.05326288,0.038448606,0.031705115,-0.000065979846,-0.0013594022,0.018881775,-0.024619097,-0.066664234,0.0064705405,0.011089297,-0.017715044,0.006620396,-0.0021086792,-0.014364707,-0.021493541,0.010372132,-0.035901066,-0.023527293,0.028194217,-0.0063635013,-0.034466736,0.019930763,-0.023891227,0.03461659,0.005408173,0.027487757,0.0048408634,0.0023160682,0.039604634,0.033845905,-0.0021876208,-0.032989588,0.0036982163,-0.029414468,0.057929803,0.007610512,0.022649568,-0.007053906,0.014461043,0.006647156,-0.017500967,-0.006074494,0.02703819,-0.008573867,-0.009301737,0.018228834,0.023998266,-0.019363454,0.012009838,-0.01080029,0.0074071367,-0.011710127,0.017575894,0.011710127,0.022756608,0.029542916,-0.026460176,0.040418133,0.008391901,0.0046562203,-0.027637612,-0.019887948,0.01006707,0.037014276,0.00088976626,-0.016227195,-0.007969094,-0.026160466,0.018881775,0.017575894,0.03532305,0.00086501334,-0.016633946,-0.009681727,-0.02836548,0.0026866926,0.022863647,-0.015221024,-0.011710127,0.0044314372,-0.018282354,0.02416953,-0.023398845,-0.016516203,0.008156413,0.051892772,0.004945227,0.014889201,-0.042023726,0.028108586,0.019170783,0.013540503,-0.017211959,-0.0037570882,0.017586598,0.026802702,-0.005434933,-0.0065561724,-0.0002493687,0.012823338,0.0019922736,0.014653714,0.015916781,0.047782455,-0.015873965,0.0114960475,-0.008456124,-0.029542916,-0.000709806,-0.00711813,-0.012994601,0.013594023,-0.0030265432,-0.016152268,-0.041295856,-0.007840646,0.024768952,-0.022456897,-0.025539637,0.032989588,-0.005903231,0.025218517,0.019770205,-0.0045705885,0.00963356,0.012887562,-0.010115237,0.015146096,-0.02335603,0.010489875,-0.0057159117,0.01177435,0.027487757,0.00028666528,0.00944624,-0.031705115,-0.016922953,0.03204764,-0.01588467,-0.01962035,0.021332981,0.0056088725,0.0009171951,0.0063474453,0.0020056535,0.009349905,-0.0057640797,0.021332981,-0.029328836,0.0019815697,-0.01182787,0.02723086,-0.003928351,0.014750049,0.020819193,-0.03172652,0.0024605717,-0.034059983,0.014150628,0.05202122,-0.0074499524,0.007096722,-0.013112345,-0.026096242,0.021076087,-0.02146143,0.053947933,-0.0003836699,0.044014663,0.006791659,-0.0051352223,-0.009558632,0.022563936,-0.001415598,-0.005239586,0.019887948,0.023934042,0.0131230485,0.02671707,0.0114318235,-0.0067434916,-0.025625268,0.002836548,-0.009965382,-0.023377437,0.04444282,0.042751595,0.015435102,-0.015927484,-0.00019869216,-0.04279441,0.037313987,-0.016366348,-0.0015721434,-0.0065026525,0.065208495,-0.032582838,-0.015199616,0.0024873314,0.015210319,0.032411575,-0.008680907,-0.01875333,0.0008121626,0.014364707,0.0028659839,0.010088477,0.004284258,0.018314466,-0.0062457575,0.0037008924,-0.04598419,-0.020241179,-0.010901978,-0.015606366,0.035387274,-0.019213598,0.0009667009,-0.009205401,-0.0036821605,0.012834041,0.011281968,0.0022558584,0.015467214,0.017897012,0.01992006,0.0115602715,-0.012427292,-0.007647976,-0.019705981,0.012095469,0.0035992048,-0.059984963,0.013476279,-0.025454005,0.0060637905,0.018721217,-0.02671707,-0.02406249,0.0089431545,0.016205788,-0.003968491,0.017693637,0.041445713,-0.053648222,-0.01986654,-0.009344553,0.003518925,0.06490878,0.02427657,-0.049495086,-0.035515722,-0.030484863,-0.0055392967,0.06204012,-0.039369147,-0.012534331,-0.0000146970315,0.0044234092,-0.036200777,0.015456511,-0.0053921174,0.002860632,0.0017728425,0.000295864,-0.02866519,-0.021322278,0.00010879566,-0.014996241,-0.00857922,-0.049195375,0.0006592967,0.034745038,-0.029007718,-0.0019240358,0.0064330767,-0.023912635,-0.054119196,0.0057533756,0.03748525,-0.02917898,-0.0019936117,-0.034830667,-0.008509644,0.04966635,-0.0470974,-0.013454871,0.028729415,0.0055553527,0.009735247,-0.025946386,0.034959115,-0.016312826,0.01001355,0.011795758,0.025132885,0.022007331,-0.011217745,0.008391901,0.02284224,0.0454704,0.0016939008,-0.0023909959,0.011977726,0.0042039785,0.07175931,-0.033310708,-0.021429317,0.012234621,-0.02170762,-0.009745951,0.01001355,0.02979981,-0.019213598,0.02939306,-0.016976472,-0.015681293,0.0055981684,-0.030078113,-0.023955451,0.017939828,-0.012020541,0.026695663,-0.022713792,0.020219771,-0.009783415,0.030977245,-0.02089412,0.0035858247,0.015306655,-0.0018638262,-0.01659113,0.030656127,-0.022371266,-0.028386887,-0.016762393,-0.030848797,0.01959894,0.02114031,0.011474639,-0.024597688,0.013133752,-0.020005692,-0.006636452,-0.030056706,-0.011635199,0.010992962,-0.010918034,0.022050146,0.051250536,0.03996857,0.017308295,0.040803477,-0.016173676,0.011228449,0.025753716,-0.0055446485,0.019213598,-0.0015346796,0.026310321,0.017736454,0.010484524,0.02262816,-0.02170762,-0.017554486,0.0066792676,-0.041038964,-0.015039057,0.015274543,0.016205788,0.008734427,0.041124593,0.008980618,0.0044341134,-0.020797784,0.020401739,-0.035794023,0.032925364,-0.0032245663,-0.023741372,-0.03320367,-0.00048033998,-0.016922953,0.0057533756,0.038020447,0.027915914,0.0036125847,0.0017608006,0.0037570882,-0.02335603,-0.023784187,-0.05202122,0.0049024113,0.047611192,0.03337493,0.03266847,-0.001893262,-0.008514996,0.034702223,0.023120543,0.005234234,-0.0036313166,0.011271264,0.014846385,-0.019320639,0.02241408,0.0059835105,-0.05703067,0.006898699,0.007824591,0.003794552,-0.023891227,-0.011549567,0.034530956,-0.023998266,-0.08430435,0.0018531221,0.022200001,-0.006839827,-0.037228353,0.010848458,0.027980138,-0.002817816,-0.029714178,0.003580473,0.014750049,-0.03913366,-0.009183994,-0.02979981,-0.036500487,0.022992095,-0.0041076425,0.02130087,-0.010061718,0.01588467,0.00987975,0.048210613,-0.009665671,0.020712152,0.06341023,0.02170762,-0.0075355843,-0.01239518,-0.02068004,0.006722084,-0.015938189,0.025924979,-0.020690745,0.030998653,0.014568082,-0.034017168,0.014043589,0.049195375,0.033696048,-0.0011078593,0.043565094,0.003318226,0.003029219,0.00020688737,-0.010329316,-0.044100292,0.02170762,0.029457284,-0.029521508,-0.00519677,0.0087986505,-0.027701834,-0.0132514965,0.044913795,-0.005204798,0.0014503859,-0.04782527,-0.0072893933,0.011549567,0.01320868,-0.007969094,-0.0077121994,0.02027329,0.02765902,0.024897398,0.0076533277,-0.016312826,-0.027637612,-0.04206654,-0.005432257,0.010436356,0.01188139,0.0370785,-0.013743878,-0.0038908876,0.0017500966,-0.010869866,0.02530415,-0.020808488,-0.035258826,-0.003807932,0.009376665,0.018089684,0.0028151402,0.0055392967,0.025775123,-0.049495086,0.009360609,-0.024661912,0.016216492,-0.008771891,0.007835295,0.021258054,0.012716298,-0.032090455,0.008322325,-0.019160079,-0.01228814,-0.0023240962,0.022927871,0.005437609,0.0034600534,0.017736454,0.047782455,-0.013690358,-0.023056319,-0.010302557,-0.01382951,0.016312826,0.0018464322,0.0024190939,0.008343733,-0.02105468,0.0013226074,0.021943107,0.0063153333,0.030142337,-0.019984284,0.0208406,0.03853424,0.0018303762,0.009810175,0.020862008,-0.016013116,0.003995251,-0.011892093,-0.024297977,0.031084284,-0.007075314,0.012020541,0.019673869,0.03256143,0.038641278,0.0062082936,0.0052609937,0.030570494,-0.0070217946,0.01096085,-0.014632306,0.02211437,0.0050442386,0.022264225,-0.028001545,-0.04649798,-0.0006606347,-0.01689084,0.013390647,-0.01843221,-0.0057640797,-0.016569722,-0.024019675,-0.013775989,0.025689492,0.008766539,0.021771844,-0.032968182,0.036393445,-0.02324899,-0.027466347,-0.048638772,0.013840213,0.023099134,-0.026288914,-0.006722084,0.0036179367,-0.031876378,0.009687079,0.012598555,0.03883395,-0.009992142,0.042987082,0.0074446006,-0.025689492,-0.036714565,0.05244938,0.0021167072,0.016441274,0.016270012,-0.014011477,-0.035879657,-0.0051512783,-0.007792479,-0.022692384,-0.050736744,-0.014964129,0.021943107,0.00790487,-0.02213578,0.007177002,0.009440888,0.029821219,-0.010200869,0.009708487,-0.031919193,-0.005694504,0.020016395,-0.00007162451,-0.0113997115,-0.037977632,0.023291806,0.010580859,-0.03637204,-0.011110705,0.025175702,-0.019909356,0.03861987,0.023741372,-0.026567215,0.016409162,0.0028740119,-0.0024940216,-0.017575894,0.030399231,-0.0017755185,0.023270398,0.0002595709,-0.0016270011,0.0235487,0.007803183,0.044185925,-0.011817166,-0.0098690465,0.0012677497,-0.011292673,-0.029114757,0.012587851,0.007995854,-0.004966635,0.008070782,0.010334669,0.019438382,-0.0019240358,-0.03245439,0.042965673,0.0098369345,0.012737706,-0.04281582,-0.01034002,0.023505885,0.022585345,0.015039057,0.02386982,-0.0020511453,-0.008306269,-0.02181466,-0.0032887901,-0.04679769,0.017393926,0.011817166,0.0019722036,0.019363454,0.00468298,0.050351404,-0.028964901,-0.012609258,-0.014375411,-0.017008584,0.0125022195,0.048296243,-0.048510324,-0.019641757,-0.037528064,-0.00018263623,0.04487098,0.028622376,0.017629413,-0.0048917076,0.007556992,-0.010827051,0.04649798,-0.002376278,-0.0010690575,0.024533464,0.028815046,-0.0324758,0.03543009,0.01781138,0.03134118,0.03954041,0.0039229994,0.022050146,0.01837869,0.02262816,0.0045331246,-0.01745815,0.0041317265,-0.007530232,-0.0016751689,-0.0026345109,-0.015659885,-0.0162379,0.007369673,-0.02528274,-0.030698942,-0.009087658,0.017789973,-0.02186818,0.07411418,0.026652846,0.00963356,-0.002150157,-0.0403325,0.033310708,0.018036164,0.005178038,0.042152174,-0.029992482,0.004308342,-0.009745951,0.0019895977,-0.023120543,-0.014043589,0.00418257,-0.0029623194,0.021878883,-0.00041109876,-0.027016781,-0.009060898,-0.0064812447,0.015627773,0.025475413,0.012127581,-0.0058764713,0.025368372,0.022071555,0.009178641,0.0005766756,-0.025561044,0.015659885,-0.018956704,-0.005833655,0.040182646,0.02324899,-0.00418257,0.012170397,0.03543009,-0.000046829802,-0.013454871,0.03318226,0.0057908394,0.014204148,0.019224303,-0.00711813,-0.0076212157,0.027295085,-0.019010223,0.02622469,0.013808101,-0.03954041,-0.011110705,-0.0022264225,0.0026826786,-0.012577147,-0.0140328845,-0.014857089,-0.026973967,0.017447446,-0.015831148,-0.009644263,0.019524014,-0.010125942,-0.030955838,-0.025539637,-0.02027329,-0.024126714,-0.027209453,0.034787852,-0.02928602,-0.0029864034,0.02335603,0.0071716495,0.015456511,0.025967794,-0.024683319,-0.05488988,0.005140574,0.03348197,0.0069736266,-0.02054089,-0.015392287,0.0029703474,0.014043589,-0.010564803,0.0046267845,-0.0011025073,-0.00084561243,-0.00033332783,-0.017757861,-0.00057834806,-0.015071169,-0.024875991,-0.037977632,-0.032411575,-0.027295085,-0.018796144,0.028258441,0.015071169,0.03543009,-0.017083513,-0.010125942,0.004498337,0.009735247,0.0014677797,-0.017608006,-0.014471747,-0.016773097,0.008734427,-0.017233368,0.01997358,0.0074713603,0.028558152,0.0037115964,-0.026053427,0.054932695,0.010190165,0.015756221,0.009408777,0.012074061,-0.012138285,0.042344846,0.0026599327,0.014482451,-0.038641278,-0.00095399,0.045127872,0.0020283994,0.045598846,-0.003564417,-0.010329316,-0.003323578,-0.040996145,0.005742672,0.042473294,-0.0018798821,-0.025839347,-0.030934429,0.0041022906,-0.025454005,-0.017757861,-0.0026612708,0.002598385,0.0072144656,-0.018710513,-0.023955451,-0.041124593,-0.018335875,-0.03307522,-0.025154294,-0.036200777,0.011688719,-0.0055553527,0.019823724,0.0010717334,0.0089913225,-0.03894099,0.026545808,-0.024704728,0.036436263,-0.0053680334,-0.01903163,-0.0056838,0.0141292205,0.014814273,0.05090801,0.052791905,-0.043158345,-0.020144843,0.016344938,0.032711286,-0.009098361,-0.0010737404,-0.0053519774,-0.02186818,0.02241408,0.056773774,-0.001890586,0.017083513,-0.014546675,0.0151568,-0.001661789,-0.013048121,0.045085058,-0.007284041,0.01699788,-0.0074660084,-0.0010302557,-0.009071602,-0.01926712,0.0115281595,0.015895372,0.017062103,-0.034145616,0.0022103668,0.06863376,0.021065382,0.03104147,-0.006882643,0.0027990842,-0.025732307,-0.04671206,0.019641757,-0.002115369,-0.017393926,-0.0037249762,-0.019363454,-0.023891227,0.039989974,0.03981871,0.024811767,0.02969277,0.026652846,-0.011688719,0.021472134,-0.045770112,0.013230088,-0.027551979,-0.0011265912,0.03645767,-0.017533079,0.014482451,-0.023206174,-0.0069843307,-0.016548313,-0.030142337,0.015274543,0.007717551,-0.0008208595,-0.007401785,0.017779268,0.044742532,0.06349586,-0.006411669,0.0066953236,-0.022756608,-0.0075195283,-0.00017996025,0.011142817,0.025582451,0.010757474,0.031876378,0.04380058,0.0034359696,-0.0027402125,0.007294745,0.0058229514,-0.042473294,0.0055714087,0.0032486503,0.00059708,-0.0031871025,0.005009451,-0.040503766,-0.013519095,-0.009114417,0.0048301597,-0.02062652,0.0008783933,0.06002778,-0.01504976,-0.010029606,-0.011217745,-0.026438769,0.04200232,0.053220063,0.009376665,0.00809219,-0.008375845,0.0034948413,0.0051593063,0.010034958,0.03635063,-0.012887562,-0.040696435,-0.008595276,0.008370493,0.021493541,0.011046481,0.040503766,-0.0047900197,-0.011271264,0.024490649,0.023719965,0.0027803523,-0.0235487,-0.032732695,-0.035301644,0.039005212,-0.021825364,0.012823338,-0.003518925,0.009301737,0.005255642,0.0025435272,0.029971074,0.00041711974,0.008333029,-0.009398072,0.0054911287,-0.021504246,-0.0060156225,-0.0019815697]},{"id":"interface-APIWebhookTokenUpdateRequest","type":"interface","source":"main","text":"Interface: APIWebhookTokenUpdateRequest\nDescription: Request body for PATCH /webhooks/{id}/{token} (token auth). All fields optional.\nProperties: avatar: string | null, name: string","meta":{"url":"/docs/typedefs/APIWebhookTokenUpdateRequest"},"embedding":[0.020868355,0.020988865,-0.0288622,-0.009645839,0.0049886215,-0.033481758,0.055796236,-0.015857138,0.03830217,0.0087520555,-0.0019419722,0.009214011,-0.022133712,-0.03675562,-0.024965702,0.015334927,0.01307536,0.040370926,-0.03743851,-0.024784938,-0.019643167,-0.007642357,0.008993076,0.0048656007,0.0045894315,0.03189504,-0.03970812,-0.0035676048,-0.012643532,-0.039688036,-0.008350355,-0.016650496,0.020044869,0.025005873,-0.005829682,0.029525006,0.0020486738,-0.01918121,0.0037684552,-0.0060807453,0.0008448269,-0.03755902,0.029364325,0.037498765,-0.030910874,0.02611055,-0.020436527,0.007988824,-0.045191336,0.0068138493,-0.02104912,-0.01435076,0.030669853,0.04073246,-0.0028093946,-0.007742782,0.0033441589,0.002543268,-0.01754428,0.04197773,-0.025427658,-0.0027340758,0.0074013365,-0.053506542,0.012764041,0.005995384,-0.0475212,-0.011348046,0.021832436,0.028520754,0.08395546,0.021752097,-0.036675278,0.050975826,-0.010574773,0.009655882,-0.034024056,-0.006592914,0.0005234663,-0.04724001,-0.030047217,-0.0044588787,-0.075921446,-0.06708403,-0.02380077,0.002651225,-0.02842033,-0.028360074,0.00078519946,-0.0139390165,-0.02412213,0.017313303,-0.06290634,-0.016439604,-0.021450821,-0.018769467,-0.022153797,-0.001158028,-0.011187366,0.025568254,0.008244908,-0.011739705,-0.07250699,0.006427212,-0.0016833773,-0.049047664,0.052020248,-0.008736991,0.011749747,-0.010514517,-0.06764641,-0.017453898,0.011910427,0.030167727,-0.023278559,-0.038804293,-0.0032613082,0.0010287305,-0.007903462,-0.0922305,0.0007469124,-0.011107026,0.040491436,-0.04117433,-0.015134077,0.014772546,-0.06314736,0.041114073,-0.08074185,-0.005538449,0.019040616,0.0038839444,0.013838591,0.035269327,-0.00912865,-0.06921304,0.010218264,0.046436608,-0.014893056,-0.012211703,0.03085062,-0.040913224,-0.0027993522,-0.036976553,-0.030750193,0.026050294,0.018689128,0.05921069,0.0010814538,-0.0029223731,-0.027737437,0.030248068,0.010876048,0.030689938,0.002982628,-0.03420482,-0.02104912,0.014802673,-0.03424499,-0.024825107,0.0025859487,-0.022414902,0.0031483297,-0.022676008,-0.0069494233,-0.028078884,0.019673295,0.010906176,-0.03878421,0.0070548696,0.044628955,-0.061299536,-0.030388663,-0.004129986,-0.029042965,0.0036178175,0.05169889,-0.04619559,-0.026733186,-0.024021706,0.050694637,0.033542015,-0.021511076,0.015234501,-0.04884681,-0.003974327,-0.042981982,0.05752355,0.0024779916,-0.0031433085,0.011709577,0.037257746,0.023318728,-0.03711715,0.002260822,-0.06800794,-0.011026686,-0.04002948,0.016319094,0.017745132,0.031995464,-0.0339638,0.0018553555,-0.009314436,-0.013567443,0.013456975,-0.0029449686,-0.030227983,-0.021691842,-0.022475157,0.025929784,-0.02116963,0.02687378,-0.043785382,-0.050292935,0.0037282852,0.031433083,0.0024742256,-0.03165402,-0.024584087,0.0020624823,0.039246164,0.07989828,-0.03185487,-0.0012076129,0.0132862525,-0.016288966,0.0060054264,-0.037398342,-0.0017624621,-0.04069229,0.038121402,-0.01080575,-0.027255397,-0.021470906,-0.036072727,0.021229886,0.032276656,0.0029273944,0.016419519,-0.013808464,-0.040009394,-0.017032113,0.03767953,0.009957158,0.005488237,0.017634664,-0.044347763,0.0066230414,-0.03448601,0.03639409,0.031272404,-0.021772182,0.0075670383,0.01068524,0.0144110145,-0.00326884,0.04772205,-0.015435352,0.018588703,0.06495501,-0.0045618145,-0.013567443,0.04023033,-0.011408302,-0.01949253,0.024102045,0.012181575,0.022455072,-0.0027993522,-0.010002349,0.03627358,0.017484026,0.0074364855,-0.025608424,0.017253049,0.0074565704,-0.019311763,-0.017423771,0.012121321,0.0023750558,0.01849832,-0.016710753,0.037358172,-0.017373558,0.013165742,0.060496137,0.038583357,0.050574128,0.029986963,-0.0059903627,0.03145317,0.012904637,-0.018638916,-0.0017398664,0.049047664,0.02922373,-0.009008139,0.07254716,-0.010158008,0.015997732,-0.014842844,0.00669836,-0.019633126,0.002495566,0.02599004,0.010544645,-0.0056539383,-0.021752097,-0.044548616,0.0347672,0.005357684,-0.05189974,-0.012462766,-0.027998542,0.005879895,0.005945171,0.0034194777,-0.0016130796,0.008711886,-0.008350355,0.009234096,-0.039205994,-0.016007775,0.005975299,-0.055033006,-0.008511035,0.031834785,0.027596842,0.02157133,-0.021470906,-0.027395992,0.028761774,-0.015455437,0.0013243572,0.013537316,-0.012593319,0.016459689,-0.000016240636,0.0390654,0.013798421,-0.00033014783,0.017704962,-0.03440567,-0.054430455,-0.013246083,-0.0020310995,0.03109164,-0.047199838,0.0070347846,0.012583276,-0.004082284,-0.014300548,-0.016128285,-0.048404943,-0.035510346,-0.004780239,-0.050373275,0.000103171194,0.00881231,0.0068138493,0.027416077,-0.014953311,0.023539664,0.0066782753,-0.008315206,0.037840214,-0.01439093,-0.019281637,-0.06599943,0.0049559833,-0.037177406,-0.0047425795,-0.020085039,-0.027697267,-0.029444667,-0.018207086,0.0083704395,0.008350355,-0.048445113,0.07318988,0.031352744,0.0011379429,0.01861883,-0.0039492208,0.019472444,-0.007556996,0.019472444,-0.054591134,-0.027134886,0.012101236,-0.021671757,-0.03432533,-0.0259097,0.0339638,0.0095855845,0.007823123,0.01554582,0.0077026123,-0.009721158,-0.0047701965,0.0017524196,-0.02623106,-0.0038739017,0.0055836407,0.0053627053,0.0007720186,0.031111725,0.04249994,0.0068439767,0.03384329,0.00035023285,0.005970278,0.0406722,0.047882732,0.0039693057,0.040953394,-0.040491436,0.02092861,0.06853015,-0.043705042,0.050333105,0.00032324358,-0.0010714113,-0.016750922,-0.015475522,-0.0005149929,0.017293219,-0.03173436,-0.030127557,-0.005533428,-0.0056539383,0.033421505,-0.03836242,0.019161126,-0.025226807,0.019010488,0.01455161,-0.011940556,0.03671545,-0.04812375,-0.036072727,0.015144119,0.04691865,-0.045271676,-0.0008316461,0.039688036,-0.030710023,-0.04559304,0.02436315,-0.0060455967,0.0020122698,0.00789342,0.034305245,0.03763936,-0.019271594,0.005764406,0.03344159,-0.012512979,0.014280462,0.015796883,-0.045633208,0.012191618,0.067124195,0.032397166,-0.027637012,-0.0296656,0.031051468,-0.013677911,-0.033481758,0.034626607,0.034144565,-0.0216115,0.01629901,0.0036479451,-0.040350843,0.016570156,0.0031910103,0.021993117,0.03510865,-0.0025784168,0.004622069,-0.011568982,-0.023097795,0.03950727,0.10163029,0.03643426,-0.006015469,0.04233926,-0.015877223,0.0102383485,0.0009998583,-0.071462564,-0.0055284067,-0.015073821,-0.030067302,-0.0581261,0.000073632065,0.012834339,-0.029324155,-0.027958373,-0.0263114,0.019723507,0.02351958,0.027777608,0.03225657,0.008325248,0.013055275,-0.01479263,-0.0013670379,-0.01598769,-0.012593319,0.00061165215,0.0009866775,-0.06599943,0.033582184,-0.026170805,0.03440567,-0.0033190525,0.029203646,-0.05218093,0.046436608,0.02599004,-0.019020531,-0.009098522,-0.000009061804,-0.051457867,-0.07286852,-0.00053601945,0.0052120676,-0.012081151,-0.010142944,-0.005377769,-0.0038287104,-0.008621503,-0.005207046,-0.012211703,-0.005402875,0.023459325,0.039828632,-0.037016727,-0.013095445,-0.025467828,0.004489006,0.011338004,0.011448472,0.016158413,0.0104743475,0.043343514,0.03324074,0.026331484,0.009851711,-0.00534262,0.0054982794,0.022274308,0.027516503,0.013145657,0.005458109,0.030067302,0.010122859,-0.0056639807,-0.01813679,0.02594987,-0.027436161,-0.023820855,0.03643426,0.017162666,-0.029766027,0.017293219,-0.00330901,-0.01873934,0.019281637,0.022334563,0.0013808464,0.019663252,0.058286782,-0.00003795366,0.03524924,0.007120146,0.02088844,-0.0010519539,-0.017795343,-0.016017819,0.026753271,-0.005377769,0.0014461228,0.013758251,-0.011147196,-0.0042881556,0.006693339,0.018106662,0.028058799,0.027375907,0.011438429,-0.0042002834,-0.015455437,-0.0015779308,-0.009615712,-0.022214051,0.012774085,-0.00017966694,0.008315206,-0.00865163,0.0066531687,0.0067887427,0.040451266,0.011277749,0.012543106,-0.007546953,0.021852521,0.03695647,0.033300992,0.0045316867,0.0012025917,0.02347941,0.014953311,0.00006213809,0.013336466,-0.016208626,0.0057945335,0.04306232,0.01016805,-0.000507461,0.0616209,-0.01941219,0.04125467,0.014722333,-0.01949253,-0.006135979,0.027697267,-0.016168457,0.016650496,-0.020316016,0.006477425,-0.045231506,-0.014913141,0.060455967,-0.00569913,-0.037257746,-0.0087872045,-0.0050438554,0.036213323,0.0467178,0.009198948,0.016399434,-0.014210165,-0.008576311,0.0061158943,-0.011739705,-0.0016996964,-0.023700345,-0.029725857,0.019924358,0.019482488,-0.0013984208,0.014802673,-0.024965702,0.008034015,0.0074766553,0.014963353,0.029484836,0.0021189714,-0.002957522,0.0036303706,-0.0015038672,0.03145317,-0.011317919,0.005965256,-0.060897835,0.029464751,0.006176149,0.016158413,0.032537762,-0.015857138,0.033019803,-0.02647208,0.0014862928,-0.028139139,0.017494068,0.0522211,-0.0045341975,-0.01467212,-0.0070900186,-0.040551692,0.0078080585,-0.035148818,0.03209589,0.0042404537,0.03532958,0.0053677266,-0.012533064,-0.019884188,0.02056708,-0.007556996,0.007024742,0.06399093,-0.00594015,0.004840494,0.01542531,0.031433083,-0.0030554365,0.000017015402,-0.004599474,0.00046132822,-0.037016727,0.035409924,0.035550516,0.03631375,0.015033651,0.015405225,-0.009625754,0.026090465,-0.025728934,0.013587528,0.0047978135,0.06170124,-0.028319905,0.03332108,-0.010394007,0.0292639,0.04237943,-0.036454346,-0.008475886,-0.00015306995,0.013487103,-0.019321807,0.031151894,0.01845815,0.00845078,-0.00081658235,-0.008706864,0.00865163,-0.032517675,-0.00490326,0.0034069247,0.0040170075,-0.01291468,-0.004253007,0.0038739017,0.013607614,0.0071352096,-0.018528448,-0.01945236,0.01710241,0.0045065805,0.028440414,0.017333388,-0.024302896,-0.023037538,-0.010494432,-0.0052371738,0.0020059932,-0.036012474,-0.0047450904,0.005975299,0.0096759675,-0.004273092,-0.039085485,-0.045994736,0.0072506987,0.010695282,-0.010785665,0.02005491,0.0034772223,-0.051297188,-0.017052198,-0.00015087315,0.0025307147,0.024584087,0.04193756,-0.042821303,-0.0339638,-0.033341162,0.004084795,0.06511569,-0.031714275,-0.0021980563,-0.004963515,0.017132537,-0.008601418,0.031352744,0.0053124926,-0.016017819,-0.006055639,-0.008219802,-0.0140293995,-0.017032113,-0.015686415,-0.0055233855,0.022234138,-0.04615542,0.019301722,0.02056708,-0.036012474,0.033059973,0.03117198,0.01139826,-0.036333833,0.019010488,0.050533958,-0.010795708,0.014230249,-0.045151167,-0.011257664,0.01734343,-0.0002317625,-0.043022152,0.028801944,0.028761774,0.032839037,-0.055153515,0.013667868,-0.023298644,0.0036127963,-0.0064071272,0.0024265237,0.0045618145,-0.006562786,0.02133031,0.03388346,0.048364773,0.003416967,0.004875643,0.017785301,-0.0026210975,0.030448917,-0.033019803,0.019382061,0.0064523183,-0.0237606,0.004285645,0.02558834,0.027335737,-0.02193286,0.0138486335,-0.022073457,0.0049258554,0.011579025,-0.040491436,0.010775623,0.02582936,-0.021390565,0.029886536,-0.033783033,0.014641993,-0.022113627,0.038543187,0.0037408383,-0.007637336,0.0008686779,-0.018448107,-0.03432533,0.011769832,-0.018709213,-0.012743956,-0.03703681,-0.013708038,0.0040647094,0.023178134,0.011990768,-0.0015176757,0.0035098605,-0.020316016,-0.0033466695,-0.020115165,-0.015565905,-0.0106751975,-0.028319905,-0.007983803,0.025266979,0.03201555,-0.01726309,0.021671757,-0.0053928327,-0.014541567,0.03950727,-0.000564264,0.03699664,-0.030910874,0.06158073,0.013175785,0.0064372546,0.03832225,0.007351124,-0.04386572,-0.000289507,-0.010614943,-0.005433003,0.007521847,0.006000405,-0.020476697,0.0151541615,0.003580158,0.007873335,-0.025066128,-0.012292043,-0.018478235,0.006828913,-0.01220166,0.0132862525,-0.03412448,-0.0036102857,-0.022997368,-0.011890342,0.037960723,0.005729257,0.00924916,-0.005538449,0.016791092,0.014380887,-0.00577947,-0.046034906,-0.022053372,0.0750377,0.012452723,0.05430994,0.0115087265,0.018889979,0.06744556,0.014963353,-0.0060355538,-0.016971856,0.024322981,0.024302896,-0.027757524,0.029464751,0.0065678074,-0.0074063577,0.0010827091,-0.0050940677,-0.04615542,-0.023579834,-0.0117999595,0.024664426,-0.013125572,-0.06310719,-0.01431059,0.034546267,-0.011789917,-0.049047664,0.024784938,0.031051468,-0.0034822435,-0.032557845,-0.0014046973,0.007587123,-0.033742864,0.017092368,-0.0120711075,-0.058367122,-0.026331484,0.008666694,0.02440332,-0.026853696,-0.00007939867,-0.016610326,0.061500385,-0.012030938,0.02108929,0.04189739,0.003921604,-0.011568982,-0.050333105,-0.020667505,-0.004117433,-0.0023110346,0.0025809275,-0.021470906,0.03581162,0.0068389555,-0.020305974,0.008079207,0.043825552,0.0077478033,-0.021310225,0.07278818,0.009540393,0.012573234,-0.009625754,-0.013025147,-0.044548616,0.017745132,0.027978458,-0.0056338534,0.002324843,0.009771371,-0.028641265,-0.0056338534,0.04555287,-0.00816959,-0.0024779916,-0.015314842,-0.005970278,0.037779957,0.003560073,-0.007963718,-0.019512614,0.03277878,0.023278559,-0.0009157522,0.0038211786,-0.013215955,-0.013999271,-0.03711715,0.007331039,-0.006848998,0.008576311,0.0013770805,-0.013256125,-0.03281895,0.000023497925,-0.03324074,0.010896133,-0.021410652,-0.017323345,-0.013527273,0.017082324,0.024483662,0.017152622,0.016640455,0.039406843,-0.027938288,-0.0040446245,0.0005353918,0.01633918,0.004220369,0.011850173,-0.004388581,-0.004963515,-0.048525453,0.0008454546,-0.0021679287,0.03161385,-0.009003119,0.017484026,0.0053325775,0.0060305325,0.008310185,0.03874404,-0.007506783,-0.006341851,-0.026291315,-0.014280462,0.013517231,0.013547358,-0.0102383485,0.010876048,-0.02355975,0.015445394,0.022816604,0.0033466695,0.054591134,-0.015575947,0.042861473,0.04113416,0.0087872045,0.0077026123,0.0122518735,-0.0020185462,-0.004971047,-0.031915125,-0.012482851,0.018679086,0.022093542,0.01463195,0.029002795,0.022997368,0.018076533,0.02586953,0.0021817372,0.046597287,0.0019256531,0.0022922049,0.0060907877,0.014662078,0.024282811,0.018056449,-0.004659729,-0.05430994,-0.008511035,-0.027898118,0.018307513,-0.018026322,0.028520754,-0.02137048,-0.015806925,0.024945617,0.040391013,0.009133671,0.01918121,-0.01829747,0.023338815,-0.019392105,-0.02691395,-0.026090465,0.004895728,-0.0038688804,0.009133671,0.014963353,0.004388581,0.013798421,-0.0018729299,0.018769467,0.02647208,0.01479263,0.05242195,0.031151894,-0.03695647,-0.039185908,0.04229909,0.00022752583,-0.00035337114,0.018588703,-0.0052873865,-0.010584815,0.0005645779,-0.017283175,-0.022575583,-0.03828208,-0.016991943,0.03679579,0.0052020247,0.009595627,0.013266168,0.0034395629,0.0073611666,0.0011592833,0.02647208,-0.016720794,0.014250334,0.009916987,-0.02137048,-0.00980652,-0.028179308,0.022555498,-0.015616117,-0.033220652,-0.029745942,0.049328852,-0.05788508,0.034345414,0.014852886,-0.025186637,-0.017564366,-0.007722697,0.017996194,-0.009716137,0.032839037,0.0055183643,0.028440414,0.010027455,0.006191213,0.017072283,0.0045065805,0.04209824,-0.010544645,-0.008495972,0.03189504,-0.026853696,-0.03456635,0.012834339,-0.002997692,-0.008621503,-0.0068590404,0.009193926,0.012653574,0.016128285,-0.020486739,0.031754445,0.0061259368,0.0025043532,-0.00007598578,-0.0037985828,0.04193756,0.013005062,0.01781543,0.030047217,0.019572869,0.037619278,-0.008104313,-0.0025043532,-0.0017109942,-0.0027516503,-0.018016279,-0.019803848,0.035992388,-0.008742013,0.035369754,-0.014340717,0.010886091,-0.028761774,-0.007446528,-0.011338004,0.026974207,-0.012412554,-0.004293177,-0.025427658,0.036253493,0.002503098,0.0074415067,0.019382061,0.0122518735,-0.009625754,-0.011056813,0.054109093,-0.023620006,-0.013878762,0.05716202,0.0526228,-0.030589513,0.022475157,0.0347672,0.041535858,0.014993481,0.038121402,0.014330675,0.042861473,0.0028470543,-0.007125167,-0.0038362422,-0.021852521,0.00026973578,-0.015575947,-0.0063569145,-0.0018879935,-0.015053736,0.027757524,-0.026210975,-0.002678842,-0.0032085849,0.05680049,-0.008435716,0.057644058,0.014370845,0.01339672,-0.013165742,-0.01793594,0.029424582,0.020396356,-0.0015879733,0.054229602,0.0006085139,0.0034822435,-0.02412213,-0.0013783358,-0.009670946,0.004692367,-0.0030830533,-0.02092861,0.021109374,0.00046007292,-0.02368026,-0.008039037,-0.0024729704,-0.009183884,0.046075076,0.009229075,0.0010550922,-0.003512371,0.0233589,0.00322867,0.0050890464,-0.017243005,0.005809597,0.009756307,-0.015857138,0.061058518,-0.025407573,-0.0036404133,-0.0074866978,0.0029324156,0.002889735,-0.019402146,0.047802392,0.019361977,0.010745496,0.03085062,-0.011066856,0.0073009115,0.03930642,-0.015324884,0.032196317,0.0035299454,-0.023881111,-0.0038814335,-0.013025147,-0.023700345,-0.040049568,-0.021129461,-0.003492286,0.004564325,-0.0006238915,-0.017413728,-0.009068395,-0.002435311,0.008671715,-0.0331604,-0.01048439,0.010092732,-0.03173436,-0.039647866,0.037980806,-0.03145317,0.00028872243,0.020436527,0.006989593,0.017775258,0.01781543,-0.02659259,-0.03193521,-0.0016695688,0.055033006,0.0095655,-0.008721928,-0.023338815,0.018709213,-0.003479733,-0.0046019843,-0.01877951,-0.008511035,0.024644341,0.010845921,0.000705487,-0.014119782,0.014662078,-0.0412145,-0.00010960468,-0.034988135,-0.025146468,-0.022535414,0.02311788,0.01192047,0.012824297,0.014913141,-0.01905066,0.012452723,-0.009234096,0.008922778,-0.01204098,-0.02934424,0.011247621,0.034626607,0.007662442,0.002786799,0.011729662,0.03281895,-0.021189716,-0.02339907,0.034385584,0.026130635,0.019392105,0.008129419,0.0043182834,-0.03755902,0.012472808,0.011267707,0.0045542824,-0.05680049,-0.0036127963,0.030649768,-0.010695282,0.046396438,0.00058529055,0.019793805,0.026773356,-0.0026838633,0.0016130796,0.0056790444,-0.0060305325,0.00052095565,-0.012271958,0.0011649323,-0.028721604,-0.0068590404,0.008084228,0.0010381454,-0.0009195182,-0.021149546,0.007501762,-0.025889615,-0.008822353,0.0028721604,-0.016821219,-0.024463577,0.016690666,0.0075369105,-0.012643532,-0.0014084633,0.008340312,-0.024925532,0.014451185,0.00033579674,0.017976109,-0.006130958,0.009394777,-0.0057593845,0.020587165,-0.0017888237,0.03340142,0.026331484,-0.04691865,-0.05354671,0.01155894,0.044669125,0.010554687,0.00024839543,-0.0039416887,0.011317919,0.016921645,0.054149263,0.01918121,0.0057192147,0.010835879,0.012964892,-0.023017453,-0.008300142,0.04205807,-0.0031106703,-0.03259802,0.015997732,-0.0003061399,-0.0104743475,-0.0044488357,0.022917029,0.0002928022,0.029886536,-0.018879935,0.009183884,0.060616646,0.0518194,0.03157368,0.009133671,-0.013145657,-0.043825552,-0.023378985,0.022173882,-0.022615753,0.006959466,0.018759426,-0.002786799,-0.009741244,-0.0054430454,0.030750193,0.011629237,0.022736263,0.010544645,-0.006402106,-0.001722292,-0.044428103,0.030308323,-0.028540839,-0.016429562,0.050011747,-0.016178498,0.031232234,0.0045316867,-0.014943268,0.0020675035,-0.024865277,0.0080992915,-0.017735088,0.0027039482,0.013406763,-0.018528448,0.031031383,0.029002795,0.0027014376,0.04756137,-0.013477061,-0.0059903627,-0.0024491192,-0.0012094959,0.012733914,-0.0010827091,0.028038714,0.03639409,0.01044422,-0.020526908,0.013768294,0.0011988257,-0.043584533,-0.0064171697,0.01331638,-0.024784938,0.04019016,-0.0039040293,-0.034345414,0.012854424,-0.021671757,-0.011860215,-0.027476333,0.000749423,0.053345863,-0.018277384,-0.0068640616,0.00896797,-0.027596842,0.022414902,0.06732505,0.001929419,0.0027591821,-0.011498684,0.0011329217,0.00097161374,0.02137048,0.036655195,-0.02096878,-0.044709295,0.004481474,0.0011291557,0.02898271,0.028842114,0.034024056,-0.021892691,0.0020336101,0.016650496,0.044066574,-0.016098158,0.0030604578,-0.021470906,-0.038161572,0.045954566,-0.022053372,0.017192792,-0.013507188,0.0076674633,0.01562616,0.037418425,0.032879207,0.0001967706,0.00073498685,-0.030569429,0.012523022,0.0012779105,0.021912776,-0.02436315]},{"id":"interface-APIWebhookUpdateRequest","type":"interface","source":"main","text":"Interface: APIWebhookUpdateRequest\nDescription: Request body for PATCH /webhooks/{id} (bot auth). All fields optional.\nProperties: avatar: string | null, channel_id: string, name: string","meta":{"url":"/docs/typedefs/APIWebhookUpdateRequest"},"embedding":[0.014780663,0.011666275,-0.029399011,-0.0026401286,0.009581562,-0.034451015,0.057296626,-0.00083249016,0.008080163,0.02603101,0.008110597,0.008222187,-0.033740893,-0.017134206,-0.022947054,0.032990195,-0.0014240463,0.03363945,-0.043459408,-0.026051298,-0.006315005,-0.0036951657,0.0001418657,0.01276189,-0.0030560568,0.020096425,-0.040639214,0.0016675164,-0.019548617,-0.042566683,-0.008577248,-0.0134517215,0.014445892,0.03558721,-0.008972887,0.028871493,-0.00007481632,-0.0032132978,0.001124781,0.010874997,0.00093647215,-0.024935395,0.03461333,0.023981802,-0.044149242,0.020583365,-0.030880122,0.014151698,-0.025807828,0.012883625,-0.039178394,0.0041491357,0.0380422,0.054618455,0.029114963,0.0053664865,-0.00033318627,-0.018879075,-0.019122545,0.039929092,-0.01669799,-0.030007686,-0.024428165,-0.043215938,0.014445892,0.015237169,-0.040842105,-0.013025649,0.01621105,0.020796401,0.066020966,0.024265852,-0.03658138,0.028830916,-0.015298037,0.013685048,-0.03436986,-0.0072381627,-0.006396162,-0.047233194,-0.038366824,-0.0032995269,-0.086918816,-0.06581808,-0.03704803,0.02745125,-0.011696708,-0.020552931,-0.012082202,-0.019609485,-0.023393417,0.00037091144,-0.067076005,-0.014932832,-0.014171988,-0.007228018,-0.019670352,-0.007126572,-0.017590713,0.03585097,0.020755824,-0.019923968,-0.086918816,-0.0066599213,-0.00577227,-0.06451957,0.059569012,-0.018564593,-0.0008838471,-0.01763129,-0.046746254,-0.030109134,-0.009804742,0.01521688,-0.02505713,-0.039178394,0.02943959,-0.014811097,0.004483907,-0.07620613,0.0120619135,-0.00018799187,0.047233194,-0.047070883,-0.00802944,0.011017021,-0.057053156,0.036682826,-0.066913694,-0.00010493307,0.03234094,0.012295239,0.018321123,0.034714773,-0.013715481,-0.040821817,0.015379193,0.048531704,-0.019061677,-0.009185923,0.023413707,-0.053806886,0.010022852,-0.026639685,-0.022764452,0.016099459,-0.00049962086,0.03735237,0.007004837,-0.0010271394,-0.043418832,0.032685857,-0.008988104,0.030697519,-0.010601093,-0.024651345,-0.008927236,0.0115546845,-0.030758386,-0.030758386,0.022947054,-0.032056894,-0.009500405,-0.043905772,-0.0004967677,-0.015957434,0.02432672,0.0003354054,-0.029885951,0.015744397,0.036114726,-0.042607263,-0.020776113,0.0044027506,0.006832379,0.0013936126,0.04565064,-0.047233194,-0.023900647,-0.022926766,0.057580672,0.027613565,-0.01409083,0.00013116634,-0.05611985,-0.0020365256,-0.008308416,0.03779873,0.0018425105,-0.019538473,-0.0017182394,0.008369284,0.0062338486,-0.03574952,-0.002695924,-0.0579053,0.0059396555,-0.052183755,0.02627448,-0.017570423,0.029987399,-0.010271394,0.017702304,-0.009748948,-0.018787773,0.021141319,0.010342406,-0.023961514,-0.033497423,-0.01313724,0.03136706,-0.0174284,0.036500223,-0.02554407,-0.05400978,-0.028891783,0.009774309,0.019629775,-0.055998117,-0.038894344,-0.008709127,0.038671162,0.069754176,-0.03363945,-0.019710932,0.017722592,0.022561561,-0.013096661,-0.033091642,-0.00993155,-0.0371089,0.032848172,-0.020776113,-0.021039871,-0.030048266,-0.030190289,0.029459879,0.057540096,0.006208487,0.006583837,-0.008962742,-0.022906477,-0.033761185,0.035384316,0.012112636,0.0016510314,0.01864575,-0.057986457,0.003355322,-0.029541036,0.0357901,0.037900176,-0.004521949,-0.020289173,0.008866369,0.0043266662,0.012112636,0.031083014,-0.004585353,0.00321837,0.05616043,0.0019236673,-0.015561796,0.051169295,-0.00032747994,-0.016079169,0.034937955,0.011777865,0.022074621,0.0044534733,-0.011057599,0.019852955,0.032016315,0.0069135358,-0.0309207,0.0058179204,0.008491019,-0.014719795,-0.025909275,0.0035607498,-0.0073801866,0.023393417,-0.029885951,0.057540096,0.00075323554,0.016992182,0.036885716,0.023900647,0.04662452,0.034248125,-0.012132926,0.05522713,-0.002769472,-0.0365408,-0.009743875,0.058716867,0.028932361,-0.009170706,0.10112124,0.014324157,0.007943211,0.0020276492,0.01778346,-0.021668836,-0.018828353,0.041085575,0.020583365,-0.019670352,-0.016109603,-0.046218738,0.022703584,0.032280073,-0.044798493,-0.011402516,-0.04003054,0.0055237273,0.0020010197,0.003801684,-0.0006543258,0.015531362,-0.026639685,0.021506524,-0.044717338,-0.04100442,-0.024387587,-0.048044764,0.0023991948,0.033740893,0.028628023,0.011879311,-0.012579287,-0.03950302,0.03507998,-0.024935395,0.024955682,-0.000864826,-0.038123354,0.02578754,-0.016728424,0.026822288,0.0045574554,0.017641436,0.00001119471,-0.02651795,-0.045569483,0.006299788,-0.0076388735,0.03680456,-0.045204278,0.01422271,0.010996732,-0.005280257,-0.011950323,-0.024651345,-0.044392712,-0.033903208,-0.002594478,-0.021729704,-0.006086752,0.00937867,-0.023981802,0.014232855,-0.016769001,0.018473292,0.011108322,-0.0062642824,0.039137814,-0.035384316,-0.013715481,-0.02477308,0.03266557,-0.057499517,-0.01888922,-0.019193558,-0.018980522,-0.018280545,-0.043053627,0.022602139,-0.021080451,-0.03755526,0.054780766,0.043499988,0.0009903653,0.0057773422,0.0028683818,0.01937616,-0.0027111408,0.033822052,-0.028303396,0.0030662012,-0.0045929616,-0.0055085104,-0.034430727,-0.033720605,0.021425366,0.0018247575,0.02578754,-0.0011025898,0.012670589,-0.020755824,-0.010956153,0.0035353885,-0.031042434,0.004065443,0.0042860876,0.0042632623,-0.0021684053,0.015774831,0.02601072,-0.0017753027,0.030190289,0.0050596124,0.0016916099,0.03581039,0.04889691,-0.0016535677,0.031488795,-0.047557823,0.035729233,0.082779825,-0.039178394,0.026639685,0.021323921,0.0016954141,-0.00968808,0.0022457577,-0.0054019922,0.013390854,-0.02576725,-0.03856972,-0.028546866,-0.0053360523,0.018676184,-0.023718044,0.017225508,-0.040618923,0.015206736,0.0076743797,0.0009979737,0.048937485,-0.043175362,-0.023900647,0.016393652,0.045488328,-0.033761185,0.0018868931,0.042931892,-0.037190054,-0.056079276,0.029480169,-0.01928486,-0.032401808,-0.0023763694,0.030129422,0.024874527,-0.011463383,-0.0032437316,0.045041963,-0.012325672,0.018422568,-0.00036679022,-0.02870918,0.025138285,0.07673365,0.012427119,-0.0015052031,-0.045285434,0.032198917,-0.027857035,-0.023657177,0.0466651,0.033091642,0.00026328373,0.028242528,-0.0050215703,-0.040537767,0.011564828,-0.008536669,0.016464664,0.03163082,0.00729903,-0.0046081785,-0.010956153,-0.011047455,0.029703349,0.083510235,0.021547101,0.0004805998,0.037859596,-0.004306377,-0.0016700525,0.0068881745,-0.052630115,-0.005554161,-0.006487463,-0.045082543,-0.035952415,-0.0014265825,0.017073339,-0.017489268,-0.036013283,-0.025828118,0.021587681,0.010195309,0.0371089,0.04100442,-0.00918085,0.0030712737,-0.012082202,0.002248294,-0.009485188,-0.0033147437,0.0042277565,0.010844563,-0.047517244,0.029885951,-0.024894815,0.013390854,-0.015440061,0.034653906,-0.058108192,0.036155306,0.0113010695,0.0047603473,-0.0068628127,0.0036444427,-0.043621723,-0.08265809,-0.015957434,-0.0026908517,-0.0044052866,-0.014658928,-0.003355322,0.00004707722,0.0027212854,-0.0046918713,-0.010530081,-0.0070809214,0.023210814,0.040821817,-0.043175362,-0.0066345595,-0.02430643,0.027126625,-0.0007221678,0.029987399,0.010185164,0.03652051,0.033253953,0.027917903,0.03163082,0.010935864,-0.0055998117,0.002749183,0.03380176,0.04540717,0.0064418125,0.009515622,0.033091642,0.006340367,-0.0027086046,-0.026903443,0.017935628,-0.017884906,-0.014232855,0.012843046,0.020542787,-0.021303631,0.006380945,-0.0026249117,-0.016292205,0.027552698,0.027552698,0.0011279512,0.030940989,0.05717489,-0.020877559,0.026213612,-0.0071722227,-0.0037763224,0.0022749235,-0.04763898,0.007872199,0.022460114,-0.003910738,-0.00084960915,0.01729652,-0.019934112,-0.009008393,0.017813893,0.0096627185,0.021242764,0.033477135,0.0031017074,-0.0061577642,-0.011453238,-0.008080163,-0.0014443356,-0.03978707,0.023778912,-0.014232855,0.021019584,-0.012640155,-0.00847073,0.022176066,0.02820195,0.012112636,0.0012389076,-0.011960467,0.026071588,0.034937955,0.027857035,0.0012300311,-0.010854708,0.005102727,0.014800952,0.0046487567,-0.0013885403,0.010266322,-0.005346197,0.026396215,0.018442858,-0.007304102,0.059893638,-0.019254426,0.01753999,0.034268413,-0.030575784,0.00432413,0.013989385,-0.007091066,0.023778912,-0.015450206,-0.0023446674,-0.04808534,-0.02720778,0.053157635,-0.016566109,-0.0342887,0.0043672444,0.0069845477,0.022054331,0.027836746,-0.011798155,0.013715481,-0.02771501,-0.0066447044,-0.0050088894,-0.010448924,0.0019667817,-0.013340131,-0.01630235,0.008445368,0.023677465,0.0041085575,0.0052193897,-0.035952415,0.011047455,-0.00021303631,-0.009343164,0.01665741,-0.005701258,0.0121836485,-0.010377912,-0.00020622043,0.016779145,-0.031427927,0.007192512,-0.051128715,0.025442623,-0.001521688,-0.007948283,0.03388292,-0.008972887,0.022115199,-0.023880357,0.0018957696,-0.02501655,0.024367297,0.05912265,0.002802442,-0.015298037,-0.001866604,-0.02578754,0.015176302,-0.021810861,0.038914632,0.011595262,0.025686093,0.006299788,-0.015663242,-0.010530081,-0.0022926766,0.011088033,-0.0014405313,0.052833006,-0.0064773187,0.016728424,0.026294768,0.029967109,-0.003821973,-0.02074568,0.004346955,0.01948775,-0.027654143,0.021567391,0.024002092,0.034511883,0.0059041493,0.010976443,-0.008171464,0.040091407,-0.033680025,0.018635605,0.0120619135,0.061151568,-0.027126625,0.029074386,0.0053512696,0.021202186,0.05177797,-0.04743609,-0.015003843,-0.016586399,0.008288127,-0.023494862,0.033274245,0.008597537,-0.012802469,0.0012084738,-0.009571417,0.0061273305,-0.02209491,-0.0031752556,0.0011095641,0.017225508,-0.018666038,0.0072381627,-0.012508275,0.0054070647,-0.006056318,-0.011392371,-0.018960232,0.01975151,0.013593746,0.009647502,0.014070542,-0.015571941,-0.018392134,0.002728894,-0.01690088,0.00214558,-0.047273774,0.013390854,-0.0035582138,0.028404843,0.0011190746,-0.057012577,-0.02048192,0.0023091615,-0.0019528329,-0.0079026325,0.0013796638,0.0039563887,-0.045772374,-0.029561326,-0.0059498,-0.0143343005,0.032949615,0.0367234,-0.033010483,-0.021810861,-0.02822224,0.004103485,0.041126154,-0.035161138,-0.016403796,-0.02072539,0.0023104295,-0.014618349,0.028506288,0.0036241536,-0.004552383,0.0002992653,-0.016748711,-0.020816691,-0.013177818,-0.022703584,-0.01984281,0.011443093,-0.055754647,0.013228541,0.028932361,-0.028810626,0.041876853,0.024975972,0.0039183465,-0.03702774,0.019497896,0.042282637,-0.019812377,-0.00121101,-0.060745783,-0.023109369,0.032320652,0.009054043,-0.030535206,0.032543834,0.046989724,0.024935395,-0.040152274,0.021851439,-0.040842105,0.013208251,0.0091605615,0.011402516,-0.012751745,-0.010976443,0.030940989,0.015998013,0.045528904,0.007816404,0.008141031,0.010154731,0.005929511,0.03680456,-0.036256753,0.004346955,0.00398175,-0.013857505,0.011503961,0.0054222816,0.0183617,-0.026112165,0.025584647,-0.027775878,-0.011209768,0.0071214996,-0.03946244,0.0074968496,0.015744397,-0.024265852,0.063708,-0.024590477,0.002837948,-0.026842576,0.015419772,0.0026680261,-0.017053049,-0.00045206814,-0.010342406,-0.034897376,0.009439537,-0.025483202,-0.01692117,-0.02578754,-0.032990195,0.013898084,0.023697754,0.025604937,-0.0142024215,0.010986587,-0.0253006,-0.0020213088,-0.03163082,-0.008130886,0.003890449,-0.03404523,-0.01397924,0.023433995,0.048978064,-0.003966533,0.027430963,-0.008359139,-0.008501164,0.053806886,0.004912516,0.024468742,-0.017763171,0.057296626,0.020999294,-0.006066463,0.030981567,0.0018602635,-0.0342887,-0.002680707,-0.012782179,-0.0095359115,-0.0026071586,0.011290925,-0.008420006,0.021648549,0.009475044,0.018473292,-0.03459304,0.0019046462,-0.02406296,0.011493817,-0.013887939,0.012802469,-0.032929327,0.007938139,-0.022135489,-0.014638638,0.035140846,0.024204984,0.017925484,-0.0029317855,0.009911261,0.0036723404,-0.018371847,-0.035891548,-0.014922687,0.061192147,0.0028810627,0.053563416,0.016312495,0.0101699475,0.043784037,0.006086752,-0.023515152,-0.013573457,0.015257458,0.024651345,-0.029378723,0.03550605,0.0104286345,-0.023373127,-0.000587752,-0.0077606086,-0.028120793,-0.034714773,-0.01263001,0.029094674,-0.037717573,-0.069754176,-0.016342929,0.03412639,-0.009764165,-0.06354569,0.029683061,0.02209491,-0.001988339,-0.036378488,0.001729652,-0.0042176116,-0.03633791,0.011189479,-0.021648549,-0.048694015,-0.016992182,0.007978717,0.034998823,-0.023616597,0.0047704917,-0.01360389,0.052143175,-0.010007635,0.023413707,0.055308286,0.0018970377,-0.015044422,-0.03946244,-0.022683296,-0.00020273322,-0.0069946926,0.00008924066,-0.03921897,0.0389755,0.013948807,-0.0054070647,-0.0056099566,0.048694015,0.026375925,-0.022622429,0.059244387,0.0039868224,0.023291972,-0.008541741,-0.008009151,-0.042647842,0.009317802,0.035526343,-0.028506288,0.0058737155,0.015156012,-0.032543834,-0.018422568,0.032726437,-0.008531597,0.011432949,-0.027796168,0.0028988156,0.01411112,0.01386765,-0.014851674,-0.007344681,0.025848407,0.023291972,-0.0003179694,-0.005173739,-0.015612518,-0.010448924,-0.029317856,0.012011191,0.000045531757,-0.00085024314,0.010540226,-0.012843046,-0.015886422,-0.0048820823,-0.021080451,0.017438544,-0.02552378,-0.012924204,-0.019670352,0.007988862,0.044352133,0.016231338,0.016687844,0.060421158,-0.02554407,0.005280257,-0.012244516,0.014324157,-0.009297513,0.025665805,0.01913269,-0.0072888853,-0.040395744,0.0053309803,-0.019923968,0.009769237,-0.01572411,0.014263289,-0.0045168772,0.0017841791,0.013563313,0.025239732,-0.009008393,-0.025970142,-0.008323633,-0.0116865635,0.008267838,-0.0017334563,-0.014019819,-0.0058027036,-0.045244858,0.02306879,0.02357602,-0.0059802337,0.06374858,-0.0197718,0.03749439,0.03558721,-0.0013631788,0.004757811,0.012203937,-0.006208487,-0.008587392,-0.017154496,-0.023413707,0.024265852,0.03161053,0.017682014,0.018929798,0.026801998,0.015409627,0.035668366,0.009236646,0.03848856,-0.009094622,-0.01012937,-0.0041263103,0.019893534,0.007821476,0.02554407,-0.007278741,-0.04638105,-0.014953121,-0.03432928,0.010398201,-0.013644469,0.021100739,-0.013279264,-0.017418254,0.019954402,0.05449672,0.010672105,0.019873245,-0.0333554,0.036398776,-0.009272152,-0.03824509,-0.02769472,0.010398201,0.0043672444,-0.0041085575,0.014516903,0.0056150286,-0.018737052,-0.0060055954,0.018858787,0.017611003,-0.0017626219,0.05469961,0.01035255,-0.038062487,-0.034106098,0.050195415,-0.0025729206,0.011574973,0.018300833,-0.0040121838,-0.0031524303,-0.013786493,-0.009880827,-0.009794598,-0.0309207,-0.0166777,0.041673962,-0.001175504,-0.022663007,0.013096661,0.016383506,0.024225272,-0.0034288703,0.027897613,-0.021181896,0.0030459121,0.00926708,-0.014537193,-0.00802944,-0.02870918,0.023636887,-0.002268583,-0.014029963,-0.024935395,0.043499988,-0.05636332,0.05425325,0.01287348,-0.041126154,-0.008511308,-0.011909745,-0.00017372605,-0.024022382,0.02503684,0.016424086,0.013715481,0.015429916,0.014608204,0.034897376,0.025117997,0.046259314,-0.01035255,-0.013400999,0.026294768,-0.008800428,-0.014151698,0.022054331,0.021141319,-0.013187963,-0.022926766,0.015257458,0.0075475723,0.0022051795,-0.028587446,0.031306192,-0.0012262269,-0.0052193897,-0.008592465,-0.003768714,0.042160902,0.0034161895,0.018960232,0.041998588,0.016251627,0.019203702,-0.014070542,0.010088791,-0.0111793345,0.008414934,-0.011828588,-0.022865899,0.034714773,-0.006538186,0.030555494,-0.015145868,0.0076895966,-0.031752557,-0.00802944,0.0035759667,0.010773551,-0.025462912,-0.0075019216,-0.026294768,0.021790572,0.015622663,0.021973174,0.0071367165,0.00027723252,-0.01572411,-0.0066294875,0.06326164,-0.015429916,-0.007882344,0.06265297,0.043053627,-0.038874056,0.019934112,0.034430727,0.042850733,0.025909275,0.04443329,0.019437028,0.028039638,0.013522734,0.001004314,0.0055440166,-0.011828588,-0.01900081,-0.017012471,-0.01459806,-0.01605888,-0.01641394,0.025320888,-0.01716464,0.0045929616,-0.0012078398,0.030859832,0.0004945486,0.0642761,0.0052143172,0.01116919,-0.012011191,-0.030393181,0.032198917,0.025848407,-0.0024600623,0.059325542,-0.0055998117,0.016992182,-0.011635841,-0.008004079,0.004362172,-0.009480116,-0.018128376,-0.01645452,0.017083483,-0.010885142,-0.02503684,-0.011088033,-0.0023281826,-0.0031321412,0.039624754,0.013269119,-0.00038264113,-0.0011615552,0.020979004,0.010306899,-0.00235608,-0.03138735,-0.006933825,-0.006107041,-0.021526814,0.052346066,-0.02452961,-0.0032462678,-0.017773315,0.00698962,-0.017124062,-0.01924428,0.04443329,-0.0014278506,0.022805031,0.01690088,-0.016758857,-0.0064113787,0.04544775,-0.006071535,0.0356075,-0.0061476193,-0.022602139,-0.016373362,-0.020958716,-0.027593276,-0.044798493,-0.022439826,-0.011940178,-0.0058027036,-0.0022368813,-0.029845374,-0.006315005,-0.014790807,0.008577248,-0.02672084,-0.002506981,0.0011019557,-0.024428165,-0.031854,0.045123123,-0.02868889,0.009475044,0.010976443,0.010509792,0.007314247,0.016241483,-0.03554663,-0.03461333,-0.013553168,0.048491124,0.012072058,-0.011361937,-0.029662771,0.007953356,0.013756059,-0.0050063534,-0.011331503,-0.0016484953,0.007978717,0.01855445,-0.0044357204,-0.0031093159,-0.017306665,-0.059853062,-0.019873245,-0.033132218,-0.0324221,-0.028343976,0.023149947,0.01165613,0.020076137,0.015612518,-0.0120619135,0.01879792,0.010763407,0.008085235,-0.0027872252,-0.028891783,0.014770518,0.02406296,-0.0025323424,0.008678693,0.007522211,0.041673962,-0.0075171385,-0.02747154,0.045285434,0.012853191,0.015419772,0.011524251,-0.0021696733,-0.037616126,0.014506759,0.003162575,0.008932308,-0.04784187,-0.014151698,0.028546866,-0.0040223286,0.02868889,-0.00049962086,0.0064113787,0.017063195,-0.01300536,0.022196356,-0.009343164,-0.0041440637,0.012396685,-0.02025874,-0.008795356,-0.015531362,0.0025767249,-0.0095409835,0.0014430674,-0.013969095,-0.016647266,0.005171203,-0.030230869,-0.003717991,-0.0051838835,-0.018341413,-0.026294768,0.0021151463,-0.007370042,-0.010022852,0.007831621,0.008359139,-0.03290904,0.006451957,0.011514106,0.023758622,-0.0010423562,-0.01373577,-0.0030636652,0.017854473,0.011382226,0.044311553,0.044839073,-0.05250838,-0.04711146,0.0055034384,0.031752557,-0.002539951,-0.0042429734,-0.0029850446,0.00031448217,0.015369048,0.060624048,0.01669799,0.017560279,0.0010854708,0.011331503,-0.01422271,-0.0057469085,0.037129186,-0.005620101,-0.02603101,0.007385259,-0.011331503,-0.0137053365,-0.008795356,0.026213612,0.0015191518,0.034308992,-0.030312024,0.010996732,0.04954616,0.039665334,0.020370329,0.00023649567,-0.00021018315,-0.050235994,-0.032198917,0.0069744033,-0.017884906,-0.0060968967,0.013390854,-0.00608168,-0.010382984,0.0009098426,0.03165111,0.020197872,0.03871174,0.014922687,-0.012051769,-0.00512048,-0.042931892,0.03905666,-0.033984363,-0.01409083,0.050479464,-0.0140806865,0.029399011,-0.0005341759,-0.008967814,0.0072685964,-0.029561326,0.020715246,-0.01289377,0.005310691,-0.0018285618,-0.0016104531,0.028039638,0.030636651,-0.009419248,0.03755526,-0.024590477,0.0052346066,0.0040908046,0.0145879155,0.023900647,-0.0048288233,0.029906241,0.029581614,0.0024347007,-0.01617047,0.016109603,-0.0000034178538,-0.050641775,0.005970089,0.005391848,-0.024407875,0.01605888,-0.0020656914,-0.0357901,0.013796638,-0.042728998,0.0041947863,-0.04589411,0.00012696584,0.042526107,-0.00091554894,-0.009652574,0.017195074,-0.03970591,0.026923733,0.060705207,-0.007999007,0.005090046,-0.012670589,-0.008374356,0.0031093159,0.026375925,0.040050827,-0.005105263,-0.052589536,0.008059874,-0.009825032,0.03286846,0.029155541,0.040882684,0.0016535677,0.01909211,0.0166777,0.03773786,-0.017611003,0.0018780166,-0.014516903,-0.041065287,0.055754647,-0.014821241,-0.008115669,-0.0063555837,0.02477308,0.0013733234,0.019203702,0.03307135,-0.007385259,0.011727142,-0.036601666,0.019812377,-0.022257224,0.02528031,-0.016231338]},{"id":"interface-AttachmentData","type":"interface","source":"main","text":"Interface: AttachmentData\nDescription: File handling for multipart requests. Matches fluxer_api parseMultipartMessageData exactly:\n- payload_json: JSON string with content, embeds, attachments metadata\n- files[N]: File parts where N is 0-based index (fluxer API expects files[0], files[1], etc.)","meta":{"url":"/docs/typedefs/AttachmentData"},"embedding":[-0.0050366935,0.026240831,0.031516284,-0.011113697,0.037746776,-0.011801552,-0.035632048,0.050298717,0.020988118,0.002393282,0.015257884,-0.025695095,0.015417057,-0.031516284,-0.043317836,0.047706466,0.040634632,0.016667703,-0.0029532304,0.017520417,0.01954419,-0.013302328,0.026695611,-0.025490444,-0.009379846,-0.035927653,-0.014189149,0.050753497,0.03556383,-0.0474336,0.044727657,-0.023671322,0.04675143,0.04393179,0.021909047,0.042590186,-0.0021332044,0.07253748,-0.040930238,-0.0110625345,-0.016372096,0.0068444456,-0.018566411,0.02095401,0.0054971585,-0.0024927652,0.03526822,0.04040724,-0.039156597,0.023443932,-0.006463567,0.0036979334,0.0034108532,0.036973648,0.016394835,0.012995351,-0.03670078,0.031425327,-0.027286826,0.01999897,-0.024831012,-0.007464084,0.013836695,-0.0071741613,-0.015905946,0.025808789,-0.045750912,0.04390905,0.028423777,0.041066673,0.05880311,0.02001034,-0.007066151,-0.017816024,0.022284241,-0.048934374,-0.009760725,-0.01533747,-0.012824808,-0.050480627,0.011972095,0.050344195,-0.05211784,-0.06394213,-0.048479594,0.028537473,-0.014541605,0.002875065,-0.07212818,-0.002386176,-0.015098711,0.015428427,-0.09514007,-0.004658657,0.009834627,-0.05252714,-0.024262536,-0.024671838,-0.011557108,0.016679073,0.01699742,-0.0072423783,-0.021215508,-0.0474336,0.041748844,-0.02765065,0.020362794,0.006901293,-0.041930757,-0.02812817,-0.021499746,-0.025786052,0.027536955,0.023603104,0.020817574,0.011102327,-0.010260983,0.05211784,0.036109567,0.007850647,-0.011642379,0.002039406,0.0046529723,0.012222224,0.009976746,-0.002023773,-0.00020855946,0.0056705438,-0.068035156,0.009357108,0.056802075,-0.017918348,0.016815506,-0.03283515,-0.016565377,-0.012006204,0.010187082,0.0135410875,-0.023830494,-0.038747292,0.021749875,-0.018339021,0.07199174,0.0014567185,-0.0071002594,0.022920934,-0.013575196,0.056665644,0.022579849,0.010488374,-0.030515768,0.016406205,0.00020269706,0.012631526,0.013268219,-0.03947494,0.009482172,-0.007788115,0.0073390193,-0.0033568481,0.0057614995,-0.045955565,-0.004215246,-0.02626357,0.0032346258,0.020419642,0.003732042,-0.04697882,-0.0077142133,0.030424811,-0.02113592,-0.034244966,-0.028173648,-0.0027855302,-0.029879075,-0.031743675,0.0052953498,-0.028878558,-0.043317836,-0.025035663,0.022795869,-0.006577262,-0.017565895,-0.044977784,-0.02298915,-0.020578815,0.007003619,0.06598864,-0.011636694,0.0044369516,-0.034199487,0.041748844,-0.0029162795,0.014382431,-0.009328684,-0.00060400524,0.008845479,0.0072708023,0.02535401,0.03067494,0.0068444456,0.048525073,0.028059952,-0.012290441,-0.0060599493,0.017167961,-0.035450134,0.052618098,-0.00038869516,-0.028901296,-0.00870336,0.066898204,0.0039082696,0.032152977,-0.022716282,-0.00076104666,0.01764548,0.03417675,-0.027059436,0.026763828,0.007526616,0.025786052,0.0683535,0.0004593993,-0.044500265,0.01347287,-0.05461913,-0.0534367,-0.046046518,-0.021909047,-0.025399487,0.028264605,-0.03529096,-0.028310083,-0.031106982,0.005366409,-0.026354527,-0.042203624,0.024921969,0.050025847,-0.031470805,-0.022670805,-0.024376232,0.005161758,-0.033449102,-0.0026533597,-0.0146552995,0.006349872,0.055437736,0.011454782,0.068398975,-0.029014992,0.03326719,-0.029833596,0.013234111,-0.014371062,-0.013916281,0.035859436,0.0103121465,0.0409075,0.014018607,-0.034540575,-0.015689924,0.041339543,-0.011801552,-0.0052385023,-0.003288631,0.02999277,-0.05457365,0.029196903,-0.011130751,0.026923003,0.0209199,0.027013958,-0.031175198,0.028901296,0.0209199,-0.021408789,0.0012243543,0.002317959,-0.0019583981,-0.03908838,-0.046887863,0.018498193,-0.0024487085,0.02044238,0.02787804,0.00662274,0.0040219645,0.011432043,0.0058496133,-0.0016059434,0.066625334,-0.060121972,0.0062134378,-0.0043545226,0.017349873,-0.012335919,0.010624808,0.036928173,0.0028196387,-0.038679074,0.03131163,-0.027809823,0.006185014,-0.025808789,-0.0064919908,-0.0012279071,0.022375198,-0.010738503,0.009919899,-0.016303878,-0.061850138,-0.00018280042,-0.064533345,-0.010516797,-0.00037732563,0.026331788,0.0012499356,0.054982953,0.01721344,-0.011801552,0.04511422,-0.080950916,0.023398453,-0.013359175,-0.06044032,-0.0068615,-0.015041863,0.029583467,0.015928686,0.02162481,-0.00064557506,-0.043590706,0.051481146,-0.047660988,0.0030669256,0.030493028,-0.008225841,0.040498197,-0.0011014213,-0.03906564,-0.022125069,-0.0006377585,-0.02787804,-0.00964703,0.00063207373,0.038133338,-0.009965376,-0.012267702,-0.04907081,0.028446516,-0.0077028438,0.016701812,0.0065658926,0.011699227,-0.0041868226,-0.07199174,-0.017793285,-0.023989668,-0.052800007,0.016826876,0.006594316,0.03674626,-0.025490444,-0.013120416,-0.033426363,-0.0149054285,-0.015428427,-0.07681242,0.0061281663,0.010317831,-0.034699745,0.025672356,0.000311418,0.008004135,0.005244187,-0.02234109,0.0054147295,-0.02162481,0.033176232,0.084452726,-0.0024970288,-0.022397937,-0.027150393,-0.031789154,-0.06908115,0.0012947031,-0.038724553,0.016190184,0.009078555,0.006662533,-0.0246491,0.0026888894,-0.005704652,0.013836695,0.055665124,-0.004658657,-0.004147029,-0.05898502,0.020590184,0.012119899,-0.00041463185,0.019680623,-0.033380885,-0.0006260337,0.040998455,0.020772096,0.027536955,-0.061031535,0.034790702,-0.012381397,0.014768994,0.052845486,0.028310083,0.0044767447,-0.011204653,0.0032516802,-0.025626877,0.013723,-0.018339021,0.033562794,-0.033358146,0.028924035,0.013597935,-0.014973646,0.071536966,-0.0016201553,0.022466153,-0.020510597,0.002777003,-0.0012364343,0.034722485,0.023125585,0.01208579,-0.023534888,0.02232972,-0.016667703,-0.049843937,0.010323516,0.015496643,0.00023520675,0.05507391,0.05652921,-0.07408373,-0.023557626,-0.011903878,-0.005818347,0.018532302,-0.00488889,-0.053345744,-0.013586566,-0.037291996,-0.0062134378,-0.006446513,0.0103974175,-0.0028978041,0.014621191,0.08436177,-0.009806203,0.021840831,0.03670078,-0.0007518089,-0.012949873,-0.016485792,-0.036541607,0.013677522,-0.0070832055,-0.031766415,0.025058402,0.0023051684,0.021829462,-0.0032147293,0.051981404,-0.03836073,-0.053345744,-0.0017807496,-0.03911112,0.026559178,0.029447034,0.025740573,0.030402072,-0.07003619,-0.015883207,-0.012858917,0.13188633,0.030925069,0.025263052,0.023330236,-0.021567963,-0.023534888,-0.005289665,0.048979852,-0.009936953,0.03840621,-0.03720104,-0.00025066218,-0.06994523,0.004499484,-0.029424295,0.026854785,-0.008157624,0.052845486,-0.04181706,0.02414884,-0.014541605,-0.022795869,-0.01881654,-0.034108534,-0.0064976756,0.07003619,0.040611893,0.0040020677,0.019714732,-0.031220676,0.025467705,-0.030629462,0.010909046,0.005596642,0.016804136,-0.021249617,0.010010854,0.009038761,0.012642896,-0.016519899,-0.0187938,-0.02533127,-0.063623786,-0.008868218,-0.018486824,0.07112766,0.013575196,-0.015758142,0.014064085,-0.0067819133,0.023205172,-0.008583981,-0.015246514,-0.012904394,-0.0062248074,-0.02512662,0.010079072,-0.018327652,0.017145222,0.031925585,0.053391222,-0.009692508,0.015155558,-0.009442379,-0.0028054267,-0.028173648,-0.021022225,0.010863568,-0.008987598,0.030106464,0.06248683,0.015928686,-0.044136442,0.0056250654,-0.016679073,0.0017310081,-0.03131163,0.007532301,0.000078120975,-0.027832562,0.010437211,0.018475454,-0.028537473,0.004215246,-0.033062536,0.01347287,0.008709045,0.002430233,0.0084475465,-0.002573773,-0.005738761,-0.02276176,-0.0069410866,-0.023148324,-0.012199485,-0.022420675,-0.013768477,-0.022261502,0.009692508,0.021738505,-0.0057359184,-0.017020158,-0.022454783,-0.005508528,-0.022841347,0.03392662,-0.0005485789,0.023284758,-0.034108534,-0.022352459,0.0037604657,-0.0012520674,0.0129839815,-0.013723,0.013893542,-0.008890958,-0.01955556,0.0023648583,-0.026468221,0.020749357,0.0072196396,0.031448066,-0.028310083,-0.020783465,0.047706466,-0.019453233,0.051617578,-0.040339023,-0.04948011,0.0014766152,0.015633078,-0.016781397,-0.0038798456,0.0076062027,0.006690957,0.013995868,0.009737986,-0.0029702848,0.03069768,-0.024285275,0.012370028,-0.013518348,-0.010135919,-0.018884758,-0.014018607,-0.011136436,0.016508529,0.016849615,0.034290444,-0.027559694,0.0046700267,0.0071627917,0.009914214,-0.038519904,-0.00018688633,0.016667703,0.021215508,0.065715775,-0.0110625345,0.049616545,0.006372611,-0.03749665,0.017099744,-0.022966413,0.013688891,-0.01138088,-0.029719902,-0.00053116935,-0.011494575,0.02090853,-0.030311115,0.018850649,0.028241865,-0.018327652,0.02674109,0.011170545,0.000024426683,0.0124837225,0.0060087866,-0.028423777,0.013438762,0.013575196,0.011250131,0.0012705429,0.043840833,0.020067187,0.025399487,0.024762794,-0.018304912,0.0018105946,-0.044136442,0.022682175,0.01765685,0.0227845,0.006935402,-0.016815506,-0.004155556,-0.035927653,-0.020135405,0.032607757,-0.008589665,0.00086905697,0.015314731,0.03354006,0.008561241,0.017338505,-0.007418606,-0.0028850134,-0.03922481,0.04998037,0.036132306,0.028378299,0.026104396,-0.005539794,0.021499746,-0.010715764,-0.012915764,-0.01068734,0.010488374,-0.012620157,-0.044932306,0.019373646,0.0031777783,0.04486409,-0.0446367,-0.015451165,-0.00883411,-0.009959691,0.014996385,-0.01127287,0.025990702,-0.0022000005,0.025990702,-0.002536822,0.01254057,-0.007248063,-0.0138480645,-0.0139049115,0.014234628,-0.017452199,-0.04436383,0.047615513,0.0101188645,0.018964345,-0.010079072,0.0035956078,0.029151427,-0.019714732,0.007014988,-0.034722485,0.00837933,0.009556074,0.008873903,-0.048934374,0.03788321,0.016508529,0.0068615,0.04670595,0.0043545226,0.009135402,-0.027923519,-0.018896127,0.005193024,-0.02765065,-0.0009095609,0.0009045867,0.005906461,-0.0011568477,0.03185737,-0.03861086,0.009277521,0.011687857,0.004058915,-0.01955556,0.023171064,-0.005073644,0.02603618,-0.024035146,0.007856332,-0.023330236,0.0016229977,-0.025740573,-0.0003577843,0.06357831,-0.017872872,0.018020675,0.012927134,-0.0063612415,0.022261502,0.03974781,-0.018270804,-0.0047837216,-0.020340055,-0.005380621,0.011562793,0.012847547,-0.018509563,0.026354527,-0.022068221,-0.010454265,0.015508013,-0.03954316,0.005860983,-0.024444448,-0.0091979345,-0.009806203,0.022136437,-0.03206202,-0.04322688,0.01974884,0.022284241,0.0140981935,-0.07617572,0.013268219,0.0034108532,-0.025990702,-0.010152973,-0.007981396,0.026218092,0.0822243,0.044272874,-0.042681143,0.027491476,-0.04693334,0.040952977,0.0020678297,0.049616545,-0.006872869,0.022181915,0.03115246,0.012961242,-0.02908321,-0.029537989,0.016087858,0.02510388,0.081815,-0.009550389,0.01836176,-0.0039679594,-0.008663568,0.05784807,0.008225841,0.04629665,-0.017702328,0.0065033603,0.021295093,0.060258407,0.048525073,0.0077824304,-0.007350389,-0.0007169898,-0.030583985,0.0020507756,-0.029174166,-0.015758142,0.0190553,-0.016781397,0.03840621,0.0034080108,0.01207442,-0.007350389,-0.005832559,-0.002084884,-0.059894584,0.0069922493,-0.04072559,0.041271325,0.024421709,-0.028491994,0.011113697,-0.0043232567,-0.0021047806,-0.02351215,-0.011744705,0.009743671,0.001655685,0.035200007,-0.029947292,0.0135410875,-0.015974162,-0.021715766,-0.020521967,0.0015490958,-0.02439897,0.014837212,0.02694574,0.025376748,0.011102327,0.031402588,-0.02835556,0.0039395355,-0.017736437,0.02533127,0.030515768,0.036223263,-0.022034112,0.017850133,-0.0006860789,0.017077005,0.004189665,0.014564344,0.052890964,0.02417158,0.02351215,0.0012030364,-0.0012975454,-0.021272356,0.0010246772,-0.012040312,0.013200002,0.041453235,-0.019385016,0.03601861,-0.02553592,-0.0028764862,-0.01255194,-0.03840621,0.001647158,-0.030925069,-0.00061928306,0.008328167,0.011113697,0.0047382438,0.0028793286,0.0028565896,0.034222227,0.02417158,-0.010653231,0.0035984502,-0.025695095,-0.0111478055,0.00837933,-0.004800776,0.014109563,-0.019237213,-0.006560208,-0.0039679594,0.0162584,0.0055881147,-0.021340571,-0.00049066544,-0.0029475456,-0.024353493,0.04513696,-0.008345221,0.024217058,0.0009202198,0.01105685,0.023580365,0.0079757115,-0.051481146,0.0022923776,0.0055653756,-0.0022895352,0.03162998,-0.024467187,0.0018645998,0.012722483,-0.006003102,0.05784807,-0.00365814,-0.04270388,0.004965634,-0.025967963,-0.017247548,0.0042720935,0.026422743,-0.012097159,-0.062168486,-0.006509045,-0.015587599,0.04070285,0.0065374686,0.047342643,0.0053607244,-0.018691476,-0.0032488378,-0.016406205,-0.0042124037,0.0075436705,-0.0051134373,0.036837216,0.030174682,-0.008981913,0.027264087,-0.012210854,-0.033085275,0.028946774,0.012472354,-0.004093024,0.03606409,-0.021511115,-0.010386048,-0.012404136,0.008544187,0.024103364,0.03278967,0.019021193,0.022920934,-0.004741086,-0.019908013,0.009038761,0.015519382,0.033812925,0.004900259,0.0015178297,0.005656332,0.006315763,-0.02719587,0.026218092,-0.02926512,-0.0024785534,0.039861504,0.054437216,0.013131785,-0.031698197,0.0037832048,0.02093127,-0.0023065896,0.0060599493,0.010704394,0.030925069,0.009465118,0.022227393,-0.038042385,-0.017543156,-0.020658402,0.01000517,-0.028491994,0.028082691,0.0013572354,-0.014518865,0.027036697,0.005622223,0.004380104,0.026809307,-0.030538507,0.009237727,-0.000047831887,-0.008493025,-0.039020162,0.024376232,-0.021704396,-0.010152973,-0.01675866,-0.013438762,0.03695091,0.0071912156,-0.0027286827,0.0028466412,0.026559178,0.0008839795,0.00041747422,0.008493025,0.035654787,-0.017679589,0.00097635674,-0.03879277,0.014678039,0.042431016,-0.031766415,0.00365814,-0.001662791,0.0121767465,0.00811783,0.018987084,0.019441864,-0.00041711892,-0.02883308,0.038042385,0.002407494,0.017099744,0.032243934,-0.026081657,0.0018830752,-0.03044755,0.023625843,-0.004047546,-0.022886826,-0.023762278,-0.0002716247,0.012870287,-0.028719384,-0.0044056852,-0.022682175,0.012915764,0.015780881,0.00020358531,0.006656849,0.021647548,0.008441862,-0.009391216,-0.03351732,-0.0045705433,-0.023875972,-0.032857887,-0.00517597,-0.0012030364,0.01763411,-0.013313698,0.014518865,-0.0016087858,0.013359175,0.0019655041,0.02626357,-0.0353137,0.018952975,-0.01534884,-0.037724037,-0.013757108,0.008095092,-0.02392145,-0.002987339,0.0049627917,-0.0034819127,0.0071286834,-0.014018607,0.0005670544,0.013086307,0.008782947,0.01232455,0.017759176,0.001934238,-0.009209304,0.022966413,-0.0021772613,0.04302223,0.025467705,-0.045614477,-0.013870804,0.018873388,0.01699742,0.01953282,0.021863569,0.0026874682,0.018429978,0.009942637,-0.020419642,0.013882173,0.0027272615,-0.0025311373,-0.00092093035,0.020465119,-0.049707502,-0.009868735,-0.012392767,-0.014018607,-0.0012648581,-0.025285792,0.014916798,0.0017466411,-0.023171064,-0.039361246,0.024080625,-0.009294575,0.0162584,0.03231215,-0.0343814,0.010403102,0.010266668,-0.045728173,-0.024421709,0.03208476,0.0031323002,0.01766822,-0.0055653756,0.0073105954,-0.016917832,0.009988115,0.01929406,-0.0052640834,0.022602588,-0.005826874,0.04042998,0.028651167,-0.013188632,0.048843417,-0.021943156,0.0074697686,0.03786047,-0.016315248,0.0035643417,0.0072423783,0.017247548,0.023534888,0.0075379857,0.0020976746,-0.020044448,0.013427393,-0.005357882,-0.016588116,-0.0040987087,-0.006253231,0.0055369516,-0.030811375,-0.024512665,0.0017239021,-0.03276693,0.01699742,-0.045296133,0.013359175,-0.014064085,0.007350389,0.010010854,-0.021556593,0.000701712,-0.010982947,-0.0066113705,-0.01837313,-0.029719902,0.022204654,0.0051276493,0.019680623,0.04190802,0.01974884,-0.007668735,0.03133437,-0.011892509,0.0039338507,0.03999794,-0.019623775,0.009612922,-0.0019470288,-0.010465635,-0.003970802,-0.012358658,0.049389154,0.022147806,0.009629976,0.0016087858,0.036814477,0.02605892,0.0017366927,0.0010317831,-0.008038244,-0.009544704,-0.008180363,0.035904914,0.022932304,-0.02414884,-0.0063328175,0.020055817,0.0052100783,0.0066113705,-0.0010502585,0.031016026,-0.0154056875,-0.005221448,0.010982947,-0.033380885,-0.011216022,0.014109563,0.017872872,0.012006204,0.0071229986,0.022841347,0.0030726104,0.03399484,0.033153493,-0.03745117,-0.0012023258,-0.0006647611,-0.02949251,0.005229975,0.018282173,0.00032260988,-0.009260466,0.015917316,-0.011022741,0.029719902,0.0028651168,-0.004462533,-0.032903366,-0.033858404,-0.016087858,-0.020567445,0.009158141,-0.014985016,0.022602588,-0.0067534894,-0.012824808,0.0099938,0.017270287,0.009089924,0.025217576,-0.0016272613,-0.00046188637,0.009698193,0.0061679594,-0.02489923,0.0037007758,0.013165894,-0.008896642,-0.011096642,0.013825325,-0.025240313,-0.0042180885,-0.020806205,-0.014882689,-0.028401038,-0.00918088,-0.01815711,-0.015974162,0.01207442,-0.017361242,-0.0062646004,0.0019981915,0.0034506465,0.01184703,-0.03463153,-0.003535918,0.04022533,0.009038761,-0.004252197,-0.004547804,-0.020647032,0.03949768,0.009556074,0.00049599493,0.0004583334,-0.015837729,0.0042919903,0.028742123,-0.012506462,-0.016508529,-0.004311887,0.006486306,-0.011881139,-0.017486308,-0.000033464556,-0.011812922,-0.015644448,-0.021226877,-0.011824291,-0.00564212,0.028901296,-0.06380569,-0.002784109,-0.001079393,0.0321075,-0.024853751,-0.024808273,-0.009931268,-0.012506462,0.03747391,0.043295097,-0.027150393,0.034313183,-0.03806512,-0.0052640834,-0.0470243,0.004846254,0.02346667,-0.012142638,-0.031743675,-0.012688374,0.023136955,0.0014709305,-0.02533127,0.011216022,0.021192769,-0.018623259,-0.026786568,0.03877003,0.0055056857,-0.013074937,0.030379333,-0.015553491,0.005974678,0.016860984,0.035177268,0.02394419,0.03831525,0.0033540057,-0.003942378,-0.051026367,0.008936436,0.021431528,0.007896125,0.05580156,0.007873386,0.0040532304,0.00044021325,0.0021090442,-0.011073903,-0.029128687,0.01699742,-0.004010595,0.02137468,0.03861086,0.0058894064,0.0026064604,0.018714216,-0.0032602071,-0.013006721,-0.000083317194,0.013995868,-0.015144189,-0.030379333,0.0036609825,-0.011972095,0.00107584,0.015678555,0.019146256,-0.003928166,-0.010107495,0.011085273,-0.006906978,0.023625843,0.016565377,-0.03674626,-0.0139049115,-0.014757625,0.003189148,0.006412404,-0.04670595,0.020351425,0.007896125,-0.00836796,-0.0040844968,-0.016394835,-0.008998968,-0.007020673,0.022159176,0.03992972,0.0017366927,-0.011733335,0.002400388,-0.030356593,-0.005724549,0.0022852717,0.042612925,-0.01581499,-0.011631009,-0.011113697,-0.00042813315,-0.024421709,-0.004078812,0.019669253,-0.02045375,-0.0077540064,-0.015542122,-0.004417055,0.028446516,0.037996907,0.012256333,0.051481146,0.010744188,-0.018850649,-0.01186977,0.0070547815,0.0010943154,0.007879071,0.0021161502,0.0015732561,-0.02949251,0.0042038765,0.025763312,-0.037291996,-0.00026469643,0.022818608,-0.015996901,0.014996385,-0.011096642,-0.00010587857,-0.018498193,-0.024762794,0.011324033,-0.018555041,-0.024126101,-0.029469771,0.0053948327,-0.012415506,0.0058894064,-0.009692508,-0.011358141,0.02417158,0.014598452,0.0032687343,0.00014496126,0.058257375,0.033085275,-0.0074242908,-0.000622836,0.000015766314,-0.034085795,0.03465427,-0.0020365636,0.01079535,0.008544187,0.025854267,0.022159176,-0.026650133,0.017816024,-0.036837216,-0.0071002594,-0.00046828174,0.027696129,-0.0162584,0.045569,-0.035518352,-0.018191217,-0.023125585,-0.052618098,-0.0030754528,-0.040088896,0.024239797,0.0057614995,-0.007213955,-0.0059576235,-0.0040901816,-0.029333338,0.014837212,0.011767444,0.03206202,-0.06016745,-0.011130751,0.009237727,0.011665118,-0.009118347,-0.014814473,-0.034563314,-0.025945224,0.022670805,-0.0013451553,0.041726105,0.0135410875,0.017327135,0.0023662795,-0.0029333339,0.007071836,0.028514734,-0.034290444,0.032425843,-0.00061679597,-0.0027926362,0.0030385018,-0.01742946,-0.0007688632,-0.015667185,0.006179329,-0.024012407,-0.011574162,0.0116764875,-0.025626877,0.0044426364,-0.0039594322,-0.0048576235,-0.035450134,0.019612405,0.018941605]},{"id":"interface-AttachmentPayload","type":"interface","source":"main","text":"Interface: AttachmentPayload\nProperties: data: any, filename: string, name: string","meta":{"url":"/docs/typedefs/AttachmentPayload"},"embedding":[-0.008722711,0.02177439,0.017456219,0.004083373,-0.0073786797,-0.012857363,-0.0006696543,-0.008544587,0.029018128,-0.04024538,0.027441995,0.009311062,0.07004078,-0.061447613,-0.013375543,-0.0079886215,0.011507933,0.044434007,-0.011410775,0.019895986,0.016085198,-0.010881798,0.029147673,0.015189176,0.009489187,-0.010563333,-0.025434043,0.03251585,0.010649696,-0.020403372,0.045815825,-0.040526062,0.07958394,0.029730627,0.009294869,0.029493127,0.031414714,0.036898796,-0.04741355,-0.020727234,-0.03873402,0.005748569,0.004258799,0.013073271,-0.015156791,0.03258062,-0.0031036874,0.049097635,-0.008528394,0.037373796,0.016452242,0.012296,0.0035975785,0.04395901,-0.0009567454,-0.0013588753,-0.0032818122,0.050522633,-0.016171562,-0.0069792485,-0.027981767,-0.0067201583,-0.0011260988,0.022087459,-0.0013278384,-0.00051413255,-0.04568628,0.04525446,0.035452206,0.041562423,0.088781655,0.035171527,-0.024894273,0.04568628,-0.0039646234,-0.01664656,-0.025520407,-0.01926985,0.014973268,-0.05786353,-0.007432657,0.057258986,-0.042426057,-0.06421124,-0.02385791,0.005996864,-0.05661126,-0.02071644,-0.024440864,0.009597141,-0.023901092,-0.0037136294,-0.06257034,-0.017272696,-0.015642585,-0.0034086586,-0.019658487,-0.015448267,-0.02882381,0.030961307,0.005689194,-0.012749408,-0.04793173,-0.011961342,-0.0049739964,-0.03052949,0.014994859,0.0099965725,-0.0064394767,-0.018794851,-0.04199424,0.021137461,0.022087459,0.031652216,-0.006450272,-0.00950538,-0.02731245,0.03378971,0.046506733,-0.028499948,0.0070386236,0.0092840735,0.0039079473,-0.0022616435,0.007427259,0.0027744267,-0.024959045,0.018589739,-0.06421124,-0.018417012,0.041087423,-0.010207083,-0.008668734,-0.0012455232,-0.02608177,-0.023188593,-0.00084271864,0.008954813,-0.03974879,-0.023123821,0.020263031,-0.01763974,0.05410672,-0.0023223679,-0.0041994243,0.053243082,-0.023037458,0.08118167,-0.025131771,0.011497138,-0.012652249,0.026016997,-0.026945405,0.021644846,0.04225333,-0.033249937,0.0039997087,-0.005017178,-0.04072038,-0.019928372,0.024484046,-0.04251242,-0.00702243,-0.022692004,0.010671287,0.017067581,0.054840807,-0.029903354,-0.039403338,-0.00015687116,-0.004029396,-0.03828061,-0.024203364,0.0010377112,-0.03622948,0.013235203,0.052379448,-0.018201103,-0.027938584,0.011016741,0.035668116,0.010315037,-0.03158744,-0.044822644,0.0049362127,0.0052843653,0.0050846497,0.06110216,-0.00069765496,0.025261316,0.002106459,0.01934542,0.0024235751,-0.017110763,0.00919771,-0.0013217661,-0.00027764507,0.023210185,-0.021526096,-0.025563588,0.013645429,0.009661914,0.046636276,-0.015739745,-0.046118096,0.011367593,-0.049313545,0.0018082353,-0.037891977,-0.045599915,0.033573803,-0.0009911559,-0.005592035,0.008614757,-0.0046096505,-0.0046366393,0.033185165,0.036143117,0.005195303,-0.011821001,-0.005152121,0.028629493,0.07556804,-0.06598169,0.011853388,0.0036029762,-0.062268067,-0.018449398,-0.0022872826,-0.084636204,-0.046334006,0.05069536,0.0029741423,-0.022098254,-0.011227252,0.009942595,0.0024276234,-0.02061928,-0.002194172,0.024224956,-0.00047331234,-0.03894993,-0.014347132,0.021828368,0.005017178,0.024721546,-0.0011854736,0.014681791,0.03258062,0.011097707,0.051558997,-0.0082747005,0.017952807,-0.035732888,0.009796857,-0.03236471,-0.063736245,0.020770416,0.030356763,0.034243118,0.025995407,-0.02783063,-0.011605092,0.0295579,-0.003978118,-0.024721546,0.021882346,0.033163574,-0.013980088,-0.005214195,0.011713047,-0.021072688,0.028456766,0.0063639088,-0.04197265,0.013418725,-0.024289727,-0.035732888,-0.016301107,0.018168716,-0.01952894,-0.012922135,-0.06632715,0.05544535,-0.05492717,0.010196288,0.018643716,0.03504198,0.01622554,-0.00276633,0.030227218,-0.021126665,0.055877168,-0.06870215,0.0029957332,0.013720998,0.0061587957,-0.019874396,0.04076356,-0.025563588,0.016452242,-0.05363172,0.014811336,-0.043311283,-0.022260185,-0.01813633,0.004466611,0.026729496,-0.0055758418,-0.03659652,-0.0068065217,-0.029860172,-0.0650317,-0.014800541,-0.06507488,0.019377805,0.028003357,0.030745398,-0.041130606,0.04922718,0.0075891907,0.002262993,0.0021617857,-0.073711224,0.0025423248,0.020522121,-0.034178346,0.010714469,-0.005980671,0.06295898,0.006207375,-0.008296291,-0.006698567,-0.0019634196,0.048838545,-0.00086768303,-0.02236814,0.034351073,-0.03607834,0.03674766,-0.018838033,-0.019464169,-0.011389184,-0.002863489,0.0016206646,-0.021990301,-0.0057053873,0.03329312,-0.04225333,-0.010180095,-0.028974947,0.013278385,-0.060670342,0.02461359,-0.03296926,-0.010520151,0.005673001,-0.06481579,-0.03797834,-0.017974399,-0.017628945,0.021536892,0.021450529,0.028931765,-0.026254497,-0.0018689596,-0.035063572,-0.009095154,0.00253018,-0.05889989,0.05617944,0.020586893,-0.027549949,0.017510194,0.0019796127,-0.016398266,0.010336628,0.01328918,-0.011723842,-0.0048741386,0.043829463,0.074445315,-0.0053923195,0.017790876,0.009915607,-0.0121556595,-0.052293085,0.013084067,-0.025541998,0.017035196,0.016840879,0.025649952,-0.067233965,-0.010611912,-0.035624932,0.017197127,0.023490865,0.015145995,-0.008657939,-0.04272833,0.034113575,-0.00083597144,-0.012965317,0.00003643459,0.014206792,-0.023015866,0.010126118,-0.00027224736,0.09076802,-0.03407039,0.007097998,0.007934645,0.029363582,0.017574968,0.05989307,-0.01191816,-0.008161348,-0.009964186,-0.022929503,0.024117,-0.012339182,0.020036327,-0.032602213,0.018708488,-0.0067201583,0.011119298,0.075179406,-0.030961307,0.0073732818,-0.046334006,-0.008226121,0.02830563,0.019895986,-0.0039862143,0.025153363,-0.0560499,0.0014007076,0.0016449543,-0.03843175,0.021536892,0.009753675,-0.027226087,0.006131807,0.05095445,-0.016452242,-0.030831762,-0.0101423105,0.008755097,-0.015437472,-0.0043289694,-0.057561256,0.049659,-0.043980602,-0.0031360737,0.020910757,0.012976113,-0.049313545,-0.030939715,0.037740838,-0.014411905,-0.0009526971,-0.01317043,0.02437609,0.025930634,0.0050036837,-0.033832893,-0.0120585,-0.013224407,-0.019928372,0.0011476896,0.02284314,0.029471537,-0.02882381,0.0134511115,-0.014584633,-0.041087423,0.015178381,-0.034372665,-0.0120153185,-0.0071357824,0.009661914,0.011389184,-0.025261316,-0.0057377736,-0.010671287,0.13239521,0.07967031,0.014109633,0.027247677,-0.028715856,-0.02560677,-0.010655094,0.05859762,-0.008522996,-0.009645721,-0.006083227,0.029687446,-0.069608964,0.0005630494,-0.003092892,0.049486272,-0.041843105,0.04419651,-0.03271017,0.018244285,-0.007173566,-0.025520407,-0.003978118,-0.035689708,-0.013094862,0.035732888,0.017823262,0.0047958717,-0.017186332,-0.046593096,0.011961342,-0.026405632,0.030119263,-0.030637443,0.0032980053,-0.013472702,-0.0027798244,0.032623805,0.00023716221,-0.029018128,-0.029773809,-0.022929503,-0.048622638,-0.014649405,-0.035085164,0.061145343,-0.016160766,-0.03052949,-0.012004524,-0.021159051,0.00477698,0.014066451,-0.053199902,0.0035651922,0.021245414,-0.037157886,0.005635217,0.0021901238,0.025390862,-0.0127278175,0.0399647,-0.0053140526,0.002963347,0.005135928,0.0127278175,-0.027420403,-0.03081017,0.039576065,-0.013062476,0.013494293,0.031565852,0.0077025425,-0.0065636244,-0.004083373,-0.0042480035,0.005251979,-0.005100843,0.0430306,-0.033660166,0.011907364,0.06464306,0.023296548,-0.06032489,0.02383632,-0.024289727,0.01279259,0.015383494,-0.003055108,0.027226087,0.01716474,0.019539736,-0.03776243,-0.008269303,-0.011356797,-0.03629425,0.0003085133,-0.002350706,-0.035927206,0.023188593,0.014303951,0.01305168,0.039036293,-0.04298742,0.0025652652,-0.0045934576,0.02038178,-0.02170962,0.030227218,-0.008290893,0.007767315,-0.0042561,0.025801089,0.025671544,0.0038863565,0.019518146,-0.0027636313,0.016398266,-0.023555638,-0.00553266,0.033940848,0.03603516,0.015545426,-0.015383494,-0.014876109,0.031824943,0.0020875672,0.026621541,-0.04322492,-0.07112032,-0.00020814947,-0.0016773406,-0.0057053873,0.026189724,-0.027441995,-0.031501077,-0.004102265,0.015145995,-0.025282908,0.039705608,-0.03029199,-0.01825508,-0.027161313,-0.015599403,-0.011227252,-0.013235203,0.011853388,0.011076116,-0.025628362,-0.008576972,0.0039619245,0.0075783953,0.017045991,0.019442577,-0.021126665,0.0067741354,-0.026016997,0.047802184,0.05311354,-0.003589482,0.050349906,0.0018163319,-0.028348811,0.0067201583,0.006569022,0.01863292,-0.032213576,-0.012134069,0.01873008,0.017186332,0.029234037,-0.039381746,-0.010692878,0.039338563,-0.023793139,0.02759313,0.008755097,-0.006050841,0.00297954,-0.01988519,-0.014152815,-0.007173566,0.015815312,-0.024052229,-0.021439733,0.030486308,0.012641454,0.047888547,0.029924944,0.003149568,-0.012360773,-0.046809003,0.029730627,0.0038647656,-0.016614174,0.02532609,-0.018179512,-0.011939751,-0.0435056,-0.042339694,0.0006669554,-0.0058889096,-0.0025072396,0.015728949,0.0104337875,0.014703382,0.010844014,-0.007481236,-0.026427224,-0.004833656,0.025239727,0.06282943,0.024117,0.015782926,0.026491996,-0.013008499,-0.007994019,-0.01898917,-0.025434043,0.01366702,-0.0036164706,-0.010692878,0.012684636,-0.0028877787,0.028996537,-0.012047705,-0.017488604,0.021191439,-0.023274956,0.0043856455,0.005597433,0.016193151,-0.019215874,0.042534012,-0.010563333,0.036164705,0.026902223,-0.014735769,-0.01622554,0.0085122,0.013397134,0.00900879,0.029622672,0.025002226,0.0010039754,-0.0023695978,0.021526096,-0.016463038,-0.012242023,0.003338488,-0.018816443,0.024332909,0.0078104967,-0.0033681756,-0.0107198665,0.047629457,0.039705608,0.02024144,0.023123821,0.013105658,0.016117584,-0.018103944,-0.02655677,0.016689742,-0.014260769,-0.005381524,0.008641745,0.0033897664,-0.011702251,-0.0059914663,-0.0058349324,0.009014188,0.0078374855,0.0046150484,-0.030486308,0.0065150447,-0.0024087313,0.0075676,-0.009721288,0.002596302,-0.013224407,0.0028661878,-0.018147126,-0.013321566,0.033703346,-0.010061345,-0.0073301,-0.0053950185,-0.0248295,0.033897664,0.028003357,-0.028327221,-0.009640323,-0.025045408,-0.03679084,0.019723259,0.026902223,-0.018190308,0.017736899,-0.018967578,0.023965865,-0.013483498,-0.044822644,0.0014695285,-0.024980636,-0.022217004,-0.03206244,0.027787449,-0.015027245,-0.028521538,0.036164705,0.031004488,-0.01640906,-0.071465775,-0.003511215,0.02024144,-0.017391445,-0.010795435,-0.009985777,0.021795982,0.038388565,0.0061803865,-0.055747624,0.01586929,0.0033897664,0.018665306,-0.012717022,0.041648787,-0.0078050992,0.03556016,-0.0018838033,0.013807361,0.008684928,-0.0125874765,0.010174697,-0.003171159,0.04542719,0.007173566,0.016063606,-0.010606514,0.0049335137,0.061447613,-0.022324959,0.029968126,-0.0022494986,-0.0045151906,0.024592,0.060670342,0.017369855,-0.019097123,0.0011166527,0.005980671,-0.002561217,-0.016981218,-0.012263614,-0.002225209,0.029428355,0.00006709194,0.038107883,0.021169847,0.04244765,-0.0010606515,-0.00080021156,-0.007481236,-0.06278625,0.026405632,-0.03601357,0.014239178,-0.028759038,-0.014390314,0.008576972,-0.0052789673,-0.03478289,-0.017963603,-0.012198841,0.001350104,0.011475547,0.034243118,-0.04741355,0.017952807,-0.017402241,0.018330649,-0.014411905,0.007713338,0.026189724,0.025865862,0.032494258,0.006282943,0.017542582,-0.016970424,-0.023944274,-0.009845437,-0.010417595,0.028327221,0.0073408955,0.050263543,0.008166746,-0.024332909,0.037373796,-0.008290893,0.01563179,0.009240892,0.017726103,0.029968126,0.018999964,-0.012684636,-0.0018730079,-0.029277219,0.021029506,0.042685147,-0.012576682,0.02177439,-0.02196871,0.002615194,-0.012144864,-0.024117,0.00056169997,-0.056524895,-0.015977243,-0.032796532,0.012511909,0.015081222,0.029989718,-0.004984792,-0.02480791,-0.023318138,0.015718153,-0.004774281,-0.039403338,0.04987491,0.00032639323,0.01839542,-0.012371568,-0.0025288307,0.023253366,0.011238048,-0.010741457,0.006191182,0.029190855,0.0024397683,-0.021428937,-0.02336132,-0.0063099316,-0.017240308,0.0039457316,-0.020306213,-0.0024883477,0.009742879,-0.014357928,0.030918125,0.0054759844,-0.08191576,-0.007276123,0.020349395,0.022907913,-0.004391043,-0.0073786797,0.03376812,0.02759313,-0.0019202379,0.02808972,0.018784055,-0.064686246,-0.002078121,0.00039538278,-0.042274922,-0.023642002,-0.008733506,0.034243118,-0.06339079,-0.0008184289,0.00057856785,0.06347716,-0.016786901,-0.013688611,0.0065636244,-0.03104767,-0.00158423,-0.04225333,-0.052336268,-0.0024357198,-0.0032899086,0.01926985,0.0065042493,0.018740874,0.03674766,-0.040849924,-0.006736351,0.030723806,0.015728949,-0.033573803,0.027441995,-0.0047688833,0.007195157,-0.006649988,0.0032035452,0.020943142,0.051343087,0.025693133,-0.009888618,-0.0063693062,0.0058133416,-0.009904811,-0.009203108,0.039101064,0.001269813,-0.0047095083,-0.015480653,-0.00024880102,-0.021245414,-0.018827237,-0.016538605,-0.011713047,0.048795365,0.020101098,0.035473797,-0.016538605,0.03525789,0.024268137,-0.008469018,0.017240308,-0.0057593645,0.017056787,0.029622672,0.019053942,-0.03603516,0.01803917,-0.029169265,0.030874943,-0.036164705,0.014347132,-0.029946536,-0.021817574,-0.008155951,0.0104229925,0.013375543,0.03525789,-0.028219266,0.0016786901,0.019194283,0.0074380543,-0.019464169,0.0095701525,0.0026799666,0.024246546,0.010676685,-0.007616179,0.048277184,0.011173274,-0.0038242827,-0.0036164706,0.033660166,0.00626675,0.0036137716,-0.0004672399,0.016635764,-0.010401402,-0.01577213,-0.038712427,0.010649696,0.02213064,-0.015847698,0.009305664,0.0022859334,0.010331231,0.014152815,-0.01097356,0.022713594,-0.014930086,-0.00074286084,0.029903354,-0.028780628,0.04363515,0.008971007,0.03052949,0.0044207303,-0.03130676,0.006676976,0.018568147,-0.018643716,0.018719284,0.028845401,-0.00023378863,0.01352668,0.0095701525,-0.014444292,0.022864731,0.005308655,0.024851091,0.029385174,0.009159926,0.020705644,0.026146542,-0.044563554,0.002064627,0.0011901967,-0.030205626,-0.006417886,-0.01314884,-0.023987455,0.0014452388,-0.0043451623,0.021007916,0.008668734,0.008420439,0.014444292,-0.03283971,0.017823262,0.0073247026,-0.04348401,-0.006212773,0.0012428244,-0.0134511115,-0.026621541,0.008960211,-0.0056460123,0.01934542,-0.022195414,0.011464751,0.022778368,-0.00076512643,-0.010109925,0.004836355,-0.023231775,-0.021450529,-0.005346439,-0.00602925,0.015351108,0.021461325,-0.023793139,-0.018902807,-0.017682921,0.012447136,0.0072437366,-0.011745432,0.002558518,-0.0060076592,0.009607937,0.017682921,0.010833219,-0.0039403336,-0.007535213,-0.024592,0.041346513,-0.048536275,-0.0023048252,0.016020425,0.0151352,0.014714178,-0.03106926,0.006148,-0.0013190672,-0.0032008463,-0.019712463,-0.010396004,-0.016873265,0.018557353,0.015102813,-0.002844597,0.00366505,0.0033519825,-0.0070602144,-0.020889167,0.02308064,-0.011032934,-0.00955396,0.004140049,0.0067741354,-0.0045124916,0.020349395,0.008841461,-0.005516467,0.025045408,0.014832927,0.0025882055,0.027938584,0.001898647,0.030745398,0.0041886284,-0.007891463,0.0174994,0.0068065217,-0.0073193046,0.015307927,0.012328386,-0.0016530509,-0.009235495,-0.0039970097,-0.017153945,0.013602247,0.0054382,-0.052120358,-0.010827821,-0.009705096,0.010520151,0.0070062373,0.014325541,-0.011874978,-0.03005449,-0.0005593384,-0.062699884,-0.00020342648,0.0021860756,0.03620789,0.0013588753,-0.0034788288,-0.014519859,-0.009634925,-0.034178346,-0.026707904,0.0049227183,-0.00832328,-0.0054759844,0.008447427,0.04195106,-0.03225676,-0.024289727,0.04328969,-0.0031090851,-0.01023947,0.012717022,-0.031868123,-0.0077565196,-0.0008845509,0.010174697,0.0002830428,-0.0014195996,0.066111244,0.049443092,0.0007975127,0.006207375,0.051602177,0.03927379,0.012824976,0.01142157,0.01626872,-0.0108602075,0.0005802546,0.008647143,0.010741457,-0.036661297,-0.033185165,0.023167003,-0.015998835,-0.026384043,-0.005619024,0.06861578,-0.03795675,0.0030335172,-0.008101974,-0.016797697,-0.013602247,0.03378971,0.02759313,0.0042237137,0.011756228,0.025239727,0.025412453,0.045815825,0.027960176,-0.034394253,-0.04935673,-0.018060762,-0.0006342318,0.015307927,0.0041724355,-0.0047203037,-0.009796857,-0.01061731,-0.00031121215,0.014984063,0.00234126,-0.007270725,-0.0033061018,-0.021979505,0.001241475,-0.040353335,-0.0014587331,-0.052508995,0.0134511115,-0.0035948798,-0.01586929,0.03778402,0.00009673722,-0.010908787,0.01605281,0.018784055,0.02036019,0.012036909,0.033919256,-0.0038863565,0.009230097,0.03029199,0.021342574,0.0015896277,0.0071303844,-0.0141744055,0.022519277,-0.023059048,-0.02957949,-0.038712427,-0.006855101,-0.015815312,-0.0025220835,0.0027339438,-0.014984063,0.031177215,0.027916994,0.0041184584,-0.002523433,-0.008339473,0.005511069,0.014152815,-0.007994019,-0.010763048,0.009095154,-0.003130676,0.03471812,0.018103944,0.027636312,-0.000997903,-0.018805647,0.0070764073,0.020673256,-0.022260185,-0.048709,-0.003014625,0.0015693863,-0.008307087,-0.0094244145,-0.015912471,-0.0063639088,-0.023490865,-0.024548817,-0.019593714,0.0051602176,0.014347132,-0.042685147,-0.0039187428,-0.0011341954,0.018006785,-0.046247642,-0.041778333,-0.003227835,-0.007200555,0.015858494,0.036574934,-0.033141986,0.035624932,-0.030421535,-0.000983734,-0.033509027,-0.010611912,0.020532917,-0.015124404,-0.026643133,-0.0058295345,0.026470406,-0.0104337875,-0.022648823,0.03804311,0.03724425,-0.02357723,-0.01664656,0.0074434523,0.030982897,-0.036423795,0.053329445,-0.032623805,-0.0040698787,0.00046858934,0.010126118,-0.0014169008,0.007875269,-0.0055083707,-0.0019634196,-0.042555604,-0.001929684,0.022217004,0.009408222,0.01960451,-0.0072599296,-0.0052627744,-0.003934936,-0.009807653,0.042037424,0.012760203,0.0038431748,0.004574565,0.03620789,0.016722128,-0.02161246,0.01950735,0.013904519,-0.012965317,0.009435209,0.013429521,0.0092786765,-0.021644846,-0.028003357,-0.00059206213,-0.03005449,-0.005861921,-0.024246546,0.013030089,0.013720998,-0.019852804,-0.018406216,-0.004393742,0.01829826,0.02733404,-0.025714725,-0.032386303,0.00015282287,0.02705336,0.007465043,-0.016894855,-0.0033843687,-0.0029039718,-0.0081235645,0.01837383,-0.015286336,-0.019291442,0.0046096505,0.028154494,0.03622948,-0.004884934,0.00014017198,0.0053572343,-0.0035813854,-0.00248295,-0.024743136,-0.001669244,-0.009899413,-0.0013237902,-0.00837186,0.0050036837,-0.022713594,-0.02123462,0.02534768,-0.018827237,0.0037244249,-0.031457897,-0.0082747005,0.04551355,0.048579454,0.01305168,0.040137425,0.017337468,-0.03873402,0.00026735567,0.019712463,0.0022333055,0.022055073,-0.023922684,-0.004026697,-0.022281777,-0.0009999272,0.020068713,-0.031349942,0.012932931,-0.020446554,-0.0055488534,0.008366462,0.00595908,-0.0007550057,-0.022584049,-0.017045991,0.014066451,-0.025995407,0.012425546,-0.04197265,0.003511215,-0.008760495,0.018935192,-0.0021982205,0.025563588,0.027031768,0.025174953,-0.033163574,0.017628945,0.039813563,0.023296548,-0.009715891,-0.025757907,-0.007923849,-0.011173274,0.0047284,-0.018870419,0.004528685,0.027916994,0.04547037,0.031673804,-0.007459645,0.025865862,-0.00037885227,-0.023749957,-0.004507094,0.03730902,-0.0107198665,0.04074197,-0.019615306,-0.016549401,0.004029396,-0.023706775,-0.0038404758,-0.030313581,0.017294286,0.023015866,0.010951969,-0.002480251,-0.0089871995,-0.04102265,0.02534768,0.029449945,0.017726103,-0.012749408,-0.008668734,0.008911631,-0.0046906164,0.01735906,0.001936431,-0.030659035,-0.014638609,0.02125621,-0.018827237,0.029514719,0.0048444513,-0.005046866,-0.0037595101,-0.0012185347,0.012231227,0.03821584,-0.020165872,0.022713594,-0.025002226,-0.017769285,0.009305664,-0.020511325,-0.02582268,-0.0217528,0.033422664,-0.00043654037,0.0012785842,0.006930669,-0.055963535,0.027701085,0.004779679,-0.0014722274,-0.022087459,0.025520407,0.014962472]},{"id":"interface-AttachmentPayloadOptions","type":"interface","source":"main","text":"Interface: AttachmentPayloadOptions\nDescription: Builder for message attachment metadata (filename, description, spoiler).\nActual file data is passed separately when sending (e.g. FormData).\nProperties: description: string, name: string, spoiler: boolean","meta":{"url":"/docs/typedefs/AttachmentPayloadOptions"},"embedding":[0.010607848,0.023117354,-0.020843863,0.02201248,-0.051079154,-0.03344367,0.0013465646,-0.030235289,0.012323589,-0.009253316,-0.020790745,-0.01502203,0.00569966,-0.0331887,-0.020567646,-0.0012210711,0.016126905,0.029980319,0.0040078224,0.040689092,0.0066982955,0.012961016,0.041623984,0.007627877,-0.011356825,-0.03694952,0.0026453221,0.04963432,-0.0010424588,-0.018517256,0.033571158,-0.02568831,0.07967838,0.026771935,-0.0152663775,0.027048154,0.03686453,0.014809554,-0.011973004,-0.026708193,-0.041900203,0.0059599425,-0.0003039398,0.020727003,-0.01162242,0.07360157,0.029406633,0.03588714,0.0024700298,0.007303851,-0.004318568,0.010028852,-0.0031765113,0.07997584,-0.0016626222,-0.021300687,-0.039371744,0.018623494,0.0031074567,0.014076513,-0.034081098,-0.0060608685,-0.036375836,0.00746852,-0.026283242,-0.01100624,-0.07292165,0.07415401,0.010645031,0.050101765,0.07963588,-0.0050489535,-0.018262284,0.058048356,0.0072082374,-0.028599225,-0.024158483,0.009444544,0.014745812,-0.030596497,-0.03004406,0.05379884,-0.03038402,-0.047934514,-0.054308783,0.010533482,-0.030065307,0.0017994033,-0.03153139,0.0055243676,-0.027791819,-0.0106556555,-0.05571112,-0.033358682,0.023733532,0.006932019,-0.024370959,-0.013088502,0.0054234415,0.02698441,0.005022394,-0.024052246,-0.058770772,-0.02332983,0.021863747,-0.027961798,-0.019526515,0.023138601,0.023287334,0.01288665,-0.04665966,0.021746885,-0.013959652,0.024498446,-0.011590548,-0.052991435,0.02821677,0.035440944,0.028280511,-0.02611326,-0.018602245,-0.03469728,0.016434994,-0.0009900038,-0.019122811,0.0025324444,-0.013215987,0.012961016,-0.03153139,0.013460334,0.02689942,0.019080315,0.03852184,-0.024328465,0.0034952248,-0.0013625002,-0.009959797,0.0062308493,-0.013247859,-0.032083828,0.02821677,-0.007224173,0.035313457,-0.009864183,-0.032636262,0.016764332,-0.01002354,0.035674665,-0.021066964,0.0065920576,-0.014193375,0.046829637,-0.034824762,0.03694952,0.018400393,-0.026049517,0.0077075553,0.0016280948,-0.036120865,-0.020344546,0.02296862,-0.02013207,-0.0037475398,-0.04202769,-0.0065601864,-0.02383977,0.0628928,-0.008127195,-0.041432757,0.021566281,0.02689942,-0.046787143,-0.015223882,0.010405996,-0.018740354,0.009694203,0.027579343,-0.06255284,-0.0082121845,-0.00030211385,0.04759455,0.038033146,-0.03858558,-0.022246202,-0.02543334,0.013354097,0.012121737,0.03703451,0.010889378,0.0053623547,-0.025008388,0.009901366,0.019016573,-0.026325736,0.0036811412,-0.02243743,-0.011856142,0.009147078,-0.02153441,-0.024583437,0.054181296,0.019101564,0.024222227,-0.004958651,-0.024987139,0.022267452,0.008684943,-0.0071444944,-0.027451858,-0.03722574,0.028790453,-0.021863747,0.01816667,-0.0017409725,0.019632753,0.004963963,0.00766506,0.04742457,0.008052828,-0.020429537,-0.023521056,0.023096105,0.06590995,-0.037841916,-0.011208092,-0.011548053,-0.034994744,-0.0056252936,-0.050611705,-0.0015922396,-0.034059852,0.019409653,-0.0068789,-0.031892598,-0.014129632,0.0034739773,-0.0053278278,-0.04272886,0.014745812,-0.0257733,0.026198251,-0.015988795,0.004177803,0.03374114,-0.011739281,0.014671446,-0.0010683542,0.01367281,0.0132797295,0.018198542,0.04619221,-0.0071444944,0.018570375,-0.028577978,0.010427244,-0.009635772,-0.041900203,0.0018737699,0.04733958,-0.0064698844,0.025050882,-0.058813266,-0.015234506,0.011186845,-0.00421233,0.017051173,0.059195723,0.036375836,0.003882993,-0.015531972,0.028280511,0.008684943,0.004480581,0.050271746,-0.012472322,0.03911677,-0.018570375,-0.02917291,-0.028620474,0.005550927,0.0025244767,-0.02507213,-0.024413455,0.03773568,-0.0375657,-0.005051609,0.049761802,0.02330858,0.04315381,0.038564336,0.04436492,-0.028025541,0.062340364,-0.03248753,-0.01842164,0.028684216,0.014862673,-0.042898837,0.06421015,0.010788453,0.000005011023,-0.03012905,0.065230034,-0.026559459,-0.0048471014,-0.048316967,-0.0045443233,-0.0073144753,-0.016530607,-0.039626714,0.00039473997,-0.032848738,-0.052608978,-0.0014129633,-0.030617746,0.008111259,-0.005396882,0.01633938,-0.020769497,0.030107804,0.026559459,0.031913847,-0.022203708,-0.0864776,0.008121883,-0.015553219,-0.0079200305,-0.018177293,0.012036747,0.06879962,-0.0030862093,-0.0011560004,-0.022989867,-0.0035058486,0.01821979,0.0010265231,-0.01979211,0.043854978,-0.008615889,0.04674465,-0.002945444,0.0009641084,-0.0014461626,0.016466865,-0.02978909,-0.06149046,-0.041454006,0.0016772299,0.006480508,-0.006443325,-0.016838698,0.007526951,-0.05137662,-0.020557022,-0.011845519,-0.008419349,0.019059068,-0.04245264,-0.019409653,-0.008063452,-0.023457315,0.024392208,-0.011781776,0.013269106,-0.0054924963,0.00216858,-0.033953615,0.005566863,0.0011931837,-0.03091521,0.0060555567,0.054351278,-0.046404686,0.0035270962,0.028620474,-0.012493569,0.0070966873,-0.02218246,-0.018665988,-0.032551274,0.056561023,0.067142315,-0.03248753,0.014490841,0.0022190427,-0.010103218,-0.014639574,0.030617746,-0.04963432,0.013864038,0.011749905,0.0235848,-0.059620675,0.00805814,-0.064167656,0.05834582,0.047297087,0.024774663,-0.0006629905,-0.018357899,0.00915239,-0.022522422,-0.030766478,0.02942788,0.022288699,-0.04665966,0.022543669,-0.015946299,0.061915413,-0.031042697,0.046404686,-0.008116571,0.024647178,0.022267452,0.027770571,0.0012615743,-0.00226021,-0.011824272,0.022479927,0.024795912,-0.02507213,0.0331887,-0.034548543,0.025603319,0.011749905,-0.0020304706,0.041793965,-0.026346983,0.01903782,-0.06357272,-0.038415603,0.02271365,0.03928675,0.008005021,0.015903804,-0.027558096,0.009970421,0.014448346,-0.039265506,0.016233142,-0.026793182,-0.021258192,0.015085773,0.037841916,-0.05222652,0.010161649,-0.00078284007,-0.009115206,0.0039865747,-0.023691038,-0.03399611,0.0454273,-0.035950884,0.029767843,-0.013322225,0.010862819,-0.055541143,-0.007617253,0.049421843,0.0001180236,0.019409653,0.024880901,-0.0024182387,-0.018039186,-0.016211893,-0.052184027,-0.024328465,-0.017847957,-0.029130416,0.025794547,-0.0018830657,0.0131522445,0.01305663,0.021863747,0.0006500428,-0.03380488,0.034612287,-0.06748228,0.024222227,0.014448346,-0.022734897,0.03607837,-0.0375657,-0.003096833,-0.019760238,0.15043278,0.06157545,0.03004406,0.013322225,-0.0257733,-0.010602537,-0.03371989,0.05320391,-0.0074950797,0.012323589,-0.009598589,0.0108734425,-0.026092013,0.023648543,-0.0003970639,0.025029635,-0.035015993,-0.0036705174,-0.029682852,0.030256536,-0.018549126,-0.017359262,0.016913064,-0.06076804,0.013035383,-0.028981682,0.02838675,0.02243743,-0.024795912,-0.04636219,-0.0029799712,-0.03522847,0.03301872,-0.00991199,-0.027728075,-0.032785,0.01785858,0.039796695,0.007558822,-0.0022761456,-0.03291248,-0.031340163,-0.058770772,-0.017901076,-0.036290847,0.0085574575,-0.027558096,-0.00442215,0.016169399,-0.020142695,-0.029682852,0.038245622,-0.028854197,0.010995616,-0.0049480274,-0.010087282,0.011909261,0.047552057,0.008934602,-0.002262866,0.039265506,-0.0067036077,0.01445897,-0.0084671555,-0.000638423,-0.023754781,-0.037331976,0.03442106,-0.0074366485,-0.004868349,0.030851468,-0.014618327,-0.0058696405,0.01687057,-0.019112187,-0.0018299468,-0.018060433,0.008982409,-0.015903804,0.01210049,0.028365502,-0.011505558,-0.020971349,0.016413746,-0.011154973,0.013088502,0.03293373,-0.0053836023,-0.011611796,0.011027488,0.008111259,-0.022331193,-0.0018047153,-0.0033225883,-0.04840196,-0.00040967966,-0.016286261,-0.032954976,0.020503903,-0.0077075553,0.00540485,0.008993033,0.0060130614,-0.0012589184,0.0038086264,0.019845229,-0.0055403034,0.023436068,0.00057667226,0.023457315,-0.028344255,0.023074858,0.020790745,0.005747467,0.016774954,0.025752053,-0.018357899,-0.01861287,-0.005351731,0.03669455,0.033486165,-0.0005746803,-0.03765069,-0.004369031,0.02611326,0.016222518,0.063360244,-0.06408267,-0.055413656,-0.030490259,0.012227975,0.006443325,-0.010623784,-0.000589952,-0.02366979,-0.002513853,0.013577196,-0.024009751,0.030787725,-0.011261211,-0.0011931837,-0.016158774,-0.007372906,0.00226021,0.013779048,0.00060953957,0.014225246,-0.010862819,-0.013609067,0.009317058,-0.0009873479,0.019399028,-0.0011978316,-0.023478562,0.027919304,0.008738062,0.03563217,0.06561249,0.010560041,0.031573884,-0.0015616962,-0.022033727,0.03947798,0.004175147,0.022224955,-0.023436068,-0.009465791,0.0061564827,0.011813647,0.00943392,-0.011441815,0.0077978573,0.04340878,-0.0036466138,-0.00016433666,0.014841426,-0.014246494,-0.005848393,-0.013545324,0.007171054,-0.0029295085,0.012323589,-0.020344546,-0.00006000778,0.0021433483,0.005298612,0.019473396,-0.0030118427,-0.015446981,-0.019250296,-0.053076424,0.0095614055,-0.024370959,0.0052348697,0.018719107,-0.025327101,0.008700879,-0.021736262,-0.0576659,0.0039653275,0.016679341,-0.0124404505,0.04226141,0.037884414,-0.0042707613,0.019590257,-0.010804388,-0.018209165,-0.031233924,0.051589094,0.061532956,0.006857652,0.036397085,0.043302543,-0.02568831,-0.008525587,-0.0010232031,-0.040922817,0.0057846503,0.018729731,-0.040391628,-0.021385677,0.019303415,0.025093377,0.0032216625,-0.03588714,0.0077925455,-0.027430609,0.007627877,-0.03660956,0.011080607,-0.02061014,0.00522159,-0.007181678,0.01196238,-0.0021977953,-0.036800787,-0.017040549,0.0076916195,-0.0050303615,0.019420277,0.025114626,0.04576726,-0.02524211,0.014267742,0.015298248,-0.018485384,0.013502829,0.018071055,-0.0039600153,0.049846794,0.020036457,0.00056837243,0.011696786,0.020705754,0.0410503,0.03658831,0.044322427,0.012419203,0.017762966,-0.028407998,-0.020642012,0.0026280584,-0.021778757,-0.010597224,0.006735479,0.003787379,0.001767532,0.010299758,-0.0049480274,-0.0018246348,0.01869786,-0.004963963,0.0033783633,0.0018405706,0.028323008,0.04202769,-0.023181096,0.010544105,-0.009216133,-0.0150114065,-0.007463208,0.0019507923,0.0414965,-0.0026971132,0.002756872,-0.017401759,-0.05180157,-0.0040184464,0.0336349,-0.026623202,-0.030107804,-0.022862382,-0.0353772,0.038118135,0.030490259,0.0026373544,0.009672955,-0.0052242456,0.010390061,0.009492351,-0.044577397,-0.0032960288,-0.034378566,-0.0112930825,-0.0117924,0.03093646,-0.018857216,-0.065654986,0.024434702,0.027983047,-0.032360047,-0.06947955,-0.013439086,0.029236654,-0.025645815,-0.028153026,0.01162242,0.017454877,0.056221064,0.03911677,-0.04107155,0.015616962,-0.021406924,0.05231151,-0.010204145,0.013130996,0.0025191647,-0.0077288025,-0.010868131,0.01305663,-0.006294592,-0.0034553856,-0.011059359,-0.029321643,0.024710922,-0.013258482,0.012844155,-0.0064698844,0.023733532,0.045639776,-0.016180024,0.015181387,0.0017595642,-0.04419494,0.014023394,0.0091789495,0.030978953,-0.012302342,0.015733823,0.0026439943,0.016041914,0.019643376,-0.0062467847,0.0050330176,0.036567062,-0.0026293865,0.013970275,0.033528663,0.05188656,-0.0028817013,0.029364139,-0.011208092,-0.05205654,0.041092794,-0.013800295,0.028705463,-0.020567646,-0.038649324,0.003428826,-0.008111259,-0.028854197,-0.005298612,-0.0067142313,0.015627585,0.013980899,-0.0052242456,-0.020004585,0.020971349,-0.04315381,-0.006873588,0.0045549474,0.0146289505,0.002408943,0.044789873,0.012759164,-0.009109895,-0.018294156,-0.0080846995,-0.0139915235,-0.022862382,-0.0021911555,0.0550312,-0.017423006,0.044152446,0.026963163,-0.016679341,0.032168817,0.001278174,0.016796201,0.010878755,0.015988795,0.033677395,-0.00071444944,-0.0024700298,-0.03762944,-0.03669455,-0.014203999,0.0410503,-0.0029799712,0.033082463,-0.009795128,0.007426025,0.004860381,-0.0045018285,-0.03442106,-0.019537138,-0.0018113551,-0.03155264,0.022203708,0.011973004,0.042070184,0.007319787,-0.043642502,-0.0288117,0.03858558,-0.020344546,-0.051759075,0.00816969,0.028875444,0.015128268,0.012334213,0.0041538994,0.035419695,0.010161649,-0.028407998,0.015606338,0.0353772,-0.024753416,-0.03221131,-0.018442888,0.022819888,-0.04132652,-0.00036685253,0.0018591621,-0.003633334,0.0034660094,0.0034580417,0.031913847,0.021566281,-0.058133345,-0.013970275,0.025454586,0.021948738,0.022267452,0.010161649,0.0414965,0.020588893,-0.007925343,0.01833665,0.0010577305,-0.07228422,0.01563821,-0.0136621855,-0.049974278,-0.037778176,-0.0077288025,0.021863747,-0.04610722,-0.0009720762,-0.0065761223,0.017847957,-0.046702154,0.02288363,-0.015181387,-0.06140547,-0.028960435,-0.014097761,-0.06008812,-0.010310383,0.0336349,0.019133434,-0.020588893,0.0019733678,0.039223008,-0.03180761,-0.016519984,0.040179152,-0.019250296,0.0060714926,0.020461408,0.008286552,0.004804606,-0.012918521,0.0018073713,-0.012642303,0.06450762,0.024923397,0.01493704,-0.002156628,0.010140401,0.03563217,-0.0014461626,0.028046789,-0.02428597,-0.016350003,-0.014097761,0.04245264,-0.017911699,0.013630315,-0.003694421,-0.017391134,0.033316188,0.002940132,0.019197177,-0.02279864,0.01934591,-0.0027382802,-0.012982264,0.023606047,-0.008238744,0.029767843,0.018740354,0.0046558734,-0.02813178,0.006044933,0.008047516,-0.011271834,-0.021927489,-0.004610722,-0.0489119,0.00822812,-0.012546688,0.015616962,0.037523203,0.028004294,-0.020015208,0.017369887,0.027728075,0.0065920576,-0.027898056,0.015829438,0.0054765604,0.011983628,0.002654618,-0.004663841,0.051079154,-0.023627294,0.007479144,0.0060927398,0.002606811,-0.0064592604,0.0073941536,-0.0103263175,0.009109895,0.00057235634,-0.010352877,-0.041963946,0.026453221,0.044959854,-0.021927489,-0.007325099,0.0070913755,0.021746885,-0.013046007,0.0044380855,0.0065017557,-0.018134799,-0.011069982,0.024647178,-0.007712867,0.036057122,0.0011646323,0.002940132,0.010777828,-0.022819888,0.038564336,-0.0024129269,-0.006910771,0.03074523,0.03303997,0.016955558,-0.013215987,0.016764332,-0.01061316,0.033316188,0.00052753725,0.014427098,0.006390206,-0.005513744,-0.0014368667,0.015553219,-0.034527298,-0.044407416,0.0040078224,-0.017274272,-0.02847174,-0.005933383,0.0036997327,0.015701953,-0.011994252,0.043472525,0.0023465282,0.021693766,0.008435285,-0.03862808,0.006432701,-0.004812574,-0.033847377,0.00246339,-0.0041512437,-0.012366084,-0.024477199,-0.011271834,-0.0072772917,0.03518597,-0.022224955,-0.016137527,0.03316745,0.0066982955,-0.03178636,-0.0011214731,-0.009832311,-0.028790453,0.04270761,0.01895283,0.0375657,0.0012828219,-0.019048445,-0.0075057033,-0.006719543,0.01732739,0.028004294,-0.0059068236,-0.008461844,0.041199032,-0.0053012683,-0.018517256,0.023223592,-0.00943392,0.018995326,0.00041864347,0.019664623,-0.026155755,0.015128268,-0.025815794,0.009975733,-0.019654,-0.04500235,0.01165429,-0.008477779,0.010554729,-0.000883766,0.033613652,-0.03563217,0.026538212,0.020599516,-0.018432265,0.019452147,-0.01092125,-0.010846883,-0.021587528,0.030192794,0.012706045,0.002159284,0.007479144,0.007803169,-0.04500235,0.010044788,0.014129632,-0.02785556,0.029831585,0.026856925,0.011271834,0.05188656,-0.013109749,0.005157847,-0.0062255375,0.008690255,0.0009488367,0.003136672,-0.0025231487,0.013736553,0.013024759,0.027536847,0.003481945,-0.020078951,-0.009338306,0.02324484,-0.02392476,-0.06752477,-0.019271543,0.0067461026,0.012323589,0.003189791,0.04444991,-0.0027409361,-0.037969403,-0.039711703,-0.017401759,0.01533012,-0.030490259,0.006480508,-0.004137964,-0.014023394,0.00766506,-0.012068618,-0.00569966,-0.022394937,-0.0008930618,-0.037268233,-0.0032694694,0.033316188,0.013938405,0.0014196031,-0.007718179,0.050654203,-0.021449419,-0.019887723,0.014480217,-0.046319697,0.010586601,-0.0010856179,0.0015045934,-0.011452439,0.00509676,0.06051307,0.04865693,0.030235289,0.0010776501,0.05099416,0.03522847,-0.0008631824,0.0056837243,0.020673884,-0.0059386953,0.032700006,0.0005604046,-0.0035802152,-0.035802152,-0.013014135,0.0071391826,-0.0060289972,-0.026304489,0.0068098456,0.028174274,-0.009364866,0.027961798,-0.006034309,-0.013577196,-0.017911699,0.017061796,0.022692403,-0.00452042,0.015670082,0.028705463,0.014809554,0.052269015,0.037331976,0.00065070676,-0.0073835296,-0.018963454,0.013417839,0.0052720527,-0.018676613,-0.010315694,-0.010347566,-0.008164378,0.025199614,-0.00017330048,0.0083396705,-0.014108385,-0.03221131,-0.051419113,0.012281094,-0.027451858,0.016158774,-0.046404686,0.025900785,-0.0020729657,0.0054393774,0.034612287,0.0057102838,-0.011813647,0.01855975,0.013162868,0.00036784852,-0.021013845,0.0055934223,-0.00343945,0.01698743,0.015786942,0.03805439,0.009747322,0.013980899,-0.021300687,0.015925052,-0.00197204,-0.0017117572,-0.02262866,-0.0125148175,-0.0072613563,-0.011898638,-0.0032588458,0.018230412,0.011144349,0.02136443,-0.004902876,-0.014671446,-0.021566281,0.011611796,0.0022880975,-0.003343836,0.0019733678,-0.0046372814,-0.046829637,0.03588714,0.008865547,0.0075003915,0.019834604,-0.045044843,0.01384279,0.00775005,0.009986357,-0.003928144,-0.026963163,0.015277001,0.013215987,-0.0022947374,-0.0366733,0.014055266,-0.028025541,-0.036312092,-0.021927489,0.0035536557,0.012142985,-0.030872716,-0.011686162,-0.003782067,0.0062096016,-0.036482073,-0.035759658,0.017253025,-0.0046319696,0.02490215,0.03206258,-0.0027728076,0.019133434,-0.024710922,-0.013290353,-0.015404486,0.026538212,0.026283242,-0.015712576,-0.037310727,-0.021098835,0.021502538,0.008881483,-0.01516014,0.02541209,0.023521056,-0.008435285,0.008908043,0.015446981,0.060045626,-0.040412873,0.01415088,-0.029852832,-0.022246202,-0.023457315,0.037268233,0.0034049228,0.020323299,-0.0008439268,-0.020365793,-0.063657716,0.019069692,-0.0034978809,-0.018464137,0.018432265,-0.0015351367,-0.006932019,-0.0016002074,0.016307509,0.03520722,-0.014820178,-0.037438214,0.008020957,0.0074154013,0.030957706,0.004122028,0.0310002,-0.0011121774,0.012387332,-0.0004611386,0.032445036,0.026941916,-0.005619982,-0.017242402,-0.009221444,-0.0032296302,0.0013372687,-0.023074858,0.0051870625,-0.01721053,-0.012079242,-0.015213259,0.0070860637,-0.013800295,0.042410146,-0.011888014,-0.020673884,-0.009147078,0.00620429,-0.003824562,-0.0134072155,0.0025085409,-0.026049517,-0.017975442,-0.004921468,-0.018017936,-0.008414037,0.02454094,0.012599807,0.06578247,-0.00746852,-0.008939914,-0.0045868186,-0.0049081882,-0.015202635,0.0095614055,0.016434994,-0.0082493685,-0.011229339,0.009449855,0.010358189,-0.005619982,-0.019005949,0.04270761,-0.021715013,-0.0014421786,-0.014480217,-0.0065601864,0.04759455,0.0327425,0.016562479,0.018793473,0.011611796,-0.022479927,-0.008052828,0.0034978809,0.0038723692,0.008897419,-0.013269106,-0.0069585782,-0.040200397,0.018878464,0.023776028,-0.045342308,0.014597079,-0.01502203,-0.0051844064,0.017571738,-0.004517764,-0.014809554,-0.00090567756,-0.013343472,0.006337087,0.0077288025,-0.008387477,-0.035759658,0.010682215,-0.008270616,0.0026081388,-0.016413746,0.029236654,0.009773881,0.03862808,-0.03214757,0.01996209,0.012323589,-0.0006138555,-0.023436068,-0.013141621,0.009848247,-0.01881472,0.004451365,-0.024859654,0.033422425,0.019983336,0.01659435,0.028004294,-0.006777974,0.016466865,0.016764332,-0.020227684,-0.006283968,0.02027018,-0.029725347,-0.0036041187,0.0066079935,-0.022479927,0.008769933,-0.018326027,-0.019441525,-0.0023279367,0.033592403,0.036630806,0.008164378,-0.009678267,0.014522713,-0.052948937,0.017263649,0.036014628,0.013311601,-0.017253025,0.010437868,0.0032216625,-0.0050834804,-0.01909094,0.020578269,-0.024052246,0.017008677,0.006629241,-0.02611326,0.03903178,0.015351367,-0.0050781686,0.027664334,-0.0013166852,0.033528663,0.03223256,-0.023202343,0.026814431,-0.017476125,0.0031765113,0.013205363,-0.013003511,-0.0011739281,-0.019356534,0.025050882,-0.002799367,0.01415088,-0.0103635015,-0.030554002,0.02543334,0.0037555075,-0.019632753,-0.034527298,0.022118717,-0.004722272]},{"id":"interface-BitFieldResolvable","type":"interface","source":"main","text":"Interface: BitFieldResolvable\nDescription: Data structure that allows efficient storage of multiple flags (bits) in a single number.\n\nNote: JavaScript bitwise operations (|, &, ^, <<, >>) operate on 32-bit signed integers.\nFlags with values exceeding 2^30 may exhibit unexpected behavior. For permission-style\nbitfields with more than 30 bits, consider using BigInt-based implementations.","meta":{"url":"/docs/typedefs/BitFieldResolvable"},"embedding":[-0.011899819,0.008648721,-0.018846124,0.052791923,0.0030375854,-0.021989044,-0.028195169,0.009201009,-0.0034247565,0.047781475,0.039514232,0.015224936,0.027739674,0.025849368,0.029128935,0.028787313,-0.012321153,0.010897729,0.030427096,-0.02025816,-0.0019586305,0.020030413,0.040607423,0.0010028017,0.012321153,-0.011222269,-0.03926371,-0.008882161,0.010260035,-0.01211618,0.02924281,-0.02370854,0.05598039,0.0008946216,-0.013459891,-0.027033657,0.035095926,0.000738045,0.008836612,0.027967421,-0.030745944,0.010903423,-0.0175138,0.008409585,0.0014127477,0.024391782,0.015919566,0.005260973,-0.02471063,0.0352098,0.015316035,0.033570018,0.001607045,0.012708324,0.024369007,0.092647776,-0.015999278,0.046916034,0.04650609,0.02767135,0.033000648,-0.019506594,-0.033911638,-0.0074188826,-0.01860699,0.06053535,-0.033615567,0.048874665,0.036849584,0.020428972,0.013721801,0.01712663,0.020747818,0.034572106,0.06431596,0.005036072,0.024323458,0.015111062,-0.017354377,-0.026919782,-0.03725953,-0.0011906936,-0.018310918,-0.05329297,0.03844382,0.013585152,-0.014541693,-0.021863783,-0.064589255,-0.028536791,-0.026600935,-0.029174484,-0.0452307,0.01376735,-0.041677836,-0.057073582,-0.062129583,-0.001997063,-0.030404322,-0.023412468,0.05925996,0.028741764,-0.0010718377,0.013368792,0.044365257,-0.013346017,0.023412468,0.0021949187,0.023981836,0.035665296,-0.0502867,0.003510162,0.007635243,0.01032836,-0.0058645043,-0.009889945,-0.033797763,0.016181476,0.03589304,0.017377153,-0.0033108827,-0.00031084009,0.0062687565,-0.0022959819,0.0034048287,-0.030381547,-0.0090188105,-0.052746374,0.02553052,-0.033273943,0.042361077,0.03839827,0.027215853,0.00237,-0.039537005,0.013778738,-0.029971601,0.024733404,-0.022273729,-0.060444247,-0.010613045,-0.04065297,0.08882162,-0.012776648,0.020417584,0.06718558,-0.039491456,0.009702054,0.03903596,0.013459891,-0.01233254,-0.0030603602,-0.011694846,-0.041860033,-0.00010648986,-0.04240663,0.03377499,0.037715025,-0.000864018,-0.013346017,0.0025336936,0.005457405,-0.05921441,0.018299531,0.026168214,0.044114735,0.017320216,-0.0038147746,-0.026737584,0.007401801,0.008791063,-0.033979964,-0.026304863,-0.06695783,-0.02701088,0.008819531,-0.012355315,-0.026692035,-0.03129254,0.005235351,-0.019051097,0.005141405,-0.022706449,-0.03994695,0.0069918553,0.0024625224,0.009070054,-0.020975566,0.018800575,-0.029083386,-0.03960533,0.083720066,0.042634375,0.06317722,0.035847493,-0.010766774,0.012275603,-0.019381331,-0.010749693,-0.02653261,-0.009667891,-0.0056396034,0.034822628,0.03464043,-0.017058305,-0.027967421,0.009383206,0.014746666,-0.031269763,-0.009833008,0.0038745583,0.03839827,0.0041649365,-0.037669476,0.013232144,-0.029698305,0.054112863,-0.007891459,-0.026327638,0.019586306,0.011706234,0.0077491165,0.026874233,0.008984648,-0.032750126,0.027921872,0.021601873,-0.004987675,0.0072708465,-0.0055428105,-0.0039713513,0.0044809366,0.0056509906,-0.018185657,-0.039058737,0.020246774,-0.04331762,0.010647207,0.0039428826,-0.022717837,-0.0022404683,0.0054118554,-0.016272577,0.026122665,-0.05224533,0.001957207,-0.012537513,0.01276526,-0.023845188,-0.017969295,-0.011580972,-0.004145009,0.00764663,0.0059442157,-0.008734126,-0.015828468,0.005605441,0.056618087,0.002858234,0.016147314,-0.047599275,-0.11870212,0.0027116213,0.003191315,-0.0326818,-0.015156612,0.044296935,0.053611815,-0.04732598,-0.034344357,0.04308987,0.010738306,0.051516537,-0.008996036,0.009485693,-0.052791923,0.04728043,-0.0006387612,-0.04933016,-0.014086197,-0.0030859818,-0.01865254,0.028901188,0.019199135,0.0073961075,-0.056390338,-0.016204251,-0.011501261,0.05042335,0.02292281,0.053657368,0.017491026,0.061036393,-0.005184108,-0.036576286,0.01012908,0.046916034,-0.039491456,0.078891814,-0.018766413,0.035369225,-0.02814962,-0.01176317,-0.030745944,0.0147694405,0.009218089,-0.03181636,-0.029538881,0.008045189,0.00358418,0.012218666,-0.070100754,-0.046824936,-0.001802054,-0.07137614,-0.007316396,0.051470987,0.01891445,-0.041814484,0.000661536,0.017456863,0.024892827,-0.011945369,-0.04012915,0.054705005,0.0018134413,-0.029311134,0.03725953,0.016295351,-0.041723385,0.000018493383,0.032750126,-0.003883099,0.007589693,-0.02452843,-0.03063207,-0.035733618,0.02666926,-0.06117304,0.0028838557,0.046779383,0.0069576935,0.012218666,-0.0046318197,0.012161729,0.013607927,-0.015532396,0.027215853,0.035050377,-0.029311134,-0.020998342,-0.022592574,-0.026350413,-0.042429402,-0.019506594,-0.007902847,0.040926266,-0.08950486,-0.056117043,0.036143564,-0.06463481,0.03787445,0.020713657,0.017730162,-0.026259314,-0.029971601,-0.040926266,-0.022774773,-0.00003485163,-0.042930447,0.014222846,0.034663204,0.022114305,0.009314883,0.0062858374,-0.012321153,0.014678341,-0.008591783,0.028195169,0.006667315,0.009821621,0.049922302,-0.030267674,-0.042679925,-0.011444324,0.021727134,-0.008261549,0.03639409,-0.0704196,0.005921441,0.038329944,0.029903278,0.02972108,0.031474736,-0.003957117,-0.025120575,0.022250954,0.009901333,0.016898882,-0.0250978,-0.021431062,0.0053065224,0.045526773,0.031998556,0.02457398,-0.016238414,0.010203099,0.035505872,0.049740106,-0.029037837,-0.0047086845,-0.020861693,0.015042738,0.0011793062,0.054067314,-0.012696936,-0.018550053,-0.028286269,0.0142683955,-0.008882161,-0.031064792,0.033797763,-0.04160951,-0.057255782,0.0038204682,0.010504864,-0.02226234,-0.043636467,-0.0018476035,-0.046118915,-0.0052268105,0.013357405,0.019870989,0.01207063,-0.005494414,-0.012879134,0.0089789545,-0.0029237114,-0.0128108105,0.009702054,-0.03930926,0.036280215,0.04375034,0.014006485,-0.03593859,0.009502774,-0.029037837,0.012662774,0.039537005,-0.04705268,0.024687855,-0.002754324,-0.054067314,0.03386609,-0.014780828,0.03363834,0.054112863,-0.024983926,0.0045094052,0.0046204324,-0.040766843,0.011324756,0.009986738,0.058075674,0.0023657295,0.020292323,-0.02409571,0.008512071,0.020588394,0.019415494,-0.012537513,-0.03495928,0.031702485,0.03730508,-0.018903062,0.01333463,0.039764754,-0.040311348,-0.012230054,-0.021157764,-0.0036325764,-0.011108396,-0.0277169,-0.011626522,0.0024824503,0.07716093,0.038626015,0.035710845,-0.021305801,0.010664288,-0.07957506,-0.03063207,0.02767135,-0.009240865,0.03359279,0.0401747,-0.02867344,0.0007985405,0.052883025,-0.010692756,0.042543277,-0.04156396,0.00653636,-0.011148252,0.00051029725,0.010601657,0.0033507384,-0.0032197835,-0.071239494,-0.0030119638,0.036872357,0.0020468829,-0.028605115,0.010755387,-0.042110555,0.0025578917,-0.001444063,0.011364612,-0.0070658736,-0.015179386,-0.018811963,0.0039058737,-0.02113499,-0.028354593,0.005548504,-0.010499171,-0.05024115,-0.011273513,-0.02623654,-0.020406198,0.014063423,0.0082273865,-0.0069861617,0.026783133,0.015270486,-0.011979531,0.0121047925,0.037100106,-0.0066559277,-0.010083531,0.010601657,0.0007227432,-0.0063199997,0.008392504,-0.02653261,0.028787313,0.013049945,0.0074872067,0.010055062,0.02414126,-0.02061117,0.0064452607,0.0049335854,-0.042247206,0.023867963,0.020201225,0.019461043,0.0007042387,-0.02313917,0.0060068467,-0.027876323,-0.06846097,0.009024504,-0.01825398,0.0049051167,-0.02156771,-0.00832418,-0.0043329005,0.037464503,0.00082629727,-0.011751783,0.03272735,-0.0025436576,0.025416648,0.03188468,-0.011911207,-0.033091746,-0.031042017,0.041154016,0.026190989,-0.01311827,-0.023890737,0.00005778209,-0.00045727476,0.011877044,0.027398052,0.024961151,0.008990342,0.027056431,0.014985801,-0.026327638,0.033182845,0.014780828,0.007880071,-0.0019828286,-0.013027171,-0.0019244683,0.0399014,-0.052427527,0.020451747,0.020041801,0.0049819816,-0.0006633153,-0.012207279,-0.029060612,0.0048709544,-0.008198919,-0.0034617656,-0.0031827746,0.009776072,-0.027625801,0.02261535,0.016170088,-0.011569585,-0.046870485,0.019233296,0.010402378,-0.01951798,0.016022053,0.009445838,-0.034822628,0.0044894773,0.01185427,0.031087566,-0.03420771,0.038056646,0.0053036753,-0.008916324,0.023480792,0.017639061,-0.0225698,0.0011458558,-0.010840792,0.011148252,-0.03329672,-0.047735926,0.039855853,0.018413404,-0.013152432,-0.018071782,0.03655351,0.035847493,0.029447783,-0.0002594189,0.023059458,-0.027124755,0.012059242,0.030837044,-0.019984864,0.017240504,0.02352634,0.011495567,0.014575855,-0.031133115,-0.011091314,0.0015956576,-0.014382269,0.018276755,0.008489297,0.03826162,0.028491242,-0.0021835314,-0.016181476,-0.042953223,0.0037976934,0.008398198,-0.007105729,-0.027899098,0.003490234,0.0038916394,0.009206702,0.009565405,0.024482882,-0.014655567,-0.033661116,-0.0025023783,-0.014086197,0.022102918,-0.0047172247,0.033319492,-0.0012454954,0.0077718915,-0.036029693,-0.043590914,-0.040493548,-0.016955819,-0.016044827,0.030654846,0.039992504,-0.037100106,0.038193297,0.0099354945,0.0014084774,-0.0023728467,-0.013995098,-0.018356467,0.05306522,0.0030518197,-0.021556323,-0.040015277,0.0008533423,0.032659024,-0.01581708,-0.021932106,-0.006627459,-0.0068039633,0.017263278,0.011626522,0.017764322,-0.0014084774,-0.028741764,-0.015008575,-0.027466377,-0.009929801,-0.010800936,-0.013129657,0.023036683,0.04274825,0.023776863,-0.000067746056,-0.031656936,-0.016147314,-0.02034926,0.02357189,0.040038053,0.018903062,0.019973475,0.018379241,-0.0066787023,0.011956756,-0.0066046845,0.010197405,-0.0035870268,-0.013368792,-0.007236684,0.037760574,-0.028445693,-0.002626216,-0.014712503,-0.015224936,-0.0032254772,-0.011467098,0.009240865,-0.01647755,-0.005027531,0.00076722517,-0.041381765,-0.004341441,-0.026623711,0.012047855,-0.0250978,0.0063427743,0.00079569366,-0.0077149547,0.022729224,-0.026213763,-0.022205405,-0.010168936,-0.02039481,-0.0023173331,-0.032180756,0.05716468,-0.026282089,0.010499171,-0.01851589,-0.0061719636,-0.0427027,-0.03154306,0.02666926,0.027443603,0.0021735674,0.028217943,-0.024824504,-0.015976503,0.059988752,0.007817441,-0.008466522,-0.0145189185,-0.06486256,-0.012400864,-0.019039711,-0.022023207,0.006439567,-0.021510774,-0.013938162,-0.001370045,-0.01755935,0.0051898016,-0.046733834,-0.017866809,-0.023913512,0.03921816,-0.0048054773,0.01934717,0.008899243,0.010590269,0.017661836,-0.07907401,-0.0105618015,0.0048140176,-0.008329873,-0.058075674,-0.010214486,0.0024824503,0.04441081,0.0037549909,-0.05853117,0.01734299,-0.02192072,0.032750126,0.0079370085,0.009867171,-0.00163409,0.06053535,0.009764684,-0.002673189,-0.011159639,-0.024460107,0.035801943,-0.0138129005,0.040334124,-0.0056481436,0.030540971,-0.0011237927,-0.0069576935,0.030199349,-0.022068756,0.0032596395,0.024300683,0.015760142,0.020485908,0.014325333,-0.0453218,0.007128504,0.023241656,-0.0014369459,0.025029477,-0.0024852972,-0.027352503,-0.014131747,0.018846124,0.020838918,-0.013015783,0.030085476,-0.009331963,-0.029197259,0.0028895494,-0.023082232,-0.008119207,0.0059157475,-0.028605115,0.019210521,-0.023981836,0.033000648,-0.008722738,-0.038853765,0.006815351,-0.013983711,0.014245621,-0.014473368,0.008654414,0.08358342,-0.013642089,0.0028738917,-0.015031351,0.029356683,-0.014598629,0.0047172247,-0.01664836,0.006354162,0.05142544,0.027170304,0.008705657,-0.026919782,-0.0055798194,-0.005594054,-0.020930016,0.02609989,-0.010100612,0.015965115,-0.028354593,0.011461405,-0.015657656,-0.016591422,0.028650666,0.023549115,-0.009582486,0.037532825,0.015919566,0.0024283603,0.009719134,0.034594882,-0.01734299,-0.024164034,0.032317404,-0.032226305,0.021727134,0.046255566,-0.008295711,-0.003450378,-0.05015005,-0.021647422,-0.02557607,-0.008785369,-0.029447783,-0.024756178,0.029288359,-0.0019742881,-0.006411099,0.00295218,0.007208216,0.016933044,0.00077363057,0.025462197,0.011990918,-0.029379457,-0.01621564,-0.01812872,-0.024551205,-0.004367063,-0.043112647,-0.01285636,0.028764538,0.06026205,-0.01450753,-0.009485693,-0.017855423,-0.017969295,0.037441727,-0.006553441,0.0277169,0.035801943,-0.019278845,-0.00797117,0.009405982,-0.019984864,-0.007834522,-0.02457398,-0.002098126,0.009747603,-0.012161729,0.0034190628,0.0062687565,-0.022376215,-0.0066559277,-0.010277117,0.011968143,-0.0052638194,0.0032283242,-0.016545873,0.0075726123,-0.014712503,0.04256605,-0.010909117,-0.018903062,0.023389691,0.040311348,-0.025348322,0.03935481,0.02871899,0.009531243,0.0071398914,-0.012150342,-0.011301981,0.020554233,0.010362522,0.06267618,0.011427242,-0.044934627,0.0066787023,0.02461953,-0.01028281,-0.0058274954,0.008631639,-0.019939315,0.005204036,-0.03445823,0.0014056305,-0.034344357,0.033000648,0.006035315,0.021909332,0.0075270627,-0.006411099,-0.020337872,0.013027171,0.013243531,0.029425006,0.025803817,0.013084107,0.018538665,-0.025393872,0.01133045,-0.02178407,0.027352503,0.018413404,-0.0043556755,0.026828684,-0.013106882,-0.049740106,-0.008608865,-0.0175138,-0.0250067,0.020998342,0.009952576,0.012218666,0.03215798,-0.006354162,0.031133115,-0.021157764,-0.031087566,-0.02457398,0.008033801,-0.006234594,0.010356829,-0.0277169,0.019836828,0.013186594,-0.014837765,-0.024778953,-0.0040880716,-0.021932106,-0.009963963,0.012412252,-0.044000864,-0.017752936,-0.022478702,-0.005568432,0.00028130403,-0.014496143,-0.020030413,0.02710198,0.032841224,0.0022376215,-0.034321584,0.00569654,0.0011366035,-0.0018689549,-0.0009985315,0.05739243,-0.026874233,-0.015088287,-0.037396178,-0.018572828,-0.032818448,-0.00016493918,-0.027648576,-0.026122665,-0.0053719995,-0.010504864,0.013824288,-0.015054125,-0.020144287,-0.0250978,0.01812872,0.007521369,0.0061776573,0.029607205,-0.00056047295,0.017923746,0.011592359,0.0036126485,0.005961297,0.023412468,-0.013254918,0.007253765,-0.0018120179,-0.028263494,0.0014675495,0.0146441795,-0.012491963,0.00912699,0.044388033,-0.026077116,0.008364036,-0.0006074459,-0.0064167925,-0.020633945,-0.021624647,0.01076108,0.00975899,-0.015088287,-0.0030859818,-0.021317188,-0.001234108,0.04365924,0.012833585,0.036804035,-0.014234234,0.022626737,-0.031748034,0.034139384,-0.010931891,-0.014222846,-0.04122234,0.040151924,0.017741548,-0.02078198,0.022216791,-0.044501908,-0.012025081,-0.016431998,0.016352287,-0.0016127386,0.0021920719,-0.021157764,0.0040909187,-0.010647207,-0.0063769366,0.012309765,-0.014632792,0.014712503,0.026805907,0.0040880716,-0.06645679,0.01276526,-0.016056215,0.024892827,0.036599062,0.0013579458,0.021169152,0.0069519994,0.006314306,0.020201225,-0.014154522,-0.029561656,0.0022959819,-0.015486846,-0.044934627,0.03334227,-0.01350544,-0.009149766,0.021214701,-0.003769225,0.015680432,0.025166124,0.026190989,-0.013129657,0.009588179,0.037988324,0.010789549,-0.00605809,-0.023594664,0.037851673,-0.036416862,-0.003379207,-0.045503996,0.03477708,-0.005050306,-0.010487783,0.02357189,-0.004552108,-0.014359495,-0.0037094413,0.011000216,-0.012059242,0.020930016,-0.006348468,0.04047077,-0.017741548,0.0225698,0.012617225,0.0027443601,0.01176317,0.03163416,0.019278845,0.026737584,-0.002199189,-0.007948396,0.008791063,-0.00034393466,0.00075726124,0.0053634592,0.007293621,0.0022789007,0.03846659,-0.0150199635,-0.029926052,0.02025816,0.04796367,0.014735279,-0.04657441,0.0004818288,-0.025211675,-0.020417584,0.019597692,0.012013693,-0.054932754,-0.0063769366,-0.045435674,0.03243128,0.012025081,-0.039400358,0.02701088,-0.009981045,0.0001631599,-0.02087308,-0.026965331,-0.018162882,-0.0017536576,-0.009201009,-0.009331963,0.01581708,0.03507315,0.025758268,0.006388324,0.006980468,-0.0034133692,0.015885405,-0.0163409,0.008489297,0.03559697,0.028491242,0.0022917115,-0.011575279,0.02409571,0.0019130809,-0.014894702,-0.0051300176,-0.0028069909,0.014450594,0.02409571,-0.008580396,0.010539026,-0.021841008,0.0044040717,0.008944793,-0.0009074324,-0.0020326485,0.0022248107,0.031087566,-0.02152216,0.017582126,-0.012879134,-0.020167062,0.004993369,0.021487998,-0.015088287,0.0010576035,0.027170304,0.007589693,-0.021214701,0.009667891,0.0324996,-0.013425729,-0.00817045,-0.017741548,-0.0050189905,0.007777585,-0.015316035,-0.025484972,0.010743999,-0.016306737,0.011694846,0.005753477,0.02609989,-0.017240504,-0.026509836,0.026760358,-0.02192072,0.009075747,-0.00801672,0.026464287,-0.0031258375,-0.024824504,0.0138926115,0.0034247565,-0.00917254,0.011774558,-0.030404322,-0.00906436,0.011034378,0.022945585,-0.00096294587,-0.015885405,0.028422916,-0.004199099,0.032795675,0.017103855,0.007333477,0.025484972,-0.011922594,0.004845333,0.021510774,-0.038762663,-0.019574918,-0.012207279,-0.007942703,0.00019180629,0.018436179,-0.017798485,-0.011074234,0.01133045,0.003769225,0.0016924504,-0.017935134,-0.0047997837,-0.0654547,-0.030563746,-0.027648576,-0.024915602,0.04718933,0.00034749322,0.006724252,-0.00928072,-0.0025507747,-0.006758414,0.015133837,0.014826378,0.009047279,-0.026988106,0.00548018,0.00095369364,0.012491963,0.018299531,-0.009684972,0.015452684,0.006963387,0.02196627,-0.0044410806,-0.004731459,0.029743854,-0.011017296,0.013903999,0.02457398,-0.033319492,0.0026319097,-0.040675744,-0.017411314,0.040015277,0.021032503,-0.021374125,-0.019711567,-0.0028496934,0.0050987024,0.0138926115,-0.015725981,0.028901188,-0.032294627,-0.018925836,-0.014086197,0.022421764,0.0073790266,-0.020759206,0.036302987,0.008295711,-0.0022789007,-0.034344357,-0.028058521,-0.01965463,-0.013642089,-0.010732612,-0.03568807,-0.013277693,0.018925836,0.03450378,-0.032271855,-0.004768468,0.0025849368,0.027921872,-0.0011736125,-0.012025081,-0.019984864,-0.041154016,-0.016864719,-0.020668106,0.019187747,-0.0068438193,0.009189621,0.004771315,0.003023351,-0.004133621,-0.023867963,-0.013220756,0.02061117,-0.0048538735,-0.022808935,-0.009001729,-0.002666072,-0.009275027,0.0081875315,-0.004683063,-0.04627834,0.025849368,0.03646241,0.016420612,0.031224214,-0.034093834,-0.013049945,0.011512648,-0.04650609,0.0028397297,0.006815351,0.019768503,0.021453837,-0.0016497476,0.028058521,-0.04427416,0.026077116,-0.003641117,-0.010208792,0.006593297,-0.0029948826,-0.006576216,0.010106306,-0.01176317,-0.0027429368,0.009462918,-0.011683458,0.035483096,0.020372035,0.01407481,-0.008671495,0.010220179,0.006194738,0.000738045,0.005645297,-0.0027486305,-0.004842486,-0.031064792,-0.012514738,0.02824072,0.005978378,0.040038053,-0.029333908,0.0011052883,-0.01529326,0.0071341977,0.01590818,0.010112,0.03206688,0.022102918,0.05137989,-0.019984864,-0.011877044,-0.0019557837,0.0037464502,0.012321153,0.0020440358,0.0003192027,-0.024323458,0.04796367,-0.02239899,-0.030814268,0.0070146304,0.010140467,-0.0010341171,-0.035505872,0.025052251,0.036006916,0.016158702,-0.017286053,0.0018903062,0.0011857116,-0.012309765,0.019233296,-0.03215798,-0.0027443601,-0.013414342,0.013596539,-0.023594664,0.019586306,-0.001708108,-0.009138377,0.004105153,0.013664864,-0.0026390268,-0.02135135,-0.017593512,-0.0058218013,-0.007481513,0.06304057,-0.012583062,-0.017866809,0.0035044684,0.004082378,0.018049007,-0.02514335,0.015589332,0.017297441,-0.03812497,0.057711277,0.006815351,0.013266305,-0.011990918,0.00095725217,-0.01848173,-0.000055469027,-0.035665296,-0.012753873,-0.03306897,0.044547457,0.0705107,-0.023253044,0.04217888,0.009605261,0.025484972,0.03994695,0.021146378,0.0017636215,-0.020121513,0.0098956395,0.013152432,0.05848562,-0.023412468,0.026031567,-0.022102918,0.006912144,0.008244468,-0.01856144,0.014974413,0.02614544,0.02052007,-0.010613045,0.038580466,-0.034526557,0.016101765,-0.0057477835,0.00928072,-0.019267458,0.03735063,-0.008415279,0.00675272,-0.00917254,0.05142544,0.010499171,-0.009212396,0.063906014,-0.018276755,-0.022421764,-0.0023785403,-0.00095582876,0.02600879,-0.005773405,-0.021078052,0.046551637]},{"id":"interface-CacheSizeLimits","type":"interface","source":"main","text":"Interface: CacheSizeLimits\nDescription: Optional cache size limits. When exceeded, oldest entries are evicted (FIFO). Omit or use 0 for unbounded.\nProperties: channels: number, guilds: number, users: number","meta":{"url":"/docs/typedefs/CacheSizeLimits"},"embedding":[0.005448227,0.0044219405,0.057023235,-0.0014429056,-0.030095596,0.020261727,-0.019548938,-0.0030277092,0.017608562,-0.031732373,0.0064250138,-0.0091936765,-0.0057122232,0.002377618,0.06008559,-0.0038576482,-0.015496592,0.024261273,-0.009305875,0.0055373255,0.010678656,0.011688443,0.015892586,0.020538924,-0.039889865,-0.03629951,0.030385992,0.056125645,0.014044612,-0.033897143,0.025092863,-0.030702787,0.016988171,-0.0064877127,-0.017489765,-0.0019073744,0.067477494,0.04406101,0.0009891617,0.0068573076,0.02819482,-0.031151582,-0.009906467,-0.00594982,-0.0020954718,0.004101845,0.005708923,-0.0036629508,-0.060771983,-0.004322942,-0.012856627,0.00048921845,-0.06879748,-0.016182983,0.010249662,-0.014163409,0.018149756,0.036405113,0.022611296,0.008777882,0.00970847,-0.014638604,-0.023310887,0.0069431067,0.02081612,0.034504335,-0.02460447,0.028115623,-0.015971785,0.04311062,-0.053168885,-0.015192996,-0.010909653,-0.017951759,-0.0063029155,-0.004768436,-0.0025690154,0.013648616,0.007708696,-0.020565324,-0.008632684,0.053881675,-0.061299976,-0.026148848,0.07275742,0.006474513,-0.0017935259,0.020512525,-0.0075634983,0.032260366,-0.02159491,0.006797909,-0.06098318,-0.009167277,-0.0056297244,-0.0816805,0.07692856,-0.02603005,-0.009569871,0.039124273,0.044905797,-0.03862268,-0.024102876,-0.039045077,0.02599045,0.019139742,-0.03571872,-0.00669561,-0.022070104,-0.03416114,-0.051030513,0.00961607,-0.017832961,0.010817255,-0.025726454,0.0020987717,-0.035269927,0.027402831,0.05559765,0.01780656,0.019971332,-0.005880521,0.015430593,-0.016697776,-0.017912159,-0.017582163,0.021792907,-0.016116984,-0.04680657,-0.001039486,0.04920894,-0.017331367,0.05522806,0.0033824546,-0.003491353,-0.012203236,-0.050872117,-0.010104464,-0.031072382,-0.059927195,0.005161131,0.03949387,0.09324355,0.015866186,-0.010163863,0.03368595,-0.028670015,0.04324262,0.021885306,0.02156851,-0.01635458,0.033342753,-0.0065108123,-0.00818389,-0.00968867,-0.042899422,0.029910797,-0.026835239,-0.028643616,-0.06900867,0.0009215126,-0.044166606,0.030333193,-0.027957225,0.028221222,-0.0013092573,-0.0042833425,0.03051799,-0.058343217,0.033131555,0.05649524,-0.013034825,-0.026888039,-0.02674284,0.00048014356,0.015958585,-0.052535295,0.012427633,0.008989079,0.016578978,0.042292234,0.027402831,-0.0019189242,-0.041368242,-0.015047798,0.0062930156,0.00894948,-0.031732373,0.03402914,-0.049657732,-0.03041239,0.0055439253,0.034372337,0.02901321,0.001852925,-0.019047344,0.021027317,-0.00671541,0.0017737262,-0.022782894,-0.010606058,-0.0002415155,0.062039167,-0.03273556,0.034451537,-0.036246713,-0.011629044,0.006563612,-0.04915614,0.004765136,0.008249889,0.07312702,-0.015245795,-0.019548938,-0.023746481,0.0068045086,-0.011833641,-0.013952212,-0.024815667,0.017001372,-0.01638098,0.009391674,0.06467913,0.0021334214,-0.01041466,-0.0027653628,-0.052508894,0.0038345484,0.001264708,0.056125645,0.003357705,-0.010111064,-0.048971344,-0.05422487,-0.002526116,0.053274482,0.010579658,0.0669495,0.0067253094,-0.033289954,-0.03125718,-0.034451537,-0.05037052,-0.019548938,-0.02460447,-0.01335162,-0.02010333,-0.040602654,0.021687308,0.010870054,-0.013496819,-0.003940147,0.0077812956,-0.03059719,-0.006322715,-0.023627682,0.050898515,0.015813388,0.037672292,-0.024221674,0.0120844375,-0.06372874,-0.03783069,-0.007134504,0.018083757,-0.0046826373,0.006316115,0.005349228,-0.042213034,-0.018783348,0.025752854,-0.0149026,0.018796548,-0.052244898,0.002385868,0.05351208,0.032524362,0.019720536,-0.028115623,-0.02901321,-0.06789989,-0.0017968259,-0.00086788833,0.024710068,0.02742923,0.0149158,0.045882583,0.0107446555,0.08400367,0.016222581,-0.034583535,-0.0002192408,0.0023413186,0.0025228162,-0.017291768,0.04614658,-0.0071081044,-0.02540966,0.053855278,0.0094048735,0.0030739086,0.030280393,-0.0148234,-0.05586165,-0.030253993,0.036088314,0.03793629,0.06990626,-0.0057584224,-0.0015196296,0.0066362107,0.008335688,-0.042292234,-0.0036134515,-0.0670551,-0.018928546,0.0057881223,0.048100155,0.058554415,0.025964051,0.029989997,-0.01793856,0.026914438,-0.007979292,0.03270916,-0.039731465,0.0124672325,-0.013965412,-0.0062930156,-0.000019786843,0.022782894,-0.01937734,-0.0062006167,0.013807015,0.007220303,-0.024908066,-0.01119345,0.03360675,0.008626084,-0.0007717771,0.028854812,0.022070104,-0.0521657,0.016314982,0.049499337,0.019113343,-0.016829774,0.021014117,0.08975879,0.03323715,-0.020208929,-0.0008546885,-0.016922172,-0.060930382,-0.022254901,-0.01712017,0.046489775,-0.07064545,-0.08569325,0.07312702,-0.016011385,-0.0148762,0.013965412,-0.009939467,0.029989997,-0.026267648,-0.018321354,-0.000020070433,-0.008249889,-0.0017324768,0.026518444,0.006121418,-0.015390993,-0.037065104,-0.017212568,0.040972248,-0.0036662507,0.013609017,0.013272421,-0.010982253,0.025488857,-0.005586825,0.0013752566,0.028670015,0.018189356,-0.024551671,-0.007992493,0.047149766,-0.07069825,-0.057551228,0.0025145663,0.020010931,-0.006550412,-0.0106588565,0.007847294,0.030702787,0.055333655,0.056284044,0.0022159202,0.0011640594,0.05124171,0.020459725,0.002382568,0.015140196,-0.0371707,-0.02155531,0.009642471,0.02315249,0.06990626,-0.03656351,0.018466553,0.002382568,0.0024485672,0.0073523014,0.051268112,-0.015113797,-0.016710976,0.0011244599,0.011741242,0.01850615,-0.028511617,0.02453847,-0.005560425,-0.021885306,0.026927639,0.028115623,0.021462912,0.00821689,-0.009880067,-0.037698694,-0.057868022,0.020882118,0.013582617,0.02155531,0.0108304545,0.006936507,0.040681854,-0.017252168,-0.00668571,-0.025396459,-0.012249435,0.010441059,0.007385301,0.00668901,-0.013569417,0.019522538,0.030306792,-0.032445163,0.07043425,0.0010625857,-0.013965412,0.0019436739,-0.05871281,0.03878108,-0.01562859,-0.031705976,0.033263553,0.018321354,-0.02534366,0.025634056,0.0005725423,0.012163636,-0.0119986385,0.010223263,0.037434697,0.037038703,0.032973155,0.056336842,-0.009358674,0.0048839343,-0.0058508213,-0.027693229,0.009319074,0.030834785,-0.020644523,-0.046648175,0.007886894,-0.010144063,0.016037785,0.0014610554,0.026148848,-0.023178888,0.0010254612,-0.025660455,0.00819049,0.08347568,0.07687577,-0.018954946,-0.038332283,-0.012348434,-0.037857093,0.008256489,-0.003275206,-0.015232596,0.005738623,0.0063392147,0.015298595,-0.0062237163,0.034425136,-0.012130637,0.02758763,-0.05802642,-0.005831022,0.0068837074,-0.023244888,0.031151582,-0.010592857,-0.05422487,-0.0155493915,-0.00967547,-0.03941467,0.007022306,-0.02830042,-0.00052593043,-0.020486124,0.014361407,-0.055122457,-0.01045426,-0.019324541,0.036695506,-0.040602654,0.0128500275,-0.027244434,-0.01781976,0.029989997,-0.00085138856,-0.019086944,-0.0596632,-0.006751709,0.021291314,-0.002161471,-0.03051799,-0.01116705,0.0521921,0.0010964102,-0.036827505,0.002077322,0.023997277,0.04168504,-0.020274928,-0.0034088541,0.018202556,-0.03944107,0.006982706,-0.018202556,-0.02449887,0.021977704,0.022941291,-0.0036761507,0.0003087521,-0.021489311,-0.014361407,-0.009055078,-0.0062237163,0.05037052,-0.016644977,0.04015386,-0.010540058,0.005870621,0.025620855,0.0053888275,-0.03476833,0.018030958,0.01413701,-0.0020558725,-0.06642151,-0.01337142,0.011754442,-0.019641336,-0.027165234,-0.03178517,0.025462458,-0.020235328,0.019839333,0.022598097,0.0059960196,-0.010144063,0.021225315,0.0001414856,0.011299049,0.016064184,-0.025898052,0.034372337,0.01929814,-0.032128368,-0.012289035,0.0021053718,0.022202102,-0.034293137,0.031415578,-0.039124273,0.0039797467,0.002887461,0.017582163,-0.018756948,0.009437873,0.02530406,0.010751256,-0.015285394,-0.022637695,0.015245795,0.009860268,-0.007523899,-0.007160904,0.022558497,0.031521175,-0.015047798,0.015008198,-0.007141104,-0.0017242269,0.018994546,0.00669561,-0.023984078,-0.063464746,-0.064890325,-0.02753483,0.024974065,-0.009114478,0.01937734,-0.015562591,0.007075105,0.02152891,-0.009055078,0.034689132,-0.016961772,0.0132526215,-0.033976343,-0.048654545,-0.006392014,-0.0040424457,0.018321354,-0.010691856,0.0027307132,-0.009589671,-0.042899422,-0.009866867,-0.0055934247,0.0073985006,-0.028854812,0.0039005475,0.10132184,-0.0003768137,0.0033610049,-0.0036332512,-0.0013331821,-0.017344566,0.009167277,0.0033758546,0.0044120406,0.0019832733,-0.017212568,0.0001938724,-0.006540512,0.00031535202,0.0047123367,-0.031758774,-0.009866867,-0.009833868,0.000085850406,0.021396913,-0.038992275,-0.006474513,0.01120005,0.022901691,0.026465645,-0.011655443,0.016974973,-0.00898248,0.0017258768,0.013727816,0.031653173,0.050713718,-0.00057419227,0.013325221,-0.009629271,-0.0032917059,0.007847294,-0.018677749,-0.04084025,0.005860721,-0.024894865,0.03859628,-0.02748203,-0.04828495,-0.002296769,-0.030359592,0.046674572,0.049736932,-0.005642924,0.016684575,0.005745223,0.05356488,0.014942199,-0.028089223,0.015786989,0.009503872,0.006335915,0.008632684,0.007022306,-0.008243289,-0.023403285,0.023720082,-0.020459725,0.010196863,0.005273329,0.014968599,-0.02742923,0.0044780397,0.0033857545,-0.02307329,-0.010223263,0.02464407,-0.03949387,0.009068279,-0.024591269,-0.0016631776,-0.0037355497,-0.0025640656,-0.0054647266,0.016658176,0.02159491,0.0006488538,-0.01335822,-0.00887028,-0.008467686,0.037725095,0.033659548,0.03120438,0.007840695,0.010243062,0.003497953,0.021146117,0.018453352,0.059082408,-0.0097876685,0.008573284,-0.012909426,0.01417661,-0.017146569,0.0014643553,0.0144010065,0.015232596,0.021779707,0.015377793,0.020222127,-0.0058442215,-0.03513793,-0.01415021,-0.020644523,0.027270833,-0.022122903,0.010751256,-0.014559404,0.015958585,0.020367326,-0.050898515,0.015839787,0.0051116315,-0.011332048,0.020235328,-0.03265636,0.022611296,-0.03946747,0.032313164,0.0028198122,0.012176836,-0.067952685,-0.054805662,0.012315434,0.023165688,-0.035665922,-0.020710522,-0.039203472,-0.013463819,0.0033593548,-0.042952225,-0.0013645317,-0.051769704,-0.024168875,-0.0075502987,0.047862556,-0.003281806,-0.020288127,-0.010988852,-0.013543018,-0.0447738,0.044721,-0.021436512,0.016671376,-0.02296769,-0.047281764,-0.0036233512,0.036035515,0.0074644997,-0.020684121,0.0067220097,0.0015790288,-0.089442,0.015984986,0.028326819,0.020367326,-0.028749214,-0.0012284085,-0.028326819,0.022611296,0.030570788,-0.02761403,-0.00014127935,-0.0014420806,0.012282435,-0.019443339,0.017001372,-0.007992493,-0.0074776993,0.0672135,0.05124171,0.021660909,-0.010196863,0.027033236,-0.041104246,0.011417846,0.010678656,0.007741696,-0.007048705,0.022545297,0.016565777,0.0026449144,-0.003121758,0.023931278,-0.03194357,0.034557134,0.0041975435,-0.011952439,0.011483845,0.0007961143,-0.029382804,-0.019641336,-0.02526446,-0.026439244,0.02167411,0.014849801,-0.009424673,0.0021862206,0.004111745,0.04007466,-0.006253416,-0.0011599344,-0.017357767,0.015417392,0.042265832,-0.008837281,-0.008038692,0.009286075,0.0033181054,-0.01042126,0.0031019584,-0.009992266,0.038886677,0.04825855,0.0014726052,-0.038517084,-0.02306009,-0.006649411,-0.004243743,-0.006405214,0.0065108123,0.00671541,-0.0063194153,0.03431954,-0.036959503,0.0596632,0.021344114,0.009081478,0.0071939034,-0.00297491,0.0074249003,0.00008038486,0.018228956,0.021713708,0.027666828,-0.01267183,0.023271287,0.02603005,-0.016011385,0.039942663,-0.004758536,-0.041553043,0.038147487,0.014374607,0.016803375,0.018928546,0.0051479307,-0.004926834,0.005359128,-0.026597643,-0.032313164,-0.009385074,0.030069197,-0.007682297,0.023469284,-0.023139289,0.003138258,-0.0148234,-0.003567252,0.03117798,0.009378474,0.011840241,-0.010790855,-0.0029501603,0.022479298,0.06774149,-0.0068309084,0.012836828,0.015430593,0.0152721945,-0.0073985006,0.018374152,-0.00089841295,-0.0025904651,-0.014625403,-0.020921718,-0.0023512184,0.04905054,0.052324098,-0.0018232255,0.0123814335,0.006444813,-0.011668643,0.028221222,-0.0018941745,0.059135206,-0.018836146,-0.010388261,0.006916707,-0.04685937,0.0002536841,-0.028010024,0.0073787007,0.02896041,-0.0047981357,-0.045908984,0.020274928,0.04173784,-0.005732023,-0.004966433,0.0041216444,-0.00036175764,0.0077218963,-0.033263553,-0.014361407,0.03257716,-0.01858535,0.005477926,-0.0074579,0.027878026,-0.008296088,0.008487486,0.015430593,0.02605645,0.0048608347,0.038305886,0.017542563,-0.01933774,-0.042213034,0.033421952,-0.005507626,0.004633138,0.014612203,-0.038147487,0.02076332,-0.004322942,-0.027719628,0.044193007,0.021819307,-0.0036299513,-0.00520073,0.0076030977,0.021462912,-0.028590815,-0.005735323,0.006537212,0.027693229,0.009365275,0.012407834,-0.019918533,-0.010005466,-0.03336915,0.011978839,0.020050531,0.021330914,0.009286075,0.0018281754,-0.025277661,-0.016671376,0.0054647266,-0.03434594,0.010302462,0.040523455,-0.005289829,-0.026954038,-0.0043559414,-0.017186169,0.024432871,-0.0446418,0.029382804,0.0124672325,0.035296325,0.018096957,0.018387353,-0.008995679,-0.00088026316,0.014612203,0.04004826,-0.049525734,-0.014691402,-0.010012065,0.007134504,0.042081036,-0.03059719,-0.004313042,0.004313042,-0.024987264,0.013292221,-0.018479751,-0.012117437,-0.015760588,0.020552123,0.023271287,0.0030805087,0.022254901,-0.024195274,-0.0021301215,-0.0034715533,0.008375287,0.017991358,0.03268276,0.011417846,0.02163451,-0.011351847,-0.0042635426,-0.033765145,-0.023099689,-0.029250806,-0.042107433,0.030702787,-0.004808035,-0.006108218,0.012711429,0.014704603,0.0009916367,0.006982706,0.01042126,-0.008421487,0.027930824,0.0078076953,0.027006837,0.0004252818,-0.031758774,-0.014031411,-0.0009974116,-0.011556445,-0.0010271112,0.011371647,-0.016248982,0.004154644,0.02151571,-0.0061709173,0.014533005,0.0086392835,0.0031844573,0.030174794,-0.044193007,0.0062897154,-0.016130183,0.0042734426,-0.01572099,0.0010790855,-0.032207567,0.0053789276,0.01632818,-0.018822948,-0.023746481,-0.022571696,-0.000104876715,0.0007919894,0.01850615,0.00005254148,0.008388488,0.018770147,0.009609471,0.020288127,-0.0061544175,0.0023974178,-0.018743748,-0.020499324,0.01850615,0.008672283,-0.037593096,-0.014651803,-0.033580348,-0.0071279043,0.007728496,0.009299275,0.013180023,0.027059637,0.02758763,0.016869374,0.03257716,-0.0018001258,0.067952685,-0.01335162,0.0036299513,-0.0042074434,0.023627682,-0.012968826,-0.0031366078,-0.0034352539,0.025700055,0.013219622,0.011318848,-0.035190728,-0.023376886,-0.00820369,0.014572605,-0.027297232,0.0064382134,0.0018727249,-0.0036200513,-0.03051799,-0.015786989,0.013793815,-0.028670015,0.003422054,-0.039916262,0.039071474,0.011450846,-0.006923307,-0.024102876,-0.012427633,0.014585804,-0.0019964732,-0.003044209,0.0048806346,-0.023350487,0.013767415,-0.017687762,-0.009259676,0.06261996,-0.016631776,-0.029462004,0.02445927,0.016130183,0.0079396935,0.021291314,0.015324994,0.009352074,-0.0036695506,-0.03577152,0.01854575,-0.0025838653,0.0053723278,0.00223242,0.015813388,0.0037586496,0.022149302,0.00008435512,-0.020512525,0.022030504,-0.019364139,-0.012724629,-0.019892132,0.00089923793,-0.0020014232,0.013543018,0.007860495,-0.0007127904,0.035956316,-0.0020063731,0.009807468,-0.0296468,0.01778016,-0.008586485,-0.017410565,0.025488857,0.042952225,0.031653173,-0.012368234,-0.007279702,-0.030781986,-0.01117365,-0.0031679575,-0.035454724,0.036695506,0.009325675,-0.029462004,0.022215301,-0.020354126,-0.015747389,-0.0020212228,0.02018253,-0.015483392,-0.017397366,-0.006890307,0.048971344,0.039942663,0.01187984,0.017450165,-0.005821122,0.012744429,-0.016248982,0.0035276527,0.0050159325,-0.019826133,0.015060998,0.024353672,-0.0048707346,0.0056099244,-0.009642471,-0.017238969,-0.031732373,0.025739655,0.009253075,0.032313164,0.013754215,0.010289262,-0.01339122,-0.016724175,0.019152943,-0.004157944,-0.022558497,-0.014282208,-0.04849615,0.022439698,0.038939476,0.010625857,-0.018426953,0.044905797,-0.04023306,-0.0121900365,-0.020340927,-0.012335234,-0.014110611,-0.0038180486,0.035111528,-0.0026713142,-0.016130183,-0.01270483,-0.008296088,0.018426953,-0.004606738,-0.022716895,-0.00963587,0.019192543,0.02461767,0.013325221,-0.007075105,0.011708243,-0.019060545,-0.016565777,0.03482113,0.00822349,0.011219849,0.015536191,-0.022743294,-0.043876212,0.014638604,0.008461086,0.022426499,0.018360954,0.022624496,-0.032524362,-0.039097875,-0.013160223,0.020010931,-0.0074315,-0.017542563,0.0030838086,-0.021185715,-0.024327273,0.0034814533,-0.011312248,-0.0037718492,0.0018743748,0.0012836828,-0.008956079,-0.015126997,-0.018783348,-0.014546204,0.0223341,-0.001639253,0.026518444,-0.0008204515,0.027218034,-0.015351393,-0.030940384,0.026122449,-0.010665457,-0.031230781,-0.023786081,0.015866186,0.01788576,0.020367326,-0.024221674,0.018466553,-0.0059267203,0.048839346,0.0076294974,0.013008425,0.008025493,0.0017473266,0.015707789,0.03862268,-0.0009734869,-0.0048674345,-0.021370513,-0.01850615,0.031600375,0.002613565,0.00887028,-0.009266276,-0.028221222,0.018321354,-0.01037506,0.01628858,-0.015113797,0.007160904,-0.013701416,-0.04305782,-0.015496592,0.024960864,0.03569232,-0.028326819,-0.033633146,0.03410834,-0.02155531,0.026280846,0.014638604,0.02006373,0.024089675,-0.013067825,-0.039916262,-0.0023726681,-0.05728723,0.033342753,0.024314074,0.031045983,-0.0035276527,-0.01572099,-0.007814295,-0.026360046,-0.04551299,0.014308608,0.004408741,-0.003349455,0.047070567,0.0223077,-0.013094224,-0.0045902384,0.007147704,-0.009814068,0.009411474,-0.0029089109,0.004306442,-0.005600025,-0.008553485,-0.06980066,0.0056957235,-0.0074183005,0.016116984,-0.0063590147,-0.050898515,0.027693229,-0.044272207,0.007002506,-0.0144010065,0.020578524,-0.009292675,-0.019496137,0.017436966,-0.01562859,-0.028907612,0.03936187,-0.035296325,-0.013661817,0.044932198,-0.0019684236,0.01857215,0.012823627,-0.02901321,-0.0073919008,-0.03656351,0.001561704,0.0045737387,-0.006890307,-0.013701416,0.0099592665,0.03585072,-0.022202102,0.026624043,0.022030504,-0.0027406132,-0.024512071,-0.015153396,-0.02522486,0.00077590207,0.01412381,-0.010698456,-0.001118685,-0.011087851,0.019654537,-0.029330006,0.030913984,0.0069431067,0.004072145,0.009312475,0.008117891,-0.0001397325,-0.007273102,0.005814522,0.018440152,0.013279022,-0.014691402,-0.036009118,0.031494778,-0.007616298,0.024591269,-0.03870188,-0.005794722,0.017067371,0.015998185,0.011325448,-0.029330006,0.039810665,-0.029409206,-0.012097637,0.023456085,-0.0012746078,0.03199637,0.001785276,0.0031729073,0.02007693,0.030993184,-0.0070553054,-0.005672624,-0.003196007,0.02082932,-0.011840241,0.016486578,0.030016396,0.009226676,0.0035276527,-0.0018611749,-0.002456817,-0.01338462,0.027086036,-0.017304968,0.026412845,0.00045663136,0.034794733,-0.0068837074,-0.01866455,-0.007075105,0.00036608882,0.012150437,0.051083315,-0.008243289,0.036193915,0.026558043,-0.025858453,-0.010190263,-0.008434687,0.0020756721,-0.013899413,0.029857999,0.005441627,0.030887585,0.010599458,0.028881213,-0.04398181,-0.008474286,-0.023865279,0.026610842,-0.013265822,-0.0035210527,-0.018057358,0.007345701,-0.017661363,-0.024036877,-0.032445163,-0.0004698312,-0.01564179,-0.00074455247,0.017001372,-0.0019106743,0.003950047,0.010058265,-0.021687308,0.016737375,0.045248993,0.004768436,0.0021119716,0.010203463,0.029330006,0.013199823,-0.014849801,0.01116705,-0.009220076,0.009312475,0.007886894,0.0058376216,0.0012952326,0.020274928,0.020552123,0.03801549,0.018123357,-0.00596302,-0.0016004785,0.0042107436,-0.0029419104,-0.033738747,-0.012196636,0.010896454,0.04316342,-0.035322726,-0.0011599344,-0.023601282,-0.012803828,0.017727362,0.005048932,-0.013899413,0.0062930156,0.012011838,0.025581256,-0.039652266,0.0069893063,0.01858535]},{"id":"interface-CdnUrlOptions","type":"interface","source":"main","text":"Interface: CdnUrlOptions\nProperties: extension: string, size: number","meta":{"url":"/docs/typedefs/CdnUrlOptions"},"embedding":[-0.0067483843,-0.035213023,0.037011035,-0.017653212,-0.018949183,0.005105071,-0.005633383,-0.03663742,-0.025242226,0.029725581,0.0013039968,-0.021401018,0.0049328585,-0.0016418538,0.017232899,0.011412708,-0.041424338,0.045954395,0.030052492,0.014524204,0.0141155645,0.0011689999,0.01699939,0.033928726,-0.008347915,0.007793333,0.019264419,0.090601146,0.043759417,-0.021727929,0.028137727,-0.03458255,0.01369525,0.035353128,0.0055633304,0.0025729674,0.05814352,0.011377682,0.018248659,-0.0021074107,-0.024962015,-0.0013879138,-0.01991824,-0.015201378,-0.02162285,0.02393458,-0.015154676,0.026946835,-0.0027043158,0.011751295,-0.013858706,-0.0018841185,-0.02116751,0.0009318433,-0.061272524,0.00024153494,0.021249237,0.025172174,0.0010763264,-0.04838288,-0.03287794,-0.049970735,-0.0009230867,-0.0042907116,0.034816056,0.045674186,-0.04586099,0.049410313,0.0005549466,0.012445982,0.017840018,-0.016252164,-0.011669568,0.018505517,0.0077816574,0.019287769,-0.0043432508,-0.002492699,0.02911846,0.0027130723,-0.0134383915,0.044273138,-0.059264358,-0.08560407,0.02594275,-0.0027364232,-0.052072305,-0.03229417,-0.026036153,0.024098037,0.01440745,-0.019229392,-0.06785745,-0.0074080448,-0.041914705,0.0037186164,0.031523593,0.0046876753,-0.015248079,0.023362486,0.011161687,-0.008838282,-0.034816056,-0.018248659,0.013485093,-0.026923485,0.025102122,0.011418547,-0.001384995,-0.014675984,-0.03624046,0.03659072,0.006497363,0.005610032,0.03110328,-0.030939823,0.0004972993,0.043362454,0.021961438,-0.016789233,-0.034979515,-0.03056621,0.052305814,-0.0007676579,-0.045510728,0.007069458,-0.046631567,0.011336818,-0.054360688,0.012142422,0.008371266,0.032060664,0.007962626,-0.003377111,0.015598341,-0.03292464,-0.0402568,-0.010682995,-0.025545787,0.0050525316,0.063000485,-0.02535898,0.06393452,0.010776399,0.0072270758,0.036520667,-0.038178574,0.030379403,-0.018400438,0.0051488536,-0.04698183,-0.0050700447,-0.0068826512,-0.03000579,-0.0061354255,-0.0431523,-0.0015046678,0.03343836,-0.067297034,-0.014921168,0.04088727,0.0005166367,-0.003336247,0.0330881,0.03922936,0.014629283,0.05361346,-0.0036281322,-0.057209484,0.013800329,0.034535848,-0.05277283,0.0022825417,-0.0035318101,0.022451805,0.022253321,0.010046686,-0.035399828,0.016158761,0.04200811,0.06832447,0.024891963,0.015656719,-0.052212413,-0.006357258,-0.006637468,-0.0072737774,0.0097139375,0.046421412,0.007022756,-0.019953268,0.00062682334,-0.00054290635,0.0095329685,-0.038552187,0.023152329,-0.012130746,-0.02419144,0.0044775177,-0.015107974,0.0019541709,0.002050493,0.054921106,0.0027247476,-0.009567995,0.02622296,-0.03220077,-0.030075844,-0.043619312,-0.014477503,0.020140074,0.046304658,0.008709853,0.011943939,0.0074080448,-0.025312278,0.06472845,0.01280792,0.0057005165,-0.031149982,0.001865146,-0.01948625,0.03056621,-0.0489433,0.055481527,0.01931112,-0.038458783,0.0057997573,0.015493263,-0.014068863,-0.027530605,0.0075072856,-0.03687093,-0.044249784,-0.02248683,0.0115761645,-0.015306456,-0.009585507,0.0115353,-0.04667827,-0.014652633,-0.03631051,-0.040747166,0.048429582,-0.026106207,-0.013239909,-0.012165772,-0.04067711,-0.0346059,-0.0050291806,-0.024284843,0.02680673,0.022603584,-0.052352518,0.02995909,-0.032060664,-0.022148244,0.033298254,-0.0012784569,0.0051488536,0.025522435,-0.04434319,-0.022451805,0.010805587,0.033368308,-0.026293013,0.005537061,0.023058925,-0.02002332,-0.008774067,0.072994635,-0.04006999,0.017571485,-0.0042264964,-0.017267924,0.03890245,0.0073963692,0.008137757,-0.015131325,-0.0137769785,-0.005712192,-0.041097425,-0.035259724,0.032807887,0.000045743873,-0.02939867,0.023000548,-0.0046818373,0.024985367,-0.0055516553,0.0402568,-0.018283684,-0.026433118,-0.06556907,-0.03381197,0.042148214,-0.0023919987,-0.045674186,0.024915315,0.008528884,-0.007548149,0.040770516,0.03458255,-0.027600657,-0.05935776,0.039976586,0.031476893,0.031220034,0.024938665,-0.02004667,0.03799177,0.0061295875,-0.06421473,-0.008149433,-0.015598341,-0.022778716,0.0051722047,-0.028184429,-0.011260929,0.025452383,0.0346059,0.0032282495,-0.039065905,-0.028254481,0.031827156,-0.02479856,0.0029130136,-0.02136599,0.01702274,0.011914751,0.009235245,0.0032749511,0.036707472,-0.0008296835,-0.010140089,0.049503718,0.00011629798,-0.0036777526,-0.002739342,0.0075014476,0.0026751272,-0.012761218,-0.002437241,0.006228829,0.040163394,-0.022148244,-0.033368308,0.015411534,0.03224747,0.042872086,-0.044459943,0.0068184366,-0.061879646,0.007974301,-0.025218874,0.00093622156,0.029165162,-0.08219485,-0.051091574,0.0009719775,-0.044529997,0.050297644,0.010682995,0.012737867,-0.07392866,0.022661962,-0.036497317,-0.025475735,-0.00002367006,-0.023899555,-0.006088724,0.02995909,-0.015820174,-0.03222412,-0.02708694,0.026970185,-0.010315221,0.03862224,-0.0020154668,-0.009620534,0.06402792,0.04004664,-0.057442993,0.022860443,0.031570297,-0.0071336725,-0.012364254,0.014489178,0.008149433,-0.015411534,0.0012872134,0.033531763,0.00054874405,-0.01471101,0.015166352,0.040140044,0.034489147,-0.016742531,-0.01570342,-0.039369468,0.05562163,0.005948619,0.007040269,0.0038558026,-0.015411534,-0.038482137,0.03110328,0.019357821,0.043385804,-0.058517132,0.0068417876,-0.010577917,0.04378277,0.02538233,0.063093886,0.01712782,-0.009007575,-0.0022825417,0.03806182,0.043619312,-0.013636873,0.07266772,-0.050904766,-0.013380014,-0.010215979,-0.009042601,0.009906582,0.057489693,-0.029258566,-0.012049018,-0.0038382895,0.025032068,0.048849896,0.038832396,-0.016403943,-0.045674186,-0.009994146,0.05412718,-0.0067308713,0.004748971,-0.057162784,-0.016917663,-0.010741373,-0.015072948,0.0079276,-0.016707504,0.05300634,0.0144541515,0.03283124,-0.041914705,-0.046631567,0.019603005,-0.06785745,0.028417936,-0.0055458173,0.0057209483,0.014045512,0.0022372995,0.027834166,-0.03689428,0.005256851,-0.03511962,0.0071862116,0.03194391,0.027740764,-0.0014287777,0.0008362509,0.0120723685,-0.014325722,-0.017081117,0.03229417,0.003041443,-0.0004133823,0.0010500568,-0.030682964,-0.021984788,-0.0030589562,-0.050204244,0.007921763,0.0056596524,-0.018750701,-0.0069060023,-0.012877972,0.008371266,0.006380609,0.11441897,0.035703387,0.035306424,0.008826606,0.008633962,0.014162267,0.0066082794,-0.0073496676,-0.010939854,-0.0111792,0.019299444,-0.011360169,-0.032784536,-0.021938086,-0.0012405118,0.017653212,-0.06430813,0.0020213046,-0.015750121,0.042148214,-0.0029436615,-0.019451225,-0.04072381,-0.04779911,-0.015434885,-0.0007676579,0.043409158,0.0057238676,-0.01072386,-0.02391123,0.02594275,-0.016625777,0.020011645,0.0013616441,0.012877972,-0.0120723685,0.033648517,0.023012223,-0.017384678,0.018435465,-0.014208968,-0.055434823,-0.058750637,-0.01961468,-0.023082277,0.003254519,-0.04875649,-0.017069442,-0.014524204,-0.022440128,-0.021949762,0.017011065,0.001570342,0.038785696,-0.04093397,-0.0023963768,-0.0030881446,-0.0023379999,-0.018739026,-0.019836513,0.005359011,0.00785171,0.0124226315,0.010373597,0.005084639,-0.022977198,0.0037156977,0.013286611,0.010262681,-0.0038820722,0.023315784,0.01933447,-0.005770569,-0.045931045,-0.011710431,0.0053152284,-0.05968467,0.02767071,0.014500854,0.017034415,0.00029571613,0.009089303,0.006812599,-0.018388763,-0.021634527,-0.028324533,0.006789248,-0.016964363,0.06640971,0.028651444,0.00008815843,-0.041330934,0.0025277252,-0.01872735,-0.033835325,0.02289547,0.0048569688,0.011873887,0.041050725,-0.011348493,0.0036135379,0.020665467,-0.00950378,0.034792706,0.06570918,0.017092792,0.035213023,0.024378246,-0.020034995,-0.0009624912,0.016707504,0.061786246,0.014290696,0.0025364817,0.02540568,0.019929916,-0.026666624,-0.01382368,-0.0096789105,0.049410313,0.042171564,0.0060770484,0.007378856,-0.009083465,0.012562736,0.011932264,0.005688841,-0.0077174427,-0.051558588,0.014103889,0.013555145,-0.014033837,-0.01844714,-0.022732014,-0.04702853,0.015411534,-0.0007859007,-0.015995305,0.041868,-0.032434277,0.0026897215,-0.014185618,-0.048242774,-0.02652652,-0.008680664,0.02192641,0.00950378,0.020338556,-0.028020972,0.0017192034,0.013391689,0.020303529,0.013917083,-0.0026138313,-0.013088129,0.027740764,0.0058989986,0.052539323,-0.00039331522,-0.0008355212,-0.022802066,-0.006649143,-0.002551076,-0.0036631583,0.031827156,-0.013625198,0.014617607,-0.012819595,0.00464973,-0.005067126,-0.008931685,-0.004410384,0.008447155,-0.023514265,0.021517772,-0.024308193,-0.018260334,-0.014022161,-0.017594835,-0.020408608,-0.010180953,0.032177415,-0.0074138823,-0.038785696,-0.008464669,0.01872735,0.05562163,0.01931112,0.018061852,-0.005399875,-0.064961955,0.027880868,-0.020980703,-0.035586637,0.015913578,-0.053473357,0.06435483,-0.008301213,-0.02622296,-0.0026284256,-0.030332703,0.00040717976,0.053379953,0.0075598247,0.028744847,0.030122545,-0.023093952,0.038505487,-0.023222381,0.012889647,0.047775757,0.026316363,0.0020461148,0.0046176226,-0.025569137,0.024238141,0.0021993543,-0.062486768,0.027320448,-0.006024509,0.0050175055,-0.047705706,-0.025545787,0.017781641,-0.005461171,-0.018984208,0.001001166,-0.032107364,-0.008073542,0.026713327,0.005067126,0.0011835942,0.023887878,-0.019848188,0.020058347,0.008412129,-0.029795634,-0.03694098,0.018050177,0.021027405,0.06454164,0.01687096,0.030893123,0.0043636826,0.015026246,0.013356663,-0.008073542,-0.022673637,0.061179124,-0.022416778,0.0389258,0.0330881,0.02767071,-0.01900756,0.0021526527,-0.0073496676,0.023619344,0.031920556,0.011780484,0.0068768137,-0.011710431,-0.00041374716,-0.01023933,-0.017081117,-0.019065937,-0.0030064168,0.0062696924,-0.0010296248,0.017034415,0.017116144,-0.017314626,0.038995855,-0.021938086,-0.0009873015,0.009900743,-0.004194389,0.0026649113,-0.024915315,0.032154065,0.0151430005,-0.00097562606,-0.04495031,-0.0018899562,0.01209572,0.012796244,-0.013683575,0.012562736,-0.059778076,-0.012842946,0.026199609,-0.0547343,-0.02683008,-0.062440068,-0.026316363,-0.028161077,0.04200811,-0.03000579,-0.014594256,-0.020735519,0.024728509,-0.030099194,-0.014746036,-0.039556272,0.008949198,-0.010653807,-0.020712169,0.0033245715,-0.008937523,-0.03663742,0.023806151,0.011926427,-0.009544644,-0.0576765,0.011850536,0.014033837,-0.0006052968,0.0026838838,-0.031313438,-0.00950378,0.032177415,0.0021833007,-0.011114986,0.011762971,0.022545207,0.003555161,-0.032317523,0.044856906,-0.0024226466,0.02015175,-0.013450067,0.031570297,0.034512497,0.027133642,0.026036153,-0.016859286,0.053520057,0.029445373,-0.000020557378,0.0019702245,0.003161116,0.030379403,-0.048849896,0.013193208,0.041611142,-0.0077466313,0.03582014,0.0431523,-0.0061295875,-0.0033420848,-0.020011645,-0.031850506,0.008949198,0.04590769,-0.005458252,-0.028884953,0.010332733,-0.050297644,0.013204883,0.028464638,-0.0029071758,0.014769387,-0.0034033805,0.0020037915,0.0054086316,0.026923485,-0.0021132482,-0.013193208,0.0019862782,0.014477503,0.008108569,-0.0023525942,-0.014909493,-0.007022756,0.012434307,-0.022907145,-0.019731434,0.006637468,-0.016053682,0.0024182682,0.01915934,0.031313438,-0.017081117,0.029281916,0.021190861,0.0020796815,0.03661407,0.0288616,0.0040951483,-0.02058374,0.0021030323,-0.010052524,-0.016485672,0.021097457,0.0019468738,0.01903091,0.019287769,0.011768809,0.0067250333,-0.018949183,0.010665483,-0.026783379,-0.01755981,0.05099817,-0.0069410284,0.0037623993,0.016357243,-0.02035023,-0.004156444,0.01890248,-0.01712782,0.035656687,-0.0388791,0.028698146,-0.00006968757,-0.014886142,-0.008248674,-0.017699914,-0.017174521,-0.03173375,-0.0011544056,0.015633367,0.042475123,-0.0055428986,-0.024681807,0.010402786,0.064681746,-0.0179918,0.00698773,0.030893123,0.008587261,0.013566821,0.03196726,0.018517192,0.01933447,-0.013917083,-0.0038820722,-0.044249784,0.013905408,0.007600689,-0.05683587,-0.042802036,-0.027040238,-0.041751247,0.0034442446,0.0019760623,0.017606512,0.018785726,0.00030866853,0.021284264,-0.035936896,-0.05991818,-0.007548149,0.015014571,0.0070752953,0.031220034,-0.03862224,0.05683587,0.054080475,-0.030589562,0.03054286,0.009001737,-0.026923485,-0.00569176,-0.054921106,-0.038131874,0.00016865488,-0.023899555,0.009159355,-0.038598888,0.00922357,0.010852289,0.023712749,0.0019293607,-0.011506111,0.0016506104,0.019147664,0.020034995,-0.013088129,-0.05394037,0.010507865,0.008301213,0.018236984,0.007337992,0.025872698,-0.0045388136,-0.030612912,0.00008104373,0.015831849,0.017688239,-0.0052276626,0.042171564,0.01643897,0.0051079895,-0.017197872,-0.012224149,0.008785742,0.07556322,0.015178027,-0.026012802,-0.021844683,0.012924673,0.0023511348,-0.016427295,0.017186197,0.043105595,-0.013228234,0.0071511855,0.010070037,-0.011336818,-0.0055078724,-0.015084623,-0.043595962,0.048849896,-0.015516614,-0.028487988,0.019976618,-0.018960858,-0.009982471,-0.031920556,0.022556882,-0.007980139,-0.00021781928,0.013566821,-0.0018301198,-0.039532922,-0.003318734,0.008400454,0.02939867,-0.023164004,0.000848656,-0.038995855,-0.023689397,0.0061704516,0.011582002,0.020338556,0.04899,0.012189123,-0.010694671,0.031523593,-0.006228829,-0.0026444793,0.023654372,0.0048394552,0.00894336,-0.0050788014,-0.06272028,0.03824863,-0.013671899,0.00619964,0.014138916,0.012119071,-0.006637468,-0.008925847,-0.016217139,-0.01669583,-0.0081786215,-0.010128414,-0.015773471,-0.021179184,-0.021587824,0.0025525354,0.014512529,-0.0180385,-0.00057173,-0.014909493,0.022276673,0.01956798,0.009918257,-0.0044862744,-0.0010201385,0.0050145867,0.03575009,0.0015411535,0.014897817,-0.00024627807,0.007974301,0.020852273,-0.012259175,0.0015294781,-0.022778716,0.016205462,0.041938055,0.010215979,0.0077699823,0.018283684,0.049550418,0.024962015,0.007022756,0.022451805,0.0007410234,-0.027577307,0.0058814855,-0.04434319,0.0103677595,0.014489178,-0.003966719,-0.008867471,-0.02505542,-0.013134831,0.005633383,-0.00097635575,0.0033128962,-0.015820174,0.026783379,-0.0047752406,0.00993577,0.01453588,0.009702262,0.0086865015,-0.03458255,0.0038120197,0.026666624,-0.0017440136,-0.002537941,-0.027040238,0.009608858,0.026106207,-0.013660224,0.00264302,0.016579075,-0.009492104,0.004495031,-0.008225323,-0.017326301,0.014092214,-0.021879708,0.034162235,0.004121418,0.029585477,-0.0033304093,-0.031430192,0.025499085,0.0012894026,-0.029141812,0.010070037,0.005942781,0.012866297,0.0022212458,-0.020595415,-0.0026999374,0.032480977,-0.0021161672,0.04875649,-0.014022161,-0.0047810785,0.030659614,-0.042475123,-0.0055253855,-0.035049565,0.0223584,-0.002459132,-0.0032457625,0.019019235,0.036357213,0.020315206,0.00051882584,0.031220034,0.008225323,0.020361906,0.01771159,0.038131874,-0.0068417876,0.030729666,0.004264442,-0.014302371,0.0048628063,0.0063922843,0.017139494,0.014640958,0.0011361629,-0.018085202,0.00713951,-0.01697604,0.027320448,-0.026923485,-0.010204304,0.0073671807,-0.00034442445,-0.005160529,0.029211864,-0.0045446516,-0.003569755,0.005478684,-0.017629862,0.0074138823,-0.0029553368,0.002088438,0.0061879647,0.0124109555,0.022603584,-0.03782831,0.002197895,-0.013018076,0.0095329685,-0.010075875,0.026923485,0.0039754757,-0.03633386,0.01771159,0.002589021,0.015364833,-0.008318726,0.011114986,-0.027857516,0.01455923,-0.032480977,-0.028020972,-0.00047905647,-0.016158761,-0.017933423,0.010659645,-0.007880898,0.010642132,-0.01646232,-0.018026825,-0.013029752,0.0071161594,0.011856374,0.040163394,-0.00041484175,-0.029001707,0.02650317,-0.014804414,0.048429582,-0.010647969,0.04698183,0.052492622,-0.0039170985,0.033508413,-0.0050904765,-0.010251006,0.017326301,0.014500854,0.020490335,-0.016275514,-0.017244574,-0.0008479263,0.0028896627,0.0068359496,-0.02291882,-0.06225326,0.040186744,-0.0023336215,0.0070169186,-0.0085055325,0.000285865,-0.023304109,0.014220644,0.025755944,0.024121387,-0.0032282495,0.030753016,-0.009772314,-0.022708664,0.011506111,0.024891963,0.008272025,-0.018050177,0.018844103,-0.02883825,-0.03696433,-0.017933423,0.0006804572,0.0008508451,-0.016368918,-0.01427902,0.007180374,-0.030075844,0.021249237,0.019696409,-0.001755689,-0.024611754,-0.014967869,-0.028908303,0.01611206,0.0021307615,0.010070037,-0.005058369,0.010449488,0.00327787,-0.027927568,0.027437203,-0.027904218,-0.035890196,0.010414462,-0.0020110884,-0.0054261447,0.0070752953,0.009696424,0.0033800297,0.0028794468,0.08219485,0.014921168,-0.00051408267,-0.04579094,-0.0047635655,0.008131919,-0.010647969,-0.03168705,-0.055388123,-0.004559246,-0.011978965,0.005572087,-0.0055283043,-0.014827765,0.016182112,0.03717449,-0.022229971,0.005572087,-0.033485062,0.019206041,0.0037536428,-0.03829533,-0.04786916,0.013718601,-0.010227655,0.03397543,-0.00019939402,0.027156992,0.014746036,-0.019124314,-0.006228829,0.02317568,0.008096893,0.013800329,0.004200227,0.038458783,-0.015329807,0.005049613,-0.024705157,0.023841178,0.015668394,-0.02358432,-0.0025481572,0.00018507341,-0.004918264,0.008032679,0.004019258,-0.0047402144,-0.011506111,-0.012025667,-0.023012223,-0.025685892,0.00094278896,-0.0054670083,0.020140074,-0.00094643753,-0.0019351984,-0.0026284256,-0.008143595,-0.0097139375,0.0043374132,-0.024775209,0.006666656,0.014746036,-0.009246921,0.027553957,-0.02736715,-0.0016272595,0.04670162,0.03283124,-0.016684154,0.03051951,0.010052524,0.024424948,-0.008400454,0.06108572,-0.026689976,-0.0063922843,0.028744847,-0.021237561,0.0038412083,0.0029816066,0.030893123,0.029889038,-0.0019060099,0.0045796777,-0.008575585,-0.034675952,-0.0056392206,-0.047378793,-0.0061704516,0.013625198,-0.019381173,-0.01354347,-0.020081697,-0.014465827,-0.015691744,0.012165772,0.01440745,0.003651483,0.00017768507,-0.01669583,0.0031727913,-0.029748932,0.0064273104,0.026339713,0.0025321036,-0.015866876,0.016649127,-0.02907176,0.013193208,-0.006970217,-0.021295939,0.015014571,0.0029553368,0.01702274,0.020922326,0.0259661,0.020420283,-0.024308193,0.012644464,-0.021120807,0.03572674,0.030729666,0.0074489084,-0.057769906,0.017898396,-0.008558072,-0.038225275,-0.016555725,-0.009176868,-0.011751295,0.011243415,0.019801486,0.004597191,-0.0038324518,0.0039170985,0.016403943,-0.020186776,-0.034325693,0.022311699,-0.0015163432,-0.03107993,-0.016952688,0.013368339,-0.007910087,-0.011640379,0.044646747,-0.020245152,0.0040922295,-0.024775209,-0.005627545,0.030145897,0.023432538,-0.015072948,-0.007793333,0.04492696,-0.049457017,0.015213053,0.007478097,0.005084639,0.015901903,0.005058369,0.013882057,-0.036730826,0.011476923,-0.0027043158,-0.0070752953,0.009854042,-0.030659614,0.01542321,-0.028301181,0.009999985,-0.0107063465,0.0005498386,-0.012259175,0.06192635,-0.0006600252,-0.0134267155,-0.01499122,-0.017396353,-0.025592487,0.006065373,0.011727944,0.04677167,-0.019603005,0.0141272405,-0.039462868,0.017256249,0.018750701,0.033204854,-0.026246311,-0.026619924,-0.01697604,-0.0016841772,0.023257406,-0.0021920572,0.006158776,0.0019191448,0.054687597,0.026923485,0.015026246,-0.008890821,0.0016900148,-0.028347883,0.022860443,0.020723844,-0.0016943931,0.0073846937,-0.0077816574,-0.019731434,0.004927021,-0.012329228,-0.018377088,-0.007518961,0.027156992,0.026036153,-0.012177448,-0.0073263166,0.015843526,-0.022743689,0.017734941,0.03406883,0.04927021,0.018213632,0.014150591,0.020140074,0.029305266,-0.025242226,-0.0055516553,0.007653228,0.004786916,-0.018762376,-0.023642695,0.020980703,0.034956165,0.005417388,0.026152907,0.012119071,0.0055020344,0.041027375,-0.020338556,0.03488611,-0.028581392,0.00055640604,-0.019789811,-0.0067834104,-0.024261491,0.00370986,-0.00111792,-0.0014156429,-0.011669568,-0.0011784862,-0.012387604,0.028581392,0.010344409,0.007863386,-0.04810267,0.0024576727,-0.000056963207]},{"id":"interface-ClientEventMethods","type":"interface","source":"main","text":"Interface: ClientEventMethods\nDescription: Typed event handler methods. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...).","meta":{"url":"/docs/typedefs/ClientEventMethods"},"embedding":[0.0111767985,0.005842544,-0.007864534,0.031279396,-0.005135965,0.026654514,-0.028687675,0.009847424,0.0135730235,-0.012020225,0.0054990295,-0.023548916,0.04982361,0.039009873,-0.0036501938,0.00023477002,-0.0026573522,0.024487298,-0.0076411096,0.05666039,0.019951785,0.04153457,0.04385818,0.051745057,-0.0026838838,0.0078421915,-0.0045718187,0.03979186,-0.015952492,0.0013573023,0.049689554,-0.01962782,0.028106771,-0.009283278,-0.0036669506,0.030698493,0.0023040627,0.015237534,-0.034072198,0.041668624,-0.029894166,-0.045243412,0.015360418,0.0451317,-0.06926152,0.013718249,-0.048617117,0.020521518,-0.03682032,0.020052327,-0.016008347,-0.0040383935,0.03288805,0.05196848,0.0152933905,-0.038272575,-0.017013757,0.011104185,-0.01962782,0.018745296,0.01069085,-0.032552913,0.009383819,-0.016131232,-0.029268578,-0.0038680325,-0.012980949,0.005381732,0.01492474,0.03067615,0.035301033,-0.0039099245,-0.026967308,-0.005705697,-0.011484006,-0.009947965,-0.03342427,-0.020532688,0.0060771396,-0.004426593,0.032262463,0.03288805,-0.046650983,-0.042450607,-0.037714012,-0.008557149,-0.052013166,-0.012042567,-0.03152516,0.009830667,-0.014444378,0.01547213,-0.05451552,-0.000032269967,0.045265753,-0.02156044,-0.016969072,-0.0066077723,-0.010674094,0.015248706,0.04892991,-0.07569613,-0.02395108,0.008925799,0.021605125,0.003007849,-0.015583842,-0.0004922316,-0.038719423,-0.010942203,-0.041690964,-0.0028277133,-0.011651575,0.03454139,0.018566556,-0.050359827,0.0657761,-0.010651751,-0.039277982,0.0074902982,-0.03813852,0.04258466,0.038741764,-0.011037158,-0.026676856,-0.054604888,-0.01064058,-0.031100657,0.009350305,-0.005462723,0.05223659,-0.0056135342,-0.0011073465,-0.008590663,0.021448728,-0.0051722713,0.026565144,0.028799387,-0.044908274,-0.041422855,0.037758697,0.015226363,0.014969425,0.023414861,0.015036453,-0.011930855,-0.055319846,0.002921272,0.01962782,-0.044014577,-0.025358653,0.020342778,-0.024442613,0.00092302146,0.041422855,-0.01889052,-0.0035664097,0.019303855,0.00032448882,-0.029670741,0.034965895,-0.04475188,-0.01308149,0.03378175,-0.04901928,0.0030609122,-0.0014550504,0.037088428,0.014768343,0.032508228,0.035323374,-0.019270342,-0.011433736,0.041132405,-0.019058088,-0.05223659,0.00479245,0.03360301,-0.042137813,0.051566318,0.033491295,0.02237594,-0.051521633,-0.023817025,-0.02799506,-0.02256585,0.0066747996,0.035122294,-0.008741474,-0.06278221,-0.004245061,0.020186381,0.007825434,0.018387817,0.04247295,-0.011551034,0.017080784,-0.03463076,-0.028352538,-0.019147458,-0.004937676,-0.059252113,0.027146047,0.010975717,0.018611241,-0.03362535,-0.027704608,-0.006244708,0.034116883,-0.019058088,0.010059677,-0.008786159,0.015572671,-0.005501822,-0.062022574,-0.008529221,-0.050806675,0.015215192,-0.068099715,-0.011718602,-0.0333349,-0.018644754,0.07288099,-0.03076552,-0.066357,0.05067262,0.025783159,0.022800446,-0.011740944,-0.008853186,-0.068412505,-0.0061497525,0.0036250586,-0.021828549,0.060994823,0.0023417654,0.03344661,-0.011461664,0.02007467,-0.031547505,0.022688733,-0.0029324433,-0.0102384165,0.006970837,-0.0012784057,0.042204842,0.0140422145,0.05049388,0.018298447,0.018689439,0.032173093,-0.009294449,0.023057383,0.025313968,0.019739533,0.00444335,0.042696375,0.027659923,-0.011964369,0.017069614,0.036172386,-0.04421566,-0.00023546822,0.03315616,-0.060101125,-0.013226716,0.018119708,0.040506817,-0.0370214,0.0362841,0.025291625,-0.021817379,0.00068842596,-0.004398665,-0.027190732,-0.01713664,0.008635348,0.046785038,-0.024330901,0.024889462,-0.038741764,-0.017929796,0.050449196,-0.015505644,-0.02164981,0.0029128937,-0.020398634,-0.031748585,0.016008347,0.0041110064,-0.0060938965,-0.016365826,0.00861859,-0.051164154,0.018655926,0.035703197,0.039479066,-0.00414452,0.029134523,0.0042338897,0.0028737944,-0.021571612,-0.015304562,-0.06385465,0.03474247,0.00284447,0.026944965,-0.008093543,0.022331255,-0.02228657,0.019873587,0.030184617,-0.0072054323,-0.031055972,-0.035569143,0.014634289,0.01796331,0.065284565,-0.011484006,-0.02533631,0.00026444354,-0.009696612,0.013394284,-0.037423562,-0.020655572,-0.04799153,0.013271401,-0.037378877,0.04946613,0.08025399,0.05353245,-0.055677325,0.021080079,0.010897518,0.0887888,0.010478597,-0.03509995,-0.011081843,0.020253409,0.047678735,0.04745531,-0.039210957,-0.013383113,-0.03789275,0.04781279,-0.023571258,-0.000098184486,0.012087252,-0.014589604,0.016354656,-0.03371472,0.0070322785,-0.02920155,-0.04763405,0.013841133,-0.017181326,-0.023749998,0.0035245176,-0.00074986764,0.019180972,-0.0037367707,0.04745531,0.012031396,-0.00783102,0.025716132,0.021359358,-0.060726713,0.00384569,0.0069484944,-0.05286218,0.006909395,0.04642756,-0.024286216,0.02046566,-0.022498822,0.017929796,-0.029156866,0.003348571,0.017170154,0.014578433,-0.021057736,0.024375586,-0.005348218,-0.0022887022,0.016309971,-0.016276456,-0.059475537,-0.020968366,-0.010735535,0.043433674,0.07037864,-0.022219542,-0.062469423,0.009696612,-0.020420976,0.011707431,0.020119354,0.01100923,0.004418215,-0.011651575,0.0032592013,0.0126346415,0.031904984,0.013874646,-0.022711076,-0.013371942,-0.030698493,0.025827844,-0.006780926,0.028508935,0.05590075,-0.016902044,0.041757993,0.052191906,-0.032396518,-0.039590776,0.007875705,-0.0020904131,0.013896989,0.028196141,-0.037088428,-0.045645576,-0.02303504,-0.007378586,-0.02524694,-0.02294567,0.022063145,-0.032955077,0.018857006,-0.025269283,-0.03619473,-0.011338781,0.04394755,0.007467956,0.042539977,-0.019303855,0.036999058,0.0068479534,-0.009551386,0.03999294,-0.029179208,0.0466063,0.034854185,0.04200376,-0.043813497,-0.009288863,-0.04495296,0.017873941,0.0026559557,-0.011986711,-0.04099835,0.0017231596,-0.009540215,0.023169095,-0.054113355,-0.03297742,0.01566204,0.01390816,0.02946966,-0.015047624,-0.00034281658,0.046740353,-0.04093132,0.046919093,-0.025269283,0.011662746,-0.016689792,0.024666037,0.017952139,-0.031748585,0.0025205049,-0.0011464457,0.019326197,0.022990355,0.0005512295,-0.028888756,0.07560676,-0.010903103,0.03342427,0.029894166,0.03161453,0.048661802,0.0024995587,-0.019873587,-0.05858184,0.067831606,-0.011048329,-0.042160157,0.021013051,0.034384992,-0.019493766,-0.003164246,0.00207226,-0.009691027,0.053666506,-0.021772694,-0.006568673,-0.006484889,0.0096128285,-0.025179913,-0.019638991,0.007440028,-0.06890404,0.01878998,0.03335724,0.053040918,0.009607242,0.044461425,-0.016890874,0.018264933,-0.03299976,-0.025068201,-0.024464956,0.0036809146,0.006300564,-0.012265991,-0.037267167,-0.03655221,-0.008635348,-0.013528339,-0.00090556644,0.040685557,0.013036805,-0.005105244,-0.0084677795,0.0015974834,0.001057076,-0.01972836,-0.03831726,-0.01842133,-0.010260759,0.0018167185,0.040618528,-0.0037702844,-0.009372648,0.013394284,-0.052906863,-0.004437764,0.006071554,-0.040663213,-0.02229774,0.000033928194,0.0033401926,-0.037736356,-0.017125469,0.044550795,-0.012131937,0.038630053,-0.016298799,0.029022811,-0.0010773238,-0.040864296,0.038294915,-0.042227183,0.022398282,-0.016254114,0.0043344307,-0.017985653,0.0073618293,-0.0036781218,-0.0039657806,-0.014422036,-0.0008741474,-0.02754821,-0.03869708,-0.012265991,0.01658925,-0.0023264051,-0.0584031,0.042607006,-0.008316968,0.015796095,-0.01620943,-0.019661333,-0.03152516,-0.0031251467,-0.018868178,0.015226363,-0.01620943,-0.043791153,0.004655603,0.0048259636,0.015986005,0.016712135,-0.011193555,-0.032530572,-0.011389052,0.0040244292,-0.0021853684,0.028352538,0.040774927,0.00460254,0.02045449,0.03813852,-0.0148241995,0.01694673,-0.015148165,0.03270931,-0.013461311,-0.0013538114,0.0025651897,0.00837841,-0.004904162,-0.021862064,-0.005406867,0.045087013,-0.005504615,-0.035591483,-0.05380056,0.035569143,0.018633584,0.053487767,-0.008691204,-0.01576258,-0.04300917,-0.0076131816,0.001752484,-0.0074902982,-0.010919861,0.008143814,-0.04300917,0.029760111,0.0213817,-0.0043316376,0.0032089308,0.032106064,0.016700963,-0.0036557794,0.03020696,-0.0029743353,0.021895576,0.022454137,0.00056903367,-0.02763758,-0.025224598,-0.024018107,0.039479066,-0.022789273,-0.00879733,-0.0039825374,0.0054515516,-0.00788129,0.037267167,0.009450845,0.0207226,0.026051268,0.011495178,-0.006071554,0.019583136,0.015427445,-0.025805501,-0.020566203,0.037311852,-0.011484006,-0.009132466,-0.005401281,0.01832079,0.016511053,0.020744942,0.0022579813,0.037423562,0.006752998,-0.022666391,0.02442027,-0.009959136,0.03143579,-0.015974835,0.01972836,0.000113021255,0.027190732,0.04312088,0.05969896,0.005189028,0.015907807,0.045355123,-0.02625235,0.0036222658,-0.018097365,-0.004161277,-0.02542568,0.012388875,-0.013707078,-0.026274692,-0.03778104,0.019180972,-0.012601128,-0.016254114,-0.0068032686,0.008607419,0.028129114,0.01114887,-0.03342427,0.0061497525,-0.00939499,0.01271284,0.008534807,0.012958607,-0.0033401926,0.024554325,0.02082314,0.00076941727,-0.0049879462,0.0041780337,-0.005959842,0.007294802,0.0066301147,0.034608416,-0.02442027,0.059833016,-0.0135730235,-0.033938143,-0.0028123527,0.0014494648,0.0031111827,-0.017527632,0.005272812,0.011495178,0.0087805735,0.0074288566,-0.023973422,-0.013774105,0.009003998,0.0015639698,0.013852304,-0.029737769,0.029804796,0.038764108,0.04309854,-0.027503526,0.0399706,-0.020979537,0.06269284,0.013282572,-0.0043344307,-0.022364767,0.018276105,-0.023638286,-0.005591192,-0.03197201,0.0035719953,0.016477538,-0.029313263,0.035122294,-0.022320082,0.023057383,0.021415215,0.012277163,0.020488003,-0.028106771,-0.000018404136,-0.04153457,0.0050465954,-0.06903809,0.015159336,-0.03306679,0.0007261288,0.007211018,-0.0141986115,-0.033580665,0.00800976,0.020309264,0.018555384,-0.0018111329,0.011528691,-0.016712135,-0.02763758,-0.01823142,-0.021616297,-0.0177734,0.014153927,-0.010746706,-0.01832079,-0.023347834,0.009668685,0.042517636,0.0018641962,-0.03534572,-0.02560442,-0.013550681,-0.015863122,-0.0050549735,-0.0013014462,-0.0011652971,-0.028598305,-0.016566908,-0.007082549,-0.022577021,0.004610918,-0.006429033,-0.050627936,0.014053386,-0.028151456,0.02164981,-0.00999265,-0.030363357,-0.0112270685,0.01878998,-0.068769984,0.0022160893,0.034943555,-0.015360418,-0.016924387,-0.017527632,-0.010003821,0.05701787,0.011573376,-0.054917682,0.018197905,-0.03492121,0.025783159,-0.028017402,0.02690028,-0.02533631,0.0006158131,-0.022398282,-0.0126346415,-0.0057699312,-0.0038205548,0.004225511,-0.044260345,0.04267403,0.011830314,0.041936733,-0.019382054,0.020756112,0.01345014,0.027570553,0.019482594,-0.017471777,-0.007763993,-0.005035424,0.0020080255,0.06260347,0.03353598,0.014678974,-0.0019451875,-0.07953903,0.035591483,0.006071554,-0.009735712,-0.0013223923,0.019404396,0.005306326,-0.016555738,0.017058441,-0.024263874,0.017952139,0.0071775042,0.0065351594,0.0355468,0.009696612,0.03916627,0.040462133,-0.021973776,0.039769515,0.004655603,-0.010808148,-0.00709372,-0.00049956265,-0.019594306,-0.042271867,-0.023995765,-0.019292684,-0.014880056,-0.0046500172,0.028777044,0.02082314,0.0068870527,0.00075335865,-0.006780926,-0.0032145164,0.030743178,0.010735535,-0.00045138682,0.04111006,0.01390816,0.0008015345,0.0037870412,0.02156044,-0.014109242,0.0017203668,0.012187793,0.009808324,0.0017008171,-0.008210842,0.0108640045,0.017203668,0.031904984,-0.027615238,0.0009642153,0.02681091,0.027213074,-0.019828903,-0.055230476,-0.014846542,0.02007467,-0.021102421,0.009305621,-0.06162041,-0.0035803737,-0.026699198,-0.035881937,-0.0093000345,-0.0451317,0.014176269,0.024464956,0.039389696,-0.030497411,-0.01889052,-0.042182498,0.010473012,0.006836782,0.026274692,0.024643695,0.025649104,0.01308149,0.012902751,-0.041579254,-0.022722246,-0.011137699,-0.031391107,0.012668155,0.013070319,0.00014854221,0.012355361,0.0044796565,0.01666745,0.014600775,0.0031419036,0.020097012,0.023057383,-0.037714012,0.00069052057,-0.02486712,0.018466014,-0.00207226,0.0156061845,0.007719308,-0.016522223,0.02055503,-0.029268578,-0.019460252,-0.0045243413,-0.031100657,0.023995765,-0.008646519,-0.04267403,0.0060827252,0.0156061845,0.010283101,0.0057252464,-0.012813381,0.040707897,0.022778103,-0.013092661,-0.017851599,0.00944526,0.008305796,0.013003292,0.015125822,0.012444731,-0.030229302,-0.030273987,-0.00039308704,-0.0060101124,-0.01418744,0.016723305,0.017717544,-0.014064557,-0.01601952,-0.020800797,-0.0038847893,0.03472013,0.033737063,0.011277339,-0.007870119,0.0005089884,0.0039825374,-0.02690028,0.0029743353,0.019203315,0.043791153,-0.04946613,0.021258818,-0.012813381,-0.030005878,0.008735889,0.003421184,0.021404043,0.005577228,-0.00084203016,-0.04117709,-0.0070211072,0.0047002877,0.024978831,-0.0151369935,-0.019884758,0.018276105,0.009182737,0.031636875,-0.005189028,0.02246531,0.0010144857,0.0046891165,0.048885226,0.008512464,0.035412744,0.0026713163,0.04274106,-0.042338897,0.014746001,0.010014992,0.01566204,-0.03990357,-0.010149047,-0.012042567,0.039322667,-0.007138405,-0.0235936,0.032463543,0.053398397,-0.047410626,0.022610534,0.011422565,-0.035770223,-0.045846656,-0.019136287,0.011221483,-0.015025281,-0.017114298,-0.014589604,0.05666039,-0.013975187,0.030251645,0.014611946,0.012534101,0.02643109,0.010199317,0.029357947,-0.027570553,-0.044796564,-0.030519754,-0.010791391,0.032441203,0.05286218,0.005135965,-0.0008909042,-0.0064793034,0.006557502,0.03353598,0.009947965,-0.022711076,-0.031234711,-0.026386404,0.032307148,-0.00014697126,0.004418215,0.054381464,-0.0045718187,0.019002233,0.0037535275,-0.011707431,-0.010841662,0.002921272,0.022364767,0.019315027,-0.021538097,-0.007819849,0.016734477,0.026006583,-0.030095248,0.0022244677,0.020845482,-0.0048315492,-0.006741827,-0.020499175,0.000047084915,-0.020510346,-0.021973776,-0.053040918,-0.013371942,0.025827844,-0.01118797,0.008238769,-0.026743883,-0.00024663942,-0.01510348,-0.005591192,-0.011372294,-0.01299212,-0.019002233,0.005401281,-0.0057252464,-0.023839368,-0.022900986,0.019035745,0.009434089,-0.02946966,-0.009160395,-0.031927325,0.015259877,0.0062223654,-0.015650868,0.020767285,0.03150282,0.044238,-0.015248706,-0.060994823,-0.00091743586,0.028888756,-0.005244884,-0.0033150574,0.012601128,-0.013070319,-0.034228597,0.035435088,-0.0036725362,-0.0042646104,0.027436499,-0.021068906,0.03807149,-0.0017217632,0.015997177,0.022152515,-0.036172386,-0.011472835,0.019415567,0.024286216,-0.052013166,-0.013483654,-0.016287629,0.007121648,0.016656278,-0.055230476,-0.01971719,-0.016566908,0.037646987,0.023258464,-0.0046807383,-0.02837488,0.014768343,0.039076902,-0.022878643,0.023504231,-0.021314673,-0.024800092,-0.007752822,0.050717305,0.014008701,-0.02882173,0.02450964,0.030452726,0.017281866,0.018466014,0.040462133,-0.023347834,-0.012735182,-0.01980656,0.013282572,0.0035524457,-0.034139227,-0.0089369705,0.03315616,0.012701669,-0.0028821728,0.013896989,-0.03150282,-0.02643109,0.001116423,0.008540392,0.007121648,-0.0044210074,-0.03132408,0.018667096,-0.013126175,0.0348095,0.011143285,0.01603069,0.044729535,-0.0017301416,0.013371942,-0.02054386,0.012578785,-0.032463543,-0.012846895,0.013561852,-0.015784923,-0.013863475,-0.029000469,0.0045187557,-0.014611946,0.0011953197,0.020331606,-0.045556206,-0.028263168,-0.013785277,-0.032686967,-0.029447317,0.03206138,0.025872529,-0.018197905,0.01601952,0.012411217,0.0066357004,0.039210957,-0.0005987072,-0.017896283,-0.004599747,0.040976007,0.0049292976,-0.0019591514,0.01666745,0.055945434,0.011707431,-0.013159689,-0.0053677675,0.000004418302,0.002979921,-0.024464956,0.034094542,-0.0006402501,-0.011908513,0.01601952,-0.018343132,0.004429386,0.0063899336,-0.02938029,0.0057922737,-0.022577021,0.008875528,0.005501822,-0.022230713,0.010143461,0.04430503,-0.013796448,-0.0017720336,0.00046011433,0.027123705,-0.017360065,0.022778103,-0.011277339,0.0042338897,0.020097012,-0.0023110446,-0.007250117,-0.014891227,-0.020018812,-0.031480476,0.014701316,0.030877233,0.012455902,-0.03206138,0.01081932,-0.009579315,-0.015885465,-0.0068591246,0.019951785,-0.014768343,-0.008931384,0.011897341,-0.028844072,-0.013204373,-0.008322554,0.0058928146,-0.049332075,-0.008596248,-0.023370177,-0.0045801974,0.051923797,-0.0013063337,0.011053915,-0.010093191,0.0009691027,0.036775634,0.012869237,0.029894166,0.031145342,-0.01023283,0.020488003,-0.009389404,0.003890375,0.0033541566,0.019058088,-0.007367415,0.0075852536,-0.007523812,0.02634172,0.0016463575,0.007663452,0.0052392986,-0.01722601,-0.006713899,0.01823142,0.018376645,-0.010422741,0.031257052,0.0095849,-0.0123218475,0.0018278897,0.0021811794,-0.007858948,0.05241533,0.01575141,0.032396518,-0.0070322785,0.015874293,0.01086959,-0.024308559,-0.0033820847,-0.014466721,-0.028687675,0.051611003,0.020242237,0.01815322,-0.009126881,0.007736065,-0.017818084,-0.0063899336,0.0048287567,-0.019873587,-0.022878643,0.01547213,-0.021906748,-0.0029101009,0.0235936,-0.008713546,-0.005998941,-0.04910865,-0.00011441766,0.018209077,-0.0031670388,0.008512464,-0.037937436,-0.008149399,-0.03795978,-0.011785629,-0.008037687,0.007618767,0.0146678025,-0.00057915755,-0.02920155,-0.006669214,-0.024889462,0.03132408,-0.0065798443,0.0569285,0.009774811,-0.020041155,0.011964369,-0.040015284,0.005236506,-0.016321141,0.013975187,-0.045109358,0.016388169,-0.0047617294,-0.009875352,-0.00012349426,0.020420976,0.045846656,-0.033647694,0.0135730235,-0.0011066482,-0.0019465839,0.015907807,0.020420976,0.0046192966,-0.016790332,0.0065910155,0.010981302,-0.038853478,0.001189036,0.0072166035,-0.005959842,0.003689293,0.025894871,0.014790686,0.0072612884,-0.005337047,-0.013405455,0.012925093,0.0073171444,0.0023459548,-0.015181678,0.02377234,-0.007858948,0.002524694,0.0123218475,0.012936264,-0.01023283,0.037445907,0.000719845,0.03161453,-0.006032455,0.0034295623,-0.019706018,0.0028500557,0.038965188,-0.0059486707,0.012355361,-0.015226363,0.0030888403,0.005334254,0.0099256225,0.0022244677,-0.020532688,0.019951785,0.03822789,-0.017460605,-0.027146047,0.001216964,0.0018935206,0.002979921,-0.0069149807,0.03132408,-0.024643695,0.024107477,-0.019739533,0.047097832,-0.04763405,0.029760111,-0.01585195,-0.040663213,0.009545801,-0.043835837,0.040194023,-0.036596894,0.00012890532,0.014086899,0.014153927,-0.016086547,-0.0054599303,0.0015807266,-0.0058257873,-0.033022106,0.019650163,0.013237887,-0.0007156558,0.00091324665,0.012243649,-0.047678735,-0.003591545,0.0018641962,-0.018387817,-0.024219189,0.013249058,0.017270695,0.018309617,-0.0067641693,0.035971306,0.0064904746,-0.03291039,0.041132405,-0.0028737944,-0.017103126,-0.05187911,0.017628174,0.012232478,-0.048036214,-0.0030413626,0.039143927,0.014388522,0.023727655,0.020979537,-0.00027090192,0.04414863,0.020677915,-0.0022063146,0.013595366,0.0011303871,-0.017851599,0.030229302,0.01585195,0.0058369585,0.0076020104,0.010193732,0.027190732,0.009892109,-0.004569026,0.00028277133,0.0013154102,0.031212369,0.004245061,-0.044818904,-0.030408042,0.008819672,-0.010327786,-0.028218484,-0.0040244292,-0.01188617,-0.0383396,-0.0054543447,0.009908865,0.0072892164,-0.0011995089,0.011076258,0.0036166802,0.0052839834,0.0020373499,0.00015971343,-0.00040111635,0.008752645,-0.0037926268,0.008540392,-0.009260936,0.03878645,-0.013930502,0.017706372,-0.0109142745,0.013137346,0.01004292,-0.027414156,0.015684383,-0.003940645,0.014019872,0.023191437,0.045757286,-0.004555062,0.009523459,0.008099129,-0.01667862,-0.015539157,-0.03804915,-0.050806675,-0.020108182,0.0028430736,-0.027861005,0.031659216,-0.018778808,0.0019284306,-0.010936617,-0.019024575,-0.006412276,-0.017538805,-0.00027736026,0.010942203]},{"id":"interface-ClientEvents","type":"interface","source":"main","text":"Interface: ClientEvents\nDescription: Callback parameter types for client events. Use with client.on(Events.X, handler).\nProperties: [Events.ChannelCreate]: [channel: GuildChannel], [Events.ChannelDelete]: [channel: Channel], [Events.ChannelPinsUpdate]: [data: GatewayChannelPinsUpdateDispatchData], [Events.ChannelUpdate]: [oldChannel: Channel, newChannel: Channel], [Events.Debug]: [message: string], [Events.Error]: [error: Error], [Events.GuildBanAdd]: [ban: GuildBan], [Events.GuildBanRemove]: [ban: GuildBan], [Events.GuildCreate]: [guild: Guild], [Events.GuildDelete]: [guild: Guild], [Events.GuildEmojisUpdate]: [data: GatewayGuildEmojisUpdateDispatchData], [Events.GuildIntegrationsUpdate]: [data: GatewayGuildIntegrationsUpdateDispatchData], [Events.GuildMemberAdd]: [member: GuildMember], [Events.GuildMemberRemove]: [member: GuildMember], [Events.GuildMemberUpdate]: [oldMember: GuildMember, newMember: GuildMember], [Events.GuildRoleCreate]: [data: GatewayGuildRoleCreateDispatchData], [Events.GuildRoleDelete]: [data: GatewayGuildRoleDeleteDispatchData], [Events.GuildRoleUpdate]: [data: GatewayGuildRoleUpdateDispatchData], [Events.GuildScheduledEventCreate]: [data: GatewayGuildScheduledEventCreateDispatchData], [Events.GuildScheduledEventDelete]: [data: GatewayGuildScheduledEventDeleteDispatchData], [Events.GuildScheduledEventUpdate]: [data: GatewayGuildScheduledEventUpdateDispatchData], [Events.GuildStickersUpdate]: [data: GatewayGuildStickersUpdateDispatchData], [Events.GuildUpdate]: [oldGuild: Guild, newGuild: Guild], [Events.InteractionCreate]: [interaction: APIApplicationCommandInteraction], [Events.InviteCreate]: [invite: Invite], [Events.InviteDelete]: [data: GatewayInviteDeleteDispatchData], [Events.MessageCreate]: [message: Message], [Events.MessageDelete]: [message: PartialMessage], [Events.MessageDeleteBulk]: [data: GatewayMessageDeleteBulkDispatchData], [Events.MessageReactionAdd]: [reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string], [Events.MessageReactionRemove]: [reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string], [Events.MessageReactionRemoveAll]: [data: GatewayMessageReactionRemoveAllDispatchData], [Events.MessageReactionRemoveEmoji]: [data: GatewayMessageReactionRemoveEmojiDispatchData], [Events.MessageUpdate]: [oldMessage: Message | null, newMessage: Message], [Events.PresenceUpdate]: [data: GatewayPresenceUpdateDispatchData], [Events.Ready]: [], [Events.Resumed]: [], [Events.TypingStart]: [data: GatewayTypingStartDispatchData], [Events.UserUpdate]: [data: APIUserPartial], [Events.VoiceServerUpdate]: [data: GatewayVoiceServerUpdateDispatchData], [Events.VoiceStatesSync]: [data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }], [Events.VoiceStateUpdate]: [data: GatewayVoiceStateUpdateDispatchData], [Events.WebhooksUpdate]: [data: GatewayWebhooksUpdateDispatchData]","meta":{"url":"/docs/typedefs/ClientEvents"},"embedding":[0.0031044637,-0.009047294,0.0110292565,0.015659954,-0.014974832,0.010533766,-0.057060957,-0.0053127618,0.0401531,0.024395272,0.017421698,-0.034892336,0.02779642,0.023392057,0.017776495,0.00085181586,-0.061710007,0.03998182,-0.024431976,0.042967,0.008772021,0.028652823,0.030830534,0.048912887,-0.042795718,-0.019513771,0.0014390642,0.048668202,0.01050318,0.005841897,0.04497343,-0.036042362,0.009340918,-0.015341861,-0.0029821203,0.038391355,0.011848957,0.03129544,-0.011310646,0.017519575,-0.021838296,-0.03313059,-0.011439107,0.014436521,-0.053586405,0.030072005,-0.05534815,0.013482242,-0.026352767,0.034867868,-0.024884647,-0.014509927,0.039712664,0.083927564,0.024639959,0.0048386813,-0.029117728,-0.012650306,-0.0021608903,0.005126188,-0.0023352294,-0.03276356,0.00016000222,-0.012846056,0.009132934,0.037901983,-0.030072005,0.009493847,0.01962388,0.047151145,0.018853117,0.002526391,-0.033424214,0.018375978,0.008900482,0.024762303,-0.036605142,0.032543343,0.000498167,0.0067227692,0.014363114,0.02295162,-0.067239925,-0.045854304,-0.012491261,-0.010729516,-0.048937358,-0.049842697,-0.024737833,0.04127866,-0.0020094903,0.013567883,-0.056816272,0.012943931,0.02517827,-0.047689453,0.031417783,-0.034574244,-0.028603885,-0.005340289,0.084661625,-0.04590324,-0.0636675,-0.01061329,0.028921979,-0.023171838,-0.01858396,0.017005732,-0.03587108,-0.0043493076,-0.0721826,0.013983849,-0.049695887,0.05329278,-0.0015262339,-0.041963782,0.0442149,0.00004186438,-0.004765275,-0.0026609688,-0.03623811,0.022682466,0.03144225,-0.03183375,-0.0039669843,-0.046759643,0.009310332,-0.0022893506,-0.038831793,-0.037094515,0.068169735,0.014289708,0.015036003,0.008252062,-0.0019085569,-0.01849832,-0.016161563,0.027478326,-0.07404222,-0.041914847,0.014730144,-0.02813898,0.040104166,0.0011783198,-0.019954206,0.041303128,-0.02926454,0.016956795,-0.015806766,0.008643561,-0.049206514,0.05852908,0.0041229725,-0.00090075325,0.016540827,-0.0010911501,-0.012870525,0.031711407,0.0063373875,0.00778104,0.012264925,-0.042477626,-0.02063933,0.0299986,-0.070959166,-0.0202723,0.015170581,0.036727488,-0.03550405,0.007206026,0.025961269,0.0103319,-0.050601225,0.053390656,-0.011543099,-0.04039779,0.011384052,-0.027600668,-0.04930439,-0.024016008,0.015721126,0.03298378,-0.049695887,-0.07311241,-0.04208613,0.017360527,-0.013800334,0.009236926,-0.012589135,-0.035088085,-0.0050650164,0.008564037,0.03611577,0.062150445,0.056914147,-0.026719797,0.021997342,-0.038782854,0.01936696,-0.044141497,0.02667086,-0.06870805,0.052118286,-0.0063618566,0.020162191,-0.026719797,0.007860563,0.025325082,0.015243987,-0.0136412885,0.023893664,0.0016072863,0.005306645,-0.006416911,-0.06278663,0.022584591,-0.056865208,0.015305159,-0.03910095,-0.0255453,-0.0008044078,0.04144994,0.01406949,-0.012497378,-0.04059354,0.04308934,0.010919148,-0.02630383,0.010968085,0.0136412885,-0.05848014,0.015195049,0.025765518,-0.022621293,0.014436521,-0.0016118742,0.045315992,-0.00916352,0.016638702,-0.01711584,0.014681207,-0.0053800507,-0.0017540983,-0.007297783,0.024395272,0.02182606,0.040691413,0.040985037,-0.010062744,0.026254892,0.049182042,0.0025967385,0.00778104,0.031638,0.010643875,0.010301313,0.04074035,0.009707948,-0.0078055086,0.01979516,0.0803062,-0.069295295,-0.0024132235,0.03907648,-0.06205257,-0.02483571,0.04761605,0.022095216,-0.03662961,0.02323301,0.034280617,0.010240142,0.031931624,-0.042624436,-0.022401076,-0.028432604,0.01610039,0.029386884,-0.03183375,-0.009041177,-0.06239513,0.014791316,0.02489688,0.03369337,-0.004104621,0.050992727,-0.0068389955,-0.020211129,0.046392616,-0.0031717524,-0.009279747,-0.008392757,0.008992239,-0.026940014,0.05422259,0.05094379,0.060975946,-0.018473852,0.038807325,0.008037961,-0.005854131,0.00055628014,-0.024113882,-0.028212387,0.013176383,-0.025006989,0.007487416,0.013408836,0.026205955,-0.025447426,0.025227208,0.02870176,-0.027135765,-0.023135135,-0.034158275,0.008772021,0.017947776,0.056816272,0.01180002,-0.017433934,-0.011377935,-0.029876256,-0.008001258,-0.012699245,0.029900726,-0.03278803,-0.0005891599,-0.01999091,0.02238884,0.06459731,0.021605844,-0.054173656,0.0032879787,0.038195606,0.0352349,0.020480284,-0.041547816,-0.007206026,0.009506081,0.025080396,0.017641917,-0.017470635,-0.027674075,-0.017984478,0.06361856,-0.02297609,-0.014534395,0.03873392,-0.05074804,0.039883945,0.0061232867,0.018449383,-0.049867168,-0.053243846,0.0022633527,-0.026915547,0.0010055098,-0.00484174,-0.044532996,0.028995384,-0.01212423,0.031148627,-0.0103319,-0.00592142,0.025692113,0.01556208,-0.04096057,0.00242087,0.014301943,-0.026744265,0.019611645,0.018706305,-0.037070047,0.00044731802,0.009634542,-0.015219518,-0.049133107,0.026548516,0.013665757,-0.009126817,-0.009909815,0.017005732,0.043603186,0.01796001,0.021728186,0.0047989194,-0.037706234,0.011604271,-0.04252656,0.036213644,0.04074035,-0.01564772,-0.044117026,0.013959381,-0.022425544,-0.0048080953,0.027551731,0.042061657,0.028041106,-0.0061171697,0.024578787,0.021104235,0.006374091,0.0140450215,-0.042551033,-0.014020553,-0.024028242,0.039174356,0.056620523,0.028163448,0.026719797,0.00012263014,0.03518596,0.0039241645,0.03924776,-0.0503076,-0.022339903,-0.021985108,0.017287122,0.05715883,-0.0059611816,-0.027723012,-0.024652194,0.032151844,0.003211514,-0.03494127,0.013812569,-0.014118427,0.009848643,-0.047322422,-0.03555299,0.04798308,0.055886462,0.009585605,0.018106822,-0.07575503,0.055886462,-0.008423342,-0.022021811,0.03961479,-0.0555439,0.007946203,0.021899467,0.064059,-0.003144225,0.003823231,-0.009928166,0.001631755,0.0150482375,0.004670459,-0.012050824,0.02204628,-0.022584591,0.05050335,-0.038807325,-0.040642474,0.012485143,0.0247256,-0.039761603,-0.026450641,-0.0070836823,0.021715952,-0.010411423,0.026181486,-0.009377621,0.005276059,-0.026254892,0.012375034,-0.024138352,0.024958052,-0.03430509,-0.030659255,0.05167785,0.027918762,0.0019544356,0.017164778,0.055299215,-0.025325082,0.020088784,0.009102348,0.020896252,0.044361714,-0.02029677,-0.03222525,0.017739791,0.058969516,-0.001689868,-0.014375349,-0.011775551,0.05182466,-0.012931696,-0.027307045,0.021556906,-0.0129072275,0.045829836,-0.03758389,-0.027013421,-0.028090043,0.009824174,-0.0023673447,-0.02980285,-0.03256781,-0.010864093,0.045976646,0.029876256,0.047151145,0.0079095,0.0017479812,-0.033571027,-0.003388912,-0.01739723,-0.00042629027,-0.0202723,-0.010564351,-0.009463262,-0.020260066,-0.033571027,-0.022401076,-0.018791946,-0.004759158,-0.029729445,0.049500138,0.002662498,-0.0092858635,0.006423028,-0.011041491,-0.0013205439,-0.03667855,-0.040642474,-0.008937185,0.013433305,-0.011206655,0.003927223,0.020174425,-0.01612486,-0.0016837509,0.0010880915,0.01041754,0.028628353,-0.046245802,-0.020492518,0.021923935,0.0011026198,0.024309631,0.0010116269,0.034525305,0.00810525,0.0040832106,0.010105564,0.0052821757,-0.017262653,-0.06352069,0.015623251,-0.022034045,0.026401704,0.018571727,0.007181557,-0.025080396,-0.0027787243,0.029582633,-0.011965184,-0.0053769923,0.026450641,-0.028726228,-0.024199523,-0.0150482375,-0.017727558,-0.005817428,-0.045658555,0.02517827,-0.010705046,0.019501537,0.014962597,0.017042434,-0.014889191,-0.038782854,-0.011959067,0.014265239,-0.0119713005,-0.041547816,-0.015317393,-0.0360913,0.011598154,0.0596057,-0.033619963,-0.042648908,0.012050824,0.0024453385,0.0007535588,0.015060471,0.0120997615,0.015476439,0.017262653,0.020186659,0.0007134149,0.012381151,-0.01759298,0.028383667,-0.034158275,0.021972872,0.0039975704,0.013604585,-0.034158275,-0.011053725,0.0014382995,0.003936399,0.0022924093,0.0061508142,-0.014571098,0.045658555,0.01601475,0.03237206,-0.0082826475,0.012185402,-0.018632898,-0.03036563,-0.014828019,-0.01195295,-0.00048440337,-0.003483728,-0.025667643,0.013384367,0.019293552,0.02427293,0.022572355,0.055494964,0.022988323,-0.005768491,0.04494896,0.00976912,-0.016724342,0.0064413794,0.013213086,-0.02926454,-0.03313059,-0.0005260766,0.025643175,-0.005068075,0.003957809,-0.04365212,-0.008753669,0.00039379278,0.01733606,-0.01739723,0.027062358,-0.0013182501,-0.011286178,-0.009408207,0.0039822776,0.010148385,-0.020614862,-0.010154502,0.024370804,-0.0001506353,0.046955395,-0.05466303,-0.009316449,0.031075222,-0.017641917,0.001229551,-0.0045175296,-0.006187517,-0.008080781,0.021703718,0.010062744,0.020614862,0.008986122,0.00014031258,-0.0018183286,0.02539849,0.008772021,0.06640799,0.019232381,0.015965812,0.028285792,-0.01313968,-0.0162105,-0.016198264,-0.0006488023,0.012020239,-0.0018275044,-0.0023214659,-0.0510906,-0.042330813,0.013274258,-0.008307116,0.019477068,-0.0011301471,0.031344377,0.03592002,0.00065759575,-0.025300613,0.01711584,0.003676419,0.004655166,0.02537402,0.006270099,0.004230023,-0.0049610245,-0.011573685,-0.022878215,-0.015953578,-0.00086175627,-0.009414324,-0.02455432,0.009481613,0.036213644,0.007108151,0.028579416,-0.034133807,-0.032347593,-0.0011699087,-0.0449979,0.008368288,-0.025692113,0.0043401318,-0.029533695,0.014546629,0.0023061729,0.0011507926,0.005493218,0.024346335,0.009279747,-0.005930596,-0.0018183286,0.008258179,0.021324454,0.026744265,-0.050894853,-0.006998042,-0.020884017,0.0296071,-0.014399817,0.0004584054,-0.057060957,0.03518596,-0.035479583,-0.020113254,-0.04208613,-0.0034500835,0.03256781,-0.012350566,0.03680089,-0.018180229,0.054124717,0.0024071063,0.0067227692,0.014387583,-0.012020239,-0.010172853,-0.01277265,0.007885031,-0.06371644,0.017238185,-0.007487416,-0.009041177,0.011647091,-0.029778382,-0.027551731,0.02924007,0.017849902,0.010215674,0.009395973,0.031540126,-0.026817672,-0.033766776,-0.019354725,-0.031197565,0.015672188,0.0018611489,-0.011855075,-0.048472453,-0.030806066,0.011488045,0.06131851,0.0048356224,-0.023820259,-0.06665268,-0.008466163,-0.02906879,-0.019244615,-0.0019376135,0.014460989,-0.0019024397,0.023025027,-0.011530865,-0.03073266,-0.009212458,-0.06591862,-0.028212387,-0.02368568,-0.009787471,-0.008992239,-0.020516986,0.0056828507,-0.03278803,0.0088821305,-0.08862555,-0.027502794,0.058186516,-0.018070119,0.0049334974,-0.014791316,0.0030585849,0.060095076,0.0032421,-0.031222034,0.03391359,-0.023196308,0.016724342,-0.029949663,0.020247832,-0.016981263,0.039125416,-0.009903697,0.0064046765,-0.013751397,0.005343348,-0.008025726,-0.015684422,0.042991467,0.012601369,0.008496748,-0.021251047,-0.0073711895,0.029166665,0.0062364545,0.014815785,-0.00022709992,-0.026083611,-0.004493061,0.013677991,0.016589765,-0.0029117728,0.0045114127,-0.006514786,-0.07139961,0.013861506,-0.0033093886,-0.008735318,0.0013679521,0.019158974,0.018400446,0.0054779253,0.02399154,-0.000019880801,-0.0063679735,0.016699873,0.0062517473,0.026157018,0.0016149328,0.03146672,0.05666946,-0.027135765,0.021446796,0.0013503652,-0.016161563,-0.005893893,0.017862136,-0.027429389,-0.019293552,-0.019244615,-0.014779082,-0.0033858535,-0.014301943,0.019868568,-0.0077076335,0.012332214,0.02481124,-0.008845427,-0.0062548057,-0.011536982,0.018902054,-0.007383424,-0.0051537156,0.01528069,0.016173797,0.030072005,0.030120943,-0.0029117728,0.0054840427,0.010130033,-0.00048096245,-0.006089642,0.004994669,0.011665442,-0.008606858,-0.0069062845,-0.0385137,0.01333543,0.02334312,0.018180229,0.017629683,-0.03817114,-0.007891148,-0.010864093,-0.01860843,0.007401775,-0.016026985,0.0057042604,-0.025618706,-0.024175053,-0.006374091,-0.016026985,0.02278034,-0.007646462,0.011426873,0.011726614,-0.012613604,-0.0136412885,-0.010368602,-0.028775167,0.0010972673,0.06689737,0.013555648,0.02537402,0.00033472388,-0.015831236,-0.0182414,0.005003845,-0.009964869,-0.013751397,0.01897546,0.00021276281,-0.01705467,0.00061018765,0.03188269,-0.019379193,0.008778138,0.01733606,0.026891077,-0.010405306,0.033571027,-0.024358569,0.0275762,-0.05353747,0.004719396,-0.02574105,-0.019207913,-0.01618603,-0.03437849,0.019415896,-0.010111681,-0.033595495,0.025618706,0.006156931,-0.019036632,-0.011243357,-0.028799634,-0.042967,-0.021887233,-0.02072497,0.03775517,0.023856962,0.0020217246,-0.007946203,-0.0031350495,0.035797678,0.028848572,0.0106255235,0.019293552,-0.044728745,-0.02980285,0.013188617,0.000946632,0.00019202178,0.0120997615,0.0018366802,-0.0060590566,0.011102662,-0.0029469465,-0.008888247,0.044532996,0.035455115,-0.013188617,-0.000097157856,0.0389052,0.001767862,-0.03910095,0.016846685,-0.0051292465,0.040691413,-0.0129684,0.027649608,-0.019036632,-0.01005051,-0.031222034,0.010166736,0.06337388,0.021972872,0.0036213645,-0.05368428,-0.012008004,0.023453228,0.019856332,0.010117798,0.00393334,0.008631326,0.0129684,-0.012472909,-0.000016188993,0.009738534,-0.0052699414,-0.000106190244,0.013555648,0.026524048,0.030928409,0.014974832,0.0401531,-0.011561451,-0.010197322,0.024591021,0.03317953,-0.042110596,-0.027845357,0.009108465,0.028824104,0.0065576057,-0.025055926,0.0149993,0.053782154,-0.020884017,-0.0064842,-0.025055926,-0.007848329,-0.021397859,-0.012056941,0.0035418412,-0.002954593,-0.011836723,0.006881816,0.026377235,-0.030977346,0.0336689,0.015329627,-0.016504124,0.030243287,0.019415896,0.020149957,-0.016504124,-0.04458193,-0.031564593,0.0007929381,0.0010605643,0.04575643,0.016565295,0.032151844,-0.013078509,0.02029677,0.029289007,0.013567883,0.008423342,-0.010338017,0.0065086684,0.0000721157,-0.007640345,0.01435088,0.021312218,-0.013127446,0.015880173,-0.010594938,0.00231229,0.012723713,-0.0148524875,0.0037528835,-0.0035234897,-0.0028888334,0.014424286,0.021667015,0.03662961,0.0024973345,0.001767862,-0.0003599572,-0.019721754,0.021985108,0.0028720112,0.006949105,-0.006230337,-0.0025355667,-0.00019183062,-0.024419742,0.015403033,-0.04737136,0.015598782,0.0019896093,0.0042147296,-0.014534395,0.008056313,0.008294882,0.012375034,-0.020773908,-0.014399817,-0.009659011,-0.025447426,-0.004067918,-0.0013564824,-0.0015078823,-0.030585848,-0.029019853,-0.036140237,0.030610317,-0.009310332,0.010142267,0.029729445,-0.0015499379,0.006845113,0.007927852,-0.044386182,-0.0004121443,0.045071304,-0.001033037,0.0041596754,0.014693442,-0.011280061,-0.057843957,0.012466792,0.0020599568,0.021740422,0.012735947,0.015256221,-0.018375978,-0.009714065,-0.008612975,0.029117728,-0.023245245,0.0059336545,-0.020700501,-0.004285077,-0.040838223,-0.0017908014,0.021140939,0.020932954,0.019354725,-0.033595495,-0.010191205,-0.0055727414,0.015574314,-0.004052625,0.0057287295,-0.03369337,0.0044380063,0.037657294,-0.024126116,0.020957423,-0.018473852,-0.023122901,-0.016871154,0.052069347,0.010130033,-0.0010942087,0.0340604,0.032176312,0.017299356,0.000020048068,0.018033415,-0.01880418,-0.022963855,-0.00976912,0.03261675,-0.0019483186,-0.0048478567,0.026450641,0.0010307431,0.0035479583,-0.0070836823,0.023734618,-0.02664639,-0.011769434,0.029509226,0.013396601,-0.01536633,0.0036060715,-0.04034885,0.017862136,-0.011708262,0.011249475,0.03410934,0.021605844,0.030390099,-0.028799634,0.032176312,-0.034549773,0.03237206,-0.033448685,-0.03256781,0.018339274,-0.015195049,-0.013384367,-0.02664639,0.019636115,-0.036605142,-0.010368602,0.006276216,0.0125769,-0.034500837,-0.015672188,-0.043064874,-0.015182815,0.03550405,0.001171438,-0.015782297,-0.0073711895,-0.0067655896,0.018461619,0.047322422,-0.031589065,-0.026524048,-0.020370174,0.03924776,0.00162105,-0.011708262,0.011573685,0.0425755,0.011267826,-0.015941344,0.008093015,0.034500837,0.018694071,0.010252376,0.016712107,0.01102314,-0.019513771,-0.0017479812,-0.029753912,0.0058510727,-0.01694456,-0.0045725843,-0.00023054083,-0.057697143,0.004211671,0.040250976,-0.0385137,0.033203997,0.031173097,-0.011328998,0.007389541,-0.0061599896,0.024431976,-0.014644504,0.0102890795,-0.00047637458,-0.001569054,0.016112626,0.008998357,0.006355739,-0.009646776,-0.013384367,-0.012215988,0.020027613,0.017274886,0.0031717524,-0.02684214,0.00076273456,-0.007212143,0.017421698,-0.024028242,-0.00094204413,-0.012797119,-0.0028582476,0.0072304946,0.008129719,-0.019073335,-0.010998671,-0.024126116,-0.0514821,-0.020113254,-0.011225007,0.0255453,0.028897509,0.014766848,0.0074140094,-0.022902682,0.012992868,0.016271671,0.005493218,0.007316135,0.032445468,-0.024921348,0.039932884,0.00020683679,0.0024958053,0.013665757,0.0012746652,0.0077259853,-0.008129719,-0.0070469794,0.017849902,0.002243472,0.019526005,-0.0066126604,0.015195049,-0.027649608,0.025887862,-0.004095445,-0.04096057,0.031638,-0.027135765,-0.0059611816,-0.030218817,0.010674461,-0.012442323,0.012723713,-0.0018167994,0.04776286,-0.0013931853,0.007609759,-0.011176069,-0.015549845,-0.008612975,-0.035406176,0.016026985,0.0054167537,0.020871783,0.026230423,0.0012685481,0.0072182603,-0.010698929,-0.010234024,-0.0036947704,0.0024071063,-0.012442323,0.02833473,-0.02539849,0.007695399,-0.0060192947,-0.018204696,-0.051041663,-0.047175612,-0.02185053,0.026352767,0.020627096,0.016198264,-0.011353467,-0.022609059,-0.010142267,0.0062548057,-0.03237206,0.0025141567,-0.0008311704,-0.0045175296,-0.008374405,0.0006793882,-0.020908486,0.0046215216,-0.013225321,0.042918064,0.0022602943,-0.03224972,0.0013717753,-0.01584347,0.01061329,0.0055452143,0.009016708,-0.02334312,0.01860843,-0.02083508,-0.0030631726,-0.013396601,0.031368844,0.028359199,-0.005120071,0.0130418055,0.012650306,-0.016137093,0.019782927,-0.007799391,0.034158275,0.010350251,0.019158974,0.017152544,-0.039345633,0.020529222,-0.0048937355,-0.0007807038,-0.00328492,0.028628353,0.00011775552,0.020039847,-0.0034898452,-0.019489303,0.011261709,-0.008827075,-0.024688896,-0.022168623,0.0149993,-0.028554948,-0.009059528,-0.0072733145,0.014546629,-0.024113882,0.019073335,-0.0023918133,0.07555928,-0.02340429,0.00907788,-0.016479654,-0.0025921506,0.001715866,0.030879471,0.030487973,-0.013518944,-0.013482242,-0.008300999,0.0078116255,-0.012625838,-0.024395272,-0.031075222,0.033203997,-0.009267512,0.021055298,-0.002714494,-0.0040740347,-0.012050824,-0.0028857747,0.017507339,-0.045169182,0.019379193,-0.0073344866,0.06665268,-0.038048796,0.024297398,-0.010888562,-0.01361682,0.028236855,-0.015978048,0.03518596,-0.0075669386,-0.0126380725,0.020749439,0.021251047,-0.0039027543,-0.004288136,0.02379579,-0.0126380725,-0.046955395,0.020235596,0.013029572,0.0023964013,-0.015146112,-0.0021012477,-0.06293344,0.022070749,0.022890449,-0.027355982,-0.014289708,0.0045939945,0.0154519705,0.016736576,0.004104621,0.041033972,0.0005750139,-0.018290337,0.014950363,0.001940672,-0.02213192,-0.046930924,0.016320609,0.024064945,-0.023012793,0.005392285,0.012882759,0.0009496906,0.03354656,0.029729445,0.009750769,0.046539426,-0.007970672,-0.018926524,0.0011936127,-0.0048876186,-0.0018504438,0.05016079,0.028408136,0.025667643,0.015598782,0.00525159,0.0136412885,0.013249789,-0.030855004,-0.014901425,-0.0093531525,0.035895552,0.012699245,-0.025789987,-0.02379579,0.020676034,-0.028873041,-0.020431347,-0.016822217,-0.023734618,-0.016320609,-0.011273944,0.014106194,-0.008527335,-0.013359899,0.0005046665,-0.020773908,-0.021679249,0.023416525,0.017103607,0.005370875,0.0005627796,-0.015109409,-0.0067227692,0.02388143,0.026548516,-0.013837038,-0.006107994,-0.021838296,0.0052424143,0.03313059,-0.009310332,0.029093258,-0.013518944,-0.0084783975,0.01796001,0.04570749,-0.0015935227,-0.0073344866,-0.013396601,-0.0048509156,0.0028368374,-0.013323195,-0.038954135,-0.016283905,-0.0027970758,-0.019672817,0.009616191,0.0235144,-0.019880801,-0.0083438195,-0.015121643,-0.0041596754,-0.013971616,0.0006075114,-0.0072304946]},{"id":"interface-ClientOptions","type":"interface","source":"main","text":"Interface: ClientOptions\nProperties: cache: CacheSizeLimits, intents: number, presence: GatewayPresenceUpdateData, rest: Partial, suppressIntentWarning: boolean, WebSocket: new (url: string) => { send(data: string | ArrayBufferLike): void; close(code?: number): void; readyState: number; addEventListener?(type: string, listener: (e: unknown) => void): void; on?(event: string, cb: (data?: unknown) => void): void; }","meta":{"url":"/docs/typedefs/ClientOptions"},"embedding":[-0.052201327,-0.020439839,0.015521616,0.014620754,-0.015740745,0.000046246238,0.017408557,-0.0006958097,0.038883172,0.0018854198,0.014279887,-0.0037495354,0.023592856,0.017152907,0.027001524,0.011492083,-0.04647963,0.044580515,-0.0032991043,0.021060703,0.013659022,-0.009866878,-0.0038469261,0.037300576,-0.037471008,-0.009556446,0.009714706,0.04178054,-0.020999834,-0.01610596,0.016775519,-0.032674525,0.024895456,0.0067138597,0.026173705,-0.010627742,0.048743963,0.025443276,-0.028827598,-0.0040690983,-0.014389452,-0.028267602,0.0070669004,-0.0050977855,-0.030945841,-0.007310377,-0.011619908,0.009349491,-0.049474392,-0.011619908,-0.008625149,-0.010177311,-0.019867668,0.06836815,0.0018032466,-0.027561521,-0.027999777,0.017810294,0.017262472,0.039759684,0.033404954,-0.0014212931,-0.039345775,-0.038785778,0.007079074,-0.006835598,-0.025662405,0.035864063,-0.023678074,0.06388819,0.036862317,0.0039382298,-0.029801503,-0.022558082,0.005234741,0.011826863,0.019685062,-0.017822467,0.039272733,0.012490336,0.0017438992,0.025297191,-0.07060814,-0.08117501,0.012204251,-0.024834586,-0.060625605,-0.014876404,-0.014779014,0.024408503,-0.0043856176,0.011802515,-0.05585347,-0.019843321,-0.028340645,-0.02309373,0.059700396,0.0022993295,-0.028778903,0.03744666,0.06958554,-0.07377333,-0.06661513,0.023142425,0.0349632,-0.008065154,-0.017968554,0.004032577,-0.05400305,-0.0022262868,-0.06349863,0.0122590335,-0.004431269,0.033867557,-0.014462494,-0.023836333,-0.0073834197,-0.019344194,0.017359862,-0.010487743,-0.0006813533,0.010597307,0.037909266,-0.0053960443,-0.019721583,-0.02293547,-0.007632983,-0.018492028,-0.059651703,-0.014158148,0.039102297,0.022947645,0.035644934,-0.025321538,0.009562533,0.004461704,-0.03773883,0.029996283,-0.03827448,-0.044726603,0.008186892,-0.03786057,0.060674302,0.009465142,-0.013135548,0.033867557,-0.010597307,0.049303956,-0.027926736,0.014072932,-0.0038986648,0.055415213,-0.005943866,-0.0046534413,-0.016592912,-0.0033873646,0.032625828,0.022850255,-0.0411475,-0.047964837,0.039540555,-0.038664043,-0.0013064027,-0.035109285,-0.024165027,0.009690358,0.015594659,0.025370235,-0.04803788,0.02028158,0.044288345,-0.03569363,-0.0051769153,0.024201548,0.012392946,-0.026368488,0.02274069,0.00017033833,-0.02510241,0.035157982,0.027074568,0.042827487,0.005782563,-0.026977178,-0.04102576,-0.027853692,-0.003296061,0.026100663,0.0085277585,-0.01754247,-0.063839495,0.018321594,0.024505893,0.038858823,0.022959817,-0.02356851,0.001963028,-0.030215412,0.0027162828,-0.016860737,-0.018601593,-0.019344194,0.07450376,-0.03126236,0.0053290883,0.004364313,0.015387705,-0.013890325,-0.03489016,0.019064197,0.049961343,0.04107446,-0.014657275,-0.0004059207,-0.039077953,0.03106758,0.018297246,-0.032771915,0.012368598,0.025686754,-0.033648428,0.00095336203,0.060430825,-0.030069327,0.04097707,0.04112315,-0.019624192,-0.011638168,-0.01779812,0.018431159,-0.019831147,-0.0036886665,-0.057460416,-0.02395807,0.023982419,0.02500502,0.05195785,-0.011699038,0.008795583,-0.031189319,-0.007499071,-0.06656643,-0.062378637,-0.017712902,0.019977232,0.008856451,-0.0023038948,-0.04226749,-0.02838934,-0.01553379,0.014705971,-0.015205097,0.048403095,-0.009032972,-0.008491237,-0.04073359,0.01913724,0.0003758666,0.016702477,0.0047356146,0.01837029,-0.048013534,0.024298938,-0.015594659,-0.03498755,-0.05629173,0.022034608,0.041488368,-0.044288345,-0.044069216,0.03710579,0.017834641,0.034524944,-0.023824159,-0.034622334,0.0308728,0.0034269295,0.013671196,-0.030288456,0.03693536,-0.07464984,-0.03754405,0.0028562818,0.05716824,-0.017201602,0.014535537,0.027829345,0.016994648,0.016714651,0.02067114,0.011759907,0.003484755,0.01039644,-0.04560312,0.020914616,0.039564904,0.053467404,-0.02057375,0.053223927,-0.000632658,0.038104046,-0.012952941,-0.02860847,-0.048305705,-0.016483348,0.038931865,0.046041373,0.023422424,0.05799606,-0.009416447,-0.02124331,0.00032374743,-0.054636087,-0.0011861862,-0.059943873,-0.018431159,0.021060703,0.013330329,0.004811701,0.010706872,0.02427459,-0.009032972,0.0058890837,0.005971257,0.009586881,-0.05234741,0.021072876,-0.022192867,0.025638057,0.012965115,0.020452011,-0.034549292,0.010566873,-0.00038404588,0.024359807,0.004866483,-0.039053604,0.0022871557,-0.029825851,0.020719836,-0.019368542,-0.029363245,-0.04195097,0.021292005,0.050691772,-0.0004477682,-0.0062299506,-0.005319958,0.016081613,0.00018993056,0.017627686,-0.015472921,-0.03518233,-0.028121516,-0.024493719,-0.01419467,0.025345886,-0.07654896,-0.068124674,0.05619434,-0.020366795,0.023337206,0.023811985,0.0034056252,0.010755567,-0.0019158544,-0.046455283,-0.007359072,-0.007620809,-0.013926846,0.053370014,-0.0006961901,-0.03148149,-0.004711267,-0.00941036,0.007979937,-0.027756302,0.0032473656,0.0034725813,-0.007572114,0.044799645,0.05288306,-0.025078062,0.017104212,0.0119972965,-0.021474613,-0.030994536,0.021718089,-0.02386068,0.011705125,0.010183398,0.012252946,-0.043070965,-0.00915471,-0.01770073,0.024822412,0.04465356,0.01785899,0.004866483,-0.018005075,0.041829232,0.046236154,-0.0055238693,0.0075782007,-0.03710579,-0.06408297,0.040100552,0.021365048,0.041902278,-0.045091815,0.055415213,-0.011035564,0.02858412,0.0096112285,0.02067114,-0.053126536,-0.019185934,-0.06841685,0.046260502,0.03588841,0.006245168,0.029923242,-0.06656643,-0.018601593,0.011735559,0.01754247,0.0236659,-0.005864736,0.007572114,-0.039102297,-0.017615512,0.049036134,0.024664152,0.045043122,0.0076695043,-0.020342447,-0.0036977967,0.008132109,-0.008016458,-0.016020743,-0.05132481,-0.023751115,0.006439949,0.04609007,-0.029071074,0.019271152,-0.0208294,-0.03669188,-0.0044677905,-0.06836815,-0.0324067,0.007079074,-0.059700396,0.030629322,-0.034086686,-0.00063075585,-0.016471174,0.022655472,-0.008911233,0.0012911854,-0.004461704,-0.010767741,-0.057655197,0.008984277,0.011510343,0.055317823,0.041926626,0.04092837,0.0010682524,0.012252946,-0.026611963,-0.04699093,0.0004694528,0.015205097,-0.007438202,-0.039589252,0.0059134313,0.023434596,0.010883392,0.012435554,0.05707085,0.017323341,-0.004510399,-0.018443333,0.01175382,0.10128615,0.0054325657,-0.0046199635,-0.044410083,0.020951139,-0.009519924,0.0015011837,-0.01183295,-0.012770333,0.016544217,0.009032972,-0.027707607,-0.024055462,0.00031994312,-0.010487743,0.032747567,-0.046041373,-0.014401625,-0.0038469261,0.005113003,0.014705971,-0.0062816893,-0.036959708,-0.01789551,-0.023337206,-0.0013064027,-0.0020923747,-0.014925099,-0.007779069,-0.04854918,0.0003256496,-0.021669393,0.045822244,-0.027025873,-0.017262472,-0.014279887,0.020098971,-0.0016541174,-0.01419467,0.004839092,-0.016069438,-0.015059011,-0.057557806,0.011479909,-0.003926056,0.0126485955,-0.033088434,-0.029582374,0.011279041,-0.007858199,0.011845124,0.0034938853,-0.014401625,0.0077182,-0.011966862,0.0073347245,0.007785156,-0.030434541,0.014985968,-0.036570147,0.025784144,0.014681622,-0.0034147555,-0.021450264,0.017238125,-0.0015506399,-0.039564904,0.024213722,-0.017213777,0.038590997,0.0062695155,0.0044130087,-0.019368542,-0.0406362,-0.009732966,0.00013609946,-0.026003273,0.033429302,-0.023738943,-0.008399934,-0.009203405,-0.016166829,0.033161476,-0.03065367,-0.030629322,-0.0452866,-0.001873246,-0.016239872,0.050545685,0.028535426,-0.0125999,0.016678128,-0.004887787,-0.03591276,-0.0002847532,0.018905938,-0.015010316,-0.009927748,0.08414542,-0.01033557,-0.0062877764,0.009373839,0.01840681,0.027391087,0.0452866,0.009507751,0.004586485,0.005992561,-0.0043795304,-0.02089027,-0.00060108217,0.034305815,0.03333191,-0.03230931,0.03569363,0.019721583,-0.027926736,-0.024980672,-0.007706026,0.027025873,0.02644153,-0.012362511,0.0041543148,0.0007300486,0.021121573,0.021681568,0.056243032,-0.024396328,-0.046552673,-0.053223927,-0.00402649,-0.038420565,-0.033916254,0.024055462,-0.033356257,0.012100774,0.026733702,0.02118244,0.024566762,-0.005481261,0.014559885,-0.0049882215,-0.014693797,0.005633434,-0.013963368,0.019709408,0.011845124,0.0062877764,-0.01636161,-0.0478431,-0.014389452,0.01795638,-0.009276448,-0.018321594,-0.027171958,0.002230852,0.0045134425,0.008339064,-0.0113033885,0.0478431,-0.0009244492,-0.051276114,0.0049486565,-0.0009487968,0.015521616,-0.025881534,-0.016897257,0.04752658,-0.006360819,0.029850198,-0.026100663,-0.0075173317,0.0025275887,-0.0032869305,0.0036977967,0.0011732515,-0.03734927,-0.020610271,0.034744073,-0.009544272,0.014413799,0.0324067,0.0060077785,-0.008217326,0.0006311363,0.0069269016,0.06802729,0.060674302,0.007785156,0.010901653,0.0072677685,0.014985968,-0.008259934,-0.03581537,0.009319057,-0.019879842,0.033551037,-0.045189206,-0.015619007,0.035352763,-0.030069327,0.01862594,0.011601647,0.0026006317,0.033964947,0.018954633,0.034232773,0.038980562,-0.013999889,0.0017971597,0.057947367,0.035157982,0.035036243,0.022095477,-0.03165192,-0.028511079,0.006312124,-0.015923353,-0.008199066,-0.010646002,-0.012660769,-0.01445032,-0.0001449445,0.007998197,-0.020001581,-0.024091983,0.0075903744,-0.036448408,-0.029801503,-0.00889906,0.014693797,0.017018996,0.006293863,0.018613765,-0.019356368,0.013208591,0.008442542,-0.035036243,0.016325088,-0.015083359,0.012660769,0.029679764,0.04022229,0.0026204141,0.0226433,0.039102297,0.033112783,0.000067003544,0.02653892,-0.032114528,0.03990577,-0.019125067,-0.0037221445,-0.015059011,-0.014791187,-0.0098729655,-0.020342447,-0.0042334446,0.006366906,0.011686864,-0.058872577,-0.015217271,0.013999889,-0.0030358455,0.013987715,-0.025954576,0.007906894,-0.007438202,0.0198068,0.014535537,-0.03795796,-0.038907517,-0.032333657,-0.009361665,0.00017205026,-0.0020208536,0.009099928,-0.014705971,0.027147612,0.019392889,-0.004108663,-0.03479277,-0.050691772,0.006719947,0.041220542,0.007785156,-0.027537173,-0.027171958,0.007955589,0.022752862,-0.050545685,-0.038664043,-0.05151959,-0.034403205,-0.04002751,0.045943983,-0.014815534,-0.011315563,-0.010950348,0.03199279,-0.018382464,-0.0072129862,-0.01429206,-0.021730263,-0.02899803,-0.03165192,0.011534691,0.010086007,-0.035011895,0.0023556335,-0.009355578,-0.0037038836,-0.07538027,0.0025854143,0.049084827,0.009939921,-0.015205097,-0.017688556,-0.011011217,0.014973794,0.027658911,-0.013281634,0.0078095035,0.017298993,-0.00025812295,-0.027999777,0.038907517,-0.011175564,0.0043064877,0.017980726,0.007882547,0.02232678,0.02376329,0.03710579,-0.024347633,0.059846483,0.009891226,-0.00579778,0.0054234355,0.001795638,0.011035564,-0.0076634176,-0.007310377,0.031846706,-0.034427553,0.01527814,0.0064156014,0.0021897652,0.004047794,0.01840681,-0.01082861,-0.032017138,-0.0014136845,0.007365159,0.023361554,0.0072555947,0.0010598829,-0.0022597648,-0.007158204,0.03165192,-0.008734713,-0.019989407,-0.025978925,-0.016459,0.03479277,-0.007833851,0.005858649,0.039053604,0.0036217105,0.0463092,-0.008211239,-0.033356257,-0.022558082,0.025345886,0.0021167223,-0.018431159,0.02746413,-0.0068660327,0.00722516,0.00036806773,0.03230931,0.002369329,-0.019940712,0.04730745,0.00052081107,-0.0072068996,0.013330329,0.0066773384,0.0037008403,-0.0108712185,0.026417183,-0.0027741084,0.015472921,-0.0053260447,0.064472534,0.0068051633,0.018918112,0.007407767,0.0028517165,0.020500707,0.019319847,-0.0159477,0.013987715,0.0009594489,0.031238014,0.011193824,0.01460858,0.0018930285,0.0045712683,-0.016653782,-0.012137295,0.0039990987,0.04097707,0.00018469963,0.012575553,-0.03669188,-0.011345997,0.027098916,-0.028778903,0.036959708,0.0038317088,0.027196307,-0.009745141,-0.007505158,0.031213665,0.067929894,-0.003819535,0.007164291,0.07026727,0.0054264786,0.000077512974,-0.008472976,0.025857186,0.005380827,0.019563323,-0.037665788,-0.010877305,0.008113849,0.034305815,-0.043436177,-0.0031256275,-0.016264219,0.0017971597,0.010798175,0.0078034163,0.036253627,0.0034604073,0.0019599844,0.0080468925,-0.018954633,-0.027391087,0.00047211582,0.007042553,0.007979937,0.0050673513,-0.023276336,0.0068782065,0.016994648,-0.028170211,0.021450264,0.014401625,-0.014559885,0.03415973,-0.037909266,-0.04628485,-0.015192923,0.010280788,0.039759684,-0.030166717,0.02386068,0.014912926,0.011985122,0.018090291,0.04718571,-0.011309476,-0.012478162,0.009666011,-0.030191066,-0.03990577,0.0033660603,-0.007632983,0.0067625553,0.013415546,0.014438147,0.017238125,-0.01275816,0.012374684,0.06408297,-0.0062299506,-0.0015544442,0.027902387,-0.016385958,0.020184187,-0.008186892,0.0028060647,0.02354416,0.08575236,0.0048725703,-0.0054995217,0.016824214,-0.016081613,-0.0025778057,0.0024880238,0.016860737,0.03228496,-0.00797385,-0.039224036,-0.009124275,0.043728348,-0.013585979,-0.022813732,-0.005569521,-0.012965115,0.0063242977,-0.039370123,-0.032528438,-0.002118244,0.011394693,-0.010499917,0.030215412,-0.008290369,-0.0043704,0.03196844,0.015838135,0.002816717,-0.016897257,-0.007699939,0.026198054,-0.048062228,-0.01409728,0.007821677,0.0024241111,0.016459,-0.0028228038,0.012082513,0.03467103,-0.005307784,0.008138197,-0.019538976,-0.010232093,0.00024594914,0.024055462,0.012697291,0.012167729,0.0058921273,-0.043436177,0.042413577,-0.021170268,0.011297301,0.011729472,0.02870586,0.027902387,-0.014632927,-0.004139098,-0.012295554,-0.017201602,-0.007097335,-0.0047082235,-0.025175452,0.024591109,-0.019210283,0.029411942,0.019733757,0.0125999,0.037836224,0.00180629,0.007931242,-0.012539031,-0.016714651,0.030507585,0.00880167,0.018394636,0.010743394,0.021255484,-0.026514573,-0.014681622,0.0241772,0.025151106,-0.019149413,-0.0056943027,-0.0013391199,-0.0035030157,0.0058464753,0.035157982,0.03167627,0.03209018,-0.0006901032,-0.0013086853,-0.020756356,-0.018650288,-0.035864063,0.010286875,-0.02848673,-0.0016328131,0.0049303956,-0.005761259,-0.0052895234,-0.025151106,-0.034646682,-0.034111034,0.027123263,-0.011936427,-0.0023145468,0.011157303,-0.03559624,0.0007186356,0.00436127,0.015594659,-0.0030693235,0.011187738,0.03457364,0.024104157,-0.027196307,0.029752808,-0.033283215,0.0049030045,-0.018808547,0.010798175,0.015144228,-0.0032108442,0.025443276,0.023166774,-0.03742231,-0.00352432,0.03126236,-0.029752808,0.007499071,0.0019067241,-0.0056060427,-0.0359858,-0.01043296,-0.00094042736,0.014219018,0.013512936,-0.021803306,-0.0045712683,-0.0073955934,-0.0044586603,0.023629379,0.0057338676,-0.00030605737,-0.021194614,0.028340645,-0.041829232,0.0025215019,0.00021037877,0.010402527,0.015083359,-0.0627195,0.039004907,-0.02102418,0.027610216,-0.00087727566,0.008625149,-0.009678184,0.003746492,0.010554699,-0.024518067,-0.017311167,0.009605141,-0.0061021256,-0.03269887,0.046942238,0.012490336,-0.025638057,0.025759796,0.019465933,-0.0025017194,0.03659449,-0.0037251879,-0.012539031,-0.009812096,-0.0360345,0.01897898,-0.0120399045,-0.026587615,-0.0016175959,-0.02143809,0.017627686,0.003685623,0.004744745,-0.028267602,0.012119034,-0.00095488376,-0.0050430037,-0.0058464753,-0.0010674916,-0.009392099,0.008174717,-0.0159477,0.03238235,0.065689914,0.020330274,-0.0016769433,-0.03693536,0.021815479,-0.0024165027,0.018747678,-0.015302488,0.0018930285,0.053856965,-0.028973684,-0.0136468485,-0.029290203,-0.024091983,-0.021036355,-0.0069877706,0.025467625,-0.0030130197,-0.0324067,-0.011187738,-0.008570367,-0.008497324,-0.008168631,0.014998142,-0.001996506,0.003484755,-0.018638114,0.030848451,0.04124489,-0.004598659,-0.009471229,-0.026295444,0.038128395,0.011437301,0.028924989,-0.0030038892,0.016276393,0.025272842,0.007164291,-0.0138659775,0.021450264,-0.017347688,-0.016434653,0.008546019,0.0043308353,0.00799211,0.013159895,-0.015107706,-0.009659924,-0.023227641,0.00037567638,0.033891905,-0.0017210733,-0.0028288907,0.029606722,-0.025735449,0.024664152,0.01242338,-0.004063011,-0.01604509,-0.008040806,-0.011942514,-0.04258401,0.0005972779,0.009763401,0.0014517276,-0.0017469426,0.019745931,-0.02267982,-0.027585868,-0.023970244,-0.0103051355,-0.0069208145,0.011632082,-0.027269349,-0.021912869,-0.004403878,0.0011382519,0.02583284,-0.003679536,0.003996055,-0.028024126,-0.033964947,0.016069438,-0.0068051633,-0.007377333,-0.025735449,0.005858649,-0.023848508,-0.021827653,-0.0066651646,0.012100774,0.028048474,0.008497324,-0.04092837,-0.014158148,0.010810349,0.03467103,-0.0021304179,-0.039881423,0.0027162828,-0.010810349,0.002069549,-0.0051616984,-0.0047082235,0.013634674,0.031530187,0.018492028,-0.042340536,-0.018613765,-0.041804887,0.04236488,0.011151216,-0.011668603,0.02350764,-0.0051251766,0.015765093,0.0087408,-0.022290258,0.017457252,-0.027001524,-0.032869305,-0.032942347,0.008533846,0.0153390085,0.025224147,-0.012405119,0.010055573,-0.0029643243,0.009781661,-0.013159895,-0.019782452,0.00289889,0.0018260725,0.0031591053,0.01789551,0.01275816,0.0068599456,0.012277294,-0.004178663,-0.005268219,-0.0049395263,-0.017615512,-0.0035669282,-0.0140364105,0.054538697,0.0008734713,-0.015996395,0.002408894,-0.001064448,-0.012234686,-0.08414542,0.011096434,0.009580794,0.04609007,0.002798456,-0.020464186,-0.03715449,-0.01275816,0.0007502115,-0.029728461,-0.019149413,0.022058956,0.008826017,-0.012721638,0.006914728,0.0028973683,0.012514683,0.015083359,0.023970244,0.02022071,-0.034646682,-0.029679764,-0.011479909,0.0039382298,0.0044647474,0.021766784,-0.046844848,0.032479744,0.00562126,0.019271152,-0.01149817,0.024834586,0.003451277,-0.025078062,0.063644715,0.02303286,-0.01051209,-0.009379926,-0.02012332,0.013853803,0.014219018,0.0063547324,-0.0024728065,-0.04163445,0.023105904,-0.006902554,-0.007620809,0.0010598829,0.00033554083,-0.014535537,0.010676437,0.027050221,-0.011504257,-0.0359858,0.047794405,-0.022594603,-0.0036430147,0.00948949,-0.03993012,0.015838135,0.005189089,-0.009605141,-0.013719891,-0.01285555,0.0061508208,0.008923408,0.01141904,-0.002860847,-0.01834594,0.042608358,0.006750381,-0.012965115,0.014219018,-0.028730208,-0.041999668,0.03097019,-0.009343404,-0.032650176,0.004799527,0.0015962917,0.026465878,-0.0026675875,0.009239927,0.0058069103,0.036886666,-0.011668603,0.028364994,-0.0014471625,-0.012831203,0.0074686366,-0.013281634,0.021876348,-0.06982901,0.024627632,0.014547711,-0.015594659,0.004108663,-0.009051233,0.028681511,0.0015567268,-0.0043795304,0.06091778,0.010232093,-0.0064034276,0.0012927072,0.04701528,-0.016787693,-0.03128671,0.0058464753,0.001873246,0.0017423775,-0.017627686,0.010177311,0.005091699,0.034914505,0.013379024,-0.054490004,-0.023653725,0.0057521285,-0.009745141,-0.011954688,-0.0001389527,0.025905881,0.010518177,0.002720848,0.0071338564,-0.02053723,0.008959929,-0.025443276,0.019332021,0.0060199522,0.019429412,0.008083414,-0.009258187,-0.0082234135,-0.0018412898,-0.0025001976,0.025297191,-0.0061325603,0.015777266,0.009191232,-0.008661671,0.000263449,-0.008083414,0.043046616,-0.008777321,0.028364994,0.006488644,0.038250133,0.05186046,-0.016020743,-0.024749368,-0.0046017026,-0.0154364,0.017469427,-0.0051251766,-0.025491972,0.0000025798029,0.012940767,0.00048428963,0.0034817115,-0.034281466,-0.022521561,-0.056340422,-0.0054843044,0.03218757,-0.009495577,-0.019624192,0.0045043123,-0.030483237,0.024031114,0.02344677,0.05010743,-0.029022379,-0.017018996,-0.00066879904,-0.0064338623,0.006567774,0.013975541,-0.0062299506,-0.009994703,-0.05215263,-0.009629489,0.002201939,0.0128677245,0.033526693,0.027391087,0.021036355,0.000014182972,0.0036095367,-0.0023738942,-0.0034025817,-0.017652035,-0.022351127,-0.0119972965,-0.013756413,-0.039954465,-0.0025336756,-0.020500707,0.013926846,-0.001711943,0.0010682524,0.01563118,0.013963368,-0.016325088,-0.01610596,0.00043977913,-0.027439782,0.013305982]},{"id":"interface-CollectedReaction","type":"interface","source":"main","text":"Interface: CollectedReaction\nProperties: reaction: MessageReaction, user: User","meta":{"url":"/docs/typedefs/CollectedReaction"},"embedding":[0.01582886,-0.018599574,-0.03998312,0.056580886,-0.0019686648,-0.0039605293,-0.009989151,0.015404636,-0.001276815,-0.044782154,-0.020508582,-0.045232892,0.0156167485,0.036668867,0.011182281,-0.016173542,0.022616446,0.03422958,-0.025784869,0.064906284,0.010632115,0.01745947,0.059497423,0.01719433,-0.010625487,0.01410545,-0.008378426,0.04324434,-0.062891215,-0.035661336,0.037464287,-0.022033138,0.0018510089,0.0059192516,-0.013561913,0.012408554,-0.013986137,0.041626986,-0.038524847,0.01764507,-0.041626986,-0.03118047,0.0075299772,0.022006623,-0.084049396,0.00888882,-0.021211203,0.019037055,0.011566734,0.02449894,-0.026964743,-0.0058927373,0.02109189,0.025930695,-0.0021111777,-0.063739665,-0.012322383,0.020760465,-0.045710143,-0.0016115543,-0.024512196,-0.034839403,0.0055281697,-0.012991862,-0.01370774,-0.03139258,-0.01582886,0.028555583,0.038949072,-0.00016188042,0.025731841,-0.010791199,-0.040354315,0.013124432,-0.00051495165,-0.0015162696,0.0013315001,-0.03643024,-0.0020598066,-0.024167515,-0.020919548,0.022775529,-0.052100018,-0.06464114,-0.025864411,-0.0282109,-0.012342269,-0.012932206,-0.035025,-0.03547574,-0.022086166,0.0214896,-0.053558286,-0.0017780954,0.02056161,-0.045259405,-0.018931,0.0188382,-0.009531785,0.0376764,0.032532685,-0.08601143,0.00769569,-0.028555583,0.0038279593,0.031206982,0.0044510383,-0.0021260916,-0.044198845,-0.017751126,-0.023120211,-0.0037815599,0.004169327,-0.0038014452,-0.007682433,-0.028926779,0.0062075914,-0.025904182,-0.03475986,-0.0032363655,-0.04228984,-0.0042886403,0.0021227775,-0.011626391,-0.011911416,-0.019116597,-0.0026414576,-0.019315451,0.000044276316,0.01698222,0.024220543,-0.031631205,-0.017141303,0.0022321476,-0.010817714,-0.019620363,0.028423013,0.004195841,-0.036403727,0.00047103784,-0.0063434755,0.003362307,-0.0067710136,0.022656217,-0.029297974,-0.004871948,-0.06177763,0.035528764,0.030438077,-0.014304305,-0.0109966835,0.040805053,-0.053213608,0.00880265,0.020389268,-0.0023597463,0.04173304,0.018931,-0.021542627,-0.06071707,0.0564218,-0.063739665,-0.045020778,-0.029828254,-0.026871944,0.0058827945,0.013774025,0.005302801,-0.025572756,0.026898457,0.012189813,0.022934614,-0.053849943,-0.01914311,-0.055202156,-0.026235607,-0.04223681,-0.017393187,-0.0065821013,0.038524847,0.03285085,-0.01043326,-0.047645666,-0.11178304,-0.00032106802,-0.035979502,-0.04934256,0.0033308216,0.0068604983,-0.044410955,0.0103404615,0.057376307,0.0120108435,0.014184992,0.01224947,-0.060929183,0.03661584,-0.025493216,-0.033089478,-0.032400113,0.008716479,-0.011778846,0.044225357,-0.028900264,-0.037040062,-0.009757154,-0.00006659572,0.00446761,-0.012832778,0.0069930684,0.063845724,0.005687254,0.0009329615,-0.0070858677,-0.063739665,-0.0006694786,-0.049952384,0.0056010834,-0.057429332,-0.020455554,-0.05037661,0.03706658,0.118570626,-0.010247663,0.017764382,0.059868623,0.00470955,-0.0119445585,-0.02467128,0.0073377504,-0.054088566,-0.03290388,-0.0047725206,-0.07773906,0.021821026,0.0036025902,0.014635731,0.015444407,0.034680318,-0.033142503,-0.015895145,-0.024817107,0.024923164,0.06198974,-0.0048487484,0.00032438227,0.014582702,0.014688758,0.010844228,0.030835787,0.03311599,0.02201988,0.050827347,-0.013369687,0.0048089772,-0.021436572,-0.040009633,0.021741483,0.0054850844,0.00008751693,0.024843622,-0.02374329,-0.03051762,0.025943954,-0.039744493,-0.019554079,0.044808667,-0.0040930994,-0.040380828,0.06347453,0.0031733948,-0.0098499525,0.032400113,0.03462729,-0.021158176,0.027468508,0.041070193,0.024949677,-0.029801741,0.020680923,-0.013018376,0.034680318,0.03263874,0.0019703219,-0.032002404,0.016094001,0.01569629,0.0024641452,0.03582042,0.012561009,-0.007927687,0.013369687,0.040805053,-0.0017316958,0.0035363054,-0.0005717082,0.023411866,-0.0150599545,0.027044283,-0.0017532385,0.0107448,0.011831874,0.049687244,-0.043085255,0.043085255,-0.00309551,0.06708043,-0.022934614,0.024207287,0.007145524,-0.008544138,-0.061459463,-0.021635428,-0.01870563,-0.05456582,-0.0012063872,0.031153955,0.021714969,-0.031816807,0.04064597,0.05013798,-0.002924826,0.055255186,-0.024883393,-0.01967339,-0.036191616,0.053531773,-0.039161183,0.058277782,0.07015605,0.02648749,-0.03608556,-0.009525156,0.0052431445,0.09338232,0.0015676405,-0.013760768,0.026129551,0.015020183,0.04796383,0.058808062,-0.046134368,-0.029563114,-0.017711354,-0.0080470005,-0.017353415,0.00990298,0.015669776,-0.012653808,0.014768301,-0.013515513,0.044278387,-0.055785466,-0.02410123,0.034070496,-0.014450132,-0.002329918,0.0011773875,-0.006615244,0.043986734,0.015417893,0.016438682,0.011208795,0.0037119605,0.029404031,0.032479655,-0.078852646,-0.007702318,0.04125579,-0.06294425,-0.012428439,-0.03735823,0.004142813,0.011911416,-0.026010238,0.0132238595,-0.009445614,-0.018506775,0.020349499,0.022099422,0.025334131,0.044331416,-0.030676702,-0.013760768,-0.009014761,-0.016902678,-0.036165103,0.0070394683,-0.041573957,0.032612223,0.08219341,-0.042395893,-0.0310479,-0.024392884,0.045763172,0.02440614,0.013283516,0.05721722,0.042608004,0.013628198,0.006651701,-0.0067710136,0.025320875,0.02387586,-0.00027218284,0.028131358,-0.04642602,0.039505865,0.037835483,-0.009299787,0.04199818,-0.04510032,0.021025605,0.0040698997,-0.0018128951,-0.009134075,-0.01834769,0.023769805,0.027335938,0.0047725206,-0.006655015,-0.017804153,-0.0035860192,-0.02241759,0.004871948,0.016398912,0.021807767,-0.0156167485,0.010154864,-0.057005107,-0.04767218,0.011089482,0.033062965,0.016968962,0.008862305,-0.038259707,0.070209086,0.010738172,-0.038180165,0.015351608,0.0074703204,0.016531482,0.03656281,0.009008133,-0.035396196,-0.029404031,0.008199456,-0.0228153,0.01773787,-0.017883696,-0.058171723,-0.014980412,0.0026514004,0.02113166,-0.053478748,-0.029589629,0.020508582,0.08749621,0.0017399815,0.014330819,0.006336847,0.023451636,0.011599877,0.060664043,-0.013800539,-0.029669171,-0.059603482,-0.010539317,-0.0067146714,0.007609519,-0.008484481,-0.010956912,-0.0031104241,0.0036092189,-0.0014748415,-0.029828254,0.03184332,-0.026699603,-0.0013679569,0.010154864,0.04085808,0.051039457,0.004401325,-0.010665258,-0.008656822,0.04987284,0.01384031,-0.046266936,0.00032686794,0.032002404,0.024777336,0.0030325393,-0.008497738,-0.015364866,0.0014218135,-0.00902139,0.01989876,-0.02781319,0.016438682,-0.04324434,0.007092496,0.017751126,-0.020893035,0.00052240875,0.02489665,0.04700933,-0.014927384,0.009366072,-0.015815603,-0.014715272,0.022841815,-0.013681226,-0.017406443,-0.027044283,-0.0055480553,-0.009942751,-0.04931605,0.010797828,-0.011679418,0.0017747812,0.037702914,0.005975594,0.0070063258,-0.017181074,-0.016491711,0.01711479,-0.00444441,-0.021608913,-0.014914127,-0.013263631,0.0031286525,-0.013336544,0.021966852,0.013409457,-0.008762878,-0.016756851,-0.05424765,-0.011268452,0.015934916,-0.03680144,-0.0031535095,-0.021595657,0.007198552,-0.015855374,-0.008431453,0.03515757,-0.003254594,0.030385049,-0.002407803,0.027309423,0.0024194028,0.0027673992,0.035343166,-0.03523711,0.02042904,-0.0038710446,-0.015272066,-0.024087973,0.023557693,-0.0029944254,-0.024697796,-0.035343166,0.0022188907,-0.028635124,-0.032241028,0.014344077,0.03722566,0.02453871,-0.026765887,0.018082552,-0.009458871,-0.003987043,-0.029695684,0.0021244346,0.003546248,0.0005783367,-0.023279296,0.0030723102,0.026527261,0.011884903,-0.001837752,-0.009578184,0.04231635,0.01777764,-0.031206982,-0.008689965,0.0044278386,0.0066351295,-0.003266194,-0.0013919852,0.00006545645,-0.008577281,0.032665253,0.057535388,-0.0108972555,-0.005355829,-0.00045280947,0.009889724,0.014702016,0.015537206,0.027919246,-0.0034070495,-0.06681529,-0.013071404,0.03179029,0.08537509,0.0058131954,-0.037623372,-0.056846026,0.04324434,-0.020773722,0.0029811682,-0.023000898,-0.033672784,0.0016703822,0.0007030354,0.017896952,0.006128049,-0.0028784266,-0.0060783355,-0.0550961,0.011314851,-0.015285323,0.0001375414,-0.021237718,0.048175946,-0.021940337,-0.026832173,0.029191919,0.011725818,0.020614639,0.0003270751,-0.021913825,-0.03643024,0.021025605,-0.016266342,0.028661638,0.012938834,-0.025002705,0.0054320567,0.029642656,-0.024260314,0.03998312,0.0067014145,0.032400113,0.032559197,0.005133774,-0.012150043,-0.0033059649,-0.0012005873,-0.03356673,-0.009989151,0.017711354,-0.025148533,-0.014967156,0.0009901323,-0.003927387,0.032028917,0.026288634,-0.013986137,-0.0013447572,0.027468508,0.008133171,0.015205781,-0.015815603,0.029695684,-0.049103934,-0.030013852,0.00050045183,0.031896345,0.02095932,0.028396498,0.008312141,-0.0065721585,0.027733648,-0.00473275,0.004391382,-0.020057844,-0.028290443,0.0016968963,0.03491894,-0.000104347106,-0.031206982,0.016107257,-0.003466706,0.0010009037,0.0073112366,-0.031472124,-0.018016266,0.012030729,0.012488096,-0.029510086,0.016889421,-0.010592344,0.017949982,-0.030570647,0.027521536,-0.020535097,-0.010559202,-0.047354013,-0.024976192,-0.017366672,0.0003954315,-0.004590237,0.022497132,-0.025546243,0.021343773,-0.020627895,0.03576739,0.02701777,0.0065158163,0.013495628,0.007437178,0.033593245,-0.028635124,0.020097615,0.011792103,0.006452846,0.06379269,0.025678813,0.006784271,0.014397104,-0.016372398,0.036589324,-0.02175474,0.014131964,0.024339857,0.048918337,-0.021038862,0.021767998,0.0060219932,-0.0156167485,-0.006906898,0.014980412,-0.020720694,-0.0059855366,0.010526059,-0.0035230482,0.033884898,-0.0053492,-0.017141303,0.00017234102,0.0242338,-0.02834347,-0.022589931,0.015855374,-0.015112982,0.032559197,-0.04849411,-0.0045173233,-0.021701712,0.0103736045,-0.032453142,0.030199451,-0.0151262395,-0.011129254,0.013614941,0.0041726413,-0.057906583,-0.0026298577,0.022059651,0.041229278,-0.01711479,-0.005306115,0.01972642,0.011420907,0.0014450132,0.001422642,0.010366975,-0.01291232,0.033195533,0.013919852,-0.0031385953,0.004885205,0.01003555,-0.008212713,-0.018228378,-0.011427536,-0.01047966,-0.013999394,0.004112985,-0.008033743,-0.026288634,-0.0524447,-0.014635731,0.003532991,0.0024542024,-0.0013878423,-0.017499242,0.0046333224,-0.00107796,-0.010976798,0.03529014,-0.03091533,-0.018506775,0.02268273,-0.011341365,-0.06225488,0.0188382,0.02370352,-0.039824035,-0.011460679,0.015736062,0.010015665,0.022245249,-0.012627294,-0.034043983,0.014582702,-0.030597162,0.015219038,-0.013462486,0.009246759,0.005147031,0.0127002075,-0.016809879,0.022059651,-0.0054486278,-0.025015963,-0.011971073,-0.029589629,0.03436215,-0.012282613,0.02662006,-0.014344077,0.07429224,0.01954082,-0.014065679,0.01759204,0.03152515,0.001045646,0.026288634,-0.002924826,0.03696052,0.0076625473,0.029324489,-0.02794576,-0.01645194,0.016730336,-0.0014541274,-0.019739676,0.003665561,0.013827053,-0.0046399506,-0.022616446,0.030066881,-0.02453871,0.031949375,-0.024909906,-0.020972578,-0.014423618,-0.01224947,0.037968054,0.030491104,-0.01605423,0.007437178,-0.024604995,-0.050164495,0.0052464586,0.00049755187,0.00892859,0.010327204,0.01972642,-0.025334131,-0.03571436,-0.00910756,0.006717986,0.017353415,0.009028018,0.017181074,0.02715034,0.009644469,0.04255498,0.012846035,0.01980596,0.0016322684,-0.0173269,0.014688758,-0.01980596,0.031551667,-0.030703217,-0.025175046,0.009538413,0.030941842,0.011705933,0.0026265436,-0.00096278975,0.0073112366,0.03754383,-0.033407643,-0.024512196,0.005518227,-0.009830067,0.023106955,-0.009624584,-0.0018460376,0.01821512,-0.012766493,0.015762575,-0.0013588427,-0.01384031,-0.008782764,-0.03184332,-0.027176853,-0.0060816496,0.058808062,0.03656281,0.033195533,-0.03574088,-0.00029289688,-0.021635428,0.034998484,0.007198552,0.020137386,0.018824942,0.012839407,0.010625487,0.0032380228,-0.011135882,0.004464295,-0.0012917292,-0.0057767387,0.039479353,0.0069798115,-0.02042904,0.015311837,0.011043083,-0.017048504,-0.00349322,-0.036244642,-0.010585716,0.019355223,-0.012329012,-0.007815002,0.01658451,-0.028661638,-0.023292553,0.035581794,0.021290746,0.01087737,0.010870742,-0.021701712,-0.03926724,-0.029483572,-0.0061346777,0.010817714,-0.0020482067,-0.032267544,0.026514005,0.000730378,0.009982523,-0.005640854,-0.043164797,0.022231992,0.015736062,-0.023928888,-0.0050608604,0.059709538,-0.022510389,0.06273213,0.025718585,-0.018162092,-0.028263928,-0.061724603,-0.032718282,0.003678818,-0.010201263,0.013654712,-0.025466701,-0.0091274455,0.021330517,-0.023995174,-0.032347083,0.021688456,0.017101532,0.015749319,-0.003241337,-0.0024310027,-0.0034435063,0.005210002,-0.0019520936,-0.0077089467,0.03555528,-0.009690869,0.026739374,-0.013329916,-0.05610363,-0.015179267,0.00391413,0.023186497,-0.0031833376,0.008133171,-0.00066326436,-0.006575473,-0.017790897,0.01932871,-0.03892256,-0.024711052,0.022722501,0.021184688,0.017658327,-0.012295869,0.025320875,0.009724011,-0.028688153,0.021927081,-0.020641152,0.0011102739,-0.013641455,0.01967339,-0.032930393,0.018427232,0.010990054,0.024870135,-0.030040367,-0.028873751,0.018095808,0.016968962,0.011089482,-0.0014740129,-0.005564627,0.04920999,-0.032188002,0.03343416,0.0060054217,0.009962637,-0.026858686,0.0036721895,0.031631205,-0.00080370577,0.0035893333,-0.00963784,0.050084952,0.0016190114,0.01556372,0.011016569,0.043217827,0.0121765565,0.0045471517,0.010420004,-0.034309123,-0.037040062,-0.028184386,-0.032134973,0.019646877,0.0058165095,-0.011169024,0.017075019,-0.012985233,0.00072209234,-0.00014095922,0.042024698,0.011652905,-0.06045193,-0.021542627,-0.0072582085,-0.0022205478,0.01539138,-0.004331725,0.006761071,0.0016024401,-0.004401325,-0.019182881,-0.015709547,-0.0062871333,0.030172937,0.013157574,-0.0086037945,-0.030491104,0.019607106,0.009604698,-0.0010083608,-0.031074412,0.022231992,-0.033778843,0.0063501038,-0.019872246,0.018732144,-0.028582096,-0.0011003312,-0.058012642,-0.0014764986,0.014291048,-0.0022536903,0.0063534183,-0.024817107,0.022072908,-0.031869832,0.016889421,0.02383609,-0.004315154,-0.022536904,0.007940944,-0.0010680172,-0.031419095,0.0014259563,0.051012944,-0.014662244,-0.022894843,0.030146422,0.017525757,0.009187102,0.023266038,-0.006774328,0.008636937,0.026540518,0.008206084,-0.030941842,-0.003907501,-0.032081943,0.013409457,-0.000992618,-0.023623977,0.011566734,0.017883696,-0.008053629,-0.0038246452,0.0031054527,-0.024127744,0.014741786,-0.021781255,-0.0044874954,-0.03126001,0.022908099,0.020985834,-0.023014156,0.019235909,-0.00028916835,-0.015179267,-0.016226571,-0.009896352,-0.0005671511,-0.019050311,0.021078633,-0.009213616,0.011997587,0.0056441687,-0.0040467,0.008292255,-0.012454953,-0.020455554,0.0069731832,0.014967156,-0.009518527,0.022974385,-0.0050376607,-0.0024492312,-0.008769507,0.077473916,-0.013084661,-0.021781255,0.043960217,0.0065456447,-0.012189813,0.001111931,0.042926174,-0.005054232,-0.018732144,0.0017366672,-0.024114486,0.012773122,-0.014410361,-0.005362457,0.0076426617,-0.0027557993,0.0110629685,0.046134368,-0.025493216,-0.0034169923,0.01185176,0.02127749,0.017419701,-0.02357095,-0.009140703,0.026394691,0.0012353868,0.0035495623,0.023716776,0.0126339225,0.0156167485,-0.0018311234,-0.006048507,-0.028104844,0.0019885504,0.002169177,-0.012971977,-0.001515441,-0.038365763,0.026169322,-0.025493216,-0.0119445585,0.0041759554,0.0013836996,-0.013336544,-0.03741126,-0.014065679,-0.0115203345,-0.032426625,-0.018122321,0.016491711,0.03258571,-0.022112679,0.019249167,-0.013555285,0.011354622,0.00632359,0.017963238,0.0037815599,0.00243266,0.039691463,-0.009260016,0.01264718,0.031949375,0.028529068,0.016995477,0.000820277,-0.009929495,0.04740704,-0.013190717,-0.014834586,0.006313647,-0.008060257,-0.0076028905,0.028184386,0.00078837737,-0.016836392,0.031949375,0.029165404,0.0014160136,-0.009425729,0.011334737,0.012395297,-0.027362453,0.023385352,0.03656281,-0.014078937,-0.00862368,-0.014025908,0.031949375,0.0007863059,0.03656281,-0.022523647,0.00986321,0.008703222,0.01844049,0.0139463665,-0.0060915924,-0.016080743,-0.017539013,0.016425425,0.045736656,0.007072611,-0.03356673,0.0004942376,-0.0037583602,0.00880265,-0.012958719,-0.009233502,-0.010141606,-0.007868031,0.016611023,-0.006800842,-0.0028320272,-0.04205121,0.006393189,-0.01834769,-0.018732144,-0.0105061745,-0.022324791,0.053293146,-0.010705029,0.0055480553,-0.0049680616,-0.015166011,0.04793732,0.008968362,0.01976619,0.03669538,0.008378426,0.03099487,0.020150643,0.01565652,-0.0030093396,0.016955705,-0.065860786,-0.016823135,-0.004189213,0.03470683,0.0014897556,-0.0031551665,0.018851457,-0.015152753,0.0020796922,0.027256396,0.015537206,-0.019315451,-0.0073642647,0.023239525,-0.020389268,-0.005992165,-0.0120439865,-0.00039957432,0.03364627,-0.01954082,-0.0015129554,0.0031120812,0.004881891,0.013853567,0.020773722,-0.010552574,-0.03595299,-0.040539913,0.027839703,0.0060518216,-0.026500747,-0.028423013,-0.02113166,0.012859292,-0.042422406,0.008404939,-0.02648749,0.014662244,0.00782826,-0.011785475,-0.01932871,0.014211507,0.0038611018,-0.0014922413,-0.0094655,-0.01932871,0.0076028905,0.021927081,-0.0033192218,-0.015497435,0.0025503158,-0.024591738,0.00019885504,0.004460981,-0.013502257,-0.00013888782,-0.012627294,-0.016915934,0.005097317,0.01556372,0.014622473,-0.012686951,0.023146726,0.006946669,-0.031604692,0.026739374,-0.031233497,-0.010148235,-0.00097190397,-0.0073244935,-0.037862,0.02436637,0.00083229115,-0.0022818614,-0.006442903,0.024034945,0.031074412,-0.033487186,0.022258507,0.022921357,0.00994938,0.01745947,0.0017300388,0.029642656,0.005080746,-0.011069597,0.0038014452,-0.05212653,-0.015908403,0.043748107,0.011951188,0.009266645,-0.018360948,0.0010763028,0.021569142,0.019845732,0.0054022283,-0.004182584,-0.0074504353,0.022364562,-0.045816198,0.0035661336,-0.022430846,0.026646573,-0.0045802942,0.011255194,-0.04244892,-0.05117203,-0.023053927,0.015099726,0.0055944547,-0.0011343022,-0.016359141,0.0017250674,0.0069731832,0.013217231,0.016730336,-0.0016678965,-0.011493821,-0.011712561,0.0016703822,-0.006532388,0.02467128,-0.0010265891,0.006641758,-0.00036974606,0.0072979797,-0.015431151,0.0075896336,-0.0020316355,-0.02215245,-0.0009420757,0.025599271,0.0012619009,-0.025122019,0.020548353,-0.037252177,0.0097173825,0.0017515814,-0.015417893,0.0094655,-0.024817107,0.025572756,-0.060133763,0.003718589,0.037888512,0.023358837,0.02410123,-0.00658873,-0.0024939736,-0.011089482,-0.016160285,0.016690565,0.013150946,-0.017366672,-0.004205784,-0.0018162093,-0.018493518,0.02449894,0.03568785,-0.025453445,-0.040486883,-0.009438985,0.016624281,0.032877363,-0.027919246,0.039850548,-0.049687244,-0.0019404937,0.021993367,-0.013515513,0.0008617051,-0.029032834,0.0065721585,-0.013694483,-0.043323882,-0.037782457,0.022735758,0.010154864,0.02343838,0.038180165,0.042077724,0.007636033,-0.01193793,0.02099909,0.040089175,0.0080138575,-0.017075019,0.0052630296,-0.009140703,0.0033705928,0.025453445,0.02807833,0.015338351,0.03078276,-0.0010497889,-0.017101532,-0.00042463833,0.0025967152,-0.011971073,-0.02847604,-0.014914127,-0.0017084961,0.007198552,-0.015205781,0.008332026,-0.0063302186,-0.0006065078,0.006598673,0.045577575,0.051808365,-0.0048885196,0.021874053,-0.007543234,-0.012401925,0.0044377814,-0.05019101,-0.0097173825,0.010658629,0.029616142,0.018493518,-0.03780897,0.007927687,0.004620065,-0.021304002,-0.016518224,0.03627116,-0.005428742,-0.008126542,0.046107855,0.006519131,-0.03706658,0.020004816,0.035979502,0.023027413,0.016703822,0.023159983,0.005226573,-0.030066881,0.0009487042,-0.021025605,-0.033195533,0.003599276,-0.04634648,0.052895438,-0.01198433,-0.0046532075,-0.011765589,0.017658327,0.003718589,-0.0069532976,0.0017714669,0.027760163]},{"id":"interface-DispatchHandler","type":"interface","source":"main","text":"Interface: DispatchHandler","meta":{"url":"/docs/typedefs/DispatchHandler"},"embedding":[-0.009335297,-0.014914542,-0.008663595,0.015147582,0.010946013,0.020959867,-0.043153472,0.02832118,0.046882108,-0.025949659,0.00063143484,0.0077999765,-0.009163944,0.032049816,0.026593944,-0.038684595,-0.011830193,0.030212915,0.0031785932,0.07084408,0.004825293,0.036217116,0.052666977,-0.016436154,-0.0052571017,-0.016340196,-0.036409028,-0.010973429,0.028924342,-0.027251938,0.06042583,-0.025346497,0.05379105,-0.0031751662,0.055765033,0.014050924,-0.007834247,0.014434755,-0.021563029,0.025058623,-0.03248848,-0.027526103,-0.024140174,-0.0072447937,-0.04578545,0.021151781,0.054366797,0.04649828,-0.0066793296,0.028293764,-0.006199542,-0.021151781,-0.01269381,0.03679286,0.020178499,-0.009163944,-0.008183806,0.008423701,0.0026833839,0.00683012,-0.042385813,-0.017080441,0.01856093,-0.022371814,-0.03429796,-0.015298372,-0.038300764,0.008471679,-0.00094672386,-0.0045408476,0.029883917,-0.005202269,-0.0078068306,-0.019835792,0.033886716,0.008423701,-0.013173598,0.00582942,0.027046315,0.0033996382,0.0000055856976,0.029445253,-0.062235314,-0.06865076,-0.004263256,-0.030925741,-0.044113047,0.01180963,-0.03717669,-0.030459663,-0.017094148,0.06673161,-0.029692002,0.008348306,-0.0056135156,-0.047320772,0.028293764,-0.0056203697,-0.013865863,0.04148107,0.08850026,-0.03492854,-0.011782214,-0.0057129003,-0.001250875,-0.026744734,0.0035298665,0.0208502,-0.041672986,0.015997492,-0.0340238,-0.007950767,0.009959021,-0.040356997,-0.007943912,-0.016641777,0.086910106,-0.010815784,0.0049966457,0.0023081214,-0.023742635,0.022029107,-0.0170119,0.0053016534,-0.034818877,-0.046580527,-0.0031768796,-0.03525754,-0.048198096,-0.031693403,0.06009683,-0.02346847,-0.0052708103,-0.019287463,0.0013296972,-0.013290118,-0.026018199,0.015120165,0.009952167,-0.0111447815,-0.00097328355,-0.04710144,0.026004491,0.0025325934,-0.016641777,-0.0008704719,-0.0024452035,0.027197106,0.04172782,0.038903926,-0.026854401,0.072598726,0.0036806567,-0.016737735,0.00965744,0.0012371667,-0.024606252,0.0025908533,0.0077314354,0.015874118,0.002342392,-0.039726418,-0.015408038,0.019534212,-0.047622353,-0.03240623,0.030843493,-0.014818585,-0.06377064,0.026168989,0.0018728854,-0.01039083,-0.025812576,0.019040717,-0.033968966,-0.032433644,0.014421046,-0.018972175,-0.045675784,0.02416759,0.07714985,0.06048066,0.03555912,-0.03947967,0.0067273085,-0.00018484677,0.0069740564,0.020562328,-0.027896225,-0.019054424,-0.03355772,0.05327014,-0.0016595513,0.02500379,0.03701219,-0.011089949,0.016449863,-0.026347196,0.010617016,-0.027649477,0.011651986,0.00885551,0.037231524,0.0035607098,0.00044980092,0.01469521,-0.025867408,0.0060350434,0.03832818,-0.007930204,0.024455462,0.0037697603,0.021453362,-0.0240168,-0.07435338,-0.0034938823,0.016902234,0.044003382,-0.01554512,0.012618415,0.008691011,0.026333489,0.056148864,-0.05225573,0.019959167,0.016052324,0.0112544475,-0.02610045,-0.031665985,-0.017683603,-0.014791168,0.0073544593,0.027512396,-0.062399812,0.021809775,0.028458262,-0.012227731,-0.057848684,0.008053578,0.0008147823,-0.022796769,0.0037697603,-0.010281164,-0.019287463,-0.004684784,-0.01562737,-0.0013579704,-0.0068198387,0.0035367205,0.03117249,0.045977365,0.030733828,0.020740535,-0.022536311,-0.008108411,0.034599543,0.034133464,0.021384822,0.014941959,0.06952809,0.015915243,-0.06645744,0.013619116,0.03262556,-0.019835792,-0.07342122,0.029582337,0.027155982,-0.009102257,0.044442046,-0.0043660677,0.017066732,0.043290555,0.009568336,-0.0240168,-0.042084232,0.04233098,0.039150674,-0.050418828,-0.039424837,-0.067225106,-0.03547687,0.013625969,0.0058568367,-0.01416059,0.017944058,-0.017272355,0.058890507,0.045730617,0.020809077,-0.038657177,0.0029318454,-0.009561483,-0.031748235,0.01786181,0.07177623,-0.00018067005,-0.008972029,0.050363995,0.017053025,0.043263137,0.025757743,0.0022926996,-0.02154932,-0.0039890916,-0.07325672,0.036655776,0.022769352,0.019328589,-0.04087791,-0.042276148,-0.022536311,-0.05664236,0.00083106075,-0.013338097,-0.023907134,0.053297553,-0.0058465553,-0.009321589,0.00036219685,0.04117949,0.03207723,-0.031145073,-0.016943358,0.03676544,-0.05516187,-0.010377122,-0.04287931,-0.008732135,0.026497986,0.028814675,-0.02131628,-0.014859709,-0.029034007,0.037450854,-0.010000146,-0.061686985,0.00014254406,-0.0038588636,0.031282157,0.017423145,-0.02840343,-0.02486671,-0.020822784,0.027759144,-0.0005680343,-0.0063708946,0.032762643,-0.010747244,0.014215423,-0.032351397,-0.01786181,-0.024784459,0.014654086,-0.04866418,0.005555256,0.017258648,-0.006573091,-0.02278306,0.035586536,-0.030130666,0.019109257,0.023907134,0.01177536,-0.0124539165,0.017615061,-0.003882853,0.010445663,0.014229131,-0.02908884,0.04556612,0.057574518,-0.02178236,0.0016038616,-0.013728782,-0.037807267,-0.01277606,-0.022577437,0.056916524,-0.014763752,0.034352798,0.018752843,0.0075052497,-0.028033307,-0.0018009172,0.00632977,-0.011213323,0.019506795,-0.056148864,0.011069386,0.06377064,-0.03841043,-0.020301873,0.016285364,-0.00025338784,-0.043372806,0.009047424,0.024880417,0.038821675,-0.023660386,0.04455171,0.0016081454,0.017409438,-0.0022995537,-0.057848684,-0.0029318454,-0.0066142157,0.040302165,0.02455142,-0.024236131,0.044853292,-0.026004491,0.04800618,0.015723327,-0.0014453604,-0.029911334,-0.025730327,-0.06980225,0.021754943,0.004904115,0.013673948,0.026415737,-0.031665985,0.04211165,-0.012577291,0.0108294925,0.06294814,-0.011035116,0.040000584,-0.044085633,-0.041426238,0.02308464,-0.01092545,0.049815666,0.012974829,0.024428045,0.015572537,-0.0027759143,0.03070641,0.012344251,-0.045374203,-0.012467625,0.04710144,0.0051063113,-0.036984775,-0.0036566674,0.016984483,0.00030115244,-0.0018814531,-0.0094244005,-0.032543313,-0.02016479,-0.038766842,0.07534037,-0.017053025,-0.00059073855,0.009417546,0.041892316,0.0035195851,0.014325089,0.02655282,0.016545821,-0.03232398,0.023948258,-0.034736626,0.028348597,0.020247038,0.0071831066,0.0017992037,0.024606252,-0.022330688,0.014517004,0.0072927726,-0.00063271995,-0.05055591,-0.03147407,0.0006258659,0.019068133,-0.019671295,0.01893105,-0.007875372,0.0006040184,-0.005318789,-0.03676544,0.08011083,0.110872075,-0.0023595272,0.013845301,-0.00765604,0.00069869077,-0.01454442,0.012474479,0.024990084,-0.016669193,-0.004321516,0.008958321,-0.042413227,-0.022563728,-0.0056752027,-0.044880707,0.005260529,-0.05927434,-0.0011480633,-0.0059288046,0.033639967,-0.009732835,0.00388628,0.00016867535,-0.02294756,-0.09052908,-0.022508895,0.00823864,-0.023235431,0.0018934477,-0.06651228,-0.003379076,0.013646532,0.0381911,-0.012858309,0.025510995,-0.015174998,0.0029866782,-0.021028407,-0.05348947,0.0040439246,0.046854693,-0.015408038,-0.007285918,-0.022207314,-0.013269556,0.0009484374,-0.02032929,0.0008396284,0.042303562,0.005778014,-0.0002825178,-0.012412792,-0.044195298,0.00203053,-0.023043515,-0.018876217,0.0029129966,-0.01978096,0.011131073,-0.0013811031,0.02955492,-0.016957067,-0.0009672862,0.038108848,0.0017178112,-0.033831883,-0.020247038,0.028074432,0.000047362966,0.049541503,0.017491687,0.00008187448,-0.03237881,-0.012303126,-0.0056066616,-0.02917109,-0.01189188,-0.0069226506,-0.03117249,0.0022241585,0.040576328,-0.015915243,-0.040768243,-0.0050514787,-0.0054901415,0.0023989384,0.029280756,-0.027512396,0.08148165,0.0015001931,-0.021604152,-0.005113166,-0.035805866,0.04441463,-0.017368313,-0.018327888,-0.03731377,-0.0031049117,0.043153472,-0.040823076,-0.007518958,0.008732135,-0.02955492,-0.0048595634,0.01454442,0.011062533,-0.008375722,0.007978183,0.022179898,-0.022673395,-0.030020999,0.0024914688,0.009828793,-0.01854722,-0.017176399,-0.028101848,0.004448317,0.005239967,-0.03632678,0.027416438,0.01516129,0.0054901415,-0.021110658,-0.010644432,0.0022926996,0.004369495,0.013187307,0.018423846,-0.044633962,-0.023345096,-0.00009253048,-0.060754824,-0.0057129003,0.006024762,-0.016175698,-0.01639503,0.013454617,0.0145032955,0.024428045,-0.05949367,0.014037216,-0.016353905,-0.007985038,-0.0093147345,-0.03109024,0.021741236,0.00059073855,-0.032899726,0.006017908,-0.010699265,0.0027279356,0.01646357,-0.0057814415,0.009527212,-0.010699265,-0.020740535,-0.030295163,0.008615616,-0.0043592136,0.06958292,0.04534679,0.018341597,0.031803068,-0.0039034153,0.015915243,-0.037916932,0.00064043084,0.024208715,-0.0021162063,0.055682786,0.012179753,0.000049719067,0.021206614,-0.0143936295,0.0014513576,0.033091642,0.029445253,-0.038383015,0.018972175,-0.0006207253,0.007950767,0.02238552,0.042056814,-0.03432538,-0.016943358,0.023578137,0.061851483,0.04701919,0.0081152655,0.030898325,0.01162457,0.029719418,0.0117273815,0.0012825752,0.0034390495,-0.008053578,0.01624424,-0.04115207,-0.002095644,0.02346847,-0.032981973,0.011357259,-0.022974975,-0.004078195,0.008745844,0.002781055,-0.01839643,0.004067914,0.011480633,0.01716269,-0.0019054424,0.041645568,0.022865308,0.0011626283,-0.053818468,-0.009636878,-0.0015575964,-0.0011951854,-0.004181007,-0.011761651,-0.043838885,0.023756344,-0.008540221,0.044195298,0.002703946,-0.008958321,-0.0053599137,-0.03317389,-0.01015779,0.00550385,0.03147407,-0.006641632,0.012467625,0.034270547,-0.027238231,0.0092187775,0.01939713,-0.0067273085,-0.0069672023,0.001268867,0.001130928,0.00019041573,-0.0071693985,0.00053676247,0.024633668,-0.0071831066,0.006648486,0.035915535,0.006775287,-0.0480336,0.023838593,-0.012981683,-0.027416438,-0.0043489323,-0.0006862677,0.023194306,0.011131073,0.012179753,-0.0044106194,0.018135974,0.027306773,0.0012174612,0.032652978,-0.03980867,-0.00632977,-0.0089994455,0.010377122,-0.06212565,0.04117949,-0.00989048,0.010130374,0.024496587,0.003418487,0.008135828,-0.0020785087,0.022179898,0.005024062,0.0036703756,0.016490987,-0.010877471,0.010603307,-0.012440208,-0.010555329,0.028650178,0.019657586,0.035120457,-0.018464971,-0.013015954,0.0047670333,0.02631978,-0.035339788,-0.026525404,-0.011302426,-0.009993291,-0.002566864,-0.0220154,-0.01224144,-0.013632824,-0.03262556,-0.0065422473,0.005836274,-0.0037457708,0.024894126,-0.0013673948,0.0037423437,-0.0022755642,0.0023972248,0.004146736,-0.037478272,0.007662894,-0.004372922,0.012762352,-0.09387388,-0.008266056,0.012111211,-0.0067341626,0.000061365696,-0.009335297,0.010884326,0.041618153,-0.0090063,-0.017423145,-0.0046539404,-0.015380622,-0.025977075,-0.018835092,0.055682786,-0.015366914,0.03934259,0.02747127,-0.014873417,-0.023303973,-0.0050411974,-0.009054279,0.014832293,0.060590327,-0.007985038,0.0010906601,-0.056313362,0.0012414505,0.05741002,0.0003013666,0.004931532,-0.046827275,-0.009211923,-0.013653386,-0.010054979,0.0036703756,0.0037149272,0.026950357,0.00394454,-0.050912324,0.03130957,0.0062509477,-0.018177098,0.012529312,-0.06881526,0.009026862,0.0060830223,-0.00013911701,-0.0044860146,0.009876772,0.0067889956,-0.060699992,0.0048629907,-0.014571836,0.026031908,-0.0016741162,-0.012385376,0.033119056,-0.015970076,-0.018766552,-0.0014410765,-0.00406106,-0.0081152655,-0.006703319,0.04032958,-0.005274237,-0.008135828,-0.012440208,0.016943358,0.01089118,0.019698711,0.06026133,0.026223823,0.025826285,0.067225106,0.03646386,-0.012584145,-0.024345797,-0.0026662485,0.013358659,0.040905327,0.04978825,0.0052913725,0.027306773,0.01207694,-0.003372222,0.015106457,0.002124774,-0.0079096425,-0.008163244,0.01732719,-0.0014522144,0.018999591,0.017793268,0.0064325817,0.015805576,-0.026073033,0.021658985,0.021425946,-0.0037903225,0.041042406,-0.015558829,0.0013099917,-0.047923934,-0.05409263,0.02908884,-0.0037080732,-0.0021847475,0.02647057,0.04071341,-0.02308464,0.015983783,-0.0013399784,0.018273056,-0.0077931224,-0.01462667,0.0019551348,-0.008732135,0.00382802,-0.011206469,0.0029575482,0.03317389,-0.027676893,-0.007518958,-0.04309864,0.023509596,0.025223123,-0.008663595,0.022042817,-0.007923351,-0.012296272,-0.0034356224,-0.013070786,0.026415737,0.0034887416,-0.010980283,-0.001333981,-0.017382022,-0.057519685,0.017450562,0.032844894,0.0001321558,-0.006322916,-0.011802777,0.004026789,0.016340196,0.016066033,0.007340751,0.01976725,-0.006333197,-0.0027707738,-0.051378403,-0.0008370581,0.004623097,-0.016943358,0.022467772,0.00450315,-0.017642478,0.007991891,0.023989383,-0.007135128,0.022221023,0.003824593,-0.012337397,-0.025305372,-0.00047464707,-0.022508895,0.035805866,-0.020836493,-0.009170799,-0.005911669,-0.0011754797,-0.021754943,-0.06212565,0.0041844337,0.037533104,0.025099749,0.0029421265,0.0029626887,-0.024688503,-0.0055998075,0.009561483,0.005897961,0.009184507,0.03355772,0.0034818875,0.024359506,0.011631424,-0.04038441,0.020109957,0.035065625,0.04830776,-0.027389022,-0.005963075,-0.007327043,-0.0049623754,0.016847402,0.01909555,-0.014325089,-0.021042116,0.036847692,0.033365805,-0.00036476713,-0.01354372,0.04257773,0.0069877645,0.007327043,0.005634078,0.030185498,0.012810331,-0.020000292,0.028650178,-0.06311264,0.0129268505,0.00382802,0.0065319664,-0.06393513,-0.020891326,0.0027930497,-0.01265954,0.01769731,-0.025881117,0.036134865,0.026114156,-0.023372512,0.0050549055,-0.03756052,0.013996092,-0.026607653,0.018423846,0.020342996,-0.0024212142,0.009047424,-0.00078136846,0.006717027,0.005390757,0.03662836,0.001127501,0.04194715,-0.014763752,-0.007704019,0.038108848,0.031748235,-0.018259348,0.0150242075,0.010233185,0.013022808,-0.0011180766,-0.017135274,0.02131628,0.010383976,-0.0047224816,0.022536311,0.021234032,0.0029267047,-0.02977425,0.013070786,0.036600944,0.0024452035,0.0123579595,0.019479379,-0.016504696,0.017135274,0.0034681794,-0.024633668,0.007861664,-0.053160474,0.035997782,-0.011878172,0.008896634,0.038547512,0.031282157,-0.009849356,0.02977425,-0.004705346,0.03457213,0.0016629783,0.03100799,0.01354372,-0.03188532,-0.0030912033,0.02069941,-0.048225515,-0.013482033,0.022344397,-0.04096016,-0.020685703,-0.026374614,-0.0016269942,-0.00016664053,0.025908533,0.0019499941,0.023441054,-0.039068423,-0.015832992,-0.008800676,-0.037971765,0.009691711,-0.02078166,0.03457213,0.002921564,0.038026597,-0.03237881,-0.00980823,-0.0002857307,0.00016589087,-0.0057917223,0.007327043,0.0046779294,0.0037286356,-0.025072332,-0.040685993,0.02308464,0.024962667,0.025181998,0.034352798,0.00022661399,-0.013646532,-0.000041526266,0.03484629,-0.008766406,-0.0033293837,0.021261448,-0.021617861,0.0006648486,0.014174298,-0.00382802,-0.0040542055,-0.0010358273,-0.004948667,0.009184507,-0.028348597,0.003499023,-0.01569591,0.002004827,0.026347196,-0.022536311,0.022591144,0.029993583,0.011439509,-0.043372806,0.014119466,0.0074161463,-0.0074298545,0.0035607098,-0.0108294925,0.004489442,-0.00094929413,-0.022563728,-0.021453362,0.104456626,-0.03109024,0.022467772,0.0002004827,-0.0021590444,-0.0006061603,-0.013146182,0.030980574,-0.025826285,0.0075600827,-0.016833693,0.00021890312,-0.021768652,-0.026333489,0.02732048,0.02016479,0.010760952,0.0072242315,0.025908533,0.005568964,-0.0012423074,-0.008814385,0.011878172,-0.01762877,-0.002657681,-0.027813977,-0.013317535,0.020918742,0.011994692,0.031693403,-0.0018865936,0.017902933,0.007375022,-0.022070233,-0.016011199,-0.008759552,0.00037354897,-0.04830776,-0.0025463016,0.007697165,-0.0059082424,-0.000036251815,0.022275856,-0.015970076,-0.030843493,0.008314035,-0.0033465188,-0.012193461,-0.005455871,0.0053976113,0.026758444,0.032269146,0.0051234467,-0.019602753,0.01976725,-0.029993583,0.012645832,0.020534912,0.012460771,-0.007758852,-0.040274747,0.012803476,-0.015037916,0.0066930377,0.041426238,0.046580527,-0.011850755,-0.0075395205,-0.006555956,0.01771102,0.003985665,0.0017203814,0.018423846,-0.0012243153,0.0012388803,0.02238552,-0.0071556903,-0.037697602,0.0049795103,0.015668495,-0.0007963618,0.014832293,0.013550574,0.029034007,-0.046059616,0.039918333,0.004441463,-0.009280465,0.011172199,-0.036655776,0.026511695,0.030596744,0.009342151,-0.030514495,-0.00031571742,-0.020918742,0.016422447,-0.009993291,-0.01924634,-0.017642478,-0.0045511285,0.022988683,0.00020262461,-0.015832992,-0.0008850369,0.018876217,0.01716269,-0.0061138654,-0.0045271395,-0.018972175,-0.04433238,-0.043756634,0.021576736,-0.012549874,-0.013886426,-0.030185498,0.023276556,-0.04117949,-0.012961121,0.025744036,-0.016669193,0.013536866,0.009684857,0.014681502,-0.029527504,0.021234032,0.020685703,0.03679286,0.01946567,0.059055008,-0.055765033,-0.017560229,0.008930905,-0.007662894,-0.0028478825,0.0022138774,-0.009013154,-0.011487488,0.020137373,-0.014558128,0.036655776,-0.013427201,0.012070087,0.013859009,-0.008204369,0.029829085,0.013639677,-0.03424313,-0.010294872,-0.00027909077,0.015051625,0.0029918188,-0.010349705,-0.038218513,0.0015653073,-0.019287463,-0.008437409,-0.03262556,0.010144082,0.01039083,-0.016765151,-0.02139853,-0.024373213,0.007820539,-0.011549175,0.0043660677,-0.025744036,-0.0036635215,-0.0054387357,-0.016353905,-0.039068423,-0.0036635215,0.009335297,0.015408038,0.0021984556,-0.03627195,-0.02063087,0.0035846992,-0.024647377,0.0072242315,-0.00074367085,0.0037046461,0.028184097,0.032598145,0.0072996267,0.0535443,-0.045456454,-0.020905035,-0.006442863,-0.007964475,0.010116666,0.011220177,0.006144709,-0.031967565,-0.00965744,0.0038417284,-0.00927361,0.015174998,0.0073613133,0.0004810728,-0.010918597,-0.006970629,0.009492941,-0.005647786,0.034462463,-0.018793968,-0.025099749,-0.0028444554,0.017436855,0.016120866,0.00250175,0.042276148,0.02363297,0.008944613,0.012590999,0.037204105,0.027293064,0.02508604,-0.0072242315,0.0050549055,-0.036518697,-0.014407338,0.025127165,-0.012152336,-0.014996791,0.0090063,0.020713119,0.02308464,0.01224144,-0.036107447,0.0123579595,0.035010792,-0.01227571,-0.04285189,-0.0035470016,-0.03440763,-0.038657177,0.0013862436,-0.0021093523,-0.01065814,-0.0043112347,0.02748498,-0.014667794,-0.019191507,-0.0074161463,0.02678586,0.016765151,0.029582337,-0.044304963,0.008128974,0.0062509477,0.0677186,0.02238552,-0.00066913245,0.007916496,0.0009809944,-0.0021179197,-0.008026162,0.010445663,0.013591699,0.022289563,-0.008752698,0.026539112,-0.0055381204,-0.028513094,-0.02063087,0.00044851578,0.018588345,-0.0017563655,0.014887125,-0.015120165,0.021919442,-0.027128564,0.0047464706,-0.0074435626,-0.018286765,-0.010281164,-0.00194314,0.043263137,-0.02316689,-0.020342996,-0.0013005673,0.008629324,0.00027287923,0.0077245813,0.018615762,0.019479379,-0.02016479,-0.025579536,0.01607974,-0.009520358,0.009465525,0.0068335473,-0.021535613,0.046224114,-0.014105757,-0.001083806,-0.009499796,0.016436154,-0.021905733,0.014791168,-0.0074298545,0.015874118,-0.014037216,-0.0059253774,0.04477104,-0.008910342,-0.026196405,-0.023660386,0.009335297,-0.012481334,0.010178353,-0.009486088,0.037067022,0.00850595,0.014092049,0.013118765,0.013756198,0.020247038,-0.002556583,0.006408592,-0.024853,-0.017752143,0.025757743,0.010116666,-0.013646532,0.005952794,0.0044311816,0.0005024919,-0.0048698448,-0.014297673,-0.028430846,0.0056786295,0.028293764,0.036984775,0.016970774,-0.007594353,-0.0017769278,0.03070641,-0.02623753,-0.022906434,-0.01112422,-0.0075600827,-0.01739573,-0.0140098,0.024578836,-0.019685002,0.017806977,-0.006340051,-0.04150849,-0.02116549,0.0038383012,0.009259902,-0.0108294925,0.04287931,0.016120866,0.012940559,-0.0013793895,0.027361605,-0.03717669,0.004691638,-0.054668378,0.023907134,0.011960421,-0.015832992,0.031912733,0.0027142274,-0.014736336,0.011665694,0.040905327,-0.0147089185,0.017793268,-0.016600654,0.013475179,-0.005997346,-0.023153182,-0.004749898,-0.02610045,0.021878317,-0.021028407,0.011747943,0.00012198173,-0.002722795,0.01661436,-0.017176399,0.0064325817,-0.012481334,-0.013817885,0.022755643]},{"id":"interface-EmbedAuthorOptions","type":"interface","source":"main","text":"Interface: EmbedAuthorOptions\nDescription: Author field for an embed.\nProperties: iconURL: string, name: string, url: string","meta":{"url":"/docs/typedefs/EmbedAuthorOptions"},"embedding":[-0.0023585623,-0.03097244,-0.03189579,-0.003778718,0.0050106905,-0.07475137,0.051506985,-0.01359937,-0.025954222,0.03797787,0.014181484,-0.017453361,0.023324676,-0.010297383,0.0055401125,-0.0073416526,-0.024508975,0.015395892,0.011301027,0.009775488,-0.014934216,-0.020875785,0.00068435946,0.055481415,-0.032538123,0.024589267,-0.0153356735,0.019199701,0.027319178,-0.0035579163,0.04319682,-0.011752666,0.031353824,0.009860798,-0.03153448,0.009158247,0.07663822,0.016690591,0.011270917,-0.0011265898,-0.009554687,0.0096951965,-0.010548294,0.040045377,-0.033381183,0.040667634,0.008149586,-0.0030786765,0.052871943,0.014261775,-0.035910364,-0.017102085,-0.019310102,0.009624941,-0.049620137,0.0042679943,-0.018426895,0.026516262,-0.027439615,-0.005020727,0.0085510425,-0.017011758,-0.010949751,-0.009168284,0.01807562,0.017162304,-0.06090109,0.04817489,-0.029888505,-0.0048927623,0.035749782,-0.016590228,0.0081696585,0.04279536,-0.0075323447,0.021277243,-0.035107452,-0.009680142,0.0062727723,-0.02390679,0.0048325434,0.022883072,-0.06286823,-0.047371976,-0.01796522,0.025773566,-0.030450545,-0.042955942,-0.024488902,-0.05580258,-0.038479693,-0.04147055,-0.053393837,-0.092656374,-0.017182378,0.011441536,0.021056442,-0.030450545,-0.011732593,0.047050808,0.025131235,-0.031454187,-0.07422948,-0.0056404765,-0.016339317,-0.027258959,0.0113210995,0.007948857,0.023746205,-0.0026395826,-0.057528846,0.032397613,-0.00055859034,0.0055852765,0.012545545,-0.017383106,0.036291752,0.039965086,-0.014171447,-0.043397546,-0.014030937,-0.029948723,0.07382802,-0.0012376179,0.017644053,0.0005902679,-0.05447777,-0.0034174062,-0.052871943,-0.07683895,0.005670586,0.030671347,-0.04056727,-0.0035227889,-0.015676912,-0.027379395,-0.007823401,-0.00945934,-0.0115117915,-0.011531864,0.0028177293,-0.037094664,0.042835508,-0.03615124,0.008159622,0.04733183,-0.0008863427,0.020484366,0.003643226,0.06507625,0.0022055067,-0.017071977,-0.03125346,-0.007948857,-0.040868364,-0.03426439,0.034043588,-0.010548294,-0.026596554,-0.020163199,0.053955875,-0.025352037,0.011361245,0.008505879,-0.041510697,0.037014373,0.017393142,0.0058261505,-0.031594697,0.02908559,0.008224859,-0.04279536,-0.034705993,0.0254524,0.0041751573,-0.016971612,0.04412017,-0.030249815,0.0041626114,0.07238277,0.039945014,0.02691772,0.017714309,-0.03229725,-0.025813712,0.03657277,-0.012314706,-0.0015581566,0.04532454,-0.011802848,-0.009905961,-0.0014690832,-0.02216045,-0.0131376935,0.023625769,0.011953395,0.0016371935,-0.013258131,-0.019129446,-0.08647393,0.04532454,0.03530818,0.05279165,0.020042762,0.008214822,0.026094733,-0.01551633,-0.005319311,0.0016560118,0.044280753,0.0443209,-0.028925007,0.053674858,-0.023244385,-0.0016146116,0.0020875786,0.020675058,-0.00402712,-0.0025530183,-0.009333885,-0.010568366,0.067565285,0.0509048,-0.043598276,0.03350162,-0.018175984,-0.031494334,-0.028242528,-0.013990791,0.04020596,-0.02159841,0.024428684,-0.0027775834,-0.0077380915,-0.003108786,0.020915931,0.0021565792,0.010618549,-0.017102085,-0.018145876,-0.0008505879,-0.020153163,-0.014843888,0.016168697,-0.03049069,-0.00580106,0.018768134,-0.028362967,-0.029426828,0.0035855165,0.044080023,0.018687842,0.04147055,-0.005504985,0.022762636,-0.030791784,-0.05692666,0.012394997,0.0693317,-0.045846436,0.027640343,-0.050864656,0.01765409,-0.0039091916,0.0005378902,-0.042153027,0.00034907978,0.033260748,-0.0024526538,-0.025291817,0.023645842,-0.019982543,0.016439682,0.038981516,-0.01565684,-0.004880217,0.0001706194,0.02601444,-0.08125498,0.020434182,-0.011090261,0.0025894004,-0.011551937,0.058773365,-0.040868364,-0.005274147,0.0020900876,0.0027575106,0.018898608,0.01598804,0.026656773,-0.0007383053,0.07703968,-0.0073667434,-0.0070706685,0.010879496,0.05439748,0.01985207,0.05692666,-0.0034174062,0.052189466,-0.02334475,0.04034647,-0.013840244,-0.014934216,0.008907337,0.055601854,0.03665306,0.02916588,0.0004030256,0.00520891,-0.014181484,-0.045685854,0.00036507534,-0.024368465,0.0570471,0.025833786,0.0050282544,-0.017443325,0.031835575,0.0499413,0.033943225,-0.042112883,-0.060178466,-0.017925074,-0.030892149,-0.0066340836,0.03550891,0.04636833,0.019831996,0.005876333,-0.023364821,0.010066545,0.014422358,0.0018467042,-0.010869459,-0.014321993,0.012334779,0.0031388951,0.031353824,0.0131376935,-0.027780853,-0.009991271,0.0075473995,0.0033471512,-0.018376714,-0.031293605,0.00216787,-0.010538257,-0.027218813,-0.018276349,0.015165054,-0.05026247,-0.021297315,-0.03663299,-0.0292261,0.00594157,-0.07226233,-0.078003176,-0.0069000493,-0.01601815,0.017613944,0.03251805,0.0020712693,-0.039603774,-0.045926727,-0.010829314,0.014422358,-0.03488665,-0.043116525,-0.002930639,0.014944253,-0.007838456,0.022702416,0.039001588,0.04957999,0.0292261,-0.026395826,-0.044160314,-0.03217681,0.04060742,0.02089586,-0.04552527,-0.038078237,0.03251805,-0.042032592,0.021738918,-0.01799533,-0.020203345,0.0050633815,0.006619029,0.03243776,-0.016590228,-0.029888505,0.0280418,0.029487047,0.011030043,0.014572904,-0.009454322,0.0016259025,-0.0064735007,0.0133283865,0.04139026,0.014693341,-0.00066679565,-0.045685854,0.038620204,-0.00044223043,0.026456043,-0.0075473995,-0.015225273,-0.012144087,0.029185954,-0.009228502,0.045284398,-0.004511378,0.010181963,-0.077200264,0.012716164,0.039061807,-0.046167605,-0.006132262,-0.027921364,-0.037777144,0.039985158,-0.056725934,0.05214932,-0.032598343,-0.0029632575,-0.013278204,-0.0061673895,0.041912153,0.03285929,0.022622125,-0.0054497845,-0.056565348,0.03097244,-0.004147557,-0.0033019872,0.030049087,-0.024669558,0.020534547,0.01971156,0.00070317776,-0.0076578003,-0.025231598,0.026797283,-0.00029168391,-0.016720701,-0.011842994,-0.0127262,0.007582527,-0.007928784,0.049178533,0.019219773,0.02446883,0.00017108987,0.0072713974,-0.00084682426,0.0025103635,-0.005510003,-0.014101191,-0.020193309,0.034003444,0.023184165,-0.010036435,-0.03593044,0.042353757,0.009103047,-0.024789995,0.0088320635,0.0068649217,-0.011893176,-0.0014540285,-0.026656773,-0.010738986,-0.04299609,-0.09683153,-0.03316038,0.007878602,0.028583769,0.01982196,-0.014683305,-0.058612783,0.009609886,0.07515283,0.01664041,0.017413216,0.018778171,-0.029406756,0.025151307,-0.009419194,-0.0006987868,-0.005424693,0.0177946,-0.049058095,-0.04383915,-0.022642199,0.005555167,-0.0048927623,0.013067439,-0.02607466,-0.01911941,0.011441536,0.002409999,-0.02201994,-0.013850281,-0.023043655,-0.038660347,0.028684132,-0.008410533,-0.02615495,-0.041069094,0.0011523082,-0.009845743,0.03370235,-0.052069027,0.036131166,-0.017463397,-0.006659175,0.0042328667,0.02928632,0.017603908,-0.0043708677,0.03595051,-0.0013900463,-0.06872951,-0.044481482,0.011030043,-0.0008361605,-0.04082822,-0.030289963,-0.035047233,0.00085184246,-0.023224311,0.0035202797,0.006548774,-0.0009973708,0.055762436,-0.037716925,-0.002995876,0.008059258,0.028704206,0.01709205,-0.054839082,0.017192414,-0.017112123,0.024227954,0.0070405593,0.017754454,-0.016459754,0.002007287,0.050382905,-0.05006174,0.017674163,0.02719874,0.011180589,0.020956077,-0.012806492,-0.014040973,0.01965134,-0.007371762,-0.018366678,0.020404072,-0.0035177707,0.00977047,0.013348459,0.013268167,0.009353958,-0.019109374,-0.0035804983,0.015887678,0.010688804,0.07439006,0.010377674,0.025612984,0.007908711,0.011732593,-0.009198393,-0.018798243,-0.0056605497,-0.00062445446,-0.026275387,-0.0128466375,0.011963431,-0.009353958,0.0064584464,-0.01430192,0.01717234,0.042955942,0.024087446,0.038720567,0.0134187145,0.010151855,0.006699321,-0.0013059912,0.04042676,0.0018968863,-0.010498111,0.020875785,0.011642265,0.0016121024,-0.045966875,0.017975256,0.031614773,0.02252176,0.026676845,-0.0022983437,-0.06443392,0.010186982,-0.0038088271,-0.01072895,0.0044837776,-0.027640343,-0.022642199,0.00650361,0.0012438907,0.0058211326,-0.040647563,-0.0040647564,-0.02272249,0.017122159,0.0005121718,0.038479693,-0.06660178,0.010478038,-0.0018065583,-0.019239847,0.020614838,0.005444766,0.036873862,0.041089166,0.0018253766,-0.017503543,0.020524511,-0.03663299,0.024348393,0.00240749,-0.028704206,-0.003944319,0.0007019232,0.013940609,0.018727988,0.034946866,-0.045083668,0.0070455777,-0.02509109,-0.0023522896,-0.030631201,-0.006408264,-0.011280953,-0.017533652,0.020875785,0.007728055,0.010658694,0.015285491,0.0029030389,0.030169524,-0.040808145,0.0120838685,0.021417754,0.01199354,0.011893176,-0.038901225,0.02635568,0.009384067,-0.0043181763,0.00032210685,-0.051828153,0.0032919508,-0.009494468,0.023304602,0.0034098788,0.00031881363,0.019109374,-0.06575873,0.022080157,-0.027158594,0.0031514408,0.035749782,-0.018306458,0.016600264,0.017182378,-0.019611195,0.021638555,-0.024549121,0.013027294,0.014201556,-0.015546438,-0.0081696585,-0.002998385,0.0141915195,0.035187744,-0.013087512,0.011250844,0.089203835,-0.012555581,0.0012231906,0.01464316,-0.01458294,0.009755415,0.00329446,-0.023886716,0.00013666802,0.009790543,0.019079264,-0.018276349,-0.019109374,0.013017257,-0.018366678,-0.048576348,0.013749916,-0.010357602,0.00447625,0.009444286,-0.015646802,0.0070004137,0.01072895,0.021196952,0.015957933,0.005740841,0.0070355413,-0.03831911,0.023465186,-0.007843474,0.008134531,0.021297315,0.027439615,-0.009278685,-0.00032869325,0.004079811,-0.038499765,-0.019079264,0.014030937,-0.015104835,0.05018218,0.011491719,0.024227954,0.010809241,0.036612917,0.021899503,0.040507052,0.012736237,0.023967007,-0.007843474,0.024789995,-0.021758992,0.01852726,0.014723451,0.0074119074,-0.03671328,0.002122706,-0.025894003,0.01785482,-0.014452467,0.017031832,0.052751504,-0.034364756,-0.022963364,0.032558195,-0.0052189464,0.006438373,-0.02950712,-0.0076427455,-0.011160516,-0.018055547,0.024107518,-0.01922981,0.006478519,0.062346336,0.009915998,-0.031514406,-0.03340126,-0.009298758,0.03125346,-0.051506985,-0.009399122,-0.0039292644,-0.03805816,0.00080291484,0.0021477973,-0.015436037,-0.011812884,-0.03314031,0.029065518,-0.02258198,-0.020454256,-0.033461474,0.0109397145,-0.027740708,-0.008942464,0.013388605,0.009424212,-0.017975256,0.01461305,0.006438373,-0.014884033,-0.039322753,-0.044361044,0.038780786,0.012716164,-0.031935938,-0.004147557,0.026235241,-0.0022619616,0.0010732713,-0.024669558,-0.0058913874,-0.017674163,0.020123053,-0.03223703,0.021638555,0.00013917714,0.004980581,0.009705233,0.028282674,0.021156806,0.011371281,-0.013499006,0.011070188,0.04391944,0.0023999626,-0.010849386,-0.013830208,0.0016961576,0.008144568,0.0009070428,-0.014964325,0.006036916,-0.0056153857,0.015787313,0.061985023,-0.0019558503,-0.0028478384,-0.007933802,-0.025010796,0.006468483,0.017724345,-0.027078303,-0.013890427,0.012234415,-0.004566578,-0.010869459,0.022140376,0.0027700562,-0.026817355,-0.0043608313,-0.009634978,0.006915104,0.0030034033,0.008922391,0.026034513,-0.005299238,-0.004556542,0.009569741,-0.0049981447,-0.036271676,-0.019811923,0.02021338,-0.000053906635,-0.005600331,0.03432461,-0.0074771442,0.0014339557,-0.024187809,-0.023665914,-0.0057508773,0.026656773,0.016008114,0.049419407,0.040667634,-0.015807386,0.0013273186,0.00021327425,-0.018286385,0.042353757,-0.007948857,0.018587478,-0.017894965,0.06419304,0.038800858,-0.012475289,-0.011351208,-0.013268167,-0.019781815,0.015857568,0.015967969,0.038559984,-0.008014094,0.036813647,-0.002930639,0.004912835,0.015797349,-0.000029658451,0.022541834,0.02916588,-0.007989002,0.013378568,-0.00054855394,-0.0001933582,-0.009072938,-0.009173302,-0.011441536,-0.0109397145,0.023304602,0.014904107,0.048335474,-0.026837429,0.0050859638,-0.028623914,0.014141337,0.00005743507,0.0071609966,0.043799005,0.012244451,0.03452534,0.015666876,0.013719807,-0.0075022355,0.0062828087,-0.037797216,0.015978005,-0.017383106,0.016570155,-0.005535094,-0.032778997,-0.005595313,-0.010146836,-0.003979447,0.011772739,-0.0419523,0.017754454,-0.011471646,0.035247963,-0.005896406,-0.0805725,-0.025472473,0.012967074,0.0120838685,-0.018135838,-0.011551937,-0.018888572,0.026195096,-0.07238277,0.018758098,0.0254524,-0.037556343,0.032899436,0.007697946,-0.057087246,-0.0067093573,0.004247921,0.018968863,-0.029547267,-0.015596621,0.0048300344,0.052912086,0.0040346473,-0.0011322354,0.012154123,-0.0031163131,0.022361178,-0.04628804,-0.021277243,-0.0024263083,0.012475289,0.0054648393,0.012344816,0.052751504,0.0141915195,0.00034343428,0.034103807,0.035328254,-0.0056053493,0.002432581,0.040868364,-0.00026533825,-0.0139004635,0.0010406529,-0.026134878,0.0009772979,0.04781358,-0.035348326,0.013850281,-0.03370235,-0.01097986,-0.014723451,-0.015757203,0.011592083,-0.015345709,-0.023364821,-0.04319682,0.031333752,0.018296422,-0.007090742,-0.006016843,-0.0014904107,0.021016296,-0.0032216958,-0.011461609,-0.0048551257,-0.0147635965,-0.043036234,-0.013649552,0.009298758,-0.0045766146,0.0026094732,0.002835293,-0.0048425803,0.009343921,0.028081946,0.03460563,0.048215035,-0.033260748,0.029587412,-0.03229725,-0.03221696,-0.0048325434,0.021558262,0.009173302,0.03237754,-0.02195972,-0.01447254,0.00830515,0.000789742,0.004566578,0.010468002,0.009624941,-0.0012947002,0.013288241,-0.045685854,0.0369943,0.005861278,-0.009479413,-0.02077542,0.027299104,-0.013228022,0.030390326,0.0103676375,0.018898608,-0.0017312851,-0.015185127,-0.019972507,0.035067305,-0.005735823,-0.0008957519,-0.013659589,-0.0026897646,-0.0068849945,0.024448756,-0.007888638,-0.010628585,-0.00650361,-0.0017074486,-0.005765932,-0.03209652,0.010252219,0.018276349,0.01740318,0.01388039,-0.01880828,0.0015180109,-0.009479413,-0.0042253393,0.017332925,0.024810068,0.04034647,0.04179172,0.01894879,0.012415071,0.034906723,-0.016911393,0.03097244,-0.004340758,0.029045444,0.009394104,0.00394181,-0.05307267,0.0078033283,-0.008084348,0.015546438,-0.026676845,0.0070957597,-0.0017350487,0.015696986,-0.00858617,0.005364475,0.0075473995,0.025372108,0.0031690046,-0.01562673,0.0127563095,0.008746753,0.008290095,-0.012676018,0.004074793,0.04512381,0.02615495,0.00931883,-0.007843474,0.017684199,-0.0116121555,0.024448756,0.021136733,0.0007012959,0.011692448,-0.009082974,-0.018677806,-0.04299609,-0.0033923152,-0.03894137,0.041028947,0.013780026,0.028864788,-0.04901795,-0.01303733,0.0011146716,-0.0035328253,-0.008882245,-0.0036984265,0.04420046,0.017925074,-0.018958826,-0.0023610715,-0.024749849,-0.001326064,0.0023723624,0.0061874622,-0.034304537,0.0044210497,-0.0014515194,0.0009045337,0.008857154,-0.04524425,0.035288107,-0.03657277,0.0189789,0.008184713,0.039864723,0.0068297945,0.026275387,0.015064689,0.0019621232,-0.010799205,-0.009735342,0.038559984,-0.0110400785,0.031414043,-0.0202736,-0.0037912636,-0.010759058,0.025271744,0.0038690458,0.02992865,0.0405472,-0.026375752,-0.004636833,-0.000014290159,-0.002260707,0.0071760514,-0.014984398,-0.003916719,0.006528701,0.0012112723,-0.013167803,-0.003936792,0.0024175264,0.014703378,-0.010457966,-0.008601225,0.035569128,-0.031594697,0.014342066,0.00047735797,0.026656773,0.006202517,-0.0033170418,0.009529595,-0.002106397,0.03552898,0.02936661,-0.025693275,-0.0029130753,-0.0013624461,-0.010021381,0.024729777,-0.027580125,0.025633056,-0.027499832,-0.0051060366,-0.056766078,-0.024729777,-0.01954094,-0.008400496,-0.008731699,0.020675058,-0.007728055,-0.0008311423,0.007888638,-0.005439748,-0.002672201,0.0064132824,0.0014226647,0.02733925,0.028142165,-0.028684132,0.00599677,0.010166909,0.07394846,-0.024669558,0.03474614,0.06616018,0.056806225,0.034023516,0.007497217,0.020333817,0.029868431,0.015275455,0.030611128,-0.008621298,-0.0020938513,0.008219841,0.0020675056,-0.018517224,-0.029547267,-0.012625836,0.014221629,-0.0009007701,0.00343497,-0.023605697,0.0057308045,-0.036492478,0.0022331069,0.025231598,-0.004629306,0.015646802,0.03530818,-0.016008114,-0.000014584195,0.0014051009,0.0024990723,0.013187876,0.0015857568,0.006001788,-0.013569261,0.0033822788,0.010026399,-0.011220735,-0.04628804,-0.023685988,-0.0077330736,-0.00201356,-0.011582047,-0.010407783,-0.0069301585,0.0031263495,-0.024950579,-0.0054347296,0.0043432675,0.018477077,-0.021237098,-0.0034625703,-0.022080157,0.00066491385,-0.011893176,-0.018175984,-0.006669211,-0.014412321,-0.00782842,0.005971679,0.0147635965,0.02635568,0.019581085,0.017433288,0.023685988,0.008224859,0.008480788,0.045284398,0.025914077,-0.012997184,-0.02089586,0.016319243,-0.004930399,0.0047196336,-0.009971199,-0.007607618,-0.020855714,0.019370321,-0.031915866,0.022541834,0.00041651208,0.043357402,-0.028001655,0.015044617,-0.0060870983,-0.03950341,0.023164093,-0.0051486916,0.0044085043,0.015646802,-0.011110334,0.022842927,-0.036291752,-0.014914143,0.0332206,0.014542795,-0.00732158,-0.001878068,-0.006031898,-0.045204107,-0.040226035,0.025231598,-0.014462504,-0.009810615,-0.022883072,0.015275455,0.022481615,-0.01565684,-0.009800579,0.013749916,0.001799031,0.03888115,0.001635939,0.023886716,0.003505225,-0.018888572,-0.024689632,-0.0127563095,-0.0149542885,-0.0038790824,0.025010796,0.008345296,0.026998011,-0.0016698119,-0.02894508,0.0014741014,-0.015957933,0.006498592,-0.04034647,-0.021196952,-0.009961162,0.0024313265,-0.0025894004,-0.021578336,0.016449718,0.00096475234,0.02972792,-0.0016083388,-0.0060569886,0.034445047,-0.045605563,0.009885889,0.01737307,-0.00035221616,0.030872075,-0.0068197576,0.023645842,-0.00444865,-0.016389498,0.014372176,-0.020143125,-0.0011692448,0.0032417686,0.0017225032,-0.018657733,0.006614011,0.027359324,0.02762027,-0.027780853,-0.0060519706,-0.015395892,-0.011531864,0.0010807987,0.020634912,0.00091645203,-0.010091635,-0.020082908,-0.01773438,-0.008254969,-0.041229676,0.020002617,0.0044862865,-0.016881285,-0.012003576,-0.015546438,-0.018607551,0.020594766,-0.0066792476,-0.022863,0.0064183003,0.021156806,-0.013097548,0.02139768,0.00064295914,0.02908559,-0.019862106,0.0007426962,0.02024349,0.024147663,0.015817422,-0.05146684,-0.024769923,-0.013167803,0.015777277,-0.02446883,-0.031915866,-0.0016923939,-0.000056180514,0.031634845,0.030109307,0.00066993205,0.04789387,-0.0083653685,0.031915866,-0.0109397145,0.0023861625,0.022501688,-0.0030611127,-0.019340212,-0.020915931,-0.008104421,-0.007135906,-0.01464316,0.02342504,-0.014843888,-0.008907337,-0.044601917,0.0044561774,0.049339116,-0.003296969,0.009128138,0.03083193,0.036673136,-0.036512554,-0.016620336,-0.016088406,-0.024207883,0.014914143,-0.008992646,-0.025291817,-0.0332206,-0.026034513,0.0048325434,-0.016710665,-0.01593786,-0.036271676,-0.004426068,0.0078083468,0.0041902116,0.0052691284,-0.012505398,0.00585626,0.04327711,0.0068649217,0.016309207,-0.025572838,-0.022602053,0.0009879617,-0.020002617,0.014974361,-0.0033396238,0.009815634,-0.014452467,-0.010126763,0.045485124,0.000049358874,-0.010146836,-0.022501688,-0.00405472,-0.019350247,0.036331896,0.026676845,-0.024448756,0.008902318,0.038499765,0.045926727,0.061061673,0.010407783,0.00715096,0.016299171,-0.02489036,0.01405101,-0.011351208,-0.004428577,-0.00799402,0.014944253,-0.029888505,0.015827458,-0.0014828834,0.0061021526,0.023404967,0.012425107,0.055963162,0.013759953,-0.011873103,-0.009529595,-0.04399973,0.029446902,0.05740841,0.043879297,-0.019249883,0.021036368,0.04040669,0.0043307217,-0.0148539245,-0.0008073058,-0.011792812,-0.0028102018,-0.006794667,-0.024428684,-0.0003142659,0.012977111,0.03251805,0.018507186,0.014392248,0.025853857,0.022642199,-0.035428617,-0.006839831,-0.03595051,-0.028122092,0.0056555313,-0.004403486,-0.03480636,0.027138522,-0.038620204,-0.01765409,0.0014552831,0.031454187,-0.09643007,0.010327492,0.01922981,0.04998145,-0.028884862,0.017383106,-0.01066873]},{"id":"interface-EmbedFieldData","type":"interface","source":"main","text":"Interface: EmbedFieldData\nDescription: A single embed field (name, value, optional inline).\nProperties: inline: boolean, name: string, value: string","meta":{"url":"/docs/typedefs/EmbedFieldData"},"embedding":[-0.0089962315,0.037230007,-0.00811855,0.024636304,0.03467861,-0.018839527,0.0164208,-0.017063754,-0.02596303,0.024126025,0.03780152,0.022023672,0.013338711,-0.031004595,-0.020452011,-0.00014399455,-0.0075521395,0.04416981,0.02628961,0.03571958,0.01864562,-0.0134713845,-0.022962587,-0.010715874,0.008919689,-0.03300489,0.004735396,0.012328357,0.02851443,-0.00037377988,0.01771691,-0.018584387,0.057232972,-0.016880052,0.004220013,0.030963773,0.046823267,0.012114041,-0.014308243,0.003982733,-0.009588156,0.0076541957,-0.020768384,0.028616486,0.017359715,0.007592962,-0.019441657,0.023248343,0.0028652207,0.022207372,-0.0033780516,-0.029677868,-0.01813534,0.0015333905,-0.012828432,0.028432785,-0.038209744,0.054171294,0.035678755,-0.018696649,0.016267717,-0.021248046,0.0031407715,0.047721356,-0.017737323,-0.008715577,-0.073112875,0.05221182,-0.013838786,0.032372143,0.053477313,0.021105168,-0.0061743846,0.04241445,0.05462034,-0.013777552,0.0048680683,0.004253181,-0.0017209183,-0.014491944,0.0063989074,0.04363912,-0.06380537,-0.023329988,-0.0020857684,0.017451566,-0.016502446,-0.0064244214,-0.044659678,0.027697982,-0.068499945,-0.039658938,-0.063927844,-0.061805077,-0.012573292,0.009093184,-0.03731165,-0.00041555904,-0.040842786,0.034658197,0.027208114,-0.02286053,-0.08948265,0.002519506,-0.018308835,-0.023003409,0.016971903,-0.0016533062,0.0047864234,-0.04241445,-0.046986554,0.0030489212,0.0013675496,0.041495945,-0.004038864,-0.0063172625,-0.012910076,0.024248492,-0.00095677446,0.0015869698,-0.011215948,-0.008307354,0.02763675,-0.023472866,-0.018349659,0.016390184,-0.046170108,0.00037377988,-0.06829584,-0.046292573,-0.0031229118,0.015216541,-0.029902391,-0.010210697,-0.03314777,-0.004021004,-0.006633636,0.06649965,-0.000712478,-0.03986305,-0.018676236,-0.034801077,0.08923771,0.0058529084,0.014553177,0.05960067,-0.029494166,0.016063605,0.05955985,-0.006036609,0.0004936956,0.0095422305,-0.017155604,-0.0017834275,-0.020349955,-0.057804484,-0.004546592,-0.011838489,-0.0028703234,-0.047843825,0.0012941969,-0.025983442,-0.0053783483,0.008929895,-0.060417116,0.033351883,-0.0028932858,-0.03847509,-0.022084905,0.03663808,0.0012125522,-0.028943066,-0.06025383,0.0123793855,-0.01468585,-0.005536535,0.0035719578,-0.06013136,-0.010766902,0.028657308,-0.011215948,0.02130928,-0.03782193,0.008960512,0.027187703,0.01999276,-0.011909928,0.01030765,0.010379089,-0.006363188,-0.016716763,0.0069551123,0.018870143,-0.002957071,-0.0133489175,0.0003584715,0.006582608,0.024105614,0.023595333,-0.043312542,0.054171294,0.006388702,-0.010613818,-0.015461475,-0.0017464323,-0.0056896186,-0.024166847,-0.017492387,-0.05241593,-0.011930339,0.012930487,-0.007689915,0.015920727,-0.027228525,-0.004735396,0.020809207,0.036842193,-0.021901205,0.04416981,-0.0043756487,-0.020125432,0.056294058,0.07486824,-0.018615004,-0.0386792,0.01649224,-0.06462182,-0.046619155,-0.034617376,-0.032229267,-0.02920841,-0.018012874,0.016124839,-0.019962141,-0.024370959,0.054130472,-0.03690343,0.033923395,-0.03157611,-0.005403862,-0.018002668,-0.0079042325,-0.003770967,0.034984775,-0.03233132,-0.0006888776,0.037536174,-0.021186814,0.012358975,0.029779924,0.030331025,0.0023383568,-0.012889666,-0.007945055,0.0075572426,-0.047884647,-0.02094188,0.06253988,0.010960808,0.034535732,-0.015451269,-0.012838637,-0.020554066,0.00923096,0.003924051,-0.045394484,0.06466264,0.0017630163,-0.026677422,-0.032188445,0.052456755,0.011654789,-0.010797518,0.0030820894,0.011287387,-0.0015002224,0.02696318,0.008690063,-0.029677868,0.055477608,-0.0381281,-0.026167143,-0.014144953,0.034249973,-0.04241445,-0.030310614,-0.013910225,-0.003066781,0.008205297,0.03625027,0.02028872,0.016808614,0.09005416,-0.00074755977,0.010384192,-0.022411484,0.0032479302,0.024595482,0.07952199,-0.031984333,0.030024858,-0.010501556,0.024534248,0.0011232533,0.018421097,0.029943213,-0.0108995745,0.028555252,0.036372736,-0.04208787,-0.030433081,0.005110451,-0.018002668,0.012348769,-0.039536472,0.057763662,0.05568172,0.022452308,-0.015318597,-0.021799149,0.036148213,0.039944693,-0.007470495,-0.1189564,-0.04108772,-0.045312837,-0.037515763,0.03471943,-0.003969976,-0.0042276676,0.0031841453,0.010991425,-0.010675051,-0.004204705,0.04314925,-0.06547909,-0.014604205,0.0031611829,-0.002036016,0.018584387,0.027779628,-0.017380126,0.017900612,0.025024116,-0.017288277,-0.03039226,-0.016084015,0.044251457,-0.020452011,-0.031474054,-0.005761058,-0.009680006,-0.051027972,-0.01375714,-0.024228081,-0.03471943,0.017972052,-0.0563757,-0.037352473,-0.019809058,-0.014277626,0.025922209,0.008980922,0.04018963,-0.038189333,-0.011083275,-0.003071884,0.0055161235,-0.0067765145,-0.016359568,0.0012941969,-0.019145694,-0.016451418,0.02471795,0.011246565,-0.0034035656,0.0032224164,-0.0025692582,-0.007240869,-0.033596817,0.011348621,0.021452159,-0.017818967,-0.035474647,-0.016512651,0.026575368,-0.011756845,0.03608698,-0.03369887,0.023452455,0.029677868,-0.00738885,-0.006990832,-0.036393147,0.054171294,0.005980478,-0.019451862,0.004398611,0.004434331,-0.048701096,0.01649224,-0.0746233,0.023779035,-0.024126025,0.015777849,-0.017461771,0.024554659,-0.024370959,0.07221478,-0.0027453047,-0.009297296,-0.013777552,0.0076848124,0.049599186,0.0065775053,-0.002630492,0.0131550105,-0.05649817,0.026554955,0.021513393,-0.031841453,-0.02594262,0.0012284984,-0.013614262,0.039393593,-0.016859641,0.051803596,0.0031969023,-0.03212721,-0.034066275,-0.039087426,0.049680833,0.051558662,0.0142470095,-0.0039470135,-0.016390184,0.016982108,-0.0026611087,-0.03161693,0.011552732,-0.03145364,0.012777404,0.03073925,0.030555548,-0.053518135,-0.00075330044,-0.0439657,-0.012603909,-0.03618904,-0.0696838,0.0045950687,0.04931343,-0.0010467112,0.0006620879,0.045639418,0.033086535,0.0143184485,-0.0005469561,0.0035158272,0.051477015,0.009583053,-0.0266366,0.032065976,0.04637422,0.0051589278,-0.010185183,0.014604205,0.0038194435,0.005628385,0.0019696797,-0.014022486,-0.017461771,0.017012725,0.024840416,-0.016941287,0.0025756368,-0.0066030193,-0.035495058,-0.023554511,-0.02800415,0.028698131,0.010297445,-0.03727083,-0.028698131,-0.0020564273,0.083685875,0.037719876,-0.010210697,0.026779478,-0.047231488,0.031412818,-0.03420915,0.03982223,-0.006159076,0.017553622,-0.015318597,-0.059886426,-0.01443071,0.020809207,-0.005755955,0.053477313,-0.0012336011,0.010787313,0.027942916,0.050783034,0.01992132,-0.018033285,-0.020023376,-0.08842127,0.014542972,0.0028397066,0.016502446,-0.017206632,-0.006286646,-0.016298333,-0.0035489954,-0.018523153,0.0410469,-0.016757585,0.009511613,0.008700269,0.009093184,0.020747973,-0.0077766627,-0.00049847947,-0.025820153,-0.03145364,-0.01873747,0.016706558,-0.007669504,-0.006608122,-0.006291749,-0.011226154,0.04829287,-0.03967935,0.02661619,-0.021717504,0.051762775,0.019788647,0.00069461827,-0.030555548,0.018982405,0.016675942,0.007613373,-0.015767643,0.04176129,-0.022738064,-0.016553473,0.0048961337,0.04690491,0.0066948696,-0.015849287,0.026942769,-0.051150437,0.033392705,0.052905798,0.020492833,0.013216244,-0.014308243,-0.014634822,0.021860383,-0.05955985,0.030004447,0.0017234697,-0.022533951,0.0176965,0.019604946,-0.016716763,0.021003112,-0.0070979907,-0.061233565,0.025799742,0.007490906,0.058376,-0.019543713,0.020084608,-0.007245972,0.030780071,-0.025636453,-0.008664549,0.022350252,-0.017614854,-0.040107984,-0.00631216,0.041802112,0.00019693607,0.043230895,-0.014022486,-0.0114098545,-0.00049018743,0.006781617,0.009072773,0.021942027,0.0056181797,0.027983738,-0.02679989,0.030453492,0.009082979,-0.012563086,0.0068275426,0.023207521,-0.0021278663,0.011909928,-0.011001631,0.04037333,0.036148213,0.04984412,0.008613521,-0.006837748,-0.011879312,-0.0019416143,0.00029325136,0.0042812466,-0.039087426,0.010787313,-0.0160534,-0.007945055,0.030535137,-0.007939952,0.00207046,-0.011175126,0.025330285,-0.005980478,0.01778835,-0.044741325,0.012338563,0.016655529,-0.030555548,0.023615744,0.011011836,-0.0130325435,0.001539769,0.0045414893,-0.008628829,0.010363781,-0.028800186,-0.0010103538,0.02698359,-0.017829172,-0.035699166,0.0070877853,0.007960363,0.050987147,0.02267683,0.022554362,-0.035597112,0.028106207,0.02526905,0.0039954903,0.016696353,-0.022411484,-0.024799593,0.018931378,-0.024860827,0.00738885,0.008562493,-0.018870143,0.001930133,-0.003732696,0.008506362,0.032596666,-0.01554312,0.00824612,-0.04057744,0.0017413294,0.022125728,-0.0011672648,-0.034515318,-0.0061233565,0.0143184485,0.0073531307,-0.015257363,-0.0067612063,0.021554215,-0.006511169,-0.06298893,0.013961253,0.025575219,0.004916545,0.0266366,-0.048456162,0.0018063901,-0.014002075,-0.04637422,-0.0108995745,-0.014849139,-0.00643973,0.02284012,0.014736878,-0.004322069,-0.010858752,0.0090319505,0.019441657,-0.008297148,-0.024330135,0.05139537,0.0049037877,-0.008302251,0.006240721,-0.009572847,0.0071439156,-0.026412077,-0.021778738,0.010006585,-0.026167143,0.012420208,0.022942176,0.01656368,0.02816744,-0.022289017,-0.01158335,0.024003558,-0.012052807,-0.0010275758,-0.009042156,0.002291156,-0.017880201,0.024248492,-0.0007265107,0.05502856,0.024085201,-0.033025302,-0.017033137,0.0118691055,0.018890554,0.005260984,0.00044553797,0.044047344,0.010083127,-0.015451269,-0.008036905,-0.04192458,-0.008302251,-0.009593259,-0.01027193,0.04192458,-0.021350102,0.00375821,-0.0036255373,0.02818785,0.031045416,0.022697242,0.06886735,0.021758327,-0.0015729372,0.010695463,-0.014369477,-0.00096251507,0.00713371,-0.007817485,0.0012284984,0.0026151836,-0.025677275,0.018421097,-0.012114041,-0.007036757,0.03676055,-0.023799445,-0.023799445,0.010807724,0.014206187,0.031147473,-0.00904726,0.031882275,0.009373838,-0.060008895,-0.0073327194,-0.00726128,0.01220589,0.049109317,-0.031902686,-0.006358085,-0.024901649,-0.019860087,0.061274387,-0.022574775,-0.015614559,0.007950158,-0.048211228,0.008154269,-0.025207818,0.0123793855,-0.024370959,-0.03216803,0.0059243473,0.0025603285,-0.010425014,-0.029126765,0.0041460227,-0.04261856,-0.038944546,-0.0034239767,-0.012634525,-0.010200491,0.037760697,0.008735988,-0.016961697,-0.054416228,0.0018676238,0.017206632,-0.0048119375,-0.009802473,-0.009128904,0.05702886,0.02404438,-0.015298186,-0.040291686,-0.00083749654,0.016635118,0.024881238,-0.0057202354,-0.0129611045,-0.022921765,0.046659976,-0.021166403,0.031718988,-0.033780515,0.0052864975,0.031718988,0.014440916,0.02302382,-0.025513986,0.031310763,0.0022592633,0.021390926,0.014134748,0.0056743105,0.040944844,-0.017757734,0.0033066124,0.012593703,0.04514955,0.0009140385,0.001747708,-0.0012036222,-0.029841157,0.034943953,0.01271617,-0.020258104,-0.002278399,0.031004595,-0.009532025,0.027922506,0.013767347,0.0052916007,-0.03157611,-0.008067522,0.0035515467,0.0127671985,0.047353957,-0.014532766,0.026065087,-0.0022745717,-0.025656864,0.023615744,0.0017247454,-0.023738211,-0.025840564,0.02001317,-0.011940545,0.015216541,0.046986554,-0.026228378,0.046823267,-0.0018421097,-0.020105021,-0.036311503,0.022309428,-0.00923096,0.011716022,0.029167589,-0.039536472,0.051027972,-0.0028116412,-0.033923395,-0.009894324,0.026738657,0.049027674,-0.0029111458,0.0007622303,0.03143323,-0.0017043342,0.016859641,-0.050252344,-0.007363336,-0.032045566,0.03382134,0.037025895,-0.014879757,0.004704779,0.032065976,0.035148066,0.0019097218,-0.016012577,-0.009955557,0.017961845,0.009435072,0.0018637966,-0.026534544,-0.010047408,-0.015349214,-0.023044232,-0.003194351,-0.03969976,0.01090978,-0.006240721,0.025840564,-0.015481886,-0.0010747766,-0.014451121,0.00034635235,-0.001959474,-0.01271617,0.030290203,-0.03286201,0.019360011,-0.0077052237,0.011838489,0.027881684,0.011909928,-0.07180656,0.012052807,-0.0055416375,0.04055703,-0.009618772,-0.016522856,-0.015696203,-0.01691067,0.04625175,-0.012114041,0.0010888093,0.021268457,-0.019717207,0.015553325,0.009782062,-0.047272313,-0.013787758,0.0075776535,-0.028616486,-0.01357344,-0.055600077,0.0022171654,0.025901798,-0.039026193,0.03882208,0.008506362,-0.024493426,-0.008552288,0.0041077514,-0.04110813,-0.03431121,0.007036757,0.041128546,-0.021595037,0.0018931377,-0.0052660867,0.024248492,-0.045231193,0.015420653,0.016716763,-0.019543713,0.019013021,-0.052497577,-0.01975803,0.025371106,-0.00066272577,-0.011338415,-0.012491647,0.04604764,0.018125135,-0.008138961,-0.008419615,0.036005337,-0.027963327,0.026452899,0.015696203,-0.010251519,-0.006235618,-0.02953499,0.026901945,-0.014665439,0.025024116,0.01589011,-0.0024110717,-0.006118254,-0.010848546,-0.018033285,0.008363484,0.059519026,-0.017961845,-0.02369739,0.014308243,0.0021214879,0.00072395935,0.00045733817,0.010848546,-0.0052201613,-0.014614411,0.010491351,-0.00054376683,-0.028636897,-0.007317411,-0.05192606,0.032494612,0.009516717,-0.018849732,0.01008823,0.0068020285,0.0111649195,0.0069551123,-0.0044215736,0.016645323,0.047884647,-0.03126994,0.05274251,0.026718246,0.010787313,0.02406479,0.006689767,-0.0054855067,0.01846192,-0.022248195,-0.008889073,0.020676533,0.01999276,-0.0031739397,0.011266976,0.011522116,0.021227635,0.0056692073,-0.030473905,0.042373627,0.013257067,0.011032247,-0.00777156,0.009225857,-0.021105168,-0.026657011,0.018084312,0.019798853,-0.019237544,-0.01018008,-0.025983442,0.02904512,-0.0019581984,-0.027595926,0.0067356923,-0.015165512,0.01785979,-0.0023179455,0.01125677,0.011185331,0.0032683415,-0.018053696,0.007669504,-0.00824612,-0.012154862,0.03725042,-0.00999638,0.02130928,0.003406117,-0.025452752,-0.0049216477,0.026371256,0.008455335,0.013369328,0.0065570944,-0.009639184,0.012410003,0.00037186634,0.00035273086,0.0025399171,0.06858159,-0.03075966,0.017431155,0.0025399171,-0.0012444446,-0.01906405,-0.018706854,0.0414143,-0.00840941,0.0020181562,0.010338266,0.031821042,-0.0014823625,0.04208787,0.001306316,-0.00485276,0.044373922,-0.007174533,-0.015788054,0.035352178,-0.004212359,0.015920727,-0.03884249,0.042822674,0.02198285,0.008542082,0.028922653,-0.05033399,0.0044521904,-0.014604205,0.013797963,0.021390926,-0.002502922,-0.0044292277,-0.011134303,-0.022309428,-0.02596303,0.022125728,-0.061396856,0.043312542,0.004610377,0.023758624,-0.024962883,0.024432192,-0.003893434,-0.018359864,-0.0063989074,0.004776218,0.016686147,-0.009312605,0.0049777785,0.015706409,-0.017196426,0.016410595,-0.00036421214,0.0039980416,-0.005873319,0.020982701,-0.013001927,0.03361723,-0.0019939179,-0.03402545,0.035678755,-0.044414744,0.020768384,0.020441804,0.007888924,0.0041000973,0.016277922,-0.014798111,-0.023472866,0.0019492685,-0.010971013,-0.016941287,-0.0162371,0.040944844,0.029514577,0.0026942769,0.00030521106,0.020901056,-0.008889073,0.03504601,0.00083366944,0.0056641046,0.027963327,-0.0018803807,0.0002604021,0.012114041,-0.010333164,-0.0003957857,0.0009765478,0.032678314,-0.01364488,0.022717653,0.002612632,0.014838934,-0.023207521,0.0033857059,0.007419467,-0.038862903,-0.02216655,0.009139109,-0.013818375,0.00121319,0.0010728631,-0.0039776303,-0.0027861272,0.04829287,0.03663808,-0.028494019,-0.006358085,-0.011593555,-0.028371552,0.015257363,0.011246565,-0.022615597,-0.00904726,0.005276292,-0.036658496,0.020778589,-0.017288277,-0.005888628,-0.00008571104,0.040740732,-0.024820006,0.0039623217,0.030555548,-0.004605274,0.0021431746,0.027473459,0.00020634435,-0.009914734,0.008047111,-0.03878126,0.0026738658,-0.016655529,0.04947672,-0.034801077,0.00121319,0.038413856,0.05584501,0.018125135,-0.005424273,0.012083423,0.004431779,0.034413263,-0.0019250301,0.018472126,-0.004352686,-0.014736878,0.02216655,0.011348621,-0.033045713,0.012940694,0.0011340966,-0.0026355947,0.0028728747,-0.026840713,0.011940545,-0.0064652436,0.01839048,-0.010593407,-0.035984926,-0.0072051496,0.0060161976,0.02594262,0.01837007,0.014696055,0.017574033,0.021656271,0.018421097,0.032249678,0.00090702216,-0.01074649,-0.01158335,0.014645028,-0.007312308,-0.010266827,-0.006985729,0.025452752,-0.022329839,-0.03286201,0.005056872,0.019513097,-0.015788054,-0.011246565,0.022309428,0.007337822,-0.025656864,-0.006230515,-0.0235341,0.0072051496,-0.01452256,-0.00011305885,0.0056487964,-0.0062203095,-0.028208261,-0.0064091133,-0.008812531,0.03404586,0.0105117615,0.027187703,-0.013889814,0.011532322,0.004763461,0.010838341,0.010521968,-0.015614559,-0.0069091874,0.0053681424,-0.004204705,-0.0017464323,-0.024860827,0.018155752,-0.017298482,-0.00027682673,-0.004878274,-0.0038526119,0.032086387,0.065846495,-0.020809207,0.030780071,0.02884101,-0.0084145125,0.00096825574,-0.033066124,-0.011920134,-0.0022771233,-0.008195092,0.01554312,-0.018308835,0.005684516,0.018176163,0.04482297,-0.003957219,0.0057202354,-0.0027172393,-0.0317394,-0.0045414893,0.036883015,-0.011685405,0.0041766395,-0.0016724417,-0.0038832286,0.0058682165,0.017124986,-0.011307798,-0.016798409,-0.0064499355,-0.01280802,-0.00461548,0.029596223,-0.013553029,-0.019288573,-0.006756103,-0.008741091,-0.034617376,0.020411188,0.01771691,0.0030642296,0.023064643,-0.028963476,-0.030637193,-0.0043042093,-0.043190073,0.021942027,-0.013287684,-0.028044973,-0.010583201,-0.020605095,-0.01125677,-0.04088361,0.028800186,0.050374813,0.01468585,-0.004669059,-0.009338118,0.029637044,0.0010090781,0.014206187,-0.015114485,-0.02054386,0.035352178,-0.010210697,-0.015002224,0.020105021,-0.013308095,0.01236918,-0.051313728,-0.0054599927,0.028575663,-0.0029621737,0.0019671284,0.0011111341,-0.014491944,0.038699612,-0.0072357664,-0.019696796,-0.035066422,0.0015958998,-0.018431302,0.0065979166,0.007215355,0.02267683,0.0075062145,-0.016318744,0.01408372,-0.04041415,0.018910965,-0.006893879,-0.014910373,-0.004072032,0.03227009,-0.021248046,-0.012705965,-0.007848102,0.014716467,-0.00016759499,0.017492387,-0.020605095,0.02337081,-0.01924775,0.04367994,-0.015992166,0.022615597,-0.013838786,0.040434565,-0.016298333,-0.017278071,-0.02473836,-0.027902095,-0.012797815,0.0038066865,-0.012134451,-0.026718246,0.0041179573,0.050415635,0.023289166,-0.0011570592,0.0049216477,-0.025105761,-0.005276292,0.0132264495,0.036311503,0.049395077,0.003054024,-0.016022783,-0.02559563,-0.01718622,0.009776959,-0.009787165,0.024962883,-0.020002965,0.0017272969,-0.029249232,-0.000861097,-0.0076439898,0.012267124,0.023085054,0.025371106,0.0130325435,-0.01220589,-0.0022133382,-0.0001397688,-0.018788498,0.016247306,0.019717207,-0.0114098545,-0.025452752,-0.011287387,-0.009440174,-0.021676682,0.043924876,-0.03741371,-0.02070715,-0.0012151035,0.03353558,-0.00033742245,-0.0022082354,-0.008690063,-0.014165364,-0.014369477,0.011960956,-0.008077728,-0.0066540474,0.0021291422,-0.015583942,-0.0034673505,-0.028391963,0.016869847,-0.012889666,0.016533062,0.0101596685,0.038740434,-0.003079538,-0.016675942,0.0070214486,-0.009281988,0.010414809,0.00868496,-0.0379444,0.0025871182,0.03402545,0.011654789,0.07601126,0.009435072,0.02147257,0.005939656,-0.045761883,0.032515023,-0.0045950687,0.005209956,0.022289017,0.002315394,-0.02183997,-0.0051895445,-0.0048451056,-0.006939804,-0.014655233,0.0142470095,0.04121019,0.009006437,-0.008899278,0.012583498,0.009144212,0.03431121,0.06017218,0.011797667,-0.052864976,-0.03363764,0.0047736666,0.03782193,0.004947162,0.018941583,-0.022084905,0.011062864,0.008924792,-0.0410469,0.016635118,-0.011246565,0.049027674,0.024779182,0.010083127,0.030902538,0.030494316,-0.009220754,0.018778292,-0.015369625,0.011899723,-0.008460438,0.009674903,-0.04416981,-0.016726969,0.0080624195,-0.024166847,0.00085790775,-0.01742095,-0.049803298,0.030861717,0.024554659,0.015757438,-0.023840267,0.013389739,0.006266235]},{"id":"interface-EmbedFooterOptions","type":"interface","source":"main","text":"Interface: EmbedFooterOptions\nDescription: Footer field for an embed.\nProperties: iconURL: string, text: string","meta":{"url":"/docs/typedefs/EmbedFooterOptions"},"embedding":[-0.034380034,0.011995123,-0.021038827,0.009422602,0.012294252,-0.04255626,0.06325607,-0.010015877,0.015574714,0.043274175,0.0025513317,-0.0026473026,-0.0011560137,-0.055638224,0.032365892,-0.015405207,-0.021198362,-0.015664453,0.008096458,0.036593597,-0.015873844,-0.0023494186,-0.0041354755,0.025186766,0.0007827241,-0.0078621395,0.012015064,0.02769946,0.015106076,0.011715934,0.060863033,-0.03394131,0.044151623,-0.0030461429,-0.009587124,0.007388517,0.08343739,0.016551873,0.01167605,-0.007014604,-0.024608446,0.008784458,0.010998022,0.028915923,-0.017389437,0.021557318,0.02115848,0.052407615,0.028038474,0.02385065,-0.0070345458,-0.018944915,-0.01107779,0.012782832,-0.042596146,0.011955238,-0.046345245,0.036294468,-0.007911995,-0.0034748963,0.0043673012,0.0044146637,-0.0077624293,-0.009936109,0.0054890397,0.039943855,-0.06485143,0.043513477,-0.0290954,-0.004150432,0.061221987,-0.016113149,-0.007228981,0.049815156,0.0050378516,0.01652196,0.023092855,0.0011859267,0.0076627196,-0.053285066,0.025106998,0.004452055,-0.060583845,-0.030930066,-0.0044645187,0.019104451,-0.040522177,-0.030232096,-0.043473594,-0.029075459,-0.044151623,-0.054361936,-0.057911612,-0.066725984,-0.052806456,0.015494946,-0.0023992737,-0.029454356,0.00741843,0.00040663016,0.028955806,-0.027121142,-0.07681664,-0.020340856,0.005022895,-0.0060125175,0.0032879398,-0.0024079983,0.0073286905,-0.0011080282,-0.045068953,0.018356625,-0.0017673611,0.029913023,0.037630584,-0.015345381,0.036274526,0.02532636,0.009761617,-0.056675207,-0.017529031,-0.04937643,0.01988219,0.023491694,-0.009273037,0.015355352,-0.059028365,0.019224104,-0.052766573,-0.045228492,0.010519413,0.020201262,-0.051131327,0.020390712,-0.0049057356,0.0070195897,-0.005115127,0.013969382,-0.034080904,-0.009681849,0.0042302,-0.02355152,0.031827457,-0.020231174,-0.0106191235,0.0362147,-0.013929497,0.0014146367,-0.018067466,0.012842658,0.0052397647,-0.025765084,-0.037949655,-0.009332864,-0.031428616,-0.04885794,0.017539002,-0.016791178,0.019463407,-0.04825968,-0.00033402877,-0.03601528,0.020181319,0.029893082,-0.032126587,0.025904678,0.012822716,-0.008704689,-0.04050223,0.017090308,0.026463054,-0.04024299,-0.022494594,-0.0006487387,-0.002552578,0.01013553,0.014338309,-0.007622835,0.015305497,0.020998942,0.044789765,0.016372394,0.037072208,-0.01938364,-0.008221095,0.017090308,0.022594303,-0.0023219984,0.038906872,0.0024877663,-0.040781423,-0.0033652151,-0.009661906,-0.018097378,-0.014258541,0.038707454,0.004100577,-0.02899569,-0.023870593,-0.06301677,0.013141789,0.035756033,0.03354247,0.020300971,0.006351532,0.036454003,-0.047621533,-0.00023759042,0.0025102012,0.04127997,0.03356241,-0.018775407,0.027918821,-0.041399624,-0.00022684042,0.008246023,0.057034165,-0.0027769257,0.004850895,-0.0145676425,0.017100278,0.054601237,0.0679225,-0.046584547,0.029394532,-0.0014283468,-0.04590652,-0.004444577,-0.052607037,0.055279266,-0.035775974,0.0078023137,0.0061521116,-0.008689733,-0.009766602,0.01890503,-0.020739697,0.0028591864,0.0015953613,-0.042755682,-0.011047876,-0.025446013,-0.023132738,-0.010250196,-0.05372379,-0.016531931,-0.0040133307,-0.0104895,0.0061321696,0.029514182,0.027360445,0.011835586,0.0070893867,-0.024488796,0.029534126,-0.028517082,-0.02779917,0.03571615,0.052766573,-0.04710304,0.022414826,-0.044670116,-0.0067603434,0.018536104,0.042077653,-0.053843442,0.0018184625,0.02165703,-0.016242772,-0.028178068,0.04482965,-0.025465954,0.008001734,0.04135974,0.006321619,0.025206707,-0.031149428,0.0059526917,-0.080884814,-0.0035546643,0.015305497,-0.017259814,-0.014128918,0.029015632,-0.045946404,-0.023990246,-0.02127813,-0.00477362,0.04323429,0.016202888,-0.0020964043,-0.0020552739,0.09021768,-0.026921721,-0.026562765,0.00093540514,0.060703494,0.007807299,0.059546858,-0.022813667,0.020181319,-0.0151359895,-0.010928225,-0.046584547,-0.007233966,0.00447449,0.05164982,0.05196889,0.01107779,-0.03800948,-0.02008161,-0.04066177,-0.036194757,0.005828054,-0.016841032,0.04363313,0.058230687,0.009253095,-0.022195464,-0.029893082,0.03880716,0.031907223,-0.014467932,-0.051171213,-0.0047885766,-0.02405007,-0.0070195897,0.06608784,0.024409028,0.018974828,0.026502939,-0.00017496002,0.022355,-0.00063876767,0.0033402876,0.0042052725,-0.020600103,-0.01345089,0.0059526917,0.03288438,0.0049979677,-0.006700517,0.019682769,-0.0009584631,0.00860498,-0.03928577,-0.054162513,0.00063565176,0.02582491,-0.050054457,-0.029314762,0.0111176735,-0.012593383,-0.046066057,-0.011157557,-0.03432021,0.00781727,-0.06277747,-0.07007624,-0.008465386,-0.044949304,0.00856011,-0.008779473,-0.011925325,-0.0071940823,-0.055359036,-0.025286475,0.01157634,0.004170374,-0.016851002,-0.011317094,0.026343402,0.01108776,0.03810919,-0.0048658517,0.048818056,0.0467042,-0.026263634,-0.027918821,-0.039405424,0.03848809,-0.004923185,-0.054162513,-0.00890411,0.051410515,-0.019742595,0.030511284,-0.006600807,-0.029633835,0.0063664885,0.0145676425,0.01732961,-0.013460861,-0.01889506,0.05587753,0.03186734,0.0010295066,-0.004369794,0.003105969,-0.014757091,-0.010698891,0.0024715636,0.01574422,0.010015877,-0.012413905,-0.032704905,0.025166823,-0.0008307096,0.009562196,-0.013700165,-0.013191643,-0.020699812,0.04127997,0.020819465,0.019234074,0.0068002273,0.015285555,-0.08164261,0.004843417,0.036075108,-0.032026876,0.0040357653,-0.00038263743,-0.041080553,0.041479394,-0.035257485,0.035596497,-0.010539355,-0.052607037,-0.04255626,0.00003267842,0.01713019,0.04423139,0.050333645,-0.0038562873,-0.010778659,0.013829788,-0.01820706,-0.01057924,0.022355,-0.019732624,0.022195464,0.035137832,-0.0045991275,-0.022394883,-0.023730999,0.019493321,0.0054142573,-0.01869564,-0.0063664885,-0.015963584,0.033761833,-0.017499119,0.043473594,0.03432021,0.02897575,0.019064566,-0.013789903,0.019762537,-0.03539708,0.036374237,-0.0140690915,0.004591649,0.049057357,-0.011785731,-0.013411005,-0.014228628,0.04690362,0.023272332,-0.017190017,-0.0034474758,0.013101904,0.00761785,0.0121845715,-0.024708157,-0.029613893,-0.019682769,-0.08008713,-0.04127997,0.028477198,-0.007553038,-0.0005920286,-0.025386186,-0.05292611,-0.03441992,0.07095369,0.034360092,0.015255642,0.01871558,-0.03186734,0.019134363,-0.0055937353,0.0019418538,-0.005214837,-0.015345381,-0.013720106,-0.03156821,-0.006461213,0.003395128,-0.0040532146,-0.002854201,-0.010409732,-0.031189311,0.029274879,0.046066057,-0.021058768,-0.031508386,-0.011007993,-0.06628726,0.015205787,0.011705963,-0.0011896659,-0.018526133,-0.007727531,-0.009951065,0.02839743,-0.07785363,0.03591557,-0.014079063,-0.029354647,-0.012284282,0.027101198,0.037331454,-0.0042376784,0.0324656,-0.0055039963,-0.08100446,-0.06253816,0.01543512,0.00058704306,-0.020041725,-0.03188728,-0.03491847,0.016302597,-0.012822716,0.0010563036,-0.012114774,-0.0031882296,0.037630584,-0.044271275,-0.0010587964,0.034300268,0.016282655,0.014039179,-0.059427205,0.026004389,-0.021936217,0.014597556,0.017479176,0.011047876,-0.02602433,-0.0026373316,0.046265475,-0.019373668,-0.009761617,0.025585607,0.030152328,0.0061770394,-0.012084861,0.0063565173,0.0028990705,-0.048379328,-0.019812392,0.054960195,-0.025984446,0.033163574,-0.003941041,0.03194711,0.009906196,-0.01316173,-0.017977728,-0.012393963,0.007483241,0.06556935,-0.0100657325,0.060583845,0.0010394775,0.0021699406,0.0022023462,0.0099959355,0.0022497086,-0.0030511285,-0.010559297,-0.0029987807,0.004953098,0.0030685777,0.041678812,0.0055987206,0.014418077,0.03749099,0.036872786,0.045068953,0.007348633,0.014517787,0.0012787818,-0.011496572,0.03986409,-0.003848809,0.017259814,0.022374941,0.011386891,-0.02215558,-0.010479529,0.00029710488,0.022534477,0.03049134,0.015764164,-0.0055837645,-0.043553364,0.02720091,-0.008988864,-0.0048882863,-0.0070295604,-0.024987346,-0.022235347,-0.02058016,-0.01167605,0.010125558,-0.03463928,0.002470317,-0.026143983,0.030132385,0.010419703,-0.019872218,-0.0554388,0.016003467,-0.013331237,-0.0049356488,0.009018777,-0.017558945,0.045866635,0.037650526,-0.011037906,-0.023092855,0.026104098,-0.02592462,0.00935779,0.020151407,-0.020899232,-0.0021873899,0.0034250412,0.0075829513,0.021597203,0.010220283,-0.010629094,0.02167697,-0.009661906,0.016143061,-0.013740049,0.039126236,0.0060823145,-0.011257268,0.031189311,0.015514888,0.013171701,0.021936217,0.0017947814,0.03443986,-0.040741537,0.008769501,-0.0008961443,0.02482781,0.015574714,-0.016601728,0.013979353,0.021996044,-0.0020764624,-0.002002926,-0.034858644,0.00031938383,-0.028716503,0.0077524586,0.0022459696,0.0056685177,0.014408106,-0.04443081,0.025745142,-0.034679163,0.0075231255,0.033901427,-0.04215742,0.00727385,0.0052696774,-0.056715094,-0.0029190124,-0.052766573,0.018376566,0.026642533,0.008739588,-0.0003723548,0.005294605,0.03256531,0.04431116,-0.017299699,0.008914081,0.06776297,-0.010205327,-0.020739697,0.010928225,0.0014794483,0.00894898,-0.007024575,-0.028676618,0.0016227815,-0.00865982,0.0073087486,-0.025186766,-0.0016128105,0.013560571,0.0027320562,-0.040342696,0.016172975,0.010768688,-0.0026298533,-0.0082360525,0.0054391846,0.002804346,0.0066207494,0.021318015,-0.004290026,0.002794375,-0.0006487387,-0.020759638,0.028816212,-0.0055737933,0.017439293,-0.0044021998,0.040023625,0.001819709,-0.009796515,0.0077026035,-0.019852277,-0.022315115,0.01781819,-0.0028193025,0.041200206,-0.008958951,0.015674423,0.012114774,0.014507816,-0.008639879,0.04363313,0.03156821,0.018266886,-0.023790825,0.0145477,0.0018296799,-0.0031458528,0.0044470695,-0.012972281,-0.008475357,0.0019169262,-0.016990596,0.021397782,0.014707237,0.036075108,0.026383286,-0.014218657,-0.01890503,0.008644864,0.0004944997,0.019413551,0.01375999,0.0036518816,-0.01701054,-0.02285355,-0.009921153,0.0046464894,0.009023762,0.047222693,0.021517435,0.0021126072,-0.024708157,-0.0100507755,0.05340472,-0.055757876,-0.004170374,-0.017598828,-0.022933317,0.00082759367,0.03362224,-0.013909556,-0.00049044896,0.014667353,0.028915923,-0.041678812,-0.0055787787,-0.011526485,-0.00069797056,-0.04949608,-0.011037906,-0.0018072452,-0.012982252,-0.010738775,0.008879182,0.029354647,-0.011227354,-0.045388028,-0.023232449,0.023013085,0.023013085,-0.024588505,0.0046464894,-0.004070664,-0.0013248976,-0.0061072423,-0.0021799116,-0.025505837,0.01594364,0.020959059,-0.017479176,0.024109896,-0.0063365754,0.045946404,0.020879291,0.050812256,-0.011745847,-0.0008768255,-0.0069697346,0.016143061,0.039604843,-0.015963584,-0.0016963177,-0.0043149535,-0.018755466,0.036454003,-0.014986425,0.005907822,0.017678596,0.00806156,0.0044046924,0.079209685,0.007303763,-0.0013423469,-0.021876391,-0.06126187,0.04124009,0.028756386,-0.02295326,-0.032106645,0.038607743,0.0010307529,0.002702143,0.023830708,0.0013772454,-0.03067082,0.014288454,0.0010288834,-0.0056635323,-0.013530658,0.017648684,0.0008045357,-0.010698891,0.0076527484,-0.001703796,-0.011197441,-0.030610994,-0.007134256,0.009522312,-0.024987346,0.0017723467,0.03196705,-0.018416451,-0.023730999,-0.013101904,-0.013590484,0.004449562,0.025665374,-0.0012850136,0.030750588,0.044470694,-0.008340748,-0.0035895628,-0.006655648,-0.021597203,0.042994987,-0.0072439373,0.02265413,-0.02038074,0.022235347,0.02769946,-0.015145961,-0.0009852602,-0.023890534,0.00368678,0.0159237,-0.009367762,0.053843442,-0.020350827,0.027779227,0.012344108,-0.005728344,0.023491694,0.019752566,-0.009731703,0.03950513,-0.020560218,0.027559865,0.0047063157,-0.01751906,-0.010319993,-0.0005814344,-0.009532283,-0.026004389,0.011765789,-0.0022422303,0.013042078,-0.044949304,-0.016452163,0.0037839974,0.028477198,-0.015494946,0.014607526,0.03808925,0.01750909,0.034080904,0.0277194,0.01732961,0.026542822,0.018157205,-0.032764733,-0.0015043758,0.0031234182,-0.011985151,-0.034858644,-0.02355152,-0.0009696805,-0.0038413308,0.010260167,-0.00088305736,-0.02759975,0.009377733,-0.024169723,0.024608446,-0.015913729,-0.093966775,-0.013889614,-0.010828515,-0.015484975,-0.00007840484,-0.013022136,0.02305297,0.015305497,-0.05751277,0.025346301,0.0013136803,-0.06915891,0.021916276,-0.0162328,-0.058509875,-0.011297151,0.002874143,0.02552578,-0.017917901,-0.01424857,0.0153852645,0.06688552,-0.012623296,0.029374588,0.0024653317,-0.04993481,0.028118242,-0.048060257,-0.034200557,0.026243692,0.038328554,0.022335058,0.007293792,0.08004725,0.020330885,-0.009108515,0.03988403,0.03938548,-0.011307123,-0.00024709402,0.049535967,-0.0063864305,0.0111874705,0.009417617,-0.017180046,-0.00034898528,0.06915891,-0.02165703,0.011915354,-0.020360798,-0.0055339094,-0.006027474,0.0035820846,0.017419351,-0.028955806,-0.022474652,-0.031328905,0.02819801,0.013091933,0.037869886,0.0010027095,-0.014228628,0.020659927,0.024089955,-0.013201614,-0.015205787,-0.02275384,-0.03816902,-0.028038474,-0.0042750696,0.005304576,0.00093665154,-0.01593367,-0.010908282,-0.002592462,0.037750237,0.04323429,0.009133443,-0.031109544,0.02552578,-0.013420977,0.009218196,0.004018316,0.018915001,0.031029776,0.017180046,0.013401034,-0.0294743,0.013869672,-0.006835126,0.004227707,0.025485896,0.021198362,-0.0022584333,0.02008161,-0.040821306,0.038029425,0.0059626624,-0.014577613,-0.031129487,0.010599181,-0.002914027,0.019263986,0.02077958,0.006924865,0.0095522255,0.0010463326,-0.015046251,0.032824557,-0.016771235,-0.026642533,0.009133443,-0.009183298,-0.0033876498,0.015116048,-0.008919067,-0.023611346,-0.0052547213,-0.00024709402,-0.022275232,-0.0047387215,0.022594303,0.008520226,0.0524475,-0.009821443,-0.020021783,0.010160457,0.0012445064,0.007253908,-0.0032405774,0.005613677,0.036194757,0.018177148,0.016741322,0.007228981,0.038966697,-0.015913729,0.03908635,0.00028869184,0.02889598,-0.008375647,-0.01633251,-0.027819112,0.01147663,0.0372118,-0.002111361,-0.020460509,0.015784105,-0.00024989838,-0.009522312,0.008919067,0.028656676,-0.004137968,0.031508386,-0.0016925785,-0.025206707,0.025206707,-0.0006998401,0.008854255,-0.026662474,0.0013498252,0.040422466,0.015395236,0.0038064322,-0.011157557,0.005638605,-0.038228843,0.014657381,0.009911181,-0.010419703,0.021018885,-0.0025775055,0.010888341,-0.042436607,-0.016083235,-0.059148017,0.039445307,0.0037241713,0.016172975,-0.05017411,-0.017399408,0.022813667,0.003335302,-0.038428266,-0.0015617091,0.051131327,0.0036020265,0.0081164,0.018256916,-0.026343402,0.029534126,0.010449616,0.036254585,-0.04323429,0.00059296336,0.0070893867,-0.013331237,0.002804346,-0.03396125,0.019333784,-0.03950513,0.013710136,-0.0063166334,0.032226298,-0.0117558185,0.033103745,0.02582491,-0.0076826615,-0.0041354755,-0.028417371,0.03334305,-0.03264508,0.033901427,-0.011516514,0.0086797625,0.0034898527,0.02722085,0.014408106,0.009163356,0.01849622,-0.00046894894,0.040362637,-0.008350719,0.007154198,0.011037906,-0.038268726,-0.00048546345,0.0021387811,0.012423876,0.008211125,-0.00741843,0.009961037,0.016591758,-0.0054391846,0.021098653,0.019722654,-0.04231696,-0.006281735,0.003105969,0.016262714,-0.0145676425,0.0023232447,-0.004469504,-0.005618663,0.009322892,0.023810767,-0.010105616,-0.024468852,0.0051001706,-0.010220283,0.02474804,-0.021058768,-0.029653776,-0.02067987,-0.010649037,-0.056356136,-0.019224104,-0.01662167,-0.026582707,0.00021157232,0.014138889,-0.0015006367,0.008585038,-0.024169723,-0.003073563,-0.0108683985,0.0162328,-0.0024254476,0.00697472,0.04343371,-0.025645431,0.00970179,0.012832687,0.0724294,-0.03747105,0.026941663,0.060543958,0.0676832,0.009597095,0.014856801,0.005638605,0.025406128,0.017788278,0.022694014,-0.017548973,0.013550599,-0.024528679,-0.008385617,-0.013720106,-0.018456336,-0.0007085647,0.0068450966,-0.01850619,0.010310022,-0.016970655,0.025286475,-0.0257252,0.024309317,-0.02395036,-0.01582399,-0.0027669547,0.014846831,-0.017539002,-0.0050802287,0.01414886,-0.010070718,0.0050179097,0.003973447,0.01336115,-0.0026996504,-0.007936922,0.005204866,-0.009008805,-0.03096995,-0.017110249,-0.024389084,0.0066207494,-0.018436393,-0.02779917,-0.0051400545,0.0036718235,-0.035456903,-0.0008973907,-0.0073087486,0.0023382013,-0.02759975,0.00087246316,0.010080689,0.017947813,0.0020116507,-0.023471752,0.013720106,-0.026463054,-0.0026871867,-0.0037515915,-0.019642886,0.021218304,0.02492752,0.018476278,0.020600103,0.007832226,0.022933317,0.048299562,0.029434415,-0.0062268944,-0.0035696207,0.0050378516,-0.011317094,0.013520687,-0.00667559,-0.0016452163,-0.021736797,0.037949655,-0.0114367455,0.008714661,0.014527759,0.035775974,-0.025087055,0.020759638,-0.01336115,-0.04024299,0.025286475,-0.027440213,0.012025035,0.018157205,-0.00011622456,0.007827241,-0.03591557,-0.012772861,0.026283577,0.009093559,-0.0060623726,0.010200341,-0.01642225,-0.040781423,-0.018097378,0.019074539,-0.018276857,-0.0024079983,0.014896685,0.0028816212,0.016013438,-0.011725905,-0.038727395,-0.02542607,-0.0029738531,0.01789796,-0.006984691,0.01940358,0.0117558185,-0.019024683,-0.027858995,-0.015853902,-0.010828515,0.014208686,0.03126908,0.01969274,0.0013024629,0.0074732704,-0.0069597634,0.010240225,-0.01810735,-0.013680222,-0.024887634,-0.012723006,-0.006810198,0.003776519,0.00022948897,-0.009487414,0.03671325,0.005274663,0.00015322634,0.022893434,0.011356978,0.029534126,-0.034140732,0.0114367455,0.0006998401,-0.0111775,0.0039559975,0.0046365187,0.00033060124,-0.0065060826,-0.018027581,0.026961604,-0.0143881645,-0.0055937353,-0.0020802014,-0.029713603,-0.019134363,0.011107703,0.04471,0.015584685,-0.013301324,-0.029254938,-0.014826888,0.0063864305,-0.024349201,0.0385878,0.008824342,0.005778199,-0.0095522255,-0.029374588,-0.0006587097,-0.056156717,0.029554067,-0.00063128944,-0.032904327,-0.004060693,0.04263603,-0.01819709,0.00385878,-0.0059626624,-0.0036095048,0.01424857,0.044869535,-0.018924972,0.0057931556,-0.025585607,0.028337603,-0.013700165,0.014218657,0.018556045,0.0070694443,0.02512694,-0.02532636,-0.021776682,-0.041519277,0.013012165,-0.004743707,-0.02205587,-0.010698891,0.006401387,0.029274879,0.013600455,-0.0019842305,0.00065746333,-0.02879627,0.01840648,-0.008495298,-0.0069497926,0.040342696,0.0035297368,-0.017878016,-0.011446717,0.0029663749,-0.015654482,-0.027300619,0.04203777,-0.023691114,-0.017997669,-0.03226618,0.03701238,0.049456198,0.015345381,-0.014617497,0.007134256,-0.012952339,-0.023372043,0.0000063389903,-0.004691359,-0.046983387,0.0049306634,-0.0022060855,-0.02165703,-0.04530826,-0.00368678,-0.019752566,0.0017760857,0.0001869564,-0.025246592,-0.019443465,0.00010189124,0.0014657382,0.016412279,-0.01613309,-0.009477443,0.026203807,-0.0003153331,0.032006934,0.0056535616,-0.020400682,-0.0078023137,-0.022494594,-0.003936055,0.0069697346,-0.0020178827,-0.006605793,0.0015853902,0.01237402,-0.0075330962,0.0015554772,-0.024847751,-0.021617144,-0.016681496,0.030710705,0.033283222,-0.026064213,0.0063266046,0.027360445,0.05017411,0.038986642,0.00074595603,0.0044994173,-0.003083534,-0.02165703,0.0063565173,0.0006138402,0.016352452,-0.02215558,0.009188283,-0.033402875,0.008325792,-0.020021783,-0.01247373,0.00497304,0.01594364,0.05751277,-0.00994608,-0.015893787,0.006411358,-0.025346301,0.0372118,0.051490285,0.027858995,-0.015654482,-0.0014395643,0.008375647,0.028257836,-0.025246592,0.022933317,-0.023212506,0.0095522255,0.020400682,-0.021776682,-0.013640339,0.022075811,0.03850803,0.035895627,0.0029289834,0.0075181397,0.0033228383,-0.034100845,-0.019174248,-0.013929497,-0.009612052,0.030591052,0.0015043758,-0.032026876,0.043752782,-0.028417371,-0.048060257,-0.0046489825,-0.009412631,-0.06616761,0.010708862,0.01750909,0.015345381,-0.019244045,0.022414826,-0.005062779]},{"id":"interface-EmbedMediaOptions","type":"interface","source":"main","text":"Interface: EmbedMediaOptions\nDescription: Options for embed media (image, thumbnail, video, audio).\nProperties: content_type: string | null, description: string | null, duration: number | null, flags: number | null, height: number | null, placeholder: string | null, url: string, width: number | null","meta":{"url":"/docs/typedefs/EmbedMediaOptions"},"embedding":[-0.042224247,-0.01035306,-0.010033334,-0.008394099,-0.01195677,-0.05006009,0.03915893,-0.047136873,0.014463834,0.0003397098,0.012981925,-0.032175686,0.022756433,-0.035078604,-0.015103288,-0.020076817,-0.016818648,0.02411654,0.034835003,0.039118327,-0.008099747,-0.009759282,-0.025314247,0.04474146,-0.020218918,-0.009038628,0.00082532666,0.043685853,0.019092262,0.013844681,0.024948845,-0.024705244,0.0518465,0.015570191,-0.014524735,-0.015082988,0.0515217,-0.009926758,-0.018097555,-0.010018108,-0.0031439809,-0.017732153,-0.026451055,0.02047267,-0.007236992,0.05708393,0.008059147,0.0014704898,0.0021733814,0.038692024,-0.04474146,-0.026024751,-0.026633754,0.020005766,-0.00066165696,-0.0016671472,-0.00947508,-0.008419474,-0.011814669,-0.022492532,0.005077567,-0.020056516,0.008622475,-0.015113438,0.012342472,0.008734126,-0.057692938,0.041655842,-0.03284559,0.021944428,0.042549048,-0.016554747,-0.020289969,0.029658472,0.027019458,0.035383105,-0.02251283,-0.022756433,0.011784218,-0.036580812,-0.022634631,0.053592313,-0.06638139,0.0041031614,-0.011703018,0.043888856,-0.0341042,-0.017316,-0.026613455,0.01213947,-0.102474995,-0.013306728,-0.03926043,-0.02036102,-0.055622324,-0.03932133,0.019356163,-0.02588265,-0.0064199124,0.08932052,0.019193761,-0.004420351,-0.09135053,-0.01215977,0.0063031865,-0.050344292,-0.02395414,0.013398078,0.0010524342,-0.0027684285,-0.017488552,0.0022418944,-0.024421042,0.041777644,0.024867645,-0.04587827,0.027912663,0.04977589,-0.0029409796,-0.026796157,-0.062646165,-0.036154512,0.07454203,-0.015610791,0.020503119,-0.01567169,-0.016199494,0.015296139,-0.08729051,-0.04977589,-0.0059834598,0.010850413,-0.01867611,-0.0170724,0.006693964,0.009657782,0.023730839,0.025943551,-0.014575485,0.001903136,0.025050346,-0.022005329,0.055338122,0.023832338,0.0005690377,0.009825258,-0.022756433,0.02909007,0.0020363557,0.015316439,0.007937347,-0.0113173155,-0.029962974,0.025273647,-0.040255133,-0.055947125,-0.013174777,-0.016372046,-0.018747158,-0.030774979,0.054201316,-0.018158456,0.02399474,0.0032048812,-0.01568184,0.04794888,0.027993863,0.007582094,-0.033779398,0.011236115,0.019873817,-0.04307685,-0.0341651,0.0054099816,-0.004953229,-0.0001636697,0.053998314,-0.059316944,0.022533132,0.041980643,0.033413995,0.020848222,-0.008952352,0.004420351,-0.017387051,0.027384859,-0.06747759,0.010515462,0.04433546,-0.01904151,-0.021599326,0.004902479,0.014392784,0.014676985,0.011621818,0.005019204,0.006506188,-0.01722465,0.018168606,-0.051075097,0.04863908,0.027222458,0.038286023,0.0025527398,-0.0011266565,0.008150497,-0.0015960968,-0.00774957,-0.05509452,0.024502242,0.02228953,-0.0057804585,0.0116319675,-0.038732626,0.003258169,0.057205733,0.006968016,-0.017782904,-0.013976632,-0.013418378,-0.019711414,0.040904738,0.04774588,-0.019376462,0.014392784,-0.026471354,-0.061062757,0.007049216,-0.02728336,0.004356913,-0.025009746,0.020127567,-0.019264812,0.011713169,0.012251121,0.017559603,-0.016108144,-0.009500455,-0.011662418,-0.037108615,0.009023403,-0.016483696,-0.030571979,0.025131546,-0.012677424,0.01542809,0.024299242,-0.038367223,-0.047461677,0.01696075,0.029414872,-0.023568437,0.028501365,0.015945744,0.048760884,-0.0516029,-0.01215977,0.061265755,-0.0039585233,0.035017703,0.013408228,-0.044376057,-0.0034637076,-0.020371169,0.0122815715,0.010068859,-0.020117417,0.011591367,0.0075161187,-0.03966643,0.027973562,-0.017062249,0.012565773,0.038955927,-0.02051327,0.026674354,0.013377778,-0.012545473,-0.04258965,0.011104165,-0.033271894,-0.036986817,-0.030531378,0.06719339,-0.03250049,-0.01556004,0.038042422,0.0170521,0.004925316,0.010150059,-0.0054607317,-0.009784657,0.061184555,-0.052820906,-0.039849132,0.013103726,0.014402933,-0.02551725,0.06735579,0.012718024,-0.000024919189,-0.028379565,0.024563143,-0.028379565,0.018016355,0.026978858,0.053917114,0.0069324905,0.029800573,-0.017925004,-0.0014400396,-0.029820874,-0.033231292,0.024624044,-0.06357997,0.040681437,0.05290211,0.021436924,-0.041493442,-0.02397444,0.024481943,0.01553974,-0.03627631,-0.071659416,0.0069274153,-0.04299565,-0.03112008,-0.012809374,0.014494284,-0.04660907,0.0015301214,-0.0046893274,-0.013509729,0.005501332,0.035667308,-0.013560479,0.0024042951,0.016199494,-0.033332795,0.021680526,0.010992514,-0.027648762,-0.004821278,0.0343681,0.00044565104,-0.020695971,-0.080226064,0.016300995,-0.0094294045,-0.028257765,0.00117931,-0.012555623,-0.037636418,0.022918833,-0.003613421,-0.018402057,0.019802766,-0.07145642,-0.0857477,0.00054937194,-0.036235712,0.026613455,-0.021213623,0.010129759,-0.024400743,-0.043279853,-0.031140381,0.015651392,-0.013103726,-0.008942202,0.04295505,0.03243959,-0.028481066,0.012433822,-0.023142135,0.014900287,0.028196864,0.018584758,-0.02053357,-0.023263935,0.02909007,0.006191536,0.040072434,-0.013885281,-0.0024550455,-0.04137164,0.0073790927,0.019914417,-0.0141694825,0.01541794,0.019904265,0.03737252,-0.06634079,-0.027689362,0.010769213,0.035423707,-0.021680526,0.019985467,0.00064801786,-0.019589614,0.02064522,0.0013245827,-0.017610352,0.030937381,-0.008901602,-0.0687768,0.043929458,0.0048441156,0.019538864,-0.004255412,0.017874254,-0.0032708566,0.031383984,0.027648762,0.0075059687,-0.0007098698,0.0017952917,-0.045228664,0.021457225,0.007967796,-0.030734379,0.03268319,-0.014098432,0.024522543,0.00932283,-0.014352184,0.03089678,-0.019254662,0.0013004764,-0.053754713,-0.008094672,0.08436729,0.06370177,0.013337177,0.017701702,-0.016950598,-0.000904624,-0.012109021,-0.0171536,0.040072434,-0.04323925,0.03619511,0.044091858,-0.0016595346,-0.023304535,-0.011286866,0.0062778117,0.047258675,-0.018655809,-0.06508218,0.012210521,0.03792062,-0.039828833,0.027222458,0.01362138,0.014991637,0.0026999158,-0.007851071,0.02411654,-0.01545854,-0.023081234,0.019630214,0.025111247,0.026796157,0.0009388805,0.0002382092,-0.0052323556,0.014859687,0.0053034057,-0.023020335,0.013469129,0.031769685,0.017387051,0.021660225,-0.029922374,-0.041574642,0.0026643905,-0.040458135,-0.006328562,0.00016446268,0.011713169,0.019944865,-0.048801485,-0.009881083,-0.0076531447,0.086397305,0.03116068,0.021254225,0.019193761,-0.040194236,-0.00771912,-0.028359266,-0.037230417,-0.0059124096,-0.0132458275,-0.025172146,-0.047867678,-0.0010023183,0.009662856,0.01376348,0.030409576,-0.028602866,-0.035545506,-0.0017952917,0.048882686,-0.0069527905,-0.005475957,-0.026248053,-0.047542877,0.0053795315,-0.04120924,0.0026821531,-0.023507537,0.023507537,-0.027689362,0.0008183485,-0.036662012,0.026491655,-0.005455657,0.0072522173,-0.043117452,0.006039285,0.024806745,0.00075744814,-0.0036413337,-0.015316439,-0.033332795,-0.078723855,0.028135965,0.0007073322,-0.032155387,-0.02233013,-0.013124026,0.0033672822,-0.017508851,-0.008866076,0.010028258,0.007612544,0.023548137,-0.05501332,-0.0046157395,-0.013956332,0.012291722,0.0053795315,-0.022188028,0.03627631,-0.006633064,-0.008729051,-0.006572163,0.0014514584,0.0074399933,-0.04595947,0.04985709,-0.008302748,-0.001991949,0.041737042,0.006688889,-0.006856365,-0.007028916,-0.0011716974,0.0015834093,-0.050303694,0.009622256,0.033738796,-0.0047882902,0.0112970155,0.008937127,-0.022086529,-0.0034535576,-0.016514147,-0.01366198,0.019244513,0.014687136,0.059844747,0.012423673,0.01558034,-0.015793491,0.027384859,-0.034226,-0.0062118364,0.008282448,-0.021294825,0.0024829581,0.0064503625,0.038448423,0.007881521,0.021457225,0.020452369,0.01033276,0.061143957,0.030165976,0.02906977,0.026674354,-0.008150497,0.013590929,0.01716375,0.04977589,0.025273647,-0.019965166,-0.0014463834,0.016503995,-0.004161524,-0.020371169,0.025131546,0.029983275,0.031952385,0.01890956,-0.005831209,-0.07048201,0.0034662453,0.008891452,0.010337835,-0.014189783,-0.021233924,-0.034022998,-0.0028166415,-0.042061847,0.011662418,0.008140347,-0.013296577,-0.015996493,0.01376348,-0.013286428,0.035606407,-0.059519947,0.004973529,-0.02580145,-0.028399866,0.02064522,-0.0026136402,0.022005329,0.028684067,0.007998247,-0.016767899,0.0067650145,-0.020462519,-0.010155134,-0.014342033,-0.020990321,0.003242944,0.03800182,0.013103726,0.011104165,0.006333637,0.009718682,-0.0052425056,-0.0173972,0.021619625,-0.031729084,0.019051662,-0.027750261,-0.015204788,0.019792615,0.007582094,0.022106828,-0.012454122,-0.019944865,0.04118894,-0.024867645,0.0037301467,0.024563143,0.034205697,0.011500017,-0.021233924,0.023203036,0.0018790297,-0.0141694825,-0.036946215,-0.059316944,-0.032074187,-0.01020081,0.0005522267,0.018381758,-0.009190879,0.021802327,-0.07697805,0.029638173,0.0010898625,0.0020249367,0.020147868,-0.029638173,0.0171739,-0.022939134,-0.03219599,0.023121834,-0.052820906,-0.003263244,0.024542842,0.009216254,0.024786444,0.009936908,-0.00063247554,0.04299565,-0.0058464343,-0.025009746,0.09126933,0.011520317,-0.00024042952,0.04474146,-0.020746721,-0.0034611702,-0.00045421516,-0.042467847,-0.00342057,0.025050346,0.016179195,-0.012383072,0.0028115665,0.031099781,0.026654055,-0.020888822,-0.023791738,-0.012535323,-0.042346045,0.009297454,-0.012677424,-0.0017369288,0.01541794,0.024664644,0.049532287,0.017925004,-0.04315805,-0.052455507,0.031383984,-0.00391031,0.011510167,0.013530029,0.015610791,0.021518126,0.0068056146,0.009500455,0.0026212528,-0.013408228,0.02391354,-0.025009746,0.047867678,0.009865858,0.026735255,0.0128702745,0.0069933906,0.02947577,0.040072434,0.03112008,0.03292679,0.011114315,-0.0008005859,-0.0060545104,-0.0029587422,0.012504873,0.019518564,-0.054079514,0.00191963,-0.015235239,0.011560917,-0.013327028,-0.020097118,0.00856665,-0.012362772,-0.0170521,0.012352622,-0.0011716974,0.02559845,-0.006729489,-0.0038874727,-0.012829674,-0.048273683,0.010880863,-0.009647631,0.017722003,0.033941798,-0.013296577,-0.0077444953,-0.036966514,-0.035261307,0.03128248,-0.04604067,-0.016108144,-0.03083588,-0.042061847,-0.006724414,-0.00946493,-0.0005604736,-0.0034231073,-0.016189344,0.022695532,-0.00192978,-0.04003183,-0.040782936,-0.022736132,-0.03958523,-0.03609361,0.0040524113,0.035687607,-0.04644667,-0.008581875,-0.002536246,-0.021822628,-0.05708393,0.024461642,0.043279853,-0.0346523,-0.020269668,-0.026735255,0.009657782,-0.004435576,0.005288181,-0.019721566,0.0006730758,0.021782028,0.03580941,-0.033779398,0.0074450686,-0.0050217416,0.016666397,-0.0029714298,0.04648727,0.012342472,0.023466937,0.031201283,-0.008911752,0.031708784,-0.0051054796,-0.008267223,0.011713169,0.013824381,0.020158017,-0.014159332,-0.0125962235,0.05001949,-0.02057417,0.014108582,0.032947093,0.015184488,0.0027582785,0.00300188,-0.021132423,0.0025565461,0.0344493,-0.0031389059,-0.008551424,0.03735222,0.022573732,0.000027932487,0.02237073,0.0129311755,0.0008481643,0.026897656,0.010951914,-0.004356913,0.0014007081,0.019762166,0.005653583,0.016128443,-0.03753492,0.0031718935,-0.029699072,0.0035652083,-0.026390154,0.024644343,0.0041031614,-0.03751462,0.025334548,0.007049216,-0.0071710167,-0.02555785,-0.027729962,-0.01038351,-0.020208769,0.022005329,0.022106828,0.035038006,-0.02255343,0.0071811667,-0.0110229645,0.009058928,0.018554308,-0.017488552,0.019427214,0.000041313913,0.03960553,0.015742742,0.010850413,-0.0041488367,-0.021132423,-0.00069781655,-0.013651829,-0.021964729,0.0346523,-0.02555785,0.035220705,-0.008064222,-0.00025153116,-0.0006258146,0.009779582,-0.018462958,0.033880897,-0.007226842,0.034672603,-0.009028478,0.005369381,-0.04855788,-0.015986344,-0.009546131,-0.034997404,0.014626235,0.014646536,0.026187152,-0.020746721,-0.035850007,-0.003613421,0.04494446,0.007582094,-0.010840263,0.031911787,0.0007669638,0.016747598,0.009825258,0.0029232171,0.009708531,-0.03112008,-0.033576395,-0.012525173,0.0057398584,0.021152724,-0.037311617,-0.032317787,-0.03599211,-0.014352184,0.040052135,0.010962063,-0.018706558,0.0015821405,0.004821278,-0.003273394,-0.00681069,-0.0338403,-0.028765267,0.017823504,0.023385737,0.017376902,-0.00196023,0.002097256,0.04949169,-0.050425492,0.045715865,-0.0075668693,-0.052414905,0.037007116,-0.03651991,-0.02415714,-0.004861878,0.009170579,-0.00095093367,-0.015691992,-0.012474422,0.045594066,0.037555218,-0.0074399933,0.016808499,0.018635508,-0.024441343,0.02584205,-0.017640803,-0.011642118,0.0036159586,0.017965605,0.029577272,0.021599326,0.046568472,0.0010289622,-0.021254225,0.008581875,0.05010069,0.009764357,0.0017178975,0.030389277,0.0018282793,0.0001550263,0.0076176194,-0.0129311755,-0.021782028,0.06552878,-0.0061255605,0.010170359,-0.025273647,-0.0007352449,-0.0015491528,-0.005724633,0.006171236,0.024969146,-0.0068157646,-0.01558034,0.009013252,-0.009124903,-0.0026187152,0.016767899,-0.004496476,0.028054763,-0.014981487,0.004506626,-0.0000789405,-0.019772315,-0.04478206,0.0028267915,0.043361053,-0.010840263,0.01377363,0.003415495,0.0045117014,0.0054708817,0.003948373,-0.0049506915,0.035829708,-0.018655809,-0.002221594,-0.03960553,0.017295701,0.008632625,0.010119609,-0.019853516,0.013103726,0.00013916682,0.0062930365,0.01876746,-0.010413961,0.00858695,-0.0036946216,0.009348204,0.013428528,0.02241133,-0.057043333,0.044010658,-0.0047197775,-0.00057189236,0.009982583,0.012048121,-0.0064808126,0.005288181,0.028298365,-0.012921025,0.00024613892,-0.013347328,-0.025984151,0.008805176,-0.0086783,-0.009058928,0.011286866,-0.008272299,-0.021721127,0.007165942,-0.0072014667,-0.00433915,-0.023406036,-0.00948523,-0.011246266,-0.007922121,0.019792615,0.011144765,0.029739672,0.005841359,0.003922998,0.021173023,0.016717147,0.0023383198,-0.016798347,0.0011317316,0.017985905,-0.0006083692,0.0056282077,0.017914854,0.037494317,-0.026552554,0.027831461,-0.00088813016,0.015367189,-0.007967796,0.013164626,-0.04323925,0.003326682,0.007922121,-0.021903828,-0.017468251,0.022797033,-0.0122612715,-0.02212713,0.023223335,0.0019856053,0.026288653,0.036235712,-0.0026694655,-0.021883527,0.029638173,-0.009825258,-0.015164188,-0.023507537,0.028359266,0.020929422,-0.00069781655,0.0042528748,-0.038489025,0.0050953296,-0.029374272,0.006683814,0.025699949,-0.005110555,0.001757229,-0.009277154,-0.04604067,-0.054079514,-0.021619625,-0.036641713,0.03808302,-0.010606811,0.016443096,-0.03266289,-0.0075161187,0.02572025,0.0043797507,-0.0033723572,0.00078092015,0.010256635,-0.0071304166,-0.0035550583,0.013296577,-0.04457906,0.024542842,0.024887946,0.009221328,-0.012515022,0.0034763953,0.0025705025,-0.0014362334,0.012494722,-0.036702614,0.011266566,-0.038184524,0.025456348,0.0007777483,0.007176092,0.00095029926,0.02072642,0.00020744183,-0.020137718,0.011560917,0.009566431,0.012230821,-0.018046806,0.024624044,0.019274963,0.0060342103,-0.0029790422,0.033474896,0.006516338,0.013124026,0.027303658,-0.015894992,0.024908245,-0.019396763,-0.003326682,0.0029054545,-0.010586511,-0.009784657,-0.002588265,-0.013113877,-0.018026505,0.02746606,-0.018097555,0.023629338,-0.00776987,0.02228953,0.045391064,-0.018635508,-0.0072420673,-0.016737448,0.004623352,-0.0077444953,-0.0031617435,-0.0075059687,0.0138345305,0.02212713,-0.0025057958,-0.0055317823,0.0086986,-0.016940448,-0.014220233,0.04129044,-0.015336739,0.003844335,-0.03767702,-0.008703676,-0.008236773,0.014443534,0.0033926573,0.005684033,-0.017549451,0.04798948,-0.020909121,0.0033342943,0.018737009,0.0059834598,0.007988096,0.006749789,0.007226842,0.022959433,0.01358078,-0.03635751,0.0015948281,-0.030389277,0.054769717,-0.0345508,0.038346924,0.06012895,0.039280728,0.03611391,-0.0037326843,0.014179633,0.05010069,-0.017021649,0.0020350867,0.008013472,-0.016067544,-0.004265562,0.011804518,-0.008449924,-0.03599211,0.0011463223,0.012565773,-0.033474896,-0.029841173,-0.035626706,0.027344259,-0.048273683,0.024096241,0.0057652337,-0.022695532,-0.0068259146,0.014210083,-0.014778486,-0.001882836,0.026349554,0.021254225,0.0028800792,0.026511954,0.00682084,0.003623571,-0.02576085,-0.008779801,-0.005338931,-0.00389001,-0.008932052,0.03071408,-0.004255412,-0.024177441,-0.031729084,-0.007206542,0.0033342943,-0.02592325,-0.012342472,-0.0030221802,0.023466937,-0.019660665,-0.016879547,-0.013154477,0.003603271,-0.009190879,-0.0048923283,-0.03258169,0.0035220706,-0.007231917,0.01879791,-0.021477524,0.0051866802,0.026146552,0.019021211,0.011834969,-0.020970022,0.04116864,0.027932962,0.0171536,0.0059479345,-0.019132862,-0.00081517664,0.0012846169,-0.009662856,-0.017600203,0.019305412,-0.028602866,0.02063507,-0.0147581855,0.0034865453,0.036479313,0.040437836,-0.024421042,-0.014078132,0.007602394,-0.0037453717,0.023588737,-0.042386647,-0.008454999,-0.0040244986,-0.017965605,0.033880897,-0.011388366,0.0086986,0.02224893,-0.003534758,-0.014128882,0.0019830677,-0.0046893274,-0.031729084,-0.005369381,0.03816422,-0.0074196933,-0.02415714,-0.0129311755,0.025375148,-0.0063133365,-0.009327904,-0.024522543,0.0015453465,0.014007081,0.0066127637,-0.004684252,-0.0016811035,0.0021048684,-0.053998314,-0.02931337,-0.003362207,-0.010566211,0.014453684,0.034591403,0.006739639,0.017945305,-0.014027381,-0.028440466,0.01371273,-0.0043797507,-0.0038316473,0.006663514,-0.017762603,-0.026694655,0.041858844,-0.0132255275,-0.01553974,0.025740549,0.04323925,0.022492532,0.015823942,0.0122815715,0.007424768,-0.03227719,0.020188468,-0.019528713,-0.014453684,0.021964729,0.0025527398,0.01373303,0.033434294,-0.04798948,-0.004367063,-0.010769213,0.016382195,0.028338965,0.0026923032,-0.020036217,-0.015935592,0.03759582,0.014930737,-0.0053744563,0.008048997,-0.044010658,-0.0011368067,0.001840967,0.004506626,-0.00045072607,-0.0036337213,0.0051333923,0.003248019,-0.013479278,-0.014737885,0.021863228,0.011784218,-0.010444411,0.033962097,0.015296139,0.005988535,-0.022715833,-0.015255539,-0.021030923,-0.023751138,-0.015976192,-0.012362772,0.006968016,-0.0125962235,0.0075871693,-0.016788198,0.0044000507,0.0018384295,0.011601518,0.023345135,-0.045715865,0.0024753457,0.0022774194,0.004120924,-0.043442253,0.00045706984,-0.015986344,-0.015620941,0.0030932305,0.02239103,0.0056485077,-0.005184143,-0.030044176,0.009825258,-0.003316532,-0.006308262,0.035850007,-0.011743618,-0.009292379,-0.016666397,0.008470224,-0.01907196,-0.018432507,0.051156297,-0.022715833,-0.028602866,-0.02067567,-0.024441343,0.04291445,-0.009058928,0.028318664,0.008104823,0.03822512,-0.024218041,-0.010216035,0.0052171303,-0.035525206,0.027872063,0.010677862,-0.037474018,-0.038529623,-0.014473984,-0.013113877,-0.027263058,-0.006511263,-0.006216911,-0.014402933,-0.02913067,0.02596385,0.008251998,0.002097256,0.01202782,0.025943551,-0.026836757,-0.010515462,-0.017255101,-0.019609915,-0.019853516,-0.0074958187,0.00065721635,-0.0012611449,-0.016676547,0.017884403,-0.029983275,0.004496476,0.020452369,-0.006699039,-0.014047681,-0.016179195,0.0030627802,-0.008795026,0.068411395,-0.028399866,0.032053888,0.016646096,0.04283325,0.049004484,-0.009312679,-0.009678082,0.0062321364,-0.026187152,0.001579603,0.010175434,-0.018331006,0.0020097117,0.009165503,-0.030084776,0.040904738,-0.019417062,0.014220233,-0.024481943,0.00090335525,0.06439198,0.018067105,-0.020949721,0.024928546,-0.022106828,0.023751138,0.075760044,0.03548461,-0.04847668,0.008373799,0.012454122,0.02226923,-0.0035677457,0.003357132,-0.00048276217,0.009241628,-0.0007054291,-0.052252505,0.010165284,0.024542842,0.03956493,0.03578911,0.012352622,0.0025603524,0.005445507,-0.04612187,-0.0006965478,0.002070612,-0.0151337385,0.006521413,-0.02255343,-0.0516841,0.026593154,-0.025496949,-0.018270107,-0.0004770528,0.016240094,-0.05489152,0.028278064,0.007871371,0.005359231,-0.027100658,-0.038265724,-0.008449924]},{"id":"interface-EmbedType","type":"interface","source":"main","text":"Interface: EmbedType","meta":{"url":"/docs/typedefs/EmbedType"},"embedding":[-0.036069293,-0.013861736,-0.007907288,-0.008318412,0.0025249876,0.0020059433,0.03102617,0.0030371798,0.0002608069,-0.03801528,0.0038234547,-0.020172492,0.039851636,-0.0012804804,0.0068657734,-0.02831275,0.020241013,0.010559039,0.005940744,0.044648085,0.009455856,0.014649725,-0.011463512,0.034808513,0.00042375768,-0.00020352787,-0.020679545,0.04818375,0.01327931,0.004224301,0.01023014,-0.030943945,0.06934294,-0.0055912887,0.020282125,-0.0031399608,0.04982825,0.028532017,-0.01046311,-0.013731547,0.025750076,0.015732352,-0.009983465,0.021405865,-0.018020943,0.04664889,-0.0100930985,0.02976539,-0.010072542,0.020117676,-0.00630733,-0.023941131,-0.016828682,0.00083766546,-0.00005179201,0.017089061,-0.02410558,0.027038265,-0.028285343,0.015800873,-0.016143475,-0.008441749,0.015910504,0.031355068,-0.016897203,-0.014087855,-0.05043123,0.03450702,-0.018322434,-0.007407087,0.053062424,-0.02347519,-0.06753399,0.022584422,0.047334094,0.012724292,-0.03754934,0.031409886,0.005714626,-0.017568706,0.007372827,0.02244738,-0.04804671,-0.018349841,0.0007691448,0.009640861,-0.043496937,0.0141700795,-0.065067254,-0.008976211,-0.04675852,-0.011723891,-0.045744415,-0.02665455,-0.016280517,0.023653343,-0.041605767,-0.035219636,-0.047854852,0.031272843,0.06934294,-0.01582828,-0.04848524,-0.022694053,0.039550144,-0.035219636,-0.008099146,-0.0037480819,-0.05374763,0.0011057527,-0.028257934,-0.015252707,0.004762188,0.019761369,0.01463602,-0.027106786,0.045168843,0.030806905,0.0009592897,-0.019035049,-0.045251068,-0.00894195,0.019829888,-0.007331714,0.007187821,-0.020542504,-0.035411496,0.015979026,-0.068356246,-0.05903743,0.012463914,-0.025010053,-0.022063663,0.02960094,-0.0007871315,-0.008592495,-0.023105178,0.04917045,-0.035274453,-0.018678742,-0.036151517,-0.01861022,0.06605395,-0.012258352,0.0025986473,0.03659005,-0.0188706,0.014540091,0.010415145,0.020336943,-0.0019477007,0.012525583,-0.036096703,-0.0006693615,-0.059585594,-0.057667017,-0.04045462,-0.0009113252,0.016801273,0.0033986263,0.008654163,-0.06046266,0.02109067,0.024379663,-0.06292941,0.03549372,0.027490502,-0.015526789,-0.061997525,0.025750076,-0.023105178,-0.0049266377,-0.04530588,0.020008042,-0.01003143,-0.03467147,-0.014978624,-0.049006,0.012032234,0.032369174,0.026229722,0.0807996,-0.007982661,-0.03119062,0.01364247,0.032807708,-0.025078574,0.0015494241,0.023557415,-0.021049557,-0.049883064,0.02562674,-0.0141700795,0.025750076,0.02618861,0.01566383,0.023749273,0.00085822167,0.03864567,-0.034287754,0.033958856,0.013265606,0.07783951,-0.016773866,-0.009777903,-0.00784562,-0.009640861,-0.011532033,-0.032095093,0.030149106,0.026161201,-0.004405881,-0.0021121504,-0.03817973,-0.0057762945,0.034918144,0.0076880218,-0.001384118,-0.008955655,0.008921394,-0.008160815,0.02363964,0.07690763,-0.038070098,0.024050763,0.033712182,-0.03231436,-0.025585627,-0.023530006,-0.014814174,-0.02761384,0.01924061,0.015567902,-0.048430428,-0.00093959004,0.06501243,-0.03132766,-0.02410558,-0.0013815485,-0.010284957,-0.0480193,-0.0019973782,0.01201853,0.005118496,-0.029792797,-0.009819016,0.018747263,-0.038563445,-0.034260347,0.04467549,0.045114025,0.028614242,0.015211594,0.009798459,0.031409886,-0.013800068,0.002578091,0.0639161,0.03549372,0.005714626,0.004912934,-0.038810123,-0.00023425512,0.010380886,0.0037686382,-0.047635585,0.011305914,-0.016198292,0.014238601,-0.012059642,0.0057660164,-0.0049780286,0.025530811,0.007825064,-0.057502568,-0.048731916,0.014279713,0.015814576,-0.058653712,-0.0024170675,-0.04549774,-0.05711885,-0.016211996,0.035987068,-0.03346551,-0.031437293,-0.0028812953,0.013923405,0.020569913,-0.0111072045,0.0024273456,-0.0075578326,0.04453845,-0.044291776,-0.031053578,0.012463914,0.026380466,-0.002192662,0.07685281,0.01725351,0.029820206,-0.0027768011,0.032862525,0.011244246,-0.000148176,0.01324505,0.0055638803,0.021611426,0.025475994,-0.036699682,-0.03565817,-0.05328169,-0.03593225,0.0042174486,-0.04229097,0.04009831,0.057228483,0.027586432,-0.04119464,-0.006780123,0.016924612,0.033136606,0.015239002,-0.06643766,0.024955237,-0.053638,-0.039604962,0.001988813,0.023680752,0.015650127,-0.001981961,-0.0031074134,0.000148176,-0.021364752,0.06440945,-0.011991122,-0.006050377,-0.0029806502,-0.011956861,0.0417154,-0.0044195848,-0.02424262,0.019405061,-0.005423413,0.004936916,-0.0031348218,-0.021844396,0.024091875,-0.022255521,0.001981961,-0.00395707,0.0070370752,-0.026819,0.0030885702,0.012765406,-0.014608612,0.052459445,-0.058050733,-0.026380466,0.009510673,-0.01575976,0.03790565,0.0063484423,0.034972962,-0.04489476,-0.0005434548,-0.014992327,0.04166058,-0.005515916,-0.05585807,0.024503,0.060243394,0.017774267,0.012587251,0.00071818253,0.005964726,0.01463602,-0.015979026,0.0147730615,-0.016486079,0.027353462,0.004375046,0.049033407,-0.030203922,0.0029755111,-0.0152801145,0.027298644,0.02546229,-0.053638,0.019172091,0.051061623,-0.01606125,-0.031218028,-0.0377412,0.078661755,0.006519744,0.026311947,0.021679947,0.025667852,-0.027202716,0.00433736,-0.025325248,0.028052373,0.007297454,-0.016609415,-0.021446977,0.039714593,-0.0012599243,0.03722044,-0.0136630265,-0.005913336,-0.07027482,0.04330508,-0.016979428,-0.015033441,-0.015334931,-0.04456586,-0.069233306,0.028888324,0.027408278,-0.0463474,-0.013073748,-0.041879848,0.011011275,0.025750076,-0.015937913,0.053035017,0.028257934,-0.009688826,-0.07290602,-0.000039158505,0.06172344,0.022255521,0.011401843,-0.0142660085,0.031272843,0.04009831,-0.024571521,0.008366377,0.056296602,-0.04075611,0.017870197,0.029820206,-0.023735568,-0.02929945,-0.062107157,-0.029409083,0.018459475,-0.039906453,-0.046237763,-0.048814144,0.000046010577,-0.03261585,0.034479614,0.020624729,-0.015650127,0.0049677505,0.026407875,0.032177318,0.00374123,0.034479614,-0.0013198799,-0.013464317,0.045223657,-0.006225105,0.012477619,0.027559023,-0.0062799216,0.011353879,-0.027463093,-0.0496638,0.012025381,-0.013525985,0.0036213186,-0.020583617,-0.0065814126,0.021912917,-0.05827,-0.04807412,-0.023790386,0.0026466118,-0.023297036,-0.05456988,-0.023886314,0.026037864,0.14054964,0.021049557,-0.025147095,-0.0037378038,-0.0071946727,0.0074413475,-0.015677534,0.0061874185,-0.017390553,0.01321079,-0.01566383,-0.06172344,-0.033602547,0.021858102,-0.036014475,0.06550578,-0.023338148,-0.017431665,0.01704795,0.045388106,-0.0094421515,0.02178958,-0.014814174,-0.05089717,-0.03738489,-0.018295025,-0.016047547,-0.02718901,0.010113655,-0.018719854,0.0014012482,-0.03393145,0.07570166,-0.0017421386,-0.017390553,-0.0070987437,-0.0070644836,-0.0043784725,-0.05182905,-0.004344212,0.019035049,-0.030286146,-0.026298242,-0.016869795,-0.023009248,-0.016856091,-0.022995545,-0.0018020943,-0.011833523,-0.0374123,0.0040872595,-0.027887922,0.037028585,0.009325666,-0.022241818,0.005190443,-0.0024033634,-0.017431665,0.004909508,-0.030971354,0.04218134,-0.031629153,-0.038344182,0.023022953,0.028257934,-0.0082361875,-0.028066076,0.02092622,-0.01629422,0.034424797,0.056104746,0.009216033,0.010634412,-0.014745654,0.031053578,-0.023530006,-0.012326873,0.030779496,-0.008523975,-0.022502195,0.03916643,0.016897203,-0.013375239,0.011141465,-0.0002640188,-0.05478915,0.013416352,-0.007126152,0.120596424,-0.02992984,-0.021378456,0.005526194,0.021926623,-0.0077565424,-0.006190845,-0.014457867,0.025763782,-0.0029104166,0.008428046,0.001230803,-0.019884706,0.027860515,-0.007701726,-0.0001493537,0.017171286,0.028504608,0.014937512,0.003336958,0.0024136414,0.021584019,-0.021940326,0.039358288,0.016540896,-0.042263564,0.019994339,0.0009978326,-0.0068760514,0.006122324,-0.009010471,0.015088256,0.030450596,0.038563445,0.0005074814,-0.017925013,-0.00026830134,-0.018623924,0.007729134,0.0043784725,-0.03801528,-0.0099971695,-0.007503016,-0.014293416,-0.012827074,0.007770247,0.011607406,-0.015526789,0.0051527563,0.009339371,0.020117676,-0.046868153,0.008969359,-0.02665455,-0.020871403,0.026394172,0.0037583602,0.020336943,0.02195403,-0.010072542,-0.0023434078,-0.008729536,-0.012765406,-0.011100353,-0.0031348218,-0.0013918265,-0.033383284,-0.01559531,-0.020186197,0.024160396,-0.01158685,0.0051801642,0.017637227,0.018267617,0.023297036,-0.028367568,0.01347802,-0.018898007,-0.0023965114,0.018240208,-0.014896398,0.046018496,-0.03450702,-0.011573145,0.038727894,-0.011394992,-0.0023485469,0.024078172,0.0094901165,-0.0062730694,-0.032807708,0.0024479018,0.013793216,-0.022228112,-0.016609415,-0.04711483,0.009263998,0.024352254,0.037193034,0.007941549,-0.00033446663,0.036617458,-0.028148301,0.021186598,0.020706953,-0.013313571,-0.005039697,-0.03373959,-0.0008342395,-0.042619873,-0.016705345,0.015581606,-0.010134211,-0.022817392,-0.0041078157,0.0018055203,-0.01575976,-0.0040358687,0.010538483,0.0340959,-0.022584422,-0.0062490874,0.026010456,0.018993936,0.0007961248,0.002166967,-0.040673885,-0.015746055,-0.019980634,-0.021392161,-0.022077367,0.0044127326,-0.03387663,0.0057728686,0.0012505027,0.04473031,0.0025215615,0.0053788745,-0.021666244,0.0011066092,-0.011127761,0.031218028,0.028532017,-0.0037378038,0.032807708,0.056954402,0.020076564,-0.009819016,-0.013032636,-0.009209181,0.00887343,-0.019912114,0.00019528398,-0.013717843,0.028614242,0.010648116,-0.009010471,-0.00493349,-0.0058722235,-0.010689228,0.01384118,0.0010954746,0.040509433,-0.028504608,-0.018418362,-0.0065642823,-0.0056461054,0.020186197,0.012244648,0.037604157,0.009462708,0.02536636,0.049608983,0.0042105964,0.02188551,0.010853678,0.00374123,-0.023283333,0.010867382,-0.035438903,-0.0009310249,-0.0092502935,-0.0364256,0.045086615,-0.032095093,-0.03242399,0.014512683,0.020350646,0.01284763,0.004083833,0.009983465,-0.0158968,-0.015636422,-0.010901642,-0.04103019,0.0317936,0.03258844,-0.004124946,-0.030587638,0.00064752053,-0.020816587,0.033520322,-0.033629958,-0.054186165,-0.024256326,-0.0030782921,0.018363547,-0.02148809,-0.0023057214,-0.029792797,-0.013889145,-0.0029977805,0.019089865,-0.007304306,0.023420373,0.015307523,-0.022872208,-0.028586833,-0.002274887,0.028696466,-0.003950218,0.018596517,0.012923003,-0.005536472,-0.09132438,-0.0136150615,0.011908896,-0.0001860765,-0.00026102102,-0.018226504,0.033986263,0.025174502,0.028943142,-0.006327886,0.007941549,0.0036864134,0.021803284,-0.031903233,0.005707774,-0.017006837,0.045141432,0.0029035644,0.01122369,0.0046731113,0.0020333517,0.0088391695,0.04012572,0.05489878,-0.01029866,0.0014218044,-0.026462693,-0.000041005354,0.014430458,-0.01566383,-0.024311142,0.0021155765,-0.012991523,0.00276481,0.017006837,0.008023773,0.015143073,-0.01212131,0.0010123933,-0.019692848,0.008215631,-0.0053480403,-0.022502195,0.030916536,-0.0099971695,0.022885911,0.024886716,0.012957263,-0.014937512,-0.004642277,0.007276898,-0.02929945,0.01996693,-0.020186197,0.019322835,-0.001183695,0.0123131685,0.025311545,-0.023461485,-0.006132602,-0.024818195,-0.009538081,0.0009695678,-0.013546541,0.022543307,-0.020624729,0.012690033,-0.005043123,-0.050321598,-0.021830693,0.015074553,0.018089464,0.021638835,0.03201287,0.020145085,0.017363144,-0.0072494894,-0.005598141,0.008750092,0.0493349,0.039029386,0.018514292,0.015718646,0.0077565424,-0.016280517,-0.027408278,-0.013018932,0.011162021,-0.02181699,0.0066807675,0.038398996,-0.012210388,0.019843593,-0.0013678444,-0.0060743596,0.03393145,-0.009216033,-0.0007614362,0.0205288,0.0010201018,0.05536472,0.025517106,-0.014334529,-0.035685576,-0.059421144,0.02195403,-0.0053651705,0.049060818,0.021858102,0.045333292,-0.015348636,-0.019377653,-0.033081792,0.0038782712,-0.002761384,-0.004440141,0.016828682,-0.025078574,0.015252707,0.0038440109,0.0024907272,0.010168471,-0.006201123,-0.052569076,-0.00572833,-0.014389345,0.039084204,-0.011148317,-0.014348233,-0.0025147095,-0.006639655,0.052788343,0.00831156,-0.03294475,0.00042440006,-0.0031844992,-0.0040564253,-0.020117676,-0.054240983,-0.0031074134,0.033849224,-0.013005228,-0.0026825853,-0.051664602,-0.012045938,0.029107591,-0.03247881,0.009010471,0.0030800053,-0.05410394,0.024091875,-0.015403452,-0.040975373,0.010257548,0.030176513,0.0057009216,0.013450612,-0.000037525788,-0.014320825,0.04045462,-0.014663428,0.026997153,0.029463898,0.012703736,-0.0201999,0.0027699491,-0.009168069,0.026819,-0.0143619375,0.011271654,-0.0075509804,0.040317576,0.0050739576,-0.024119284,-0.007222081,0.03261585,0.041605767,0.014841583,0.02387261,-0.028669057,-0.004169484,0.023913722,0.004135224,0.022077367,0.065779865,-0.022132184,0.038453814,-0.023708161,-0.028559426,-0.00036144667,0.026572324,0.028723875,-0.017459072,-0.04409992,-0.01933654,-0.025777485,0.015814576,0.000043414282,-0.000690346,-0.017925013,0.026887521,-0.0076263533,0.0068486435,0.005933892,-0.019528398,-0.045168843,0.028943142,0.02801126,0.0080922935,0.007975808,-0.023064066,0.012950411,0.021666244,0.0047039455,0.0013978222,0.053062424,-0.0639161,-0.014320825,0.013073748,0.027038265,0.02155661,-0.0005704348,0.014814174,0.0165546,-0.027298644,-0.0094901165,0.0076469094,0.012114459,0.009873832,0.018322434,-0.014540091,0.01704795,0.024146693,-0.021899214,0.007955252,0.0016539183,0.0077359863,-0.0075167203,0.009510673,0.0077770986,-0.006845217,0.04426437,0.01741796,-0.022789983,-0.013039488,-0.021241415,0.037631564,0.01599273,-0.012696885,0.0016376446,0.011826672,-0.008051181,0.0065540043,-0.0106001515,0.031711377,-0.023022953,-0.0029138424,-0.017842788,0.010024577,0.0010663533,0.021446977,-0.009387335,0.017938718,0.0030012063,-0.037138216,0.029820206,-0.013930257,-0.0062696435,-0.011312767,0.015143073,-0.00049977284,0.03261585,0.031546928,0.016047547,-0.008229336,0.019720256,0.00079955085,0.047032606,0.021871805,-0.024544112,-0.05182905,-0.0014526388,-0.00864046,-0.009092696,0.016842386,0.0059167617,-0.016170884,0.0025215615,-0.00433736,-0.020268422,0.0010046847,0.0035082595,0.009695678,-0.039330877,0.026133792,-0.011737595,-0.0185417,0.000049597205,0.019953227,0.0075646844,-0.01212131,0.030478004,-0.03532927,-0.0037378038,-0.008153963,0.019747663,0.013697287,0.0044332887,0.019035049,0.008715833,-0.009661417,-0.044182144,0.015334931,-0.04774522,0.034479614,0.01718499,0.0020504817,-0.03582262,-0.01956951,0.0147730615,-0.01702054,0.009688826,-0.007838767,0.01360821,-0.017226102,0.025338953,0.0317936,-0.04549774,0.024927828,0.007126152,0.011573145,-0.025941934,0.006896608,-0.02069325,0.0001634861,-0.010250696,-0.017787972,0.018733557,-0.028148301,-0.005642679,0.0029155556,-0.013053192,0.0011066092,-0.011840376,-0.007783951,-0.015170482,-0.00093273795,0.00014453584,-0.005200721,-0.013690434,0.086336076,-0.022296634,0.0048855254,0.008489714,0.006924016,0.0058687977,0.0023262776,0.032259542,-0.022899617,0.028148301,-0.0059064836,0.011436104,0.007982661,-0.022351451,0.00851027,-0.013656174,0.02013138,-0.013525985,0.03664487,-0.0094901165,0.0008813474,-0.038124915,0.019322835,0.04420955,-0.014498979,-0.012799665,-0.0047553363,0.03469888,0.02202255,0.02490042,-0.03294475,0.014841583,-0.0040050345,0.0033506618,0.0011108917,-0.0051116436,-0.0005306071,-0.04599109,0.00748246,-0.00025995038,-0.009846424,-0.024489297,0.006139454,-0.025640443,-0.010106802,-0.007331714,-0.0106960805,-0.012210388,0.025846006,-0.019089865,-0.014293416,0.032533627,0.0024016504,0.0059681525,0.01718499,-0.020556208,0.00027001437,0.00870898,0.004255135,-0.009496968,-0.015403452,0.042263564,-0.012237796,0.01973396,0.03149211,0.07038446,0.0071809688,0.005930466,0.002177245,0.019610623,0.0059750043,-0.00038114635,-0.015526789,-0.008948803,-0.004854691,0.014320825,0.006338164,-0.035082594,0.01606125,0.018911712,-0.0030491708,-0.0005164747,-0.013018932,0.025722668,-0.027504206,0.021474386,0.024461888,-0.035575945,-0.010949607,-0.005810555,0.010086246,-0.013450612,0.020186197,0.0154719725,0.023954835,0.017774267,0.020282125,-0.015567902,-0.019418765,0.011703335,-0.016801273,-0.006146306,-0.0045874603,0.027997555,-0.0047107977,0.005940744,-0.022200705,-0.00022012273,0.0018003812,0.007852471,-0.007708578,-0.0027202715,0.017226102,-0.01718499,-0.0153760435,-0.021104373,0.009051584,-0.008667868,0.003837159,-0.021104373,0.007427643,-0.00009052226,0.0052623893,-0.020186197,0.029737981,0.00514933,0.029463898,-0.009654566,-0.004251709,0.021378456,-0.0045634783,-0.014101558,-0.013080601,0.003953644,0.020446574,0.0010380885,-0.0070850397,-0.01900764,0.002972085,0.0015057422,0.030806905,-0.012518731,0.011162021,0.02569526,0.009168069,0.0070439274,0.022625534,0.0043921764,-0.042373195,-0.003362653,-0.015513085,-0.015047144,0.013162825,-0.025023757,0.014718245,-0.019829888,0.014471571,0.039550144,0.010929051,-0.019377653,0.0022954433,-0.00731801,-0.004919786,0.0007211803,0.020186197,-0.014444162,-0.021049557,-0.007941549,-0.0056563835,0.009654566,-0.027970146,-0.004481253,-0.010819417,0.016266814,-0.0111072045,-0.036535233,0.017267214,0.006889756,-0.04056425,-0.0012462201,0.0022594698,-0.012135015,0.01704795,0.029107591,0.01261466,0.046566665,-0.028203117,-0.02927204,0.010613856,-0.05456988,0.0029189815,-0.01877467,-0.053829856,-0.011970566,0.013943961,-0.0076400572,-0.034315165,0.0006470923,0.032369174,0.026311947,-0.017431665,-0.008297856,0.055803254,-0.023625934,0.038810123,0.0001123097,-0.008825465,0.038426407,-0.0038611412,0.007222081,0.03453443,-0.009544932,0.018884303,-0.013183381,0.014910103,0.018500587,-0.0009001906,0.0047861706,0.018829487,0.017034244,0.020158788,0.006255939,-0.006804105,-0.015636422,0.036836725,-0.010374033,0.01592421,0.0038303067,-0.008633607,0.011347027,-0.033136606,0.028669057,-0.049746025,0.016211996,-0.0071193003,-0.034616653,-0.015513085,0.00093959004,-0.02427003,0.022817392,-0.01950099,0.02387261,-0.004546348,0.0038988276,-0.03294475,0.00963401,0.0022971563,0.014348233,-0.042921364,0.018418362,-0.010990719,0.051582377,0.0043270816,-0.02929945,-0.0076263533,-0.021131782,-0.015403452,-0.021200303,0.007222081,-0.012354281,0.017404256,0.0154719725,0.024818195,0.00014603473,0.013704139,-0.03957755,0.010559039,0.017856494,0.031738784,0.013018932,-0.007071336,0.009812163,-0.025078574,0.0010946181,-0.011477216,0.013114861,0.0065300222,-0.024722267,0.013546541,-0.032204725,-0.01728092,0.009798459,0.0016556312,-0.00673901,0.030615047,0.027791994,0.004436715,-0.0069377203,0.0066807675,-0.0012496462,0.007187821,-0.016253108,-0.025654148,-0.034178123,0.0018791801,0.004738206,-0.026860112,-0.014923807,-0.039742004,-0.0064512235,0.0051835906,0.023968538,0.028915733,-0.016965725,-0.00039506462,0.03324624,-0.04182503,-0.014142672,-0.008373229,-0.004052999,0.00095243764,-0.006382703,-0.043551754,0.0031947773,-0.0024204934,0.011497772,0.021200303,0.038426407,0.024064468,0.00986698,-0.0032033424,0.0031673692,0.024132987,-0.009613453,0.036041886,-0.04530588,0.0340959,0.022776278,0.059585594,0.06095601,-0.007838767,0.0047210758,0.0044024545,0.008962506,0.02115919,-0.016116068,-0.006605395,-0.004124946,-0.004847839,-0.02728494,-0.017623523,0.030066881,0.015252707,-0.016170884,0.012107607,0.03513741,-0.011703335,-0.014444162,0.005036271,-0.033766996,-0.0043236557,0.02728494,0.012827074,-0.060736742,0.0064957617,0.019925818,0.016965725,-0.029847614,0.024955237,-0.006780123,0.004440141,0.0019339966,-0.009291406,-0.011162021,0.033766996,0.043990284,0.0027099934,-0.0105042225,0.035438903,0.040070903,-0.03450702,0.029820206,-0.009092696,-0.010367181,0.0035425199,-0.012477619,-0.04253765,-0.008462306,0.006122324,-0.016444966,0.030560229,-0.0074756076,-0.04599109,0.028285343,0.0045532,-0.002269748,-0.025667852,-0.03691895,0.019035049]},{"id":"interface-FetchedUserWithProfile","type":"interface","source":"main","text":"Interface: FetchedUserWithProfile\nDescription: Result of {@link UsersManager.fetchWithProfile}.\nProperties: globalProfile: APIProfileResponse | null, member: GuildMember | null, memberData: (APIGuildMember & { user: { id: string; }; }) | null, serverProfile: APIProfileResponse | null, user: User, userData: APIUserPartial","meta":{"url":"/docs/typedefs/FetchedUserWithProfile"},"embedding":[-0.003192925,0.011167642,0.007066359,0.014849682,0.033199128,-0.01458234,-0.02972367,0.015202089,0.026782898,0.00682332,-0.012868915,-0.023501871,0.006969143,-0.04219157,-0.0045600194,-0.020986417,-0.022918578,-0.0030592533,-0.078939065,0.03186241,0.03441432,0.0018516533,0.05526707,0.026296819,-0.032518618,0.014339301,-0.04955565,0.015991965,-0.027609231,-0.0048304,-0.010031435,-0.015858294,0.029188983,0.016174246,0.034803186,-0.012279545,0.035119135,0.04418449,-0.025008712,0.014594492,-0.001693678,-0.017486656,-0.024814282,0.0373794,-0.018422356,0.006312938,0.0039676116,0.020147933,0.03035557,0.055315677,-0.03247001,-0.04457335,0.005504833,0.05760024,-0.031643678,-0.008530669,-0.021448191,-0.021423887,-0.043212336,0.029286198,-0.029942404,-0.0061458484,0.026272515,0.02392719,0.015177785,-0.032445706,-0.00039038138,0.010310929,0.023951493,0.018969193,0.039372317,-0.009934219,-0.011471441,0.02916468,0.038813327,-0.016320068,0.0107423235,0.0023833013,-0.02268769,-0.03944523,0.004605589,0.03716066,-0.036237113,-0.044937912,-0.01012865,-0.03166798,-0.0049853376,-0.04693083,0.039493836,0.013391449,-0.0044597657,0.002886088,-0.055801753,-0.017438048,0.020075021,-0.014363605,0.012820307,-0.0047240704,-0.015627408,0.044281706,0.0492154,-0.027123151,-0.02880012,-0.03254292,0.035994075,0.0014703859,-0.035192046,0.0013131701,-0.041608278,0.0015379812,0.0018410204,0.026953025,-0.011161566,0.037549525,-0.030744433,0.005614201,-0.015627408,-0.014788923,0.038181428,-0.005644581,-0.03951814,0.022529716,0.027512014,-0.0131241055,0.027949484,-0.003378242,-0.03650446,-0.016040575,-0.060662534,-0.04761134,-0.022724146,-0.017377289,-0.017438048,0.013075498,-0.038400162,0.0127838515,-0.0022146928,-0.025348967,-0.023659846,-0.048875142,-0.04731969,-0.016089182,-0.014120566,0.0015516521,-0.069509156,-0.0155058885,-0.008415225,0.045010824,0.018957041,0.021897813,-0.048097417,-0.007552437,-0.07028688,-0.017352985,0.016526653,0.010359537,0.019151473,-0.034074068,-0.0062005324,-0.026345428,0.008050667,-0.04992021,-0.03215406,0.012273469,-0.004304828,-0.011052199,0.012929674,0.010790931,-0.05497542,-0.012364609,-0.020913506,-0.011088654,-0.08331377,-0.008998519,-0.042531826,-0.025664918,-0.03127912,-0.023198072,-0.020476036,-0.05410048,0.03509483,0.016623868,-0.024656307,-0.07125904,-0.043212336,-0.0030987472,-0.009952447,-0.006829396,0.017960582,-0.0023817823,0.022772754,0.044281706,0.038351554,0.0073640817,0.011088654,-0.011131186,0.052885287,-0.0063493936,0.0010769665,-0.009849155,-0.005322554,-0.012297774,0.057308596,-0.006519521,-0.003113937,-0.03596977,0.058377966,0.0016678551,-0.065669134,-0.013403601,0.015943358,0.02792518,-0.034195587,0.0036607748,-0.04936122,-0.008099275,-0.05162148,0.039469533,0.03876472,0.013683096,-0.00038050793,0.06562053,0.049069572,-0.033685204,0.023939341,0.0062764823,-0.023210224,-0.04785438,-0.023100857,0.024789978,0.0056050867,-0.0046967287,-0.040222954,-0.040927768,-0.019005649,0.0049245777,0.008561049,0.074418545,0.003372166,-0.006088127,-0.05764885,-0.0049276156,0.071696505,0.026758594,0.008427377,-0.028873034,0.0037974843,0.0202573,0.01701273,0.041292325,0.025276056,0.027001632,-0.0002010768,-0.0046420447,0.02131452,-0.006069899,-0.0019929197,0.027439103,0.00676256,0.014728163,0.0117630875,0.029286198,-0.010359537,0.03259153,-0.042531826,-0.018118557,0.006969143,0.01764463,-0.017535264,0.045156647,-0.015311457,0.03159507,0.026150996,-0.014752467,-0.02581074,-0.0061276206,0.023586934,0.008427377,-0.03708775,-0.0035514073,-0.049628563,0.0032476087,0.028192524,0.04381993,-0.0076314243,0.027998092,-0.009861307,-0.017365137,0.023465415,0.043406766,0.022335283,0.0013655754,0.044937912,-0.019406663,0.043212336,0.009028899,0.036820408,-0.011161566,0.066203825,0.03825434,0.042653345,-0.041146502,0.0233682,-0.016696779,0.04323664,-0.05074654,0.023404656,-0.011708404,-0.016149942,0.0031990008,-0.06250963,-0.02225022,0.001338993,0.012091191,-0.075244874,-0.047635645,0.027025936,0.009879535,-0.027755054,0.06144026,0.027852269,-0.007327626,-0.010116498,-0.04007713,-0.0078926915,-0.044670567,-0.020075021,-0.046614878,-0.0055260994,0.086959355,0.04087916,-0.011787391,-0.055607323,-0.028970249,0.018665396,0.01975907,-0.017741846,0.057114165,0.029966708,-0.0039736875,0.034876097,-0.02107148,-0.03003962,0.0013450689,-0.0055352133,0.0030030506,-0.027244672,0.028873034,-0.04058751,-0.004581285,0.02200718,0.04306651,0.028143916,0.019479576,0.014035502,-0.04911818,0.027755054,-0.02368415,-0.027220368,0.027025936,0.010547892,0.0036790029,-0.021922117,0.035605215,0.0026901378,0.037112053,0.006282558,0.01583399,0.011119034,-0.064842805,-0.027876573,-0.0012394988,-0.02661277,-0.010037511,-0.015275001,-0.000121424564,-0.03421989,-0.015031962,0.011781315,0.017486656,0.056628086,0.014157021,0.056093402,-0.060808357,0.030817345,-0.0155058885,-0.0117570115,-0.023963645,-0.042118657,0.006999523,0.050260466,0.016502349,-0.00066000276,-0.060856964,-0.022165157,-0.023829974,0.060176454,-0.008026363,0.031303424,-0.06843978,0.027900876,0.007953451,0.0417541,-0.014801075,-0.018398052,0.0069205356,-0.016781842,0.0058238218,0.026782898,-0.041122198,-0.0026491252,-0.021715535,-0.00244558,0.011046123,0.065231666,-0.026588466,-0.006519521,-0.010341309,0.024012253,0.038108516,-0.048024505,0.0114228325,-0.02641834,-0.0073883855,0.0019108941,-0.060225062,0.050066035,0.01645374,-0.0007363322,-0.07966819,-0.03757383,0.00890738,0.0014286136,-0.0042744484,-0.00490635,-0.0076071206,0.023319593,0.0068901554,-0.028848728,0.019005649,0.0124679,0.016356524,0.005115971,-0.029286198,-0.006993447,-0.0088101635,0.026928721,-0.03198393,0.0039949534,0.009399533,-0.0049701473,0.048194632,0.0116476435,0.06834257,-0.022906426,-0.009770168,-0.023975797,0.036407243,-0.00978232,-0.030793041,0.02948063,0.015469432,-0.02386643,0.030671522,0.017061338,0.02093781,0.021338824,0.017438048,0.0008210161,-0.003183811,-0.004681539,-0.017766152,0.0049276156,-0.0042167264,-0.046590574,-0.014667404,0.006738256,0.030574305,0.006282558,0.039688267,0.01988059,0.04039308,-0.025859348,-0.01788767,0.022153005,0.0529825,0.0013587399,0.012364609,-0.02293073,0.03383103,-0.02816822,-0.024510482,0.068391174,-0.012832459,0.028265435,0.014776771,0.025057321,-0.06391925,0.007971679,-0.021193001,0.03596977,-0.036188506,-0.008646112,0.010061814,-0.0047605266,0.033053305,-0.02940772,-0.040101435,-0.051329836,-0.020099325,-0.028192524,0.050892368,-0.025227448,-0.022760602,-0.01701273,0.004748374,-0.036480155,0.012249165,-0.027536318,0.061294436,0.0100557385,-0.00079671224,-0.017839063,0.018057797,0.03558091,0.008111427,-0.0051402748,-0.06513445,-0.024230989,0.0155058885,0.013306385,-0.004757488,0.028508475,0.022286676,-0.010784855,-0.021533255,-0.0031017852,-0.025033018,0.01583399,-0.02087705,-0.008646112,-0.01258942,-0.011993974,0.008524593,-0.014946898,0.033296343,0.022396043,0.02299149,0.031108992,-0.011902835,0.025470488,-0.023854278,0.009010671,0.0017954506,0.0047088806,0.010645108,-0.006981295,-0.020184388,-0.022456804,-0.0473683,0.0059605315,-0.015542344,0.040344473,-0.017352985,-0.032931786,0.03577534,0.047465514,0.0039645736,-0.0027357077,0.010784855,0.04262904,0.031740893,-0.0070724348,0.015651712,0.016064879,0.0065620528,-0.011805619,0.047781467,0.006027367,0.058232144,-0.01663602,-0.028897338,-0.003639509,0.03414698,-0.0063372417,-0.026029477,-0.013245625,-0.0027767206,0.00392508,0.035726734,0.03421989,-0.007862312,0.0068476237,0.012115494,0.02773075,-0.012346381,0.014995506,0.019771222,-0.021897813,0.013330689,0.011483593,-0.013500816,-0.044549048,0.014509428,0.053857442,0.013768159,0.034973312,0.016368676,-0.042167265,0.01265018,-0.029359112,0.0023468453,-0.05439213,-0.029213287,0.01053574,0.0027934294,-0.02984519,0.0042896383,0.015554496,0.0107362475,-0.024826434,-0.020220844,0.001079245,0.049191095,0.03315052,0.00193216,-0.029432023,0.00969118,-0.009332698,-0.0064830654,0.013828919,-0.008403073,-0.025689222,0.008190414,0.0011726632,-0.0039524217,-0.008415225,-0.0133549925,-0.034074068,-0.020573251,0.040830553,0.00907143,0.0180821,0.0063372417,0.019989958,-0.013768159,-0.006537749,-0.0074066133,-0.009417761,-0.008524593,-0.04780577,-0.053565796,0.022043638,-0.012158026,0.0052526803,-0.021120088,0.0027767206,0.040903464,-0.026102388,0.0014855759,-0.024218837,0.040465992,0.008542821,-0.002635454,-0.01508057,0.023951493,0.0049185017,0.03837586,-0.004681539,0.027609231,0.0019989957,0.016089182,0.012425369,-0.014108414,0.012613724,-0.009527129,0.0066410406,-0.020646162,-0.01352512,0.012103342,0.00043784996,-0.006835472,-0.04343107,-0.020427428,0.023258831,-0.02436466,0.0243039,-0.003885586,0.018398052,-0.011070427,0.015226393,0.030452786,0.032251276,-0.029504934,-0.00825725,-0.004128625,0.0058997716,-0.0010951945,0.00017886152,0.013367145,-0.008858771,-0.0024850736,-0.008949911,-0.006610661,-0.0074491454,0.012710939,-0.0052952124,0.028071005,0.0074491454,-0.0037154588,-0.049166787,-0.0067139524,-0.037816867,0.004614703,0.0027888725,0.025494792,-0.020864898,-0.01676969,0.04437892,0.019297296,0.023708453,0.009697256,-0.015189937,0.031619374,-0.008737252,0.0028086195,0.011313465,0.036407243,0.018774763,-0.04255613,-0.0047422983,-0.013160562,0.009132191,-0.011538276,-0.0044172336,0.0015995004,0.033612292,0.004903312,-0.033636596,-0.0033660901,0.03701484,0.0009926624,-0.022651235,0.017182857,-0.014764619,-0.005085591,-0.010547892,0.0492154,-0.010359537,-0.005416732,-0.035726734,0.007552437,-0.00048873626,0.014764619,0.014497276,-0.053274147,0.011878531,0.04578855,-0.052690856,0.018592482,0.032226972,0.035532303,0.021837054,0.015651712,-0.034001157,0.026321124,0.037986994,-0.021630472,0.053808834,-0.003666851,-0.009636496,0.0069144596,-0.0063980017,0.02342896,0.055558715,-0.0008210161,0.008396997,-0.026880113,-0.01657526,-0.006373698,0.03788978,0.010784855,0.0498716,-0.011659796,-0.00014810188,-0.015226393,0.014132718,0.014448669,-0.01657526,-0.03876472,0.011811695,0.0045630573,-0.026272515,-0.01053574,0.006780788,0.017729694,0.00270229,-0.08297352,0.030501394,0.05366301,-0.056579478,-0.010523588,0.04095207,0.03346647,0.014801075,-0.054732382,-0.026637074,0.026977329,-0.06071114,-0.012066886,-0.01619855,0.014509428,0.036553066,0.0047878684,-0.025203144,0.012577268,-0.0049367296,-0.039785486,-0.02661277,-0.047757164,0.008889152,0.0055352133,-0.03971257,-0.028532779,0.0071818023,0.040903464,-0.033247735,0.0014187401,0.016818298,-0.008488137,0.023173768,-0.023987949,0.02916468,0.0038278643,-0.013707399,-0.0067018005,-0.030647218,0.018495267,0.017352985,0.022736298,0.006543825,-0.010365613,0.02661277,0.0049306536,0.031376336,-0.021958573,0.0068780035,-0.0053772377,-0.0117630875,0.025397575,-0.0038157122,-0.017960582,-0.007546361,-0.03596977,0.02074338,-0.033053305,-0.020342365,0.011890683,0.018750459,0.011921063,-0.027609231,0.012601572,0.008962063,0.019686159,0.003393432,0.02673429,-0.006987371,-0.021800598,-0.018981345,0.0042744484,-0.026199603,0.036820408,-0.009563585,0.01025017,-0.021581862,-0.016028421,-0.027439103,0.0018531723,0.039299406,0.04275056,-0.01850742,-0.011362073,-0.0036911548,-0.037792563,0.033320647,0.010402069,-0.01945527,0.019272992,-0.006094203,0.007272942,0.016988426,-0.009326622,-0.00007770603,0.024887193,0.012066886,-0.002146338,-0.017960582,0.043965753,0.017182857,-0.0070055993,-0.01607703,-0.033976853,-0.019601095,0.00088937086,0.027390495,-0.015809687,0.020111477,-0.03541078,0.020901354,-0.019345904,-0.013257777,-0.03562952,-0.0032779884,0.033612292,-0.0070724348,0.013658792,0.019588944,-0.006598509,0.042920686,0.020791987,0.019540336,0.012820307,0.010663336,0.025713526,-0.009095735,0.019151473,0.03327204,-0.016988426,0.007716488,0.019613247,0.015481584,0.015323609,0.017899822,-0.0018577294,-0.038691808,-0.024073012,0.02581074,0.04335816,0.032640137,-0.020123629,-0.008700796,0.01832514,-0.018203622,0.0040131817,0.031886715,-0.0054228078,-0.013743855,0.022505412,-0.034973312,-0.025713526,0.017717542,0.025227448,-0.0013435499,-0.028994553,0.013440057,0.018665396,0.060127847,0.018264381,0.049191095,0.015882598,-0.028970249,-0.00044202717,-0.021399584,-0.009642572,-0.00922333,-0.07752944,0.042386003,-0.015177785,-0.005501795,0.04649336,-0.0035301414,-0.017608175,0.06591218,0.018677548,-0.019345904,0.010900299,0.011434984,0.0035301414,-0.013282081,-0.015688168,0.017000578,0.05721138,-0.01657526,-0.042701952,-0.04044169,-0.0025397576,-0.026321124,-0.003906852,0.05390605,0.018616788,0.007193954,0.029529238,-0.01720716,0.012346381,0.018714003,-0.0405146,-0.031935323,0.00925371,0.015748927,-0.005261794,-0.015846143,0.007035979,0.020160085,-0.0037124206,0.00095089007,-0.037914082,0.01862894,-0.001954945,0.026977329,0.020779835,-0.011471441,0.030622914,0.031254817,-0.032518618,-0.0022086168,-0.017766152,-0.018470963,-0.000084921245,-0.003387356,-0.011538276,0.027366191,0.0061792666,-0.0031108991,0.00816611,0.0016040574,-0.02131452,0.016721083,-0.006464837,0.029577846,-0.016052727,-0.014120566,0.023829974,0.023514023,0.012844611,-0.013561576,-0.023599086,-0.0032567226,0.033296343,0.03764674,0.009922067,-0.03295609,0.010134726,-0.033806726,0.01352512,0.0025716564,0.0122187855,0.008846619,-0.008700796,0.014776771,0.009849155,0.015177785,0.013549424,-0.0071818023,-0.03103608,0.015335761,0.0088101635,-0.004089131,0.0047240704,0.010408145,-0.0126744835,-0.022955034,0.025324663,0.01115549,-0.010608653,-0.0023392504,0.009113963,0.007114967,0.02649125,0.02069477,0.022529716,0.0323971,-0.022614779,-0.002434947,-0.042045746,0.02673429,0.044670567,0.04765995,-0.018264381,0.028775817,-0.0131241055,0.017413745,0.0065681287,-0.0018698813,0.016745387,-0.041170806,-0.011131186,0.012297774,0.018543875,0.006227874,-0.002661277,-0.041924227,0.019491728,-0.024109468,-0.011793467,0.008469909,0.006580281,-0.011921063,-0.032980394,0.009758016,0.0054562255,0.010596501,0.026345428,0.00096608,0.03220267,-0.0010572197,0.015469432,-0.008378769,0.02099857,-0.035046224,0.018531723,0.00022500094,0.015311457,0.0076375003,-0.014594492,-0.0007727881,-0.019710463,0.018665396,-0.0028496322,0.0151656335,0.021496799,-0.028873034,0.0036972307,0.007716488,0.01396259,0.024546938,-0.0024820357,-0.044767782,-0.009217254,-0.031838108,0.0009873459,-0.007929147,-0.04841337,-0.02598087,-0.02581074,0.005191921,0.010335233,-0.03378242,-0.0061458484,0.0004982299,0.0066896486,-0.021083632,-0.008336238,0.015408672,0.010517512,0.020269452,0.014059806,-0.018495267,0.056579478,-0.009788396,0.0261753,-0.005292174,0.00037652056,-0.008980291,0.021278065,-0.00026696315,0.028629994,0.017741846,0.0014354491,-0.01576108,0.002225326,-0.021168696,0.022262372,0.017024882,-0.027512014,0.056579478,0.023100857,-0.02436466,0.029650757,-0.016247157,0.026637074,0.018859826,-0.01440006,-0.022736298,0.028071005,0.007491677,0.015068417,-0.0005149389,-0.005091667,-0.010402069,-0.029286198,0.016149942,-0.02605378,-0.005134199,0.017316528,-0.02605378,0.021934269,0.00816611,0.00907143,-0.04294499,0.007740792,-0.006829396,-0.03373381,0.004541791,0.021824902,-0.012042582,0.008652188,-0.027268976,-0.062363807,0.039275102,0.010244094,0.0051828064,-0.0017757036,-0.030841649,-0.00049747044,0.028848728,-0.0063372417,0.00080810464,-0.023453264,0.014910443,-0.03215406,0.0059362277,0.03609129,0.018106405,0.007570665,-0.0026141882,0.017559567,0.047562733,0.018592482,-0.02268769,-0.0064769895,-0.013780311,0.0009949409,0.014922595,0.0067078765,-0.024352508,0.002705328,0.018398052,-0.0012645622,-0.037233576,-0.024401115,-0.010292701,-0.009915991,0.017425897,0.01408411,0.008239022,0.004848628,0.0009653205,0.013342841,-0.030088227,-0.016490197,0.016781842,-0.005407618,0.01080916,0.0246077,-0.018057797,-0.03103608,0.006744332,-0.03577534,0.010298777,0.044646263,-0.025348967,-0.0016693741,0.03453584,0.0012478534,0.018543875,-0.0041833087,-0.001221271,-0.008706872,0.011058275,0.0110765025,-0.0071331947,-0.028873034,-0.036115594,0.033029,0.008870923,-0.013974742,-0.012091191,0.00386432,0.0152871525,-0.0073701576,-0.0037549525,0.009800548,-0.01265018,0.0032962165,-0.030063923,-0.006549901,0.011993974,-0.04294499,-0.009891687,0.019649703,-0.035556607,-0.035264958,-0.00028253283,-0.006088127,-0.011404605,-0.055364285,-0.015420824,0.0014073477,-0.003645585,-0.009357002,-0.011507897,-0.008591428,-0.019175777,-0.0051797684,-0.0028192524,-0.018495267,0.009502824,-0.022432499,0.0047028046,-0.0063554696,-0.0038187501,0.015384369,-0.0016040574,0.0032202667,0.022505412,-0.032445706,0.016587412,0.00007856046,-0.0024835547,-0.021423887,0.015250697,0.03528926,-0.0016086143,0.002181275,-0.007977755,-0.004107359,0.013172714,-0.022359587,-0.0108456155,0.03203254,0.028994553,-0.035726734,-0.036237113,-0.0186897,0.020791987,-0.029432023,-0.014849682,-0.0069326875,-0.029504934,-0.011131186,0.014740315,0.0064223055,-0.012188406,0.02561631,-0.016149942,0.0008787379,-0.049020965,-0.023915038,0.011222325,0.012036506,-0.061974943,0.013440057,-0.009101811,-0.012364609,-0.017936278,0.00969118,-0.00629471,-0.0012592458,-0.004869894,-0.028945945,-0.00006731041,0.012881067,0.0069205356,-0.0074126893,0.037816867,0.0029969746,-0.0023878582,-0.0044263476,0.013974742,0.029456327,-0.0035909011,0.0174502,0.032105453,0.004581285,0.050989583,0.003384318,0.035872556,0.019443119,0.01080916,-0.025008712,-0.043795627,0.0044081197,-0.0038278643,0.02673429,-0.001930641,-0.030890256,0.014059806,0.011143338,0.0011263338,-0.040247258,-0.025251752,-0.006288634,-0.0067261043,-0.048461977,-0.00623395,0.026272515,0.024048708,-0.0066410406,-0.022104397,-0.00023373516,0.009837003,0.00047316655,0.018045645,0.075244874,-0.019394511,-0.025130233,0.02649125,0.00063417986,0.028071005,-0.0054623014,0.0020400085,0.0045691333,-0.011835999,0.030452786,-0.012249165,-0.02605378,-0.00029335567,-0.0051736925,-0.0030865953,0.020852746,-0.012334229,0.03446293,0.0007602564,-0.0019078561,-0.0023848203,-0.03278596,-0.022772754,-0.012230937,0.0040496374,0.0020977303,0.004675463,-0.01882337,-0.025470488,-0.036310025,-0.026223907,0.026394036,0.01006789,-0.033101913,0.0461045,0.0124435965,0.017097794,-0.0059179994,0.015736775,-0.02972367,-0.028046701,0.022153005,0.013598032,-0.012224861,0.025835045,-0.0027873535,0.004581285,0.01657526,-0.0010838021,-0.013391449,-0.021885661,0.013063346,-0.008949911,-0.008390921,-0.023295287,0.015007658,-0.01495905,-0.032251276,-0.01156258,-0.019661855,0.024401115,-0.049312614,0.015530192,0.022918578,0.009764092,0.0020172237,0.026321124,-0.0010108904,-0.0051736925,0.03140064,0.029699365,0.0299181,-0.014630947,0.052739464,0.013111954,0.015858294,-0.0193216,-0.0136952475,0.038059905,0.041243717,0.03832725,-0.0057053403,0.011337769,-0.01545728,-0.0028663413,-0.015189937,0.010875995,0.007825856,0.017049186,-0.016538804,-0.0023574783,-0.023441112,-0.006009139,-0.0255434,-0.027852269,0.0012508914,-0.0074552214,-0.010377766,0.04569133,-0.016064879,-0.024522634,-0.0052557182,-0.04697944,0.040927768,0.040538903,0.0133549925,-0.001319246,-0.01308765,-0.018337293,0.010152954,-0.000039541304,0.012079038,-0.01613779,-0.062412415,-0.009915991,0.0063372417,0.043795627,-0.008214718,0.05215617,-0.0102866255,-0.019649703,0.00729117,-0.01764463,-0.009132191,-0.0022936806,-0.024777826,-0.035945468,-0.020087173,-0.014302845,-0.00092810515,-0.018981345,0.011580808,-0.022578323,0.0015919055,0.040150043,-0.04804881,-0.009296241,-0.03171659,-0.015493736,-0.0045478675,0.005325592,0.0037245727]},{"id":"interface-FluxerErrorOptions","type":"interface","source":"main","text":"Interface: FluxerErrorOptions\nProperties: cause: Error, code: string","meta":{"url":"/docs/typedefs/FluxerErrorOptions"},"embedding":[-0.045564063,-0.028065706,-0.021439759,0.024087697,0.020487966,-0.01705907,-0.046100974,0.012208582,0.0056192423,0.019023668,0.012416025,-0.00018341854,0.019829031,0.022037681,-0.013020047,0.030799063,-0.01986564,0.013312907,-0.01726651,0.055008784,-0.010835803,-0.060085017,0.037119947,0.065942205,-0.026235335,-0.019255515,0.013947436,0.021427557,0.009609454,0.007535032,0.060475495,-0.033288367,0.034606237,0.015765605,-0.0031695946,0.0019249414,0.04151284,0.03280027,-0.018218305,-0.02567402,-0.005381294,-0.02439276,-0.010140262,-0.006772377,-0.013898626,0.030994302,0.010982233,-0.001025771,0.0049114986,0.015875427,-0.018132888,-0.045954544,-0.020524573,0.0008419712,-0.013105465,-0.027772848,-0.041732486,0.047101576,-0.019499565,0.0049908147,0.008236675,-0.027089508,-0.0037492123,-0.0007489273,-0.0025533692,0.031116327,-0.01160456,0.037095543,-0.0028248744,0.07633872,0.032873485,-0.013434932,0.006314784,-0.017620383,-0.013544754,0.010628361,0.00791941,0.031140732,0.047589675,-0.023660611,0.034508616,0.03009132,-0.03643661,-0.04441703,-0.021427557,0.024868656,-0.05081113,-0.018376937,-0.024649011,-0.049761716,-0.04829742,0.010945626,-0.035094336,0.020048676,-0.011183574,-0.0069920216,0.0191823,-0.04593014,0.0070103253,0.02911512,0.038681865,-0.023843648,-0.0025350654,-0.0116716735,-0.03128716,-0.028016897,-0.027675226,0.0017403789,-0.030994302,-0.0057077105,0.009511834,0.02247697,-0.039121155,0.038486626,-0.010915119,-0.036949113,-0.0102073755,0.013898626,0.0110859545,0.013971841,-0.0077241706,-0.02867583,0.030823467,0.03221455,-0.030213343,0.02129333,0.008444117,0.011354408,-0.06677198,-0.029749649,0.03550922,-0.015570366,-0.014972445,-0.006747972,0.0057260143,-0.011073751,-0.013239692,0.010237882,-0.020256119,-0.01799866,-0.019157896,0.01666859,0.05256829,-0.016998056,-0.025356757,0.0034807578,0.011714382,0.018450152,0.015228696,0.055057596,-0.02497848,0.014337915,-0.004267818,0.0007767642,0.015899833,-0.042708684,0.044246197,0.03255622,-0.043758098,-0.030799063,0.0334592,0.011104258,0.014386726,-0.033434797,-0.023160309,-0.0015222596,0.0007508339,-0.017388536,-0.0349235,0.0418057,-0.014911432,-0.032336574,-0.04121998,0.020927256,0.000028814062,-0.009157962,0.018279316,-0.03265384,0.00713235,0.04597895,0.0007744762,0.023636205,0.05090875,-0.042074155,-0.026137715,0.0028767348,-0.0334592,0.008712571,0.03389849,-0.0145941675,-0.014154878,0.018254912,-0.007333691,-0.005625344,-0.011836407,0.025991285,0.025844855,-0.02882226,-0.0182061,-0.018437948,-0.010311097,0.013264097,0.082195915,-0.005561281,-0.017718002,0.006949313,-0.03699792,-0.010433122,0.010732082,-0.015472746,0.042318206,0.06496601,-0.00634529,-0.00870647,-0.022745425,0.02645498,0.048834328,0.035094336,0.01485042,-0.047760513,-0.007333691,0.010402615,0.02872464,-0.039926518,0.039462823,0.008193966,0.004999967,-0.014057258,-0.0329467,0.015448341,-0.035875294,0.0001204995,-0.015753403,-0.046247404,0.040780693,-0.0081573585,-0.007632652,-0.006363594,0.014801609,0.033922896,-0.02911512,-0.038730673,-0.009304392,-0.0060127727,-0.032483004,0.006766276,-0.0010539893,-0.00019180775,0.0010692424,0.028651426,0.049493264,0.016949246,0.045417633,-0.01794985,0.010994435,-0.045271207,0.0049450556,-0.022879653,-0.00079849985,-0.03721757,0.036949113,-0.05227543,-0.009664365,0.038681865,-0.017693598,-0.0649172,0.009273886,0.01888944,-0.047736105,-0.013166477,0.039169963,-0.018425746,0.052226618,-0.0062080123,-0.010237882,0.0108663095,0.009426417,0.06032907,-0.01160456,0.025112705,-0.004057325,-0.03546041,-0.022403756,0.053300437,-0.018035267,0.013142073,0.009652163,0.0029102918,0.003727858,0.0016610627,-0.004682702,-0.001032635,0.024636809,-0.024112104,-0.01598525,0.04490513,0.032727055,0.0039505535,0.028382972,0.04519799,-0.026821053,-0.046174187,-0.020256119,-0.021451961,0.00408173,-0.0011523718,0.005677204,0.0054240027,0.05227543,-0.024209723,0.0031009556,-0.055594504,-0.054227825,0.0048321825,-0.05247067,-0.021757023,0.050420653,-0.0028263996,0.04253785,-0.009127456,0.018157292,-0.038633056,0.016241502,-0.047321223,-0.020256119,-0.03511874,0.000033485325,0.012056052,0.04383131,0.06418505,-0.0029423232,-0.015021254,-0.0130566545,-0.022879653,0.015851023,-0.020744218,-0.028651426,0.040072948,0.0074191084,-0.016583173,0.03677828,-0.053154007,-0.02586926,0.0061225947,0.06311123,-0.021805834,-0.018084077,-0.031653237,0.048468255,0.013874221,-0.066527925,0.05144566,-0.04810218,-0.013654577,-0.025015086,-0.010628361,-0.01160456,-0.03411814,-0.024514785,0.033166345,-0.002891988,0.06496601,0.037900906,0.01579001,-0.03633899,-0.007974321,0.009267785,-0.03506993,0.023538586,-0.043294404,0.018877238,-0.018682,-0.040902715,0.015131077,-0.0418057,-0.0010204324,-0.035436004,-0.015802214,0.019902246,-0.024929669,0.047248006,0.03914556,-0.06760175,-0.022257326,0.01746175,-0.022464767,0.0053721424,0.0039047939,-0.03289789,0.025283542,0.049273618,0.022794235,-0.05198257,-0.029676434,0.023831446,0.008358699,0.011415421,0.041854512,0.029871674,-0.018840631,0.052373048,0.02586926,0.016534362,0.08034114,0.0069371103,-0.0285294,0.025259135,0.026088905,0.016949246,-0.028309757,-0.006595441,-0.03714435,0.05159209,0.05149447,0.01976802,-0.0732637,0.05159209,-0.043758098,-0.031116327,0.018474557,0.025210327,0.019731412,-0.041927725,0.007974321,0.0042769695,-0.018254912,0.0059395577,-0.036875896,-0.00546061,-0.06335528,-0.0025808248,0.010530741,0.055643313,0.034508616,0.048761114,-0.012367215,0.03309313,-0.039218776,-0.0010745809,0.02497848,-0.03707114,0.04461227,0.07355656,-0.006943212,-0.03270265,-0.016656388,0.010603956,0.030408584,0.026796648,-0.011171372,-0.060719546,-0.019096883,-0.00496641,-0.02400228,-0.017791217,-0.0016976702,0.018035267,0.013215287,0.05720523,0.009255582,-0.017217701,0.011238485,-0.039975327,-0.017718002,0.016217098,0.011897419,-0.009902313,-0.001578696,-0.006845592,0.015301911,-0.042318206,0.015411734,0.019499565,-0.00114322,-0.00531113,0.0014223517,-0.017498357,-0.040048543,0.05320282,0.01618049,-0.017840028,0.054667115,-0.030945493,-0.022245124,0.023880256,0.10718659,0.019780222,-0.00002719342,-0.074776806,0.009347101,0.01853557,-0.005390446,0.020280523,-0.01283701,0.016961448,-0.024490379,-0.047101576,-0.034435403,0.0007573165,-0.03338599,0.0077302717,-0.0481998,-0.025356757,-0.0044050957,0.04485632,0.0030551963,0.021586189,-0.0669184,-0.061695743,-0.032873485,0.05037184,-0.0005609328,-0.02281864,-0.0054972176,-0.047833726,0.008486826,-0.042659875,-0.002522863,-0.015301911,0.019316528,0.011165271,0.005198257,0.0069615156,0.016937044,-0.010707677,-0.018901642,-0.02621093,-0.03363004,0.005390446,-0.0060554813,0.03221455,-0.00046445694,-0.03419135,-0.004762018,-0.031189542,0.019926652,-0.0022193263,-0.008834597,0.0062476704,-0.028846666,-0.0021262823,0.015460543,-0.011494737,0.044002146,-0.021378746,0.033410393,-0.013166477,0.020671003,-0.0024115152,0.023123702,-0.00091442344,-0.03909675,0.013483741,-0.033581227,0.032068122,0.03158002,0.016058465,-0.0149602415,-0.03865746,-0.010512438,0.011336105,-0.022489173,0.03411814,-0.0059395577,0.0050091185,0.014118271,-0.011146966,0.02291626,-0.0024847302,-0.0048169293,-0.007077439,0.022501376,-0.025600806,0.073019646,0.008297687,-0.007358096,-0.027650822,-0.0064063026,0.02223292,-0.0098413015,0.0016458096,-0.025698425,0.0038529334,0.095813885,-0.017046867,-0.00027455582,-0.0041885017,-0.0065832385,0.006998123,0.006674757,0.031067517,0.004466108,-0.004999967,-0.009096949,0.017962052,-0.008517331,0.024771037,0.030140128,0.019707007,0.046174187,0.0066320486,-0.037608046,-0.013520349,-0.021903453,0.059206437,0.016705196,0.024636809,0.004710158,-0.011543547,0.02645498,-0.018974857,0.040072948,-0.03284908,-0.049346834,-0.012104861,-0.01293463,-0.027333558,0.004551525,0.027504392,0.0073458934,-0.0018364734,-0.016400134,-0.013154275,-0.0014841268,-0.0052135102,0.011909622,-0.02001207,-0.032580625,0.019523969,-0.042464633,0.01691264,0.0014780256,0.0024618506,-0.00033671223,0.0052196113,0.022391552,-0.0058724442,0.023977876,-0.0324586,-0.041390818,0.002104928,-0.0201585,0.0388527,-0.01741294,0.030506203,-0.019218909,-0.022598995,0.0031268857,-0.028700236,0.024404962,0.012452632,0.0026082804,-0.009792491,-0.0021293329,0.042415824,0.007205565,0.0045179687,0.024600202,-0.0065283272,-0.014691787,0.002394737,0.02021951,-0.01145813,0.019743614,-0.015533758,0.00634529,0.012348911,0.018254912,-0.01913349,-0.01765699,0.032629434,0.046686694,-0.006131747,-0.007583842,-0.009511834,-0.014386726,0.011165271,-0.062964804,-0.005567382,0.000053528853,-0.03531398,0.02616212,-0.05642427,0.01618049,0.02350198,-0.00742521,-0.016949246,-0.03236098,-0.0012522796,0.054081395,0.0056527993,0.034142543,0.045466445,0.00408173,-0.006015823,-0.03158002,-0.002818773,0.017913243,0.033800874,-0.018987061,0.02630855,-0.01273939,0.01775461,0.007608247,-0.00062690245,-0.037608046,0.002489306,-0.009682668,0.049151596,0.004829132,-0.018132888,-0.0026799699,-0.019902246,-0.02621093,-0.011567952,0.03895032,0.00070850656,0.021805834,0.012062153,-0.0011622864,0.026137715,0.0034899097,-0.05847429,0.032092527,-0.012348911,-0.00782179,0.016143883,0.030237747,-0.002704375,-0.007559437,-0.00035711323,-0.011824205,-0.041195575,0.010976132,-0.011702179,0.0056741536,0.020182904,0.0050884346,-0.010585653,-0.016680792,0.034215756,0.013495944,0.017876634,-0.012727188,-0.012702783,-0.001554291,-0.016339121,0.0062476704,-0.017547168,-0.01687603,-0.0075472347,0.007846195,-0.0048840432,-0.0049694604,-0.0074984245,-0.023477573,0.021171305,0.0060524307,0.0017480054,-0.009914516,0.0027409822,0.032434195,-0.011122562,-0.005967013,-0.0013125293,0.0057016094,0.00062118255,-0.012416025,0.011305599,0.024124306,0.00496641,-0.0131298695,-0.041683674,0.01794985,0.006147,-0.047101576,-0.0467111,-0.062135033,-0.0324586,0.011140865,0.0074191084,0.0070103253,-0.015057862,-0.007461817,0.031409185,-0.012220785,0.0005876257,-0.021744821,-0.027406773,-0.0001234548,0.032922294,-0.013898626,0.0042861216,-0.063208856,-0.0032092526,0.03158002,-0.008730875,-0.07126249,0.00087324006,-0.0036241368,0.03521636,-0.008401408,-0.02538116,0.034313377,0.05100637,0.012507543,-0.0018761315,0.012617365,0.045515254,-0.0027165774,-0.0016519108,0.029847268,-0.01460637,0.020683205,-0.005561281,0.0020378144,0.018901642,-0.0027577607,0.0016198794,0.005420952,0.061549313,-0.0132030845,0.026186524,-0.01986564,0.00048123536,0.04258666,0.019060275,0.035582434,-0.0073764,0.02405109,-0.024624607,0.05749809,-0.0040603755,0.0010959354,-0.011500838,-0.023343347,-0.037266377,0.0044386527,-0.013617969,-0.00012869804,0.0144477375,-0.01259296,0.0049206507,0.017351927,0.0074008047,0.024087697,-0.009188469,-0.055936173,0.01637573,-0.0016198794,-0.028846666,0.017876634,0.029822864,-0.03733959,0.040121756,-0.0070652366,-0.05974335,-0.0025930272,0.011891318,-0.01219638,-0.028700236,0.045173585,-0.04073188,-0.042464633,-0.013300705,-0.019743614,-0.03802293,0.02104928,0.003880389,0.0029224942,0.04412417,0.0067113647,0.013520349,0.04612538,-0.0059090513,0.037022326,-0.012226886,0.011848609,0.04175689,0.026577003,-0.007870601,0.018084077,0.034069326,0.012080456,0.04002414,-0.014167081,0.026772244,0.027138319,-0.019975461,-0.004603386,0.006339189,0.028090112,0.026577003,0.005585686,0.011543547,0.0045027155,-0.010927321,0.009914516,-0.0052531683,0.0061622527,-0.015484949,-0.017583774,0.031775262,0.0037736173,0.02887107,-0.034288973,0.027406773,-0.030432988,0.00058610045,0.0102805905,0.07585062,0.019048072,0.018486759,0.013801006,-0.070969634,-0.0004209856,0.0075899432,0.027724037,0.0069676167,-0.05061589,-0.007126249,0.000986113,-0.001070005,0.019841235,-0.011433725,-0.023343347,0.015765605,-0.0138620185,-0.033141937,0.010256185,0.018718606,0.04795575,-0.002031713,-0.028358566,-0.004170198,-0.024758834,0.012159772,0.028065706,-0.0048779417,0.041122362,-0.041537244,0.038779486,0.013617969,-0.036607444,0.041561652,0.013434932,-0.00223763,0.019804627,-0.021952264,-0.04058545,0.032922294,-0.011921824,0.0383646,-0.012355012,0.0103538055,-0.030823467,0.028944286,0.037900906,0.03353242,0.0053843446,-0.02882226,-0.000986113,-0.024893062,-0.010848005,0.0103294,0.015802214,0.022733223,-0.030066913,0.0011660996,0.032922294,-0.034142543,-0.017193295,0.027748441,-0.013825411,0.012629568,0.027065104,-0.010231781,0.0031604427,-0.01731532,0.007101844,0.04712598,0.032434195,0.012226886,0.03692471,-0.0075716395,-0.032287765,0.010695475,0.010146363,0.037364,0.07175059,-0.020329334,0.015057862,0.0123977205,-0.001691569,0.031604428,-0.03758364,-0.03265384,0.045466445,-0.0051524974,-0.024160912,-0.021854643,0.01455756,-0.02109809,-0.031628832,0.026284145,-0.019401945,-0.010963929,-0.017351927,0.03531398,-0.0055216225,-0.0073214886,0.026503788,0.028553806,-0.022843044,-0.04568609,0.0007908733,0.00973758,0.022928461,0.014118271,0.015765605,0.02252578,-0.0093287965,0.012946832,-0.034801476,-0.014325713,-0.020622194,0.018047469,0.024710024,-0.02911512,0.035924103,-0.028309757,0.031702045,0.014679585,-0.027943682,-0.02252578,0.020500168,0.0044569564,-0.015716795,-0.001163049,0.005552129,-0.012678378,0.010762588,-0.025259135,-0.014276903,0.03382528,-0.007962119,0.010414817,0.009859605,-0.009029836,0.020231714,0.018340329,-0.0142280925,0.0032458599,0.018328127,0.005399598,0.011031043,0.02547878,-0.0066625546,0.0056527993,0.008078042,0.021451961,0.008145156,0.0138620185,-0.023184715,0.0050548776,-0.013251894,0.01942635,0.0070713377,0.011146966,0.0011477959,0.021903453,-0.021378746,-0.016497754,-0.017144486,0.013361717,-0.024014482,-0.020768622,-0.031116327,0.024209723,-0.02979846,0.013813209,0.010067047,-0.018035267,0.009188469,-0.0022711868,0.009139658,-0.009469125,0.01647335,-0.010603956,-0.03424016,-0.011299497,0.003944452,-0.0028553805,-0.007779082,0.028187731,-0.0009128981,0.022660008,0.018108482,0.02331894,-0.021476367,-0.018755214,-0.069456525,-0.009554543,-0.018974857,0.014167081,0.000109727,0.0022086492,-0.021964466,0.010701576,-0.0063330876,-0.025844855,0.03389849,0.024917467,-0.024551392,-0.010756487,-0.0007908733,0.020121891,0.022782031,-0.0013094788,0.014167081,0.0051280926,-0.0046888036,-0.00845632,-0.009585049,-0.015411734,-0.010024338,0.005012169,0.001735803,-0.04510037,0.03289789,-0.0011897419,-0.013178679,0.010658868,-0.019999867,0.017718002,0.015057862,-0.0036729467,-0.023880256,0.04165927,-0.012348911,0.021500772,0.027333558,-0.0016290313,-0.0033526316,-0.006924908,-0.013373919,0.013654577,0.050127793,-0.0072970837,0.0138620185,0.034093734,0.005301978,0.028309757,-0.007705867,0.023245726,0.021610593,0.0038712372,-0.016400134,0.03531398,0.042367015,-0.0026525143,0.010518539,0.024673417,-0.00629648,0.020024272,0.007449615,-0.011250688,0.011653369,-0.015399531,0.008724774,0.007711968,0.00031478587,0.0236118,0.0025472678,0.02208649,0.015851023,0.025991285,-0.01661978,0.0045545762,-0.008285484,-0.0422938,-0.050713513,0.009310493,-0.020707611,-0.015777808,0.0127882,-0.035924103,-0.010219578,-0.014984647,0.010884613,-0.023794837,-0.0201585,0.02208649,-0.028651426,-0.020341536,0.007785183,0.004194603,0.006147,-0.03899913,-0.007846195,-0.019255515,-0.004835233,0.0051219915,0.036070533,0.016546564,0.0017876634,-0.0018502012,-0.025356757,0.012306202,-0.027357962,0.017156688,0.03353242,0.0427819,0.053788535,0.01254415,-0.004240362,0.03890151,0.011885216,-0.0075777406,-0.0065649347,0.025356757,-0.017876634,0.013288502,-0.004902347,-0.03929199,-0.013739994,0.006387999,0.01637573,0.0167296,-0.004307476,-0.0024710025,-0.04046343,-0.0084502185,0.012629568,-0.020744218,-0.022171909,-0.024624607,0.020121891,0.007364197,0.012995643,-0.029237146,-0.0016107275,-0.010963929,0.0151066715,0.0027028495,0.027846063,-0.019499565,-0.007272679,0.005512471,-0.011537446,0.0152531015,0.0064978213,-0.022330541,0.026357358,0.016070668,0.0017205499,0.0057229637,-0.010048743,-0.02645498,-0.031067517,-0.035826486,0.0003304203,-0.0024877808,0.05305639,-0.043660477,-0.0069798194,-0.005478914,-0.0052348645,-0.018303722,0.023782635,-0.02444157,-0.0501766,0.023550788,0.017827826,0.0062537715,0.009334898,0.018852834,0.0010394988,-0.0009487429,-0.010628361,-0.045368824,0.021769226,-0.023453169,0.015863225,-0.015728999,0.012171975,0.009578948,0.038974725,-0.005817533,0.01765699,-0.0007493086,-0.0069188066,-0.0067601744,0.0051616495,-0.019096883,-0.011842508,0.043928932,-0.015472746,-0.005665002,0.0021476366,-0.025893664,0.022794235,-0.003517365,-0.039706875,0.009615555,0.0012949883,0.03455743,-0.0021522127,-0.002184244,-0.010854107,-0.012434328,-0.0024511735,-0.0036759975,0.010890715,0.011641167,-0.0055643315,0.0177058,-0.04060986,-0.025503185,-0.0143745225,-0.005125042,0.013361717,-0.015301911,-0.008139055,0.008279383,-0.005881596,-0.007815689,-0.02591807,-0.037168756,0.010213477,0.036168154,-0.025259135,0.016644184,-0.03707114,-0.008773584,-0.012800403,-0.026650218,-0.039950922,-0.009609454,0.0023474523,-0.012287899,-0.0069188066,0.0004129777,-0.040902715,0.011226282,0.015631378,0.020817433,-0.001985954,-0.02286745,0.0021415355,-0.019096883,0.0005003017,-0.0048962454,-0.03231217,0.013776601,0.00486879,0.0037309085,-0.0025579452,0.024124306,0.0019020617,-0.0064124037,0.015131077,-0.013971841,0.013556956,0.017595978,-0.009133557,0.024941871,-0.00049877644,0.017718002,-0.052714717,-0.019206705,0.013410526,0.03497231,0.024929669,0.014020651,-0.011049347,-0.03958485,0.008895609,0.06457553,-0.044880725,0.0068150857,0.05842548,-0.026381765,-0.044831917,0.0025838753,-0.006955414,-0.012507543,0.0172055,0.01155575,-0.043318808,0.010640563,0.027455583,0.033166345,0.031360377,0.021171305,-0.022269528,0.035826486,0.012062153,-0.014276903,0.01962159,0.00078477204,-0.03777888,-0.0191823,-0.016631981,-0.03953604,-0.030384177,-0.014191486,0.0250883,-0.0072421725,0.0047193095,0.010317198,0.017107878,0.0022406806,0.024063293,-0.0037004023,0.005597888,-0.008108549,-0.010146363,-0.0025792995,-0.029456789,0.021744821,-0.018230507,-0.0138620185,0.013556956,-0.027455583,-0.004804727,-0.03550922,-0.020744218,0.03733959,0.03870627,-0.014179283,0.013910828,0.014337915,0.007840094,-0.009554543,0.0005708473,0.011513041,-0.007382501,0.018620986,0.00140176,-0.030164534,0.023013879,-0.0011714381,-0.044441435,-0.004658297,-0.0044172984,-0.026088905,-0.014984647,0.00076227373,0.046589073,-0.0035326183,-0.01687603,-0.019951057,-0.026918674,-0.05290996,-0.019109085,0.024404962,-0.0074984245,-0.011506939,0.018254912,0.023721624,-0.011037144,0.0008900185,0.032068122,-0.01986564,-0.009682668,0.000041183375,-0.004530171,-0.0064124037,-0.0070591355,0.002341351,0.037241973,0.023550788,0.024856454,0.029578814,0.046100974,0.04712598,-0.034850284,-0.0066564535,-0.01971921,-0.010927321,0.009157962,0.020719813,-0.0005449171,-0.005189105,0.010304995,-0.0065588336,0.010744285,-0.007004224,-0.025161516,-0.02857821,-0.011476434,0.008749179,0.020817433,-0.021635,0.02350198,-0.024075495,0.019267717,0.027113913,0.013239692,0.0031939994,0.010073148,0.0211469,0.03585089,-0.0041915523,0.01986564,-0.0029621522,0.002994184,-0.024356153,0.0048108282,0.024807645,-0.0156191755,0.03319075,0.018877238,-0.03382528,-0.017156688,0.029090716,-0.02320912,0.015289709,-0.030408584,-0.002257459,-0.028480591,-0.014813812,-0.012727188,-0.028602615,-0.024807645,-0.03516755,-0.004460007,0.0007931613,-0.002611331,0.008389206,-0.01879182,0.016778411,-0.008029233,-0.018755214,0.016973652]},{"id":"interface-GatewayAuthSessionChangeDispatchData","type":"interface","source":"main","text":"Interface: GatewayAuthSessionChangeDispatchData\nDescription: AUTH_SESSION_CHANGE — login/logout on another client","meta":{"url":"/docs/typedefs/GatewayAuthSessionChangeDispatchData"},"embedding":[0.016907018,0.013035555,0.016098421,-0.00029901223,0.018083157,0.030653156,-0.028398888,0.033716023,0.036509357,-0.02950152,0.008980322,-0.00034208377,-0.040527835,0.05567064,0.0028408077,0.009360117,0.028619414,0.032784913,-0.021734092,0.03881263,-0.031461753,0.04307614,0.020165905,0.028178362,-0.01228209,-0.0025467726,-0.0035437352,-0.034010056,-0.016980525,-0.055523623,0.043615203,-0.0276638,0.021807602,-0.0035866154,0.045746956,0.014027923,-0.055425614,0.022567192,-0.01400342,-0.044472806,-0.018168917,-0.04885883,0.002467138,0.042855613,-0.05968912,-0.024502924,0.023437046,-0.00021593201,0.014089181,0.013807397,-0.0029235051,-0.064001635,-0.017605351,0.041189414,0.003776513,0.021648332,0.04033181,-0.01193905,0.0101013305,0.013807397,-0.044717833,0.008429006,0.028570408,-0.0044197147,0.01190842,-0.028447894,-0.012122821,0.005598918,0.028276373,0.026953215,-0.012165701,0.011424488,-0.04126292,0.0024518238,-0.01634345,0.034990173,-0.019822866,-0.018168917,0.035553742,-0.017703362,0.005007785,0.012876286,-0.06904924,-0.006407514,-0.01566962,-0.015375584,-0.072969705,-0.012416856,0.010291228,-0.013623625,0.036019295,0.038004033,-0.022444678,-0.0050874194,0.01977386,-0.00258659,0.002356875,-0.020141402,-0.012447485,0.009249854,0.029893566,-0.115947835,-0.036288828,-0.007216111,0.029991578,-0.021489063,0.011638888,0.02614462,-0.06929427,-0.025287017,-0.06076725,-0.017801374,-0.020741725,-0.021819852,-0.03714643,-0.018585468,0.042267542,-0.07566503,0.014015672,0.00833712,-0.012594502,0.03677889,0.020582456,-0.035333216,-0.010891549,-0.06076725,-0.035235204,0.013084561,-0.0628745,-0.03528421,0.061845377,-0.024784707,0.015657367,-0.043786723,-0.0051793056,-0.007687792,-0.005733684,0.0027060416,-0.03119222,-0.013807397,-0.017201053,-0.041017894,0.026536666,0.024698947,-0.041115906,0.039327193,0.035088185,0.07360678,-0.0023660634,0.020227164,-0.059395086,0.015204064,0.00160341,0.036435846,-0.0020827486,0.04577146,0.034622632,-0.00053447,-0.008435131,0.023228772,-0.00820848,-0.04013579,0.0057888157,0.015473596,-0.06571684,-0.0318538,0.0041501825,0.0025253326,-0.06728502,-0.009329488,-0.021133771,-0.037783507,-0.018315936,0.024184385,-0.009611271,-0.02044769,0.007577529,-0.022175146,-0.02891345,0.011424488,0.025287017,0.021305291,0.02498073,-0.0746359,-0.011853289,0.0034212207,0.035161696,0.03579877,0.013868654,-0.0156206135,0.0034273465,0.03261339,-0.0035559868,0.0005765844,0.02271421,-0.057973918,0.017813625,-0.031412747,0.016380204,-0.027173743,-0.007951198,-0.0763021,0.026830701,-0.02624263,-0.0077858036,0.01644146,0.037097424,0.0041501825,0.0009862427,0.0036233698,0.031486258,0.039841752,-0.0025651497,-0.022603946,-0.06277649,0.045893975,0.008520892,-0.005231374,0.011957427,-0.0024518238,0.02565456,0.006095102,0.0040123537,-0.013623625,0.051407132,0.0101687135,0.00090201385,-0.015081549,-0.023400292,-0.016882515,-0.0058776387,0.019957632,-0.010573012,-0.06262947,0.024870466,-0.00044526407,0.031143215,-0.043811228,0.030408127,0.025875088,-0.007240614,-0.005865387,-0.023106256,0.02540953,-0.025679063,0.00850864,0.008373874,-0.008649532,-0.0394007,0.021146024,-0.029329998,0.041360933,0.014211696,-0.04057684,-0.005752061,0.0020168968,0.043639705,-0.021440057,0.020202661,0.03545573,0.05581766,-0.059983157,0.012790526,0.04760918,-0.032931928,-0.019810613,0.022738712,0.009188596,-0.045697954,0.029477017,-0.022922484,0.03175579,0.013954415,0.024515174,-0.025850585,-0.023571812,0.035333216,0.010995687,-0.01710304,0.026169121,-0.024968479,-0.023547309,-0.0027045102,0.0019372624,-0.036729883,0.022236403,-0.0031195285,0.027541285,0.034745146,0.030971695,-0.040111285,0.01202481,0.0042941375,-0.00475663,0.00004859906,0.0148487715,-0.038175553,0.0035314837,0.000801705,0.014763012,0.0059480844,0.028864443,-0.041042395,-0.016539473,0.0527793,-0.0009066082,0.043223158,0.027639298,0.04459532,-0.014101433,-0.0444483,-0.038567603,-0.04148345,0.028545905,-0.018671228,-0.013550117,0.024110876,-0.0018269992,0.017237807,-0.008245233,-0.011283596,0.016576227,0.0053814547,-0.023841344,0.011210088,0.0007706935,-0.03913117,-0.014125935,0.025752572,0.061159298,0.019136783,-0.065520816,0.025703566,-0.007099722,0.058512982,0.036509357,-0.0393762,0.02790883,0.003436535,-0.017887134,-0.023118509,-0.030898185,-0.0427331,-0.017323567,0.037072923,-0.044227775,-0.006548406,0.03562725,-0.042635087,-0.006824064,0.009347865,-0.0043155774,-0.011969678,-0.04425228,-0.0037703873,-0.022530438,0.018291432,-0.06262947,0.0013805865,0.028447894,-0.0068853213,0.012502616,0.012386228,-0.02874193,0.024919473,0.0043308917,-0.034157075,0.009452003,0.033078946,-0.031167718,-0.02396386,-0.0544945,-0.0569938,0.02555655,-0.019982133,0.030236607,-0.030849181,-0.03026111,0.015608362,-0.0004073611,0.009709284,0.027516782,0.019835116,0.02063146,0.015436842,-0.007840935,-0.03638684,0.018671228,-0.046384033,0.0014640497,0.0074060084,-0.012962046,0.0067321784,-0.005595855,-0.031216724,-0.014309707,0.09923684,0.0069772075,0.018585468,-0.045893975,0.0074060084,0.021268537,0.032931928,-0.010922178,-0.034475613,0.041017894,-0.008484137,0.03763649,0.043223158,0.016772252,0.07100947,-0.0155103505,0.016625233,0.016037162,0.0060828505,-0.029526023,-0.011289722,-0.010916052,0.04256158,0.033470992,0.020962251,0.0072957454,-0.006171674,0.017164297,0.044693332,-0.01399117,0.044350293,-0.00637076,0.03712193,-0.053024326,-0.0112713445,0.033716023,0.044227775,-0.02373108,0.017666608,0.020300671,-0.012643509,-0.022346666,0.0063095028,-0.043590702,-0.021011258,-0.0077551752,-0.0063156285,0.0133908475,-0.048001226,0.00039510964,-0.0034059063,-0.014285204,0.047903214,-0.02128079,-0.043443684,-0.0031424998,-0.0108302925,0.07056842,-0.07321473,0.0015352613,-0.0064994004,0.052681286,0.019749356,-0.022236403,-0.0026662243,-0.012582251,-0.0018285307,0.071891576,-0.022946987,-0.025581053,-0.0034641009,0.004006228,-0.008986447,0.017323567,-0.020276168,-0.015522602,0.020864239,0.02397611,-0.019651344,0.0041134283,0.023118509,-0.009347865,0.045477424,0.00913959,0.019994386,0.0561607,-0.013709386,0.0044411547,0.04515889,0.06566784,0.022861227,0.011951301,-0.02825187,-0.005304883,0.035749763,-0.0035131066,0.015902396,-0.013035555,0.0047933846,-0.0041134283,0.025899589,-0.087181404,0.004502412,0.023265526,0.0061563593,0.004983282,-0.0009219225,0.016943771,0.0096602775,0.025066491,-0.073655784,0.004490161,-0.039474208,-0.060032163,-0.010217719,-0.0058592614,-0.030016081,-0.05498456,-0.062335435,-0.01190842,-0.0030199853,0.014211696,-0.0045881723,0.049054854,-0.02069272,0.018671228,0.029942572,-0.005598918,-0.011075322,0.021219531,0.017005028,-0.069980346,-0.027712807,-0.011975803,0.042096023,-0.026218127,0.012447485,0.035088185,0.0007239848,-0.0070935963,-0.0027963961,0.002615687,-0.007767427,0.002612624,0.008888436,-0.013966667,-0.0059511475,0.017923888,-0.008275863,-0.011571505,0.018487455,-0.005142551,0.015632866,-0.0084228795,-0.012680262,-0.013709386,-0.0019464509,0.01810766,0.010548509,-0.002364532,0.005136425,-0.0368769,-0.0068056867,0.0030536768,-0.029452514,-0.015277573,-0.008018581,-0.05155415,-0.004444218,0.060963273,0.014236199,0.016404707,-0.03503918,0.008986447,-0.032221343,0.047315143,-0.03998877,0.062482454,0.026022105,-0.021685086,0.017801374,0.0011187115,0.023228772,-0.005032288,-0.0019341995,-0.0494469,-0.028374385,0.05248526,-0.059738126,-0.013782894,0.007442763,-0.00106358,-0.028986959,0.025066491,-0.023596315,-0.007173231,0.022677455,0.0009954312,0.020080145,0.02641415,0.017041784,0.011859415,-0.013954415,0.0014410781,0.016073918,0.007853187,-0.029133976,-0.026683683,0.024184385,0.04719263,0.023290029,0.00737538,0.0095500145,0.0077858036,0.018475205,0.02565456,0.02732076,0.018401695,-0.022824474,0.009482631,-0.030922689,-0.00578269,-0.021182777,0.010781286,-0.023841344,0.018328186,0.007828684,0.016331198,-0.021587076,0.06066924,-0.022995993,-0.020129152,-0.027688304,-0.0046769953,0.008980322,-0.015032544,-0.010726155,-0.0021057199,-0.039498713,-0.014223947,0.03695041,0.0021149085,-0.0046524927,-0.029182982,-0.012998801,-0.03888614,0.03663187,-0.021403303,0.060326196,-0.0014808954,-0.0013239236,-0.011265219,0.007736798,0.009464254,-0.01676,-0.014432222,0.080075555,-0.0006619618,0.04986345,-0.019038772,0.00034572094,0.045085378,-0.003117997,-0.0063646343,-0.0032405115,-0.0027872075,-0.017323567,0.009133465,0.015559357,0.02707573,-0.028055847,0.010468874,-0.030800175,0.009464254,-0.016073918,0.03562725,0.074880935,0.006079788,0.009850175,-0.0007297277,-0.025090994,-0.023118509,-0.005896016,0.018805994,0.024086373,0.034622632,0.008018581,0.007191608,0.03327497,0.02396386,0.07169555,-0.034475613,-0.015718626,0.017654356,0.0006202302,0.038739122,0.0118900435,-0.037611987,-0.0025957783,0.0059572733,0.035749763,0.011632763,0.008122719,-0.0067444295,-0.022628449,-0.012251462,0.020325175,-0.00951326,-0.0039357822,-0.03396105,-0.013733888,-0.019210292,0.0073324996,-0.021746345,-0.0067444295,-0.025262514,-0.022836724,0.014383216,0.005963399,0.017054034,-0.031535264,0.027443275,0.014040175,-0.026438653,-0.007007836,0.013599123,0.0138319,-0.0053447,0.005647924,0.009831798,0.0055039693,0.0077490495,-0.010903801,-0.013182573,-0.027222747,0.012226959,0.029477017,-0.0058531356,-0.024331402,0.009776667,0.009605146,0.0074733915,0.016220935,0.00035050666,0.030530643,-0.029697543,-0.0065606576,-0.01894076,0.026022105,0.007124225,0.005439649,0.021268537,-0.021354297,0.03445111,-0.011222339,0.007969576,-0.023608567,-0.006235994,-0.006297251,0.013035555,0.011338728,-0.020043392,-0.00019142909,-0.014775263,0.017838128,0.0073631285,0.00038075246,0.052436255,-0.033912044,0.004557544,-0.06066924,-0.030236607,-0.011914547,0.00833712,-0.011259093,-0.02607111,0.005537661,0.014505731,0.04368871,-0.03998877,0.015730876,-0.010836418,-0.020974502,-0.008545394,0.023424795,-0.017923888,-0.010205467,-0.054004442,0.0036019296,-0.025777075,0.017985146,-0.024539677,0.001263432,0.016000409,-0.005687741,0.004918962,0.001670793,-0.04474234,0.014763012,0.013194825,0.02648766,-0.09531637,0.03467164,0.035259705,-0.020594707,0.029207485,0.011510248,0.040380817,0.040258303,0.03467164,-0.08556421,0.035578243,-0.03511269,-0.010291228,-0.0037336329,0.0044993493,-0.017666608,0.022407923,0.052926313,0.0138319,-0.0014916154,-0.016710993,-0.007669415,-0.015547105,0.0427331,-0.003641747,0.0036264327,-0.029722046,0.0016600731,-0.019087777,-0.03327497,0.05356339,-0.03971924,-0.010597514,-0.019982133,0.008796549,0.037930526,0.004407463,0.009917558,-0.0061349194,-0.03067766,0.0067934357,-0.0064320173,0.024698947,0.015228567,-0.008055336,0.012606754,-0.02749228,0.018707981,-0.018487455,0.023081753,-0.013231578,-0.015828889,0.023584064,-0.032784913,0.007828684,-0.009862427,0.016171928,0.013513362,-0.022640701,-0.023988362,0.008974195,-0.0083126165,0.006229868,0.02456418,0.021219531,-0.008576023,0.003911279,-0.026855204,0.019626841,0.030138595,0.011516374,0.015939152,0.042218536,0.0023247148,0.0027014473,0.059297074,-0.0060675363,-0.013366344,-0.0036968784,0.06111029,0.021648332,0.008196228,0.014652748,0.022150643,0.01516731,-0.013305088,0.008796549,-0.015657367,-0.017874882,0.005620358,-0.019479824,-0.019577837,0.01366038,0.019332806,0.014089181,0.0109405555,-0.035749763,0.04006228,-0.01676,-0.015326578,0.012128947,-0.004321703,0.013929912,-0.021746345,-0.026855204,-0.016294444,0.005552975,0.005412083,0.008857807,0.022346666,0.0063217543,0.002364532,-0.016612982,0.0066586696,-0.034181576,-0.017005028,0.03714643,-0.030481637,0.0057673757,-0.0238781,-0.0022848975,-0.0037121929,0.0072467397,0.0031578143,-0.008012456,0.00055705867,-0.011056944,-0.035676256,-0.003393655,0.06311953,-0.017703362,0.0021608516,-0.013550117,-0.001695296,-0.0053998316,-0.003822456,0.014493479,0.00695883,-0.036166314,0.004000102,0.0034089691,-0.0038929018,-0.0057214326,-0.011216213,0.014934531,-0.024012865,-0.0018132164,-0.018413946,0.002664693,0.0046065496,0.012233084,-0.027810818,-0.035063684,-0.03253988,0.023032747,0.05005947,-0.022579445,0.012717017,-0.016907018,0.030065088,0.041189414,0.017764619,-0.046923097,0.037489474,-0.0019403253,-0.02808035,-0.04057684,0.023020497,-0.02749228,0.0014472039,-0.015326578,0.016784502,-0.009102836,-0.041434444,0.010922178,0.023008244,0.0066280407,-0.019896373,0.023510555,-0.011540877,-0.0058807014,0.0011493403,-0.039180174,-0.019541081,0.055376608,-0.0008139565,0.04910386,-0.00320682,-0.039180174,-0.011222339,0.012251462,0.047903214,0.023669824,-0.009519386,-0.03244187,-0.028300876,0.01961459,-0.022420175,-0.013966667,-0.015240818,0.0062053655,0.04057684,-0.009464254,-0.0039694738,0.030481637,0.0057489984,-0.0023920978,0.028962456,0.005752061,0.0007251334,0.003326272,0.017054034,-0.018830497,0.009121213,-0.02212614,0.010260599,-0.025875088,-0.010217719,0.010358611,-0.0078715645,0.014285204,-0.017544093,0.014309707,0.043468185,-0.003050614,-0.008318743,-0.059640117,-0.024233392,-0.04895684,0.007620409,0.006214554,-0.020141402,-0.021427806,-0.0019280738,0.020962251,-0.005026162,0.012049313,0.031731285,0.00015505755,0.03467164,0.0024426351,0.015204064,-0.0150692975,-0.01826693,0.0016432273,0.004303326,-0.018401695,0.008747543,-0.0050629163,0.031829298,0.0033293348,0.0062023024,0.011442865,-0.011314224,0.01391766,0.01869573,-0.0027933333,0.009255979,0.0029709795,0.0013736951,0.0037428215,-0.007908318,-0.004958779,-0.013709386,0.011338728,-0.024527427,-0.023473801,0.036435846,0.008263611,-0.011816535,0.03285842,0.055768654,0.0011654203,0.017813625,0.003500855,0.029967075,-0.012361725,0.035749763,0.0025329897,0.031804793,0.0006646418,-0.0071609793,-0.015044795,-0.051652163,0.021930117,-0.026610175,-0.014946783,-0.00737538,0.008588275,-0.0129497945,0.038837135,0.027565788,0.015632866,-0.009911433,-0.023081753,-0.0022527375,0.007693918,0.030285614,0.0048791445,-0.02170959,-0.020043392,0.025090994,0.0019939253,0.01575538,0.0005727558,0.022260906,0.03160877,0.029771052,-0.00016395902,0.0085944,0.006505526,-0.023596315,0.029011462,0.024919473,-0.014370965,0.020655964,0.016220935,0.0013116722,0.0110079385,0.0025574926,0.0110508185,0.03530871,-0.0022343602,-0.0014418439,0.004116491,0.01399117,0.016698742,-0.011124327,-0.010009444,-0.0007576763,0.012202456,-0.028815437,-0.03253988,-0.008980322,-0.00006862733,0.031731285,0.015008041,0.015792133,0.0163557,-0.0039909137,-0.06601088,-0.0028790934,-0.00947038,-0.010848669,0.009078333,-0.00593277,-0.019675847,-0.011430614,0.008545394,-0.005255877,0.0662069,-0.013697134,0.028692923,0.005644861,-0.0024441667,0.0044870977,-0.0125087425,0.04609,-0.021525819,-0.0025253326,0.005372266,0.02883994,-0.007056842,-0.023951607,0.007798055,0.021917865,0.0030812426,-0.016943771,0.01726231,-0.021685086,0.03143725,-0.020067895,-0.0024028178,-0.02396386,-0.011724649,-0.019271549,0.01156538,-0.005277317,0.024796959,0.05630772,0.0058776387,-0.002604967,0.028717427,-0.011332602,0.0012037061,-0.0069833333,0.036754385,-0.027786314,0.034647133,-0.00573981,-0.0025299268,-0.017115291,0.031241227,-0.031731285,-0.05248526,0.0036999413,-0.0035866154,-0.037930526,-0.02397611,-0.020349678,-0.014493479,0.02003114,0.032343857,-0.008974195,-0.014223947,-0.020239415,0.026781695,0.014934531,0.00024273209,-0.031829298,-0.01793614,0.016784502,-0.0071609793,0.015743129,0.0163557,0.0016784503,-0.027002221,0.019161286,-0.042463567,0.0110079385,0.009035453,0.000017156832,-0.03300544,-0.018291432,-0.024772456,0.007032339,0.00027029787,-0.02638965,0.016968274,0.014652748,-0.0017136732,0.003595804,-0.002802522,0.027565788,-0.016809005,0.036264326,0.0038622732,-0.0013782894,0.0056754895,-0.036754385,0.042120524,-0.009752164,0.003941908,0.010468874,0.0014701753,-0.003482478,-0.009501008,-0.015118304,-0.024098625,0.0017672733,0.028055847,0.014297456,0.009868552,-0.012184079,0.0011125859,0.011920672,0.024380408,0.006897573,-0.010138084,0.016220935,-0.050279997,-0.01110595,-0.003029174,0.008674035,0.007669415,-0.033470992,0.03253988,-0.013905409,-0.035259705,0.013256081,-0.016331198,0.0050812936,-0.0027749562,-0.029182982,0.0048362645,0.008833304,0.029403508,0.03511269,0.0031761914,0.040993392,-0.024172135,0.010327982,0.014236199,-0.0045085377,0.014407719,0.030775672,-0.005644861,0.0022205773,0.000002668043,0.017776871,0.009672529,-0.008367748,-0.004640241,0.0032680775,-0.0020184284,0.019626841,0.016735496,0.0007339391,0.009727661,-0.03288292,0.004413589,0.02800684,-0.0213788,-0.02690421,0.031706784,-0.018499708,0.0041808113,-0.025262514,0.029354502,0.015081549,-0.003085837,-0.0128395315,-0.036509357,0.005507032,0.0021011257,0.008159474,-0.021048011,0.0017642105,-0.024588684,-0.023927104,-0.0047260015,-0.010554634,0.04199801,0.021611579,0.023755584,-0.0042236913,0.016135175,0.024870466,-0.012410731,-0.024576431,-0.006554532,-0.015522602,0.011712397,0.03119222,0.017127544,0.0055652265,-0.016784502,-0.0053324485,0.0024992982,-0.017127544,0.0128395315,-0.0021011257,-0.004710687,-0.0087107895,-0.027345262,0.028594911,-0.022701958,0.015792133,-0.004036857,0.011406111,-0.035382222,0.0074305115,-0.026855204,0.036827892,0.043541696,-0.021195028,-0.02815386,0.00034495522,0.0049495907,0.013868654,0.0024074123,0.038102046,0.010413743,-0.028325379,0.017482836,0.010934429,0.040846374,0.030775672,0.00070216187,0.01119171,0.0010436714,-0.010162587,-0.018450702,-0.045795962,0.014983538,-0.002459481,0.030726666,0.0115225,0.00047742415,-0.055278596,0.02297149,0.056944795,0.0071977335,-0.044619825,-0.0049036476,0.018548712,-0.036827892,0.046947602,-0.016061665,-0.031535264,-0.011167208,-0.009145716,-0.02815386,-0.008845556,0.021917865,0.021244034,0.030800175,0.028986959,-0.045648947,0.021832105,0.019847367,0.032000817,0.025581053,-0.0027274815,-0.049397893,0.021342047,-0.012998801,-0.004817887,0.015632866,0.035823274,0.0034763522,0.022824474,-0.0055927923,-0.023657572,0.005546849,0.0038592105,-0.041949004,0.003571301,-0.04307614,0.00813497,-0.011504122,-0.03998877,-0.010487251,0.003617244,-0.006689298,-0.0045146635,-0.009525511,-0.0072528655,0.025262514,-0.013292836,-0.017090788,0.0150692975,0.012913041,-0.024845963,0.0019296053,0.0025850583,-0.014199444,-0.0004000868,0.020900993,-0.0033630263,0.030726666,-0.004474846,-0.015816636,-0.034769647,0.0132805845,0.012753772,-0.0005513158,-0.0041593714,-0.00076112204,0.01056076,0.00071709335,0.0014648153,0.041605964,-0.0082023535,0.013795146,-0.014089181,-0.03160877,0.014015672,-0.038445085,0.0138564035,0.03212333,0.012171827,0.0048822076,0.00695883,0.013256081,0.025899589,0.016073918,0.016490467,0.031020701,0.030579649,0.024074122,-0.0055499123,-0.014934531,-0.0053385743,0.058709003,0.027198246,-0.00036486384,-0.0008981853,0.029869063,0.0034273465,-0.0012159576,-0.004257383,-0.018928507,-0.025997601,-0.0048638303,0.0222119,-0.04158146,0.02572807,-0.029893566,-0.0151795605,-0.03636234,-0.009592894,-0.014015672,-0.03352,-0.011528625,0.014346462,-0.0163557,0.022946987,-0.006848567,-0.035161696,0.0015314327,0.00073547056,-0.024502924,-0.0017228618,0.024221139,0.017617602,0.01492228,-0.015216315,0.031388246,-0.009200848,-0.026855204,-0.06630491,-0.011216213,-0.0059572733,0.0019678911,0.014272952,0.010052324,-0.035186198,-0.016943771,0.026879707,-0.0011746088,-0.0013231578,-0.003932719,-0.0055407234,0.022616198,-0.0063156285,-0.005850073,-0.01809541,-0.0019678911,-0.025189005,0.0027382018,-0.0031455627,0.0008330994,0.02120728,0.013194825,-0.018928507,-0.0103892395,0.001414278,-0.0032711402]},{"id":"interface-GatewayCallCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallCreateDispatchData\nDescription: CALL_CREATE — call created\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallCreateDispatchData"},"embedding":[0.04288472,-0.0050236853,0.008819298,-0.01669309,0.004610705,-0.03306014,-0.007585792,-0.0030049735,0.011324348,-0.02956068,0.034320816,0.0068902466,0.028821662,-0.025539557,0.016290978,-0.017116938,-0.041254535,0.008390016,0.029278114,0.023018206,-0.040080804,0.01074835,0.021561908,0.00860194,-0.0059501734,-0.019801307,-0.007363,-0.010661406,-0.00038139525,-0.025583029,0.07824886,-0.020344703,0.039972123,-0.0073684338,0.026365517,0.020507721,-0.017388634,-0.03079962,-0.039667822,-0.0023488242,-0.0297563,0.01699739,0.006189267,0.0049747797,-0.037755072,-0.03286452,-0.005586099,0.042037025,0.0050780247,-0.00391516,-0.034299083,-0.022159642,0.010846161,0.043797623,0.012954533,-0.010770085,-0.00019545233,-0.012758911,-0.04247174,0.032842785,-0.020996775,-0.025496086,-0.015867129,-0.028691247,0.015030301,0.0041732723,-0.041363213,0.04392804,0.022540018,0.018584102,-0.006607681,0.00450746,-0.028604304,0.008286771,-0.015149848,0.0015024868,-0.044819206,0.0045509315,0.04081982,-0.0017904859,0.013367513,0.009628956,-0.06459878,-0.0068630767,0.01823633,-0.01219378,-0.030560525,-0.016736561,-0.0057219476,-0.0032331992,-0.009090995,0.012367667,-0.024496239,0.017008258,0.01829067,-0.011454763,0.0595126,-0.000842262,-0.022713903,-0.0050671566,0.037320357,-0.048383877,0.010579897,-0.004627007,0.011661253,-0.022235716,0.006075154,-0.0050236853,-0.0101397475,0.009590919,-0.04205876,-0.024431031,-0.009574617,-0.016149694,0.0016614296,-0.021051116,0.058730114,-0.08059632,0.01668222,-0.0061403615,-0.026061216,-0.009699598,0.0055317595,-0.01772554,0.0025295028,-0.014399963,0.013584871,-0.010069106,-0.07107604,-0.008161791,0.022952998,0.03590753,0.04308034,-0.016812636,-0.012628496,0.01172646,-0.04660154,0.030451847,-0.012226384,-0.036146626,0.012574157,-0.026908912,0.0662507,0.045992937,0.004928591,-0.012454609,-0.0073412643,0.046427656,0.030343167,0.053730883,-0.065381266,0.053556994,0.01626924,-0.017845087,0.005787155,0.0009910163,0.0030321432,-0.011856875,-0.015041169,-0.013052344,0.02934332,-0.034299083,-0.01446517,0.036342245,-0.06951106,0.012063365,-0.0027509364,-0.014117397,-0.061860066,0.023496393,0.035733644,-0.028799927,-0.07433641,0.034842476,-0.008254168,0.011856875,-0.02108372,-0.029430265,-0.016801769,-0.014073926,0.01999693,0.01891014,-0.007042397,-0.0700762,-0.027995702,0.0015378074,0.0000048422635,-0.0010161484,0.052383263,-0.052904923,-0.037581187,-0.016747428,0.016856108,0.043210756,0.0142695485,0.002041806,0.048166517,-0.009422466,0.0037956128,0.00067516806,0.037624657,-0.07890093,-0.020833759,-0.0037059528,0.0148672825,-0.02656114,-0.007786848,0.0015907884,-0.015106376,0.0005722627,0.040928498,-0.04638418,0.010449483,0.025778651,-0.04903595,0.030147545,-0.027430572,0.029886715,-0.0072162836,-0.028147852,-0.023496393,0.0066620205,0.03584232,-0.04081982,-0.0031435392,0.030908298,-0.018377613,-0.00043709323,-0.02277911,0.012802382,-0.02780008,0.01416087,0.031190863,-0.05560016,-0.0146064535,0.030973505,-0.0077705462,0.029473735,0.024604918,0.03214724,0.0030104073,-0.009857182,-0.03582059,-0.009156203,-0.012552421,0.019301385,0.037342094,-0.020344703,-0.018942744,0.013932643,0.039298315,0.019355724,0.004732969,0.01741037,-0.0014264114,-0.018149387,0.03699432,-0.027887022,0.04629724,0.020594664,0.07372781,-0.06951106,-0.026908912,0.0712934,-0.024300616,-0.028017437,0.03053879,0.029365057,-0.036972586,0.012921929,-0.003148973,-0.042189173,0.07981383,-0.0050888928,-0.04464532,-0.040841557,0.010020201,-0.0020295796,0.03462512,0.00777598,-0.05977343,0.006075154,-0.020866362,0.057947624,-0.019670893,0.031429958,-0.015986675,0.014356491,0.03012581,0.013476192,-0.028495625,0.008091149,-0.027169742,-0.06707666,0.013008872,0.06329463,0.018366745,-0.006395757,0.046688482,0.020725079,0.033820894,0.023822429,-0.009177939,-0.026995854,0.0022279187,0.030321432,0.059251774,-0.021431493,0.055208914,-0.033777423,-0.0167909,0.023518128,0.010873331,-0.037646394,-0.02273564,0.03229939,0.032212447,0.025343934,-0.0412328,0.041819666,-0.026778497,-0.018018972,-0.017225616,-0.027865287,-0.008895373,0.01390004,-0.0084389215,-0.028495625,0.00839545,0.049731497,0.014530377,-0.060382035,0.014921622,-0.0057110796,0.06446836,0.03579885,-0.053078808,0.0059501734,0.003043011,0.01172646,0.043732416,-0.023518128,-0.040928498,-0.026887177,0.0341904,-0.008612808,0.019540478,0.014432567,-0.015867129,0.04029816,-0.020627268,0.00018016934,-0.016280109,-0.023257298,-0.01374789,-0.03895054,-0.0068522086,-0.065294325,-0.020290364,0.008824732,-0.054382954,0.0028881435,0.01539981,-0.014486906,-0.0073956037,-0.0034125196,-0.02682197,0.0023895788,-0.021811869,-0.016453996,-0.008400884,-0.020953305,-0.05590446,0.0029913886,0.0052845147,-0.05316575,0.001732071,-0.010884198,0.024626654,0.0075477543,0.03053879,-0.001573128,0.004075461,-0.012052498,0.023061676,0.047731802,-0.025061369,0.042406533,-0.031234335,-0.0042792344,0.009683296,-0.0010854312,0.0011669404,0.0056187026,-0.007330396,0.0054312316,0.061207995,-0.0115417065,0.021018513,0.009395297,0.039341785,0.013052344,0.0061403615,-0.010797256,-0.009112732,-0.02051859,0.025778651,0.013628342,0.05668695,-0.0070097935,0.05994732,0.0068685105,0.03525546,0.040450312,0.024604918,-0.02588733,-0.037037794,0.010096276,-0.024952691,0.01136782,0.043775886,-0.00046154598,0.0022021076,0.025322199,-0.036668282,-0.0297563,0.0016165996,0.041558836,0.010612501,-0.028278267,-0.0046134223,0.011943818,0.06872858,0.017377766,0.037342094,0.0006184512,-0.020333834,-0.04160231,-0.0017130522,-0.0038173487,-0.06033856,0.025496086,0.017790746,0.017149542,-0.023996316,0.015975809,0.025126576,-0.027061062,0.018877536,0.0091670705,-0.048818592,-0.017964633,-0.026256839,0.045688637,-0.01947527,-0.00058890413,0.002841955,0.055469744,-0.038450617,0.01539981,-0.027104534,-0.018214595,0.02851736,0.079596475,-0.037798546,0.030821355,-0.036516134,-0.011672121,-0.008982317,0.037168205,0.0008307148,-0.03421214,0.024257146,0.039646085,-0.012378534,0.005031836,-0.024517976,-0.00966156,0.026430724,-0.023887636,0.02971283,0.009987597,0.030299695,0.044862676,0.04108065,0.059816904,-0.0008802996,0.004309121,-0.0154650165,-0.017214749,-0.0049557607,0.009770239,0.050774813,-0.0088682035,-0.027017592,0.013552267,-0.008096583,-0.010036503,-0.007661867,0.00860194,-0.048688177,-0.00715651,0.028430417,-0.027169742,0.04851429,0.0074879806,-0.0017578823,-0.015149848,-0.016866976,-0.056773894,0.014823811,0.03575538,-0.01823633,-0.016747428,-0.052731033,-0.0041379514,-0.0039504804,0.057599854,-0.029843245,0.015128112,-0.018627575,-0.00453463,-0.022583488,0.021420624,-0.016410524,-0.024365824,0.025365671,-0.08285684,-0.0014549397,-0.0018896555,0.06059939,-0.022866055,-0.020062137,0.022246584,0.026952384,-0.018888405,0.0045536486,0.017790746,0.017084334,0.028647775,-0.01534547,0.01416087,-0.010041936,0.022148773,0.012117704,-0.020388175,0.025061369,0.0033826327,0.012824118,0.0061729653,0.010340803,-0.045384336,-0.008553035,0.0046976483,0.007938999,0.031842936,0.0016913164,-0.025822122,0.009911521,-0.0051867035,0.012889326,-0.008987751,-0.003999386,-0.025452614,0.0049937987,0.045862522,-0.033560064,-0.01410653,0.0019725233,-0.030191017,-0.02893034,0.041884873,0.020355571,0.013584871,0.003988518,0.0060208146,-0.0054040616,0.011443895,0.025278728,-0.03690738,-0.017953765,-0.078031495,0.017160408,0.041515365,-0.049861908,0.047340557,0.029821508,-0.020322967,0.009906088,0.0135413995,-0.025235256,-0.0011947894,0.005034553,0.0075912257,-0.016758297,0.00834111,0.0051296474,0.0003443765,0.016834373,0.023778958,-0.012095969,0.03662481,-0.0332775,-0.037950695,0.034864213,0.03414693,0.011291744,0.037907224,-0.0038852731,-0.014508642,-0.0000016344297,0.024974426,0.024583181,-0.009835446,0.022409603,-0.012921929,0.004969346,0.006118626,-0.0098028425,-0.01622577,0.021464096,-0.0004292819,-0.027321892,0.028452154,-0.005993645,0.033407915,-0.028278267,-0.04231959,0.0036298775,0.0012864872,0.004515611,-0.03745077,-0.0032848218,-0.013313173,-0.0085476,-0.023887636,0.040537253,-0.013965247,-0.010291898,0.022496546,0.0079335645,-0.023365978,-0.005982777,0.000074164906,0.032168973,-0.010558162,0.009563749,0.024018051,0.02806091,0.035429344,-0.046123352,-0.0052736467,0.0350381,0.00088233734,0.048557762,-0.01988825,-0.036863904,0.041276272,-0.033494856,0.025409142,-0.013269702,0.0073412643,0.025017899,0.022952998,0.031234335,0.0038581034,-0.005550778,0.010715746,-0.011047217,0.0010575822,-0.020659871,0.004499309,0.043015134,0.014443435,0.0028039173,0.011998158,-0.007716207,-0.011585178,0.030864827,0.014291284,0.018105917,-0.009395297,-0.030930033,-0.019866515,0.039819974,-0.020116476,0.06959801,-0.015280263,0.02190968,0.015486753,0.000814413,0.008199828,-0.0012695062,0.0012212798,0.031560373,0.013084947,0.0471232,0.00093463913,-0.023387713,-0.018073313,-0.017008258,-0.022453075,0.01694305,-0.02656114,-0.011090688,0.013367513,-0.020268627,0.027408835,0.01077552,0.014291284,-0.009150769,-0.019236177,-0.023778958,-0.010520124,-0.0092051085,0.019670893,-0.039406992,0.008634544,-0.0019426366,0.003695085,0.044514906,0.037363827,-0.027995702,0.0027509364,0.02221398,0.030647468,0.02712627,0.007786848,-0.0057545514,-0.0076075275,-0.0073140943,0.01668222,0.033299234,0.0054203635,-0.036407452,0.012900193,-0.014041322,-0.007781414,0.026104689,0.0048932703,0.020790286,0.0019249762,-0.0042629326,-0.004007537,0.012487213,-0.021051116,0.015693244,-0.015562828,-0.0018190142,0.02934332,-0.011954687,0.003983084,-0.043602,0.0041162157,-0.026691554,0.040906765,-0.005145949,-0.0057328152,0.0015527507,0.026039481,-0.017388634,-0.009666994,0.0036054247,0.039146163,-0.045949467,-0.012443742,-0.02093157,-0.022909526,0.018160256,0.032929726,-0.049688023,-0.03725515,-0.0142695485,-0.0018108633,0.020344703,-0.021735793,0.008107451,-0.03421214,-0.033668745,-0.012095969,0.0032984067,-0.0031027845,-0.0030104073,0.0050753076,0.042276118,-0.017529918,-0.0035510852,-0.037624657,-0.041406687,-0.015019434,-0.0101397475,0.021355417,-0.032929726,-0.028191324,0.013041476,-0.025822122,0.018171122,-0.094420284,0.023648543,0.029843245,0.020377306,0.014758604,-0.03745077,0.013139287,0.0009190165,-0.022159642,-0.050600927,0.008574771,0.0028039173,0.026343782,0.014171737,0.009705031,0.017942898,0.0039178766,-0.0038716882,0.0046813465,0.025365671,0.028539097,-0.031864673,-0.018942744,0.034842476,-0.0032277652,-0.020812022,-0.005249194,-0.011563442,0.027713137,-0.020485986,0.053556994,-0.00609689,-0.008433488,0.030625733,-0.004866101,0.031190863,-0.009373561,0.0064066253,0.0033962177,-0.017236484,-0.000026405593,-0.014117397,0.0018652028,0.012432874,-0.034016516,0.023322506,0.008634544,0.029734565,-0.005251911,0.023105148,-0.022279188,-0.035972737,0.015334602,0.0017497314,-0.0018461839,0.026648082,-0.038450617,0.010558162,0.00906926,-0.052296318,0.042558685,0.029234642,0.010617935,-0.0037494244,0.006499002,-0.044254076,-0.014562981,0.014410831,0.03932005,0.010976575,-0.0014332038,0.062599085,-0.00026745215,0.03601621,-0.0067870016,0.027430572,-0.037363827,-0.01072118,0.027713137,0.04960108,0.0075314525,0.021474963,0.00048430063,0.032473274,0.023257298,-0.0007396962,-0.020344703,-0.004488441,-0.0008782619,0.023735486,-0.04768833,-0.015910601,0.007699905,0.036516134,-0.0009421108,0.020725079,-0.040624198,-0.018203726,-0.015921468,-0.015628036,-0.011661253,-0.0035809719,0.016866976,-0.0154106775,-0.0062707765,0.0061403615,0.012661099,0.008743223,-0.018551499,0.029517207,-0.0046786293,0.011639518,-0.024909219,0.01487815,-0.026278574,-0.033560064,0.034799006,0.0018013539,-0.0033744818,-0.039841708,-0.0053959107,0.0034369724,0.02588733,0.0071184724,-0.023213828,0.004162404,0.02345292,-0.042689096,-0.015736714,-0.0021491265,-0.044297546,-0.0051541,-0.026517667,0.040667668,0.028386947,0.019442666,-0.018008105,0.015562828,-0.03310361,-0.026735026,0.003561953,0.022692168,0.0073249624,-0.022235716,0.008373714,-0.0058414945,-0.017692937,-0.013345777,-0.00096656353,0.0041488195,-0.022300923,-0.0471232,-0.0059175696,-0.03440776,-0.0038227825,0.026387254,-0.052991863,0.047470972,0.024365824,0.011824272,-0.008400884,0.04660154,0.025517821,0.03482074,-0.034038253,-0.030147545,-0.00030396148,0.033234026,-0.01818199,-0.0032005955,-0.019768704,0.03306014,0.01493249,-0.017008258,-0.06290339,0.04164578,0.015845394,0.009112732,-0.013247966,-0.011715593,-0.030104073,0.033494856,0.018540632,0.009949559,0.025191784,-0.0030402942,0.03171252,-0.012965401,0.022648696,-0.027865287,-0.01762773,0.04638418,0.022974733,-0.0022578056,0.0031815767,-0.008319375,0.009628956,0.022561753,-0.03162558,-0.019725233,-0.014302152,0.008199828,-0.019486139,0.006422927,0.049253307,0.0010983368,0.013606607,0.011911214,-0.0055290423,0.009362693,0.011433028,-0.018062444,-0.01513898,-0.0027128987,-0.045905996,0.024844011,-0.03766813,-0.0031734258,-0.0009278467,-0.045688637,-0.01731256,-0.023952844,-0.004298253,0.04603641,0.0003231501,-0.019942591,-0.026865441,0.0026422574,-0.019670893,-0.028082645,0.019855646,-0.027691402,0.0062762103,-0.027734872,0.014769471,-0.011715593,0.0006415455,0.025017899,-0.0011302612,0.048905537,0.012574157,0.008563902,-0.008987751,-0.0008938845,0.011998158,0.010525558,0.01534547,0.03203856,0.020485986,0.034951154,-0.0097159,0.0043498757,0.001386336,0.0056187026,0.019257912,0.043384645,0.008830166,0.015258526,0.0043308567,0.01390004,0.01776901,0.019909987,0.0065098703,0.0022034661,-0.014073926,-0.010031069,-0.005982777,0.009373561,-0.027843552,0.009145335,0.049122892,0.020551192,0.008156356,-0.004825346,0.013965247,-0.002540371,0.011585178,0.029169435,-0.004607988,0.023061676,-0.01772554,-0.03440776,-0.019942591,-0.0341904,0.009547447,-0.030756148,-0.025800386,0.008373714,-0.01436736,-0.020420779,0.023387713,0.05968649,-0.00053694204,-0.021279342,0.02851736,-0.0073412643,-0.013639211,-0.0019344856,0.031799465,-0.02588733,0.012454609,0.018692782,-0.019573081,-0.010601633,0.013117551,0.017964633,0.002755012,0.0073956037,0.0033065577,0.009906088,-0.035733644,-0.015617168,0.026430724,0.032821048,0.012117704,0.04690584,-0.041363213,-0.012204648,0.021822736,0.00092309195,0.0028120682,0.020877229,0.045949467,-0.056817364,-0.007585792,0.008433488,0.012911061,0.013867436,0.04529739,0.00032009353,0.041363213,-0.026061216,0.01668222,-0.0066022472,0.029125962,0.06499002,-0.011867743,0.032060295,0.00082596013,0.020388175,-0.036798697,0.0054122126,-0.043232493,0.019355724,0.0073412643,-0.0070152273,0.015693244,-0.0042683664,0.0036543303,-0.012987137,0.05499156,0.013182758,0.009373561,0.026387254,-0.0008429412,-0.0011329782,0.012682836,0.025974274,-0.035516284,-0.011400424,-0.018508028,0.0338861,0.0037141037,-0.0053144014,0.0049639116,-0.010579897,0.0060805883,-0.020181684,0.01859497,-0.030212753,0.025017899,0.004292819,-0.0027903325,-0.019746969,-0.025170049,-0.025365671,0.015454149,-0.020833759,-0.01390004,0.020877229,-0.003488595,0.015432414,0.016910447,-0.023409449,-0.043623738,-0.0054203635,0.019899119,-0.036972586,-0.019225309,-0.0126067605,-0.03395131,-0.03608142,-0.00039531974,0.010547293,-0.017377766,-0.0041433857,-0.009004053,-0.031908143,-0.028343474,-0.03099524,0.013519663,-0.0024738049,0.004958478,-0.039624352,-0.029430265,-0.03132128,-0.0033201424,-0.0045889695,-0.009607221,0.011389555,-0.06377282,-0.02877819,-0.0010073181,0.003252218,0.0050916094,0.021018513,-0.0034994627,-0.013986983,-0.012758911,0.025996009,-0.010574464,-0.0020105608,-0.006960888,0.014791207,-0.01958395,-0.009150769,0.019518742,-0.06281644,-0.005645872,0.03399478,0.02014908,-0.010699444,0.009319222,0.0235616,-0.04686237,0.03058226,0.00082799786,0.016301844,-0.01374789,-0.040385105,0.04314555,0.008292205,-0.024996161,-0.005550778,0.012856722,0.028104382,0.009188807,-0.02956068,-0.024626654,-0.012280723,0.057425965,0.038102847,0.022583488,0.0052817976,-0.029691095,-0.020268627,-0.016312713,0.0029696526,-0.015877998,0.013704417,-0.031473428,-0.03384263,-0.002261881,0.011737328,0.020181684,0.00009152807,0.0031435392,-0.058730114,-0.037124734,-0.013921776,0.030603997,0.019833911,0.0015649771,0.003882556,-0.016671354,-0.012063365,0.027843552,-0.010020201,0.021605378,0.021974888,-0.027887022,-0.01240027,0.025604764,-0.029430265,0.004730252,0.022540018,-0.02345292,-0.017573388,0.014682529,0.029060755,0.0027577288,-0.0029017285,-0.003964065,-0.006004513,-0.0088682035,0.0412328,0.009900654,-0.004023839,0.029060755,-0.026213367,0.016660485,-0.06620722,-0.024670126,-0.0043906304,0.009846315,-0.0056404383,0.029995395,-0.013769625,-0.004591686,-0.010237559,-0.009732202,-0.022692168,-0.023996316,-0.031690788,-0.012411138,-0.011101556,-0.018116783,-0.0011676196,-0.04408019,-0.01240027,-0.010161484,-0.0055399104,0.0077216406,0.017149542,0.038841862,-0.02319209,0.013215362,-0.020159949,-0.029778037,-0.024452768,-0.00023077299,-0.016823504,0.015986675,0.03482074,-0.016573543,0.065294325,-0.024300616,-0.01151997,-0.020909833,0.00084022427,0.010715746,0.03525546,-0.003665198,-0.004540064,-0.05781721,-0.05394824,0.009123599,0.022072699,-0.03253848,0.025843859,-0.016138827,0.020649003,0.0016030148,0.024257146,0.011596045,-0.02397458,-0.009748504,0.010661406,0.008390016,-0.012280723,0.013943511,0.04655807,0.0058904,-0.015899733,0.011900347,-0.0047873086,-0.007352132,0.02723495,0.0128132505,-0.008536733,0.005988211,-0.027408835,0.029886715,-0.013813097,-0.019105762,0.012019894,0.012009026,0.0047791577,0.012693703,0.009552881,0.0068956804,0.02836521,0.026278574,-0.027061062,-0.017236484,-0.024778804,-0.03492942,0.01508464,-0.031473428,-0.0050970437,-0.01622577,0.039276578,-0.012215516,-0.025256991,-0.03249501,0.025909066,0.006830473,0.0007926772,-0.005765419,0.004309121,0.0036135756,0.03306014,0.005501873,-0.021246739,-0.034646854,0.015714979,0.012802382,-0.019225309,0.009400731,0.006297946,0.019366592,0.013845701,0.006412059,0.0061729653,-0.0011329782,-0.014541246,-0.031082185,0.015888864,0.030343167,0.009906088,0.018573236,0.021214135,-0.04025469,-0.009710466,0.030147545,0.014280416,-0.0147368675,-0.016823504,0.049079422,-0.026322046,0.0039205938,0.027452307,0.01596494,-0.010118011,-0.012965401,0.02438756,0.0128675895,-0.027148006,-0.004015688,-0.004233046,-0.0041515366,-0.001891014,-0.006499002,-0.022279188,0.025213521,0.0024140317,-0.002261881,0.022670433,0.04077635,0.011291744,-0.010666841,0.026430724,0.028865134,-0.010520124,-0.00031924446,0.0066891904,0.013378381,-0.0073195286,-0.0347338,0.016443128,-0.009710466,0.016095355,0.02040991,0.02185534,0.025800386,-0.0041488195,-0.00022584847,0.015530224,0.036255304,0.013682682,-0.026387254,0.005287232,-0.0018950895,0.00091765804,0.03466859,0.016008412,-0.010378841,0.004007537,0.011791668,-0.02997366,-0.021094587,-0.01818199,-0.010672274,-0.014997697,0.007466245,-0.022279188,-0.03729862,-0.011889479,0.018377613,0.009292051,-0.006939152,-0.027973967,-0.032168973,0.027408835,-0.009672428,0.024148466,-0.039146163,0.029017285,0.014410831,-0.03451644,-0.027582722,0.013356645,0.012367667,0.008080281,0.032929726,0.0071076043,-0.015225924,0.032625426,0.039667822,-0.013356645,-0.02806091,0.0019276931,-0.01818199,0.041254535,0.0023556165,0.08220477,0.020018665,-0.008357412,0.012367667,0.026322046,-0.0024167486,-0.011617782,-0.012454609,0.0026463328,0.016062751,-0.007879225,-0.00503727,-0.014378227,0.017421238,-0.008775827,-0.0008062621,0.024278881,0.0054285144,0.0077977157,-0.003676066,0.0065968134,-0.03560323,0.003673349,-0.00075871503]},{"id":"interface-GatewayCallDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallDeleteDispatchData\nDescription: CALL_DELETE — call ended\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallDeleteDispatchData"},"embedding":[0.04881123,0.019927105,0.0024004134,-0.015753949,-0.025310365,0.012248045,-0.029404355,0.030671004,0.031394806,-0.007667751,0.036732826,-0.04903742,-0.012915297,-0.0043201786,0.031078143,-0.009686474,-0.029969824,0.058446813,0.005264511,0.053425454,-0.036619734,0.030331723,0.022064576,0.03419953,-0.00911535,-0.024450853,0.027934138,-0.014826581,0.013514695,-0.035036422,0.06853477,-0.026938913,0.057180163,-0.021861007,0.01216888,-0.001052478,0.0064067566,-0.026825821,-0.03058053,-0.0032429611,-0.0286127,0.0038960772,-0.014091472,0.021589583,-0.013740881,-0.009375466,-0.010834374,0.020967567,0.010353726,-0.021148518,-0.010608187,-0.03419953,0.014442063,0.076677516,0.00032443748,-0.00017290963,0.012937916,-0.008374587,0.0071814484,-0.0029828458,-0.03112338,-0.002250564,0.004241013,-0.014577775,-0.008255838,0.0019494522,-0.022777066,0.060211074,0.016183706,0.024021097,-0.022403857,-0.003828221,-0.07631561,0.015606928,-0.0142271845,-0.018366413,0.005092043,-0.0059996196,0.046255313,-0.03919827,0.016364655,0.009358502,-0.052158803,0.0006495818,0.025197271,-0.0042636315,-0.056003988,-0.018920572,0.0013019909,0.044943426,-0.05383259,0.019994963,-0.013345053,-0.0006315575,-0.015256337,-0.024880609,0.051435005,-0.018298557,-0.029766256,-0.0037716741,0.052113567,-0.044649385,-0.010438547,0.005315403,0.015991446,-0.02343301,-0.006101404,0.015618237,-0.022991944,-0.01932771,-0.015731331,-0.019214615,-0.030263867,0.005487871,-0.029042456,0.0034210838,0.039424457,-0.055732563,0.05993965,0.0078543555,-0.008566846,0.010534676,-0.01108318,-0.040917292,-0.034086432,-0.00007863545,0.0076620965,0.008838271,-0.041166097,-0.016421203,0.0125420885,0.014589084,-0.0010616669,-0.028363895,-0.0035511414,0.00946594,-0.04523747,-0.0031948963,-0.013345053,-0.04166371,0.019101523,-0.010387654,0.04700173,0.03184718,-0.0009796739,0.021476489,0.013605169,0.050123118,0.04012564,0.033543583,-0.009058803,0.045305327,0.041776802,-0.0036189978,0.0020328588,0.02397586,0.041188717,0.0056037917,-0.008674285,-0.02145387,0.018253319,-0.0432244,-0.020119365,0.022777066,-0.058944423,0.017405117,0.0047357976,-0.011467699,-0.040057782,0.009624272,0.01395576,-0.037049487,-0.04994217,0.009929624,-0.03648402,0.018151535,0.0027297987,-0.02879365,-0.017405117,-0.014792653,-0.0035030767,0.0026774928,-0.0017727434,-0.0593968,-0.047182683,-0.0005955089,0.002307111,0.023862766,0.0065028863,-0.009160588,-0.01592359,0.014430753,-0.0042636315,0.018796168,0.0020696144,0.0125533985,0.038904224,-0.041912515,-0.013152795,-0.025310365,0.034041196,-0.025785359,0.013989688,-0.0016059302,0.0014532538,-0.026893677,-0.019599134,-0.002113438,-0.012067095,-0.031259093,0.04912789,-0.018355103,0.0011005428,-0.0067686564,-0.049444556,0.01732595,0.0011832425,0.04222918,0.008838271,0.001207275,-0.0034691484,0.0055528996,0.02734605,-0.03128171,0.001843427,-0.011558174,0.0029319536,-0.0020144812,-0.032344792,-0.0033504001,-0.02020984,0.00397807,0.031394806,-0.032028127,-0.004580294,0.008662975,-0.014057544,0.016319418,0.019452112,0.014102781,-0.020526502,-0.017857492,-0.013526004,-0.008323695,-0.027255576,0.01966699,0.057858724,-0.034086432,-0.0037716741,0.006649908,0.010676043,0.065322906,0.036959015,-0.03686854,-0.019078903,-0.03435786,0.040397063,-0.023817528,0.03435786,0.009262372,0.0648253,-0.05347069,-0.035624508,0.06514196,-0.015765259,-0.013469457,0.04704697,0.011761743,-0.051796906,0.012756967,-0.004317351,-0.043608923,0.08522739,0.0028146189,-0.034470953,0.0064124116,0.032367412,0.00074783195,0.016783101,-0.030150775,-0.06297056,0.01771047,-0.01359386,0.05523495,-0.02146518,0.03596379,-0.045124378,0.042952977,0.034290005,0.03505904,-0.029359119,0.03953755,-0.029901968,-0.07902986,-0.00947725,0.054827813,0.026690107,0.013616479,0.01591228,0.0019056285,0.025604408,0.027956758,-0.038157806,-0.03485547,-0.0031722777,0.016737863,0.031078143,0.014713488,0.027549619,-0.03485547,-0.036009025,0.012361139,-0.00065240916,0.004585949,-0.012802204,-0.017088454,0.0070061535,0.03487809,-0.013164104,-0.0034012923,0.014351588,-0.004939366,-0.029834112,-0.03555665,-0.0020851647,0.01020105,-0.0144873,-0.012440304,0.025287746,0.050168354,0.014295041,-0.026577014,0.010794791,0.0087251775,0.065368146,0.05003264,-0.091832064,0.03275193,-0.018377723,0.014159328,0.054239728,-0.008606429,-0.011218892,0.008103162,0.044083916,-0.00071036967,0.012451614,0.0103989635,-0.010715626,0.033475727,-0.043405354,-0.022743138,0.0055444175,-0.02022115,0.0013210755,-0.0082671475,0.014385516,-0.033136446,-0.019972343,0.022550879,-0.031259093,0.0009351433,0.003497422,-0.031937655,-0.0055274535,-0.0069326423,-0.061025348,-0.034063816,0.0019310745,-0.03196027,0.012462923,-0.033362634,-0.058944423,0.0071079377,-0.013028392,-0.02022115,-0.029065074,-0.004399344,0.03091981,-0.029947206,0.038022093,0.012281973,-0.023274679,0.0048319274,0.019135451,0.054330204,-0.048765995,0.06505148,-0.037841145,-0.0030139466,0.027391288,-0.003901732,0.012270664,-0.0095733795,0.012315901,-0.010738244,0.03453881,0.023749672,0.013084939,-0.013967069,0.055687327,0.022980636,-0.02612464,-0.004017653,-0.0034748032,-0.00008186038,0.05405878,0.0029093348,0.063015796,-0.04279465,0.0655491,0.019972343,0.042432748,0.03076148,0.018456887,-0.06545862,-0.018626528,0.017586067,-0.0076790606,0.008453752,0.030693624,0.02273183,-0.0117051955,0.03842923,-0.03431262,-0.015052768,0.021419942,0.04186728,0.023862766,-0.0732847,-0.016726555,0.020843165,0.03775067,0.0065368144,0.034154292,0.025672264,-0.014057544,-0.010229323,-0.051389765,-0.010992706,-0.08789641,0.009810876,0.016375965,0.0064915773,-0.007639478,0.00074712513,0.01877355,-0.0068591316,0.031801943,0.02272052,-0.055777803,-0.003522868,-0.042726792,0.06392054,-0.051796906,-0.010099266,0.010133194,0.028703175,-0.019214615,-0.010794791,-0.032932878,-0.029811494,0.03469714,0.09916054,-0.03634831,0.039243504,-0.0056773024,0.0011790015,-0.015833115,0.05383259,-0.0032288244,-0.024043716,0.044400577,0.019463422,-0.012202808,-0.00090686994,0.004721661,0.004150538,0.016771792,-0.024269903,0.027052008,-0.009437667,-0.0015083869,0.002362244,0.024043716,0.0076451325,0.0074981106,-0.0042127394,-0.034629285,0.0318698,0.014917056,0.0013769155,0.028205562,-0.0100144455,-0.046413645,0.023297297,-0.0053380216,0.008957019,0.013367672,-0.007848701,0.00094503904,-0.035828076,0.062925324,-0.054827813,0.024202047,-0.0059147994,-0.01306232,-0.03485547,-0.026373446,-0.08215125,0.027142482,0.025807977,-0.0333174,-0.014521228,-0.054873053,0.015889661,-0.022810994,0.03467452,-0.035511415,0.016364655,-0.01788011,0.004860201,0.011524246,0.020616977,-0.0289746,-0.013005773,0.010534676,-0.070615694,-0.0014384103,0.012903988,0.057451587,-0.014046235,-0.0322317,0.04526009,0.036167357,0.012010548,0.018569982,0.030874575,0.0146569405,0.00055733975,0.0026393237,-0.0006414532,0.00021328761,0.011337641,-0.0008390137,-0.031010287,0.007741262,0.0078769745,0.018094989,0.00041773976,-0.014894437,-0.028454369,0.008595119,-0.015493833,0.0054143597,0.015980136,-0.03847447,-0.031055523,0.010585568,-0.0018830097,-0.0074811466,-0.039605405,0.004860201,-0.0360995,-0.003992207,0.039107792,-0.022155052,-0.005272993,0.0013521763,-0.0058525978,-0.002521989,0.021159828,-0.012248045,0.012440304,0.0360995,0.0038480123,-0.016319418,0.005572691,-0.00069057825,-0.05279213,-0.021352086,-0.05261118,0.009313264,0.036009025,-0.04078158,0.022449095,0.017823564,-0.011818289,-0.027753187,0.0011175069,0.00025410735,-0.020865783,-0.006418066,-0.003217515,-0.00886089,0.010557295,0.046775546,0.0016045165,0.011965311,0.02540084,0.010856993,0.033928104,-0.018728312,-0.017133692,0.03967326,0.029653162,-0.006282354,0.018547364,-0.00052482536,0.010659079,0.00966951,0.024224665,0.041166097,-0.011920073,0.0067516924,-0.038361374,-0.03379239,-0.014894437,-0.008855235,-0.0068082395,0.027775807,0.020956257,-0.01591228,-0.00795614,0.0013097661,0.018298557,-0.034448333,-0.045848176,0.007724298,-0.014724797,0.001430635,-0.00044565977,-0.015335502,-0.012078404,-0.0064406847,-0.018569982,0.0322317,-0.026373446,-0.029268643,-0.013333744,0.011818289,-0.03196027,0.010992706,0.016590843,0.017280715,-0.021736605,-0.028567463,0.0076112044,0.012146261,0.027413907,-0.027210338,-0.031507898,0.026237734,-0.008397206,0.03919827,-0.015335502,-0.047996957,0.054827813,-0.0134129105,0.010500748,-0.010936159,0.023342535,0.010642115,-0.0040402715,0.010936159,-0.0077299527,0.022584807,0.003257098,0.0022449095,-0.0068025845,-0.008793034,0.008634702,0.04347321,-0.0036331343,0.019802703,0.0031157308,-0.0012539262,-0.017959276,0.004846064,-0.002779277,-0.0013592446,0.002766554,-0.04098515,-0.0020526503,0.014385516,-0.02664487,0.055144478,0.0024371687,0.011394188,0.028703175,0.013152795,0.01804975,-0.008906127,0.014826581,0.00513728,0.03198289,0.022041958,0.029178169,-0.00038310484,-0.028386513,-0.02216636,-0.033023354,0.010557295,-0.023727054,-0.009601654,-0.0043456247,0.0039102137,0.00043682434,0.0015720021,0.003076148,-0.019395566,-0.0041053006,-0.05292784,-0.029223407,-0.0011655717,0.024563946,-0.04700173,0.009104041,0.0022024994,-0.025988927,0.012225427,0.02700677,0.004283423,-0.008561191,0.028590081,0.03772805,0.010376344,0.021340776,0.005035496,-0.022381239,-0.024088953,0.008962674,-0.00866863,0.0089344,-0.013627788,0.003059184,-0.0023792083,-0.0148492,0.025762739,0.0011782948,0.02501632,0.010749554,-0.0036076882,-0.04114348,-0.007356744,-0.009415048,0.014340278,-0.0022364275,0.0046170494,0.019214615,-0.013254579,0.005154244,-0.03867804,0.020820545,-0.011484663,0.015233718,-0.0033051628,-0.011303713,-0.008572501,0.019746156,-0.005289957,-0.014645631,0.007814773,0.03286502,-0.040148254,-0.0007139038,-0.040713724,-0.008391551,0.047092207,0.032141224,-0.029653162,-0.023500865,-0.022143742,0.027210338,0.009448976,-0.03076148,0.013435529,-0.042183943,-0.020492574,0.0047527617,0.025762739,-0.0031977238,0.004192948,-0.010800446,0.02700677,-0.014973603,-0.006864786,-0.029449593,-0.041799422,0.00616926,-0.006779966,0.024405615,-0.03376977,-0.025061559,0.020797927,-0.009488559,0.032819785,-0.08581548,0.038949464,0.035624508,0.027753187,0.004060063,0.003110076,0.017495591,0.030874575,-0.0021402978,-0.042998217,0.05772301,0.02343301,0.020175911,-0.0035539689,0.02057174,-0.01803844,0.027934138,0.016059302,0.0021530208,0.009075767,0.037094727,-0.005267338,-0.010353726,0.036235213,-0.008171018,-0.008086198,-0.0008736487,-0.005120316,0.03311383,-0.010438547,0.03519475,-0.010495094,-0.02127292,0.03399596,-0.007803464,-0.0021756396,-0.014385516,-0.008125781,-0.009358502,-0.020616977,0.021759223,-0.029924586,-0.0012694765,-0.00053295394,-0.046956494,0.009403739,0.0006054046,0.0074981106,-0.0010383413,0.0065707425,-0.042161323,-0.033543583,-0.001851909,-0.020775309,0.007803464,0.0021940174,0.0036020337,0.01591228,-0.0052956115,-0.030354343,0.04222918,0.05849205,0.00402048,-0.017235477,0.014283732,-0.061115824,-0.040917292,-0.004580294,0.040532775,-0.0005534522,0.007763881,0.037795905,0.020673525,0.037253056,0.024021097,0.0408042,-0.0076112044,0.0015069733,0.033385254,0.03922089,-0.017665232,0.019553896,-0.020696143,0.012089714,0.014328969,0.013559932,-0.039967306,0.016670007,-0.00023025165,-0.0046764235,-0.03218646,-0.012089714,-0.010958777,0.03422215,0.005787569,0.008521608,-0.032457884,-0.026396064,-0.016330726,0.007922212,0.023297297,0.003192069,-0.024993703,-0.022539569,0.000975433,-0.011648648,0.0061127134,0.03698163,-0.011818289,0.037614956,0.0024541328,0.02146518,-0.012021858,0.0051231436,-0.021386014,-0.037139963,0.03845185,-0.013186723,-0.011473354,-0.024948465,-0.03397334,0.010161467,0.01754083,0.027052008,-0.021080662,0.055868275,-0.0068421676,-0.03184718,-0.009109695,0.024450853,-0.0422518,-0.01180698,-0.033837628,0.030060299,0.015584309,0.022494333,-0.005530281,0.044400577,-0.024699658,-0.0022844924,-0.010449856,0.013706953,-0.024405615,-0.023297297,-0.00028026025,-0.0393566,-0.0075376937,-0.009771294,-0.0040911636,0.0063219364,-0.003019601,-0.0020427546,-0.016172396,-0.044445816,0.0008785965,0.04143752,-0.035375703,0.021713985,0.015471215,0.023127656,-0.000577838,0.047725532,0.001383277,0.025762739,-0.015652165,-0.008708213,-0.016522987,0.032503124,-0.02379491,0.01027456,-0.013345053,0.027798425,0.006242771,-0.018355103,-0.022844922,0.030784098,-0.0005018532,-0.0066951457,0.018400341,-0.007418945,-0.015855733,0.01197662,-0.0116825765,0.012903988,0.037501864,0.014566465,0.0230598,0.012576017,0.01699798,-0.011037943,0.0075772763,0.054827813,0.015753949,-0.0010659079,0.017427735,-0.02163482,0.0026195322,0.018717004,-0.033226922,0.0034606664,-0.0032797167,0.036936395,-0.0033136448,-0.0007676233,0.06559433,-0.013096248,0.0064915773,0.01430635,-0.0116938865,0.011671267,0.034267385,-0.0067347283,-0.020096747,-0.017665232,-0.03576022,0.015821805,-0.017280715,0.00045696914,-0.0091549335,-0.023500865,-0.009946588,-0.013073629,0.005386086,0.05763254,0.011942692,-0.021691367,-0.03879113,-0.0049337116,-0.040148254,-0.0015734158,0.01876224,-0.038316138,-0.018717004,-0.03702687,0.0070513906,0.0054143597,0.0007075423,0.019689608,0.008261493,0.058446813,-0.0047273156,-0.001972071,0.0017416426,-0.0056490293,0.043156546,-0.017212858,-0.016025374,0.041030385,-0.004232531,0.021680057,-0.00991266,-0.009109695,-0.0005131626,0.018106299,0.019293781,0.019191997,0.0029376082,-0.002775036,0.020164603,0.008872199,0.012078404,-0.018321175,-0.018581292,-0.017031908,0.010455511,0.0108513385,-0.039492313,0.011230202,-0.015425977,-0.023478247,0.07988937,0.025649646,0.0044360994,-0.002585604,-0.005538763,0.003002637,0.014351588,0.03786376,-0.008691249,-0.010404618,0.019621752,-0.016059302,0.016522987,-0.019474732,0.0056942664,-0.026757963,-0.02684844,0.0022604598,-0.0004325833,-0.046594594,0.039582785,0.026893677,-0.008889163,0.0025375395,0.02540084,-0.015799187,0.0076620965,0.00035377115,0.019881869,-0.028115088,0.0025672265,0.017303333,-0.00877607,0.004846064,0.005567036,0.018897953,0.02433776,0.030105537,0.0078769745,0.037999474,-0.015674783,-0.021691367,0.026147258,0.03756972,0.019621752,0.031010287,-0.034109052,-0.03166623,0.0061918786,-0.0014214461,-0.0051401076,-0.0071644844,0.028680556,-0.037931617,-0.021012805,-0.008216255,0.029313881,0.0041166097,0.042183943,-0.007650787,0.027323432,-0.04114348,0.017574757,0.008572501,0.04994217,0.041799422,-0.033882864,0.012281973,-0.023410391,-0.0045661572,-0.060708687,-0.0061409865,-0.019044975,-0.00009047494,0.013695644,-0.019124141,0.006599016,-0.0018717004,0.007616859,-0.007170139,0.05772301,-0.00036296,0.011999239,0.02540084,-0.015765259,0.012609945,-0.003364537,0.028341275,-0.038610183,0.017088454,-0.028906744,0.03876851,-0.008979638,-0.019282471,0.00697788,0.02094495,0.0021106107,-0.0020583048,0.015177172,-0.02397586,0.023636578,0.011405497,-0.008657321,-0.039763737,-0.0072832326,-0.017800944,0.03723044,0.013673025,-0.020334244,0.037909,0.017993204,0.0035681054,-0.022562189,-0.013526004,-0.03723044,0.00946594,0.031553134,-0.029585306,-0.015821805,-0.028725794,-0.02287885,-0.021713985,-0.005193827,-0.0010878198,0.0007110765,0.0035737602,-0.029947206,-0.03632569,-0.011524246,-0.005086388,0.021137208,-0.009386775,0.007153175,-0.04686602,-0.028228182,-0.022765758,-0.010082302,-0.010404618,-0.002401827,0.005117489,-0.043518446,-0.0076847156,0.008380242,0.008182327,0.029585306,0.017461663,-0.002719903,-0.015064077,0.01717893,0.021974102,-0.013254579,-0.012248045,-0.0032373066,0.009013566,-0.046210077,0.0021855354,0.012089714,-0.042093467,0.0056377198,0.03539832,0.016692627,0.01056295,0.018626528,0.019474732,-0.045644607,0.037049487,-0.0166587,0.0151093155,-0.012677801,-0.05224928,0.034086432,-0.011552519,-0.05166119,-0.018965809,0.020583048,0.025129415,0.012225427,0.0006856304,-0.038497087,0.0025997409,0.036778063,0.028838888,0.00040183598,0.009878732,0.0008821307,-0.028703175,-0.028205562,0.0019791394,-0.012327211,0.00697788,-0.024790134,-0.03756972,-0.0034352203,0.021872317,0.017608685,-0.0060505117,0.017020598,-0.04614222,-0.052837364,0.013311125,0.021725295,0.018920572,0.00038769926,-0.03865542,0.022652663,0.003613343,0.030851955,0.021374704,0.020775309,0.013548623,-0.030263867,-0.00590349,0.02863532,-0.011495972,-0.00035642178,0.019587824,-0.030829336,-0.002212395,0.008250183,0.018355103,0.00037320913,-0.0072493046,-0.017224167,0.0071135922,-0.0064237206,0.053651642,0.022856232,-0.0010270319,0.028748412,-0.03286502,-0.0051825177,-0.034629285,-0.041573234,0.0059430725,0.007639478,-0.023319917,0.03200551,0.010472475,-0.007990068,-0.023681816,-0.0032288244,-0.02181577,-0.016839648,-0.014984912,-0.003101594,-0.0032457886,-0.024066335,-0.005417187,-0.018875334,0.013537313,-0.031598374,-0.0020074127,0.010461165,0.035330463,0.027255576,-0.014012307,0.0066216346,-0.031575754,-0.04010302,-0.019553896,-0.0023636578,-0.024903229,0.01020105,0.01933902,-0.02054912,0.06672527,-0.04523747,-0.011863527,-0.031078143,-0.015448596,0.029924586,0.03306859,0.004540711,0.0060787853,-0.035330463,-0.0134129105,-0.00017856431,0.051887378,-0.012711729,0.05148024,-0.010896576,0.027572239,-0.011071871,0.022505641,0.01949735,-0.024631802,-0.029607924,0.007978759,0.00625408,-0.009194516,0.00230287,0.039831594,0.022064576,0.003373019,0.0064463397,0.010150158,0.013559932,0.016703935,-0.01861522,0.0029630542,-0.003033738,-0.021940174,0.012406376,-0.019712228,-0.005448288,-0.0037264368,0.023150276,-0.007373708,0.035873313,-0.008866544,0.015335502,0.021091972,-0.000077265955,-0.07029903,-0.0074132904,-0.019361638,-0.0070513906,-0.0031157308,-0.031507898,-0.011309368,0.020537812,0.013492076,-0.0066725267,-0.018343795,-0.02057174,0.0075376937,-0.0041335737,0.0022265317,-0.018683076,0.0035002492,0.01144508,0.01769916,0.039062556,-0.046413645,-0.008872199,0.0032627527,0.002543194,-0.04435534,0.02863532,-0.009352847,-0.0066442536,0.015358121,-0.0011563828,0.0030704932,-0.0048064813,-0.0015974481,-0.0364614,0.0052107912,0.019158069,0.009793912,-0.0037716741,0.0011160932,-0.05736111,0.011405497,0.021012805,0.034968566,-0.012101023,-0.0022180497,0.053923067,-0.01965568,0.039447073,0.032797165,0.0091492785,-0.010557295,-0.00849899,0.02664487,-0.017461663,-0.045893416,0.0046849055,0.003291026,0.0023056974,0.0030902848,0.0058639073,-0.0027849318,0.013492076,0.005592482,-0.0125420885,0.000039052662,0.04222918,0.005128798,-0.011495972,-0.0025149207,0.013480767,-0.013118867,0.0013493489,-0.024631802,-0.0022844924,-0.020888401,-0.0010934744,0.037094727,-0.0037518828,0.02574012,0.004755589,0.032141224,0.00903053,0.017280715,0.03607688,-0.004003516,0.018377723,-0.01716762,-0.022618735,0.020028891,-0.032503124,-0.011954002,0.047273155,0.008657321,-0.034063816,0.012361139,0.024202047,0.005555727,-0.02967578,-0.008385896,-0.029969824,-0.016364655,-0.004249495,-0.01715631,-0.015663475,-0.014803962,0.027934138,0.021340776,-0.045079138,-0.047137443,-0.007910903,-0.0022406685,-0.013797428,0.028748412,-0.032050747,0.04148276,0.003067666,-0.05292784,-0.022867542,0.001207275,0.0015903799,-0.013910523,0.032593597,0.01627418,0.0016342036,0.01431766,0.056773026,-0.009409394,-0.018864024,-0.026554395,0.017597375,0.015855733,-0.0050128773,0.049444556,0.014215875,0.008227565,-0.007995723,0.037501864,0.00063014386,-0.02345563,-0.008838271,0.032254316,0.008555537,-0.004308869,0.0058017056,-0.010738244,-0.00012510987,0.008069234,0.02987935,0.011473354,0.01788011,-0.023817528,-0.008662975,-0.0022519778,-0.00724365,-0.001224239,0.017314643]},{"id":"interface-GatewayCallUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallUpdateDispatchData\nDescription: CALL_UPDATE — call updated\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallUpdateDispatchData"},"embedding":[0.026839886,-0.01630366,-0.00350366,0.0007321499,-0.00619382,0.013756564,0.0074224854,0.001409599,0.012533508,-0.012511067,0.02266579,-0.010463292,-0.026480824,0.004852948,0.0084547885,-0.023585886,-0.02135297,0.029891914,-0.004603287,0.04744107,-0.082045674,-0.004709884,0.036467236,0.039362174,0.0038234494,-0.013835109,-0.00277151,0.017403288,-0.000059040107,-0.018076528,0.06772807,-0.01714521,0.05574438,-0.015215253,-0.00007801885,0.015742626,-0.01662906,-0.010985054,-0.02414692,-0.030206092,-0.0065921545,0.009997633,-0.012028578,-0.008538944,-0.04744107,-0.011024326,-0.021958888,0.009689064,0.008000351,0.009144861,-0.024169363,-0.02214964,-0.0024713567,0.021027569,0.040192503,-0.003147403,0.03372939,-0.027602892,-0.0003513478,-0.0061321063,-0.023698093,-0.015035722,-0.014609336,-0.04028227,0.012713039,-0.0030604426,-0.049954504,0.03633259,0.044635896,-0.016180232,-0.009279509,0.035008546,-0.036803856,0.0031726495,-0.007949858,0.033684507,-0.031373043,-0.016000701,0.058796406,0.015103046,0.005088582,0.0010519396,-0.07414631,-0.01548455,0.024326451,0.0034615824,-0.040574007,-0.03958659,-0.0009327197,0.04156143,-0.029622616,0.050268684,-0.042997677,0.013633136,-0.024259128,-0.024573307,0.06813202,-0.011613412,-0.026278852,0.010861626,0.051749814,-0.052602585,-0.018962963,-0.04429928,0.016494412,-0.044725664,0.005282139,0.005531799,-0.0339538,-0.002073022,-0.03990077,-0.027737541,-0.034514837,0.013105764,0.0014797283,-0.03543493,0.062387027,-0.04106772,0.029555293,-0.022396494,-0.028276134,-0.009627351,0.0065079993,-0.014586895,-0.0115685295,-0.015630418,0.017021785,-0.0010589524,-0.09344589,-0.011826606,0.02526899,0.008578216,0.01238764,0.008292088,-0.003472803,-0.0028149902,-0.014239053,0.0342231,-0.031013982,-0.041022837,0.011316064,-0.026189087,0.009812492,0.030856892,0.0026031996,0.003374622,0.0043452117,0.026323734,0.046094585,0.029981678,-0.060546834,0.06579812,0.005150296,0.00024264738,0.0059245233,0.01239886,0.005158711,-0.015529432,-0.010424019,-0.0020505807,0.01582117,-0.05888617,-0.026682796,0.026637914,-0.060546834,-0.004844532,0.006294806,-0.010379137,-0.060412183,0.0070970855,0.046049703,-0.054756958,-0.046678063,0.022418935,-0.00765812,0.01727986,-0.0018794653,-0.024169363,-0.058168046,0.011871488,0.033998687,0.021061232,-0.024528425,-0.05655227,-0.021723252,0.005234451,-0.01938935,0.034716807,0.010345475,-0.015248915,-0.01467666,0.016382204,0.04104528,0.04551111,-0.024326451,-0.016404646,0.030093886,-0.024663072,0.017650142,-0.018682446,0.015372342,-0.07293447,0.014990839,-0.020455314,0.006945606,-0.0016269998,-0.009885427,-0.004291913,-0.027917072,-0.012477405,0.031889196,-0.013386281,-0.00031470525,0.032382905,-0.056193206,0.008437958,-0.00399737,0.010749419,-0.026593031,-0.018054087,0.0017504273,0.0034671926,0.057853866,-0.02948797,-0.012006137,0.028006837,-0.0056692525,0.0067380234,-0.017650142,0.020500198,0.0070690336,-0.011501205,0.029532852,-0.04043936,-0.012432522,-0.0026312515,-0.012477405,0.0018247644,0.017257418,0.04075354,-0.008510892,-0.005512163,-0.037723955,-0.0026102127,-0.02479772,0.0205563,0.043065,-0.056686915,-0.01711155,0.02526899,-0.0018219593,0.043805566,0.021083673,-0.032360464,-0.014474688,-0.016572956,0.07158799,0.005444839,0.046498533,0.0322707,0.04977497,-0.04400754,-0.029241113,0.0404618,-0.046274118,-0.039047994,0.043760683,0.038195223,-0.03994565,-0.02135297,0.009756388,-0.00071812404,0.04093307,0.019030288,-0.018940521,-0.004925882,0.01582117,0.025022134,0.024259128,-0.0022230989,-0.05246794,-0.005773044,-0.025470963,0.0577641,-0.021891562,0.022486258,-0.045555994,0.03543493,0.04717177,-0.00880824,-0.03574911,0.023294149,-0.036512118,-0.058616877,-0.0054392284,0.08191102,0.019580102,-0.018693667,0.020657286,0.009896647,0.0048866095,0.015899716,-0.045398906,-0.015697742,0.019883059,0.02331659,0.045219373,-0.009234627,0.01842437,-0.02870252,-0.012993556,0.024505982,0.010362306,-0.0004102564,-0.026121762,-0.009240237,0.023249267,0.031530134,-0.008348192,0.026031997,0.010861626,0.005259698,-0.031597458,-0.019725969,-0.007871313,-0.031687222,-0.024393776,-0.012858909,0.011489985,0.036916062,0.023204383,-0.048787553,0.037679072,-0.0034924392,0.06404769,0.06642647,-0.09088758,0.033819154,-0.016696384,-0.0051727374,0.018480474,-0.036601886,0.0020239316,-0.035120755,0.02657059,-0.01974841,-0.0059301336,0.0322707,-0.018794652,0.056148324,0.01060916,-0.008982161,0.018682446,-0.018940521,-0.03835231,-0.025358755,-0.001965023,-0.030789569,-0.022273066,0.016393425,-0.03799325,0.01596704,0.014945957,0.006648258,-0.011383388,0.005742187,-0.023249267,0.0030239755,-0.015866052,0.0019397765,-0.0119836945,-0.04726154,-0.035277843,0.015765067,-0.003930046,-0.024281569,-0.010906509,-0.0064182337,-0.019333245,-0.021094894,0.022643348,0.050493095,-0.009083147,0.0068726717,0.03294394,0.052423056,-0.052871883,0.019523997,-0.024034714,-0.010093009,0.0063340785,0.005413982,-0.02087048,-0.011512426,-0.028186368,0.01010423,0.045039844,0.02690721,0.034155775,-0.0018107386,0.06292562,0.029420644,-0.014788867,0.00010650887,-0.006552882,0.024573307,0.036489677,0.0061769886,0.070690334,0.0045359633,0.04905685,-0.009649792,0.027692659,0.019209819,0.024707954,-0.039339732,-0.010620382,0.01776235,-0.012735481,0.038240105,0.041785844,0.00961613,0.020511419,0.035771552,-0.01354337,-0.034716807,0.01890686,0.026817445,0.015069384,-0.04515205,-0.015854832,0.04517449,0.04223467,0.021914003,0.053230945,-0.0057786545,0.0029566514,-0.016258778,-0.0011157572,0.0032848564,-0.08630953,0.010171554,-0.00750664,0.01157975,-0.019366907,0.040327154,-0.007781547,-0.010906509,0.014396143,0.01597826,-0.06431699,0.02495481,-0.036085732,0.08056454,-0.049146615,0.000042669297,-0.009442209,0.028522989,-0.017582819,-0.016842254,-0.029443085,-0.024752839,0.0030548323,0.06781784,0.0030660531,0.026548149,-0.016157791,0.02136419,-0.037656628,0.019322025,0.025022134,-0.02300241,0.007944247,0.027647775,-0.014037081,-0.013161867,-0.015765067,-0.024034714,0.008841902,0.017986763,-0.017717466,-0.001802323,0.015877273,0.023989832,0.069702916,0.0251119,0.00651922,-0.0037308787,0.005282139,-0.01109165,-0.017335963,0.0020267367,0.03729757,-0.009868595,-0.0015933377,0.0076525095,-0.039564148,0.000643787,0.0045443787,-0.0037757615,-0.055564847,-0.0053438526,0.04221223,-0.008886785,0.047889896,0.023922507,0.0025625248,-0.012511067,-0.018861977,-0.05399395,0.010177164,0.012589612,-0.0092682885,-0.027423361,-0.03978856,-0.0050128424,0.004709884,0.005214815,-0.015125488,0.04717177,-0.018334605,0.005840368,0.019187376,0.017975543,-0.0077703265,-0.02363077,0.032988824,-0.08025036,-0.0026999782,0.0021179048,0.047037125,-0.044411484,-0.029443085,0.037611745,0.017268639,-0.0029117686,0.003944072,-0.007450537,0.029106464,0.028747402,-0.016494412,0.0034699978,-0.018244838,0.029218672,0.011394609,-0.027423361,0.01515915,0.026346175,0.015798729,-0.011377778,0.021936445,-0.039451938,-0.004176901,0.0108728465,-0.0020253342,0.0070690336,0.0056664473,-0.02268823,0.012365199,-0.017829673,0.028724961,-0.03947438,0.003049222,-0.035928644,-0.0030071444,0.03523296,-0.019490335,-0.03361718,0.0037392944,-0.0039384617,-0.028747402,0.049011964,0.004527548,-0.0029959236,0.05040333,0.022733115,0.0049679596,0.024348894,0.03408845,-0.023451239,0.0132740745,-0.08720719,0.023406355,0.025426079,-0.04093307,0.045757968,0.025987113,-0.021914003,-0.017582819,0.03898067,-0.010076178,0.008095726,0.0014180144,0.005464475,-0.012219329,0.0048501426,-0.00045934692,0.00006149463,0.013217971,0.043917775,-0.016572956,0.03586132,-0.01288135,-0.016651502,0.028321017,0.05493649,-0.021914003,0.037881043,-0.016718825,0.0015077799,-0.00079456496,0.011276792,0.04569064,-0.009694675,0.011759281,-0.018177515,-0.012746702,0.0023872014,0.0063060266,-0.006597765,0.020455314,0.022059873,-0.015933378,0.004143239,-0.0025218497,0.036399912,-0.010412798,-0.0339538,0.012443743,-0.04367092,-0.0018584265,-0.03491878,-0.031552576,-0.013128205,-0.031844314,-0.017066667,0.032338023,-0.045017403,-0.0042273942,-0.002757484,0.028612755,-0.006272365,-0.011703177,0.014104405,0.049999386,-0.029577734,0.006777296,-0.0053522685,0.02121832,0.035143197,-0.035030987,-0.07432584,0.009834933,0.018289723,0.038935788,-0.023855183,-0.04142678,0.059604295,-0.015271356,0.00027350427,-0.035771552,-0.0032680253,0.014654219,0.013913653,0.0011431077,0.0018009205,0.0012882752,-0.00847723,0.012219329,0.0156753,-0.023204383,0.005935744,0.05278212,0.0054392284,0.029465526,0.009874205,0.012219329,-0.012511067,-0.018065307,0.033998687,0.012275433,0.0073271096,-0.052916765,-0.027917072,0.020017708,-0.016898356,0.052108876,0.0012490029,0.015776288,0.022497479,-0.005941354,0.027333597,0.0057954853,-0.008090116,0.010317422,0.009189744,0.056148324,-0.020343108,-0.0073495507,0.0014074951,0.0049483236,0.005691694,0.00028998466,-0.025224106,-0.007860092,0.005590708,-0.001189393,-0.010676485,0.010698926,0.008791409,0.0074729784,0.0012034188,-0.029263554,-0.005057725,0.02136419,0.006749244,-0.05071751,0.03635503,0.022901425,0.020780714,0.034200657,0.041763403,-0.019131273,0.00009362261,0.033482533,0.0067268023,-0.021813018,0.04187561,-0.025044575,-0.024169363,-0.023181941,0.029061582,-0.013509708,0.0012223537,-0.018974183,-0.0014187158,-0.01466544,-0.0006353715,0.009195354,0.01662906,0.005587903,0.00033995177,-0.020017708,-0.011175806,0.038599167,-0.012286654,0.017313521,-0.010541837,-0.024865044,0.036467236,-0.02071339,0.005001622,-0.03375183,0.014564454,0.0025807582,0.01711155,-0.0035765944,0.0011346921,0.0058964714,0.026301293,-0.009694675,-0.02070217,0.023271708,0.027535569,-0.054397896,-0.0036214772,-0.0374771,-0.013655578,0.027198948,0.037387334,-0.049505677,-0.013128205,-0.012589612,0.0046173134,0.0042358097,-0.009801271,0.0054476443,-0.056776684,-0.001143809,-0.016213894,0.0008913434,-0.010025685,0.0084940605,-0.00961613,0.028612755,0.015607977,-0.001460092,-0.046319,-0.044276837,-0.0016312075,0.007944247,0.017840894,-0.028994258,-0.0032315583,0.0053522685,0.0037757615,0.04187561,-0.07401166,0.047306422,0.039205085,0.016988121,0.02820881,-0.041179925,0.0075571337,0.028119044,0.01759404,-0.05035845,0.029914355,0.009790051,0.0025120315,-0.007130747,0.01679737,0.010149112,0.01614657,-0.009498312,0.012028578,0.005444839,0.022935087,-0.002628446,-0.017986763,0.04744107,-0.019501556,-0.015563094,0.011243129,-0.02136419,0.041471664,-0.017335963,0.039249968,-0.01711155,-0.00087100593,0.016045583,0.002324085,0.007046592,-0.018873198,0.026323734,-0.019658646,-0.0140258605,0.019782074,-0.020960245,0.00440412,0.013621915,-0.011360947,0.015305019,-0.023900066,0.021117335,-0.01027815,0.013633136,-0.03002656,-0.016707605,-0.0011031339,-0.008847512,0.00019250493,-0.01679737,-0.021779357,0.024528425,0.013139426,-0.037252683,0.03929485,0.04748595,0.007400044,-0.0034615824,0.022194522,-0.02526899,-0.029443085,0.021622267,0.031530134,0.018502915,-0.008976551,0.036938507,-0.00913364,0.02560561,-0.0040394478,0.051794697,-0.041157484,-0.004956739,0.017470611,0.047530834,0.025022134,0.014182949,0.011338505,0.034312863,0.020320667,0.00014770984,-0.022385273,-0.004075915,0.020264562,0.004482665,-0.034986105,-0.022867762,-0.010564278,0.03754442,0.00051755423,0.011725619,-0.012477405,-0.022385273,-0.047620602,0.011792943,0.009217795,-0.009257068,0.018312164,-0.037050713,-0.016988121,-0.0075683543,0.0061208853,0.016112909,0.006782906,0.040529124,0.005686084,0.044276837,-0.015877273,0.0049455184,-0.050268684,-0.019591322,0.03390892,-0.000006843086,0.017885776,-0.02069095,0.012376419,0.000061889106,0.023069736,-0.003913215,-0.02232917,0.04726154,0.012264213,-0.031260837,-0.010356695,-0.002415253,0.0043648477,-0.01354337,-0.03734245,0.023787858,0.0031782598,0.009857374,-0.0061825993,0.027041858,-0.026211528,-0.0212071,0.002096866,0.0077254437,-0.020275783,-0.020601183,0.030071445,0.0016312075,-0.019523997,-0.0342231,0.023900066,0.0069904886,0.014070743,-0.05866176,-0.023137059,-0.012814025,0.014844971,0.016247556,-0.06095078,0.04140434,0.028141486,0.019322025,-0.0016690773,0.05008915,-0.014328819,0.020298224,-0.045623317,-0.039743677,0.002314267,0.009262678,-0.028051721,0.004521937,-0.0044125356,0.04483787,-0.009913478,-0.014732763,-0.020197239,0.039407056,0.008701644,-0.012735481,0.040798422,-0.022486258,-0.018323384,0.006541661,0.019490335,-0.018188735,0.040641334,-0.000049879465,0.03550226,0.011170195,0.01255595,-0.0076468987,-0.016011922,0.052827,0.023742976,0.019097611,0.009369275,-0.022396494,0.0045864563,0.0231595,-0.0076076267,-0.009414157,0.00006662284,0.021184659,-0.007904975,0.0023675652,0.027378479,0.030049004,-0.017964322,-0.018009204,0.009419768,0.014048302,0.026772562,0.0011957046,-0.014441025,-0.000056278765,-0.06045707,0.005360684,-0.029532852,-0.028994258,-0.0077366643,-0.038397197,0.0040815254,-0.010884067,-0.010777471,0.061983082,0.010547447,-0.012163226,-0.032741968,0.012331536,-0.036938507,-0.008499672,-0.0020169187,-0.010379137,-0.020275783,-0.010912119,-0.002211878,0.00896533,0.008460399,0.010670874,0.00061854045,0.06126496,0.0063677407,0.0148786325,-0.0065641026,-0.012858909,0.023720535,0.023608329,-0.00472391,0.04389533,-0.0025695376,0.027423361,-0.0054532546,-0.0016578566,0.0012700417,0.00765812,0.022957528,0.030901775,-0.016786149,0.020275783,0.01042963,0.0048417267,0.0088923955,0.0030856892,-0.020836817,-0.023024851,-0.013128205,-0.010008854,-0.01223055,0.004569625,0.01370046,0.010306202,0.03606329,0.050627746,0.008785799,-0.0032147272,-0.0013941705,0.0071700197,-0.015641639,0.047351304,0.003537322,0.027759982,-0.0077366643,-0.0044265613,-0.009341223,-0.016898356,-0.009790051,-0.044703223,-0.0066314265,0.016999343,-0.018357046,-0.016774928,0.033011265,0.05888617,-0.0062835854,-0.011927592,0.027356038,0.0041628755,-0.018110191,0.007158799,0.01501328,-0.033303004,0.015776288,0.019523997,-0.008763357,0.007209292,-0.008202323,0.016842254,0.004120798,-0.0073271096,0.010250099,0.0003867631,-0.02477528,-0.043513827,0.017661363,0.027961954,0.020511419,0.036938507,-0.025426079,-0.03361718,0.02935332,-0.0011830813,0.016550515,0.008034012,0.01598948,-0.03868893,-0.017627701,-0.004140434,0.014239053,0.006423844,0.03065492,-0.0013745343,0.03312347,-0.008062065,0.019995267,-0.003133377,0.010064958,0.04578041,-0.0021936446,0.037611745,-0.005282139,-0.006446285,-0.050493095,-0.007865703,-0.03541249,0.009105588,0.0046706116,-0.021229543,0.005902082,0.0074898093,0.014979619,-0.0072990577,0.06000824,0.005688889,0.025022134,0.021723252,-0.009806882,0.008886785,-0.011316064,0.009604909,-0.041449223,-0.025313873,-0.0057842648,0.042279553,-0.015226474,-0.0011697568,-0.0021908393,-0.011523646,0.017178874,-0.0038122288,0.009498312,-0.03653456,0.021476397,0.010300592,-0.007635678,-0.020589963,-0.009992023,-0.018559018,0.04075354,-0.02591979,-0.0049006357,0.04400754,0.029779706,0.003927241,-0.0019566074,-0.02183546,-0.04535402,-0.0045724306,0.018458031,-0.008163051,-0.012252991,-0.019378128,-0.00048599605,-0.034155775,-0.023675652,-0.011658295,-0.017840894,0.0047996496,0.00076090294,-0.027131625,-0.029824588,-0.008825071,0.028635196,-0.0413819,0.021745693,-0.036310147,-0.011546088,-0.019927941,-0.012174447,0.0010617576,-0.024550866,-0.011316064,-0.035793994,-0.010468902,-0.007467368,-0.00195801,0.025381196,0.0027967566,0.01809897,-0.017874556,-0.004751961,0.022789218,-0.0034671926,-0.008847512,-0.00027613412,0.014272715,-0.016213894,-0.011265571,-0.0030632478,-0.037903484,-0.0026649134,0.03018365,0.026211528,0.012567171,0.008387464,0.02052264,-0.052647468,0.034133334,-0.0058123167,0.012309095,-0.020769494,-0.030834451,0.034851458,-0.0023170721,-0.02508946,-0.00078334427,0.022564804,0.011826606,-0.0063004163,-0.01907517,-0.018188735,-0.002554109,0.022194522,0.010390357,0.01076064,-0.0025428885,0.03130572,-0.0374771,0.0042834976,-0.01940057,0.006878282,-0.0027238221,-0.032338023,-0.04023739,-0.0041123824,0.002730835,0.0020183213,-0.010154723,-0.0034812186,-0.05462231,-0.040012974,0.018873198,-0.00896533,0.008247206,-0.0155518735,-0.0067885164,-0.003913215,-0.011461933,0.032741968,0.008993382,0.011534868,0.012937454,-0.034694366,-0.01109165,0.04014762,-0.019299584,0.029375762,0.016427087,-0.030250976,-0.008791409,0.012454964,0.019602543,0.005761823,-0.0013387684,-0.000020271751,0.014104405,-0.01109165,0.04977497,-0.0020421653,-0.010659654,0.03684874,-0.039047994,0.023204383,-0.03361718,-0.04860802,-0.025717817,0.025246548,-0.0199055,0.002161385,-0.018974183,0.006895113,0.013958536,-0.024371335,-0.027311156,-0.028500548,-0.011602191,-0.008982161,-0.00090817444,-0.014418584,-0.025830025,-0.012129564,0.008174271,-0.018996624,-0.0148786325,0.007893754,0.021644708,0.025426079,-0.02347368,-0.025964672,-0.024752839,-0.029420644,-0.011512426,-0.015338681,-0.00750103,0.0012903791,0.05771922,-0.011759281,0.047845013,-0.015753847,-0.01370046,-0.002161385,-0.02363077,0.0316199,0.0074785887,0.004451808,0.010165944,-0.026593031,-0.04923638,-0.00945904,0.023294149,-0.03049783,0.038397197,-0.022856541,0.04077598,-0.0155518735,0.012589612,0.018648785,-0.02951041,-0.0070970855,0.0119836945,0.0031221565,0.0005571773,-0.0008541749,0.026839886,0.011523646,-0.0031866755,0.008443568,0.021745693,0.0015442471,0.025897348,0.010564278,0.0023114618,0.0044770543,-0.03278685,0.022643348,-0.046678063,-0.012286654,0.0270643,0.01907517,0.0017911023,0.017425729,-0.01010423,0.010844795,0.0130945435,-0.004903441,-0.047665484,-0.02639106,6.547228e-7,-0.019097611,0.025381196,-0.03307859,0.0025148368,-0.016606618,0.014295157,-0.026548149,-0.020331888,-0.013588253,0.03458216,0.0101996055,0.007388823,-0.0056692525,-0.007450537,-0.0023521367,0.028635196,0.011489985,-0.046094585,-0.055564847,0.017953102,0.043491386,-0.0011255753,-0.0064126235,0.018693667,0.03669165,0.014979619,0.010053736,0.0053382423,0.00913364,0.015282577,-0.035030987,-0.00087030465,-0.0023577472,0.015080605,0.009240237,0.0048838044,-0.049326144,0.0025064212,0.021094894,0.032854173,-0.011254351,-0.020455314,0.058796406,0.0099022575,0.017672583,0.028006837,0.025740258,-0.02363077,0.008623099,0.0067380234,-0.0221833,-0.015854832,-0.006878282,0.010743809,0.00075459125,0.025672935,-0.0000038817666,-0.023092177,-0.003211922,0.009963971,-0.015574316,0.016090468,0.0231595,0.017627701,-0.043783125,0.011893929,0.030049004,-0.017818453,-0.003918825,0.0068670614,0.0052260356,0.011927592,-0.012219329,0.021308087,-0.004291913,0.02623397,0.023810301,0.024393776,0.00075809774,0.01907517,-0.00424142,0.02007381,0.034469955,0.0023016436,0.000018288407,0.009313171,-0.018491695,-0.032046285,0.04990962,0.010564278,-0.011523646,0.023787858,0.023496121,-0.0030912997,-0.014777646,-0.0008001753,-0.012219329,-0.025695376,0.011450713,-0.019591322,-0.03866649,0.007921806,0.02609932,-0.006272365,-0.0355247,-0.037589304,-0.0309691,-0.007742275,-0.005576682,0.029600175,-0.033325445,0.01319553,0.017403288,-0.031732105,-0.020298224,0.0024853824,-0.0007966689,0.00028384835,0.037454657,0.011215078,0.0015807145,0.02917379,0.032517556,-0.033190794,-0.025067016,-0.020410432,-0.015361122,0.021756914,0.00865115,0.07921806,0.009874205,-0.0096441815,0.02508946,0.025224106,0.005660837,-0.0012784571,-0.010233267,0.024550866,0.03978856,-0.004143239,0.0056355908,-0.018536577,0.009430989,-0.011871488,0.009324392,0.017493052,-0.0062555335,0.017414508,0.00018479071,0.015585536,-0.011108481,-0.009335613,0.013296516]},{"id":"interface-GatewayChannelCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelCreateDispatchData\nDescription: CHANNEL_CREATE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelCreateDispatchData"},"embedding":[0.053441476,0.025211748,-0.013000533,-0.003868239,0.009442798,0.009686558,-0.003897258,0.022216983,-0.016076552,0.0040597646,0.0195008,0.04352857,-0.01608816,0.007376642,0.03865337,-0.015821185,-0.03076019,-0.0030092753,0.025977852,0.01138127,-0.021822324,0.029158339,-0.0013370526,0.01116653,-0.02013922,-0.048937723,0.027672563,-0.010011571,0.014811322,-0.011265194,0.05176998,-0.026720738,0.02832259,0.0015089904,0.0498199,0.03535681,-0.02525818,0.0009540012,-0.043273203,-0.020417802,-0.007637813,0.002190938,0.035797898,0.018490937,0.00030542546,-0.011195549,-0.0076494208,0.044248242,0.011683068,-0.016540857,-0.028206514,0.017016768,0.013720206,0.03526395,0.008136941,-0.003923375,0.0075681675,-0.0036825172,-0.037562255,0.019756168,-0.0149506135,-0.013337154,-0.011671461,-0.031456646,-0.003348798,-0.004100391,-0.035565745,0.04675549,0.010208901,0.04348214,-0.015925653,-0.036146127,-0.01872309,-0.01133484,-0.038583726,-0.006273918,-0.044108953,0.007370838,0.022228591,-0.016204236,-0.018061455,0.03363888,-0.06463122,-0.050423495,0.012768381,-0.01672658,-0.038839094,0.009727185,0.0010911162,-0.009268683,0.008891436,0.014741676,-0.002436149,0.014312194,0.008647677,-0.04002307,0.0508878,0.020371372,0.0025957539,0.0064190133,0.025768913,-0.050284207,-0.013023748,-0.015101512,0.026581448,-0.042646393,-0.024677798,0.026720738,-0.004085882,-0.008508384,-0.041276693,-0.027231473,-0.008665088,-0.027881501,0.0027539076,0.00030143536,0.073406585,-0.058223817,0.045130424,0.028392237,-0.028252944,0.0036680077,-0.0006725164,-0.03368531,0.010272743,-0.0050115893,0.017875733,-0.022507174,-0.055298697,-0.019814206,0.051166385,0.02018565,0.039210536,-0.025026027,-0.008369093,0.009849065,-0.049541317,0.02384205,-0.008665088,-0.027835071,0.019605268,-0.016923908,0.09300024,0.027463626,-0.031944167,-0.014347017,-0.045757234,0.03538002,0.026465371,0.026558232,-0.084317744,0.056320168,0.008804379,-0.012362114,0.01182236,0.0037898875,-0.022100907,-0.019512407,0.016076552,-0.030411962,0.03426569,-0.033429943,-0.026302865,0.040812388,-0.06347046,-0.032245964,-0.0046836743,-0.012037101,-0.08023186,0.015345273,0.024979595,-0.0054700905,-0.058084525,0.012280861,0.02169464,0.0032936619,-0.036285415,-0.037608687,-0.020673169,-0.039953426,0.036935445,0.034590706,0.031387,-0.057155915,-0.020487448,0.0067904573,0.0438768,-0.004854887,0.051305674,-0.058316678,-0.05734164,-0.007550756,0.028345805,0.021067828,0.026674308,-0.026511801,0.04011593,-0.01618102,0.053023603,-0.024561722,0.040348083,-0.05478796,-0.0025681858,-0.0036680077,0.020707993,-0.0006453111,0.0057486733,0.0031253514,-0.040789172,0.014846144,0.023284884,-0.0017556524,0.005908278,0.00021891244,-0.049309164,0.017539112,-0.041346338,0.016529249,-0.0061984686,-0.055020113,-0.0042977207,0.011596011,0.00071967236,-0.020081181,-0.012408544,0.04278568,-0.011491543,0.013395192,-0.010313369,-0.0028844932,-0.0050725294,0.027765425,0.00041207048,-0.048148405,-0.028206514,0.013302331,0.0061636455,0.00674983,0.021218728,0.02486352,-0.027695779,-0.010226312,-0.008827594,0.006674381,-0.026047496,0.0045008543,0.0071793124,-0.0089842975,-0.037214026,0.023168808,0.07029574,0.020290118,-0.038003344,0.0054962076,0.0039465902,-0.013325547,0.05655232,-0.03329065,0.012547836,0.042739253,0.05358077,-0.0476841,-0.02867082,0.05079494,-0.009419583,-0.014323802,0.03758547,0.029135123,-0.0061636455,0.04786982,0.015507779,-0.031061988,0.07702816,-0.020719599,-0.03714438,-0.0568309,0.023215238,-0.014579169,0.013360369,0.020812461,-0.05260573,-0.022228591,-0.01788734,0.030528039,-0.012048708,0.037330102,0.03284956,-0.011265194,0.016889086,0.011526366,-0.020510662,0.003807299,-0.012037101,-0.046035815,0.015774755,0.042808898,0.012803203,0.0016511838,0.03417283,0.016703364,0.018792735,0.04468933,-0.006123019,-0.052094992,-0.0006427719,0.027811855,0.06978501,-0.04503756,0.07972113,-0.057248775,0.015020259,0.0067440267,-0.0032820543,-0.008885632,-0.02983158,0.027510056,0.04578045,0.035913974,-0.029994087,0.027231473,-0.041369554,-0.008183371,-0.013940751,-0.06514196,0.02032494,0.037817623,-0.033058498,-0.03345316,0.034776427,0.0064422283,0.01069642,-0.03603005,0.014997044,-0.03243169,0.02676717,-0.0072315466,-0.022948263,0.00013638953,-0.006186861,-0.012930888,0.03484607,-0.003479384,-0.023006301,0.005812515,0.029344061,0.0149506135,0.0089668855,0.018955242,0.012013885,0.031619154,-0.029947657,-0.013638952,-0.023099162,-0.04805554,0.020812461,-0.03612291,0.03347637,-0.051166385,-0.025768913,0.020394586,-0.030992342,0.03147986,0.0022750932,0.003624479,-0.00828784,-0.009210645,-0.022867009,0.0231572,-0.01033078,-0.020603525,0.01272195,-0.009930318,-0.049541317,0.00070298644,-0.000258995,-0.0498199,0.02525818,-0.029970871,0.026442155,-0.008827594,0.0073360153,0.009402172,0.017933771,0.003415542,0.0016584386,0.021543741,-0.011340643,0.05158426,-0.030620899,-0.0044079935,-0.008113726,-0.0038914543,0.016366743,0.031758446,-0.008508384,0.012768381,0.022356274,-0.013789851,0.018560583,0.0050057857,0.013441623,0.011410289,0.010829909,0.0035229123,-0.03261741,0.010174078,0.027463626,0.034962147,0.048241265,-0.00040916857,0.042437457,0.008641873,0.036006834,0.02583856,0.018618621,-0.015728323,-0.03674972,0.020394586,-0.04201958,0.0022460744,0.019582054,-0.002801789,-0.005792202,0.02739398,0.0033139752,-0.03217632,0.00840972,0.025931422,0.0054352675,-0.030945912,-0.024143847,0.015414918,0.04796268,0.008015061,0.039814133,0.013244294,-0.013163039,-0.06709204,0.0042658,0.0006714282,-0.07791034,0.019524015,0.009756204,0.0048752,-0.06741705,0.017074807,0.014219333,0.0022649367,0.0067904573,0.009970944,-0.026395725,-0.041532062,-0.008804379,0.03914089,-0.033174574,0.007707459,0.010829909,0.07554238,-0.030110164,0.021845538,0.013464838,0.010858928,-0.0034300515,0.07461377,-0.058177385,0.027811855,-0.0061926646,-0.003374915,0.0046459497,0.031178065,-0.030481607,-0.038142636,0.026210004,0.0822748,-0.028786896,-0.006575716,-0.009959337,0.008885632,0.03786405,-0.020150827,0.0057225563,0.021091044,-0.01052811,0.027626133,0.022460742,0.07702816,-0.004968061,-0.0013428564,-0.036772937,-0.023354528,0.032687057,-0.00463144,0.03681937,-0.011114296,-0.0059256894,-0.025629623,-0.023528643,0.009396368,0.016389959,0.028694034,-0.013662168,0.0020008634,0.017492682,-0.047359087,0.06026676,0.0026320275,-0.019767774,-0.00877536,-0.036192555,-0.0463144,-0.0012971514,0.022205375,-0.013464838,-0.024120633,-0.0463144,0.0013406799,-0.0078989845,0.042251732,-0.007614598,0.03786405,-0.029970871,0.009402172,-0.004085882,0.009500836,-0.012814811,0.0029323748,0.007968631,-0.12331934,-0.009088766,0.0016526347,0.038421217,-0.01710963,0.0042222715,0.036238987,0.00095835404,-0.023342922,-0.007585579,0.009251272,0.013731813,0.030504823,-0.013569307,0.017318567,-0.02160178,0.008932062,0.029135123,-0.0038798465,0.02525818,0.007370838,0.015658678,0.014822929,0.0056209895,-0.027602918,-0.0060707848,0.0016352233,0.012106746,0.06616343,-0.022634856,-0.056366596,-0.01272195,-0.0015684795,-0.031085204,-0.010290154,-0.033174574,-0.025722483,-0.0025174024,0.030922696,-0.024050986,0.007887377,-0.008641873,-0.032594193,-0.026651094,0.025559977,0.007318604,0.049448457,0.013070179,-0.003865337,-0.023342922,0.0041178027,0.010679009,-0.0393034,-0.023226846,-0.080324724,0.024886735,0.04596617,-0.029065479,0.026929677,0.014985436,-0.0257457,-0.0086070495,0.0058995723,-0.032338828,0.01560064,0.016749794,0.01109108,-0.021067828,-0.00081761164,0.0075739715,-0.011416093,-0.0070574326,0.003964002,-0.013046964,0.039628413,-0.030504823,-0.04865914,0.008955278,0.023354528,0.024306353,0.0135344835,-0.014149687,-0.0037956913,0.023006301,0.04132312,-0.004233879,-0.0086012455,0.014660423,0.010963396,0.0032791523,0.017388213,0.014741676,-0.015391703,0.00530178,-0.0046865763,-0.0159953,0.044132166,-0.025536763,0.061148938,-0.03217632,-0.028995832,0.019373115,-0.006430621,0.008032472,-0.023958126,0.017562328,0.018873988,-0.035821114,-0.053487908,0.033871032,-0.016157806,-0.018363252,0.0009801183,-0.0015235,0.0011672912,-0.00493614,0.012663912,0.03347637,-0.021334803,0.029552998,0.0138943195,0.01803824,0.029552998,-0.04164814,0.012060316,0.05669161,0.00068412407,0.04406252,-0.021218728,-0.040324867,0.042298164,-0.034149613,0.014277372,0.00080310216,-0.00017465839,0.02082407,0.0066917925,0.013963966,0.023075946,-0.03222275,0.021613387,-0.047126934,0.015020259,-0.011543777,0.006128823,0.052466437,0.0037869858,-0.012605874,0.0128496345,-0.0072605656,-0.016343528,0.03939626,-0.0009569031,0.03027267,0.021926792,-0.036146127,-0.009228057,0.032454904,-0.017295353,0.06323831,-0.011520562,0.008537403,-0.010388819,0.008763752,0.03526395,-0.0107254395,-0.006889122,0.019082926,-0.011230371,0.034799643,0.009030728,-0.019164179,-0.057852373,-0.03558896,0.005786398,-0.009930318,-0.0043035247,0.014904182,-0.0049796687,-0.044248242,0.019245433,0.033754956,0.020731207,0.0075971866,-0.028624387,-0.021102652,-0.027138613,-0.0062274877,0.023308098,-0.031851307,0.011816556,-0.0049767666,-0.015368488,0.018316822,0.025420686,-0.025954636,-0.009059747,0.0041613313,0.013929143,0.039790917,-0.006186861,-0.018885596,0.027068967,0.0038450237,0.011358055,0.044108953,-0.006831084,-0.033754956,0.032129887,0.0027495548,0.015368488,0.014300587,-0.0027800247,0.012779988,-0.009489229,0.029552998,0.029483352,0.027068967,-0.023563467,-0.0057196543,-0.009419583,-0.0037347514,0.014579169,-0.037074734,0.006053373,-0.0703886,0.0072953887,-0.024515292,0.021973222,0.010597756,-0.038398005,-0.002404228,0.009024924,-0.022646464,0.0014342665,-0.00022834363,0.02716183,-0.057945233,-0.0063493676,-0.044248242,-0.045316145,0.020545486,0.01125939,-0.0319906,-0.0076900474,0.017167669,-0.020220472,0.018897204,-0.03076019,-0.014776499,-0.022135729,-0.044875056,-0.0053627198,-0.025118887,-0.01028435,-0.01243176,-0.003972708,0.021265158,0.010301762,-0.012489798,-0.011178137,-0.03447463,-0.007684244,-0.03535681,0.014300587,-0.014312194,-0.017202491,0.007034217,-0.022646464,0.020255296,-0.09485746,0.033522803,0.02490995,0.026581448,-0.0041265087,-0.038351573,0.005879259,0.014753284,0.013511268,-0.03821228,0.017469466,0.026627878,0.01872309,0.010452661,0.02978515,-0.006761438,0.017910557,0.0076958514,0.016633717,-0.00277277,0.0073360153,-0.012095139,0.0058995723,0.033871032,0.016157806,-0.009500836,-0.015252411,-0.012211215,0.018177532,-0.019907067,0.047173362,0.015983691,-0.010446857,0.009361545,-0.004701086,-0.00767844,-0.0061694495,0.020394586,0.016297096,-0.045710802,0.004100391,-0.0007131431,-0.0035809504,-0.0031804875,-0.03563539,0.02262325,-0.019779382,0.02486352,-0.0014465995,0.010713832,-0.0303191,-0.055066545,0.0319906,0.0052814665,0.0043702684,0.031317357,-0.040139146,0.012002278,0.011671461,-0.028833326,0.030829836,0.016436389,0.04640726,0.003804397,0.007011002,-0.047730528,0.016935516,0.0032675448,0.009837457,0.0268136,0.009216449,0.07034217,0.017179277,0.025861776,-0.014300587,0.02827616,-0.0016062043,0.0124781905,0.027115397,0.04095168,0.003136959,0.021404449,0.004878102,0.00371734,0.012246038,0.008647677,-0.009727185,-0.018897204,-0.0059895315,0.01647121,-0.020116003,-0.0058966703,0.015136335,-0.011050453,0.011305821,0.024468862,-0.01755072,-0.022588426,-0.017620366,-0.03568182,0.026418941,0.0018905909,0.01668015,-0.048612706,-0.007225743,0.015020259,-0.0046343417,-0.0007200351,-0.0019979614,0.025861776,0.0012840929,0.02442243,-0.005876357,0.012571052,0.009245468,-0.029854797,-0.027185043,0.0013058571,0.0044805408,-0.025861776,-0.018943634,0.0019123552,-0.01535688,0.0046778703,-0.04304105,0.0020821167,0.017190883,-0.034799643,-0.012420152,-0.018560583,-0.046244755,0.0015104414,-0.015182765,0.036610432,0.035705037,-0.0012405643,-0.032478116,0.01511312,-0.022507174,-0.012269253,-0.0039552962,0.014114865,-0.023273276,-0.008142745,0.0065931277,-0.004698184,-0.005873455,-0.011683068,-0.016482819,-0.0065873237,-0.017956987,-0.04197315,-0.011387074,-0.018351646,-0.011172333,0.03691223,-0.017341783,0.052373577,0.0117759295,-0.0026842619,-0.00872893,0.043691076,0.023168808,0.040533807,-0.0030092753,-0.0064480323,-0.022588426,0.016796224,-0.01272195,-0.0034329533,-0.031108418,0.02549033,0.013987181,-0.01745786,-0.06579199,0.038769446,0.046825133,-0.00009204479,-0.010307565,-0.020359764,-0.016413173,0.0040075304,0.022193767,0.014544346,0.011120099,-0.010487484,0.034010325,-0.00621588,0.0062913294,-0.040046286,-0.045455437,0.009924514,0.018223962,0.0026944187,-0.0048664943,-0.00719092,-0.0014436976,0.0049999817,-0.026418941,-0.022321451,0.014312194,-0.009141,-0.0054642865,-0.008380701,0.041903503,0.014822929,0.020348156,0.03389425,-0.00950664,-0.0050115893,-0.0011346447,-0.0065002665,-0.042901758,-0.015821185,-0.020928537,0.030481607,-0.017562328,0.011630834,0.015507779,-0.01681944,-0.014695246,-0.038885523,-0.026326079,0.032919206,-0.035519313,-0.033406727,-0.03719081,-0.025977852,-0.009721381,-0.023168808,-0.0019080024,-0.00865348,-0.0018354547,0.0025522253,0.004802652,-0.028694034,-0.012745165,0.027068967,0.007225743,0.042994622,0.0045211674,0.008688303,0.009820046,-0.024515292,0.009988356,0.014753284,0.00010764253,0.0037086343,0.011329036,0.018641837,-0.040719528,0.020069573,-0.0012282312,0.009332526,0.0077248705,0.023192022,-0.0063493676,0.011387074,0.01506669,0.0142425485,0.016761402,0.011793341,0.021427665,0.020243688,0.0017411428,-0.012071923,0.002311367,0.013105002,-0.038862307,0.014706853,0.052141424,0.03811942,0.007492718,0.0341264,0.018432898,-0.00554554,0.008903043,0.016831048,0.017272137,0.03821228,-0.009860672,-0.0069935904,-0.04870557,-0.061102506,0.0117701255,-0.021485703,-0.013070179,0.011375466,-0.025699269,-0.016970338,0.023261668,0.014509523,0.014822929,-0.028206514,0.023958126,-0.012745165,-0.001337778,-0.005481698,0.00804408,-0.0121299615,-0.0010737048,0.015194373,-0.019930283,0.00045269713,0.0114509165,0.0292512,-0.011317428,-0.017748049,-0.016935516,0.0054671885,-0.029158339,-0.02739398,0.020406194,0.021265158,0.017190883,0.0149390055,-0.017631974,-0.0017135747,0.032687057,0.004262898,0.01803824,0.034358554,0.03874623,-0.024492076,-0.0033894246,-0.0026581448,0.013685383,0.0057167523,0.018247178,0.0010584698,0.036517568,-0.03271027,-0.0073011923,-0.02009279,0.04466612,0.06453836,-0.025095671,0.023006301,0.013058571,0.015124727,-0.03874623,0.011131707,-0.017132845,0.027904715,-0.0062623103,-0.008073099,0.01194424,-0.007248958,-0.011688872,-0.019396331,0.07196724,-0.0037898875,0.015147943,0.026697524,0.013430015,-0.005429464,-0.014822929,0.04246067,-0.021520525,0.00377828,-0.0038740428,0.022576818,0.0076552248,0.008636069,0.02686003,-0.010139255,0.0043789744,-0.032385256,0.024283139,-0.056134444,0.031410217,-0.01262909,-0.00015144315,-0.01080089,-0.013963966,-0.010301762,-0.0016410272,-0.00674983,0.02827616,0.017225707,-0.0059547084,0.007457895,0.011317428,-0.009849065,-0.015879223,0.009709774,-0.0011600364,-0.07605312,-0.0045617945,-0.0068078684,-0.033221006,-0.016006907,-0.0037231438,0.007463699,-0.029947657,0.0053191916,-0.005609382,-0.042344593,-0.025513547,-0.03470678,0.013720206,-0.0039436887,0.016030122,-0.03700509,-0.019315079,-0.022704503,0.01686587,0.012942495,-0.010243724,0.019524015,-0.037283674,-0.028601173,0.0012507209,0.0067150076,-0.021323197,0.03860694,-0.003348798,0.0031920953,-0.010899554,0.011810753,-0.0064422283,-0.006273918,-0.023180416,0.009141,-0.03147986,-0.009077158,0.0027974362,-0.054462947,0.0008502581,0.043087482,-0.008856613,-0.027463626,-0.015020259,0.010986611,-0.029761935,0.056923762,0.0036012637,0.007684244,0.0034880894,-0.046476908,0.026511801,0.006488659,-0.00682528,0.013058571,0.0058038095,0.01080089,0.01974456,-0.016192628,-0.025629623,-0.0010628226,0.020940145,0.039605197,0.010975004,-0.003194997,-0.057945233,-0.01511312,-0.0103772115,0.008885632,-0.026836814,0.0061346265,-0.028902972,-0.03398711,0.003470678,0.0034909914,0.000059851784,-0.014788106,0.0070806476,-0.040348083,-0.018932026,-0.014474701,0.019663306,0.02525818,0.035031796,-0.0059053763,-0.029715504,-0.0011179588,0.013058571,0.018154316,0.022541996,-0.006395798,-0.020800853,-0.016540857,0.039698057,-0.036889013,-0.01515955,0.02262325,-0.02096336,-0.02832259,0.020441016,0.008769556,-0.008311056,-0.0031166456,-0.016250666,0.00047772608,-0.010516503,0.020545486,0.0142541565,-0.022124121,0.010766067,-0.026047496,0.006860103,-0.0351943,-0.014997044,-0.0089842975,-0.00292512,-0.008311056,0.047730528,-0.034683567,0.028786896,0.0035838524,0.028972616,-0.009854868,-0.048334125,-0.028879756,-0.0037318496,0.0046169306,-0.03294242,0.012257646,-0.020081181,-0.024120633,0.0023577977,0.0047997506,0.002778574,0.009152608,0.026883246,-0.01988385,0.025327824,-0.004257094,-0.019918675,-0.0142425485,0.009152608,-0.017980201,0.026395725,0.029808365,-0.0073011923,0.04715015,-0.008990101,-0.00962852,0.0038218086,-0.0042251735,0.032338828,0.025188534,-0.011096884,-0.025281394,-0.02539747,-0.04232138,-0.002167723,0.025165318,-0.020290118,0.011149118,-0.012234431,0.0040713726,0.03535681,0.037956916,0.026743954,-0.024097417,-0.019233825,0.007156097,0.012071923,-0.013174647,0.006976179,0.027788639,0.034149613,-0.04561794,0.004152626,-0.015925653,0.008583834,0.026047496,0.00083937595,0.0024608152,0.009854868,-0.010458465,0.017713226,-0.013975573,-0.021822324,0.027463626,-0.011329036,-0.025815345,0.031154849,-0.019001672,0.0016265176,0.034428198,0.02535104,-0.014544346,-0.0027524566,-0.032895993,-0.027579702,0.024654582,-0.0062216837,-0.0219384,-0.004628538,0.025536763,-0.025954636,-0.026976107,-0.015264019,0.020464232,-0.013279116,-0.00076175,-0.019349901,-0.0058850627,-0.0018514153,0.052977175,0.0110678645,0.003194997,-0.011642442,0.00946021,-0.018351646,-0.01905971,0.026024282,0.020719599,0.012803203,0.008508384,0.015217588,-0.014834537,0.012710343,-0.009378956,-0.008432935,0.011723695,0.018641837,0.019732952,0.0072315466,-0.0010758812,-0.011955848,-0.020057965,0.03243169,-0.010510699,0.016111376,0.00037180656,0.03640149,-0.017190883,-0.021033006,0.028206514,0.024538506,-0.0021807814,-0.010870535,0.015809577,0.021915184,-0.012652305,-0.014300587,-0.0024463057,-0.001857219,0.003319779,-0.0076204017,-0.041624922,0.049355596,-0.01803824,-0.0072373506,0.008723126,0.01735339,-0.006308741,0.00079657283,0.019326685,0.023017908,0.0110736685,0.005145077,0.009791027,0.009524051,-0.013801459,-0.00097649096,-0.0005898121,0.0009525502,0.0170632,0.023760796,0.0054091504,0.03398711,-0.011857183,0.023041124,-0.007794516,0.03120128,0.024608152,-0.01852576,-0.0063841906,0.020638347,0.013731813,0.025002811,-0.012803203,-0.0001909816,-0.015797969,0.032895993,-0.017051592,-0.015194373,-0.027486842,0.0015336566,0.008636069,0.035217516,-0.024840305,-0.04415538,-0.00987228,0.009297702,-0.0057399673,-0.013151432,-0.009141,0.0019660403,0.010905358,0.015670286,0.00083647406,-0.048194833,0.008920455,0.011810753,-0.03983735,-0.03329065,0.02530461,-0.010887947,0.0054991096,0.036796153,0.008665088,-0.00755656,0.027602918,0.037237242,0.0057196543,0.002708928,0.00682528,-0.015983691,0.031154849,-0.014509523,0.046964426,0.010475876,-0.019489191,0.00041170773,0.055484418,-0.006465444,0.017945379,-0.013139824,-0.020243688,0.0059605124,-0.011369662,-0.032687057,-0.0032414277,0.012571052,0.0014647364,0.005217625,0.028949402,-0.005142175,0.022054477,-0.01272195,0.009715577,-0.044619687,0.002257682,0.005264055]},{"id":"interface-GatewayChannelDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelDeleteDispatchData\nDescription: CHANNEL_DELETE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelDeleteDispatchData"},"embedding":[0.04342489,0.050061665,-0.033482157,-0.00040159325,-0.0023738279,0.051155366,-0.019835755,0.04760084,-0.0013329478,0.017188502,0.037061542,0.006816987,-0.048868537,0.020693315,0.049141962,-0.0067424164,-0.005974962,0.026845383,-0.007239553,0.044046313,-0.022420865,0.056425016,-0.0010035947,0.021874014,-0.008532109,-0.043002326,0.059258696,-0.021550877,0.030051913,-0.017611068,0.033432443,-0.037210684,0.046780564,-0.019264048,0.04312661,0.019810898,-0.005179543,0.0023847027,-0.045463152,-0.025478257,-0.017449498,-0.0007864858,0.019786041,0.034302432,0.013459977,0.009265386,-0.011465215,0.027069094,0.017275501,-0.029803345,-0.013770686,-0.00038508675,0.006885343,0.0552816,-0.007220911,0.01021616,0.02206044,0.010259659,0.014851959,-0.01099915,-0.038304385,-0.0054312185,-0.011502501,-0.018916052,-0.028088223,-0.007115269,-0.019351047,0.061644953,0.0044586947,0.038130384,-0.026199104,-0.033979293,-0.06323579,-0.018207632,-0.028386505,-0.020171322,-0.000081852784,0.005154686,0.017151216,-0.03524699,-0.0077926177,0.043772887,-0.047178272,-0.04750141,0.00738248,-0.008998174,-0.05811528,0.013161695,0.013248693,0.040243216,-0.019425618,0.028560504,-0.0037347395,-0.0035545274,-0.021724874,-0.04282833,0.048346546,0.012950411,-0.004912332,-0.006425492,0.025117831,-0.048669685,-0.042679187,-0.010421229,0.017213358,-0.04784941,-0.029952487,0.042356048,-0.0149265295,-0.02701938,-0.0064938483,-0.03211503,-0.03748411,-0.00591282,-0.020867312,0.02152602,0.054436468,-0.039050087,0.06676546,0.040988922,-0.01680322,0.0018161025,-0.023029858,-0.050956514,-0.026373101,-0.00082182913,0.027864512,-0.018170347,-0.04988767,-0.029331066,0.04705399,0.0010828259,0.0056145377,-0.047227986,0.005241685,0.02089217,-0.042008054,0.0023101321,-0.013633974,-0.028237365,0.029778488,0.00219983,0.07765275,0.026745955,-0.033904724,0.0051950784,-0.02920678,0.0325376,0.029132212,0.009315099,-0.04610943,0.041883767,0.041883767,-0.00071696436,-0.0023008108,0.024695266,0.011409287,-0.014292681,0.01971147,-0.038478382,0.010868651,-0.052149642,-0.02960449,0.029654205,-0.055778738,-0.03320873,0.0010517548,-0.009756308,-0.067958586,-0.0018487271,-0.0020429213,-0.0173625,-0.031518467,-0.027988797,-0.008525895,0.0050086523,-0.016380655,-0.040715497,-0.008886319,-0.047725122,0.031245042,0.024210557,0.030350195,-0.05428733,-0.02828708,-0.005170222,0.058562703,0.018481057,-0.0019854398,-0.013074695,-0.031095902,0.020444747,0.018543199,0.010154017,0.018182775,-0.015286954,0.03181675,-0.034451574,0.03189132,-0.051055938,0.037906673,-0.021240165,0.027292805,-0.008849033,0.0027808584,-0.0051671145,0.004617157,0.00023303283,-0.033507016,-0.010073232,0.028386505,0.020792743,-0.004648228,-0.025527969,-0.04280347,0.011956138,-0.022458151,0.03494871,0.00056782336,-0.041535772,0.011949924,0.007929331,0.0010750581,-0.00042761525,-0.016977219,0.006543562,0.014131111,-0.0036042412,-0.017660782,-0.02450884,0.0048843683,0.007848546,0.014354822,-0.036191553,-0.02560254,-0.007655905,-0.0031552645,-0.007742904,0.017287929,0.009178386,-0.061098102,-0.01971147,-0.0053783976,-0.0013477065,-0.03243817,-0.00243597,0.01680322,-0.02041989,-0.033258446,0.028560504,0.059258696,0.052199353,-0.013385406,-0.035470705,-0.019052764,-0.010502013,0.06706374,-0.033656154,0.009085174,0.031841606,0.051553078,-0.029355923,-0.018331915,0.041336916,-0.018940909,0.0012366276,0.06830658,0.0003996513,-0.022806147,0.05687244,0.021426592,-0.030723048,0.07546535,-0.018431343,-0.029554777,-0.018829053,0.042380903,-0.019786041,0.018170347,-0.012652129,-0.047725122,-0.0034147077,-0.007848546,0.021811873,-0.0173625,0.04720313,-0.0036415264,0.011297432,0.012925554,0.023191428,-0.036539547,0.028212508,-0.026770812,-0.051801644,-0.013546975,0.037434395,0.015125385,0.0149762435,0.005331791,0.0010183535,0.03661412,0.0369124,-0.029778488,-0.07094141,-0.0095201675,0.027143665,0.04287804,-0.024956262,0.04108835,-0.07606192,-0.0073327664,-0.004253626,-0.029877916,0.004315768,-0.02898307,-0.0068045584,0.006823201,0.04665628,0.001103022,-0.012558916,0.0047259056,0.005260328,-0.017300358,-0.067908876,0.020134037,0.034725,-0.02669624,-0.015112956,0.055977594,0.0073576234,0.017101502,-0.005480932,0.01578409,-0.012074208,0.034824427,0.010446085,-0.051155366,0.028883643,-0.030822476,-0.021053739,0.04847083,0.014068969,0.008619107,0.029579634,0.03131961,0.029505063,-0.0045146225,0.00015554941,0.015262097,0.021265022,-0.053442195,-0.03134447,0.002213812,-0.044642877,0.010818938,-0.005176436,0.05294506,-0.032413315,-0.022358723,0.03542099,-0.004446266,0.011452787,0.001696479,-0.009246742,-0.00022215796,-0.02025832,-0.053790193,-0.007786404,0.008488609,-0.027740229,0.013024982,-0.04148606,-0.042008054,-0.0015830697,-0.013708545,-0.033904724,0.0042380905,-0.017163645,0.03266188,-0.03517242,0.013385406,0.019226762,-0.008494823,0.020071894,0.008836605,0.031468753,-0.04108835,0.059159268,-0.042902898,-0.012453275,-0.008246255,0.0012412883,0.039920077,0.024521269,-0.0069536995,0.009501525,-0.0020087431,0.01916462,0.009799807,-0.015796518,0.025043262,0.02325357,-0.008836605,-0.000016482218,-0.03666383,0.023974417,0.048818823,0.023042286,0.04891825,-0.032338742,0.043946885,0.027988797,0.030772762,0.025155118,0.0101726595,-0.04807312,-0.020283177,0.027441947,-0.021762159,0.0045581223,0.008556966,-0.007525407,-0.016753508,0.029355923,0.00671756,-0.021004027,0.021165594,0.039298657,0.021575732,-0.0781996,-0.035097852,0.013372977,0.013832829,0.0022386687,0.043499462,0.030101627,-0.006524919,-0.04436945,-0.02600025,-0.0048315474,-0.08769491,0.004999331,0.006574633,-0.0006117112,-0.032090176,0.001873584,0.011241504,0.009874377,0.016716221,0.020941883,-0.0312699,-0.024148416,-0.039000373,0.042952612,-0.060451824,-0.014851959,-0.00023147928,0.060849532,-0.014230538,-0.007413551,0.0016669615,0.0006750184,0.0005853008,0.09167201,-0.0541879,0.009290243,0.019127335,-0.0045053014,-0.008699892,0.05043452,-0.016132087,-0.022097727,0.04327575,0.06746145,-0.016306084,-0.0076683336,0.009240529,0.0061489595,0.03614184,-0.020158894,0.015697092,0.002143902,-0.035669558,0.0004062539,0.0035731702,0.056623872,0.009551239,-0.0005390826,-0.041436344,0.0063944208,0.031742178,-0.006189352,0.03243817,-0.013062267,-0.020618744,-0.025304258,-0.006186245,0.020531746,0.05284563,-0.0069536995,0.012291705,-0.008619107,0.056077022,-0.061843805,0.04884368,-0.00844511,-0.04814769,-0.0067299884,-0.037185825,-0.06999685,0.000676572,0.01876691,-0.02669624,-0.021874014,-0.044891443,0.009308885,-0.020245893,0.019512616,-0.027069094,0.047153417,-0.017064217,0.013770686,0.030201055,0.008948461,-0.021985872,0.013571832,-0.00055384135,-0.11076206,-0.006158281,0.015187526,0.049987096,-0.010309372,-0.0077491184,0.06935057,0.013646402,-0.004915439,-0.005692215,0.020382605,0.02167516,0.01625637,0.00530072,0.0037347395,-0.005592788,-0.0018238703,0.024409411,-0.011123434,0.005126722,0.014503963,0.019574758,0.008252469,-0.007916902,-0.0101975165,0.0009336849,-0.022259297,0.019226762,0.03996979,-0.047799695,-0.054237615,-0.0027606622,0.0028119294,-0.04257976,-0.03604241,-0.017884493,-0.02883393,-0.012328991,0.022296581,-0.0123600615,0.017002076,-0.0066802744,-0.015721949,0.0004326643,0.0046917275,-0.021190451,0.04083978,0.042778615,0.0015442309,-0.02206044,-0.0068977717,-0.007171197,-0.042107478,-0.022010727,-0.05185136,0.012478131,0.029405637,-0.018742055,0.0028134831,0.0014284912,-0.018108204,-0.04516487,-0.00012700289,-0.009197029,-0.0012234224,0.015324239,-0.008407825,-0.016057516,0.012596201,0.043524317,-0.0072519816,-0.00915353,0.006335386,0.00015817104,0.04673085,-0.036017556,-0.024061417,0.020879742,0.027491659,0.022980144,-0.0021252595,-0.010533084,0.015125385,0.01720093,0.030698191,0.0075005502,-0.012391132,0.0031164258,-0.010141589,-0.016032659,-0.0052106143,0.01672865,-0.0024095594,0.000877757,0.019177048,0.0071649826,0.0024483984,-0.025801394,0.054635324,-0.038776662,-0.03611698,0.027814798,-0.014578534,-0.005055259,-0.0006656971,0.010079447,0.022010727,-0.01971147,-0.048818823,0.020457175,-0.025204832,-0.02261972,-0.03502328,0.009998662,0.00014729617,0.004542587,0.018568056,0.016144514,-0.03353187,-0.006935057,-0.012434632,0.0030480695,0.017648352,-0.022097727,-0.0111545045,0.043250892,0.014230538,0.030921903,-0.019388331,-0.04280347,0.06383235,-0.02223444,0.009377241,0.00977495,0.021650303,0.006347814,0.0029206781,-0.010731938,-0.0010711743,-0.005452968,0.011906425,-0.03221446,0.0061116745,-0.009551239,0.008619107,0.061943233,0.0012125475,-0.0039833076,-0.0034551,-0.015162669,-0.0056797867,-0.0003796493,-0.008109543,0.013447548,0.027939083,-0.035992697,0.0010385497,0.006310529,-0.018754482,0.04948996,-0.0005386942,0.00010476768,0.0128136985,0.017275501,0.04374803,-0.009259171,-0.011999637,-0.0005363639,-0.006002926,0.016616795,0.02632339,0.0012754664,-0.05876156,-0.041113205,-0.0056891083,-0.020531746,0.0026721098,0.01743707,-0.014193253,-0.027814798,-0.0009632024,0.03298502,-0.005393933,0.015523094,-0.008041186,-0.03676326,-0.04170977,-0.000870766,0.017698066,-0.048893396,0.02238358,-0.0018704769,-0.028560504,-0.0016312298,0.022470579,-0.0028476613,-0.015199955,0.007196054,0.01987304,0.007077984,0.006966128,-0.015672235,-0.0011410841,-0.014628247,0.012496774,0.0085880365,-0.0053100414,-0.008817962,0.031369325,0.013397834,0.0030604978,0.008438895,-0.009650666,0.02560254,0.00707177,0.032860737,-0.019699043,0.0017865851,-0.010377728,-0.017176073,-0.0016654079,0.009980019,-0.0050739017,-0.029977344,0.008159257,-0.06492605,0.028386505,-0.011334717,-0.0019264048,0.0011022453,-0.032637026,-0.0079604015,0.0028865,-0.0149016725,-0.009868164,0.0037005614,0.024496412,-0.06244037,-0.0059438907,-0.07283053,-0.03007677,0.03186646,0.019201905,-0.015734376,0.013397834,0.008569394,-0.0032997448,0.01048337,-0.026621671,-0.0044493736,-0.015498237,-0.0403675,0.017710496,-0.0004932528,-0.0219113,-0.0013345013,-0.02096674,0.007109055,0.011434144,-0.011086148,-0.009731451,-0.040640924,0.011533571,-0.031220185,0.01776021,-0.007817475,-0.009097601,0.008128185,-0.019313762,0.03964665,-0.09072745,0.046357997,0.029728776,0.030549051,-0.010029733,-0.008097114,0.014752531,0.03723554,0.037285253,-0.04829683,0.046482284,0.044642877,0.021302307,-0.0001265174,0.042231765,-0.03228903,0.04357403,0.02080517,0.010147803,-0.017263072,0.014106254,-0.0063260645,-0.00037945513,0.03897552,0.013198979,0.019388331,-0.012913126,-0.01048337,0.01776021,-0.0027420197,0.036738403,0.016554652,-0.026969666,0.021650303,-0.0041417703,-0.023862561,-0.008929818,-0.004527051,0.0015768555,-0.03676326,0.01452882,-0.02167516,-0.0029098033,-0.0102223735,-0.047973692,0.005925248,-0.034053866,0.0011861371,-0.0034084935,-0.004340625,-0.045935433,-0.026745955,0.01452882,-0.0070034135,0.018940909,-0.0019264048,-0.00023847027,0.012297919,0.0085631795,-0.014740103,0.03079762,0.047178272,0.036564406,-0.004965153,0.0059345695,-0.04469259,-0.014255395,-0.0076248343,0.011465215,0.021787016,0.0173625,0.040019505,0.027591087,0.030051913,0.013335692,0.0427289,-0.003663276,0.01681565,0.033357874,0.031791892,-0.004412088,0.018667484,-0.026795669,-0.0031941033,0.003566956,0.025677111,-0.028908499,-0.010284516,-0.0027187164,-0.01260863,-0.008911176,-0.015199955,-0.0002468206,-0.00057326077,0.007879617,0.022246867,-0.029505063,-0.032463025,-0.014093826,-0.0138204,0.041585486,-0.006108567,-0.007742904,-0.04859511,0.0072954814,-0.012509203,-0.008693678,0.023986846,0.015386381,0.030499337,0.010433656,0.028386505,-0.012502988,0.0009655327,0.0038310597,-0.043300606,-0.018679911,0.0020320462,-0.0037968815,-0.014292681,-0.043648604,0.0048688324,-0.020370176,0.010241016,-0.033009876,0.0390998,-0.0066243466,-0.020929456,-0.008569394,0.014665533,-0.041908626,0.007966615,-0.015150242,0.041361775,0.0312699,0.0010004876,-0.008911176,0.04203291,-0.020221036,0.0060526393,-0.018319488,-0.0011224415,-0.0520005,0.011626785,-0.00093989907,-0.022507865,0.010818938,-0.0126397,-0.010203731,-0.00030896268,-0.014242967,-0.010259659,-0.024297556,-0.023887418,0.00089484605,0.04195834,-0.0067983447,0.039621796,0.009016817,0.014180824,0.00097097014,0.029778488,-0.0035203493,0.03527185,0.006242173,0.0062981006,-0.024881693,0.020519318,-0.025826251,0.0054685036,-0.028237365,0.023663707,0.014267824,0.0014704372,-0.03268674,0.026845383,0.020544175,-0.009787379,0.01405654,-0.02239601,-0.0074881217,-0.01260863,0.011291217,0.0029439814,0.018232489,0.002731145,0.023390282,0.0069847708,0.010626297,-0.02168759,-0.008793105,0.017325215,0.010564155,0.01280127,0.0128634125,-0.01916462,-0.004934082,-0.0015154902,-0.030747905,0.008942246,0.024222987,0.018170347,0.016529795,-0.010918365,0.059407838,-0.0036259908,0.01885391,0.036191553,-0.0101726595,0.007351409,0.0027901798,0.012708057,-0.049962237,-0.025627397,-0.002425095,0.016169371,0.012502988,0.020233463,0.009762522,-0.0003413931,-0.004794262,-0.03141904,-0.019736327,0.049092248,-0.019922754,-0.036564406,-0.04225662,-0.0325376,-0.017002076,-0.0002959517,-0.009221886,-0.0150011005,-0.02222201,-0.0011682713,-0.0127639845,-0.013372977,-0.004284697,0.03025077,0.012739128,0.04916682,-0.020917026,-0.00072939275,0.022135012,-0.022097727,0.02905764,-0.008128185,-0.017809922,0.009588524,-0.000053451906,0.01665408,-0.03912466,0.012291705,-0.01752407,0.013571832,0.0021687588,0.0061147814,-0.003094676,-0.013907399,0.037732676,0.0072768386,0.022483008,-0.030225912,-0.0039677722,-0.00437791,0.015535522,-0.010856222,-0.018406486,0.0028165902,-0.028137937,-0.006928843,0.08565666,0.06179409,-0.006611918,0.025341544,0.007413551,-0.005859999,0.007612406,0.018592913,0.013111981,0.010470942,0.023303283,0.0102223735,-0.020780314,-0.037434395,0.007494336,-0.031046188,-0.0051671145,0.005266542,-0.0053442195,-0.03872695,0.025142688,-0.0026068606,0.009047888,-0.0074011227,0.017809922,-0.02920678,0.01705179,-0.0107257245,0.0060774963,-0.015448523,-0.007680762,0.018580485,-0.006487634,-0.0009826218,0.0021190452,0.029480206,-0.0068977717,0.002855429,-0.0032158531,0.031195328,-0.0057574646,-0.02112831,0.032711595,0.018021205,0.010029733,-0.00127702,-0.017561354,-0.009408312,0.02143902,0.0037999887,0.011651642,0.01539881,0.020457175,-0.0069971993,-0.016355798,-0.007873403,0.035097852,0.002709395,0.012453275,0.004104485,0.00911003,-0.03417815,-0.0075378353,-0.0033090662,0.06771002,0.044593163,-0.039298657,0.018791767,0.0027156093,-0.0031614788,-0.06234094,-0.00773669,0.0023412032,0.013211408,0.00037168738,-0.014516392,0.0017539604,-0.0073700515,-0.0016762828,-0.008904961,0.07984015,-0.018543199,0.015970517,0.020395033,0.001297216,0.00993652,-0.026223961,0.044270024,-0.01876691,0.024856836,-0.0050241877,0.035768986,0.007941759,0.00011253544,0.041436344,0.022470579,0.010371515,-0.009694166,0.019090049,-0.03465043,0.01814549,-0.012527845,-0.014255395,-0.036489833,-0.020295607,-0.011396859,0.02843622,0.016616795,0.009992448,0.0126397,0.013621545,-0.008221398,-0.01735007,-0.011987208,-0.024657981,0.006257708,0.015336667,-0.052994773,-0.0024654875,-0.02027075,-0.026025107,-0.016852934,-0.014541249,0.00667406,-0.008886319,0.011844282,-0.026248818,-0.060451824,-0.008320825,-0.01625637,0.0254534,-0.0068542724,0.010154017,-0.042952612,-0.025353972,-0.015262097,0.005496468,0.0072706244,-0.005145365,0.013832829,-0.020879742,0.007767761,0.013758258,0.003327709,0.009669309,0.026124533,-0.0062390654,-0.01012916,0.01107372,0.011098577,-0.005381505,-0.0052199354,-0.015274526,-0.0013849918,-0.065721475,-0.0017461927,-0.017499212,-0.029679062,0.0040920563,0.04389717,-0.00974388,-0.011701355,-0.0010533084,0.004794262,-0.025478257,0.04760084,-0.020482032,-0.0067051314,0.004996224,-0.060054116,0.018493485,-0.0041200207,-0.023999274,0.0016607473,0.011111005,0.0024685943,0.008960889,-0.0015908375,-0.021265022,0.007643477,0.00031032207,0.033482157,-0.0037067756,-0.0062048873,-0.017337643,-0.023290854,-0.017424641,0.008942246,-0.02960449,0.0043002325,-0.031071045,-0.037210684,0.0019652436,0.011688927,-0.01634337,-0.01531181,0.01641794,-0.041336916,-0.034998424,0.00816547,0.016915077,0.015958088,0.038229812,-0.049987096,-0.0015310257,0.0060588536,0.015622521,0.045910574,0.025527969,-0.016579509,-0.017026933,-0.014479106,0.03629098,-0.01877934,-0.021327164,0.019450475,-0.033556726,-0.008817962,0.021613019,-0.0032562455,-0.0055834665,-0.013472404,-0.028809072,0.011819425,-0.008594251,0.031593036,0.015187526,-0.027392233,0.011844282,-0.029007927,-0.0075005502,-0.011850496,-0.032487884,-0.0006792907,0.0028336793,-0.03723554,0.049440246,-0.007531621,0.027839655,-0.006065068,0.02442184,-0.016616795,-0.02365128,-0.0123352045,0.0037533822,0.015224812,-0.04948996,0.0022386687,0.000024407762,-0.0077491184,-0.023526995,0.012111493,0.008768248,0.020556603,0.008227613,-0.009625809,0.02027075,-0.019152192,-0.023750706,-0.015075671,-0.007077984,-0.016231513,0.016393082,0.025776539,-0.0053970404,0.05043452,-0.011719998,-0.010551726,0.0022992573,0.0043375175,0.05930841,0.012192278,0.0017741566,-0.017685639,-0.009874377,-0.018493485,-0.0005569485,0.06015354,0.0056145377,0.022880716,-0.015908375,0.02489412,0.015050814,0.033258446,0.025080547,-0.028386505,-0.025751682,-0.0029377672,0.0053348984,-0.0067921304,-0.017847208,0.033581585,0.04282833,-0.03353187,-0.013497261,-0.0056176446,0.014081397,0.015970517,-0.03713611,0.007979044,0.008693678,0.00027400776,-0.0012094404,-0.020134037,-0.011912638,0.009756308,-0.00010195186,-0.029132212,0.05374048,-0.032487884,0.00586932,0.027392233,0.004819119,-0.045488007,0.0066429893,-0.021662733,-0.000031022497,0.0023645065,-0.019512616,-0.018207632,0.02521726,0.00065521064,-0.02481955,-0.016840506,-0.005384612,0.020494461,-0.018406486,-0.014789817,-0.032860737,-0.006990985,0.0069723423,0.03897552,0.0450903,-0.02411113,0.0026798774,-0.0005270426,-0.022445722,-0.019649329,0.037981246,-0.006301208,-0.022557577,0.001946601,0.0065373476,-0.019823326,-0.0040703067,0.005275863,-0.017834779,0.009961377,0.0071898396,0.011719998,-0.0054933606,-0.010862437,-0.025751682,-0.008724749,0.021700017,0.017176073,0.015523094,0.011819425,0.031692464,0.0026767706,0.013186551,0.027914226,0.0074011227,-0.002748234,-0.010309372,0.016591938,-0.00007442486,-0.03683783,-0.004011272,0.007923116,-0.0017679424,0.009060317,-0.0085631795,-0.014429393,0.052199353,-0.012130136,-0.019935181,-0.003511028,0.018394059,-0.0073389807,-0.006307422,-0.000103893806,0.006040211,-0.0005421897,-0.002394024,-0.015697092,-0.0030915688,-0.036017556,0.033954438,0.0058289277,0.0009841754,0.028908499,0.012074208,0.013932256,0.018990623,0.0012777967,0.046830278,-0.024769837,0.022483008,0.0004291688,-0.010943222,0.010464728,-0.007848546,-0.003097783,0.049390532,-0.010029733,-0.028635073,-0.0029781596,0.03967151,0.008382968,-0.017847208,-0.021563305,-0.023228712,0.010533084,0.028088223,-0.0032779952,-0.01705179,-0.008420253,0.013571832,-0.0029144639,-0.051155366,-0.025242116,0.0123849185,-0.014354822,0.01421811,0.0012024494,-0.0312699,0.024285128,-0.0021081704,-0.05513246,-0.033656154,0.006879129,-0.026397958,-0.0162688,0.04061607,0.015597664,0.02043232,0.020929456,0.06025297,-0.0014564552,0.017809922,-0.015920803,-0.0016172478,0.016865363,-0.022433294,0.01452882,0.0015768555,-0.005415683,-0.013932256,0.06497577,0.0024126666,-0.01201828,0.0015760787,0.004729013,0.013807972,-0.011912638,-0.020718172,0.008898747,0.006338493,0.013099552,0.03025077,0.015970517,0.012776413,0.00079270004,-0.012664557,0.0037285252,-0.0058382493,0.005275863,0.007612406]},{"id":"interface-GatewayChannelPinsAckDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelPinsAckDispatchData\nDescription: CHANNEL_PINS_ACK — user acknowledged viewing pinned messages\nProperties: channel_id: string, last_pin_timestamp: string | null","meta":{"url":"/docs/typedefs/GatewayChannelPinsAckDispatchData"},"embedding":[0.018629668,0.008314937,0.005250924,0.02218486,0.0046106386,0.01763562,-0.017553756,-0.014700247,-0.020079812,-0.017846124,0.03992573,0.028511697,0.0039762007,0.018033238,0.042147726,-0.01816188,-0.0024105716,0.0448609,0.019307962,0.050942145,-0.0324879,0.023482973,0.05365532,0.05800575,-0.04039352,-0.020079812,0.013893313,-0.023506362,0.02759951,-0.008466968,0.046474766,-0.032113668,0.017401725,0.019097457,0.001511541,0.024020929,-0.004864998,-0.0028257337,-0.03688511,-0.026570376,-0.034873616,0.003049395,-0.00095238775,-0.019249488,-0.019647108,-0.0025552935,-0.012045548,0.029447274,-0.003274518,0.054497335,-0.029961841,0.020723023,0.0051076636,0.039434552,-0.0012067476,0.009408392,0.058847766,0.01935474,0.010852689,-0.01677021,-0.045843255,-0.0006099521,-0.023471277,-0.0082857,0.0050141057,0.008636542,-0.07086993,0.052719742,0.0404403,0.016115308,0.03634715,0.013752976,-0.06025113,0.0005730407,-0.016021749,0.006215737,-0.034826837,0.0016445683,-0.0010415599,0.020489128,-0.029353715,0.052906856,-0.09758064,-0.058146086,0.0033534574,-0.049024213,-0.013998565,-0.019682193,-0.019892698,0.022991795,0.010946246,0.0380078,-0.031786215,0.00066294376,-0.0170158,-0.029681167,0.02715511,-0.013320272,-0.03754001,-0.005572528,0.04916455,-0.0806467,-0.08611982,-0.036019698,0.029774725,0.014103817,-0.0057333303,0.00066623284,-0.018302217,-0.00031137158,-0.021132337,0.013051294,-0.053093974,0.05842676,0.00235356,-0.01582294,0.030499797,0.010004822,0.04509479,0.05388921,-0.04362126,0.018395774,0.016910547,-0.0041311556,-0.033423472,-0.03449939,-0.0026985537,-0.020079812,-0.048182193,-0.025096843,0.026430039,0.026523596,0.020114897,0.0165714,-0.006777083,0.017799344,-0.005864896,0.016185476,-0.052205175,-0.015963275,-0.008648236,-0.022734512,0.08069348,0.017471893,0.02795035,0.010864384,-0.040159624,0.020185065,0.075407475,0.0024105716,-0.033002466,0.057912193,-0.0037159934,0.024582274,-0.021307757,0.0032365103,0.010104227,-0.026991384,-0.013133156,-0.05716373,-0.0024091098,-0.04401888,0.014513132,0.019038985,-0.04925811,0.0061455686,0.016933937,-0.021260979,-0.042966355,-0.0055315965,0.02605581,0.011934449,-0.043363973,0.002742409,0.007589865,-0.011811654,-0.010922857,-0.0074144443,-0.05084859,-0.020325402,-0.010741589,0.03230078,0.0021576735,-0.104878135,-0.020758105,-0.008297395,0.028605254,-0.0073150396,0.02064116,-0.0662856,-0.025845304,0.05169061,0.0016971944,0.0067653884,-0.020103201,-0.074565455,0.012256053,0.00078208355,0.00042174038,-0.06815676,0.002922215,-0.010437527,0.017729176,0.011881823,-0.009291445,0.012606895,0.019389825,-0.0047451276,-0.039691836,-0.020302013,0.050193686,0.019249488,0.063665986,-0.023635004,-0.017752565,0.01617378,-0.033821095,-0.016056834,-0.025798524,-0.03627698,-0.042498566,0.022722816,0.01599836,0.03316619,0.018746616,0.034546167,-0.0148639735,0.02834797,0.02561141,-0.002091891,-0.011951991,0.0030406239,0.015109562,-0.034475997,-0.020185065,-0.013004514,0.036300372,-0.014302627,-0.01109243,-0.0052246107,0.0026356948,-0.01935474,-0.016852073,0.03873287,-0.04605376,0.014478048,0.019226098,0.023833813,-0.00069291145,0.030827248,0.01935474,0.028956097,-0.017448504,-0.00092972926,-0.0038767955,-0.010151006,0.025050063,0.004812372,-0.0004433025,-0.05632171,0.056883056,-0.032137055,-0.043831762,-0.02397415,-0.03765696,0.009338224,0.05753796,-0.001021825,-0.017577145,0.005519902,0.012525031,-0.008314937,0.08438901,0.018816784,0.005554986,-0.011033957,-0.027856793,-0.012291137,-0.021073863,-0.0080108745,-0.0042597973,0.014665163,0.010642184,0.060952816,-0.036300372,0.058146086,0.007502155,-0.015717687,0.056134596,-0.023751952,-0.03272179,-0.01703919,0.021553345,-0.025330737,-0.004821143,0.042545345,0.01418568,-0.00021196657,0.031271648,-0.023903983,0.023670088,-0.03075708,-0.013402135,-0.030499797,-0.00035084123,-0.005616383,0.041843664,-0.0047889827,0.022570785,-0.03798441,0.00086175377,-0.0163492,-0.055058684,-0.002224918,-0.043013133,0.021798935,0.0034060834,0.028675422,-0.028698811,-0.008268158,-0.018851869,0.034054987,0.0047538984,-0.070215024,0.022255028,0.01763562,0.009145261,0.02216147,0.07405089,0.018512722,0.019845918,-0.022886543,0.026172755,0.03129504,0.0059467587,0.022722816,-0.024137877,0.015986664,-0.051784165,0.005999385,0.010817604,-0.010519389,-0.021331146,0.007706812,0.033002466,-0.0150744775,-0.055339355,0.023506362,-0.0008317861,0.0038358641,0.0014106741,0.018337302,-0.0025041292,-0.039808784,-0.00799918,-0.0019252412,0.04076775,-0.011881823,-0.040931474,0.037142392,-0.007934859,0.0008018184,-0.0037101458,0.0038358641,-0.023108741,-0.062215842,-0.06389988,-0.03948133,-0.012150801,-0.030523187,0.022769595,0.01241978,-0.059409115,0.0067653884,0.02141301,0.022231638,-0.027716456,-0.009852791,-0.0012454863,-0.0031312578,0.01781104,-0.014033649,0.06820353,0.035411574,0.02260587,0.012454864,-0.03122487,0.03354042,-0.019366436,-0.0026108434,-0.016091917,-0.028511697,-0.012946041,-0.008829504,-0.0042013237,0.009040009,0.0038972613,-0.020956915,0.047316786,-0.006163111,-0.032955687,0.039364386,0.03192655,0.019296268,0.009952196,0.010548626,-0.03515429,0.028652033,0.051456712,0.017682398,0.034826837,-0.013156546,0.027248668,0.02317891,0.02278129,-0.072039396,0.0055315965,0.0046281805,-0.011683012,0.024137877,-0.00919204,0.00919204,0.00439721,0.0066542886,0.009735844,-0.004043445,-0.0051982976,-0.008402647,0.048462868,-0.07306853,-0.025096843,0.024371771,0.033774316,-0.032628234,0.040136237,-0.049351666,0.047620848,-0.0028535086,-0.043363973,-0.039060324,-0.027084943,-0.0039937426,-0.02923677,0.01661818,-0.04116537,0.009648134,0.00256845,0.00059021724,0.012185886,-0.0052070683,-0.04879032,-0.030078787,-0.049866233,0.03917727,-0.0649758,0.0070519084,-0.0056865513,0.09304309,-0.05000657,-0.006777083,-0.015203119,-0.018863562,0.006087095,0.06848421,-0.020033034,0.0049439375,-0.04916455,0.026266312,-0.010343969,0.008788573,-0.0038563297,0.013495692,0.04745712,0.058613874,-0.030312682,-0.01898051,0.010683116,-0.017062578,-0.0042831865,-0.027810015,-0.030242514,0.021553345,-0.0033885415,0.021436399,0.013226714,0.092855975,0.022149775,0.017144442,0.0051427474,0.015086173,-0.025704967,-0.016887158,-0.000028003342,-0.01160115,0.014033649,-0.00049958326,-0.011548524,-0.027459173,0.031762827,0.0020685014,0.017682398,0.005861972,0.03873287,-0.04233484,0.015413624,0.038054578,-0.024816168,0.011554371,-0.028137466,-0.033517033,0.018103408,0.0069875875,-0.04362126,-0.028277803,-0.054123107,0.020185065,-0.014559911,0.003239434,-0.009671523,0.016208865,0.011916907,0.009057551,0.021915881,0.0227579,-0.0023243232,0.0047831354,-0.030593354,-0.046638492,-0.0256348,0.0055871466,0.020348791,-0.043925323,-0.018723227,0.014934141,0.008531289,0.030055398,-0.0093031395,-0.0088821305,-0.013893313,-0.014396185,0.035809193,-0.026172755,-0.012677063,-0.036627825,0.013156546,-0.014349406,0.024746,0.015413624,0.0044936915,0.022102997,-0.012267748,-0.04362126,0.02441855,-0.011472508,0.024161266,0.0011278084,-0.036627825,-0.03398482,0.016162086,-0.0041106897,-0.00076161785,-0.013004514,-0.026546987,-0.02921338,0.0011606998,0.060952816,0.017448504,-0.007683423,0.00012562674,-0.005122282,0.009221277,0.043831762,-0.010811757,0.009098482,0.0324879,0.015062783,-0.050988924,0.007934859,0.02839475,-0.025400905,0.024137877,-0.05669594,0.030499797,0.03599631,-0.016103612,0.023143826,0.031505544,-0.027903572,-0.030850638,0.018641364,-0.044276163,-0.014337711,0.005569604,0.03966845,-0.034709893,0.030148955,-0.018863562,0.002452965,-0.010022365,0.014945836,-0.0004897159,0.027646288,-0.044229385,0.0014486819,0.04752729,0.0479483,-0.013600945,0.0060403165,-0.024067707,0.013776366,-0.008864588,0.02991506,0.0017395878,-0.007771133,-0.029400494,0.012665369,-0.020477433,0.019845918,-0.003827093,0.024512107,-0.015951581,0.029283548,-0.00709284,0.030453019,0.005908751,0.044977844,-0.026032418,-0.020863358,0.02200944,-0.005707017,0.019530162,-0.027903572,-0.008542984,-0.012057244,-0.013612639,-0.01840747,0.013940091,-0.014045344,0.030686913,-0.0024558885,0.015413624,0.019927781,0.011145056,0.0110456515,0.028605254,-0.009794317,0.031411983,-0.010490153,-0.022442143,0.025096843,-0.04320025,-0.025307346,0.032675013,-0.0061221793,0.031341817,-0.03627698,-0.029306937,0.038498975,-0.014828889,-0.0023901057,-0.015963275,-0.010952094,-0.003066937,0.0038563297,-0.006958351,-0.011718097,-0.012232664,-0.012840789,-0.0020597305,-0.011466661,-0.016255643,0.008724252,0.025237178,0.0043211943,-0.022032829,0.012443169,-0.018068323,0.0040756054,0.011536829,-0.00137559,0.06357243,0.04032335,-0.017074272,-0.007987485,0.014770416,-0.025704967,0.07255396,-0.00078208355,0.0010276724,-0.01438449,0.014828889,0.024535496,0.0145949945,0.009806012,0.0016591867,0.020992,0.017004104,0.007157161,-0.019565245,-0.01796307,-0.028745592,-0.0111976825,0.011449119,-0.020769801,0.027084943,0.00017706519,0.03599631,-0.014068733,0.032441117,-0.0024646595,-0.01239639,0.014770416,-0.018898647,0.021401314,0.0011687399,-0.014349406,-0.051830944,0.014618385,0.018068323,-0.014115512,0.009121872,0.0031634183,-0.017331557,0.02243045,0.022301808,-0.006759541,0.015717687,0.035318017,-0.013425524,0.027880182,-0.0044439887,-0.010817604,0.028885927,0.015366846,-0.013752976,0.028043909,0.011683012,-0.006005232,-0.0034704045,0.0076015596,0.03075708,-0.013998565,0.031248258,-0.02958761,0.03442922,0.0021591354,-0.04443989,-0.016524622,0.00010214596,-0.0005554986,0.02317891,0.006280058,-0.038288474,0.021003695,0.0012710685,0.034569554,0.0010276724,-0.027131721,-0.013156546,0.0056076124,-0.031154701,0.012115717,-0.0066484413,0.022535702,-0.013273493,-0.015589045,-0.011729792,-0.022056218,0.0185595,0.0037773906,-0.005394184,0.0029339097,0.011723944,0.015051088,0.036721382,-0.013799755,0.0013522005,-0.013378745,-0.04156299,0.019413214,-0.02002134,-0.039691836,-0.025798524,-0.033400085,0.029540831,-0.01140234,-0.020711327,-0.028605254,-0.043738205,0.037119,-0.022091303,0.02879237,0.0020787343,-0.00609879,0.019237794,-0.030593354,0.02516701,-0.08102094,0.021038778,0.015238204,0.010940399,-0.016863769,-0.02876898,0.029540831,0.07185228,0.00414285,-0.081254825,0.009197887,0.015273288,-0.017752565,-0.05519902,0.013565861,-0.021822324,0.019050678,-0.008630694,0.02598564,0.009864486,-0.011308782,0.0058122696,-0.038171526,0.04682561,-0.003420702,-0.033353306,-0.026125977,0.05075503,0.046521544,-0.017413419,0.017074272,-0.015355151,0.034101766,0.017261388,0.03957489,0.016501233,0.0003745961,0.010343969,0.0011431576,-0.03321297,-0.010028211,-0.012618589,-0.031856384,-0.005227534,0.021950966,0.0013112691,0.0014048268,0.036300372,-0.023716867,0.0022117617,-0.021062167,-0.01500431,0.0050258003,-0.0010707966,-0.0032774417,-0.0038972613,-0.018840173,0.009858638,-0.009794317,-0.010846841,0.045305297,0.030032009,0.032207225,-0.0027921114,0.03202011,-0.03237095,-0.015846329,-0.041352484,0.01560074,0.019343046,0.0037013749,0.026921216,-0.008689168,0.0029105204,-0.0037101458,0.048509646,-0.011221072,0.0008800267,0.0031634183,0.01778765,-0.008893825,0.034826837,-0.00868332,-0.017834429,0.01001067,-0.021296062,-0.019413214,0.0065197996,0.030944197,-0.028722202,0.030172346,-0.035341404,-0.009613049,0.037399676,0.01597497,0.0022833915,-0.014080428,0.033821095,-0.029423883,-0.032230616,0.014770416,-0.032090276,-0.018021544,-0.042919576,-0.048603203,-0.025330737,0.017156135,0.019857613,0.008127822,0.030733692,0.005926293,0.01999795,-0.0066367467,-0.009911264,-0.006531494,-0.026500206,-0.012256053,0.009601355,0.0082213795,-0.028324582,-0.00065453816,-0.02923677,-0.00204365,0.0031283342,-0.011010567,0.044884287,-0.01840747,-0.034897007,0.010630489,-0.011975381,-0.004750975,-0.009116025,-0.019471688,-0.019495077,-0.001846302,-0.036160037,0.03321297,0.031552322,-0.006016927,0.013881618,0.010887773,0.023927372,0.007385208,0.037493233,-0.06305786,0.006227432,-0.027248668,-0.03194994,0.015460404,-0.029494053,0.0139634805,-0.0131214615,0.0062566684,0.016910547,-0.03915388,0.034148544,-0.04355109,0.03265162,0.01798646,0.043223638,-0.0051252055,0.042685684,-0.018348996,0.03838203,-0.011694708,-0.0024032623,-0.018699838,-0.002669317,-0.024301602,0.043831762,-0.0063034473,0.011209377,0.037212558,-0.016957326,-0.01754206,0.04995979,0.047737796,-0.003926498,0.00978847,-0.01438449,0.019693887,0.033306528,-0.016898852,-0.011753181,0.030078787,-0.023564836,0.033938043,-0.0055608335,-0.024161266,-0.01739003,-0.010829299,0.04549241,0.0647419,0.005435115,0.009940501,-0.014279238,0.021611819,0.025307346,-0.02158843,0.016758516,0.03033607,0.00010497827,-0.015355151,-0.013378745,0.027856793,-0.012232664,-0.016056834,0.0076132547,-0.0074202917,-0.008268158,0.020933526,0.009613049,-0.047784574,0.002796497,-0.0032452813,0.017284777,0.0048766932,-0.00023590418,-0.024091097,-0.013039599,0.01975236,-0.00539126,-0.02176385,0.06235618,-0.021003695,0.012349611,-0.007899775,-0.033096023,-0.02441855,-0.00094946404,0.037025444,-0.014489743,-0.02017337,0.008648236,0.007876386,-0.015086173,-0.014150596,0.008665779,0.031061143,0.006367768,0.0030435475,-0.0004904468,-0.023155522,-0.0059145982,0.011185988,-0.021915881,-0.019483382,0.015787855,-0.02720189,-0.019530162,-0.007508002,0.022255028,0.027903572,-0.0072682607,-0.0056426963,0.00003652312,-0.0144429635,-0.020559296,0.006180653,0.02516701,-0.0017659009,0.010162701,0.019904392,-0.037820686,0.020290317,-0.005841506,0.011396493,0.014489743,0.0031078686,0.013624334,0.029073043,0.0117064025,0.01378806,-0.010817604,0.007239024,-0.0015027699,-0.047059502,0.006613357,-0.009770928,0.041773494,-0.013215019,0.007572323,-0.011636234,-0.0064379363,-0.00022658496,0.014723637,0.00034298384,-0.016653264,-0.013039599,-0.016922241,0.034522776,0.009156956,0.00005833649,-0.0380078,0.022021133,-0.012677063,-0.019939477,0.008168753,0.029610999,-0.009355766,-0.02064116,-0.0066016624,0.007046061,-0.020056423,0.023389416,0.0006728111,0.020231843,0.01319163,0.035411574,0.003321297,0.003929422,-0.047386955,-0.006876488,-0.011811654,0.029260159,0.0062742108,-0.028231025,-0.05108248,0.036861718,-0.013343661,-0.008414342,0.0012454863,0.006502257,-0.0065548834,0.006028622,-0.010227022,0.008899672,0.009835249,0.00011703844,-0.008110279,0.003520107,-0.039738618,0.0267341,0.0059672245,0.0026532367,0.038873207,-0.018419165,0.0110164145,-0.0018536111,-0.0064847153,-0.007554781,0.023494666,0.022874847,0.045656137,-0.021869102,-0.02158843,0.021284368,-0.02432499,-0.013846533,-0.018419165,0.058660652,-0.009069245,0.046240874,0.030546576,-0.0017030417,0.0069525037,0.002669317,0.012665369,-0.015530571,-0.0041662394,0.028675422,0.026687322,-0.035809193,-0.02605581,0.013717892,-0.00038775263,0.0025172858,-0.0004242986,0.035481744,-0.03075708,0.028605254,0.039387774,-0.010127617,-0.01739003,-0.042545345,-0.036230203,0.016442759,0.007888081,0.0041457736,0.025938861,0.005683628,-0.0066250516,-0.012291137,0.0054789702,-0.049866233,0.017752565,0.00091218716,-0.0009092635,-0.00092095823,-0.016454453,0.023494666,-0.04163316,0.010460916,0.0049819453,-0.016887158,0.015472098,-0.03281535,-0.037306115,-0.002534828,-0.024722612,0.021085558,0.002407648,-0.0017176601,-0.042545345,-0.0023023956,0.016232254,0.0054965126,0.032230616,0.0079816375,-0.003952811,-0.016559705,-0.014910752,-0.03754001,0.0022731589,0.042521957,0.020114897,-0.01087023,0.0095721185,0.00941424,0.018653058,0.00034974483,-0.005204145,0.003637054,0.0055403677,-0.009121872,-0.045702916,-0.0048006773,-0.028043909,-0.014828889,0.033002466,0.03627698,0.0076483386,-0.006730304,0.008537136,-0.056883056,0.020781495,0.009461018,0.01933135,0.010419984,-0.036487486,0.01880509,0.0063385316,-0.0154370135,0.01838408,-0.0052684657,0.009642286,-0.008408494,0.017132746,-0.011367256,-0.011466661,-0.015132952,0.010028211,-0.008712557,-0.00031411252,-0.01677021,-0.0131214615,0.004578478,-0.016255643,-0.017121052,-0.029260159,-0.009893723,-0.030148955,0.02019676,-0.0009845482,-0.0519245,-0.04836931,0.015144646,-0.052158397,-0.016606485,0.004274416,0.013717892,0.042942967,0.03442922,-0.0025260567,-0.0039148033,0.0037393826,0.04563275,0.01460669,-0.0043299654,0.004315347,-0.013647724,-0.0029996925,0.022652648,0.004704196,0.0106071,0.0048006773,-0.03042963,-0.018009849,-0.011589455,0.0054965126,0.022769595,0.0037773906,-0.01418568,-0.014770416,0.008800267,0.018594585,0.02998523,-0.023681782,-0.0006296869,0.024278212,0.0040580635,-0.0022336892,-0.018547807,-0.0012118641,0.0023491743,-0.02114403,0.024558885,0.00038409804,0.011741486,-0.0069232667,0.023541447,-0.050708253,-0.050240465,-0.04235823,0.0028944402,0.011893517,-0.026593765,-0.0035990463,0.018033238,0.021939272,-0.0046457225,0.015261593,0.0038826428,0.028067298,0.0058590486,0.0080693485,-0.0059935376,-0.0205476,-0.053093974,-0.038873207,-0.0094844075,-0.02558802,0.01880509,0.0027365615,-0.021459788,0.034709893,-0.0072156345,-0.016431063,0.010688962,-0.011168445,0.014536521,-0.0045463177,-0.0021050475,-0.014279238,-0.021728767,-0.022512311,0.0023637929,0.030686913,-0.008969841,0.028488308,-0.032441117,0.01840747,0.009308987,0.007899775,0.031037753,-0.005093045,-0.01517973,-0.027505953,0.006268363,-0.031248258,-0.013285188,0.017705787,0.023482973,0.0011007644,-0.032979075,0.023190605,-0.0026181526,0.030453019,-0.009841097,0.004721738,0.014033649,0.0010773749,0.0123379165,-0.035318017,-0.010981331,0.013144851,0.0232023,-0.023880593,0.011975381,-0.0326984,0.019483382,-0.037727125,0.019518467,-0.008648236,-0.004560936,-0.01018609,-0.0052392287,0.017553756,-0.009794317,0.013519082,-0.0055403677,0.012115717,-0.006034469,-0.033517033,-0.019927781,0.024231434,-0.009577965,-0.015062783,-0.027084943,0.003926498,0.010981331,0.02379873,0.012677063,-0.053795654,-0.0071337717,0.020114897,0.016875463,0.009273903,-0.0013470841,0.0060754004,0.021366231,0.0052860077,0.022091303,-0.016115308,0.027716456,0.008081043,-0.005283084,0.016477844,-0.0022293036,0.002262926,-0.011536829,0.0026035341,-0.0232023,0.012735536,0.015214815,-0.019962866,0.021798935,-0.009373308,0.004903006,-0.02675749,-0.010811757,0.038171526,-0.0077652857,-0.025845304,0.006233279,0.009893723,-0.0013514697,-0.029330326,0.012677063,0.021459788,0.015986664,-0.0006187231,-0.007174703,-0.0048006773,0.020921832,0.02061777,-0.011355561,-0.0041574687,0.030289292,0.017249694,0.008490358,-0.0039411164,0.030032009,0.009537034,0.01089362,0.004996564,0.005476047,-0.0037452301,-0.025494462,-0.01319163,0.025564631,0.0032160445,-0.01820866,0.005002411,0.021097252,-0.004458607,-0.0078120646,0.016337506,0.03681494,-0.002397415,0.016279032,0.0106071,0.000091410584,-0.013308577,0.044954456,0.0123379165,-0.020126592,0.014817194,0.047129672,-0.0001330273,0.0047012726,-0.025658188,-0.02131945,-0.0093031395,0.014934141,-0.018688142,-0.056836277,-0.023015184,-0.0138114495,0.0050550373,-0.057678297,-0.031318426,0.010232869,0.005481894,0.010829299,0.03632376,-0.023763645,0.008841199,-0.019097457,-0.019097457,0.015027699,0.0040551396,-0.008531289,0.016875463,0.018173575,0.0064203944,0.01177657,0.022991795,0.040954866,-0.026991384,-0.013694502,-0.046942554,-0.024091097,0.018571196,0.0097241495,0.032090276,0.0061572636,0.03870948,-0.0057187118,0.024020929,-0.024629055,-0.0071980925,-0.021483177,0.0033183733,-0.00768927,0.011922754,-0.035739027,-0.015705992,0.0072682607,0.009308987,0.025845304,0.035902753,-0.050287243,0.009209583,0.028839149,-0.0020772724,-0.043691427,0.023143826,0.016501233]},{"id":"interface-GatewayChannelPinsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelPinsUpdateDispatchData\nDescription: CHANNEL_PINS_UPDATE — pins in a channel changed.\nProperties: channel_id: string, guild_id: string, last_pin_timestamp: string | null","meta":{"url":"/docs/typedefs/GatewayChannelPinsUpdateDispatchData"},"embedding":[0.011540621,0.013557428,0.0019131659,0.0051428587,0.01136695,0.024896367,-0.011361348,-0.021658272,-0.013277316,-0.013927176,0.016481798,0.03137256,-0.0074789943,0.03805043,0.043495815,-0.017120454,-0.024134463,0.035182085,-0.0062128874,0.027383763,-0.05875632,-0.006296921,0.07058826,0.07515969,-0.018812332,0.0060056043,0.033232506,-0.00669468,0.026957992,0.025680682,0.073008426,-0.020862753,0.04573671,0.0068179294,-0.014207288,0.03486836,-0.027002811,0.010011208,-0.021501409,-0.023439784,-0.019529419,0.002378152,-0.023663875,-0.002777312,-0.02942298,0.0041456595,-0.014274515,0.014285719,-0.01601121,0.056336153,-0.026464995,0.019103648,-0.0097647095,0.038745113,0.0023137263,0.02190477,0.031081242,0.005837537,0.017669475,0.001963586,-0.018980399,-0.017871154,-0.012896363,-0.03327732,0.01361345,0.032761917,-0.07403924,0.054991614,0.058352962,0.0024075639,0.039708696,0.025859954,-0.035159677,0.015383759,-0.023260511,0.0071540643,-0.06301403,-0.020694684,0.009535017,0.038677886,-0.029086845,0.038274523,-0.08094121,-0.052436993,-0.0044565843,-0.026733903,-0.01743418,-0.037557434,0.021994406,0.020593844,0.008431376,0.016291322,-0.05207845,0.0027787124,-0.042128865,-0.05225772,0.04118769,-0.0035686288,-0.06184876,0.026263315,0.0601905,-0.07753504,-0.06749582,-0.027070038,0.008560227,-0.012661069,-0.03379273,0.0045350157,-0.033837546,-0.024000008,-0.026532222,0.013557428,-0.06704764,0.042801134,-0.0011232496,-0.017299727,0.060504224,0.016481798,0.046565842,0.008890759,-0.054722708,0.0055238116,0.018285722,-0.011831937,-0.0013816531,-0.024448188,-0.004134455,-0.026375359,-0.026196087,-0.028235303,0.03439777,0.0063865567,0.017714292,0.035002813,0.013422973,0.00016193984,0.0008984597,0.015316532,-0.04723811,-0.048044834,-0.01176471,-0.014240901,0.059742317,0.010761908,0.0046554636,0.0008550423,-0.025456592,0.034689087,0.048044834,0.018375356,-0.05427453,0.051943995,-0.018577037,0.042935587,0.013691882,0.021770315,-0.01588796,0.0034089647,-0.029960794,-0.042733908,0.00077871175,-0.014140061,0.01111485,0.022218496,-0.01940617,-0.039798334,-0.0023207292,-0.0071372576,-0.0649412,-0.017053228,0.046207298,-0.032784324,-0.049523827,0.030162476,0.0083137285,-0.01041457,-0.035675082,-0.02143418,-0.05857705,-0.012302525,0.012649864,0.03249301,-0.02280113,-0.07014008,-0.009803925,0.008011207,-0.0006036417,0.011843141,-0.0070140082,-0.06664428,-0.017938381,0.023462193,0.022431381,0.02812326,0.0024467795,-0.047596656,0.016728297,-0.007159666,0.023708692,-0.060280133,0.013624655,-0.039977606,0.031148471,0.0072549046,-0.011322133,0.0068851565,0.024022417,-0.02135575,-0.042218503,0.0038627465,0.025635863,0.028190486,0.027585443,-0.015204487,-0.030386565,0.008997202,-0.027294127,-0.0127619095,-0.015226896,-0.041770324,0.0029831943,0.008095241,0.008851544,0.027988805,0.0034453794,0.03394959,-0.016952386,0.03155183,0.04268909,0.010896362,0.00068907585,-0.01089076,0.016347345,-0.046072844,-0.023238104,-0.013915971,0.02265547,0.0021288523,-0.008577034,-0.014756308,-0.021479,-0.012537819,-0.058980413,0.042352956,-0.051719908,0.02135575,0.030655473,0.020873956,-0.0096694715,0.041680686,0.02812326,0.030319339,-0.0008921572,-0.012493001,0.004633055,-0.021064432,0.04161346,0.006896361,0.028302532,-0.020963592,0.070408985,-0.034487408,-0.05382635,-0.033658274,-0.026061634,-0.009630255,0.047865562,0.04701402,-0.035428584,-0.022991605,0.042151276,0.0061008423,0.070722714,-0.02188236,0.015966393,-0.012862749,-0.019462192,0.026935583,-0.015473395,-0.04073951,-0.018420175,0.018565834,0.0058263326,0.0771765,-0.03831934,0.044190492,-0.0021918775,0.015450986,0.05315408,-0.018812332,-0.04078433,0.020817934,-0.021445386,-0.0045742313,0.011473393,0.04492999,0.0097423,-0.012168071,0.012683478,0.010952385,0.010151264,-0.035787128,-0.02877312,-0.038745113,0.0029579843,-0.014095243,0.03249301,-0.034375362,0.011260509,-0.04484035,0.0061288537,-0.0043165283,-0.028033623,-0.007949582,-0.019753508,0.00482073,-0.004708685,0.050061643,-0.03269469,0.018173676,-0.016347345,0.01820729,-0.0061288537,-0.058263324,-0.008812328,0.0062408987,0.014946784,0.03242578,0.060683496,0.032358553,0.01588796,-0.03959665,0.017602246,0.005633055,-0.0060784337,0.043607857,-0.024380961,0.022184882,-0.010061628,-0.014151266,0.0056890775,0.00047829148,0.015585439,0.009658267,0.06413448,0.0034089647,-0.048806738,0.029960794,0.0014621854,0.025479,0.009512608,0.031081242,0.0038263318,-0.043719903,-0.035428584,-0.021266114,0.044907577,0.0032240907,-0.034801133,0.018117653,-0.010268911,0.014151266,-0.010481796,0.018689083,-0.0065826355,-0.058711506,-0.030476201,0.004997201,-0.011305326,-0.023058832,-0.0036302535,-0.020997206,-0.049568646,0.00028641467,0.02332774,-0.0063753524,-0.018554628,0.0010126054,-0.019025216,-0.022868356,-0.006750703,0.023775918,0.054364163,0.026845947,0.03442018,0.039574243,-0.0067955204,0.0052913185,-0.010442581,-0.00696919,-0.0055966405,-0.03094679,-0.016941182,-0.014767512,-0.024739504,0.009030815,0.02265547,0.020201689,0.04165828,0.0029972,-0.018801127,0.02657704,0.021042025,0.0018081239,0.006207285,0.05337817,-0.00904202,0.026487404,0.064627476,0.010173673,0.0058767525,0.0036750713,0.033210095,0.028840346,0.045848757,-0.061131675,-0.019126058,-0.017994404,-0.024784323,0.03818489,-0.008162468,0.002929973,0.02919889,0.016347345,0.016123256,-0.031126061,-0.009086838,-0.019775918,0.027002811,-0.07099162,-0.04710366,0.03876752,0.046834752,-0.025725499,0.054543436,-0.059563044,0.032605052,-0.023081241,-0.0044958,-0.0014222694,-0.049792733,0.01653782,-0.005775912,0.03876752,-0.01942858,0.037198894,0.010784318,-0.0071428595,0.010722693,-0.0026190486,-0.027338944,-0.0100952415,-0.03143979,0.0601905,-0.03504763,0.0015756309,-0.018364152,0.04513167,-0.053109262,-0.015652666,-0.030319339,0.022218496,-0.001476191,0.044593852,-0.013770313,0.02355183,-0.041299734,0.030431382,-0.016257709,0.00926611,-0.0038235309,0.009680675,0.03901402,0.067944,-0.014184879,-0.0140728345,-0.015148465,-0.005938377,0.002974791,0.019663872,-0.046162482,-0.00019467794,-0.021893565,0.007854344,0.02265547,0.07798322,0.0070364173,0.030453792,-0.019529419,-0.0036470601,-0.01926051,-0.014554627,-0.0050420184,-0.009932777,0.026509814,0.023103649,-0.023708692,0.010011208,0.038207296,-0.0009334737,0.020246506,-0.0127619095,0.04416808,-0.011434178,0.021366954,0.037378166,-0.00801681,0.008845941,-0.031910375,-0.021210091,0.01406163,0.0037422983,-0.011226894,-0.044504218,-0.025434183,0.0012149864,-0.005742299,-0.005815128,-0.011243701,0.05122691,-0.005168069,0.025747908,0.030453792,0.034330543,0.012896363,-0.008274512,-0.017445384,-0.08932216,-0.017714292,0.00022741605,0.021669475,-0.043182086,-0.0076190503,0.04965828,-0.004285716,0.0072997226,0.0014523815,-0.01136695,0.0036834746,0.0033977602,0.0029019618,0.005854344,-0.0212325,0.010459388,0.019630259,0.0005717789,0.016403368,0.030677881,0.0016764712,0.020885162,0.013109248,-0.03708685,-0.00831933,-0.0011141461,0.020851549,0.014207288,0.007322131,-0.017355748,0.0016204488,0.02210645,-0.013691882,-0.0105154095,-0.021815134,-0.04011206,-0.0012457988,0.04035856,0.008229694,-0.02190477,-0.016224096,-0.015383759,-0.013983198,0.029467797,0.009507006,0.0073501426,0.05382635,0.039058838,-0.052123267,0.027182082,0.033389367,-0.027518217,0.03641458,-0.096896395,0.04156864,0.03545099,-0.04098601,0.025523819,0.022812333,-0.044549037,-0.017994404,0.023574239,-0.051899176,0.017299727,0.025725499,0.01863306,-0.005011206,0.023103649,-0.015260509,0.0017703087,-0.017266113,0.014196083,-0.019238101,0.013400565,-0.030252112,-0.0058767525,0.026039224,0.04903083,-0.008257706,0.02812326,-0.03403923,0.020145666,-0.019450987,0.026509814,0.0084537845,-0.00021638663,-0.0076078456,-0.009725493,-0.018666673,0.03511486,-0.016963592,0.012672273,-0.0063865567,0.026061634,-0.006296921,0.028683484,0.015495804,0.040201694,-0.005033615,-0.01136695,0.0070924396,-0.019887961,0.007221291,-0.054588255,-0.033591047,-0.016224096,-0.021792725,-0.0053165285,0.012537819,-0.025725499,0.024941185,-0.012649864,0.02745099,0.022263313,-0.0017226897,0.013949585,0.031215698,-0.0043893573,0.03332214,-0.018464992,-0.015675075,0.018924376,-0.026196087,-0.028280122,0.031170879,-0.008683477,0.034308136,-0.040224105,-0.044705898,0.04791038,-0.025165275,-0.030386565,-0.02330533,-0.028952392,0.00084313756,0.011019612,0.00017025566,0.0005164568,0.009282917,0.0031484605,0.0010049023,0.0057002823,0.00010801825,0.025434183,0.021098047,0.019540623,-0.0055518225,0.013299724,-0.011047623,-0.022117656,0.005123251,0.03354623,0.0601905,0.038633067,-0.019394964,-0.0212325,0.023686282,-0.018229699,0.049972005,0.013142861,0.0000035041373,-0.00080532243,0.0002095589,0.057232514,0.0074453806,-0.0119888,-0.009686278,-0.0035406174,0.020661071,0.005532215,-0.0062633073,-0.018173676,-0.0087843165,-0.002028012,0.0015938381,-0.009422973,0.010700284,0.013445383,0.021299727,-0.011876754,0.020627458,0.0031344548,-0.009299723,0.024336142,-0.02070589,-0.00367227,0.002305323,0.0006257005,-0.049747918,0.02013446,0.01143978,-0.012302525,0.016470594,-0.010313729,-0.009070031,-0.01785995,0.023215694,-0.015372555,-0.015002807,0.02879553,-0.040246513,-0.009792721,-0.026711494,0.015103647,0.013165271,0.008638659,-0.0016624655,0.029579842,0.021770315,0.0050616264,-0.010324934,0.010733897,0.022946786,0.0100000035,0.028436985,-0.025389364,0.056470606,0.0043641473,-0.015282919,-0.0011827735,-0.017064432,0.0069747926,0.00046673685,0.0052717105,-0.043652676,0.028952392,0.0013221293,0.006565829,0.0009432776,-0.03092438,0.008543421,0.01863306,-0.0062857163,0.011484598,0.010436978,0.024089644,-0.01830813,-0.010896362,-0.019876758,-0.011563029,0.0040980405,0.04329413,-0.015294123,-0.009994402,0.00045588252,-0.008649863,0.022117656,-0.025949588,-0.005100842,-0.028190486,-0.0187339,0.0061176494,-0.010571432,-0.021624658,-0.034106456,-0.028056033,0.033411775,0.01830813,-0.017478997,-0.03549581,-0.031036425,0.04073951,-0.013490201,0.038005617,0.0011085438,0.01936135,0.011977595,-0.018375356,0.039327744,-0.0639552,0.024739504,0.029669479,0.021098047,-0.005092439,-0.043921582,0.032380965,0.070005625,0.014700285,-0.07520451,0.029221298,0.015507008,-0.027831942,-0.022621857,0.038117662,-0.008162468,0.013624655,0.00035836847,0.032089647,0.0024509812,-0.0050476207,0.026980402,-0.032089647,0.017288521,-0.0040532225,-0.030386565,-0.0066106464,0.019126058,0.034845952,-0.007288518,0.041904777,-0.01608964,0.012985999,-0.010050423,0.025411773,0.02092998,0.0040392173,0.023843145,0.0044873967,-0.02060505,0.0021708691,-0.01950701,-0.01960785,0.0071428595,0.024313735,-0.0065490217,0.0035574243,0.013859949,0.0027170877,0.021658272,-0.043204498,0.005591038,0.028638665,-0.009014009,-0.0028963597,-0.014184879,-0.025837544,0.017523816,-0.011787119,0.002215687,0.06332775,0.027137265,0.026845947,-0.021243704,0.013322134,-0.025008412,-0.024425779,-0.05234736,0.013120453,0.015204487,-0.00022986703,0.026084043,-0.022386562,0.0129523855,-0.019518213,0.06507565,-0.033232506,-0.010633057,0.010145661,0.011798323,0.013568632,0.034173682,0.005815128,-0.008380955,0.022296926,-0.026196087,-0.030565837,-0.013792722,0.027137265,-0.0194846,0.01633614,-0.031529423,-0.011394962,0.032336146,0.017501406,-0.00784314,0.017266113,0.0062240916,-0.05678433,-0.006666669,0.0057703103,-0.015092442,0.0022114853,-0.058084056,-0.039148472,-0.017680679,0.013277316,0.034487408,0.0021918775,0.026308132,0.010268911,0.04376472,-0.0020518214,-0.0073053245,-0.025120458,-0.04053783,-0.012123253,0.00063655485,0.04199441,-0.01296359,0.00422129,-0.029042028,-0.024291325,-0.022610651,-0.014924375,0.07798322,-0.0034649873,-0.011221292,0.008464989,-0.013658268,0.008481796,-0.03661626,-0.026263315,0.004081234,0.0040280125,-0.026666677,0.031126061,0.016280118,-0.005462187,0.02657704,0.0028445388,0.005260506,-0.022812333,0.017098045,-0.010285717,0.0049215704,-0.021871157,-0.025075639,0.010179276,-0.019787122,0.023462193,-0.04116528,-0.017299727,0.02080673,-0.03184315,0.013557428,-0.039417382,0.040672284,0.013859949,0.016616253,0.016380958,0.034285728,-0.010997203,0.028840346,-0.041747913,0.009507006,-0.00026838246,-0.012593842,-0.03789357,0.013445383,-0.0015140062,0.024268916,0.01056583,-0.015495804,-0.016649866,0.05028573,0.03939497,-0.009826334,-0.0009978996,-0.012000004,0.019204488,0.0012205887,-0.01481233,-0.03424091,0.029266117,-0.016436981,0.032000013,-0.011187679,-0.012347343,-0.018498605,-0.022184882,0.050823547,0.03814007,0.02615127,0.011831937,-0.03029693,0.019966394,0.014431378,0.005092439,0.00004508055,0.06458265,-0.006750703,-0.011787119,0.0018445385,0.020358551,-0.013176476,-0.023081241,0.011361348,0.0020098046,0.009193281,0.033254914,0.011103645,-0.0030812335,0.009215689,-0.021344544,0.019574236,-0.006649862,-0.010128855,-0.008599442,-0.009518211,0.033165276,-0.007731095,-0.02155743,0.026621858,-0.016179277,-0.013445383,-0.023686282,-0.023596646,-0.03157424,-0.007064428,0.0077142883,0.003411766,-0.018621854,0.0060952404,-0.0025168075,-0.008386558,-0.008543421,0.020773116,0.0047619063,0.03966388,0.019675076,-0.0039355755,-0.012302525,-0.029803932,0.0011722693,-0.0012394963,-0.028212896,0.017915973,-0.015450986,-0.013310929,-0.010442581,0.035607856,-0.0100000035,-0.017266113,0.021691885,0.006941179,-0.013378156,0.002557424,-0.01001681,0.0042801136,-0.008526614,-0.023731101,0.0002300421,-0.027383763,0.014801126,-0.0057535036,-0.007266109,0.008308127,-0.0015476196,0.0076750726,0.035137266,0.038901974,0.017075635,-0.017422976,-0.0038963598,-0.0051764725,-0.06516529,0.023439784,-0.005490198,0.03442018,0.00041071442,0.017378157,0.0003956584,-0.004501402,-0.029893568,-0.026330542,0.00046463602,0.010778715,-0.022408972,-0.012358548,0.03164147,-0.006481795,0.0050728307,-0.057770327,0.009568631,-0.015529417,-0.02007844,0.008935577,-0.0014159669,-0.02592718,-0.0147787165,-0.000766807,-0.0077815154,0.018252106,-0.017277317,0.017501406,0.0017493003,-0.00397199,0.0272269,-0.0075518233,0.003899161,-0.04233055,-0.021848748,-0.011238099,0.032156873,0.025075639,-0.006991599,-0.05364708,0.031686287,-0.0056190495,0.016986,0.011753505,0.008638659,-0.0061456603,-0.01094118,-0.016728297,0.0010917371,0.0019313733,0.025658272,-0.014599445,0.011002805,-0.03834175,0.0078039244,-0.0011883758,0.014834739,0.033030823,0.005162467,0.0012009809,0.0076862774,0.003344539,-0.03179833,0.022196086,-0.0046918783,0.027563035,-0.0032268919,-0.012347343,0.008795521,-0.00031740207,-0.003851542,-0.010817931,0.05947341,0.009574233,0.038476203,0.03309805,0.009736698,0.024291325,-0.010711488,0.00058193295,-0.024761913,-0.044571444,0.012425775,0.03636976,-0.02017928,0.012705887,0.027338944,-0.001071429,-0.02415687,-0.0029495808,0.023932781,-0.04069469,0.020336142,0.015865551,-0.024672277,-0.0013760509,-0.028683484,-0.03029693,0.025971998,-0.002882354,-0.01039216,0.018319335,0.03314287,-0.010868351,-0.005028013,0.002375351,-0.024873959,0.03439777,-0.0026134462,-0.00090336165,0.0013473394,-0.01930533,0.028145669,-0.049837552,-0.01338936,-0.022442585,-0.033299733,-0.0071372576,-0.012123253,-0.024873959,-0.015372555,-0.03504763,0.0058935597,-0.016190482,0.0038879565,-0.051809542,0.0036946791,0.004893559,0.0137367,0.034330543,-0.013994402,-0.0083585465,-0.024112053,0.0089916,-0.039977606,0.00454622,0.008061628,0.027719898,0.0013907568,-0.000801821,0.016392162,0.023372557,-0.0028039226,0.013400565,-0.004148461,0.022431381,0.0008872552,-0.0392157,-0.018319335,-0.03264987,-0.042106457,0.011518211,0.018039223,-0.016179277,-0.018464992,0.018801127,-0.054050438,0.03881234,0.00057458004,0.01393838,0.008655465,-0.021591043,0.030655473,0.009025213,-0.019529419,0.018397765,0.0040056035,-0.017131658,-0.0069803945,0.015932778,-0.011943982,-0.016997205,-0.0054958,0.018969195,-0.018845946,-0.014084038,0.024582641,-0.021703089,0.038005617,-0.031731103,0.0004488797,-0.037535027,-0.004501402,-0.022621857,0.02415687,-0.0029635865,-0.04233055,-0.02919889,0.0062184897,-0.06789918,-0.010224093,0.008145661,-0.0018599447,0.014498604,0.018285722,0.0062184897,-0.0274734,0.009703085,0.018980399,-0.0011043422,0.01926051,0.0049719904,-0.02003362,-0.00031985305,0.03332214,-0.012392161,0.02082914,-0.011462189,-0.013221293,-0.009563029,-0.0072773136,-0.0039355755,0.006156865,0.0017717093,0.0011778716,-0.009960787,-0.00062675093,0.03966388,0.013792722,-0.034285728,-0.0059887976,-0.019473396,0.017635861,-0.0015560229,-0.035675082,-0.034778725,0.015495804,-0.024717096,0.02485155,-0.0051568644,0.033501413,-0.004918769,0.015764711,-0.03701962,-0.037960798,-0.038072843,-0.01061625,0.026599448,-0.032986008,-0.01928292,0.01928292,0.016829137,0.0050364165,0.021008411,-0.005011206,0.0031176482,0.017546225,0.006296921,-0.00089495827,-0.025479,-0.057411786,-0.035361357,-0.028235303,-0.01361345,0.022140063,0.03009525,-0.016201686,0.017770315,-0.012504206,-0.015697485,0.0227339,-0.05163027,0.008588239,-0.0022661071,-0.008677874,-0.011299724,-0.0086890785,-0.06274512,-0.0012584038,0.044302538,-0.01208964,0.028280122,-0.032112055,0.028459394,0.0036610656,-0.000098651995,0.027988805,-0.021008411,-0.009994402,-0.016302526,0.0060560247,-0.031014016,0.0007808126,0.021994406,0.027316537,0.0021008411,-0.02724931,0.0036526623,-0.01536135,0.020537822,-0.0030112055,0.01818488,0.013882358,-0.003229693,-0.02233054,-0.038655475,-0.013691882,-0.0002205883,0.027361354,-0.016963592,0.021960791,-0.032380965,0.005904764,-0.023843145,-0.0135126095,-0.02013446,-0.008324933,-0.0021372556,-0.0004411766,0.020044824,-0.021871157,0.012436979,-0.0062408987,0.00931653,-0.010817931,-0.004033615,-0.003759105,0.058666687,-0.019103648,-0.008756306,-0.0037254915,-0.012056027,0.010263309,0.021803929,0.01393838,-0.029042028,-0.022901969,0.024739504,0.034890767,0.006016809,-0.0071372576,-0.023708692,0.028526621,0.005103643,0.027114855,-0.014375355,0.033815138,0.023148468,-0.005605044,-0.000020789574,-0.01808404,-0.00026243005,0.0072997226,0.010907567,-0.003319329,-0.005787117,0.017703088,-0.025299728,0.029310934,0.014890761,0.03273951,-0.0050000018,0.0061064446,0.021770315,0.009406166,-0.014498604,0.006599442,0.013400565,-0.0062408987,-0.010173673,0.008610647,0.015697485,0.015563031,0.016313732,0.0056554643,-0.015753508,0.027137265,0.006487397,-0.0031484605,0.0212325,0.020986002,0.012358548,-0.008481796,0.009848743,0.04723811,-0.005764708,0.024224099,-0.0060112067,0.018151267,-0.016773116,-0.0043529426,-0.0060560247,0.008521011,0.0074677896,0.015271714,0.019327737,0.0058711506,0.007703084,-0.004633055,0.017266113,0.04029133,-0.009759107,0.021344544,-0.0046918783,0.015563031,-0.013893562,0.024089644,0.0057591056,-0.013803926,0.022397768,0.040672284,0.00040336148,-0.009400563,-0.01840897,-0.02233054,-0.010431376,0.032873962,0.003915968,-0.04315968,-0.021042025,-0.0045126067,-0.013523814,-0.031753514,-0.019092444,-0.017635861,0.00081512635,-0.0066050445,0.018196085,-0.018095244,-0.0048347358,-0.0042577046,-0.03574231,0.012145663,0.018431379,-0.003873951,-0.004616248,0.04011206,-0.00696919,0.022834742,0.02078432,0.029714296,-0.03312046,-0.013456588,-0.039350152,-0.033725504,0.017198885,0.010997203,0.02742858,0.011126054,0.016739503,0.008633057,0.025971998,-0.012000004,-0.025210094,-0.03616808,0.011232497,0.025613455,0.006588238,-0.019114852,-0.017815132,0.0013921574,0.002145659,0.0124817975,0.038229704,-0.065658286,0.029288525,0.011400565,0.01960785,-0.038207296,0.003915968,0.010302525]},{"id":"interface-GatewayChannelRecipientAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelRecipientAddDispatchData\nDescription: CHANNEL_RECIPIENT_ADD — channel_id, user (group DM)\nProperties: channel_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayChannelRecipientAddDispatchData"},"embedding":[0.012213634,0.007253637,0.0065483428,0.04330393,0.031377,0.015780244,-0.031032953,0.056652915,-0.02040193,-0.04747835,-0.035666104,0.008268573,0.0022936403,0.03756983,0.02722551,-0.022512078,-0.0077238334,0.034060556,0.0013023576,0.060276866,-0.02346394,0.052937217,0.031193508,0.021537282,-0.023452472,0.0047220318,-0.0028957208,0.020837722,-0.02378505,-0.016491273,0.013050813,-0.02276438,0.020826254,0.010516341,0.0146678295,0.028670503,-0.009627555,0.043831464,-0.044336066,-0.024977742,-0.03894601,0.001364716,0.011485403,0.031101761,-0.04596455,0.015745841,-0.032913737,0.0110496115,0.011405126,-0.014335251,-0.00908855,-0.020493675,0.0037759054,0.06146956,0.05266198,0.0024986344,0.044267256,-0.018934,-0.051744524,0.004463997,-0.028257648,-0.022282716,-0.0012249473,-0.028509948,-0.0098110465,-0.023922667,-0.033143103,0.0533042,0.020573953,0.005008737,-0.0017546348,-0.016560083,-0.019656496,-0.008916526,-0.021629028,0.02672091,-0.028785186,-0.025023615,-0.003830379,-0.01746607,0.007637822,0.036927607,-0.059405282,-0.062845744,0.000065762964,-0.02428965,-0.044657174,-0.015287112,-0.007351117,-0.019862924,0.026927337,0.011542745,-0.037707444,0.033257782,-0.0156196905,-0.03073478,0.019874392,-0.0057111643,-0.027844792,0.033693574,0.03876252,-0.08325914,-0.044771858,-0.03621658,0.036744118,-0.06133194,0.028165903,0.019335387,-0.0480747,-0.023074022,-0.008899325,-0.019622093,0.0014629124,-0.02600988,0.0072479034,-0.0042059626,0.07702044,-0.043831464,0.016628891,0.023177234,-0.04330393,0.005642355,0.026537418,-0.036377136,-0.051928014,-0.011594351,-0.0017345655,-0.052937217,-0.06050623,-0.011192964,0.049267393,-0.0261475,0.0074944696,-0.014897194,0.016743574,-0.029863195,-0.035436742,0.02396854,-0.042661708,-0.03846435,0.012270975,-0.031721044,0.030436605,0.030230178,-0.023337789,-0.017351389,-0.06169892,0.030046687,0.034335796,0.010057612,-0.0715157,0.057341006,-0.011181496,-0.0010880455,0.006663025,0.016078418,-0.021858392,-0.02378505,0.0071102846,-0.058304336,-0.0035092696,-0.08747944,-0.008062146,0.021846924,-0.034702778,-0.012867322,-0.0022635362,-0.014128824,-0.056285933,0.027982412,-0.024840124,-0.034450475,-0.054680385,-0.01504628,-0.0016399528,-0.010189497,-0.004217431,-0.012729703,-0.03316604,-0.013750373,0.01542473,0.024702506,0.016491273,-0.10422301,-0.030436605,-0.046308596,0.014816916,0.006909591,0.03259263,-0.012993472,0.014174697,0.00832018,0.00978811,0.01746607,-0.0030161368,-0.018142695,0.010436063,-0.02256942,0.024450205,-0.04277639,0.04277639,-0.038166173,0.018314717,0.0015138026,-0.009478468,-0.029633831,-0.015149494,0.0005809361,-0.024771314,-0.0049313265,0.020516612,-0.0061182855,0.0044181244,0.011399392,-0.047891207,0.040413942,-0.03002375,-0.0005723349,-0.02328045,-0.034129366,-0.028831057,-0.0034547956,0.022477675,-0.043395672,-0.0054531298,0.010401659,-0.0008529475,-0.000969063,-0.021514345,0.004550009,-0.0029258248,0.021296449,-0.014140292,-0.049771994,0.010665427,0.01173197,0.02926685,-0.0011905426,-0.0057885745,0.039863467,-0.017615156,-0.02626218,0.027867729,0.044542495,-0.0035035354,0.012362721,0.02294787,-0.022168033,-0.024266714,0.035872534,0.05527673,0.05637768,0.019599156,0.010269774,-0.020413399,0.002227698,0.026468609,0.0019481607,0.01504628,0.04534527,0.043693848,-0.056882277,0.016089886,0.053395946,-0.013050813,-0.019713838,0.035184443,0.02014963,0.026055753,0.02958796,0.00043615003,-0.033120167,0.06289162,-0.01287879,-0.03467984,-0.010803046,0.038716648,0.010911994,-0.024450205,-0.0028813856,-0.07188269,-0.0033401137,-0.011502606,0.04406083,-0.0044152574,0.047799464,0.010418861,-0.016021077,0.0020141029,0.015149494,-0.055322602,0.03793681,0.019656496,-0.06674493,0.004730633,0.041537825,-0.011261773,-0.019266577,0.04355623,0.024817187,0.005539141,0.04316631,-0.023234576,-0.06087321,0.031399935,-0.007345383,0.031010017,-0.013624223,0.03954236,-0.033670638,-0.0023767848,0.016628891,-0.011491138,0.015986672,-0.036400072,-0.004894055,0.023899732,-0.012982003,-0.04188187,0.02403735,-0.047294863,0.021112958,-0.023234576,-0.094589725,-0.00024782066,-0.0018062417,-0.021307917,-0.050964687,0.038923074,-0.0077180993,0.024817187,-0.03250088,0.009644757,-0.024427269,0.03309723,0.019530347,-0.047294863,0.028739313,0.0037128301,0.03016137,0.03195041,-0.012557681,-0.017672498,-0.018165631,0.015057748,-0.03245501,-0.0053671184,0.0035465413,-0.0043149106,0.009186029,-0.012936131,0.0019667966,-0.038418476,-0.04922152,-0.02532179,-0.015401795,0.031904537,-0.05706577,-0.025344724,0.016628891,-0.053487692,0.005025939,-0.015837586,0.025918135,0.021204704,-0.033991747,-0.027936539,0.013348986,-0.01975971,-0.03144581,0.00044941014,-0.030528352,-0.049450886,0.029404469,-0.011502606,-0.017110556,0.019048681,-0.017248174,-0.010625289,0.008205498,0.046400342,0.019323919,0.022512078,-0.00086226535,0.012477403,-0.01415176,-0.052753724,0.024656633,-0.02550528,0.023739176,0.017030278,-0.012775576,0.01728258,0.0027796053,-0.003973732,-0.012901726,0.05298309,0.008423394,0.027844792,-0.00406261,0.0084577985,0.0117090335,0.01631925,-0.0075460766,-0.02467957,0.006049476,0.0067662387,0.026950274,0.027890665,-0.016238973,0.034014683,-0.016124291,0.026399799,0.046148043,0.017385794,-0.019794116,-0.010751438,0.018062416,-0.0136815645,-0.003601015,-0.0013575483,0.0018349122,-0.018761978,-0.0028383797,0.017936267,-0.009753705,0.017133493,0.027867729,-0.018429399,-0.037592765,-0.025642898,0.02078038,0.049817868,-0.029289786,0.054909747,-0.010929196,0.035872534,0.0048539164,-0.037340462,0.026491545,-0.036170706,-0.007918793,-0.008899325,0.0010092017,-0.012959068,-0.011026676,0.030941207,-0.012064547,0.017592221,0.0045356737,-0.03977172,-0.05133167,-0.019473005,0.062020034,-0.041147906,-0.04087267,-0.013658628,0.08004805,-0.034886267,0.0071618916,-0.010493404,0.0026376862,0.007293776,0.054359272,-0.016927065,0.0016614556,0.013945333,0.04112497,-0.009025474,0.018188568,0.018739041,0.028028283,0.018463803,0.05133167,-0.05674466,-0.056285933,-0.0024197905,-0.018658763,0.008400457,0.0073339147,0.020608358,0.038028557,0.02244327,0.031124698,0.032936674,0.07215792,0.025482344,-0.0071618916,-0.011542745,-0.013910928,0.041835997,0.0023223108,0.040413942,-0.01106108,0.0011116988,-0.0075059375,0.043877337,-0.025665835,0.028280584,0.016537147,-0.021434069,-0.02607869,0.023578621,-0.037019353,0.036193643,-0.007689429,-0.036308326,-0.018727573,-0.034633968,-0.04672145,-0.00318816,0.016789448,-0.02147994,-0.02479425,-0.031927474,0.005619419,-0.04227179,-0.00012283519,-0.008452064,0.042294726,-0.009134422,0.020447804,0.007368319,0.019048681,0.0034748649,-0.0048023094,0.015183899,-0.08601151,0.0219272,0.0043607834,0.029152168,-0.01536739,0.007018539,0.054221656,0.0102468375,-0.021663433,-0.035643168,-0.009363786,0.02308549,-0.007935995,0.0008522307,-0.016651828,-0.013394859,0.01198427,0.024358459,-0.008148157,0.015115089,-0.01160582,0.016181631,0.005587881,-0.019300982,-0.018761978,0.0056882277,-0.017420197,-0.013578351,0.0266521,-0.011405126,-0.042936947,-0.018567018,-0.06215765,-0.021250578,-0.022041883,-0.02683559,-0.025207106,-0.042042427,0.05183627,0.0019280913,-0.018544082,0.0013718836,-0.007121753,-0.006049476,0.031331126,-0.009467,0.044634238,0.031354062,0.010665427,-0.030941207,0.023647431,0.015115089,-0.034840394,-0.03665237,-0.0575245,0.019599156,0.048992157,-0.0007626354,-0.00041643906,-0.01715643,-0.03199628,-0.019220706,0.036491815,0.0072192326,-0.010453265,0.013566882,0.016353656,-0.021950137,0.027844792,0.008452064,-0.020287247,-0.004727766,0.00806788,0.011192964,0.01205308,-0.03607896,-0.032317393,0.04839581,0.044106703,0.028853994,-0.00056839274,-0.030298987,0.004501269,0.019415665,0.03245501,-0.017546348,-0.011072548,0.001023537,0.0059462623,0.012259508,-0.010172294,-0.010688364,0.025780516,-0.02026431,0.0075518107,-0.014748107,0.021330854,-0.017695434,0.051744524,0.014966003,-0.016548615,0.051102303,-0.0336477,-0.016296314,-0.01753488,0.0038905872,-0.0266521,-0.02078038,-0.04149195,0.013922396,-0.002961663,-0.016124291,0.024404332,-0.0038275123,0.008377521,0.029656768,0.017236706,0.040551558,-0.038968947,0.0015023344,-0.011949866,-0.006393522,0.011336317,-0.037982684,-0.033234846,0.0647724,0.0059634647,0.02021844,-0.01575731,-0.03628539,0.06000163,-0.020413399,-0.007741036,-0.028097093,-0.0030878133,0.008927994,-0.0035006683,0.021915732,0.020103756,-0.03743221,0.029037485,-0.034221113,0.0328908,-0.009581682,-0.007465799,0.041033223,0.0022807384,0.008773174,-0.011198699,-0.021227641,-0.008176828,0.006536875,-0.01004041,0.045918677,0.0056767594,-0.036239516,-0.015906395,0.04500122,-0.02945034,0.05458864,-0.010080549,0.013968269,-0.0005805777,0.0057226326,0.020837722,0.031193508,-0.025734644,0.029977879,0.03195041,0.046904944,0.003199628,-0.0026606226,-0.02600988,-0.022156565,-0.00236675,0.00043220783,-0.0062329676,0.021697836,-0.004601616,0.004954263,0.0138650555,0.024335522,0.018830786,0.005969199,-0.0008830515,-0.02174371,-0.0002759536,0.028211774,0.0156196905,-0.040024024,0.020711571,0.007884389,0.025230043,0.015447667,0.03417524,-0.036996417,0.023360725,0.009082816,0.032110963,0.0068407822,0.0077180993,0.011301912,0.012809981,-0.004515604,-0.009862653,0.024060287,0.015355921,-0.047799464,0.007890122,0.005246702,0.007012805,0.002904322,-0.0032913738,-0.0015453402,-0.026950274,0.0010543577,-0.020665698,0.0055076038,0.004492668,0.017122025,0.017443134,-0.018624358,-0.0006336181,-0.024702506,0.005582147,-0.042294726,-0.012660895,-0.009742237,0.028487012,0.02289053,-0.018658763,-0.027615428,0.011221635,-0.0138650555,0.012959068,0.018085353,0.026032817,-0.03951942,-0.020665698,-0.02550528,-0.05449689,0.01715643,-0.0015639759,-0.031422872,0.0020786114,0.0035494082,0.009472734,0.023051085,-0.027386064,-0.044336066,-0.0266521,-0.041170843,-0.00082284346,0.008417659,-0.013039345,-0.005923326,-0.012156294,0.0042575696,-0.010384456,-0.027867729,-0.030551288,-0.024817187,-0.0058946554,-0.041308463,0.009180295,-0.031032953,-0.010699832,-0.024702506,-0.010332849,0.019966139,-0.08243343,0.02045927,0.040345132,0.015034812,0.0057168985,-0.01138219,0.020310184,0.03424405,0.0028756515,-0.06495589,-0.00406261,-0.0075690127,-0.0075059375,-0.034404602,0.03403762,-0.026399799,0.012007207,0.010768641,0.040849734,0.014461402,-0.018532613,-0.011445265,-0.005028806,0.01599814,-0.015355921,-0.0070529436,0.00061569904,0.022901997,0.038212046,-0.039932277,0.052386742,-0.0023481143,-0.008704364,0.009226168,-0.012603553,0.027386064,0.006393522,0.0003275605,-0.02230565,-0.033257782,0.0078729205,-0.012076016,0.0053155115,0.0045213383,-0.031973343,0.026124563,-0.025207106,0.023670368,-0.017064683,0.02633099,-0.022615293,-0.046010423,0.019358324,0.011227369,-0.011651693,-0.0032827726,-0.029610896,0.040712114,-0.008108018,-0.044725984,0.03016137,0.021342322,0.014530211,-0.019897329,0.000406046,-0.04059743,0.021720773,-0.023337789,0.009352318,0.0475701,-0.013784778,0.045551695,0.005412991,0.046813197,-0.0055477424,0.033257782,-0.011399392,0.030321924,-0.0024040218,0.027707174,0.013199899,0.039725848,-0.011571415,0.021227641,-0.009191764,0.007987603,-0.032248583,0.003426125,0.010625289,0.0066400887,0.011846652,-0.017064683,0.008618353,0.0043579163,0.016181631,0.015986672,-0.033143103,-0.008234168,-0.019610625,-0.02607869,0.03341834,0.00075761805,-0.04775359,-0.024450205,0.0032368999,-0.018257376,0.005020205,-0.011628756,-0.0074313944,0.039748784,0.0056681586,0.009335116,-0.025826389,-0.01160582,-0.0021502876,-0.00924337,-0.022959339,-0.00075188396,0.008136689,-0.006146956,-0.02958796,-0.0194386,0.03869371,0.015791712,0.0057341005,0.028097093,0.033877067,-0.0430975,0.011485403,-0.002432692,-0.024335522,0.020069351,-0.0056566903,0.027431937,0.0156885,0.032753184,0.0025201372,0.0071504232,-0.08169947,-0.014209101,0.0061125513,0.028028283,-0.03628539,-0.00988559,0.018475272,0.003990934,0.005011604,-0.0060150716,0.008933729,-0.014977471,-0.017970672,-0.016743574,0.015642626,-0.01205308,0.0028727844,0.034817457,-0.022145096,0.041285526,0.005934794,0.025138296,-0.0048510493,0.023074022,0.027638365,0.034404602,-0.03403762,-0.025413534,-0.022615293,0.009059879,-0.029129231,-0.013658628,-0.014644893,0.0010593751,-0.009300712,0.024908934,-0.047845334,0.0386249,0.019851455,-0.009702099,-0.010178029,-0.007356851,0.015332985,0.0038619167,0.01138219,-0.013360455,0.022982275,0.014014142,-0.0018291781,-0.02219097,0.00016476579,-0.015562349,-0.031399935,0.01803948,0.038808394,-0.0134980725,0.0059577306,-0.014289379,-0.007861452,0.027959475,-0.018417932,-0.03181279,0.0051549566,-0.0043407143,0.019473005,-0.006846516,0.01434672,0.013108154,-0.0019667966,0.00040927142,-0.024840124,-0.0009590283,0.024725443,-0.0006608551,-0.024404332,-0.013543946,-0.011227369,0.018761978,-0.014690766,-0.0013539646,-0.008910792,-0.0064107245,-0.029496213,-0.0074830013,-0.0072192326,0.04534527,-0.0029501948,-0.0053327135,-0.04692788,-0.02633099,-0.028487012,-0.010120688,0.0137045,-0.010533542,-0.01823444,0.009644757,-0.0052008294,-0.027133765,0.007012805,0.028211774,-0.0066974293,0.048304062,0.014358188,0.020608358,-0.02862463,-0.034955077,-0.0012851553,-0.019679433,-0.007855718,0.025115361,-0.006966932,0.01631925,-0.01791333,0.0007533175,0.009707833,-0.00403394,0.015516477,-0.0018019411,-0.01676651,-0.0047965753,0.019300982,-0.00007942625,0.04174425,0.010350051,0.019679433,0.0065712794,-0.005992135,-0.02301668,0.013211368,0.010843184,-0.008555278,0.0134980725,0.0533042,0.017167898,-0.005137754,0.011617288,0.0034547956,-0.0026018482,-0.0006859418,0.037523955,0.0020055017,0.029312722,-0.00784425,-0.0066400887,-0.036996417,-0.021021213,-0.0034375933,-0.013222836,-0.01938126,0.014449934,-0.011210167,-0.03467984,0.031652234,0.034817457,0.011301912,-0.027087891,0.0146678295,-0.019564752,-0.010636756,-0.021434069,0.037982684,-0.030574225,-0.00039923674,0.0075976835,-0.025918135,-0.01696147,0.035711978,0.034725714,0.01855555,0.010097751,0.010946398,-0.0010314214,-0.0034576626,-0.0657816,0.037317526,0.023062553,-0.0046360204,0.016433932,-0.03883133,-0.018314717,0.00991426,-0.0023825187,0.008308711,0.029702641,0.00602654,0.013566882,0.007477267,-0.0062501696,-0.011559946,0.01575731,0.007683695,-0.022592356,0.043946147,-0.029106295,-0.031170571,-0.0033515817,-0.011823716,0.039886404,-0.044473685,0.034404602,0.033578895,-0.008830515,-0.028097093,0.00650247,0.015332985,0.03940474,0.0020485073,-0.012442999,-0.0031623566,-0.0019022878,0.0021302183,-0.028853994,0.056331806,0.0063533834,0.017970672,0.028211774,0.016410995,-0.0004787974,-0.005510471,0.06169892,0.008761706,-0.010900525,0.004142888,0.051377542,0.02410616,0.014289379,-0.016307782,0.0008113752,0.0052323667,0.00079058914,0.02021844,-0.036262453,0.0054473956,-0.0033458476,0.0025617094,0.008549544,0.0015338719,-0.017351389,0.026537418,-0.034794524,0.022913465,0.015550881,-0.02097534,0.01925511,0.016502742,0.013945333,-0.052295,0.00505461,-0.013371923,-0.03151462,-0.010132155,-0.005298309,0.0020384728,-0.025459407,0.021663433,0.006714632,-0.042661708,-0.009197498,-0.02396854,-0.046308596,-0.01377331,-0.023922667,-0.0001820577,0.02536766,0.032179773,-0.04954263,-0.008813312,0.008790377,0.008515139,0.036927607,0.018991342,-0.014736638,-0.023555685,-0.014530211,-0.007179094,-0.010315647,0.034909204,0.014599021,0.006261638,-0.015642626,0.0038561826,0.012385657,-0.012615021,0.005811511,-0.007184828,-0.0033200444,0.001240716,0.0019524613,0.004105616,-0.05201976,0.02729432,0.053258326,0.0053097773,-0.016433932,0.009650491,0.0052696383,-0.043716785,0.035413805,0.022007478,0.015080685,-0.0077180993,-0.036400072,0.037271652,-0.006318979,-0.024174968,0.005238101,-0.0022018945,0.016674764,0.0032598362,-0.0030419403,-0.011611554,0.02174371,-0.0004956413,0.033601828,0.047845334,0.016388059,-0.03080359,0.008039209,-0.01784452,0.003707096,-0.021376727,-0.017190835,-0.024519015,-0.033968814,0.007953198,-0.012156294,-0.009203232,-0.02371624,0.0055993493,0.004724899,-0.008916526,0.0133145815,0.0038963214,0.019989075,0.02805122,0.029977879,-0.026124563,-0.009254838,0.042432345,0.0049341936,0.023578621,-0.010023208,-0.0042002285,-0.010602352,0.032042153,-0.01938126,0.00022130045,-0.014289379,-0.010659693,-0.0446113,0.008377521,0.024977742,-0.027156701,0.0016456869,-0.008813312,0.023418067,-0.023418067,0.018635826,0.018463803,-0.01925511,0.0053355806,-0.027317256,0.017076151,-0.025780516,-0.04474892,-0.017626625,0.015814649,-0.035230312,0.02823471,-0.006771973,-0.012660895,0.01606695,0.018601423,-0.021193236,-0.032248583,-0.025207106,0.0035723448,0.011175762,-0.014862789,-0.01689266,-0.016950002,-0.0056796265,-0.014656361,0.0003085663,0.00717336,0.026927337,-0.020252842,-0.009495671,-0.0013697332,0.018842254,-0.031354062,-0.0037328994,-0.011869588,-0.058625445,0.0041314196,0.026812654,0.00806788,0.045368206,-0.009518607,-0.01230538,0.009839716,0.02072304,0.02467957,0.0075059375,0.005691095,-0.0046302862,-0.016732106,-0.026170434,0.00637632,0.027523683,-0.0045557427,0.043946147,-0.017615156,0.051744524,-0.023234576,0.029289786,0.03234033,-0.02575758,-0.01587199,-0.025275916,0.0059061237,-0.03568904,0.0035207379,0.03545968,0.03066597,0.014071483,-0.008790377,0.0012615022,0.01855555,0.020986808,-0.009547277,-0.0010787277,0.019897329,-0.01779865,0.005349916,-0.039496485,-0.01106108,0.025046552,-0.0052323667,-0.01975971,0.025803452,0.008463533,0.038647838,0.025964007,-0.009358052,-0.02321164,-0.027500747,-0.028005347,-0.004211697,-0.0099199945,-0.014748107,0.0010393057,0.019335387,0.01931245,-0.020356057,-0.015298581,-0.012637958,0.008710098,0.006955464,-0.024885997,-0.0021459872,0.006370586,0.0056882277,0.030115496,0.03825792,-0.039496485,0.020768913,-0.0049829334,0.0064565972,-0.01093493,0.007895856,0.02926685,0.008555278,0.018532613,0.010286977,-0.02346394,0.03869371,0.014243506,-0.026468609,0.0014277911,-0.018028012,-0.0032053622,-0.006559811,0.0126952985,0.0047335,-0.012764108,0.031239381,0.007947464,0.021640496,-0.0016012476,0.020252842,-0.021193236,-0.00056409213,0.037225783,0.007391256,0.0046474887,-0.014048547,0.018739041,-0.0010149358,-0.011737704,-0.0022405998,-0.00006208956,-0.0029932004,0.00570543,0.013406327,-0.0590383,0.00592906,0.020447804,-0.04468011,-0.027982412,0.025000678,-0.015298581,0.0047621704,0.011038144,0.044359002,-0.027019082,-0.0019481607,0.034909204,-0.021491408,0.0109406635,-0.02230565,0.011101219,0.001041456,0.02294787,0.011674629,0.017420197,0.021273512,-0.0014320916,0.046675578,0.008899325,0.03951942,0.025069488,0.013085217,-0.002487166,-0.0005189361,0.00911722,0.059818137,-0.0017804382,0.022145096,0.0076148855,0.034702778,0.008492203,0.012660895,-0.014014142,-0.02308549,-0.016021077,0.033051357,-0.016984407,-0.045735188,0.010418861,0.012844386,-0.0056824936,-0.042868137,-0.0137159685,-0.008778908,0.00027093626,0.021434069,0.02607869,-0.021434069,0.014988939,0.02339513,-0.016858255,0.010080549,0.04589574,0.0010213867,-0.023991477,0.037959747,0.008578215,-0.0026835592,-0.017557817,0.057707988,0.008314446,0.005923326,-0.046469152,-0.006554077,0.011290444,0.013956801,0.049267393,0.0052839736,-0.026858527,0.016915597,0.038739584,-0.0042059626,0.000036778878,-0.028280584,-0.014553147,0.021021213,-0.018773446,-0.006164158,-0.01848674,0.015183899,-0.013176964,-0.00889359,0.039817594,-0.023693305,-0.0065311408,0.013543946,0.0042977086,-0.03328072,0.0022879061,-0.0019639295]},{"id":"interface-GatewayChannelRecipientRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelRecipientRemoveDispatchData\nDescription: CHANNEL_RECIPIENT_REMOVE — channel_id, user (group DM)\nProperties: channel_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayChannelRecipientRemoveDispatchData"},"embedding":[0.021292407,0.018878408,-0.008894296,0.040709864,0.02742115,0.02863987,-0.035225634,0.061826494,-0.0075408164,-0.032178838,-0.005607274,-0.009661854,-0.00008161711,0.043006677,0.045233183,-0.0030995274,0.0074880836,0.028944548,-0.011202829,0.07706047,-0.02404624,0.057889096,0.008501729,0.020226028,-0.0123278,0.008618913,0.019909631,0.0024403653,-0.020753358,-0.0037938452,0.023507193,-0.023425164,0.043006677,0.0035184617,0.02262831,0.014460556,-0.016628467,0.031288236,-0.036467787,-0.008074006,-0.034920953,0.0062342105,-0.010722374,0.030186703,-0.024561852,0.035436563,-0.030842936,0.026718045,0.026858667,-0.025522763,-0.019370582,-0.010611048,0.0023202512,0.0673576,0.034006916,-0.0060057007,0.033772547,-0.012468421,-0.027139908,-0.0009220948,-0.02908517,-0.016019108,0.0052820873,-0.018925281,-0.016405817,-0.019452611,-0.019675262,0.06407643,0.0105173,0.0015321862,-0.018503418,-0.02065961,-0.025499327,-0.008618913,-0.020436961,0.0051590437,-0.014765236,-0.020788513,-0.01789406,-0.020308057,0.0047606165,0.027913326,-0.039163027,-0.036772467,-0.008085724,-0.022464251,-0.057982843,-0.008056428,0.012433265,0.0034012774,0.013335586,0.017026894,-0.021585368,0.007558394,-0.01908934,-0.055779777,0.011202829,-0.0016625538,-0.03576468,0.053998575,0.020952571,-0.07162311,-0.056904748,-0.013335586,0.02810082,-0.062295232,0.0010392792,0.02118694,-0.06609201,-0.016065981,-0.0016244688,-0.01585505,-0.01901903,-0.010323946,-0.0017343293,0.01983932,0.07495115,-0.03913959,0.03606936,0.031217925,-0.032061655,0.00008958198,0.01818702,-0.03778025,-0.059857793,-0.004517459,-0.007687297,-0.050858032,-0.06576389,-0.025874317,0.06079527,-0.018995592,0.008853282,-0.038577106,0.021925202,-0.013569954,-0.017026894,0.004306527,-0.029811714,-0.01735501,0.009386471,-0.027069598,0.022956425,0.027210219,-0.031217925,-0.010077859,-0.038952097,0.021550212,0.043030113,0.02307361,-0.05357671,0.036772467,0.009831771,0.008736097,-0.008150175,-0.0037557601,-0.0015336509,-0.017565943,0.0014691995,-0.05779535,-0.015726147,-0.08207596,-0.021257252,0.019030748,-0.043475416,-0.015597245,0.017530788,-0.0009748278,-0.042819183,0.021843173,-0.026858667,-0.03695996,-0.0625296,-0.03276476,-0.030749189,0.005244002,0.0101423105,-0.01270279,-0.026272744,-0.015526934,0.01878466,0.012878566,0.031897597,-0.094122514,-0.049358074,-0.039209902,0.009978252,0.010376679,-0.0073591806,-0.0008400657,0.028710179,0.012819974,-0.004391486,0.011835625,-0.0063162395,-0.026085248,-0.0045877695,-0.043334793,0.02660086,-0.04396759,0.04345198,-0.014566022,0.03173354,-0.001743118,-0.011976247,-0.016019108,-0.009714588,0.003577054,-0.02983515,-0.0031171052,0.025335269,0.0246556,-0.007909947,-0.0035272506,-0.031897597,0.026553987,-0.01473008,0.017401885,-0.01900731,-0.012527013,-0.013323867,0.0053904825,0.027163345,-0.027233656,0.01382776,-0.0007221489,0.0031405422,-0.0034012774,-0.034756895,-0.0071658264,-0.007933385,0.030022645,-0.004848505,-0.048936207,0.011097363,0.00042406106,0.01089815,-0.000260186,-0.01352308,0.015116788,-0.051420517,-0.035577185,0.008501729,0.0312648,0.011091504,0.009404048,0.029741403,-0.03051482,-0.020940853,0.02833519,0.05160801,0.06346708,0.013019187,-0.0075173797,-0.01871435,0.023483755,0.02901486,0.0076521416,0.021327563,0.039045844,0.05048304,-0.063326456,0.024374356,0.06004529,-0.0012787748,-0.0017211459,0.037077148,0.019042466,0.015175381,0.03065544,-0.0217963,-0.033842858,0.052264247,-0.015819894,-0.04401446,0.011952809,0.04832685,0.0069314577,-0.03531938,-0.0226869,-0.045467548,0.006193196,-0.005800628,0.031967904,-0.019733854,0.041834835,-0.016804244,0.005906094,-0.010558315,0.020683048,-0.032975692,0.03548344,0.016628467,-0.065857634,-0.015913643,0.035506874,0.0024711262,-0.027186783,0.017296419,0.0026688748,-0.0054930192,0.020401806,-0.037241206,-0.07340431,0.028382063,0.009960675,0.031827286,-0.0067908363,0.020167436,-0.023565784,-0.01736673,0.005651218,-0.009802476,0.022405658,-0.034616273,-0.013569954,-0.0039637624,-0.0069021615,-0.014261343,0.0067966958,-0.037334953,-0.009193117,-0.04884246,-0.085544616,-0.0058855866,0.0051356065,-0.017390165,-0.062013987,0.049264323,0.002104925,0.02915548,-0.029342975,0.00090158754,-0.018667476,0.025968064,0.025007153,-0.0671701,0.04621753,-0.01141962,0.01789406,0.046569083,0.0040662987,-0.012046557,-0.014390245,0.020038534,-0.025007153,-0.004499881,-0.013159809,0.0019833462,0.009691151,-0.005369975,-0.00383193,-0.038577106,-0.06773259,-0.020823669,-0.008484151,0.042256698,-0.0336788,-0.016569875,0.024022803,-0.032296024,-0.007447069,-0.011191111,0.014062129,0.02622587,-0.017917495,-0.045069125,0.023026736,0.00075364223,-0.03578812,0.008501729,-0.065342024,-0.040100504,0.023003299,-0.0004379767,-0.015351158,-0.010962601,-0.008161894,0.0011762385,0.0005796966,0.050764285,-0.0028446515,-0.0028959196,-0.009064214,0.001675737,0.00016460747,-0.04945182,0.025522763,-0.025335269,0.028897675,0.022710338,-0.01127314,0.032741323,0.0049861963,0.008595476,-0.011085645,0.019874476,0.024889968,0.020378368,-0.0048192088,0.037452135,0.025569638,0.014976167,0.007546676,-0.0284055,0.023811871,0.014214468,0.010540738,0.026530549,-0.02428061,0.04996743,0.00096677133,0.017835466,0.033186626,0.03013983,-0.051936127,0.0106520625,0.016651904,-0.015761303,-0.0063162395,-0.014038692,0.009603262,-0.009251709,-0.008706802,0.026530549,0.0015673414,0.014929294,0.027303968,-0.02254628,-0.070732504,-0.038459923,0.015948799,0.043287918,-0.036491223,0.03902241,-0.009404048,0.043686345,-0.0017797382,-0.059342183,0.0123278,-0.03021014,-0.018972155,-0.01571443,0.0008107696,-0.0046551507,-0.0055398927,0.03967864,-0.019733854,0.006111167,0.00030229916,-0.03681934,-0.0493112,0.004825068,0.057982843,-0.038436484,-0.06407643,-0.0012538731,0.07452928,-0.020542426,0.006169759,-0.0047166725,-0.007611127,0.027139908,0.06576389,-0.009743883,-0.0017709493,0.021667397,0.031663228,-0.011976247,0.017179234,0.02547589,0.030936683,0.03283507,0.035155322,-0.044436328,-0.054139197,-0.0015336509,-0.022405658,0.01209343,-0.0009579825,0.0275149,0.022440813,-0.008665787,0.01270279,0.025077462,0.07331056,0.019323708,-0.009298583,-0.031006994,0.024304045,0.05048304,-0.0011132519,0.038413048,-0.0116598485,-0.0010304904,-0.009034918,0.05432669,-0.027163345,0.042819183,0.0015761303,-0.009966534,-0.028147694,0.03817868,-0.030983558,0.013312149,-0.008993903,-0.051936127,-0.018702632,-0.027257092,-0.067498215,-0.006034997,0.020425241,-0.04396759,-0.020999447,-0.030069519,0.009532952,-0.04516287,-0.009415767,-0.023272824,0.047928423,-0.010499723,0.02171427,0.019757291,0.017940933,-0.018081553,-0.0033104594,0.021175222,-0.087044574,0.008829845,0.027468026,0.047881547,-0.013886352,0.00010857868,0.07157624,0.008595476,-0.024585288,-0.030069519,-0.004593629,0.028686743,0.011267281,0.008882578,-0.024538415,-0.015163662,0.013745731,0.024397794,-0.004989126,0.007447069,0.004763546,0.026671171,0.0014106072,-0.025827443,-0.006515453,0.008366967,-0.015222254,-0.013663702,0.021198658,-0.021163505,-0.0473425,-0.0076404233,-0.056764126,-0.034217846,-0.025194647,-0.012972314,-0.023811871,-0.03496783,0.037006836,0.0018603024,0.0027406502,0.00019738248,-0.016218321,0.013370741,0.03447565,-0.03262414,0.053389214,0.042280134,0.0049539707,-0.013558236,0.029507034,0.008747816,-0.0350147,-0.03419441,-0.058404706,0.011712582,0.057982843,-0.013476207,-0.014894138,-0.01939402,-0.046311278,-0.04312386,0.022815803,0.015644118,-0.036327165,0.009415767,0.008929452,-0.018890126,0.043030113,0.04267856,-0.011378606,-0.017202672,-0.006117026,0.024327483,0.027093034,-0.037522446,-0.013862915,0.05048304,0.04014738,0.037991185,-0.0027714113,-0.030749189,0.0075115203,0.028921112,0.032436643,-0.012737945,0.00015801584,0.004306527,-0.0010290255,0.0108219795,-0.020179154,-0.0017343293,0.027257092,-0.012655916,0.0079568215,-0.010634485,0.019933067,-0.009732165,0.04441289,-0.0041014543,-0.016499564,0.04307699,-0.04209264,-0.017554224,-0.01847998,0.004253794,-0.013968381,-0.000973363,-0.039655205,0.01577302,-0.00045628677,-0.034077227,0.0041395393,0.0055105966,-0.008396262,0.025499327,0.015093352,0.026553987,-0.050061177,-0.0172847,-0.008431418,-0.021222096,0.013171528,-0.028569559,-0.03238977,0.056482885,-0.00053392147,0.015538652,-0.00998997,-0.033233497,0.06904505,-0.024491541,0.0044295704,-0.0023392937,0.020706484,0.007927525,-0.0048426455,0.008829845,-0.0075349575,-0.025897754,0.006327958,-0.04809248,0.038366176,-0.018233893,-0.004300668,0.05132677,0.0023392937,0.0038172822,-0.014659769,-0.030327324,-0.005947109,0.004977408,-0.006275225,0.026436802,0.0028607643,-0.033631925,-0.01924168,0.013862915,-0.023132201,0.052170496,-0.0105641745,0.00009750109,0.012444984,0.013136372,0.021503339,0.020706484,-0.0345694,0.022358784,0.019522922,0.0345694,0.017226107,0.01885497,-0.025452454,-0.037897438,-0.0016669482,-0.0058973054,0.0033866293,0.023800153,-0.0055135265,0.017776875,0.013441051,0.012351236,-0.0013710576,-0.009609121,0.009140383,-0.03674903,-0.024585288,0.01842139,0.0070076273,-0.04035831,0.026530549,0.011220407,0.010218481,0.019581513,0.03576468,-0.035717808,0.035131887,0.01630035,0.01480039,-0.0029559766,0.017788593,0.0047166725,-0.004373908,-0.006667793,-0.014741798,0.00097043335,0.011044631,-0.038155243,0.021292407,0.018726068,0.012597323,-0.008835704,-0.011396184,-0.00085031934,-0.00563657,0.013862915,-0.037311517,-0.015491779,0.005214706,0.016288633,-0.003600491,-0.0054813004,-0.0010854206,-0.03088981,0.0062928027,-0.04856122,0.012714508,0.0063982685,0.007200982,0.013780886,-0.02547589,-0.02104632,0.0067732586,-0.0013783816,0.0113258725,0.028850801,0.02540558,-0.0317101,-0.0043328935,-0.037920874,-0.04216295,0.03028045,-0.0028007072,-0.014413682,0.0021825596,-0.00025286197,0.007552535,0.01842139,-0.0246556,-0.028546121,-0.019112777,-0.050670538,0.0057039508,0.011911795,-0.0013849732,-0.011296577,-0.02225332,-0.0076462827,-0.01209343,-0.029132044,-0.023835309,-0.027444588,-0.0143550895,-0.033983476,0.0044588665,-0.00984349,-0.018843252,-0.019651825,-0.0054520047,0.021257252,-0.092622556,0.047975294,0.037288077,0.0022704478,0.005651218,0.00774003,0.012597323,0.036256857,0.02540558,-0.06220148,-0.007880651,-0.013159809,0.003275304,-0.03719433,0.05718599,-0.027749268,0.016733933,0.01202312,0.038670853,0.0126676345,-0.0075408164,-0.019698698,-0.0062869433,0.022979863,-0.021292407,-0.005478371,0.002223574,0.017003458,0.029647656,-0.037217766,0.040334873,-0.0025736624,-0.035530314,0.01721439,-0.012995751,0.030163266,0.003351474,0.0019555148,-0.01721439,-0.033186626,0.016921429,-0.020683048,0.0005364849,0.00172847,-0.04094423,0.016569875,-0.0251009,0.007991976,-0.0060760113,0.029647656,-0.029038295,-0.0317101,0.007529098,-0.003577054,0.0036854495,-0.023682969,-0.006890443,0.018022962,-0.018796379,-0.04584254,0.03466315,0.031147616,0.018585447,-0.01292544,-0.0010905474,-0.032436643,-0.009937238,-0.024304045,-0.0050067035,0.026249306,-0.015269129,0.019569796,0.012433265,0.05432669,0.00067417655,0.034381904,0.0020536566,0.034452215,-0.003995988,0.027866451,-0.018726068,0.029319538,-0.008284938,0.013956663,-0.013312149,0.016722215,-0.04553786,0.015374594,-0.0027611577,-0.0022807014,0.00082102325,-0.008062287,-0.0021225025,-0.009597403,0.0035126025,0.013710575,-0.029717965,-0.01405041,-0.01758938,-0.018081553,0.028874237,0.01248014,-0.056576632,-0.033397555,0.003260656,-0.023811871,0.016593313,-0.0011528016,0.0057947687,0.03524907,0.01420275,0.008331811,-0.026202433,-0.013312149,-0.0095505295,-0.016218321,-0.016487846,0.013792604,-0.00019866419,-0.0068670064,-0.04035831,-0.010376679,0.033022568,0.027397715,0.016042545,0.059529677,0.028546121,-0.01653472,0.010464568,0.039772388,-0.03524907,0.015644118,0.0000779551,0.01571443,0.011999683,0.028616432,-0.0010561245,0.014003537,-0.06440455,-0.016487846,-0.0029999209,0.025030589,-0.05409232,0.0060760113,0.018526854,-0.012691071,0.009404048,0.006117026,0.0034100662,-0.022276755,-0.0152808465,-0.009515374,0.0034833064,-0.00526158,0.023190795,0.036233418,-0.011677426,0.04131922,0.018468263,0.030913247,0.0062869433,0.020155719,0.01209343,0.016851118,-0.017073767,-0.016487846,-0.029999208,0.009497796,-0.024350919,0.012234052,-0.019030748,0.018058117,0.0046697985,0.026999287,-0.036280293,0.022030668,-0.0056102034,-0.015398031,-0.0034305735,-0.016241759,0.0138511965,0.0078044813,0.0035711948,-0.025874317,0.0072127003,0.02615556,0.012444984,-0.016523002,-0.0027626224,-0.011361028,-0.004877801,0.0383193,0.038272426,-0.008478292,0.020015096,-0.01818702,-0.0074060545,0.034405343,-0.025288396,-0.021210378,0.017155796,0.017706564,0.020085407,-0.0016918499,0.027678957,0.0053904825,0.0034276438,0.02225332,-0.02472591,-0.0020053182,0.021632241,0.002290955,-0.0065564676,-0.019710418,-0.0042508645,0.013909789,-0.008548602,0.0011967458,-0.0058738682,-0.00533482,-0.022522843,-0.013194964,-0.002044868,0.05568603,-0.0105173,-0.0076462827,-0.046264403,-0.027913326,-0.023624375,-0.0046258545,0.007681438,-0.007072079,-0.01578474,-0.003697168,-0.00736504,-0.026764918,0.025897754,0.03096012,-0.01202312,0.04253794,0.009814194,0.007945103,-0.016675342,-0.03255383,0.0054666526,-0.025358705,0.0018441896,0.032858506,-0.0049920557,0.0055105966,-0.012433265,-0.0062342105,-0.013394178,0.012632479,0.006046715,0.00007964877,-0.0003466095,-0.0004617798,0.040077068,0.0012604648,0.017050331,-0.00834353,0.0065916227,-0.0022836311,0.0072419965,-0.007921666,-0.00039549737,0.0184917,-0.010769247,-0.007464647,0.08024788,0.026999287,-0.023929056,0.0087185195,0.007318166,-0.020308057,-0.0051971283,0.040405184,0.00068626116,0.0123278,0.004051651,-0.010927446,-0.01682768,0.013335586,-0.009450923,-0.022862678,-0.018456545,0.002931075,0.0068670064,-0.05221737,0.015093352,0.029717965,0.005232284,-0.029038295,-0.0023392937,-0.020776795,-0.00011059278,-0.029764839,0.030678878,-0.037475575,-0.014003537,0.0030790202,-0.023120483,-0.021304125,0.01030051,0.030303888,0.026507113,0.017647972,0.0074529285,0.017343292,0.003448151,-0.060092162,0.048936207,0.028733617,-0.0019496556,0.0032489377,-0.03388973,-0.030046081,0.0070486423,0.013429333,-0.0051297476,0.015023041,0.0078162,0.012948877,0.00035558143,-0.023319697,0.007265433,0.0033866293,0.007915807,-0.025710259,0.02006197,-0.0383193,-0.027913326,-0.0045233183,0.0027684816,0.030022645,-0.05493605,0.026577424,0.023507193,-0.020237748,-0.043030113,-0.0074236323,0.011255562,0.019710418,0.0063924096,-0.008988044,0.0038758742,-0.0077986224,0.01750735,-0.024632161,0.054889176,-0.005352398,0.023577502,0.02479622,-0.00646272,0.003562406,-0.01900731,0.06192024,0.0061228853,0.008050568,-0.0041453983,0.04230357,0.034335032,0.010751669,-0.01375745,0.022194726,-0.0059558973,0.013605109,0.016183166,-0.030116392,0.0051561138,0.006245929,0.0023773788,-0.0085427435,0.0011872245,-0.019628389,0.027374277,-0.004930534,0.024749346,0.017003458,-0.008894296,0.002954512,-0.0032635857,-0.011390325,-0.053529836,0.013534799,0.015140225,-0.03478033,-0.009456782,-0.017003458,0.017718282,-0.023847027,0.012714508,0.011402043,-0.031897597,0.0036063502,-0.031147616,-0.049264323,-0.020085407,-0.021151785,-0.0070486423,0.025639948,0.0279602,-0.044131648,-0.024936842,0.006228351,0.010804403,0.018022962,0.0058211354,-0.012257489,-0.007857215,0.0048338566,0.0033192483,-0.004089736,0.036233418,0.0104821455,-0.00849001,-0.013359022,0.021409592,0.008577898,-0.015210536,0.008536884,-0.0135933915,-0.004983267,-0.0035038136,0.001675737,-0.0018734857,-0.048936207,0.0040399325,0.03712402,0.0027670169,-0.016745651,0.011941091,0.0050008446,-0.027233656,0.03321006,-0.0017606957,0.0036180685,-0.00030779216,-0.052873604,0.031967904,-0.007904088,-0.024749346,-0.012632479,0.0028109609,0.0156324,-0.00008431784,-0.019112777,-0.0060057007,0.013335586,0.0023788435,0.035670932,0.04553786,-0.0003149331,-0.024257172,-0.005545752,-0.031616352,0.01600739,-0.016874554,-0.019042466,-0.017624535,-0.029483596,0.004007707,0.015140225,-0.005507667,-0.025452454,0.013710575,0.0009191652,-0.018257331,0.022300193,0.014003537,0.0010685753,0.026038375,0.011689144,-0.00991966,-0.01073995,0.05245174,0.010892291,0.02810082,-0.006251788,-0.0052996646,0.0014867772,0.039116155,-0.013991818,0.0030204281,-0.021972077,-0.015456623,-0.043920714,0.0053172424,0.014566022,-0.026249306,-0.012011401,-0.015831614,0.022675183,-0.0137691675,0.030936683,0.012562169,-0.018351078,0.012855129,-0.038741164,0.0037235345,-0.011718441,-0.038342737,-0.0044383593,0.010862995,-0.04973306,0.023811871,-0.0033602628,-0.0046873763,0.024608726,0.015151944,-0.021081476,-0.024139987,-0.01457774,0.006404128,0.013628546,-0.031358548,-0.007909947,-0.004989126,0.00079612155,-0.034358468,0.026108686,0.012855129,0.043920714,-0.0045877695,-0.015796458,0.007575972,0.0018661617,-0.03681934,-0.0042215683,-0.015679274,-0.044834755,0.0018764153,0.025944628,0.009755602,0.04420196,-0.014601177,-0.011607115,0.018983874,0.0062810844,0.034358468,0.005536963,0.010558315,0.009363034,-0.00075217744,-0.012878566,0.0072947294,0.035295945,-0.0042596534,0.042725436,-0.0026688748,0.047811236,-0.035717808,0.019054184,0.013839479,-0.03712402,-0.017542506,-0.031124178,0.009275146,-0.031077305,-0.011044631,0.04335823,0.02307361,0.022651745,-0.009720447,0.0069021615,0.0074880836,0.012632479,-0.029389849,-0.008525166,0.01939402,-0.006943176,-0.010728233,-0.039467707,-0.0088005485,0.009187258,-0.0019057114,-0.02044868,0.04038175,0.0060174195,0.03524907,0.038741164,-0.019933067,-0.05184238,-0.009474359,-0.0135933915,-0.004034073,-0.009198976,-0.027936762,0.005947109,0.035717808,0.012421547,-0.023354853,0.0019921348,-0.006357254,0.01915965,0.009005622,-0.038202118,-0.0031024572,0.0038905223,0.010710655,0.02878049,0.04837372,-0.032272585,0.027913326,-0.0024550133,-0.011337591,-0.029788276,0.018819816,0.021808019,-0.0025883105,0.014460556,0.013370741,-0.032858506,0.037452135,0.010880572,-0.030421073,0.010236057,-0.018831534,0.0038084933,-0.009333738,-0.010488004,0.0026322547,-0.0067673996,0.034686584,0.026178997,0.009298583,0.009081791,0.023858745,-0.025897754,0.015655836,0.04223326,-0.003937396,0.008519307,-0.012140305,0.026249306,-0.000691388,-0.023847027,0.010874713,0.010833698,0.00021697425,0.00047349825,-0.0028666235,-0.048889335,0.0045350366,0.024679037,-0.039467707,-0.027561773,0.027866451,-0.01886669,0.0054754415,0.002832933,0.039514583,-0.040920794,-0.008115021,0.00022484758,-0.024304045,0.00020434031,0.0028475812,0.021526776,0.007411914,0.031803846,0.013312149,0.020718204,0.015737865,0.024561852,0.052545488,0.017015176,0.041928582,0.00916968,0.020976009,0.00420985,-0.0033631925,0.022733774,0.05915469,0.0066853706,-0.004297738,0.02239394,0.034358468,0.013101216,0.013124653,-0.018749505,-0.028264878,-0.015081633,0.026061812,-0.014132439,-0.044951938,0.0075056613,0.012995751,0.006831851,-0.06131088,-0.026788356,-0.0016698778,-0.0068728654,0.024327483,0.029061733,-0.014319935,0.021878328,0.01164813,-0.032506954,0.009931378,0.031077305,0.00032829944,-0.022569716,0.049264323,0.013874634,-0.0043592597,-0.017226107,0.043826967,0.006251788,0.0077986224,-0.029577345,-0.0029208213,-0.0029706247,0.013405896,0.020636175,0.009954816,-0.025124338,-0.014073847,0.054654807,-0.0052498616,-0.008484151,-0.022183008,-0.020952571,0.0055193854,-0.004772335,-0.001191619,-0.010013407,0.012890285,-0.0029354694,-0.00383193,0.06027966,-0.019054184,-0.019710418,0.0029134974,-0.0032284304,-0.024843095,0.0009191652,-0.0025282535]},{"id":"interface-GatewayChannelUpdateBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelUpdateBulkDispatchData\nDescription: CHANNEL_UPDATE_BULK — channels[]\nProperties: channels: APIChannel[]","meta":{"url":"/docs/typedefs/GatewayChannelUpdateBulkDispatchData"},"embedding":[0.032180298,0.004699253,0.021724606,0.019343032,0.01704278,0.053021982,-0.009990996,0.008236763,0.0029537333,0.009851586,0.007197002,0.002563097,-0.022630766,0.035084657,0.050326735,-0.00066328305,0.010972669,0.012000812,-0.041938946,0.009305567,-0.01930818,-0.0031686558,0.055438407,0.033272337,-0.01994714,-0.039499287,0.012895355,0.028857714,0.016624551,0.008788591,0.031878248,-0.030065926,0.069518745,0.020632567,0.009741221,0.019958757,-0.010031656,0.06501117,-0.0014035315,-0.03543318,0.023269726,-0.015578982,-0.0068020094,-0.0020954951,-0.037896078,0.03933664,-0.03241265,0.0010688042,0.0017890852,-0.000028294811,-0.02946182,0.0018631464,-0.034248203,0.0046876357,0.037779905,0.0040573897,0.015741628,-0.023095464,-0.024233973,0.012151839,-0.039081056,-0.011245679,-0.0076965517,-0.017414538,-0.0015393103,0.0071331062,-0.029694168,0.04791031,0.043751266,0.009508872,-0.04219453,-0.03008916,-0.010507971,-0.0032644998,-0.02379251,0.013313582,-0.006372164,-0.0047747665,0.013917689,-0.034015853,-0.023780894,0.056693092,-0.070169315,-0.050512616,0.014510178,0.017774679,0.01722866,0.004315878,0.009160349,0.028044492,-0.0045017567,0.020679038,-0.045517117,0.025256308,-0.014777379,-0.08178675,0.07002991,-0.01599721,-0.0012895354,0.01735645,0.03603729,-0.03176207,-0.030158866,-0.04098632,0.014475326,-0.07393337,0.0050739157,0.026859514,-0.04128837,-0.043425977,-0.02960123,-0.03022857,-0.019435972,-0.011826551,0.01056025,-0.019679938,0.03647875,0.015671922,0.053951375,0.024512792,-0.008143824,0.0065464256,0.013197408,-0.030065926,-0.022990907,-0.018518195,0.020225957,0.0013120442,-0.054601952,-0.021469023,0.059713624,-0.008608521,0.031692367,0.015602217,-0.007777874,-0.00155238,-0.014196508,0.04147425,0.011112078,-0.0032674042,0.04967616,-0.004100955,0.059945974,-0.007075019,-0.011019139,-0.00060265453,-0.04949028,-0.01590427,0.050884373,0.014091951,-0.08796723,0.040498383,-0.020098165,0.021503875,0.014347535,-0.00729575,-0.035409946,-0.0076036123,0.017135719,-0.0367111,0.0037989018,-0.057622485,-0.023711188,0.010688041,-0.032552056,-0.021794312,-0.01694984,-0.030786207,-0.0638959,-0.028021257,-0.0060120234,-0.048653826,-0.031018555,-0.025628066,-0.031785306,-0.0037233885,-0.032923814,-0.06872875,-0.028764773,-0.014428857,0.041172195,0.052975513,0.000582324,-0.061200656,-0.03808196,0.04967616,0.0129882945,0.044564486,0.048700295,-0.0027213846,-0.014556648,-0.0006095524,0.017693356,0.04791031,-0.00019295837,-0.049908508,-0.014533414,0.0039499286,0.061247125,-0.032970287,0.04038221,-0.04454125,0.0241178,0.015288547,-0.000095117764,-0.027138332,0.006906566,0.0140803335,-0.04537771,-0.006476721,0.052092586,0.031018555,-0.02593012,-0.020481542,-0.06831053,-0.013267113,-0.032784406,0.036060523,-0.07147047,-0.018785395,0.03150649,0.008242572,0.036594927,0.0005126194,0.010629955,0.040939845,0.0016351542,0.015032963,0.037129328,-0.028044492,0.023362665,0.031018555,-0.0011290696,-0.04519183,-0.02778891,-0.0035810748,0.010362754,0.00310476,0.02271209,0.029392116,-0.031901482,-0.03889518,-0.024512792,0.016485143,-0.013580783,0.016822048,0.012860502,-0.053672556,-0.016729109,0.043937147,0.025209839,0.010548633,-0.018750543,-0.028904183,-0.008585285,-0.00023035199,0.040242802,0.020016843,0.01849496,0.04609799,0.012883738,-0.024861315,-0.033829976,0.0054950477,-0.027300976,-0.02098109,0.05892364,0.0341785,-0.0256513,0.022874733,0.056646623,0.0074351593,0.047213264,-0.026139233,0.0029000028,-0.02488455,0.0076791258,-0.023664718,0.0013890098,-0.024303678,-0.054276664,-0.015369869,-0.011094652,0.026813043,-0.013847984,-0.0030670033,0.003961546,0.04382097,0.0153931035,0.010589293,0.00025612817,0.03385321,-0.009781882,-0.03847695,-0.0060817283,0.03341175,-0.0012706572,0.003598501,0.050605554,-0.0011762654,0.009549533,0.010734512,-0.006430251,-0.026371581,-0.009259097,0.008678225,0.018367168,-0.024210738,0.04356539,-0.033388514,0.039266936,0.023746042,-0.032970287,0.016868519,-0.04767796,-0.026348347,0.01971479,0.03856989,0.021492258,0.012663006,-0.037384912,0.015323399,-0.02569777,-0.04472713,-0.0062385635,-0.024721906,-0.007963753,-0.018250993,0.022839881,-0.027998023,-0.0027751152,-0.033969384,0.046492983,-0.0132903475,0.032296475,0.015253695,-0.002306061,0.021852398,-0.008085736,-0.0049228887,0.034782607,-0.010223344,0.02579071,-0.03329557,0.022909585,0.0018311985,-0.012140221,0.037361678,-0.013650488,0.030693268,0.02479161,-0.005474717,0.005175568,-0.035317007,-0.007446777,-0.033922914,0.013906072,-0.04396038,-0.022723706,0.025349246,-0.023908684,0.030298276,0.0073770722,0.008782783,0.0036362577,-0.021898868,0.012570066,0.020376984,0.0057709618,0.024489557,0.03856989,-0.029113296,0.0048967497,-0.0003946298,0.0064244424,-0.021155352,0.008806017,-0.01735645,-0.03866283,-0.04214806,0.0097934995,0.031204434,-0.0046440703,0.023258109,-0.0067787743,0.03394615,-0.06319886,0.028346546,-0.024721906,-0.007179576,-0.0017673025,0.0075978036,-0.015335017,-0.0038686064,0.010054892,0.018448489,0.0133251995,-0.004908367,0.0074409684,0.00064404163,0.024280442,0.009456594,0.01223316,0.028114198,-0.005863901,0.013023146,0.033783507,0.029090062,0.06059655,0.009845777,0.015625453,-0.0011936916,0.030135632,0.015486043,0.01813482,-0.006656791,-0.025326012,0.057436608,-0.050977312,0.03680404,-0.002369957,-0.030251805,0.010844877,0.045470648,-0.010722894,-0.026836278,0.03680404,-0.0057709618,-0.014777379,-0.031529725,-0.025906883,0.03204089,0.03236618,0.0064476775,0.05139554,-0.006598704,-0.0145682655,-0.03803549,0.015067816,0.007591995,-0.10018878,0.008765356,-0.034875546,0.009171966,-0.029647699,0.021829164,-0.0034416656,0.0208533,0.01513752,-0.016276028,-0.03594435,-0.029694168,-0.02960123,0.07281809,-0.051720828,0.024396617,-0.0070575927,0.038825475,-0.016415438,0.010002613,0.018099966,0.026813043,0.01513752,0.022723706,0.0028346546,0.029136531,0.0011218088,0.021817546,-0.03155296,0.042403646,0.013696958,-0.01649676,-0.01028724,0.05650721,-0.039987218,-0.036827274,-0.032552056,0.025140133,-0.0029406636,0.023769276,-0.027277742,0.011600011,0.0047747665,-0.001236531,0.04163689,0.07858034,0.030786207,-0.01078679,-0.0145915,-0.00602945,0.0007965205,0.000011957792,0.029577995,-0.011280531,-0.002580523,-0.03838401,-0.061758295,-0.003014725,0.049954977,-0.014963258,-0.004246173,-0.025116898,0.03589788,-0.035967585,0.06524353,-0.02836978,-0.038964882,-0.021236675,-0.043472447,-0.0392437,-0.0126862405,0.005224942,-0.0044494784,-0.02479161,-0.047817368,0.013081234,0.007382881,-0.015079433,-0.020469923,0.07555981,-0.0347129,0.015799714,0.01196596,0.013557549,-0.011623246,0.002473062,-0.012360953,-0.09767941,0.005338212,0.012883738,0.01944759,-0.034062326,-0.00092794275,0.06919345,0.002773663,0.0003672199,-0.0042635994,-0.010705468,0.021840781,0.02460573,-0.01708925,-0.0006843396,-0.021550344,0.043611858,0.033551157,-0.012000812,0.062083583,0.016125003,0.0067497306,0.010327902,0.033922914,-0.011234061,0.016752344,0.0060991542,0.009456594,0.04533124,-0.017844383,-0.025233073,0.017379686,-0.015230459,-0.03982457,-0.014835467,0.010496354,-0.028625363,-0.00752229,0.027393917,-0.00197206,-0.019958757,-0.018785395,-0.007673317,-0.02737068,0.03527054,0.0006683657,0.03698992,0.030762972,0.021991808,-0.00756876,-0.0062966505,0.015486043,-0.0039499286,0.0074351593,-0.08020678,0.034689665,0.050466146,-0.036339343,0.01599721,0.023316195,-0.019482441,-0.02778891,0.001293892,0.005062298,0.016217941,0.008922191,-0.0044349562,-0.0009664255,0.022967672,-0.0058000055,-0.013708576,-0.0134413745,0.026162468,-0.007690743,0.03952252,-0.02751009,-0.0029145244,0.013046381,0.036176696,-0.01509105,-0.012035664,-0.021852398,0.028973887,0.018053496,0.044471547,0.0045656525,-0.0059307013,0.013255496,-0.018645985,-0.031878248,0.027858613,0.022584297,-0.01513752,-0.0078940485,0.029020356,-0.0018616943,0.02002846,-0.009212627,0.06575469,0.011489645,0.0012263657,0.030670034,-0.021376083,0.0115419235,-0.0311812,0.00077982043,0.008922191,-0.06617292,-0.03461996,0.02855566,-0.049954977,-0.002531149,-0.015125902,0.027022159,0.015218842,0.003984781,0.008190293,0.038779005,-0.037175797,0.015335017,-0.017763061,-0.0004632453,0.031669132,-0.031111496,-0.031692367,0.030391214,0.017844383,0.020737125,-0.02016787,-0.044518016,0.020318897,-0.009839969,0.011623246,-0.004885132,-0.012674623,0.0145682655,-0.018413637,-0.0128372675,-0.0083471285,-0.030809442,0.02388545,0.0024382095,0.0139293065,-0.0020315992,0.013197408,0.026813043,-0.01473091,0.02230548,0.0010557346,-0.008335511,0.01904098,0.0040283464,0.03457349,-0.005988789,0.048189126,-0.045563586,-0.010554441,0.014986494,-0.02760303,0.026534226,0.021991808,0.00076021603,0.029508289,0.02121344,0.02869507,0.019912286,-0.00041096684,0.0048880363,-0.012790798,0.026301878,0.0075978036,-0.004083529,-0.0028433676,-0.025163367,0.01876216,0.003290639,-0.021039179,0.009863203,0.009224244,-0.022131218,0.010618337,0.012488744,0.0024135225,0.00734222,0.019075831,-0.041497484,0.0052046115,0.029833578,0.027951553,-0.06561528,0.0072841328,0.007731404,0.00648253,0.019459207,0.010746129,-0.02279341,-0.0016206325,0.03252882,-0.014893554,0.004071912,0.0241178,-0.025674535,0.014347535,-0.019889051,0.012906972,0.0015073625,0.0020272427,-0.023513691,0.0111934,0.017821148,0.022131218,-0.007632656,-0.0014579883,-0.008730504,-0.018471725,0.024907785,-0.013592401,0.023037378,-0.020156253,-0.0044030086,-0.0082309535,-0.022816645,0.023653101,-0.03331881,0.005840666,-0.056088984,0.047817368,0.0020040078,-0.010025848,0.024280442,-0.035293773,0.01468444,0.013708576,-0.037454616,0.0038192323,0.028927417,0.032575294,-0.038546655,0.0014688796,-0.058180124,-0.022212539,0.039359875,0.0145915,-0.048653826,0.018518195,0.023908684,-0.024071328,-0.0064941472,-0.0317156,-0.013348435,-0.059341867,-0.024698671,-0.013383287,-0.032157063,-0.0033603436,-0.015788097,-0.01024658,-0.0011435915,0.036316108,0.015032963,-0.027719203,-0.044169493,0.0069995057,-0.03403909,0.0024846792,0.008329703,0.0012902615,0.0010412128,0.015300164,0.042380407,-0.065336466,0.021004325,0.027812144,-0.014289447,-0.0016235368,-0.055391937,0.013673723,0.059992444,0.021387702,-0.058273062,0.031878248,0.025418952,-0.016729109,0.0036217358,0.0035868837,-0.0072260457,0.02760303,0.017379686,0.01237257,0.0104324585,0.0033661523,0.033434983,0.011745228,0.026929218,0.019099066,-0.013034764,-0.0018791204,0.013673723,0.0477709,-0.022770176,0.04581917,0.010293049,-0.0057215877,-0.001738259,0.008527199,-0.0063082683,0.019064214,0.02479161,-0.013673723,-0.07081989,-0.013313582,-0.009375271,0.003711771,0.0015320495,-0.01418489,-0.00861433,-0.015218842,0.006215329,-0.0004893845,-0.0067381132,-0.009369463,-0.033667333,0.028300077,-0.009903865,-0.00037012427,-0.012175074,-0.046283867,0.027928317,0.0011639219,-0.009915482,0.027835378,0.062780626,0.027022159,0.0073131765,0.006285033,-0.034527022,-0.008004414,0.0051407157,0.003461996,0.036292873,0.01704278,0.026766574,0.008259998,0.040684264,0.020237574,0.044680662,-0.014452091,0.0057622488,0.01862275,0.023722805,0.0071331062,0.008939617,0.026859514,0.0010499258,-0.010978478,0.0011719089,0.0017237372,-0.022189304,-0.01028724,0.0036594926,0.0128024155,-0.007760448,0.022096364,0.027208038,0.01780953,-0.012407422,0.025116898,-0.038546655,-0.051999647,-0.021201823,0.0497691,-0.0024353052,0.022990907,-0.034015853,-0.00036014055,-0.037733436,0.002157939,-0.0021317997,0.015451191,0.031343844,0.029531524,0.06877522,0.02660393,0.0044088173,-0.0073596463,-0.031088261,-0.015962359,0.008782783,0.037989017,0.002102756,-0.009253289,-0.0128024155,-0.019192005,-0.03259853,-0.019238476,0.042171296,0.0018108679,-0.016973075,-0.014335917,0.011977578,-0.023815745,0.007179576,-0.04382097,0.03336528,0.0071737673,0.010821642,-0.02116697,-0.015962359,-0.02502396,0.0142662125,-0.018007027,-0.028904183,-0.028997121,-0.01854143,0.033249103,0.0003200241,-0.039871044,-0.0078766225,-0.0023801224,-0.04405332,0.018657604,-0.04744561,0.007754639,0.019424355,-0.0057883877,0.028160667,-0.038546655,0.040033687,0.00870146,0.03032151,-0.01509105,0.04916499,0.033829976,0.010490545,-0.022235774,-0.001730998,-0.0024411138,-0.008480729,-0.030391214,0.013696958,-0.024373382,0.007348029,0.021387702,0.0080450745,-0.05655368,0.03708286,0.027277742,-0.037268735,0.044657428,-0.042612758,0.028393015,-0.009892248,0.029763874,-0.0059539364,-0.0014674275,-0.00852139,0.009828351,0.019343032,-0.004301356,-0.0442392,-0.027138332,0.044355374,0.0114083225,0.0088699125,0.010629955,-0.026023058,-0.00394412,-0.000059584745,-0.020365367,0.0014470969,0.04500595,-0.002166652,0.026673635,-0.018192906,0.0007870813,0.026998922,-0.015346634,0.0150561975,0.0023176786,0.03829107,0.033644095,0.01613662,-0.036409047,0.00582324,-0.018332316,-0.02356016,-0.023908684,-0.018367168,-0.0006945049,-0.0121983085,0.0056867353,-0.03403909,-0.022909585,0.06728819,-0.02243327,-0.014881937,-0.031855013,-0.022944437,-0.046400044,-0.0101129785,0.0065464256,0.0147541445,0.0040399637,0.021039179,-0.0025587403,-0.026998922,0.004414626,0.018378785,-0.0014158752,0.03719903,-0.0057361093,0.013580783,0.015706774,-0.042031884,0.0044785216,0.005805814,-0.033156164,-0.0010535563,-0.014463709,0.0070227403,-0.019087449,0.036339343,-0.011216635,-0.0064360597,0.028741539,-0.0026182798,0.0016090149,-0.0010317736,0.001091313,0.009967761,0.030414449,-0.02474514,0.006128198,-0.0090035135,0.012906972,0.013580783,-0.016415438,-0.0075978036,-0.016066914,0.007760448,0.022154452,0.038430482,-0.0035549356,0.0058668056,-0.0022494262,-0.006784583,0.008533007,0.027440386,0.0014899363,0.030693268,-0.010252388,0.017461007,-0.045215063,-0.042845108,-0.032203533,-0.019889051,0.010624146,0.0072260457,-0.016740726,-0.013487844,0.03694345,0.03589788,-0.0051000547,-0.018204523,0.00462374,-0.022363566,-0.014510178,0.0054921433,0.017623652,-0.012279631,-0.029113296,0.0049025584,-0.010298857,0.013894455,-0.015021346,0.015602217,0.011373471,-0.016217941,0.006953036,-0.016647786,-0.015079433,-0.03441085,0.027905082,0.004129999,0.009863203,-0.00032256538,-0.00956115,-0.043077454,0.020783594,0.0048880363,0.019784495,0.021062413,0.0069181835,-0.0078766225,-0.02479161,-0.0059307013,0.02397839,-0.0011276174,0.012453892,-0.009415932,0.03861636,-0.0016903371,-0.015625453,0.0011334262,0.0050303503,0.013871219,-0.010978478,0.028346546,0.013243878,-0.018889952,-0.04328657,-0.0042229383,-0.015950741,-0.0025296968,0.0030031074,-0.03580494,0.0033545347,0.00017435232,-0.0053178817,-0.014847084,0.070587546,-0.00089599483,0.002191339,0.015427956,0.0016003019,0.0065289997,-0.036641397,0.03441085,-0.02660393,-0.017263511,0.008079927,0.008846678,0.004858993,0.0085155815,0.03852342,0.0042229383,0.011843977,0.0024033573,0.015346634,-0.052464344,0.020644184,0.009619238,-0.019482441,-0.012848885,-0.021225058,0.012314483,0.038686063,-0.019819347,0.02655746,0.042659227,0.020237574,-0.01509105,-0.028578894,0.0037901888,-0.041729834,-0.003978972,-0.0064070164,-0.026371581,0.020005226,-0.017751444,-0.01042665,-0.013894455,-0.018158054,-0.022781793,-0.039266936,0.011756846,0.015439574,-0.017565565,-0.01577648,-0.029717403,0.028044492,-0.019250093,0.02760303,-0.018065114,-0.011460601,0.0023409135,0.027579796,0.022038277,-0.0005732479,0.0024846792,-0.020551246,-0.005312073,0.012628154,-0.0012350788,0.018750543,0.00082701625,0.03929017,-0.011704568,0.022328714,0.0114083225,0.0068194354,0.0024033573,-0.02266562,0.007406116,-0.0115244975,-0.022839881,0.0015698061,-0.054509014,0.009224244,0.04758502,-0.016636169,-0.012755945,-0.01291859,0.013418139,-0.036246404,0.037872843,0.008800209,0.0088350605,-0.014394004,-0.052324936,0.0037321015,-0.017612034,-0.026232172,0.020795211,0.0048880363,0.025093663,-0.010937816,-0.0021986,-0.009723795,-0.010258197,-0.02030728,0.02755656,0.02936888,-0.025860414,0.009799308,0.0109203905,0.016833667,0.0055705607,-0.011448984,-0.00071519846,-0.009770264,-0.031436782,0.016171472,0.003000203,-0.025906883,-0.015242077,-0.006598704,-0.022468122,-0.008538816,0.022723706,0.020040078,0.02551189,0.03485231,-0.017553946,-0.07244634,0.004600505,0.018088348,0.027486855,0.028811242,-0.0041445205,-0.015486043,-0.0082135275,0.03752432,-0.024164269,0.029647699,-0.010223344,-0.030925617,-0.0029856812,0.022781793,-0.0051871855,0.00023089655,-0.010531207,0.0014826753,0.005071011,-0.002054834,0.0117103765,0.0029943944,-0.03803549,0.021143734,-0.041567188,0.009131305,-0.00706921,-0.020609332,-0.038430482,0.019435972,-0.0035462226,0.0208533,-0.025744239,0.028532425,0.0005674392,0.018564664,-0.0078069177,-0.037872843,-0.024721906,0.01296506,-0.0072144284,-0.037013154,-0.0022305478,-0.004809619,-0.006883331,-0.0110598,0.011112078,-0.008672416,0.017263511,0.012314483,-0.010490545,0.006906566,-0.040521618,-0.022142835,-0.009410123,-0.023409136,-0.019586999,-0.0037785713,0.048467945,0.013139321,0.025000723,-0.0031686558,-0.012209926,0.045981813,0.007150532,0.037594024,-0.003136708,-0.0020649994,-0.027533324,0.016845284,-0.050744962,-0.00231187,0.031111496,0.009079027,0.022456504,-0.009752838,0.031157965,0.018146437,0.02361825,0.016647786,-0.020225957,-0.015892653,0.009706369,0.011309574,-0.017670121,0.019865816,0.008823443,0.024675436,-0.010815834,-0.0061223893,-0.008323893,0.020063313,0.019052597,-0.0047515314,0.028904183,0.004347826,0.009648281,0.01930818,-0.03838401,-0.004246173,0.034108795,0.00042585167,-0.024512792,0.04791031,-0.024141034,0.013836367,0.015404721,-0.011768463,-0.023037378,-0.01708925,-0.018564664,0.0023191308,-0.008225145,-0.008800209,-0.013209025,-0.0017455198,0.018227758,-0.022677237,-0.03942958,-0.008800209,0.01640382,-0.019645086,-0.009433359,-0.016427055,-0.0075164814,0.0034474744,0.031018555,0.03362086,-0.026069527,-0.016066914,0.009723795,0.01904098,0.014057099,0.014254595,0.011873021,0.015915887,0.010571867,0.010043274,-0.021898868,0.021782694,0.016345734,-0.02343237,-0.010780981,-0.0008124945,0.014672822,-0.0074583944,0.009526298,-0.0042665037,-0.02660393,0.0065348083,-0.006906566,0.012953442,-0.00062298507,0.027393917,0.013696958,0.009747029,0.015973976,0.0022624957,0.0075397165,0.020144636,0.022444887,-0.036618162,-0.025721004,0.0015407625,0.016938223,0.020040078,0.00802184,0.0067613483,-0.04251982,0.011826551,0.013209025,-0.037640493,0.008898957,0.028346546,0.0035665531,-0.017147336,0.00008068673,0.026766574,-0.026836278,-0.029856812,-0.0013606923,-0.002886933,-0.0024919403,0.010612529,0.0075571425,-0.019366266,0.020586098,0.028300077,0.0016946936,0.024721906,0.009026748,0.015404721,-0.005715779,0.031831775,0.019296562,0.0134413745,0.008103162,0.010368562,-0.03905782,0.046260633,0.005248177,-0.00041278204,-0.0035955966,0.03761726,0.0077662566,-0.033713803,-0.020005226,-0.02107403,-0.01291859,0.031901482,-0.00462374,-0.01880863,0.0036740145,-0.002612471,-0.040591326,-0.035688765,-0.032947052,-0.013406522,-0.031436782,0.0074003073,0.023862215,-0.0021317997,0.0013403618,0.024326913,-0.05869129,-0.0026371581,0.02397839,-0.007545525,-0.00050753675,0.033481453,0.035874646,0.019691555,0.031111496,0.046492983,0.0060120234,0.009665707,-0.0027402628,-0.022421652,0.035247304,0.0005224216,0.020098165,0.02121344,-0.005053585,0.009369463,0.024094563,-0.0063256943,0.022142835,-0.013069617,-0.0031802733,0.0311812,-0.004838662,-0.028207136,0.0053469255,0.019598616,-0.003825041,0.0056228396,0.006430251,-0.014696058,0.02257268,-0.011356045,0.028207136,-0.05687897,-0.013906072,0.03008916]},{"id":"interface-GatewayChannelUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelUpdateDispatchData\nDescription: CHANNEL_UPDATE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelUpdateDispatchData"},"embedding":[0.034710437,0.019815303,-0.016180253,0.01450348,0.0054250355,0.039973304,0.0010655774,0.017477611,-0.014417805,0.015666205,0.014797221,0.028933523,-0.06300752,0.035077613,0.027685123,-0.015494857,-0.006652018,0.010605287,-0.02014576,0.037452023,-0.05625147,0.0041490966,0.025482062,0.029080395,-0.0033290687,-0.045015864,0.02172462,0.016437277,0.007025314,-0.0050517395,0.034955222,-0.02724451,0.050376642,-0.015813077,0.021492075,0.03375578,-0.024123508,0.015433661,-0.028027821,-0.047561623,0.0011152992,-0.0027446458,0.0133407535,0.0078147445,-0.018383313,-0.0080411695,-0.030451188,0.021088181,0.00457135,0.005908485,-0.017857026,0.009699584,-0.0010158556,0.019313494,0.03434326,0.001921558,0.046068437,-0.010121837,0.00065938814,-0.021908209,-0.021345206,-0.0076066772,-0.016498473,-0.052579705,0.00007601705,-0.013181644,-0.03439222,0.03524896,0.04019361,0.002299444,-0.011688458,-0.0039838674,-0.02535967,-0.0155070955,-0.021626707,0.01657191,-0.030524623,-0.0070314337,0.030695971,0.0051465933,-0.024686513,0.036056753,-0.07358221,-0.06007011,0.012061754,-0.006474549,-0.048295975,-0.010978583,0.011559946,0.03231155,-0.010990823,0.049103763,-0.023780812,0.022006124,-0.020586373,-0.043547157,0.06266482,0.007924897,-0.0016905427,0.0031913775,0.038039505,-0.05106204,-0.0394103,-0.05010738,0.01922782,-0.062371083,-0.017440893,0.03767233,-0.026510157,-0.021553272,-0.029814748,-0.029031437,-0.047072053,-0.006208346,-0.018505706,-0.003277052,0.07216246,-0.032531854,0.050058424,0.022728238,-0.02976579,0.0057769134,-0.010519613,-0.030671494,-0.0014212799,-0.011143813,0.024515165,-0.01070932,-0.064818926,-0.017416414,0.056349386,-0.004963005,0.003974688,-0.0018481227,-0.007337414,-0.0060492363,-0.017661199,0.03576301,-0.021932688,-0.03608123,0.022813912,-0.011768013,0.052139092,0.007906538,-0.022483453,0.0014059808,-0.030157447,0.019178864,0.04462421,0.0052689854,-0.082541324,0.0703021,-0.0022902647,0.00440612,0.0099566085,0.025579976,-0.02127177,-0.02851739,0.0091243405,-0.019937694,0.015237833,-0.04805119,-0.038015027,0.0371338,-0.068931304,-0.060363848,-0.008946872,-0.023070935,-0.08626205,-0.013585538,0.02631433,-0.031283453,-0.02912935,-0.0038400562,0.03326621,0.0016415858,-0.031014191,-0.04193158,-0.05404841,-0.0252128,0.04983812,0.03764785,0.014479001,-0.043424763,-0.010060642,0.004302087,0.03581197,0.033462036,0.006902922,-0.024037834,-0.031773023,0.012838945,0.04978916,0.034465652,-0.0013333104,-0.05355884,0.024343815,-0.038088463,0.0592868,-0.03953269,0.03341308,-0.054586936,0.034930743,-0.018934079,0.0022810851,0.014307652,0.0007848402,0.01071544,-0.0532651,0.0060920734,0.026387766,0.037452023,0.0019246179,-0.0048559117,-0.059629496,-0.0014059808,-0.024821145,0.01165174,-0.036301535,-0.055859815,0.015188877,0.019656193,0.023866486,0.0038981927,-0.011933243,0.037476502,0.009314049,0.016412798,-0.005688179,-0.0029052857,0.0280523,-0.0012942979,0.009993326,-0.04141753,-0.022507932,-0.020549655,0.0066887354,-0.0233402,0.026583593,0.031626154,-0.03715828,-0.0064072334,-0.012435051,0.020219197,-0.03703589,0.007533242,0.01070932,-0.03436774,-0.03894521,0.041539922,0.048858978,0.037892636,-0.015421421,-0.038700424,-0.009491517,-0.0010074411,0.07480613,0.0010135607,0.016510712,0.05468485,0.029055916,-0.025139365,-0.03453909,0.026510157,-0.04085453,-0.021394162,0.06379083,0.025408627,-0.0114008365,0.019374691,0.03057358,0.0037207238,0.037256196,0.0048559117,-0.022006124,-0.012973577,0.024233662,0.003012379,0.013622255,0.0066581373,-0.037892636,-0.021651186,-0.012416692,0.034783874,-0.028664261,0.027856473,0.0048589716,0.00835327,0.032972466,-0.007918778,-0.035420313,0.01751433,-0.017453132,-0.042519063,-0.0057707937,0.061049245,0.008524619,-0.011994439,0.017722396,0.0021556332,0.006189987,0.022226429,-0.036179144,-0.04193158,0.015029767,0.028615303,0.07480613,-0.046264265,0.033951607,-0.051453695,0.009571073,0.0044703763,-0.023095414,0.02017024,-0.038798336,-0.004314326,0.031773023,0.046998616,0.0036778867,0.008726566,-0.012936859,0.013732408,-0.016327124,-0.05248179,0.013928236,-0.0035707934,-0.03706037,-0.017367458,0.043277893,0.0060859537,0.019827541,-0.022630325,0.038700424,-0.028933523,0.022838391,0.024233662,-0.048858978,0.014417805,-0.022887347,-0.036105707,0.0133407535,-0.024478447,0.01213519,-0.012379974,0.023034219,-0.0037237837,-0.019399168,0.014589154,0.010103479,0.038675945,-0.0046264264,-0.016584147,0.019399168,-0.04048735,-0.010268709,-0.022924066,0.045676783,-0.022728238,-0.028150214,0.0280523,-0.009699584,0.02947205,0.005795272,0.018346597,-0.012692074,-0.011143813,-0.017416414,0.02677942,-0.002851739,0.0052047297,0.0008337971,-0.04863867,-0.03307038,0.0019184982,-0.006964118,-0.03147928,0.015788598,-0.028297083,-0.010672603,-0.021406401,0.00002596054,0.05703478,0.018738251,0.017746873,0.006982477,0.043791942,-0.04991155,0.035469268,-0.02819917,-0.013830322,-0.015543814,-0.0010954104,-0.001041099,0.012116831,-0.028933523,0.020941311,0.020708766,0.029374136,0.029741313,0.0010609877,0.030793887,0.029888183,-0.0007148471,0.011988319,-0.03451461,0.042763848,0.034147434,0.036766626,0.06388874,0.013377471,0.03314382,-0.010464536,0.023976639,0.011786372,0.015250072,-0.025335193,-0.016951324,0.027317947,-0.030010575,0.044452857,0.018309878,-0.007826983,-0.0040573026,0.052237004,0.024821145,-0.030647015,0.021381924,0.016327124,0.030695971,-0.04535856,-0.029863704,0.037280675,0.028101256,0.007955495,0.05938471,0.011290683,0.008610293,-0.033682343,0.007894299,0.009271212,-0.0905213,0.01324284,-0.01685341,-0.0053485404,-0.04836941,0.033829212,-0.0068172473,0.013573298,0.0011650211,0.007135467,-0.037256196,-0.01386704,-0.020696526,0.056006685,-0.061196115,-0.00058251055,0.0071109887,0.06065759,-0.012630878,-0.008487902,-0.0017471492,0.0073986105,-0.0126064,0.062371083,-0.030035054,0.014013911,0.006431712,0.0075577204,-0.02173686,0.024784427,-0.016119057,-0.014797221,0.008726566,0.06501476,-0.024759948,-0.024233662,0.00014553202,-0.005421976,0.019435886,0.016792214,-0.034906264,0.008726566,-0.017232826,0.021932688,0.04401225,0.0529224,0.00053049385,0.0015520866,-0.0050150217,-0.01637608,0.014466762,-0.010109599,0.025702368,-0.012728793,0.00053164124,-0.021687904,-0.046435613,0.008622533,0.031601675,0.0024968015,-0.018554663,0.0052995835,0.041344095,-0.026681507,0.06193047,0.012594161,-0.018664816,0.010911267,-0.036815584,-0.042812802,-0.00993213,0.00834715,-0.004161336,-0.032262594,-0.04298415,0.0014426984,0.003246454,-0.013854801,-0.00022833802,0.0763238,-0.02001113,0.020133521,0.02944757,0.0056484016,-0.005544368,0.012392214,0.020121284,-0.12151101,-0.013316275,0.003448401,0.027611688,-0.03449013,-0.0037084846,0.053803626,-0.004837553,0.0017853967,-0.0022137696,-0.016425038,0.031283453,0.032287072,-0.009032547,0.0024233663,-0.02851739,0.014564675,0.03515105,-0.006853965,0.013255078,0.024796667,0.015164398,0.0028150214,0.020341588,-0.028174693,-0.0074414476,0.014479001,0.0055290693,0.04616635,-0.01857914,-0.049568854,-0.007104869,-0.0066703768,-0.009271212,-0.038529076,-0.020427264,-0.028346041,-0.010189153,0.024221422,-0.014723785,-0.010164675,-0.005106816,-0.009742422,-0.02900696,0.034881786,-0.006700975,0.04220084,0.051943265,0.013328514,-0.00267886,0.012545204,0.017991658,-0.017673438,0.010941866,-0.084352724,0.036742147,0.03250738,-0.031430326,0.016926846,0.009522116,-0.02427038,-0.03970404,0.02741586,-0.02379305,0.025335193,0.010886789,0.009210016,-0.010788876,-0.002065369,-0.0024845623,-0.015776359,-0.013940475,0.018468987,-0.012643117,0.031650633,-0.01512768,-0.027024206,0.012110711,0.05228596,-0.0034208628,0.012428931,-0.016314885,0.0062052864,0.010954104,0.03311934,0.018615859,-0.004617247,0.00027767738,-0.0012698194,-0.019619474,0.012557443,0.023058696,0.0064561903,-0.0024968015,0.01657191,0.0022902647,0.024453968,-0.022201952,0.07387595,-0.013267318,-0.021798057,0.032213636,-0.046949662,0.0045774695,-0.023523787,-0.0043541035,0.01860362,-0.048149105,-0.044330467,0.03311934,-0.051453695,-0.009974967,-0.02648568,0.019276777,0.021332966,-0.012863424,0.022410018,0.047023095,-0.047072053,0.026583593,-0.022924066,0.0076066772,0.025114886,-0.029398615,-0.047463708,0.035689574,0.018407792,0.03152824,-0.02567789,-0.037403066,0.05830766,-0.019252298,-0.011957721,-0.016804453,-0.010280947,0.009185537,0.0036319895,-0.018481227,0.013695691,-0.031430326,0.007312936,-0.013316275,0.027220033,-0.013377471,0.01403839,0.07152602,-0.00009184198,0.00882448,0.014099585,0.00897747,-0.01324284,-0.007380252,0.02001113,0.03135689,0.041270662,-0.05752435,-0.016094578,0.020549655,-0.01056245,0.042568017,0.004191934,0.0014832409,0.011394717,-0.00046929772,0.051747438,-0.00251822,-0.022152994,0.001119889,-0.014638111,0.04222532,-0.0039043122,-0.0048283734,-0.039189994,-0.02819917,0.02976579,-0.026191939,-0.0026926291,0.01654743,-0.010666483,-0.015372464,-0.016449517,0.025188321,0.012936859,0.030475667,-0.010642004,-0.028541869,-0.019949934,0.016204732,0.0051771915,-0.04552991,0.03608123,0.012826706,-0.008677609,0.01860362,0.031748544,-0.0044244793,-0.013756887,0.021944927,-0.016620865,-0.012214744,0.029031437,-0.028297083,0.005972741,-0.013989432,0.02614298,0.0040879007,-0.0025579976,-0.011957721,0.014368848,0.0040756613,0.010005565,-0.0059482623,0.006523506,0.008530739,-0.010501253,0.013426428,0.0035891521,0.036301535,-0.0059482623,-0.014295413,-0.008126845,-0.02979027,0.01657191,-0.0369135,0.0077168304,-0.054146323,0.015017527,0.0052108495,-0.0008269125,0.01573964,-0.025261756,0.016473994,0.0011413075,-0.0075577204,-0.015201115,0.018481227,0.024172466,-0.06946983,0.0015543813,-0.063839786,-0.035395835,0.017551046,0.016510712,-0.029423093,0.018811686,0.014075107,-0.008475662,0.00010422464,-0.024784427,-0.021345206,-0.03767233,-0.020206958,-0.0054097367,-0.026901813,-0.026191939,0.0032892912,-0.016988043,0.012777749,0.035469268,-0.00080243405,-0.021406401,-0.04472212,0.0068356064,-0.0116945775,0.0028792773,-0.00038668295,0.002756885,0.0012162728,-0.0032739923,0.046851747,-0.079016425,0.04540752,0.033315167,0.007215022,0.012985816,-0.045774695,0.0007450627,0.03904312,0.0447466,-0.051013082,0.03277664,0.026118502,-0.00093018095,-0.008396107,0.03245842,-0.0049844235,0.031626154,0.015482618,0.013536581,-0.012012797,0.00678053,0.011939363,0.006272602,0.046582483,-0.0012522255,0.00014161164,-0.0023116833,-0.021381924,0.037452023,-0.024686513,0.039287906,0.004586649,-0.00053776085,0.0052414476,0.00393491,-0.025065929,-0.012545204,0.025114886,0.005314883,-0.037256196,0.018823925,-0.010372742,-0.007545481,-0.006590822,-0.011388597,0.0012820587,-0.041858144,0.013585538,-0.009791379,-0.0055351886,-0.032262594,-0.028713217,0.008640892,-0.0081758015,0.0049568852,-0.0095282355,-0.026265373,0.01734298,0.021198334,-0.012630878,0.030132968,0.031797502,0.035346877,0.00054961763,0.018163007,-0.027660644,0.002694159,-0.0024922118,0.013316275,0.033510994,0.006079834,0.046313222,0.0076495144,0.010305426,0.00072899874,0.05958054,-0.018211965,0.009105982,0.01952156,0.03510209,0.025873719,0.016926846,0.0032556334,0.009148819,0.005321002,0.0114008365,-0.0065663434,-0.024392772,0.012465649,-0.009815857,-0.0014863007,-0.025310714,0.001982754,0.0028624483,0.01338971,0.013818083,0.00006320411,-0.027464816,-0.05091517,-0.012704314,0.048100147,-0.006853965,0.015078723,-0.06398666,-0.016363842,-0.0057126572,-0.012435051,0.0013914467,0.022813912,0.03500418,0.018334357,0.05243283,0.0031883176,0.0009011128,-0.014736025,-0.02741586,-0.021895971,0.005642282,0.018934079,-0.010366622,-0.008249236,0.0015681505,-0.022777194,-0.013854801,-0.03958165,0.04863867,0.007692352,-0.017379697,-0.0011397777,-0.018481227,-0.0075210026,-0.0074598067,-0.028248128,0.02096579,0.014246456,-0.009234494,-0.014993048,0.022471214,-0.019178864,-0.0009072324,-0.008775523,0.0014901254,-0.03889625,0.0009990266,0.03777024,0.0043051466,-0.013964954,-0.022275386,0.013059251,0.0000196975,0.018652577,-0.055174418,-0.023425873,-0.006098193,0.0064561903,0.021847013,-0.014258695,0.047537144,0.013487624,0.0099566085,-0.0030490966,0.03706037,-0.01308373,0.028150214,-0.0062970803,-0.0121229505,-0.020904593,-0.0075577204,-0.03938582,0.0032648128,-0.016449517,0.035322398,-0.0004065717,-0.015299029,-0.02883561,0.03958165,0.036056753,-0.017122673,0.029888183,-0.034220867,0.006315439,-0.025004733,0.01480946,-0.0021066763,0.018248681,0.00017115788,0.037574414,0.010599167,-0.012233104,-0.016278166,-0.032678727,0.020353828,0.017673438,0.023915442,0.0014717666,-0.02712212,0.0044489577,0.0049905432,-0.011272324,-0.013047012,0.032850076,0.013622255,0.013756887,-0.013964954,0.03182198,0.0378192,-0.011247846,0.0036442287,0.0037788602,0.0064806687,0.011137693,0.021308487,-0.038063984,-0.009895412,-0.031112105,-0.00014572326,0.0024723231,-0.015360225,0.005859528,-0.013377471,0.0023116833,-0.029545484,-0.029912662,0.048295975,-0.018689293,-0.01952156,-0.051943265,-0.01860362,-0.032825597,-0.0023529907,-0.01859138,-0.0048191943,-0.02096579,0.024649795,-0.013781365,-0.016131297,0.0048589716,0.0207822,0.007453687,0.050180815,-0.01055021,0.011015301,0.014405565,-0.024992494,0.016755497,0.017771352,-0.024343815,0.013279557,-0.0055413083,0.015874272,-0.029202787,0.023915442,-0.00022087974,0.0049844235,0.00818804,0.006823367,-0.024710992,0.0080411695,0.012165788,0.0066397786,0.007055912,-0.01070932,-0.008328792,-0.006505147,0.0007947846,-0.016131297,-0.00678053,0.0040695416,-0.00898359,0.025800282,0.038553555,0.061196115,0.0075393617,0.020990267,0.010599167,0.0017058417,-0.01718387,0.0280523,0.023842007,0.050180815,-0.0040664817,0.022422258,-0.041858144,-0.050768297,0.000051586412,-0.038112942,0.007894299,0.01876273,-0.017587764,-0.0107032005,0.03135689,0.014846178,0.006792769,-0.016192492,0.025163842,-0.0034575805,-0.0091427,0.00819416,0.0034942983,-0.01668206,-0.0071477066,0.01857914,-0.0032372745,0.010568569,-0.004666204,0.028958002,-0.009852575,-0.03527344,-0.008842839,0.0007221142,-0.017991658,-0.0529224,0.02567789,0.02489458,0.020892354,0.00929569,-0.0077535477,-0.016963564,0.043816417,-0.0021877612,0.039361343,0.025898196,0.013830322,-0.003261753,-0.0058534085,-0.012875663,0.010060642,0.005403617,0.007784146,-0.005871767,0.0233402,-0.010311546,0.007104869,-0.011357999,0.018517945,0.04538304,-0.0070375535,0.03309486,0.01826092,0.00050984015,-0.058552444,-0.007062032,-0.013622255,0.016400559,-0.004635606,-0.021859253,0.0064072334,-0.002775244,-0.0068784435,-0.014197499,0.07627484,-0.006743812,0.02744034,0.019399168,0.0076005575,0.0057616145,-0.034147434,0.034612525,-0.024723232,-0.0059207245,0.009271212,0.03307038,-0.003956329,0.015029767,0.033021424,-0.005893186,0.017526567,-0.013940475,0.018468987,-0.051257867,0.023536026,-0.00897747,-0.008628652,-0.02046398,-0.023083175,-0.007771907,0.020415025,-0.011045899,0.034098476,0.03258081,0.021002507,-0.0020347708,-0.004788596,-0.0022351881,-0.02172462,0.01039722,-0.0072395005,-0.046215307,-0.0029450632,-0.009008069,0.000287813,-0.01920334,-0.016718779,-0.014589154,-0.031307932,0.016473994,0.008004452,-0.046190828,-0.021920448,-0.018089572,0.02172462,-0.03510209,0.020696526,-0.039973304,-0.005709598,-0.017379697,0.00488345,0.013744648,-0.019913217,-0.012949098,-0.013291797,-0.008181921,0.0015666205,-0.0010479835,0.007924897,0.019056471,0.0117618935,-0.006823367,-0.003922671,0.019876499,0.006860085,-0.0039073722,-0.011639501,0.0040879007,-0.03576301,-0.011125454,-0.012728793,-0.03138137,0.0010043812,0.04428151,-0.0017532688,-0.0012965928,-0.0081758015,0.022324344,-0.045701258,0.053314056,0.0055229496,-0.0009554244,-0.0030307376,-0.050327685,0.022667041,0.00504256,-0.008787762,0.018468987,0.00944256,0.0022780255,0.0025625874,-0.0098892925,-0.014980809,0.0030016694,-0.008292073,0.02064757,-0.007074271,-0.012741031,0.00252281,-0.027856473,0.010103479,-0.017526567,-0.017269544,-0.013352993,-0.0369135,-0.037427545,0.00740473,0.00064408913,-0.015347986,-0.020304872,0.0041490966,-0.040781092,-0.01782031,0.01938693,-0.0023438113,0.013108208,0.018799447,-0.017257305,-0.02883561,-0.0072700987,0.014833938,0.031552717,0.0072272616,-0.018677054,-0.018371074,-0.024466207,0.055908773,-0.030916277,0.011217248,0.017600004,-0.035958838,-0.014564675,0.023095414,0.004351044,-0.0021219754,-0.0055198898,-0.0034239227,0.010042283,-0.012643117,0.030598057,0.0072089024,-0.03057358,0.016008904,-0.04097692,0.016143536,-0.010079,-0.033633385,-0.031797502,0.018860644,-0.02773408,0.021467598,-0.043840896,0.040707655,0.037329633,0.014283174,-0.018664816,-0.043914333,-0.0095282355,-0.0071599456,0.0147849815,-0.045456477,-0.007826983,0.00090034783,-0.0113335205,-0.004320446,0.0032984708,0.005168012,0.018089572,0.012367735,-0.01762448,-0.0072700987,-0.009271212,-0.019374691,-0.0048253136,-0.019619474,-0.01196996,0.0043449244,0.049544375,0.0020240615,0.03688902,3.525948e-7,-0.011321281,0.020109044,-0.01687789,0.05419528,-0.0065173865,0.0013524342,-0.01086231,-0.008555217,-0.0434982,-0.015641727,0.029055916,-0.013903758,0.023511548,-0.026289852,0.031161062,0.012233104,0.031063149,0.03402504,-0.025947154,-0.015372464,0.0039777476,0.0032739923,-0.0066153,-0.014295413,0.021541033,0.035567183,-0.032091245,0.0044948547,0.011376358,0.013010294,0.026338808,-0.013352993,0.011321281,0.009418082,-0.0033504874,0.007955495,-0.035444792,-0.017085956,0.036644235,0.0032495137,-0.029104874,0.03387817,-0.038529076,0.008708207,0.01418526,-0.0009554244,-0.030353274,-0.005229208,-0.0088979155,-0.0028899866,0.020109044,-0.011449793,-0.017551046,-0.004158276,0.01340195,-0.04149097,-0.021993885,0.0008223228,0.03307038,-0.0076311557,0.00054885267,-0.018003898,-0.0078147445,0.00088428386,0.046949662,0.02428262,-0.025775805,-0.03135689,0.020623092,0.009240613,0.0015895691,0.017147152,0.018738251,0.024099031,0.009001949,0.014209738,-0.02961892,0.013928236,0.023597222,-0.0102748275,-0.007704591,-0.010299306,0.020121284,0.0011696108,-0.00488039,-0.018322118,-0.017685678,0.024123508,0.010366622,0.013536581,0.0014679418,0.0337313,0.017379697,-0.008316552,0.02267928,0.027268989,-0.015837556,0.011872047,-0.009081503,-0.011572186,-0.0033810853,-0.02330348,0.0053668995,-0.0014411685,0.029496528,0.0002545376,-0.045578867,0.026118502,-0.0029649518,-0.01908095,0.011205009,0.009277332,-0.011290683,-0.029227266,0.0041031996,0.014833938,0.0030674553,0.002476913,0.0075516007,0.007888179,-0.0052995835,0.018934079,0.0050058425,0.008328792,0.029667877,0.03150376,0.012643117,0.008561336,0.007312936,0.0264612,-0.0073496536,0.02773408,0.0047335196,0.008114605,0.0035401953,0.00010460711,-0.013279557,0.03512657,-0.0040297643,-0.0018496526,0.0007064327,0.0447466,0.0063582766,-0.01402615,-0.018481227,-0.010568569,0.0022810851,0.034612525,-0.014797221,-0.034441173,0.0069579985,0.021602228,-0.032213636,-0.04254354,-0.018811686,0.0016247568,-0.030695971,0.011009181,0.010433937,-0.0406587,-0.0052842847,0.017844787,-0.040756613,-0.02883561,0.01465035,-0.03385369,0.002002643,0.045750216,0.017220587,0.011590544,0.039116558,0.040634222,-0.021222813,0.0066397786,-0.020684287,-0.019472605,0.023842007,-0.011315162,0.049593333,-0.00039662732,-0.021075942,0.017073717,0.049984988,-0.00023311896,0.025751326,-0.004675383,0.0026299031,0.0394103,-0.007184424,-0.020990267,-0.00077489583,0.012435051,-0.0062052864,0.02047622,0.023279002,-0.022299865,0.031258978,-0.006713214,0.014699307,-0.022471214,-0.006633659,0.009858694]},{"id":"interface-GatewayCustomStatus","type":"interface","source":"main","text":"Interface: GatewayCustomStatus\nDescription: Custom status object (Fluxer uses this root object rather than Discord-style activities array).\nProperties: emoji_id: string | null, emoji_name: string | null, text: string | null","meta":{"url":"/docs/typedefs/GatewayCustomStatus"},"embedding":[0.00986231,-0.025315281,-0.045765962,0.03427002,0.03250327,-0.02031757,0.033689167,-0.014751112,0.07376766,0.017703755,-0.021999609,-0.010775936,0.0060625984,-0.02616235,0.032890502,0.030204082,-0.044241235,0.03458464,-0.031680405,0.0706214,0.00705488,-0.023790555,0.01959151,0.045814365,-0.021067832,0.05426086,-0.029526427,0.032527473,-0.0025533098,0.0018454017,0.025508897,-0.028267924,0.04199045,-0.0062864665,0.012935963,0.028751964,-0.024516614,0.035092883,-0.004903928,0.008954736,-0.01972462,-0.017461736,-0.0051550237,0.020051347,-0.05585819,0.015973313,-0.008428343,0.049347855,0.009208857,0.030857537,0.0026062517,0.044265438,0.0055664573,0.004344257,-0.020680599,-0.023379121,-0.039884876,0.0051066196,-0.06945971,0.004804095,-0.008041111,0.006474032,0.010515764,-0.02737245,0.002279525,0.004044757,-0.06747515,0.016953493,0.018151492,0.03102695,0.064183675,0.017570645,-0.0013462356,-0.03748888,-0.0124156205,-0.038166538,0.013069074,0.023766354,0.029962063,-0.06587782,-0.011368885,0.032091837,-0.034003794,-0.04794414,-0.00030422656,0.007103284,-0.03102695,-0.06031136,-0.041675825,-0.0149084255,-0.011368885,0.009269361,-0.093855314,0.0010316098,0.017207615,-0.023040293,0.014339679,0.033761773,-0.00407501,0.03845696,0.02957483,-0.012058641,-0.040296312,-0.038965203,-0.00492813,-0.014218668,-0.024419807,0.0010164835,-0.03748888,-0.014037154,-0.059294872,0.015670788,-0.00766598,0.018792845,-0.014049254,-0.03477826,0.031801414,-0.023875263,0.074396916,-0.019797226,0.0035607177,-0.024044676,0.037513085,-0.0016139701,-0.016287938,-0.0031069303,0.0010195088,0.0057358714,-0.08078624,-0.048234563,0.0046316558,-0.042401884,0.045814365,0.0037603842,-0.017110806,0.018224098,0.0014944728,-0.031172162,-0.019555207,-0.0031129809,0.0077083334,-0.03940084,0.043490976,-0.029986264,0.025605705,0.031704605,-0.023911566,0.008954736,-0.021588175,0.060795397,-0.009293564,0.013190084,-0.046395212,-0.017824765,0.032285452,0.0040084543,0.034221612,-0.03274529,-0.0051398976,-0.016372645,0.013432104,-0.04353938,0.004353333,-0.023500131,0.010624673,-0.0022311208,0.037876114,-0.006280416,-0.02749346,0.013105377,0.060408164,-0.024770737,-0.08088305,-0.00888213,-0.032212846,0.018817047,0.02347593,0.012839155,-0.051066197,0.02057169,0.033398744,0.00015390952,-0.018199896,-0.05706829,-0.026428573,-0.018417714,-0.026210753,0.03136578,0.029332811,-0.024746533,-0.024565019,0.02397207,0.030107275,-0.0104068555,0.063118786,-0.028171115,0.028437337,-0.011647208,-0.0025941506,-0.020027146,-0.01374673,-0.011707712,0.042135663,0.017921573,-0.011986035,-0.002371795,-0.009717098,-0.006353022,-0.01593701,0.0031099557,0.047411695,-0.023548536,-0.039715465,-0.011132915,-0.028074307,0.010987703,-0.02775968,0.05484171,-0.044071823,0.024020474,-0.034245815,0.08102826,0.034027997,-0.041893642,-0.013444205,0.038941,-0.016953493,-0.001312958,-0.037416276,0.017171312,-0.034487836,0.0051066196,-0.01667517,-0.08039901,-0.017425433,-0.028969781,0.024928048,0.011877126,0.049396258,0.012234106,-0.029720042,-0.035818946,0.032672685,-0.0073997583,0.00040235807,-0.0051398976,-0.016529959,-0.004513671,-0.010896945,0.009009191,0.034245815,0.023040293,0.012306712,-0.024359303,0.002025404,-0.039521847,-0.023536434,0.0031492838,0.030252486,-0.016336342,-0.012512429,-0.026186552,-0.020547489,0.054212455,0.0055059525,-0.029913658,0.026355967,0.017231816,-0.0004897121,0.0060898256,-0.007345304,-0.024189888,0.0620539,0.02080161,0.010533916,-0.011744015,-0.013420003,0.014690608,-0.011495945,0.009826007,-0.008597757,0.016287938,0.027227238,0.059052855,-0.02117674,0.05745552,0.06408687,0.00340643,0.036327187,0.061037418,-0.013298993,0.032866303,0.02957483,-0.02043858,0.026985217,0.050582156,0.040659342,0.0034518086,0.027808085,0.006824961,0.018998561,-0.019930338,-0.0151867485,0.00936012,-0.004441065,-0.003978202,0.036690217,0.0134563055,0.010691228,-0.018804945,0.0073695057,-0.027420854,-0.05934328,-0.0006568571,-0.062102303,-0.010110381,0.030252486,0.05648744,0.04767792,-0.010751734,0.049347855,-0.032914706,0.04637101,-0.039352436,-0.014557497,-0.04525772,0.041215986,0.010558118,0.006071674,0.02700942,0.0021131362,-0.013541013,0.018333007,0.030228285,0.02167288,-0.010479461,-0.012706044,0.061231032,-0.022616759,0.010685178,0.02882457,-0.055906594,-0.04646782,-0.01897436,0.05764914,-0.025605705,-0.051259812,0.007472364,0.0096807955,-0.025363684,-0.017945776,0.026307562,-0.023451727,-0.042401884,-0.016396848,-0.08214155,0.00049840973,-0.0044259387,-0.028195318,0.04610479,-0.0028785241,-0.011647208,-0.022411041,0.027178833,-0.023790555,-0.024928048,-0.0128996605,0.006389325,0.023657445,-0.030930143,-0.0020586818,-0.020547489,-0.024952251,-0.04307954,-0.008525151,0.041893642,-0.031099556,0.015586081,-0.036956437,0.001795485,0.05818158,0.02543629,-0.010999804,0.024734432,0.04298273,-0.0051035946,-0.0025170068,0.00048252716,-0.044192832,0.059585296,0.044894688,-0.02215692,-0.008379939,-0.005167125,0.0058266288,-0.007569172,0.02749346,0.0046498072,0.03078493,-0.00009250643,0.025775118,0.021999609,-0.007853545,0.005375867,-0.009354069,-0.026912611,-0.008313383,0.013335296,0.043854006,-0.031244768,0.050098117,0.005875033,0.00936617,0.033156727,0.008283131,-0.04320055,0.036423992,-0.029066589,-0.00065458816,0.013976648,-0.02652538,-0.011544349,-0.029332811,-0.058472004,0.016832484,-0.018333007,-0.015041537,-0.030204082,0.009898613,-0.050533753,-0.02020866,-0.017243918,0.058326792,-0.02507326,0.051550236,-0.021273548,0.010521815,-0.013758831,-0.019022763,-0.016360544,-0.034366824,0.021527668,-0.0036454245,0.030252486,0.033882786,0.040199503,-0.014569597,-0.03102695,0.043829802,-0.052034277,-0.037779305,0.027953297,-0.028993983,0.016663069,-0.015162546,0.033519756,-0.0018620405,0.06021455,-0.021987507,-0.024831241,0.0014195979,0.013226387,-0.02616235,0.020353872,0.013952447,0.014218668,-0.030833334,0.0024247367,-0.005917386,0.03310832,-0.0681528,0.0066615976,0.04588697,0.043563582,0.033156727,-0.007774889,0.0048555243,0.0049553574,0.05580979,0.05377682,-0.031486787,0.044894688,-0.016989795,0.0022613734,0.032067634,0.113458924,0.008452545,-0.049493067,-0.04235348,-0.008603808,0.028606752,0.010195088,0.011157117,-0.012802852,0.037174255,-0.0377067,-0.032575876,-0.009233058,-0.012052591,-0.06476452,0.021079933,-0.02967164,-0.0066252947,-0.001703215,0.029816851,0.017183412,0.026985217,-0.027808085,-0.007950353,-0.01180452,0.0072969,-0.025145866,-0.034560442,-0.014012951,-0.026791602,-0.011048208,-0.026331764,0.002439863,0.00285886,-0.0026818828,-0.0016880888,0.002049606,0.01715921,-0.018333007,-0.022568354,-0.0049069533,0.022907183,-0.08194794,0.02030547,0.028098509,0.02749346,-0.042426087,0.005097544,0.002037505,-0.0040840856,0.017679553,-0.001654811,-0.027227238,0.0146059,-0.019664116,-0.014279174,-0.0000074508566,0.037367873,-0.004852499,-0.016130626,0.019736722,-0.024310898,0.015465071,0.0007767326,-0.01607012,-0.008416242,-0.021273548,0.013214286,0.017050302,0.064522505,0.040320512,-0.015779696,0.010479461,0.03417321,0.046758242,0.015670788,-0.0012055616,0.03247907,0.0044592163,-0.02565411,-0.0030902915,0.0050279633,0.039618656,-0.022398941,-0.014581698,-0.005560407,0.042038854,0.013686225,0.020160256,0.0027408754,0.020620095,-0.03296311,0.0004518965,0.018647632,0.0044561913,-0.030349294,-0.03141418,-0.011380985,0.038505364,-0.029550629,0.013952447,-0.0279775,-0.021273548,-0.0001945613,0.03664181,-0.015985414,-0.0020390176,0.009148352,0.022701466,0.008077414,0.009965169,0.024383504,-0.008464646,-0.007024627,0.032212846,0.0034608843,-0.03848116,-0.034608845,-0.012185701,0.03661761,0.012100995,-0.004099212,0.0063288203,0.000028858036,0.03397959,-0.018054685,0.050582156,-0.027203036,-0.04404762,-0.011992086,-0.020051347,-0.023633242,0.030107275,-0.003724081,-0.036327187,-0.0052609076,0.020123953,-0.019639915,-0.014375982,-0.011011905,0.024661826,-0.0015973313,-0.011707712,0.008137919,0.018817047,0.006395376,-0.017485937,-0.02273777,-0.024770737,-0.010225341,-0.012070742,0.024770737,0.013843537,0.026283361,-0.034608845,0.030446103,0.018381411,0.0034034047,-0.003554667,0.032067634,-0.018478218,-0.017921573,0.01570709,0.012766549,0.03238226,-0.008628009,-0.024976453,-0.008894231,0.0022886007,0.016965594,-0.0131416805,0.0065163854,0.024698129,-0.019845631,0.001262285,-0.026259158,0.016142726,0.01619113,0.05130822,0.011586702,0.005136872,-0.014739011,-0.0072726975,0.015344061,-0.02360904,0.020486984,0.029889457,0.030518709,-0.010902996,-0.021866497,-0.0038965202,-0.005796376,-0.04804095,-0.007617576,-0.03199503,0.012228055,0.02458922,-0.00042391298,0.0022764995,0.018514521,-0.029453821,0.026815804,-0.008839777,0.01874444,-0.014739011,0.029720042,0.03177721,0.022701466,-0.006837062,-0.012851256,0.011786369,0.019688318,0.04758111,-0.0016154827,0.0034820612,0.020862114,-0.02725144,-0.026428573,-0.015767597,0.0038481161,0.010539967,0.011284177,-0.016239535,0.023052394,-0.00090681826,-0.0267674,0.012028389,-0.0068915165,0.015561879,-0.01850242,-0.0069641224,0.0039721513,-0.02092262,0.022919284,0.030083073,0.024855442,0.017110806,-0.030809132,-0.00924516,-0.018296704,-0.012137298,0.033229332,0.022979788,-0.028195318,-0.011834772,-0.0033913038,0.032527473,0.01630004,0.012330913,-0.037561487,0.045402933,0.027929096,0.016989795,-0.025533099,0.0043261056,-0.019809328,0.010673077,-0.043611985,-0.0006587479,-0.017546441,-0.024879646,-0.022774072,0.0057237702,-0.03102695,0.016082222,-0.001189679,0.007581273,-0.0039025708,-0.0038904697,-0.031220566,0.009626341,0.021588175,0.006903617,-0.006655547,0.040223707,0.0011957295,0.020281266,0.020862114,0.021249346,-0.016844584,-0.014291274,-0.0015254816,0.0011064847,-0.00049538445,0.018151492,-0.02385106,-0.0116895605,-0.027106227,0.0046407315,0.01009828,-0.01398875,0.0011722839,-0.047629513,0.00041786247,-0.001977,0.028050106,-0.0033428997,0.038626373,-0.02565411,0.02604134,-0.012706044,0.0038874445,-0.015537677,-0.0029738194,-0.010134583,0.011132915,-0.015864404,0.01765535,-0.047992546,0.0008811037,0.0008100103,0.03927983,-0.078269236,-0.029066589,0.024855442,-0.020232864,-0.025000654,-0.020716902,0.014739011,0.018211996,0.009227009,-0.0043200552,0.017195513,-0.029816851,-0.00753892,-0.003893495,0.011157117,-0.0340764,0.020148156,0.017413331,0.0091302,0.00705488,-0.029623235,-0.017800562,-0.033592362,0.061279435,0.008010859,0.013286892,0.0055906596,0.018550824,0.04840398,-0.002122212,0.032551676,-0.020051347,0.025726715,-0.021442963,0.014775314,0.03710165,0.009789704,-0.010727531,0.00058652007,-0.017582744,-0.00408106,-0.0151867485,-0.0082952315,-0.028897176,-0.006437729,-0.024310898,-0.001618508,0.015828101,-0.013976648,-0.02140666,-0.03468145,-0.017800562,0.021975406,0.015634485,-0.013177983,0.005560407,-0.043224752,0.014775314,-0.03715005,-0.041191787,0.0019270834,0.02565411,0.04625,-0.011048208,0.016578363,-0.05034014,-0.03298731,0.0032430666,0.035020277,0.019494703,0.01667517,0.013480508,0.005865957,0.011834772,-0.018575026,0.037561487,0.0041839187,-0.031946626,0.022895081,0.0025139817,0.0032339909,0.017074503,0.041530613,-0.01387984,0.010031724,0.011217622,-0.010019624,-0.00084480067,0.037537284,0.021987507,0.022205325,-0.03477826,0.014218668,-0.010533916,0.02238684,0.0048222463,0.0074360613,0.010007522,0.015162546,-0.016179029,0.03698064,-0.016094323,0.027445056,-0.0279775,-0.043127943,-0.0005101325,0.017461736,-0.014436486,-0.012730246,0.007224294,-0.002090447,-0.0043775346,0.029042387,0.028025903,-0.012336964,-0.015549778,0.028945578,-0.004238373,0.014448588,-0.003627273,-0.022858778,0.020523287,-0.010624673,-0.032188646,-0.027445056,-0.009220958,0.037029043,-0.003772485,0.00064778136,0.00008026363,-0.042692307,-0.0042837523,-0.0292118,-0.024613423,0.02519427,-0.024141485,-0.0012297636,0.0021116235,-0.04610479,0.01690509,0.0028860872,0.013274791,0.009154403,-0.047726322,0.025412088,-0.0012516966,-0.00766598,-0.015307758,-0.00080547243,-0.056777865,0.024673928,-0.0058084773,-0.031922422,0.00045529992,0.03758569,0.05643904,-0.048137758,-0.00425955,-0.033592362,0.036302984,0.011641157,0.038602173,-0.021188842,-0.03954605,0.0077688387,-0.0067281527,-0.032890502,0.0316078,-0.0049916604,0.013637821,-0.02335492,-0.009190706,0.049565673,-0.008192373,-0.0027212112,0.029066589,0.024782836,-0.013298993,0.023197606,0.020051347,-0.009148352,0.006011169,-0.01021929,0.0041476157,0.080979854,0.013565215,0.052227892,-0.01764325,-0.04208726,0.0016200206,-0.019881934,0.010642825,0.032043435,0.033592362,-0.010993754,-0.014896324,0.017171312,0.019155875,-0.05489011,-0.04005429,0.054309264,0.0007052611,-0.013843537,-0.009112049,-0.025291078,0.037779305,-0.046056386,0.023875263,-0.029405417,0.018090988,-0.015392465,0.024528716,0.0034578592,-0.0017334674,-0.009329867,0.0030660895,-0.044362247,-0.034052197,-0.015864404,0.011737965,0.022096416,0.011417288,-0.0072424454,0.014557497,-0.010007522,0.029139195,-0.038771585,0.0045348476,-0.037634093,-0.014654304,0.0062199114,-0.009565836,0.019652015,-0.009947018,0.03930403,-0.0133837,0.0033247482,-0.010170886,0.02299189,0.038650576,-0.025871927,-0.0003522524,-0.008494898,-0.014049254,-0.011774268,0.014436486,0.009741301,0.0015670788,-0.02664639,0.025145866,-0.0100619765,-0.009475078,-0.0013628745,0.02371795,0.0075631216,0.0024504515,-0.017861068,0.008936584,-0.015404566,-0.00042391298,0.0120344395,0.0073574046,0.018587127,-0.016602565,0.014496991,0.029478023,0.028679358,0.016312141,-0.019506803,0.008984989,-0.013553114,-0.011090562,0.06553899,0.023100799,-0.009753401,-0.010431057,-0.0032823947,0.0018605279,0.010134583,0.0049190545,-0.017957876,-0.000045804154,-0.013649922,0.0048646,0.019264784,0.010055927,-0.01970042,-0.025049059,0.016614666,0.004395686,0.0059688156,-0.0051187207,0.0072424454,-0.026549581,0.024262493,0.011889227,-0.018950157,-0.026452774,0.03586735,0.009868361,-0.0028921377,0.005221579,-0.023100799,-0.0015413641,-0.013347397,0.03514129,0.016771978,-0.0364966,0.03417321,-0.0075268187,-0.0011601829,-0.022653062,-0.0011518634,0.007690182,0.021334054,0.019906135,0.0021101108,-0.04307954,-0.0038662679,-0.005551331,0.012984367,0.01665097,-0.009323816,0.00010701817,-0.009898613,0.00864616,-0.0013122016,0.0072787483,0.020474883,-0.008264979,0.023996273,-0.043515176,-0.0119981365,-0.0005176957,-0.025775118,0.022592558,-0.025581503,0.0042686258,0.0063348706,-0.020971024,0.007266647,0.0036998792,-0.0023733075,0.004244424,0.0103039965,-0.017727956,0.0038299647,-0.01410976,0.043708794,-0.006168482,0.047169678,0.0065889917,-0.0353107,0.015816,0.0243351,0.027445056,0.013601518,0.054212455,0.035480116,0.0032188646,0.007653879,-0.009281463,0.0073090005,-0.012730246,0.029526427,-0.007726485,-0.015961211,0.00016071633,0.009656593,-0.018889653,0.032551676,0.02422619,0.017691653,0.021515569,-0.02140666,-0.031946626,0.012790752,0.024516614,0.011889227,0.002790792,-0.01970042,0.05217949,-0.000915894,0.019385792,-0.020099752,-0.0032642432,0.008047162,-0.0041415654,0.040441524,-0.022060113,-0.0024277621,-0.017207615,-0.022169022,-0.022592558,-0.016989795,-0.012318812,-0.008313383,-0.031123757,-0.0029526427,-0.022362638,0.028316326,-0.0034366825,0.005121746,-0.019059066,0.008579605,-0.032721087,0.006861264,0.039328232,-0.015041537,-0.00420207,-0.03395539,0.041458007,-0.011683511,-0.000060694052,0.0058478056,0.0730416,0.048379775,-0.0012970753,0.010745683,0.06094061,-0.00048706503,-0.019760923,-0.003116006,0.020886317,-0.0291876,0.03831175,-0.025387887,-0.038723182,-0.0078051416,0.051647045,0.009456927,0.007290849,0.013516811,0.0064195776,-0.048646,0.012500327,0.0047768676,-0.0094024725,-0.018526623,-0.0014059843,0.03383438,-0.014739011,0.0059052855,0.009335917,0.0035365156,0.006238063,-0.0019134698,0.010939299,0.0043261056,-0.023572737,-0.010521815,-0.0022417093,-0.005524104,0.035601124,-0.00046437565,-0.004903928,-0.011302329,0.046032183,-0.012718145,-0.030712323,0.014242871,-0.027662873,0.008307333,0.013347397,-0.0065647895,-0.025024857,-0.0073211016,-0.044604264,-0.040223707,-0.012209903,-0.011157117,-0.017679553,0.00206927,-0.025121665,0.00002226394,0.009874412,0.034729853,-0.021225145,0.020632196,0.004707287,-0.020281266,0.04150641,-0.0037513082,-0.026452774,-0.021237245,-0.003454834,-0.0064498303,-0.015319859,-0.058568813,-0.00052639324,-0.0056057856,-0.021745488,0.0013742192,0.006788658,0.0019437223,-0.0011352246,-0.0039479495,0.01362572,-0.03371337,0.05392203,-0.015344061,-0.024262493,0.013831437,-0.011356783,0.011108713,-0.0292118,0.011574601,0.0014112785,0.014436486,0.00053168746,-0.02105573,0.010769885,-0.0007691695,-0.034512036,0.010552067,-0.009711049,0.01046131,0.027904894,-0.023367021,-0.0149084255,-0.0000224412,-0.038747385,0.010316098,-0.0099228155,0.018429814,0.01898646,0.014545395,0.01436388,-0.056003403,-0.022471547,-0.020886317,-0.0039993785,-0.006111002,0.023500131,0.00595974,-0.002226583,-0.0353107,-0.008682463,-0.016735675,-0.007448162,-0.002733312,-0.024480311,-0.033761773,-0.029332811,-0.011883177,-0.0055846088,-0.006655547,0.026210753,0.006994375,0.036302984,-0.0010187525,-0.019688318,0.0082952315,-0.025533099,0.0011768218,-0.023318617,-0.023681646,-0.0071214354,0.03211604,-0.010739633,0.011048208,0.017086605,0.021297751,-0.034875065,0.03848116,0.011580652,-0.0077567375,0.032672685,0.008095565,0.0047980445,-0.005633013,-0.010673077,0.0004295853,-0.025484694,0.023294415,0.0050430894,0.011042157,0.016941393,0.014061356,-0.034003794,-0.006310669,0.015465071,-0.024395606,0.0060202447,0.027275642,-0.0036545002,-0.041409604,-0.00092345715,-0.019276883,-0.0073150513,-0.010370553,0.0017969977,-0.04583857,-0.004695186,-0.044120226,0.015162546,0.028800366,-0.0023990222,-0.028388932,0.046395212,-0.009959118,-0.013541013,0.042256672,-0.0071577383,-0.035383306,-0.012790752,-0.0070911827,0.00231129,0.0009809369,-0.030591315,0.0009839621,-0.013637821,0.02322181,0.010074078,0.014521194,-0.009947018,0.013928245,-0.0042777015,-0.025533099,0.032212846,0.0019981768,0.0010815264,-0.019518904,0.012863358,-0.012887559,-0.0128996605,0.018708138,-0.01436388,0.033640765,0.0006723615,-0.0025412089,0.046782445,0.0206685,0.0039328234,0.038021326,-0.011114763,-0.011762166,-0.036811225,0.022483649,-0.016941393,0.0015958187,0.00072341255,0.0006050497,-0.027106227,0.0243351,0.036811225,-0.003615172,-0.030446103,0.011544349,-0.019071167,-0.006074699,-0.04186944,0.01412186,-0.008694565,-0.045064103,-0.010969551,-0.0133837,-0.043563582,-0.03942504,0.027033621,-0.0048706504,0.008458595,0.005545281,-0.0182604,0.012742347,-0.0016850635,-0.03274529,-0.008428343,0.030107275,-0.00062547013,-0.0058054524,0.011846874,-0.019385792,0.028776165,-0.008246828,0.022834577,-0.004441065,0.008004808,0.019785127,-0.01496893,-0.01729232,0.016832484,-0.056874674,-0.0219028,0.012028389,-0.0037301315,-0.042885926,0.020160256,-0.0011306867,-0.008113717,-0.02592033,-0.028267924,0.001824225,-0.021515569,0.0033852533,0.0061291535,0.013783033,-0.05498692,0.024274595,-0.03138998,0.0076357275,0.027469257,0.016445251,-0.019845631,0.0136983255,-0.012451923,0.00730295,0.010582319,0.0048010694,-0.032624282,-0.016263736,-0.022241628,0.0004813927,0.013069074,-0.009838109,0.016251635,0.046419416,-0.041458007,0.036302984,0.00827708,-0.027106227,-0.008549352,-0.008664312,0.0048857764,0.004964433,0.012839155,-0.034705654,-0.002994996,-0.023705848,-0.035697933,0.010370553,-0.031317376,0.0053486396,0.01715921,-0.011768217,0.010679128,-0.004528797,-0.028606752,0.02468603]},{"id":"interface-GatewayDispatchEventName","type":"interface","source":"main","text":"Interface: GatewayDispatchEventName","meta":{"url":"/docs/typedefs/GatewayDispatchEventName"},"embedding":[-0.010582643,-0.021401476,-0.014866875,0.0062524853,-0.0013105288,0.023199148,-0.056160834,0.006623173,0.037921686,-0.04705438,-0.007039787,0.00481238,-0.025902215,0.025613539,0.023737138,-0.035769727,-0.017897986,0.05427131,-0.016940102,0.051673215,-0.01474878,0.021257138,0.02584973,0.02003682,-0.026125286,-0.0019305287,-0.012249097,-0.0015696822,0.0293401,0.000043081174,0.0638239,-0.023658408,0.032489303,-0.012767404,0.036215864,0.036793217,-0.026348354,-0.03322412,-0.04915385,-0.0011432272,-0.0364783,-0.036688246,-0.014499468,0.0136990445,-0.01708444,0.00010317954,0.0005917062,0.0005917062,0.0175437,0.013049521,-0.013751531,-0.03440507,0.02065354,0.020627297,0.045322318,-0.016703911,0.014368251,0.0074137547,-0.000442447,-0.006344337,-0.054166336,-0.0022880947,0.018842747,-0.0020322218,0.010851637,0.008647194,-0.028054174,0.023251634,0.040441047,0.0049895225,-0.03128211,0.021926343,-0.019354492,0.0020174598,-0.0008041136,0.009696929,-0.03897142,-0.0037003167,0.00003992889,-0.012537775,0.019262642,0.023592798,-0.07337649,-0.08912252,0.029392585,-0.046162106,-0.062616706,-0.012150685,-0.017320631,-0.009034283,-0.014814388,0.03773798,-0.011593013,0.03616338,-0.02460317,-0.0078074057,0.038367823,-0.008903067,-0.021480206,0.0024357138,0.047028136,-0.083873846,0.013935234,-0.03330285,0.019984335,-0.038262848,0.0059244432,0.013830261,-0.030521052,0.0015901849,-0.088230245,-0.019682536,0.022648036,0.010891003,-0.001677116,-0.00078156067,0.06319406,-0.039784964,0.021007827,0.023540312,-0.030389834,0.028762745,-0.0457947,-0.008673437,-0.037606765,-0.020994704,0.00009610613,-0.006856083,-0.043275334,-0.034877453,0.0681803,-0.059677448,0.030337347,0.010963172,0.0085553415,-0.025193645,-0.03191195,0.02981248,-0.019905604,-0.001948571,-0.022490576,-0.028946448,0.06387639,0.0012203172,-0.020482957,0.015024335,-0.00008001155,0.021453964,0.009887193,0.04844528,-0.052303057,0.058207817,-0.008607829,0.010300526,0.018567191,0.015575446,-0.0055865594,-0.01009714,0.015404864,-0.040546022,0.012944547,-0.069230035,-0.03322412,0.054901153,-0.060622208,-0.031150892,-0.00033234782,-0.004526983,-0.07925501,-0.0013876187,0.009670686,-0.016008463,-0.017320631,0.039102636,0.0039102635,0.025377348,-0.020522323,0.010523596,-0.04191068,0.020771636,0.03608465,0.049731206,0.014013965,-0.050203588,0.019839995,0.007275977,0.012708357,0.043354064,0.010753225,-0.03981121,-0.003073756,0.045374803,0.00978222,0.028762745,0.03112465,-0.011783278,0.014945605,-0.044193853,0.019656291,-0.016310262,-0.008161691,-0.07195935,0.043773957,-0.0025226448,0.0011071425,0.022057561,-0.0022782534,-0.021427719,0.020929096,0.019092059,0.037475545,-0.0066198925,0.024957454,-0.032699253,-0.05752549,0.043747716,-0.019157667,0.03988994,0.0039037028,-0.011291214,0.024170153,0.015824758,-0.009454178,-0.028920205,0.042986657,0.0050452896,-0.0019895763,0.0065181996,-0.03849904,-0.014223912,-0.041254595,0.015339255,0.005005925,-0.072064325,0.008181374,0.019787509,0.003042592,-0.06807533,0.018724652,0.02949756,-0.035927188,-0.0030770362,0.01629714,-0.01995809,-0.021060312,0.008955553,0.018724652,-0.0048583057,-0.008128887,0.008345395,0.0031770892,0.049678717,0.01211788,-0.026204014,0.012131003,0.0194201,0.036058404,-0.017596187,0.01529989,0.035113644,0.05085967,-0.05295914,0.0014302642,0.044692475,-0.02041735,-0.055478506,0.031859465,0.002306137,-0.03905015,0.030494807,-0.005993332,-0.003191851,0.02119153,0.005022327,-0.025167402,-0.047736708,0.027975444,0.0127346,-0.012052272,-0.007676189,-0.05395639,-0.014853753,0.022884227,0.0043596816,-0.031150892,0.06188189,0.0011989945,0.0060097342,-0.0033247082,-0.003198412,-0.05910009,0.015562325,-0.0027982004,-0.03277798,0.061829403,0.030074913,0.028316608,-0.0055143903,0.038604014,-0.0073153423,0.043354064,-0.003975872,-0.0175437,0.004651639,-0.012026029,-0.013049521,0.039575018,0.002568571,0.008673437,-0.038315333,-0.037869196,-0.028684014,-0.048497766,-0.019236397,-0.009664125,-0.020010578,0.07552845,0.05784041,0.028132904,0.009959362,0.008004231,0.024104545,0.027266871,-0.03325036,0.040965915,-0.014223912,-0.0041366126,-0.042278085,0.0067183054,0.060517233,0.0054684645,-0.029759994,-0.00013070433,0.00050477503,0.033801474,0.024104545,-0.034457557,-0.020771636,0.0075712153,0.032463063,0.034431316,-0.015641054,-0.034588777,-0.04038856,0.042960413,-0.038105387,-0.0028244439,-0.012760843,0.011343701,0.023619043,-0.017963594,-0.0056718504,-0.0064493106,-0.0038938615,-0.013141372,-0.0329092,0.017989837,-0.013935234,-0.040939674,0.04860274,-0.0018173541,0.018016081,0.024721265,-0.01234751,-0.037633006,-0.00009518351,-0.026348354,0.0044613746,0.00012752642,-0.043773957,0.046582,0.039023906,-0.02802793,-0.014223912,0.003641269,-0.0058129085,-0.009277035,-0.03285671,0.045164857,-0.009454178,0.015614811,0.013790896,-0.0048648664,-0.0021946027,0.0016467721,0.0041038087,-0.023566555,0.023632163,-0.025114914,-0.015890367,0.048156604,-0.041884433,-0.01087132,-0.023225391,-0.030022427,-0.027319359,0.05007237,0.0039496287,0.044062637,-0.00659693,0.040441047,0.010156188,-0.001428624,-0.006475554,-0.03059978,-0.013128251,0.007912379,0.041044645,0.064716175,-0.01770116,0.017989837,-0.001203095,0.03907639,0.021637667,-0.011730791,-0.02630899,-0.0003579761,-0.03159703,-0.019577561,0.025718512,0.0062852893,0.030074913,-0.03897142,0.06623829,0.014066452,0.00074875646,0.002289735,0.0021552376,0.032882955,-0.052303057,-0.02336973,0.018645922,0.020889731,0.012983913,0.05652824,-0.0033165072,0.03634708,-0.029051421,0.01568042,0.011055023,-0.050361045,0.013633436,0.029786237,0.027817983,-0.023553433,0.0049042315,0.03663576,0.02630899,0.037449304,-0.025508566,-0.03626835,0.00015007933,-0.06366644,0.040021155,-0.022857985,0.0066330144,0.020469837,0.060464747,0.021926343,-0.019787509,-0.004169417,0.010300526,-0.026033433,0.059257552,-0.04978369,0.018829625,0.013725288,-0.011520844,0.022871105,0.01995809,-0.056423265,0.007951744,0.00047484116,0.011442114,-0.00528148,0.012380315,-0.0053438083,0.0056849723,0.00013265209,-0.022464333,-0.024485074,0.02763428,0.009808463,-0.009565712,0.04277671,0.09353141,0.011586452,-0.01808169,-0.06755046,-0.007794284,-0.017569942,-0.01490624,0.012780526,-0.01568042,-0.01599534,0.0024980418,-0.011166559,-0.022044439,0.007203808,-0.03385396,-0.03283047,-0.04015237,0.0141451815,-0.0010103701,0.05379893,0.022162534,0.0022257667,-0.0034116395,-0.03975872,-0.06707808,-0.011934177,-0.026755126,-0.035848457,-0.010418622,-0.05558348,0.0056948136,-0.01009714,0.031544544,0.01296423,0.019367615,0.00025730813,0.016179044,0.006062221,-0.018002959,0.003687195,0.027214386,0.0057571414,-0.043511525,-0.008214178,-0.01817354,0.028788988,-0.034116395,-0.019459466,0.02818539,0.005192909,0.007249734,0.0028785707,-0.027529305,0.012983913,0.024983699,-0.019302007,-0.006304972,0.011868569,0.012288462,0.028080417,0.00027842587,0.0047631734,-0.00045638878,0.014092695,0.017596187,-0.069387496,-0.0031246024,0.008778411,0.01211788,0.020784756,0.015942853,-0.013075764,-0.011245288,-0.007459681,0.010982854,-0.024983699,-0.008634072,0.012990473,-0.038367823,-0.0019600524,0.036793217,-0.027240628,0.0067019034,-0.008220739,-0.02842158,-0.023776503,0.048550252,-0.0037626447,0.040283587,-0.019013328,-0.029156396,0.027109412,0.013659679,0.039706234,-0.0044220095,-0.011855447,-0.03167576,-0.009296717,0.038026657,-0.041044645,-0.02245121,0.018435974,-0.014118939,-0.015575446,-0.011855447,-0.025062429,-0.022674281,-0.0009947881,0.043039143,0.024327613,-0.031623274,0.0010103701,-0.008522538,-0.023999572,0.017609308,-0.010320209,0.016651426,-0.035612267,-0.042278085,0.057263054,0.025219887,0.030652268,0.03277798,0.026702639,-0.002532486,0.017031955,0.029838724,0.0016467721,-0.019656291,-0.01490624,-0.018960843,-0.019078936,-0.011219045,0.006117988,-0.025889095,-0.012334389,-0.0076433844,-0.009021162,0.02065354,-0.020404229,0.051174592,-0.025049306,-0.016887615,-0.0015278568,-0.013607193,0.035113644,-0.012826452,-0.029681263,-0.034037665,-0.03298793,0.006810157,0.03353904,-0.007544972,0.011763595,-0.042514276,-0.033460308,-0.010766347,0.019669414,0.044508774,0.07311406,-0.017307509,0.023632163,0.022674281,-0.006101586,0.03991618,-0.035953432,-0.010254601,0.05101713,0.019984335,0.07222178,0.019656291,-0.0073809507,0.033329092,-0.046083376,0.0062459246,0.021873858,0.0063607395,-0.025534809,0.0118816905,0.006823279,0.010995977,0.005009205,0.027004438,-0.04114962,0.018462218,0.019813752,0.052591734,0.07442623,0.006186877,-0.0032033327,-0.0074662417,-0.011461796,-0.015168673,-0.011586452,-0.00016853171,0.012439362,0.040414806,-0.022188777,0.032436818,0.044771206,-0.014289521,0.034746233,-0.04610962,0.008955553,0.0033443908,0.020692905,0.009224548,0.015654176,-0.0042055016,0.0043596816,-0.0041333325,0.028447824,0.018042324,-0.010110262,-0.04248803,-0.007564654,0.009841268,-0.00032599198,-0.01498497,0.0023274599,-0.0079058185,0.049101364,-0.01421079,0.059887394,-0.017018832,-0.0034247611,-0.02103407,-0.030835971,-0.007197247,0.029156396,0.028867718,-0.011081267,0.024878724,0.031623274,-0.018042324,0.024590047,0.034195125,-0.009106453,-0.014971849,-0.0030163485,0.02003682,0.01583788,-0.003300105,-0.014709415,0.015391743,0.0030606342,0.036373325,0.0030065072,0.016441477,-0.01498497,0.018855868,0.008411003,-0.013580949,0.0006491136,0.0052683586,0.03960126,-0.0050157662,0.011652061,-0.030337347,0.009113014,0.0038610573,0.005629205,0.022726767,-0.03797417,-0.02352719,0.0012309785,0.009283596,-0.036530785,0.01894772,-0.010845077,0.015929732,0.03907639,-0.006219681,0.021467084,0.02406518,0.0128855,0.013331637,0.016231531,0.029996183,-0.040414806,0.015785392,0.0013876187,-0.021519572,-0.00074957655,0.04214687,0.008778411,-0.03259428,-0.035900943,0.010772907,0.027608035,-0.01653333,-0.030153643,-0.017386239,-0.005675131,0.011612696,-0.010379257,-0.02624338,-0.028867718,-0.0372656,0.020561688,-0.014696293,-0.021217773,0.033119146,-0.027870469,-0.023592798,0.0031311633,0.017596187,-0.00018718911,-0.03626835,0.0020551847,-0.022083804,0.03020613,-0.0761058,-0.015457351,0.013987722,0.007564654,0.01654645,-0.022031318,0.011015659,0.02818539,0.014814388,-0.035376076,0.009126135,0.0066953423,-0.010569521,0.0016992588,0.03112465,-0.037947927,0.034588777,0.02182137,-0.010234918,0.019551318,0.0010833596,0.012833013,0.007289099,0.024170153,-0.002630899,0.005816189,-0.023579678,-0.016310262,0.0451911,-0.016493965,0.028920205,-0.035874702,-0.016428355,-0.0175437,0.020535445,0.017202536,-0.009126135,0.012944547,0.024353856,-0.04868147,-0.001234259,0.017648673,-0.015785392,-0.010051214,-0.048733957,0.026046555,-0.011966981,-0.0046221153,0.013935234,0.014355129,-0.032331843,-0.01599534,0.004005396,-0.00009620864,0.018501583,0.009349205,0.0051863478,0.02941883,-0.005619364,-0.024642535,0.009762538,0.007118517,-0.011009098,-0.013502219,0.015417986,-0.03773798,0.0044384114,0.014525711,0.046398297,0.011507723,0.025718512,0.069597445,0.018331,0.010057775,0.008581585,0.04256676,-0.005091216,0.0022159254,0.012813331,0.0551111,0.002803121,0.03991618,0.0012990473,0.034641262,0.019551318,-0.013023278,0.012728039,0.0031262427,0.01771428,-0.003323068,0.0006507538,-0.045086127,0.025613539,0.017228778,0.0039922744,0.030888459,-0.026899464,0.0065477234,-0.028290363,-0.0150374565,0.038446553,-0.012787087,-0.013180737,-0.011461796,-0.022306873,0.015050579,-0.011770156,0.014368251,0.013239785,0.03750179,0.01529989,0.0424093,-0.010654813,-0.007361268,0.0016180684,-0.0055996813,0.036950678,-0.00027740072,0.01869841,-0.013554706,-0.012399997,-0.02245121,-0.020259889,0.018331,-0.0152080385,0.021886978,0.0098609505,-0.03301417,-0.002229047,0.026820734,-0.017884864,-0.019446345,-0.03973248,-0.010339892,-0.004799258,-0.021217773,-0.018567191,0.016270896,-0.027660523,-0.013010155,0.010457987,-0.014368251,-0.017596187,-0.00458275,0.026833856,-0.0019633328,0.0086931195,-0.016717033,0.020141793,0.0059244432,0.0008980157,-0.061934378,-0.041622,-0.032279357,-0.014958726,0.024734385,0.0065772473,0.009434495,-0.022661159,0.02011555,0.015654176,0.0070594694,-0.004769734,0.00605566,-0.032043166,-0.018042324,-0.012393436,0.021152165,-0.027004438,0.002375026,-0.016861372,0.0009874072,-0.01444698,-0.05558348,-0.027214386,0.037606765,0.0438002,-0.0153786205,0.01691386,-0.018134175,-0.016021583,-0.0003368584,-0.006698623,0.028762745,0.026151529,0.0031639675,0.05862771,-0.009539468,-0.03952253,-0.028815232,-0.021388356,0.07306157,0.004766454,-0.008010792,-0.019892482,0.006816718,0.030888459,0.015614811,-0.032384332,-0.017097563,0.0501511,0.002156878,-0.00706603,0.012065394,0.032646764,0.0069610565,0.011763595,0.009736294,0.0150374565,0.00025689809,0.009053966,0.0473693,-0.040546022,0.008082961,0.013882748,0.011999786,-0.08030474,-0.041831948,-0.002079788,0.0015475394,0.014683171,-0.012944547,0.020063065,0.053484008,-0.009598516,0.013029838,-0.052066866,-0.011855447,-0.019393858,0.001366296,0.009493543,-0.037685495,-0.003782327,0.0017304228,0.01932825,0.0044318507,0.030993432,0.011251849,0.024052057,0.034510046,-0.0015426187,0.00022962957,0.016756399,0.0046024327,0.014289521,-0.02273989,0.015614811,0.02158518,-0.00017519506,0.04324909,0.0034510044,0.0039955545,-0.0036773537,0.008844019,-0.02228063,0.011789839,-0.0038840203,0.019616926,0.01995809,0.0071841255,0.03277798,-0.0061934376,0.023238514,0.009231109,-0.007886136,0.0075843367,-0.025534809,0.012445923,-0.009913437,0.021257138,0.042278085,0.02818539,0.004920634,0.016428355,0.02128338,-0.00083117705,0.012977351,0.045138612,-0.0017927509,-0.019380737,-0.0016894176,0.032725494,-0.0070069823,-0.0014179626,0.012216293,-0.028316608,-0.0025587296,0.0010538357,0.008607829,-0.027030682,0.009460739,-0.0002755555,0.030284861,-0.030442322,-0.016979467,-0.0012941267,-0.019341372,0.0013638356,-0.009696929,-0.0057341787,0.013161055,0.0330929,-0.022372482,-0.011304336,0.0010120104,0.01413206,-0.0043203165,0.028237877,-0.011514283,0.0022241264,-0.013580949,-0.007026665,0.02897269,0.03960126,0.011140315,0.027922956,-0.00078238075,-0.0153130125,-0.0002927777,0.014105816,-0.0011989945,0.023159783,0.0040480415,-0.019078936,0.009237669,-0.0008127247,-0.012905182,-0.012800208,0.020942217,-0.009427934,0.0400474,-0.03750179,0.0017501054,-0.014237034,0.042829197,0.0473693,-0.01995809,0.021926343,0.022857985,0.008903067,-0.08235173,0.0075580934,-0.00077992043,-0.0055012684,0.016703911,-0.025351105,0.0036839144,-0.015129308,0.015719784,0.0009332802,0.083296485,-0.024262005,0.017031955,0.021598302,-0.0052585173,0.008948993,0.0117111085,0.038866445,-0.015339255,0.020089308,-0.000240701,0.000326197,-0.0133578805,-0.022018196,0.03259428,0.011035342,0.014328886,-0.0097559765,0.036005918,-0.015746027,-0.0013179097,-0.0030097878,-0.002568571,-0.010175871,0.027161898,-0.040414806,-0.0033493114,-0.0066756597,0.035113644,0.033512797,-0.012170368,0.03642581,-0.006823279,0.015273647,-0.0060195755,0.0002320899,0.0022585709,-0.051279563,0.012570579,0.0004883729,-0.0036281473,-0.009486982,0.029681263,-0.012150685,-0.034142636,0.0029753433,0.013475976,-0.02134899,-0.01529989,-0.017373117,0.015352378,-0.0066789403,-0.017045075,-0.036294594,0.00056013215,-0.04610962,0.031150892,0.027083168,0.006498517,-0.012131003,-0.04225184,0.017071318,-0.00052691787,0.0060917446,0.024891846,0.050019883,-0.0027440735,0.007125078,0.009795342,0.030757241,0.022621794,-0.038315333,0.010995977,-0.010733542,-0.022411847,0.029602533,-0.025889095,-0.029313855,0.015457351,0.008706241,-0.007361268,0.0012646029,-0.0039529093,0.017189413,-0.052066866,0.011796399,0.024183275,-0.0014934123,-0.005721057,-0.049941152,0.060044855,0.0222019,-0.017674917,-0.016270896,0.012295024,0.00067658717,-0.00070980145,-0.019787509,-0.019551318,0.0014499468,0.0055078296,0.020089308,-0.015549202,0.011330579,-0.0023668248,0.022385603,0.013023278,0.0100315325,-0.014066452,0.027398089,-0.050334804,-0.037921686,-0.005078094,-0.00993312,0.005117459,-0.014460103,0.005137142,-0.038446553,-0.029366342,0.0069873,-0.032095652,0.027398089,0.014893118,0.003946348,-0.041805703,-0.0010849998,0.028080417,0.013659679,-0.0060753427,0.026597666,-0.025705392,-0.0036937557,-0.0136990445,0.0051666657,0.028369093,0.005917882,0.010464548,-0.007335025,-0.0030048671,0.030835971,0.023619043,0.0059966124,-0.004464655,0.000043363085,0.004159576,0.016349627,0.010930368,-0.006255766,-0.019577561,-0.021558937,0.0042973533,-0.01638899,-0.0017451848,-0.031308353,0.005675131,-0.026440205,0.01995809,-0.016677668,0.007190686,0.0018649203,-0.039863694,-0.00784021,-0.039863694,-0.00008523973,-0.012531214,0.008660316,-0.013908992,0.00013193449,-0.017674917,-0.030547295,-0.0027998406,-0.0023537031,-0.011770156,0.012150685,-0.0028211633,0.0020945498,-0.0052125915,-0.034772478,-0.015444229,-0.020915974,-0.03634708,-0.008962114,0.03206941,0.014381372,0.0093164,0.011862008,-0.025836607,-0.01948571,-0.012990473,-0.020443592,0.02461629,-0.023750259,-0.025128037,-0.011173119,-0.027870469,-0.008535659,-0.008417564,0.018606557,-0.00558984,0.022884227,-0.0408347,-0.018685287,0.012203172,0.013620314,0.03409015,0.0002925727,-0.019997455,0.008561903,0.020915974,-0.014263277,-0.012846135,0.055635966,-0.0029343378,-0.012728039,0.018107932,0.017307509,0.02128338,0.032174382,-0.011009098,0.017504334,-0.02779174,-0.009329522,0.011186241,-0.011960421,-0.003237777,0.020889731,0.009546029,-0.0056423265,-0.008023913,-0.031019675,0.010162749,0.044744965,0.003050793,-0.04563724,-0.0077811624,-0.0017140207,-0.016270896,0.0073022204,-0.026925707,-0.020627297,0.018186662,0.048550252,-0.037606765,-0.0016123276,-0.041044645,0.027371846,0.0030179888,0.0027293116,-0.03398518,0.024550682,-0.003562539,0.02747682,0.017031955,0.013134812,-0.040624753,0.009329522,-0.010805712,0.006737988,-0.009047405,-0.0050026444,0.03283047,0.00248328,-0.0150637,0.010280844,-0.0046582,-0.009034283,-0.015706662,0.028500311,0.0088308975,-0.008594707,-0.00065567443,0.03634708,-0.042960413,-0.014643806,0.020128673,0.0046155546,0.010569521,0.0013630155,0.053431522,0.014184547,-0.01405333,0.009106453,0.02103407,0.007203808,0.002299576,-0.0116455,0.018908355,-0.021480206,-0.019748144,0.00067453686,0.0004937036,-0.015417986,-0.0019157667,-0.045374803,0.025180522,0.0050420095,-0.02646645,-0.019931847,0.00846349,-0.025036184,0.00025013223,0.025246132,0.027293116,-0.01373841,-0.0064394693,0.02368465,-0.008260104,-0.026571423,-0.0065411623,0.006327935,-0.001600026,0.02802793,-0.020168038,0.056160834,-0.00070365064,0.02368465,0.013141372,0.017189413,0.0044679353,0.012216293,0.0069216914,-0.0049862424,0.0045860307,0.020233646,-0.003595343,0.0057276175,0.019210154,-0.022871105,0.047185596,-0.017320631,-0.028920205,-0.006869205,-0.024314491,0.002158518,0.027371846,-0.0013982801,-0.002958941,-0.0039496287,0.013338198,-0.010346453,-0.027371846,-0.017530577,-0.024747508,-0.011658622,-0.022857985,0.0047074063,-0.024393221,0.0093164,0.015785392,-0.045164857,-0.013102007,0.0061671943,-0.018934598,-0.005137142,0.027765496,0.027844226,-0.015903488,0.003874179,0.043773957,-0.01777989,0.021362111,-0.048812687,0.025101794,0.033276606,-0.00057735434,0.040650997,-0.013580949,-0.03542856,0.02003682,0.05101713,-0.0066953423,0.011875129,-0.00059908716,0.0036576712,-0.028998936,-0.0050124857,-0.021414598,-0.025180522,0.010917246,0.010320209,0.024708143,0.01700571,0.0033788353,0.016034706,0.0009906876,-0.0068888874,0.011022219,-0.0020322218,0.022674281]},{"id":"interface-GatewayFavoriteMemeCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeCreateDispatchData\nDescription: FAVORITE_MEME_CREATE — favorite meme/media added","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeCreateDispatchData"},"embedding":[0.038916126,-0.008536883,-0.04497279,0.032146912,0.0073447335,-0.027460534,-0.0048782183,-0.009612557,-0.007385842,-0.0123873865,0.0054229074,-0.0056010443,-0.015456827,-0.0032544294,0.009790694,-0.023431892,-0.03126993,0.011565215,0.025898406,0.0445343,0.0039772554,0.024075927,0.02169163,0.0022301406,0.00890686,0.010085305,-0.028748602,0.013552129,0.016196782,-0.018307023,0.00514885,-0.03126993,0.014250975,-0.014675764,0.011743352,0.049796198,-0.016470838,-0.028255299,-0.034558617,0.032009885,-0.0147305755,-0.036339987,0.031434365,0.026679471,-0.060292587,-0.008194311,-0.020622807,-0.0012341139,-0.012791621,0.012586078,-0.015100553,-0.0028245023,-0.0037066238,0.021102406,0.019074382,-0.03653183,-0.013209558,-0.0026669193,-0.0354356,0.042752925,0.013606941,-0.027803104,-0.0002858331,-0.027419426,-0.009530339,0.010482688,-0.06308797,0.03170842,0.030858843,0.025665458,0.019499172,-0.0131684495,-0.052235305,-0.011654283,-0.011914638,-0.024445904,-0.017567068,0.0046966556,0.039546456,-0.09460455,0.011873529,0.06297835,-0.04713784,-0.06840468,-0.031160306,0.011935192,-0.057442393,-0.040587876,-0.036477014,-0.009619408,-0.0031773509,0.022404177,-0.03710735,-0.0065054335,-0.032146912,-0.020225422,0.004991267,0.013113638,0.01350417,0.037436217,0.019101787,-0.063964956,-0.05239974,-0.014840199,0.051988654,-0.038669474,-0.003370904,-0.007933957,-0.040396035,0.0018344705,-0.058429,-0.032777242,0.000048682625,0.022089012,0.008221717,-0.011421335,0.05810013,-0.03165361,-0.0038881868,0.00050186727,-0.035463005,0.010647123,0.044232834,-0.0545922,0.005354393,-0.0073652877,0.041163396,0.012127032,-0.04543869,-0.017772611,0.04382175,-0.0059264875,0.07964103,-0.023253756,-0.0091809165,0.013086232,-0.021143515,-0.0061902674,-0.027405722,0.021129811,0.0155116385,-0.031571392,0.042780332,0.017183388,-0.015045742,-0.008242271,-0.047302276,0.009660517,0.033709038,-0.02017061,-0.049686573,0.05119389,0.016703788,-0.01982804,-0.018498862,-0.041684102,-0.0157994,-0.02907747,-0.027707186,-0.031681016,0.0073447335,-0.05952523,-0.0402316,0.006676719,-0.00077463983,0.02850195,-0.010962289,-0.0069473507,-0.039820515,-0.00890686,0.03825839,-0.041547075,-0.06676034,-0.014675764,-0.0025453065,-0.025610646,-0.03376385,-0.025788784,-0.02174644,0.023582624,0.032640215,0.012414792,-0.035709657,-0.040121976,-0.021677926,-0.025418807,0.035079323,0.038121358,0.043931372,-0.05952523,-0.038450226,0.015771993,0.017539661,-0.016648976,0.020855755,-0.021349058,0.0344764,0.0041793725,0.029104877,-0.03242097,-0.016977845,0.020225422,0.026446521,0.01159262,-0.016169377,-0.02687131,-0.017484851,0.014867604,0.0036381097,0.011852975,0.05952523,-0.0051933844,0.037381403,-0.009071294,-0.021307949,0.015402015,-0.04075231,0.027227584,-0.019321034,0.012572375,-0.025583241,0.052618988,0.046918597,-0.04034122,-0.0055736387,0.0060326844,-0.033489794,-0.02145868,-0.044040997,0.01671749,-0.022596018,0.013572684,-0.018197399,-0.057935696,-0.020842051,0.0106813805,0.024939207,-0.011517255,0.04661713,0.04664454,0.0058476957,-0.017183388,0.0027046022,0.015867913,-0.028556762,0.0149909295,-0.006423216,0.0017411198,0.009749586,0.030612191,0.07755819,0.02619987,0.021444978,-0.018430348,0.023733355,-0.06566411,-0.019362142,-0.012147586,0.04631567,0.012647741,0.0340105,-0.032777242,-0.01508685,0.034640834,0.013928958,0.03247578,-0.0073310304,0.025692863,-0.02140387,0.05886749,0.018855136,-0.028145676,0.047110435,0.03458602,-0.021088703,-0.006954202,0.01882773,0.02888563,0.019691011,0.026706876,-0.058703057,-0.052618988,0.008180608,0.03170842,-0.0038333754,0.005947042,0.062485047,0.018718109,0.0060429615,0.007303625,-0.06637666,-0.0032561424,0.029707802,-0.055825457,0.038669474,0.039354615,-0.028556762,-0.016498245,0.030721813,0.051604975,0.05322191,-0.055441774,-0.0042650155,-0.019170303,0.024678852,-0.00045947405,0.023020806,-0.009386459,0.036093336,0.011291157,-0.012969757,-0.052701205,0.01231202,-0.019101787,-0.046151236,0.028776009,0.049631763,0.017690394,-0.004641844,0.011962597,0.014401707,-0.009057591,0.07065195,-0.042561088,0.033517197,-0.018142588,-0.008810939,-0.048590343,-0.0055633616,0.012784769,0.029159687,0.008879454,-0.012634038,0.0066219075,0.07344733,-0.016731193,-0.017251901,0.013332884,-0.002586415,0.055578806,0.0074132476,-0.03702513,-0.024171846,-0.03420234,0.00529273,-0.015936427,-0.0025418808,0.03625777,-0.02054059,-0.007995619,-0.03074922,0.030255917,-0.029899642,-0.034640834,0.0069199447,-0.06391014,-0.0016169376,-0.03253059,-0.02226715,0.03664145,-0.0354356,-0.0070569734,0.004799427,0.028364923,-0.007098082,-0.021335354,-0.024994018,0.01034566,0.025583241,-0.008009322,-0.023294864,0.027117962,-0.027131665,0.007385842,-0.021568304,-0.0023431892,-0.0059162104,-0.054784037,0.02040356,-0.0039053154,0.028282706,-0.0013223261,0.021212028,0.0037717125,0.03285946,0.0000016492945,0.016388621,0.0023603179,-0.09169955,0.031489175,0.039820515,-0.011681689,-0.018978462,-0.03433937,-0.054235924,0.05656541,0.020129502,0.010208632,-0.016621571,0.018457754,0.019225113,0.014936118,0.009646814,0.0012435346,-0.036230363,0.009783843,0.03716216,0.054729227,0.046863783,-0.011900934,0.041410048,-0.018074073,0.01825221,0.045192037,-0.025103642,0.010544351,-0.024870692,-0.032448374,-0.03768287,-0.0002138931,-0.013880998,-0.0027131664,-0.0058648246,0.016690085,0.033297952,-0.015991239,0.035846684,0.016100861,0.031790636,-0.03510673,-0.04343807,-0.023678543,0.031543985,0.031297334,0.059086736,-0.019170303,-0.0060600904,-0.018567376,-0.023980007,-0.016361216,-0.053139694,0.009831803,0.045027602,0.026240978,-0.04831629,-0.019636199,0.0036107039,0.01786853,-0.00046247157,-0.019101787,-0.032366157,-0.019951366,-0.06155325,0.00068171736,-0.010619718,-0.012442198,0.0075023165,0.055935077,-0.0123873865,-0.023911493,0.0177178,0.016909331,-0.007611939,0.030447757,-0.020842051,-0.012031112,-0.016607868,-0.013785078,0.026556145,-0.008632802,-0.013970067,-0.009968831,0.027090557,0.050015442,-0.027981242,-0.070377894,-0.01518277,-0.0007348159,0.05810013,0.0026069693,0.004247887,0.026706876,0.021047594,-0.03658664,-0.02318524,0.07690045,0.055249937,-0.00582029,0.031790636,-0.019663606,-0.005255047,0.03855985,-0.0013129053,-0.016484542,0.0006273341,-0.019704714,0.011133575,-0.084300004,0.0056113214,-0.040396035,-0.007653048,-0.023390783,-0.047028217,-0.010208632,0.027844213,-0.0011715946,0.032393564,-0.0043951925,-0.024062224,-0.023377081,0.0139221065,0.0024117036,-0.02662466,0.002213012,-0.007611939,-0.008591694,-0.027844213,0.057497203,0.00029675258,0.0046384186,-0.0093522025,0.021719035,-0.002129082,0.009448122,-0.0019406676,-0.009646814,0.006690422,-0.08676652,0.0007780656,-0.029187094,0.014716873,0.0052036615,0.0031208266,0.026213573,-0.003115688,-0.037491027,-0.006029259,-0.017046358,0.013223261,0.0070638247,0.008057282,0.0006504577,0.01350417,0.012784769,-0.002937551,-0.012113329,-0.014346896,-0.008070985,0.014168758,-0.049604356,0.0062861876,-0.028255299,0.02414444,0.010174374,0.033023894,0.047603738,-0.008824643,-0.032119505,0.0049981186,0.014744278,0.016073456,-0.028118271,-0.02184236,0.009934574,-0.02744683,0.015045742,0.011798163,0.019101787,-0.024802178,-0.03644961,-0.014716873,-0.013778226,0.016840816,0.025350293,-0.015045742,0.018375536,0.034065314,0.026336899,0.013154747,-0.007844888,-0.03595631,-0.025446212,-0.017841125,0.004497964,-0.019197708,0.027419426,-0.007872294,-0.029488556,0.010756746,-0.0077078594,-0.055880267,0.010893774,0.011757054,-0.010962289,0.014785387,-0.0041348385,-0.024117036,0.0030951337,-0.02260972,-0.008824643,0.005464016,-0.021431275,-0.037354,-0.03908056,0.032503188,0.059415605,-0.008276528,-0.0067075505,0.0038676325,-0.0038059696,-0.018800326,-0.0031088365,-0.04779558,-0.05733277,-0.040450845,-0.012428495,0.0028930164,-0.0007061256,-0.01422357,-0.041245613,-0.033352762,-0.034668237,-0.024212955,0.0017899362,-0.0454935,0.05494847,-0.0191566,-0.02902266,-0.015073147,-0.015004633,0.035545222,-0.036723666,-0.00833134,-0.02831011,-0.017690394,-0.026885014,0.035271164,0.009961979,-0.012702552,-0.022787858,0.02965299,0.01072934,0.0089479685,0.025966922,0.03343498,0.007748968,0.010270295,0.019375846,0.022801561,0.019142896,-0.033928283,0.009790694,0.028419733,0.0024014264,0.024432201,-0.003946424,-0.013319181,0.0445343,-0.0445343,0.0126203345,0.0039395727,0.03631258,0.018238507,0.028090864,0.00021496363,0.05272861,0.010407323,-0.007844888,-0.007433802,0.0068754107,0.026939824,0.010996546,0.07218667,0.007577682,-0.031297334,-0.050371718,0.01666268,-0.036805883,0.03573706,-0.008673911,0.032256536,0.0072488133,-0.02274675,0.017210793,0.06374571,-0.03677848,0.021157218,-0.0006496013,-0.01379193,0.006313593,-0.009619408,-0.009824951,0.012483306,-0.023788167,0.01518277,0.003836801,0.012544969,0.01671749,-0.01853997,-0.024267767,0.011825569,-0.0013051975,-0.013346586,0.0019201133,0.02476107,-0.03990273,0.00034107277,-0.004874793,0.030447757,0.017621879,0.0044088955,-0.030118888,-0.027186476,0.03190026,-0.015717182,-0.0069713304,-0.0130519755,-0.0020588548,0.020855755,-0.006680145,0.010715637,0.0097290315,-0.034750454,-0.0029067195,-0.01585421,0.022075308,0.057442393,0.0047822986,-0.008393003,0.0090918485,-0.0277757,0.0040560467,0.016635273,0.023363378,-0.068021,0.033243142,-0.003031758,-0.024555527,-0.003692921,-0.014840199,0.011407631,-0.0021479235,-0.0054708673,-0.0032373008,0.0015561312,0.019184005,0.014977227,-0.012627186,-0.03760065,0.0067315307,-0.053660404,0.011311712,-0.028913036,0.017553365,-0.045822367,0.026131356,0.04228703,-0.015826805,-0.0028656109,0.055633616,0.018567376,0.05497588,0.02270564,0.020293938,-0.030639596,-0.021061298,-0.017772611,-0.019978771,0.0018259062,0.0057586273,0.011140426,-0.0046281414,0.0045904582,-0.0065054335,0.045192037,-0.016854519,0.0073515847,-0.012592929,-0.043355852,0.0094686765,-0.026021734,-0.0020006178,0.011085615,-0.06906242,-0.0043129753,-0.013154747,0.003477101,-0.010407323,-0.008804088,-0.020458372,-0.029488556,0.002514475,0.039546456,-0.070049025,0.0010054475,-0.005570213,0.028474545,-0.100853056,-0.018307023,0.07596866,-0.004775447,0.0027628394,-0.019375846,0.017649285,0.030667003,0.011805015,-0.0886301,0.004823407,0.0036107039,0.009804397,-0.028255299,0.01135282,-0.0072008534,-0.007653048,-0.0072008534,0.008064134,-0.0122161005,-0.032832056,-0.013942661,-0.011181534,0.032777242,0.040533062,0.009605706,-0.0340105,0.021075001,-0.0054126303,-0.019553982,0.025089938,-0.01838924,0.00018338281,0.000010471181,-0.001707719,0.020389857,-0.006594502,0.018087776,0.04324623,-0.03376385,0.00601213,-0.019704714,-0.00047446156,-0.0070432704,-0.036970317,0.012407941,-0.016196782,0.021609413,-0.031489175,-0.02662466,0.008968523,-0.036668856,0.0368881,-0.0019509448,-0.004426024,0.024295172,-0.0048542386,-0.0009711903,0.005933339,-0.02255491,0.015771993,-0.0047480413,0.047000814,-0.036367394,0.04143745,-0.013997473,0.026364304,0.004631567,0.021636818,0.015881617,0.007885996,0.04516463,0.02274675,0.034366775,-0.019238817,0.0040012356,0.011256901,-0.014401707,0.018183697,0.050590962,-0.0019475191,0.011613174,-0.004364361,0.012791621,0.02581619,-0.013045124,0.016114565,-0.01034566,0.036285177,0.007228259,0.028529357,-0.020787241,0.015580153,-0.0052139387,-0.024240362,0.018307023,-0.024898099,-0.008530031,0.011188386,-0.029981859,0.016635273,-0.040724903,-0.027857916,-0.024994018,-0.023198944,0.013113638,-0.0067794905,0.0072967736,0.006015556,0.020842051,0.0017608176,-0.004583607,-0.010119563,0.008982225,0.019197708,0.0022472693,-0.0032390137,0.02643282,0.018759217,0.0010140117,-0.010146969,-0.00071212056,-0.023377081,0.005018673,-0.0058613988,-0.02715907,0.019677307,0.0044671325,0.010989695,0.015073147,-0.0029649565,0.025596945,-0.018416645,0.022911184,0.008975374,-0.017361525,-0.007933957,0.008660208,-0.021143515,0.0031585095,-0.006317019,0.033791255,-0.0037100497,0.0062245247,0.020417264,-0.0044671325,-0.0036004267,0.001557844,-0.0032338751,-0.0315988,0.0047206357,-0.03606593,0.014086541,-0.044369865,0.026885014,0.03477786,-0.027542751,0.01959509,-0.0116953915,0.014278381,-0.004727487,0.010119563,-0.0065876506,-0.0039395727,-0.0028073736,-0.019101787,-0.035188947,0.024007412,-0.009215174,0.019088086,-0.01188038,0.0021479235,0.033160925,0.022308258,-0.03074922,0.049549546,0.030447757,0.006591076,-0.012497009,-0.007173448,-0.037545837,0.035764467,-0.0076187905,0.0009480667,0.03836801,-0.005727796,0.05259158,-0.03702513,-0.00416567,-0.012709403,-0.017060062,0.01767669,-0.008447814,0.0061286045,-0.0058374186,-0.023500407,-0.025213264,0.04075231,-0.038587257,-0.015292393,0.034613427,0.013908404,-0.008872602,-0.035600033,0.0017000112,0.04727487,-0.012949203,0.026542442,0.0041451156,0.030831438,-0.042506274,0.01556645,-0.032092102,-0.010578609,-0.02700834,0.027597561,-0.018704405,0.001827619,0.009633111,-0.018183697,0.012065369,-0.0040834527,-0.002500772,0.05689428,-0.036148146,0.007735265,-0.04362991,-0.00023037934,-0.040313818,-0.00023359095,0.0040971553,-0.019225113,-0.013106787,-0.011852975,0.026062842,0.0041177096,0.012010558,0.0074063963,0.031050682,0.0010242888,-0.016868223,0.0056969645,-0.007111785,-0.029241905,-0.0065054335,0.008728722,0.012257209,0.021417571,0.023678543,0.0051317215,0.0054914216,0.035846684,-0.013278073,0.002286665,0.0018824305,-0.01207222,0.007831185,0.018169994,0.001973212,0.007748968,0.03713475,0.0006029259,0.022856371,-0.0040012356,-0.0059025073,0.00857114,-0.03151658,0.008516328,-0.01796445,0.019923959,0.04478095,0.025446212,0.00092922524,-0.0015792547,0.002588128,0.026843905,-0.0031824894,0.011859826,-0.012729958,0.022719344,-0.0147579815,-0.025117343,-0.003836801,-0.034037907,0.012510712,-0.008728722,0.009968831,-0.023925195,0.010756746,0.015114255,-0.019526577,0.03535338,0.02040356,-0.045027602,0.015497936,-0.014785387,-0.031790636,-0.016676381,-0.0036997725,-0.042506274,0.023637434,0.020773537,-0.014182461,-0.02001988,0.03126993,0.008783534,0.013113638,0.033818662,0.051002048,0.013421953,-0.013757672,-0.012174992,0.012654592,0.024295172,-0.0046623982,0.032146912,-0.019416954,-0.014662061,-0.0007579395,0.021157218,0.00914666,0.015018336,0.00550855,-0.015552747,-0.004244461,0.010071603,0.015744587,0.010955437,0.013696009,0.009592002,0.005039227,-0.01853997,-0.0062759104,-0.0063821073,0.016799707,0.020910567,-0.05837419,0.008735574,0.031872854,0.0022438434,-0.033352762,0.008413557,-0.026898716,0.032969084,-0.022568611,-0.025446212,-0.011222643,0.0131410435,-0.011530957,0.0028844522,0.094659366,-0.024062224,0.004953584,0.0024356835,0.012202398,-0.029817425,-0.013586387,0.04464392,0.0039053154,-0.0075502764,-0.021993091,0.015018336,0.03677848,-0.02831011,0.022308258,0.010743043,-0.032557998,-0.016155673,0.014127649,-0.037847303,0.04253368,-0.02356892,-0.0071049333,0.025446212,0.016320108,-0.03080403,-0.029132282,-0.012805323,-0.001094516,-0.016004942,0.011715946,-0.009907168,0.036148146,0.013408249,-0.0016006654,-0.008132648,-0.0021068149,-0.042095188,0.009057591,-0.0030882822,-0.017046358,0.0040628985,-0.033407576,0.014346896,-0.0017762333,-0.0025932665,-0.016402325,-0.039573863,-0.0021068149,-0.024445904,0.013305478,0.01345621,-0.0023791592,-0.021102406,0.007454356,-0.008125797,-0.009756437,0.038724285,-0.0031225395,-0.019293629,-0.034311965,0.01714228,0.0013711426,-0.034394182,0.038148765,0.046754163,0.00445343,-0.012085923,0.028227894,0.039272398,-0.020266531,-0.015840508,-0.01988285,0.001250386,0.008290231,0.017416336,-0.0116063235,-0.025007721,0.028611574,0.041464858,-0.0034514081,0.013894701,0.014812793,0.04368472,-0.053139694,0.013394547,0.009441271,-0.0012906382,-0.0069918847,0.012846432,-0.003381181,0.013175301,-0.015867913,0.028282706,-0.007885996,0.017347822,-0.0031054108,0.008804088,-0.018361833,-0.001865302,0.011030803,0.03598371,0.0072008534,0.03792952,-0.049741384,0.016388621,-0.015347204,-0.009016482,-0.001863589,0.0008114663,-0.012702552,-0.012579226,0.028913036,0.010544351,0.02303451,-0.0048919213,0.008817791,-0.029899642,-0.02806346,-0.027419426,-0.034174934,0.051413134,0.021047594,-0.000047451507,-0.011044506,0.011688541,0.04138264,-0.019663606,-0.012750512,0.014908712,-0.011167832,0.011969449,0.0068548564,-0.034448992,-0.020513183,0.021732738,-0.016621571,0.0015535619,-0.049494732,0.029187094,-0.009592002,0.020855755,-0.019225113,0.0124764545,-0.005464016,0.009105551,0.022664532,0.0004997262,-0.02145868,0.019101787,0.006597928,-0.009249431,0.007838037,-0.0028587594,0.03036554,0.0040560467,0.0064129387,-0.007824333,-0.00016111568,-0.017155983,-0.016196782,-0.018553674,-0.021540897,-0.0139221065,0.019334737,0.007803779,-0.020444669,-0.004463707,-0.017018953,-0.04439727,-0.027213883,-0.019663606,-0.006580799,-0.005967596,-0.025994327,-0.013874147,-0.009831803,0.023719652,-0.043876562,-0.028830819,-0.005810013,0.010030494,-0.010434729,-0.0036175554,-0.015127959,0.009222025,0.0003530628,-0.014853901,-0.005330413,-0.003042035,0.009955129,0.0014996069,-0.04637048,-0.034120124,-0.052756015,-0.01911549,-0.006892539,0.025172155,0.024788475,0.021088703,-0.01786853,0.015963834,-0.015621262,-0.009249431,0.023514109,-0.003898464,-0.015634965,0.016073456,0.018169994,0.002514475,0.011674837,0.017114874,0.0028776007,-0.008872602,0.010784152,0.019088086,0.018786622,0.014237273,0.015032038,0.0062690587,-0.030584786,-0.0027851064,0.014579844,-0.015593856,-0.037847303,0.03650442,0.034037907,-0.022184933,0.028529357,0.0071528936,0.02082835,0.024171846,-0.004090304,0.0004065896,-0.014716873,-0.040779714,-0.0100579,0.00488507,0.0100579,0.008701317,-0.0021462105,0.032146912,-0.012120181,0.0016434869,-0.049796198,0.009763288,0.0039806813,-0.023377081,-0.047028217,0.012449049,-0.02706315,-0.0010739617,-0.012592929,0.014264679,0.018622188,-0.004415747,0.011620026,-0.023240052,0.016594164,0.010167523,-0.0042067785,-0.017197091,-0.012017409,-0.017334118,0.006101199,-0.031626202,-0.02485699,0.004535647,0.024747366,-0.007036419,-0.028803414,0.003898464,-0.012435346,-0.0012914947,0.030392945,-0.01853997,0.015703479,0.004487687,0.007879145,-0.0459868,-0.037052535,0.00409373,-0.0010936595,-0.0001765314,0.02274675,-0.0031345293,-0.021143515,0.0107773,-0.0053338385,-0.003932721,-0.013257518,0.02404852,-0.019677307,-0.04143745,-0.012236655,-0.0051557017,-0.015484232,-0.0411908,-0.017073765,-0.004415747,-0.000073331714,0.007817483,0.024774773,0.015497936,0.020554291,0.007865442,0.00394985,-0.008454666,0.0021753293,0.029433746,0.011099317,0.0040971553,0.010996546,-0.0022729621,0.01700525,0.012538117,0.021417571,0.015237581,0.008338191,0.0155116385,-0.0055016987,0.026528738,0.00080461486,0.03765546,-0.012154438,0.0051351474,0.009400163,-0.028556762,0.049604356,-0.013065678,-0.010434729,0.0008714163,0.0109143285,0.0018207676,0.031461768,0.020910567,-0.0063375733,0.025185859,-0.004371213,-0.030475162,-0.033983096,0.036915507,-0.023390783,-0.026569847,0.0311329,0.013380844,-0.0058545475,0.018019263,-0.0038162468,-0.0498236,0.00890686,-0.0036278325,-0.016046051,-0.01901957,0.0061799902,-0.011990003,-0.0014713447,-0.0030762923,0.021499788,0.013463061,0.010592312,-0.022308258,-0.018019263,0.02255491,-0.010516946,0.027241288,0.002033162,-0.01695044,0.004641844,0.016539354,-0.0010371353,0.02720018,-0.013202706,-0.016347513,-0.014045432,0.010174374,-0.029104877,-0.026926123,0.002826215,-0.00531671,-0.0019440934,0.023774464,-0.049905818,0.014100244,0.008502625,-0.01800556,-0.011181534,0.01959509,0.0042513125]},{"id":"interface-GatewayFavoriteMemeDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeDeleteDispatchData\nDescription: FAVORITE_MEME_DELETE — favorite meme/media removed","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeDeleteDispatchData"},"embedding":[0.038933534,0.003621969,-0.06260782,0.03166856,0.0043512713,0.013485084,-0.022987055,0.004631772,0.017096534,0.0015971024,0.028330598,-0.03427722,-0.03382842,0.029116001,0.022243727,-0.010245298,-0.008604367,0.01849904,-0.008541254,0.07511816,0.013379896,0.04025189,0.003839357,0.0012675137,0.009838572,0.004842148,-0.0025630777,-0.012426193,0.036212675,-0.012825907,0.0126295565,-0.032874715,0.026549418,-0.02028022,0.018134387,0.02558169,-0.0136533845,-0.03441747,-0.03396867,0.027110418,-0.027068345,-0.044122804,0.0047965664,0.022103477,-0.05107923,0.013085371,-0.024221258,0.004786048,-0.0011710916,-0.0054908064,-0.006002721,-0.0015971024,-0.017629486,0.039101835,0.011493527,-0.024263334,-0.0036149563,0.0075524887,0.004319715,0.030490456,-0.00930562,-0.017994137,-0.008990056,-0.015637929,-0.031219758,0.009375745,-0.050574325,0.04392645,0.025399363,0.0143336,0.0026524873,-0.02591829,-0.064515226,-0.034697972,-0.009375745,-0.032397863,0.020392422,0.022720579,0.030967308,-0.09868024,0.021233924,0.07006914,-0.032930814,-0.047713216,-0.041373894,0.018863691,-0.083308786,-0.029761154,-0.0143897,0.02280473,-0.015076928,0.040616542,-0.039354287,-0.0069634365,-0.042215396,-0.043113,-0.0022229701,0.015820256,0.015483654,0.052565884,0.019971669,-0.063168816,-0.06518843,-0.016184906,0.047657117,-0.044767957,-0.0053856187,-0.008295816,-0.042692248,0.00030526397,-0.018414889,-0.03144416,-0.020308271,0.026184766,-0.004779035,0.00791714,0.05180853,-0.016549557,0.013877786,0.019452743,-0.027432995,0.00805739,0.03753103,-0.07640847,-0.013716497,0.002393024,0.039550636,-0.004438928,-0.05161218,-0.022159576,0.05242563,-0.0064410036,0.057951503,-0.056324597,-0.0019740255,0.039214037,-0.0073491256,-0.010483724,-0.024599936,0.03197711,0.023674283,-0.028512925,0.03489432,0.023968808,-0.039803088,-0.0034133461,-0.0286672,0.0013078358,0.03719443,-0.0054522376,-0.02869525,0.042748347,0.037727382,-0.0064620413,-0.03228566,-0.039859187,0.0043021836,-0.02336573,-0.028176323,-0.032201514,-0.021822976,-0.067488536,-0.061541915,-0.0058940267,-0.010013885,0.026815893,0.0036009313,-0.004600216,-0.026773818,-0.019635068,0.022412028,-0.03778348,-0.03716638,-0.04804982,-0.03767128,-0.0043758154,-0.005483794,-0.04067264,-0.015539754,0.017040433,0.02478226,0.006448016,-0.022706553,-0.023435857,-0.03702613,-0.028064122,0.03495042,0.047068063,-0.0054522376,-0.028863551,-0.017629486,0.025553638,0.011900254,-0.0216687,0.005736245,-0.021738825,0.023716357,-0.019564943,0.02158455,-0.024922512,-0.01699836,0.056548998,0.03699808,0.0005469769,-0.024347484,-0.023814533,-0.013828698,0.014326587,-0.0007266728,0.009130307,0.070125245,0.02611464,0.026577467,-0.03399672,-0.022426052,0.007152775,-0.021542475,0.038400583,-0.02005582,0.03753103,-0.010371524,0.043505702,0.05427694,-0.013344834,0.00037034895,-0.0008831398,-0.016773958,-0.019326517,-0.06698363,0.008239716,-0.020182045,0.0107572125,-0.021794926,-0.04636681,-0.0029294821,-0.005929089,0.0076436517,-0.020616822,0.042355645,0.035230923,-0.009747409,-0.024950562,0.0035220403,-0.009025119,-0.014866551,0.01352716,0.012538394,-0.0056345635,-0.002556065,0.02914405,0.05433304,0.05480989,0.019494819,-0.05539894,0.009200432,-0.056689247,-0.0005154205,-0.0044213966,0.03413697,0.02577804,0.039578687,-0.025665838,-0.0017277107,0.02033632,0.019144192,0.041570246,0.0145580005,0.006591773,-0.035539474,0.06294442,0.008372954,-0.013400934,0.048105918,0.017924013,-0.01447385,0.019789344,0.035904124,0.016297108,0.01094655,-0.0119633665,-0.041738544,-0.044038653,0.0088287685,0.01622698,-0.0037481943,0.013632348,0.025820116,0.035623625,0.0024982118,0.023407806,-0.072649755,-0.0016558323,0.031191709,-0.053996436,0.008814743,0.03999944,-0.012636569,-0.012356068,0.0011588197,0.034165017,0.05702585,-0.045441158,-0.030181905,-0.03991529,0.015343403,0.0045160656,0.006149984,0.005799358,0.010981613,0.013576247,-0.020630846,-0.050237726,-0.011816104,-0.010701112,-0.041850746,0.0081064785,0.028484873,0.0042846524,0.027418971,-0.013464047,0.04631071,-0.022187628,0.049592573,-0.047292463,0.036913928,-0.014529951,0.0028733818,-0.0577832,0.014144261,0.029340401,0.025792064,0.015539754,-0.02558169,0.00005697676,0.06311272,-0.00035654302,-0.041373894,0.03983114,-0.012398143,0.03969089,0.02903185,-0.022243727,-0.009789484,-0.010553849,0.01008401,-0.002045904,-0.0108063,0.017853888,-0.008618392,0.012874994,-0.046703413,0.0071492684,-0.020841222,-0.041598294,0.013435997,-0.048105918,0.0074963886,-0.012412168,-0.015441579,0.051499978,-0.018989917,-0.018120363,0.0044143843,0.020308271,0.0058624703,-0.020616822,-0.044459406,-0.0029943478,0.035876073,-0.0052874433,-0.010981613,-0.0008393115,-0.01875149,-0.0032450457,-0.023449881,0.0066408603,-0.027306769,-0.038905486,0.027194569,-0.018330738,0.037979834,-0.0009309126,0.003783257,0.005185762,0.028246447,0.005844939,-0.004614241,0.0034256182,-0.081233084,0.036184628,0.03730663,-0.00999986,-0.000044704844,-0.028064122,-0.044908207,0.036605377,-0.00023601527,0.030069705,-0.024936536,0.01002791,0.039859187,0.026170742,-0.010511774,0.013155496,-0.042439796,0.026100615,0.04875107,0.03472602,0.03495042,-0.028162299,0.058232002,0.008281792,0.018737465,0.035427272,-0.018947842,-0.025203012,0.011781041,-0.022454103,-0.029648952,0.00013148483,-0.010217248,0.004509053,-0.01016816,0.011717929,0.035623625,-0.0014375675,0.022313852,0.03155636,0.033127166,-0.070405744,-0.059185706,-0.020799147,0.008569305,0.015175102,0.053491537,-0.011858178,-0.001817997,-0.007566514,-0.052537832,-0.02416516,-0.07248145,-0.006030771,0.039718937,0.020518646,-0.030266056,-0.017657537,0.010147123,0.029368453,-0.016465407,-0.022369953,-0.030799007,-0.016731882,-0.065973826,0.005564438,-0.028302548,-0.032930814,0.008976031,0.04005554,0.01988752,-0.04072874,0.014109199,0.01575013,0.011570665,0.041850746,-0.017881937,-0.0153995035,0.010567875,-0.0056556007,0.011156926,-0.004400359,0.0004654563,0.0068301987,0.028302548,0.029817253,-0.02013997,-0.06883494,-0.0062516653,-0.0045896973,0.051135328,-0.011107839,0.012482293,0.023954783,0.005336531,-0.06973254,-0.02589024,0.06608603,0.05531479,-0.0018390345,0.019354567,0.012412168,-0.006644367,0.032622263,0.0040707705,-0.01705446,-0.01980337,-0.024459684,0.031247808,-0.07640847,0.030266056,-0.054389138,0.0062376405,-0.017755711,-0.01702641,-0.018849665,0.00997181,-0.012040504,0.015764154,-0.0075244387,-0.021037573,-0.038877435,0.018078288,0.0050349925,-0.049732823,-0.0034729526,-0.009207444,0.0004983275,-0.027517145,0.03497847,-0.016381256,0.013379896,-0.0005978177,0.029480653,0.026857968,0.009228482,-0.012370093,-0.0065461914,0.0054697692,-0.08061598,-0.004102327,-0.0076717017,0.017629486,0.0027085876,0.0062762094,0.039662838,0.010041934,-0.026240867,0.0023106267,-0.0070440806,0.014158287,0.0062937406,0.021374173,-0.023744408,0.016521508,0.008576318,-0.0022264766,-0.01883564,-0.020785123,0.0038323447,0.022496179,-0.051331677,0.00050753145,-0.008372954,0.022005301,0.009235495,0.037054177,0.03761518,-0.029284302,-0.034922373,0.013877786,0.019719219,0.0076857265,-0.041514143,0.0012263152,0.003891951,-0.033884518,-0.00061052793,0.01980337,0.02727872,-0.021149773,-0.02269253,0.00655671,-0.01294512,-0.013400934,0.00852723,0.0075244387,0.018681364,0.027292745,0.02002777,-0.0036289813,-0.019242367,-0.039466485,-0.019144192,-0.016086731,0.0072018625,-0.009018106,0.0037131316,-0.012903045,-0.033744268,-0.021991277,-0.016759934,-0.032622263,-0.0068652616,0.020616822,-0.015567804,0.013197571,0.01869539,0.011177964,0.013450022,-0.018709416,-0.015076928,0.023604156,-0.0144458,-0.030686807,-0.013330809,0.051191427,0.057951503,-0.007847015,-0.023758432,0.014922651,0.0006486585,-0.012552419,-0.016255032,-0.03716638,-0.041654393,-0.041766595,-0.026381116,0.0038078008,-0.019270416,-0.01591843,-0.029200152,-0.03464187,-0.03688588,-0.013464047,-0.013842723,-0.03444552,0.04056044,-0.03222956,-0.03413697,-0.00012293832,-0.02416516,0.028120223,-0.025848165,-0.005732739,-0.01569403,-0.0009747409,-0.025006661,0.028975751,0.0074402886,-0.017867912,-0.04603021,0.030434355,0.0031205732,0.016241007,0.026984194,0.017713636,-0.0030592137,-0.017966088,0.014375675,0.003117067,0.016465407,-0.023043156,-0.005203293,0.027797647,0.010273349,0.019158216,0.0027594282,-0.012510343,0.055511143,-0.049508423,0.020350346,0.023562081,0.040616542,0.01614283,0.020546697,-0.022089452,0.019761294,0.0213321,-0.027082369,-0.00398662,0.0014007518,0.026970169,0.0062236153,0.0866187,0.0022036857,-0.035904124,-0.056268495,0.008092453,-0.031079508,0.024880437,-0.008765656,0.011184976,0.0038323447,-0.022117501,0.020855248,0.037951782,-0.037138328,0.021851026,0.013407947,-0.024515785,0.020813173,-0.0027401438,-0.01144444,0.010911488,-0.035315074,0.0018530595,0.0014892849,-0.005185762,0.039242085,0.0046352786,-0.043505702,-0.0054241875,-0.015904406,-0.018092314,0.0088287685,0.024052959,-0.031808812,0.017811812,-0.008450092,0.030967308,-0.011030701,-0.008134528,-0.02577804,-0.04263615,0.015329379,-0.0023702332,-0.007608589,-0.015469628,0.002755922,0.023604156,-0.01911614,0.004666835,0.001967013,-0.026198791,0.005939608,-0.012475281,0.022930956,0.027082369,0.019733243,-0.008737605,-0.0028190347,-0.025848165,-0.003867407,-0.011381327,0.020841222,-0.047404665,0.036268774,0.0062236153,-0.019957645,-0.017853888,-0.013492097,0.007058106,0.017180685,0.005631057,-0.03413697,-0.02269253,0.025623765,0.0061745276,-0.01903199,-0.01861124,0.006644367,-0.050377976,0.012075567,-0.042551998,0.046479013,-0.035090674,0.0029627916,0.027124444,-0.008050378,-0.00852723,0.056408744,0.014586051,0.044627704,0.03671758,0.020953422,-0.03214541,-0.01066605,-0.047488816,-0.009628196,0.017236784,0.0052734185,0.023211455,0.004063758,0.002566584,0.001785564,0.040167738,-0.010301398,0.028274499,-0.0041444018,-0.03769933,0.02036437,-0.015848305,0.005588982,0.011072776,-0.07349125,-0.019635068,-0.006272703,-0.005911558,-0.011640791,-0.017924013,-0.009621183,-0.021963226,-0.008772668,0.04869497,-0.06417862,-0.0024245803,-0.0061710216,0.0433935,-0.09699724,0.014515925,0.074108355,-0.013141471,-0.0008362435,0.0056485883,0.020827197,0.054922093,0.03525897,-0.091443315,0.03175271,-0.0029505196,0.009396783,-0.039634787,0.027348844,-0.024754211,0.01994362,-0.010210236,0.017208735,-0.022454103,-0.02739092,-0.012019467,-0.020013744,0.04027994,0.03200516,0.019396642,-0.031079508,0.022874855,-0.0018197501,-0.010294386,0.023758432,-0.022229703,-0.018148413,0.014046086,0.0029785698,0.011991417,-0.013253671,0.0003129339,0.038120084,-0.02747507,0.010855388,-0.03444552,-0.0010799287,-0.018821616,-0.050574325,-0.0029329883,-0.020560721,0.0065041166,-0.02458591,-0.027517145,-0.011928304,-0.018092314,0.018961865,-0.008162579,0.006160503,0.00012162347,0.017208735,-0.0047018975,-0.00470891,-0.016535532,0.005855458,0.017615462,0.043898404,-0.03739078,0.03138806,-0.0038814323,-0.007608589,0.0028260474,0.014936677,-0.0023509488,0.009487946,0.02044852,0.019312492,0.03130391,0.0012008948,0.017264836,0.012839932,-0.006476066,0.017938036,0.041626345,-0.006363866,0.012187768,-0.016928233,0.003920001,0.014754351,-0.0004965744,-0.0071878373,0.0036465127,0.029761154,-0.008092453,0.029789204,-0.0060518086,0.01722276,-0.0031188203,-0.02402491,0.014291525,-0.024712136,-0.014908627,0.012720719,-0.013513135,0.027404945,-0.04103729,-0.046927813,-0.033856466,-0.012412168,0.000508408,-0.0045230784,0.023463907,0.013267696,0.01869539,0.010385549,-0.0017347232,0.002059929,0.0048211105,0.0071106995,0.002300108,-0.016170882,0.017264836,0.0072930255,-0.007152775,-0.024010884,0.0067846174,-0.023211455,0.010392562,0.0010036676,-0.008127516,0.004828123,0.016787983,0.013239646,0.04903157,-0.008912918,0.02402491,-0.00430569,0.015988555,0.0099157095,-0.0020564229,0.011774029,0.03155636,-0.01375156,0.015848305,-0.017236784,0.026465267,-0.024880437,0.024052959,0.006742542,-0.012433206,0.0018618252,0.0072649755,-0.0055819694,-0.029620903,0.0065812543,-0.02044852,-0.008232703,-0.042608097,0.045581408,0.03360402,-0.018092314,0.021963226,-0.003811307,0.026268916,0.008625405,0.0027454032,-0.023996858,-0.018400865,0.0036675502,-0.003621969,-0.05208903,0.01844294,-0.013842723,0.02747507,-0.002783972,0.0058870143,0.031219758,0.024796287,-0.008253741,0.03747493,0.0062411465,-0.0008371201,0.0062271217,-0.013064333,-0.027348844,0.03938234,-0.011493527,-0.016255032,0.041401945,0.0067740986,0.04569361,-0.027783621,-0.0074823634,-0.014081149,0.006139465,0.02758727,-0.009663259,0.01583428,-0.00083098415,-0.021963226,-0.031275857,0.047124162,-0.044375256,-0.0034974965,0.029480653,0.025090812,0.0033765305,-0.029228201,0.0069178552,0.0286672,-0.005308481,0.031135608,0.0039655827,0.028526949,-0.036465127,0.038877435,-0.029200152,-0.023842582,-0.01586233,0.012580468,-0.0063217906,0.008562292,0.00055398943,0.00050972286,0.016563583,0.0005158588,0.008702543,0.06440303,-0.03764323,0.0029452601,-0.052706134,-0.0033589993,-0.033295467,0.009908697,-0.014950702,-0.019705193,-0.029901404,-0.01900394,0.015231203,0.0076997518,0.032762513,0.008358929,0.03786763,0.00094581424,-0.022383979,-0.011093814,0.0024631491,-0.02577804,0.008190628,-0.007342113,0.013926873,0.026381116,0.018681364,0.00013006042,0.009067194,0.02022412,-0.031808812,0.006206084,-0.0047755293,-0.012671632,0.004670341,0.008379967,0.020518646,0.0024561367,0.02589024,-0.024431635,0.005564438,-0.020939399,0.008422041,0.016311131,-0.044066705,0.011738966,-0.011213026,-0.0034519152,0.06737633,0.042439796,-0.01022426,-0.007854028,-0.00060570677,0.014270487,-0.004263615,0.015539754,-0.01294512,-0.005687157,0.012727732,-0.018961865,0.01747521,-0.011255101,0.0070265494,-0.01377961,0.013393922,-0.03977504,0.017096534,0.012636569,-0.02744702,0.028232424,0.018092314,-0.02691407,-0.0029978543,-0.020883298,-0.010827337,-0.02325353,-0.008905906,-0.03999944,0.004091808,0.02192115,-0.011346265,-0.018414889,0.009747409,0.005669626,0.0151610775,0.041934896,0.053098835,0.035960224,-0.00038831853,-0.009754421,0.021710776,0.0213882,-0.0020371384,0.012846945,-0.011837142,-0.019326517,-0.009985834,0.024656035,0.0052769245,0.003934026,0.0023842582,-0.0015786946,-0.0064410036,-0.014228412,0.029116001,0.0035869062,0.011900254,0.009894672,-0.013828698,-0.02300108,-0.009838572,-0.0056801448,0.035230923,0.011016676,-0.07068624,0.0058659767,0.013947911,-0.013772598,-0.046703413,-0.0010124332,-0.017377036,0.0151610775,-0.0123280175,-0.030013604,-0.020911347,0.008646443,-0.0032871207,0.010511774,0.09699724,-0.036184628,0.01583428,-0.001204401,-0.0072299126,-0.01758741,-0.027993998,0.042551998,0.0009537033,0.0126295565,-0.03178076,0.019663118,0.03999944,-0.032397863,0.024642011,0.023155356,-0.02891965,0.0065321666,0.0108834375,-0.023632208,0.035707776,-0.013302758,-0.019536894,0.002086226,0.014614101,-0.03750298,-0.007243938,0.013218609,0.0051997867,-0.008674493,0.023534032,-0.017082509,0.005939608,0.004074277,-0.008344904,-0.0054627564,0.02424931,-0.0288916,0.00064296083,-0.020644872,-0.0015944727,0.003635994,-0.039326236,0.019957645,0.011465478,0.009158357,-0.03736273,-0.053295184,0.0059571397,-0.0070896624,0.022734605,0.017292885,0.000916011,-0.024599936,0.00041877918,-0.0076436517,-0.0133518465,0.025595713,-0.0050595365,-0.021177823,-0.021542475,0.044796005,0.017082509,-0.027909847,0.05450134,0.033407666,-0.004481003,-0.010708124,0.050209675,0.027839722,-0.024950562,-0.0066548856,-0.010231273,-0.0030679794,-0.012692669,0.016156856,-0.030434355,-0.012846945,0.02283278,0.036745626,-0.008457105,0.018232564,0.030686807,0.03391257,-0.04673146,0.014894602,-0.012615532,-0.006809161,0.0005785333,-0.0033274428,-0.0060272645,0.008309841,-0.019592993,0.011206014,-0.0035869062,0.016269056,-0.010294386,0.0027085876,-0.006044796,-0.010659037,0.010652024,0.032874715,-0.009579108,0.022622403,-0.035595573,0.009158357,-0.035623625,-0.00572222,0.004628266,-0.002393024,-0.011381327,-0.019368593,0.020392422,0.025048736,0.014852527,-0.011507552,0.009424833,-0.027615322,-0.033632066,0.00059212005,-0.039298188,0.03189296,0.021065623,-0.02716652,-0.000942308,0.0059325956,0.053351287,-0.0006797766,-0.015090953,0.022145553,-0.00794519,0.020490596,0.02019607,-0.017292885,-0.01903199,0.019550918,-0.012608519,0.0021581044,-0.044964306,0.002126548,-0.0013630594,0.014165299,-0.026409166,0.011935316,-0.008863831,0.01866734,0.021121724,-0.005455744,-0.01586233,0.009116282,-0.0051997867,0.011837142,-0.010855388,0.010736175,0.024095034,-0.008436067,0.00462476,-0.0064655473,-0.00064559054,-0.01716666,-0.03466992,-0.019508842,-0.014712276,0.0074402886,0.019410668,0.01291707,-0.038765233,-0.0073351003,0.0059220768,-0.029564803,-0.04089704,-0.007009018,0.000040842475,0.0096772835,-0.020981472,-0.0035220403,-0.008604367,0.008029341,-0.04611436,-0.024796287,-0.00930562,0.014684226,-0.013211596,-0.0145580005,-0.016465407,0.012769807,-0.009263544,-0.015217178,-0.004077783,-0.0005553043,0.024571886,-0.0013130952,-0.02891965,-0.01294512,-0.028709276,-0.009158357,-0.007713777,0.05206098,0.033435717,0.020574747,-0.020658897,0.018625265,-0.026282942,-0.009200432,0.0048316293,-0.011255101,-0.020602796,0.00052593934,0.018625265,0.008898893,-0.00855528,0.013120433,0.009452883,0.012482293,0.0074262633,0.029368453,0.014614101,0.0018828628,-0.01569403,0.008134528,-0.025764015,0.0006942399,0.0034659402,-0.016717859,-0.026900044,0.016437357,0.026633568,-0.019046016,0.03444552,0.009340682,0.022608379,0.022341903,-0.022468127,-0.03503457,-0.003948051,-0.025343264,0.010918501,-0.009880647,-0.0004707157,0.010680075,0.02028022,0.022748629,-0.012292955,0.00719485,-0.03741883,0.010385549,0.009186407,-0.03511872,-0.065244526,0.0133518465,-0.016507482,-0.0054522376,0.0027909847,-0.0026296966,0.025118863,-0.013618322,0.0031573891,-0.033491816,0.023393782,-0.009053169,-0.027418971,-0.017419111,-0.012706694,-0.022398002,-0.0013288733,-0.028681224,-0.027657395,0.007236925,0.028288523,-0.009487946,-0.042159297,-0.0028681224,-0.022902904,0.009663259,0.025932316,-0.0019722725,0.015427554,0.025427414,0.00097123464,-0.033660118,-0.012054529,0.005536388,-0.022033352,0.0023474426,0.01758741,0.0039936327,-0.026423192,-0.013891811,-0.003117067,0.003422112,-0.013716497,0.028274499,-0.036380976,-0.019186266,-0.006272703,-0.006647873,-0.017797787,-0.04030799,-0.01680201,-0.013183546,-0.008450092,-0.0033905555,0.026016466,0.009067194,0.012384118,-0.016241007,0.00067320233,-0.029396502,0.021037573,0.04089704,0.0033064052,0.01755936,0.01011206,0.007531451,0.0068231863,0.03534312,0.030967308,0.009018106,-0.00032235697,-0.0043758154,0.0014130237,0.0436179,-0.022734605,0.033519868,-0.0014235425,0.00071571575,-0.011086801,-0.0109395385,0.05455744,0.0018407876,-0.0215004,-0.0033940617,-0.009565083,0.014004011,0.022930956,0.027671421,-0.002407049,0.020953422,-0.0051191426,-0.025483513,-0.062495615,0.02478226,-0.0042110207,-0.048105918,0.030322155,0.022398002,0.0014489628,0.03208931,-0.009873634,-0.063898124,0.0065812543,-0.020560721,-0.024305409,-0.028400723,0.0034624338,0.0017417357,0.01575013,-0.010189198,0.025988415,0.0058589643,0.023477932,-0.023393782,-0.0123280175,0.00033813517,-0.01141639,0.0022860828,0.0013472813,-0.00087744213,-0.020897323,0.024066983,-0.0027646876,0.013506122,-0.0013937393,-0.011872204,-0.0043652966,0.023800507,-0.02611464,-0.011802078,-0.0008200271,0.0012114135,0.0115426155,0.036128525,-0.028975751,-0.010897463,0.0029662978,-0.015287303,0.011928304,0.022987055,-0.003839357]},{"id":"interface-GatewayFavoriteMemeUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeUpdateDispatchData\nDescription: FAVORITE_MEME_UPDATE — favorite meme/media updated","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeUpdateDispatchData"},"embedding":[0.025774302,-0.008442818,-0.046255037,0.039829154,-0.0042497166,-0.005718187,0.009461901,-0.0109834485,-0.0020080886,0.0046814117,0.004911413,-0.013941619,-0.04302794,0.020254271,0.006181728,-0.016248709,-0.022433976,0.022674592,-0.0052581844,0.050133213,0.0018807031,0.010353599,0.034280814,0.0160364,0.014005312,0.0073388116,-0.035866052,0.012080378,0.025009992,-0.007494505,0.01442993,-0.026043227,0.024981683,-0.023438904,0.0055731093,0.054181237,-0.030827256,-0.024712758,-0.03156326,0.011754837,-0.007685583,-0.039800845,0.0076006595,0.024698604,-0.07790322,-0.004646027,-0.03946115,-0.004897259,-0.012972075,0.01827272,-0.013531155,0.00089258206,-0.0114646815,0.011875145,0.04515103,-0.0239626,0.01309946,-0.006344498,0.000019102274,0.015555167,0.0008116393,-0.02645369,0.0007943892,-0.041244548,-0.01244838,0.0024344756,-0.059616346,0.022504745,0.04727412,0.0075440435,0.02846355,0.0082446635,-0.05293569,-0.008145586,-0.006291421,-0.0114646815,0.0029617094,0.010403137,0.05030306,-0.0767709,0.0038923302,0.05570986,-0.05270923,-0.06725947,-0.030119559,0.013835465,-0.06284344,-0.053020615,-0.02796816,0.014536084,-0.015597628,0.04727412,-0.052539382,-0.008258817,-0.04925567,-0.039432842,0.002305321,-0.0022363206,0.016418556,0.048236586,0.027939854,-0.06352283,-0.06969394,-0.036800213,0.049935058,-0.045603957,-0.006489576,0.0017267792,-0.05033137,0.0011898145,-0.050076596,-0.025717687,-0.013849619,0.028010624,0.0071017332,-0.0048477203,0.057408333,-0.0151730105,0.009744979,0.0036092517,-0.03881007,0.011174526,0.036885135,-0.0468495,0.003722483,-0.012837613,0.049567055,0.007961584,-0.05202984,-0.016163785,0.03631898,-0.020296732,0.06352283,-0.014245928,-0.013141922,0.013977004,-0.006174651,-0.0048654126,-0.02832201,0.02799647,0.014790854,-0.026142305,0.024854297,0.0013410847,-0.015470243,0.00848528,-0.041584242,-0.010013904,0.04319779,-0.027784161,-0.044726413,0.05593632,0.012568688,-0.009957288,-0.015894862,-0.02493922,-0.012929613,-0.034960203,-0.035073433,-0.021952743,-0.011224065,-0.06595731,-0.055596627,0.0047911047,-0.01214407,0.008945283,-0.013163153,-0.018782262,-0.045207646,-0.032270957,0.039008226,-0.046821192,-0.04424518,-0.029213708,0.0040975623,-0.03815899,-0.01827272,-0.031082027,-0.035186663,0.024726912,0.051237218,0.010424368,-0.038243912,-0.034422353,-0.010615446,-0.02580261,0.02165551,0.062164053,0.011846838,-0.042801477,-0.028958937,0.03235588,0.0252223,-0.0062666517,-0.00073556195,-0.03535651,0.028562626,-0.018315183,0.03801745,-0.031506643,-0.019504113,0.028081393,0.051378757,-0.0029617094,-0.026680155,-0.016078861,-0.013481616,0.026680155,-0.011436374,0.01704133,0.065844074,0.021768741,0.029581709,-0.022971826,-0.03699837,-0.0014773163,-0.031082027,0.017607486,-0.03830053,0.022476438,-0.00057986873,0.053105537,0.049708594,-0.016446864,-0.0017418178,0.010318213,-0.023325672,-0.018003797,-0.04370733,0.015413628,-0.007243273,-0.0041577164,-0.007904969,-0.061031736,-0.013693925,-0.0107711395,0.03159157,-0.025307223,0.041782394,0.04965198,0.0027989394,-0.0011553144,0.0013950465,0.015300396,-0.032044493,0.008902821,-0.0006758501,-0.010948063,0.004858336,0.044018716,0.055540014,0.037790988,0.02309921,-0.048632897,0.013297616,-0.05452093,-0.008138509,0.014061928,0.04911413,0.027557697,0.023212442,-0.0095326705,-0.029128784,0.017211176,0.0009297361,0.015625937,0.0049255667,0.026538614,-0.018470876,0.05171845,0.019362573,0.0016047016,0.039772537,0.04498118,-0.010622523,0.008067739,0.029242015,0.03408266,0.01244838,0.010311137,-0.05531355,-0.048293203,0.009660056,0.02468445,-0.002694554,0.0068894243,0.04778366,0.025293069,0.020409964,0.013255154,-0.07750691,0.006857578,0.031761415,-0.055653244,0.022589669,0.047727045,-0.02608569,-0.022023512,0.021853665,0.03764945,0.048264895,-0.07184534,-0.03946115,-0.00021894358,0.027359543,0.0026910156,0.030742332,-0.0035137127,0.013049922,0.012221917,-0.018470876,-0.04806674,-0.0045327954,-0.009744979,-0.053303692,0.0073812734,0.049736902,0.017395178,0.015866553,-0.005580186,0.025774302,-0.015144703,0.052199688,-0.030685715,0.026368767,-0.042688247,-0.009716672,-0.053048924,0.00091735146,0.014564392,0.036800213,0.016050555,-0.0044372566,0.0023442444,0.05967296,0.015597628,-0.03750791,0.024019215,-0.000037568727,0.041018084,-0.004207255,-0.037281446,-0.012335149,-0.03895161,0.006337421,-0.02489676,-0.015668398,0.03646052,-0.022207513,0.0033880966,-0.0120025305,0.022462284,-0.0054492624,-0.03787591,-0.016135478,-0.065391146,0.013609001,-0.005109568,-0.019560728,0.036517136,-0.032497417,-0.013283461,0.016885636,0.035299897,-0.008817897,-0.026397076,-0.024472142,0.009921904,0.042263627,0.0068611167,-0.013559463,0.0024787067,-0.019942885,0.00057500333,-0.02587338,0.008980667,-0.017140407,-0.043254405,0.0014490084,-0.0030537099,0.029213708,0.027515236,0.014422853,0.006638192,0.041046392,0.0029776327,-0.007841276,-0.0063763447,-0.08226263,0.019192725,0.038894992,-0.006305575,-0.024203217,-0.0435941,-0.06963733,0.053671695,0.014033619,0.033686347,-0.008931128,0.01808872,0.02612815,0.0145785455,-0.007091118,0.004808797,-0.042546708,0.037819296,0.033997733,0.053501848,0.052964,-0.012533303,0.043990407,-0.02356629,0.018725647,0.022179205,-0.01102591,0.0017497793,-0.0022858593,-0.03578113,-0.033346653,0.03116695,-0.004585873,-0.0036977136,0.0016798943,0.041103005,0.030968795,-0.022108436,0.039999,0.004815874,0.042320244,-0.0601825,-0.05876711,0.0008081008,0.0158524,0.025859226,0.069750555,-0.02846355,-0.000051777944,-0.0049751056,-0.011379758,-0.011620374,-0.056842174,0.009921904,0.026397076,0.019518267,-0.027203849,-0.0005400608,-0.015286243,0.020891197,-0.007699737,-0.030006327,-0.025675226,-0.015767476,-0.056445863,0.0092779,-0.03447897,-0.017819796,0.010679139,0.04925567,0.0041435626,-0.03827222,0.018711492,0.02158474,-0.009447747,0.018683186,-0.01212284,-0.020225963,-0.003941869,-0.0006431191,0.009426516,-0.012115763,-0.00056836865,0.0038074066,0.011641606,0.055766474,-0.020452427,-0.063013285,-0.010827755,-0.015371166,0.04427349,0.027472774,-0.015654244,0.024259832,0.018343491,-0.048746128,-0.0020947813,0.066919774,0.044075333,-0.012214839,0.03391281,-0.011004679,-0.007820046,0.028817397,-0.0020505504,-0.017565025,0.0014888163,-0.015102241,-0.0038003298,-0.07705399,0.010148366,-0.05239784,-0.0047521815,-0.019249342,-0.02983648,0.012228994,0.034394044,0.0023070902,0.028364472,-0.0035349436,-0.028421087,-0.028336164,0.01048806,-0.00090275524,-0.026467845,-0.005601417,-0.005537724,-0.0016887406,-0.014663469,0.025080761,0.00082712015,0.0291854,-0.0053572617,0.024415527,0.019447496,0.010020981,-0.0022876286,-0.0022310128,0.017989643,-0.09103806,-0.0068045007,-0.029355247,0.016998867,-0.0053997235,-0.00029413632,0.027104773,-0.0049432595,-0.013241,-0.0016860866,-0.032950345,0.021782896,0.0021797048,0.006616961,-0.011429297,0.009030206,0.018527491,0.0021354738,-0.0008952359,-0.019985346,0.0009244284,0.012512072,-0.05757818,0.020678889,-0.025632763,0.029270323,0.02580261,0.027175542,0.035554666,-0.011804376,-0.03337496,0.015357012,0.018117027,0.027331235,-0.038894992,-0.009362823,-0.00008177211,-0.035979286,0.008308356,0.01697056,0.006011881,-0.03708329,-0.026142305,-0.010601292,-0.0021142429,0.004412487,0.014776701,0.0030147866,0.02118843,0.03708329,0.03654544,0.018952109,0.004090485,-0.016192093,-0.029751556,-0.011875145,0.009575132,-0.017395178,0.015640091,-0.009681286,-0.024670297,0.002430937,0.0067514237,-0.054209545,0.007862507,0.019702267,-0.007869584,0.011811453,-0.0029882481,-0.029326938,-0.0030696332,-0.027826622,-0.003025402,-0.004355871,-0.012986229,-0.026156459,-0.017239485,0.037847605,0.0742232,-0.03470543,-0.0053926464,0.0032483265,-0.00043877176,-0.027699238,-0.003561482,-0.040989775,-0.047359042,-0.049538746,-0.008011123,-0.0076148133,-0.0032111723,-0.00028705935,-0.0320728,-0.039319612,-0.023523828,-0.0149040865,-0.008626819,-0.030006327,0.04789689,-0.014161005,-0.023283212,-0.013679772,-0.03195957,0.029072167,-0.04132947,-0.018697338,-0.021782896,-0.029270323,-0.02634046,0.035186663,-0.009893595,0.0030714024,-0.041697472,0.043395944,0.017182868,0.002848478,0.03195957,0.042886402,0.00053608004,0.009730825,0.0025512455,0.011726529,0.01978719,-0.029213708,-0.03521497,0.013835465,0.010848986,0.021613048,-0.00920713,-0.01876811,0.051010758,-0.03447897,0.0005095414,-0.0011393912,0.03470543,0.019362573,0.021429047,-0.022943517,0.047557198,0.016744096,-0.015767476,0.014281313,0.020707197,0.024486296,0.021471508,0.08498018,0.008449895,-0.017522562,-0.04868951,0.018315183,-0.04291471,0.013892081,0.013778849,0.026297998,0.013814233,-0.029326938,0.013580694,0.0518883,-0.03275219,0.01317023,0.009497286,-0.014819163,0.010686216,-0.019305957,0.007009733,0.009072668,-0.03524328,0.0077138906,-0.003641098,0.014196389,0.020438273,-0.013977004,-0.012370533,0.012547458,0.013248077,-0.018527491,0.0034694816,0.015512705,-0.04056516,0.007002656,-0.01365854,0.03286542,0.008924051,0.016545942,-0.020098578,-0.025109068,0.037790988,0.0011075449,-0.0068469625,-0.016376095,0.014253005,0.029949712,0.0057748025,0.009582209,0.013233922,-0.023269057,0.0011906992,-0.0020823968,-0.000080168735,0.03445066,0.015965631,-0.019263497,0.0015109318,-0.034110967,0.010608369,-0.007324658,0.026920771,-0.061428048,0.021613048,-0.0019850885,-0.025731841,-0.014875778,0.00013446232,0.01708379,-0.0011579682,-0.016857328,-0.014776701,0.002855555,0.02475522,0.010056366,-0.00622419,-0.049482133,0.010764062,-0.056955405,0.012420072,-0.019107802,0.033686347,-0.031733107,0.010028058,0.03283711,-0.009660056,0.00706281,0.053643387,0.021273354,0.043367635,0.031251874,0.020565657,-0.035979286,-0.020141039,-0.035441436,-0.02104689,0.009256669,0.00094300543,0.0107145235,0.0070875795,0.0057429564,-0.0006068497,0.032695573,-0.012512072,0.0031970185,-0.018371798,-0.030544177,0.0051767994,-0.02039581,-0.0037684834,0.015413628,-0.07303427,-0.012653612,0.014493622,0.012405918,-0.01636194,-0.022419821,0.0027865546,-0.01380008,0.0025777842,0.035526358,-0.060692042,0.0071194256,0.0073175807,0.04435841,-0.09409531,-0.008308356,0.079714924,-0.013446231,0.0199995,-0.021542279,0.016602557,0.036488827,0.030176174,-0.07858261,0.025604455,-0.0061109583,-0.008265894,-0.044047024,0.019589037,-0.008591434,0.00079306227,-0.0045115645,0.014139774,-0.017112099,-0.046934426,-0.0018577031,-0.008074816,0.04500949,0.032412495,0.008563126,-0.036630366,0.009306207,0.008393279,-0.02771339,0.017649949,-0.029581709,0.013863772,0.00051573373,0.01125945,0.011938838,-0.0078058913,0.024925068,0.036913443,-0.03646052,0.0069248094,-0.021754587,-0.008959437,-0.014069004,-0.026694309,-0.0050777216,-0.029326938,0.010417291,-0.03575282,-0.033997733,0.0036198671,-0.026184767,0.014960702,-0.006181728,-0.0023017826,0.010212059,0.003158095,0.009072668,0.017536717,-0.022405667,0.005849111,0.008329587,0.042801477,-0.036064208,0.040593464,0.0038675608,0.014458237,0.008994821,0.021995204,0.01794718,0.0019178572,0.027104773,0.017451793,0.022646286,-0.011103757,0.024160756,0.002929863,-0.019221034,0.010176674,0.047981817,0.00559434,0.005088337,0.006769116,0.007650198,0.016305326,-0.012073301,0.024075832,-0.017154561,0.047104273,-0.0043700254,0.028845705,-0.01639025,0.009001899,0.015243781,-0.014444084,0.01823026,0.0015312781,-0.009525593,-0.0009810441,-0.012823459,0.029468479,-0.037281446,-0.023905985,-0.037281446,-0.032582343,0.0013578924,-0.014507776,0.0160364,0.023863522,0.017310254,0.011337296,0.012016685,0.001820549,-0.001990396,-0.0044691027,0.005725264,-0.010891448,0.025774302,0.029610017,0.006708962,-0.0017391639,0.007749276,-0.025717687,-0.0073175807,-0.0074520432,-0.014245928,0.0143662365,0.01309946,0.01435916,0.01848503,0.01263238,0.009391131,-0.020211808,0.009971443,-0.00010703908,-0.020565657,-0.000059103706,0.012710228,-0.014776701,0.009016052,-0.0034517893,0.028378626,-0.01722533,0.01888134,0.034224197,0.0023884752,-0.015187165,-0.005389108,0.0026450153,-0.022801979,0.026765078,-0.057266794,0.0049857213,-0.0335165,0.039008226,0.020197656,-0.02421737,0.014805009,-0.0013667387,0.013233922,0.0052794153,0.0079262,-0.024627835,-0.012816382,-0.0036764827,-0.016333632,-0.042433474,0.014663469,-0.019022878,0.019886268,0.005403262,0.0068752705,0.03156326,0.022943517,-0.007416658,0.04594365,0.030855563,-0.0018258567,0.015073934,-0.013304693,-0.022405667,0.029326938,0.001321623,-0.0077634295,0.043339327,-0.0024132447,0.049623672,-0.027444467,-0.019504113,-0.005484647,-0.0151730105,0.03538482,-0.0087258965,0.025745995,-0.002915709,-0.038526993,-0.023297366,0.04795351,-0.028675858,-0.018711492,0.04843474,0.027076464,-0.008067739,-0.032044493,-0.007020348,0.06244713,-0.025109068,0.0017320869,0.012412995,0.035950977,-0.03275219,0.02375029,-0.03510174,-0.011124987,-0.03275219,0.003156326,-0.01228561,-0.018357644,0.0034093275,-0.01445116,0.02904386,-0.005226338,0.002892709,0.059333265,-0.024741067,0.018258568,-0.04529257,-0.00468495,-0.04132947,0.0092779,-0.014302544,-0.0063975756,-0.03535651,-0.0017957796,0.015866553,0.005070645,0.028123856,0.004656642,0.027104773,-0.0021390123,-0.022632131,-0.0034305584,-0.0050387983,-0.031902954,0.012625304,0.017522562,0.0047238735,0.031987876,0.01783395,0.009780364,0.0086197425,0.040423617,-0.015838245,0.013545309,0.002929863,-0.008478203,-0.013439154,0.01762164,-0.003163403,0.00018787128,0.024316449,-0.005969419,0.00878959,-0.02007027,-0.00014850567,0.006482499,-0.041244548,0.012214839,-0.00085233187,0.017664103,0.047330733,0.04265994,0.0025813226,-0.0004874259,-0.002613169,0.029949712,-0.01484747,0.01498901,-0.0051874146,0.022617977,-0.0030537099,-0.013389616,0.0011040064,-0.027175542,0.003545559,-0.015739167,0.011669913,-0.02972325,0.01142222,0.016248709,-0.014019466,0.029610017,0.015696706,-0.03869684,0.00895236,-0.008577281,-0.030770639,-0.0044726413,-0.003515482,-0.0414427,0.013927465,0.030487562,-0.010077597,-0.0077209678,0.016163785,0.009398208,0.015725015,0.024981683,0.058540646,0.005144953,-0.020579811,-0.025193991,0.012066224,0.016333632,0.0036517135,0.028123856,-0.002768862,-0.028222932,0.004412487,0.023000132,0.023863522,0.015866553,-0.0063091135,-0.006871732,-0.0064506526,0.006241882,0.01941919,0.01815949,0.010551753,-0.005520032,0.0057535716,-0.011408066,-0.0008717935,-0.00046840656,0.008938205,0.008011123,-0.04373564,0.010148366,0.029326938,-0.0151730105,-0.036064208,0.00825174,-0.022971826,0.024344755,-0.022094281,-0.031251874,-0.008152663,0.018385952,-0.008853282,-0.00072361954,0.09652979,-0.02424568,0.01657425,-0.0018807031,0.007030964,-0.02237736,-0.028590934,0.04750058,0.00440541,-0.008004046,-0.015696706,0.022547208,0.025646918,-0.022858594,0.024868451,0.01582409,-0.023622906,-0.0028573242,0.0096388245,-0.028817397,0.03827222,-0.01317023,-0.012915459,0.01263238,0.01046683,-0.037054982,-0.018541645,-0.013630233,0.0056544943,0.007253888,0.024472142,-0.022065973,0.018569954,0.016729943,0.006298498,-0.004596488,0.00011019054,-0.025590302,0.011768991,-0.012462534,0.0065108067,0.0018055105,-0.041159622,0.0029847096,-0.004486795,0.0003494251,-0.0021531663,-0.04195224,-0.0032660188,-0.0039772536,0.022023512,-0.00841451,0.0059729577,-0.020480733,0.015753321,-0.014507776,-0.019065341,0.04486795,-0.0065957303,-0.033573117,-0.010615446,0.020905351,0.004295717,-0.0371116,0.047472276,0.03513005,0.016928097,-0.013064075,0.034790356,0.040055618,-0.014182236,-0.010905601,-0.013481616,-0.0042921784,0.008803743,0.01733856,-0.023523828,-0.014295467,0.031987876,0.03405435,-0.0038604839,0.031053718,0.011209911,0.050699368,-0.05769141,0.0227029,0.007947431,-0.0068080393,-0.010735754,0.011705298,-0.0036800213,0.009688363,-0.018315183,0.032157723,-0.006857578,0.009256669,-0.004727412,0.010565907,-0.01664502,-0.0076926597,0.00094212085,0.025462916,-0.0017320869,0.032384187,-0.026878309,0.015583475,-0.015923169,-0.012193609,0.0054103388,-0.013969927,-0.014458237,-0.011945915,0.023736138,0.011231142,0.021613048,-0.008145586,0.0049467976,-0.045773804,-0.025491225,-0.0041647935,-0.051859993,0.037932526,0.0051378757,-0.020494888,-0.008308356,0.019617343,0.045887034,-0.006181728,-0.028293703,0.013934542,-0.012349302,0.011719452,0.023198288,-0.033091884,-0.0055837245,0.021598894,-0.019178573,0.0052900305,-0.045603957,0.025774302,-0.005505878,0.013913311,-0.022533054,0.0172961,-0.015045625,0.008909898,0.015116395,-0.0028820937,-0.016956406,0.0036977136,0.01023329,0.010459753,-0.010346522,-0.008541895,0.03365804,-0.00077050447,0.0005922534,-0.01978719,0.0038923302,0.001398585,-0.023905985,-0.026227228,-0.026595231,0.0057429564,0.007607736,0.010148366,-0.027755853,-0.0049361824,-0.0024415525,-0.033629734,-0.016545942,-0.024344755,-0.005941111,0.0008280048,-0.03456389,-0.008676358,-0.019037032,0.017097944,-0.037932526,-0.022037666,-0.010013904,0.009624671,-0.017211176,0.0029121707,-0.010077597,0.0018223182,0.00008431539,-0.019546574,0.0033951735,-0.015795784,0.017126253,-0.012412995,-0.033856194,-0.017734872,-0.03801745,-0.021061044,-0.020777967,0.030515868,0.027175542,0.021613048,-0.02277367,0.026680155,-0.023821061,-0.005849111,0.016418556,-0.0010916217,-0.009497286,0.020551503,0.016531788,0.010105904,0.009256669,0.011967146,0.004603565,0.0015171241,0.01953242,0.031931262,0.009362823,0.015003163,0.0070061944,0.0070274253,-0.017749026,-0.0007559082,0.010877294,-0.028562626,-0.02885986,0.036488827,0.048859358,-0.021174276,0.021358278,-0.0033350193,0.028435241,0.014189313,-0.017126253,-0.011811453,-0.004030331,-0.024967529,0.005587263,0.008796666,0.013545309,0.01014129,-0.0037472525,0.025731841,-0.025561994,-0.0072397343,-0.036743596,0.017607486,0.012016685,-0.022306591,-0.05030306,0.010006827,-0.020254271,-0.0038357144,-0.009709595,-0.009001899,0.00064931146,0.0058349567,0.022533054,-0.014253005,0.019447496,0.009645902,-0.00045204107,-0.016248709,-0.018046258,-0.012278533,0.0087825125,-0.01888134,-0.035611283,-0.0048335665,0.013028691,-0.0033049423,-0.028237086,0.0017542024,-0.023226596,0.010417291,0.023523828,-0.0107145235,0.021032738,0.009242515,0.006072035,-0.020268425,-0.027048156,0.010565907,-0.0009934289,-0.004486795,0.024925068,-0.014274237,-0.03447897,0.010197905,-0.0077563524,-0.00018853474,-0.012596996,0.03535651,-0.021131814,-0.046906117,-0.025448762,0.0067655775,-0.017112099,-0.036517136,-0.022080127,-0.0023106288,-0.01827272,-0.009773287,0.017324409,0.015611783,0.020197656,0.0031138642,0.0046354113,-0.0066240383,0.008492357,0.034422353,0.009652979,0.018131182,0.021273354,0.0047911047,0.008683435,0.03524328,0.023410596,0.012929613,0.01708379,0.007055733,0.008272971,0.03116695,-0.010537599,0.020947814,-0.003303173,0.011903454,0.004515103,-0.012519149,0.057096947,-0.002011627,-0.017069638,0.00463895,0.0022717055,0.0020540887,0.036262363,0.017494256,-0.0016126632,0.037168216,-0.0035225588,-0.041046392,-0.049199052,0.023948446,-0.029242015,-0.058427416,0.025448762,0.016843174,-0.0038817148,0.004787566,-0.004447872,-0.05321877,0.014189313,-0.012483764,-0.02587338,-0.014458237,0.0073671197,-0.0024167832,0.001009352,0.009016052,0.011450528,-0.003634021,0.014408698,-0.0425184,-0.02205182,0.019702267,-0.011054218,0.020254271,-0.00866928,-0.022462284,0.005576648,0.012972075,0.0030696332,0.030176174,-0.008202202,0.002650323,0.004787566,0.014932394,-0.02738785,-0.014380391,0.0051272605,-0.0066558844,0.008754204,0.025293069,-0.051435374,0.013601924,0.0052829534,-0.018937955,0.00372956,0.014274237,0.018357644]},{"id":"interface-GatewayGuildBanAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildBanAddDispatchData\nDescription: GUILD_BAN_ADD — guild_id, user, reason?\nProperties: guild_id: string, reason: string | null, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildBanAddDispatchData"},"embedding":[-0.017439332,-0.0014969965,0.017342849,0.032611307,-0.0069286968,-0.0047970223,-0.09035648,-0.002990978,-0.0018723763,-0.036542997,-0.023240382,-0.0059306994,0.0012738792,0.03625355,0.0355058,-0.034299765,-0.038183212,0.043779235,-0.02595397,0.06194219,0.02355395,0.057359237,0.02655699,0.021696651,-0.020973027,0.03024747,0.020261465,0.008725696,-0.0069467877,-0.023373045,0.041608363,-0.023421288,0.009413138,-0.01219306,-0.0061990432,0.01894688,0.005710597,0.0043146065,0.006621157,-0.01982729,-0.0091417795,-0.078730255,0.011403103,-0.0043899836,-0.054561228,0.027352976,-0.01888658,-0.008176948,-0.007459354,0.030705767,-0.0037447526,-0.011427225,0.0024467527,0.061218567,0.048627514,-0.013881515,-0.013700609,0.022167007,-0.028800223,0.012434267,-0.022347912,-0.01888658,-0.01284432,-0.017125761,-0.011469436,-0.022733845,-0.042211384,0.036470633,0.0390998,0.040498808,0.015220218,-0.023035355,0.010667419,0.053017497,-0.030126866,0.03871387,-0.0059306994,-0.022359973,-0.017210184,-0.021346899,-0.011041292,0.044816427,-0.06507789,-0.059433628,0.037990246,-0.00066558307,-0.045950104,-0.011807127,0.0020743879,-0.016329775,-0.009208112,0.021178054,-0.0469873,0.016329775,0.003904553,-0.025592158,0.029668571,0.005981956,-0.037652552,0.047300868,0.06136329,-0.047445595,-0.018862458,-0.05774517,0.020683577,-0.03456509,0.003177914,0.041680727,-0.0670558,-0.013471461,-0.04368275,0.042910885,-0.015678514,-0.002422632,-0.04607071,-0.013616186,0.04484055,-0.008641273,0.0032593217,-0.002642734,-0.038352057,0.0066573382,0.05253508,-0.035939977,-0.023011234,0.011982002,-0.016956916,-0.04189781,-0.04889284,-0.017801143,0.05620144,-0.010329728,0.025543917,0.022142885,-0.040715896,-0.017451392,-0.019984074,-0.0016522742,-0.035795253,-0.031911805,0.0061508017,-0.011825217,0.03360026,0.03323845,-0.08606298,0.0057950197,-0.03849678,0.026412265,0.016112687,0.016884552,-0.10236863,0.067827664,0.0048784297,-0.039509855,0.034637455,-0.023264501,-0.026098695,-0.014629259,-0.017885566,-0.02995802,0.033769105,-0.06715228,0.030657524,-0.010420182,-0.021491624,0.0140383,-0.0015090569,-0.01618505,-0.04426165,0.0008525192,-0.0031688688,-0.0030256517,-0.062135156,0.00093015796,-0.0048633544,0.0006147033,-0.042211384,-0.010022189,-0.029089672,-0.048941083,-0.015340823,-0.010745812,-0.029716814,-0.10188622,-0.04247671,-0.0070673916,-0.015714696,0.010872446,0.006081454,-0.039461613,0.022480577,0.00824328,0.05065366,0.038520902,0.028559016,-0.035867617,0.016040325,-0.04669785,0.03145351,-0.014134783,0.011982002,-0.032177135,0.03350378,0.0023125808,-0.024036366,-0.008611122,0.0286555,-0.0069286968,0.024337877,0.0027211267,-0.00823122,-0.03292488,-0.034420367,0.008936753,-0.02438612,0.036229428,-0.043730993,0.00335882,0.015063433,-0.020985087,-0.01830768,0.031188183,0.008472428,-0.05094311,-0.0036542998,-0.0028100722,0.0310917,0.015618212,-0.023481589,0.015702635,-0.0038050546,0.0037477678,-0.031236423,-0.029740933,0.014436292,0.0065487945,0.025399191,0.0029924854,0.01189758,0.010836265,-0.0021090617,-0.022625301,0.029813297,0.008864391,0.0073749316,-0.004845264,0.043152094,-0.014219206,-0.0066392473,0.060350217,0.036904808,0.05031597,0.017427271,-0.012301603,-0.019574022,-0.018995123,0.01343528,-0.00040364635,0.009340776,0.02687056,0.039244525,-0.032514825,0.0027075587,0.024651447,-0.012434267,-0.0032774124,0.05432002,0.014689561,-0.01799411,0.014581017,0.02752182,-0.0074412636,0.04271792,-0.039509855,-0.0013786539,0.012868442,0.033069603,0.03610882,-0.014581017,-0.021274537,-0.044092804,0.01923633,0.023771038,0.0641613,-0.009949826,0.045057636,0.013905635,0.01617299,0.034155037,0.051232558,-0.05374112,0.021937858,0.017318727,-0.000545356,0.028004237,0.0068503045,0.034058556,-0.017535815,0.039003316,0.04180133,-0.008701575,0.008991024,-0.017535815,-0.068165354,0.040474687,-0.01862125,0.030440437,0.008369914,-0.00035257812,0.00015047227,0.015075494,-0.025447434,-0.043393303,0.017596116,-0.019368995,-0.0070915124,0.015955903,0.02043031,-0.026894681,0.035481684,0.0048060673,0.01675189,0.00046734032,-0.037459586,0.002532683,-0.055767268,0.015787058,-0.02899319,-0.0023804205,0.02995802,0.015630271,-0.03244246,-0.012566932,0.0012120696,0.048965205,0.011975972,-0.03755607,0.06319647,0.034010313,0.0017457422,-0.003750783,-0.003940734,-0.03837618,-0.030705767,0.032177135,-0.037314862,-0.009895554,0.034516852,-0.010299577,0.016064446,-0.0023909733,0.03668772,-0.023541892,-0.043248575,-0.03297312,-0.06570503,0.01889864,-0.028148962,-0.017077519,0.041680727,-0.0071819653,0.012542811,0.0024467527,0.014231266,0.022142885,-0.003171884,-0.027980117,0.017451392,0.0019130802,-0.0013334274,-0.017246366,-0.013254374,-0.0727483,-0.026749955,-0.016426258,0.0023246412,-0.014834286,0.0027226342,0.036784206,-0.009829222,-0.000296045,0.00825534,0.0366636,-0.003024144,0.021624288,-0.005252302,0.0025281603,0.021407202,-0.028824344,0.004365863,0.05624968,-0.003331684,-0.017728781,-0.029523848,-0.025543917,-0.015835298,0.06449899,0.026315782,0.0072241765,0.015413185,0.032153014,0.005403057,0.0029261534,-0.03784552,-0.029861538,0.049688827,0.01190361,0.016004145,0.037604313,-0.027931875,0.02074388,0.0069106063,0.0408365,0.020032316,0.017849384,-0.040788256,0.0017020232,0.011571949,-0.009310625,0.03970282,0.020044377,0.029234398,0.012639294,-0.008834239,0.016908674,0.006223164,0.019284572,0.0024799188,0.0068864855,-0.027425338,-0.06927491,0.040209357,0.018271498,-0.033117846,0.025736883,-0.006325677,0.029789176,0.027111769,-0.0445511,0.03729074,-0.052583322,-0.022359973,0.004399029,0.033334933,-0.012627234,0.004064353,0.07303775,-0.012566932,0.04119831,-0.005951805,-0.029789176,-0.021696651,-0.0041306852,0.06517438,-0.057021547,0.019634323,-0.031115819,0.044671703,-0.024060488,0.015823238,-0.008333733,0.032466583,-0.016148869,0.031115819,-0.028944949,0.025712762,-0.04368275,0.015774997,-0.0010477469,0.04361039,-0.01343528,-0.0026472567,0.053210463,0.003696511,-0.023264501,-0.012530751,-0.007513626,0.0068563344,0.038593262,0.017945867,0.0055960235,0.056297924,-0.025182106,-0.010709631,0.05253508,0.048989326,0.018778035,0.029499726,-0.015992085,0.0018618235,0.00021539112,0.0056894915,0.020575034,-0.012422207,0.03396207,0.02017704,0.03601234,-0.08094937,0.0043206364,0.034396246,-0.02258912,-0.059433628,-0.002271877,-0.030729886,0.0077427737,-0.012024214,-0.012663415,-0.027352976,-0.022046402,-0.02747358,-0.01616093,-0.022142885,-0.012373965,-0.0353852,-0.057021547,0.03965458,-0.031357028,0.032273617,-0.017475512,0.038183212,-0.008713636,0.018753914,0.003663345,-0.0011246318,-0.014267447,0.005059336,0.0144001115,-0.06445075,0.009750829,-0.0020140859,0.015943842,0.00472466,0.012639294,0.0592889,0.005734718,-0.02350571,-0.017571995,-0.021551926,0.04944762,-0.03965458,-0.011409134,-0.0031236424,0.022432335,-0.0068442742,0.011915671,-0.0074653844,-0.012132757,0.0048663695,-0.007977951,0.0011879489,-0.0008155842,-0.011933761,0.006663368,-0.016583044,-0.010757873,0.014605138,0.021346899,-0.04300737,-0.043224458,-0.029547967,0.022721784,-0.0012271452,0.0069166366,-0.023240382,-0.027955996,0.014906649,-0.0011186016,0.020249404,-0.015811179,-0.0034281672,0.013097589,0.054512985,0.000045980258,0.023903703,0.039871667,0.007417143,0.0065487945,0.043296818,-0.0076583507,-0.020080557,-0.023023294,-0.08717254,-0.005074411,0.0555743,-0.022697663,-0.015461426,0.0003957317,0.0026080604,-0.022384094,0.041921932,-0.041415397,0.0059698955,-0.022697663,-0.0012527736,0.052583322,-0.016884552,-0.0122292405,0.0018904669,-0.0055387365,0.041367155,0.013809152,-0.017186062,-0.016920734,0.004546769,0.032153014,0.006868395,0.039365128,0.031960048,-0.02351777,-0.004881445,0.014737803,0.010209125,-0.02964445,-0.017463451,-0.02073182,-0.022408213,-0.035216354,-0.0042331987,-0.01651068,0.004335712,0.02836605,0.013893575,0.00024158478,0.032949,-0.0061749225,0.059771318,-0.023758978,-0.00472466,0.014243326,-0.038062606,-0.026798198,-0.04358627,-0.029403243,-0.048748117,-0.035192233,-0.031960048,0.023421288,-0.007230207,0.012247331,-0.056056716,0.009714648,-0.0048784297,0.01858507,-0.010968929,0.039461613,-0.033431415,-0.018657431,0.004601041,-0.010438272,0.01220512,-0.031308785,-0.02682232,0.032876637,-0.017379029,0.02839017,-0.0012067932,-0.016534802,0.03876211,-0.0019191104,-0.0069709085,-0.026798198,0.0012927236,0.019899651,0.009931736,0.0067417608,-0.022154946,-0.009859373,0.051232558,0.0068623647,0.01834386,0.029330881,0.0038291754,0.00503823,0.02016498,0.007543777,0.013230253,-0.022347912,-0.02747358,0.013374978,0.019598141,0.029065551,0.027377097,0.00034635948,-0.00518597,0.045322966,0.00885233,0.062328123,-0.006343768,0.01982729,0.008267401,0.008345793,0.023783099,0.04148776,-0.011222198,0.004034202,0.008381975,0.033455536,0.008906602,-0.025133863,-0.021515746,-0.017342849,0.007079452,-0.006777942,-0.01982729,-0.017921748,0.023903703,0.02047855,0.009877464,0.004974913,-0.0066030663,-0.02291475,0.011421194,-0.073954344,0.022323791,0.001692978,0.0069709085,-0.02469969,-0.007784985,0.009961886,0.0047457656,0.015787058,0.02498914,-0.020635337,-0.0022568014,0.026002211,0.01313377,0.01009455,0.0024437376,-0.0040432476,0.010721691,-0.02532683,0.006621157,0.01835592,0.0111618955,-0.02503738,-0.0073146294,0.024012247,0.0069709085,0.005460344,0.00026514026,-0.0027150963,-0.0006437236,-0.024289636,-0.019996135,0.00093015796,0.014713682,0.019019242,-0.00503823,-0.016667467,0.013242314,0.00018100014,0.0074352333,-0.041632485,-0.0238434,-0.011650342,-0.0071819653,0.027666546,0.02413285,-0.02836605,0.052100908,-0.028848466,0.012361905,0.025712762,0.04392396,-0.022757966,-0.0077668945,-0.039268646,-0.020828303,0.028438412,0.0071819653,-0.010046309,-0.0074412636,-0.028727861,0.027835391,0.036494754,-0.03977518,-0.015425245,-0.008617152,-0.0154493665,0.011541798,-0.01893482,0.0019492614,-0.009135749,0.009401078,-0.0056985365,0.015425245,-0.019320752,-0.020490611,-0.027328854,0.018850397,-0.0154855475,0.008309612,-0.03871387,-0.01585942,-0.0032593217,-0.0064281905,-0.0069769383,-0.09209318,0.033769105,0.07955036,0.034878664,-0.0075799585,0.0036181186,0.009756859,0.06686283,-0.04515412,-0.052631564,0.028559016,-0.026484627,-0.02014086,0.023578072,0.03507163,-0.018211197,-0.0032955029,0.0039859605,0.029282639,0.020056438,-0.028004237,0.030150987,-0.015738815,0.021515746,-0.005746778,0.004145761,0.01651068,0.0062412545,0.029451484,0.0010062893,0.052004423,-0.04677021,-0.03977518,-0.0065910057,-0.00855685,0.013049347,-0.00397993,0.0034040464,0.00885233,-0.038038485,-0.0061990432,-0.008659364,-0.01678807,-0.006141756,-0.016534802,0.001602525,0.024313757,0.00885233,-0.017849384,0.037411347,-0.024940897,0.0020894634,0.01864537,-0.010884507,-0.023903703,-0.0055507966,-0.031670596,0.020237343,-0.034637455,-0.0482657,0.02102127,-0.0058432613,-0.007055331,-0.021539865,0.03316609,-0.028944949,-0.0008080465,-0.031525873,0.0028718815,0.0024256469,-0.019694624,0.05036421,0.0034281672,0.02102127,-0.0028462533,0.036518876,-0.011704613,0.026942922,0.0010967422,0.0104141515,0.028317807,0.040185235,-0.008442276,0.009352837,0.01739109,-0.003811085,-0.007863377,0.0102272155,-0.00035276657,-0.0046643578,0.012307633,0.009250323,0.022058463,0.019031303,0.008406095,-0.010540785,-0.0045316936,0.012542811,-0.038930956,-0.008538759,-0.00057060743,-0.021949919,-0.025471555,-0.02015292,-0.014363931,-0.037966125,0.01953784,-0.0039166133,-0.01189758,0.004908581,0.001695993,0.028462533,-0.021153932,-0.0027889663,0.013953877,-0.0033708804,-0.0011344309,-0.004670388,0.008562881,0.009654346,-0.025423313,-0.013061408,0.0012090546,0.0031296725,-0.001983935,0.021262476,0.007857348,-0.011831247,0.004118625,0.02319214,-0.02778715,-0.023143899,-0.022118764,0.005303559,0.009280474,0.027714787,-0.0015829268,0.0171137,-0.0512808,0.0036573147,0.020550914,0.01435187,-0.011083503,-0.016558923,0.038930956,0.0082613705,0.0082251895,-0.03113994,0.0029110778,0.004613101,-0.02286651,-0.041946054,-0.01958608,-0.034275644,0.00733875,0.033190206,-0.03362438,0.026026333,-0.037917882,0.031598236,-0.019296631,0.0045136027,0.006205073,0.009563893,-0.044647582,-0.024844414,-0.00795986,-0.01892276,-0.053548153,-0.028800223,-0.025495674,0.016679527,-0.0044080745,0.009925705,-0.042669676,0.05219739,-0.010468423,-0.061266806,0.0029653497,0.022962993,0.015051373,-0.038279694,-0.015533789,-0.002121122,0.051136076,-0.0062774355,0.014593078,-0.029379122,0.027497701,-0.027883634,0.0056653707,0.03053692,0.059144177,0.0009686005,0.0037718886,-0.024482602,0.018102653,0.025278589,-0.0053216494,-0.023734858,0.0025613264,0.0051618493,-0.015015191,-0.015702635,-0.023964005,0.0053578303,-0.0059457747,0.01036591,-0.029041432,-0.015135796,-0.009479471,0.027256493,0.0076040793,-0.00034221372,0.02255294,0.037990246,-0.020333827,-0.010136762,-0.013194072,-0.031863563,-0.03610882,0.0038141,0.025085622,0.04889284,-0.018235317,0.019803168,-0.06420954,-0.0062653753,-0.032563068,-0.000575507,0.022962993,-0.0244223,-0.0036934959,0.010546816,0.020816242,0.0131096495,-0.010854356,0.025519796,0.024868535,0.029427364,0.0116684325,-0.0037809338,-0.03420328,-0.0059337146,-0.02443436,-0.005523661,0.006627187,0.044816427,-0.013772971,0.034323886,0.022962993,-0.0065548248,0.004239229,-0.027039405,0.028462533,-0.036229428,-0.017632298,0.0299339,-0.004332697,0.01556997,0.018560948,-0.015401125,-0.021539865,-0.00795986,0.023566011,0.016004145,0.0030965065,-0.00035917363,-0.0342274,-0.012174969,0.024554964,0.01373679,0.039003316,-0.009268413,0.0067658816,-0.00016799754,-0.022359973,0.03316609,-0.0042573195,0.030054504,0.0017065459,-0.005975926,-0.021419263,-0.002167856,-0.018693613,-0.043224458,-0.0006128188,-0.019791108,-0.02752182,0.00027418556,0.017379029,0.03823145,-0.0056925067,-0.028028358,-0.009021175,-0.0059578354,-0.017487573,0.011439284,0.019308692,0.021310719,-0.040161114,-0.01618505,-0.036132943,-0.02197404,0.0098895235,0.035626408,0.04240435,0.01805441,-0.015208159,-0.00087965507,0.012952864,-0.037146017,0.023771038,0.020201162,0.006162862,0.017861445,-0.0020954937,-0.02747358,-0.0033769107,-0.015063433,0.019308692,0.010450332,-0.0054452685,0.0118734585,0.018440343,-0.0019115726,-0.011632251,0.0054181325,-0.013905635,-0.017801143,0.045877744,-0.023614254,-0.001739712,-0.009250323,0.0013319199,0.009853343,-0.039196283,0.059337143,0.04404456,0.001572374,-0.021298658,0.017632298,-0.0016145854,-0.00046734032,-0.0015150871,-0.00823122,-0.0013160906,-0.018705674,0.01435187,-0.009756859,0.07438852,-0.02261324,-0.006566885,0.022456456,-0.008568911,0.005155819,-0.0059457747,0.00023630836,-0.00086533336,0.000072597926,-0.011258379,0.006099545,-0.014581017,-0.009455349,0.007917649,-0.014098601,-0.008321673,0.032490704,0.018283559,-0.035819374,-0.0031206273,0.024301697,-0.00056759233,0.012747837,0.005991001,-0.041029464,0.038569145,-0.011421194,0.026798198,0.013616186,0.020357948,0.046456642,0.013194072,0.0093287155,-0.030995216,-0.010100581,0.009437259,-0.023590133,0.005369891,-0.010203094,0.034758057,0.000008167855,0.03635003,0.020237343,-0.022975052,0.008351823,0.008689514,-0.04088474,-0.0049839583,-0.027618304,-0.017487573,0.000491838,0.015461426,-0.027594185,-0.0065367343,0.003572892,0.0041125948,0.052052666,0.003847266,-0.0074111125,-0.034733936,0.0164745,-0.0063075866,-0.010148822,0.024374058,0.0085990615,-0.0244223,-0.02075594,-0.023590133,0.007206086,0.009183991,-0.021913737,0.007911619,0.021455443,0.012856381,0.030995216,0.011837278,-0.047662683,0.0060211523,0.02291475,0.009967917,-0.02655699,0.013893575,0.015135796,-0.046118952,0.031115819,-0.00074812135,0.012759898,-0.00054610975,0.0024799188,0.009533742,-0.013990059,-0.0171137,0.0018949896,-0.0004077921,-0.0058131106,-0.008158857,0.016281534,-0.0045136027,0.0066090967,-0.012735778,0.036567118,0.027232371,0.004709584,0.011553858,0.026991164,0.02286651,-0.0068623647,0.003271382,-0.014375991,-0.020297645,-0.027087647,-0.0128202,-0.008960874,-0.007977951,-0.033431415,0.021009209,-0.03991991,0.006379949,-0.00030791695,0.018536827,0.03849678,0.031260543,0.012675475,-0.030585162,-0.005466374,0.010546816,0.0008487503,0.013567944,0.0062774355,-0.0408365,-0.000012731725,0.03232186,-0.01677601,-0.009865403,0.00092940417,-0.0045708898,-0.006687489,-0.033334933,0.008804088,-0.013941817,0.005764869,0.017740842,0.004212093,-0.0068322136,0.00018750146,0.018283559,-0.009738769,-0.015702635,-0.028462533,0.00030226365,0.006777942,-0.05311398,-0.03789376,0.012578992,-0.007953831,0.03777316,0.0076282,-0.012989045,0.010239275,-0.0050834566,-0.012989045,-0.022999173,-0.026412265,0.030464558,0.0050291847,0.004365863,-0.029330881,-0.012458388,-0.01526846,0.0030754008,-0.0057799444,-0.008164887,0.027208252,0.0029367062,-0.032249495,-0.024289636,0.017632298,-0.017499633,-0.029499726,-0.009298565,-0.04949586,-0.0133146765,0.00014340563,0.0052703926,-0.00008913386,-0.0085990615,-0.020502672,-0.015027252,-0.005517631,-0.012566932,-0.0058432613,-0.002920123,-0.025519796,-0.028052479,-0.03941337,0.016619224,0.014593078,0.007845287,0.025254468,-0.027835391,0.011590039,-0.011505617,0.0038502812,0.023107717,-0.012024214,0.0067116097,0.01405036,0.011487526,-0.03205653,0.008804088,0.017294606,0.014725742,0.023614254,0.0070975423,0.0031477632,0.014641319,0.014822225,-0.032201257,0.02687056,0.037749037,0.0076764417,-0.018380042,-0.046239555,-0.018428283,0.0010959884,0.013893575,-0.015196098,0.027931875,0.032490704,0.021009209,-0.013097589,0.0052070757,-0.01680013,-0.013387038,-0.033720866,0.0004797776,-0.019103665,-0.016040325,-0.00823122,-0.0035487711,0.04737323,-0.028872585,-0.006476432,-0.010848326,-0.004516618,0.003729677,-0.023071535,-0.03661536,0.019935833,-0.0050291847,0.020454431,0.003385956,0.0078513175,-0.029089672,0.010504604,-0.005246272,-0.024554964,0.008014132,-0.014520716,0.0020005181,-0.0050291847,0.023240382,-0.027570063,0.017849384,0.0006026429,0.0047849617,0.017789083,-0.0011691046,-0.018150894,-0.031935927,0.01037797,-0.0025281603,0.0049899886,0.008020163,-0.0040432476,0.023686616,-0.00065389957,0.020345887,-0.022673544,-0.029572088,0.0065548248,0.031115819,0.0077005625,-0.021250416,0.014110662,-0.038062606,-0.013025227,0.011017171,0.011469436,0.004815113,0.010402091,0.009618165,-0.030030383,0.031212302,0.016920734,-0.0016884553,-0.0027904739,-0.0037960093,-0.011807127,-0.016450379,0.00946138,0.069033705,-0.01591972,-0.02315596,0.0053367247,0.0074292035,0.02414491,-0.02075594,0.015292581,-0.0067297006,0.0029759025,0.010589027,-0.0014638305,0.03145351,0.0009738769,0.045515932,0.02503738,-0.011336772,-0.008339764,0.038014363,-0.009630226,-0.0026472567,-0.00594879,0.042886764,-0.0075075957,0.023228321,0.0052161207,0.0041909874,0.012000093,-0.033648502,0.008002073,-0.0102272155,-0.030416317,-0.001739712,0.023252442,-0.041150067,-0.0256404,0.026942922,-0.01708958,-0.028583135,0.0071940254,-0.0031960048,-0.025809245,0.016534802,0.06107384,-0.01953784,0.0074955355,0.03938925,-0.03603646,0.02167253,0.009998067,0.01681219,-0.02231173,0.0033196236,0.026219299,0.02778715,-0.015087554,0.06401658,0.015027252,-0.010950839,-0.054898918,-0.010468423,0.01189758,0.0041035493,0.052438598,0.00056420034,-0.02443436,0.01220512,0.019899651,-0.0070070894,-0.005131698,-0.042356107,-0.009033236,0.0055809477,0.019212209,-0.0013990059,-0.0075618676,-0.022733845,-0.051473767,-0.0052643623,0.037942003,-0.018283559,0.019972013,0.029427364,0.012627234,0.00320505,-0.028341928,-0.0034643484]},{"id":"interface-GatewayGuildBanRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildBanRemoveDispatchData\nDescription: GUILD_BAN_REMOVE — guild_id, user\nProperties: guild_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildBanRemoveDispatchData"},"embedding":[-0.007201124,-0.00399593,-0.0029290407,0.029915148,-0.0026604321,-0.017335815,-0.085326985,0.006129708,0.014486754,-0.04160113,-0.004850045,-0.007931498,0.0018938413,0.022345819,0.05760899,-0.01903801,-0.03266763,0.04821675,-0.023202952,0.063983165,0.014076296,0.042566914,0.030518763,0.022225095,-0.024313603,0.03870378,0.025858857,-0.011867066,-0.008752414,-0.008927463,0.02793529,-0.022514831,0.03887279,-0.029577123,0.0210903,0.013714127,-0.012446537,0.016877068,-0.0032927184,0.008752414,-0.029577123,-0.051621135,-0.002980348,0.009989824,-0.028273316,0.058816224,-0.017758347,0.008154836,0.013038079,0.013617549,0.011426427,-0.008227269,-0.0055049667,0.073351264,0.048772074,-0.010708126,0.0059546595,0.022575192,-0.023323674,0.023468543,-0.033005655,-0.0021458506,-0.005188069,0.008009968,-0.01081074,0.0028747153,-0.031291388,0.05944398,0.029335678,0.013291597,-0.006832919,-0.029432256,-0.0016146695,0.03954884,-0.0028007724,0.016104441,-0.0037514658,-0.01961748,-0.02602787,-0.02441018,0.0023088264,0.029480545,-0.053939015,-0.03781043,0.02124724,0.006135744,-0.064659216,0.0049556773,0.025110375,0.0019783473,0.0065250755,-0.001996456,-0.04638176,-0.0017927359,-0.014136658,-0.0475407,0.03133968,-0.010768487,-0.03539597,0.07895281,0.07885623,-0.025810568,-0.038969368,-0.04833747,0.037327535,-0.034575053,0.011178945,0.02104201,-0.076828085,0.0006281366,-0.028031869,0.04785458,-0.00327461,-0.0015784526,-0.02240618,0.011619585,0.05789873,-0.016019937,0.028997654,-0.012796633,-0.029625412,-0.0009974734,0.038583055,-0.045560844,-0.030784354,-0.0010872611,-0.023504758,-0.044933084,-0.0718543,-0.03754484,0.034381896,-0.026172737,0.022707988,0.007720233,-0.013327814,-0.012687982,-0.019376034,-0.016623551,-0.02824917,-0.011692018,0.00055457104,-0.018699985,0.009826848,0.038679633,-0.07658664,0.0002465389,-0.031943295,0.021730132,-0.0073037385,0.032160595,-0.07735927,0.054566775,0.008136727,-0.023021867,0.018615479,-0.020897143,-0.02798358,-0.021162733,-0.03298151,-0.028225027,0.015235237,-0.08049806,0.026414182,-0.002907914,-0.0059184427,-0.014281525,0.026365893,-0.0014871559,-0.038848646,0.000651904,0.0042403936,0.0038752067,-0.059540562,-0.02361341,-0.022418253,-0.0007496141,-0.036627345,0.00124571,-0.056546632,-0.04065949,-0.0061115995,-0.026341747,-0.012295633,-0.0852304,-0.04865135,-0.007653835,-0.018180877,0.0063500274,-0.033464402,-0.032377895,0.03307809,0.0044154422,0.03776214,0.04387072,0.033271246,-0.031412113,0.016683912,-0.06079608,0.03307809,-0.014728201,0.029214954,-0.009850993,0.037907008,0.014897212,-0.012506898,-0.015343888,0.032064017,-0.02503794,-0.0006107827,0.018929359,-0.020341817,0.011293632,-0.034116305,-0.002165468,-0.015826778,0.026269315,-0.035106234,0.019967576,0.013641694,0.0022001758,-0.011335885,0.026076159,0.015005863,-0.029746136,0.022575192,-0.004282647,0.02986686,0.002942622,-0.020257311,0.020691914,-0.019134589,0.007937534,-0.0031961403,-0.045536697,0.018687913,-0.00082846126,0.02461541,0.016237237,-0.0009657836,-0.01577849,-0.04360513,-0.036844645,0.005314828,0.0039234958,0.0050914907,-0.010351993,0.044836506,-0.005070364,-0.003842008,0.060313188,0.022889072,0.072916664,0.00783492,-0.023818638,-0.00393255,0.0087282695,0.0032897005,0.0054264967,0.01519902,-0.0007420689,0.05369757,-0.036361754,0.021367963,0.03322296,-0.005514021,0.01167391,0.048313327,0.023504758,-0.014559188,0.011257416,-0.0016297599,0.001999474,0.030567052,-0.044884793,-0.019267384,0.026897075,0.0531181,0.030591195,-0.027887002,-0.059299115,-0.043822434,0.032909077,0.01935189,0.04821675,-0.0106538,0.056691498,-0.018011864,0.0131829465,0.01803601,0.046405904,-0.043146383,0.027090231,0.044474337,-0.0028716973,0.031363823,0.022104373,0.032619342,-0.028587196,0.01388314,0.015223164,-0.01493343,-0.006416425,-0.03213645,-0.0790011,0.031363823,0.0014894195,0.03566156,0.000077102355,-0.011015969,0.007804739,-0.0013943501,-0.024917217,-0.013846923,0.01030974,-0.02477235,-0.022623481,-0.014317743,0.020764347,-0.026462471,0.024386037,-0.0046870685,-0.007943571,-0.03322296,-0.051138245,0.008221233,-0.034019727,-0.0023857874,-0.045754,-0.0070804013,0.025206953,0.03298151,-0.043774143,-0.027379965,-0.010726234,0.029118376,0.03691708,-0.03423703,0.05306981,0.024868928,0.00012581595,0.02414459,0.015875068,-0.020969577,-0.023625482,0.022864927,-0.047782145,0.0029546942,0.00988721,-0.009953608,0.008951607,0.0042585023,0.042422045,-0.031218955,-0.051089954,-0.009953608,-0.07016418,0.033536837,-0.008040149,-0.02687293,0.037206814,-0.017058153,-0.011480753,-0.015561189,0.019122515,0.026800497,0.012259416,-0.01399179,0.01720302,0.00064473605,-0.02057119,-0.012881139,-0.024844784,-0.060940947,-0.0025940344,-0.002046254,-0.0133881755,-0.026679773,0.00029822343,0.025206953,-0.019641625,0.014571261,-0.0060270936,0.020848854,-0.014438465,0.016490756,-0.0032897005,-0.009464679,0.025448399,-0.029118376,-0.0032625378,0.07354442,-0.010744343,0.016201021,-0.032015726,0.0010095456,-0.020631554,0.047419976,0.032957368,0.0076357266,0.006171961,0.05524282,0.006663907,0.006039166,-0.036458332,-0.028273316,0.048772074,0.014667839,0.01914666,0.028128449,-0.02113859,0.017577263,0.010683982,0.01856719,-0.0065250755,0.049134243,-0.06364514,0.013424393,-0.005025093,-0.011148765,0.014728201,0.0036669597,0.035420116,0.027114375,-0.016478684,0.04370171,-0.008058257,0.023951434,0.010026041,-0.017432395,-0.052200604,-0.08194674,0.038462333,-0.00973027,-0.035878863,-0.009983788,-0.004502966,0.035830572,0.03182257,-0.05760899,0.035371825,-0.041673563,-0.019557118,-0.005118653,0.027041942,0.003639797,-0.019979648,0.078759655,-0.017335815,0.028901074,-0.018084299,-0.017287526,-0.018434394,0.012482753,0.04024903,-0.056353476,-0.01598372,-0.03133968,0.03580643,-0.0074968953,0.0041106166,0.008909354,0.019786492,-0.010068295,0.045729853,-0.011100476,0.018060153,-0.012712127,0.041069947,-0.007557257,0.024530904,-0.0120964395,-0.0006349273,0.032619342,-0.01740825,-0.03781043,-0.02856305,-0.0065130033,-0.002815863,0.04024903,0.021271385,0.022418253,0.020909216,-0.048747927,0.0011574313,0.063548565,0.044305325,0.028997654,0.008957643,-0.030856786,0.02981857,-0.0045723817,-0.0010389719,0.043822434,-0.012482753,0.027838713,0.0049345507,0.056208607,-0.08677566,0.021102373,0.007195088,-0.009802704,-0.05944398,0.010412355,-0.020027937,-0.0026393055,-0.032957368,-0.043001518,-0.0056951055,-0.018446468,-0.02571399,-0.016539045,-0.010521005,-0.027742134,-0.03293322,-0.042808358,0.025955435,-0.032160595,0.025593266,-0.022104373,0.04244619,0.00670616,0.037834574,0.0027570105,-0.023577193,-0.013605477,-0.0040713814,0.020522902,-0.0790011,-0.002781155,0.028418183,0.032474473,-0.008142763,0.00034292863,0.06350027,0.0072071603,-0.032039873,-0.02856305,-0.01704608,0.042591058,-0.030253172,-0.009343957,-0.020547047,0.009162872,0.014052152,0.014378103,-0.001715775,0.0107986685,0.022285458,-0.0027721007,-0.012881139,-0.0045090024,0.0038540803,0.0030557998,-0.0010699072,-0.012977717,-0.0015814707,0.014583332,-0.037375826,-0.01493343,-0.039162528,0.004819864,-0.013653766,0.013641694,-0.033102233,-0.02477235,0.011468681,0.014245309,0.008172944,-0.016261382,-0.013665838,0.014317743,0.055146243,-0.02535182,0.05736755,0.027210955,-0.000089787696,0.0011529042,0.053600993,-0.0018198985,-0.008921426,-0.029263243,-0.0718543,0.0066820155,0.06084437,-0.036168598,-0.040828504,-0.016261382,-0.016502827,-0.03365756,0.030277317,-0.020209022,-0.0236617,-0.0014803652,-0.00662769,0.03851062,0.0017142659,0.032257173,-0.0050975266,-0.029456401,0.015066224,0.024675772,-0.0032565016,-0.023046011,0.0065673287,0.04123896,-0.011064258,0.04312224,0.03230546,-0.014498827,0.0013166347,0.0070019313,0.01562155,-0.0345992,0.00018325367,-0.02051083,-0.02829746,-0.011915356,-0.005849027,-0.019955505,0.0035009657,0.026583195,-0.0023208987,0.005438569,0.024796495,0.004330936,0.04413631,-0.029601268,-0.0025472543,-0.0009325848,-0.03496137,-0.03066363,-0.05548427,-0.02292529,-0.0386072,-0.026462471,-0.038824502,0.03213645,0.008227269,-0.006102545,-0.033464402,0.010816776,-0.024120446,0.019955505,-0.0071286904,0.012066259,-0.045464262,-0.021959506,-0.0058097923,-0.025641555,-0.0017851907,-0.035782285,-0.027790423,0.035492547,-0.0123499585,0.027669702,-0.0024220042,-0.016394177,0.04696123,-0.017927358,0.008643763,-0.0147885615,0.046043735,0.013846923,0.008172944,0.008547185,-0.02472406,-0.017710058,0.032619342,-0.015549117,0.03940397,0.01950883,0.016261382,0.026052013,0.027669702,0.0012841905,0.023673771,-0.03807602,-0.032957368,0.0060693463,0.010659837,0.005031129,0.014595405,-0.01298979,0.014860995,0.03493722,0.0076176184,0.062341332,-0.011842921,0.0033198812,-0.00012279788,0.020957505,0.019593336,0.033126377,-0.0236617,0.0075391484,0.016321743,0.03271592,0.011728235,-0.007074365,-0.02303394,-0.027235098,0.012567259,-0.019496758,-0.022369964,-0.016623551,0.02061948,0.022019867,0.004868153,-0.009144763,-0.010714162,-0.030880932,0.024941362,-0.0772144,-0.008028076,0.007321847,-0.0072856303,-0.032957368,0.014172874,0.0124586085,0.0144263925,0.014583332,0.037013657,-0.02798358,0.0025050014,0.009048185,-0.0046085985,0.0006994386,0.006995895,-0.0061146175,-0.0074123894,-0.01940018,-0.0042373757,-0.011601476,0.008402318,-0.016454538,0.02272006,0.04070778,-0.00093862094,-0.011619585,-0.0014154767,-0.015030008,0.011245343,-0.010587403,-0.036579054,-0.013689983,0.0074546426,0.015500827,-0.007243377,-0.0137262,0.0021458506,-0.015295598,0.0073037385,-0.02198365,0.011275524,0.0018878052,-0.021923289,0.021078227,0.014281525,-0.05017246,0.043580987,-0.008263486,0.0049677496,0.04090094,0.05485651,-0.015657768,0.011335885,-0.028345749,-0.021597337,0.03218474,-0.018615479,-0.016285526,-0.012036079,-0.008009968,0.022031939,0.03677221,-0.04338783,-0.023915216,-0.0051397798,0.0018334799,-0.0042675566,-0.008661872,0.00883692,-0.008185016,-0.016768418,-0.019327745,-0.0032233028,-0.0049194605,-0.01167391,-0.0312431,0.009525041,-0.025834711,0.008263486,-0.043725852,-0.01399179,-0.01982271,0.0038148453,0.00195873,-0.07257864,0.03539597,0.06499724,0.008637727,-0.0058641173,0.03430946,0.013243308,0.059395693,-0.027645556,-0.047347542,0.027838713,-0.045102097,-0.025279386,0.008486823,0.043556843,-0.011643729,0.010364066,0.010170909,0.044401903,0.012893211,-0.024373963,0.006675979,-0.019714057,0.011553187,-0.007997896,0.00015722278,0.023842784,-0.004059309,0.030591195,-0.020655697,0.041721854,-0.037737995,-0.034888934,-0.011233271,-0.0021352873,0.004620671,0.0012902266,0.001161204,0.012724199,-0.04213231,-0.019810637,-0.010297668,-0.027838713,-0.0139072845,-0.033367824,0.025496688,0.0106538,0.0029320586,-0.016502827,0.022852855,-0.023577193,0.0162976,0.006120654,0.010786596,-0.014293598,-0.030518763,-0.018965576,0.0031146521,-0.054663353,-0.03471992,0.032329608,0.009066294,0.004578418,-0.013496826,0.01356926,-0.015742274,-0.011498861,-0.012386175,-0.0060753827,-0.017190948,-0.02472406,0.0368205,0.018265383,0.03730339,0.0033711884,0.04097337,-0.016744273,0.034285318,0.0029305497,0.0057464126,-0.020921288,0.041094095,0.010026041,0.0075753652,0.014716128,-0.01740825,-0.022526903,0.02057119,0.0037876826,-0.018506829,0.011867066,0.026921218,0.008842956,-0.0016584316,-0.011215162,-0.0075814016,-0.015271453,0.00051948597,-0.033488546,-0.008480787,-0.0043671527,-0.01054515,-0.044570915,-0.022551049,-0.02135589,-0.03923496,0.034381896,-0.00012298652,0.0010314267,0.0075512207,-0.0011166873,0.040007588,-0.023637554,-0.027114375,0.015054152,0.0071407626,0.008136727,0.019448468,0.001966275,0.009899282,-0.020764347,-0.0014607477,0.0071105817,0.004991894,0.011432463,0.035251103,0.014764417,0.010092439,0.010521005,0.0461886,-0.024603337,0.0065914732,0.0011068786,-0.008764487,0.010744343,0.013074296,0.000056777513,-0.00023842783,-0.03397144,-0.007593474,0.007907353,0.013086368,-0.045319397,-0.0028686791,0.042059876,0.009512968,0.008130691,-0.0063560633,0.0053782077,-0.004913424,-0.033005655,-0.037593126,-0.03706195,-0.027500689,0.019750275,0.024844784,-0.025786422,0.041190673,-0.012030043,0.047782145,0.0017866998,-0.008052221,0.0011521496,0.014378103,-0.06263107,-0.02303394,-0.009597475,-0.008462679,-0.04428118,-0.004771575,-0.017806636,0.02403594,0.009772523,0.01283285,-0.026655627,0.05022075,-0.019110443,-0.053262968,0.018844852,0.013714127,0.022877,-0.032257173,-0.025279386,-0.03066363,0.031798426,0.0017791545,0.022128517,-0.03950055,0.016164804,-0.02655905,0.015597406,0.045995444,0.04198744,-0.0040834537,0.019762347,-0.01735996,0.028104303,0.037907008,-0.025883,-0.021923289,0.01640625,0.025641555,-0.00351002,0.0003489648,-0.007877173,0.0076176184,-0.0061870515,0.009706126,-0.04481236,-0.004140797,-0.007961678,0.012054187,0.03266763,-0.021380035,0.02198365,0.012724199,-0.014873068,-0.004871171,-0.0043973336,-0.02597958,-0.019376034,0.010871102,0.030494617,0.054325327,-0.03293322,0.011335885,-0.072192326,-0.020486685,-0.036047872,-0.007074365,0.005393298,-0.0070441845,-0.008504932,0.00506131,-0.0027887002,0.010611547,0.019327745,0.038414042,0.016333815,0.033464402,0.022937361,-0.0031146521,-0.033536837,-0.015295598,-0.018760348,0.0008473242,0.026848786,0.05075193,-0.009947571,0.009555222,0.010991825,-0.015887141,-0.026703916,-0.007647799,0.021850854,-0.031267244,-0.015911285,0.033174668,0.01298979,0.006959678,0.0041045803,-0.018893141,-0.0133881755,-0.020257311,0.022695916,0.023637554,-0.004711213,0.0068027386,-0.018168805,-0.021730132,0.06016832,0.007116618,0.010575331,-0.0066457987,-0.014257381,-0.010062258,-0.026414182,0.03870378,-0.0030497636,0.012953573,0.0007209424,-0.009724234,-0.0027645556,0.02166977,-0.023963505,-0.035951294,-0.0011823304,-0.021066155,-0.02045047,-0.011239307,0.00032217937,0.037593126,-0.0077866307,-0.03607202,-0.019363962,0.004252466,-0.003802773,-0.0067604855,0.0246637,0.015186948,-0.043411974,-0.0024793476,-0.021585263,-0.0015241273,0.0067967023,0.011728235,0.05080022,0.029794425,0.0064103887,0.007007967,0.03976614,-0.033681706,0.037375826,0.02793529,0.0111608375,0.008945571,-0.008016004,-0.035251103,0.008848992,0.0097121615,0.0079496065,0.002779646,-0.006754449,0.0037846647,-0.0018289527,-0.028418183,0.009247378,0.0007714951,0.00012864539,-0.028587196,0.022889072,-0.029915148,-0.010828849,-0.009319812,-0.011758416,-0.0021201968,-0.03901766,0.051669423,0.019170806,-0.019593336,-0.024748206,0.0057313223,-0.010050186,-0.011897247,-0.00042743472,0.021114444,-0.0072675217,-0.010472716,0.011824814,-0.002530655,0.07286838,-0.025858857,0.0057765935,0.0043037734,-0.018989721,0.002417477,-0.01062362,0.0065612923,0.009549186,-0.00954315,-0.013436465,0.007768522,-0.0025819622,-0.0090904385,0.018048082,0.0068631,-0.011166873,0.03877621,0.019677842,-0.027210955,-0.012398248,0.027307533,-0.0020372,-0.006531112,0.009959644,-0.032619342,0.028490618,0.014836851,0.03298151,0.028200882,0.0033259173,0.034116305,-0.0053480268,-0.006537148,-0.033947293,-0.0046719783,0.032015726,-0.02892522,0.015500827,-0.028128449,0.037882864,-0.0037454297,0.013533043,0.027428254,-0.027307533,-0.0018847871,0.008299703,-0.049786147,-0.0054657315,-0.02655905,-0.024820639,0.016104441,0.026921218,-0.02793529,-0.013424393,-0.009531077,-0.00089410436,0.046792217,0.00032048172,-0.0053691533,-0.010098475,0.033271246,0.0008209161,-0.0069536422,0.037327535,0.013979718,-0.03814845,-0.0013105986,-0.0052876654,0.01704608,0.0027072122,-0.0040200744,-0.002743429,0.015392177,0.024168735,0.015090369,0.007309775,-0.039476406,-0.008438534,0.006171961,0.017528974,-0.027114375,0.025158664,0.021573192,-0.04560913,0.0370378,0.0029516763,0.010303704,0.0021549047,-0.025593266,0.035516694,-0.024229096,-0.020293528,0.0066820155,0.008384209,0.009241342,-0.017951503,0.003153887,-0.01046668,0.0048922976,-0.0041438155,0.03665149,0.04034561,0.0005047728,-0.0008073347,0.015693983,-0.010213162,0.007690052,0.017625552,-0.0116799455,-0.008921426,-0.01946054,-0.013520971,0.0029305497,-0.0057373582,-0.027597267,0.02093336,-0.024011794,-0.00035500093,0.014184947,0.025883,0.04065949,0.014571261,0.009476752,-0.0038601165,-0.015947502,0.027887002,-0.017963575,0.0059999307,-0.0093499925,-0.025062084,0.0026045977,0.03008416,-0.006947606,-0.0025019832,-0.0022695914,-0.009579366,-0.020836782,-0.020872999,-0.0059365514,-0.009718197,-0.0071709435,0.004581436,-0.002376733,-0.004895316,0.0051277075,0.012796633,-0.009694053,-0.01798772,-0.0513314,-0.0036428152,0.0032414112,-0.06282423,-0.023794495,0.006464714,-0.02024524,0.031025799,0.000017542554,-0.017311672,0.011842921,0.0035220922,-0.018712059,-0.014498827,-0.009688017,0.016695984,0.0012132657,-0.010219198,-0.025738133,0.011197054,0.009935499,-0.0023933325,0.007557257,-0.009319812,0.03266763,0.0039536767,-0.04222889,-0.015742274,0.015790563,-0.013653766,-0.016925357,-0.014535043,-0.037593126,-0.011263452,0.018011864,0.01096768,0.0010208634,0.0050975266,-0.017565189,0.00086392363,-0.0050462196,0.008281594,-0.015597406,0.01081074,-0.007038148,-0.013327814,-0.028804496,0.016659768,0.009446571,0.0006828392,0.010521005,-0.016309671,0.020583263,-0.032909077,0.009211161,0.00011044264,-0.02651076,0.0041015623,0.006995895,0.0042343577,-0.029383967,-0.0072554494,0.025834711,0.03003587,0.033512693,0.012591404,0.014522972,0.0036729958,0.00002343723,-0.028056014,0.013001862,0.035468403,0.018555118,-0.02986686,-0.041359685,-0.030301461,-0.007515004,0.0057916837,-0.014812706,0.022538975,0.029070087,0.025641555,0.0056588883,-0.0110582225,-0.043460265,-0.016635623,-0.024567122,-0.00415287,-0.016007863,-0.019170806,0.003947641,0.013303669,0.024398109,-0.025883,0.0069355336,-0.019581264,0.0137503445,0.004834954,-0.03471992,-0.034913078,0.013943501,0.00020786983,0.026317604,0.013074296,0.002734375,-0.011758416,0.015500827,-0.016261382,-0.033150524,-0.0016101424,-0.013557187,-0.0024718025,0.00054363057,0.035951294,-0.038993515,0.034381896,0.0054627135,-0.000563248,0.008233305,-0.0033711884,-0.012355994,-0.014595405,-0.003470785,-0.007321847,0.00044705218,0.002864152,0.012398248,0.025907146,0.009923426,0.032691777,-0.024156664,-0.018120516,0.018675841,0.003235375,0.014028007,-0.011607512,0.028828641,-0.03597544,-0.013810705,-0.008999896,0.027838713,0.0014894195,-0.021005794,-0.0034224957,-0.030229028,0.018905215,0.018180877,-0.010140728,-0.018446468,-0.014547116,-0.005269557,-0.0059063705,-0.005957678,0.052345473,-0.035492547,-0.019955505,-0.005945605,0.0084687155,0.028152592,-0.010635693,0.020655697,-0.0012532552,0.017275454,-0.0031357787,-0.008776559,0.037206814,0.0073459917,0.04213231,0.03691708,0.0129415,-0.0060814186,0.048723783,0.003724303,0.007822847,0.01267591,0.029408112,-0.0010917882,0.0035552909,0.017577263,0.008480787,0.0064888587,-0.008142763,0.005646816,-0.016164804,-0.016382106,0.00554722,0.014860995,-0.049206674,-0.01593543,0.014172874,-0.0049556773,-0.046647348,0.004994912,-0.00020919024,-0.02182671,0.010907318,0.054615065,-0.007931498,0.0026725044,0.024579193,-0.048675496,0.023384036,0.01956919,0.024373963,-0.018893141,0.017239237,0.02972199,0.015802635,-0.023637554,0.044788215,0.0048017553,-0.022019867,-0.036796357,-0.013762416,0.0022182842,0.010804704,0.039210815,0.012543115,-0.018386105,0.0041830502,0.017589334,-0.008034113,-0.01682878,-0.046357613,-0.022104373,-0.013351958,0.008088438,0.0072252685,0.0026408145,-0.013641694,-0.024325674,0.0045422013,0.06475579,-0.030567052,0.014064224,0.022526903,0.016961575,0.00055117573,-0.025013795,0.0018153714]},{"id":"interface-GatewayGuildCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildCreateDispatchData\nDescription: GUILD_CREATE — full guild with channels, members, roles, unavailable?","meta":{"url":"/docs/typedefs/GatewayGuildCreateDispatchData"},"embedding":[0.009582537,0.027776197,0.022398947,0.012152086,0.028001817,0.0003309861,-0.05374744,0.017046764,0.012684798,-0.0072636763,0.025870971,0.0057344814,0.005433656,-0.013324051,0.046126537,-0.025795765,-0.06663279,0.011776055,0.0102593945,0.0305839,0.0023972013,0.005051357,-0.00025205864,0.008792872,-0.034369282,0.00021425965,0.023514507,0.015642913,0.018939456,-0.01692142,0.041864846,-0.029455805,0.023827866,-0.01683368,0.009526133,0.023702523,-0.0043745004,0.0045217793,-0.030909793,-0.029430736,-0.004120679,-0.014013442,0.04422131,0.001855089,-0.039834276,0.004935414,0.010127783,0.014339336,-0.0016811744,0.010666762,-0.045224063,0.004625188,-0.0028766415,0.05645487,-0.0014367539,-0.02495596,-0.036976434,-0.0028061355,-0.040887166,0.040034827,-0.019603778,-0.016645662,0.0052832435,0.017335055,0.01752307,-0.018087117,-0.049711373,0.03750288,-0.0029847506,0.0663821,-0.030508693,-0.0615689,-0.011913933,-0.029505942,-0.015404759,0.005270709,-0.012302499,-0.002630654,0.015454897,-0.0148532465,-0.0019005261,0.04296787,-0.086988635,-0.06532922,0.044898167,0.0008562552,-0.024655135,0.0070004542,0.0010810908,-0.018387944,0.0024551726,0.0155050345,-0.05199263,-0.0106291585,0.012935486,-0.06788623,0.07254902,0.03624944,-0.0146902995,0.034344215,0.06733472,-0.05374744,-0.0071759354,-0.064577155,0.013737686,-0.01346193,-0.05114029,0.029907042,-0.013048295,0.0031853006,-0.08342887,0.018676234,0.01160684,-0.025971245,-0.003873125,0.004556249,0.037803706,-0.057708308,0.036826022,0.019039731,-0.028377848,0.005562133,0.003920129,-0.04547475,0.020932423,0.00079162477,0.029255254,-0.010535151,-0.057407483,0.0018817246,0.049836714,0.012283698,0.0417395,0.0040486064,-0.05134084,0.0024880755,-0.045976125,-0.0016373041,-0.050037265,-0.034745317,0.000623194,-0.026748378,0.049886853,0.0611678,-0.06512866,0.013725151,-0.036800954,0.027149478,-0.0101403175,0.03670068,-0.08728946,0.041764572,-0.004029805,-0.016106686,-0.002536646,-0.0090435585,-0.02321368,-0.019678984,-0.030408418,-0.022988062,0.018362874,-0.045775574,0.011337351,0.013925701,-0.046803392,-0.039357968,0.008573519,-0.009099963,-0.06683334,0.01935309,0.014677765,0.0001448309,-0.0393329,0.017385192,0.011895131,0.011851261,-0.05730721,-0.033943117,-0.02241148,-0.04913479,0.03426901,0.00027516892,0.0077587846,-0.06698375,-0.049886853,0.010121516,-0.0001967311,-0.017372658,0.018575959,-0.027600717,-0.05359703,0.0036506397,0.034519695,0.027425235,0.042341154,-0.035773136,0.052042767,0.009952302,0.04547475,-0.012960554,0.028202366,-0.04993699,0.030734312,0.003920129,0.021759693,-0.008178687,0.031035138,-0.011136801,-0.017021695,0.022912856,0.026547827,-0.0313861,-0.028603466,0.01611922,-0.03564779,0.028001817,-0.09210266,0.03143624,0.007677311,-0.022737375,0.003478292,0.03201282,-0.009281713,-0.013161104,0.02687372,0.029881975,0.00034606655,0.009262911,-0.0056780763,0.034068458,0.004105011,0.014765506,-0.009996172,-0.051691804,-0.012647195,0.017861499,0.010779571,0.05194249,0.031711996,0.029280324,-0.038881663,-0.027826335,-0.02395321,-0.022937926,-0.022586962,-0.029806769,0.0065366817,0.0015479965,-0.023527041,0.032689676,0.053697307,0.046001192,-0.002196651,0.01136242,0.002724662,-0.023840401,0.011544169,-0.012358904,0.02495596,0.036750816,0.022774978,-0.017736156,-0.0063517997,0.042867597,-0.010735701,0.017773759,0.03958359,0.013888098,-0.031711996,0.024805548,0.001792417,-0.022248533,0.076158926,-0.044722687,-0.0031476975,-0.02770099,0.027575647,-0.0056624087,0.03261447,-0.033567082,-0.054900605,-0.014840712,0.0019302953,0.052092906,-0.0067497664,0.04770587,0.03805439,0.0002593051,0.017147038,0.05605377,-0.01163191,-0.017786292,0.019365625,0.0049918187,0.02609659,0.0029941513,0.022173326,-0.002893876,0.034820523,0.03895687,0.03324119,0.032263506,-0.032714747,-0.037026573,0.0020556392,0.0019851332,0.038029324,-0.000623194,0.043093216,-0.008335366,0.017673483,0.012127018,-0.000013391228,0.033266257,-0.025632817,0.0006756817,0.033892978,0.03569793,0.026698241,0.040009756,-0.0113185495,-0.006743499,0.0064301398,-0.048808895,0.009275445,-0.028352778,-0.00901849,-0.037828773,-0.007934266,0.02629714,0.0127412025,-0.054900605,0.00036114696,0.012559454,0.025645351,0.010560219,-0.009244109,0.04424638,0.041689366,-0.022612032,0.0062828604,0.0024645734,-0.02729989,-0.002166882,0.03304064,-0.004114412,-0.024529792,0.033692427,0.0054430566,0.024216432,-0.011870063,0.02607152,-0.018224996,-0.040536202,0.013574739,-0.04382021,0.044522136,-0.021922639,-0.012753737,0.039232627,-0.028227435,0.008322831,-0.021885036,0.028728811,-0.0018660566,0.02649769,-0.021358592,0.03607396,-0.016482716,-0.021045232,0.010271928,0.024742877,-0.05199263,0.001063856,0.002406602,-0.032589402,0.00011839118,-0.019653916,0.02404095,0.003873125,-0.0017501136,-0.002871941,0.038430426,-0.011017725,0.0029455805,0.00448731,-0.0076647764,0.043544453,-0.06532922,-0.030007318,0.02815223,-0.0070756604,-0.032138165,-0.035597652,-0.015592775,-0.039859343,0.040837027,0.023313956,-0.0086361915,-0.010522616,0.027400166,0.015906135,0.00070310064,-0.025118908,-0.030508693,0.021872502,0.028001817,0.00036095112,0.027249753,-0.035146415,0.009939767,0.008040808,0.029205117,0.009877095,0.037427675,-0.03928276,-0.024717808,-0.039257694,-0.033341464,0.0116444435,0.014727903,0.010810907,-0.015304484,0.019428296,0.044296518,-0.040636476,0.03953345,0.015279415,-0.011218275,-0.05384772,-0.078715935,0.014339336,0.043669797,0.009237842,0.052092906,0.026347278,-0.025093839,-0.06497825,0.0011790156,-0.007652242,-0.017147038,-0.016420044,-0.025545077,0.0069189807,-0.041463748,0.009350651,0.041213058,-0.048758756,0.04364473,-0.012227293,-0.017911637,0.009939767,0.0063079293,0.04830752,-0.03602382,0.010792105,-0.019039731,0.09240349,-0.038681112,0.015103934,-0.0019976676,0.0041864845,0.008736466,0.07856552,-0.041764572,0.03655027,-0.012615859,-0.0020368376,0.008097213,0.040912233,-0.045274198,-0.042240877,0.028377848,0.037277263,-0.0035346965,0.010660495,-0.019841932,0.05810941,0.050864536,0.022073053,-0.0006040007,0.0012260196,-0.0052738427,-0.0036976435,0.057006385,0.07671044,-0.019490968,-0.0013615476,-0.038179737,0.009964836,0.0013638978,0.017510535,0.04387035,-0.013612342,0.003346681,-0.03752795,-0.012922951,-0.048157107,-0.0073702186,0.018914387,-0.0036318381,-0.03710178,-0.011168137,-0.026623035,0.022148259,-0.011951536,-0.03725219,-0.024291638,-0.02955608,-0.03281502,-0.028001817,0.005750149,0.0034375552,-0.037377536,-0.03507121,0.00944466,-0.031862408,0.04419624,-0.010177921,0.03055883,-0.011656978,0.021421265,-0.014966056,-0.01580586,0.007282478,0.024630066,0.021383662,-0.06633197,-0.011437627,0.010196722,0.0095700035,-0.020556392,0.030859657,0.038430426,-0.007019256,-0.037202056,-0.008611122,0.013286448,0.018738905,-0.032288577,0.0028735078,0.035422172,0.0015816827,-0.0052331057,0.011500298,0.0016357373,0.015166606,0.012922951,0.011456428,0.008372969,0.0037289795,-0.03730233,-0.012020475,0.009670278,0.007226073,0.026397415,-0.0042773588,-0.045324337,-0.009394522,-0.005878627,0.0077587846,-0.0075895702,-0.014615093,-0.0089620855,-0.025921108,-0.010936251,-0.020105153,0.021759693,-0.017021695,-0.037954118,-0.01955364,0.023878004,0.018099653,0.011011457,0.019202678,0.005471259,-0.008774069,0.019503504,0.012772539,-0.003779117,-0.014640162,-0.09586298,0.012910416,0.054298956,-0.06989173,-0.007777586,0.009049826,0.002180983,-0.008980887,0.034920797,-0.037427675,0.024918357,0.010516349,-0.0059632338,-0.021985311,-0.034168735,-0.01969152,-0.00575955,-0.025971245,0.0116444435,-0.0022702904,0.030007318,-0.047430113,-0.05550226,0.024655135,0.0076334407,0.032037888,0.038781386,-0.005370984,-0.011092931,0.021245783,0.00819122,-0.017911637,-0.03301557,-0.013537136,-0.007683578,-0.024078554,0.021734623,-0.002033704,-0.033341464,0.043093216,-0.020857217,-0.0018049515,0.048859034,-0.003158665,0.03286516,-0.04008496,-0.018137256,-0.012922951,-0.015241812,-0.0077337157,-0.030909793,-0.018187393,-0.010829709,-0.039082214,-0.061017387,0.021960244,-0.00520177,0.0018378542,-0.0061230473,0.009839492,-0.011280946,-0.007551967,0.0031727662,0.03381777,-0.014314268,0.019541107,0.010221791,0.0067623006,0.009294246,-0.025344526,0.015454897,0.052443866,-0.029531011,0.053346343,-0.010735701,-0.04241636,0.036525197,-0.026221933,0.003979667,-0.02895443,-0.007489295,0.03176213,0.03707671,0.021960244,0.0017642147,-0.027049202,0.04264198,-0.036174234,0.02607152,0.02455486,0.022373877,0.008742734,0.0023016264,-0.01346193,0.010190455,-0.0016827412,-0.038806457,0.014151321,0.0012040844,0.020694269,0.020656666,-0.020293169,0.015367156,0.036324646,-0.014201459,0.061518762,-0.017159574,0.016570456,-0.022461617,0.019315487,0.034745317,0.0030912927,-0.020694269,0.0042742253,0.008680061,0.029305393,0.012465446,-0.01886425,-0.008398038,-0.030985,0.024116157,0.022712305,-0.019114938,0.0077023795,-0.01124961,-0.017046764,0.029004566,0.019704053,0.0020164691,-0.009714148,-0.00026459302,-0.04748025,-0.028829087,-0.0052519073,0.009394522,-0.020907354,-0.023226216,0.020192895,-0.012998157,0.018926922,0.030909793,-0.008535916,-0.0039608655,-0.018375408,0.02120818,0.029029636,-0.006141849,-0.019904604,-0.012973089,-0.007708647,0.009037292,0.04587585,0.015530103,-0.023790263,0.021471402,0.02772606,0.026572896,-0.007583303,-0.0010795239,0.009331849,0.016883817,0.005186102,-0.0017673483,-0.004418371,-0.012935486,0.009551201,0.010453677,-0.029004566,0.04873369,-0.043469246,0.008868078,-0.052092906,0.015216744,-0.02243655,-0.028703742,0.014339336,0.018926922,-0.009933501,0.05730721,0.016457647,0.001262056,0.010127783,0.062421236,-0.02975663,0.008153617,-0.038405355,-0.02812716,0.012064346,0.0037979188,-0.01794924,-0.0008202188,0.018663699,0.00036976437,0.015881065,-0.040235378,-0.011537901,-0.02209812,-0.007106996,-0.001645138,-0.023627317,-0.017297452,0.005101495,-0.003150831,0.014176389,0.01303576,0.02355211,0.0037603155,-0.020907354,-0.010497548,-0.03549738,0.028026884,-0.02652276,0.009356919,-0.020217963,-0.013449395,-0.004703528,-0.11301002,0.007069393,0.03950838,-0.0015934337,-0.0015628812,0.015993875,0.010767037,0.01247798,-0.019804329,-0.04339404,0.015592775,-0.008097213,0.008316564,0.028753879,0.05665542,0.007652242,-0.025946178,0.023878004,0.021947708,0.019365625,0.018187393,-0.0023627316,-0.0064301398,0.020055017,-0.0013278614,-0.020995095,-0.005417988,-0.01937816,-0.0014876748,0.01060409,0.041764572,-0.0068249726,-0.035246693,-0.0154925,-0.017924171,0.008749001,-0.00087192317,0.02040598,0.024003347,-0.039734002,-0.00341562,0.017598277,-0.022737375,0.0069503165,-0.016507786,0.013524601,0.000421077,0.037452742,0.0033341465,0.01638244,-0.035998754,-0.01029073,0.035296828,0.00028221952,0.0053741178,0.038856592,-0.03421887,0.017585743,-0.00821629,-0.037151918,0.031561583,0.025507474,0.01263466,-0.025720559,0.012264896,-0.03567286,0.0115629705,-0.00015707151,-0.0006408204,0.02444205,0.0016874416,0.045600094,0.006248391,0.0010395705,-0.008172419,0.04547475,-0.024091087,-0.0038668578,-0.0021308456,0.049209997,-0.023715056,0.026848653,-0.0024175695,-0.02058146,0.02372759,0.0065116133,-0.004361966,-0.0042240876,-0.0005965584,-0.00023697822,0.0010662061,0.009432125,0.008560985,0.020819614,-0.009118766,0.018814111,-0.014502283,-0.026999066,-0.015755722,-0.03301557,0.0074140886,-0.016557923,0.02281258,-0.052544143,-0.014113718,0.00031629737,0.0022264202,0.005928764,-0.014239062,0.007721181,0.0075770356,0.03424394,-0.019052265,0.0031758999,-0.0041896184,-0.016532853,-0.003826121,0.012095681,0.0052895104,0.0013537136,-0.01843808,0.00921904,-0.02272484,-0.0067121633,-0.0011782323,0.008542184,0.017435329,-0.018738905,-0.00029925845,0.028703742,-0.04061141,-0.017498001,-0.019002128,0.012922951,0.01314857,-0.014276665,-0.021170577,0.01497859,-0.029180048,-0.02812716,-0.0049949526,-0.0040642745,-0.02363985,-0.01283521,0.04377007,-0.0024207032,0.014677765,-0.019729123,-0.012559454,-0.0029518476,0.0070443247,-0.048031762,-0.017911637,-0.00683124,0.0041269464,0.019954741,-0.03176213,0.056154046,-0.012039277,0.0105852885,0.010334601,0.04667805,0.008385504,0.022073053,-0.01303576,-0.016357373,-0.010271928,-0.0001758731,-0.044923235,-0.036048893,-0.03848056,0.022787511,0.008805405,-0.027600717,-0.04158909,0.051892355,0.011011457,-0.028077023,-0.005574668,0.016532853,0.009187704,-0.0054994617,-0.0016467049,0.007940533,0.03507121,-0.015103934,0.03735247,-0.033366535,0.023990814,-0.026948929,-0.0073639513,0.02498103,0.0078026545,0.0038010522,-0.007106996,-0.027350029,0.0305839,0.017435329,-0.0043118284,-0.028628536,0.0013678147,0.007558234,0.0009322449,-0.01314857,0.010234325,0.0022530558,0.0037885178,0.04284253,-0.028478123,0.0025805165,-0.0034939598,-0.0026666904,0.00568121,-0.00086800614,0.02498103,0.030684175,-0.051290702,-0.015855998,0.011920201,-0.02098256,-0.017686017,-0.026973996,-0.011437627,0.03361722,-0.03527176,-0.011870063,-0.07079421,-0.0077337157,-0.037753567,-0.002041538,0.010660495,-0.0027794999,0.0072135385,-0.003926396,0.0154925,-0.015617844,0.023915607,0.028854154,0.00921904,0.035246693,0.019628847,0.0066369567,0.0073388824,-0.042491566,0.007608372,0.021170577,0.003515895,0.034795452,0.0019600645,0.022286138,-0.018224996,0.013374189,-0.023376629,0.007965602,0.03133596,0.01580586,0.008611122,0.0058347564,0.0068500414,0.0037665828,0.00046377224,0.012897883,0.0014022844,0.0042742253,0.004029805,0.003547231,-0.00039933767,-0.0027136945,-0.029380599,-0.007451692,0.05374744,0.01964138,0.01772362,0.014552421,-0.00010448585,-0.0053929193,-0.00917517,0.016946489,0.00481007,0.05886147,-0.028302642,0.009425858,-0.027525509,0.001964765,0.011769787,-0.020004878,0.0004308695,0.004145748,0.0021935173,-0.011243343,0.008354167,0.02855333,-0.0002557798,-0.041062646,0.013649945,-0.0044027027,-0.031411167,-0.002569549,0.01683368,-0.0019819997,-0.02687372,-0.015818395,-0.036174234,-0.018425547,-0.0020932422,-0.006141849,0.02321368,-0.0019490969,-0.023940675,0.009914699,0.0148532465,-0.025206648,0.03629958,0.007783853,0.015254347,0.014715368,-0.0022953593,0.0024724074,0.004872742,-0.013787824,0.010171654,0.017422795,0.03366736,-0.0353219,-0.002787334,0.0077525172,0.012007941,0.009237842,0.040410858,-0.026397415,0.046151605,-0.0409373,-0.002204485,-0.025068771,0.015141537,0.035246693,-0.017222244,0.053947993,0.021483935,-0.0056216717,-0.019942207,0.018701302,-0.014740437,0.0116444435,-0.015254347,-0.0024097355,0.0068124384,-0.016670732,0.011381222,-0.0096514765,0.07661016,-0.01649525,0.007119531,0.010340868,0.011105465,0.005533931,-0.009996172,0.01306083,-0.008454443,0.0074704937,-0.021308454,0.007019256,0.0070380573,0.0003399952,0.016131753,-0.023827866,-0.018450614,0.0043431646,0.023852935,-0.039408106,0.010710632,-0.010397272,0.011011457,0.011888864,0.007125798,-0.037427675,0.027249753,-0.023852935,0.018387944,0.041037578,-0.0036882428,0.02281258,0.0069503165,0.001140629,-0.01886425,0.006643224,-0.0004253857,-0.039182488,0.009181437,-0.0131861735,0.009908431,-0.002585217,-0.021960244,0.0032871426,-0.04116292,0.00019790619,-0.0062577915,-0.057156797,-0.03346681,-0.030884724,-0.025520008,-0.008009472,0.021534074,-0.02249922,-0.018826647,-0.025494939,0.022336274,0.0361241,0.007157134,0.019202678,-0.02098256,-0.010535151,-0.0043870346,-0.008736466,0.010829709,0.03324119,-0.000048595222,-0.0034751582,-0.00591623,0.029455805,0.0057188133,-0.0071445997,-0.02209812,0.014364406,-0.0009831658,0.0063988036,0.01603148,-0.05299538,-0.0012134851,0.03286516,-0.011099198,-0.04201526,-0.008642458,0.011813658,-0.06392536,0.0627722,0.0039545987,0.004020404,0.010516349,-0.0058253556,-0.01672087,-0.008341634,-0.013988374,0.020230498,0.010760769,-0.0024316707,0.011650711,-0.012083148,-0.029881975,0.0076961126,0.011525367,0.056956246,0.020305704,-0.01314857,-0.012177155,0.019039731,0.0119264675,0.013800358,-0.00013866163,0.0021997846,-0.014489749,-0.023539575,-0.00897462,-0.013010692,0.0074642263,-0.033341464,0.019854465,-0.05116536,-0.000846071,-0.033692427,0.042516634,0.045173924,0.023025665,0.0063517997,-0.031711996,-0.012396507,-0.00025754244,-0.013474464,0.017673483,-0.0000057898087,-0.021972777,0.015317018,0.03444449,-0.032313645,-0.008435641,0.0056592748,-0.01426413,-0.011124266,-0.016507786,0.0057626837,-0.0148532465,0.016482716,-0.015530103,-0.014627627,-0.0102593945,-0.022912856,0.009952302,-0.016018944,-0.009269178,-0.0230382,-0.018224996,-0.025820833,-0.029205117,-0.03522162,-0.011663245,-0.021333523,0.043845277,-0.0014790575,0.016106686,-0.014514818,-0.002010202,-0.00003726042,-0.032739814,-0.0012785073,0.015642913,0.008510848,-0.008723932,0.0061606504,-0.020706804,-0.023063269,0.010998923,0.019315487,0.008510848,-0.016670732,0.018914387,-0.032489125,-0.018989593,-0.0030239203,-0.023990814,-0.017247314,0.009099963,-0.024216432,0.01326138,0.03196268,0.00035762167,0.00799067,-0.010591555,-0.0046753255,-0.025407199,-0.0031696325,-0.0046001193,0.02098256,-0.017084368,-0.048959307,-0.038405355,-0.03502107,0.0127412025,0.009927233,-0.006881377,-0.008134816,-0.012816409,-0.015680516,0.01346193,0.008435641,-0.0013811325,-0.011262145,-0.022712305,0.046978876,0.017510535,-0.007483028,0.0052049034,0.013775289,0.04898438,-0.009933501,0.015843462,-0.0048476732,0.026973996,0.02363985,-0.0035440973,0.027425235,0.01774869,-0.0038668578,-0.0072010043,-0.042065397,-0.01763588,-0.005737615,-0.019014662,-0.009269178,0.03913235,0.009031025,0.005703145,0.026146727,0.016883817,-0.029054705,-0.028804017,-0.021245783,-0.033867907,-0.0015472132,-0.019516038,-0.008134816,-0.014113718,0.032714747,-0.0053897854,-0.0060259057,-0.014414543,0.014364406,-0.011462695,-0.027675923,-0.027350029,0.007927999,-0.004709795,0.034745317,-0.0027528643,0.023602247,-0.03629958,-0.0015926503,-0.019603778,-0.017823895,0.004919746,-0.007846525,0.02772606,0.008398038,0.0133491205,-0.024316708,0.03243899,-0.0056060036,-0.016044013,0.01814979,0.021258317,-0.0060823103,0.0042522904,0.011556703,-0.00054367894,-0.0053459154,0.011036526,-0.018901853,0.00552453,0.018049514,0.052293453,-0.014025977,-0.057557896,0.029230187,0.04439679,0.0010035342,0.0012213192,0.016871283,0.004446573,-0.024191363,-0.022449084,0.0097329505,0.010955052,-0.013311517,-0.002166882,-0.029104842,0.046753258,-0.014301733,0.008159884,0.027976748,0.012935486,-0.009381987,0.015041262,-0.00076303066,0.026447553,0.009808157,0.008767802,-0.01814979,0.0070819277,-0.009482263,0.0012424709,0.025570145,-0.0015832495,0.008285228,0.017071832,-0.023865469,0.050613847,-0.01812472,0.029606218,0.023715056,-0.0031429972,-0.0031774666,0.0018566558,0.006389403,0.008993422,-0.0064301398,0.031862408,-0.0010536717,0.016645662,-0.0035879677,0.024429517,-0.0070380573,-0.017510535,-0.031411167,0.0016702068,-0.01406358,0.008830475,0.00025891338,-0.01812472,-0.0060039703,0.012145819,-0.012778806,-0.0042522904,0.0036851093,-0.015605309,-0.000028226848,0.008003205,-0.0094885295,-0.03712685,-0.02466767,0.010798372,-0.036174234,0.0013490132,0.035798203,0.0058222217,-0.010967587,0.015855998,-0.014351871,-0.005549599,0.0034062192,0.038931802,0.0030474223,-0.0064740097,-0.020355841,-0.011099198,0.022248533,-0.015592775,0.062471375,0.04544968,-0.025068771,0.015154071,0.01964138,-0.0017062431,-0.017184641,-0.026999066,-0.014903384,-0.021972777,0.008278961,-0.00861739,-0.00013601767,0.0036349716,-0.036475062,-0.016959023,0.037628222,-0.006054108,0.023389162,0.0033999518,0.017598277,-0.029907042,-0.018250065,0.008379237]},{"id":"interface-GatewayGuildDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildDeleteDispatchData\nDescription: GUILD_DELETE — id, unavailable? (true = temp outage)\nProperties: id: string, unavailable: boolean","meta":{"url":"/docs/typedefs/GatewayGuildDeleteDispatchData"},"embedding":[-0.015489817,0.022728909,-0.0043815556,0.01995677,0.0133483065,0.04632493,-0.04556292,0.00324511,0.018091159,-0.010746963,0.028772432,-0.0042698816,0.0026276193,-0.005242101,0.053524606,-0.0108389305,-0.0357619,0.029350508,-0.034894787,0.061065875,0.0060468093,0.031951852,0.0075281295,0.014609564,-0.01974656,0.027169585,0.045589197,-0.008506918,0.024883555,-0.033318214,0.030427832,-0.04204191,0.04432794,-0.034553196,-0.0064245295,0.018485302,0.0002498291,0.0042698816,-0.046508864,-0.03775889,-0.030690596,-0.045746855,0.015502955,0.020101288,-0.05073933,0.03542031,0.008296709,0.0028805279,0.00224333,-0.023596022,-0.0100769205,-0.0029495028,-0.04038651,0.064113915,-0.0053110756,-0.024279203,-0.020272084,0.02396389,0.00794198,-0.0068646558,-0.010510477,0.010162318,-0.0031646392,0.025566736,0.011397299,-0.0076266653,-0.017736431,0.065270066,0.0010009587,0.06936915,-0.009636794,-0.013768726,-0.013243202,-0.015647473,0.019273588,0.023832507,0.0024486128,-0.016856179,0.004641033,-0.043381996,0.0031350784,0.0363137,-0.09627598,-0.052315902,0.044091456,0.006434383,-0.08592316,-0.031163566,0.025658704,0.044144005,-0.016685383,0.015962789,-0.00014913794,-0.037811443,-0.03844207,-0.07667393,0.05192176,0.026092261,-0.039860986,0.051475063,0.060382694,-0.05412896,-0.025251422,-0.037863996,-0.0075478368,0.004824966,-0.026446989,0.04792778,-0.016133584,0.0011364454,-0.06069801,0.0022039157,-0.034053948,0.015187641,-0.015279607,0.008132482,0.021993175,-0.03626115,0.06537517,-0.0032894511,-0.03526265,0.0066938605,0.0352101,-0.021980036,-0.034185328,0.022702632,0.01836706,-0.017355427,-0.071891665,0.016554002,0.03754868,-0.008428089,0.030874528,-0.015148226,-0.019181622,0.024082132,-0.039650775,-0.027563728,-0.030611767,-0.011988513,-0.016843041,-0.0088222325,0.027169585,0.079196446,-0.05294653,0.024449999,0.005537708,0.011436714,0.009367463,0.029376784,-0.043460824,-0.010753533,0.016593417,-0.038284414,0.0013080618,-0.025632428,0.02651268,0.0033420036,-0.021940622,-0.045510367,0.012198723,-0.05875357,0.020258946,-0.0007139735,-0.036339976,0.012179016,0.03342332,-0.015844544,-0.05163272,-0.009709054,0.020390326,-0.0060566626,-0.045668025,0.0074887155,-0.02505435,0.027143309,-0.004223898,0.00690407,-0.029429337,-0.0313475,0.006897501,-0.0024765313,0.035499137,-0.048374474,-0.050292637,-0.02098154,0.004273166,0.02036405,-0.03126867,-0.011935961,-0.017421117,0.01512195,0.008605453,0.019969909,0.015043121,-0.019864803,0.038520902,-0.017421117,0.00428302,-0.010641859,0.011265919,-0.031111013,0.056178503,-0.012638849,0.004016973,-0.0073967488,0.012796506,-0.036497634,0.0012078838,0.013085545,0.03142633,-0.027274689,-0.04259371,-0.006227458,-0.02180924,-0.0024601086,-0.04106969,0.038336966,0.021454513,0.011469559,-0.026446989,0.028062975,-0.019904217,-0.0042436053,0.025974018,-0.013289185,0.015148226,-0.0010559745,-0.008375537,0.006917208,-0.021073507,-0.00617819,0.0058431686,-0.037995376,-0.0039020148,0.017762708,0.024331756,0.015371573,-0.0005185443,0.026736028,-0.028903814,-0.05917399,-0.005186264,-0.006191328,0.0004598334,-0.016251827,0.035998385,-0.0039808434,-0.020810746,0.03334449,-0.012435209,0.06253734,0.01035939,-0.04929414,-0.017775845,-0.011541818,-0.0065493416,-0.021940622,0.034526918,0.014005211,0.034894787,-0.013433704,-0.009222944,0.033607252,-0.01546354,0.012868766,0.07599075,-0.0014148088,-0.046062168,-0.0006441773,-0.0000036213164,-0.001978926,0.06973702,-0.050581675,-0.005018753,-0.0002180103,0.023937613,0.049215313,-0.013039561,-0.011857132,-0.04508995,0.0018524717,0.0030907374,0.037338473,-0.0032779553,0.05502235,-0.0036885208,0.03334449,-0.0016882455,0.057965286,-0.031925578,0.016409483,0.037391026,-0.00052347104,0.015450402,0.027195862,0.045116227,-0.005031891,0.03823186,0.015608059,0.05005615,-0.02927168,-0.041332453,-0.024765313,0.018380199,0.0011988514,0.016120445,0.023701128,-0.020416602,-0.0073836106,-0.012100187,-0.037601233,-0.03720709,0.03342332,-0.016081031,-0.028089251,0.016383206,0.01629124,0.04543154,-0.01573944,0.052210797,-0.006605178,-0.028483395,-0.037128262,-0.026696613,-0.048716065,0.016330654,-0.041463833,-0.0026900254,0.06227458,-0.013505964,-0.035341483,0.0049957614,0.023569746,0.027852766,0.04611472,-0.040491614,0.057071894,0.018498441,-0.036760397,-0.002325443,0.006572333,0.006871225,0.016606554,0.029560719,-0.044275388,-0.02824691,0.023504056,0.006089508,0.04343455,-0.007081434,0.034421813,-0.010050644,-0.047954053,-0.023254432,-0.03334449,0.047139492,0.013190649,-0.0091244085,0.048558407,-0.015713165,0.01629124,-0.01166663,0.02706448,0.0291403,0.012224999,-0.042409778,-0.0040826635,0.0022449724,-0.02982348,-0.0027951302,0.01898455,-0.050502844,-0.021796104,-0.031111013,0.0117914425,-0.030821975,-0.004693585,0.037601233,0.010188594,-0.012757093,0.014819774,-0.02148079,-0.01353224,0.016606554,0.00044341077,-0.04261999,0.039519396,-0.07215443,-0.023490917,0.042751368,0.011180521,-0.0070945723,-0.032687586,-0.04424911,-0.03891504,0.008447796,0.016580278,0.018485302,-0.009282066,0.042068187,0.040885758,-0.03791655,-0.0020955265,-0.009380601,0.031163566,0.037023157,0.008460934,0.03728592,-0.057177,-0.002855894,0.032319717,0.026696613,0.015936513,0.04619355,-0.08566039,0.013144666,-0.039204083,-0.025395941,-0.0013039561,-0.006207751,0.020508569,-0.008920768,0.013440274,0.017854674,-0.03639253,0.0022039157,0.018340783,0.024817865,-0.09385856,-0.07888114,-0.0065789022,0.024962384,0.017723292,0.06579559,0.0021595748,-0.0060468093,-0.054864693,-0.030427832,-0.025868913,-0.047559913,-0.002813195,0.0023960604,0.007173401,0.0007501032,0.017302874,0.06117098,-0.028903814,0.048427027,0.004956347,-0.028483395,0.005537708,-0.0238982,0.01836706,-0.045352712,-0.01580513,-0.033817463,0.028404566,-0.034132775,0.005330783,-0.046167273,-0.03376491,-0.012192154,0.06033014,-0.028325737,0.016409483,0.0044702375,0.017513083,0.009781313,0.03397512,-0.04474836,-0.02554046,0.067372166,0.0045753424,0.002036405,0.022886565,-0.002511019,0.035367757,0.06984212,0.0015831407,-0.0046804473,0.009715623,-0.015069397,-0.029166576,0.042882748,0.0396245,0.017145216,0.006303002,-0.065532826,0.017578773,-0.03066432,-0.0029708522,0.04997732,-0.0151745025,-0.0060665165,0.0058431686,0.019943632,-0.030480385,0.018840032,0.0012826067,0.00043684174,-0.043355722,-0.0010994945,-0.024896694,0.02278146,-0.010858637,-0.03224089,-0.034999892,-0.029665824,-0.05528511,0.002098811,0.020810746,-0.003908584,-0.025303975,-0.041936807,0.009656501,-0.026499541,0.032556206,-0.017999193,0.011456421,-0.0060106795,0.034842234,0.00068071764,-0.018656097,0.015660612,0.00011834552,0.0063818307,-0.07436163,-0.004723146,0.030532937,0.024344893,-0.0324511,0.013479687,0.056388713,0.013105252,-0.004956347,-0.025303975,0.010017799,0.025014937,-0.042541157,0.015686888,0.014018349,0.02466021,-0.0065559107,-0.006398253,-0.007298213,-0.026184227,0.03100591,0.0024666777,0.029087747,0.00079854997,-0.008894492,-0.022150831,0.003465173,0.008782818,-0.0045129363,-0.0011939246,-0.036208596,0.012862197,-0.010582738,0.007133987,-0.01630438,0.024699623,-0.018905722,-0.0141103165,-0.00011865344,-0.020508569,0.022085141,-0.007160263,-0.006240596,0.0015938154,0.03339704,-0.023569746,0.009236082,0.042567436,0.03226717,-0.0013745734,0.01912907,0.008414951,-0.028325737,-0.022912841,-0.07536013,0.009078425,0.07457184,-0.06689919,-0.0002574246,0.018537855,-0.0060993615,-0.042567436,0.024331756,-0.00745587,-0.012665126,0.013624207,-0.029797204,0.032056957,-0.018196264,0.02837829,0.006759551,-0.012172447,0.022072002,0.010530185,0.024016442,-0.022912841,-0.011305332,0.045352712,0.010319975,0.011081985,0.01677735,0.0033929136,0.011587801,-0.011423576,-0.012645419,0.0059548425,-0.022072002,-0.03678667,-0.016501449,-0.01919476,0.01698756,-0.038626004,-0.03058549,0.023648575,0.008185035,-0.015240192,-0.001978926,-0.013913245,0.016501449,-0.038678557,-0.020456018,-0.009104702,-0.012579728,-0.010477632,-0.032503653,-0.05073933,-0.017999193,-0.024739036,-0.04177915,0.017788984,0.0031432898,0.0041647768,-0.02506749,-0.0073836106,-0.011022864,0.015266469,0.008513487,0.015489817,-0.02230849,-0.026959375,-0.013571654,0.013065837,0.00383304,-0.0036819517,-0.025028074,0.02305736,-0.011765166,0.042357225,-0.0006651162,-0.04025513,0.04882117,-0.018406475,0.002826333,0.0056329593,0.00993897,0.016409483,0.034763403,-0.0122052925,-0.0031925575,0.03460575,0.020075012,-0.010543323,0.016028479,0.025842637,0.01828823,0.03142633,0.0054030423,-0.018971412,0.0063161403,-0.012264414,-0.05297281,-0.009465999,0.014438769,-0.0043060114,0.010260854,-0.025501046,0.02243987,0.042409778,-0.003852747,0.07725201,-0.008106206,-0.0030578922,0.0014402639,0.020390326,0.03528893,0.020731917,-0.012021359,-0.004404547,0.017841537,0.010385666,0.037233368,0.010024368,-0.020009322,-0.020324636,0.0059022903,0.03492106,-0.020285223,0.0037115125,0.00786972,0.021362545,0.007955118,0.00438484,-0.013374583,-0.0050417446,0.013992073,-0.07357334,-0.011279057,-0.011285625,0.00052634504,-0.038888767,-0.0012472981,0.01828823,-0.013795002,0.04156894,0.034342986,-0.0009196668,0.0048578116,-0.015713165,0.01669852,0.0042140447,0.003990697,-0.017920364,-0.045878235,-0.024003303,0.007153694,0.000278774,0.0017490091,0.020377189,0.018669236,0.035814453,0.02774766,0.0031613547,0.0031941999,0.023517193,0.03279269,-0.0049464935,-0.03274014,-0.028614776,-0.013965798,0.018078022,0.0032303296,-0.017788984,0.0110294325,-0.018025469,0.009853573,-0.026749166,0.014307388,-0.018682374,-0.05108092,0.0054260343,0.021782964,-0.030953357,0.04109597,0.0067464127,-0.010214871,0.03507872,0.061118428,0.004066241,0.00821788,-0.052368455,-0.0032221184,0.012422071,0.025645565,-0.015358436,-0.01573944,0.00045121153,0.021441374,0.019588903,-0.037391026,-0.0029035194,-0.02188807,0.002806626,0.018616684,-0.010037506,-0.014964293,-0.010687842,-0.02333326,0.020101288,0.016107308,0.027511176,0.0094265845,-0.025264561,0.003727935,-0.031111013,0.010221439,-0.018012332,-0.009787883,-0.00026070912,-0.02036405,-0.0031876308,-0.076831594,-0.0006659373,0.022242798,0.011830856,0.0041614925,0.0346583,0.026381299,0.03720709,0.0008006028,-0.05449683,0.033948842,-0.022400456,-0.02071878,-0.004240321,0.060645457,-0.005757771,-0.0077908915,0.027800214,0.021690998,0.025566736,-0.011160813,0.007968256,-0.017000698,0.013407428,-0.010208301,0.008290139,-0.00493664,-0.01325634,-0.0012686475,0.01919476,0.036681566,-0.043408275,-0.02893009,-0.007147125,-0.009071856,-0.011541818,-0.0020265514,0.017237183,-0.0068055345,-0.0285885,0.01794664,-0.011049139,-0.0010494055,0.017000698,-0.019418107,0.025317114,0.014964293,0.025435356,-0.0151745025,-0.0051337113,-0.0467979,0.020915851,0.005757771,-0.017066387,-0.00024859744,0.0072062463,-0.0014501174,0.030375281,-0.044380493,-0.04149011,0.027773937,0.040071197,0.001584783,-0.024633933,0.035656795,-0.02354347,-0.020928988,-0.001258794,0.038704835,-0.0020216247,0.018564131,0.017697018,0.03431671,0.000009410932,0.003044754,0.046035893,-0.019273588,0.0041253623,0.023714265,0.029035194,-0.016974421,0.03426416,-0.0011241285,-0.00794198,0.025041213,0.015043121,-0.009741899,0.010694411,-0.010871775,-0.021625308,-0.0064935046,-0.0015240193,-0.007974825,0.02534339,-0.004591765,0.0151745025,-0.03825814,-0.028325737,-0.020600537,0.003494734,-0.018117435,-0.011095123,-0.004329003,-0.046062168,0.0077449083,-0.03271386,0.014609564,0.027379794,-0.0077908915,0.01546354,0.010484202,0.040517893,-0.020955265,0.013368014,-0.0066741533,-0.019523213,0.018064883,-0.00497277,0.017210906,0.013886969,-0.018235678,0.016921869,-0.012829352,-0.01090462,0.016829902,0.040176302,0.015568645,-0.0045950497,0.008106206,0.05549532,-0.048374474,-0.013663621,-0.016501449,0.0090127345,0.012881904,-0.01781526,-0.006283295,0.02837829,-0.029928586,-0.027931595,-0.00033029998,-0.019181622,-0.050082427,-0.02940306,0.059279095,-0.013262909,0.029297957,-0.011594371,-0.017381702,-0.015594921,-0.0010009587,-0.049215313,-0.03681295,-0.012507468,0.009406878,0.04424911,-0.020416602,0.03657646,-0.02312305,0.016448898,0.013420566,0.009860142,0.0028345445,0.008244156,-0.0015396208,-0.023937613,-0.011587801,0.017683879,-0.03880994,-0.013105252,-0.038074207,0.032976624,-0.014386216,-0.010536754,-0.0048906566,0.03978216,-0.025855776,-0.010096627,0.02002246,0.020416602,0.0017013836,-0.023569746,0.0025192301,-0.003915153,0.057177,-0.00011270024,0.02782649,0.0053242138,-0.0030316159,-0.008763111,0.024673346,0.032319717,0.03100591,0.014557011,-0.0058727292,-0.027432347,0.030138794,0.027905319,-0.0046016187,-0.009268927,0.018656097,0.02927168,0.015581783,-0.015043121,0.0037115125,-0.0027294396,-0.0019871371,0.026210504,-0.033686083,0.001891886,0.003984128,0.019234175,0.009275497,-0.002900235,0.015003707,0.035026167,-0.026565233,-0.005291369,0.0018771057,-0.026617784,0.007140556,-0.00766608,0.017486807,0.04861096,-0.014267974,-0.0006757909,-0.06069801,0.010260854,-0.048663512,-0.0013565086,-0.008191603,-0.02104723,-0.02036405,-0.003911868,-0.00428302,-0.0003358426,0.019838527,0.026105398,-0.0063818307,0.035577968,0.009039011,-0.018406475,0.014281112,-0.027432347,0.0074952845,-0.02271577,0.01533216,0.039020147,0.0028805279,0.020035598,-0.025987156,0.0019083086,-0.035183825,0.012717678,0.0053045065,-0.0046968698,-0.008749973,0.015857683,0.00302012,0.011837426,0.013479687,-0.017316012,-0.019102793,-0.0002703574,0.02023267,0.014622702,-0.0363137,-0.00828357,-0.014688392,-0.027800214,0.04861096,0.048032884,-0.000109518354,-0.0031629968,-0.02706448,-0.015568645,-0.005294653,0.029087747,-0.0012472981,0.014662117,-0.008520056,-0.013821278,0.016238688,0.023504056,-0.011049139,-0.034815956,-0.0058595915,0.0053110756,0.00035637087,-0.00045531717,0.013886969,0.02312305,-0.0046771625,-0.04364476,0.0011109903,-0.0109506035,-0.018695513,0.0065953247,0.007133987,0.00731792,-0.022676356,0.002750789,-0.02651268,-0.03431671,-0.019720284,0.0037673493,0.009860142,0.045063674,-0.0066741533,0.026157951,0.018275093,-0.0031531432,0.0379691,0.002826333,0.0057807625,0.01857727,0.014254835,-0.030559214,-0.0034980183,-0.008073361,0.011798011,-0.018196264,0.014767221,-0.013913245,-0.01588396,0.016882455,0.01739484,-0.0077974605,0.041516386,-0.0030102665,0.020902712,-0.030953357,0.020547984,-0.0073770415,0.013558516,0.006897501,-0.027038204,0.05549532,0.011193659,-0.013190649,-0.038520902,0.0056362436,-0.015726302,-0.012198723,0.005958127,-0.0064179604,-0.0012325178,-0.01139073,0.029613271,-0.016764212,0.08723696,-0.03113729,-0.011364454,-0.015897097,0.0024765313,0.014044626,-0.019720284,0.01249433,-0.021086646,0.0010296984,-0.022190247,-0.0011471201,-0.013197219,-0.010990018,0.013000147,0.014767221,-0.0069566225,0.024607657,0.010241147,-0.007994532,0.007836875,0.0029297958,-0.0150956735,-0.014438769,-0.012868766,-0.04564175,0.042409778,-0.016028479,0.011298764,0.031189842,0.005232247,0.018485302,0.006657731,-0.02547477,-0.03707571,-0.0022351188,0.0033354345,-0.020429742,0.0029035194,-0.027695108,0.02243987,-0.01249433,-0.026105398,-0.014819774,-0.024476275,0.009965247,-0.024686484,-0.04932042,-0.01173889,-0.01906338,0.005442457,-0.012067342,0.010674704,-0.036366254,-0.01643576,-0.019391831,0.022137694,0.04296158,-0.0060993615,0.0031400053,-0.02698565,0.015043121,0.0013244844,-0.0033485724,0.035315204,0.05701934,0.008434658,0.0016718229,0.008014239,0.030322729,0.011121399,-0.0020413317,-0.0118242875,-0.00793541,0.00057930796,0.00029704417,0.0029232267,-0.022623803,-0.0040071197,0.025120042,0.014202283,-0.01573944,0.022886565,0.013781864,-0.06621601,0.048427027,-0.0247259,-0.0125862975,-0.009328049,-0.009196668,0.0014542232,-0.027931595,-0.026683476,-0.018380199,0.0141103165,-0.0075412677,-0.009150685,-0.011417006,-0.032687586,0.020311499,0.00091474,0.023254432,-0.02230849,-0.012165878,0.01753936,0.0037115125,0.009755037,-0.004966201,-0.0028460403,-0.020534845,-0.028824985,-0.02312305,-0.014964293,0.008401813,0.0015585067,-0.031111013,0.059594408,-0.06758237,-0.015621197,-0.007817168,0.010635289,0.023228155,-0.0026867408,-0.022492422,-0.014281112,0.003852747,-0.0023714264,0.011049139,0.008171896,-0.003990697,-0.02188807,0.033370767,0.016186135,-0.031216118,0.0004705081,0.021690998,-0.019904217,-0.017697018,-0.026013432,-0.011929392,-0.0013285901,-0.008237587,-0.018603545,-0.00048036166,0.0015141657,0.015371573,0.013584793,-0.0045589195,-0.009853573,-0.005274946,-0.033186834,0.0010305195,-0.045037396,-0.034684576,0.016882455,-0.031925578,0.03168909,0.01374245,0.017631326,-0.021257441,-0.01677735,0.0040005506,-0.020390326,0.0043717017,0.025093766,0.02154648,-0.016554002,-0.009603949,0.016724797,0.009282066,-0.0051074354,0.005281515,0.0075281295,-0.005646097,0.015450402,-0.024397446,-0.013676759,-0.022978531,-0.017828397,-0.021020954,-0.02664406,-0.019339278,0.016094169,0.025908327,0.0010231293,0.004079379,-0.033029176,-0.008953613,-0.012941025,-0.014399354,0.01656714,0.0031531432,-0.01380814,-0.029613271,-0.02174355,-0.033659805,0.014307388,0.020534845,0.0023894913,0.020534845,-0.024870418,-0.0022318342,-0.013223494,-0.0063292785,-0.0038231863,-0.0038166172,-0.0119491,0.024936108,0.00856604,-0.0005444099,-0.009511982,0.022873428,0.01152868,0.0006101004,0.010983449,-0.0038757387,0.010103197,0.016501449,-0.020390326,0.032293443,0.009511982,0.008211311,-0.0073901797,-0.057124447,-0.02023267,-0.035341483,0.036760397,0.02740607,0.01491174,0.027274689,0.009564535,0.0324511,-0.0011077058,-0.07010489,-0.022742046,-0.00828357,-0.0012390867,-0.010609013,-0.0100769205,0.0114432825,0.012211861,0.007994532,-0.024817865,0.023149326,-0.006871225,0.001109348,-0.010668135,0.001534694,-0.0341065,0.016317517,0.00012193796,-0.004949778,0.011843994,0.021178612,-0.046771627,0.010365958,-0.019602042,-0.042751368,-0.002982348,-0.025671842,0.010792946,0.009262359,-0.0075478368,-0.0050023305,0.018183127,-0.0018311223,-0.0123957945,0.0035472861,0.008027378,-0.024594517,0.005199402,-0.022860289,-0.030874528,0.02396389,0.001216095,-0.008086499,0.011752028,0.015148226,0.031794194,0.009367463,-0.045484092,0.016803626,0.034500644,0.0042567435,-0.034159053,-0.0070617273,-0.03226717,-0.035104994,0.001427947,0.02299167,0.014504459,0.0034290433,-0.010392235,-0.017618189,0.050292637,-0.0047395686,-0.024331756,0.018879445,0.004792121,-0.00022314237,-0.0010912832,-0.021204889,0.043881245,-0.018117435,-0.018945135,-0.047323424,-0.0035078719,-0.013755588,-0.00028287966,0.02596088,-0.021769827,0.015700025,0.005150134,-0.00049637374,0.0341065,-0.011765166,0.035525415,0.03140005,0.00800767,-0.0070551583,0.008053654,0.015831407,-0.02174355,-0.03066432,0.0057873316,0.0017572205,0.0033699218,0.006723421,0.020061875,0.019431246,-0.028036699,-0.015975926,-0.024003303,-0.017302874,0.010471064,0.01974656,-0.00834926,-0.021704137,0.033370767,-0.013197219,-0.01643576,-0.022925979,0.0037640647,-0.024397446,0.009485706,0.020061875,-0.005652666,-0.011417006,0.009702485,-0.04556292,0.01953635,0.011095123,-0.0038724542,-0.028299462,0.015016845,-0.0050417446,-0.000017487526,-0.0053800507,0.075149916,-0.003954567,-0.0025914896,-0.05649382,0.013039561,0.013834416,-0.0019690723,0.037732616,0.03140005,-0.02299167,-0.011725752,0.029087747,-0.006601894,-0.015108812,-0.0324511,0.012218431,-0.015213916,0.0027984148,-0.0008223628,-0.003911868,-0.019221036,-0.04025513,-0.0038494624,0.029849757,-0.0046081874,0.00717997,0.0062044663,0.006289864,0.023254432,0.008099637,0.0018853169]},{"id":"interface-GatewayGuildEmojisUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildEmojisUpdateDispatchData\nDescription: GUILD_EMOJIS_UPDATE — emoji list for a guild changed.\nProperties: emojis: APIEmoji[], guild_id: string","meta":{"url":"/docs/typedefs/GatewayGuildEmojisUpdateDispatchData"},"embedding":[-0.009879254,0.0036567557,-0.0028520976,0.031040901,0.0005251038,-0.0018698993,-0.025176348,-0.002721806,0.026092684,-0.006523171,-0.01235909,-0.021110104,-0.021522455,-0.014638477,0.018945258,-0.011018948,-0.029964207,0.033492103,-0.028635519,0.03640147,-0.022198254,-0.005718513,0.028566793,0.044465233,-0.007857586,0.03005584,-0.02888751,0.03672219,0.025267981,-0.020926837,0.006958431,-0.03133871,0.09145039,-0.025588699,-0.040822797,0.03078891,-0.043869615,0.022473155,-0.001756789,-0.020125043,-0.016665872,-0.05951606,-0.0021605499,0.009478357,-0.06460173,0.029139504,-0.032438315,0.0040862886,0.029712213,0.015440271,-0.008206939,0.032323774,0.0012671216,0.03557677,-0.0040776976,-0.028704243,-0.029872572,0.0114942975,-0.028108625,0.03408772,0.017811293,-0.018063284,0.007519687,-0.04160168,0.0120383715,0.016276428,-0.0563547,0.04293037,0.03587458,-0.020102134,0.024763996,0.01698659,-0.016894955,0.0070615187,-0.0059390063,-0.0111621255,-0.038371596,-0.0153486375,0.015875531,-0.054292943,-0.013080705,0.040410444,-0.06139455,-0.077476256,0.030422375,0.0029981388,-0.039402474,-0.020434305,0.0035250324,0.03525605,-0.022014987,-0.013630507,-0.09704004,-0.012989071,-0.03468334,-0.057087768,0.040639527,0.0013458694,-0.032392498,0.052002102,0.07816351,-0.05314752,-0.09410777,-0.043732163,-0.00009592899,-0.0054522026,-0.022919869,0.023870569,-0.048153486,-0.011809288,-0.07944638,0.022988595,-0.008264211,-0.009071732,0.006832435,0.00567556,0.020903928,0.0117233815,0.051085766,-0.03051401,-0.06524316,-0.013607598,0.040799886,-0.020926837,-0.0068954327,0.034454256,-0.005770057,-0.014856107,-0.06391448,-0.009661624,0.012977617,-0.02602396,0.039791916,0.04723715,-0.03482079,-0.0117405625,0.009117549,-0.01570372,-0.049069826,-0.015543359,0.017891472,-0.021705722,0.009186274,0.01698659,-0.055804897,-0.0070901546,-0.053743143,-0.0067808907,-0.027513007,0.02643631,-0.03944829,0.022748055,-0.023504034,0.001393118,0.011219396,-0.013321243,-0.025313798,-0.007072973,-0.014512481,-0.008871283,-0.028864603,-0.062035985,-0.0035364865,-0.0021906171,-0.02428292,-0.014775927,0.03624111,-0.010686776,-0.033446286,-0.014317759,0.037019998,-0.038806856,-0.046458267,0.011236577,-0.028566793,-0.0032444042,0.008264211,0.013481602,-0.0846695,0.015234096,0.037019998,0.01257672,-0.063685395,-0.05447621,-0.010583688,0.007754498,-0.007840405,0.0013036319,-0.008934282,-0.012507995,-0.013057796,0.029116595,0.050948314,0.018326731,0.032140505,-0.03759271,0.03065146,-0.017089678,0.018384002,-0.03223214,0.024168378,0.018280914,0.060478214,0.0024841311,-0.008212667,-0.027283922,0.008143942,-0.03727199,0.00015275259,0.011368301,0.044190332,-0.028498068,-0.026069775,0.00054156926,-0.050123613,0.02357276,-0.05548418,0.0304911,-0.013435786,0.02542834,-0.019288884,0.05232282,0.06542643,-0.031728156,0.017353125,0.0055180644,-0.0021505274,-0.0012477927,-0.021866081,0.048749108,0.0015864078,-0.017444758,-0.018750537,-0.06029495,0.0054092496,-0.032873575,0.010056794,0.0062253615,0.019689782,0.03630984,-0.0138939535,-0.027100654,0.009627261,0.016127525,0.00096931227,-0.0063914475,0.014730111,0.006196726,-0.011912376,0.05099413,0.0163337,0.03798215,0.012256002,-0.038738128,-0.003207178,-0.004710543,-0.021682814,0.03207178,0.014123037,0.040364627,0.008831194,0.0036710734,-0.0010945927,0.03424808,0.008917101,-0.00511144,0.025267981,0.035004057,-0.039791916,0.0044442327,0.030536916,-0.00097074406,0.044763044,0.02384766,0.0022722285,0.02275951,-0.0073421467,0.0065460796,0.018498546,-0.013985587,-0.030880542,-0.0329423,0.0011225123,0.033285927,-0.010463418,0.046000097,0.05649215,-0.003943111,0.01603589,0.019334702,-0.0054149767,0.003169952,0.0056698327,-0.010268697,-0.00009261801,0.044648502,0.043869615,-0.0016780414,0.028772969,0.028268984,0.0069870665,-0.025680333,-0.06231089,-0.01603589,-0.027283922,-0.0045072306,0.0013093591,0.008103852,0.00015060493,0.009993796,0.05177302,-0.015932802,-0.03470625,0.011328211,-0.033744097,-0.0058101467,0.0077029546,0.060340766,0.05493438,-0.0034648976,0.003041092,0.01044051,-0.0012771441,-0.038234144,-0.061440367,-0.030445283,0.008275664,-0.042014033,0.0054722475,0.02774209,0.038623586,-0.02760464,0.03509569,0.061348736,0.02629886,0.045656472,-0.02183172,0.05869136,0.033996087,-0.030674368,0.015279912,-0.0068897055,0.015211187,-0.03844032,0.04897819,-0.03614948,-0.035439316,0.05305589,-0.004696225,0.0040232902,0.0003169594,0.017765475,0.0028291892,-0.04769532,0.0041550137,-0.07628502,0.015864078,0.004306782,-0.0002804491,0.050169427,0.00029082948,-0.0076915002,0.00366821,0.056629602,0.008430297,-0.007239059,0.008430297,0.033194292,0.025038898,-0.022587696,-0.019472152,-0.03145325,-0.034179356,-0.03191142,-0.0117749255,0.0012184413,-0.019071255,0.00982771,-0.018979622,-0.019884504,-0.026505036,0.0055810628,-0.0050312607,0.0019128526,0.04377798,-0.0003430893,-0.012656899,0.00436978,-0.014306305,0.01747912,0.04222021,0.02017086,-0.044327784,-0.035049874,-0.028933328,0.006912614,0.019243069,0.008367298,0.0047706775,0.0054235673,-0.006523171,0.0153830005,0.04244929,-0.006523171,-0.024305828,0.018017469,-0.014352121,0.041693315,0.045748103,-0.027971175,0.0026903069,0.0144552095,0.012370544,0.015531905,0.02616141,-0.04696225,0.011230851,-0.03903594,-0.03614948,0.04277001,-0.014649931,-0.002952322,-0.0039602923,0.0027848042,0.020995563,-0.032827757,0.020399943,-0.023481125,-0.024603637,-0.04680189,-0.061440367,0.014203217,0.02716938,-0.03191142,0.06602205,-0.045037944,0.0053892047,0.011900921,0.0038715221,-0.0258636,-0.061898537,0.0090087345,-0.007170334,0.026894478,0.0016880638,0.008161123,-0.0022278433,-0.030216198,0.008791104,-0.008584929,-0.027650457,-0.001756789,-0.019861596,0.031384528,-0.028635519,-0.008768195,-0.01127094,0.021648452,-0.01576099,-0.022152437,-0.021144466,-0.0039889277,-0.023618575,0.034179356,0.01631079,-0.005323343,-0.055850714,-0.0044614137,0.02180881,0.030216198,-0.042540926,-0.0049081277,0.01603589,0.028566793,-0.00006062676,0.0010595142,-0.000074318115,-0.011328211,0.044167425,0.05722522,-0.046023004,0.03585167,-0.012691262,-0.048336755,0.029964207,0.048199303,0.019907413,-0.04176204,0.021052834,-0.01848709,-0.007571231,0.023297857,0.0063799936,-0.010709684,0.0421973,-0.015108099,-0.0063055414,-0.07816351,0.0008268506,-0.026642486,0.0057872385,-0.016757505,-0.016940773,0.012828712,0.020915383,0.01922016,0.0044327783,-0.004925309,0.015050828,0.020480122,0.0080809435,-0.016940773,-0.012805804,-0.036836732,0.0021562546,0.004873765,-0.024466187,-0.004326827,0.0054264306,0.008155395,-0.016345154,0.011935284,0.042243116,-0.02904787,0.0057528755,-0.0006349926,0.04288455,-0.10134683,0.0047706775,0.0117405625,0.017410396,-0.03942538,0.013630507,0.032575767,0.009804801,-0.0069469768,-0.0038171145,-0.0038686586,0.059470244,-0.021373551,0.0012513722,0.021900445,0.009856345,0.00978762,-0.004140696,0.02515344,-0.04070825,0.023389492,0.012851621,0.00104806,0.016150432,-0.007015702,0.02414547,-0.0031298622,-0.009959433,0.01938052,0.0007853291,0.0024297237,0.031751063,0.01943779,0.024672363,-0.008499022,0.028864603,-0.0027704865,-0.033835728,0.016516967,0.026848663,0.014145946,-0.030811818,-0.001987305,-0.019449243,0.01097313,-0.0020660528,0.015199733,0.017822746,0.026665395,0.00022729443,0.05071923,-0.0068667973,-0.010423329,-0.012989071,-0.06757982,0.02774209,0.025657425,-0.047374602,0.037821792,-0.011843651,-0.02629886,-0.015405909,0.03514151,-0.005538109,0.016299337,0.026665395,-0.011024674,0.015131008,-0.01206128,-0.006357085,-0.019185798,-0.017101131,0.013218155,-0.011620293,-0.00032912949,-0.017708205,0.014077221,0.017628025,-0.00031606454,-0.011259486,-0.010520689,-0.004633227,0.011465661,-0.008894192,0.012897437,-0.018750537,-0.026115593,-0.033102658,-0.031659428,-0.009965161,0.03136162,-0.013985587,-0.015646446,0.0017825611,0.017880017,0.009684532,-0.02058321,0.0086937435,0.041647498,0.009209183,-0.009203455,-0.0042437837,-0.025978142,-0.009106095,-0.063318856,-0.044327784,-0.023687301,-0.0280399,-0.023801843,0.007399418,-0.030720184,0.020273946,-0.024489095,0.015108099,0.007823223,0.037638526,0.00077459076,0.058279008,-0.01065814,0.011081946,-0.013458693,0.014764474,0.024099652,-0.009151911,-0.017902926,0.013493056,0.0030554098,0.02147664,-0.0021591182,-0.033423375,0.06794636,-0.01943779,-0.009930798,-0.032827757,0.0018069012,0.018761992,0.034041904,0.021923352,0.039242115,0.01848709,0.03234668,-0.0048909467,0.034454256,0.02131628,0.018555816,0.022014987,0.021923352,0.010377512,-0.024008019,-0.026779937,-0.05099413,-0.000057852696,-0.0017038133,0.018475637,0.0073707826,-0.036034938,-0.021762993,0.043457262,-0.03727199,0.029162413,0.009220637,0.02991839,-0.02025104,0.0012485086,0.026184319,0.0017968788,-0.017902926,0.011036129,0.026550854,0.023229133,0.0148217445,-0.0056870137,0.018235099,0.016161887,0.034018997,-0.016242066,-0.0052689356,-0.0032100417,0.0031842696,0.006431537,-0.011574477,0.03106381,0.0067751636,-0.007611321,0.01603589,-0.04187658,0.0025471293,0.0063685393,-0.016322246,-0.024901446,-0.0027876678,0.011568749,-0.0053118886,0.0068725245,0.038852673,-0.0150851915,-0.021728631,0.0060191858,-0.0077029546,0.018223643,0.027810816,-0.04680189,-0.02730683,-0.022725148,0.054018043,0.0070557916,0.0012499404,-0.006024913,0.010715411,0.029139504,0.024672363,-0.023893477,0.011282395,-0.00747387,-0.00423233,-0.025199257,-0.017318761,-0.04364053,0.024374554,0.0033389016,0.01257672,-0.04171622,0.014604114,-0.0037111633,0.0058301915,-0.023423854,0.013447239,-0.020079225,-0.025405431,0.0054722475,0.006311268,-0.0020517348,0.026321769,0.043365628,0.016402425,0.018246552,0.080591805,-0.010205699,-0.023389492,-0.019151434,-0.0055466997,-0.010348876,-0.012244548,-0.033606645,-0.006431537,-0.009695986,0.005956188,0.035210233,-0.025336707,0.002005918,-0.037844703,0.014420847,0.016734596,-0.042357657,-0.00856202,-0.014111583,-0.011591658,0.015486089,0.006677803,0.002267933,-0.022816781,0.0062711784,-0.013515965,0.0019973274,-0.0023552715,-0.0099193435,0.0046103187,-0.016620055,0.015291367,0.021178829,-0.07009975,-0.021843173,0.052414455,-0.01581826,0.016230611,-0.0052546174,-0.014901924,0.04086861,-0.0017181311,-0.02428292,0.04295328,-0.055255096,0.0038428865,-0.018991075,0.034110628,-0.004358326,0.01690641,0.014008496,-0.007777407,0.012026918,0.001259247,0.021579728,0.0044642775,0.00873956,0.0017023815,0.0056870137,0.008670835,0.00047821316,0.033996087,0.0028291892,0.01467284,-0.026138501,-0.001054503,-0.041578773,-0.0005540973,-0.0132639725,-0.0022077984,0.0045788195,-0.016219158,-0.028979145,0.034225173,0.00013208133,0.004873765,-0.012759987,-0.019334702,-0.00785186,-0.0038514773,0.035026968,-0.017742567,-0.0028864602,-0.00080752163,0.0048594475,0.016642964,0.01739894,-0.03191142,-0.011156398,-0.018578725,0.015772443,-0.028795877,-0.019930322,0.034018997,-0.00969026,0.02080084,-0.0038858398,0.02384766,-0.02426001,-0.029139504,-0.014695748,0.02426001,0.014249034,-0.0022049348,0.018922351,-0.020067772,0.004988307,-0.041991126,0.04134969,-0.0035994847,0.012256002,0.027535915,0.0054350216,-0.011070492,0.003585167,0.04279292,0.025107622,0.017799838,0.017662387,-0.023916384,-0.033996087,-0.005661242,-0.022450246,0.0050942586,-0.012611083,-0.0013115067,0.03580585,0.017662387,0.0090259155,0.020021955,-0.008842648,-0.01840691,-0.0098849805,0.015738081,-0.0015162507,0.012198731,-0.060890567,-0.03958574,-0.020995563,0.009552809,0.011597385,-0.0062024533,0.011855105,-0.0056411973,0.04034172,0.0044356417,0.020216675,-0.026367586,-0.00012823343,0.0153486375,0.015497543,0.03876104,-0.002504176,-0.008275664,0.004146423,0.0027461462,-0.006357085,-0.0006432253,0.032759033,0.009363814,0.01791438,0.003917339,0.019117072,0.007009975,-0.044304874,-0.021877537,-0.0063914475,-0.0005666253,-0.01083568,-0.011878013,0.0089915525,-0.014798836,-0.012794349,0.0055295187,-0.019918866,-0.034339715,-0.032575767,0.012221639,0.0046160454,0.00042022622,0.022667876,-0.008241302,-0.044694316,0.04668735,-0.037730157,-0.032827757,-0.002594378,0.037615616,0.017215673,-0.03262158,0.017628025,-0.02017086,-0.00008523541,0.047649503,-0.0010187086,-0.013813774,-0.02017086,-0.045289937,-0.03003293,-0.027925357,-0.017169857,-0.03816542,-0.018063284,0.02248461,0.012015464,-0.00869947,0.02030831,-0.020835204,0.035004057,0.003762707,-0.033194292,0.030674368,0.011694746,-0.027398463,-0.014753019,-0.015039374,-0.0035422137,0.04538157,-0.017444758,0.050490145,-0.04018136,-0.00515153,-0.00008702513,-0.03827996,0.026665395,-0.0016694508,0.03598912,-0.014409393,-0.03608075,0.041739132,0.0129661625,-0.0072505134,-0.026275951,0.062494155,0.002657376,0.00664344,-0.025405431,-0.024901446,0.022427337,-0.04393834,0.005188756,0.0029723668,0.038646497,0.00044062905,0.045541927,0.0037770248,-0.0050713504,-0.008567747,-0.014249034,-0.031178353,-0.017467666,-0.0032787668,0.0051858923,0.0018111966,0.006219635,0.009512719,0.037615616,-0.016516967,0.036951274,-0.044167425,-0.012107098,-0.053284973,-0.00007897139,0.010177063,0.0056011076,-0.013126521,0.011036129,0.021705722,-0.02904787,0.009192001,0.013275427,0.002612991,0.054567844,0.017765475,0.013126521,-0.02657376,-0.028658427,-0.021327734,0.023664393,0.027925357,0.06111965,-0.005838782,0.0033589464,-0.007857586,-0.0071989694,-0.027627548,-0.009409632,0.031728156,-0.00022353602,-0.013378514,0.029231137,-0.005460793,-0.025084713,0.007828951,-0.014501027,-0.025084713,-0.044007063,0.015360092,0.0059275525,-0.004991171,0.017387487,0.0049224454,-0.012049826,0.021854628,0.028841695,0.025680333,0.004633227,-0.007960674,0.010640958,-0.02758173,0.027558822,0.010073976,0.019907413,-0.009890708,-0.024237102,0.012049826,0.017387487,-0.031430345,0.005320479,0.018006014,0.009575717,0.028589701,0.031728156,0.013309789,0.024214195,0.0037798884,-0.05969933,0.0092893625,-0.0048164944,-0.051177397,-0.025519975,0.03915048,-0.013389968,-0.03280485,-0.0019787143,-0.01647115,0.016070252,-0.002293705,-0.0009098936,0.019185798,-0.005707059,0.035026968,0.008395934,0.015875531,-0.025405431,0.012599628,-0.0057614665,0.017547846,0.0153830005,-0.0031413164,-0.057179403,-0.0046217726,-0.019506516,0.033904456,0.024603637,-0.009558536,0.016917864,-0.010852861,-0.0011991124,0.060890567,0.02256479,0.009249273,-0.01753639,0.025726149,-0.02556579,-0.017799838,-0.014042858,-0.016264975,0.005815874,-0.025588699,0.018532908,0.015829714,-0.029735122,-0.023366584,0.0053347973,-0.045702286,-0.02787954,0.016207704,0.005666969,0.008762469,-0.0023080227,0.030949268,-0.016001528,0.06396029,-0.016883502,-0.020044863,0.0047134063,0.028246075,0.025703242,-0.015749535,0.032461222,-0.016127525,-0.03915048,-0.01101322,-0.0033704005,0.02716938,-0.013813774,0.021270463,-0.022427337,-0.020995563,0.01712404,0.005317616,-0.013447239,-0.004114924,0.018303823,-0.023939293,0.03580585,-0.016528422,-0.027192289,0.029322771,-0.013825228,0.017089678,0.040227175,0.013092159,0.018418366,0.0034276715,0.009793348,0.0044070063,0.005967642,-0.010366058,-0.020674845,0.018819263,-0.03106381,0.031728156,-0.026757028,-0.030216198,-0.0031928604,-0.054980196,-0.006357085,-0.008178304,-0.047786955,-0.045862645,-0.010177063,0.015451726,-0.011878013,0.0052746623,-0.02254188,0.0041321055,-0.01726149,0.014844653,0.06267742,0.0017997423,-0.023217678,-0.0063971747,0.05589653,-0.014649931,0.005598244,0.0012613946,0.05131485,0.007450962,0.0013523124,0.017387487,0.0612571,0.011110581,-0.0030239108,-0.021717178,0.008917101,0.016001528,0.0044700042,-0.011591658,-0.019403428,0.000082148144,0.03933375,0.013607598,0.012805804,0.018338187,0.05420131,-0.06845035,0.056904502,0.008109579,-0.020903928,0.0022636377,0.026253043,0.0067007113,-0.020709207,-0.039058845,0.031292893,0.011202215,-0.0105321435,-0.019976137,0.03424808,-0.010005251,-0.007330693,-0.026390493,0.043571804,0.0016923591,0.003290221,0.040021002,-0.010091157,-0.0046733166,-0.0048107672,0.009014461,0.013252518,0.018109102,-0.019586695,0.022381522,-0.012840167,-0.012588174,-0.02080084,0.010692502,-0.0661595,-0.019953229,-0.008733833,-0.0039345203,0.026711212,-0.0035823034,-0.0010945927,-0.023103137,0.020377034,0.013882499,-0.018842172,0.013653415,0.0054464755,-0.005246027,0.0258636,0.03658474,-0.03653892,0.012943255,-0.0062139076,0.014409393,0.0073707826,-0.03608075,-0.021591181,-0.00852193,0.0006317711,0.011637474,0.0108471345,0.021820266,-0.0016379517,-0.0026631032,-0.014512481,-0.025749058,-0.027787907,-0.006173818,-0.020159405,-0.052551903,-0.043365628,0.043251086,-0.01922016,-0.0056870137,-0.0062711784,0.015165371,0.0135274185,-0.016837684,0.002376748,-0.033033933,-0.008882738,0.015268458,-0.0064429916,0.007932039,-0.0017052451,0.009913617,0.005552427,0.010904405,-0.0029924116,-0.01560063,-0.019013984,0.019540878,-0.023412399,-0.008350117,0.0011640338,-0.028704243,-0.024030928,-0.0016193385,-0.01734167,0.01036033,0.021407913,-0.001577817,-0.013389968,0.013137976,-0.010950223,-0.01807474,-0.026619578,0.013504511,-0.009495538,-0.03424808,-0.03972319,-0.027100654,-0.04714552,0.016012982,0.017765475,0.015073737,0.036676373,-0.034912422,0.008161123,-0.00690116,-0.014775927,0.010033886,0.008395934,-0.023756025,0.01152866,0.014558298,-0.011207942,0.008132488,0.0060993657,0.040250085,0.029185321,0.0006378562,0.022438793,-0.0018126284,0.0054922923,0.01864745,0.012404907,0.015612084,0.009226364,-0.0031985873,-0.04121224,0.010028158,-0.01568081,0.015657902,0.031247078,0.037661433,-0.0014425142,0.020434305,-0.018006014,-0.04047917,-0.03367537,0.00913473,-0.009718895,-0.02275951,0.003736935,0.0004549468,0.006792345,0.014638477,-0.0062539973,-0.010171336,0.018773446,-0.023778934,0.023068774,-0.016219158,-0.010755501,-0.012244548,0.012187277,0.018063284,0.004441369,-0.0019457835,0.0033532192,-0.032392498,-0.020651937,0.017650934,-0.005131485,-0.018418366,-0.022324251,0.014627023,0.0059390063,0.024626546,0.002645922,0.0163337,0.006477354,0.00080680574,0.000024541534,-0.04952799,0.013962679,-0.008596383,0.015005012,-0.021659907,-0.00007597361,0.0069297953,-0.0039459746,0.021636998,0.0044871857,0.03005584,-0.028589701,0.0015277049,0.02074357,0.04334272,-0.01065814,-0.008722379,0.002804849,-0.025497066,-0.018899443,0.0022192528,-0.01617334,0.031980146,-0.01372214,-0.012347636,-0.023481125,0.009718895,0.041922398,0.01568081,-0.009117549,0.008917101,0.0074624163,0.0065918965,-0.01916289,0.03630984,-0.027764998,0.0010494917,0.0062769055,0.023137499,0.005297571,-0.02357276,0.028406434,0.0024197013,0.016746052,0.005701332,-0.007284876,0.01584117,0.00974753,0.0010874338,0.019735599,0.023618575,0.013298335,0.013183793,0.010904405,-0.028062807,-0.018017469,-0.0047420417,0.0036510285,-0.005979096,-0.022587696,0.008854102,0.008899919,-0.028566793,0.019941775,-0.018865079,-0.017582208,0.041991126,0.020869566,-0.050535962,0.017410396,0.024512004,-0.039402474,-0.017673843,0.0075311414,-0.012840167,-0.051406484,0.0027762135,0.006843889,0.002365294,-0.049207274,0.018865079,-0.050077796,0.037775975,0.011156398,0.033194292,-0.04187658,0.022118075,-0.045633562,0.0030095929,-0.0031728155,0.03653892,-0.04975708,-0.026871571,-0.035668403,-0.0090087345,0.0064830813,0.015497543,0.015142462,0.024832722,-0.018303823,0.022129528,0.008567747,-0.014065767,-0.019804325,-0.032759033,0.0044814586,0.0113740275,-0.008069489,-0.021488093,-0.010618051,-0.008636473,-0.030101657,0.012393452,-0.0020488712,-0.029803848,0.036951274,0.032300863,0.0175593,-0.021705722,-0.029551854,0.01012552]},{"id":"interface-GatewayGuildIntegrationsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildIntegrationsUpdateDispatchData\nDescription: GUILD_INTEGRATIONS_UPDATE — integrations for a guild changed.\nProperties: guild_id: string","meta":{"url":"/docs/typedefs/GatewayGuildIntegrationsUpdateDispatchData"},"embedding":[-0.0124073075,0.011417241,0.026279684,0.004440992,0.0009743285,-0.004532559,-0.037839998,0.0013427419,0.013094059,-0.0018542287,0.004578342,-0.01872542,-0.011548868,0.009940726,0.06391366,0.012785021,-0.03195683,0.0389388,-0.034017082,0.06679802,-0.02701222,-0.0028843556,0.04083881,0.054619625,-0.036993004,0.021209171,-0.0023392467,0.027103785,-0.008103666,-0.0052650934,0.03481829,-0.01786698,0.04482197,-0.00822957,-0.044455703,0.036168903,-0.022548337,0.008744634,0.008813309,-0.027035112,-0.00950006,0.0005773003,0.010095244,0.02353268,-0.04001471,0.018095898,-0.014662141,-0.0049789473,-0.0066729337,0.015829619,-0.0020831458,-0.021243509,-0.00029669804,0.028935123,0.02795078,-0.007456975,0.006094918,0.021312183,-0.0067072716,0.015280217,-0.04024363,-0.015463351,0.017271796,-0.036283363,0.019240484,-0.002508073,-0.06153292,0.060617253,0.058648564,-0.0014908228,0.016813962,0.03463516,-0.020236272,0.01344888,0.004383763,0.034246,-0.042738825,-0.0038343617,0.015966969,-0.006810284,-0.012876588,0.013860932,-0.06258594,-0.05416179,0.046081014,-0.00018331253,-0.02795078,-0.051689483,0.039373744,0.014398887,-0.010221149,0.010581694,-0.06208232,-0.009677471,-0.044318352,-0.06867513,0.039282177,-0.029095365,-0.04093038,0.070826955,0.05750398,-0.031247186,-0.038847234,-0.06482933,-0.015360339,-0.024494132,-0.012865142,0.019675426,-0.04443281,-0.012475982,-0.0737571,0.039396636,-0.0075142044,-0.007863303,-0.014936842,-0.017031433,-0.002214773,-0.027882105,-0.0034967088,-0.005099129,-0.050361764,-0.02134652,0.008761803,-0.013849486,-0.032941174,-0.004114785,-0.008778972,-0.009631688,-0.06391366,-0.010661814,0.016035644,-0.037267707,0.009643134,0.026600169,-0.013025383,-0.031361643,-0.005871724,-0.0050247307,-0.042441234,-0.05603891,-0.022605564,-0.011422964,0.01839349,0.037794214,-0.043631602,0.024494132,0.0024408288,0.031361643,0.035756852,0.017134447,-0.07270408,0.03516167,-0.02916404,-0.010970852,0.016585045,0.02460859,-0.007302456,-0.03184237,-0.0041319537,-0.023372438,0.014479008,-0.04775211,-0.0013391651,0.0021804355,-0.056222044,-0.049034044,0.02701222,-0.010507296,-0.07545108,0.024974857,0.03156767,-0.011915136,-0.047568977,0.051002733,0.011382904,0.013963944,-0.0386641,-0.019217592,-0.04685933,-0.021529654,0.027538728,-0.018679636,-0.03023995,-0.061349787,-0.023624247,0.00785758,-0.052879855,-0.013941052,-0.022697132,-0.025089316,-0.010736213,0.029621875,0.0375653,0.009791929,0.04443281,-0.03186526,0.03999182,-0.016356127,0.009093733,-0.019435063,-0.008876261,-0.041388214,0.032872498,0.005619915,-0.012922371,-0.010598863,0.012384416,-0.01673384,-0.016413357,0.01637902,0.030560434,-0.012361524,-0.0381147,0.0029072473,-0.03422311,0.036970112,-0.034177326,0.03225442,-0.007273841,-0.028156806,0.0059003388,0.024585698,0.036283363,-0.030423084,0.036993004,0.013048275,0.0020516696,-0.0043580094,-0.015005517,0.0033879732,-0.005514041,-0.019984463,-0.0029043858,-0.08630175,-0.0039430973,0.014742262,0.019320605,0.008693127,0.018416382,0.014307319,-0.03090381,-0.04921718,0.005940399,0.019286267,-0.030972486,-0.012315741,0.02165556,0.0075542647,-0.013574785,0.05187262,0.0070277555,0.085981265,0.027470054,-0.03461227,-0.030926703,-0.013483218,0.0034680942,0.015326001,0.04697379,0.013071167,0.02593631,-0.011308505,-0.038046025,0.014936842,-0.021140495,0.000744696,0.040037602,0.03127008,-0.014272982,-0.011646158,0.014570574,-0.019354941,0.020007355,-0.024333889,-0.0009020765,0.0100208465,-0.0046098186,0.040632788,0.03266647,-0.031476103,-0.04637861,-0.03328455,-0.017420592,0.051002733,-0.00776029,0.055169024,0.025730284,0.0085214395,0.0262339,0.014822383,-0.0516437,0.032941174,0.016974203,-0.0009471446,0.009053672,0.035756852,0.0010680414,-0.0069533573,0.03481829,0.03127008,0.024906183,-0.024288107,-0.07545108,-0.03371949,0.0058373865,-0.0040861703,0.01878265,-0.015131421,-0.008469934,-0.008538608,0.028958015,-0.05420757,-0.022410985,0.020945916,-0.029118257,-0.014467562,0.0067931153,0.05429914,0.021884477,0.031178512,0.0024279521,0.028019454,-0.0028271263,-0.03184237,-0.032300204,-0.04976658,-0.011588929,-0.039007477,0.0046040956,0.058282297,0.046309933,-0.023601355,-0.006249437,0.030880919,0.01485672,0.074535415,-0.023486895,0.03797735,0.038549643,-0.018038668,0.015944077,0.00078976405,0.00127049,-0.00070857,0.04962923,-0.044753294,-0.0049388865,0.025707392,0.005027592,0.016516369,0.016218778,0.025226666,-0.004275027,-0.06409679,-0.035665285,-0.05228467,0.04429546,0.02579896,0.0005172096,0.033627924,-0.045943666,-0.008200956,-0.0031046884,0.03690144,0.0022462492,-0.0010601723,-0.0151085295,0.020636877,-0.04697379,-0.024219431,-0.004151984,-0.025501367,-0.059884716,-0.0035138777,-0.02875199,-0.015326001,-0.006741609,0.01184646,-0.006077749,-0.014318765,-0.016401911,0.040976163,0.0124073075,-0.008630175,0.023120629,0.001825614,-0.034772508,0.028202588,-0.023406776,-0.00965458,0.044318352,-0.010936515,-0.012670563,-0.021998934,-0.04216653,-0.02783632,0.054665405,0.018359153,0.020625431,0.0065355836,0.01991579,0.017706739,0.009854882,-0.026188118,-0.054985892,0.03346768,-0.00484732,0.030858027,0.036443606,-0.025707392,-0.0037170416,-0.00081408647,0.0254098,0.0050733755,-0.0021990351,-0.056725662,-0.0041491226,-0.024425456,0.018977229,0.029644767,0.026371252,0.024677265,0.014936842,0.0024923352,0.019686872,-0.046630416,0.0077202297,0.0072509497,-0.0031619177,-0.07948002,-0.09138371,0.04134243,0.023189304,-0.0068732365,0.05494011,-0.014124186,0.0012483136,-0.006930466,0.030720677,-0.0142043065,-0.03275804,-0.008040714,0.009162407,0.027035112,0.00058195024,0.02408208,0.025890525,-0.05809916,0.0339713,-0.03706168,-0.0068388986,0.025707392,-0.0066385963,0.03319298,-0.02767608,-0.011634712,-0.06496668,0.051460568,-0.020453744,-0.006753055,-0.03307852,-0.016024198,-0.027790537,0.06949924,-0.007210889,-0.0049989773,-0.022903157,0.00092139136,0.0055426555,0.007210889,-0.02582185,0.025844742,0.025318233,0.0012933817,-0.023372438,0.027859213,-0.01827903,0.033261657,0.018805541,0.029805008,-0.028843556,0.017901318,-0.0381147,0.0034738171,0.07064382,0.055397943,-0.01792421,0.010890732,-0.014742262,-0.012865142,-0.035184562,0.005099129,0.010089522,-0.010467235,0.021232063,-0.016562153,0.014719371,-0.0745812,-0.0063638957,0.0028571717,-0.020201935,-0.023898946,0.009688917,0.03557372,0.026279684,0.0053452146,-0.024997748,-0.019847114,-0.041502673,-0.025455583,-0.0018070145,-0.009769038,0.004223521,-0.029896576,-0.019286267,0.020476636,-0.009614519,-0.012338633,0.013460326,0.024562806,-0.025730284,0.003453787,0.011314228,-0.021712787,0.01157176,-0.0025524257,0.03319298,-0.07934267,-0.006758778,0.0015823896,0.012865142,-0.035871312,0.0012483136,0.045829207,-0.020442298,0.0018270448,0.0028042346,-0.0045554508,0.037954457,-0.008309691,-0.010100967,0.03145321,0.019732656,0.028019454,-0.021758571,0.028179696,0.02206761,0.01364346,-0.0012475983,0.017603725,0.035184562,-0.017420592,-0.004028941,0.014833829,-0.0065527526,-0.0018070145,0.010038015,-0.011400072,0.024539914,0.02662306,0.00037127495,-0.057549763,0.005001839,-0.026417036,-0.019698318,0.021037484,0.004910272,0.017077217,-0.018038668,-0.015680822,-0.020556757,0.022365201,0.0061521474,0.00893349,0.033650815,0.032849606,-0.024974857,0.03197972,0.030400192,-0.019091688,-0.014055511,-0.08666802,0.026279684,0.045165345,-0.03360503,0.0073310705,0.00048001058,-0.01737481,0.013048275,0.05150635,-0.028065238,0.037084572,0.028179696,-0.0048587658,0.042029183,-0.009465722,-0.006770224,-0.0040718634,-0.0023363852,0.02057965,-0.024036298,0.032986958,-0.010146751,-0.0010608877,0.033650815,0.014284428,0.013151288,0.039465312,-0.027035112,0.024013406,-0.015680822,0.0054739807,-0.0127163455,-0.0069991406,-0.03371949,-0.0103012705,-0.039808687,0.037519515,-0.014788046,-0.006730163,0.013563339,0.031086944,0.004212075,0.0002353554,-0.0018642438,0.03676409,-0.017844088,0.00004676705,-0.018164573,-0.030995376,-0.01251032,-0.05512324,-0.049537662,-0.033353224,-0.04985815,-0.032941174,0.021609776,-0.005599885,0.023967622,-0.034703836,0.017615171,0.00077688746,0.0075657107,-0.012201282,0.05841965,-0.003293545,0.03690144,-0.010043738,-0.0064783543,0.015829619,-0.0031905323,-0.03667252,0.03346768,-0.00017615888,0.04935453,-0.00006330989,-0.034062866,0.03474962,0.014055511,-0.012166944,-0.025341125,-0.024036298,0.015371785,0.04319666,-0.0021532516,0.014375995,-0.011291336,0.026050767,-0.012201282,0.03339901,0.035894204,0.047660545,0.04200629,0.002722683,-0.0032563459,0.020625431,-0.0103184385,-0.030674893,-0.008017822,0.00019726217,-0.0034967088,0.040495437,-0.027904997,-0.006884682,0.015119975,0.00322487,0.04816416,-0.009625965,0.02634836,0.0009256836,0.0053165997,0.014742262,0.016916975,-0.02040796,-0.0047643376,-0.006913297,0.036695413,0.01653926,-0.015795281,0.013197072,0.020545311,0.0034194493,0.00032119933,-0.032002613,0.0031619177,0.013540448,0.012224174,0.021529654,0.012475982,-0.02146098,-0.0019329189,0.033856843,-0.02767608,0.007434083,0.0028113883,0.028774882,-0.039579768,0.024150755,0.009700363,-0.004767199,0.02795078,0.010947961,0.0031933938,-0.012659117,-0.00069712417,0.0002249826,-0.023017615,0.01778686,-0.021815801,-0.03154478,-0.047340058,0.017649509,-0.00072895794,-0.0026325467,0.01653926,0.022491107,-0.0044152387,0.011268445,-0.011371458,0.022342311,-0.018679636,0.034864075,-0.012315741,-0.02128929,-0.01985856,-0.0035052933,0.012636225,0.013254301,-0.020041693,0.017557943,-0.025592932,0.0059060617,-0.005187834,-0.016390465,-0.013883823,-0.035665285,0.00069712417,0.004953194,-0.016470587,0.03731349,0.028614638,-0.011148264,0.05841965,0.051002733,-0.028179696,0.0018485057,-0.03598577,-0.0130139375,0.0013470341,0.031224294,-0.02408208,-0.020156153,-0.014044065,0.022834482,0.020362178,-0.03156767,-0.012888034,-0.032437555,0.01577239,-0.0037342105,-0.017466376,-0.017935656,-0.016619382,-0.016001306,0.007823243,0.0029587536,0.010959406,-0.040861703,0.0018284754,0.0139067145,-0.0029043858,0.020224826,-0.028454397,0.01827903,-0.030995376,0.015314555,-0.0011939459,-0.068171516,0.010936515,0.033650815,-0.0068388986,0.008429873,0.0043036416,0.019560967,0.052101534,-0.013826594,-0.048759345,0.0303773,-0.05416179,0.008057882,0.022582673,0.05603891,0.0042464123,0.013529002,0.031476103,0.008109389,0.00068603596,0.0077316756,0.017042879,-0.011417241,0.017477822,-0.02582185,-0.00521931,0.000012742456,-0.026577277,0.030812243,0.004589788,0.040174954,-0.05805338,-0.02714957,-0.0014371702,-0.0005068368,0.0059804595,-0.0058316635,0.021770017,0.005059068,-0.006981972,0.014261536,-0.00057515426,-0.0026325467,0.006260883,-0.0006209377,0.003651228,-0.0069991406,0.0130024925,0.0062322686,0.034246,0.006077749,0.017031433,0.0075771566,-0.017718185,0.018187465,-0.012292849,-0.01485672,0.021918813,-0.03516167,-0.01756939,0.03186526,0.0038515304,-0.0067988383,-0.0014049788,0.016058536,-0.019755546,-0.032460447,-0.023418222,0.009591627,0.013494664,-0.0005898193,0.029736333,-0.0037771324,0.003465233,-0.031933937,0.05901483,-0.038458075,0.0054539503,0.013929606,0.024654374,0.02369292,0.02298328,0.03481829,0.02676041,0.02579896,0.0013620568,-0.01311695,-0.010890732,-0.0020945915,-0.024288107,0.009259697,0.002017332,0.0009678902,0.041846048,-0.010255487,-0.0036054444,0.008441319,-0.04118219,-0.048759345,-0.012269957,-0.02148387,-0.011113926,-0.0028757711,-0.04564607,-0.04811838,-0.01565793,0.011714833,0.021506762,0.006112087,0.0019229037,-0.016264562,0.045714747,0.0085271625,0.004452438,-0.012315741,-0.007130768,0.0032391772,-0.016344681,0.044066545,-0.007754567,-0.0026382697,-0.017912764,0.002935862,-0.0010616031,0.028042346,0.034658052,-0.0074169147,-0.00965458,0.016630828,0.020911578,0.009076564,-0.021323629,-0.013803702,0.029576091,-0.023383884,-0.015440459,0.020865794,-0.0029930912,-0.027035112,-0.027698971,0.0031161343,-0.0016596491,-0.045691855,-0.029942358,0.03612312,0.009648857,-0.022571227,-0.03809181,-0.00580591,-0.021106157,0.012144053,-0.045989446,-0.0419834,-0.027447162,0.010335607,0.026394144,-0.032139964,0.041227974,-0.013048275,0.0022977556,0.04358582,0.0147994915,-0.008183787,0.02742427,-0.05658831,-0.006444017,0.0021303599,-0.0053137387,-0.052788287,-0.059747368,-0.017912764,-0.0052393405,-0.021781463,-0.012487428,-0.026600169,0.034291785,0.004767199,-0.036855657,0.038023133,0.018107343,-0.004114785,-0.019732656,0.006558475,-0.023898946,0.03291828,-0.004234967,0.02286882,-0.020304948,0.008492825,-0.0018585208,-0.030514652,0.049720798,0.0043379795,0.02195315,-0.022365201,-0.048209943,0.053887088,0.017237458,0.0043265335,-0.011892244,0.011251276,-0.00602052,-0.01991579,-0.002413645,0.0046098186,0.007119322,-0.018542286,-0.002812819,-0.011880798,0.002396476,0.032139964,0.023738705,0.02474594,-0.0044924985,-0.0047071083,0.025249558,-0.046653308,-0.024265215,-0.0060720267,-0.012762129,0.012315741,-0.008040714,0.0076687234,0.029507415,-0.022170622,0.03582553,-0.05269672,0.005099129,-0.04871356,0.008544331,0.0124187535,0.013288639,-0.032048397,0.019011566,-0.011022359,-0.010736213,0.024310997,0.024310997,-0.008355475,0.06565343,0.011743448,0.0139067145,-0.032323096,-0.045096673,-0.018267585,-0.012853696,0.0061521474,0.04738584,-0.023212194,-0.0011438702,-0.008469934,-0.0058001876,-0.014559128,-0.007588602,0.01905735,-0.00762294,0.004440992,0.01938928,-0.018519394,-0.0121097155,0.014707925,-0.0043809013,-0.017409146,-0.016424803,-0.0003702019,0.00034015652,-0.0050075618,-0.008103666,0.0023835995,-0.012212728,0.051277433,0.026645953,0.012544658,-0.0018585208,-0.012315741,-0.0052765394,-0.021644114,0.03154478,0.012968155,0.03598577,-0.029598983,-0.00033371823,0.008881984,0.013551893,-0.027378486,-0.03209418,-0.00475003,0.01845072,0.022662794,-0.013357313,0.01383804,0.025226666,-0.0046412945,-0.052605152,0.0066901026,0.010547356,-0.03381106,0.000744696,0.022502553,-0.009860605,-0.03678698,-0.0047471686,-0.029484523,0.01184646,-0.0004624841,0.0061693164,0.027492946,0.008458488,0.021106157,0.002161836,0.020488081,-0.006896128,-0.0030646278,0.00437804,0.020728445,0.024127863,0.012327187,-0.02488329,0.025089316,-0.012464537,0.027195353,0.026577277,0.01190369,0.014639249,-0.005894616,-0.020888686,0.022651348,0.010141028,0.023647137,-0.03023995,0.043540034,-0.011960919,-0.0068732365,-0.007886195,0.009803375,0.021106157,0.000803356,0.029438742,0.0037914398,0.0005172096,-0.011857906,0.006598536,-0.037794214,-0.029644767,0.006913297,-0.000010864621,0.0025695947,0.007262395,0.031796586,-0.0067873923,0.066889584,-0.011457302,-0.017660955,0.03371949,0.017546497,0.01557781,0.009202468,0.002177574,-0.028797774,-0.037771326,-0.0071593826,0.015371785,-0.0021375136,0.002535257,0.005754404,-0.010684706,-0.0007353962,0.024768831,0.008841923,-0.027401378,-0.0015022686,0.021518208,-0.016138656,0.0073883,-0.036580954,-0.028065238,0.022685686,-0.006260883,0.021426642,0.031086944,0.014707925,0.0024064912,0.014810937,0.02107182,-0.012121161,0.0036970114,-0.011720556,-0.0063066664,0.029141149,-0.02380738,0.047019575,-0.01317418,-0.007926255,-0.016138656,-0.03667252,-0.019675426,0.0007482728,-0.030194167,-0.020613987,-0.030171275,-0.020808566,-0.008252462,0.00463271,-0.03903037,0.013483218,-0.020957362,0.020179044,0.027698971,-0.018702528,-0.009482891,-0.012727791,0.013242855,-0.021781463,-0.0045697577,0.008738911,0.038870126,-0.013963944,0.004472468,-0.0063238353,0.042487018,0.01900012,-0.008630175,-0.005694313,0.01966398,0.019034458,-0.0033336054,0.004669909,-0.021037484,-0.020648323,0.006810284,0.0070392014,-0.02046519,-0.01538323,0.041640025,-0.067713685,0.048255727,0.012029595,0.0044266847,0.0020516696,0.02112905,0.045188237,0.008962105,-0.01886277,0.014765154,0.043059308,-0.014982625,-0.023624247,-0.007823243,-0.030720677,-0.0018713974,0.00041956216,0.022342311,0.0004814413,-0.00893349,0.026279684,-0.0067988383,0.020121815,0.014147078,0.012453091,-0.0052507864,-0.02714957,-0.023166412,-0.011880798,-0.0139067145,-0.0073539624,-0.025066424,0.006564198,-0.08785839,-0.0066729337,-0.011050974,0.009797652,0.0136091225,-0.0079205325,0.0012654824,-0.019744102,-0.025066424,0.03330744,-0.015760943,0.028614638,0.0059747365,-0.010656091,0.028545965,0.035642393,-0.021838693,0.034658052,-0.008344029,-0.015222988,-0.014513345,-0.024333889,0.00390876,-0.012166944,-0.015612147,-0.0013341575,-0.002167559,0.02369292,0.031521887,0.0013777949,-0.015085638,-0.024150755,-0.046584632,0.0150970835,-0.037931565,-0.05393287,-0.056542527,0.03360503,-0.01913747,0.00658709,0.0028743404,0.021998934,0.012212728,-0.01839349,-0.00017052537,-0.024562806,-0.0043751784,0.011022359,0.013288639,0.014719371,-0.032986958,0.0082238475,-0.00922536,0.005645668,-0.030697785,0.0079148095,-0.00030832275,-0.007634386,-0.024929075,-0.03770265,-0.007537096,-0.03706168,-0.03413154,-0.010753381,-0.045302697,0.003725626,0.019480847,-0.0043980703,-0.01632179,0.000869885,-0.013895269,-0.0035739685,-0.027744753,0.0082124015,0.002407922,-0.010272656,-0.02118628,-0.019778438,-0.03717614,0.009076564,0.009156684,-0.011623266,0.0017512159,-0.035642393,0.019629642,0.006037689,-0.021094711,0.013151288,0.0065470296,-0.010656091,0.026577277,0.013208518,-0.006094918,-0.019629642,0.0018341984,0.028523073,0.008097943,0.014364549,-0.0012540366,0.024448348,0.0339713,0.00592323,0.012247066,0.027241137,0.018565178,-0.020968808,-0.05567264,-0.010038015,0.005142051,0.016493479,0.012327187,0.009557289,-0.014375995,0.022353755,0.0021904507,-0.022857374,-0.036306255,-0.027744753,-0.0011438702,-0.026302576,-0.010009401,-0.029598983,-0.017592281,0.008670236,0.015326001,-0.011234107,-0.0014285858,0.013574785,0.039121933,0.009036503,-0.0068446216,-0.011354289,0.024402564,0.017386254,0.026417036,0.015600701,0.0025152268,-0.05352082,0.015371785,-0.002455136,0.0033221596,-0.017821196,-0.0082181245,0.039968926,0.011285613,0.019881452,-0.0065241377,0.0347954,0.008922044,-0.008429873,0.0075657107,-0.025478475,-0.013403097,0.011068142,-0.0074054687,-0.020018801,-0.0012640517,-0.008469934,0.022834482,0.0085271625,0.01364346,0.02797367,-0.0006409679,-0.0036426436,0.004921718,0.048988264,-0.014261536,0.0007404038,0.012166944,-0.026668843,-0.010656091,-0.008332583,0.018542286,0.029805008,-0.0063753417,-0.006901851,-0.0088190315,0.008996443,0.03891591,-0.0060090744,0.0042321053,0.017042879,-0.012693454,-0.013322976,-0.0019157501,0.0508196,-0.027401378,0.007834688,0.012750683,0.022571227,0.0049446095,-0.017283242,0.025203774,-0.0045039444,0.0233381,-0.0025924863,-0.011325674,0.03346768,0.003041736,0.030560434,0.029461633,0.023486895,-0.0034824016,0.03305563,0.013494664,-0.008859092,-0.037656866,0.011972365,0.0004059702,0.018553732,0.02742427,0.003213424,0.020007355,-0.010272656,-0.0038715608,-0.045600288,-0.031911045,0.014891058,0.019641088,-0.021060374,0.0091280695,0.030514652,-0.037633974,0.0057143434,0.006266606,-0.0109079005,-0.03225442,0.0057887416,0.021026038,-0.0018027222,-0.007268118,0.02226219,-0.05013285,0.030995376,0.015268772,0.0030016757,-0.017969994,0.03197972,0.0026525771,0.034017082,-0.023040507,0.03023995,-0.027721863,-0.0295532,-0.05159792,-0.004212075,0.013689243,0.0032706533,0.057320844,0.014410333,-0.013437435,0.009528675,0.0027312674,0.010741935,-0.009208191,-0.030468868,0.0058087716,0.011634712,-0.019698318,-0.010049461,-0.011205493,0.00019153923,-0.012601887,0.006564198,0.022216406,-0.029988142,0.043127984,0.020362178,0.0057887416,-0.022971833,-0.034543592,0.018301923]},{"id":"interface-GatewayGuildMemberAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberAddDispatchData\nDescription: GUILD_MEMBER_ADD — member + guild_id","meta":{"url":"/docs/typedefs/GatewayGuildMemberAddDispatchData"},"embedding":[0.017270736,-0.0055546584,0.008090162,0.011971095,-0.0028711283,0.011408301,-0.06350191,0.025958868,0.018361151,-0.027998995,0.0037548905,-0.0028447472,-0.0051384256,0.010294438,0.031774405,-0.02572437,-0.041271552,0.015875477,-0.020881997,0.04976036,-0.01879497,0.040661857,0.047415383,0.0023185934,-0.054450307,0.008535707,-0.005147219,0.0024680856,0.015429933,-0.0369568,0.037543043,-0.022242084,0.025654022,0.005355336,-0.003051398,0.033275187,0.0024504983,0.019885384,-0.03139921,-0.03039087,-0.016836917,-0.024551883,0.02396564,0.018126654,-0.047462285,0.008658818,-0.03390833,-0.021163395,-0.014445043,0.021350993,0.008951941,-0.022851776,-0.011871434,0.06922365,0.026287165,-0.012627687,0.013460154,-0.0024285142,-0.016778292,0.03280619,-0.027928647,-0.008934353,0.014527117,0.0038193772,0.013038058,-0.034564923,-0.04385102,0.03777754,0.032853093,0.032501347,-0.00300743,-0.042795785,-0.003936626,-0.0011145957,-0.010810332,0.018372875,-0.026052667,-0.0160748,0.010927581,-0.0045345942,0.039137624,0.03587811,-0.07560198,-0.077712454,0.022558656,-0.020541977,-0.037097495,0.0063138437,0.0062786695,-0.038223084,0.0043587214,0.023813216,-0.04943206,0.011930058,-0.017247288,-0.040685307,0.044742115,-0.0034588375,-0.024200138,0.02851489,0.086154364,-0.06973954,-0.012334566,-0.064533696,0.048775468,-0.032501347,-0.019228792,0.03566706,-0.049338263,0.004086118,-0.041177753,0.027154805,0.02488018,-0.02016678,-0.017165214,0.011150354,0.056560785,0.0006089606,0.00428251,0.0043587214,-0.038105834,0.02405944,0.00967302,-0.030461218,-0.020401279,-0.007726691,0.010892407,-0.031938553,-0.053559218,0.0040949117,0.046407044,-0.047532633,0.029992225,0.029101133,-0.024903629,-0.02030748,-0.019017743,0.0009819581,-0.021808263,-0.057451874,-0.0023039375,-0.025560223,0.03688645,0.059421655,-0.03114126,0.0015169054,-0.023367671,0.038152736,0.0062141824,0.0026981863,-0.08910903,0.072506614,0.0026512868,-0.03289999,0.011296915,0.018959118,-0.025114678,-0.01980331,-0.005915198,-0.006489717,0.0069411243,-0.07236591,-0.0017455404,0.008670543,-0.05351232,-0.009209887,-0.0137884505,0.000032838805,-0.064721294,0.024645682,0.009063327,-0.03128196,-0.022734528,-0.0036493666,0.0008595797,0.0026747365,-0.055810392,-0.024950529,-0.04769678,-0.042186093,0.020952348,0.0011798153,-0.0075566806,-0.058671262,-0.023778042,-0.011003793,0.01792733,-0.008963665,0.02019023,-0.024458084,-0.009250924,0.016285848,0.031797856,0.023355946,0.052949525,-0.017810082,0.042959932,-0.003332795,0.034400776,-0.03494012,0.035362214,-0.050041758,0.025114678,0.009966142,0.02146824,-0.005267399,0.018197002,-0.00943266,0.010704809,-0.0050211768,-0.01246354,-0.049478963,-0.004417346,0.0033562449,-0.02574782,0.05168324,-0.07668067,0.030226722,0.0115724495,-0.009667157,-0.018724622,0.026967207,0.0011812809,-0.035713963,0.008500532,-0.005372923,0.0028476785,-0.031633705,-0.023637343,0.03402558,0.00088009826,-0.020518526,-0.007808765,-0.03505737,0.0031012287,0.04335858,0.012522164,0.0051384256,0.029241832,0.0369099,-0.022441406,-0.026123015,0.021362718,-0.025607122,-0.041154303,-0.015969276,0.015934102,0.011513825,-0.011601761,0.020448178,0.052902624,0.06007825,0.012569063,-0.0052732616,-0.019732961,-0.010698946,0.019721236,0.01985021,0.014808514,0.03125851,0.028702488,-0.019240515,0.006360743,0.023860116,-0.011343814,-0.001990297,0.046172548,0.020776475,-0.0007412318,0.025536772,0.00943266,-0.0134836035,0.050885946,-0.027154805,-0.005651389,-0.013940874,0.018537024,0.026568562,0.032595146,-0.04678224,-0.049244463,-0.04781403,-0.0015374239,0.025278825,-0.012545614,0.029804626,0.015934102,0.035291865,0.033556584,0.03963007,-0.084794275,0.0076270294,0.03608916,-0.00013373683,0.02264073,-0.0046723615,-0.011965233,-0.027389303,0.03787134,0.0642523,0.016696218,0.04811888,-0.022793151,-0.042983383,0.002928287,-0.03383798,0.01667277,-0.014386418,-0.003520393,-0.021902062,-0.007656342,-0.019181892,-0.006964574,0.023297321,-0.00068187463,0.004294235,0.028890086,0.051120445,-0.007421844,0.066550374,0.021198569,0.056373186,0.023320772,-0.07288181,0.015289234,-0.060453445,-0.031047463,-0.01795078,0.033744182,0.023226973,0.024458084,-0.028303843,-0.0084946705,-0.009907518,0.04971346,0.05965615,-0.02588852,0.024247037,0.03590156,0.0067711137,0.020401279,0.0034412502,-0.026216814,-0.0054579284,0.012569063,-0.033884883,0.008148787,0.04800163,-0.013155307,0.000117248725,0.0067242146,0.03332209,-0.0044144145,-0.037120946,-0.0051003196,-0.045586303,0.024340836,-0.021644115,0.0014450905,0.021491691,-0.03301724,0.014116746,-0.043100633,0.02471603,0.0068590506,0.0017176939,-0.0083422465,0.023578718,-0.030648816,-0.012158693,-0.02384839,0.045633204,-0.048306476,0.009110226,-0.016825192,-0.0127566615,0.00053934415,-0.008793655,0.011531413,-0.018372875,0.016754843,0.03334554,0.04319443,0.00080242095,0.018572198,-0.021819988,-0.009039877,0.03585466,-0.049994856,-0.018677723,0.0412481,-0.0138470745,-0.01333118,-0.02254693,-0.037285093,-0.025536772,0.097363345,0.010183052,0.026099566,-0.015852029,0.0060969335,-0.0038867954,0.016414821,-0.051917735,-0.03768374,0.007404257,0.0007613839,0.027530001,0.03423663,-0.003426594,0.015043012,0.019369489,0.039348673,0.02577127,0.018279076,-0.020483352,-0.024317386,-0.0051853247,-0.0108455075,-0.0046049436,0.00064120395,0.05979685,-0.004232679,0.010657909,0.035620164,-0.053840615,0.028280392,0.050698347,0.035479464,-0.012275942,-0.0824493,0.013589127,0.009291962,0.0112089785,0.054544106,0.014421593,-0.004323547,0.009139538,0.012955984,0.012322841,-0.045938052,-0.008828829,0.0029458741,0.023226973,-0.012791836,-0.025302274,0.07442949,-0.0021134082,0.030906765,0.014843688,-0.01667277,0.017610759,-0.020753024,0.06697247,-0.04406207,-0.01244009,-0.02760035,0.06171973,-0.025911968,-0.014855414,-0.017434886,0.010968618,-0.007070098,0.04788438,-0.04891617,0.01609825,-0.018759796,0.029148033,0.033298638,0.048494074,-0.032782745,-0.0059855473,0.006501442,0.052058436,-0.046266347,-0.004566838,-0.030977113,0.045258008,0.036347106,0.04305373,0.002208673,0.03566706,0.00596796,0.00082074106,0.027272053,0.04485936,0.015043012,-0.004250266,0.0042268164,-0.0369099,0.0058624363,0.0034647,0.046594642,-0.011009655,0.02673271,-0.008746755,0.027764497,-0.03475252,0.0104644485,0.0038750705,-0.016180323,-0.03958317,-0.0013505587,-0.025067778,0.01929914,-0.019967457,-0.029898426,-0.014867138,-0.037191294,-0.01289736,-0.012240767,-0.0043997583,0.014996112,-0.037285093,-0.0368161,0.029687377,-0.035315316,0.016332747,-0.008172236,0.031962004,-0.020799924,0.02942943,-0.014808514,-0.02760035,0.013249106,0.018173553,0.019111542,-0.05604489,0.008776067,-0.0020269374,0.01147865,-0.01063446,0.03128196,0.044929713,0.005994341,-0.03777754,-0.018443225,-0.0014875932,0.018513573,-0.030508118,-0.010839645,0.012311116,0.0041037053,-0.0047661606,0.014656091,-0.0029326838,-0.0051413565,0.00437924,0.007498056,0.0059005423,-0.017985955,-0.029828075,-0.0062259072,-0.0046547744,-0.009485422,0.013765001,0.008834692,-0.022347607,-0.015113361,-0.03566706,0.016016176,-0.0068707755,-0.02394219,-0.027764497,-0.033556584,0.03878588,0.013038058,0.0071697594,-0.016449995,-0.018654272,-0.019861935,0.03515117,-0.014597466,0.010962755,0.013225656,0.010652047,-0.013413254,0.034494575,0.012569063,-0.021667564,-0.020741299,-0.07306941,0.01106828,0.033744182,-0.036370553,0.0018510643,-0.011859708,0.002853541,-0.015195435,0.037238196,-0.037050597,0.0276707,0.017528685,-0.0013102546,0.019275691,-0.027905196,-0.03123506,-0.013448429,-0.023180073,0.004774954,-0.0027055144,0.002004953,-0.016801743,-0.019533638,0.047180887,0.010716533,0.03669885,0.03137576,-0.00038325676,-0.0060383095,0.021186845,0.014022947,-0.010822058,-0.027037555,-0.03878588,-0.012205592,-0.005578108,0.013084957,-0.009485422,-0.010300301,0.020811649,-0.008547432,0.014245721,0.026404412,-0.013213932,0.05238673,-0.032266848,-0.015148535,0.00481306,-0.021374444,-0.010276851,-0.03372073,-0.028772837,-0.04326478,-0.041857794,-0.0141519215,0.039348673,-0.031610258,0.0059181293,-0.0050739385,-0.005071007,0.015523732,0.028045895,0.008172236,0.042772334,-0.019463288,0.02750655,0.013893974,0.004276647,-0.008213273,-0.036112607,0.002512054,0.027084455,0.0034588375,0.051308043,0.00089548714,-0.02581817,0.054637905,-0.039653517,-0.007914289,-0.03304069,-0.031117812,0.01032375,0.018537024,0.021163395,0.03426008,-0.02476293,0.048587874,-0.026169915,0.029968774,0.043710325,0.010798608,0.04021631,0.0074746064,-0.0023010063,0.002035731,-0.0148788635,-0.015805129,0.01655552,-0.0053524044,0.021878611,0.012733212,-0.006360743,0.015324408,0.06312671,-0.0059620976,0.04704019,-0.009127813,0.019006018,0.004552182,0.013530503,0.012639413,0.027154805,-0.009075051,0.0091923,0.019897109,0.045750454,-0.0051911874,-0.0056601823,-0.02579472,-0.014187096,0.0035497053,0.00575105,-0.016707944,0.005976754,-0.009678883,0.0024490329,0.016027901,0.027061006,0.020248855,0.009532321,-0.012955984,-0.06373641,0.0032888267,0.021644115,0.006501442,-0.0123931905,0.0028506096,0.010054078,0.0032008903,0.0016854504,0.031844754,0.024364285,-0.0162155,-0.02668581,0.026498212,-0.0026146467,0.0013915958,0.005909336,-0.0023024718,-0.020225406,0.0131201325,0.028139694,0.02680306,-0.016637594,0.018830145,0.00851812,0.01742316,-0.01879497,0.014902313,0.005378785,-0.0054227537,0.009063327,-0.035409115,-0.009157126,0.024293937,0.00021892536,0.0009145401,-0.02488018,0.023367671,-0.020588877,0.0060910713,-0.033556584,-0.014409868,-0.037941687,-0.007961188,0.03390833,0.03864518,-0.012264216,0.060406543,0.017235562,-0.003816446,0.032571696,0.059937548,-0.028913535,0.015887203,-0.031657156,-0.025935419,0.013049783,0.009872342,-0.015558906,-0.0034852184,0.016285848,0.020530252,0.045023512,-0.04403862,-0.011150354,-0.018689446,-0.0076035797,0.0010581698,0.0036698852,-0.01662587,-0.0077149663,-0.012404915,0.010036491,0.0019008949,0.0031598532,-0.0049918643,0.003535049,-0.012358015,-0.013507053,0.015863752,-0.05346542,0.005695357,-0.010270989,-0.018701172,0.007029061,-0.08521637,-0.0030132923,0.06228252,-0.0036171232,0.013225656,0.018689446,0.016790017,0.055153802,-0.02846799,-0.06237632,0.0019111542,-0.027201705,-0.007644617,0.011789359,0.036182955,-0.018255627,-0.0028945778,0.03414283,0.010698946,0.014386418,-0.0063783308,0.023367671,-0.009878205,-0.004974277,0.0006653865,-0.017212113,-0.011754185,-0.03240755,0.027952095,0.01292081,0.05440341,-0.03027362,-0.013272556,-0.001263355,-0.019686062,0.013976048,-0.0015667361,0.001645879,0.021761363,-0.032454446,0.0013806038,0.017212113,-0.020377828,0.006612828,-0.015148535,0.014011223,0.002841816,0.033603486,-0.0015872546,0.013882249,-0.0021075457,-0.016590694,0.041576397,0.006612828,-0.013577403,-0.010470311,-0.012639413,0.02126892,-0.0137884505,-0.028069345,0.041013606,0.004086118,0.018325975,-0.04495316,0.009338861,-0.029265283,0.013553953,-0.010200639,0.03770719,0.014890588,0.0071580345,0.034658723,0.006384193,-0.008260173,-0.00037885996,0.056560785,-0.029218383,-0.0023625619,0.0103472,0.029804626,0.016403096,0.04321788,0.0057539814,0.0012780111,0.013413254,-0.0021998791,-0.03301724,-0.0027626732,-0.009702332,-0.008096024,0.016778292,0.017001064,0.019732961,0.022582104,-0.0075859926,-0.013882249,-0.012346291,-0.005012383,-0.010440999,-0.034564923,-0.0034969433,-0.018009404,0.010394099,-0.040802557,-0.035385665,-0.030719167,0.010077528,0.0074746064,-0.008647094,-0.0044202767,-0.013776725,0.06247012,-0.039372124,-0.005540002,-0.0040274938,-0.019826759,0.007879115,-0.020928897,0.015652705,-0.003186234,-0.0055839703,-0.003614192,0.0029136308,-0.003831102,0.01884187,0.018595647,-0.000389852,-0.016907265,-0.0040949117,0.0018935669,-0.015043012,0.0083422465,-0.012522164,0.018396325,0.0070114736,0.012604238,-0.0013263762,-0.003710922,-0.050041758,-0.0120883435,-0.000674913,0.004862891,-0.037027147,-0.022828327,0.04063841,0.010904131,0.020319205,-0.030695716,0.010552385,0.009719919,0.011085867,-0.028749388,-0.029921874,-0.038856227,0.018525299,0.040943254,-0.032853093,0.046360146,-0.037167847,0.016661044,-0.0018129584,0.026779609,0.024106339,0.018572198,-0.059468552,-0.005132563,-0.007591855,-0.007298733,-0.04952586,-0.05426271,-0.03381453,0.003749028,-0.0047397795,-0.013014609,-0.019017743,0.037918236,0.015312684,-0.044343468,0.020706125,0.017118314,-0.013542227,-0.020999247,-0.024082888,0.01763421,0.057592575,-0.006436955,0.03130541,-0.036464352,0.010018904,-0.0008412596,-0.027741048,0.0034617686,0.0017367468,-0.0074628815,-0.013729826,-0.006747664,0.015336134,0.012674587,-0.017329361,-0.030015673,0.030601917,-0.0023156623,0.0030426045,-0.007644617,0.009204025,-0.012322841,0.012709762,0.013014609,-0.03515117,0.0061496957,-0.007967051,0.009966142,-0.012533889,0.012017994,0.0028374193,0.014679541,-0.024997428,-0.00017962871,0.0042913035,-0.015043012,-0.023262147,0.010417549,0.01109173,0.04232679,-0.017282462,0.00039168404,-0.07011474,-0.0035233242,-0.07222521,0.0008331988,0.011355539,-0.042186093,-0.029265283,0.017939055,0.0058331243,-0.0019038261,-0.0040685306,0.022746252,0.013155307,0.04033356,0.022582104,0.023824941,-0.026334064,-0.034893222,-0.006102796,-0.0071580345,0.017352812,0.019076368,-0.015089911,0.02247658,-0.010933444,0.013366355,0.010376512,-0.03941902,0.029101133,-0.0031745092,-0.014081572,0.011015518,0.010775158,-0.0014597466,0.0321496,-0.008330522,-0.0051911874,-0.006331431,-0.007884976,-0.010968618,-0.0115724495,-0.016567245,0.0031920965,0.021163395,0.045515954,0.015875477,-0.0061907326,0.008447771,0.02254693,-0.0075977175,0.00031254115,0.039231423,-0.0067887013,0.031539906,-0.031727504,-0.00459615,-0.01575823,0.004478901,-0.018138377,-0.037167847,-0.0037666154,0.020553702,-0.013694651,-0.005243949,0.029171484,0.016344473,0.025865069,-0.030039124,0.023332497,-0.0029048373,-0.04073221,-0.009321273,0.008072575,-0.015324408,-0.013765001,0.0013798709,-0.03414283,-0.0052967113,0.008799517,0.018091477,-0.00021324612,0.018572198,-0.0044378643,-0.0072342465,0.029171484,-0.016367922,0.04073221,0.03027362,0.011812809,0.01564098,0.0013996566,0.0092978235,0.0066480027,-0.020999247,0.029148033,0.025396073,0.017118314,0.014093297,0.0052644676,-0.027858296,-0.012580789,-0.0042121606,0.025278825,-0.028655589,0.037144396,-0.026896859,-0.00967302,-0.02254693,0.0032888267,0.031633705,-0.031891655,0.043874472,0.016520346,0.0076270294,-0.030578468,0.027318953,-0.026545111,0.012217317,-0.010786883,-0.01657897,0.0036464354,-0.0013791381,-0.0014267705,-0.005507759,0.08648266,-0.010523073,0.010886544,0.015054736,0.035198066,-0.011003793,-0.014339519,0.027084455,0.005595695,-0.012064894,-0.011279328,0.020893723,0.009725782,-0.0010940771,0.016356198,-0.019592263,0.0005463058,0.021491691,0.024293937,-0.03198545,-0.0036610914,-0.015242334,0.004566838,0.011103454,-0.0039981813,-0.031117812,0.03585466,-0.017446611,0.017563859,0.01600445,0.02201931,0.03482287,0.03573741,0.013905698,-0.02497398,-0.010470311,0.0053025736,-0.04338203,0.0068062884,-0.0160748,0.019428113,-0.0011783497,0.008395009,0.00036402064,-0.037308544,-0.007967051,-0.007779453,-0.048869267,-0.014562292,-0.00916885,-0.015277509,-0.00437924,0.017669383,-0.03590156,0.004590288,-0.028350743,0.00404215,0.03688645,0.0077149663,-0.010669634,-0.02206621,0.003250721,-0.029148033,-0.0043469965,0.019568812,0.027365852,-0.00969647,-0.009960279,-0.0040773246,0.039981816,-0.0071287225,-0.010675496,-0.008752617,0.002942943,0.0032448585,0.007656342,0.019475013,-0.043874472,0.0058155367,0.030039124,0.012885635,0.007457019,-0.002276091,0.017188663,-0.05956235,0.035291865,-0.010528935,0.0045727002,0.017235562,0.0045727002,0.027248604,-0.0044642454,-0.019838484,-0.008652956,0.023754591,0.0005056351,-0.006841463,0.00021489493,-0.029124584,0.0025442974,0.0020709056,0.041881245,0.041083954,0.02584162,0.0072635585,0.027998995,0.02471603,0.005144288,0.019006018,0.006360743,-0.024481533,-0.034189727,0.0041857795,-0.026967207,-0.0058536427,-0.011830396,0.016180323,-0.032853093,-0.0036610914,0.009338861,0.0141519215,0.048869267,0.032524798,0.016637594,-0.013296005,-0.03573741,0.014069847,-0.0022291914,0.008992977,0.0032214087,-0.032548245,-0.0068825004,0.02584162,-0.028890086,-0.0034588375,0.0145153925,-0.00086031255,-0.0037255783,-0.027201705,0.02254693,-0.025911968,0.019826759,0.005466722,-0.0011915402,-0.01609825,0.0009445851,0.012862185,-0.025208477,-0.022675904,-0.028092794,0.009930967,-0.00077237596,-0.039934915,-0.047673333,0.009467835,-0.015465107,0.046453945,-0.000092699775,0.014714715,-0.0051677376,-0.009796131,-0.0045316634,-0.03773064,-0.0046313247,0.02019023,0.01383535,0.003936626,-0.042795785,-0.019451564,-0.0030895039,0.016989341,-0.004774954,0.004862891,0.00647213,-0.0034353877,-0.020248855,-0.021069596,0.022535205,-0.03669885,-0.021233745,0.00075112464,-0.030742615,0.0023816146,0.021327544,0.007058373,0.008248447,0.007292871,-0.007310458,-0.009368173,0.005627939,0.009321273,0.019815035,-0.01667277,-0.018572198,-0.0321965,-0.017903881,0.020483352,0.0038193772,-0.008148787,0.03599536,-0.013952598,-0.01605135,-0.009256787,0.0019668473,0.05215223,-0.012627687,-0.0057334625,0.029663928,0.017305912,-0.0021866888,-0.0013256434,0.020272305,0.04682914,0.0072225216,0.0046694307,0.02163239,0.04772023,0.03128196,0.005182394,0.047391936,0.010241676,0.010142014,0.008506395,-0.04607875,-0.035526365,0.005387579,-0.012358015,-0.0016092388,0.028749388,0.018877044,0.02238278,0.01886532,-0.0015271646,-0.0046987426,-0.034400776,-0.025513323,-0.020846823,-0.013800175,-0.015699605,-0.02405944,0.021397892,0.022230359,-0.005938648,0.0042913035,-0.0026102497,0.02019023,-0.00322434,-0.021034421,-0.016485171,0.0088581415,-0.0067124898,0.032524798,-0.022840051,0.020940622,-0.023707692,0.02663891,0.011912471,-0.0071580345,-0.011121042,0.018712897,0.06692557,0.010317888,0.019721236,-0.019134993,0.021819988,-0.00897539,-0.009866481,0.009174713,0.0146678155,-0.039231423,-0.028796287,0.009303686,-0.010997931,-0.014773339,0.018877044,0.0012179211,-0.0069997488,0.007187347,0.033486236,-0.0056777694,-0.05609179,0.003520393,0.052902624,0.008887453,0.015629254,0.0028095725,-0.022863502,-0.021843437,-0.027787948,0.009766819,0.018161828,-0.00046313246,-0.0010098047,-0.027365852,0.039958365,-0.0060676215,-0.020835098,-0.019041194,-0.0036200543,-0.029452879,0.0066421404,0.01248699,0.016813468,-0.002298075,0.008224998,0.0092978235,0.012205592,-0.00046056765,-0.034447677,0.013507053,-0.008471221,0.014550567,-0.00060089974,-0.007292871,0.03132886,0.0017895086,0.035221517,0.009801993,-0.0013095217,0.025396073,0.023320772,-0.006261082,0.0005609619,0.008330522,0.008922628,-0.025278825,0.031539906,-0.006261082,0.008025675,0.005965029,-0.022230359,-0.02860869,-0.02663891,-0.0074746064,0.012275942,0.025700921,-0.025020879,-0.016649319,0.028303843,-0.02666236,-0.03043777,0.04155295,-0.025865069,-0.014245721,0.016063076,0.023086274,-0.027107906,0.005551727,0.031446107,-0.05787397,0.013765001,0.025138127,-0.018665997,-0.018302526,0.022629004,0.0020386623,0.021526866,-0.020905448,0.07053684,-0.011636936,-0.016109975,-0.042959932,-0.004045081,0.006489717,-0.010851369,0.068191856,0.038434133,-0.012017994,0.03034397,0.0054608593,0.00087716704,-0.018314252,-0.043522727,-0.0023786835,0.0057979496,-0.021503417,0.013249106,-0.01751696,0.0056631137,-0.054544106,-0.024411185,0.03036742,-0.0040949117,0.029968774,0.014022947,0.011126904,-0.01426917,-0.017657658,0.007761866]},{"id":"interface-GatewayGuildMemberListUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberListUpdateDispatchData\nDescription: GUILD_MEMBER_LIST_UPDATE — lazy member list; guild_id, id (list_id), member_count, online_count, groups, ops\nProperties: groups: { id: string; count: number; }[], guild_id: string, id: string, member_count: number, online_count: number, ops: { op: \"SYNC\" | \"INVALIDATE\"; range?: [number, number]; items?: Array>; }[]","meta":{"url":"/docs/typedefs/GatewayGuildMemberListUpdateDispatchData"},"embedding":[-0.010670681,0.01181157,0.016741192,0.004362228,0.002931539,0.023598736,-0.027845046,-0.013532057,0.009493183,0.01222644,0.019389035,0.0037429745,0.008559728,0.01175056,0.019974733,-0.016301919,-0.014618038,0.019925924,-0.023415707,0.026234377,0.0038497422,-0.027283752,0.053737763,0.030553898,-0.046733797,0.037997138,-0.0090173045,0.009060011,0.023464514,-0.022732392,0.04424458,-0.016924223,0.059741165,-0.004758794,-0.023610938,-0.00038646135,0.013263613,0.004051076,-0.008370596,-0.03453176,-0.019279215,-0.015386767,0.0006524276,-0.026624842,-0.0003668237,0.03511746,-0.0064243716,-0.025038578,-0.013178199,0.0293825,-0.034678183,0.008419405,0.023647545,0.043536864,0.033287153,0.003944308,0.0070344736,0.024599304,0.011262479,0.022927625,0.004670329,0.007107686,-0.0068941503,0.024684718,-0.0050394405,-0.0004892254,-0.038582835,0.05676387,0.014776665,0.021622008,0.015069514,-0.014605837,-0.027381368,0.014520423,-0.011921389,0.023293685,0.0021795887,-0.028430743,0.0013597644,0.0035355398,0.014068947,0.04807602,-0.08155841,-0.06852663,0.030309856,-0.0004141066,-0.043195207,-0.017156063,0.015594201,0.0022756797,-0.032164566,-0.00080304645,-0.056080557,0.032603838,-0.030407473,-0.07755614,0.04963788,0.004777097,-0.0491498,0.074676454,0.06764808,-0.047026645,-0.023537727,-0.07116227,0.019681884,-0.014398402,-0.040291123,0.012543692,-0.053542532,-0.0107865995,-0.078239456,0.040315524,-0.020194368,0.029284885,-0.002013336,0.010109386,0.0030261048,0.018632509,0.037240613,-0.009956861,-0.05368896,0.024904355,0.01510612,-0.02584391,-0.029480118,0.014496018,0.012592501,-0.021927059,-0.053542532,-0.019279215,0.041877385,-0.021255946,0.021512188,0.018595902,-0.047612343,0.020950895,-0.009718921,-0.0019630024,-0.03218897,-0.029797371,0.0056068352,-0.02906525,0.028577168,0.027747428,-0.037728693,0.0003473767,-0.0073517263,0.0056708963,0.0008770213,0.01294636,-0.040535163,0.046782605,0.001426113,-0.013446643,0.011494317,0.015362362,0.0021658614,0.015264747,0.004218854,-0.0012179157,0.025575466,-0.06877067,-0.00755306,0.020352995,-0.045074318,0.007248009,-0.018095618,0.0048655616,-0.07345626,-0.014117755,0.04783198,-0.061058987,-0.042926762,-0.014862079,-0.008730557,0.0029574684,-0.00032449787,-0.01743671,-0.05178544,-0.032286584,0.023403505,0.009304052,-0.028211106,-0.04146252,-0.05173663,-0.00044995005,-0.047368303,0.0015244918,-0.0066257054,-0.014373998,-0.005191966,0.072724134,0.0028873067,0.030480685,0.03050509,-0.04070599,0.03523948,-0.010304619,0.030529493,-0.029846178,0.024794536,-0.027942661,0.03621564,-0.024172233,0.009011203,0.014898686,0.0113906,-0.012543692,-0.003788732,0.0063389577,0.027430177,-0.008541425,-0.023696354,0.0006817887,0.00019170542,0.0066196043,-0.07462765,-0.017924791,-0.01006668,0.0365573,-0.0014695827,0.017009638,0.025575466,0.0041578435,0.023708556,0.039705426,-0.01288535,-0.026087953,-0.009725022,0.012616904,0.0064304727,-0.024245445,-0.011591934,-0.055543665,-0.0023931242,0.023977,-0.014215372,0.04070599,0.015935859,0.024062414,-0.0095053855,-0.030651513,-0.025087385,0.014422806,-0.0024144778,-0.024233242,0.012324056,0.007534757,-0.008059445,0.043927327,0.03638647,0.026502822,0.0038985503,-0.037313826,-0.033360366,0.038045947,0.012202036,0.02584391,0.026990904,0.048320062,-0.0039412575,0.012238641,0.0107865995,0.015179332,-0.037533462,-0.004407985,0.046562966,0.050809275,-0.02200027,-0.030383069,0.015020706,0.026576033,0.04236547,-0.032213375,-0.013019572,0.018949762,0.01282434,0.022134492,0.0032945496,-0.045049917,-0.026161164,-0.039607808,0.0063694627,0.04202381,-0.008205869,0.04524515,0.02564868,0.029772967,0.030968767,0.05339611,-0.0010928448,0.0048137032,0.028577168,-0.010981832,0.010811004,0.041096456,0.033653215,-0.059594743,0.03231099,0.023000836,0.018412871,-0.0019446994,-0.03382404,-0.037801906,0.0070588775,-0.003154226,0.031212807,-0.021341361,-0.04658737,-0.005249926,0.0047862483,0.026893286,0.0045605106,0.013251411,-0.03860724,-0.0121349245,0.022988634,0.044439815,0.022549361,0.026405204,0.012836541,0.007809303,-0.0063999677,-0.006607402,-0.005957644,-0.05417704,-0.023476716,-0.03680134,0.009822639,-0.0016228707,0.05910666,-0.023305887,0.001346037,0.009908053,0.035507925,0.019401237,-0.030285452,0.07160155,0.045220744,-0.009554194,-0.0070405747,-0.009548093,-0.003087115,-0.0024846394,-0.0006672988,-0.011695651,-0.016033474,0.038338795,-0.023086252,0.036337662,0.015801637,0.021902654,-0.013324623,-0.027308155,-0.026112355,-0.06481721,0.036825743,-0.021731826,-0.025795104,0.052956834,-0.032652646,0.027234944,-0.021573199,0.0341657,0.006030856,0.05168782,-0.009139325,0.022732392,0.003962611,-0.019547662,0.03087115,0.004697784,-0.017595336,-0.043536864,0.0018364063,-0.007681181,-0.01469125,-0.0012552844,-0.028601572,0.021780634,-0.010566963,0.049418245,0.007345625,-0.0063816644,0.026502822,-0.004877764,-0.057740033,0.009603002,-0.06047329,-0.016472748,0.022439543,-0.005161461,-0.047563534,-0.036410876,-0.010560862,-0.022024674,0.049076587,0.03309192,0.02049942,-0.012751128,0.05251756,-0.022158897,-0.018376265,-0.008828172,-0.03746025,0.004051076,0.014178765,0.039949466,0.04729509,-0.007278514,0.021048512,0.025868315,0.016765596,0.0031664283,0.059350703,-0.031847313,-0.017595336,-0.0023046595,0.009792133,0.041194074,-0.0071320897,0.005472613,0.008724456,0.017448911,0.023366898,-0.024733527,0.03543471,0.0042310557,-0.009096618,-0.057642415,-0.09537111,0.0407548,0.025160598,0.008986799,0.059155468,-0.0069673625,0.004112086,0.0019385983,-0.0010379356,0.008492617,-0.008614637,-0.016094485,-0.018742327,0.030041412,0.013385633,-0.014801069,0.020279784,-0.015459979,0.050662853,-0.02547785,-0.019291418,0.062328,0.0042768135,0.05466512,-0.015069514,0.013861513,-0.031505655,-0.015899252,-0.030797938,-0.032091353,-0.045586806,0.008681748,-0.005911886,0.030017007,0.0028903573,0.019803904,0.0048594605,0.040559568,0.015398969,0.06359701,-0.0449523,-0.010292417,-0.01162854,0.055006776,0.009847043,0.014837676,-0.021597603,0.01469125,0.029626543,0.03855843,-0.012189833,0.014496018,0.010670681,-0.02152439,0.07360268,0.04285355,0.018449478,0.0014482291,0.00037044619,-0.008791567,-0.023183867,0.002852226,0.054469887,-0.012836541,0.040095888,-0.014398402,-0.045293957,-0.054567505,0.014373998,-0.011915288,-0.015923657,-0.06603742,-0.01510612,0.02445288,0.034702588,-0.0040846313,-0.042877953,-0.02589272,-0.009450477,-0.0051035015,-0.030846747,0.033750832,0.008645142,-0.06149826,-0.014740059,0.033067517,-0.03148125,-0.009664012,-0.025014173,0.024953162,-0.0018272548,0.043439247,0.007961828,-0.02302524,0.006406069,-0.0060430584,0.017412305,-0.057447184,-0.0053261886,0.017473316,0.006814837,0.0085231215,0.0179858,0.059741165,-0.014971898,-0.01504511,0.006863645,-0.021792835,0.03333596,-0.05124855,-0.0065952004,0.05593413,-0.012299652,0.02403801,0.011939691,0.010994034,0.004877764,0.020950895,0.0016472748,0.010268013,0.035337094,-0.030236645,0.0045605106,0.008059445,-0.019547662,0.008297384,0.023159463,-0.009908053,0.009474881,-0.016057879,0.016497152,-0.03033426,0.0062138867,-0.00032831103,-0.014105553,-0.00036911157,0.024172233,-0.007882515,-0.00911492,-0.001387219,-0.018681316,0.03284788,-0.010164295,0.02025538,0.025795104,-0.012305753,-0.013983533,0.017217072,0.011823772,0.013568664,0.008132657,-0.09844603,0.02589272,0.052078288,-0.06784332,0.019974733,0.0062840483,0.019767297,0.012702319,0.04251189,0.003099317,0.02008455,-0.009395568,-0.00845601,0.016045677,-0.02200027,0.01342224,0.005137057,-0.03548352,0.016509354,-0.017278083,0.031505655,-0.033946063,0.0039839647,0.041291688,0.032115757,0.0021140026,0.017009638,-0.011610237,0.001912669,-0.008596334,0.030114625,0.004182248,-0.05198067,-0.02667365,-0.018730124,-0.025526658,0.030675918,0.0029239128,-0.015276949,0.028015874,0.012220339,0.008370596,0.025160598,0.032579433,0.03243301,-0.015655212,-0.008584132,-0.019254813,-0.012629107,-0.0093223555,-0.057691224,-0.043146398,-0.007455444,-0.0455624,-0.022622574,0.027723026,-0.014361796,0.032115757,-0.011878681,0.044635046,0.004005318,0.025258213,-0.009249143,0.052566368,-0.034653783,0.019047378,-0.010585266,-0.015374565,0.014032341,-0.03531269,-0.047685556,0.00946878,0.00683314,0.0359716,-0.016948627,-0.021499986,0.03741144,-0.017009638,0.008205869,-0.04280474,-0.029089652,0.02684448,0.035898387,0.009401669,0.01360527,-0.0032823475,0.018595902,-0.008767162,0.03907092,0.01654596,0.021353561,0.054762736,0.006802635,0.0101154875,-0.01463024,0.013507653,-0.027405772,-0.048173636,0.008669546,0.0024266797,0.01642394,-0.030114625,-0.0076262723,0.022646978,-0.023720758,0.030114625,0.005802068,0.023806171,-0.0012865522,0.008700051,0.03680134,0.039559,-0.029114056,-0.0011957994,0.023098454,0.050565235,-0.008535324,0.0062199878,-0.02721054,0.01714386,0.036996573,-0.009060011,0.0054329564,-0.014740059,0.003260994,0.009163729,0.02068245,0.01528915,-0.024086818,-0.0040083686,0.031627677,-0.062181573,0.017778365,0.0025334477,0.002733256,-0.023781767,-0.004749642,0.018412871,0.015313555,0.014422806,0.025819506,0.01683881,-0.018791135,-0.0009914153,-0.0011645318,-0.02422104,0.04177977,-0.031017574,-0.046684988,-0.004658127,0.03616683,0.019401237,0.0209753,-0.0029147612,0.020841077,-0.0013628148,0.032213375,-0.010200902,0.027625408,-0.010170396,0.0076567773,0.0053078854,-0.005286532,0.0063267555,-0.024172233,-0.0037551764,-0.003523338,-0.054274656,0.018205438,-0.04958907,0.0076750806,-0.026356397,0.017168265,0.0066318065,-0.0557389,0.016680183,0.009200335,0.009804335,0.04705105,0.01840067,0.016741192,0.033482384,0.043414842,0.0025807305,0.0014131482,-0.037753098,-0.007144292,0.02703971,0.01624091,-0.011427206,-0.0000734982,0.017448911,0.008089949,0.03890009,-0.03223778,-0.001456618,-0.04170656,0.0043591773,0.0011485165,0.0028629026,-0.00082211214,0.014483816,-0.019694086,0.031993736,0.01703404,0.016863214,-0.015899252,-0.027918257,-0.005384148,-0.004069379,0.00022230584,-0.011012337,0.0017494669,-0.010304619,-0.018059013,0.0020712956,-0.0917105,0.0009815012,0.050370004,-0.020865481,0.028211106,0.0017387901,0.0054329564,0.039119728,-0.024867749,-0.048295658,-0.0022283967,-0.023940394,0.009554194,-0.011567529,0.056324597,-0.0010303094,0.0057380074,0.02013336,0.02391599,-0.009224739,0.015118322,0.048417676,-0.047758766,-0.0067904326,-0.0014169614,-0.031700887,0.009755528,-0.014203169,0.031066382,-0.003050509,0.03045628,-0.00749205,-0.030651513,-0.0203774,0.0015984667,-0.0057837646,0.007199201,0.0067294226,-0.013019572,-0.02589272,0.008761061,0.008437708,-0.022964232,0.013178199,-0.0037917825,0.00431647,-0.019193802,0.030017007,-0.011250277,0.0011813096,-0.0032396405,0.011067246,0.018620307,0.009865345,-0.017912589,-0.0209753,-0.024294253,0.0022756797,0.0012949411,-0.012141026,0.014825474,0.053298492,0.00575631,-0.031700887,0.0042524096,-0.01288535,0.017168265,0.017851578,0.005353643,0.036313258,0.028333127,0.020511622,-0.022036877,-0.016973032,0.010078881,0.05364015,-0.0053932997,-0.028967632,0.013788301,0.0050516427,0.019950328,0.018303053,0.06364582,0.020072348,0.029406905,0.016045677,-0.018181033,0.0045391573,-0.012677915,0.0059240884,0.016387334,0.013739492,0.0018806388,0.01294636,-0.0074005346,-0.010475447,0.023574334,-0.026893286,-0.038753666,-0.0012461329,-0.0036423076,-0.00043584144,0.027893852,-0.0641339,-0.03811916,-0.019694086,0.009566396,0.021975866,-0.0077482928,0.007894717,-0.0037033178,0.058765,-0.016741192,0.0050577438,-0.02409902,-0.034214508,0.03792393,-0.012690117,0.04346365,0.011933591,-0.007473747,0.015728423,-0.016289717,-0.008791567,-0.00893189,0.055494856,0.0359716,0.00068445795,-0.0191816,0.027430177,-0.014849877,0.004362228,-0.0020179115,0.04165775,-0.0073334235,0.015435575,-0.0029025592,0.006845342,-0.039607808,0.008785466,0.014215372,0.008370596,-0.035166267,-0.036191236,0.040291123,0.023806171,0.01720487,-0.018791135,0.0018730125,0.0024724375,0.03277467,-0.03338477,-0.03172529,-0.013031774,0.016631374,0.018290851,-0.03626445,0.034312125,-0.034507357,0.0014154362,0.011103853,0.014044543,0.0031191453,-0.028845612,-0.033848446,-0.024233242,-0.0074676457,-0.029772967,-0.047929596,-0.017705154,-0.008321788,0.032652646,0.024025807,0.00030829204,-0.013629674,0.04226785,0.022268714,-0.03531269,0.022293119,0.015179332,-0.004362228,-0.014959696,-0.01222644,0.0057380074,0.06623265,0.0025517507,0.011384499,-0.020389602,-0.009297951,0.0082851825,-0.004908269,0.039827444,0.018181033,0.006192533,-0.003590449,-0.019474449,0.036898956,0.014557028,0.016448343,-0.0070405747,0.03675253,0.014227574,0.003459277,-0.0073883324,-0.0047313394,0.021329159,-0.00929185,0.015484383,-0.04573323,0.055397242,-0.014947494,0.025819506,0.011079448,-0.0045086523,-0.0008099101,0.020987501,-0.036947764,-0.021780634,0.01300737,-0.035629943,0.014605837,-0.0039778636,-0.007955727,0.039290555,-0.020365197,0.011774965,-0.068965904,-0.013971331,-0.06432913,0.0072968174,0.004383581,-0.0050912993,-0.007833707,-0.0015710121,0.007485949,-0.016692385,0.032213375,0.018852144,-0.0035294387,0.024977567,0.016887616,-0.0015122897,-0.003322004,-0.023818374,-0.0036911156,-0.0021414573,-0.011659045,0.05193186,-0.013153794,0.011024539,-0.019389035,0.020609237,-0.00551532,-0.0042768135,0.005310936,-0.01683881,-0.013763896,0.01703404,0.0029483167,0.014947494,-0.0048045516,0.013873714,-0.020597037,-0.0028690037,0.023281483,0.0045361067,-0.003254893,-0.019083984,0.024721324,0.0009456578,-0.013739492,0.01594806,0.025404638,-0.0112136705,-0.000863294,0.0063816644,-0.033482384,0.039705426,0.027405772,0.03577637,-0.016582567,-0.011793267,0.00031439308,0.0043591773,-0.03650849,-0.032896686,0.0046672784,0.00065624074,0.00449645,0.014007937,0.022463948,0.044024944,-0.014971898,-0.029748563,-0.0027134276,-0.020719057,-0.016045677,0.011311287,0.007931323,-0.002242124,-0.04124288,-0.0022833059,-0.021438977,-0.0025364982,-0.00004289778,-0.0020545179,-0.007309019,-0.015337959,-0.011073347,0.009572497,0.0109086195,-0.025868315,0.021451179,0.003218287,0.005256027,0.023610938,0.0074615446,-0.025258213,0.002949842,-0.005533623,0.034360934,-0.013471047,-0.004764895,-0.0050394405,-0.016021272,0.006973463,0.009596901,0.010804903,0.005579381,-0.04524515,0.04231666,-0.017363496,-0.0072968174,-0.019559864,-0.009035608,-0.00030314433,-0.021768432,0.039851848,0.010097184,-0.023122858,-0.019450044,0.005042491,-0.016948627,0.01600907,-0.010926923,-0.005497017,-0.016997436,0.002595983,0.024318658,-0.008968496,0.07204082,-0.010335124,0.004819804,0.01660697,0.0221833,0.012385066,0.0061772806,0.0017464163,-0.017290285,-0.023842778,-0.0032457414,0.0034318224,0.010164295,-0.014129957,0.024306456,-0.020121157,-0.009883649,0.01300737,0.012507087,-0.03458057,0.002223821,-0.0028568015,0.0040541263,0.0063633616,-0.0046733795,-0.03592279,0.051639013,-0.015508787,0.01187258,0.024855547,0.027942661,0.02409902,0.0048411577,-0.0020789218,-0.044098157,-0.0058966335,0.00049761427,-0.009267446,0.004145642,-0.04285355,0.038948897,0.0038039845,-0.01679,-0.006912453,-0.003410469,0.018034609,0.0030764383,-0.016826607,-0.021292552,-0.011408904,-0.025062982,-0.006973463,0.03033426,-0.01504511,-0.0016869315,-0.037850715,0.0033891154,0.047563534,-0.024282051,-0.020340793,-0.02667365,0.023684151,-0.019852713,-0.010463245,0.039534595,0.010902518,0.014935291,-0.0024861647,0.011207569,0.038338795,0.011622439,0.011207569,-0.022134492,0.016875416,0.016814405,0.0011759712,-0.017851578,-0.039192937,-0.002919337,0.031871717,0.010145993,-0.007150393,0.0051462087,0.020889886,-0.07306579,0.036825743,0.0143862,-0.0015145777,0.0042341063,0.033970468,0.02152439,-0.0022192453,-0.019206004,0.005005885,0.023781767,0.0018196285,-0.009163729,0.0041791974,-0.015032908,-0.02025538,-0.006546392,0.022622574,0.043634478,-0.009901952,0.056080557,0.023061847,0.012427773,0.02344011,0.012482682,-0.017131658,0.004740491,-0.029114056,-0.015020706,-0.03946138,0.00013479436,-0.021780634,0.0027591854,-0.038631644,0.022439543,0.004218854,0.016460545,0.017473316,-0.00007950389,0.00803504,0.0000022670285,0.004404935,-0.013312421,-0.027356964,0.0015923657,-0.006049159,-0.03914413,-0.0087122535,0.03074913,-0.024721324,0.01510612,0.0046306723,0.0002299321,-0.010634074,-0.029333694,-0.0028690037,-0.03248182,0.039436977,-0.015838243,0.02901644,0.0034135194,0.012934158,0.0014406028,-0.023061847,0.0023122858,-0.04326842,-0.018778933,-0.019864913,-0.048881356,-0.033775233,0.00028884507,-0.01840067,0.035410307,-0.012812138,0.026112355,0.01240947,-0.024025807,-0.004285965,-0.029114056,0.0071259886,0.033970468,-0.003999217,-0.0060278056,-0.02691769,0.0085231215,0.00941387,0.005808169,0.01973069,0.027845046,-0.008675647,0.01060967,-0.028040279,-0.032872286,0.023171665,-0.019694086,-0.005384148,-0.026356397,0.0021948412,0.014605837,0.036532894,-0.0044201873,-0.026746862,0.0008937991,-0.009798234,0.031627677,-0.013800502,0.021329159,-0.008224172,-0.0025868316,-0.02128035,-0.0028339229,-0.029772967,0.030480685,-0.01054866,0.013824906,0.020035742,-0.026307588,-0.017095052,-0.022805605,0.000004268925,0.038875684,-0.000073021554,-0.013983533,0.030163432,0.017924791,0.0024785385,-0.005292633,0.005982048,0.02290322,0.023037443,0.005786815,0.027942661,0.023159463,0.037020978,0.008315687,0.07277294,0.020548228,0.0227812,-0.006515887,-0.07067419,0.016692385,-0.0038405906,0.011567529,-0.010261912,0.013153794,0.0009670113,0.03321394,0.013629674,-0.004298167,-0.041194074,-0.0028629026,-0.019035175,-0.018998569,0.017924791,-0.013995735,-0.022085685,0.030602705,-0.015081716,-0.023513323,0.024892153,-0.00749205,0.0103595285,0.007186999,-0.004221904,-0.01228745,0.02325708,0.0012163904,0.005124855,0.0018303053,0.004713036,-0.03667932,0.020902086,0.012897552,-0.010951327,0.011646843,0.015752828,0.059545934,-0.0016915072,0.012665713,0.003999217,0.02943131,-0.005850876,-0.017692951,-0.022463948,-0.016387334,-0.03128602,-0.012751128,-0.0030337311,-0.033116326,0.018925358,0.014081149,0.008022838,-0.014349594,-0.008767162,0.044830278,0.00761407,-0.0413649,0.032213375,0.05129736,-0.00039008382,0.009840942,0.026429608,-0.053249683,-0.023891585,0.00096243556,0.027674217,0.009480982,0.005124855,-0.010213104,-0.03560554,0.03872926,-0.010975731,-0.02362314,-0.026502822,0.002301609,-0.008279081,-0.023769565,-0.022768999,0.024770131,-0.0024831141,-0.0046184706,-0.015313555,0.009596901,-0.004703885,-0.019071782,0.0069856653,-0.00041067475,0.033775233,0.009944659,-0.006747726,0.021829441,0.011170964,0.017753962,0.04524515,-0.0022573767,0.01157363,0.035629943,-0.027478984,-0.00401752,-0.024709122,0.017973598,0.02314726,0.038680453,0.018083416,0.0026219124,0.011109954,-0.017192667,-0.024257647,-0.014154362,0.010145993,0.013153794,0.011250277,-0.029089652,0.015215938,0.022158897,-0.025233809,-0.030407473,0.0005346017,-0.027674217,-0.02008455,0.011476015,0.031212807,-0.0077177873,-0.024538293,0.018205438,-0.045074318,0.0062840483,0.039729826,0.011012337,-0.028723592,0.03165208,-0.00097082445,0.015215938,0.0034775801,0.045782037,-0.032945495,-0.021024108,-0.030139027,-0.006582998,0.01588705,-0.00527433,0.052468754,0.0293825,-0.008370596,0.019877115,0.012812138,0.004780147,-0.012763329,-0.026868882,0.01846168,0.0024312555,-0.0067599276,-0.013104986,-0.0023427908,0.0011325014,-0.010920822,0.0026234377,0.007107686,-0.02164641,0.038265582,0.016253112,-0.00023012277,0.0073029185,-0.037191804,0.014068947]},{"id":"interface-GatewayGuildMemberRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberRemoveDispatchData\nDescription: GUILD_MEMBER_REMOVE — guild_id, user\nProperties: guild_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildMemberRemoveDispatchData"},"embedding":[-0.005436467,0.020092055,-0.014309579,0.03476524,0.004427759,0.014907766,-0.07999289,0.036031988,0.032442864,-0.025546117,0.019974764,-0.015717078,0.0053309044,0.010175048,0.054376397,-0.009858361,-0.021511285,0.019095076,-0.03471832,0.05897423,-0.0044922694,0.04663515,0.028924115,0.0005131509,-0.033826906,0.021827972,0.025217699,-0.015634974,-0.0034835613,-0.014227474,0.022695929,-0.022883596,0.0566284,-0.008632664,0.010609028,0.004034832,-0.0076122265,0.016538119,-0.018403057,-0.007559445,-0.04173236,-0.03223174,-0.015775723,0.016268348,-0.029017948,0.049778566,-0.018520348,0.012210058,0.0144620575,-0.009043184,0.0036653634,-0.005034743,-0.0016684734,0.08280789,0.015646704,-0.026507908,0.014192287,0.009049049,-0.0088613825,0.031293407,-0.04119282,0.0039791185,0.011799538,-0.0010805491,0.001966101,-0.015423849,-0.014872578,0.06854523,0.020009952,0.019059889,-0.017969077,-0.0462129,-0.01834441,0.018473431,0.01541212,0.0018312156,-0.014579349,-0.023423137,-0.019728452,-0.011887507,0.02732895,0.040418696,-0.052171316,-0.051514484,0.012233516,-0.022355784,-0.047362357,0.00037863204,0.025030034,-0.007125466,-0.004248889,0.017253598,-0.036712278,-0.0089376215,-0.029205615,-0.06122623,0.04062982,-0.0022739915,-0.043186776,0.06413506,0.06507339,-0.040817484,-0.033076238,-0.03192678,0.03457757,-0.041779276,-0.016819619,0.031035364,-0.07656797,0.0057736803,-0.026719032,0.039034653,-0.010192642,-0.0023311712,-0.016972098,0.0397384,0.04004336,0.00357153,0.020549493,0.00066196464,-0.040160652,0.0072075706,0.019810556,-0.03994953,-0.035351697,-0.0018576061,-0.009864226,-0.03976186,-0.06840447,-0.009594455,0.040442154,-0.03377999,0.019271014,-0.0029396215,-0.00085256353,-0.006972987,-0.0053103785,-0.007700195,-0.023399679,-0.024748534,-0.011095787,-0.016549848,0.008568154,0.060428645,-0.055127066,0.0038588946,-0.0022974496,0.0322552,-0.0064510396,0.03317007,-0.06854523,0.04344482,0.022531722,-0.015998578,0.0071547893,0.004380842,-0.0050904565,-0.028103074,-0.03150453,-0.0260622,-0.004114004,-0.07591114,-0.005556691,0.0021039185,-0.031457614,-0.0039380663,0.0226842,0.011289319,-0.04034832,0.0061871335,0.0066445707,-0.028220365,-0.04093478,-0.026977073,-0.04006682,0.01877839,-0.020080326,-0.023036076,-0.05254665,-0.041075528,0.007125466,-0.025100408,0.012139684,-0.06507339,-0.05137373,-0.007535987,0.00025455948,0.0032812331,-0.021253243,-0.013840412,0.022789763,0.0104506835,0.008210414,0.015623244,0.042318817,-0.023763284,0.015330016,-0.05254665,0.028830282,-0.016033765,0.03739257,-0.01541212,0.030636573,0.010110538,0.009488893,-0.0040729516,0.004712191,-0.023880575,-0.0045567797,0.0061812685,-0.008532966,0.008978674,-0.034671403,-0.01120135,-0.014450328,0.031293407,-0.041638527,0.02871299,0.010538653,0.017628932,-0.0260622,0.033099696,0.017980807,-0.019153723,0.030636573,-0.024349742,0.013910787,-0.01667887,-0.031574905,0.0133126,-0.017816598,0.008439133,-0.008286653,-0.036618445,0.009248445,0.008738226,0.014344766,0.01484912,-0.0039087436,0.011424204,-0.06831064,-0.046822816,-0.003310556,-0.010221966,-0.00043947707,-0.0029073663,0.026930157,-0.0124681,-0.00014771415,0.04004336,0.040231027,0.07248622,0.0112834545,-0.017136307,-0.014872578,0.031551447,0.02101866,0.02074889,0.022907054,0.021534743,0.04719815,-0.03138724,0.031434156,0.042529944,0.0038090455,0.021393992,0.049450148,0.025217699,-0.010139861,0.024584325,-0.004486405,-0.012339079,0.03080078,-0.028830282,-0.010491736,0.023364492,0.042483028,0.034647945,-0.009811444,-0.06192998,-0.023399679,-0.0032783009,0.017886974,0.03401457,-0.021652034,0.04787844,-0.006767727,0.032747824,0.0065448727,0.052218232,-0.048019193,0.018285764,0.057332147,-0.01609241,-0.0011040075,0.010691131,0.024396658,-0.04344482,0.008550559,0.016854806,-0.0046652746,0.0049878266,-0.04534494,-0.073424555,0.023223743,-0.019634617,0.028619157,-0.024889283,-0.031293407,-0.007184112,-0.016315265,-0.013629287,-0.0022930512,0.03589124,-0.016854806,-0.018696286,-0.012409454,0.04105207,-0.013429891,0.033568863,0.01807464,0.006609383,-0.027985781,-0.06277448,-0.011840589,-0.037885197,-0.022602096,-0.055971563,0.018379597,0.028783364,0.043913987,-0.036641903,-0.016291806,-0.015998578,0.039785318,0.055361647,-0.044218943,0.05784823,0.028971031,-0.015998578,0.034366447,0.0038970143,-0.01820366,-0.005204816,0.022660742,-0.037744444,0.00847432,0.0016992624,-0.009224987,0.009952194,0.007377643,0.03797903,-0.026601741,-0.05672223,-0.00008160015,-0.044899236,0.0481834,-0.011482851,-0.008738226,0.03722836,-0.0249362,-0.012913808,-0.039151944,0.007172383,0.034108404,0.012526746,-0.02030318,0.014544162,-0.007688466,-0.042389195,-0.0130311,-0.0011817132,-0.047033943,0.0010394971,-0.011207215,-0.005832326,-0.04299911,-0.005445264,0.01679616,-0.006134352,0.01541212,-0.0028340588,0.015869558,-0.021464368,0.00032145236,-0.02241443,-0.025053492,0.04313986,-0.0495909,-0.01204585,0.058458146,-0.015846098,0.010755642,-0.018684557,-0.005313311,-0.042928737,0.0515614,0.03248978,0.008767549,-0.021734139,0.04093478,0.02128843,0.01120135,-0.025546117,-0.028924115,0.030566199,0.017816598,0.010110538,0.03237249,-0.019740181,0.03324045,0.03335774,0.029017948,0.007934779,0.027962323,-0.06601173,0.018285764,-0.0047649723,0.003762129,-0.004653545,-0.014379953,0.041568153,0.012479829,0.007864404,0.06178923,-0.027845033,0.021487826,0.04091132,-0.009295361,-0.06066323,-0.09416172,0.013066287,0.005196019,-0.015869558,0.0117878085,0.0006011196,0.039714944,0.0089493515,-0.029041406,0.020092055,-0.042131152,-0.0154707655,-0.010415496,0.023775013,0.008175226,-0.029604407,0.09711747,-0.009342278,0.04260032,-0.004823618,-0.02002168,-0.0024088768,0.017640661,0.049450148,-0.031786032,-0.032771282,-0.021253243,0.050106984,-0.006192998,-0.008368758,-0.015705349,0.009905278,-0.00043397903,0.07098489,-0.029745156,-0.008116581,0.005618269,0.036360405,0.0066504353,0.033639237,-0.014755286,-0.00629856,0.02955749,0.0011142704,-0.0515614,-0.012268704,-0.030730406,0.02298916,0.03739257,0.03797903,0.019728452,0.03237249,-0.027680824,-0.01749991,0.033076238,0.03068349,0.015857829,0.009500622,-0.021382263,0.01864937,0.0011311311,-0.0036301757,0.057801314,-0.011365559,0.022062555,0.0064334455,0.055267815,-0.062164564,0.022461347,0.0014896037,-0.010826017,-0.036383864,0.015916474,-0.017957348,-0.01903643,-0.025851075,-0.05057615,-0.017183224,-0.03417878,-0.0283142,-0.025147324,0.009928736,-0.0280327,-0.035492446,-0.027563533,0.03570357,-0.026672116,0.022426158,-0.017851785,0.04243611,-0.013371245,0.041380487,0.008644393,-0.034554113,-0.016502932,0.010620757,0.022144658,-0.06526106,0.009670694,0.031199573,0.018109826,-0.0042137015,0.017054202,0.07258006,0.0071782474,-0.031340323,-0.017582014,-0.008532966,0.04020757,-0.014110182,-0.0061108936,-0.011682246,0.0019529056,0.0021566998,0.011647059,0.007829216,-0.004964368,0.012491558,0.022496535,-0.013253954,-0.021781055,0.00004153315,0.013711391,-0.003360405,-0.013641017,0.0053191753,-0.00036690288,-0.034507196,-0.009576862,-0.04482886,-0.012948995,-0.026859783,-0.003058379,-0.02507695,-0.03293549,0.008796872,0.013382975,0.0038002487,-0.01008708,-0.013547183,0.013230495,0.04062982,-0.034929447,0.049543984,0.029229073,-0.003932202,-0.005254665,0.055173982,0.009054913,-0.0018590722,-0.022496535,-0.07379989,0.0042899414,0.06643397,-0.040137194,-0.024725074,-0.025123866,-0.024162075,-0.034812156,0.032865115,-0.010139861,-0.01043309,0.01372312,-0.0092015285,0.03293549,0.002149369,0.038495112,-0.0023634264,-0.028759906,0.0018605384,0.026601741,0.0119051,-0.021487826,0.005899769,0.05423565,0.005697441,0.050200816,0.022050826,-0.02563995,0.0018927936,0.015752265,0.019575972,-0.019400034,-0.0029542828,-0.016057223,-0.018837035,-0.009400924,-0.016491203,-0.018801847,-0.006386529,0.022332326,-0.009535809,0.013641017,0.025006576,0.005615337,0.039668027,-0.05095148,-0.0045773056,0.005234139,-0.04288182,-0.017523369,-0.029745156,-0.01834441,-0.035609737,-0.012937266,-0.029158698,0.03448374,-0.021393992,-0.020608138,-0.010474143,-0.0025203037,0.0034835613,0.03797903,0.0073483204,0.021476097,-0.043749776,-0.011518038,0.0057883416,-0.015904745,0.002490981,-0.0263437,-0.013805225,0.03138724,-0.005676915,0.034624487,0.0087734135,-0.01862591,0.06882673,-0.03248978,-0.0006300759,-0.013770037,0.025264617,0.0044101654,0.020127242,0.0067149457,0.0034864936,-0.018109826,0.026296783,-0.033662695,0.042084236,0.023857117,0.021487826,0.048371065,0.011518038,0.004700462,-0.001038764,-0.031715658,-0.027070908,0.004366181,-0.0041081393,-0.003298827,0.004163853,-0.006486227,0.008345299,0.03068349,-0.015189266,0.049450148,-0.021065576,0.008867247,0.012163142,0.026484448,0.008198685,0.029182157,-0.031598363,0.0026361293,0.0089376215,0.038025945,-0.00009332931,0.014896036,-0.014215745,-0.028900657,0.0099463295,-0.0035246133,-0.0043339254,0.0012601519,0.004163853,0.021523014,0.013570641,-0.0113421,-0.0028120668,-0.018086368,0.016655412,-0.081165805,-0.020209348,0.017218411,-0.00031632086,-0.035046738,0.014790474,0.014321308,0.0063806647,0.010820152,0.037744444,0.0023194419,0.017523369,-0.008503643,0.00056153367,-0.018086368,0.014344766,0.010239559,-0.024185533,-0.022519993,0.0016523458,0.002291585,0.015001599,-0.017101118,0.032958947,0.033873823,0.016303536,-0.018379597,0.004407233,-0.013969433,0.020244535,0.00853883,-0.04159161,-0.027680824,0.017570285,0.0102864755,-0.01877839,-0.0089376215,0.007893726,-0.0126323085,0.0064099873,-0.0249362,0.0081928205,-0.0055303,-0.03302932,0.014696641,0.025452282,-0.040817484,0.04217807,0.023176825,-0.0051168473,0.054047983,0.055173982,-0.011682246,0.030073574,-0.015107161,-0.013781766,0.034671403,-0.011482851,-0.011799538,-0.0073483204,0.00041601874,0.03333428,0.037509862,-0.054986313,-0.006574196,-0.007958237,-0.016221432,0.0028941708,0.0008049138,-0.0033750664,0.0012674826,-0.047456194,-0.017452994,-0.013300871,-0.003844233,-0.01113684,-0.024068242,-0.0085212365,-0.0146262655,0.0057678157,-0.031692196,-0.004187311,-0.023880575,-0.006574196,0.0029792073,-0.07656797,0.040864404,0.06526106,-0.014637995,0.004149191,0.04940323,0.012620579,0.056487646,-0.014720099,-0.0566284,0.016608493,-0.052218232,-0.011248267,-0.0028179314,0.060710147,-0.012866891,0.011588412,0.00784681,0.043538652,0.01581091,-0.0043837745,0.013253954,-0.013969433,-0.00966483,-0.0027270303,-0.01625662,0.0042723473,-0.017288785,0.033873823,-0.010831881,0.03136378,-0.022437887,-0.048277233,-0.0031404833,-0.015013328,0.024162075,-0.0030935667,-0.0071078725,0.012362537,-0.039011195,0.009670694,0.003521681,-0.017640661,0.0033985248,-0.03457757,0.006972987,-0.001916252,0.008327706,-0.0076591433,0.023341034,-0.011054736,0.005407144,0.022156388,0.0068556955,0.010720455,-0.036360405,-0.0027284964,-0.0042049047,-0.049543984,-0.038495112,0.035609737,0.02365772,0.016233161,-0.02814999,-0.0013371245,-0.02144091,-0.020807534,-0.00960032,0.0040700193,-0.010321663,-0.009424382,0.025569575,0.003592056,0.033662695,0.017851785,0.035844322,-0.0054306025,0.021264972,0.0036272435,0.009406788,-0.032090988,0.03765061,0.024889283,0.006216456,-0.0015995646,0.0009801182,-0.046259817,0.013007642,-0.008644393,-0.015376932,0.01568189,0.0243732,0.011910965,0.0020482051,-0.025452282,-0.02114768,-0.014954682,-0.0042518214,-0.028361116,-0.02018589,-0.01525964,-0.011811267,-0.021523014,-0.039105028,-0.0249362,-0.04665861,0.036782656,0.0019177181,-0.0046623424,0.006022925,-0.0020540697,0.038917363,-0.028173449,-0.0035979205,-0.005445264,-0.014602807,0.020924825,0.0019294473,0.012667496,0.0072896746,-0.029580949,0.0062575084,-0.0027812778,0.009506486,0.032677446,0.0532504,0.011107517,0.00916634,0.0050083525,0.06573023,-0.019775368,0.012385996,0.007031633,0.0035539363,0.0035187488,0.011940287,-0.005125644,-0.003348676,-0.042553402,-0.016772702,-0.006163675,0.012256975,-0.050623067,-0.007817487,0.041638527,-0.0008379021,0.016362183,0.002268127,0.014180558,-0.002897103,-0.010386174,-0.027141282,-0.03657153,-0.025030034,0.023071263,0.032325573,-0.01904816,0.047714233,-0.014250932,0.03516403,0.00556842,0.003958592,0.0025173714,0.004155056,-0.04466465,-0.009852497,-0.014743557,-0.006503821,-0.045626443,-0.017206682,-0.024396658,0.031293407,0.005791274,0.0030085302,0.0017579083,0.036219653,-0.021698952,-0.0450869,0.01679616,0.0043251286,0.010808423,-0.03012049,-0.025593033,-0.013429891,0.04051253,0.008409809,0.03403803,-0.04135703,0.0059349565,-0.009717612,0.011177892,0.039175402,0.021605117,-0.0019998222,0.01877839,-0.0126323085,0.021182869,0.023141637,-0.021100763,-0.023352763,0.023059534,0.035515904,0.018860493,-0.0037269415,0.009770392,-0.009899413,0.0074011018,0.028126532,-0.039433446,0.0075007994,-0.0077529764,0.011928558,0.020631596,-0.0042283633,0.013347787,0.020713702,-0.016338723,0.007453883,-0.0016875332,-0.018051181,-0.008562289,0.0060405186,0.017687578,0.05686298,-0.03755678,0.008767549,-0.06413506,-0.008368758,-0.041826192,-0.004439488,0.006626977,-0.028759906,-0.014063266,0.0013334592,0.0026361293,0.0010043095,0.023317575,0.025264617,0.012022392,0.033803448,0.032583613,0.01400462,-0.020256264,-0.035515904,-0.010374445,-0.0091135595,0.029580949,0.04062982,-0.018086368,0.007582904,-0.007876133,-0.0094537055,-0.017265327,-0.012432912,0.010180913,-0.00875582,-0.018860493,0.028337657,0.030050114,0.0065917894,0.0018825306,-0.022742847,-0.019059889,-0.022531722,0.020924825,0.00833357,-0.023247201,0.009477164,0.0017769681,-0.013547183,0.0636659,0.021687223,-0.013687933,-0.00035957215,0.002309179,-0.005911498,-0.024631241,0.047831524,-0.0036477696,0.018426515,-0.0048265504,-0.016913453,0.0020452728,0.040864404,-0.020983472,-0.047456194,0.0016992624,-0.008738226,0.006668029,-0.018238848,0.0080638,0.026507908,0.0062105916,-0.03807286,-0.012010663,-0.0042723473,-0.022778034,-0.010738049,0.011641194,-0.01176435,-0.032020614,-0.009758663,-0.024255909,-0.00085109734,0.0023253064,0.005961347,0.0283142,0.038987737,0.0026009418,0.015576328,0.03821361,-0.02002168,0.049356315,0.037720986,0.020514306,0.0037885194,-0.006357206,-0.027117824,0.0023546293,0.0022138795,0.0109433085,0.008110716,0.013652746,0.013007642,0.0074890703,-0.031434156,0.008046205,-0.0006245779,0.0099463295,-0.03377999,0.0071665184,-0.043867067,-0.013300871,-0.01849689,0.0078057577,0.017992536,-0.048980985,0.03490599,0.015294828,-0.025217699,-0.04006682,0.004462946,-0.01848516,-0.014532433,-0.00209952,-0.004210769,0.0011655856,-0.0023443664,0.017546827,-0.0042019724,0.06915514,-0.012210058,0.02297743,-0.008597476,-0.00036580325,-0.0029953348,-0.0101222675,0.026296783,0.0067032166,-0.0013187977,-0.023704637,0.004688733,0.014309579,-0.00046733383,0.009635507,0.0009332015,-0.008808601,0.036360405,0.0096179135,-0.024396658,-0.011107517,0.012819975,0.0077529764,-0.0078057577,-0.0028472543,-0.03317007,0.039433446,0.010309934,0.019587701,0.017816598,0.020385284,0.028619157,0.004785498,-0.012995912,-0.04260032,-0.0024631242,0.042670693,-0.036806114,-0.010245424,-0.033404656,0.044054735,-0.009154611,0.0016670072,0.017488182,-0.041122444,0.0028487204,-0.0037885194,-0.05686298,-0.026132574,0.0012396259,-0.025522659,0.014368224,0.029017948,-0.029815532,-0.0041785142,-0.010098809,0.0018400124,0.033545405,-0.0027314287,-0.020842722,-0.0067032166,0.03138724,-0.008157632,-0.009547538,0.035070196,0.033123154,-0.028548783,-0.004284077,0.01065008,0.032466322,-0.0015291895,-0.003914608,-0.010210237,0.0064744977,0.02354043,0.018449973,0.0025173714,-0.050482318,-0.015893016,0.0116998395,0.015318287,-0.008738226,0.009776257,0.013652746,-0.047291983,0.033521947,-0.006920206,-0.005172561,0.022907054,-0.02761045,0.035070196,-0.009811444,-0.016491203,-0.016432557,0.020009952,0.0063630706,0.0012322952,0.001674338,-0.011230674,0.008134174,-0.004307535,0.042060778,0.04438315,-0.0006784588,0.008855518,0.013019371,-0.005113915,0.029182157,0.02676595,-0.010538653,-0.005289852,-0.022602096,-0.0063748,0.0026859783,0.010515194,-0.019693265,0.03164528,-0.017816598,-0.015142349,0.014508974,0.028196907,0.027258573,0.017546827,0.010444819,-0.006709081,-0.017159766,0.02676595,-0.0017813665,0.017441265,0.0054012793,-0.036031988,0.0034659675,0.035797406,-0.019904388,-0.006456904,-0.0027607516,-0.008955216,-0.020209348,-0.017969077,0.0011949084,-0.020760618,-0.00069275365,0.000741503,0.006503821,-0.01568189,0.022930512,0.013160121,-0.009852497,-0.01893087,-0.043632485,-0.0050787274,0.008925892,-0.04888715,-0.031973697,0.0066504353,-0.03514057,0.028525323,0.010908121,-0.005313311,0.018696286,-0.00057509553,-0.010984361,-0.03096499,0.0066152476,0.022027368,0.0018033588,-0.019904388,-0.024748534,0.00087089033,0.002856051,-0.016889995,0.016854806,0.002017416,0.032278657,-0.0071371957,-0.03654807,-0.017300515,0.010004976,-0.026085658,-0.022613825,-0.01120135,-0.025593033,0.0038471653,0.019435223,0.012163142,0.00027618514,0.0006612315,-0.008321841,0.009653101,0.00010006442,0.016139328,0.000057958558,0.012585391,-0.0019807622,-0.0034952904,-0.023294117,0.026507908,0.0042899414,0.003096499,0.019435223,-0.006597654,0.0050611338,-0.039151944,-0.007729518,0.007008175,-0.021405721,-0.0047679045,0.01372312,0.0091897985,-0.0037298738,-0.018274035,0.036618445,0.047291983,0.030871157,0.004820686,0.025991824,0.020373555,0.009436111,-0.017875243,0.028173449,0.02535845,0.022566909,-0.029862449,-0.0566284,-0.025569575,-0.008169361,-0.0014712769,0.002804736,0.031551447,0.017523369,0.025874533,0.02003341,-0.005829394,-0.061695397,-0.018848764,-0.012034121,-0.014555891,-0.019939577,-0.015728807,-0.0035773946,0.04576719,0.015376932,-0.0110312775,0.026390616,-0.009318819,0.021734139,0.012362537,-0.035797406,-0.014755286,0.008884841,0.0021229784,0.026812866,0.013394704,0.006574196,-0.0059906696,0.031739116,-0.018602451,-0.030355074,-0.011817131,-0.0014419539,0.036360405,0.007272081,0.027094366,-0.038143236,0.02857224,-0.002512973,-0.013418162,0.019904388,-0.0060170605,-0.021921804,-0.022778034,-0.012550204,-0.016233161,0.0023121112,0.007043362,0.015482495,0.0013664474,0.008603341,0.028877199,-0.02031491,-0.032560155,0.026812866,0.018989515,0.021065576,-0.004043629,0.0249362,-0.030777322,-0.03589124,-0.009230851,0.020490848,-0.00008970977,-0.0028824417,-0.00629856,-0.027188199,0.019341389,0.0008613604,-0.027540075,-0.02941674,-0.0059173624,-0.018719744,0.008245601,-0.009172205,0.026249865,-0.028619157,-0.007905455,-0.014415141,0.0005039875,0.008456727,-0.014684912,0.027751198,0.0022402701,0.01597512,-0.0059877373,-0.00086429267,0.027821574,0.018684557,0.041544694,0.034835614,0.017159766,0.0064217164,0.043046027,-0.0039673895,0.00009186317,0.016596764,0.020608138,-0.0049145194,0.005336769,0.014098453,0.017277056,0.011647059,-0.0057883416,-0.009864226,-0.030190865,-0.008961081,0.0061578103,0.015763994,-0.043116402,-0.007582904,0.011987205,-0.0048265504,-0.0507169,0.011183756,-0.008873112,-0.020948285,0.020502577,0.04032486,-0.01525964,0.0069143414,0.018015994,-0.06558948,0.031058822,0.027282033,0.007665008,-0.0201507,0.032958947,0.013160121,0.006961258,-0.026038742,0.06385356,-0.0027328948,-0.024302825,-0.032442864,0.0030495822,-0.002814999,-0.00010858639,0.045602985,0.034647945,-0.027375866,0.0030613116,0.02295397,0.0011208681,-0.013207037,-0.042412654,-0.024326283,-0.01498987,0.0040494935,0.023552159,-0.0066445707,0.0036477696,-0.02688324,-0.009647236,0.07239239,-0.014110182,0.015846098,0.0062399143,0.007817487,-0.005926159,-0.01931793,-0.004345655]},{"id":"interface-GatewayGuildMembersChunkDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMembersChunkDispatchData\nDescription: GUILD_MEMBERS_CHUNK — from request_guild_members; members[], chunk_index, chunk_count\nProperties: chunk_count: number, chunk_index: number, guild_id: string, members: (APIGuildMember & { guild_id?: Snowflake; })[], nonce: string | null, presences: { user: { id: Snowflake; }; status?: string; activities?: unknown[]; }[]","meta":{"url":"/docs/typedefs/GatewayGuildMembersChunkDispatchData"},"embedding":[0.016800797,-0.020642301,0.011692289,0.034226414,0.019635642,0.01786531,-0.027746769,0.02135969,0.039016724,-0.015909845,0.045588937,0.021625819,0.0069135507,-0.012889867,0.029829513,-0.0043216925,-0.012380752,0.010743484,-0.0073243137,0.030870885,-0.0023517644,0.029783228,0.036980264,-0.0053833127,-0.042302832,0.020815862,0.008903728,-0.0014246543,0.021058848,-0.0110153975,0.02455323,-0.025085486,0.051976018,0.032907344,-0.021174558,-0.008342544,-0.031611416,0.02017947,-0.010037665,-0.007486305,-0.010662489,-0.014775907,-0.01845542,0.018848827,-0.036818273,0.035152078,-0.023153163,0.021162987,-0.0015490403,0.043830175,-0.00022183386,0.0258723,-0.026774822,0.064657606,0.042835087,0.005429596,-0.0099798115,0.035128936,-0.0012019165,0.027075663,-0.02092,-0.008475608,-0.024206106,0.039155573,0.025455752,-0.031912256,-0.04882876,0.050356105,0.025154911,0.028718716,0.023454003,-0.009869889,-0.039224997,0.021834092,-0.022840751,0.009812035,-0.010500497,-0.010049236,0.004078706,-0.015065176,0.015794137,0.03704969,-0.047949377,-0.07099841,0.06160292,-0.011848495,-0.009418628,0.01903396,-0.0029158406,-0.005603158,-0.01845542,0.0026670685,-0.087428935,0.013005575,0.012033628,-0.054614156,0.026959956,-0.00610938,-0.013248562,-0.003766294,0.04984699,-0.03008407,-0.07632097,-0.08858602,0.061695486,-0.029528672,-0.044455,0.031703983,-0.07261831,-0.011929491,-0.030708892,0.06655522,-0.0110153975,0.008764878,-0.018871969,0.017043782,-0.018640552,-0.011032755,0.014660199,0.018096725,-0.017506614,0.025594601,0.011333595,-0.01744876,-0.020422455,0.0056262994,0.024923494,-0.019774491,-0.06738832,0.009135144,0.051235486,-0.039201856,0.012889867,-0.022273783,-0.00504776,0.00027010578,-0.02208865,-0.025363185,-0.042649955,-0.048921324,0.015157743,-0.018062012,0.040613495,0.03286106,-0.0520223,0.019843915,-0.030431194,0.043853316,0.030917168,0.012612168,-0.03883159,0.036100883,-0.0125774555,-0.010818695,0.00046463977,0.006525929,-0.009470697,0.006439148,-0.02804761,-0.024182964,0.01111375,-0.07359026,-0.024900353,0.028556725,-0.0169975,-0.00044185977,-0.026936814,0.00031331545,-0.05507699,-0.012195619,-0.01641896,-0.023060597,-0.031218007,-0.025016062,-0.006410221,0.0050795795,-0.04475584,-0.030315487,-0.02601115,-0.058964778,0.013364269,0.010500497,-0.008955796,-0.05336451,-0.03806792,-0.0086376,-0.019288518,-0.0007304065,0.021348119,0.009042577,-0.032768495,0.044825263,0.018131437,0.029042698,0.04882876,-0.07229433,0.044524424,-0.0048597343,0.04822708,-0.019496791,0.024877211,-0.004171272,-0.0007032874,-0.004200199,0.014475066,-0.013144424,0.0073416703,0.012889867,-0.0072259624,0.0065317145,0.024923494,-0.014660199,-0.012114624,-0.030500619,-0.05364221,0.008417754,-0.05868708,0.008180553,-0.005548197,0.0012062555,0.008307831,0.021336548,0.052253716,0.022516768,0.041747432,-0.007937566,-0.016291682,-0.054799292,-0.013479978,-0.01889511,0.0032745353,-0.0018947179,-0.035776902,-0.058964778,-0.02017947,0.00081067893,0.022030795,0.047903094,0.0024645797,0.002105885,-0.01264688,-0.02890385,0.008950011,0.003364209,-0.0010001507,-0.022887034,-0.01540073,0.0035377708,-0.0009885799,0.015956128,0.06493531,0.03850761,0.0052039656,-0.0073243137,-0.027283937,-0.0076077986,0.0021246874,0.055447254,0.03792907,0.026959956,-0.011674933,-0.032606505,-0.016048694,0.02238949,-0.028371593,-0.011807998,0.027353361,-0.006063097,-0.0024370989,0.024460662,0.015759425,-0.0049812277,0.0566969,-0.03647115,-0.012589026,-0.010945973,0.010407931,-0.004411366,0.01584042,-0.019415796,-0.008371471,-0.01787688,-0.0014571971,0.02267876,-0.013341128,0.015076747,0.042811945,0.018501703,0.032189954,0.060075574,0.026635973,-0.00045957757,0.02223907,0.0070119025,0.011929491,0.00668792,-0.0053370297,-0.0386696,0.05655805,0.0022461808,-0.018339712,0.0011650345,-0.012554314,-0.055123273,-0.011032755,-0.013190707,0.016789226,0.010859192,-0.022320066,-0.049384158,0.011350951,-0.030199777,-0.027978186,0.005475879,-0.042534247,0.0036621569,0.049060177,0.05290168,0.015875133,0.049060177,0.0106451325,0.03883159,-0.001907735,-0.024506947,-0.00515479,-0.02601115,-0.005663905,0.0013132853,-0.0038270408,-0.014880043,0.033439603,-0.0053833127,0.0055105914,0.01496104,0.021232411,0.0023561034,-0.0032658572,0.03198168,0.021475397,-0.014035376,0.021024136,-0.0012416911,-0.011368307,-0.030616326,0.011466659,-0.042973936,-0.012508031,0.037674513,-0.0021044386,0.011443517,0.023569712,0.0143246455,-0.021891946,-0.042696238,-0.01366511,-0.05928876,0.036124025,-0.059797876,0.012380752,0.04505668,-0.049199026,0.013051858,0.014590774,0.034388404,0.0024486696,-0.00410474,-0.033462744,0.0032340374,0.0061209514,-0.063083984,-0.009395487,0.020376172,-0.033185042,-0.035661194,-0.017934734,-0.0024718114,-0.0038877875,0.015678428,0.00585193,-0.022262212,-0.004932052,0.011617079,0.043853316,-0.009106217,0.031125441,-0.012693163,-0.037026547,0.020977853,-0.06960991,-0.016754514,0.02733022,0.026936814,0.0032456084,-0.03128743,-0.008446681,-0.024530089,0.02862615,0.013341128,0.0077408627,-0.021324977,0.056465484,0.044547565,0.0073590265,-0.029783228,-0.019647213,0.007839214,0.017657034,0.04142345,0.03531407,-0.040034954,0.0045010396,-0.0008381595,-0.005672583,0.006259801,0.053133097,-0.030732034,0.015099889,-0.0015215597,0.01684708,0.031194866,-0.006716847,0.018351283,-0.048319645,0.026728539,0.04035894,0.01612969,0.030477477,0.024877211,-0.011998916,-0.048504777,-0.078449994,0.027422788,0.05933504,0.016372677,0.05933504,-0.017761173,0.013861814,-0.006601139,0.0024385452,-0.015967699,-0.013329557,-0.018224005,-0.034064423,-0.0038993582,-0.03519836,-0.0034741315,0.0691008,-0.040451504,0.06956363,-0.02994522,-0.008782234,0.05387363,0.029482389,0.023176305,-0.046283185,-0.002996836,0.008880586,0.047116283,0.0019540181,-0.0037055474,0.0030141925,-0.012230331,-0.015585862,0.04882876,-0.027492212,0.01030958,-0.02513177,-0.0029650165,0.008660741,0.069702476,-0.020133186,-0.02354657,-0.0008707024,0.048458494,-0.016476814,0.0037691868,-0.01916124,0.04137717,0.029459247,0.06979504,0.0002809534,0.01948522,-0.006774701,-0.0129014375,0.058363095,0.061649203,0.054706722,0.0142320795,0.0090830745,-0.022296924,-0.02049188,-0.014579203,0.050356105,-0.010945973,0.030176636,0.009291349,-0.020040618,-0.041099466,0.03707283,0.0005463585,0.0026251243,-0.06238973,0.016835509,-0.020908428,-0.006803628,-0.023997832,-0.065768406,-0.012727876,-0.03142628,-0.01030958,-0.008984723,0.031449422,-0.009563263,-0.036100883,-0.031773407,0.03878531,-0.03806792,0.01278573,-0.029806372,0.027816193,0.005600265,0.012855154,0.015481725,-0.05419761,0.0019670352,0.031356856,0.0099798115,-0.06377823,0.021602677,0.03806792,0.0052213217,-0.0039253924,0.045866635,0.0514669,-0.009783108,-0.005114292,-0.016546238,-0.0031935398,0.03575376,-0.036378585,0.014683341,0.042811945,-0.007544159,0.009783108,-0.009262422,0.023049027,-0.015967699,-0.0122997565,0.013167566,0.0042638383,-0.0049841204,-0.019253805,0.03503637,-0.017784314,0.010853407,0.036656283,0.0123923225,-0.0316577,-0.018200863,-0.012855154,-0.0031154368,-0.0009538675,0.01453292,-0.006757345,-0.06285256,0.001233013,0.024900353,0.010199657,-0.027283937,-0.00003581975,-0.00097267004,0.031125441,-0.022308495,-0.014428783,0.0032629645,-0.009788893,-0.023442432,0.045565795,-0.0050795795,0.019496791,-0.025756592,-0.044894688,-0.0058201104,0.04582035,-0.04924531,0.0052994248,0.024599513,0.006259801,-0.00038581374,0.035105795,-0.017460331,0.028880708,0.010407931,0.024784645,0.024067257,0.0021420436,-0.013653539,-0.012855154,-0.034943804,0.032583363,0.000053334137,0.030593185,-0.039178714,-0.035962034,0.0282096,-0.012403893,0.021081991,0.026520265,0.013931238,0.020954711,-0.015065176,0.043182213,0.013271703,-0.030014645,0.00068810076,-0.021081991,-0.029991504,-0.0053196736,0.017090065,-0.0045126104,0.030570043,-0.012079911,0.024900353,0.027214512,0.00089022814,0.018374424,-0.018385995,-0.025594601,0.01640739,0.02631199,-0.0068441257,-0.04943044,-0.010338507,0.0014116372,-0.07396053,-0.010072378,0.02878814,-0.023639137,0.014174225,0.0035204147,0.03825305,0.048504777,0.03179655,-0.012403893,0.060399555,-0.016395818,-0.012589026,0.0006674903,-0.0105988495,0.0027957936,-0.002619339,-0.014347787,0.021301836,-0.044547565,0.018247146,0.0066300663,-0.02153325,0.027214512,-0.031148583,0.0022042366,-0.038877875,-0.01191792,-0.011836925,0.043945882,-0.0034162775,0.021706814,-0.009216139,0.020908428,-0.0053746346,0.03603146,0.03545292,0.033786725,0.04052093,-0.003459668,0.00842354,0.006988761,-0.033485886,-0.015018893,-0.01278573,0.04244168,0.0039832466,0.017761173,-0.011883208,-0.019774491,0.06539814,-0.04549637,0.04531124,-0.00058179407,0.02238949,0.004709314,0.025016062,0.015794137,0.041215178,-0.019589357,-0.011894778,0.045241814,0.02411354,0.025108628,-0.010812909,-0.013040287,-0.022435773,0.01615283,-0.0066937055,-0.002363335,0.011131106,-0.005441167,0.0032427157,0.035823185,0.008915299,-0.013398982,-0.0066821347,0.024460662,-0.053086814,0.008452467,-0.0004917588,0.012334469,-0.04056721,-0.0074573783,0.010546781,-0.020410884,0.025340043,0.013560973,0.015042035,0.028232742,0.016812367,-0.002830506,0.01829343,0.007063971,0.014891614,-0.004055564,-0.026265707,0.012126194,0.018166149,0.009395487,0.0018571127,0.027677344,0.013769248,0.027376503,-0.0016546239,0.01614126,-0.0037431526,-0.025247477,0.007168108,-0.015921416,0.018432278,-0.014856902,-0.03198168,-0.004208877,-0.011067467,-0.0068614823,-0.052670263,0.0062887277,-0.03693398,-0.004159701,0.004422937,-0.047139425,0.016638804,0.0070871124,-0.0018889324,0.04082177,0.03661,0.01453292,0.031472564,0.05553982,-0.0013082231,0.00632344,-0.03836876,-0.015342875,0.025154911,0.0050969357,0.007121825,0.013850243,0.0113567365,0.036332298,0.071090974,-0.062297165,-0.0040382077,-0.010888119,-0.014440354,0.014498208,0.015296592,0.0061498783,0.04343677,-0.016175972,-0.004784524,0.03244451,0.038577035,-0.013815531,-0.0033671018,-0.0070581855,-0.0074342364,0.008678097,-0.040312655,-0.012739447,-0.025039203,-0.033439603,0.0010514961,-0.085392475,0.0169975,0.04056721,-0.025617743,0.008735951,0.03195854,0.008788019,0.023500286,-0.04924531,-0.056604333,0.02617314,-0.018779403,0.02455323,0.018258717,0.039896104,0.000097267,0.0125311725,0.037119113,0.026797963,0.0060862387,0.033046193,0.022701902,-0.006456504,0.008180553,-0.002735047,-0.00008171875,-0.017911592,-0.024460662,0.0520223,-0.007602013,0.014498208,-0.013618827,-0.040034954,-0.028950132,-0.019300088,0.010731913,-0.0019207521,-0.02617314,-0.005247356,-0.046422035,0.041678008,0.012635309,-0.022493627,0.020885287,-0.04170115,-0.0033960287,-0.011906349,-0.0099798115,-0.0019438937,0.004755597,0.0045183958,-0.0089905085,0.02994522,0.019843915,-0.015528008,-0.001146232,-0.03008407,0.010379004,-0.03952584,-0.0053977766,0.042071413,0.06720319,0.022748185,-0.012751018,0.008059059,-0.029019557,-0.012878296,-0.015342875,0.011593938,0.028255884,0.027677344,0.0038038993,0.0049465154,-0.0010811463,0.0071160397,0.05419761,-0.028325308,-0.002399494,-0.026936814,-0.002768313,0.021139845,0.033740442,0.04649146,0.017900022,0.0034249558,-0.006363938,-0.011478229,-0.0070524,-0.035661194,-0.010107091,0.017495044,0.027561637,-0.0036766205,0.013005575,-0.04408473,-0.020167898,-0.012612168,-0.023268871,-0.015157743,-0.025664026,0.03024606,-0.013861814,0.034666106,-0.04753283,-0.029482389,-0.028672433,0.016372677,0.0054556304,-0.028255884,0.022910176,0.033254467,0.03128743,-0.018305,0.020700155,-0.0065143583,-0.03008407,0.048134513,-0.021000994,0.013364269,-0.0039774613,0.005909784,0.0028738964,0.014139513,0.00930292,-0.003352638,0.050633803,0.013017146,0.020434026,-0.021972941,0.0037460453,-0.034943804,0.008683883,0.0028203817,0.011032755,0.028857566,0.0117270015,-0.018385995,-0.010847622,-0.04123832,-0.016708229,0.021695243,-0.027839335,-0.013329557,-0.011275741,0.029274113,-0.0003550788,0.008926869,0.010587279,0.009291349,0.007850785,-0.00988146,-0.021695243,-0.031218007,-0.01758761,0.009829392,-0.0061556636,-0.040289514,0.052670263,-0.0169975,0.009985597,0.011009612,0.02471522,-0.010569923,-0.018108295,-0.019554645,-0.0018759153,-0.033925574,-0.008261548,-0.058918495,-0.00577672,-0.023882123,-0.005111399,0.040613495,0.0015215597,-0.022007653,0.0564192,0.0033497454,-0.019068671,0.029898938,-0.000531895,-0.006641637,-0.017842168,-0.011894778,0.028001327,0.061695486,0.030917168,-0.0067342035,-0.026473982,0.026242565,0.010315365,0.016696658,0.02964438,0.014949469,0.0113104535,0.0033960287,-0.033647876,0.04258053,-0.0007730738,-0.009239281,-0.0017240486,0.03542978,0.030199777,0.009210354,-0.022181217,-0.00785657,0.0080012055,-0.018420707,0.026705397,-0.024368096,0.029019557,-0.007104469,-0.004567572,-0.016094977,0.023465574,0.018675266,-0.000011582096,-0.03913243,0.010917046,0.014208938,-0.029412964,0.0050882576,-0.023558142,-0.019554645,0.040937476,-0.028140176,0.007810287,-0.028371593,0.014995752,-0.055447254,-0.000085741405,0.025432609,-0.01641896,-0.030222919,0.001981499,-0.019138096,0.009817821,0.0014420105,0.016812367,-0.020653872,0.009459126,0.013155995,0.019855486,0.022516768,-0.026959956,-0.006641637,-0.020723296,-0.0097483955,0.02601115,-0.021579536,0.03503637,-0.010251725,0.023558142,0.016025553,-0.034804955,-0.016985929,0.014729624,0.00951698,0.027723627,0.011750143,0.011298883,0.008701239,0.019300088,-0.008411969,-0.020005906,0.036401726,-0.013260133,-0.014151083,0.01380396,-0.0016068943,-0.013075,0.0068672677,0.022609336,-0.005094043,0.013734535,-0.0034047067,0.01308657,-0.0047411337,0.008805376,0.0141048,0.039456416,-0.012924579,-0.033995,-0.035522345,0.010766625,-0.0071912496,-0.019705066,-0.025594601,-0.005189502,0.010379004,-0.0025470215,0.028764999,-0.0033960287,0.007885498,-0.042210266,0.018594269,-0.0124848895,-0.0045415373,-0.00014490614,0.009707898,-0.006728418,-0.06933221,-0.0007998313,-0.037257962,-0.0020248892,-0.021660531,0.0018339712,0.013317986,0.0073763826,-0.024900353,0.019253805,-0.0017240486,-0.0017168169,0.022435773,0.006225088,0.03126429,0.029852655,0.0048018806,-0.020815862,0.022620907,-0.023639137,0.028024469,0.008539247,0.029598096,-0.017032212,0.0065606413,0.0055221627,0.01235761,0.008330973,0.007897069,-0.022134934,0.009823606,-0.02878814,0.009192998,-0.0073474557,0.016766084,-0.013236991,-0.02617314,0.017182631,0.0077350773,-0.0039456417,-0.023176305,-0.008140055,-0.016789226,-0.012843584,-0.012519602,0.0025455751,0.01861741,-0.027538495,0.016719801,-0.03603146,0.062436014,0.023569712,0.00632344,-0.009829392,0.0064333626,-0.0051490045,0.002243288,0.019832345,0.0037373672,-0.024668938,0.004240697,-0.011738572,-0.023905264,0.011894778,0.021602677,-0.01038479,-0.010662489,0.029574955,0.010066593,-0.018305,-0.012808871,0.012866725,0.025941726,-0.0070755417,-0.028024469,-0.05331823,0.054151326,-0.008406184,0.008111128,0.02178781,0.009430199,0.008579745,0.01278573,0.014579203,-0.022771327,-0.0045791427,-0.019728208,-0.035290927,-0.0125774555,-0.016187543,0.031056017,-0.010604635,-0.0027249225,-0.008157412,-0.009812035,0.004720885,0.0075383736,-0.038577035,-0.0022982494,0.0042146626,-0.007885498,0.0020321212,0.0019728208,0.0025585922,-0.0037894358,-0.017969446,0.012751018,0.06595354,0.028394734,0.0037171182,-0.02061916,0.02122084,-0.020434026,-0.007237533,0.02890385,0.00016813813,-0.0032658572,-0.01184271,0.010355863,0.04202513,0.01220719,-0.006363938,-0.010575708,0.016384248,0.011883208,-0.0017095851,-0.001386326,-0.046699733,-0.0032311447,0.038299337,0.00893844,-0.023025885,-0.016303252,0.028232742,-0.04649146,0.05100407,-0.01729834,-0.0042349114,0.031565133,0.04345991,0.018177722,0.008926869,-0.0045791427,-0.022875464,0.0014716607,0.0066300663,0.0044663274,-0.0229796,0.0073879533,-0.017333053,-0.018397566,0.021695243,0.03746624,-0.018362854,0.005094043,0.018663695,0.042673096,0.017390907,0.0009220478,0.00029469372,-0.0143709285,0.001233013,-0.023882123,0.013387411,0.0056552268,-0.03603146,0.0058750715,-0.009968241,-0.011646006,-0.012554314,0.045681503,0.011368307,0.013965951,0.022609336,-0.0054267035,-0.0062655862,0.0039138217,-0.012970863,0.0050998284,0.038438186,-0.051050354,0.0011563564,0.027492212,-0.027978186,-0.020167898,0.013329557,-0.0051258625,-0.008840088,-0.020954711,0.0122534735,-0.032467656,0.0436219,0.009574834,-0.0024804894,0.026959956,-0.0034307411,-0.0030720464,-0.039548982,-0.0108302655,-0.017205775,-0.016060265,-0.015736282,-0.016071836,-0.026057433,-0.026659114,0.010442643,0.042511106,-0.013549402,-0.017471902,-0.00270612,0.0030575828,-0.025918582,-0.044408716,-0.007063971,0.03353217,-0.011593938,-0.010633562,-0.015146173,-0.014787477,0.004648567,-0.0004527074,0.02573345,0.024136681,-0.005698617,-0.0041192034,-0.033069335,-0.03443469,0.0046080695,-0.0073300996,-0.016118119,-0.015666857,-0.004995691,0.03575376,0.024599513,-0.011096394,0.0062424447,0.0032369301,-0.010674059,0.028140176,0.0021536145,0.0030431193,0.0058461446,-0.031079158,-0.016002411,0.0028565403,-0.022898605,0.015146173,0.0018151687,0.012774159,-0.0007933227,-0.03404128,-0.007121825,0.0037894358,0.0040700277,0.045079824,-0.014613915,-0.029736945,0.028232742,0.015331305,-0.0141857965,-0.02020261,0.004292765,0.04142345,0.0074573783,0.012843584,0.014174225,0.009129358,0.03517522,-0.006525929,0.039016724,0.023153163,0.025062345,0.0034654534,-0.047625396,0.015574291,-0.0011484015,-0.010807124,-0.025085486,0.0123923225,-0.014347787,0.01582885,-0.0000042317024,-0.00042052614,-0.047717962,-0.011431946,-0.045149248,0.0018354176,-0.0013205172,0.013908097,-0.015157743,0.0070524,-0.020711726,-0.0011925151,-0.0065664267,-0.010558352,0.021891946,-0.0025311117,0.0073300996,-0.013537832,-0.005976316,-0.0032803207,0.034990087,-0.0044721127,0.0051692533,-0.020133186,0.0072143916,-0.009031006,-0.008545033,0.007081327,0.00551927,0.008302046,0.012079911,0.012658451,-0.036378585,0.02862615,-0.008365686,0.01394281,0.011860066,-0.011148462,-0.022713473,-0.016951216,0.0070408294,-0.033902433,-0.004431615,-0.03094031,0.015528008,-0.0016011089,0.008400398,0.03607774,0.0014138067,-0.043876458,0.024969779,0.035684336,-0.0028406305,0.037419956,0.029412964,-0.029621238,-0.010859192,0.010379004,-0.008290475,0.009106217,0.0011201977,0.011536084,-0.019982764,0.015817279,-0.019219093,-0.021834092,-0.0011809444,0.030130353,-0.020110043,0.006352367,0.00013957273,-0.0035638053,-0.029297255,-0.02788562,0.011998916,-0.0063465815,0.009563263,0.017182631,0.002868111,-0.0027379396,0.029598096,0.017552897,-0.021718385,0.023569712,-0.009962455,0.025640884,0.016916504,0.016199114,-0.003951427,0.01047157,-0.014810619,0.004220448,-0.028464159,0.017576039,0.033208184,0.0311023,0.006525929,-0.02207708,0.0015533793,-0.028510442,-0.04357562,-0.028325308,-0.00072209,0.02265562,0.01496104,-0.03746624,0.004122096,0.0061267368,-0.04313593,-0.008290475,-0.0046369964,-0.007764004,-0.043807033,0.023639137,0.045264956,-0.02994522,-0.021093562,0.012704734,-0.033231325,0.021625819,0.02280604,0.025363185,-0.02716823,0.0000743514,-0.00008809173,0.0142320795,0.019705066,0.05044867,-0.010940188,-0.027075663,-0.04123832,-0.010153374,0.030338628,0.0016893363,0.047903094,0.03094031,0.012195619,0.023072168,0.022158075,-0.0075210175,-0.0032832134,-0.059983008,-0.015366017,0.00091626245,0.008215265,-0.01685865,0.007746648,0.008429325,-0.01571314,0.008730166,0.053457078,-0.0066821347,0.021776238,0.008296261,-0.008562389,-0.017784314,-0.015331305,-0.0012387984]},{"id":"interface-GatewayGuildMemberUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberUpdateDispatchData\nDescription: GUILD_MEMBER_UPDATE — guild_id, roles, user, nick?, avatar?, joined_at?, ...\nProperties: avatar: string | null, communication_disabled_until: string | null, guild_id: string, joined_at: string, nick: string | null, premium_since: string | null, roles: string[], user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildMemberUpdateDispatchData"},"embedding":[0.015623236,0.008807101,0.023657374,0.0181178,0.0021651767,0.001828469,-0.022825852,0.0022588694,0.01326921,0.004421118,-0.0009881638,-0.02482853,-0.021186233,-0.008514312,0.01931238,-0.005624482,-0.040873382,0.046939977,-0.043285966,0.05209307,0.0040404922,-0.008455754,0.033869863,0.009662046,-0.0245943,0.02548438,0.0044708923,0.02191235,0.0029630275,-0.04876698,0.03525183,-0.024734838,0.056871388,0.006956673,-0.024453761,0.013152095,-0.0056391214,0.0061251516,-0.0069683846,-0.028014079,-0.010165644,-0.020905154,0.005706463,0.0013051082,-0.06666226,0.038062606,-0.03070774,-0.015342158,-0.02332945,0.02855281,-0.027545616,-0.0006148575,0.0065643354,0.07429821,0.007565675,-0.0011060114,-0.0048954366,-0.018434012,-0.012144899,0.031878896,-0.026796075,-0.011699859,0.010581405,-0.014604329,-0.0013256035,-0.01579891,-0.04232562,0.026140226,0.037477028,0.0005028656,0.011090858,-0.008285937,-0.018281762,0.009298988,-0.003495904,0.010844915,-0.024336645,-0.032464474,0.012859305,-0.0099314125,0.01099131,0.047361594,-0.094114184,-0.066381186,0.031035664,-0.019722287,-0.034244634,-0.01729799,-0.010429154,0.003686217,-0.016489891,0.014627752,-0.080153994,0.0009691325,-0.028740196,-0.07069104,0.054388534,0.0073314435,-0.030824855,0.05359215,0.058042545,-0.024500607,-0.04031123,-0.04487874,0.037922066,-0.032862667,-0.030754585,0.018270051,-0.052655224,-0.011553464,-0.0599164,0.037664413,-0.000682199,0.0071382024,-0.03330771,0.015295312,0.0016161968,-0.0036305871,0.024781685,-0.028833888,-0.050219215,-0.007126491,0.0045967917,-0.048064288,-0.00917016,-0.0052526398,-0.004649494,-0.01282417,-0.069426194,-0.00015417185,0.009094035,-0.03721937,0.044972435,0.0075715305,-0.028740196,-0.021795234,-0.0070562214,-0.00573867,-0.032136552,-0.06319564,-0.002920573,0.0010254944,0.012952997,0.030356392,-0.03803918,0.027943809,-0.01997994,0.04419947,0.000015588741,0.020436691,-0.067880265,0.06090017,-0.0055571403,-0.014299829,0.00097352435,0.020530384,-0.015213331,0.000010836635,-0.043051735,0.0014837097,0.009439526,-0.065725334,-0.037500452,-0.0034695528,-0.026889767,-0.06675596,0.0039116647,0.008244946,-0.06923881,-0.010962031,0.033963557,-0.05143722,-0.020448403,-0.015834045,-0.0044445414,0.012859305,0.005463448,-0.044738203,-0.065865874,-0.030731162,0.022181716,0.02153758,-0.027006883,-0.06797396,-0.02630419,-0.0206475,-0.044012085,0.016735835,-0.010112941,-0.03258159,0.005378539,0.03354194,0.022603333,0.019394362,0.031785205,-0.052889455,0.024336645,-0.022228561,0.016454758,-0.008701697,0.044761624,-0.052420992,0.041248154,-0.01431154,0.01174085,0.021479022,0.035720292,0.00012086707,-0.020870019,-0.017239433,0.044667933,-0.011617878,-0.016056564,0.0038384674,-0.047221053,0.03173836,-0.07172166,-0.0026497429,-0.019663729,0.012589939,-0.011442205,0.05129668,0.019171841,-0.023458278,0.014358386,0.006277402,-0.013561999,-0.0005987541,-0.0083035035,0.025179878,-0.008186388,-0.010329606,-0.0154124275,-0.05017237,-0.01752051,0.009984114,0.014428656,0.026960036,0.03508787,0.049001213,-0.021818656,-0.035603177,0.01506108,0.022544775,0.00094278145,-0.016267372,0.022345677,-0.003059648,-0.017883569,0.0450427,0.040123843,0.06066594,0.021631273,-0.005513222,-0.0054195295,0.0106633855,0.00091277057,0.04415262,0.026960036,0.05822993,0.030590624,0.00010192727,-0.019370938,0.023212334,-0.017157452,0.0095156515,0.034033824,0.037406757,-0.0032031147,-0.0003303029,0.0070913564,0.023060083,0.045276932,-0.0031562685,0.011658869,0.020214172,0.020940289,0.036282446,0.02438349,-0.031316742,-0.019054726,-0.02452403,0.006880548,0.033120323,-0.042161655,0.036024794,0.020460114,0.021724964,0.035743713,0.03115278,-0.029349197,0.02698346,0.04003015,-0.011957514,0.029255504,0.0059963246,0.030098738,-0.02698346,0.021596137,0.032394204,0.016888086,-0.0013878212,-0.02161956,-0.013913346,0.005817723,-0.004233733,0.031246472,0.0025033483,-0.0102476245,-0.01453406,0.018328609,0.00009753543,-0.020834886,0.027686154,-0.037102256,-0.00013605552,0.021221368,0.041904002,0.029161813,0.040123843,0.01229715,0.011922379,-0.0047051236,-0.03361221,0.0083035035,-0.07228382,-0.028576234,-0.03101224,0.0065643354,0.011928235,0.039022956,-0.051015604,-0.0032060426,0.0055893473,0.034642827,0.054763306,-0.053873226,0.053264227,0.035650022,-0.0031533404,-0.0040551317,-0.03764099,-0.019277247,-0.016431333,0.0299582,-0.015236754,-0.03548606,0.04546432,-0.023060083,0.028412271,0.0220646,0.054388534,-0.004778321,-0.008332782,-0.00932241,-0.04614359,0.05096876,-0.011934091,-0.02071777,0.03726622,-0.03824999,-0.003247033,-0.011658869,0.023106929,0.0015898457,0.009644479,-0.012180034,0.017766453,-0.03330771,-0.039233763,-0.008988631,0.00704451,-0.041412115,-0.018328609,-0.0023715931,-0.02869335,-0.0415995,-0.013152095,-0.016501604,-0.008947641,-0.0062422673,0.05068768,0.04942283,0.00067048747,-0.0064237965,0.0017699111,-0.04778321,0.01678268,-0.046167012,-0.015470985,0.027967231,0.006306681,-0.04675259,-0.024360068,-0.044972435,-0.027545616,0.05082822,0.039022956,0.020846596,-0.027077151,0.019511478,0.005223361,0.011664725,-0.03094197,-0.022158293,0.011161127,0.0080809845,0.023950163,0.049984984,-0.023598816,0.015529543,-0.00045492133,0.021115962,-0.0054195295,0.047267903,-0.038577914,0.013807942,-0.0064764987,-0.007477838,0.040428344,-0.0327924,0.04307516,0.008883227,0.020483539,0.032698706,-0.038507644,0.01834032,-0.013655692,0.0069273943,-0.047197632,-0.089101635,0.052233607,0.029091543,0.0015195763,0.031808626,-0.01766105,0.007337299,-0.016033141,-0.0036920728,0.02981766,-0.02981766,-0.032300513,-0.022099735,0.0010891762,-0.005033048,0.00044137985,0.035368945,-0.017344836,0.030965393,-0.020542096,-0.027850116,0.03115278,0.011840398,0.073220745,-0.037968915,-0.013925058,-0.02557807,0.06858296,-0.031129356,-0.024687992,-0.041927423,0.010341317,0.0085260235,0.06708388,-0.008742688,-0.0010584332,-0.013011555,0.0013761095,-0.0097381715,0.013433172,-0.03892926,0.013409749,0.0077237813,0.019324092,-0.010944463,0.009925556,-0.008865659,0.003741847,0.024945647,0.053545304,-0.013386326,0.032253668,-0.0013900171,-0.029794237,0.062586635,0.06848927,-0.001147002,-0.01974571,0.0010049992,0.006470643,0.0054751593,0.00753054,0.029864507,-0.011600311,0.028787041,0.0012406945,-0.020413268,-0.066006415,0.009088179,-0.013140383,-0.020342998,-0.03630587,-0.000928142,-0.0048485906,0.020694345,0.0052262885,-0.041295,0.0042952187,-0.027006883,-0.0062715462,-0.022790717,0.0064764987,0.005322909,-0.044012085,-0.023833048,0.018024107,0.0014009967,0.024172682,0.0032411772,0.042911198,-0.006874692,0.032230243,0.023633951,-0.02482853,0.0030772153,-0.0067048743,0.019101573,-0.08109092,0.004608503,0.008490889,0.014007039,-0.016513316,0.025905995,0.032159973,-0.010423298,-0.012027783,-0.0067868554,-0.016197102,0.03419779,-0.027077151,-0.008713409,0.018363744,-0.002840056,-0.00071952963,0.021666406,0.022193428,-0.002269117,0.025156455,0.0040522036,0.0011762809,0.030005045,-0.024336645,0.0031240615,0.015225043,-0.009263853,0.015634947,0.010224202,-0.004286435,-0.008994486,-0.0049276436,0.029325774,-0.02042498,-0.0025897212,-0.017415106,-0.043215696,0.017625915,0.00839134,-0.019054726,-0.018258339,-0.010224202,-0.023961874,0.04590936,0.0013702539,0.012133188,0.04017069,0.019370938,-0.002943996,0.06277402,0.008894938,0.0128944395,-0.0128007475,-0.08305846,0.022720449,0.054247998,-0.044738203,0.006119296,-0.0010767325,-0.020670922,-0.022860987,0.047970597,-0.014346675,0.02235739,0.013737673,-0.0067868554,0.009205295,-0.019593459,-0.026280766,0.00066170376,-0.03115278,0.021010559,-0.0020304937,0.018773649,-0.022497928,-0.0033729326,0.03525183,0.023985298,0.029630275,0.025554648,-0.01849257,-0.009720604,0.022369102,0.029091543,-0.012285438,-0.016443046,-0.024102414,-0.00017430112,-0.011196262,0.012461112,-0.011676436,-0.034970753,0.015342158,0.004810528,0.00726703,0.041084193,0.010962031,0.055934463,-0.03108251,-0.011225541,-0.0050096246,-0.035626598,-0.01625566,-0.03583741,-0.031410433,-0.016033141,-0.038413953,-0.03632929,0.04815798,-0.03914007,0.010130509,-0.003718424,0.023294315,0.027756423,0.020471826,0.006248123,0.05560654,-0.025812302,-0.0031591963,-0.024360068,-0.010019249,0.007729637,-0.030754585,-0.040826537,0.025296994,-0.020261018,0.041974273,-0.020342998,-0.012683632,0.051858835,-0.024102414,-0.006248123,-0.018434012,-0.017801588,0.019581746,0.028927581,0.005598131,0.020741193,-0.012636785,0.023071796,-0.023669085,0.04738502,0.025531225,0.03808603,0.041997693,0.011775984,0.024477184,-0.015564678,0.011980937,-0.029138388,0.005577636,0.023610527,0.012461112,0.026749229,-0.02557807,0.0002022076,0.035720292,-0.02496907,0.03586083,-0.017251145,0.030614046,-0.005483943,0.0055190776,0.03265186,0.027077151,-0.03033297,-0.0025311634,0.020659212,0.03356536,-0.010540414,0.012250303,0.00017796099,-0.0051472355,0.0041429684,0.007917022,-0.009685469,-0.0023276748,-0.0043567047,0.004069771,0.016290795,0.010095375,-0.0118111195,-0.00065035815,0.013222364,-0.069566734,0.007940445,0.024898801,0.01595116,-0.04600305,0.025109608,0.015037658,0.0067341533,0.016466469,0.028810466,0.012027783,0.007788195,-0.012636785,-0.012835882,-0.0074192802,0.017239433,-0.006230556,-0.023212334,-0.014416944,0.002892758,0.008215667,0.0015634948,-0.0050154803,0.012707055,0.017883569,0.019078149,-0.010394019,0.029302351,0.018129513,-0.0046026474,-0.012273726,-0.0013534185,-0.015002523,-0.007284597,0.0030655037,-0.018539418,-0.028787041,0.027381653,-0.03965538,0.0065701916,-0.022322254,-0.007963869,-0.006716586,-0.042466156,0.0105052795,0.029466312,-0.004286435,0.052748915,0.036727488,0.0013980689,0.04063915,0.057948854,-0.026725804,0.013292633,0.0043040025,-0.011389503,0.02191235,-0.0069683846,-0.021783521,-0.011243109,-0.012589939,0.020741193,0.028505964,-0.034080673,-0.0025853293,-0.022849275,0.00038611586,0.001884099,-0.0006108316,-0.01974571,0.009421959,-0.035439216,0.009310699,0.0071382024,0.0005888724,-0.023306027,-0.037594143,0.005273135,-0.020928578,0.01251967,-0.032323938,0.022369102,-0.014545771,-0.018715091,0.010552126,-0.07579729,0.0362356,0.057058774,-0.03679776,0.014358386,0.0017391683,-0.008549447,0.03199601,-0.00074185483,-0.044386856,0.016466469,-0.03347167,-0.01162959,-0.023833048,0.059401087,-0.010569693,-0.010136365,0.016220527,0.030543778,0.0024184394,-0.007829186,0.019054726,-0.033260863,0.0015913097,-0.00030486684,-0.02153758,0.0067282976,-0.017696183,0.03398698,-0.023106929,0.018152935,-0.025109608,-0.030660894,0.0032616726,0.0091643045,0.012016072,-0.012835882,0.017016912,0.012871017,-0.046846285,0.020296153,0.01967544,-0.012765612,0.014498925,-0.0013863572,0.009363401,-0.003384644,0.032698706,-0.02385647,0.03508787,-0.008930073,-0.0043537766,0.027779847,0.003220682,-0.018024107,-0.010241769,-0.03787522,0.021596137,-0.013749384,-0.01364398,0.03405725,0.038577914,0.010622395,-0.016431333,0.013316057,-0.01878536,0.0037272074,-0.013608846,0.015154773,0.027756423,-0.009732315,0.011904812,-0.02035471,-0.014475502,-0.007799906,0.054107457,-0.023212334,0.004347921,0.0023115713,0.013386326,0.005109173,0.036399562,0.06478841,0.0007403909,0.019558324,-0.011916524,-0.01282417,-0.0067809997,0.009140881,-0.018750226,0.017649338,-0.0075832424,0.0116530135,0.0036364428,-0.001610341,0.00014355824,0.019124996,-0.016653854,-0.03398698,-0.017637625,-0.0026307118,-0.008408908,0.012578228,-0.05621554,-0.042372465,-0.032768976,-0.00041100295,0.027264537,-0.006148575,0.019429496,0.005384395,0.060853325,-0.007372434,-0.0031562685,-0.02609338,-0.022029465,0.035064444,0.0016952499,0.0475724,-0.009053044,-0.008344495,0.02184208,-0.00928142,-0.0021607848,0.0013512225,0.034783367,0.016560161,-0.010733655,0.003905809,0.031550974,-0.010675097,-0.02438349,-0.013234075,0.01121383,-0.009351689,0.004224949,0.0031796915,-0.009761594,-0.037242796,0.007126491,0.0020524529,0.016747547,-0.042395886,-0.008438187,0.038437378,0.020085344,0.020682635,-0.030824855,0.01596287,-0.006722442,0.039374303,-0.040896807,-0.029091543,-0.02124479,0.0052321446,-0.007899455,-0.05715247,0.030590624,-0.037008565,0.039866187,0.020061921,0.036469832,-0.013737673,-0.027030306,-0.041576076,-0.02548438,-0.022041177,-0.021443887,-0.048579596,-0.03703199,-0.005407818,0.0136908265,0.00475197,-0.0070035197,0.0061017284,0.053779535,0.020342998,-0.032089707,0.04040492,0.020155614,0.0015781343,-0.03063747,-0.024032144,-0.0123205725,0.078326985,-0.006652172,0.022275409,-0.04316885,-0.0062247002,-0.010780501,0.01431154,0.029302351,0.018703379,0.019370938,-0.0053668274,-0.02609338,0.046869706,0.013843077,0.0031357731,-0.013081825,0.019171841,0.0045177387,-0.002267653,-0.01062825,-0.008004859,-0.003305591,-0.019160131,0.018879052,-0.02377449,0.033448245,0.0056684003,0.031714935,-0.0037154958,-0.005325837,-0.018176358,0.0024242953,-0.029466312,-0.015646659,-0.011547609,-0.025601495,0.013187229,-0.0076593673,0.005407818,0.065865874,-0.0152836,0.024102414,-0.07284597,0.011090858,-0.051577758,0.00093765766,-0.010569693,0.003085999,-0.025437532,0.026187073,0.020460114,0.0022793645,0.028857311,0.01342146,0.010757078,0.047221053,0.027405076,0.0043332814,-0.026960036,-0.03162124,-0.011600311,0.00006720429,0.0020641645,0.048064288,-0.013234075,0.011752562,0.01076879,0.021432174,-0.00077808753,0.0009530291,0.014252982,-0.00507111,-0.007185049,0.02072948,-0.009187727,-0.002103691,0.01304669,0.0062071327,-0.01326921,-0.035673447,0.0027917458,-0.021935772,-0.009234574,0.0038677463,0.029185236,0.019242112,0.018551128,0.025133032,0.019499766,-0.002324747,0.010042672,0.0050096246,-0.051671453,0.03145728,0.021139385,0.045136396,-0.022158293,-0.015892603,-0.0034285625,0.012215168,-0.019815978,-0.03583741,0.007717925,0.0062949695,0.007987292,0.0035163993,0.02951316,0.03958511,0.008022427,-0.039257187,0.023423143,0.0008534808,-0.03632929,0.001010855,0.022111446,-0.022415947,-0.03094197,-0.018961033,-0.010183211,0.022579908,0.013597134,-0.0033173026,0.010762934,-0.008701697,-0.013058402,0.020237595,0.006640461,-0.037922066,0.02109254,0.009257997,0.014030462,0.0019602242,0.013761096,-0.037078835,0.009802585,-0.02862308,0.022322254,0.025437532,0.0009588849,0.014545771,0.0027697866,0.0070210868,0.019968228,0.010411587,0.023060083,-0.044105776,0.039631955,-0.03508787,-0.011178695,-0.011348512,-0.012039495,0.02951316,-0.030918548,0.03981934,0.020940289,-0.029630275,-0.019722287,0.009925556,-0.03176178,0.0030391526,-0.017825011,-0.010604828,-0.004116617,-0.007349011,0.008514312,-0.013620557,0.0592137,-0.005735742,0.018914187,-0.007343155,0.022111446,0.004740258,0.008578726,0.0090589,0.0016879302,-0.009375113,-0.0029820588,0.008438187,-0.003191403,0.000023411705,0.022181716,-0.031550974,-0.006382806,0.011330945,0.019253822,-0.03012216,-0.0034197788,0.017274568,0.0062129884,0.0062422673,0.0015795982,-0.02496907,0.0387653,-0.038484223,0.026632113,0.04225535,0.029466312,0.021654695,0.005372683,0.0073607224,-0.018059243,-0.013480018,0.0036715774,-0.026046535,0.010657529,-0.032909516,0.054857,-0.016489891,-0.01818807,-0.0062247002,-0.04419947,-0.004915932,0.02571861,-0.04494901,-0.024102414,-0.014569194,-0.0042161657,0.002043669,0.041177884,-0.02199433,0.010118797,-0.030215854,0.0038179723,0.04740844,-0.01625566,-0.019968228,0.0036188755,0.0036452266,-0.009685469,-0.015939448,0.03607164,0.021104252,0.008537735,0.0025194518,-0.0031035664,0.062258713,0.009094035,-0.003083071,-0.010581405,0.0012077558,0.016583584,0.020846596,0.00039160566,-0.03330771,0.00082127395,0.035298675,0.017450241,0.0034285625,-0.016864663,0.039702225,-0.0718622,0.04731475,0.012062918,-0.0058235787,0.0305672,-0.0045470176,0.014428656,-0.004459181,-0.012472823,0.02548438,-0.0070796446,0.00077662355,-0.017251145,0.0046319263,-0.013152095,0.017403394,-0.010903473,0.019769132,0.040592305,-0.014416944,0.028669925,0.026678959,0.016806105,0.016981779,0.026936613,-0.0050476873,-0.009539074,-0.017415106,0.009749883,-0.013292633,0.014920542,-0.037078835,0.008807101,-0.029185236,-0.00823909,0.0053404765,0.03609506,0.021514157,0.007366578,0.0073841456,-0.022650179,-0.021010559,0.01121383,-0.011717427,-0.008455754,0.005240928,-0.043496776,0.011243109,0.04560486,-0.03988961,0.0049539944,0.004119545,0.007788195,-0.005100389,-0.037523873,0.010798069,-0.032698706,0.009550787,-0.0032060426,-0.009644479,-0.0007455147,-0.019171841,0.0066697397,-0.0051443074,-0.0058587133,-0.040967077,0.009047189,-0.0012114156,-0.03958511,-0.06324248,0.012402554,-0.03274555,0.02431322,-0.012144899,0.001310964,0.004558729,-0.015201619,-0.0075715305,-0.025788879,-0.0028517675,0.010616539,0.012507958,0.009416103,-0.016911509,0.005401962,0.007829186,0.007618377,-0.012425977,0.014721445,0.018387167,0.0071967603,-0.019640304,-0.029911352,0.015599812,-0.018691668,-0.0163962,-0.021443887,-0.024266375,-0.003914593,0.032042857,0.000980844,-0.028646503,0.0010020713,-0.005876281,0.010042672,-0.01260165,0.0012626537,-0.009843576,-0.0026746301,-0.0028839745,-0.0110323,-0.01707547,0.020928578,0.0022735088,-0.014674598,0.00671073,-0.024687992,0.0142646935,-0.030965393,-0.010218346,0.01431154,-0.0024433264,-0.006605326,0.03419779,0.030145584,0.00897692,-0.017052047,0.017461952,0.05560654,0.008748543,0.016794393,0.020870019,0.023270892,0.02609338,0.0054224576,0.041880578,0.009773306,0.007782339,-0.00031145458,-0.061837096,-0.01668899,0.012355708,0.020073634,-0.0057503814,0.013339479,0.008039993,0.03412752,0.0070269424,-0.011682292,-0.03817972,-0.0151899075,-0.011904812,-0.003899953,-0.0091643045,-0.010235913,-0.006798567,0.010265192,0.0014310076,-0.020518672,0.009896277,-0.003768198,0.02392674,0.03258159,-0.017016912,-0.014358386,0.006915683,-0.00019013004,0.034549136,0.007835041,-0.0037330633,-0.025226723,0.0011243108,0.017707895,-0.020542096,-0.015517832,-0.0074427035,0.06099386,0.0040082852,0.031855475,-0.011775984,0.032534745,0.012660208,-0.01080978,-0.00207734,-0.008789534,-0.006499922,-0.007425136,0.0049247155,-0.016197102,-0.006078305,0.004690484,0.016888086,0.005577636,-0.009621056,0.04255985,-0.00095449307,-0.04323912,0.041786887,0.047525555,0.007067933,0.031644665,0.009082323,-0.052983146,-0.0305672,-0.0030479364,0.013280922,0.012191745,0.00096254476,-0.009943124,-0.025367264,0.03108251,-0.001557639,-0.023188911,0.0024696775,0.009076468,-0.00024429604,0.00093619374,-0.0042483723,0.025015917,-0.010241769,-0.0028063853,0.023212334,-0.00009817591,-0.0076066656,-0.014639464,0.02482853,0.01032375,0.024336645,0.009269709,0.007067933,0.025695186,0.0017435602,0.032698706,0.022697024,0.017930415,-0.0012714374,0.047923747,0.007103068,0.0034490577,-0.0067048743,0.03412752,0.013351191,0.0019250895,0.019043015,0.0043625603,0.0071440586,-0.023575393,-0.03419779,-0.025109608,-0.010159788,0.0014266158,-0.0046026474,-0.032136552,0.019206977,0.017567357,-0.022720449,-0.031316742,0.009621056,-0.01946463,-0.028669925,0.021490732,0.019124996,-0.0066755954,-0.039702225,0.019078149,-0.049750753,0.015213331,0.02937262,0.010071951,-0.014112443,0.02906812,-0.007343155,0.009433671,0.009439526,0.030988816,-0.010938607,-0.0245943,-0.04429316,-0.015705217,-0.0035017598,0.012191745,0.06900458,0.018773649,-0.012566516,0.034385175,0.008789534,0.012789035,-0.0139484815,-0.02557807,-0.0080165705,0.02438349,-0.004450397,0.009890422,-0.016302507,0.0065584797,-0.0305672,0.00972646,0.0378518,-0.028529387,0.034314904,-0.0074719824,0.012414265,-0.017567357,-0.011939947,0.0044035506]},{"id":"interface-GatewayGuildRoleCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleCreateDispatchData\nDescription: GUILD_ROLE_CREATE — guild_id, role\nProperties: guild_id: string, role: APIRole","meta":{"url":"/docs/typedefs/GatewayGuildRoleCreateDispatchData"},"embedding":[0.017818429,0.035203844,-0.0009668338,0.008920039,0.01434351,-0.0009898375,-0.052091297,0.0046873507,0.037823565,-0.015545118,0.010300264,-0.010121646,0.014051227,-0.011117574,0.030332465,-0.023664085,-0.05061906,0.030787127,0.009845601,0.07170673,-0.006809108,-0.028297309,0.020578878,0.0015642545,-0.03470588,0.028751971,0.024681663,0.038148325,-0.0030906205,-0.02834061,0.058413267,-0.026954973,0.03321199,-0.022581557,0.02349088,-0.007777971,-0.0084707895,0.007339547,-0.022776412,-0.019550474,-0.02643536,-0.0279942,0.022668159,-0.013304282,-0.045942534,0.018651975,0.015902352,0.017450368,0.01829474,-0.0033233643,-0.024400204,-0.0069823125,-0.019117463,0.07538732,0.0146141425,-0.0037509631,-0.024270302,0.005921434,-0.047847785,0.05061906,-0.008140619,-0.03840813,0.010235312,0.012438259,0.026543612,0.0033260705,-0.06183406,0.032562476,0.016670948,0.03416462,0.00097427616,-0.042781547,-0.020492274,0.017136434,-0.007750908,-0.019582951,-0.023772338,-0.009223147,0.007642655,-0.051701587,-0.026045648,0.04693846,-0.06863234,-0.06438883,0.050792262,-0.02346923,-0.015047153,-0.027712744,-0.0065709515,-0.007274595,-0.02567759,-0.009223147,-0.06079483,0.013813071,-0.022278449,-0.044188835,0.061227843,0.024443505,-0.01786173,0.05546879,0.05520898,-0.0261106,-0.03392646,-0.027496237,0.0037861455,0.013499137,-0.027474588,0.03477083,0.0032259366,-0.0032990072,-0.08629922,-0.0011650719,0.024010494,-0.02574254,-0.024400204,0.033017136,0.01192947,-0.06295989,0.02066548,-0.013293457,-0.04137426,-0.017093133,0.0005287478,-0.054516163,-0.032692377,-0.004898444,-0.013477487,-0.051571686,-0.06183406,0.0075127515,0.0018890132,0.0016982175,0.056075007,-0.010181186,-0.027452936,-0.013271806,-0.025829144,-0.016172985,-0.008833437,-0.0371524,-0.004773953,-0.002784806,0.027084878,0.06105464,-0.061747458,0.009482955,-0.01878188,0.0098023005,-0.017320465,0.07092731,-0.07291916,0.03985872,-0.006229955,-0.023880592,-0.020643828,-0.020914461,-0.011139224,0.0005111567,-0.005748229,-0.019734506,0.010792815,-0.038278226,0.0006109523,0.026002347,-0.028102454,-0.050445855,0.0012104028,0.010381454,-0.057200834,0.030051006,0.026695166,-0.007507339,-0.045639426,0.021477377,-0.019258192,0.04016183,-0.02087116,-0.027777696,-0.0060350993,-0.019810282,0.018998384,-0.018121537,-0.02307952,-0.05174489,-0.02753954,0.006744156,-0.035939965,-0.017926682,0.008048603,0.0007598001,-0.029921103,0.018911783,0.042716596,0.010587134,0.019453047,-0.022798061,0.03836483,0.00036095578,0.041179404,-0.007832098,0.029293235,-0.037910167,0.02349088,0.0076805437,0.0030256687,-0.011767091,-0.011788742,-0.042002127,-0.02909838,-0.0055344296,0.032367617,-0.045293014,-0.0316315,0.009093244,-0.041634068,0.0633929,-0.049969543,0.015057979,0.030895378,-0.0035750521,-0.0076697185,0.022927966,-0.0123841325,-0.060188614,0.028838575,0.019734506,-0.022516605,0.00019553181,-0.0028172818,0.009060768,-0.018792704,-0.003572346,-0.0068415836,-0.07222634,-0.0013572208,0.028968478,0.0041406737,0.024833217,0.025850793,0.018218964,-0.036416277,-0.03422957,-0.022927966,-0.011853693,0.02567759,-0.007198818,0.045466222,0.024140397,-0.003951231,0.04174232,0.03503064,0.04607244,-0.009179846,0.0061325273,0.0047577154,-0.020264944,0.021314997,0.008849675,0.011788742,0.05178819,0.018879307,-0.043496016,0.003363959,0.031025283,-0.0055912626,-0.006884885,0.0029038843,-0.0055236043,-0.026283806,0.0037509631,0.0026034825,-0.01790503,0.06547136,-0.04399398,-0.021434076,0.0047333585,0.0336017,0.013347583,0.009753587,-0.014083703,-0.011085098,-0.008113556,0.005131188,0.04169902,-0.028080804,0.06975817,0.029488092,0.0036102345,0.0083950125,0.0186195,-0.019485522,0.00030479959,0.014451763,-0.024984771,0.020860335,-0.0027929249,0.027756045,-0.026283806,0.04247844,0.0336017,0.024227,0.03765036,-0.020210817,-0.024660012,-0.004487083,-0.016216286,0.015209533,-0.0446435,0.029834501,-0.010419342,0.010359803,0.029228285,-0.001073057,0.011420681,-0.006311144,0.010083758,0.03020256,0.005461359,-0.0069552492,0.06365271,0.013228505,-0.01921489,0.016010605,-0.025071373,0.0058835456,-0.043322813,-0.020946937,-0.018900957,-0.0051393067,0.045466222,0.04581263,-0.05551209,-0.0085086785,0.017645223,0.0483674,0.023577483,-0.017558621,0.052394405,0.072183035,-0.0074477997,0.015739972,-0.010473468,-0.023902241,-0.02303622,-0.00016728457,-0.013196029,0.002155586,0.014624967,-0.00076453615,0.032562476,0.0029174157,0.044513594,-0.02015669,-0.0019201359,-0.028881876,-0.04698176,0.029163333,-0.031111885,-0.00062346907,0.041482512,-0.06954166,-0.026240503,-0.016064731,0.022689808,0.017093133,0.010484294,0.009872665,0.004495202,-0.005764467,-0.023988843,0.00377532,0.035961617,-0.1079065,-0.017926682,0.0013200089,-0.02574254,-0.030115958,-0.04615904,0.01602143,-0.0139862755,-0.023555832,0.021109316,0.025071373,-0.013228505,0.01608638,-0.010830703,-0.029747898,0.049320024,-0.040010273,-0.022776412,0.03762871,0.00873601,0.002447869,-0.008903801,-0.009791476,-0.039339107,0.05616161,0.020946937,0.02535283,0.0013626334,0.01747202,0.018316392,0.035182193,0.005569612,-0.04888701,0.0015656076,0.008081079,0.016281238,0.024768265,-0.030007705,0.011767091,0.023793988,0.03128509,0.021639755,0.03477083,-0.03282228,0.019507173,-0.021704707,-0.04169902,0.0044410755,0.0026481368,0.0045574475,-0.020925287,0.0033125388,0.054472864,-0.034078013,-0.0024018614,-0.0050932993,-0.030722175,-0.034900736,-0.057893652,0.035593554,0.053606838,-0.008459965,0.022213496,0.009753587,-0.012135151,-0.055425487,0.02034072,-0.002289549,-0.031155186,-0.010641261,-0.01653022,0.015426039,-0.013661517,0.015945652,0.07153352,-0.058326665,0.054213054,-0.024811566,-0.01604308,0.014386811,-0.0051203626,0.03730395,0.0107441,-0.02204029,-0.0073882607,0.05330373,-0.04550952,0.020362372,-0.004779366,-0.005142013,0.01231918,0.052697513,-0.054689366,0.021325823,-0.014765697,-0.026132252,-0.015447689,-0.004368005,-0.020936113,-0.0043842425,0.027301382,0.0052800355,-0.004294934,0.010219074,-0.029791199,0.04243514,0.019918535,0.02650031,-0.008616932,0.022094417,-0.03542035,-0.031176837,0.05178819,0.07876481,-0.016876629,-0.020492274,-0.03165315,0.02199699,0.018684452,0.021109316,0.027301382,-0.008828024,0.0122650545,-0.00010588487,0.0035804647,-0.056204908,-0.032627426,0.03241092,-0.004909269,-0.030981982,-0.007068915,-0.013867198,0.0042651645,0.013098601,0.0018308272,-0.007696782,-0.027301382,0.010641261,0.0092935115,-0.010403104,0.016010605,-0.042240284,-0.034922387,-0.007507339,-0.044903304,0.057633847,0.006911948,0.0029498916,-0.017764302,0.02314447,0.028167406,0.005629151,-0.009001229,0.0144950645,-0.0003575729,-0.06395581,0.005888958,-0.015804924,0.042002127,-0.006457286,0.018771054,0.052697513,-0.011886169,-0.033341896,0.01730964,0.025417782,0.027691092,-0.024270302,-0.0053909947,0.014040402,0.0032990072,0.0049769273,0.003707662,-0.0028254008,-0.0013896967,-0.0098401895,0.02307952,0.014440938,0.0035534017,-0.024898168,0.00018301507,0.0025195864,-0.0066737914,0.0135207875,-0.017601922,-0.046115737,0.021401599,-0.021899562,0.016064731,-0.0031014457,-0.018868482,-0.029834501,-0.04927672,0.015934827,-0.011095922,0.00511495,-0.016432792,-0.0409196,-0.017991632,0.027366335,0.042954754,0.013390885,-0.0042245695,0.013250155,-0.012026898,0.035312098,0.034402773,-0.015490991,-0.0279942,-0.09543576,0.00912572,0.040031925,-0.058283363,0.01935562,0.012275879,-0.015328611,0.0049769273,0.0055641993,-0.03985872,0.018132363,0.026695166,-0.015393564,-0.0027739806,-0.037390552,0.010099996,0.005878133,-0.026413709,0.0205031,-0.010673736,0.018392168,-0.055815198,-0.018143186,0.023057869,-0.010338153,0.060145315,0.028405562,0.013011999,-0.0029986054,0.01712561,0.018955084,-0.030007705,-0.0261106,-0.004478964,-0.032952186,-0.028232358,0.018738577,-0.013185204,-0.034575976,0.028470514,-0.0123841325,-0.009169021,0.010440993,-0.013672342,0.01880353,-0.05914939,-0.012200102,-0.023166122,-0.017775128,-0.0063869213,-0.040010273,-0.028773623,-0.028578768,-0.02381564,-0.054775972,0.022841362,0.013434186,0.0038456845,-0.008032366,-0.010365216,-0.010311089,-0.006819933,-0.009623683,0.05806686,-0.008524916,0.02643536,0.013488312,-0.004595336,0.02232175,-0.048280794,-0.020741256,0.030051006,-0.024313603,0.05776375,-0.0005375433,-0.027452936,0.039772116,0.0015304255,0.02232175,-0.023707386,-0.027496237,0.018511247,0.021206744,0.03390481,0.014679094,0.0017821135,0.039642215,-0.022581557,0.019615427,0.0115614105,0.027907599,0.020535577,0.022516605,-0.0023883297,0.015242009,-0.016703423,-0.028254008,0.02689002,0.0035101005,0.013953799,-0.026305456,-0.010798227,-0.010408517,0.051528383,-0.03422957,0.044989906,-0.030505668,0.031025283,-0.02314447,0.00395935,0.021358298,0.018565373,0.0018172957,-0.0082759345,0.039382406,0.0279942,0.004598042,-0.017829254,0.0010392279,-0.006581777,0.02204029,0.033038788,-0.035225496,-0.012048548,-0.015350262,-0.008259697,0.040854648,0.0096832225,0.00959662,-0.017028183,-0.0064897616,-0.051311877,-0.008081079,-0.00017810985,0.025894094,-0.012936222,-0.012611464,0.020232469,0.016335363,0.018716928,0.05135518,-0.006744156,-0.027236432,-0.012752192,0.018197313,0.016660122,-0.0033477212,-0.025547685,-0.027323034,-0.0031068583,-0.00035791117,0.033493448,0.019864408,-0.03165315,-0.00082069234,0.025764192,0.03953396,0.016172985,0.023729037,0.014040402,-0.002299021,-0.011453157,-0.0031772228,-0.032627426,-0.015501816,0.007783384,0.01231918,0.008795548,0.009120307,-0.025785843,0.0039701755,-0.015480165,-0.0043165847,-0.015685845,-0.0391226,0.0014465294,0.010305677,-0.03981542,0.06599097,0.010013394,0.0028551703,0.019409746,0.059322592,-0.030808777,-0.009553319,-0.012492386,-0.0057319915,0.011528934,-0.010403104,-0.0049444516,-0.01659517,-0.009591208,-0.014202781,0.047934387,-0.033038788,0.022733111,-0.00288494,-0.001576433,-0.0021366416,-0.015025503,-0.03241092,-0.011723789,-0.019799456,0.013228505,0.01714726,0.0046873507,-0.019485522,0.0067549814,-0.012427433,-0.03461928,0.03238927,-0.0023937423,-0.017060658,-0.020178342,-0.009537081,-0.010083758,-0.08270522,-0.0023937423,0.049666435,0.010863179,0.010657499,0.002784806,0.03132839,0.02792925,-0.023945542,-0.039598912,0.010706212,-0.058413267,0.0017956451,0.018348867,0.0447301,0.003875454,-0.014863124,0.015014678,0.019279843,0.014679094,0.014798172,0.000098949924,0.012936222,-0.010511357,-0.0055966754,-0.0073016584,0.0012131091,-0.022949615,0.041547466,-0.009104069,0.038451433,-0.01602143,-0.030310813,-0.015588419,-0.028405562,0.041915525,0.012557337,0.012979523,0.0447301,-0.01822979,0.008600693,0.021087665,-0.0005903166,-0.00084166636,-0.02232175,0.01025155,0.011810392,0.020351546,0.0014045815,0.031479944,0.018078236,0.00047360646,0.009082419,0.00042759898,0.007951176,0.022733111,-0.01528531,0.0142244315,-0.026327107,-0.061011337,0.05356354,0.02068713,-0.012524861,-0.0018132362,0.017840078,-0.04503321,-0.00037651713,0.009223147,-0.0069173607,0.0006728595,0.0069931378,0.03500899,-0.007198818,0.016584344,-0.02275476,0.02717148,-0.032670725,0.010646673,0.002909297,0.033796556,0.012210928,0.023317676,0.028470514,-0.0026210735,0.019431397,-0.009796888,-0.010944368,-0.0032475872,-0.015047153,-0.0101541225,-0.008010715,0.0011495105,0.010186599,-0.0045574475,-0.011139224,0.004703589,-0.018392168,-0.016692597,-0.016735898,-0.03873289,-0.02109849,-0.019702028,-0.006668379,-0.027972551,-0.0110526215,-0.007074327,0.038494732,0.0036697735,-0.03057062,0.013477487,0.005201552,0.04022678,-0.025894094,0.009239386,-0.011886169,-0.013704818,0.030094307,0.014094529,0.013390885,-0.013455836,-0.011777916,0.013867198,0.00062786683,0.032129463,-0.013856372,0.0069552492,0.005759055,-0.015490991,-0.008638582,0.03422957,-0.027193129,-0.032973833,0.0025642407,0.02574254,0.009342226,0.0024532815,-0.018684452,0.0072475323,-0.048324097,-0.043907378,0.0008010715,0.01788338,-0.01245991,-0.0058348314,0.02981285,0.02027577,0.013185204,-0.0025628875,-0.0100350445,0.006668379,0.00804319,-0.04771788,-0.015198708,-0.039793767,-0.017179737,0.026716817,-0.038884442,0.040464938,-0.00017608011,0.0021082254,0.008232634,0.04763128,-0.007204231,0.0022381288,-0.04607244,-0.030613922,0.008108143,0.004825373,-0.0410062,-0.06837253,-0.01802411,0.039295804,0.0021258164,-0.010408517,-0.035052292,0.033017136,0.004738771,-0.016584344,0.011058034,0.0260673,-0.022992916,-0.009553319,0.0044329567,0.007485688,0.052697513,-0.01025155,0.042629994,-0.05512238,0.0022597795,-0.02756119,-0.0065493006,0.038213275,0.015144582,0.007095978,0.009158196,-0.024789914,0.04693846,0.011399031,0.0024803446,-0.03578841,0.015988953,-0.006836171,-0.014798172,0.0042543393,0.000034442186,-0.004790191,0.008459965,0.024660012,-0.010846941,-0.012676415,0.0058673075,0.0035534017,0.014744046,-0.008833437,0.018099885,0.008454552,-0.073611975,-0.004730652,0.0032719441,-0.040464938,-0.014570841,-0.010256963,-0.0013991689,0.032670725,-0.02756119,0.005694103,-0.052784115,0.010533008,-0.033623353,-0.013780595,0.018154012,-0.013369234,-0.0022002403,-0.007355785,0.034099665,-0.014852298,0.037845217,0.018565373,-0.0028578767,0.03160985,0.018110711,0.027236432,-0.021152617,-0.03015926,0.0023775045,0.016551869,0.029834501,0.050792262,0.001329481,0.004346354,-0.007929525,0.0059593227,-0.027019925,-0.0057265786,0.034749184,0.019972662,0.021477377,0.00941259,0.009499192,0.0088172,0.010381454,0.032692377,-0.007496514,-0.015610069,0.017028183,-0.018608674,0.0018145894,0.017969983,-0.013098601,0.0067712194,0.045855932,-0.00021650581,0.013899673,0.009282687,0.007940351,0.0012733248,-0.012156801,0.03091703,0.0094504785,0.016876629,-0.015664196,-0.004906563,-0.026088951,0.0022435414,-0.019734506,-0.01151811,-0.00027925867,-0.0019282548,0.00017421952,0.020470625,-0.012416609,0.059192687,0.005547961,-0.04503321,0.0176344,-0.003564227,-0.036351327,-0.0017293402,0.036351327,-0.0072367066,-0.017645223,-0.012005247,-0.04020513,0.017991632,-0.0015168939,0.0048361984,0.032865584,-0.0058402442,-0.011334079,0.006939011,0.037390552,-0.013715643,0.017937506,0.034792483,0.021563979,0.01976698,-0.014289384,-0.0034478551,-0.009055356,-0.028578768,0.023988843,0.028903525,0.017374592,-0.0185762,-0.023967193,0.01691993,0.0087847235,0.015577593,0.027366335,-0.023317676,0.05291402,-0.018933434,-0.027106527,-0.017396241,0.022798061,0.027084878,-0.0057915305,0.059365895,0.008113556,-0.0064193974,-0.032584123,0.01358574,-0.009261036,0.011896994,0.0004688704,0.0035155131,0.008367949,-0.006592602,0.014841474,-0.002809163,0.06295989,-0.009358464,-0.018381344,0.0016143215,0.0067387433,0.0052800355,0.005109537,0.00091406045,-0.017158085,-0.010733276,-0.0011718377,-0.0008464024,0.0039782943,0.013683167,0.009196084,-0.025764192,-0.016421966,0.014841474,0.03392646,-0.020578878,0.008524916,0.0027171478,-0.013867198,0.00930975,0.009223147,-0.032952186,0.028838575,-0.02717148,0.008947102,0.021683058,-0.0146141425,0.02868702,0.006392334,0.00035994092,-0.014884775,0.0076047666,0.035138894,-0.038602985,-0.0023098465,-0.00922856,0.022689808,-0.0022205377,0.0016332658,-0.0024059208,-0.038105022,-0.007095978,0.0019255485,-0.049753036,-0.020470625,-0.0132826315,-0.0316748,0.011918645,0.028578768,-0.03054897,-0.0033829033,-0.018727753,-0.0061325273,0.037109096,0.00041745027,0.005336868,-0.03124179,0.0032069923,-0.01636784,0.0028876462,-0.00015062377,0.026002347,0.0036264723,0.015729148,0.015967304,0.03438112,0.01452754,-0.011160875,-0.009104069,0.013856372,0.02567759,0.011864519,0.032930534,-0.047371473,-0.0048524365,0.029747898,-0.00092285604,-0.006029687,0.034597628,0.047414772,-0.059885506,0.058629774,0.022051116,-0.014754871,0.0037699074,-0.017017357,0.026565263,-0.016183808,-0.023317676,0.010543833,0.0061866534,0.021509852,0.004343648,-0.00006317572,-0.021758834,0.02530953,-0.004882206,0.034402773,0.023296025,0.013185204,0.003783439,0.025461083,0.010608785,0.0108198775,0.029964404,0.025049722,-0.006376096,-0.025157975,0.013715643,-0.0038971046,0.0023788577,-0.042305235,0.022624858,-0.033363547,-0.0062949066,-0.0015953772,0.014289384,0.022559905,0.018532898,0.010543833,-0.0261106,-0.009239386,0.0042164507,-0.022408351,0.03990202,0.029206634,-0.023404278,0.012135151,0.024833217,-0.03578841,0.011085098,-0.0008186626,0.0055208984,-0.020178342,-0.007951176,0.011528934,-0.016443616,0.012340832,-0.0034613865,-0.008876738,0.013564089,-0.01923654,0.014830648,0.014895599,-0.0043301163,-0.0135207875,-0.0026954974,-0.036243074,-0.039685514,-0.046895158,0.007139279,-0.026630215,0.027626142,-0.00165221,0.0062894938,-0.020221643,-0.0036697735,-0.0036372975,-0.048454,-0.017342115,-0.007323309,0.017645223,0.009358464,-0.0067549814,-0.019106638,-0.022213496,0.0055154855,0.009477542,0.009980918,0.01841382,0.02275476,-0.040876295,-0.010733276,0.0032773567,-0.012676415,-0.009239386,0.0008991757,-0.0049011502,0.022343399,0.040746395,-0.029531393,0.027041575,-0.015599243,-0.0044410755,-0.008892976,0.009131133,0.00017810985,0.015036329,-0.016064731,-0.005385582,-0.052394405,-0.01565337,0.0077400827,-0.009374701,-0.027387986,0.01284962,-0.01935562,0.020199992,-0.015620895,0.010094583,0.0031041522,-0.014213607,-0.025894094,0.021921214,0.03645958,-0.02682507,-0.00576988,0.022927966,0.04685186,0.014873949,0.009737349,0.0062732557,0.02084951,0.03210781,-0.00540182,0.030029356,0.021412425,-0.0022205377,0.004690057,-0.02834061,-0.01990771,0.008903801,-0.012016073,0.015447689,0.008514091,0.023923893,0.012892921,0.0057861176,0.016768375,-0.039274152,-0.021563979,-0.029206634,-0.028535467,-0.006944424,-0.021477377,-0.025547685,-0.025612637,0.045639426,-0.019604601,0.011886169,-0.020589702,0.023252724,0.01900921,-0.014170305,-0.016854977,0.0146141425,0.010446405,0.008086492,-0.021942863,0.038169976,-0.041460864,0.014993028,-0.011003908,-0.028795272,-0.00070229074,0.00015679757,0.031046933,0.004538503,0.02463836,-0.023534182,0.04620234,-0.038191624,-0.018749403,0.01090648,0.01454919,-0.021758834,0.004002651,0.0076697185,0.004990459,-0.024075447,0.008773898,0.01287127,0.013347583,-0.0102299,0.028254008,-0.018792704,-0.05408315,0.0018930727,0.03944736,0.021856261,-0.011474808,0.03020256,-0.010164948,-0.019225717,-0.013693993,0.010543833,0.010733276,-0.0032990072,-0.00009057723,-0.039360758,0.011756266,0.015469341,0.0052232025,-0.0061271144,0.016725074,0.0063977465,-0.0048280796,0.012005247,0.029682947,-0.0038538035,0.016725074,0.0034072602,0.005014816,-0.019074162,-0.031501595,0.013434186,0.011896994,0.025049722,-0.008026953,-0.012719716,0.053736743,-0.017277164,0.0014722395,0.0069552492,-0.013477487,-0.012589813,-0.003675186,-0.0034776246,0.0067495685,0.0063869213,0.040183477,0.021314997,0.028968478,-0.020470625,0.0113665555,0.012817144,-0.0316748,-0.02496312,-0.011853693,-0.020037612,-0.009347638,0.00097021664,-0.042738248,0.0027076758,0.020676306,-0.004321997,-0.005412645,0.0040134764,-0.035160545,0.015231184,0.0047279457,0.002852464,-0.014430112,-0.001400522,0.03091703,-0.058023557,0.01507963,0.052264504,0.033948112,-0.021964515,0.027647791,-0.019323144,-0.0126980655,-0.0018930727,0.035593554,-0.0029661297,-0.0071934056,-0.032194413,-0.012362482,0.033948112,0.028167406,0.05546879,0.025179626,-0.012568163,0.040183477,0.007696782,-0.010311089,-0.008465378,-0.028795272,-0.03468423,-0.012752192,-0.00007142155,-0.038862795,-0.034900736,0.027820997,-0.027777696,-0.0027022632,0.036567833,-0.009369289,0.025829144,-0.023620784,0.00330442,-0.044058934,-0.012135151,0.0101541225]},{"id":"interface-GatewayGuildRoleDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleDeleteDispatchData\nDescription: GUILD_ROLE_DELETE — guild_id, role_id\nProperties: guild_id: string, role_id: string","meta":{"url":"/docs/typedefs/GatewayGuildRoleDeleteDispatchData"},"embedding":[0.016305797,0.042805504,-0.005135991,0.003953765,-0.00331804,0.03042559,-0.050991863,0.021135079,0.043207016,-0.0066081975,0.038388886,-0.04844896,0.00058762764,-0.0023351752,0.047958225,-0.015558541,-0.040485665,0.04427771,-0.0022654685,0.10037768,0.0010497832,0.007455831,0.028418036,0.01567007,-0.032031633,0.027079668,0.049876552,0.014610529,0.019450964,-0.027213505,0.054739296,-0.03221008,0.04182403,-0.02712428,-0.0016130136,-0.011632658,-0.0134283025,0.007662163,-0.025183644,-0.008610174,-0.023332234,-0.025585156,0.007121239,-0.006937213,-0.035511393,0.04530379,0.003348711,-0.0054733716,0.015547387,-0.023376847,-0.008911307,-0.020276291,-0.013294466,0.08980457,0.0077959998,0.010623304,-0.020845098,0.015101264,-0.013495222,0.033972267,-0.02288611,-0.032120857,0.005872094,0.011643811,0.009970849,-0.007104509,-0.06723074,0.048716635,0.009898354,0.04224785,-0.013952497,-0.045370713,-0.03647056,0.013149476,-0.0001666862,-0.028395731,0.0011982586,-0.012391067,0.006658386,-0.06955058,-0.007890801,0.03957111,-0.04938582,-0.0565684,0.035689842,-0.024648298,-0.028440343,-0.021179691,0.0060728495,0.034886822,-0.05063496,-0.00549289,-0.05407011,-0.007126815,-0.041913256,-0.06397404,0.049653493,0.004656409,-0.03274543,0.05754987,0.05853134,-0.027503485,-0.054159336,-0.03620288,-0.0021804264,0.010930014,-0.023733744,0.04648602,-0.015145876,-0.019015994,-0.064910896,0.016071582,0.0017356974,-0.0038450228,-0.023979113,0.057505257,-0.011180958,-0.052820966,0.04630757,-0.004015107,-0.03760817,-0.021090467,-0.018157206,-0.058085218,-0.06959519,0.0042465334,-0.009480114,-0.05915591,-0.042515524,-0.007511596,0.009290512,-0.02335454,0.021057006,-0.028261892,-0.015915439,0.013350232,-0.01298218,-0.033927657,-0.004965907,-0.036069047,0.0021316316,0.0043413346,0.011799954,0.06861372,-0.056122277,0.038455803,0.006948366,0.005445489,-0.027325034,0.052820966,-0.047869,0.02288611,0.030492509,-0.012435679,-0.030894019,-0.017064206,0.010021038,0.00094104075,-0.009703176,-0.021636967,0.0012693594,-0.06410788,0.010902131,0.0077067753,-0.027971914,-0.045995284,0.007188157,0.021826569,-0.04010646,0.03163012,0.01185572,-0.027146585,-0.021157384,-0.007455831,-0.043028567,0.04577222,-0.02810575,-0.015134724,-0.011911484,-0.036314413,0.0069037536,-0.020566272,-0.0041824034,-0.037585866,-0.036760535,0.0030085421,-0.02585283,-0.009173404,-0.038098905,0.027570402,0.003950977,0.03593521,0.028128056,-0.0032511216,0.010439279,-0.007890801,0.02868571,-0.014175559,0.014889356,-0.024068337,0.020220526,-0.0105396565,0.03633672,-0.003432359,-0.009580492,-0.0066639627,-0.006624927,-0.049296595,-0.008950343,-0.011247877,0.036894374,-0.041244075,-0.04485767,-0.01037236,-0.031183999,0.046932142,-0.04340777,0.038344275,0.0380766,-0.0006026146,-0.003992801,0.013729436,-0.021391599,-0.052999415,0.0340838,0.004946389,-0.0024411294,-0.004656409,-0.006742034,-0.012312995,-0.022975335,-0.031273223,0.007924261,-0.06522319,-0.0069149067,0.028172668,-0.022016171,0.013461762,0.024179868,-0.00041301234,-0.041467134,-0.05870979,-0.0054315478,-0.022060784,0.021491976,-0.01729842,0.05210717,0.02121315,-0.0024787711,0.037920456,0.008242123,0.07914222,0.002146967,-0.033503838,-0.008978226,-0.020644343,0.027101973,-0.0036860914,0.017900687,0.030202528,0.020945476,-0.027681934,0.0018514105,0.03539986,-0.006585891,0.022863805,0.02741426,-0.012123393,-0.042783197,0.0023086867,-0.004926871,-0.024001418,0.06736457,-0.0384335,-0.008515373,0.020131301,0.041712504,0.012435679,0.011030392,-0.053802438,-0.019529035,0.006875871,0.014231324,0.018447187,-0.02712428,0.07169197,0.006875871,0.02850726,0.014643989,0.03738511,-0.036135964,0.010812907,0.015580847,-0.03452992,-0.0016144076,0.008749587,0.01900484,-0.015859673,0.018882157,0.021012394,0.032455448,0.03894654,-0.044612303,-0.030046385,-0.01588198,-0.014320549,-0.004012319,-0.01740995,-0.004221439,-0.026588932,-0.0063628294,0.01082406,-0.014342855,0.02509442,-0.0017315149,-0.019796709,-0.0027032266,0.015948897,0.017677624,0.025250563,0.054605458,-0.016841143,0.004893412,-0.037764315,0.003100555,-0.034931432,-0.015469315,-0.02306456,0.0044779596,0.047824387,0.050099615,-0.029221058,-0.012803731,0.041110236,0.048359737,0.047378264,-0.05853134,0.08311272,0.037184354,-0.0215812,0.029221058,0.015558541,-0.0058553647,-0.0025331422,0.011654964,-0.01573699,-0.011203265,0.011420749,0.008610174,0.030336365,-0.012558363,0.027436566,-0.016562317,-0.012212617,-0.029600263,-0.032879267,0.04305087,-0.0031674735,0.0057494105,0.044634607,-0.041065626,-0.022439988,-0.015714683,0.0056573977,0.016038124,0.0029304705,-0.019395199,-0.0012435679,-0.0040011657,-0.02335454,0.014956274,0.008682669,-0.09779017,-0.01341715,-0.004759575,-0.018257584,-0.04566069,-0.018871004,0.020153608,-0.040017236,-0.0073666065,0.0282842,-0.01125903,-0.011632658,0.024313705,-0.0030754607,-0.0337269,0.060940403,-0.055319253,-0.026165115,0.036894374,0.014788978,0.009758941,-0.004015107,-0.012725659,-0.029020302,0.03992801,0.052553292,0.01729842,-0.02364452,0.04166789,0.023198398,-0.002301716,-0.01265874,-0.053579375,0.020086689,0.020945476,0.011498821,0.025585156,-0.045214567,0.0056072087,0.04334085,0.031563204,0.011755342,0.03910268,-0.068435274,0.031384755,-0.0064799367,-0.021157384,-0.005570961,-0.0006810347,0.024648298,-0.0032790042,0.003568984,0.04804745,-0.032700818,0.0038756938,0.009039568,-0.0030336366,-0.074145645,-0.09466731,0.030581733,0.023599908,-0.0101660285,0.033883043,0.024380622,0.0035327366,-0.023912193,-0.016406175,-0.01185572,-0.047199816,-0.02531748,-0.008610174,0.014354008,0.009820283,0.009558186,0.06508935,-0.034641452,0.04670908,-0.009697599,-0.013829813,0.028529568,-0.027503485,0.03919191,-0.003524372,-0.039281134,-0.02023168,0.04456769,-0.026789688,-0.008532103,-0.03002408,-0.008336924,0.021235457,0.065401636,-0.050055005,0.01410864,-0.000995412,-0.011203265,-0.028150363,0.014811284,-0.008454031,0.0033431344,0.03778662,-0.0010609364,0.0031368025,0.0014554764,-0.022908418,0.033548452,0.04028491,0.019484423,-0.0072606523,0.010478314,-0.047779776,-0.047512103,0.03176396,0.056479175,0.0057605635,-0.030380977,-0.0282842,0.04530379,-0.000069532456,0.016194265,0.016606929,-0.00966414,-0.006407442,0.0012421738,0.023019947,-0.033526145,0.002095384,0.0061174617,0.014209018,-0.052553292,0.02317609,-0.013774049,0.0022529212,0.0020354362,-0.028061138,-0.009892778,-0.026722768,-0.0064018653,0.015859673,0.00025390674,-0.009480114,-0.050278064,-0.028306507,-0.0044723833,-0.049787328,0.03328078,-0.012101087,0.008894578,-0.018157206,0.030916326,0.0420694,-0.013283313,-0.008532103,0.020655496,-0.00062596635,-0.06156498,0.0025638132,0.0012254441,0.048181288,-0.01733188,0.004508631,0.06352792,0.0057828696,-0.011721882,0.028373424,0.030224836,0.03800968,-0.024179868,0.01515703,0.003942612,0.018982535,-0.0039955894,-0.009864896,-0.005651821,-0.0021929734,0.009987579,0.023287622,0.02066665,-0.004514207,-0.015558541,-0.00006308458,-0.0062791817,-0.0023477224,-0.01185572,-0.036849763,-0.037452027,0.028083444,-0.01824643,0.00009558534,-0.020432435,-0.0057326807,-0.032410838,-0.04166789,0.015937746,0.002573572,0.021536589,-0.024581378,-0.017354185,-0.002073078,0.015279713,0.010511774,0.010980203,0.016261185,0.015826214,-0.026008973,0.03310233,0.006334947,-0.039437275,-0.028529568,-0.07079972,0.0032511216,0.02984563,-0.05505158,-0.0066137738,0.0040290486,-0.01428709,-0.029533343,-0.002188791,-0.022161162,0.0039286707,0.02759271,-0.024737522,0.015279713,-0.016127348,0.047601327,0.0069595193,-0.023800664,0.015101264,-0.006212263,0.03205394,-0.054025497,0.0006343312,0.034329165,-0.008320195,0.05576538,0.01773339,0.011069427,0.016952675,0.017945299,0.010154875,-0.018380268,-0.019462116,-0.011136346,-0.04648602,-0.035511393,0.0072216163,-0.016383868,-0.027079668,0.020443587,0.008732858,0.011699576,-0.012480292,-0.0028063927,0.01907176,-0.06388482,-0.027012749,-0.030626345,-0.019484423,-0.017131124,-0.03151859,-0.034842208,-0.0126922,-0.018369116,-0.061520364,0.023488376,0.0065301256,-0.0012937568,-0.029689487,-0.0042660516,-0.005135991,0.010651187,-0.009909508,0.034329165,-0.014822437,-0.002559631,-0.0016130136,-0.013316772,0.0141978655,-0.030380977,-0.035556003,0.024603685,-0.02161466,0.049341206,0.007132392,-0.02966718,0.064554,0.0019476059,0.011900332,-0.011733036,-0.011231147,0.008336924,0.01802337,0.024960583,-0.007204887,0.009162252,0.03390535,-0.01976325,0.009881625,0.015926592,0.026098197,0.025540544,0.017454563,-0.003555043,0.0006273605,-0.025875134,-0.028239587,0.0011146105,-0.0026795263,-0.008158475,-0.008275582,-0.0033013104,-0.005944589,0.027458873,-0.029622568,0.05580999,-0.024001418,0.023510683,-0.006067273,0.01211224,0.017231502,0.018056829,-0.00044647156,-0.017131124,0.036715925,0.01617196,0.01298218,0.0030894019,-0.011069427,-0.017499175,0.010701376,0.02607589,-0.022439988,0.007020861,-0.02614281,0.0033096753,0.024090644,0.010322171,0.0011250665,-0.006396289,0.016361563,-0.06312641,-0.023622215,-0.0085488325,0.019640567,-0.02850726,-0.010065651,0.02422448,0.006697422,0.002344934,0.041645583,0.01410864,-0.030737877,-0.012246077,0.029488731,-0.010840789,0.006803376,-0.01740995,-0.036247496,-0.014777825,0.010757142,0.00018838242,0.02219462,-0.0053255935,0.008091556,0.024447542,0.031250916,0.016216572,0.036091354,0.02422448,0.0090953335,-0.004137791,-0.038678866,-0.049742717,-0.012089934,-0.0045671845,0.008230969,0.022306152,0.007974449,-0.017198043,0.005124838,-0.009837013,-0.0042911456,-0.01718689,-0.06218955,-0.0065189726,0.010054498,-0.033013105,0.06218955,0.025718993,-0.010327748,0.016551165,0.053579375,-0.026901219,-0.0038645407,-0.039950315,0.008387113,0.020253984,0.0030615192,0.0029890242,-0.004965907,-0.008704975,-0.0029221058,0.038411193,-0.040240295,0.036024433,-0.0006360738,-0.007227193,0.014610529,0.0082253935,-0.027659627,0.000523846,-0.03328078,0.0082477,0.013617905,-0.0028970113,-0.016963828,-0.0040011657,0.00021853058,-0.026232034,0.039950315,-0.01399711,-0.013149476,-0.023042254,-0.0118334135,0.010294288,-0.07124585,0.007985602,0.05424856,0.008515373,-0.005205698,0.026856605,0.03510988,0.051170312,0.005278193,-0.049787328,0.025942054,-0.044835363,0.010779448,0.005609997,0.06696307,-0.014041722,0.005849788,0.022796886,0.015971204,-0.0028217281,0.008604598,0.0018221337,0.00483207,-0.011811107,-0.017900687,0.007862918,0.0057103746,-0.016461939,0.028373424,0.013695977,0.024358317,-0.019395199,-0.039459582,0.0007556209,-0.028418036,0.02614281,0.010305442,-0.0034658182,0.029310282,-0.007946567,0.0023519048,-0.0031395908,-0.010021038,-0.008063674,-0.018045677,0.012971027,0.0016353197,0.0019197231,0.002654432,0.03013561,-0.00050119136,0.021257762,-0.0030224836,-0.0051081087,0.023086866,-0.010087957,0.018146053,-0.011621505,-0.029399507,-0.05732681,0.03836658,0.037697393,-0.008838812,-0.008136169,0.01664039,-0.051304147,-0.0297341,0.00176358,0.0065301256,0.00011266349,0.017755697,0.019250209,-0.0019448176,0.012759118,0.008191934,0.03448531,-0.023577603,0.016205419,0.009318395,0.041288685,-0.012123393,0.032031633,-0.00010787115,-0.012469138,0.015725836,0.0019113583,-0.030960938,0.015279713,-0.014900509,-0.023845276,-0.0025178068,0.005258675,-0.0007528326,0.008024638,-0.0075227492,0.015803909,-0.028886465,-0.028128056,-0.018112594,-0.023421459,-0.021514283,-0.015870826,-0.020945476,-0.03680515,0.0060728495,-0.02821728,0.04108793,0.030960938,-0.024670603,0.01762186,0.0019852475,0.047958225,-0.026901219,0.0011731641,-0.015335479,-0.021480823,0.03071557,0.005679704,0.0107404115,-0.0149451215,-0.029622568,0.016071582,0.012826037,0.028663404,-0.006312641,0.04724443,-0.020075535,-0.010706953,-0.013840967,0.07909761,-0.022462294,-0.025875134,0.011900332,0.027391953,0.004887835,0.008621328,-0.012089934,0.027369648,-0.03796507,-0.01860333,-0.0052112746,0.016071582,-0.03836658,-0.004938024,0.027012749,0.00084693666,0.02955565,-0.0119337905,-0.009351854,-0.00001300466,0.007444678,-0.010383514,-0.029176446,-0.04073103,-0.00030601252,0.032700818,-0.0348199,0.034173023,0.017822614,0.0061509213,0.026722768,0.03858964,-0.019752096,0.0061341915,-0.03093863,-0.030157916,0.0004952663,0.0057326807,-0.0340838,-0.047958225,-0.008532103,0.029600263,0.0017607918,0.0014359584,-0.01356214,0.015257407,-0.0155919995,-0.035266023,0.028908772,0.025718993,-0.024023725,-0.013930191,-0.015937746,-0.006853565,0.052642517,0.0069762487,0.024514461,-0.04039644,-0.0033236165,-0.01762186,0.011576893,0.036269803,0.017688777,0.010188335,0.01715343,-0.030559426,0.040195685,0.0013042127,-0.0061453446,0.0022138855,0.02059973,-0.00039872245,-0.009485691,0.012056475,0.010171605,-0.020588577,0.013394844,0.032410838,-0.022830345,-0.003596867,0.013785201,0.018079136,0.0057884464,-0.011788801,0.030336365,0.015034346,-0.050456513,-0.0011871054,0.0006461813,-0.026655851,-0.0060003544,-0.005955742,0.008866695,0.048181288,-0.014465539,-0.006574738,-0.05928975,0.0070989328,-0.042225543,0.0014045904,0.011643811,-0.016997287,-0.027280422,-0.011866872,0.01167727,0.0006712757,0.03963803,0.021882335,-0.006691845,0.049073532,-0.0000063008342,0.015904285,-0.017053053,-0.029421814,0.017108819,0.0021107194,0.014554763,0.050545737,-0.00017426681,0.00794099,-0.011325948,-0.004636891,-0.04073103,0.0016339256,0.028328812,0.011314795,0.022317303,-0.0007409825,0.023532989,0.007885224,0.0046396796,-0.0063628294,-0.015246254,-0.03430686,0.018581023,-0.016361563,-0.016216572,0.009240323,-0.013182935,-0.01885985,0.06517857,0.022796886,-0.001596284,0.006686269,-0.011108464,-0.006033814,-0.005816329,0.03187549,0.0011682847,-0.013472916,0.0003201281,0.007578515,0.005239157,0.020242833,-0.03100555,-0.029511038,-0.0023114749,-0.007444678,0.016205419,0.00024170805,0.0004482142,0.037005905,-0.014855897,-0.029488731,0.010271982,-0.007600821,-0.020265138,-0.005860941,0.031451672,-0.006396289,-0.030916326,-0.018357962,-0.036091354,0.015491622,-0.013617905,0.0000018325244,0.038232744,0.008035791,0.005328382,0.03223239,0.051259536,-0.003775316,0.027101973,0.030447897,0.019283667,0.0041043316,-0.0069316365,-0.010132569,-0.020097842,-0.03234392,0.0064464775,0.009251476,0.004885047,-0.0021330258,-0.022172315,0.001058148,0.0348199,0.005609997,0.027726546,-0.01983017,0.03620288,-0.034262247,-0.013372538,-0.008593445,0.046753693,0.01051735,-0.019674025,0.04849357,-0.006323794,-0.014510151,-0.040820256,0.0018095865,-0.00023595725,0.0002131283,0.014699753,-0.0077235047,-0.0016576259,-0.010327748,0.014532457,0.004009531,0.063215636,-0.016361563,-0.01642848,0.00093616126,0.003214874,0.026098197,-0.013439456,0.0017259384,-0.014688601,0.008019062,-0.009719905,-0.0020591365,0.011588045,0.00576614,0.02066665,0.005983625,-0.013617905,0.018558718,0.031964716,-0.004146156,-0.00009837361,0.0034379356,-0.028016526,-0.01053408,0.013774049,-0.03825505,0.061074242,-0.009781247,-0.0012742389,0.028261892,0.0047261156,0.022997642,-0.0075227492,-0.00678107,-0.020878557,-0.002436947,0.044545382,-0.02190464,0.009797977,-0.025629768,0.03158551,0.0041712504,-0.009825859,-0.0030224836,-0.018179514,-0.0039175176,-0.018625636,-0.05545309,-0.014387468,0.0007549238,-0.015067805,0.014755519,0.014610529,-0.035823677,-0.0120341685,-0.016651541,-0.0035801372,0.03332539,0.00014516425,0.006011508,-0.018960228,0.016685002,-0.01008238,0.006284758,0.025808217,0.025451317,-0.00017017154,0.006803376,0.03187549,0.030090997,0.011114039,-0.010907708,-0.0007354059,-0.0023045042,-0.0030392131,0.012301843,0.016662695,-0.022060784,-0.012145699,0.028462648,-0.0058051758,-0.0013223365,0.023956805,0.047601327,-0.0591113,0.056836072,-0.004965907,-0.024179868,0.007466984,-0.019049453,0.0366267,-0.022395376,-0.035042964,0.009586069,0.0070375907,0.014476692,-0.0030308482,0.0045337253,-0.026990443,0.015313173,-0.01715343,0.029176446,0.012859496,0.024938276,0.027726546,0.011554587,0.004179615,0.01947327,0.030626345,0.01885985,-0.013762895,-0.035042964,0.00041405793,0.008097133,-0.0034992774,-0.038210437,0.033838432,-0.03651517,-0.01921675,0.01501204,0.007572938,0.009747788,0.01726496,-0.017956452,0.0007277382,-0.0060840026,0.012926415,0.0068368353,0.03651517,0.01983017,-0.01080733,0.018592177,0.021313528,-0.0133279255,-0.007918684,0.0012791184,-0.0038505993,-0.018759472,-0.00476794,0.0142982425,-0.01671846,-0.0033988997,-0.029444119,0.0044556535,0.02106816,-0.0015795543,0.010745988,0.0037502216,0.004213074,-0.017711084,-0.005063496,-0.017287267,-0.049921166,-0.037652783,0.015826214,-0.03923652,0.038522724,0.016350409,0.0082253935,-0.026566627,-0.008353653,-0.00497706,-0.030827101,-0.0034937009,-0.004965907,0.028083444,0.00605612,-0.017599553,0.0076398565,-0.0028496108,-0.010528503,0.010015462,0.0133279255,0.018134901,0.0069539426,-0.01889331,-0.008894578,-0.011733036,-0.018324504,-0.02262959,-0.010818483,0.0007800182,0.01428709,0.028886465,-0.030670958,0.02106816,-0.015792755,-0.0057438337,-0.0056127855,0.010232947,0.019027147,0.014075181,0.0026711617,0.0014275936,-0.029934855,0.0012602975,0.015937746,0.021804262,-0.0026418848,0.028886465,-0.020633189,0.01341715,-0.030336365,-0.00013113578,0.011225571,-0.013361384,-0.02129122,0.02723581,0.03495374,-0.015447009,-0.013484068,0.021636967,0.05228562,0.028172668,-0.0014059846,0.014331702,0.025362093,0.021770803,-0.02933259,0.034507617,0.021324681,-0.0032762159,-0.0024508883,-0.040641807,-0.018536411,-0.010126992,-0.0022529212,0.013684824,0.030291753,0.02240653,0.0175884,0.003619173,0.0027352918,-0.05835289,-0.011075004,-0.015134724,-0.010383514,-0.019584801,-0.03430686,-0.025005195,0.0069427895,0.02955565,-0.014119794,0.019506728,-0.012703353,0.025607461,0.00676434,-0.018346809,-0.03234392,0.013774049,0.013361384,-0.0012156853,0.00219855,0.008677092,-0.027302729,0.006212263,-0.01356214,-0.03031406,0.0036331143,-0.0107404115,0.009714329,-0.00071205414,0.01755494,-0.032009326,0.03539986,-0.026410483,-0.02723581,0.0043971,0.009491268,-0.026923524,-0.010723682,-0.012803731,-0.008264429,-0.011219994,-0.012536057,0.025518237,0.013495222,0.007957719,0.029444119,-0.01008238,-0.022830345,-0.0031479555,0.036938988,0.025451317,-0.003878482,0.03905807,-0.03198702,-0.03406149,-0.0032762159,0.021447364,0.020789333,-0.017989911,-0.002416035,-0.018960228,0.018480645,0.013026793,-0.010205064,-0.0037362804,0.014052875,0.007020861,-0.009764518,0.0010225977,0.02759271,-0.020253984,0.0068814475,-0.024425235,-0.0049352357,-0.045103036,-0.004260475,0.02723581,0.00008521647,0.020722413,-0.026232034,-0.0053144405,0.048181288,-0.0028468226,0.029511038,0.0000047052035,-0.0136513645,-0.032879267,-0.0033738054,0.008007908,-0.01617196,-0.0028286988,0.046218347,0.015658919,-0.0018081923,0.00026000608,0.009524726,0.02810575,-0.02288611,-0.02933259,-0.0355337,-0.02179311,-0.01341715,0.011024815,-0.025205951,0.007578515,0.02788269,0.0013627664,-0.022763427,-0.011298065,-0.022495754,-0.001575372,0.0030252717,0.012145699,0.00180401,0.015302019,0.02251806,-0.07352107,0.0018207396,0.023019947,0.021926947,-0.030492509,0.027481178,-0.010567539,-0.00028719168,-0.007188157,0.05915591,-0.00180401,-0.005866518,-0.035845984,0.006691845,0.013294466,0.02106816,0.017566094,0.03423994,-0.0060003544,0.029756406,0.011270183,-0.003783681,-0.020332057,-0.021570047,-0.011799954,-0.006407442,-0.00013287844,-0.031384755,-0.023666827,0.0032120857,-0.01755494,0.009625104,0.033191554,0.008593445,0.0047484217,-0.018045677,-0.0010212035,-0.010545233,-0.010812907,0.001255418]},{"id":"interface-GatewayGuildRoleUpdateBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleUpdateBulkDispatchData\nDescription: GUILD_ROLE_UPDATE_BULK — guild_id, roles[]\nProperties: guild_id: string, roles: APIRole[]","meta":{"url":"/docs/typedefs/GatewayGuildRoleUpdateBulkDispatchData"},"embedding":[0.020707335,0.010455285,0.029152857,0.007745492,-0.005933318,0.013571547,-0.019860525,0.006989008,0.00505828,0.032314282,0.0059163817,-0.045163218,-0.0034041775,0.011595656,0.034053065,-0.002093033,-0.03001096,0.017071696,-0.042972803,0.051305417,0.024365555,-0.034595024,0.04536645,0.021508982,-0.045818083,0.014113505,0.030191611,0.05798957,0.005334905,-0.024681699,0.033194967,-0.03423372,0.042588916,-0.0148586985,-0.018020123,-0.006791419,-0.016382957,0.05993159,0.014587719,-0.023462292,0.0064639854,-0.036717694,-0.015840998,-0.016044233,-0.07271278,0.074880615,-0.011544848,-0.0043780096,0.0157168,0.020266995,-0.027549563,-0.007954372,-0.030417427,0.050898947,0.03680802,0.0022765084,-0.014632883,-0.020165376,-0.027120512,0.055641085,-0.024049414,-0.052163515,0.013571547,-0.011731146,0.025901105,0.004149371,-0.06706738,0.027910868,0.051169924,0.031930394,-0.01782818,-0.04127918,-0.0314336,0.0048127053,-0.0047760103,0.0048381095,0.014011889,0.00052855077,0.0034549863,-0.047782686,-0.013244114,0.052163515,-0.061918773,-0.069912665,0.030665824,-0.00020940913,-0.014576429,-0.023891343,-0.012148906,0.021700926,-0.028249593,-0.0122053595,-0.0737967,0.018223358,-0.039314583,-0.09366851,0.06006708,-0.0028368146,-0.013018298,0.09312656,0.061557464,-0.01598778,-0.037124164,-0.04026301,-0.0105625475,-0.029243184,-0.0053885365,0.033714343,-0.017297512,-0.042069536,-0.07460964,0.014824826,0.01151662,-0.013944143,0.0019010892,0.0266463,-0.011855344,0.0002859749,0.034843422,-0.01684588,-0.032133628,-0.006034935,-0.0053744228,-0.055912063,-0.04728589,-0.00033343156,-0.008835055,-0.036198318,-0.050898947,0.015807126,0.0031670707,-0.022920333,0.03635639,0.0105060935,-0.030169029,-0.0097778365,-0.0027606017,-0.0031896522,0.011674692,-0.023112277,0.018618537,0.014926444,-0.0036977385,0.038140338,-0.06548667,0.025336565,-0.022773553,-0.020549264,0.004025172,0.03547571,-0.071809515,0.02610434,-0.023530036,-0.006638993,-0.0006605121,-0.051440906,-0.033488527,0.013074752,0.0011664813,0.00057583104,0.0020083517,-0.053066783,-0.011313386,-0.020605719,-0.005922027,-0.05613788,-0.005763956,-0.0083213225,-0.05374423,0.002061983,0.009557666,-0.025946269,-0.013695746,-0.0114771025,-0.051034436,0.013740909,-0.024162322,-0.029288346,-0.024162322,-0.027391491,0.024930097,-0.016541028,-0.034165975,-0.045050308,-0.059841264,0.030756151,-0.06250589,0.018223358,0.018121742,0.029107694,0.014903862,0.0314336,0.025246238,0.03283366,0.001686564,-0.032359447,-0.014474811,0.017037824,0.031523924,0.0045699533,0.030778732,-0.024591371,0.06616411,0.012848935,-0.0061704246,-0.020413775,0.009043935,-0.028362501,-0.02540431,-0.0006442815,0.05094411,-0.018042706,-0.050853785,-0.005035699,-0.043582506,0.032653008,-0.056047555,0.02721084,-0.0030372264,0.01850563,0.020718627,0.013379604,0.011821472,-0.04602132,0.028656062,0.0314336,-0.008761664,0.01796367,0.024478463,-0.005382891,0.006565603,-0.0020478696,-0.008880218,-0.06214459,-0.0070793345,0.009281041,-0.00033854772,0.028362501,0.02973998,0.011584366,-0.04028559,-0.06498987,-0.0069720717,-0.007547903,0.036243483,-0.015366785,0.04168565,-0.013594128,0.0069551356,0.04868595,0.017252348,0.04913758,0.0030682762,-0.027843123,-0.015039352,-0.017218476,0.015536147,0.024659118,0.027526982,0.053428087,0.011866636,-0.016168432,-0.019849233,0.018415302,-0.021520274,-0.0022722743,0.034436952,0.0065035033,-0.02876897,-0.0042820377,0.020967023,0.033669177,0.029627072,-0.031230366,-0.005035699,-0.00009535437,0.019025005,-0.00021029123,0.008942317,-0.048234317,-0.01361671,-0.00820277,-0.0007395477,0.022129977,-0.013910271,0.023417128,0.0044880947,0.03716933,0.023710689,0.017703982,-0.002149487,0.021712217,0.028430246,-0.029017368,0.015694218,-0.008208415,0.00940524,-0.02162189,0.041595325,0.020696044,0.0004032934,0.04057915,-0.003683625,-0.013153787,-0.018765317,-0.027549563,0.000098265285,-0.047376215,-0.0054336996,0.0017627769,0.021429947,0.04967954,-0.021531563,0.04001461,-0.019600837,-0.029310929,0.013221532,0.016179724,0.025336565,0.032336865,0.014384485,-0.0016936207,-0.026014013,-0.028881878,0.0062099425,-0.07492578,-0.027752798,-0.002145253,-0.008919735,0.0043582506,0.031094875,-0.03581443,0.02454621,0.010466576,0.04087271,0.047466543,-0.017207187,0.06327367,0.0659383,-0.005995417,0.012532793,-0.01769269,0.015750673,-0.055731412,-0.0012963255,-0.017026532,-0.005086507,0.045411617,-0.0126908645,0.044689003,0.02847541,0.045050308,-0.013142496,0.005137316,-0.03089164,-0.057221796,0.032065883,-0.020933151,0.0024416365,0.03326271,-0.061286487,0.0024628066,-0.0117198555,0.016834589,0.009811709,0.002846694,0.013447348,0.0029299639,-0.010844817,0.009247169,0.021294458,0.025743034,-0.057628267,-0.0044034137,0.014531265,-0.025178494,-0.036288645,-0.003844519,-0.027662471,-0.030665824,-0.016078105,0.050989274,-0.0061534885,0.0075591938,-0.012544083,-0.0015397834,-0.053382922,0.026759207,-0.030801315,-0.016247468,0.02637532,0.031117458,-0.017884634,0.0011086159,-0.012239232,-0.019386312,0.048640784,0.039495233,0.0018008833,-0.005950254,0.041798558,0.026081758,0.0038388735,0.015389366,-0.039246835,0.018595954,0.0060688076,0.02806894,0.019408893,-0.012995716,0.0052445787,0.01753462,0.038546808,0.0022765084,0.050627965,-0.03719191,0.030959386,0.025991432,-0.053247433,0.030530335,-0.03534022,0.004967954,-0.001936373,0.019047586,0.046879422,-0.044847075,0.013176369,-0.025178494,-0.034414373,-0.038795203,-0.07370637,0.06395112,0.028565735,-0.015479693,0.032540098,-0.0015440175,-0.019894397,-0.035295054,0.011877926,0.02513333,-0.060925182,-0.021700926,-0.047466543,0.026081758,0.004126789,0.009286687,0.028272174,-0.025765616,0.041934047,-0.028136685,-0.016789427,0.023620363,-0.0019236708,0.06340916,-0.0026039418,-0.00836084,-0.01179889,0.028927041,-0.038230665,0.0038219374,0.008953608,0.020696044,0.014395775,0.019566964,-0.010466576,0.03680802,0.005289742,0.0072599873,-0.04755687,0.017094279,-0.0005680686,0.011527912,-0.005639757,0.0026420483,-0.017150732,-0.017173314,-0.032246538,0.013537674,-0.015942616,0.046518113,-0.03592734,0.0010239348,-0.008236642,-0.038908113,0.065080196,0.038501643,-0.00094348786,-0.012115033,-0.015378076,0.020876698,0.0009138495,0.017500747,0.036401555,-0.010014944,0.02135091,-0.0078075915,-0.021034768,-0.049182743,-0.016236177,-0.015513565,-0.016631356,-0.047963336,-0.00004525143,-0.0137522,0.03692093,0.000545487,-0.014937734,-0.011685982,-0.020842824,0.019476637,-0.0029977085,-0.008039053,0.01193438,-0.0364693,-0.033917576,-0.0013259639,-0.012340849,0.01291668,0.00028421072,0.03396274,-0.024794606,0.037079003,0.036130574,-0.0024585726,-0.00848504,-0.0006989714,-0.007412413,-0.048053663,0.017941087,0.0027761266,0.033014312,-0.023146149,0.01824594,0.06345432,-0.007689038,-0.004363896,0.021813834,-0.0033223191,0.036537044,-0.016902335,-0.00413808,0.009360077,-0.00750274,0.013210242,0.008682629,0.0031416663,0.043153454,-0.0044344636,0.023123568,0.0151183875,0.016812008,-0.016778136,0.0186637,0.008801182,-0.014079633,-0.0028735097,-0.014824826,-0.02989805,0.013537674,-0.008016471,0.012194069,-0.02174609,0.012792481,-0.034143392,-0.04809883,0.016032942,0.01165211,-0.012002125,-0.0063962406,-0.018787898,-0.030078704,0.0381855,0.0175572,0.021983197,0.031501345,0.021034768,0.0013040879,0.019318566,0.023484873,-0.011618238,-0.014237705,-0.094120145,0.025155913,0.048189152,-0.0527958,0.004236874,0.015931325,-0.0026138213,-0.016213596,0.021418655,0.0017952379,0.031952977,0.035453126,-0.015784545,0.005140139,0.0019674227,0.0022609837,0.0023541327,-0.0266463,0.029581908,-0.005137316,0.021971906,-0.05491847,0.014519975,0.0070059444,-0.0077285557,0.031636834,0.006712383,-0.0020266995,0.02162189,0.021926742,0.025291402,-0.025472054,-0.01855079,0.00004474422,-0.052253842,-0.030552916,0.021644473,0.00092020055,-0.033488527,0.013989307,0.02203965,0.010229469,0.0034352273,0.0022623949,0.043311525,-0.030846478,0.015332912,-0.021858998,-0.022468701,-0.011595656,-0.04365025,-0.030507755,-0.011877926,-0.04477933,-0.052569985,0.030688407,-0.02483977,0.018178195,-0.01151662,0.010856109,0.011460166,0.012408594,-0.015220004,0.053021617,-0.0073446683,0.010432703,-0.03355627,-0.011522266,0.013763491,-0.031681996,-0.04967954,0.016270049,-0.008247932,0.035566036,-0.017512038,-0.040217847,0.022525154,0.00080305844,0.018844353,-0.012160196,-0.039517816,0.009975426,-0.001610351,0.0015807126,-0.00016530443,-0.016507156,0.030959386,0.014350613,0.030530335,0.015536147,0.03380467,0.020368611,0.006509149,0.033917576,-0.0002688623,-0.017037824,0.011324677,0.0014607478,0.0342563,-0.017749144,-0.0025107926,-0.026510809,-0.001147428,0.019115333,-0.03086906,0.03972105,-0.0025912395,0.031840067,-0.002592651,0.0060123536,0.013548966,0.026804369,0.004468336,-0.0014649819,0.020617008,0.013594128,-0.000628051,-0.0030456944,0.0037795969,-0.005205061,0.024252648,0.013447348,-0.018720154,-0.010065752,-0.01867499,-0.0041409023,0.03452728,0.005140139,-0.005487331,-0.008863281,0.02903995,-0.069686845,0.0063172053,0.011765018,0.029604489,-0.043447014,-0.012239232,0.022536445,0.028836714,0.02820443,0.038930696,-0.0016526915,-0.008846345,0.0023188489,-0.013277986,0.0048494004,0.017715272,-0.026714044,-0.021373494,-0.006430113,0.014294159,-0.011708564,0.02400425,-0.0073446683,-0.007847109,0.02736891,0.03518215,0.003316674,0.034143392,-0.00020005894,-0.028114103,0.006554312,-0.030620662,-0.03328529,-0.007999535,0.008891509,0.010280278,-0.009360077,0.025878524,-0.024320392,0.004970777,-0.0019250822,0.024207484,-0.004078803,-0.057628267,0.00820277,0.009173779,-0.017500747,0.048956927,0.016586192,-0.0062438147,0.039811376,0.04868595,-0.018370138,-0.0022482814,-0.016653936,0.00059841265,0.024478463,-0.008868927,0.00035865945,0.015366785,0.0074180583,-0.0046066483,0.029446417,-0.029265765,0.029152857,-0.028701225,0.0016258758,-0.013853817,-0.009518148,-0.021588018,-0.0074293492,-0.03592734,-0.0034973267,0.03398532,0.014395775,-0.029152857,-0.0019589546,0.014915152,-0.03199814,0.014136087,0.006893036,-0.0040562213,-0.014057051,0.00047491945,0.009783482,-0.07921629,0.00501594,0.050311826,-0.03244977,-0.013628001,-0.013571547,0.01628134,0.065215684,-0.010393186,-0.033465944,0.030394845,-0.063093014,-0.004149371,-0.0028001196,0.04209212,-0.009873808,-0.005938963,0.0186637,0.01516355,-0.005080862,-0.008564075,0.01783947,0.0030908578,-0.009241523,-0.010929499,-0.013865108,0.015908744,-0.016360376,0.061150998,-0.0076833926,0.034617607,-0.009789128,-0.029807724,-0.023123568,-0.0032828015,0.017173314,0.024591371,0.03565636,0.028678643,-0.041798558,-0.018889517,0.009868163,0.0021678344,-0.00842294,-0.0068817455,0.00078118255,0.019013714,0.018607246,0.00512038,0.034211136,0.02231063,0.0054562814,0.011855344,-0.012216651,-0.0037062066,-0.00084681035,-0.017342675,0.007604357,-0.021158967,-0.0550088,0.025291402,0.058170225,-0.012035998,-0.012984425,0.026149504,-0.043063127,-0.013707036,0.010963371,-0.009038289,0.014237705,0.014361903,0.0072374055,-0.011776309,0.008846345,-0.006655929,0.030620662,-0.023755852,0.009631056,-0.0043469598,0.02008634,0.013978016,0.013300568,0.052660313,-0.016868463,0.002975127,-0.019442765,-0.00028156443,-0.0168233,-0.01655232,-0.02063959,0.0048324643,0.0012433998,0.013119915,0.014373194,-0.0015736559,0.0027295519,0.012363431,-0.030507755,-0.028678643,-0.021012187,-0.008727792,-0.014203832,0.0032235247,-0.018889517,-0.017173314,-0.04252117,0.0275044,0.007491449,0.000007993978,0.010534321,0.025584962,0.069099724,0.008383422,0.011776309,-0.017252348,-0.017703982,0.011765018,0.009388304,0.039946865,0.012927971,-0.0011820061,0.005693388,-0.010060106,0.02400425,0.00033431366,0.0480085,-0.005665161,-0.008343904,-0.004121144,0.06160263,-0.008479394,-0.01585229,0.00038141749,0.02876897,-0.004287683,0.017049115,-0.010534321,-0.0005624232,-0.028881878,0.005128848,-0.011375486,-0.006091389,-0.007982599,0.0054195863,0.04098562,0.032540098,-0.0071922424,-0.0070962706,-0.013582838,-0.012973134,0.017986251,-0.026059177,-0.011731146,-0.017274931,-0.003426759,0.022096105,-0.0659383,0.03917909,0.005910736,0.022220302,-0.008473748,0.059434794,-0.0023654236,-0.011313386,-0.039924286,-0.021012187,0.020944443,-0.020729916,-0.031952977,-0.047466543,-0.016247468,0.009089097,0.003768306,0.018426593,-0.025291402,0.03240461,-0.016653936,-0.03244977,0.04755687,0.014440939,0.005648225,-0.03522731,0.0074745123,-0.01783947,0.043988973,-0.012329559,0.0061365524,-0.038027428,-0.004996181,-0.022129977,0.012363431,0.06214459,0.0007444874,0.0053010327,0.012973134,-0.030688407,0.048595622,-0.00046997974,-0.006063162,-0.011663401,0.015931325,-0.0041409023,-0.012408594,0.0011354316,-0.026194666,0.017907215,-0.024478463,0.025810778,-0.020221831,0.02569787,0.016665228,0.009868163,0.0070228805,-0.007790655,0.0097609,-0.03522731,-0.059841264,-0.03662737,0.0037090292,-0.031840067,0.012148906,-0.010810945,0.012758609,0.061512303,-0.010590775,0.0038304054,-0.055641085,0.0132892765,-0.045976155,0.001864394,0.014621592,0.011866636,-0.009715737,0.011064989,0.02330422,-0.009275395,0.03509182,0.020594427,-0.018449174,0.025720453,0.004265101,0.024726862,-0.016597483,-0.025449473,0.00428486,0.015649054,0.0030259355,0.047827847,-0.0018404011,0.0046038255,0.0015863581,0.012250523,-0.020097632,-0.015400657,0.047466543,0.004135257,0.0073164413,0.00821406,-0.007841464,-0.000954073,-0.0056623383,0.0076833926,-0.017579783,-0.022209013,0.025765616,-0.011245641,-0.002073274,0.005854282,0.003796533,0.0064922124,0.027188256,0.007909209,0.008428586,-0.0046885065,-0.004228406,-0.0061139707,-0.009156843,0.035430543,0.0016371666,0.014847408,-0.002596885,0.023552619,-0.03344336,0.007982599,-0.037959684,-0.027888287,0.023801016,-0.012115033,0.0102633415,0.014407067,0.012961844,0.064718895,-0.009377013,-0.042859893,-0.008095507,-0.017489456,-0.028723806,-0.0062889783,0.029423837,0.0017359612,-0.031501345,-0.014553847,-0.031794906,0.022717098,-0.011556138,-0.010912563,0.032494936,-0.012419885,0.0070285257,-0.004146548,0.021667054,-0.01908146,0.0263979,0.002898914,0.023168731,0.0013534852,-0.022999369,-0.027707634,-0.008592302,-0.024952678,0.018787898,0.032630425,-0.0022496928,-0.005591771,-0.029581908,0.0151748415,0.026420483,0.010952081,0.022355793,-0.028249593,0.06277687,-0.008456812,-0.022807425,-0.014452229,0.0097213825,0.007395477,0.0071753063,0.050492477,0.0047929464,-0.031207783,-0.02666888,0.0122053595,-0.0077567827,0.0054167635,0.0020351675,-0.018279813,0.003731611,-0.012815063,0.006825291,0.003446518,0.07659682,0.0038473415,-0.01782818,-0.008857636,0.0073898314,0.0027563677,-0.011979544,0.0010563959,-0.012961844,-0.005572012,-0.0063115596,-0.009015707,0.0053292597,0.016913624,0.030507755,-0.018415302,0.0001376949,0.022694517,0.020820243,-0.022288049,0.0043949457,0.0062212334,-0.016382957,0.0046687475,0.0009794773,-0.018268522,0.06625444,-0.041911468,0.019837944,0.049634375,0.017862052,-0.009902036,-0.018291103,0.020346029,-0.031523924,-0.010223824,0.020312157,-0.007497094,0.02456879,-0.021317039,0.029017368,0.006960781,-0.0132892765,-0.022299338,-0.02903995,-0.021023478,0.025494637,-0.026307574,-0.014361903,-0.013210242,-0.016247468,0.00021064407,0.03145618,-0.01672168,0.004931259,-0.022841297,0.013255404,0.042069536,0.002205941,0.0001687446,0.0022271113,0.007073689,-0.010054462,-0.003852987,0.033872414,0.0068309368,0.032585263,0.0045191445,0.030936804,0.04349218,0.019171786,0.008208415,-0.0054139406,0.021938033,0.028114103,-0.0030908578,0.018573374,-0.03750805,-0.018641118,0.051034436,-0.0016837412,0.005176834,0.025155913,0.04283731,-0.04967954,0.053653903,0.028927041,-0.021531563,-0.009179424,-0.008185834,0.023665527,-0.043130875,-0.03172716,0.018855643,0.005140139,0.022965496,-0.008998771,0.0003920026,-0.013063461,0.009935908,-0.015829708,0.011561784,0.045434196,-0.0023216717,0.047466543,0.025652708,0.027594727,0.019804072,0.039066184,0.0063115596,0.010613356,-0.022931624,0.012115033,-0.0047647194,-0.019058878,-0.0471504,0.014045761,-0.011561784,-0.0058317003,0.024772026,0.018076578,0.021091223,0.021125095,0.010359313,-0.046518113,-0.00014545732,0.0077793645,-0.010731909,0.050447315,0.01684588,-0.018900806,0.021949325,0.0303271,-0.042724404,0.024952678,-0.0152877495,-0.005083685,0.008044698,0.0036243482,-0.006723674,-0.014655464,0.018641118,-0.009388304,-0.0034549863,0.0044513997,-0.026917277,0.0069551356,-0.0036412845,0.01882177,-0.020876698,-0.00007934436,-0.01601036,-0.044011556,-0.061963934,0.020718627,-0.005552253,0.016778136,-0.0023597782,0.0010091156,-0.010698037,-0.0123182675,-0.005882509,-0.02513333,-0.00856972,0.016394248,0.014271577,0.024749443,-0.024884934,0.010658519,-0.003663866,0.013786072,0.0024896224,-0.0025587785,0.016473284,0.015739381,-0.015829708,-0.022434829,-0.0049340813,-0.021158967,-0.002544665,-0.011742436,-0.008157606,-0.007282569,0.042069536,-0.012476339,-0.00736725,-0.0061421976,0.00095195597,0.032201376,0.018279813,0.012047288,-0.009179424,0.008434231,-0.02120413,0.00006778893,-0.0071470793,0.001803706,-0.004262279,-0.0115335565,0.0062889783,-0.013808654,0.019386312,-0.010302859,0.00045516057,0.0024740975,-0.018539501,-0.009828646,0.026555972,0.04200179,-0.016732972,0.00064886844,0.004979245,0.041392088,0.03202072,0.007813237,0.018212067,0.02820443,0.03592734,0.0029807724,0.03452728,0.03816292,0.0013054992,0.012103742,-0.042476006,-0.0025023245,0.013040879,0.006932554,0.0009815943,0.033420783,0.01951051,0.02569787,-0.007491449,-0.017579783,-0.02328164,-0.022062233,-0.01855079,-0.009986716,-0.013729618,-0.019036297,-0.022491282,-0.023123568,0.006893036,-0.022062233,-0.002857985,-0.007254342,0.007886627,0.010466576,-0.024726862,-0.014463521,0.003703384,0.0055663665,0.011776309,-0.0015369607,0.014215123,-0.0336466,0.01179889,0.018155614,-0.01993956,-0.0010267575,-0.0074293492,0.040398497,-0.004092917,0.012837645,-0.024230067,0.051576395,-0.016879752,-0.017602364,-0.00961412,0.0070285257,-0.021542855,-0.005871218,0.01598778,-0.0063228505,-0.015344203,-0.016687809,0.028430246,0.00891409,-0.0013273752,0.015920034,0.0052276426,-0.025878524,-0.00037294938,0.038027428,0.018742735,0.016247468,0.031185202,-0.05433135,-0.017703982,0.0029723044,0.026172085,0.02147511,-0.014553847,0.0054280544,-0.042476006,0.003398532,0.038388737,-0.023484873,-0.004171952,0.004722379,0.025246238,-0.019183077,-0.008614884,0.029469,-0.016213596,-0.004123966,-0.0060575167,0.0039263773,-0.004101385,-0.02076379,0.013176369,0.0009456049,0.021712217,0.0017811244,-0.0013986484,0.04606648,0.0028325806,0.01144323,0.013932853,-0.014136087,-0.02973998,0.006571248,0.0019829476,0.010466576,-0.021158967,0.059208978,0.016608773,0.011776309,-0.0016414007,0.010139142,0.024772026,-0.046089064,-0.020312157,-0.022581609,-0.03805001,-0.021147678,0.014463521,-0.025788197,0.011606947,0.03497891,-0.036311228,-0.026510809,-0.0011615416,-0.04349218,0.0027436656,0.010844817,0.018268522,0.0064922124,-0.011561784,0.018889517,-0.0597961,0.023530036,0.044147044,0.0410082,-0.016789427,0.023484873,0.0063680136,0.019804072,0.010189951,0.027030187,0.011544848,-0.016168432,-0.008355196,-0.006718029,0.021012187,0.012521503,0.029852888,0.026352737,-0.00659383,0.044959985,-0.01598778,0.0070680436,0.0034295819,-0.016179724,-0.019600837,0.012465049,-0.003920732,-0.039382327,-0.014824826,0.022547737,-0.021779962,0.0055607213,0.019295985,-0.030710988,0.028023778,-0.009710092,0.02035732,-0.047511704,-0.032472353,0.017715272]},{"id":"interface-GatewayGuildRoleUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleUpdateDispatchData\nDescription: GUILD_ROLE_UPDATE — guild_id, role\nProperties: guild_id: string, role: APIRole","meta":{"url":"/docs/typedefs/GatewayGuildRoleUpdateDispatchData"},"embedding":[0.006668294,0.022024233,-0.0039721285,0.02443192,0.007284085,0.015821941,-0.038500797,0.0010713929,0.0382567,-0.003983224,0.005836144,-0.028315285,-0.0261406,0.011067593,0.0204376,-0.020171313,-0.023965916,0.034950294,-0.01456817,0.082016684,-0.019250399,-0.03949938,0.03179922,0.015722085,-0.03253151,0.022301616,0.018551394,0.04899698,-0.009597462,-0.02181342,0.046112195,-0.025585834,0.048508786,-0.02010474,0.0023965915,-0.006762604,-0.012027339,0.020681698,-0.009114815,-0.034661815,-0.010829044,-0.016975857,0.008027472,-0.013747116,-0.06572874,0.044314753,0.00079539657,0.006385363,0.017164478,0.0037252575,-0.022002041,0.0009153648,-0.023433339,0.06492988,0.031288832,-0.00065462454,-0.0043687867,0.0047349324,-0.012360198,0.03193236,-0.018285105,-0.03592668,0.013869164,-0.012970442,0.021924375,0.0023452756,-0.0663057,0.030068347,0.041496538,0.009297888,0.008132878,-0.015810847,-0.026118409,0.012726345,-0.0035810182,-0.0029763225,-0.016299041,-0.016432185,0.012804012,-0.03688088,-0.032953132,0.04500266,-0.069767445,-0.06874667,0.046511628,-0.028381856,-0.018285105,-0.04624534,-0.011994053,0.018018818,-0.04160749,0.0045074783,-0.068924196,0.016742855,-0.04930765,-0.061823186,0.05525475,0.010473993,-0.020903604,0.06848038,0.061734423,-0.023300195,-0.05836144,-0.05387893,-0.001575537,0.003467291,-0.012914965,0.04524676,-0.019927215,-0.024631634,-0.086099766,0.0086765485,0.0004549086,-0.012415675,-0.019183828,0.026406888,0.009697319,-0.037613172,0.030867212,-0.015677704,-0.04484733,-0.016543139,-0.0077334456,-0.052103676,-0.038323272,-0.004532443,-0.017619386,-0.044425707,-0.062488906,0.009797177,-0.006990059,-0.024232203,0.03157731,0.00418294,-0.029580154,-0.02058184,0.00093131437,-0.014035594,-0.014823362,-0.04726611,0.0019513913,0.0033923974,-0.008937289,0.046156578,-0.06612817,0.02181342,-0.017685957,-0.00610798,-0.0070788213,0.04992899,-0.07007811,0.04921889,-0.014878839,0.0022911858,-0.010501731,-0.014612551,-0.011827623,0.008931741,-0.013647257,-0.0054977364,-0.009209124,-0.052103676,-0.010396325,0.016032754,-0.028004616,-0.062178236,0.004795957,0.0072896327,-0.054677792,0.016276851,0.029336056,-0.025097638,-0.020903604,0.0070732734,-0.021802325,0.03455086,-0.01342535,-0.021868898,-0.033086278,-0.015655512,0.030001774,-0.013436446,-0.028182141,-0.04023167,-0.026229363,0.0026087898,-0.045757145,0.0080330195,-0.016321233,0.0199605,-0.002904203,0.03521658,0.055698562,0.019450115,-0.017153382,-0.033352565,0.02582993,-0.007261894,0.03783508,-0.009231316,0.0151007455,-0.035283152,0.04522457,-0.010102299,-0.014312977,-0.0003800151,-0.0009465704,-0.034928102,-0.035682585,-0.012027339,0.038412035,-0.0244763,-0.04624534,0.0051704245,-0.0489526,0.041385584,-0.035305344,0.006834724,0.013880259,0.002884786,0.014790077,0.030734068,0.0023508233,-0.0503728,0.025785549,0.029069768,-0.008593334,0.0047488017,-0.00067993574,0.009575271,-0.0008855461,-0.02112551,-0.0017419669,-0.06430854,-0.00805521,0.0091980295,-0.0016781688,0.017020239,0.02449849,0.015111841,-0.04056453,-0.037724126,-0.012426771,0.0045379903,0.021325227,-0.015688797,0.053790163,0.001419509,-0.008060758,0.04957394,0.0011081462,0.057828866,0.0063798153,-0.021968756,-0.008743121,-0.01791896,0.04194035,0.031621695,0.016931476,0.047443636,0.010756924,-0.0209147,-0.0047377064,0.013358778,-0.022856383,-0.018961921,0.017541718,-0.0026614924,-0.023544293,-0.013325493,0.007677969,0.013913545,0.037657555,-0.018373867,-0.0024992232,0.030223683,0.036348306,0.025741167,0.0016310137,-0.023610864,-0.004726611,-0.01138381,0.005886073,0.039921,-0.03450648,0.057385053,0.0133476835,0.018396059,0.027272323,0.0061967424,-0.025963075,0.009652938,0.011428191,-0.027338896,0.010762471,0.0029596796,0.01993831,-0.03321942,0.027915852,0.018329486,0.007938709,0.026540032,-0.044048466,-0.017674863,0.0040248316,-0.022900764,0.015744274,-0.04628972,-0.003001287,-0.003900009,0.012892774,0.0237662,-0.011062045,0.031133499,-0.01121738,-0.01677614,0.023056097,0.014645837,0.015023078,0.05254749,0.034794956,-0.0054478077,-0.0020013202,-0.020382123,0.005031733,-0.067725904,-0.025208592,-0.014146547,-0.0019014623,0.040475767,0.055432275,-0.04362684,0.010540565,0.023078289,0.047754306,0.057873245,-0.045490857,0.08019705,0.058183916,-0.027560802,0.002753029,-0.020015977,0.006169004,-0.03652583,-0.000032614207,-0.029424818,-0.010657066,0.02260119,-0.008870717,0.041851588,0.022068614,0.038323272,0.0012711089,0.003999867,-0.052236818,-0.048420023,0.034994673,-0.0142796915,0.0064408397,0.04535771,-0.055165987,-0.028381856,-0.023388958,0.032198653,0.011772146,0.018961921,0.011128617,0.000077970704,-0.0024146214,-0.00041399454,0.008066306,0.010734733,-0.08068525,-0.013658352,-0.00052737497,-0.011045402,-0.032709036,-0.035416298,-0.0153892245,-0.02443192,-0.017874578,0.056097995,0.01406888,-0.011783241,0.0149232205,0.0010665387,-0.05059471,0.044980474,-0.03963252,-0.032065507,0.032265224,0.008798597,-0.018662347,-0.01321454,-0.035993256,-0.035971064,0.039410617,0.043471508,0.037258122,-0.004893041,0.039055567,0.019838452,0.022423664,0.009525342,-0.05197053,0.029779868,0.0040747602,0.024720397,0.033130657,-0.017009143,0.0026115635,0.007361752,0.022834191,0.0076557784,0.036015444,-0.04289455,0.03426238,-0.010784661,-0.03319723,0.023988105,0.0011601555,0.011095331,-0.0017045202,0.018684538,0.05472217,-0.030756257,0.0074394196,-0.010340849,-0.013780401,-0.058095153,-0.067592755,0.056808095,0.035593823,-0.017486243,0.038301084,0.00041919548,0.007800018,-0.037280314,0.012637582,0.0019791296,-0.047221728,-0.02341115,-0.028559383,0.009919226,0.0001393851,0.03246494,0.053790163,-0.04553524,0.036636785,-0.018151961,-0.021613704,0.03823451,-0.013136872,0.050417185,-0.010440706,-0.027250133,-0.011716669,0.045135807,-0.037613172,0.0072230604,-0.013713829,-0.0019929989,0.000895948,0.047221728,-0.03321942,0.01642109,-0.0019527783,-0.0073562046,-0.035815727,-0.011783241,-0.012182673,0.0082660215,0.010468445,-0.005836144,-0.0017808006,-0.0009236863,-0.025718978,0.019594355,0.010407421,0.054056454,-0.033729807,0.018462632,-0.030711876,-0.033330373,0.06643884,0.04899698,-0.009209124,-0.02443192,-0.00898167,0.021180987,0.0039360686,0.016864903,0.022989526,-0.009497603,0.024986686,-0.001460423,-0.0076946123,-0.059160307,-0.020714983,0.010279824,-0.008155068,-0.027582994,0.005256413,-0.00034274173,0.016631901,0.029757679,0.0056308806,-0.0037890556,-0.017408574,0.0108124,0.006551793,-0.012837298,0.023499912,-0.05254749,-0.027605183,-0.0118831,-0.028936623,0.018384963,0.011605716,0.03652583,-0.008898456,0.029890822,0.051704243,0.0001119935,-0.010501731,0.0159218,0.007483801,-0.07269661,-0.0006650264,-0.0155112725,0.03608202,-0.020315552,0.017552814,0.057473816,-0.01475679,-0.015300462,0.022179566,-0.0016975857,0.03461743,-0.016299041,-0.007955353,0.006069146,-0.0064630304,0.013824782,0.00853231,0.0011386584,-0.009941417,0.0076890644,0.022279425,0.007849947,0.015300462,-0.02412125,0.004266155,0.015955087,-0.017020239,-0.007001154,-0.014446121,-0.041030534,0.023433339,-0.020870319,0.02547488,-0.016986951,-0.006335434,-0.03013492,-0.05330197,0.008160616,0.0017599969,-0.0045712763,-0.0142242145,-0.02849281,-0.0135806855,0.042717025,0.021014556,0.007800018,0.027671756,0.02179123,0.0053174375,0.044048466,0.039610334,-0.00703444,-0.0038112462,-0.10908929,0.024076868,0.033419136,-0.05285816,0.018995207,0.0047377064,-0.019827357,-0.011982958,0.026029646,-0.033641044,0.021868898,0.025896503,-0.013225635,0.009170291,-0.03193236,0.0063964585,0.0071121072,-0.030068347,0.032975323,-0.02008255,0.02079265,-0.040742055,-0.002156655,0.0182962,0.0086765485,0.045490857,0.02414344,0.003897235,0.0010824882,0.010829044,0.012437866,-0.016543139,-0.02079265,-0.014390645,-0.035726964,-0.031311024,0.015466891,-0.007905424,-0.02231271,0.021691373,0.007933162,-0.00090149563,-0.0034922555,-0.010207704,0.028981004,-0.038744897,-0.0035449583,-0.02409906,-0.039011184,-0.008471285,-0.040764246,-0.041474346,-0.019372448,-0.031666074,-0.051216047,0.024365347,-0.012271436,0.009175839,-0.024742588,0.002705874,0.004063665,-0.0038778181,0.0011386584,0.06981182,-0.021913279,0.027938044,-0.01045735,-0.005372914,0.02449849,-0.043471508,-0.061778802,0.009408841,-0.009475413,0.04864193,-0.0066571985,-0.024875732,0.050994143,0.0149232205,0.004216226,-0.030734068,-0.0418294,0.011583526,0.0153892245,0.010113394,0.0077833747,-0.003664233,0.022856383,0.003650364,0.030001774,0.01490103,0.02949139,0.032553703,0.021591514,0.021502752,0.011661193,-0.0027086476,-0.024853542,-0.005958193,0.02341115,0.006718223,-0.018828778,-0.023588674,-0.01637671,0.030423397,-0.033396948,0.040475767,-0.017164478,0.028870052,-0.01525608,-0.0049845777,0.03353009,0.023699626,-0.005023411,-0.022135185,0.034794956,0.037724126,-0.008449094,-0.006679389,0.011872005,-0.00097222836,0.034018286,0.022667762,-0.026273744,-0.005345176,-0.017552814,0.004840338,0.013136872,0.010013537,0.0077223503,0.0046655866,0.012460057,-0.05254749,0.0044020726,0.00819945,0.020526363,-0.023943724,0.005752929,0.03288656,0.025874313,0.017475147,0.0475324,-0.0000662686,-0.029225102,-0.0035560536,-0.00069449836,-0.009763892,0.01804101,-0.033285994,-0.031244453,-0.02445411,0.013369874,-0.000044511347,0.014823362,-0.008798597,-0.012426771,0.01675395,0.02813776,0.0066294605,0.039233092,0.012870584,-0.005065019,-0.017730338,-0.010069013,-0.023832772,-0.004721063,0.0060857893,0.012282532,-0.0048542074,0.013469732,-0.025918694,0.0047071944,-0.0026434627,0.0028736908,-0.0020248978,-0.056053612,-0.003320278,0.016543139,-0.024276584,0.05436712,0.014845553,0.0025963075,0.029336056,0.055831704,-0.026584413,-0.0046517174,-0.022556808,-0.00209147,0.017674863,-0.010185514,-0.007095464,0.0002895188,-0.005420069,-0.010229895,0.034706194,-0.024986686,0.029447008,-0.01577756,0.015555654,-0.0060414076,-0.008976123,-0.0365924,-0.0038500798,-0.030245872,0.0025449917,0.030334635,0.008953932,-0.026184982,-0.005206484,0.0074338717,-0.01673176,0.029225102,-0.008421356,-0.005389557,-0.0244763,0.00024496412,0.009874845,-0.06994497,0.01694257,0.05285816,0.0051953886,0.022490237,-0.011616812,0.024809161,0.039344043,0.005802858,-0.04145216,0.025741167,-0.06275519,-0.012926061,0.0023841092,0.049707085,0.0026739747,-0.004460323,0.01589961,0.024254393,0.0011317238,0.0044686445,0.012826202,0.009675128,0.003797377,-0.02414344,0.0012690285,0.011239571,-0.027338896,0.04757678,-0.009863749,0.030001774,-0.023943724,-0.02064841,-0.01962764,-0.017663768,0.024897924,0.0074227764,0.022812001,0.029336056,-0.011872005,0.01623247,0.014335168,-0.009114815,-0.004230095,-0.00788878,0.0013168771,-0.0031538478,0.0130703,0.0021289166,0.034040477,0.019228209,0.015466891,-0.0006948451,-0.0091425525,0.0036864236,-0.004490835,-0.0011303369,0.011650098,-0.02264557,-0.055343512,0.037124977,0.028670335,-0.012837298,0.0045074783,0.027361086,-0.02986863,-0.01342535,0.0066571985,-0.002520027,0.0066960324,0.0076557784,0.025075449,-0.013924641,0.008892908,-0.017264334,0.042628262,-0.034040477,0.010268729,-0.0012086977,0.03015711,0.021314131,0.019616546,0.035061248,-0.000064231564,0.014557075,-0.0075725634,-0.006635008,-0.008454642,-0.0067792474,-0.028426237,0.006446387,-0.007178679,-0.0031372048,0.0032897657,-0.0049013626,0.0072896327,-0.00044589362,-0.026384698,-0.03925528,-0.018839872,-0.0112895,-0.02045979,-0.011849813,-0.036303923,-0.021491656,-0.022612285,0.035460677,0.0129371565,-0.013702733,0.019794071,0.014146547,0.06421977,-0.011189641,0.004177392,-0.031998936,-0.007511539,0.032198653,0.012437866,0.035749156,0.0034478742,-0.0009486508,0.008188355,0.002701713,0.018285105,-0.014778981,0.04695544,-0.004035927,-0.01138381,-0.0064241965,0.040830817,0.0054783197,-0.03956595,-0.0073894905,0.01912835,-0.009358912,-0.0012648677,-0.005874978,0.01138381,-0.04296112,-0.036059827,0.003317504,0.009297888,-0.029047577,-0.0071897744,0.04267264,0.025252974,0.0118831,-0.006951225,0.0101355845,0.011084236,0.030867212,-0.051704243,-0.02744985,-0.035238773,-0.0041524274,0.011849813,-0.040542338,0.037635364,0.0065739835,0.014213119,0.013891354,0.0537014,-0.030245872,-0.0030428946,-0.04356027,-0.037080597,0.00586943,-0.011772146,-0.041341204,-0.05401207,-0.009164743,0.04085301,-0.0072785374,-0.009541985,-0.005641976,0.028026806,0.0075059915,-0.025408309,0.038034797,0.02148056,-0.0101910615,-0.028981004,0.0024132344,-0.01038523,0.06253329,-0.008327046,0.035172198,-0.046999823,-0.013281112,-0.015411415,0.0014340716,0.05592047,0.01946121,0.01304811,0.01791896,-0.033641044,0.051171668,0.016010562,0.009536437,-0.025230782,0.028625954,0.0070455354,-0.0033369209,0.00048576746,-0.010845686,0.011816528,-0.013503018,-0.0005433245,0.003961033,-0.0012600136,0.02141399,0.015910706,0.010657066,-0.008415809,0.0059304545,-0.011949671,-0.057429433,-0.027760519,-0.0010006601,-0.03781289,0.0034700648,-0.008410261,0.0052148057,0.0432496,-0.014157643,0.014490502,-0.06133499,0.017397478,-0.04731049,0.0018071521,0.004579598,0.0029846441,-0.019217113,0.008476833,0.01789677,-0.007300728,0.047354873,0.017808007,-0.0013432285,0.043116458,0.008937289,0.022590093,-0.02345553,-0.035238773,0.009730605,0.022878572,0.015211699,0.05769572,-0.014401739,0.0029069767,-0.003320278,0.009419936,-0.027649565,0.0019832905,0.039077755,0.014157643,0.0027516421,0.018373867,0.00594155,-0.001526995,0.00048091327,0.007683517,-0.030623114,-0.032908753,0.0140466895,-0.021802325,-0.0061468133,0.0124711525,0.011516954,0.0068402714,0.027605183,0.021757944,0.015344843,0.0070843687,0.008166163,0.00805521,-0.025208592,0.03892242,0.0130703,0.019050684,-0.0096085565,0.011749956,-0.018074295,0.010412968,-0.03548287,-0.02129194,0.01692038,0.0008057984,0.0021524942,0.021169892,0.0025782776,0.06000355,-0.004729385,-0.042805787,0.014989792,0.00021237157,-0.03450648,0.0073173707,0.03490591,-0.008953932,-0.027938044,-0.012082815,-0.03526096,0.025053257,-0.0072008697,0.0063631725,0.038101368,-0.01623247,0.002834857,0.0042855716,0.04023167,-0.03321942,0.015011983,0.027915852,0.020714983,0.017930055,-0.001891754,-0.018850967,-0.0048486595,-0.025985265,0.035682585,0.018551394,0.0023813355,-0.0056253327,-0.030445589,0.009031599,0.016765045,0.01644328,0.021702468,-0.02915853,0.04926327,-0.0008397779,-0.016964762,-0.013303302,0.009836011,0.017508432,0.00013999187,0.06026984,0.004332727,-0.023677437,-0.038101368,0.0045851455,-0.006801438,0.0041052727,-0.00070351333,-0.0054172953,0.012282532,-0.00094310316,0.019805167,-0.004180166,0.06825848,-0.0031011452,-0.0043992987,-0.0032564797,-0.004213452,0.012293627,-0.008116235,-0.00050691795,-0.022401473,-0.007922066,0.01321454,0.007267442,-0.0017308716,0.017031332,0.018950826,-0.022423664,-0.011827623,0.01993831,0.028004616,-0.016354518,0.0046988726,0.005206484,-0.015810847,0.00041919548,0.005542118,-0.02911415,0.048686314,-0.030046156,0.014545979,0.038722705,0.010873425,0.022035327,-0.0029069767,0.003320278,-0.022468045,0.0029458103,0.03450648,-0.01038523,0.006058051,-0.014967602,0.048064973,-0.0062466715,-0.010168871,-0.015023078,-0.042361975,-0.005769572,0.010712543,-0.049440794,-0.020615125,0.003317504,-0.027605183,-0.017830197,0.035305344,-0.025408309,0.008826336,-0.009969155,-0.0070067015,0.03989881,-0.010507278,-0.017763626,-0.01138381,0.006518507,-0.014712409,0.0020443148,0.013946831,0.015300462,0.01359178,0.01727543,0.015300462,0.03215427,0.016642997,-0.008715383,-0.008748668,0.008227188,0.02312267,0.005575404,0.013769306,-0.025718978,-0.015677704,0.034928102,0.005561535,0.0159218,0.03253151,0.056896858,-0.063775964,0.062710814,0.0148677435,-0.01575537,-0.0018695632,-0.012005148,0.028958814,-0.021835612,-0.023655245,0.018507013,0.011761051,0.010901162,-0.0020346064,0.0046655866,-0.018174153,0.024210012,-0.025852121,0.009480961,0.020825936,0.0063909106,0.04247293,0.013392065,0.028293094,-0.003070633,0.036769927,0.007028892,-0.0075503727,-0.027671756,0.013880259,-0.011222928,-0.0034451003,-0.047754306,0.014745695,-0.024609445,0.0024506813,0.016909285,-0.010862329,0.015555654,0.008404713,-0.0046350746,-0.023300195,-0.0075781113,0.014978697,-0.011661193,0.03987662,0.020859223,-0.019261494,0.010573851,0.03583792,-0.036392685,0.023167051,-0.002805732,-0.007633588,-0.013336588,-0.0058583347,0.002837631,-0.008598882,0.002934715,-0.0019610997,-0.0064963163,0.011006569,-0.0098415585,0.007827756,0.0073950384,0.005261961,-0.018629061,0.011805432,-0.022856383,-0.055698562,-0.06550684,0.02443192,-0.03543849,0.016121516,-0.0073118233,0.013125776,-0.007750089,-0.011916386,-0.01713119,-0.04726611,-0.005952645,-0.011111974,0.021436179,0.010795757,-0.01977188,-0.0012926061,-0.0056502973,-0.0021025653,0.008005281,0.0031039189,0.023211433,0.007017797,-0.03117788,-0.030645305,-0.0041052727,-0.022745429,-0.0065129595,-0.01660971,-0.006934582,0.009852654,0.047044203,-0.022334902,0.011816528,-0.0100190835,-0.00670158,0.0025297354,-0.0010706994,0.0142796915,-0.0041052727,-0.011516954,0.005600368,-0.03716936,-0.0062799575,-0.0002102912,-0.0086155245,-0.018129772,0.014257501,-0.029069768,0.038412035,-0.03441772,-0.0037946033,0.00076765823,-0.01660971,-0.0209147,0.019549973,0.03550506,-0.021447275,-0.0199605,0.013014823,0.044381324,0.022678856,0.009508699,0.026007457,0.022423664,0.02547488,-0.0015727632,0.040364813,0.024942305,-0.0030900496,0.0015796977,-0.048064973,-0.010956639,0.011894195,0.0063798153,0.013846973,0.0077889226,0.014812267,0.019549973,-0.0065795314,0.000031465665,-0.051482335,-0.013613971,-0.014324073,-0.019727498,-0.0016157576,-0.025275163,-0.021180987,-0.017464051,0.031910174,-0.02711699,0.01577756,-0.008099591,0.029557962,0.01858468,-0.011749956,-0.0145126935,0.008737573,0.015344843,0.0055948207,-0.014656932,0.008099591,-0.046733536,0.017231049,0.007716803,-0.020326646,-0.0028168273,0.0010048209,0.04391532,0.007178679,0.025053257,-0.026917273,0.05254749,-0.016387803,-0.01989393,-0.0070788213,0.0024839672,-0.014601456,0.0014909351,-0.008443547,0.00031118936,-0.012693059,-0.002771059,0.022834191,0.016021658,-0.0075725634,0.029691106,0.0040220576,-0.031599503,0.009192482,0.05387893,0.0071232026,0.0021580418,0.012105006,-0.03519439,-0.010401873,-0.01029092,0.022523522,0.01273744,0.0076668737,0.0008210545,-0.04553524,-0.000058987287,0.026584413,-0.003037347,-0.0019541653,0.0051204953,0.008876265,-0.02010474,0.005752929,0.031621695,-0.011095331,0.013880259,0.0011213219,-0.0014229763,-0.011461477,-0.012493343,0.018007722,0.020748269,0.027272323,0.00044415996,-0.0054172953,0.036548022,-0.0016476567,0.0048514334,0.009042695,-0.008155068,-0.023877153,0.011605716,-0.0027280645,-0.008260474,-0.016154801,0.04930765,0.02108113,0.023255814,0.008193902,0.017885674,0.023677437,-0.032686844,-0.02077046,-0.011117522,-0.020759365,-0.007750089,0.0034756125,-0.04486952,0.020326646,0.023056097,-0.020959081,-0.017286526,-0.00440762,-0.032487128,-0.006318791,0.0017017464,0.013558495,-0.009064886,-0.015222794,0.033574473,-0.05325759,0.013536304,0.04151873,0.024809161,-0.02787147,0.025608024,-0.020348838,0.006945677,0.0012385163,0.029646724,-0.024298776,-0.008787503,-0.0425395,-0.007245251,0.025696786,0.027338896,0.050106514,0.019383544,-0.0142796915,0.053523876,0.0019000755,-0.0057751196,-0.0053951046,-0.027782708,-0.02160261,0.0062411237,0.00238827,-0.028759098,-0.037369076,0.02514202,-0.0251864,0.0049512917,0.031421978,-0.025097638,0.03193236,-0.013946831,0.008449094,-0.030090539,-0.02649565,0.011661193]},{"id":"interface-GatewayGuildScheduledEventCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventCreateDispatchData\nDescription: GUILD_SCHEDULED_EVENT_CREATE — a scheduled event was created.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventCreateDispatchData"},"embedding":[0.016691417,0.019495845,-0.012940916,-0.010530685,0.009483248,0.010243484,-0.046267435,-0.006042473,0.009685977,-0.029463392,0.020622121,0.024012214,0.0341487,-0.02269447,0.044510446,0.0060649985,-0.08019088,0.024124842,0.008126085,0.020182874,-0.0039053636,0.012648084,0.03430638,0.023358973,-0.033540513,0.02168082,-0.00044875077,-0.007788202,0.02941834,0.008458336,0.04221284,-0.017660014,0.035950743,-0.02428252,-0.0073433225,0.04196506,0.0027143261,-0.014393813,-0.056764334,-0.023741907,-0.04086131,-0.04408246,0.040478375,-0.00097563694,-0.03845108,-0.0049809576,-0.012479143,0.010739046,-0.0010319508,0.021095159,-0.026805378,-0.007934618,0.0018386462,0.030477041,0.015824184,-0.016195856,-0.022953514,0.033315256,-0.05279984,0.030296836,0.0033337784,-0.010198433,0.0076868366,0.013999616,0.017141927,-0.0023159059,-0.028224487,0.04721351,0.039622404,0.039960288,0.00037202318,0.0021314782,0.017536124,-0.0026383025,0.016590051,-0.0233815,-0.036558934,-0.005963634,0.015655242,-0.0071293297,0.011893479,0.029328238,-0.10938397,-0.041154142,0.015170944,-0.020374341,-0.040681105,-0.00782199,0.022885937,0.014371287,-0.007585472,0.023989689,-0.014247397,0.01738971,0.01613954,-0.06563939,0.048700195,-0.02705316,-0.025183542,0.046898153,0.047528867,-0.06712607,-0.036446307,-0.043812152,-0.0044262665,-0.0041165403,-0.039261997,0.008469599,-0.019811202,-0.025048388,-0.06131449,-0.0049696947,0.0022750783,-0.018245678,0.001112902,0.0040799365,0.045907028,-0.044668123,0.027976707,0.00027945734,-0.07266735,0.020520756,-0.004231984,-0.016995512,-0.006115681,-0.0060312105,0.0012867708,-0.040005337,-0.058251016,0.0004276331,0.009669083,0.0038039987,0.023741907,-0.029440867,-0.02986885,-0.00019938612,-0.036694087,0.0145514915,-0.03784289,-0.050817594,-0.023032352,-0.0056032254,0.045366414,0.09019222,-0.022807097,-0.0031113387,-0.0074221618,0.016984249,0.0005434284,0.06356704,-0.08316425,0.029891377,0.021083895,-0.023786958,0.02342655,-0.012445355,-0.043767102,-0.029936427,-0.026782854,-0.010800991,0.023809483,-0.02130915,0.008289395,0.028652472,-0.035995796,-0.01609449,0.00043185664,-0.00034210648,-0.07298271,0.02249174,0.050051726,-0.018797554,-0.060278315,0.04942101,0.00036428004,0.020419393,-0.06221551,-0.010936144,-0.018166838,-0.021410516,0.032887273,-0.013504054,-0.0394422,-0.044510446,-0.009747922,0.019766152,0.004575498,-0.01083478,0.017930321,-0.062395714,-0.04009544,-0.01214126,0.01922554,0.05325035,0.037505005,-0.018549774,0.034013547,0.016038176,0.020543283,0.0067069763,0.015824184,-0.061855104,-0.0030240524,0.011138874,0.02892278,-0.026309818,0.017130665,-0.010074543,0.02856237,0.011916005,0.030116633,-0.023336448,-0.00009872517,0.0093312,-0.026760329,0.040636055,-0.049466062,0.019822465,0.017862745,-0.03613095,-0.0012536865,-0.00069617963,0.0070335963,-0.011071297,0.028269539,0.00049239397,-0.01829073,0.012118734,-0.045208737,0.01124587,-0.049916573,-0.010468739,0.0039250734,-0.055863313,-0.009291781,0.02032929,0.008509018,0.013785624,0.023696857,0.03707702,-0.0044797645,-0.03757258,-0.021827238,0.001704901,0.008835639,0.005639829,0.012783238,0.019383218,-0.0042179055,0.057665356,0.054466728,0.0004367841,-0.026782854,0.022874674,-0.0088018505,-0.017367182,-0.0027636008,-0.020723486,0.023561703,-0.0031845467,0.061945204,-0.033090003,-0.059377294,0.060278315,-0.01670268,0.00064479327,0.033968497,0.018020423,-0.027526196,0.019822465,-0.009742292,-0.053790964,0.05789061,-0.035297506,-0.0068421294,0.0021173998,-0.0013874318,0.04523126,0.013222486,-0.034193754,-0.03381082,-0.022457952,0.027075686,0.020520756,0.0009918272,0.0746496,0.03527498,-0.006616874,0.018470934,0.024845658,-0.036784187,-0.030094106,0.018808817,-0.022829624,0.008430179,0.02730094,0.022435427,0.002705879,0.030319361,0.02554395,0.03682924,-0.025769206,-0.021534406,-0.026444972,-0.001321263,0.009550824,0.050006673,-0.03410365,0.015869236,0.010254747,0.017614964,-0.025161015,-0.022807097,-0.04424014,0.010603893,0.020374341,0.031603318,0.06960388,-0.014292448,0.010902356,0.0074334247,0.0053892327,0.002717142,-0.031445637,-0.011747063,-0.039870188,-0.013763098,-0.02856237,-0.017096877,0.07068511,0.019890042,-0.05023193,-0.013616682,0.04631249,0.053385504,0.032391712,-0.00033788293,0.013470266,0.070820265,-0.0072757457,0.0125579825,-0.033675667,-0.05739505,-0.05023193,0.015283572,-0.033337783,-0.014123507,0.026737804,-0.023674332,0.029485917,-0.021252837,0.05577321,-0.014326236,-0.044375293,-0.029891377,-0.07757792,0.056854434,0.019101648,-0.03225656,0.03254939,-0.01503579,0.028742574,0.0076530483,0.023922112,0.0064197755,0.007377111,-0.02639992,0.039081793,-0.014968214,-0.045952078,0.0013634984,-0.0031507583,-0.062350664,-0.016477425,-0.03450911,-0.019811202,-0.010885462,0.00431927,0.011482389,0.013661733,-0.027368518,-0.0074897385,0.013436478,-0.021613246,0.035748016,0.011623173,-0.0044825803,0.042550724,-0.04433024,-0.026107088,0.033067476,-0.009010212,-0.0128733395,-0.020239187,-0.023606755,-0.024305046,0.060773876,-0.011724538,0.017716328,0.0012874748,0.026805378,-0.0011143098,0.024665454,-0.0051132953,-0.024778081,0.019540897,-0.0009826762,0.017378446,0.02790913,0.009894338,-0.0011818863,0.044623073,0.034081124,-0.010322324,0.019428268,-0.044307716,-0.033743244,-0.020881165,-0.025994461,0.032121405,0.028652472,-0.009128471,-0.00012019481,0.015610191,0.010862936,-0.034171227,-0.0009369212,0.027751451,-0.014281185,-0.033135053,-0.05325035,0.009241099,0.058971833,-0.008047245,0.059061937,0.0003109579,-0.0022356587,-0.06419776,0.015869236,0.02199618,-0.029485917,0.015486301,0.027526196,0.03324768,-0.011167031,0.019383218,0.06451312,-0.019338166,0.07176633,0.0017710697,0.0029198716,-0.0024947023,-0.014900638,-0.010181539,-0.03225656,-0.03133301,-0.055502903,0.014574017,-0.007731888,-0.020565808,-0.04453297,0.006836498,-0.010525053,0.061629847,-0.040951412,0.020081509,-0.007737519,-0.0011980765,0.0062846225,0.02085864,-0.035590336,-0.012332727,0.0489705,0.016995512,-0.012760712,0.037189648,-0.02730094,0.0134590035,0.03646883,0.013109858,-0.0021568194,0.028179437,0.01503579,0.007501001,0.041446973,0.07280251,0.00041144286,-0.012907128,-0.007675574,0.0013008493,-0.05410632,0.024597878,0.02881015,-0.010046386,-0.021613246,-0.012501668,0.0025045571,-0.058070812,0.00085174653,0.019338166,-0.044578023,-0.03250434,0.00023986169,-0.019540897,0.030769872,0.0038518654,-0.042528197,-0.004192564,0.0024764002,-0.047799174,0.012614296,0.024034739,0.016331008,-0.021410516,-0.021624507,0.022638157,-0.027683875,0.030567143,-0.012512932,0.023449076,-0.030927552,0.017772643,-0.0046374435,-0.014754222,-0.012208837,0.000059173508,0.016162068,-0.07289261,-0.002123031,-0.0245303,0.008993317,-0.007027965,0.017175715,0.0468531,0.00011429946,-0.009545193,0.016713943,0.008452705,0.029012881,0.008503387,-0.007709362,0.042145263,0.01939448,0.005789061,0.0031676525,0.002306051,-0.00395323,0.0133125875,0.0041278033,0.026242241,0.004958432,-0.012591771,-0.009488879,-0.0030606561,0.009224204,0.030454515,0.01874124,-0.010654575,0.008126085,-0.0032183349,0.01894397,-0.007011071,0.0063409363,-0.023539178,-0.031670894,0.012749449,-0.002016035,0.015993126,-0.01014775,-0.019169224,-0.019495845,0.021928603,0.026737804,-0.010485633,-0.021725873,0.013695521,-0.014878112,0.007281377,0.027008109,-0.009680346,-0.016916672,-0.079019554,0.010125225,0.05716979,-0.08379497,0.03475689,0.05671928,-0.0012382001,-0.0018682111,0.019788677,-0.035500232,0.017333394,0.015058316,0.0059467396,0.023246346,-0.029080458,0.015993126,0.011476757,-0.02493576,0.016815307,-0.010322324,0.039419677,-0.045298837,-0.03198625,0.022097543,0.025251118,0.041784856,0.028427217,-0.02383201,0.0011952609,-0.0040686736,0.0083400775,0.005073875,-0.029148035,0.0017302422,-0.026782854,-0.015103367,0.0067970785,-0.029215612,-0.028269539,0.033563036,-0.00920731,-0.02872005,0.028449742,0.0016654812,0.037054494,-0.054241475,-0.027233364,-0.029080458,0.0035393238,0.008120453,-0.06131449,-0.039509777,-0.03218898,-0.02709821,-0.01581292,0.03304495,-0.0008404838,0.028269539,0.0077431505,0.004020807,0.0025763575,0.007940249,-0.016770257,0.0266477,-0.014078456,0.022671945,0.008548439,0.0026946163,0.025566475,-0.040208068,-0.0014430417,0.032369185,-0.0040968307,0.04942101,-0.0106489435,0.0021314782,0.044758227,-0.012242625,0.020622121,0.006177626,0.017614964,0.014168558,0.048429888,0.013413953,0.042528197,-0.00012556222,0.021613246,-0.0233815,0.03682924,0.027008109,0.01662384,0.028089335,0.03225656,0.0039954656,0.026107088,-0.03205383,-0.04901555,0.020396866,0.010237853,-0.0041953796,0.018324519,-0.0028720049,0.006205783,0.03748248,-0.01829073,0.059377294,-0.040973935,0.034081124,0.0064254072,0.0007412307,-0.005068244,0.021421777,0.0012051158,0.018977758,-0.011499283,0.032481812,0.0020089955,-0.023606755,-0.03345041,-0.014889374,0.029125508,0.03777531,-0.015058316,0.0022131333,0.030950077,-0.008216186,0.01564398,0.0015838263,-0.0047810436,0.021590719,-0.017783904,-0.042393044,0.015486301,-0.027436094,0.01878629,-0.03063472,-0.027481144,-0.005121742,-0.0007961367,0.04604218,0.02619719,-0.009398777,-0.0053976797,-0.029508444,0.024980811,0.030364413,-0.012783238,-0.033765767,-0.023133717,-0.01030543,0.011313447,0.035883166,-0.005287868,-0.005020377,0.012783238,-0.003547771,0.020937478,-0.0047613336,0.017795168,0.028990356,0.039667457,-0.007900829,-0.020757275,-0.006628137,-0.009714134,0.0130197555,0.011645698,-0.018684926,0.015576404,-0.00032239663,0.0050260085,-0.04356437,-0.023899587,-0.029688647,0.0020287056,0.01478801,0.051718615,-0.00019745034,0.020813588,0.014652857,-0.024395147,0.039577354,0.05239438,-0.039104316,-0.015396199,-0.014776747,-0.015092105,-0.025656577,-0.005087954,-0.0064197755,-0.04498348,-0.033788294,0.015373673,0.025634052,-0.03162584,0.012073684,-0.05829607,0.0007876896,0.0036266102,-0.02362928,-0.012952179,-0.00953393,-0.012118734,0.024237469,-0.0047725965,0.01589176,-0.02383201,-0.02741357,-0.017919058,-0.026174664,0.0028945305,-0.007867041,0.003308437,-0.013582894,-0.056043517,-0.015857972,-0.058251016,-0.021748397,0.054737035,-0.019090386,-0.00017668461,-0.021658296,0.0044910274,0.015632717,-0.0143825505,-0.077442765,0.00541739,-0.03984766,-0.008238712,0.009635295,0.04081626,0.009866182,-0.0057834294,0.019484583,0.0019174856,0.009550824,0.0040658577,0.004082752,-0.02745862,0.0024031925,0.017592438,-0.017851481,-0.033788294,0.000086978456,0.016567526,0.010969932,0.03845108,-0.03568044,-0.016319746,-0.011076929,-0.007298271,0.03324768,-0.009224204,0.046492692,0.018617349,-0.024710504,0.00916789,-0.0029029776,0.0011917412,-0.0000947656,-0.011302184,0.015407462,0.014348762,0.018752502,-0.003882838,0.018729977,-0.0025031494,0.0058003236,0.028652472,0.0136279445,0.0143825505,0.019833729,-0.033135053,-0.026872955,-0.014472652,-0.0446456,0.04363195,0.021331675,-0.010547579,-0.023899587,-0.0017302422,-0.020227924,-0.011302184,-0.003091629,0.03324768,-0.01906786,0.0021047292,0.05716979,-0.008013457,-0.010530685,-0.012828289,0.019867517,-0.043812152,0.003088813,0.03824835,0.047799174,0.019811202,0.03547771,0.02168082,0.017209504,0.015903024,0.0022412902,0.0031479427,0.0018161208,-0.0025453847,0.0024637298,0.0010242077,-0.009077788,0.013087332,0.011972318,-0.0073602167,0.006256466,-0.026625175,-0.016184593,-0.02917056,-0.005000667,-0.02171461,-0.028427217,0.011994844,-0.020700961,-0.033180103,0.003544955,0.018876392,0.009162259,-0.005147083,0.007236326,0.0012966257,0.025611525,-0.009308674,0.012817026,0.01099809,-0.010378637,0.011916005,-0.016409848,0.008959529,-0.006605611,-0.02835964,0.006982914,-0.015576404,0.008210556,0.00200618,0.018718714,0.028584896,0.008154241,-0.039261997,0.030927552,-0.031107755,0.003784289,-0.0032155192,0.020306764,-0.004758518,-0.008610384,-0.017569913,-0.03223403,-0.021444304,-0.0298238,0.015283572,-0.004657153,-0.02554395,-0.01352658,0.04563672,0.0006623913,-0.018718714,-0.023201294,-0.010710889,0.023674332,-0.01752486,-0.05991791,-0.016477425,-0.024620403,0.0014317789,0.03209888,-0.024800608,0.0447357,-0.028787626,-0.005000667,0.0062114145,-0.0020075878,0.014010879,0.037505005,-0.033923447,-0.01193853,0.0054708878,0.021500617,-0.05784556,-0.045929555,-0.04257325,-0.01845967,0.0027016557,-0.0015373674,-0.045524094,0.018684926,0.019214276,-0.019529633,-0.0009179153,0.03667156,-0.04122172,-0.04865514,0.00554128,-0.0050485344,0.05491724,0.014619068,0.041244242,-0.02428252,0.019833729,-0.01934943,-0.03637873,0.037099548,0.018527247,0.01267061,-0.009646557,-0.010705258,0.056043517,0.02138799,-0.007934618,-0.019495845,0.014607806,-0.023741907,-0.016308483,0.005065428,0.02118526,0.0037336063,0.012726923,0.03869886,-0.019056598,-0.034126177,0.018076736,-0.0020554545,0.013954565,0.008002195,0.008548439,0.015948074,-0.0490606,0.012096209,0.010603893,-0.040928885,-0.0024806238,-0.009719766,0.0076980996,0.018200627,-0.027075686,0.018729977,-0.04635754,0.009162259,-0.032369185,-0.019124174,0.03475689,-0.034914568,0.010192802,-0.0024834396,0.022075018,-0.017614964,0.017738855,0.030386938,0.014664119,0.04306881,0.018166838,0.020633385,0.005496229,-0.037459955,-0.012276413,0.0030099738,0.026039511,0.039915238,0.014596542,0.027345993,-0.012107472,0.00957335,-0.0060199476,-0.0012797316,-0.008711748,0.00095240754,0.0038237085,0.017648753,-0.017254556,0.00313668,-0.0028016127,0.004586761,0.009269255,-0.0028635578,-0.0054596253,-0.0017372814,-0.017693803,0.011645698,-0.018189365,-0.0066506625,0.042730927,0.013875726,0.0105025275,-0.01939448,-0.004513553,0.0092636235,-0.010046386,0.039104316,0.036536407,0.014360025,-0.020689698,-0.006943494,-0.023268871,-0.009173522,0.008931372,-0.036311153,-0.0029958955,-0.0016049439,-0.009792973,0.012963442,0.0020104034,0.036694087,0.009702872,-0.040951412,-0.0002599235,-0.0047050198,-0.018842604,0.024147367,0.01690541,-0.014405075,-0.016939199,-0.03113028,-0.02917056,-0.013909514,-0.0053723385,0.011054403,-0.0013656102,0.023246346,0.010153382,0.005924214,-0.014731696,-0.010418057,0.02835964,0.033540513,0.007281377,-0.0010826333,0.003511167,0.00029459168,0.01738971,-0.015801659,0.02892278,0.01604944,0.015824184,-0.037099548,-0.00029846324,0.0078050955,0.013098595,-0.01813305,0.039329574,-0.00057968043,0.044870853,-0.032369185,-0.0070617534,0.004933091,0.029350763,0.030477041,-0.0149119,0.038406026,0.031062704,0.033878397,-0.05077254,0.006177626,-0.04387973,0.0047162827,-0.004595208,0.00023739795,0.009066525,0.00060572557,-0.015215995,0.002917056,0.076361544,-0.010570104,-0.0042629563,0.0016584421,0.017975371,0.000884127,0.0065943487,-0.01214126,-0.024102315,-0.014393813,-0.0019062229,0.019462056,0.013808149,-0.0014205162,0.030341888,-0.0030944445,-0.010525053,0.0015486301,0.023584228,-0.025814256,0.027526196,0.011110717,-0.0019667603,-0.019698575,-0.019034073,-0.03304495,0.021005055,-0.015948074,0.0021920155,0.010136488,0.007867041,0.023133717,0.016342271,0.0077431505,-0.023043616,-0.007011071,0.00063740206,-0.031715944,0.003198625,-0.017614964,0.009421302,-0.007895198,-0.0025650945,0.0027720479,-0.020948742,0.00031852507,-0.008587858,-0.046222385,-0.017693803,-0.05158346,0.0036378729,0.013222486,0.015576404,-0.02615214,-0.012681873,-0.019371955,0.007377111,0.027368518,-0.010164645,0.015294834,-0.02212007,0.016939199,-0.01193853,-0.01853851,0.0028860834,0.03712207,-0.0043502427,-0.0038631281,-0.014348762,0.024372622,0.012231362,0.0006423295,-0.006250834,0.0116344355,-0.005149899,0.0057411944,0.026490021,-0.040906362,-0.0071856435,0.027255889,0.010001334,-0.01821189,0.0069885454,0.03394597,-0.061044183,0.043091338,0.00507106,0.0017809246,-0.010496897,-0.0049021184,0.040185545,-0.0023919295,0.002124439,-0.015993126,0.030499566,0.003446406,-0.017491072,0.0030747347,-0.021376727,-0.023246346,0.036806714,0.055232596,0.010299798,0.030972602,-0.007309534,0.021703348,0.0191467,0.004034885,0.0074784756,-0.0040067285,-0.01568903,-0.019968882,-0.01112198,-0.027683875,-0.0075066327,-0.013301325,0.012659348,-0.06559434,-0.0010129448,-0.020239187,0.0244402,0.023313923,-0.011302184,0.0052456325,-0.039374623,-0.015857972,-0.011195187,-0.04514116,0.030341888,0.01099809,-0.018279467,0.005991791,0.013672996,-0.026805378,0.008644172,0.021703348,0.0006338825,-0.0017851482,-0.007883935,0.018223153,0.011994844,0.004792306,-0.019259328,-0.000090278096,0.010496897,0.023944637,0.004302376,-0.017423496,-0.01099809,-0.033563036,-0.0027495224,-0.037955515,-0.018448409,-0.010052017,0.019901305,-0.0031929938,0.04338417,-0.023032352,0.013841937,-0.0074334247,-0.023786958,-0.0027987969,-0.030139158,-0.02110642,0.014596542,-0.00038574968,0.0033337784,-0.008565333,-0.0020343368,-0.018549774,0.03480194,-0.013031019,0.01629722,-0.008216186,0.0207798,-0.030544616,-0.019462056,0.009635295,-0.014923163,-0.024417674,-0.004933091,-0.03964493,-0.0026664594,0.009939389,-0.0045811296,0.0058679003,0.0040517794,-0.019833729,-0.027323466,-0.0076812054,0.01695046,0.0090946825,-0.0046796785,-0.030724822,-0.046447642,-0.053385504,0.024034739,0.010907987,-0.00765868,0.013402689,-0.037414905,0.0037392378,-0.004026438,0.0009707095,0.035995796,0.012614296,-0.009742292,0.016871622,0.014112243,0.016105752,-0.0063690934,0.042190317,0.007636154,0.0077262563,0.017446022,-0.024192419,0.013380164,0.04982647,0.00091158,0.024575353,0.0102491155,0.00200618,0.0049696947,-0.033315256,-0.027075686,0.005223107,0.03182857,0.00429956,0.015869236,0.039307047,0.0091172075,0.008858164,0.014810535,-0.013796886,-0.016071964,-0.030251786,-0.020543283,0.010316692,-0.010902356,-0.01246788,0.0010629233,0.041356873,-0.006752027,0.018178102,-0.013447741,0.053430554,-0.014360025,0.011611911,-0.015621454,-0.0005251264,-0.0007391189,0.01055321,-0.010468739,0.014483915,-0.046582792,0.031806048,-0.0038152614,-0.01841462,-0.00364632,-0.014089718,0.04721351,-0.016398584,0.00046106943,-0.0131436465,-0.0011466902,-0.029530969,-0.0006233236,0.006324042,0.012389041,-0.0128733395,0.00014201642,0.03315758,-0.025431322,-0.017164454,-0.002259592,0.0012269374,0.011994844,-0.005991791,0.04291113,-0.010232221,-0.042190317,-0.027638825,0.020475706,0.010874199,-0.0026749065,-0.006684451,-0.008103559,-0.010474371,-0.0033112527,-0.01352658,-0.002398969,-0.005468072,-0.025611525,-0.04009544,0.03430638,0.0036885554,0.0012776199,0.031107755,0.007303903,-0.014067193,-0.010412426,-0.0013451964,0.038608756,0.0009925311,-0.00023194255,-0.018651137,0.024034739,-0.007788202,-0.036513884,0.016060703,0.0014528966,0.02017161,0.011893479,-0.0011438745,0.025679102,0.0012431276,0.012625559,0.0051639774,0.009156628,0.026670227,-0.010451846,0.0047641494,0.006752027,-0.006746396,-0.015261046,0.021252837,0.02917056,-0.013267537,0.001020688,-0.01267061,-0.018437145,-0.015475038,-0.022930989,-0.023088668,0.010851674,0.009179153,-0.02786408,0.0030691032,0.022638157,-0.017795168,-0.001203004,0.018955233,-0.007703731,0.0082781315,-0.011555596,0.012276413,-0.0011234607,-0.0016654812,0.03748248,-0.046492692,0.007793833,0.034576688,0.007365848,0.00007263603,0.036401253,-0.0067970785,0.010654575,0.012940916,0.042257894,-0.016218381,-0.018752502,-0.011144506,-0.00570459,0.04403741,-0.0023539178,0.063612096,0.012952179,0.006324042,0.029102983,0.03802309,-0.0017189794,-0.011679486,-0.025859307,-0.017693803,-0.010936144,-0.019630998,-0.01181464,-0.013278799,0.0143825505,-0.037752785,-0.028945304,0.009629664,-0.01112198,0.024778081,0.0076079974,-0.011961056,-0.036649037,0.01226515,-0.007354585]},{"id":"interface-GatewayGuildScheduledEventDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventDeleteDispatchData\nDescription: GUILD_SCHEDULED_EVENT_DELETE — a scheduled event was deleted.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventDeleteDispatchData"},"embedding":[0.007948073,0.034713622,-0.032705206,-0.01411596,0.008986515,0.042929865,-0.057376757,0.018771831,0.024785664,-0.018589247,0.03555807,-0.017676331,0.00828471,-0.005018184,0.0623065,0.01655801,-0.059430815,0.049571328,-0.027113598,0.048749704,0.010099131,0.04297551,0.029920815,0.027067952,-0.02633762,0.012529769,0.041606136,-0.02357605,0.04637612,0.0034890499,0.032591093,-0.020803068,0.055550925,-0.031586885,-0.019604865,0.017037291,0.013214456,-0.0059910095,-0.058244027,-0.021647515,-0.035580892,-0.045326266,0.015234282,0.027067952,-0.025013892,0.02909919,-0.01907994,-0.008678406,-0.0028457297,-0.0019342403,-0.02264031,-0.023712987,-0.009762493,0.05427284,0.012233071,0.00016938867,-0.0026303385,0.030788084,-0.01052706,0.011103338,-0.016535187,0.00048855256,0.0070066284,0.01885171,-0.006475996,-0.014173017,-0.01995862,0.06440621,0.027912399,0.04142355,-0.014595241,-0.0123357745,-0.01869195,-0.009602733,0.024123799,-0.037361078,-0.00006891444,0.0040425053,0.024899777,-0.029030722,0.025356235,0.029144837,-0.098686196,-0.043865602,0.009933664,-0.024009684,-0.0520362,-0.0032094696,0.03806859,0.065547355,-0.033001903,0.021658927,-0.0018643452,-0.0034776386,-0.0055859033,-0.08092998,0.037886005,-0.026771255,-0.035786297,0.054592364,0.057285465,-0.06481702,-0.06363023,-0.044755697,-0.007839664,-0.0009985017,-0.031883582,0.017082937,-0.03122172,-0.02996646,-0.037087202,-0.008301828,-0.022412082,-0.007754078,-0.0097510815,0.026040923,0.029441534,-0.02964694,0.060982775,0.014640886,-0.06837739,0.015416865,-0.007348972,-0.034553863,-0.041743074,0.014184428,0.0010634043,-0.046718463,-0.059887275,-0.007953779,0.0009300329,-0.01623849,-0.0037229846,-0.047334682,-0.0125183575,-0.0007503026,-0.028140629,-0.008376002,-0.02830039,-0.0509407,-0.0067955167,0.009169098,0.028893784,0.08070175,-0.03989442,0.026223505,0.016729182,0.013842085,-0.0017830386,0.051077638,-0.042268,0.012506946,0.04628483,-0.0017502307,0.0015733533,0.0036003115,-0.017539395,-0.019410871,-0.031358656,-0.025424704,-0.00055238535,-0.040328056,0.0034120227,0.01711717,-0.034987498,-0.014070314,0.01048712,0.002952712,-0.050256014,0.00431638,0.022720192,-0.031952053,-0.034165874,0.010743878,-0.03083373,0.026428912,-0.038821742,-0.017710567,-0.010418652,-0.027980868,0.012974815,-0.023302175,-0.020791657,-0.03918691,-0.01570215,0.00981955,0.011913551,0.007902428,-0.03523855,-0.01861207,-0.017630685,0.011103338,0.007531555,0.032591093,0.016523775,-0.015496745,0.0298067,-0.0027601437,0.0022024093,-0.011439975,0.016124375,-0.03067397,0.014800647,0.008119245,0.026200682,-0.032979082,0.008535762,-0.01419584,0.03154124,0.0066985195,0.028414503,-0.01695741,-0.023165237,-0.024740018,-0.022834307,0.022925597,-0.038684804,0.048430182,0.018566424,-0.014355601,0.00524356,-0.0034319928,-0.00550317,-0.0010512796,0.03154124,-0.01797303,0.008518646,0.012803644,-0.055322696,-0.014013257,-0.044458997,-0.019524986,0.009323153,-0.027615702,-0.010355888,0.0067156367,0.0005916122,0.0030154749,0.014173017,0.019901564,-0.02713642,-0.054546718,-0.0077654896,0.002250908,0.0064931135,-0.00056486664,0.031701,0.011377213,0.0013508301,0.051534094,0.026428912,0.03681333,-0.00520362,-0.02058625,-0.026246328,-0.0192397,0.0029470061,-0.013910554,0.021544812,-0.005865484,0.06253473,-0.012837878,-0.04811066,0.04439053,-0.013397039,0.018669128,0.05833532,-0.0073147374,-0.041834366,0.017653508,-0.0032437039,-0.03619711,0.055322696,-0.033960465,0.013031873,0.024146622,0.011325861,0.03854787,0.013431273,-0.07024887,-0.033001903,-0.0044761403,0.031723823,0.014937584,0.0038114234,0.073763594,0.01971898,0.008062188,0.011411447,0.044185124,-0.057057235,-0.0042422055,0.017938795,-0.027821109,-0.01131445,0.031016313,0.016500952,0.022275144,0.0047928076,0.0117195565,0.044458997,-0.028277567,-0.044527467,-0.03510161,-0.013591033,0.0040767393,0.019285345,-0.017858915,-0.019456517,-0.009437267,0.0038513634,-0.029464357,-0.037908826,-0.019445106,0.011799436,-0.019365225,0.0044675814,0.056418195,0.02105412,-0.018486544,0.041514844,0.010629763,-0.011799436,-0.03382353,-0.024534611,-0.044595934,-0.0117195565,-0.02357605,0.004185148,0.07399182,0.017699154,-0.021225292,-0.022115385,0.06577558,0.035626538,0.06143923,-0.018954413,0.051534094,0.058472253,-0.024831308,0.03635687,-0.0037315432,-0.032773677,-0.019935798,0.038981505,-0.023199473,-0.028254744,0.009020749,-0.018121378,0.027706994,-0.035626538,0.03430281,0.0020041354,-0.05504882,-0.021944214,-0.056509487,0.0758633,0.04124097,-0.017448103,0.0343941,0.0036602216,0.0128835235,0.0055887564,0.0062192385,0.014469715,-0.0021824392,-0.055185758,0.017779035,-0.0044904044,-0.06048067,0.0066471677,-0.022754425,-0.057787567,-0.017025879,-0.043568905,-0.009813844,-0.025721401,0.027182067,0.013203044,-0.020985652,-0.010247479,-0.0027416002,-0.004938304,-0.011913551,0.034919027,0.013374216,-0.030240335,0.06659721,-0.062169563,-0.028688379,0.040601928,0.008244771,-0.00058341026,-0.017961618,-0.022800071,-0.031198896,0.02973823,0.020552017,0.005722841,-0.022103973,0.039552074,0.015816266,-0.0059111295,-0.008336063,-0.031952053,0.0411725,0.023233706,0.0035375487,0.021510579,-0.026611494,-0.0051294453,0.048521474,0.033298604,-0.022743015,0.015234282,-0.08147773,-0.00011384702,-0.0058283964,-0.012324363,0.019102763,0.027067952,-0.0026931015,0.008318945,0.022777248,0.007679904,-0.018030087,0.00091790827,0.04249623,-0.0062820017,-0.07673057,-0.069883704,-0.0011069104,0.029122014,-0.017938795,0.06906208,0.015530979,0.011023458,-0.053359926,-0.022446316,0.016443895,-0.044824164,-0.0036488103,0.016911766,0.0327965,0.021909978,-0.0000124924145,0.062032625,-0.0060195383,0.070294514,0.017151404,0.010721055,0.01300905,-0.045463204,0.011206041,-0.046923872,-0.051853616,-0.055870444,0.0062021217,0.012404243,-0.03612864,-0.06093713,0.0054860534,-0.021305172,0.06586687,-0.041355085,0.011708145,0.024762841,0.0018486545,-0.012621061,0.035763476,-0.01214178,0.004518933,0.05833532,0.013020461,-0.008130656,0.038137056,-0.02357605,0.0093630925,0.05189926,0.009328858,0.013842085,0.016672125,-0.0007196344,-0.029601295,0.029920815,0.037520837,0.01939946,-0.024557434,-0.011799436,0.021168234,-0.05404461,0.015074521,0.025059538,-0.01028742,-0.03950643,-0.012986227,0.009060689,-0.03336707,0.030970668,-0.0034890499,-0.018680539,-0.047562912,0.032225925,-0.02018685,0.0129063465,-0.0044419058,-0.049708262,-0.008450177,-0.0036259873,-0.06198698,0.007035157,0.021875745,-0.013670914,-0.028323213,-0.014640886,0.024374852,-0.03352683,0.018566424,-0.02405533,0.034919027,-0.023131004,0.017128583,0.022651723,-0.018771831,-0.018429488,0.00693816,0.011046281,-0.06390411,-0.00056201377,-0.0021096913,0.01885171,-0.011206041,0.011730968,0.06563865,0.012940581,0.006687108,0.028140629,0.017402457,0.03539831,-0.001651807,0.014834881,0.022583254,0.028962253,0.002019826,-0.0024120947,-0.006727048,-0.017950207,0.024352029,0.0057570753,0.026109392,-0.0029983576,0.001618999,-0.0044076713,-0.007622847,0.00024088852,0.0125411805,-0.002519077,-0.009756788,0.0095228525,0.005414732,0.00064046745,-0.034188695,0.020483548,-0.02861991,-0.0346908,-0.00044575965,0.009191921,0.02916766,-0.008621348,-0.0048983637,0.0038542163,0.0045731375,-0.0035346958,-0.014446892,-0.0028357445,0.019194053,-0.023918394,0.010829464,0.000105020976,-0.027866755,-0.02026673,-0.060663253,0.0032208809,0.047836788,-0.0726681,0.010652586,0.03989442,-0.008684111,-0.038137056,0.009129157,-0.011303038,-0.0039540664,0.017653508,-0.017242696,0.02736465,-0.0029413004,0.047517266,0.01427572,-0.019696157,0.022161031,-0.003988301,0.044961102,-0.04076169,-0.012438477,0.035307016,0.01955922,0.043819956,0.0056258435,-0.023758633,0.018178435,-0.002122529,0.00082875637,0.015747797,-0.023712987,-0.0066699907,-0.04738033,-0.0354896,-0.010024956,-0.029190483,-0.024740018,0.022994066,0.0042051184,-0.010875109,0.00053241535,0.013705148,0.025538819,-0.055642217,-0.028209098,-0.022161031,-0.000433635,-0.0033549655,-0.04541756,-0.04811066,-0.01743669,-0.020426491,-0.014777824,0.014264309,-0.009380209,0.01773339,-0.03083373,0.009220449,0.0014963261,0.022366436,-0.025812693,0.020221084,-0.023131004,-0.009397327,-0.028117806,-0.006333353,0.017573629,-0.020631896,-0.019524986,0.021818686,0.011845082,0.036950264,-0.008849577,-0.007600024,0.07175518,0.0027886725,0.010236068,0.014173017,0.025059538,0.009939371,0.038273994,-0.0037828947,0.023621695,0.01655801,0.013134575,-0.0096826125,0.023690164,0.03028598,0.01893159,0.03286497,0.023895571,0.007286209,0.006835457,-0.037498016,-0.04548603,-0.0087696975,-0.0031467066,-0.032454155,0.012598238,-0.013214456,0.011685322,0.024466142,-0.02027814,0.0531317,-0.013362804,0.028711202,0.020460725,0.011046281,-0.0011104764,0.019604865,-0.007183506,0.00352899,0.012370009,0.013397039,0.02097424,-0.011508444,-0.032956257,-0.027980868,0.011109044,0.028688379,-0.012210248,0.006909631,0.022275144,0.00441623,0.0017502307,0.0075886124,-0.023941217,0.025264943,0.0069039254,-0.06367587,-0.0061621815,-0.02736465,0.025036715,-0.048704058,-0.02145352,-0.013967611,-0.016900353,0.022446316,0.02034661,0.008478705,-0.010116247,-0.021944214,0.026520204,0.0017402457,0.0047357506,-0.02341629,-0.03895868,-0.02318806,0.014709355,0.0030325921,-0.008741168,0.019251112,0.0095000295,0.002270878,0.016112963,0.00042614623,0.016546598,0.02916766,0.049251806,-0.003959772,-0.055185758,-0.03564936,0.000056611476,-0.0020583398,0.02002709,-0.0053947615,0.009933664,0.0053319987,0.005574492,-0.04393407,-0.013488331,-0.026086569,-0.023849925,-0.0035004613,0.046878226,-0.007223446,0.011017752,0.029350242,-0.027182067,0.04683258,0.04897793,-0.03391482,-0.013237279,-0.03854787,-0.0014920468,-0.0038884506,-0.003757219,0.01656942,-0.0324998,-0.031244542,0.03325296,0.024009684,-0.037361078,0.023530403,-0.05317734,0.007782607,0.019148408,-0.005717135,-0.019867329,0.00049104885,-0.020780245,0.0058597783,0.007240563,0.007080803,-0.016888943,-0.043705843,0.010709643,-0.030080575,0.0043078214,-0.01340845,0.0068411627,-0.011913551,-0.050119076,0.011126161,-0.048749704,-0.009009337,0.046262007,-0.016694946,-0.005745664,0.0025304884,0.016888943,0.03414305,0.0066699907,-0.076776214,0.038388107,-0.029350242,-0.0065444647,-0.002055487,0.051123284,-0.02026673,0.018338196,0.032842144,0.0010883667,-0.0016418219,0.0051665325,0.011268804,-0.017961618,0.0011447108,-0.0013971891,0.006475996,-0.023986861,0.006253473,0.019490752,0.036265578,0.026520204,-0.029327419,-0.038045764,0.0031238836,-0.017139994,0.02114541,-0.013203044,0.022115385,0.011890728,-0.01750516,0.013967611,-0.018977236,0.0062135328,-0.009465795,-0.0034091698,0.012757998,-0.010572705,-0.0011204615,-0.013214456,0.010059191,-0.024762841,0.016295547,0.016854707,0.01040724,0.02238926,-0.0076399636,0.005349116,-0.028505795,-0.023005478,-0.035626538,0.03218028,0.04014547,-0.00946009,-0.025652934,-0.0024891219,-0.023393467,-0.03635687,-0.011799436,0.039643366,-0.019627688,0.008666994,0.038981505,0.0042022653,-0.0024991068,0.014287132,0.03809141,-0.033640947,0.011348684,0.039734658,0.040168293,0.003965478,0.031883582,-0.010823757,0.015085933,0.008016542,0.017402457,-0.012233071,0.017082937,-0.0063447645,-0.022594666,0.0025618698,-0.0009100629,0.009345975,0.017573629,-0.007183506,0.006299119,-0.02665714,-0.024625903,-0.032225925,0.010361594,-0.011982019,-0.026725609,-0.012666706,-0.033937644,-0.011993431,-0.024237914,0.027159244,0.03546678,-0.00033645937,0.016067317,0.003919832,0.030856553,-0.0040938566,0.0030696793,0.00009200479,-0.014161606,0.009015043,-0.014081726,0.0031524124,0.0027886725,-0.044504642,0.0061564757,-0.01656942,0.010395829,0.012780821,0.057833213,0.0095228525,0.01719705,-0.03176947,0.06915337,-0.022480551,-0.00063939765,-0.0007809709,0.024374852,0.00094786333,0.0022837159,-0.0063847047,0.0018529338,-0.007617141,-0.012438477,-0.0003976176,-0.00526353,-0.05787886,-0.006538759,0.03412023,-0.022092562,-0.0016988792,-0.021259526,-0.013260102,0.007491615,-0.010869403,-0.026406089,-0.025584465,-0.023986861,0.023712987,0.03587759,-0.013522564,0.04400254,-0.023484759,0.011810848,0.011109044,-0.003426287,-0.009226155,0.027387474,-0.017151404,-0.001982739,-0.00076884625,0.023667341,-0.050621178,-0.047106452,-0.033298604,-0.024968246,-0.0007135721,0.020472135,-0.013670914,0.0091120405,-0.0019385195,-0.025082361,0.022902774,0.03215746,-0.030947845,-0.057513695,-0.0012588253,-0.011017752,0.057422403,0.023598872,0.03122172,-0.010150482,0.018965825,-0.0074630864,-0.013123164,0.039095618,0.019901564,0.026451735,0.011845082,-0.0260181,0.04489263,0.011502739,-0.008341768,0.0022095414,0.023484759,-0.0017316871,0.0056229904,-0.005614432,0.034416925,-0.0078111356,0.0035831945,0.044048186,-0.021191057,-0.019000059,0.026908193,0.02206974,0.008701229,-0.003988301,0.023210883,0.0091120405,-0.016980233,0.013123164,0.004701516,-0.021134,0.0008815343,-0.00112902,0.014184428,0.034257166,-0.017448103,0.0091805095,-0.048840992,0.0068982197,-0.045143686,0.004906922,0.026451735,-0.031107605,-0.010789523,-0.005038154,0.002837171,-0.0008715493,0.025424704,0.03325296,0.008227654,0.04897793,0.003303614,0.008781109,0.017413868,-0.04124097,0.005799868,-0.019992854,0.0038542163,0.04528062,-0.005340557,0.025607288,-0.013031873,0.0048584235,-0.02201268,-0.0045731375,-0.008187713,-0.006293413,-0.0016732034,0.0077483724,-0.00433635,-0.005825544,-0.009306035,-0.034804914,-0.016295547,-0.025287766,0.010652586,0.00074531016,-0.047745496,0.009026455,-0.016124375,-0.03391482,0.05833532,0.036402516,-0.0076456694,-0.017813269,-0.023073945,0.0005998142,-0.0038855977,0.037749067,0.02287995,-0.012073311,0.0035889002,0.0027202037,0.0121760145,0.0073775006,-0.011200336,-0.043956894,0.007035157,-0.002413521,0.005326293,-0.009403032,0.009517147,0.02594963,-0.0018614923,-0.027729817,-0.011342978,-0.013545387,-0.011708145,0.02018685,0.011342978,-0.020540604,-0.025493173,-0.033709414,-0.026223505,-0.005657225,-0.010721055,0.003446257,0.014572418,0.04217671,0.024466142,0.028916607,0.0044247885,0.003260821,0.0327965,0.027615702,0.0063675875,-0.016820474,0.003956919,-0.013705148,0.00429641,-0.021065531,0.025173653,0.0055202874,0.0050581237,-0.027980868,-0.0011817979,-0.0067213424,0.03517008,-0.019776037,0.04313527,-0.0046530175,0.020529194,-0.037589308,-0.0067441654,0.014173017,0.052355718,0.0125183575,-0.03462233,0.025926808,0.016386839,0.0125640035,-0.0618044,-0.004855571,-0.029236127,-0.0077312556,0.0031010609,-0.0060537728,0.0036231345,0.0013658076,-0.0032151751,0.009403032,0.07481345,-0.01609014,-0.0015762062,-0.0019513575,0.0073318547,0.016820474,-0.008826754,-0.0047956607,-0.023279352,0.0033150255,-0.010863698,0.020494958,0.011400036,-0.0116967335,0.035375487,0.02224091,-0.019627688,0.011223158,0.02144211,-0.008878106,0.016660713,0.011114749,-0.010515649,-0.040830158,-0.014503949,-0.039095618,0.060435023,0.0039055678,-0.0056172847,0.016500952,0.025264943,0.0075429664,-0.013237279,0.007913838,-0.01726552,-0.011514151,0.005968187,-0.010298831,0.004869835,-0.03690462,0.016820474,-0.01060694,-0.016055906,-0.0026988073,-0.007063686,0.006852574,-0.029578472,-0.058015797,-0.0031952052,-0.027273359,0.015177225,0.02018685,0.00352899,-0.03035445,-0.019502163,-0.0067955167,0.00693816,0.022366436,-0.010047779,0.012929169,0.0005769913,0.027638525,-0.0011725262,-0.006852574,0.0173454,0.040807337,-0.007183506,-0.01575921,0.01230154,0.019285345,0.011730968,-0.0041594724,-0.00006401109,0.006630051,-0.021008475,0.005899718,0.006749871,-0.021624692,0.0006147917,0.0365851,0.002210968,-0.009665496,0.007120743,0.034188695,-0.061074063,0.04486981,-0.017060114,-0.009140569,-0.011890728,-0.013465508,0.041377906,-0.0128835235,-0.012004842,-0.016375426,0.037794713,-0.002724483,-0.022811484,0.014173017,-0.020152615,-0.014230074,0.02350758,0.044276416,-0.019422283,0.029304596,0.02373581,0.012004842,-0.0026631465,0.010983517,0.009848079,-0.019365225,-0.027182067,-0.022959832,-0.012997638,-0.023872748,-0.016067317,-0.018988648,0.019125585,-0.065501705,-0.013830674,-0.0017887444,0.023245119,0.012198837,-0.0039683306,-0.032317217,-0.024215091,0.0017117171,0.0003316452,-0.0125640035,0.033846352,0.016934587,-0.012803644,0.007594318,0.02097424,-0.012746586,0.0016475277,0.01892018,-0.0063219415,0.0016760563,-0.0125183575,0.012187426,0.008918046,-0.0005399041,-0.039255377,0.012917758,0.01490335,0.03950643,0.008855283,-0.024260737,-0.00046073718,-0.038844567,-0.024374852,-0.013545387,-0.036151465,-0.009397327,0.024466142,-0.013682325,0.050027784,0.007189212,0.00831324,-0.020072736,-0.024146622,-0.008204831,-0.013020461,-0.003988301,0.016352603,0.015827676,-0.0070294514,-0.01419584,0.021750217,0.005471789,0.009808139,-0.0050952113,0.021156823,-0.0036145758,-0.0011111897,-0.015724974,-0.021887155,-0.015006053,-0.027387474,-0.028802492,-0.007930956,-0.03510161,-0.006561582,0.0027558645,-0.0027030865,0.0070865084,-0.012837878,-0.01639825,-0.027889578,-0.0014963261,0.038137056,-0.00087226246,0.0088838115,-0.017082937,-0.023245119,-0.018555013,0.02713642,0.029030722,0.01718564,0.021236703,-0.037726246,0.013203044,-0.021316582,-0.0021838658,0.026679963,0.00961985,-0.011000635,0.013499742,0.005651519,0.027866755,-0.017961618,0.035307016,0.017208463,0.025128007,0.010264597,-0.014104549,0.02357605,0.032454155,-0.022252321,0.02658867,0.01623849,0.009756788,-0.011160395,-0.043705843,-0.016124375,-0.008946574,0.040716045,-0.00033093197,0.03633405,0.042770103,0.011217453,0.0033549655,-0.0014456877,-0.049662616,-0.00705798,-0.023119591,-0.003075385,-0.0120618995,-0.021567635,-0.008256182,0.035124436,0.011959197,-0.0022837159,0.036219932,-0.007617141,0.041606136,-0.01798444,-0.0050495653,-0.03352683,-0.0005149415,0.0038513634,-0.002704513,0.023530403,-0.013842085,-0.016683536,0.011120455,-0.0130889295,-0.018680539,-0.0066528735,-0.032134634,0.01695741,-0.012826467,-0.00863276,-0.019855918,-0.0059795985,-0.025721401,-0.0077711954,0.00215819,0.0071321544,-0.019000059,-0.00780543,0.021601869,-0.030012107,-0.0027059393,-0.018806065,0.011365801,0.020472135,0.008330356,0.040647574,0.0007203476,-0.0068240454,-0.024260737,0.015211459,0.01946793,0.000098067125,0.002887096,-0.026063746,-0.029144837,0.0047614262,-0.005534552,0.00032112526,-0.006989511,-0.028163452,-0.01892018,0.029920815,0.0023393466,-0.009026455,0.02736465,0.01743669,-0.012769409,0.00012008765,-0.0314043,0.021419287,-0.016786238,-0.012666706,-0.03966619,0.008781109,-0.02973823,-0.004148061,0.03706438,-0.00930033,0.022606077,-0.0093859155,0.0096826125,0.022663133,0.016204255,0.03594606,-0.0012859275,0.007976602,0.005597315,-0.01127451,0.018497955,-0.01711717,-0.018714773,0.0041366494,0.011662499,0.009802433,0.0052835,0.009237566,0.015873322,-0.02201268,-0.010475708,-0.044846985,-0.0094772065,0.0024220797,0.014321366,-0.015530979,-0.0069495714,0.020084146,-0.013066107,-0.019148408,-0.0050238897,0.0005859065,-0.016900353,-0.016204255,0.01885171,0.002847156,0.009174803,0.023758633,-0.055779155,0.008147773,0.01570215,-0.011074809,-0.016489541,0.034508217,-0.008199125,0.017082937,-0.00445617,0.06445185,-0.021715984,-0.008940869,-0.027182067,0.007816841,0.029190483,-0.0058112796,0.025059538,0.018486544,0.011536973,0.0034120227,0.04375149,0.0014250044,-0.028574264,-0.027273359,0.0023678753,-0.0022123943,-0.011519856,-0.0057485164,-0.0034006112,-0.00070501346,-0.028414503,-0.011890728,0.014960407,0.0052835,0.000118037155,0.012586826,-0.019627688,-0.006960983,0.015976027,-0.006812634]},{"id":"interface-GatewayGuildScheduledEventUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventUpdateDispatchData\nDescription: GUILD_SCHEDULED_EVENT_UPDATE — a scheduled event was updated.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventUpdateDispatchData"},"embedding":[0.001343797,0.005007337,-0.020633878,0.0021899971,0.005976867,0.039032135,-0.035815578,-0.0064274133,0.010778892,-0.013151389,0.0137217,0.0038866745,-0.0047649546,0.0014585722,0.035792764,0.0055006566,-0.05201243,0.036522765,-0.033032455,0.03688776,-0.017919194,0.0018991381,0.048088685,0.042248692,-0.02429528,0.019527474,0.0037298386,0.0076136617,0.021090128,0.020611066,0.02383903,-0.014611387,0.04831681,-0.02698715,-0.03214277,0.040629007,0.000098378776,0.0070262407,-0.038210887,-0.03816526,-0.014474512,-0.037458073,0.01787357,-0.0075452244,-0.055936173,0.017212007,-0.019105444,-0.008531864,0.004924642,0.029542148,-0.024226842,-0.003553042,0.0026704846,0.015649354,0.038302135,-0.0044028065,0.0066897566,0.011714203,-0.0035416358,-0.0011463265,-0.006803819,-0.003721284,0.018979974,-0.0073627243,0.01566076,-0.011235141,-0.032393705,0.038667135,0.062049914,0.0074083493,0.0052582743,0.033214957,0.008697254,-0.0059198355,0.02290372,-0.00879991,-0.01950466,-0.019938098,0.028994648,0.0060852263,0.009535613,0.020919034,-0.113879845,-0.043754317,0.014303418,-0.01796482,-0.040492132,-0.028538398,0.027854025,0.047358684,-0.023257311,0.037663385,-0.020873409,0.013402326,-0.015831854,-0.07769927,0.04462119,-0.036910575,-0.034629326,0.068163656,0.06401179,-0.06109179,-0.060453042,-0.07076428,-0.008765691,-0.017542789,-0.0276259,0.016162634,-0.03426433,-0.035884015,-0.05516055,-0.0013452228,-0.020257473,0.0037640573,0.012797795,0.0035958155,0.042750567,-0.011292173,0.044096503,-0.00660421,-0.06579116,0.011942328,-0.0013651837,-0.014942167,-0.018854506,-0.004240268,-0.01063061,-0.030796833,-0.05757867,-0.0017109351,-0.00783038,-0.018158725,0.0042744866,-0.010510845,-0.023029188,-0.018683413,-0.013801544,0.008394988,-0.040309634,-0.05219493,-0.02138669,0.0019433373,0.0064331163,0.06670366,-0.022983562,0.019516068,-0.0008126942,-0.006661241,0.011919515,0.04129057,-0.07400365,0.041792445,0.0091478005,-0.002113005,0.028196212,-0.0052240556,-0.040674634,-0.03138996,-0.03401339,0.00898241,0.00056496507,-0.04103963,-0.0074254586,0.029496523,-0.037366826,-0.028812148,0.0014856621,0.0018848802,-0.0733649,0.006216398,0.045579314,-0.038347762,-0.03592964,0.029656209,0.0017879272,0.025732465,-0.04786056,-0.008201082,-0.047176186,-0.000988778,0.037914325,-0.00922194,-0.043936815,-0.027192464,-0.0005453606,0.009336003,-0.01686982,0.02147794,-0.017257633,-0.0364087,-0.016847009,0.011862484,0.03501714,0.059540544,-0.0064559286,-0.033579953,0.0179306,0.0067467876,0.022036845,0.0012097737,-0.0014742558,-0.06109179,0.023542468,-0.00790452,0.020428566,-0.014314825,0.022310594,-0.0032450738,0.019824035,0.01187389,0.03576995,0.0014913651,-0.013927013,0.0012311605,-0.034857452,0.013333888,-0.022219345,0.005814328,-0.00029602743,-0.018968567,0.014098106,0.009353112,0.009775143,0.0010115905,0.025367465,0.0078018643,0.0003592964,0.022858094,-0.041997757,0.008355067,-0.025755277,-0.025299028,0.009415846,-0.041359007,-0.017485758,-0.01063061,0.015512479,-0.0029741756,0.015250135,0.029154336,-0.010396783,-0.02919996,-0.008834128,0.010003268,0.005272532,0.00056567794,0.02374778,-0.010094518,-0.008440614,0.07140303,0.01229592,0.021945596,-0.019105444,-0.01004319,-0.022002626,-0.018786069,0.019402005,0.0034960108,0.037663385,-0.0045054625,0.045100253,0.0024765786,-0.05137368,0.03401339,-0.04343494,-0.011885297,0.04407369,0.022162315,-0.026759027,-0.005589055,-0.0023924578,-0.008503348,0.027032776,-0.008594598,0.011782641,0.024956841,0.005446477,0.06423991,-0.00607382,-0.052149303,-0.022755438,-0.02056544,0.020804971,0.017394507,0.0029884335,0.055936173,0.019618724,0.008839832,0.038553074,0.0033733938,-0.047997434,-0.014508731,0.01838685,-0.022219345,-0.0038866745,0.042476818,0.021466533,-0.0035615969,0.016048571,0.010824516,0.020405754,-0.039830573,-0.05055243,-0.01161725,0.0046423376,0.00096739124,0.04767806,-0.028606836,-0.03123027,0.02111294,0.015980134,-0.025549965,-0.030135272,-0.020097785,0.006803819,-0.017097946,0.02402153,0.07035366,0.019972317,-0.015558104,0.02735215,0.020987472,-0.020588253,-0.019675754,-0.016470602,-0.07231553,-0.024432154,-0.021626221,-0.01233014,0.06953241,0.027466213,-0.038370572,0.0058571016,0.045237128,0.03800557,0.06588241,-0.027945274,0.045853063,0.05589055,-0.022846688,0.0011769808,-0.042750567,-0.022687001,-0.05210368,0.011565922,-0.049046807,-0.03565589,0.03465214,-0.03132152,0.04619525,-0.0017152125,0.037937135,0.010642017,-0.03380808,-0.047997434,-0.0750074,0.06725116,0.039830573,-0.027032776,0.03481183,-0.0044769472,0.030751208,-0.0002680465,0.031207457,0.002164333,0.010898657,-0.02335997,0.039305884,-0.0137559185,-0.023268718,0.0019248021,-0.024454966,-0.038781196,-0.012569671,-0.02826465,0.00076778216,-0.017919194,0.016345134,-0.025253404,-0.0011848226,-0.022059659,0.033694018,0.0017052321,-0.02296075,0.029268397,0.020827785,-0.032690268,0.030523084,-0.037640575,-0.035245266,0.030545896,-0.0028230431,-0.03205152,-0.027032776,-0.04407369,-0.027101213,0.04886431,0.016196853,0.022744032,-0.010202877,0.050369933,0.013174201,0.0024780044,0.00083194225,-0.028812148,0.05552555,-0.0012660921,0.025504341,0.037640575,0.021135753,-0.02317747,0.02008638,0.02383903,-0.030112458,0.018318413,-0.059631795,-0.008936785,-0.013242639,-0.023907468,0.047814935,0.034401204,-0.0056204223,0.020519815,0.03576995,0.01686982,-0.029633397,0.0008347938,0.015558104,-0.008959597,-0.058719296,-0.0565293,0.03399058,0.03665964,-0.016185448,0.07587427,-0.011976547,0.016561853,-0.049913682,0.009050847,0.027146839,-0.04249963,-0.00067938387,0.0034076127,0.037549324,0.000310107,0.03649995,0.043184005,-0.0008048524,0.05748742,0.0015270096,-0.008161161,0.024614654,-0.022493094,0.017531382,-0.05301618,-0.033488706,-0.06309929,0.0008219618,0.005782961,-0.033853706,-0.04840806,0.0066726473,-0.03417308,0.04368588,-0.00986069,0.017314663,0.01233014,0.019949505,-0.016596071,0.019516068,-0.017029509,-0.00031634478,0.023131844,0.009410144,-0.0067239753,0.029656209,-0.03086527,-0.009301784,0.03574714,0.051236805,-0.03150402,0.018170131,0.020074973,-0.0036385888,0.06136554,0.034834642,0.008606004,-0.02096466,0.017383102,0.0010522251,-0.06925865,0.021147158,0.024044342,-0.01029983,-0.0037184325,-0.013938419,-0.025914965,-0.057168048,0.012307327,0.0052126492,-0.048909932,-0.038461823,0.013562012,-0.0010807407,0.035792764,0.015398417,-0.036636826,-0.0043315175,0.006655538,-0.04352619,0.010488032,0.009261862,0.018580755,-0.03314652,-0.010932876,0.020280285,-0.013333888,-0.011531703,-0.0034817532,0.04932056,-0.015797636,0.014907949,0.021010283,-0.010408189,-0.011531703,0.0058456953,0.02862965,-0.07829239,-0.011126782,-0.028789336,0.005201243,-0.027694337,0.014234981,0.050780557,-0.0042089005,0.011816859,0.025253404,-0.017656852,0.032872766,0.015101855,-0.009849284,0.029177148,0.011246547,0.017542789,0.0040349555,0.0014742558,-0.015489667,0.032758705,-0.0000020300647,0.014155137,0.014588574,-0.0057430393,-0.006364679,0.015409823,-0.003920893,0.0037155808,0.029268397,-0.008400692,0.0066270223,-0.004109096,0.027055588,-0.031846207,0.013869981,-0.031093396,-0.03326058,0.0001773313,0.007237256,0.008668738,-0.007049053,-0.0033648391,-0.016071385,0.038575884,0.01229592,-0.014200762,0.01668732,0.023097625,-0.00922194,0.028903399,0.035427764,-0.00012217146,0.010584986,-0.09590362,0.020097785,0.04804306,-0.07760802,0.026759027,0.040788695,-0.011748422,-0.02771715,0.03602089,-0.023519656,0.01487373,0.0098835025,0.008845535,0.029793086,-0.02929121,0.014383262,0.010003268,-0.03410464,0.033283394,-0.020896222,0.036636826,-0.02956496,-0.014565761,0.014497324,0.04113088,0.01778232,0.024637466,-0.02698715,0.008440614,-0.010790298,0.0074140523,0.018398257,-0.026439652,-0.014622793,-0.02874371,-0.025253404,-0.00047264586,-0.02107872,-0.020702315,0.024158405,0.018124506,-0.017154977,0.008531864,0.011052641,0.0364087,-0.025162153,-0.010955689,-0.021922782,-0.027945274,0.006130851,-0.059312418,-0.058034923,-0.024911216,-0.04703931,-0.012558265,0.03068277,-0.033716828,0.03510839,-0.014919355,0.017942008,0.014326231,0.0033962063,-0.008309442,0.046149626,-0.02947371,0.02429528,-0.026485277,-0.0041832365,0.02493403,-0.03038621,-0.055844925,0.007938739,0.018672006,0.042066194,-0.010048892,0.001111395,0.05607305,0.0014699785,-0.0026148793,-0.011782641,0.0069235843,0.0069749122,0.035998076,-0.00931319,0.030979333,-0.0023012077,0.0038068308,0.0028743711,0.04295588,0.026622152,0.02429528,0.04129057,0.028606836,0.027397776,0.023154655,-0.020474192,-0.043115567,-0.016938258,0.0281734,-0.018957162,0.029131522,-0.016002947,-0.004114799,0.01759982,-0.021090128,0.047906186,-0.015866073,0.0364087,0.009957643,-0.007876005,0.009381628,0.025435902,-0.0077562393,0.0068722563,-0.013767325,0.043549005,-0.0059882733,-0.018352631,-0.016561853,-0.009142097,0.041381817,0.025093716,-0.011691391,0.008811316,0.0281734,0.0024951138,-0.011029829,0.0050130403,-0.008988113,0.0376862,0.005147063,-0.05210368,0.013504982,-0.008309442,0.013619044,-0.039739322,0.00049652765,0.012033577,0.0068437406,0.037914325,0.029952772,0.003935151,-0.00784749,-0.02511653,-0.004291596,-0.0032621832,0.0113549065,-0.038302135,-0.035085578,-0.020280285,0.025276216,-0.0033819485,-0.0057145236,0.013014514,-0.005780109,-0.005640383,0.022150908,-0.015124667,0.027420588,0.021409502,0.036477137,-0.017577007,-0.025664028,0.00483054,-0.0059198355,0.011999358,0.010699048,-0.037663385,0.022116689,-0.005931242,0.0054778443,-0.025983403,-0.015580917,-0.00395226,-0.023451218,0.009307487,0.05821742,0.012911857,0.013060139,0.02523059,-0.021238409,0.047814935,0.042819005,-0.037024636,-0.011366312,-0.029793086,-0.007345615,-0.013060139,-0.010408189,0.00094671745,-0.026485277,-0.024865592,0.018934349,0.017075133,-0.019151067,0.017645445,-0.07021678,0.016413571,-0.0026305628,-0.019059818,-0.026576526,0.0005631828,-0.016653102,0.0070661623,0.015466854,0.0190256,-0.029222773,-0.04183807,0.0020402903,-0.0049902275,0.001415086,-0.015615135,0.022858094,-0.016835602,-0.042431194,0.0062905382,-0.04546525,0.0048419465,0.052970555,-0.021637628,0.01020858,-0.037184324,-0.00055926194,0.03186902,0.019516068,-0.06583679,0.023428407,-0.039305884,-0.025435902,-0.0114974845,0.038507447,-0.00051827077,0.010887251,0.017474351,0.0111096725,-0.0031823395,-0.0041775336,0.022287782,-0.026530901,0.015615135,-0.0067753033,-0.009256159,-0.018786069,-0.012695139,0.022093877,0.014508731,0.028971836,-0.043640252,-0.004924642,-0.019185286,0.000016897713,0.017337477,-0.009655378,0.06264304,0.0044512833,-0.015535291,0.014542949,-0.0041889395,-0.01048233,0.00035644483,0.011748422,0.011012719,-0.0132654505,0.014679824,-0.0065300693,0.0122845145,-0.0065300693,0.014508731,0.013892794,0.0054037035,0.011223734,-0.006666944,-0.009797956,-0.014075293,-0.009227644,-0.028652461,0.03576995,0.033214957,-0.008828426,-0.017428726,0.016219666,-0.004859056,-0.023816219,-0.0000013923626,0.034789015,-0.011115376,-0.0021472236,0.040355258,-0.017485758,-0.019675754,-0.008292332,0.04213463,-0.044028066,0.013733107,0.025162153,0.042819005,0.03113902,0.03278152,0.025207778,0.02317747,0.016664509,0.0012005062,0.012467015,0.0064274133,0.010448111,-0.018911537,0.013333888,-0.009986158,0.0003124239,0.019846847,-0.0012603889,0.0054493286,-0.00013892437,-0.018398257,-0.055479925,0.01302592,-0.011337797,-0.028812148,0.012489826,-0.03113902,-0.037480887,-0.013333888,0.01196514,0.019550286,0.020668097,0.008406395,0.0062106946,0.058673672,0.010824516,0.00040135687,-0.018455287,-0.0045254235,0.014999199,-0.017246226,0.03253058,0.007944442,-0.013048733,0.0019461887,-0.013619044,-0.0027289416,0.0015498222,0.057989296,0.019128256,0.014885136,-0.032872766,0.035450578,0.006803819,-0.0019248021,-0.013550607,0.0034903078,-0.024979653,-0.010967094,-0.0052810865,-0.01759982,-0.0072087403,-0.016824195,0.009290378,-0.015592323,-0.0451915,-0.007864599,0.06346429,0.01004319,-0.023382781,-0.03253058,0.0063019446,0.022322001,0.01229592,-0.063601166,-0.023565281,-0.004491205,0.018774662,0.018774662,-0.033876516,0.042385567,-0.025641216,0.010436704,0.0137217,0.0027831213,-0.022048252,0.03225683,-0.03816526,-0.017029509,0.0065357722,0.006125148,-0.056301173,-0.039465573,-0.022059659,-0.017440133,-0.0071231937,0.0016596072,-0.0032336675,0.01681279,0.02023466,-0.03725276,0.036842138,0.029314023,-0.027146839,-0.064878665,0.009450065,-0.020439973,0.06893928,0.008520457,0.03891807,-0.016641697,0.0090052225,-0.000018111852,-0.028857773,0.05662055,0.020109192,0.026211526,-0.0020759348,-0.031253085,0.061274294,0.018888725,0.003838198,-0.017280445,0.020348722,-0.007100381,-0.0009552721,-0.004166127,0.0018777513,0.03050027,-0.012866233,0.011679985,-0.0031737848,-0.022584345,0.036750887,0.00889116,0.014805293,0.0029342538,-0.0047392906,-0.0077904584,-0.037754636,-0.0134593565,0.0039180415,-0.040309634,0.015603729,-0.004003588,0.0061536636,0.03417308,-0.0113549065,0.023097625,-0.05438493,0.014269199,-0.047267437,-0.00018134131,0.022470282,-0.015877478,-0.012250296,0.007824677,0.0026291371,-0.0018064624,0.033762455,0.026325589,0.015706385,0.051510554,0.019869661,0.010733266,0.00686085,-0.04619525,0.0038838228,0.010733266,0.009336003,0.048453685,-0.0076706926,0.021649033,-0.0052810865,0.006467335,-0.0044797985,-0.0005396575,-0.010237096,-0.0016510525,-0.021512158,0.02929121,-0.019618724,-0.008298036,-0.013892794,-0.01705232,-0.018968567,-0.029679023,-0.00773913,-0.008845535,-0.031960268,0.008132645,0.010653423,-0.011423344,0.026485277,0.034720577,0.01575201,-0.020462785,-0.011383422,0.02166044,-0.024386529,0.054156803,0.04019557,0.016253885,-0.013048733,0.013048733,-0.010459517,0.0035074172,-0.009415846,-0.03964807,0.011480375,0.004200346,-0.008588894,0.009991862,0.015945915,0.032165583,0.00045339784,-0.038598698,-0.0027603088,0.002649098,-0.017668257,0.02605184,0.010602095,-0.018421069,-0.021466533,-0.034834642,-0.01644779,-0.0060167885,-0.012318733,0.0124784205,0.00801288,0.00975233,0.01875185,0.0006661954,-0.0077562393,-0.033762455,0.019561693,0.021580596,0.0068266313,-0.0071802246,0.010602095,-0.019219505,0.025253404,-0.015512479,0.039967448,0.00863452,-0.004682259,-0.027671525,-0.009062253,-0.008007176,0.016493415,-0.019801224,0.028880585,-0.012763577,0.035450578,-0.016550446,0.004243119,0.0073228027,0.010607799,0.009946236,-0.00325648,0.039191823,0.026120277,0.007876005,-0.05589055,-0.0030597225,-0.034720577,-0.004303002,-0.010431002,-0.0148281045,0.008999519,0.010955689,-0.008606004,0.0065528816,0.07633052,-0.0048447982,0.0065300693,0.0012504085,-0.0018563647,0.017040914,-0.0037754637,-0.019094037,-0.030066835,-0.02126122,0.009923424,0.02459184,0.0012119124,-0.0035188233,0.031435583,-0.0039636665,-0.013356701,0.009438659,0.013151389,-0.021329658,0.02111294,0.019424817,-0.0052040946,-0.024135591,-0.016253885,-0.035975263,0.043343693,-0.021877158,0.016345134,0.03095652,0.03825651,-0.0012995979,0.007294287,0.015398417,-0.024181217,-0.0148281045,0.0034190188,0.00080912973,0.007630771,-0.02475153,0.036157764,-0.007579443,-0.018934349,-0.010887251,-0.027055588,0.008856941,0.011200923,-0.044393066,-0.019333567,-0.024386529,0.005831437,-0.013938419,0.029450897,-0.020542629,0.002120134,-0.010613501,0.0029941367,0.03241652,-0.022436064,-0.007636474,0.0032792925,0.021523565,-0.011651468,-0.017634038,0.014793886,0.023975905,0.009107878,-0.006803819,-0.00200322,0.020394348,0.014588574,-0.004057768,-0.0058456953,0.009900612,0.0076193647,0.0015712088,0.004077729,-0.021706065,-0.009957643,0.030728396,0.014987792,0.004690814,-0.004593861,0.031732146,-0.06378366,0.049639933,-0.00049510185,0.00094814325,-0.016139822,0.0005161321,0.041495882,-0.008235301,-0.0062905382,-0.009912018,0.031024957,0.000019504216,-0.018706225,0.011999358,-0.017896382,-0.024683092,0.008303739,0.028355898,-0.007876005,0.018500913,0.049092434,0.0044683926,0.027785588,-0.0057430393,0.022892313,-0.03250777,-0.023348562,-0.02411278,-0.006364679,-0.03638589,-0.015603729,-0.023724968,0.005805773,-0.06647553,-0.0022398992,0.008052802,-0.0021486494,0.013858575,-0.023223093,-0.0071174903,-0.034150265,-0.00532386,-0.0028016563,-0.028241837,0.021911377,0.003766909,-0.022732625,0.0061593666,0.022322001,-0.022766843,0.033762455,0.019550286,-0.008908269,0.0067239753,-0.0041262056,0.009826471,0.011942328,0.005018743,-0.02059966,0.008098426,0.0109157665,0.03449245,-0.007915927,-0.024340905,-0.00048298275,-0.038347762,0.0015398416,-0.014953573,-0.028994648,-0.026850276,0.025937777,-0.008235301,0.027899649,-0.02102169,0.023086218,0.0015298612,-0.03800557,-0.017280445,-0.026964338,-0.0067924126,0.015295761,0.0012318733,0.001072186,-0.022892313,0.019892473,0.006569991,0.029359648,-0.015900292,0.0144402925,-0.0036785107,0.008024286,-0.024067154,-0.045305565,-0.0042858925,-0.02229919,-0.013527794,-0.015820447,-0.039100572,-0.014132325,0.014668418,0.003547339,-0.0062848353,0.0068209283,-0.019607317,-0.012079203,-0.023348562,0.034857452,-0.014018263,0.002365368,-0.02393028,-0.023724968,-0.0375037,0.010248502,0.013128576,-0.005172727,0.021158565,-0.04256807,0.013710294,-0.019767005,-0.0051869852,0.02641684,0.0060567106,-0.009643971,0.015193105,0.015786229,0.02771715,-0.013345295,0.025549965,0.0037326904,0.0139042,0.012364359,-0.001046522,0.013641857,0.043822754,0.0009916296,0.026918713,0.015101855,-0.0005221917,0.0011591585,-0.05182993,-0.017383102,0.016037166,0.04432463,-0.00051684503,0.015729198,0.025458716,0.012923264,-0.01072186,-0.0033619876,-0.036522765,-0.014041075,-0.012740764,-0.008206786,0.018717632,-0.010242798,-0.0015084745,0.006438819,0.019402005,-0.020063566,0.022937939,0.0010714731,0.06328179,-0.007579443,0.011195219,-0.015227323,-0.0025065201,-0.0031224566,0.004297299,-0.009484284,-0.017577007,-0.054019928,0.02493403,0.017417321,-0.009923424,-0.017314663,-0.010527954,0.053609304,-0.013961231,0.0050101886,-0.019698568,0.006227804,-0.0041518696,-0.0024238247,-0.009712408,-0.0051869852,-0.0067924126,-0.001305301,0.021044502,-0.030910896,0.00027250207,-0.015101855,0.016983883,0.019162474,-0.010710455,0.052286178,0.019595912,-0.022709813,-0.018466694,0.032462142,-0.00391519,0.016231071,-0.023029188,-0.034401204,-0.0021743134,-0.0045710485,-0.0035901123,-0.0043771425,0.011377719,-0.028219024,-0.04176963,0.01205639,0.018364038,-0.0017095094,0.028766524,0.0034617921,-0.005654641,-0.022607157,-0.016071385,0.0351312,-0.014565761,-0.0061365543,-0.01832982,0.019801224,-0.0040092915,-0.020497004,0.025025278,0.007100381,0.030842459,0.0181131,0.010681938,0.010237096,0.016755758,0.016858414,0.0073570213,0.014976386,0.02107872,0.00492179,0.007334209,-0.0073170993,-0.034150265,0.007533818,0.019846847,0.023907468,0.010653423,0.011383422,0.0064331163,-0.019675754,-0.002526481,-0.02586934,-0.015968729,0.016094197,0.009062253,-0.025207778,0.018865911,0.025732465,-0.03501714,-0.015957322,0.0025435903,-0.001602576,-0.026622152,-0.013356701,0.025504341,0.0020203292,-0.014942167,0.03665964,-0.04103963,0.011930921,0.022698406,0.00041205023,-0.0030226521,0.035268076,-0.005078626,0.01862638,0.010459517,0.035906825,-0.042545255,-0.018717632,-0.026713401,-0.008554676,0.02429528,0.002596344,0.05424805,0.005569094,-0.0021629073,0.031640895,0.03278152,0.0034789015,-0.008366473,-0.025070904,-0.001699529,0.010681938,-0.013299669,-0.0041347602,-0.015706385,-0.00030244343,-0.026895901,-0.017018102,0.0023482586,-0.028401524,0.03141277,0.012615295,-0.004879017,-0.016858414,0.0035644483,0.0011313559]},{"id":"interface-GatewayGuildStickersUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildStickersUpdateDispatchData\nDescription: GUILD_STICKERS_UPDATE — sticker list for a guild changed.\nProperties: guild_id: string, stickers: APISticker[]","meta":{"url":"/docs/typedefs/GatewayGuildStickersUpdateDispatchData"},"embedding":[0.012837845,-0.03303168,-0.011309251,-0.010612306,-0.040364247,0.013950614,-0.039216336,0.008673744,-0.008656175,-0.030220473,0.02466834,-0.033008255,-0.015309365,-0.030220473,0.023016756,-0.0023280308,-0.025136875,0.010612306,-0.023977252,0.026776746,0.011438098,-0.026940733,0.043081746,0.032703705,-0.0066180495,0.03345336,0.0017760386,0.022747349,0.009809941,-0.0041758134,-0.008843589,-0.022454515,0.087569095,-0.0077776723,-0.056645818,0.033078533,-0.0060792346,0.014454288,0.020006422,-0.051304527,-0.005203661,0.016035592,0.012287317,-0.0030513308,-0.032937974,0.065735385,-0.023403298,0.030712435,0.00407625,0.018905366,-0.04020026,-0.012673858,-0.036147434,0.03476526,0.052475862,-0.0006936506,-0.014477716,0.008913868,-0.01355236,0.032118037,-0.00085214706,-0.010126201,0.011959342,-0.053225517,0.035350926,0.03755304,-0.046244353,0.050601725,0.03439043,0.029213125,0.03354707,0.0042548785,-0.018823372,-0.00017698157,-0.021505732,-0.015461638,-0.03668625,-0.00028642832,0.053225517,0.0045272144,-0.03460127,0.02094349,-0.045447845,-0.06821862,0.030478168,-0.037787307,-0.018741379,-0.043995388,0.0161293,0.013716347,-0.035772607,-0.0036340705,-0.06578224,-0.002030804,-0.002597438,-0.052522715,0.028908577,0.0024027033,-0.043878254,0.02567569,0.06779694,-0.071732625,-0.0855544,-0.043737695,-0.006167085,0.009276982,-0.013423513,0.049664654,-0.016960949,-0.024949461,-0.07177948,0.021786854,-0.02337987,-0.004035253,0.0032446012,-0.018846799,-0.0027658176,-0.013353232,0.05383461,-0.03759989,-0.05641155,-0.016738394,0.0404111,-0.023602424,-0.021412026,0.029166272,-0.025769396,-0.045846097,-0.05650526,-0.017640322,-0.01208819,-0.040012844,0.025605408,0.013189246,-0.038771227,-0.03825584,-0.008345771,-0.024785474,-0.026355064,-0.02567569,0.014337155,-0.050367456,-0.008878728,0.010290189,-0.03977858,-0.006588766,-0.025839677,0.014653415,-0.0053120097,0.02417638,-0.05383461,0.070186466,0.005358863,-0.004000113,-0.015531918,0.010951993,0.001513952,-0.030501595,-0.022032835,-0.00935312,-0.034249872,-0.030407887,0.019830722,-0.014688556,-0.036428556,-0.025371142,0.043245733,-0.03174321,-0.04697058,0.014512856,0.06554797,-0.04376112,-0.03204776,-0.00033584406,-0.016480701,0.00400597,-0.015731046,-0.017171789,-0.027221853,-0.033570495,0.020369537,-0.014489429,-0.043222304,-0.059738144,-0.029658232,0.022208534,0.0022387162,-0.013329806,-0.0011815854,0.0025154445,-0.016504128,0.009060285,0.023836691,0.02083807,-0.0026106155,-0.05814513,0.014056034,-0.009464396,0.038583815,-0.032867692,0.011643082,-0.022981616,0.010026637,0.0076546823,-0.020533523,-0.030689009,-0.015731046,0.023789838,0.015684191,0.016703254,0.026823599,-0.0021523302,-0.04333944,0.018214278,-0.045166723,0.030150194,-0.029728513,0.010067634,0.0044159372,0.009968071,0.0035755038,0.05313181,0.011713362,-0.026448771,0.0036252856,0.008375054,-0.0053705764,0.024972888,-0.010910996,0.01748805,-0.045002736,-0.008041223,-0.021646293,-0.07013961,-0.0067878934,-0.039356895,0.010026637,0.003054259,0.0356789,0.025605408,-0.009323836,-0.027432693,0.0046209213,0.004849332,0.015813038,-0.0014129243,0.005528707,0.0047497684,-0.0112214,0.025581982,0.04905556,0.048165344,-0.0060792346,-0.033804763,-0.025581982,0.0127675645,0.004943039,0.027643533,0.026355064,0.044112522,0.026987586,-0.008427764,-0.041160755,-0.01240445,0.002726285,0.023157317,0.04296461,0.026472198,-0.030970128,-0.00021797835,-0.0097806575,-0.012146756,0.049805216,0.009153992,0.01790973,0.021658007,-0.005795186,0.050789136,0.0030659726,0.00043376043,-0.016328426,-0.019116206,0.003516937,0.057910863,-0.015285937,0.06887457,0.037295345,0.0048903287,0.003938618,0.042706918,-0.00024835987,0.03968487,0.019643309,0.027854376,-0.007256428,0.0068816002,-0.008480474,-0.012826132,0.0346247,0.03926319,-0.0066356193,-0.04055166,-0.00831063,-0.0061026616,-0.020556951,-0.04849332,0.02166972,-0.013681207,-0.02438722,0.01933876,0.019807296,-0.023051897,-0.019116206,0.0029854432,-0.027713815,0.014793976,0.025792822,0.04439364,0.005332508,0.005795186,0.0005790793,0.011151121,0.019748729,-0.027994934,-0.013997467,-0.09066142,0.026237931,-0.008814305,-0.0010768973,0.029564526,0.02181028,-0.04256636,0.018846799,0.04697058,0.04205097,0.041067045,-0.0062666484,0.037084505,0.052803837,-0.015403071,-0.0023294948,-0.029119417,-0.007309138,-0.016527554,0.021248039,-0.0244575,-0.010629876,0.039146055,-0.013107252,0.0063837823,-0.00051721814,0.061096895,0.0024158808,-0.04209782,-0.026050517,-0.06362698,0.034039028,0.0030747575,-0.0029005213,0.045237005,-0.0012167254,0.014688556,-0.023778126,0.030525021,-0.0032299596,0.018389978,-0.013353232,0.013774914,0.012486444,-0.043011464,0.022302242,-0.016785247,-0.04797793,-0.012697284,0.0023426723,-0.036639396,-0.014653415,0.014887683,-0.024059245,-0.034203015,-0.0026164723,0.0029942282,0.0105771655,0.02546485,0.04985207,0.027971508,-0.030454742,0.046080366,-0.03525722,-0.005678052,0.030337607,-0.023227597,-0.038630668,-0.01762861,-0.006202225,-0.019865861,0.016223006,0.048868146,0.013868621,0.030431313,0.023344731,0.026144223,-0.00954639,-0.008790879,-0.021681434,0.058379397,-0.016679827,0.04268349,0.03776388,-0.04219153,-0.00686403,-0.004386654,0.010758723,-0.011326821,0.02202112,-0.02104891,-0.015274224,-0.04160586,-0.0017467551,0.076652244,0.043878254,0.03268028,0.012463017,-0.009505393,0.026917305,-0.033711057,-0.0018902437,-0.015403071,-0.034015603,-0.079463445,-0.04626778,0.06582909,0.028908577,-0.02567569,0.055240214,-0.044581056,-0.0017599326,-0.031110689,0.01912792,-0.019163061,-0.028112069,-0.032633428,-0.0059591727,0.038302694,-0.010969563,0.0001409264,0.03710793,-0.068921424,0.028955432,-0.021658007,-0.026050517,0.005581417,-0.02703444,0.022700496,0.0006643672,-0.0017833593,-0.027128147,0.020791218,-0.0056019155,-0.025535129,-0.008761595,0.011320964,-0.029658232,0.048071638,-0.01088757,-0.029283404,-0.029564526,0.03303168,0.031298105,0.020193836,-0.012685571,0.0057366192,-0.0059035346,0.049945775,0.002030804,-0.027432693,-0.024574634,0.0028858795,0.03610058,0.051960472,-0.0014832044,0.03870095,-0.015133664,-0.031016983,0.0098802205,0.062502496,0.006805463,-0.040692218,-0.0071568643,-0.035304073,-0.008404337,0.009610813,0.017113222,-0.011110124,0.021903986,-0.019526174,-0.0027116432,-0.06990534,-0.0106767295,-0.009235986,0.022618502,-0.02501974,-0.012872985,0.047228277,0.0795103,0.021212898,-0.012322457,0.0011457133,0.021857133,-0.031696357,-0.011145264,-0.01933876,-0.0101789115,-0.057910863,-0.00068669586,0.0041933837,-0.032703705,0.02581625,-0.019631594,0.039567735,-0.036943942,0.025417995,0.048399612,-0.018823372,0.009159849,0.011291681,-0.015801325,-0.10382724,-0.0127207115,-0.0010263834,-0.016035592,-0.03884151,0.0052065896,0.052756984,0.003027904,-0.00080090115,0.00017176547,0.018764805,0.044299934,-0.03610058,-0.0095815305,0.028322909,0.012006196,0.05500595,-0.014255161,0.015848178,-0.026378492,0.024035819,0.005780544,0.03017362,0.032633428,-0.008006083,0.010460032,0.005057244,0.0029224837,0.011865635,0.0022723922,-0.022559935,0.037951294,0.015695905,0.008896299,-0.037670173,0.0054232865,-0.012650431,-0.008796735,0.0034847253,0.01390376,0.040739074,-0.0023763482,0.0043837256,-0.012978405,0.022454515,0.0053442214,0.006295932,0.017616896,0.033008255,-0.0057131923,0.037435904,-0.0026296498,-0.009622527,0.010987134,-0.072997674,0.024059245,0.032094613,-0.055146508,0.02930683,-0.0028419544,-0.021611152,-0.00013927919,0.03626457,-0.011033987,-0.0018507112,0.0069050267,-0.008949009,0.032094613,-0.0048639737,-0.012954978,0.0021318318,-0.03759989,0.0105771655,-0.028088642,0.014688556,-0.051960472,-0.00070536404,0.024082672,-0.005124596,-0.014302015,0.011684079,0.010424892,0.02846347,-0.0063954955,0.0137632005,-0.02219682,-0.022489656,-0.026706465,-0.02316903,-0.024996314,0.022489656,-0.008820161,-0.016293287,0.023988966,0.023450151,0.018905366,0.0033675916,-0.0053617912,0.037271917,0.012486444,0.0008587359,-0.00003861749,0.0038654094,-0.023110462,-0.050180044,-0.04240237,-0.0025403353,-0.00961667,-0.019819008,0.0004172885,-0.024199806,0.030970128,-0.018507112,0.045494698,-0.02466834,0.0349761,-0.027901229,0.07927603,-0.00016389556,0.025839677,-0.019186487,-0.030407887,0.03061873,-0.0012167254,-0.033945322,0.0022855697,-0.015649052,-0.0019283122,0.016293287,-0.0069694505,0.029213125,-0.005581417,0.0030835425,-0.014735409,0.0071685775,-0.024832327,0.046923727,-0.012053049,0.022794202,0.010571309,0.032563146,-0.006887457,0.017218642,0.007490695,0.026073944,0.02041639,0.01609416,-0.012135043,0.015028243,-0.005648769,-0.04090306,0.008134929,-0.007566832,0.007268141,0.032703705,-0.03989571,-0.010951993,0.010255048,-0.004187527,0.019561315,0.019912716,0.021177758,-0.013329806,-0.007110011,0.04160586,0.011215544,-0.011326821,0.011941773,0.039591163,0.03282084,0.006020668,-0.015742758,0.026917305,0.015227371,0.009932931,-0.027784094,-0.036147434,-0.009288696,0.011361961,0.009159849,-0.0071158675,0.015274224,0.017124936,-0.015859893,0.026636185,-0.053084955,0.016082445,-0.017851163,0.005967958,-0.03631142,-0.000021241907,0.020053275,-0.0022928906,0.012099903,0.03811528,-0.0047409832,-0.008808448,0.014231735,-0.024316939,-0.023672704,0.014840829,-0.01609416,-0.04118418,-0.029119417,0.056973793,-0.0066356193,0.0070045902,0.013774914,0.010483459,0.026237931,0.03474183,0.0022650713,0.02073265,-0.025558555,0.015672479,-0.0008470225,-0.0050806706,-0.010788007,0.01372806,-0.020498384,0.0074965516,-0.044299934,-0.007104154,0.006664903,0.006495059,-0.0034847253,-0.0033090247,-0.0037219208,-0.02909599,0.014056034,0.0019941998,-0.016914094,0.028416617,0.044229656,0.016468987,0.043526854,0.0465489,-0.012954978,-0.007801099,-0.030548448,0.005048459,0.014442575,-0.001806786,-0.010624019,-0.034460712,0.0024070959,0.018179137,0.014817403,-0.035655472,0.0063779256,-0.042730343,0.02501974,0.018343125,-0.016597833,-0.008076363,0.0021728287,-0.0052358727,0.013575787,0.010618162,0.017300636,-0.022641929,0.0027541043,-0.007332565,-0.020955205,0.012017909,-0.029470818,-0.0020059133,-0.022969903,0.016996088,0.015332791,-0.05111711,-0.006500916,0.053647198,-0.008023653,0.0045418562,0.004714628,0.019420754,0.041231032,-0.007748389,-0.040036272,0.011988626,-0.02930683,-0.002366099,-0.0006409405,0.046056937,0.0057922574,0.017792597,0.008263777,0.018038578,-0.008052937,0.01888194,0.026729891,-0.015379644,0.009142279,0.012474731,-0.020814644,0.0011574266,-0.010553739,0.030899849,-0.015871605,0.042589784,-0.011935916,-0.012697284,-0.032328878,0.015426498,-0.006594623,-0.002708715,0.044745043,0.008732311,-0.0011471774,0.03453099,-0.0006116571,-0.010026637,-0.005897678,0.008621034,-0.016539266,-0.018366551,0.03977858,-0.017183501,0.01801515,0.030642156,-0.009505393,0.017054655,0.020322682,-0.005127524,-0.024340367,-0.04188698,0.020123556,-0.049149267,0.0107762925,0.024293512,0.0082403505,0.020135269,0.0013258061,0.012779278,-0.010536169,-0.008234493,-0.0006947488,0.014747122,-0.009927074,0.03324252,0.017464623,-0.025699116,-0.0011881741,-0.015684191,0.050789136,-0.0027438551,-0.0166564,-0.0063603558,0.039497457,0.008023653,0.031508945,0.029658232,0.023953825,0.010395609,0.011695792,-0.020076703,-0.032118037,0.011297538,-0.0056868372,0.022431089,0.023403298,-0.010811433,0.017359203,0.0014575815,-0.0019912715,0.028112069,-0.017851163,-0.011818782,-0.008123216,0.015449924,0.0037307057,0.014864257,-0.020146983,-0.05627099,-0.023719558,0.026706465,0.02759668,0.008814305,0.007525835,-0.0017672535,0.012896411,-0.014149741,0.01243959,-0.02780752,-0.009036859,-0.007906519,0.00042717168,0.03720164,0.007912376,0.005435,-0.0076136854,0.0023939183,0.0027028583,0.01466513,0.051304527,0.007818669,0.008626891,0.012627005,0.030899849,-0.0072857114,-0.009886078,0.024012392,0.015473351,-0.0029298046,-0.014700269,0.009230129,0.022747349,-0.036170863,-0.030056486,0.017991723,-0.02330959,-0.037506185,-0.034296725,0.02846347,0.016890667,0.0021537945,-0.00020864425,0.005086527,-0.0015403071,0.018553965,-0.011379532,-0.024223233,-0.002916627,0.007396988,0.03354707,-0.014536282,0.023778126,-0.032375734,-0.011297538,0.022056261,0.026495624,-0.019420754,-0.0116723655,-0.047392264,-0.005385218,0.0050396738,-0.005768831,-0.03495267,-0.032282025,-0.02930683,0.005030889,-0.0018638887,0.0026457557,-0.026729891,-0.0003396875,0.007742532,-0.026636185,0.057020646,0.02080293,-0.023145603,-0.012322457,0.010934424,-0.021693146,0.059129052,0.013974041,0.034039028,-0.032352306,-0.01912792,-0.013786627,-0.004046967,0.052101035,0.007215431,0.005426215,0.0096810935,-0.04427651,0.02285277,0.020018136,0.016949235,-0.012884698,0.067422114,0.022161681,0.01881166,-0.0025447279,-0.015695905,0.034249872,-0.04167614,0.00817007,0.0003175419,0.015906746,0.005212446,-0.042730343,0.035772607,0.013130679,0.016527554,-0.012732425,-0.01351722,-0.031298105,-0.020146983,-0.00409382,0.015567058,-0.01362264,-0.030665582,0.022641929,-0.018448545,0.013329806,-0.06821862,-0.0075902585,-0.059129052,0.01212333,0.0058098277,0.030150194,-0.015731046,0.0051890193,0.018495398,-0.02651905,0.038419828,0.04727513,0.01109841,0.03989571,0.010208195,-0.014969677,-0.06006612,-0.026870452,-0.010946137,0.014407435,0.020146983,0.087569095,-0.0067644664,0.012533297,-0.010219908,0.015766185,-0.019315334,-0.031930625,0.016972661,-0.0024729834,-0.017476335,0.017101508,-0.02888515,-0.012345883,0.009364833,-0.00043412647,-0.0070748706,-0.02581625,0.013786627,0.00024927498,-0.0030220475,-0.0014561173,-0.015075097,0.0043222304,0.034203015,0.012978405,0.015660765,-0.0013148249,-0.010120344,0.0007130509,-0.027901229,0.012837845,0.0032738848,0.009013432,-0.021400312,-0.013528933,-0.00550528,-0.021552585,-0.028557176,-0.026448771,0.00679375,0.020638945,0.0047497684,0.000116401534,0.01337666,-0.017675463,-0.0009392652,-0.038747802,0.005909391,-0.007730819,-0.023028469,0.0035667187,0.019373901,-0.008392624,-0.015707618,-0.029025711,-0.011262397,0.019479321,0.008744025,0.019619882,0.012685571,0.017253783,0.019936142,0.013177532,0.024762047,-0.024410646,0.010969563,-0.0069343103,0.0076078284,0.026917305,-0.0029605522,-0.024691766,-0.010085205,-0.018436832,0.031790063,-0.0020395892,0.0042021684,-0.0152039435,-0.02846347,-0.017968297,0.017980011,0.016457273,0.04275377,-0.011760215,0.042870905,0.012627005,-0.015461638,-0.023860117,-0.014571423,0.015754472,-0.030759288,0.009886078,0.018214278,-0.013048685,-0.010190625,-0.0035491486,-0.05050802,-0.030431313,-0.015625624,0.008691315,-0.01243959,-0.020158695,0.004755625,-0.005572632,0.0781984,-0.0026179363,-0.007098297,-0.0005084331,0.042238384,-0.0141614545,-0.00811736,0.025113449,-0.020193836,-0.023297876,0.031063836,0.018682811,0.0018302128,-0.010237479,0.03003306,-0.021060625,-0.030501595,0.04568211,0.03218832,-0.03905235,0.006407209,0.017652037,-0.011502521,-0.0034290866,-0.0025505845,-0.029939353,0.042144675,-0.005862538,-0.0007972407,0.017956585,0.04247265,-0.009323836,0.0050894557,0.022618502,-0.035421208,-0.010565452,-0.0003640293,0.0016794032,0.016152726,-0.02452778,0.044791896,-0.006729326,-0.020978631,0.016258147,-0.016281573,-0.0062900754,0.0107762925,-0.045494698,-0.0008397016,-0.013505506,0.0012269747,-0.0022753205,0.019783868,-0.011332678,-0.010846573,-0.045494698,0.0006566804,0.024410646,-0.031790063,-0.049805216,-0.015813038,0.019912716,-0.045846097,0.008480474,-0.0032416729,0.05027375,0.01672668,-0.004418866,-0.011643082,0.028557176,0.0048991134,0.01233417,-0.024972888,0.022513082,0.008574181,0.014056034,-0.014723696,-0.02104891,-0.01222875,0.014290301,0.033008255,-0.008609321,0.025394568,0.039919138,-0.056224138,0.07112353,0.034085885,0.016855529,-0.0089841485,0.01219361,0.0295411,-0.021552585,-0.015133664,0.015719332,0.025207154,-0.006682473,-0.009886078,0.004456934,-0.0011566945,-0.034367003,-0.0035667187,0.040153407,0.010091062,-0.008732311,0.033640776,0.015754472,-0.0015988739,0.031508945,-0.00029173592,-0.030923275,0.012685571,-0.00093414064,0.034929246,-0.0067058997,-0.004547713,-0.04397196,0.014618276,-0.05327237,-0.0028580604,0.0017262567,0.022138255,0.016328426,-0.0057834727,0.015813038,-0.0068933135,-0.0014810083,0.0014312264,-0.004497931,0.040457953,-0.00092169514,-0.01988929,0.0058098277,0.034437284,-0.022056261,0.010910996,0.018858513,-0.007929946,0.032141466,-0.01783945,-0.003765846,-0.015239084,0.0037160642,0.015180517,-0.0001789033,0.009534677,0.0106767295,0.004893257,-0.015110237,-0.049570948,-0.03849011,0.015110237,-0.033195667,-0.03870095,-0.041933835,0.05313181,-0.018249419,0.0056370553,0.0031948194,0.02438722,0.014524569,-0.03038446,-0.0101789115,-0.043878254,-0.0050513875,0.0076078284,0.005924033,-0.019924428,-0.012662144,0.02487918,0.00935312,-0.011648938,-0.022653641,0.029939353,-0.02038125,0.016316714,-0.0003773899,-0.021447165,-0.012474731,-0.016738394,-0.0123693105,-0.0034349435,-0.035866313,0.018928792,0.011496665,0.008732311,-0.012357597,-0.011455668,-0.025136875,-0.005660482,-0.026823599,0.012310743,-0.009587387,-0.018565679,-0.019830722,-0.0070045902,-0.020861497,0.008656175,-0.00070902443,0.02867431,0.023426725,-0.018624246,0.016187867,0.0017467551,-0.023180744,0.03396875,-0.023649277,-0.037459332,0.021084052,0.016773535,-0.0023251025,0.004650205,-0.00003127376,0.018062005,0.040692218,0.010565452,0.008609321,-0.022372521,0.022454515,0.0018331412,0.024762047,0.045939807,0.02731556,-0.016141012,-0.048915,-0.0034290866,-0.007871379,0.028721163,0.01860082,0.032328878,0.020720938,0.034437284,-0.034882393,-0.015285937,-0.034203015,-0.009095426,0.011479095,-0.055896163,0.0029620165,-0.018764805,-0.005555062,0.008480474,0.01466513,0.009487824,0.0015798397,-0.013200959,0.022934763,-0.021376885,0.015145377,0.0026501482,0.0037687742,0.013868621,0.01826113,-0.0046238494,0.016855529,-0.04038767,-0.04148873,0.0059474595,0.0019165989,0.02567569,-0.033383083,-0.01727721,-0.0037980576,0.045518126,-0.008375054,0.02881487,-0.001513952,-0.022477942,0.009868507,-0.030197047,-0.0004549909,-0.0109754205,0.028158922,0.0054642833,0.0052241595,0.005727834,-0.0034730118,0.034577843,0.013400086,0.036920518,0.006131945,0.014337155,0.026870452,0.019842435,-0.01494625,-0.0012540618,-0.0015783756,-0.033593923,-0.0009853865,0.020814644,0.0126152905,0.007619542,-0.0030835425,-0.018518826,-0.026003664,0.027292134,0.0149579635,0.008351627,-0.026214505,0.014805689,0.00023280307,0.0039766864,-0.025933383,0.030993557,-0.024551207,0.005150951,-0.018870225,0.027526401,-0.0027994935,-0.023227597,0.016152726,-0.007233001,0.04059851,-0.0063662124,0.001849247,0.03218832,0.0010366326,-0.010050065,0.0349761,0.019010786,0.020474957,0.032000903,0.00037555967,-0.016105874,-0.043269157,0.030735862,-0.0023690274,0.010665016,-0.012802704,0.001600338,0.016164439,-0.003619429,0.0040264684,-0.012053049,-0.004213882,0.0190225,0.029939353,-0.025652263,0.009271126,0.019116206,-0.035983447,-0.013716347,0.02045153,-0.004085035,-0.027362414,0.00077967066,0.035280645,-0.00073757576,-0.019350475,0.017113222,-0.040247113,0.024199806,0.027830947,0.020674083,-0.014618276,0.02198598,-0.01508681,0.034367003,-0.0061963685,0.026729891,-0.06142487,-0.030267328,-0.032937974,-0.0076781088,0.026589332,0.010946137,0.013294666,0.013446939,0.006055808,0.017242068,0.017183501,-0.012872985,-0.021833707,-0.029986206,0.014547995,0.008878728,0.0013697313,-0.006219795,-0.017429482,0.016703254,0.018975647,0.02128318,0.0009356048,-0.024926035,0.014969677,0.02459806,0.013528933,-0.018097144,-0.014454288,0.009973927]},{"id":"interface-GatewayGuildSyncDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildSyncDispatchData\nDescription: GUILD_SYNC — guild sync state (passive/lazy)","meta":{"url":"/docs/typedefs/GatewayGuildSyncDispatchData"},"embedding":[0.010439846,0.016831182,-0.0006869193,0.012537107,0.046829976,0.019565586,-0.040724028,-0.018224932,0.017946182,-0.022432728,0.019525765,0.016658623,-0.03225534,0.00040858425,0.06031616,-0.0036469775,-0.034963198,0.025273321,-0.03347653,0.026454689,0.01902136,0.0069952942,0.046617597,0.033449985,-0.03419332,-0.0021885182,0.010433209,0.011773864,0.020614216,-0.04927236,0.023746833,-0.030742127,0.057502113,-0.026905999,0.021145169,0.053732354,-0.024583083,0.025472429,-0.0310607,-0.030715581,-0.012517196,-0.06589116,0.0035772899,0.0053327503,-0.021092074,-0.022990227,0.009477495,-0.024463618,0.035467602,0.020030169,-0.05797997,-0.011959696,-0.0047951615,0.0565464,-0.00115648,-0.02568481,0.020149633,0.030556295,-0.01979124,0.019087728,-0.0022482504,-0.00010256087,-0.0024788827,0.01880898,0.033449985,-0.014866659,-0.056068543,0.053865094,-0.013068059,0.04003379,0.0014916436,-0.013778208,0.002928533,-0.007552794,0.00081799814,0.023056597,0.0117805,0.009696513,0.040644385,0.01242428,-0.009497406,0.033768553,-0.07767829,-0.050493546,0.020109812,0.00091921084,-0.04746712,0.011488477,0.0133069875,0.01634005,0.009198746,0.010758418,-0.065147825,-0.004224388,0.004858212,-0.06923616,0.04802462,-0.003230512,-0.018848801,0.056758784,0.06031616,-0.027476773,-0.017428504,-0.08410282,0.0078182705,-0.011727405,-0.02334862,-0.017494872,-0.031565104,0.008369133,-0.07704116,0.032892484,-0.0059931222,-0.013804755,0.0122251725,-0.012364548,0.023414988,-0.023959214,0.046007,0.009411126,-0.045927357,0.026096297,0.010380114,-0.0046922895,-0.015132136,0.014866659,0.019286836,-0.00015254504,-0.056705687,0.004323941,0.03148546,-0.03129963,0.03483046,0.018158562,-0.03504284,-0.00980934,-0.035414506,0.0065738508,-0.050440453,-0.040166527,0.009523953,0.00865452,0.047944978,0.073271394,-0.022260169,0.015769279,-0.0026630568,0.010698685,-0.018105468,0.0355207,-0.061909016,0.024755644,-0.015556897,-0.017083384,0.028591773,0.03281284,-0.01448172,-0.012729577,-0.023600822,-0.0038394476,-0.023096418,-0.031193437,0.029547486,0.009942079,-0.042954028,-0.03695427,0.013585738,-0.021277906,-0.076669484,0.0027792025,0.029759867,-0.011720768,-0.05022807,0.03305177,-0.008720889,-0.0033698867,-0.04759986,-0.017428504,-0.023561,-0.03605165,0.046617597,-0.012902137,-0.015304695,-0.049298905,-0.061696637,0.0064245206,-0.006228732,0.03039701,-0.008734163,-0.018835526,-0.04205141,0.06243997,0.048741404,0.043060217,0.008468687,-0.017216122,0.03414022,-0.013572464,0.017601063,-0.012868952,0.009218656,-0.03406058,0.037883434,-0.024928203,0.002201792,-0.0067165443,0.054634973,-0.028326295,-0.0022449319,0.029202366,0.032175697,0.013353446,-0.054157116,0.013459636,-0.051396165,0.0299457,-0.042529266,0.0041049235,0.042024862,0.0015488869,0.011136721,0.009995174,-0.0016467812,0.010519489,0.041122243,0.021715943,0.007333776,-0.029547486,-0.015490528,0.0056413664,0.0031176845,-0.011355738,-0.007758538,-0.047440574,0.010320382,0.016180767,-0.0055252207,0.034883555,0.035600338,0.028379392,-0.03737903,-0.030184628,-0.019512491,-0.0034843732,-0.035467602,-0.012284905,-0.00095654343,0.00041729517,-0.00419784,0.029361652,0.02178231,0.043723907,-0.028034272,-0.018609872,-0.039423194,0.009112466,0.002576777,0.00404851,0.018397491,0.04566188,-0.008269579,-0.01507904,-0.011282733,0.0032338302,0.007758538,0.025552072,0.06291783,-0.01167431,-0.039688673,0.014548088,0.0018384217,0.014654279,0.06599735,-0.029759867,-0.041016053,-0.005780741,0.016937373,0.0038825874,0.0024274467,-0.005292929,-0.048077714,-0.030290818,0.010167733,0.04536986,-0.0040518283,0.046405215,0.028326295,0.015716182,0.038839146,0.052909378,-0.046856526,-0.0020524617,0.04613974,0.03528177,0.030131534,0.022074334,-0.016632074,-0.0009764541,0.016074575,0.04093641,0.05235188,0.0043703998,-0.04536986,-0.001130762,0.0025054303,0.0032753109,0.012630024,-0.0299457,-0.00031400842,0.010446483,0.0008333459,-0.0013340173,-0.031512007,0.03082177,-0.03562689,0.0009814318,0.036662243,0.038892243,0.042635456,0.012384458,0.012052613,0.023096418,0.012623386,-0.034087125,-0.00065207557,-0.047281288,-0.022884037,-0.04624593,-0.0036005192,0.053068664,0.020415109,-0.048210453,0.011813684,0.0040750573,0.031910222,0.026428143,0.00005807289,0.03567998,0.016698444,0.000030488267,-0.016087849,-0.013539279,-0.03748522,0.005674551,0.05256426,-0.059519734,-0.023043321,0.06631592,0.0031027514,0.014269338,0.030476652,0.0011465248,0.0136720175,-0.027370581,-0.0027659286,-0.07077592,0.041122243,-0.036237482,-0.04690962,0.05479426,-0.0048714858,-0.0053626164,0.013028238,0.031219985,0.001942953,0.03947629,-0.024715822,0.012231809,0.0030297455,-0.021981418,0.029096177,0.0121455295,-0.026534332,-0.04167974,-0.00400537,0.009796067,0.0136720175,-0.00569778,0.0077120797,-0.0035009657,-0.024529988,0.026813082,0.0158091,-0.007592615,0.028857248,-0.0056214556,-0.055059735,0.035361413,-0.06711235,-0.02516713,0.030264271,-0.016512612,-0.011661036,-0.06297092,-0.005558405,-0.022804394,0.03228189,0.021450466,0.022153977,-0.02677326,0.046060096,0.005963256,-0.020574395,-0.007466514,-0.038759504,0.0021155123,-0.003217238,0.006109268,0.060634732,-0.024158321,0.031989865,0.031644747,0.036184385,-0.009304936,0.015795825,-0.0654664,-0.009431037,-0.013048149,-0.00039054017,0.023149513,0.012795947,0.019990347,0.0058471104,0.008959817,0.045821168,-0.007951008,0.035759624,0.031246532,0.02872451,-0.076722585,-0.07555449,0.019605407,0.00071595574,-0.01231809,0.05612164,0.02139737,0.011734042,-0.03238808,0.007439967,-0.04125498,-0.011183179,-0.005478762,-0.05333414,0.051635094,-0.021676121,0.012079161,0.023693739,-0.031273082,0.054369498,-0.009630145,-0.01961868,0.01458791,-0.0073138657,0.033874746,-0.05999759,0.024861833,-0.013333535,0.047201645,-0.00067157147,-0.021702668,0.004785206,0.016751539,-0.01347291,0.02649451,-0.029096177,0.029122723,0.019512491,0.007692169,-0.002893689,0.06907687,-0.06599735,-0.014667552,-0.007267407,0.042821288,-0.013379994,0.045768075,-0.0121455295,0.051581997,0.037458673,0.05012188,-0.021224812,0.0024539942,-0.043060217,-0.017494872,0.07842163,0.06838664,0.02806082,0.00391909,-0.042210694,-0.014242791,0.016087849,-0.00961687,0.069926396,-0.015503802,0.017043563,-0.030715581,-0.035759624,-0.046192836,0.021423917,0.0014800291,0.0059499824,-0.021038977,0.022499096,-0.00569778,0.024768917,0.021105347,-0.027981177,-0.010625679,-0.03392784,-0.050838664,-0.00404851,0.00089598174,-0.013486184,-0.039078075,-0.05797997,0.016512612,-0.022127429,0.036794983,-0.008024014,0.013565827,-0.04836974,0.007214312,-0.0033698867,-0.042529266,0.022658382,0.020760229,0.025658261,-0.062333778,-0.015888743,-0.0012759443,0.010784965,-0.0062951013,0.019499216,0.053758904,-0.0044500423,-0.013884398,-0.008833716,-0.014999397,-0.005389164,-0.015689636,0.006487571,0.0069554728,0.007765175,-0.0019446121,0.019950526,0.005263063,-0.002893689,0.0051568723,0.01912755,0.016393147,0.00087938947,-0.034219865,-0.0023229155,0.014123326,0.019154098,0.010565947,0.0022200437,-0.03339689,0.0091390135,-0.0038460845,0.015941838,-0.014959577,0.0027211297,-0.018981539,-0.018304575,0.020866418,-0.004705563,0.0070351157,-0.03148546,-0.0033499761,-0.014216243,0.030954508,-0.0047387476,0.012643297,0.012849041,0.0038593581,-0.043458432,0.01130928,0.011700857,0.024941476,0.00724086,-0.10677447,0.013844577,0.055165924,-0.0665283,0.025538797,0.001516532,0.007333776,-0.0028439122,0.04568843,-0.03358272,0.020468205,0.020322192,0.008282853,0.006603717,-0.022764573,-0.017003741,0.004599373,-0.032334983,0.016592253,-0.0020690542,0.019724872,-0.025591893,-0.016924098,0.049644023,0.015716182,0.03060939,0.019711597,0.01612767,0.012245083,0.0025883915,0.0020126405,0.023162786,-0.042449623,-0.035972007,-0.0022183843,-0.050413903,0.040724028,-0.013313624,-0.012663208,0.012643297,-0.0010262309,-0.0047520213,0.012603476,0.018755883,0.018039098,-0.030476652,0.004506456,-0.046883073,-0.035839267,-0.013014964,-0.033211056,-0.034777366,-0.022127429,-0.057820685,-0.040432002,0.019631954,0.011169905,0.008316037,-0.026720166,0.009523953,0.0069090147,-0.0013439725,-0.005176783,0.06610354,-0.0141366,0.004128153,0.0008818783,-0.013738386,0.008163389,-0.035095934,-0.01647279,0.025698083,-0.008189936,0.041308075,-0.014959577,-0.010672138,0.022446001,-0.014641005,-0.0084222285,-0.014773743,-0.027091833,0.0035441054,0.039635576,0.0017488236,0.011515024,-0.00068194163,0.050148427,0.0013423134,0.02156993,0.032228794,0.056864973,0.043166406,0.02030892,-0.0115415715,-0.009577049,-0.0037564863,-0.022499096,-0.0076324367,-0.00726077,-0.0013331876,0.02970677,-0.014667552,0.017999277,0.025180405,-0.020216001,0.05144926,0.002201792,0.01752142,-0.01923374,0.015702909,0.041892122,0.026786534,-0.016698444,-0.0064510684,-0.0047885245,0.045051288,0.013074696,-0.026574153,-0.023786655,-0.015198505,0.009888983,0.006809461,-0.01006818,0.007884639,-0.01709666,0.0065273927,-0.012218536,0.0011622874,-0.017335586,-0.01300169,0.009815977,-0.055059735,-0.011408834,0.017229397,0.00970315,-0.022565465,0.020229276,0.015384338,-0.016140945,0.017614337,0.025406059,0.01657898,-0.02656088,-0.0129087735,-0.019140825,-0.041201886,0.02561844,-0.04980331,-0.003004857,0.010074817,0.01591529,0.01045312,0.018543502,0.0029567396,0.0023361894,0.0023693738,0.019910704,-0.010200918,0.014269338,0.024370702,0.0041712928,-0.010519489,-0.0003604667,-0.00031193436,-0.021370823,0.0060628094,0.020401835,-0.018716061,0.0020673948,-0.021304455,0.010386751,-0.034299508,0.016658623,0.014654279,-0.04866176,0.02418487,0.0052663814,0.01703029,0.022538917,0.0020292327,-0.0053128395,0.021092074,0.074386396,-0.006567214,0.015171957,-0.058245447,-0.038122363,0.0070284787,-0.01006818,-0.025459154,-0.0002754314,0.016220588,0.033370342,0.03870641,-0.0326801,0.0066236276,-0.033370342,0.02677326,0.012032703,0.003481055,-0.014043684,-0.0041480632,0.0038195369,-0.01036684,0.0087407995,0.027184749,0.01261675,-0.0043703998,0.012377822,-0.027317487,-0.0022947087,-0.010851334,0.0046491497,-0.00066866784,-0.008428865,-0.0135923745,-0.11096899,0.010373477,0.036768433,-0.016738266,0.0009324847,0.009258478,0.009875709,0.047944978,0.0020142996,-0.046431765,0.024622904,-0.029600581,-0.0035175579,0.006869193,0.051475808,-0.0032072826,-0.000809702,0.027768796,0.01776035,0.0012452486,-0.00612586,0.010771691,-0.024423799,0.016937373,-0.024264513,-0.019937253,-0.0013024919,-0.017056838,0.013426452,0.020468205,0.036741886,-0.03737903,-0.024277786,-0.001645122,-0.0110637145,0.020853145,-0.013532642,0.028405938,0.024277786,-0.012576928,-0.027742248,0.0016683511,0.0084222285,0.012570292,0.0059134793,0.03724629,-0.010579221,0.035175577,-0.019870883,-0.002024255,-0.033317246,0.010181007,0.0510245,-0.02247255,0.013300351,0.016180767,0.004791843,0.019977074,-0.008435502,-0.012211899,-0.010592495,0.028671416,0.019698324,-0.015344516,0.014242791,-0.01835767,0.03238808,-0.018822253,0.02418487,0.00029658654,0.025737904,0.016260408,0.019539038,-0.018941717,0.011448655,0.07061663,-0.014043684,-0.010652227,-0.0046192836,0.026786534,0.021158442,0.029335104,0.04093641,-0.019366479,0.029972248,0.014919755,-0.013964041,-0.00839568,-0.008130204,-0.013207434,0.003393116,0.019671775,0.015065767,0.020985883,0.0024539942,0.007811633,0.015450707,-0.020468205,-0.028883796,-0.015477254,0.021038977,-0.044785812,0.017587788,-0.05036081,-0.033449985,-0.027715702,0.014733922,0.030742127,0.0010229124,-0.00925184,-0.011534935,0.01947267,-0.012802583,0.009205382,0.011860143,-0.022525644,0.013406541,-0.012245083,0.0059466637,-0.00015161172,0.0007773471,-0.0102208285,-0.0416001,-0.012862315,0.0015223393,0.003776397,0.010147822,-0.0058935685,-0.00753952,0.046537954,-0.008973091,0.0060428986,0.001118318,0.021556657,-0.02006999,-0.017481599,-0.014773743,0.011846869,-0.03270665,-0.022087608,0.011601304,0.0013000031,-0.025777726,-0.010539399,0.0299457,-0.004350489,0.028804153,-0.035972007,-0.0158091,0.0064742975,0.001188835,-0.056599498,-0.026706891,-0.009085918,0.033848196,0.033662364,-0.03037046,0.045874264,-0.030264271,0.016393147,0.009882347,0.02739713,0.00284889,0.0082961265,-0.009550502,-0.007745264,-0.03015808,-0.0020557803,-0.053626165,-0.047865335,0.0037896708,0.017547967,0.012172078,0.007864729,-0.028883796,0.03504284,0.008866901,-0.020720407,-0.0035606977,0.026852904,0.0042077955,0.008150115,-0.0024622905,-0.00005265448,0.059094973,0.018251479,0.023361893,0.0012784331,-0.011873417,-0.0094244005,-0.013326898,0.054741163,-0.003401412,0.0126698455,-0.015835647,-0.03629058,0.032228794,0.011216364,0.0052365153,-0.014375528,0.00282732,0.010678775,-0.00546217,-0.018397491,0.017587788,0.019300109,0.01026065,0.022738025,-0.010088091,-0.009961989,-0.013333535,-0.0048714858,0.002024255,0.0018367625,-0.015955111,0.0015887083,-0.06387354,-0.017441778,0.003607156,-0.0061192233,-0.001685773,-0.01979124,0.00801074,-0.0020275735,-0.02760951,0.008077109,-0.05734283,-0.009066007,-0.039131172,0.011833595,0.016778087,0.009417763,-0.010413298,0.008369133,-0.00518342,-0.0034578256,0.038971886,0.029892605,0.009869073,0.031697843,-0.0005877806,-0.0036901173,0.0067961873,-0.021649573,-0.0076324367,-0.014800291,-0.008462049,0.019671775,-0.015039219,0.041626647,-0.021052253,-0.006434476,-0.0136720175,-0.010771691,0.010207554,-0.009165561,-0.017720528,0.022220347,0.004542959,-0.008130204,-0.018875347,0.022485822,-0.014428624,-0.017229397,0.045077834,0.023853024,-0.030635938,0.019432848,-0.0094575845,-0.020587668,0.023441536,0.02463618,0.031910222,0.017959455,0.010227465,-0.008322675,-0.01912755,0.033343792,-0.0016948987,0.020720407,-0.030476652,-0.0009490769,0.00056413666,-0.005578316,-0.00066866784,-0.02896344,0.01101062,0.0026248945,0.008209847,-0.0031641428,-0.018795704,0.032520816,-0.004602691,-0.042821288,-0.02617594,-0.021171715,-0.034963198,0.03291903,0.009517317,-0.0061159045,-0.05500664,0.031565104,-0.026467964,-0.0047586584,0.0067530475,-0.019326657,0.016698444,-0.0018898577,-0.013014964,-0.00884699,0.034326054,-0.029467843,0.024317607,0.028352844,0.012138893,0.018224932,0.015623266,-0.029759867,-0.005153554,-0.0036237482,0.029998794,-0.003673525,0.010784965,-0.011402197,-0.009125739,-0.00447659,-0.01619404,0.0048383013,0.011966334,-0.039874505,0.018158562,-0.02600338,-0.01111681,-0.011528298,0.009537227,0.027344035,-0.006537348,0.04913962,0.015543624,-0.017189575,-0.008919995,-0.0032238748,-0.019804515,0.010619042,-0.009178835,-0.0050241346,0.0025452517,-0.000586951,-0.0062984196,-0.017640885,0.090368055,-0.028299749,0.0024158321,-0.014933028,-0.009484133,-0.015384338,-0.010254013,-0.006816098,-0.00925184,-0.0061723185,-0.010884519,0.026826356,-0.0071147582,-0.011023893,0.031989865,-0.028857248,0.00041646557,0.020056717,0.0099818995,-0.027901534,-0.0027095152,0.002201792,-0.020534573,-0.008860264,-0.015663087,-0.040060338,0.044015933,-0.0097429715,0.017269218,0.027237844,0.005555087,0.019313384,-0.02806082,-0.0019678413,-0.0111433575,-0.0015812418,0.0068360087,-0.040830217,0.033635817,-0.025644988,0.019910704,0.006563896,-0.029733319,-0.0056712325,-0.03857367,0.025923738,0.002767588,-0.03416677,-0.0076390738,-0.01130928,-0.0068559195,-0.010950888,0.00961687,-0.021198263,0.0065539405,-0.041201886,0.009590323,0.06397973,0.00015586348,-0.003408049,-0.024450345,0.0013862828,-0.004659105,-0.0019811152,0.010711959,0.012968506,0.016313504,0.004675697,-0.01745505,0.03947629,0.004227706,-0.009769519,-0.015477254,0.019552313,0.0059898035,0.00649089,-0.004270846,-0.03703391,-0.007552794,0.021331001,0.011375649,0.017946182,-0.020614216,0.011846869,-0.10767709,0.055909257,0.0017322314,0.009046096,0.0015239986,0.012364548,-0.001163117,-0.008827079,-0.00589025,0.012112346,0.02111862,-0.005883613,-0.013134428,0.0005803141,-0.04067093,0.012842405,-0.013937493,0.04390974,0.011667673,-0.012888863,0.021477014,0.01902136,0.014800291,0.0019628636,0.021994691,-0.003696754,-0.024622904,-0.007141306,-0.005352661,-0.03270665,0.0028074093,-0.031777486,0.0194063,-0.039980695,0.0051402804,-0.010048269,0.018782431,0.0057940152,0.000018536659,-0.023189334,-0.012138893,-0.014866659,-0.009158924,-0.005309521,0.0016816249,-0.0052962475,-0.028087368,-0.0005956619,0.021835405,-0.0067264996,0.007858091,0.002701219,-0.0041878847,0.00035652606,-0.021795584,-0.0015306354,-0.008309401,0.0058039706,0.005306203,0.004572825,0.008223121,0.020016896,0.026096297,-0.023375167,-0.026467964,-0.011893327,0.0030247679,-0.005402438,-0.010034995,-0.04170629,0.0032155789,-0.0449451,0.038865697,-0.023375167,0.004579462,0.0057143723,-0.015437433,-0.0049909498,-0.06785568,-0.005050682,0.00261328,0.013526006,-0.015968384,-0.0038693135,0.0028107278,-0.0058271997,0.016313504,-0.014773743,0.014959577,0.0016492701,-0.0002677575,-0.008322675,-0.022923859,-0.009218656,-0.021623025,-0.0071744905,0.020335466,-0.019300109,0.016273683,0.02949439,0.017959455,-0.010114638,-0.016233861,-0.010804876,-0.01933993,0.0015812418,0.01216544,0.00091174437,-0.01507904,-0.037325934,-0.014826838,-0.01619404,0.007745264,-0.00447659,-0.00007046523,0.015928565,-0.024875106,-0.009988537,0.00037539974,0.034671172,0.01709666,0.004778569,-0.021264633,0.024224691,0.031432364,-0.012822494,-0.0034478703,0.012835768,0.0069222883,-0.021012431,0.022153977,0.009152288,0.02983951,0.049192715,-0.006530711,0.03204296,0.011269459,0.008681067,-0.003179076,-0.06716544,-0.008116931,-0.007566068,0.011070352,-0.010147822,0.010247376,-0.009344758,0.0119066015,0.02240618,-0.008807168,-0.0355207,-0.015875468,-0.029866057,-0.03238808,0.003393116,-0.004483227,-0.015477254,0.004290757,-0.0007653177,0.004174611,-0.005983167,0.0022266805,0.01619404,0.0068426454,-0.014866659,-0.041493908,0.04191867,-0.014879934,0.0260432,-0.00044550202,0.018424038,-0.038069267,0.01807892,-0.013632196,-0.01880898,-0.0021553338,-0.0071147582,0.030264271,-0.007824907,-0.0139905885,-0.021583203,0.017853266,-0.016486064,-0.02499457,-0.00462592,0.008621335,-0.030954508,-0.0006209651,0.0040385546,-0.010273923,0.013167612,0.0052365153,0.0013738386,-0.0076058893,0.013658743,0.04693617,-0.017109932,-0.0263485,0.025751177,0.049644023,0.006461024,-0.0014128304,0.0057906965,-0.036184385,-0.01707011,-0.017893087,0.005309521,0.016074575,-0.01441535,-0.0044799084,-0.019034633,0.034219865,0.0028107278,0.0019495898,0.013446363,-0.022857489,-0.0075992523,0.011136721,-0.001700706,-0.0012950255,-0.0011647763,0.0069289254,-0.03567998,0.016101124,0.010997346,-0.004732111,0.013711839,-0.0057210093,0.047281288,-0.008488597,-0.010851334,0.028538676,-0.0010992368,0.018623145,0.030476652,0.028140463,0.0065771695,-0.002782521,-0.005359298,-0.0068492824,-0.023043321,0.015636541,0.024450345,0.026932547,0.004705563,0.029600581,0.021065526,-0.03703391,-0.013764934,0.0012120642,-0.0013049807,0.0132273445,0.017149754,-0.01567636,0.0155967185,0.00636147,-0.03671534,-0.038732957,-0.0171763,0.002215066,-0.035202127,-0.009444311,0.0071744905,-0.040166527,-0.020109812,0.024065405,-0.055431403,0.013220708,0.033635817,-0.012477375,-0.010565947,0.019671775,0.017733801,0.030927962,0.0056712325,0.024224691,-0.0026348499,-0.01853023,-0.028034272,0.027237844,0.017401956,-0.003180735,0.03005189,0.021543382,-0.0139905885,0.00961687,-0.0033184509,0.010240739,0.00216363,-0.021556657,0.003356613,-0.00069563027,0.0091390135,-0.00009991648,-0.0059234346,-0.007167854,-0.030662484,-0.0032719926,0.01709666,0.008535055,0.039024983,0.021861954,-0.00640461,-0.003283607,-0.02334862,0.028113915]},{"id":"interface-GatewayGuildUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildUpdateDispatchData\nDescription: GUILD_UPDATE — full guild object","meta":{"url":"/docs/typedefs/GatewayGuildUpdateDispatchData"},"embedding":[0.0061849062,0.014053429,-0.0023221194,0.020152565,0.01679804,0.0081131235,-0.03367232,-0.0037198383,-0.003808784,-0.006772584,0.013900951,-0.023341907,-0.024460081,-0.0013595993,0.03184258,-0.027928965,-0.028665945,0.023837462,-0.020343164,0.044981137,-0.005835477,-0.016035648,0.049047228,0.012731949,-0.021588404,0.009904745,0.004688712,0.019555358,0.017280888,-0.019377466,0.018094108,-0.021080144,0.057433542,-0.027446117,-0.0036753656,0.031385142,-0.023748515,0.005765591,-0.016582029,-0.03837374,0.016734507,-0.028056031,0.015451147,0.005797357,-0.055959582,0.024841277,-0.008811982,0.0053240387,0.0017217356,0.026582073,-0.022681165,0.017560432,0.0011523239,0.04688712,0.025425779,-0.029225033,0.008036884,0.009644261,0.002655666,0.021143675,-0.027649421,0.0038596103,-0.01133423,-0.023468971,0.021918774,-0.013812005,-0.04963173,0.044447463,0.041016698,0.023049656,0.0013794533,-0.024472788,-0.028996315,-0.026022986,0.014968299,0.008919988,-0.00979674,-0.014981005,0.017001346,-0.004650592,0.011963204,0.021740884,-0.06485416,-0.07740822,0.037357215,-0.018373651,-0.039593566,-0.0101652285,0.005250976,0.009695087,-0.027014095,0.026073812,-0.036620237,0.013812005,-0.019123336,-0.06846281,0.03176634,0.010095343,-0.023138601,0.04061009,0.08838666,-0.039669804,-0.027115747,-0.08183009,0.015387615,-0.021245329,-0.041652024,0.017611258,-0.045616463,0.008773863,-0.09443498,0.028869249,-0.0057401774,-0.03425682,-0.0069123553,-0.010806909,0.040000174,0.005273212,0.034765083,0.0014064547,-0.022986123,0.0032385783,-0.0041010343,-0.0439392,0.021842536,0.003948556,0.012534997,-0.022744698,-0.06678555,-0.008653151,0.023570623,-0.03369773,0.007668394,0.018767554,-0.03700143,-0.014587103,-0.02369769,-0.009974631,-0.027700247,-0.055146366,0.0050063753,-0.030495686,0.005412984,0.027471531,-0.04111835,0.020203391,-0.013507048,0.016518496,-0.0010784672,0.029580815,-0.08040696,0.05519719,-0.011601067,-0.02589592,0.032198362,0.022909883,-0.021779003,-0.01841177,-0.02200772,0.007382497,0.0014683991,-0.05809428,-0.015095364,0.009167765,-0.05590876,-0.053824887,0.0033227592,-0.006213496,-0.07181734,-0.0077700466,0.026251704,-0.024155125,-0.021779003,-0.0012063268,0.0143583855,0.020889545,-0.052655883,-0.012681123,-0.05575628,-0.05072449,0.05336745,-0.02904714,-0.0010546425,-0.050495774,-0.021321567,0.009275771,0.00075127394,0.016886987,-0.04848814,-0.012954313,-0.03069899,0.02146134,0.044117093,0.036620237,0.02010174,-0.034053516,0.028742185,-0.030394034,0.045641877,-0.0045807064,0.032249186,-0.040076412,0.04584518,-0.014904766,-0.004618826,-0.0035197104,0.034942973,-0.0058037103,-0.015730692,0.010349473,0.012751008,0.0033195824,-0.039593566,0.031969644,-0.044117093,0.020406697,-0.0499621,0.020787893,0.006518453,-0.0030479804,0.013684939,0.04401544,0.026607485,-0.005933952,0.031156426,0.011175398,0.014460037,0.0058799493,-0.013735766,0.011111866,0.025019169,-0.016416844,0.004720478,-0.06297359,-0.009116939,-0.008627738,0.016556617,0.01841177,0.03484132,0.03341819,-0.03268121,-0.027090335,0.0044123447,-0.000093164716,-0.018843792,-0.025870508,0.01393907,-0.020813305,-0.016454963,0.06424425,0.032833688,0.042084046,0.018653195,-0.044981137,-0.022795524,-0.0037611346,0.034155168,0.018144934,0.031867992,0.04094046,0.006994948,0.0028478524,-0.017992456,0.026759963,-0.020114446,0.024637973,0.041982394,0.026709137,-0.01844989,0.02251598,-0.0030702166,0.01393907,0.048615206,-0.023926407,-0.006057841,-0.0021982307,0.012820895,0.032859102,0.030597338,-0.040101826,-0.033824798,-0.025387658,0.008119476,0.038348325,-0.010705257,0.03435847,0.027598595,0.020114446,0.04391379,0.034815907,-0.037103083,0.009936511,0.025667202,0.0053049787,0.009110586,0.025031876,-0.0028923252,-0.021562992,0.03011449,0.027319051,0.0121792145,-0.0042979857,-0.044803247,-0.022211025,0.00052533584,-0.017547727,0.07222395,-0.023672277,-0.017280888,-0.00026941826,0.01844989,-0.025768854,-0.033036992,0.034942973,-0.015235136,0.0041359775,0.033367362,0.054892235,0.021334274,0.032452494,0.03550206,0.02622629,-0.009529902,-0.030724404,0.0041073877,-0.05123275,-0.045540225,-0.023316493,-0.015336788,0.023405438,0.02978412,-0.020521056,0.010603604,0.0039612628,0.036035735,0.06480333,-0.029860359,0.029225033,0.035552885,-0.046099313,-0.0062865587,-0.018132227,-0.009707794,-0.053316623,0.036620237,-0.028538879,-0.02365957,0.04518444,-0.01712841,0.019275814,0.022528687,0.019504532,0.017623965,-0.004825307,-0.00905976,-0.05550215,0.046124727,0.0010602016,-0.0070013013,0.047751162,-0.017230062,0.004974609,-0.00047173013,0.02970788,-0.015425734,0.044650767,-0.014510863,0.04963173,-0.015641745,0.0050190818,-0.004949196,-0.032376252,-0.05255423,-0.014803114,-0.0023507092,-0.017928923,0.0064422134,-0.004806247,0.006588339,-0.031537622,-0.00058052986,0.04243983,0.017293595,0.012357106,0.029402925,0.013354569,-0.017967042,0.039746042,-0.044142507,-0.041016698,0.03598491,0.00030694227,-0.017839976,-0.030266969,-0.046023075,-0.02146134,0.038882,0.032350842,0.026251704,0.00032461228,0.04271937,0.020203391,0.0018408594,-0.03435847,-0.036442343,0.04437122,0.011772606,0.04030513,0.046378855,-0.01819576,0.022719286,0.0028637354,0.02365957,-0.041245416,0.035197105,-0.046785466,-0.0019313934,-0.025984867,-0.018627781,0.023977233,0.0017392071,0.03756052,0.005066731,0.03964439,0.043659657,-0.026759963,0.037204735,0.015108071,-0.017179236,-0.06907273,-0.077459045,0.025883213,0.017611258,0.006324678,0.078933,0.007814519,0.0030559218,-0.013989896,0.0142567335,-0.0035737131,-0.033773974,-0.007712867,-0.02167735,0.021512166,-0.02754777,0.023735808,0.031385142,-0.026327942,0.04228735,-0.011906024,-0.016124593,0.029504577,0.0016105534,0.049682554,-0.055603802,-0.004669652,-0.037763823,0.065413244,-0.020762479,-0.017446073,-0.008360901,0.016035648,-0.04360883,0.06947934,-0.029148793,0.008487966,0.0014914296,0.01327833,-0.002204584,0.040000174,-0.056315366,-0.012109329,-0.0050063753,0.037789237,-0.0050381413,-0.0020505171,-0.03359608,0.034485538,0.030139903,0.048716858,-0.043405525,0.004946019,-0.022897178,0.004266219,0.05377406,0.042516068,-0.019707836,-0.013862831,0.01201403,-0.008373607,-0.024231363,0.0028939135,0.043735895,-0.014002603,-0.00387867,-0.012115682,-0.033773974,-0.071512386,0.006937769,-0.010603604,0.009644261,-0.013227504,0.012407932,0.00742697,0.039669804,-0.006375504,-0.0258578,-0.008507025,-0.015616332,-0.027242813,-0.025946746,0.0039358493,0.0070966003,-0.037128497,-0.023608744,0.007573095,-0.0044885837,0.016061062,0.0034752376,0.053469103,-0.01775103,0.028106857,0.016251659,-0.03715391,0.0006786084,0.013532461,0.031461384,-0.084676355,-0.00933295,0.006213496,0.013214797,-0.041652024,0.021181796,0.031131012,0.0013866007,-0.025260594,0.008792923,-0.02167735,0.04523527,-0.013379982,0.0103558265,0.019034391,0.0025317774,0.0055495794,0.02127074,0.011639187,-0.013723059,0.02010174,0.015171603,-0.0040247953,0.015324082,-0.028818423,0.000016528424,0.024218658,-0.000044472876,0.021880655,-0.0070711873,-0.011321523,-0.0018551542,0.0051080273,0.023303786,-0.01745878,0.0073634377,-0.017941628,-0.032986168,0.0002735876,-0.006248439,0.012547704,-0.015527387,-0.008487966,-0.021283448,0.041829918,-0.016200833,0.021740884,0.02945375,0.020381283,0.0017630318,0.032122124,0.013532461,0.011461295,0.0037897243,-0.09789115,0.024879398,0.047852814,-0.0579418,0.010749729,0.0055051064,0.008055944,-0.031080186,0.04424416,-0.02519706,0.03832291,0.017382542,0.0090407,0.016010236,-0.023164015,-0.008373607,0.0015192252,-0.036137387,0.022808231,-0.016378725,0.027039507,-0.026912443,-0.024218658,0.020406697,0.017191943,0.012789128,0.037789237,-0.023468971,-0.0040470315,0.003723015,0.012058502,0.0016613796,-0.035197105,-0.033799384,-0.013087732,-0.026150052,0.02523518,-0.021080144,-0.021207208,0.021486752,0.0029574463,0.011149985,0.024447374,0.009822153,0.044650767,-0.03468884,-0.0008505437,-0.013379982,-0.03524793,-0.01782727,-0.054892235,-0.03865328,-0.009479076,-0.036416933,-0.041067522,0.03913613,-0.036213625,0.014637929,-0.029072555,0.015794223,0.024066178,-0.007522269,-0.0013468928,0.056569498,-0.025654497,0.025578257,-0.025158942,-0.025984867,0.019491825,-0.032859102,-0.03166469,0.0258578,0.005066731,0.044828657,-0.011569301,-0.020533761,0.051741015,-0.02490481,0.0011086452,-0.03756052,-0.015972115,0.018920032,0.032554146,-0.0079479385,0.009282124,-0.036137387,0.030241555,-0.0051588537,0.053519927,0.02630253,0.0394665,0.04325305,0.024053473,0.017700205,0.0233292,-0.008621384,-0.041524958,-0.013456222,0.0140407225,0.008513379,0.028157683,-0.037713,0.01125799,0.032986168,-0.00867221,0.048513554,0.0040883278,0.029606229,0.002295118,0.011245284,0.028640531,0.009911098,-0.020482935,-0.0035197104,-0.006937769,0.037585933,-0.00045306742,-0.023125894,-0.019936554,-0.016251659,0.021435926,-0.014129668,-0.026124638,-0.0024634795,0.005136617,-0.011963204,-0.0031941053,0.022744698,-0.012509584,0.022211025,0.016886987,-0.047674924,-0.01782727,0.0032528732,0.005673468,-0.032249186,0.017776443,0.025934039,-0.0041423305,0.026480421,0.036874365,0.0018535659,-0.017471487,-0.0082910145,-0.031867992,0.00042963974,0.00843714,-0.030546512,-0.015679866,-0.02729364,0.043456353,0.010521011,0.0014104255,-0.0064072707,0.007280845,0.009224945,0.01452357,-0.01393907,0.028538879,-0.004625179,0.0012746244,-0.009625201,-0.014028016,0.0027541416,-0.01580693,0.00004936191,0.012058502,-0.03895824,0.03532417,-0.04271937,0.008678564,-0.034638017,0.0074333237,-0.0059466586,-0.04754786,0.012992433,0.026150052,0.0058195936,0.0361628,0.0449049,-0.026480421,0.04271937,0.056874454,-0.026327942,0.0027080805,-0.042236526,-0.008005118,0.006537513,-0.007357084,-0.012331693,0.0060864305,0.008659504,0.015120777,0.0037897243,-0.032325428,-0.014129668,-0.04012724,0.019834902,-0.007039421,-0.0077764,-0.027319051,0.017280888,-0.017052172,0.013875538,0.030266969,0.013379982,-0.00546381,-0.012033089,0.018233879,0.0021172266,0.017560432,-0.0373318,0.015717985,-0.014917473,0.005667115,0.020381283,-0.08742096,0.013875538,0.047090422,-0.021219915,0.019288521,0.0031385142,-0.009892038,0.029479163,0.007573095,-0.040915046,0.026073812,-0.03407893,-0.012960667,0.005673468,0.06048311,0.006369151,-0.007185546,0.031486794,0.009529902,-0.007897112,0.0068107033,0.014599809,-0.01135329,0.028437227,-0.0076747476,-0.012935254,-0.0014739581,-0.021664644,0.01841177,-0.007357084,0.039263196,-0.027700247,-0.030317795,-0.012763715,-0.0005241446,-0.017649379,0.0006909179,0.033570666,0.023570623,-0.01844989,0.009180472,0.0052287397,-0.01745878,0.0038723168,-0.011531182,0.026378768,-0.02597216,0.023532504,-0.008862808,0.023684982,-0.019949261,-0.002695374,0.010870442,-0.016061062,0.014752288,-0.0013302155,-0.018792966,0.010000044,-0.011175398,-0.032909926,0.010641724,0.0051588537,0.012401579,-0.024688799,0.0043233987,-0.023507092,0.000315678,-0.0055908756,0.013850124,0.00909788,0.009574375,0.037280977,0.005587699,-0.015057245,0.0035292404,0.065972336,-0.025438484,0.0003037656,0.01712841,0.035044625,0.019555358,0.022744698,0.025247887,-0.0034275881,0.02047023,-0.007401557,-0.006778937,-0.011143632,-0.0038151373,-0.027827313,0.0045807064,-0.008926341,0.011385056,0.025400365,0.0036118329,-0.00071474264,0.0034784141,-0.035298757,-0.026861617,-0.0024364782,0.012979726,-0.015489267,0.026480421,-0.03301158,-0.055044714,-0.026200878,-0.0060165445,0.012471464,0.009561668,0.017636672,0.0033577022,0.07303717,-0.0063151484,0.004374225,-0.012744656,-0.01716653,-0.00014959961,-0.0017392071,0.020114446,0.0018106813,0.0030797466,-0.0027700248,-0.035120863,-0.024167832,0.007687454,0.044828657,0.0074333237,0.013202091,-0.0020584587,0.032147534,-0.0029129733,-0.012033089,-0.018767554,0.015616332,-0.018920032,-0.0103558265,-0.00036412166,0.017102998,-0.021626525,-0.009587081,0.0034784141,-0.023837462,-0.03763676,-0.019961968,0.0579418,0.0075349757,0.0037071318,-0.02245245,0.007814519,0.005295449,0.014917473,-0.068615295,-0.034434713,-0.013557874,0.022401623,0.015895877,-0.03931402,0.046632987,-0.025019169,0.025336832,0.024053473,0.041524958,-0.02398994,-0.009447309,-0.033824798,-0.018055987,-0.016925106,-0.025400365,-0.060533937,-0.038678695,-0.022414329,0.038272087,-0.0081766555,-0.022465155,-0.016556617,0.040051002,0.013036906,-0.03036862,0.02047023,0.008424433,0.007573095,-0.035273343,-0.011518475,-0.0039612628,0.05270671,-0.010648077,0.030317795,-0.027471531,-0.008132183,0.0030781582,-0.01679804,0.03862787,0.0016756745,0.010184288,0.00018335134,-0.039263196,0.0289709,0.013507048,-0.0055178134,-0.036467757,0.018043282,0.01646767,-0.0040375018,-0.034638017,0.013595994,0.03601032,-0.017725617,0.011874258,0.0010864089,0.008761156,0.0058545363,-0.002990801,0.0068361163,-0.001282566,-0.00046021485,-0.0057846503,-0.04533692,-0.010482892,0.015349495,-0.02266846,0.009974631,-0.0033831152,0.0034180582,0.04155037,-0.036518585,0.0060896073,-0.0911821,-0.005111204,-0.044472877,0.009485429,-0.020571882,-0.0069314153,-0.01734442,0.024383843,0.0143329725,-0.0036594823,0.020813305,0.031486794,0.0010149345,0.046302617,0.0058100633,0.008570558,-0.0019981028,-0.035095453,0.004650592,0.033799384,0.004374225,0.040686328,-0.024879398,0.039263196,-0.0079225255,0.0042026867,-0.02266846,0.00064763625,0.021486752,-0.0013977189,-0.024815865,0.026200878,-0.009301184,-0.015629038,-0.00040105003,0.008983521,-0.0355783,-0.025349539,0.018246586,-0.00018900972,-0.022477861,0.0047236546,-0.0042979857,-0.0014342503,0.042516068,0.042312764,0.016594736,0.005562286,0.007242725,-0.007496856,-0.022693872,0.030139903,0.013532461,0.03918696,-0.033875626,0.0143329725,-0.02336732,-0.007306258,-0.0174969,-0.050165404,0.014104255,0.0008497496,-0.011880611,0.010235115,0.009523548,0.02105473,-0.013735766,-0.051004034,0.008684917,0.008532438,-0.026759963,0.008297368,0.009587081,-0.0056353486,-0.04673464,0.0013524519,-0.023354612,0.006753524,-0.0047014183,-0.005247799,0.027852727,-0.016607443,0.006397741,0.0052859187,0.016747214,-0.05105486,0.03062275,0.017890802,0.018310118,0.014777701,0.011429529,-0.012884427,0.02086413,-0.008132183,0.04368507,0.020165272,0.009313891,-0.015578213,-0.010590898,-0.013659526,0.009186826,0.005536873,0.013176678,-0.033164058,0.044066265,-0.02336732,0.008538792,-0.022795524,0.006569279,0.028005205,-0.015578213,0.046200965,0.017992456,-0.015972115,-0.03374856,-0.00933295,-0.022236438,-0.008716684,-0.009815799,-0.007611215,0.0065120994,-0.0060451343,0.021321567,-0.010565485,0.08792923,-0.012687476,0.0018329178,0.00682341,-0.00015446382,0.009936511,-0.02486669,0.028818423,-0.0025635436,-0.008811982,-0.0024634795,-0.0005837065,-0.0060641943,-0.008659504,0.036848955,-0.032249186,-0.013265624,0.0065756324,0.008583265,-0.027064921,0.0063151484,-0.0032751097,-0.0034593544,-0.005136617,-0.0037325448,-0.044396635,0.03822126,-0.020368576,0.030266969,0.027242813,0.028742185,0.018424477,0.006375504,0.017052172,-0.0050222585,-0.01514619,0.009447309,-0.026836203,0.016645562,-0.016111888,0.033646908,-0.0007139485,-0.028691357,-0.0008433963,-0.030190729,0.0123698125,0.02358333,-0.053723235,-0.025260594,-0.015743397,-0.0100889895,-0.028691357,0.008055944,-0.025603669,0.0046315324,-0.037357215,0.01199497,0.06749712,-0.0022284088,-0.008945401,0.0012214157,-0.007217312,-0.012643003,-0.017700205,0.013659526,0.03598491,-0.0008283073,0.0031845756,-0.002164876,0.05179184,-0.0025127174,-0.008646797,-0.012967019,0.009644261,0.00485072,0.001002228,-0.007306258,-0.034053516,-0.017763738,0.036416933,0.0024904811,0.00073578785,-0.007858993,0.051105686,-0.07984787,0.054231495,0.004920606,-0.0056194654,0.010997507,0.0026747258,0.022083959,-0.017191943,-0.0142567335,0.028233923,0.035044625,-0.00418998,-0.0062452625,-0.015425734,-0.03326571,0.0142186135,-0.0142186135,0.03435847,0.020902252,-0.00041415365,0.027395291,-0.0015779929,0.031003946,-0.0035578301,0.005711588,-0.019059803,-0.024396548,-0.020914959,-0.0025031876,-0.01911063,-0.004618826,-0.036264453,0.0083672535,-0.05090238,-0.0066772844,-0.011931437,0.008640444,0.01800516,-0.004123271,-0.024917517,-0.01782727,-0.0081893625,0.0059148925,-0.0064549204,0.0026286645,-0.013964483,-0.029402925,-0.005581346,0.04020348,-0.03359608,0.0035228871,0.013418102,-0.024930224,0.003116278,-0.011067392,-0.005311332,-0.0048570735,0.006594692,-0.0007445236,-0.00033295093,-0.011308817,0.0013937481,0.0031003947,-0.039746042,-0.010679843,-0.04170285,0.00010284352,-0.009148706,-0.051639363,-0.059619065,0.0072999047,-0.031359732,0.02064812,-0.017522313,0.0028621473,0.016823454,-0.00040124857,-0.006664578,-0.04261772,0.0035832431,0.015069951,0.018183053,-0.006778937,-0.021296155,0.0109848,-0.007668394,0.007808166,-0.0061499635,0.008036884,-0.0099619245,-0.003904083,-0.030851468,-0.026683725,0.008144889,-0.023341907,-0.011200812,-0.013862831,-0.022325383,0.0037166618,0.03318947,0.0075858016,-0.0061309035,-0.0081385365,-0.008043237,-0.0079225255,-0.015641745,0.021321567,-0.0069822413,0.005533696,-0.026455007,-0.012878074,-0.0066201054,0.0047967173,0.0024428314,-0.012109329,-0.0051239105,-0.025476605,-0.002225232,0.0048030703,-0.006372328,0.021105556,-0.008468906,-0.008062297,0.031486794,0.02930127,0.003462531,-0.02311319,0.013189384,0.039669804,0.0006504158,0.017191943,0.025578257,0.020114446,0.02630253,0.0036499524,0.037280977,0.015781518,0.011289757,-0.008723036,-0.051207338,-0.012579471,-0.0070203613,0.009625201,-0.0027795548,0.034485538,0.007668394,0.0061817295,-0.0011300875,-0.007668394,-0.034155168,-0.013532461,-0.009263065,-0.013786592,-0.0099619245,-0.017916216,-0.0072236657,0.00042050693,0.018055987,-0.01514619,-0.0082274815,-0.0021140499,0.018284705,0.0030066841,-0.01197591,-0.025019169,0.023151308,-0.002836734,0.054282323,0.009828505,0.006562926,-0.048716858,0.02402806,-0.004374225,-0.010540072,0.0018122697,-0.014421918,0.039059892,0.007452383,0.014371092,-0.024523614,0.022211025,0.015362202,-0.019390173,0.0020441639,-0.009980984,0.0009863449,0.0024412433,-0.0021616993,-0.005597229,0.004380578,-0.0018424477,0.008430786,0.008621384,0.014955592,0.049098056,0.009911098,-0.034460124,0.02263034,0.049504664,-0.017255476,0.019606184,-0.0027747897,-0.023977233,-0.011035627,-0.030190729,0.020152565,0.0037293683,0.007928878,0.007515916,-0.039263196,0.02630253,0.00839902,0.0012936841,0.016721802,-0.0034212347,-0.010972094,-0.012045796,-0.012922547,0.030139903,-0.005651232,-0.0037452513,0.003376762,0.017319009,0.0058894795,-0.011054686,0.017623965,0.004555293,0.015501973,0.017623965,0.0021712293,0.028360987,0.003081335,0.027598595,0.021867948,0.00033453928,-0.012820895,0.037408043,0.009942864,0.0037261916,-0.012198274,-0.0072554317,0.01547656,0.010565485,0.017064877,0.009568022,0.00039648364,-0.031537622,-0.008621384,-0.011702719,-0.003497474,0.00907882,0.0061658467,-0.03804337,0.01654391,0.013964483,-0.037357215,-0.01588317,0.0012222099,-0.013583287,-0.03804337,0.002635018,0.011365997,-0.022655753,-0.03639152,0.016188126,-0.041092936,0.0055400496,0.023684982,-0.012039443,-0.023062363,0.035934083,-0.0043170457,0.022935297,-0.0012881251,0.039923936,-0.020838719,-0.022363503,-0.034129754,-0.0081512425,0.020190686,0.008303721,0.05146147,0.015108071,-0.031995058,0.02564179,0.01448545,0.012751008,-0.007496856,-0.027725661,-0.0013699234,0.00038576248,-0.011080099,0.008805629,-0.017179236,0.0046823584,-0.033723146,0.0016915576,0.03468884,-0.01566716,0.03766217,0.01195685,0.001653438,-0.008634091,-0.02245245,0.015730692]},{"id":"interface-GatewayHelloData","type":"interface","source":"main","text":"Interface: GatewayHelloData\nDescription: // Incoming (gateway -> client)\nProperties: heartbeat_interval: number","meta":{"url":"/docs/typedefs/GatewayHelloData"},"embedding":[-0.033026043,-0.023654781,0.058653075,0.0024285656,0.0129727665,0.021376278,-0.017186772,0.009052762,0.03187454,0.0066517587,-0.0021177216,0.012654266,-0.033883546,-0.019097775,0.018620024,-0.014222269,-0.020506527,0.044541057,-0.0042568804,0.07075609,0.0010312982,0.017370522,0.035182044,0.044075556,0.025406534,0.004612131,0.04689306,0.0055615073,0.00035927,-0.05390007,0.02991454,-0.040670052,0.029424539,-0.010277763,0.03074754,0.05463507,-0.010430888,0.033491544,-0.027342036,-0.012366391,-0.028224036,-0.008648511,0.014491769,0.02962054,-0.047897562,-0.03748505,-0.021217028,0.009830638,0.009855138,-0.0007380635,-0.028052537,-0.0064373836,0.012593016,0.0789391,0.02998804,0.0082871355,0.03050254,0.00796251,0.026974535,0.035133045,0.0043579433,0.011753891,-0.009279387,0.004067005,0.02198878,-0.0026046596,-0.028493537,0.0063577583,-0.005359382,0.05488007,0.017591022,0.06953109,-0.049759563,-0.027048035,-0.034569547,-0.005867758,-0.047530062,-0.011478265,0.048069064,0.0007947198,-0.028812038,-0.0016905022,-0.021743778,-0.06502309,0.016023021,-0.03748505,-0.052185066,-0.048142564,-0.0138057675,0.019881776,-0.0040547554,0.010871889,-0.03087004,-0.03077204,-0.02984104,-0.050666068,0.03148254,0.020580027,-0.03750955,-0.00774201,0.057379074,-0.062426083,-0.035868045,-0.007625635,0.020874027,-0.016072022,-0.0052613816,0.008385136,-0.032266542,-0.016317021,-0.0784491,0.012654266,0.016758021,0.004204818,-0.0066578835,-0.009163012,-0.0038740674,-0.08080111,0.03660305,0.00051947724,-0.004826506,0.017958524,0.010228763,0.00092564186,-0.03969005,-0.0022310342,0.013413767,0.0058738827,-0.048363063,-0.012280641,0.044394057,-0.01533702,-0.008036011,0.008648511,0.013989518,-0.00012891227,-0.0005125866,0.0060606953,-0.034618545,-0.010437014,-0.0017609398,-0.034349043,0.06502309,0.029400038,0.03035554,0.08800411,-0.022491029,0.02991454,0.021609029,0.022001028,-0.0044865683,0.04601106,-0.04375706,-0.006823259,0.00379138,0.06786509,0.02389978,0.018032024,-0.048436563,-0.041184552,0.029106038,-0.034177545,0.010326764,-0.0020488151,-0.067032084,0.004878569,-0.013720018,-0.041576553,-0.04787306,0.0074112597,0.017578773,-0.03819555,-0.00097081374,0.006419008,-0.00802376,-0.00742351,-0.03055154,-0.028322037,-0.008519886,0.021094527,0.06330808,0.028836537,0.005586007,-0.050029065,-0.0017701273,-0.011300639,-0.018142274,0.036627546,-0.00577282,-0.05345907,-0.02206228,0.029081538,-0.016476272,0.019171275,-0.004030255,-0.023850782,0.019979777,-0.03025754,-0.019734776,-0.0070988843,-0.0035126922,-0.059437077,0.018840525,-0.02326278,0.0122683905,0.008372886,0.018081024,-0.0041343803,0.008121761,0.03748505,0.028885538,0.007019259,-0.012311266,-0.030233039,-0.05492907,0.041282553,-0.00030854729,0.01145989,0.03910205,-0.007588885,-0.024255032,0.017664524,0.035427045,0.0013360174,0.007068259,0.03893055,-0.010118513,-0.012323516,-0.007092759,-0.028371036,-0.0019661277,-0.027146036,-0.004419193,-0.09408012,-0.0022570654,0.03231554,0.03158054,-0.01142314,0.026460035,-0.012145891,-0.041454054,-0.04659906,0.0020212526,0.014491769,0.0027531912,0.002278503,-0.014871519,-0.008164636,-0.020972027,0.04603556,-0.014773519,0.034692045,0.024867533,-0.03104154,0.003748505,0.021670278,-0.010626889,-0.041527554,-0.0072030094,-0.006835509,0.0057942574,-0.05375307,0.018497525,0.026533535,0.012372516,-0.04500656,-0.0091385115,0.002194284,-0.040621053,-0.01575352,0.035451546,-0.032340042,0.08810212,-0.018632274,-0.03202154,-0.010865764,0.025002282,-0.004759131,-0.017137771,-0.009628513,-0.051401068,-0.006296508,0.01626802,0.033393543,-0.03185004,0.04657456,0.02289528,0.03185004,0.037166547,0.02291978,-0.019232525,0.075264096,0.08285911,-0.019134525,0.034741044,0.03804855,0.0074173845,0.017162273,0.028371036,-0.026264034,0.09153212,0.0037423798,-0.039494053,0.0031160978,0.0064128833,0.03057604,0.04508006,0.021094527,0.03689705,-0.010841264,-0.00033457857,-0.01142314,-0.015912771,0.013499518,-0.029326538,-0.01542277,0.058310077,0.009089512,0.010590139,-0.034177545,-0.0074908845,-0.020053277,0.04733406,-0.033761043,0.00765626,-0.028395537,0.028028036,-0.008495386,-0.007478635,0.029718539,0.01599852,-0.050960068,0.027856536,-0.018999774,-0.010486013,0.035598546,-0.051352065,0.03079654,-0.028077036,0.06551308,0.04554556,-0.075558096,-0.048583563,-0.01499402,0.054831073,-0.014112018,-0.029424539,0.0015802521,-0.01537377,-0.03050254,-0.017958524,-0.004789756,-0.013634268,-0.016476272,-0.020482026,-0.012090766,0.050151564,-0.027195035,-0.040596552,0.025921034,-0.06933509,0.021829529,-0.0046274434,0.004599881,0.018117774,0.027023535,-0.01599852,-0.031384543,0.0090466365,-0.019857276,0.014638769,-0.006645634,-0.05968208,0.008078885,-0.033026043,0.005141944,-0.008152385,-0.012715517,0.00053057884,-0.0061219456,0.018975275,0.0745291,-0.016794771,0.015949521,0.047897562,0.008777136,-0.062769085,0.042360555,-0.0780571,0.004933694,0.040915053,-0.0025372845,-0.027636036,-0.032438044,0.0043579433,-0.00034051217,0.03831805,-0.0033473168,0.014136518,-0.0004268365,0.0028955976,-0.009279387,-0.0061464454,0.0072030094,0.0018512837,-0.033589542,-0.0005451257,0.04057205,0.034912545,-0.033467043,0.010020513,-0.014124269,0.020923028,0.03170304,0.013720018,-0.037240047,-0.039347053,-0.012593016,-0.01623127,-0.004823444,-0.004933694,0.03809755,-0.033075042,0.03765655,0.01194989,-0.008856761,0.019624526,0.005279757,-0.017137771,-0.06972709,-0.011974391,0.020224776,0.014602019,0.019551026,0.020653527,0.019257026,0.037705548,-0.034177545,0.011784515,-0.010933139,0.016500771,-0.02386303,0.010896389,0.029718539,-0.022907529,0.016255772,0.021511028,-0.026215034,0.011429265,-0.06345508,-0.034863546,-0.033467043,-0.027562536,0.062916085,-0.01123939,0.03006154,-0.043487556,0.08227111,-0.03165404,0.005512507,-0.020714777,-0.031458043,-0.03954305,0.05164607,-0.033859044,0.0012311266,0.010853514,-0.025357533,-0.01503077,0.02295653,-0.0047070687,0.0029216288,0.03885705,0.008538261,-0.010479889,0.024622532,0.016905023,0.043169055,0.01532477,-0.0010772358,0.027097035,-0.012201016,-0.041013055,0.0114721395,0.06360208,0.08501511,0.02375278,-0.050519064,-0.018019773,-0.02235628,0.012378641,0.012997267,0.02363028,-0.013377017,0.013095267,0.01549627,-0.023691531,-0.017676773,0.01615777,-0.010492139,0.010847389,-0.04583956,0.028836537,-0.014675519,0.055664074,0.0041098804,-0.02323828,-0.036333546,-0.049465563,-0.063357085,-0.012519516,0.010259388,-0.0017839086,-0.021547778,-0.06757109,0.004210943,0.017603273,0.06218108,-0.017505273,0.006045383,-0.010651389,0.019024275,-0.020800527,0.0014255956,0.004786694,-0.004419193,-0.0129727665,-0.04532506,-0.008654636,0.00567482,0.017468523,-0.03028204,-0.029081538,0.052185066,0.0075766346,0.028444538,-0.0064986334,-0.009389637,-0.0030839415,-0.041380554,-0.006345508,0.017346023,0.0057023824,0.006878384,-0.0057360698,-0.0060974453,0.05365507,-0.029106038,-0.0048173186,0.021278277,0.00004514801,-0.035549548,0.01547177,-0.0030043165,0.003414692,0.0030043165,-0.013217767,-0.031531543,0.0028266911,0.03216854,-0.016709022,-0.009261012,0.009665263,-0.03932255,-0.024830783,0.054978073,-0.0040915054,-0.0055216947,-0.039347053,-0.03689705,-0.013205517,-0.0019890964,-0.013095267,-0.014222269,0.011306765,0.018742524,-0.049343064,0.0034361295,0.011502765,0.005390007,-0.014712269,-0.033271044,-0.029939039,0.05365507,-0.036064047,0.02378953,0.026533535,0.0041527553,0.017909523,0.012397016,-0.014222269,0.024034532,0.055272073,-0.0033320044,-0.02320153,-0.034765545,-0.008262636,-0.020420777,0.00036424657,-0.0036015047,-0.010406389,0.01176614,-0.0019737838,-0.014369269,0.029106038,0.048779562,0.018877275,0.016954022,0.0063761333,0.0027608473,0.004753006,0.029375538,-0.0070805093,-0.059780076,-0.045129057,0.008017635,-0.026925536,0.027538035,-0.0039016302,-0.011123015,-0.0017349086,0.04650106,-0.0024836906,-0.0036260048,-0.050004564,0.05277307,-0.015839271,-0.03861205,-0.04554556,-0.0054175695,0.010222638,-0.020237027,-0.026166035,-0.056693073,-0.05296907,0.008428011,-0.011735516,0.019759275,-0.0074908845,-0.03981255,-0.011074014,0.004575381,0.013646518,-0.0058126324,0.049882066,0.012936017,-0.0021070028,0.008813887,0.0016154709,0.012936017,-0.025480034,-0.017934022,0.050127067,-0.02258903,0.023434281,-0.017297022,-0.05321407,0.0063332585,-0.0002327503,0.013254518,0.0075398847,-0.0021299715,-0.012427641,0.04750556,-0.0021299715,0.035892546,0.06654209,0.024781782,-0.01590052,0.005607445,0.058653075,0.056791075,0.0759011,-0.0022340966,-0.021425277,-0.0066946335,-0.019845026,0.008550511,0.004704006,0.0021008777,-0.011429265,0.017456273,-0.04628056,-0.005285882,0.025798533,-0.0015611114,0.050274067,0.018460775,0.0041282554,-0.018375024,0.034594044,0.019722525,-0.01157014,0.005322632,-0.019930776,-0.006308758,0.03148254,0.043095555,-0.01509202,0.0075215097,0.014896019,-0.026509035,0.02340978,-0.0025939408,-0.006664009,0.009499887,0.007944135,0.032854542,0.011159765,0.01503077,0.002423972,0.015986271,-0.021621278,-0.019526524,0.026019033,0.021841777,-0.04733406,0.042017553,0.0022999404,0.013928268,0.018779274,0.040817052,-0.03231554,0.019894026,0.0033718168,0.0002798363,0.027366536,0.020016527,-0.0060361954,-0.035843547,0.033516042,0.026509035,-0.00046703184,0.014222269,-0.005212382,0.02370378,-0.016745772,-0.016439522,-0.002368847,0.023924282,0.0029262225,0.018681275,-0.021327278,-0.02312803,0.010032763,-0.020531027,-0.000069671965,0.012427641,0.0028404724,-0.03025754,-0.035794545,0.007686885,-0.014504019,0.029228538,0.0010611577,-0.026337534,0.010271639,-0.0065353834,-0.014528519,0.009616262,-0.020739278,0.01637827,0.004400818,0.055517074,0.0028159723,0.004716256,-0.038073048,-0.03922455,0.00765626,-0.0049245064,0.004030255,-0.009732638,-0.011753891,0.013230017,0.05336107,-0.047236063,-0.035525046,-0.017260272,-0.02397328,0.017738024,0.029400038,-0.017505273,-0.023912031,-0.012378641,0.04608456,-0.0006917431,0.00766851,0.006976384,-0.018301524,-0.0046396935,-0.039714552,0.004581506,-0.02976754,-0.027905537,0.008127886,0.00026720346,0.013389267,-0.08168311,0.019293776,0.028787537,-0.002376503,-0.0015197676,-0.0028665038,-0.0004922975,0.018852774,-0.018583274,-0.06889409,0.014871519,0.0019033463,-0.0037270673,-0.0044804434,0.020849528,-0.024389781,0.012666517,0.042213555,-0.006627259,0.026778534,0.0029583788,0.00068255555,0.021290528,0.042679057,-0.01495727,0.0033565043,-0.0013804237,-0.004455943,0.020053277,0.019061025,0.011858015,-0.029400038,-0.024879782,-0.021658028,0.016623272,0.011245514,0.009536637,0.023471031,-0.0073255096,-0.0038005675,-0.0073193847,-0.02371603,0.016696772,0.039861552,-0.00399963,0.033834543,-0.020702528,0.007772635,-0.018252524,0.008593386,-0.029302038,-0.009187512,0.02271153,-0.023691531,-0.009665263,0.03897955,-0.000009528455,0.019759275,-0.016966272,-0.022907529,-0.00376688,0.03689705,0.026656035,-0.02315253,-0.0025954721,-0.020139026,0.01157014,0.0064557586,-0.0004505709,-0.00034127777,-0.0063883835,0.040376052,0.048069064,0.0052031945,-0.010822889,0.058800075,-0.052136067,0.0010090951,0.035108544,0.0047131935,0.01176614,0.017640023,-0.0082320105,0.018142274,0.040890552,-0.0011652828,0.020996528,-0.0006595868,0.005901445,-0.009444762,-0.011858015,-0.018816024,-0.0025510658,0.040180054,0.008158511,-0.0011913141,-0.01501852,0.020359527,-0.021143528,0.0059136953,0.0019186587,-0.019146776,0.034251045,-0.0044681933,-0.022037778,-0.0071356343,0.0041405056,0.03140904,0.011319015,-0.0073806345,0.009475388,0.018179024,-0.011006639,0.014859269,-0.024279531,0.0039108177,0.036799047,-0.03150704,-0.010277763,-0.016145522,-0.0066333837,-0.0016491584,-0.0028175036,-0.01134964,-0.016892772,0.005279757,0.018326024,-0.021474278,-0.019391775,0.00757051,-0.0021651904,-0.0037025674,-0.022601278,0.0038311924,0.0067620086,-0.010810639,-0.028861038,-0.0083606355,-0.01564327,-0.035500545,0.0028772226,0.019416275,-0.0007101181,-0.043708056,0.010161389,-0.02334853,0.01570452,0.013720018,-0.0028404724,-0.007105009,-0.002570972,-0.057477076,-0.040376052,-0.01549627,-0.0015695333,0.052283067,-0.02316478,0.012335766,0.0037331923,0.03684805,0.0024760345,0.05390007,-0.025798533,0.012041765,-0.018093273,-0.030306539,-0.033540543,0.021388527,0.026705034,0.00086362613,0.0029308163,0.017211273,-0.016292522,-0.043855056,-0.000057517653,0.03895505,-0.0011170483,-0.018595524,-0.0056319446,-0.019146776,0.010841264,0.01597402,0.023875281,0.014259019,0.043389555,0.00007670616,0.03853855,0.022797279,-0.043022055,-0.00040999273,0.009438638,0.028591538,0.025847534,0.0008100323,-0.012446016,-0.027023535,0.036039546,0.03983705,-0.021633528,-0.028983537,0.018448524,0.016819272,-0.01565552,-0.019710276,0.027244035,0.014700019,-0.0044069435,0.012899267,0.012501141,0.0050531314,-0.0014133456,0.025357533,-0.028199537,-0.020616777,-0.032585043,0.025480034,-0.012458266,0.034863546,0.010326764,0.0046029435,0.0090466365,-0.010914764,0.017836023,0.03050254,-0.011845766,-0.002661316,-0.027513536,-0.03758305,-0.025014533,0.01601077,0.025994534,-0.027660536,0.010069513,-0.012280641,0.034888044,0.011227139,0.016329272,0.021290528,0.017566523,0.02301778,-0.021805027,0.010492139,-0.02355678,-0.056399073,0.009548888,-0.027611535,0.006847759,0.017872773,-0.037240047,0.013389267,-0.0022034717,0.021180278,0.010945389,0.017774774,-0.003488192,-0.014210018,0.0009149231,0.008085011,0.017578773,0.0013666424,0.040596552,0.0072213844,-0.0018466898,-0.02301778,0.014932769,-0.011049515,-0.010149138,0.014455019,-0.032560542,0.018179024,0.03079654,0.021682529,0.02378953,-0.004847944,-0.0052093193,-0.008807762,0.011080139,0.028591538,-0.027562536,-0.0019232525,-0.026705034,-0.024683783,-0.012384766,-0.020469777,0.027342036,-0.016059771,-0.04787306,-0.03094354,0.0032370668,-0.012072391,0.03020854,0.0060913204,-0.0065476336,-0.026043534,0.0073193847,0.0022938154,-0.029963538,0.009720388,0.006118883,0.010724889,-0.008048261,0.02213578,-0.017542023,-0.0073990095,-0.0138057675,0.044835057,0.019979777,-0.0009394231,0.008225886,0.00083223544,-0.011227139,-0.028983537,0.00776651,-0.012727766,-0.02265028,0.040719055,0.0063026333,-0.0005849383,-0.0042017554,0.017799273,-0.014834769,0.009003762,-0.004811194,-0.010786139,-0.00076715724,0.0122132655,0.02342203,0.005622757,0.03089454,0.010467638,0.017517522,-0.028689537,-0.004774444,0.01185189,-0.0035586297,0.02386303,-0.013119767,0.025700534,0.006345508,-0.0018175961,-0.0024500033,0.014418269,-0.0075582596,0.0027501285,0.014246768,-0.019342775,-0.016978523,0.020053277,0.0034912545,-0.019208025,0.04576606,-0.0106207635,-0.03042904,0.009371262,0.012323516,0.01180289,-0.0035341296,-0.0060913204,-0.008201386,-0.014479519,0.0027332848,0.029008038,-0.009371262,-0.027366536,0.019085525,0.03209504,0.025700534,0.0038863176,0.004416131,-0.027734036,0.017566523,-0.017640023,0.0005470398,-0.0037178798,-0.014173268,-0.04525156,0.007074384,0.02311578,0.017125523,0.06134808,-0.01185189,0.01501852,-0.0069028838,0.025578033,-0.017076522,-0.01506752,-0.03194804,-0.026705034,0.01537377,-0.00086132926,-0.021290528,-0.008893511,-0.017885024,-0.027464535,-0.002892535,0.010388014,0.010835139,-0.000056656325,0.010608514,-0.042850554,0.018705774,0.00034855123,-0.0008261104,-0.022074528,0.019710276,-0.0013413768,0.019232525,0.057526074,0.004648881,0.012691016,-0.020286025,0.002388753,0.012764516,0.0044835056,-0.0040945676,0.051352065,0.018852774,0.026141534,-0.0011515016,0.01172939,0.0137690175,-0.034251045,-0.0052583194,0.0049122563,-0.013205517,-0.017052023,-0.019845026,-0.010400264,0.007441885,-0.008709761,0.022233779,0.013634268,-0.03275654,0.014516269,-0.05316507,0.011466015,0.033050545,0.034961544,-0.010810639,-0.013499518,0.004348756,-0.015043019,-0.008648511,-0.012262266,0.018350523,0.012727766,0.0015136426,0.027146036,-0.054978073,0.008152385,-0.0046396935,0.012519516,0.012629766,-0.0072948844,-0.020947527,-0.009395762,0.0049551316,0.008954762,-0.021278277,-0.011956016,-0.019048775,-0.018546524,0.017517522,0.011055639,-0.00017571116,-0.027709536,0.012887017,-0.004618256,-0.024647033,0.014173268,0.004719319,0.021719279,0.0031099727,-0.034226544,-0.0000737872,0.028175037,0.051352065,0.022601278,0.005512507,0.0016522208,-0.019404026,0.010577889,0.010149138,-0.010020513,0.02236853,0.008201386,0.01545952,-0.03069854,-0.035035044,-0.01542277,0.0067068837,-0.04677056,-0.027660536,-0.00046664904,0.033197545,0.019318275,0.027611535,-0.009573388,0.01165589,-0.03954305,-0.043879557,-0.03082104,-0.00035371922,-0.005533945,0.0015396739,-0.041454054,0.027783036,0.020751527,0.032805543,-0.011974391,0.0033901918,-0.03143354,-0.040008552,-0.02198878,0.016758021,-0.0050592567,0.00560132,0.013609768,-0.0016644709,-0.0063945083,-0.005233819,0.0008123292,0.015912771,0.005126632,0.020102276,-0.00051028974,0.0017900335,0.020604527,-0.019465275,0.0030242228,-0.03944505,0.008936387,0.019404026,0.02276053,-0.009003762,-0.008066636,-0.044026557,-0.002102409,-0.0077848854,-0.026999036,0.009469262,-0.03905305,-0.009493763,-0.0072397594,-0.025137033,-0.0028496599,0.0057452573,0.009254887,0.004351818,0.017934022,-0.03194804,-0.0137690175,0.0057268823,0.043512058,0.0051358193,0.0015174707,-0.054831073,0.004685631,0.0059994454,-0.018546524,0.0059504453,-0.0016093459,-0.021327278,-0.04527606,0.033810046,0.010320638,0.02282178,0.003013504,0.017027522,-0.006817134,0.012715517,0.017738024,-0.004345693,-0.06125008,0.007833885,0.001914065,-0.008415761,-0.02217253,0.014406019,-0.027636036,0.028542537,0.01619452,0.0013321892,-0.010767764,0.012850267,-0.033785544,-0.026925536,0.004829569,-0.024941033,0.03091904,-0.01537377,0.017738024,-0.002413253,-0.013462768,-0.0033503794,-0.00382813,0.01523902,0.02360578,-0.017456273,0.017762523,-0.01555752,0.0074663847,0.008109511,-0.031972542,-0.049220566,0.01172939,0.011539515,-0.018093273,0.01160689,-0.0054910695,-0.019624526,0.0129727665,-0.008654636,-0.012090766,0.0028848788,-0.0043548807,-0.021903029,0.010969889,0.0015817833,0.009512138,0.016929522,0.010608514,-0.036799047,-0.0042140055,0.010081763,-0.006945759,0.01501852,-0.00771751,0.018313773,-0.01543502,-0.012047891,0.04557006,0.03231554,-0.0044681933,0.016133271,-0.021143528,0.028150536,-0.012801266,0.019355025,0.017346023,0.008722011,0.010829014,0.032266542,-0.007864511,0.037705548,0.012887017,-0.014712269,0.027513536,0.024659282,-0.028665038,0.008875136,0.025774034,0.021743778,-0.028052537,0.020653527,0.020555526,-0.013879268,-0.008225886,-0.014075268,0.01588827,0.005901445,0.029277539,-0.026043534,-0.01544727,0.02408353,0.012513392,-0.004253818,0.016464021,0.026974535,0.034471545,0.010847389,0.00066724303,0.02217253,0.0021697842,0.02397328,0.0018681274,0.029816538,0.015569771,0.034104045,0.013230017,-0.0027133785,0.020800527,-0.015043019,-0.024524532,0.036333546,0.01117814,-0.033197545,0.012219391,-0.0073561347,0.0033320044,-0.002163659,-0.0070437593,-0.041625556,-0.041282553,-0.01553302,0.018742524,-0.016868273,-0.012384766,0.005867758,-0.03020854,0.01561877,0.037779048,0.0082320105,-0.05502707,0.020543277,0.018142274,-0.0073683844,0.010204263,0.014124269,-0.01520227,-0.019171275,-0.033369042,0.011380265,-0.0016996897,-0.0013987987,0.04451656,0.009444762,-0.02187853,0.005481882,0.014516269,0.006786509,-0.007478635,-0.0059994454,0.0011805953,-0.0058953203,0.009689762,-0.003475942,-0.009022137,0.01114139,-0.011184265,0.0036995048,-0.006933509,-0.0027501285,0.02345878,0.03706855,-0.0014286581,-0.012985017,-0.0067436337,0.013989518]},{"id":"interface-GatewayIdentifyData","type":"interface","source":"main","text":"Interface: GatewayIdentifyData\nDescription: // Outgoing (client -> gateway)\nProperties: compress: boolean, intents: number, large_threshold: number, presence: GatewayPresenceUpdateData, properties: { os: string; browser: string; device: string; }, shard: [shardId: number, numShards: number], token: string","meta":{"url":"/docs/typedefs/GatewayIdentifyData"},"embedding":[-0.02790157,-0.019506298,0.02792637,0.016616935,0.0028351094,0.018464638,-0.0058562295,-0.017435381,0.043997675,0.028050378,0.019171478,0.01866305,0.020597558,-0.029439256,0.009647743,-0.03449874,-0.00016237164,0.06006898,-0.006349157,0.06790622,-0.017360976,0.0051276884,0.019146677,0.026066266,-0.021118388,0.02809998,0.01387638,0.021291997,0.0023406316,-0.013566363,0.04337764,-0.030505717,0.057092812,-0.0049850806,0.0029916682,0.03521798,-0.016430924,-0.00043092424,-0.019444294,0.017348576,-0.03112575,0.017633792,-0.015364464,0.011402441,-0.033209067,0.008599884,-0.018204223,-0.039012596,-0.01831583,-0.0015725634,-0.024367372,-0.007583027,-0.0030846735,0.06081302,0.0008788994,-0.0057136216,0.0195311,0.007731835,0.014273203,0.012723115,-0.013219143,-0.012394497,-0.008401472,0.011148227,0.010602596,0.027256733,-0.019419493,0.054959893,0.009337725,0.020225538,0.035292387,0.04037667,-0.014074792,-0.035143577,0.007118,0.032613836,-0.052330945,0.007378415,0.03288665,-0.06294594,-0.021031583,-0.02186243,-0.04198876,-0.066566944,0.006894788,0.00007944197,-0.05773765,-0.04533695,-0.027455144,0.04141833,-0.011104825,-0.013653168,-0.060366597,-0.011935672,-0.02470219,-0.056596782,0.048660338,0.0067459797,-0.032093003,0.055009495,0.043204032,-0.04729626,-0.033556286,-0.0108134085,0.0008850998,-0.015897695,-0.0076202285,-0.0023607828,-0.02240806,-0.026785506,-0.081795,0.006559969,0.027306337,0.042211976,-0.005952335,-0.0041480334,0.008556481,-0.028199187,0.028769618,-0.0040426273,-0.02095718,-0.0060329395,0.015587677,0.008606084,-0.007855842,0.008395272,-0.0005196667,-0.0023933346,-0.06006898,-0.0044828523,0.000012340147,-0.031894594,0.014856036,-0.0126611125,0.03608603,0.0032148808,0.00016363108,0.005229994,-0.019878319,-0.0051834914,-0.040971905,-0.0088789,0.087251306,0.02435497,0.008866499,0.031497773,-0.03323387,0.04940438,0.010583995,0.04164154,-0.006882387,0.01653013,-0.015401666,-0.031919394,-0.0042751404,0.005115288,0.008692889,0.03489556,-0.018725052,-0.05367022,0.029786475,-0.05066925,0.0029420655,0.02384654,-0.03392831,0.031026546,0.02703352,-0.005403604,-0.054959893,-0.0023328813,-0.017112963,-0.036730867,-0.040277466,-0.013529161,-0.032266617,0.0041511334,-0.0031900795,-0.015736485,-0.02419376,0.02398295,0.005899632,0.0058748303,0.0039775237,-0.06845185,-0.011675256,-0.031596977,-0.013603565,0.0231273,0.011135827,-0.008804495,-0.038070142,0.034523543,0.012134083,0.04231118,0.03395311,-0.020237938,0.029340051,-0.011030421,-0.016096106,-0.025099011,-0.0011245883,-0.04511374,0.059424143,-0.035441194,0.0021298197,-0.031324163,0.025545437,-0.018154621,0.010825809,0.026760705,0.048734743,-0.008432474,-0.0055865142,-0.02170122,-0.031398565,0.04781709,0.0033140865,0.005419105,0.028149584,-0.0041170316,-0.015488471,0.020324742,0.027653556,-0.028571207,0.013132338,0.045783374,-0.009753149,-0.023077698,-0.0115326485,-0.058928113,-0.028248789,0.0077442355,-0.037375703,-0.049429182,-0.033134665,0.023598528,0.041170318,-0.016964154,0.015426468,-0.03809494,-0.020684363,-0.033506684,-0.0072916104,-0.0051989923,0.021763224,0.012735517,0.022643674,-0.010807208,-0.043873668,0.004600659,-0.027231932,0.033853903,0.030456113,-0.02167642,-0.0049478784,-0.042236775,-0.02116799,-0.0037946135,0.033556286,0.030257702,0.034622747,-0.037053283,0.0037667118,0.039409418,-0.006411161,-0.049081963,0.014732028,0.038491767,-0.05104127,-0.018749855,0.0071366015,0.013603565,0.061606664,-0.028744817,-0.08124937,0.013181942,0.020721566,0.003571401,-0.006646774,0.017137764,-0.06914629,-0.020833172,-0.020833172,0.05773765,-0.0067335786,0.0014834334,0.028744817,0.016393723,0.011712459,0.03888859,0.036210038,0.03896299,0.028918426,-0.031200156,0.020771168,0.041195117,0.013925984,-0.029389653,0.046279404,-0.03248983,0.061606664,-0.007899244,-0.024429373,-0.015327262,0.0025281922,0.029588064,0.0143972095,0.021788025,0.049181167,-0.027083123,-0.013219143,-0.024764193,-0.0028025575,0.026785506,-0.05297578,-0.0015965898,0.028546406,0.014732028,0.0067459797,0.00621895,-0.016257314,-0.017844604,0.01564968,-0.022631273,-0.0042720404,-0.04072389,-0.0025188916,-0.02168882,0.016294517,0.030530518,0.0064545632,-0.037226893,0.024466576,-0.00060375896,-0.018365433,-0.002115869,-0.022296455,0.024044953,-0.026140671,0.039880645,0.020882774,-0.04484092,-0.0029653169,-0.029092036,0.015190855,0.0061228443,0.015401666,0.024664987,-0.001156365,0.004253439,0.005744623,-0.016455725,-0.06324356,-0.010757606,-0.031522572,-0.0032489828,0.010317381,-0.07331292,-0.017509785,0.04831312,-0.050074015,0.002594846,0.01226429,0.03499477,-0.0088789,-0.0024460375,-0.046304204,0.012307692,-0.0005467933,-0.04672583,0.04960279,0.008593683,-0.023189304,-0.030158496,0.008246464,-0.0040860297,-0.019915521,-0.027132725,0.001262546,-0.008308467,0.041343927,0.08035652,-0.012822322,0.0017484983,0.031150552,0.013801976,-0.06626933,0.046006586,-0.05471188,-0.012183686,0.005707421,0.0014989343,-0.029984886,-0.021998838,-0.0063739587,-0.017497385,0.014942841,-0.024032552,0.0124379,-0.018241426,0.031150552,-0.018861461,-0.004228638,-0.015711684,-0.0013571014,-0.009288123,0.030877737,0.025967062,0.032861847,-0.047420267,0.01758419,-0.0024072854,0.04231118,0.016083704,0.040624686,-0.021837628,0.0006184848,-0.023152102,0.002149971,0.0036179035,0.024565782,0.06388839,-0.05406704,-0.006882387,0.024615385,-0.02044875,0.0060825422,0.0110614225,0.0011028871,-0.06998954,-0.031200156,0.0515869,0.038318157,-0.021949235,0.0151412515,-0.00065297424,0.01049719,-0.003980624,-0.008624685,-0.022172447,-0.029637666,-0.04533695,-0.0012237938,0.014843635,-0.018625848,-0.019456694,0.009275721,-0.03221701,0.002041465,-0.071428016,-0.06190428,0.017670995,-0.04466731,0.05208293,-0.037400503,-0.021217594,-0.04352645,0.021118388,-0.005636117,0.014744429,0.003163728,-0.029786475,-0.028174385,0.022308854,-0.028794419,0.027827166,-0.021664018,-0.0076946327,-0.00106646,0.019518698,-0.004851773,-0.021850029,0.01350436,0.031224957,-0.0012485952,0.020919977,0.018167023,0.031497773,0.018873861,-0.0049354774,0.02775276,0.023375316,-0.02275528,0.02150281,0.036383647,0.07013834,0.008792095,-0.019679908,-0.05386863,-0.012896725,0.020498352,-0.011520248,0.05739043,-0.013305948,0.045064136,0.0002522767,-0.012227088,-0.07068398,0.014856036,0.014806433,0.024540981,-0.03221701,0.010230576,-0.0055710133,0.01706336,0.010242976,0.002095718,-0.061259445,-0.06443402,-0.054315057,0.028670413,-0.030852936,-0.011123425,-0.02060996,-0.047717884,0.011030421,0.0053447005,0.05367022,0.023238907,0.023524122,-0.009771749,0.017819803,0.013268746,0.0018895563,-0.01866305,0.0072234063,0.0014904088,-0.039756637,-0.0077070333,0.007880643,0.029315248,-0.036135633,-0.008761093,0.0444937,0.010745204,0.023747336,0.0039527225,-0.0021081185,0.009976361,-0.014508816,-0.009994962,0.013715171,-0.019283084,0.011427243,-0.02507421,-0.0011594652,0.03792133,-0.024516178,0.0018926564,0.03893819,-0.008376671,-0.015426468,0.037896533,-0.025161015,0.025967062,0.016344119,0.007483821,-0.0076574306,-0.011111025,-0.012896725,-0.0231273,-0.024640186,0.036334045,-0.038814183,0.0077504357,0.03482116,-0.008227862,0.00391242,-0.004851773,-0.03095214,-0.013739973,0.01191087,-0.0075086225,0.017695796,0.027851967,-0.004817671,-0.03963263,0.01742298,0.010602596,-0.01085061,-0.012822322,-0.02098198,0.00018542918,0.058630496,-0.012406898,-0.022668475,0.039707035,-0.019779112,0.028571207,0.007359814,-0.0013012982,-0.023734935,0.01939469,-0.020051928,0.0038876187,-0.024838597,0.018811857,0.0047246655,-0.01510405,0.026587095,0.013640767,-0.015724085,-0.05629917,-0.010218175,0.042410385,0.036532454,-0.0016508428,0.015587677,0.0034411936,0.0020895174,-0.0050005815,0.034920365,-0.023164503,-0.06076342,-0.04734586,0.02079597,-0.017199768,0.019233482,0.00039410967,-0.0011300136,-0.0036365045,0.024776593,-0.03231622,-0.0038535167,-0.024863398,0.025185816,-0.0046378607,-0.026041465,-0.022817284,-0.02700872,0.013380352,-0.03506917,-0.021564813,-0.032018602,-0.051785313,-0.00230963,-0.0025901957,0.027132725,-0.027479947,-0.030431312,-0.026983919,0.023784539,0.02259407,0.037053283,0.06894788,0.010416586,-0.047916297,0.001759349,0.0094927335,0.04340244,-0.033481885,-0.009715946,0.043427244,-0.020423949,0.015575276,-0.011842666,-0.023189304,0.028670413,-0.021552412,0.029216044,-0.012003875,0.02364813,0.0029467158,0.015934896,-0.01491804,0.036681265,0.04709785,0.009486534,0.006770781,0.03415152,0.016740942,0.054662276,0.0675094,-0.00090215076,-0.016058903,0.0067087775,-0.004609959,-0.03449874,-0.024751792,0.002560744,0.020027127,0.009325325,-0.03291145,0.003357489,0.015885293,-0.00818446,0.06884867,-0.013194342,0.010645999,0.0018880062,0.03752451,0.032440227,0.0116132535,-0.041492734,-0.018601047,0.01724937,0.030877737,0.037202094,-0.020225538,0.004237938,-0.02364813,-0.003803914,-0.005229994,-0.04945398,-0.0073164115,0.019803913,-0.018439837,0.03749971,-0.00042627397,-0.018167023,-0.005580314,0.039955046,-0.037722923,-0.025297424,0.011458244,0.018613447,-0.023958148,0.029017633,0.0061290446,-0.018018214,0.010397985,0.020461151,-0.031547375,0.04035187,0.010094168,0.033481885,0.027802363,0.011315636,0.005264096,-0.021267196,0.008903701,0.011011819,-0.015513273,0.0041015306,-0.014769231,0.033333074,-0.0106770005,0.018985467,0.0007742685,-0.000050959115,0.0065475684,-0.0048703738,-0.032093003,-0.020535555,0.013119938,-0.038243752,-0.008134858,-0.01279752,0.015128851,-0.0011338887,-0.058035266,0.0077256346,-0.008643286,0.013950785,0.023908544,-0.011681457,0.021043984,-0.037896533,-0.036036428,0.007124201,-0.032961056,0.007304011,-0.0015082349,0.05967216,-0.011600853,0.010887813,-0.051438093,-0.044047277,0.021205192,0.045138538,-0.020498352,-0.012183686,0.0049106763,0.0027607053,0.02827359,-0.04553536,-0.034771554,-0.008110057,-0.02240806,-0.0065847705,0.02864561,-0.013206743,-0.026760705,-0.027851967,0.0337547,0.007434218,-0.013640767,0.0015524123,-0.006417361,-0.0040457277,-0.03896299,0.019791514,-0.028893625,-0.043501645,-0.0027870568,0.018576246,0.0070435964,-0.085416004,0.019493897,0.036507655,0.002630498,-0.010863011,0.00084712263,0.040128656,0.037202094,0.00012914164,-0.042063165,0.017894207,-0.01742298,-0.020907575,0.011073823,0.020039527,-0.02738074,0.01404999,0.0017314474,0.016480528,0.023003293,-0.0073164115,-0.0025452431,0.0008951753,0.04848673,-0.015240457,-0.0003859717,0.025396628,0.021651618,0.036879674,-0.03809494,0.027579151,-0.018204223,-0.030133694,0.00014386747,0.04335284,-0.0057136216,0.01493044,-0.0025529936,-0.023214106,-0.010757606,-0.006274753,-0.020709164,0.011321837,0.014744429,-0.026016664,0.0013547762,-0.0038876187,0.031497773,-0.0030691726,0.026438287,-0.035441194,-0.0062995544,0.019506298,-0.0069753923,-0.0072668088,0.030307304,0.017212167,0.016517729,-0.03516838,-0.02113079,0.013826778,0.020733966,0.024826197,-0.008661888,0.030902538,-0.043328036,-0.0012199186,0.0060515404,0.016827747,0.020349545,0.0046068593,0.03110095,0.03821895,0.015314861,-0.01706336,0.0710808,-0.04464251,-0.005177291,0.0014966092,0.038169347,-0.007800039,0.019717108,0.04694904,0.016232513,0.05600155,0.00017205968,0.010534393,0.007886844,-0.015972098,0.004017826,-0.01511645,0.003481496,-0.019878319,0.041715946,0.0022848286,-0.011241232,-0.01884906,0.011067622,-0.035986826,0.018514242,0.016616935,0.0031730286,-0.0067459797,-0.03678047,-0.0068017826,0.0051431893,-0.023313312,0.025768649,0.01031118,0.0498012,0.00603914,0.021291997,-0.0012369696,0.007855842,-0.03412672,0.004340244,0.059820965,-0.033109862,0.018427437,-0.017150166,-0.0047928696,0.017311374,0.016071305,0.011321837,0.008072854,0.03665646,0.037549313,-0.019989925,-0.020535555,0.009715946,0.013764774,-0.0015919396,-0.031770587,-0.010112769,0.010013564,-0.01101802,0.0019531099,-0.0024816897,-0.034349933,-0.009126914,-0.007235807,0.017137764,-0.0064855646,-0.03234102,0.030307304,0.011966673,-0.0124441,-0.031398565,-0.025347026,-0.012995931,0.008655687,-0.029315248,-0.007142802,-0.0043650456,-0.012282891,0.039558224,-0.052330945,0.03343228,0.023511723,0.05669599,-0.0014586321,0.042063165,-0.03266344,0.01227669,-0.03499477,-0.035887618,-0.009517536,0.010614997,-0.0020771169,0.012599109,-0.012084479,-0.0030490216,0.006559969,-0.017261771,-0.02062236,0.051834915,-0.023958148,-0.015190855,0.008680488,-0.013491959,-0.004200736,-0.0034225925,-0.006739779,-0.0006165472,0.068898275,0.014732028,0.020423949,0.010001163,-0.03308506,0.014000388,-0.0017826003,0.03826855,0.024404572,-0.006652974,-0.047073048,-0.016468126,0.024119357,0.022916488,0.0026444488,-0.021651618,-0.019989925,0.016629335,-0.0147816315,0.001635342,-0.010273978,0.011135827,-0.00818446,0.034449138,-0.019171478,0.018997869,0.0067335786,-0.002060066,0.006008138,-0.014173998,-0.033109862,0.013429956,-0.046229802,0.0066033714,0.003394691,-0.007700833,0.016096106,-0.020895176,-0.010534393,0.03283705,0.005487309,0.010422787,-0.022284053,-0.021602016,-0.031671382,0.002810308,0.0037543112,0.019146677,0.006417361,-0.014942841,0.030877737,-0.009467932,0.007142802,0.040649485,0.031051347,0.05317419,-0.029042434,-0.007428018,-0.008798295,-0.02255687,-0.004237938,-0.032241814,-0.010168572,0.022358458,-0.027703159,0.0078124395,0.0070993993,0.027579151,0.009691145,0.012034877,-0.0013245496,-0.022891687,0.0040984307,0.0010052315,0.015835691,0.00444255,0.062003486,0.019456694,0.009573339,-0.026363883,0.04208797,0.017125363,-0.0039000195,-0.010038365,-0.031720985,-0.012822322,0.03524278,0.026140671,0.0026242975,0.0020027126,-0.019345088,-0.0012819221,-0.018427437,0.0112846345,-0.0129091265,-0.002525092,-0.023499321,-0.011706258,-0.007434218,0.005174191,0.0033295874,-0.0010966867,-0.053422205,-0.017398179,0.0051834914,-0.028298391,0.039335012,0.013194342,-0.012822322,-0.007961248,0.008649486,0.0075644255,-0.02827359,0.020882774,0.010521992,-0.00035807013,-0.046502616,0.0038690176,-0.022197248,-0.01866305,-0.016344119,0.031770587,0.03182019,-0.007086999,0.012685914,0.009009107,-0.0145336175,-0.0444193,0.024714591,-0.008754892,-0.015748886,0.04424569,-0.0008409223,-0.014806433,0.008246464,0.011011819,-0.005961635,0.016344119,0.00006011432,-0.019841116,-0.02363573,0.022470064,0.018167023,0.0062375506,0.018935865,-0.029042434,0.053719822,-0.032291416,0.009616741,0.031150552,0.005989537,0.020064328,-0.005722922,0.012326294,-0.028347995,-0.031522572,-0.004941678,-0.0023716334,0.0008602984,-0.027430343,0.014347607,-0.011576051,-0.0074218176,0.0053912033,0.02738074,-0.019766713,0.040401474,-0.032266617,-0.028000776,0.009294323,0.016418524,0.022370858,0.030257702,0.015624879,-0.0123572955,-0.014198799,-0.0077628368,0.018092617,-0.0231273,-0.030976942,0.033878706,0.0068327845,0.018278629,0.008624685,0.018613447,-0.027628753,0.024342569,0.0018973068,-0.013367952,0.0059802365,-0.011067622,-0.034870762,0.0320434,0.022023639,0.025867855,0.036135633,-0.007626429,-0.0073474133,0.0015369115,0.016604533,-0.04020306,0.014905638,-0.007700833,-0.014062391,0.007583027,0.0044735516,0.0024103855,-0.03482116,-0.04017826,-0.018799458,-0.002915714,0.013417555,-0.0016446426,0.005815927,-0.023226507,-0.03695408,-0.011011819,0.00018949815,-0.018861461,-0.039558224,-0.0043123425,-0.023226507,0.026091067,0.04642821,-0.008909902,-0.017981011,-0.034225926,0.003664406,0.0116132535,0.036036428,0.020374347,0.032068204,0.010366983,0.013144739,0.012313893,0.011433443,-0.0013051734,-0.0160217,-0.036929276,0.0017112963,0.000020490215,0.013653168,0.0026537492,-0.021899631,0.0031776787,-0.012419298,0.008035652,-0.012995931,-0.02292889,0.027802363,-0.05089246,0.011749661,0.01920868,0.0030304205,-0.0056795194,-0.018266227,0.031200156,-0.03489556,-0.02755435,0.015959697,0.015748886,-0.0057942257,0.0018291029,-0.015302461,-0.03876458,0.0148932375,-0.001723697,-0.014955241,-0.00959814,-0.0028971129,-0.017038558,-0.015587677,-0.01759659,0.017224569,0.006993993,0.0094369305,-0.0011966673,-0.015314861,0.029960085,-0.0065537686,0.013578764,-0.017720597,0.029067235,-0.0054656076,-0.020237938,-0.00084014726,0.012475101,0.0052206935,-0.003255183,-0.027281534,0.0122208875,0.03695408,0.042906415,0.008630886,-0.013752374,-0.004814571,0.009133114,0.020845573,0.012834722,-0.019444294,0.02008913,0.013070336,0.023065297,-0.04533695,-0.027083123,0.0005739198,0.010025964,0.00023968224,-0.05277737,-0.010453788,0.026165472,0.0302329,0.0022910289,-0.011824065,0.007979848,-0.021118388,-0.04392327,-0.039880645,-0.010187173,0.013938384,0.026587095,-0.021428406,0.01990312,0.034201123,0.011458244,-0.016964154,-0.013008332,0.005719822,-0.019345088,-0.04181515,0.040773492,0.008141058,-0.0037543112,0.009300523,-0.0044580507,-0.008661888,0.0012354195,-0.009808952,-0.021316798,0.028174385,0.019072274,-0.02384654,0.002382484,0.004191436,-0.014211199,-0.019593103,-0.02026274,-0.0053974036,0.0051462897,0.023697734,-0.004712265,0.008587483,-0.04248479,-0.0023576827,-0.027628753,-0.020324742,0.0062902537,-0.008798295,0.0009866304,-0.02807518,-0.01759659,0.005595815,-0.043824065,0.024032552,-0.012592908,0.05104127,-0.024913002,-0.004250339,0.0056485175,0.0032117807,0.0049788803,-0.022643674,-0.045758575,-0.0003404379,0.010739004,-0.008277466,-0.0124441,0.029612865,-0.0009207518,-0.01510405,0.031001743,0.03038171,0.0027808563,0.015686883,0.011241232,0.007452819,0.03697888,0.0047525675,0.020547956,-0.034027513,0.010329781,-0.02452858,-0.0038659174,0.0053416006,0.016269716,-0.026760705,0.03611083,0.01615811,-0.030009689,-0.048610736,0.013603565,-0.009176516,0.0023065298,0.011979074,-0.0444193,0.020349545,-0.040227864,0.010038365,-0.0063057547,-0.019617904,-0.031348962,-0.0059461347,0.014732028,0.010565395,-0.032936253,0.022730479,-0.0025979462,0.0049881805,0.0017484983,-0.03214261,-0.033680294,0.04112071,0.0057136216,-0.028124781,-0.011235032,-0.004330944,-0.014608022,0.005279597,-0.0021840727,-0.023933345,0.026264677,-0.0035962022,0.01047859,-0.00024084479,-0.02113079,-0.004693664,0.0091889165,-0.023201706,-0.054910287,0.0037233094,0.012673513,0.030108893,-0.0074218176,0.004058128,0.05084286,0.0037357102,-0.00872389,0.056100756,0.043948073,0.003326487,0.024677388,0.020250339,-0.014868436,-0.025185816,0.007378415,0.020944778,0.023796938,0.005124588,0.009542337,-0.017150166,0.038640574,0.04496493,-0.034002714,-0.015376865,-0.0042100367,-0.018625848,-0.014273203,0.0033357877,0.05744003,-0.024119357,0.010962216,-0.0032303818,-0.018613447,0.010801008,-0.006634373,0.0051121875,-0.0033202867,0.018092617,0.0061786477,0.00074016664,0.013281147,-0.019035071,0.0031032746,0.010652199,0.013355551,0.020002326,0.017348576,0.006714978,0.011142027,-0.010639799,0.032093003,-0.00040457275,0.019841116,0.02027514,0.02738074,0.011538849,-0.039384615,0.023375316,-0.0028211586,-0.011948072,0.031398565,0.0073722145,-0.032812245,0.02983608,-0.002915714,0.008680488,0.0038473164,-0.014546018,-0.048809145,-0.040475875,-0.002046115,0.023722535,-0.030356908,0.0077628368,0.005533811,-0.033382677,0.04121992,0.05887851,0.034622747,-0.03928541,0.009350126,0.019841116,-0.007273009,0.007062197,0.035838015,-0.012958729,-0.015352064,-0.03593722,0.020287542,0.00037725247,0.050694052,0.0498012,0.010218175,-0.02079597,-0.008240264,0.017844604,-0.005729122,-0.0123572955,-0.02792637,-0.0022119745,-0.003469095,-0.004532455,-0.017100561,-0.0039062197,0.003980624,0.021341601,0.033705097,0.019035071,0.024813795,0.0021763225,0.006311955,-0.005673319,0.000248789,-0.016344119,0.015711684]},{"id":"interface-GatewayInteractionCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayInteractionCreateDispatchData\nDescription: INTERACTION_CREATE — slash command or component interaction","meta":{"url":"/docs/typedefs/GatewayInteractionCreateDispatchData"},"embedding":[0.00889223,0.039249368,-0.020873409,0.0071308715,0.023620602,-0.0016060892,-0.0227925,0.04847678,0.0034044161,-0.0073806164,-0.017114092,-0.023331422,-0.008346735,-0.015549901,0.029101843,-0.016719759,-0.010213248,0.017613582,0.022358732,0.017245537,-0.007249172,-0.017363837,0.03333436,0.0030725184,-0.018559983,-0.014117154,0.023278845,0.011534267,0.026446661,-0.019282928,0.045532424,-0.030705467,0.012447807,-0.016023101,0.049791228,0.026696406,-0.014800666,0.0031760312,-0.014892678,-0.0124018015,-0.009792626,-0.015168712,0.0024218676,0.025552837,-0.0037461722,-0.011586845,0.013867409,-0.014997833,0.009950359,-0.013551942,-0.015641913,-0.0131116025,0.010055515,0.06614294,0.007505489,-0.020097885,-0.001840225,-0.0024202245,-0.02414638,0.040116902,-0.013880554,0.016233413,-0.03183589,0.026525527,0.023357712,0.012940724,-0.008885657,0.047267493,0.014182877,0.01604939,-0.018467972,0.013551942,-0.036857076,0.032177646,0.012290074,-0.028050287,-0.057520173,0.02105743,0.009694042,-0.03969628,0.03036371,0.026157483,-0.07261002,-0.0809699,-0.00895138,0.009654609,-0.036594186,-0.0067891157,-0.0227925,-0.034937985,0.008872513,0.044296842,-0.009122258,0.009378575,-0.030311134,-0.030942068,-0.006095745,0.029548755,-0.0097663365,0.041194748,0.017613582,-0.081811145,-0.010062087,-0.03998546,0.030100822,-0.036962233,0.002888496,0.025802583,0.0091485465,-0.0035062858,-0.055942837,-0.036436453,-0.02635465,0.008077273,0.012684408,-0.015944235,0.056100573,-0.09716388,0.011843162,-0.008826507,-0.017416414,-0.008182429,-0.0230291,-0.026170628,-0.032335382,-0.022753067,0.007472628,-0.022371877,-0.026433516,-0.055522215,0.008530757,-0.0013990639,0.0035490051,-0.047504093,-0.0026387512,0.00680226,-0.039380815,0.029128132,-0.04069526,0.02609176,-0.028628642,-0.025815727,0.052078366,0.039117925,-0.069718234,-0.01457721,-0.021215165,0.033413228,-0.008011551,0.03309776,-0.0453484,0.037593167,-0.0019092334,-0.039065346,0.010791604,0.0008379596,-0.011941745,0.0020308197,0.0027948415,-0.051315986,0.008077273,-0.04847678,-0.008156139,0.015747068,-0.08391426,-0.008616196,-0.010837611,0.0372777,-0.075764686,0.019598395,-0.0011139933,-0.04363962,-0.050080407,0.002410366,-0.05047474,0.015352733,-0.063093424,-0.02820802,-0.009017102,-0.002691329,0.032177646,0.058676887,-0.017889615,-0.047740694,-0.012198063,-0.013512509,-0.0231474,0.016325423,-0.008984241,-0.03209878,-0.03112609,0.027866263,0.0020176752,0.014432621,0.04185197,-0.016772335,0.041326195,-0.035200875,0.06772028,-0.0097466195,0.029049264,-0.027839974,-0.009194553,-0.0016184121,0.009937215,-0.008708207,-0.013906843,-0.01048271,0.023673179,-0.003742886,0.020334486,0.011567128,0.008563618,0.02794513,-0.053419102,0.024448702,0.012454379,0.018625705,0.023121111,-0.025447682,0.0017367123,0.012743558,0.017298114,-0.042798374,0.01923035,0.06135836,0.015641913,-0.044717465,0.00160116,0.0014335681,-0.022332445,0.039275657,0.004626851,-0.062462494,-0.026854139,0.028812665,0.0004834698,-0.0062830537,0.030100822,0.042614352,0.00833359,-0.009575742,0.000034042107,-0.0044296845,0.007505489,0.035227165,0.007899823,0.0029312153,-0.058203686,0.03577923,0.019296072,0.03601583,0.011028205,-0.0226742,0.0014426049,-0.039564837,0.026998729,0.009076253,0.03948597,0.062147025,0.03359725,-0.030337423,-0.0040090615,0.06619552,-0.033676118,-0.0013423783,0.039775148,0.03998546,-0.03380756,0.0065623736,0.009641464,0.02193811,0.083493635,-0.016746046,-0.05904493,-0.058939777,0.055101592,-0.012927581,0.023502301,0.01884916,-0.046715423,-0.02319998,-0.010857327,0.020610519,-0.026315216,0.05636346,0.02723533,0.01275013,0.027314195,-0.0054286635,-0.01804735,-0.012822424,0.027077595,-0.015563045,0.030179689,0.042877242,-0.016483158,-0.028812665,0.046899445,0.01773188,0.04198342,0.016746046,0.024935048,-0.011245089,0.034596227,0.0072425995,0.035674077,-0.028628642,0.0543655,-0.027550796,-0.013525654,-0.025842017,0.0045381263,-0.017127236,-0.027577085,0.027393062,0.0448752,0.042062283,0.0033633397,-0.007150588,0.011928601,0.012710696,0.02868122,-0.07324095,0.0065032234,0.008727924,-0.018375961,-0.026170628,-0.008248151,0.037435435,0.049318027,-0.01469551,-0.012967014,0.0058920057,0.059728444,0.0003505875,-0.0046958597,-0.0010030869,-0.0149584,0.009832059,-0.002642037,-0.016627748,-0.031967334,-0.024356691,0.010140954,0.020295052,-0.004791157,0.017574148,-0.00314317,0.036173563,-0.019650973,-0.03383385,-0.03806637,-0.034464784,0.041326195,-0.0028047,-0.006263337,-0.089066885,-0.017390126,0.023791479,-0.04172053,0.018625705,-0.008399312,-0.014997833,-0.026170628,0.01787647,0.002862207,-0.016220268,-0.0066215238,-0.019243496,0.02723533,0.008964525,-0.030968357,-0.008169284,-0.0075909276,-0.03527974,-0.0048338766,-0.05694182,0.04902885,-0.032440536,0.024488136,0.005813139,-0.001304588,-0.010029226,-0.012092907,-0.0051690605,-0.00019850195,0.03575294,-0.044796333,0.010022653,0.05878204,-0.015116134,0.024330402,-0.0023134255,-0.01643058,0.005284074,0.054102615,0.0021967685,0.036567897,0.008701635,0.00606617,-0.0106075825,-0.009207697,0.011028205,-0.0067825434,-0.0013037665,0.0040090615,0.011238516,0.04198342,0.0153133,0.057520173,-0.001784361,0.024540713,0.021688364,0.04437571,-0.016023101,0.013578231,-0.036699343,0.008491323,0.0026190344,0.009201124,0.029049264,0.0030675891,0.004170081,-0.014261743,0.018954316,0.010614155,0.059202664,0.06382952,-0.04873967,-0.011645995,0.019243496,0.069034725,0.014590355,0.020439642,0.0056784083,-0.0013144463,-0.03328178,0.014156587,-0.03328178,-0.002517165,0.0008519256,0.025723716,0.013367919,-0.07066464,0.022148421,0.03039,-0.023791479,0.060464535,-0.008852797,-0.044007666,-0.029548755,-0.008747641,0.041483928,-0.024948193,0.022569044,0.011751151,0.03848699,0.015799645,0.04637367,0.013683387,0.029890511,0.013177325,0.057309862,-0.033465806,0.010686449,0.010515571,-0.024698447,0.005494386,0.04902885,-0.04613707,-0.029312154,0.033465806,0.049081426,-0.03612099,-0.011987751,-0.02626264,0.029049264,0.009477158,-0.023568023,-0.0074069053,0.01469551,-0.014932111,0.01360452,0.07445024,0.07718429,-0.016890636,0.009385147,-0.052314967,-0.0043836785,0.028023997,-0.017429559,0.049580917,-0.014932111,0.008826507,0.009095969,0.015628768,-0.0151292775,0.009615175,-0.01004237,-0.024054369,0.017100947,-0.0012355796,-0.019887574,0.033676118,-0.006437501,0.0226742,-0.0025007343,-0.038697302,-0.03338694,0.019861285,-0.029732777,-0.015510467,-0.01207319,-0.02464587,0.010285543,-0.02300281,0.070244014,0.04143135,-0.012086335,-0.0223193,-0.000077685836,0.0012355796,-0.029969377,-0.02217471,-0.016378002,0.00765665,-0.088593684,-0.05394488,-0.00033621074,0.018678283,-0.038960192,-0.012612113,0.03186218,0.00061861135,-0.026630683,-0.024093803,0.0048273043,-0.00061943283,0.032650847,0.00015023712,0.023699468,0.018691428,0.00007044611,0.0016471656,0.004225945,0.029995667,-0.023581168,0.0070782937,0.014485199,-0.00786039,-0.032677136,-0.026854139,0.0074660555,0.015576189,0.03380756,-0.0072163106,-0.03990659,0.014117154,0.0030232267,-0.017140381,-0.019742984,-0.027892552,-0.031546712,-0.0008831437,0.03919679,-0.0006198436,0.0058624307,-0.020597374,-0.03506943,-0.0061976146,0.016180836,0.0026042468,-0.001813936,-0.017008936,-0.01669347,-0.03572665,0.012875002,0.011494834,-0.03236167,-0.019322362,-0.057309862,0.016338568,0.051710322,-0.063040845,0.018283948,0.023357712,-0.00662481,-0.0008293335,-0.0076172166,-0.04419169,0.0017186387,0.042035997,0.0064440733,0.014182877,-0.010035798,0.015707634,-0.029811643,0.0125135295,0.0070388606,-0.015155567,-0.0008954666,-0.025868304,-0.03194105,0.03039,0.0110742105,0.015996812,0.027550796,-0.006260051,0.01583908,0.011652567,0.024606436,0.0031480992,-0.012276929,0.0079721175,0.023594312,-0.0060990313,0.037645746,-0.005244641,-0.052078366,0.0018188652,-0.010436704,-0.024185814,0.018717717,-0.018389106,0.057783064,-0.0313364,-0.01666718,0.01740327,0.013827976,0.0144194765,-0.015747068,-0.007314894,-0.022884512,-0.032992605,-0.024343546,0.026788417,-0.010923049,-0.00845189,0.0011797156,-0.02070253,-0.0014245312,0.021675222,0.010765316,0.040353503,0.016312279,0.008110134,0.008530757,0.011521122,0.039591126,-0.041247327,0.0060727424,0.04016948,-0.021188876,0.053892303,0.036935944,0.0027356916,0.011501405,-0.043140132,0.009227414,0.019913863,0.005008041,0.021859244,0.008300729,-0.0023725757,0.023765191,-0.009937215,0.015773356,-0.010088376,0.0069665657,0.014025143,0.055995416,0.09753192,0.027051307,-0.014288032,0.012000895,-0.01643058,-0.00930628,0.012500385,-0.008524185,0.01654888,0.0026256067,0.0052249245,0.026183773,0.045690157,-0.011501405,0.039538547,-0.03412303,0.0024843037,-0.051605165,0.010062087,0.00014654023,0.013801687,-0.007794667,0.011001917,-0.018507404,0.055469636,0.018349672,-0.01911205,-0.046189647,-0.001515721,-0.019269783,0.0085701905,-0.017561004,-0.011698573,-0.038539566,-0.0024152952,0.012973586,0.03136269,0.00499161,0.010318404,-0.015536756,-0.0372777,-0.022016976,0.019466951,0.041378774,-0.032650847,0.007794667,0.01961154,-0.014734944,0.0065295123,0.008340162,-0.032677136,-0.025158504,-0.030705467,0.045295823,0.0299168,-0.025552837,0.0063323453,0.0024037939,0.0051394855,-0.0038053223,0.018375961,-0.0053136493,-0.014603499,0.0077815223,0.009963504,0.008984241,0.017035225,-0.0018385819,0.018113071,-0.0068482654,0.009325997,0.018323382,-0.0100095095,-0.03722512,-0.02013732,0.017035225,-0.013032736,-0.00481416,-0.008721352,0.010370982,-0.029049264,-0.007400333,-0.012526674,0.006552515,0.0018632277,0.0051427716,0.010456421,0.032046203,0.01581279,-0.013880554,-0.012822424,0.042614352,-0.038960192,-0.013394209,-0.041168462,-0.039775148,0.011757723,0.042929817,-0.013170753,-0.0072754608,-0.004981752,-0.004248948,0.033465806,-0.039328236,-0.0023742188,-0.008445318,-0.013972565,-0.013867409,-0.030495156,-0.01664089,-0.024080658,-0.036489032,0.029075554,-0.0016036246,-0.015155567,-0.019217206,-0.024974482,-0.032519404,-0.03407045,0.011862879,-0.0063914955,-0.06372436,0.0111859385,-0.017298114,0.024159525,-0.111359894,0.003059374,0.0038184668,-0.0011624636,0.0037264554,0.026407227,0.02509278,0.030810622,-0.0076895114,-0.032703426,0.013591375,-0.0075909276,-0.0065886625,0.008281012,0.021517487,-0.019808708,0.021714654,-0.0045216954,0.011087355,-0.021530632,-0.0012002538,-0.016378002,-0.014380043,0.0031891756,0.011166222,-0.013827976,-0.006039881,0.017363837,0.023121111,0.017008936,0.05809853,-0.018559983,-0.049370605,-0.008465035,0.019979585,0.0098583475,0.009161691,0.028102864,0.0101212375,-0.0013004803,0.011376534,0.008116706,0.00606617,0.0107193105,-0.0377509,0.0065065096,-0.03583181,0.027734818,0.012316363,0.0019996015,-0.004896313,-0.025697427,0.03435963,-0.020400207,-0.001728497,0.018665139,-0.0007032288,0.033728693,0.0075777834,-0.019558962,0.015891656,0.002147477,0.034438495,0.003995917,0.042798374,-0.03969628,-0.0024169383,0.006542657,0.0029180709,0.017850181,0.043771066,0.03830297,0.024764169,0.016838059,0.018060494,0.0060793147,-0.017363837,-0.0049160295,0.016864346,0.045926757,0.035122007,0.014813811,0.008918519,0.03945968,0.044402,0.007236027,-0.0018829445,0.021017998,-0.015917946,0.0097466195,-0.0112188,-0.01675919,0.00847818,-0.008517613,-0.0014730014,0.039039057,-0.008668774,-0.0038907612,-0.0092997085,-0.01873086,0.0033370508,-0.0140645765,0.00021811595,-0.024014935,-0.0313364,0.036620475,-0.027156463,0.02222729,0.019756129,0.01961154,-0.017797604,0.027524507,-0.039301947,0.018744005,0.006940277,-0.019046329,0.022700489,0.003930195,0.0039564837,-0.022108989,-0.003854614,0.00017036457,-0.035936963,0.007334611,-0.011738006,0.004528268,0.019414373,-0.01607568,-0.0112976665,0.008077273,-0.009779481,0.007623789,-0.01139625,0.022858223,0.015168712,0.010785033,-0.006230476,0.012053473,-0.05102681,-0.019493239,-0.004686001,0.01316418,0.0010022654,-0.018546838,-0.021648932,-0.00839274,0.012309791,-0.016167691,-0.0117840115,-0.041063305,-0.010239537,-0.042035997,-0.011153078,-0.016101968,-0.0042160866,0.026722696,-0.035148297,0.0010490925,0.020899698,0.033413228,0.011146505,0.01374911,-0.002012746,0.0069534215,-0.0018188652,-0.00017919601,0.0021737658,0.04214115,-0.023462867,-0.033754982,-0.018941171,0.034648806,0.03336065,-0.015799645,-0.022371877,0.011126788,0.016614603,-0.024277825,-0.014288032,-0.0075514945,-0.021806665,0.034648806,-0.00742005,0.02022933,0.03677821,-0.025552837,0.033939004,-0.01740327,0.0043869647,-0.022279866,-0.004587418,0.01792905,0.032309093,-0.00043910724,0.009102541,0.016916925,-0.0038316112,0.0028260597,-0.035621498,-0.026183773,0.0017728596,0.025316237,-0.025040204,-0.03162558,0.06992855,0.007742089,-0.0230291,0.023370856,-0.010535288,-0.005297219,-0.019690407,0.008741069,-0.053629413,-0.0068679824,0.0062403344,0.044691175,-0.04224631,-0.0124018015,0.013197042,-0.032703426,0.004709004,-0.045216955,0.02400179,0.0061713257,-0.03186218,-0.022463888,-0.06540685,-0.013262764,-0.010055515,-0.012881574,-0.019440662,-0.030758046,-0.004810874,-0.010029226,0.0294436,0.021004854,0.016496303,0.002096542,0.025079638,0.029049264,0.0040945006,-0.010324976,0.0041470784,-0.04022206,-0.033413228,-0.020479074,0.0038151806,0.0048568794,-0.016890636,0.023660036,-0.008543901,-0.008169284,0.0020899698,0.015523612,0.013275908,-0.00471229,0.029259576,0.00081413524,0.007814384,0.0024169383,0.042351462,0.0070191436,0.016009957,-0.0037297416,-0.015917946,0.014472054,-0.021688364,0.013091886,-0.014051432,0.005379372,0.024567002,0.048424203,0.010305259,0.03188847,0.00030807336,0.004824018,0.0023528591,0.017679304,0.01690378,0.0025105926,-0.012211207,0.024816748,-0.032072492,-0.010338121,0.019756129,-0.01861256,-0.0016553809,0.011415967,0.0016635963,-0.022805644,0.020925986,0.031020934,0.046741713,-0.029496176,-0.002517165,-0.004002489,-0.041221038,-0.0074923444,0.01994015,-0.023423435,-0.027550796,0.06435529,-0.019322362,-0.015681345,0.019348651,-0.007932683,0.003572008,0.026788417,-0.004311384,-0.0044263983,-0.012362368,-0.0022263436,0.020741964,0.027261619,0.015497323,0.03065289,0.011843162,0.012598968,0.013459931,-0.016220268,0.00018587093,0.024198959,0.036804497,-0.026788417,-0.011271378,0.020058451,-0.0034537078,-0.008872513,0.005813139,-0.0036935944,0.029364733,-0.03767203,-0.03533232,-0.0056586917,0.013985709,0.046662845,0.000004117272,0.026249494,-0.0046794293,-0.0019700264,-0.06977081,0.011271378,-0.016378002,0.00074676983,-0.01095591,-0.012526674,-0.00765665,-0.016627748,0.011363389,-0.013374492,0.0792874,-0.038171522,0.009996365,0.009825487,0.013210186,0.0061877565,-0.010640443,0.03504314,-0.03041629,-0.039065346,-0.0058821477,0.02020304,0.024659013,-0.0014261743,0.030574024,-0.009207697,-0.004587418,-0.014932111,0.031152379,-0.032282803,0.008024695,0.0015379023,-0.0026141054,-0.00076895114,-0.01678548,-0.018665139,0.01816565,0.0014467125,0.022661056,0.008695063,0.008938235,0.0028556348,0.01095591,-0.022963379,-0.03409674,-0.013170753,0.032256514,-0.059623286,-0.008911947,-0.0026666832,-0.019322362,-0.04248291,0.006375065,0.0008338519,-0.011172794,-0.015983667,-0.028365754,-0.024764169,-0.026827851,-0.03777719,0.0070059993,0.01763987,0.022345588,-0.018283948,-0.021280887,-0.049922675,0.014616644,0.024343546,-0.0047057183,-0.011107072,-0.046426248,0.009818914,0.0076303612,-0.004616993,-0.00003193694,0.034201894,-0.03112609,0.026196916,-0.013210186,0.022450745,0.02423839,0.00033518384,-0.001986457,0.015615623,0.009621748,0.030258555,0.018244516,-0.045059223,0.011639423,0.018651994,0.009726903,-0.006273195,-0.00055453205,0.013361348,-0.03651532,0.0294436,0.0041897977,0.021570066,-0.0050014686,-0.020176752,0.061673824,-0.020426497,0.014932111,0.0069862823,0.01139625,-0.0042982395,0.0040912144,-0.0028802806,-0.038855035,0.011481689,0.023699468,0.012953869,0.008136423,0.0012536532,-0.031573,0.008787074,-0.004252234,0.005638975,0.020597374,0.022477033,-0.040353503,-0.041247327,0.0048831683,0.011692001,0.003716597,-0.0056521194,0.013289053,-0.028786376,-0.027629662,-0.009542881,-0.013039308,0.010344693,0.0033879855,0.00089628814,-0.0069797104,-0.004922602,0.03772461,-0.0034077023,0.010883616,0.03804008,-0.026144339,-0.011987751,0.022516467,-0.019716695,-0.029049264,0.0039039059,-0.028654931,-0.02723533,0.013387636,0.007393761,-0.028812665,0.007236027,-0.020334486,-0.025697427,0.012296646,0.017718738,0.023554878,0.0057342723,0.0060990313,-0.03746172,0.0012257212,-0.017837038,0.010568148,-0.0046925736,-0.011810301,-0.016141402,-0.012487241,0.01006866,0.01669347,0.0065919487,-0.017245537,-0.03627872,-0.021583209,-0.032887448,0.018980606,0.0039531975,-0.020544797,-0.00423909,-0.052130945,-0.027314195,-0.05709955,0.010555005,0.00992407,0.014090865,0.010522143,-0.0042160866,0.020124175,0.0301534,-0.018954316,-0.0527093,-0.0014795737,-0.025289949,0.016772335,0.021754088,0.021543777,0.047030892,-0.043297864,-0.012414946,-0.014642932,-0.0012429734,0.0013949563,-0.00986492,-0.013735965,-0.030758046,-0.02412009,0.008221862,-0.02417267,0.013440214,-0.021044286,0.01607568,-0.025710572,-0.013551942,0.0039039059,0.04222002,0.031520423,-0.012993302,-0.037856057,-0.00930628,0.024198959,-0.010633871,-0.0044033956,0.03793492,0.036147274,-0.053681992,0.008997385,0.0015132563,0.020531652,0.01678548,0.012355796,0.0363313,-0.018494261,-0.021846099,0.027629662,0.007170305,0.0020850406,-0.007334611,0.011685428,-0.007367472,0.030705467,-0.021609498,0.014077721,0.069192454,-0.0024465134,-0.02747193,0.00582957,0.0022493463,-0.041168462,0.0012347581,-0.024580147,-0.017390126,-0.022345588,0.031231247,-0.023581168,-0.015707634,-0.022490177,0.019164627,0.016101968,-0.0033584104,-0.04437571,0.01896746,-0.009818914,0.046452533,0.01884916,0.023502301,-0.022385022,0.020216186,-0.017495282,-0.035936963,0.011501405,0.028602352,-0.0076106447,-0.0037560305,0.0038710446,-0.015549901,-0.014274888,-0.0017465706,-0.005412233,0.011139933,0.022135276,0.01569449,0.013420498,-0.030468866,-0.031520423,0.002495805,0.049396895,0.016417434,0.02025562,0.0052216384,0.026683262,-0.032203935,-0.024961337,0.021241454,0.024304114,0.022700489,0.010903332,0.0058920057,0.0050047548,0.015181855,-0.014366899,0.016312279,-0.015300156,0.016995791,0.0066018067,-0.013367919,0.018389106,0.0049193157,-0.014485199,0.008596479,0.03162558,-0.0027274762,-0.0010425203,0.02099171,0.05494386,0.0036673055,-0.0075646387,0.024080658,-0.003456994,-0.010252682,-0.007137444,0.007170305,0.0022230574,-0.004419826,0.031257536,0.0014376757,0.022845078,-0.008609624,0.027971419,0.0005339938,-0.004616993,0.022582188,-0.016719759,0.028313175,0.014288032,0.01319047,-0.0056028278,0.033176627,0.017942194,-0.00998322,0.0043738205,-0.011507978,-0.008846224,0.017613582,-0.00895138,0.019388083,0.014748088,-0.006384923,-0.007985262,-0.0034405633,0.0067003905,-0.008064128,-0.011264806,-0.006033309,0.00013986531,0.015655056,0.00582957,-0.0004082999,-0.029601332,0.008583335,0.03364983,-0.05050103,-0.02550026,0.03627872,0.0014902536,0.0006280589,0.037435435,0.004866738,0.0029558614,-0.015983667,0.03386014,0.017074658,-0.0230291,-0.028812665,-0.0060793147,0.023068534,0.025842017,0.06251507,-0.00033169234,-0.0153133,0.024685303,0.007742089,-0.003713311,-0.00471229,0.0008363165,-0.028155442,0.007886678,-0.0045479843,-0.012559535,-0.03819781,0.0034109883,-0.031494137,0.018494261,-0.0055305334,0.00033867534,0.009431153,0.0007857925,0.01937494,-0.025592271,0.0011673927,0.010436704]},{"id":"interface-GatewayInviteCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayInviteCreateDispatchData\nDescription: INVITE_CREATE — full invite: code, guild, channel, inviter?, expires_at?, ...","meta":{"url":"/docs/typedefs/GatewayInviteCreateDispatchData"},"embedding":[0.015655654,0.02010983,0.0026277846,-0.0002329889,-0.0007128485,-0.027157277,-0.05119303,0.012990351,-0.012594157,0.006435146,0.01094335,-0.0075216773,0.0025332384,-0.022967229,0.027661523,-0.0013161434,-0.038875006,0.04598248,0.0034246743,0.046774868,-0.023939703,0.017492551,0.038322736,0.0022856174,-0.013722708,-0.018861221,-0.0005672773,0.007329583,0.055227,-0.022330917,0.045454223,-0.023387434,0.027565476,-0.026292853,-0.0102049885,0.061806217,-0.017300459,-0.029366357,-0.05705189,-0.018873226,-0.016472053,-0.016231935,0.033640444,0.020746142,-0.031023167,-0.009004402,-0.015163413,0.011303526,0.0005950409,0.022559028,-0.015307483,-0.012810263,0.02162257,0.06339099,0.0020154854,-0.024900174,-0.0077918093,-0.0025797612,-0.03798657,0.05042465,-0.009202499,-0.007539686,-0.00059579127,0.0054266527,0.019485526,-0.0037968562,-0.04401352,0.059068877,0.035537373,0.07438837,-0.00044234126,0.010451109,-0.02252301,-0.012690204,0.011789763,-0.0016748188,-0.040940013,-0.0043371203,0.022883186,-0.03714616,0.024143804,0.023759615,-0.09110054,-0.07304371,0.009574681,-0.0062070345,-0.039691404,-0.018465027,-0.008764285,0.016904265,-0.007551692,0.025020232,-0.036137667,0.0005590233,0.034432832,-0.0445898,0.049896393,0.01775668,-0.01546356,0.020121837,0.049055982,-0.061806217,-0.034696963,-0.025980702,0.031167237,-0.023375427,-0.026172794,0.0045742365,-0.010253012,-0.0068253367,-0.0787585,0.01153764,-0.0050304593,-0.013422562,-0.0073235803,0.0050934902,0.015235448,-0.08898751,0.018332962,0.01180177,-0.047255103,0.003499711,0.01194584,-0.023711592,-0.0039289207,-0.02871804,-0.00093795854,-0.024527991,-0.045670327,0.011753746,0.05124105,0.0049404153,0.053354084,0.013566633,-0.03008671,-0.0008779292,-0.05758015,0.034168705,-0.025620526,-0.038058605,-0.007983903,-0.01706034,0.040003557,0.041756414,-0.048815865,-0.020734137,-0.040916003,0.04194851,0.004943417,0.039331228,-0.09138868,0.053786296,0.004547223,-0.016135888,-0.005843857,0.013734714,0.0011142947,-0.025764596,-0.03563342,-0.017876739,0.03628174,-0.07702966,-0.019689625,0.0064291432,-0.049055982,-0.046198584,0.011339543,-0.009106452,-0.040531814,0.045670327,0.022739116,-0.031119213,-0.05176931,0.04946418,0.03813064,0.0458144,-0.011237494,-0.04682289,0.0072995685,-0.03212771,0.029462403,0.017300459,0.011435591,-0.08879541,-0.03270399,0.00364078,0.03659389,-0.009274534,0.01830895,-0.062046334,-0.0134345675,-0.017360488,0.01435902,0.01354262,0.050856862,-0.03107119,0.034024633,-0.019485526,0.03188759,-0.020626083,0.0059399037,-0.060317487,0.027685534,0.010649206,0.0131104095,-0.0016237939,0.025836632,-0.007551692,-0.017780693,0.010823291,0.052921873,-0.032103695,0.035705455,0.031551424,-0.03577749,0.043317176,-0.03176753,-0.011669705,0.024011739,0.0013949319,-0.037050113,0.02996665,0.012203966,-0.021226376,0.0066572544,0.008512162,-0.04142025,-0.01603984,-0.046318643,0.014118902,-0.016616123,0.021982746,-0.019221397,-0.07530081,-0.027973676,0.013674685,0.0036918048,-0.00043296168,0.020145848,0.012486104,-0.01932945,-0.0057628173,-0.022354929,0.0018383987,-0.0045502246,-0.015247454,0.0062910756,0.005765819,-0.0006288074,0.042164613,0.08514562,-0.0012958836,0.0042440747,0.00928654,0.008224021,-0.0066092312,0.00025625026,-0.011957846,0.019929742,0.027013207,0.034865044,-0.036401797,-0.024395926,0.05921295,-0.008704255,-0.0057177953,0.015799724,0.032391835,-0.022919204,0.011075415,-0.019197386,-0.05412246,0.06295878,-0.035753477,-0.026172794,-0.011303526,0.027373383,-0.0013198953,0.036425807,-0.01842901,-0.055755258,-0.030831072,-0.015715683,0.009238517,-0.029246299,0.031263284,0.027421406,0.0128222685,0.033352304,0.00621904,-0.0062010316,-0.006699275,0.013782738,-0.031959623,0.028549958,0.031935614,-0.0014234459,-0.022474987,0.05786829,0.0284299,0.015319489,-0.013386545,-0.012125928,-0.030494908,0.013386545,0.02595669,0.06444751,-0.0010857808,0.057292007,-0.020614078,0.01752857,0.012870292,-0.052681755,0.012221975,-0.01935346,0.04106007,0.042356707,0.03853884,-0.011861799,0.043389212,0.002237594,0.01712037,0.0010325047,-0.045094047,0.019245408,-0.008668237,-0.027589487,-0.044805903,0.02677309,0.046630796,0.021202365,-0.06439948,-0.008596202,-0.00093345635,0.033232246,0.008830317,-0.031407353,0.02554849,0.0051024943,0.046750855,0.02243897,-0.028694028,-0.0167722,-0.027397394,-0.0077677974,0.011321534,-0.034432832,0.018332962,-0.04374939,0.030662991,-0.016892258,0.01339855,-0.0064771664,-0.020734137,0.048119523,-0.04115612,0.052249543,-0.039283205,-0.04211659,0.016075859,-0.047351148,0.009484637,0.0075636976,-0.014202943,-0.010703232,0.023783628,-0.037050113,0.01235404,0.008133977,-0.047807373,-0.020734137,0.021382453,-0.074484415,-0.0353933,-0.0058678687,-0.034865044,-0.020890214,-0.00617702,0.037650406,-0.010949353,0.00029151753,0.0011082918,0.020998266,-0.008097959,0.010126951,0.013026368,0.017156387,0.017852727,-0.015907777,0.0017648628,0.023615545,-0.015451554,0.0025842634,-0.021094313,0.021046288,-0.011807772,0.04682289,-0.008638223,0.011717728,0.0062910756,0.027541464,0.01395082,0.022811152,-0.03745831,-0.050088488,0.027565476,0.024011739,0.0044151586,0.014070879,-0.03688203,0.033088177,-0.00004708552,0.023567522,-0.015907777,0.028141757,-0.04077193,-0.031983636,-0.013854774,-0.0050304593,0.012618168,0.01163969,0.037770465,-0.0103130415,0.00922651,-0.0023366422,-0.06118191,0.05124105,0.016183913,-0.027013207,-0.037098136,-0.0742443,0.015379518,0.06540798,0.0060659656,0.029438391,-0.0046192585,0.020397972,-0.019017298,0.00090269133,-0.03039886,-0.021898706,0.0005387634,-0.0027028213,0.037362266,-0.03383254,0.0062970784,0.041300192,-0.036930054,0.06286273,-0.010829294,-0.03296812,-0.005324603,-0.008602206,0.015307483,-0.013902796,0.042740896,-0.036089644,0.10152163,-0.0129303215,0.021838676,-0.0055407085,-0.00095446664,0.00025456195,0.0535942,-0.0425488,0.013926809,-0.02078216,0.007599715,0.0029009182,0.020842189,-0.03671395,-0.0331362,0.020445995,0.052537683,-0.011867802,-0.018176885,0.0002645043,0.03455289,0.022763127,0.019893726,0.0030524924,0.036089644,0.0032986125,0.0214785,0.041636355,0.064303435,-0.015031349,-0.0043821423,-0.05080884,-0.022078793,0.01519943,-0.0015907777,0.017504558,-0.012378051,0.013026368,0.0104331,0.005954911,-0.041372225,0.001842901,0.024431944,-0.022162834,-0.020962248,-0.004211059,-0.007107475,0.033472363,0.031143226,-0.03690604,-0.015271466,-0.041036062,-0.028477922,0.0041570324,0.009232514,0.0007983903,-0.015499577,-0.04571835,0.019641602,-0.011075415,0.04874383,-0.029582461,0.006513184,-0.04823958,0.029102227,-0.029006181,0.013098404,0.010913336,-0.0018383987,0.0036828003,-0.08442527,-0.0037938547,-0.028549958,0.041252166,-0.016952287,-0.003634777,0.028525945,0.004051981,-0.026292853,-0.0018398995,0.03092712,0.026364889,0.007173507,0.013278492,0.056139447,-0.010547156,-0.011591667,0.013422562,-0.0050454666,0.023915691,0.017768687,0.008668237,0.019605584,-0.006951398,-0.020205878,-0.00574781,0.0033796523,0.03424074,0.0433652,0.006981413,-0.052441638,-0.016988305,-0.016784206,0.0128582865,-0.018356975,-0.030422874,-0.005651763,-0.0102229975,0.0059188935,-0.018380987,0.030158743,-0.002642792,-0.033352304,-0.016604118,0.014599137,0.002681811,0.020049801,0.016075859,0.000991985,-0.02470808,0.00041983023,-0.0053846324,-0.007665748,-0.0073175775,-0.05676375,0.0061890255,0.05287385,-0.038274713,-0.011063409,0.030759037,0.019221397,-0.008368091,0.0026863134,-0.025644537,0.014623149,0.04014763,0.009034417,-0.033640444,-0.022919204,-0.022222864,-0.0046522743,-0.024756102,0.020590065,-0.011759749,0.027229311,-0.026340878,-0.034793008,0.0055407085,0.05013651,0.023783628,0.013914803,-0.019005291,-0.025572501,0.01204789,0.013470585,-0.016724177,-0.008266041,-0.01830895,0.0033496376,-0.029486416,0.020397972,0.006507181,-0.038754947,0.04555027,-0.013494597,-0.017744675,0.045262128,-0.01024701,0.06286273,-0.046222597,-0.047038995,-0.011699719,0.023207346,0.020301925,-0.028814087,-0.017960781,-0.015319489,-0.019845702,-0.035441328,0.029486416,-0.0028919138,-0.006083974,-0.0003031482,-0.011693717,-0.009028413,0.018789185,0.0010077427,0.043485258,-0.019257415,-0.0016958291,-0.0020650094,0.0010152464,0.038875006,-0.022895193,-0.010126951,0.03786651,-0.028790075,0.04228467,0.0039079105,-0.025212325,0.0505207,-0.035561386,-0.013554626,-0.00938859,-0.01650807,0.044997998,0.029246299,0.0069574015,0.039019074,-0.04420561,0.008980391,-0.04350927,0.046054516,0.024407933,0.046966963,0.036521856,0.013962826,0.00082465314,0.020590065,-0.005573725,-0.014659166,0.02526035,-0.0025212325,0.021442482,0.01149562,-0.009514651,-0.007041442,0.039163146,-0.0057117925,0.08159189,-0.035537373,0.033616435,-0.00883632,0.0014497087,0.022426965,0.00062317966,-0.012245987,0.040123615,0.010072924,0.030446885,0.013998844,-0.019941749,-0.03296812,-0.025188314,0.013134421,0.008157988,-0.021286406,-0.0023996732,-0.013866779,-0.011339543,0.051721286,0.0131824445,-0.008410111,0.0047183065,0.00421406,-0.056043398,-0.0052495664,-0.00883632,0.016219929,-0.024924185,0.0069333897,0.008614211,-0.017108364,0.029246299,0.028958157,-0.012125928,0.0045112055,0.009484637,0.016820222,0.0779421,-0.0012861288,-0.020301925,-0.013794743,-0.009328561,-0.0037098136,0.025428431,0.011915825,-0.029030193,0.00824203,0.008686246,0.0055527147,-0.020962248,0.0032535905,0.022426965,-0.016075859,0.008013918,0.0022571033,-0.0026112767,-0.02194673,-0.020337943,-0.011381564,-0.023147317,0.031959623,-0.03229579,0.0074736536,-0.043941483,0.009172484,-0.009682734,0.006237049,0.03371248,-0.013470585,-0.012942327,0.034144692,0.029510427,0.005042465,0.022751123,0.038995065,-0.050472673,-0.008464138,-0.017204411,-0.027733559,-0.011159455,0.0060929786,-0.012053893,-0.02845391,0.0027193294,-0.025788607,0.019293431,-0.041108098,-0.035753477,-0.012083908,-0.01904131,0.019653609,0.017168393,-0.028141757,-0.009568678,-0.037530348,0.016700163,0.004187047,-0.00061154895,-0.0045052026,-0.01008493,-0.034793008,-0.024371915,0.0110454,-0.034576904,-0.032679975,-0.021658588,-0.020530036,0.0035717462,-0.087162614,0.023627551,0.04598248,-0.013782738,0.00013928684,-0.017600605,0.005453666,0.0056757745,-0.012143937,-0.050856862,0.010126951,-0.005123505,0.039955534,-0.0004933662,0.023399439,-0.022559028,0.0026968184,0.035729468,0.0065371958,-0.021286406,0.013854774,0.0102229975,-0.005132509,0.030735025,0.01249811,0.009160479,-0.025164302,-0.019833697,0.017072346,-0.02360354,0.030158743,-0.020770155,-0.030326826,-0.0030299814,0.004394148,0.017648628,0.007533683,0.015079372,0.012738228,-0.05618747,0.017660635,0.006056961,-0.00036993084,0.011909822,-0.033856552,0.03851483,-0.012894304,0.035153184,0.008644226,0.0157517,0.006147005,-0.0132544795,0.012870292,-0.009370581,0.0025122282,0.0284299,-0.0033316289,0.036257725,0.008662235,-0.017864734,0.04406154,0.0018308951,0.025380408,-0.027253324,0.012510116,-0.020566054,0.015979812,0.016952287,0.00027332111,0.015691672,-0.014118902,0.05589933,0.030759037,-0.010865312,-0.031287294,0.01546356,-0.024491973,-0.014491084,0.009622704,0.04312508,0.01198786,0.0031155231,0.01603984,0.019473521,0.000668952,-0.0003622396,0.015991818,-0.018681133,-0.009568678,0.028141757,0.0073836097,-0.02203077,0.0218867,0.02790164,-0.0015487572,0.006333096,-0.054218505,0.001842901,0.018681133,-0.039523322,0.008314065,0.014515096,0.02708524,-0.013782738,-0.040843967,0.012894304,-0.021370448,0.016315976,0.007881853,0.024059761,0.0048443684,0.03690604,-0.025476456,0.0390671,-0.008206012,-0.030855084,0.011027391,0.0020349948,0.034336787,-0.033952598,0.0049824356,0.004610254,0.011351549,0.022354929,0.006165014,0.011141446,0.033568412,-0.02886211,-0.010523144,0.017480547,-0.05330606,0.034865044,-0.008914358,0.052249543,-0.009202499,-0.004298101,-0.0033496376,0.011777758,-0.031023167,-0.012041887,-0.0015967806,0.006165014,-0.039571345,0.017360488,0.027973676,0.0062070345,0.004394148,-0.0017198408,-0.0366179,-0.002135544,-0.01249811,-0.044421718,-0.0044901953,-0.023159321,0.013938814,0.03296812,-0.034072656,0.038154654,-0.019197386,0.027421406,0.00963471,0.02830984,0.015991818,0.028405886,-0.039523322,-0.03135933,-0.021406464,0.021154342,-0.019305438,-0.00994086,-0.013122415,0.01724043,0.0072035217,-0.012798257,-0.056715727,0.0390671,0.024828138,-0.01456312,0.0017423518,0.009220508,-0.028477922,-0.0038628886,-0.023771621,-0.012894304,0.015307483,-0.005168527,0.026893148,-0.008596202,0.031095201,-0.02441994,-0.017600605,0.023627551,0.0035027124,0.0019374471,-0.020698119,-0.011861799,0.0062310463,-0.0021325424,-0.005858864,-0.038202677,-0.0031815553,0.018561075,-0.015763706,-0.0005725299,0.020710126,0.013374538,-0.013158433,0.0159558,-0.012318022,-0.010919338,-0.00621904,-0.011705723,0.0006839594,0.005945907,-0.0044721863,-0.0037548356,-0.072035216,0.0037908533,-0.0018849215,-0.02278714,-0.022835163,-0.017840723,0.004817355,0.07227533,-0.03219974,0.012618168,-0.053642225,0.0011458101,-0.044397704,-0.017660635,0.021298412,-0.020277914,-0.014395038,-0.01609987,0.026196808,-0.017348481,-0.0006273067,0.012522122,0.024011739,0.029438391,0.0052885856,0.01706034,0.0076717506,-0.015943795,0.004130019,0.0011893314,0.03304015,0.038586862,0.005681778,0.0129303215,-0.018092845,0.012582151,-0.0061109876,0.01511539,0.0040699895,-0.0018924251,0.00824203,0.0029324335,0.024924185,-0.026220819,0.004039975,0.038850993,0.0043791407,-0.029438391,-0.00783383,0.010967362,-0.008091956,0.007971898,-0.0077617946,-0.008560185,0.04975232,0.01587176,0.0104391035,0.0064831693,0.0072215307,-0.023711592,-0.013278492,0.009250523,0.014551113,0.020482013,-0.009928854,-0.019401485,-0.029054204,-0.022018764,-0.0013349026,-0.019149361,0.014142914,-0.027253324,-0.008200008,-0.0057838275,0.015511584,0.028549958,0.0067593046,-0.0378425,0.014539108,0.01665214,-0.024527991,0.012798257,0.014082884,-0.00652519,-0.013314509,-0.003808862,-0.01761261,0.0010482625,0.016219929,0.02078216,0.039307218,0.005408644,0.007461648,0.029894615,-0.015031349,-0.04531015,0.025500467,0.004298101,0.009268532,0.023159321,-0.0016027836,0.009028413,0.010985371,-0.009928854,0.0037008093,0.03683401,0.03270399,0.003712815,0.011159455,-0.036930054,0.024780115,0.011027391,0.004051981,-0.025020232,0.048983946,-0.026749076,-0.02333941,-0.0046012495,-0.00020503774,0.03299213,-0.040579837,0.039115123,-0.0017558584,0.02078216,-0.030278802,0.009580684,-0.026268842,0.013122415,-0.005126506,-0.02215083,-0.0131104095,0.0066272398,-0.032391835,-0.011279514,0.065263905,-0.004838365,0.014587131,0.030975142,0.019461514,0.005555716,0.005105496,0.035921562,0.006795322,0.015631642,-0.01851305,0.0029999665,0.013446574,-0.012173952,0.021346435,-0.013206456,-0.018801192,-0.025308372,0.024155809,-0.037434302,-0.0013221464,0.0033316289,0.007845836,0.009220508,-0.0008779292,-0.01525946,0.0023921696,-0.011747743,0.022535017,0.018621104,0.0048443684,0.034576904,-0.004988439,0.008212015,-0.019425496,0.0038238694,0.003520721,-0.035369292,0.025428431,-0.0005575226,-0.008338076,-0.016676152,0.020518031,-0.0075937123,-0.0038178666,-0.007359598,0.0000396053,-0.048407666,-0.03203166,-0.03532127,-0.0032445863,0.012053893,0.017660635,-0.03560941,0.0015487572,-0.050904885,0.010024901,0.04708702,-0.007257548,0.020073814,-0.026580995,-0.017420517,-0.007893859,-0.004433167,0.0014857263,0.040940013,-0.031287294,-0.0068313396,0.0066092312,0.022330917,0.005561719,-0.0015637645,-0.0100068925,0.020590065,-0.028766062,0.013338521,0.035753477,-0.03135933,0.003814865,0.038778957,-0.0068313396,-0.026316866,-0.008115968,0.039835475,-0.048551735,0.025932677,0.016279958,0.0038298722,0.0031755525,-0.004907399,0.004039975,-0.0131104095,-0.018945262,0.009724754,0.013626662,0.012690204,0.03863489,-0.012288007,-0.0272053,-0.0029879608,0.036257725,0.056571655,0.02223487,0.020734137,-0.022330917,0.020554049,-0.014899284,0.0014309495,-0.009928854,0.015655654,-0.018260928,-0.04557428,0.006357108,-0.022186847,0.010325048,-0.005681778,-0.004478189,-0.031599447,-0.02321935,-0.023327405,0.012257992,0.015091378,0.0065912222,0.011789763,-0.00068470975,-0.02092623,0.011159455,0.009616701,0.008272044,-0.014599137,-0.009886834,0.012978345,0.011819778,-0.020482013,-0.010523144,0.010012895,0.009496642,-0.011129441,-0.018549068,-0.008524167,-0.026965182,0.015403531,-0.037626393,0.014731201,0.0012546134,-0.014539108,-0.002885911,-0.032607943,0.012666192,-0.02333941,-0.008572191,-0.021490507,-0.02217484,-0.022210859,0.021694606,0.0066812662,0.04341322,-0.04048379,-0.010301036,-0.016820222,0.000008406453,0.0026547979,-0.037050113,-0.023231357,0.017096357,-0.015343501,-0.0070354394,0.0047093024,-0.027637511,-0.01746854,0.002996965,-0.03426475,0.017960781,0.008194006,0.000492991,-0.027949665,-0.005042465,0.00018712273,-0.02374761,-0.032439858,-0.0050124503,-0.046054516,0.01932945,0.02125039,0.017996797,0.013746721,-0.0005076232,-0.0015074869,-0.025428431,-0.013566633,0.0069574015,0.012155943,-0.02139446,-0.024515985,-0.02156254,-0.009010405,-0.0038118635,0.00914247,0.013782738,0.025860643,-0.038610876,-0.0038418781,0.038322736,0.011759749,0.03412068,-0.0019419494,-0.030614967,0.01822491,0.020157855,0.00077287783,-0.0045562275,0.05205745,0.022306906,-0.03532127,0.017792698,-0.005606741,0.027397394,0.04502201,0.0039799456,0.02194673,0.0010092434,-0.016808217,-0.0011503124,-0.04089199,-0.0024221842,-0.010547156,0.017864734,0.009640713,0.02243897,0.00423507,0.017876739,0.020073814,-0.0036047623,-0.019245408,-0.0023471476,-0.025716573,-0.018969273,0.030302815,-0.015511584,-0.0014204445,-0.028477922,0.04060385,-0.0011743241,-0.00967673,-0.013566633,0.013758726,0.00009614075,-0.010253012,-0.023495486,0.0036197696,-0.0064051314,0.041348215,-0.016291965,-0.003832874,-0.026556984,0.019485526,-0.013266486,-0.0075036683,-0.0013904298,0.014178932,0.026989194,-0.015691672,0.00967673,-0.0001199649,-0.0003279103,0.0029129242,-0.026028724,0.017204411,0.007947885,0.016219929,0.01525946,0.039571345,-0.026677042,-0.008770288,0.014070879,-0.014719196,0.0062070345,-0.009034417,0.03841878,-0.015859753,-0.02374761,0.039403263,0.019221397,-0.001628296,-0.012318022,0.012342034,-0.0012005869,-0.011591667,-0.0034576904,-0.0044541773,0.011441593,-0.027661523,0.002671306,-0.035657432,0.025788607,0.02010983,-0.0034696963,-0.012402063,0.017336475,-0.022679087,0.025860643,-0.0032866066,0.056139447,-0.003985949,-0.0050574723,0.023111299,-0.0038718928,-0.008722264,-0.01775668,0.021598559,0.021034284,0.020241896,0.013722708,0.0042620837,0.03897105,0.0069333897,0.041588333,0.0056217485,0.005798835,0.013770732,-0.0042740894,0.019245408,-0.00550169,0.009814798,0.0065852194,-0.019857708,0.046006493,-0.012119926,-0.0007214777,-0.007911867,-0.011567655,0.0078098183,-0.017576592,-0.021358442,0.008001912,-0.029342344,-0.03023078,0.00065544544,0.006801325,-0.0061830226,-0.011735737,0.0019974764,-0.011303526,0.010607186,-0.0058858776,-0.0041390234,-0.022390947,-0.009436613,0.018729156,-0.0382507,-0.008091956,0.016291965,0.009520655,-0.03371248,0.012510116,-0.015703676,-0.0076717506,0.008548179,0.03258393,0.018969273,-0.008554182,-0.015847748,0.0065852194,0.01889724,-0.000022288239,0.053402107,-0.007851838,-0.020650096,0.021910712,0.047063008,0.0032926097,-0.015883764,0.0057598157,-0.009406598,-0.011657699,-0.017372493,-0.006249055,-0.024491973,0.007713771,-0.020662101,0.0072095245,0.011525635,-0.003172551,0.023879673,-0.0003823119,-0.015067366,-0.03371248,-0.010253012,-0.004091]},{"id":"interface-GatewayInviteDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayInviteDeleteDispatchData\nDescription: INVITE_DELETE — code, channel_id, guild_id?\nProperties: channel_id: string, code: string, guild_id: string","meta":{"url":"/docs/typedefs/GatewayInviteDeleteDispatchData"},"embedding":[0.0139226,0.028380686,-0.009755133,0.005337385,-0.0010207676,0.015529054,-0.05508507,0.028334122,0.009353519,-0.0006355242,0.02435291,-0.02819443,0.0042896974,0.008608498,0.05960177,-0.010022876,-0.035318702,0.056481987,-0.018637193,0.06081243,-0.024283065,0.04749516,0.038345356,0.034713373,-0.04316472,-0.0026133978,0.020162161,-0.014493008,0.03888084,-0.021826819,0.04870582,-0.032804254,0.04621465,-0.018090067,-0.025982646,0.023677733,-0.023840707,-0.011460535,-0.04165139,-0.01944042,-0.031174518,-0.001775248,0.028869607,0.029940575,-0.032920662,0.010540899,-0.039625864,-0.011664252,-0.003908456,-0.0076597584,-0.011815585,-0.018823449,0.015447567,0.07925173,0.0035010218,-0.00078503793,-0.016728075,0.007846014,-0.018253041,0.012677017,-0.03168672,-0.014504649,-0.010104362,0.021826819,0.002366027,0.0042809667,-0.053222515,0.07399001,0.039881963,0.06695886,-0.030382933,-0.014004087,-0.02027857,-0.0018450938,-0.013619935,0.010570001,-0.050568376,-0.00089344446,0.03273441,-0.046750136,0.0018363631,0.024655575,-0.07566631,-0.06346657,0.010302259,0.0022627136,-0.03315348,-0.008707446,0.010756257,0.035295423,-0.032827538,0.0155756185,-0.05494538,-0.015459209,0.0059718178,-0.04400287,0.056109477,-0.012863272,-0.026378438,0.039649144,0.060067408,-0.050940886,-0.04749516,-0.013096091,0.007997347,-0.025400598,-0.014888801,0.035830908,-0.018625552,-0.017298482,-0.0362267,0.02698377,-0.025400598,0.0036174315,-0.008282551,0.016460331,0.024306346,-0.090427056,0.03513245,0.00467967,-0.04439866,0.0035039322,0.015366081,-0.03697172,-0.056481987,-0.0033293176,-0.007374555,-0.039136942,-0.044934146,0.005977638,0.037507206,-0.002157945,0.028846323,0.008986829,-0.0199177,0.009493211,-0.0292654,-0.0002124477,-0.031104673,-0.042047184,0.0017446905,-0.0024067706,0.016239153,0.04819362,-0.06179027,-0.019533549,-0.018055145,0.02329358,0.00803227,0.023421632,-0.079484545,0.04400287,0.017484738,-0.028497096,-0.018811809,0.012083327,0.024422755,-0.029847449,-0.024026962,-0.023701016,0.018369451,-0.07520067,0.0007908584,0.00683907,-0.031151237,-0.022269176,0.012153173,0.013957524,-0.029405091,0.036762185,0.0076713995,-0.020627799,-0.042675797,0.021547437,-0.0041558263,0.030732162,0.0041907495,-0.03839192,-0.015051775,-0.04800736,0.013340552,0.0022728995,0.007211581,-0.08986829,-0.032804254,0.0068565314,0.009138161,-0.017414892,-0.019032987,-0.018206477,-0.000044426673,-0.0064199953,0.016250795,0.008818035,0.035295423,-0.010325541,0.04260595,-0.03382866,0.028334122,-0.056947626,0.025330752,-0.04316472,0.038904123,0.0038415203,-0.009143982,-0.019871136,0.0094873905,-0.028892888,0.00036869137,-0.0038822636,0.045865424,-0.035388548,0.017566225,-0.0050550913,-0.056761373,0.03154703,-0.027053615,0.032385178,0.00031557944,-0.023817426,-0.041441854,0.01451629,-0.002267079,-0.03059247,0.009126521,-0.010936691,-0.0078052706,-0.03180313,-0.024166655,-0.018637193,-0.021815179,-0.0059107025,-0.004219852,-0.07236027,-0.008206884,0.0072756065,0.0017301393,0.019847855,0.017251918,0.010744615,-0.030452779,-0.031849694,-0.016762998,-0.010622385,-0.009178905,-0.016041256,0.03189626,0.006681917,-0.00017606968,0.028450532,0.04174452,0.043653637,0.00983662,-0.022874506,-0.017356686,-0.011349946,0.0046854904,-0.025889518,0.026797514,0.013189219,0.043700203,-0.034480553,-0.018881654,0.03264128,-0.013689781,0.014597776,0.031849694,0.01474911,-0.049637098,0.006728481,0.00062024547,-0.06798327,0.06598102,-0.038810994,0.0048688357,0.001859645,0.024306346,0.00069954956,0.045725733,-0.057972033,-0.06765732,-0.0023543863,0.005709896,0.03001042,-0.030685598,0.06258186,-0.017682634,0.027426125,0.020185443,0.016355563,-0.04377005,0.0076248357,0.0030615751,-0.03874115,0.008224346,0.049637098,0.018101709,-0.011571124,0.034224454,0.03382866,0.026425002,0.0042314925,-0.040487293,-0.049497407,-0.0042169415,0.011885431,0.022653328,0.016425408,0.008468806,-0.056109477,0.010139285,-0.0043624537,-0.040976215,-0.0013052438,-0.008823856,-0.019114474,0.0035563165,0.044584915,0.009807518,0.026238747,0.034922913,0.027402844,-0.0022467072,-0.057459828,-0.00093418785,-0.018823449,-0.015261312,-0.04668029,0.024515884,0.04691311,0.027868483,-0.056668244,-0.007956604,0.022979276,0.052151546,0.02698377,-0.070590846,0.062162783,-0.00025992104,0.03301379,0.04772798,0.043118153,0.015855001,0.0012514043,0.023142248,0.009208008,-0.023375068,0.0062162783,-0.029358527,0.04018463,-0.015598901,0.010657309,-0.007100992,-0.058251414,0.018055145,-0.04402615,0.045423064,-0.0070369667,-0.03969571,0.027193306,-0.023072403,-0.011454714,-0.011850508,-0.00013132469,0.008439704,-0.0067343013,-0.045423064,-0.011955276,-0.0063501494,-0.047914233,0.0065946095,0.0004030686,-0.08432719,-0.01595977,-0.024539165,-0.026238747,-0.029055862,0.011512919,0.03971899,-0.03299051,0.004496325,0.0041674674,0.010244054,0.0029655371,0.02087226,0.019754726,0.0020444454,0.033758815,-0.032292053,-0.0010716969,0.03767018,-0.0029786332,0.00864342,-0.018881654,0.0051249373,-0.01657674,0.035761062,0.007752886,0.0154941315,0.0017563314,0.036669057,0.02472542,-0.005698255,-0.037344232,-0.04977679,0.0225602,0.028986016,-0.01632064,0.025842953,-0.035481676,0.015866643,0.011722457,0.023829065,0.016122743,0.020942105,-0.0679367,-0.013340552,-0.02052303,0.021524154,0.024399474,0.008439704,0.047192495,-0.006903095,0.013084451,0.008684164,-0.04819362,0.042163596,0.04558604,-0.0006380707,-0.062209345,-0.09438499,0.009085777,0.039509453,0.00293789,0.04081324,0.0064199953,0.025377315,-0.024189936,-0.014551213,-0.011640971,-0.059555203,0.0003697827,0.0001978965,0.038019408,0.007997347,0.011565304,0.041302163,-0.030499343,0.04737875,0.004400287,-0.035085883,-0.008457165,-0.028380686,0.031151237,-0.01680956,0.0025784748,-0.039649144,0.07324498,-0.01931237,0.012805067,-0.043607075,0.002745814,0.023375068,0.07147556,-0.02519106,0.00032612905,-0.03417789,0.02160564,-0.0121066095,0.024213219,-0.024026962,-0.013689781,0.053688154,0.029777601,0.0013707243,-0.01857899,0.001583172,0.025889518,0.035761062,0.020895543,0.0145395715,0.03299051,-0.009382622,-0.007869296,0.028823042,0.04174452,0.00012732312,-0.0035970598,-0.051592782,0.007054428,0.012269583,-0.008107936,0.029451655,-0.011099665,0.0021637653,-0.0019716893,0.0146210585,-0.027868483,0.029335245,0.0024678856,-0.020185443,-0.034271017,0.032920662,-0.027332999,0.030289805,0.0050667324,-0.04186093,-0.034247734,-0.036040444,-0.039439607,0.021431027,0.029311962,-0.010797,-0.030685598,-0.036762185,0.015144902,-0.041302163,0.014271829,-0.052291237,0.0199177,-0.03780987,0.021826819,-0.002507174,0.005733178,-0.00042744188,-0.005587666,0.0029073323,-0.07198776,0.007019505,-0.005002707,0.040743396,-0.021163285,-0.01846258,0.06630696,0.018660475,-0.0017868889,0.014795673,0.040464014,0.052337803,-0.025563572,0.020848978,0.026494848,0.012176455,-0.0049328613,-0.002614853,-0.011821405,-0.00025046276,0.028823042,0.012374352,0.02003411,0.004909579,-0.009656185,-0.016751356,-0.011681714,0.027495971,0.019568471,-0.001056418,-0.042512823,-0.0010673314,-0.028706633,0.0037745845,-0.04127888,-0.012083327,-0.030964982,-0.009993773,0.0009909376,-0.0107155135,0.018776884,-0.01666987,-0.01846258,0.0023718476,0.003792046,-0.006967121,0.015203107,0.024818549,0.011774842,-0.03394507,-0.007450221,-0.0074676825,-0.043048307,-0.00864342,-0.06835578,0.024655575,0.03683203,-0.0362267,-0.017845608,0.011489638,-0.009388442,-0.026425002,-0.003058665,-0.011146229,0.0024926227,0.03671562,0.0021332079,-0.020162161,0.015447567,0.01812499,-0.0067343013,-0.012444197,0.019836213,-0.0038298792,0.045423064,-0.032385178,-0.023095684,0.021966511,0.036785465,0.021291334,-0.0106340265,-0.0060533048,0.02374758,-0.0000023532039,0.017251918,-0.0045894524,-0.004211121,-0.02772879,-0.021396104,-0.03743736,0.0053985,-0.0036610852,-0.022641687,0.018020222,0.0074793235,-0.0003550496,0.010389566,0.01080282,0.042745642,-0.04006822,-0.04945084,0.009889004,0.0019265806,0.0019265806,-0.028846323,-0.035574805,-0.011891251,-0.020138878,-0.037367515,0.020651082,0.00839314,-0.018450938,-0.013142656,-0.00050710974,-0.006984582,0.027193306,0.013235783,0.03969571,-0.027798638,-0.009574698,-0.010465233,-0.0005733178,0.029847449,-0.01007526,-0.02267661,0.019812932,-0.0076131946,0.0328741,-0.0086958045,-0.03697172,0.059694897,-0.028590223,-0.0062104575,-0.0036378033,-0.013154296,0.025959363,0.027821919,0.009947209,0.010389566,-0.026378438,0.024259781,-0.02134954,0.026378438,0.0189515,0.027519254,0.03715798,0.0015424285,-0.0049328613,0.009248751,-0.024376191,-0.025214342,0.015226389,-0.009772595,0.014737468,0.022886148,-0.013165938,-0.013061169,0.028613506,0.0021186566,0.084140934,-0.022641687,0.020232007,0.008975188,0.024189936,0.032105796,0.01632064,-0.0008388774,0.025866237,0.038601458,0.01715879,0.023421632,0.013259065,-0.034643527,-0.022467073,-0.0034631887,0.01584336,-0.004653478,0.028799761,-0.020325134,0.0021448487,0.04165139,0.017182073,-0.0068041473,0.0019105743,0.0130378865,-0.07142899,-0.0083407555,-0.003131421,0.015203107,-0.046959676,-0.0022146946,0.007910039,-0.011018178,0.0057681007,0.024748703,0.0021404834,-0.012257942,0.009638723,0.032455023,0.029102426,0.008235986,-0.030941699,-0.023538042,-0.046843264,0.0147025455,0.0059601767,0.014458085,-0.023316864,0.01594813,0.019498626,0.0052733594,-0.026355157,-0.0032798434,0.026005927,0.008102115,0.017251918,-0.029568065,-0.033316456,-0.0060649454,-0.0132823475,0.0033438688,0.008428062,0.02315389,-0.008660882,0.0065596867,-0.051406525,0.0038531611,-0.027263151,-0.013491885,0.010110183,-0.012316147,-0.02507465,0.041115906,0.022385586,-0.012420915,0.015540696,0.04113919,-0.0551782,-0.015401004,-0.052803442,-0.018392732,0.015133262,0.014050651,-0.016250795,-0.014213624,-0.009295315,0.00032812986,0.016402127,-0.04977679,-0.015249671,-0.012921477,-0.017612789,0.017182073,0.009039214,-0.029824166,0.010086901,-0.03997509,0.012560607,0.00012441287,0.001607909,-0.017391609,-0.012502402,-0.024515884,-0.03408476,0.019568471,-0.029288681,-0.02209456,-0.041721236,-0.021640563,0.0072697857,-0.07943798,0.018567348,0.044352096,0.00864342,-0.014690905,0.005101655,0.023782503,0.045772295,-0.01079118,-0.058344543,0.027915047,-0.0074909646,0.031384055,-0.006332688,0.038950685,-0.03839192,0.026960487,0.022059638,0.0068448903,0.0041092625,0.029055862,0.015261312,-0.0020386248,0.028124584,0.0016632036,0.010005414,-0.012420915,-0.0065946095,0.029335245,-0.0029189733,0.026052492,-0.025726544,-0.020336775,0.0035359447,-0.0058379467,0.00007653028,-0.003250741,-0.0062803035,-0.005349026,-0.046726856,0.012432557,-0.008916983,-0.02221097,0.0071300943,-0.030336369,0.0020459006,-0.010942512,0.015680388,0.0096794665,0.00051147514,-0.021500872,-0.00007530252,0.0047611566,-0.0295215,0.013189219,-0.0047436953,0.0061580734,0.024934959,-0.02207128,-0.018776884,0.0420239,0.017670993,0.012094968,-0.0345504,0.015168184,-0.03634311,-0.015482491,0.0045283376,0.011699175,0.0071359146,0.001319795,0.04137201,0.026611257,0.002098285,-0.0023383799,0.027309716,-0.023130609,0.011483817,0.032757692,0.039765555,-0.0073861955,0.020301852,-0.010575822,0.0064199953,-0.010226592,0.01403901,-0.018043503,0.004892118,-0.015424286,-0.005983459,-0.009970491,-0.009586339,0.0023354697,0.043025028,0.015424286,0.014283471,-0.04619137,-0.025330752,0.00007193756,-0.02914899,0.022536919,0.02400368,-0.011117127,-0.030173395,0.0020924644,0.00026155805,-0.011384869,0.036995005,0.004732054,0.020115597,0.008765651,0.047681414,-0.04437538,0.011658432,-0.031477183,-0.033805378,0.014446444,0.00540141,0.02998714,-0.026657822,-0.014027369,-0.011117127,0.023060761,0.0017737929,0.022874506,0.053455334,0.001957138,-0.009632903,-0.013468603,0.036901876,-0.0629078,0.0059543564,-0.0024809819,0.03394507,-0.005913613,0.022606764,0.0018392733,0.020709286,-0.046726856,-0.016960893,-0.0086376,0.015272953,-0.06630696,-0.000047700694,0.020604517,-0.01608782,0.015063415,0.0030761263,-0.020127237,-0.006670276,-0.023188813,-0.014947006,-0.017368328,-0.031221082,0.017822325,0.0501493,-0.026331875,0.036529366,0.0061347913,0.013224143,0.029800884,0.006524764,0.028986016,0.028706633,-0.056249168,-0.012164814,0.004609824,0.013375475,-0.016623305,-0.005899062,-0.013771268,0.005305372,0.0007632111,0.0035999701,-0.03946289,0.018881654,0.008300012,-0.02015052,0.0295215,0.016239153,-0.025097933,-0.0011386324,-0.02807802,-0.015051775,0.022304099,0.03129093,0.022129485,-0.0153311575,0.036738902,-0.004548709,-0.011419792,0.039136942,0.031127954,0.00600092,0.0025755647,-0.026564695,0.004604004,0.004548709,-0.0073338114,-0.02470214,0.011297561,0.019009704,-0.006588789,0.012281223,0.036552645,-0.012060045,0.0013547179,0.02123313,-0.023840707,0.008486267,0.009091598,0.010267336,0.003157613,0.011192793,0.016949253,0.03333974,-0.05485225,-0.007380375,0.0052850004,-0.015342799,-0.009685287,-0.012898196,0.02761238,0.07985706,-0.013817832,0.006105689,-0.054665998,0.011413971,-0.04870582,-0.015214748,0.03431758,-0.026657822,-0.023479838,-0.01789217,-0.004414838,-0.02049975,0.0066120713,0.024283065,0.015249671,0.047215775,0.008724907,0.01572695,0.004295518,-0.023666093,0.006588789,-0.023957117,0.017810684,0.030662315,-0.0072174016,0.0054567046,-0.02998714,-0.00021845008,-0.035621367,0.020534672,0.0069496594,-0.00600092,0.015994694,-0.010616565,0.032757692,-0.0028476724,0.023002557,-0.013340552,-0.0012659555,-0.03189626,-0.0027414486,-0.0004543616,-0.013445321,-0.00959798,-0.013887677,-0.024422755,0.07371062,0.030545905,0.00198042,-0.005773921,-0.0026003018,-0.018811809,-0.0072697857,0.012770144,0.003707649,-0.009341879,0.0010949788,-0.01139651,0.0022045088,0.005375218,-0.032757692,-0.02938181,0.008899522,-0.0072697857,0.005855408,-0.020232007,0.019894417,0.016134385,-0.00058168476,-0.020907182,0.0045865425,-0.010465233,-0.0155756185,-0.005977638,0.016111102,-0.00017816141,-0.016413769,-0.009865723,-0.023084044,-0.0018669206,0.011885431,0.02254856,0.032431744,0.025423879,0.030802008,0.039532736,0.013165938,-0.0154126445,0.035248857,0.014201984,0.016029617,0.020930465,-0.012560607,-0.011105485,0.0077063222,-0.018439297,-0.0039288276,0.0017243187,0.020115597,0.0036610852,-0.0111520495,-0.045818858,0.032920662,0.008544472,0.027076896,-0.028427249,0.038927406,-0.020441543,0.0012426736,0.0021273873,0.022129485,0.005695345,-0.047192495,0.046377625,-0.0070718895,0.0032332796,-0.039998375,-0.0033758814,-0.020674363,0.0016122744,0.004449761,-0.02484183,-0.0025886607,0.0006548046,-0.009370981,-0.009824979,0.06276811,-0.009097418,0.007281427,0.02998714,0.023933835,0.028357403,-0.006466559,0.045818858,0.0027661857,0.0061638937,-0.022571841,0.018381093,0.011466356,0.013724704,0.016006334,0.013107733,-0.0132823475,-0.006646994,0.015214748,-0.024283065,-0.01200184,0.018264683,-0.011285921,-0.012060045,-0.010063618,-0.027053615,0.04414256,0.010226592,0.009266213,0.023200454,0.01367814,0.028520377,-0.012374352,0.011530381,-0.040277757,-0.00671684,0.006705199,-0.02232738,0.010261515,-0.0242365,0.0066411737,-0.022129485,0.0070835305,-0.018567348,-0.010051978,-0.014504649,-0.025237624,-0.05876362,-0.009446647,-0.026308592,0.003419535,0.015179825,0.009632903,-0.049357712,-0.0062104575,-0.025260905,0.012036763,0.04379333,-0.006286124,0.012828349,-0.03212908,0.0011349946,-0.017601147,0.0017679724,0.031872977,0.039393045,-0.0067343013,-0.016157666,0.018893294,0.028124584,0.0049852454,-0.0015336978,-0.0007184661,0.00016288264,-0.032315332,0.000031376054,0.007846014,-0.027915047,-0.011542022,0.034410708,-0.0077878092,-0.02015052,0.00072574173,0.034946192,-0.05783234,0.036063727,-0.008771471,-0.010936691,0.00043289858,-0.025703263,0.010884307,-0.01859063,-0.035807624,-0.009219648,0.011029819,0.015983053,0.012397633,0.0122463005,-0.027519254,-0.013771268,0.005817575,0.03902053,0.008358217,0.021943228,-0.0010600558,0.00396084,-0.0025013534,0.004883387,-0.003084857,0.010273157,-0.028171148,-0.05457287,-0.008608498,-0.021640563,-0.0043886458,-0.017822325,-0.0020968297,-0.055364456,-0.031058108,-0.010581642,0.004688401,0.014388239,0.0055760248,0.00068136054,-0.0033496893,-0.01749638,0.012211378,0.013899319,0.035225578,-0.010628206,0.0030150113,0.015447567,0.019289088,-0.009918107,-0.010599104,-0.0050667324,0.0053228335,-0.009632903,-0.0063035856,0.0068448903,-0.003381702,-0.001523512,-0.03466681,0.0046592983,0.016483614,0.022734815,0.004368274,-0.026168901,0.020651082,-0.022455432,-0.004860105,-0.013247424,-0.047355466,-0.018101709,0.018823449,-0.017810684,0.05005617,-0.010430309,-0.0048688357,-0.0239804,-0.0035825085,-0.0064374567,-0.03645952,-0.022955993,-0.0029859089,0.008981009,-0.0083407555,-0.013969164,-0.0031168698,-0.007031146,-0.022362303,-0.009906466,0.016565101,0.00923711,-0.009691108,-0.027170025,-0.012223019,-0.018881654,-0.030848572,-0.038019408,-0.008422242,-0.034247734,0.012164814,0.01594813,0.009435006,0.012653735,-0.013259065,0.0038473406,-0.010826102,-0.0050987448,0.02458573,0.018683758,-0.016250795,-0.0099239275,-0.014213624,-0.01704238,0.014818955,0.03203595,0.031849694,0.037972845,-0.04081324,0.006885634,0.007607374,0.0058263056,0.0138294725,-0.016704792,-0.030173395,0.023421632,0.0109890755,-0.013713063,-0.0038065973,0.038950685,0.03757705,0.0057681007,-0.006105689,-0.006815788,0.032338616,0.00899265,-0.026238747,0.0434441,0.022117844,0.007968244,-0.015459209,-0.043234564,-0.011920353,-0.021186566,0.020848978,0.000037583053,0.031710003,0.004929951,0.022909429,0.010377925,-0.019952623,-0.037833154,-0.022827942,-0.02015052,0.008724907,0.00016006334,-0.026168901,0.0048164516,0.002700705,0.027984893,-0.0048659258,0.0060183816,-0.00899265,0.024143372,-0.017251918,-0.02123313,-0.027495971,-0.010721333,0.0242365,0.023212094,0.007892578,-0.018870013,-0.0066760965,0.017310122,-0.017705915,-0.0139109595,0.025051368,-0.014411521,0.0109890755,-0.004604004,0.0036028803,-0.009627082,0.011856329,0.0058495877,-0.029195553,0.014190343,0.00090726814,-0.009196366,-0.0049241306,0.020185443,-0.038554892,0.0033991633,-0.0140739335,-0.008812214,0.012746862,0.0130378865,0.028264277,0.0011146229,0.022513637,0.029568065,0.013352193,0.025586853,-0.012874913,0.026331875,-0.019743085,-0.02519106,0.0008570664,0.012269583,0.01500521,-0.019999187,-0.0018814718,-0.028776478,0.023305222,0.016774638,-0.01883509,-0.0069962232,0.039881963,-0.012467479,0.018078428,-0.012909836,0.052151546,-0.02472542,-0.0077470657,-0.018846732,-0.0124907615,-0.04030104,-0.0014114677,0.042280003,0.0021914127,0.019452062,0.012455838,0.0031692542,0.019871136,0.010843564,0.045423064,0.011955276,0.0130378865,-0.01056418,-0.005695345,0.022047998,-0.0189515,-0.01775248,0.029311962,-0.0132823475,0.012828349,-0.00008248719,0.008300012,0.015377722,-0.005823395,-0.003489381,-0.034736656,-0.022408867,0.0124907615,-0.0016879407,-0.01749638,-0.0063268673,0.027565818,-0.0078052706,-0.038019408,-0.012129891,-0.006507302,-0.008189423,-0.008381499,0.017903812,0.0047815284,0.0022146946,0.023805784,-0.07291904,0.0017781582,0.010494335,0.0172752,-0.03047606,0.011419792,-0.005785562,0.0051627704,0.011920353,0.068821415,0.0016530178,0.0022015986,-0.039905246,0.007159197,0.014481367,0.0028593133,0.04367692,0.0033787917,-0.0062453807,0.013352193,0.04644747,-0.0019847855,-0.022467073,-0.006373431,0.012176455,0.006070766,-0.021093437,-0.02292107,-0.008905342,-0.017449815,-0.020732569,0.012048405,0.011553663,0.0047087725,0.01127428,0.0026206735,-0.0032740228,-0.014923724,-0.016041256,0.0009894825]},{"id":"interface-GatewayMessageAckDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageAckDispatchData\nDescription: MESSAGE_ACK — read receipt; message_id, channel_id\nProperties: channel_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageAckDispatchData"},"embedding":[0.045629207,-0.003333479,-0.011875349,0.023968395,0.013867273,0.035528082,-0.025231035,0.02294522,-0.017143607,-0.028387636,0.021649925,-0.02170435,-0.0027919589,0.0172198,0.034243673,0.010324261,0.024643254,0.037400275,0.029933281,0.06387218,-0.021965586,0.043125693,0.030782297,0.04641291,-0.0068139033,-0.020289322,-0.015880967,0.0019048451,-0.0022300296,-0.056644652,0.050766844,-0.025840586,0.02682022,0.014455054,0.013214183,0.041471202,-0.0281264,-0.018340938,-0.032393254,-0.05620926,-0.05686235,0.0071186787,0.033547044,-0.0024667745,-0.02936727,-0.00005765558,-0.004903616,0.0037226116,0.018112356,0.007777211,-0.014912216,0.007913271,0.020485248,0.06143398,0.012299857,0.01503195,0.023184687,0.0050995424,0.024120782,-0.008522822,-0.036616568,0.018123241,-0.031478927,-0.010471206,0.011309338,-0.018623943,-0.05107162,0.039163616,0.030499293,0.028953647,0.01696945,0.035484545,-0.03513623,-0.0032572853,-0.030999994,0.015750349,-0.047588475,-0.026689602,0.02557935,-0.030891147,-0.0063404134,0.032327943,-0.10014043,-0.08207162,0.026994377,-0.034744374,0.0044301255,-0.0187981,-0.029018955,0.018155895,-0.003983848,0.041340582,-0.03213202,0.010046697,-0.019843044,-0.06983706,0.0022259476,-0.015587076,-0.02242275,-0.009584093,0.057297744,-0.053379204,-0.049460664,-0.019211724,0.019570924,-0.029127805,0.00829424,0.0014531247,-0.045150273,-0.005553984,-0.046064597,-0.0012878114,0.032088477,0.014792483,-0.012615518,0.007771768,0.010906599,-0.04275561,0.04088342,0.022749294,-0.03254564,0.015423804,0.00044831893,0.021356035,-0.028474715,-0.0402521,0.001706197,-0.020670291,-0.07719521,0.024708563,0.026471905,0.014759828,0.021181878,-0.000554446,-0.00926299,-0.00054254074,-0.009932407,0.0001309581,-0.015369379,-0.015739463,-0.0068574427,-0.009056178,0.049068812,0.04292977,0.014215588,0.023424152,-0.026428366,0.006563552,0.05930055,0.0048355856,-0.033481736,0.041971903,-0.013464534,-0.016871486,-0.021105684,0.013562498,0.017393958,-0.026471905,-0.0042178715,-0.038053364,0.016534057,-0.080068804,-0.034243673,0.026254209,-0.05742836,0.015848313,0.016305475,-0.025709968,-0.023750698,0.03824929,-0.016011585,-0.004212429,-0.02751685,-0.007020715,-0.005638342,0.0013442765,0.002098051,-0.013344801,-0.041841283,-0.015630616,0.03383005,0.017067412,0.01210393,-0.08446628,-0.014553017,-0.008517379,-0.009622189,-0.0015184337,0.0073581445,-0.024599714,-0.04536797,0.04545505,0.0051675728,0.007935041,-0.03957724,-0.0676601,0.012996486,-0.014629211,0.008615343,-0.0441271,0.0010884829,-0.031566005,0.0281264,0.008212604,-0.0060846196,-0.00035783876,-0.0093718385,-0.0036409756,0.0005204309,-0.0108739445,0.05633988,-0.014923101,0.044323027,-0.015314955,-0.037770357,0.028888337,-0.02492626,0.00311034,-0.010536515,-0.020790024,-0.055599708,0.024991568,0.057254203,0.0067431517,-0.014901332,0.02039817,-0.010585497,-0.010144661,-0.03561516,-0.025688197,-0.01145084,-0.007597611,-0.003594715,-0.055294935,-0.027124995,-0.0035620604,0.0068574427,0.009888868,0.01654494,0.006155371,0.00083881215,-0.027320921,0.01751369,0.02010428,-0.01181004,-0.002859989,0.0052274396,0.025601119,0.017067412,0.0058451532,0.032806877,0.041710667,-0.0058124987,-0.024360249,-0.0052927486,-0.00590502,0.02747331,0.0015783003,0.015717695,-0.029759124,0.027146764,-0.018917834,-0.033525273,0.038510527,-0.031566005,-0.009665729,0.038053364,-0.024011934,-0.03143539,0.018036162,-0.015870081,-0.031478927,0.069183975,0.036877804,-0.005997541,-0.0050233486,-0.009584093,-0.010291606,-0.00227629,0.056470495,-0.0044954345,-0.0055839177,0.017350418,0.020507019,-0.018384477,0.063959256,0.0375962,-0.009252105,0.037269656,-0.004672313,-0.003885884,-0.017295994,0.044301257,-0.057733137,-0.0010830405,0.055469092,0.009246662,-0.01656671,0.050026678,0.015369379,0.06552667,-0.00477844,-0.02235744,-0.03703019,0.0051648514,0.0061336015,0.021737004,-0.007124121,0.035571624,-0.034091286,0.0049417126,-0.025035108,-0.052856732,0.015064604,-0.061172742,-0.0044546165,0.0007000306,0.0041416776,0.022749294,-0.018417131,0.011995082,0.026471905,0.013649576,-0.03378651,-0.0027674679,0.0035865514,-0.016403439,-0.041275274,0.032806877,0.048589878,0.016751753,-0.04212429,0.048372183,0.004030108,0.037574433,0.03639887,-0.039707858,0.047675554,-0.024033703,0.039838474,0.06195645,-0.010781423,-0.024991568,0.027799854,-0.018689252,-0.04279915,-0.037291426,-0.011646767,0.010155546,0.01181004,0.010982793,0.014933986,-0.007728229,-0.0676601,-0.011581458,-0.017731387,0.042363755,-0.006106389,-0.03905477,0.024643254,-0.04153651,0.018134126,0.008152737,0.027908703,0.002925298,-0.024099013,-0.048067406,-0.017285109,0.0020939691,-0.0499396,0.03450491,0.002172884,-0.07449577,0.014455054,-0.0056764386,0.018428016,-0.019277032,-0.019026682,0.021290727,-0.002348402,0.042516142,0.04780617,0.024577945,0.028191708,0.028583562,-0.016882371,-0.06879212,0.03766151,-0.03324227,0.032741565,-0.00543153,0.0004027387,-0.016044239,-0.0035103576,-0.014563902,0.000032059223,-0.017720502,-0.019026682,0.040622182,-0.024534406,0.025644658,0.039707858,0.017143607,0.0242514,-0.014977525,-0.011940658,-0.038858842,0.0052192756,0.035528082,-0.0021034933,0.037443813,-0.025709968,0.0058233836,0.025100417,-0.008931003,-0.05342274,0.007445223,0.017034758,-0.002386499,-0.0037090057,-0.00029695177,0.0012156994,-0.03433075,0.022488058,0.023097608,-0.008043889,0.01501018,0.010634478,0.017862005,-0.060389034,-0.07123032,0.0020028087,0.043278083,-0.008882021,0.027886933,-0.001850421,0.040034402,-0.03308988,-0.050679766,-0.035528082,-0.016120432,-0.023119377,-0.013704,0.010090237,-0.039925553,0.0063458555,-0.0027103226,-0.017829351,0.02292345,-0.018689252,-0.061695214,-0.044192407,-0.044932578,0.03389536,-0.06713763,0.019026682,0.0034967514,0.09630897,-0.003083128,-0.0057308627,-0.0187981,-0.042450834,0.03213202,0.060476113,-0.038575836,-0.012506669,-0.025448732,0.02014782,-0.014411515,0.030194517,-0.013704,0.0023225504,0.022727525,0.040513337,-0.023728928,-0.011733846,0.0075431867,-0.004802931,0.013072681,0.0032654488,-0.024077242,0.057863753,-0.010737884,-0.005328124,0.02233567,0.06143398,-0.0054805116,-0.0064655887,0.00061533303,0.0140632,-0.013040026,-0.01875456,0.007940483,-0.008773172,-0.00480021,-0.0038423447,0.020387286,-0.044976115,0.029171344,0.0075921686,-0.023903085,-0.017339533,0.01208216,-0.014846907,0.021018606,0.008212604,-0.056688193,-0.015347609,-0.01719803,-0.026341287,0.026537213,0.00053879904,-0.02991151,-0.031609546,-0.028257018,0.036768954,-0.023772467,-0.006710497,-0.011646767,0.012506669,0.005866923,0.015456458,0.026667831,0.000820444,-0.018515095,0.012234548,-0.0065581095,-0.051507015,0.0055267722,0.012550209,0.05041853,-0.047283698,-0.0052328818,0.030695219,0.03652949,0.010966466,-0.021323381,-0.011940658,0.009295644,0.0015211549,0.015521767,-0.013660461,-0.0012265842,-0.02237921,0.014607442,-0.006307759,0.008822154,0.048241563,-0.0075486293,0.023685388,0.00047791205,-0.009431705,0.020528788,-0.014444169,0.0031538794,-0.0023987442,-0.060345493,-0.041122887,0.039337773,-0.028039321,0.01338834,-0.031740163,-0.031522468,-0.02736446,-0.0281264,0.07088201,0.0037988054,0.021911161,0.014313551,-0.017764041,0.007086024,0.05311797,-0.016827947,0.001376931,0.011222259,0.012800559,-0.009001754,0.003251843,0.029780893,-0.018678367,-0.010590939,-0.053683978,0.025035108,0.034200136,-0.024621485,0.014977525,0.015423804,-0.017535461,-0.020583212,0.020017201,-0.042581454,-0.019320572,-0.0013136629,0.027059685,-0.02039817,-0.005692766,-0.00046192494,-0.021377806,0.0046804766,0.027712775,0.018384477,0.06835673,-0.023750698,-0.013257722,0.0448455,0.046369374,0.00892556,-0.01273525,0.01246313,0.030172747,0.0007027518,0.041384123,-0.009725595,-0.007728229,-0.044540722,0.01875456,-0.021486653,0.004919943,0.018852524,0.008049332,0.005358057,0.037073728,0.0010156906,0.0011408662,-0.023641849,0.052595496,-0.033459965,-0.01692591,0.0074125687,-0.00865344,0.025383422,-0.030586371,0.00086126215,-0.025797047,-0.030782297,-0.016240167,0.02481741,0.006100947,0.0011551526,0.014781598,-0.0002673586,0.009094275,0.020735601,-0.0016817062,0.07506178,-0.040600415,0.030999994,-0.01886341,-0.0110698715,0.024730332,-0.017753158,-0.041231733,0.033525273,-0.012299857,0.021878507,-0.015140798,-0.030738758,0.059648864,0.01343188,-0.0038668357,0.0021143781,0.008223489,0.010607267,0.009883425,-0.019603578,0.0012068555,-0.015380264,-0.0016708213,-0.0046614283,0.025165725,-0.0034613758,0.004049157,0.039381314,-0.00033368805,-0.0043484895,0.00037858798,-0.011140623,0.0038695568,0.00045784315,-0.0023851383,0.021682581,0.03141362,-0.01854775,-0.013420994,0.025818815,-0.009067063,0.082681164,-0.03195786,0.039947324,-0.0117556155,0.031979628,-0.0015878245,0.016849715,0.01372577,0.048285104,0.0249698,0.054032292,0.02041994,0.0043620956,-0.004266853,0.0003813092,-0.013573382,0.008359549,-0.00987254,0.032262634,-0.022988759,0.006906424,0.00061227166,0.022792833,-0.00028181504,-0.028409405,-0.0061989105,-0.0195165,0.02616713,0.0058342684,-0.0012313463,-0.026667831,0.047632013,0.028365865,-0.0058124987,0.017034758,0.013595152,-0.00432672,0.033285808,0.024556175,-0.0007598972,0.020278437,0.019886583,-0.009899752,0.012397821,-0.000921809,0.009790904,-0.0035919938,0.012234548,0.0040083383,0.020724716,0.0027525013,0.022030896,-0.0052247182,0.014052315,0.018711021,-0.02016959,0.0025266411,-0.01970154,-0.0009986832,-0.012865868,-0.030999994,-0.011075314,0.023032298,0.02014782,-0.00075037294,0.004149841,-0.020898873,-0.012952947,0.0037770357,0.018449785,0.013780194,-0.011167835,-0.021715235,0.013257722,-0.011461725,0.016806176,-0.015608845,0.054162912,-0.028191708,-0.0057471897,-0.04589044,-0.025296343,0.031370077,-0.01629459,-0.00797858,0.016305475,0.027560389,0.0195165,0.043626398,-0.025013339,0.03258918,-0.012571978,-0.028975416,0.010329703,-0.010781423,-0.05063623,-0.019777736,-0.027386231,0.0140632,0.012865868,-0.018972257,-0.009273875,-0.014455054,-0.013954352,-0.01795997,0.023119377,-0.013333916,-0.023402384,-0.0046614283,0.009682056,0.0014055036,-0.06961937,0.05124578,0.015554422,-0.010656248,0.0020653964,-0.009154142,0.0057417476,0.054598305,0.015783003,-0.080068804,0.011875349,-0.004174332,0.018591288,-0.050026678,0.02551404,-0.031043533,0.024403788,0.0052927486,0.017132722,0.015086373,0.028627101,-0.0013449567,-0.01825386,0.06639746,-0.016871486,-0.007107794,0.0026123591,0.017502805,0.050941,-0.013225067,0.026145361,-0.023445923,0.013997891,0.02686376,0.016327245,0.0096330745,0.0010585496,0.03121769,-0.013899927,-0.032393254,0.008326895,-0.0042341985,-0.013932582,0.0012469933,-0.006775806,0.009203123,-0.020517904,0.030129207,-0.030934686,-0.007864289,0.00037110466,-0.024099013,-0.003983848,-0.0035348483,0.017535461,0.018678367,-0.003385182,-0.008920118,-0.014313551,-0.027799854,0.029650275,0.018689252,0.025818815,0.0016558546,0.04841572,-0.04081811,-0.007042485,-0.0052981908,0.026646063,0.027734546,0.017949084,0.023881316,0.017110951,0.010427667,-0.006324086,0.05734128,-0.005104985,-0.00018317127,0.020583212,0.051550552,-0.01726334,0.020387286,0.027212074,0.008849367,-0.017992623,0.018493325,0.0047838828,0.009458917,0.0020653964,-0.0010939253,0.012865868,-0.008816712,-0.012212778,0.034221902,0.004949876,0.019320572,-0.011733846,-0.00041158262,-0.012256318,-0.06713763,0.023946624,0.0007469714,0.007232969,-0.027560389,-0.010830405,-0.008033005,0.0027919589,-0.0035593393,0.021356035,0.030238057,-0.0058614807,0.022618676,-0.00015859537,0.007042485,0.004699525,-0.017840236,0.015206107,0.025601119,-0.004209708,-0.03940308,-0.014182933,-0.015402034,0.038793534,0.012191009,0.0103841275,0.022814604,-0.010721557,-0.05050561,-0.0062696617,-0.015391149,-0.016827947,-0.0018354544,-0.02100772,0.014912216,-0.029018955,-0.015358495,0.0104657635,0.0032572853,-0.032349713,-0.04719662,-0.008490167,-0.0005197506,-0.019625347,-0.0006813223,-0.018221205,-0.014879562,-0.016218396,-0.011064429,0.0112004895,-0.013312146,0.011309338,-0.036551256,0.0023837776,0.011189605,-0.021834968,0.06691993,-0.034809686,0.04719662,0.01886341,0.0499396,-0.012604632,0.042951535,-0.004541695,0.039120078,-0.030238057,-0.060084257,-0.034831453,0.011897119,-0.0010483451,0.029454349,-0.0027797134,0.027756315,0.019995432,-0.012005967,-0.037356734,0.024512636,0.04279915,-0.012005967,0.03700842,0.0075921686,-0.015314955,0.024643254,0.01625105,0.01814501,0.027865164,0.005066888,0.028583562,0.0021892113,-0.023228226,-0.006666958,-0.041384123,0.046674147,0.04216783,0.01246313,-0.0034069517,-0.02290168,0.015554422,0.04284269,-0.026101822,-0.0031266673,-0.0022422748,0.0068302304,0.00606285,-0.015902735,0.023859546,0.031108843,-0.0037307753,0.008745961,-0.0064764735,-0.0023810565,0.019919237,0.016523171,-0.04260322,0.00421515,-0.019277032,0.022727525,-0.029802663,0.011439956,-0.019070221,-0.01631636,-0.0046559856,0.003175649,0.004302229,0.08098313,-0.017045643,0.023489462,0.008969099,-0.046108138,-0.03905477,-0.0104331095,0.024643254,-0.034113057,-0.03463553,0.0059540016,0.023424152,-0.016076893,0.013072681,0.016055124,0.037574433,0.032828644,-0.0036328118,0.013116219,-0.016882371,-0.008675209,0.031653084,-0.027930472,0.023772467,0.055686787,-0.03770505,-0.0008843924,-0.020898873,0.014520363,0.0011769222,-0.0038423447,-0.0064111645,-0.014531247,-0.015587076,-0.006302316,0.010607267,0.024577945,0.027799854,0.0040165023,0.0036953995,-0.015097259,0.012191009,-0.026602523,0.013812848,0.0103188185,-0.011570574,0.030738758,0.026363056,0.0093718385,0.007466993,0.0051185912,0.026929067,-0.008364991,0.011244029,0.01503195,-0.006351298,0.040774573,-0.039925553,-0.0026817499,-0.027255613,-0.027059685,-0.02357654,0.01810147,-0.024621485,-0.01978862,0.0000547643,-0.018482441,0.016185742,0.0219547,-0.006705055,-0.0031048977,0.023445923,0.0012449523,-0.006781249,-0.006166256,0.018896064,0.01501018,-0.0115596885,0.0050423974,-0.0019402208,-0.020833563,0.026232438,0.018700138,-0.0028790373,0.021922046,0.000007754378,0.0074833203,-0.005036955,-0.013627807,0.030259825,0.020289322,0.014128509,0.020877102,-0.01949473,-0.0109882355,0.039990865,0.0011136541,0.003121225,0.0106943445,-0.024665024,-0.0034804242,-0.015674155,-0.0067431517,0.02671137,0.014650981,-0.002925298,0.013072681,0.034874994,-0.018808985,-0.0010292967,-0.013573382,-0.0057798442,0.026558984,-0.02170435,0.027255613,0.003883163,0.006628861,-0.036638334,0.0013395143,0.007466993,0.02562289,0.00795681,-0.02991151,0.021018606,-0.012724366,-0.026907299,-0.034265444,0.045716286,-0.004903616,0.02046348,0.030847607,0.016817061,-0.004285902,0.010906599,0.030238057,-0.011614113,0.009246662,0.029476117,0.027212074,-0.00637851,-0.022531597,-0.0054505784,0.0096330745,0.022292132,0.013627807,0.030499293,-0.019331457,0.019734196,0.015434688,0.003728054,-0.04014325,-0.036834262,-0.02682022,0.018373592,-0.017339533,0.025231035,0.054467686,-0.0059540016,0.0016163972,-0.0055594267,-0.0010932451,-0.07231881,-0.00847384,0.0065962067,-0.039207157,-0.009404493,-0.0077227866,0.014150279,0.0020681175,-0.0052328818,-0.00468864,-0.014803368,0.017252455,-0.006732267,-0.05350982,-0.017568115,-0.011548804,0.021878507,0.000033419827,0.008392204,-0.032284405,0.027734546,-0.013878157,-0.0012850902,0.04262499,-0.017350418,0.0052573727,0.0073146056,-0.030216286,-0.006155371,-0.014563902,0.034287214,0.0059540016,0.02686376,0.01656671,-0.0036763512,0.012386936,0.007815308,-0.026537213,0.009056178,-0.0034042303,-0.00800035,-0.005537657,0.0074615506,-0.025209265,0.008615343,0.04589044,0.029084265,0.012212778,-0.011679422,0.018362707,-0.057776675,0.04345224,-0.015521767,-0.0054288087,0.027691007,-0.030586371,0.01947296,0.0060574077,-0.043125693,0.0053145178,-0.009159584,0.014509478,0.007124121,-0.0067431517,-0.0017987181,-0.0025388864,-0.017491922,-0.0013259083,0.003913096,0.0003214426,-0.0050206278,0.0017198031,0.011908003,0.003820575,0.0043593743,0.011146066,-0.035375696,-0.04593398,-0.0016354456,-0.014868677,-0.0044274046,-0.04467134,0.013246837,-0.030738758,-0.009491571,0.0015810215,0.001713,0.03067345,0.012256318,-0.009360953,-0.005485954,-0.011722961,0.041275274,0.044279486,0.006427492,-0.0060084257,-0.0044437316,0.013616921,0.026058283,0.0054805116,0.025709968,0.0028164496,-0.03126123,-0.0069227517,-0.0109229265,0.018428016,0.015554422,0.0022191447,-0.037204348,-0.0067377095,0.0029470676,0.0013912172,0.008212604,-0.0036654663,0.03189255,0.028235247,0.0002767128,-0.015543536,-0.015532652,-0.011886233,0.0281264,-0.012093046,0.039707858,0.0007789456,0.02362008,0.0006928874,-0.012800559,-0.037247885,-0.06334971,-0.03193609,-0.015042834,0.0103024915,-0.0058614807,0.012049506,-0.008522822,0.007581284,-0.025383422,-0.0054043178,0.026384827,0.04329985,0.0027783527,-0.015412918,-0.019385882,-0.006307759,-0.010128334,-0.008016677,-0.00032331346,-0.010324261,0.0036137635,0.008283355,-0.013225067,0.039794937,-0.005143082,-0.011603228,-0.024447327,0.0074778777,0.048372183,-0.005483233,-0.014955755,-0.018025277,-0.036072325,0.0156415,0.017764041,-0.008936445,-0.022662215,0.02999859,-0.054380607,0.026907299,-0.013148874,0.014531247,0.01976685,0.00502607,-0.054162912,0.006911867,0.0102371825,-0.022096204,-0.023206456,0.024556175,0.023097608,-0.023641849,-0.014052315,0.008169064,0.014313551,0.019440306,0.013660461,0.016936794,-0.012865868,0.008931003,0.041580047,-0.057907294,-0.03315519,0.009535111,0.008974542,0.004446453,-0.012158355,-0.034265444,0.030281596,0.023533002,0.024599714,-0.009094275,-0.015576191,-0.004109023,-0.030129207,-0.001225904,0.0124849,0.0029878856,-0.00049525977,0.027190303,-0.024577945,-0.021040376,-0.013323031,0.015075489,-0.008120083,0.019102875,-0.018319167,0.021802314,0.009235778,-0.004593398,-0.0037226116,-0.055730328,-0.005921347,0.015227877,-0.015053719,-0.001823209,0.012528439,0.03949016,0.01597893,-0.00028062452,0.0076030535,-0.013595152,0.027190303,-0.005790729,-0.021312496,0.011646767,0.0068574427,0.0017565393,-0.031761933,0.0029851645,-0.02292345,-0.012430475,0.0032001399,0.009627632,0.010150104,-0.02486095,0.0027062406,-0.0053961542,-0.013758425,0.017491922,0.043800555,-0.021181878,-0.009137814,0.0003700842,-0.014846907,-0.010623594,0.0006102308,0.0017973575,0.018275628,-0.005654669,-0.014455054,-0.01595716,0.0052655363,0.02747331,-0.034113057,-0.02747331,0.026188899,-0.00029048888,-0.004713131,-0.020289322,0.032349713,-0.028605333,-0.008386761,0.012626402,-0.014933986,0.0021565568,-0.032915723,0.007058812,0.00827247,0.022292132,-0.02806109,0.003896769,0.025165725,-0.005056003,0.009665729,0.015064604,0.06748594,0.010160988,-0.01654494,0.021791428,-0.011701192,-0.039316002,0.06574437,0.015924506,0.0040573203,0.0003860713,0.04589044,-0.006373068,0.012234548,-0.0039022113,-0.03639887,-0.023358844,-0.003594715,-0.016457861,-0.041580047,0.0035783877,0.020528788,0.00058403914,-0.06004072,-0.036703646,-0.02041994,-0.02873595,0.04343047,0.025775276,-0.014302666,0.013192413,0.002382417,-0.03890238,-0.00086738484,0.0016150366,0.0015225156,-0.019091992,0.02010428,0.028452944,-0.015489113,0.026341287,0.045193814,-0.029693814,0.0064002797,-0.03522331,-0.007042485,0.011548804,0.032458562,0.036115862,0.016174857,0.013268607,0.019081106,0.048589878,-0.01970154,0.039033,-0.012071276,0.00064084434,-0.001809603,-0.004277738,-0.031021765,-0.015227877,0.01341011,-0.015532652,0.027843393,0.0026613409,0.00014388384,-0.0076574776,0.030042129,-0.017252455,-0.036616568,0.020006316,0.02877949]},{"id":"interface-GatewayMessageCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageCreateDispatchData\nDescription: MESSAGE_CREATE — full message with author, content, embeds, attachments, member? (guild).","meta":{"url":"/docs/typedefs/GatewayMessageCreateDispatchData"},"embedding":[0.04534905,0.020037664,0.02599548,0.018035142,0.02088345,-0.013669393,-0.01817196,0.008849657,-0.00409833,-0.020796383,0.009048666,-0.00093052,0.0067662876,-0.00029656925,0.015311213,-0.0010657836,-0.025000438,0.019229192,0.025249198,0.036642432,0.03204036,0.02611986,0.011125816,0.01874411,-0.018159522,0.0066605643,-0.005071606,-0.0151743945,0.03412995,-0.03539863,0.024440726,-0.02283622,0.025522834,-0.014975387,0.024900934,0.041916154,-0.025647216,-0.0020476105,-0.027090026,-0.031493086,-0.019502828,-0.000525118,0.03014978,0.027164655,-0.044752028,-0.021940682,0.024826305,0.02706515,0.0039926074,0.022500394,-0.022363575,0.02113221,0.038881276,0.07507594,-0.022674525,-0.016617207,-0.03104532,0.012581066,-0.030945815,0.04649335,-0.024179528,-0.0033644866,-0.009098418,-0.005407433,0.00467048,-0.028557714,-0.033159785,0.04567244,0.013806212,0.05154319,-0.008482736,-0.030224409,-0.026642257,-0.011094721,-0.004297339,-0.019204317,-0.026418373,-0.022052625,0.0064864317,-0.030896062,0.0317916,0.048682444,-0.081046194,-0.05154319,-0.0116793085,-0.010242716,0.010945465,0.0123509625,-0.025137255,-0.01741324,-0.023644691,0.003905541,-0.035324,-0.0051990957,0.025796471,-0.07104602,-0.017425679,0.027040275,-0.018433157,0.024266593,0.071692795,-0.07010073,-0.024229279,-0.02492581,0.02491337,-0.036443423,-0.018097332,0.028209448,-0.03218962,0.00820288,-0.10517597,-0.015249023,0.0158958,-0.02258746,-0.0019403325,-0.012860921,0.039030533,-0.048607815,0.020323738,0.01287336,-0.04258781,0.0068222587,0.009092199,-0.04398087,0.0238437,-0.025336264,0.018831175,-0.01710229,-0.06955346,0.0020476105,0.049428724,0.0068222587,0.04465252,-0.02460242,-0.043358967,0.0030892952,-0.024067584,0.018967994,-0.046070457,-0.033657305,0.021356095,-0.038309127,0.018569976,0.064677745,-0.0447769,-0.0077426727,-0.048085418,0.051244676,0.0060604294,0.019614771,-0.08025016,0.036368795,-0.018980432,-0.011971602,0.0006782612,0.01103875,0.0062687662,-0.038707145,-0.011959164,-0.023109857,0.04119475,-0.058010966,-0.022438204,-0.017898323,-0.056518402,-0.026915893,0.019142127,-0.017587373,-0.050000876,0.022935724,-0.0068036015,-0.029154738,-0.04977699,0.009751414,0.021791426,0.0014482529,-0.038632516,-0.04181665,-0.017811257,-0.026318869,0.053831786,0.0039210883,-0.006449118,-0.088160746,-0.029204492,0.012643256,0.005786793,0.0141296005,0.018458035,-0.04263756,-0.047165003,-0.011138255,0.036891192,0.019104812,0.04636897,-0.027935812,0.05487658,0.0012640146,0.038732022,-0.013047492,0.03748822,-0.03437871,0.0059080636,-0.00031328286,-0.0017724191,0.0080909375,0.038060367,0.006971515,-0.014913196,0.024453163,0.032090113,-0.029378623,-0.0040019355,0.007978995,-0.02965226,0.0132465,-0.061145347,0.009247675,-0.008408107,0.00097560784,-0.021903368,0.042239543,0.04231417,-0.009061104,0.0048912545,0.01861973,-0.04246343,-0.00017180027,-0.07224007,0.018706795,0.003513743,0.01287336,-0.026990522,-0.08751397,-0.03539863,0.031393584,-0.007898148,0.031194575,0.05711543,0.020149605,-0.020174483,-0.018271463,0.011181788,0.01318431,-0.033134907,-0.0071767424,0.008233975,0.0060604294,-0.01981378,0.038732022,0.10666853,0.0132713765,0.00687823,0.013781335,0.00744416,-0.023856139,0.0150500145,-0.018880928,0.031119946,0.041144997,0.05666766,-0.023682006,-0.029876145,0.03109507,-0.0025140366,0.021977996,0.03987632,0.0185451,-0.038259376,0.042363927,-0.014017658,-0.024291469,0.054229803,0.0010642288,-0.019390887,-0.036120035,0.006386928,-0.019278944,0.06238915,-0.010516353,-0.025137255,-0.023010353,0.018943118,0.011262635,-0.028308952,0.045722194,0.0693047,0.0066356882,0.016604768,0.03982657,-0.010186746,-0.0059205014,0.01564704,-0.028507961,0.027363664,0.01634357,0.006542403,-0.008650648,0.0247268,0.043383844,0.026617382,-0.008302384,0.0044807997,-0.04378186,0.013196749,0.0079976525,0.044826653,-0.037513092,0.05691642,-0.017338611,0.010049927,-0.009564844,-0.03684144,0.01659233,-0.039478302,0.026194489,0.021691922,0.046020705,-0.01987597,0.033607554,-0.0048788167,0.019502828,0.0143161705,-0.071195275,-0.005248848,0.009950423,-0.019826217,-0.018831175,0.009571063,0.026070109,0.02473924,-0.024191966,0.00996908,-0.016778901,0.02706515,-0.0015881808,0.0023399042,0.017997827,0.026542753,0.0022030857,0.029279118,-0.026567629,-0.01962721,-0.020783946,-0.010373316,-0.024714362,-0.045871448,0.038134996,-0.0049969777,0.012705446,-0.026094984,0.0055753463,-0.0029944554,-0.03502549,0.038184747,-0.038383756,0.04517492,-0.0132091865,-0.017064976,0.02396808,-0.035324,-0.0010898822,-0.004315996,0.026194489,-0.008862095,0.0493541,-0.05243873,0.030522922,0.013967906,-0.039478302,-0.016604768,-0.003420458,-0.0729366,-0.010578543,-0.012798731,-0.017500306,-0.0033986913,-0.03216474,0.007730235,-0.018831175,0.010049927,0.03228912,0.008271289,-0.0019076826,0.01394303,0.004462143,-0.0029447032,0.036766812,-0.026020356,0.011181788,0.015211709,-0.017761504,-0.038881276,-0.010995218,-0.012282553,0.0030426527,0.03084631,0.0048725978,0.007842177,-0.01860729,0.020485433,0.00889319,0.019540142,-0.024527792,-0.028209448,0.02505019,0.0024658393,0.015870925,0.028433332,-0.026741762,0.036368795,0.016555015,0.011878317,0.01868192,0.004692246,-0.015249023,-0.008339698,-0.018060017,-0.021393409,-0.019788904,0.00548828,0.0018268354,-0.030622426,0.023669569,0.04736401,-0.027910937,0.033209536,0.012674351,-0.0010766669,-0.05194121,-0.082289994,0.008532488,0.053583026,0.006334066,0.04624459,-0.0018004046,-0.010286249,-0.03736384,-0.022848658,-0.008209099,-0.03059755,-0.0064864317,-0.013967906,0.009191703,-0.04164252,0.0033800344,0.03475185,-0.028358705,0.04171715,-0.028234325,-0.022948163,-0.023619816,-0.0089802565,0.013918154,-0.049229715,0.009322302,-0.00776133,0.091742896,-0.0011940508,-0.0011186452,-0.009229017,0.017425679,0.0011069846,0.086319916,-0.053433772,-0.0077426727,-0.01860729,-0.021119772,-0.0029618056,0.05273724,-0.03388119,-0.022065062,0.007133209,0.055921376,-0.0006067426,-0.010590982,-0.0035292907,0.029851269,0.041070372,0.00028568596,0.016567454,0.021032706,-0.019167002,0.0014661326,0.0066792215,0.09428026,-0.016517702,-0.018458035,0.0018999089,-0.010447944,0.00002326057,0.0014179352,0.008694182,-0.013433071,-0.005892516,-0.03199061,-0.013781335,-0.061344355,0.0027565781,-0.0025700077,-0.015535098,-0.0036629995,-0.019664522,-0.042811695,0.038756896,-0.0125064375,-0.058010966,-0.005015635,-0.03577177,-0.028209448,-0.017711753,-0.0010409075,0.011791251,-0.004642494,-0.0040579066,0.013097244,-0.020112293,0.06263791,-0.0020429462,-0.0035603857,-0.000050432318,0.026219364,0.005450966,-0.029104987,0.0091357315,0.0012375838,-0.0017459883,-0.09248918,-0.024179528,0.004574085,0.0079043675,-0.025199445,0.04813517,0.01722667,-0.01185966,-0.047712278,-0.014179353,-0.015062452,0.03512499,0.0025202555,-0.01015565,0.028731845,0.015982866,0.0013339786,0.010018832,0.015721668,-0.0026710667,0.029702011,0.00091808196,0.0070834574,0.00090642134,-0.022662088,0.01609481,0.010839742,0.010485258,0.020684442,-0.02731391,-0.023022791,-0.005671741,0.01917944,0.010180526,-0.02441585,-0.01747543,-0.0067414115,-0.028284077,0.012338525,-0.00750635,0.027164655,-0.0131469965,-0.02441585,-0.009166827,0.029801516,0.0028654109,0.030249285,-0.010230279,0.0074317222,-0.000058206086,0.033358794,-0.007929243,-0.005071606,-0.017002786,-0.07393164,0.0032401064,0.021704359,-0.04952823,0.020771507,0.011349701,-0.0053390237,-0.0033147347,0.028856225,-0.030398542,0.008781248,0.005643755,0.010118336,0.0017273312,-0.03482648,-0.017811257,-0.020137168,-0.02743829,0.02221432,0.0035945904,0.037935987,-0.042861447,-0.040149957,0.031368706,0.039901197,0.027612424,-0.00028782376,-0.013855964,-0.0025435768,0.01388084,0.025274074,-0.015982866,-0.016418198,-0.018520225,-0.0010136993,0.0070958952,0.018818738,0.003167033,-0.01917944,0.02542333,-0.004819736,-0.0042817914,0.03835888,-0.027711928,0.052140217,-0.046965994,-0.03539863,-0.0059764725,0.006921763,0.028408457,-0.02012473,-0.0011007655,-0.016928157,-0.01817196,-0.039478302,0.0406226,-0.0115549285,0.005413652,-0.0020724866,0.0043812958,-0.0066916593,0.0018159521,0.003022441,0.042363927,-0.0062003573,0.013980344,0.005665522,0.0042289295,0.016915718,-0.029677136,0.0031701424,0.08328504,-0.021057582,0.031343833,-0.018632166,-0.019851094,0.05318501,-0.031692095,0.010964122,-0.01621919,0.018246587,0.023607379,0.044130124,0.017512744,0.03758772,-0.04624459,0.0017257765,-0.0400007,0.038607642,0.028134821,0.028209448,0.05204071,0.010273811,0.009738976,0.010199184,-0.008787467,-0.015261461,0.04447839,0.0035790426,0.0133957565,0.00132465,-0.017587373,0.012761417,0.049055584,-0.0053172573,0.057762206,-0.013806212,0.03440359,-0.018308777,0.022301385,-0.0058023403,-0.004179178,-0.024067584,0.033557802,0.007437941,0.0377121,0.015721668,-0.0029136082,-0.03495086,-0.023992958,0.007388189,-0.017064976,-0.008607116,-0.00036692183,-0.026567629,-0.024589982,0.040100206,0.032388628,0.005155563,0.00047303378,-0.020472994,-0.026393497,0.0008201325,-0.031244328,0.011505176,-0.01236962,0.0016371555,0.012960426,-0.005090263,0.018159522,0.021629732,-0.025460644,0.010081022,-0.006480213,0.002795447,0.042413678,0.007276247,-0.010796209,0.00990689,-0.010547448,0.018259026,0.048931204,0.0012943323,-0.041493263,0.023196923,0.025311388,0.025945727,-0.0033022966,0.0044528143,0.007338437,0.014726626,0.028557714,-0.012326086,-0.010043708,-0.029005483,0.00990689,-0.020423243,-0.0133957565,0.040547974,-0.033010527,0.008681744,-0.040921114,0.0055100466,-0.03281152,0.0015703011,0.026343744,0.004692246,-0.014577369,0.03798574,0.043259464,0.03519962,-0.013022616,0.04378186,-0.03141846,-0.002151779,-0.02977664,-0.022699403,0.001968318,-0.0030426527,-0.008047405,0.0026415263,0.005861421,0.0068098204,0.028010441,-0.037637476,0.0020149606,-0.008364574,-0.0043502003,0.011691747,0.002075596,-0.012674351,-0.009608377,-0.029975649,0.011020093,0.018706795,-0.024067584,-0.030299038,-0.012848483,-0.015360965,-0.015323651,0.021144649,-0.011324825,-0.017127166,-0.016293818,-0.010454163,0.0016060604,-0.0847776,0.021269029,0.03758772,-0.021368533,0.010566105,-0.0014358149,-0.010416849,-0.005413652,-0.013408194,-0.053483523,0.016356008,-0.021418285,0.0370902,0.021057582,0.04895608,0.009359617,-0.023731759,0.013495261,-0.0025529054,0.005093373,0.03539863,0.0058458736,-0.025249198,0.015360965,0.011088503,-0.020448118,-0.009098418,-0.007027486,0.025224322,-0.002863856,0.0377121,0.0006405585,-0.032015484,-0.0079976525,0.0058769686,0.016517702,-0.006529965,0.017462991,0.0072264946,-0.04465252,0.0072824657,0.0050622774,-0.023271551,0.0076618255,-0.035373755,0.030199533,-0.0022372904,0.021293905,-0.00093518425,0.025435768,-0.013097244,-0.03495086,0.014614684,-0.006990172,0.027960688,0.012605942,-0.04567244,-0.011219102,-0.0038215842,-0.028930854,0.021045145,-0.011380796,0.02990102,-0.001968318,0.024129774,-0.041742023,0.009154389,-0.0049689924,-0.017736629,0.015137081,-0.027736804,0.048110295,0.038309127,0.0024751676,-0.012419372,0.022898411,-0.015000262,0.00467048,0.01891824,0.048284426,-0.0117104035,0.0019154564,0.017550059,0.01003127,0.008687963,0.016642082,0.0017226669,-0.028806474,-0.0063496134,0.036741935,0.005457185,-0.0040268116,0.012245239,0.0042040534,-0.01911725,-0.0041045495,-0.026741762,-0.010690485,0.012046231,-0.05388154,-0.011753937,-0.006592155,0.028358705,-0.03482648,-0.03671706,-0.009260112,-0.016157,0.0071269902,0.01268057,0.014278857,-0.002688169,0.0038402413,-0.024341222,0.025286512,-0.004639385,-0.043856487,0.0116109,0.017836133,-0.004113878,-0.029503003,-0.009372055,0.0064242417,-0.009297426,0.00043222148,0.0011139809,-0.00055465836,-0.0037749417,-0.016057495,0.0010844406,0.005696617,-0.03798574,0.015497783,-0.01628138,0.029279118,-0.025970604,-0.0026166502,-0.002195312,0.0142539805,-0.042936075,-0.022562584,-0.012438028,0.0050747157,0.0071518663,0.0007027486,0.03206524,-0.011076065,-0.00013322294,0.0057681357,-0.007332218,-0.025522834,0.0038029272,-0.040771857,-0.021094896,-0.015634602,-0.009048666,0.03166722,-0.032015484,0.033433422,-0.015622164,0.025721842,0.0009911554,0.042363927,-0.0016620315,-0.0018999089,-0.048582938,-0.051692445,-0.038458385,0.003678547,-0.042786818,-0.0032432158,-0.03721458,0.03982657,0.020522747,-0.03487623,-0.05218997,0.064827,0.02726416,-0.01772419,0.01268057,-0.013706707,-0.021393409,-0.0031779162,-0.00056437554,0.013383319,0.02574672,-0.01482613,0.03736384,-0.02536114,-0.0115860235,-0.02523676,-0.0132091865,0.029378623,-0.00014993655,-0.0009833816,-0.014440551,-0.01570923,0.005817888,0.032139864,-0.019764027,-0.02574672,0.0060977433,0.03773698,-0.0003333003,-0.02125659,0.043159958,0.0068036015,0.020958077,0.033632427,-0.010901932,0.010609638,-0.021343658,-0.0034235674,-0.018134646,-0.011934289,-0.00694042,0.040746983,-0.04365748,0.009409369,0.023433246,-0.010062365,-0.017313736,-0.013234062,0.017612249,0.059652783,-0.049130213,0.010802427,-0.032886147,0.0046766987,-0.02599548,-0.01381865,0.007388189,-0.027786555,-0.0012912229,-0.010280031,0.047339138,-0.017363489,-0.00026333638,0.026070109,0.010559886,0.023109857,0.006554841,0.01893068,-0.014788816,-0.03942855,-0.012276334,-0.0036039187,0.04181665,0.024577545,-0.022873534,-0.004409281,-0.008588458,0.016778901,-0.02257502,-0.012985302,0.0188063,0.007388189,-0.011138255,0.0011303058,0.010528791,0.007406846,0.03092094,0.015721668,0.0020787055,-0.01072158,0.008451641,-0.006346504,-0.00023962639,0.020970516,-0.013918154,0.029055234,0.04430426,0.033458296,0.0060604294,0.008159347,0.016903281,-0.017077412,-0.0019652084,0.018370967,0.002661738,0.051095422,-0.036194663,-0.023992958,-0.025696967,-0.036020532,0.005646865,-0.0098384805,0.0049130213,-0.010391973,-0.0026819499,-0.014266418,-0.013594765,0.050772034,0.013520137,-0.05223972,0.011990259,0.0017739738,-0.021555103,-0.014229105,0.027935812,-0.0019341134,-0.005124468,0.0079976525,-0.0041387537,0.0033427202,0.008557363,0.0016153889,0.008321041,0.02113221,-0.019565018,-0.0015469798,-0.014142038,-0.019453077,0.028159697,0.0018781424,0.018880928,0.005886297,-0.014627121,0.012761417,0.021778988,-0.0059142825,0.0017817476,0.023271551,0.023383494,-0.013321129,0.007039924,-0.012400715,0.04044847,0.010827304,0.038134996,0.018246587,0.043433595,-0.044577893,-0.0042040534,-0.04231417,-0.0068036015,0.04490128,-0.040796734,0.05273724,0.019851094,0.0039708405,-0.04726451,0.013495261,-0.043607727,0.020448118,-0.007978995,-0.020385928,0.020385928,-0.004636275,-0.0058831875,-0.012494,0.062239893,-0.0066045932,-0.008775029,0.01879386,0.02359494,-0.01103875,0.008389451,0.033906065,-0.019328697,0.0099317655,-0.0096519105,-0.005733931,0.008513831,-0.017388364,0.013893277,-0.026915893,-0.019403324,-0.00087143935,0.023868578,-0.045970954,0.0014902313,-0.032338873,0.0077177966,0.007307342,-0.02441585,-0.021269029,0.008414326,-0.014651998,0.020174483,0.025274074,-0.0105723245,0.038458385,0.014452989,-0.004549209,-0.005531813,-0.0043439814,-0.0040734545,-0.06537428,0.011834784,-0.022288946,0.009098418,0.004832174,-0.017985389,0.021405848,-0.03092094,-0.0076182922,0.016007742,-0.04378186,-0.034055322,-0.036269292,-0.008439203,0.008961599,0.022997914,-0.015137081,0.004801079,-0.03129408,0.0045212233,0.035597637,-0.019005308,0.028184572,-0.016418198,0.021020269,0.0053918855,-0.0019823108,0.012089764,0.043707233,0.0041076588,0.005659303,-0.003476429,0.065523535,0.0021486694,-0.014938072,0.0004225043,0.019204317,-0.017736629,0.008967819,0.017761504,-0.056369144,0.0032152303,0.03723946,-0.0089180665,-0.029801516,-0.0018159521,0.046393845,-0.05955328,0.04296095,0.013905716,-0.022363575,0.01848291,-0.011044969,0.023706883,0.016977908,-0.0019652084,0.017935637,0.015186833,0.014726626,0.02012473,-0.015224147,-0.016244065,0.007046143,0.011113378,0.04258781,0.01716448,0.0014482529,-0.04226442,0.029204492,-0.0010751121,0.020659566,0.0019465515,0.0075187883,-0.02756267,-0.04723963,-0.0019092374,-0.0140052205,0.0037935986,-0.0317916,0.015485345,-0.04726451,-0.018147083,-0.046219714,0.024652172,0.04763765,0.0043502003,0.01608237,-0.02574672,-0.024565106,0.015846048,0.0041076588,0.008178004,0.00492235,-0.03121945,0.024515355,0.01981378,-0.02491337,-0.0067662876,0.009695443,-0.009614596,0.0006071313,-0.007730235,-0.005068497,-0.004869488,0.009477777,-0.029279118,-0.010248936,-0.0047357795,-0.014751501,0.012120859,-0.02131878,-0.026517877,-0.023371056,-0.022923287,-0.013545013,-0.0151122045,-0.024900934,-0.0036194662,-0.004925459,0.025460644,-0.014490304,0.025846222,0.0122887725,0.0017195574,0.005279943,-0.05482683,-0.01646795,0.028905978,-0.0015734106,0.0062376712,-0.0060231155,-0.029602507,-0.033657305,-0.016865967,-0.005040511,0.01236962,0.007394408,-0.0053638997,-0.038732022,-0.01866948,0.03564739,-0.026169611,-0.025547711,0.015547535,-0.02694077,0.032463253,0.021567542,-0.0033427202,0.009266331,0.0072949035,-0.0076120733,-0.03577177,0.0133335665,0.010186746,0.008731496,-0.027214406,-0.025199445,-0.026741762,-0.017077412,0.010945465,0.0123820575,-0.0060542105,0.0012484671,-0.03248813,-0.017450554,0.030323913,0.009328522,0.020622252,-0.002510927,-0.025187008,0.019888408,0.016132124,-0.004378186,-0.0012002698,0.010765114,0.035373755,-0.026891017,0.011604681,0.004496347,0.029080112,0.036020532,0.022910848,0.023296427,-0.0125375325,0.010578543,0.008998914,-0.038806647,-0.03490111,0.024515355,-0.007469036,-0.0025280293,0.024390973,-0.012033792,0.0018283902,0.029702011,0.0114927385,0.001394614,-0.006847135,-0.006585936,-0.034478214,0.002315028,-0.0001079582,-0.012923111,-0.013234062,0.027935812,-0.010877056,-0.0005025741,-0.012655694,0.005183548,-0.020137168,-0.009204141,-0.010342221,0.009303645,0.0075996355,0.040921114,-0.019925721,0.01665452,-0.01072158,0.0013223179,-0.015783858,-0.01829634,0.011536271,0.0036723278,0.026144736,0.011977822,0.044204753,-0.006971515,0.010105899,-0.00870662,-0.023495436,0.007960338,0.017972952,0.021530228,-0.018470472,0.012114639,-0.011716623,-0.021679483,0.018271463,0.0014233768,0.001504224,-0.0028933964,0.03975194,-0.009571063,-0.047538146,0.027786555,0.04430426,-0.003104843,-0.0021175744,0.0106345145,0.022226756,-0.02334618,-0.017910762,-0.010018832,0.013047492,-0.015671916,-0.011660651,-0.04094599,0.042811695,-0.005295491,-0.015622164,-0.0013153215,0.0008271289,-0.017052537,0.01293555,-0.0010409075,0.033458296,-0.020522747,0.0013697379,0.023097418,0.009266331,0.0006028557,-0.021032706,0.019303821,0.0043564197,0.00048586048,0.0013549677,0.004120097,0.028856225,0.0063433945,0.006909325,0.018818738,0.0123634,-0.0027363664,-0.0010214731,0.017923199,0.019366011,-0.0019963037,0.0114927385,-0.017301297,0.015485345,-0.006648126,0.01546047,-0.0115238335,-0.013706707,-0.009079761,-0.0037376275,-0.0067849443,0.00832726,-0.0049658827,-0.019913284,0.016157,0.012699227,-0.0002009519,-0.006449118,0.0035541665,-0.0054789516,0.0028141038,0.029353747,-0.000959283,-0.018458035,-0.0040547973,0.030075153,-0.048508313,-0.005621989,0.024241718,-0.0133335665,-0.03552301,0.044951037,0.0038153653,-0.0050498396,-0.016505264,0.04233905,0.0012212589,-0.017960513,-0.0075934166,-0.0059702536,0.018022703,0.013258939,0.049055584,0.023918329,-0.023744196,0.044080373,0.045373928,-0.024179528,-0.0066916593,-0.00258711,-0.032587636,-0.015883362,0.0070958952,-0.00053133705,-0.0017522073,0.0032338875,-0.03440359,-0.011206663,0.0149878245,-0.019614771,0.03174185,0.0036723278,-0.0027223735,-0.030498046,0.0014373696,-0.006094634]},{"id":"interface-GatewayMessageDeleteBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageDeleteBulkDispatchData\nDescription: MESSAGE_DELETE_BULK — ids[], channel_id, guild_id?\nProperties: channel_id: string, guild_id: string, ids: string[]","meta":{"url":"/docs/typedefs/GatewayMessageDeleteBulkDispatchData"},"embedding":[0.043615185,0.017625153,0.015963959,0.00018749184,-0.0011744702,0.027050368,-0.033954337,0.024293493,0.010426645,0.009030535,0.026861865,-0.028746907,0.007875945,0.020664785,0.077899404,0.012782949,-0.035014674,0.037559483,-0.03178654,0.037158914,0.021194953,0.05094329,0.035462372,0.054147862,-0.026696922,0.008971627,0.016729757,-0.022973962,0.044463456,-0.018025724,0.040905435,-0.03798362,0.059567362,-0.023197811,-0.015940396,0.03039632,-0.025730839,0.009678518,-0.023940047,-0.0215484,-0.0075578447,-0.013807941,0.017660497,0.019062499,-0.020770818,0.03972728,-0.0013526657,0.019415945,0.024859006,-0.013348461,-0.007451811,-0.012971453,0.0023430497,0.07285692,0.0009646119,0.0029144534,-0.036946844,0.0022193438,-0.017389523,0.04352093,-0.035415247,-0.025777964,-0.018638363,0.016069993,0.021984315,0.010626931,-0.052969713,0.051885813,0.0268383,0.045264598,-0.044110008,-0.05721106,-0.026084283,0.006939315,0.0021265643,-0.0028084198,-0.0033636237,-0.014974311,0.027474504,-0.051037543,0.009342745,0.043992195,-0.061688036,-0.055703025,-0.009890585,0.025000384,-0.0060674823,0.0057965075,0.0006582924,0.0383135,-0.008241173,0.0019896042,-0.05325247,-0.004659591,-0.018332044,-0.09194298,0.031150337,-0.0135958735,-0.030537698,0.040976126,0.050566282,-0.031456657,-0.032069296,-0.016352748,-0.0092897285,-0.05433637,-0.0148918405,0.023021089,-0.025801528,-0.04132957,-0.0344256,0.017460212,0.0028408188,0.0027995836,0.003861393,0.022290634,0.024340618,-0.0018717889,0.06296044,0.012771167,-0.03294113,-0.01162836,0.002636115,-0.04340312,-0.047974348,-0.008111577,0.02171334,-0.025259579,-0.05947311,-0.012488411,0.057588067,-0.013254209,0.039797973,-0.005684583,-0.02039381,0.013301335,-0.005552041,-0.0027554028,0.0045329398,-0.0262021,0.01961623,0.03138597,0.02542452,0.056645546,-0.019144969,0.016411657,-0.024481997,0.008429677,0.03534456,0.016647287,-0.06329032,0.009519468,0.0005205959,-0.027333125,0.004689045,-0.0042236745,0.015009656,-0.013112831,-0.0034784935,-0.02884116,0.02210213,-0.074270695,0.023940047,0.018438078,-0.0033901322,-0.0103029385,0.026696922,-0.030231379,-0.041918647,0.014455925,-0.024717627,-0.05127317,-0.046560563,-0.03543881,-0.050047893,0.0034961659,-0.027403815,-0.046866883,-0.026932554,-0.062065046,0.032399178,0.007758131,-0.01000251,-0.06899258,-0.062442053,0.041117504,-0.021583743,-0.0028805814,0.010921469,0.007769912,-0.0128654195,0.0043061455,0.016069993,0.016812228,0.012724041,-0.0215484,-0.0013121667,-0.00032435995,0.02333919,-0.021277424,0.044157136,-0.0049718013,0.042437032,0.015516262,-0.012971453,-0.04304967,0.012653352,-0.015445572,-0.0017731186,-0.0076167523,0.03009,-0.019027153,-0.022467358,-0.016859354,-0.048492733,0.0161289,-0.05179156,0.046654817,-0.019451289,0.009448779,-0.015080345,0.0074753743,0.021418802,-0.043308865,0.022231728,-0.012182091,0.014220294,0.0034843844,-0.00875956,-0.0048039146,0.0026243334,-0.011068737,0.009001081,-0.073139675,-0.022432012,0.011775629,-0.02132455,0.03527387,0.035627317,-0.00627955,-0.016906481,-0.040599115,-0.013937538,-0.007310433,-0.0068745166,-0.012099621,0.014903622,-0.02388114,-0.0015846144,0.037771553,0.028134268,0.035320994,0.00325759,-0.025613023,-0.007722786,-0.0005364273,0.011734393,-0.018072851,0.037182476,0.010632821,0.04637206,-0.020865072,-0.033789396,0.022585172,-0.013843285,0.027427377,0.057399563,0.014184949,-0.04342668,0.02272655,-0.0011729975,-0.0355095,0.060604136,-0.050047893,-0.0018040452,-0.010196905,0.0023577765,-0.019474851,0.018650146,-0.067625925,-0.052686956,-0.002431411,0.017860783,0.027498066,-0.009955384,0.041541636,0.025448082,0.05018927,0.005543205,0.03256412,-0.031197464,0.008406114,-0.010756527,-0.04335599,0.011840427,0.030443447,-0.0066271047,0.024387745,0.03195148,0.03527387,0.043850817,0.005714037,0.0005739809,-0.048257105,-0.049482383,0.0017510284,-0.0032546448,0.0037848132,0.018496985,-0.036970407,0.02884116,-0.008735997,-0.044416327,0.009195476,-0.011463419,-0.058059327,-0.017248144,0.04853986,0.020299558,0.00807034,0.02093576,0.018956466,-0.025848653,-0.044864025,-0.015469135,-0.03388365,0.00048230594,-0.028511276,0.016788665,0.025777964,0.022432012,-0.030184252,0.005964394,0.01605821,0.049011122,0.040646244,-0.040457737,0.048586987,0.02325672,0.013277773,0.048586987,0.047243893,0.018720834,-0.015209941,0.0128065115,-0.021819374,-0.017943254,0.03202217,0.0027377305,0.03581582,0.0037376871,0.01930991,-0.012618007,-0.08228213,0.007893618,-0.042154275,0.016081775,-0.0051190704,-0.027992891,0.025377393,-0.012818293,0.0126415705,0.0065564155,0.018178884,0.011722612,-0.015339538,-0.033365265,0.006815609,-0.008040887,0.0021722177,0.020971105,-0.0062677683,-0.029477362,-0.010892015,0.0049865283,-0.029218169,-0.02350413,0.010361847,0.0071749454,-0.054242115,0.019368818,0.019981457,-0.021053575,0.008600509,-0.005823016,0.019274566,-0.023209594,0.04293186,-0.044227824,0.0034519853,0.014903622,0.005086671,-0.014927185,0.0070571303,-0.000843115,-0.0026154972,0.033388827,0.011121755,-0.0007146228,-0.02907679,0.027568756,0.027804386,-0.022219947,0.002798111,-0.01566942,0.022679426,-0.0032840986,-0.0011700521,0.037418105,-0.04559448,0.005805344,0.02024065,0.018956466,0.039680157,0.01900359,-0.06211217,-0.008300081,0.016765103,-0.0072691976,0.013525184,-0.020040365,-0.0034284221,-0.003628708,0.01899181,0.006379693,-0.032516994,0.023480568,0.009448779,-0.022443794,-0.063243195,-0.0916131,0.002497682,0.031032523,-0.0005217004,0.017106766,0.012535537,-0.013807941,-0.0096903,-0.04684332,-0.009967165,-0.07361093,-0.0061263903,-0.03567444,0.027804386,-0.008741887,0.0044062883,0.019498415,0.003543292,0.03800718,-0.013843285,-0.031927917,-0.02914748,-0.041070376,0.028369898,-0.019321691,-0.010261703,-0.01899181,0.05033065,-0.035533063,-0.009083551,-0.021795811,0.015987521,0.048068598,0.057588067,-0.010750636,0.026885428,-0.020405592,0.006709575,-0.020641223,0.07403507,-0.0068568443,-0.005451898,0.03838419,0.030490572,-0.028346336,-0.03925602,-0.022809021,0.02286793,0.05117892,0.02249092,-0.004550612,-0.004350326,-0.0186148,-0.02938311,0.014479487,0.0699351,0.010903796,-0.0097963335,-0.04231922,0.03341239,-0.041777268,-0.008034997,0.016894698,-0.011416293,-0.040127855,-0.011422183,0.0027804386,-0.01279473,0.031621598,-0.028417025,-0.0031191572,-0.05141455,0.040834747,-0.027922202,0.059048977,-0.036263518,-0.066777654,-0.016717976,-0.039420962,-0.03480261,-0.00814103,0.016717976,-0.013407369,-0.03520318,-0.006032138,0.023857577,-0.031150337,0.008647636,-0.032846875,0.03770086,-0.039350275,0.024646938,0.026013594,-0.009277946,0.0085003665,0.006538743,-0.010874342,-0.059331734,-0.012853637,0.039373837,0.03845488,-0.035886507,0.0018010997,0.076249994,0.016022867,-0.022526266,0.002170745,0.013749033,0.03303538,-0.005740545,0.008853812,0.011946461,0.024246367,0.02224351,-0.0075107184,0.004070515,0.008600509,0.0476209,0.011769738,0.019840078,-0.011045175,0.00094104884,0.021878282,-0.0032752624,0.015045,0.0043032,-0.027992891,0.00080629776,0.028817596,0.010291157,-0.025283141,-0.042060025,0.005937886,-0.024859006,-0.008358988,0.007469483,0.0014505996,0.020629441,-0.027073931,-0.012959671,-0.014620866,0.01790791,0.00875956,0.012441285,0.024835443,0.034684792,-0.0344256,0.0071454914,-0.005752327,-0.025707275,-0.017354177,-0.06032138,0.02566015,0.032776188,-0.05395936,-0.009713863,0.0023887032,-0.009778661,-0.040669806,0.009348636,-0.012888982,-0.01590505,0.010874342,-0.018897558,0.0054725157,0.015422009,0.04451058,-0.019015372,0.009548921,0.0075931894,0.008523929,0.034072153,-0.04038705,-0.01318352,0.03131528,0.020594096,0.01651769,-0.009154241,-0.026744049,0.03499111,0.007157273,0.036970407,-0.011498763,-0.0030602496,-0.012924327,-0.03986866,-0.011363275,0.006868626,0.010143888,-0.020499844,-0.005239831,0.025542334,0.0172128,0.0019689864,-0.0019925495,0.033789396,-0.04194221,-0.034095716,-0.017153893,-0.0016346858,-0.010603367,-0.026084283,-0.0071867267,-0.016199589,-0.03883189,-0.028676217,0.017259926,-0.020370247,-0.0007923072,-0.00031276254,0.013501621,0.0023887032,0.037135348,-0.010862561,0.00868298,-0.019816516,-0.014997874,-0.0186148,-0.0006597651,0.019910768,-0.017342396,-0.0120466035,0.048257105,0.021760466,0.026319914,-0.0057641086,-0.04335599,0.034637667,-0.023763325,0.003993935,0.012240998,0.004061679,0.0135369655,0.015775455,0.006373802,-0.0012598862,-0.018202448,0.02954805,-0.0033312247,0.016199589,0.026696922,0.01465621,0.035580188,-0.002745094,0.016812228,-0.0034549306,-0.046796195,0.0092897285,0.0080232145,0.030254941,-0.036169264,0.025613023,-0.008777232,0.0074635926,0.01628206,0.0077875843,0.07205577,-0.0071454914,0.03499111,0.023892922,0.041541636,-0.009177804,0.0026655688,-0.0051544146,0.036263518,-0.0039409185,0.023021089,0.045146782,0.007127819,-0.021300986,-0.040928997,-0.00891272,0.01783722,-0.012665133,0.012182091,-0.01993433,-0.020994667,0.019686919,0.03567444,-0.00791129,-0.03155091,0.025283141,-0.06173516,-0.0059113773,-0.008506257,0.033765834,-0.0524042,0.004412179,0.0018732616,-0.008017324,0.00666834,0.011304368,-0.0064857267,-0.0011008357,0.014938966,0.0067802644,0.0044210153,-0.00010989948,-0.010026073,0.003728851,-0.011663704,0.026861865,-0.00461541,0.022043223,0.005319356,0.032352053,0.03421353,0.01774297,-0.0049335114,0.004624246,-0.0069805505,0.006326676,0.01271226,-0.05937886,-0.009024644,-0.038124997,-0.007728677,0.0061146086,0.0069923317,0.026414167,-0.011486981,0.0064268187,-0.04342668,0.022384888,-0.02738025,-0.006962878,0.034943987,-0.0039261915,-0.0007761076,0.04304967,0.015398446,-0.0023224321,0.0065623065,0.042083587,-0.027969327,-0.012299906,-0.0612639,0.0053016837,0.028511276,0.00577589,-0.02210213,0.0059143226,0.026296351,0.0011619524,0.023551257,-0.052781206,0.020488063,-0.028110705,-0.010137998,0.018096413,-0.010897906,-0.007110147,-0.008364879,-0.02853484,0.008518038,0.011834537,-0.0070748026,-0.02335097,-0.0013268936,0.0046448642,-0.041070376,0.03371871,-0.012417722,-0.009643174,-0.02388114,-0.0066329953,0.01046788,-0.069699466,0.01442058,0.045618042,-0.026343478,-0.01844986,0.0070571303,0.02124208,0.076249994,-0.0017495557,-0.05165018,0.03977441,-0.004836314,0.018897558,0.004824532,0.044015758,-0.028629092,0.0050660535,0.018084632,0.006055701,0.000612639,0.013254209,0.04031636,-0.023386316,0.016717976,0.0050984523,-0.024128553,0.0030028147,0.0042384015,0.046866883,-0.020876853,0.03164516,-0.0059555583,-0.031668723,0.008358988,-0.017295271,0.016859354,0.016882917,0.0156222945,-0.0021442366,-0.0578237,-0.008942173,-0.029736554,-0.013230646,-0.011492873,-0.016882917,-0.00010824271,-0.0011501708,0.019050717,-0.0031751194,0.020817945,-0.026225662,0.007328105,0.0036787794,-0.022055004,0.020546969,0.0007127819,-0.024552686,-0.036404897,-0.029406672,-0.031221027,0.023975393,0.037088223,0.015775455,-0.022231728,0.014620866,-0.054053612,-0.022773677,-0.012276343,0.016965387,0.008176374,0.009831678,0.031362403,0.026767612,0.027403815,0.037253164,0.044911154,-0.021725122,0.009961274,0.02884116,0.049670886,-0.035862945,0.023633728,0.016305624,-0.0013165848,-0.00891272,0.012240998,-0.028157832,0.02139524,-0.019887205,0.0031662832,0.0028997264,0.0054931333,0.00016429697,0.036876157,-0.007822929,-0.012011259,-0.020535188,-0.029642303,-0.009961274,-0.041518074,0.017142111,0.0070217857,-0.015952177,-0.030184252,-0.01566942,-0.027875075,0.0058760326,0.03944453,0.01961623,0.024670502,0.010573913,0.034284223,0.012252781,0.003752414,-0.005015982,-0.034142844,0.005395936,0.011610688,0.010037854,-0.017542683,-0.03216355,-0.0074753743,0.0041441494,-0.008111577,0.005254558,0.066165015,-0.02232598,-0.006055701,-0.012170309,0.053629477,-0.03513249,0.008600509,-0.008459131,0.032823313,-0.020405592,0.024222804,-0.024788316,-0.0062383143,-0.037747987,0.0074753743,-0.02411677,-0.01868549,-0.03986866,-0.0065328525,0.027238874,-0.020841507,-0.00062662957,-0.0030190144,-0.008853812,-0.029571613,0.005908432,-0.020912196,0.0006663922,0.016011085,0.0029247622,0.0578237,-0.039114643,0.028487714,0.011598906,0.027238874,0.019121407,0.02738025,0.0071219285,0.022679426,-0.038879015,-0.023975393,-0.001918915,-0.0031368295,-0.0359572,0.012023041,-0.037182476,-0.00036136128,0.013218865,0.00029527434,-0.041258883,0.030820455,-0.01465621,-0.041235317,0.05575015,-0.0027568755,-0.022915056,-0.017919691,0.00053863635,-0.027097495,0.031008959,0.0059202136,-0.0036493256,-0.0061440626,0.002535972,-0.027615882,0.0031515565,0.038337063,0.011451637,0.009407544,-0.0009786024,-0.036499146,0.016694413,0.0069510965,-0.03070264,0.007010004,0.025707275,0.014526613,0.010945031,0.009018753,0.009890585,-0.008859702,0.011333821,0.043850817,-0.021831155,0.03760661,0.009643174,0.013313117,-0.016093556,-0.017872564,0.0060115205,0.013525184,-0.026249226,0.0012967035,0.013042142,-0.015327757,-0.0074459203,-0.021996098,0.040434174,0.078229286,-0.017943254,-0.017342396,-0.03258768,-0.012924327,-0.05395936,-0.006032138,0.033435952,-0.016694413,-0.007746349,-0.019368818,0.011781519,-0.012347032,0.0076108617,0.033624455,-0.00029748338,0.048634112,0.01294789,0.020217087,-0.00329588,-0.027592318,0.0118522085,-0.027733697,0.010450208,0.026744049,-0.0112866955,0.01426742,-0.005828907,0.00728687,-0.04224853,-0.02596647,0.027827948,-0.005319356,-0.00089539547,-0.00034074363,0.013478058,0.016588379,0.02714462,-0.034449164,0.013242428,-0.020700129,0.018320262,0.013666563,-0.0066271047,0.005599167,-0.023586601,-0.012877201,0.055043258,0.03503824,-0.0037200148,-0.016647287,-0.011327931,-0.02224351,0.012370596,0.024152115,-0.016234934,0.00961961,-0.024317056,0.0033135524,-0.017259926,-0.0071985084,-0.03456698,-0.043473806,-0.00049703283,-0.028464152,-0.00078347104,-0.026013594,0.010762418,0.03246987,-0.008853812,-0.007280979,0.011593015,-0.021972533,-0.004232511,-0.02504751,0.024199242,0.00791129,-0.029736554,-0.0067979367,-0.013053924,-0.008429677,-0.0038790654,-0.006185298,0.022314198,0.038572695,0.025872217,0.007233853,0.02272655,0.004085242,0.06493974,0.008659417,0.028134268,-0.003101485,-0.012240998,-0.004256074,0.0041971663,-0.012959671,-0.0016214317,0.003310607,-0.009631393,-0.015881488,-0.03272906,-0.012853637,0.054619126,-0.005557932,0.026861865,0.0071219285,0.043638747,-0.028464152,-0.00052390946,-0.019121407,0.016564816,-0.0019498415,-0.022361323,0.045335285,0.004703772,-0.007498937,-0.05000077,0.010479662,-0.0182967,0.0010809544,0.028087143,-0.03845488,-0.004924675,0.0011729975,0.010844889,-0.008936282,0.06724891,-0.006697794,-0.019969676,0.0136547815,0.017295271,0.0066742306,-0.0054784063,0.022573391,-0.020217087,-0.0063384576,-0.017530901,-0.009160131,0.027026806,0.0143852355,0.037017535,0.017424867,0.007976089,0.02217282,0.015999304,-0.030019311,-0.008582837,0.008005543,-0.026013594,-0.025000384,-0.011269024,-0.025613023,0.046183556,-0.011227788,0.0002836769,0.03324745,0.008370769,0.00562273,-0.014137823,0.0029998694,-0.034142844,-0.0043856706,-0.0064268187,-0.03513249,0.01961623,-0.045947924,0.015516262,0.0031279933,-0.025942907,0.0016464674,-0.009984838,0.0051691416,0.00033632555,-0.043591622,-0.020028584,-0.0294538,0.02085329,0.014020008,0.032776188,-0.022137474,-0.0017436648,-0.031008959,0.023669073,0.047267456,-0.003970372,0.022514483,-0.017342396,0.01348984,-0.0042148386,-0.0028231465,0.045995053,0.021772249,0.03046701,-0.013383806,0.025518771,0.034920424,0.0028143104,-0.0107800905,-0.002488846,-0.004206002,-0.02860553,0.007822929,0.0090069715,-0.04055199,-0.0042678555,0.031975042,-0.017106766,0.0019822407,-0.009195476,0.019203877,-0.046183556,0.04976514,-0.005068999,-0.012146747,0.0037730315,-0.012229217,0.03202217,-0.023739763,-0.04257841,0.009601939,0.0018732616,0.014314546,-0.016376313,-0.0016582488,-0.016953606,-0.021018231,-0.024246367,0.042201404,0.030207817,0.0017245199,-0.0064857267,0.02535383,0.012995016,0.027333125,0.0025477535,0.0029527433,-0.022290634,-0.039491653,-0.010090872,-0.0026478965,-0.006956987,-0.023056434,0.012417722,-0.038030744,-0.02093576,-0.0046625366,0.01357231,0.04627781,0.020747256,-0.0028805814,-0.053629477,-0.016564816,0.018426297,0.011887553,0.037253164,-0.0006932688,-0.00961961,0.025165325,0.023598384,-0.0029056172,0.009401653,-0.0037553592,-0.009095333,0.011174771,-0.005985012,0.0016037594,-0.01519816,-0.006621214,-0.045052532,-0.0008335425,0.0092602745,0.009625501,0.0072691976,-0.023987174,0.012924327,-0.01930991,-0.009855241,0.005239831,-0.038973268,-0.031975042,0.0143263275,-0.00016788665,0.03016069,0.0074635926,0.016694413,-0.015963959,-0.004076406,0.0012355868,-0.032092858,-0.016423438,0.01885043,0.016034648,-0.0045800656,-0.02457625,0.007840601,0.001643522,-0.013560529,0.017012514,0.01139862,0.0057110917,-0.007923072,-0.011410401,-0.0045947926,-0.015563387,-0.027922202,-0.03567444,0.0052633937,-0.023645509,-0.0022105076,0.026744049,0.010509116,0.0028334553,-0.0030484681,0.0059202136,0.012123183,-0.009990728,0.037653737,0.015469135,0.008105685,-0.022667643,0.008582837,-0.029335983,0.02388114,0.04319105,0.016117118,0.03923246,-0.0043679983,0.0030484681,-0.0024579195,0.010897906,0.00048488317,-0.012370596,-0.02636704,0.023280282,0.019686919,-0.01575189,0.0014491269,0.044746213,0.026956117,0.035085365,-0.011392729,-0.0045093764,0.040363487,0.009077661,-0.016835792,0.031904355,0.017094985,0.008900938,-0.0008188156,-0.047102515,-0.03086758,-0.004479923,0.0034166407,0.0031692288,0.04985939,0.019993238,0.014715117,0.0135369655,-0.01728349,-0.022702988,-0.013796159,-0.0044475235,-0.004132368,-0.017118547,0.0043974523,0.0050925617,0.0062383143,0.0085298205,-0.017790094,0.0014999347,0.004512322,0.03814856,-0.029524488,-0.020099273,-0.017648716,0.0023018143,-0.0010581277,0.02093576,0.013442714,-0.005007146,0.006691903,0.010732965,0.0030484681,-0.02636704,0.015339538,-0.018167103,-0.0045182128,-0.0060969363,0.031574473,-0.027780823,0.011805083,-0.010379518,-0.034472726,-0.008794905,-0.00469199,-0.01565764,-0.030207817,0.008264736,-0.026626235,-0.01387863,0.0016022866,-0.0050984523,0.0007462856,0.0066094324,0.046560563,0.0037641954,0.0032899892,0.013831504,0.007793475,0.02247914,0.0011980332,0.026579108,-0.044557706,-0.040198546,-0.01163425,0.020275995,0.015728328,-0.03645202,-0.005937886,-0.019474851,0.037418105,0.014031789,-0.019486634,-0.00558444,0.023527695,0.014844715,-0.004023389,-0.017566245,0.031056086,-0.043143924,-0.016906481,-0.033459514,-0.005083726,-0.021100702,-0.020994667,0.030019311,-0.043615185,0.017460212,-0.012676915,0.005054272,0.031008959,0.006892189,0.024764754,0.021430584,0.02738025,-0.011386839,-0.0008283881,0.014679773,0.0028349282,-0.03418997,0.036098577,0.0029468525,-0.0074871555,-0.0064150374,0.0065976507,0.00048598766,-0.024741191,-0.012971453,-0.05179156,-0.023822233,0.011327931,0.025377393,-0.013713689,-0.0053370283,0.01782544,-0.01799038,-0.05094329,-0.021524835,-0.011899334,-0.01535132,0.005817125,0.028629092,0.014679773,0.020688348,0.017236363,-0.082800515,0.018249573,0.015692985,0.013018579,-0.034590542,0.03327101,0.026696922,0.020134617,-0.0010456098,0.07945456,0.02279724,0.011981805,-0.017790094,0.0032782077,0.009001081,0.011015721,0.011681377,0.04038705,0.005304629,0.019286348,0.033388827,-0.018131759,0.0025182997,-0.002318014,0.0047184983,0.0029601068,-0.0020779655,-0.02100645,0.010727073,-0.00283051,-0.01480937,0.010762418,0.013855067,-0.0019704592,-0.0069039706,0.013065705,0.010986267,-0.021383457,-0.009213149,0.010338283]},{"id":"interface-GatewayMessageDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageDeleteDispatchData\nDescription: MESSAGE_DELETE — id, channel_id, guild_id?, content?, author_id? (Fluxer may send content/author_id)\nProperties: author_id: string | null, channel_id: string, content: string | null, guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayMessageDeleteDispatchData"},"embedding":[0.046602402,0.006644023,-0.019696465,-0.0045471503,0.025727918,-0.01683388,-0.02711798,0.028837888,0.008852807,0.004709128,0.028201757,-0.02516247,-0.017976558,0.031335287,0.052492492,0.0028817272,-0.033832684,0.025068229,0.0017950053,0.060455896,-0.014418944,0.028555162,0.019131016,0.04596627,-0.025021108,0.010372451,0.019578664,-0.0070504392,0.028107515,-0.03939293,0.050654784,-0.025445195,0.064885244,-0.01942552,0.013712132,0.03098188,-0.015219996,-0.0006747836,-0.04914692,-0.026717454,-0.042220175,-0.018023679,0.025068229,0.02718866,-0.008640764,0.030840518,-0.0007936898,0.008051755,0.010643395,0.0017184342,-0.01094379,-0.0065497817,0.010920229,0.07996388,0.0144071635,0.0055808616,-0.020803802,0.012640136,-0.0087055545,0.023407223,-0.040900793,-0.014289361,-0.0006217728,0.007933953,-0.014018417,0.0011669743,-0.05178568,0.056686237,0.022900674,0.061021347,-0.023348322,-0.02195826,-0.020521078,-0.027000178,-0.022052502,-0.030840518,-0.018388866,-0.03998194,0.0043557226,-0.049288284,0.03677773,0.041772526,-0.07949267,-0.06973868,-0.009229773,0.025751479,-0.016221311,0.0019569828,-0.008788017,0.0097598815,-0.050560545,0.0077749207,-0.039675653,-0.013276266,0.0048769955,-0.056497756,0.013346947,0.0023854868,-0.031853613,0.03310231,0.06328314,-0.03944005,-0.043351073,-0.013464749,0.00578996,-0.033714883,-0.032678228,0.028743645,-0.037013333,-0.026741015,-0.052586734,-0.009895354,-0.017540691,-0.0071387906,-0.030534234,0.008711445,0.016881002,-0.033337917,0.054283082,0.024785504,-0.05941924,-0.017093046,0.023077378,-0.030675596,-0.024691263,-0.02839024,0.022747533,-0.03807355,-0.07421515,-0.030086586,0.052492492,-0.04061807,0.026269807,-0.0309112,-0.003354407,0.035175625,-0.009235663,-0.025256712,-0.019178137,-0.04900556,0.016610058,-0.004140734,0.013771033,0.0711523,-0.002619618,0.01223961,0.009400586,0.037296057,0.037696585,0.027330024,-0.024267176,0.008316809,0.01946086,-0.007044549,-0.00971276,0.014913711,0.057911377,-0.025751479,-0.019849608,-0.029992344,0.035529032,-0.054424442,-0.002844914,-0.018494887,-0.03538767,-0.0040317676,0.010195748,-0.01816504,-0.031358846,0.02136925,-0.028508041,-0.043351073,-0.03161801,-0.028790766,-0.010172187,0.0102546485,0.0016875111,-0.033314355,-0.01810614,-0.0030834628,0.031877175,-0.0026770465,-0.006708814,-0.055131253,-0.02398445,0.0053187525,-0.024785504,0.008234347,-0.030251509,-0.015384918,-0.021522393,0.02319518,0.01804724,0.004947677,0.039487172,-0.006178706,0.054518685,-0.043351073,0.011662381,-0.045612868,0.036118038,0.001672786,0.019932069,-0.014760569,0.00485049,0.002830189,0.019778926,0.0150197325,-0.0053040273,-0.005542576,0.03293739,-0.009159092,-0.018329963,-0.021699097,-0.06766537,0.018471327,-0.022853553,0.037814386,-0.0144071635,-0.011809633,-0.022676852,0.037201818,0.011921545,-0.029285533,-0.0075275367,-0.018259283,-0.013806374,-0.018483106,-0.054565806,0.0021425206,0.0047503584,0.009382916,-0.0144071635,-0.08467595,-0.021227889,0.0069267475,-0.028578723,0.011515128,0.022877114,0.0073272735,-0.037720144,-0.05489565,0.005180335,0.0047474136,-0.021534173,0.00041414704,0.0030687375,-0.016091729,-0.011450337,0.03661281,0.0811419,0.046225436,0.035906,-0.0073920647,0.004594271,-0.038426954,0.03428033,-0.0323955,0.045636427,-0.008735006,0.07317849,-0.015820784,-0.034492373,0.024667703,-0.01865981,0.024290737,0.03496358,0.013146684,-0.04573067,0.018412426,0.0062258267,-0.05164432,0.07063398,-0.006850176,-0.027518507,0.0027271123,0.030345751,-0.014925491,0.030487113,-0.034610175,-0.05348203,0.0039110207,-0.0010101506,0.014666327,-0.022523709,0.042974107,0.0375081,0.024761943,0.01803546,0.04971237,-0.043468874,0.020850923,-0.00027223266,-0.049806613,0.013158464,0.05230401,0.013582551,0.0037696585,0.0059696073,0.045283023,0.046248995,-0.0257986,-0.007421515,-0.043657355,-0.0012236665,0.01094968,0.011202954,0.022182085,0.03743742,-0.029780302,0.012522334,-0.010613944,-0.054000355,-0.0031453087,-0.038591877,-0.021133648,-0.007556987,0.06450828,0.01881295,0.0011669743,0.057393048,-0.018223943,0.002647596,-0.08453459,-0.02072134,-0.030463552,0.0065969024,-0.03293739,0.014371823,0.04255002,0.028248878,-0.019755365,-0.003819724,-0.0018450711,0.03633008,0.0014997645,-0.051220234,0.07511044,0.017116604,0.02319518,0.052398253,0.00840516,-0.030180827,0.0057192785,0.010142737,0.0018642138,-0.01686922,-0.011909764,0.026953058,0.015396698,-0.03802643,0.0015755994,-0.012816839,-0.07284865,-0.00034512253,-0.023006696,0.026246246,0.00067441544,-0.048534352,0.0032042097,-0.018459545,-0.014996172,-0.00074988225,0.026081324,0.00773958,-0.0074038445,-0.04080655,-0.016939903,-0.0056456523,-0.036565688,0.018223943,-0.019449081,-0.06493237,0.010496142,-0.007933953,-0.009995485,-0.029568259,-0.017776296,-0.0031511988,-0.042337976,0.016091729,0.053764753,0.0025842777,-0.012522334,-0.0030157268,-0.021145428,-0.011096932,0.035104945,-0.035010703,0.02589284,0.009748101,0.001016777,-0.018483106,0.0037873287,0.0038344495,0.014430723,0.019614004,0.035670392,0.020886263,-0.010077946,0.032466184,0.034515936,-0.0124163125,0.0073861745,-0.036471445,-0.0013156992,0.02638761,-0.017858757,0.029309094,-0.046885125,0.0028596392,0.02970962,0.005937212,0.048769955,-0.012734378,-0.06677008,0.03920445,-0.012922861,0.0072801528,-0.01419512,0.006826616,0.016480476,-0.0070504392,0.0074568554,0.024220055,-0.043468874,0.033479277,0.008617204,0.014077318,-0.07511044,-0.082178555,0.00031143858,0.041819647,-0.0071152304,0.04521234,0.0044175684,0.006914967,-0.028625844,-0.051314477,-0.0027904308,-0.04050027,0.00904718,0.020509297,0.014477844,-0.0028566942,-0.0071270103,0.037885066,0.018577348,0.049900852,-0.03029863,-0.02848448,-0.038992405,-0.0479689,0.027165102,-0.06078574,-0.032701787,-0.020886263,0.0825084,0.0130288815,-0.007374394,-0.045518626,0.008446391,-0.009536058,0.044953175,-0.037013333,-0.009200322,0.0029877487,-0.0047621387,-0.0056456523,0.05560246,-0.020839144,-0.006060904,0.028508041,0.061209828,-0.008069425,-0.023053817,-0.014760569,-0.0009291619,0.072236076,0.01745823,0.018706929,0.029521137,-0.03562327,-0.030251509,-0.0067323744,0.091885425,0.012604795,-0.020379717,-0.031170363,0.029521137,-0.010555044,-0.012333851,0.006708814,-0.012027566,-0.026882377,-0.03814423,0.01160348,-0.025657238,0.028743645,-0.01803546,0.0016212476,-0.02711798,0.026222687,-0.035104945,0.040288225,-0.028885007,-0.05560246,-0.022028942,-0.04667308,-0.044105005,0.030251509,0.013276266,-0.0076276683,-0.00046089964,-0.010248759,0.028295998,-0.03677773,0.026858816,-0.03088764,0.023442563,-0.009541947,0.026976619,0.02586928,0.0032395502,-0.0046944027,-0.004573656,-0.00070533843,-0.08326233,-0.005106709,0.023148058,0.04068875,-0.006320068,0.013771033,0.05993757,0.01946086,0.00026376566,-0.0044970848,-0.012062907,0.039416492,-0.0097952215,-0.01227495,0.006708814,0.035104945,0.026199127,-0.0055101803,0.01612707,-0.022853553,0.04891132,-0.005224511,0.0014776767,0.0051538297,-0.007156461,0.0018863017,0.0013422045,0.02258261,0.012145368,-0.03164157,-0.014772349,0.014383603,0.022700412,-0.0048092594,-0.035222746,0.0048239846,-0.0065144408,-0.016857442,-0.0051685553,-0.010808318,0.017894097,-0.029992344,-0.012451653,0.021534173,0.0115917,0.0043586674,0.020509297,0.033196554,0.025939962,-0.022818213,0.03164157,-0.013240925,-0.020285474,-0.026670333,-0.07049261,0.01294642,0.034657296,-0.043468874,-0.007609998,-0.010814208,-0.03279603,-0.040877234,0.014713448,-0.00550429,-0.003348517,-0.0090295095,-0.0075923274,0.010036715,0.0028169362,0.030769836,0.0022087842,-0.010725856,0.0027874857,0.001016777,0.029285533,-0.043610238,-0.014395383,0.051220234,0.031264603,0.033290796,-0.0061845956,-0.030157268,0.024149375,-0.022806434,0.019295938,-0.020956945,-0.009406475,-0.010496142,-0.028036835,-0.0073920647,0.012852179,0.018306404,-0.021110088,0.011391437,0.024432098,-0.0016477531,0.0031511988,-0.008575973,0.031123241,-0.050654784,-0.043468874,0.0003618725,-0.015915027,0.02136925,-0.018942533,-0.001644808,0.0077808104,-0.018341744,-0.028508041,0.039039526,0.0035252196,-0.023595706,-0.04057095,0.03027507,-0.008193117,0.022641512,0.022347007,0.006767715,-0.025562996,-0.033149432,-0.00420847,-0.006691144,-0.0014938744,-0.02780123,-0.010484362,0.05470717,-0.014312922,0.040523827,0.0052539613,-0.03027507,0.062906176,-0.009547838,-0.015832566,-0.004712073,0.031311724,0.0019569828,0.032583985,-0.0072742626,0.012062907,-0.012522334,0.010390121,-0.01868337,0.0089941695,0.026646772,0.033809125,0.030086586,-0.0037784935,0.004126009,-0.02321874,-0.011550469,-0.025963522,0.01034889,0.023371883,-0.012004006,0.030015904,-0.012545895,-0.0017611373,0.027848352,-0.018636249,0.04130132,-0.024620581,0.023713507,0.0101191765,0.0144071635,-0.0025754424,0.017882317,-0.0034015276,0.0114797875,0.015667643,0.0055366857,0.04207881,0.0205682,-0.04127776,-0.016409794,-0.018059019,-0.0046944027,0.007998744,0.016574716,-0.050607663,0.0061021345,-0.0013341056,0.03409185,-0.009724541,-0.021428153,0.0018995544,-0.033267237,-0.014501405,-0.023018477,0.019896729,-0.024738383,0.018624468,0.0016904562,0.00035138076,0.020556418,0.00837571,-0.004776864,-0.0013760725,0.0063495184,0.0012987651,0.0069503076,0.02003809,-0.007674789,-0.017929439,-0.039652094,0.023572145,0.024879746,0.003481044,-0.043091908,0.025021108,0.02577504,0.01749357,0.0077749207,0.009589069,0.02391377,0.028225318,0.0074332952,-0.04516522,-0.018412426,-0.022299886,-0.0031511988,-0.011821413,0.008888148,0.025515875,-0.008334479,0.006632243,-0.030581353,0.005533741,-0.045518626,-0.012722597,0.015620522,0.0036400764,-0.009565508,0.05367051,0.029261973,-0.0007362614,-0.013417628,0.017811636,-0.039039526,0.0042055254,-0.04191389,-0.0015328963,0.01222783,0.015761884,-0.012510554,0.0010123594,-0.0014438087,0.012157149,0.019189917,-0.034445252,0.022747533,0.0093181245,-0.03418609,0.026646772,0.022829995,-0.017646713,-0.010778867,-0.050042216,0.011267745,0.0077925907,-0.028036835,-0.02188758,-0.0205682,-0.0060550137,-0.01736399,0.032607544,-0.017587813,-0.02589284,-0.020556418,0.0020733122,0.017953,-0.071953356,0.026104884,0.027848352,-0.003681307,-0.016032828,0.019119237,0.029285533,0.03932225,0.008446391,-0.06775961,0.039015964,-0.028319558,0.016515816,0.00516561,0.03951073,-0.019272378,0.009094301,0.021793338,0.006508551,-0.0044764695,0.0054336092,0.011120493,-0.028531602,0.0167632,0.015090413,-0.011821413,0.0010454912,0.0009865903,0.028908568,0.009518388,0.02260617,-0.028743645,-0.014666327,0.011138163,0.009418256,0.020450396,-0.005916597,0.010985021,0.0057133883,-0.04184321,0.015997488,-0.014960832,-0.017717395,-0.006196376,-0.018706929,0.0057722894,-0.015113974,-0.005728114,0.0056868833,0.0055072354,-0.041513365,-0.00516561,-0.00026763103,-0.027165102,0.04379872,-0.008428721,-0.0205682,-0.013959516,-0.020898044,-0.037531663,0.008511182,0.038591877,0.03164157,-0.018824732,0.02331298,-0.027471386,-0.0245499,-0.009983704,0.004338052,-0.014065538,-0.005766399,0.022488369,0.050089337,0.051502958,0.015973927,0.02518603,-0.011385546,0.0021366307,0.048204508,0.026882377,-0.022712192,0.022936014,0.018259283,0.011255965,0.008193117,0.019767147,-0.014548525,0.014513185,-0.022888895,-0.0040494376,0.015644083,-0.020261914,-0.0019923234,0.01865981,-0.019213477,0.008670215,-0.05089039,-0.0074332952,-0.0012972926,-0.048769955,0.011797853,-0.0032042097,-0.015620522,-0.048534352,-0.0076512285,0.013217364,0.0060373438,0.018188601,0.008452281,0.010613944,-0.0016919287,0.015620522,-0.021204328,0.018977875,0.0036665818,-0.03220702,0.030463552,-0.00011531694,-0.0037019223,-0.02586928,-0.01159759,0.010572714,-0.005745784,0.01030177,-0.014949052,0.029615378,-0.00969509,0.0054512797,-0.011568139,0.034586616,-0.03743742,0.014136219,-0.0053187525,0.023725288,-0.007498086,0.01683388,0.0070563294,0.023784189,-0.046248995,-0.00070239336,-0.008316809,0.020933384,-0.010519703,-0.022782873,0.032583985,-0.011403217,0.027447825,0.011403217,-0.0044764695,-0.033408597,0.0048122047,-0.0062847272,-0.034539495,-0.0004925589,-0.0016948738,0.041089278,-0.031523768,0.0059754974,-0.012816839,0.033008073,0.027447825,0.008234347,-0.008746785,0.0038962953,-0.032466184,-0.039416492,-0.001309809,0.014289361,-0.045471504,0.004211415,-0.02848448,-0.008752676,0.017623153,-0.0042261407,-0.029309094,0.027565626,0.0070092087,-0.024997547,0.04895844,-0.0012774136,-0.04325683,-0.0120746875,-0.019060336,-0.013971296,0.0451181,0.020544639,0.030463552,-0.01607995,-0.024149375,-0.009382916,-0.0005275313,0.030793397,0.029191293,0.014477844,0.009812892,-0.011721281,0.00095861236,0.023360102,-0.03432745,0.016916342,0.035811756,0.020332595,-0.000051446266,0.0023177508,0.03041643,-0.021746216,0.014466064,0.04507098,-0.016032828,0.035364106,-0.0038904052,0.0066027925,-0.016386233,-0.01419512,-0.004953567,0.031146802,-0.028201757,0.023725288,0.018636249,-0.014065538,0.0019496202,-0.027895473,0.028248878,0.052021287,-0.01606817,-0.0034663186,-0.0478511,-0.025610117,-0.05032494,-0.009223883,-0.012828619,-0.021498833,-0.013464749,-0.023383662,0.02445566,-0.007992853,0.0013790176,0.020874484,0.027636308,0.04085367,0.007562877,0.01737577,0.0026947167,-0.027895473,0.014937271,-0.027259342,0.00063686614,0.02836668,-0.034398135,0.002456168,-0.011526909,0.010472583,-0.025115348,-0.0046296115,0.0021366307,-0.010708186,0.0060962443,-0.013370507,0.015055073,0.012746157,0.029992344,-0.035175625,-0.011574029,-0.023501463,0.015314237,-0.0052451263,-0.026081324,0.016998803,0.002641706,-0.006838396,0.059089396,0.04391652,-0.004797479,0.004128954,-0.011202954,0.0051332144,0.0060785743,0.024314297,0.0110203605,0.0090354,-0.002002631,-0.012969981,-0.011833194,-0.013252705,-0.031123241,-0.017316869,-0.00548073,0.00026744694,0.01094968,-0.051455837,0.02325408,0.011032141,0.013346947,-0.02638761,0.016056389,-0.010219309,-0.020686,-0.015632302,0.018388866,-0.0027550901,-0.0030392872,0.008841027,-0.0060550137,0.0017861702,-0.0071329004,0.012816839,0.013617891,0.03866256,0.01874227,0.016468694,0.0088586975,-0.019826047,0.020615319,-0.010955569,0.031146802,0.0072801528,-0.009276894,-0.011880314,0.017234407,-0.011473898,-0.012345632,-0.0020630045,-0.0077101295,-0.005869476,-0.01359433,-0.005940157,0.03486934,0.000023364795,0.024432098,0.013629671,0.018907193,-0.05866531,-0.013158464,-0.024408538,0.009094301,0.008958829,-0.04829875,0.058948033,0.013818154,0.0011647656,-0.06856066,0.008823357,-0.005374708,0.011986336,0.013311606,-0.022382347,-0.0018863017,0.0009814365,0.003236605,-0.0017935327,0.056921843,-0.009100191,-0.0104077915,0.0057398938,0.009812892,0.029945225,-0.008487621,0.030793397,-0.012722597,-0.0010027881,-0.025939962,0.005345258,0.01165649,-0.0037667134,0.035057824,0.013523649,-0.008687885,0.0025047613,0.0058930363,-0.01097913,0.008287358,-0.014996172,-0.022099622,-0.0153260175,-0.04064163,-0.012958201,0.02707086,0.012593015,0.012793278,0.002425245,0.014454284,0.018235723,-0.01739933,-0.013829934,-0.031264603,-0.0014600063,0.005692773,-0.038992405,0.010496142,-0.03873324,0.025845721,-0.02586928,-0.01611529,-0.0074568554,-0.009117861,0.014348262,-0.022900674,-0.04900556,-0.005630927,-0.022217425,0.013099563,0.013782813,0.025233151,-0.029238412,-0.0072212517,-0.035953116,0.022453029,0.04584847,-0.014089098,0.031241044,-0.026741015,0.010761197,-0.00454126,-0.0036371313,0.02459702,0.029780302,0.021098306,0.0016212476,0.020591758,0.048110265,-0.00032634786,-0.020509297,0.007963403,0.007692459,-0.027989713,0.01999097,-0.0051214346,-0.032065656,0.020874484,0.024066912,-0.0030628475,0.0035576152,-0.009088411,0.031877175,-0.046720203,0.023136279,0.004211415,-0.03345572,0.013099563,-0.023996232,0.032513306,0.018447766,-0.016492255,0.0001349199,-0.002199949,0.0034103629,-0.025727918,-0.013052442,-0.003916911,0.0009343157,-0.005150885,0.025704358,0.0039286907,0.031523768,-0.006985648,0.0053275875,-0.02707086,0.019896729,0.009506607,0.0061845956,-0.025445195,-0.069126114,-0.017634934,0.002360454,-0.005301082,-0.021675536,0.013146684,-0.055885185,-0.046013393,-0.013818154,0.016574716,0.026835255,0.0102369785,-0.027471386,-0.017752735,-0.009341685,0.026693894,0.013346947,0.007044549,0.0026152006,-0.019083895,0.007374394,0.030769836,-0.011244184,-0.0040435474,-0.019531542,-0.010519703,-0.0012840399,-0.008116546,-0.00578996,-0.01749357,-0.024220055,-0.04533014,-0.011191173,0.0022397072,-0.005828245,0.009983704,-0.016562937,-0.013382288,-0.005736949,-0.017175507,0.008788017,-0.030816957,-0.013276266,0.011397326,-0.009494827,0.011833194,0.02331298,0.029144172,-0.00258575,-0.020438617,-0.008299138,-0.027165102,-0.024290737,0.006655803,-0.0037637684,-0.00077012944,-0.017257968,0.006314178,-0.017576033,-0.03498714,-0.0015005007,0.029638939,0.01222783,-0.018294623,-0.02582216,-0.014524965,-0.0005139105,-0.025727918,-0.040335346,0.00045721832,-0.027824791,0.008499402,0.031217484,-0.012663696,0.0144071635,-0.022453029,-0.0047385786,-0.017293308,0.006985648,0.019178137,-0.02136925,0.013240925,0.0063789687,-0.0083992705,-0.022358786,0.006956198,0.034115408,0.01223961,0.03555259,-0.021428153,0.0057929046,0.008852807,0.008257908,0.013653232,-0.01684566,-0.027424265,0.016798541,0.008617204,0.002943573,-0.0034368683,0.016386233,0.022405908,0.0013834352,0.0024973988,0.010590384,0.033125874,0.04061807,-0.0117860725,0.032466184,0.00027757057,-0.0016315553,-0.009483047,-0.039063085,-0.01995563,0.0071387906,0.013052442,0.006119805,0.025963522,-0.009435927,0.01353543,0.013500089,-0.0015741269,-0.053764753,0.01675142,-0.010666955,-0.016244872,-0.032748908,-0.012840399,-0.010555044,0.038874604,0.0133351665,-0.031029,0.014913711,-0.004128954,0.037131134,-0.01030177,-0.0180119,-0.006325958,0.004632557,0.013441188,0.015820784,0.019614004,-0.033809125,0.015066854,-0.0013444134,-0.009324014,-0.037696585,0.008281468,-0.018589128,-0.015926806,0.005091984,0.018223943,-0.003672472,-0.004768029,-0.0066145724,-0.022453029,0.0035752854,-0.013087783,-0.000732212,-0.009435927,-0.0044823596,-0.04066519,-0.012168929,0.010602164,-0.0012752047,0.015196435,-0.0016963463,0.04132488,0.00053268514,-0.019213477,0.032018535,0.02909705,0.024408538,-0.000028829236,0.026693894,-0.02131035,-0.052398253,-0.026953058,0.0002827244,0.007833822,0.007686569,0.005180335,-0.018553788,0.018883632,-0.011126382,-0.025421634,-0.01940196,0.0075275367,-0.007822041,-0.01684566,-0.020956945,0.017634934,-0.032042097,-0.0053953235,-0.011214734,-0.00056434434,-0.050136458,-0.009282784,0.03925157,-0.03284315,0.0041672396,-0.010266429,-0.0005680257,0.014159779,0.010537373,0.029214853,-0.0017140165,0.028743645,-0.023124497,-0.006826616,0.01550272,0.0067441547,-0.023065597,0.043068346,0.005359983,-0.01940196,0.006255277,0.01225139,0.029874543,-0.0080753155,-0.011385546,-0.056921843,-0.024691263,-0.012840399,0.0036430215,-0.00058348716,0.0055072354,0.014642767,0.0021307406,-0.03984058,-0.043563116,0.0048769955,-0.01739933,-0.003672472,0.017552473,-0.0008356567,0.016350893,0.009388805,-0.06898475,0.015373138,0.025704358,0.00011476475,-0.04372804,0.04328039,0.03934581,0.006708814,-0.018612688,0.058571067,-0.0038256142,0.0076335585,-0.04462333,0.01547916,0.016668959,0.022217425,0.015962148,0.021651976,-0.007368504,0.02577504,0.043421753,-0.029238412,-0.018023679,-0.009577288,0.0016639507,0.0026358159,-0.0065380014,-0.017964778,0.026104884,-0.021498833,-0.023560366,-0.0027315298,0.026788136,-0.03366776,-0.0051273243,0.012086467,-0.0017081265,-0.01999097,0.0093181245,-0.012062907]},{"id":"interface-GatewayMessageReactionAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionAddDispatchData\nDescription: MESSAGE_REACTION_ADD — message_id, channel_id, user_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string, user_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionAddDispatchData"},"embedding":[0.03743033,0.02144638,-0.007214097,0.044252608,0.014866111,0.006816515,-0.011766123,0.008049595,-0.007928592,-0.021734484,-0.029593932,-0.024730755,0.009818547,0.013759796,0.018703641,-0.01402485,0.0028392542,0.031760465,-0.022979088,0.08140636,-0.03643926,0.03367347,0.025675733,0.033581275,-0.0017012478,0.019602522,-0.0084932735,0.04552026,-0.017816285,-0.032521058,0.025721828,-0.030308427,0.07486066,-0.0052982126,-0.011293635,0.028856387,-0.04932322,0.019130034,-0.0430541,0.0041602063,-0.030331476,-0.038813226,0.029132966,0.029962704,-0.07458408,-0.0126650045,-0.046949252,0.0024315887,-0.0059752543,0.018357918,-0.016064618,0.0041890163,0.015972426,0.081360266,0.021504002,-0.03272849,-0.0009781094,-0.011501068,-0.04058794,0.029709173,-0.021792104,-0.02634413,-0.004626933,-0.01741294,0.0014073828,-0.03132255,-0.051628042,0.01923375,0.038536645,0.015799563,0.013137493,-0.017263127,-0.0058859424,0.012284708,0.0046384567,0.0013778522,-0.04969199,-0.044552237,0.026413275,-0.045819886,-0.00035544697,0.050383437,-0.06379751,-0.08785987,-0.0065687466,0.010348657,-0.014727821,-0.028579809,-0.029709173,0.01733227,0.0103083225,0.009674496,-0.09966056,0.0064823157,-0.00834346,-0.040541843,0.022149352,0.014382098,-0.026436323,0.025514394,0.068407156,-0.09366802,-0.04266228,-0.03574781,0.02080103,-0.016721493,0.016882831,0.020190252,-0.028211037,-0.014681725,-0.040357456,-0.0030221995,0.015741942,-0.0054681934,-0.0052924505,-0.0097033065,0.041786447,-0.05361019,-0.0012698136,-0.011996605,-0.061123915,-0.013540837,0.05153585,-0.02961698,-0.0094612995,-0.009933788,0.0092769135,-0.035379037,-0.045197584,0.010406277,0.0312995,-0.017263127,0.026828144,0.0056785084,-0.0023465983,-0.01422076,0.02203411,-0.011011293,-0.03157608,-0.017124837,0.0155690815,-0.009795499,-0.010319847,0.03286678,-0.04121024,-0.0114549715,-0.05467041,0.0122386115,0.019095462,-0.000057395504,-0.06601014,0.0463039,-0.038813226,-0.028003603,0.042178266,0.00043971709,0.0031143925,-0.009697544,0.008447178,-0.043745548,0.028625906,-0.1016888,-0.016225956,-0.00932301,-0.028372375,-0.0013807332,0.00013180709,-0.0020066367,-0.023059757,0.016640825,0.029916607,-0.045474164,-0.04918493,-0.00060429587,-0.04319239,-0.004540502,-0.017793236,0.009674496,-0.046764866,-0.0032123476,0.036854126,0.011985081,-0.06992834,-0.086799644,-0.025376106,-0.019475756,-0.030239282,-0.0010011577,0.029063823,-0.0141170425,-0.007484914,0.02922516,0.049507607,0.010267988,0.03457235,-0.057021327,0.031645223,-0.031599127,0.009115576,-0.042570088,0.03471064,-0.016479487,0.044460043,-0.0029300067,-0.0069836145,-0.02844152,-0.012826342,-0.027289107,0.01872669,-0.0077614924,0.03512551,-0.05310313,0.012780245,0.009697544,-0.07882496,0.018703641,-0.08140636,-0.008752567,-0.03653145,-0.00081677176,-0.058358125,0.017989146,0.06407409,-0.053379707,-0.018265724,0.033973094,0.005825441,-0.0108499555,-0.017309222,0.019717764,-0.026712902,-0.010907576,0.0012885403,-0.053010937,0.010705904,-0.0053904057,0.04203998,0.009870406,0.0365084,0.001925968,0.036831077,-0.020443782,0.014739345,0.017839333,-0.0076577757,0.022402883,0.021227423,0.013079872,-0.02399321,0.03012404,0.046280853,0.038398355,0.01741294,0.0010587783,0.008193647,-0.03466454,-0.0043705213,0.0078306375,0.018346393,0.03247496,0.039827347,-0.020570548,-0.013886561,0.049599797,-0.019602522,-0.01821963,0.053379707,0.033051167,-0.030147089,0.00786521,0.03182961,-0.043999076,0.055500146,0.0033016594,-0.006839563,0.000009346464,0.01788543,-0.0038202447,0.017124837,0.012918535,-0.03911285,-0.005520052,0.03468759,0.022564221,-0.033857856,0.030285379,0.050429534,-0.006822277,0.029202111,0.028810292,-0.040979758,0.0070815696,-0.0007569904,-0.03233667,0.009622637,0.03793739,0.0029300067,0.0020325661,0.024592465,0.039320286,0.02144638,0.00988193,-0.005756296,-0.035056364,0.025790973,-0.015799563,0.014935255,-0.0024143024,0.04307715,-0.008499036,0.015822612,-0.0149006825,-0.02315195,-0.005635293,-0.050936595,-0.013898085,0.019590998,0.042178266,-0.009334534,0.016387293,0.009997171,0.016076142,0.021964967,-0.06158488,-0.024039308,-0.039089803,0.020697314,-0.054716505,0.020893224,0.04409127,0.024799898,-0.04227046,0.03026233,0.024845995,0.066378914,0.03146084,-0.04918493,0.045082346,0.04008088,0.033880904,0.06158488,-0.0005690033,-0.017827809,-0.030147089,0.009271151,-0.03404224,-0.023762729,-0.001010521,0.019510329,0.00456355,-0.02558354,0.0052809264,-0.045612454,-0.08237439,0.033927,-0.04720278,-0.01105739,-0.0070297113,-0.008032309,0.036692787,-0.017401416,-0.0022472027,0.0016580323,0.009783975,0.038790178,-0.009812785,-0.02228764,0.00054523477,-0.0029789843,-0.030561958,-0.016859783,-0.012618908,-0.063474834,0.0037568621,-0.017977621,-0.008418367,-0.016848259,-0.0069432803,-0.014243809,-0.00086214795,0.013702175,0.028487617,0.018380966,0.021849725,0.0055661486,-0.021457905,-0.03498722,0.00005559486,-0.010711666,0.038813226,0.04369945,-0.041118048,-0.03381176,-0.0038721033,-0.008418367,0.018404014,0.034756735,0.013563885,0.029086871,0.004131396,-0.0059464443,0.008066881,0.026943386,-0.008648849,-0.03286678,0.023313288,-0.028579809,0.017701043,0.02791141,-0.011656644,0.049645893,0.0026231771,0.0103659425,0.06282949,-0.00671856,-0.03613963,-0.010118174,0.011639358,-0.008084168,0.028764196,-0.00037885533,0.0040737754,-0.012273184,-0.00923658,0.009161673,-0.012411473,0.027519591,0.0012208361,0.026505468,-0.023105854,-0.09233122,-0.0045116916,0.06559527,-0.0083722705,0.07232536,-0.04005783,0.015695848,0.017378367,-0.029847462,-0.0011293634,-0.0573901,0.0065111257,0.015476889,0.030746343,-0.01539622,0.00029764633,0.002611653,-0.023566818,0.025952311,-0.005047563,-0.03756862,-0.008908142,-0.03925114,0.034549303,-0.036324017,-0.024338935,-0.00044331836,0.05845032,0.002961698,-0.0097033065,0.0044742385,0.0113339685,0.0018611448,0.059418347,-0.02225307,-0.0053010937,-0.051904622,-0.00006306753,-0.0046816724,0.041325483,-0.01948728,-0.004168849,0.024062356,0.04867787,-0.030700246,-0.04946151,0.017931525,0.020489879,0.04254704,0.049738087,-0.01144921,0.06121611,-0.004742174,-0.040403552,0.002726894,0.051720235,-0.0069720903,-0.029732222,0.0017387011,0.0127226245,0.022690985,0.0091271,0.00061545987,-0.0110862,0.013736747,0.0034370678,0.026966432,-0.045197584,0.006516888,-0.01131092,-0.012872438,-0.017908478,-0.020996941,-0.025929263,0.025076479,0.011794933,-0.0087986635,-0.008389557,-0.018772786,-0.00081677176,-0.007052759,-0.003566714,0.003154727,-0.0352177,0.0012885403,0.0062691197,-0.03743033,-0.005044682,0.0016868425,-0.0041918973,-0.0018539423,0.014301429,0.02360139,0.0074791517,0.0066551776,0.00596373,0.035033315,-0.06919079,-0.009472824,0.005355833,0.017124837,-0.026021454,0.032290574,0.0313456,0.02225307,-0.02765788,-0.030723294,0.012895486,0.032567155,-0.030239282,0.0042869714,-0.0013526432,0.02289842,-0.01690588,0.018484684,0.010348657,-0.008660373,0.04653438,-0.0061942125,0.011962033,-0.01808134,-0.012918535,0.006660939,-0.0023782896,0.009795499,0.0058830613,-0.012088798,-0.01831182,0.017067216,-0.017770188,0.02765788,-0.018957172,-0.005399049,-0.020812554,-0.053195324,0.023924066,0.0228408,0.006021351,-0.028741147,-0.0052895695,-0.013356451,0.021285044,0.012895486,-0.01962557,0.0113973515,0.03643926,-0.015373171,0.029063823,-0.0012863795,-0.04144072,-0.02440808,-0.04448309,0.029455641,0.014578007,-0.029086871,0.0035119746,-0.011685454,-0.01774714,-0.029501738,0.026597662,-0.018945647,0.012595859,0.03233667,0.035586473,-0.00769811,-0.0021506883,-0.017274652,-0.013967229,0.012688053,0.016306626,0.025537442,0.003952772,-0.038421404,-0.014739345,0.028602857,0.051443655,0.01956795,-0.0076462515,-0.039504673,0.028026652,-0.014681725,0.027427398,-0.021550098,-0.02830323,-0.039089803,-0.010170033,-0.0057102,0.019395089,0.0071622385,-0.020386163,-0.02583707,0.037361186,-0.0035926434,0.0088562835,-0.009559255,0.04766375,-0.017366843,-0.021757532,0.025330009,-0.009628399,-0.0016277814,-0.026574614,-0.020927796,-0.051720235,-0.020582072,-0.041164145,0.037130702,-0.032244477,0.008268554,0.015361647,0.008112978,0.00023210292,0.039343335,0.02791141,0.047525458,0.017839333,0.015534509,-0.015165738,0.028925532,0.0102449395,-0.025468297,-0.008741043,0.046488285,-0.024223693,-0.0006071769,0.004952489,-0.03586305,0.06250681,0.0005898907,-0.040472697,-0.023405481,0.010746239,0.013079872,0.00825703,0.024892092,0.037038513,-0.023025185,0.023059757,0.02491514,0.020005867,0.024592465,0.0008405403,0.022183925,0.008983049,-0.003860579,-0.019014793,-0.0056900326,-0.016836734,0.00786521,0.0032411579,0.052549973,0.005021634,-0.0150044,-0.0014232284,0.04579684,-0.00635555,0.060570758,-0.017896954,0.037637766,-0.0062864055,0.01962557,-0.007847924,0.0069663287,-0.013333403,0.047802035,0.02583707,0.0495537,0.006701274,0.0042005405,-0.01525793,-0.01010665,0.0031921803,0.0027902767,-0.019602522,0.02186125,-0.020443782,0.006320978,-0.00526364,0.043976028,0.019418137,-0.014151615,-0.0049755373,-0.014197712,-0.0004350354,0.00610202,-0.009484348,-0.011138059,0.003952772,0.025929263,0.006528412,0.009870406,0.030631103,-0.015580606,-0.0032209905,-0.0022803345,0.030423667,0.021457905,0.03666974,-0.015246406,0.025675733,-0.007098856,0.034088336,0.019982819,0.026067551,-0.032451913,0.0053702383,0.021169802,0.017343795,0.00867766,0.0011380066,0.006528412,-0.022091731,-0.0022760131,-0.011616309,-0.026436323,0.000540193,0.0056439363,0.0100663155,-0.035379037,0.028672002,-0.013172065,0.0058801807,-0.0456816,0.0022155114,-0.035932194,0.0008815949,0.023025185,-0.0077787787,-0.024200644,0.020639693,0.0090982905,0.0035955245,-0.0031950613,0.056145497,-0.026021454,-0.004655743,-0.032935925,-0.01279177,0.0034860452,0.0059579685,-0.0225066,-0.008061119,0.00593492,-0.00082037307,0.027773121,-0.023048233,0.011074676,0.0018409776,-0.011558689,0.006021351,-0.024108453,-0.013944181,-0.009530445,-0.010901814,-0.0017156529,0.009109815,-0.020098059,-0.01186984,0.018715166,-0.031161211,-0.0062633576,-0.0063325022,-0.011892889,-0.020985417,-0.027427398,0.0094612995,0.008752567,-0.06679378,0.026367178,0.050567824,-0.019003268,-0.013621506,0.0013771319,0.007594393,0.06720865,-0.016064618,-0.078041315,0.03104597,-0.044851862,0.017032644,-0.020593597,0.037499476,-0.024292838,0.01808134,0.007882495,0.00032015436,0.0050302767,0.007801827,0.013667602,-0.022610316,0.014001802,-0.00394701,0.0029962703,0.0019562189,0.025007334,0.026551565,-0.007127666,0.04540502,-0.019153083,0.00048437304,0.0013980194,-0.015038972,0.014969828,0.013298831,0.013287307,-0.003972939,-0.0260906,0.021457905,-0.000055414795,0.016306626,-0.013298831,-0.0006748811,-0.010878766,-0.014670201,0.03222143,-0.0052146628,0.02399321,-0.017205507,-0.011800695,0.015834136,-0.0010393313,0.002507936,0.017701043,-0.031760465,0.010181557,-0.015868708,-0.033466034,0.028994678,0.002502174,0.013079872,-0.024062356,0.030077944,-0.03625487,-0.002706727,-0.013540837,0.03339689,0.017977621,-0.008170599,0.013840464,0.018911075,0.021158278,-0.019072413,0.04706449,-0.010619474,0.036393162,0.0020584953,0.015223358,-0.012284708,0.01343712,-0.009858882,-0.013321878,0.016214432,0.02687424,-0.007098856,-0.0052838074,0.012434522,0.0018294535,0.014543436,-0.030446716,-0.008458702,0.037476428,0.009455537,0.0035897624,-0.016882831,-0.0155690815,0.006107782,-0.053794578,0.02080103,-0.007317814,-0.023647487,-0.050429534,-0.02191887,-0.022817751,-0.008475988,0.024085404,-0.0033160646,0.023877969,-0.022022586,0.013125969,-0.021227423,0.0066436534,-0.001685402,-0.012054226,0.014566483,0.036024388,0.03199095,-0.020317018,-0.018703641,-0.023901017,0.032774586,0.0032757302,0.007796065,0.01455496,-0.0022832155,-0.012572811,0.022437455,-0.021676863,0.0006143795,-0.022160877,-0.020777982,0.014163139,-0.010279512,0.015073544,-0.0005470354,-0.008136027,-0.05960273,-0.0076808236,0.002857981,0.00887357,-0.018749738,-0.030308427,-0.0031403217,-0.002528103,-0.00991074,-0.008475988,0.007807589,-0.042316556,0.037107654,0.007191049,-0.0006024952,-0.0034313058,0.009449775,0.04319239,-0.026136696,-0.00054055307,-0.008297364,0.018507732,0.002866624,0.011558689,0.01755123,0.00890238,-0.042593136,-0.052734356,-0.007225621,-0.014923731,-0.031944852,-0.006320978,-0.0019778265,-0.00613083,0.0076808236,-0.008112978,-0.03300507,0.019348992,0.0106713325,-0.032060094,0.015776515,0.011115011,-0.014831538,0.007404245,-0.0015413506,-0.006136592,0.043768596,-0.012549763,0.0333047,-0.039020658,-0.013517789,-0.00085782644,-0.043330677,0.009541969,0.008602753,0.011892889,-0.032774586,-0.008475988,-0.0047652223,0.027588734,-0.0391359,-0.02127352,0.047387168,-0.008049595,0.013736747,-0.010746239,0.019279847,0.025030382,-0.020559024,0.021907346,-0.019533377,0.016145287,0.019083938,0.034364916,-0.01422076,0.019683192,0.00046852737,0.023670536,-0.033258602,-0.0123653775,-0.015419268,0.008464464,-0.023647487,-0.00018366562,0.01069438,0.03535599,-0.012446046,0.021826677,-0.025445249,-0.025353057,-0.06278339,-0.02191887,0.02146943,-0.036831077,-0.039181996,-0.0034485918,0.037891295,-0.023198048,0.01265348,0.02830323,0.02178058,0.052872647,0.010832669,0.001828013,-0.046280853,-0.038951512,-0.028602857,-0.010521518,0.02698948,0.01192746,-0.0059061097,-0.0005621608,-0.018231152,0.018991744,-0.013310355,-0.0048113186,0.016986547,-0.045566358,-0.016145287,0.0036963604,-0.011812219,0.015995475,0.04081842,-0.012630432,0.004148682,-0.014670201,-0.009242342,-0.009006097,0.006701274,0.013909609,-0.00016349841,0.008913904,0.023970162,0.027980555,0.023313288,0.0062979297,0.012399949,0.017689519,-0.0076001547,0.0026678331,-0.00635555,0.032129236,-0.023359384,-0.019510329,-0.028510664,-0.022610316,-0.007317814,-0.0021031513,0.004923679,-0.0056727463,0.006015589,0.0059522064,0.02133114,0.03611658,0.017862381,-0.03943553,0.034065288,-0.012446046,-0.043653354,-0.038513597,0.032705445,-0.0009687461,-0.01150683,0.013010727,-0.014992876,-0.01027375,0.019153083,0.01813896,0.017839333,0.006488078,0.01889955,-0.031898756,0.0020570548,-0.018196581,0.033696517,0.0054681934,0.008689184,0.014140091,-0.00080668816,-0.01766647,0.0027974793,-0.022345262,-0.0009817107,0.03694632,-0.01080386,0.026021454,-0.0035148556,0.0033996145,0.02040921,0.0005268682,0.00887357,-0.0042149457,0.049415413,-0.017147886,-0.036324017,-0.018692117,-0.024085404,0.016606253,-0.027934458,0.02894858,0.022529649,-0.0130453,-0.024108453,0.0039988686,-0.030654151,0.020501403,0.025122574,-0.022633364,0.0039815824,-0.0057649394,0.004442547,-0.021308092,0.06158488,-0.0059752543,-0.003860579,0.04798642,0.022656413,0.018369442,-0.005442264,0.048631772,-0.010936387,-0.026159745,-0.00582256,0.0049726563,0.013552361,-0.011351255,-0.009029145,-0.0060847336,-0.011915937,0.013414072,0.026159745,-0.03146084,-0.01069438,0.018945647,-0.0054220967,0.024131501,-0.016709968,-0.03222143,0.034341868,-0.014451242,0.0012647718,0.046903156,0.01080386,0.036900222,0.016283577,0.025860118,-0.027335204,0.011040104,-0.004661505,-0.02329024,0.00394701,-0.04148682,0.008101454,-0.015995475,-0.010613712,0.0031662511,-0.0254222,-0.019383565,-0.027312156,-0.060616855,-0.032682396,-0.026597662,0.004655743,0.00167964,0.012526715,-0.042431798,0.024753803,-0.009063718,0.0007170161,0.037338138,-0.002469042,0.000618701,-0.03613963,0.020916272,-0.022944516,0.00026973637,0.013287307,0.029593932,0.027634831,-0.01455496,-0.003065415,0.05112098,0.016076142,-0.022402883,0.020962369,0.0049784184,-0.004091061,0.031161211,-0.01480849,-0.024892092,0.029709173,0.032889828,0.015834136,0.002804682,0.012169467,0.024200644,-0.048631772,0.05531576,0.026897289,-0.011351255,0.0040219165,-0.013218162,0.040196117,-0.017401416,-0.027611783,0.018150484,0.0039066756,0.0069029457,-0.00652265,0.016214432,-0.010798098,-0.017574279,-0.011178393,0.041025855,0.040357456,0.020824078,-0.012042702,0.022483552,0.0053731194,-0.015995475,0.013114445,0.008890856,-0.0072083347,-0.049277123,0.031414744,-0.018427063,-0.01898022,-0.044921007,0.006228785,-0.053379707,-0.025191719,-0.0052060196,-0.008164837,0.04028831,0.025007334,0.022771655,-0.045773793,-0.025514394,0.029524786,0.01245757,0.004252399,0.011437686,0.008268554,0.015073544,0.04123329,-0.00495537,-0.009968361,-0.0031892993,-0.017827809,-0.0042984956,-0.021089133,0.016145287,-0.018484684,0.019210702,0.008378033,-0.015269455,0.005139756,-0.0033938524,0.021953443,-0.000657955,0.0018496207,-0.0046355757,0.012837866,-0.028533712,-0.03812178,-0.042708375,0.024845995,-0.018553827,0.024707707,-0.007703872,-0.0012798972,0.002306264,-0.012561287,-0.011846792,-0.04093366,-0.04093366,0.022345262,0.0073581487,0.0001937492,-0.01573042,-0.02133114,-0.013863512,-0.002306264,-0.005410573,-0.0038000774,0.009213531,0.00007409647,-0.024753803,-0.015154214,0.028372375,-0.036370113,-0.042823616,-0.007185287,-0.013137493,0.008199409,0.021100657,0.0074618654,0.018173533,0.0011192799,-0.010112412,-0.011800695,0.009369107,-0.00077787787,0.013160542,-0.016790638,-0.02712777,-0.024799898,-0.034871977,0.016790638,0.021907346,0.008182122,0.042362653,-0.025998408,0.0280497,-0.016917404,0.0051916144,-0.0007930033,-0.025399152,-0.04932322,0.0020873055,0.022644889,-0.039735153,0.0036733123,0.02597536,0.03955077,-0.016352722,0.013414072,0.01780476,0.013448644,0.027611783,0.011345493,0.032013997,0.0010213249,-0.003745338,0.020167204,-0.04471357,-0.023209572,0.005243473,0.00062194216,0.018542303,0.020697314,0.01147802,0.034065288,0.0077730166,-0.010037506,-0.0050936597,-0.013540837,0.001964862,-0.032751538,-0.0144166695,0.0010688618,-0.008136027,0.015488413,0.028787244,-0.0221724,-0.0027585854,-0.019521853,0.02080103,-0.016790638,-0.012930059,-0.0116969785,0.007525248,0.013229686,0.001976386,0.007323576,-0.01525793,0.0026044503,-0.0024272671,0.012895486,-0.019106986,0.0023826112,0.023532245,0.013955705,-0.010060553,0.013506264,-0.011184155,0.018957172,0.007525248,-0.006528412,0.004750817,-0.008383795,0.017689519,-0.01200813,0.01839249,-0.04058794,-0.020570548,0.01382894,-0.026274987,0.028879436,-0.0153270755,0.021423332,-0.02516867,-0.019867577,0.029547835,0.054900892,0.0016393056,-0.025399152,-0.007577107,-0.016087666,-0.02113523,-0.012768721,-0.005540219,-0.00020149197,0.0028464568,0.011051628,-0.03678498,0.0057678204,0.027957506,-0.035909146,-0.027611783,0.024707707,0.0068568494,0.018231152,-0.012895486,0.045335874,-0.024131501,0.0034169005,0.026067551,-0.0035782382,0.010198844,-0.047387168,0.025330009,-0.0084932735,-0.014877634,-0.009115576,0.0055488623,0.01923375,-0.0002124759,0.026182793,0.012480618,0.026758999,0.0128493905,-0.0028939939,0.026159745,-0.016975025,-0.016156811,0.022737082,0.0072486694,0.010752001,-0.0076520136,0.016859783,-0.0064592673,0.008666135,-0.0029372093,-0.029755268,-0.016110715,0.011639358,0.01447429,-0.028510664,-0.011189917,0.041555963,-0.02399321,-0.039712105,0.0060328753,-0.00890238,-0.011668168,0.03664669,0.022679461,-0.0009745081,-0.011616309,0.023025185,-0.039181996,0.013056824,0.0015845661,0.023901017,-0.034065288,0.01592633,0.0011149583,-0.0018049647,-0.0069029457,0.05181243,-0.010700142,-0.0010868682,-0.04293886,0.005718843,-0.0016335435,0.009565017,0.037522525,0.030331476,-0.011846792,0.023693584,0.022241546,0.003258444,0.0050936597,-0.007093094,-0.021826677,0.016882831,-0.022690985,-0.030769391,-0.029939655,0.0010249261,-0.057712775,0.0073581487,-0.009795499,-0.03759167,-0.00090464315,0.026274987,0.005796631,-0.024085404,0.0025338652,0.018185057]},{"id":"interface-GatewayMessageReactionRemoveAllDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveAllDispatchData\nDescription: MESSAGE_REACTION_REMOVE_ALL — message_id, channel_id, guild_id?\nProperties: channel_id: string, guild_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveAllDispatchData"},"embedding":[0.05379481,0.020918878,0.0046062106,0.043508403,-0.0061754244,0.012684979,-0.047040626,0.0014379491,-0.01254178,-0.009779247,0.024964228,-0.040906966,0.018186178,0.017112192,0.046730362,0.008019102,0.006622919,0.017124124,-0.0047673085,0.08725547,-0.025202893,0.034343712,-0.013210039,0.017637251,-0.029093111,-0.0071479795,0.03114562,0.024916496,-0.0067064515,-0.018329376,0.038902193,-0.029928435,0.06057286,0.011658724,-0.0070226807,0.01306684,-0.048687406,-0.005274469,-0.031551346,-0.001175419,0.00260591,-0.0050805546,0.022828188,0.015369945,-0.04391413,0.022517925,-0.029594306,-0.0001942872,-0.009033423,-0.0070644473,-0.026515543,-0.005987477,0.007434376,0.09689748,0.00087858096,-0.04377093,-0.01785205,0.0035710065,-0.005897978,0.031432018,-0.03620529,-0.0070405807,0.003860386,-0.0031980942,0.01501195,-0.014403357,-0.03477331,0.031169485,0.037183814,0.031312685,-0.019594293,-0.044749454,-0.005432584,0.00846063,-0.00080250687,0.009474951,-0.022553725,-0.042362817,0.02014322,-0.03403345,-0.0017810282,0.043890264,-0.050930843,-0.066014394,0.0061515584,0.0019108016,0.0012380682,-0.004973156,0.002999705,0.04107403,0.006945115,0.022780456,-0.07212418,-0.010835335,-0.032171875,-0.07976142,0.019677827,0.0014036412,-0.044940386,0.048878334,0.068687424,-0.07689746,-0.030883089,-0.012195718,0.0039051357,-0.022935586,-0.016145602,0.028210055,-0.029331775,-0.023627711,-0.027446331,-0.013842498,0.007315044,0.013186173,-0.02548929,0.007267311,0.03231507,-0.018400975,0.010232708,0.0026297763,-0.035393834,0.009612182,0.031575214,-0.018914102,-0.049832992,-0.0056175482,0.010119343,-0.034128916,-0.03852033,0.0039946344,0.05517906,0.0057338965,0.0046778093,-0.010531038,-0.004292964,0.0055429656,0.029785236,-0.025107427,-0.035847295,-0.010238675,0.008806692,0.022076396,-0.015954671,0.05379481,-0.05140817,-0.017804315,-0.015107416,-0.0020972576,0.05680197,0.003224944,-0.04997619,0.03911699,-0.017291188,-0.011348462,0.023269717,-0.02040575,0.028663516,-0.012267317,0.0036217223,-0.026682608,0.016861593,-0.074558556,-0.022565657,0.006670652,-0.03976138,0.0024746447,0.00986278,-0.00033282407,-0.02778046,0.0073687434,0.012565646,-0.035011973,-0.05226736,-0.04615757,-0.052840155,0.015250614,-0.03515517,0.009928412,-0.04062057,-0.027661128,0.042768545,-0.0026790006,-0.0218974,-0.106062174,-0.048759006,0.0019480928,-0.033007197,-0.011503593,-0.023186183,0.004636043,0.0022374727,0.02594275,0.026300745,0.02354418,0.023281649,-0.055322256,0.003988668,-0.01474942,0.0061634914,-0.042911742,0.03140815,-0.0009449593,0.06463014,-0.01846064,-0.018221978,-0.022804322,0.006139625,-0.033293594,0.01280431,0.005453467,0.025465421,-0.0327924,-0.0004933627,0.0019689759,-0.035011973,-0.006915282,-0.07293564,0.019773291,-0.009570416,-0.00547435,-0.043556135,0.018186178,0.057374764,-0.026014348,-0.010578771,0.02482103,0.0073687434,0.0051790033,-0.037685007,0.007052514,-0.019212432,-0.00793557,0.006974948,-0.042911742,-0.009397386,-0.004451079,0.019045368,0.04002391,0.022064464,-0.04214802,-0.0006671398,-0.037159946,0.0093377195,0.00520287,-0.014367558,-0.0077446387,0.0383294,-0.004322797,-0.040501237,0.017708851,0.021837734,0.05503586,-0.01583534,-0.012058486,-0.01231505,0.011306696,0.032171875,0.0031921277,0.020799546,0.037517942,0.04405733,-0.004853824,-0.02205253,0.02751793,-0.019451097,0.026515543,0.061288852,0.014116961,-0.049451128,0.027112203,-0.0008711227,-0.053031087,0.049737524,-0.03844873,0.0047762585,0.0065095536,0.03646782,0.0045077614,0.012863976,-0.029116977,-0.025799552,-0.0017720783,0.04286401,0.03245827,-0.023782844,0.0027520913,0.0017571619,0.036324624,0.016515533,0.021097876,-0.027207667,-0.008377098,0.020620547,-0.02863965,-0.013007174,0.036372356,0.0051909364,-0.01714799,0.011616958,0.026014348,0.033866387,0.003156328,-0.014856818,-0.062052574,0.021587137,-0.009504784,0.016109804,0.005644398,0.011867555,0.009749414,0.0060769757,-0.022183796,-0.029021513,-0.004934373,-0.051312707,-0.04799528,-0.0028714233,0.034653977,0.013842498,0.031097887,0.014486889,-0.0016154553,-0.0007253141,-0.04463012,-0.028615784,-0.040668305,-0.002553702,-0.04859194,0.029451108,0.061384317,0.03138428,-0.044295993,0.033723187,0.008090701,0.058043025,0.02560862,-0.07546548,0.038830593,0.013436769,0.00036284348,0.07264925,0.042696945,-0.014856818,-0.009904546,0.0032070442,-0.030477362,-0.011115764,-0.019343697,0.011145597,0.014868752,-0.0020092505,0.0036754217,-0.047183823,-0.0960383,0.036229156,-0.03403345,0.0076312735,0.02560862,-0.0071599125,0.041837756,-0.009982112,-0.0067959502,-0.0026506593,-0.0025253608,0.041050166,0.010954666,-0.050310317,-0.008311465,0.0038514363,-0.006724351,0.00027558205,-0.037231546,-0.043508403,0.009850847,-0.002711817,-0.021658735,-0.028544184,-0.0059427274,0.018436775,-0.014057295,0.010399773,0.020978544,-0.0020599666,0.011658724,-0.0016855628,-0.0018571023,-0.044415325,0.0109129,-0.0245585,0.028186189,0.041121766,-0.02699287,-0.00795347,-0.008824592,0.005596665,-0.00024034186,0.0051760203,0.041837756,0.02942724,0.015000016,0.038544197,0.030525094,0.002185265,-0.014391424,-0.028066857,0.052553758,-0.023878308,0.006670652,0.03568023,-0.016801927,0.051646836,0.04541771,0.016825795,0.043818664,0.005707047,-0.04930793,-0.0020062672,0.00851433,-0.015716009,0.014689754,0.012494047,0.03365159,0.0026566258,-0.0056026317,0.008311465,-0.026634874,0.02837712,0.013198106,0.014367558,-0.039474983,-0.11360394,0.012028653,0.07078767,-0.030214831,0.049689792,-0.0015125315,0.02159907,-0.0054475,-0.05947501,-0.0078759035,-0.036634885,-0.0073389104,-0.0071778125,0.029212443,-0.023448713,0.014761353,0.021491671,-0.018389042,0.0326492,0.006461821,-0.030572826,-0.01931983,-0.021503603,0.04252988,-0.018389042,-0.035011973,0.0047792415,0.06844877,0.011378295,0.0048180246,-0.0012656637,0.006628886,0.0030966622,0.06844877,-0.02332938,-0.0025059695,-0.024081172,-0.0010717494,-0.020429617,0.0437232,-0.03575183,-0.0030698124,0.020584749,0.029737504,-0.02073988,-0.04806688,0.0037619374,0.03964205,0.046133704,0.010537005,0.00435263,0.025823418,-0.03582343,-0.047183823,-0.011402161,0.05398574,-0.033818655,-0.017553719,-0.022804322,0.03937952,0.01935563,0.01317424,-0.015322213,-0.01175419,-0.01231505,-0.008424831,0.033317458,-0.02377091,0.03396185,-0.013460635,-0.011121731,-0.03642009,0.0034099084,-0.03732701,0.02275659,-0.00022244208,-0.03706448,-0.030835357,-0.048281677,-0.016658729,-0.0048597907,-0.012362782,-0.0327208,-0.039236322,-0.0031622946,0.0190931,-0.052171897,-0.017458253,-0.018210044,0.01501195,-0.013544168,0.014355625,0.028782848,0.0073687434,0.004540578,0.0051491703,0.016909327,-0.07188552,-0.00902149,0.027828194,0.035250638,-0.025513155,0.018961836,0.05221963,0.021837734,-0.027040603,-0.020453483,0.022732722,0.03852033,-0.016837727,0.01119333,-0.012040586,0.009761347,-0.026515543,0.017959448,0.0038544196,0.008377098,0.06673039,0.008108601,0.003204061,-0.0190573,0.0049015568,-0.0057846126,0.0045972606,-0.012291183,-0.0014662904,-0.01594274,-0.027446331,0.03608596,-0.005686164,0.0022568642,-0.030190965,0.0050596716,-0.020835346,-0.036754217,0.014916484,0.020202886,0.031455882,-0.0055608656,-0.016515533,0.018054914,0.04279241,-0.014498823,-0.00355609,0.026253013,0.035083573,-0.006473754,0.025656354,0.0078759035,-0.038138468,-0.010417673,-0.05522679,0.0381146,0.010692136,-0.03451078,-0.0031115788,0.001930193,-0.02167067,-0.05083538,0.012553713,-0.007577574,-0.0076730396,0.033412926,0.026754206,-0.01935563,0.010101443,0.023866376,0.0073508434,0.013949896,0.0191289,0.041169498,0.0381862,-0.043556135,0.008735093,0.038854457,0.041646823,0.028973779,0.0031473783,-0.042553745,0.022816254,0.0013253296,0.02264919,-0.02380671,-0.0041139666,-0.032076407,-0.008651561,-0.012458248,0.0075119417,0.0061754244,-0.012517914,-0.018615773,0.019307898,0.008054902,0.0083651645,-0.0013767915,0.029474974,-0.04069217,-0.02692127,0.033007197,-0.01760145,0.0068257833,-0.025179027,-0.02377091,-0.037565675,-0.0048896237,-0.033317458,0.038735125,-0.006378289,-0.0070107477,-0.008204066,0.020954678,-0.013949896,0.027446331,-0.0026849671,0.016217202,-0.01760145,0.017708851,-0.02017902,0.004865757,0.004844874,-0.0024209453,-0.017756583,0.04155136,-0.013830564,0.0033621755,0.006843683,-0.02634848,0.06720771,-0.005023872,-0.03317426,-0.0014006579,0.013914097,0.009415285,0.007136046,0.0012067436,0.0007413493,-0.030405762,-0.0076432065,0.008299532,0.019677827,0.031432018,-0.0041587157,0.037303146,0.014379491,0.01306684,-0.0007264328,-0.012153951,-0.004122916,-0.0062171905,0.0030340129,0.027422465,0.006348456,-0.009128888,-0.0045167115,0.0056115813,0.01893797,0.082195796,-0.02613368,0.020167086,0.0051223207,0.02010742,0.0013268213,0.005065638,-0.0026446928,0.052458294,0.0060232766,0.0300239,0.023436781,0.011527459,-0.0273986,-0.025465421,0.00847853,0.007458242,-0.0055310326,0.022971386,-0.016145602,0.030906957,0.011795956,0.03274467,-0.0022255394,-0.026443943,0.027661128,-0.04582344,-0.024176639,-0.010960633,0.0023150383,-0.012696912,0.0026342513,0.022852054,-0.021348473,0.009242253,0.021503603,-0.010572804,0.036515553,0.0055011995,0.0032995264,0.003708238,0.024797164,-0.020322219,0.0327924,-0.024427235,0.03062056,-0.008717193,0.029116977,-0.008627695,0.00923032,0.036706485,0.016050138,-0.00354714,0.000079943035,-0.0008964807,0.011903355,0.035059705,-0.032625336,-0.029379508,-0.0052625355,-0.004701676,-0.022100264,-0.014844885,0.03995231,-0.020871146,0.0072016786,-0.051503636,0.027040603,-0.028973779,-0.011026265,0.027828194,-0.015930805,-0.021384273,0.027899792,0.016050138,-0.013007174,0.00009276189,0.050358053,-0.017732717,0.020047756,-0.050262585,-0.003517307,0.040644437,0.012696912,-0.012553713,0.013341304,0.020596681,0.0028654567,0.0191289,-0.016634863,0.029164711,-0.009898579,-0.012589513,0.014832952,-0.01692126,-0.0070584803,-0.013758965,-0.01692126,-0.005074588,0.024797164,-0.005014922,-0.0063961884,0.013436769,-0.021253007,-0.00025693644,0.0050507216,-0.006640819,-0.006521487,-0.02354418,0.011509559,-0.0010866659,-0.0652984,0.04727929,0.04069217,-0.031312685,-0.006062059,0.03391412,0.006742251,0.0873032,0.006622919,-0.070692204,0.029188577,-0.020584749,0.019821025,-0.02205253,0.061527517,-0.020548949,0.01800718,-0.0077565718,0.0030757792,-0.0034516745,0.018090712,0.025035828,-0.02287592,0.0218616,-0.022422459,0.010554904,0.018949902,-0.0054475,0.022243463,-0.0050000055,0.0464201,-0.012887843,-0.026706474,0.02871125,-0.01741052,0.010501205,0.008878292,0.020835346,0.0019510762,-0.021384273,0.008168267,-0.016646797,0.0072971443,-0.018448709,-0.0052685025,-0.022923654,-0.011348462,0.013806698,0.02489263,0.014928417,-0.01785205,0.0041169496,-0.0024164706,-0.023257783,0.034009583,0.0012052519,-0.018365176,-0.01965396,-0.020274486,-0.034653977,0.026825806,0.023532245,0.011581158,-0.0408115,0.0356325,-0.03649169,-0.03627689,0.0024477951,0.012213618,-0.008961824,-0.005695114,-0.0068138503,0.012553713,0.009373519,0.015202881,0.049021535,-0.002813249,0.021062076,-0.010483305,0.03343679,-0.037207678,0.013866364,-0.003415875,-0.027016737,0.0040453505,0.02227926,-0.019630093,0.0112350965,-0.0038633696,0.0017362788,0.0025522106,-0.009063256,-0.0029639055,0.03515517,-0.012052519,-0.0024970195,-0.018066846,-0.027756594,-0.020525083,-0.0437948,0.012732711,0.012482114,-0.016539399,-0.04417666,-0.008245832,-0.023902174,0.0015192439,0.036897417,0.021396205,0.035537034,-0.012887843,0.020560883,-0.02863965,0.0067303176,-0.005181987,-0.02949884,-0.008251799,0.030501228,0.033221994,-0.009886646,-0.03436758,-0.029451108,0.027422465,0.011569225,0.025107427,0.046801962,-0.012088319,0.013353237,0.021205274,0.032696933,-0.005665281,-0.018400975,-0.014618155,0.012255384,-0.014630088,0.01695706,-0.014737487,0.0033591923,-0.059284076,-0.013472569,-0.009492851,0.013019107,-0.042720813,-0.016467799,0.016348466,-0.017291188,-0.009212421,-0.0025000027,-0.02804299,-0.029665904,0.027828194,-0.0006880228,-0.014403357,0.008812659,-0.0021032244,0.058424886,-0.018747037,0.017517919,0.014248226,0.0077565718,-0.0023582962,0.016718395,0.009540583,0.019343697,-0.043174274,-0.03976138,-0.006819817,-0.020429617,-0.025107427,0.0301671,-0.008866359,-0.0072911778,-0.0030906955,-0.022661123,-0.02811459,0.008019102,-0.0061933245,-0.029116977,0.040405773,0.01890217,-0.0047285254,0.0026312678,-0.010584737,-0.016264934,0.01662293,-0.0056414143,0.028353253,-0.02541769,-0.0032726766,0.0011776565,-0.016658729,0.03949885,0.006933182,0.011366361,0.008293565,-0.020692147,-0.0035023906,0.023066852,-0.041408163,-0.0019197515,0.028520318,0.029594306,0.018508375,-0.020250618,0.037183814,-0.00030970352,-0.0026954086,0.03642009,-0.035918895,0.012696912,0.021109808,0.018508375,0.0058233957,0.014904551,0.0163962,0.031455882,-0.02548929,-0.02235086,-0.007500008,0.0007361285,-0.016157536,-0.014367558,0.019522695,0.06887836,-0.025369957,0.015668275,-0.026253013,-0.008048935,-0.047899816,-0.027016737,0.014653955,-0.024069238,-0.04465399,-0.013054907,0.017935582,-0.02156327,0.027804326,0.04503585,0.012028653,0.04451079,0.021109808,-0.015322213,-0.023949908,-0.041432027,0.0014073703,-0.042983342,0.027183801,0.015620543,-0.004322797,-0.013842498,-0.0073090773,0.005035805,-0.034081183,-0.0018824603,0.009045356,-0.040596705,-0.0027133084,-0.0041736322,0.0136157675,0.03073989,0.0109308,-0.03231507,-0.006199291,-0.005265519,0.004030434,0.0034636077,-0.0077506052,-0.00044301958,-0.0043466636,-0.013233905,0.053890277,0.031455882,-0.010680203,-0.0021822816,0.005235686,-0.016372334,-0.0150477495,0.021133674,-0.015059683,0.018914102,-0.019546561,-0.0047285254,-0.023949908,0.0066169524,-0.020011956,-0.02403344,0.00518497,-0.01785205,0.016527465,-0.022064464,0.0054117003,0.030525094,0.003887236,-0.029880702,0.026563276,-0.01038784,-0.021622935,-0.05083538,0.02699287,-0.0011612483,-0.028090723,0.0007417222,-0.02587115,-0.023818642,-0.008066835,0.0074522756,0.018245844,0.027112203,0.0027476165,-0.016074004,0.01695706,-0.019522695,0.04384253,0.01061457,0.024236305,0.0028550152,0.009964212,-0.0030966622,-0.004278048,0.00009290173,0.0027356832,0.0121718515,0.0126491785,0.014594289,-0.0145704225,-0.025704086,0.032959465,-0.02313845,0.01280431,-0.014952284,0.03343679,-0.02235086,-0.00870526,-0.020346085,-0.0076730396,0.03035803,-0.031527482,0.03773274,0.0145584885,-0.029570438,-0.045799576,0.003508357,-0.024773298,-0.0018929018,0.03312653,-0.016217202,0.007965403,-0.01702866,0.0035322236,-0.008526263,0.06744637,-0.018412909,0.002638726,0.041002434,-0.011646791,0.02163487,-0.019021502,0.032076407,-0.019403363,-0.009964212,-0.017326988,-0.011533426,0.017696917,-0.014212427,-0.0019674844,0.013973762,0.0031294785,0.026969004,0.028591918,-0.033221994,-0.012255384,0.028544184,-0.0006913791,0.006974948,-0.014737487,-0.038377132,0.04758955,0.0028744065,0.011569225,0.04859194,0.015799541,0.008019102,-0.008454664,-0.008645594,-0.032935597,0.009892613,0.018114578,-0.021396205,-0.0070883133,-0.043508403,0.037517942,-0.006742251,-0.02930791,0.0053788843,-0.013090706,-0.014045361,-0.032028675,-0.060000066,-0.019331764,-0.017279256,-0.0065274537,0.00735681,0.00846063,-0.037899803,-0.008645594,-0.017494053,0.0058054957,0.028019125,-0.015489277,-0.001014321,-0.029260175,0.0064439215,-0.015632475,-0.004460029,0.025441555,0.0019167683,0.015751807,-0.0006507316,0.010871134,0.03964205,0.004594277,-0.017756583,0.011575192,0.0033025097,-0.018162312,0.030978555,-0.009976145,-0.025751818,-0.012816244,0.025966616,0.02208833,-0.013866364,0.012147985,0.022589523,-0.030883089,0.051264975,0.005026855,-0.026611008,0.0058711283,-0.022422459,0.034128916,-0.012076386,-0.03739861,-0.004952273,0.02268499,0.010161109,-0.005516116,-0.009403352,-0.014140828,-0.021467805,-0.0022762555,0.042434417,0.039212454,0.0028550152,-0.010626503,0.018365176,0.00493139,-0.0044242293,0.0135919005,0.014594289,-0.013782832,-0.043675467,0.005402751,0.0016497632,-0.027064469,-0.040405773,0.006891416,-0.06276856,-0.027350865,-0.0014886651,0.012983308,0.02044155,0.02179,0.005205853,-0.02844872,-0.028138457,0.016634863,0.014498823,0.012756578,0.00062052574,0.0030399796,0.03770887,0.05260149,-0.00435263,0.0066646854,-0.018854436,-0.02844872,0.005405734,-0.007607407,0.01741052,-0.012255384,0.005498216,-0.014844885,-0.019665893,-0.0032995264,0.01569214,0.013090706,-0.0056115813,0.009498817,-0.022923654,-0.008657527,-0.016229136,-0.041980952,-0.038830593,0.018066846,-0.02332938,0.020131288,0.00034568954,0.010513138,-0.0012790886,-0.019737491,-0.011073998,-0.058568086,-0.020871146,0.017887847,0.021241074,-0.013973762,-0.0046062106,-0.009170654,0.0036366389,-0.024582366,0.038066868,-0.0016363383,0.033603854,0.0065274537,-0.030310296,-0.009158721,0.00038559112,-0.02680194,-0.041121766,-0.007583541,-0.0145704225,0.026014348,0.021909332,0.027231535,0.008824592,0.0065095536,-0.012911709,-0.0014498823,-0.014379491,0.018090712,0.013579967,-0.005244636,-0.022207662,-0.004832941,-0.018186178,0.03942725,0.027541798,0.013496435,0.023400981,-0.0041050166,0.017386654,-0.02399764,-0.0059099114,-0.016002405,-0.03305493,-0.039713647,0.013054907,0.021467805,-0.050930843,-0.010525071,0.025513155,0.027207667,-0.011879488,-0.009498817,0.01590694,0.018389042,0.023651578,-0.010471372,0.03389025,0.0048985733,0.018997634,0.0022165896,-0.052362826,-0.026062082,0.00793557,-0.003738071,0.0058353287,0.026372345,0.01310264,0.017124124,0.025823418,-0.015847273,-0.034868773,0.004961223,0.017517919,-0.037374742,-0.018818637,-0.006241057,0.009976145,0.018126512,0.019618161,-0.019379497,0.007816237,-0.0040901,0.03174228,-0.024140839,-0.021408139,-0.019033434,0.013341304,0.0043078805,0.010608604,0.017863981,-0.0070763803,0.009349653,0.007153946,-0.009725548,-0.04326974,0.016742263,0.027207667,0.022899788,-0.0155250775,0.020047756,-0.014427224,0.032410536,-0.00090393896,-0.021241074,0.007541775,0.015632475,0.0016288802,-0.028019125,-0.007649173,-0.0381146,-0.009671848,-0.0016035221,0.0058144457,0.00047173383,0.0012865468,0.02107401,-0.005507166,-0.015119349,0.02426017,0.048186213,0.01166469,-0.015811473,0.0112291295,-0.01527448,-0.021730335,-0.004835924,0.0016691546,-0.009409319,-0.010578771,-0.014367558,-0.025155159,0.0027312082,0.037040614,-0.022482125,-0.03680195,0.03902152,0.0029310891,0.008508363,-0.023269717,0.037565675,-0.058424886,-0.0030817457,-0.014331758,-0.014952284,0.0032846099,-0.010047744,0.044534657,0.0034039419,-0.0040871166,-0.01718379,0.010453472,0.009540583,0.027112203,0.03343679,0.03298333,0.01662293,-0.008860392,0.0083591975,0.024701698,-0.003597856,-0.021730335,0.03398572,-0.00074284093,0.00015736891,0.026038215,0.016205268,0.0068556163,0.00518497,-0.013054907,-0.03897379,0.000035799563,0.0048866402,0.025656354,-0.017124124,-0.023424847,0.048663538,-0.011270896,-0.055608653,-0.0068078837,-0.010507172,-0.019701693,0.028687382,0.025059694,0.0051461873,0.015918871,0.0027819243,-0.054176673,0.005677214,0.002673034,0.011784023,-0.031575214,0.030501228,0.02804299,0.0075716074,-0.02047735,0.04424826,-0.012303117,-0.0033412925,-0.026778072,0.00902149,-0.004973156,0.00952865,0.024284037,0.0383294,0.0007674531,0.007195712,0.03997618,-0.00005411887,0.012828177,-0.0055340156,-0.016801927,0.0010821909,-0.004919457,-0.018448709,-0.020548949,0.004289981,-0.040859234,0.008729126,0.021455871,-0.015000016,-0.020190954,0.013747032,-0.005023872,-0.010966599,0.019928424,0.020727947]},{"id":"interface-GatewayMessageReactionRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveDispatchData\nDescription: MESSAGE_REACTION_REMOVE — message_id, channel_id, user_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string, user_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveDispatchData"},"embedding":[0.05064175,0.02617921,-0.024236035,0.048376698,0.010305977,0.024295641,-0.025606986,0.011837866,-0.00015274185,-0.013983703,-0.0048281327,-0.035668578,0.01032982,0.020147024,0.034023434,0.0062586907,0.016832897,0.021816008,-0.028038934,0.095990434,-0.028205832,0.03779057,0.0063242577,0.02944565,-0.0017881973,0.022030592,0.010252331,0.02980329,-0.01730975,-0.02147029,0.028062778,-0.03225908,0.08888533,-0.010449033,-0.001956586,0.008219747,-0.06008343,0.0017688252,-0.037194505,0.013363794,-0.026679905,-0.03526325,0.011009335,0.028921112,-0.05817602,0.010878201,-0.042892892,0.010222528,0.007951518,-0.0029698978,-0.025940783,0.0099364165,0.01350685,0.09126959,0.0005066559,-0.042606782,-0.0073316093,-0.00072161213,-0.018501882,0.03054241,-0.0255593,-0.020623876,0.00056067435,-0.004667195,-0.007927675,-0.023687653,-0.042177614,0.033832695,0.032783616,0.0127558075,0.0008680208,-0.021148413,-0.0065686447,0.005996422,0.0054629426,-0.009769518,-0.032759774,-0.03361811,0.014865881,-0.049068134,-0.00007432195,0.052596845,-0.049878784,-0.07014502,-0.012064371,0.006634212,-0.020969594,-0.020909987,-0.017643547,0.032378294,-0.002101132,0.014746668,-0.088503845,-0.017381279,-0.015533474,-0.062133897,0.013530693,0.016058013,-0.033117414,0.04322669,0.052263048,-0.0893145,-0.05364592,-0.013483008,0.015330812,-0.023318093,-0.0027940583,0.01865686,-0.044776462,-0.006413668,-0.03361811,-0.0033498898,-0.0005029305,0.008052848,-0.013089605,0.0071349074,0.03743293,-0.044108868,0.010174843,-0.005942776,-0.049068134,-0.013292267,0.040580157,-0.02954102,-0.02374726,-0.0004947346,0.0033767126,-0.035930846,-0.04494336,-0.0035287095,0.035668578,-0.012100135,0.028563472,-0.016212989,0.0012882472,0.0000203617,0.034118805,-0.022423994,-0.02002781,0.0033379684,0.017965423,-0.008833695,-0.016379887,0.03652691,-0.04668387,-0.016892504,-0.035287093,0.0050695394,0.026679905,0.012457775,-0.04558711,0.036932237,-0.02001589,-0.016105697,0.031066949,-0.008487977,0.021255706,-0.008994632,0.0056387824,-0.044561878,0.013721434,-0.09832701,-0.027180599,-0.010395387,-0.034834083,0.0024975156,0.021494132,0.0036389816,-0.011521951,0.008863498,0.026393794,-0.04212993,-0.05002184,-0.024224114,-0.06871446,0.013125368,-0.015235442,0.018334983,-0.03697992,-0.009674148,0.03867275,0.006896481,-0.055171847,-0.08688255,-0.038028996,-0.013840647,-0.027705137,0.010472876,-0.0044347295,-0.009918534,0.0042141853,0.033188943,0.037122976,0.010627853,0.0331651,-0.060846396,0.017428963,-0.045086417,0.013029998,-0.050307952,0.031043107,0.008565465,0.053407494,-0.0070276153,-0.008809852,-0.017679311,-0.00408007,-0.0331651,0.017560098,0.0005543412,0.042249143,-0.025130134,0.010067551,-0.0018373728,-0.06098945,0.007486586,-0.06523344,0.013530693,-0.023675732,0.01975362,-0.048710495,0.02210212,0.06995428,-0.036908392,-0.0057788575,0.02001589,0.0043333983,-0.0128750205,-0.03426186,0.013912175,-0.031853754,-0.0034750635,0.00389529,-0.056316294,0.008857537,-0.016999796,0.025869254,0.013912175,0.027347498,-0.01758394,0.0076713664,-0.0360739,0.011980922,0.0064553926,0.0064494316,0.011486188,0.02763361,0.005093382,-0.024820179,0.025940783,0.040651686,0.04377507,0.008845616,-0.022006748,0.004097952,-0.015616924,0.006580566,0.015986484,0.027490554,0.033713482,0.04422808,-0.028825741,0.000530126,0.04902045,-0.010681499,-0.00075253303,0.06108482,0.028253518,-0.039626453,0.012886942,0.008756206,-0.048710495,0.04520563,0.00042395177,-0.01766739,0.024247956,0.026465321,-0.0051053036,0.0042141853,-0.009960259,-0.016797133,0.00057557604,0.037003763,0.013018076,-0.047184568,0.022948533,0.024438698,0.01595072,0.014901645,0.031305376,-0.026775274,0.00091570604,0.0032366372,-0.0376952,-0.014102916,0.037623674,0.018430354,-0.0135902995,0.009399957,0.021434525,0.02038545,-0.0029296633,-0.016296439,-0.051166285,0.019455587,-0.006830914,0.016820977,-0.0010311938,0.022435917,0.0023037943,-0.0012085234,-0.02708523,-0.028563472,0.0013530693,-0.046183176,-0.015187756,-0.00824955,0.044538036,0.012034568,0.00072533754,0.019896675,-0.005230477,0.0034124765,-0.05235842,-0.027132913,-0.027490554,0.02409298,-0.06418436,0.032664403,0.05445657,0.029707918,-0.04196303,0.023401542,0.021601424,0.06008343,0.032139868,-0.07453206,0.06299223,0.020516584,0.021577582,0.0741029,0.0120405285,-0.013781041,-0.030876208,0.013363794,-0.032211393,-0.022328625,-0.017870052,0.019813227,0.0013225209,-0.019765541,0.0031502077,-0.050880175,-0.09441682,0.044251923,-0.04203456,-0.0012763259,0.010347702,-0.002527319,0.03807668,0.0032098142,-0.0061096745,0.003957877,0.0074269795,0.043179005,0.008577387,-0.0362408,0.008744285,0.020170866,-0.031400744,-0.007856147,-0.039745666,-0.05059406,-0.00039750137,-0.0072183567,-0.014532084,-0.035763945,-0.001105702,0.00007557928,-0.0070395367,0.020087417,0.011951119,-0.0035495716,0.011015296,-0.005507648,-0.0062944544,-0.03686071,-0.0022710105,-0.01730975,0.046278547,0.052119993,-0.043369748,-0.018203849,-0.0012427971,0.0067891893,0.015402339,0.008732364,0.025654672,0.02310351,0.0039221128,0.021339156,0.019586721,0.017607784,-0.002873037,-0.039769508,0.03314126,-0.02472481,0.0058295233,0.025320875,-0.011289486,0.058700558,0.018180007,0.0046075885,0.050689433,0.0010438602,-0.059558894,0.014377107,0.003671765,-0.006360022,0.020147024,-0.0059845005,0.011462345,-0.008315118,-0.010460954,0.020039732,-0.0011884061,0.027967406,0.00026115132,0.022722028,-0.05970195,-0.10147424,-0.008750246,0.06466121,-0.027323656,0.055314906,-0.030780837,0.021732558,0.010073512,-0.056459352,-0.010174843,-0.053693604,-0.0034750635,0.0031561684,0.03342737,-0.013602221,0.00588913,0.014234051,-0.028325045,0.018597253,-0.012207427,-0.034094963,-0.013447244,-0.024212193,0.0224836,-0.035287093,-0.04158155,0.003787998,0.05183388,0.0197417,-0.005302005,0.0033588307,0.001503576,0.018084636,0.07357836,-0.011951119,-0.005510628,-0.040818583,-0.008726403,-0.0060381466,0.04711304,-0.022710105,-0.007313727,0.03562089,0.033999592,-0.023127353,-0.05283527,0.016260674,0.017023638,0.045968592,0.036407698,0.00017909914,0.0514524,-0.01956288,-0.052978326,-0.0011548775,0.04973573,-0.010723223,-0.027752822,-0.02064772,0.044633407,0.03600237,0.008964829,-0.0031412668,-0.012028608,0.010729184,-0.0018731367,0.039197285,-0.05417046,0.019050263,-0.0210292,-0.005844425,-0.019992046,-0.00073465105,-0.034142647,0.012123978,0.0028775076,-0.017369356,-0.009447643,-0.013363794,-0.015819585,-0.006041127,-0.0043900246,-0.015783822,-0.03614543,0.0009894692,0.013876411,-0.039745666,-0.013161132,-0.014210208,0.0029237026,-0.00024475952,0.009930456,0.033689637,0.008130337,-0.01695211,0.0075044683,0.03860122,-0.0737691,-0.01994436,0.03216371,0.033379685,-0.021434525,0.02428372,0.052263048,0.028229676,-0.03235445,-0.027538238,0.013888333,0.036312327,-0.010198685,0.01150407,-0.013065762,0.019407902,-0.020182787,0.018191928,0.013041919,-0.011867669,0.05836676,0.0026226894,0.004050267,-0.025535459,-0.0026390813,0.009477446,0.002029604,0.009715872,0.0021950123,-0.018013109,-0.02510629,0.025034763,-0.008750246,0.011587519,-0.019324452,0.0058295233,-0.022638578,-0.04303595,0.01839459,0.021732558,0.028849583,-0.028873427,-0.01024041,0.00407709,0.03144843,-0.009078082,-0.0084402915,0.020588111,0.034500286,-0.0027880976,0.031305376,-0.0015527514,-0.040127147,-0.02491555,-0.0480429,0.026083838,0.024891706,-0.035000984,-0.008952908,-0.013709513,-0.027895879,-0.052167676,0.014007546,-0.011092784,-0.01468706,0.029684076,0.031519957,-0.008595268,0.011533873,0.012588909,-0.0089827115,0.0018552548,0.005635802,0.041438494,0.013292267,-0.03907807,0.0030667584,0.034643345,0.04944962,0.03216371,-0.014341342,-0.03876812,0.022578971,-0.008368763,0.03697992,-0.01822769,-0.01612954,-0.03600237,-0.019622486,-0.007647524,0.011867669,0.012243191,-0.018239614,-0.024128743,0.03643154,0.0015900055,0.003135306,-0.00588913,0.046063963,-0.028110461,-0.025964625,0.027347498,-0.016022248,0.0026211992,-0.028563472,-0.021601424,-0.043179005,0.00028219988,-0.041724604,0.04041326,-0.022149805,-0.006240809,-0.0024170468,0.01177826,-0.01096165,0.037742887,0.025940783,0.033856537,0.0058384645,0.0045181788,-0.016356045,0.01720246,0.014639376,-0.013363794,-0.009942377,0.04232067,-0.026703747,-0.0043363785,0.0098172035,-0.022412073,0.07543808,-0.013208818,-0.027943565,-0.0071647107,0.03063778,0.009632423,0.010908004,0.014853959,0.015032779,-0.01829922,0.0025153975,0.018704545,0.029660232,0.023961844,0.007641563,0.042010717,0.0039847,-0.0058414447,-0.019217161,-0.015688451,-0.012481618,0.005018874,-0.0015177325,0.0334989,0.0035763946,-0.013840647,0.00089037325,0.02420027,-0.0077488553,0.059320465,-0.019694014,0.025177818,0.0051261657,0.027490554,-0.0084402915,-0.00021346606,-0.016272595,0.042177614,0.01757202,0.037909783,0.023973765,0.023484992,-0.014627454,-0.023902237,0.0040741097,-0.0065269205,-0.01005563,0.02510629,-0.0241049,0.020349685,-0.005352671,0.034953296,0.0018090596,-0.025511615,0.008648914,-0.028110461,-0.022519365,0.0015482808,-0.018644938,-0.00860719,0.007140868,0.032569036,-0.006240809,0.012994234,0.032878987,-0.015295048,0.014603612,0.0010989963,0.014532084,0.013065762,0.04429961,-0.018597253,0.015640765,-0.009537052,0.025082448,-0.0012606791,0.021827929,-0.022912769,0.02085038,0.032116026,0.019217161,-0.000091365706,-0.0067117005,0.003489965,-0.0033498898,0.018370748,-0.028158147,-0.04558711,0.000028406259,0.005158949,-0.011706732,-0.019694014,0.032282922,-0.014400949,0.0070276153,-0.051070917,0.024224114,-0.027514396,-0.011390817,0.01740512,-0.010091393,-0.019658249,0.016010327,0.017023638,0.001685376,0.003135306,0.055505645,-0.016689843,0.014722825,-0.042654466,-0.0042886934,0.011140469,0.005600038,-0.009799321,-0.0052066348,-0.0009499798,0.00066126045,0.02363997,-0.015974563,0.028563472,0.007486586,-0.024748651,0.017750839,-0.026417635,-0.008344921,-0.012100135,-0.024140663,-0.012219349,0.010103315,-0.026346108,-0.0059219133,0.018323062,-0.035024825,0.0011362504,-0.007194514,0.0040919916,-0.024677124,-0.027252128,0.011462345,0.0076952092,-0.07601031,0.05083249,0.046350077,-0.023473071,-0.01657063,0.0255593,0.0012927176,0.07076493,0.0004511473,-0.078060776,0.026679905,-0.047923688,0.023723418,-0.025678514,0.056030184,-0.02853963,0.030756995,-0.000942529,0.0024438696,0.0028328027,0.011641164,0.007140868,-0.024331406,0.016892504,-0.011283525,0.005391415,0.0033379684,0.02582157,0.01938406,-0.0059785396,0.036836866,-0.020373529,-0.020993438,0.0030101321,-0.010198685,0.017881973,0.011808063,0.011104706,0.0030429158,-0.021053044,0.026131524,-0.008458174,0.011021256,-0.016689843,-0.016594471,-0.022710105,-0.012886942,0.016916348,0.0066938186,0.02318696,-0.020969594,0.0001275022,0.0039101914,-0.016737526,0.0149135655,-0.0038893293,-0.014651297,-0.00706934,-0.024867864,-0.039244972,0.027132913,0.015569238,0.020003967,-0.022602815,0.028706528,-0.029278751,-0.031519957,-0.006729583,0.018334983,0.0023619107,-0.013053841,-0.004542021,0.023282329,0.024581753,-0.013089605,0.044561878,0.0059397956,0.03225908,-0.0039191325,0.021231864,-0.03552552,0.0068845595,-0.007003773,-0.011885552,0.0140671525,0.03435723,-0.017548177,0.0065924875,0.0033677716,-0.0010930357,0.0054629426,-0.02455791,-0.01658255,0.033188943,-0.0033647914,0.004300615,-0.022412073,-0.020456977,0.006360022,-0.043918125,0.018060792,0.0046075885,-0.03559705,-0.05669778,-0.024081057,-0.02763361,0.0011198586,0.028754214,0.011420621,0.021303391,-0.01178422,0.014305579,-0.020278158,0.008851577,-0.0071647107,-0.015891114,0.01740512,0.044538036,0.027037544,-0.023735339,-0.029922502,-0.016367966,0.028563472,0.012314719,0.020456977,0.039554924,-0.008392606,0.010753026,0.0164991,0.017345514,-0.0079694,-0.024891706,-0.014794352,0.007391216,-0.014520163,0.01386449,-0.0057043494,0.00076966995,-0.05364592,-0.007808462,-0.005325848,0.005901051,-0.03469103,-0.017297829,-0.005871248,-0.0128631,0.0013359324,-0.0005766936,0.0011355053,-0.046135493,0.030733151,0.012708123,-0.006270612,-0.0027851174,0.020182787,0.044871833,-0.01785813,0.007766737,-0.00036713926,0.025535459,0.010675538,0.010085433,0.0025869254,-0.004023444,-0.033856537,-0.04348896,-0.017607784,-0.0094595635,-0.028825741,0.019097948,-0.0058295233,0.0037462735,0.014162523,-0.00805881,-0.021863693,0.012177624,-0.0069560874,-0.026775274,0.026942173,0.0005908502,-0.01449632,0.014532084,-0.008255511,-0.012600831,0.029827131,-0.0004585981,0.043560486,-0.03132922,-0.023258487,0.004321477,-0.023473071,0.036407698,0.0009462544,0.012553145,-0.014532084,-0.014174445,-0.0032336568,0.035954688,-0.04944962,-0.016606392,0.05264453,0.013709513,0.019717855,-0.014925487,0.032282922,0.008112456,-0.008803892,0.03388038,-0.023365779,0.018561488,0.014997015,0.03559705,-0.0026778255,0.012350483,0.007367373,0.020635797,-0.027228285,-0.009000593,-0.006014304,0.010830515,-0.021708716,-0.0032038535,0.022757791,0.054265827,-0.021684874,0.019515194,-0.022221332,-0.01894297,-0.05407509,-0.022328625,0.012219349,-0.033761166,-0.036407698,-0.008636993,0.03142459,-0.021804087,0.03173454,0.033331998,0.021708716,0.052501474,0.011134509,-0.009793361,-0.033785008,-0.03724219,-0.021005359,-0.019431744,0.032878987,0.018096557,-0.007808462,-0.010848397,-0.014365185,0.008654875,-0.03526325,0.012660437,0.0053854543,-0.040198676,-0.00018589801,0.0026331206,0.0068011107,0.018704545,0.01910987,-0.028897269,-0.004765546,-0.02310351,0.002908801,0.0050963624,-0.0066163302,0.015426182,-0.0026331206,-0.011742496,0.04506257,0.039388027,0.007266042,0.0041724606,0.013375716,0.005406317,-0.010985493,0.013161132,-0.002002781,0.019157555,-0.010806672,-0.027514396,-0.012708123,0.006145438,-0.012576988,-0.010395387,0.0048519755,-0.018561488,0.018346904,-0.0077071306,0.005623881,0.03578779,0.011533873,-0.042725995,0.014639376,-0.010925885,-0.0342857,-0.05192925,0.0233777,-0.0068547563,-0.025940783,0.010174843,-0.016069934,-0.017011717,-0.0008598249,0.012922706,0.020051653,0.019097948,0.01341148,-0.011480227,0.009042318,-0.020611955,0.04429961,0.0076236813,0.011486188,0.007736934,0.0012360914,-0.025845412,0.0037462735,-0.0040174834,-0.011492148,0.02682296,-0.008452212,0.025487773,-0.009721833,-0.011003374,0.03507251,-0.0062229265,0.005334789,-0.008112456,0.027419025,-0.023365779,-0.03163917,-0.018323062,-0.013816805,0.0195748,-0.03907807,0.019181397,0.020170866,-0.027252128,-0.040127147,-0.0032276963,-0.036312327,0.006312337,0.028491944,-0.016475258,0.0077965404,-0.009656265,0.013149211,-0.017595861,0.063516766,-0.018084636,0.005701369,0.0451341,0.004086031,0.019896675,-0.016081855,0.049783412,-0.010764948,-0.006729583,-0.008738324,-0.0001515311,0.023222722,-0.013137289,-0.0063302186,0.0061513986,-0.020302,0.028611157,0.023854552,-0.025344716,-0.012910785,0.036026217,-0.00408007,0.009852967,-0.019288689,-0.03116232,0.039554924,0.011802102,0.013208818,0.04730378,0.01803695,0.025034763,0.0010528011,0.00068175024,-0.032378294,0.017154774,0.02536856,-0.024700966,0.00064002565,-0.050689433,0.026203051,-0.011110666,-0.01632028,0.0140671525,-0.012374326,-0.010168882,-0.036026217,-0.064899646,-0.035310935,-0.021899456,0.004935425,0.006550763,0.015259284,-0.040079463,0.009906613,-0.008052848,0.007105104,0.01993244,-0.011724614,0.003698588,-0.025654672,0.038887333,-0.01223127,0.004130736,0.018692622,0.023675732,0.013041919,-0.0132326605,0.009042318,0.050975546,0.014782432,-0.01822769,0.015116228,0.002527319,-0.014698982,0.028897269,-0.02048082,-0.02363997,0.011438502,0.028801898,0.01558116,0.0023335975,0.01459169,0.028754214,-0.040007934,0.05264453,0.008148219,-0.01848996,0.012672358,-0.027991248,0.035573207,-0.02048082,-0.033570424,-0.0022635597,0.013602221,0.008923105,-0.005680507,0.0041933227,-0.0039161523,-0.02211404,-0.012171663,0.04038942,0.03979335,0.0025392403,-0.013697592,0.015700372,-0.01141466,-0.010729184,0.014508241,0.007629642,-0.005379494,-0.048376698,0.022888927,0.00014780568,-0.017750839,-0.042725995,0.016332202,-0.04992647,-0.036574595,0.004273792,0.0018016088,0.028205832,0.023353858,0.0042171655,-0.03552552,-0.024581753,0.04158155,0.01766739,0.013769119,0.012338562,0.008619111,0.026131524,0.04439498,-0.0021324253,-0.011253722,-0.011361014,-0.022412073,-0.0032634602,-0.026942173,0.010007945,-0.013435323,0.008023045,0.000788297,-0.01630836,0.009167491,0.0097874,0.018251535,-0.0025153975,0.0068011107,-0.02185177,0.0004377358,-0.016141461,-0.03600237,-0.029064167,0.01803695,-0.033665795,0.01585535,-0.0068666777,0.0052573,0.0033409486,-0.018919127,-0.009924496,-0.03986488,-0.03090005,0.02989866,0.013137289,-0.010824555,-0.0014804783,-0.01178422,-0.005698389,-0.020611955,0.013781041,0.0011764849,0.026036153,0.010228489,-0.028444258,-0.0049086018,0.013852568,-0.037146818,-0.04003178,-0.0063182972,-0.0039399946,0.010776869,0.01595072,0.012648515,0.018728387,0.0010043709,-0.009364193,-0.0007801011,0.0007469449,0.008291275,0.011861709,-0.01586727,-0.012410089,-0.01657063,-0.020886146,0.021458369,0.035954688,0.015306969,0.044871833,-0.019276768,0.021780243,-0.026059996,-0.0018984695,-0.019705934,-0.03552552,-0.04902045,-0.007564075,0.025273189,-0.040580157,-0.0069382056,0.0317107,0.035668578,-0.012576988,0.013936018,0.016081855,0.0017360416,0.015891114,-0.0056596445,0.028611157,-0.0030146027,0.0044108867,0.0053437296,-0.04243988,-0.020528505,-0.0047893887,-0.0007186318,0.02318696,0.034476444,0.01024041,0.027991248,0.02038545,-0.016010327,-0.035954688,0.000018429144,0.012445853,-0.037742887,-0.012982313,-0.013375716,-0.003415457,0.030780837,0.026703747,-0.022364387,0.011957079,-0.01777468,0.027299812,-0.012255113,-0.022316704,-0.015688451,0.011623283,0.015354655,0.003008642,0.016391808,-0.014436713,0.010377505,0.002247168,0.0011526422,-0.03988872,0.010037748,0.014973172,0.008857537,-0.012278955,0.01586727,-0.018466119,0.013554536,0.0047119,-0.012422011,0.011551755,-0.006097753,0.02093383,-0.013900254,-0.0015214579,-0.045515582,-0.015736137,0.014174445,-0.006306376,0.018871443,-0.011474267,0.021899456,-0.022507444,-0.0033469093,0.028778056,0.039268814,-0.0022412073,-0.027657453,-0.00048430345,-0.014329421,-0.030208614,-0.006443471,0.0028760175,0.0005107539,-0.00011651223,-0.0052602803,-0.028778056,0.005281143,0.03452413,-0.033045888,-0.033188943,0.030995421,0.0019834088,0.018787993,-0.02247168,0.04079474,-0.040365573,-0.0018865482,-0.004640372,-0.009018475,-0.0034214177,-0.017750839,0.038577378,-0.0032247158,-0.0044526113,-0.0072720023,0.010645735,0.0117901815,0.016427573,0.034476444,0.021768322,0.026775274,-0.0016734547,0.0010036258,0.034905612,-0.016379887,-0.004956287,0.022877004,0.009095964,-0.008666797,0.0050218543,0.016654078,-0.0009276274,0.010192725,-0.00879197,-0.032497507,-0.008774089,0.010496719,0.0096979905,-0.0302563,-0.015926877,0.040723216,-0.013673749,-0.061561674,-0.009262863,0.0049264836,-0.022972375,0.03733756,0.01885952,0.006580566,-0.005582156,0.015378498,-0.054742683,0.011659047,-0.0048013097,0.02356844,-0.036026217,0.022805477,0.00997218,-0.00561792,-0.012910785,0.044800304,-0.015724216,-0.0030503666,-0.032569036,0.010389427,-0.010931847,0.008893302,0.016987875,0.031758383,-0.007057419,0.0023261467,0.03643154,0.0005323613,-0.0017285908,-0.004449631,-0.02682296,0.0066997795,-0.011104706,-0.025773885,-0.021243785,0.0011071921,-0.050498694,0.013781041,0.0026465321,-0.030780837,-0.0133518735,0.017166695,0.001023743,-0.016427573,0.0024900648,0.019372137]},{"id":"interface-GatewayMessageReactionRemoveEmojiDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveEmojiDispatchData\nDescription: MESSAGE_REACTION_REMOVE_EMOJI — message_id, channel_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveEmojiDispatchData"},"embedding":[0.040993445,0.023780346,-0.026706802,0.046039853,0.004427131,0.021694956,-0.018399812,0.010812914,0.0046143546,-0.0028731704,-0.008589267,-0.042329937,0.002334541,0.006423228,0.019321531,0.0028890125,0.013779696,0.02490945,-0.011371706,0.0770096,-0.031200182,0.03569356,0.0011276654,0.045924637,0.013215143,0.021741042,-0.0054122177,0.030393677,-0.00659605,-0.022950798,0.014401856,-0.039150007,0.09871608,-0.02792808,-0.0119938655,0.018192425,-0.060741268,0.0033844362,-0.036062248,0.013007756,-0.028112423,-0.035808776,0.010161949,0.034864012,-0.055118784,0.0057751443,-0.049911074,0.009424575,0.011780718,-0.004669082,-0.020393029,0.021706479,0.018261554,0.072170585,-0.0134916585,-0.04940413,-0.016855933,0.0045020203,-0.03133844,0.03461054,-0.010075538,-0.031177139,-0.0027867593,-0.012466247,-0.0008439488,-0.011043344,-0.055303127,0.031246267,0.02428729,-0.004622996,0.010732263,-0.00682648,0.0063886633,0.004778536,-0.0053402083,-0.015945734,-0.040071726,-0.021637348,0.020070426,-0.06516552,-0.00473245,0.053505775,-0.0437586,-0.07793132,-0.011187362,0.0041390937,-0.020588893,-0.028181553,-0.018411333,0.03173017,-0.0035370959,0.0043724035,-0.097333506,-0.032997534,-0.009436096,-0.060925614,0.011700068,0.0119938655,-0.028204596,0.037053097,0.050924964,-0.07742438,-0.070926264,0.002125714,0.011388988,-0.0071894065,-0.00830699,0.027282877,-0.042790797,-0.009735655,-0.035370957,-0.0010153309,0.00034636466,0.0159803,-0.009770219,0.0029293376,0.03746787,-0.038827404,0.020980624,-0.010910846,-0.05779177,-0.020058906,0.05004933,-0.0263842,-0.025808126,0.019344574,-0.002367665,-0.028642412,-0.046132024,-0.0050089657,0.017973516,-0.006935934,0.022824062,-0.006290731,-0.01365296,-0.002373426,0.03903479,-0.020439114,-0.030393677,0.006912891,0.024425548,-0.0055763987,-0.007535051,0.027144618,-0.046638973,-0.009297838,-0.047929376,-0.008514377,0.017708523,0.012189731,-0.039933465,0.019816954,-0.018123295,-0.014989452,0.0201626,-0.017904388,0.011314099,-0.0007074912,0.0073795114,-0.033366222,-0.006861044,-0.08203297,-0.018860672,-0.014229034,-0.024264248,0.007270057,0.021971472,0.006774633,-0.0014149824,0.00019226478,0.024817279,-0.040532585,-0.055533558,-0.013007756,-0.07594963,-0.0006178396,0.004283112,0.01807721,-0.047745034,0.00830699,0.0442425,0.021959951,-0.06825328,-0.07152538,-0.018733935,-0.008324273,-0.023757301,0.008957955,0.0072642965,-0.007961346,-0.005795307,0.029748475,0.042376023,0.0077309166,0.034241855,-0.059404776,0.02428729,-0.032559715,0.008433727,-0.050233673,0.03267493,0.021049753,0.05871349,0.0028530078,-0.0012198372,-0.031154096,-0.0048707076,-0.042168636,0.0072931,-0.0022135654,0.03871219,-0.045095094,0.018457418,-0.005184668,-0.06760807,0.0007496166,-0.07005063,0.02861937,-0.029356744,0.022674283,-0.051477995,0.024425548,0.076087885,-0.033804037,-0.01001217,0.022294074,-0.0061870376,-0.0143903345,-0.031614956,0.017443528,-0.026729845,-0.005714657,0.0003989314,-0.04926587,0.014505549,-0.0288498,0.016809847,0.023642087,0.030624107,-0.011751914,0.011377467,-0.026914189,0.01512771,0.016325945,0.0031194421,0.011008779,0.022973841,0.0082205795,-0.024379462,0.02730592,0.035094444,0.041546475,0.0051933094,-0.011204644,0.0072585354,-0.024725107,-0.014793587,0.029817604,0.02520901,0.031223224,0.03841263,-0.025162924,-0.007586898,0.04553291,-0.00022178859,-0.009528268,0.048528496,0.038689148,-0.042376023,0.0025649706,0.023238836,-0.052399714,0.05424315,0.018273076,-0.019978255,0.020853888,0.004283112,-0.0101101035,0.003344111,-0.008180254,-0.012973192,-0.0083703585,0.030370634,0.015461833,-0.05051019,0.02762852,0.041776903,-0.0002925377,0.004588431,0.02762852,-0.0068149585,-0.007840371,-0.0046143546,-0.035440087,-0.012454725,0.037444826,0.0350714,-0.0013271311,0.022766454,0.027190704,0.014240555,-0.010599766,-0.014378813,-0.046431586,0.0061179087,0.0016302902,-0.002078188,0.019505873,0.014321206,-0.0053891744,0.011878651,-0.035993118,-0.019920647,0.0029019741,-0.05415098,-0.010847478,-0.0041131703,0.04615507,0.031614956,0.0029811843,0.01676376,-0.008577745,0.0031511262,-0.05585616,-0.048159808,-0.021741042,0.025600739,-0.054335322,0.033642735,0.04857458,0.034103595,-0.044495974,0.018319162,0.040071726,0.046961572,0.026153771,-0.05889783,0.06876022,0.015081624,0.021741042,0.07115669,0.01481663,0.0014481066,-0.035947032,0.02366513,-0.032375373,-0.02258211,-0.010478791,0.021718,-0.007886456,-0.02661463,0.009009801,-0.047606777,-0.099361286,0.05041802,-0.046731144,-0.006693983,0.024886407,-0.00092603936,0.04087823,-0.0033412306,-0.010173472,0.00066284544,0.033366222,0.027789822,-0.0063022524,-0.018549591,0.003989314,0.026292028,-0.035440087,-0.017466571,-0.05161625,-0.052584056,-0.012742762,-0.0023302203,-0.013583831,-0.044035114,0.007051149,-0.011135515,-0.0022409288,0.018226989,0.008589267,-0.015047059,0.013122971,0.013146014,-0.007944064,-0.027052447,-0.005680092,-0.012904063,0.046961572,0.058943916,-0.023596002,-0.026315073,-0.0122358175,-0.006912891,0.02730592,-0.0053661317,0.0134916585,0.022432331,0.0073967935,-0.00090587675,0.013134493,0.036891796,0.0038769797,-0.028895885,0.022628197,-0.031637996,0.008065039,0.028918928,-0.0071087563,0.049542386,0.009516747,0.004118931,0.05608659,-0.0008209058,-0.054565754,0.008076561,-0.008128407,-0.012996235,0.021625828,-0.016590938,-0.007972867,-0.010444226,-0.013871868,0.023031449,-0.011314099,0.025715955,-0.006486596,0.021602785,-0.052722316,-0.08221731,-0.016095515,0.06355251,-0.031315397,0.07060366,-0.042721666,0.018296119,0.014759023,-0.052584056,-0.0013660161,-0.057515252,-0.008186015,0.011463878,0.037513956,-0.011412031,0.0131921,0.001994657,-0.02389556,-0.0009440417,-0.008975237,-0.035278786,-0.013030799,-0.022639718,0.015277489,-0.022616675,-0.039357394,0.012362554,0.045809425,0.01000641,-0.012097559,-0.002078188,-0.016729197,0.019989777,0.07060366,-0.008451009,-0.008497095,-0.05369012,-0.02202908,-0.0061179087,0.04516422,-0.032237116,-0.0021689197,0.04769895,0.043873817,-0.01573835,-0.041477345,0.026315073,-0.01512771,0.050187588,0.042007335,-0.011244969,0.050371934,-0.010282925,-0.058621317,-0.014643808,0.039541736,-0.0023806267,-0.04140822,0.00050478504,0.029195443,0.03018629,0.010928129,-0.011763436,-0.010812914,0.027490264,-0.0010844598,0.034403153,-0.06903674,0.016268337,-0.024540763,-0.00012088558,-0.018733935,-0.012212774,-0.023826431,0.017501136,0.013837303,0.001683577,-0.013307315,0.0017627872,-0.00004120281,0.0069474555,-0.0014718698,-0.025623783,-0.037652213,0.012811892,-0.0014365852,-0.039011747,-0.0175357,-0.016037907,-0.004893751,0.005616724,0.0030474328,0.040786058,0.008629592,-0.014597721,0.0017627872,0.048989356,-0.08078865,-0.015692262,0.026361158,0.03749091,-0.02335405,0.025600739,0.043090355,0.025185967,-0.023734258,-0.021153446,0.012201252,0.033619694,-0.009712612,0.013526224,-0.0028198834,0.016153121,-0.009251753,0.010040974,0.017247664,-0.025416397,0.06037258,0.0032173747,0.016222252,-0.01761635,-0.003925946,0.017985038,-0.0068956087,0.00048462246,0.008635353,-0.015588569,-0.019540438,0.0347488,0.009787502,0.02428729,-0.010709221,0.005328687,-0.015058581,-0.050694533,0.02156822,0.029679345,0.020888451,-0.037191354,-0.010190753,-0.000104593484,0.02040455,0.0017397442,-0.01653333,0.012293424,0.03749091,0.00045833908,0.028365895,-0.0022308475,-0.04228385,-0.026476372,-0.040071726,0.023423178,0.008474052,-0.030301506,0.00010324331,-0.02490945,-0.030923666,-0.04843632,0.022075165,-0.010184993,-0.008785132,0.028020252,0.018111775,-0.0078000454,0.008330034,0.01132562,-0.015335097,0.010484551,0.012062995,0.03822829,0.016625503,-0.037905686,0.012293424,0.028365895,0.03848176,0.015772913,-0.017812217,-0.029057186,0.02234016,-0.013998604,0.035186615,-0.016429638,-0.020381507,-0.043896858,-0.020784758,-0.0035514978,0.015646176,0.0139409965,-0.01365296,-0.019194795,0.03166104,-0.0029667823,-0.012201252,-0.0104384655,0.046984617,-0.014494028,-0.02225951,0.02871154,-0.009257513,-0.0017815096,-0.03933435,-0.020381507,-0.041707776,0.007909499,-0.032167986,0.026522458,-0.023572959,-0.00018407372,-0.0074428795,0.009130777,-0.0045106616,0.043827727,0.019655654,0.04133909,0.0038136116,0.010565202,-0.012224295,0.017132448,0.013203622,-0.0015006735,-0.0066075716,0.028665455,-0.025900299,0.0002351103,0.0016979788,-0.02520901,0.080466054,-0.009476421,-0.027605478,-0.0051645054,0.03366578,0.009395771,0.00947066,0.021948429,0.02497858,0.00094692205,0.000923159,0.01706332,0.025877256,0.023642087,0.0029192562,0.029495,0.010271404,-0.011481159,-0.030693237,-0.024333376,-0.026176814,0.007909499,-0.0073449467,0.029333701,-0.012212774,-0.02001282,-0.009896955,0.032098856,-0.011049104,0.058851745,-0.017443528,0.023261879,-0.0042255046,0.025462482,-0.003655191,-0.003133844,-0.013825782,0.037444826,0.018895235,0.03622355,0.031545825,0.025347266,-0.005469825,-0.0137336105,0.0028141227,-0.014378813,-0.0039057834,0.019413702,-0.019586524,0.016107036,-0.008283948,0.04152343,0.0043436,-0.02497858,0.0067055044,-0.022236466,-0.021833215,0.004911033,-0.019321531,-0.00969533,0.0055908007,0.02281254,-0.0042485474,0.0074428795,0.029287616,-0.022870148,0.00015229963,-0.0063829026,0.01551944,0.021164969,0.049680643,-0.032329287,0.006043019,-0.018031124,0.030232377,-0.0059854113,0.014701415,-0.015047059,0.028665455,0.032536674,0.024056861,-0.010156189,-0.003421881,0.010213796,-0.00020198604,0.0027421135,-0.026706802,-0.053321432,0.010732263,-0.004306155,-0.016544852,-0.016441159,0.023019927,-0.008226341,0.0060142153,-0.046892446,0.01939066,-0.028803712,-0.0107668275,0.012431682,-0.012523854,-0.023411658,0.00970109,0.016325945,0.00387986,-0.011924737,0.060695183,-0.016786804,-0.003188571,-0.03638485,-0.0048591862,-0.001605807,0.0026657835,-0.020531286,-0.0008864342,-0.0050809747,0.004980162,0.035647474,-0.015703784,0.025393354,0.007356468,-0.022789497,0.025692912,-0.033619694,-0.0057232976,-0.011740393,-0.012500811,-0.0027493143,0.013122971,-0.031384524,-0.011746154,0.014517071,-0.03910392,0.0022495699,-0.008813936,0.0047583734,-0.018192425,-0.022547547,0.014574679,0.010369336,-0.07396793,0.025001623,0.050233673,-0.02520901,-0.005778025,0.010467269,-0.008525899,0.06442814,0.00054943084,-0.05949695,0.02474815,-0.053551864,0.028066337,-0.033734906,0.048113722,-0.031522784,0.025093794,-0.00087563286,-0.0056916135,0.006578768,0.009672287,0.010300208,-0.0075696157,0.02428729,-0.014931845,0.013411009,0.000318101,0.018756978,0.016360508,-0.0044040876,0.027421134,-0.02024325,-0.008485573,0.00003841245,-0.011821044,0.012281903,0.011043344,-0.0025304062,-0.006244645,-0.017051797,0.035463132,-0.012097559,0.019563481,-0.01838829,-0.012408639,-0.02838894,-0.0075926585,0.019805433,0.0030589544,0.010104342,-0.020611936,0.0023763063,0.011210405,-0.015588569,0.0003218815,0.0037992096,-0.01055368,-0.008404924,-0.023780346,-0.03686875,0.02599247,0.007131799,0.017720044,-0.020358464,0.03444924,-0.025047708,-0.029771518,-0.016671589,0.023480786,0.0028026013,-0.015600091,-0.007275818,0.0144249,0.020369986,-0.031269312,0.049311955,0.0061179087,0.028918928,0.001170871,0.01607247,-0.034564454,-0.00737375,0.010340533,-0.0017887106,0.008226341,0.04168473,-0.0159803,-0.0059162825,0.0054208585,-0.0072873393,0.0070569096,-0.032260157,-0.027029404,0.036361806,0.010421183,0.015680742,-0.0037387218,-0.030554978,0.0020349822,-0.04214559,0.024725107,0.006763112,-0.0409704,-0.06617941,-0.01520836,-0.027144618,-0.002645621,0.028988056,0.005322926,0.030140204,-0.014090776,0.023158185,-0.021095838,0.008260905,-0.011527246,-0.007339186,0.025485525,0.03629268,0.022835582,-0.017120928,-0.025185967,-0.014666851,0.02543944,0.0014531473,0.01062857,0.023469266,-0.0039691515,0.017362878,0.007321904,0.0058356323,-0.010386619,-0.037997857,-0.013353401,-0.009649244,-0.006377142,0.010363576,-0.00923447,0.007206689,-0.043574255,-0.0122358175,-0.017259184,0.001372497,-0.022639718,-0.024794236,-0.014759023,-0.018745456,-0.0050636926,0.011970823,-0.011544528,-0.057607424,0.046132024,0.012351032,-0.012466247,-0.0066075716,0.03189147,0.04304427,-0.014735979,0.004199581,0.0004475377,0.007223971,0.026015513,0.005245156,0.0013026479,-0.009280556,-0.03749091,-0.04958847,-0.021199532,-0.006492357,-0.019886084,0.022224944,0.0071433205,0.0070108236,0.014885759,0.0032576998,-0.018169383,0.015692262,0.0013357722,-0.0234347,0.026430286,0.0075235297,-0.016164644,0.01381426,-0.0014409057,-0.012189731,0.032329287,0.0005112659,0.049081527,-0.041615605,-0.018226989,0.0086699175,-0.032628845,0.027167661,-0.0017440647,0.019102622,-0.02110736,-0.013629917,0.0014502669,0.040071726,-0.042721666,-0.015219882,0.060464755,0.012811892,0.018054167,-0.013376444,0.023423178,0.010594006,-0.015196838,0.031822342,-0.020830845,0.023077535,0.0116655035,0.043574255,-0.0052883616,0.005034889,-0.0031252028,0.012765805,-0.02972543,-0.015219882,-0.00682648,0.023515351,-0.019886084,0.008727524,0.020496722,0.048205893,-0.02467902,0.03343535,-0.012811892,-0.022754934,-0.050187588,-0.022639718,0.005654169,-0.027167661,-0.035117485,-0.0068034367,0.028918928,-0.026752887,0.020830845,0.017904388,0.017455049,0.047975462,0.010703459,-0.0052105915,-0.037352655,-0.029195443,-0.022593632,-0.0124432035,0.03398838,0.03258276,-0.0011111032,-0.011469638,-0.01792743,0.0086699175,-0.03428794,0.015865086,0.0104960725,-0.029679345,-0.0013861787,-0.0039461087,0.0060948655,0.010334772,0.025393354,-0.037122224,-0.002078188,-0.021729521,0.001481951,-0.0026254584,0.0032605804,0.012466247,-0.0054640644,-0.0055331932,0.04133909,0.038988706,0.014874238,0.007339186,0.015242925,0.0074313576,-0.0045740297,0.008249383,0.0029019741,0.013146014,-0.0113659445,-0.040993445,-0.0066536576,0.0025001622,-0.014079255,0.0026441808,0.014067733,-0.012304946,0.026499415,0.010922368,0.0050924965,0.030071076,0.01210908,-0.050648447,0.02684506,-0.010133146,-0.040140852,-0.053551864,0.023688173,-0.0057751443,-0.022282552,0.013676003,-0.016878976,-0.018180903,-0.0086411135,0.008756328,0.021268662,0.012973192,0.02117649,-0.004671962,0.0049513583,-0.020289335,0.04140822,-0.001931289,0.014378813,0.014401856,0.0022337278,-0.04133909,0.0006678861,-0.007978628,-0.0035428565,0.021234097,-0.022213424,0.026176814,-0.005392055,-0.01109519,0.05097105,-0.003243298,0.012454725,0.0017829498,0.020692587,-0.026798975,-0.031614956,-0.01963261,-0.01629138,0.011498442,-0.03675354,0.014171426,0.012604505,-0.03624659,-0.029333701,0.003995075,-0.04329774,0.0002435714,0.030554978,-0.014010126,0.013272751,-0.0022610915,0.020128034,-0.015196838,0.059865635,-0.026798975,0.00016202088,0.043574255,0.018975886,0.029034141,-0.017881345,0.049219783,-0.010190753,-0.014770544,-0.0002025261,-0.0033095465,0.03567052,-0.008842739,-0.000021434013,0.0044674557,-0.029495,0.02435642,0.020151077,-0.0192524,-0.0064174673,0.034472283,-0.012915584,0.022962319,-0.024817279,-0.030554978,0.031522784,0.008266665,0.004988803,0.03825133,0.007857652,0.02257059,0.000077680015,0.006503878,-0.020784758,0.015957257,0.015772913,-0.015081624,0.008047758,-0.04680027,0.024932494,-0.012201252,-0.020427592,0.0076848306,-0.012039952,-0.019379137,-0.03375795,-0.058851745,-0.0350714,-0.012523854,0.013238186,-0.003989314,0.004841904,-0.033181876,0.010104342,-0.0026830658,0.008168733,0.028780669,-0.0037675255,0.003600464,-0.019805433,0.051155392,-0.016637024,0.0046287565,0.014102298,0.033458393,0.020969102,-0.015795955,0.015899649,0.0583448,0.023146663,-0.017178534,0.016003342,-0.008088082,-0.02025477,0.02530118,-0.016441159,-0.010611287,0.00496576,0.03467967,0.017961996,0.0058990004,0.019540438,0.038113073,-0.03903479,0.056040503,0.0037588845,-0.018780021,0.011147037,-0.014321206,0.02320427,-0.016383551,-0.034241855,0.0023878277,0.010501834,0.006912891,0.00037336812,0.02110736,-0.0014286642,-0.014724458,-0.018180903,0.043459043,0.023400135,0.008364598,-0.00019586524,-0.0030819972,-0.015507919,-0.017051797,0.00985663,0.017869823,-0.0010693378,-0.03979521,0.026407244,-0.005135702,-0.02428729,-0.035163574,0.010375097,-0.05608659,-0.035993118,-0.009459139,-0.000062288025,0.02157974,0.019897604,0.008007432,-0.032260157,-0.00147403,0.02963326,0.0098681515,0.014401856,0.007886456,0.019275444,0.036799625,0.03887349,-0.004833263,-0.0024353538,-0.010052496,-0.016821368,0.002367665,-0.03553226,0.008128407,-0.004928315,0.0038078509,0.0018607199,-0.023918603,0.017570265,0.0037819275,0.013157536,0.004637398,-0.0012925667,-0.013537745,-0.0015496397,-0.020323899,-0.04926587,-0.029587174,0.026706802,-0.023227314,0.009418814,0.0054295,0.00915382,0.0038654583,-0.01761635,-0.0096607655,-0.043482084,-0.032006685,0.02258211,0.0050291284,-0.0024022297,0.0027723573,-0.018987408,-0.010686178,-0.008888826,0.007632984,-0.001994657,0.007967107,0.018768499,-0.032260157,-0.0012407199,0.010634331,-0.04398903,-0.03848176,-0.011181601,-0.007247014,0.009349685,0.016037907,0.009217188,0.008808175,0.0041621365,-0.009407292,-0.013330358,-0.0061121476,0.00550727,0.009862391,-0.026315073,-0.019655654,-0.02769765,-0.025692912,0.020761715,0.04484162,0.021003667,0.045878552,-0.018906757,0.016348988,-0.021211054,-0.009447617,-0.01815786,-0.017812217,-0.051477995,-0.0046575605,0.016786804,-0.03896566,0.0037848079,0.02389556,0.036638323,0.00036256673,0.008065039,0.021360833,-0.0069935415,-0.000822346,0.0005886759,0.016959626,-0.006325295,0.0034506847,0.013399487,-0.036638323,-0.019183272,-0.00760418,-0.002109872,0.026430286,0.03776743,0.0048131,0.019068059,0.011060625,-0.025692912,-0.026061598,0.006175516,0.01311145,-0.042952098,-0.008520138,-0.0114869205,0.0072354926,0.02986369,0.024563806,-0.020070426,0.019068059,-0.018572634,0.023734258,-0.022075165,-0.01596878,-0.011821044,0.003001347,0.017627873,-0.0054727052,0.0096607655,-0.007471683,0.006976259,-0.010956932,0.0042111026,-0.03193756,0.009384249,0.00737375,-0.0051472234,-0.012512333,0.009361207,-0.010352055,0.00551015,0.0015640416,-0.0054295,0.009297838,-0.014263598,0.027328962,-0.015139231,0.00558792,-0.042191677,-0.017097883,0.008681439,-0.0061409515,0.028872842,-0.0064001847,0.019586524,-0.035025313,0.0075753764,0.02645333,0.045279436,-0.0030675954,-0.027328962,-0.0024785595,-0.011210405,-0.02831981,0.00993152,-0.010835957,0.0152890105,-0.0071721245,-0.009297838,-0.041477345,0.00082666654,0.040924314,-0.018342204,-0.025900299,0.026476372,0.005446782,0.022559067,-0.024195118,0.027905036,-0.036891796,0.0053056437,0.0034506847,-0.0041304524,-0.012846456,-0.014378813,0.036477022,0.0016072472,-0.00798439,-0.010409662,0.0037329611,0.008957955,0.02490945,0.022063645,0.011509963,0.03156887,0.005213472,-0.0035572585,0.036039203,-0.024056861,-0.009101973,0.014413378,0.012708198,-0.011688546,-0.0037387218,0.013088407,0.004300394,0.007402554,-0.0021530774,-0.03405751,-0.015415747,0.023826431,0.021464527,-0.033274047,-0.014620764,0.040670842,-0.02102671,-0.051109307,-0.0073967935,0.0032605804,-0.029333701,0.034103595,0.013998604,0.012696677,-0.023411658,0.012546897,-0.05087888,0.024586849,-0.00043781643,0.030531935,-0.046662014,0.019759348,-0.009885434,-0.008278187,-0.010640091,0.036500063,-0.022996884,-0.015104667,-0.033619694,0.0015064342,-0.010248361,0.018572634,0.0041074096,0.029356744,-0.0013206502,0.012132124,0.029034141,-0.005826991,-0.0034276417,-0.009142298,-0.02312362,0.0035803015,-0.01884915,-0.028803712,-0.019759348,0.0011917537,-0.052031025,0.012546897,-0.021948429,-0.033343177,-0.010772589,0.022720369,0.010017931,-0.015530962,0.000869152,0.02661463]},{"id":"interface-GatewayMessageUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageUpdateDispatchData\nDescription: MESSAGE_UPDATE — partial message (edited fields).","meta":{"url":"/docs/typedefs/GatewayMessageUpdateDispatchData"},"embedding":[0.017633533,0.023964461,-0.012612874,0.0308097,0.002596048,0.027013592,0.0013684356,0.022972574,-0.019788742,-0.010812785,-0.0017128405,-0.0024552245,-0.051333174,0.03151994,0.013910898,-0.003499154,0.016837575,0.027650358,-0.014315,0.056672215,-0.021833742,0.0044420585,0.055741556,0.023217484,0.019617304,-0.018686647,0.0041757184,-0.013470059,0.005547215,-0.024282843,0.017927425,-0.01553955,0.049447365,-0.04094898,0.034801736,0.04910449,0.0063248053,0.008461647,-0.018907065,-0.04258988,-0.0129190115,-0.038646825,0.0036399774,0.021858232,-0.044622634,0.008008563,0.011712829,0.01864991,0.0129435025,-0.00023036863,-0.009575988,0.0018215195,0.027552394,0.044426706,0.02816467,-0.0010378069,0.015098712,-0.0021797006,0.030932155,0.0020618376,-0.037446767,-0.013310868,0.0028792252,-0.018111108,-0.0021031662,-0.018245809,-0.03257305,0.03034437,0.02814018,0.005146175,0.003514461,0.005397208,-0.03514461,-0.011376077,0.033307783,0.006239087,-0.021735778,-0.017780479,0.009765794,-0.009349446,0.009324955,0.028434072,-0.08508179,-0.05823964,-0.024405299,-0.00560232,-0.021270448,-0.00013929266,-0.013800688,-0.0053451643,-0.024184879,0.04741461,-0.022972574,0.011278113,-0.028189162,-0.049790237,-0.017045747,0.01018214,-0.020254072,0.009722934,0.047292154,-0.06132551,-0.028825928,-0.022066407,0.021613322,-0.06548898,-0.0024093038,0.015466077,-0.059709102,0.007745284,-0.052067902,-0.038867246,0.0057400824,-0.010390314,0.011829161,-0.022825629,0.037177365,-0.02647479,0.034360897,-0.0010875543,-0.03921012,-0.013408832,-0.010665838,-0.03443437,0.005081886,-0.0249441,0.0046716616,-0.01673961,-0.05319449,0.011608742,0.051088262,0.006594206,0.004270621,-0.014180299,-0.027625868,-0.010629102,0.0056115044,0.03347922,-0.041536767,-0.03916114,0.014780329,-0.032107722,0.0024613473,0.048516706,-0.0310791,-0.0010462257,-0.024013443,0.031128082,0.041512273,0.015208921,-0.044941016,0.063235804,-0.014412964,-0.012661856,0.014388473,0.034826227,-0.009882125,-0.023890987,-0.005241078,-0.013408832,0.016445719,-0.067742154,-0.029487185,-0.009331077,-0.055790536,-0.051186226,-0.0020955126,-0.02320524,-0.06436239,-0.016066108,-0.00064786396,-0.08248574,-0.023278711,-0.0024873689,-0.002874633,-0.00084417476,-0.027576886,-0.033773113,-0.05681916,-0.006281946,0.054223113,0.034018025,-0.01771925,-0.019102994,-0.019507095,-0.019066257,-0.009367814,0.061227545,-0.011565883,-0.016935539,-0.016237544,-0.0071452544,0.04937389,0.031250536,-0.017131466,-0.047463592,0.027013592,-0.041585747,0.048737124,-0.004852283,0.02723401,-0.014498683,0.041561257,-0.0061564296,-0.013910898,0.011057694,0.021392904,0.0041053067,-0.025470657,0.0015873241,0.03999383,0.028434072,-0.01936015,-0.016200809,-0.027846286,-0.002374098,-0.016617155,-0.012600629,-0.01540485,-0.015392604,0.020094879,0.015906915,0.053537365,-0.0033307783,0.0026128853,0.03320982,-0.022617454,0.016017126,-0.075775206,0.036932454,0.0150374845,-0.0129802395,-0.019862216,-0.06073772,-0.024662454,-0.0149885025,-0.006973817,-0.024478773,0.037520237,0.040018324,0.0038450898,-0.008039176,0.010653593,0.0065391017,-0.028948383,0.00043203685,0.02600946,-0.031177064,-0.022641946,0.018600928,0.05103928,0.042002093,0.024491018,-0.027160538,-0.020866347,0.008198368,0.047096226,0.022176616,0.010133158,0.055643592,0.024001198,-0.014817066,-0.011608742,0.027111556,-0.005617627,-0.0043808306,0.08527772,0.022335809,-0.017462095,-0.001700595,0.0010676553,0.01878461,0.013470059,0.037201855,-0.020719402,-0.014719102,0.024013443,0.008584102,0.024613472,0.009086167,-0.037348803,-0.0185397,0.0029970882,-0.005577829,-0.029756587,0.03852437,0.0493494,0.029928023,0.029315747,0.010763803,-0.012496541,0.0010485217,0.02202967,-0.046802334,0.033356767,0.022666436,-0.006079895,-0.025544131,0.02500533,0.0033430238,0.016506946,-0.024258353,-0.023952214,-0.023523621,0.030050479,-0.007353428,0.05417413,-0.054027185,0.014706856,-0.036981437,0.004953308,-0.015257903,-0.03414048,0.018000897,-0.055496644,-0.012796557,0.021270448,0.045871675,-0.008792276,0.0054737423,-0.003361392,0.02649928,-0.018453982,-0.059513174,-0.020168353,-0.014192545,-0.053047545,-0.013298622,0.036540598,0.024221616,-0.015355868,-0.01144955,0.037961077,-0.024833892,0.044941016,0.023805268,-0.061227545,0.044647124,0.016311018,-0.010512769,0.009465778,-0.045136943,0.010653593,-0.0553497,-0.022262335,-0.06367665,-0.0534394,0.029658621,0.00680238,0.0051431134,-0.0017281474,-0.013531287,0.020890838,-0.024491018,0.02911982,-0.021858232,0.05275365,-0.019164221,-0.028752454,0.031201556,-0.0032358756,0.019862216,0.0040042815,0.03658958,-0.02549515,0.028948383,-0.037667185,0.015257903,-0.019213203,-0.02047449,-0.017192693,-0.037201855,-0.0553497,0.008724925,-0.014057844,-0.009337201,-0.0055655837,-0.04572473,-0.022078652,-0.018037634,0.038132515,0.0629909,-0.0017174326,0.03776515,0.008724925,0.029168801,-0.021086765,0.034067005,-0.029487185,0.021503113,-0.001509259,-0.020033652,-0.011516901,0.008039176,-0.03827946,0.02358485,0.0129067665,0.028752454,0.03034437,-0.015808951,0.029168801,0.009496392,-0.0037899849,-0.00043586356,-0.044671617,0.048296288,0.015747724,0.042442933,0.05559461,-0.0120189665,0.042247005,-0.03272,0.018833593,0.013935389,0.004187964,-0.021674551,0.016911047,0.031201556,-0.027846286,-0.002683297,-0.0020511227,0.010610733,-0.01818458,0.037495747,0.035952814,-0.01407009,0.0149272755,0.007426901,0.0119822305,-0.061031613,-0.04672886,0.03487521,0.024307335,0.008284086,0.081212215,-0.0016837574,0.0164947,-0.012612874,-0.009104536,-0.005681916,-0.047806464,-0.0059666242,-0.012037335,0.013592514,-0.052116886,0.026033951,0.017951915,0.020217335,0.032009758,-0.026156407,-0.03585485,-0.017829461,-0.018111108,0.041781675,-0.068574846,-0.006337051,0.016421227,0.056035448,0.04163473,-0.023315448,0.0024613473,0.011676093,-0.011008712,0.0692606,-0.03149545,-0.0015735478,0.031544432,-0.00035071903,-0.033405747,0.04437772,-0.017413113,-0.0028715718,-0.0026434993,0.05613341,-0.0016225299,-0.03227916,-0.014315,-0.019176466,0.022323562,0.034018025,-0.014168054,0.011767934,-0.010078054,-0.0014089989,0.03514461,0.07479557,0.0059880535,0.001749577,0.0308097,0.0018689708,-0.010237245,-0.0028486114,-0.0061564296,-0.012374086,0.0017266168,-0.010433174,-0.020511227,-0.025838023,0.02022958,-0.026156407,-0.020217335,0.006857485,0.009582111,-0.029781077,0.066860475,0.020401018,-0.042687844,-0.0057155914,-0.035732396,-0.029732095,-0.00986988,0.011774057,-0.0062482706,-0.031250536,-0.022495,0.025470657,0.0035665045,0.04168371,0.008908608,0.040091794,0.015429341,0.03323431,0.037030417,-0.0042736824,-0.0042981734,-0.0077330386,0.0048339143,-0.112364784,-0.032107722,0.006679925,0.010720943,-0.027821796,0.028238144,0.024258353,-0.0005598494,-0.038916226,-0.0044420585,-0.022715418,0.029144311,0.03058928,0.007053413,0.0025179826,-0.0047757486,0.010231122,0.020266317,0.005039027,0.023180747,0.04165922,-0.0031011752,0.021845987,0.013506796,-0.0045094085,0.01349455,0.023278711,0.004656355,0.029389221,-0.009667829,-0.021086765,0.029389221,-0.0017909056,0.014192545,-0.04912898,-0.0047757486,-0.039381556,-0.019213203,0.025568621,-0.0015023708,-0.01722943,-0.0019470359,0.0022715419,-0.038475387,0.043887902,-0.0064227693,0.036516108,0.018698892,0.030736227,0.025348203,-0.00014436306,0.01682533,0.0047390116,0.03269551,-0.08101629,0.01936015,0.030883173,-0.048271794,0.009582111,0.015980389,-0.013947634,-0.039822396,0.034238443,-0.0059360103,0.025446167,-0.0073411823,0.021686796,-0.0064717513,-0.021723533,-0.0011411284,-0.009386183,-0.031960778,0.016727366,0.0051492364,0.013886407,-0.010004581,-0.004117552,0.041536767,0.05872946,0.0007584562,0.01371497,0.011565883,0.009918862,0.014633383,0.0602479,0.0050941315,-0.015808951,-0.026670719,-0.016004879,-0.016715119,0.0027583009,0.030638263,-0.008039176,0.011351586,0.0149517665,0.005834985,0.0071146404,-0.017829461,0.067791134,-0.01902952,-0.017743742,0.017131466,-0.03849988,0.01395988,-0.029805569,-0.01744985,0.0026756437,-0.03392006,-0.034850717,0.056182392,-0.02385425,-0.0050941315,-0.027895268,0.011027081,0.0028455502,0.0119699845,0.0063248053,0.0760691,-0.035487484,0.025348203,-0.00034995368,-0.010855643,0.021233711,-0.016078353,-0.06867281,0.056231376,0.012784311,0.020633683,0.0052227094,0.0089392215,0.06044383,-0.025960479,-0.016568173,-0.032328144,0.0056451797,0.0021353106,0.014192545,-0.01924994,0.024246108,-0.03269551,-0.010194386,0.0079534575,0.036295686,0.016164072,0.016372245,0.07817533,-0.014057844,0.0054033305,0.009778039,0.011774057,-0.028287126,0.008431032,0.0018475411,0.015698742,0.0167641,-0.031862814,0.00037406202,0.030491317,0.010867889,0.037397783,-0.00020243357,0.021992933,-0.020511227,0.026327843,0.0058809053,0.016347755,-0.040826526,0.023388922,0.0017832522,0.061227545,-0.0080514215,0.004879835,-0.017890688,-0.017902933,0.0030123952,-0.03725084,0.007861617,-0.007408533,-0.018576436,-0.0109597305,0.010641347,0.033087365,0.0015842627,0.030932155,-0.016347755,-0.03276898,-0.018478472,-0.00021429641,0.0010959731,-0.032671016,0.037667185,0.046508443,0.0071452544,0.0049808607,0.0075371107,-0.016078353,0.008100404,-0.0076289517,-0.029070837,-0.007800389,0.03778964,0.0050941315,-0.0022286826,-0.011645479,0.03661407,-0.016555928,0.0004461957,-0.0058900896,0.011051572,0.007084027,0.015576287,0.009435165,0.028556526,-0.0004274448,-0.0028271817,0.022911347,-0.0090739215,0.016078353,-0.024588982,0.012202649,-0.019347904,-0.02649928,0.023646077,-0.046508443,0.008326946,-0.024503263,0.010849521,-0.0028822867,0.0078065116,0.027895268,0.01651919,0.0043134806,0.006722784,0.03034437,0.02525024,-0.014621138,0.059758082,-0.052067902,-0.006851362,-0.03803455,-0.030515807,0.020315299,-0.0014419087,-0.0065146107,0.016898802,-0.0012819517,0.013763952,0.024576737,-0.03678551,0.005853353,-0.005308428,0.0011793956,0.0076289517,-0.007879985,-0.0036981436,-0.00824735,-0.03538952,0.0005617627,0.030613773,-0.009569865,-0.012508787,-0.03494868,0.0018812163,0.0068391166,-0.009386183,-0.018441737,-0.01082503,0.010163772,0.007616706,0.036393654,-0.07249341,0.0591703,0.056966107,-0.02887491,0.04432874,-0.032352634,-0.009876003,0.03151994,0.039430536,-0.072395444,0.038671315,-0.0033491466,0.0029266765,-0.006082956,0.034826227,0.003943054,0.019813232,0.0038757036,-0.003554259,-0.034507845,0.01769476,0.017045747,-0.021882724,0.029952515,-0.01984997,-0.018527454,-0.017021257,-0.004610434,0.028262634,-0.021331675,0.03151994,-0.014523174,-0.015625268,-0.029021855,0.021882724,-0.0035236452,-0.02118473,0.023805268,-0.01731515,-0.014437455,0.010004581,-0.0042644986,0.00032067925,0.015282394,-0.033797603,0.009588233,-0.022115389,0.024821647,-0.019176466,-0.007855494,-0.014694611,-0.041438803,-0.0075616017,-0.047561556,0.029413711,-0.010776048,-0.009006572,0.0089147305,0.005210464,-0.015882425,-0.00081509165,0.020535719,0.03507114,0.0003348381,0.029266765,-0.022972574,0.017045747,0.00089774886,-0.0021598015,0.008639206,-0.009257604,0.042687844,0.0128822755,-0.0037318189,-0.010139281,0.02420937,-0.008161631,-0.0031991391,-0.0013439446,0.056525268,-0.0010225,-0.006211534,0.02033979,0.007408533,0.015919162,0.016311018,0.012049581,-0.010463787,0.0310791,0.022531737,0.009814776,-0.006236025,0.0027169723,-0.009318832,-0.005981931,-0.008388174,-0.008339192,-0.0185397,-0.04048365,-0.01936015,-0.0062299026,-0.019102994,0.007084027,-0.048737124,-0.04401036,0.0003474663,-0.02525024,-0.0013554248,0.030295389,0.035316046,-0.004659416,0.04136533,-0.003189955,0.03147096,-0.017327394,-0.019788742,0.026107425,-0.01287003,0.016213054,-0.01573548,-0.015625268,0.01862542,-0.0034838472,-0.024221616,-0.019996915,0.051578082,0.004114491,-0.007849371,0.008100404,-0.009441287,0.018600928,0.0033154716,-0.022458263,0.030295389,-0.022543982,0.007702425,-0.004117552,0.013996616,-0.009588233,-0.009331077,0.0032297529,-0.011320973,0.0005292356,0.009680075,0.06343173,-0.012533278,-0.0041328594,-0.00680238,0.016213054,-0.01791518,0.022617454,-0.04124287,-0.020792874,-0.027013592,0.018956047,0.022078652,-0.028066706,0.026352335,-0.017290657,0.035536468,0.0076840566,0.04572473,-0.037397783,-0.008682066,-0.04278581,-0.055300716,-0.035046645,-0.003652223,-0.04119389,0.025838023,-0.01807437,0.038426407,-0.002167455,-0.0054676197,-0.005844169,0.059121314,0.022213353,-0.017682515,0.03945503,-0.01275982,-0.0054584355,-0.030319879,0.021907216,-0.009031063,0.015710987,-0.021515358,0.01958057,0.0019240755,-0.029315747,0.0035695657,-0.017743742,0.055937484,0.0074575148,0.020658173,0.009459656,-0.0060247905,0.012380209,0.02551964,-0.030736227,-0.009373937,0.008418787,0.03181383,-0.007328937,-0.02745443,0.052900597,0.042761315,-0.008877994,-0.003352208,0.0032695509,-0.012245509,0.0008533589,0.025593113,-0.029487185,-0.020070389,-0.014572156,0.007573847,-0.02527473,-0.00076572696,0.00013632695,-0.02525024,0.010365823,-0.020131616,0.016617155,0.06534203,-0.030393353,0.0045645135,-0.028678982,-0.005926826,-0.03127503,0.006361542,-0.00895759,-0.018919311,-0.008651452,0.004252253,0.030907664,0.007304446,0.008075913,0.004595127,0.008259595,0.02216437,0.0090126945,-0.00061151007,-0.010659715,-0.029413711,0.019935688,0.000028987415,0.014106826,0.045651257,-0.0387203,0.015245658,-0.002709319,-0.00019124041,-0.010322964,-0.009673952,0.011161781,0.00083192927,-0.027552394,0.010904625,0.01018214,0.010812785,0.014768084,-0.019176466,-0.011565883,-0.025152275,0.0090494305,-0.023486886,-0.009386183,0.019629551,0.00526863,0.029511675,0.010586242,0.053390417,0.029070837,-0.014388473,0.022115389,0.00073702657,-0.010757679,0.034213953,0.02093982,0.031421974,-0.023915479,0.011510778,-0.012600629,-0.02649928,0.0042093936,-0.048198324,0.010280104,0.0015222698,-0.008155509,0.0129557485,0.0027123801,0.04672886,0.0009872941,-0.03178934,0.0037563099,-0.009778039,0.00037903676,0.010433174,-0.004925756,-0.01889482,0.0033001646,0.028238144,0.014143563,0.032328144,0.0005521959,0.0012559299,0.009361692,0.009031063,0.0035420135,-0.004166534,-0.0032297529,-0.032205686,0.050598443,0.017413113,0.008651452,0.010678084,-0.015490568,-0.016641647,0.045234907,0.0058931513,0.021674551,0.022935838,0.02298482,-0.013555778,-0.013053712,-0.026131915,0.013739461,0.006355419,0.012263877,0.018723384,0.044255268,-0.0033950673,0.0060982634,-0.032964908,-0.005274753,0.05054946,-0.015380359,0.05148012,-0.004420629,-0.012006721,-0.04236946,-0.0046165567,-0.04765952,0.0026756437,-0.013470059,-0.029658621,-0.0014794106,0.0059360103,-0.0063186823,-0.013984371,0.06730132,-0.026572755,0.01360476,0.020988801,-0.0016255913,0.005501295,-0.027160538,0.014217036,-0.03132401,0.0028547342,0.008712679,0.008345314,-0.0075371107,-0.012551647,0.013225149,-0.023315448,-0.008522874,0.017841706,0.01973976,-0.05368431,0.0150374845,-0.0036307934,-0.000029011331,-0.021221466,-0.008320823,-0.019188711,0.029830059,-0.015710987,0.045210417,0.043447066,0.024980837,0.018453982,0.027552394,-0.02093982,-0.018796856,0.0009574457,0.0011051572,-0.033626165,0.010978099,-0.048345268,-0.0069615715,0.0052318936,-0.013727215,0.01262512,-0.029070837,0.0015429341,0.025887005,-0.041071437,-0.014266018,-0.025017574,0.0047420734,-0.028997365,0.03903868,-0.022470508,0.013445568,-0.047120716,-0.003985913,0.04432874,-0.024821647,-0.022041915,0.008173877,0.019151976,0.01624979,-0.0021919461,0.025225747,0.031397484,0.00873717,0.00793509,-0.006006422,0.03225467,-0.007206482,-0.008584102,-0.0044879788,0.024858383,-0.014008862,0.0037593711,-0.01018214,-0.046973772,0.035707902,0.05177401,0.0015299233,-0.000108774555,-0.0014778798,0.036026288,-0.043985866,0.038450897,0.012539401,-0.0046686004,0.024968592,-0.05035353,0.038475387,0.014229281,-0.01360476,0.011039326,0.022176616,0.0007175103,0.011725075,-0.009490269,0.0026480912,0.0026756437,-0.0016730427,0.0055808905,0.0022592964,-0.017780479,0.008326946,-0.0006252863,-0.0026679903,-0.020682665,0.02116024,-0.011039326,-0.050696407,-0.03009946,-0.0148905385,0.00442369,0.011486287,-0.038108025,-0.008388174,-0.017057994,0.0067656436,0.020988801,-0.03105461,0.024735928,0.0068636076,-0.009729057,0.0017587612,-0.0034440493,0.027307484,0.014033353,-0.0060339742,-0.01564976,-0.027356466,0.008437156,0.04327563,-0.0018536638,0.015723234,0.005314551,-0.012784311,-0.00818,0.010439296,-0.00036640858,0.006924835,-0.015698742,-0.0048094233,0.026082933,-0.020511227,0.01173732,0.02156434,-0.041291855,-0.014119072,-0.037054908,-0.015172185,0.0077085476,-0.035707902,-0.041732695,-0.0029986189,0.006306437,-0.01624979,-0.036222216,0.03820599,0.04045916,-0.0037073276,-0.011786303,-0.040287722,0.0011395976,0.0028792252,-0.005626811,-0.011633233,-0.012257754,-0.011565883,-0.027650358,-0.021368412,-0.013972125,0.014021107,0.04454916,-0.008724925,-0.012392455,-0.030221915,0.031715866,-0.007133009,-0.006193166,0.000256199,-0.023682814,0.016286526,0.025911497,0.009918862,0.020376526,0.015110957,-0.016923293,-0.0013087387,-0.004148166,0.03945503,-0.010390314,-0.0038144758,-0.010035194,-0.01856419,-0.002709319,-0.009918862,0.027552394,0.0007198063,0.029634131,-0.03541401,0.023842005,0.010298473,0.038377423,0.019923443,0.0013653742,-0.026107425,-0.00426756,0.020217335,0.0019975486,-0.0043532783,0.0036307934,0.020841856,-0.043496046,0.019213203,0.003985913,0.022482755,0.03681,0.013776197,0.008443278,-0.01682533,-0.006526856,0.01042705,-0.044745088,-0.014131317,0.030221915,0.0069187125,0.00067426835,0.021270448,-0.034801736,0.011363832,0.026180897,-0.013457814,-0.026180897,-0.004093061,0.021454131,-0.010267859,0.008118772,0.0090004485,-0.026425807,-0.0119087575,0.024270598,-0.023793023,-0.012086317,-0.009918862,0.016004879,-0.0047114594,0.0062268414,-0.025593113,0.020107126,0.0022348054,0.0288994,0.015172185,-0.03316084,-0.031593412,0.014155808,0.016666137,-0.018343773,0.011467919,0.0099984575,0.036393654,-0.015453832,0.036295686,-0.0037195734,0.0078065116,0.011063817,-0.015686497,-0.021282693,0.027527904,0.023744041,-0.043667484,0.01275982,-0.0072922003,-0.010151527,0.018600928,0.022446018,0.025887005,-0.0027016653,0.046581917,0.03301389,-0.02020509,0.018747874,0.03460581,-0.008896362,0.0058135553,-0.0020281624,-0.023780778,-0.00054186373,-0.031103592,0.006006422,0.0014097642,0.025887005,0.0036889594,-0.030638263,0.022678683,0.015380359,-0.0308097,-0.0001673234,0.005314551,-0.009955599,-0.028287126,-0.02153985,0.03634467,-0.024184879,-0.011082185,0.024895119,-0.005810494,-0.003936931,0.0043287873,0.0056849774,-0.006722784,0.01889482,0.017670268,0.0060707107,-0.008786152,0.024172634,0.0026526833,0.012172036,0.037520237,-0.013176167,0.008718803,0.028287126,-0.019703023,-0.0030552545,0.046802334,-0.010414805,-0.0024337948,-0.011896512,0.03414048,-0.0047696256,-0.004218578,-0.002427672,-0.023597095,-0.0043777693,0.010929116,-0.007726916,-0.046851315,0.036271196,0.030711737,-0.0061992886,-0.030687245,-0.0029450448,-0.006906467,-0.032964908,0.02960964,0.025397185,-0.03178934,-0.0014311938,0.018796856,-0.043202154,-0.01862542,-0.0016516129,-0.040826526,-0.021907216,0.04981473,0.012343473,0.021723533,0.012355718,0.0269891,-0.01924994,-0.0043838923,-0.02600946,-0.0023802207,0.015502814,0.018356018,0.047757484,0.014033353,-0.018796856,0.035634432,0.049275927,-0.0021444948,0.036026288,0.00028949147,-0.023376675,0.0069615715,0.013274131,0.017658023,-0.0039216243,0.0033215943,-0.008663697,0.030981136,0.0029557596,-0.013653742,0.023180747,-0.0054247603,0.00484616,-0.014535419,0.010102545,0.014302754]},{"id":"interface-GatewayPassiveUpdatesDispatchData","type":"interface","source":"main","text":"Interface: GatewayPassiveUpdatesDispatchData\nDescription: PASSIVE_UPDATES — lazy-loaded entity updates","meta":{"url":"/docs/typedefs/GatewayPassiveUpdatesDispatchData"},"embedding":[0.025388148,0.03989379,-0.0020535493,0.037644044,0.012890273,0.04779407,0.012949132,-0.011673839,0.018154945,-0.0041757682,-0.02275908,-0.0056309104,-0.01908362,0.016899271,0.01937138,0.013681608,0.033510786,0.011327221,-0.029403687,0.022288203,0.028461931,-0.021608047,0.038873557,0.013720848,-0.022078924,-0.028121853,0.013590049,0.010025768,0.00943063,-0.010732084,0.039396755,-0.025885185,0.068120286,0.0044471766,0.03251671,0.03249055,-0.02109793,0.01334153,-0.00571266,-0.01921442,0.023700835,-0.029508326,-0.030162321,0.021568807,-0.030842477,0.031601116,-0.0064484063,-0.027991053,0.018324984,-0.0146233635,-0.013733928,-0.04632912,0.001434705,0.033144545,0.04421017,-0.012353995,0.03400782,-0.027337058,-0.029900724,-0.004244438,0.007887199,-0.010097707,-0.012157796,0.016454553,0.016506873,0.037513245,-0.07549737,0.045962878,-0.006275097,0.023583116,0.00014561642,0.03672845,-0.02885433,-0.00949603,0.030293122,0.0305024,0.0056439904,0.008613135,0.024616431,0.031888872,0.0056636105,0.048264947,-0.07439865,-0.0303716,0.0014461499,-0.025087308,-0.044654887,-0.017670987,-0.0025473167,0.027467856,0.010385466,0.0763868,-0.039108995,-0.0047316654,-0.026356062,-0.033641584,0.039213635,-0.03293527,-0.01726551,0.060481604,0.03246439,-0.04622448,-0.048683506,-0.048866622,0.02100637,-0.031156396,-0.035341974,-0.009312911,0.009182112,0.005902319,-0.10432553,-0.025688985,0.0039141695,-0.023360757,-0.004947484,-0.04253594,-0.021555727,0.025963664,0.029691445,-0.01900514,-0.023596196,0.014401005,-0.021647286,-0.008796254,-0.033432305,0.0003668512,0.014178646,-0.012563274,-0.05524963,0.003265078,0.045753602,-0.016153716,0.059225928,0.014217885,-0.029299047,0.0088616535,-0.011268361,0.0039043596,-0.012419395,-0.048081826,0.013138792,-0.01154958,0.021372609,0.032176632,-0.006307797,0.048683506,-0.0114645595,-0.0046139457,0.040364668,0.04611984,-0.029822243,0.056243706,-0.016768472,0.007449021,-0.0031375485,0.012517494,0.023399998,-0.0305024,-0.0085215755,0.0094698705,-0.0060821683,-0.05959217,0.027572496,0.0114645595,-0.06367311,-0.030083843,-0.008057238,-0.029456006,-0.073142976,-0.0115364995,0.0120466165,-0.04410553,-0.017657908,0.023870874,-0.03419094,-0.021254888,-0.031025598,-0.026460702,-0.013903967,-0.043451533,0.06592286,0.023897035,-0.009764168,-0.0048591946,-0.033510786,-0.0041169086,-0.031601116,0.09417551,-0.025728226,-0.0012058062,-0.014100166,0.04983454,0.05148261,0.038952038,0.004712045,-0.028985128,-0.0146233635,-0.012818333,0.039004356,-0.01727859,0.0029021099,-0.03997227,0.058598094,-0.039527554,0.03042392,0.010169647,0.039632194,0.014021686,-0.0051992727,0.020313134,0.03254287,0.041306425,-0.010862883,0.0073378417,-0.02470799,0.029037448,0.031627275,0.007239742,-0.010182726,-0.0069585238,0.035682052,0.00760598,0.030188482,-0.011974677,0.034086302,0.04148954,-0.036885407,-0.05200581,-0.0065890155,-0.003413862,0.017487869,-0.0012352361,0.010647064,-0.032673668,0.000286941,0.0071743424,-0.022340523,-0.0029102848,0.015486639,0.026081383,-0.0031538985,-0.021856565,-0.038611956,-0.0059644487,-0.04389625,0.021647286,-0.0067819445,-0.023033759,-0.009365231,0.03390318,0.025126548,0.026565341,0.011856958,-0.016349914,-0.028148012,-0.019279819,0.040730905,0.010202346,0.010869423,0.05655762,0.022929119,0.029586805,0.0035839013,-0.0050357734,-0.010607825,-0.010104247,0.09061777,0.008835494,0.0087897135,-0.0031620734,0.012138177,0.029246727,0.024472551,-0.015068081,-0.025845945,0.013001452,0.01142532,-0.0040449686,-0.004195388,0.027467856,-0.016742311,-0.044628724,0.016572272,0.048421904,-0.0100519275,0.025845945,-0.020116935,0.015865957,0.012393235,0.0046401056,-0.044785686,0.00956143,0.03400782,0.000014727696,0.046878476,0.05734242,-0.03293527,-0.03662381,0.00569958,0.011935437,0.024577191,0.022824481,-0.04622448,-0.012674454,0.031653434,-0.0040547787,0.03560357,-0.044445608,0.00939793,-0.016284514,-0.052712124,-0.007880659,-0.0052483226,0.011968138,-0.024577191,-0.0022284933,0.04159418,0.015970597,0.048892785,-0.018429624,-0.004604136,0.008606595,-0.015565119,-0.04779407,-0.03254287,-0.070945546,-0.02099329,-0.040940184,0.03390318,-0.012445555,0.0058369194,-0.024511792,0.02694466,-0.036990047,0.027153937,-0.006984683,-0.028069533,0.026565341,0.005572051,-0.008842033,-0.047427833,-0.022432083,-0.01914902,-0.006036388,0.03215047,-0.0413849,-0.05362772,0.05315684,0.006428786,0.039632194,0.06451022,-0.012327835,0.021921964,-0.0125567345,0.0060298485,-0.039475232,0.030162321,-0.033484623,-0.029900724,0.03835036,-0.01718703,0.03209815,0.0031588036,0.022458242,-0.03581285,0.021594968,0.0030884987,0.01344617,0.018154945,0.019135939,0.028775848,0.0033844323,-0.022876801,0.006141028,0.00014469674,-0.0085215755,0.016022917,-0.015604358,-0.0066184453,-0.015172721,0.029874563,0.07319529,0.010470485,0.018063385,0.050619334,0.012635214,-0.05362772,-0.024407152,-0.08543811,-0.00006473544,0.020470092,0.00038422298,-0.020496253,-0.037853323,-0.010320066,0.02090173,0.032595187,0.00573555,0.03968451,-0.0067623244,0.014819562,0.000063713574,0.005526271,-0.0023854524,-0.014296365,-0.001606379,-0.018181104,-0.0015442494,0.068957396,-0.0020486442,0.057917938,0.01706931,0.024564112,0.003639491,0.037408605,-0.03060704,0.0007320674,0.03079016,-0.021424927,0.05749938,-0.009044773,0.015957516,0.018508103,0.026473781,0.0035413913,-0.02081017,0.067597084,0.009901508,-0.0012703884,-0.081147894,-0.043268412,0.070160754,-0.008802794,-0.01342001,0.055825148,-0.01342001,0.017827947,-0.03254287,-0.014113246,-0.03079016,-0.0032242031,-0.047009274,-0.027232418,0.04810799,-0.05169189,-0.03829804,-0.024289433,0.0024263272,0.008809334,-0.012680993,-0.060324643,0.03842884,-0.00008042114,0.023700835,-0.03591749,-0.0070304633,-0.004950754,0.018050306,0.023818554,-0.025178868,-0.004077669,-0.00573882,-0.027912574,0.008273057,-0.0071874224,0.026303742,0.0044798767,-0.0044994964,-0.001729821,0.005555701,-0.008207657,0.006906204,-0.02476031,0.05352308,-0.011863498,0.0049932636,-0.040260028,-0.006425516,-0.023295358,0.01899206,-0.016232194,0.035943653,0.010934822,-0.0039141695,0.07052699,0.109871425,0.04957294,-0.010182726,0.016703073,-0.020352373,0.01742247,-0.012183956,0.054674115,-0.015107321,-0.0014968347,-0.010960982,-0.03610061,-0.031653434,0.046826154,-0.012883732,0.0054183616,-0.018364225,0.004774175,-0.0026110813,0.03664997,-0.0026192563,-0.019188259,0.023870874,-0.018769702,-0.0535754,0.015198881,0.022288203,0.0008179045,-0.0413849,-0.04379161,0.034923416,0.006696925,0.039292116,0.0075340406,0.035420455,-0.01334807,0.033406146,0.0031293735,-0.012157796,-0.0052221627,-0.021856565,-0.008109557,-0.015918277,-0.030711679,0.0020519143,-0.0007426949,-0.03453102,0.026107544,0.044733364,-0.004528926,0.0044439067,-0.004061319,-0.037748683,-0.0048788143,0.031287197,-0.009652989,-0.016650753,-0.0024966318,0.015735157,0.002099329,-0.02464259,0.04339921,0.021804245,-0.008181497,0.028226493,-0.0017396309,-0.016454553,0.013151871,0.037487082,0.046145998,0.018272664,0.0063830065,-0.012183956,0.016533034,-0.011968138,-0.0079852985,-0.017801786,0.0073705413,-0.039762992,-0.037565563,0.04737551,0.0016104665,-0.0061966176,-0.027153937,-0.0039108996,-0.05001766,0.029560644,0.0032062181,0.010202346,0.051927328,0.008940133,0.018743541,0.0010578395,0.030973278,0.013995526,0.020077694,-0.088891216,0.0075340406,0.07047467,-0.052188925,0.012085857,0.058702733,-0.033720065,-0.001911305,0.04978222,-0.0027582305,0.014335605,0.027677136,0.008403856,0.020313134,-0.016833872,-0.007946058,-0.015041921,-0.026042143,-0.009764168,0.0045125764,0.029979203,-0.0058140294,0.008344997,0.040835544,0.060063045,-0.042640578,0.02481263,0.009188652,0.0018655253,0.007939518,0.025270429,0.017945666,-0.030763999,-0.036597647,-0.009698769,-0.0420389,0.037957963,0.0087897135,-0.04379161,0.013093011,0.008626215,-0.041227944,0.03215047,0.0064058965,0.02495651,-0.03222895,-0.003976299,-0.0075405804,-0.03272599,0.009855729,-0.026186023,-0.041855782,0.005856539,-0.04748015,-0.016519953,0.010640524,-0.013616209,0.011287981,-0.022680601,0.019240579,0.047009274,0.01330229,0.031784233,0.07670072,-0.011641139,0.0101500265,-0.0015556944,-0.009188652,-0.0048755445,-0.048892785,-0.050253097,0.012203576,0.01515964,0.044576406,-0.00084856054,-0.014244045,0.004806875,0.020679371,0.01340693,-0.030947117,-0.003976299,-0.000027718213,0.021987366,-0.029299047,0.011216042,0.01730475,0.01143186,0.0037637502,0.00764522,0.021935046,0.012661373,0.05718546,0.016022917,0.000027309467,-0.010241587,-0.004201928,-0.007403241,-0.036466848,0.004211738,0.016899271,0.0534446,-0.026473781,-0.017893346,0.0031964083,-0.040757068,0.0123147555,0.002122219,0.023386918,-0.012301676,0.014139405,0.03816724,0.03623141,-0.021320289,-0.011209501,-0.015669758,0.03798412,-0.040469307,0.0028465202,-0.00026793423,-0.024354832,0.012013917,-0.0009875349,0.012085857,0.008338456,0.0021320288,-0.011699999,-0.020770932,0.006131218,-0.00288903,0.02453795,-0.0021402037,-0.034975737,0.006487646,0.018168025,0.0011469465,-0.029011289,0.04611984,0.029612964,0.029769924,0.03814108,0.013197651,0.028357292,-0.0026192563,0.0020322944,-0.035001896,-0.04389625,0.043111455,-0.019894576,-0.0039566793,-0.0070958626,-0.009247512,0.00009191717,-0.0011338666,-0.01920134,0.0029217296,-0.020260815,0.017396308,-0.020836331,0.028958969,0.0040972885,0.006556316,0.0012851033,0.005970989,0.046695355,-0.011837338,-0.004558356,0.008959753,-0.024498712,-0.003453102,-0.03675461,0.009823029,0.0055884006,0.010300446,0.028121853,-0.03079016,0.017396308,0.01712163,0.0417773,0.0037114306,-0.0105882045,0.011032922,0.039056674,0.028200332,-0.029665284,0.015839797,-0.054360196,-0.044916485,0.012635214,0.0012515859,-0.007939518,0.023334598,0.020561652,0.021464167,0.0056832302,-0.022013525,-0.01139916,-0.036493007,0.00577806,0.008972833,0.012622134,-0.0003905586,-0.025074229,-0.035734374,0.00043613397,0.029665284,0.02489111,-0.004960564,-0.0383242,0.015565119,-0.009116712,-0.035472773,0.002867775,-0.009260591,0.0064484063,0.010293906,0.008658915,-0.09218736,0.037644044,0.034583338,-0.011111402,0.030110002,0.0027860254,0.027206257,0.008384236,0.055040352,-0.050567016,0.00577806,-0.011242202,-0.017605588,-0.033170708,0.008743934,-0.00092785765,-0.021791166,0.0045518163,0.037513245,-0.018377304,-0.02684002,-0.01141878,-0.0032013133,-0.007887199,-0.021725766,-0.028357292,-0.01529044,0.00068874017,0.026120624,-0.02459027,0.019332139,-0.043059133,-0.033275347,-0.022746,0.029848404,0.019397538,0.00036930369,0.014884962,0.015041921,0.0076779197,-0.006441866,0.00001834256,0.022523642,0.016716152,0.023452317,0.023373837,-0.014989601,0.015146561,-0.013812408,-0.037434764,-0.01742247,-0.031234877,0.007239742,-0.030659359,-0.012236276,0.0031310087,0.010705924,0.019894576,-0.0010096072,-0.022275124,-0.024224034,0.03262135,0.01879586,-0.031025598,-0.009110172,0.0059546386,0.060063045,0.019646058,0.01921442,0.03432174,0.018782781,0.03625757,-0.0020633591,-0.031627275,-0.010293906,0.0015303519,0.010195807,-0.02302068,-0.012759473,0.029351367,0.05341844,0.0027942003,0.045256563,-0.0012450459,0.021032529,0.009325991,-0.016899271,-0.017618667,0.018573502,0.00023400816,0.046983115,-0.023216879,-0.02494343,0.0007189875,-0.015865957,0.0066020954,0.03874276,0.008835494,-0.018534264,0.0008567355,0.023883956,-0.023504637,0.008586975,-0.033510786,-0.043634653,-0.019776857,0.011543039,0.01132068,0.024982668,0.023243038,0.01706931,0.027729455,0.0033402876,0.029534485,0.0021876185,-0.010405085,0.0073051415,-0.000003254016,0.02854041,0.012478255,-0.0023004329,0.01705623,-0.037539404,-0.021568807,-0.004558356,0.0061737276,0.04054779,-0.018429624,-0.0035185015,-0.0064058965,0.021411847,0.040600106,-0.01910978,0.023936275,-0.000063713574,-0.02684002,0.0009654624,-0.017082391,-0.031365674,0.011909277,-0.00092131767,-0.001039037,-0.016833872,-0.00571266,0.049546782,0.030894797,-0.0032176632,-0.054255556,-0.003453102,0.0015704093,0.02305992,-0.045256563,-0.04180346,0.012216656,-0.00954835,0.028226493,-0.02869737,0.0115364995,0.01700391,0.037434764,0.010457405,0.039318275,-0.022340523,0.015774397,-0.0016652388,-0.033379987,-0.026918499,0.001350503,-0.024289433,-0.022379763,-0.0028726798,0.011817718,0.02833113,0.01700391,0.0039239796,0.02694466,0.0136031285,-0.027650975,0.0068473443,-0.030659359,0.008063777,0.010104247,0.011981217,0.00068874017,0.038271878,-0.0030100192,0.035786692,0.0070697027,-0.033850864,0.00088943535,-0.01895282,0.06628909,-0.003238918,0.028932808,-0.02648686,-0.009090552,0.0077302395,0.0052941022,0.009332531,-0.014387924,0.0074817208,0.009823029,0.0037931802,0.0035937112,0.012275516,0.03633605,0.046145998,0.00023462127,0.0014551424,0.008469256,-0.009299831,-0.0010104247,-0.01912286,-0.005284292,-0.03466182,0.027310897,-0.058441132,-0.027703295,-0.0067165447,-0.016572272,-0.015447399,-0.029168246,0.0052941022,0.034060143,-0.030894797,0.0012973658,-0.035054218,-0.005529541,-0.03047624,0.011124481,-0.00950911,0.046407595,-0.008645834,0.019449858,-0.006288177,0.013197651,0.013681608,0.010895583,0.012000837,0.022209724,-0.0013251606,0.02264136,0.0018753351,-0.035263494,0.019292898,-0.005572051,-0.012739853,0.014924202,-0.018769702,0.024184793,0.009142872,0.008397316,0.0015393444,0.008593515,0.028958969,0.004712045,-0.027049297,0.017082391,-0.0052385125,-0.025845945,-0.0055785906,0.02495651,0.016232194,0.002084614,0.014427165,-0.0075994404,-0.031601116,0.0077433195,0.013681608,0.0054379813,0.0084496355,0.056034427,0.029272886,-0.014950362,-0.0137731675,0.010235046,-0.033092227,0.022419002,0.008554275,0.015944436,-0.040887866,-0.008194577,-0.020313134,-0.015028841,-0.001706931,-0.037565563,0.021961205,-0.013642369,-0.010058467,0.020443933,0.0077956393,0.025244268,-0.0013169856,-0.027232418,-0.038664278,-0.011719619,-0.01730475,0.039004356,0.011137562,-0.040495466,-0.026565341,0.041201785,0.004918054,0.023203798,0.0062489375,-0.024498712,-0.005124063,-0.012700614,0.012373615,-0.014427165,-0.009894968,-0.050200775,0.025466627,0.009084012,-0.014139405,0.029456006,0.0151858,-0.02653918,0.013119171,-0.0048788143,0.0190967,0.008913973,-0.010522805,0.0040580486,-0.0005227885,0.00037727426,-0.013099551,-0.019698378,-0.0033337476,-0.016127555,0.03808876,-0.0044569867,0.0077498592,0.0033517324,0.012013917,0.023962434,-0.0076909997,0.035629734,-0.011065622,-0.03628373,-0.02827881,-0.022746,-0.014714923,0.01908362,-0.0035708214,-0.010934822,-0.019423699,0.00018710434,-0.011176801,-0.012203576,0.085124195,-0.029926883,0.008436556,-0.011830798,-0.0191621,-0.0230076,0.018154945,-0.0029021099,-0.03450486,-0.010182726,-0.0067623244,0.02859273,0.003626411,-0.008796254,0.009110172,-0.039292116,-0.00041814905,0.0016014741,-0.010346225,-0.019541418,0.010581665,0.0048330347,-0.025466627,-0.03424326,-0.027520176,-0.02091481,0.035315815,-0.035001896,0.004574706,0.029220566,0.014230966,-0.027964894,-0.010104247,0.02100637,-0.010378926,0.007462101,0.008783174,-0.042719055,0.027703295,-0.03570821,-0.0030280042,0.0077236993,-0.01336115,-0.012170876,-0.032804467,0.020574732,0.012321295,-0.025034988,-0.019816097,-0.026513021,0.0045485464,0.0018475403,0.016860032,-0.020103855,0.01144494,-0.04002459,-0.025335828,0.052241247,-0.027180098,-0.029612964,-0.017697148,0.0047055054,-0.0024148824,-0.029220566,0.03782716,0.019031301,0.037147004,0.027677136,0.0015238121,0.03251671,-0.02504807,0.021294128,-0.0044504465,0.014034767,0.004882084,-0.011157181,0.007252822,-0.037042364,0.015578198,0.031417996,-0.014819562,0.007409781,-0.021843486,0.021856565,-0.044445608,0.01154958,0.011183341,0.014387924,-0.0022252232,-0.016153716,0.0065595857,-0.006098518,0.018573502,-0.0017396309,0.016258355,0.01539508,-0.012949132,-0.017893346,-0.011811178,0.010306986,0.00089597533,0.00017780531,0.005526271,-0.017854106,0.015669758,-0.004698965,0.004594326,0.002473742,0.018076465,-0.023439238,-0.023818554,-0.023753155,-0.01329575,0.0048624645,-0.009620289,-0.00190967,0.016035996,-0.012242815,0.022065844,0.011785018,-0.034086302,0.012530575,-0.00089597533,-0.028304972,-0.002485187,0.008868193,0.019135939,0.03058088,-0.025361987,-0.011144102,-0.03874276,0.003596981,0.021804245,0.006487646,0.023870874,0.0058107595,-0.02848809,-0.002465567,0.024132473,0.0037375905,0.023910115,-0.016467635,-0.01534276,0.046433758,-0.012746393,0.017749468,0.010352766,-0.051142532,0.016062155,-0.024629511,0.03296143,0.00033067702,-0.0025816516,-0.011183341,0.012543654,-0.010817103,0.007867578,-0.029377526,0.023635436,-0.00017198066,-0.039082836,-0.02101945,-0.047453992,0.011837338,-0.017684067,-0.0058009494,-0.02290296,-0.00058737065,0.0035185015,-0.02291604,-0.0057682497,-0.03052856,0.012517494,0.026342982,-0.0071481825,-0.0024524871,-0.010673224,0.007880659,-0.0025947315,0.013145331,-0.006860424,-0.0012286961,0.021346448,0.031077918,0.0048199547,0.011883118,-0.006696925,-0.007390161,0.002459027,-0.012478255,0.032281272,-0.018808942,0.012936052,0.0019472748,0.0027369757,-0.030136162,-0.029429846,-0.008554275,0.0045158463,0.032071993,-0.043059133,-0.010261206,0.008600055,0.040992506,0.010843263,0.0047022356,-0.013093011,0.0067165447,-0.0064320564,0.005336612,0.0039305193,0.033798542,0.006608635,-0.016624592,0.027127778,0.004192118,0.02867121,0.039161313,-0.0029953043,0.025270429,-0.0029004747,0.0004925412,0.010509725,-0.052372046,-0.013040692,0.023177639,0.04010307,0.0059644487,0.015172721,0.008312296,0.010738623,0.026238343,-0.00050766487,-0.03419094,-0.0019587197,-0.019384459,0.012615594,0.033824705,0.015473559,-0.017487869,-0.008802794,0.008685075,-0.023373837,-0.009836108,-0.016755393,-0.0012761108,0.0067819445,0.009018613,-0.050410055,0.0266569,-0.037147004,0.019240579,0.034086302,-0.012236276,-0.051875006,0.015931357,-0.010862883,-0.025139628,0.009908048,-0.00949603,0.05530195,-0.0014224425,-0.0005313722,-0.0008747204,-0.00027304358,-0.004048239,-0.016546113,-0.020038456,0.016729232,-0.01886126,0.0008632755,0.00021316201,0.007449021,0.019803016,-0.0018687953,0.0068211844,-0.00087226793,-0.021725766,0.040966347,0.004008999,-0.005892509,0.0494683,0.028200332,-0.0058074896,0.020823251,-0.009155952,-0.024224034,0.0012875558,-0.005153493,0.0028219952,0.014714923,0.035472773,-0.03392934,-0.02489111,-0.0034988816,0.0086916145,-0.009273672,0.010012687,-0.015133481,0.008482335,-0.015983677,0.0033778923,0.02859273,0.014322525,-0.0021254888,0.0058074896,0.002867775,0.010594744,-0.004986724,-0.00021929323,-0.014008607,0.045648962,0.0036591107,-0.008240357,0.00963337,0.017631747,-0.013812408,0.031679593,0.015996756,0.030136162,0.0013709404,0.020077694,0.0027255306,0.014087087,0.02838345,-0.009888428,0.02464259,0.014950362,0.0064484063,0.01149726,-0.00023768688,0.009247512,0.016637674,-0.002692831,0.01526428,0.00021316201,-0.01696467,0.02079709,0.016559193,-0.03246439,-0.048500385,-0.015944436,-0.01129452,-0.03772252,0.0057944097,-0.005297372,0.010208886,0.00034559632,0.017775627,-0.038847398,0.0008420206,0.036466848,-0.01920134,0.015656678,0.014767243,0.013145331,0.023373837,0.0011502164,-0.0042771376,-0.025100388,-0.013276131,-0.056034427,-0.0004443089,0.003642761,0.021594968,0.019305978,0.0018998601,-0.026094463,0.019829176,0.0014976521,0.008613135,0.023622356,-0.03215047,-0.0003110571,0.022575961,-0.018599663,-0.02286372,-0.014296365,0.011124481,0.00960067,0.0065105357,0.015722077,-0.013864728,0.027677136,-0.0099799875,0.012942593,-0.011981217,-0.0024148824,0.037199326]},{"id":"interface-GatewayPresenceUpdateData","type":"interface","source":"main","text":"Interface: GatewayPresenceUpdateData\nProperties: activities: { name: string; type: number; url?: string | null; }[], afk: boolean, custom_status: GatewayCustomStatus | null, since: number | null, status: \"online\" | \"idle\" | \"dnd\" | \"invisible\"","meta":{"url":"/docs/typedefs/GatewayPresenceUpdateData"},"embedding":[-0.024163479,-0.028062366,0.014392192,0.029000988,0.017087718,0.030493155,0.026305461,-0.014789301,0.047917817,0.028327106,0.01845955,-0.0042779464,0.03925362,-0.014897603,0.018603953,0.022563009,-0.012159958,0.06382624,-0.019747145,0.059831083,0.008754448,-0.0047201817,0.0020035952,0.054584432,-0.053092264,0.042911835,0.016582308,0.06599229,-0.026209192,-0.009464431,0.036798764,-0.024127377,0.03561947,0.015896393,0.030084012,-0.002346553,-0.0385316,0.018736323,-0.025920385,-0.012208092,0.013333234,-0.0150901405,-0.018808525,0.01238258,-0.06868782,0.01612503,-0.034392044,0.018928861,0.012298345,0.027653225,-0.015029972,-0.012599184,-0.0074488013,0.04707546,0.039012946,0.0062815417,0.0040312577,0.0038778293,0.009909674,0.016498072,-0.013020361,0.0147411665,0.019879516,0.0027722418,0.021780824,0.008616061,-0.049217444,0.036197085,-0.007214146,0.015306746,0.030180281,0.04295997,-0.023694169,-0.015282678,-0.03208159,0.026353596,-0.0028263929,-0.0107821105,0.037568916,-0.01812261,0.0031257288,0.021179145,-0.08024008,-0.0781703,0.019506473,-0.019951718,-0.049626585,-0.05270719,-0.032201927,0.019711046,0.021600321,0.021768792,-0.046449713,-0.0120817395,0.0020818138,-0.01638977,0.027099678,-0.018267013,-0.022117766,0.036028612,0.035763875,-0.058290783,-0.03908515,-0.030493155,0.016329601,0.0006964449,-0.016173165,0.021287447,-0.044091128,-0.03157618,-0.08120277,-0.011961403,-0.019987818,0.022851815,-0.0037875772,-0.020336792,0.0002256301,-0.074800886,0.069939315,-0.022057598,-0.018989028,0.024692958,0.033092413,-0.01838735,-0.0007111108,0.009669001,-0.0005061635,0.014271855,-0.09434346,-0.024091277,0.013742377,-0.027268149,0.04693106,0.00530682,0.018447516,0.021094909,-0.00068215496,0.033670027,-0.040817987,-0.00709381,0.010770077,-0.019338002,0.027195947,0.007496936,-0.029915541,0.025824117,0.005538467,0.0073043983,0.026257327,0.041756608,-0.012171991,0.050829947,-0.040842056,-0.001454562,0.024283815,0.03614895,0.021407783,-0.008405473,-0.04416333,-0.018483616,0.021708623,-0.08413897,-0.010168396,-0.019819347,-0.021684555,0.016883148,0.000024278737,-0.0071780453,-0.06974678,-0.022719447,0.023345193,-0.058387052,-0.046473783,-0.006305609,-0.044307735,-0.013008327,0.0022171917,0.017039584,-0.03208159,-0.027484754,0.0148374345,0.011678614,-0.029723004,-0.05530645,-0.014416259,-0.014813367,-0.027845763,0.056557942,0.021299481,0.011696664,0.01225021,0.02459669,0.0028519644,0.044476204,0.0368469,-0.03918142,-0.017773634,-0.0136340745,0.008068532,-0.01648604,-0.0131888315,-0.08524606,0.013958982,-0.023248924,-0.016040795,0.018772423,0.029049123,-0.02433195,-0.008032431,0.03321275,0.052129578,-0.014380158,-0.04226202,-0.012202076,-0.03918142,0.056365404,-0.02580005,-0.008116666,-0.023658067,0.027099678,-0.012316395,0.008953002,0.056365404,-0.014476427,0.015427082,0.05583593,-0.016028762,-0.010727959,-0.025679713,-0.008357339,-0.011371757,0.020685768,-0.020108154,-0.053429205,0.018194811,0.001934402,0.038868543,0.006552298,0.028832518,0.03908515,0.0006155941,-0.025463108,-0.002376637,0.014789301,0.002242763,0.008327255,0.025318705,-0.026064789,-0.02890472,0.0042177783,0.031768717,0.03304428,0.004969879,-0.021925228,-0.018146677,-0.012159958,-0.03535473,0.026931208,0.021383716,0.02163642,0.010788127,-0.012370546,-0.008218952,0.006233407,-0.012695453,-0.0385316,0.04760494,0.026112923,-0.0030775946,-0.012406646,0.001881755,-0.0030775946,0.059879217,-0.03487339,0.013694243,-0.0032400482,0.023044353,0.033140548,-0.010312799,0.009007153,-0.017701432,-0.007286348,0.02099864,0.054632567,-0.028832518,0.03805026,0.024223646,0.0021329564,0.011353706,0.035836075,-0.001934402,0.04348945,0.036943167,-0.0113055715,0.05925347,0.039566495,0.014416259,-0.042117618,0.029458266,-0.013152731,0.039903436,-0.03208159,-0.035643537,-0.004681072,0.006263491,0.041973215,0.050829947,-0.0053880466,0.005899475,0.025222436,-0.004118501,-0.008543859,-0.012370546,0.009681035,-0.08187665,-0.035426933,0.037039436,0.023405362,0.020565432,0.016197233,0.022057598,0.003944014,0.008591994,-0.042647097,0.00046667823,-0.0679658,0.03131144,-0.0046028537,0.01385068,0.0065643317,0.0041576107,-0.02006002,0.014825401,0.029145392,0.016943315,0.03087823,-0.05391055,0.04953032,-0.012647319,0.029458266,0.00722618,-0.051263157,-0.021106943,-0.011058883,0.023405362,-0.0073645664,-0.0266424,-0.015727922,-0.031864986,0.01715992,0.02890472,-0.009127489,-0.015896393,-0.022647245,-0.033670027,-0.06483706,0.037905857,-0.008008364,-0.030565357,0.04943405,-0.035234395,-0.003983123,-0.017496862,-0.009205707,-0.01992765,0.013008327,-0.06252661,-0.00041741566,-0.00014947994,-0.024115345,0.011660563,-0.04495755,0.017316358,-0.015198443,-0.019386137,0.011498109,-0.017208055,0.0052255928,-0.009993909,0.0030866198,0.0235979,0.05540272,0.012159958,0.005923542,0.014043217,-0.0061160796,-0.056269135,-0.010192463,-0.06830274,0.025631579,0.04476501,-0.008513776,-0.017208055,-0.024644824,-0.03865194,-0.04606464,0.06719565,-0.016209265,0.016498072,-0.014584729,0.042671163,0.019217666,-0.015366914,-0.02312859,-0.002767729,-0.0051864837,0.005442198,0.008928935,0.042935904,-0.0101022115,0.023453496,-0.011702681,0.027773561,0.01902513,0.04943405,-0.031768717,-0.016702645,-0.015415048,0.017376525,0.016558241,-0.025511242,0.011937336,-0.00060393655,0.010469236,-0.010439152,-0.016209265,0.00031475397,-0.0025225445,-0.013152731,-0.06888036,-0.05737623,0.037231974,0.044115197,-0.009211725,0.045751765,-0.03147991,0.019001063,-0.022743514,-0.02837524,0.005445206,-0.00047194294,-0.028784383,-0.04796595,0.07306805,0.012394613,0.016931282,-0.0135378055,-0.039470226,0.03821873,-0.05511391,-0.08072142,0.052755326,-0.014885569,0.049048975,-0.0016470997,0.042598963,-0.00796023,0.043441314,-0.029891474,0.016618408,-0.025174301,-0.019807315,-0.037496712,0.053669877,-0.00931401,0.023176724,-0.014765234,-0.0032821659,-0.010962614,0.013080529,-0.03759298,-0.036389623,0.012346479,0.026762737,-0.0033754262,0.009620867,0.014404225,0.02410331,-0.036028612,0.037376378,-0.02052933,0.0054181307,0.012767655,0.024608722,0.073790066,0.06777326,0.01612503,-0.015162342,-0.029289795,0.011865134,0.009019187,-0.005673845,0.03682283,-0.012900025,0.04373012,-0.0062935753,-0.036197085,-0.018916827,-0.0011326631,-0.017677365,0.006004769,-0.043224707,0.008489708,0.0012740579,0.025992587,0.019277835,-0.006185273,-0.046040572,-0.034488313,-0.011323622,-0.022057598,-0.037231974,-0.018519718,-0.04305624,-0.046786655,0.016088929,-0.0009190666,0.023754336,-0.010270682,0.011744798,-0.0000018920024,0.022021497,-0.007159995,0.029771138,-0.014945737,-0.01076406,0.010559488,-0.05391055,-0.006140147,-0.00709381,0.035667606,-0.014392192,-0.00006726597,0.009458413,-0.0015703854,0.017111786,-0.013934915,-0.017749567,0.002871519,-0.013682209,0.0029587627,0.012045639,0.021323549,0.017027551,-0.015378947,-0.022887917,0.019374104,0.018844625,-0.020589499,0.016233332,0.016149098,-0.037641115,-0.0072442302,0.0235979,0.0443318,0.045920238,-0.008802582,-0.017280256,0.012887991,0.0065342477,0.013152731,-0.026449863,0.031191103,-0.035643537,-0.012478848,-0.0010424111,0.023345193,0.01505404,-0.03338122,-0.019903583,-0.020625599,0.013044428,-0.0062815417,-0.010824228,0.030348752,0.012454781,-0.026016654,-0.017954139,0.03150398,-0.01669061,-0.0041064676,-0.03612488,-0.03511406,0.071912825,-0.018170744,0.00060055207,0.025559377,-0.014067284,0.029530467,0.01492167,-0.016762812,0.000540008,0.016570274,0.014295923,0.002901603,-0.009121473,-0.011425908,-0.00007478698,-0.021407783,0.048615765,-0.014596763,0.0006528231,-0.052659057,-0.0048345006,0.046810724,0.039349888,-0.0012161462,0.017099753,0.03027655,0.02099864,-0.018940894,0.045872103,-0.020144254,-0.02580005,-0.033429354,-0.02553531,-0.025342772,0.028423375,0.0067147515,-0.04009597,-0.0024428219,0.04072172,-0.033453424,0.037496712,-0.0010837766,0.025029898,-0.0012545033,-0.012755621,0.0019374104,-0.0119072525,0.013874747,-0.044548407,-0.013826612,-0.020685768,-0.029602667,-0.010655757,0.011859118,-0.0061190883,0.028254904,-0.036437757,0.03234633,0.014283889,0.007707524,0.0060228193,0.065174006,0.0077556586,-0.0042929887,0.0029482332,0.02052933,0.028086433,-0.03561947,-0.06734005,0.0137905115,0.0077857426,0.03494559,-0.02350163,-0.01699145,0.018110575,0.020192388,-0.012659352,-0.024079243,0.00796023,0.024861427,0.034801185,-0.033092413,-0.0038146528,0.00037774237,-0.02410331,0.017436694,0.026185125,-0.008387423,0.053621743,0.06117885,0.008068532,-0.0009784825,0.0059415926,0.016871113,-0.025583444,-0.034031034,-0.01953054,0.027725426,0.014656931,-0.05675048,0.028736249,0.012539016,-0.0066906842,0.047436472,-0.029097257,0.02075797,-0.017063651,0.0177255,0.032201927,0.032033455,0.0074367677,-0.03622115,0.023958908,0.027773561,0.018206844,-0.025222436,0.0046600136,-0.0055294414,0.002997872,0.010601606,-0.005511391,0.0021088892,0.01385068,0.03304428,0.00020475932,0.027364418,-0.00796023,0.0023961917,0.021191178,-0.03054129,0.031455845,-0.018315148,0.0025676705,-0.023297058,0.024404151,0.0034897455,0.005078181,0.034031034,0.03277954,0.014295923,0.03889261,-0.028182702,-0.0053549544,0.02229827,0.015366914,-0.021576254,-0.02336926,0.0037394427,0.0034175438,-0.016606376,0.008255053,-0.019662911,0.026281394,-0.018074475,0.0010582051,-0.021937262,0.00811065,0.009656968,-0.014031183,-0.0058904495,-0.0033754262,-0.004019224,-0.046112776,-0.014680998,0.010391018,-0.042286087,0.0072021126,-0.037231974,0.006955424,0.0026895108,0.021155078,0.029386064,-0.011197269,-0.00052346184,-0.005243643,0.013983049,0.029674869,0.011756832,-0.0028519644,0.046088707,0.022514874,0.004828484,0.028014231,-0.029025055,-0.039662763,0.02342943,0.04625718,-0.00857996,-0.01193132,-0.0071720285,0.00029726766,0.009488498,-0.028014231,-0.009638918,-0.04683479,0.0076954905,0.0050360635,0.0061732396,0.00093034806,0.032683272,-0.02854371,0.03027655,-0.022851815,0.037496712,-0.016570274,0.0009386212,0.00024405654,-0.03027655,-0.0118109835,-0.0024157462,-0.050059795,0.013610007,-0.024223646,0.03001181,-0.06570348,0.012009538,0.042165753,-0.014043217,0.0059566344,-0.012033605,0.031022634,0.0008340792,0.029867407,-0.045126017,0.026425796,0.002188612,-0.01979528,-0.0070095747,0.035763875,-0.009374178,-0.002188612,-0.008116666,0.037665185,0.0033212749,-0.008525809,0.006859155,-0.01949444,0.043657918,-0.017147887,0.017147887,0.020300692,0.01004806,0.037857722,-0.0039620646,0.021275414,-0.046955127,-0.013080529,-0.006913306,0.0064199283,0.019169534,-0.008459624,0.039470226,-0.024127377,-0.011865134,0.025053965,0.025727848,0.009055288,0.00481645,0.00081903726,0.014247788,-0.012972226,0.026425796,-0.0075932047,0.00033167624,-0.01048127,-0.01962681,0.033020213,-0.0162574,-0.012214109,0.0053940634,-0.018832592,0.04856763,-0.003035477,-0.057761304,-0.0047111562,0.040938325,0.025896318,0.0060468866,0.034392044,-0.035451,0.010114245,0.009271893,0.0034867371,0.03001181,-0.02476516,-0.007833877,0.031359576,0.0015959569,-0.010042043,0.074752755,0.004380232,-0.027942032,0.000487361,0.03080603,0.015017939,0.013044428,0.04226202,0.008194885,0.023357227,-0.014909636,-0.004912719,-0.00065056677,0.0138867805,0.019422239,0.021419818,-0.0072382134,0.011155152,0.022767581,-0.03184092,-0.005962651,0.03174465,-0.008008364,-0.0144884605,0.010914479,-0.009813405,0.011817,0.013068495,-0.036509957,-0.019735113,0.0048766183,0.017918037,0.03431984,0.004882635,0.023646034,0.008435557,0.029313862,0.018170744,0.0042749383,-0.027123746,-0.013778478,0.00059566344,0.007129911,0.019807315,-0.018904794,0.005342921,-0.0028549728,-0.010511354,0.011046849,0.019987818,0.037015367,0.018567853,-0.015198443,0.020011885,0.01151616,0.0019178558,0.003874821,-0.032466665,-0.005276736,0.0023360236,-0.016197233,0.014163553,-0.015727922,-0.041949145,-0.0009905162,0.000116575546,0.014572696,-0.015523351,-0.011576328,0.028351173,0.028495576,-0.027051544,-0.03605268,-0.0021419816,-0.02386264,0.025775982,-0.032201927,-0.045607362,-0.01121532,0.011720731,0.030493155,-0.059638545,0.011449975,0.0030836114,0.047990017,0.023585865,0.04527042,-0.006456029,-0.0131888315,-0.013140697,-0.034993723,-0.027027477,0.01992765,0.009530615,0.026064789,-0.02890472,0.014440326,0.05131129,-0.0031257288,0.004154602,0.021070842,0.008170818,-0.03465678,0.00030704495,0.00081151625,0.0034536447,-0.008922918,0.013236965,-0.020553397,0.08033635,0.0027767543,0.03431984,-0.015174376,-0.021251347,-0.0150901405,0.003673258,0.046690386,0.036461823,0.037015367,-0.036895033,-0.007220163,0.03561947,0.0002841059,-0.03174465,-0.024464319,-0.0016847047,0.013200864,-0.029410131,0.017232122,0.004620904,0.044476204,-0.014356091,0.0037695267,-0.024644824,0.0098495055,0.0052526686,-0.015511317,0.0036642328,0.0029061155,-0.028832518,0.04009597,-0.040938325,-0.02734035,0.0133212,-0.012623251,0.02570378,-0.006371794,-0.010439152,0.029650802,0.04149187,0.02673867,-0.03535473,-0.0062935753,-0.022214035,0.001483894,-0.009638918,-0.0027045526,-0.016666543,0.008200902,0.029434199,-0.0012507428,0.013646108,0.021600321,0.012575117,0.040817987,-0.007972264,0.01003001,-0.004226804,-0.033838496,-0.0060198107,-0.0048675933,-0.022526909,0.01505404,-0.007280331,0.024187546,-0.010108228,0.014091351,-0.012623251,0.034392044,0.010312799,-0.004220787,-0.025414973,-0.010848295,-0.012587151,-0.031359576,0.027147813,0.034632716,-0.0087243635,0.00047269504,0.01936207,0.0029707963,-0.013369335,-0.022671312,-0.021937262,-0.0019298894,0.008068532,0.024981763,0.039662763,-0.010541438,0.00509924,-0.01902513,-0.025944453,0.021058809,-0.0037845687,0.031768717,-0.015764022,0.0018411416,0.009795355,0.020023918,0.018736323,0.0035589386,-0.01016238,-0.008020397,-0.0094042625,-0.003396485,0.015667753,0.017496862,0.0013289612,-0.020408994,0.0030099053,-0.008531826,-0.0046961145,0.009277909,0.028134568,0.004521627,-0.009181641,-0.0030008801,-0.026088856,0.03193719,-0.0074488013,0.03715977,0.04977099,-0.018928861,0.027244082,-0.006889239,-0.03925362,-0.048351023,-0.0069915247,-0.002969292,-0.0013898814,0.041540004,0.012779688,-0.038603805,-0.0012206588,-0.011979454,0.009795355,0.011588362,-0.0037755435,-0.012220126,-0.012057672,0.025246503,0.0046991226,0.0032580986,0.02306842,-0.037039436,0.0368469,-0.025222436,-0.009097406,0.011022782,-0.017881937,0.0135378055,-0.041299332,0.016149098,-0.0012830831,-0.0026037712,-0.00043772237,0.005048097,-0.001146953,-0.0063176425,-0.0022096706,-0.034488313,-0.006522214,-0.018495651,0.012033605,-0.012803756,0.053429205,0.008182852,0.006329676,0.022406572,0.008237002,0.018832592,0.045222286,-0.0053970716,-0.011070916,-0.017906005,0.027821695,-0.006985508,-0.018134642,-0.017316358,0.0073946505,-0.013513738,0.02376637,-0.016534174,0.015415048,-0.043681987,0.0281105,-0.006239424,-0.0005264702,-0.0062514576,0.007587188,-0.035065927,0.046786655,-0.0073766,0.014909636,0.022033531,0.006985508,0.021660488,0.0030159221,0.013224931,-0.023441462,0.024380084,-0.0064139115,-0.0003914682,0.04009597,-0.018748356,0.020252557,-0.001304142,-0.035306595,-0.047653075,0.0033092413,0.0027752502,-0.0011221337,-0.015005905,-0.0191575,-0.026594266,0.0031106868,0.0062153568,0.0066545834,-0.014007116,-0.0036371571,-0.036798764,-0.020673733,0.013357301,-0.035547268,-0.0107038915,-0.041684408,0.022719447,0.014861502,-0.003727409,0.04036071,0.04445214,0.014861502,-0.006732802,0.027990164,0.04329691,0.007894045,-0.012539016,-0.017484829,-0.0069734743,0.002310452,0.003065561,-0.051888905,-0.03569167,0.016293501,0.014572696,0.024789225,-0.0049277614,-0.002226217,-0.0002512015,-0.049241513,0.009801371,0.011847084,0.03054129,-0.03614895,-0.010830244,0.015631653,-0.030493155,0.0013282092,0.01345357,0.027917964,0.0191214,-0.00457277,-0.022563009,-0.0032731406,0.0003658968,0.009741203,-0.015150309,0.006371794,0.012695453,-0.0028023256,0.01166658,-0.0044975597,0.019241733,-0.018074475,-0.015535384,-0.009434346,-0.005592618,-0.017954139,0.0054873237,-0.0026654436,-0.04486128,-0.009620867,-0.008555893,-0.024452286,-0.016088929,0.0077255745,0.0063477266,-0.005165425,-0.015234544,0.007875995,0.01699145,0.049915392,-0.004548703,0.00060393655,0.01213589,-0.042117618,0.038772274,0.004380232,-0.01298426,0.004326081,0.01699145,0.014861502,-0.04255083,-0.056365404,-0.010637707,-0.002773746,-0.013730343,-0.017460762,0.014861502,0.0045396774,0.020240523,-0.00029557542,0.0027271158,-0.0023661077,0.0078699775,-0.027508821,-0.03381443,0.0052286014,0.010679824,-0.022262169,-0.018399382,0.037472647,0.041299332,-0.008303188,-0.0013778477,-0.040938325,-0.007057709,-0.008585977,-0.018014306,-0.0031708549,0.01762923,-0.006101038,0.003658216,-0.017978206,-0.009837472,0.004377224,-0.04348945,0.0015275157,-0.004852551,0.04348945,-0.0017177971,-0.015126241,0.007087793,-0.051551964,-0.020168321,-0.039734963,0.017003484,0.02543904,0.013236965,0.012057672,-0.01689518,-0.027966099,-0.004383241,0.023718236,-0.0034085186,-0.00042004802,-0.050589275,-0.025053965,-0.024584655,-0.0133212,-0.008321238,-0.020902371,0.013261032,0.009350111,0.0020968558,-0.02286385,0.008026415,-0.015860291,0.0028068384,0.0132850995,-0.011582345,-0.029386064,0.0019028138,0.010655757,-0.0065703485,-0.00027696093,0.025727848,-0.014693032,-0.057953842,0.02647393,0.025655646,0.0221298,0.056269135,0.02880845,0.02553531,0.012232159,-0.0019900575,0.008465641,-0.07340499,0.031552114,0.0074427845,0.022719447,0.008971052,-0.023982976,-0.02500583,0.018182777,0.044379935,-0.01492167,-0.03225006,0.007749642,-0.0024127378,-0.01975918,0.022153867,-0.023670102,0.0037905856,-0.030420953,-0.018279046,-0.022623178,-0.014632864,-0.040264443,0.008670213,0.0144884605,0.004768316,-0.014115418,0.027966099,-0.015607585,-0.005309828,0.031696517,-0.030950433,-0.032490734,0.03241853,0.019205634,-0.005562534,-0.015270645,-0.01695535,0.019085297,-0.0009935246,-0.013898814,0.014512528,0.050685544,0.0020366877,-0.02623326,0.005373005,-0.023212824,-0.014656931,0.014668965,0.0027782586,-0.054295626,0.025751915,-0.009687052,-0.0012868437,0.0036251235,-0.00406435,0.042117618,0.012021571,-0.010252631,0.033188682,0.037881788,0.0054602483,0.03330902,0.006558315,-0.02186506,-0.03340529,0.006013794,0.01685908,-0.008194885,0.01715992,0.0114018405,-0.01906123,0.022623178,0.025414973,-0.04380232,-0.008441574,0.01578809,0.00451561,-0.011155152,-0.020047985,0.04469281,-0.01021653,-0.00649213,0.0147411665,-0.02273148,-0.015475216,-0.008086583,0.025679713,0.008237002,0.023995008,0.0087243635,-0.029867407,0.013573906,0.0041666357,-0.008934951,0.020445095,-0.0034386027,-0.018700222,-0.0070216083,0.015595552,-0.000029355415,-0.013441537,0.0053188535,0.021804892,0.024380084,0.01166658,0.03330902,-0.020348826,-0.009867556,0.018098542,-0.005737021,-0.00442235,0.0017448728,-0.004130535,-0.036437757,0.026618334,-0.01385068,-0.0068110204,-0.026353596,-0.040938325,-0.042598963,-0.031070769,0.015475216,-0.0001627357,0.017232122,-0.017581098,0.017605163,0.004819459,0.02647393,0.029000988,0.012587151,-0.000585134,-0.010222548,-0.013934915,0.005938584,0.0056046513,0.010210514,-0.023453496,-0.03347749,-0.045559227,-0.0058513405,0.020866271,0.0069614407,0.058868397,0.010282716,-0.029000988,0.0018998054,0.002924166,0.012033605,0.005592618,-0.020348826,-0.0016997467,0.009320027,-0.008393439,-0.035956413,-0.005255677,0.0071780453,-0.003778552,0.006798987,-0.0089770695,0.009338077,0.035234395,-0.0191575,0.0000074328664,-0.0065944158,-0.0027842754,0.023044353]},{"id":"interface-GatewayPresenceUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayPresenceUpdateDispatchData\nDescription: PRESENCE_UPDATE — user presence (status, activities) changed.\nProperties: activities: { name: string; type: number; url?: string | null; }[], custom_status: GatewayCustomStatus | null, guild_id: string, status: string, user: { id: Snowflake; }","meta":{"url":"/docs/typedefs/GatewayPresenceUpdateDispatchData"},"embedding":[-0.0012712794,-0.009570969,-0.00647092,0.027520139,0.03950546,0.01312623,0.016318474,0.014693541,0.044483975,-0.011484011,-0.0011596374,0.0048085335,0.029110499,0.004894966,0.029317936,0.02662124,-0.006591926,0.049462494,-0.028603427,0.05444101,0.0005495672,-0.0017257708,0.023394423,0.037961196,-0.05531686,0.041072767,-0.015396526,0.062000982,-0.0076464037,-0.017609201,0.03964375,-0.023233082,0.04992347,0.01445153,0.030839149,-0.010988464,-0.058359288,0.042755324,-0.022507047,-0.02280668,0.0044368734,-0.03065476,-0.008245669,0.014140372,-0.053334672,0.01972968,-0.025929779,0.01567311,0.008349389,0.047618598,-0.013667874,-0.014405432,-0.019476146,0.058774166,0.024247224,-0.023647958,0.008960179,0.010141425,-0.024800392,0.015696159,-0.013414338,0.0028609189,0.00041667713,-0.005134096,0.020375043,-0.017009934,-0.03750022,0.034596086,0.017851211,-0.02097431,0.030700857,0.041533742,-0.029986348,-0.0008074245,-0.027220504,0.05430272,-0.011063372,-0.0037454125,0.021781014,-0.00017493597,0.01445153,0.022530096,-0.067809254,-0.05780612,-0.0013749985,-0.0012014131,-0.01922261,-0.051352486,-0.019268706,0.024062835,0.027427943,0.026021972,-0.024892587,-0.0061136656,-0.008412773,-0.023590336,0.03524145,-0.021988451,-0.011823979,0.05089151,0.028234648,-0.05900465,-0.053611256,-0.053980038,0.032844387,-0.0018770278,-0.038099486,0.017217373,-0.050614927,-0.011034561,-0.060341474,-0.01919956,-0.015811402,0.007951799,-0.006061806,-0.010775263,0.032337315,-0.084773086,0.05250492,0.013713972,-0.018634867,0.0048402254,0.01848505,-0.031000491,-0.0028047378,0.007559971,0.010325814,-0.00017709678,-0.09145721,-0.014555249,0.008337865,-0.011437913,0.054026134,-0.021492906,0.021539003,-0.006396012,-0.0018150845,0.024062835,-0.04547507,-0.041395452,0.038652655,-0.012423245,0.017447859,0.049093712,-0.046996284,-0.0028753243,0.014071226,0.01593817,0.009000515,0.0361173,-0.040588748,0.045498118,-0.053841744,-0.011241999,0.024961734,0.031945486,0.009922462,-0.024293322,-0.03667047,-0.045959093,0.014889455,-0.07103607,-0.03473438,-0.010619685,-0.012884219,-0.016237803,0.0041775755,-0.0025051048,-0.07131265,-0.041395452,0.0020239633,-0.056791976,-0.04015082,0.0049381824,-0.01858877,0.014912504,-0.011080659,0.0059465626,-0.043308493,-0.05748344,0.012826597,0.01667573,-0.039712895,-0.050614927,0.005667097,-0.025076976,-0.020905163,0.058405384,0.030746955,0.025791487,-0.0044080624,0.026321607,0.021158699,0.048817128,0.053841744,-0.06988364,-0.0036560989,-0.014221043,0.0048920847,-0.03312097,-0.005767935,-0.0757841,-0.0134373875,-0.011074897,-0.013402814,0.01789731,0.0396207,-0.017217373,-0.008009421,0.026482947,0.03494182,-0.002513748,-0.026298558,-0.018796207,-0.039413262,0.056146614,-0.0132069,0.008764265,-0.038306925,0.031830244,0.00050779147,0.004632787,0.05268931,-0.009449963,-0.0014592703,0.040611796,-0.0026693267,-0.02176949,-0.043838613,-0.009853316,-0.01206599,0.011518584,-0.023717104,-0.056238808,0.012227331,0.0023394423,0.04685799,-0.018335234,0.04068094,0.03452694,-0.0043245107,-0.011881601,0.0023163934,0.022714486,0.017609201,0.024984783,0.014509152,-0.02227656,-0.04261703,0.018531147,0.050614927,0.019614438,0.018715538,-0.012008368,-0.02397064,-0.018888403,-0.009945511,0.050937608,0.02590673,0.060018793,0.0046356684,-0.03667047,-0.006355677,-0.019211086,-0.03325926,-0.006534304,0.059419528,0.011812455,0.0006644506,0.011904649,-0.0040709754,0.0014319,0.038652655,-0.026851727,0.001381481,0.022138268,0.023048691,0.009478775,0.006632261,0.012480867,-0.019153463,-0.014566774,0.02800416,0.057852216,-0.03173805,0.064351946,0.016111035,-0.0059811356,-0.0134373875,0.03505706,-0.018208466,0.018312186,0.0035379743,0.00081750826,0.033420604,0.039943382,0.02871867,-0.044898853,0.024915636,-0.012400196,0.033028774,-0.022772107,-0.04886323,-0.02052486,0.001885671,0.026713435,0.04826396,-0.02431637,-0.0032815575,-0.015235186,-0.0155578675,-0.011789406,-0.0050793556,0.009415391,-0.047111526,-0.040243015,0.019072793,0.04197167,0.009328958,0.033743285,0.023567287,0.020098459,-0.002349526,-0.04826396,-0.036877908,-0.060203183,-0.0053098425,-0.007669452,0.031138783,0.0006907405,0.000120555465,0.0015716327,0.022080647,0.021469856,0.04015082,-0.0011762036,-0.02927184,0.038306925,-0.009063898,0.00017286518,0.0081246635,-0.049739078,-0.02325613,-0.03219902,0.0035437364,-0.020743823,-0.024385516,0.00673598,-0.038283877,0.024592955,0.020905163,-0.013080132,0.006805126,-0.040657893,-0.02588368,-0.066749014,0.046466164,-0.02712831,-0.014244092,0.043423735,-0.021596624,-0.03325926,-0.013252998,0.014140372,-0.013806166,0.009749597,-0.041602887,0.028050259,0.0043792515,-0.023590336,-0.030078543,-0.04208691,-0.0049036094,-0.022599243,-0.040980574,0.0040219966,-0.039597653,-0.009657402,0.0011610779,-0.00040875413,-0.0060502817,0.05849758,0.016560486,0.02185016,0.014958601,-0.0006025072,-0.037822902,-0.021999976,-0.06075635,0.012734402,0.032014634,-0.024247224,0.0013440269,-0.01471659,-0.043585077,-0.050430536,0.058589775,0.022749059,0.026874775,-0.0138983615,0.054026134,0.017217373,0.007456252,-0.035541084,-0.014924028,0.027404895,0.016537437,0.01609951,0.016825546,-0.016514387,0.026874775,0.015315856,0.012895743,0.0019375307,0.02643685,-0.04886323,-0.0062519577,0.0030193788,0.019003646,0.025676243,0.0022342827,0.0031259789,-0.003728126,0.0215851,-0.02413198,-0.034895718,0.014416956,-0.012815073,0.00686851,-0.051490776,-0.07679824,0.042040814,0.07619897,-0.013402814,0.06495121,-0.012215807,0.008199573,-0.01461287,-0.012123612,-0.0045175436,-0.024247224,-0.025998924,-0.04635092,0.042317398,0.019141939,0.018254563,-0.0054740645,-0.05130639,0.055823933,-0.03632474,-0.036739614,0.067163885,0.0007843758,0.01805865,-0.030239884,0.04950859,-0.030677808,0.062277567,-0.016272377,0.0015284164,-0.023233082,-0.007830793,-0.038537413,0.05038444,-0.013748544,0.009674689,-0.009161855,-0.001416054,-0.0233368,0.006632261,-0.03434255,-0.016756399,0.0046241437,0.026529044,-0.0020556552,0.015719207,-0.01938395,0.03401987,-0.013886837,0.05448711,-0.009127282,0.045843847,0.0141058,0.017966455,0.08260651,0.08242212,0.023279179,-0.00065616745,-0.0104468195,0.0056382865,-0.009622829,-0.027427943,0.05693027,-0.010988464,0.044507023,0.016975362,-0.036186446,-0.016779447,0.014589822,-0.022795156,0.0048114145,-0.025952827,0.007732836,-0.0032815575,0.026206363,0.011789406,-0.032636948,-0.018623343,-0.02800416,-0.01901517,-0.02519222,-0.018254563,-0.022449426,-0.025468804,-0.037016198,0.016445242,-0.015753781,0.024892587,-0.009300147,0.030101592,0.0039269207,0.014728114,-0.009225239,0.016422193,0.0010227857,0.014013604,0.018796207,-0.07629117,0.0039960667,0.005969611,0.008689357,-0.017378714,0.009282861,0.028442087,-0.005667097,0.019499194,-0.023993688,-0.021976927,0.003768461,-0.0031230978,-0.0062173847,0.015915122,0.010919318,0.023117838,0.012273428,-0.01437086,0.002497902,0.0036560989,-0.012077515,0.007041375,0.021896258,-0.030585615,-0.0009637234,0.031438414,0.033420604,0.034135114,-0.010095327,-0.01445153,-0.007502349,0.001455669,0.0038145585,-0.03259085,0.013057084,-0.019153463,-0.015177564,0.010043467,0.019764254,0.0012619159,-0.0246621,-0.008164999,-0.010360387,0.019983215,-0.008291767,-0.019418523,0.02415503,0.010014657,-0.0057535297,-0.0011862874,0.022852778,0.0045607598,0.014416956,-0.048217863,-0.027911967,0.08408163,-0.036094252,0.028142452,-0.006228909,-0.025307463,0.018473526,0.036877908,-0.020513335,0.0043446785,0.020375043,0.025630146,0.026851727,-0.024201127,-0.010804074,0.010285479,-0.036370836,0.050015662,-0.024685148,-0.002248688,-0.05854368,-0.01805865,0.05799051,0.031922437,-0.005998422,0.029317936,0.009363531,0.02678258,-0.02028285,0.039159726,-0.012388672,0.01066002,-0.024178078,-0.019326327,-0.018807733,-0.0034256119,-0.0049554687,-0.017517006,-0.007594544,0.013010986,-0.025768438,0.022968022,0.018554198,0.03399682,0.00043792513,-0.0029588758,-0.0003388878,-0.018531147,0.018404381,-0.052228335,-0.006885797,-0.010567825,-0.028949156,-0.007755885,0.0246621,-0.01946462,0.039390214,-0.028764768,0.022311134,0.034042917,-0.0027917728,0.022345707,0.09422305,-0.0028436324,-0.02256467,0.013748544,0.019061267,0.025330512,-0.031323172,-0.06840852,0.039874237,0.00035059222,0.020190654,-0.01683707,-0.0027802484,0.03890619,0.02503088,-0.006263482,-0.038652655,0.006793602,0.02450076,0.036532175,-0.005361702,-0.0037828665,0.0069837538,-0.013644826,0.03600206,0.024731247,-0.0018424548,0.03964375,0.070851676,0.006096379,0.017355666,0.0089198435,0.015534818,-0.029202692,-0.025975876,0.0021910663,0.022149794,0.009922462,-0.055916127,0.009594018,0.03381243,-0.027174408,0.050200053,-0.026805628,0.02606807,0.0058169137,0.01158773,0.021654246,0.042363495,-0.011426389,-0.040611796,0.009824505,0.03208378,-0.017839687,-0.0047422685,0.00097524776,-0.019937119,0.019441571,-0.004727863,-0.011916174,0.027082212,0.013183852,0.0079921335,-0.017493958,0.029479276,-0.018554198,0.01373702,0.013149279,-0.030977441,0.013817691,-0.02519222,0.0040940237,-0.045221534,0.023809299,0.016560486,-0.0043677273,0.032683045,0.032567803,0.0013260201,0.011368767,-0.010066516,-0.027935015,0.0113111455,0.026828676,-0.022714486,-0.020859066,-0.010884745,-0.006401774,0.0046731224,0.009530634,-0.028280744,0.020985834,-0.007842317,0.037638515,-0.004396538,0.0036849095,-0.0005124733,-0.008372437,-0.007496587,-0.006701407,0.010469868,-0.030170737,-0.0057074325,0.024247224,-0.033097923,-0.0054077995,-0.033766333,0.006159763,-0.0053818696,-0.007306435,0.017044507,-0.01304556,-0.003826083,-0.00003839948,0.022253511,0.031991586,0.012561537,-0.00058882206,0.054855887,0.051214192,-0.018312186,0.019510718,-0.04250179,-0.036048155,0.01180093,0.022218939,-0.011737546,0.013598728,-0.0043878946,0.009184903,-0.00049734756,-0.0308161,-0.0023365612,-0.0299633,-0.005525924,-0.0011819657,0.009542159,-0.003895229,0.034918766,-0.034803525,0.0031115734,-0.0011200224,0.031300124,-0.034987915,-0.0007930191,-0.0039442074,-0.016595058,-0.022253511,0.0021305634,-0.028810864,0.0058802976,-0.02415503,0.019499194,-0.071497045,0.03134622,0.024639051,-0.038468268,0.012365623,-0.010487155,0.016087987,-0.0107118795,0.012146661,-0.057299048,0.02537661,-0.049416397,-0.021976927,0.010112613,0.03664742,-0.003964375,0.007196954,-0.009524872,0.021112602,0.01445153,0.011023037,-0.011564681,-0.021170223,0.0114436755,-0.0049698744,0.025607096,-0.00033006447,0.008487681,0.041602887,-0.01532738,0.027220504,-0.045405924,-0.020997358,0.0010933724,0.0035783094,-0.003195125,-0.004894966,0.045866895,-0.010204809,-0.01919956,0.026920872,0.029133547,-0.005332891,-0.007876891,-0.009801456,0.010389198,-0.022921924,0.020432666,-0.008810363,0.008821887,-0.0007469217,-0.009536397,0.039897285,-0.0046500736,-0.012653732,-0.010619685,-0.024708198,0.05232053,-0.012434769,-0.037062295,0.0028205838,0.024523808,0.041280206,0.0062173847,0.017228898,-0.03102354,0.0014038094,-0.00389811,0.0011682806,0.04091143,-0.018657915,0.010832885,0.019844923,-0.012342574,-0.0068512238,0.039021436,-0.0040104724,-0.030147688,0.002945911,0.02044419,0.038629606,0.02415503,0.02924879,0.009300147,0.030677808,-0.010147187,0.0030597139,-0.013644826,0.028949156,0.010366149,0.0215851,-0.031461466,0.022783631,0.02874172,-0.036947053,-0.01304556,-0.015638538,0.00336799,-0.024961734,-0.0020729417,0.0071450947,0.0059523247,0.018415906,-0.03773071,-0.047756888,0.00046421506,0.01498165,0.019130414,-0.004632787,0.032913532,0.02662124,0.013057084,0.007300673,0.023855396,-0.03136927,-0.038883142,0.019960167,-0.0025367967,0.018830782,-0.008608687,0.008153475,-0.00067741546,-0.0011646792,0.018093223,0.007237289,0.030401224,0.014601346,-0.008804601,0.018623343,0.01487793,-0.0062116226,0.014428481,-0.03773071,-0.0040364023,0.013748544,-0.0031720763,0.017782066,-0.000022969913,-0.02662124,-0.008689357,0.00352645,0.012538488,-0.016802497,-0.005664216,0.05176736,0.016168658,-0.01972968,-0.032360364,-0.0040536886,-0.0022371637,0.007738598,-0.016191706,-0.045336775,-0.0028537163,0.030700857,0.014486103,-0.050476637,0.016329998,-0.0052032424,0.029156595,0.03118488,0.035679374,-0.012423245,-0.008418535,-0.043285444,-0.022437902,-0.017885786,0.0069779917,-0.043631174,0.0027960944,-0.037592415,0.0039730184,0.04457617,0.023313751,-0.013402814,0.03134622,-0.00686851,-0.032890484,0.014970126,-0.023717104,-0.010135662,-0.021953879,0.02678258,-0.0048402254,0.07435508,0.011610779,0.03206073,-0.015523294,-0.025284415,-0.013057084,-0.007986371,0.033743285,0.026160264,0.038329974,-0.03242951,-0.0246621,0.043769468,-0.008395486,-0.011282335,-0.023855396,-0.0031086924,0.010539015,-0.031968534,-0.0022314014,0.020893639,0.05338077,-0.0103142895,0.017067557,-0.013644826,0.0053098425,0.013068608,0.0032873198,0.012803548,0.0020383687,-0.017298043,0.02643685,-0.04280142,-0.01673335,0.010550539,-0.015822927,0.01832371,-0.0009082625,-0.009962797,0.036739614,0.031438414,0.023290703,-0.04240959,0.012930316,-0.031853292,-0.014670492,-0.018173894,0.0062404335,-0.01267678,0.010458344,0.022772107,-0.0016911977,0.021608148,0.013229949,0.0010249466,0.048586644,-0.0020513337,0.0022947853,0.009265574,-0.03537974,-0.019349378,-0.020167606,-0.013506534,0.028926108,0.0055230428,0.028949156,-0.0053386535,0.019637486,-0.0150277475,0.009887889,-0.018565722,0.009582493,-0.036393885,-0.008003659,-0.008752741,-0.037638515,0.018266087,0.037776805,-0.01593817,-0.021919306,0.018738586,-0.0018107629,-0.0046788845,-0.0018943143,-0.031576708,-0.003797272,0.008666309,0.05393394,0.021792538,-0.011581968,0.0056526917,-0.006828175,-0.040081676,0.027819771,0.007969085,0.041648988,0.008268719,-0.0019663416,0.0033795144,0.016064938,0.011074897,-0.021734916,0.0053213667,-0.006856986,0.006488207,-0.01471659,0.004563641,0.030631712,-0.0042179106,-0.033190116,-0.004866155,-0.0031173355,-0.024039786,0.003627288,0.038099486,-0.0036560989,-0.025261367,-0.0050879987,-0.017217373,0.038468268,0.007813507,0.028096355,0.04187947,-0.03365109,0.016134085,0.001951936,-0.025007831,-0.052412726,-0.0006212343,0.01604189,0.010095327,0.031507563,0.002847954,-0.029456228,0.015719207,-0.017067557,0.017747493,0.019326327,0.0016566247,-0.0074793007,-0.0050908797,0.028764768,0.0040767374,0.0030481895,0.009818743,-0.036693517,0.027059164,-0.025975876,-0.014059702,-0.0034227308,-0.00700104,0.012550013,-0.03945936,0.021481382,0.021216322,-0.022126744,-0.04780299,-0.01789731,-0.0048488686,-0.011714498,-0.000395069,-0.03222207,-0.0089889895,-0.02927184,0.015915122,-0.006234671,0.059788305,0.011847028,0.0033910389,0.021550527,0.014520676,0.020317422,0.019061267,0.01092508,-0.0049439445,-0.032567803,0.025491852,-0.0028911703,-0.03664742,-0.01198532,0.0067186938,-0.010337338,-0.00064536335,0.00026830117,0.0123080015,-0.058082704,0.020386567,-0.014059702,-0.017655298,-0.010757977,-0.00018213868,-0.020375043,0.042063862,-0.029294888,0.009006277,0.018300662,-0.00034915167,0.01567311,0.0049756365,0.024708198,-0.025053928,0.02678258,-0.0040796185,-0.01583445,0.030078543,-0.03049342,0.01612256,-0.02450076,-0.024293322,-0.037684612,-0.0044685653,0.028326843,-0.003330536,-0.0154311,-0.020628579,-0.023060216,-0.008574113,0.0035811905,0.02150443,-0.02362491,-0.008758503,-0.035564132,-0.01720585,0.047134575,-0.028027209,-0.009939749,-0.03348975,0.029617568,0.0036560989,-0.0079978965,0.008574113,0.033720236,-0.006326866,-0.013875312,0.0055835457,0.055639543,0.014440006,0.007415917,-0.007761647,-0.003635931,0.01779359,0.000214821,-0.027911967,-0.029410131,0.027059164,0.0085222535,0.018508099,-0.008764265,0.0075484468,0.01683707,-0.060848545,0.026644288,-0.010377673,0.008931368,-0.030309029,-0.010688831,0.021412235,-0.014486103,0.014958601,0.008383961,0.019211086,0.013137754,-0.0064075366,-0.036693517,0.0007490825,-0.0054740645,-0.0035869526,-0.0032902008,0.0040450455,0.011812455,0.013252998,0.0062173847,0.008643259,0.008827649,-0.009369293,-0.027704528,-0.014728114,-0.027520139,-0.021757966,0.018277613,0.006372963,-0.041695084,-0.01052749,-0.025607096,-0.02344052,-0.02537661,0.011916174,0.01715975,-0.016595058,0.0041343593,-0.01434781,-0.009490299,0.038998388,-0.016583534,-0.0053789886,0.024777343,-0.04886323,0.024869539,0.029364033,-0.021562051,-0.0012338253,0.024224175,-0.0018885522,-0.031945486,-0.017240422,-0.011397578,-0.011870076,0.0022587718,-0.015477196,0.018554198,-0.009288623,0.01694079,0.007300673,-0.01418647,-0.014013604,-0.010556301,-0.010798312,-0.03420426,-0.017828163,-0.0022400448,0.0027269484,-0.021458331,0.016906215,0.022633815,-0.015995793,0.007271862,-0.028787816,-0.007600306,-0.013794642,-0.025007831,0.0020297254,0.012192758,-0.0035466175,-0.025238318,-0.012803548,-0.007727074,-0.008205335,-0.053104185,0.009334721,0.0053386535,0.0043590837,-0.00085064076,-0.013990556,0.008015183,-0.030562565,-0.017482433,-0.021631198,-0.0043850136,0.013725496,-0.0065112556,0.0000973267,-0.006321104,-0.01119014,-0.013979032,0.006931894,-0.0043331543,0.009882127,-0.021112602,-0.022576194,-0.01532738,-0.018992122,-0.010688831,-0.017701395,-0.003198006,-0.005229172,-0.0139675075,-0.04250179,0.006856986,0.0019447334,-0.010573587,0.027289651,-0.016963838,0.0009867721,-0.000914745,0.008649021,0.0042380784,-0.014416956,0.03240646,-0.005200361,-0.034227308,0.035840716,0.028234648,0.023452044,0.061908785,0.022702962,0.0334667,0.013345192,-0.007761647,-0.012826597,-0.06711779,0.02078992,0.020086935,0.015546342,0.017712919,-0.0005358821,-0.009818743,0.0099166995,0.03401987,-0.00057081523,-0.037246685,-0.0061079036,-0.0041602887,-0.007905701,0.0119737955,-0.009680451,-0.017056031,-0.005963849,-0.025745388,-0.01928023,-0.008447345,-0.030216835,0.0150968935,0.010786788,0.001951936,-0.008453107,0.024938684,-0.016698778,0.009968559,0.018842306,-0.018369807,-0.027059164,0.026990019,0.013817691,0.011581968,-0.016237803,-0.0044167056,0.03717754,0.012054466,0.010694593,0.0012359861,0.05130639,0.0023941828,-0.046166528,0.0026203482,-0.020121507,0.0021420878,-0.0057535297,0.0005510078,-0.055777833,0.009392342,-0.0095191095,0.008729692,0.007104759,0.009046611,0.05070712,0.024039786,-0.01559244,0.025630146,0.008153475,-0.017770542,0.022772107,0.010965415,-0.0087873135,-0.024431614,0.0057535297,0.007600306,0.005165788,0.02203455,0.008937131,-0.02054791,0.015085368,0.018312186,-0.03996643,-0.020732298,-0.006488207,0.005301199,-0.017413286,-0.038675707,0.04261703,-0.0060733305,-0.005402037,0.023878444,-0.012146661,-0.012261904,-0.0076118307,0.024616003,0.009761121,0.032683045,0.023140887,-0.018496575,0.002397064,0.012469342,0.005497113,0.02397064,0.025261367,-0.025123075,0.0147626875,0.007283387,-0.0011596374,-0.011437913,0.029317936,0.027911967,0.017148226,0.0202598,0.033581942,-0.031392317,-0.005499994,0.011489773,-0.016975362,0.008286005,-0.0150968935,-0.01461287,-0.038514365,0.037615467,0.0032844385,-0.027635382,-0.02590673,-0.041487645,-0.028326843,-0.021227846,0.017724443,-0.007323722,0.0061828117,-0.020063886,0.03471133,-0.008983227,0.010694593,0.009225239,0.0032729143,0.00013532102,0.0033881578,-0.009922462,0.0030136164,0.0046443115,0.02659819,-0.027497089,-0.038122535,-0.040865332,0.012734402,0.007410154,0.01895755,0.05600832,0.019141939,-0.036739614,0.017413286,0.008222621,0.011691449,0.010279717,-0.02659819,-0.019937119,-0.0018770278,-0.014290189,-0.014589822,0.007231527,0.002879646,-0.024247224,0.0044397544,-0.007738598,-0.0015860382,0.027059164,-0.030447323,-0.018035602,-0.012803548,0.016756399,0.007946037]},{"id":"interface-GatewayReactionEmoji","type":"interface","source":"main","text":"Interface: GatewayReactionEmoji\nDescription: Emoji data sent with reaction events (id is null for unicode emoji).\nProperties: animated: boolean, id: string, name: string","meta":{"url":"/docs/typedefs/GatewayReactionEmoji"},"embedding":[0.009459292,0.0036682456,-0.045441926,0.042199407,-0.0039452594,-0.00578813,0.0063567376,-0.025030382,0.008333741,-0.015396135,-0.0176589,-0.01557109,0.02598681,-0.023875672,-0.013051723,-0.0023444113,0.001382882,0.039050195,-0.014019813,0.061257955,-0.012620165,-0.01946678,0.032121934,0.04364571,0.032985054,0.04180284,-0.025846845,0.036997378,0.008351237,-0.0124568725,0.0029684214,-0.02617343,0.09928174,-0.039726693,0.0010657741,0.045861818,-0.062844224,0.0028284565,-0.052813407,0.013331653,-0.038630303,-0.051367104,0.0040735607,0.052020274,-0.05878524,0.0007800125,-0.050014112,0.0048754425,0.001424434,-0.0017539347,-0.009587593,0.02349077,0.01054402,0.030395702,-0.009523442,-0.037393946,-0.012771794,0.012690147,-0.035574403,0.011955332,-0.0011437753,-0.023000892,-0.001028596,-0.01613095,-0.0027438945,-0.01940846,-0.06960919,0.04579184,0.02717651,-0.019420125,0.04086974,0.020644818,-0.017087378,0.0077447225,0.010707312,-0.0038665293,-0.027689716,-0.019233504,0.0020688556,-0.051180486,-0.01197866,0.049874146,-0.044228896,-0.09494283,-0.0031113022,-0.0034816258,-0.03774386,-0.055892635,-0.056452494,0.027526423,0.0020426123,0.020784782,-0.116824,-0.019420125,-0.009307663,-0.0144513715,0.0012851981,0.04530196,0.0011277377,0.02224275,0.020399878,-0.07441465,-0.038746938,-0.013401635,0.009383477,0.018078795,-0.015116205,0.0048783584,-0.033941478,-0.016492527,-0.02957924,-0.014509691,0.009885019,0.025263658,0.002899897,-0.012876768,0.03163206,-0.017250668,0.0074414653,-0.017460616,-0.015197851,-0.012713475,0.052673444,-0.008940255,-0.013308326,0.0065666847,-0.0042601805,0.00028211667,-0.04299254,-0.0138915125,0.017262332,-0.01788051,-0.006829119,0.00044285756,-0.0037382282,0.0077038994,0.03209861,-0.003344577,-0.031398784,0.01687743,-0.0035370288,0.005021239,0.029019382,0.0043476587,-0.02034156,0.023584079,-0.027853006,0.007849696,0.018463697,0.013389972,-0.0119086765,0.014264752,-0.043412436,-0.019268496,0.009645912,-0.027433112,-0.016620828,0.007943006,0.0074531287,-0.030069118,0.0011189899,-0.0852386,-0.016492527,-0.025217002,-0.03170204,0.010777295,0.0019390965,-0.000978296,-0.0147779565,-0.011459623,0.039330125,-0.015617746,-0.07058895,0.012631829,-0.056919042,-0.009675071,0.022079457,0.031188836,-0.030652305,0.053653196,0.037837166,0.02552026,-0.07035567,-0.041103013,0.026663305,-0.014474699,-0.010823949,0.044905394,0.0070623937,-0.024003973,0.0015571091,0.067976266,0.062051088,-0.0154427895,0.035364456,-0.048521154,0.023455778,-0.038886905,-0.015466117,-0.02430723,0.016457535,0.009785877,0.04086974,-0.0024829183,-0.013868185,-0.004857947,-0.015267834,-0.048474498,0.0105790105,0.010596506,0.06718314,-0.036740776,-0.003563272,-0.038140424,-0.048754428,0.003117134,-0.019070212,0.047751345,0.00776805,0.042852577,-0.050154075,0.015734384,0.05943841,-0.045698527,-0.009418469,0.04014659,0.008695317,0.006245932,-0.031118855,0.0030092446,-0.042246062,-0.0070274025,-0.006829119,-0.04530196,0.01176288,-0.0059047677,0.029812515,-0.008846946,0.009669239,0.0053303284,0.017110704,-0.02006163,0.02542695,0.020353224,-0.00312005,0.03604095,0.029882498,0.0249604,-0.011220517,0.01575771,0.016982403,0.025170347,0.03781384,0.0076397485,0.010054142,-0.04539527,-0.0508539,0.03359157,0.026360048,0.022522679,0.025753535,-0.03375486,-0.0042922557,0.03613426,0.003933596,-0.03774386,0.037183996,0.049967457,-0.025916826,-0.007523111,0.058925208,-0.018778618,0.03865363,0.024027301,-0.034221407,0.033824842,0.0026112194,0.009097716,-0.02412061,0.0320053,-0.037323963,-0.008951919,0.019653399,0.0018895257,-0.046631627,0.026290067,0.0468649,-0.01700573,0.008386228,0.014428045,0.0249604,0.000535074,0.031818677,-0.04289923,0.014742966,0.06326412,0.050434005,0.0110164005,0.053933125,-0.008374564,0.03244852,-0.04527863,-0.0021621655,0.0042397687,-0.0025762282,0.020166604,-0.009447628,0.040893067,0.020994728,0.026313394,-0.010561516,-0.009820867,-0.001647503,0.0067124814,-0.0720819,0.004505119,0.042199407,0.05104052,0.023852345,-0.0067591364,0.013576591,-0.0017758042,0.050247386,-0.05066728,-0.042922556,-0.024937073,0.043015867,-0.03534113,0.050993863,0.055799324,0.0074356333,-0.0341281,0.019630073,0.021262996,0.07212856,-0.009150202,-0.02224275,0.030162428,-0.011173861,0.04068312,0.064477146,-0.015361143,-0.03753391,-0.01806713,0.04056648,-0.02570688,-0.034174755,-0.0042543486,0.033708204,0.00044030612,-0.021566253,-0.0005664203,-0.066996515,-0.0447421,0.062097743,-0.03559773,-0.010526524,-0.0070040748,-0.015011231,0.04152291,-0.017787201,0.015617746,0.026196757,0.028786106,-0.01197866,0.0021461279,-0.03307836,0.030465685,0.07119546,-0.05057397,-0.003201696,-0.02985917,-0.029765861,-0.025030382,-0.0022234002,0.0044730436,-0.04030988,-0.018090459,-0.015827693,0.007902183,0.008065475,0.05150707,-0.02108804,0.0028065871,0.025170347,-0.03940011,-0.0301391,-0.008876105,-0.020073295,0.048521154,0.080013245,-0.023887336,-0.06881606,-0.034314718,-0.017763874,0.019210177,0.0032745947,-0.005041651,0.02062149,0.0013639284,-0.014591337,-0.013133369,0.032845087,-0.016900757,-0.0067183133,-0.015011231,-0.022849264,0.036670793,0.052486822,-0.021717882,0.04135962,-0.0010942045,0.020306569,0.05104052,0.005044567,-0.029509258,0.013716556,-0.022755954,-0.020236585,0.039353453,-0.02932264,-0.01294675,-0.04112634,-0.027223166,-0.01478962,0.0014011066,0.02542695,-0.0059485068,0.024377214,-0.048707772,-0.020994728,0.005662745,0.030535668,-0.012550183,0.07184863,-0.022254413,0.025590243,-0.006205109,-0.02130965,-0.028506177,-0.024727125,0.0074239695,0.020796446,0.027129855,-0.024003973,-0.0029363462,-0.03559773,-0.022755954,-0.025403623,-0.04373902,-0.06499035,0.034524664,-0.02698989,0.026593324,-0.01653918,-0.013063387,0.009815036,0.02932264,-0.0025806022,-0.000400212,-0.015827693,0.014486363,-0.012036978,0.04084641,-0.000050573242,0.0042164414,-0.04289923,-0.021706218,0.014428045,-0.013284998,-0.04523198,-0.01806713,0.047378104,0.026756616,-0.00075887196,-0.0067183133,0.041569564,-0.03170204,0.020854764,0.009086052,-0.0217762,0.0682562,-0.007534775,-0.054679606,-0.012305244,0.07987328,-0.010054142,-0.06335743,0.016807446,0.016434208,0.016154278,0.0029217664,-0.010864772,-0.010946418,0.028739452,0.0038956886,-0.008811954,-0.040823083,0.0016154278,-0.015267834,0.022872591,-0.016247587,-0.035691038,-0.0103515675,0.014929585,0.022009475,0.032868415,-0.007091553,-0.017822193,0.003697405,0.03494456,-0.0033562407,-0.026383376,-0.02486709,-0.01775221,-0.007843864,-0.020049967,0.008986911,0.00094694976,-0.0025980978,0.011179693,0.00374406,0.027223166,-0.011383809,-0.019011894,-0.004560522,0.054586295,-0.063823976,-0.016387552,-0.01372822,0.026943237,-0.022417706,0.012526855,0.02726982,0.019233504,0.0053390763,-0.012771794,-0.0018880677,0.0124802,-0.042735938,0.019315151,0.0055985944,0.03986666,-0.028529504,0.0070565618,0.04726147,-0.011337154,0.015034559,0.007085721,0.011809535,-0.0038052946,-0.029929154,0.021601243,-0.040239897,-0.000979025,0.01572272,-0.0072490135,-0.005968918,0.028436195,0.005053315,0.0030413198,0.009097716,0.017682228,-0.018043803,-0.03375486,0.02477378,0.02838954,-0.016177606,-0.048287876,-0.008543689,-0.021321313,0.020889755,0.018801946,-0.0074239695,-0.015081214,0.024447195,-0.020084957,0.004682991,0.005983498,-0.023817353,-0.024563832,-0.016644156,-0.0014455746,0.022476023,-0.017518936,0.019944992,0.0027963812,-0.023910664,-0.01840538,0.015326153,0.00455469,0.008485369,0.006403392,0.01993333,-0.017495608,0.0039015205,0.00095934246,-0.015979322,-0.00033150532,0.0045255306,0.027106527,-0.008508697,-0.024680471,-0.014614664,0.028459521,0.03606428,-0.0021942407,-0.01946678,-0.027853006,0.014358062,-0.02967255,0.045325287,-0.028342884,-0.036857415,-0.034991216,-0.00776805,0.011436296,0.014952913,-0.01294675,-0.039703365,-0.02773637,0.04289923,-0.006555021,0.0015658569,-0.025473604,0.03947009,0.0062634274,-0.00954677,0.006694986,0.0074531287,0.009313495,-0.033241656,-0.023537423,-0.04166287,-0.01821876,-0.02449385,0.018055467,-0.010695648,0.009791709,-0.008683654,-0.008526193,0.023537423,0.043505743,0.03737062,0.041103013,0.012736802,0.009447628,-0.02214944,0.033778187,0.034338046,-0.02458716,-0.011115543,0.00482004,-0.029182674,-0.010363231,0.002759932,-0.032518502,0.046001785,-0.017250668,-0.011757049,0.013751548,0.0124568725,0.00075741403,-0.0011700188,-0.010083302,0.04254932,0.040729776,0.00035100564,0.0072606774,-0.011401304,0.04259597,0.04751807,0.033428274,0.011652075,-0.02514702,-0.03541111,-0.019781701,-0.021612907,-0.009535106,-0.0063917288,0.04824122,-0.01229358,-0.017437289,0.0050678942,0.027013218,-0.01372822,0.032518502,0.00012720765,-0.0007315351,-0.005735643,0.02140296,0.02829623,-0.0010169322,0.0075114476,0.016154278,0.01781053,0.018242087,0.024797108,0.0023079622,0.0010788958,0.012153615,0.010707312,-0.006461711,-0.012048642,0.033428274,-0.015384471,0.020959739,-0.02311753,0.04833453,0.008712812,-0.021787863,-0.012083633,0.010118293,-0.0065025343,0.003125882,-0.0015439874,-0.00438265,0.030885579,0.0059135156,0.020854764,0.023269158,0.02352576,-0.006461711,0.0026986974,0.0047121504,0.03391815,0.042945884,0.04502203,-0.02957924,-0.001382153,-0.0030938066,0.02736313,-0.0027322308,0.009855859,-0.013483281,0.024820436,-0.0025164515,-0.0034028958,-0.0041639544,0.0051816157,-0.010147452,-0.0065666847,-0.012328572,0.006368401,-0.03828039,0.009400973,-0.00873614,-0.0015804366,-0.02736313,-0.02505371,-0.00758143,0.0065375254,-0.037487254,0.010812285,-0.007179031,0.020784782,0.0048900223,-0.03097889,-0.011307995,0.0064500473,0.011249675,0.0022890086,-0.013389972,0.051740345,0.0028065871,-0.030302392,0.0010898305,-0.01572272,-0.00063057087,0.03800046,-0.009272672,-0.0087653,-0.021472942,-0.010199939,0.029719206,-0.005750223,0.003886941,-0.010946418,-0.0091327075,0.030162428,-0.025170347,-0.0074822884,-0.019011894,-0.024260577,0.03060565,0.010707312,-0.015279497,0.008654494,-0.008998574,-0.030815598,0.0029305143,-0.0042601805,0.0112321805,-0.04964087,0.02315252,0.007785545,0.0028649059,-0.08061976,-0.0061701178,0.030815598,-0.034501337,-0.0110164005,-0.015979322,0.0030209082,0.039423436,0.018696973,-0.043132506,0.026663305,-0.02315252,0.011168029,-0.02093641,0.012375226,-0.029019382,0.035667714,0.004341827,0.002055734,0.009838363,-0.017448952,0.010549852,0.0025703963,0.01257351,-0.011879518,0.03872361,-0.0011124291,0.027153183,0.027899662,-0.0006119818,0.04152291,-0.027853006,0.011442128,0.0059543382,0.008036315,0.013926503,0.007044898,-0.0013333111,0.008730308,-0.0042718444,0.04014659,-0.012328572,0.021053048,-0.015314489,0.00033041183,-0.0035749357,-0.012491864,0.04418224,-0.019571753,-0.0054557137,-0.028156264,0.0076514124,0.03097889,0.0056219217,-0.025193674,0.041172996,-0.014836275,0.014264752,-0.030535668,-0.044882067,0.00007116703,0.01594433,0.01806713,-0.015909338,0.046141747,-0.030255737,-0.019315151,0.007843864,0.043319125,0.0040123262,-0.0051174653,0.0027118193,0.004499287,0.01706405,-0.031212164,0.07096218,-0.0106839845,0.017682228,0.019315151,0.0060009933,-0.004058981,0.014637992,0.014078132,0.003787799,0.025823517,0.025007056,0.00015973854,0.0037090688,0.010404055,0.017623909,0.00016156101,-0.05771218,-0.017740546,0.04058981,0.016434208,0.021542925,0.0040706447,-0.015337816,0.019035222,-0.018393716,0.04576851,-0.012445209,-0.026266739,-0.053373266,-0.016807446,0.0011780376,-0.013506609,0.03779051,-0.007103217,0.024680471,-0.025007056,0.009325159,-0.018615326,-0.0028853172,-0.010334073,-0.0006338513,0.027783025,0.025356967,0.035994295,-0.00062182307,-0.032985054,-0.023875672,0.014171442,-0.011523774,-0.009290168,-0.012748466,0.0075989254,-0.0004096888,0.008905265,-0.018183768,-0.00010952979,-0.05150707,-0.003878193,-0.019851683,0.01669081,-0.01956009,-0.0047004865,0.021671226,-0.024703799,-0.018848602,0.0018632822,-0.002758474,0.008217104,-0.052393515,-0.02967255,-0.008712812,-0.021251332,0.03160873,-0.02745644,-0.053653196,0.05300003,-0.01681911,-0.025356967,-0.0006553563,0.015711056,0.039726693,-0.012958413,-0.021239668,-0.009966665,0.045325287,0.039073523,0.023642398,0.020353224,-0.01918685,-0.00901607,-0.056545805,-0.033964805,0.014579673,-0.026266739,0.008094635,0.0154427895,-0.011039728,0.019910002,-0.019910002,-0.031095527,0.019758373,0.014031477,-0.0020003312,0.021671226,0.00427476,-0.018650318,0.0004326518,-0.004817124,0.008100467,0.047191486,-0.0051028854,0.05593929,-0.047751345,-0.017822193,0.00083614426,-0.04271261,0.022569334,-0.009039397,-0.0028080451,-0.027713042,0.026733289,0.015209515,0.012083633,-0.024797108,-0.042922556,0.047494743,-0.013168361,0.015244506,-0.019081876,0.013086715,0.015676064,-0.010678153,0.026476687,-0.02570688,0.014031477,0.011692897,0.04455548,-0.02449385,0.004420557,-0.004630504,0.017087378,-0.055332776,-0.012246925,-0.015372807,0.018988566,0.0036420024,-0.01276013,0.00036175814,0.02717651,-0.0015250338,0.038233735,-0.005032903,-0.01775221,-0.04436886,0.012806784,-0.0004997183,-0.010532356,-0.024680471,-0.0026462106,0.039610054,-0.010433214,0.020598162,0.006601676,0.028949399,0.041919477,-0.007400642,-0.02552026,-0.022685971,-0.022464361,-0.040823083,-0.013798202,0.031095527,0.026150102,-0.017682228,0.017857183,-0.034757942,0.022044465,-0.015174524,0.021262996,0.010876436,-0.044438843,-0.00046764303,-0.010899764,-0.0136699015,0.009389309,0.029206,0.016632492,0.01862699,-0.0249604,0.014521355,0.011797871,-0.00024020011,0.022872591,0.008036315,-0.012270253,0.006887438,0.028506177,0.027293148,-0.0017568506,-0.010223267,0.03510785,0.0031783688,0.007908015,0.0047121504,-0.0030384038,-0.0019084793,-0.026196757,-0.012363562,-0.017588917,0.0086894855,0.01051486,0.00455469,-0.0029655055,0.033008378,0.008969415,0.008718644,0.015081214,0.016212596,-0.056359183,0.013693229,-0.005718148,-0.04315583,-0.0449987,0.031562075,-0.0071148803,-0.014124787,0.039796676,-0.007184863,-0.011267171,-0.006899101,0.009074388,0.0093543185,-0.010374895,0.025193674,-0.02168289,-0.029789189,-0.03097889,0.011407136,-0.0073015,0.007272341,0.0146729825,0.0122352615,-0.05519281,-0.019070212,-0.018965239,-0.02542695,0.040799756,-0.011541269,0.031585403,0.004111468,0.031258818,0.031748697,-0.0037994627,0.026593324,0.011156366,0.025753535,-0.03307836,-0.018323733,-0.0004457735,-0.017705554,0.009885019,-0.015792701,0.0008215646,-0.017110704,-0.018452033,-0.0029625895,0.01051486,-0.016247587,0.0063625695,0.0060826396,-0.010736471,0.008380396,-0.00438265,0.024003973,-0.020644818,0.039563403,-0.028342884,0.0035836836,0.022825936,0.021391297,0.02249935,0.011681234,0.05057397,-0.014299743,-0.033521585,0.00961092,0.000018110688,0.0011138871,-0.013763212,-0.019338477,-0.00006961794,-0.0049162656,0.0000076998895,0.0046246722,-0.018615326,-0.0049541728,0.0343847,-0.0010366148,0.028972726,-0.020119948,-0.031772025,0.036647465,0.016387552,0.008992743,0.030162428,-0.0007238808,0.022849264,-0.0056335856,0.022044465,0.0018574503,0.0014062094,-0.0131217055,-0.026196757,0.016900757,-0.021006392,0.008852777,-0.017425625,-0.028039627,-0.01070148,-0.000021345553,-0.02957924,-0.02605679,-0.043948967,-0.02617343,-0.027503096,0.0011926172,0.010030815,-0.01188535,-0.019338477,0.033498257,-0.008053811,0.008660326,0.038257062,0.0056539974,-0.018825274,-0.010374895,0.05687239,-0.010281585,0.012725139,0.016795784,0.06340408,0.032868415,-0.022032801,0.014836275,0.05537943,0.014929585,-0.036624137,0.023082538,-0.0027745117,-0.008508697,0.041569564,-0.009400973,0.0010038104,0.004773385,0.03310169,0.0018064214,0.005079558,0.00873614,0.038980212,-0.034058116,0.028786106,0.036297552,-0.018895255,-0.0097975405,-0.00642672,0.026919909,-0.025496932,-0.0014368268,0.018230423,0.021671226,-0.0035341128,-0.0044322205,0.010497364,-0.018113786,-0.007808873,-0.007867192,0.012911758,-0.0009075847,0.013693229,-0.0058726924,0.00023473274,-0.037837166,-0.014859603,0.0037615555,0.022522679,-0.009307663,-0.018195432,0.033824842,-0.004330163,-0.023234166,-0.034711286,-0.00018771329,-0.042316042,-0.04058981,-0.010380727,-0.02810961,0.018522017,-0.011424632,-0.0123402355,-0.0053886473,0.01635256,0.045745183,0.009220186,-0.0060943034,0.016434208,0.012981741,0.025403623,0.032308556,-0.018055467,-0.0012181316,-0.007808873,-0.0065316935,-0.0069340924,-0.051740345,0.008776963,0.013331653,-0.017273996,0.02533364,-0.030069118,0.041592892,0.0065316935,0.009715894,0.01631757,-0.013868185,0.008858609,-0.022989228,-0.039073523,-0.02486709,-0.010299081,0.034897905,-0.022720963,-0.0035778517,0.02302422,-0.00094913674,-0.0035282809,-0.04014659,-0.0063567376,-0.037837166,-0.04861446,0.03816375,-0.0072373496,-0.008479537,-0.009004406,-0.020259913,-0.018988566,-0.011063056,0.0010839987,-0.0046859067,0.004420557,0.022814272,-0.016119286,-0.0036040952,0.01176288,-0.05010742,-0.029415948,-0.009226017,-0.0042485166,0.017927166,0.023035884,0.004776301,0.008322078,-0.01478962,-0.022534342,-0.031911988,-0.037300635,0.012433545,-0.022522679,-0.02857616,-0.026919909,-0.038490336,-0.03244852,-0.013588255,0.04621173,0.024190594,0.033404946,-0.023374131,0.021694554,-0.00829875,-0.0040094103,-0.0049279295,-0.021636235,-0.06872275,0.015699392,0.028156264,-0.027153183,-0.002052818,0.0037207326,0.019700054,-0.02598681,0.028412867,0.020481525,-0.022336058,0.0154427895,0.021671226,0.005213691,-0.003910268,-0.021332977,0.023467442,-0.023677388,0.00066045916,-0.016025977,-0.0080304835,0.02162457,0.017915502,0.0013967326,0.013098379,0.008053811,-0.024540506,-0.025566915,0.030932235,0.00031382745,-0.022207757,0.017273996,-0.02108804,0.018801946,-0.0008135458,0.030022463,-0.027246494,0.012176943,-0.032985054,-0.0065725166,-0.0068349508,0.0011306537,-0.029415948,0.031748697,-0.0012910301,-0.0055840146,0.019618409,0.00053325156,-0.016247587,-0.017157359,0.010275753,-0.0066191717,-0.018078795,0.006852446,-0.015384471,-0.008421219,-0.003117134,0.015046222,-0.0030879749,-0.0071557034,0.0067941276,0.01478962,-0.021064712,0.028226247,-0.0020047051,0.014043141,-0.05519281,-0.0068466146,0.025310311,-0.010870604,0.024540506,-0.025940154,0.024820436,-0.05304668,0.0008820702,0.044065602,0.033708204,-0.012106961,-0.018020475,-0.022639316,-0.012375226,-0.028179592,-0.00051976537,0.005251598,-0.012060305,-0.0003918287,0.000489877,-0.038397025,0.0036157588,0.021297986,-0.023560751,-0.023630735,0.0023254578,-0.0037382282,0.007803041,-0.0016883261,0.036880743,-0.01875529,0.007797209,0.008397892,-0.0017597665,-0.01681911,-0.02224275,0.015174524,0.008631166,-0.024633816,-0.0320053,0.0076047573,0.018510353,0.023502434,-0.005977666,0.0077213948,0.009698398,0.02617343,-0.014917921,0.026453359,-0.009144371,0.0014900425,-0.008753636,0.018883593,-0.0011124291,0.006205109,0.0038257062,0.030372376,-0.017903838,0.0062226043,-0.03347493,-0.029742533,0.032238573,-0.00015290432,-0.013716556,0.0016956159,0.023980645,-0.01428808,-0.011844526,-0.007709731,-0.022802608,-0.01478962,0.008718644,0.019944992,0.0049104337,-0.04551191,-0.0067124814,-0.024167266,0.033498257,0.019665062,0.026150102,-0.04726147,-0.0051553724,-0.019151859,-0.0021023888,-0.0055956785,0.016935749,-0.011086384,-0.01042155,-0.03265847,0.010118293,-0.015349479,0.01326167,0.011564597,-0.008841114,-0.020294905,0.024657143,-0.0010905595,-0.003032572,-0.0042135254,-0.005050399,-0.017763874,-0.0054003107,-0.01747228,-0.036577486,-0.040729776,0.013110042,-0.036740776,0.02321084,-0.045325287,-0.007318996,0.0060884715,0.010345736,0.0026039295,-0.00776805,-0.0021155106,0.023572415]},{"id":"interface-GatewayReadyDispatchData","type":"interface","source":"main","text":"Interface: GatewayReadyDispatchData\nDescription: READY — v, user, guilds, session_id, shard?, application\nProperties: application: { id: Snowflake; flags: number; }, guilds: (APIGuild & { unavailable?: boolean; })[], session_id: string, shard: [number, number], user: APIUserPartial, v: number","meta":{"url":"/docs/typedefs/GatewayReadyDispatchData"},"embedding":[0.015508804,0.025988761,0.03291142,0.014331567,0.047242988,-0.007549665,-0.03708293,0.01076787,0.020755181,-0.00546391,0.02270018,0.0032278015,-0.0073577245,-0.008650124,0.03178537,-0.011970698,-0.040435493,0.046884697,-0.0015787117,0.054255217,0.012904809,-0.0010924621,-0.0044434257,0.018323932,-0.023839027,0.008298233,0.007037823,0.0352403,0.007914352,-0.031043198,0.04368569,-0.036750235,0.065362185,0.026167907,0.033116158,-0.00053263525,-0.018874163,0.015304066,-0.029174976,-0.03941181,-0.052975614,-0.026065538,0.005863786,0.030147476,-0.030915238,-0.0034709265,-0.015419231,-0.043378584,-0.0177865,0.033320893,-0.012898411,-0.007818382,-0.019641925,0.10625833,0.012162638,-0.018771794,0.0053903325,0.003342966,-0.0018458291,-0.0017514583,-0.00575502,0.026743729,-0.0077096154,0.016903572,0.022981692,-0.007869566,-0.053385086,0.04788279,0.044786148,0.017991235,-0.005124815,0.026116721,-0.028995832,0.013243903,0.025643269,0.049648643,-0.022201134,-0.033474445,0.004251485,-0.04023076,-0.00009022209,0.011554826,-0.046859108,-0.08829269,0.014792224,-0.017338637,-0.048420224,-0.017095512,-0.0007709615,0.032348394,-0.0018602246,0.016762815,-0.05758219,0.0044402266,-0.028253661,-0.05056996,0.06935455,-0.013051963,-0.039053522,0.029738002,0.050288446,-0.04399279,-0.061369818,-0.042406082,0.0646456,-0.0026023951,-0.028125701,0.018733406,-0.05266851,-0.017018735,-0.06827968,0.019795477,0.0037172502,-0.011497244,-0.026897281,0.0049808593,0.0053807357,-0.04580983,0.0065003894,-0.0016378934,-0.012712868,0.015432027,-0.0034421354,-0.021868436,-0.05548364,0.007946342,0.0148945935,-0.04322503,-0.057428636,0.019539556,0.020064194,-0.00811269,0.057633374,-0.0119259115,-0.029482082,-0.017709723,-0.039462995,-0.02922616,-0.06909863,-0.031247934,-0.000092621354,-0.007875964,0.060294952,0.06280298,-0.033244118,0.0014499516,-0.038976744,0.04419753,0.010441571,0.0022329094,-0.04532358,0.05353864,-0.02001301,-0.02774182,0.013832522,-0.017581763,0.019833865,0.006254066,-0.0025752035,-0.039718915,-0.008906045,-0.08107572,-0.02473475,-0.00539993,-0.03145267,-0.027434714,0.02395419,-0.015687948,-0.06766547,-0.020384096,0.020153766,-0.022738567,-0.026538992,-0.004942471,0.00902121,0.023647087,0.015201698,0.037006155,-0.029661225,-0.05476706,0.024888301,-0.006679534,-0.009833759,-0.07462652,-0.019091696,0.011759562,-0.0052911635,0.016366137,0.013045565,-0.017415414,-0.049341537,0.037927467,-0.00050744304,0.008547756,0.06556692,-0.06188166,0.011887523,-0.009756982,0.029507672,-0.017888866,0.011906717,-0.036903787,0.032246027,-0.00135798,0.01399887,-0.014523508,0.0071401917,-0.011906717,0.014062851,0.006186886,0.036647864,0.00040267545,-0.019757088,0.03178537,-0.05993666,0.033883918,-0.010563133,0.012700072,-0.012265006,0.026948465,-0.031990107,0.010787063,0.015534395,-0.014267587,0.0076776254,0.023429554,-0.010044893,-0.034958787,-0.021318207,0.0019705906,-0.0013363867,0.022495443,-0.016378934,-0.05353864,-0.04399279,0.012949594,0.027102018,0.010780665,0.012047473,0.019897847,-0.013819725,-0.020819161,-0.014395547,0.02043528,0.052003115,0.012130648,0.007971934,-0.021638107,-0.022098765,0.032143656,0.01994903,0.015943868,0.023339981,-0.030301027,-0.00252242,-0.045016475,-0.0059885476,-0.003630877,0.028330438,0.0047185407,0.011145352,-0.01914288,0.008797279,0.045886606,-0.012149842,-0.030864054,0.044888515,0.019897847,-0.020217746,0.009225947,-0.012309792,0.016762815,0.07580376,-0.023775047,-0.024747545,-0.011254119,0.019488372,0.009161966,0.0065707676,0.026142314,-0.03181096,-0.016609263,0.013397456,0.08153638,-0.009590633,0.046424042,0.023045672,-0.017249065,0.03790188,0.02534896,-0.013179923,0.017223474,0.047422133,-0.029200569,0.044862922,0.032681093,0.007556063,0.003918788,0.009289927,-0.02861195,0.053589825,-0.021906825,-0.01774811,-0.0040883357,0.03398629,-0.0007033824,0.049802195,-0.013691765,0.017671334,-0.02172768,-0.007843974,-0.0077160136,-0.029072607,-0.010236834,-0.044120755,-0.03152945,0.033627998,0.041843057,0.00863093,0.0080807,-0.026666952,0.002570405,0.020665608,-0.038336944,-0.012898411,-0.011138955,0.019411596,-0.06316126,-0.0077735954,0.025003467,-0.018285545,-0.038004246,0.021983601,-0.0017706524,0.01774811,0.0022680985,-0.04035872,0.0077288095,0.0010284819,0.008394204,0.019897847,-0.067000076,-0.03989806,-0.0008165474,0.018311135,0.0028135297,-0.03559859,-0.006442807,-0.011055781,0.030045107,-0.03452372,-0.015406434,-0.02143337,-0.0047057443,-0.01719788,-0.04212457,0.040102795,-0.018375117,-0.03595688,0.050262854,-0.016494099,-0.023467941,0.0009693002,0.015931072,0.0030022713,0.007312938,-0.017568966,-0.00859894,0.0010836648,-0.03820898,0.009712196,0.03127353,-0.04122885,-0.03106879,-0.024005376,-0.003045458,-0.042380493,-0.0058893785,0.03828576,0.0242485,0.04936713,0.046347264,-0.0065355785,-0.00539993,0.018861366,0.009872147,-0.059117716,0.04135681,-0.016417323,0.0038068225,0.041049704,-0.0060429308,-0.01797844,-0.0143443635,-0.0043954407,-0.029430898,0.012015483,0.006097314,0.025029058,-0.041459177,0.020320116,-0.00018854169,-0.0009205153,-0.01897653,-0.015380843,0.0132567,0.039360628,-0.0050896257,0.008765289,-0.051491275,0.024350869,-0.014574692,0.04174069,0.008317428,0.033013787,-0.046347264,0.02062722,-0.026180703,-0.031836554,0.019296432,0.026820505,0.02541294,-0.03145267,0.013282292,-0.001473944,-0.0025256188,0.03907911,-0.03477964,0.0073833163,-0.03424221,-0.05110739,0.011132557,0.09847834,0.0053583425,0.051337723,-0.005425522,0.010102475,-0.010268824,-0.001209226,-0.0025032258,-0.001144446,-0.04852259,-0.040819373,0.024606789,-0.06331482,0.015432027,-0.00662835,-0.06403139,0.050442,-0.041100886,-0.024504421,-0.004283475,-0.01338466,0.01742821,-0.048548184,-0.034933195,0.0009820962,0.04506766,0.0021849242,-0.007588053,-0.006679534,-0.0067435144,-0.05241259,0.059629556,0.0158415,0.016954755,0.001541923,0.008656522,-0.008023119,0.010192048,-0.019091696,0.007939944,0.027946556,-0.0012820035,-0.007255356,0.004280276,0.011561224,0.033679184,0.05794048,0.032681093,-0.018822977,0.010819053,-0.016737223,-0.017696926,0.070429415,0.07355165,0.009168364,0.022303501,-0.033423264,0.0020089785,-0.03449813,-0.0020761578,0.06807494,-0.015112126,-0.0014539503,-0.007933546,-0.0076776254,-0.03856727,-0.0077480036,0.026538992,0.005863786,-0.038644046,0.0059501594,-0.008074302,0.022546627,-0.018080808,-0.053333905,-0.023595901,-0.030710502,-0.06710245,-0.011810747,0.023276001,-0.0048497,-0.023071265,-0.055381272,0.030403396,-0.013039167,0.04470937,-0.031017607,0.013832522,-0.038874377,0.007255356,0.0026951663,-0.013218312,0.013691765,0.008573349,0.0035764938,-0.058145214,-0.008746095,0.00049264764,0.015726335,-0.022917712,-0.0046449634,0.04532358,-0.0021097474,0.03229721,-0.016378934,-0.02505465,0.03204129,-0.02884228,-0.007939944,0.014651468,0.027767412,-0.009718594,-0.006378827,0.011324497,-0.0069610467,-0.0018634236,0.01070389,-0.001661886,0.017082715,0.0023992578,-0.009501061,-0.00091411726,-0.0032853838,0.0061101103,0.00018564258,-0.025451329,-0.027025241,-0.00565905,0.010473561,-0.023301592,0.022418667,-0.024158929,-0.012847226,0.03744122,-0.0032629909,0.0031350304,-0.029405305,-0.019616332,-0.016366137,0.016724426,0.008151079,-0.01012167,0.0041555148,0.011490846,-0.010755073,0.027946556,0.010108873,0.032834645,-0.029200569,-0.044043977,-0.03145267,0.07309099,-0.050032526,0.011305303,0.027767412,-0.0097633805,-0.007933546,0.020384096,-0.011900319,-0.018029623,0.000918116,0.027972149,-0.005771015,-0.01888696,-0.0132567,0.011631602,-0.038132206,0.012111454,0.01338466,-0.022265114,-0.022188338,-0.039002337,0.03964214,0.03877201,-0.011638001,0.02363429,-0.019987417,0.0049136803,-0.003314175,0.01273846,-0.025169816,-0.03365359,-0.034702867,-0.0049200784,-0.030608132,-0.0065035885,-0.014689856,-0.013947686,-0.02405656,0.008842065,-0.02897024,0.027409123,0.0022377078,0.03472846,-0.021574127,-0.019680314,-0.039795693,-0.042713188,-0.009065996,-0.018541465,-0.029507672,-0.026065538,-0.043404177,0.009321917,0.033013787,0.010812656,0.03928385,0.02615511,-0.008291835,0.015547191,0.034882013,0.006036533,0.09161966,-0.0043218634,-0.03437017,0.011516438,-0.003045458,0.011484448,-0.043378584,-0.013755745,0.018400708,-0.044658188,0.029610042,-0.012469743,-0.022687383,0.020384096,-0.008477378,0.016724426,-0.03941181,-0.018835774,-0.012623295,0.0008325425,0.015444823,0.025105834,0.032885827,0.039923653,0.02738353,0.016596466,0.017927255,0.027562674,0.060602054,0.0028823086,0.0056334576,-0.008515766,-0.008682115,-0.020857548,-0.016737223,0.022303501,0.013307884,0.036059245,-0.027332347,0.019462781,0.021958008,-0.012392967,0.0766227,-0.0044242316,0.04445345,0.0017818488,0.021126267,0.047370948,0.020051397,-0.035675365,0.025144223,0.010134465,0.030684909,0.03889997,-0.025758432,-0.016417323,-0.015521599,0.00788876,0.029072607,-0.052617326,-0.0014707451,0.011286109,0.013525416,0.010755073,0.017773703,0.009577838,0.0029654829,0.015982257,-0.05747982,-0.01742821,-0.03649431,0.025835209,-0.030019514,0.0007237761,0.021331003,-0.032553133,0.006916261,0.008650124,-0.01021764,0.01994903,0.02861195,-0.00092851283,0.040717006,0.005806204,-0.013026371,-0.0068778726,0.034933195,0.026897281,0.028202478,0.0024872308,-0.0038324147,0.024875507,0.010691093,0.026743729,0.020588832,-0.004056345,0.033500038,-0.028765503,-0.0053487457,0.029993923,-0.019744294,-0.013115943,-0.015355251,0.031734183,-0.026359847,0.021023897,-0.03608484,0.009002016,-0.02136939,-0.00811269,0.0011436463,-0.013794133,-0.005447915,0.0005902175,-0.05033963,0.019526761,0.018426301,-0.003688459,0.017082715,0.06341718,0.014587488,0.0074217045,-0.03756918,-0.02227791,0.004520202,0.0013259898,-0.009481867,0.008035914,-0.018080808,0.007927148,0.03808102,-0.04261082,-0.021958008,0.00026391837,-0.028535174,0.0130199725,-0.023250408,-0.03178537,-0.0031446274,-0.01319272,0.022303501,0.0037876284,0.023365574,0.001671483,-0.0071785795,-0.014114034,-0.028995832,-0.0033685581,-0.04102411,-0.028714318,-0.011209333,-0.0054959003,0.0023400763,-0.12345622,0.013141535,0.027357938,-0.020806365,-0.012540122,0.021817252,0.023979783,0.01888696,-0.019731497,-0.06566929,0.02399258,-0.0300707,-0.013576601,-0.0011100566,0.047191802,-0.033474445,0.03314175,0.020384096,0.022175541,-0.010723083,-0.01442114,0.0058925776,-0.027562674,0.0323228,-0.020947121,0.004888088,-0.011119761,-0.0041331216,0.042559635,-0.042687595,0.02486271,-0.021881232,-0.018631037,0.011497244,0.033090565,0.016903572,-0.0049360734,0.02873991,0.041638322,-0.0027671442,-0.020895937,-0.004174709,0.018541465,0.0061421003,0.020844752,-0.012962391,-0.0050256457,0.014907389,-0.012073066,0.019744294,-0.020895937,-0.0049776603,0.0010308812,-0.006423613,-0.003950778,0.025630472,-0.018989326,0.038234573,-0.029738002,-0.041177664,0.0118939215,0.033320893,0.011062179,-0.049802195,0.039002337,-0.0300707,0.0043410575,0.004894486,0.03544504,0.02873991,0.0064524044,0.0404099,0.04099852,-0.00721057,-0.010819053,0.053999297,-0.019091696,-0.01596946,0.011260517,0.0002987076,-0.00050584355,0.016250974,0.04248286,-0.015892684,0.014523508,0.012066668,-0.0023096856,0.018362321,0.030582542,-0.016813999,0.009072394,0.005895776,0.004878491,0.038362533,0.010851044,0.017568966,-0.0071337936,0.0063308417,-0.025771229,-0.0078119836,0.043839242,0.011855533,0.005758219,-0.03437017,-0.050518773,-0.007600849,0.016046237,0.03802984,-0.025464123,0.011772359,-0.0013267896,0.0018634236,-0.02007699,0.0091171805,-0.025400143,-0.028637543,0.029302936,0.0029990724,0.011561224,-0.030301027,0.0012652087,0.03562418,0.012386569,0.025489716,0.008093497,0.009852952,0.030556949,-0.035137933,-0.013883706,0.016698835,-0.01503535,-0.004548993,0.0017258662,0.009884942,0.009168364,-0.009456275,-0.0018794187,-0.0068074944,-0.053589825,-0.019258043,-0.0005026445,0.00035309079,-0.008886851,-0.035803325,0.046731148,0.007229764,-0.037799507,-0.015623967,-0.0062252744,0.009161966,-0.014152423,-0.022457054,-0.009609828,0.021778863,0.003349364,0.034063064,-0.047217395,0.024082152,0.0008597341,0.042713188,0.018311135,0.03795306,-0.0031446274,-0.0035700959,-0.0323228,-0.03204129,-0.04468378,0.006666738,-0.03352563,0.0012420159,0.011823543,-0.0061996826,-0.018938143,-0.023429554,-0.007025027,0.045502726,0.00539993,-0.024683565,0.005115218,0.0015827104,0.021510147,0.01988505,0.008477378,0.017108308,0.06413376,0.0190789,0.014011666,-0.029993923,-0.033090565,-0.0065579717,-0.0041843057,0.043045886,0.011695582,0.014600284,-0.013295088,-0.046014566,0.029482082,0.02509304,0.024043763,-0.023173632,0.012284201,0.013423048,-0.0034389363,-0.031299118,0.012233016,0.01765854,-0.00433146,0.0054959003,0.0026215892,0.0047249384,0.019961827,0.012680878,0.011292507,0.008938036,0.017210677,-0.004254684,-0.041715097,-0.021753272,-0.007946342,-0.030966422,0.0007529671,-0.0028423208,-0.020883141,0.01079986,0.000035613986,0.033576816,-0.042073388,-0.022111561,-0.039488588,0.0144083435,0.0019449984,-0.0076904213,-0.04035872,-0.014805021,0.018989326,-0.0047473316,0.04296911,0.0265134,0.018131992,0.048497,0.0242485,-0.0065387776,-0.008291835,-0.026052741,0.012245812,-0.0005218386,0.027588267,0.028944647,0.0049840584,0.02848399,-0.0107294815,0.0071273954,0.011945105,0.012495335,-0.027332347,0.009405091,-0.011254119,0.026257478,-0.02001301,0.007901556,0.021394983,0.033474445,-0.0010124869,-0.017530577,0.035009973,0.013858113,0.022137154,0.008867657,0.00054463156,0.008483776,0.03828576,0.026180703,0.015815908,0.016826795,-0.0055982685,0.016826795,-0.057377454,0.006407618,0.00046185715,0.016686039,-0.0056686467,-0.013730153,-0.022073172,-0.003960375,-0.0106974915,-0.008285438,-0.036033656,-0.023032876,0.004193903,-0.020524852,0.034830827,0.03649431,-0.006967445,-0.05773574,-0.009801769,0.0061996826,-0.03623839,-0.0015915077,0.03449813,-0.029021423,-0.02725557,0.02253383,0.0040851366,-0.009776176,0.0023000885,0.001959394,0.021215837,-0.007805586,0.012751256,0.0014331568,0.009865749,-0.02848399,0.022943303,0.008170273,-0.00892524,0.015982257,-0.015368046,-0.009360305,0.0068970667,-0.00953945,-0.0026359847,0.012316191,-0.00065339793,0.018938143,-0.009686604,0.027946556,0.008426194,0.013947686,0.016570875,-0.048087526,0.03790188,-0.0407426,0.0003882799,0.025681656,-0.012111454,0.00950746,-0.050646733,0.022034785,0.010076883,-0.013922093,-0.05182397,-0.007818382,0.011695582,-0.000995692,0.015867092,0.011746767,0.015982257,-0.030045107,0.009929729,-0.023148041,0.06418495,-0.005118417,0.023250408,0.004315465,-0.00020363701,-0.009552245,-0.010236834,0.0065515735,-0.006327643,0.0033013788,-0.007588053,0.027153201,-0.0016954755,-0.0046737543,-0.0041139275,-0.011113362,-0.0029206967,0.024274092,0.007191376,-0.024913894,0.025400143,0.006455603,-0.007895158,-0.0053071585,-0.004225893,-0.05277088,0.0404099,-0.03657109,0.025643269,0.038592864,-0.017876072,-0.0028823086,0.013576601,0.008023119,-0.026590176,-0.00012696073,-0.0038867977,-0.011049382,0.0023240813,-0.0015771122,0.019603537,-0.016775612,-0.022674587,-0.0046897493,0.000911718,0.00607812,0.01590548,-0.027716227,-0.014126831,-0.008349418,-0.01878459,0.0171339,-0.0052431785,-0.041305624,0.0015931072,-0.037594773,0.027178794,0.054306403,0.001060472,-0.012789644,-0.041049704,-0.01765854,-0.011497244,-0.00027531484,-0.0092771305,0.029251752,-0.0032517943,-0.019360412,-0.010959811,0.03045458,0.027204385,-0.032988198,0.0054095266,-0.020934325,-0.0008237452,0.031017607,0.036801416,-0.02861195,0.006749912,0.0075432668,0.01988505,-0.001115655,-0.006615554,0.03854168,-0.04703825,0.048087526,0.007901556,0.0035892897,-0.01619979,-0.010172853,0.011484448,-0.008157477,-0.0029654829,0.010351998,0.0068906685,0.003918788,-0.03721089,-0.021766068,-0.021817252,-0.028663134,-0.015355251,0.019846661,0.009622624,0.0062476676,-0.018810183,0.0055310894,-0.022968896,0.003650071,0.0378251,-0.022367481,-0.019053306,-0.030761685,0.027895372,-0.019322023,0.010064087,-0.042457268,0.02486271,-0.024952283,-0.001826635,-0.0056814426,0.028688727,0.026846096,-0.01338466,-0.022457054,-0.009283529,-0.00963542,0.014459528,0.0041139275,-0.0018714211,-0.009820962,-0.0193988,-0.0065835635,0.028586358,-0.023621494,-0.000031140367,0.018643834,-0.004142719,-0.024235703,-0.0019577944,-0.00065939606,-0.026167907,0.0031030402,-0.0056718457,0.00007442698,-0.0050832275,0.0031094383,0.016634855,-0.014664264,-0.0041235248,0.004005161,-0.031119974,-0.033116158,-0.025988761,-0.014139626,0.020089786,-0.036596682,0.032143656,-0.018413505,-0.012188231,-0.0106655015,-0.014869001,-0.016647652,-0.045835424,-0.006132503,0.0067563104,-0.0056974376,-0.01785048,-0.0005970153,0.008445388,-0.003381354,0.020614425,-0.01522729,0.027716227,0.012469743,0.012712868,-0.008554154,-0.036903787,0.03449813,0.011638001,-0.039949242,-0.0047089434,-0.0066027576,0.0039123897,0.022508238,0.003051856,0.0216637,-0.009321917,-0.007287346,-0.038848784,0.005774214,0.010300814,0.021331003,-0.020345706,-0.0014555498,-0.039590955,-0.0099873105,-0.0032693888,-0.004225893,-0.01442114,-0.0050224466,-0.046296082,0.022879323,-0.016929165,-0.006343638,-0.016366137,-0.012700072,-0.028944647,-0.0106974915,0.024530012,-0.03895115,-0.021574127,0.023711067,0.022521034,-0.016954755,0.04578424,0.019219656,-0.007293744,0.028586358,0.016762815,0.011087771,0.013781337,0.020448076,0.022585014,-0.04898325,-0.014114034,0.010492754,0.0143443635,-0.0006717922,0.0069290567,0.0053007603,0.03531708,0.016775612,0.0010620715,-0.04726858,-0.011612408,-0.0098593505,-0.0056430544,0.015342454,-0.0059341644,-0.012488937,-0.020000214,-0.010288018,-0.025796821,-0.005748622,-0.023314388,0.007882362,0.004836904,0.0062220753,-0.027306754,0.023058468,-0.012584908,0.029302936,0.024350869,-0.014139626,-0.01028162,0.015252883,-0.016186994,-0.023711067,0.016647652,-0.000009390846,0.024478829,0.01755617,0.016903572,-0.005383935,0.0171339,-0.0040659425,-0.007971934,0.027357938,-0.0056686467,0.0052239844,-0.010819053,0.008432591,-0.030301027,0.006749912,-0.021203041,-0.001994583,-0.0019178068,-0.022879323,0.013576601,-0.018771794,-0.054971796,0.023263205,0.03756918,0.0052047903,-0.0027335545,0.02272577,-0.019373208,-0.010793461,0.0065227826,0.024721954,0.00252242,0.008938036,-0.007057017,-0.029379712,0.0090532,0.016545283,-0.010755073,-0.0053903325,0.009846554,0.0017866474,-0.0043890425,-0.033192933,0.023966987,0.009014811,0.0016043038,0.0024712356,-0.010742278,-0.011817145,-0.02117745,0.026743729,0.017377025,0.024069356,0.008963628,-0.013947686,0.030224252,0.0052879644,0.028995832,0.024299685,0.021945212,0.0011044584,0.010902228,0.0068138926,0.0119643,-0.005438318,0.030173067,0.024913894,0.01751778,0.013295088,0.024517218,-0.010819053,-0.006916261,0.0008325425,-0.016186994,-0.021625312,0.0076264413,-0.004788919,-0.044965293,0.025975965,0.02615511,-0.015662355,-0.019552352,-0.009456275,-0.014331567,-0.04813871,0.011286109,0.034063064,0.0006382026,-0.012572112,-0.0024136535,-0.022994488,0.015329659,0.035777733,0.019718701,-0.009238742,0.0038324147,-0.002010578,-0.017965643,-0.00090771925,0.01797844,-0.019296432,-0.0068586785,-0.035086747,0.008272641,-0.0006825889,0.012431355,0.046296082,-0.004824108,-0.014011666,-0.002624788,-0.0018970133,0.008099895,-0.010684695,-0.036903787,-0.020256136,-0.015368046,-0.040077206,-0.0046417643,-0.0074025104,-0.011254119,0.011804349,-0.00072177674,0.019117286,0.011190139,0.004344256,0.032604314,0.00078215805,0.0065707676,0.0033109759,0.024888301]},{"id":"interface-GatewayReceivePayload","type":"interface","source":"main","text":"Interface: GatewayReceivePayload\nProperties: d: T, op: GatewayOpcodes, s: number, t: GatewayDispatchEventName","meta":{"url":"/docs/typedefs/GatewayReceivePayload"},"embedding":[0.015024166,-0.007658541,0.0053975936,0.0012479456,-0.01110641,0.04227759,-0.031366456,0.006938455,0.03893346,-0.028046736,0.022993932,0.0058125583,0.012119412,0.013193439,0.052285563,-0.05570292,0.025678998,0.035247598,-0.020052563,0.048990253,-0.010044589,-0.008842411,0.03971457,0.04300988,-0.021297457,-0.022041952,0.0054464126,0.0024974167,0.00016238166,-0.015951734,0.048868205,-0.03969016,0.03637044,-0.02135848,0.03597989,0.031708192,-0.020516347,0.031219997,-0.041130334,-0.0036309417,-0.05033279,-0.021395097,-0.033148363,0.00014026038,-0.025141984,0.015976144,-0.040056307,-0.02231046,-0.029755415,0.0068591237,0.009873721,-0.016757254,0.013254464,0.06292819,0.012607606,0.0287058,-0.011136922,-0.0055867685,0.025923094,-0.012485558,-0.060243122,-0.0043266183,-0.005434208,-0.0029245864,0.009220761,0.024641585,-0.07132512,0.051846188,0.03414916,0.036199573,-0.0009550292,0.05736278,-0.001795638,-0.01173496,-0.015658818,0.013046981,-0.033294823,0.020772649,0.030194791,-0.04066655,-0.0010595332,0.0034936373,-0.047257166,-0.08152837,0.02951132,-0.074400745,-0.062488813,-0.0034539716,-0.021626988,0.00031923302,-0.026948301,0.014169827,-0.0034661763,0.01783128,-0.024385283,-0.05101626,0.01150917,-0.024080163,-0.04672015,0.01986949,0.060145482,-0.06829832,0.0072862934,-0.003080198,0.022017542,-0.009733365,-0.027509725,-0.011844804,-0.0028742414,-0.013315488,-0.07718345,0.005351825,0.033856243,0.019247044,0.012442841,0.034637354,0.0007166533,-0.009959155,0.030390067,-0.0049246554,-0.036858637,0.012418431,-0.029071944,-0.023311257,-0.05555646,-0.0136084035,0.011387122,-0.0051840087,-0.015671022,0.00418016,0.039592523,-0.058290347,0.022029748,0.027094759,0.0038872436,0.018624596,-0.032879855,0.009867619,-0.025581358,0.019662008,-0.0152194435,-0.028876666,0.05648403,0.022408098,-0.01903956,0.0119851595,-0.023628583,0.040495683,0.029071944,0.04296106,-0.025556948,0.036272805,0.001122083,-0.017770257,0.026753023,-0.013095801,-0.0064197495,0.0031793625,0.0022273846,0.006328213,0.009074303,-0.04596345,-0.021065565,0.02868139,-0.05785097,-0.013071391,0.008580007,-0.01629347,-0.040886234,-0.016915917,0.0032495405,-0.0526273,-0.07098339,0.021797856,-0.036175165,0.016085988,-0.033856243,0.0011831073,0.0021663602,-0.009031586,0.027412085,0.024421899,0.010911133,-0.053847782,0.005321313,-0.03568697,0.00496127,0.0647345,0.029169584,-0.027387675,0.006160396,0.021590374,0.02855934,0.008927845,0.006389237,-0.021285253,0.0048819385,-0.034588534,0.017294267,-0.026435697,0.009910336,-0.05799743,0.05672813,-0.005476925,0.0067736898,-0.018197427,0.020052563,-0.0051718038,-0.007206962,-0.018356089,0.03717596,-0.0334901,-0.01392573,-0.019430116,-0.054238338,0.018978536,-0.01994272,0.027558543,0.016085988,-0.012168232,-0.010642626,-0.013791476,0.019100584,-0.035857838,0.028754618,0.042546093,-0.028803438,-0.0007414444,-0.038103532,-0.05804625,-0.041105922,0.006358725,0.0006533407,-0.058192708,0.02176124,0.06956763,0.01596394,-0.04689102,0.022701014,0.0069323527,-0.018270655,-0.027924689,0.028876666,-0.029242812,-0.020943517,0.017684823,0.008525086,0.02865698,-0.0012143822,0.023677403,0.026508927,0.043961857,0.025239622,-0.023006136,0.0019497243,0.0025218264,-0.024885682,-0.014243056,0.015011962,0.030121561,0.06287937,-0.04933199,-0.023103774,0.04862411,-0.0030176484,-0.048819385,0.037981484,0.01999154,-0.028412882,0.006602822,-0.0037072222,-0.0011556464,0.03593107,0.013242259,-0.055898197,-0.036101937,0.014035573,-0.015671022,-0.0017224089,-0.0067736898,-0.06815186,-0.0047507365,-0.021309663,0.067321934,-0.03759093,0.018343884,-0.015609998,0.010721957,0.007829409,0.01352297,-0.005046704,0.029877465,0.036760997,-0.03236725,0.0380303,0.017574979,0.033709787,-0.0334901,0.037712976,-0.009831004,0.04383981,0.0041282894,-0.015951734,-0.032928675,-0.053652506,0.004024548,0.026582155,-0.008567803,-0.012790679,-0.03820117,-0.020552961,-0.021578168,-0.03817676,-0.008006379,-0.050039873,0.0068713287,0.069811724,0.042521685,0.009287888,-0.018148607,0.00065028947,0.022322664,0.022249436,-0.037005093,0.025874274,0.02105336,-0.025044344,-0.026582155,0.018978536,0.060584858,-0.014291875,0.015243853,-0.004857529,0.0021922956,-0.00936722,0.04061773,-0.05487299,0.020479733,0.021578168,0.056386393,0.014145417,-0.030658575,-0.03185465,-0.020223431,0.02775382,0.0005408273,-0.02311598,0.024727019,0.04227759,0.009251273,-0.005129087,0.021212023,0.0006262612,-0.027631773,-0.0072740884,-0.064099856,0.014084393,-0.055947017,-0.07078811,0.027900279,-0.041642938,0.01672064,0.00576679,0.03983662,-0.012235358,0.025727816,-0.043376025,-0.0064197495,-0.008097916,-0.03258694,0.068200685,0.053896602,-0.05794861,0.008470164,0.016659616,-0.024275439,0.036760997,-0.0056142295,-0.0036675564,-0.0013783849,0.025239622,0.054531254,-0.026655385,0.025190804,-0.005132138,-0.036956277,-0.050674524,0.027997918,-0.0075303903,0.006853021,0.026850663,-0.0038262194,-0.05736278,-0.015402516,-0.04845324,-0.026997121,0.022395894,0.016891507,0.02036989,0.013693837,0.03593107,0.007463264,0.0024196107,-0.014365104,-0.0077622826,-0.04459651,0.02951132,0.03593107,0.07225269,-0.029853055,0.026557745,0.017636003,0.03258694,0.013669428,0.031122359,-0.020943517,0.021016745,-0.0015835789,-0.040959466,0.027705,-0.01591512,0.046573695,-0.05731396,0.07498658,-0.0036553515,0.0049521164,-0.0027796538,0.009440449,0.0067248703,-0.065515615,-0.030121561,0.023360075,0.027290037,-0.009635726,0.02707035,-0.032294024,0.026167192,-0.016464338,-0.0186368,0.021138795,-0.01707458,-0.011997364,-0.0052145207,0.05101626,-0.0023631635,-0.030585345,0.023177003,-0.022810858,0.038054712,-0.03341687,-0.032269616,0.010923337,-0.054189518,0.06688256,-0.034002703,-0.023103774,-0.011606809,0.037151553,-0.008933947,0.0025111472,-0.0045798686,-0.014865503,0.016549772,0.011423737,-0.008287091,0.05306667,0.0071886545,-0.022249436,-0.023128184,0.07664644,-0.043376025,0.0048331195,0.02098013,0.014877708,0.009477063,0.011429839,0.031512912,-0.0012830344,0.0025782739,-0.026753023,-0.008152838,0.023982523,-0.003417357,0.0022624733,0.04293665,0.09905454,0.046256367,-0.017623799,-0.06141479,-0.011234561,-0.01387691,-0.008842411,0.027338857,-0.013437536,0.0065112854,0.015304877,-0.0006205402,-0.016842688,0.012705245,-0.0087386705,-0.013254464,-0.06629673,0.006834714,-0.046793383,0.063123465,0.030658575,-0.0065234904,-0.032123156,-0.024763634,-0.07069047,0.016403314,-0.03961693,-0.026923891,-0.032953087,-0.04703748,-0.02359197,-0.020650601,0.026972711,-0.014938733,-0.004268645,0.0052267257,0.0062793936,-0.0022548453,0.012839499,-0.007670746,-0.028949896,-0.0012319267,-0.06356284,0.012522172,-0.018111993,0.034490895,-0.036248393,-0.02938927,0.030438887,0.018002149,-0.002167886,0.007951457,-0.040275995,0.007859921,-0.0022380638,-0.013352102,0.006071911,0.005043653,0.012998162,-0.014340695,-0.012229256,0.030487707,0.00025305987,-0.006962865,0.04352248,-0.026460107,-0.006584515,0.0069323527,0.024568357,0.011319995,0.017611593,-0.010709753,-0.01916161,0.0054616686,-0.0011991261,-0.019576574,-0.013596199,0.017745847,-0.05804625,0.011075898,0.049673725,-0.012558787,-0.0135107655,-0.0025599666,-0.02498332,-0.030853853,0.028022328,-0.022200616,0.036931865,-0.003301411,-0.0011381019,-0.024141187,-0.020809263,0.016708435,0.001377622,-0.0033075134,-0.037615336,-0.008927845,0.03663895,-0.040227175,0.0026347213,0.017233243,0.0006525779,-0.004973475,0.012107207,-0.0069994796,0.016220242,0.02273763,0.01427967,0.0010564821,-0.021224229,-0.014999757,-0.01953996,-0.012241461,0.035857838,-0.00083069236,0.008122325,-0.0460855,-0.015744252,0.02858375,0.026728613,-0.00045539334,0.0018169965,0.024617175,-0.005934607,0.010648728,0.06112187,-0.01951555,-0.046598103,-0.013303283,-0.010453451,-0.020211225,0.027241217,-0.008970562,-0.015585589,-0.010734162,0.0120217735,-0.0214073,0.0031030823,-0.017330881,0.027241217,-0.023347871,-0.006254984,0.0058003534,-0.028779028,0.032220796,-0.04383981,-0.029023126,-0.02548372,-0.020723829,0.009214659,0.028461702,-0.022578966,-0.02356756,-0.029853055,-0.017867895,0.0038262194,0.02941368,0.022151796,0.06297701,0.014658021,0.013669428,0.013864705,-0.003270899,0.012040081,-0.026118372,-0.0068591237,0.0619518,-0.0060169892,0.046451647,-0.036321625,-0.037005093,0.02311598,-0.013754862,0.01634229,-0.015451335,0.009055996,0.018697824,0.007920945,0.030438887,-0.0077195656,0.010294788,0.0073717274,-0.027094759,0.02135848,0.019747442,0.043376025,0.06898179,0.0038170659,-0.021712422,-0.015048576,-0.0043144133,0.005425054,-0.016525362,0.020430913,-0.0067492803,0.01717222,-0.05155327,-0.0018993792,0.00014931867,-0.022005338,0.012802884,-0.02951132,0.026948301,-0.010154433,0.03898228,-0.008128428,0.02624042,-0.0024608022,0.024897886,0.008622724,0.0405445,-0.0087142605,-0.0065051834,-0.03912874,-0.0103741195,0.0068713287,0.0006655455,-0.016232446,0.0014005061,-0.016940327,0.024373079,-0.009666239,0.0044028983,0.003518047,0.018502546,0.002961201,-0.021309663,-0.016000554,-0.0021877186,-0.014096598,-0.028925486,0.0074144443,0.021175409,0.014121007,0.037249193,0.039275195,-0.024190005,0.014035573,-0.0019588778,0.013657223,0.004714122,0.030121561,-0.024336465,-0.0016095141,0.0069567626,0.026045142,-0.011429839,0.0136206085,-0.030731803,0.020247841,0.00074678403,-0.0067248703,0.0104656555,0.000729621,0.0067797923,-0.019625394,0.004546305,-0.010245969,0.0026850663,-0.019771852,-0.0045676637,0.013022571,-0.038005892,-0.013449741,-0.024214415,0.007463264,-0.019747442,0.015585589,0.024043547,0.02107777,0.027558543,0.000416109,-0.017489545,-0.002543185,-0.0060810647,-0.00006302659,0.014645816,0.012802884,0.00019298913,0.02465379,-0.04073978,-0.017867895,0.028827848,0.022273844,-0.003371589,-0.0061481916,-0.023433305,0.009788287,0.034905862,-0.027265627,-0.04537762,-0.032342844,-0.03646808,0.004875836,-0.023958113,-0.027631773,-0.021565964,-0.016952531,0.030634165,0.014243056,-0.008036891,0.040324815,0.007267986,-0.025044344,-0.008946152,0.024348669,-0.022566762,-0.013425332,0.012863908,0.022139592,0.017941125,-0.08977885,0.016037168,0.04772095,-0.012229256,-0.005754585,-0.010081204,0.00934281,0.021565964,-0.025630178,-0.027509725,0.022517942,-0.005876634,-0.007438854,-0.004024548,0.026191602,-0.033856243,0.05257848,0.027143579,-0.004570715,0.005821712,-0.0043266183,-0.014694635,0.013657223,0.030731803,0.007505981,0.015243853,0.0010213931,0.0004756076,0.039861027,-0.024055753,0.024849068,-0.010892825,-0.0037896049,-0.0018246246,0.03104913,-0.032440484,-0.0072008595,0.0226644,0.034100343,-0.00047675183,-0.0034814326,-0.014596997,-0.015060781,0.024214415,-0.014243056,0.0038811413,-0.008933947,0.0076219267,0.0011449672,0.011167435,-0.012522172,-0.037712976,0.00954419,-0.035320826,0.008061301,0.015048576,0.023213618,0.005797302,-0.0020732982,-0.07093457,0.0014500883,0.032025516,0.007689053,-0.018807668,0.016330084,-0.06805422,0.018819874,0.011661731,0.010081204,0.011338303,-0.00498568,0.025654588,0.038518496,0.018966332,-0.015671022,0.03646808,-0.0049246554,0.00032590755,0.009495371,0.03883582,-0.0163667,0.036346033,0.012924933,-0.0029917131,0.019454526,-0.007493776,-0.0041008284,0.029218402,-0.027436495,-0.017452931,-0.024214415,-0.041667346,-0.014609201,0.027119169,-0.016122602,-0.004164904,0.031512912,-0.031634964,-0.030731803,-0.009696751,0.023347871,0.008549495,-0.02067501,-0.004052009,-0.010410734,0.021175409,0.0034051521,0.016964737,0.020064767,0.008903435,-0.012876113,0.013803681,-0.031952288,0.0045951246,-0.0034936373,0.0026728613,0.03258694,-0.0066638463,-0.010062896,-0.028827848,-0.0043571303,-0.0010191047,-0.01175937,0.06356284,-0.01785569,0.024714814,-0.0030710446,-0.024763634,-0.019295862,0.011680038,-0.014950937,-0.02460497,-0.016012758,0.0050253454,0.004671405,0.019613188,-0.0120034665,-0.0006636385,-0.043595713,-0.014865503,0.021932108,0.0059834262,-0.014902118,0.024263235,0.04217995,0.012790679,0.0088485135,0.013742657,0.0009901181,0.0067675873,0.00909261,-0.04147207,-0.041252382,-0.007292396,-0.022066362,0.01818522,-0.01908838,0.028119966,0.013303283,0.047403622,-0.005882736,0.029877465,-0.009708955,-0.023408895,-0.033783015,-0.033807427,-0.03883582,0.0056325365,-0.0023509585,0.017745847,-0.0120644905,0.030487707,0.007206962,-0.03580902,-0.025654588,0.03358774,0.01783128,0.0002871953,0.0071154255,-0.0028772925,0.008122325,0.018417113,0.0135473795,0.029804235,0.054043062,0.0039726775,0.049502857,-0.013230054,-0.031195588,0.008403037,-0.04059332,0.07562123,0.008860718,0.029999513,-0.016220242,0.004817863,0.016647412,0.01750175,-0.035442874,-0.0035241495,0.025532538,-0.0015408619,-0.010984362,0.00021415691,0.040056307,0.006389237,0.018539162,0.004842273,-0.029901873,0.026020734,0.03966575,0.0087447725,-0.041887034,0.00909261,-0.037566517,0.002689643,-0.067126654,-0.0073290104,0.0006518151,0.024665995,-0.015329287,-0.009080406,0.023604173,0.04210672,0.011344405,0.026850663,-0.022054158,-0.022505738,-0.019747442,0.0035241495,0.028534932,-0.03353892,0.017037965,0.0017269858,0.03497909,-0.00997136,0.0010686868,0.0010290211,0.009605214,0.030707395,0.0013242258,0.029828645,0.0040703164,-0.013181235,0.021773446,-0.016635206,-0.0001315835,0.04606109,-0.006157345,0.023811655,0.0033410767,0.015231648,0.0061359867,-0.007091016,0.045450848,-0.023128184,0.013657223,0.00813453,0.011204049,0.012345202,0.010667036,0.013657223,0.008927845,0.00486058,0.026850663,-0.012430636,-0.011216254,0.007335113,-0.017623799,-0.013034776,0.026191602,-0.0018780207,0.00815894,0.0019100584,0.021639192,0.0074327514,0.043498073,0.016073782,-0.023811655,-0.0065662074,-0.032855447,0.020858083,-0.0065906174,-0.009062098,-0.03168378,-0.015878506,-0.022969522,-0.0051901108,-0.006401442,-0.002747616,-0.0022334869,0.00614514,-0.006541798,-0.04542644,0.014999757,0.00445782,-0.013889115,-0.0055440515,0.0045768176,-0.021248639,0.008396935,0.027387675,-0.017977739,-0.008067404,-0.0052145207,0.036931865,0.024287645,0.005879685,-0.032879855,-0.0048331195,-0.015988348,-0.026753023,0.017526159,0.02415339,0.011863111,0.051113896,-0.013706042,-0.04383981,0.00034554972,0.04073978,0.015317082,-0.013352102,-0.018880898,-0.011265073,-0.019393502,-0.004351028,0.0004489095,0.0026530286,0.010514475,-0.028022328,0.0483556,-0.040446863,-0.030780623,-0.014218646,0.008177247,0.026826253,-0.0064197495,0.022102976,-0.0038414754,-0.008213862,-0.055898197,0.012497763,0.008860718,-0.0030542628,0.014780069,-0.0042564403,0.017928919,-0.014157622,0.003908602,-0.014511563,0.050479244,-0.030829443,0.0068713287,0.046646923,0.0030542628,-0.008195555,0.013461946,0.0020946567,0.0028849207,0.0086959535,0.006328213,0.028242014,-0.026997121,-0.018441522,0.0022456918,-0.004997885,0.018905308,0.019454526,0.047525674,-0.022676606,0.014987552,0.0026072604,-0.0031671578,-0.0021877186,-0.006087167,-0.034612946,0.005647793,-0.0004492909,0.0065540024,0.008390832,0.014059983,0.019393502,-0.011789882,0.021443915,-0.02069942,-0.018087583,-0.014999757,-0.056191113,0.004039804,0.008049096,-0.002341805,0.0067492803,-0.009458756,-0.011869214,-0.01427967,-0.018002149,0.03412475,-0.02624042,-0.008280989,-0.033050723,0.011277278,-0.0043937447,-0.0405445,-0.03883582,0.01430408,-0.020711625,0.039958667,0.014389514,-0.01072806,0.0037011197,-0.024421899,-0.021663602,0.014182032,-0.0056599975,0.030365659,0.046744563,-0.0068896357,0.020760443,0.030292429,0.058095068,0.014523767,-0.014828889,0.01676946,-0.008000277,0.0003989459,-0.006865226,-0.0067736898,-0.016452134,-0.019478936,0.03649249,0.0012837973,-0.013937934,-0.019076176,0.039372835,-0.059217915,0.016000554,-0.013840296,0.011088103,-0.009763877,-0.04459651,0.044010676,-0.020516347,-0.020540757,-0.025923094,-0.0012876113,0.03263576,0.012754065,-0.014584792,-0.037981484,-0.008280989,0.017843485,0.026533335,0.023482125,0.025337262,-0.019674212,-0.001405083,0.0075670048,0.009385527,-0.016000554,-0.00486058,-0.037078325,-0.022127386,-0.01780687,0.019124994,-0.019027356,-0.02135848,0.039470475,0.0103802215,-0.0030512116,0.024849068,0.014987552,0.049136713,0.003316667,0.0029505217,-0.014462743,0.038518496,0.03317277,0.027607363,0.009007176,0.014145417,-0.010721957,0.018478138,0.015561179,-0.010105613,0.048721746,0.014865503,0.014828889,-0.013400922,-0.007133733,-0.001261676,0.05101626,-0.014792274,-0.018441522,0.0151950335,-0.01584189,0.025971914,0.018099787,-0.019747442,-0.0062397276,0.004067265,-0.00030588396,-0.033953883,-0.011008771,-0.016208036,-0.0009847785,-0.033563327,0.016708435,-0.008494574,0.009013279,-0.016171422,-0.031073539,-0.009214659,-0.048648518,0.033758607,-0.009110918,-0.008628827,0.0072435765,-0.00015055822,-0.017892305,-0.06117069,-0.022200616,-0.020125791,0.029023126,0.017538365,-0.014804479,0.008293193,0.014633611,-0.015585589,-0.025288442,-0.033123955,-0.0066394364,-0.012766269,0.022701014,0.021932108,0.01546354,-0.0035302518,-0.011643424,-0.00010936687,-0.0035363543,-0.016574182,0.025288442,-0.010776879,-0.018380499,-0.037810616,-0.023970319,0.013986754,0.0068408167,0.02863257,-0.004335772,0.009837106,-0.030438887,-0.00040047153,0.010496168,0.018844282,0.036980685,-0.0057850974,-0.014145417,-0.025898684,0.02422662,-0.025239622,0.0134985605,0.012619811,-0.017623799,-0.027949098,0.0010686868,0.019747442,0.019210428,0.024080163,0.0049795774,0.0191372,-0.038298808,0.0009550292,0.045035884,-0.033856243,-0.006444159,0.0072618835,-0.018441522,-0.0060261427,-0.00858611,-0.03261135,0.03236725,0.040349223,0.0012021774,-0.018111993,0.011313893,-0.021773446,-0.01676946,0.0069140457,-0.0246782,-0.0054281056,-0.008464061,0.03246489,-0.026582155,-0.038567316,-0.025532538,0.01591512,-0.026753023,-0.012442841,-0.016073782,0.021700216,0.0035851737,0.0072008595,0.0015233174,0.009300093,-0.023433305,0.027631773,0.009696751,0.020943517,0.0004984917,-0.016403314,0.017513955,0.0104351435,0.0012281127,-0.0095686,0.015292672,0.00022426406,-0.020858083,0.008207759,0.003185465,-0.015976144,-0.0023677403,0.03512555,-0.03353892,0.004210672,0.024190005,0.012754065,-0.0018887,0.00992254,0.03583343,0.007036094,-0.015353697,0.026411287,-0.0022533198,0.022908498,-0.0014447487,0.0151584195,-0.0029017022,-0.024665995,0.0027872818,0.0055593075,-0.0059803748,-0.02863257,-0.008262681,-0.04925876,0.025630178,0.023225823,-0.043473665,-0.011075898,0.017745847,-0.0028849207,0.010062896,0.025337262,0.039226376,-0.007823307,-0.002437918,0.024934502,-0.024482923,-0.014059983,-0.0052114693,-0.0024531742,-0.0031915673,0.02785146,-0.01944232,0.03895787,0.01624465,0.009593009,0.002032107,0.017562775,0.015524565,0.027949098,0.001939045,-0.0050772163,0.0088302065,-0.008305398,0.0061512426,0.016012758,0.02775382,-0.0070177866,0.045719355,-0.012357407,-0.032074336,0.01155799,-0.0093184,-0.012790679,-0.01130779,0.0061237817,-0.0032220795,0.0024989424,0.0020061717,0.00030054434,-0.023079365,-0.017465135,-0.009654034,-0.017623799,0.005705766,0.018978536,-0.00795756,-0.0076829507,0.03488145,-0.041301202,-0.0041832114,0.027021531,0.004787351,-0.010569397,0.006865226,0.015561179,-0.031268816,-0.0171234,0.011789882,-0.05497063,-0.001331091,-0.031146768,0.02183447,0.014780069,0.022530146,0.021675808,-0.0053152107,-0.012827294,0.015292672,0.033807427,-0.0075792097,0.022835268,0.0015927325,0.0034966886,0.009062098,-0.016464338,-0.021822266,-0.027314447,0.01231469,0.0008848514,0.008689851,0.0120644905,-0.027631773,-0.00028319057,0.029901873,0.004689712,-0.02178565,0.021285253,0.0135107655]},{"id":"interface-GatewayRecentMentionDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayRecentMentionDeleteDispatchData\nDescription: RECENT_MENTION_DELETE — recent mention cleared","meta":{"url":"/docs/typedefs/GatewayRecentMentionDeleteDispatchData"},"embedding":[0.03155061,0.01915275,-0.01925004,0.019291738,-0.0029743747,0.07338644,-0.02690836,0.07827887,0.035331123,0.025018103,-0.007769511,-0.010361665,-0.048868697,0.0435037,0.042836554,-0.013273494,0.020667734,0.047339812,-0.014274218,0.06615899,0.026296807,0.06043262,0.04075171,0.01820762,0.007991894,-0.01610888,0.014156077,0.02838165,0.004301724,-0.04169684,0.030355299,-0.038416687,0.038166508,0.0020275088,0.015914293,0.032551333,0.022321709,-0.043448105,-0.046339087,0.008012743,-0.024003481,-0.02098741,0.013961492,0.006980746,-0.041530054,0.0069598975,-0.01820762,0.0032957876,0.027770095,0.01965311,-0.034358196,-0.003363545,-0.027533812,0.038444486,0.013634867,-0.002315912,0.003773564,0.04275316,0.043865077,0.008061389,-0.022877665,-0.030160714,0.009757061,0.013044162,-0.033107292,-0.019458525,-0.027950782,0.051314913,0.013252646,0.013078908,0.008214277,-0.0016730857,-0.06877199,-0.028604032,0.0026529615,-0.033969026,0.019458525,0.017206896,0.00963197,-0.01873578,0.021835245,-0.004948025,-0.061044175,-0.038194306,-0.0074220374,-0.021515569,-0.05345535,-0.0039681494,0.0061398596,0.03230115,-0.031606205,0.037554953,0.010375564,-0.02533778,-0.012071235,-0.05831998,0.010174029,0.0010085424,0.013412483,0.062100492,0.038722467,-0.08984279,-0.023711603,-0.0130928075,0.028826416,-0.025560163,-0.03405242,-0.011675115,-0.03155061,0.0026824968,-0.054094702,-0.05120372,-0.006504707,0.009715363,-0.036915604,0.0033930803,0.008867528,-0.04814595,0.008561751,0.011077461,-0.03155061,0.006622848,-0.021668458,-0.03813871,-0.020264665,-0.0003863473,0.013051111,-0.03391343,-0.045227174,-0.031634003,0.06360158,-0.0277145,0.034747366,-0.030049523,-0.023794997,0.016789928,-0.014288117,-0.0022724778,-0.047562197,-0.03155061,0.012495153,-0.0009607647,0.030911257,0.031467214,-0.05882034,0.0030925155,-0.0019041557,0.014357612,0.07094023,0.025824243,-0.037026793,0.040557127,-0.0036241503,0.029382372,-0.025754748,0.011390187,0.04392067,-0.005976547,-0.033718843,-0.03230115,-0.01595599,-0.054066904,-0.025824243,-0.0017069643,-0.039361816,0.023391927,-0.023906188,-0.017901843,-0.045449555,-0.056513116,-0.028659629,-0.043392513,-0.02098741,0.004263502,-0.027214138,0.0052954988,0.00051469536,0.006966847,-0.019847697,-0.02282207,0.020250766,0.020139573,0.0025973658,-0.05384452,-0.04500479,-0.015330538,0.016525848,0.058542363,-0.023405826,0.002599103,-0.018707981,0.037721742,-0.019764302,-0.00073751283,0.008777184,-0.04075171,0.016970614,-0.051175922,0.010868976,-0.056846693,-0.021279287,0.015330538,0.003985523,0.0071857553,-0.005014045,-0.0013855513,-0.008749387,-0.001900681,-0.018152025,0.011272046,0.04567194,-0.00402722,-0.0145660965,-0.012411759,-0.02083452,0.023586512,-0.027867388,0.040696114,-0.0025973658,-0.0141352285,0.0064942827,0.0013481978,0.046895046,0.024517741,0.004183583,0.015552921,-0.0047708135,0.019319536,-0.027047351,-0.012251921,-0.012286669,0.0013733896,-0.016637038,-0.043058936,0.011668166,0.014441006,0.0049792975,-0.05659651,0.06015464,0.016345162,-0.0010389462,-0.010709139,-0.0064838585,-0.0022064578,-0.017192997,0.015650215,0.030688874,-0.02572695,0.03155061,0.028409448,0.06949473,0.060710598,0.023183443,-0.09089911,-0.014176926,-0.016511949,0.01806863,0.003603302,0.017067907,0.048201546,0.048618514,-0.04895209,0.00039047352,0.029493565,-0.0095346775,-0.001391632,0.025309982,-0.0051252367,-0.031634003,0.042808756,-0.02993833,-0.021682357,0.06393515,-0.0046526724,0.00062284654,-0.005503983,0.019736504,0.01660924,0.013766906,0.009423486,-0.009048214,-0.011786306,0.03908384,0.017929642,-0.035470113,0.027506016,-0.004510208,0.033830035,0.013280444,0.039334018,-0.06393515,0.021084702,0.012092084,-0.04383728,0.019778201,0.019319536,0.02403128,-0.039000444,0.024920812,-0.00027645874,0.05292719,-0.00070059375,-0.02822876,-0.03388563,0.03552571,0.030577682,0.011452732,-0.047867972,0.02665818,-0.014524399,-0.046533674,-0.035136536,-0.036748815,0.0070641395,-0.03285711,0.007206604,0.060655,0.03230115,0.0045588543,0.011619519,0.054706253,-0.0024653256,0.04183583,-0.042947747,0.03811091,-0.025170993,-0.022099325,-0.0316618,0.04536616,0.020209068,0.010910673,0.029966129,-0.002032721,0.0046874196,0.06660375,0.0047916616,-0.06371277,0.021307085,0.0008248156,0.008582599,0.03744376,-0.0038187355,-0.015858699,-0.03944521,0.0277145,0.003320111,-0.01925004,0.001212683,0.005636023,0.031105842,-0.027047351,-0.027269734,0.03193978,-0.024239764,-0.012342265,-0.015135953,0.029910533,-0.028965404,-0.029660352,0.056930084,0.0040862905,-0.01610888,0.003815261,-0.019069355,0.016553646,0.0018033884,-0.07627742,-0.017985238,0.0007805127,-0.02361431,0.0012561172,-0.017790651,-0.041196477,0.00013660059,-0.025921535,0.004037644,-0.019361233,-0.013996239,0.025282184,-0.005893153,0.013356888,-0.011383237,-0.03549791,0.005976547,0.03944521,0.026074424,-0.014169976,0.007825107,-0.0646579,0.030661076,0.0356091,-0.005754164,0.04909108,0.0064178384,-0.011167804,0.009048214,0.0050279438,-0.0030838288,0.021863043,-0.0053406702,0.016317364,0.011042713,-0.026310707,-0.014760681,-0.0034104541,0.047673386,0.033552058,0.031078044,0.052232243,-0.046172302,0.039667595,0.02822876,0.027672803,0.0011718549,0.0065672523,-0.048006963,0.0023993056,0.029326778,0.011682064,0.044643417,-0.017985238,0.0031151015,-0.006282324,0.009013467,0.019583616,0.04461562,0.0025157093,0.045838725,0.05303838,-0.079279594,-0.06387956,0.0008447954,0.020792823,-0.004847258,0.038944848,-0.010910673,0.007825107,0.011070511,-0.0036067767,-0.02072333,-0.045032587,0.01332214,0.0064456365,0.045477353,-0.03138382,-0.0067097163,0.015024762,0.004485885,0.051676285,-0.011563923,-0.029493565,-0.006911251,-0.027617207,0.044532225,-0.05781962,0.008235126,0.020639936,0.05345535,-0.005344145,0.008394964,0.0023124372,-0.0008178661,0.013878098,0.066548154,-0.023850592,-0.006108587,0.027783994,-0.020236867,0.016261768,0.006754888,0.009583323,-0.028020276,0.03722138,0.028339952,-0.014441006,-0.02533778,-0.0024653256,0.006591575,0.032773715,-0.0052572764,0.005146085,0.03205097,-0.00923585,-0.033607654,0.029854937,0.061989304,0.021974234,-0.015372235,-0.036860008,0.029799342,0.02100131,0.009048214,0.003363545,-0.016803827,0.001724338,-0.02454554,0.023920087,-0.035275526,0.054150295,-0.049786028,0.00883973,-0.0075262794,0.03761055,-0.017596066,0.012300568,-0.016289566,-0.015149852,-0.010806431,-0.016525848,-0.06699292,-0.0048611565,0.01266194,-0.028034175,-0.024434349,-0.041363265,0.028604032,-0.03193978,0.035553504,-0.0025539314,0.011932245,0.016289566,0.02572695,0.018652387,0.0004378168,-0.012182427,-0.011508328,-0.015636316,-0.0646023,-0.010507604,-0.013961492,0.017526573,-0.011091359,0.02257189,0.036721017,0.00073881587,-0.027019553,-0.029743746,-0.016470252,0.0012587233,0.020904016,0.02453164,0.029882735,0.009750111,-0.0063969903,0.0032384545,-0.0036241503,0.019847697,0.014454905,0.015080357,0.029993927,0.0095346775,-0.008040541,-0.00048081667,-0.017359784,0.031995375,0.023419725,-0.01660924,-0.03574809,0.03838889,0.041113082,-0.02993833,-0.03321848,-0.0047951364,-0.014760681,-0.032523535,0.029437969,0.0078042587,0.013447231,0.0000423755,-0.03722138,0.018013034,0.010653542,0.0066332724,0.024211966,0.037693944,0.012919071,0.014830176,-0.011140006,0.013502827,-0.027936883,-0.02282207,-0.05173188,0.016803827,0.028604032,-0.022377305,0.019402929,0.020556541,-0.0038986546,-0.028826416,-0.014830176,0.0065325047,-0.005000146,-0.0065672523,0.02532388,0.031189237,0.017665561,0.022808172,-0.012981616,0.012773132,0.053232964,0.006591575,0.03388563,-0.042225,-0.024823518,0.028284356,0.088063724,0.029076597,-0.00112234,0.0031029398,0.0061676577,-0.027964681,0.026130019,-0.020431451,-0.023113947,-0.023364129,0.00567077,-0.024003481,-0.026421897,0.017498774,-0.016970614,0.0038569577,-0.022196617,-0.0017764592,-0.020139573,-0.030410895,0.03088346,-0.021835245,-0.035164334,0.035303324,-0.011202551,0.017234694,-0.034747366,-0.01991719,-0.0040341695,-0.028854214,-0.011404086,0.03388563,0.00640394,-0.027144643,-0.056429725,0.0171513,0.0075888247,0.02877082,0.02849284,0.024309257,0.0052850745,-0.017331986,0.0067618378,-0.0033600703,0.04011236,-0.04183583,-0.048646312,0.06688173,0.0067479387,0.012981616,-0.0065325047,-0.010862026,0.06293443,-0.0043642693,0.044560023,0.017165199,0.0114249345,0.0023037505,0.004461562,-0.037554953,-0.0051391353,-0.0004386855,-0.0011857538,0.010625744,0.017735057,-0.003042132,0.03683221,0.080391504,0.028270457,0.0062371525,0.007324745,0.014010138,-0.012363113,0.00804749,-0.028743021,0.03074447,0.009882151,-0.042808756,0.007338644,-0.0013047636,-0.020000584,0.021140298,-0.017192997,-0.0024549013,0.027408723,0.01820762,-0.0020709431,0.022613587,-0.029354576,0.01993109,-0.013634867,0.029799342,0.038972646,0.00009370931,-0.040835105,-0.036470834,-0.012092084,-0.00481251,-0.0030073845,0.024045177,-0.005170408,0.019430727,-0.02044535,0.014128279,-0.0070780385,0.005260751,-0.005465761,-0.032745916,-0.015288841,-0.018791376,0.005184307,-0.027867388,0.023683805,0.030188512,-0.03060548,0.01201564,0.009777909,-0.0056603462,-0.013648765,-0.004736066,0.022530193,-0.0028701324,0.011105258,-0.022224415,0.014621692,-0.025490668,-0.014357612,0.010222675,0.0047152177,-0.035053145,0.015261044,-0.015010863,-0.011640368,0.0008565226,0.0030525562,-0.001490662,0.003061243,-0.018388307,-0.009618071,0.007602724,0.0069355746,0.018805275,0.009353991,-0.005618649,-0.01888867,-0.025504567,0.0117376605,-0.04536616,0.022182718,-0.020375855,-0.014329814,0.0022568414,0.005702043,-0.023419725,0.03535892,-0.011390187,0.027325328,0.012960767,0.04419865,-0.016664837,0.004381643,-0.060543813,-0.0066680196,-0.0008825831,0.008297672,0.022710878,-0.043197926,0.008450559,0.015274942,0.019764302,0.010778633,0.024642833,0.017915742,-0.06571422,0.01042421,-0.00093383546,-0.0019024183,0.018777477,-0.05487304,-0.01649805,0.01530274,-0.035942677,-0.020904016,-0.052593615,0.011459681,0.0036310998,-0.0011284207,0.029771544,-0.034802962,-0.0036866956,0.010306069,0.02544897,-0.09379009,0.043225724,0.06387956,-0.012696688,-0.008255974,0.026449695,-0.005305923,0.031189237,0.032273356,-0.0726081,0.04141886,-0.0093261935,0.0056811944,-0.009506879,0.022863768,-0.015219347,0.016345162,-0.019903291,0.02322514,0.006032143,-0.040862903,-0.019236142,-0.0082837725,0.03338527,-0.0020170847,0.014399309,-0.018249316,0.01662314,0.015372235,0.008464458,0.03908384,-0.01954192,-0.043364715,0.0068904026,0.015455629,-0.005326771,-0.0069564227,-0.011153905,0.0047847126,-0.018582892,0.024615034,-0.032940503,-0.011807155,-0.020945713,-0.03549791,0.005889679,0.0021908216,-0.017095704,-0.005198206,0.0032332425,-0.015344437,-0.016470252,0.00936789,-0.019180546,0.00897177,0.0023854068,0.005726366,0.016678736,-0.0025400324,-0.02692226,-0.013412483,0.046950642,-0.011049663,-0.011591721,0.03738817,-0.033329673,0.00041349366,-0.008693791,0.032162163,-0.0002451861,-0.0012639355,0.04328132,0.007345593,0.010194877,0.024350954,0.016539747,-0.0137321595,0.008297672,0.047339812,0.034108017,0.044170853,0.041474458,-0.00018481255,0.018416105,0.002995223,-0.015594618,-0.007943248,-0.0026147394,0.04289215,-0.007977995,0.0031046772,-0.030105118,0.027075147,0.025184892,-0.0006098163,-0.001740843,-0.04536616,-0.0043746936,0.005146085,0.02070943,0.0250598,-0.028270457,-0.032134365,-0.029632553,-0.008110035,-0.012293618,0.018388307,0.022530193,0.009242799,0.025212688,0.0060008704,0.0105770985,-0.008040541,0.03205097,0.011390187,-0.0025400324,-0.0031394246,0.017359784,-0.014211673,-0.018318811,-0.028214863,0.001501955,-0.006487333,0.0027224561,-0.005052267,0.029521363,-0.0029361525,0.0013369049,0.020806722,0.050870143,-0.01200869,-0.0016583181,-0.01266889,0.040807307,-0.02072333,-0.005517882,0.004920227,0.04628349,0.0008187348,0.02811757,-0.00040545833,0.013614018,-0.038166508,0.023739401,-0.009340093,-0.007811208,0.0042461283,-0.02849284,-0.008005793,-0.021473873,-0.0033253229,0.0006940786,0.009680617,-0.031328227,-0.0071301595,0.027408723,-0.021209793,0.00088953256,-0.0018311862,0.031328227,-0.0013968442,0.048618514,-0.011807155,0.004392067,-0.03377444,0.0016331262,-0.043587096,0.0016235707,-0.039361816,0.009486031,-0.0027189814,0.030633278,-0.009201103,0.038416687,-0.012078185,0.04497699,0.012370062,-0.01108441,0.026630381,-0.010458957,-0.026157817,-0.011397136,-0.012307517,0.021168096,0.029771544,0.029966129,0.027895186,0.018805275,-0.016261768,-0.0026407999,0.0009373102,0.027936883,0.01741538,0.023961784,-0.00012943395,-0.030355299,-0.017443178,0.0016331262,-0.023642108,0.029021,0.018499497,0.008860579,-0.0040584924,0.017206896,0.02310005,-0.004906328,0.028270457,0.019708706,-0.0030820915,-0.0011666429,-0.036498632,0.0021230641,-0.025435071,-0.03260693,0.00989605,0.02982714,-0.018916467,-0.001042421,0.019500222,-0.025518466,0.003490373,-0.023280736,-0.012286669,0.05793081,-0.016595343,-0.013683513,-0.026435796,0.008186479,-0.0012700162,0.0047152177,-0.014399309,-0.041780233,-0.030688874,-0.005938325,0.0125854965,0.008527004,0.008346317,0.008242075,0.016470252,0.017707258,0.0063900407,0.004961924,0.020167371,-0.033941228,0.018096428,-0.024114672,-0.013169252,0.02993833,0.004037644,0.0069321,0.0026842342,0.00679311,-0.005382367,-0.008082237,0.012036487,-0.016261768,-0.0010884613,-0.00052077614,0.017165199,0.0014923994,0.014524399,0.003438252,-0.0099516455,-0.024184167,0.00884668,-0.0028996677,-0.038027517,-0.0015453892,-0.021015208,-0.013002465,0.03616506,0.06454671,0.0035477062,-0.0012813092,-0.0034452013,0.011570873,0.0009442597,0.013085858,-0.002425366,-0.0028006379,0.01530274,-0.0037283925,-0.027033452,0.0010771684,0.0073038964,-0.020917915,-0.00883973,-0.00035355447,0.028339952,0.003947301,-0.013926744,0.020000584,0.020222967,-0.017081805,-0.0079224,-0.013982341,0.011939195,-0.010187928,0.019764302,-0.021890841,-0.006174607,0.021612862,0.011668166,-0.0042287544,0.018430004,0.027019553,0.026727675,0.0047673387,0.036192857,0.01899986,-0.0017790651,-0.021404378,0.03813871,0.01610888,-0.0053337207,0.008554801,0.018485598,-0.023086151,0.0050626914,0.0053719427,-0.0036936451,0.0329961,0.011153905,-0.015650215,-0.011494429,0.001344723,0.029715948,-0.013919795,-0.011522227,-0.004103664,-0.016428554,-0.04789577,-0.010660492,0.013203999,0.039639797,0.058542363,-0.054678455,0.031050246,0.0029048799,-0.02083452,-0.028576234,-0.006011294,-0.0018242367,-0.00184856,0.013495877,-0.00778341,-0.005726366,-0.0130928075,0.020514846,0.0040584924,0.09151066,-0.03538672,0.01991719,0.005962648,-0.014844075,-0.0065290304,-0.05715247,0.0067479387,-0.03705459,0.013384686,0.004166209,0.04923007,-0.009541627,-0.026116122,0.03338527,-0.0028562336,-0.020876218,-0.0012370063,0.017248593,-0.054066904,0.027895186,0.009673667,-0.010333867,-0.01266194,-0.026838865,-0.025032002,0.02651919,0.004367744,0.013551473,-0.012453456,0.01676213,0.001787752,-0.0071058366,0.0062406273,-0.009736212,-0.0050070956,0.013753008,-0.01660924,-0.0021439125,-0.020264665,0.009889101,0.006296223,0.0006080789,0.033802237,0.027658904,-0.0036936451,-0.03577589,-0.0343026,-0.019097153,-0.007887652,0.027853489,0.0066297976,-0.0060668904,-0.03405242,0.00081178534,-0.016206171,-0.0085964985,0.010743885,0.0003053425,0.008228176,-0.024962509,0.024198066,0.018791376,-0.02414247,0.031967577,0.0063552936,-0.040473733,-0.005292024,0.02150167,0.0032818888,-0.017915742,-0.015983788,0.008721589,0.013753008,-0.02164066,0.025935434,-0.018694084,-0.012835677,0.041085288,0.02533778,0.009618071,0.024337055,0.021974234,0.053788923,-0.062489662,-0.0023037505,-0.000054998567,0.0085687,0.028326053,-0.018902568,0.006400465,0.0027137694,-0.0125715975,-0.027895186,0.023447523,0.0038222102,-0.010180978,0.01478848,-0.014183875,-0.016956715,0.015594618,0.0013673089,-0.01516375,0.0019111051,-0.02401738,-0.0041731587,-0.010229625,-0.0035268578,-0.021432176,0.025574062,-0.041613445,-0.040473733,0.038833655,0.029048799,0.0033861308,-0.047645587,0.004694369,-0.017554369,-0.040668316,-0.007894602,-0.008332418,0.004850732,0.00083089643,-0.01925004,-0.009333143,-0.00468047,0.039612,0.01280093,0.0060703647,-0.014941367,-0.029993927,0.01820762,0.0046874196,0.0047186925,-0.016331263,0.012147679,-0.026032727,-0.024642833,-0.015205448,-0.0027433045,0.0064108893,-0.004023745,-0.014899671,0.016984513,-0.012620243,0.035831485,0.008318519,-0.00830462,-0.015650215,-0.030855661,-0.0049271765,0.013537574,-0.026227312,0.015942091,0.009451284,-0.030188512,-0.013655715,-0.028409448,0.013342989,-0.013287393,-0.02783959,-0.020320259,-0.03469177,-0.0019632261,0.037276976,0.026324606,-0.04239179,0.003174172,-0.014302016,-0.013203999,-0.03152281,-0.0010736936,0.0010858552,0.012147679,0.012654991,0.007102362,-0.007442886,0.02350312,-0.050953537,0.019458525,-0.000877371,0.012140729,0.021195894,0.0039889975,-0.025476769,-0.018624589,-0.016817726,-0.025129296,-0.0029396273,-0.006692343,0.03736037,0.0053198216,-0.0032732019,-0.00046908946,-0.022460697,0.0138642,0.008214277,0.042280596,-0.0034504135,0.047840174,-0.03613726,-0.0014463591,-0.018040832,-0.0003216303,0.012766182,0.006570727,-0.00050383684,-0.0107855825,0.021015208,-0.0022794271,-0.012224124,0.015344437,0.020320259,0.021932539,0.0025504567,0.017276391,0.006317071,0.025393376,-0.0071301595,0.011091359,-0.017971339,-0.006779211,-0.0023037505,-0.018944263,-0.028006377,-0.021418277,0.022015931,-0.0018798325,0.010201827,-0.0074706837,0.0356091,0.0074220374,0.008325469,-0.06148894,0.014579995,-0.0083880145,0.04025135,-0.032801513,-0.032245558,-0.0020448826,0.023072252,0.017498774,-0.0037944124,0.0029691625,-0.03535892,0.008130884,0.0007257856,0.0025104973,-0.05948749,0.025087599,-0.0079224,0.008408863,0.03458058,-0.01915275,-0.033079494,0.013370787,0.007050241,-0.01993109,0.034497187,0.0063240207,-0.01187665,-0.009576375,-0.012335315,-0.017874045,-0.00025561033,-0.010848128,-0.02007008,0.009562476,0.035970476,0.024754023,-0.014607793,0.018833073,-0.012877374,0.02348922,0.018388307,0.021557266,0.008429711,0.033802237,0.00765137,-0.023711603,-0.0066471715,-0.01794354,-0.0277145,0.009562476,0.018846972,0.0037978871,0.0037700892,-0.040807307,-0.008068339,0.0263663,0.010882875,0.031467214,-0.028006377,-0.008832781,0.010945421,-0.004961924,-0.044004064,-0.039389614,-0.016915018,-0.013363837,-0.0038361093,-0.027130743,0.043559298,-0.013759957,0.023322433,-0.010729987,-0.020139573,-0.030855661,0.009409587,0.039723188,0.01068829,0.010917623,-0.007310846,0.014691186,0.004253078,0.023294635,0.049118876,0.02190474,0.0010059363,-0.00059331127,0.00949298,0.02544897,-0.030966854,0.028200964,0.0435315,0.0131970495,-0.011174753,0.044393234,0.041113082,0.00804749,-0.029854937,0.027881287,0.010514553,0.0060634157,0.0119461445,0.003603302,0.007206604,0.017568268,0.017387582,-0.018013034,-0.059265107,-0.0013829452,-0.0038951798,-0.017999135,0.026421897,-0.00044824101,-0.03446939,0.023836693,0.014816277,-0.04000117,-0.00962502,-0.010792532,-0.014468803,-0.027742298,0.007241351,0.043253522,0.018388307,-0.029354576,0.029048799,0.0117376605,0.010472856,-0.058764745,0.016581444,0.02294716,-0.011779358,0.00041153913,0.023808895,0.0060773143,-0.01861069,0.05331636,0.016456353,-0.0066054743,0.003877806,-0.0033027371,0.01003504,0.02679717,-0.014941367,-0.026338505,-0.0015062983,-0.0329683,0.052204445,0.018054731,0.0316618,-0.008964821,-0.025671354,-0.015719708,-0.0045727533,0.020320259,0.008408863]},{"id":"interface-GatewayRelationshipAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipAddDispatchData\nDescription: RELATIONSHIP_ADD — relationship (friend, block) added\nProperties: id: string, type: number","meta":{"url":"/docs/typedefs/GatewayRelationshipAddDispatchData"},"embedding":[-0.012119235,-0.011547252,-0.03536098,0.035768732,0.018835781,0.02144085,-0.021486156,-0.009972884,-0.0015531308,-0.028723719,-0.020953815,-0.0080077555,-0.0032846523,-0.017521922,0.03853237,-0.00810403,0.00057906157,0.045894522,0.014259921,0.08141407,-0.012583616,0.04684594,0.08521974,-0.009146058,-0.0063937455,0.05037977,0.01551715,0.033458147,0.005796279,-0.045033716,0.04997202,-0.014531755,0.045667995,0.015732352,0.022222372,0.014225942,0.02799883,0.017386004,-0.021905232,-0.0012961634,-0.028814329,-0.030671857,0.0059520165,0.01376156,-0.05282627,-0.0001861775,-0.021202996,0.01689897,-0.012119235,0.010103137,0.012912082,-0.04793327,-0.030332064,0.034839965,0.0218486,0.018699866,0.04122805,0.0030383035,-0.041046828,0.015381234,0.0040350254,0.0023077514,-0.00072028744,-0.0020274234,-0.009264985,0.01285545,-0.065828964,0.04852224,0.032031022,0.028723719,0.034975883,0.030490635,0.011354703,0.01943608,0.0009577876,0.030785121,0.0075886794,-0.041658454,0.020217601,-0.031170217,0.02197319,0.05210138,-0.063155934,-0.072806016,0.032642648,-0.028610455,-0.043289453,-0.04279109,-0.0107090995,-0.034341607,-0.0043011955,0.016174082,-0.041114785,0.009253658,-0.023808066,-0.06274819,0.014112678,0.010618488,-0.037127897,0.027885566,0.027545774,-0.100940764,-0.035428938,-0.03749034,-0.008234284,-0.014384512,-0.0072432244,-0.0015064095,-0.018484663,-0.018314768,-0.043289453,-0.029425954,0.0021534294,0.008891214,0.025416413,-0.040118065,0.043334756,-0.048159797,-0.0025385264,-0.03527037,-0.037377078,-0.007107308,0.031577967,-0.012730859,-0.024057247,-0.012889429,-0.0067958324,-0.028723719,-0.02620926,-0.0051450115,0.053098105,-0.012787491,0.010527877,0.0061898706,0.00092451635,-0.024397038,-0.0093442695,0.0034234005,-0.0023473937,-0.042247426,0.039891537,-0.04131866,0.018847108,0.02448765,-0.02596008,0.018235484,0.004442775,0.04181702,0.012017297,-0.025212537,-0.057991102,0.079783075,-0.017250087,-0.034160383,0.02808944,0.01893772,0.008313568,-0.006518336,-0.008341884,-0.039551742,0.025076622,-0.06900035,0.0098426305,0.002675859,-0.03178184,0.011388683,-0.04637023,-0.02759108,-0.035428938,0.019707914,0.02319644,-0.044308826,-0.060618825,0.02376276,-0.037920743,0.014928178,0.005878395,-0.012968713,-0.012889429,-0.0051704957,0.039800923,0.02759108,-0.006931749,-0.060709435,-0.013489727,-0.0124477,-0.0016168418,0.03561016,0.013965435,-0.039008077,-0.01551715,0.042405993,0.0068581277,0.02473683,0.056042966,-0.0119719915,0.0014837567,0.023468275,-0.0039132666,-0.019288838,0.008489127,-0.05518216,0.014690324,0.02009301,0.0030694508,-0.050470382,-0.036493618,-0.02981105,0.012662901,-0.025914773,0.025099274,-0.045418814,-0.021565441,0.017182129,-0.015030116,0.027659038,0.00092593214,-0.00019626506,-0.0032336835,-0.021984518,-0.025371108,-0.01040895,0.028882287,-0.043629244,-0.005006263,0.014316553,0.01686499,-0.0053205704,-0.0208179,0.0040406887,-0.018960372,0.0099898735,0.0015517151,-0.007486742,0.018563949,0.04211151,-0.0010554777,-0.0091970265,-0.00064206455,0.062204517,0.0073564886,-0.037218507,0.004428617,0.010652468,0.00008946076,0.026594358,0.0355422,0.026820885,-0.028542496,0.052056074,0.05037977,0.036199134,0.0012912081,-0.0066599157,-0.01457706,-0.03753565,0.021803295,-0.01067512,-0.0011510442,0.033254273,0.025167232,-0.062612265,0.010097474,0.008964836,-0.010397623,-0.050153244,0.041431926,0.046234313,-0.022732059,-0.021791968,0.03339019,-0.021089733,0.05160302,-0.05436666,-0.026186608,-0.045985132,-0.0074131205,0.022471553,0.0006080854,-0.0025187053,-0.005014758,-0.02981105,0.0031713885,0.032461427,0.004162447,0.06560244,0.016072143,0.049518965,0.02539376,0.037354425,-0.045713298,-0.002415352,0.04027663,-0.030377371,0.046574105,0.04480719,0.012787491,-0.016151428,0.051965464,0.035700772,0.044625964,0.013908803,-0.0011071543,-0.012923407,0.0058614053,0.0049552945,0.009785999,-0.0062974715,0.04442209,0.0058160997,-0.02135024,-0.01012579,-0.017318046,-0.00906111,-0.025189886,-0.0012961634,0.060618825,0.034658745,-0.037354425,0.021599421,-0.01881313,0.02596008,0.042315383,-0.05137649,-0.02457826,-0.052509133,-0.015721025,-0.03241612,0.023049198,0.002198735,0.009899262,-0.036765452,0.015030116,-0.004844862,0.037739523,0.03626709,-0.0030609563,0.04555473,-0.008075714,0.050198548,0.0620686,-0.02793087,-0.04294966,0.014486449,-0.009808651,-0.010290023,0.0046466505,0.0077868914,-0.027500467,-0.009180036,-0.046143703,0.008115357,-0.04399169,-0.016978255,-0.02016097,-0.005946353,0.016921623,-0.05219199,-0.026231913,0.02122565,-0.040797647,0.027341899,-0.031102259,0.0045815236,-0.0127195325,-0.023400316,-0.03395651,0.0318498,-0.007311183,-0.036584232,-0.02383072,0.017703144,-0.016763054,0.003986888,-0.018552622,-0.019017003,0.007141287,-0.022052476,0.015052768,-0.010227728,0.0039387513,0.047298994,-0.0039274246,0.014497776,0.0105335405,-0.014916852,-0.054502577,0.013365136,-0.08213896,0.005969006,0.031645928,-0.008942183,-0.013784213,0.016026838,-0.00052703096,-0.034409564,0.101303205,0.014792262,0.024034593,-0.0027735492,0.0001333505,-0.006784506,0.036131173,-0.016309997,0.0039160983,-0.016547851,-0.016242038,0.021270955,0.029018205,-0.015200011,0.025597636,0.001306074,0.024147857,0.055499297,0.001046983,-0.035134453,-0.012357089,0.0103126755,-0.03896277,-0.011836074,0.030603899,0.03574608,-0.026707621,-0.016468568,-0.0017952324,0.0021321925,0.028769024,0.045260243,-0.002507379,-0.034183037,-0.02025158,0.04564534,0.05504624,0.011847401,0.06351838,0.00069763465,0.01787304,0.006671242,-0.02605069,-0.0084778005,-0.008709991,-0.000053977314,0.03307305,0.0400048,0.004643819,-0.0062068603,0.029856356,-0.028044134,0.00904412,0.03388855,-0.06188738,0.014837567,-0.06768649,0.050425075,-0.03372998,-0.0055442667,-0.029108815,0.02473683,0.013161262,-0.010086148,-0.024850093,-0.015041443,-0.025869468,0.034794662,-0.017419983,-0.0033950845,-0.00867035,0.018847108,0.0064843567,0.0028684076,-0.018416706,-0.025053969,0.009231006,0.019096289,-0.027908217,-0.01705754,-0.031713884,0.01119047,0.03012819,0.037218507,-0.027817607,0.058761295,-0.007367815,-0.021361567,0.03459079,0.06564774,0.022369614,-0.012232498,-0.00852877,0.0048363674,-0.0077076065,0.002663117,0.04523759,-0.010363644,0.013467074,0.01473563,0.0375583,-0.020772595,0.010040842,-0.024283774,0.00810403,-0.024963357,-0.023558885,-0.03583669,-0.021463504,-0.03232551,0.0110035855,-0.04449005,-0.060890656,-0.012232498,0.010324002,-0.012345762,0.020580046,-0.048114493,-0.0318498,-0.0015488835,-0.005889721,0.029018205,-0.02213176,-0.013988088,-0.033684675,0.002612148,0.009616103,0.007248888,0.013217893,-0.019130267,-0.0071809296,-0.0326653,0.02392133,-0.0051874854,0.02101045,-0.046755325,0.008160662,0.04784266,0.032959785,-0.012844123,-0.027115371,-0.014871546,0.028474538,-0.016094796,0.0023898678,0.009604776,0.01175679,0.019005679,-0.030807773,0.022833997,0.04018602,-0.00042721716,-0.0032081993,0.015018789,0.0024592418,-0.012685554,-0.021169018,-0.025121927,-0.0056716884,0.0112810815,0.015970206,-0.0069770543,0.0013032424,-0.05069691,-0.005889721,-0.03126083,0.0015219833,-0.04002745,-0.028814329,0.04856755,0.006048291,-0.030671857,-0.01828079,-0.0015786152,0.0071186344,0.014010741,0.003700897,0.0040831626,0.013806866,0.0375583,-0.053505853,-0.0014370354,0.043629244,-0.055544604,-0.037943397,-0.038373798,-0.023649497,0.043062925,-0.051874854,0.04856755,0.03241612,-0.019277511,0.0054791397,0.028270662,-0.016174082,0.0058160997,0.03153266,-0.01599286,0.0075037316,-0.023400316,-0.017748449,-0.0036046228,0.0037745186,0.020172296,0.024623565,-0.015313275,-0.050425075,-0.04279109,0.066327326,0.03169123,0.019979747,-0.002246872,-0.034069773,-0.007781228,-0.018926393,0.019571997,0.0045135655,-0.0375583,-0.0074754157,0.0007298441,0.006637263,0.02241492,-0.010329665,-0.013829519,-0.0010009694,0.036199134,-0.021452177,0.036674842,-0.018076913,0.041613147,-0.04743491,0.0075377105,-0.0029901662,-0.048114493,0.008449485,-0.015030116,-0.021214323,-0.040707037,-0.023989288,-0.0109243,0.01640061,0.0038594664,0.012017297,-0.008704329,0.000990351,0.0028485863,0.014237269,0.012674227,0.04238334,-0.004819378,0.01457706,0.02824801,0.011892706,0.023694802,-0.041431926,-0.04596248,0.01984383,-0.011298072,0.018360073,-0.0038792875,-0.039959494,0.05658663,0.0040293625,0.021622073,-0.004657977,0.00006676374,0.01473563,-0.014010741,-0.006812822,0.028950246,0.0063597662,0.030966343,0.01877915,0.004573029,0.022460226,0.017397331,0.07498068,0.02392133,-0.005487635,0.0038962772,0.012425046,0.0047315983,0.007662301,0.004657977,0.033118356,-0.0016196733,-0.0015304781,0.003870793,0.035859343,-0.0107827205,0.05894252,-0.010618488,0.020874532,-0.002303504,0.013908803,0.021565441,0.044150256,-0.00050933345,-0.002970345,0.015970206,0.035474245,0.020761268,-0.024532955,-0.015313275,-0.0082286205,-0.0095934495,0.021078406,-0.012640248,-0.03366202,-0.01307065,0.008030408,0.01705754,0.021803295,0.012413721,-0.00000621624,0.000554993,0.00022033362,0.0012671396,0.006586294,0.027726997,-0.036448315,0.013421769,0.0020840552,0.011201797,0.014973484,0.0019353965,-0.008845909,-0.008693002,0.000996722,0.062566966,0.004122805,0.014101352,-0.021304935,-0.021837274,-0.0103862975,0.015585109,0.009559471,0.03844176,-0.028270662,0.010726089,-0.0048335358,0.01392013,0.0036867391,0.025665594,-0.00018440773,0.011133838,-0.02025158,-0.028927593,-0.0021364398,0.0089761615,-0.00877795,0.018858435,-0.012685554,0.012334435,-0.011700158,0.005365876,-0.030830426,-0.042179465,-0.026186608,0.029108815,0.018450685,0.0051308535,-0.021304935,0.041862328,-0.023219094,-0.02041015,0.017408658,0.045033716,-0.03626709,0.012391068,-0.026934149,-0.034069773,0.017352026,0.020625351,-0.01376156,0.017125497,-0.02119167,0.019039657,0.025031315,-0.027364552,-0.013738908,0.00036916943,-0.030762468,-0.0010922884,-0.006342777,-0.04548677,-0.022641448,-0.04825041,0.028678412,0.018076913,0.0075093945,-0.028701065,0.024351733,-0.01862058,-0.014645019,0.030875731,-0.030060232,-0.07652107,0.003862298,0.016038164,0.0077076065,-0.080870405,0.018201504,0.06537591,0.010624151,0.015755005,-0.02289063,0.020546066,0.028451884,-0.0016423261,-0.08168591,-0.0076509747,-0.020444129,-0.027545774,-0.026662316,0.016411936,-0.010012526,0.03477201,0.0045163967,0.051829547,0.030014927,-0.019413428,0.03175919,-0.02947126,-0.0060992595,-0.008341884,0.014316553,-0.029222079,0.008540096,0.034183037,0.016445914,0.07239827,-0.029607177,-0.030807773,0.008109693,-0.008749634,0.0028075282,0.005323402,0.004754251,-0.018518643,0.020206274,0.022686753,-0.0015602098,0.01039196,0.021112386,-0.010154106,0.010867668,-0.006263492,0.02808944,-0.00008092173,0.006229513,-0.0029958293,0.0017754112,0.020704636,-0.0015644572,-0.0046862927,0.032710604,-0.0038481401,0.024918051,-0.010986595,-0.04924713,0.003454548,0.022732059,0.004496576,-0.02686619,0.05078752,-0.037195854,0.01025038,-0.011994644,0.04793327,0.021746663,0.008942183,0.024397038,-0.000983272,0.017114172,-0.0050798845,0.044603314,-0.036584232,-0.024419691,0.031124912,0.0059859958,0.04254191,0.03169123,0.015664393,0.034658745,0.026594358,-0.012844123,-0.0033554423,0.010805373,0.0008862898,0.011575568,0.040842954,0.01416931,-0.014293901,0.005634878,0.0053687077,-0.009882273,-0.021690032,-0.0088742245,-0.010199412,-0.020625351,-0.039325215,-0.005821763,-0.021656053,0.0025994058,-0.033526108,-0.010420276,0.034885272,-0.0038792875,0.0029335343,0.01943608,-0.031555314,0.0302188,-0.035904646,-0.013365136,-0.012017297,-0.030830426,0.0064163986,0.0075377105,0.016140101,-0.013478401,-0.028429233,0.007379141,0.0010802542,0.0056688567,-0.004791062,0.01705754,0.005566919,-0.05006263,-0.015607761,-0.024102552,0.0004739385,0.012968713,-0.015403886,0.022505531,0.0351118,-0.0063314503,-0.013716255,0.0033186316,-0.03372998,-0.0074980683,0.016559178,0.013376463,-0.035474245,-0.04154519,0.03307305,0.023241747,0.0011057386,-0.007396131,-0.0056546987,-0.02423847,0.012753512,-0.023037871,-0.018224157,-0.033616718,0.0061558913,0.05192016,-0.02229033,0.014124005,-0.015947552,0.03660688,-0.026413135,0.017827734,0.034839965,0.01576633,-0.022063803,-0.019945769,0.010273033,0.018699866,-0.026073344,-0.040457856,0.012640248,0.005096874,-0.009129068,0.00046013447,-0.03119287,0.02987901,0.030264106,-0.028225357,0.011547252,-0.0013995167,-0.012345762,-0.017374678,0.025846815,-0.011252766,0.055453993,-0.009440544,-0.010539203,-0.04122805,-0.006252166,-0.0048137144,-0.009819978,0.013059325,0.03853237,0.031147566,-0.004669303,-0.009083763,0.00073055195,0.013693602,-0.020953815,-0.0297884,0.004312522,-0.03232551,0.017793754,-0.018699866,0.04671002,0.021984518,0.020387497,0.00206565,0.0009960142,0.0018674381,-0.007820871,0.013240547,-0.018575275,-0.017714469,-0.003644265,0.040072758,-0.036969326,-0.0014752619,-0.017612532,-0.0029222078,-0.002120866,0.00622385,-0.0004024407,0.009899262,-0.0072941934,0.0064447145,-0.017227435,-0.0056546987,-0.054049518,-0.0073055197,-0.001622505,-0.017929671,-0.024419691,0.00022493496,0.020353518,-0.007045013,-0.0007142703,0.032914482,0.03420569,0.023717456,-0.021825949,-0.0007312599,-0.038894814,-0.051965464,-0.025892122,-0.028701065,0.022675427,0.03959705,0.0049467995,-0.0011453809,0.00317422,0.02580151,0.0017570058,-0.0000019328966,0.015007463,-0.0126175955,-0.02319644,0.0002746649,0.013274526,-0.0046523134,0.048794076,0.0148942,0.009247995,-0.0076962803,0.009701051,-0.00090752676,-0.004711777,0.0124477,0.01828079,0.016989581,0.026254566,0.022222372,-0.00074754155,-0.016536525,-0.007752912,-0.0041681104,0.022777366,0.023185115,-0.007231898,0.0066599157,-0.0062974715,-0.03126083,-0.018190177,0.0064786933,-0.019413428,-0.01159822,-0.014645019,0.007815207,-0.026911495,-0.010754405,0.042745784,0.03314101,0.020897184,-0.03420569,0.028134746,-0.010205075,-0.017907018,-0.010992259,0.015211338,-0.012209846,-0.025325801,0.009327279,-0.0338659,0.015856942,-0.00008994744,0.03207633,0.010108801,0.01025038,0.0011418414,-0.0091970265,-0.010442929,-0.046981853,0.016445914,0.0056830146,0.0043408377,0.028293315,-0.03536098,-0.012844123,-0.022596143,-0.040525813,0.018892413,0.0021166187,0.03651627,0.010363644,-0.0105335405,0.019538017,0.014871546,-0.008596728,0.009757683,0.019288838,0.015913574,-0.0110035855,-0.01971924,0.015902247,0.0013973931,0.009650082,-0.018258136,0.045849215,-0.013331158,0.020455455,-0.036674842,0.014010741,-0.027251288,0.04856755,0.0067561897,-0.02385337,0.0054678135,0.013546359,-0.013840845,0.0002351995,0.056314796,0.005632046,-0.020240255,0.030014927,0.018609254,-0.0175559,-0.010828027,0.00783786,-0.028678412,-0.045192286,0.0011177729,0.041182745,0.008143673,-0.008862898,-0.018439358,-0.008426832,0.007911482,0.018065587,0.013580338,-0.027047412,0.016445914,-0.0038679612,-0.008256936,0.0028967236,-0.013591665,-0.021610746,0.043312106,0.002443668,-0.0025781689,0.025121927,0.0083305575,0.031487357,0.026843539,0.016593156,-0.03715055,-0.008341884,0.003126083,-0.018507317,-0.007197919,-0.016174082,0.0064617037,-0.03599526,0.005351718,-0.007724596,-0.025937427,-0.014520428,-0.012832797,-0.031102259,-0.017374678,-0.03493058,0.01228913,0.01599286,-0.01307065,-0.019186899,0.030264106,0.0015290623,-0.024963357,0.00771327,0.010182422,-0.022811344,-0.050515685,0.02972044,-0.007673627,0.01661581,0.020047706,0.032959785,-0.009604776,-0.008698666,0.0015687046,0.032280203,-0.014543081,-0.01808824,-0.007633985,0.02241492,0.0044342806,0.010680784,0.012266478,-0.044716578,0.01542654,0.021270955,0.041658454,0.0051025376,0.02931269,0.03259734,-0.042315383,0.01307065,-0.001783906,0.023117157,-0.0043295114,-0.0073281727,0.04852224,-0.018971698,-0.02342297,0.009604776,0.03746769,0.0070903185,0.013081977,0.0038934457,-0.040367246,-0.020059032,-0.009967221,0.018065587,0.01608347,0.017102845,0.010907311,0.038645633,0.009072436,-0.01849599,0.021803295,0.011745463,-0.018824456,-0.011745463,0.015098074,-0.021338914,0.003870793,-0.025552329,0.026503745,-0.05037977,-0.0070903185,0.023060525,-0.011099859,0.019005679,0.009695387,-0.009802988,-0.0033157999,-0.018292116,0.028769024,0.00083390524,0.02229033,0.022732059,-0.021588095,-0.002670196,0.016411936,-0.017725796,0.010120127,0.011269756,-0.0063597662,-0.01683101,-0.0042360686,-0.0018221325,0.0078038806,-0.004496576,0.015698373,-0.007877503,0.002248288,0.017295394,0.03660688,0.011383019,0.0017470953,0.0069544017,0.0016748895,-0.0310343,-0.051784243,-0.02335501,0.0049213152,-0.0030496297,0.04106948,0.014407164,0.00021024606,-0.018099567,-0.017601205,-0.0145997135,-0.039529093,-0.037694216,0.04582656,-0.0076283216,-0.0064163986,-0.038237885,-0.0008027577,0.015936228,-0.008364537,-0.011213123,-0.020591373,0.020965142,0.01498481,-0.023377663,-0.020342192,0.017669164,-0.015415213,-0.016627137,-0.030105537,-0.018042935,-0.018767824,0.012832797,-0.034092426,0.031555314,-0.017533248,-0.022539511,0.0032081993,0.019821178,0.0063597662,0.011779442,0.01595888,-0.018133545,-0.039143994,-0.016185407,-0.002709838,0.0073564886,-0.0039160983,0.0514218,-0.032189593,0.01191536,-0.006557978,0.010256044,0.027002107,-0.010301349,-0.03860033,0.004938305,0.0147469565,-0.0064843567,-0.0047174403,0.030445328,0.034001816,-0.010052169,-0.016581831,-0.005275265,0.014622366,0.036878716,-0.0019127437,0.020115664,0.009434881,-0.010878995,0.008738307,-0.033163663,-0.009599113,0.0088742245,-0.017974976,0.023558885,-0.0032818208,0.012549637,0.028904941,0.010731752,-0.0009846878,-0.02101045,0.007192256,-0.030898385,-0.01736335,0.0031713885,-0.034250993,-0.013308505,-0.0200024,0.04458066,-0.019707914,-0.0012253735,0.0049581258,-0.00003718683,0.028633106,-0.004187932,-0.016287345,0.021112386,-0.024623565,0.017974976,-0.011139502,-0.017940998,-0.030875731,0.02291328,-0.00852877,-0.013353811,-0.021236977,-0.016004184,0.05128588,-0.002562595,-0.01106588,-0.018518643,0.032393467,-0.0029448606,-0.02605069,-0.006376756,-0.0015389728,-0.021622073,-0.008166325,0.011116849,-0.02799883,-0.0038226556,0.015732352,0.0032223572,0.013093304,-0.03135144,-0.0047967248,-0.010595835,-0.008647697,-0.00863637,0.01828079,-0.021338914,0.015335929,0.026413135,-0.02065933,-0.008896877,-0.00064560404,0.018462012,0.015086748,0.029222079,0.0048108827,-0.019617302,0.009887936,0.007254551,-0.061298408,-0.011213123,0.0108167,-0.00037129314,0.01620806,0.027659038,0.063654296,0.0035423276,-0.013648297,0.03839645,-0.002702759,-0.0046239975,-0.040978868,0.016978255,-0.0058387527,-0.000877795,0.012005971,-0.012900755,0.0334808,0.0021222818,-0.00023413765,-0.006671242,-0.0029873347,0.039325215,0.0009655745,0.008687339,-0.022324309,-0.010335328,0.028225357,0.0035932963,0.036380354,-0.009955894,0.02972044,0.0159249,-0.03194041,0.0011821917,-0.007401794,-0.022766039,0.009242332,0.021293608,-0.016287345,0.013535033,0.014282574,-0.011077207,-0.017759776,0.01608347,-0.036856063,0.0015205675,0.016955601,0.027568426,-0.0075207213,0.030060232,0.05273566,-0.008981825,-0.015539804,0.03660688,0.028836982,-0.020025052,0.02849719,0.009208353,0.0072149085,-0.00851178,0.03404712,-0.0103126755,-0.023943983,-0.050107937,0.008143673,0.009780335,0.032189593,0.07987368,0.023309704,-0.016219387,0.030467981,0.0005132269,0.003434727,-0.006988381,-0.05128588,0.0026079006,-0.007169603,-0.055816434,-0.018462012,-0.02131626,-0.02793087,-0.025121927,-0.0119719915,-0.0072998567,-0.000121935635,0.009434881,0.0091234045,0.04156784,-0.00056030223,0.022426246,0.02225635]},{"id":"interface-GatewayRelationshipRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipRemoveDispatchData\nDescription: RELATIONSHIP_REMOVE — relationship removed\nProperties: id: string","meta":{"url":"/docs/typedefs/GatewayRelationshipRemoveDispatchData"},"embedding":[0.0042661508,0.0004931381,-0.038178433,0.025058934,0.012888114,0.03910397,-0.04238963,-0.017504234,-0.0044888584,-0.024642443,0.014947435,-0.048822116,0.010747807,-0.0057036267,0.05604131,0.0074563636,0.020477524,0.047989134,-0.013084791,0.11199007,0.002896644,0.033273082,0.035494372,-0.001874214,0.007959625,0.04447209,0.035170436,0.0032133514,0.024480473,-0.025359735,0.06326051,-0.023832597,0.055115774,0.01608122,0.022988044,0.010331315,0.0070167333,0.026007611,-0.017238142,0.005752796,-0.01829094,-0.0071324254,-0.0221782,0.014762327,-0.007120856,0.04713301,-0.020303985,0.026447242,0.02038497,-0.018348787,-0.004931381,-0.04919233,-0.021090692,0.04088563,0.0005289304,0.00408972,0.033805266,0.01574571,-0.023138445,-0.00088359934,0.022918629,0.015815128,0.00021023446,0.016324172,0.0021374137,0.018337216,-0.034777083,0.06525041,0.009313224,0.03702151,0.02857598,0.024017705,-0.018985095,0.027141396,0.012089837,-0.0006572764,0.012355929,-0.017596787,0.004951627,-0.0318385,0.025915058,0.035864588,-0.03403665,-0.04685535,0.018707432,-0.014010328,-0.04595295,-0.024318505,0.01979494,0.009394208,-0.030912962,0.018348787,-0.011170084,-0.036697574,-0.050534364,-0.07459834,-0.000046728812,-0.009353716,-0.046253752,0.046924766,0.016717525,-0.07746751,-0.04195,-0.016000234,-0.015398635,-0.014901158,-0.041140154,-0.007334887,-0.036095973,-0.006201103,-0.028298318,-0.023508659,-0.011233714,0.04567529,0.013327744,-0.006455626,0.027465334,-0.031306315,0.023682198,-0.024156535,-0.027395919,-0.019158632,0.0093479315,-0.018522324,-0.04178803,0.017076172,-0.01993377,-0.012136114,-0.040214617,-0.02751161,0.06233497,0.0015546143,0.00006629706,-0.029316409,0.0064035645,-0.0022964906,-0.005642888,-0.020581646,0.01309636,-0.006206888,0.037114065,-0.04951627,0.0076530403,0.040631108,-0.031653393,0.017643064,0.031722806,0.044402674,0.03523985,0.009816485,-0.030010562,0.04313006,0.006559749,-0.016729096,0.026053889,-0.01546805,0.019413155,-0.018360356,-0.009770208,-0.042759847,0.0030195669,-0.06742543,-0.0049950117,-0.00064209185,-0.057337064,0.0026941826,-0.019019801,-0.007496856,-0.037391726,0.004697104,0.010169346,-0.051922668,-0.06339934,0.0027592594,-0.06960044,0.04909978,0.011540299,-0.015398635,0.008711624,-0.0012415221,0.03797019,0.023578076,0.015549035,-0.05742962,-0.032648344,-0.0011446299,-0.008393471,0.043222614,-0.030357638,-0.006380426,-0.00083949167,0.04474975,-0.0058077495,0.015398635,0.036790125,-0.0011279992,-0.017434819,0.0013716759,-0.00072343793,-0.011632853,0.017874448,-0.028737947,0.035748895,0.009076055,-0.017862879,-0.027048841,-0.037438,-0.044402674,0.008121594,-0.01753894,0.03496219,-0.002765044,-0.03362016,0.01635888,0.022189768,-0.012205529,0.025683673,0.026794318,0.026146442,0.018013278,-0.00832984,-0.018267801,0.029432101,-0.039219663,0.0221782,0.01353599,0.012679867,-0.017180296,-0.052616823,-0.0136979595,-0.036026556,0.019251186,0.009324793,0.009984239,0.020813031,0.030519608,-0.022085644,-0.011389899,-0.023624351,0.017932294,-0.031861637,-0.037530556,-0.007820794,-0.0046421504,0.030079978,0.013651682,0.06011368,-0.0032538436,-0.025220904,0.04019148,0.04683221,0.04822052,-0.012170821,-0.034869637,-0.023323553,-0.012587314,0.0058164266,-0.011332053,0.008202579,0.017457956,0.0309361,-0.04463406,0.02707198,0.021935245,0.00036623818,-0.016601834,0.058355156,0.030889824,-0.04060797,-0.013478144,0.005518519,-0.034545697,0.05298704,-0.036234803,-0.0407468,-0.019829648,-0.0101867,0.0056023956,-0.009324793,-0.030079978,0.01234436,-0.03611911,0.0036819049,0.009232239,-0.015190389,0.06205731,-0.025845643,0.07233078,-0.00662338,0.03375899,-0.01799014,-0.009758639,0.0630754,-0.05715196,0.017388541,0.030982377,0.024920104,-0.032324407,0.028529702,-0.005868488,0.036766987,-0.003436059,-0.014068174,-0.02348552,0.0075951945,0.018429771,0.0039017203,-0.016254757,0.038571786,0.024804411,-0.039497323,-0.020396538,-0.014716051,-0.004205412,-0.020859307,-0.01309636,0.020500662,0.03496219,-0.0035257204,-0.0043876274,-0.0035922434,-0.0047404887,-0.000050389386,-0.049655102,-0.047063597,-0.02781241,-0.028159486,-0.040214617,0.032648344,0.033990376,0.021009708,-0.04148723,0.009382639,0.004107074,0.037877634,0.044888582,-0.02515149,0.05636525,-0.009052916,0.020940293,0.06802703,-0.004410766,-0.03598028,0.018464478,-0.0033724282,-0.0114361765,-0.013408729,-0.015190389,-0.0010130301,-0.00516855,-0.030750992,-0.010979191,-0.053912576,-0.04132526,-0.0051714424,0.0032335976,0.03928908,-0.034753945,-0.006796918,0.026100166,-0.009203317,0.012749283,-0.021310506,-0.00021601906,-0.013721097,-0.014461528,-0.041973136,0.05562482,0.020176724,-0.036905818,-0.0050557503,-0.0212758,-0.016347311,0.008885163,-0.007242333,-0.041695476,-0.031653393,-0.0038294126,0.029108163,-0.008688486,0.010377592,0.018834693,-0.04116329,0.015988665,0.011528729,0.0029559364,-0.05280193,0.017897587,-0.07524622,0.008746332,0.03972871,-0.025058934,0.007184487,0.016069649,0.022074075,-0.03005684,0.04033031,0.020419678,0.017446388,-0.003719505,0.04016834,0.0060622725,0.014241712,-0.00033677282,-0.009828054,0.004523566,-0.0048503964,0.006577103,0.019968478,-0.024596166,0.041533507,0.02586878,0.0208246,0.032949146,0.024619306,-0.06872118,0.03628108,0.009747069,-0.03720662,-0.009625593,0.025799366,0.04697104,-0.009238024,-0.013987189,-0.0067043644,0.025197767,0.030589024,0.053496085,-0.006606026,-0.06372327,-0.06080783,0.05238544,0.06279774,-0.014368974,0.039936956,0.016347311,0.020408109,-0.0074910712,-0.045721564,-0.028876778,-0.0046623964,-0.018545464,0.028228901,0.019679246,0.012170821,-0.0076356865,0.04835935,-0.014507805,0.0045958734,0.027719857,-0.047572643,0.008428179,-0.044865444,0.026979426,-0.023716906,-0.030311363,-0.031931054,0.0029009825,0.024225952,-0.014704482,-0.01963297,-0.01815211,0.009405778,0.049932763,-0.011927868,0.00088721473,0.013998759,-0.004292181,-0.004948735,-0.0024251982,-0.015005281,-0.013651682,0.038594924,-0.001524245,0.0036587666,-0.006461411,-0.032000467,-0.002866275,0.023080599,0.00624738,-0.013374021,0.03306484,-0.047225565,-0.04403246,0.03348133,0.07533877,0.013374021,-0.018418202,-0.020130446,0.050488085,0.0071150716,-0.0040723663,0.02498952,-0.010886638,-0.012159253,0.006056488,0.052894484,-0.022988044,0.015537465,-0.032139298,0.020778323,-0.03880317,0.009544608,-0.03195419,-0.02991801,-0.04132526,-0.009862762,-0.036859542,-0.051367346,-0.025359735,0.016185341,-0.00035177666,-0.017793464,-0.052477993,-0.026539795,0.0071324254,-0.028228901,0.020500662,-0.038363542,-0.012622021,-0.047572643,-0.00096024544,0.010267684,0.012957529,-0.022814507,-0.018395063,-0.0050094733,-0.054976944,0.013894636,0.02348552,0.04433326,-0.039451048,-0.0033839976,0.06858235,0.03378213,-0.017897587,-0.009828054,-0.013038513,0.03496219,0.01829094,0.0022111675,-0.0052495347,-0.0034215974,0.008983501,-0.013003806,0.027187672,0.05280193,0.026146442,0.0215766,0.02276823,-0.006409349,-0.0044425814,-0.010944484,-0.013998759,-0.013350883,0.008642209,-0.0034794435,-0.0018452909,0.014866451,-0.045305073,-0.016162204,-0.031861637,0.024411058,-0.037854496,-0.023254137,0.04120957,0.000046593235,-0.008341409,-0.025035797,0.00039733047,0.02230546,0.013883066,-0.016717525,0.015086265,0.031005515,0.041764893,-0.038710617,-0.01516725,0.039196525,-0.06363072,-0.038594924,-0.044541504,-0.020951862,0.054514173,-0.0650653,0.03362016,0.038571786,-0.045143105,-0.0154911885,0.020037893,-0.011135376,-0.023994567,0.02408712,-0.020165155,0.014658204,-0.004726027,0.037229758,-0.0012299529,-0.0002404229,0.007005164,0.050904576,-0.0009992915,-0.046878487,-0.009718146,0.07519995,0.02660921,0.026377827,0.003482336,-0.03854865,-0.0028026442,-0.015641589,0.028136348,0.0071497792,-0.025313457,-0.0027563672,-0.0048041195,-0.003152613,0.013316175,-0.00654818,-0.0109676225,0.017573649,0.03598028,-0.016277896,0.0315377,0.0016486142,0.030565886,-0.071729176,-0.00047759197,-0.02214349,-0.054976944,0.018545464,-0.021888968,-0.020847738,-0.035679482,0.0058800573,-0.011511376,0.016578695,0.013177344,-0.008989286,-0.02929327,0.0012668298,-0.009833839,0.009851193,0.013894636,0.035494372,-0.015699435,-0.007976979,0.034985326,-0.010105715,0.020720476,-0.02529032,-0.044402674,0.013917774,-0.024734996,0.018082695,0.006785349,-0.03866434,0.08066062,-0.007051441,0.038780034,0.01963297,0.03672071,0.0059234416,-0.013038513,-0.014068174,0.002442552,0.02795124,0.019274324,0.0036124897,0.0015387066,0.010447008,0.017215002,0.095145285,0.013605406,-0.022189768,-0.00050289964,-0.0023152905,0.0051280577,0.003719505,-0.0007961071,-0.008462886,-0.010464362,-0.008862024,-0.0021793523,0.0009841069,-0.01205513,0.05530088,-0.021067554,-0.002043414,0.009903254,0.022351738,0.014207005,0.029594071,-0.008486024,-0.009804916,0.009920608,0.014646635,0.046184335,0.00071620714,-0.0073233177,-0.009926393,-0.0027910748,0.009851193,-0.010470146,-0.021495614,-0.029732902,0.032949146,0.0022473214,0.005177227,-0.016463004,-0.010747807,0.0077745174,-0.023763182,-0.037947048,0.010065223,0.025244042,-0.038895726,0.026053889,0.0023673521,-0.011881591,0.018927248,0.0074910712,-0.0091339005,0.012888114,0.008509163,0.03528613,-0.0055040573,0.02394829,-0.02929327,-0.03820157,-0.00524375,0.01605808,-0.032347545,0.03253265,-0.012309653,0.030265085,0.015757281,0.024596166,0.0007042764,0.012413776,-0.010880853,0.03306484,-0.010215623,-0.039080832,-0.040075786,0.007976979,0.0011728299,-0.00048156886,0.012286514,0.00033912284,-0.010990761,0.0060159955,-0.02394829,-0.013188913,-0.0034649821,0.0052206116,0.01608122,0.0065828874,-0.005668919,0.022386445,-0.0070167333,-0.023809459,0.033666436,0.048729565,-0.03616539,0.025197767,-0.03202361,-0.009504116,0.022097215,0.023138445,-0.0052177194,0.019008232,-0.017596787,0.012656729,0.023809459,-0.0073117483,0.0089603625,-0.0034881204,-0.023786321,0.013397159,0.0044194427,-0.035610065,-0.027233949,-0.052200332,0.005472242,0.018834693,-0.021923676,-0.02454989,0.019424723,-0.023300413,-0.008821532,0.03938163,-0.01167913,-0.07640314,0.016092788,0.020419678,0.00908184,-0.08732449,0.040492278,0.051089685,-0.016185341,0.016925773,0.003652982,0.02438792,0.036790125,0.02586878,-0.08047551,-0.010319746,-0.025220904,-0.012541037,-0.044888582,0.04863701,-0.0136979595,0.049469993,-0.013466574,0.05141362,0.033735853,-0.0028518133,0.013107928,-0.020292416,-0.009781777,-0.007809225,0.012286514,-0.015664726,-0.0023904906,0.02529032,0.02276823,0.069831826,-0.01694891,-0.064741366,0.027233949,0.007919133,0.010406516,-0.0054635652,-0.004731812,-0.01619691,0.029085025,0.030519608,-0.0155721735,0.0070398715,0.018383494,-0.013940913,0.0046710735,-0.0061779646,0.010898207,0.004107074,0.00781501,-0.010105715,0.015583742,0.004552489,-0.022652537,0.0044136583,0.0075431326,0.0097355,0.00091396854,-0.010718884,-0.054005127,-0.0040260893,0.0410476,0.009654516,-0.017284418,0.043546554,-0.022062507,-0.023219429,-0.005368119,0.02975604,-0.002603075,0.011285776,0.00083804555,0.0050297193,0.019702386,-0.003598028,0.048729565,-0.014623497,-0.011135376,0.021484045,0.01561845,-0.0042545814,-0.0041880584,0.024896966,0.025915058,0.024063982,-0.0084918095,-0.027557887,0.026215857,-0.020408109,-0.0008452763,0.0027997517,0.020500662,-0.028437149,-0.0105395615,-0.0019161524,0.0033868898,-0.008977717,-0.028737947,-0.0037166127,-0.0116097145,-0.059003033,0.01995691,-0.045559596,-0.021588169,-0.022212906,-0.01950571,0.052755654,0.009538824,0.006027565,0.017631495,-0.027257087,0.034314312,-0.026285272,-0.012390637,-0.02556798,-0.041464094,0.017955434,0.013142636,0.0007707994,-0.008890947,-0.035725757,0.008092671,-0.0039017203,0.023173152,0.0008864917,0.03986754,0.004844612,-0.025891919,-0.0026551364,0.0199222,-0.015109404,0.00520615,-0.013397159,0.007005164,0.040122062,-0.009226454,-0.010580054,0.007901778,-0.028807363,-0.006004426,0.0016529526,0.008642209,-0.05904931,-0.014646635,0.019066079,-0.009058701,-0.005252427,0.010846145,-0.0008741993,-0.037738804,0.005631319,0.00043565352,-0.0443564,-0.02438792,0.029594071,0.052477993,-0.003748428,0.006143257,-0.0030716285,0.03718348,-0.0046421504,0.02110226,0.00550695,-0.00490535,0.005255319,-0.007930702,-0.0007498302,0.017596787,-0.013131067,-0.01457722,-0.0053363037,0.030311363,0.0033087975,-0.0007845379,-0.019494139,0.023855736,0.0057499036,-0.026354687,0.018834693,-0.0006626995,-0.0093595,-0.0017671987,0.014623497,-0.026539795,0.03729917,0.013455005,0.004639258,-0.02438792,0.0046623964,-0.0013217836,0.023994567,0.041117016,0.04116329,0.01709931,0.006218457,-0.009301655,-0.0019349525,0.020870877,-0.027395919,-0.003152613,0.018244663,-0.0027708288,0.019945338,-0.00035539205,0.070988744,-0.006802703,0.030866684,0.012633591,-0.011129592,-0.012274945,-0.0037831357,0.010354454,-0.001665968,-0.02765044,0.00024331521,0.026077027,-0.046508275,-0.0066696564,-0.0044425814,-0.0029675055,0.010360238,0.0026348904,0.004043443,0.031861637,-0.02663235,0.008642209,-0.019089216,-0.0035546436,-0.03880317,-0.003219136,-0.0053565498,-0.0060796263,-0.02811321,-0.019771801,0.01800171,0.001467122,0.023809459,0.038039602,0.005133842,0.020570077,-0.02200466,-0.021368353,-0.0058569186,-0.045698427,-0.015699435,-0.049701378,0.026956288,0.031861637,-0.0007599533,-0.004581412,0.012112976,0.007467933,-0.023381397,0.002925567,0.0010072454,-0.010065223,-0.0015719681,-0.0054201805,0.044541504,0.0006120842,0.0074332254,-0.012402206,-0.0035315051,-0.015606881,0.023427675,0.012101406,-0.009157039,0.020905584,0.020118877,-0.01456565,0.07103503,0.03854865,-0.017527372,-0.017828172,-0.012691436,-0.016382018,0.0134434365,0.030079978,0.007051441,-0.0052871346,0.0027462442,-0.033805266,0.006368857,0.038756896,-0.0206742,-0.01875371,-0.016902633,-0.003890151,-0.0021562139,-0.042482182,0.031167485,0.020037893,0.0068489797,-0.034129206,-0.0006232918,-0.0061085494,0.0014251836,-0.027881825,0.018233094,-0.01653242,-0.034268036,0.010770946,-0.038178433,0.00397692,-0.029085025,0.03706779,0.008671132,0.01561845,-0.00041974583,0.012066699,-0.0062878723,-0.03822471,0.024943244,0.0041678124,0.010007377,0.011951007,-0.027858688,-0.023022752,-0.033550743,-0.014357405,0.010071008,-0.009353716,0.034684528,0.0037715663,-0.012228668,0.0075894096,0.034915913,-0.023427675,0.004535135,0.0045091044,0.0067737796,-0.009457839,-0.015676295,0.014762327,0.029108163,0.015711004,-0.02334669,0.038756896,-0.032486375,-0.009637162,-0.047618918,-0.0015097834,-0.03362016,0.009110763,0.021160107,-0.028066933,0.014218574,0.0027881826,0.01293439,0.009480977,0.060761556,-0.013408729,-0.011800607,0.026262134,-0.01653242,-0.0018510756,-0.030565886,0.006438272,-0.0342449,-0.021819552,-0.0123327905,0.017168725,0.03556379,-0.012575745,-0.009301655,0.00848024,0.0050210427,0.029478379,0.009023993,-0.012610452,0.0206742,0.009966885,-0.018348787,-0.011187438,-0.01619691,-0.016150635,0.04808169,0.029085025,0.005023935,0.027419057,0.013142636,0.012066699,0.002725998,-0.014449959,-0.054838113,0.010597408,0.034753945,-0.0215766,-0.0016775372,-0.037692524,0.02991801,-0.025891919,-0.006455626,0.0025828287,-0.01100233,-0.01383679,-0.034476284,-0.03306484,-0.023242567,-0.017862879,0.005781719,0.024179675,-0.019274324,-0.017076172,0.0061953184,-0.0018640909,-0.02753475,-0.017955434,-0.013964051,-0.018198386,-0.03810902,0.052431714,-0.0006019611,0.021807984,0.023925152,0.024063982,-0.016578695,-0.0035662127,0.026377827,0.029871732,-0.015815128,-0.00804061,-0.0099611,0.022652537,-0.0053507653,0.011279992,0.012737714,-0.03970557,-0.012517898,0.010909776,0.03915025,-0.0055821496,0.012448483,0.046461996,-0.026238997,0.02201623,-0.030265085,0.009076055,-0.002555352,-0.039034557,0.044217568,-0.030218808,-0.026400965,-0.011575007,0.046323165,0.0045871967,0.0029313518,-0.032231852,-0.009504116,-0.024318505,0.010504854,0.017423248,0.0056284266,0.0029212285,0.008324055,0.0064729797,-0.022479,-0.0036124897,0.024063982,0.00654818,-0.023716906,-0.012517898,0.0076183327,0.008000117,-0.00062401494,-0.028066933,0.04301437,-0.062844016,-0.033573885,0.03646619,-0.013177344,-0.004439689,0.0120782675,-0.029617209,0.00832984,-0.017284418,0.037831355,0.0067043644,0.028182626,0.01383679,-0.02438792,0.007838148,0.020778323,-0.009307439,0.018244663,-0.005223504,-0.0119047295,-0.010614761,-0.009266947,-0.018418202,0.018094264,-0.029478379,0.001599445,-0.007907564,0.013732667,0.03523985,0.024920104,0.014588789,0.011823745,-0.013616974,-0.013987189,-0.01859174,-0.05307959,-0.006160611,-0.0035633205,-0.021009708,0.01858017,0.017943863,0.021831123,-0.0051916884,-0.03139887,-0.018719,-0.032463238,-0.010400731,0.044865444,-0.006467195,-0.03417548,-0.019123925,0.024781274,0.027048841,-0.025382873,0.0074447943,-0.008399256,0.050904576,0.021484045,-0.0090934085,0.0015444912,-0.009376855,-0.018996663,-0.019413155,-0.021622876,-0.012749283,-0.008017471,0.009816485,-0.021773277,0.029270133,-0.020535368,-0.015178819,0.006461411,-0.0011800607,0.028020656,0.0006728226,0.023277275,-0.0026912903,-0.02751161,-0.0024396598,0.000059879763,0.029108163,-0.0104585765,0.04546704,-0.02021143,0.0075894096,-0.01767777,-0.007687748,0.005275565,-0.012737714,-0.03331936,-0.005073104,0.012066699,-0.0010846145,-0.023740044,0.038039602,0.019690815,0.00486775,-0.0074158716,0.006206888,0.0029935362,0.011638638,-0.022398014,0.015560604,0.013061652,-0.0039017203,-0.011655991,-0.03625794,-0.0034013514,-0.0019031371,-0.010475931,0.023716906,0.03507788,0.010180916,0.021634445,0.02201623,-0.012957529,-0.052477993,0.0315377,-0.008567009,-0.004410766,0.0104585765,-0.040931907,-0.011199007,0.006455626,0.028344594,-0.010007377,0.022374876,-0.0030311362,0.018568601,0.028252041,-0.017319126,-0.021518754,0.015872972,-0.009411562,-0.0017339372,0.012240237,-0.005747011,-0.020535368,0.020801462,-0.020581646,-0.03216244,-0.012679867,-0.019100785,0.04238963,-0.008578578,-0.0007031918,-0.021727,0.024804411,-0.010198269,-0.03167653,0.013940913,-0.00015537103,-0.016115926,-0.006004426,-0.02352023,-0.011789038,-0.0002715152,0.0060622725,0.024434198,-0.010256115,-0.027141396,0.0025958442,-0.0089198705,0.012911252,-0.00198846,0.016694387,-0.015734142,0.002717321,0.025845643,-0.009660301,-0.02290706,0.0039393203,0.031213762,0.010556915,0.030427054,-0.0070572253,-0.0049458425,0.0007932148,0.025822503,-0.051691286,-0.015421773,0.010024731,-0.018857833,0.0050759963,0.022826076,0.06252008,-0.01649771,-0.01948257,-0.005781719,-0.0148086045,-0.01637045,-0.008133163,0.010990761,-0.016555557,0.012390637,0.0046623964,-0.012922822,0.025197767,0.024827551,0.016914202,0.0022415367,0.0075951945,0.018927248,0.0010094147,0.012240237,-0.00632258,0.0013015375,0.03348133,0.0059205494,0.008734763,0.019204909,0.02991801,0.01919334,-0.028275179,-0.00420252,-0.010984977,-0.014866451,-0.0019956909,0.009272732,-0.017423248,0.010076793,0.020003185,0.008138948,-0.028899917,0.0056573497,-0.016786942,0.0018134756,0.020940293,0.025776228,-0.0035286127,0.03778508,0.03271776,-0.035934005,-0.0070225177,0.021877399,0.038294125,-0.025984474,0.03493905,0.012101406,-0.009047132,-0.024133397,0.01934374,-0.009492547,-0.019864354,-0.029316409,0.017619925,-0.0034649821,0.018568601,0.04461092,0.026701765,-0.008121594,-0.018105833,0.016243188,-0.002866275,-0.012390637,-0.03403665,-0.00027458827,-0.031792223,-0.03797019,-0.0107940845,-0.021935245,-0.027696718,-0.010250331,-0.0017628602,0.016092788,0.009920608,-0.0075431326,-0.005527196,0.03017253,0.017886018,0.027187672,0.010921346]},{"id":"interface-GatewayRelationshipUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipUpdateDispatchData\nDescription: RELATIONSHIP_UPDATE — relationship updated\nProperties: id: string, type: number","meta":{"url":"/docs/typedefs/GatewayRelationshipUpdateDispatchData"},"embedding":[-0.002009237,-0.010216832,-0.025762271,0.031861544,0.019585932,0.023868635,-0.0022762178,-0.011350812,-0.026180632,-0.027920136,-0.014477516,-0.027920136,-0.015435344,-0.0041753594,0.031597316,-0.0017161085,0.01529222,0.03679381,-0.018683152,0.08239523,-0.02121534,-0.001044528,0.068523236,0.015611496,0.016283076,0.0461519,0.019662999,0.040052626,0.0068754437,-0.03791678,0.046680354,-0.009462681,0.06455981,0.007260777,0.01004068,0.006490111,-0.004158845,0.03223587,0.00027454985,-0.032367982,-0.0055900826,-0.001944556,0.006126797,0.002749627,-0.043113273,0.030848669,-0.01893637,0.019255647,0.008835138,-0.010448032,-0.00455794,-0.03421758,-0.012660946,0.0049350164,0.043289423,0.024331035,0.045094986,0.00497355,-0.020455685,-0.016822543,0.039634265,-0.0003664105,-0.01096548,-0.022481436,0.013563726,0.03677179,-0.038247064,0.053726446,0.045359213,0.013662811,0.036925923,0.057954103,-0.00650112,0.023208063,0.010420509,0.019585932,0.004202883,-0.04225453,0.018793248,-0.008526872,0.011725136,0.04428028,-0.062886365,-0.047032658,0.031178955,-0.01256186,-0.03738832,-0.06566077,-0.010833366,0.0035450647,-0.04866207,0.03679381,-0.03906177,0.00227897,-0.05271357,-0.0858302,0.010833366,-0.013101326,-0.029637622,0.058086216,0.014213287,-0.07512895,-0.036441505,-0.04042695,-0.029527526,-0.026819184,-0.024771415,-0.002837703,-0.021622693,-0.016789515,-0.043509614,-0.018077629,-0.011626051,0.029747717,0.019519875,-0.042738948,0.026158614,-0.023009893,-0.004497388,-0.041241653,-0.033909313,-0.027369661,0.0066992915,-0.015424334,-0.022789702,0.001756018,-0.009556262,-0.003919388,-0.03943609,-0.021622693,0.043267407,-0.018551037,-0.0003677867,0.0086755,-0.0052267686,-0.010398489,0.0117581645,0.005419435,-0.0031019317,-0.031795487,0.03355701,-0.043223366,-0.0021963988,0.020037321,-0.02560814,0.024110844,0.00079819,0.031421162,0.040008586,-0.007508491,-0.053946637,0.060816575,-0.04154992,-0.015545439,0.037278228,-0.0004844188,0.013739878,0.0018702418,-0.01084988,-0.03630939,0.010238851,-0.05663296,-0.017218886,0.0049515306,-0.0548274,-0.026202653,-0.04091137,-0.0120003745,-0.05777795,0.0035313028,0.030870687,-0.06751036,-0.040118683,0.026532937,-0.034768056,0.01644822,0.014862849,-0.021743797,-0.02968166,0.034041427,0.061256956,0.044896815,-0.03148722,-0.044874795,-0.009286528,0.011103098,-0.03309461,0.051656656,-0.022921816,-0.03014406,-0.0068754437,0.034129504,0.0080919955,0.013960068,0.01256186,-0.031861544,0.0027028366,0.00980948,-0.00029347246,0.0018633609,0.018529018,-0.066365376,0.042122416,-0.0022762178,-0.017395038,-0.013365555,-0.029043108,-0.0452271,-0.005675406,-0.015809668,0.04361971,0.0045304163,-0.036441505,0.03012204,-0.01577664,-0.018529018,0.015512411,-0.0089067,-0.014334392,-0.0012055422,0.0003880855,-0.010409499,0.03564882,-0.042496737,0.011158146,0.027677927,0.02194197,0.005276311,-0.028866956,0.00490474,-0.02215115,-0.0006007068,0.026158614,-0.010717765,0.012429746,0.021754807,-0.015611496,-0.008361729,-0.008967252,0.034856133,-0.00924249,-0.016987685,-0.011670088,0.011064566,0.008625957,0.018727189,0.049851097,0.006286435,-0.022107111,0.06768651,0.018782238,0.029505508,0.005375397,-0.039215904,-0.024264976,-0.026158614,0.018518008,0.004274445,0.034812097,0.040470988,0.0146316495,-0.04130771,-0.007139672,0.01736201,-0.017516144,-0.040448967,0.048970334,0.05337414,-0.02673111,-0.040779255,0.021303417,0.009000281,0.034151524,-0.022767683,-0.026136596,-0.025916405,-0.005273559,0.02353835,-0.013123346,-0.009479195,0.0033579029,-0.026224671,-0.018683152,0.023846615,0.006578187,0.07129764,0.0033331315,0.06116888,0.0113618225,0.008433291,-0.020741932,-0.008647976,0.030011944,-0.044390377,0.036639675,0.057866026,0.019464828,-0.046019785,0.03542863,0.0032312935,0.035406608,-0.016591344,-0.021138273,-0.0032670745,-0.005372645,0.014345402,0.024000749,-0.024022767,0.020830007,0.02099515,-0.019817133,-0.008625957,-0.020896064,0.00047822593,-0.020730922,-0.016591344,0.033865277,0.048265725,0.0023326415,-0.0028019221,-0.0051552067,0.016921628,0.000993609,-0.030650496,-0.03421758,-0.06460385,-0.03738832,-0.04494085,0.028228404,0.008141538,0.026444862,-0.017439077,0.014807802,-0.0053203492,0.030958764,0.05975966,-0.0092094615,0.050996087,-0.011306775,0.017328981,0.040074643,-0.03835716,-0.0171198,-0.008994776,-0.012506812,-0.028206384,-0.02215115,0.010772813,-0.008879176,0.005116673,-0.02853667,0.002212913,-0.036837846,-0.012352679,-0.018848294,0.0091379,0.045755554,-0.044236243,-0.02488151,0.023714501,-0.031112896,0.024595262,-0.0139930975,0.011857251,-0.024859492,0.003591855,-0.0134316115,0.05707334,0.0054937494,-0.025387948,-0.022679606,-0.018881323,-0.009231481,0.020213475,-0.014323383,-0.028184365,-0.0069745295,-0.018209742,-0.013971078,-0.0004796021,0.00025218676,0.07468857,-0.026819184,0.013629783,-0.0030221127,0.029329356,-0.055664122,0.008620452,-0.07169398,-0.0024688845,0.017538162,-0.014290354,-0.03058444,0.01460963,-0.00958929,-0.01961896,0.06138907,0.029505508,0.039105806,-0.010932451,0.033689123,-0.007882815,0.016789515,0.008802109,-0.00011482583,0.015435344,-0.019343723,0.010128756,0.035516705,-0.0043129786,0.018881323,-0.000515383,0.021380484,0.021986008,0.027435718,-0.047429003,0.032279905,0.01300224,-0.03881956,0.014554583,0.009567271,0.024309015,-0.004200131,0.011945327,-0.010844375,0.0017904228,0.016591344,0.037300248,0.006346987,-0.05654488,-0.030738574,0.072310515,0.05460721,-0.001900518,0.053990673,0.011229708,0.008488338,-0.023846615,-0.0019362989,-0.014356411,-0.0041313213,-0.013673821,0.020785969,0.0171198,0.012044412,0.03128905,0.005846054,-0.023428254,-0.0011291637,0.01392704,-0.06372309,0.03338086,-0.043641727,0.031002803,-0.043311443,0.0061323014,-0.03401941,0.00073144486,0.03307259,-0.011956336,-0.033006534,-0.008923214,-0.013156374,0.030848669,0.0064515774,-0.0009942971,0.00017942073,0.012727003,-0.020741932,-0.013497668,-0.025013624,-0.026576975,0.0077892337,0.004478121,0.010249861,-0.00615432,-0.029945888,-0.013717859,0.016778504,0.035098344,-0.058746785,0.033226725,-0.024947567,-0.022217207,0.06006793,0.06121292,0.015248182,-0.028602727,0.018683152,0.032764323,-0.008983767,-0.0021385988,0.03835716,-0.009247995,-0.0053148447,0.02261355,-0.0035147886,-0.013860983,0.006181844,-0.03155328,0.010552622,-0.025828328,-0.005339616,-0.007348853,0.0017794133,-0.007668129,0.02283374,-0.04042695,-0.05161262,-0.026444862,0.0056038443,0.004590969,0.016294086,-0.06764248,-0.028184365,-0.01060767,0.0011133375,0.005353378,-0.017901476,0.015314239,-0.04452249,0.0011374208,0.015622506,0.022745663,-0.011482927,-0.023890654,0.0018523514,-0.058174293,0.010596661,0.0023560368,0.033226725,-0.050335515,-0.00554054,0.050952047,0.0072662816,-0.008130529,-0.006935996,-0.028712822,0.04502893,0.022228217,-0.014048144,0.006005692,0.0009048447,0.029065127,-0.018551037,0.040008586,0.049718983,0.024771415,0.010392984,0.025189776,0.021347456,-0.008350719,-0.025828328,0.005312092,-0.020653855,0.005631368,0.008372738,0.012385707,0.018573057,-0.031267032,-0.016261058,-0.034349695,0.021622693,-0.03606718,-0.026312748,0.041704055,-0.0015647277,-0.054387018,-0.03467998,0.010310413,-0.013662811,0.0171198,0.014642659,0.0050093303,0.041461844,0.048265725,-0.03972234,0.0032257887,0.06354693,-0.029549545,-0.00707912,-0.07015265,-0.0020945608,0.03309461,-0.076450095,0.05341818,0.041571938,-0.030474344,0.003880855,0.04813361,-0.019806122,0.013739878,0.022855759,-0.021281397,0.017945513,-0.025387948,-0.019266656,-0.0029918365,0.007139672,0.023604406,0.020180445,0.0021785083,-0.04265087,-0.030320212,0.056456808,0.04181415,-0.012760031,0.0150279915,-0.042276546,-0.003699198,-0.0356268,0.029769735,0.012363688,-0.03490017,0.007145177,0.0024716367,0.008257139,0.026775148,0.006402035,-0.016789515,0.023384215,0.05222915,-0.011912298,0.024110844,-0.0096828705,0.034547865,-0.052801646,0.005791006,-0.029439451,-0.055091627,0.0096828705,-0.033909313,-0.03630939,-0.028955031,-0.024110844,-0.009391119,0.021050198,0.0046597784,0.0060442253,-0.032500096,0.020004293,0.004373531,0.0075690434,0.022382349,0.057117376,-0.019464828,0.01622803,0.013420602,-0.0011546232,0.030232135,-0.042122416,-0.086226545,-0.009154414,-0.011273746,0.030562421,-0.0041753594,-0.046284012,0.056456808,0.016128944,0.019729055,-0.0067873676,0.01710879,0.017780371,-0.008345215,-0.019123532,0.032918457,0.011136128,0.007536015,0.028206384,0.011235213,0.019343723,0.030452326,0.09151111,0.013805935,0.0019968513,0.0051111686,0.02327412,-0.0016335372,-0.006969025,0.018374885,0.020973131,0.0026808176,-0.012881136,-0.00012316898,0.0075415196,-0.010150775,0.044434413,-0.02142452,0.017218886,0.0008807614,0.011394851,0.025982462,0.033733163,-0.0017436324,-0.011824222,0.0007747948,0.04357567,0.01667942,-0.009198452,0.010519594,-0.00788832,0.018209742,0.014928906,0.00197208,-0.022789702,-0.021666732,0.003867093,0.0035313028,0.02261355,0.0010830613,0.027986195,0.0025789796,0.0015853705,-0.005397416,0.0044203214,0.023714501,-0.03512036,0.037234187,0.00313496,0.011956336,0.025277853,-0.008009424,-0.01916757,-0.008383748,0.012914164,0.031112896,-0.020951113,0.014532563,-0.04390596,-0.032103755,-0.017934505,0.026576975,-0.02921926,0.030892707,-0.0022610796,0.005636873,-0.004706569,0.023934692,-0.0018606085,0.03696996,-0.005036854,0.017780371,-0.035406608,-0.010668223,0.0037680075,-0.019332713,0.007943367,0.010200318,-0.00012910379,0.005034102,-0.011064566,0.0044726166,-0.006391025,-0.021380484,0.0017381276,-0.0089067,0.0030578936,0.008268148,-0.00788832,0.021820864,-0.009187442,-0.024463149,0.021325435,0.04540325,-0.03696996,-0.0022748415,-0.02827244,-0.011526965,-0.0019624466,0.010541613,-0.02216216,0.034261618,-0.030452326,0.0146316495,0.0028101795,-0.024859492,-0.009919575,-0.01874921,-0.003938655,0.00016230438,-0.010585652,-0.046416126,-0.024463149,-0.038291104,0.023692481,0.03058444,-0.0008807614,-0.045315176,0.0026601746,-0.00593413,0.007200225,0.03903975,-0.013640792,-0.055399895,0.004824921,0.03626535,0.01416925,-0.068523236,0.02968166,0.054431055,-0.0000033598383,0.036221314,-0.04659228,0.01005169,0.009996642,0.022987872,-0.06843516,-0.005391911,-0.018540028,-0.043729804,-0.029153204,0.038247064,-0.0038560836,0.02873484,-0.0023821844,0.042364623,0.02600448,-0.017593209,0.03379922,-0.036375448,-0.00729931,-0.0057689874,-0.0012509564,-0.016272068,0.000084893705,0.031993657,0.011670088,0.06094869,-0.028250422,-0.017505134,0.012837098,0.009148909,0.003060646,0.000529489,0.022536483,-0.037740625,0.02919724,0.0328524,-0.0012915541,-0.0009688376,0.021589665,0.001414723,0.0057689874,-0.016602352,0.026334766,-0.0008649352,-0.00330836,-0.0016115182,0.0034790076,-0.006550663,-0.021501588,-0.009952604,0.02143553,-0.014257326,0.028977051,-0.0069910437,-0.04390596,-0.009088357,0.032500096,-0.00020969691,-0.017020714,0.05975966,-0.024639301,-0.010717765,-0.0022803464,0.033909313,0.030188097,0.0076130815,0.01664639,-0.005642378,0.0044368356,-0.015908753,0.05636873,-0.03104684,-0.040052626,0.022899797,0.012011384,0.0360892,0.004868959,0.044236243,0.031663373,0.030738574,-0.0029560556,0.0035505695,0.003148722,0.0076351007,-0.00065162586,0.014818811,-0.01230864,-0.03767457,0.0070020533,0.00348176,0.006413044,0.010117747,-0.034768056,-0.036859866,-0.0014917897,-0.049454752,0.0015757373,-0.010750794,-0.024903528,-0.02670909,-0.016029857,0.04566748,0.0016734467,0.014004107,0.026576975,-0.022525473,0.05636873,-0.004502893,-0.0036166266,-0.046504203,-0.022921816,0.020070352,0.013343535,0.02560814,0.0076130815,-0.02190894,0.002197775,-0.005791006,-0.011427879,-0.025916405,0.04132973,0.005287321,-0.02807427,-0.0063524917,-0.014213287,0.016150963,0.009385614,-0.018209742,0.0015578468,0.019211609,-0.015699573,0.006545158,0.0023175036,-0.02142452,-0.011890279,0.0166574,0.0055818255,-0.04491883,-0.030210117,0.046239976,0.004590969,-0.009055329,-0.011857251,0.021963987,-0.032808363,0.030540403,-0.049498793,-0.032279905,-0.015050011,0.005890092,0.027457736,-0.016382162,-0.00075621624,-0.008658986,0.018727189,0.0020780466,0.032588173,0.012671955,0.005353378,-0.019288676,-0.0283385,0.014477516,0.0076295957,-0.026532937,-0.036617655,0.018352866,0.03531853,-0.006457082,-0.011791194,-0.017141819,0.022723645,0.031443182,-0.027479757,0.034569886,-0.007387386,-0.0045441785,-0.025652176,0.039546188,-0.020675873,0.056985263,-0.007200225,0.0087911,-0.017978542,-0.00029725698,-0.0043927976,0.005868073,0.045359213,0.043443557,0.037058037,0.0011043922,-0.027325623,0.015105058,0.019123532,-0.01577664,-0.02149058,0.021611683,-0.012231574,0.001705099,-0.010277385,0.054739323,0.024705358,0.0096828705,-0.012297631,0.011780184,-0.0007121782,0.0090223,0.018308828,-0.009627824,-0.034085467,-0.014444487,0.013563726,-0.05870275,-0.029791756,-0.0057139397,0.007921348,0.026797166,-0.010183804,-0.0018729942,0.037058037,-0.002486775,0.008345215,-0.023009893,0.013519688,-0.047957458,-0.001218616,-0.016338125,0.0025555843,-0.029263299,0.0019885942,0.023978729,0.010442528,0.00980948,0.02189793,0.022305284,0.027237548,-0.01776936,-0.01982814,-0.011923308,-0.054431055,-0.02829446,-0.025035644,0.0048056543,0.04450047,-0.023978729,0.0006832782,0.0049212542,0.02145755,-0.015005972,0.0051552067,0.011945327,-0.009352585,-0.03263221,0.0025707225,0.020841017,-0.00695251,0.011769175,0.01005169,-0.0123196505,-0.012727003,0.0090498235,0.00081195193,-0.004670788,0.019762084,0.046460167,0.0020188703,0.028140327,0.03606718,0.017725324,-0.022129131,-0.016547306,-0.003002846,0.00089933997,0.041682035,0.022987872,0.0051662163,-0.009110376,-0.024529206,-0.011086584,0.014246316,-0.016976677,-0.029329356,-0.009093862,0.014587611,-0.0029477985,-0.015380296,0.049498793,0.03034223,-0.003316617,-0.03864341,0.024286997,-0.00017580824,-0.016932638,0.0070185675,0.013519688,-0.020929093,-0.027325623,0.0149509255,-0.021358464,0.037828702,-0.0094847,0.026885243,0.0018674894,-0.016602352,0.0034845124,0.0014394944,-0.0198942,-0.061741374,-0.00029175222,0.008246128,0.01346464,0.013607764,-0.024529206,-0.0251017,-0.02281172,-0.02353835,0.030011944,0.0028789889,0.01574361,-0.0025500795,-0.013145364,0.022030044,0.022239225,-0.009556262,0.008581919,0.013090316,0.015886733,0.00092686375,-0.009424147,0.015039002,-0.0014044016,-0.0019707037,0.008367234,0.05121628,-0.01894738,0.0018633609,-0.051040124,-0.008477328,-0.043333463,0.025255833,0.01803359,-0.02441911,0.011328794,0.017527152,-0.005221264,-0.0044808737,0.056809112,-0.0075910627,-0.0126389265,0.02853667,0.0004111367,0.00079887814,-0.020125398,0.008433291,-0.045072965,-0.04923456,0.017086772,0.026180632,-0.00027386175,0.0064075394,-0.008323195,-0.014037135,0.008262643,0.011328794,0.006864434,-0.021963987,0.028712822,-0.0033551506,-0.014675687,-0.005053369,-0.015688563,-0.011670088,0.049939174,-0.006594701,-0.0038258075,0.033226725,0.016547306,0.012947192,0.011912298,-0.0023119987,-0.035208438,-0.0006354556,0.00455794,-0.007458948,0.0071561867,-0.023582388,0.03172943,-0.036375448,-0.023318158,-0.011548984,-0.027435718,-0.012903155,-0.0032615697,-0.021193322,-0.026775148,-0.028206384,0.010453537,-0.0087911,0.0024688845,-0.012649936,0.040448967,-0.014675687,-0.034107488,0.002763389,-0.0015757373,-0.023472292,-0.023890654,0.030496364,-0.010200318,0.0084112715,0.013827954,0.027633889,0.010442528,0.0007101139,-0.00015421926,0.035582762,-0.005862568,-0.010123252,-0.009082852,0.018066619,0.012859116,0.008747062,0.010238851,-0.029373392,-0.008554395,0.025718233,0.03263221,0.019255647,0.0084443,0.052581456,-0.043707784,0.032830384,0.004797397,0.012881136,-0.00947369,-0.013310507,0.03811495,-0.019266656,-0.014851839,0.02488151,0.03514238,0.00262577,0.011295766,-0.015501401,-0.015677553,-0.012231574,-0.02075294,-0.008967252,0.008482833,-0.009159919,0.029703679,0.011714127,0.0024551225,-0.012616907,0.027127452,-0.003236798,-0.026202653,-0.00650112,0.0066772727,-0.0035175409,0.0027688937,-0.030980783,0.031905584,-0.053242028,-0.006897463,0.027920136,-0.03243404,0.007552529,-0.025938423,-0.026753128,-0.0012365065,-0.009143405,0.020048331,0.0006946318,0.016789515,0.011482927,-0.022525473,-0.0047698733,0.024705358,-0.03216981,0.037454378,0.009594794,-0.013684831,-0.0043652738,0.0090223,-0.004023979,0.013772907,-0.021776825,0.007491977,-0.010068204,0.0070020533,0.034834113,0.0061323014,0.013794926,0.022228217,-0.008047958,0.0062038633,-0.020004293,-0.05412279,-0.036221314,0.0024826461,-0.017637247,0.003503779,-0.005515768,0.028162347,0.0028597221,-0.025850348,-0.021050198,-0.03397537,-0.011703118,0.03399739,-0.019013437,-0.010624184,-0.039171863,0.018418923,0.011504946,-0.01849599,-0.013343535,-0.016580334,0.03357903,0.017461095,-0.016106924,-0.0278761,0.008378243,-0.010123252,-0.0104865655,-0.034768056,-0.009303043,-0.01140586,0.037146114,-0.028382536,0.01664639,-0.026753128,-0.019607952,0.01643721,-0.009633328,0.024000749,-0.008554395,0.020059342,-0.00075484003,-0.025476024,-0.021325435,-0.012583879,0.017527152,-0.012749022,0.045975745,-0.027832061,0.022965854,-0.018055608,0.00548274,0.010497575,-0.0015592229,-0.032103755,0.008229614,0.016084906,0.010695746,-0.002153737,0.023119988,0.01621702,0.0061763395,-0.01117466,-0.0052405302,0.011802203,0.031024821,0.010662718,0.02373652,0.0026863224,-0.0050891493,0.0010149399,-0.04637209,0.0072772913,0.018143686,0.0060001872,0.023780558,0.011158146,0.0014202278,0.023384215,0.006605711,0.0016596848,-0.04284904,0.02142452,-0.006561673,-0.011582012,0.017934505,-0.023384215,-0.014422468,-0.022338312,0.0351644,-0.03234596,0.007833272,0.006880949,0.014279344,0.038973693,0.0040074643,-0.0045249118,0.021732789,-0.004582712,0.010904928,-0.0048634545,-0.027017357,-0.04813361,0.026863223,0.010888413,-0.007976396,-0.00831769,-0.020510731,0.06949208,-0.0017147324,-0.004323988,-0.003432217,0.0397884,0.010079213,-0.025828328,-0.02122635,-0.015490391,-0.00764611,0.013982087,-0.008180072,-0.017736332,-0.008394757,0.00030413794,0.016161973,-0.002300989,-0.040647138,0.017736332,0.00993609,-0.00031944804,0.0051111686,0.024969587,-0.02283374,0.013717859,0.004882721,-0.019718045,-0.006330473,-0.0065176347,0.034768056,0.01664639,0.04883822,0.004643264,-0.0073378435,-0.006313958,0.02714947,-0.051524542,0.015864715,0.007288301,0.0003240927,-0.016822543,0.020796979,0.056104504,-0.018760217,-0.013871992,0.014279344,0.004373531,-0.010717765,-0.017857438,0.014719726,-0.010778318,0.0064515774,0.027083414,-0.008774586,0.021347456,0.026114576,-0.016778504,-0.00455794,0.013211422,0.02349431,0.005956149,0.009440661,-0.010409499,-0.028470613,0.029813774,0.02075294,0.020929093,0.014323383,0.025828328,0.025476024,-0.022019036,0.01278205,-0.005686416,-0.022987872,0.00496254,0.0015592229,-0.021809855,0.03494421,0.021974998,-0.0079323575,-0.007926852,0.002821189,-0.031156935,-0.013354545,0.011257232,0.02100616,0.00047925807,0.009187442,0.049895134,-0.01894738,-0.012947192,0.039325997,0.025167758,-0.015952792,0.038379177,0.008449805,-0.003300103,-0.0043927976,0.0046955594,-0.026092557,-0.015083039,-0.043707784,0.009308547,0.011103098,0.03859937,0.07354358,0.019222617,-0.01233066,0.02143553,0.0011215946,-0.0037459885,-0.00079887814,-0.048353802,0.014191268,-0.00078098767,-0.035494685,-0.013409592,-0.013629783,-0.024903528,-0.008069976,0.000515039,-0.00628093,-0.01849599,0.0260265,-0.011163651,0.03769659,0.0043212357,0.018308828,0.029043108]},{"id":"interface-GatewayResumeData","type":"interface","source":"main","text":"Interface: GatewayResumeData\nProperties: seq: number, session_id: string, token: string","meta":{"url":"/docs/typedefs/GatewayResumeData"},"embedding":[-0.025221618,0.00879754,-0.0040324563,-0.020981984,0.042612523,-0.0027083214,-0.005431656,0.06303003,0.029209036,-0.026302544,0.032932226,-0.01833972,-0.009187875,0.005260509,-0.0016303974,-0.021474406,-0.026374606,0.078403205,-0.0020927938,0.04530283,0.0033538747,0.0073382896,-0.0050563337,0.029905632,0.0033778953,0.044173863,0.019408636,0.02322791,0.005830998,-0.046888188,0.07628939,-0.048665714,0.02812811,0.020897912,0.029016871,0.021738634,-0.014640549,0.021750644,-0.022987703,-0.053565912,0.0025266656,-0.0017580069,-0.008617386,0.014628539,-0.018471833,0.01552931,-0.00062416,-0.03422934,0.021114098,0.014820703,0.007014012,-0.026734915,0.0037201887,0.06692136,-0.019084359,-0.005386617,0.019516729,0.016442092,0.0008197026,0.014892765,0.041051187,0.004879182,0.014424363,-0.03434944,-0.006935945,0.052028596,-0.028776664,0.03792851,-0.004302688,0.031466972,0.027023163,0.01591364,0.0003700672,-0.0041285385,-0.030434085,0.020093223,-0.009488133,-0.0010531527,0.02326394,-0.05380612,0.010334859,-0.044606235,-0.05755333,-0.06480755,0.003894338,-0.0236843,-0.063366316,-0.049242206,0.016153846,-0.00438676,-0.0046089506,0.010310838,-0.09406462,0.014340292,0.00959022,-0.04076294,0.032019444,-0.038865313,-0.052412923,0.012562768,0.030241922,-0.033316556,-0.047560766,0.005858021,0.029088933,-0.016177867,0.0034049184,0.018411782,-0.07576094,-0.05270117,-0.03639119,-0.00081369746,0.013727766,0.009638261,0.03312439,-0.00059938873,-0.04162768,-0.04162768,0.031106662,0.009217901,-0.018459823,-0.007008007,0.016610237,-0.021078067,-0.027239347,0.016189877,-0.020969974,-0.0040234486,-0.06677724,-0.01062911,0.027191306,-0.012983128,0.040642835,-0.022579353,-0.014412353,-0.004485845,-0.03016986,-0.0013308907,-0.020609666,-0.029497283,0.0011672504,-0.062645696,0.038577065,0.017799256,-0.0074103517,0.04033057,-0.012622819,0.07542465,0.037448097,0.051692307,-0.007986845,0.01347555,-0.00028036532,0.036919646,0.009115813,-0.0021918786,-0.022122962,-0.011049471,-0.029545324,0.021894766,-0.008323134,-0.013343437,0.031563055,-0.0022384187,-0.044534173,-0.009494138,-0.02774378,0.005230483,-0.05673663,-0.0022234058,0.021090077,-0.059090648,-0.036775522,-0.013535602,-0.054094367,0.008064913,-0.021570489,0.027527595,-0.0103288535,0.0034019158,0.022519302,-0.01184215,-0.0145444665,-0.050491277,-0.008197026,-0.008185016,-0.028728625,0.023035744,0.00025052723,-0.004554904,-0.011800114,0.047200456,0.014916786,0.017823277,-0.007986845,-0.013547612,-0.0232159,0.018615955,-0.0076865884,0.0021438375,-0.030001715,-0.05270117,-0.002523663,-0.0070800683,-0.021090077,0.00469002,0.004768087,-0.0261344,-0.04933829,-0.024933372,0.056928795,-0.0019831997,0.0062273378,-0.02117415,-0.04739262,0.030313984,0.032499857,0.00050593365,0.030818416,-0.014592508,-0.030698312,-0.030145839,-0.00529654,-0.03790449,0.077682585,0.052509006,-0.003386903,0.0039393767,-0.008239062,-0.027287388,-0.04691221,0.032331713,-0.015301115,-0.049626537,0.004512868,0.025870174,-0.008821561,-0.026182441,0.024152702,0.017270803,-0.01833972,-0.009151844,0.017222762,0.045014583,0.025533887,0.012730912,0.006293394,-0.027263368,-0.002083786,0.022183014,-0.0052124676,0.030289963,0.035622533,0.010472977,0.0015943666,-0.020933943,-0.00795682,-0.008779525,-0.004972262,-0.01041893,0.058994565,-0.049578495,0.01585359,0.06624878,-0.045446955,-0.03379697,0.0051223906,-0.008341149,-0.011565913,-0.034973975,-0.03701573,-0.017511008,0.053998284,-0.0068698884,-0.037376035,-0.010310838,0.03307635,-0.022110952,0.0052635116,0.017631112,0.00055097224,-0.04167572,0.0052725193,0.031971402,-0.01628596,0.030554188,0.012442665,0.04575922,0.059907347,0.045398913,0.0042216186,0.021558478,0.06730569,-0.060627967,0.020177294,0.0137637975,0.029449241,0.005873034,-0.0057499283,-0.004873177,0.0792199,-0.013847869,-0.01058107,-0.00066732196,-0.025461825,0.021390334,-0.018603945,0.0050803544,0.045711182,0.010262797,-0.04081098,-0.038288817,-0.04028253,-0.00754847,-0.053421788,-0.036775522,0.07364713,-0.020069202,-0.0016484129,-0.0043357164,0.001837575,-0.008779525,0.009920503,-0.006455533,0.016057763,-0.024981413,-0.011613955,-0.011974263,0.02444095,0.04369345,-0.0081670005,-0.025678009,-0.030818416,0.023360023,-0.019372605,0.050106946,-0.057889618,0.034061193,0.0062093223,0.025533887,0.017102659,-0.04559108,-0.03641521,0.0067858165,0.016778382,-0.018495854,-0.035958823,0.0054106377,-0.029905632,-0.03139491,-0.034373462,0.012875035,-0.060291678,-0.04076294,-0.0061372602,-0.023023734,0.02973749,-0.036919646,-0.05097169,0.000067980145,-0.058129825,0.022723477,0.005803975,-0.012802973,-0.004638976,-0.008034887,-0.030410064,-0.017018586,0.00940406,-0.007638547,0.04494252,-0.009073777,0.0019201458,0.021918787,-0.021534458,0.004182585,-0.014352302,0.029545324,0.0041795825,0.0155173,0.058033742,0.020777809,-0.034517586,-0.012839004,0.0072482126,-0.005245496,-0.06759394,0.043116957,-0.027959965,0.01585359,-0.0026617814,-0.007998856,0.028344294,0.0052785245,0.0067858165,0.0008452245,0.005885044,-0.018003432,0.033244494,-0.040354587,0.01874807,-0.012899056,0.020489562,-0.031563055,-0.00399042,-0.04768087,0.02526966,-0.0057859593,0.053950243,-0.0325479,-0.0050803544,-0.01426823,0.014892765,0.0155173,0.039850157,-0.007470403,-0.022735488,-0.012610809,0.010136688,0.032355733,-0.008917644,0.03917758,-0.045038603,0.005476694,-0.0318513,0.007098084,-0.0023600229,-0.016922506,-0.026446668,-0.04282871,-0.013583642,0.024741206,0.05183643,0.0071160994,-0.017066628,0.034757793,0.0010681655,-0.023083786,-0.0114338,-0.0012528239,-0.0137637975,-0.014748641,-0.022171004,0.026086358,-0.050443236,0.012851015,0.0124186445,-0.036943667,0.042444382,-0.028704604,-0.037376035,0.00550672,-0.024152702,0.061348584,-0.022231055,-0.05029911,0.0130551895,0.010160709,-0.02289162,-0.0042006006,-0.00010433943,-0.039513867,-0.018495854,0.056496423,0.014424363,0.032067485,0.017823277,0.016009722,0.009668287,0.024224764,-0.029881611,-0.025221618,0.020789819,-0.0017595082,-0.009109808,0.0023329996,0.031490993,0.023167858,0.030410064,-0.032980267,-0.028440377,0.0016919503,-0.016766371,0.047464684,0.07441578,0.09680297,0.035238203,-0.043909635,-0.016237918,0.035310265,0.026830997,0.0045068627,-0.0028179153,-0.012694881,-0.021102088,0.007842722,0.009620246,-0.03759222,0.002199385,-0.013415499,0.01957678,-0.030145839,0.020081213,-0.020633686,0.022723477,-0.0123826135,-0.05212468,-0.023323992,0.01222648,-0.032499857,0.0064615384,0.006491564,-0.021438375,-0.057265084,-0.066344865,0.027119245,-0.016586216,0.010490992,-0.028776664,0.0027053189,0.005392622,0.0099024875,0.00999857,-0.013583642,-0.021978838,-0.013655704,0.037448097,-0.031082641,0.01585359,-0.028416356,0.048665714,-0.013247355,-0.04729654,0.03139491,0.014832714,0.039850157,-0.002837432,0.02442894,-0.0050022877,-0.021474406,-0.016658278,0.010665141,0.013007149,0.028632542,0.00045901843,-0.001031384,0.030097798,-0.007518444,0.0013046182,0.027647698,-0.0071160994,-0.003031098,0.03636717,-0.02247126,-0.0061012297,-0.026855018,-0.011289677,0.00041623175,-0.0014855233,-0.0018585931,0.0056418357,0.0011762582,0.026590792,-0.03461367,-0.030458106,0.03910552,0.014340292,-0.028752645,0.013427509,-0.017691163,-0.03874521,0.003969402,0.0113917645,0.03386903,0.010046612,0.015685445,-0.049818702,-0.0055457535,0.0011259652,-0.004329711,-0.014424363,-0.036967687,-0.0390815,0.037832428,-0.060195595,0.028416356,0.000037180307,0.023576207,-0.0019516728,0.007944809,-0.0078066913,-0.02116214,0.013535602,-0.008731484,0.0059691165,-0.008647412,0.03917758,0.0047200457,-0.018099513,0.03665542,0.01163197,-0.02117415,-0.035334285,-0.021978838,0.030962538,0.069131255,0.0012528239,0.03876923,-0.002052259,0.014664569,0.0041585644,0.032163568,0.00694195,-0.06158879,-0.010737203,0.020777809,-0.03259594,0.011139548,-0.023540176,-0.02529368,0.03389305,0.02452502,-0.016874464,-0.0052575064,-0.024957392,0.033340577,-0.046359736,-0.020897912,-0.056832712,-0.0060381754,-0.00013924435,-0.0031587074,-0.027863882,-0.009434086,-0.025870174,0.024356877,0.01346354,0.036150984,0.00918187,0.0034109235,0.021714613,-0.0035640548,0.0294012,0.018111523,0.029569345,0.031971402,-0.01346354,0.013643694,-0.026374606,0.023936516,-0.062213324,-0.062213324,0.046840146,-0.0078126965,0.03305233,-0.016766371,-0.04112325,0.010569059,0.021870745,0.0066777235,-0.0011349728,0.010472977,-0.022699457,-0.013955962,-0.024597082,0.041411493,0.0063834717,-0.0025581927,-0.015601372,0.0022804546,-0.029881611,0.0232159,0.0751364,0.018495854,0.006689734,0.0012768444,-0.027671719,-0.0032127537,0.0061732912,0.012268515,-0.014460394,0.022351157,-0.020597655,0.010478982,0.030073777,0.006791821,0.05678467,-0.03840892,0.03586274,0.016790392,0.016201887,0.04890592,0.011571919,-0.020129254,-0.008887618,0.016418071,0.035286244,0.04085902,0.016970545,-0.0020567628,0.0054046325,-0.030410064,0.03346068,-0.016466113,-0.043165,0.016610237,0.017258793,0.019828996,0.0014059551,0.0003561803,-0.036823563,-0.0047560767,-0.0131272515,0.012106377,0.005350586,0.03586274,-0.0130551895,0.018904204,-0.0069659706,-0.0035820703,0.030938517,0.037760366,-0.014772662,-0.0067077493,0.011295682,0.023852445,0.047080353,0.016117815,-0.014592508,0.022603374,0.016153846,0.0063054045,-0.015661424,0.018003432,-0.009626251,0.020513583,-0.016802402,-0.015361167,0.007986845,0.00223992,0.017390907,-0.047488704,-0.022183014,0.0049392334,0.00086023734,-0.011109523,-0.0023375035,0.030145839,0.04162768,-0.024693165,-0.03552645,0.0068038316,0.009566199,0.0022174006,0.035718616,-0.025918216,0.014568487,-0.017366886,-0.045134686,0.009740349,-0.018099513,0.008257077,-0.0018495853,0.055199314,-0.0031106663,0.0016889477,-0.03792851,0.00096682867,0.03797655,0.032788105,-0.02441693,0.009109808,-0.026614813,-0.014808693,0.06365456,-0.00835316,0.026782956,0.0131272515,-0.016598227,0.011517872,0.017018586,-0.020633686,0.0099385185,-0.011187589,0.0030295968,-0.015625393,-0.027671719,0.0036391192,-0.02083786,-0.0029980696,-0.019612812,-0.011307692,-0.0048971977,-0.020141264,0.014724621,-0.007074063,0.0002300722,-0.06442322,0.009386045,0.03555047,0.009422076,0.026542751,-0.01265885,0.016237918,0.010695167,0.010653131,-0.05995539,0.015493279,0.015024878,-0.0145084355,-0.038144697,0.016105805,-0.02815213,0.01795539,0.03305233,0.049866743,0.0146525595,-0.0019591793,-0.019456677,-0.018820131,0.035262223,-0.0123826135,-0.01671833,0.011133543,0.017811267,0.0113197025,0.012178439,0.037736345,-0.019012297,-0.005647841,0.02985759,0.03139491,0.04251644,-0.004569917,0.008623391,0.005188447,0.006863883,-0.012802973,-0.01999714,0.023155848,0.006665713,0.009578209,0.014592508,0.01874807,0.029281098,-0.0022549327,0.009914498,-0.049818702,-0.011337718,-0.0075304545,-0.040955104,-0.017378896,0.03963397,0.031322848,0.006725765,-0.014184157,-0.031587075,0.025101515,0.01592565,-0.014904776,-0.00018691021,0.046215612,-0.032403775,-0.0013834358,-0.001690449,0.048257362,0.0041855876,-0.0054106377,0.004212611,0.00798084,0.047152415,-0.0049512438,0.08171804,-0.028800685,-0.002852445,0.0390815,0.021750644,0.025461825,0.005572777,0.018928224,-0.01226251,0.0069539603,-0.022110952,-0.0024200743,0.01794338,0.024837289,0.011007435,-0.00044025236,-0.003585073,-0.0061432654,0.03391707,0.028416356,0.014232199,-0.00045601587,-0.009782385,0.0042006006,-0.0075304545,0.015997712,0.0021588504,-0.02810409,-0.0053776093,-0.006689734,-0.0015418215,0.014952816,0.04775293,-0.0047921073,-0.00694195,-0.011722047,0.01711467,-0.0043507293,-0.009644266,-0.02363626,-0.016802402,0.05620818,-0.01879611,-0.009956534,-0.04645582,-0.018267658,0.021510437,0.03386903,0.039321702,-0.010004575,0.00042861738,0.023432083,-0.060195595,-0.0047981124,0.0071581355,-0.030482126,0.0024846296,-0.016081784,0.008076923,0.024332857,0.009674292,-0.022339147,0.016009722,-0.040090363,-0.025053473,-0.007794681,0.004428796,-0.007632542,-0.019949099,0.0035640548,-0.0032698025,-0.014964826,-0.0071881614,0.0017294824,0.008407206,0.021414354,-0.0041795825,-0.065624245,-0.012586788,-0.021726623,0.065384045,-0.06033972,0.006569631,0.024344867,0.013403488,0.013331426,0.043597367,-0.008112954,0.02290363,-0.006287389,-0.039321702,-0.040162425,-0.006515585,0.025029453,0.015181012,0.0033929083,0.0009488133,-0.00065793894,-0.014316271,-0.00028974836,0.010370889,0.0108933365,0.004638976,0.061300542,0.0123826135,0.0030686301,0.023444094,0.0073202746,0.0062633683,0.04856963,0.014592508,-0.004669002,-0.0030671288,-0.013823849,0.025173577,0.018627966,0.046647985,0.04693623,0.014736631,-0.02409265,-0.017739205,0.02279554,-0.025798112,-0.053181585,-0.013727766,0.0030145838,0.0008632399,-0.0050052903,0.009698313,0.034973975,0.0058970544,0.0069539603,0.009578209,-0.0043957676,-0.030986559,0.024212753,-0.019252501,-0.021834714,0.0031647126,-0.045206748,0.012466686,-0.07090878,-0.005803975,-0.023143837,0.0021228194,-0.037424076,0.00458493,0.008953675,0.048425507,0.0032517873,0.0024951387,-0.054478694,-0.018940235,-0.024380898,-0.014412353,0.012430655,-0.024621103,-0.011770088,-0.03458965,0.0294012,-0.01711467,0.002700815,0.02976151,0.03461367,0.042948812,0.0024245782,0.0038072632,-0.019660851,-0.0236843,0.034157276,0.006569631,0.028224193,0.013931941,-0.021462396,0.0464318,0.029449241,0.026614813,0.011698026,0.011331713,0.009518159,-0.021006005,0.0022023877,-0.012514726,0.01471261,0.013211324,0.031515013,0.012802973,0.014112096,-0.013367457,0.009067772,-0.013283386,-0.0116740065,-0.0031917358,-0.015024878,-0.019660851,0.054622818,0.009956534,0.013571633,0.016898485,-0.0063774665,0.00034398233,-0.0036391192,-0.0067557907,-0.011595939,0.008995711,-0.017258793,-0.016069774,-0.015132971,-0.035574492,0.013295396,-0.0046419785,-0.011493851,-0.024212753,0.019048328,-0.013355447,0.037400056,0.024284815,-0.015553331,-0.010106662,0.01597369,0.0042426363,0.007902774,-0.007098084,0.021486416,-0.0037862454,-0.017498998,-0.012899056,-0.020081213,0.015493279,-0.015889619,0.020549614,0.032307692,0.0036150985,0.028752645,-0.011800114,0.009800401,-0.02038147,-0.015349156,0.0014299756,-0.002774378,0.0099745495,0.0060802116,-0.006971976,-0.031082641,-0.0027923933,-0.022999713,0.008299113,-0.02291564,-0.022939662,-0.00023138583,0.033172432,0.033268515,-0.0070260223,0.014520446,0.018688018,0.03516614,-0.025870174,0.012706892,0.027287388,0.015781527,0.036895625,0.010190735,0.031322848,-0.04371747,-0.02774378,-0.036919646,0.004554904,0.014016014,-0.01263483,0.003485988,0.016129825,-0.019108377,0.008635402,0.017246783,-0.013163283,0.049242206,0.019360594,-0.00075214467,0.016886475,-0.03872119,0.0022369174,0.0064615384,0.0041435515,-0.033628825,0.0075244494,0.006821847,0.004251644,-0.02942522,-0.0008189519,-0.013511581,0.009235917,0.0023269944,-0.0015463254,0.0006294145,-0.015625393,0.040354587,0.019420646,-0.0069239344,-0.0010073634,-0.0038492994,-0.04162768,-0.0017925365,-0.0030401058,0.013187303,0.049866743,-0.013667715,-0.005900057,-0.032475837,-0.026254503,-0.03394109,0.0031076637,0.029713469,-0.003909351,0.02937718,-0.025005434,0.0013886903,-0.00960223,-0.00087600085,-0.012406634,-0.0010186231,-0.047536746,-0.0038823276,-0.03881727,-0.0045308834,-0.004212611,0.004218616,0.0026767943,0.0005644838,-0.010112667,-0.0037982555,-0.0006553117,0.010022591,-0.0068458677,-0.0025371746,-0.014220188,-0.036583357,0.009608235,0.0065876464,0.009674292,0.007416357,0.007578496,0.010130683,0.010436946,0.020069202,0.0052635116,-0.018087503,-0.012172434,-0.02738347,0.0027923933,0.010298828,0.012814984,0.026206462,-0.029353159,0.0027263367,0.030554188,0.0204175,0.010016586,-0.03259594,0.017306834,-0.036223046,0.073599085,0.010767229,0.021114098,-0.0026888046,-0.013307407,0.039537888,-0.042252216,-0.01954075,-0.0020867886,0.012124392,0.0021423362,-0.010731198,-0.026014298,-0.066008575,-0.0077286246,0.00074126036,-0.0029635401,0.020237345,0.015120961,-0.021414354,-0.009674292,-0.00591507,0.02086188,-0.007662568,0.0095481835,-0.023107806,-0.039369743,0.0054406635,-0.0042096083,-0.021738634,-0.0261344,0.019877037,-0.009013725,-0.008347155,0.01998513,0.006071204,0.016141836,0.01957678,-0.025341721,0.004539891,0.012466686,0.019492708,0.017354876,-0.01880812,0.0011147055,0.0010794252,0.019372605,-0.00982442,-0.016670289,0.02160652,0.022675436,-0.014304261,-0.0045519015,-0.007068058,0.018399771,0.0072422074,-0.014520446,-0.053181585,-0.009145839,0.004434801,0.04028253,0.00520346,-0.018904204,0.007518444,-0.005885044,-0.009271948,-0.0432851,-0.013439519,0.005662854,0.044750355,-0.053950243,0.045567058,0.039009437,0.018591935,-0.011469831,-0.02081384,-0.027647698,-0.04049871,0.010659136,0.020933943,-0.009109808,-0.0027353445,0.013235345,-0.009566199,0.012238489,-0.0073262798,-0.017042607,0.0042636544,0.02291564,0.032980267,-0.0007356305,-0.021666571,0.013643694,-0.005957106,-0.004705033,-0.017330855,0.0065636258,0.011776093,0.03221161,-0.0040895054,0.00960223,-0.039850157,0.007380326,-0.021474406,-0.005984129,0.01630998,-0.01758307,0.0005412139,-0.005587789,-0.0037291965,-0.0008121962,-0.00079117814,0.045519017,-0.015012868,0.034205317,-0.020513583,0.0013016156,-0.0318513,0.016922506,0.019612812,0.0012430655,-0.061012294,-0.032043464,0.020357449,-0.0145084355,-0.017198741,0.017727194,0.013307407,-0.032427795,0.015553331,0.020453531,0.018688018,0.020681728,-0.008329139,-0.008599371,-0.002570203,-0.0014472405,0.021834714,-0.0032277666,0.007296254,0.012142408,0.010977409,-0.004086503,-0.036511295,0.017186731,0.03752016,0.015781527,-0.030482126,-0.037111808,0.03141893,-0.026182441,-0.023131827,0.027263368,-0.030818416,0.0052785245,-0.01629797,0.014748641,-0.013679725,-0.009434086,0.0011432299,0.03170718,0.024981413,0.04078696,-0.03591078,0.053229626,-0.030265942,0.0052364883,0.0020957964,-0.03997026,-0.010076637,0.04167572,0.011067486,0.008118959,0.0087675145,0.0061342577,-0.007944809,0.0114338,0.009031741,0.008725479,0.009632256,-0.015481269,0.0050413213,0.0023870459,-0.029617386,0.012256505,0.029209036,-0.020693738,-0.03665542,-0.0040835002,-0.00056260725,0.0013196311,0.014808693,-0.0088035455,0.036271088,-0.018856162,-0.053950243,0.029545324,0.014604518,-0.007554475,0.013775808,-0.018135544,-0.016237918,-0.0076205316,0.04208407,0.004512868,0.016165856,-0.006413497,-0.0015838576,-0.02083786,0.00397841,0.030001715,-0.01802745,-0.02937718,0.022783529,-0.00532056,0.0055547613,0.025005434,0.025798112,-0.036895625,-0.018243637,-0.0009225407,-0.044293966,-0.0031887332,-0.011205604,0.006515585,-0.011926223,0.01592565,-0.011115528,0.0056808693,0.045014583,-0.0021693595,-0.0071221045,0.0063774665,-0.005224478,0.029833572,0.0029350156,0.013751787,-0.009626251,0.02084987,0.05178839,0.025053473,0.02526966,0.016346011,0.0073262798,0.0061012297,-0.012004289,0.008725479,-0.044221904,-0.015577352,0.0058970544,0.01508493,-0.029833572,0.02406863,0.010334859,0.013631684,-0.019828996,-0.0010043608,-0.008257077,-0.00976437,-0.009716328,0.022207035,-0.050443236,-0.006887904,-0.008701459,-0.015589362,0.01347555,0.029545324,0.019396625,0.006635688,0.011331713,0.025485845,-0.011908207,0.018315699,0.013787818,-0.02326394,-0.0024531027,-0.024561051,-0.00480712,-0.0037922505,0.037327994,0.013391478,0.006098227,-0.028800685,-0.00018719169,0.004197598,-0.005521733,-0.043309122,-0.028416356,0.017739205,-0.008136975,0.020909922,-0.010743208,-0.015433229,-0.016358022,0.023948526,0.025245639,0.011866171,0.03170718,-0.015265084,0.0049392334,-0.032355733,-0.0089116385,0.004077495,0.013115241]},{"id":"interface-GatewayResumedDispatchData","type":"interface","source":"main","text":"Interface: GatewayResumedDispatchData\nDescription: RESUMED — connection resumed; typically no payload.","meta":{"url":"/docs/typedefs/GatewayResumedDispatchData"},"embedding":[0.020274635,0.046117835,-0.014630136,0.023134852,0.009466559,0.007631464,-0.04576347,0.06413973,0.01743973,0.0039296346,-0.0037492889,0.032854527,-0.007017656,0.023122197,0.025096506,0.0015970073,-0.015591979,0.050851114,-0.021666776,0.057153717,0.016870217,-0.0005438051,-0.004185915,-0.010630895,-0.010814404,0.008314879,-0.0017338484,0.009396952,0.020616343,-0.04421946,0.05366071,-0.04128331,0.010352467,-0.023071574,0.05978613,0.029564012,-0.044776317,0.014111248,-0.046168458,-0.041662984,-0.0023998613,-0.07806114,-0.00007499567,-0.005486301,-0.036474094,-0.0064070127,-0.031867374,-0.0085173715,0.031867374,0.004476999,-0.02035057,-0.022590652,-0.00691641,0.08747708,-0.019084988,-0.0049737403,0.059026778,-0.007827629,0.0076820874,-0.0314877,-0.017173957,0.022603307,-0.0021609825,-0.032044556,0.006524079,0.024223253,-0.021033986,0.015364175,0.011124472,0.005423022,-0.005100298,0.027210029,-0.033563253,-0.016338672,-0.00073799293,0.010270203,0.0065114233,-0.00041606033,-0.03594255,-0.015718538,-0.024514338,-0.008321206,-0.04302981,-0.08656586,0.011839527,-0.033791058,-0.060646724,-0.03915713,0.017490353,0.028121248,0.012345759,0.024995258,-0.012105299,0.00336645,-0.026222873,-0.06257041,0.04067583,-0.01774347,-0.0024647224,0.03657534,0.010105678,-0.054420058,-0.04740873,-0.044902876,0.02936152,-0.041055504,-0.020287292,-0.0031402272,-0.015174337,-0.016781626,-0.00073324697,-0.016604446,-0.0032588756,0.003882175,0.022008484,0.0068974257,-0.0028886925,-0.038650896,0.0034012536,0.043460112,-0.036727212,0.013731573,-0.015845096,-0.0073656915,-0.011864838,-0.017933307,0.00219895,0.03333545,-0.030019622,0.008833768,0.07163198,0.00093969516,0.042194527,-0.0423464,-0.030652413,0.022527372,-0.04009366,-0.009276722,-0.04508006,-0.072239466,0.03622098,-0.073707536,0.05846992,0.031158647,0.00512561,0.028247807,-0.018224392,0.05801431,0.04470038,0.012883632,-0.04804152,0.05846992,-0.030449921,0.0093779685,-0.016326018,0.016996777,-0.01073847,-0.039916478,-0.041080814,0.008511044,-0.03363919,-0.021337725,-0.013010191,0.001320952,-0.06120358,-0.04776309,-0.007182182,-0.014339052,-0.09284315,-0.020021519,-0.0058375006,-0.014237806,-0.047307484,-0.0054356777,-0.02011011,0.02629881,-0.037663743,0.03209518,0.018566098,-0.036347535,0.063076645,-0.0064861113,-0.010327155,-0.057862442,-0.01592103,-0.05846992,0.0059007793,0.06656965,-0.004885149,-0.014313741,-0.016996777,0.042245153,0.03703095,0.024552304,0.0063405694,-0.020578375,-0.027589703,-0.017300516,-0.0049579204,-0.021375692,-0.026577238,-0.06014049,0.020224012,-0.010086695,-0.0059703863,0.019021709,0.013529079,0.0067075887,0.0039834217,-0.014883253,0.043536045,-0.008567995,0.015503389,-0.033791058,-0.044523202,-0.003597419,0.015073091,0.040751763,0.020236667,-0.012782386,0.013896098,0.010504337,0.0061412402,0.012896288,0.02302095,0.012529269,-0.015275584,-0.015718538,-0.029462766,-0.02799469,-0.006400685,0.00082500174,-0.009194459,-0.049028676,0.009327345,0.028804664,0.028500924,-0.06014049,0.035891928,0.0367019,-0.015718538,-0.029639948,0.01692084,0.015161681,0.001757578,0.00426185,0.013718917,-0.035132576,-0.02829843,-0.00045679626,0.03761312,0.045485042,0.0021024493,-0.015364175,-0.023210788,-0.0037840924,0.028222496,-0.011080177,0.00921977,-0.0059039434,0.017249893,-0.045383796,0.039258376,0.05049675,-0.030930841,-0.037233446,0.0666709,-0.028045313,-0.019616533,0.010377779,-0.030044934,-0.024311844,0.054217566,0.004271342,-0.04373854,0.008694554,0.01637664,-0.022919703,0.013997345,-0.0021530727,-0.0077453665,-0.03733469,0.011864838,0.024096696,-0.04515599,0.030981466,0.009023605,0.06338038,0.019692468,0.019882305,-0.029437454,-0.0021609825,0.06500033,-0.038726833,0.047585912,0.012472318,0.010516993,0.0009768717,0.023008294,-0.028475612,0.07871924,-0.01025122,-0.019388728,0.00067313184,-0.012409039,-0.011991397,-0.002115105,-0.01980637,0.03287984,0.013946721,-0.054116316,-0.026880978,-0.035790678,-0.006739228,-0.04419415,-0.010093022,0.0734038,0.0061096004,-0.0041257995,-0.0051730694,0.022793146,0.028703416,0.028678104,-0.035411004,0.01288996,-0.008624947,-0.027134094,-0.0397393,0.004337785,0.024514338,-0.013288619,-0.0066822767,0.013250651,0.010808077,0.028045313,0.0367019,-0.064747214,0.009953808,0.0064070127,0.0028127576,0.0014498832,-0.006457636,-0.03090553,0.00051493396,0.0042808335,0.0041669314,-0.024944635,0.033462007,0.010447386,-0.003445549,0.014718727,0.0099791195,0.0074352985,-0.017578945,0.023451248,0.0020818836,0.06530407,-0.028956532,-0.012972223,0.0191103,-0.015933687,-0.0008716701,-0.022502061,-0.0026941092,-0.03809404,0.019527942,-0.04095426,0.039688673,0.018553443,-0.024349812,0.023552494,0.017173957,-0.032778595,0.028880598,-0.023944825,-0.024286533,-0.003073784,-0.014870597,-0.009270393,0.0340948,0.032247048,0.013820164,-0.024678864,0.0050180354,0.023438592,-0.0044453596,-0.047307484,0.019262169,-0.029969,-0.018376261,0.0072834287,-0.016566478,0.03163957,-0.019667156,-0.02065431,-0.018604066,-0.015300895,-0.02441309,0.03351263,-0.02150225,0.016882874,-0.017604256,-0.008593307,-0.0029567177,0.00096421584,-0.021135231,0.022818457,-0.010061382,0.041257996,-0.021578185,0.048902117,0.01967981,0.022628618,0.0017828897,-0.006302602,-0.028374365,0.008757832,0.0057425816,-0.015389486,0.05305323,0.0017907995,0.017933307,-0.056191873,0.034525096,-0.01452889,0.022299567,0.0067582116,-0.008144025,0.05426819,-0.08914765,0.016363984,0.031993933,0.037790302,0.01761691,0.047358107,0.02799469,-0.0028364873,-0.020211356,-0.037840925,-0.022312224,-0.011997724,0.003004177,-0.027615014,0.016604446,-0.045915343,0.001033032,0.02599507,-0.021704745,0.032981087,-0.011016898,-0.029943688,0.0054420056,-0.0196545,0.055179406,-0.061507322,0.00047578002,0.0065493905,0.04667469,0.0012157505,-0.0056191874,-0.00821996,-0.004100488,0.019970896,0.028728727,-0.02510916,0.029564012,0.04037209,-0.0075808405,-0.013655637,0.048547752,-0.047206234,0.00026774986,0.011485163,0.00600519,0.001318579,0.029867753,0.0060273376,0.013237995,0.022185665,0.002996267,-0.014592169,0.018224392,-0.008776817,-0.018857183,0.07082201,0.103220925,0.01835095,0.006176044,-0.032981087,-0.00058295904,0.008213632,-0.007175854,0.025438214,-0.013946721,0.011326966,-0.016541166,0.0013858131,-0.017325828,0.016034933,-0.004034045,-0.03515789,-0.0021530727,0.04586472,-0.05720434,0.07461876,0.009485543,-0.012143266,0.017604256,-0.02210973,-0.06206418,0.034955394,0.021894582,-0.012219201,-0.0134658,-0.07998483,0.025210408,-0.008207304,0.00014900259,-0.018325638,0.0054514976,-0.03748656,0.0018208572,0.0044137198,0.010573944,0.0036891736,0.0037619446,0.034398537,-0.018249704,0.013351898,-0.0040182252,0.005691958,-0.022615964,-0.03290515,0.027032847,0.045662224,0.009466559,-0.021160543,-0.026248187,0.020337915,0.0016515855,-0.0066379816,0.013326586,-0.016338672,-0.019300137,0.036955018,0.011067521,0.04508006,-0.028374365,0.014744039,0.012288808,-0.006821491,-0.007909892,0.04882618,0.007897236,0.013212684,0.0012315701,-0.022223633,-0.014807318,0.0053154477,0.00749225,0.0046605086,0.0026988552,-0.01025122,-0.023615774,-0.023299377,0.049762715,-0.014098592,0.009985448,-0.015883064,-0.033791058,-0.020730246,0.033866994,-0.0038283877,0.016908186,0.026400056,-0.0006656174,-0.040017728,-0.01037145,0.049965207,0.0003017624,0.003660698,-0.064747214,-0.015516045,0.061608568,-0.05674873,0.037587807,0.028804664,-0.018869838,-0.026982224,0.023919513,0.012908944,0.0028206676,0.022185665,0.039713986,-0.004556098,-0.022185665,0.009207115,-0.010516993,-0.026121628,0.030829595,-0.010086695,-0.00030789254,-0.016731003,-0.014060624,0.042624827,0.047003742,-0.016819594,0.0076124803,-0.0035784352,-0.017540976,0.022767833,0.04956022,0.004084668,-0.025817888,-0.011016898,0.011206735,-0.0053850547,0.000008577289,0.02302095,-0.040118974,-0.018907806,0.012757074,-0.013883443,0.010744797,-0.033386074,0.0523445,-0.035917237,-0.019274825,-0.0017037907,-0.023400625,0.00830855,-0.01713599,-0.019540597,0.01622477,-0.059431765,-0.01052332,0.033107646,-0.028779352,0.011915461,-0.016313361,-0.0031323172,-0.0030627102,-0.009732331,0.021451628,0.043966345,-0.0027700441,-0.0020138586,0.0030279066,0.022970326,0.03609442,-0.037916858,-0.06327914,0.059583634,0.011959757,0.026577238,-0.00012972223,-0.010333483,0.050370194,-0.02423591,0.03042461,0.0025865347,-0.030677725,-0.019945584,-0.01407328,-0.032247048,0.012731763,0.022502061,0.009181803,0.016401952,0.010504337,0.025514148,-0.010194269,0.110257566,-0.0024710502,-0.019705122,-0.01452889,0.0112510305,0.02690629,0.015895719,-0.009839905,0.015933687,0.027412523,-0.028424988,0.008232616,0.022185665,0.015870407,0.056546237,-0.01568057,-0.005802697,0.0020803015,0.007935204,0.02478011,0.00014425666,-0.026880978,-0.007346708,-0.02523572,0.043915723,0.024526993,0.017553633,-0.013693606,-0.0045212945,-0.035132576,0.020097453,-0.03318358,0.0010124661,-0.007840285,0.030703038,0.009017277,0.016427264,0.0011129219,0.015705882,-0.025817888,-0.04401697,-0.021641465,0.018907806,0.013693606,-0.021033986,0.027108783,0.030323362,0.013250651,0.01622477,0.03548694,-0.0069037536,0.0038758472,0.0045687538,0.033537943,0.025741953,-0.012946911,-0.027463146,0.043333553,0.017161302,0.011516803,-0.0047048037,0.015009811,-0.021287102,0.013453145,-0.013592359,-0.017465042,0.011263686,-0.0007130768,0.018085178,-0.041789543,-0.006369045,0.004106816,-0.013820164,0.015541356,0.0025343294,0.01468076,-0.010814404,0.0067139165,-0.02150225,0.008909702,-0.03487946,0.01943935,0.048421197,-0.028247807,0.020540407,0.013883443,0.016313361,0.004385244,-0.03837247,-0.0022843769,0.027716262,0.060342986,-0.011643361,-0.005593876,-0.066114046,-0.03776499,0.03837247,0.01383282,-0.00029800518,0.00056634826,-0.032525476,0.0006751093,0.031285204,-0.021299757,-0.0061032725,-0.0034803525,-0.03935962,0.020008864,-0.006739228,-0.012896288,-0.0056350073,-0.013807507,-0.017578945,0.03576537,-0.00031501145,0.0130734695,-0.020439161,0.009181803,-0.023438592,-0.021907236,0.0008938178,-0.038625587,0.027032847,0.0035562874,0.01185851,-0.08778082,0.034145422,0.002641904,-0.0036164026,0.011934445,0.0018256031,-0.0012948493,0.04880087,0.024223253,-0.0710245,0.018262358,0.0025105998,0.0035689434,-0.043232307,0.028020002,-0.014592169,0.032778595,-0.005195217,0.011440868,-0.005347087,-0.032803904,-0.03900526,-0.0055369246,0.02095805,-0.015870407,-0.012915272,-0.0207429,-0.0025517312,0.036727212,0.0228058,0.036119733,-0.051509216,-0.007928876,-0.004252358,0.007701071,-0.013845475,-0.013098781,-0.0021609825,0.030095557,0.01040309,0.0017180286,-0.023286723,0.016731003,0.014085935,-0.007118903,0.023096886,0.0036069108,0.020325258,-0.0025216737,0.01692084,-0.026830355,-0.039081194,0.0030421445,-0.034854148,-0.007099919,0.018578755,0.020312604,0.0057425816,-0.010472697,-0.04282732,-0.012864648,0.01161805,0.0044485233,-0.008650258,0.025919134,-0.025501492,0.028475612,-0.002501108,0.052192632,0.014047968,0.0053122835,0.043814473,0.007530217,0.024311844,0.00585332,0.015035123,-0.004369424,-0.0024504845,0.021907236,0.020160733,0.009763971,-0.0022258437,-0.0015645766,-0.0038948308,0.015060434,-0.015338862,0.0008503134,0.0051129544,0.008694554,-0.0024046071,-0.006600014,0.0035689434,-0.0052300207,0.014085935,0.018717969,0.012484973,-0.014136559,-0.024590272,0.011415556,-0.011326966,0.040144283,-0.02341328,-0.001907866,-0.022831112,-0.016465232,-0.010668863,-0.011725624,0.046902496,0.018705312,-0.020996017,-0.012459662,-0.009308361,0.042169217,0.017237237,0.011326966,-0.025223063,0.015794473,-0.0046351966,-0.0020154405,-0.02647599,-0.034651656,0.012061004,0.025248375,0.061557945,-0.0057267617,0.0024283368,0.007346708,-0.01859141,-0.021514906,0.038473714,-0.0019284317,0.0023049426,-0.03639816,0.037081573,0.007897236,-0.017768782,-0.008871735,0.02799469,0.024273876,-0.021831302,0.011048538,0.009213442,0.024957292,-0.010535976,0.0043536047,-0.001316997,0.018933117,-0.026222873,0.036853768,-0.0043441127,0.015224961,-0.025324311,-0.021337725,-0.0310574,0.009953808,0.047307484,-0.01917358,0.025805231,0.00065731205,0.045054745,0.015857752,0.04680125,-0.027260652,-0.003882175,-0.013756884,-0.023463903,-0.06241854,0.007017656,-0.026071005,0.016566478,-0.013200028,-0.0077327103,-0.0007720055,0.0029899392,-0.024590272,0.038752142,0.0027621344,0.0016737331,0.008916031,-0.03244954,0.009175475,0.019578565,0.03900526,0.048066832,0.041080814,0.010618239,0.023818268,-0.0017939635,-0.037106887,0.008479404,-0.018667346,0.058064938,0.027969379,0.008511044,-0.036069106,-0.017300516,-0.006071633,0.01037145,-0.03429729,-0.0051351017,-0.005802697,0.007840285,0.0033379744,-0.006090617,0.05568564,0.0016990448,0.02050244,0.015174337,0.013427833,-0.025438214,0.025007915,-0.012687467,-0.03242423,-0.014199838,-0.0021135232,-0.0019347596,-0.057001848,-0.007814974,-0.0021720564,-0.0037840924,-0.017996587,-0.040979568,0.0012307792,0.026425367,0.017971275,0.0018129472,-0.040523957,-0.0015993802,-0.0144149875,0.006077961,0.00909954,-0.008998293,-0.012851993,-0.00017639059,-0.01774347,0.0005358952,0.042169217,0.0045212945,0.015958998,0.023299377,0.010630895,-0.005641335,-0.003296843,-0.017971275,0.032044556,-0.04252358,0.026374744,0.007061952,-0.0067139165,0.026526615,0.0067265723,0.021008674,0.017300516,-0.0020961214,-0.0073277242,-0.009283049,-0.023641085,0.003809404,0.02984244,0.011504147,0.00336645,0.004423212,0.005144594,-0.004540278,0.01828767,0.039840546,-0.00600519,0.01674366,-0.03682846,-0.010093022,0.031993933,0.029564012,0.017629568,-0.0068594585,0.02769095,-0.0034645328,0.0054483335,0.03394293,0.0029108403,0.014782006,-0.011776247,-0.0015701136,-0.033866994,-0.029108403,-0.001249763,-0.00846042,-0.015351519,-0.00864393,0.011175095,-0.013111437,0.00586914,0.0035657794,0.00013219407,-0.024096696,-0.00024046072,0.0032715313,0.004480163,0.0041257995,0.02817187,-0.0012829845,-0.0049421005,0.007473266,-0.021363037,-0.0011943937,-0.004885149,0.0119217895,0.0012893124,0.007941532,-0.02353984,-0.021438971,-0.0028269954,-0.026653172,0.019730436,0.022628618,0.0021135232,0.010112006,0.019641845,0.0107701095,-0.012225529,0.010162629,-0.009384296,0.026425367,0.019376071,-0.026956912,0.011624377,0.0191103,-0.008378157,0.0037208132,0.0009744987,-0.0025438212,0.0040498646,-0.009023605,-0.015288239,-0.005815353,0.03090553,0.06505095,-0.0047206236,0.0028871107,0.007264445,-0.011700313,-0.06869583,0.009580461,0.015073091,0.019591222,-0.020553064,-0.005926091,0.0035056642,-0.011915461,0.011814215,-0.024425747,0.077909276,-0.0017006268,0.013820164,0.0116117215,-0.04009366,0.0021783842,-0.017313171,0.008821112,-0.032778595,0.008998293,0.004103652,0.037106887,-0.0073973313,-0.0061981915,-0.0033632861,-0.009143835,0.021426316,0.00864393,0.016313361,-0.0059798784,0.008169336,0.007182182,0.0056033675,-0.019426694,-0.038144663,-0.029893065,-0.022299567,-0.0144656105,0.043536045,0.03363919,0.004268178,0.009023605,-0.035790678,-0.018312981,-0.003967602,-0.010877684,0.033866994,-0.06039361,0.034955394,-0.03761312,-0.0062741265,-0.012700123,-0.0053217756,0.009048916,-0.03336076,-0.020426506,0.02071759,-0.035993174,-0.010036071,-0.019477319,0.010213253,0.008745177,0.016034933,-0.017528322,0.016996777,-0.03222174,0.01819908,0.031259894,-0.02410935,-0.031740814,-0.032500166,-0.0083971415,0.003815732,-0.013200028,0.02923496,0.021147888,-0.003600583,0.003812568,0.007169526,0.012744418,-0.01161805,-0.026400056,-0.019009052,0.0032620395,-0.021299757,-0.015174337,0.0039739297,-0.012447006,0.035107266,0.027513769,0.02347656,0.012674811,-0.0072201495,0.025121817,-0.064494096,0.036069106,0.0099095125,0.03885339,-0.000029736251,-0.027032847,0.033791058,-0.013579703,-0.018452195,-0.0039264704,-0.007890908,0.017338483,0.017173957,-0.036448784,-0.049585532,-0.011478836,0.010814404,0.013162061,0.013908754,-0.010200596,-0.027513769,-0.0051762336,0.012390055,-0.020793524,-0.01692084,0.007378347,-0.055635016,-0.04801621,0.0052964636,0.020996017,-0.015946342,-0.0460419,0.028020002,-0.0053344313,0.00837183,0.003165539,0.0075365454,0.032930464,0.021059297,-0.040296156,-0.016186804,-0.011143456,0.010491681,0.031917997,-0.015073091,-0.001180947,-0.017452385,0.017262548,0.028500924,-0.023033606,0.0051699053,0.018996397,0.0014498832,0.0044263755,-0.019755747,0.011953429,0.015933687,-0.01843954,-0.022907047,-0.014047968,-0.0196545,0.030627102,0.01713599,-0.0061190925,-0.012731763,-0.01635133,-0.01804721,-0.020084798,-0.015705882,0.032727968,0.022615964,-0.044447266,0.010358795,0.0062804543,0.027589703,-0.008561667,-0.019907616,-0.0056761387,-0.033740435,0.036271602,0.010846044,-0.01055496,-0.023451248,-0.0015068344,-0.0047174594,-0.014490922,-0.03500602,-0.0019996208,0.012117955,0.0325761,0.0040118974,-0.016971465,-0.025881168,-0.0010773273,-0.009352656,-0.024261221,-0.017490353,-0.007884581,0.024995258,0.016161492,0.013908754,0.014022657,-0.002203696,-0.0103398105,-0.008814784,-0.026248187,0.024906669,0.016541166,-0.00512561,-0.007530217,-0.015275584,-0.009441247,0.0060558133,0.032930464,-0.02050244,0.009700691,-0.0053850547,-0.013212684,0.0048503457,0.014845286,-0.0020486622,0.009795611,-0.016528511,-0.007017656,0.0295387,-0.036372848,-0.01592103,0.0102195805,0.0011176678,-0.023223443,0.027564391,0.005138266,-0.011447196,0.017756125,0.010656207,0.033462007,-0.014263118,0.020894771,0.022666587,-0.006074797,-0.0018066193,0.017857373,0.022590652,-0.004008733,-0.03270266,-0.024324501,0.037537184,0.010846044,-0.018148456,-0.044649757,-0.0009420682,-0.02135038,-0.007378347,0.020793524,-0.0025200916,-0.018920463,-0.008593307,0.016946154,-0.033436697,-0.037132196,-0.028475612,0.007264445,0.021008674,0.0050180354,-0.073910035,0.03351263,-0.028551547,0.022388158,0.016212115,-0.0061096004,-0.008276911,0.031791437,0.00047182507,-0.0061507323,0.008087073,0.024818078,0.02617225,0.01761691,0.035107266,-0.02508385,0.014756694,0.006131748,-0.021970516,0.019034365,0.0295387,-0.0020201865,-0.010865028,0.001969563,-0.043941032,-0.010048727,0.0022384995,0.009321017,0.002192622,-0.020628998,0.04773778,-0.008295895,-0.07072076,0.025273688,-0.019211546,-0.014199838,-0.013060814,-0.00615706,-0.0014245716,-0.007523889,0.0036132387,0.008093402,-0.019477319,0.018895151,-0.015351519,-0.027564391,0.025159786,0.015440109,-0.013491112,-0.012997535,0.014149215,-0.032398917,0.0018493328,0.016034933,0.03136114,-0.00072929205,-0.034676965,-0.0051888893,-0.028703416,-0.029184338,-0.0047206236,-0.006840475,-0.0028064298,0.042422332,-0.0022195156,0.012573564,0.038625587,-0.013326586,0.04725686,0.001613618,0.0034708607,0.018135801,0.007251789,-0.008226288,0.017098023,0.020160733,0.049231168,0.010327155,0.022767833,-0.011472507,0.008194649,-0.011978741,-0.039663363,-0.0039264704,-0.026020382,0.008479404,0.00849206,0.0023144344,-0.011807887,0.004476999,0.012415366,-0.012984879,-0.03533507,0.015288239,0.029310897,-0.017958619,0.029690571,-0.0011912298,-0.064291604,0.00023215533,-0.0010828642,-0.028576858,-0.009124852,0.025058538,0.012364743,0.0020977033,0.033006396,0.03622098,-0.020679621,0.019325448,0.043966345,-0.007833957,-0.001245808,-0.020679621,0.0075175613,-0.012915272,-0.0034613688,0.0025802068,0.0038378797,-0.012440679,-0.0108397165,0.015009811,0.003385434,0.0008226288,-0.01611087,0.009903185,0.0041447836,-0.0021087772,0.0065620467,-0.018173767,0.020034175,0.0039992416,0.017085368,-0.010023415,0.0045181303,-0.009877874,-0.011624377,-0.016313361,0.0039802575,0.016414609,0.006229831]},{"id":"interface-GatewaySavedMessageCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewaySavedMessageCreateDispatchData\nDescription: SAVED_MESSAGE_CREATE — message saved (bookmarked)","meta":{"url":"/docs/typedefs/GatewaySavedMessageCreateDispatchData"},"embedding":[0.029711856,-0.004999228,-0.0021846027,0.020626934,0.015561554,0.0168594,-0.016178975,0.015851364,-0.00955114,-0.051384628,-0.0012049178,0.021861777,0.006816842,0.0055252966,0.034399223,-0.00092455785,-0.04954496,0.007169655,0.026108129,0.015624556,0.028653419,0.027494177,0.05201465,0.022517001,0.0009340082,-0.033970807,0.00759807,-0.017035807,0.032786366,-0.023222625,0.023109222,-0.031904336,0.006860944,-0.011857022,0.033643197,0.056097195,-0.011592412,-0.006892445,-0.04246351,-0.010332367,-0.016972803,-0.032962773,0.04639485,0.03122391,-0.029459847,0.022945415,0.024696877,0.034399223,0.003266666,0.012253935,-0.014036899,0.008675409,0.0018365153,0.029661454,0.027368173,-0.010244165,-0.0028744773,-0.015876565,0.0035249754,0.03848177,-0.006577434,-0.0021783025,-0.012228735,0.009740146,0.005263837,-0.0014592893,-0.050805006,0.056197997,-0.015813563,0.01997171,0.0065396326,-0.024885885,0.011334103,-0.0309215,-0.0046369648,-0.015989969,-0.00081745407,0.029207839,0.0197071,-0.03959061,0.011510509,-0.007629571,-0.06622796,-0.055643577,-0.017565025,-0.025364703,-0.029963866,0.010244165,-0.009015621,-0.0032005138,0.008681709,0.03885978,-0.025389902,0.025276499,-0.0027043712,-0.039540205,-0.029132236,0.017854834,-0.009399934,0.0025972673,0.06264943,-0.06950407,-0.0040006423,-0.03858257,-0.0003073328,-0.042009894,0.012631949,-0.012184633,-0.0393134,-0.01181292,-0.064917505,-0.029157437,0.004136097,-0.0084297,0.0034682732,-0.054131523,0.012442943,-0.039741814,0.00075642066,0.020009512,-0.037599735,0.005963162,-0.012405141,-0.02307142,0.010754482,-0.03520565,0.025440304,-0.027947793,-0.022794211,-0.016872,0.04188389,0.0012868207,0.057458043,-0.049418956,-0.0069806483,0.0029201538,-0.03767534,0.008309996,-0.020702535,0.0035879775,-0.007062551,-0.050174985,0.031047504,0.05771005,-0.040094625,-0.017577626,-0.02221459,0.040271033,0.03039228,0.017363418,-0.03913699,0.048007708,0.00081824156,-0.005254387,-0.004410157,0.003408421,-0.00055520725,0.0012435067,-0.024860684,-0.02615853,-0.017224813,-0.047932103,-0.015863964,0.00928653,-0.065925546,-0.011649114,-0.0030729342,-0.04609244,-0.05483715,0.003069784,0.02110575,-0.031022303,-0.028930629,0.00078359037,-0.002331083,-0.00900932,-0.028174601,-0.04014503,-0.013003662,-0.014377112,0.035281256,0.011334103,0.0048511727,-0.07066331,-0.018636063,0.0059442613,0.008958918,0.0010749757,0.015057535,-0.041984692,-0.05367791,-0.017401218,0.028351007,-0.0006445917,0.029132236,-0.02502449,0.028628217,-0.018081643,0.05211545,-0.035835672,0.013041464,-0.051334225,-0.011920024,0.009084923,0.014288908,-0.0046212142,-0.0026130178,0.007005849,-0.03346679,-0.009822049,0.0618934,0.004753519,0.0040951455,-0.0253143,-0.046268843,0.021143552,-0.038154155,-0.0032981671,-0.027418574,-0.031324714,-0.016267179,0.017401218,0.036062483,-0.035810474,0.025553709,0.017035807,-0.041203465,-0.0062655727,-0.07550188,0.0056670513,-0.032861967,0.00759807,0.009021921,-0.08351577,0.01096869,0.05030099,-0.012991061,-0.0050559295,0.057256434,0.027468977,-0.020589132,0.0017672129,0.002871327,0.019064479,-0.039288197,0.018333651,0.02198778,-0.0015270167,-0.03825496,0.056450006,0.055845186,-0.0093810335,0.026486142,-0.009670843,0.0017782382,-0.015989969,0.016720794,-0.0036383793,0.036112882,0.030820696,0.03994342,-0.042639915,0.011453807,0.03986782,0.010521374,0.021319957,0.05604679,0.025730114,-0.04697447,0.046772864,-0.017565025,-0.03462603,0.046193242,0.022189388,-0.033970807,-0.01883767,0.008650208,-0.017716229,0.015876565,0.04163188,-0.0309215,-0.030266276,0.012127931,-0.016128574,-0.0075854696,0.041531075,0.058667686,0.044655986,0.0051441328,0.00478502,-0.02895583,-0.016216777,0.011126196,-0.04581523,0.057105232,0.047150876,-0.02024892,-0.011787719,-0.000533944,0.049166948,0.06325425,-0.0015309544,0.018144645,-0.0141755035,0.011995627,-0.011107295,0.03548286,-0.044529982,0.049318153,-0.018774668,-0.010659979,-0.016808998,-0.022000382,-0.022264991,-0.0394142,0.013268271,0.054685943,0.011403405,-0.013646285,0.022151588,-0.0021121502,0.017199611,0.03719652,-0.052518666,-0.008864415,0.021735772,-0.020034712,-0.013923495,0.0089211175,0.06940327,-0.0024964637,-0.012279136,0.019996911,-0.017917836,0.046546053,-0.00035261567,-0.020299321,-0.012764254,0.0122854365,-0.0024177108,0.03066949,-0.034777235,-0.031954736,-0.03255956,0.009885051,-0.068244025,-0.052770674,0.021811375,0.024671678,0.0013301348,-0.03573487,0.01209643,-0.019190483,-0.05085541,0.027090963,-0.032408353,0.019077078,-0.015901765,-0.011220699,0.019883506,-0.016985403,-0.0011041142,0.0021893277,0.001336435,-0.02895583,0.047654893,-0.053325094,-0.0006087591,-0.001633333,-0.027796589,-0.0061049173,-0.005282738,-0.066026345,0.0029878812,-0.021445962,-0.0196945,0.005229186,-0.03621369,0.047125675,0.010137061,0.050502595,0.011359304,-0.022038184,0.009469236,0.02588132,0.02588132,0.012650849,0.028376209,-0.026838955,0.03127431,-0.00926133,-0.028577816,0.016204176,0.000033912926,-0.02084114,0.045034003,0.01631758,-0.028855026,0.011453807,-0.0052480865,0.0070184497,0.0039281896,0.011806619,0.014301509,-0.00478502,0.026208932,-0.011346703,0.0025106394,0.027368173,-0.021483764,0.044681188,-0.005730054,0.016103372,0.021735772,0.010061458,-0.004699967,-0.012480744,-0.013167468,-0.035281256,-0.023247827,0.00049023615,-0.012820955,-0.03855737,-0.004356605,0.015788361,-0.022164188,0.014843328,0.016254578,0.033013172,-0.050805006,-0.03623889,-0.010023656,0.040623844,-0.008788813,0.045941234,0.0033674696,-0.033290382,-0.049847372,0.011466407,-0.024596075,-0.04954496,-0.013633684,-0.006949147,0.05685322,-0.039565407,-0.0028351007,0.04168228,0.012405141,0.011964126,-0.03404641,-0.028300606,-0.034122013,-0.022958016,0.010836385,-0.054484338,0.009412535,-0.019051878,0.068798445,0.012858757,0.0006071841,-0.022794211,-0.00017758756,-0.00072491955,0.06411108,-0.020513529,0.011573511,0.02048833,-0.017514622,-0.005150433,0.057105232,-0.038431365,-0.012764254,0.010464672,0.05927251,0.0030193822,-0.011560911,-0.0073271603,0.006552233,0.027872192,-0.009425135,-0.0017010604,0.029207839,0.0035627766,-0.010760782,0.03066949,0.09495698,0.018787269,-0.01490633,0.009696045,-0.0025358403,0.0051346826,-0.00074854534,0.0077177742,-0.013747089,-0.018144645,-0.029963866,-0.008480102,-0.030593887,0.045966435,-0.031853933,-0.010326067,0.020727737,-0.0011600287,-0.03321478,0.08628787,0.002023947,-0.030165473,0.0026350687,-0.03684371,-0.055441972,0.0008780937,0.022378396,-0.013129666,-0.01937949,-0.03266036,-0.0051535834,0.005764705,0.072780184,-0.014566118,0.022038184,0.011201798,0.0018396653,0.0018648664,-0.00091589504,-0.018220248,0.016796397,-0.020097714,-0.049040943,0.001588444,-0.011636513,0.00788158,-0.029485049,0.044832394,0.015107937,0.007812278,-0.06612715,-0.020160716,-0.018056441,0.013658886,0.03487804,-0.003039858,0.004662166,0.037524134,0.009217228,0.013646285,-0.00049850525,0.0026807452,0.03172793,-0.013570682,0.010924588,-0.015120538,-0.019833105,0.021760974,0.0064262287,0.020576531,0.023978652,-0.028779423,-0.0010072483,0.004649565,0.005030729,-0.022706008,-0.0049078744,0.0012734327,-0.018043842,-0.018988876,0.023802247,-0.009727546,0.04188389,-0.040346634,-0.007175955,-0.010307167,0.03593648,-0.004747219,0.037297327,-0.015611955,0.0024035354,0.004268402,-0.019921308,0.016657792,0.0045708125,-0.013117067,-0.061137374,0.0037927348,0.033340786,-0.06874804,0.03959061,0.030039469,-0.0074405647,0.0051913843,0.013986497,-0.038330562,-0.01914008,-0.0076358714,0.010855286,0.002282256,-0.030745093,-0.032131143,-0.0014459013,-0.0154355485,0.016178975,-0.0024129858,0.0007603583,-0.037574537,-0.04369835,0.062246215,0.059474114,-0.020652134,0.0083666975,0.0126697505,-0.0050275787,0.026032526,0.035306454,-0.024923686,-0.030215874,-0.0053614904,-0.017640628,-0.009349532,0.015070136,0.014049499,-0.031072704,-0.023121823,0.011598713,-0.031627126,0.020173317,-0.03853217,0.057508446,-0.033592794,-0.011901123,-0.017300416,-0.01852266,0.054736346,-0.025956923,0.01573796,-0.0140747,-0.028930629,-0.011138796,0.05093101,0.0010308742,-0.0053362898,0.008335196,-0.0056954026,-0.0152969435,0.015952168,-0.005991513,0.042362705,0.0037297327,0.030316677,0.038154155,0.008965218,0.01910228,-0.057508446,0.0057489546,0.06884885,0.028527414,0.03147592,-0.0073523615,0.017224813,0.031299513,-0.031249112,0.015863964,-0.013847892,0.013923495,-0.008618707,0.027695784,0.017628027,0.02953545,-0.010263065,-0.013835292,-0.017250013,-0.007112953,0.012134232,0.008070587,0.06280063,-0.0072704586,-0.018258048,0.013167468,0.016141174,-0.023613239,0.029157437,0.00076862733,-0.00015406017,-0.0043156534,-0.031173509,0.012707552,0.067689605,-0.004892124,0.040195428,-0.019883506,0.028855026,-0.0002579154,0.01378489,-0.02222719,0.027166566,-0.0064955307,0.04866293,0.009822049,0.030694691,0.021975182,-0.010785984,-0.053375497,-0.032483954,-0.03462603,-0.011145096,0.011126196,0.00089305674,-0.038128957,-0.025137894,0.014679522,0.04470639,0.0024681129,0.022138987,-0.04470639,-0.030896299,0.0059568617,-0.025528507,0.0052984883,-0.01067888,0.008902216,0.038053352,-0.002077499,0.039842617,0.01433931,-0.046470452,-0.012991061,-0.033063576,0.013180069,0.033920407,0.008543104,-0.035230853,0.024255862,-0.0015230791,0.0074027632,0.053173892,-0.0051000314,-0.033592794,0.017224813,0.008486401,-0.006986948,0.02363844,0.0088896165,0.00309656,0.0153599465,0.0050055278,-0.007957183,0.002364159,-0.020122916,0.0013466729,-0.0018664413,-0.01209013,0.01772883,-0.019555895,0.008562004,-0.02336123,0.020589132,-0.020450527,-0.010527674,0.010502473,0.021030148,-0.0017955638,0.034424424,0.018434456,0.04808331,-0.024281064,0.05483715,-0.03885978,-0.014490515,-0.014288908,-0.0154355485,-0.008681709,-0.011926324,-0.0029784308,-0.0056387004,0.0019514944,-0.018913273,0.030694691,-0.032861967,0.018610861,-0.013381676,-0.023840047,0.026309736,-0.023940852,-0.003266666,-0.01546075,-0.029434646,0.0033926705,-0.0026271935,-0.024281064,0.0043156534,-0.029434646,-0.026914557,0.005087431,-0.010155961,0.0030477333,-0.011239599,-0.0025137893,-0.00052567496,0.016456185,-0.09596501,0.00618367,0.014603919,-0.0025169395,0.02478508,-0.011554611,-0.013028863,-0.010351268,0.01910228,-0.06043175,0.0032824166,-0.00055402593,0.020639533,-0.014553517,0.02217679,0.016872,0.0075413682,0.0010560751,-0.0155741535,0.0071192533,-0.0047377683,-0.02895583,-0.0505782,0.015271743,0.001352973,-0.026108129,-0.037070516,0.041808285,-0.005496945,-0.01350768,0.03714612,-0.018358853,-0.025062291,-0.0025421404,-0.015208741,-0.0031375114,-0.015032334,0.019795304,0.00014854746,-0.02024892,-0.0023688842,-0.007188556,0.027998196,-0.0073019597,-0.043849558,0.028577816,-0.005591449,0.023172224,-0.0139612965,-0.0005040179,-0.012329538,-0.04097666,-0.0025783668,-0.020022111,0.033416387,-0.0095196385,-0.030064669,-0.0075728693,0.015372546,-0.056752417,0.026536543,-0.0017498872,0.020576531,0.012896558,0.004838572,-0.042085495,0.025074892,-0.009885051,0.010785984,-0.004800771,-0.02305882,0.055744383,0.020979745,-0.009733846,0.0015356796,0.023210024,-0.024142459,-0.013910894,0.01856046,0.06401028,0.015926966,0.012165733,0.017111408,0.009582641,0.022920216,0.008637607,0.028804624,0.016191576,0.009311731,0.023285627,0.0027390225,0.0011773544,-0.004533011,-0.007226357,0.00034040897,-0.009324332,-0.013369075,0.0033265182,-0.00983465,-0.035608865,0.009204627,-0.0045204107,0.012953261,-0.024948888,-0.029182637,0.021811375,-0.013797491,0.016241977,0.021181352,0.029837862,-0.010452071,0.0042369007,0.0017861135,0.032962773,0.018119445,-0.017539823,0.014956731,0.007220057,-0.007516167,-0.02276901,-0.012298037,0.003148537,0.00073240104,-0.0011427031,-0.010855286,-0.001014336,0.0011277401,-0.015813563,-0.0076799733,0.0026098678,-0.01663259,0.01658219,-0.009651943,0.04379916,-0.0032020889,-0.017502023,-0.01716181,0.012487044,-0.010067758,-0.014528316,0.005474895,0.01663259,-0.017489422,-0.011069493,0.010036257,-0.035054445,-0.0034682732,-0.019555895,0.0028098999,-0.020198518,0.0093810335,-0.026385337,-0.0018380904,-0.045638822,-0.0024381867,0.060885366,-0.03719652,0.004240051,-0.010281965,0.021521565,-0.006350626,0.04024583,-0.030493084,0.010893087,-0.048032906,-0.02367624,-0.034953643,0.041027058,-0.0084549,0.00816509,-0.04160668,-0.006917646,0.021622369,-0.022025583,-0.058566883,0.06053255,0.028325807,-0.006671937,0.0100425575,0.008700609,-0.019051878,0.01798084,0.021975182,0.02222719,0.03986782,-0.0075539686,0.01294066,0.009481837,-0.008108389,0.016935002,-0.013696687,0.04616804,-0.003291867,0.009210927,-0.007144454,-0.01572536,-0.00005227217,0.02419286,-0.054736346,-0.027443776,-0.0067916415,0.020274121,-0.01067888,-0.023613239,0.055794783,0.010647379,0.024696877,0.016657792,-0.008807713,0.009544839,-0.00703735,-0.0032320148,-0.029485049,-0.009626742,-0.021042747,0.02673815,-0.047604494,0.003515525,0.011636513,-0.032483954,-0.021156153,-0.014881129,0.00025968737,0.029006232,-0.040069424,-0.022164188,-0.025541108,0.017842235,-0.011510509,-0.032483954,0.023512436,-0.024079457,0.02701536,-0.003013082,0.04727688,-0.026410539,0.016115973,0.013255672,0.007232657,0.011397106,0.024041655,-0.011151397,-0.0152213415,-0.013066664,0.00870691,0.01658219,0.028098999,0.028376209,-0.0016931852,0.018371454,0.00075957074,0.011277401,-0.009072322,-0.008070587,0.010143361,-0.0022050785,-0.009412535,0.011138796,0.00006374055,0.014603919,0.018699065,-0.0053299894,0.039086588,-0.015838763,0.0014939406,0.0023027319,-0.02898103,0.021609768,-0.024533072,0.007950882,0.037574537,0.038607772,0.020954546,-0.0033013173,0.021823976,0.0010001606,0.0019609446,0.043723553,0.0020365473,0.027998196,-0.042665116,-0.008480102,-0.014931531,-0.041858688,0.03460083,-0.028199803,-0.011844421,-0.0059442613,0.01742642,0.008133589,-0.017111408,0.05604679,-0.008448601,-0.064816706,-0.0041297968,-0.023121823,-0.01180032,0.03208074,0.006583734,-0.010603277,-0.008202892,0.03318958,0.004344004,0.009714945,0.013356475,-0.0049960776,0.01717441,0.014150303,0.008461201,-0.009752747,-0.0016585339,-0.022945415,0.036415294,0.019064479,-0.0051976847,0.013583283,-0.004069945,-0.0062624225,0.016204176,-0.000045725843,0.0036415295,0.026586946,0.03775094,-0.016443584,-0.026334936,-0.007850079,0.016430983,0.014868529,0.038708575,0.028502213,0.0044290572,-0.017250013,0.0032005138,-0.024268463,0.008246994,0.054181926,-0.027342971,0.054081123,0.020085115,0.007005849,-0.047680095,0.0112522,-0.038632974,0.028527414,-0.0023247825,-0.010861586,0.016645191,-0.00037761967,-0.013910894,-0.02305882,0.075552285,-0.012436642,-0.010313467,0.023499835,-0.0028823526,-0.03316438,-0.0017404369,0.017098809,-0.036062483,-0.008341497,0.020614333,0.014137703,0.033290382,-0.022857213,0.010760782,-0.027972994,-0.0057584047,-0.01631758,0.022479199,-0.06723599,0.026536543,-0.019039277,0.002699646,-0.0063380254,-0.01941729,-0.011031692,-0.011145096,-0.010943489,0.045916032,0.03039228,-0.0168594,0.013570682,0.01181292,-0.002839826,-0.0140747,0.0029658305,-0.011560911,-0.039212596,0.013192669,-0.03152632,-0.02390305,0.00618682,-0.004101446,0.03596168,-0.0122098345,-0.00078398414,0.016166374,-0.034525227,-0.01659479,-0.04442918,0.040649045,0.015712759,0.030442683,-0.02222719,-0.029686656,-0.053022686,-0.00031205796,0.02478508,0.00062096585,0.009645643,-0.008183991,-0.0026775952,0.018094243,0.0056607514,-0.0043503046,0.057760455,0.015410348,-0.0014246382,-0.017224813,0.050250586,-0.037246924,-0.0006792429,-0.008845515,0.011100994,-0.005137833,0.009639342,0.0068672444,-0.051611435,0.009973255,0.053929918,-0.011712116,-0.0031469618,-0.0066971383,0.04069945,-0.059524518,0.037776142,0.03321478,0.0037769843,0.024029054,-0.0028508513,0.05236746,0.010559175,-0.015233941,0.00982835,0.030820696,0.030266276,0.000095635434,-0.017061006,-0.013671486,-0.0009702345,0.020198518,0.020059913,0.0015608805,-0.018686464,-0.03875898,0.009985855,-0.018951073,0.0110253915,-0.0065585333,0.004271552,-0.045916032,-0.05569398,-0.006290774,0.006968048,0.012342139,-0.03994342,0.0033391188,-0.026964959,0.015044935,-0.027393375,0.010263065,0.03346679,0.018308451,0.00003324845,-0.04556322,-0.0074783657,0.030064669,-0.0037202823,-0.003120186,-0.0034745736,-0.005421343,0.012499644,0.0028729022,-0.004715718,-0.0043219537,0.0052071353,-0.017124008,-0.002894953,-0.010470972,0.012335839,0.028905427,-0.004807071,0.0033580193,0.004274702,-0.0038998385,0.024066856,0.015952168,-0.047932103,-0.023159623,-0.0169098,-0.016493987,-0.0077492753,-0.012581548,-0.0071192533,-0.0021972032,0.01828325,0.013734489,-0.033643197,0.014465314,0.021433363,-0.012411442,0.008675409,-0.053173892,0.006986948,-0.0019625197,-0.028729022,0.0020396975,-0.020992346,-0.034222815,-0.043017928,-0.033365987,0.00071665045,0.0084423,0.026914557,0.0016853099,-0.01236734,-0.0005248874,0.02701536,-0.013003662,-0.028552616,0.045311213,-0.025767917,0.028250204,0.013041464,-0.013570682,0.028502213,0.0092424285,-0.011321503,-0.020185918,0.004807071,0.011630214,0.029686656,-0.006375827,-0.016783796,-0.042589515,0.007377562,0.015624556,0.03460083,-0.0028461262,0.033416387,-0.036616903,-0.018106844,0.008662808,0.027620181,0.03457563,-0.008108389,-0.029837862,0.0041707484,0.040044222,0.0032572157,0.0130540645,0.036188487,0.016468786,-0.043219537,0.022542201,-0.0040132427,0.021181352,0.014263707,0.030341879,0.0020869493,-0.038683373,0.00023743969,0.027645383,-0.02367624,-0.03825496,0.018988876,0.036415294,0.012713852,0.005852908,0.017250013,0.010307167,0.028930629,0.008625006,-0.012001927,0.0068735443,-0.027065761,-0.033617996,0.011434906,0.0029784308,-0.018484857,-0.022025583,0.030014267,-0.0017609126,-0.017615426,-0.019795304,0.03409681,0.0010285116,-0.0030745093,-0.037624937,0.03969141,0.0018806169,0.018623462,-0.0035312755,0.007736675,-0.005257537,0.013343874,-0.0037486332,-0.017565025,-0.021521565,0.0020696237,0.033870004,-0.03767534,0.021042747,0.0071318536,-0.008436,-0.030745093,-0.030341879,0.022756409,0.03482764,0.0017561874,-0.03465123,0.011214399,-0.024117257,-0.015939567,0.047377683,0.00008072162,0.014225906,-0.019177882,0.03482764,-0.0102567645,-0.042564314,-0.009374733,-0.011371904,-0.026586946,-0.01602777,0.010628478,0.003181613,-0.0064262287,-0.032962773,-0.014540917,0.012928059,-0.0022413046,-0.009866151,-0.010017356,0.04299273,0.026511343,-0.020614333,-0.007560269,-0.004249501,0.017779233,0.024482671,0.007144454,0.005550497,-0.019896107,-0.009582641,-0.00072570704,-0.007377562,-0.012342139,-0.025679713,0.039288197,0.00089069415,-0.0012624074,0.0007473641,0.025377301,0.01770363,0.025364703,0.0024287363,0.024381867,0.013898294,0.0019593698,-0.016897202,0.016191576,0.011863322,0.010099259,-0.0011781419,0.013142267,0.015410348,-0.010981291,0.024268463,0.0008190291,-0.0063128243,0.00020200093,-0.02360064,0.0026586945,0.018081643,-0.010830085,-0.026964959,-0.0014860653,-0.0057143033,0.015032334,-0.02450787,0.0013915619,0.019077078,-0.013142267,0.030896299,-0.0077870768,-0.029107034,0.0045960136,0.009217228,-0.05937331,-0.021294758,0.011044293,-0.012361039,0.013104466,0.042589515,0.015649756,0.008039086,-0.006111217,0.04526081,0.014855928,-0.02135776,0.0014112502,-0.012928059,0.015347346,0.0058308574,0.011579812,0.013721888,-0.015322145,0.034802437,0.035860874,0.007900481,0.017489422,-0.018762067,-0.020034712,-0.016619992,0.023449434,0.0044542584,0.0021247505,0.030140271,0.0009686594,0.014540917,0.020513529,-0.017124008,0.010641078,0.007094052,0.0063474756,-0.037448533,0.0506286,-0.012676051]},{"id":"interface-GatewaySavedMessageDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewaySavedMessageDeleteDispatchData\nDescription: SAVED_MESSAGE_DELETE — saved message unsaved\nProperties: id: string","meta":{"url":"/docs/typedefs/GatewaySavedMessageDeleteDispatchData"},"embedding":[0.014716785,-0.0008378136,-0.027834462,0.033131506,0.015628776,0.053520124,-0.02241249,0.01234311,0.009444728,-0.033931058,0.010662798,-0.025735633,0.0058373665,-0.0036604567,0.051471267,0.0042320127,-0.04115203,0.03702933,0.014429445,0.054919343,0.039477963,0.026510201,0.042576235,0.050821632,-0.011531063,-0.008170439,0.030782817,-0.034455765,0.030408027,-0.012211933,0.033656213,-0.03590496,0.026710091,-0.011018849,0.011362407,0.060366303,-0.005999776,-0.0046692686,-0.05367004,-0.024461346,-0.031807244,-0.026035467,0.026310313,0.009788286,-0.0063027316,0.027609589,0.010238035,0.029233681,-0.003994645,0.005112771,-0.0023580587,-0.012580478,0.0037885103,0.08020523,0.013105185,-0.009625877,0.014017176,-0.008788844,0.007495816,0.0032887892,-0.008439039,0.00961963,-0.030757831,0.024798658,0.009688342,-0.0000067650226,-0.039278075,0.08435291,0.0033325148,0.03520535,0.017677633,-0.019614052,0.0029639704,-0.028059337,0.00406648,-0.008882542,0.026185384,0.014554376,0.05089659,-0.040152587,0.0057342993,0.00032969879,-0.05791767,-0.048897706,-0.010362965,-0.0059092017,-0.050221965,-0.015778692,0.008701392,0.02695995,-0.026160397,0.033506297,-0.03935303,0.0057061897,-0.042826094,-0.04185164,-0.0042788615,-0.0024064693,-0.018939428,0.029633459,0.06311477,-0.07955559,-0.038728382,-0.00936977,-0.02885889,-0.047323585,-0.0022378133,-0.00056374783,-0.047973223,-0.030433012,-0.00040992742,-0.024986053,-0.009975681,0.034680642,0.005743669,-0.04222643,-0.010294254,-0.0135549335,0.031407468,0.0035823754,-0.020176237,-0.0026469599,0.006633797,-0.015716227,-0.046299156,-0.008070495,0.022849746,-0.028284213,-0.040977128,-0.013679864,0.040202558,0.00063831557,0.03637969,-0.05107149,0.010362965,0.014042161,-0.027809476,-0.008476518,-0.044350244,0.00006231873,0.0036198543,-0.034355823,0.006187171,0.052670598,-0.022449968,-0.017402785,0.006902397,0.06031633,0.032631785,0.0015163411,0.00014366981,0.025498267,-0.0073833787,0.0012984939,-0.0118371425,0.011381147,0.02348689,-0.0077081975,-0.03013318,-0.04272615,-0.022687336,-0.08355336,-0.012549245,-0.006508867,-0.047273614,-0.002105075,0.018402228,-0.04247629,-0.038828325,-0.014929166,0.0054813153,-0.062814936,-0.01857713,-0.019551586,-0.034705628,0.00066056877,0.0016209702,-0.037254203,-0.026984937,-0.0065838248,0.03200713,0.006049748,0.010294254,-0.07136016,-0.023524368,0.0027578357,0.007121025,0.0163034,-0.0036573336,-0.020388618,-0.029108752,0.013105185,0.03120758,-0.0029264914,0.030757831,-0.0036573336,0.009126156,-0.021325596,0.007826881,-0.041226987,0.008139207,-0.0327817,0.023399439,0.0015764638,0.0049722246,-0.017915,-0.0061153364,-0.0315324,-0.022887224,-0.028084323,0.0578677,0.013255101,-0.001142331,-0.05976664,-0.023961624,0.010900166,-0.0011813719,0.009856998,-0.012043278,-0.009725821,-0.036029886,-0.01721539,0.051571213,-0.031982146,0.03817869,-0.0077331834,-0.01291779,0.012992747,-0.07490819,-0.0018224202,-0.025485775,-0.014929166,0.019701503,-0.07021081,0.018727047,0.05102152,-0.0076707182,0.00078588945,0.03967785,0.030757831,-0.030433012,-0.026060453,0.013617399,0.024386387,-0.013879753,0.023774229,0.03860345,0.008145453,-0.02373675,0.047548458,0.021950247,0.016915558,0.047323585,-0.026435243,-0.008095481,-0.02237501,0.0008760735,0.0006859452,0.037329163,0.016228441,0.035055432,-0.04937244,-0.008445286,0.012374342,-0.011524817,0.012374342,0.07700702,0.0076020067,-0.045874394,0.011318682,0.008695146,-0.042776123,0.0431759,0.02373675,-0.009126156,0.015428888,0.019326711,-0.00569682,-0.029083766,0.022974676,-0.027634574,-0.018064916,0.006184048,-0.009363524,-0.0120557705,0.0720098,0.034580696,0.04982219,0.012505519,0.005793641,-0.01259297,0.023986612,0.03538025,-0.06881159,0.020401113,0.06386435,0.017077968,-0.0068024527,0.0070897923,0.025148463,0.0872513,-0.028534072,-0.011543556,-0.030457998,-0.0064089224,-0.002617289,-0.011943333,0.015841158,0.004916006,-0.026760062,-0.032581814,-0.031132622,-0.027509645,0.00064495247,-0.038253646,-0.010256775,0.019264247,0.02728477,0.00664629,0.00017744002,0.021225652,0.018277297,-0.004025878,-0.059266917,-0.033081535,0.006293362,-0.022437476,-0.0046661454,0.024261458,0.08075492,0.011568543,-0.015878636,0.023062127,-0.00798929,0.040227544,0.011874622,-0.046549015,0.034355823,-0.011162519,-0.0028936972,0.036429666,-0.015278971,-0.016690683,0.0062777456,0.019226767,-0.06286491,-0.063514546,-0.009813272,0.030108193,0.004222643,-0.023886666,0.017240377,-0.031357497,-0.0772069,-0.0013383154,-0.0036542101,0.01273664,0.0016178469,-0.023774229,0.026760062,0.005906078,-0.0024267703,0.008507751,0.019351698,-0.004628666,0.039802782,-0.048373,-0.0093260445,0.01820234,-0.041226987,0.012474286,-0.04417534,-0.03957791,0.0010759619,-0.01357992,-0.028758947,-0.020988284,-0.017427772,0.041976567,-0.009163635,0.036254764,0.02823424,-0.06316474,0.015116562,0.030208137,0.023386946,-0.011449859,0.020426098,-0.038903285,0.02551076,-0.0028671497,0.009113663,0.009894477,0.0046567754,-0.029358612,0.026385272,-0.009088676,-0.019514108,0.00813296,-0.03293162,0.020263689,0.01572872,-0.03025811,0.000653151,-0.0037322915,0.02988332,0.011206245,-0.018339762,0.04659899,-0.052070934,0.033531282,0.0051315106,0.0118371425,0.032356936,0.00434445,-0.03323145,0.023399439,-0.00935103,-0.010150583,-0.016378358,0.0060528712,-0.0012329055,-0.041426875,-0.01207451,0.007583267,-0.021163186,0.0231121,0.016915558,0.0015616283,-0.092898145,-0.06846178,0.0021519237,0.011462351,-0.0009658671,0.06006647,-0.0070460667,-0.020601,-0.04380055,-0.04722364,-0.009788286,-0.0442503,-0.021175679,-0.014829222,0.04247629,-0.000004202976,-0.02262487,0.024923587,0.016190963,0.0062215272,-0.02369927,-0.029633459,-0.005443836,-0.06006647,0.0014023422,-0.049197536,-0.025248406,-0.026535189,0.040302504,0.0173778,-0.018389735,-0.06006647,-0.01902688,-0.0040102615,0.083353475,0.0052033453,0.012436808,0.00772069,0.0017318458,-0.021937754,0.061165858,-0.026160397,-0.016903065,0.031557385,0.022424983,0.0090574445,-0.03133251,-0.020213716,0.0024595645,0.022849746,-0.03293162,-0.017040487,0.018214833,-0.013105185,-0.03418092,0.019726489,0.07825632,0.04000267,-0.017452758,0.0021831563,0.028908864,-0.028159281,-0.021950247,-0.0025813715,-0.013317566,-0.02216263,-0.002226882,0.009438481,-0.01820234,0.053420182,-0.03133251,0.0142295575,-0.025810592,0.011699719,-0.026285328,0.0707605,-0.025498267,-0.039802782,-0.013367538,-0.03987774,-0.076557264,0.0076394854,0.030732844,-0.021325596,-0.038128715,-0.02898382,0.0054219733,-0.009807026,0.028958835,-0.028159281,0.01803993,0.02683502,0.008033016,0.046549015,-0.0031123252,-0.010675291,-0.01071277,-0.0121057425,-0.05127138,0.0073958714,0.013654877,0.0105691,-0.040777236,0.03595493,0.0442503,0.012567985,-0.03810373,-0.010906412,-0.017452758,0.017165419,0.016490795,0.021225652,-0.00085655315,0.061515663,0.005381371,-0.010075626,0.017577687,-0.0068711643,0.045099825,-0.012792859,0.010481649,0.0012087004,-0.025210926,0.017964972,-0.0052189617,0.008538984,-0.005937311,-0.031157607,0.007870606,0.025735633,0.013717343,-0.0018474063,-0.027234798,0.031982146,-0.021238144,-0.0056749573,0.019264247,-0.011506077,0.025385829,-0.009575904,0.014604348,0.00050909084,0.031607356,-0.015628776,0.02291221,-0.003991522,0.018477187,-0.033206463,-0.019251755,0.006596318,-0.038328607,-0.004894143,-0.04929748,-0.009482207,0.05501929,-0.05312035,0.042776123,0.044450186,-0.018752033,-0.008582709,0.0067212484,-0.018264804,-0.042701162,-0.00032969879,-0.015691241,0.009450975,-0.010500388,0.027334742,-0.010700277,0.006977355,0.026710091,0.013067706,0.005465699,-0.02588555,-0.028758947,0.08600199,0.054969314,-0.036854427,-0.0019254877,0.0013164526,0.003298159,-0.0034699382,0.046873834,-0.008582709,-0.027959393,-0.028434128,-0.023124592,-0.0247237,0.022399995,-0.00011946457,-0.02381171,-0.012143222,0.023924146,-0.022175122,-0.010875179,-0.017727604,0.033981033,-0.047148682,-0.043650635,-0.022175122,-0.027134852,0.045749463,-0.023936639,-0.0051346337,-0.024823643,-0.01232437,0.005584383,0.018427214,0.010656551,-0.009757054,-0.008170439,0.0056655873,-0.01948912,0.041326933,0.005559397,0.01993887,-0.0091074165,0.0039634127,0.036754485,0.0021363075,0.015841158,-0.052020963,-0.020113772,0.045849405,0.01585365,0.022924703,-0.0018926935,-0.0029717786,0.05981661,-0.013879753,0.0062277736,-0.009344784,0.027809476,-0.015278971,0.016203456,-0.003957166,0.0048535406,0.020363633,-0.01873954,0.00027152812,-0.010975123,0.029108752,-0.00005026491,0.0643141,-0.001588176,-0.007545788,-0.0050784154,0.012855324,-0.03038304,-0.0066275503,0.007302174,-0.019226767,0.007714444,-0.035655096,0.008201672,0.026535189,-0.0033637474,0.046623975,-0.006621304,0.023361959,0.010675291,0.00961963,-0.006658783,0.03438081,0.0019457889,0.022399995,0.02835917,0.03203212,0.046623975,0.03330641,-0.020426098,-0.02323703,-0.047173668,0.00013078637,0.02022621,-0.005197099,-0.022187615,-0.0043350803,0.014317009,0.03627975,-0.012674175,-0.00075973215,-0.019788954,-0.0399527,0.006758727,-0.014829222,-0.003910317,-0.03203212,0.0053470153,0.017165419,0.0037260451,0.033456326,0.0009525933,-0.03553017,0.0035448961,-0.0072896807,0.016340878,0.0021550471,0.035105404,-0.025960509,-0.0010478526,-0.005122141,0.015678748,0.020038813,0.012318124,-0.010531621,0.026135411,0.015528832,-0.0017802563,0.025285885,0.010912659,-0.0034012264,0.047448516,0.0034699382,-0.047448516,-0.02563569,-0.018814499,-0.008951253,-0.0039790287,0.008407807,-0.0002039877,-0.013180143,0.008445286,-0.017877521,0.01560379,-0.018839484,-0.010238035,0.004566201,0.02344941,-0.000015726086,0.035730056,0.029608473,0.034080975,-0.01923926,0.06296485,-0.027434686,-0.014366981,-0.018352255,-0.0037260451,0.014104627,0.0067399875,-0.012318124,-0.001394534,-0.00798929,0.01017557,0.01741528,-0.02563569,0.027684547,-0.037254203,-0.021925261,0.056768313,0.0074208574,-0.011406133,-0.00022838813,-0.043600664,-0.0000936977,0.00637769,-0.015179027,-0.022587392,-0.03190719,-0.0026813159,-0.0107252635,0.0006644728,-0.008994979,-0.02323703,0.00062308967,0.00072693796,0.024948573,-0.06246513,0.013092692,0.029008808,-0.010750249,0.016440822,0.006977355,0.010119352,0.010119352,0.019189289,-0.06656285,0.019738982,0.009401002,0.013467482,-0.018814499,0.042426318,-0.013854766,0.032956604,-0.002361182,0.016603231,0.020163745,-0.002684439,-0.008763858,-0.04544963,0.0274097,-0.0070897923,-0.026660118,-0.025535746,0.04115203,0.007389625,0.00007227411,0.026560174,-0.022037698,-0.04519977,0.007277188,-0.00057506963,-0.026685104,-0.02513597,-0.015778692,-0.011518571,0.0034105962,0.015328944,-0.022987168,0.012255658,0.00005094812,-0.030732844,0.012518012,-0.003772894,0.01597858,-0.025523253,-0.011699719,-0.02427395,-0.011381147,-0.012980254,-0.021100722,0.031157607,-0.026085438,-0.023024648,-0.0015756829,-0.0061778016,-0.05841739,0.024486331,0.036679525,-0.008876295,0.00243614,0.021413047,-0.0360049,-0.0060028993,-0.012374342,0.032082092,-0.0035386498,-0.012842831,0.047323585,0.023137085,0.018314777,0.017702619,0.04367562,-0.038628437,0.004797322,0.025460787,0.058767196,-0.00007871583,0.014154599,0.015428888,0.01857713,0.031882204,0.021750359,-0.0069898483,0.047048736,-0.0067712204,-0.0071272715,0.024673726,-0.01288031,-0.029658444,0.017527716,0.0067524808,0.0032450636,-0.0017989958,-0.008076741,-0.011874622,-0.010737756,-0.00609972,0.0040321243,-0.020488564,-0.04252626,-0.022387503,0.005222085,-0.011412379,0.04005264,0.021213159,0.048248067,-0.010150583,0.0016881202,-0.008232905,0.021488005,0.00083703274,-0.01246804,0.02423647,0.0057655317,-0.009450975,-0.015366422,-0.030008249,0.0065900716,0.008788844,-0.00394155,-0.0073209135,0.02943357,-0.026660118,-0.014192078,-0.01246804,0.017590182,-0.022549912,0.009600891,-0.017890014,0.034355823,0.000063831554,-0.0044194083,-0.0032044612,0.015866144,-0.014541883,-0.018102394,-0.0052907965,0.003504294,-0.04252626,-0.015453873,0.0076144994,-0.030532956,0.003432459,-0.006402676,0.022737307,-0.031757273,0.010550361,-0.0016256551,-0.017240377,-0.028534072,0.0024002227,0.053570095,-0.037229218,0.006246513,-0.008676407,0.032956604,-0.0044100382,0.027434686,-0.0306329,0.017565195,-0.041002113,-0.027559616,-0.02835917,0.029508527,-0.0074770763,0.0005938092,-0.026110426,-0.009994421,0.012505519,-0.032132063,-0.03710429,0.0494474,0.0035074172,-0.012461794,0.03233195,0.0055406573,-0.006237143,0.008326602,0.009163635,0.01581617,0.043825537,0.0032638032,-0.004659899,0.013492469,0.004516229,0.011162519,0.008901281,0.04614924,0.02790942,0.01506659,0.008795091,-0.02142554,-0.0038228661,0.027334742,-0.0360049,-0.0063027316,0.030707859,0.027184825,0.0015592858,-0.026660118,0.06761226,0.008464025,0.03340635,0.0146668125,-0.024511317,0.014629334,0.013492469,0.0027906299,-0.019926377,-0.0071022855,-0.022762295,0.037953813,-0.03270674,0.0028031229,-0.013804794,-0.019801447,-0.009119909,0.0015756829,0.0054594525,0.04582442,-0.011075068,0.009632124,-0.012867817,-0.00012912713,-0.027509645,-0.0103879515,0.01273664,-0.017477743,-0.0015647515,-0.021612935,0.04734857,-0.02269983,0.014879194,0.029408583,0.012030784,0.029233681,-0.008120467,-0.017127939,-0.010669044,-0.023024648,0.031032678,-0.008351588,0.021525484,0.030158166,-0.025910536,0.015366422,-0.009013719,0.0022112657,-0.02683502,-0.014104627,0.02183781,-0.009981928,-0.00515025,-0.008157946,0.0040696035,0.02835917,0.022474954,-0.03637969,0.018314777,-0.03570507,0.021025764,-0.0058935853,-0.02369927,0.015228999,-0.00910117,-0.0056749573,0.05916697,0.040627323,0.008895035,-0.01572872,-0.015416395,-0.000021923797,-0.0015382039,0.037254203,0.0026578913,0.011193751,-0.033831116,-0.023187056,0.03550518,-0.012374342,0.016503287,-0.04507484,-0.02047607,-0.017802563,0.03563011,-0.00556252,0.011181259,0.045699492,-0.015566311,-0.036304735,-0.004653652,-0.012980254,0.006540099,0.013080198,0.013017734,-0.019264247,-0.0066525363,0.023574341,-0.0004524818,0.011874622,-0.011424873,0.005272057,0.022499941,0.02753463,0.023149578,0.0052658105,0.012649189,-0.012561738,0.05431968,0.012749134,0.019001894,0.0040820963,-0.003772894,-0.02898382,0.00054305623,-0.008994979,0.004981594,-0.004138315,0.024336414,-0.0056156153,-0.038378578,0.004647406,0.035080418,0.00043686552,0.032256994,0.03240691,0.0020582261,-0.02142554,0.005865476,0.0010915782,0.010825207,0.017715111,-0.039278075,0.03785387,-0.016865585,-0.010893919,-0.048647843,0.0055156713,-0.025061011,0.03323145,0.006546346,-0.021088228,-0.006677523,0.000022655811,0.0046161734,-0.019464135,0.07101036,-0.015916115,-0.004762966,0.006271499,0.0057311757,-0.015641268,0.0007132737,0.0046161734,-0.027259784,0.004697378,0.019376684,0.019738982,0.030582929,-0.008745118,-0.0020707191,0.0068086996,0.016765641,0.015703734,0.0163034,-0.053520124,0.014092133,-0.012012045,-0.0089887325,-0.029658444,-0.032631785,-0.022150137,0.007520802,-0.009750807,0.016053539,0.026160397,-0.014429445,0.021700386,0.0025954263,-0.009313551,-0.033056546,0.0012524258,-0.015403901,-0.0135049615,0.010119352,-0.062165298,-0.00732716,-0.0033012822,-0.00542822,0.019014386,-0.00030080866,0.000573508,-0.004100836,-0.04557456,-0.010125598,-0.024086555,0.057018172,0.023299495,0.0026375903,-0.037129276,-0.0135549335,-0.04722364,-0.0013336305,0.014891688,-0.026185384,-0.0037697707,-0.0068274387,0.029233681,0.013155157,0.023336973,0.038153704,0.05252068,0.025435802,-0.013979697,0.014204571,0.05626859,-0.035080418,-0.0118371425,0.0045349686,0.017177911,-0.026035467,0.015791185,-0.0037916335,-0.038853314,-0.0046192966,0.049097594,0.0012430561,0.010875179,-0.0041945335,0.034855545,-0.065113656,0.04152682,0.009419742,-0.016615724,0.01382978,-0.013692357,0.041002113,-0.010818961,-0.029408583,-0.008439039,0.03558014,0.027134852,-0.0038291125,0.004781706,-0.0138422735,-0.0146668125,0.0076207463,0.012842831,-0.015741212,-0.027484657,-0.00691489,-0.00046770766,-0.017602675,0.0063121016,-0.0040977127,0.0029421076,-0.038903285,-0.044725034,-0.018127382,0.0047785826,-0.00067071937,-0.04664896,0.014317009,-0.05456954,-0.012724147,0.005912325,-0.005718683,0.0059092017,0.004869157,-0.030707859,-0.011431119,-0.0057998877,0.026160397,0.0043413267,-0.0069398764,0.00006217232,-0.003504294,0.015841158,0.0038790847,0.0038197427,0.0010580032,-0.012511766,-0.015466367,-0.015578804,-0.015878636,0.016328385,0.04697378,-0.016815614,-0.023599327,0.011562296,0.010206803,0.035030447,0.033056546,-0.03550518,0.001046291,-0.016790627,-0.031807244,-0.010519128,-0.040777236,0.001722476,0.004100836,-0.0020691575,0.009594644,0.007002341,0.01193084,0.011968319,-0.03413095,-0.009032458,-0.032831673,0.009013719,0.0030233124,-0.004260122,0.009657109,-0.03530529,-0.0036448403,-0.013604905,-0.033756156,-0.012980254,0.020451084,0.02790942,0.0088200765,-0.008757612,-0.0054219733,0.005247071,-0.032881644,-0.029408583,0.021887783,-0.015741212,0.012661682,0.0058592292,-0.02022621,0.029358612,-0.0018161737,-0.017477743,-0.03298159,0.0050690453,0.0295585,0.015416395,0.013767315,-0.020076293,-0.04082721,-0.0065838248,0.011862129,0.057018172,0.009413496,0.043525703,-0.027609589,0.00045482424,-0.010156831,0.008407807,0.012830338,-0.009550919,-0.05102152,-0.0043163407,0.033206463,-0.014966645,0.0035355266,0.040177573,0.013617399,-0.017740097,-0.0071585043,0.014441938,0.023224536,-0.011424873,0.015166534,0.00515025,-0.027884435,0.0011548242,0.017040487,-0.03310652,-0.03880334,0.01671567,0.037429105,0.03083279,0.012742887,0.025498267,0.04285108,0.03203212,0.0018411598,-0.0506967,0.01635337,-0.019426657,-0.0011501393,0.009301058,-0.017652646,-0.018014943,-0.012905296,0.0071522575,-0.0019051866,0.0150041245,-0.010350472,0.039527934,-0.013779808,-0.01126871,-0.03897824,0.034980472,0.008145453,0.0005348577,0.025485775,-0.018914443,-0.0075395415,0.00015323478,-0.0024142773,-0.015378916,-0.02212515,-0.019576572,0.009663356,-0.028009364,0.036579583,0.014267036,0.0023799215,-0.016103512,-0.024861122,0.003772894,-0.0024174007,-0.017615167,-0.021800332,-0.010044393,-0.029483542,-0.0031498042,0.018589623,0.0047442266,0.030408027,-0.024761178,0.018689567,-0.021862796,-0.013679864,0.0033918566,-0.005331399,-0.008095481,-0.020900832,0.021150693,-0.029633459,-0.020963298,-0.023137085,0.009413496,0.011987058,-0.003024874,-0.010975123,-0.00028870604,0.02563569,0.043325815,-0.035755042,-0.0073334062,0.0037822637,0.015079083,0.00773943,-0.018964414,-0.0039790287,-0.019126823,-0.017402785,-0.012268152,-0.026235355,-0.025110982,-0.009569658,0.05317032,-0.006621304,0.01073151,-0.01870206,0.034205906,0.0037697707,0.03310652,-0.0026469599,0.009719575,0.0120557705,0.0018536528,-0.011424873,0.01816486,-0.0032075846,0.0018817621,0.009832012,0.0040727267,0.0024252087,0.005962297,0.028084323,0.033331394,-0.017939987,-0.0012820968,-0.039103173,-0.019039372,0.0006582263,-0.0043163407,-0.0153914085,0.0050565526,0.013567426,0.015503846,-0.041276958,-0.02105075,0.0058498597,-0.027334742,0.03190719,0.0052439477,-0.0044974894,0.0016490795,-0.0026266589,-0.062115327,0.0049472386,0.002818739,-0.014604348,0.010350472,0.027609589,0.026934965,0.006346457,0.003516787,0.05531912,-0.008095481,-0.023062127,-0.03330641,0.0014398213,0.00022526488,0.016066032,0.020900832,0.034955487,-0.006402676,0.013192636,0.036354706,-0.0015959841,0.0035074172,-0.017452758,0.020088786,-0.0005555493,0.018876962,-0.0009650863,0.017390292,0.026984937,-0.003688566,0.02683502,-0.0011048521,-0.004272615,0.009700835,-0.002159732,0.014991632,0.0006480757,0.040777236,-0.0060684877]},{"id":"interface-GatewaySendPayload","type":"interface","source":"main","text":"Interface: GatewaySendPayload","meta":{"url":"/docs/typedefs/GatewaySendPayload"},"embedding":[0.01745648,-0.023045208,0.0074936748,0.024359422,-0.0026350655,0.004228052,-0.035470504,0.018863618,0.04200175,-0.019965433,-0.008535754,0.013779335,-0.03366512,0.031275637,0.013414276,-0.07391458,0.0070887906,0.030266747,-0.04311684,0.06536555,0.01249167,0.0038563553,0.009969442,0.06334777,-0.041338004,-0.02169117,0.031833183,0.004251283,-0.0032490292,-0.012498308,0.060692795,-0.042718593,0.052249964,-0.044099182,0.03148804,0.04686036,-0.026509954,0.04688691,-0.05036493,-0.0069494047,-0.025009891,-0.006836568,-0.00089024723,0.024080649,-0.021279648,0.033001374,-0.032019034,-0.0049979957,0.005807764,0.008429554,-0.005412836,0.017907826,0.018611394,0.047763053,0.030744644,0.031912833,0.0011822948,0.00023396993,-0.012405384,0.04232035,-0.06876393,-0.010294677,-0.004065435,-0.0058973697,0.014111207,-0.0064947396,-0.04327614,0.044231933,0.0039957417,0.05628553,0.02335053,0.0051838444,-0.014894426,-0.015425421,-0.021279648,0.0017887913,0.0028424857,0.023443455,0.033213772,-0.044603627,-0.014097933,-0.009876518,-0.04670106,-0.11320826,-0.024890417,-0.028408263,-0.042399995,0.008953913,-0.011164182,-0.008874264,-0.039718468,0.025421413,-0.027850717,0.021598244,-0.032948274,-0.020881401,-0.015518346,0.00584427,0.007852097,0.011369943,0.07720675,-0.06127689,-0.009783593,-0.038258232,0.012584595,-0.031195989,0.006322166,0.0046462114,-0.009425172,-0.007672886,-0.05766612,0.0057745767,0.019753035,0.009279148,-0.014005008,0.041152157,0.034116466,-0.0090932995,0.053073008,0.00049988256,-0.019474262,0.023629302,-0.0017987475,-0.060533494,-0.025062991,-0.02885961,-0.012265998,0.016898934,-0.019978708,0.025129365,0.057188224,-0.054639444,0.049435686,0.06520626,-0.0049814023,0.013387726,-0.029417155,0.004005698,-0.028169315,-0.015332497,-0.0153059475,-0.026483404,0.05633863,0.013805885,-0.01675291,0.001755604,-0.024080649,0.018637944,0.011827926,0.03223143,-0.018797243,0.036877643,-0.01659361,-0.0047391355,-0.00026342357,0.023801876,-0.01989906,0.006869755,-0.0038629929,-0.0034713836,-0.0018866936,-0.050152533,-0.023708953,-0.009365435,-0.05617933,-0.010553537,0.026536504,-0.03217833,-0.055489037,-0.009053474,-0.012060237,-0.04683381,-0.012020412,-0.0069626793,-0.033266872,-0.016885659,-0.023483278,-0.042187598,-0.00064798055,-0.018252973,0.070516214,0.032762427,0.005363055,-0.041497305,-0.031594235,0.00958447,0.027213523,0.057506822,0.019049466,0.0002501487,-0.014854601,0.01851847,0.03945297,0.0052999994,0.017496305,-0.010971696,0.017111333,-0.038975075,0.017204257,0.006803381,0.013248339,-0.030611895,0.06223268,-0.0059737,-0.011044708,-0.023177957,0.0035178456,0.019235315,-0.0094716335,0.016580336,0.03464746,-0.008761427,-0.0210407,-0.05761302,-0.035789102,0.02345673,-0.001511678,0.029735751,0.032842077,-0.02579311,-0.026191356,0.0089340005,0.026589604,-0.041231807,0.029390605,0.04574527,0.0070356913,-0.004974765,-0.022474388,-0.03148804,-0.012770443,0.030957041,0.006206011,-0.042877894,0.016792735,0.05047113,0.00037128205,-0.051108323,0.021465495,0.01371296,-0.035258107,-0.012796993,0.023071757,-0.00961102,-0.042745143,-0.02046988,-0.0046329363,0.00016002465,-0.01504045,0.03732899,0.038683027,0.043833684,0.056710325,-0.014403255,0.02465147,-0.0012420318,-0.013925359,-0.031195989,0.03504571,0.012617783,0.053710204,-0.030266747,-0.0044670003,0.044550527,-0.0042778333,-0.028142765,0.021266373,0.036824543,-0.045001876,0.016925484,0.0054825293,0.01610244,0.036797993,0.022062866,-0.0418159,-0.013281527,0.016580336,-0.02023093,-0.012564682,-0.02117345,-0.07094101,-0.0091663115,-0.026722353,0.05177207,-0.019514088,0.0023314024,-0.0053862864,0.044231933,0.03106324,0.001334956,-0.006023481,0.030638445,0.0356829,-0.010254852,0.03454126,0.009259235,0.020828301,0.0018817156,0.03730244,0.026111707,0.03345272,0.012929742,-0.027505571,-0.02571346,-0.03963882,-0.019991983,-0.0032374137,-0.027346272,0.014084658,-0.032974824,-0.02277971,-0.013387726,-0.055064242,0.003317063,-0.034010265,0.008037945,0.060586594,0.019699935,-0.02155842,0.01867777,-0.0033286784,0.060321096,0.032948274,-0.061383087,0.03740864,-0.014642203,0.009066749,-0.024611644,0.029178206,0.048400246,0.0042811516,0.018783968,-0.004350845,-0.030426046,0.03483331,0.035364304,-0.041762803,0.00036257043,-0.010175203,0.051931366,-0.0047391355,-0.019076016,0.014031558,-0.016898934,0.031833183,0.009318972,-0.026828552,0.029151658,0.044523977,0.006750281,0.0075003123,0.017204257,-0.002688165,-0.010633186,0.0053232308,-0.042506196,0.028248964,-0.04338234,-0.058197115,0.014642203,-0.047391355,0.02046988,-0.004915028,0.029496804,-0.0054327482,0.00870169,-0.01381916,-0.0080777705,-0.0015788821,-0.030877393,0.043169938,0.047524102,-0.022806259,0.03358547,0.017668877,-0.0060500307,0.041683152,-0.01555817,-0.009378709,-0.015159924,0.058037817,0.04930294,-0.0059106443,0.026071882,-0.016580336,-0.015836943,-0.030957041,0.049754284,-0.033346523,0.015106824,0.0052800872,-0.027930368,-0.041178707,-0.03353237,0.0269082,-0.013620037,0.027532121,-0.014549279,0.017655604,0.01740338,0.022580586,0.0066374447,-0.0050477767,-0.017283905,-0.01989906,-0.04075391,0.039957415,0.045320474,0.03241728,-0.042187598,0.016673261,0.0075003123,0.029284406,0.02272661,0.04189555,-0.0179742,-0.0056716963,-0.020974325,-0.031780086,-0.0072016274,0.0130425785,0.05628553,-0.052993357,0.03451471,0.024200123,-0.00039015728,0.032735877,-0.0018800562,0.0020874764,-0.072321594,-0.022939008,0.029310955,-0.010108829,-0.021027425,0.019859234,-0.00065046956,0.018916717,-0.006969317,-0.003478021,0.021186722,-0.01924859,-0.0118810255,-0.023576204,0.042214148,0.0149608,-0.037859984,0.021438947,0.014549279,0.012498308,-0.026058607,-0.020376954,-0.036320098,-0.025726736,0.0538164,-0.03592185,0.004938259,-0.0065876637,0.07072861,0.017575953,0.027744519,0.01142968,0.00048038506,0.0016361302,0.03839098,-0.03701039,0.050656978,0.028753411,-0.03116944,-0.028302064,0.060533494,-0.033001374,-0.01908929,-0.0037833434,0.01865122,-0.011277018,-0.026085157,0.0011947401,-0.015876768,-0.028594112,-0.012949655,-0.013407638,0.0077127106,-0.017721977,-0.0076994356,0.041338004,0.12117319,0.026191356,-0.034089915,-0.062020283,-0.030346397,0.008655228,0.0018651219,0.017629053,-0.016487412,0.004526737,-0.0241072,-0.01750958,-0.021518596,0.021757543,-0.019022916,0.00550576,-0.037647586,0.031806633,-0.04678071,0.06515316,0.0026400436,-0.0020559484,-0.020695552,-0.031567685,-0.049807385,-0.009677394,-0.014748402,-0.017416654,-0.03217833,-0.066586845,-0.002922135,-0.027771069,0.04571872,-0.0060168435,-0.013805885,-0.005197119,0.030771194,0.0051838444,-0.005399561,-0.0209345,-0.0058276765,-0.0027960236,-0.05909981,0.009889793,-0.033081025,0.007898559,-0.017536128,-0.02589931,0.01729718,0.005840951,-0.0022683467,-0.012750532,-0.06122379,-0.00924596,-0.0019414525,0.00057745766,-0.006527927,-0.014111207,0.022341639,0.011794739,0.01444308,0.0269082,0.010082278,0.014907701,0.023868252,-0.026762176,-0.030558795,0.005233625,-0.0035311205,0.04200175,0.022487663,-0.029629553,-0.025461238,0.0019746397,0.030691544,-0.020430055,0.0114164045,0.037727237,-0.03945297,-0.02169117,0.061383087,-0.002163807,-0.010168565,0.023576204,-0.032868627,-0.027744519,0.03488641,-0.014177581,0.03151459,0.020045083,0.008316718,-0.0356829,-0.008150782,0.03817858,0.014005008,-0.013726235,-0.016686536,-0.0034879772,0.015080274,-0.042612396,-0.012146523,0.006010206,-0.021292923,0.010440701,0.016115716,-0.02698785,0.015730744,0.015916592,-0.0050510955,-0.007885284,-0.042771693,0.0024110517,-0.018173324,-0.017549403,0.01677946,-0.017668877,-0.010082278,-0.034063365,-0.031222539,0.032045584,0.01023494,0.0090070125,-0.021266373,0.056763425,0.0018916717,0.0075268624,0.033240322,-0.020244205,-0.048320595,-0.043939885,-0.010825672,-0.034780208,0.0036140885,0.012305822,-0.0058475886,0.0051805256,0.0028292108,0.0088477135,-0.011057983,-0.042240698,0.026244456,-0.02101415,-0.00034452486,-0.01683256,-0.0178149,0.05142692,-0.014602378,-0.029364055,-0.031726986,-0.048825044,-0.027771069,0.027399372,-0.003270601,-0.02153187,-0.02747902,-0.020854851,-0.010606636,0.006577708,-0.009378709,0.05240926,0.03847063,0.002085817,0.01628829,0.011615528,0.023775326,-0.03504571,0.013766061,0.058250215,-0.036665246,0.054480147,-0.015213023,-0.03942642,0.034089915,-0.02202304,-0.031355288,0.00032233092,0.0059438315,-0.02413375,0.021903567,0.025647085,-0.0072879144,0.0013009391,0.01981941,-0.03249693,0.039957415,0.020549528,0.08294151,0.03730244,-0.0057082023,-0.023045208,-0.0017439886,0.002563713,0.01859812,-0.006620851,-0.008529116,-0.006730369,0.0030299935,-0.045054976,-0.018664494,0.009942892,-0.019593736,0.017987475,-0.007613149,0.023111582,-0.04293099,0.021266373,-0.005804445,0.0002729649,-0.023708953,-0.012657607,0.012929742,0.018478645,0.013341264,-0.009146399,-0.051028673,-0.023204507,-0.01805385,0.008157419,-0.04075391,-0.0039393236,-0.055754535,-0.0033801186,-0.008821164,0.018014025,0.000023399585,0.0055721346,-0.008794614,-0.020708827,-0.0052933623,0.002293237,-0.0015266122,-0.021545146,0.003335316,0.010892047,0.0146820275,0.008814527,0.01742993,0.005233625,0.03847063,-0.021027425,-0.008403005,0.0014096273,0.029470254,-0.013341264,-0.0021156855,0.004125172,0.00361077,-0.003151127,0.02581966,-0.030532245,0.010639824,-0.016407764,-0.016301565,0.0024525358,0.023562929,-0.012458484,0.0010902003,0.008403005,-0.024890417,0.006557795,-0.015956417,0.006766875,0.01851847,-0.018770693,-0.031726986,-0.038231682,0.00935216,-0.018106949,0.02337708,-0.011529242,-0.014628928,0.021730993,0.004470319,-0.006478146,-0.0076396987,-0.0018369128,0.029125107,0.018876892,0.0052568563,0.009226048,0.008854351,-0.050072882,-0.015969692,0.037913084,0.021253098,0.01742993,-0.018558295,-0.0142174065,-0.0012777081,0.007925109,-0.04075391,-0.034275763,-0.03488641,-0.0135934865,0.007579962,0.010679648,-0.021213273,-0.038603377,-0.0021488727,-0.007407388,0.010892047,-0.008369817,0.058197115,0.0018020662,-0.0062325606,-0.030505696,0.033319972,-0.008734877,-0.019500813,0.024067374,0.018425547,0.020403504,-0.068657726,0.016195364,0.007268002,-0.023841701,-0.019474262,-0.013082404,-0.008190607,0.030293297,-0.0037800248,-0.017416654,0.027717968,-0.0049283025,-0.015213023,0.001984596,0.02862066,-0.015996242,0.031195989,0.026164807,-0.020111457,0.011496054,-0.020138007,-0.022925735,0.011914213,0.038258232,0.008867626,-0.0062956163,-0.015385597,0.015969692,0.03953262,-0.01160889,0.017031683,0.0008877582,0.0149608,-0.022408012,0.004938259,-0.0064350027,0.0029154976,0.015637819,0.02161152,-0.019991983,-0.023071757,0.0072879144,-0.01995216,0.032921724,-0.029364055,0.026855102,0.010613274,0.010965059,-0.020974325,0.008037945,-0.0030864119,-0.036479395,-0.0015813712,-0.03146149,0.0035908576,0.021903567,0.035550155,0.0065544765,-0.008323356,-0.03602805,-0.023177957,-0.0024110517,-0.0020742014,-0.008867626,0.01628829,-0.064622164,0.03485986,-0.01870432,-0.011721727,0.0047225417,-0.01119737,0.016766185,0.050922476,0.022792986,0.00867514,0.02239474,-0.03990432,0.0018966498,0.023204507,0.038603377,0.008203882,0.028434813,0.021704445,-0.02033713,-0.0041882275,-0.011124358,0.011031433,0.015929867,-0.020655727,-0.013261614,-0.0006035926,-0.017549403,0.0012536474,0.010354414,0.0022318407,0.017721977,0.045984216,-0.0008993737,-0.015425421,-0.015850218,0.0072480896,0.0066739507,-0.020602629,-0.007719348,-0.026403755,0.029390605,0.00017786278,0.026523229,0.0014610675,0.019779585,-0.028355163,0.0039127734,-0.029788852,0.0033436127,-0.0034879772,-0.021903567,-0.015359047,0.008860989,0.011655353,-0.007467125,0.008894176,-0.0012221194,-0.009073387,0.017044958,-0.02335053,0.019129116,-0.004048841,-0.023562929,0.003936005,0.01433688,-0.027186973,-0.00927251,-0.018080398,-0.024956793,0.0066075763,0.014297056,0.002021102,-0.018160049,-0.027983466,-0.004065435,0.006355353,-0.0034083277,-0.03390407,0.0077392603,0.037753783,0.00019839736,0.02335053,0.0013814182,-0.012996117,-0.023523103,0.0017639009,-0.056975823,-0.055807635,-0.009617657,-0.022062866,0.023204507,-0.0077259857,0.0029669378,-0.020576078,0.047205508,-0.018810518,0.06876393,-0.002940388,0.0012719004,-0.07009142,-0.027717968,-0.050019782,0.022248715,0.0044869124,0.0108654965,-0.029257856,0.028753411,-0.0016286629,-0.028912708,-0.028195865,0.04545322,0.023708953,-0.0034050092,0.0027412646,-0.01285673,0.017881276,0.02443907,-0.008814527,0.023297431,0.043913335,-0.015757294,0.049409136,0.024731118,-0.037674136,-0.00053182524,-0.008582216,0.0600556,-0.021903567,0.012485033,-0.030133998,-0.0027263304,0.011157544,0.0135934865,-0.044736378,-0.0108654965,0.061967183,0.0238948,0.004267877,-0.0044039446,0.026682528,-0.017257355,0.0069958665,-0.0027412646,-0.026032059,0.03608115,0.02574001,-0.0075733243,-0.019261865,0.0036705069,-0.038019285,0.000776581,-0.04919674,-0.024399247,0.00025077094,0.02218234,-0.0100225415,-0.0022351595,0.036930744,0.011967313,-0.03124909,0.013845709,-0.026005508,-0.014748402,-0.029310955,0.017310455,0.010367689,-0.016527237,0.012670882,0.010566812,0.023987725,-0.02766487,-0.004563243,-0.0040953034,0.015159924,0.02046988,0.003547714,0.040727362,0.009153036,-0.019806135,0.018266248,-0.03241728,0.02090795,0.0074936748,-0.036559045,0.022620412,0.017761802,0.029284406,0.004490231,-0.029523354,0.06313537,-0.026695803,0.010898684,0.0042612394,0.010679648,0.018186599,0.0016062616,-0.0018203192,0.006823293,-0.015252848,0.028541012,0.01659361,-0.023616027,0.013938634,-0.022766436,-0.023775326,0.036187347,0.0011955698,0.008960551,0.015730744,0.02451872,0.007022416,0.036638696,0.017881276,-0.024412522,-0.0025487787,-0.034143016,0.031036692,-0.0106464615,-0.027186973,-0.017575953,-0.016394489,0.008900813,0.00690958,-0.020005258,0.009717219,0.008522479,-0.004712586,0.015000625,-0.053285405,0.012352284,0.0060135247,-0.019354789,0.018783968,0.009179586,-0.022593861,0.008270256,0.02457182,-0.042426545,-0.0033933935,-0.030824292,0.012186348,0.029603003,-0.0047988724,-0.00405216,-0.00081599085,0.0015929868,-0.047019657,0.024996616,0.004543331,0.008403005,0.025368314,-0.02335053,-0.038975075,-0.0045134625,0.042877894,0.00719499,-0.024346147,-0.022660237,-0.0076927985,-0.027505571,0.018106949,0.015186474,0.021385847,0.014323605,0.0013274889,0.057825416,-0.044523977,-0.037992734,-0.041125607,0.0028657168,0.018160049,-0.012790356,0.03504571,-0.018186599,-0.008110957,-0.027399372,0.0080047585,0.0041550403,0.00810432,0.012485033,-0.0025670317,0.016474137,-0.01740338,0.0021306197,-0.013420913,0.085437186,-0.021465495,0.00030635955,0.021399122,-0.0064947396,0.006823293,-0.012378834,0.023124857,-0.005582091,0.031036692,0.0142174065,0.010872134,0.0074604875,-0.015239573,0.026549779,-0.018239697,0.016248465,0.014708578,0.030957041,-0.012173073,-0.022567311,-0.007135253,0.0037136502,0.02101415,-0.033850968,-0.02763832,0.0033419533,0.020921225,0.0038065745,0.0091663115,-0.009604382,0.011602254,-0.021107074,0.018797243,0.013016029,-0.01433688,-0.014881151,-0.0478427,0.011642078,0.030479146,0.012106699,0.022341639,-0.020549528,0.0068100183,-0.018850343,-0.013447463,0.037647586,-0.008748152,0.002293237,-0.008695052,-0.010294677,-0.004005698,-0.01353375,-0.021332746,0.05166587,-0.020815026,0.01612899,0.036187347,-0.009690669,-0.014628928,-0.005021227,-0.024040824,0.015863493,0.028169315,0.042134497,0.06881703,-0.0041185343,0.018531745,0.027771069,0.047391355,-0.0027313086,-0.012538133,-0.0060135247,0.0040455223,-0.016367938,-0.02223544,-0.010122103,-0.01675291,-0.031912833,0.010500438,-0.011436317,-0.012226173,-0.010460612,0.034408513,-0.05734752,0.009524733,0.024306322,0.018691044,-0.01924859,-0.05158622,0.03945297,-0.039160922,-0.015252848,0.00004355823,-0.0027263304,0.026828552,0.013474013,-0.0012353944,-0.045293923,-0.0023529741,0.006391859,0.015956417,0.03485986,0.007394113,-0.018996367,-0.0117350025,-0.000111799454,0.01696531,-0.020761928,0.015425421,-0.027399372,-0.033797868,-0.0015133374,-0.013002754,-0.023191232,-0.017204257,0.025939133,0.008768064,-0.016009517,0.02145222,0.026377205,0.042824794,0.010984971,-0.0073808385,0.0069162175,0.012179711,0.026151532,0.010268127,-0.009411897,0.028408263,0.002329743,0.009803506,0.011124358,0.009763681,0.05275441,-0.0043939883,0.0007566687,-0.024253223,0.0015365684,-0.0015017218,0.03839098,-0.0072348146,-0.0035875388,0.0038795865,-0.045161173,0.026483404,0.016434314,-0.024863867,-0.022806259,-0.0051307445,-0.018186599,-0.033293422,-0.006620851,-0.013991733,-0.016872384,-0.030611895,0.018837068,-0.003936005,0.008482655,-0.024545271,-0.003789981,-0.018372446,-0.01436343,0.029045457,-0.008794614,-0.003916092,-0.010507075,0.013069129,-0.026470128,-0.029072007,-0.01737683,0.0029536628,0.01612899,0.0078056348,0.0056584217,-0.0101818405,0.009119849,-0.0029055413,-0.025434688,-0.031222539,-0.0065544765,-0.027771069,0.023363804,0.03350582,0.023098307,0.0011184094,-0.011814651,-0.0032473698,-0.009405259,-0.037727237,-0.0076529738,-0.015916592,-0.048479896,-0.034381963,0.0013905447,0.005472573,-0.011602254,0.043754034,0.021704445,0.017721977,-0.01057345,0.011509329,0.025102815,0.010580087,0.037594486,0.005628553,-0.0039260485,-0.028063117,0.035762552,-0.000067515255,0.027372822,0.022620412,0.005880776,-0.022633687,0.025567437,-0.009737131,0.038736127,0.01696531,0.01441653,0.010712836,-0.024970066,-0.0011955698,0.037939634,-0.011177457,0.00045383527,0.020403504,-0.0063653095,-0.0018667813,-0.0037335625,-0.021465495,0.01057345,0.03493951,-0.00054219627,-0.008283531,-0.024054099,-0.034116466,-0.02345673,-0.024757668,-0.032815527,0.009790231,-0.018067123,0.019699935,0.0032838758,-0.009259235,-0.029231306,-0.0069361296,-0.021903567,0.012710706,-0.041869,-0.00023936285,-0.010673011,0.040196363,-0.010799122,0.010049091,-0.0110247955,0.003932686,0.023934625,0.011330118,-0.008117595,-0.018412272,0.014907701,0.018292798,0.008655228,0.0010528647,0.014615653,-0.018969817,-0.014814776,0.0063155284,0.020854851,-0.04091321,0.020045083,0.029735751,-0.03010745,0.0068432055,0.016248465,0.0060898555,0.0017954288,0.014151032,0.041523855,-0.011522604,-0.022713335,0.026855102,0.010440701,0.012723981,0.0041550403,0.021983217,0.019686662,-0.014124482,-0.016221914,0.003225798,-0.011369943,-0.03345272,0.011018158,-0.030293297,0.03608115,0.022315089,-0.020735377,-0.009159674,0.013965184,-0.015637819,0.022846084,0.02688165,0.026709078,-0.024505446,0.0029619597,0.016606886,-0.023177957,-0.012617783,-0.0054327482,0.010812397,-0.021890292,0.015890043,-0.026085157,0.032788977,0.031302188,0.022686785,0.0011839542,0.0073078265,0.02516919,0.004301064,0.011077895,-0.0005911474,0.018067123,-0.01981941,0.02467802,-0.0040787095,0.017443204,-0.000916797,0.057984717,0.008097682,-0.02761177,0.0034149652,0.00017889988,-0.009750406,-0.000092509385,0.0016966967,-0.0051340633,0.008456104,0.0016834219,-0.016912209,-0.02587276,0.017549403,-0.021053974,-0.027054224,-0.013686411,0.00042272225,-0.021850469,0.015093549,-0.006405134,-0.06966662,0.015876768,0.026974576,0.0059006885,-0.02579311,-0.009763681,0.02755867,-0.010035817,-0.018823793,0.029018909,-0.028010016,-0.020602629,-0.042214148,0.010473887,0.007374201,0.012870005,0.0021206636,-0.009922979,-0.015996242,0.02644358,0.03706349,-0.0075135874,0.022036316,0.00690958,0.0032606446,-0.0075733243,0.008037945,-0.021571696,-0.016620161,0.025673635,0.0014560894,-0.00067909353,-0.010241577,-0.023310706,0.015239573,0.016991857,0.0027827485,-0.037806883,-0.0037136502,0.0048221033]},{"id":"interface-GatewaySessionsReplaceDispatchData","type":"interface","source":"main","text":"Interface: GatewaySessionsReplaceDispatchData\nDescription: SESSIONS_REPLACE — user's active sessions list replaced\nProperties: sessions: Record[]","meta":{"url":"/docs/typedefs/GatewaySessionsReplaceDispatchData"},"embedding":[-0.00077504927,0.012871228,-0.003691383,-0.017399995,0.026645701,0.005460236,-0.011202736,0.023685068,0.01280223,-0.027674396,-0.004070871,-0.013674112,-0.012193795,0.026118807,0.02017245,-0.004616581,0.0066990606,0.04036999,-0.01885522,0.041348506,-0.027448585,-0.007903386,0.02647007,-0.0025341015,-0.036380664,-0.0070064142,0.011058467,0.003904649,0.02641989,-0.041549228,0.04849919,-0.012921409,0.04604036,0.009753781,0.028176198,-0.021301506,-0.026093718,0.05770726,-0.049603153,0.007156955,-0.022744188,-0.025968269,0.000026756254,0.009157891,-0.027122414,0.029807055,-0.0008616886,-0.023158174,0.02344671,-0.013322851,-0.012469786,-0.023722703,-0.020322992,0.031488094,0.045262564,0.013674112,0.02647007,-0.017600715,0.014652627,-0.0070942296,-0.006849601,0.007752845,0.019357022,0.01654693,-0.0044252686,0.020874975,-0.024801577,0.064431414,0.013812108,0.0040928246,-0.026168989,-0.01044376,-0.055549514,0.0014756123,-0.015631141,0.01049394,-0.0130844945,0.008762722,0.01314722,-0.03801152,0.036104675,-0.00605299,-0.042954274,-0.0093397945,-0.014037918,0.015794227,-0.032692418,-0.02852746,0.03377129,0.03339494,0.056252036,0.04388261,-0.015242244,0.01329776,-0.022543468,-0.04144887,0.028251467,-0.020849884,-0.03259206,0.054846987,0.045563646,-0.07145664,-0.03914058,-0.020072091,0.030007776,-0.029681604,-0.004854937,-0.018529048,-0.058008343,0.00020973767,-0.011760991,-0.028075837,0.004487994,-0.0421263,-0.016208213,-0.023647431,-0.025717366,-0.03098629,0.013021769,-0.0013595705,-0.021238782,0.03259206,0.005281469,-0.015932223,-0.022505833,-0.02532847,0.038939856,-0.0063227084,-0.04222666,-0.036556296,0.06287582,-0.003967374,0.012933954,-0.029781966,-0.01672256,0.008493003,-0.020360628,0.017525444,0.008148015,-0.011748446,-0.010098771,-0.008148015,-0.015919678,0.021000424,-0.06583646,0.0079535665,0.0197961,0.075671785,0.038613684,0.03316913,-0.018290693,0.016434025,-0.009584423,0.070954844,-0.01900576,-0.02532847,-0.0140128285,-0.012174978,-0.009509153,-0.010926745,-0.030007776,-0.014088099,0.001982119,-0.012714415,-0.075621605,-0.010029773,0.01101456,-0.0015634277,-0.05585059,-0.008467914,0.001828442,-0.0649834,-0.024274684,0.038613684,-0.04624108,0.014088099,-0.023459256,-0.013787017,-0.028226377,-0.00061784405,0.015994947,0.025943177,-0.01530497,-0.022731643,-0.018265603,-0.009753781,0.0032742599,0.029606335,0.0004096745,0.0052250163,0.02212948,0.027298044,0.0014183755,0.035828684,0.013699202,-0.04869991,-0.0026877783,-0.026821332,0.023346351,-0.008536912,-0.0063446625,-0.029857235,-0.024475405,-0.0006076512,0.0014983502,0.017098913,0.035075977,0.03487526,-0.033696022,0.02210439,0.039190758,0.04144887,0.0127520505,-0.01654693,-0.011020833,0.04265319,0.013812108,0.025642097,0.0028226378,0.036179945,-0.0003061778,-0.034724716,0.008154287,-0.009960775,0.040570714,0.015141884,-0.0456891,0.00843655,-0.06448159,-0.041549228,-0.05720546,0.012444696,-0.013787017,-0.030484488,-0.009722419,0.014953707,-0.0209377,-0.043255355,0.021314051,0.018328328,-0.0044064512,-0.028025657,-0.011717083,0.02014736,0.033821475,0.026896602,-0.0062411656,-0.04458513,-0.02875327,0.010581755,-0.021489682,0.052237615,0.03562796,-0.013536116,-0.006554792,0.023183266,0.014050463,0.006887236,0.008373826,0.06302637,0.07803025,-0.047771577,0.028552549,0.029004171,-0.054545905,-0.008536912,0.038814407,0.03487526,-0.003109606,-0.016208213,0.006504612,0.03103647,0.035954133,0.01649675,-0.013548661,-0.022618737,0.047018874,0.008982261,-0.0031503774,0.010243039,-0.021966394,-0.0046918513,0.017048731,0.008116651,-0.026620612,0.047269773,0.001412887,0.047445405,0.0008036677,0.033972014,-0.038588595,0.011403456,0.04375716,-0.024864303,-0.037384268,0.04857446,-0.029405612,-0.008994806,0.025039934,0.021765674,0.031914625,0.0130844945,-0.030183407,0.017550534,0.045889817,0.0097726,0.004036372,-0.004688715,0.053943746,-0.03118701,-0.032165527,-0.004716941,-0.034398545,0.030534668,-0.012883773,-0.0469436,0.06563574,-0.013761927,0.032391336,-0.02332126,0.004164959,0.0015869497,-0.008499276,-0.01974592,0.022430561,-0.011328186,-0.005874223,-0.009258252,0.0041586864,0.032190617,-0.029907415,-0.01895558,-0.0220793,-0.000332248,0.006150214,-0.0051622908,-0.05344194,0.021439502,0.028979082,-0.004914526,0.005447691,-0.01880504,-0.029154712,-0.043430988,0.043531347,-0.029104533,-0.04036999,0.003242897,-0.00813547,0.004880027,0.011321913,-0.01877995,-0.031688813,-0.029505974,0.0006958586,-0.050079867,0.043456078,-0.036355574,-0.026269348,0.043104816,-0.029756876,0.033846565,-0.0073764934,-0.024600856,0.028251467,0.017061278,-0.035050888,0.03479999,0.013485936,-0.004735759,-0.015919678,-0.04629126,-0.019306842,-0.003418528,-0.012256521,-0.018767405,-0.0049270713,-0.014201004,-0.0064983396,0.0058083613,-0.01786416,0.0050431127,-0.013987739,0.010437488,0.01054412,0.006824511,-0.0674924,0.031713903,-0.056402575,-0.027674396,0.029631425,0.013097039,0.019495018,-0.038212243,0.02652025,-0.020511167,0.020724434,0.029807055,-0.021263871,-0.0145397205,0.016158033,0.036807198,0.040269632,-0.024914483,-0.042377204,0.052388158,0.013410666,0.017312178,0.062173303,-0.008725087,0.04190049,0.015204608,0.038964946,0.056352396,0.035502512,-0.016383843,0.019658104,0.00030343357,0.008536912,0.052036896,-0.005281469,-0.0062443023,-0.022004029,0.032290976,0.05549933,0.01560605,0.011397184,-0.006005946,0.029204892,-0.055900775,-0.040470354,0.05529861,0.06583646,-0.02634462,0.059162486,0.011516362,-0.006887236,-0.012269066,-0.032115344,-0.0329935,-0.018014701,0.001958597,-0.006423069,0.0220793,-0.06684006,-0.029204892,0.027398404,-0.031738993,0.057907984,0.025315925,-0.023609797,0.015229699,-0.010876564,0.056151673,-0.026018448,-0.017550534,-0.01431391,0.010550393,0.018441234,-0.029681604,-0.009527971,0.009314705,-0.028126018,0.037760623,0.043556437,0.028100926,0.046717793,0.0012670507,0.0060812165,0.014476996,0.011691993,0.02192876,0.05765708,0.020586438,-0.022894729,0.0028163653,-0.013410666,0.037835892,0.036054492,-0.01570641,-0.008681179,0.03771044,-0.012218885,-0.004384497,0.049879145,0.0758725,-0.0070126867,-0.018917946,0.012808503,0.014677716,0.023358896,0.008649817,0.05078239,-0.013774472,0.026871512,0.022443106,0.01629603,-0.081291966,0.0029967004,0.002791275,0.027022053,-0.03098629,-0.0003902689,0.0026485752,0.04629126,0.008875628,-0.065284476,0.031136831,-0.049578063,-0.035828684,0.022380382,0.03570323,-0.04892572,-0.05504771,-0.037033007,0.02636971,-0.015969858,-0.02309545,-0.0077967527,0.038714044,-0.015292425,0.004168095,-0.009885505,-0.032341156,0.009308432,-0.016572021,0.0034498905,-0.072058804,0.02634462,-0.00942761,0.031538274,0.0047420315,0.0012623464,0.052337978,0.00028638012,-0.00057040807,0.0018645091,0.027674396,0.020297902,0.05123401,-0.0087439045,0.0028696817,0.005250106,0.036029402,0.026018448,-0.018227968,0.067241505,0.022292566,0.0048392555,0.038638774,0.025541736,-0.004321772,0.017299633,-0.010631936,0.016760197,0.016810376,0.04036999,-0.024475405,0.006987597,0.008380098,0.00010143855,-0.024249595,0.00011084734,-0.036129765,-0.000415555,0.04634144,0.003158218,0.014514631,0.017625805,-0.03106156,-0.01855414,0.023233445,-0.0053975107,0.09273306,0.010117589,-0.008449096,-0.00232554,-0.0018895991,-0.022392927,-0.014702806,-0.02091261,-0.081291966,-0.022681464,0.075621605,-0.056753837,-0.015468055,-0.0012694029,-0.00947779,-0.014740442,-0.012614055,0.0037729258,0.0038952401,0.018052338,-0.003060994,0.051936537,0.011290551,0.024299774,-0.015141884,-0.025792636,-0.0033401214,0.006868419,-0.0070064142,-0.043531347,-0.01895558,0.033896744,0.04887554,0.007470581,0.003453027,0.018315783,0.0025215563,0.01267678,0.051635455,-0.0036349301,-0.018453779,-0.0061282604,-0.014301365,-0.017199272,0.0071444097,-0.044760764,-0.017023642,-0.009490335,-0.011579087,-0.028226377,0.042879004,0.018140152,0.07170755,-0.027323134,0.01992155,-0.0065987,-0.008562001,-0.006125124,-0.02636971,-0.0029731784,0.012908864,-0.022618737,0.013498481,0.010261857,0.005504144,0.011842534,-0.013511026,0.031287372,-0.029531064,0.03377129,-0.008618454,0.06613754,0.009622059,0.011002014,0.008204468,0.0013925013,0.021201147,-0.03768535,-0.02230511,0.05035586,-0.013623931,0.045864727,-0.017261999,-0.0011784512,0.03495053,0.0015571552,-0.017939432,-0.0052093347,0.025817728,0.010644481,-0.041323416,0.00032264317,-0.013322851,0.012563874,-0.0038387873,-0.033997104,0.0109894695,-0.036606476,-0.0011643381,0.10598064,-0.001969574,0.01974592,0.0066739703,-0.009239434,-0.005237561,0.015631141,0.008668634,0.034097463,0.026971873,-0.020009365,-0.014251185,0.039266028,-0.0003832123,0.033846565,-0.01974592,-0.0055731414,0.013423211,0.0019883916,0.047119234,0.019331932,-0.040545624,-0.0017782619,-0.0062599834,0.02882854,0.009728692,0.016383843,-0.03490035,-0.025767546,0.023258535,-0.00061196357,0.006021627,-0.0206868,0.013122129,-0.0019115531,-0.020799704,-0.021627678,-0.031262282,-0.019909006,-0.014163369,-0.045362927,0.025642097,0.008580819,0.027900206,-0.047043964,0.031613544,0.03309386,-0.03713337,0.024563221,0.021452047,-0.0084804585,-0.008725087,0.014050463,0.003050017,0.029531064,0.00076603255,-0.032441515,-0.0029277026,0.00017112242,0.011936622,0.020072091,0.0312121,-0.011760991,-0.00035224168,-0.009208072,-0.0075082164,-0.00023247559,-0.007803025,0.014552266,-0.026846422,0.03555269,-0.015580961,0.019018305,0.07050322,-0.0022581103,0.016233303,-0.06608736,-0.012519967,-0.027448585,0.008668634,-0.017939432,0.015242244,0.011027105,0.0013344805,0.008411461,-0.03520143,0.009854143,0.012501149,0.02433741,0.014803167,0.023434166,0.06011591,-0.011792353,0.019143756,-0.047395226,-0.023509437,0.009822779,0.04197576,-0.015568416,-0.008580819,-0.0023318124,0.0082170125,0.016935827,-0.016860556,0.04639162,-0.019783555,-0.03495053,0.017023642,-0.001210598,-0.014890983,0.015957313,-0.040997244,0.0059651746,0.009396248,0.008630999,-0.034549087,0.003810561,-0.0080225635,0.029932506,-0.012808503,0.021702949,-0.010776204,0.0097976895,-0.0025983949,0.045137115,-0.102869466,0.034398545,0.038262423,-0.065987,0.04403315,0.002991996,0.041072518,0.013435756,0.021025516,-0.08304828,0.022643827,-0.029731784,0.009082621,-0.023797972,0.0021295233,-0.029430704,0.01441427,0.034147646,0.022832004,0.0008961875,-0.020097181,0.008524366,-0.015066613,-0.0051089744,0.017036187,0.016785286,-0.004437814,0.008041382,0.015844407,-0.017487809,0.03281787,-0.009001078,-0.06282564,0.017149093,0.026996963,-0.0026078038,-0.0017829662,0.032767687,0.01103965,0.002469808,0.023697613,0.010613118,0.048198108,0.045086935,-0.0072698602,0.012670508,0.0051936535,0.006517157,-0.03989328,0.0057048644,-0.025278289,-0.025918087,0.021276416,-0.019143756,-0.0010851474,0.0026626883,0.007131865,0.035903953,-0.017889252,-0.026796242,0.027749665,0.032140434,0.017312178,0.008016291,0.028075837,-0.014251185,-0.014226095,-0.027373314,0.011441092,0.01540533,0.018503958,0.013184855,0.008825447,-0.016383843,0.0063477987,0.0418754,0.007683847,0.006040445,0.00576759,0.051585272,0.036656655,-0.0062725283,0.008060199,-0.032441515,0.027774757,0.01220634,0.014727897,0.004434678,0.014376635,0.016659835,0.007878296,-0.0009675375,0.03966747,0.01272696,-0.020260267,-0.0018017838,-0.018002156,0.01280223,-0.02850237,-0.015254789,0.0035565237,0.014614991,-0.0064418865,-0.012507422,-0.032642238,-0.0009683216,0.036029402,0.038287513,-0.0015163837,0.016220758,-0.0038889677,0.018303238,-0.014564811,-0.025792636,-0.03966747,-0.03256697,0.016760197,-0.011127465,-0.018566685,-0.015217154,-0.015417875,-0.0206868,0.020335536,0.009822779,0.008474186,0.054044105,0.013385575,-0.029706694,-0.0031143103,0.053793203,-0.019382114,0.018278148,0.0018378508,0.023308715,-0.010525303,0.020900065,-0.0065987,0.013912468,-0.049979508,0.014514631,0.0050148866,0.009308432,-0.02672097,0.018930491,0.012908864,-0.005319104,-0.027473675,-0.04890063,-0.011528907,-0.030158317,0.00077465724,-0.0066426075,-0.031839356,-0.021916214,0.007570942,0.058409784,-0.033144042,-0.0032554423,0.0016292892,-0.004632262,-0.009032441,-0.0018033519,-0.0074454914,0.021401867,0.01441427,-0.008963443,-0.029430704,0.0123631535,-0.028351828,0.021514773,-0.023797972,0.036054492,0.006018491,0.029229982,0.0006080432,0.0037102005,-0.018817585,-0.03284296,0.034599267,0.0016810376,0.007288678,0.016998552,-0.027448585,-0.02101297,0.037860982,0.0044252686,0.030032866,0.00035518192,0.011478727,-0.013498481,0.014715352,0.041348506,0.027348224,0.028301649,0.0053975107,-0.0070565944,-0.00084130286,-0.020498622,-0.038764227,-0.04378225,0.024939572,0.028075837,0.010437488,-0.0006837056,0.023810517,0.027197683,-0.00610317,0.04651707,-0.021502227,-0.018817585,0.0145397205,0.017048731,-0.016195668,0.003145673,-0.0043154997,0.03495053,-0.0232209,-0.04149905,0.019507563,-0.0022596784,-0.0013956375,0.008800358,-0.019068487,0.04217648,-0.001495214,0.0050995657,-0.05956393,0.0009863551,-0.06197258,0.026244259,0.0034028466,-0.04857446,-0.0140128285,-0.015468055,0.0053441944,0.011284279,0.018152697,0.018767405,-0.010976925,0.03723373,0.014815712,-0.014175914,-0.013260125,-0.029556153,0.025479011,-0.0007338858,-0.01314722,0.011967984,0.008762722,0.017475264,0.022794368,0.013774472,0.007846933,0.0048016207,0.0042559104,-0.009716147,0.008104106,0.011867624,-0.0115038175,-0.0006045149,-0.006837056,0.0072134077,-0.0028696817,-0.00833619,-0.004889436,-0.021364233,0.002101297,-0.002858705,0.00989805,-0.0329935,0.02875327,0.045638915,-0.006021627,0.0032930775,-0.021176055,-0.0003385205,-0.020235177,0.034348365,0.033921834,-0.008593364,0.0037572444,0.0041586864,-0.013724293,-0.021640223,0.029756876,-0.034599267,-0.0011337595,-0.00418064,0.01783907,-0.022091845,0.0038607412,0.020272812,-0.008605909,-0.002124819,-0.036029402,0.011096103,-0.025190474,-0.006705333,0.011196463,-0.029957596,-0.03342003,-0.004434678,0.0038042886,0.017011097,-0.011416002,0.036832288,-0.00041477094,0.018140152,-0.0054665087,0.01324758,0.01778889,-0.020335536,0.03951693,-0.010036046,-0.020322992,0.01560605,0.021288961,-0.01260151,-0.00011858999,0.0042214114,-0.010475122,0.03961729,0.008844265,0.004437814,0.014251185,0.01066957,0.0261439,-0.017023642,0.02098788,-0.004735759,0.045939997,-0.00605299,-0.03118701,0.007771663,0.014577356,0.026018448,-0.012074618,0.03306877,0.0052406974,-0.013812108,-0.062926,-0.015894586,0.00885681,0.005648412,0.0130844945,-0.02654534,-0.03286805,-0.038262423,0.009139074,-0.0052595153,0.06689024,0.001281948,0.030710299,0.025140295,-0.02284455,0.037835892,-0.028376918,-0.00019297826,-0.020900065,-0.014025373,-0.0073325858,0.01049394,0.0027457993,-0.0058804955,-0.022957454,0.01984628,-0.002421196,-0.01627094,-0.0008483595,-0.040094003,0.015919678,-0.004356271,0.009653421,-0.04225175,0.027172593,-0.012450969,0.03309386,-0.029004171,-0.000030309053,-0.01327267,0.020360628,0.0029888598,0.0047075325,-0.023685068,-0.027774757,0.002457263,-0.016572021,0.003785471,0.01837851,-0.019457383,-0.0077277552,-0.01977101,0.019131212,-0.010625663,-0.018152697,-0.012971588,-0.01540533,-0.029781966,-0.020009365,-0.027649306,-0.012243976,0.020047002,-0.008988533,-0.022969998,-0.041574318,-0.003086084,0.021602588,-0.035979223,-0.0020636618,-0.026219169,-0.029957596,0.039341297,-0.004723214,-0.019256663,0.020373173,-0.0030876521,-0.02187858,-0.011723355,0.007370221,0.007897113,-0.020498622,-0.0012074617,-0.02443777,0.0029041807,0.027047142,0.015028978,0.0037917434,-0.052388158,0.034473818,0.03058485,0.027925296,-0.00076250423,-0.012256521,0.0051936535,-0.011278006,0.045086935,0.0057424996,0.038839497,-0.02116351,-0.016910737,0.052538697,0.011924077,-0.0006570474,-0.0027097324,0.008762722,-0.0018409871,-0.034624357,0.00029186858,-0.018240513,-0.006529702,0.012287883,0.025391195,0.014589901,0.017851615,0.041223057,0.045312744,0.011033378,0.03291823,-0.0067617856,-0.022593647,-0.047294863,-0.016634746,0.0038858315,0.025253199,-0.0060812165,-0.0461909,0.0038889677,-0.0054100556,-0.034172736,0.034097463,0.00636348,-0.005184245,-0.012043254,0.005400647,-0.012256521,-0.018817585,0.011666903,0.017500354,-0.006742968,0.034323275,-0.0223302,-0.0033777566,0.01786416,0.0010992606,0.014113189,-0.006849601,0.0018268739,0.029932506,-0.00012260833,0.011861351,-0.006354071,0.017199272,-0.05314086,-0.00050964294,0.0014936458,0.011416002,0.025090113,-0.022480741,0.01101456,-0.050983112,0.0053912383,0.014476996,-0.015141884,-0.032366246,0.054796807,-0.01999682,0.018968126,-0.04202594,0.015066613,0.027624216,-0.0119742565,-0.022969998,-0.012243976,-0.006291346,0.017939432,0.018529048,-0.025290834,-0.0029041807,0.0012450969,-0.032014985,-0.009320977,0.0061627594,-0.0039705103,0.012438424,0.025090113,-0.015806772,0.0016026311,-0.016484205,-0.00992314,-0.008047654,-0.014840802,0.0033150313,-0.0011196464,0.02872818,-0.007890841,0.02885363,-0.020925155,-0.0038481962,0.010111316,-0.004949025,0.01210598,-0.013322851,0.0019162574,-0.01972083,-0.017186727,0.005400647,-0.038187154,0.005504144,-0.01743763,0.0009165732,-0.03377129,-0.005958902,0.00010614294,0.00038497642,0.041674677,-0.031086652,-0.03329458,-0.0010749545,0.0050744754,-0.0074580363,0.011177646,0.031312462,-0.008148015,-0.007451764,0.02091261,0.023133084,0.04927698,0.027072232,-0.03537706,0.011917804,-0.0095342435,-0.0026328939,0.00014368011,-0.01441427,-0.0035282972,0.013987739,0.013874833,-0.01994664,0.0017939431,-0.005105838,0.053391762,0.03256697,-0.0049207984,-0.049502794,-0.0010271266,0.013749382,0.0048612095,0.027624216,-0.036380664,-0.02428723,0.01054412,-0.019068487,-0.010663298,-0.004487994,-0.0038513325,0.026695881,0.014514631,0.024801577,-0.040420175,0.04383243,-0.025127748,0.014752987,0.031161921,-0.0015579392,0.0071444097,0.015442965,0.021602588,0.020561349,0.0008405188,0.0054915985,0.018064883,0.012708142,0.0028069564,0.002730118,0.011002014,-0.020624073,-0.030660119,0.0006476386,-0.027975477,0.017801436,-0.025441375,-0.0044597676,-0.0036255214,0.019758465,0.008656089,0.0043499987,-0.00628821,0.01654693,-0.0034718446,-0.01837851,-0.018930491,0.003725882,0.013523571,-0.024776487,0.026670791,0.023622341,-0.009176709,0.0029245664,0.040821616,0.007972384,0.01260151,0.0010020364,-0.016684925,-0.020122271,0.0027614806,-0.0017578761,-0.01538024,-0.029907415,0.014100644,-0.0016120397,-0.018641954,-0.0025027387,0.038438056,-0.022480741,-0.009346067,0.0041492777,-0.033896744,-0.016132943,-0.012068344,0.027548945,0.012689325,0.021314051,0.0031064698,0.008900718,0.020034457,0.021966394,0.011384639,0.0050148866,0.01158536,0.003075107,0.024952117,0.020511167,-0.0046949876,0.02185349,0.044384412,0.019620469,0.013975194,0.03294332,0.009113984,0.015957313,0.014803167,0.014351545,-0.03336985,0.0077779354,-0.023697613,0.010236766,-0.022179661,0.01803979,-0.015656231,-0.0008020996,-0.024651038,0.0024039466,-0.02882854,-0.003192717,-0.0059181307,0.007539579,-0.010920472,0.022204751,-0.0004190833,-0.04139869,-0.0068621463,-0.0078281155,-0.014803167,0.0048267106,0.025968269,0.014288819,0.017989611,-0.009333522,-0.0012772436,-0.016434025,0.0045130844,-0.032717507,0.014765532,0.0013266398,-0.015580961,0.02309545,-0.0015516668,-0.03118701,-0.022556012,0.008524366,0.010042318,0.017989611,-0.014213549,0.0045632645,0.010362217,0.006423069,-0.0050148866,0.006056126,-0.013310306,-0.01560605,0.025102658,0.011886441,0.029405612,0.0034718446,-0.0166222,-0.005933812,-0.028000567,-0.0032930775,-0.006037309]},{"id":"interface-GatewayTypingStartDispatchData","type":"interface","source":"main","text":"Interface: GatewayTypingStartDispatchData\nDescription: TYPING_START — channel_id, user_id, timestamp, guild_id?, member?\nProperties: channel_id: string, guild_id: string, member: APIGuildMember & { guild_id?: Snowflake; }, timestamp: number, user_id: string","meta":{"url":"/docs/typedefs/GatewayTypingStartDispatchData"},"embedding":[0.0034725394,0.015079009,0.014812125,0.010080979,0.0030737282,0.008734423,-0.0043672114,0.026276054,0.018548517,-0.006963276,0.004273195,0.031152774,0.016110158,0.017153434,0.021278024,-0.020404581,-0.073369145,0.033724576,-0.008916389,0.056337025,-0.011651962,0.018718353,0.008461472,0.048476044,-0.03823736,0.026737038,-0.001655901,0.021047533,0.015030486,-0.014059993,0.039499,-0.031468183,0.055269483,-0.022272777,0.013307863,0.0238013,0.018888189,-0.003436146,-0.010590487,-0.032341626,-0.050611123,-0.0030706953,0.014751469,0.0065690135,-0.026081955,-0.001590696,-0.014314747,-0.0008946717,-0.015006223,-0.0010978683,-0.0005042006,-0.018973107,-0.018960975,0.108500935,0.037897687,-0.019773763,-0.0042428668,0.0064962264,-0.034379657,0.016316386,-0.029794086,-0.004946473,-0.008497865,0.02295212,0.026882611,-0.009322783,-0.057938334,0.05405637,0.02112032,0.032462936,0.0075395047,-0.015843272,-0.017044256,0.0055136043,-0.022927858,0.018330155,-0.07278685,-0.023655728,0.04258031,-0.020137696,0.027222283,0.053910796,-0.06468325,-0.03493769,0.012416224,-0.011172782,-0.000772223,0.00014908037,0.004157949,-0.017905565,-0.015358026,-0.0054529486,-0.06332456,-0.0114093395,0.050902274,-0.068904884,0.041828178,-0.031832118,-0.0448367,-0.004637129,0.07147669,-0.012331306,-0.06002489,-0.01732327,0.04493375,-0.013501962,-0.037533753,0.044108834,-0.05022293,-0.024674743,-0.054104894,0.06492587,-0.006635735,0.015382288,-0.038261622,0.008898193,0.0073818,-0.020744253,0.036078017,0.000008476399,-0.031468183,0.024310809,0.016607534,-0.02441999,-0.04505506,-0.027756054,-0.010845241,-0.06846817,-0.06943866,-0.0051375385,0.026251791,-0.04386621,0.003888031,0.056773745,-0.006277866,-0.010475242,-0.011166716,0.0010667823,-0.06118948,-0.05779276,-0.017662942,-0.010893766,0.072883904,0.030036708,-0.02369212,0.0012229708,-0.04883998,0.062936366,-0.004218605,-0.00802475,-0.06313046,0.016158681,-0.027464906,0.0067752427,0.026761299,0.009474422,0.018039009,-0.009759504,-0.02144786,-0.03758228,-0.005586391,-0.07526161,-0.0042792605,0.025645234,-0.022430481,-0.0074121277,0.01921573,0.0060170465,-0.047893748,-0.009219668,-0.005895735,-0.04820916,-0.06769177,0.004822129,-0.0037394245,-0.0009212086,-0.01879114,-0.042531785,-0.044448506,-0.048621617,0.007685079,0.021278024,-0.019882942,-0.093943566,-0.030667527,0.014678682,-0.014229829,-0.017541632,0.05755014,-0.02697966,-0.039668836,0.017917696,0.019130811,0.02125376,0.06075276,-0.025111465,0.036126543,-0.014108518,0.018645566,-0.023522284,0.051484566,-0.036539,0.01922786,-0.0182695,-0.030740315,-0.027804578,0.029599987,0.008795078,-0.03197769,-0.0160495,0.01879114,-0.038698345,-0.029697036,-0.019834418,-0.06191735,0.055948827,-0.07569833,0.005407457,-0.024783924,0.008849668,-0.02474753,0.041221622,0.02154491,-0.0144603215,0.031904902,-0.007515243,0.016000977,-0.0074485214,-0.0038698344,0.007982291,0.006247538,0.008552455,0.020259008,-0.074921936,-0.0076183574,0.015758354,0.00581385,0.033506215,0.035204574,0.0025232777,-0.025572447,-0.012543601,-0.009577537,0.025184251,-0.026421627,-0.020198353,-0.0078003244,-0.03610228,-0.015358026,0.044375718,0.055366535,0.029308839,-0.00029626524,0.023959005,0.010269012,-0.019664582,0.02719802,0.040178344,0.08229767,0.030643266,0.031929165,-0.06347013,-0.028314086,0.047772437,-0.03270556,-0.049980305,0.044666864,0.025669497,-0.009789832,-0.009553274,0.013659666,0.018427204,0.05492981,-0.020914089,-0.0009037701,-0.011973437,0.017675074,-0.012592126,-0.015382288,-0.028508184,-0.028338348,-0.0052072927,0.0133806495,0.040420964,-0.045491785,0.04238621,0.018584909,0.001760532,0.033190805,0.023170482,-0.045103587,0.027222283,0.029090479,-0.043380965,0.011912782,0.035277363,0.019725237,-0.0057744235,0.039280638,-0.008497865,0.059733745,-0.012349503,-0.004949506,-0.020453107,-0.00067934394,0.008067209,0.01359901,0.022248514,0.015673436,-0.020489499,-0.003775818,-0.024359334,-0.022782285,-0.013453437,-0.03804326,-0.029551463,0.039207853,0.03568982,0.005701637,0.014678682,-0.03855277,0.0002818595,0.019519009,-0.03047343,0.040930472,-0.021011138,0.032754082,-0.018536385,-0.01412065,0.0057319645,0.031055724,-0.060364563,0.008394751,-0.004427867,0.035471458,0.032026216,-0.046365224,0.029017692,-0.0043763095,0.020841302,-0.0005929096,-0.017869173,-0.016377041,0.0030145887,0.029575724,0.018427204,-0.020246876,0.024177367,0.0015543026,0.027877364,-0.018815402,0.039959982,-0.024383595,-0.036902934,0.017990483,-0.049009815,0.015236715,-0.008315898,-0.048403256,0.029041955,-0.009280324,-0.006884423,-0.008334095,0.011506388,0.014181306,0.006247538,-0.031686544,0.0007794259,-0.03387015,-0.042313423,0.014678682,0.0031207362,-0.03537441,-0.01751737,0.010590487,-0.009814094,-0.035592772,0.010165897,0.007054259,0.023388842,0.016316386,0.03440392,0.06259669,-0.034500968,0.008904259,-0.027246546,0.0032632772,0.032147527,-0.032875396,-0.0056652436,0.028532447,-0.00834016,-0.04342949,-0.0063021285,-0.042216375,-0.016583271,0.023352448,0.015163927,0.016437698,-0.033967197,0.025329825,0.017226221,-0.0075698327,-0.031492446,-0.016935075,0.010639012,0.0028022937,0.01391442,0.034913428,-0.032099,0.025548186,-0.004042703,0.0078003244,0.02974556,0.026081955,-0.04663211,-0.019179337,-0.030521953,0.010827044,0.02569376,-0.030036708,0.0024186466,-0.03981441,0.01581901,0.008461472,-0.018281631,0.031055724,-0.017286878,0.030424904,-0.04112457,-0.06759472,0.0045825387,0.043526538,-0.009456226,0.027853103,-0.025451137,-0.004819096,-0.002891761,-0.018669827,0.030521953,-0.024517039,-0.008964914,-0.008243111,0.033093754,-0.023910481,-0.0036575394,0.03236589,-0.055220958,0.013768846,-0.0049737683,-0.038285885,0.028483922,-0.021290155,0.05725899,-0.018390812,-0.0245413,0.0044066375,0.05298883,-0.01274983,-0.020440975,-0.04748129,-0.0021820893,-0.008522128,0.0505626,-0.020319663,0.00017485904,-0.021096056,0.014933436,0.0018242205,0.048742928,-0.030958675,-0.0077032754,0.037946213,0.027683267,-0.046122603,0.022151466,0.012943929,0.018706221,0.04197375,0.029963922,0.0017362697,-0.0009939955,-0.008206718,0.035422936,0.03420982,0.078949474,0.012567863,-0.0030797936,-0.029163266,-0.007909505,-0.004054834,-0.023946874,0.07948324,-0.012810486,0.0026081956,-0.002130532,0.0045370474,-0.02717376,0.0037303262,-0.012064421,-0.0087404875,-0.023861956,0.021532778,0.0048160637,0.011712618,0.004145818,-0.021265892,-0.049398012,-0.071428165,-0.040833425,-0.041561294,0.0038061459,-0.0337731,-0.036805887,-0.045831457,0.022867203,-0.03420982,0.036175065,-0.029333102,0.0053771287,-0.018233107,0.01794196,-0.014945568,-0.025232775,0.012155404,0.010711798,0.023085564,-0.07943472,-0.012458683,-0.0102022905,0.05182424,-0.024468513,0.018039009,0.028969167,-0.017929828,-0.0086131105,-0.020853434,-0.010014258,0.004976801,-0.024868842,0.017153434,0.02549966,0.004479424,-0.002385286,0.012234257,0.025087202,-0.02241835,-0.014205568,0.02124163,0.0035726214,-0.0112577,-0.039862934,0.002555122,0.006635735,0.003675736,0.021945236,0.01814819,-0.0092075365,-0.0029220888,-0.016789502,0.008334095,-0.02198163,-0.00695721,-0.009868684,-0.037897687,0.011603437,-0.0073696687,-0.009832291,-0.020016385,-0.01814819,-0.0075455704,0.031710807,-0.0019379499,0.021108188,0.018293763,0.0047857356,-0.01902163,0.0337731,0.0067752427,0.0071088495,-0.005883604,-0.04961637,0.015236715,0.07962882,-0.026664251,-0.01056016,0.014278354,0.0069814725,-0.013671798,0.030619003,0.0020046711,0.008879996,0.0038486049,0.0068237674,0.015248845,-0.008218849,0.0030373347,0.0028523349,-0.024917366,0.0162436,0.006678194,0.03156523,-0.027489169,-0.021896712,0.049543586,0.03942621,0.0031722938,0.02336458,-0.010153766,0.007721472,0.020004254,0.035738345,0.008540324,-0.014642289,-0.01774786,0.00005558527,-0.03049769,0.00020660851,-0.0023928678,0.007636554,0.004521883,-0.009013439,-0.0040821293,0.03440392,0.023437366,0.029357364,-0.03399146,-0.028726544,-0.0038546703,-0.030740315,-0.006617538,-0.019094419,0.0045886044,-0.037048507,-0.037533753,-0.005486309,0.03804326,0.016607534,0.009522947,0.014399665,0.012652781,-0.008328029,0.017614419,0.01603737,0.05002883,-0.029818347,-0.007102784,0.01774786,0.0006296821,0.008898193,-0.034549493,-0.00928639,0.05619145,-0.022115072,0.015115404,-0.039644573,-0.034792114,0.013987207,-0.007005735,-0.016692452,-0.0018196714,0.0114942575,-0.0051375385,0.037339654,0.017772123,0.028435398,-0.017141303,0.007466718,-0.007309013,0.045346208,0.010087045,0.022770153,0.04459408,0.008661635,0.0029266381,-0.012240322,-0.005431719,-0.021969499,0.014326879,0.031953428,0.01751737,0.0367331,-0.007891308,0.006635735,0.043526538,-0.0020713925,0.026591463,-0.004142785,0.029308839,0.015588517,0.02229704,0.014618026,0.02569376,0.005540899,0.02199376,-0.0018939746,0.025523923,0.029066216,-0.022115072,-0.01295606,-0.030667527,0.018645566,-0.0072908164,-0.004215572,-0.0130409775,0.0071877018,0.023316056,0.02814425,0.020950483,0.011002946,-0.025038678,0.0049161455,-0.038479984,-0.005319506,-0.002000122,0.023498023,-0.03241441,-0.009237865,0.001960696,0.0012078069,0.00042345267,0.024092449,0.030303594,-0.0112395035,0.022915728,-0.008758685,0.01625573,0.0047736047,0.01077852,-0.01083311,-0.0155399935,0.0197495,0.026081955,0.008079341,-0.015964583,0.04197375,-0.009389504,0.009334913,0.0087404875,-0.01179147,0.023000646,-0.017784255,0.0014837903,0.02421376,-0.0043186867,-0.0030782772,-0.018330155,0.027343595,-0.014702944,0.0069936034,-0.018257368,0.007551636,-0.06740063,-0.030837363,0.007424259,-0.0011752044,0.009911143,0.0014860649,-0.020744253,0.048500307,0.0017938927,-0.03855277,0.002239712,0.054638665,-0.03852851,0.00085676194,-0.017893435,-0.014848518,0.013865896,-0.015333763,-0.05119342,-0.03345769,-0.0037940147,0.029405888,0.025232775,-0.05245506,-0.043575063,-0.0011107577,0.009601799,0.013332126,0.011118192,-0.017578024,-0.0010311471,-0.00679344,0.03197769,-0.006192948,-0.0035119657,-0.0005223973,-0.01581901,-0.0036454082,-0.020622943,0.018136058,-0.018633435,-0.0027704495,-0.009383438,-0.020198353,0.0019030729,-0.09670947,0.004382375,0.03622359,-0.013392781,0.004722047,-0.016231468,-0.005416555,0.043041293,-0.026858348,-0.048378997,0.010651143,-0.017857041,-0.0032602444,-0.025984906,0.02283081,-0.023097694,0.029551463,-0.0018621304,0.023837695,0.017177697,0.0056379484,0.038722605,-0.025936382,0.029866872,-0.0034695067,-0.03515605,-0.015103272,0.014678682,0.032220315,-0.009140816,0.016158681,-0.013611142,-0.0009522947,0.008497865,-0.009444094,0.03767933,-0.008619176,-0.0039790147,0.01359901,-0.039038017,-0.0017347534,-0.01029934,-0.0030995067,0.015891796,0.03714556,-0.00902557,-0.019300647,0.009043766,-0.021739006,0.019470483,-0.013247208,0.0031419657,0.016073763,0.0007305222,0.0018727451,0.020210482,-0.036053754,-0.0073211445,-0.03896523,-0.018888189,0.032802608,0.012555732,0.013671798,-0.027731791,0.00093637255,-0.03549572,-0.011136388,-0.017432451,0.028702283,-0.0041124574,0.021229498,0.022479007,0.019688845,0.024031792,0.016425567,0.06371276,-0.023874087,-0.0028735644,-0.0027674169,0.011184913,-0.006872292,0.036587525,0.04056654,0.00014500506,0.008249177,-0.005361965,-0.017772123,0.006544751,0.006841964,-0.017214091,0.022927858,0.008989177,-0.011797536,0.031613756,0.0071634394,0.0029205724,-0.013538355,0.011882454,-0.0010880118,-0.042919982,0.037315395,-0.013235076,-0.012628519,-0.041245885,-0.017311139,0.007891308,-0.00040677236,0.066575706,-0.010681471,0.004697785,-0.023595072,0.01814819,-0.013138027,-0.01316229,-0.03156523,-0.029672774,0.06575079,-0.02314622,0.015079009,-0.030885888,-0.021229498,-0.011306224,-0.0014686264,-0.0149698295,-0.0077881934,0.026470153,0.021884581,-0.007515243,-0.014484583,-0.001007643,-0.027489169,-0.032341626,0.005231555,-0.008170324,-0.0097352415,0.0099050775,-0.013975075,-0.0132957315,-0.047505554,-0.0060625384,-0.0027931954,0.005331637,-0.027125234,-0.01732327,0.02782884,-0.013501962,0.0013556551,-0.025548186,0.026494415,-0.00928639,0.01443606,-0.031735066,-0.017578024,-0.004728113,0.0058047515,0.015709829,-0.02707671,0.046438012,-0.0036575394,0.007982291,0.03685441,0.007563767,0.017590156,0.046365224,-0.032462936,-0.0013829502,-0.024177367,0.0029554495,-0.06259669,0.017772123,0.008018685,0.0036727034,0.018342286,-0.02719802,-0.004767539,0.047335718,0.028435398,-0.045467522,0.0337731,0.009541144,0.014581633,-0.0015489953,0.0073575377,0.01795409,0.0675462,0.0016225403,0.005668276,-0.044302933,-0.027901627,-0.005192129,-0.023073433,0.024395727,0.032462936,0.025984906,-0.0009500201,-0.019033762,0.047942273,0.023971137,-0.022915728,-0.015309501,0.0063567185,0.019252123,-0.013647535,0.002996392,0.015200322,0.002956966,-0.003126802,0.035228837,-0.0225154,0.014812125,-0.0075698327,0.034500968,-0.0054954076,-0.0075031114,-0.016728844,-0.00051633175,-0.015940322,0.00059707963,-0.022733761,0.006999669,-0.03877113,-0.017978353,0.006007948,0.050611123,0.022685235,0.04027539,-0.037849165,0.0041913097,-0.04883998,-0.015734091,0.0014504297,-0.03163802,-0.004982867,-0.008042947,0.016498353,0.009759504,0.04163408,0.015673436,0.015637042,0.047214404,0.021532778,0.007254423,-0.012434421,-0.04452129,-0.011985568,-0.025887858,0.01147606,0.023752777,-0.01644983,0.0066903247,-0.0048312275,0.025863595,0.007964095,-0.0067691775,-0.012209995,-0.003336064,-0.018936712,0.004752375,-0.014472453,0.022454744,0.039159328,0.0023185646,0.006617538,0.016328517,0.006393112,0.012203929,0.0055985223,0.010657208,0.0102872085,0.0050556534,0.024359334,0.03163802,0.014387535,0.021290155,-0.018208845,-0.012046224,-0.02879933,0.010930159,0.011184913,0.026567202,-0.028435398,-0.02974556,-0.008218849,0.016134419,-0.022115072,-0.008412947,-0.025451137,-0.0014254092,-0.020416712,-0.027416382,0.02422589,0.005625817,-0.007509177,-0.038285885,-0.012209995,-0.010487372,0.0008120283,-0.023643596,0.0035149984,-0.014241961,-0.036490474,-0.004728113,-0.0136354035,0.0005261883,0.012652781,0.0032693427,0.023522284,0.0055924566,0.009274258,0.003524097,0.02059868,-0.024468513,0.026567202,0.010323602,0.021071794,0.029187528,-0.00014443642,-0.015782615,0.011469995,-0.005304342,0.01274983,0.004142785,0.007345407,-0.005701637,-0.009328849,0.012234257,0.0225154,0.01486065,0.020440975,-0.032438673,0.020210482,-0.051484566,0.007127046,0.014909173,-0.047845226,0.0024580727,-0.016207205,0.037630804,0.018415073,-0.022588186,-0.035059,-0.00040980516,-0.020416712,0.019603927,0.017480975,-0.0149698295,0.0068237674,-0.0019182368,-0.00061868824,-0.025184251,0.07293243,0.011427536,0.0034300804,0.011336552,0.024796054,-0.0069936034,0.0031510643,0.016753107,-0.01699573,0.020622943,0.015139665,0.015260977,-0.005822948,0.0064719645,0.034137033,-0.024735399,-0.014642289,0.010420651,0.030109495,-0.026421627,0.01581901,0.016158681,-0.024165235,0.029551463,-0.014739337,-0.037946213,0.033190805,-0.020562286,0.02654294,0.021083925,-0.0012669462,0.017711468,0.012434421,-0.0030752446,-0.023231138,0.01943409,-0.01131229,-0.039984245,-0.016340649,-0.0058168825,0.038213097,-0.023825563,-0.016304255,0.0002617673,-0.034137033,-0.0045340145,0.018985238,-0.020622943,-0.009328849,-0.026397366,-0.012446552,0.0021896712,0.020659335,-0.027901627,0.022394089,-0.05138752,0.008194586,0.050319977,0.053765222,0.019373434,-0.027877364,0.006672128,-0.030182282,-0.033967197,0.023134088,0.034549493,0.012246388,0.0052285222,-0.017578024,0.029405888,0.02400753,-0.014059993,-0.0068540955,0.0022063514,0.0009166594,0.02187245,0.006575079,-0.029939659,-0.019337041,0.04173113,0.009747373,-0.0003652611,-0.046486538,0.011694421,-0.061529152,0.037412442,0.009268193,-0.016073763,0.040057033,-0.011906716,0.020538025,-0.012294913,-0.020768516,0.0027204086,-0.0013791593,-0.00066152634,0.011961306,0.0032814739,-0.026494415,-0.020974744,-0.018087532,0.044885226,0.042119324,0.010056717,0.0038849984,0.00042345267,0.00017978731,-0.0019334008,-0.006350653,0.006550817,-0.016825894,-0.030716052,0.0031010231,-0.017772123,0.018293763,0.0008180939,-0.0018636467,-0.03122556,-0.0035392607,-0.009310652,0.042070802,0.019603927,0.022042286,0.023170482,-0.035350148,-0.024577694,0.028532447,-0.027659005,-0.014314747,-0.0054923748,-0.035835393,-0.017893435,0.036563262,-0.022042286,0.028411135,0.0028902446,0.0010622331,-0.022442613,-0.03974162,0.01572196,-0.010002127,0.007254423,-0.031953428,-0.033724576,-0.0077396687,-0.012307044,0.02240622,0.000020554231,-0.0114093395,-0.024092449,0.002050163,-0.018318025,-0.015200322,-0.028508184,-0.013744584,-0.014132781,0.030861625,0.012391962,0.015527862,0.03792195,0.001424651,-0.02410458,-0.05163014,-0.004185244,0.01062688,-0.001223729,-0.012822617,-0.014581633,0.029575724,-0.00642344,-0.013623273,0.0043732766,0.029915396,0.00217754,0.0005667518,-0.039329164,-0.027246546,0.013878027,-0.0049737683,-0.029066216,0.0050101615,-0.027367856,0.022272777,0.02795015,0.02135081,-0.0027461874,-0.02644589,-0.010129504,0.005856309,-0.0057228664,0.00025115255,0.019397696,-0.029163266,0.004849424,-0.017650811,-0.061043907,0.0025536055,-0.0042458996,-0.0146301575,0.03537441,-0.0015679501,-0.011730814,-0.018560648,0.010256881,0.0142904855,-0.0053922925,-0.04694752,0.017286878,-0.0071573737,-0.045807194,0.0074849147,0.026179004,0.032438673,-0.001922786,0.020780647,0.0041791783,-0.015976714,0.017917696,-0.008212783,0.017772123,0.017881304,0.01985868,0.000795348,-0.0396931,-0.015467206,0.0015588518,-0.02114458,-0.014169174,0.00010368336,0.0052163913,0.0058047515,0.029599987,-0.002072909,-0.034234084,-0.0013852248,-0.005407457,-0.014909173,-0.01317442,-0.0076304884,0.00012898816,-0.00929852,0.010620815,-0.016850157,0.02877507,-0.017735729,0.024577694,0.0034331132,-0.01359901,-0.0098201595,0.0026354906,0.028095726,0.017929828,0.019470483,-0.020343926,-0.014981961,0.015734091,-0.019567532,-0.011567044,0.012100814,-0.00496467,0.022867203,0.0006357477,0.013089502,-0.006138358,0.026737038,0.015176059,-0.022151466,-0.0056622108,-0.039765883,0.001050102,-0.006393112,0.014205568,-0.022818679,-0.01013557,0.0018772943,-0.023279661,-0.007873111,-0.0012768027,0.03772785,-0.000961393,-0.01306524,0.0057653254,0.031880643,0.008916389,0.021096056,-0.00047046086,-0.023037039,-0.02421376,-0.009795898,0.035617035,0.0088618,0.006459833,0.024759661,-0.035932444,0.015103272,-0.007563767,-0.017274747,0.004267129,0.012313109,-0.005355899,0.039280638,-0.031492446,0.0013033396,-0.016595403,-0.010742126,0.0055651614,-0.0073575377,-0.0024929498,-0.044254407,0.012416224,0.010766389,0.010675405,-0.006763112,-0.0016195074,0.024577694,0.008042947,0.025014415,0.035107527,0.009480488,-0.00007127046,0.022381958,-0.0067813084,0.011075733,-0.013477699,0.01306524,0.014302617,0.016813762,0.015321633,0.01837868,0.013865896,-0.011433601,0.0039395886,-0.021532778,-0.015394419,0.03241441,0.0020183187,-0.04556457,-0.028411135,0.01751737,-0.029891135,-0.041027524,-0.022212122,-0.0072726198,-0.04151277,-0.0002968339,0.051290467,-0.02283081,-0.019506877,0.021459991,-0.013611142,0.014642289,0.04398752,-0.001583114,-0.025354087,0.005270981,0.027100971,0.02007704,0.0065386854,0.05531801,-0.00679344,0.0071452428,-0.059927844,-0.019907204,0.0019773762,-0.009128684,0.05808391,0.008267374,-0.033506215,0.011961306,0.035301622,-0.024043923,-0.026106218,-0.033627525,-0.0117065525,0.0109847495,-0.0015307985,-0.002699179,-0.0053922925,-0.0016498354,0.016643927,-0.0177236,0.01857278,-0.024941629,0.024128841,0.03804326,-0.0027583186,-0.015018354,-0.0072908164,0.0023928678]},{"id":"interface-GatewayUserGuildSettingsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserGuildSettingsUpdateDispatchData\nDescription: USER_GUILD_SETTINGS_UPDATE — per-guild settings changed","meta":{"url":"/docs/typedefs/GatewayUserGuildSettingsUpdateDispatchData"},"embedding":[-0.016942944,-0.0145014925,0.020819824,0.025322404,-0.008778187,-0.005956408,-0.014832745,-0.0048031593,0.029763639,-0.0029828048,0.0023923782,-0.012710276,-0.03283079,0.047773954,0.08053113,-0.027162693,-0.023506649,0.034597468,-0.03523544,0.04058455,0.020255469,-0.008943814,0.04841192,0.03317431,-0.03916139,0.021151077,0.029591879,0.021789044,0.00752679,-0.032241896,0.014059823,-0.018451983,0.039603062,-0.04799479,-0.00888247,0.027187232,-0.019396666,0.009729004,-0.022169372,-0.033812277,-0.008397861,-0.069636606,-0.0019675777,-0.010176809,-0.062569894,0.01258759,-0.018709624,0.013569078,0.0014139569,0.0042848107,-0.0029920063,-0.0059472066,-0.009452961,0.01148955,0.0596745,-0.017225124,0.029763639,-0.0058245207,-0.003444411,-0.0019108354,-0.006876554,-0.034818303,0.019396666,-0.02816872,0.038474347,-0.006293795,-0.019347591,0.02728538,0.05923283,0.0036345746,0.026892785,-0.0065821074,-0.023788827,-0.030327994,0.014685522,0.0152621465,0.0012613661,0.023040442,0.008459204,-0.0029306633,-0.009422289,0.024340915,-0.07837185,-0.050448507,0.01682026,-0.0039719613,-0.06011617,0.0126857385,0.02605852,0.007992997,-0.010961999,0.017028825,-0.040020194,0.00453325,-0.030818738,-0.055944845,0.03862157,-0.029297432,0.0018832311,0.050301284,0.08072743,-0.06119581,-0.034597468,-0.042670213,0.013851256,-0.016758917,-0.027309917,0.006349004,-0.03705119,0.00234177,-0.09029694,0.044854023,-0.012747082,-0.006391944,-0.023040442,0.0008940747,0.05216611,-0.026132131,0.021568209,-0.004573123,-0.033297,0.035259973,0.0086555015,-0.052264262,0.013201021,-0.025567776,-0.0187587,-0.014403343,-0.08794137,0.013851256,0.03874426,0.015237609,0.030794201,0.008839531,-0.024708973,-0.000032348864,-0.016783454,0.01549525,-0.019040877,-0.053589273,-0.010011183,-0.0027650371,-0.0038094022,0.018513327,-0.0750348,0.0010574005,-0.012354487,0.028315943,-0.0029705362,0.03933315,-0.097020134,0.03467108,-0.019789262,-0.0090665,0.031235872,0.008532816,-0.00556688,-0.018954996,-0.026549263,0.0034352096,-0.004772488,-0.04534477,-0.00091937865,-0.011213506,-0.03474469,-0.06512176,0.017838553,-0.016844796,-0.07950057,-0.014538298,-0.000103516366,-0.019421203,-0.014648716,0.008698442,0.006441018,0.014194777,-0.03945584,-0.031726617,-0.026279354,-0.023383964,0.03511275,-0.005260165,-0.046203572,-0.06875327,-0.026868248,-0.015200803,-0.035628032,-0.00023923782,-0.023163129,-0.025813147,0.016709842,-0.015237609,0.019494815,-0.00072614814,0.013409587,-0.045884587,0.0153480265,-0.04514847,-0.0025165977,-0.0061956462,0.027408067,-0.050939254,0.04163965,-0.0049902555,-0.017679062,-0.02983725,0.015863309,0.015004505,-0.017458227,0.03054883,-0.010109331,0.024647629,-0.036216926,0.010593941,-0.055503175,0.04139428,-0.05113555,0.011722653,-0.000024824758,-0.011127626,0.039995655,0.028046034,0.03292894,-0.0021577412,0.015985994,-0.0138267195,0.005023994,0.024439063,-0.009747407,0.0014323598,-0.026524726,-0.011998697,-0.009790348,-0.062128223,0.007324358,-0.013593616,-0.0015358762,-0.010992671,0.026009446,0.036977578,-0.033566907,-0.015397101,-0.009557244,0.021911731,-0.025494164,-0.017973509,0.030745126,0.018010315,-0.016673036,0.037689157,0.01381445,0.080580205,0.016403126,-0.058496714,-0.012575321,-0.004349221,0.009943705,0.023886977,0.014145703,0.030426143,0.0023095652,-0.04092807,-0.015605667,0.033051625,-0.0033769337,-0.00033930363,0.043847997,0.023494381,-0.03513729,-0.021003854,0.023469843,0.014955431,0.0383762,-0.016918408,-0.014182509,0.014624178,0.028978448,0.022157103,0.013090603,-0.009888496,-0.05653374,-0.021420985,0.00814022,0.0339595,-0.012415829,0.049393408,0.012256337,0.050154064,0.029714564,0.03371413,-0.04215493,0.010409912,0.023077248,0.011330058,0.008391727,0.026475653,-0.027064545,-0.023801096,-0.024635362,0.028929373,0.028315943,0.02500342,-0.069391236,-0.012648933,0.038498886,-0.009759677,0.060410615,-0.05216611,-0.008164758,-0.0037603278,0.0027098283,-0.04794571,-0.020010097,0.017323272,-0.02596037,-0.02728538,0.03724749,0.063502304,0.015102654,0.016354052,0.014108897,0.031383093,-0.021138808,-0.036290538,0.032241896,-0.047651265,-0.005244829,-0.022844145,0.013630422,0.04225308,0.037443787,-0.020414962,-0.011195103,0.019028608,0.046326257,0.05138092,-0.021543672,0.04262114,0.016722111,-0.050399434,-0.0057386407,-0.032879863,-0.022684652,-0.068704195,0.038253512,-0.032879863,-0.031235872,0.027138157,0.0061435048,0.031653006,0.025665924,0.03705119,0.014857282,-0.025935834,-0.034253947,-0.052067965,0.053049453,0.036167853,-0.005260165,0.06492546,-0.016734378,0.01716378,0.008907008,-0.021384181,0.030229846,0.009305738,-0.030082623,0.03643776,0.0017528771,-0.01585104,-0.03717388,-0.024402257,-0.056582812,0.016157754,-0.032536343,-0.03940676,-0.004045573,-0.0039995657,0.020758482,-0.0006276159,-0.0053337766,0.025935834,0.029788176,0.00016696806,0.031186797,0.005112942,-0.018832311,0.04436328,-0.03714934,-0.03440117,0.008262906,0.0035762987,-0.00756973,-0.02534694,-0.038130827,-0.0028892567,0.035161827,0.04671885,0.01953162,-0.023469843,0.047381356,-0.0022512893,-0.003062551,-0.006232452,-0.049270723,0.056926332,-0.029910862,0.015409369,0.04144335,-0.018451983,0.020194126,-0.006112833,0.02667195,-0.0030778865,0.021261495,-0.045541067,-0.013176483,-0.016697573,-0.008453069,0.06109766,-0.012882036,0.022598773,0.031873837,0.027260844,0.05790782,-0.018182075,0.0320456,0.006410347,0.012213398,-0.0533439,-0.07915705,0.024083273,0.027947884,-0.022390205,0.055846695,-0.001952242,-0.005361381,-0.022488356,0.036584985,-0.0017406085,-0.03933315,0.011434341,-0.021016123,0.035063677,-0.0008112616,0.017445957,0.004398295,0.0012889705,0.025911296,-0.031579394,-0.01461191,-0.004652869,0.0032327778,0.050154064,-0.025739536,0.01056327,-0.010047988,0.028291406,-0.016390858,-0.00853895,-0.019335324,0.013777644,-0.01891819,0.04242484,-0.030450681,0.025040226,-0.024758046,0.02182585,-0.025224254,0.041762337,-0.03552988,0.02280734,0.009980511,0.02376429,-0.0098148845,0.0015174733,-0.015728353,0.021629553,0.021273764,0.035947017,-0.023163129,0.023101786,-0.0012682672,0.017372346,0.073268116,0.023567993,0.017028825,-0.0032971879,-0.026181206,-0.015985994,-0.028684001,0.006416481,0.037983604,-0.012207263,0.027260844,-0.0056251558,0.010526464,-0.059281904,-0.0039995657,0.0034321425,-0.012280875,-0.007183269,-0.0016823326,0.0005076136,0.037983604,0.013090603,-0.03864611,0.0030748195,-0.045173008,-0.046964224,-0.02262331,-0.008735248,-0.00545953,-0.043602627,-0.021114271,-0.0076678786,-0.009330275,0.0032419793,0.018439716,0.05025221,-0.01910222,0.006858151,-0.0063428693,-0.0015052046,0.020218663,0.034278486,0.037640084,-0.08779415,-0.021874925,-0.013630422,0.0060637584,-0.024512675,0.0038155366,0.030622441,0.0070299115,-0.02183812,0.0014845013,-0.018991802,0.026573801,0.004269475,0.009459095,-0.0034045381,0.0016102545,0.009170783,0.020218663,-0.0027788393,0.020120515,0.011201237,0.027800662,-0.025064763,0.018317029,-0.025015688,-0.017274197,0.018488789,-0.007931654,-0.0016286575,0.005023994,-0.025641387,-0.022377938,-0.00792552,0.016746648,-0.029101133,0.004248005,-0.011839205,-0.02728538,0.022341132,0.0010581673,0.012796156,-0.030033547,-0.00047962583,-0.026181206,0.040535476,-0.00071656326,0.04021649,0.022942293,-0.033517834,-0.013004723,0.041590575,0.039038707,0.033076163,-0.0057355734,-0.09230899,0.001843358,0.055405024,-0.08200336,-0.014955431,-0.015875576,0.009483633,-0.017850822,0.064140275,-0.0033217252,0.01601053,0.0341558,0.0299354,0.03354237,0.0005267833,-0.015532056,0.0070360457,-0.013667228,-0.010692091,-0.02226752,0.00058199203,-0.032683566,-0.00818316,0.039627597,0.03970121,0.02095478,0.031481244,-0.008704576,0.0010988071,-0.0010995738,0.022230715,-0.007287552,0.005707969,0.010182943,-0.03283079,-0.032438196,0.00008377158,0.009324141,-0.0036897834,-0.02262331,0.028831225,0.0099007655,0.011495684,0.00077100523,0.0501786,-0.03827805,0.008545084,-0.0049503827,-0.060950436,-0.017458227,-0.034646545,-0.017519569,-0.004548586,-0.046522554,-0.047111448,0.04637533,-0.031456705,0.010268823,-0.013372781,0.014194777,0.007882579,0.01646447,-0.004428967,0.043087345,0.0063858097,-0.007391835,-0.021457791,-0.0031315617,0.015372563,-0.021077465,-0.038400736,0.013581347,0.016255904,0.045442916,-0.012869768,-0.014010748,0.040854458,-0.005094539,-0.010661419,-0.047013298,-0.010483524,-0.0070789857,0.03292894,-0.00453325,0.0276289,-0.053638346,0.0128574995,0.00047272473,0.0447068,0.016354052,0.027089082,0.04664524,0.020819824,0.0166485,0.0023632403,0.013704034,-0.035382662,-0.0029628684,0.026573801,0.025813147,0.019605232,-0.038106292,-0.009600184,0.023015905,-0.012158189,0.054521687,-0.021077465,0.03398404,-0.007269149,0.0008802725,0.018292492,0.02684371,-0.021003854,-0.017188318,0.00651463,0.050546657,-0.016709842,-0.021077465,-0.009557244,0.0025825417,0.020378156,0.029076597,-0.011563161,-0.009115574,-0.0067906734,0.017544108,-0.010182943,0.026622875,0.0114404755,0.003968894,0.008453069,-0.07606536,0.0103363,0.039014168,-0.0015933852,-0.024794852,0.024598556,0.037272025,0.009330275,0.014795939,0.02684371,-0.00050147926,0.013544541,-0.009360947,0.004496444,-0.02270919,0.01778948,-0.03177569,-0.041762337,-0.025371477,0.015041311,0.015519787,0.01254465,-0.008483741,0.008250638,0.024058737,0.0029874055,-0.011152163,0.026451115,0.007729222,0.012483307,-0.0072752833,-0.0043798923,-0.026475653,0.0080114,0.021151077,0.033395145,-0.0206726,0.02270919,0.0025856087,0.0077782962,-0.022132566,-0.001015994,-0.020095976,-0.05187167,0.0021976142,0.017041095,0.0015098053,0.04181141,0.040731773,0.009097172,0.04875544,0.05447261,-0.03511275,0.019396666,-0.044314206,0.0012421964,-0.013139677,-0.02728538,-0.03018077,-0.001987514,-0.019911949,0.017041095,0.008784322,-0.03756647,-0.0097106015,-0.038768794,0.020893436,-0.0040946472,-0.008827263,-0.008115683,-0.0061895116,-0.04716052,-0.0043768254,-0.0004432034,0.011722653,-0.030671515,-0.023715217,0.034033112,-0.020991584,-0.012452635,0.0022926957,0.023445306,-0.00048345976,0.015568861,0.024255034,-0.0662014,0.027334455,0.039995655,-0.025027957,-0.009103306,0.0014706992,-0.007888714,0.029272893,-0.013335975,-0.03337061,0.03864611,-0.035799794,-0.006986971,-0.0023325686,0.01874643,-0.0010574005,-0.017114706,0.019629769,0.020991584,0.006410347,-0.020464035,-0.00449031,-0.02005917,0.009121709,-0.0017820151,-0.008992888,0.0007200138,-0.0076188045,0.03881787,-0.0064287498,0.020451767,-0.027825199,-0.027211769,-0.036634058,-0.008029803,0.022672385,0.0031238939,0.036290538,-0.008943814,-0.015740622,0.01601053,0.00301501,-0.013041528,0.007269149,-0.01619456,-0.006026953,-0.004852234,0.0056251558,-0.032978013,0.028831225,-0.009391618,0.01610868,0.011857608,0.0015565794,0.008127952,-0.018182075,-0.016709842,0.017936703,-0.025714999,-0.022574235,0.022684652,0.004168259,-0.002096398,-0.031113185,-0.00929347,-0.027702512,-0.026402041,-0.01567928,0.013372781,0.02807057,-0.0025917431,0.029714564,0.009471364,0.006876554,0.00501786,0.026402041,-0.02199761,0.008385592,0.0012698007,0.034818303,0.034352098,0.04877998,0.006152706,0.012152054,0.02517518,-0.010557136,0.0042081317,-0.025984908,0.01839064,-0.037002116,-0.0011547826,-0.008802725,0.012244069,0.007324358,-0.0032143749,0.010446718,-0.003723522,-0.0056742304,-0.036756743,-0.007367298,-0.019961022,-0.021923998,0.011685847,-0.016084142,-0.031530317,-0.012575321,0.038057216,0.012385158,0.026303891,0.011655176,-0.0066189133,0.03643776,0.0044749742,0.03371413,-0.013421855,-0.0075635957,-0.0009784213,0.011415938,0.031873837,0.005324575,-0.0008005265,-0.017531838,-0.017629987,-0.0046313987,-0.0060668257,0.023163129,-0.0058613266,-0.0028095108,-0.0032757178,0.07204126,0.022525162,-0.0031284946,-0.0075574615,0.0212983,-0.019298518,-0.01742142,0.01275935,0.010287226,0.018194344,0.0064287498,-0.0050025242,0.018341566,-0.02772705,0.0043216166,0.06998013,-0.0010152272,0.011256446,-0.031800225,0.04603181,-0.0055576786,0.008127952,-0.07243385,-0.025322404,-0.020218663,0.02473351,0.018807773,-0.03530905,0.037345637,-0.007373432,-0.01680799,0.019642038,0.0063858097,-0.03827805,0.0060024154,-0.04102622,-0.00455472,-0.011507953,-0.016145486,-0.036045164,-0.060263395,-0.041148905,-0.0056926333,-0.01478367,-0.0043001464,-0.030646978,0.051724445,-0.008827263,-0.017495032,0.00853895,-0.005217225,-0.010330167,-0.030818738,-0.011925085,-0.00832425,0.073268116,0.0071403286,0.045835514,-0.009704468,0.0050608,0.006680256,-0.009403886,0.043259107,-0.0019951821,-0.002559538,-0.005938005,-0.05246056,0.038253512,0.02684371,-0.0038063352,-0.01121964,0.014047554,0.011299387,-0.021874925,0.009422289,0.0066863904,0.016587155,-0.040044732,-0.0070299115,-0.019139025,0.017973509,-0.013667228,0.025469627,0.0049902555,-0.009373215,0.0042326692,0.018169805,-0.025420552,-0.054325387,-0.0006372007,-0.026254818,0.0059656096,-0.015961457,0.0061097657,0.019089952,-0.009207589,0.01100494,-0.06683937,0.0034658813,-0.032511808,-0.0132378265,-0.010771836,-0.0038983496,0.0016792655,0.020709407,0.013802182,0.006944031,0.036167853,0.025543239,-0.015605667,0.025935834,0.035456274,0.01858694,-0.019752456,-0.04058455,-0.01082091,0.022856412,-0.0033217252,0.0276289,-0.012832962,0.0035517614,-0.009440692,-0.0013579814,-0.033517834,-0.015716085,0.022255251,0.0083610555,-0.02588676,0.023163129,-0.005658895,-0.0067722704,-0.017102437,-0.00094544946,-0.039185926,-0.017801747,0.016906139,0.006986971,-0.008060474,0.012980185,0.009735139,-0.009287335,0.032683566,0.016599424,0.005244829,0.0020764617,-0.0100909285,0.00177128,-0.02342077,0.01776494,0.0071157916,0.050031375,-0.013569078,0.021911731,0.0046406,-0.014378807,0.00095388416,-0.053638346,0.013569078,-0.02632843,-0.0025472695,0.017102437,0.0012276274,0.030941425,0.0019139026,-0.044240594,-0.004051707,-0.0017252727,-0.024181424,0.038106292,0.010097063,-0.019408936,-0.04446143,-0.0012559985,-0.031579394,0.007735356,0.010281092,-0.0052969707,0.021862656,0.012280875,0.0054380596,-0.0031867705,0.014317463,-0.056631885,0.026696486,0.01461191,0.00035157223,-0.010023451,0.029591879,-0.00044895432,0.009980511,-0.008219966,0.037002116,0.01629271,0.00057892484,-0.015544324,0.011158298,-0.013973942,-0.0023203,0.011753324,0.01743369,-0.0417378,0.029640952,-0.030646978,0.008023668,-0.020267738,-0.0052141575,0.026990933,-0.012139786,0.029272893,0.03952945,-0.021138808,-0.05412909,-0.013973942,-0.013434124,0.0067109275,0.012783888,-0.010624613,-0.0036560446,0.006379675,0.00095235056,-0.0032051734,0.0913275,-0.0041467887,0.004174393,0.009673796,0.013041528,-0.010630747,-0.013691764,0.015985994,-0.0048460993,-0.009225992,-0.013838988,0.010538733,-0.012225666,-0.0058582593,0.036167853,-0.011078551,-0.011998697,-0.008729113,0.013397318,-0.04372531,-0.002985872,-0.00086493674,-0.008348786,-0.017936703,0.00010092845,-0.03979936,0.030499754,-0.032953475,0.026303891,0.03072059,0.013090603,0.019776992,0.0063060634,0.008735248,-0.016304977,0.0046682046,0.02650019,-0.019826068,0.00889474,-0.00809728,0.017912164,-0.017090168,0.009336409,0.004548586,-0.04171326,0.0117349215,0.011833071,-0.02270919,-0.029076597,-0.022377938,-0.0019016339,-0.008557353,0.030745126,-0.02569046,0.012053906,-0.04065816,0.0028708538,0.01628044,-0.013090603,0.0016685304,-0.008698442,0.0066373157,-0.012882036,-0.012250204,-0.0038983496,0.03513729,-0.015397101,0.018820042,-0.032315508,0.029174745,0.010176809,-0.004852234,0.0070360457,0.01478367,0.0206726,-0.0103363,0.0047632866,-0.026254818,0.004717279,0.037811846,-0.004125319,0.0066005103,0.00063490035,0.031505782,-0.07228663,0.07454405,0.049295258,-0.009459095,-0.0009324141,-0.00042096656,0.050988328,-0.015335757,0.0029291296,0.017863091,0.03476923,0.011943488,-0.0026561532,-0.005784648,-0.005465664,-0.0077598933,0.004067043,0.013802182,0.028414091,-0.0041590575,0.01760545,0.0039351555,0.03167754,0.017004289,0.019507084,-0.0057754465,-0.017899897,-0.02148233,0.012796156,-0.03440117,-0.010974268,-0.028855762,0.014182509,-0.031211333,0.00831198,0.015936919,0.009495901,0.019813798,-0.012090712,-0.012397426,-0.031211333,-0.011011074,0.011593833,-0.009495901,0.017568644,0.015335757,-0.025911296,0.010342435,0.024880733,-0.022402475,-0.009906899,0.021236958,0.00086340314,0.004287878,-0.007937788,0.0014377272,-0.0018556267,-0.0005632057,-0.002581008,0.005640492,-0.007735356,0.006361272,0.0033646652,-0.021948537,-0.015863309,-0.04922165,0.00227736,-0.009477498,-0.026181206,-0.033468757,0.016378589,-0.022157103,-0.00012939546,-0.014378807,0.026009446,0.016771184,-0.025371477,-0.0099007655,-0.029788176,-0.0026484854,-0.004646735,-0.0016255904,-0.005490201,-0.019286249,-0.0010650684,-0.017973509,0.004839965,-0.018770967,0.010176809,0.0007223142,-0.004925845,-0.021433255,-0.018120732,0.02473351,-0.020979317,-0.01311514,0.00006594376,-0.03324792,-0.020304544,0.02711362,0.006520764,0.0053276424,-0.001326543,-0.0095204385,0.012906574,-0.015998263,0.0030947558,-0.018795505,0.004192796,-0.034376636,-0.021727702,-0.02015732,-0.0035088214,0.0034536126,-0.0164522,-0.0077169533,-0.030965962,0.008643233,-0.001912369,-0.012029368,0.029199284,-0.0075145215,0.0068090763,0.016525812,-0.00002813153,-0.011096954,0.005744775,0.019948754,0.02280734,0.018464252,0.023837902,0.0056619616,0.02481939,0.03194745,-0.0038063352,0.030450681,0.02517518,0.020660333,-0.01486955,-0.053540196,0.0012345285,0.015237609,0.014955431,0.0052110907,0.024475869,0.021224689,0.010379241,0.015102654,-0.013016991,-0.04647348,-0.02588676,-0.0048614354,-0.0155565925,0.013961674,-0.008017534,-0.0026791568,0.011360729,-0.008287444,-0.04338179,0.00550247,-0.010440584,0.047675803,0.015826503,-0.01761772,-0.02358026,0.012556918,-0.00035866504,0.044755876,0.018709624,0.003444411,-0.03398404,0.018636012,0.005563813,-0.013397318,-0.023383964,0.00025208152,0.04286651,-0.011366864,0.018317029,-0.017126974,0.0061404374,0.016170023,-0.019862873,-0.0105755385,-0.017912164,-0.015961457,0.010777971,-0.00016342168,-0.025935834,0.026990933,0.017912164,0.009692199,0.0223534,0.0103363,0.041885022,-0.0008426999,-0.023801096,0.007447044,0.020476304,-0.008103414,-0.0029950736,0.0026837576,-0.03449932,0.0013150412,-0.0058367895,-0.00963699,-0.008888605,-0.0065084957,-0.00041444885,-0.03494099,0.028119646,0.011121492,-0.012096846,0.0051037404,-0.013691764,-0.014010748,0.0012935712,-0.019875143,0.043504477,-0.003904484,-0.010618479,-0.009084903,0.01629271,-0.017151512,-0.010244287,0.038940556,-0.008232235,0.0149677,-0.0030134765,-0.003925954,0.008864068,0.010961999,0.023298083,0.026598338,0.0025027958,-0.014943162,0.02182585,0.0047694207,-0.010391509,-0.029420117,0.052067965,0.021151077,0.011084686,0.0016777319,0.029469192,0.01236062,-0.013753108,-0.010182943,-0.011980294,-0.021592747,-0.0058153193,0.012661202,-0.03337061,0.043946147,0.005950274,-0.035259973,-0.038179904,-0.00880886,-0.0019169697,-0.02596037,0.019114489,0.002064193,-0.014133435,0.0065882416,0.013458661,-0.03398404,0.009164649,-0.006778405,-0.009747407,-0.013127409,0.013667228,0.0010788706,0.03116226,0.00501786,0.028291406,-0.021077465,0.0042756093,-0.04139428,-0.0092812,0.013802182,-0.0069562998,0.055306878,0.0352109,-0.028855762,0.0048430325,0.006907225,0.012992454,0.016206829,-0.013225557,0.017445957,0.03283079,-0.0045639216,0.013151946,0.0075206556,-0.017016556,-0.040461864,-0.005744775,0.041418813,-0.02438999,0.024537213,0.016096411,0.001742142,-0.02650019,-0.010557136,0.021874925]},{"id":"interface-GatewayUserNoteUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserNoteUpdateDispatchData\nDescription: USER_NOTE_UPDATE — note on another user changed\nProperties: id: string, note: string | null","meta":{"url":"/docs/typedefs/GatewayUserNoteUpdateDispatchData"},"embedding":[0.00590035,-0.0021271883,-0.031103976,0.021020338,0.012260041,0.016525354,-0.008875133,0.0020656693,-0.008864195,-0.019073606,-0.009761005,0.013813052,-0.016853455,0.019139225,0.04330933,-0.02138125,-0.0112538645,0.02193902,-0.03731602,0.029135369,-0.029879065,0.0091430815,0.0929182,0.031672683,0.018089302,0.008257208,-0.020265706,0.035588022,-0.025241904,-0.02489193,0.0526274,-0.012238167,0.036769185,0.01912829,0.0008250373,0.010953105,0.043068726,-0.0028954914,-0.027735472,-0.015737912,-0.04046579,-0.015158267,0.013791179,-0.012599079,-0.07183225,0.0003414301,0.015125456,0.042915612,-0.008372044,0.041865688,0.02552626,-0.029769698,0.010734371,-0.009443841,0.03729415,-0.018373657,0.015650418,0.0133427745,-0.002389669,-0.0034450605,0.009569612,-0.038562804,-0.009438372,-0.027166763,0.034384985,-0.0030786812,-0.04166883,0.03935025,0.046546597,0.01673315,0.0043063257,0.01034065,-0.019707933,0.050090086,0.0140317865,0.028413547,0.0017225302,-0.040422045,0.0087876385,-0.012927179,0.010734371,0.0191611,-0.106742196,-0.025963726,0.00090227777,-0.025307525,-0.070169866,-0.0806691,-0.021042211,-0.011439788,-0.009383689,0.030382153,-0.0304259,0.021720286,-0.031147722,-0.034275617,-0.0065401467,-0.004948857,-0.022212438,0.05687084,-0.0012590876,-0.086356185,-0.031607065,-0.026641801,0.023645146,-0.034122504,0.010668751,0.00437468,-0.055033475,-0.029835317,-0.044206142,0.01309123,0.0072072856,-0.006201109,0.006414375,-0.029091623,0.04271875,-0.041646954,0.0097883465,-0.031191468,-0.0074369563,-0.016361304,0.019204846,-0.004251642,-0.012905306,-0.015420747,-0.009225107,0.015967581,-0.090030916,-0.013419331,0.054377273,-0.014513001,0.013244344,0.007792399,0.0037895667,0.0032536683,0.00003735994,0.027166763,-0.042346902,-0.0177612,0.0021695679,-0.023338918,0.00096858153,0.024301348,-0.055208463,0.007967386,-0.00008826259,0.052846134,0.057483297,0.017575277,-0.046240367,0.036747314,-0.071176045,0.0013985306,0.043856166,0.019445453,0.034209996,-0.02508879,-0.06111428,-0.0256575,0.034253746,-0.06321413,0.0120303705,-0.019007985,-0.045584165,0.00835017,-0.010171131,-0.04672158,-0.052977376,-0.014797355,0.00088177144,-0.04225941,-0.078569256,0.01746591,-0.016328493,0.012752192,-0.00043575914,-0.046852823,-0.04033455,0.020309452,0.010154726,-0.00065312604,-0.026269954,-0.0119428765,-0.019773554,0.0035325543,-0.054639753,0.027254257,-0.01939077,-0.064876504,0.006250324,0.024563828,0.020331325,0.00871655,0.0048996415,-0.05525221,0.027866712,-0.030907115,-0.018909555,-0.046590343,0.0020342262,-0.03738164,0.02216869,-0.029179117,-0.013659938,0.013080293,-0.007185412,-0.0021627324,-0.025701245,-0.016241,0.030775875,0.055208463,-0.0328101,-0.009668043,-0.026291827,0.008623588,-0.0073932093,-0.013900546,-0.038475312,-0.0236014,-0.01604414,0.00759007,0.07108855,-0.015956646,0.0259856,0.0056761475,-0.019740744,0.033860024,-0.038103465,0.0041778195,-0.0077049052,0.019445453,-0.006485463,-0.0420188,-0.0027546813,0.0017977201,0.027319876,-0.04772776,-0.0032536683,0.032831974,-0.000015475858,-0.0407064,-0.012774066,0.03278823,-0.023907626,0.044599865,0.03204453,-0.011877256,0.013649002,0.063389115,0.038300324,0.044162396,0.0519712,-0.020090718,-0.006622172,-0.014184901,0.019018922,0.036266096,0.052714895,0.045015458,0.06531397,-0.05061505,-0.0239295,0.013419331,-0.037928477,-0.052889884,0.06697635,0.034888074,0.0013486318,0.008224399,-0.012752192,-0.0076775635,0.018767377,-0.010225815,0.012839686,0.025351271,-0.01434895,0.0093126,-0.03125709,0.024651323,0.005889413,-0.00090159423,0.016984696,0.010367991,-0.036112983,0.070126124,-0.0073330575,0.025548132,0.055033475,0.008093158,-0.008202525,0.047246546,0.023470158,-0.056739602,-0.02290145,0.052539907,0.012478775,-0.0314977,0.019095479,-0.011713206,0.046284117,-0.027363624,0.0057855146,0.00447311,0.03729415,0.0016528089,0.05389606,-0.010067233,0.019193908,-0.0140755335,-0.024804436,-0.028982256,-0.036572326,0.050921276,-0.032460127,0.013014673,0.042412523,0.020068845,-0.019379832,0.023645146,0.015377001,0.011647586,0.016350366,-0.026882408,-0.0059440965,-0.0074424245,0.0071471334,-0.019642314,0.029704077,0.04619662,0.037950348,-0.027626105,0.006622172,0.022321805,0.021960894,0.037162907,-0.03480058,0.065926425,0.0052605527,-0.016667532,-0.011855383,-0.065007746,-0.03943774,-0.03480058,0.000031122603,-0.050265074,-0.04072827,0.011724142,-0.030163419,0.010203942,0.005790983,0.026969902,0.0040875915,-0.014633304,-0.03589425,-0.018406466,0.01531138,-0.010996852,-0.002248859,0.03681293,-0.021096895,-0.012369408,0.010160195,0.0022556945,0.023667019,-0.018647075,-0.008071285,0.047815252,0.018887682,-0.022463983,-0.017739328,-0.034319364,-0.048733935,0.0042899204,-0.035544276,-0.004175085,-0.014403634,-0.057920765,-0.010783587,0.0094329035,-0.012577205,0.04278437,-0.010707029,0.0062612607,-0.009460245,0.01707219,-0.018734567,0.015705101,-0.038978398,-0.0049953377,0.015136393,-0.023448285,-0.0066440455,-0.0035872376,-0.021435933,0.006829969,0.042303156,0.0027615167,0.018570516,-0.013167787,0.012456901,0.0047684014,-0.018800188,0.01717062,-0.024738817,0.05975813,0.0018606061,0.050790034,0.04096888,-0.018898617,0.04361556,0.016875328,0.013780242,0.0286979,0.06478901,-0.03698792,0.0032427316,0.030797748,0.0032263265,0.024738817,-0.018318973,-0.0057362993,0.009706321,0.017673707,0.03867217,-0.034516227,0.006201109,0.015923835,0.01670034,-0.05398355,-0.03775349,0.039022148,0.0019289604,0.002890023,0.02611684,-0.005873008,0.012708446,0.007885361,0.02290145,-0.028413547,-0.02753861,-0.006069869,0.011724142,0.055033475,0.022595223,0.022157755,0.009547739,-0.004421161,0.022529602,-0.015956646,-0.06264542,0.031103976,-0.0035106807,0.016492544,-0.063870326,0.021949958,-0.052583653,0.036069237,0.0006213413,-0.0043145283,-0.023492033,-0.032328885,-0.013889609,0.025001297,-0.016744088,-0.0008838221,0.00018729099,0.038694046,-0.030075926,0.011439788,0.0393065,-0.009558676,0.031432077,-0.006485463,-0.032766353,-0.005591388,-0.004544199,0.0017990872,0.016897202,0.022923324,-0.015366063,0.0331382,0.018001808,0.0020506312,0.054246034,0.047815252,0.05267115,-0.0032509342,0.014709862,0.00060083496,-0.021698413,-0.017958062,0.034559973,-0.008951689,-0.0016022265,0.033269443,0.057264563,-0.06155175,0.0042707813,-0.002720504,0.0010813662,-0.013069357,-0.007907234,-0.019489199,-0.014173963,-0.014589558,-0.02091097,0.0022392895,-0.031935163,-0.019434515,-0.0073768045,-0.009728195,-0.0126756355,-0.05389606,-0.043899916,-0.010132853,0.00043712623,0.020812541,-0.016744088,0.02270459,-0.009285258,0.021304691,0.008629057,0.016164443,-0.011428852,-0.0084540695,0.0072729057,-0.09344316,0.0029611115,-0.017772138,0.01832991,-0.02263897,-0.0042051612,0.050352566,-0.02322955,-0.01673315,-0.02701365,-0.05105252,0.02727613,0.010039891,-0.018734567,0.007775994,0.038059715,0.010023486,-0.004218832,0.02721051,0.030010305,0.009236043,0.010964042,-0.009055587,0.033269443,-0.0165691,0.027363624,0.035981745,0.0028189344,0.014961406,-0.015726974,-0.007879892,0.012478775,-0.01067422,-0.002404707,-0.024410715,0.011199181,-0.01673315,-0.007874425,0.034275617,-0.011319485,-0.029091623,-0.034035012,0.0023158463,0.0044430345,0.012610015,0.0032536683,0.019237656,0.041603208,0.022267122,0.0051320465,0.034319364,0.03261324,-0.004700047,0.0025865296,-0.07362586,0.007896298,0.05787702,-0.041887563,0.057177067,0.018483024,-0.0060644,-0.034516227,0.027910458,-0.030732127,-0.010827333,0.010171131,-0.001420404,0.0057253623,-0.0045688064,0.0005051388,0.010756245,0.014392697,0.03112585,-0.011242928,-0.0027560485,-0.031278964,0.0030048583,0.052408665,0.046590343,0.01024222,0.01083827,-0.035347413,-0.007447893,-0.024148233,0.015781658,-0.00958055,-0.018165858,-0.018548643,0.017925251,-0.010225815,0.027604232,-0.0010793156,0.000936455,-0.030185293,0.013266217,-0.0013219736,0.019882921,-0.011571029,0.049652617,-0.01912829,-0.019915732,0.0019289604,-0.056958333,0.0037430855,-0.061770484,0.010767181,-0.00911574,-0.017104998,-0.026991775,0.015016089,-0.0074424245,-0.0011674927,-0.035981745,0.0033876428,0.01736748,0.032985087,0.017083125,0.032831974,0.009733663,-0.027976079,0.0147864185,0.0034259213,0.030513393,-0.05100877,-0.04702781,0.053852312,0.0023513904,0.025701245,0.0020027831,-0.029266609,0.05923317,0.006370628,0.021840591,0.012741256,-0.0021764033,0.013353711,0.011242928,-0.001950834,0.010663283,-0.0063925013,0.043834295,0.023207678,0.029857192,0.009285258,0.026816789,0.0472028,0.0071635386,0.020429756,0.0015502772,0.01707219,-0.011789762,-0.005594122,0.0105211055,0.03447248,0.012489712,-0.001986378,-0.025854358,0.0031114912,-0.0108546745,0.031300835,-0.023076437,-0.0054956917,-0.005574983,-0.006343286,0.008929816,0.047552772,-0.013758369,0.0061190836,-0.028216686,0.04335308,0.009252449,0.006939336,0.004016503,-0.006698729,0.028347926,0.0011709104,0.026554309,-0.029704077,0.010860143,0.006026122,-0.004798477,0.028676027,-0.006408906,-0.0036801996,0.017258113,-0.0067698173,0.009897714,0.03138833,-0.01998135,-0.04554042,0.032569494,0.0430906,0.026466815,0.029135369,0.0077103735,0.0023185804,0.008262677,0.015234823,-0.011713206,0.005298831,0.030075926,-0.013506825,-0.03294134,-0.009596954,-0.040028322,0.0174331,0.007486171,-0.021293756,0.025198158,0.022015577,-0.0071471334,0.008902474,0.012358471,-0.005279692,0.035916124,-0.03267886,-0.021862464,0.0023049095,-0.0014955937,-0.0002175378,-0.00068115134,-0.016525354,0.021162516,-0.021490617,0.004628958,-0.027123017,-0.0081423735,-0.005922223,-0.0013554672,0.012642825,-0.0008223031,0.0154535575,0.022179628,-0.0038907311,0.016590973,0.015530114,0.04567166,-0.03646296,0.011188244,-0.00927979,-0.0058401977,-0.02399512,0.021162516,-0.016055075,-0.007311184,-0.015737912,0.028676027,0.0070541715,-0.054071046,0.0040985285,-0.033356935,-0.033160076,0.007606475,-0.0049898694,-0.010482827,-0.0028517446,-0.052408665,0.02893851,0.011231991,-0.019893857,-0.050921276,-0.065051496,0.0040028323,-0.013813052,0.00089886005,-0.0026740232,-0.020495376,0.012139738,-0.0006770501,-0.008465006,-0.0499151,0.05074629,0.041318852,-0.012445965,-0.008273614,-0.024520082,0.013200597,0.00023069602,-0.0046262243,-0.045759153,0.008125968,-0.030797748,-0.045584165,-0.0020096186,-0.00016627202,0.027976079,0.00009048411,-0.005594122,0.042609382,0.010247688,-0.019707933,-0.007945512,-0.04772776,0.010406271,-0.013299027,-0.0026630864,-0.0029091623,0.0140755335,0.041712575,-0.011975687,0.033335064,-0.01276313,-0.02270459,-0.020287579,0.028763521,0.0140536595,-0.0102094095,0.018811123,-0.04099075,0.0074752346,0.024695069,-0.012314725,-0.017192492,0.008514221,0.009503992,-0.00069448043,-0.035478655,-0.003278276,-0.041340727,0.013823989,-0.00977741,-0.007967386,-0.0002635061,-0.0047738696,-0.017422164,-0.026794916,-0.025460638,-0.002451188,-0.030994609,-0.035675514,0.029026002,0.03655045,-0.007874425,0.009575081,0.032438252,-0.027844839,0.009602423,-0.008388449,0.0038989335,0.041646954,-0.00165691,0.027844839,0.012336598,0.0073330575,-0.0017211632,0.038694046,-0.0328101,-0.005233211,0.019532947,0.010756245,0.02061568,0.040159564,0.03937212,0.041975055,-0.0019152897,0.02399512,0.012511585,-0.0101766,0.03383815,0.0011155434,0.03764412,-0.02766985,0.006168299,0.0023582259,0.01574885,-0.01945639,-0.02462945,-0.00067534123,-0.056827094,-0.00808769,-0.0053917933,-0.00765569,-0.012085054,0.00815331,-0.05127125,0.0062393877,0.013495888,0.0046453634,0.01206318,0.018308036,0.0050336164,0.021042211,0.013080293,0.034559973,-0.043659307,-0.008158779,0.012916243,0.03480058,0.030819621,-0.003404048,-0.017258113,-0.016361304,0.0019344288,-0.023710767,-0.013616192,0.040247057,-0.023470158,-0.021239072,-0.0024361499,0.011778826,-0.0015721506,-0.0039180727,-0.020867225,0.023973247,0.00997427,-0.021993704,0.03055714,0.007885361,0.015464494,-0.012424092,-0.0011832142,0.0040083006,-0.008940753,-0.014895786,0.050090086,-0.017804949,0.001640505,-0.0051047048,0.043834295,-0.019226719,0.0008373411,-0.045496672,0.0051320465,-0.024738817,0.0058183246,0.026401194,-0.021326566,-0.010395333,-0.002278935,0.044752978,-0.033488177,-0.0064635896,-0.013452142,-0.011084345,-0.029813444,-0.032219518,-0.008661866,0.0035516934,-0.052452415,-0.02611684,-0.04510295,0.033488177,-0.0040383767,0.022442108,-0.002232454,0.04663409,0.022529602,-0.016678467,0.01325528,-0.018614264,0.0038852626,-0.043003105,-0.010444549,-0.01942358,0.057920765,-0.004609819,-0.0042051612,0.00071156904,0.0039126044,-0.007940045,0.008322828,0.030382153,0.038759664,-0.0075080446,0.015967581,-0.017695582,0.031366456,-0.005517565,0.009837562,-0.014578621,0.0055995905,-0.027713599,0.00851969,0.007103387,0.019871984,0.03442873,-0.009941461,-0.0053917933,-0.015584798,-0.011264801,-0.0029802509,0.0286979,-0.0043336675,-0.019401707,-0.025810612,0.05044006,-0.016765961,-0.0147645455,0.029441597,-0.0133646475,0.014141154,-0.020342262,0.0032728075,0.043265585,-0.016711278,0.027910458,-0.007797867,-0.002982985,-0.007354931,-0.0015666822,-0.009011841,-0.014239583,0.01588009,0.0098320935,0.053371098,0.022343678,0.013102166,0.027516738,0.007885361,0.047902748,-0.004467642,0.027691726,-0.001733467,-0.032635115,-0.0154754305,-0.01736748,-0.0154098105,0.0420188,-0.023623273,0.021206262,-0.010138321,-0.021468742,0.016722215,-0.023163931,0.00028469597,-0.0126756355,-0.035391163,0.030272786,-0.0133427745,0.022551475,0.0045797434,0.0033876428,-0.0413626,-0.021217199,-0.013900546,0.004322731,0.013309964,0.0403783,0.027429244,-0.018373657,-0.022059325,0.054902233,0.021184389,-0.013167787,-0.03943774,0.0126537625,-0.006343286,0.03884716,0.013823989,0.049390137,0.01077265,0.019073606,0.012336598,0.006381565,-0.0050336164,-0.03620048,0.016689405,-0.01772839,-0.010767181,-0.00019737326,0.02946347,0.017159682,-0.0239295,-0.023535779,0.0069174627,-0.00381144,-0.0118007,0.025570005,0.014141154,-0.020998465,-0.008224399,0.0140974065,-0.0055995905,0.021457806,0.0043856166,0.025438765,0.030404026,-0.0076010064,0.023645146,-0.0058456664,-0.0060370583,-0.055558436,0.010072701,0.00462349,-0.0019316947,0.011855383,-0.005512097,-0.048602697,0.022463983,-0.015223887,0.024913803,0.020178212,0.01836272,-0.0037676932,-0.016131632,0.01849396,0.018800188,0.012281914,-0.018176796,0.0020602008,0.00020848085,-0.0328101,-0.019226719,0.0027601498,-0.034625594,0.015661355,-0.0035872376,0.017750265,0.0038442502,0.038431566,-0.066538885,-0.0017485049,-0.013353711,0.023907626,-0.009990675,-0.023798259,-0.0013076193,0.021632792,0.016634721,0.017695582,0.051446237,-0.011921003,-0.0036118452,0.015770722,-0.0055066287,-0.00014781633,-0.023885753,0.024016993,0.0056324005,-0.039262753,0.010553916,0.0126318885,-0.037906602,-0.0056925523,0.0046152873,0.001038303,-0.010264093,0.00037013894,0.01643786,-0.024870057,0.029419724,-0.016262874,-0.020418819,-0.022529602,-0.017247176,-0.040575158,0.03320382,-0.0076611587,0.0036966046,0.0024033398,0.016230064,0.011910067,0.03151957,-0.0068955896,-0.035653643,-0.0017977201,-0.004511389,-0.011439788,-0.017411226,-0.035281796,0.009236043,-0.044293635,0.029354103,-0.0051511857,-0.0018141251,0.037906602,0.020790666,-0.008836853,-0.03655045,-0.019434515,-0.0044266293,-0.0018578719,0.04090326,-0.011111687,0.027844839,0.012839686,0.010810928,0.024366967,-0.030841494,0.0023172135,0.0063323495,0.025395017,0.002950175,0.0029064282,0.016689405,0.034013137,-0.013397458,0.014425508,-0.0021039478,0.0372504,-0.014589558,-0.011669459,-0.009640701,-0.015234823,0.024826309,0.016864391,-0.00865093,-0.05988937,0.010313308,0.04020331,0.018778315,0.005564046,-0.017794011,0.052977376,-0.050921276,0.015759785,-0.005110173,0.0033985795,-0.0012221762,0.0037212123,0.022059325,0.004713718,0.032263264,-0.014392697,0.023163931,-0.00047984772,-0.009482119,0.002015087,-0.023054564,-0.010510169,-0.003062276,0.0133427745,0.029026002,0.002512707,0.021840591,0.023776386,0.025854358,0.035478655,0.025963726,-0.016197253,-0.025570005,-0.02707927,0.0068026274,0.00268496,0.0023951374,-0.04431551,0.009903182,-0.011242928,-0.05044006,0.04715905,-0.017061252,-0.0041477433,-0.02528565,0.0027054662,-0.01080546,-0.0026179727,0.014666115,-0.0019385301,-0.0035134149,0.022945197,-0.009285258,0.01604414,0.028763521,-0.013463078,0.029638458,0.022212438,-0.0059550335,0.0016623784,-0.00093030307,-0.012664699,0.0041340725,-0.015606672,-0.0016049608,0.0236014,0.004278984,0.012489712,0.030404026,0.0033220227,-0.0071143233,-0.03536929,0.020757858,0.03867217,-0.03891278,-0.023535779,0.0070377667,-0.023623273,-0.023317045,-0.00381144,0.000054213564,0.032000784,-0.01694095,-0.013703685,-0.021599982,-0.03235076,0.01640505,-0.015070773,-0.0038469844,-0.042806245,-0.0067041973,-0.018143985,-0.017695582,-0.00759007,0.03416625,0.03545678,0.0013165053,-0.014884849,-0.021053148,0.023404539,-0.032963213,-0.0012180749,-0.02946347,-0.016164443,-0.008109563,0.040947005,-0.032066405,-0.01736748,-0.0012666066,-0.0059714383,-0.008060348,-0.026291827,0.01083827,-0.011669459,0.0464591,0.002623441,-0.04182194,-0.0044758446,-0.009219638,-0.010526574,-0.021720286,0.025395017,-0.043856166,0.022507729,-0.034035012,0.006857311,0.033947516,-0.025854358,-0.020156339,0.014556748,0.009509461,0.0064253113,-0.005000806,0.011625713,0.013845863,0.0140974065,-0.009454777,0.016426923,0.020921908,0.045190446,-0.0008557968,0.0050199456,0.0154316835,-0.014261457,-0.0090993345,-0.046677835,-0.017772138,0.027319876,0.033816278,0.017214365,0.00918136,0.0075791334,0.029375976,0.008186121,-0.00165691,-0.060633067,0.002780656,-0.005058224,-0.0033356936,0.024235727,-0.0016446062,-0.016186316,-0.017914316,0.030163419,-0.029638458,0.026007473,-0.002232454,0.047859,0.034056883,0.0034286554,-0.028085446,0.012172547,-0.01083827,0.018614264,0.01998135,-0.017137809,-0.03490995,-0.0010287333,0.021490617,-0.002686327,-0.026444942,0.0035872376,0.023645146,0.008125968,0.016295683,0.0016241,0.021665603,0.017531531,-0.016831582,-0.00802207,-0.008689208,0.0012782268,0.0080111325,-0.00023736057,-0.0072893105,0.014206774,0.016317558,0.007562728,0.022310868,-0.005060958,0.012260041,-0.032132026,-0.013178724,-0.007043235,0.013802116,-0.009542271,-0.0045797434,0.0028490103,-0.03808159,-0.0061792354,-0.0015502772,0.024388842,-0.0040848576,0.018887682,-0.0017403024,-0.02637932,-0.008027538,0.023142058,-0.052189935,-0.020375073,-0.010034422,0.0059495647,0.010236751,-0.0030568077,0.04064078,-0.031475823,-0.015825406,0.025460638,-0.0017799479,0.017148746,-0.04182194,0.013681812,0.0005102654,0.006283134,-0.0025947322,0.022726463,-0.0014737203,0.04125323,0.00003620646,0.011363232,0.02193902,-0.0066331085,0.043768674,0.014611431,-0.030950861,0.006042527,0.011680395,0.022234311,0.011592902,0.011603839,0.05166497,0.042893738,-0.00656202,0.02959471,0.010395333,-0.037425388,-0.004672705,-0.017684644,-0.067457564,0.01604414,0.01096951,-0.011505408,-0.013955229,-0.024345094,-0.009761005,-0.006140957,0.03473496,0.028763521,-0.026860535,-0.01080546,0.0016842518,-0.011592902,-0.0070158932,-0.0058784764,-0.0304259,-0.014316141,0.04484047,0.042237535,0.021468742,-0.012369408,0.023492033,-0.016590973,-0.037359767,-0.032066405,0.011614775,0.015519178,-0.011193712,0.043768674,0.014698925,-0.033247568,0.026707422,0.0074369563,-0.0059495647,-0.003986427,-0.0084540695,0.008060348,0.0042270347,0.013528698,0.009438372,0.0030841494,-0.009596954,-0.029944684,-0.003434124,0.030010305,-0.026773041,0.026204333,-0.0016500746,0.015289507,-0.011242928,0.006206577,0.005790983]},{"id":"interface-GatewayUserPinnedDmsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserPinnedDmsUpdateDispatchData\nDescription: USER_PINNED_DMS_UPDATE — pinned DM order changed","meta":{"url":"/docs/typedefs/GatewayUserPinnedDmsUpdateDispatchData"},"embedding":[-0.014363088,-0.00020212815,-0.019061042,0.036560588,-0.0051152515,0.0034359682,0.0064108907,-0.004125854,-0.018832201,-0.04827182,0.02332824,-0.0033047216,-0.020757152,0.044691145,0.033706814,-0.02913001,-0.0028891074,0.03376066,-0.042779654,0.055567782,-0.022372494,0.010533379,0.07344424,-0.0026468062,-0.009611288,0.0067945346,0.023758996,-0.04146046,0.02528011,-0.008978613,0.033733737,-0.025508951,0.03569907,-0.01981487,0.0027309386,0.022466723,-0.022910941,0.060359966,-0.023732074,-0.022668641,-0.0039373976,-0.053306304,-0.011993919,0.014147708,-0.053683218,0.022022504,-0.017741846,0.008918037,0.01984179,0.00792864,0.011280475,-0.00043286133,-0.0059801326,0.016799562,0.039522048,0.018764896,0.06558291,0.0057748496,0.004499402,0.0022665276,-0.01132759,-0.050910212,-0.015238064,-0.014591928,0.020945609,-0.0015152249,-0.029506924,0.033814505,0.02459359,-0.0063469503,0.016220732,-0.0059565757,-0.029614614,-0.033006832,0.0009271393,0.002714112,0.0055796625,0.017957225,-0.017257243,-0.009819937,-0.02300517,0.008830539,-0.05960614,-0.030879965,-0.035402924,-0.047060315,-0.061006103,0.008393051,-0.029022321,-0.0019989864,0.034568332,0.036964424,-0.010950676,0.005556105,-0.019612951,-0.0144707775,0.011192977,0.010842987,-0.045175746,0.061490707,0.030314595,-0.10278963,-0.044341154,-0.045283437,0.02447244,-0.03502601,0.006323393,0.0090257265,-0.06041381,-0.0043546944,-0.020137938,0.003819612,-0.04361425,0.00291603,0.026706997,-0.024445517,0.03909129,0.04862181,-0.01982833,0.024310905,-0.0682213,0.007046932,0.0065253107,-0.0451219,-0.016059197,-0.01916873,-0.0023136416,-0.040195107,-0.038149007,-0.011300667,0.018441828,-0.008413242,0.008218056,-0.008817079,-0.02606086,0.019989865,0.02175328,0.041648917,-0.042914268,-0.0036850001,-0.0016809659,-0.060521502,0.02311286,0.011953535,-0.015816895,0.00668348,-0.059875365,0.01303043,0.050129466,0.021712895,-0.067790546,0.044368077,-0.0040383562,0.007289233,0.03367989,-0.013292924,0.009954548,-0.012391023,-0.024916658,-0.04113739,-0.01439001,-0.04837951,0.006047439,0.011866037,-0.06402141,-0.02843003,0.007524804,-0.038202852,-0.07150583,-0.027676202,0.04240274,-0.0065690596,-0.05540625,-0.017849535,0.023543619,-0.0011921565,-0.030503051,-0.00013250858,-0.03446064,-0.023543619,0.01916873,0.02085138,-0.0061214752,-0.07759029,-0.019020658,-0.02017832,-0.021995582,0.023274394,-0.009368987,-0.025912788,0.03454141,0.04770645,0.019209115,0.010042046,0.01008916,-0.065636754,0.01587074,-0.016947636,0.041191235,-0.0058185984,0.007154621,-0.04837951,0.024270521,0.0037085572,-0.033222213,-0.012532366,0.004082105,-0.0016776006,-0.029587692,-0.007894986,0.03930667,0.044744987,-0.010264155,-0.01156316,-0.027056988,0.009981471,-0.047087237,-0.02311286,0.007995945,-0.03351836,0.008487279,0.014632312,0.008830539,0.038391307,0.009382448,0.035322156,-0.02480897,0.006663288,-0.015709206,0.022924403,-0.007693069,-0.007228658,0.020124476,-0.05599854,-0.000102536396,0.01597843,-0.003350153,-0.055029336,0.038256697,0.009193991,-0.002345612,0.0034931782,-0.030745354,0.038256697,-0.024714742,0.0055123563,0.047787216,-0.0032777993,-0.02016486,0.07705184,-0.015534211,0.05039869,-0.0062729134,-0.032199163,-0.017634157,0.014080402,0.011347782,0.025643563,0.04135277,0.018980276,0.03376066,-0.008197864,0.0023641211,0.041514304,-0.0045364206,0.011758348,0.07635186,-0.007760375,-0.04035664,0.017876457,-0.004940256,0.007975754,0.022816714,0.01178527,-0.0141611695,-0.008985343,-0.003762402,0.032926064,-0.006932512,-0.011367973,-0.025818558,-0.036022138,0.013306384,0.037233647,-0.02528011,0.049941007,0.0009717295,0.034514487,0.009429562,-0.0135217635,-0.07236735,0.009887243,0.0023809476,-0.018536055,0.019680256,-0.012741014,-0.03782594,-0.024068603,-0.03962974,0.010748759,0.03965666,0.03249531,-0.021847509,-0.023072476,0.02265518,-0.016893791,0.07269041,-0.044395,0.0016052467,-0.022601334,-0.0312838,-0.04404501,-0.0057950416,0.028591564,-0.022466723,-0.0007285868,0.027272366,0.021780202,-0.025576258,-0.01767454,0.006733959,0.022345573,-0.010136275,-0.07382116,0.026895454,-0.017661078,0.019343726,-0.008938229,0.049483325,0.050048698,0.032576077,0.008810348,0.0040147994,-0.031849172,0.017836073,0.04749107,-0.013185234,-0.003940763,0.0040619136,-0.0010045412,-0.0062056077,-0.035429846,0.013292924,-0.0448796,0.002288402,-0.04420654,-0.073228866,0.0425912,0.017122632,0.018751435,-0.010001663,0.037556715,0.048325665,0.0011273745,-0.02176674,-0.04065279,0.036614433,-0.023880148,-0.028860787,0.030879965,0.0050815986,0.010775681,0.010028585,0.021497518,-0.026464695,0.014066941,-0.05360245,0.0008215531,0.0020376872,0.0031465527,-0.023435928,-0.017930303,-0.03962974,0.037799016,-0.04431423,-0.005519087,-0.016382266,0.011758348,-0.0034191418,0.009920895,0.03604906,0.03182225,0.02040716,0.011031443,0.015399599,0.03876822,-0.025387801,0.012518905,-0.036291365,-0.01993602,0.013440996,-0.034487564,0.02187443,-0.017539928,-0.057613883,0.034083728,0.047867984,0.010681452,0.031418413,-0.0013747239,-0.0122631425,-0.022345573,0.0014319338,0.013905407,-0.018509133,0.046387255,-0.0036547126,0.02459359,0.050937135,0.0070536626,0.042779654,0.0015009225,0.027299289,-0.0028941554,0.036345206,-0.043587327,0.023032093,-0.018307216,0.0036176944,0.053387072,-0.02754159,-0.0030741987,0.030503051,0.021026375,-0.008399781,-0.008238247,0.0074978815,0.014026558,0.036775965,-0.07382116,-0.017607234,0.05766773,0.039225902,-0.024674358,0.03524139,-0.03615675,0.0016649807,-0.007874795,0.0069998177,-0.047168,-0.047275692,0.0066229044,-0.0012409532,0.025912788,-0.0071680825,0.007854603,0.003188619,0.016166886,0.03163379,-0.052902468,-0.037287492,-0.025414722,-0.015884202,0.025858942,-0.08259785,0.0047753565,-0.009207453,0.040275875,-0.026558924,0.014861152,0.015157297,0.011280475,-0.00997474,0.024122449,-0.020434083,0.010169928,-0.015426521,0.0005977609,-0.010486266,-0.0020713403,-0.008433434,0.011186247,0.014403471,0.03117611,-0.02480897,-0.015816895,-0.0017036817,-0.0037119226,-0.026680075,0.017580312,-0.010930485,-0.000083448846,-0.014713079,0.04767953,0.07764413,0.1067203,0.017795691,-0.013575608,-0.0051152515,-0.012155453,-0.029776148,0.0050243884,0.011442009,-0.016126502,0.014040019,0.008796887,0.023153244,-0.07306733,0.0058286944,-0.022628257,0.017970687,-0.0002946738,0.034945246,-0.007894986,0.08275938,0.026101243,-0.029991526,0.028914632,-0.007228658,-0.04294119,-0.0015169076,-0.010398768,-0.007295964,-0.039333593,-0.03806824,-0.0084670875,0.020030247,-0.0022581143,0.0032189065,0.058529247,0.00025555224,0.00048923003,0.0069190506,0.010028585,0.013070813,-0.008056521,-0.017943764,-0.06698287,-0.01959949,-0.03276453,0.010829526,-0.01892643,-0.0052666897,0.04735646,-0.012088147,0.006787804,-0.009254566,-0.008749772,0.02210327,0.013091005,0.011751617,-0.013562147,-0.014040019,0.0064748316,0.040087417,-0.0100757,0.03470294,0.033006832,0.029856915,0.007847873,-0.007147891,-0.009254566,-0.005404667,0.016395727,0.035402924,0.009469946,-0.020097554,-0.0564293,0.029506924,0.011071827,-0.011697772,-0.006888763,0.004331137,-0.031795327,-0.016503416,0.030691508,0.0135958,-0.025697408,-0.041756604,0.008325744,-0.051610194,0.049160257,-0.023274394,0.023637846,0.036183674,0.016113043,0.006458005,0.012626594,0.03591445,-0.0100151235,-0.0023304683,-0.06132917,0.03241454,0.024957042,-0.04226813,0.04105662,0.013050621,-0.00065917755,-0.027339673,0.042537354,-0.02186097,-0.031149188,0.041272003,0.021335984,0.029318467,0.0051421737,-0.032253005,-0.00419316,-0.0035705802,-0.000042670916,-0.007094046,0.004886411,-0.029264623,-0.03117611,0.04361425,0.061221484,-0.017432239,0.039818194,-0.016516877,0.0066498267,-0.0009675229,0.020595618,-0.023409005,-0.021147527,-0.018711051,0.006966165,-0.0019535548,0.013124659,0.0033097696,0.00997474,-0.0057647536,0.017647617,-0.013393882,0.004331137,-0.02845695,0.056590833,-0.012303526,0.010587225,-0.016907252,-0.023193628,-0.021039836,-0.062136844,-0.016032275,-0.010291078,0.004634014,-0.02913001,0.0271916,-0.03761056,0.014228475,-0.03954897,0.02083792,-0.0032576076,0.008783425,0.019249499,0.030179983,0.008965151,-0.00013902884,0.0024297445,-0.04272581,0.02991076,-0.035268314,-0.018037992,0.062513754,0.034272183,0.033572204,-0.04522959,-0.020326395,0.032576077,-0.024041682,-0.005566201,-0.021820586,0.010607416,0.0018610093,-0.005118617,0.014201554,0.008823808,-0.04361425,0.000494278,0.040625867,0.03979127,-0.0030657856,0.032549154,0.064075254,0.017822612,-0.020245627,-0.0024970504,-0.002091532,-0.015170759,0.0035571188,0.0032054454,0.040948935,0.01042569,-0.02845695,0.010587225,0.03954897,-0.02910309,0.0078007584,-0.003523466,-0.010795873,0.0031431874,-0.008150749,-0.013918868,0.03343759,-0.038902834,0.008621891,-0.027676202,0.016274577,-0.0043647904,-0.01688033,-0.016988019,-0.032253005,0.0011509316,0.014134248,0.004331137,0.006266183,-0.013918868,0.0073834616,-0.030799199,0.023610923,0.010863178,0.038552843,-0.010910293,-0.037879784,0.02198212,0.018011069,-0.009766092,-0.038687453,0.023193628,0.055352405,0.01495538,0.009813206,0.020568695,-0.020824458,-0.012532366,0.0014925093,0.00022799887,0.0033619318,0.027272366,-0.030745354,-0.016570723,-0.02662623,0.00055359135,0.020339856,0.0019485069,-0.028026193,0.0006053328,0.04496037,0.010681452,-0.0215379,0.008238247,-0.009274758,0.013313115,-0.0087565025,-0.032952987,0.032226086,-0.0078007584,-0.0018256736,0.037368257,-0.029856915,-0.01109875,-0.04202583,0.010546841,-0.016180348,0.048567966,-0.00092798064,-0.0039138403,0.023489773,0.010506458,0.0059902286,0.021618668,0.013245809,0.029318467,0.007807489,0.014484238,-0.035779838,-0.021968659,-0.032441463,-0.0061147446,-0.01054011,-0.0059363837,-0.012330448,0.0131919645,-0.015386138,0.011758348,-0.019882174,-0.027918505,-0.033114523,-0.0065253107,-0.012451598,-0.013414074,-0.06434448,-0.004940256,-0.00013587387,-0.030529974,0.0106141465,-0.008036329,-0.008534393,-0.025199344,-0.02697622,0.04961794,-0.012868896,-0.001795386,0.0012804955,0.008197864,0.006851745,0.0025492124,0.042187363,-0.1067203,0.00002871019,0.033222213,0.023651307,-0.004442192,-0.036318284,0.047544915,0.029480001,0.036318284,-0.06482908,-0.012983316,0.0049436213,-0.03833746,-0.036883656,0.038229775,0.012821781,-0.016261116,0.010405499,0.0038431692,-0.0292377,-0.014968841,-0.020568695,-0.042806577,0.01632842,-0.015655361,-0.03241454,-0.020326395,0.02991076,0.049806394,-0.052175563,0.06579829,-0.025253188,-0.005233037,0.012909279,0.01484769,-0.013636183,0.02221096,0.021685975,-0.008413242,-0.0056503336,-0.013077544,-0.014188092,-0.0004158245,-0.009281489,-0.0017852901,-0.004869585,-0.0010449247,0.019195653,-0.040195107,-0.008844,-0.043937318,-0.004886411,-0.00031844122,-0.007659416,0.0049907356,-0.005360918,-0.03147226,0.03174148,0.00057167985,-0.055190872,0.018186064,-0.0011652341,-0.00600369,0.001795386,0.020972531,-0.00006783177,0.0067406897,-0.016503416,0.020420622,0.014861152,0.0045397854,0.046629556,-0.02980307,-0.0018138951,0.002656902,0.013602531,-0.0112199,0.017472623,0.0067238635,0.019128349,0.03976435,0.03588753,-0.027487746,-0.0015135424,0.024539746,-0.006787804,-0.0064176214,0.00039416042,0.052310176,-0.022668641,0.0022076347,-0.0040383562,-0.01926296,0.004172968,0.017068787,-0.013676567,0.010849717,-0.005236402,-0.00669021,0.011489124,0.007376731,-0.039360512,-0.033922195,-0.021551361,-0.038149007,-0.010149736,-0.01087664,0.0034595253,0.0292377,0.02287056,0.011240092,0.02740698,0.0109641375,0.0093757175,-0.009005534,0.0018206256,-0.00549553,0.006481562,0.015170759,-0.012909279,-0.004341233,-0.013548685,0.009813206,0.018105298,-0.025670486,0.01109875,-0.0010895149,-0.01709571,-0.0023439294,0.015911125,0.035402924,0.024553208,-0.003318183,0.006602713,-0.010095891,-0.02468782,0.026087781,0.012458329,-0.011697772,0.0055964887,0.022709023,0.01484769,-0.022035964,0.012505444,0.022278266,0.035510615,-0.015816895,-0.022009043,0.018778358,-0.020932147,0.006252722,-0.0147400005,-0.02062254,-0.011307398,-0.021699434,0.018387983,-0.026949298,-0.000739524,0.011812192,0.044744987,0.009416101,0.019276422,-0.028160805,0.020447545,-0.018293755,0.0050008316,0.009348795,0.009732439,-0.034056805,-0.013589069,-0.017607234,-0.004906603,-0.0021756645,-0.012505444,-0.0066935755,0.05505626,0.011428549,-0.0030220367,0.0020427352,-0.011280475,-0.0021218196,0.029668458,-0.011240092,-0.008911306,0.046791088,-0.0021369637,0.021564823,-0.0059969593,-0.0017196668,0.009368987,-0.009389179,0.05836771,0.04011434,0.025118576,0.04302196,-0.026262777,0.028995398,0.036318284,-0.0019131714,-0.01700148,0.0029412697,0.008063251,-0.027124293,-0.009193991,0.01950526,-0.0028369455,-0.008541124,-0.004294119,-0.036668275,0.036291365,-0.0055931234,0.02878002,0.0051859226,-0.02845695,-0.010237234,0.013400612,0.00058598234,-0.034945246,0.0026282968,-0.008877654,0.0030910254,0.00050815986,0.010116083,0.038902834,-0.024216678,-0.009315142,-0.06267529,0.0076055713,-0.0154399825,0.014591928,0.008581507,0.00736327,0.0078007584,0.008218056,-0.008783425,-0.009308412,0.01031127,0.015103453,0.006845014,-0.005673891,-0.023382084,-0.01076222,-0.029480001,-0.044395,0.007457498,-0.004297484,-0.012195837,0.027353134,0.0000991711,-0.005371014,0.0058085024,0.00872285,0.0073700002,-0.011482393,0.025132038,-0.0027679568,-0.028295416,-0.017405316,0.0028571372,-0.007531535,-0.009099763,0.013091005,0.0047989134,-0.008514201,0.009153608,0.003947493,-0.006188781,0.02332824,0.0052296715,-0.0063301236,0.040733553,0.031068422,-0.00039458106,-0.0049604475,0.0031566485,0.0046643014,-0.040006652,0.02740698,-0.0067474204,0.044825755,-0.02390707,0.007894986,-0.005916192,-0.00067979,0.015776513,-0.062298376,0.02775697,0.0050580413,-0.010257425,0.0018912969,0.011455471,0.027622357,0.006165224,-0.024903197,-0.0050344844,-0.019989865,-0.009496868,0.030045372,0.040625867,-0.0448796,-0.011697772,0.00057041785,-0.0055426443,0.03182225,0.050587144,-0.0071882745,0.0017263973,-0.00095910963,0.018037992,-0.0038263428,0.016907252,-0.061975308,0.019209115,0.011145864,-0.014941919,0.025670486,-0.00872285,0.0002116982,0.009268028,0.0069190506,0.017418778,0.029264623,0.024337828,-0.01506307,-0.0018694225,-0.0034191418,0.0009708882,0.0042099864,0.027151216,-0.009422831,0.013878485,-0.01382464,0.0040955665,-0.011017982,0.0036446166,0.026451234,0.005135443,0.015493827,0.02117445,-0.0068820324,-0.040195107,-0.0032677033,-0.018037992,0.02287056,-0.019518722,-0.012895818,0.0022042696,0.015305371,0.006932512,-0.0066666533,0.0881977,-0.0371798,0.029829992,0.01597843,-0.015022686,0.0050008316,-0.019734101,0.005054676,-0.026962759,-0.020380238,0.026585847,0.025307033,-0.025172422,-0.003360249,0.025320495,-0.02017832,-0.034487564,0.000463149,0.018428367,-0.033356823,0.04986024,0.013205426,-0.03217224,0.0074978815,-0.012094878,-0.03901052,-0.0015631805,-0.033464514,0.017418778,0.02821465,0.038149007,-0.037422102,-0.00033337474,-0.014497699,-0.02786466,0.004162872,0.016180348,-0.008527663,0.03785286,-0.044233464,0.025253188,-0.03206455,-0.0075719184,-0.0093353335,-0.024149371,0.0019131714,0.011960265,-0.03343759,-0.007773836,-0.05099098,0.017499544,-0.017270705,0.038014393,-0.021659052,0.003987877,0.007376731,0.012532366,0.02786466,-0.005448416,-0.015426521,-0.0203937,0.007982484,0.01371022,0.008069982,0.031122267,0.0077334526,-0.018845662,0.02346285,-0.004284023,0.034379873,0.002939587,0.013615992,0.017284166,-0.0058724433,0.008743041,0.005054676,-0.012135261,-0.02775697,-0.005475338,0.0520948,0.010264155,-0.00047450687,0.025630102,0.016611107,-0.059067693,0.029291544,0.030395363,0.02913001,-0.00691232,-0.02062254,0.04372194,0.017607234,-0.0138111785,0.016395727,0.007693069,0.0006987198,-0.000834173,-0.000835435,-0.022453262,0.00013261373,-0.0025963266,0.025387801,-0.0010869909,-0.011394896,-0.01677264,-0.008312284,0.025078192,0.0037825939,-0.038149007,-0.042564277,-0.02888771,-0.027622357,-0.00059818156,0.0063267583,-0.008669005,-0.03147226,-0.0009313459,-0.008144019,0.00022568523,0.032872222,-0.015938047,0.037906706,-0.014524622,0.02786466,-0.020353315,0.0050176578,0.038687453,-0.0033804409,-0.0030624203,0.017593773,-0.0333299,-0.0008707706,0.019626413,-0.0057378314,-0.003059055,0.03036844,-0.024041682,-0.022251343,-0.0022143654,0.004610457,-0.007995945,0.015614978,0.0010937215,0.014309242,-0.010546841,0.023409005,0.0078007584,-0.0023102765,-0.020111015,-0.026235856,0.024189755,0.020232165,-0.009126686,-0.009591096,-0.0018593266,-0.021228293,-0.007995945,-0.009712247,0.024862815,0.0061483975,-0.024580128,-0.030799199,-0.040383562,-0.0013528494,-0.013232348,-0.012478521,-0.024445517,-0.034514487,0.020380238,-0.025535874,0.0031717925,0.015332293,-0.0103247315,0.016301498,-0.03217224,-0.008594968,-0.0147803845,-0.0024045047,-0.027433902,-0.052660167,-0.018509133,-0.0069728955,0.01587074,0.009456485,0.0014504431,0.02991076,-0.0077671055,-0.020662924,0.0096853245,-0.01257948,0.008864192,-0.014215015,0.009429562,0.006424352,-0.00475853,-0.031229956,-0.004839297,0.019572567,-0.007100777,0.026383929,-0.022924403,0.012868896,-0.005906096,0.0112939365,0.0523371,0.0016161839,0.031256877,-0.043318104,0.033895273,-0.01790338,0.0005317169,0.031203033,0.027555052,-0.010829526,0.034649096,0.0014588563,-0.0023927263,0.03604906,0.018347599,0.0017465891,0.021672513,-0.01393233,-0.013131388,-0.033572204,-0.03198378,0.013656375,0.0348914,-0.0068281875,0.03852592,0.0067036715,0.008204594,-0.018953353,-0.024795508,-0.023435928,0.013104467,-0.017459162,0.0125727495,0.0064512743,0.0070334706,-0.0050075618,-0.0020831188,0.0080767125,-0.025993554,-0.013690028,-0.012747745,0.030879965,0.02073023,-0.020905225,-0.042968113,0.020030247,-0.010896832,0.029022321,0.026545463,-0.016530339,-0.013508302,0.021241754,0.012895818,-0.004553247,0.00413595,0.015601517,0.041433536,-0.010701644,0.002848724,0.0001937149,0.0047854525,0.012141991,-0.019020658,-0.008702658,0.008709389,0.0016077707,-0.014511161,0.018347599,0.021551361,0.023530157,0.034083728,-0.016355343,0.012404485,0.016584184,0.0312838,0.0047989134,-0.035510615,0.0011585035,-0.029399235,-0.017243782,-0.013891946,-0.0093353335,-0.018872585,0.013373691,0.0010121131,0.0023859956,-0.0025307033,0.00736327,-0.04326426,-0.01574959,0.0131919645,0.022641718,-0.0348914,-0.011973727,-0.006138302,0.020878302,-0.02357054,0.014807307,0.054463968,-0.0030489592,0.011166056,0.0065959822,-0.0016666633,0.012121799,-0.024189755,0.00209658,0.007827681,0.02480897,0.02676084,-0.0017432239,0.0041426807,0.026949298,-0.009920895,0.04431423,0.048460275,0.006733959,0.041433536,0.0151303755,-0.0024061874,0.012599672,0.04522959,0.031256877,0.0023287856,0.02390707,0.028322339,-0.0054787034,0.01088337,0.0031633792,0.009443023,0.026155088,0.01723032,0.0055325483,-0.034137573,0.020299472,-0.0119131515,-0.014591928,-0.05788311,0.0073498087,0.011778539,-0.017580312,-0.0026737284,0.0062392605,-0.023732074,0.0062056077,0.013663106,-0.026276238,-0.005835425,0.0069055893,-0.018293755,0.0059532104,0.04172968,-0.0035503884,0.020757152,-0.015695745,0.026828147,-0.0064714663,-0.015399599,-0.046441097,-0.011569891,0.0018037992,0.000307504,0.020918686,-0.00045010846,0.00027469237,0.002475176,0.04428731,0.032872222,0.014026558,-0.03249531,-0.0059868633,0.018280294,0.016786102,-0.01167085,-0.011926613,0.008440165,0.011468932,0.033383746,0.039064366,-0.040437408,0.023476312,0.027083911,0.007067124,-0.036641352,0.01234391,0.0010735297]},{"id":"interface-GatewayUserSettingsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserSettingsUpdateDispatchData\nDescription: USER_SETTINGS_UPDATE — user settings (theme, locale, etc.) changed","meta":{"url":"/docs/typedefs/GatewayUserSettingsUpdateDispatchData"},"embedding":[-0.01859798,-0.00065280567,0.010863145,0.010141227,-0.010370407,0.0016945016,0.0390294,0.007270744,0.018025028,-0.006027441,-0.038135596,0.0020740815,-0.06824988,0.032933205,0.052207265,-0.015664471,0.013235161,0.05005297,-0.03948776,0.053399004,0.009499522,-0.02171483,0.03880022,0.007643162,0.0016099914,0.021210633,0.01336121,0.016523898,0.008095793,-0.027112026,0.0087088505,-0.012799718,0.04136704,-0.03403327,0.02832668,0.004726843,-0.012822636,0.0037556917,-0.014392521,-0.03971694,-0.024820223,-0.06879992,-0.01556134,0.0005539717,-0.051519725,-0.009688596,-0.0028260793,0.029060058,0.00003433228,0.00018853658,0.011882997,-0.01683329,0.007941096,-0.0046552243,0.054086544,-0.005468814,0.04216917,-0.024293108,-0.020156404,0.00048092048,0.0027501632,-0.034193695,0.0021829421,-0.04670694,0.024201436,-0.01615721,0.0007136817,0.02287219,0.04077117,-0.01787606,0.025736945,-0.0037957982,-0.028624617,-0.01800211,0.024476454,0.026470322,0.018575061,-0.0058383676,0.0042197816,-0.0046093883,-0.015148816,0.021966929,-0.080075584,-0.022219026,-0.0036153188,-0.012226768,-0.055049103,-0.015160275,0.010043825,0.0140602095,0.0040965974,0.03137478,-0.018414635,0.028303763,-0.023605568,-0.0406795,-0.0049875355,-0.014140422,0.0052310396,0.047944512,0.054636575,-0.07796713,-0.027959993,-0.018838618,0.015985323,-0.035706285,0.016466603,0.007935367,-0.05005297,-0.0035207819,-0.09478896,0.032474846,-0.009528169,-0.017589586,-0.012089259,0.0020239484,0.049411267,-0.05853264,0.016008241,-0.008960948,-0.006795195,0.027020354,0.0005342765,-0.02880796,0.008221842,-0.05509494,-0.026997436,0.01684475,-0.096439056,-0.011917374,0.03192481,0.01080012,0.03517917,-0.02253988,-0.0038760114,-0.0033603557,-0.016924962,0.04333799,-0.023765994,-0.026149468,-0.009934965,0.001330678,-0.004391667,0.008817711,-0.055919986,-0.004832839,0.013109111,0.05830346,0.027249534,0.03914399,-0.06348293,0.040221136,-0.023628486,0.028372517,0.0334374,0.011533497,0.015549881,-0.031145599,-0.029610092,-0.014209176,0.0011100919,-0.06522471,-0.0029062922,-0.013349751,-0.034354124,-0.069991656,-0.009997989,-0.024018092,-0.07255847,-0.044552643,-0.00090096495,-0.032818615,-0.015045685,0.014243553,0.008279137,0.013819571,-0.0033317083,-0.029105894,-0.016924962,0.020821027,0.027364124,0.01673016,-0.052894805,-0.038662713,-0.00012506438,-0.037608482,-0.028647535,0.015526963,0.00015120527,-0.045606874,0.03401035,-0.018987585,0.009161482,-0.02740996,-0.009144293,-0.050465494,0.00034162184,-0.037310548,-0.023743076,0.009883399,0.023674322,-0.054774083,0.021668995,-0.015251947,-0.027455796,-0.022161731,-0.011940292,0.029953862,-0.04006071,0.0037213147,-0.0038960646,0.040817007,-0.026859928,0.0035494294,-0.066737294,0.058257625,-0.026561994,-0.0044289087,-0.010490727,-0.007711916,0.038731467,0.0014202015,0.052803133,-0.0048729456,0.020947076,-0.0037843392,-0.008313514,0.027914157,-0.031031009,0.0013564607,-0.0038387696,-0.009952153,0.0054401667,-0.050832182,0.0015154545,-0.020729356,-0.013303915,-0.059311856,0.008834899,0.049548775,-0.030045534,-0.00021073842,-0.02335347,0.01567593,-0.011676735,0.011109513,0.035500024,0.003775745,-0.034354124,0.026516158,-0.0038330401,0.06554556,0.022940945,-0.07714208,-0.009482333,0.0017288787,0.04214625,0.022310698,0.0020697843,0.040725335,0.022918027,-0.07540031,0.013647685,0.03531668,-0.0070530227,-0.018838618,0.047348645,0.03937317,-0.0336895,-0.020293914,0.025484847,0.014736291,0.02915173,0.0244077,-0.003692667,-0.009745891,0.034468714,0.03043514,-0.00540006,0.015698848,-0.051382218,-0.026195304,-0.009797457,0.018391717,-0.027707895,0.04354425,0.010307383,0.06320792,0.011315776,0.008897924,-0.014312308,0.022757601,0.0059758755,-0.032956123,0.01312057,0.04111494,-0.021279389,-0.020419963,-0.026539076,-0.0075457604,0.05124471,0.0077520227,-0.042123333,-0.00033947328,0.051198874,-0.0050534247,0.0634371,-0.030847665,0.034079105,0.0011501985,-0.025370255,-0.07150424,0.00033249045,0.004311454,-0.035591695,-0.010387596,0.03126019,0.05518661,-0.0216117,0.0048643514,0.0019265467,0.03414786,-0.020374127,-0.026172386,0.029793436,-0.03857104,-0.018265668,-0.009064079,0.01650098,0.024705634,0.024338944,-0.02392642,0.0015426697,0.0035351056,0.051840577,0.032131072,-0.029082976,0.020167863,-0.010433432,-0.039991956,0.0051995274,-0.058807656,-0.021542946,-0.08021309,0.031214353,-0.021462733,-0.034262452,0.008554153,0.0047211135,0.027937075,0.03309363,0.0059987935,0.0059529576,0.001361474,-0.048036184,-0.029403828,0.0441172,0.010754284,-0.012490325,0.053811528,-0.008387998,0.017612504,0.017818766,-0.033185303,0.010903251,-0.0033890032,-0.04136704,0.04354425,0.007482736,-0.018953208,-0.035362516,-0.0724668,-0.05284897,0.022895109,-0.026172386,-0.017154144,-0.0031999296,-0.034606222,0.004148163,0.0020167865,0.0035608883,0.050969694,0.013716439,0.011556415,0.04670694,0.00111797,-0.02358265,0.01383103,-0.020156404,-0.0063712117,0.020236619,-0.0045520933,0.014656078,0.0046896012,-0.015183193,0.02044288,0.056378346,0.039189827,0.023066994,-0.038250186,0.012857013,-0.012788259,-0.0024622555,0.007339498,-0.036920942,0.04473599,-0.023490978,0.033368647,0.04959461,-0.034193695,0.026424484,-0.032085236,0.03020596,0.0027200833,0.018838618,-0.022345077,0.013189324,-0.008811981,0.0047984617,0.04936543,-0.020591848,0.01753229,0.009327637,0.031099763,0.03123727,-0.028372517,0.034904156,0.008227572,0.009705785,-0.037493892,-0.057570085,0.04077117,0.03215399,-0.008004121,0.036531337,0.011298588,0.0005478841,-0.006669146,0.03112268,-0.01788752,-0.04982379,0.022035683,-0.018517766,0.029335074,0.0011279966,0.0076775393,-0.020419963,0.021783585,-0.0033832737,-0.034927074,-0.025118157,0.0039333063,-0.01694788,0.048723724,-0.03939609,0.022310698,-0.011779866,0.030847665,0.012421571,-0.0032772778,-0.011476202,0.026103633,-0.020099109,0.0457673,-0.0061993264,0.0067550885,0.0013858244,0.021863798,-0.033506155,0.01940011,-0.013853948,0.016523898,0.023765994,0.0140143735,-0.017509373,-0.008617179,-0.004291401,0.00894376,-0.003681208,0.047211137,0.0028647534,0.05074051,-0.0025997637,0.014461275,0.06939579,0.053811528,0.00012121488,0.00493597,-0.00084438606,-0.0012182364,-0.009207318,0.0026226817,0.027020354,-0.010043825,0.026882846,0.024911895,0.006961351,-0.04276504,-0.009831834,0.0024436347,0.0039075236,-0.02520983,-0.010823038,-0.0013106246,0.030389303,0.011441825,-0.045148514,0.006084736,-0.05376569,-0.066828966,-0.013372669,0.007190531,-0.002486606,-0.047440317,-0.02754747,-0.010330301,0.0019480323,0.011671005,0.030274713,0.04973212,-0.010616776,0.014954013,-0.0026040608,0.009677137,0.00558054,0.021474192,0.045904808,-0.09616404,-0.016168669,-0.022711765,0.027868321,-0.0334374,-0.01289139,0.011098054,0.0016930692,0.0050018593,-0.011716842,-0.031787302,0.023399306,0.019709503,0.02310137,0.0003996331,0.0045836056,0.009012514,0.02322742,-0.008319244,0.030183041,0.0021958335,0.017750012,-0.03586671,0.030366385,-0.019789716,-0.0014739156,0.0269516,0.0034176507,0.019090716,0.0028203498,-0.026561994,-0.02986219,-0.0020311102,-0.000619861,-0.04890707,0.0029005627,0.0045406343,-0.017898979,0.051611397,0.007631703,-0.017142685,-0.015939487,0.0050562895,-0.030847665,0.04239835,-0.009562546,0.054407395,0.016684324,-0.03231442,0.012375735,0.015928028,0.037150122,0.023788912,-0.004102327,-0.08099231,-0.015595717,0.054957427,-0.074758604,-0.013074734,-0.0038874703,-0.0030652862,-0.016787454,0.035339598,0.0021156203,-0.005099261,0.053490676,0.020637684,0.03650842,0.0050333715,-0.014507111,0.0033403025,-0.009745891,-0.005434437,-0.025622355,-0.022608634,-0.02298678,-0.012261145,0.062062018,0.06375795,0.01626034,0.018643815,-0.015045685,-0.0030824747,0.006949892,0.02566819,0.008170277,0.0050935317,0.026653666,-0.0067550885,-0.011688194,-0.01220385,0.019251144,-0.0195147,-0.03032055,0.02903714,-0.004984671,0.011201186,-0.005216716,0.05587415,-0.038273104,0.0032686836,0.01114962,-0.06664562,-0.011407448,-0.019904306,0.016340554,-0.004855757,-0.048265364,-0.04904458,0.033139467,-0.03137478,-0.00836508,-0.015526963,0.0153665375,0.0073796045,0.017188521,0.013762276,0.0429713,0.017051011,-0.029220484,0.006634769,0.017486455,0.030526811,-0.041756645,-0.04028989,0.012329899,0.020259537,0.03401035,0.010599587,-0.010788661,0.046890285,-0.0140602095,0.0037470974,-0.019549077,-0.0044432324,-0.005296929,0.009780268,-0.008531235,0.020958535,-0.043819267,0.0087317685,0.01998452,0.033987433,0.017440619,0.051382218,0.07677539,0.01891883,0.015469668,0.005305523,0.03355199,-0.019583454,-0.0036898023,0.022585716,0.033987433,0.015549881,-0.038754385,-0.01219239,0.03520209,-0.01753229,0.051153038,-0.021772126,0.00685249,0.0011666708,-0.011705383,0.0038473639,0.022092978,-0.026584912,-0.0074999244,0.0065545556,0.04530894,-0.015595717,-0.010811579,0.0069785393,-0.004858622,0.0167187,0.023124289,0.009230236,-0.017005175,-0.010164145,0.0044403677,-0.006560285,0.037470974,0.012100718,0.00789526,-0.007986932,-0.04982379,0.014140422,0.0392815,-0.0042770766,-0.035683367,0.059678543,0.03751681,0.020041814,0.0069212443,0.016798913,-0.00039855883,0.036302153,0.008210383,0.018838618,-0.012089259,0.017509373,-0.014426898,-0.026057797,-0.020523094,0.0074999244,0.023834748,0.023834748,-0.027387042,-0.00036525607,0.023399306,-0.0004959604,0.0181167,0.023857666,0.010295924,0.0063024573,-0.023743076,0.009659949,-0.0054516257,-0.007843695,0.025576519,0.0038158514,-0.026997436,0.0008572774,0.002129944,0.006296728,-0.018632356,0.0018019299,-0.0043601547,-0.018678192,-0.007815047,0.0076030553,-0.0045091216,0.021795044,0.017784389,0.032131072,0.029999698,0.040748253,-0.04459848,-0.0015297784,-0.042352512,-0.00563497,-0.013223701,-0.0051307734,-0.015584258,-0.0075801373,-0.02335347,0.008147359,-0.00009104544,-0.03868563,-0.0062451623,-0.029816354,-0.01428939,-0.010273006,-0.003563753,-0.0032199828,-0.01660411,-0.06481218,0.011814243,0.009591194,-0.0020468663,-0.0093906615,-0.031878974,0.008267678,-0.021176256,-0.026539076,0.009711514,0.005958687,0.0127768,0.023605568,0.024063928,-0.03870855,0.043727595,0.027570387,-0.02171483,0.0012010479,-0.020649143,-0.009912047,0.02578278,0.0183688,-0.028991304,0.042902548,-0.014541488,-0.008794793,0.00708167,-0.008239031,-0.01859798,-0.013613308,0.009384932,0.010244358,-0.009195859,-0.038525205,-0.014793587,-0.024476454,0.021989847,-0.009717244,-0.032841533,-0.01824275,0.016558275,0.046477757,-0.021107502,0.015870733,-0.027799567,-0.034881238,-0.030916419,0.004984671,0.032222748,0.011453284,0.04730281,-0.026149468,-0.0148738,0.025989043,0.008926571,0.00006432267,0.022849273,-0.029587174,-0.0003349971,0.0045091216,0.004514851,-0.049319595,0.033139467,-0.020511635,-0.02857878,0.002631276,-0.0160197,-0.009155752,-0.017910438,-0.004537769,0.0058125844,-0.019228226,-0.015034226,0.026264058,-0.0008536965,-0.0012712344,-0.0140602095,0.0014531461,-0.015057144,-0.0140716685,0.012753882,0.006399859,0.03740222,-0.008806252,0.028166255,0.022150273,0.016535357,0.0005016899,0.020064732,-0.019262603,0.017612504,-0.0033746795,0.024063928,0.040587828,0.061145294,0.0030509625,0.022345077,0.02589737,0.004113786,0.016810372,-0.038158514,0.0072077196,-0.01615721,0.007792129,-0.03391868,-0.003939036,-0.0040135193,0.0021385383,0.003993466,-0.011579333,0.0007029389,-0.032566518,0.0007505654,-0.017108306,-0.034079105,0.009562546,-0.018265668,-0.03366658,0.011625169,0.030778911,-0.019239685,0.033368647,0.026378648,-0.010771473,0.012902849,0.0064055887,0.04459848,-0.0359813,-0.004557823,0.0064743427,0.02857878,0.0401753,-0.0070071868,0.0009861913,0.0020296779,-0.012708046,0.008966678,-0.015286324,0.022803437,-0.0012139393,-0.020809568,-0.016627029,0.047440317,0.039556514,0.008966678,-0.015458209,0.010421973,-0.0029335076,-0.008514047,0.0067207115,0.008410916,0.0057295067,0.015813438,0.012158013,0.035156254,-0.02566819,0.014335226,0.053490676,-0.008989596,0.005271146,-0.028785042,0.040221136,-0.011178268,0.012845554,-0.050557166,-0.027455796,-0.0059758755,0.02844127,0.014312308,-0.05702005,0.020534553,0.019388651,-0.0037843392,0.017704176,-0.009602654,-0.03442288,0.01416334,-0.002224481,-0.027043272,-0.0072993916,0.00011835012,-0.022333618,-0.045790218,-0.012811177,0.0061305724,0.0014087425,0.0018678192,-0.008817711,0.05867015,-0.017188521,-0.023021158,0.007179072,-0.039304417,-0.022585716,-0.020843945,0.0011373071,-0.012066341,0.05005297,0.010754284,0.019102175,-0.008118711,-0.009785998,0.018288586,-0.011533497,0.040244054,0.024086846,-0.008548424,-0.005878474,-0.03032055,0.033643663,0.024728552,-0.00014520719,-0.011791325,0.009975071,0.02172629,-0.0269516,0.0022760467,0.01974388,0.03611881,-0.04707363,-0.0034720812,0.0038387696,0.0195147,-0.01336121,0.03857104,-0.011287129,0.0015011308,-0.00011808155,0.031993564,-0.01952616,-0.036554255,-0.016248882,-0.02660783,0.0068238424,-0.019434487,0.004322913,0.01964075,0.0008988164,-0.0002639154,-0.054865755,0.005334171,-0.0043744785,0.0019824093,-0.017669799,-0.009213047,0.0064285067,0.025232747,0.014277931,0.015286324,0.03728763,0.030824747,-0.004251294,0.017520832,0.029999698,0.009940694,-0.026653666,-0.030045534,-0.0140831275,0.017715635,-0.0029650198,0.0023519625,-0.008508317,0.018219832,-0.005947228,-0.0062107854,-0.008227572,-0.009745891,0.020316832,0.012455948,-0.024178518,0.03100809,-0.009213047,-0.012960144,-0.0045721466,-0.0050247773,-0.035477106,-0.024453536,-0.0017962004,0.0015885057,-0.021233551,0.032818615,0.025874453,-0.0004114502,0.026676584,0.03621048,0.0040478967,-0.000111367284,-0.0009281801,0.03517917,-0.03137478,0.04345258,0.017795848,0.053719856,-0.0034892696,0.03346032,0.0024966325,-0.027020354,0.026149468,-0.056286674,0.018758405,-0.037264712,-0.012753882,0.005758154,0.007912449,0.026218222,0.007167613,-0.03242901,0.0011917374,-0.014782127,-0.015767602,0.038227268,0.007482736,-0.029082976,-0.015893651,0.0063597527,-0.026080715,0.03786058,0.018311504,0.008233301,0.01648952,0.014587324,0.00043401014,-0.007969744,0.00096828665,-0.07650037,0.030801829,0.005228175,0.0056865355,-0.009860481,0.017291652,-0.0026670855,0.012708046,-0.0044289087,0.04006071,0.03240609,0.0045406343,-0.029335074,0.013727898,0.0043630195,-0.006205056,0.0014209177,-0.009075538,-0.016088456,0.02635573,-0.030641403,-0.014300849,-0.025301501,-0.027593305,0.024613962,-0.00049918325,0.009327637,0.026905764,-0.007746293,-0.0724668,-0.0086859325,-0.0067550885,0.0013815273,0.013911243,-0.019423028,-0.021004371,0.0043286425,-0.0068467604,-0.0018807106,0.060366083,-0.015125898,0.009797457,0.008382268,0.00206119,-0.020878322,-0.029060058,0.019319898,-0.02452229,-0.0061305724,0.005322712,0.019720962,-0.025759863,-0.014220635,0.019766798,-0.0019723827,-0.0019437352,-0.027593305,0.012284063,-0.05321566,0.00987194,-0.016867667,-0.009270342,-0.029839272,-0.008347891,-0.02649324,0.015538422,-0.026195304,0.027982911,0.019136552,0.0035752123,0.011052218,0.0026985977,-0.010559481,-0.020763732,0.002879077,0.04040448,-0.02566819,0.013922702,-0.010903251,0.008302055,-0.023181584,0.019262603,-0.011247022,-0.038777303,0.028899632,0.007167613,-0.014713373,-0.03054973,-0.030480975,0.00859999,0.009608383,0.03719596,-0.027684977,0.0067321705,-0.037723072,0.005723777,0.00546022,-0.021084584,-0.004993265,-0.007350957,0.010737096,0.00009480543,0.016203046,0.013235161,0.040519074,-0.014128963,0.012753882,-0.031031009,0.017509373,0.0043372368,-0.002056893,-0.0033517615,0.013349751,0.013624767,0.010857415,0.006892597,-0.037448056,0.042581696,0.04310881,0.0013779463,0.02635573,0.008462481,0.019904306,-0.05532412,0.051428054,0.047898676,0.0021471328,-0.0009955018,-0.014438357,0.07003749,0.0026527615,-0.00022416696,0.024361862,0.03288737,0.0038301754,-0.009023973,-0.010416243,0.0011473338,0.0003516485,0.014232094,0.008766145,0.0269516,-0.0019136553,0.004004925,0.0010821606,0.032131072,0.015068603,0.014277931,-0.02729537,-0.014724832,-0.032841533,0.031741466,-0.0070472932,-0.00929326,-0.035454188,0.0012690858,-0.025301501,-0.005182339,0.02986219,-0.022092978,0.01660411,-0.006376941,-0.025484847,-0.018540684,-0.0061534904,0.026034879,0.0054201134,0.0019351409,0.028670453,-0.03389576,0.005680806,0.023857666,-0.015607176,-0.008107252,0.005680806,-0.008926571,-0.0093906615,0.012639292,-0.010066743,0.0077176457,-0.019571995,0.0006628323,0.018082323,-0.0055117854,-0.0049302406,0.0062909983,-0.010152686,-0.003706991,-0.050144643,-0.008789063,0.00859999,-0.0162718,-0.026905764,0.013189324,-0.024499372,-0.013429964,-0.014358144,0.015080062,0.03123727,-0.023513896,0.0000703655,-0.027501633,-0.00975735,0.010066743,-0.01056521,-0.011166809,-0.0076259733,-0.0018004975,-0.0320394,-0.010152686,-0.039785694,0.014954013,0.0334374,0.008210383,-0.005591999,-0.015022767,0.024568126,-0.011338694,0.0015526963,0.010954817,-0.024086846,-0.00951671,0.035843793,0.012604915,0.019262603,0.0000064736714,-0.012570538,0.006560285,-0.02288365,0.0100380955,-0.027639141,0.019056339,-0.001266221,-0.033643663,-0.027387042,-0.02452229,0.010439161,-0.03242901,0.013028898,-0.038868975,0.021393979,-0.022940945,0.0013378399,0.01847193,-0.02067206,-0.0036898023,0.00027967154,0.006354023,-0.014541488,0.009086998,0.02194401,0.009069809,-0.0022688846,0.029655928,0.021336684,0.03366658,0.043727595,0.008634367,0.0073108505,0.01394562,0.00847967,-0.0017661204,-0.047577824,0.006170679,0.01683329,0.025049403,0.0113444235,0.012673669,-0.011069407,0.019216767,0.03252068,-0.014610242,-0.05633251,-0.016775995,0.008382268,-0.017807307,0.028418353,-0.007293662,0.0022717495,0.009722973,-0.015045685,-0.06297874,-0.009934965,-0.026149468,0.045836054,0.022826355,0.004271347,-0.032566518,0.018082323,-0.005016183,0.035270844,0.0392815,-0.0046179825,-0.017452078,0.022895109,0.008198924,0.0054516257,-0.03123727,0.025851535,0.029724682,-0.0057753427,0.019251144,-0.01721144,0.0068582194,0.018208373,-0.010181334,-0.02740996,-0.020843945,0.018941749,0.003171282,-0.013865407,-0.017944815,0.017704176,0.043062974,0.01915947,0.035362516,0.0014996984,0.034606222,0.008451022,-0.021646077,0.013040357,-0.014484193,-0.013487259,0.007866613,-0.00050348043,-0.02404101,0.0031340402,0.010169875,-0.0070358342,-0.006457154,0.01383103,-0.0022459666,-0.029953862,-0.0011086595,0.008594261,-0.031328943,0.01753229,-0.008112982,-0.0113673415,-0.0071848016,-0.028464189,0.046615265,0.0002429669,0.0013872568,0.010232899,0.008307785,-0.020947076,-0.02008765,0.03937317,-0.00007331978,0.012226768,0.0031569581,0.014002915,0.010129768,0.016134292,0.01428939,0.015526963,0.0052453633,-0.006904056,0.015229029,-0.00029847148,-0.025759863,-0.009906317,0.041160777,0.008198924,0.0071733426,-0.0006939865,0.04959461,0.0216117,0.006354023,0.013200783,-0.012937226,-0.019583454,0.0015125897,-0.013349751,-0.050557166,0.046065234,-0.0023648539,-0.020408504,-0.035041664,-0.007190531,-0.007941096,-0.012455948,0.032841533,0.01451857,-0.022413831,0.0041739456,0.0077176457,-0.024247272,-0.013911243,0.0073967935,-0.023445142,0.012811177,0.037035532,0.01974388,0.015286324,0.0039075236,0.01521757,-0.008846358,0.005844097,-0.049686283,-0.0027959994,0.0011831431,-0.0026742474,0.05775343,0.03242901,-0.030045534,0.02067206,0.019491782,0.014151881,0.035247926,0.009069809,0.014885259,0.02915173,0.0140487505,0.019675126,0.0063253753,-0.022150273,-0.035500024,0.0040192488,0.018322963,-0.03994612,0.020546012,-0.00800985,0.007190531,-0.020282455,0.00018692516,0.01091471]},{"id":"interface-GatewayUserUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserUpdateDispatchData\nDescription: USER_UPDATE — full current user (APIUser)","meta":{"url":"/docs/typedefs/GatewayUserUpdateDispatchData"},"embedding":[0.003939513,0.016608266,-0.0268807,0.045072924,0.032983597,-0.010639306,-0.009171816,0.03538283,0.024178654,-0.015373711,-0.03300689,0.0052352143,-0.04258052,0.025529677,0.02608872,-0.027323276,0.0069007,0.031655867,-0.038737092,0.034381207,-0.03060766,-0.01630545,0.05529877,-0.0034707317,0.014069274,0.021232026,-0.0062251883,0.022222,-0.01663156,-0.02146496,-0.013498584,-0.005069248,0.040880095,-0.014488557,0.050640073,0.017831175,-0.013696578,0.036454327,-0.012427082,-0.022932451,-0.018821148,-0.047751676,0.007232632,0.015711466,-0.05562488,0.008962175,-0.0011981594,0.020917565,0.004978986,0.010883888,-0.007063754,-0.017540006,0.006364949,0.013661638,0.025133688,-0.008362367,0.043675315,-0.03792182,-0.02587908,0.0021764864,-0.013172475,0.008542892,-0.002591402,-0.058792796,0.00928246,-0.015094189,0.0064173597,0.048730005,0.035312947,-0.015886167,0.010202553,0.006033017,-0.044886578,0.014698199,0.028441364,0.0055846167,0.0052060974,-0.025389915,-0.009294107,0.014080921,0.009096112,0.032214914,-0.07584364,-0.05557829,-0.0015592087,-0.022955745,-0.05720884,-0.03699008,-0.017365305,0.0008116329,-0.002172119,0.050267376,-0.025389915,0.033682402,-0.022361761,-0.039179668,0.021336846,-0.006999697,-0.0118505685,0.03326312,0.02455135,-0.0749119,-0.01795929,-0.051664986,0.03214503,-0.06335832,-0.0053342115,0.019240431,-0.058839384,0.00184601,-0.058466688,-0.00700552,0.0032640018,-0.0358487,-0.0069764033,-0.015653232,0.040437516,-0.023875838,0.013521877,-0.019042436,-0.0129977735,0.0053342115,-0.01304436,-0.046610296,0.0023147915,-0.02727669,0.0059252842,0.012858013,-0.09587605,-0.018040817,0.042394172,-0.039948355,0.018681388,0.0070928712,-0.010313197,-0.024714405,-0.008146902,0.039039906,-0.023258561,-0.027649386,0.00046186644,-0.019123964,0.00016660313,0.014057628,-0.053528465,-0.005290536,-0.019263726,0.056789555,0.018681388,0.04153231,-0.062053885,0.051478636,-0.01627051,-0.0062950687,0.01932196,0.01896091,-0.0006300164,-0.023316795,-0.014628318,-0.03233138,0.012636724,-0.06512863,-0.022594696,0.009270813,-0.054506794,-0.043023095,-0.008583655,-0.03519648,-0.06387078,-0.035499297,0.01823881,-0.054134097,-0.051804747,-0.014441971,0.010289904,0.012345555,-0.014931134,-0.00484796,-0.053202357,-0.017178956,0.033216532,0.010709187,-0.0035173185,-0.05469314,-0.012811425,-0.0009099024,0.01104112,0.044024717,-0.0029699213,-0.029699214,0.007989671,0.026647765,0.031376347,0.0028942174,0.000671144,-0.054040924,0.01806411,-0.06000406,0.024597937,-0.0012665841,0.029023701,-0.040111408,0.018273752,-0.015035955,0.00652218,0.014954427,0.012881306,-0.004705287,-0.046563707,-0.0017470126,0.0053313,0.05473973,-0.024854165,-0.0027952201,-0.038830265,0.01254355,-0.005733113,-0.0072559253,-0.022571402,-0.006085427,0.018308692,0.0455155,0.06587402,-0.020113938,0.009573629,-0.0003020876,-0.003642521,0.025343329,-0.041811835,0.015350417,-0.0045043807,0.007948907,-0.009288283,-0.053854574,-0.015548412,-0.010598543,0.016608266,-0.034497675,0.019042436,0.04272028,-0.03952907,-0.005954401,-0.012438729,0.023992306,-0.014255622,0.01749342,0.023456555,-0.010249141,-0.012531904,0.06741139,0.031492814,0.049289048,0.030398019,-0.03845757,-0.0032203265,0.011268231,0.047495447,0.038364395,0.039552364,0.06722505,0.04924246,-0.0304679,-0.0015315476,0.029163463,-0.037292894,-0.024877459,0.049801506,0.036896907,-0.00791979,-0.0040705395,-0.00843807,0.048217546,0.004323856,0.0112216445,-0.008484658,0.0029626421,0.039435897,0.037758764,-0.017947642,0.008344897,-0.03924955,-0.01304436,0.002209971,0.041974887,-0.002591402,0.03945919,0.00879912,0.015047601,0.020754509,0.004166625,-0.03114341,0.039016616,0.0133937625,-0.03393863,0.046051253,0.058280338,-0.008077022,-0.03845757,0.014849607,0.01211262,0.021511547,-0.018413512,-0.021628015,-0.025832493,0.03132976,0.0050925417,0.08912093,-0.02741645,0.022105532,-0.012904599,-0.03817805,-0.027905613,-0.012531904,0.02927993,-0.0340551,-0.0024443618,0.021802716,0.024388295,-0.020160524,0.018460099,-0.005695261,0.029792387,-0.027649386,-0.045399033,0.0075063305,-0.037362777,-0.034311328,-0.03806158,0.011349758,-0.0012629445,0.03400851,0.001416536,-0.0010307374,-0.04616772,0.048590243,0.029163463,-0.011274055,0.020335225,0.013347176,-0.018716328,0.00087932963,-0.06652624,-0.015897814,-0.055811226,0.02053322,-0.036757145,-0.02515698,0.026461417,-0.030095203,0.014150802,0.009556158,0.012531904,0.01387128,0.0029844798,-0.021371787,-0.016829554,0.04272028,-0.03731619,-0.026671058,0.038737092,-0.009794917,0.0051216586,-0.001109353,-0.015932754,-0.00094120303,0.013673285,-0.0057884348,0.04763521,-0.00014321864,-0.0115361065,-0.03244785,-0.0491027,-0.030910475,0.0016887789,-0.009078642,0.0043850015,-0.008408953,-0.055345356,-0.007692679,0.0093174,0.011786511,0.08590643,0.016550032,-0.0108256545,0.018215518,0.003939513,-0.031306464,0.018925969,-0.03545271,-0.011268231,0.020090645,-0.023305148,0.0069880504,-0.025063807,-0.029792387,-0.020405106,0.04544562,0.03705996,0.014290563,-0.0340551,0.0159444,0.0034882016,0.01430221,-0.020649688,-0.0072209854,0.0480312,0.023468202,0.03971542,0.052456964,-0.012986126,0.03680373,-0.020160524,0.011949566,-0.016084163,0.031865507,-0.036407743,0.019717949,0.007797499,-0.0138014,0.04418777,-0.0304679,-0.003857986,0.0129977735,0.031702455,0.040740333,-0.029792387,0.024038892,0.013766459,-0.0036658146,-0.023794312,-0.03652421,0.051618397,0.023409968,-0.017190604,0.022746103,0.018553274,0.047262512,-0.005881609,0.017644826,0.000251679,-0.052550137,-0.002990303,-0.007587858,0.004620848,-0.038970027,0.0068832296,0.022909159,0.00885153,0.013568465,-0.0050284844,-0.02225694,0.020603102,0.012729898,0.048403896,-0.070952006,0.014663259,-0.0223967,0.04942881,0.008985468,0.019275373,0.0066852346,0.017761294,-0.042137943,0.048124373,0.01150699,-0.007890673,0.024667818,0.036617383,-0.020288639,0.01562994,-0.0062193647,-0.03014179,-0.011460402,0.03053778,-0.02358467,-0.021383435,-0.026997168,-0.0008305589,0.014325503,0.03514989,-0.03207515,0.037106548,-0.008665183,0.023130447,0.07947742,0.059212077,0.021674603,-0.013708225,0.004556791,0.010086086,0.007121988,-0.015781347,0.05660321,-0.010814007,0.011064413,0.014243976,-0.010202553,-0.058839384,-0.009358164,0.00022256213,0.008729239,0.010505369,0.017295424,-0.0019624773,0.02225694,-0.001118088,-0.024807578,0.010313197,-0.05003444,-0.050081026,-0.030770715,-0.0020265346,-0.006923993,-0.02634495,-0.036431037,0.017062489,0.0019042437,0.030165084,0.008001317,0.06303221,-0.007186045,0.023444908,0.0044810874,-0.016794614,-0.014360444,0.008665183,0.025296742,-0.09186957,0.0054565025,0.00042110283,0.015397004,-0.013649992,0.008775827,0.04518939,-0.0067376452,-0.020370167,-0.020591455,-0.032121737,0.032028563,0.033100065,-0.010190907,-0.00003159636,0.004804285,0.019706301,0.021068972,0.007978024,0.015909461,0.00921258,0.018087404,-0.024737697,0.005185716,-0.0011028016,-0.0048392247,0.021068972,0.0060970737,0.02275775,-0.008671005,-0.029116876,-0.0064639463,-0.02186095,-0.015082542,-0.040693745,0.009276637,-0.023992306,-0.025389915,0.037106548,-0.0005291992,-0.029349811,-0.015455238,0.01896091,-0.023060566,0.056370273,-0.015222303,0.044234358,0.028487952,0.019613128,0.026787525,0.03985518,0.03626798,0.03533624,-0.009690097,-0.083390735,0.0031358874,0.070486136,-0.049521983,0.012590137,-0.0088165905,-0.01166422,-0.025762612,0.033030186,-0.022920804,0.0032494434,0.02056816,0.008397307,0.01839022,-0.013323883,-0.01476808,-0.0006482145,-0.01802917,0.019671362,-0.026438123,-0.0050284844,-0.01992759,-0.015001015,0.035522588,0.052270617,-0.0049731624,0.029046996,-0.021511547,-0.0126017835,0.006562944,0.026018841,-0.0047897263,-0.0033629993,-0.0018693034,0.009398928,-0.013847986,0.010965415,0.0021750305,-0.010452959,-0.003552259,0.0015242684,-0.0012804146,0.02874418,-0.004239417,0.05557829,-0.040134702,-0.0043122093,0.004137508,-0.05329553,-0.017015902,-0.031585988,-0.005855404,0.0063416557,-0.025273448,-0.052130856,0.032773957,-0.034357913,-0.021977417,-0.029373104,0.002022167,0.023573022,0.0109479455,0.038108166,0.043419085,-0.014383737,-0.024644524,-0.00919511,-0.006615354,0.03673385,-0.06806361,-0.05902573,0.042906627,0.021138852,0.037851937,0.008234252,-0.021511547,0.04770509,-0.015525118,0.007034637,-0.020137232,0.027463038,0.0120078,0.004216124,-0.023666197,0.01870468,-0.04237088,0.019193845,0.0073956866,0.050407134,-0.01523395,0.034288034,0.08576667,0.0009892458,0.02781244,0.014069274,0.014115862,-0.027113635,-0.0050750715,0.012135914,0.04311627,0.012217442,-0.03400851,0.019741243,0.021965772,-0.01996253,0.03291372,-0.022222,0.004373355,0.009626039,-0.0005040859,0.037549123,0.032424554,-0.026647765,-0.007890673,-0.016829554,0.044234358,-0.034637436,-0.005040131,0.010598543,-0.017982583,0.032680783,-0.008659359,-0.008478834,-0.0009644965,0.011116823,-0.004853783,-0.019881003,0.019543247,0.010918829,0.020731216,-0.00031555415,-0.029396398,-0.008001317,0.02254811,-0.007995494,-0.042487346,0.037479244,0.034567554,0.02136014,0.022419995,0.016713087,-0.018471746,0.0063241855,0.009311577,-0.014942781,0.019158905,0.02208224,-0.013114241,-0.027695972,-0.0107848905,-0.008053728,0.0038783678,0.0033979395,-0.030258257,-0.0055496767,0.012089327,0.010843124,-0.011745748,0.017039197,-0.017633181,-0.012706605,-0.042277705,0.008647712,0.015175716,-0.010965415,0.02301398,0.0076460917,-0.023875838,0.0049178405,-0.044933163,0.0066037076,-0.018762914,0.005340035,0.016363684,-0.016911082,0.01354517,0.012217442,-0.00089170435,0.015746407,0.0043005627,0.030048616,0.031842217,0.028767474,-0.036757145,0.004856695,-0.022466581,-0.009160169,0.013056007,-0.021907538,-0.025320036,0.018879382,-0.008729239,0.008828237,-0.005695261,-0.04358214,-0.020311933,-0.0318888,-0.009521218,-0.0024763902,-0.026205188,0.009864798,-0.0017877762,-0.06857607,0.005220656,0.010435488,0.009596922,-0.0064988867,-0.04619101,0.010505369,0.0048829,-0.013778105,-0.009276637,-0.007541271,0.0025608293,0.014360444,0.03731619,-0.056323685,0.043139562,0.02415536,-0.005290536,0.016212277,-0.013335529,0.009754154,0.019811122,0.028720887,-0.036827024,0.013254002,-0.034916956,-0.028651007,-0.014441971,0.01533877,-0.015490178,-0.0045364094,-0.0023555553,0.038084872,-0.017970936,-0.033496056,0.0026161512,-0.021232026,0.027975494,0.0022318086,-0.028907234,-0.014616672,0.000117104435,0.040833507,-0.047798265,0.011431285,-0.0250871,-0.015047601,-0.017365305,0.013533524,0.0011632192,0.0051798923,0.03093377,-0.0141857425,-0.029699214,0.0043296795,0.006720175,-0.00175138,-0.00207021,-0.029629333,0.024714405,-0.035522588,0.03172575,-0.02709034,0.02907029,-0.026228482,-0.041159615,-0.0063241855,-0.005086718,-0.012776486,-0.02347985,-0.02129026,0.023747724,-0.021767776,-0.025226861,0.010918829,0.01028408,0.014628318,0.0000978145,0.009742507,-0.005389534,0.016072515,0.006067957,0.003820134,0.045608673,-0.0074306265,0.029046996,0.008566185,0.014698199,0.0186348,0.04018129,-0.0049265753,-0.0036366978,0.009934678,0.008356543,0.028581126,0.04039093,0.026438123,0.011885509,0.013463643,0.01211262,0.010260787,-0.01476808,0.018040817,-0.0023963188,0.011984507,-0.026391536,0.011815628,0.0088165905,0.002862189,-0.009911384,-0.0043296795,-0.0016509269,-0.031865507,0.005776788,0.018611507,-0.024318416,0.0069181696,-0.014453617,-0.059258666,-0.0008094492,0.018506687,-0.012170854,0.022466581,0.048124373,0.00741898,0.044257652,-0.0032261498,0.013300589,-0.022140473,0.013277295,-0.0040414226,0.008624419,0.022093885,0.017062489,-0.015711466,0.019252079,-0.028418072,0.006289245,-0.016608266,0.03114341,0.030514486,-0.011244938,0.006644471,0.01906573,0.011448756,0.014220682,-0.017446833,0.01430221,-0.010458782,-0.006621178,0.011582693,0.004521851,-0.0006263768,0.002572476,0.018751267,0.0013823237,-0.03247114,-0.0067842323,0.037782058,0.0069414633,-0.013591758,-0.009812388,0.020346873,-0.010685894,0.011780688,-0.04817096,-0.02541321,-0.017714707,0.025646145,-0.005188627,-0.034124978,0.011815628,-0.01401104,0.04451388,0.019473366,0.020090645,-0.026997168,0.007215162,-0.036291275,-0.048124373,-0.022815984,0.016841201,-0.054506794,-0.032121737,-0.0016625737,0.05371481,0.0032115914,-0.005733113,0.00008061735,0.06182095,0.014232329,-0.022152118,0.035266362,-0.026997168,0.013277295,-0.023037272,0.006085427,-0.0091310525,0.041974887,0.0021925007,0.0268807,-0.009998735,-0.024388295,-0.020335225,0.0005342947,0.031818923,0.035755523,0.0034823783,0.005162422,-0.027626092,0.006260128,-0.005162422,-0.018553274,-0.027299983,0.03128317,0.03452097,0.00791979,-0.014290563,0.011600164,0.05902573,-0.01713237,0.004556791,0.008583655,0.005031396,-0.012147561,0.0044082953,-0.009043702,-0.00020800368,-0.034497675,0.0111808805,-0.019450074,-0.019310312,0.01687614,-0.020952504,0.0069472864,-0.0068890527,-0.005855404,0.035499297,-0.0276028,-0.0075820345,-0.054506794,-0.0057651415,-0.015967695,0.005453591,-0.022501523,0.004073451,-0.008572008,0.025529677,0.024667818,0.024434883,0.023142094,0.02010229,0.020661335,0.03293701,-0.0002664194,0.008321603,-0.009171816,-0.035639055,0.0012512978,0.023969013,-0.0029670096,0.03235467,-0.017144017,0.027323276,-0.0018329073,0.0048829,0.008018788,-0.002693311,0.015723113,0.0016771321,-0.034847077,0.027183516,-0.01530383,-0.021872597,0.008764179,0.009626039,-0.02827831,-0.01992759,-0.010132673,-0.0075296243,-0.012403789,0.04071704,0.011670044,0.0066619413,0.004318033,0.05855986,0.02408548,0.0009215491,-0.008735063,0.018902676,-0.03272737,0.04877659,0.028231723,0.0480312,-0.014966074,0.016538385,-0.020731216,-0.021010738,-0.0060039,-0.0501742,0.025552971,-0.011320641,-0.0318888,-0.023642903,0.021709543,0.02634495,-0.011175057,-0.025459796,0.0026074164,-0.0055613234,-0.019601481,0.031236585,0.021511547,-0.04046081,-0.01430221,0.019519953,-0.002814146,0.029699214,0.03053778,0.00072646607,0.03021167,-0.0017368216,0.012846366,0.0013189944,0.0010875153,-0.09098441,0.04092668,0.035266362,0.012229088,-0.0069938735,-0.009305754,-0.01523395,0.0104704285,-0.0039657187,0.029885562,0.03647762,-0.009777447,-0.0077800294,0.0019522866,0.007104518,0.00552056,0.010843124,-0.0107848905,-0.023875838,0.028930528,-0.024108773,-0.015362063,-0.019985823,-0.029326517,0.01566488,-0.009468808,0.024714405,0.013510231,-0.012124267,-0.077940054,-0.008263369,-0.011891332,-0.0010125394,-0.005881609,-0.0016582061,-0.028720887,0.0021400903,0.009561982,-0.0024603761,0.06433665,-0.013021067,0.025739318,-0.004807196,-0.015921108,-0.016037576,-0.006795879,0.04297651,-0.004632495,-0.021441668,0.0078033227,0.0034590848,-0.03000203,0.0027719266,0.017586593,-0.017749649,0.008793296,-0.0073199826,0.0113031715,-0.036081634,0.011920449,-0.02709034,-0.015827933,-0.013125888,-0.007762559,-0.015431944,0.02225694,-0.023701137,0.03731619,0.02136014,0.0074713905,-0.0027733825,-0.0018416424,-0.013533524,-0.027393157,-0.008688476,0.00838566,-0.036035046,0.0042830925,-0.0071452814,0.021907538,-0.020847684,0.020661335,-0.00003327968,-0.044816695,0.02161637,0.045282565,-0.029233344,-0.031492814,-0.015001015,0.0022973216,0.0036687264,0.06042334,-0.019356899,0.012660018,-0.020440048,0.0075179776,0.054367032,-0.014803019,-0.021709543,0.017540006,0.0137897525,0.0045713494,-0.016608266,0.01430221,0.017423538,-0.018646447,0.019356899,-0.01211262,0.04132267,0.0053167418,-0.005080895,-0.014803019,0.008205135,0.024108773,0.015594998,-0.011553576,-0.03880697,0.024760991,0.04183513,-0.0030601837,0.0002525889,0.002386128,0.030584367,-0.052084267,0.0372696,0.019275373,0.023456555,-0.0041229497,-0.016782967,0.03843428,0.003057272,-0.0069880504,0.031818923,0.008257546,0.0016159866,0.006592061,-0.007931437,-0.017935995,0.037782058,-0.007797499,0.023305148,0.023596317,-0.008717593,0.0013248179,0.0018722152,0.010796538,0.00396863,-0.0013750445,-0.02318868,-0.019403486,-0.027486332,0.005802993,0.014535145,0.009381457,-0.027323276,0.0073316293,-0.012590137,-0.013917867,0.016864495,-0.02092921,0.019240431,-0.017994229,-0.014430324,-0.007838263,-0.011442932,0.020801097,0.011081883,-0.013254002,-0.0069472864,-0.03293701,-0.005730201,0.04064716,-0.03973871,0.004585908,0.008624419,-0.02261799,-0.012729898,0.015175716,-0.012718252,-0.002060019,-0.0042452407,-0.013615051,0.021045677,-0.03831781,0.0045364094,0.0047169337,-0.01062766,-0.0060621337,-0.05222403,0.017190604,0.001668397,-0.035685644,-0.037386067,-0.0027282513,-0.04258052,0.008630242,-0.018215518,0.0034357915,0.046610296,-0.0043587964,-0.017365305,-0.023048919,-0.016247217,0.022245293,-0.0008866089,-0.022350114,-0.031492814,-0.016480152,-0.017004255,-0.017248837,-0.02907029,0.005724378,0.03999494,-0.0094862785,-0.029256636,-0.023701137,0.03386875,-0.0033688226,0.004903282,-0.009596922,-0.024900753,0.0039045732,0.045282565,0.01026661,0.028301604,-0.0014427413,-0.010260787,0.007616975,-0.008269193,0.028324896,-0.029233344,0.025646145,-0.005220656,-0.02056816,-0.012811425,-0.024504762,-0.002349732,-0.0111401165,0.021697896,-0.03545271,0.035056718,-0.028557831,0.021115558,0.007797499,-0.025063807,-0.008898118,0.0015708555,0.025716025,-0.004495646,-0.01119835,0.030188378,0.033822164,-0.004527674,0.033146653,0.015478531,0.015420297,0.039668832,0.01921714,0.017586593,0.018576566,-0.005421562,-0.0024021424,-0.051525224,0.0027733825,0.034963544,0.020603102,0.0017863204,0.021010738,-0.007715972,0.014115862,0.014593379,-0.0014085289,-0.07067248,-0.016433565,0.0017033373,-0.01394116,0.0059514893,0.016573327,-0.007844087,0.019287018,0.010773244,-0.03945919,-0.003939513,-0.014907841,0.007995494,0.043419085,-0.007354923,-0.02874418,0.030561073,-0.020451693,0.04938222,0.022222,-0.022839278,-0.018902676,0.021092266,0.0114953425,0.00043020185,-0.014861253,0.01896091,0.025739318,0.0145817315,0.021744482,-0.016084163,0.020591455,0.023165386,-0.010557779,-0.02092921,-0.02455135,0.010482076,-0.0064057126,-0.010138496,-0.023538083,0.0099929115,0.034777198,0.0137897525,0.009468808,-0.0030543604,0.03554588,-0.0034590848,-0.018262105,0.04067045,-0.0008181842,-0.014139155,0.010330668,0.002916055,-0.03487037,-0.0065745907,-0.01354517,0.0186348,-0.0028374395,0.029233344,0.01401104,-0.032680783,-0.005750583,0.00052956317,-0.023491496,-0.0145817315,-0.023829252,-0.012135914,-0.017901056,-0.03060766,0.035312947,-0.021907538,-0.0033571757,0.024178654,0.0071918685,0.013684932,-0.008257546,0.020370167,0.009404751,0.0090087615,0.029046996,0.0069647566,0.010726657,0.0115594,0.020544868,0.008828237,0.030724127,-0.005826287,0.048264135,0.014849607,-0.0009819666,0.017807882,0.013626698,0.018215518,0.014826314,0.015059249,0.03174904,0.012799779,0.000035372454,0.029815681,0.0029320694,-0.01996253,0.012252381,-0.021872597,-0.05175816,0.034031805,-0.000007529442,-0.014546791,-0.030724127,0.00030226956,-0.0093232235,-0.011908802,0.015199009,0.022920804,-0.026112014,-0.015199009,0.012089327,-0.03554588,-0.02347985,0.023375029,-0.021103911,0.008863177,0.041299377,0.025040513,0.0020745774,0.005491443,0.028534539,-0.014756433,-0.023165386,-0.038480863,0.011227467,-0.006621178,0.0058757854,0.059910886,0.0042539756,-0.055904403,0.012415436,0.014418677,0.010278258,0.013160828,-0.024411589,-0.0008742342,0.02907029,0.008839884,0.0075645642,-0.0056632324,0.006440653,-0.0077509126,0.010185083,0.019671362,-0.027393157,0.029116876,-0.02967592,0.0037735472,-0.014744786,-0.0020294462,0.009014585]},{"id":"interface-GatewayVoiceServerUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayVoiceServerUpdateDispatchData\nDescription: VOICE_SERVER_UPDATE — token, guild_id, endpoint, connection_id?\nProperties: connection_id: string | null, endpoint: string | null, guild_id: string, token: string","meta":{"url":"/docs/typedefs/GatewayVoiceServerUpdateDispatchData"},"embedding":[0.014987124,-0.016600782,0.03430681,-0.009516161,-0.006835941,0.020270197,-0.019010216,0.019817045,-0.000055089564,-0.026083786,-0.016976565,-0.01577185,-0.02172912,-0.009339321,0.0012496178,-0.018358123,-0.0360531,0.07113358,-0.018070757,0.027918493,-0.07113358,0.017838657,0.034793116,0.027586918,-0.013063998,0.024116449,0.009173535,0.041093014,0.014887652,-0.0410267,0.04323719,-0.025044855,0.05256546,-0.014589236,-0.013506096,0.04129196,-0.034925748,-0.013174523,-0.017927077,-0.03678256,0.0077698734,-0.024116449,-0.005562146,0.021983325,-0.03061529,0.011472445,-0.021474913,-0.021032816,-0.056853812,0.002805941,-0.010975084,-0.008819857,-0.0050979434,0.051902313,0.02606168,-0.020225987,0.0043132193,-0.02218227,-0.01595974,-0.004943209,-0.01749603,-0.007338828,0.0148544945,0.0016454337,0.03070371,0.0081235515,-0.03096897,0.015108701,0.016854988,0.011616127,0.015186069,0.03083634,-0.0062833186,0.026216416,-0.008853014,0.023718562,-0.047083445,-0.026260626,-0.0071840934,-0.03819727,-0.033997342,-0.0066480497,-0.07161988,-0.060390595,0.0261501,-0.009068537,-0.046464507,-0.014898704,0.01248927,0.04761396,-0.03074792,0.008742489,-0.042087734,0.00077298086,-0.017507084,-0.03348893,0.067243114,-0.0057638534,-0.040628813,0.029620571,0.05424543,-0.03547837,-0.047348704,-0.04836553,0.019518629,-0.017396558,0.006990676,0.010903244,-0.05234441,-0.005752801,-0.09284059,0.03105739,-0.012522427,-0.0066922596,0.0012309668,-0.028935319,0.025796423,-0.035588894,0.035367846,-0.03251631,-0.03105739,-0.016302366,0.00919564,-0.011870333,0.0074548787,0.0036528353,-0.0017780631,-0.015805006,-0.040054083,-0.020071251,0.040275134,-0.017706027,0.05269809,-0.002939952,-0.011052452,-0.029930038,0.0023818032,0.009742736,-0.047127653,-0.012290326,0.0083169695,-0.011859281,-0.0025641688,0.030946864,-0.027056402,0.019242318,-0.035456266,0.023608036,0.0015031334,0.034815222,-0.0820534,0.0148434425,-0.015849216,0.003909805,0.0061285845,0.027012192,-0.003647309,0.031764746,-0.041910898,-0.00015680665,0.0074327737,-0.027609024,0.029399522,0.011737703,-0.055660147,-0.035920467,0.0096819475,0.009952732,-0.04485085,-0.021585438,0.02393961,-0.051637053,-0.012367694,-0.007465931,-0.024779597,-0.0035588895,-0.0014810285,0.016412891,-0.071840934,-0.03313525,0.054289643,0.0038877,-0.02506696,-0.0013449452,-0.007366459,-0.00039996058,-0.037025712,0.049249724,0.0030532398,-0.035588894,0.008372232,-0.0004977057,0.055969615,0.069674656,0.012456113,-0.02218227,-0.009416689,-0.01532975,0.041955106,-0.019341791,0.020988606,-0.0671989,0.013937142,-0.03625204,-0.0065209465,-0.03286999,0.022657525,-0.019960728,0.024425918,-0.020889133,0.051813893,-0.005479253,0.008106973,0.010566143,-0.09266376,0.03061529,-0.011306658,-0.0026111417,0.0030863972,-0.027520604,0.013218732,0.03070371,0.050973907,-0.018059706,0.03782149,0.012157696,-0.008792225,-0.015672376,0.007896977,-0.026083786,-0.015407117,-0.030725816,-0.0033240248,-0.046862394,-0.029532151,-0.035102587,0.01158297,-0.0029454783,0.051504426,0.033820502,-0.026393255,-0.03819727,0.014920809,0.021905959,0.0029206104,-0.0062777926,0.029244786,-0.028471116,0.021773329,0.0144345015,0.019916518,0.032427892,0.009256428,0.018490752,-0.001248927,-0.00093185983,0.002326541,-0.0062225303,0.051460214,0.022171218,0.032162633,-0.012312431,-0.040009875,0.010930874,-0.043347716,-0.037755173,0.028891109,0.022215428,-0.04982445,-0.015749743,-0.022602264,0.014578183,0.04814448,-0.023143834,-0.028736373,-0.010643511,0.016976565,0.0042911144,0.0074548787,-0.009532739,-0.037224658,-0.0171313,-0.032538418,0.030062668,-0.042574044,0.038396217,0.026702723,0.051283374,0.01776129,0.020214934,-0.016147632,0.032162633,0.016213946,-0.034196284,0.02966478,0.042264573,0.054466482,-0.032118425,0.006907782,0.01043904,0.060081128,-0.0048768944,-0.041159328,-0.0075046145,0.025951156,-0.0062612137,0.038528845,0.015793953,0.0102953585,-0.011417182,0.011312184,-0.04606662,0.0046613715,0.03083634,0.015937636,-0.0030753447,0.031167913,0.023718562,0.010604828,-0.005664381,0.0036749402,0.0045895306,-0.032472104,-0.0006531308,0.0019010217,-0.07294618,-0.030438451,-0.019750731,-0.008681701,0.038153064,0.01992757,-0.06370633,0.019319685,0.034771014,0.022624368,0.027874283,-0.055439096,0.05044339,0.009212218,-0.015672376,-0.00171313,-0.03092476,-0.0156171145,-0.03466049,-0.008869592,-0.014412397,-0.033975236,0.015064492,-0.01600395,0.04175616,0.0029233734,0.002140031,0.0050261025,-0.071222,0.00085172954,-0.07475878,0.03687098,-0.016368682,-0.055792775,0.03656151,-0.024315393,0.010328516,-0.0042717727,0.042574044,-0.008543545,-0.01032299,-0.018137073,0.04624346,-0.05221178,-0.036981504,-0.015882373,-0.017484978,-0.042927723,-0.01027878,-0.014622393,-0.016711308,-0.036539406,-0.01784971,-0.04370139,-0.016854988,0.032847885,0.056411713,0.0047359755,0.02077861,0.00065244,0.0009802143,-0.041424587,0.03169843,-0.027387975,-0.01789392,0.020657033,-0.003080871,-0.014931862,-0.009858787,-0.014876599,0.0020474666,-0.003136133,0.0378657,0.02407224,0.005164258,0.060479015,0.027719548,-0.0067641004,0.0057859584,-0.004962551,0.042131945,0.0209665,0.0171313,0.04770238,0.0136387255,0.035588894,-0.018733906,0.02303331,0.024116449,0.031167913,-0.027631128,-0.008001975,-0.021828592,-0.025619583,0.04458559,0.016236052,0.053272817,-0.027564814,0.024868015,0.033975236,-0.025818527,0.016401839,0.008416442,0.012688214,-0.03205211,-0.033068936,0.036915187,0.070028335,0.00300903,0.027144821,-0.042264573,0.01257769,0.0008917947,-0.0060291123,0.006968571,-0.0653863,-0.018557066,-0.022414371,0.026923772,-0.025133274,0.040827755,0.02606168,-0.027100611,0.034704696,0.0022947653,-0.031123703,0.019419158,-0.02528801,0.07409564,-0.019684415,-0.067287326,-0.021364389,0.0261501,-0.020889133,-0.014368187,-0.029620571,-0.04624346,-0.027741654,0.053626496,-0.009405636,0.009621159,-0.024094345,0.007123305,-0.03466049,0.013959247,0.0016191842,-0.02398382,-0.005457148,0.018744959,0.005708591,-0.006294371,0.0013794841,0.030195298,0.00802408,0.059152722,-0.02316594,0.030239508,-0.022502791,-0.00923985,0.06733154,0.036937293,0.017882867,-0.004910052,0.000112165115,-0.019529682,0.018722853,-0.0046143983,-0.0005657474,-0.009433268,0.013948194,0.00079715805,-0.042927723,-0.040054083,0.008913802,-0.020977553,-0.04029724,-0.006686733,0.025840633,0.027012192,0.046995025,0.024293289,-0.0014492527,0.00030204278,-0.029377416,-0.025089065,0.008985643,0.012389799,0.0022906207,-0.044828743,-0.017053932,0.019330738,0.012290326,0.01149455,-0.0045370315,0.04774659,-0.014500816,0.034373123,0.03846253,0.008399863,0.004404402,-0.0238954,0.005039918,-0.07816294,-0.004879657,-0.00555662,0.027586918,-0.032671046,-0.003721913,0.038130958,0.0034152076,0.020723347,0.010643511,-0.008372232,0.016523415,0.021751225,-0.020071251,0.02880269,-0.006686733,0.0041446695,0.0031913954,-0.013285046,0.004675187,0.025310114,0.010107467,0.01298663,0.01880022,0.0016703018,-0.034527857,0.024249079,0.0034234968,-0.0072338297,0.037313078,-0.02267963,0.0037163869,-0.020679137,0.032582626,-0.022878574,0.009383531,-0.020358616,-0.0432814,0.025310114,-0.017098142,-0.008455126,-0.008195393,0.010748509,-0.02303331,0.040739335,0.019750731,-0.016766569,0.035500474,0.033908922,0.019087585,0.010052205,0.03569942,0.04120354,0.015197121,-0.07471457,0.026039576,0.03260473,-0.03733518,0.007117779,0.003230079,-0.02732166,-0.005924114,0.032626837,-0.012257169,0.03616362,0.0098753655,0.008140131,0.0112735005,-0.014180295,-0.0027575868,-0.007797505,0.023718562,0.015904479,-0.023254357,0.02844901,-0.018656539,-0.0052167573,0.019684415,0.040098295,0.028294276,0.04164564,-0.005169784,0.012378746,0.0024011452,0.0044900584,-0.019695468,-0.007681454,0.00899117,-0.0026719302,-0.041446693,0.008869592,-0.0085103875,0.010947453,0.0028073227,0.01717551,-0.014998177,0.02831638,0.015716586,0.052874926,-0.04376771,-0.029930038,-0.0066535757,-0.02619431,-0.026680619,-0.051327586,-0.032405786,-0.01429082,-0.060213756,-0.046773974,0.042308785,-0.0047940006,-0.00194385,-0.03178685,0.020170724,-0.0020156908,0.020325458,0.03981093,0.05212336,0.0042247996,-0.020756504,-0.0015611588,-0.02033651,0.016103422,-0.02303331,-0.064678945,0.053582285,0.013738197,0.02272384,0.0011812308,-0.03810885,0.018446542,0.0026152863,-0.01789392,-0.018225493,0.004675187,0.030902654,0.020071251,-0.009902997,0.03890463,-0.0021165444,0.02316594,-0.008620912,0.00806829,-0.01316347,0.039147783,0.046729766,0.0238954,0.04306035,0.012942421,-0.0064270007,-0.057295907,0.0012530717,0.017871814,0.027675338,0.011102187,-0.032251053,-0.017076038,0.013859774,-0.0050482075,0.05689802,-0.03578784,0.039236203,0.009996942,0.006288845,0.016280262,0.022745945,0.0067143645,-0.012091382,0.019640207,0.06149584,0.008289339,0.004893473,-0.0007135739,-0.00897459,0.0035008641,-0.009814577,-0.029863724,-0.017606555,0.029532151,0.01406977,-0.004420981,-0.0038020434,0.0015887899,-0.011140871,0.025000645,-0.0410267,-0.0041004596,0.018601276,0.01568343,-0.030681606,-0.013892932,0.018336017,-0.016854988,0.020811766,0.042684566,0.0013629055,-0.0056312243,0.0075764554,-0.008040658,-0.021695962,0.012920316,-0.021894906,-0.0037827014,-0.052963346,0.021917012,-0.029532151,0.010516408,-0.026216416,-0.0057859584,-0.01370504,0.012201906,-0.025619583,-0.0065651564,0.012290326,-0.020767557,-0.034107864,-0.03061529,-0.012235064,0.0023845665,0.02736587,-0.009880892,-0.020358616,0.025619583,-0.040739335,0.0046337405,-0.024801701,-0.009505108,0.0065209465,-0.03359945,0.016656045,0.012422956,0.008256181,0.037954118,0.004827158,-0.013948194,0.0374236,0.08466178,-0.040894073,0.020568613,-0.03963409,-0.022204375,0.013771354,0.027763758,-0.04350245,0.019750731,-0.038241483,0.007272513,0.019397052,-0.017838657,0.0010057731,-0.039103575,-0.0057804324,-0.025464848,-0.006686733,-0.0369594,-0.024337498,-0.021065973,0.028515326,0.014556079,0.006360686,-0.0126219,-0.036826767,-0.009228797,-0.011483497,0.014976072,-0.05415701,-0.012312431,-0.014898704,0.0062556877,0.021287022,-0.057472747,0.019640207,0.04219826,-0.0018706274,0.026083786,-0.017871814,0.004169537,0.04007619,-0.018833378,-0.04774659,0.03899305,-0.010262202,-0.011439287,-0.03499206,0.040230922,-0.000672818,-0.026503779,0.007659349,0.030858444,-0.0053272815,-0.0044845324,0.02632694,-0.0009974837,0.02849322,0.005628461,-0.004130854,-0.010035626,-0.013141365,0.025509058,-0.0009429123,0.007173041,-0.008847487,-0.014633446,0.0003961613,0.004412691,0.0022698971,-0.011804018,0.018568119,-0.014357135,-0.030151088,0.025354324,-0.021795435,-0.00786382,-0.008007501,-0.0022477924,-0.016379733,-0.04111512,0.027918493,0.0045397943,0.019176003,-0.0028985054,-0.0066480497,-0.006830415,-0.025708003,-0.003083634,0.011925595,0.011892438,0.019695468,-0.01786076,-0.001666157,0.03191948,0.017319191,-0.002152465,-0.006410422,-0.004117038,-0.023652246,-0.0060346387,0.0098753655,0.006211478,-0.000759856,-0.00053949776,0.02502275,-0.0024439734,-0.0038269113,-0.019629154,0.043104563,-0.03773307,-0.0005515864,0.003354419,0.033709977,0.032648943,0.007941186,0.039390936,0.021485966,0.03375419,-0.0015155674,0.027896388,-0.016921304,0.0071067265,-0.0128650535,0.013196628,-0.04575715,-0.012500322,0.026614303,0.0152413305,0.0017407611,0.0031941584,-0.014147138,-0.0315658,-0.004188879,0.013019788,-0.0011591258,-0.009273007,-0.020546507,-0.0025130513,0.005412938,-0.002510288,0.0187118,-0.0011722506,0.007753295,0.01311926,0.018744959,-0.009726157,0.030062668,-0.076438755,-0.03309104,0.06162847,0.004730449,0.010079836,-0.010267727,-0.010251149,0.03231737,-0.007167515,-0.014743971,-0.04814448,0.03269315,0.010112993,-0.0065651564,-0.023364883,-0.0026263387,0.025089065,-0.013329256,-0.0110690305,-0.00998589,-0.032803677,0.031167913,-0.010361673,0.005509647,-0.035014167,-0.014102928,-0.0075764554,0.0036998081,-0.032626837,-0.039700408,0.036826767,-0.00037336562,-0.0055400413,-0.020701243,0.013671882,0.009521687,0.01483239,-0.024425918,-0.034505755,-0.012212959,0.007073569,0.023630142,-0.022259638,0.020745452,-0.0097040525,0.018700749,0.0030781077,0.023873296,-0.034771014,0.017473927,-0.0527423,-0.046508715,0.01591553,-0.0031388963,-0.040429868,-0.012776634,-0.014777128,0.0052305725,-0.02267963,-0.009709579,-0.008637491,0.03435102,-0.0028156121,-0.046950813,0.050752856,0.020369668,-0.0032273158,-0.03088055,-0.029532151,-0.026547989,0.0761735,0.0037965172,0.018413384,-0.0043187453,-0.008924855,0.0041723005,-0.0005229191,0.032472104,0.049559195,-0.00036438552,0.005335571,-0.04445296,0.034594174,0.025310114,-0.0037716492,0.011091135,0.0104887765,0.011925595,-0.0064767366,0.001862338,-0.0065430515,-0.0036555983,-0.040783547,0.01045562,0.019164952,0.0019397052,0.013627673,0.02597326,-0.0020308879,0.0072780396,-0.04566873,0.008996695,-0.03863937,-0.034505755,-0.009300638,-0.011085609,0.00062895357,0.000108365835,0.0048105796,0.020170724,0.023099624,0.023630142,0.0001539572,-0.01424661,-0.055527516,-0.020027041,-0.024470128,-0.023453303,0.00229891,0.009930627,0.025796423,0.030438451,0.030725816,0.04471822,0.018015496,0.04818869,0.010997189,0.010206939,-0.0025462084,-0.014224505,0.011372972,0.0006254997,0.0055206995,0.04774659,-0.008239603,0.0500455,0.012235064,0.006438053,-0.010742983,0.010577196,0.0032687625,-0.0075432984,-0.028095331,0.02398382,0.010433515,0.0012779398,-0.004716634,-0.025774317,-0.016015003,-0.024956435,0.011815071,0.017286034,-0.015926583,0.011350867,0.008206446,0.012102434,0.024226975,0.023188043,0.022392267,-0.017507084,0.024558548,-0.006708838,0.0037274393,0.006775153,0.0070404117,0.031610012,-0.041800372,-0.012599795,-0.0018540487,-0.0073775114,-0.016523415,-0.039390936,-0.008847487,-0.016998671,-0.007836188,0.009505108,0.0036887557,0.05212336,0.0002220852,-0.023188043,0.028426906,0.007664875,-0.011693493,0.010582723,-0.0010361674,-0.02745429,-0.027122715,0.008631964,-0.009831156,0.021220706,0.008200919,0.011256922,0.011245869,0.015948687,0.000100335536,0.016700255,0.0104777245,-0.038838316,0.024779597,0.040871967,0.009665369,0.023011204,0.019529682,-0.027631128,0.014567131,-0.011770861,-0.0040037506,-0.04535926,0.004910052,-0.011439287,-0.0028791637,-0.0019203635,0.035743628,0.008383284,0.03664993,-0.016976565,0.04558031,-0.021773329,0.02087808,0.0029675832,-0.0102953585,0.010532986,-0.0104887765,0.043811917,-0.00023935466,-0.02606168,-0.03817517,-0.0054543847,-0.030128984,-0.010124045,0.025420638,0.009864313,0.013981352,0.024271183,0.01604816,0.010881139,0.056676973,-0.0116603365,0.01415819,0.0020516114,0.015130806,0.011339815,-0.015407117,0.010908769,-0.039744616,-0.0057417485,0.001825036,0.010378252,-0.0047387388,-0.022005431,0.0072835656,-0.03521311,0.0064159483,0.0055124103,0.005703065,-0.014688708,0.007167515,0.0023721324,-0.0025669318,0.013307151,0.0028764005,-0.03656151,0.027631128,-0.0038959892,0.028736373,0.03187527,0.023254357,0.006366212,0.0073996163,0.0010534368,-0.035279427,-0.0013359651,-0.011826123,-0.003992698,0.0015514878,-0.0069188345,0.0378657,-0.03881621,0.006659102,-0.01798234,-0.041446693,0.012135591,0.031720538,-0.027609024,-0.026923772,-0.0017822079,0.013881879,-0.013041893,0.015981846,-0.020435983,0.008753542,-0.020612823,-0.0047884746,0.023143834,-0.034726802,-0.02849322,-0.02623852,-0.0052167573,-0.011505602,0.017164458,0.0053797807,0.028692164,0.017186562,0.016821831,-0.009085115,0.033709977,0.0013566884,-0.019529682,-0.014821338,-0.015252383,-0.0005367347,-0.0035202058,0.009190113,-0.04332561,-0.027741654,0.000067480396,0.0018568118,0.016446048,-0.024779597,0.060434803,-0.05937377,0.065253675,0.015396065,-0.00522781,0.015020282,-0.0016703018,0.027387975,-0.011737703,-0.0069188345,0.008444073,-0.009831156,-0.003379287,-0.0025185775,0.019993884,-0.044099282,-0.008736963,0.002684364,0.022834364,0.030814234,-0.01532975,0.02606168,-0.021541229,0.029222682,-0.013340309,0.033621557,0.011240344,0.010649038,-0.022745945,0.015440275,-0.013086103,0.012367694,-0.019374948,0.0144566065,-0.046464507,-0.025951156,0.034925748,-0.007869345,0.004404402,0.012301379,-0.011726651,-0.030350031,-0.004915578,0.024691178,-0.00053431693,0.022922784,0.0046171616,-0.020181777,0.0079190815,0.03773307,-0.02235911,0.027852178,0.013395571,-0.009936154,-0.010621406,-0.030305821,0.019341791,0.0021828592,0.01572764,-0.03359945,0.010588248,0.023254357,0.0070017283,0.014511869,0.0024315394,0.012179801,-0.04016461,0.0019866782,-0.014622393,-0.05225599,-0.035765734,0.021419652,-0.036008887,0.017120248,-0.012544532,0.0012074803,0.004871368,-0.029487941,-0.019054426,-0.056411713,0.0010499828,0.0054737264,-0.024691178,-0.019728625,-0.019529682,-0.0024536443,0.0039125676,-0.009610106,-0.010262202,-0.017606555,0.023254357,0.015307645,-0.028692164,-0.021673858,-0.0060401647,-0.006294371,-0.02628273,-0.036141515,-0.009648791,-0.0018512857,0.033444718,0.008156709,-0.00872591,-0.029708989,-0.024646968,0.0015183305,-0.036030993,0.010151677,-0.0040838807,-0.0066701546,0.00401204,-0.012124539,-0.019319685,0.0136387255,0.005064786,-0.0055870144,-0.00082893384,-0.04129196,0.01749603,-0.019496525,0.015749743,0.02849322,-0.0102953585,-0.013892932,0.019441262,0.01595974,-0.0039346726,-0.030681606,0.017562345,0.040717233,-0.004525979,0.018490752,0.028979529,0.021850696,0.0002061973,-0.0059793764,0.006366212,0.03543416,-0.000049131602,0.0156171145,-0.060700063,0.00040203292,0.016611835,0.006902256,-0.0070901476,0.027166925,-0.008935907,0.026769038,-0.00066763716,-0.0048326845,-0.049559195,-0.019319685,0.007714611,-0.0067917313,0.004575715,0.00011993637,0.0062225303,-0.010897717,0.020458087,-0.036893085,0.029885828,-0.015628166,0.030416347,-0.0014934625,0.04566873,-0.026835352,0.0026705486,-0.019485472,0.027719548,0.006686733,-0.020115461,-0.053140186,0.02858164,0.01007431,-0.01257769,-0.009411163,-0.00555662,0.040739335,0.007885925,0.016269209,-0.025265904,0.02619431,0.010582723,-0.015340803,0.014301872,-0.027940597,0.009963785,0.006907782,-0.026260626,-0.019087585,0.00877012,0.008018553,0.0018540487,0.014710813,-0.0074548787,0.04540347,0.025354324,-0.022325952,0.04255194,0.04814448,-0.01577185,-0.013461886,-0.013793459,-0.03138896,0.017650764,0.02380698,0.0018692459,-0.0016730649,0.020115461,0.0144566065,-0.034748908,-0.004067302,0.030438451,0.0006531308,0.023784876,0.01532975,-0.0017490505,-0.006681207,-0.024226975,0.046552926,-0.010195887,0.0036113886,0.027387975,0.014788181,0.010643511,0.000099644756,0.020004937,0.0012668873,0.02276805,-0.017241824,0.014633446,0.010356147,0.03351103,0.017352348,-0.00906301,0.016534468,0.019949675,0.026614303,0.027387975,0.00081788143,-0.021552281,0.02316594,0.01032299,0.015561852,0.0028791637,0.02042493,0.012511375,-0.010317463,0.017330244,-0.01253348,-0.019021269,0.006946466,-0.0040783547,-0.036229935,0.024337498,0.032582626,-0.022624368,0.019176003,-0.0015210937,-0.00229891,-0.014743971,-0.0087038055,0.0057859584,-0.022348057,-0.017363401,0.013616621,-0.035500474,0.012069277,0.056323294,0.0037827014,-0.008477231,0.03178685,-0.004086644,-0.0016108948,0.008764594,0.014102928,-0.039125677,-0.002351409,-0.06578419,0.019938624,0.01573869,0.00393191,0.08214182,0.002909558,-0.037202552,0.030350031,0.027807968,0.0016854989,0.0031858692,-0.03782149,0.0016744464,-0.0025006172,0.01298663,0.018446542,-0.019573892,-0.014147138,0.002157991,0.020612823,0.031610012,0.0017062222,0.004315982,0.0071288315,0.003429023,-0.009173535,-0.023740666,-0.0047055813]},{"id":"interface-GatewayVoiceStateUpdateData","type":"interface","source":"main","text":"Interface: GatewayVoiceStateUpdateData\nProperties: channel_id: string | null, connection_id: string | null, guild_id: string, self_deaf: boolean, self_mute: boolean, self_stream: boolean, self_video: boolean","meta":{"url":"/docs/typedefs/GatewayVoiceStateUpdateData"},"embedding":[0.0005478541,-0.026563376,-0.0022533648,0.02133495,-0.004807178,0.002843421,0.007991314,-0.035384797,0.002120176,0.014632158,0.031221878,-0.009496654,-0.010555969,0.039795507,0.021062378,-0.041604392,-0.04130704,0.06888637,0.00081926456,0.019253492,-0.052432932,0.031717464,0.007285105,0.03863088,-0.01727115,0.028644834,0.019538453,0.040861014,0.0019033576,-0.008400172,0.011714399,-0.034145832,0.06323669,-0.020306611,-0.029834239,0.01994731,-0.022487186,0.00023830686,-0.05327543,-0.026687272,0.0057147187,-0.021211054,-0.008363003,0.036029056,-0.049261186,0.041505273,-0.021359729,0.026860727,-0.020752637,0.0016571135,-0.033575907,0.023156226,-0.017357878,0.0662102,0.051937345,-0.00017026068,0.0026777098,-0.023602253,-0.030230708,-0.0041195536,-0.014210911,-0.03345201,-0.017345488,0.001220379,0.013046285,0.00000889295,-0.059569363,0.032906868,0.0071054553,0.021508405,0.019290661,0.008424952,-0.00864177,-0.0083506135,-0.044255774,0.02985902,-0.028025353,-0.015474653,0.024271293,-0.035037886,-0.029784681,0.031965256,-0.07220679,-0.04809656,-0.0015030175,0.023218175,-0.061601263,-0.0036363576,-0.00053817476,0.033476792,-0.041381378,-0.0075700665,-0.07498207,-0.02807491,-0.023218175,-0.034591857,0.07185988,-0.027306754,-0.049682435,-0.0025027061,0.051639996,-0.029685564,-0.062493317,-0.04507349,0.011063944,-0.0079417555,0.033253778,0.008852393,-0.0589251,-0.022561524,-0.051342644,0.010233838,-0.008765666,0.01018428,-0.0047731064,-0.021111937,0.030602397,-0.049558535,0.048319574,-0.028669614,-0.047031052,-0.009403733,0.017395046,-0.017865853,0.038457423,0.023292512,-0.01698619,-0.015425094,-0.098373696,-0.03793706,0.016502993,-0.019340219,0.04802222,0.006708987,0.0010020117,0.020765027,-0.0006523917,0.02166947,-0.05565424,-0.03146967,0.007328469,-0.00830725,0.040761895,0.025423529,0.0053863935,0.024531476,-0.024296073,0.027678443,-0.0014039004,0.033352897,-0.057636578,0.014210911,-0.020554403,-0.0036828187,-0.015487043,-0.004813373,0.008604601,0.012247154,-0.028644834,-0.040687557,0.038110513,-0.049632873,0.01931544,0.0031020546,-0.039423816,0.006684208,0.023949163,0.022858875,-0.03895301,-0.0020396435,0.025919115,-0.020356169,-0.017308319,-0.032237828,-0.010933852,-0.032683857,0.013318857,-0.021260612,-0.054910857,-0.037540592,0.021842925,0.0117020095,-0.03419539,-0.06943151,-0.023862436,0.011441827,-0.015833953,0.028025353,0.01490473,-0.050178017,-0.012420609,0.00025127726,0.040018518,0.060064945,0.028050132,-0.005033289,0.007247936,-0.0028263852,0.0096019665,-0.041827407,0.01761806,-0.067151815,0.027752781,-0.046634585,-0.0101780845,-0.05124353,0.021892484,-0.003775741,-0.0070744813,0.011726789,0.055059534,-0.005559848,0.003995657,-0.007687768,-0.073941335,0.044900034,-0.029363433,-0.029487329,0.0032274998,-0.03253518,-0.024791658,0.030726293,0.042124756,-0.012395829,0.017122475,0.034616638,0.0006973041,-0.0024810242,-0.0032213049,-0.024816437,-0.021756198,-0.03010681,-0.0058541023,-0.027653664,-0.009329394,-0.042546004,0.0035062665,0.02604301,0.049236406,0.003608481,-0.026340362,-0.040638,-0.0021015918,0.03142011,0.0023540305,-0.0038067151,0.027182858,-0.033154663,-0.0196004,0.0223509,0.00677713,0.056843642,0.016577331,0.007916977,0.0016261395,-0.009317005,0.0047266455,-0.0025414238,0.025770439,-0.00053740037,0.028595276,-0.024692541,-0.032287385,0.013653377,0.0045469957,-0.03927514,0.03523612,0.03481487,-0.022165056,-0.001413967,-0.013479922,-0.019241102,0.054415274,0.011478996,0.016862292,-0.002361774,0.023899604,0.027009403,0.021062378,0.026191687,-0.06888637,-0.001152236,-0.023007551,0.07151297,-0.03320422,0.025968673,-0.002225488,0.021198664,0.031667907,0.013046285,-0.028198808,0.04537084,0.039522935,-0.04608944,0.040935352,0.05590203,0.033352897,-0.013678156,-0.007080676,0.03260952,0.06189861,0.010221448,-0.038556542,-0.0018460555,0.0060895053,0.043908864,0.016428655,0.01556138,0.025423529,-0.0264147,0.02070308,-0.019501284,-0.016428655,0.0059315376,-0.05253205,-0.018943751,0.025312023,0.046510685,-0.0067461557,0.0021774783,-0.009075407,0.0155985495,-0.0028511647,-0.053820573,0.008400172,-0.036772434,0.021929653,-0.004587262,-0.00096639147,0.024407579,0.0016493701,-0.06189861,0.009527628,0.009707279,0.026241245,0.0061576483,-0.07904587,0.06863857,-0.018943751,-0.006324908,-0.019550843,-0.02269781,-0.018906582,0.03590516,0.03625207,0.0014472641,-0.055456,-0.021260612,-0.0064302203,0.026489038,-0.00914355,0.014780833,-0.017518943,-0.06972886,-0.03226261,-0.062394198,0.015784394,0.004488145,-0.044677023,0.03424495,-0.06031274,0.0210376,-0.00897629,0.027876677,-0.020095987,-0.022982772,-0.057289667,0.01896853,-0.023428798,-0.02604301,0.03327856,-0.03479009,0.012575479,0.038729995,0.0014356489,-0.03275819,-0.014508261,-0.001537089,-0.03897779,-0.013628597,0.018683568,0.034071494,0.011571919,-0.02332968,-0.0055691404,0.01833666,-0.044751357,0.03142011,-0.023193395,0.011206424,0.010940047,-0.023404019,-0.035459135,-0.027257195,-0.006851468,0.004296106,-0.01688707,0.044503566,0.024519086,-0.010940047,0.059321567,0.030899748,-0.042050418,0.012532115,-0.0117701525,0.011801126,-0.0020411923,0.0019389777,0.069233276,-0.011776348,0.012284323,-0.02874395,0.032361723,0.023676591,0.033055544,-0.045346063,-0.035112225,-0.017543722,0.028620055,0.034443185,0.03146967,0.03345201,0.0024438554,0.0060616285,0.046238113,0.00055250025,-0.028248366,0.01185688,0.03659898,-0.041034468,-0.042223874,0.019129595,0.051986907,0.0050549707,0.034393623,-0.048939057,0.01794019,0.00059237937,-0.0032027205,0.000521139,-0.05461351,-0.026142128,-0.030379383,-0.007285105,-0.0043332744,0.03870522,0.004094774,-0.03243606,-0.014471093,-0.025150958,-0.046461128,0.011640062,-0.04276902,0.06477301,-0.008598406,-0.033922818,0.012686986,0.045668192,-0.07146341,-0.029784681,-0.022227004,-0.03052806,-0.007049702,0.06596241,-0.006808104,0.019526064,0.0009207047,0.019179154,-0.035607807,0.045172606,0.001770169,-0.021805756,0.0026900994,0.036375966,0.011491386,-0.012117063,0.023354461,-0.0061142845,0.026241245,0.022524355,-0.029239537,0.027728,-0.03590516,-0.003252279,0.06997666,0.04361151,0.042818576,-0.009577188,-0.002042741,-0.013021505,0.012501141,-0.017828684,0.03015637,-0.013665766,0.022883654,-0.0014968227,-0.025299633,-0.02812447,0.042917695,-0.0019467212,-0.0045469957,-0.018844634,0.028471379,0.0033544935,0.0751803,0.009955071,-0.02782712,-0.043561954,-0.026216466,-0.014867561,0.007285105,-0.008468315,-0.009199304,-0.043561954,-0.022549134,-0.0021960626,0.021087157,-0.0070249224,-0.010940047,0.03649986,-0.030280266,0.0052934713,0.03863088,0.010766592,-0.00022553006,-0.03796184,0.017345488,-0.052730285,0.0065788957,-0.009131161,0.03734236,-0.028149249,-0.01935261,0.019179154,-0.008431146,-0.0039182217,0.02129778,-0.010165695,0.016379096,0.018448165,-0.0050147045,-0.0010817699,0.004596554,0.010940047,-0.00089515105,0.009118771,0.017531332,0.013492311,-0.013678156,0.0028248366,-0.00038349789,-0.026513817,-0.0056217965,-0.004875321,0.014371975,0.021025209,-0.0025770438,0.0012405121,-0.010748007,0.007068286,0.025720881,-0.034666196,0.021409288,-0.025423529,-0.046560246,-0.01994731,-0.016441045,-0.007966535,-0.008579821,0.006919611,-0.034418404,0.017395046,0.0008788897,0.010562163,0.016664058,0.004776204,-0.019798636,0.00695678,0.012073698,-0.00880903,-0.002326154,-0.05867731,0.009849759,0.019860584,-0.028768731,-0.0015804527,0.013133013,-0.031965256,0.0017004773,0.036351185,0.0034319286,0.02308189,0.022871265,0.0017655229,-0.00507975,-0.01049402,0.009440902,0.00051339547,0.0033080324,0.020058818,-0.013876391,0.019872973,-0.009732057,-0.001561094,0.0359795,0.01895614,0.0010120783,0.0034598054,0.006201012,0.03496355,-0.01968713,0.035285678,-0.013492311,-0.039696388,-0.02341641,-0.024506697,-0.03627685,0.021446457,0.023627032,-0.020170325,-0.011584308,0.049310744,-0.022549134,0.031767022,-0.0044169044,0.02507662,-0.025919115,-0.011225008,0.005284179,-0.046931934,-0.026786389,-0.04105925,-0.012501141,-0.023230564,-0.042124756,-0.061849054,0.01723398,-0.0048350547,-0.014731275,-0.029412992,0.052036464,0.00029735122,0.024593424,-0.0028558108,0.054663066,-0.029437771,-0.02372615,-0.025150958,-0.01354187,0.005686842,-0.019910142,-0.042570785,0.0143100275,0.00093231996,0.026241245,-0.030181149,-0.05818172,0.014842782,0.024940334,-0.026389921,-0.020851754,0.0032708636,0.004952756,0.016862292,-0.00900107,0.01999687,-0.0053461273,0.0018739322,-0.008604601,-0.0007085322,-0.032460842,0.03488921,0.034740534,0.009397537,0.023800487,-0.026588155,-0.006312519,-0.0494842,0.007520508,0.011218814,0.006684208,0.03464142,-0.050847057,-0.028520938,-0.019191543,-0.0036115784,0.03496355,-0.033030763,0.025188126,-0.016763175,0.013182571,0.04100969,0.014533041,0.009515239,-0.01352948,0.059668478,0.030602397,-0.005064263,0.024209345,-0.035756484,-0.012594063,-0.013628597,0.0027954113,0.005048776,-0.0001148945,0.0012451583,-0.0066098697,0.017419826,-0.00020733279,0.0025940796,-0.010047994,0.021273002,-0.024531476,0.018237542,0.02874395,0.006337298,-0.023317292,0.009453291,0.03379892,0.018311879,0.032708634,0.023627032,-0.010704644,0.011286957,0.0054421467,0.005587725,-0.032386504,0.018757906,-0.035706926,-0.0026653202,-0.032559957,0.023763318,-0.034418404,0.006399246,-0.032906868,0.031618346,-0.0076629887,-0.00965772,-0.028545717,-0.022041159,0.00695678,0.010562163,0.0061452584,0.010425877,0.006067823,-0.0127861025,-0.0018568964,0.0055939197,-0.018857023,-0.0016075551,-0.019042868,0.007916977,-0.055604678,0.012587869,0.0055939197,-0.030453721,-0.0041195536,-0.0081461845,0.016193252,0.03082541,-0.0006953682,-0.0027055864,0.0019296856,0.025212906,-0.042298213,0.01424808,-0.038234413,-0.013467533,0.03835831,0.042273432,-0.054762185,-0.019724298,-0.0150905745,0.008524069,0.015400316,-0.010469241,-0.0014519102,-0.07081915,-0.00005856038,-0.013318857,-0.0155985495,-0.009186914,-0.00048590597,-0.007879808,0.029066082,-0.0021960626,0.008288666,-0.023825267,-0.02002165,0.0031252853,-0.030899748,0.021644691,-0.03627685,-0.016168473,0.0015200533,-0.0023292513,0.015548991,-0.061155234,0.02676161,0.034145832,-0.005900563,0.012309101,-0.027975794,0.00798512,0.030924527,-0.0035217535,-0.038110513,0.0098002,0.029313875,-0.00017577794,-0.034145832,0.049310744,-0.030032473,-0.013467533,0.0047793016,0.062096845,-0.014533041,0.0076134303,0.02708374,-0.039498154,0.049236406,0.014991458,0.0074771442,0.0057116216,-0.010568358,0.0107542025,0.012055114,0.018163204,-0.015610939,0.012451583,0.017345488,0.023218175,-0.008703718,-0.0031469672,0.021880094,-0.01796497,-0.022214614,-0.010562163,-0.03186614,0.0012529017,0.005683745,0.0074709496,0.01134271,-0.036128175,0.031370554,-0.006380662,0.0032925452,-0.023688981,0.010258617,-0.008034678,0.0023524817,0.0075328974,0.017865853,-0.03248562,0.014966678,-0.023515526,-0.022437628,0.021149106,0.038383085,0.019377388,-0.006708987,0.018026918,-0.036078613,-0.0098002,-0.00254607,0.012377244,-0.014111794,-0.008102821,0.0060213623,0.01930305,0.0013357574,-0.013764883,0.049855888,-0.023181006,0.009471876,0.025089009,0.036375966,0.010741813,0.035409573,0.01103297,-0.007904586,0.02095087,0.017370267,0.0050735553,0.014235689,0.009868343,-0.002519742,0.01763045,-0.032014813,-0.011819711,0.024469528,0.00016300112,-0.014297638,0.0145825995,-0.03142011,-0.033352897,-0.002372615,0.020938482,0.008647964,-0.0025336803,-0.07428825,0.010797566,-0.026266025,0.003026168,0.029685564,0.010401098,0.012253349,-0.0029316973,0.012253349,-0.0029069178,-0.0025956284,-0.04913729,-0.035632588,0.04507349,-0.0007317628,0.022474797,-0.018757906,-0.0023369947,0.00304785,-0.0038655659,-0.031221878,-0.018225152,0.011255982,0.023404019,-0.021508405,0.011652451,-0.015177302,0.026910286,-0.02809969,-0.014384366,-0.009893123,-0.0043456643,0.04911251,-0.015387925,0.008740887,-0.046287674,-0.017246371,0.0062815445,0.0074771442,-0.038407866,-0.03479009,0.011732983,-0.0005842487,0.010580747,-0.029264316,-0.02197921,0.027158078,0.021570353,-0.027678443,-0.027752781,-0.017518943,0.013455143,0.038135294,-0.042868134,0.04232299,0.02946255,0.022871265,0.019179154,0.042570785,-0.019451726,0.0055784327,-0.019055257,-0.04343806,0.00831964,-0.0057673748,-0.006473584,0.013789663,-0.032683857,0.016081745,-0.004791691,-0.002744304,-0.03377414,0.0359795,0.016911851,-0.012835661,0.018658789,0.005299666,0.0186464,-0.009081602,-0.0045129242,-0.028198808,0.077360876,0.00473284,0.012395829,-0.018039307,-0.012123257,-0.013021505,-0.024196956,0.02439519,0.041876964,0.0050673606,-0.019711908,-0.041455716,0.034591857,0.027926236,-0.019080037,-0.004447879,0.00864177,0.01597024,-0.014780833,0.0045655803,-0.022214614,0.012079894,-0.027703222,-0.013975508,-0.0037199876,0.0017097695,0.0006489071,-0.024234125,-0.0004317013,-0.0033854675,-0.039597273,0.022834096,-0.012971947,-0.023850046,-0.020814586,-0.008121405,0.01833666,-0.0047142557,-0.048220456,0.045618635,0.0140746245,0.018398607,-0.026513817,-0.02710852,-0.045940764,0.0057983487,0.026166908,0.0079417555,0.0139383385,-0.020009259,0.036078613,-0.008406367,-0.0017531333,0.048641704,0.0132940775,0.055158652,0.0033761754,0.0027551448,-0.028248366,-0.04006808,0.019811025,0.006355882,-0.0052624973,0.008567432,0.0067585455,0.035756484,-0.008102821,0.0076072356,-0.014396755,0.019860584,0.005315153,-0.026984623,-0.0147188855,0.0024593424,0.0086541595,0.013678156,0.0014859817,-0.0099426815,-0.00844973,-0.023441188,0.03142011,0.013244519,-0.03412105,0.007892197,-0.00009563249,0.02909086,0.029586447,0.02231373,0.035384797,0.0013055577,-0.006888637,-0.0010933853,-0.031444892,-0.0053306404,-0.02372615,0.030676734,-0.026736831,-0.03295643,0.0013992543,-0.010933852,-0.017531332,-0.024593424,-0.019129595,-0.007489534,0.008139989,-0.0015843245,0.002628151,0.028719172,-0.0043983203,-0.037367135,0.0058107385,-0.006064726,-0.0050178017,-0.0092302775,0.03632641,-0.0049713408,-0.053324986,0.021793367,-0.039597273,0.004376638,0.016329538,0.015945459,0.022871265,-0.014520652,0.016676448,0.017221592,-0.0042589367,-0.023800487,0.00254607,-0.006231986,0.01592068,0.013343636,0.017048137,-0.04304159,0.006337298,-0.010586943,-0.010035603,-0.00829486,-0.0035806042,-0.0029053693,-0.022970382,-0.009818785,0.047650535,-0.0028093497,0.049855888,-0.018497724,0.016279979,-0.012507336,0.038209632,0.024073059,0.0297599,0.010921462,-0.023143837,0.036053836,0.00846212,0.005392588,-0.017828684,0.0067151817,-0.02710852,-0.0015138584,0.0064302203,-0.0017500358,0.007055897,-0.0044169044,0.009484265,0.0059222453,0.062394198,0.015734835,0.016156083,0.009137356,0.016168473,0.006176233,0.015511822,0.010946242,-0.016032187,-0.0073656375,-0.0045098267,0.026216466,-0.014793224,-0.006560311,-0.00399256,-0.014842782,0.014495872,0.011324125,0.032361723,-0.020839365,0.005835518,-0.003273961,0.011819711,0.024878386,-0.03112276,-0.013343636,0.034021936,0.0057209134,0.022276562,0.051540878,0.022511965,0.0027830217,0.014235689,-0.012600258,-0.05659585,0.030552838,-0.0012769067,-0.0051509906,0.01320735,-0.000079564685,0.03751581,-0.029412992,-0.02202877,-0.004488145,-0.008889562,-0.0043611513,-0.020207493,-0.041604392,-0.008332029,-0.026018232,0.015016236,-0.00778069,0.00053933624,-0.023911994,0.0033792728,-0.03149445,0.012333881,0.011212619,-0.0325104,0.0048629316,-0.04599032,-0.004943464,-0.012290517,0.013789663,0.025274854,0.03379892,0.044107098,0.017382657,0.0011398464,0.038556542,-0.006328006,-0.0077992748,0.01204892,-0.008177158,-0.025039451,0.015772004,-0.014012677,-0.038060956,-0.014917119,0.026736831,0.013789663,0.0027489502,-0.037045006,0.021434067,-0.06640844,0.04819568,0.0049001,-0.002896077,0.009620551,-0.019711908,0.005364712,-0.0049248794,-0.0155985495,0.019030478,0.002445404,0.006355882,0.005023997,0.010128526,-0.04472658,-0.023453578,0.00023346717,0.012092283,0.029982915,0.0019343316,-0.016651668,-0.030701514,0.008728498,-0.014087014,0.025200516,0.000701563,-0.0058417125,-0.0064488044,0.00009084118,-0.012569284,-0.0022920824,-0.037193682,0.007508118,-0.04497437,-0.02269781,0.0032832532,0.017395046,0.013331247,0.023131447,-0.028297925,-0.02439519,0.001280004,0.03724324,0.0119745815,0.031767022,-0.020826975,-0.017072916,0.012148037,0.018819854,-0.0049001,0.015499433,0.013033895,-0.0011073236,-0.02874395,-0.040538885,0.0028558108,0.013603819,-0.006671818,-0.023552695,0.0080098985,0.015548991,0.020232273,-0.006987754,0.009818785,-0.0027474014,-0.0007573164,-0.008555043,-0.050326694,-0.025646543,-0.03243606,0.039795507,-0.031246658,0.039572492,0.023255343,-0.0056496733,-0.002843421,-0.023812877,-0.0030710807,-0.037119344,0.0008757923,-0.01490473,-0.023057109,-0.021991601,-0.0039770724,0.011237399,0.0038655659,-0.020876534,-0.007886002,-0.006975364,-0.0023106667,0.030305045,-0.032361723,-0.008239107,-0.02874395,-0.02065352,-0.028595276,-0.021508405,-0.019674739,0.011949802,0.022127887,0.0118321,-0.003524851,-0.02884307,-0.005974901,0.007904586,-0.009261251,0.015288808,-0.014706496,-0.03355113,-0.008016094,-0.006324908,-0.015635718,0.019488895,0.02003404,0.011912634,0.0080780415,-0.040018518,0.027802339,-0.00024314657,0.03218827,0.005587725,-0.0154622635,-0.029214758,0.020641131,-0.0042031836,-0.022388069,0.0058417125,-0.0056899395,0.031370554,-0.028397042,0.007824054,0.01725876,0.00012534825,-0.008561238,-0.019327829,0.015747225,0.03184136,0.009416122,0.023800487,-0.0528294,-0.004364249,0.018894192,0.004008047,-0.029264316,0.030974086,-0.021161495,0.01698619,0.017543722,-0.0038996374,0.007886002,-0.029214758,0.00431469,-0.04546996,-0.0024794755,-0.02370137,0.017890632,-0.012117063,0.013826832,-0.02506423,-0.0036580395,-0.0297599,0.054266598,-0.006111187,0.0045531904,-0.010363929,0.016502993,0.00028031546,0.01103297,0.047923107,-0.036029056,-0.028050132,-0.004859834,0.01964996,-0.03481487,-0.006770935,-0.034096275,-0.014594989,-0.009186914,0.015821563,-0.010023214,0.03558303,-0.00067562226,-0.0077311317,0.010240032,-0.0101099415,-0.022809317,0.024903165,-0.0095338235,-0.0393247,-0.0019467212,0.0059470246,0.0003476841,0.017469384,0.009416122,0.024816437,-0.011243593,0.018311879,0.03793706,0.04574253,0.011683425,0.02104999,-0.0057333033,-0.03521134,-0.036549423,0.010035603,0.019674739,-0.02066591,0.003850079,0.018547282,-0.0256961,0.032807752,0.018026918,-0.010865709,0.032733414,0.015400316,0.0057302057,-0.0013644085,-0.014099404,0.027356312,-0.013740105,-0.0039151246,-0.0033544935,-0.008901952,-0.01354187,-0.0045222165,0.013256908,-0.015511822,0.030949306,-0.031990036,0.010010825,0.023540305,0.032559957,0.013603819,0.0064983633,0.035781264,-0.0006907221,-0.0050735553,-0.0062072068,-0.012222374,-0.045172606,0.019228712,-0.0038810528,-0.014087014,0.021706639,0.04767531,0.027975794,-0.0012947167,-0.008034678,0.005584628,-0.017407436,0.003236792,-0.010778982,-0.014037455,0.00999224,0.00007332147,-0.0013063321,0.01251353,-0.029982915,-0.0071674036,-0.026935065,0.0075824563,-0.013839222,-0.011305541,-0.021607522,0.008034678,-0.04343806,-0.0044138073,0.041381378,0.008139989,-0.017865853,0.022834096,0.010531189,0.008908147,-0.009651525,0.0066780127,-0.048170898,-0.019526064,-0.0372928,-0.008220523,0.023280123,0.003089665,0.0589251,0.0031128956,-0.00012970399,0.01352948,0.017556112,-0.016465824,0.007464755,-0.0046492103,0.01896853,0.011070138,0.014768444,-0.017345488,-0.0011886306,-0.009428511,0.010692255,0.020504845,0.03486443,-0.010524995,0.03885389,-0.0019389777,0.011274567,-0.022202225,-0.02743065,0.00034090853]},{"id":"interface-GatewayVoiceStateUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayVoiceStateUpdateDispatchData\nDescription: VOICE_STATE_UPDATE — guild_id?, channel_id, user_id, member?, session_id, deaf?, mute?, ...\nProperties: channel_id: string | null, connection_id: string | null, deaf: boolean, guild_id: string, member: APIGuildMember & { guild_id?: Snowflake; }, mute: boolean, self_deaf: boolean, self_mute: boolean, self_stream: boolean, self_video: boolean, session_id: string, suppress: boolean, user_id: string","meta":{"url":"/docs/typedefs/GatewayVoiceStateUpdateDispatchData"},"embedding":[0.00040765296,-0.010307852,-0.019535955,0.028450176,0.005888408,0.015555943,-0.01928485,-0.013421552,0.0030132576,-0.006685666,0.014664521,0.009742866,-0.021607568,0.019397847,0.02711932,-0.023352748,-0.03974989,0.062073108,-0.013572215,0.021092804,-0.063830845,0.021494571,0.0073510935,0.02015116,-0.03442647,0.02980614,0.006283898,0.018970968,0.0027747082,-0.018908191,0.0292286,-0.026340894,0.075180784,-0.011117665,-0.023365302,0.013170447,-0.04178384,0.011268329,-0.052028917,-0.03917235,-0.013471773,-0.037489947,-0.007790527,0.0292286,-0.055996373,0.051777814,-0.024608271,0.0016871104,-0.02371685,0.006425144,-0.03279429,0.022047002,-0.016999796,0.066542774,0.05268179,-0.004463388,0.01624648,-0.026491558,-0.023390412,0.006459671,-0.027370425,-0.028023297,-0.017840996,0.010772397,0.01226647,0.006616612,-0.039297905,0.041884284,0.01753967,0.008016521,0.010722175,0.024658492,-0.01880775,-0.0005500765,-0.015279728,0.03189031,-0.04331558,-0.011111388,0.017050017,-0.028274402,-0.01880775,0.034150254,-0.064081945,-0.04130674,0.004874572,-0.0024514107,-0.04542486,-0.0073008724,0.0035845211,0.021017473,-0.028801722,0.011619875,-0.06287664,-0.017150458,-0.02223533,-0.041457403,0.08467254,-0.013120227,-0.034752905,-0.0027904022,0.05469063,-0.035656884,-0.05428886,-0.057201676,0.025989348,-0.011349938,0.00009612606,0.030534346,-0.07417636,-0.0027087932,-0.070108466,0.008386901,-0.01662314,0.0044225836,-0.02268732,-0.012046753,0.032116305,-0.045223977,0.029354153,-0.032769177,-0.05373643,-0.01753967,0.008154629,-0.04178384,0.028500397,-0.0059606005,0.005800521,-0.016798912,-0.06940537,-0.013973983,0.026993766,-0.033773597,0.038921244,-0.0005320283,-0.016284147,0.0051162606,-0.0039831502,0.030408792,-0.05268179,-0.0402521,0.010320407,-0.009171603,0.017426673,0.033723377,-0.022775207,0.00704349,-0.032718956,0.037590392,0.00060735975,0.026039569,-0.06639211,0.03189031,-0.036133982,-0.00017989306,-0.003785405,0.0037414618,0.012059309,0.014739852,-0.021456907,-0.03553133,0.013132782,-0.045751296,0.014413416,0.0051005664,-0.043717347,-0.0036661304,0.01226647,0.024344612,-0.044119116,-0.021695456,0.011123943,-0.03244274,-0.01923463,-0.019736838,-0.013308555,-0.016861688,0.00965498,-0.007539422,-0.07452791,-0.052531127,0.038795695,0.019724283,-0.056699466,-0.065086365,-0.00783447,0.0015968697,-0.0071502095,0.037188623,0.022310663,-0.046579942,-0.015166731,0.0058664363,0.046153065,0.0634793,0.039825223,-0.021695456,0.027973076,-0.007520589,0.021770786,-0.043139808,0.019435512,-0.060867805,0.0056686914,-0.049316984,-0.0034181643,-0.03184009,0.012373189,0.009039774,0.0033114448,0.004086731,0.03603354,0.015606164,0.007125099,0.0031121303,-0.08622939,0.047634583,-0.030534346,-0.019535955,-0.015367614,-0.0088639995,-0.011714039,0.036184203,0.033070505,-0.004990708,0.022072112,0.018920748,-0.0008317847,-0.032643627,-0.00743898,-0.008594062,0.0002599327,-0.01851898,-0.0021861813,-0.04293892,-0.0154806115,-0.031086776,0.015593609,0.016447365,0.04587685,0.018066991,-0.033522494,-0.02529881,0.021017473,0.034778018,0.00081922946,0.018970968,0.015982822,-0.044671547,-0.02266221,0.02930393,0.025989348,0.048262347,0.015982822,0.0017294844,-0.014551524,-0.0056906627,0.029329043,0.024344612,0.03595821,0.02664222,0.02477149,-0.026592,-0.02556247,0.025863796,-0.034702685,-0.028148849,0.056448363,0.028374843,-0.016861688,0.016949575,-0.021770786,0.022411104,0.04587685,0.006509892,0.008751003,-0.009033496,0.042662706,0.027495977,0.02005072,0.010226243,-0.048789665,0.0022505268,-0.019196963,0.05057251,-0.04243671,0.04745881,-0.009027218,0.04339091,0.019699173,0.020992363,-0.03487846,0.04065387,0.034275807,-0.029856361,0.024131173,0.049869414,0.02503515,-0.021821009,0.011136498,0.024168838,0.064383276,0.005521167,-0.024884487,-0.0048337677,0.012071864,0.025700577,0.022285553,-0.0022489575,-0.0019256601,-0.024871932,0.011663819,0.00022050142,-0.007815638,0.010634289,-0.051526707,-0.024093507,0.02141924,0.048739444,0.001100153,0.008217405,0.002018255,0.023967953,0.009912362,-0.04700682,0.01878264,-0.04688127,0.0013779376,-0.018418537,-0.02134391,0.009567093,0.013408997,-0.049668532,0.008581507,0.017213235,0.038318593,0.010257632,-0.07864603,0.06503615,-0.003336555,-0.018682199,-0.025474584,-0.030835671,-0.01487796,0.010941892,0.01799166,-0.0058789914,-0.043516465,-0.012316691,-0.01334622,0.0349789,0.010967002,0.026893325,0.0012610169,-0.052983116,-0.028902164,-0.044144224,0.031915423,-0.01007558,-0.040000997,0.03661108,-0.05936118,-0.003684963,-0.011010946,0.03859481,-0.014526414,-0.010056748,-0.040377654,0.022009337,-0.024997484,-0.013471773,0.004909099,-0.026817994,-0.0010067733,0.017502006,0.0016290424,-0.01379821,-0.03342205,-0.0061583454,-0.02669244,0.0039831502,0.0085375635,0.042034946,0.015731717,-0.022674765,-0.0082927365,-0.0008906374,-0.030885892,0.017389009,-0.032091197,-0.005706357,0.026240453,-0.027445756,-0.030584566,-0.012649405,-0.030685008,-0.016849132,0.00783447,0.06272598,0.021557348,-0.020904476,0.05996383,0.005800521,-0.028374843,0.00058185693,-0.01701235,0.040528316,0.018996079,0.008951887,0.048864998,-0.014840295,0.025989348,-0.01854409,0.019950278,0.0074829236,0.034627352,-0.0522298,-0.011695206,-0.012473632,0.0247966,0.021795897,0.025813574,0.015543388,0.011626153,0.023591297,0.048136793,-0.006660555,-0.02010094,0.0035248839,0.055443943,-0.034225587,-0.05469063,0.018908191,0.06478504,-0.008060465,0.04075431,-0.027295094,0.0044382773,0.010929337,0.010332963,-0.0006834759,-0.05217958,-0.026265563,-0.024206504,0.0050472068,-0.008688226,0.03919746,0.027521087,-0.034225587,0.0239554,-0.023553632,-0.024846822,0.02273754,-0.040051218,0.056197256,-0.023792181,-0.025022594,0.017313676,0.047760136,-0.048086572,-0.04577641,-0.021758232,-0.02086681,-0.007369926,0.055695046,-0.003041507,0.01571916,-0.008543842,0.02192145,-0.036636192,0.057804327,-0.005307728,-0.028651059,0.006167762,0.047182593,0.012348079,-0.009403875,-0.006616612,0.0020433655,0.033070505,0.043591794,-0.021670345,0.040026106,-0.025838684,-0.0037916827,0.0864805,0.056850128,0.034300916,0.003936068,0.004143229,-0.026817994,0.00050181727,-0.026491558,0.057101235,-0.013973983,0.03698774,0.01645992,-0.017878663,-0.02870128,0.050672952,-0.029329043,-0.025688022,-0.013459218,0.019862391,0.015844714,0.061370015,0.014300419,-0.024419943,-0.022586878,-0.02661711,-0.025072815,-0.010941892,0.000831,-0.014463637,-0.05323422,-0.012373189,0.012316691,0.017527116,0.009943751,-0.000045390138,0.039925665,-0.02062826,0.009196714,0.042160496,-0.012065587,-0.008085575,-0.006943048,0.024758935,-0.05936118,0.01643481,0.0052543683,0.022724986,-0.0261149,0.0025173258,0.03502912,-0.010803784,-0.010803784,0.0070309346,-0.010703343,0.020854255,0.022724986,-0.010941892,0.010935615,-0.00014546423,0.0019193824,0.006381201,0.014049314,-0.00075841503,0.01701235,-0.0060422095,-0.0016871104,-0.013070006,-0.01672358,-0.018443648,0.005922935,0.0076335864,0.026265563,0.01184587,-0.014965847,-0.0143380845,-0.0045355805,0.029429484,-0.045223977,0.0067986627,-0.0076775295,-0.048739444,-0.018569201,-0.017640114,0.0012986826,-0.010219966,0.015744273,-0.03274407,0.03387404,0.012718459,0.01672358,0.017552227,0.0027966797,0.015078844,0.024671048,0.021230912,0.011513156,-0.007225541,-0.083165914,0.015053733,0.037339285,-0.047684804,0.01698724,0.0032204192,-0.03457713,-0.009240657,0.039373234,-0.008826334,0.025838684,0.02115558,0.002076323,0.008801224,-0.011123943,-0.006698221,-0.0068049403,-0.010571512,0.022335773,-0.019372737,0.019724283,-0.02015116,-0.004281337,0.034250695,0.008870278,-0.00096361473,0.013484328,-0.0029865778,0.02091703,-0.014702187,0.031639207,0.0009212408,-0.028324623,-0.018066991,-0.01701235,-0.03445158,0.010489903,0.014538969,-0.024294391,-0.00704349,0.02052782,-0.016635694,0.011946311,0.015329949,0.04652972,-0.028977495,-0.005571388,-0.0003301636,-0.039925665,-0.03608376,-0.04901566,-0.02242366,-0.03178987,-0.04906588,-0.0447971,0.012969564,-0.019397847,0.010063025,-0.02408095,0.05368621,0.004858878,0.035305336,0.006086153,0.07457813,-0.029027717,-0.03224186,-0.01883286,-0.019849835,0.01305745,-0.023302527,-0.035732213,0.012103252,0.007947467,0.027219761,-0.017250901,-0.03821815,0.014564079,0.0033679432,-0.03482824,-0.029052828,-0.0019083966,0.020176271,0.021318799,0.010063025,0.025713133,-0.014576634,0.018631978,-0.0012453229,0.01435064,-0.022147445,0.028199071,0.054941732,0.012059309,0.034501802,-0.012837733,-0.010295297,-0.03867014,0.007143932,0.0071690422,0.013923761,0.03648553,-0.04745881,-0.017815886,0.011896091,-0.012316691,0.037238844,-0.03445158,0.035707105,-0.0025926572,0.011751705,0.040955193,0.008807501,-0.008562674,-0.013710323,0.028123738,0.04183406,-0.023365302,0.021067694,-0.03796705,-0.029379264,0.0078846915,-0.017188124,-0.0051633427,0.0018205099,0.00064384844,-0.0034464134,0.019950278,0.008160907,0.00073487393,-0.006873994,0.022047002,-0.038720362,0.023666628,0.019485733,0.008317847,-0.029128158,0.0010185438,0.03924768,0.009516872,0.027395535,0.030559456,0.0026413088,-0.0061363736,0.016259037,-0.01002536,-0.040779423,0.013019784,-0.02669244,-0.004369224,-0.04331558,0.024219058,-0.021833563,0.0070183794,-0.03344716,0.026265563,-0.01382332,0.00704349,-0.031915423,-0.01566894,0.005483501,0.008179739,-0.011180442,0.0022787761,-0.0027762775,-0.011230662,0.012605461,-0.00503779,-0.022549212,0.00030073724,-0.02015116,0.00846851,-0.058306538,0.0033930538,0.013245779,-0.029555036,-0.0038701529,0.022084668,0.03189031,0.046554834,0.0073322607,0.00601396,0.016334368,0.040528316,-0.042813372,0.0155684985,-0.036234424,-0.008907943,0.035004012,0.020766368,-0.042813372,-0.005405031,-0.033999592,0.023277417,0.015016068,-0.01382332,0.0017216373,-0.050873835,-0.010558957,-0.024344612,-0.020929586,-0.008003966,0.0026099207,-0.028249292,0.017087683,0.0023650934,0.012467354,-0.03653575,-0.039448567,-0.002812374,-0.02141924,0.015455501,-0.039348125,-0.02189634,-0.023566186,-0.0055462774,0.022498991,-0.07769183,0.038720362,0.041633178,-0.015417836,0.036786854,-0.024131173,0.002088878,0.022436215,-0.012122084,-0.040452987,0.012247637,-0.012680793,-0.017602447,-0.021858674,0.05489151,-0.024696158,-0.016861688,0.012140918,0.03801727,-0.0048526004,0.006591501,0.03437625,-0.0474337,0.028073518,0.0017153597,0.0034589688,-0.008901666,-0.006848884,0.028249292,0.0114001585,0.0024043287,-0.03387404,0.0004323711,0.017301122,0.015229506,-0.0030744646,-0.008719615,0.023917733,-0.010320407,-0.02719465,0.003339694,-0.031714536,-0.0068865493,-0.0048839888,0.0024827989,-0.0070811557,-0.043918233,0.03291984,-0.005373643,0.00991864,-0.017502006,0.008826334,-0.00785958,-0.008085575,0.0076963627,0.00045630452,-0.026366005,0.03344716,-0.020025609,-0.012724737,0.033020284,0.03711329,0.026541779,-0.006459671,0.021193245,-0.032266967,-0.014915626,0.006729609,0.02872639,0.006591501,0.010722175,0.009981416,0.005288895,-0.0080479095,-0.009912362,0.049869414,-0.014225088,-0.009058606,0.002212861,0.016974686,0.016033042,0.0349789,0.020000499,-0.012122084,0.017840996,0.016271591,0.011557099,0.007539422,0.0061740396,-0.0016494447,0.016058153,-0.037690833,0.00007027992,0.009102549,-0.014664521,-0.020565484,-0.000728204,-0.029379264,-0.03985033,-0.0131955575,0.028575728,0.011167887,0.0063874787,-0.07759139,-0.01669847,-0.019586176,-0.0009008385,0.024206504,0.008813779,0.01983728,0.007238096,0.017564781,-0.012712182,0.014275309,-0.056699466,-0.03909702,0.045198865,0.0076649743,0.017062573,-0.00965498,-0.009554538,0.018167432,-0.009309711,-0.015417836,-0.014476192,0.028450176,0.016233927,-0.013245779,0.0018754391,0.0068049403,0.015857268,-0.024168838,-0.0065036146,-0.0061112633,-0.015179286,0.04389312,0.002711932,0.006591501,-0.040402763,-0.015857268,0.008889111,0.005392476,-0.028851943,-0.027495977,0.025587581,0.01108,0.016585473,-0.03397448,-0.015417836,0.03962434,0.01851898,-0.02719465,-0.019925166,-0.010232521,0.014890515,0.03274407,-0.026340894,0.04331558,0.00055203825,0.014551524,0.019171853,0.030333461,-0.025110481,0.0022065835,-0.04909099,-0.037891716,-0.011908646,-0.016685914,-0.02709421,-0.0008647422,-0.025688022,0.036184203,0.004259365,0.004909099,-0.012825178,0.04484732,0.016547807,-0.027521087,0.03548111,-0.0021940283,0.0049342094,-0.013710323,0.0034683852,-0.019711727,0.08296503,0.013383887,0.012479909,-0.02711932,-0.013622436,-0.004369224,-0.01696213,0.033045392,0.03661108,0.02184612,-0.0050315126,-0.04386801,0.04080453,0.028776612,0.000459051,-0.008681949,0.0019131048,0.027395535,-0.018644532,-0.011123943,-0.0066668326,0.029379264,-0.037314177,0.005470946,0.010408294,0.014689632,-0.009937473,-0.004664272,0.0067170537,0.016874243,-0.033321608,0.011714039,-0.015292283,-0.038921244,-0.008763558,-0.002088878,0.010753564,-0.021004917,-0.050396737,0.043014254,0.0017483173,0.02506026,-0.031764757,-0.01092306,-0.061721563,0.0068677166,0.00490596,-0.012649405,-0.0082111275,-0.009799365,0.038946357,0.010646844,0.008110685,0.03392426,0.00456383,0.059210517,0.01923463,0.008368067,-0.0068363287,-0.027445756,0.0016871104,-0.0009008385,0.002909677,0.031413212,0.0014713173,0.051627148,-0.0007745014,0.016233927,-0.011268329,0.0031293938,0.0024890765,-0.01799166,-0.019636396,0.01134366,-0.0025706855,0.0014870113,-0.017062573,-0.011293439,-0.025738243,-0.028450176,0.020540373,0.011262051,-0.028575728,0.012643128,0.023641517,0.03507934,0.016359478,0.031011444,0.039925665,-0.0030163967,0.009805643,0.009830753,-0.051828034,0.013860986,-0.02005072,0.04017677,-0.015920045,-0.024382276,0.009221824,-0.008405734,-0.026240453,-0.030961223,-0.010841451,-0.009592203,0.0086191725,-0.0033804986,0.008763558,0.03917235,0.007734028,-0.035732213,-0.0057973824,-0.007903524,-0.029504815,-0.0032518073,0.028073518,-0.019435512,-0.06041582,0.022963535,-0.0261149,0.008255071,0.018594312,0.01134366,0.008951887,-0.013647547,0.00218932,0.018179988,0.019535955,-0.02400562,0.022134889,0.017577337,0.019297404,0.015355059,0.010715898,-0.042034946,0.013760543,-0.020063274,0.0003880354,-0.010257632,0.00018911331,-0.00208417,-0.017803332,-0.015819604,0.045449972,-0.006400034,0.036184203,-0.02925371,0.009177881,-0.015028623,0.036259536,0.0052669235,0.020289268,0.025474584,-0.021406686,0.050446957,0.032317188,-0.0130323395,-0.04329047,-0.0078846915,-0.030358572,-0.00833668,0.007225541,-0.0052198414,-0.004645439,-0.018318096,0.019347625,-0.0066417223,0.07086178,0.010533847,0.025637802,0.0031482265,0.020829145,0.0031937393,0.0154806115,0.01801677,-0.027470866,-0.015078844,-0.0019209518,0.026240453,-0.021080248,-0.009749144,0.004780408,-0.012103252,0.005040929,0.022900758,0.021482017,-0.01828043,-0.0077026403,-0.00057793345,0.009855864,0.016045598,-0.0070058242,-0.027269982,0.05383687,-0.02091703,0.027546197,0.027897745,0.017250901,0.005106844,0.021143025,-0.013245779,-0.047584362,0.017301122,-0.0002165779,-0.0062242607,0.000030333658,-0.0018346346,0.04369224,-0.03274407,-0.021456907,-0.00042256233,-0.008581507,0.009428985,0.00055399997,-0.038996577,-0.011776816,-0.010571512,0.005370504,-0.010345519,0.022172555,-0.020264158,0.0009589065,-0.040879864,0.0023933428,0.022323217,-0.020590594,-0.009046051,-0.040076327,-0.002564408,-0.0054991953,0.0016478753,0.01873242,0.027696861,0.023779625,0.009372487,-0.010144634,0.043566685,-0.0038984022,0.0009188867,0.0076084756,-0.0005716558,-0.004978153,0.019900056,-0.0055933595,-0.04331558,0.0006740595,0.037866607,0.013283445,0.011192997,-0.025575025,0.029630369,-0.059260737,0.05428886,-0.00087258924,-0.016585473,0.02398051,-0.0026099207,0.022348328,0.0014909349,-0.0102513535,0.018970968,0.0012986826,-0.001015405,-0.0081295185,0.01487796,-0.028851943,-0.019021189,-0.008016521,0.02115558,0.025261143,-0.009855864,0.004315864,-0.020615704,0.021682901,-0.008788669,0.025700577,-0.013095116,-0.009454096,-0.022586878,0.013132782,-0.007803082,0.005624748,-0.035455998,0.004601496,-0.04324025,-0.020339489,-0.0008639575,0.009755422,0.022084668,0.014677077,-0.010000249,-0.03020791,-0.019799614,0.021331353,0.0047961017,0.029354153,-0.019799614,-0.026767774,-0.0012720028,0.031639207,-0.01463941,0.017564781,0.01823021,-0.0058601587,-0.018217655,-0.024269281,0.0046046344,-0.0019978527,0.011638708,-0.012084419,0.010628011,0.00072153396,0.012473632,0.0062587876,0.003223558,-0.0011276176,-0.02405584,0.00036194405,-0.03806749,-0.03294495,-0.047760136,0.02925371,-0.029856361,0.033070505,0.0045512747,-0.009912362,-0.003154504,-0.02762153,-0.008663116,-0.03969967,-0.0013857847,-0.008901666,-0.018895637,-0.0301828,-0.019611286,0.012467354,0.00036096317,-0.02714443,-0.01263685,0.009121383,0.00860034,0.020352045,-0.04030232,-0.022976091,-0.0060327933,-0.01163243,-0.024733825,-0.016711025,-0.02057804,0.012473632,0.038996577,0.021092804,-0.0028861358,-0.02086681,-0.016535252,-0.00065640366,-0.001247677,0.023327637,-0.000087494336,-0.03025813,0.007225541,-0.016409699,-0.014149756,0.0127875125,0.0084559545,-0.0039140964,0.010546402,-0.044520885,0.01880775,-0.011670096,0.02398051,0.01379821,-0.005518028,-0.020025609,0.014325529,0.0038952634,-0.022637099,-0.004328419,0.0011872549,0.038720362,-0.013245779,0.018920748,0.02968059,-0.0034401359,-0.0071502095,-0.0067735524,0.030358572,0.014488747,0.01305745,0.028801722,-0.06041582,-0.0004978938,0.027897745,0.010245076,-0.022247886,0.03239252,-0.020389711,0.028600838,0.031664316,-0.002912816,-0.014576634,-0.027897745,0.013496883,-0.030032136,-0.007947467,-0.009077439,0.013233224,0.00989353,0.023967953,-0.030685008,0.0040647592,-0.02968059,0.048362788,-0.0065726684,0.008481065,-0.018531535,0.01487796,0.00030387606,0.036811966,0.026140012,-0.026240453,-0.027495977,-0.0011652833,0.01163243,-0.031588987,0.0012209972,-0.01743923,0.01928485,0.0016980963,0.01622137,-0.023930289,0.028374843,-0.0037257676,-0.018682199,0.004645439,-0.01885797,-0.01332111,0.0068802717,-0.0025251727,-0.03962434,0.005097428,0.0074829236,0.009981416,0.01693702,0.0026648499,0.033522494,0.009855864,0.00036586757,0.027747082,0.03796705,0.004595218,0.009121383,-0.00179383,-0.045600634,-0.034049813,0.0023760793,0.023289971,-0.008901666,0.0070183794,0.014677077,-0.027043989,0.018707309,0.009899807,-0.013660102,0.019761948,0.02144435,0.0022222777,0.006039071,-0.030333461,0.01703746,-0.0080479095,-0.003954901,0.0071502095,-0.003436997,-0.0040051215,-0.00991864,0.025863796,-0.0064094504,0.03244274,-0.02276265,0.011029779,0.010176023,0.029555036,0.020778922,0.020038163,0.04424467,0.0040553426,0.009516872,0.000049117476,-0.014702187,-0.030986333,0.024997484,0.007156487,-0.00075488386,0.009516872,0.03502912,0.020490153,-0.0045481357,-0.006993269,-0.012442243,-0.0040553426,-0.0017137903,-0.016284147,-0.034250695,0.013785654,0.012410855,-0.012166028,0.015995376,-0.027470866,-0.00008867139,-0.020942142,-0.0042405324,-0.0065224473,-0.030835671,-0.010226243,0.016635694,-0.036736634,-0.017112793,0.037791274,-0.004849462,-0.012982119,0.032015864,0.017150458,0.01748945,-0.002247388,0.028651059,-0.05313378,-0.030534346,-0.042537156,0.0035688272,0.022109779,0.0010114816,0.061872225,0.008964442,-0.021532238,0.028349733,0.022950979,-0.0032518073,-0.0018252181,-0.026416225,0.011167887,0.009692646,0.014225088,0.00008352178,-0.0074201473,-0.019774504,-0.004780408,0.016598027,0.038770583,-0.00546153,0.026290674,-0.0061269575,0.006167762,-0.015066288,-0.019096522,0.0055964985]},{"id":"interface-GatewayWebhooksUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayWebhooksUpdateDispatchData\nDescription: WEBHOOKS_UPDATE — webhooks in a channel were updated.\nProperties: channel_id: string, guild_id: string","meta":{"url":"/docs/typedefs/GatewayWebhooksUpdateDispatchData"},"embedding":[-0.010213313,0.008738779,-0.00031357553,0.006039082,0.019678516,0.0137586985,-0.013953857,0.012132375,0.014008068,-0.007551563,0.020372415,0.011590267,-0.049917296,-0.016198184,0.03215784,0.0030547779,-0.034694906,0.02769087,-0.047748864,0.03432627,-0.032699946,-0.012988905,0.04159052,0.040831566,-0.018930407,0.033784162,-0.017000504,0.02476349,-0.008386409,0.014008068,0.042978313,-0.020491678,0.06492284,0.0073726675,-0.016219867,0.045493696,-0.039552193,0.011698688,-0.008321356,0.008462304,0.0035535172,-0.014051436,-0.010885526,0.022942007,-0.043065052,0.0150489155,-0.038121026,0.030032776,-0.0050172084,0.034044374,-0.025630862,-0.0027159606,0.0043721003,0.040137667,0.027560765,0.0060987137,0.012370902,0.002065431,-0.01939662,-0.005190683,-0.019732727,-0.019938728,-0.003889624,-0.055728693,0.032678265,-0.018073877,-0.06817549,0.016198184,0.03989914,-0.005003656,0.039617244,0.020480836,-0.01768356,0.014929651,-0.021575894,0.019624306,-0.048052445,-0.026086232,0.004559127,-0.0024611698,-0.027278868,0.021424104,-0.12542208,-0.07073424,0.008890569,-0.00056243694,-0.008733358,-0.04501664,0.012164901,0.014029752,-0.013346696,0.04978719,-0.052172463,0.009806732,-0.051565304,-0.07320625,0.026758445,-0.016469238,-0.031637415,0.027148763,0.0905537,-0.051174983,-0.071818456,-0.051565304,0.002637355,-0.04948361,0.012045638,-0.010224155,-0.028558243,-0.027300553,-0.048356023,-0.03176752,-0.04506001,0.011601109,0.010809631,0.00057836133,0.047445282,-0.013639434,0.024112958,0.0024503276,-0.046621278,-0.010668683,0.00021735138,-0.03634291,-0.00994768,0.016892081,-0.023982853,0.012490165,-0.05828744,0.0030276726,0.037860814,0.014029752,0.013856278,0.030509831,-0.0054861316,-0.00839183,-0.0009513993,0.012652799,-0.023657588,-0.017412506,0.017401664,-0.026086232,0.030683307,0.007974407,-0.040072616,0.0119589,-0.007958144,0.028016135,0.020188099,0.020123044,-0.098707005,0.021966211,0.0009988338,-0.00012697183,0.014387543,0.030835098,-0.013335854,-0.0113625815,-0.032634895,-0.020036308,-0.0060065556,-0.023484115,-0.025869388,0.02361422,-0.046447802,-0.04978719,0.009421835,-0.0029870146,-0.06366515,-0.02311548,0.02712708,-0.038402922,-0.027105395,0.031008571,0.013639434,0.0046892334,-0.024633383,-0.039573874,-0.05733333,-0.0014636914,0.050220877,0.010825895,0.006120398,-0.041742306,-0.03714523,0.009253781,-0.013845435,0.0062830304,-0.0039736507,-0.034434695,-0.013606908,0.013303327,0.018496722,0.020361573,0.012251639,-0.029707512,-0.0025058938,0.01336838,0.03974735,-0.049830556,0.023635903,-0.064706,0.02165179,-0.008597831,-0.021868633,0.027560765,0.014159858,-0.010028996,-0.027343921,-0.01025126,0.041178517,0.020827785,0.018572615,0.019060513,-0.07815027,0.006722138,-0.02000378,0.04523348,-0.01426828,-0.028124558,-0.0018526537,0.017661875,0.0062125563,-0.010782526,-0.00794188,0.012858799,-0.00035270894,-0.00839183,-0.012067322,0.012056479,0.015157336,-0.014365859,0.014517649,-0.045840643,-0.016523449,-0.0017510084,0.022378214,0.021716842,0.011677004,0.00416881,-0.014365859,-0.03261321,-0.050177507,0.008798411,-0.04143873,0.012880484,0.026151285,-0.010028996,-0.014051436,0.03692839,0.048399393,0.042544626,-0.00006361297,-0.0239178,-0.0041986257,-0.011286686,0.016447553,0.0017957324,0.023787694,0.036624808,0.067698434,-0.025414018,-0.0382945,0.044344425,-0.027842661,-0.022573372,0.05672617,0.024828542,-0.023592535,-0.002401538,0.021912001,0.013162379,0.047315177,-0.016252395,-0.029555723,0.020881996,-0.0041769412,0.026671708,-0.010489788,-0.040874936,-0.01361775,0.004339574,-0.012121532,0.080275334,-0.01688124,0.051521935,-0.007714195,0.042110942,0.052649517,0.026606655,-0.058113966,0.02853656,-0.02437317,-0.0206001,0.0135093285,0.0817065,0.007979828,-0.007481089,0.046838123,-0.00552679,0.01773777,0.00030849327,-0.053343415,-0.030531516,0.0063480833,-0.030206252,0.042284414,-0.032071102,-0.009183308,0.0066354005,0.0034749117,0.020231467,-0.021326525,-0.0030764623,-0.032114472,-0.013606908,0.042067572,0.054774582,0.012837115,0.018496722,-0.010641578,0.044496216,-0.04135199,-0.05330005,-0.025240544,-0.057116486,0.007996092,-0.021293998,0.02090368,0.04909329,0.022378214,-0.032830052,0.04532022,-0.004548285,0.013834594,0.047401913,-0.027495712,0.009210413,0.017206505,-0.01854009,-0.005507816,-0.012110691,0.0043206,-0.0316591,0.014355017,-0.006114977,-0.011752899,0.029642459,-0.0341528,0.037904184,0.024893595,0.005109367,-0.023158848,-0.06474937,-0.04952698,-0.048269287,0.04848613,0.022790216,0.0021331946,0.012837115,-0.015254916,0.036516387,-0.021673473,0.035085224,0.015515128,-0.003989914,0.022833584,0.006857665,-0.014203227,-0.016946293,0.013541855,-0.024091275,-0.03452143,0.004691944,-0.0129672205,0.0020681417,-0.009085728,0.02532728,-0.02864498,-0.032938477,-0.0039573875,0.033220373,0.011243317,-0.0022334845,0.010343418,0.025435703,-0.033090267,0.04978719,-0.045146745,-0.0126961665,-0.013888804,-0.027994452,-0.026064547,-0.014615228,-0.02441654,-0.045146745,0.04688149,0.020589259,0.034825012,-0.0033448057,0.014159858,0.026411496,-0.015688602,0.008738779,-0.016241552,0.056943014,-0.014647755,0.042241048,0.06670096,0.006938981,-0.001874338,0.036603127,-0.0036944654,0.013531013,-0.0006413814,-0.043845687,-0.020838628,-0.029924355,-0.01090721,0.04462632,0.0042718104,0.024481593,0.010056102,0.050871406,0.017965455,-0.021521684,0.004778681,0.0092375185,0.009909732,-0.042175993,-0.07654563,0.010495209,0.03890166,0.002954488,0.07168835,-0.03441301,0.016490921,-0.014907967,0.015504286,0.00412002,-0.06930307,0.012804588,-0.0031577784,0.030553201,-0.014842914,0.0010286497,0.009725415,-0.03632123,-0.014094805,-0.006521558,-0.015515128,-0.018377457,-0.016599344,0.030271305,-0.033784162,-0.0010015443,-0.037709024,0.03974735,-0.02216137,0.004331442,-0.048269287,-0.0013722106,-0.019732727,0.04432274,0.0054888423,0.010381366,-0.009074886,0.028016135,-0.0001922789,0.0183883,0.009649521,-0.014539334,0.012089006,0.044929903,-0.019721884,-0.009871785,0.004149836,0.019971255,0.051521935,0.03517196,-0.0396823,-0.010836736,-0.04146041,0.00036219583,0.0558588,0.05733333,-0.00236088,0.0010706631,-0.00089515565,-0.0067492435,-0.017520927,0.0131949065,0.014712808,-0.008521936,-0.015482602,-0.010630736,-0.037058495,-0.016198184,0.016349973,0.0027999873,-0.03833787,-0.035150275,0.031637415,-0.0012963155,0.040202722,0.014246595,-0.041829046,-0.003401727,-0.03085678,0.0028704612,0.00006441766,-0.0010178075,-0.0005763284,-0.012685325,-0.02472012,-0.005450895,-0.013162379,-0.008402673,-0.010863842,0.05195562,-0.047575388,0.021640947,0.029815935,0.021228945,-0.0010930251,0.0036971758,0.016306605,-0.06826223,-0.003436964,0.01497302,-0.00022734649,-0.041742306,0.0038299921,0.039877456,-0.011915531,-0.01472365,-0.010365102,-0.03532375,0.051868882,0.010820474,-0.02673676,0.034803327,-0.030011093,0.043802317,0.007893091,0.015959656,0.0046268906,0.038771555,0.010234997,0.020578416,0.016794503,-0.037470497,-0.025110438,0.021695158,0.012002269,0.0153633375,0.01291301,-0.022725163,0.0031225414,-0.002607539,0.008429778,-0.028710034,0.004513048,-0.010874684,-0.020068834,0.031312153,-0.009833837,-0.0026021178,-0.0132382745,-0.020936206,-0.00768709,0.00401973,0.019082198,-0.011492687,0.04996066,0.031008571,-0.018919565,0.02547907,0.020361573,-0.005702975,-0.00061698654,-0.09506404,0.023722641,0.04787897,-0.04657791,0.028818455,0.017943772,-0.02261674,-0.0048166285,0.023505798,-0.021543367,0.005461737,0.028948562,0.015515128,-0.0004685845,-0.008446041,-0.00056480867,-0.0069064545,-0.020177256,0.019320725,-0.02376601,0.032027733,-0.021825263,-0.032743316,0.012305849,0.05698638,-0.013726172,0.01808472,-0.029230457,0.03447806,0.0022876954,0.00063731556,-0.0030737517,0.010440998,-0.0064998735,-0.008879728,-0.033068582,0.012641956,0.009996469,-0.00919415,0.021662632,0.025283912,0.010039838,0.022898637,-0.014008068,0.032851737,-0.0055945534,-0.026194653,0.004613338,-0.03994251,0.009969364,-0.05481795,-0.046491172,-0.029403932,-0.04944024,-0.012197427,0.031290468,-0.0427181,0.010039838,0.0012339731,0.0014040595,0.014203227,0.0038408344,0.023484115,0.04321684,-0.018670196,0.026064547,-0.0003030722,-0.0061420826,0.017423349,-0.0041986257,-0.006819717,0.042327784,0.024286434,0.03352395,-0.031940997,-0.033328794,0.052215833,-0.0035752016,-0.026693393,0.0012373612,-0.018583458,0.012999747,0.022681795,0.0033990166,0.01090179,-0.008717095,0.018681038,-0.015493443,0.03371911,0.010489788,0.009167044,0.06145335,0.017390821,0.028861824,0.00703656,-0.000011636261,-0.028471507,-0.002045102,0.047705494,0.03181089,0.016165657,-0.02498033,-0.027300553,0.012132375,-0.01723903,0.061626825,0.0027864345,0.036841653,0.022063792,0.0010415248,0.02406959,-0.00336649,-0.012067322,-0.0014758888,0.0049711294,0.032938477,-0.007692511,-0.00042724877,0.0055484744,0.013975541,0.003390885,-0.0056650275,-0.009649521,-0.0056704488,0.012880484,0.00748651,0.013704487,0.006451084,0.024741804,0.0063643465,0.026498234,-0.035041854,-0.02119642,0.016555974,0.031897627,-0.029252142,0.020220624,-0.014355017,0.008126197,0.0456238,0.0066082953,-0.024134643,-0.032483105,-0.011579424,-0.010018154,-0.011086106,0.010137417,-0.03185426,-0.04139536,-0.03768734,-0.002084405,-0.01060363,-0.01155774,-0.025414018,0.02838477,0.0059523447,0.016306605,-0.0119589,0.018323246,0.006526979,0.015601865,0.004857287,-0.0060553453,0.04044125,0.0075027733,0.030227937,0.015580181,-0.03200605,0.03085678,-0.010831316,0.0044723903,-0.054080684,0.015948813,-0.024546646,-0.0052232095,0.009448941,-0.011666162,0.030661622,0.0066299797,0.01779198,-0.015515128,0.015948813,0.04657791,-0.043867372,-0.02532728,-0.05169541,-0.018279878,0.017195662,0.016447553,-0.028666666,-0.01266364,-0.018355774,0.009248361,0.022725163,-0.03510691,0.0012102559,-0.04054967,-0.008576147,-0.022063792,-0.01773777,-0.008055723,-0.016447553,-0.024329802,0.022085475,0.0039302823,-0.0052340515,-0.04970045,-0.032483105,-0.0010821829,-0.023223901,0.0075244578,0.015710287,-0.006266767,-0.0042338627,0.0042338627,0.01667524,-0.058157336,0.013737014,0.050177507,0.00069999683,0.013780382,-0.042132623,-0.01854009,0.07077761,-0.010115733,-0.043325264,0.039812405,-0.006944402,-0.018128088,-0.008028618,0.040072616,0.0029707511,0.02396117,0.016133131,0.0025208017,0.0002353087,0.0076545635,0.019288199,-0.008527357,0.018008824,-0.0010523669,-0.007676248,0.009595309,0.007020297,0.05169541,-0.013975541,0.030618254,-0.030791728,0.0053641577,-0.015287442,-0.010880105,-0.011167423,-0.007643721,0.052996468,-0.00044249557,-0.018073877,0.0014040595,0.002472012,-0.025804335,0.0004977228,-0.0053777103,0.019266514,-0.023137165,0.006819717,0.015916288,0.006114977,-0.01848588,-0.004231152,0.020643469,-0.016523449,-0.008673727,-0.010592788,-0.0008382343,0.007968986,-0.004938603,-0.0055457638,0.03239637,0.028926877,0.013531013,-0.032981843,0.017965455,-0.025912758,-0.015103126,-0.01798714,0.014398386,0.029859303,0.0006200359,0.02476349,0.026563287,0.029577406,0.012457639,0.044040844,-0.05091477,0.0024083143,0.032049417,0.037448812,0.039357033,0.020383257,0.010554841,0.02115305,0.009757942,-0.012370902,-0.00899357,-0.022399899,0.021413261,-0.03521533,-0.015189863,-0.021174734,0.0026929209,0.02452496,0.023223901,-0.005361447,0.0029084089,-0.027300553,-0.023505798,-0.00833762,0.007622037,-0.012099848,0.0031062781,-0.05330005,-0.008787569,-0.005789712,-0.004033283,0.024633383,0.014235754,0.021348208,0.003984493,0.05065456,0.0028569086,0.0044534164,-0.033914268,-0.016024709,0.009736258,0.017087242,0.04054967,-0.0075027733,0.0061908723,0.0034613588,-0.015558496,-0.0046512857,0.0093947295,0.07272919,0.018984618,-0.008023197,0.010440998,0.01226248,-0.008147881,-0.0022809189,-0.014300806,0.023354009,-0.031182045,-0.0069064545,0.018854512,-0.0015490733,-0.033437215,0.008885148,0.0034830433,-0.01346596,-0.05069793,0.0039004663,0.056162376,-0.002392051,-0.024936963,0.006944402,0.018832829,-0.00954652,0.00029409354,-0.06431568,-0.043867372,0.002392051,0.009107413,0.025414018,-0.030791728,0.040311143,-0.007155824,0.010489788,0.0038516766,0.026519919,0.021489156,0.025695914,-0.02250832,-0.01432249,-0.0099151535,-0.0091236755,-0.03712355,-0.02567423,-0.032830052,0.009020675,-0.01039763,-0.0017943771,-0.0030168304,0.034803327,0.03547554,-0.023809379,0.04874634,0.0002198925,-0.014333333,-0.030661622,0.011883005,-0.034131113,0.039703984,0.026194653,0.0014813098,-0.025956126,-0.00034999842,-0.004678391,-0.061323244,0.045103375,-0.0017794692,0.031463943,-0.014886282,-0.03890166,0.009015255,0.01331417,-0.011460161,-0.017466716,0.03994251,-0.00018330023,0.0079256175,-0.002794566,0.025457386,0.008624936,-0.01974357,-0.001944812,0.012240796,0.009026096,0.04848613,-0.0034071482,-0.010267523,-0.0063806097,-0.011210791,0.025804335,-0.03059657,-0.020274835,0.013379223,-0.027864346,0.02426475,-0.016555974,0.0150922835,0.058807865,-0.017846191,-0.0053126574,-0.030509831,-0.0010415248,-0.03196268,0.009920575,0.015135652,-0.024915278,-0.029013615,0.021185577,-0.008272567,-0.028102873,0.006044503,0.022855269,-0.0065540844,0.052129094,0.010413893,0.03181089,-0.024915278,-0.04360716,-0.008700832,0.010365102,-0.005637922,0.0020288387,-0.014734493,-0.010413893,-0.008814674,0.0081966715,-0.004843734,0.0069877706,0.026693393,-0.004778681,-0.012349218,0.039226927,0.009091149,-0.0006220688,0.014029752,-0.023982853,-0.021575894,-0.016013866,-0.010153681,0.0044886535,0.00014306566,0.016133131,0.0019624305,0.0049873926,0.03090015,0.04497327,0.014138174,0.020231467,-0.00859241,0.01442007,-0.027408974,0.03989914,0.0055457638,0.04321684,0.009882627,-0.009091149,0.0022145107,-0.005572869,-0.015439233,-0.034543116,0.0079256175,0.018854512,-0.009568204,0.0019664965,0.029165404,0.025782652,0.01829072,-0.046708018,0.016848713,0.0050253402,-0.03528038,-0.005833081,0.006868507,0.0040414142,-0.02990267,0.0066137165,-0.018171456,-0.020231467,-0.007622037,0.01623071,0.012034795,-0.016902924,0.027213816,0.013726172,0.004784102,-0.047575388,0.029056983,0.0032092787,0.014105648,0.023245586,0.0036998864,-0.017867876,0.01356354,-0.017835349,0.03246142,0.00336649,0.0031116994,-0.005708396,0.004008888,-0.02376601,0.016360816,0.017260715,0.025630862,-0.012002269,0.018475037,-0.008830938,-0.017228188,0.00016458056,0.020762732,0.0064890315,-0.015233232,0.042327784,0.01627408,0.010755421,-0.048009075,0.01678366,-0.03272163,0.012381745,0.0025045385,-0.028363084,0.019635148,0.016447553,0.0031523574,-0.008765885,0.061626825,-0.006255925,0.015558496,0.012002269,0.01336838,0.018973777,-0.015851235,0.032938477,-0.028232979,-0.055511847,-0.0031360942,0.016902924,-0.011915531,0.003998046,0.032851737,-0.016263237,-0.008017776,0.008456883,0.02357085,-0.034391325,-0.0078117745,0.014864598,-0.015439233,0.0014257438,-0.05256278,-0.012295007,0.023787694,-0.006440242,0.010153681,0.03974735,0.034846697,-0.004415469,-0.017217347,0.007079929,-0.026650025,0.01943999,-0.003754097,-0.0043287314,0.0017794692,-0.025587492,0.038814925,-0.016870398,-0.024134643,-0.018334089,-0.035800803,0.01407312,0.017651033,-0.048876446,-0.034651536,-0.035605647,0.009101992,0.0006512071,0.040332828,-0.02311548,0.0113408975,-0.0052828416,-0.014094805,0.01758598,-0.03634291,-0.0026847892,0.013661119,0.008223777,-0.030943519,-0.01713061,0.005551185,0.03864145,0.026584972,0.018344931,0.0009900245,0.013877962,0.021228945,-0.005480711,-0.010511472,0.029989408,-0.00046926213,0.0015585602,-0.0056704488,-0.043910738,-0.009725415,0.035453856,-0.022172213,0.00031560843,-0.011611951,0.04319516,-0.054948054,0.07758648,0.018832829,0.0033475163,0.0036104387,-0.025587492,0.051261723,-0.002583144,-0.009324255,0.010928895,0.0073021934,0.012240796,-0.01155774,-0.010760842,-0.035258695,-0.03200605,0.011536056,0.014604387,-0.0010957356,0.008820095,0.023332324,-0.01869188,0.020632626,-0.0036944654,0.0163825,-0.0014989283,-0.03272163,-0.03265658,0.006873928,-0.01572113,-0.020513363,-0.021716842,0.007865986,-0.064055465,-0.028428137,0.03818608,-0.00406852,0.0010842158,-0.009562783,0.012934694,-0.029664144,-0.01130837,0.030444779,-0.0033258318,0.027799293,0.0119589,-0.015840393,0.003979072,0.02712708,-0.020079676,0.025934441,0.0058818706,-0.03536712,-0.005402105,0.00063833204,-0.014235754,0.01376954,-0.010641578,-0.009557362,0.004843734,0.013021432,0.03562733,-0.01060363,-0.01059821,0.0015355207,-0.025912758,0.012316692,-0.009107413,-0.040462933,-0.037166916,0.03612607,-0.017087242,0.014647755,-0.0058818706,0.036516387,0.008511093,-0.00668419,-0.030141199,-0.04597075,0.0033800427,0.0052936836,0.01512481,-0.016111447,-0.027842661,0.010625315,0.015298285,0.009980206,-0.013227433,0.0073780883,-0.01260943,0.0026874999,-0.022074634,-0.022291476,-0.0029870146,-0.032418054,-0.025544124,-0.020437468,-0.037904184,0.009817574,0.036451336,0.01632829,0.008120776,0.00038557424,-0.006863086,0.015005547,-0.0048898133,0.021163892,0.0013200328,-0.018561775,-0.015265758,0.004496785,-0.029122036,-0.006445663,0.01356354,0.0031930155,0.04241452,-0.0239178,0.026346443,-0.006022819,0.04321684,0.024655066,0.0029084089,-0.012002269,0.01552597,0.0071016136,0.0038598082,-0.025544124,0.016740292,0.02180358,0.01251185,0.012240796,0.0068793492,-0.002009865,0.026389813,-0.021326525,0.018681038,0.015666919,0.011075264,-0.020730205,-0.041330304,-0.0068956125,-0.0011025119,0.006196293,-0.0073672463,0.030813413,-0.013119011,0.0023839194,-0.0034505168,-0.021565052,-0.021283155,-0.037015125,0.0031171204,-0.0272355,0.01864851,-0.016794503,0.0007996091,-0.012934694,0.03120373,-0.030683307,0.019602621,-0.014214069,0.07051739,0.004185073,0.00035237012,-0.009129097,0.0054400526,0.002171142,0.031875946,0.016794503,-0.034022693,-0.059371658,0.042002518,0.030119514,0.0046865228,-0.010722894,-0.022020422,0.021001259,0.019114723,0.034131113,-0.008229198,0.010440998,-0.00036998864,-0.014289964,0.0034098586,-0.027300553,0.020860313,0.008912254,0.0026834342,-0.017358296,-0.010950579,-0.014409227,-0.0064781895,0.0064077154,0.016447553,0.022378214,0.0009717284,-0.012544377,0.000015130316,0.026541602,-0.009275466,0.003160489,-0.021272313,-0.023896117,-0.010262103,-0.0031171204,0.030878466,-0.0079256175,0.004914208,-0.014246595,-0.018973777,0.019906202,0.04180736,-0.0071883504,0.03872819,0.0062884516,-0.010180786,-0.008131619,-0.008771306,0.024741804,-0.03155068,0.0071829297,0.009850101,0.015179021,-0.0015517839,-0.0110915275,0.029100351,-0.012555219,0.001763206,0.032981843,0.0020830496,0.003949256,0.012782904,0.017596822,0.017054714,0.03410943,-0.004084783,-0.0025546835,0.008456883,-0.00088295824,-0.0018431669,0.013303327,0.01572113,-0.0051310514,0.021922844,0.037362076,-0.0013030919,-0.019374937,0.005079551,-0.013520171,-0.016165657,0.02979425,0.005109367,-0.01542839,0.0041660992,0.02160842,-0.046361066,-0.00864662,-0.0015355207,-0.0032797528,-0.03139889,0.009118254,0.016555974,0.0015517839,-0.006868507,0.017390821,-0.034543116,0.023744326,0.020155571,0.0026305786,-0.011199949,0.019732727,0.009091149,0.014430912,0.016566817,0.04623096,-0.036798283,-0.027170448,-0.035714068,-0.016501764,0.030162884,-0.0007135495,0.05347352,0.0119046895,-0.018952092,0.025175491,0.024785172,0.016024709,0.0037568077,-0.03196268,0.0076383003,0.02376601,-0.021120524,-0.00814246,-0.021738527,0.013162379,-0.021239787,-0.016772818,0.03462985,-0.018073877,0.029729197,-0.008836359,0.008413514,-0.036733232,-0.007822617,0.00044181795]},{"id":"interface-GuildFeature","type":"interface","source":"main","text":"Interface: GuildFeature","meta":{"url":"/docs/typedefs/GuildFeature"},"embedding":[-0.011866904,0.010157079,0.012754557,0.030500343,0.004547403,-0.015992308,-0.049533952,0.03623371,0.04802058,-0.016894512,0.028012004,-0.044120725,0.010950147,0.0318682,0.055034492,-0.0559658,-0.03969701,0.030791376,0.0037688878,0.0464781,0.03521509,0.05293905,0.011299388,0.034487505,-0.03728143,-0.0024701494,-0.022962566,0.027371729,0.0046638167,-0.035651643,0.04193797,-0.037397843,0.059778344,-0.012383488,0.0020263228,0.0039726114,0.015468447,0.024286771,-0.011808696,-0.017694855,-0.0023228135,0.01567217,-0.016079618,-0.015395688,-0.02971455,0.041006662,0.02642587,0.024999805,0.020721607,0.021230916,-0.0115322145,-0.024665115,-0.035331503,0.027066143,0.008701911,-0.00865098,-0.031577166,0.009698702,-0.002062702,0.042752866,-0.052706223,-0.03227565,0.021798432,0.0050567123,-0.01541024,-0.005256798,-0.058148555,0.014944586,0.0066319327,0.004889368,0.011801421,-0.041297697,-0.017243752,0.0051040053,0.014930034,0.002446503,-0.0036961294,0.028608624,0.0051040053,-0.01800044,-0.014704483,0.052560706,-0.081489466,-0.06274689,0.019935817,-0.023486428,-0.03003469,0.02582925,-0.028157521,-0.007566879,-0.005496901,-0.017345615,-0.060476825,-0.024752425,-0.006719243,-0.018233268,0.010826457,-0.003245027,-0.036350124,0.038561977,0.123049095,-0.035185985,-0.05439422,-0.047700442,0.07549417,-0.014173347,-0.021565605,0.02127457,-0.017723959,0.040162664,-0.09371289,0.018116854,-0.003998077,0.027648212,-0.010491769,-0.01110294,0.040599216,-0.021129055,0.057479177,-0.00022896176,-0.040511906,0.0025483647,-0.035826262,-0.038794808,0.00036561122,0.0032777681,-0.014617173,-0.023093533,-0.057712004,-0.01885899,0.00555147,-0.025538217,-0.000530682,0.0481952,-0.033381578,-0.009153013,-0.025625527,0.0021827535,-0.050145123,-0.03678667,-0.039929837,-0.003101329,0.06996453,0.030965997,-0.008694635,0.005395039,-0.033527095,0.021420088,0.0039726114,0.049359333,-0.055471044,0.03399275,-0.003616095,-0.03547702,-0.014158795,-0.012805487,-0.017811269,0.011561318,-0.028055659,-0.008389049,0.023995737,-0.0297,-0.022453258,0.010688216,-0.012892798,-0.00938584,-0.003998077,0.030151103,-0.081256635,0.0056678834,-0.015308378,-0.009807839,-0.015337481,0.012303454,0.02092533,-0.0025956577,-0.05096002,-0.029627241,-0.008272636,-0.04976678,0.042316314,0.007515948,-0.008709187,-0.04374238,-0.014609897,0.028259382,-0.030674962,-0.02222043,0.009938804,-0.016559824,-0.036466535,0.031897306,-0.003052217,0.028259382,0.051512983,-0.00814167,0.059370898,-0.0058752447,0.019921264,-0.014136967,-0.024243116,-0.006053503,0.058264967,-0.025771044,0.0057224524,-0.04150142,0.036408328,-0.0012505358,-0.022074914,0.059021655,0.0036997672,0.012878246,-0.029248897,-0.004572869,-0.030529447,0.012943729,-0.01695272,0.010186183,0.028026555,-0.0055660214,0.011182974,0.006435485,0.03504047,-0.00544597,0.044469964,0.03943508,0.0036415604,-0.022511465,-0.005773383,0.0043436796,-0.016021412,0.0054277806,-0.0025301753,-0.062397648,-0.03812543,0.039202254,-0.012630867,0.029278,0.018102303,-0.004398248,-0.060360413,-0.023428222,0.010935595,-0.019266438,-0.0072212764,-0.044091623,0.013263865,0.05157119,0.0016434315,0.0055332803,0.051687606,0.038183637,-0.008047084,-0.0068247425,0.01455169,0.0072612935,-0.0080034295,0.028113866,0.038009014,-0.03332337,0.0075814305,-0.013249314,-0.023952082,0.004925747,0.0053004534,-0.033963647,-0.01696727,0.0016661686,-0.044120725,0.055383734,0.006435485,0.0030867774,0.03658295,-0.021216365,-0.0011141138,-0.020634297,0.035447918,0.055587456,0.018655267,-0.043160312,-0.04080294,-0.015803136,0.011896007,0.02686242,-0.02297712,0.008076188,0.008199877,0.00086446136,0.04682734,0.031431653,-0.040832043,0.009873322,0.03864929,0.008359946,0.0055587455,0.01372952,0.009102082,0.012499902,0.04938844,0.03090779,0.04537217,0.013809554,-0.022569671,-0.020532435,-0.007908843,0.0071557937,0.03451661,-0.010302597,-0.007828809,-0.021769328,0.03090779,-0.052793533,-0.03469123,0.002628399,-0.029554483,-0.04225811,0.03899853,0.035942674,0.013351176,0.034254678,0.029059725,0.024912493,0.020270504,-0.037106812,0.050348848,-0.056285936,0.020998089,-0.011976041,-0.008236256,0.037834395,0.03771798,-0.030674962,-0.023428222,0.004365507,0.011983317,0.007857913,-0.0059807445,0.06204841,0.03547702,0.0004533761,-0.003528785,-0.027080696,-0.03195551,0.0008594592,0.025756491,0.003616095,0.012689074,0.037834395,-0.015541205,0.04598334,0.0035069573,0.0236756,0.033672612,0.0007412267,-0.044993825,-0.09097717,0.065191574,-0.019659333,-0.006766536,0.044819206,-0.014224277,0.017520236,-0.0054932632,0.029801862,-0.021987604,0.02823028,-0.0005465979,0.028113866,-0.014639,-0.0275609,-0.003245027,0.055500146,-0.0074868444,-0.033963647,-0.0026611404,0.027488142,-0.0058461414,0.021900294,0.030354826,-0.036961295,0.025931112,-0.014384346,0.041297697,-0.028012004,0.023137188,-0.047292992,0.003106786,0.020677952,-0.0679855,-0.009473151,0.043684173,-0.026003871,-0.009305806,-0.04915561,0.017913131,-0.034574818,0.02514532,0.013533072,0.0309951,-0.015657619,0.011939662,-0.014689932,0.0022336845,-0.0057224524,-0.03410916,0.0024628735,0.0019062714,0.027590005,0.03384723,0.0038853013,-0.035156883,-0.024344977,0.038503774,-0.005067626,0.0073413276,-0.03134434,-0.060651444,-0.0636782,0.031897306,0.029685449,0.018102303,0.045139343,0.031489857,-0.005129471,0.044295345,-0.00066028297,0.013685864,0.010077045,0.0036233708,-0.064958744,-0.077589616,0.022336844,0.014602621,0.012121558,0.014217001,-0.024126703,0.056082215,-0.04027908,-0.0007444099,0.0043145763,-0.032217443,0.0019626592,0.014246105,0.0014715397,0.01485,-0.0066901394,0.04441176,-0.026789661,0.021900294,-0.018989956,-0.04810789,0.009153013,-0.016545272,0.05096002,0.006159003,-0.03795081,0.015570309,0.061233513,-0.020183194,0.015031896,0.020066781,0.031140618,-0.037135914,0.05363753,-0.039988045,-0.0020408744,-0.006355451,0.008214429,0.009247599,0.04330583,-0.073398724,-0.0044782828,0.03116972,0.021027192,-0.007323138,0.0180732,0.018815335,0.009655046,0.013314797,-0.008432705,0.01390414,0.029190691,-0.048369817,-0.01704003,0.059458207,0.08253719,0.024781529,-0.0318391,-0.0464781,-0.019659333,0.027590005,-0.01239804,0.033963647,-0.01912092,0.03742695,-0.023399118,-0.0309951,-0.032246545,-0.001623423,-0.012798212,0.028434003,-0.04537217,-0.0098151155,0.018218717,0.020474229,0.016487066,-0.0010204372,-0.039464183,-0.02910338,-0.037485152,-0.046332583,-0.03166448,-0.010957423,-0.017811269,-0.024956148,-0.008367222,-0.05459794,0.052502498,-0.0032704924,0.012354385,-0.011830525,0.021740226,0.0070066387,-0.043451346,0.002586563,0.02299167,0.0047438513,-0.04252004,-0.032013718,-0.019964918,-0.014267933,-0.03477854,0.0121724885,0.03265399,-0.03605909,-0.012951004,-0.012325281,-0.010469941,0.013016487,-0.04141411,0.009742357,-0.01558486,-0.00486754,0.017811269,0.0023173566,0.019615678,-0.046361685,-0.012980108,0.0163561,-0.008418153,0.0039144047,-0.051280156,0.0026957006,-0.016632581,0.02892876,-0.0007189445,-0.021812983,0.004620162,-0.010608182,0.024868838,-0.006548261,-0.010993802,-0.015366585,-0.033789024,-0.03978432,-0.0133293485,0.020648848,0.032915924,-0.009058427,-0.017374719,0.013307521,0.03169358,-0.008359946,0.052386086,0.040744733,-0.019702988,0.010047942,0.027502695,0.030878687,0.024068495,-0.018291475,-0.025378147,0.005402315,0.028768692,-0.03402185,-0.052531604,-0.02265698,0.005649694,0.0037979912,0.011765041,-0.017083684,0.023195393,0.0027539073,0.011706835,0.007043018,-0.040832043,-0.012667246,0.026222145,-0.04441176,0.032479372,-0.017898578,-0.01532293,-0.04761313,-0.02772097,0.00035447007,0.0038380083,0.06164096,0.008934738,-0.010215286,0.022715189,-0.008658255,-0.014020554,-0.008803773,-0.05311367,-0.05113464,-0.025465459,-0.0150464475,-0.016472513,0.008098016,-0.019295542,-0.023282705,0.003385087,0.0010167994,0.0024319512,0.00060389517,0.018902646,-0.02297712,-0.024737874,0.0026665973,-0.018116854,0.002673873,-0.0063154334,-0.011699559,-0.035156883,-0.0361755,-0.034662127,0.010724596,0.007654189,0.03169358,-0.016850857,0.01919368,-0.03736874,0.003808905,-0.029336208,0.040948458,0.008578221,0.004685644,-0.007432276,-0.017694855,0.0094877025,-0.0091748405,0.01808775,0.018058648,-0.009138461,0.050930917,-0.043422244,-0.016326996,0.029889172,0.011241181,-0.0017225563,-0.026353111,-0.009058427,0.022787947,0.01808775,0.034574818,0.0053914012,0.011073836,0.015381137,-0.028783243,0.018946301,0.037485152,0.039813425,-0.030151103,0.02763366,0.008032533,-0.016297894,-0.019921264,-0.045663204,-0.029860068,0.007290397,0.01360583,0.007610534,-0.02910338,-0.016516168,0.010288045,-0.0075377757,0.0014669923,-0.004278197,0.042636454,-0.03323606,0.0065518986,0.015686722,0.002952174,-0.011925111,-0.0210854,-0.023122637,0.03795081,-0.009182117,-0.010535424,-0.06810191,0.0021900295,0.013569451,-0.0066573983,0.0006871126,-0.027168006,-0.011350319,-0.012165213,0.00078806496,0.02118726,0.009072979,-0.040686525,0.017200097,-0.029481724,0.0102516655,0.017592993,0.019863058,-0.0021718398,-0.012921901,0.05887614,-0.015090103,-0.02118726,0.0063845543,0.006588278,0.020255953,-0.04173425,0.040511906,-0.0066319327,0.034545712,-0.00989515,-0.030180207,-0.008898359,0.0053368323,0.022322293,0.017723959,0.03178089,0.01467538,0.019353747,-0.012441695,-0.03806722,-0.013111073,0.033585303,0.03253758,0.019150024,-0.01428976,-0.019615678,0.023631945,0.0025010717,0.033527095,-0.026338559,0.013074693,-0.01738927,0.012507178,-0.026222145,0.0219585,-0.006057141,-0.05355022,0.0054205046,-0.011604973,-0.022627879,0.040657423,0.015424792,0.0035633452,0.040570114,0.037659775,-0.01653072,0.047845956,-0.009473151,-0.008570946,0.03125703,0.022744292,0.036524743,-0.01800044,0.009102082,-0.0060498654,0.017534787,-0.015002793,-0.0067410707,-0.045081135,0.01166318,-0.01343121,0.032421164,-0.029161587,-0.01980485,-0.015424792,0.011306663,-0.018349681,0.006159003,0.006570088,0.02694973,-0.017112788,-0.019324645,0.03969701,-0.0023191758,0.02323905,-0.016661685,0.033614404,-0.009982459,-0.07863733,0.0008876531,-0.0089565655,-0.0075450516,0.0062208474,0.02892876,0.0055150907,0.042636454,-0.00609352,-0.036466535,-0.0002651136,-0.01800044,0.015482998,0.021827536,0.055325527,-0.013220211,-0.019339196,0.011990593,0.025523664,0.008570946,-0.003421466,-0.011983317,-0.0004542856,0.0017989527,0.0070648454,-0.0008840152,-0.015264723,-0.02548001,0.027444487,0.001598867,0.02272974,0.0027011575,-0.0027502694,0.022002155,0.019950368,0.0021500122,0.0018426077,0.017127339,0.005784297,0.004700196,-0.0114230765,0.012798212,-0.031286135,0.035826262,-0.028739588,0.008221705,0.027371729,0.008869255,-0.012878246,0.00695207,-0.0037506982,0.024417736,0.022598775,0.018640716,0.000051755134,-0.012019696,0.008418153,0.008163498,-0.015715826,-0.0067883637,0.014282484,0.011182974,-0.004845713,-0.031198824,0.029321656,-0.039260462,0.004802058,-0.018291475,-0.0049184714,-0.031140618,0.03795081,0.0046638167,0.00814167,0.0065628123,0.018262371,0.028070211,-0.039405975,-0.009516805,-0.015250172,0.039318666,0.014988241,0.030005585,0.009007496,-0.003848922,0.0024828822,-0.012252524,-0.010317149,0.013773175,-0.0110010775,-0.014144243,0.029830964,0.02565463,0.02591656,-0.002815752,-0.0029376224,0.0021209088,-0.0051258327,-0.018233268,0.0038234566,-0.028623175,0.03812543,-0.004358231,-0.011415801,-0.040511906,-0.06792729,-0.014100588,-0.002637494,0.022365948,0.0070612077,0.003990801,-0.0044346275,0.009276703,-0.0404537,0.00080898305,-0.0318391,-0.022773394,0.02290436,-0.007323138,-0.0063045197,0.022686085,0.002672054,-0.01687996,-0.0013214754,-0.024039391,0.018480647,0.00025101667,0.022264086,0.01567217,-0.010018839,-0.0009394935,-0.032828614,-0.034836747,-0.006719243,0.0057479176,-0.0056060385,-0.036699362,0.0075814305,-0.013867761,-0.034225576,-0.0020263228,0.008876531,-0.0033050526,-0.034371093,-0.027007937,-0.003976249,0.012128834,0.021580156,-0.0052859015,-0.01696727,-0.020605193,-0.0033214232,-0.03521509,-0.0024519598,0.005482349,0.031606272,0.03451661,0.0050930916,0.012943729,-0.009589564,0.04380059,-0.023981186,0.023573738,0.04027908,-0.014682655,-0.052648015,-0.0021172708,-0.016472513,0.002581106,-0.008789221,-0.0054277806,-0.052677117,0.00088037725,-0.019324645,-0.008010706,-0.023573738,0.02444684,0.031460755,-0.0019572023,0.018116854,0.042840175,-0.008127119,-0.025974767,0.00057933916,0.0027411745,0.04537217,-0.0043073003,0.04598334,-0.060243998,-0.0142024495,-0.010651837,0.030413033,0.04531396,-0.003050398,-0.004547403,-0.013955071,-0.040075354,0.014719035,-0.013169279,-0.016850857,0.021027192,0.014740862,0.009589564,-0.025261734,0.0066392086,-0.044062518,-0.0219585,-0.00248652,0.007472293,0.016108721,0.00826536,-0.01119025,0.03751426,0.021143606,0.0026120285,0.05139657,0.054859873,-0.0662975,-0.03684488,0.015366585,0.012034248,0.02290436,-0.0050385226,0.029379863,-0.024577806,-0.011561318,0.0054750736,-0.051949535,-0.016778098,-0.011081113,0.026062077,0.009873322,0.011233905,0.017578442,-0.011495835,-0.0012323463,-0.010600907,0.029234346,0.016661685,-0.008127119,0.017709408,0.004427352,0.026702352,0.032188337,-0.024141254,0.0053877635,-0.006060779,0.022176776,0.04097756,0.00059252663,0.016428858,0.0034196472,-0.0044309897,-0.0039289566,0.0042490936,-0.0018407889,-0.014173347,0.021070847,0.0040199044,0.002071797,0.0038889393,-0.005369574,-0.025188975,0.005264074,0.0019390128,-0.00021850273,0.0010195278,-0.0037798015,-0.015774032,0.0019644783,-0.016559824,0.026207594,-0.004183611,0.023064429,0.03253758,-0.004994868,-0.01041901,-0.005402315,0.011197526,0.0038416462,-0.0057079005,-0.01660348,0.0117504895,-0.0018362415,0.038096324,-0.01234711,-0.014973689,0.009203944,-0.0031231565,0.00032877724,0.0114085255,-0.018917197,0.019994022,0.037077706,-0.06391102,0.026556835,-0.017447477,-0.034662127,-0.010739148,0.01704003,-0.0018989956,-0.023908427,0.017811269,-0.048311614,-0.010768251,0.009793287,0.00639183,-0.0049584885,-0.0033123286,0.014930034,0.006988449,0.026571386,-0.020692503,0.024912493,-0.011182974,0.01514831,0.033556197,0.00023964814,0.0000693479,-0.022802498,-0.008250808,0.0029976482,0.0038816633,-0.0042563695,-0.008192602,-0.0025465458,-0.009669598,0.0004463276,-0.006399106,0.04470279,-0.04022087,0.01222342,-0.03341068,0.01868437,-0.02961269,0.013292969,-0.010353528,-0.03166448,0.034545712,0.038969427,-0.012318006,-0.023646496,-0.0012241609,0.02082347,-0.020168643,-0.018116854,0.009916977,-0.007093949,0.0009776917,-0.0043836967,-0.018145958,0.10477217,-0.007887016,0.00078897446,0.007170345,0.0008585497,0.01885899,-0.017796718,-0.008156222,0.004136318,0.0361755,-0.012107006,-0.0074504656,0.026309457,-0.010862837,0.0021772967,0.006955708,0.0148281725,0.000835358,0.039638806,-0.0006652851,0.010586355,-0.023224497,0.025072562,0.019572023,0.021667467,-0.02617849,0.03178089,0.015963204,0.027764626,0.023093533,-0.011597697,0.027371729,-0.0012832772,0.015177413,-0.006009848,-0.0027448125,0.028972415,-0.017854923,0.053230084,0.0010422649,-0.010353528,-0.031635374,-0.005820676,-0.007865189,-0.016254239,-0.019775746,-0.022031259,-0.011714111,0.0026083905,-0.028404899,-0.05008692,-0.0067992774,0.0010167994,-0.0097059775,0.011786869,-0.024985252,0.027866486,0.038503774,0.0028939673,-0.0005325009,-0.033672612,0.011583146,-0.027357178,0.00814167,0.009669598,0.04371328,0.012274351,0.0035578883,-0.007821534,0.034894954,0.017913131,-0.022016708,-0.017854923,0.022104017,-0.0013696778,-0.0052786255,-0.008163498,-0.030849583,-0.03460392,-0.01661803,0.00826536,-0.023209946,0.0015397507,0.027269868,-0.04959216,0.04787506,-0.0032723113,-0.022322293,0.007465017,0.014697207,0.0019662972,0.0062717786,-0.004227266,0.008832876,0.023166291,-0.014253381,0.012507178,0.022351395,-0.0396097,0.0011104759,-0.007923395,0.0080034295,-0.0042490936,0.0006643756,0.003608819,0.011648628,0.033585303,0.009524081,0.012419867,0.008039809,-0.023544636,-0.010586355,-0.020270504,-0.030616757,-0.0008708277,-0.034341987,0.035942674,-0.027240764,0.004041732,-0.036903087,0.03719412,0.028041108,0.002630218,0.020605193,-0.025931112,0.021158157,-0.00054205046,-0.01747658,0.041792456,0.020532435,-0.028113866,0.008927462,-0.027007937,0.0114230765,-0.020517884,0.0058679692,0.006999363,-0.017782165,-0.025727388,0.029088829,0.007184897,0.005307729,-0.0075232238,0.0014879103,-0.018946301,0.030878687,0.020968985,-0.02323905,-0.02910338,-0.0117359385,-0.018873543,-0.010528148,0.015221068,-0.052298773,-0.0013414839,-0.024417736,0.013300245,0.04656541,-0.013925968,-0.010899216,-0.0073158625,0.009516805,-0.010950147,-0.009247599,-0.0013905959,-0.00056660647,0.017098237,-0.00010987663,-0.006868398,0.011219353,0.0076760165,0.005678797,-0.023922978,-0.05587849,0.000020051206,-0.049708575,-0.0014615353,0.009182117,-0.012499902,-0.001852612,-0.035855364,-0.0051512984,0.038561977,0.017025478,0.008061636,-0.022569671,-0.005442332,-0.012056075,-0.023544636,-0.025858354,-0.016981823,-0.016050514,-0.03693219,-0.04676913,-0.019062715,-0.00779243,0.016763547,-0.0071157767,0.011510387,-0.019324645,-0.034400195,-0.032915924,0.033032335,-0.019150024,0.0067810877,-0.009866046,0.00050112384,0.063619986,-0.007334052,0.018626163,-0.0011595879,0.028186625,0.030849583,0.003859836,-0.00796705,0.016981823,0.01239804,0.017258305,-0.012121558,0.04659451,0.033177853,-0.011910559,-0.027793728,-0.04493562,0.0026102094,-0.00933491,0.0018426077,0.0030613118,-0.008869255,-0.0058024866,-0.007479569,0.009182117,-0.017287409,-0.004445541,-0.013285693,-0.025465459,-0.032508478,0.012230695,-0.035506126,0.03675757,-0.021594709,0.0028102952,-0.021318227,0.009414944,-0.008017981,0.03192641,0.014813621,-0.023370015,-0.0051040053,0.009102082,0.0012405316,0.032217443,-0.0034451126,0.017200097,-0.03108241,-0.027080696,-0.021012641,-0.020255953,-0.015206517,-0.021929396,0.001105019,0.00013664947,0.0019153663,-0.0370195,0.014355242,-0.02013954,-0.023995737,0.002724804,-0.0031722684,-0.01381683,0.0075086723,0.036350124,-0.013845934,0.020037677,-0.025843803,-0.004125404,0.0053732116,0.025974767,0.022700638,-0.014231553,0.00497304,0.0064718644,0.03538971,-0.000728494,0.014573518,0.010440838,-0.010477217,-0.011976041,0.025974767,0.024141254,0.003297777,0.00017643925,-0.009982459,-0.04173425,0.051018227,0.010666389,-0.013096522,-0.0077342233,0.0014478932,0.005780659,-0.009429495,-0.022104017,0.027662763,0.0002657957,0.008250808,0.028448554,-0.011466732,0.003190458,-0.011182974,-0.0019317368,0.023792014,0.02358829,-0.03227565,0.0019226421,0.011932386,0.020881675,0.026454972,0.057129934,0.005824314,0.009320358,0.0037907152,-0.003197734,0.013598555,-0.02469422,0.005042161,0.021463742,0.009960632,0.010899216,0.05008692,0.03667026,-0.020590642,-0.015119206,0.005951641,0.0020772538,0.010710044,0.02617849,-0.021929396,0.0044782828,0.0045837825,-0.033294268,-0.01269635,0.010971975,-0.011903282,-0.0016952719,-0.0062572267,0.013947795,-0.004190887,-0.00051703973,0.010549976,-0.05224057,0.021361882,-0.00062981533,0.008272636,-0.028594071,-0.004561955,-0.017010925,0.020561539,-0.038882118,0.018029545,-0.025116218,-0.0135476235,-0.014748138,0.0054605217,0.014857275,0.0117504895,0.03375992,-0.0072103627,-0.0055732974,0.018800784,0.035855364,-0.014806345,-0.009916977,-0.007654189,0.014769966,-0.01773851,0.006570088,-0.005671521,-0.014195174,-0.021711122,-0.03306144,0.009575012,0.031489857,-0.013147452,0.014806345,0.011685007,0.0022955292,-0.01252173,-0.023486428,0.01213611]},{"id":"interface-LiveKitRtcConnectionEvents","type":"interface","source":"main","text":"Interface: LiveKitRtcConnectionEvents\nDescription: LiveKit-specific: emitted when server sends leave (token expiry, server policy, etc.). Emitted before disconnect.","meta":{"url":"/docs/typedefs/LiveKitRtcConnectionEvents"},"embedding":[-0.011703183,0.0020989727,-0.0056972117,-0.020093136,-0.01753993,0.019451866,-0.017836815,0.006662086,0.02069878,0.0012632431,0.017136168,-0.0051509445,-0.012623525,0.0023260892,0.02255134,0.01088972,-0.017729936,0.06393702,-0.024558278,0.06251198,0.01892935,0.013181668,0.03752619,0.026862102,0.0072202287,0.002599223,-0.03253853,-0.02655334,-0.011364735,-0.025294552,0.078377485,-0.027170861,0.04137381,-0.034984857,0.02226633,0.049686573,0.0441289,0.024795786,-0.040305026,-0.01389419,-0.0022429617,-0.06863967,-0.0379537,0.039996266,-0.06156195,-0.0028426682,-0.0068045906,0.007974315,-0.013846689,0.023133233,-0.025057044,-0.041302558,-0.029830946,-0.00011921764,-0.009957503,-0.030804725,0.004016846,-0.0014339517,0.007368671,0.003865435,-0.0013664104,0.0042781043,0.013110415,-0.0066739614,0.021340052,-0.00093370146,-0.05301168,0.013490427,0.0025457838,0.029949699,0.012576023,0.01232664,-0.05334419,0.02652959,-0.011964441,-0.0096665565,-0.011697246,-0.02814464,-0.0026793818,-0.034937356,0.030187206,-0.01990313,-0.061656952,-0.07196478,-0.0017902129,-0.033346057,-0.076952435,-0.025104545,0.019606246,0.026363336,-0.038357466,0.00055665825,-0.004851091,-0.03633865,0.012083195,-0.027360866,0.05144413,-0.021411303,-0.016138636,0.027004605,0.015734874,-0.033251055,-0.05652679,-0.042513847,0.025009543,0.0145710865,-0.032657284,-0.002617036,-0.05837935,-0.028904665,-0.047454003,0.013324172,-0.013419175,0.018323705,-0.0023260892,-0.006816466,0.0137873115,-0.02036627,0.0347711,-0.025745815,-0.055671763,0.0098625,-0.010943159,-0.0029911103,0.009369671,-0.020556277,0.005311262,0.015877377,0.010664088,-0.008728402,0.07685743,0.027218362,0.018454334,0.01987938,-0.013846689,0.024261393,-0.021826942,-0.0069767833,-0.041207556,-0.05714431,-0.010224699,-0.00054849393,0.042988863,0.012083195,-0.033251055,0.05462673,-0.027052106,0.02432077,-0.009250918,-0.036457404,-0.010693776,0.02434452,-0.02524705,0.028690908,-0.027883383,0.028904665,0.006846154,-0.016815532,-0.021803191,0.009126226,-0.04515018,0.023620123,-0.0026214893,0.021090668,-0.072249785,-0.044342656,0.028928416,0.062084466,-0.04887905,0.006662086,0.007517113,-0.022313831,-0.022147577,0.029213425,-0.036172397,-0.039545003,0.024463275,0.026482088,-0.009595304,-0.032966044,0.038879983,0.016946161,-0.04037628,-0.030424714,-0.015984256,-0.013300422,-0.015497366,0.03249103,-0.034961108,-0.04075629,0.0095003005,0.021838816,-0.032704785,0.038666226,0.040257525,0.01689866,-0.027313365,-0.033916075,-0.008395891,-0.047192745,0.01276603,-0.02005751,0.025223298,-0.07614491,0.03821496,-0.0050529726,0.017397426,0.027645875,0.03002095,-0.009642805,0.044390157,0.046788983,-0.0020915505,-0.0052311034,-0.028952166,0.069209695,0.019368738,0.005860498,0.0038802791,-0.021209422,-0.009096538,-0.017896192,0.05647929,0.008360265,0.02398826,0.004203883,0.0028055576,-0.013632932,-0.028477151,-0.056954302,-0.046622727,0.0076774308,-0.014891721,-0.04139756,0.006383015,-0.000073896386,-0.015758624,-0.03600614,0.011269731,-0.0058308095,-0.036789916,-0.025128296,-0.027550872,0.024890788,-0.0051509445,-0.030472215,0.018525587,0.010082195,-0.036196146,-0.028809663,0.047145244,0.018169325,0.036718663,0.00286345,0.023038229,0.04833278,0.0066917744,-0.0012483989,0.013229169,-0.022016948,0.022301957,-0.06184696,-0.012706652,-0.017314298,-0.011156916,-0.050541602,0.021921944,0.0013537928,-0.020710656,0.045268934,-0.017183669,-0.029142173,-0.0034705787,0.0072083534,-0.05087411,0.010331578,0.028643407,0.010675963,0.011887251,-0.005177664,-0.042466346,-0.014404831,0.014856095,-0.008069318,-0.011709121,0.018869972,-0.0049935956,0.015651746,0.033037297,0.003035643,0.012801656,-0.014784844,0.029284677,-0.0016313798,0.027527122,0.010895657,0.028358398,-0.0057773707,-0.008734339,-0.017729936,-0.007249917,-0.024035761,-0.03852372,-0.060136903,0.020140639,0.053629197,0.075859904,-0.005857529,0.015010475,-0.0011029255,0.0057179937,0.018941225,-0.051871642,-0.00654927,-0.012920409,0.022076324,0.014392956,0.03638615,0.03151725,-0.0009121773,0.031184739,-0.049116556,-0.0016610682,0.001318909,0.0599469,0.0034171394,0.021435054,-0.015829876,0.027170861,0.08108507,-0.01862059,-0.047501504,-0.0020351426,0.005940657,0.03759744,-0.009001535,-0.012884783,-0.0049609384,0.008419641,0.02657709,0.048475284,0.019475617,-0.011329109,-0.018608714,0.043178868,-0.0061514447,0.012991661,-0.024154514,-0.018763095,0.056004275,-0.0379537,-0.0014324673,0.000146865,-0.05809434,-0.029237175,-0.045221433,0.073199816,-0.014250452,0.0047293687,0.05652679,-0.036718663,0.016958037,0.015105478,-0.03541237,-0.006341451,-0.00734492,-0.07823498,0.0020529556,-0.0037051174,-0.104693316,0.018632466,-0.021245047,-0.005216259,0.012504771,-0.018537462,-0.011287545,-0.014179199,0.010652212,0.04291761,0.038476218,0.034224834,0.013668558,-0.008971847,-0.004361232,0.040257525,0.036481157,-0.07391234,0.007903063,-0.028500903,0.010711589,0.048166525,-0.0027625093,0.025294552,-0.03446234,-0.009518114,-0.014761092,0.0045542065,0.03249103,0.0087580895,-0.030448465,0.0032271335,0.013917941,0.019677497,0.022052573,-0.001551221,0.016863033,0.013502303,0.021280674,0.041207556,0.0086809,0.03664741,-0.0057922145,0.019190608,-0.033726066,0.036504906,-0.038024954,-0.030068452,-0.02242071,0.041920077,0.021233173,0.0057922145,-0.0013686371,-0.007095537,0.01278978,-0.011245981,-0.018573089,0.02591207,0.009613117,0.03857122,-0.094528,0.0103672035,-0.00096784317,0.04859404,0.03693242,0.0032805726,-0.02778838,0.02902342,-0.0026986792,-0.055006742,0.010212824,0.02118567,0.008152446,0.0027001637,0.064507045,-0.051349126,-0.024700783,-0.023121357,-0.061989464,0.027550872,0.03227727,-0.025223298,0.02624458,0.00757649,0.041112553,-0.041848827,-0.05334419,0.010949097,0.033583563,0.022480087,0.020045634,-0.03952125,0.012540397,0.022278206,0.049449068,-0.017314298,-0.00161802,-0.019534994,-0.021043167,-0.021126295,-0.0019579527,0.015544867,-0.009440924,0.037502438,0.040542535,-0.0022429617,0.013799187,0.06517206,-0.06023191,-0.0042098206,-0.0020885817,0.012457269,0.021672562,-0.002177647,-0.008384015,0.0008171743,0.040898796,0.0126354005,0.012124759,-0.0599469,0.017575556,-0.003806058,-0.007784309,-0.0568593,-0.011821937,0.057999335,0.02147068,0.000014589085,-0.02873841,0.04044753,-0.0284534,-0.0012120305,-0.02226633,0.015889253,0.022646341,0.00891247,0.06906719,-0.013822937,0.0037199615,0.0023364802,-0.06099193,0.011774436,-0.032348525,-0.028002137,-0.03664741,-0.05087411,-0.019534994,-0.056669295,-0.021019416,-0.035483625,-0.012730403,-0.021518182,0.0031143173,0.02306198,0.010230636,0.0054507977,0.01810995,0.008805592,0.015295484,0.00932217,-0.046693977,0.034011077,-0.0034972983,-0.0123860175,0.033061046,-0.0028812631,0.018086199,0.013383549,-0.0038476218,0.034984857,0.0003750021,0.003978251,0.030472215,-0.00032954168,-0.016114885,-0.03405858,0.010931283,0.0030608783,-0.01672053,0.015319236,0.028334647,0.006133632,-0.033726066,0.00426326,0.0035269868,0.038024954,-0.01052752,0.008942158,-0.033013545,-0.0057387757,0.019499367,-0.025698313,-0.021921944,0.005596271,-0.025745815,-0.0347711,0.011857563,0.011489427,0.0057209623,-0.024558278,0.013751686,0.018038696,0.020770032,-0.015497366,0.030092202,0.030685972,-0.042157587,-0.018394958,-0.0020099075,0.047145244,-0.010848156,0.015081728,-0.0041029425,-0.015509241,0.019713124,-0.060374413,-0.037217427,0.017278673,-0.027930884,-0.047810264,0.036861166,-0.007570552,0.019356864,-0.0109015955,0.03983001,-0.019938756,0.0009403813,0.01278978,0.02683835,0.007095537,-0.017421177,-0.016506772,0.037027422,-0.045292683,-0.010129696,0.025104545,0.029949699,0.02714711,-0.030733474,-0.04291761,0.0074874246,0.028239645,-0.008146508,0.020734407,-0.0331798,-0.0059139375,0.007042098,-0.017171795,-0.0088827815,-0.0046135834,0.034296088,-0.007891187,0.011287545,-0.033916075,0.0017887285,-0.002458203,0.06754714,-0.024439525,-0.019998133,0.010883782,0.007077724,0.030709723,-0.0025071888,-0.0035537062,-0.023180734,-0.023073856,-0.0080990065,0.0362674,-0.0038387154,0.0027580562,-0.019772502,-0.004969845,0.0014732889,0.012682902,-0.01546174,0.023121357,0.0021123325,-0.00011866099,0.031350993,0.02619708,0.015877377,0.00916779,-0.041492563,0.04291761,-0.01848996,0.009446861,-0.038286213,0.008378078,0.045886453,0.04358263,0.016364269,0.026315833,-0.004542331,0.017373675,0.036172397,0.010111882,0.012469145,0.032609783,0.0145710865,-0.0019074823,-0.008906532,-0.0035744882,0.046385217,0.0015497366,-0.026482088,0.031826008,-0.022836348,-0.010301889,0.0043671695,-0.0014881331,-0.020627528,0.028595906,0.0037288682,-0.03189726,-0.034628596,-0.017801188,-0.010592835,0.06612209,-0.05776183,-0.006608647,0.016174262,0.009049037,0.0064423913,0.026862102,0.019986259,-0.020295018,-0.016506772,0.016886786,-0.0011148009,0.02555581,0.04550644,-0.0015022351,0.016067384,-0.027384616,0.0150223505,-0.00742211,0.0059673763,0.04325012,-0.04013877,-0.007968377,-0.036718663,-0.015794251,0.008467143,-0.015224232,0.037811197,-0.002082644,-0.005373608,-0.04132631,-0.0070005343,0.011536928,-0.019024352,-0.004857029,0.034011077,-0.0076358668,0.0035655817,0.012611649,0.0041029425,-0.011311295,0.009951565,-0.016554274,0.014986725,-0.008752152,0.009672494,0.033892322,-0.0026333646,-0.009809061,-0.01594863,-0.06854467,-0.00043419344,-0.029427182,-0.0045453003,0.01985563,0.0028367306,0.024368271,0.0047917143,0.0052400096,0.03439109,0.006507706,0.021838816,-0.0117684975,-0.017991195,0.030163456,0.0070599113,-0.034272335,0.030044701,0.020603778,0.024071388,0.017623058,-0.040233776,-0.01957062,-0.0023364802,0.01034939,-0.0070005343,0.027265863,0.013074789,0.0082712,-0.0016655215,-0.047454003,-0.04676523,0.024772035,0.030424714,-0.020473149,-0.016993662,0.0036249585,0.00037444546,0.035151113,-0.02524705,-0.037929952,0.0040020016,0.022254454,-0.0024864068,-0.0036635536,-0.03353606,0.001998032,-0.058616858,0.009506239,-0.012504771,-0.02098379,-0.0045007677,-0.036196146,0.0011029255,-0.009429049,-0.008342451,0.00957749,-0.03564988,0.020318769,0.0059317504,-0.008538395,-0.08607273,-0.016958037,-0.026980855,0.0030608783,0.014214825,-0.010402829,-0.030662222,0.03187351,0.012184136,-0.06289199,0.02743212,-0.017456803,0.022052573,-0.044983923,0.0040702852,-0.010373141,0.017611183,0.031992264,0.02553206,0.016839283,0.005617053,0.010385016,-0.047905266,0.08654774,0.02524705,0.021541933,-0.040257525,-0.034319837,0.01623364,0.015141104,0.030377213,0.0022711656,-0.013609181,-0.017480554,0.032989796,0.030092202,-0.0052993866,0.00044347107,-0.003295417,-0.029498434,0.03814371,-0.007962439,-0.0020945196,0.0008416673,-0.002683835,0.02966469,-0.031849757,0.014167324,-0.013490427,-0.012706652,-0.00017451236,0.0109015955,0.031445995,-0.03289479,0.0057150247,0.031754754,-0.002458203,-0.0012602743,0.005064848,-0.0019534994,0.012338515,0.00033213943,-0.008663087,-0.022990728,-0.015818002,-0.017908067,-0.02971219,-0.012017881,-0.0039634067,-0.006187071,0.0045245183,0.019523118,0.037169926,-0.0039159055,-0.000010796851,0.028524654,-0.010165322,0.0039307494,0.030733474,0.011798186,-0.010907533,0.0031143173,0.030614719,0.0116022425,0.03420108,-0.010960972,0.016601777,-0.0052251653,0.010058444,-0.012742278,0.005441891,-0.03161225,0.018026821,0.015829876,0.007903063,0.0059258128,-0.036908668,0.01815745,0.0059495633,0.0007770949,0.0065373946,-0.032681037,0.00963093,-0.022705719,-0.01828808,0.006187071,0.047287747,0.0410413,0.037739944,0.012136634,-0.013537928,-0.046741482,0.0072202287,0.06479205,-0.017148044,-0.011085664,0.019475617,0.005768464,0.011192542,-0.0045274873,-0.04044753,0.046028957,0.0016224732,0.0064483294,0.0012996115,0.027954636,0.012154448,-0.0102840755,0.0033726068,0.033037297,0.006846154,-0.03633865,0.031327244,-0.021090668,-0.026292082,-0.038974985,0.043060113,0.013110415,0.027978387,0.023608247,-0.016803658,0.016186137,-0.019606246,-0.0021449898,0.015509241,-0.007992128,0.009951565,0.019736875,-0.005424078,-0.024487026,0.004604677,-0.0073271072,-0.016352393,-0.019143106,-0.0015749717,0.024035761,0.03196851,-0.011465675,0.024890788,0.0013575039,0.02175569,0.077569954,-0.008384015,0.006798653,0.019736875,0.017777437,-0.022717595,-0.0031291617,-0.029569687,0.019309362,0.008354327,0.0053171995,-0.0002089324,0.007154914,-0.041848827,0.011631931,0.0042187274,0.004969845,-0.00047798388,0.0033726068,0.033108547,0.041207556,-0.034676097,-0.027907133,0.048356533,-0.011186604,0.020948164,0.016578024,-0.026885852,0.021577558,0.03415358,0.026909603,0.0118931895,0.013597306,-0.042775106,-0.032989796,0.030234708,0.014523585,-0.029450933,0.016613651,0.010610648,0.04256135,0.022943227,0.0072855433,0.025983322,-0.028049638,0.015996132,0.00891247,0.05619428,-0.0041801324,-0.029308429,0.0145710865,0.008110882,-0.003521049,0.027052106,0.014309828,-0.019214358,-0.01941624,-0.012908534,0.0017293517,-0.0070183473,-0.02416639,0.047477752,0.019321237,0.0037971516,0.0060594105,0.0052667293,0.0010509707,-0.031469747,0.00047019066,0.020449398,-0.024510777,-0.022040699,-0.0026942259,0.023192609,-0.021791315,0.021458805,-0.005254854,0.0039901263,0.024285143,0.008479019,-0.011804123,0.0068224035,0.008568084,-0.005124225,-0.0033429184,0.007879312,0.036837418,0.007629929,0.025175797,0.0063295756,-0.008752152,-0.0015452834,0.01672053,-0.014737342,-0.012291014,0.023073856,0.016756156,0.021518182,0.00067504094,-0.02067503,-0.010212824,0.009749684,-0.02085316,-0.017575556,0.0048629665,-0.017765563,0.04355888,0.024130763,0.011964441,0.018240578,0.035697382,0.023822004,0.0011333562,-0.016150512,-0.013300422,0.008995597,0.011002536,0.013419175,0.008520583,-0.038879983,-0.03531737,-0.036481157,-0.007172727,0.002167256,-0.009381548,0.008223698,-0.026102077,-0.0019475616,-0.013383549,-0.021945694,0.009357796,0.027004605,-0.030377213,-0.0022221797,-0.011317234,0.007618054,0.04013877,-0.004533425,-0.029925948,-0.0299972,-0.006127694,-0.030970981,-0.0031380681,-0.04320262,0.02018814,0.02383388,0.024700783,0.026078327,0.029308429,-0.040661287,-0.00015623542,0.013668558,0.02776463,-0.01846621,0.016328642,0.020948164,-0.042727605,-0.004848122,-0.0041207555,-0.009268731,0.015877377,0.006077224,0.00031673856,0.014107947,0.04175382,0.002958453,-0.026078327,0.014499834,-0.0029347022,-0.0057328376,-0.047264,0.007410235,0.00067058764,0.033322304,0.02350137,-0.009007473,-0.016779907,-0.01990313,0.018869972,-0.029213425,-0.033939824,-0.012647276,-0.021197546,0.035697382,-0.012599774,0.021340052,-0.02588832,-0.009921877,0.0049965647,0.061039433,0.0027907134,0.009892188,-0.015734874,0.03218227,0.006145507,0.008021817,0.04838028,-0.029094672,0.02275322,0.0012298436,0.019867504,0.037312433,-0.0055754893,-0.0035655817,-0.003538862,0.024795786,-0.012397893,0.010450331,-0.0026155517,0.03600614,0.025413305,0.008473081,-0.021613184,-0.03002095,-0.0173618,-0.0028085264,0.015651746,0.01389419,0.01129942,0.005216259,-0.004316699,-0.042727605,0.022349458,-0.01217226,-0.009690307,0.005055941,0.019998133,0.029807193,0.0056972117,0.019511243,-0.046480224,-0.013834814,-0.01738555,-0.016756156,-0.0051865703,0.0055072056,-0.039640006,-0.009482488,0.021411303,-0.0013901612,-0.019629996,0.0043315436,0.008775903,-0.011424112,-0.014155448,-0.009755622,0.028310897,-0.0062701986,-0.005094536,-0.027075857,0.009274669,0.028500903,-0.007618054,0.03688492,0.05177664,-0.013407299,0.009375609,-0.001410201,0.024308896,0.04959157,-0.027859632,-0.011008474,-0.016138636,-0.04044753,-0.020556277,-0.009310295,-0.030044701,-0.016958037,-0.019356864,-0.021530056,0.012314765,-0.018917475,0.047240246,-0.034581095,0.024558278,0.0046848357,-0.026434587,0.00855027,-0.046836484,0.012035694,-0.0076774308,-0.005688305,-0.013561679,-0.0009351859,0.00013248467,0.03505611,0.016863033,-0.049116556,-0.00020652021,0.006353326,-0.034984857,0.02005751,0.008983722,0.0061573824,-0.00071994466,0.01217226,-0.012492896,-0.029450933,0.03987751,-0.030472215,-0.03814371,0.022195078,0.018347455,0.016399894,0.009684369,0.021553807,-0.021387553,-0.026387086,0.020128762,0.034177333,0.021565683,-0.007849623,-0.02588832,-0.0071608517,0.017587433,-0.00005047035,0.02553206,0.002121239,0.0027446963,-0.0037941826,-0.0051865703,-0.02147068,-0.007024285,0.008948096,0.0012832829,-0.013134166,-0.030970981,-0.0088827815,-0.011471613,0.044271402,0.0078021223,-0.009779372,-0.0009722964,0.03830996,0.019546868,0.026339585,-0.020568151,0.004491861,0.008971847,-0.013419175,-0.009512176,0.0014628979,0.0026778972,0.018964976,-0.046337716,0.031137235,-0.009779372,0.039236244,0.042466346,-0.011548803,-0.008205885,-0.011412237,-0.0075111752,0.0068936558,-0.00742211,-0.024415772,0.0005867178,0.016673028,-0.019534994,-0.041563816,0.0009314748,-0.013799187,-0.0051806327,0.057904333,-0.022705719,0.009672494,0.008336514,-0.0065552075,-0.021043167,-0.049164057,-0.011911002,0.0033785445,0.018893722,0.0017620089,-0.009945627,-0.019915005,-0.026007073,0.007707119,-0.025793318,0.00860371,0.0118100615,0.0001783162,0.018418709,0.004076223,0.005293449,0.020425647,0.0081405705,0.018478084,-0.027527122,-0.008283075,0.014428582,-0.03420108,-0.015426113,0.04393889,0.01882247,0.0009967894,0.02714711,-0.006299887,0.009898126,-0.031849757,0.017611183,-0.005406265,-0.038428716,0.023453867,0.033274803,0.002835246,0.007879312,-0.023311364,-0.010693776,-0.0046581165,-0.00929842,-0.00536767,-0.04949657,0.054436725,-0.02087691,-0.011186604,0.017563682,-0.020295018,-0.039188743,0.016494898,0.014096071,-0.003731837,0.0076774308,0.012267264,0.00023082762,0.000191676,0.026054576,-0.03567363,0.008538395,0.045268934,-0.0034022953,-0.010753153,-0.008360265,0.008205885,0.025389554,-0.0017620089,0.014962974,-0.033417307,-0.00019891254,-0.00021412788,0.0053023556,0.026410837,-0.013704184,-0.01897685,-0.0022385083,0.0028218862,0.0025769565,-0.012694777,-0.017159918,0.028287146,0.008853093,0.0029005606,0.010100007,-0.025389554,0.0027417275,0.006053473,0.03947375,0.009019348,0.034961108,-0.0064483294,0.021541933,-0.020770032,0.03945,0.006353326,0.00011968153,0.0024151546,-0.026149578,0.016993662,-0.03408233,-0.034794852,0.03215852,-0.0018688873,-0.0021242078,-0.013300422,-0.0054270467,0.0009893673,-0.012445394,0.04068504,-0.0142385755,0.0034676099,-0.006721463,0.0049757827,-0.015319236,0.028358398,0.0074993,-0.022824474,-0.0034527655,0.0019995165,0.0050885985,-0.0044443593,-0.004189039,0.009880313,0.04047128,0.0028411837,0.014392956,-0.0055368943,-0.023156984,-0.025080794,0.0055487696,0.0029168893,0.010711589,-0.03752619,-0.0056081465,-0.0017872441,0.010610648,0.046575226,-0.022634467,0.009120289,0.014749217,-0.0023156984,-0.026862102,0.0009856562,-0.030757224,0.033916075,0.009381548,0.015247983,0.016043633,0.053724203,0.034272335,0.0069589703,-0.010842218,0.0012817984,-0.031707253,-0.0065255193,0.010788779,0.0012773451,-0.029118422,0.013763561,-0.0095834285,-0.032704785,-0.000545154,0.0063770767,-0.031731006,-0.03880873,0.0006679899,-0.038428716,-0.00078451703,-0.024415772,-0.008093068,0.005067817,0.049401566,-0.019534994,-0.025104545,0.019273736,0.003731837,0.01641177,-0.02809714,0.028263396,-0.0042216964,0.012611649,0.00434045,0.04296511,0.004471079,-0.037003674,0.0031529122,-0.02971219,-0.017278673,0.020425647,0.029165924,-0.00038001203,-0.0033933888,-0.004156382,-0.002493829,-0.0028753255,0.012777905,0.0032301024,-0.031089734,-0.021767564,0.0044384217,0.04479392,-0.023382615,0.018881848,-0.009910001,0.010545334,-0.011287545,0.0028307927,0.015093603,-0.0049579693]},{"id":"interface-MessageAttachmentMeta","type":"interface","source":"main","text":"Interface: MessageAttachmentMeta\nDescription: Attachment metadata for file uploads (id matches FormData index).\nProperties: description: string | null, filename: string, flags: number, id: number, title: string | null","meta":{"url":"/docs/typedefs/MessageAttachmentMeta"},"embedding":[-0.011934019,0.03364479,0.012518498,0.0030392958,-0.0328584,-0.04616329,-0.0033155954,-0.007247552,-0.017162457,0.0063283243,-0.012646021,-0.024165591,0.06312384,-0.023400454,0.0020137993,0.020169873,-0.017810699,0.043612834,-0.00022150463,0.04926635,0.027119871,0.006349578,0.037321705,0.028310085,0.0228266,-0.0016484992,-0.020701218,0.008283676,0.018660853,0.014824538,0.04743852,-0.023846783,0.063378885,0.026312226,0.00270322,0.02801253,0.040509775,-0.016376067,-0.038703203,-0.026439749,-0.032709625,0.014622627,0.005541933,0.019649154,-0.026120942,0.008910663,0.05105167,0.05606757,0.014888299,0.033942346,-0.005621635,0.008820334,0.032327056,0.028968953,-0.0065355487,0.028883938,0.008273048,0.037938066,0.003310282,0.0023844126,-0.031221857,-0.0049016615,-0.021891432,-0.015047703,-0.035387605,-0.0015820811,-0.06299631,0.05049907,0.046800908,-0.010749118,0.07298561,0.014877672,-0.01519648,0.0467584,-0.007858599,-0.04308149,-0.015207106,-0.017513145,-0.023336692,-0.036046475,-0.01770443,0.053432096,-0.058320474,-0.014346327,-0.025185773,0.043782864,-0.04204005,-0.054239742,-0.048373688,0.03863944,-0.07642873,-0.008092391,-0.08722567,-0.011710853,-0.0025199058,-0.0014479163,-0.026397241,0.007438836,-0.035833936,-0.013857489,0.022847854,-0.009750188,-0.022359015,-0.022911616,-0.018554583,-0.034048617,0.0009046156,0.0050557517,0.024250606,0.013464293,-0.015695944,0.013464293,0.0019354258,0.026014673,0.0040329117,-0.02722614,-0.0029808478,0.07698133,0.019234706,-0.012401602,-0.048118643,-0.0077310763,0.013857489,0.007863913,-0.0096651735,0.0005964353,0.0067055793,0.016163528,-0.08918102,0.0046413024,0.04743852,0.02187018,0.014388834,-0.042125065,-0.0044048536,-0.0155471675,0.017194338,0.0093941875,-0.0545798,-0.029776597,0.016652366,-0.010111503,0.015334629,0.0013363338,-0.026737303,0.0037725526,-0.037725527,0.07574861,0.020403665,-0.02527079,-0.007242238,-0.0028745788,-0.02605718,0.009452635,0.024845712,-0.042953964,0.024165591,-0.0358977,0.0049813637,-0.020244261,0.017831953,-0.0573428,-0.012635395,-0.0081880335,0.013230502,0.010265593,0.026907332,0.001991217,-0.0140700275,-0.0055047385,0.052922007,-0.023017885,-0.0010905865,-0.012688529,-0.013230502,0.02588715,0.06057338,-0.03434617,-0.024484398,0.03640779,0.03696039,0.010276221,0.0028028472,-0.0031721322,-0.038065586,-0.012061541,0.0093038585,0.028650146,0.03668409,0.0144313425,-0.020265516,0.007300686,0.033198465,0.0005001289,0.0055259927,-0.012816052,0.013421786,0.005045125,-0.002323308,-0.035642654,-0.00086011545,0.005289544,0.044803046,-0.001435961,-0.036173996,0.010409057,-0.004080733,-0.006886237,-0.046928428,-0.026652288,0.026758555,-0.0035493874,0.008267735,0.026461003,0.007704509,-0.006009517,-0.002567727,0.011774614,-0.020244261,-0.008427138,-0.019224077,0.011678972,0.07987185,-0.028968953,-0.022082716,0.020616204,-0.04019097,0.03509005,-0.031604428,-0.043230265,-0.02527079,0.008235854,0.0017813356,-0.048543718,-0.044420477,-0.0038017766,-0.031370636,-0.014750149,0.024675682,0.007646061,0.0058288593,0.01158333,-0.011020104,0.029755345,-0.034622468,0.013899997,0.0062964433,0.0336873,0.022720331,0.022422777,0.030307943,-0.021540744,0.015217734,0.00092122017,0.0107809985,-0.016822396,-0.043952893,0.041997544,0.037853047,0.01979793,0.00041079643,-0.024994489,-0.044803046,0.005015901,0.0039213295,0.031646933,0.05534494,0.043612834,-0.020244261,0.0059191883,0.03111559,0.002893176,0.040339746,0.051816806,-0.01450573,0.0233792,-0.021678895,-0.009096634,0.0037725526,0.0077948375,0.025908403,-0.025313297,-0.021806417,0.044803046,-0.04633332,0.010462192,0.03279464,0.0016617829,0.042465128,0.032645863,0.027566202,-0.02505825,0.048926286,-0.03585519,-0.023081645,0.054749835,0.031689443,-0.020244261,0.03876696,-0.017045561,0.019744797,-0.056917723,0.04671589,-0.04654586,-0.0008063167,-0.011370792,0.00953765,0.00006118775,-0.007800151,-0.027714979,0.027991278,-0.01867148,-0.07587613,-0.0013682145,-0.059255645,0.009994607,0.013358024,0.029500298,-0.018118879,0.051859315,0.011020104,0.013347398,0.0118064955,-0.03795932,-0.013985012,-0.009218844,-0.032157026,-0.009436695,-0.0021851582,0.061551057,0.03798057,0.01773631,0.008756572,-0.040382255,0.06524922,-0.008273048,-0.016886158,0.05891558,0.0022954124,0.073793255,0.030966813,-0.013591817,-0.022954123,0.02633348,-0.0059935767,-0.051349223,-0.049733933,0.0021678894,0.014569492,-0.019967962,-0.03880947,-0.027693724,-0.021636385,-0.008389944,-0.036556564,-0.022316508,0.0075822994,-0.058192953,-0.029755345,-0.0039505535,-0.02588715,0.0501165,-0.004078076,-0.00052370736,0.0011291091,-0.031986997,-0.031370636,-0.015589675,-0.00832087,-0.060063288,-0.0023618306,0.0037141046,-0.046460845,0.0190753,0.0016989771,0.023039138,0.004638646,-0.020594949,-0.016790517,-0.017162457,0.038065586,0.07200793,-0.035876445,-0.003331536,0.026843572,-0.019617274,-0.048288673,0.01361307,-0.035111308,-0.0049122884,0.028883938,0.032093264,-0.028097548,0.0071147154,-0.03364479,0.053304575,0.039383322,-0.027885009,-0.0011775943,-0.04947889,0.0063761454,-0.01653547,-0.001180251,0.054069713,0.0018570523,-0.023315437,-0.008586543,0.007959555,0.05334708,-0.009309172,0.017991357,-0.007975495,0.021434475,0.04777858,-0.005834173,0.004877751,-0.00020622845,-0.012762917,0.037640512,0.01602538,-0.02733241,0.06380396,0.016418574,-0.0014718268,-0.008544034,-0.000478543,0.024293113,-0.06860732,0.007879853,-0.020382412,-0.05589754,0.016471708,0.020244261,-0.03389984,0.041317422,-0.033921093,0.019372854,-0.0019447244,-0.020807488,0.02155137,-0.0037273883,-0.005180618,0.0035095366,0.0023007258,-0.0233792,0.008522781,-0.0023790991,0.028097548,0.026354734,-0.007959555,-0.051689286,0.03608898,-0.046248306,-0.0076407474,0.002824101,0.009457949,-0.06184861,-0.019022167,0.056195095,-0.022125224,-0.027311156,0.020531187,0.018820256,0.02688608,-0.012688529,-0.03946834,-0.034792498,0.0021785162,-0.0019792619,-0.025695866,0.018299537,0.019819185,0.016376067,0.021540744,0.0048379004,-0.040339746,0.029436538,-0.080722,0.01492018,0.009234783,-0.0031375948,-0.013985012,-0.029245254,-0.030052898,-0.07064769,0.11681098,0.025185773,0.039064515,0.06452659,-0.0007511896,-0.056960233,0.0034218647,0.041317422,-0.0072634923,-0.022082716,-0.007762957,-0.005071692,-0.059383165,-0.00097369053,-0.0022768152,0.009495143,-0.03891574,0.022720331,-0.01622729,0.043230265,-0.010010548,-0.021221938,-0.0059351283,0.0071040886,-0.011742734,0.048543718,0.031880725,0.011253896,0.0067905947,-0.026078435,0.005743844,-0.025589596,0.044165432,-0.00013217218,-0.0075291647,-0.01873524,0.021285698,0.051604267,0.0050212145,-0.011126374,-0.02578088,-0.024314366,-0.019819185,-0.001782664,-0.014144416,0.030414212,0.011392046,0.032305803,0.011062612,-0.0049229153,0.0069287447,0.015610929,-0.02694984,0.023081645,-0.004497839,-0.03547262,0.0016392007,0.038235616,0.006556803,-0.009930846,0.030754274,-0.03207201,0.027821247,0.015727825,0.03234831,-0.012975455,-0.017173085,0.024016814,-0.0048564975,-0.012975455,0.008607796,0.021561997,0.00095310085,0.020361157,-0.011158254,0.005563187,-0.037109166,-0.017725684,-0.0025823389,0.015302748,0.023315437,-0.0020669338,0.015440898,0.054154728,-0.006609937,0.009962727,0.024654428,0.004128554,0.008719379,-0.013761847,0.009484516,-0.02299663,-0.0039904043,0.01650359,-0.022252748,0.007943614,-0.002078889,-0.008480273,0.005589754,-0.008862842,0.02444189,0.023676753,0.009128515,0.021912687,0.013230502,0.023421707,0.0062220553,0.034048617,0.0014253341,0.026843572,-0.005611008,0.029946629,0.019574765,0.027693724,0.006817162,0.021200683,0.023039138,0.005347992,-0.010159325,0.024250606,0.040658552,0.0058660535,-0.058618028,-0.037640512,0.013124232,-0.012040287,0.03668409,-0.0512217,-0.03914953,-0.020743726,0.024271859,0.016312305,0.01815076,0.0027258021,-0.019776678,-0.0037752094,0.035430115,-0.0089425435,0.0035998654,-0.004242793,0.015164599,-0.012677902,-0.043421548,0.005685396,0.033432256,0.01010619,0.0042693606,-0.00034570662,0.00080830924,0.008081764,-0.008958484,0.011976526,0.036875375,-0.01024434,0.020648085,0.015143345,0.018097626,0.06465411,-0.0030233555,0.033368494,-0.009139141,-0.023060393,0.018342044,0.0014080654,0.03440993,-0.02162576,-0.05500488,-0.019840438,0.009266664,-0.018129507,-0.029925374,0.014027519,0.042847697,-0.034558706,0.03557889,-0.008055197,-0.0082146,0.0032651178,0.0017321862,-0.028310085,-0.002575697,-0.004577541,-0.025185773,0.003262461,0.0010387803,-0.00570665,0.017247474,0.010648162,0.039489593,0.008570602,-0.050626595,0.028097548,-0.007874539,-0.007438836,0.013071097,0.0047953925,-0.008830961,-0.003018042,-0.06427155,-0.036152743,0.0086715575,0.01945787,0.032263294,0.017630043,-0.01375122,0.0036795672,-0.016354812,0.009893652,-0.027481185,0.027098617,0.046630874,0.004303898,0.024165591,0.029160237,0.0091232015,-0.0046997503,-0.0025571,-0.022082716,0.041763753,0.030839289,0.0035892385,0.009165709,0.010850074,0.020839369,-0.02767247,-0.03472874,-0.014101908,0.007024387,0.011051985,0.005531306,0.024675682,-0.008443079,0.016960546,-0.0034165513,0.021848924,0.030881796,-0.037619255,-0.02187018,0.044080418,0.0040249415,-0.013538682,0.0067055793,0.022614062,-0.012401602,-0.02113692,0.0036981641,-0.002064277,0.029202744,0.01598287,0.023549229,0.042550143,0.018363299,0.0021426505,-0.026014673,0.029181492,0.023060393,0.04641834,0.04046727,-0.011530196,0.011753361,-0.030541737,-0.029946629,-0.009744875,-0.007024387,0.013368651,-0.0118383765,0.003379357,0.004936199,0.0033049686,0.010276221,-0.0012685872,0.014675761,-0.007098775,-0.027077364,0.007810778,-0.015600302,0.047225982,-0.024590667,0.01316674,-0.021434475,-0.040127207,-0.005733217,0.0020337247,0.032730877,-0.029521553,-0.0086715575,0.0068915505,-0.017289981,-0.018108252,0.024314366,-0.015409018,0.01798073,-0.040956106,-0.044633016,0.044888064,0.024059322,-0.01347492,-0.009070067,-0.005765098,0.0127416635,-0.0017082756,-0.057130262,-0.041232407,-0.027927516,-0.00933574,-0.0028798922,0.042550143,0.0032172967,-0.03200825,0.003748642,0.023974307,-0.0049787066,-0.06286879,0.011126374,0.01694992,-0.004816646,-0.032327056,0.012475991,0.021785162,0.039383322,0.028033786,-0.058575522,-0.013187993,-0.013591817,0.026631033,-0.015079584,0.008591856,-0.007252865,-0.010084936,0.0049787066,0.030435467,-0.0047581983,-0.023017885,0.018023238,-0.009792697,0.038448155,0.0053028273,-0.00776827,-0.0054276935,0.040233478,0.059765734,-0.020711845,0.032773387,0.009590785,-0.02371926,0.034091122,0.038681947,0.016737381,-0.00052835664,0.032390818,-0.010302788,-0.016864903,-0.001406737,-0.020637456,-0.0131029785,0.03540886,0.019819185,0.03302843,0.0400847,0.047310997,-0.01375122,0.0118064955,-0.012444111,-0.014526985,-0.013559936,-0.031923234,0.026567271,-0.012369722,-0.0512217,-0.0070031327,-0.01870336,-0.0201805,-0.00074189104,-0.01653547,-0.0022821287,0.00919759,0.033729807,-0.012911694,0.0062645627,0.0036689402,0.0047847657,-0.017470637,0.019468497,0.008262422,0.022082716,0.016004125,0.009011619,0.0140700275,-0.02533455,-0.016322931,0.013389905,0.0018570523,0.010138071,0.017332489,0.04582323,0.011317658,0.00035865817,0.027204886,-0.0010188549,0.018448314,0.022784092,0.018405806,0.036429044,0.016216664,0.018086998,-0.007762957,-0.024930729,-0.016036006,-0.0030552363,0.006631191,0.048458703,-0.019266585,0.03434617,-0.02162576,-0.013836235,-0.031498156,-0.026822317,-0.013081725,-0.030010391,0.022188986,0.008241167,0.01873524,0.016004125,-0.014526985,-0.022401523,0.007284746,-0.013687459,-0.03846941,0.0064983545,0.00068742817,0.034558706,0.00019211459,-0.012794798,0.020616204,-0.017831953,-0.0107809985,0.0013801698,0.037895557,-0.005045125,-0.030584244,-0.00467584,-0.046673384,-0.018937152,0.015143345,0.01756628,0.026354734,-0.019149689,0.0072634923,0.033389747,0.0140381465,-0.060828425,-0.025653359,-0.0031854159,0.0052231257,0.014750149,-0.0003467029,0.004468615,0.0037964631,-0.02945779,0.027927516,0.0046705264,-0.06873485,0.0057704113,-0.026843572,-0.011774614,0.018161386,0.001435961,0.00613704,-0.06822475,-0.025589596,-0.00673746,0.06274127,-0.03345351,0.00031797704,0.011137,-0.03139189,-0.037257943,-0.047566045,-0.038490664,-0.00096173526,0.019064674,0.033432256,0.028055038,-0.020924384,0.03111559,-0.02444189,-0.021083787,0.043506563,0.012943575,-0.014240058,0.028883938,-0.0150051955,-0.018225148,0.024144337,-0.010711924,-0.038894486,0.05912812,-0.0044154804,0.019511005,-0.024420636,-0.011795869,0.008501527,0.020478053,0.019064674,0.0007843987,-0.005326738,-0.018086998,0.011700227,-0.033772316,0.041933782,-0.027970023,-0.013910623,0.032943416,0.015802214,0.0035307903,-0.015249614,0.0041338676,0.0049547963,-0.00017816677,0.019723542,-0.010573775,-0.0065780566,0.03523883,0.030074151,-0.04964892,-0.03268837,-0.013506801,0.021423848,-0.053262066,0.012986083,-0.023591738,-0.0049893335,-0.00948983,0.023485469,0.012847933,0.051816806,-0.04331528,0.030116659,0.015525914,0.020169873,-0.021051906,0.009356993,-0.0005934464,0.01804449,0.0009823248,-0.018937152,0.055685002,0.0025092787,0.0035547009,0.009245411,0.028905192,0.00085878704,0.0042507634,-0.0027975338,0.007518538,0.0018185298,-0.02388929,-0.03747048,0.020871248,0.046800908,-0.025568342,-0.025462074,-0.013506801,-0.011338912,-0.02588715,0.010127444,-0.00051141996,-0.024951981,-0.03647155,0.006041398,-0.009202903,0.04248638,0.03880947,0.020233635,0.014760776,-0.016450455,0.0033952973,-0.01216781,0.0034271781,0.01416567,0.031923234,0.041614976,-0.021647014,-0.003971807,-0.0019022167,-0.001797276,0.016716128,0.02182767,-0.00718379,0.0027417424,0.033198465,-0.0028745788,-0.037683018,-0.017406877,0.00832087,-0.040764824,-0.01828891,0.0072209844,-0.013963758,-0.016131647,0.0071997307,0.032560848,-0.0013828265,0.04960641,-0.0044845557,-0.040679805,0.033708554,0.0006243309,-0.03156192,-0.018161386,0.020786233,-0.018267656,-0.017173085,-0.013719339,-0.020871248,0.010722551,-0.011615211,-0.005616321,0.017332489,-0.007980809,0.0029489673,0.0031030574,-0.014697014,-0.022592807,0.009521711,0.0031296245,0.042167574,0.0026035926,-0.046078276,-0.03266712,-0.0050690356,0.016269797,0.027268648,-0.014803284,-0.0026275031,0.030605497,-0.028267577,0.00060340913,0.014558865,-0.017683176,0.0039478964,0.015589675,0.03428241,-0.03668409,-0.0053400216,0.00010527281,0.0032412072,-0.0012765575,-0.02382553,-0.011105119,-0.028990207,-0.014526985,-0.013389905,0.03217828,-0.039170787,0.033729807,-0.0038495976,-0.02801253,0.007274119,0.006779968,-0.0033952973,-0.010759745,0.02399556,-0.019585393,0.011477062,0.0022940838,0.02193394,0.015695944,0.028097548,0.030371705,-0.015579049,0.02905397,-0.006195488,0.0031721322,0.01694992,-0.02021238,0.019064674,-0.0066418177,-0.019255958,0.042847697,0.009356993,-0.0019394108,0.01773631,-0.0011138329,0.0022143822,-0.023527976,0.01041437,-0.041891273,0.017640669,-0.004147151,-0.05504739,-0.01742813,0.0034457752,0.016748007,0.012709782,-0.0029755344,-0.035600144,-0.007858599,-0.032645863,-0.03670534,0.028905192,-0.03634403,0.02956406,-0.00469178,-0.0010859373,-0.011307031,-0.014537611,-0.03634403,-0.029436538,-0.011200761,-0.018799001,-0.017683176,-0.013251755,0.025292043,0.021636385,-0.024080575,0.026567271,0.01241223,0.015164599,0.03018042,-0.044462986,-0.0013449681,-0.0029914747,0.036067728,-0.027098617,-0.0060520247,0.066949524,0.072135456,0.02767247,0.0026328166,0.025483327,0.018278282,-0.0039027322,-0.006971252,0.036216505,0.01289044,-0.022954123,0.024930729,-0.005374559,-0.022465285,-0.0025478015,0.012794798,-0.014112535,-0.006083905,-0.015494033,0.041402437,-0.037151672,0.015908482,-0.0067534004,-0.047863595,-0.011763988,0.027544947,0.008793767,0.0099521,0.01653547,0.031094335,-0.00025753648,0.045398153,0.0055685,-0.024293113,-0.011073239,-0.02327293,-0.015440898,-0.009473889,-0.00041013226,0.009686427,-0.021891432,-0.0018225148,0.020435546,0.013411159,0.00037094552,-0.016280424,-0.02522828,-0.011360166,-0.00630707,-0.014261312,-0.003671597,-0.02633348,0.015929736,-0.01942599,-0.012114676,0.025207028,-0.0022568898,-0.008724692,0.018937152,0.0019752767,0.023251677,0.011700227,-0.022762839,-0.006243309,0.005685396,0.04308149,0.011168881,-0.0011450495,0.008395258,0.006503668,0.009973354,-0.008219914,-0.009266664,-0.023527976,-0.011200761,0.021360086,-0.007943614,0.0023844126,-0.014537611,-0.004160435,0.02382553,-0.014898926,0.0017135891,-0.017109323,0.013145486,0.011455808,-0.025908403,0.0025132638,0.0066258777,-0.026907332,0.04820366,-0.013294263,0.013687459,0.007874539,-0.0342399,0.005045125,0.0022356359,0.010557834,-0.018023238,-0.044335462,0.0074654035,0.0009896309,-0.017608788,-0.027991278,0.018522702,-0.029500298,-0.022699077,-0.0049308855,-0.012263453,0.03568516,-0.033496015,-0.015557795,-0.009511083,0.011402673,-0.045355648,-0.04369785,0.0011988481,-0.03959586,0.024654428,0.028586384,-0.013368651,0.013868116,-0.01773631,-0.0131348595,-0.029223999,0.024675682,0.01388937,0.0030818034,-0.024080575,0.0041737184,0.014643881,-0.020244261,-0.0043862564,0.028862685,0.031689443,-0.0063283243,-0.00016455103,0.015855348,0.013198621,-0.027183633,0.021296324,-0.0207331,-0.009139141,0.018894644,0.02901146,-0.009096634,0.017906342,-0.016524844,-0.010276221,-0.034048617,0.0011224672,0.0074813436,-0.0048060194,0.010122131,0.017587533,0.0045217494,-0.010297474,0.011009477,0.018140133,-0.031306874,-0.0059085614,-0.013326144,0.023464214,0.030839289,0.022359015,0.019946707,-0.004614735,-0.026567271,0.008676871,0.020924384,0.0028214443,-0.0001413877,-0.014325073,0.0011038701,0.0033554465,-0.016716128,-0.03166819,0.015802214,0.00847496,-0.028926445,-0.008512154,-0.0054941117,0.016014751,0.00789048,-0.013358024,0.0054117534,0.0016763948,-0.006147667,-0.014155042,-0.028565131,-0.008878782,-0.0020695904,0.002104128,0.009117887,-0.010084936,-0.028055038,-0.013814981,0.01509021,0.033814825,-0.014293192,0.009925533,0.020860622,-0.016631112,-0.0005828195,-0.01361307,0.033389747,-0.03557889,-0.008682185,-0.01578096,0.007853285,-0.022571554,-0.025079506,0.030052898,-0.04187002,-0.0096970545,-0.008347437,0.009558904,0.0353451,0.052581944,0.015494033,0.0015302749,0.010722551,-0.037002895,-0.045865737,-0.0045217494,-0.008384631,0.012242199,-0.015557795,-0.0076407474,-0.045355648,0.008071138,0.0048379004,-0.027906263,-0.009277292,0.006508982,-0.0043224953,0.0010467505,-0.006259249,-0.0047369446,-0.0062645627,-0.03362354,-0.0029835047,0.009128515,-0.01856521,-0.029861614,-0.0037858363,-0.011934019,0.009861771,-0.034388676,0.014027519,0.015568421,0.02801253,-0.032114517,0.0037273883,0.045738216,0.006248622,-0.020191127,-0.00009290243,-0.026248464,-0.03613149,0.019925455,-0.023294184,0.006312384,0.009601412,0.013039217,0.013124232,-0.013729966,0.019436616,-0.04227384,-0.018501448,0.015717197,0.015451525,-0.011126374,0.042677667,-0.0008348765,-0.0037327018,-0.007901107,-0.028713908,0.003777866,-0.02210397,0.028288832,0.047481027,0.016014751,-0.018278282,-0.0062167416,-0.038681947,0.028777668,0.029394029,0.019691661,-0.04374036,0.000898638,0.02176391,0.006397399,-0.017683176,0.016322931,-0.019234706,0.009112574,0.010850074,-0.032943416,0.028905192,0.021168802,0.04926635,0.018108252,0.034707483,0.020244261,0.018023238,-0.02454816,0.036854118,-0.0032730878,0.0073166266,0.012592887,-0.0035015664,-0.01608914,-0.0047847657,0.015844721,-0.00070668943,0.024250606,-0.006057338,-0.057937905,0.014282566,-0.009245411,0.00036330745,-0.0052443794,0.028798923,0.01856521]},{"id":"interface-MessageCollectorEndReason","type":"interface","source":"main","text":"Interface: MessageCollectorEndReason","meta":{"url":"/docs/typedefs/MessageCollectorEndReason"},"embedding":[0.008925078,-0.016473725,0.027615584,0.037786696,-0.033121314,0.024572944,-0.04265492,0.026702791,-0.0132209975,-0.030165607,0.02354424,-0.04511801,-0.012054652,0.070936985,0.035961114,-0.014155522,0.014865472,0.007954331,-0.020008983,0.059403934,0.050333966,0.049203843,0.045407787,0.030426404,-0.03526565,-0.01406859,0.0119025195,0.009721961,-0.0055781743,-0.04807372,0.033555977,-0.03772874,-0.023862993,0.009577073,-0.017212652,0.03106391,0.020269781,-0.019632274,0.0067227865,-0.0039192108,0.003412104,-0.034628145,-0.0068930294,0.0028126312,-0.010555064,0.0078384215,0.037062258,0.0042560743,0.0452629,0.021573769,-0.019385966,-0.017140208,0.029933786,0.052217506,-0.023008157,-0.081252985,-0.005411553,0.02532636,0.0332662,-0.025876932,0.007338559,-0.018980281,0.017777713,-0.033498023,0.013184776,-0.010113157,-0.011214303,0.053666383,0.0016209305,0.043814022,0.012583491,0.016589634,-0.060678944,0.0025355336,-0.04561063,-0.009613295,0.040278763,0.0019740942,0.0102508,-0.034135528,-0.008193396,0.007968821,-0.023167534,-0.037120212,-0.015502977,-0.013090598,-0.029455658,0.028528376,-0.0064366334,-0.056100495,-0.07679045,0.06178009,0.011018705,0.0013248164,-0.0102508,-0.028992016,-0.027340299,-0.008809169,-0.008751214,-0.0014687985,0.015879685,-0.05097147,-0.02015387,-0.0011210681,-0.003774323,-0.042973675,-0.014698851,0.0018446008,-0.062069863,-0.004553094,-0.02826758,-0.019183123,-0.060678944,0.010779641,-0.015966618,-0.0120039405,0.0029357858,0.014039612,0.013757082,0.03401962,-0.014793028,0.03268665,-0.03060027,-0.0052087107,-0.024312146,-0.027224388,-0.008881613,-0.009439429,0.03106391,0.013778814,0.055260144,0.0049950015,-0.019791652,-0.01406859,0.0013945436,-0.03303438,-0.01061302,-0.019835118,-0.041090135,-0.031266753,-0.027717005,0.014314899,0.02602182,0.0027401876,-0.017893624,0.0323679,-0.029962763,0.024978628,0.037815675,-0.013264463,-0.006889407,0.01569133,-0.022196786,0.002673177,0.015256668,-0.011670699,0.029788898,0.018777438,0.0144090755,-0.014539475,0.023500776,-0.015213202,-0.023413843,0.004462539,-0.07238586,0.01653168,0.029571567,0.0018545617,-0.055694807,0.036772482,-0.02848491,-0.020718932,-0.03784465,0.009352497,-0.03138266,0.005976615,-0.023167534,-0.04193048,0.04523392,-0.007758733,0.05227546,0.04361118,0.013800547,-0.053434562,-0.049754415,0.027745983,-0.0018264898,-0.004723337,0.03117982,-0.02332691,-0.030194584,0.012750112,-0.022530029,0.023776062,0.015763775,-0.021820078,0.015126269,-0.031324707,-0.004571205,-0.04966748,-0.022761848,-0.0025464003,0.1204306,-0.02263145,-0.019255567,0.024790276,-0.00750518,0.014800272,0.04140889,-0.026688304,0.08096322,0.011062171,0.0064475,-0.059867572,-0.032628696,-0.006523566,0.022834292,0.015053825,-0.009866849,-0.0478419,0.021892522,0.055376057,0.046219155,-0.0022856025,0.041553777,0.00018993864,0.04233617,-0.025992842,-0.043553226,0.021964965,-0.029991742,0.008294817,-0.021602748,-0.07006766,0.030716179,-0.0030172851,-0.03164346,-0.008925078,0.049174864,-0.003642113,-0.029615033,0.0090916995,0.043785043,0.021762123,-0.018907838,-0.018531129,0.0030027963,-0.0071357163,-0.0072914707,-0.018009534,0.043408338,0.023254465,0.050826583,0.007548646,0.005976615,0.007153827,0.012641447,-0.006733653,-0.013786059,-0.010670975,0.012337183,-0.04676973,-0.019806141,0.027470697,-0.0021715036,-0.04337936,0.03010765,-0.022935713,-0.02800678,0.06780741,-0.012764601,-0.021197062,0.052362394,0.01618395,-0.028992016,-0.013228241,0.025485735,0.009591562,-0.012163318,-0.028340023,-0.0025427782,-0.0039952765,0.01700981,0.049551573,-0.009004767,0.008352772,0.02778945,0.01955983,0.057752214,0.005875194,-0.012286472,-0.024428057,-0.023124067,-0.019791652,-0.015488489,-0.023167534,0.035729293,-0.016285371,0.035729293,0.013959924,-0.02273287,-0.0016127805,-0.030339472,-0.044393573,0.020139381,-0.047754966,0.014850983,-0.019241078,0.023008157,-0.0043140296,-0.0070632724,-0.050015215,-0.079804115,0.027122967,0.0060599255,-0.030716179,0.045755517,0.003700068,0.016575146,0.005672351,0.018429708,-0.006809719,0.019038236,0.009895826,-0.0022348918,-0.032194033,0.015879685,-0.010062447,0.057926077,0.049986236,-0.015662353,-0.019545343,-0.026470972,-0.026398528,0.05746244,-0.007186427,-0.043814022,0.019038236,0.0037960561,0.043756068,0.00466176,-0.04161173,0.0061722132,0.000006650116,0.020197337,-0.014017879,0.0043321406,0.009432185,0.012569003,-0.0033233603,-0.0070705167,-0.011018705,0.028876107,-0.027572118,0.003716368,-0.009316275,0.026065286,-0.015227691,-0.017763225,0.053057853,0.029455658,0.02603631,0.013083354,-0.010373955,-0.016908387,0.043350384,-0.13654211,-0.03213608,0.05004419,-0.007896377,0.012221272,-0.009888581,0.00466176,-0.041698664,0.0073639145,0.03952535,-0.025601646,-0.003205639,0.053144787,0.019356988,0.04523392,0.0085845925,-0.029252814,-0.01616946,0.041553777,0.020921776,-0.0042270967,0.038511135,-0.044596415,0.02345731,0.028166156,-0.037409987,-0.004987757,-0.028035758,0.020617511,0.019487388,-0.00577015,0.03375882,0.030716179,0.018704994,0.017763225,0.02297918,0.023239978,0.060447123,-0.009627784,0.028861618,-0.012931222,-0.0056614843,0.024688853,-0.040829338,0.06595285,-0.0321071,0.043466292,0.020240804,-0.018154422,-0.035555426,-0.0529999,0.017777713,0.011366435,0.0079398425,-0.012090874,0.0019270056,-0.053289674,0.031962212,-0.0080774855,0.01616946,0.041264,-0.02826758,0.030948,-0.0808473,-0.017227141,0.022022922,0.0018744839,0.0005080123,0.018589085,-0.009214854,0.04876918,0.0028180645,-0.024471523,0.033729844,-0.036859415,0.0049442905,0.019907562,0.0076790447,-0.050449878,0.0219215,0.015126269,0.035816226,0.009077211,0.03891682,-0.10594184,-0.05653516,-0.011482346,0.018053,-0.05331865,-0.010924528,0.030919023,0.03972819,0.0037199901,-0.02697808,-0.0053427317,0.016502703,0.011533056,0.058302786,-0.03036845,0.0009906692,-0.02883264,-0.016010083,-0.015126269,0.049899302,-0.0044480506,0.0065887654,0.024804763,0.0046182936,0.020226315,0.005824483,0.009019256,-0.035932135,-0.021515815,-0.027383763,-0.013996146,-0.023268955,-0.015560932,-0.024761297,-0.0016933742,0.053115807,0.015778264,-0.036163956,-0.057230618,0.011764877,0.007128472,0.018371753,-0.004437184,-0.018907838,-0.007773222,-0.014112056,0.022211276,-0.037409987,-0.011815587,-0.041669685,-0.0013872992,-0.0029122415,0.058418695,0.0049768905,0.047320303,0.015981106,-0.013293441,0.015387068,-0.04033672,-0.036395773,0.053376608,0.027238876,-0.040017966,-0.0018355453,-0.031585507,0.029151393,-0.040133875,0.017531404,-0.013518017,0.02168968,0.017995045,-0.020849332,0.0098378705,-0.006907518,-0.02144337,0.012047407,-0.04195946,-0.03787363,-0.015387068,-0.0055129747,0.024225213,-0.0016997132,0.01874846,-0.006074414,-0.0056940843,-0.020066937,0.027876383,-0.019197613,-0.014198989,-0.020255292,0.004911691,-0.015227691,0.002732943,-0.02567409,-0.013365884,0.012670424,-0.039003752,0.021370927,0.014756806,0.019603297,-0.07458816,-0.013604949,0.047957808,-0.042191282,0.010337733,0.019284545,-0.016328838,-0.028571842,0.0084469495,0.010692708,0.0010323244,-0.008135441,0.026775235,-0.0036185689,-0.02590591,0.037062258,-0.0009761805,0.044161752,0.02706501,0.011496834,0.010533331,0.0065525435,-0.037815675,0.022993669,0.031875283,-0.019328011,0.023066113,0.003547936,0.020632,-0.008997522,-0.014358365,-0.015314624,-0.00073032425,0.035555426,-0.0029049972,-0.0077877105,-0.003814167,0.016792478,0.0047486923,0.008780191,-0.01783567,-0.02226923,0.01616946,0.02461641,0.008613571,-0.0061577247,0.0086497925,0.042220257,0.010460888,0.012837045,0.043495268,-0.02625364,-0.03645373,0.014807517,0.035381563,0.06247555,0.026528927,-0.016125994,0.021052174,0.029165883,0.025442269,0.003167606,0.0010268912,-0.04077138,-0.018386241,0.0049153133,-0.024065837,-0.040916268,0.020356713,0.03880091,0.00068731076,-0.0070524057,-0.019313522,-0.032194033,-0.02097973,0.048247583,-0.03969921,-0.024065837,0.02225474,-0.007128472,0.034859966,0.006545299,-0.008338284,-0.013916458,0.0072516263,0.01664759,-0.011989452,0.015488489,-0.025471248,-0.049406685,0.0029104305,-0.032802563,-0.0057013286,-0.009794405,0.04007592,0.011062171,0.017386517,0.03601907,-0.023312422,0.008555615,-0.011996697,-0.018053,0.02577551,-0.0072697373,0.023500776,-0.012069141,-0.019878585,0.06490966,0.020689955,-0.0013682826,-0.005893305,-0.017227141,-0.027108477,-0.0045929383,-0.013583216,0.0050384677,0.0040930756,0.0057013286,0.008816413,0.017140208,0.016473725,0.031730395,0.008896101,-0.0090265,0.028513888,-0.0029484634,0.010258045,-0.01119257,-0.0073276926,-0.023109578,-0.0048247585,0.021704169,-0.013300685,-0.0036457353,-0.021240529,0.020994218,-0.009939292,-0.042973675,-0.002160637,0.023022646,0.007454469,-0.0026677437,0.029672988,-0.013974413,0.009106188,-0.018531129,0.02134195,0.01236616,0.009098943,-0.036482707,-0.01922659,-0.034309395,-0.01001898,0.031556528,-0.0077877105,-0.010439155,0.018878859,-0.0146119185,0.04291572,0.031150842,-0.020892797,0.014640896,-0.01783567,0.008917835,-0.022718381,0.03178835,0.014090323,-0.0010522464,0.050218057,-0.024355613,0.023790551,0.0017495182,0.011301236,0.025123516,0.01700981,0.005331865,0.0014099379,0.015213202,-0.000082744424,0.018458685,-0.036048044,0.006581521,-0.0077514886,0.020603022,0.0093959635,0.021081151,-0.0097002275,-0.012757356,0.023428332,0.006288124,0.01735754,-0.0069292514,0.036395773,-0.045871425,0.012228517,0.035207696,-0.0032273722,0.007983309,-0.032020167,-0.0055673076,0.007418247,0.012047407,-0.040974226,0.02074791,0.024674365,-0.023747085,0.05798403,0.00046409323,-0.010837596,-0.0064185224,0.01306162,0.059577797,-0.023660151,-0.00076518784,0.0050203567,0.022718381,-0.0424231,-0.0077442443,0.007925354,0.030194584,0.031324707,0.0017123908,0.00076337677,0.003944566,-0.005139889,-0.014546719,-0.0027890871,-0.025485735,-0.02225474,0.021385416,0.031498574,-0.0033867485,-0.051753864,-0.014227966,-0.010156623,0.011047683,-0.029368725,0.019632274,-0.011511323,0.00489358,0.011424391,-0.027282342,0.03561338,-0.042596966,0.007773222,0.01312682,-0.010808618,-0.10849187,0.02086382,0.025471248,0.005896927,0.0060961475,-0.011228792,-0.017125718,0.034251437,0.0098378705,0.0013592271,-0.008830901,-0.008635303,0.021950478,-0.044799257,0.018603573,-0.0091931205,-0.010171113,0.018081978,-0.006726409,0.0029267303,-0.019052725,0.005704951,-0.011750388,0.05215955,-0.0025862444,-0.009439429,-0.04227821,0.019487388,0.036830436,-0.015865197,0.016241904,-0.00542242,-0.018980281,0.021139106,0.028934062,0.015053825,-0.010192845,0.0064438777,-0.02168968,-0.031585507,0.008403483,-0.022312697,-0.005440531,-0.019168634,-0.033584956,-0.03283154,0.023790551,0.005382576,-0.017270606,0.028702242,-0.020530578,-0.041640706,-0.016806966,-0.055289123,0.059461888,0.016937366,-0.008555615,0.0016707355,-0.007693534,-0.04137991,-0.0013882047,-0.023660151,0.014771295,-0.024413567,0.009012011,-0.036077023,-0.026369551,-0.054680597,-0.0031983946,-0.022240253,0.005972993,0.01945841,0.019400455,0.014771295,0.044944145,0.021631725,0.05378229,-0.006896652,0.002008505,0.01365566,-0.0044589173,0.038598068,-0.017125718,-0.004285052,-0.013749837,0.0074073807,0.010076935,0.0050964225,-0.0029086194,0.010497109,0.018922325,-0.01698083,-0.015778264,-0.0053391093,0.03164346,0.032309942,0.017429983,0.014343876,0.0088888565,0.012626958,0.0450021,0.026572393,-0.02228372,-0.025282893,-0.03552645,-0.004911691,0.010881062,0.011170837,0.030397426,0.02918037,-0.02532636,0.017067764,0.018096466,0.043843,0.025166983,0.009794405,0.02215332,-0.017328562,-0.0011382735,0.002598922,-0.02003796,0.011004216,-0.028412467,-0.0016327025,-0.026050797,0.04048161,-0.0032110724,-0.0073059592,0.00007985799,-0.0040822094,-0.020718932,-0.031585507,-0.011714166,-0.0069002737,0.003832278,0.000602642,-0.0027003435,0.0013791493,-0.019501876,0.021631725,0.018444197,-0.017299585,0.012902244,-0.014626407,0.0026876656,-0.024167258,0.0010450021,-0.004212608,0.022530029,-0.0008340095,0.0056759734,-0.016502703,-0.02261696,-0.046972573,-0.023283444,0.0529999,0.02087831,-0.010316,-0.0032183167,0.035149742,-0.0016408525,0.083687104,-0.026862169,0.012735624,0.015981106,-0.0040822094,-0.029759921,-0.0045856936,-0.023211,0.02649995,-0.031904258,-0.00034365538,0.008570104,-0.03361393,-0.013170286,0.020646488,0.028774686,0.028905084,-0.0013429273,0.000026388227,-0.02486272,0.020950753,-0.024065837,0.026688304,0.042712875,0.0045494717,0.019530853,0.013858503,-0.030426404,-0.0089902785,0.04175662,0.054680597,0.02860082,-0.011909764,-0.0024196235,0.002696721,-0.007889132,0.031324707,-0.02438459,0.018067488,0.040162854,0.043350384,-0.014981382,-0.0010395688,-0.005929527,-0.024341123,0.0026623104,0.006682942,-0.01616946,-0.01816891,-0.0012732001,0.016430259,-0.014879961,-0.022602472,0.01734305,0.019980006,-0.036395773,0.0038793664,0.018053,0.002392457,-0.010699952,-0.017995045,0.03506281,0.041669685,-0.024051348,0.017995045,-0.036482707,-0.0036729018,0.0014950593,-0.0009653139,0.039090686,-0.03294745,0.013604949,-0.004151031,0.025224939,-0.007809444,0.008722235,0.008526637,0.026717281,-0.0037236123,-0.00061305583,-0.0046762484,-0.010069691,-0.024906185,0.017024297,-0.026528927,0.021255016,0.013590461,-0.0019324389,0.0024902562,0.005922282,-0.019849606,0.03471508,0.04326345,0.019617787,-0.023355888,-0.009627784,-0.00038938553,0.02531187,0.015140758,-0.0029919297,-0.021776613,0.014322143,0.0075776237,-0.012764601,0.021530304,-0.0372651,0.028615309,-0.0435822,-0.008135441,0.001129218,0.008903345,0.01783567,-0.004813892,0.0070994943,-0.030542314,0.015995596,0.014677118,-0.023008157,-0.022327185,-0.011989452,0.0025699446,-0.055289123,-0.01347455,0.017777713,-0.0008439705,-0.02848491,-0.019806141,0.021573769,-0.052188527,0.030165607,-0.008367261,-0.007454469,-0.00036108715,0.01112737,-0.00932352,0.0057955054,0.027383763,-0.0018183399,-0.023211,-0.019777162,-0.0031549283,-0.018371753,-0.02145786,-0.021066662,0.02228372,0.009917559,0.052912965,-0.027282342,-0.0010757907,-0.0093959635,-0.0055057304,0.015082804,0.003944566,-0.00020499337,0.027180921,4.244755e-8,-0.027340299,-0.02848491,0.013923702,0.0036077022,-0.00937423,0.013249975,-0.01572031,-0.0022421363,-0.01616946,0.017748736,0.0056977062,0.011025949,0.005933149,-0.0021153595,-0.031469595,0.04407482,0.004205364,-0.0024920674,0.021776613,-0.026268128,0.022341674,-0.016039062,0.015445023,-0.010330489,-0.0027347542,-0.009772671,-0.008700503,0.01793709,-0.017241629,0.011547545,-0.0015068315,-0.007371159,-0.014756806,0.10507251,-0.015488489,-0.017661802,0.047754966,-0.036656573,0.003908344,-0.006038192,0.030571291,-0.009613295,0.03880091,-0.015923152,-0.0054550194,0.034830987,-0.0074399803,0.001994016,0.0025735667,0.0018264898,0.013880236,0.013286197,-0.032744605,0.016314348,-0.0052014664,0.022472072,-0.0024703343,0.0055057304,-0.029035483,-0.007226271,0.030049697,0.023703618,0.04456744,0.033382114,0.02873122,-0.010598531,0.008925078,-0.026891146,0.016154971,0.021718657,-0.033700865,0.0052195773,-0.030976977,0.0069002737,-0.017285096,0.034859966,0.008743969,-0.006617743,0.018212376,-0.015082804,0.008541127,-0.0009761805,-0.026297107,-0.019530853,-0.040742405,-0.0050384677,-0.01840073,-0.005161622,-0.019023746,-0.0031024066,0.03422246,0.023732595,0.009932048,-0.022109853,0.016821455,-0.0031911503,0.018154422,0.045378808,0.041437864,0.012750112,0.012822556,0.0053173765,-0.00039029107,-0.014467031,-0.013300685,0.013851258,0.0024956896,-0.053521495,0.026079776,-0.0010866573,-0.016270882,-0.0032581608,0.0044878945,0.011040438,-0.010316,0.005599907,0.006755386,-0.028122691,0.02263145,0.020704444,-0.024935164,-0.017531404,0.00070270506,0.0030806735,-0.012684912,-0.0040713428,-0.047436215,0.007903621,-0.009439429,0.0056252624,0.014735073,0.0022656803,-0.0043502515,-0.0014389154,-0.013713615,-0.029107926,-0.0075196684,-0.014937916,0.0009988191,0.02180559,0.014836494,-0.017734246,-0.003031774,-0.019241078,-0.009497385,0.01992205,-0.011286747,0.006197569,-0.013880236,0.029730944,-0.03422246,0.010707197,0.013880236,-0.0033523377,0.030426404,0.0063569453,-0.017618338,-0.0042198524,0.002598922,0.010352222,0.0012550892,0.03798954,0.024123792,0.0006782553,0.023732595,0.017241629,0.019951029,0.00618308,0.008512149,-0.02086382,-0.0072769816,-0.010569553,0.00808473,0.03541054,0.0023652907,0.004310407,0.008903345,-0.015198713,0.038047493,0.00014228419,-0.054593664,-0.027340299,0.0045820717,-0.033382114,0.016676567,0.008714992,-0.0040496094,0.0044299397,-0.01043191,-0.020008983,-0.013496283,0.0020193714,0.018183399,0.008664281,0.0024341124,-0.008157174,0.0007991459,-0.0010142134,-0.00032011114,-0.00808473,0.0042633186,-0.025804488,0.0045603383,-0.03668555,-0.005328243,-0.007066895,0.024326636,0.032802563,-0.0014017879,0.0072154044,-0.018618062,-0.010678219,-0.0039192108,-0.0018980281,-0.028151669,0.011228792,0.006030948,-0.0006248279,-0.008657036,-0.031933237,-0.004035121,-0.007925354,-0.023037136,-0.01259798,0.021124618,-0.01700981,-0.017589359,-0.016227415,0.041321956,0.00045096278,0.018603573,0.011409902,0.038713977,-0.028687753,-0.008599081,-0.012177806,-0.030049697,0.02096524,0.008859879,-0.027948827,0.00039527158,-0.025036585,-0.003904722,-0.005386198,0.022080876,0.010670975,0.013184776,0.00500949,0.030252539,0.0037489678,0.00448065,-0.04068445,0.0410032,-0.0076500676,-0.013322419,-0.0034682478,-0.026702791,-0.0041039423,0.01664759,0.028209623,-0.014937916,-0.00762109,-0.022689404,-0.007780466,0.01616946,-0.0065090773,0.0016308915,0.026224663,-0.014568452,-0.049261797,-0.011351947,-0.023022646,-0.000045984845,0.025224939,0.02226923,-0.023616685,-0.031353686,0.038308293,0.0072552487,0.009388719,-0.0072371378,-0.01330793,0.018255843,0.01654617,0.013047132,0.00914241,0.0025264781,0.0023616685,-0.009874092,-0.011728655,-0.040510584,0.03396166,-0.01353975,0.020588534,0.0010757907,-0.006349701,0.009214854,-0.014343876,-0.007262493,-0.019154146,0.005574552,0.014387343,-0.029136904,-0.054072067,0.009577073,0.00042606023,0.026094263,0.029325258,0.023602197,-0.018589085,-0.0058498383,0.029571567,-0.027180921,0.013249975,0.018603573,0.04175662,-0.0028361755,-0.002048349,-0.010236312,0.016604124,-0.023819529,0.054419797,0.0089613,-0.008157174,0.018777438,-0.0007502463,-0.034628145,0.039554324,0.040568538,-0.021139106,-0.015502977,-0.015647866,-0.011359191,0.0095988065,-0.024442544,0.039931033,-0.026717281,0.019429432,-0.009765427,-0.002787276,-0.020704444,-0.015111781,-0.014981382,-0.022848781,0.009859604,-0.0069727176,0.057491414,-0.004328518,0.029788898,0.017690782,0.01770527,-0.015633376,-0.03549747,-0.01177212,-0.012286472,-0.017545894,-0.0039409436,0.019545343,-0.014937916,-0.012243005,0.017516915,0.042828787,0.024297656,-0.022443095,-0.0033034382,-0.028151669,-0.022211276,0.0153580895,0.0020682712,0.006422145,-0.025094539,0.0046110493,-0.0024775786,-0.04485721,0.017256118,-0.004382851,-0.047581103,-0.0043937177,0.038366247,0.01464814,0.017574871,0.03798954,-0.048479404,0.026673814,-0.018154422,-0.0426839,0.0018246787,0.03526565,0.03329518,0.022182297,-0.016893899,0.011388169,0.034425303,-0.012967444,-0.055636853,0.045523696,-0.003904722,0.012090874,0.031150842,0.0017513294,-0.025138006,0.017067764,0.056766976,0.0021171707,0.04561063,0.012873267,0.035468493,-0.03668555,0.020443646,0.019748185,0.0037236123,-0.013554239,-0.032251988,0.036424752,-0.005480375,0.0072407597,-0.018313797,0.01178661,0.014640896,-0.0068314523,-0.017661802,0.024558455]},{"id":"interface-MessageCollectorEvents","type":"interface","source":"main","text":"Interface: MessageCollectorEvents\nProperties: collect: [message: Message], end: [collected: Collection, reason: MessageCollectorEndReason]","meta":{"url":"/docs/typedefs/MessageCollectorEvents"},"embedding":[0.0044518122,-0.027073791,0.0141659565,0.011831175,-0.03280792,0.0025721916,-0.016972532,-0.012907836,-0.004046552,-0.0234325,0.011480352,-0.053470135,0.013718355,0.043719698,0.025960838,0.016137818,-0.005310721,0.039582416,0.0027264324,0.049453825,0.046114966,0.014891795,0.046308525,0.021847751,-0.051437784,-0.0040132846,-0.0006925713,0.068422414,0.01423854,-0.009883506,0.051824898,-0.024013171,-0.034961242,0.02100094,-0.011661812,0.06019624,0.021242885,0.009629463,-0.0045848824,0.0315498,0.00211703,-0.020577533,-0.03834849,-0.017565303,0.0014539461,-0.002464828,0.03730812,0.00340237,0.017928222,0.05961557,-0.011329136,-0.03771943,0.0477602,0.04713114,-0.014008692,-0.07418074,-0.040526006,0.0012687059,0.009133473,-0.03554191,-0.010536762,-0.015266812,0.024049463,-0.011038801,0.009127424,0.003732022,-0.01221224,0.067793354,0.018980687,0.02942067,0.012919933,0.030582013,-0.05501859,0.00621802,-0.031961106,0.0138635235,0.010349253,0.002611508,-0.004923607,-0.01883552,-0.012272727,-0.025017248,-0.04812312,-0.030122316,-0.009629463,-0.045897216,0.020613825,0.024678523,-0.0039981627,-0.020335587,-0.04609077,0.033606343,-0.016512835,0.006381334,0.03343698,-0.039534025,-0.01766208,-0.019621845,-0.035929028,0.0238801,0.031525604,-0.073116176,-0.026783457,0.00030470113,-0.008824992,-0.018799229,-0.019391997,-0.021932432,-0.07103544,-0.020807382,-0.04858282,-0.011159773,-0.016379764,0.01608943,-0.01442,0.0038227516,0.00061204855,0.01784354,0.024279311,0.026710872,-0.019936375,0.021279179,-0.04205027,0.039074328,-0.038856577,-0.0074700923,0.017904026,-0.039921142,0.013984497,0.027243154,0.04185671,0.0056917868,-0.009756485,-0.006538599,0.025670502,-0.05376047,-0.015278909,0.016428154,-0.050663557,-0.027243154,-0.016609615,-0.009617366,0.006224069,0.0130892955,-0.0037017786,0.02460594,-0.03757426,0.00978068,0.05559926,-0.008056812,0.013198171,0.015351493,-0.016512835,0.020178322,0.02303329,0.00050241663,0.0143232215,0.026154395,0.01171625,-0.02487208,0.024968859,-0.012097315,-0.06169631,-0.0018902055,-0.07272906,-0.013476409,-0.00014450621,0.0073612165,-0.03459832,0.03595322,-0.020008959,-0.017383842,-0.033195034,0.0015650901,-0.026396342,-0.01630718,-0.032469194,-0.016113624,0.005649446,0.01590797,0.024388188,0.026952818,-0.017940318,-0.061938256,-0.017674178,0.035178993,-0.014879698,0.023226846,0.010077064,-0.034719296,-0.010736368,0.02879161,-0.021593709,0.05622832,0.019186342,-0.011123481,-0.0021926383,-0.019984765,-0.012333213,-0.0590349,-0.018666157,-0.0068349834,0.10161745,-0.007155562,0.007972131,0.021025134,0.030243289,0.023988977,0.031840134,-0.04906671,0.05250235,0.03798557,0.005525449,-0.046647247,-0.031186879,0.01392401,-0.0064055286,0.022803439,-0.032565974,-0.037066173,0.030630402,0.048679598,0.08284242,0.0051655537,0.022755051,0.025912449,0.0011636105,-0.04880057,-0.037114564,-0.003154375,-0.056034766,-0.010246426,-0.035275772,-0.046961777,0.015327298,0.0030969128,-0.048607014,0.026928624,0.054534696,-0.019162148,-0.0011847808,-0.022101795,0.027557684,0.02825933,-0.014299027,-0.0075850165,0.0152547145,0.00689547,0.01956136,-0.0085649,0.04006631,0.016887853,0.008304807,0.008498364,0.025235,0.009000403,-0.025041442,0.010458129,-0.03542094,0.0044003986,0.04780859,-0.029904563,-0.04609077,0.013307047,0.0023589765,-0.042243823,0.035904832,-0.019210536,-0.015944261,0.062760875,-0.007385411,-0.008498364,0.057389665,-0.0027521392,-0.022742953,-0.0022682466,0.010518616,0.010615394,0.008141493,0.0032995427,-0.005591984,0.0016180159,0.033461176,0.02825933,-0.002383171,0.02181146,0.03646131,0.025355972,0.047276307,0.034307986,0.029904563,-0.0022712708,0.009006451,-0.028380303,-0.005371208,-0.0014841894,0.060534965,-0.013500604,0.05177651,-0.017311258,-0.034090236,-0.016996728,-0.0043610823,-0.056276713,0.03614678,-0.027049597,-0.005086921,-0.035566106,0.027460907,-0.017964514,0.0030016464,-0.033170838,-0.06348671,0.0085951425,-0.007282584,-0.013948205,0.022779245,0.02784802,0.023166358,-0.0034749538,0.025839865,-0.015883775,0.023553474,0.019077467,-0.023589766,-0.020904161,0.013258657,0.00041697934,0.026372148,0.06034141,-0.009841166,-0.038251713,-0.030001342,-0.012581208,0.061841477,-0.026831845,-0.025307585,-0.020323489,-0.0069317617,0.047615033,0.021363858,-0.036025804,-0.024823692,-0.0011870491,-0.006066804,-0.0074096057,-0.010028674,0.04488104,-0.023226846,-0.004790537,-0.0033539806,-0.0063692364,-0.00959922,-0.02469062,-0.0022017113,-0.039001744,-0.0024028292,0.012242483,-0.017964514,0.04812312,0.011800931,0.0410099,0.026057618,-0.011329136,-0.033170838,0.005740176,-0.14545812,0.013101392,0.042413186,-0.030678792,0.03803396,-0.03239661,0.008329001,-0.027243154,0.024654329,0.026299564,-0.033098254,0.00032587143,0.05322819,0.0071071726,0.00020130689,0.037525874,-0.027025402,-0.022658272,0.023372013,0.034211207,-0.013040906,0.032203052,-0.022464715,0.045945603,0.05966396,-0.010893633,-0.018436309,-0.021412248,0.022271158,0.011371477,-0.01446839,0.03239661,0.02487208,0.016246695,0.014891795,0.006199874,0.040259864,0.035396744,-0.0016543078,0.036848422,-0.012798959,0.03353376,0.042292215,-0.05768,0.045800436,-0.013270755,0.029081946,0.006574891,-0.010427886,-0.020117836,-0.064406104,0.013077198,-0.0023393184,-0.006665621,-0.012859446,-0.026009228,-0.046211746,0.036195166,0.006822886,-0.01977911,0.026444731,-0.030606208,-0.017541107,-0.04947802,-0.035299968,0.0428003,0.025694698,0.0041433307,0.054728255,-0.054679867,0.054534696,0.0010925388,-0.04790537,0.02925131,-0.014988573,-0.0032723239,0.01640396,0.04713114,-0.044034228,0.0074700923,0.007264438,0.02779963,0.013512701,0.008371342,-0.09155248,-0.025888255,-0.00040526007,0.029952953,-0.062954426,-0.02978359,0.02267037,0.04299386,0.014407903,-0.038590435,-0.019863792,0.02946906,0.021170301,0.050760336,0.015351493,0.031477213,-0.055405702,-0.035130605,0.0039104572,0.055454094,0.025476946,0.0016694295,0.01523052,0.013899815,0.05114745,-0.0072462917,0.05376047,-0.020662215,-0.009097181,-0.02487208,-0.0029729153,0.0037259732,0.014661946,-0.019851694,0.009018549,0.04451812,0.013996594,-0.048195705,-0.018714547,0.020420268,0.0016527957,0.006822886,-0.021738876,-0.012544916,0.0023302455,-0.018145973,0.00089898176,-0.05366369,0.0068107885,-0.027727047,-0.00066195,-0.030291678,0.048147313,0.01676688,0.044131007,0.029493256,-0.04018728,0.0070224917,-0.012774765,-0.017274966,0.06106725,0.024001073,-0.046477884,0.01504906,0.00833505,0.01761369,-0.029759396,0.019488774,-0.017746761,0.033412784,0.025355972,-0.0052109184,0.0095205875,0.007004346,-0.017988708,-0.015315201,-0.04555849,-0.010071015,-0.0046151257,0.0057734437,0.017577399,-0.020444462,-0.023988977,0.0052109184,-0.00031112783,-0.0043641063,0.006115193,-0.0143353185,-0.0059397817,-0.009786728,-0.018218556,0.011147676,0.005885344,-0.008189882,-0.029735202,0.037114564,-0.022767147,0.05158295,0.0002842869,0.033195034,-0.036025804,-0.020916259,0.06290604,-0.039945334,0.02758188,-0.005933733,0.0008339587,-0.023601862,0.009605268,-0.002978964,-0.0043520094,-0.011256552,0.026517315,-0.021025134,-0.023130067,0.03667906,0.026710872,0.02406156,0.0031513507,0.0150974495,0.0031513507,-0.008062861,-0.027073791,0.003054572,-0.0007065588,-0.002640239,-0.031840134,-0.019537164,-0.011722298,0.012895738,-0.0056857383,-0.024509162,-0.009708095,0.047155336,-0.018593574,-0.011087189,0.021339664,0.038372684,0.024182534,-0.018508893,-0.0096778525,-0.017492717,0.012907836,0.015956359,-0.01175859,-0.007560822,0.024460772,0.041155066,0.009647609,0.002345367,0.04231641,0.014976476,-0.04110668,0.001342802,0.04870379,0.052744295,0.009829069,-0.017238675,0.002097372,0.04817151,0.017819345,0.0056433976,-0.008885478,-0.03522738,-0.00018609074,-0.021545319,-0.024497064,0.00068727875,0.012333213,0.010754514,-0.012714279,0.0076394547,-0.03428379,-0.002224394,0.028307717,0.026638288,-0.033146646,-0.022222769,0.018012902,-0.023275234,0.032565974,-0.0077846223,-0.005549643,-0.01865406,0.013065101,0.008093104,0.009611317,0.034622516,-0.024702718,-0.025041442,0.0012974371,-0.008050763,0.0061030956,-0.012448138,0.043501947,0.006296653,0.004258255,0.047300503,-0.047300503,0.025452752,-0.028452886,-0.04226802,0.021509027,-0.018363725,0.011552936,-0.01784354,-0.0032511535,0.02910614,0.021327566,0.012224337,-0.02149693,0.022174379,-0.016597517,0.015315201,-0.016609615,0.029686812,-0.013379631,-0.0014380683,0.023480888,0.04069537,0.010246426,0.048026342,-0.0066353776,0.0003468527,0.023855906,-0.014250637,-0.0008452999,-0.013270755,0.01387562,0.0062845554,-0.028501274,0.025888255,-0.045800436,0.00010963192,-0.025815671,-0.021509027,-0.017250773,-0.041614763,0.0056343246,0.030823959,0.019391997,-0.02040817,0.048824765,0.017468523,0.013839329,-0.008141493,0.01585958,-0.0012936566,0.009030646,-0.03046104,-0.020674312,-0.040550202,-0.010179891,0.033412784,-0.0041977684,0.0093754195,-0.0050899456,-0.037816208,0.014589362,0.011202114,-0.02852547,0.001820646,-0.026154395,-0.0021956628,-0.023819614,0.024847886,-0.008232223,0.012544916,0.035856444,-0.008474169,0.023638153,-0.0017707446,-0.011637617,0.029662617,-0.011897709,0.008522559,0.015968457,0.038880773,-0.022271158,-0.017178187,0.0029986221,-0.0046030283,-0.015835386,0.0068773236,-0.004636296,0.023093775,0.006538599,-0.009248397,0.0066232802,0.008274564,0.020117836,0.0062785065,0.035880636,-0.06019624,0.023468792,0.019488774,-0.0037955327,0.025380168,-0.043066442,0.0040495764,-0.012508624,0.0073551675,-0.040453423,0.03568708,0.032057885,0.0017646959,0.028694833,0.0018357676,-0.030243289,-0.036533892,0.01504906,0.054921813,-0.02429141,-0.0017480621,-0.012169899,0.0015892849,-0.008837089,0.00000663344,0.010621442,0.015266812,-0.0006952176,0.017383842,-0.006574891,0.0016694295,0.024351895,-0.0005160261,0.008710067,-0.05385725,-0.027920604,0.012629597,0.037792012,-0.008601191,-0.02131547,-0.03699359,-0.0060214386,0.0036201216,-0.03626775,-0.004028406,-0.025114026,-0.018811325,0.003568708,-0.0459698,0.04352614,-0.036872618,0.00028806733,-0.0047875126,-0.008818943,-0.08545543,0.008837089,0.02717057,-0.019658137,0.0014471414,-0.017432231,-0.014528876,0.02014203,-0.016186208,-0.00932703,-0.020033155,-0.011044849,0.016803171,-0.049598992,-0.001572651,-0.01446839,0.00838344,0.022900218,0.032832112,-0.006732156,-0.015484564,0.04122765,0.0024073657,0.07021282,-0.011401719,-0.0007647771,-0.02925131,0.02293651,0.045703657,-0.01437161,-0.0026719945,0.0012808032,-0.034017652,0.012641694,0.029009363,0.0048056585,-0.008068909,0.025210805,-0.013718355,-0.02487208,0.00092015206,0.0037259732,-0.032735337,-0.008431829,-0.0035082214,0.006411577,-0.0012535843,0.012823154,-0.030727182,0.028815806,-0.0115347905,-0.03851785,-0.032348223,-0.033412784,0.09005242,0.028549664,-0.016924145,-0.010282718,-0.004551615,-0.033775706,0.0029865247,0.0043368875,-0.0073612165,0.0037743624,0.0050113127,-0.042558357,-0.033485368,-0.017262869,0.00024156827,-0.017504815,0.009200009,0.035590302,0.026372148,-0.015617634,0.022452617,0.0054075,0.038154934,-0.015786996,-0.014891795,0.011353331,-0.016549127,0.034428958,-0.0041161114,0.005785541,-0.0036715353,0.026033422,0.01428693,-0.0038136786,0.0023196603,0.007185805,0.024751106,-0.015871678,-0.02113401,-0.00022795878,0.036921006,0.016174112,0.012175947,0.012738473,0.007893498,0.0018932299,0.029372282,0.014964379,-0.0015295543,-0.008329001,-0.026396342,-0.023843808,0.005032483,0.019234732,0.040864732,0.011020654,-0.02654151,0.016488642,0.0069922484,0.02779963,0.017057214,0.0010335643,0.03996953,-0.01360948,-0.0106093455,-0.009429857,-0.008389488,0.03014651,-0.015375688,-0.009907701,0.00730073,0.04258255,-0.013137684,0.023154262,-0.019573456,-0.023783322,-0.032275636,-0.017674178,0.008552802,0.025065638,-0.028041577,-0.0059004654,-0.01212151,0.0016074307,-0.0050082887,0.027388321,0.0003992114,-0.028331913,0.01739594,-0.015399883,0.0025918498,-0.030727182,0.005168578,-0.0016588444,-0.008728213,-0.0050264345,0.015424077,-0.011927953,-0.031090101,-0.04294547,-0.051195838,0.041808322,-0.023541376,-0.004875218,0.0012815594,0.013077198,-0.00450625,0.054776642,0.008673775,-0.006205923,-0.002437609,-0.025815671,-0.027460907,-0.005262332,-0.01829114,0.051002283,-0.0043520094,-0.008982257,0.019065369,-0.014516778,-0.016887853,0.01896859,0.030630402,0.026226979,-0.008304807,0.024593841,-0.03667906,-0.0041130874,-0.015738606,0.018726645,0.038687214,0.005861149,0.0033902726,0.022912316,-0.042558357,-0.012145705,0.007863255,0.05322819,0.020178322,0.013669967,0.0057704193,0.003937676,-0.027460907,0.032832112,-0.01941619,0.0008891527,-0.008480218,0.051389396,-0.030872349,-0.011552936,0.0009594683,-0.031090101,-0.019367801,0.02040817,-0.022658272,0.010010528,0.013113489,-0.0067623993,-0.022416325,-0.009024598,0.03459832,0.008552802,-0.046961777,0.0016497714,0.04069537,-0.002492047,-0.014032885,-0.012363456,0.014274832,0.044372953,-0.016597517,0.036824226,0.009448003,-0.010663783,-0.017141895,-0.00561013,0.051728122,-0.016137818,0.023988977,-0.009998431,0.06556745,-0.013258657,0.0075668707,0.0045092744,0.034138624,-0.00038106545,-0.0141659565,0.0064236745,-0.0024875104,-0.030702986,0.007052735,-0.035614498,0.017020922,0.042727716,0.0070406375,0.018896006,0.01640396,0.011577131,0.046889193,0.055986375,0.008443926,-0.037211344,-0.029928759,0.010621442,0.0028020407,0.023795418,0.0026130201,-0.0075184815,0.0063027013,-0.018545184,-0.010107307,-0.003145302,-0.027146375,0.031090101,-0.021363858,-0.030170705,-0.020686409,0.0016361619,-0.001894742,-0.0039497735,0.002684092,-0.017020922,-0.010058918,0.006732156,-0.011686007,-0.003181594,-0.018859714,-0.002334782,-0.04079215,-0.01771047,0.018569378,0.03902594,-0.02847708,-0.027146375,0.019355705,-0.062518924,0.025501141,-0.003357005,-0.020263003,0.0052320887,0.00042643037,-0.009079035,-0.010784756,0.02100094,-0.0075366274,-0.02293651,-0.032106277,-0.02040817,0.0068531292,0.02009364,-0.013234463,0.01729916,-0.0034386618,0.046550468,-0.026952818,-0.0073551675,-0.03735651,-0.019791208,0.012357407,0.012369505,-0.023904296,0.030340066,0.0028942828,-0.051292617,-0.0046665394,0.01865406,-0.00220776,-0.0041433307,0.020795286,-0.020069446,-0.016694294,-0.010887584,0.024037365,-0.0151095465,0.02230745,-0.009230251,-0.0037048028,-0.022718757,0.019585554,0.0082927095,-0.005213943,0.03631614,-0.035154797,-0.008329001,-0.018145973,0.01883552,0.0017329404,-0.016258791,-0.037187148,0.0034658809,0.028186744,-0.03292889,0.026009228,-0.0044457633,-0.024569647,-0.0016603565,0.05758322,-0.004028406,-0.045921408,0.03699359,0.007857206,0.0019174245,0.012375553,0.00022909291,0.0017465499,-0.006009341,-0.004857072,0.007004346,0.03343698,-0.018315336,0.02920292,-0.019525068,-0.0072886324,0.005637349,0.027460907,-0.044663288,0.031186879,0.006118217,0.008764505,-0.02288812,-0.0058883685,-0.027630268,0.0051474078,-0.0023620008,0.01473453,0.032445,0.019549262,0.0090669375,-0.017178187,0.0045425417,-0.038106542,0.026081812,0.0052653565,-0.024182534,0.013319144,-0.026420537,0.026275368,0.0013170952,0.024763204,-0.010427886,-0.0012475357,0.011214212,0.0071253185,0.0062664095,0.0051746266,-0.033098254,-0.008099153,-0.023214748,-0.007996325,-0.021049328,-0.01775886,-0.007578968,0.025452752,0.052889463,-0.0017646959,0.0016180159,-0.012653792,0.029928759,-0.001112197,-0.003732022,0.044179395,0.02884,0.021388054,0.00721,0.028985167,0.015641829,0.00026689703,-0.0046241987,0.007760428,0.015956359,-0.024460772,0.034041844,-0.012411846,-0.015520856,-0.0021941506,-0.00096249266,-0.0008498364,-0.010125453,-0.013004614,0.01342802,-0.02825933,0.025138222,0.025065638,-0.033678927,-0.012992517,0.025864061,0.015472466,-0.0007579724,0.0238801,-0.03636453,0.0135489935,0.0044578607,0.0072160484,0.009925847,-0.013028809,-0.024158338,-0.0037017786,0.005746225,-0.010355302,0.005879295,-0.013282852,-0.0035898783,0.039993726,0.015520856,-0.02063802,-0.028017383,-0.010815,-0.0005878539,0.019234732,0.0007583505,0.008159639,-0.020601729,0.011788834,-0.02690443,-0.01703302,0.00014932624,-0.004693758,0.01662171,0.0048540477,0.008740311,0.013040906,0.008800797,0.005213943,-0.006732156,0.040114697,0.018896006,-0.011619471,0.04200188,0.0028080894,-0.005398427,0.0064176256,-0.00007782921,-0.014686141,-0.008619337,-0.007651552,0.026589898,0.027654463,0.0067744968,-0.019573456,0.009907701,0.0078027686,0.029807786,0.004802634,-0.054050803,-0.019525068,-0.0045002014,-0.052260403,-0.007349119,0.009314933,-0.0032541777,0.036509696,0.0071616108,-0.008062861,-0.015968457,0.023311527,0.027001208,-0.004330839,0.0093633225,-0.044010032,-0.016028943,-0.004110063,0.003081791,0.012181996,0.004651418,-0.013657869,-0.018896006,-0.04722792,0.0069317617,-0.009514539,0.004200793,0.018254848,-0.0014849454,0.0075668707,-0.0055435947,-0.020710604,-0.024944665,-0.010772659,-0.040985703,0.004572785,0.0121517535,-0.0068349834,-0.016706392,-0.022501007,-0.013851426,-0.008050763,-0.01504906,-0.0015786997,0.0039225547,0.010663783,-0.02946906,-0.02429141,0.033582147,0.005794614,-0.0028549663,0.010349253,0.030799765,-0.037695233,-0.021533221,-0.025114026,-0.021146107,0.004536493,0.011456158,-0.027993187,0.021037232,-0.042824496,-0.0020641044,0.0012997054,0.011631569,0.019525068,-0.00869797,0.014032885,0.008589094,-0.01797661,0.0028625273,-0.023335721,0.035662886,0.0010275157,-0.020879967,0.030944932,-0.05124423,-0.005655495,0.03261436,0.033485368,-0.0146377515,-0.005827882,-0.018545184,0.008891527,0.017456425,-0.01221224,0.011655764,0.021327566,-0.00369573,-0.04299386,0.029541643,-0.005162529,0.006962005,0.0038197273,-0.0014153859,-0.021557417,-0.03614678,0.008068909,0.026130201,-0.0043610823,0.0026417512,-0.009024598,-0.007070881,0.010107307,-0.008679824,0.012677986,-0.017020922,0.0009420784,0.015690219,0.0010328083,-0.012472332,0.004240109,-0.031743355,0.031090101,-0.0009065426,0.016162014,-0.0019355705,-0.028501274,0.015375688,-0.025743088,-0.0071132216,-0.0048600966,0.008583046,-0.049453825,0.031332046,-0.029662617,0.026977014,0.008667726,0.019210536,-0.008607239,-0.010899681,0.017637886,-0.040259864,0.039703388,0.009804874,0.029638423,-0.00029222577,0.0047875126,0.009593171,0.003955822,-0.021775167,0.04347775,-0.028452886,0.0054044756,-0.004221963,-0.0077120387,-0.040719565,0.051486176,0.027243154,-0.030243289,-0.014770822,0.0007012662,0.011583179,0.025743088,-0.030896543,0.042872887,-0.02779963,0.0056252517,0.0019582529,-0.007439849,-0.030412652,-0.035566106,-0.006816837,-0.018133875,-0.027025402,-0.01167391,0.03321923,0.007464044,0.042727716,0.002417951,0.013125587,-0.009054841,-0.032154664,-0.00014923172,0.0025132173,-0.0042884983,-0.0018781082,0.014008692,-0.009151619,0.008552802,0.026517315,0.016198305,0.023843808,-0.0052835024,0.0061030956,-0.047397282,-0.014867601,0.006484161,-0.0061696307,-0.0067744968,-0.011438011,-0.007663649,0.013682064,-0.011516645,-0.017093506,-0.018375821,-0.040864732,-0.0024270238,0.025138222,0.055889595,0.0063571394,0.019718625,-0.020129932,0.014565168,-0.007155562,-0.023468792,0.005870222,0.057438053,0.030025536,0.031186879,0.0017707446,0.021412248,0.009036695,0.008214077,-0.017190285,0.057970334,0.014311124,-0.0029018435,0.049139295,0.016791074,-0.027678657,0.018605672,0.04969577,-0.00024950714,0.03292889,0.015145839,0.04321161,-0.051824898,0.007603163,0.0060395845,0.0024406335,-0.02397688,-0.022730855,0.032324027,-0.018436309,0.021956628,-0.030001342,0.0022667344,-0.008867332,-0.008419732,-0.008401586,0.01243604]},{"id":"interface-MessageCollectorOptions","type":"interface","source":"main","text":"Interface: MessageCollectorOptions\nProperties: filter: (message: Message) => boolean, max: number, time: number","meta":{"url":"/docs/typedefs/MessageCollectorOptions"},"embedding":[-0.035482116,-0.011388575,0.0053772675,0.013417505,-0.028549938,0.019443909,-0.021786839,-0.012348694,-0.011285921,0.012252077,0.04463645,-0.050240163,-0.007946641,0.04893585,0.027197318,0.016086513,-0.009136221,0.015072049,0.03533719,0.040047206,0.0123547325,0.0011057968,0.056182027,0.009420031,-0.03867043,-0.018707214,0.022765074,0.05685834,0.018876292,-0.022016302,-0.000882373,-0.029781789,-0.017378747,0.042245213,-0.022728842,-0.008550489,0.028091013,-0.013151811,-0.022644304,-0.004341668,-0.032825183,-0.00020719538,0.009727993,-0.0050240164,-0.0057335375,0.021895532,0.020011526,0.0078983335,0.0030917022,0.038887817,-0.022644304,-0.011684461,-0.0013850766,0.0732347,0.027777012,-0.036085963,-0.039539974,0.016436744,0.043356292,0.0035234536,0.011521421,-0.011086651,-0.0008084016,-0.00093520974,-0.0044533797,0.03502319,-0.03243872,0.059563577,0.0040488015,0.04185875,0.0036140308,-0.024830233,-0.01590536,-0.0133812735,0.00803118,0.038187355,0.01911783,-0.026641779,0.01760821,-0.03149672,-0.010084263,0.0021406414,-0.052172475,-0.006666483,-0.010192956,-0.030699637,-0.013031042,0.015555127,-0.021291684,-0.034371033,-0.030071635,0.0034691072,-0.05251063,-0.007656794,0.013864352,-0.06168912,0.010706226,-0.02472154,-0.04014382,0.04456399,0.036472425,-0.06347651,-0.029153787,0.017982597,-0.017390825,-0.0060626348,-0.008176103,-0.02635193,-0.043791063,0.0064974055,-0.00480965,-0.020253066,-0.034032878,0.007282408,-0.012366809,-0.022801304,-0.025265004,0.015881205,0.03137595,-0.007131446,-0.030675484,-0.0633799,0.02456454,0.029805942,-0.020808605,-0.012197732,0.0022629208,-0.023103228,-0.06458759,0.04154475,0.0138401985,0.016907746,0.03765597,-0.010398264,0.042051982,-0.045336913,-0.0065577906,0.017946366,-0.009160375,0.0027339223,0.025772236,0.0041242824,0.01665413,0.02683501,0.0028758266,0.01280158,-0.028767323,0.043718603,0.024310924,0.0017904096,-0.023465537,-0.0027203357,-0.005787884,0.03668981,0.0041333404,0.009625339,0.053138632,0.031859025,-0.028018551,-0.02973348,0.02917794,-0.004229956,-0.03347734,-0.026545163,-0.025434082,0.02357423,0.017704826,0.012427194,-0.024359232,0.08951444,0.036110118,-0.05096478,-0.00024833254,-0.044539835,0.0012884609,0.0074152546,-0.034250263,-0.024298847,-0.032704413,0.018634751,0.060094964,-0.008635027,-0.0077292556,-0.049515545,-0.0027550568,0.02714901,-0.028091013,-0.0048036114,0.012264155,-0.05255894,-0.014033429,0.016026128,-0.0042722253,0.036544885,0.014613124,0.006231712,0.028453322,-0.010947766,-0.030675484,-0.06690637,-0.006744983,0.0113100745,0.06149589,-0.006654406,-0.0067087524,0.031182716,0.028284244,-0.00070687965,0.014516508,-0.033573955,0.03792166,0.045095377,-0.021062221,-0.027752858,-0.031424254,-0.018151674,-0.01904537,-0.035844423,-0.018465675,-0.029685173,-0.01844152,0.018187905,0.06874207,-0.029926712,0.02206461,0.0063887127,0.015639666,-0.009051683,-0.0335498,0.028453322,-0.023199843,-0.031158563,-0.035506267,-0.058694035,0.03946751,-0.008339142,-0.05072324,0.012366809,0.026400238,-0.04289737,-0.047293384,-0.048162926,0.010223148,0.05922542,-0.0430906,-0.0017934289,-0.018067135,0.00044194132,-0.042003673,0.024153924,-0.0021376223,0.0044503603,-0.00089369516,-0.03978151,0.035965193,-0.01764444,-0.0212313,0.01840529,-0.008037218,-0.019588832,0.0310861,-0.028115168,-0.014480277,-0.035675347,0.0029875385,-0.015398126,0.0434046,-0.019830372,-0.0031852988,0.017427055,0.025579005,0.0136107365,0.048114616,0.0014175334,-0.02961271,0.020663682,0.024310924,0.011177228,-0.018501906,0.003780089,-0.03214887,-0.018731369,0.036858886,0.0002532388,-0.005211209,-0.0065819444,0.071254075,0.0071374844,0.07676117,0.023670845,0.020603297,-0.011322152,0.05033678,-0.02357423,-0.018779676,0.023755385,0.03970905,-0.010289571,0.048332002,-0.022040455,0.021436607,-0.035530422,0.015277357,-0.08081903,-0.0031037792,0.043356292,0.027197318,-0.0035596846,0.028670708,-0.04185875,0.0039219935,-0.03668981,-0.062220506,-0.022487303,-0.014564816,-0.019226523,0.04185875,0.02098976,-0.0067751757,0.00043212879,0.026810855,-0.022088764,0.007934564,0.016195206,-0.011116844,-0.028139321,0.031786565,-0.01514451,0.03840474,0.032728568,-0.021050144,-0.020373834,-0.03871874,0.016424669,0.011273844,-0.0144682005,-0.008188181,-0.009444185,-0.043670293,0.035385497,-0.015361896,-0.020240989,-0.054587867,0.018344905,0.014456123,-0.01347789,-0.0026086238,0.017873904,0.016968131,-0.018912522,-0.014902971,0.019649217,-0.0016303898,-0.01852606,0.026424393,-0.028260091,0.011406691,-0.029347017,-0.052848786,0.014347431,-0.020965606,0.044539835,0.015047895,-0.013985122,0.001506601,-0.016303899,-0.12627672,-0.037897505,0.024105616,-0.0060203657,0.030603021,-0.012717041,0.00640079,-0.021448685,0.031593334,0.0053802864,-0.011853538,-0.011509345,0.03668981,0.0044533797,0.034926575,0.013502044,-0.037945814,-0.017632365,0.011026266,0.006642329,-0.009927263,0.024902696,-0.026182853,0.02516839,0.028235937,0.016207283,-0.033839647,-0.001017484,0.04197952,0.025989622,-0.0040216283,0.039539974,0.02241484,0.010549226,0.01816375,-0.0093415305,0.004302418,0.05584387,-0.024335079,-0.028115168,-0.015253203,0.018236212,0.04475722,-0.038525507,0.048162926,0.000522706,0.016364284,0.025047619,0.02062745,-0.02074822,-0.0794181,0.012584195,-0.010820958,-0.028839786,0.0043054367,0.024975156,-0.01335712,0.011068536,0.030264867,0.0036744156,0.057824492,-0.0041967444,-0.04301814,-0.008810144,-0.053186942,0.022281995,0.017813519,0.019105753,-0.0021315839,-0.040844284,0.030917022,0.004667746,-0.014238738,0.048670158,-0.012348694,0.0100118015,0.005120632,0.031472564,-0.0286224,0.031158563,0.020083988,0.0118112685,0.009196606,-0.044902146,-0.07565009,-0.016291821,-0.034153648,0.01920237,-0.048790928,-0.046399686,-0.01542228,0.017898059,0.0035868578,-0.039346743,-0.012535887,-0.019178215,0.022728842,0.025144234,0.039105203,0.048066307,-0.0042027826,-0.009087914,0.02194384,0.08226827,-0.009365684,-0.013598659,0.020410066,0.017125132,0.030144097,-0.045240298,0.049902007,-0.0043628025,0.010875304,-0.029347017,0.017149286,-0.0023867097,0.0023701037,-0.008653143,0.0014598027,0.090142444,0.041134134,-0.017197594,-0.03231795,-0.003689512,-0.009311338,0.025844699,-0.03557873,-0.012046769,0.0085686045,0.0017209671,-0.037825044,-0.021279607,0.0028094032,-0.04086844,0.021134684,-0.056278642,0.027680397,-0.0016469957,0.04881508,0.018610599,-0.03982982,-0.0008869019,-0.03661735,0.048525233,0.00072990137,0.023550076,-0.0430906,-0.005911673,-0.024975156,0.011485191,-0.014431969,0.014625201,-0.022535611,0.03125518,0.05705157,-0.03089287,0.00058648747,0.0025437102,0.0017300248,0.0009880464,-0.053766634,-0.020144373,-0.014854663,0.026400238,0.016183129,-0.038259815,-0.0415689,-0.0009774792,-0.021086376,-0.037197042,-0.0019368428,-0.00333928,0.0016364283,-0.02388823,-0.0067208293,-0.026448546,0.008121757,-0.012463424,-0.03780089,0.017088901,-0.0011948644,0.042486753,-0.004392995,0.011539537,-0.031037793,0.0060445196,0.042172752,-0.011563691,0.024009,0.011829385,0.019323139,0.0307721,0.007270331,-0.019697525,0.007252216,-0.017922211,0.039056893,-0.008961106,-0.015265279,-0.00866522,-0.0019096696,0.016026128,0.01335712,0.015844975,-0.0013292206,-0.005676172,-0.033887956,0.015881205,0.034926575,-0.008061372,-0.038936127,-0.02047045,-0.01609859,-0.03009579,0.014601047,-0.00039287866,0.014021353,0.031665795,-0.008339142,-0.019021215,0.0036864926,0.045819994,-0.012547963,0.015772512,0.019528447,-0.0140092755,0.023827845,-0.01307935,-0.040288746,-0.01152746,0.021170914,0.035119805,-0.020820683,-0.00042080664,0.04917739,0.0059146923,-0.015687974,-0.0069019836,0.06777591,0.04166552,0.01574836,-0.009981609,0.008689374,0.018840062,-0.009752147,0.014274969,-0.02059122,-0.05212417,-0.030868715,-0.013151811,-0.004592265,-0.039998896,0.034105342,0.014528586,-0.039105203,0.02702824,-0.03514396,0.007747371,-0.005860346,0.00914226,-0.030603021,-0.045433532,0.026400238,-0.0016288803,0.012861964,0.020047756,-0.0046768035,0.008351219,0.019419754,-0.023852,-0.0004845881,0.068355605,-0.019443909,-0.0030192405,0.050626624,0.0016998324,0.016243514,-0.03630335,0.01045261,0.008580682,-0.016907746,0.005295748,-0.071737155,0.016943978,-0.03796997,-0.027173165,-0.014178353,0.0026705181,-0.002898471,-0.012095077,0.025748083,0.018610599,0.004975708,0.0026901432,0.014540662,0.0047915345,-0.0027731725,0.014419893,-0.018743444,0.007747371,-0.012475502,-0.013900584,-0.016026128,0.019250678,0.014927125,0.038622126,-0.017656518,0.012499656,0.008737682,-0.043501217,-0.004051821,-0.021496993,-0.0022357476,0.0038253777,-0.04137567,0.040216282,-0.058114342,-0.03084456,-0.015241126,-0.02949194,-0.004115225,-0.007366947,-0.01582082,0.009130184,0.0021919685,-0.0064611747,0.03613427,-0.002102901,0.01821206,0.006744983,0.0078983335,0.027100703,0.010440534,-0.0108692655,-0.0074877166,-0.011684461,-0.027583782,0.021327915,-0.0030388655,0.0093837995,0.0058965767,-0.0005076098,0.05545741,0.006636291,-0.048042156,0.024480002,-0.027414704,-0.018670984,-0.013103504,0.031037793,0.019564679,0.009734032,0.023380999,0.015120356,0.019468063,0.0045016874,-0.051302936,0.050626624,-0.015301511,0.010114456,-0.014613124,0.03920182,-0.024202231,0.019528447,0.009589108,0.0038012238,0.0004249581,0.009589108,-0.007699063,0.039177664,0.043428756,-0.02929871,0.016726593,0.014444047,0.008478027,0.04495045,0.030554714,-0.0320281,-0.017209671,-0.03367057,-0.020796528,-0.0039491667,-0.025723929,0.009124145,-0.020385912,0.0074877166,-0.0061200005,0.04388768,0.015675897,-0.034201957,0.0052142283,-0.028767323,-0.017052671,-0.025844699,0.011968269,0.048960004,-0.035361346,-0.012330578,0.0071978695,0.02842917,-0.020023603,-0.000087652326,0.008641066,0.0007642452,0.008967144,0.00640079,-0.0010054071,-0.018864214,0.03478165,-0.02031345,0.00011680686,-0.053090326,-0.03796997,0.005821096,0.033332415,-0.012010539,-0.024323002,-0.04400845,-0.01152746,-0.017076824,-0.032342102,-0.026134545,0.038960278,0.0033211645,-0.0021164876,-0.018018827,0.0076386784,-0.04941893,-0.007052946,0.022306148,-0.01307935,-0.05748634,0.02603793,0.045747533,0.02567562,-0.02194384,-0.01717344,0.0033513568,0.01717344,-0.05584387,0.00568523,-0.025844699,0.012034693,0.016110668,-0.03676227,0.019782064,0.009806493,-0.008574643,0.034757495,0.044733066,0.007131446,-0.0317141,0.032293797,-0.03458842,0.07932149,-0.010814919,-0.0007895314,-0.020615375,0.024069386,0.03434688,-0.017318364,-0.00013596017,-0.005232344,0.004045782,0.03188318,0.027052395,0.008918837,-0.0021436608,-0.0026418355,-0.032100566,-0.026448546,-0.018695137,-0.008761836,-0.022402765,0.0044382834,-0.012922349,-0.0058331727,-0.0030147117,0.008659182,-0.016364284,0.0055704988,-0.034685034,-0.0009374742,-0.015168664,-0.025120081,0.043259677,0.023670845,-0.013393351,0.009124145,-0.010549226,-0.034322727,0.0070106764,0.04610984,0.039346743,-0.032970104,0.010078224,-0.035240576,-0.043187216,-0.02293415,0.024733618,-0.030192405,-0.009546839,0.009413992,0.045336913,0.017584058,0.012922349,-0.0007087667,0.022016302,-0.02222161,-0.0055795563,-0.011364421,-0.0084417965,0.0032185104,0.004344687,-0.021243377,0.008182142,0.041206595,-0.0045681107,-0.010736419,0.008447835,-0.02997502,0.057969417,-0.013719428,-0.01458897,0.012620425,0.023586307,0.01594159,-0.003115856,0.024057308,0.004181648,-0.0032366258,-0.004607361,0.01609859,0.011219498,-0.027921936,-0.01307935,-0.03212472,0.009878955,0.022052532,0.051592782,0.020216834,-0.015398126,0.013719428,0.00067744206,0.05342848,0.037414428,0.0051538437,0.06038481,0.004797573,-0.004302418,-0.00918453,0.021472838,-0.002711278,-0.01844152,-0.043138906,-0.009347568,0.023707077,-0.013997199,-0.034008726,-0.025844699,-0.010935689,-0.03772843,-0.019105753,0.02702824,0.01812752,0.006189443,0.000033235232,0.0039853975,-0.014335354,-0.02702824,0.008900721,0.019154062,0.004682842,0.025699776,0.011835422,0.006328328,-0.008918837,0.0073186387,-0.015289434,-0.025506543,-0.004634534,0.026810855,-0.042824905,-0.0066845985,0.024347154,-0.04726923,0.05569895,-0.029902557,-0.007481678,-0.0030584906,0.034201957,-0.0019534486,0.04265583,0.0038072623,-0.025289157,-0.017378747,-0.038187355,-0.021895532,-0.01021711,0.008949029,0.06444267,-0.02047045,-0.0132121965,0.010748496,-0.021859301,-0.000034367447,0.047704,0.023839923,0.035530422,0.019963218,0.009915186,-0.023537999,0.027414704,-0.017596133,0.0015700051,0.033718877,0.0014114949,-0.020132296,0.051447857,-0.039177664,-0.007469601,0.02286169,0.041013364,0.055988796,0.021859301,-0.0030358464,0.040506132,-0.009631377,0.04149644,-0.008399527,0.019468063,0.030361483,0.010313725,-0.02516839,-0.012475502,0.00060913176,-0.025023466,0.014178353,-0.01037411,-0.022885842,0.036399964,-0.020325527,0.016122743,-0.02074822,-0.029202094,0.012717041,0.0132967355,-0.023755385,0.016883593,-0.000058167556,0.033259954,-0.010150687,-0.0043899757,0.022463148,0.03176241,-0.02365877,-0.0066966754,0.041448135,-0.009903109,-0.027559627,0.01927483,0.04333214,-0.00401559,0.03485411,-0.019093677,0.065698676,-0.012946503,0.008435758,0.015518896,0.048670158,-0.011611999,0.00906376,-0.0020259104,-0.037100427,-0.017825596,-0.0042782635,-0.008393489,0.0030871734,0.027559627,0.011738807,-0.010965882,0.02524085,0.012300386,0.0026493836,0.043984294,0.007179754,-0.019588832,-0.032970104,-0.0069080223,0.0006193217,0.035602883,-0.00016209547,0.0024199213,0.013405427,-0.021195069,0.017547825,0.024214309,-0.02603793,-0.0017058708,-0.0038012238,-0.011436883,0.0072280616,0.0314001,0.011672384,0.0140092755,-0.03188318,-0.024262616,-0.017282132,-0.007862102,-0.03854966,-0.011672384,-0.04173798,0.002767134,-0.034250263,-0.035627037,0.00039853973,0.012463424,-0.009643454,-0.03299426,0.016871516,-0.022595996,0.011557653,0.03096533,-0.024516232,0.023465537,-0.0017889,0.010573381,-0.028525785,-0.015072049,-0.01972168,0.028018551,-0.037390273,0.003115856,-0.009401915,0.015881205,-0.000005333795,-0.010688111,-0.0010657919,0.047848925,-0.014407815,-0.012789503,-0.036230884,0.00401559,0.020240989,-0.021786839,-0.008447835,0.0005959226,0.005576537,-0.023453461,-0.0071012536,0.027124856,0.027221473,-0.006551752,-0.003475146,0.0053289593,-0.024516232,-0.0024591715,0.035892732,0.01105042,0.009432107,0.032656103,-0.019069523,-0.026062084,0.034564264,-0.0020802566,-0.01836906,0.009371722,-0.03374303,0.014915048,-0.016328052,0.02206461,-0.0027550568,0.02726978,-0.0424626,0.00882222,0.012016577,-0.014021353,0.0015700051,0.03963659,-0.02059122,-0.008133834,0.046737842,-0.00496967,-0.05927373,0.025579005,0.004033705,-0.0011692009,-0.0076326397,0.011159113,0.016823208,-0.009486454,-0.02055499,-0.0061592506,0.019468063,-0.011962231,0.006443059,0.0135261975,-0.013731506,-0.013502044,0.036593195,-0.032390412,0.013816045,0.0051900744,0.022716766,0.011841461,-0.019769987,-0.020023603,0.00202742,0.0014484806,0.018260367,0.01880383,-0.0038585893,0.0059690382,0.017716903,-0.0075179087,-0.036230884,0.009800455,-0.003677435,0.019311063,0.023405151,-0.033767186,-0.013876429,-0.011056459,-0.021134684,-0.00862899,0.00473115,0.025192542,-0.016026128,0.020542912,0.016291821,-0.03995059,-0.003529492,-0.032704413,-0.0042390134,-0.025820544,-0.0048760734,-0.009039606,0.035723653,0.028525785,-0.00997557,0.01498751,-0.028356707,0.039974745,0.00036287497,0.02047045,0.058452494,-0.0017224767,0.010313725,0.0031702025,0.018199982,0.022704689,0.009848762,-0.018344905,0.015760435,0.008447835,-0.004353745,0.024153924,-0.0169319,-0.032607798,-0.009244914,-0.024504155,0.01363489,0.021955917,-0.01658167,0.01458897,-0.014456123,0.02078445,-0.0061079236,0.003124914,-0.036279194,0.030530559,0.0058844998,-0.020530835,0.028574092,-0.017813519,-0.012656656,-0.018465675,0.00874372,0.0037649928,-0.0097400695,-0.030264867,0.0008197238,0.007397139,-0.020361759,-0.026327778,-0.017547825,0.0049274005,0.022801304,0.0032366258,0.004329591,-0.036907196,-0.0016711496,-0.011775038,0.0192386,-0.014951278,-0.033090875,-0.0027158067,0.026303623,0.008375373,-0.0015458511,-0.01621936,-0.00333928,0.0050240164,-0.0032366258,-0.0073186387,-0.0024244501,0.005540306,0.007270331,-0.003653281,0.0050662854,0.03299426,0.0169319,0.0112678055,0.012270194,-0.028139321,0.009824608,0.010301649,-0.019190293,-0.017209671,0.007445447,0.016086513,0.018683061,0.009679685,-0.0066483677,-0.017378747,0.010712265,0.014951278,-0.0034630687,-0.053042017,-0.022946227,0.009166414,-0.06444267,-0.022704689,0.015180741,-0.016823208,0.044419065,-0.0060052695,-0.010301649,-0.008647105,-0.01323635,0.021303762,0.021641916,0.016328052,-0.033453185,0.008073449,0.010669996,-0.00866522,0.014274969,0.007928525,-0.013139735,0.016255591,-0.006141135,0.013163889,-0.00810968,-0.032945953,0.04475722,0.017100979,0.0064611747,0.0071616382,-0.024383387,0.00064423046,-0.01797052,-0.016243514,0.014830509,0.034757495,0.0004940232,-0.035240576,-0.02929871,-0.017910134,0.014963356,0.011799192,-0.012342655,0.012729118,0.022040455,-0.012306424,0.016871516,0.0044775335,0.009329453,0.004867016,0.0019051407,0.0046013226,-0.03207641,-0.01745121,-0.051254626,-0.02305492,-0.008840336,0.0036381849,-0.040530283,0.030578868,-0.019504294,0.007040869,0.004169571,0.011261767,0.00846595,0.0025723928,0.010126533,0.012765349,-0.02850163,0.013441659,-0.046882767,0.016485052,-0.008894683,-0.031110253,0.021448685,-0.041834597,-0.007795679,0.020687835,-0.002487854,-0.009516646,0.00044269612,-0.03398457,-0.0143112,0.031158563,-0.0053772675,0.01470974,0.035433806,-0.0057909032,-0.060529735,0.021992147,-0.010150687,0.006364559,-0.020796528,0.0013141244,-0.046641227,-0.028984709,0.03939505,0.030192405,-0.015736282,-0.010060109,0.00806741,0.005875442,-0.0028562015,0.0044986685,0.016992286,-0.017125132,-0.0044262065,0.030458098,-0.010060109,-0.014915048,0.0053048055,-0.030482251,0.0009563444,-0.01673867,0.014637277,0.010802843,-0.005899596,0.00043061917,0.021195069,-0.02603793,-0.006618175,0.006563829,-0.0406269,0.007264293,-0.0332358,0.025095927,0.025458235,0.0021436608,0.017282132,-0.043452907,-0.0019504294,-0.030506406,0.010331841,0.045288607,0.016726593,-0.0012431722,-0.0014514999,0.0406269,0.011696538,-0.0434046,0.027777012,-0.015506819,-0.0035687422,0.01280158,0.014081738,-0.007584332,0.053573404,0.027438857,-0.014758048,-0.0057154223,-0.010048033,0.0026524027,0.03470919,-0.0118475,0.0047854963,-0.03152087,0.00050949684,0.026641779,-0.0338638,-0.0013405428,-0.016146898,0.03164164,-0.037414428,0.02317569,-0.013743583,0.0054195365,-0.004797573,0.046254765,-0.040699363,0.024661155,-0.020687835,-0.023622537,0.0068717916,0.0021889494,-0.019697525,-0.0018221117,0.01574836,-0.009842724,0.03287349,0.015844975,0.051834323,0.010977958,0.008049295,-0.025748083,-0.03490242,-0.014480277,0.021170914,0.014951278,0.008834298,-0.0076145246,-0.02973348,0.0063705975,-0.0106820725,-0.021025991,-0.030868715,-0.015494742,-0.0060626348,0.02702824,0.03318749,-0.0005887519,0.04098921,0.0062800203,0.017270055,0.04130321,-0.010935689,-0.015373972,0.038453046,0.040723518,0.024383387,0.009329453,0.00798891,0.031931486,0.00846595,-0.02480608,0.027873628,0.011883731,0.020096065,0.031786565,0.02560316,-0.01729421,0.01232454,0.030917022,-0.014105892,0.002516537,-0.014733894,0.0050149583,-0.019963218,0.022849612,0.006841599,0.043549526,-0.0217023,-0.020265142,0.02702824,0.004495649,0.009933301,0.005507095,0.023393076,-0.0033241839,-0.0038887816,0.015265279,0.017040594]},{"id":"interface-MessageEditOptions","type":"interface","source":"main","text":"Interface: MessageEditOptions\nDescription: Options for editing a message (content and/or embeds).\nProperties: content: string, embeds: (APIEmbed | EmbedBuilder)[]","meta":{"url":"/docs/typedefs/MessageEditOptions"},"embedding":[-0.003764616,-0.009422994,-0.000643981,-0.008751014,-0.02020013,-0.011902194,0.036510922,-0.012910164,-0.009407722,-0.016687507,0.0014139583,-0.05098904,0.041662768,0.01080259,0.013897771,-0.025677787,-0.012380725,0.050744683,0.023498941,0.016382061,0.03119617,-0.011026584,0.014600296,0.055061646,0.0028024625,-0.003698436,0.0019904866,0.0064958083,0.011973465,-0.0130425235,0.020271402,-0.017980559,0.048830558,0.026309041,-0.00008415661,0.009967705,0.019691054,0.03516696,-0.006246361,-0.009412813,-0.03777343,0.012380725,-0.052251548,-0.009779347,-0.049197093,0.041112967,-0.008527021,0.04013554,0.029709667,0.014865016,-0.013989405,0.00018788081,-0.0024181104,-0.009092095,0.018011104,-0.029770756,-0.036286928,-0.004675862,-0.017166039,0.0025326523,-0.012370544,-0.01509919,-0.020403761,-0.018815445,0.010578597,0.012085461,-0.08454732,0.01596462,-0.01898853,0.04078716,0.04255874,-0.040359534,-0.037264355,0.04288455,0.027795542,-0.037529074,-0.031908877,-0.03873049,0.004910037,-0.038893398,-0.0011193305,0.029241318,-0.094728835,-0.03435244,-0.023600757,0.0058950987,-0.019273613,0.00979462,0.0023850205,-0.008364117,-0.0751396,-0.013246154,-0.05978587,-0.013795956,-0.0038995212,-0.04724224,-0.020240856,-0.008577928,-0.018509999,0.06642422,0.06915287,-0.049767256,-0.0760763,0.017980559,0.014783563,-0.048219666,0.010313877,0.03616475,-0.013358151,-0.024720725,-0.008552475,-0.011881831,-0.03300848,0.013307244,0.024415279,-0.05978587,0.024272738,0.021055378,0.009051369,-0.04712006,-0.045816828,-0.05428785,0.06479517,0.028162077,-0.022847325,-0.004342417,-0.029607853,-0.029750394,-0.050418872,0.028243529,0.006933613,0.007096518,0.02080084,-0.005574381,-0.026288677,0.013246154,-0.028569337,0.039097026,0.00038562497,-0.020016864,0.058482636,0.0011180579,-0.011698564,0.013398876,-0.023824751,-0.0114033,-0.028324982,0.012879619,-0.000035098394,0.039667193,-0.026003595,0.008084125,-0.01973178,-0.011046946,-0.014376302,-0.008155395,0.021177556,-0.033863727,-0.0030137291,-0.021829173,0.01886635,-0.018805262,0.0032962663,-0.009952433,-0.02818244,-0.006923432,0.060559664,-0.008842648,-0.019976137,0.020760113,-0.012095642,-0.029200591,-0.05823828,0.03630729,0.0048413114,-0.011413481,-0.0049736714,-0.026268315,-0.012798168,0.066546395,0.019762326,0.019405972,-0.027632639,0.017950015,-0.039158117,0.02388584,-0.043780524,-0.001989214,0.013398876,-0.05502092,-0.03549277,-0.021320097,0.0109145865,0.029017324,-0.031012902,-0.0054165674,0.014386484,0.012726896,-0.008969917,-0.057668116,0.062147982,0.035390954,0.03602221,0.018214734,-0.013877409,-0.013979224,-0.01603589,0.03818069,-0.029302407,0.011780015,0.039137755,0.0114033,-0.0047751316,0.01194292,0.012217821,0.020027045,0.0041973307,-0.0017104949,-0.053595506,-0.01254363,-0.030564915,0.025718512,0.09049333,0.010436055,0.0154249985,0.02127937,-0.066383496,0.026919931,-0.054980192,0.021564454,-0.00966226,0.0074121444,-0.048830558,-0.028630426,0.014977012,0.027347555,-0.07143353,-0.0029220956,0.03188851,-0.020281583,0.013948679,-0.015465725,-0.011800379,-0.0049634897,-0.00933136,0.023030592,0.015648993,-0.023295311,-0.04528739,0.033599008,0.052210823,-0.010884042,0.045735378,-0.03549277,0.025148347,-0.057016496,0.0017092222,0.028834058,0.021157194,0.021299735,0.040339172,0.0064958083,-0.02227716,-0.02107574,0.007641229,0.0055591087,0.011362573,0.021238646,-0.021116467,-0.037691977,-0.00082088483,0.013857045,0.022888051,0.048016034,-0.019813232,0.0036678917,-0.013521055,-0.011036765,-0.023661846,0.006770709,-0.07644283,-0.041377686,0.009183729,0.023132408,-0.012268729,0.011291303,0.045450293,0.021035016,0.021462638,0.042436566,0.034006268,-0.023315676,0.053839862,-0.038608313,-0.017939834,0.00905646,0.03677564,-0.021706995,0.07900857,0.034250624,0.011729108,-0.035716765,0.031094354,-0.031908877,0.014641022,-0.035533495,0.052658807,0.031155443,0.06528389,-0.022317886,0.032662306,0.0005396204,-0.032417953,-0.007071064,-0.045205936,0.027266104,0.049563628,0.03280485,-0.044106334,0.01704386,0.0011696018,0.020953562,-0.041479502,-0.05013379,-0.029078413,-0.036857095,0.011128399,0.0034922604,0.034718975,0.012645445,0.0102426065,0.009076823,0.00043080546,0.013551599,0.015852623,0.0011893285,-0.014009768,0.05172211,0.030911086,0.031521976,0.009825164,-0.01932452,0.0045078667,0.0125741735,-0.024211649,-0.064917356,-0.084710225,0.060437486,0.0043984153,0.01321561,-0.012737079,-0.006877615,-0.017278034,-0.03247904,-0.004986398,-0.013297061,0.0156999,-0.02127937,-0.061374187,-0.00052402995,-0.00048012217,0.0038995212,-0.006399084,0.047405146,0.025046533,-0.023865476,-0.053799137,0.0295264,-0.0030239106,-0.037671614,0.03025947,0.04227366,-0.0014954103,-0.0026675574,-0.016005345,0.016748596,0.035553858,-0.023295311,-0.010008432,-0.026390493,0.048952736,0.039748643,-0.053432602,-0.0007788861,-0.0053198426,-0.014936286,-0.003362446,0.0052333,-0.014956649,0.03535023,0.016483877,0.020016864,-0.08511748,-0.018509999,0.029668942,0.025779601,-0.008618655,0.0209332,0.00825212,-0.021259008,0.019375427,-0.0142337615,-0.009458629,0.02180881,-0.0050958493,-0.061211284,0.028752604,0.023987655,0.012696352,-0.02865079,0.04288455,-0.030218743,0.020831384,0.046386994,-0.00295264,-0.03321211,0.042395838,-0.026085047,0.018204553,0.014030131,-0.01589335,-0.019762326,-0.023967292,-0.0012313273,0.046997882,-0.023519306,0.011036765,-0.009341543,-0.04219221,-0.06455082,-0.04817894,0.06923432,0.052577354,0.022256797,0.020220494,-0.038832307,0.03771234,-0.00295264,-0.014600296,0.033049207,-0.03402663,0.017797293,0.03946356,0.014223579,-0.025983233,-0.025413068,0.0045664106,0.020098316,-0.008135032,-0.052903164,-0.021177556,0.024639271,-0.020454668,0.01831655,0.00037767066,0.0014343213,0.021177556,0.01509919,0.039280295,0.008562656,-0.003059546,0.013928316,0.01435594,0.019273613,0.011179306,0.01295089,-0.018428547,0.03219396,-0.008985189,0.021401549,-0.016718052,0.011820742,0.011230214,-0.0037926151,-0.011362573,-0.049645077,0.006918341,-0.018815445,0.006602714,0.019293975,-0.011260758,0.049970888,-0.0021610272,0.021930989,-0.013694141,0.06556897,0.005676196,-0.011301484,0.010619323,-0.011332029,0.008471022,-0.008150305,-0.059460063,-0.006093638,0.027673364,-0.04435069,-0.046794254,-0.022908414,-0.0031893603,-0.012482541,-0.0073561464,-0.008547384,-0.038099237,0.0010283332,0.043943428,0.007071064,-0.038934123,-0.028060261,-0.02294914,0.01589335,-0.024944717,-0.011871649,-0.008990279,0.009422994,0.006816526,0.0057729203,-0.030585278,0.030768545,-0.014315213,-0.013022161,-0.0020948472,0.007615775,0.047730953,-0.018306369,0.017064223,-0.03188851,-0.04903419,-0.035065144,0.0142846685,0.00026742392,-0.027306829,-0.024944717,0.013928316,0.021747721,-0.03443389,-0.030503826,-0.00076679554,-0.017502028,0.048016034,-0.049197093,-0.028304618,0.020027045,0.020627754,0.02180881,-0.045043033,0.044717222,-0.007198333,0.036694188,-0.016320972,0.0218699,-0.00096024433,-0.03797706,0.044595048,-0.012625081,-0.0049838526,0.038893398,-0.0062769055,-0.008527021,-0.0011848741,0.023173133,0.0112811215,-0.05355478,0.010120428,0.0022717512,-0.014997375,0.024333827,0.008562656,-0.008043399,-0.016341336,-0.011057128,0.0009296998,0.022256797,0.0038460682,0.035533495,0.014396666,0.02885442,-0.0050958493,0.02356003,-0.03575749,-0.029770756,0.002973003,-0.032295775,0.010130609,0.0069132503,-0.013622871,0.0016926773,-0.014335576,0.007865222,0.004166786,0.025189074,0.02356003,0.016463514,0.021930989,-0.0001684723,-0.028834058,-0.020413943,0.027001385,0.005004216,-0.024394916,0.03402663,0.01925325,0.008038308,-0.03402663,0.021992078,0.014539206,0.024313463,0.005380932,-0.01879508,-0.030300196,0.016473696,0.005304571,0.013062887,-0.023295311,-0.0005848009,-0.035065144,-0.020088134,0.015730444,-0.0067859814,0.034006268,-0.013398876,-0.004780222,0.039993,-0.003945338,0.015730444,-0.0394432,0.028732242,0.0074274167,-0.014691929,0.028426796,-0.0047547687,0.03414881,0.03160343,0.014386484,0.0064449003,-0.024191285,-0.022195708,-0.006180181,0.014742837,-0.02569815,0.013337788,0.013317425,0.0035533495,0.014294851,-0.000009923002,0.0011670564,-0.02911914,-0.005014397,0.014773382,0.0027770088,0.0224197,-0.014121764,-0.007396872,0.05274026,0.003006093,0.019843778,-0.010385147,-0.002390111,0.025575971,-0.0228066,-0.022989865,0.0014623204,0.021381186,0.00012424633,0.015465725,0.017919471,-0.0017932197,-0.009458629,-0.026879206,-0.017328942,0.0141319465,-0.035940755,0.0054980195,0.0013566872,-0.027449371,0.04160168,-0.04025772,0.021971714,-0.020780478,-0.0039937003,0.013907953,-0.0019306702,-0.004943127,-0.021971714,-0.031623792,0.019833596,-0.051355574,0.021829173,0.025677787,0.012268729,-0.030809272,0.025270525,0.014417029,0.028162077,-0.033558283,0.009830255,0.06630204,0.0036093479,0.018255461,0.05013379,0.011311666,0.005128939,-0.003810433,-0.0295264,0.02408947,0.0041846037,-0.009310998,-0.033537917,0.0041718767,0.045083757,-0.0003391718,-0.033089932,-0.008420114,-0.02470036,0.00052975706,-0.021462638,0.0023608394,-0.015017739,0.036918182,0.012441814,0.009051369,0.00590528,-0.042029303,-0.030157654,0.0317867,-0.002127937,-0.008374298,0.012798168,0.044798676,-0.013225791,0.014681748,0.024537457,0.014457755,-0.012024372,0.02394693,-0.012808349,0.0504596,0.03146089,0.0044238693,0.0020566664,-0.0004820312,0.031623792,0.029974388,0.04675353,0.0064856266,-0.0062107258,-0.011729108,-0.014121764,0.011433844,0.017573299,0.035105873,-0.021421913,0.0023633847,-0.012156731,0.014844652,-0.017267853,0.0061954535,0.0026802844,-0.023539668,-0.0485862,-0.005737285,0.031175805,0.055183824,-0.021951351,-0.014457755,-0.043576892,-0.020749932,-0.0044365963,-0.0045995004,0.04005409,0.011617111,-0.025351979,-0.019691054,-0.029831845,-0.026309041,0.059460063,-0.049197093,0.007004884,-0.035879668,-0.038689766,0.01214655,0.021930989,-0.0077939513,-0.0037824337,-0.051437024,0.021829173,0.015465725,-0.042314388,-0.06019313,0.0067808907,-0.025189074,-0.00851684,-0.013368333,0.023315676,-0.054450754,-0.007503778,0.02080084,-0.024883628,-0.054043494,0.02341749,0.04174422,-0.0051773014,0.01730858,-0.01765475,-0.0060020043,0.008913918,0.011708745,-0.011830923,0.0043220543,-0.010288423,0.047812406,-0.032255046,0.0036220748,-0.0050780317,-0.010222243,0.012828711,0.033232473,-0.0006783436,0.03329356,0.046916433,-0.028406434,0.03877122,-0.022053167,-0.006052912,0.013073068,0.042314388,0.027367918,0.0027744635,-0.012085461,0.039667193,-0.03520769,0.0070201564,0.010629504,0.0007025247,0.0074274167,-0.017288217,-0.0409297,-0.029730031,0.023641484,0.009636806,-0.025351979,0.0024639273,-0.014111583,-0.0008991553,0.02508726,0.020780478,0.0076259566,0.009967705,0.02885442,-0.0022093893,-0.006999793,0.012289091,0.0328863,0.01181056,-0.050703958,0.013938497,-0.00670962,-0.022195708,0.006281996,-0.0049609444,-0.0045409566,0.009489174,0.0030570007,0.0064958083,-0.021829173,-0.022765873,-0.050500326,-0.019741962,-0.016382061,0.022338249,-0.0036526194,0.023906203,-0.009534991,-0.018214734,-0.002083393,-0.0001620293,0.040440988,0.02356003,0.00442896,-0.012451996,0.02301023,0.01409122,-0.0030900906,0.011108035,-0.0044925944,-0.029730031,-0.0019624876,0.02771409,0.031562705,-0.020230675,0.03488188,-0.008547384,-0.007488506,-0.00072606944,0.018693266,-0.012879619,0.0069132503,-0.012329818,0.00016751778,0.03675528,0.015598085,-0.042762373,-0.016117342,0.014213398,-0.026614487,0.030829635,0.008929191,0.07057828,-0.017094769,-0.017318761,-0.0065518063,0.05791247,-0.015150098,-0.007900857,0.028100988,-0.008684834,0.021992078,-0.0047624046,0.0006757982,0.0036958908,-0.013857045,-0.034718975,0.03274376,0.009254999,-0.0045435023,-0.025514882,-0.02911914,-0.031114718,-0.017532572,0.0005848009,0.009448448,0.029546764,-0.04133696,0.02771409,0.01556754,0.004958399,-0.037467983,-0.015180643,0.004306782,0.0023124772,0.049685806,0.017318761,0.021218283,0.008272483,-0.025962869,0.020475032,0.009779347,-0.066179864,0.045043033,-0.0224197,-0.036327653,-0.0055591087,0.0026802844,0.012981434,0.0063125407,0.0006516171,0.007407054,0.0085321115,0.004314418,0.030096564,0.0009869708,-0.019507788,-0.028813694,-0.035859305,-0.015944256,-0.0065721693,0.014467936,0.039524652,-0.0025517428,0.012116006,0.01509919,-0.017003134,0.0014941377,0.06622059,0.028487885,-0.0040089726,0.048341844,-0.0021992077,-0.014030131,-0.01053787,-0.00089342816,-0.013592326,0.04174422,-0.022154981,0.031969965,-0.031216532,-0.008715379,0.0013732321,0.0017206764,0.024130195,0.014783563,-0.0035380772,-0.028569337,0.00021556181,-0.038608313,0.009346633,0.0016723142,-0.0020375762,0.024639271,0.016891137,0.015781352,-0.024252374,0.0142337615,-0.0381196,-0.0028966416,0.01455957,0.01771584,0.030890724,-0.007951765,0.023763662,0.004655499,0.0018441273,0.0056711053,0.035370592,-0.024313463,-0.010731319,-0.017359488,0.020749932,-0.0059969136,-0.0069845207,0.0129916165,0.055183824,-0.026940295,0.01147457,0.012686171,0.008689925,0.0020655754,0.0065670786,0.021218283,0.014793744,0.01388759,-0.061822172,0.05054105,-0.028508248,-0.0023073864,-0.0013948679,-0.0045384113,0.02221607,0.018398002,0.027856631,-0.047201514,-0.03215323,-0.0015552267,-0.036083296,0.023702573,0.038384322,0.010476781,0.006225998,0.014457755,-0.026003595,0.010033885,-0.022338249,0.0120549165,-0.016534785,-0.030239107,-0.005044942,-0.009677532,0.008272483,0.0068012537,0.012563992,0.010145882,-0.004273692,0.018937623,0.024802176,0.02891551,0.018224915,0.0233564,0.013541418,-0.028243529,0.018296186,-0.00050112157,0.032845575,0.004907491,0.00084252056,-0.006058003,0.017359488,-0.013775593,0.0077532255,-0.03616475,-0.00070188835,0.0016163159,-0.004884583,-0.030911086,0.0064856266,0.015791534,-0.012981434,0.0015857713,0.00015606357,-0.029078413,0.06133346,-0.016127523,-0.03025947,0.0067656185,-0.009845527,0.012187276,-0.023722935,0.025351979,0.009509537,-0.009758985,0.009814982,-0.025535246,0.02356003,-0.035838943,0.011912376,0.024842903,0.00939245,0.0022870232,-0.010217153,-0.033660095,-0.01463084,0.028996961,-0.03925993,0.044676498,0.0047725863,0.015648993,-0.033680458,0.0073256018,0.004655499,0.0017206764,-0.019711418,-0.0077939513,0.0045460477,-0.006597623,-0.00034203535,0.030768545,-0.028589701,0.012248365,0.033517554,0.036531284,-0.021401549,0.003308993,-0.010680412,0.00055457454,-0.0087611955,-0.038791582,0.020312127,-0.051844288,0.03335465,0.008832466,0.016758777,-0.023763662,0.011556022,0.008145214,-0.02321386,0.0102680605,0.0047624046,-0.01181056,-0.009825164,0.038384322,0.00298573,-0.021930989,0.0019255795,0.036470193,0.029465312,0.011566204,0.020851748,-0.00905646,-0.012981434,0.0006605259,-0.007631047,0.025189074,-0.018367458,-0.025066895,-0.00298573,0.0053096614,-0.011128399,0.034983695,-0.021564454,-0.00014413211,-0.0057067405,-0.012024372,0.02683848,-0.029770756,-0.0069692484,-0.007529232,0.0008030672,0.021014651,0.017349306,-0.012940709,0.044269238,0.00456132,-0.0040573347,-0.008852829,0.018306369,-0.052170094,-0.0019128526,0.054776564,-0.050215244,-0.0038155236,-0.012187276,-0.0020719387,-0.027347555,0.0006331631,0.0034184444,0.0013223246,-0.028019536,0.014915923,-0.006918341,0.009550263,0.0014903196,0.0086593805,-0.0031053629,0.0059969136,-0.03201069,0.010436055,0.022175346,-0.04435069,0.006607805,-0.023132408,0.075669035,-0.018835807,0.032438315,0.04255874,0.041784946,0.034942966,0.021971714,0.018438729,0.06980448,-0.012879619,-0.006536534,0.015343547,-0.0006401629,0.0068063443,0.02127937,-0.011729108,-0.0409297,0.006266724,0.013368333,-0.0152213685,-0.026105411,-0.009372087,-0.0027031929,-0.042966004,0.03557422,0.00939245,-0.027327193,0.0040496984,0.0048285844,0.013307244,-0.0048947646,-0.005139121,0.017064223,0.009850618,0.0064652637,0.016270064,0.003703527,-0.0036246201,-0.015119554,-0.0016188612,-0.0048693107,-0.017899107,-0.022093892,0.0047980403,-0.019467061,-0.014437391,0.019212523,0.012441814,-0.013480329,-0.030035477,-0.026797753,0.020434305,-0.023865476,-0.01885617,0.0043296902,0.0010728774,-0.06320686,-0.00014437073,-0.017278034,-0.029485675,0.000101099286,0.0065314434,0.0055591087,-0.02563706,0.00051862106,0.0037951607,0.019650329,0.0043169633,0.037549436,-0.00035030782,0.043780524,0.0039504287,0.002374839,0.029220955,0.0024333827,0.030605642,-0.007631047,-0.013541418,-0.033191748,0.022440065,-0.004571501,0.00039739735,0.017227128,0.011352392,-0.01455957,0.0061954535,-0.024211649,0.0005125758,0.041683134,-0.04931927,-0.00221448,-0.0017130403,-0.033191748,0.032234684,-0.0013834137,-0.014019949,0.018123101,0.013979224,-0.021523727,0.017614026,0.017084586,-0.027734453,-0.028671153,0.027103199,-0.027612275,0.017827837,-0.005253663,-0.0020604846,-0.0012593265,-0.039361745,-0.03166452,0.013795956,-0.0001996532,0.026614487,-0.008873193,-0.0024053834,0.010100065,-0.01281853,-0.041112967,-0.0048871282,0.0049354904,0.023967292,0.026227588,0.013683959,0.0073510557,-0.037406895,-0.020495394,-0.028406434,-0.010054248,-0.009010643,0.010237516,-0.012085461,-0.024008017,0.006943795,-0.0022946594,-0.010731319,-0.0010143337,0.028772969,0.030483464,-0.01925325,0.010206971,0.030809272,-0.02006777,0.0075903214,0.015852623,-0.02134046,0.019283794,0.009209182,0.038893398,0.037793793,-0.030300196,0.012309454,-0.04341399,0.023071319,0.025311252,0.006154727,-0.014305032,0.018642358,0.0029068233,-0.0107109565,-0.0071626976,0.016962407,-0.026247952,-0.011576385,0.024456006,0.006872524,0.015801715,0.016351517,-0.014966831,0.008247029,0.0057474663,-0.010227334,0.027225377,0.00079161295,-0.008272483,0.0022857506,-0.005047487,-0.0020910292,0.002559379,-0.01744094,-0.0022233888,-0.025962869,-0.0032377224,-0.0007095245,0.026227588,-0.02999475,0.01341924,-0.015282458,0.022501154,-0.0011619657,0.014569751,-0.003214814,-0.040298447,-0.016494058,-0.025596336,-0.025148347,-0.029750394,0.002087211,-0.013592326,0.002075757,0.009942251,0.039198842,0.021259008,-0.013337788,-0.019110708,0.0015768625,-0.02791772,-0.013439603,0.030849997,-0.013938497,0.010517508,-0.03671455,0.007300148,-0.005920552,-0.013653414,0.021218283,0.005179847,-0.008567747,-0.025820328,-0.002197935,0.028426796,-0.0024906537,0.005004216,-0.0010073339,0.049930163,-0.008282664,-0.00372389,0.021483002,-0.021890262,0.008318299,-0.0054929284,-0.015017739,-0.030178018,0.017664932,0.018082375,-0.050215244,-0.012339999,-0.029831845,-0.03203105,0.007152516,-0.0028202804,0.017155856,-0.024232011,0.0012262365,0.04115369,-0.032703035,-0.030157654,-0.020281583,0.0048565837,-0.025250163,-0.016219158,0.0012294182,-0.0077124992,0.010313877,-0.004986398,-0.013134157,0.02549452,0.016158069,-0.026410855,-0.012828711,0.016768958,-0.012961072,-0.013643233,0.055631813,-0.032438315,0.022847325,0.00018994893,0.046142638,0.023376765,0.011016401,-0.01067023,0.0040064272,0.005004216,-0.00021778901,-0.017481666,-0.041703496,0.005528564,-0.0016061343,-0.017288217,0.0104666,-0.00028746878,-0.003146089,-0.0019433971,0.013001798,0.05628343,0.00704561,0.008043399,0.033517554,-0.053799137,-0.0014114128,0.02771409,0.032112505,-0.04219221,0.027082836,0.01100622,0.010313877,-0.025799965,0.028935872,-0.0038307959,0.004966035,-0.009387359,0.0012726897,0.01093495,0.011892012,-0.0064601726,0.019019075,0.014050494,0.029241318,0.013969041,-0.0295264,0.021055378,0.01704386,-0.009942251,0.016086798,-0.004220239,-0.03649056,0.030564915,-0.022236435,-0.026858842,0.021747721,-0.028365707,-0.063899204,0.024679998,-0.008292845,0.025861055,-0.020169586,-0.012177095,-0.0046936795]},{"id":"interface-MessageFileData","type":"interface","source":"main","text":"Interface: MessageFileData\nDescription: File data for message attachment uploads. Use `data` for buffers or `url` to fetch from a URL.","meta":{"url":"/docs/typedefs/MessageFileData"},"embedding":[-0.019176843,0.021940174,0.0011402897,0.011619302,0.03362606,-0.027322562,-0.005942824,0.04123909,-0.014327143,-0.015103984,0.0008572981,0.018277928,0.008068035,-0.009710496,-0.020342102,-0.0046638125,0.031894818,0.02514741,0.023527145,0.031384323,0.025613515,-0.03193921,0.014915322,0.01104777,0.04758698,-0.0019226783,-0.0151705695,0.021096747,0.03746587,-0.0402181,-0.012041016,-0.031140175,0.04061762,-0.010587215,0.02321641,0.039485652,-0.00033691953,0.03480242,-0.0036067558,-0.03648927,-0.048874315,-0.018777326,0.00039500912,0.021840293,-0.032383118,-0.02016454,0.018078169,0.07191316,0.022217616,0.013372741,-0.026634505,0.00055072387,0.0013851329,0.020663936,0.006730761,0.067429684,-0.0022764178,0.03640049,-0.014205069,-0.03793197,-0.022661524,0.03329313,-0.0513602,-0.033404108,0.013949822,-0.0041810623,-0.028765265,0.045300853,0.0029880584,0.036200732,0.08230062,0.020197833,0.014415925,0.004405791,0.019132452,-0.049362615,-0.043591805,-0.039774194,-0.024414962,-0.047276244,0.009949097,0.06458867,-0.075286865,-0.054068044,-0.008750544,0.030252358,-0.020131245,-0.0016702054,-0.026567917,0.038997352,-0.012262969,-0.0129843205,-0.07297854,-0.0003428152,-0.031917013,-0.023393974,-0.05238119,-0.008018095,-0.018277928,-0.015270449,0.013627988,-0.0033265385,-0.03062968,-0.04230447,0.030851634,-0.027366953,0.031007001,-0.02030881,-0.0368444,-0.00064990966,-0.006236913,-0.0021696023,0.038353685,0.010720388,0.027411344,-0.0049634506,0.0047359476,0.0064588673,0.03014138,0.027078412,-0.030074794,0.043769367,0.024548134,0.013250666,0.031140175,-0.057219792,0.0072856466,-0.025724491,-0.036711223,-0.02108565,0.053579744,0.021818098,-0.013283959,-0.03631171,-0.007757299,-0.029542103,-0.009455249,0.021651633,-0.035113156,-0.0111920405,0.026590113,-0.010454043,0.03944126,0.00243456,-0.005704223,0.027788665,-0.025968641,0.055621725,0.03504657,-0.009732692,-0.021895781,0.022705914,-0.0026953563,-0.017789628,-0.0069804597,-0.036289513,0.03959663,0.0057486137,-0.009421956,-0.025169607,0.0059761168,-0.02200676,-0.0077073597,-0.02399325,-0.024903262,0.018877205,0.050427996,-0.07670737,0.010531727,0.027810862,0.011674791,0.0031240054,-0.003726056,0.00639783,-0.014526903,0.0026176723,0.016358025,-0.002258384,-0.021296505,-0.031717256,0.037820995,-0.03984078,-0.021585045,-0.030785048,-0.029120391,0.005379615,0.0025746687,0.04536744,-0.013461522,0.011597107,-0.047365025,0.026545722,0.029586496,0.019975878,0.0072856466,0.022628231,0.007834983,-0.022694817,0.04445743,-0.014882029,0.010498433,0.0018422198,0.009771533,0.00032634204,-0.01609168,-0.012917735,-0.009904706,0.04030688,-0.06121497,0.0060316054,-0.0011708084,0.021229919,0.00896695,-0.0027203262,-0.04321448,-0.008129072,0.016657664,0.014216167,-0.0015287095,0.008489748,0.0067196633,0.04332546,0.046832338,0.003135103,-0.036245123,0.013517011,-0.041083723,-0.028809655,-0.07262342,-0.0019434865,0.024881067,-0.010620508,-0.0107980715,-0.045101095,-0.016258145,0.019265624,-0.036999766,-0.020564057,0.027833058,0.01414958,-0.013017613,-0.024126422,-0.016946204,0.046787947,-0.016635468,-0.003687214,-0.002291677,0.012606999,0.0036234024,0.05073873,0.053135835,-0.031007001,0.028809655,-0.005787456,0.017822923,-0.019864902,-0.030074794,0.05868469,0.03484681,0.033270936,0.022794696,-0.041705195,0.0043447535,0.025213998,-0.003237757,-0.018965986,0.039086133,0.027855253,-0.064633064,0.033270936,0.012784562,0.006425574,0.049762134,0.03657805,-0.023860076,-0.0019185166,0.009000243,-0.013650184,0.015448012,0.030762853,-0.015381427,-0.026967436,-0.0474982,0.026878653,-0.04352522,0.02055296,0.03697757,0.013161884,0.026923044,-0.0061425827,0.023571536,-0.011125455,0.038997352,-0.03513535,0.023038846,0.009677203,-0.01429385,0.004289265,0.015137277,0.01861086,0.02330519,-0.014948616,0.049939696,-0.026190596,-0.0013178531,-0.026989631,0.017656457,-0.0030074795,0.021784805,-0.009421956,0.010243187,0.008295538,-0.07475418,0.037976366,-0.07035948,0.011264176,0.025768884,0.052114848,-0.04090616,0.052425582,0.009876962,0.019531969,0.019654045,-0.05761931,0.008539688,0.024170812,-0.047808934,0.009349821,-0.0261684,0.023327386,0.019021476,0.041705195,0.01802268,-0.046166472,0.06418916,-0.032982394,-0.005132691,0.042948138,-0.037820995,0.0075242473,0.011452837,-0.032383118,0.0005323433,0.0285877,-0.023194214,-0.048519187,-0.027344758,0.051448982,0.010931244,0.0024179136,-0.06583162,-0.0027591682,0.040107124,0.009860315,-0.009638362,-0.013794454,0.00433643,-0.046344038,-0.0023846205,-0.037820995,-0.050516777,0.025080824,0.0026204467,0.036111947,0.0007317553,0.0068583847,-0.037399285,-0.004855248,0.01967624,-0.06822872,-0.0077905925,0.014981909,-0.036245123,0.029875036,-0.0039674314,0.0018866108,-0.014071897,-0.009516287,0.021474069,0.02055296,0.022328593,0.092599295,-0.033071175,-0.041549828,-0.0036899885,-0.011519423,-0.039019547,0.0044668284,0.008228952,0.016491197,0.03120676,0.039951757,-0.040107124,0.012995418,-0.041438848,0.060993016,0.027699884,-0.0029048256,0.0018699642,-0.0736888,0.022428472,-0.0018200245,0.009144513,0.032005794,-0.008362125,0.005693125,0.040817376,0.02248396,0.010270931,-0.05113825,0.005160435,-0.022561645,-0.0021016288,-0.0012727686,0.024370572,0.010454043,-0.016901812,0.009754887,-0.0047858874,0.021363093,-0.010309773,0.014948616,-0.043014724,0.019076964,0.03087383,0.0015869725,0.04590013,0.0142605575,0.032494094,-0.0663643,-0.029963817,-0.010454043,0.0010015683,0.012584804,0.014637879,-0.0460333,0.018965986,-0.027122803,-0.017190352,0.024925457,-0.011230882,0.0077129086,-0.0113751525,0.051937282,-0.05131581,-0.012729074,0.04123909,0.01817805,0.020530764,-0.014415925,-0.04110592,-0.01777853,-0.07213511,0.012684682,0.00983812,-0.0047220755,0.0012637518,-0.011863452,0.04545622,-0.026989631,-0.003193366,-0.015037397,0.026612308,0.05118264,-0.0017728591,-0.029076,-0.006653077,-0.0044723772,-0.013394936,0.00026929288,0.005055007,0.024148617,0.009155611,0.016457904,-0.027566712,-0.05859591,0.040506642,-0.052514363,-0.00402292,0.05229241,0.028965022,0.031495303,-0.060637888,-0.028232574,-0.016757542,0.12074309,0.030807244,-0.025302779,0.087760694,-0.02346056,-0.08403186,-0.011441739,0.018455492,-0.008667312,-0.018699642,-0.016579978,-0.016424611,-0.02563571,0.0261684,-0.021096747,0.043436438,-0.020441981,0.025480343,-0.026678896,0.024947653,0.0014073284,-0.046255257,-0.0045722565,-0.022594938,0.007424368,0.044413034,0.038176123,0.026301572,0.016069485,-0.03402558,0.012484924,-0.011796866,0.029808449,-0.016746445,0.011025575,-0.025280584,0.010897951,0.027810862,-0.017578773,-0.01429385,0.027522322,-0.01449361,-0.03591219,-0.004638843,-0.015636673,0.04643282,-0.011963331,0.01691291,0.013727867,0.00043558513,-0.034869004,-0.013117493,-0.0042032576,0.02141858,-0.0050355857,-0.0046083243,0.005365743,-0.018555371,0.02772208,0.008711702,0.039241504,-0.04740942,0.015436915,0.0130842,-0.0008968337,-0.014848736,-0.010626057,0.01129192,-0.018255733,0.03784319,0.011397348,0.0027272622,-0.021751512,-0.009960195,0.010198795,0.023638122,-0.059572507,-0.0033154408,0.026634505,-0.015448012,0.008744995,0.012229676,-0.018877205,-0.0049634506,-0.016879616,0.0040118224,0.05171533,-0.00010811597,0.045145486,-0.009488542,0.01153052,-0.007396624,-0.016424611,-0.03091822,0.0072412556,-0.004200483,-0.02330519,-0.013983115,-0.008511944,0.01173028,0.009244393,0.008029194,-0.0013268699,-0.0044446327,-0.0030740658,0.010997831,0.008811582,0.010859109,-0.010576118,0.0039618826,-0.004819181,-0.008828228,0.0140497,-0.018799521,0.016269242,-0.014127385,-0.002693969,0.012484924,-0.007191316,0.049229443,0.055843677,0.024481548,-0.032449704,-0.020220028,0.023282995,-0.011930038,0.032116774,-0.04594452,-0.06401159,-0.012118699,0.01173028,-0.01560338,0.027500125,0.017700847,-0.022572743,-0.02074162,0.036089752,0.0054628477,0.0062313643,-0.030163577,0.019454286,-0.019665143,-0.023105433,-0.03096261,0.0062868525,-0.005859591,0.020852597,0.022628231,-0.0071857674,-0.0193877,-0.0140497,0.026789872,-0.022073345,-0.033737037,-0.010725937,0.011358506,0.029164782,0.06179205,0.0039119427,0.036711223,-0.00673631,-0.009671655,-0.004200483,-0.0070636924,0.016369123,-0.025502538,-0.014338241,0.01826683,0.0055072387,-0.010393006,-0.0319836,0.0037815447,0.034713637,-0.017023887,0.033359718,0.0036372745,0.006048252,-0.01100338,-0.0030879378,-0.013794454,0.020386493,0.0193877,-0.0031073587,-0.009349821,0.04607769,0.021207724,0.032050185,0.024215203,-0.003373704,0.018444395,-0.06028276,0.021962369,0.0074132704,0.014904224,0.00523257,0.001016134,-0.027100608,-0.025413755,-0.035246328,0.009477444,0.016935106,0.023726905,0.014637879,0.006092643,-0.004641617,0.033515085,-0.020231126,-0.009349821,-0.039552238,0.035579257,0.040506642,0.02592425,0.003212787,0.0033043432,0.034669247,-0.01681303,-0.03595658,-0.01914355,0.006797347,-0.024725698,-0.014993006,-0.019831607,-0.004405791,0.045811348,-0.010598313,-0.0048580226,-0.020686131,-0.02849892,0.033603866,-0.0033404108,0.0012630582,-0.0023679738,0.053712916,0.015536794,0.03697757,0.0063811834,-0.023926662,-0.016291438,0.024969848,0.0017811825,-0.00930543,0.006353439,-0.0020627868,0.017578773,-0.004244874,0.017956095,0.012873343,-0.0056875763,0.019065866,0.011358506,-0.0032072382,0.025702296,0.035645846,0.005024488,0.029497713,0.018067071,0.010753681,0.037909776,0.003751026,0.009022438,-0.0067085656,-0.016990595,-0.020497471,-0.0363561,0.0019948133,-0.0022736434,0.004661038,-0.008634019,0.008223403,-0.03260507,0.0003207932,0.027211584,-0.019221233,-0.029675277,0.019787217,-0.028632091,0.054778297,-0.040528838,0.0053490964,-0.016990595,-0.015592283,-0.024770088,-0.0017645359,0.04463499,-0.01992039,-0.022950064,0.013949822,-0.005379615,0.015348133,0.053047054,-0.015448012,0.0055765994,-0.015714357,0.0051992773,0.008539688,0.004866346,-0.0019407121,0.01555899,-0.018799521,0.007879375,0.0012484924,-0.024614722,-0.014127385,-0.015303742,-0.0047303988,-0.03087383,0.0026384806,-0.011119906,-0.022628231,0.010065623,0.009433053,0.006653077,-0.038975157,0.007468759,0.039086133,-0.004292039,0.005892884,0.008545237,0.023771295,0.0513602,0.058862254,-0.054645125,0.031850427,-0.034913395,0.037954167,-0.009910255,0.027988425,-0.0029686375,0.007274549,0.008079133,0.0042143553,0.0070137526,0.012396142,0.019487578,-0.020652838,0.072534636,0.004777564,-0.013372741,0.002512244,0.020231126,0.031007001,-0.027788665,0.04696551,0.008495297,0.019598557,0.04450182,0.003309892,0.019243428,0.008400966,0.019043671,-0.04356961,-0.005737516,-0.001109771,0.001485706,-0.01080362,0.0075630895,-0.007729555,0.04303692,0.027389148,0.02694524,-0.021141138,-0.026101815,-0.0040007243,-0.02801062,0.013616891,-0.03120676,0.021651633,-0.012096504,-0.010947891,-0.0068084453,-0.0015786493,0.022839088,-0.0050133904,-0.027322562,0.016779738,0.025213998,0.03542389,-0.0049440297,0.04811967,-0.009261039,-0.0029103744,-0.023660317,-0.01604729,0.017323526,0.04423547,0.042615205,0.011308567,0.019887097,0.007374428,-0.010764779,-0.0032876965,0.0062147174,0.005251991,0.021973467,-0.01347262,-0.012496022,0.029408932,0.018599762,0.025258388,-0.00091348024,0.0065531977,0.05064995,0.014682271,0.024392767,-0.010587215,-0.007008204,-0.018433297,-0.014737759,-0.011225333,0.00022906368,0.029431127,-0.0470099,0.027322562,-0.04550061,0.005743065,-0.04811967,-0.03111798,-0.0030407726,-0.038065147,0.009138964,0.0024442705,0.014060799,-0.013494816,0.006503258,-0.021296505,0.038841985,0.0030990355,-0.0040728594,0.0151705695,0.007402173,-0.016124973,-0.00014955898,-0.012951028,0.021540655,-0.007080339,-0.035201937,0.004583354,0.037865385,-0.005354645,-0.033270936,-0.011397348,-0.021651633,-0.024303986,0.022162126,-0.003770447,0.048208453,-0.025324974,-0.012207481,-0.012251872,0.005698674,-0.016557783,-0.026878653,0.007940412,0.0008781063,0.022262007,-0.028143793,-0.008584078,0.011930038,-0.004932932,0.037665628,0.019321114,-0.0119522335,0.020663936,-0.044612795,-0.04356961,-0.027233781,0.0030019307,0.012817855,-0.05806322,0.010293126,0.024969848,0.058951035,-0.027056217,0.022905674,-0.02563571,-0.038841985,-0.0045583844,-0.044812553,-0.048652362,-0.00251918,-0.014327143,0.045633785,0.022839088,0.030207967,0.03737709,-0.004697106,0.0008066648,0.05859591,-0.0002521261,-0.040506642,0.06023837,-0.0061481316,0.0065421,-0.03910833,0.013439327,0.00828444,0.067740425,-0.007862727,0.031184565,-0.009688301,-0.027544517,0.012673585,0.010182149,0.032982394,0.008811582,-0.007507601,0.009732692,0.021019062,-0.024903262,0.020253321,-0.031228956,0.0054628477,0.031095784,0.037621237,0.018788423,-0.032360923,0.00023721355,0.03653366,-0.0017076602,0.021063454,0.03125115,0.030207967,-0.013672379,0.03411436,-0.021263212,-0.019698435,-0.035157546,0.0421713,-0.026567917,0.023282995,0.0067640543,-0.017501088,0.011752475,0.0016341378,0.0044612796,0.023971053,-0.053579744,-0.005024488,0.026035227,-0.012496022,-0.011419544,0.003309892,-0.0060260566,-0.024082031,-0.0063090483,-0.000061991115,0.044346448,-0.009405309,0.01187455,0.015747651,0.036622442,-0.003737154,0.009433053,-0.01070929,0.009777082,-0.035490476,0.0015883597,0.0056348625,0.039818585,0.027633298,-0.027211584,-0.005124368,-0.018544273,0.006014959,-0.0012145056,0.020730522,0.0058706887,-0.006314597,-0.015436915,0.0147155635,-0.022040052,0.022117736,0.044080105,-0.008706153,-0.0021654407,0.0060371542,0.010531727,0.009050183,-0.010254284,-0.004874669,-0.0053712917,0.030074794,-0.009904706,0.017900607,0.0034180947,0.016946204,0.01894379,0.0073355865,-0.005693125,0.017845118,0.0035096507,0.005465622,-0.049451396,-0.02510302,-0.0035429439,-0.040684205,0.0024650788,0.0033320875,0.0061869733,-0.009238844,-0.00032547503,-0.008500846,-0.024259593,0.044945724,0.013672379,-0.023882272,0.013172982,-0.012540412,-0.026190596,-0.019986976,0.018832814,-0.00969385,-0.014904224,0.01875513,0.018200245,0.019088062,-0.013972017,-0.02543595,0.0103430655,0.024370572,0.0034624855,-0.00071094703,-0.0027605554,-0.0079737045,0.033803623,0.022672622,0.0232608,0.052514363,-0.02821038,-0.0018352838,0.0143493395,0.020908086,0.018289026,0.02103016,-0.0062147174,0.005068879,0.013339448,-0.010143307,-0.0030213515,0.013661281,0.0140497,0.029586496,0.022617133,-0.026834263,0.015425817,-0.0009856154,-0.030119184,-0.017501088,-0.007457661,0.01758987,0.0061758757,-0.012373947,0.012951028,0.0008101328,-0.011608205,0.022794696,-0.004425212,-0.034180947,0.025968641,0.036178533,-0.009055732,-0.01022654,0.025058629,0.0029963816,0.013406034,0.010071171,0.0053047054,0.017767433,0.010232089,0.020896988,-0.05215924,0.021385288,0.010054525,0.012917735,0.019076964,-0.02108565,0.021784805,-0.012396142,0.0052658636,0.036178533,-0.005179856,-0.0109035,0.016535588,-0.019986976,0.021640535,-0.013306154,0.00042032576,-0.032249946,0.010387457,-0.008478651,-0.0032211104,0.004086732,0.0037843192,0.0266567,0.0066086864,-0.012717975,-0.028365746,-0.034269728,0.008744995,-0.061481312,0.0068361894,-0.031317737,0.011463935,0.005898433,-0.010925695,-0.013783356,-0.0071691205,-0.011541618,-0.0067196633,-0.02563571,-0.010853561,-0.0028909536,0.024792284,0.021429678,0.03125115,-0.016657664,0.032405313,-0.011752475,0.016646566,0.021895781,-0.04687673,-0.010004586,0.009954646,0.008695056,0.0014052475,0.013905431,0.06134814,0.050472386,0.015059592,-0.027300367,0.022273105,0.012828953,-0.0053768405,-0.013761161,0.0037926424,0.0007664356,0.010187698,0.019243428,0.014205069,-0.0387754,-0.005568276,0.016557783,-0.01758987,0.01584753,0.009077927,0.014848736,-0.06818433,0.008378771,0.008850424,-0.039818585,0.004269844,-0.0013261763,0.025768884,0.0013005129,0.0072634513,0.04370278,-0.0071413764,0.03271605,0.045345243,-0.02006466,-0.005898433,0.02219542,-0.02854331,0.031406518,0.013838844,-0.0062979506,0.0021196627,0.028387941,-0.0009252716,0.0068361894,-0.013505913,-0.018000485,-0.049407005,-0.025058629,-0.0033182153,-0.034957785,0.03737709,-0.047187462,-0.011408446,-0.019698435,-0.001012666,-0.011907843,0.008018095,-0.007773946,-0.0059816656,0.009671655,-0.002270869,0.018732935,0.007540894,-0.0018408326,0.00038668583,0.022162126,-0.0026384806,-0.0009356757,-0.0075575407,0.002037817,-0.027544517,0.00998239,-0.026590113,-0.025058629,-0.020963574,-0.0054628477,-0.0029048256,0.0017048857,-0.00060170394,0.0089447545,0.014371535,-0.006364537,0.009488542,-0.0049856463,-0.0022500607,0.013605792,-0.021696024,0.02399325,-0.00085105567,-0.020286614,0.028898437,0.022406276,0.0075575407,-0.049007487,-0.025902055,0.009039084,0.024237398,-0.00021501814,-0.04212691,-0.010570569,0.014848736,-0.016113875,-0.015681064,-0.016702054,-0.035268523,0.006802896,-0.053712916,0.007685164,0.005665381,0.029342346,-0.031628475,-0.0047165267,-0.011330762,0.019310016,-0.011408446,-0.021363093,0.024481548,-0.02205115,0.023527145,0.020175638,-0.0030768402,0.05868469,-0.017467795,-0.012484924,-0.056864668,-0.023527145,0.029053805,-0.0044529564,-0.058551516,-0.014726661,-0.004697106,-0.016435709,-0.01410519,0.026923044,0.046743553,-0.02160724,0.0062313643,0.036822204,-0.018078169,0.008450906,0.041416653,-0.009843669,0.002743909,0.032849222,0.04181617,-0.011541618,0.0020738845,-0.020586252,0.020497471,-0.036644638,-0.009516287,0.023771295,-0.004308686,0.0105539225,0.0030851634,0.008700605,0.006464416,-0.009832571,0.007862727,-0.024237398,0.018988183,-0.0062147174,0.039574433,0.020919183,0.01429385,0.017312428,0.011930038,-0.014693368,-0.017745238,0.007158023,0.0031156822,0.029608691,-0.034003384,0.02379349,-0.00380374,-0.007962607,-0.006170327,0.0086395675,0.008855972,-0.016469002,0.003862003,0.021485167,0.0092111,0.018888302,-0.03218336,-0.016258145,-0.005715321,0.011430642,0.0057264185,-0.020131245,0.008006997,0.0065088067,0.0032599524,-0.0030990355,-0.01861086,-0.016080583,-0.026545722,0.0021598919,0.04317009,-0.022816893,-0.019787217,-0.007052595,-0.030474313,0.0025358268,-0.013239568,0.049540177,-0.030696265,-0.010653801,0.0008482812,-0.005496141,-0.04132787,-0.008217854,0.033159956,-0.01777853,0.032982394,-0.024015445,-0.01603619,0.009100122,0.043614,0.012606999,0.010703742,-0.0066586263,-0.030363334,-0.013738965,-0.0031129078,0.012706878,0.03300459,0.007529796,0.00044876366,-0.0445906,0.021940174,-0.0058540422,-0.012307361,0.018078169,-0.01521496,-0.02510302,0.016025092,0.00044217438,0.005965019,-0.02539156,-0.036245123,0.014027505,-0.014060799,-0.017090473,-0.027633298,0.0032599524,0.0041255737,0.014804346,-0.0119522335,-0.009022438,0.030052599,0.012684682,-0.0033043432,0.025458148,0.052026063,0.01875513,-0.044901334,0.015103984,-0.02330519,-0.0237491,0.028432334,0.02088589,-0.010237638,-0.002893728,0.02641255,0.016979497,-0.017245842,0.035024375,-0.018732935,-0.021496264,0.015625576,0.01996478,-0.03096261,0.047143072,-0.030940415,-0.007474308,-0.03455827,-0.04487914,0.0013865201,-0.034136556,0.031961404,0.036245123,-0.02878746,-0.012007723,-0.004977323,-0.044346448,-0.0032211104,0.01701279,0.013572499,-0.030252358,0.010376359,0.022217616,0.01400531,-0.02064174,0.01400531,-0.021141138,-0.0124072395,0.03988517,-0.035113156,0.028321356,0.0031683962,0.013017613,0.005587697,-0.011303018,0.014071897,0.039574433,-0.0044501815,0.013639086,-0.0016965624,0.004278167,0.0092111,-0.014327143,0.0047165267,0.0021376964,0.04148324,-0.024259593,0.019010378,0.014793248,-0.011841256,0.018255733,0.0073910747,-0.0067085656,-0.02534717,0.014116287,0.02243957]},{"id":"interface-MessageFlagsResolvable","type":"interface","source":"main","text":"Interface: MessageFlagsResolvable","meta":{"url":"/docs/typedefs/MessageFlagsResolvable"},"embedding":[-0.01316777,-0.0012860775,-0.022533674,0.053725608,0.019647589,-0.010607755,-0.059997298,-0.028167093,0.04676015,-0.0259054,-0.016289737,0.0014404416,-0.02787571,0.065713964,0.0017561073,-0.029110622,-0.016622748,0.0334675,-0.000071653514,0.032662727,0.05516865,0.019592086,0.04645489,0.032024458,-0.0037394245,0.013674222,0.010802011,-0.03846265,0.01201611,0.0073747835,0.053531352,-0.040210955,0.01952271,-0.033523005,0.026793428,0.02387959,0.0002703538,-0.0062300614,-0.03246847,-0.009705853,-0.016872505,-0.0055709793,-0.015970603,-0.007832672,-0.051616546,0.023740835,0.02403222,0.050978277,0.021243261,-0.014943822,-0.02659917,-0.009872358,0.033189993,0.043180294,-0.031524945,0.0013537202,-0.008873329,0.0017847253,-0.0061294646,0.03807414,-0.023740835,-0.040238705,-0.029998649,-0.043291297,-0.02536426,0.059275776,-0.011752477,0.008269748,0.01567922,0.012689067,0.010628568,0.006760796,0.0039302115,-0.030331658,-0.020327484,-0.006368816,0.03840715,0.05455813,0.017011259,-0.04337455,-0.040960226,0.013549343,-0.038573656,-0.06632449,-0.02236717,-0.005574448,-0.061939854,-0.008963519,-0.036658846,-0.062272865,-0.050589766,0.043235794,-0.024892496,-0.02826422,-0.015360085,-0.073928215,-0.033162244,0.0010475939,-0.029998649,-0.00450951,0.070376106,-0.004457477,-0.026460417,0.021770528,0.001552312,-0.012564189,0.042902786,-0.013674222,-0.03435553,0.01719164,-0.04870271,0.012307494,-0.001259194,0.012605815,0.019716965,-0.016941883,-0.02826422,0.0058970517,0.01567922,0.020271981,-0.021562396,0.030525913,-0.0027265192,0.015165829,0.013958668,-0.023615956,-0.00384349,-0.0038157392,-0.029415881,0.02236717,0.051339038,0.016872505,0.03768563,0.019161949,-0.06576947,-0.0063965665,-0.040960226,-0.003050857,-0.025669519,-0.028319722,-0.032607228,-0.016761502,-0.007499662,0.012217304,0.02899962,0.024281977,-0.03904542,0.019855719,0.017441398,0.026793428,-0.0018783844,0.026557546,-0.0035434342,0.008803952,-0.018634683,-0.03405027,0.029915396,-0.025253257,0.0066775437,0.0047904872,-0.020951878,-0.01598448,-0.0099625485,-0.016095482,-0.013327337,-0.000515992,0.05749972,0.026668549,-0.039628185,0.009886233,0.010982391,-0.004287503,-0.011135021,-0.011017079,-0.022644678,0.017316518,0.018107418,0.025170004,-0.03371726,0.0036977981,0.046815652,0.041487493,0.015498839,-0.111724846,-0.021382015,-0.0011542612,-0.011322339,0.0063722846,0.03435553,-0.02372696,-0.05211606,0.022159038,0.027043184,0.067656524,0.056944706,0.019897345,0.02418485,-0.025308758,-0.04240327,-0.07481624,-0.05108928,-0.039517183,0.080588415,-0.011981421,-0.056306437,-0.026002528,-0.010975454,0.0070313667,-0.0036214835,0.0052587823,0.034161273,0.026932182,-0.01719164,-0.015693095,-0.014159861,-0.022866685,-0.011266837,0.010947702,-0.012904136,-0.041209985,0.012002234,-0.0011828792,0.03804639,0.011807978,0.01153047,0.042653028,0.0130428905,0.0016260253,-0.036575597,0.026821177,0.0020934532,0.023865715,0.010989329,-0.032829233,0.0012019578,-0.011898168,-0.022450423,-0.012827822,0.032190964,-0.007402534,-0.057055708,-0.002636329,0.03199671,0.0067330454,-0.04276403,-0.034216773,0.0013953465,0.0137366615,-0.0014777317,-0.015484964,0.011148896,-0.007236029,-0.00048000267,0.009671165,-0.0032433784,-0.009116148,0.013611782,-0.0005684584,-0.0035122146,0.006622042,-0.009046771,-0.023213571,0.0031341095,-0.0029034307,-0.012793133,-0.026044155,0.0051581855,0.031441692,-0.05744422,0.036270335,-0.021146134,-0.031941205,0.0151380785,0.01567922,-0.043874063,-0.059553284,0.017996414,0.03646459,0.0029537291,-0.055973426,-0.008290561,-0.030914426,0.032024458,-0.0010345856,-0.055973426,0.00363189,0.024295852,0.03768563,0.026071906,0.02487862,0.013466091,-0.0038053326,0.034966048,-0.026932182,-0.029915396,0.016289737,0.04534486,-0.039850194,0.040876973,0.0005792986,0.03196896,-0.011447217,-0.034799542,-0.025059,0.007818797,-0.012050798,0.02974889,-0.005848488,0.051949557,-0.017150013,-0.006077432,-0.063271895,-0.0768698,0.014596937,-0.06915507,-0.0668795,0.06538096,-0.0084223775,-0.006216186,0.016275862,0.0071527767,0.029915396,0.039877944,-0.031025428,0.026585296,-0.0117108505,0.024920246,0.014111297,0.024587236,0.03740812,-0.01598448,0.0036041392,0.0031393128,-0.0033977423,0.018315548,0.00826281,-0.062938884,0.022464298,-0.015304583,0.029804392,0.048397448,-0.023907341,-0.025503013,-0.00029246774,-0.0064936946,-0.030525913,-0.058609754,0.0053038774,0.0401832,-0.0007349634,-0.025294883,-0.024018344,-0.0009591381,-0.02152077,-0.014513684,-0.005647294,0.029610137,0.001970309,-0.05872076,0.02354658,-0.013001264,0.027584326,-0.04076597,-0.002990152,-0.034549784,0.013910104,-0.029499134,0.0021888467,0.021229386,-0.056889202,0.019508835,0.024198724,0.008519505,0.039350677,0.008727636,-0.03782438,-0.034966048,-0.028555606,0.0317192,-0.0010163742,0.052365817,0.014250051,-0.057333216,-0.06704601,-0.003652703,-0.007915924,-0.015304583,0.011870418,-0.03940618,0.0033248963,0.04404057,-0.010822824,0.008998207,-0.0084917545,0.005553635,-0.012744569,0.0031722668,0.025627892,0.021451393,-0.035992827,0.016581122,0.0034809948,0.004863333,0.054252874,-0.017413646,0.011357027,-0.018315548,0.013889291,0.016789252,0.003822677,0.023171945,-0.02405997,0.028888615,0.045261607,0.01261969,-0.0016988711,-0.006462475,-0.04909122,0.021798277,-0.00659776,0.0038851164,0.04304154,-0.03879566,-0.0013025546,0.028916366,0.0153462095,0.0007657495,-0.028944116,0.00529694,-0.051283535,-0.02751495,0.014832819,0.037241615,-0.0200361,0.012834759,-0.0036249524,0.02938813,-0.029415881,0.012959638,-0.0009834201,-0.021728901,-0.0075065996,0.003132375,-0.0072915307,0.0013563219,-0.0046378574,0.0007510069,0.049202222,0.040266454,-0.014222301,-0.04376306,-0.041820504,-0.026640797,0.003940618,-0.010940765,0.0020778435,0.02424035,0.045872122,0.027181938,0.00051859365,0.0098237945,0.030858925,0.0060635568,0.053475853,-0.030803422,-0.013833789,-0.009997237,-0.023629833,-0.022603052,0.018287798,-0.024157098,-0.002360555,0.019689215,-0.0068787374,0.021631774,-0.009518535,0.055557165,-0.05367011,-0.015915101,-0.0062820944,-0.01395173,-0.011384779,0.01603998,-0.0049639298,0.01837105,0.09535185,0.028111592,-0.0029571978,-0.08558356,0.052560072,-0.0024021813,-0.011988359,0.018329423,-0.017483024,-0.012779257,0.005126966,-0.010913014,-0.03979469,0.01982797,-0.083418995,0.011190522,-0.03604833,0.01401417,-0.019716965,0.07886786,0.040710468,0.0034133522,0.011155834,-0.064825945,-0.050617516,0.056084428,0.026682423,-0.027598202,0.0007436355,-0.056583945,-0.014208426,-0.02969339,0.010586942,-0.01183573,0.022797307,-0.022561425,-0.008901079,0.023213571,-0.012508687,-0.0050922777,0.018051915,-0.04212576,0.020480113,-0.023602081,-0.0021715024,0.021243261,-0.023310699,-0.01598448,-0.015151953,0.03765788,0.034549784,-0.00199806,-0.03207996,0.03568757,-0.013070641,0.0059907106,-0.018537555,-0.022270042,-0.0049431166,-0.032940235,-0.012238116,0.0007514405,0.023837963,0.013056766,-0.002461152,-0.042264514,0.0040169326,-0.0062057795,-0.0098237945,0.05108928,-0.042514272,-0.011905107,0.0034792605,0.0053038774,0.05042326,-0.05244907,-0.046926655,0.0045823557,-0.00094959873,-0.024920246,0.006195373,0.00384349,0.037380368,0.018759562,0.0023293353,0.020896375,0.023837963,-0.026224535,0.037269365,0.023796337,0.007985301,-0.013070641,-0.019716965,0.044456832,0.01504095,-0.0094769085,-0.0283891,0.023754712,0.0032971457,-0.03782438,-0.036520094,0.023518829,0.0010944234,0.00064520683,0.019855719,-0.012154864,0.000450951,0.047315165,0.025614018,-0.034910545,-0.033134494,0.0005207617,0.02118776,-0.02136814,0.008706823,0.008887203,-0.0013303055,-0.014666314,-0.023824088,0.044540085,0.013264897,-0.007000147,-0.03904542,0.022381045,0.019508835,-0.010482877,-0.007249905,-0.0036180145,-0.013091454,-0.049174473,-0.015013199,0.017899286,0.011308463,0.0516998,-0.019578211,-0.012973513,0.0028756799,-0.030942177,-0.0018991975,-0.056306437,0.03405027,-0.036492344,0.0037845196,0.022075785,-0.00083382573,0.032607228,0.009025957,-0.0001873181,-0.014416557,0.0043083164,-0.01767728,0.013854602,0.0115027195,-0.012321369,-0.008769263,0.03169145,-0.0018436959,0.007215216,0.004134874,0.029832143,0.010233119,0.037019607,0.029499134,-0.0027542699,0.02487862,-0.001133448,0.0011343152,0.012342182,-0.0032919424,0.025114503,0.006837111,-0.0057548285,0.03133069,-0.01852368,-0.0039614313,-0.018815063,0.023144193,-0.02272793,-0.00027902593,-0.014569187,-0.008137931,0.0082836235,0.011877356,-0.021978658,0.012661316,0.021909282,0.029166123,0.034938294,-0.008581945,0.0052483757,0.0040308083,-0.002396978,-0.0102747455,-0.0015089514,-0.027348444,0.022117412,0.012245054,-0.03946168,-0.017413646,0.00020271115,0.0031878767,0.0034619162,-0.025447512,-0.018315548,-0.0039857132,0.012314431,-0.014180674,-0.0034324308,0.003132375,0.023310699,-0.021382015,0.04415157,0.014090484,0.02869436,-0.020299733,-0.037130613,-0.032912485,0.0131122675,-0.014929947,0.00783961,-0.03269048,0.015457213,-0.0056299497,0.047925685,0.033911515,-0.011995297,-0.009837669,-0.008464003,-0.0018870565,0.006500632,0.018482054,0.026071906,0.02938813,0.046010878,0.004367287,-0.015762473,0.011898168,0.014569187,0.07181915,0.0147911925,0.011599847,0.037491374,0.01982797,-0.027445571,0.034272276,-0.023643708,0.0334675,-0.0266963,0.026682423,-0.0013545874,0.008790076,0.011891231,0.0042077196,-0.045067348,-0.0062994384,0.015665345,0.002006732,-0.008221184,-0.040349707,-0.014222301,0.007090337,-0.01468019,0.0077355443,-0.030609166,0.020715995,0.01588735,0.011072582,0.011481906,0.00020509599,0.022714054,-0.009678102,-0.0048563955,0.027223565,0.0069897408,-0.023962842,-0.021423642,0.08619408,-0.015110328,-0.011481906,0.028472353,0.028125467,-0.013792163,-0.0350493,0.013486904,0.02175665,-0.031275187,0.025405886,-0.024143223,-0.030692419,0.0015939383,-0.018065792,-0.0200916,-0.006545727,-0.036631096,-0.010899139,-0.0067469208,-0.019453332,-0.039517183,-0.024517858,-0.026155159,-0.013604845,-0.020549491,0.0051200283,-0.0029259783,0.01982797,-0.019786343,0.039295178,-0.0045927623,-0.016400741,0.009379781,0.0064035044,0.0014569187,-0.08452903,0.004891084,-0.026890555,-0.017025135,-0.0074302847,-0.0018228827,-0.031524945,0.012723756,0.014943822,-0.0150687015,0.010649381,-0.0055397595,0.018384926,-0.0074233473,0.067712024,0.0010250463,-0.018190669,0.014305553,0.00035187186,-0.00064737484,-0.015637593,-0.011343152,-0.00908146,0.009990299,0.007922863,-0.0062543433,-0.047176413,-0.0016477056,0.041459743,-0.014145986,0.007811859,0.009872358,0.02739007,0.009900109,0.01685863,-0.030942177,0.023144193,0.013514655,-0.0034792605,0.008713761,0.014916072,-0.0069932095,-0.020438487,0.0077494197,0.0015696564,0.0098237945,0.029582385,-0.020688245,0.010129053,0.007215216,-0.065713964,-0.015928976,0.0035399653,-0.017455272,0.004610107,0.00995561,-0.01721939,-0.0152768325,-0.035382308,-0.046815652,-0.04079372,-0.010510627,-0.01310533,-0.0046170447,0.048203193,-0.029554635,-0.02288056,-0.004610107,0.008512568,-0.021784402,-0.0067746714,-0.003408149,0.018204546,0.022325544,0.022478173,-0.0047731427,0.0029485258,0.01386154,0.02100738,0.034244526,-0.027417822,0.028347474,0.017871534,-0.004845989,-0.0062127174,0.0018575712,-0.000167047,0.018801188,0.01837105,0.017413646,0.04312479,0.007957551,0.0061051827,0.037213866,0.031663697,0.031830203,0.005345504,-0.009379781,-0.027473323,-0.017399771,0.04537261,0.022200665,-0.002242614,-0.063271895,-0.019023195,-0.0084223775,-0.0150687015,0.027070936,0.029110622,0.028888615,-0.03141394,-0.017760532,0.014610812,0.059664287,0.0010024988,0.0018367581,0.022977687,-0.055945676,-0.02808384,0.01261969,-0.02872211,-0.024101596,0.014444307,-0.023754712,0.0096503515,0.025780521,0.0038330834,-0.014763442,0.008026928,-0.0057687038,-0.018995443,0.012411559,-0.019425582,0.0010623365,0.0062820944,-0.038573656,-0.007249905,0.01567922,-0.053919863,0.00081301265,-0.012349119,0.015609843,0.013237147,-0.004363818,0.0148605695,0.00886639,-0.01186348,0.021645648,0.00094873155,-0.015318459,0.004676015,-0.023504954,-0.021271013,0.007145839,-0.04551136,0.040460713,0.0062786257,-0.020563366,-0.0200361,0.030276157,-0.06182885,0.051339038,-0.012154864,-0.020743746,-0.04204251,-0.02659917,-0.04343005,0.0014074874,0.012113238,0.06876656,-0.035521064,-0.0070938063,-0.017385896,-0.05611218,-0.008963519,0.010226181,0.049368728,0.011218273,0.012376871,0.0147911925,0.010122116,0.007693918,0.008921892,0.02708481,0.03804639,-0.007860423,0.018273922,0.000020325315,-0.027223565,-0.0023432109,0.050562013,0.02057724,-0.016789252,0.028805362,-0.016081607,-0.006583885,-0.0041418117,0.047981188,-0.012453185,0.005695858,0.02523938,0.016081607,-0.014111297,0.007048711,-0.007340095,-0.047953434,0.03982244,0.006431255,0.023990594,-0.0037914573,0.001230576,0.026835054,-0.0058762385,-0.007964488,0.008644383,0.026807303,-0.021659523,-0.077036306,0.032940235,0.023754712,0.00593174,-0.010670194,0.013473028,0.019619837,0.0038885851,-0.004159156,-0.037963137,0.006722639,0.010378811,-0.0029225093,-0.008894142,-0.008165682,0.011155834,-0.025350384,0.021326514,-0.0023952436,-0.016456243,0.023463327,0.030192904,0.01752465,0.031219685,-0.0022113943,-0.009740542,-0.017122263,0.05849875,-0.054280624,0.015734721,-0.00986542,-0.011544346,-0.016456243,-0.0063202516,-0.0051651234,-0.022131288,0.031136433,-0.0003358284,-0.014111297,-0.024975749,-0.009934798,0.02690443,0.01468019,0.02039686,-0.013244084,0.02136814,0.0016086809,0.0060635568,0.0006421716,0.0049014906,-0.023907341,-0.006812829,-0.004471353,-0.0032884735,0.015693095,0.017483024,0.012224241,0.02372696,-0.004669077,-0.042514272,0.01277232,-0.0484807,-0.007333157,-0.049229976,0.02405997,-0.020119352,-0.020896375,0.03438328,-0.009830732,0.003770644,-0.02651592,0.03371726,0.0032832702,0.018190669,-0.016026106,0.026987683,-0.031802453,0.03940618,-0.022464298,0.01010824,-0.023685334,0.049895994,0.008137931,-0.00026905298,0.033634007,-0.030636918,-0.0150687015,-0.008339125,0.0029571978,-0.045039598,0.034855045,-0.023602081,-0.026654674,0.011343152,-0.03446653,0.009587912,-0.019536585,0.031136433,0.021451393,-0.0072290916,-0.018273922,-0.01010824,0.011343152,0.0076384163,0.01888444,0.0031826734,-0.01144028,-0.0005233633,0.0150687015,0.01017068,-0.014666314,0.00018319885,-0.0158596,0.006001117,-0.05511315,0.040488463,-0.011336215,-0.020313608,0.017871534,-0.016012229,0.013223271,0.009095334,0.002599906,-0.035299055,0.028611107,0.024073847,-0.0043742247,-0.007305406,-0.03965594,0.024143223,-0.018967694,-0.012931887,-0.024129348,0.08830314,-0.0030179028,-0.0025079814,0.052171562,-0.034189023,0.0400167,-0.00066645356,0.020258106,-0.0012895464,0.024836993,-0.03038716,-0.0011403857,-0.013833789,-0.011648411,0.0020483583,0.033412002,-0.0007835274,0.01616486,0.0054773204,-0.0080408035,-0.01192592,-0.040099952,0.0046205134,-0.004349943,-0.0056854514,-0.018509803,-0.02270018,0.014916072,0.038268395,0.026307788,-0.028666608,0.017205516,-0.0018766499,-0.027598202,-0.02154852,0.025294883,-0.014666314,-0.054641385,0.03840715,-0.0367421,0.01077426,-0.014028045,-0.022936061,0.0158596,-0.0015878679,-0.016941883,-0.012120175,-0.02154852,0.0097891055,0.0021767057,-0.013299585,-0.02659917,0.01873181,-0.032884736,-0.000027859232,-0.0020379517,0.04273628,-0.008144869,0.018135168,-0.003940618,-0.03973919,0.021423642,-0.01598448,0.0074233473,0.038906664,0.04548361,0.027764706,0.000889761,0.0050194315,0.0033509128,-0.03632584,-0.020618867,0.020299733,-0.00033756284,-0.022339419,-0.0010744774,-0.025059,-0.016109357,0.011086457,0.013653409,0.022922186,-0.0024715583,-0.013917042,0.0060878387,-0.038573656,0.018953817,0.040599465,-0.030165153,-0.024087721,-0.022644678,0.023921216,0.011148896,0.00077051914,-0.023990594,-0.0152074555,0.016719876,0.01655337,-0.000901902,-0.013625658,-0.01567922,0.007451098,0.015027075,-0.006108652,0.010885264,-0.03471629,0.00726378,0.013729723,-0.0037810507,0.009053709,-0.020604992,-0.024157098,-0.024004469,-0.00817262,-0.004242408,0.011114208,-0.0075829145,0.03807414,-0.03771338,0.027764706,-0.012279742,-0.025558515,0.021479143,-0.012134051,0.0022877092,-0.006844049,0.0025686864,-0.0011187054,0.021201635,0.022034159,-0.0056542316,0.0024247288,0.016664375,-0.00035859278,0.014652438,0.0035659818,0.022589177,0.011488844,-0.0068197665,-0.019286828,-0.021146134,0.05949778,0.003944087,-0.0061884355,-0.009116148,-0.015998354,0.02623841,-0.022408796,-0.016650498,-0.03943393,0.012675192,-0.016747626,0.004922304,0.0021333452,-0.03105318,0.029721139,-0.022519799,0.009192463,-0.002112532,0.006462475,0.01437493,-0.0049292413,0.033772763,-0.030775672,0.004179969,0.0013823382,0.0064208484,0.013500779,0.0351048,0.0048286445,-0.018107418,-0.035243556,0.011565159,-0.011891231,0.016969632,0.025170004,-0.009969486,-0.02157627,-0.007340095,-0.013500779,-0.0115374075,-0.037130613,-0.021271013,0.024268102,0.0333565,0.003002293,-0.013146956,-0.0017110122,0.007902049,-0.017455272,-0.0060392744,0.0132857105,-0.0077910456,-0.032551724,0.00626475,-0.014569187,-0.0020310138,-0.013611782,0.048536204,0.0025513421,-0.014652438,-0.022963813,-0.02639104,0.023158068,-0.04612188,-0.010850575,-0.015970603,-0.009671165,0.0065908222,0.018273922,-0.013264897,-0.004839051,-0.0070695244,-0.0016589793,-0.0020882501,0.012633566,-0.009879296,-0.019328455,-0.008394626,0.0017899286,0.04612188,-0.022048036,0.004554605,-0.00029832142,-0.0059213336,-0.041459743,0.013917042,0.013029015,0.006094776,-0.0056230123,-0.016511744,0.0015436399,0.017108386,-0.013278773,-0.00038829484,0.0054773204,0.004845989,-0.033800513,0.013986419,-0.017691154,0.015401711,-0.015928976,0.00076314784,0.0001610849,-0.04473434,-0.046232883,0.008387689,0.029582385,0.0020743746,-0.019161949,0.022616927,0.015790222,0.023893466,0.00029788783,-0.009345092,0.0071805273,-0.020604992,0.0039995885,-0.020688245,-0.0044817594,-0.010344123,0.013889291,0.0039683688,0.013965606,0.010739571,0.017080637,-0.0022720993,-0.0007965356,0.017816033,0.03249622,-0.025503013,0.0102747455,0.01939783,-0.0041001854,0.016594997,0.014666314,-0.03332875,0.021493018,-0.010427374,0.034494285,-0.016928006,0.011662287,0.034771793,0.015360085,0.003749831,-0.03876791,-0.013327337,0.023657583,-0.025059,-0.000049675073,0.006292501,-0.030858925,-0.026835054,-0.009726666,-0.03405027,0.031913456,0.0005081871,-0.028014464,-0.036298085,0.02206191,-0.025336508,-0.000979084,0.017330393,0.039322928,-0.042347766,-0.00859582,0.022408796,0.00568892,-0.046815652,-0.0069862716,-0.0015384367,-0.024226476,0.03368951,-0.022297792,0.016969632,0.004204251,0.028139343,0.012945763,0.04576112,0.00011338816,-0.019078696,0.013133081,0.0016511744,-0.006368816,0.01153047,0.052310318,0.019814093,-0.000055068056,0.0009469971,0.060663316,0.0018506335,-0.012182615,-0.010295559,-0.007520475,0.0044540083,0.02899962,-0.013278773,0.02757045,-0.0134938415,-0.013035953,-0.008852515,-0.019508835,0.0054010055,0.0048043625,-0.03865691,0.0013424464,0.0113292765,-0.01988347,0.015124203,0.02000835,-0.005550166,0.02188153,0.014305553,-0.007957551,-0.0043117856,0.041987006,0.044262577,0.0046864217,-0.053364847,-0.00079566834,-0.016608872,0.009726666,-0.03546556,0.011717788,-0.0016893318,0.03038716,0.014118236,-0.0034116178,0.014735691,0.019134197,0.008824764,-0.00086547906,0.02267243,0.007624541,0.016386867,-0.019925097,0.017080637,0.015457213,0.011669224,0.0023570862,-0.0040169326,0.047259666,0.019023195,-0.017663404,-0.02270018,-0.020452362,0.009310404,0.014957698,-0.014416557,0.0350493]},{"id":"interface-MessageFlagsString","type":"interface","source":"main","text":"Interface: MessageFlagsString","meta":{"url":"/docs/typedefs/MessageFlagsString"},"embedding":[-0.001211521,-0.023829153,-0.051691562,0.038933296,0.01820454,0.0028757548,-0.03179964,-0.012607364,0.049002726,-0.029577233,-0.034186672,-0.018602379,-0.017779265,0.061239686,0.007675539,-0.03868636,-0.026682615,0.037012696,-0.0011832265,0.04999046,0.026476836,0.031854514,0.028699243,0.06678199,0.014802335,0.0030781038,0.013348167,-0.022594482,0.012381008,0.0040984224,0.024446487,-0.044832278,0.035476215,-0.03188195,0.0327325,0.024569955,0.008073377,0.008903351,-0.03064728,-0.016558312,-0.031470396,0.01589982,0.017312832,0.008862195,-0.020330917,0.035750587,0.062666416,0.04310374,-0.0045648534,0.0036045536,-0.036738325,-0.01916484,0.023637092,0.033281244,-0.0060601775,0.009205159,-0.0064134304,0.008162548,0.020372074,0.029522358,-0.0327325,-0.020536697,-0.03629933,-0.03613471,-0.022676792,0.040085655,-0.0254891,0.05525839,0.031196022,0.03352818,0.026271058,-0.021291217,-0.00680098,0.01197631,-0.014980676,-0.010048851,-0.005796095,0.019000217,0.035037223,-0.03303431,-0.008265438,0.021222625,-0.031360645,-0.05586201,-0.002575661,0.0118802795,-0.057617985,0.014925802,-0.04011309,-0.03322637,-0.052295182,0.025022667,-0.038658924,-0.028973615,-0.030098537,-0.02653171,-0.026394524,-0.0047809207,-0.03275994,-0.047383934,0.08209191,-0.0017748397,-0.03747913,0.01599585,0.0044105197,-0.015351078,0.02345875,0.0058681173,-0.035585966,0.00016451564,-0.052212868,0.029001052,0.0075520715,0.011523597,0.031415522,0.022086894,0.0052164854,0.015707761,0.07633011,0.011105181,-0.012271259,0.001984048,0.013622538,0.0020663594,0.007867599,-0.02481689,-0.026284777,-0.015351078,-0.02710789,0.011832265,0.046039514,0.0062042223,0.033857424,0.030482657,-0.016297659,-0.012408445,-0.028177937,0.027423417,-0.054160904,0.019658707,-0.010583875,-0.019315744,0.015392233,0.021565588,0.023102067,0.0076412424,-0.057343613,0.028946178,0.025242165,0.032266073,-0.00871815,0.03690295,-0.017011024,0.016174192,-0.010096866,-0.021400966,0.011845984,-0.019233432,0.013156107,0.0065403273,-0.010302644,-0.044310976,-0.016050724,-0.008745587,-0.014582838,-0.0027419988,0.055779696,-0.009369782,-0.033198934,0.0058475398,0.01216151,-0.030921651,0.0057515097,-0.019288307,-0.033747677,0.00834089,0.0057617985,0.0063825636,-0.06749535,-0.02175765,0.06189818,0.058825217,0.025406787,-0.104590364,-0.01541967,-0.0064340085,0.01668178,-0.0048529436,0.026257338,-0.036656015,-0.022100613,0.025324477,0.047109563,0.0423355,0.019891923,-0.0019205995,0.03056497,-0.041704446,0.0048255064,-0.051965933,-0.013265855,-0.008773024,0.05018252,-0.044749968,-0.033116624,-0.036107272,0.009952821,0.020550415,-0.010693624,0.041320328,0.05117026,0.014857209,-0.021318654,-0.042390376,-0.024432769,-0.015008113,-0.019850768,-0.005449701,-0.025324477,-0.05501146,0.008457497,0.0064408677,0.05717899,-0.0076412424,-0.0071542333,0.057508238,0.0006387708,0.03821993,-0.040469777,-0.0062110815,0.020838505,0.006821558,0.0071542333,-0.078415334,-0.036957823,0.015159017,-0.032238636,-0.018410318,0.03668345,-0.01503555,-0.035119534,0.018794438,0.037588876,0.027670352,-0.03245813,-0.004770632,-0.0017919879,0.034241546,-0.027752662,-0.002680265,0.036820635,0.00016022859,0.0046608835,-0.004897529,0.0032976007,0.025159853,0.0051478925,0.026614022,0.034323856,0.007106218,0.007991066,-0.041073393,-0.0032427264,-0.024048649,-0.0015347648,-0.0024076086,0.032485567,0.033747677,-0.053859096,0.032266073,-0.009445234,-0.021977145,0.044420723,0.06436752,0.0024984942,-0.061843302,0.01072792,0.03764375,0.0036834355,-0.029083364,-0.044118915,-0.025653722,0.0094177965,0.010364378,-0.03813762,0.0042870524,0.0377535,0.026120152,0.049030162,0.004455105,-0.015735198,-0.0051719,0.04186907,-0.026078997,-0.00078924635,0.032485567,0.011811687,-0.0018365732,0.04359761,0.028946178,0.024254428,0.0035496794,-0.016119318,-0.031168586,-0.034680538,-0.012675957,0.037232194,-0.014281029,0.0133344475,-0.046505947,0.009026818,-0.060745817,-0.069690324,0.0022001152,-0.07248891,-0.023719404,0.04826192,0.06091044,-0.01389691,0.016270222,-0.0007270841,0.03821993,0.035092097,-0.02826025,0.04941428,0.00088741985,0.054764524,0.024295583,0.031772204,0.04933197,-0.017847857,-0.01714821,0.008018503,-0.009225737,0.03188195,-0.0024676274,-0.05898984,0.019507803,-0.008567246,0.047850363,0.057508238,-0.003047237,-0.011763672,-0.014239874,0.009843073,-0.03698526,-0.07671423,0.03336356,0.033583052,0.013862613,-0.025118697,0.012079199,0.00037683191,-0.04282937,-0.009877369,-0.048728354,0.036930386,0.009397219,-0.011551034,0.05182875,-0.021304935,0.023143224,-0.031250898,-0.014980676,-0.034351293,-0.017943887,-0.029247986,-0.0013770013,0.013711709,-0.06689174,0.009218877,0.013862613,0.008375186,0.001514187,0.031415522,-0.021538151,-0.036052395,-0.028863866,0.05089589,-0.021222625,0.04082646,0.019987954,-0.042472687,-0.008382045,0.0044859718,0.0023784568,-0.018835593,0.025420506,-0.012271259,0.028095627,0.040661834,0.0023304417,-0.019864487,-0.0030420923,-0.016105598,0.026106434,-0.006903869,0.031168586,0.025132416,-0.050017897,0.026737489,0.0018451473,0.020317199,0.04118314,-0.010316363,-0.0054154047,-0.023321565,0.04126545,0.0327325,0.0047294763,0.03256788,-0.039701536,0.03564084,0.035201844,0.0076481015,0.007586368,-0.023403877,-0.0490576,0.002126378,-0.0016016428,0.015639167,0.04414635,-0.010652468,0.0013049787,0.03018085,0.025132416,-0.01686012,-0.055066332,0.012017465,-0.07874458,-0.03725963,0.0002181038,0.0065780533,0.017285395,0.03542134,-0.038165055,0.033857424,-0.0058063837,0.03706757,-0.00028165933,-0.018245695,0.007682398,-0.006019022,-0.008786743,0.01838288,-0.014582838,0.032403257,0.03448848,0.030811904,-0.027807537,-0.06579425,-0.031196022,-0.07863483,0.011557894,-0.0130737955,-0.010755357,-0.0031827078,0.05487427,0.030757029,-0.024199553,0.02107172,0.019315744,-0.015474545,0.05287136,-0.006588342,-0.0068730023,-0.008587823,-0.00718167,0.009013099,0.026902111,-0.033198934,0.00036482816,0.00030480942,0.025941812,0.025187291,-0.028177937,0.04955147,-0.05361216,-0.004942114,-0.024830608,-0.0029374883,0.012257541,-0.0048392247,-0.030482657,-0.026847238,0.12094289,0.048453983,-0.015186454,-0.047164436,0.0040538367,-0.019960517,0.0005208769,0.0017191081,-0.017093336,-0.011839124,-0.010967995,0.000073576535,-0.037972994,0.010933698,-0.082421154,0.018725846,-0.021908553,0.028891305,-0.012120355,0.09449349,0.043570172,-0.01810851,-0.0065849125,-0.06370903,-0.04656082,-0.0032015708,-0.009088552,-0.016777808,-0.012991483,-0.038439427,0.0044791126,-0.027862411,0.039152794,-0.007675539,-0.0021778226,-0.00603274,-0.004108711,0.03698526,-0.02413096,0.010775935,-0.003486231,-0.039125357,0.002815736,-0.012874876,-0.029247986,0.023321565,-0.03918023,0.016078161,-0.026284777,0.007119937,-0.0056417612,-0.006646646,-0.025859501,0.045188963,-0.0103506595,-0.018012479,-0.029714419,0.0154608255,0.0040572663,-0.032513008,0.0072159665,-0.0346531,0.042692184,0.016969869,-0.0052747894,-0.04195138,-0.008210563,0.008992521,-0.020083982,0.037314504,-0.0048769508,-0.014761179,-0.0070170476,0.017134491,0.04837167,-0.024556236,-0.062995665,-0.0031432668,-0.009925384,-0.025530254,0.0062110815,0.014816053,0.03918023,0.016530875,0.0016367966,0.025694877,0.051033072,-0.010480986,0.07951282,0.0014918942,-0.002683695,0.01187342,-0.0028123064,0.007353152,0.008155689,0.0072777,0.0063928524,0.018821875,-0.0026305353,-0.013636257,-0.035668276,0.016846402,-0.014184999,-0.0113041,0.0090062395,-0.0110228695,0.014061532,0.025736034,0.0310314,-0.023884026,-0.0012904028,-0.0069656027,-0.0036045536,-0.02605156,0.029275423,0.009891087,-0.01091998,-0.004969551,-0.00013129099,0.049167346,0.014171281,0.0023407307,-0.06063607,0.040469777,0.030290598,-0.004297341,0.04417379,-0.027958442,-0.046588257,-0.054435275,0.0033164637,-0.009911666,0.0011163484,0.013773442,-0.007462901,-0.030290598,0.009184581,-0.017738108,-0.0022378415,-0.02672377,0.03303431,-0.04571027,-0.01628394,0.028369999,-0.0001778055,-0.010501564,-0.002729995,-0.02079735,-0.014953239,-0.0074697603,-0.019425493,0.01235357,-0.00085355213,0.0011240651,-0.029193113,0.045243837,-0.04014053,0.026175028,-0.0054188343,0.047246747,0.013519648,0.01895906,0.015858665,-0.024693422,0.033610493,0.006903869,0.02242986,0.015954694,-0.0075246342,0.014514245,-0.01609188,-0.00449969,0.034461044,-0.023170661,-0.01810851,-0.001733684,0.003909792,-0.013320729,-0.008238,0.0012329563,0.010865105,-0.0075726495,0.004702039,-0.02183996,0.005607465,0.047768053,0.05553276,-0.014733742,-0.0047500543,0.009129707,-0.01953524,-0.014473089,-0.03144296,-0.0016085021,0.019946797,0.018328007,0.026010405,-0.041622136,-0.03671089,0.025159853,0.00794991,0.00050329993,-0.016462281,-0.00050844444,-0.012038044,0.0058441097,-0.01599585,0.012127214,-0.017518612,0.018341726,-0.012490756,0.022416139,0.008183125,0.0065163197,-0.017875293,-0.0049455436,-0.005449701,-0.029879041,-0.00089685136,-0.0031261186,-0.027190201,-0.004914677,-0.016064443,0.048152175,0.017847857,-0.023129506,-0.017792983,-0.01474746,0.02998879,0.0013538512,0.022361265,0.0070719216,-0.010556438,0.049085036,0.016777808,-0.009993977,0.0028414584,0.004455105,0.060965315,0.020989409,-0.0132247,0.036024958,0.029412609,-0.015598011,0.04214344,-0.010083147,0.03533903,-0.015172736,0.035887774,-0.010412393,0.006399712,0.00012957616,-0.010364378,-0.031278335,-0.016626904,0.028452309,0.013903769,0.018547503,-0.028781556,-0.020522978,0.01686012,-0.032128885,0.013732286,-0.034625664,0.011057165,-0.0072777,0.010926839,-0.003680006,0.012984624,0.0075452123,-0.004633446,0.012806283,-0.004365934,0.0078538805,0.01053586,-0.0036182723,0.04949659,-0.013910628,-0.0053879675,-0.0053433822,0.034241546,-0.010844528,-0.009726465,-0.007078781,0.0025808057,-0.013176684,0.014130125,-0.026408244,-0.014953239,0.00507587,-0.007606946,-0.009383501,-0.049469154,-0.027094172,-0.0037828952,-0.0034896608,-0.020632725,-0.03064728,-0.0027522878,0.0000126669,-0.048124734,0.0007858167,0.00851923,0.007510916,0.013972362,0.0041738744,0.045079213,-0.0049455436,-0.023691967,0.015241329,-0.0050998777,0.02509126,-0.061953053,-0.018190822,0.007222826,-0.011674501,-0.02872668,-0.0097539015,-0.025941812,0.047521118,0.015598011,-0.017971324,0.020536697,0.010899402,0.015255047,-0.0048220768,0.043762233,0.007915613,0.02232011,0.0005127315,0.0043830825,-0.0031398372,0.008917069,0.020083982,-0.006999899,0.058111854,0.023774277,-0.00584068,-0.036436517,0.022059457,0.026902111,-0.02729995,0.0010623316,-0.0145554,0.025255883,-0.015556856,0.033198934,-0.012010606,0.0040092515,0.0097539015,-0.027368544,-0.020742474,0.0012423878,0.008484934,-0.027094172,0.012038044,-0.016489718,0.020550415,-0.00060919015,-0.02001539,-0.011667642,-0.01082395,-0.02776638,-0.008821039,0.008361467,-0.0029512069,0.0072365445,-0.0013830031,-0.005240493,-0.023595937,-0.025818344,-0.008443778,-0.02328041,0.0019874775,-0.00003335863,0.019109964,0.04587489,-0.04502434,0.00046857484,-0.015104143,-0.0030215145,-0.032842252,0.0068935803,0.0032392968,0.029906478,0.02712161,0.031141149,0.024748296,-0.00059890124,0.008848476,-0.0030197997,0.029083364,0.0050244257,0.035531092,0.029714419,-0.013396181,0.0069964696,0.015241329,-0.0022069747,0.022018302,0.018149665,0.02050926,0.055340704,0.009849932,0.009438375,0.012675957,0.017463736,-0.01732655,0.01398608,0.019987954,-0.018012479,-0.030537533,0.026764926,0.0094177965,-0.0026493985,-0.061349437,-0.019905642,0.01867097,-0.011180633,0.04101852,0.020907097,0.009129707,-0.035119534,-0.015255047,0.011516738,0.052377492,-0.029961351,0.014473089,-0.0060841846,-0.04052465,-0.012010606,0.01609188,-0.024652267,-0.017587204,-0.008821039,-0.02232011,0.005466849,0.023486188,0.0033713381,-0.030263161,-0.0016239354,0.0076961163,-0.031909388,0.008663275,-0.0032907415,-0.009164004,-0.007593227,-0.027738944,-0.016146755,-0.0033404713,-0.042088564,-0.0024470496,-0.008923928,0.008450638,-0.005219915,0.0046162982,0.013053217,-0.01073478,0.0058955546,0.010604453,0.025228446,-0.03188195,-0.01254563,-0.026257338,-0.032128885,0.004297341,-0.041896507,0.014143843,-0.018259414,-0.01025463,-0.021181468,0.041786756,-0.041238014,0.028369999,-0.003724591,-0.034433607,-0.033390995,-0.025324477,-0.030784465,-0.0022069747,0.01503555,0.06689174,-0.012916031,0.0031003964,-0.00804594,-0.0442561,-0.012751409,0.029961351,0.051307444,-0.024103524,0.010583875,0.027053015,0.025434224,-0.0019137402,0.025255883,-0.0013787161,0.0396741,-0.007984206,0.019699864,-0.024569955,-0.047164436,0.005796095,0.03714988,0.042088564,-0.022484733,0.014541682,-0.0008299734,-0.014994395,0.01388319,0.031113712,-0.012010606,0.01580379,0.05553276,0.003170704,-0.019809611,-0.006289963,-0.0071473736,0.001259536,0.0075657903,0.034186672,0.034762852,0.0007673824,0.0002831598,0.03179964,-0.014020376,-0.013368744,-0.021922272,0.0281505,-0.019151121,-0.044969466,0.014486807,0.0022515599,-0.00003534139,0.022059457,0.024309302,0.0020595,-0.04186907,-0.00015390519,-0.017065898,0.0014738886,0.01600957,0.012675957,-0.00061647815,0.0034845162,0.02174393,-0.019205995,0.0442561,0.013746005,0.00880732,0.005638331,0.023156943,0.01168136,0.0023990346,0.005621183,-0.0063379784,-0.007867599,0.008553527,-0.019233432,0.0056760577,0.004561424,-0.02108544,-0.0036594279,-0.005322804,-0.018917905,-0.011365834,0.016201628,0.010378096,-0.0021692486,-0.0047191875,-0.014418215,0.0044208085,0.031058837,0.036546264,-0.008773024,0.03706757,-0.011743094,0.021894835,-0.016215347,-0.0156117305,-0.0127376905,-0.010974854,0.011413848,0.017299114,0.024665985,0.0054839975,0.0044208085,0.037012696,-0.0019377477,-0.036052395,0.025146134,-0.019933078,0.0071542333,-0.042061128,0.00440709,-0.006598631,-0.018300569,-0.003765747,0.003170704,-0.019603834,-0.020111421,0.00065892,0.0007305137,0.017230522,-0.007414886,0.028315123,-0.05701437,0.027725225,-0.032952,0.019000217,-0.022635637,0.046890065,0.034625664,-0.0051410333,0.05240493,-0.036930386,0.0026185317,-0.014706304,0.00526793,-0.005576598,0.029824166,0.0069072987,-0.024844326,-0.005106737,-0.012058621,0.024117243,-0.016448563,0.038192492,0.020742474,-0.008546668,-0.023019757,-0.009019959,0.019370617,0.016777808,0.00851923,0.0045271274,0.014157562,-0.017463736,0.022841416,0.024062367,0.0026202465,-0.0032204338,0.019987954,0.028891305,-0.036848072,0.021400966,-0.016105598,-0.025804626,0.005658909,-0.030427784,0.027889848,0.012751409,0.004942114,-0.01580379,0.02768407,-0.015145299,0.009712746,-0.0027334245,-0.0057343612,0.039619222,-0.026641458,0.008100814,-0.007634383,0.08697572,-0.0093080485,-0.01569404,0.034323856,-0.009527545,0.0145554,-0.00064262917,0.028562058,-0.016462281,0.024515081,0.016750371,-0.01569404,0.015337359,-0.030400347,0.016338814,0.028095627,-0.008361467,0.02750573,0.03229351,0.004942114,-0.0022755675,-0.02328041,0.01636625,-0.007360012,0.0029580663,-0.0104261115,-0.015021832,0.012449601,0.036957823,0.028287686,-0.02414468,-0.0010837668,0.01302578,-0.02116775,-0.01589982,0.012230103,-0.008484934,-0.026792362,0.029385172,-0.025598848,-0.025104979,-0.014994395,-0.020632725,-0.007058203,-0.00091399957,-0.019233432,0.0052061966,-0.00881418,0.026463117,-0.041978817,-0.008114533,-0.042993993,0.009273752,-0.03975641,0.0012355285,-0.011091462,0.03907048,0.011516738,-0.0004492831,-0.029632106,-0.02461111,0.031415522,-0.0012363859,0.003074674,0.038850985,0.07210479,0.029138237,0.0013289863,-0.013142388,0.04606695,-0.021826241,-0.022978602,0.0012886879,0.025159853,-0.010357519,-0.000046755667,-0.030784465,-0.024762016,-0.0045854314,0.002069789,0.024803171,-0.018094791,-0.023143224,0.019151121,-0.036107272,0.026860956,0.013711709,-0.045271274,0.0035462498,-0.038466863,0.04892041,0.0077304128,0.014953239,-0.012099776,-0.010885684,0.012957187,0.026271058,0.019617552,-0.011969451,-0.012607364,-0.008752447,0.012586786,0.00085183734,-0.0014987536,-0.021414684,0.00039097917,-0.0018348584,0.0007686685,0.010234051,-0.023760559,-0.014088969,-0.02059157,0.018972779,-0.018314289,0.019370617,-0.027176483,0.024117243,-0.038933296,0.024391614,-0.013581382,-0.0024556236,0.008210563,0.02768407,0.0045031197,-0.015735198,0.006842136,0.02328041,0.025914375,0.018424036,0.024871763,-0.010577016,-0.010810232,-0.016023288,0.018067354,0.010035132,0.004760343,0.0005551733,-0.01895906,0.0041155703,-0.00603274,0.057617985,0.023554781,0.00018284279,-0.003851488,-0.004184163,0.02729995,0.014431933,-0.02135981,-0.049002726,-0.000105943785,-0.02826025,-0.0011643635,0.010138022,-0.03791812,0.0027505727,-0.020934535,0.009205159,0.0022344117,-0.0052610706,0.013320729,0.0026596873,0.02395262,-0.015117861,-0.027834974,-0.014047814,0.015844947,0.009177722,0.0074286046,-0.008862195,-0.014829772,-0.03363793,0.00040255423,-0.007037625,0.01799876,0.019850768,-0.022868853,-0.013389322,-0.00603274,-0.024871763,-0.037287068,-0.04082646,-0.0042493264,0.036463954,0.035476215,0.011276662,-0.017806701,0.004070985,-0.0021418114,-0.0076000867,0.004643735,0.010007695,-0.018300569,-0.037534002,-0.02680608,-0.012655379,-0.0020080553,-0.023513624,0.035887774,0.030702155,-0.008286015,-0.021222625,-0.020660164,0.053035982,-0.022210361,0.015886102,-0.0053571006,-0.007126796,-0.00017662656,0.026120152,-0.010309503,0.0122163845,-0.002423042,0.022155488,-0.006025881,-0.004798069,-0.005353671,-0.024734577,0.0050655813,0.011180633,0.03336356,-0.022155488,-0.0032427264,0.0075520715,-0.010261489,-0.023678249,-0.0048049283,-0.008574105,-0.0037040133,0.0074011674,-0.039893594,0.008882773,0.040167965,-0.024048649,0.006149348,-0.012710253,0.016750371,-0.04464022,0.030482657,-0.008766165,-0.0011540746,-0.008320311,-0.0118802795,-0.00052902225,-0.030125976,-0.05352985,0.027382262,0.0071542333,-0.0024556236,-0.018602379,0.03506466,0.031086275,0.0097539015,0.013375604,0.009843073,0.017504893,-0.017930169,0.010817091,-0.00048572305,0.005881836,-0.016873838,-0.027094172,-0.017930169,0.035009786,-0.012566208,0.004702039,0.00018691548,0.0052610706,-0.0051101665,0.003132978,0.016777808,-0.012984624,-0.018122228,-0.009589279,0.010892543,0.019946797,-0.026257338,0.025132416,0.013327588,0.0065917717,-0.011139477,0.009122848,0.023198098,0.03160758,0.0004321349,-0.008347749,0.020632725,0.011715657,-0.010871965,-0.010199755,-0.009397219,-0.034159236,-0.019205995,0.0003695439,-0.035201844,0.044887155,0.004777491,-0.0058303913,-0.02012514,0.005497716,-0.007078781,0.014239874,-0.0054771383,0.012127214,-0.025900656,-0.024665985,0.02318438,0.012010606,-0.02680608,-0.010775935,-0.010666187,-0.02278654,0.012470178,-0.041512385,0.039619222,0.014706304,0.029467484,0.020934535,0.047164436,0.02528332,-0.023815434,-0.0006464875,0.018465193,0.017257959,-0.018945342,0.044283535,0.0033576195,-0.010817091,-0.0022069747,0.03676576,0.012243822,-0.026943266,0.0032873119,-0.02049554,0.010021414,0.022361265,-0.01791645,0.012730831,-0.00967159,-0.0037314505,-0.010021414,-0.019096246,0.008320311,-0.0016848117,-0.03747913,0.014445652,0.011770532,-0.020852223,0.001240673,0.0129228905,-0.027903566,0.010124303,0.0038103322,-0.010878825,-0.0013572808,0.0264494,0.02826025,0.025777189,-0.020907097,0.0319917,-0.042390376,0.018657252,-0.033253808,0.01676409,0.0028088768,0.03742425,0.011647064,-0.0060841846,0.015954694,0.032595318,0.03056497,-0.025008949,0.024432769,0.010158599,0.0034365011,-0.013704849,0.028589495,-0.0012355285,0.02144212,-0.0046677426,-0.01474746,0.04598464,0.009321767,-0.031415522,-0.0066535054,0.006019022,-0.0058578285,-0.021346092,0.010179177,0.018122228]},{"id":"interface-MessagePayloadData","type":"interface","source":"main","text":"Interface: MessagePayloadData\nDescription: Data for a message payload (content, embeds, reply reference, etc.).\nProperties: attachments: { id: number; filename: string; description?: string | null; }[], content: string | null, embeds: APIEmbed[] | null, flags: number, message_reference: APIMessageReference | null, tts: boolean","meta":{"url":"/docs/typedefs/MessagePayloadData"},"embedding":[0.0018450348,0.013257987,0.024582954,0.025444409,0.0018437216,-0.02842798,-0.02153635,0.00802623,0.016346615,-0.026347885,0.0040945327,-0.0038555318,0.0364332,-0.06668914,-0.0021930307,-0.021074105,0.017166046,0.033932883,0.0031779248,0.051393084,0.012963831,0.013068887,-0.011514068,0.02271297,0.0064241355,-0.0057255174,-0.0054208566,0.01772284,0.014728762,-0.028764158,0.05114095,-0.03767285,0.06958867,0.011167385,0.017985478,0.03504647,0.013594164,0.05425059,-0.037357688,-0.016189031,-0.037861954,-0.005307922,-0.01956131,0.01666178,-0.05307397,0.004630315,-0.0047091064,0.022082638,-0.018206093,0.049670175,-0.021683427,0.01998153,0.02605373,0.09093592,0.0095127635,0.021893537,-0.013846297,0.022965102,-0.01576881,0.0031096388,-0.03956385,0.010179864,-0.03481535,0.020863995,-0.0019159472,-0.01440309,-0.051855326,0.048283443,-0.0066394988,0.04996433,0.074631326,0.05778045,-0.03500445,0.056141585,0.025171265,-0.022523869,-0.043240786,-0.008189065,0.0029651877,-0.0658487,0.00047143595,0.05542721,-0.057948537,-0.053452168,-0.02294409,-0.009749138,-0.009596807,-0.015947403,-0.0362441,0.021168655,-0.038072065,-0.041244734,-0.069084406,-0.0185948,-0.018720865,-0.06635296,-0.037336677,-0.0057255174,-0.004527886,0.023028135,0.05857887,-0.013499614,-0.058410782,0.01032169,0.019960519,-0.023658467,-0.0069651706,-0.0071595227,-0.038744416,-0.03076021,-0.016094482,0.013089898,0.009229113,0.015096456,-0.015852854,0.0036848169,-0.029037302,-0.006208772,0.047905244,-0.025948675,-0.03076021,0.008435946,0.048745688,0.01977142,0.013415569,-0.02056984,0.010610592,-0.0038817956,-0.03052909,0.040803503,0.03265121,-0.0044779847,0.020212652,-0.014644718,-0.022313759,0.0031884303,-0.012554116,0.03721061,-0.023007125,-0.06500826,0.06265502,-0.016441165,0.03429007,0.026768107,-0.017187057,0.013394559,-0.038828462,0.06752959,0.0052054934,0.010458262,-0.015054434,0.013100403,-0.03489939,-0.0011792465,0.013068887,-0.020695906,0.015191006,-0.018447721,-0.005003262,-0.02838596,-0.027251361,-0.052149482,-0.0036270365,-0.004562029,-0.027377427,0.018762888,0.045131784,-0.052149482,-0.01656723,-0.018699855,-0.017355146,-0.04681267,-0.045930203,0.0054681315,-0.033386596,0.00024802916,0.012617149,-0.00082008843,-0.012070861,-0.023490379,0.03748375,-0.012018333,-0.045173805,-0.04622436,-0.041391812,0.007606008,-0.0031516608,0.06378961,0.015600721,-0.005436615,-0.023448357,0.008808892,0.048073333,0.0119553,0.003939576,0.0056940005,-0.0039159385,0.003474706,-0.0014248134,-0.03248312,0.042253267,-0.01929867,0.0485776,0.0017426058,-0.026137775,-0.0046119303,-0.028848203,0.038555317,-0.027335405,-0.035718825,0.020580346,-0.003057111,-0.010216634,0.009061025,-0.010279668,-0.0070912368,0.010768175,0.042799555,-0.013058381,0.0045462707,-0.0419381,0.022628926,0.10009675,-0.007989461,-0.042379335,0.02104259,-0.06273906,-0.017712334,-0.06837003,-0.021189667,-0.023175213,0.021473316,-0.0098594455,-0.014035396,-0.03057111,0.0013230409,-0.023343302,-0.017974973,0.017103013,-0.006634246,-0.0014865334,-0.027314395,-0.0016769462,0.039227672,-0.021420788,0.019466758,0.010526547,0.005778045,0.005956639,0.040467326,0.08001016,-0.033239517,0.03544568,-0.010621097,-0.010347953,-0.031915817,-0.025927663,0.054712832,0.029646624,0.042484388,0.014476629,-0.008267857,-0.017124023,-0.015306566,0.0038056306,-0.005846331,0.03351266,0.033407606,-0.016062966,0.002797099,-0.0014615827,0.0034668269,0.048703667,0.03954284,-0.010122084,0.024730032,-0.03683241,-0.047527045,-0.0050452836,-0.0005272466,-0.021189667,-0.04647649,-0.034521192,0.049544107,-0.06126829,0.005709759,0.04466954,0.023343302,0.0039028067,0.03210492,0.052611727,0.011156879,0.08110274,-0.05979751,0.029478535,0.010353206,0.02195657,0.000039477836,0.061646488,0.0031569137,0.0242888,-0.043198764,0.027461471,-0.056940008,0.0063926186,-0.031789754,0.031159421,-0.002421526,0.020590851,-0.0364332,0.031222453,0.0059198695,-0.056099564,-0.01861581,-0.060595933,0.045720093,0.024435878,0.013919836,-0.020454278,0.029415501,-0.010022282,0.015852854,-0.00055252557,-0.0662269,-0.014560673,-0.00022603318,-0.030613132,0.01664077,-0.007317106,0.030108867,0.0071017426,0.025024187,0.030045833,0.019382715,0.009759643,-0.023595434,-0.022019604,0.037105553,-0.0052685263,0.033428617,0.020233663,-0.02108461,0.006980929,-0.025654519,-0.035340626,-0.00035521845,-0.07774097,0.03136953,-0.004107665,-0.00994349,-0.024835087,-0.012102378,0.0016362373,-0.006980929,0.0060879583,-0.026999228,0.0138357915,-0.058116626,-0.019456252,0.00023030106,-0.02193556,-0.0129323155,-0.0059513864,0.06895834,-0.018185083,0.0027445713,-0.044963695,0.023217235,0.0153275775,-0.05387239,0.04233731,0.02622182,-0.026726084,0.008777375,-0.010820703,0.008640803,-0.0013499614,0.017859412,-0.03290334,0.010584327,0.03920666,0.049502086,0.00004624898,0.010064304,0.01713453,0.011661145,-0.03916464,-0.0023230368,-0.016997958,0.036559265,0.026116762,0.008698584,-0.078875564,0.00514246,-0.020580346,0.03290334,-0.020506807,-0.00931841,-0.0133840535,-0.0371896,-0.006749807,-0.0065134326,0.0039448286,0.014823312,-0.0072803367,-0.019760914,0.040698446,0.0003433997,0.05895707,-0.02449891,0.044585496,0.009097794,0.013678208,0.021462811,0.018678844,-0.015411622,0.04450145,0.0028181102,-0.014728762,0.007563986,-0.01751273,0.0042836326,-0.01626257,0.0052081198,0.0068548624,0.0091083,0.03939576,-0.02781866,-0.023364313,-0.04639245,-0.04019418,0.0540825,0.07219405,-0.009764896,0.022523869,-0.051014885,0.0045515234,-0.02880618,-0.02760855,0.025129242,0.011419518,-0.042064168,0.016924419,0.033197496,-0.040530358,-0.042463377,0.014865334,0.0057465285,0.024919132,-0.03136953,-0.038219143,0.042967644,-0.043324832,0.01155609,-0.021788482,-0.0125856325,-0.060091667,0.01852126,0.026116762,-0.00033946015,0.0040866537,0.0044622263,0.020244168,0.008357154,-0.0037714876,-0.018762888,0.00077150034,-0.023028135,-0.0033722771,-0.0042521157,0.01781739,0.005160845,0.019760914,-0.00021076732,-0.003705828,-0.03899655,0.026536984,-0.017460201,-0.008793134,0.021977581,0.000011285244,0.0123755215,-0.022166682,-0.00582532,-0.0070807314,0.1058958,0.037126563,-0.007138512,0.033596706,-0.0067182905,-0.050258484,-0.013457592,0.028028771,-0.0073696338,0.007479942,-0.006408377,-0.0019829199,-0.028448991,0.029457524,0.0023269763,0.032273006,-0.024856098,0.002242932,-0.033617716,0.05311599,-0.0091660805,-0.057486296,-0.0033039912,-0.029877745,0.0072593256,0.0054208566,0.012879787,0.011661145,-0.0066710156,-0.017239586,-0.014298035,-0.03294536,0.026768107,-0.026957206,-0.0057360227,-0.0045462707,-0.0130373705,0.044585496,-0.011839739,0.0010623724,-0.044207297,-0.020160124,-0.052569702,0.019445747,-0.010326942,0.024624977,0.007479942,0.0019816067,-0.0035955198,-0.0059408806,-0.008640803,-0.017176552,-0.025759574,0.036559265,-0.011808223,-0.021294722,0.021788482,0.007185787,0.008115527,-0.010831208,0.030339988,-0.0145291565,0.043240786,-0.033827826,0.02527632,0.0057622865,-0.018762888,0.051267017,-0.011913278,0.029457524,0.016399141,0.005683495,-0.043156743,0.00035521845,-0.0061299806,0.0044359625,-0.03542467,0.013457592,0.0019198868,-0.026705073,0.046980757,0.018237611,-0.033029407,0.019067548,0.0028259892,-0.021221183,0.021168655,-0.032357052,0.002319097,0.01950878,0.017523235,-0.016031448,-0.013762252,-0.0125226,-0.016231054,0.011240924,-0.01204985,-0.012428049,0.016745824,-0.0011109605,0.029667635,0.039269693,-0.0036480476,-0.017449696,0.018101038,0.033239517,0.017775368,0.026747094,-0.017701829,-0.014476629,-0.010421492,-0.0023164707,-0.0029835722,-0.024351833,0.038345207,0.014150958,0.022818025,-0.037735887,0.0030098362,0.01047402,0.025192276,0.0022967728,-0.029856734,-0.01967687,0.0066394988,-0.0017137156,0.0351095,-0.025003176,-0.046770647,-0.019183109,-0.014655223,-0.01666178,0.02626384,0.0058095613,-0.013268492,0.019445747,0.03094931,-0.006728796,0.005757034,-0.038219143,0.022649936,-0.023385324,-0.016966442,-0.012102378,-0.009691358,0.016829869,0.011020307,0.014413596,-0.007816119,0.003022968,-0.005197614,-0.003398541,-0.004793151,-0.03471029,0.008393924,0.0055364175,0.029856734,0.06492422,-0.012806249,0.043745052,-0.002831242,-0.006791829,0.014907356,0.0061720028,0.0034379368,-0.003992104,-0.031705707,0.03914363,-0.010232393,0.013215965,-0.054754853,-0.01850025,0.036412187,-0.013709725,0.01666178,-0.014865334,-0.0033486397,0.025738563,0.018867943,0.012175917,0.009307905,-0.013173942,-0.00802623,-0.022208704,0.015705777,0.009176586,0.021378767,0.03704252,-0.012554116,0.017659806,-0.054922942,0.012711699,0.0046250625,0.0074379197,0.026789118,-0.0073748864,-0.02939449,-0.05757034,-0.04567807,0.0009888336,-0.021462811,0.00988571,0.01868935,0.041055635,0.016189031,-0.0040341257,0.0043387865,-0.00715427,-0.020023553,0.0043991935,0.056099564,0.01762829,0.015747799,0.024940142,-0.003398541,-0.044753585,-0.005139834,-0.026347885,-0.0011575788,0.007679547,-0.018321656,-0.016777342,0.001483907,0.025129242,-0.0149808945,-0.014907356,0.0010282294,-0.0138357915,0.006613235,-0.011146374,0.0028627587,-0.010563317,0.034521192,-0.0058831004,0.02762956,0.02172545,-0.003978972,0.011282946,0.04095058,0.014613201,-0.027104283,0.03544568,0.017470706,0.018174578,0.0012055102,0.017848905,0.0130373705,-0.0057675396,-0.006959918,-0.0042363573,-0.0017202816,-0.01637813,0.011902773,-0.0007544288,0.027776638,0.00020255987,0.016966442,0.029709656,-0.018867943,0.02977269,-0.027965738,-0.009707116,0.013184448,0.025969686,-0.00079842075,-0.01301636,0.0028969017,-0.0012665737,-0.0046539526,-0.0052054934,0.015831843,0.024603967,0.007185787,-0.021620393,0.007338117,-0.003637542,0.03328154,-0.027272372,0.013300009,-0.0057938034,-0.020454278,-0.043240786,-0.0001361616,0.0489558,0.0010695949,-0.021641405,-0.0020958544,-0.013636186,-0.0028364947,0.03777791,-0.021399777,-0.0095127635,-0.026621029,-0.047064804,0.025423398,-0.0046066777,-0.017502224,-0.009654588,-0.022691958,0.01658824,0.004028873,-0.051393084,-0.013394559,0.010705141,-0.02603272,-0.051561173,0.007821372,-0.012984843,-0.021336744,0.012669677,0.03252514,0.016651275,-0.06937856,0.017796379,0.0485776,-0.021368261,-0.003227826,-0.00050360913,0.03212593,0.018374182,0.013152932,-0.05051062,0.03311345,0.00012302968,0.03429007,-0.008724848,0.027083272,0.002187778,0.019624341,0.004498996,0.0066867736,-0.043997187,0.021515338,0.015905382,0.00093761913,0.050048374,-0.0047826455,0.016987452,-0.0061457385,0.038471274,0.062150754,0.00740115,0.01381478,0.011398507,-0.02273398,0.043745052,0.032146942,0.007301348,-0.0011398507,-0.007921174,-0.0019474638,-0.026999228,0.013215965,0.00015265857,0.004656579,0.026726084,0.025927663,0.03748375,0.0042521157,0.021210678,-0.027944727,0.007007193,0.0049612396,-0.036391176,-0.0043098964,-0.03466827,0.043576963,0.00802623,-0.038513295,-0.0002903796,-0.014707751,-0.010978285,-0.013426076,0.0015495666,0.013825285,0.007753086,0.009780655,-0.024057679,0.013573153,-0.016073471,-0.004874569,0.015831843,-0.0039763455,-0.014707751,0.02880618,0.042967644,-0.017848905,0.014119441,-0.022397803,-0.0077005583,-0.009271136,-0.0130373705,0.023007125,-0.0063033216,0.013310514,0.002797099,0.0064661577,0.017911939,0.010789186,0.001155609,-0.006823346,0.023658467,0.03254615,-0.0037531029,-0.027356416,-0.012774732,-0.025696542,-0.012018333,0.0026605271,0.0056992536,0.010353206,-0.034374114,0.011135869,0.014854828,-0.03254615,-0.043955162,-0.034752313,0.009539027,-0.041202713,0.029751679,0.005552176,0.040656425,-0.0021444426,-0.012333499,-0.017145036,0.048493557,-0.025906652,-0.027356416,0.038261164,0.019151593,-0.012270466,-0.025381375,-0.024919132,0.029814713,-0.0006723543,0.0027524505,0.008950717,0.040677436,-0.015201511,-0.019834453,-0.03351266,-0.017355146,-0.00022258605,0.024015656,-0.03288233,0.007653283,-0.0042705005,0.036664322,0.020863995,0.011440529,-0.055175077,-0.008346649,-0.00164149,0.016976947,0.0060196724,0.012711699,0.03317648,0.01605246,-0.009045267,0.028175848,0.027503494,-0.07349673,0.033617716,-0.009103047,-0.024835087,0.0024254657,-0.015191006,0.04408123,-0.06286513,-0.015611227,-0.0033328815,0.054166544,-0.031810764,0.026579008,0.009481247,-0.026347885,-0.030403022,-0.06105818,-0.040782493,-0.013300009,0.0106421085,0.030361,0.009076783,0.010395228,0.029037302,-0.022965102,-0.010200876,0.059629425,0.031978853,0.008541001,0.036328144,-0.010358458,0.008336143,0.0056677368,0.013005854,-0.00514246,0.052359592,0.011839739,0.036139045,-0.020359728,-0.006576466,0.014644718,0.0111253625,0.016535714,-0.0019605956,0.033785805,-0.03716859,-0.014161463,-0.01527505,0.0049980087,0.0008017037,0.016010437,0.03706353,0.011703167,0.012680182,-0.031201443,0.040803503,0.006093211,0.01986597,0.018647326,0.018048512,0.045299873,0.018647326,0.03273525,-0.007164776,0.012953326,-0.019645352,0.012207434,-0.01049503,0.0010118145,-0.010374217,0.0067760707,-0.02309117,0.0010170672,0.0039448286,0.042232256,-0.029877745,0.045131784,0.02760855,0.0033617716,-0.01842671,0.010074809,-0.0012015707,0.013257987,0.0021352503,-0.0063821133,0.09631476,-0.022502858,0.00008055612,-0.0035114754,0.010442503,0.0029389237,0.018930977,0.034962423,-0.0048036566,-0.038639363,-0.011345979,-0.048493557,0.030108867,0.036370166,-0.0038817956,0.0006822033,0.009418213,-0.0016598747,0.003989477,-0.030802233,0.033848837,-0.02878517,-0.010852219,0.018006489,-0.036559265,0.017460201,0.027587539,0.025528453,0.001214046,-0.018038006,0.016115492,-0.0020892886,0.0071227537,0.012837766,0.012280972,0.0041523133,-0.027692594,0.02153635,-0.009701863,0.0210636,0.027062261,0.02233477,-0.0027603297,0.013541636,0.007106995,0.0071227537,-0.05080477,-0.031075377,-0.019151593,-0.029835723,-0.008976981,0.012690688,-0.0058936058,-0.0108837355,0.019088559,0.01624156,-0.010043292,0.029667635,-0.0014445112,-0.045089763,-0.0040314994,-0.011776706,-0.02781866,-0.029037302,0.026747094,-0.003734718,-0.028091803,-0.010789186,-0.024919132,0.020191642,-0.010116831,0.008246846,0.044627517,0.014350562,-0.001961909,0.005888353,-0.018783899,-0.02430981,0.023679478,-0.016483186,0.018563282,0.011944795,-0.013331526,-0.02077995,0.023616446,0.013594164,0.013184448,-0.009523269,0.0089402115,-0.016892903,0.000607023,0.011020307,0.047905244,-0.020727424,0.017334135,0.0057938034,0.024898121,-0.040068116,-0.009497005,0.0024648614,-0.01969788,0.007222556,-0.04191709,0.0036270365,-0.018195588,-0.010374217,-0.008257352,-0.009234366,-0.009045267,0.038576327,0.008630298,-0.029961789,0.034437146,-0.0061982665,-0.029142357,-0.036391176,0.028890224,-0.0074379197,-0.010011776,0.014108935,0.02525531,0.008772123,0.009801665,0.0057622865,-0.028827192,0.018762888,0.006797082,0.016083976,0.014392585,-0.004877195,-0.019067548,-0.0059723975,-0.0012711699,0.012438555,0.042043157,-0.02487711,0.0038397736,0.0008910008,0.01049503,-0.0046487,-0.042988654,-0.03267222,0.007427414,-0.028301915,-0.0098436875,0.014171968,-0.0068653678,0.034248047,0.009428719,0.0012271779,-0.020170629,-0.00009487812,-0.0371896,-0.04840951,0.0184057,-0.027545515,0.027755627,-0.0064714104,-0.035340626,-0.015401117,-0.005258021,-0.015264545,0.016399141,-0.032567162,0.016125998,-0.013562648,0.016315097,0.041055635,-0.024709022,-0.012491083,0.035949945,0.0061089694,0.0045095016,0.009691358,-0.053242058,0.01155609,-0.014056408,0.016294086,-0.015915887,0.014865334,0.063033216,0.041454848,0.018416205,-0.0063978718,0.028238881,0.068201944,-0.009728126,-0.012102378,0.026579008,-0.0046539526,-0.015359094,0.030066844,0.0067393016,-0.04584616,0.012879787,0.023238245,-0.00070058793,-0.0040997854,-0.008877178,0.062360864,-0.049838264,0.012963831,-0.019109571,-0.034773324,-0.0016887649,0.010200876,0.021578372,-0.01950878,-0.011240924,0.03332356,0.01449764,0.03742072,0.019571815,-0.030613132,-0.024330823,-0.013247482,-0.0055574286,0.020328213,0.022881057,0.0132789975,-0.025129242,0.0024937517,-0.01842671,0.0062875636,0.00842544,-0.014854828,-0.0415599,-0.039269693,-0.012417544,-0.015642744,0.018195588,-0.029478535,0.002667093,-0.010185118,-0.021168655,-0.008498979,0.009812171,0.014476629,-0.00002642799,0.020811467,0.024015656,-0.000121880636,0.0086092865,0.006387366,0.025675531,0.015632238,0.0020393871,0.02007608,0.017187057,-0.012365016,0.02233477,0.0074169086,-0.004774766,-0.01965586,-0.0015233028,-0.031453576,0.014413596,0.0014720883,-0.0062402887,0.0058568367,0.0043387865,-0.012039345,0.016041953,-0.020937534,0.0070912368,0.0051240753,-0.03975295,-0.0049297228,-0.014045902,-0.028175848,0.023742512,-0.009743885,0.01734464,0.014665728,-0.01647268,-0.018846933,0.008850914,-0.0015298687,-0.05080477,0.008015724,0.022229714,-0.041622933,0.013089898,-0.009670346,-0.012333499,-0.02760855,-0.034794334,-0.012354511,0.027020238,0.0071227537,-0.035949945,-0.027125295,-0.0018660459,0.0053289332,-0.02723035,-0.04311472,0.0006221247,-0.006634246,0.023007125,0.031390544,0.0005594198,0.027377427,-0.026936196,-0.005683495,-0.030255944,0.0028837698,0.031243464,-0.01165064,-0.03267222,-0.015443138,0.013657197,-0.007453678,0.0011746503,0.005935628,0.022166682,-0.002481933,-0.0058305725,0.03275626,0.015905382,-0.021683427,-0.0049796244,0.004485864,0.0013072827,-0.016777342,0.027776638,-0.010552811,0.013541636,-0.015422127,0.0023033388,-0.059671447,0.0014720883,0.0305501,0.0123440055,-0.000041406587,0.0130373705,-0.0030439792,-0.0015022916,0.008682826,0.03979497,-0.043366853,-0.009927732,-0.013205459,0.011514068,0.00492447,0.016955936,-0.014024891,0.010768175,0.0019474638,-0.0018581668,0.019550802,-0.018185083,-0.016609253,-0.01155609,0.025948675,0.0010643421,-0.009969754,-0.034962423,-0.0010203503,0.007816119,-0.040845525,-0.03725263,0.00523701,-0.02174646,0.03981598,-0.005082053,0.0040236204,-0.011472045,0.017680818,-0.0013256674,-0.023973634,-0.001852914,0.0009599434,-0.007106995,0.0019067548,-0.0008713029,-0.017890928,0.017428685,-0.005525912,0.054376654,-0.006975676,-0.009796413,-0.020034058,-0.033869848,-0.010389975,-0.01675633,0.036349155,-0.008541001,0.0010216634,-0.0091083,0.011472045,-0.015411622,0.01861581,0.015527182,-0.015516677,-0.0011293452,-0.03798802,-0.01527505,0.04702278,0.036391176,0.013520625,0.0040367525,0.0059461338,-0.026389906,-0.0068443567,0.029310446,-0.00984894,0.024162734,-0.008309879,0.00032813387,-0.010978285,0.010116831,0.011818728,-0.036118034,0.021410283,0.005089932,-0.016388636,0.0032304523,0.012921809,0.023385324,-0.025654519,-0.013993374,0.027839672,-0.012060355,-0.009764896,-0.018290138,0.004139181,-0.007905416,0.02525531,-0.017292112,0.005630967,0.028512025,0.008898189,-0.023154201,0.002038074,0.04643447,0.012322994,-0.0036953224,0.009644082,-0.0017872544,-0.030907288,0.030318977,0.0005328277,0.0115771005,0.014329552,0.019162098,0.02939449,-0.015138478,0.029352468,-0.01713453,-0.02009709,-0.006713038,0.0098594455,-0.026957206,0.034227036,-0.005552176,-0.010368965,-0.011923783,-0.026726084,0.007138512,-0.0358659,0.045972228,0.014434607,-0.0024241526,-0.02605373,0.012953326,-0.033029407,0.016903408,0.017050486,0.017785873,-0.048283443,0.0003923161,-0.009770148,-0.012259961,-0.0121338945,0.03233604,-0.031411555,-0.0018266501,0.009565291,-0.008625045,0.03933273,0.034206025,-0.0053499443,0.0032041885,-0.0011680843,0.002283641,0.025633508,-0.042463377,0.04210619,0.0050479104,-0.009271136,0.012301983,-0.025024187,-0.024961155,-0.02407869,0.027188327,-0.019130582,0.023049146,-0.008126033,-0.05093084,0.01301636,0.009386697,-0.015169994,-0.008667068,0.020349223,0.009570544]},{"id":"interface-MessageSendOptions","type":"interface","source":"main","text":"Interface: MessageSendOptions\nDescription: Options for sending a message (content, embeds, files). Used by Message.send, Channel.send, ChannelManager.send.\nEmbedBuilder instances are auto-converted to API format—no need to call .toJSON().","meta":{"url":"/docs/typedefs/MessageSendOptions"},"embedding":[0.002216361,-0.01639355,-0.019057084,0.005934443,0.0057226974,-0.011021904,0.0029282155,-0.032831676,0.0037417635,-0.04052138,-0.0006230468,-0.015334823,-0.005602894,0.019458285,0.0303576,-0.03037989,-0.009528542,0.029176284,0.039451506,-0.0007856868,0.00791259,0.017641732,0.021063093,0.051665872,-0.029087128,-0.0325865,-0.0033907122,0.021442005,0.0019029223,-0.025922092,0.0136631485,-0.029733509,0.03182867,-0.009578692,-0.0039953007,0.012058342,-0.0018346622,0.014688442,0.009639987,-0.0064470894,-0.003229117,0.0039395783,-0.05746101,0.0044661555,-0.036799118,0.046985183,0.011590273,-0.026546184,0.03717803,0.027838944,-0.018455282,0.01649385,0.022121819,0.011077627,-0.0039228615,-0.051130936,-0.027772076,0.0052072643,-0.026791362,0.014699587,-0.021820918,-0.046762295,-0.00302573,0.011924608,0.03363408,0.044332795,-0.0704332,0.03898344,-0.033544924,0.026969673,0.04707434,-0.05081889,-0.013618571,0.031427473,0.04992733,-0.013406825,-0.036553938,0.0119134635,0.003028516,-0.04063282,-0.03321059,0.031516626,-0.06593082,-0.047564697,-0.05064058,0.01629325,0.0012607208,-0.01936913,-0.013039057,-0.02046129,-0.08180058,-0.009038184,-0.06281036,-0.0059010093,-0.018745039,-0.035684668,-0.01592548,-0.030981692,-0.012069486,0.021319415,0.055677887,-0.04515749,-0.07440064,-0.004811635,0.008386231,-0.027237142,0.016404694,0.011946897,0.01708451,0.007739851,-0.03472624,0.009093907,-0.019012505,0.01530139,0.013083635,-0.025097398,0.042326786,0.048991192,-0.0054440848,-0.018399559,-0.045402665,-0.030491333,0.055499576,0.00682043,-0.010631846,-0.041702695,-0.03608587,-0.02750461,-0.041903295,0.01116121,0.022757055,0.018299257,0.031538915,0.0024740775,-0.008464242,-0.005193334,-0.034458775,0.019458285,0.029934108,-0.03606358,0.014276096,-0.02145315,-0.014309529,0.003229117,-0.015100788,-0.009249929,-0.035484068,-0.010308656,0.02728172,0.0024991527,-0.031940117,0.016504996,-0.018466426,-0.0018806333,-0.037935857,-0.0014655009,0.0029421463,0.008219064,0.016661018,0.004048237,0.035773825,0.019413708,0.005290848,-0.019302262,-0.035952136,-0.018410703,0.06628744,-0.017519144,-0.024919087,0.021040803,0.013507126,-0.07868012,-0.023448015,0.015847469,-0.015691446,-0.01024179,-0.0068817246,-0.05500922,-0.025141977,0.047832165,0.053939346,0.043842435,-0.027972678,-0.025899803,-0.017597156,0.025454022,-0.027014252,-0.005756131,0.055053797,-0.016794752,-0.05719354,-0.006419228,0.03430275,0.022679044,-0.00637465,0.0014473911,0.008843156,-0.021285983,-0.020962792,-0.03960753,0.07435606,0.02618956,0.06628744,-0.010414529,-0.021263693,-0.014944766,-0.0030173715,0.0130613465,-0.024294995,-0.0036693243,0.032140717,0.026969673,0.0053493567,-0.0113841,-0.0026356727,0.015568857,-0.038114168,-0.011255939,-0.02554318,-0.023448015,-0.03604129,0.03231903,0.05518753,-0.009662276,-0.011969185,0.020505868,-0.04645025,-0.02991182,-0.026702207,0.0004391627,-0.0046862597,-0.004307347,-0.0102195,-0.02445102,0.009606553,0.022188686,-0.046806872,0.015045066,0.013261947,-0.0479659,-0.01956973,-0.024517884,0.003318273,0.028262435,-0.024049817,0.008982462,0.0061071822,-0.05037311,-0.03980813,0.013128214,0.033188302,-0.012883035,0.017073363,-0.04134607,0.046940606,-0.057683896,0.024005238,0.006658835,0.035796113,0.004449439,0.03452564,-0.0039033587,-0.00082051335,-0.019413708,-0.009054901,0.013395681,0.003953509,-0.00028226912,-0.022166397,0.005132039,0.008319364,0.026947385,-0.0034882263,0.039696686,-0.034436483,0.014978199,-0.0010016114,-0.00007404993,-0.0037111163,0.001220322,-0.05915497,-0.027593765,-0.01277159,0.043730993,-0.019725753,-0.02088478,0.025922092,0.025922092,-0.0015574429,0.032185297,-0.009940888,-0.006218627,0.041814137,-0.034659375,-0.02641245,0.0026496032,0.04997191,0.003295984,0.06396939,0.024896799,0.010843592,-0.01902365,0.012169787,-0.042349074,-0.011283799,-0.021040803,0.020505868,-0.017808901,0.08902221,-0.055767044,-0.006296639,0.0095619755,-0.04734181,-0.0005676726,-0.037356343,0.050863467,0.029867243,0.03100398,-0.0030563774,0.038805127,-0.014822176,0.0376461,-0.025610046,-0.056881495,-0.0074278046,-0.045558687,-0.012024908,-0.016003493,0.01860016,-0.00043463524,0.01738541,-0.005104178,-0.0084753875,-0.0036748967,0.070254885,0.003279267,-0.019057084,0.008787433,-0.0060403156,0.019213106,0.010319801,-0.0058954367,0.00912734,-0.014454408,-0.010108056,-0.057282697,-0.09156316,0.07890301,0.022277841,0.0028209498,0.0013679866,-0.02135285,0.00096330215,0.0016688879,0.012136353,0.009355802,0.01562458,-0.050908044,-0.045402665,-0.0035077294,0.0031650362,0.037244897,0.01657186,0.040744267,0.015267956,-0.037802123,-0.056703184,0.021297127,-0.024116684,-0.03873826,0.05188876,0.024829932,-0.013730016,0.018979073,0.03428046,0.001241218,0.040811136,-0.041747272,0.010007755,-0.006658835,0.056614026,0.05215623,-0.050061066,-0.025097398,-0.0122143645,-0.006552962,0.011668284,0.017775467,0.001671674,0.002891996,-0.0017900843,0.0058898646,-0.06490553,-0.025654623,0.030914824,0.045380376,-0.008564543,0.0047949185,0.0031706083,-0.0404768,0.028418457,-0.016750174,0.008620266,0.023336569,-0.038649105,-0.06642118,0.034369618,0.0069485917,-0.0050679585,-0.0065139565,0.039429218,0.024517884,0.026947385,0.03934006,0.00008863355,-0.028775081,-0.0030814523,-0.032697942,0.024384152,0.018455282,-0.04595989,-0.0060793213,-0.041190047,0.0063245,0.023024524,-0.0022080028,0.029577484,-0.019636597,-0.0037111163,-0.05171045,-0.054652594,0.050194796,0.043909304,-0.00040259483,0.020517012,-0.026434738,0.024072105,0.0023570603,-0.00056244864,0.042527385,-0.038559947,0.03898344,-0.0055917497,-0.006664407,-0.04397617,-0.025409445,-0.024740776,0.019636597,0.0057951366,-0.0483671,-0.023024524,-0.01902365,-0.034904554,0.018533293,-0.023448015,-0.025275711,-0.0034074287,0.017742034,0.05104178,0.0039033587,-0.014354107,0.013351103,0.00840852,0.003006227,-0.018878771,0.007277354,-0.010865881,0.0017900843,-0.037512366,0.041635826,0.0042627687,0.01277159,-0.010052333,0.0045274505,0.019424852,-0.04462255,0.019302262,-0.04992733,0.022433866,0.023046812,-0.01629325,0.033946127,-0.02725943,-0.012504121,-0.016003493,0.08563428,0.022979945,-0.020840203,-0.0067201294,-0.012660145,0.016371261,-0.02376006,-0.019213106,-0.008241353,0.042415943,-0.029800376,-0.057148963,-0.04132378,0.042505097,-0.027304009,0.0066978405,-0.029666642,-0.020773336,0.001964217,0.046049047,0.010776725,-0.057238117,-0.014710731,-0.028485324,0.028173279,-0.018343836,-0.003591313,-0.017129086,0.009840587,-0.00093892356,-0.0123369545,-0.042371362,0.04069969,-0.010464679,-0.0022247194,-0.023024524,0.02703654,0.031338315,0.0061684772,0.0051905476,0.030825669,-0.030647356,-0.021709474,0.0035773823,-0.00835837,-0.015892047,-0.0230691,-0.0023305921,0.032430474,-0.013261947,-0.026301004,-0.018098658,-0.008603549,-0.00016046329,-0.035082866,-0.011712862,0.01319508,-0.010793442,-0.0016744601,-0.022757055,0.02485222,-0.019937498,0.035127442,-0.02209953,0.00017665763,-0.02768292,-0.025743779,0.042148475,-0.029978687,0.022411576,0.04156896,-0.020517012,-0.011902319,0.0030424467,0.0068092854,-0.013261947,-0.03934006,0.012147497,0.016248671,-0.019881776,0.007868012,-0.009227641,0.018622449,-0.023960661,-0.034748532,-0.0072606374,0.01681704,-0.004156896,0.042527385,0.0035300183,-0.021965796,-0.012626711,0.025899803,-0.04326292,-0.016794752,0.011623707,-0.004296202,-0.0034241455,0.011395245,-0.005834142,-0.011645995,-0.02036099,0.027370876,-0.0078067174,0.047297228,0.0070767533,-0.0020394423,0.02398295,-0.0020018297,-0.020338701,-0.0021425288,0.027794367,-0.0016452058,-0.042571966,0.02311368,0.03604129,0.0022790488,-0.03365637,0.028864238,0.019179674,0.04359726,0.01847757,-0.012682433,-0.012704723,0.0046138205,-0.0050846753,0.019168528,-0.010319801,-0.019279974,-0.024740776,0.007633978,0.0028780655,-0.028217858,0.052468274,0.012660145,-0.025342578,0.033990704,0.0012962439,0.0230691,-0.010057905,0.040788844,0.025431734,0.008386231,0.00786244,-0.008152197,0.021564595,0.028106412,0.0015825181,0.0029783659,-0.024228128,-0.01153455,-0.010046761,-0.02725943,-0.035261177,0.0068594357,-0.000705934,0.004956513,0.005391149,-0.007868012,0.018912205,-0.0046890457,-0.016371261,0.012816167,0.0040788846,0.023225125,-0.029220862,0.0015323678,0.03722261,-0.019235395,0.024317285,-0.0057171253,-0.013540559,0.010431246,-0.017463421,-0.0077008447,-0.009528542,0.009567548,-0.002011581,0.028708214,0.038158745,0.022556454,0.00096539175,-0.00003822213,-0.014788742,0.0040983874,-0.006591968,0.035706956,0.0007431984,-0.0352166,0.02284621,-0.042594254,0.0010691748,-0.0030563774,0.009690137,-0.008118764,-0.018187813,0.0021606386,-0.014398686,-0.04622736,0.040432222,-0.052022494,0.027861234,0.035751533,0.030491333,-0.040053308,0.03472624,-0.008592404,0.01604807,-0.030758802,0.026546184,0.047163494,0.046940606,0.03124916,0.02219983,0.033500347,-0.009589837,0.0038225611,-0.0461382,-0.011980331,0.0032569782,-0.02179863,-0.04219305,-0.014967054,0.04288401,0.0017134659,-0.055098373,-0.013150502,-0.0205393,-0.008832011,0.01165714,-0.026969673,-0.003816989,0.020918215,0.020048944,0.0010622095,0.0063579334,-0.03497142,-0.025431734,0.028931106,-0.014175796,-0.023202835,-0.016059214,0.07038862,-0.030000975,0.019157384,0.017552577,0.020739902,0.0026161699,0.037289474,-0.024785353,0.049303237,0.013239658,0.013874894,-0.015446268,0.0017900843,0.026568472,0.028440747,0.07065609,0.0033795675,0.004471728,-0.0010503685,-0.02058388,0.019904066,0.018566726,0.016995352,-0.0052992064,0.0054440848,-0.03102627,0.048055056,-0.014331819,-0.008675988,0.009194207,-0.0074055158,-0.021018514,0.0010754436,-0.010559407,0.06593082,-0.03757923,-0.00902704,-0.013986339,-0.030446757,0.0005962304,0.011802019,0.029555196,0.013696582,-0.02011581,-0.007121331,-0.03100398,-0.04622736,0.04903577,-0.0645489,-0.007951596,-0.04116776,-0.026546184,-0.004246052,0.011467684,-0.027014252,-0.0009646952,-0.020684179,-0.01669445,0.019848343,-0.023024524,-0.031204581,0.0042989883,-0.021174537,-0.005572247,-0.0007320539,0.02572149,-0.04491231,0.0066086845,0.002756869,-0.010637419,-0.052646585,-0.0018193385,0.028574482,-0.02926544,-0.00073971576,-0.031739518,-0.019123951,0.027838944,0.011980331,-0.008765144,0.032920834,-0.00967342,0.04988275,-0.017095653,-0.0016702809,-0.024072105,0.008163341,-0.001649385,-0.018967928,0.030803379,0.01783119,0.011835452,-0.020004366,0.064281434,-0.013016768,-0.0033294174,-0.022612177,0.036620807,0.023158258,-0.019001361,-0.012715867,0.02681365,-0.013339958,0.0026955744,0.0033349895,0.030892536,0.00781229,0.00041339104,-0.0180095,-0.0378467,0.05206707,0.011122204,-0.02175405,0.02046129,-0.03100398,0.016538428,0.017853478,0.009311224,0.0025590542,0.025030533,0.02683594,0.014097784,-0.029978687,-0.0009375305,0.0354172,0.019012505,-0.009060473,-0.021263693,0.008893305,-0.0015323678,-0.0030229439,-0.009823871,-0.0040928153,-0.018455282,0.01805408,-0.010386668,0.0040092315,-0.03432504,-0.02078448,-0.018343836,0.016371261,0.026902806,0.03392384,0.006826002,0.008469815,-0.035796113,-0.010503685,-0.0032263307,0.011835452,0.017675167,0.0281287,0.017719744,0.05411766,0.027147986,-0.007099042,0.024607042,-0.0022762627,-0.019190818,-0.004126249,0.0028432389,0.026256427,-0.037712965,0.01926883,-0.018733893,0.010481396,0.0054496573,-0.00042453554,0.011322806,0.031516626,-0.04239365,0.0584863,0.025008243,-0.017195953,-0.031271446,-0.027125698,0.020349845,-0.036865983,0.03129374,0.028217858,0.061027244,-0.036152735,-0.013406825,-0.0019558587,0.047921322,-0.02153116,-0.028641349,0.025119688,0.004608248,-0.0015964487,0.026011247,-0.0025214416,-0.009255501,-0.00044229708,-0.03013471,-0.0049063633,0.022110675,0.0073107877,-0.027014252,-0.0277275,-0.012370388,-0.043240633,0.024005238,-0.0002667713,0.02046129,-0.049749017,0.02659076,0.011712862,-0.01880076,-0.028552191,-0.021843206,-0.005031739,-0.0012537555,0.025877513,-0.003635891,0.0036275326,0.0024880082,-0.005934443,0.039718974,-0.0010538511,-0.07676327,0.024495596,-0.042527385,-0.026055826,0.014699587,0.0027638343,-0.011958041,-0.005288062,-0.007845723,-0.002348702,-0.006926303,-0.018221246,0.04464484,0.0068037133,-0.01309478,-0.02076219,-0.012604422,-0.032831676,0.00972357,0.021564595,0.044154484,0.004140179,0.0277275,-0.0047364095,-0.00692073,-0.01956973,0.04814421,0.023559459,0.031494338,0.02462933,-0.0042544105,-0.009595409,-0.00044682453,0.011478828,0.036397915,0.06793683,-0.01817667,0.019881776,0.001989292,-0.026724495,0.0007080236,-0.00962327,0.01341797,0.0076451222,-0.010620702,-0.03940693,0.010063478,-0.043396655,0.018778471,-0.015479702,-0.007951596,0.048233368,0.019435996,0.022779344,-0.017742034,0.024027528,-0.021475438,-0.028351592,0.049481552,0.026434738,0.029644351,-0.011623707,0.0040760986,-0.007567111,-0.012325809,-0.031160003,0.014298385,-0.041724984,-0.022144109,-0.0019210321,0.037712965,-0.008464242,-0.007204915,0.020572735,0.039652105,-0.032631077,0.012782734,0.033099145,0.015423979,-0.029889531,0.011980331,0.03737863,0.006943019,0.006837147,-0.04943697,0.057148963,-0.030402178,0.0011450967,-0.017987212,0.0071659093,0.005850859,0.0038253474,0.024673909,-0.009645559,-0.029332306,-0.0016883907,-0.039005727,0.038827416,0.0333889,-0.017474566,0.019826053,0.0044605834,-0.023715481,-0.01061513,-0.02167604,0.0084753875,-0.004744768,-0.025164265,0.007773284,0.0045107338,0.01902365,0.0035355906,0.018243536,0.033567213,-0.0022679043,0.03898344,0.016761318,0.026947385,0.0028752792,0.0031706083,0.025409445,-0.0025799503,0.04009789,0.02254531,0.026278716,-0.0039256476,0.009890738,-0.03124916,0.0027136842,-0.030625068,0.0032569782,-0.033344325,-0.018221246,-0.0039841565,-0.0404768,-0.017296253,-0.015056211,0.009378091,0.005416224,0.0018959569,0.015992347,-0.0068538636,0.04437737,-0.010453534,-0.03276481,0.009394808,-0.00089573866,0.00080518966,-0.00302573,0.02088478,0.015490846,-0.004783774,0.011361811,-0.00957312,-0.00582857,-0.009879594,-0.015490846,0.015267956,-0.0074668108,-0.00560568,-0.02725943,-0.02685823,-0.004471728,0.03385697,-0.0152791,0.029376885,-0.013027913,0.019413708,-0.043240633,0.024228128,0.025164265,0.018889917,-0.017151374,-0.0017872981,0.019848343,-0.02681365,-0.02393837,0.03321059,-0.0058954367,0.011634851,0.049169503,0.019982077,-0.006508384,0.005301993,-0.03385697,-0.0036526078,0.0024671122,-0.051487558,0.037757542,-0.027192563,-0.00092081376,-0.00796274,0.022567598,-0.036843695,0.02705883,0.040766556,-0.023225125,0.008386231,0.0067145573,0.0014334605,-0.017775467,0.031204581,0.019937498,-0.015134222,0.0031093135,0.0052323397,0.0021717832,0.0002406514,0.028396169,-0.03387926,0.006636546,-0.001389579,0.0028808515,0.042505097,-0.026880518,0.00059065816,-0.027304009,0.012615566,-0.017240532,0.008993606,-0.030469045,-0.006413656,0.013161646,0.013261947,0.04422135,-0.012236654,0.0047085485,-0.015435123,-0.010921603,0.012247798,0.012258942,-0.014521275,0.018499859,0.00011928091,0.0126378555,0.00032144898,0.0066254013,-0.050417688,-0.0031678223,0.02681365,-0.0427057,-0.024941375,-0.058218833,-0.012693577,-0.025699202,-0.0016117723,0.0066142567,0.012481833,-0.040543668,0.019213106,-0.004042665,0.0058620037,-0.004764271,0.013183936,-0.015635723,0.022311276,-0.03722261,0.013618571,0.045826156,-0.04052138,0.00682043,0.0008198168,0.016627584,0.011857741,0.052289963,0.037623808,0.030045554,0.032831676,0.011991475,0.02681365,0.040298488,0.00984616,-0.00090479356,0.024540175,0.008230208,-0.014677297,0.0019739685,-0.012782734,-0.037289474,-0.014688442,-0.001875061,-0.00079125905,-0.011857741,-0.036598515,0.0033795675,-0.02768292,0.024829932,0.0041931155,-0.028708214,-0.0028864238,-0.003591313,0.021274839,-0.01961431,-0.011228077,0.018499859,-0.010353235,0.008319364,0.027616054,0.012615566,-0.0025242278,-0.0017441132,-0.017652877,0.0063356445,0.0004955817,-0.017886912,0.014287241,-0.023826927,0.0016842115,0.0034965847,0.0016312752,-0.002823736,-0.026657628,-0.045046043,0.00830822,-0.02157574,-0.0060681766,0.013941761,0.015568857,-0.013718871,-0.015970059,-0.014532419,-0.0071714814,-0.002391887,0.0126378555,0.0025130832,-0.010977326,0.003413001,-0.0057171253,0.016549572,0.0057115527,0.049169503,0.013562849,0.017006496,0.014276096,-0.001627096,0.0179092,0.0063189277,0.00057359313,-0.009099479,0.0060403156,-0.0055945357,0.009991039,-0.0044856584,0.01188003,0.013919472,-0.016003493,0.011144494,0.00687058,-0.027304009,-0.023916082,0.031093135,-0.016750174,-0.0062520606,0.010102483,-0.015145366,0.020650746,-0.00868156,-0.0031093135,-0.0064470894,-0.005669761,-0.023581747,0.041702695,0.012682433,-0.010721003,-0.014287241,0.011094343,-0.028307013,0.00040538094,-0.011033048,-0.008519965,0.025810646,-0.057282697,0.010202784,0.005335426,0.012303521,0.026902806,0.007633978,-0.0117908735,-0.0091384845,-0.012671289,-0.031382892,0.031962406,-0.0044856584,0.012615566,0.04203703,0.012047198,0.010364379,-0.007009886,-0.017964924,-0.019235395,0.014498985,-0.015658014,0.03122687,-0.037467785,-0.03956295,0.022233265,-0.002823736,-0.011501117,0.0063412166,0.041212335,0.040543668,-0.009879594,-0.015513135,0.03695514,-0.039050303,0.007879157,0.027749788,-0.034659375,0.0122143645,0.014209229,0.033076856,0.025899803,-0.0027526899,0.0068315743,-0.031806383,0.04228221,0.020182677,-0.010030044,-0.027125698,0.0027276147,0.015691446,-0.022210976,0.0008490711,0.02309139,-0.050105643,0.003499371,0.01926883,-0.006775852,0.034748532,0.023737771,-0.0078011453,-0.007985029,0.014822176,-0.02398295,0.030424466,-0.008040752,-0.015223378,-0.02552089,-0.026011247,0.029577484,-0.013718871,-0.003229117,-0.024161262,-0.023626326,0.016605295,0.027214853,0.0378467,-0.02056159,0.006257633,-0.025810646,0.010080194,0.006982025,0.023158258,-0.022979945,-0.038002722,-0.03303228,-0.0019182459,-0.0030758802,-0.025231132,-0.005017808,0.01629325,0.013707727,0.010542691,0.04908035,-0.002260939,-0.02703654,-0.029666642,0.0029922964,-0.034815397,0.017808901,0.023180546,-0.019658886,0.008375087,-0.010620702,0.032809388,0.010893743,-0.012760445,0.014420974,-0.022757055,0.023002233,-0.019380273,-0.02991182,0.019335696,-0.022010375,0.0035077294,-0.0060626045,0.03713345,-0.001039224,-0.0023654187,-0.021464294,-0.013507126,0.021765195,-0.022679044,-0.017151374,-0.043396655,-0.0017246103,0.014777598,-0.03635334,-0.024294995,-0.018165523,-0.0077677118,0.023514882,-0.0037556943,0.010570552,-0.019235395,-0.006096038,0.04132378,-0.0358184,-0.018098658,-0.0061796214,0.00066100777,-0.035617802,-0.013027913,-0.0114899725,0.009355802,-0.011857741,-0.0066978405,-0.018533293,-0.001990685,0.013429115,-0.0014543564,-0.014666153,-0.0057951366,0.00659754,-0.02167604,0.054251395,-0.017028786,0.01024179,-0.011567984,0.057104383,0.032742523,-0.002166211,-0.015056211,0.015691446,-0.00478656,0.030669646,-0.0065418174,-0.043664124,-0.020505868,0.0021146676,-0.028106412,-0.0017872981,-0.0013923651,0.008553399,-0.033188302,-0.0105872685,0.015591146,-0.020383278,-0.0025005457,0.031516626,-0.06980911,-0.011545695,0.044600263,0.03564009,-0.04156896,-0.009066045,0.024473308,0.0013853998,-0.022723623,0.010509257,-0.016649874,0.0019516794,-0.021152249,0.008848728,0.0066142567,0.025097398,-0.010152633,0.0056335414,-0.0017608299,0.044956885,0.038359348,-0.023737771,0.020149244,0.019536296,-0.0152345225,-0.008876589,0.010191639,-0.026791362,0.02209953,-0.00514597,-0.013172791,0.040343065,0.001671674,-0.04814421,0.02728172,0.0123369545,-0.019034795,-0.03100398,-0.038626812,-0.0058007087]},{"id":"interface-MP4File","type":"interface","source":"main","text":"Interface: MP4File\nProperties: onError: (e: Error) => void, onReady: (info: { tracks?: Array<{ id: number; type: string; codec: string; video?: { width: number; height: number; }; timescale?: number; }>; }) => void, onSamples: (trackId: number, user: unknown, samples: Array<{ data: ArrayBuffer; is_sync?: boolean; is_rap?: boolean; timescale: number; dts: number; duration: number; }>) => void","meta":{"url":"/docs/typedefs/MP4File"},"embedding":[-0.0042356364,-0.014830531,-0.051895253,0.016745271,0.009254576,-0.010797973,0.018648406,-0.013693291,0.05217376,0.004076075,0.079931684,0.008709165,0.035625767,0.022303818,-0.008482878,0.00991023,-0.044027414,0.018857287,0.04135838,-0.0028837144,-0.0093358075,-0.024346208,0.033490542,-0.013229112,0.029869942,-0.026388597,-0.0151322475,0.006974295,0.0024833595,0.012695305,0.036136363,-0.025622701,0.029196883,-0.015886538,0.0076821684,-0.04901734,0.022988483,0.009208158,-0.027757926,-0.047578383,0.016350718,-0.013472806,-0.014203888,0.018984936,0.032306883,0.0141226575,0.006260619,0.0045837713,-0.015109038,0.04539674,-0.004775245,0.048692416,-0.011035864,0.048413906,0.023533894,0.010490454,-0.015259896,0.028430985,0.014505605,-0.026829567,0.009271983,-0.0011017007,0.0053902827,-0.017128218,-0.010496256,-0.0038555898,-0.053148538,0.035834648,0.02171199,0.01741833,0.051848836,0.005393184,-0.018578779,0.020667586,-0.015596426,0.033188824,-0.027061656,-0.037273604,0.0015535502,-0.03172666,0.07747153,0.015306314,-0.07204064,-0.024578298,-0.002766219,0.021804826,-0.08875109,0.0042559444,-0.030171659,0.0048158607,-0.03516159,0.021410273,-0.07626467,0.012776537,-0.028291732,-0.04704458,0.01237038,0.014934971,0.014482396,0.029661061,0.0029083737,-0.022118146,-0.04702137,-0.020481914,0.02541382,-0.031773075,0.0004257395,0.03128569,-0.05328779,-0.0064346865,-0.0058428575,0.014435978,0.010757357,0.017151427,0.04836749,-0.037203975,0.009678139,0.021804826,-0.0088948365,-0.015851725,-0.04699816,0.036763005,-0.0042269332,-0.015341128,0.024671134,-0.022976879,0.028268524,0.015886538,-0.044677265,-0.014250306,0.04358644,0.031517778,0.00088556716,-0.027525837,0.010008868,0.011088084,-0.010235155,0.023905236,-0.026365388,0.002241116,-0.0036612146,-0.022419862,0.05672272,0.011824969,0.024090908,0.00072274177,0.028779121,0.03875898,-0.0036380058,-0.032074794,0.011999036,-0.008442262,-0.009573699,0.0124980295,0.012904186,-0.052127343,0.016362322,0.047578383,-0.03014845,-0.004435814,0.017267473,-0.014772508,0.007891049,-0.017534375,0.0013548235,0.04966719,0.04790331,-0.0077285864,-0.03172666,0.009034091,0.026458224,-0.016339114,-0.043748904,-0.025715537,0.013995008,-0.03353696,0.05533018,-0.060807496,-0.022617139,-0.0028692086,0.0010900962,0.02026143,0.039060693,-0.023116132,-0.030171659,0.009776778,0.027734717,0.06076108,0.020423891,-0.037273604,-0.048738834,0.054958835,-0.024578298,0.012358775,0.02696882,-0.008065117,0.015271501,0.027386582,0.010838588,0.010612301,0.006307037,0.028732702,0.03439569,-0.0074674855,-0.041683305,0.020052548,-0.025135312,-0.017569188,-0.00714256,0.026713522,0.048460323,0.027386582,0.0041573066,-0.037087932,-0.03353696,0.009271983,0.021735199,0.044584427,-0.039246365,0.014273515,-0.03550972,-0.003501653,0.03843405,0.015805308,0.026411805,-0.0058921766,-0.010391816,-0.032260466,-0.022559118,-0.023765983,-0.004868081,0.035022333,-0.02945218,-0.00553824,0.039455246,0.04256525,-0.009463456,-0.016199859,-0.016025793,0.019066168,0.00039600302,-0.048321072,-0.025483446,0.015515195,0.03288711,0.03263181,0.020655982,0.027757926,-0.010600696,0.027711507,0.04247241,0.014215493,0.02047031,-0.0061909924,0.016350718,-0.019054562,0.00061141123,-0.015306314,-0.026713522,0.013229112,0.02631897,-0.05802242,-0.032492556,0.0023890731,-0.03713435,-0.029382553,0.030983971,0.057976004,0.0061793877,0.0109604355,0.035579346,0.0016724962,0.00029881546,0.009904427,0.0032405523,0.019762436,-0.016350718,0.028848747,-0.03845726,0.032098003,-0.007334034,-0.029730689,-0.058625855,0.050224207,-0.006086552,0.001420824,-0.025692327,0.028268524,0.045303907,-0.031633824,0.045744877,-0.032678228,0.033351287,-0.064381674,0.023359826,0.0170818,0.05064197,-0.041195918,0.008401646,0.032330092,0.052730776,-0.037018303,0.011743737,-0.04379532,0.00393392,0.024856804,-0.015074225,0.025483446,0.03374584,-0.01710501,-0.020191802,0.0053989864,-0.043400772,-0.0053061503,-0.020551542,-0.02541382,0.08545542,-0.025576282,0.0071367575,-0.022338632,0.020899676,-0.019762436,-0.026620686,-0.012590866,0.0018871792,0.020864863,0.024439042,-0.0090573,-0.0074558808,0.027641881,-0.03372263,-0.03014845,0.009271983,-0.014227098,0.015979374,-0.010861797,-0.019913295,0.010420826,-0.03465099,0.024694342,0.022106541,-0.07385094,-0.03978017,0.06679541,0.04651077,-0.045976967,-0.020075757,-0.039432038,-0.023638334,-0.0071715713,-0.021630758,-0.019089377,-0.05751182,0.02168878,0.02158434,-0.0132871345,-0.015027807,-0.035927482,-0.077982135,-0.013658478,-0.046116218,0.044282712,0.026667105,0.007647355,-0.013554038,0.031981956,-0.04836749,0.00035883242,-0.009695547,-0.038132336,0.063035555,0.018230645,-0.016014189,-0.023510685,-0.03193554,-0.010803775,-0.036113154,-0.0052597323,0.033653002,0.0045170453,-0.001640584,0.062107198,0.029312927,-0.0019321466,-0.0024151832,-0.0359739,-0.043980993,0.03998905,-0.011894596,0.04365607,0.046882115,-0.012869373,-0.064056754,-0.027433,0.009388028,-0.003043276,0.027920388,0.010386013,0.009823196,-0.022582326,-0.024183745,0.021421878,-0.004679508,0.029034419,-0.014842135,-0.014702882,0.05240585,0.049342267,0.027966807,-0.051802415,0.03683263,-0.041103084,0.053844806,-0.015016202,0.06790944,-0.01937949,-0.0038410842,-0.047996145,0.0028692086,0.05082764,-0.013554038,0.0058718687,-0.07236556,0.029359344,0.015480381,0.004728827,0.024392625,-0.027781134,0.045814503,-0.05987914,-0.010966238,-0.0017783872,0.018207435,0.045675248,0.014064634,-0.02836136,-0.0178593,-0.04005868,-0.004366187,0.03615957,-0.017870905,-0.047114205,0.034790244,0.04616264,-0.027525837,-0.02474076,-0.019391093,0.0031506175,-0.02215296,-0.020621167,-0.020644378,0.008088325,-0.024647923,0.010101703,-0.028941583,-0.003118705,-0.03302636,-0.036530916,-0.016037397,-0.034511734,-0.033212032,0.011244745,0.030960763,0.028059643,0.02427658,0.03281748,0.006504313,0.01910098,-0.024021283,-0.017139822,0.004412605,0.018590383,-0.0045663645,0.018926913,-0.039896216,-0.0057210107,0.022141356,-0.031100018,-0.011267954,-0.0019016848,-0.025669118,0.0033391903,-0.025622701,0.011233141,0.002647273,0.11818007,0.025970835,0.009097915,-0.04049965,-0.009538886,-0.042843755,-0.023568707,0.038132336,-0.011459428,-0.024601506,-0.018044973,-0.034929495,-0.018474339,0.041938607,0.016315905,0.036113154,-0.033815466,-0.008297206,0.027757926,0.01780128,0.0051349844,-0.02833815,-0.06489228,-0.050456297,0.01154066,0.037064724,0.00072745606,-0.032074794,-0.014714486,-0.039269574,-0.0028271424,0.018056577,-0.0053641726,-0.02248949,0.011407208,-0.025878,-0.004247241,0.009747767,-0.015550009,-0.02341785,0.00988702,0.015468777,-0.028593449,-0.0048042564,-0.026852775,0.04358644,0.004955115,-0.01358885,0.00025076565,-0.022327026,0.008558307,0.0051930067,-0.018834077,-0.004215329,-0.025576282,0.025344193,0.013310343,-0.051802415,-0.005660087,-0.0013599005,0.057558242,-0.02114337,-0.028964791,-0.0071831755,-0.002745911,0.0003479532,-0.041544054,0.017998554,-0.02696882,0.014169075,0.030960763,0.041915398,-0.055005252,-0.045466367,-0.023487475,-0.0001129624,0.010049483,0.049852863,-0.02539061,0.006016925,0.024996059,0.008923848,-0.003307278,0.005488921,-0.02787397,0.008680154,0.0006658073,0.020760423,0.038782187,0.01154066,-0.008697561,-0.028639866,-0.038526885,-0.006539127,-0.008575713,-0.0074036606,-0.0034639384,0.012196313,0.089168854,-0.009933438,0.015375941,0.009225565,0.0077808066,0.0062025967,0.0048593776,0.037296813,-0.03300315,0.005445404,0.009167543,-0.025924418,0.019866876,0.02541382,0.040870994,-0.015619636,0.021909267,-0.0007408738,-0.009492468,-0.004221131,0.010008868,0.047856893,0.040383603,-0.010664521,0.00046345408,-0.039664127,0.0128925815,-0.014668068,0.04358644,-0.0014636156,-0.056583464,-0.024206953,-0.017940532,-0.050502714,0.013055044,-0.009283587,0.005474415,-0.021224601,0.012730119,0.0063186414,-0.00067813706,-0.004702717,-0.00833202,-0.022663558,-0.008448064,-0.020493519,0.00079200603,0.037389647,-0.016060606,-0.008059314,-0.0050972695,-0.012764933,-0.0111809205,0.012335567,-0.008889034,-0.012648888,-0.018253854,0.030194867,0.029661061,0.040754948,0.019367883,0.034790244,-0.0075661237,-0.016547995,0.008128941,-0.03147136,0.0046011778,-0.022709975,-0.005474415,-0.04073174,-0.016199859,0.028268524,-0.036322035,-0.030171659,0.029266508,-0.03288711,-0.0064695,0.011772749,0.036136363,-0.016141837,-0.024578298,-0.0001898421,0.030473376,0.037737783,0.025274565,-0.033397704,0.041056663,0.017592398,0.018509151,-0.0037743584,-0.021294229,0.032330092,-0.06298914,0.01710501,-0.011238943,-0.037853826,0.0008065116,0.001374406,-0.014006612,-0.04702137,-0.012463216,0.0037685563,-0.01586333,0.009324203,0.012962209,0.014319933,-0.01358885,-0.008372636,0.0032492555,0.020853259,-0.0020235318,-0.00934161,0.031100018,0.0054250965,0.001917641,0.0328639,-0.04228674,0.009271983,-0.019611578,0.006069145,0.009016684,-0.045303907,0.042542037,0.026202925,0.017012173,0.031633824,-0.018033369,-0.02476397,0.0035045543,-0.039246365,0.0207024,-0.019391093,0.012811351,-0.0012880977,0.004456122,0.012730119,-0.008889034,0.0033043767,-0.024346208,-0.032956734,0.023673147,-0.00522782,-0.023092924,0.02497285,0.054819584,-0.029498598,-0.008697561,-0.000046825906,0.012776537,-0.0024499968,0.008575713,-0.006597149,0.04565204,0.028709494,-0.0017174636,0.020040944,0.010623905,0.022942064,0.016002584,0.052080926,-0.00044858584,-0.004508342,-0.027943598,-0.022767998,0.031169644,-0.036368452,-0.008111535,-0.03082151,0.0059066825,-0.037273604,0.017163033,0.015422359,-0.03864293,-0.0021642363,-0.008227579,-0.021166578,-0.010223551,0.0025109202,0.03149457,0.0040818774,0.0050972695,0.0030780893,-0.01710501,-0.00070388446,0.01050786,0.03302636,0.018718032,-0.012521238,0.022338632,-0.021723595,-0.013321947,0.057279732,-0.0067538098,-0.029196883,-0.027131284,-0.0104788495,-0.003954228,-0.013751313,0.01358885,0.017789673,0.0044039018,0.017952137,0.0015259896,-0.018230645,0.0053409636,-0.04430592,-0.0043748906,-0.014238702,-0.0049522137,-0.007241198,-0.04565204,-0.002597954,-0.0046185846,-0.027502626,-0.064938694,-0.014169075,0.01097204,-0.014900157,0.003527763,-0.007600937,0.025738746,0.038410842,-0.00044604734,-0.025947627,0.016826501,-0.015004598,0.018578779,-0.0344189,0.054262567,-0.019147398,0.032028377,0.00628963,0.011099689,0.016710456,0.025320984,0.011198327,-0.011534858,0.06944123,0.028616657,0.019750832,-0.0021337746,-0.018369898,0.024578298,-0.00033235966,0.041079875,0.008221777,-0.0012373282,0.014876949,0.03323524,0.010774763,-0.008407448,-0.02349908,-0.016373927,-0.009353214,0.010182935,-0.010629707,-0.030171659,-0.0008558307,0.0028126368,-0.026922403,0.0020235318,0.01910098,-0.01203385,-0.03553293,-0.019832063,-0.013066649,-0.00030226054,-0.038851812,0.000778951,0.039478455,-0.022060124,0.054958835,-0.049342267,-0.021085348,-0.0003541181,0.014656464,-0.01394859,-0.03281748,0.023104528,-0.0061735855,-0.014633254,-0.022141356,-0.006736403,0.004920301,0.013530828,0.017557584,0.029545017,0.0038758977,0.007960676,0.033165615,0.008215975,-0.02429979,0.023684751,-0.0025515358,0.012614074,0.019414302,0.058533017,-0.0005678944,0.009231367,0.031007182,-0.031239271,0.018694824,0.0292433,0.003043276,0.024601506,0.012289149,-0.005732615,0.0034639384,-0.020389078,0.032492556,0.025831582,0.011941014,0.0040731737,-0.012254335,0.006568138,-0.036739796,0.019135794,-0.03216763,-0.041961815,0.013008626,0.0076937727,0.009562095,0.011610286,0.038155545,-0.030937554,-0.04583771,-0.009132729,0.015341128,-0.011894596,0.012103477,0.013240716,-0.04671965,-0.0066783805,-0.030751882,-0.020563146,0.0071599665,-0.04043002,-0.01151745,-0.006980097,0.00087323744,0.017743256,-0.006011123,-0.00758353,-0.003141914,-0.0012721416,0.0053293593,-0.011871387,-0.016037397,0.04767122,0.009463456,-0.02585479,0.02515852,-0.07723945,-0.0068466454,0.029962778,0.017673628,0.023812402,-0.012730119,-0.007072933,0.013263925,-0.03465099,0.032051586,-0.016373927,0.00815215,0.016049001,-0.03952487,-0.029220091,-0.011093887,-0.016083814,0.03560256,-0.045257486,0.03058942,0.029080836,0.013983403,0.04001226,0.025460238,0.024647923,-0.05871869,0.034558155,-0.0143431425,-0.016211465,0.004392297,0.0068930634,0.030635837,0.006063343,0.025878,0.020551542,-0.03692547,-0.0034958508,0.0133335525,0.03553293,-0.0021598847,-0.013437993,0.008088325,0.02316255,0.0081463475,-0.0048796856,0.030218076,0.02326699,0.0035828843,-0.0050421483,0.013820941,-0.016002584,0.023882028,-0.0017783872,0.021271018,0.064381674,-0.013844149,-0.0008376987,-0.0043806927,-0.011894596,-0.0028343953,-0.011262151,-0.028477404,-0.0017363209,0.0028692086,0.008558307,-0.01097204,-0.01628109,0.0008289953,0.003974536,-0.010542674,-0.0008079622,0.03284069,0.025367402,0.034024347,-0.022791207,-0.0043980996,-0.025460238,-0.0011067777,-0.046000175,-0.016443554,-0.013159485,-0.021665571,0.02991636,-0.0153527325,-0.0037540505,0.0039194142,-0.018149413,-0.0015970671,-0.009620117,-0.032260466,-0.008111535,0.013252321,0.0028242413,0.0012786691,0.009892822,-0.019623183,0.037296813,-0.010240957,0.018323481,0.011059073,0.03082151,-0.018335085,-0.031865913,-0.017174637,0.0074732876,-0.006544929,0.038085915,-0.0034842463,0.014459187,0.01824225,0.0031680241,-0.015039411,0.005781934,0.026620686,0.010438234,-0.0012264489,0.016060606,-0.0029315827,-0.004731728,0.005520833,0.0048622787,0.034534946,-0.0007046098,0.008233381,0.03465099,-0.020145385,0.041219126,0.01821904,-0.025669118,0.0011241843,0.016524786,0.016385531,0.0032434533,-0.01933307,0.029614642,0.041497637,-0.0076357503,0.015155456,0.022953669,-0.022269005,0.012219521,0.016803293,-0.020876467,0.021653967,-0.052545104,-0.02497285,-0.006997504,-0.006852448,-0.014064634,-0.015491986,0.03082151,0.020122176,0.0137165,-0.025274565,-0.027433,0.0089818705,0.026713522,-0.04049965,-0.049852863,-0.00052727875,-0.0086743515,-0.002204852,-0.020597959,0.010473046,-0.027015239,-0.015213478,-0.019170608,-0.01405303,-0.018601988,0.011737935,-0.007096142,0.03284069,-0.056351375,-0.034674197,-0.004151504,-0.006689985,0.006544929,0.03012524,-0.008639539,-0.037969872,-0.013263925,0.0056194714,0.004174713,-0.017569188,-0.0023441059,0.013623664,-0.011064876,0.021096952,0.017163033,-0.0053438647,0.0046853106,-0.0059327926,-0.0051436876,-0.05421615,0.0147376945,0.019623183,0.031216063,0.0068756565,-0.009956648,-0.003646709,-0.0045750677,0.019971317,0.003022968,0.008477076,0.012776537,0.014842135,-0.032260466,0.0103453975,-0.0020801038,-0.0188921,-0.032074794,-0.02179322,0.037250392,0.014656464,0.016791688,-0.012393589,0.028825538,0.012103477,0.0071077463,0.017290682,-0.008012896,0.0061909924,-0.014668068,0.03344412,0.0077169817,-0.003667017,0.0075139035,0.010983644,0.019042958,-0.010055285,0.010577487,-0.015074225,0.023974864,-0.0032956735,0.051384654,0.014401165,0.004435814,-0.054308984,-0.0040731737,0.012451611,-0.025251357,0.008987673,-0.004125394,0.03978017,0.02968427,-0.012289149,-0.01943751,0.024462253,-0.012730119,-0.017952137,0.0010342497,-0.033351287,0.010809577,-0.011621891,0.012231126,-0.02112016,0.022640347,0.0037772595,-0.038503677,-0.0035161586,0.0037337427,-0.0032666624,0.019576764,0.04008189,-0.008070919,0.0009218312,0.025112104,0.0039919424,0.009707151,0.01314788,-0.00045257487,-0.014308329,-0.046394728,0.035904273,0.010885006,0.011389801,0.035625767,0.058857944,0.02204852,-0.017255867,0.017128218,0.050966892,-0.0030084625,0.0062025967,0.015503591,-0.025669118,0.007571926,0.012521238,0.010200341,-0.015596426,-0.008506087,0.039292783,-0.013194298,-0.015921352,-0.0030113636,0.0362292,-0.017012173,0.045953758,-0.020714004,-0.0019916196,-0.027316956,-0.005236523,0.023998072,0.033490542,0.00067378534,-0.0040847785,0.007548717,-0.0042095263,0.027038448,0.0028590548,-0.028082851,-0.04586092,-0.03662375,0.014366351,0.011018458,0.00063063117,-0.01011911,-0.00050116866,0.014946575,0.03307278,-0.0019655095,-0.03300315,-0.012811351,-0.005294546,-0.014981389,0.00030606828,0.00047868496,-0.013194298,-0.018764451,0.0010871951,-0.007606739,-0.009521479,0.025831582,0.02789718,0.014169075,-0.042634875,0.0037946664,0.058811527,0.013635268,0.018311875,-0.00074993976,0.02269837,0.0058805724,0.0016246277,0.023905236,-0.020307846,0.023789192,0.01154066,0.0020394882,-0.035834648,0.00008259129,-0.022918856,0.010484652,-0.0037308417,-0.008268195,0.019321466,0.0007492145,0.0323533,0.013031836,-0.0041311965,0.0070149107,0.016350718,-0.03168024,-0.019112585,0.028964791,0.018393107,0.012149895,0.006765414,-0.013623664,-0.014656464,-0.026435014,0.011505846,-0.0007600937,-0.018230645,-0.017499562,0.01933307,-0.010525267,0.024647923,-0.025112104,0.01519027,0.015225083,-0.02875591,-0.0027575155,0.01304344,-0.052870028,0.022094937,0.034372482,-0.016014189,-0.0061445744,0.03200517,-0.038944647,-0.011418812,-0.02875591,-0.00006246476,0.022907251,-0.0011988883,-0.020307846,0.022303818,-0.019507138,-0.016988965,-0.016942546,-0.031981956,-0.024114117,0.0042588455,-0.0061213654,-0.0065565333,-0.0012605371,-0.0072992207,-0.010148121,0.0053061503,0.02023822,-0.013275529,-0.02427658,0.012556052,-0.0066261603,-0.002904022,0.04771764,-0.014934971,-0.05987914,0.002376018,0.016838105,0.02002934,0.025576282,-0.024880014,0.018474339,-0.0036583135,0.0063186414,0.00910952,0.00028449117,0.0033130802,0.005686197,0.031007182,-0.021421878,0.035416886,0.014227098,-0.04022114,0.012184708,0.015433963,0.0073456382,0.009434446,0.0061793877,-0.0027139988,0.041985024,0.013136276,-0.0032666624,-0.0035625766,0.023754379,-0.02156113,-0.016466763,0.022176169,-0.012927395,0.023649938,-0.026504641,0.0026849874,-0.016954152,-0.025483446,0.02139867,0.015097434,0.0151322475,0.033629794,-0.027525837,-0.022210982,0.016083814,-0.014412769,0.04790331,-0.025947627,0.0057935384,0.0022962373,0.016153442,-0.02429979,-0.032956734,-0.00055991637,0.01617665,0.0006389719,0.00049863016,0.01977404,0.019275049,0.00890064,-0.0031593207,-0.0122775445,0.0053322604,0.0019626084,-0.0030345726,0.0038700954,-0.022060124,0.026179716,-0.00028775493,-0.008442262,0.016095418,-0.023789192,-0.006788623,-0.0660063,-0.018462734,0.034233227,0.018068181,-0.0033507948,-0.0056978017,0.020621167,-0.050966892,-0.017940532,-0.00043806928,-0.025878,-0.0018958825,0.0008703363,-0.020795235,-0.03367621,0.03323524,-0.009428644,-0.022164565,-0.06428884,0.0012743174,-0.027154492,-0.007432672,0.037969872,0.008059314,0.008593121,-0.000214139,-0.020737212,-0.029266508,-0.031819496,-0.032933526,-0.0049986313,0.024647923,-0.022036916,-0.013960194,-0.018625196,0.014563628,0.042101067,-0.03212121,-0.034674197,0.028523821,-0.024531879,-0.038364425,0.009741965,0.0010204694,-0.008430658,0.03237651,-0.0082797995,-0.019414302,0.034813453,0.028709494,0.04249562,-0.013403179,-0.0017406726,-0.013565642,0.002233863,-0.009852207,0.027015239,-0.058161672,0.05574794,-0.022408258,-0.011163513,-0.0014585386,-0.03641487,-0.02352229,-0.054076895,-0.019309862,0.02787397,-0.009544688,-0.0031941342,0.004290758,-0.026829567,0.024160536,0.016780084,0.0031506175,-0.0021975993,0.023789192,0.02385882,-0.022338632,0.013797731,0.0023121934,0.004868081,0.004119592,0.0056687905,-0.024415834,0.0032666624,-0.011279559,0.023591915,-0.010055285,0.03574181,-0.013449597,0.0067015896,-0.020957699,0.023661543,-0.021004116,-0.00910952,-0.006585545,-0.037598528,-0.027015239,-0.00019800151,-0.018938517,-0.0033594982,-0.010467244,0.010153923,-0.017000569,0.042170696,-0.022025311,0.01151745,-0.009271983,-0.043772113,0.011447824]},{"id":"interface-PartialMessage","type":"interface","source":"main","text":"Interface: PartialMessage\nDescription: Minimal message data for MessageDelete when the full message is not available.\nProperties: authorId: string | null, channel: Channel | null, channelId: string, content: string | null, id: string","meta":{"url":"/docs/typedefs/PartialMessage"},"embedding":[0.022871068,-0.016179485,-0.025025431,0.013524613,0.020303242,-0.01904109,0.005309744,0.030030517,-0.000244814,0.025765313,0.023110442,-0.020303242,-0.02326277,0.017049935,0.03673298,0.015145826,-0.006577336,0.021880932,0.034491573,0.042086247,0.010641249,0.0244814,0.02482958,0.03884382,0.010216905,-0.015243752,0.019008446,-0.024067936,0.03114034,-0.0331859,0.039409615,-0.020509973,0.043261353,-0.028180812,0.0072519346,0.0346439,0.01451475,-0.00489628,-0.026831614,0.0091288425,-0.028637799,0.002867044,0.01834473,0.039953645,-0.017441638,0.025700029,0.039953645,0.06532726,0.020161793,-0.010206024,-0.034905035,-0.01802919,0.042086247,0.06528373,-0.0072084125,0.013448449,-0.022261754,0.0023801362,0.012327745,0.020020345,-0.044501744,-0.043783624,-0.009705515,0.010184263,-0.018954044,-0.004112875,-0.013394046,0.06872201,0.017419877,0.03866973,-0.017191384,-0.04175983,-0.06271591,-0.01258888,0.01660383,-0.0044583348,-0.0050295675,-0.0307704,0.007464107,-0.038887344,0.016527666,0.064065106,-0.06171489,-0.05557822,-0.043805387,-0.006359724,-0.018562341,0.020020345,-0.013763987,0.0034464372,-0.028724844,-0.024024414,-0.042586755,-0.04108523,-0.002692954,-0.063368745,-0.03322942,0.020999601,-0.024590207,0.035971336,0.025395373,-0.036145426,-0.080037855,-0.00122407,-0.0065501346,-0.040606484,0.004496417,0.015700739,-0.05975638,0.007893891,-0.022348799,-0.0056633637,0.0062509174,-0.007703481,-0.032685388,0.004999646,0.010178822,-0.01889964,0.029986994,-0.0004182239,-0.04613384,-0.021706842,0.023219248,-0.010994869,-0.013589897,-0.043761864,0.011125436,-0.049963817,-0.05196585,-0.000020071773,0.037734,0.03618895,-0.009602149,-0.0409329,-0.014144809,0.016005395,-0.0046949885,-0.03917024,-0.027049227,-0.054272544,0.012860895,0.0069907997,0.019802732,0.061627846,0.0051274933,0.033294704,-0.006131231,0.024089698,0.026853375,0.0059081777,0.033468794,-0.0032451455,0.014199212,0.0005508315,-0.0033403512,0.02220735,0.030705117,-0.018769074,0.007801406,-0.052836303,0.05344562,-0.07751355,-0.0037456541,-0.040824097,-0.01765925,-0.01258888,0.03409987,-0.018692909,-0.024089698,0.010940466,-0.0030438541,-0.052226987,-0.03866973,-0.021783005,-0.013219956,-0.0009248529,0.021423945,-0.042760845,-0.03114034,0.009667433,0.052226987,0.008829625,0.021619797,-0.02463373,-0.036275994,0.01677792,-0.028093766,-0.004806515,-0.009934008,-0.03146676,-0.019334866,-0.0004753472,0.0005460712,0.010369233,0.023436861,-0.0021530031,0.036841787,-0.024198504,0.010777256,-0.021989739,0.029747622,0.04212977,0.045219865,0.0009527345,-0.00069976004,-0.00891123,0.0055001546,-0.0049153212,-0.014765005,0.006588217,0.025460657,-0.026113493,-0.021793887,-0.047352467,-0.028703082,-0.035557874,-0.031183863,0.016484143,-0.017245786,-0.013154672,-0.015537528,0.01871467,0.050399043,-0.031619087,-0.011653147,-0.023654472,-0.02324101,-0.01189252,-0.052705735,-0.0037864565,0.0027024746,-0.0044311336,-0.029595293,-0.021043124,-0.02008563,0.027506214,-0.00489356,0.016679995,0.0003512401,-0.0060768276,-0.030552788,-0.025939403,0.007964616,0.048875757,0.021880932,0.0004335248,0.015972754,-0.0045889025,-0.03601486,0.007964616,0.10271308,0.028920693,0.021467468,0.02430731,-0.0114464145,-0.017028173,0.02291459,0.0024916625,0.027571497,0.0019897937,0.044305895,-0.0035198813,-0.029986994,0.009656552,-0.005995223,0.0039387853,0.06349931,0.022414083,-0.004983325,0.046220884,0.034774467,-0.028180812,0.06632827,0.030378697,-0.012142775,0.011674908,0.008334557,-0.007551152,-0.028594276,0.0054647927,-0.06415215,0.026287584,-0.021184571,0.00646853,-0.01749604,0.041803353,0.052879825,-0.019367509,-0.0065283733,0.036428325,0.0071104867,0.006229156,0.015265513,-0.06802565,0.000109911285,0.033991065,0.008073422,0.005685125,0.028420186,0.010070016,0.041694544,-0.025460657,0.032641865,-0.04648202,-0.007768764,0.0021081206,0.02485134,-0.032097835,0.014547392,-0.054620724,0.012523596,0.016320933,-0.07716537,0.0072356137,-0.057536732,-0.0017939426,-0.019976823,0.016582068,-0.0045045777,-0.016288292,0.01767013,-0.031727895,-0.048048828,-0.068069175,-0.02079287,0.0164515,0.002710635,-0.016690874,0.020412048,0.025025431,-0.0021883652,-0.012099252,0.0029785703,-0.00038184185,0.031314433,-0.018584102,-0.04757008,0.06998416,0.017876862,0.053184483,0.08238807,-0.004594343,0.00023818362,0.015406962,-0.0047113094,-0.024394356,-0.04861462,-0.0027187956,0.030443981,-0.0018061833,-0.058624793,-0.03742934,0.0010588205,-0.069897115,0.012882656,0.018301208,0.056579236,-0.0027147152,-0.042173292,-0.0019857136,-0.011881639,-0.020488212,0.021978857,0.011125436,-0.0020129152,0.012023088,-0.0489628,-0.030161085,-0.011511698,-0.05052961,-0.0011989085,-0.036319517,-0.031923745,0.0035117208,-0.009885046,-0.017735414,-0.04582918,0.008106064,-0.010641249,-0.05579583,0.04006245,0.042216815,-0.015232871,0.029791145,0.0040312707,-0.010690211,-0.003957826,0.03586253,-0.023741517,0.044197086,0.03007404,0.023153964,-0.027310362,0.041041706,0.0032451455,0.018061833,-0.038038656,0.01763749,0.018192401,-0.0541855,0.02430731,0.0054811137,-0.0032424254,0.008443363,-0.05644867,0.001889148,0.033468794,-0.005717767,0.02848547,-0.023980891,0.013437568,0.013861913,0.022827545,0.03407811,0.014471227,-0.052531645,0.061453756,0.016212128,0.020912556,-0.019715687,-0.008965633,-0.018551461,-0.01767013,-0.0157225,0.010945906,-0.007224733,0.0300958,0.018823477,-0.0029214472,-0.07124632,-0.05213994,0.01641886,0.025482418,-0.016864965,0.069723025,-0.02815905,0.009705515,-0.016919367,-0.057971954,0.018573223,-0.029464725,-0.010766376,-0.015363439,-0.009183245,-0.003775576,-0.030726878,0.049398024,0.00090513175,0.0117510725,0.010091777,-0.027484452,-0.032794196,-0.03547083,0.024916625,-0.059016496,-0.053924363,-0.0045861825,0.04421885,-0.006082268,0.022936352,-0.0076980405,-0.0002725256,-0.009885046,0.045785658,-0.031205624,-0.019084612,0.011870759,-0.0061965142,-0.026331106,0.028289618,0.012371267,-0.024568446,0.047700647,0.05540413,-0.0034464372,-0.021957096,0.007893891,-0.019541597,0.031053295,0.0140686445,0.040323585,0.00066065777,-0.005018687,-0.03847388,-0.022827545,0.07176858,0.015874827,-0.019051969,-0.01681056,0.036994115,-0.041041706,-0.008258392,-0.05701446,-0.008073422,-0.019149896,-0.034491573,0.00577217,-0.0032832278,0.02445964,-0.022871068,0.013372285,-0.005456632,0.010222345,-0.0130023435,0.040105972,-0.013372285,-0.05840718,-0.043653056,-0.03603662,-0.046699632,-0.0072138524,0.032315448,-0.018497057,-0.022849306,-0.0066643814,0.03671122,-0.042216815,0.03218488,-0.029116545,0.031510282,0.018867,0.028746605,0.065196685,-0.00019177097,-0.010516121,-0.009868724,-0.01677792,-0.07050643,-0.010554204,0.021282498,0.018464416,0.013394046,0.039387852,0.021978857,0.003460038,-0.013970719,-0.0070234416,-0.0157225,0.04726542,-0.01904109,0.021598035,0.015624573,0.019780971,0.021130169,-0.004439294,0.027723826,-0.0022482085,0.060452737,-0.0032723472,0.033947542,-0.011925162,0.006626299,0.029464725,-0.03148852,0.01799655,-0.005891857,-0.02604821,-0.009732717,0.03544907,0.04058472,-0.009455261,-0.025438895,0.022653455,0.0016524945,-0.026331106,-0.04017126,0.01609244,0.0100156125,-0.028093766,0.0028915254,0.027549736,0.011228803,0.01206661,0.036972355,0.028246095,0.043783624,-0.025830597,-0.0050676498,-0.02361095,-0.031706132,0.015581051,-0.020673182,0.013568136,0.020368526,-0.013785749,0.011304966,-0.0078068464,-0.028637799,-0.029355919,0.02205502,0.019911539,-0.015885709,-0.01904109,-0.0017368194,-0.0353185,0.016070679,0.037342295,0.001101663,-0.013872794,-0.036624175,0.0013682382,0.050747223,-0.037102923,0.015341678,0.04530691,0.041999202,0.03270715,-0.027070988,-0.048179395,0.030726878,-0.01521111,0.040976424,-0.00856849,-0.006359724,-0.024916625,-0.026788091,-0.0036912512,-0.0016660953,0.025656508,-0.0046922686,0.02517776,0.023110442,-0.00026283503,0.016864965,-0.0234151,0.010331151,-0.040193018,-0.037690476,0.009569507,-0.009400858,0.015798664,0.019704808,0.019596001,0.008492325,-0.001818424,-0.038169224,0.04491521,0.001135665,-0.027593259,-0.021315139,-0.00048554776,-0.0017204984,0.02467725,-0.034339245,0.007676279,-0.01764837,-0.01048348,-0.0041699987,-0.02203326,-0.027332123,-0.013709584,-0.018507939,0.05105188,-0.0014022402,0.012719448,-0.004235282,-0.007621876,0.06001751,-0.011631385,-0.0020781988,-0.010994869,0.06654589,-0.0069907997,0.023719756,-0.010118979,-0.0013362764,-0.0013029545,0.00031009773,-0.039779555,-0.0024699012,0.022000618,0.021315139,0.0030220929,-0.005837454,0.011092794,-0.017408995,0.0136443,-0.042695563,0.0047466713,-0.003601486,0.0025542262,0.011870759,-0.010108098,-0.016364455,-0.008639215,-0.008356318,0.02147835,-0.0053940685,0.02587412,-0.03479623,0.03673298,-0.023502145,0.034382768,-0.023763278,0.010059135,0.018562341,0.009248529,0.018137997,0.034208678,-0.022327038,-0.029943472,-0.028420186,-0.0083671985,0.048048828,0.01958512,-0.0036966915,-0.04193392,0.006212835,0.022348799,-0.016658233,-0.02361095,0.0021258015,-0.0008534488,-0.02202238,-0.03092273,0.021043124,-0.017691892,0.04315255,-0.006082268,0.0036422883,0.018954044,-0.022631694,-0.017778937,0.030639833,-0.00910164,0.0013736786,0.030813923,0.030988012,0.025634747,0.017724534,-0.016223008,0.007083285,0.0053532664,0.00436585,-0.002992171,0.024242027,-0.0015940112,0.035797246,0.011174399,0.010216905,0.022479367,0.01660383,0.018431773,-0.038691495,-0.008524967,-0.028811889,-0.0033648324,-0.029051261,0.02920359,0.010983989,-0.029856429,0.003965987,-0.035405546,0.032446016,-0.020161793,0.0031036974,-0.01014074,-0.003269627,-0.034469813,0.027854392,0.02183741,0.0051818965,-0.056927416,0.025830597,-0.031771418,-0.0065174927,-0.023850324,-0.023697995,0.018301208,0.01940015,0.0060550664,0.015950993,0.012327745,0.017245786,0.015961872,-0.02535185,-0.0059081777,0.0153852,-0.041346364,0.020858154,0.042630278,0.0029758501,0.00822031,-0.01696289,0.01468884,0.012447432,-0.0300958,-0.017539563,-0.034665663,0.0004954083,-0.04165102,0.021978857,-0.017202264,-0.022892829,-0.015863948,-0.008078862,0.013372285,-0.06184546,0.013187314,0.029856429,-0.011620505,-0.0045535406,0.00081944687,0.014427705,0.0054131094,0.0149826165,-0.04926746,0.028572515,0.010352912,0.045481,-0.02256641,0.039387852,-0.0032750673,-0.00031077777,-0.013502852,0.023763278,-0.012784732,-0.010048254,-0.0035198813,-0.02589588,0.030400459,0.00506493,-0.03092273,-0.037146445,0.0005909538,0.027941437,-0.0071268077,0.014721482,-0.01242567,-0.02606997,0.006887434,-0.006016984,0.038952626,-0.0058428943,-0.006131231,-0.034469813,-0.024742534,0.040193018,-0.028354902,-0.0272886,-0.021086646,-0.029007738,-0.0055572777,0.008878588,0.02761502,-0.0050458885,0.0061693126,-0.0023175725,-0.00961847,-0.013176434,-0.026004687,0.054664247,-0.0060877083,-0.041041706,-0.019889778,0.013524613,-0.026505196,0.0045317793,0.032141358,0.032446016,-0.013861913,0.030291652,-0.011772834,-0.0046569062,-0.012164536,-0.042586755,0.023893846,-0.029334158,0.04202096,0.03074864,0.05331505,-0.0016035318,0.022098543,0.0031526603,0.018072713,0.017060816,-0.0047085895,-0.0450893,-0.026853375,0.036841787,0.0070887255,-0.02445964,0.018594984,0.006718784,0.023872085,0.003971427,0.032076076,0.03442629,0.0037157326,-0.021598035,-0.0066643814,-0.018268565,0.026026448,-0.015755141,-0.021184571,0.003217944,-0.024960147,0.010913264,-0.0077361222,-0.020956079,-0.06558839,-0.007181211,0.009863284,-0.0151349455,0.03301181,0.03636304,0.04931098,-0.010108098,0.00506493,0.0058483346,0.037342295,-0.0005702126,-0.011392011,0.0409329,0.0003900023,-0.013132911,0.018932283,-0.045872703,0.02672281,0.013100269,-0.0145256305,-0.034839753,0.039561942,-0.014427705,0.032206643,0.001292754,-0.0073172185,-0.014917334,0.034469813,0.006593657,0.04319607,0.009569507,0.017245786,0.03481799,-0.0031689813,-0.044958733,0.00909076,-0.020129152,0.023893846,-0.000402583,0.0012193098,0.021130169,-0.011196161,0.0077306824,0.03827803,0.0040775132,-0.03534026,0.017757175,0.005315184,-0.02306692,-0.0015776902,-0.016114201,0.03671122,-0.008949311,-0.006609978,-0.0008969713,0.054272544,-0.015417842,0.03198903,-0.009150604,-0.0057123266,-0.010173382,-0.05261869,-0.017713653,-0.0036640496,-0.038735017,0.043935955,-0.025090715,0.023328055,0.015254633,0.009536865,-0.007132248,0.036558893,0.015624573,-0.007654518,0.034709185,-0.011468176,0.0031444998,-0.037015878,0.0071376883,-0.028898932,0.014362422,-0.01676704,-0.019334866,-0.016103322,-0.0024086977,-0.042804368,0.0074369055,0.0060605067,0.0021122007,0.013089389,0.02361095,-0.01293706,-0.00017477,0.0051138923,-0.012142775,0.013568136,0.021967977,0.04617736,0.01242567,-0.011479056,0.026505196,-0.02306692,0.0029459286,0.03497032,0.0045344993,0.00174906,-0.007426025,0.000037019618,-0.008051661,-0.041498695,0.00437401,0.0054294304,-0.037015878,0.041324604,-0.0015137666,-0.028790127,-0.0008881308,0.006000663,0.014503869,0.03917024,-0.021032242,0.016048918,-0.012164536,-0.0262223,-0.022348799,-0.008144146,-0.020760227,-0.011674908,-0.022718739,-0.033947542,0.018769074,-0.020597018,-0.0026072692,0.0047493917,0.020379405,0.007094166,0.0011132237,0.0038680611,-0.004036711,-0.0307704,0.02744093,-0.049963817,0.028637799,0.018475296,-0.018268565,0.0030384138,-0.034752708,0.027005704,0.004145517,-0.011838117,0.0160598,-0.0042244014,-0.00013932296,-0.025286566,0.01800743,-0.012980582,0.038735017,-0.03392578,0.014351541,-0.022479367,-0.0038979829,-0.031445,-0.013361405,0.022784023,0.017224025,-0.0002730356,0.04491521,0.04630793,0.01835561,-0.017539563,0.012349506,0.00038150183,-0.008486886,0.0114464145,0.033686407,0.01328524,-0.008938431,-0.020890795,-0.013307001,-0.014199212,-0.017561324,-0.02831138,-0.027723826,-0.014743243,0.013317882,-0.035231456,0.009879605,0.0052662212,0.011968684,-0.029268874,0.0154722445,-0.03969251,0.009422619,-0.0035171611,0.0244814,-0.01014074,-0.016320933,0.014188332,0.024568446,0.019737449,-0.013404926,0.008535848,0.021054003,0.031553805,0.0138836745,0.015080542,-0.033468794,0.003917024,0.022163827,-0.017757175,0.024329072,0.012980582,-0.021706842,-0.048875757,0.030139323,0.005081251,-0.025264805,0.014090406,0.01820328,-0.0034518775,-0.03771224,-0.0031853023,0.055273563,-0.0025909483,0.011049272,0.039627228,0.019835375,-0.052923348,0.008301915,-0.0138836745,0.018050952,0.005929939,-0.06946189,0.0472219,-0.023872085,-0.01363342,-0.0297041,-0.007589234,0.0026181499,0.022131186,-0.002777279,-0.025808835,0.010407316,0.012001326,0.010042815,-0.010102658,0.027005704,-0.011783714,-0.009798001,0.020422928,0.0060768276,0.04215153,0.0073553007,0.009651112,-0.017093457,0.017376354,-0.0037293334,0.0031281789,0.013024105,0.022696977,0.020248838,0.03481799,0.008111504,0.0017463398,0.010434517,-0.014144809,0.008867707,-0.011740192,0.0035062805,-0.05179176,-0.031401478,-0.008106064,0.03285948,0.0022101265,0.011957804,0.020063868,0.022588171,-0.0038707813,-0.00041142353,-0.039736032,-0.018943163,0.02535185,-0.0009894565,-0.029769383,0.017800698,-0.05135654,0.022827545,-0.012795612,-0.017724534,-0.018616745,0.006348843,0.005035008,-0.016690874,-0.045350432,0.009814321,-0.0031172982,-0.00192315,0.0321196,-0.0004824876,-0.016386217,-0.006620859,-0.015635455,0.019323986,0.06228068,-0.032271925,0.031706132,-0.0079102125,0.040845856,-0.010429077,-0.0014960855,0.040628243,0.01820328,0.035731964,-0.016310053,0.020368526,0.03969251,-0.028420186,-0.017202264,-0.008203989,-0.0047929143,-0.03111858,0.014275377,-0.0128500145,-0.02972586,0.04069353,-0.0047929143,0.0151349455,-0.016908487,-0.02550418,0.023306293,-0.01625565,0.039126717,0.0066317394,-0.015853066,0.031706132,-0.013383165,0.0016688155,0.01727843,-0.010363793,0.011925162,0.0103801135,-0.00157361,0.0005872136,-0.0063162013,0.014373302,0.02028148,-0.02183741,0.009395418,0.01818152,-0.0220115,-0.041716307,0.0055708787,-0.034491573,0.0072301733,0.012099252,-0.0072138524,-0.031401478,-0.025612986,-0.0021040402,0.014210093,0.0029459286,-0.04367482,0.015200229,-0.013394046,-0.015200229,-0.009422619,0.0040312707,0.014318899,0.027136272,-0.014634437,0.009765359,0.0009030916,0.007980936,0.031901985,0.01889964,0.00192315,-0.03218488,0.008073422,0.036580652,0.002638551,-0.011761953,-0.02378504,-0.020346764,-0.003547083,0.00612035,-0.03148852,-0.0062182755,-0.052836303,-0.0576673,0.022958113,-0.016549427,0.009656552,0.0036504488,-0.013568136,0.001626653,-0.01416657,-0.05052961,0.02308868,-0.028768366,-0.012251581,0.008829625,0.00070928055,0.0009894565,0.025438895,0.007202972,0.0076273163,-0.027636781,-0.00049370824,-0.0122080585,-0.02132602,0.053750273,0.009846963,-0.010467159,-0.0023039717,0.0006739185,-0.016930249,-0.03847388,0.003095537,0.009395418,0.01871467,0.0059734615,-0.018975805,-0.020325003,-0.016146844,-0.033272944,-0.02308868,0.00978712,-0.025221283,0.024720773,0.0045045777,-0.005391348,0.016484143,0.0029051262,-0.0054593524,0.0017681011,0.0074749873,0.03198903,0.01048348,0.014308019,-0.009493343,0.0072192927,-0.004420253,0.013187314,0.014819408,0.021391304,0.00471675,0.006522933,0.026244061,0.032315448,-0.0033131496,0.004422973,-0.00209724,-0.03407811,0.005040448,-0.0017068976,0.0081550265,-0.017343711,0.012545357,0.03111858,-0.038582686,0.019454552,0.016647352,0.012643283,0.023001635,-0.0045045777,-0.0076164356,0.014993497,-0.009411738,0.013296121,-0.04075881,-0.012773851,-0.0058265734,0.02222911,0.009895926,0.0017517802,-0.020956079,-0.020879915,0.0072519346,0.0037810162,-0.02676633,0.02358919,0.004110155,-0.013840152,-0.017267548,0.004251603,-0.021434827,0.025917642,-0.026113493,-0.011620505,-0.0060877083,-0.02567827,0.0300958,-0.01644062,-0.0227405,-0.02220735,-0.0023964571,0.0063379626,0.015613693,0.04212977,-0.04439294,0.0058646556,-0.008301915,-0.007485868,-0.037995134,0.008835065,-0.004452895,-0.031401478,-0.013589897,0.038735017,-0.004787474,0.0026072692,0.0021312418,-0.01764837,-0.019051969,-0.010021053,0.01626653,-0.032598343,-0.013045866,-0.005870096,0.0019353906,-0.0080625415,-0.018268565,0.020531734,-0.003742934,0.043239594,-0.0007983657,0.008851387,0.029442964,0.0171261,0.021946216,-0.02781087,0.040301826,-0.028420186,-0.07155097,0.006593657,-0.0018850678,-0.0024236587,-0.0051193326,-0.01521111,-0.0025963886,0.032641865,0.0136443,-0.0128173735,-0.034905035,0.007937414,0.004809235,-0.01765925,-0.0140686445,0.00751851,-0.008073422,-0.011718431,0.011718431,-0.008601132,-0.032446016,-0.007654518,0.009542306,-0.02550418,0.01031483,0.009890486,-0.00022526289,0.008796983,0.023175726,0.0093736565,-0.004333208,0.035666678,-0.031749655,-0.023567429,0.013753107,0.00576673,-0.00559264,0.04056296,-0.01574426,-0.028267857,0.016473262,0.013241718,0.04757008,0.008541289,-0.01153346,-0.028790127,-0.017724534,-0.0069527174,-0.013600778,-0.015428723,-0.006414127,0.0025297448,0.012077491,-0.031227386,-0.040454153,0.013905435,-0.025221283,0.020031225,0.021206332,0.00209588,0.007953735,0.0051818965,-0.0594082,0.0117510725,0.031727895,-0.011685789,-0.04367482,0.028768366,0.028681321,0.0074913083,-0.027702065,0.036820024,0.0025719071,-0.0076164356,-0.024024414,-0.00015249872,0.028028483,0.008835065,-0.00024396395,0.03814746,0.002886085,0.018159758,0.046220884,-0.037124682,-0.0035443627,0.0065011717,-0.03409987,-0.004909881,0.031096818,-0.011114555,0.031880222,0.0001485885,0.02011827,0.038169224,0.005513755,-0.019726569,0.0047466713,-0.020749347,0.0142209735,-0.01749604,0.015330797,0.0074913083]},{"id":"interface-PermissionResolvable","type":"interface","source":"main","text":"Interface: PermissionResolvable","meta":{"url":"/docs/typedefs/PermissionResolvable"},"embedding":[-0.032787547,0.0074416175,0.00767116,0.05295766,-0.0030321814,0.000012864037,-0.047033984,0.020703247,0.016349345,-0.04256161,0.013187584,0.00063725794,0.005379438,0.027826468,-0.0027304443,-0.047981773,0.01769698,0.027189672,0.01471293,0.05206911,0.06255402,0.022643251,0.019518511,-0.008226505,-0.023265237,0.015097968,-0.043894436,-0.011884375,0.016778812,-0.007922917,0.052335676,-0.029603569,0.0051980256,-0.0051906207,0.014135371,0.014172394,0.003585675,-0.03308373,-0.022939434,-0.035512436,-0.027352573,-0.021443706,-0.011706664,-0.009870324,-0.049610786,0.024079742,-0.017741408,0.051358268,0.0398071,-0.025960509,-0.029070439,-0.00831536,-0.008093222,0.024316689,-0.008929941,-0.024997912,-0.009581545,0.013372698,-0.039333206,0.031632427,-0.035216253,-0.0272341,0.008700399,-0.024864629,-0.02391684,0.038118854,-0.04584925,0.0049758875,0.021636225,-0.009537118,0.016852858,0.015253465,-0.022761725,-0.043568633,-0.011032846,0.0075749005,0.030566167,0.06415341,0.017622935,-0.028492881,-0.018911336,0.0118917795,-0.04276894,-0.061546993,-0.0030655023,0.028255934,-0.09922157,-0.012291627,-0.009596354,-0.08518246,-0.03909626,0.0286854,-0.04730055,-0.022509968,-0.008226505,-0.040162522,-0.023990886,0.024701728,-0.024242643,0.06231707,0.034505412,-0.022347067,-0.03814847,-0.018940954,0.008789254,0.030921588,0.025679134,-0.011003228,-0.04022176,-0.011988039,-0.029929372,0.007160243,0.007708183,0.0012671113,0.029470287,-0.053994305,0.005879248,-0.034001898,0.0057607745,-0.0011292007,-0.042680085,-0.012476742,-0.0037596829,-0.0078118476,0.01206949,-0.018748434,-0.014579647,-0.0017706237,-0.03195823,-0.019118663,0.05974027,0.00813765,0.0077600153,-0.03800038,-0.03210632,-0.024820201,-0.050677046,-0.0048722234,-0.0063494397,-0.036104802,-0.022139737,-0.020347826,0.023502184,-0.007922917,-0.0040540155,0.020170117,0.007693374,0.006227264,-0.014290867,0.028255934,-0.018170875,0.01606797,-0.005183216,0.00024296326,-0.018363396,-0.06824075,0.03139548,0.017104615,-0.019962788,0.026730588,0.017474843,-0.028744636,-0.009951775,-0.016778812,-0.025190432,0.028433643,0.051743306,0.014313081,-0.06598975,0.03181014,-0.025723562,0.010558952,-0.0478633,-0.016349345,-0.017460035,-0.004531612,0.018511487,0.018985381,-0.006312417,0.014638884,0.04895918,0.03181014,0.010544143,-0.056541484,0.0020492217,0.0052239415,-0.024731345,0.023457756,0.01954813,-0.0047389404,-0.041139927,0.024094552,0.0027174863,0.028611355,0.044486806,0.0068048225,-0.0024842415,-0.023457756,-0.04442757,-0.054882854,-0.036578696,-0.022243403,0.088085055,0.003485713,-0.052898426,-0.0075897095,-0.032313652,-0.02776723,-0.012076894,-0.0042465352,0.047804065,0.026597304,0.024746155,-0.038681604,-0.008441238,-0.009892538,0.060539965,0.00786368,-0.0055608507,-0.0039540534,0.018363396,0.005149896,0.036637936,0.006149516,0.07327587,0.026004937,-0.0028304064,-0.0062827985,0.003348728,0.019814696,-0.032076705,0.040606797,-0.016719574,-0.027900513,0.019429656,-0.005964401,-0.00025129344,-0.026982343,0.0014161287,0.0026045663,-0.05429049,0.0032580215,0.0067789066,0.02135485,0.02633074,-0.033468768,0.014446364,0.0046760016,0.0076119234,0.009129865,0.0029673914,0.052128345,0.019459276,-0.002080691,-0.01489064,-0.023176381,0.0031154833,0.0068492503,-0.00060023495,0.013698501,-0.017563699,-0.0033413235,-0.008818872,-0.027086006,-0.010114676,-0.04454604,0.005327606,0.04149535,-0.045819633,0.021251187,0.0037282135,-0.0031673154,0.031513955,-0.020658819,-0.061132334,-0.051624835,0.056423012,0.05150636,-0.035867855,-0.035542056,-0.04439795,-0.03124739,0.022302639,0.022169357,-0.02099943,0.022584014,0.0028230017,0.030655023,0.0105885705,0.0063272263,-0.006664135,0.0045649325,0.040458705,-0.018600341,-0.02576799,0.00804139,0.06249478,-0.059503324,0.06119157,0.017667362,0.045760397,0.007419404,-0.009322384,-0.011543763,0.015668122,-0.027337763,0.014268654,0.016008733,0.024612872,-0.006523448,-0.015016518,-0.047981773,-0.041850768,-0.01078109,-0.03776343,-0.070314035,0.058229733,-0.050706666,-0.016897285,0.017667362,0.029677616,-0.009500095,0.014127967,-0.024405545,0.03323182,-0.026908297,0.013120942,-0.021103095,0.041376874,0.022598824,0.001282846,-0.01005544,-0.03323182,-0.016867667,0.023531802,0.00047343128,-0.03106968,0.07108411,0.0071898615,0.018748434,0.023250427,-0.053846214,-0.04564192,0.013942852,0.02246554,-0.040843744,-0.005956996,-0.017622935,0.04534574,0.043331686,-0.023117146,-0.029262958,-0.058111258,-0.0048870323,-0.058525916,0.009522309,0.053016897,-0.048840705,-0.0591479,0.015223847,-0.020244163,0.008618948,-0.01406873,0.016956521,-0.015623695,0.036756407,-0.05239491,0.021414088,0.0025730967,-0.060954623,0.03492007,0.00060578843,0.019962788,0.03252098,-0.022228593,-0.0052572624,-0.032402508,-0.006112493,0.022243403,0.0047796657,0.06421264,0.035927095,-0.047981773,-0.048988797,0.026523259,-0.023857605,-0.008641162,-0.005379438,-0.04587887,-0.020303398,0.05556408,-0.014705525,0.031662047,-0.021591797,-0.0014762911,-0.024035314,0.03127701,0.04262085,0.024849819,-0.03414999,0.029366622,0.02173989,0.012573002,0.03634175,-0.032432124,-0.03252098,-0.004942567,0.029633189,0.016201254,-0.029011201,-0.008522688,-0.021488134,0.05458667,0.034801595,0.05058819,-0.060036454,-0.023043098,-0.0591479,0.03613442,0.015060945,-0.0090262005,0.044042528,-0.037970763,-0.03269869,0.028566927,0.021962028,0.029455477,-0.000569691,0.01679362,-0.0771855,0.005642301,0.03912588,0.0036560185,-0.016660338,0.0012411951,0.014490792,0.03086235,-0.026641732,-0.019518511,-0.01443896,-0.005875546,-0.052187584,0.03474236,0.008944751,-0.015490412,-0.02246554,-0.0046908106,0.009529714,0.0027452535,0.0020214543,-0.046797037,-0.00995918,0.012573002,0.04842605,0.01569774,0.016660338,0.013705905,0.03693412,-0.022998672,0.030418076,-0.00032279405,0.033913042,0.00406142,0.053935066,-0.015223847,-0.0020584774,-0.016956521,-0.020244163,-0.05677843,-0.036430605,-0.03183976,-0.013972471,0.009551927,-0.043539017,-0.030477311,-0.008700399,0.006538257,-0.047448643,-0.0066011962,-0.015653314,-0.009263148,0.032609835,-0.007241694,0.0071306247,0.057992786,0.11154281,0.03183976,0.025279285,-0.0784887,0.044723753,0.014372318,-0.014357509,0.0053720335,-0.01957775,0.003648614,-0.0017206427,0.01250636,-0.044842225,-0.009396431,-0.03213594,0.057578128,-0.055860262,-0.011536359,-0.02302829,0.0052091326,0.0057607745,0.03417961,-0.036845263,-0.018792862,-0.04733017,0.018704006,0.015179419,-0.045168027,-0.011514145,-0.061132334,0.016230872,-0.021695463,0.039570153,-0.0053127967,0.03927397,-0.020955004,0.009115056,0.016171634,-0.02576799,-0.034001898,0.029292576,-0.019622175,0.032728307,-0.010492311,-0.019059427,0.029337004,-0.012106513,-0.00094639976,0.017045377,0.033676095,0.03435732,0.011040251,-0.01882248,0.00857452,-0.023146763,0.032757927,-0.015223847,-0.033853807,0.023813177,-0.02649364,-0.006764097,0.008596734,-0.04481261,0.011254984,0.012476742,-0.03669717,-0.015179419,-0.0072157774,0.0040280996,0.048662998,-0.0072157774,0.010425669,-0.016304918,-0.021976838,0.025086766,-0.035867855,0.00061319297,0.018644769,-0.041199166,-0.031128917,0.021473324,0.0031599107,0.0050240173,0.028848302,-0.018170875,0.002428707,0.028552117,-0.024790583,0.06249478,0.027278528,-0.0043131765,-0.01572736,-0.01991836,0.050292008,-0.0027674672,-0.02173989,-0.03139548,-0.0024694323,0.04291703,-0.00065438106,-0.033824187,0.0031821246,-0.008752231,-0.0032820867,0.011677045,0.009648187,-0.008145054,0.032224797,0.017326752,-0.016156826,-0.022213785,-0.0040429085,0.04712284,0.0060310424,-0.011595596,-0.004342795,-0.011913992,-0.016986141,-0.027915321,0.043775965,0.02119195,0.040103287,-0.008085817,-0.0162753,0.01825973,-0.03530511,-0.03705259,0.0005845002,-0.0049610785,-0.036637936,-0.001250451,-0.009625973,0.005042529,0.02576799,-0.0043761153,-0.015993925,0.0058237137,-0.034090754,0.015475603,-0.058229733,0.015875451,-0.023650276,-0.020125689,0.007367572,0.004331688,0.058496296,-0.005742263,0.029011201,-0.022198975,-0.010470097,-0.00089595595,0.005786691,0.027944941,-0.009418644,-0.022791343,0.019266756,-0.008419024,0.013357889,-0.015742168,0.018185684,-0.012802544,0.015816214,0.027515475,0.008604139,0.011625214,-0.026997153,0.0055312323,0.021428896,-0.01606797,0.04457566,0.02520524,-0.011225365,0.019222328,-0.015060945,-0.00092927663,0.028789064,0.043213215,-0.04436833,-0.0032765332,-0.033172585,-0.03050693,0.024005696,0.00203071,-0.018881716,0.007456427,0.0073416554,0.03832618,0.041376874,-0.0075637936,0.014298272,0.006034745,0.026434403,-0.019266756,-0.0059310803,-0.040103287,0.02212493,-0.00075619423,-0.016438201,-0.008581925,0.0056126826,0.0035893773,0.0031728689,-0.008071008,-0.02467211,-0.00857452,0.020421872,0.0061569205,0.006560471,-0.025071958,0.020614391,-0.0016863964,0.04327245,0.00675299,0.033320677,-0.060214166,-0.03820771,-0.040251378,0.039570153,-0.015371938,0.0016688105,-0.01861515,0.03249136,0.0059977216,0.027189672,0.0018955762,-0.019696223,-0.0038281754,-0.009788875,0.000418591,0.042887412,0.023235617,0.017104615,0.03308373,0.03927397,-0.009700019,0.007885894,-0.011588191,0.0012476742,0.048514903,-0.015431175,0.04783368,0.031365864,0.0011699259,-0.0028859407,0.016660338,-0.027471047,-0.0014207566,-0.029677616,0.016541865,-0.022391494,0.0022806153,0.0070306626,0.025975319,-0.051062085,0.006016233,0.010818113,0.010988419,-0.015993925,-0.023161571,-0.021206759,0.016230872,-0.027160054,0.013565217,-0.042443138,0.021665843,0.01902981,0.013750332,0.011277198,0.0037874503,0.010477502,-0.024198215,-0.021458516,0.0066308146,-0.00301367,-0.018052401,-0.00858933,0.071143344,-0.0022102715,-0.016186444,0.004794475,0.02704158,-0.032994874,-0.031750903,0.03965901,0.044279475,0.0010468246,-0.008322764,-0.0071565406,-0.0018104234,0.008182077,-0.03696374,-0.026404785,-0.020125689,0.010899563,-0.008552307,0.0016243829,-0.0067011584,-0.02557547,-0.058170497,-0.01571255,0.007508259,-0.023057908,-0.00093112775,-0.029085249,0.007996962,-0.04315398,0.02156218,-0.015312701,-0.011625214,0.013920638,0.0034283274,-0.020629201,-0.09466034,-0.011336435,-0.036578696,0.0027026772,-0.009433454,-0.016838048,0.019325992,0.046352763,0.028818682,-0.02011088,0.0177266,-0.022080502,0.013291247,0.009263148,0.051624835,-0.003074758,-0.026612114,0.01882248,0.023428138,0.021280805,-0.016675148,-0.040488325,-0.014335295,0.0166011,-0.009152079,-0.0069973418,-0.027604328,-0.011543763,0.041524965,0.0013059854,-0.01516461,0.010203532,0.042324662,0.022080502,0.024612872,-0.030625403,0.01954813,0.01295804,0.01297285,-0.018600341,0.02646402,-0.0149869,-0.0063827606,0.011580786,-0.03764496,-0.005172109,0.02523486,0.010951395,-0.00015700054,-0.0018900228,-0.03782267,-0.030743876,0.036045566,-0.033557624,0.009892538,0.019266756,0.008515283,0.012121322,-0.025856845,-0.022509968,-0.027678374,-0.027619138,-0.0016345643,-0.019681413,0.034001898,-0.0025990128,0.0069751283,-0.010892158,-0.005568255,0.0031950825,-0.020155307,0.02376875,0.017741408,0.026078982,0.042443138,-0.017445225,0.0030840137,0.0019400038,0.032284033,0.033705715,0.009374217,0.0664044,0.017134232,0.02282096,-0.0074897474,0.0033413235,-0.003735618,0.020584773,-0.021784317,0.0022269317,0.036993355,0.014579647,-0.005068445,0.008382001,0.030773496,0.065752804,0.0031839758,-0.010551548,-0.0012347162,0.019044617,0.047922537,0.02446478,-0.004957376,-0.028848302,-0.030269982,0.01900019,-0.006116195,0.0069788303,0.032047085,0.067826085,-0.017519271,-0.01013689,-0.0016234574,0.013046896,0.012395292,0.016038353,0.014564837,-0.03364648,0.008352383,0.0020862445,-0.029055629,-0.01261743,-0.018659579,-0.017785836,0.012017657,0.0037430227,0.028478071,-0.0038911146,-0.011973229,-0.0040429085,-0.0049166507,0.004220619,-0.0152978925,-0.0069640214,0.01846706,-0.03998481,0.04146573,-0.008707804,-0.04312436,0.008033985,0.017134232,0.019237136,0.009003988,-0.006412379,-0.009633378,0.022880198,-0.012869186,0.0369045,-0.014127967,0.014468578,-0.0005673771,-0.04475337,0.008818872,0.013735523,-0.0391555,0.042117335,0.021280805,0.01769698,-0.0062827985,0.025249667,-0.040636417,0.019207519,-0.011928802,0.00018881717,-0.022347067,-0.009655591,-0.026034554,0.0018826182,0.019740649,0.020421872,0.00383558,-0.0011949164,-0.011217961,-0.027841276,9.219588e-7,0.0040910384,0.041584205,0.0062346687,-0.0060680653,-0.0054275678,-0.008352383,0.0055423393,-0.014831403,0.023724321,0.04860376,-0.02190279,0.024420353,-0.012624834,-0.017845074,-0.040488325,0.049048036,0.030447694,0.018778052,-0.0049721855,-0.0033579837,-0.024938675,0.0027563605,0.0013985428,-0.017519271,-0.051772926,0.01880767,0.037674576,-0.018007975,0.02265806,-0.024701728,-0.029707234,0.04661933,-0.030625403,0.022939434,-0.009640782,0.010943991,-0.004261344,-0.016216062,-0.0018992785,0.048899945,0.03145472,-0.045701157,-0.042531993,0.015638504,0.013853997,0.049225744,-0.027648756,0.03474236,0.020673629,0.021073477,-0.011018037,-0.023635466,-0.014727739,0.01506835,0.007730397,0.0007247247,-0.00035819726,-0.008307955,-0.027337763,-0.0076341373,0.006186539,0.0074305106,0.008700399,0.039007407,-0.008470857,0.02083653,0.033468768,0.0051758117,-0.009270553,0.026952725,-0.04036985,0.037408013,0.0132023925,-0.004261344,0.008085817,0.005168407,0.023072718,-0.016497437,0.019429656,-0.0049277577,-0.03266907,-0.00895956,0.0027767231,0.004568635,0.010936586,0.0068492503,0.008485666,-0.01316537,0.018748434,-0.013802164,0.033320677,-0.009485286,-0.01606797,0.0022732106,-0.022628441,0.017385988,-0.005401652,0.020495918,0.024494398,-0.005901462,-0.00041535147,-0.013350484,0.038266946,-0.02978128,-0.02504234,-0.04510879,0.03160281,-0.01608278,0.042857792,0.024509208,-0.01645301,0.034801595,-0.047596734,-0.019414848,-0.021962028,-0.008093222,-0.01608278,0.033379912,-0.011151319,-0.008085817,-0.007982153,-0.015579267,0.00931498,-0.009115056,-0.011973229,0.0073860832,0.05503095,-0.038977787,-0.006612303,0.012461933,0.014313081,-0.030166319,0.035542056,-0.0051610023,-0.00020084964,-0.0047352384,-0.03580862,0.0067826086,-0.014142776,0.0011375309,0.03237289,-0.020244163,-0.009166888,-0.012476742,0.016364153,-0.018659579,0.018022783,0.013128347,-0.018156067,-0.003250617,0.028285552,0.0068492503,-0.008700399,-0.016926903,-0.037141446,-0.0015049839,-0.035542056,0.021043858,-0.007604519,-0.015149801,0.018970571,0.0111142965,-0.011047656,0.008204291,-0.023087526,-0.022332257,-0.009855515,0.051802546,-0.004820391,-0.001026462,-0.019518511,-0.0055460413,-0.0027471047,-0.005309094,-0.011203152,0.0939495,-0.009677805,0.022880198,0.025412569,0.00383558,0.022347067,0.0037596829,0.023413328,0.0019511107,0.039066643,-0.026641732,0.017845074,0.0025212646,-0.0014550028,-0.010299792,0.033942662,0.0050647426,0.008522688,-0.004605658,0.020303398,-0.0042909626,-0.030566167,0.01078109,-0.0111142965,0.027870895,-0.038948167,-0.033676095,-0.002752658,0.03326144,0.009633378,-0.020347826,0.04401291,-0.001674364,-0.029929372,-0.031543575,0.0059866146,0.037200682,-0.040132903,0.018437441,-0.0039392444,0.023457756,-0.016112398,0.00196592,0.011913992,-0.028196696,0.008085817,-0.020984622,-0.019340802,-0.017756218,0.020732865,-0.019888742,0.004220619,0.020303398,-0.010166508,0.0023454053,-0.021591797,0.016527055,0.0038133662,0.01716385,0.001811349,-0.044694133,0.008989178,-0.01569774,0.005046231,0.044871844,0.03782267,0.018704006,0.0063494397,0.008678185,-0.0024879437,-0.03068464,-0.00067242974,0.0031913803,-0.011425289,-0.0013615198,0.00018187535,0.018837288,-0.012787735,-0.008811467,0.0027359978,0.042531993,0.033735335,0.0016641826,0.014668502,-0.031691667,0.017311942,0.030358838,0.0012921018,-0.030033035,-0.011862161,0.0076563507,0.021887982,-0.009189102,0.006534555,0.00030034888,-0.0060976837,0.022169357,0.004483482,-0.013639264,-0.018333776,-0.0020955002,0.012587811,-0.00602734,0.02338371,-0.031365864,-0.00075110357,0.011795519,0.013269033,-0.0013976173,0.0038133662,-0.0044390545,-0.01013689,-0.019785076,-0.0010218341,-0.0055756597,-0.007308335,0.0029081546,-0.020569963,0.01078109,-0.0065530664,-0.013898424,0.016704766,-0.04895918,0.0018391162,-0.0052831783,0.022761725,0.017756218,0.00858933,0.026982343,0.03012189,-0.018230112,0.008056199,0.0027878298,0.0058607366,0.0032728307,0.018689197,0.0166011,-0.017519271,-0.01624568,-0.017252706,0.02301348,-0.020155307,-0.015579267,0.0072120754,-0.029277768,0.015786596,-0.024020506,-0.009766661,-0.032994874,0.028152268,-0.007245396,-0.0052091326,-0.024005696,-0.017993165,0.02099943,-0.013905829,0.008915132,0.009455668,-0.004583444,-0.007996962,-0.01589026,0.0057126447,-0.0077007785,0.014283463,0.0008982699,-0.022347067,-0.025264477,0.024835011,0.02430188,-0.0066011962,-0.034001898,-0.0012532277,-0.01679362,-0.0017826562,0.019666603,-0.008670781,0.0034542435,0.0098036835,-0.007782229,0.018126449,-0.014394532,-0.03290602,0.014972091,0.0072898236,0.010292387,0.030566167,-0.035008922,-0.014150181,-0.016882475,-0.017741408,0.009048414,-0.014409341,-0.021636225,0.00075850816,-0.0012819205,-0.0012911762,-0.013905829,0.027397001,-0.0021899089,-0.019785076,-0.023087526,-0.008937346,0.015564458,-0.042413518,-0.0037689386,-0.02942586,-0.011662236,0.011180938,0.0067418832,-0.008419024,0.000034564415,0.020718057,-0.0018039444,-0.0060310424,-0.011543763,0.019533321,0.005446079,0.003548652,-0.01900019,0.044723753,0.0052350485,-0.011810329,0.0005437749,-0.018985381,-0.035482816,0.008359787,0.014587051,0.013809569,-0.023709511,-0.01232865,0.0010477501,0.013609645,0.0014290868,-0.0051906207,0.035157017,-0.033942662,-0.018985381,-0.011884375,-0.039362825,0.03669717,-0.020392254,0.019474084,-0.0011532656,-0.024050124,-0.0020825423,-0.026967533,0.044871844,-0.0041280617,-0.038651984,0.016734384,-0.0015531137,0.022746915,-0.001202321,-0.033557624,0.0012448975,-0.021621417,-0.019015,-0.045197647,0.009744447,0.015993925,0.009581545,0.013705905,-0.0020732866,0.013180179,0.021206759,-0.024627682,0.013476362,0.027367381,0.03912588,-0.05206911,0.00776742,0.02502753,-0.00323951,0.042413518,-0.0047796657,-0.01846706,0.0088633,0.009455668,0.035157017,-0.04457566,-0.013928043,0.037141446,0.027633948,-0.012817353,-0.012187962,0.02082172,0.01232865,0.0023990886,0.03124739,-0.013313461,-0.007093602,0.0041132523,-0.04315398,-0.014624074,0.032757927,0.01489064,-0.01737118,-0.021680653,-0.0021639927,-0.032609835,-0.012706284,0.0033172583,0.041910008,-0.014002088,0.010840327,0.020155307,-0.013580027,-0.010477502,-0.018170875,0.0062716915,0.005105468,0.03326144,-0.02504234,0.009870324,0.00029687796,0.011565977,-0.004809284,0.013550408,-0.0082413135,-0.0031580597,0.017667362,-0.0054831025,-0.014187204,0.032639455,0.047774445,-0.00040169928,-0.020969812,-0.009426049,0.028789064,0.012654453,0.004035504,0.011425289,0.012513765,-0.014816594,0.023428138,0.0059940196,0.010832922,0.0003753204,-0.018541105,-0.005964401,0.0016391921,-0.00031585223,-0.010262768,-0.020584773,0.0058829505,0.022006456,0.0051573003,0.021680653,0.00839681,-0.0031173343,0.0036911904,0.027604328,0.0029859028,0.0029859028,0.032994874,0.04096222,0.007922917,-0.04478299,-0.017622935,-0.011099488,0.007286121,-0.024050124,0.020407064,-0.011069869,0.028552117,0.03106968,0.003050693,-0.009692615,-0.02591608,0.022613632,-0.00033714046,0.030921588,-0.0049610785,0.008211696,0.0030692045,0.00802658,-0.0019529619,-0.0028785362,0.009500095,0.012321246,0.030447694,0.0000651373,0.022302639,-0.01261743,-0.01971103,0.010033226,0.012928423,-0.028004177,0.03290602]},{"id":"interface-PermissionString","type":"interface","source":"main","text":"Interface: PermissionString","meta":{"url":"/docs/typedefs/PermissionString"},"embedding":[-0.008572757,-0.02056033,-0.012137596,0.031176262,-0.015859602,0.00028776782,-0.027547127,0.023446491,0.017674169,-0.032204993,-0.011473207,-0.021503333,0.003843453,0.03483397,-0.00443283,-0.053779766,0.013509237,0.055437166,0.004250659,0.046207163,0.03229072,0.019217264,-0.034919698,0.013487806,-0.0041720755,0.011194592,-0.026361229,0.019888798,0.027218506,0.0019824503,0.0009224644,-0.03414815,0.010930266,-0.014930886,0.026546972,0.014816582,0.028318675,-0.024646677,-0.025403937,-0.06458144,-0.039434686,0.0059187748,0.008951387,-0.0013653903,-0.0069475058,0.027690006,0.00686535,0.04386394,0.011080289,-0.025546817,-0.046607226,-0.023675099,-0.01300916,0.0408349,0.013287774,-0.024532374,-0.016545422,0.008715637,-0.0072154044,0.010030126,-0.03451964,-0.02443236,-0.015402388,-0.017788472,-0.021631924,0.047293045,-0.04243515,0.053151097,0.04312097,0.048321776,0.029633164,-0.004897188,-0.03511973,-0.00089656754,-0.012851993,0.014159338,-0.018359989,0.043463882,0.033862393,-0.004197079,-0.0012841276,0.0010198009,-0.063095495,-0.06629599,0.0071653966,0.07618324,-0.07595463,-0.0057687513,-0.0017931351,-0.044606917,-0.037977315,-0.023375053,-0.023575082,-0.019417295,0.004293523,-0.008387014,-0.040120505,0.0063581285,-0.024246616,0.020131692,0.038463105,-0.013344926,-0.054551315,-0.03457679,-0.006247397,0.028604435,0.0121733155,0.021917684,-0.0390632,-0.040692024,-0.07366856,0.061552398,-0.00681177,0.00448641,0.047407348,-0.017745608,0.021103272,-0.023960857,0.052322395,0.0037827292,-0.02311787,-0.035091154,0.01014443,-0.015916754,-0.015788162,-0.023932282,-0.045435615,-0.030776199,-0.007815497,-0.029218815,0.06400992,-0.020060252,0.015330948,-0.011173161,-0.016616862,-0.032376446,-0.036177035,0.0079083685,-0.02138903,-0.0014457598,0.010394469,-0.023146445,0.026975611,0.006879638,-0.0010251589,0.011773254,-0.02428948,0.025832577,-0.02008883,0.044035397,-0.026975611,0.030233258,-0.027661432,0.012716257,0.000115084804,-0.047378775,0.012551946,0.0061759576,-0.024889573,0.02890448,0.025346786,-0.03286224,-0.012787697,-0.016202511,-0.007001085,0.011873269,0.072125465,0.0027450684,-0.049379084,0.015959617,-0.036348492,-0.016531134,-0.04366391,-0.023489356,-0.03437676,-0.019788781,0.018088518,0.010744522,-0.06383847,-0.010244445,0.0482932,0.050322086,0.0074225795,-0.06412423,0.012730545,-0.0016681157,-0.016874045,0.032033537,0.0400062,-0.016631149,0.006876066,0.011237456,0.042263694,-0.003405885,0.004247087,-0.02070321,0.008644197,-0.058209024,0.000022980683,-0.029947499,-0.0029897492,0.022389185,0.043578185,-0.031547748,-0.034805395,-0.03146202,-0.00070903846,-0.017359834,-0.0147165675,0.020617481,0.037977315,0.018574309,0.021717653,-0.048778992,-0.015188069,0.0045721373,0.055522893,-0.024003722,-0.010623075,-0.039234653,0.0024878858,0.0116875265,0.04566422,0.009922967,0.05555147,0.031490598,-0.0044078263,0.039806172,0.0046650087,-0.024689542,-0.014645128,0.02704705,-0.02146047,-0.07389717,-0.014859446,0.020574618,-0.011173161,-0.00897282,0.018888643,-0.017531289,-0.026175486,0.028761601,0.034805395,0.04643577,0.054608464,-0.009772943,0.0045649935,0.025446802,-0.014302217,-0.012194748,0.010780242,0.044606917,0.028347252,-0.011916133,-0.014052179,0.01573101,-0.00030473474,0.03029041,0.04843608,0.0063116928,-0.010915978,-0.02297499,-0.007033233,-0.022460625,-0.0017949211,-0.014916598,0.029776044,0.033719514,-0.026546972,0.003429103,-0.0034612508,-0.007472587,0.054551315,0.031833507,-0.027161354,-0.05629444,0.055094253,0.059437785,-0.048550382,0.0047614523,-0.100301266,-0.01897437,0.0056937397,0.023260748,0.00482932,0.024103737,-0.0032219281,0.0035773404,0.023775114,-0.030176107,-0.03697716,0.002416446,0.04146357,0.0013448513,-0.011951853,0.009337162,0.049721994,-0.007304704,0.07206832,0.04686441,0.053922646,0.03969187,0.03289081,-0.016702589,-0.0274614,-0.029218815,-0.010794531,-0.0106016435,-0.010773099,-0.032805085,0.00859419,-0.03774871,-0.042892363,-0.031176262,-0.05023636,-0.021703364,0.012066157,0.021303302,-0.022889262,-0.0006005395,0.019760206,0.0089371,-0.0013403863,-0.03649137,0.069553636,0.0007916406,0.02160335,0.011273176,0.05306537,0.04789314,0.010730235,-0.04194936,-0.02380369,-0.0048150322,0.03180493,0.0010287309,-0.031576324,0.06503865,0.0102658775,0.032547902,0.02526106,-0.037148617,-0.029776044,-0.0020806796,0.03223357,-0.051179364,-0.026947035,0.02167479,0.051236514,0.06412423,-0.019717343,0.0036041301,-0.040720597,-0.022560641,-0.04003478,-0.03820592,0.070410915,-0.045149855,-0.04526416,0.035148308,-0.015145205,0.0014234349,-0.013995026,-0.010994562,-0.027518552,0.014173626,-0.033633787,0.0026879166,-0.018102806,-0.06795339,0.015230932,0.0031558464,0.030919079,0.008979963,-0.005168658,0.0150166135,-0.05023636,-0.0039613284,0.03271936,-0.02960459,0.044521187,0.042206544,-0.034176726,0.014409376,0.029547438,-0.014445096,0.017402697,0.009051403,-0.010701659,0.010330173,0.053293977,0.0022664228,0.009265722,0.0022985707,-0.028661586,0.037034314,0.014573688,0.046035707,0.027761446,-0.031890657,0.038663138,0.02538965,0.028375827,0.0043613906,-0.033205148,-0.043921094,-0.023332188,0.047721684,0.044806946,-0.004857896,0.018288549,-0.02290355,0.056122985,0.023703674,0.065667324,-0.037662983,-0.009644352,-0.047921713,0.035205457,0.007018945,0.0021878392,0.043835368,-0.0018592168,-0.035862703,0.023332188,0.040320538,-0.009487185,-0.03483397,0.012344771,-0.07561172,0.011358904,0.030376138,0.009958686,-0.005072215,-0.004197079,-0.030661896,0.029861772,0.017202666,-0.0017788472,-0.016231088,0.0012966295,-0.053436857,0.01821711,-0.0063188365,0.010623075,-0.012651961,0.036605675,0.0019217265,-0.0033737372,-0.014152193,-0.05949494,-0.015430964,-0.03517688,0.045721374,0.03151917,0.022746384,-0.011330328,0.03849168,-0.029375983,0.011344615,0.028047206,0.018031366,-0.031004807,0.04183506,-0.015102341,-0.021789093,-0.025861152,0.0034898268,-0.031347718,-0.032690782,-0.049350508,0.0113874795,-0.0024432358,-0.0011171375,-0.009565769,-0.017645592,0.0049721994,-0.03820592,-0.010308741,-0.06223822,0.0068189143,0.044264004,-0.0067010387,-0.00010883384,-0.0105659235,0.13270628,0.05417983,0.007286844,-0.060123608,-0.00045632073,-0.017231243,-0.025718272,-0.025003877,-0.018617172,0.00005776565,0.0135949645,0.030490441,-0.032947965,-0.013523525,-0.02974747,0.06749618,-0.053036794,-0.0030076092,0.0043435306,0.025904017,0.025303923,0.02436092,-0.039806172,-0.031204838,-0.05815187,-0.03083335,-0.018545732,-0.023575082,-0.035919853,-0.049979176,0.028475843,-0.00973008,0.05672308,-0.0011019566,-0.00055231777,0.0033308736,0.004822176,0.027204217,-0.028104357,-0.020746073,-0.004857896,-0.033405177,0.017988503,0.0056401603,-0.042063665,0.030176107,-0.036062732,0.010987418,-0.0029468853,0.008851372,0.0015823882,0.012037581,0.010815962,0.006665319,-0.0070082294,-0.0034791108,-0.010887402,-0.0051293666,0.034405332,-0.018545732,-0.003025469,0.015773874,-0.007901225,0.009580056,0.016459694,-0.03780586,-0.03286224,0.0011305324,-0.03360521,0.044349734,-0.0027075626,0.012244755,-0.027575703,-0.015573842,0.024260905,-0.005307966,-0.018602883,0.007408291,-0.033862393,-0.033062268,0.024818134,0.017974215,0.008979963,0.03817735,-0.02021742,0.0032915818,0.045635644,0.00017379926,0.08109829,0.014530824,-0.04172075,0.022117715,0.0027057766,0.018259974,0.0014466528,0.007629754,-0.011187448,0.015702434,0.03863456,0.016088208,-0.052865338,0.0016663298,-0.029833196,-0.013880723,-0.00408992,-0.0028040062,-0.0055151405,0.027447112,0.028875904,-0.010330173,0.013366357,-0.0038005891,-0.0010858827,-0.0029111656,0.01286628,-0.0075797467,-0.014187913,0.0053329696,0.020960392,0.028375827,0.009722936,0.044035397,-0.000808161,0.0012734117,0.029033072,-0.037863012,0.0077512017,-0.026361229,-0.035405487,-0.038377378,0.032347873,-0.029718893,-0.009872959,0.000808161,0.0017020495,-0.02283211,0.012459074,-0.019488735,0.01863146,-0.033262298,0.0048186043,-0.039520413,-0.052150942,0.010423045,0.00609023,0.039206076,-0.015173781,0.013959307,-0.026332654,-0.03151917,0.010973129,0.043235272,0.006647459,0.020331724,-0.03526261,0.017931351,-0.04980772,0.031404868,-0.025718272,0.026646988,-0.014845159,-0.016416831,0.027418537,-0.011658951,0.021346167,-0.009994406,0.016588286,0.020831801,-0.022031987,0.033205148,0.004243515,-0.02436092,0.022517776,-0.021031832,-0.033290874,0.023289325,0.021831956,-0.029947499,-0.013487806,0.008158407,-0.015288085,0.0017002636,-0.011873269,-0.01635968,-0.011666094,0.026832731,0.07446869,0.0063438406,0.01490231,0.0049079037,-0.027304232,-0.0022021271,-0.038005892,-0.00445069,-0.00679391,0.024018008,0.03560552,-0.005086503,-0.029375983,0.017159803,0.012637673,0.017359834,-0.0026754148,-0.002189625,-0.019202977,0.003036185,-0.011158872,0.026532685,-0.039348956,0.01135176,-0.00526153,0.031147685,0.00096086325,0.019345855,-0.04057772,-0.0041792192,-0.026032606,-0.0003388918,-0.020860376,-0.013230623,-0.002612905,0.002789718,-0.008294143,0.029233104,-0.011366048,-0.02877589,-0.013302062,-0.031147685,0.024946725,0.035291184,0.0033165857,0.0006666212,-0.0072797,0.043378152,0.011180305,0.0012430499,-0.023103582,-0.00045899974,0.037577253,-0.0011626802,0.006668891,0.0490076,0.014266497,0.012551946,0.028818753,-0.00040251776,0.0023521504,-0.03712004,0.032519326,-0.022017699,-0.0049221916,0.0008483458,0.016016768,-0.03712004,-0.008329863,0.013644973,0.017988503,0.005304394,0.00063536636,-0.016573997,0.032376446,-0.04594998,0.020031678,-0.025618257,-0.005450845,-0.006061654,0.01252337,-0.0022378468,0.010315885,0.0040149083,-0.020503178,-0.022203442,-0.027104203,0.015530979,0.027404249,-0.0048007444,0.04703586,0.007715482,0.007865505,-0.018717187,0.03609131,-0.015931042,-0.017859912,0.017416986,0.034176726,0.021517621,-0.013837859,-0.013737844,0.00859419,0.016388254,-0.016416831,-0.024732405,-0.056323018,0.011630374,-0.006040222,-0.0037970173,-0.012059012,-0.02207485,-0.041349266,0.0007956591,-0.027761446,-0.018460004,0.008651341,-0.011458919,-0.008587046,-0.022603504,0.031061959,-0.01304488,-0.008015528,0.015088053,-0.01628824,-0.0029129516,-0.070125155,-0.02358937,-0.0022985707,0.0033898111,-0.031233413,-0.026461245,0.04057772,0.0666389,0.010480196,-0.00931573,0.038863167,0.007629754,0.01490231,0.017316971,0.027761446,-0.013773563,0.027289946,-0.004857896,0.013937875,0.0031397725,0.012980584,-0.009201426,-0.018031366,0.03794874,0.020517467,0.00019791015,-0.027847175,0.008601333,0.0059794984,-0.024232328,-0.04200651,-0.0059652105,0.049664844,-0.009822952,0.038520258,-0.018231397,-0.008701349,-0.0104159005,0.018474292,-0.03774871,0.012430498,-0.013995026,-0.015402388,0.009937255,-0.0441497,0.008737069,0.0065474436,0.021446181,0.00055187126,-0.012280475,-0.016131071,-0.007311848,0.04169218,-0.024018008,0.0028772317,-0.0072832718,0.027475689,-0.006043794,-0.007086813,0.021874819,-0.021088984,-0.021188999,0.009265722,-0.0018913646,0.026446957,-0.010251589,0.030661896,-0.04234942,0.020360298,0.0036827137,-0.008058392,0.03151917,0.019088674,0.036205612,0.03654852,0.0018395709,0.0014502248,-0.0027325666,0.004436402,0.026789866,0.047864564,0.07526881,0.028232949,0.031347718,0.011144585,0.019160112,-0.026189774,0.017431274,-0.028461555,0.0061330935,0.058494784,0.018117094,0.002421804,-0.004232799,0.01890293,0.0062045334,0.024518086,0.014659415,-0.008122688,0.003807733,0.030318987,0.01320919,-0.025846863,-0.025089603,-0.024189465,0.04180648,-0.012651961,0.037205767,0.016659725,0.050322086,-0.021231864,-0.0074154353,0.0069403616,-0.004568565,-0.03166205,0.02904736,0.010801675,-0.021989124,0.002412874,0.014602263,-0.04520701,-0.020717498,-0.020045964,-0.027432824,0.015488115,-0.0043220986,0.015859602,-0.0056223003,-0.019560175,0.00019791015,-0.013516381,0.0047150166,0.014202202,-0.017245531,0.00641528,-0.029918924,0.043292426,-0.022317745,-0.06115234,0.0012001861,0.018888643,0.027032763,0.002832582,0.0030969086,-0.00935145,0.0040863478,0.0013689622,0.021731941,0.0024878858,0.0064259963,-0.023403628,-0.02443236,-0.013330638,0.0042042234,-0.051293667,0.01000155,0.011523215,0.037491526,-0.025618257,0.0045578494,-0.03146202,-0.011544647,0.011216025,-0.013873579,-0.02373225,-0.0067510465,-0.020160269,0.0028808038,0.009394313,0.028032918,0.036719978,0.010101566,-0.006436712,-0.03497685,0.0029450995,-0.0006291154,0.0482932,-0.020646058,0.0072154044,0.015173781,0.024532374,-0.018917218,0.004279235,-0.0035344765,0.039520413,-0.0077797775,0.030318987,-0.025889728,-0.029247392,-0.037920166,0.04092063,0.057380322,0.018917218,-0.010980274,0.0065724473,-0.034119576,0.035405487,-0.015245221,-0.007958377,-0.031633474,0.039434686,0.04423543,-0.029233104,0.013180614,-0.02268923,-0.008086968,-0.0015002326,-0.01173039,0.035062578,-0.0013296704,0.030261833,-0.015216645,-0.018960083,-0.010787386,0.017502714,0.0241466,-0.02974747,-0.016102497,0.009915823,-0.005015063,0.031290565,0.0049436237,0.036177035,-0.007218976,-0.020260284,-0.0033844532,-0.012801984,-0.0085441815,0.01490231,0.012066157,-0.0008867446,-0.0021396175,0.010973129,-0.02566112,0.01931728,0.0150166135,0.03760583,0.0089371,0.036577098,-0.007815497,-0.0053544017,0.030690473,0.017702743,0.0062188213,0.0022824968,-0.014659415,0.017774183,0.01966019,-0.005186518,0.01877434,-0.0056080124,-0.0012734117,-0.013180614,0.0011733962,0.014195058,-0.011523215,0.010594499,0.006668891,-0.021360455,0.018188534,0.014495105,0.009380026,0.007929801,0.014788006,0.007515451,0.017359834,-0.018174246,0.003861313,0.017559865,-0.01362354,0.04292094,-0.010201582,0.021731941,0.015788162,0.017331257,-0.018102806,0.00037193266,0.051007908,-0.0021717653,-0.024089448,-0.044321157,0.012601954,0.0030504728,0.053236824,-0.012894856,-0.0047435923,0.01293772,-0.040120505,-0.04975057,-0.022532064,0.0008653127,-0.015430964,0.025603969,-0.043749638,-0.033062268,-0.03414815,0.005061499,0.018917218,0.00049784506,-0.0054829926,0.00879422,0.04940766,-0.02470383,0.015116629,0.008101256,0.017302683,0.010194438,0.031833507,0.0039256085,0.005815187,-0.0077726333,-0.018131383,0.015816737,-0.005507997,0.019031521,0.034605365,-0.0069225016,-0.008101256,-0.008801364,0.031033382,-0.024232328,-0.006858206,0.017759897,0.0009269294,-0.004293523,0.02263208,0.0033880253,0.0009840812,-0.011066001,0.0026897027,0.033890966,-0.007068953,0.0021396175,-0.007994097,-0.014845159,0.013394933,-0.010515916,-0.005029351,0.015330948,-0.023489356,-0.0076440424,-0.013166327,0.019202977,0.003434461,0.001818139,0.02373225,-0.0055722925,-0.005061499,0.017288394,-0.0012957365,0.086356245,-0.0016850827,0.005697312,0.027104203,0.022989279,0.012409067,-0.0013573533,0.0134449415,-0.015488115,0.049521964,0.011787541,0.0053615454,0.012851993,-0.014302217,0.0047543086,0.021117559,-0.013652116,0.0038220212,0.017274106,0.030061804,-0.0051293666,0.0049400516,0.011658951,-0.009715792,0.037291497,-0.023717962,-0.042949516,-0.021874819,0.0507793,0.005204378,-0.01014443,0.04272091,0.018088518,-0.014616552,-0.033433754,-0.008258423,0.03146202,-0.0043292427,0.012387634,0.015588131,-0.019202977,-0.0078369295,0.009687216,0.015488115,-0.017774183,0.004640005,-0.00080548204,-0.0016368609,0.004447118,-0.028318675,-0.025403937,-0.0115375025,0.003968472,-0.023975145,0.0071439645,-0.03994905,0.00410778,-0.0023378625,-0.0034826829,-0.008922812,-0.03780586,0.03286224,0.004411398,-0.0034773247,0.021188999,0.04752165,0.023203596,0.006008074,-0.019674478,0.028275812,-0.030547593,0.009822952,-0.022517776,0.017288394,0.008651341,-0.009844383,0.026104046,-0.014323649,-0.028132932,-0.022989279,0.049436234,-0.0040470557,-0.003236216,0.031890657,-0.007254696,0.013094887,0.0016547207,-0.018531444,0.015745299,-0.016602574,0.029890347,0.009901535,-0.005065071,0.02380369,-0.007529739,-0.015845314,0.038063042,0.04003478,-0.014816582,-0.027004186,-0.005247242,0.0120232925,0.0038720288,0.0019806642,-0.014337937,-0.016959772,0.0010974916,0.0059294906,-0.008286999,0.0061402377,-0.0015939971,-0.02021742,0.010458765,0.002823652,0.010101566,-0.036319915,-0.006490292,-0.0041506435,0.02594688,-0.031033382,0.0061473814,0.015816737,-0.0052293823,0.0050222073,-0.010630219,0.022517776,0.03374809,0.014366513,0.02960459,0.06909642,-0.030719047,-0.030719047,-0.019674478,0.015959617,0.020517467,0.00090013957,0.019160112,-0.040549144,0.0065974514,-0.00814412,0.006693895,-0.024089448,-0.015745299,0.011580367,-0.007322564,0.0408349,0.0010305169,-0.0291188,-0.049350508,0.0033648072,-0.033633787,-0.01252337,-0.025175331,-0.018202823,0.01675974,-0.0073511396,-0.0035130447,0.021131847,-0.020503178,0.005215094,-0.001402896,0.002798648,0.004615001,-0.023860842,-0.011887557,-0.001403789,-0.017016923,-0.027189929,-0.0020931817,-0.012301907,-0.032805085,-0.012952008,-0.014387945,-0.004007764,0.013530669,-0.014609408,0.0076083224,0.019417295,-0.016859757,-0.015030902,-0.019131538,-0.030404713,0.018545732,-0.006243825,0.023275036,0.019288704,-0.025546817,-0.033690937,-0.012980584,-0.002437878,0.013902155,-0.029033072,-0.024346631,-0.017402697,-0.0030165392,0.0071582524,-0.025475377,0.007894081,0.033548057,-0.031290565,-0.022103427,-0.009872959,0.05443701,-0.017345546,0.016616862,-0.009487185,-0.005665164,-0.0009983691,0.006383132,-0.01910296,0.0020824657,0.026218351,0.009058547,-0.013537813,-0.028861618,0.0039220364,-0.0038791727,-0.001614536,-0.037091464,0.012416211,-0.0011644663,-0.014059322,0.0076011783,-0.0077654896,-0.021631924,-0.0070082294,-0.007394003,0.011187448,-0.013402077,-0.021560485,-0.009408602,0.032947965,-0.0015395244,-0.023960857,0.0039291806,-0.0076440424,-0.015716722,0.0162168,-0.026146911,0.017974215,-0.010630219,0.016731165,0.000716629,-0.019545887,-0.016731165,-0.016645437,0.019202977,-0.004807888,-0.018045655,0.033290874,0.029247392,0.008615621,0.013759276,0.0008760287,0.024532374,-0.019060098,-0.012001861,-0.026004031,0.016116785,0.028875904,-0.036862858,-0.016231088,0.029347407,-0.019302992,-0.0017225884,0.0008264674,0.031747777,-0.0020860378,0.019560175,-0.017545577,0.013859292,-0.013537813,-0.01725982,0.040520567,0.0057258876,-0.024060873,0.037662983,0.02180338,0.024075162,-0.03517688,-0.0052829618,0.022174867,0.022517776,-0.005890199,0.015088053,0.04600713,-0.009508617,0.032262143,0.024175176,-0.014759431,-0.031976387,-0.007154681,-0.035376914,-0.02048889,0.032262143,0.023003565,0.020431738,0.000025771295,-0.00928001,-0.03263363,-0.00051391893,-0.010387325,0.026675563,-0.00094300334,-0.010508772,0.033890966,-0.010930266,0.00845131,-0.017888488,-0.0022717807,0.022132002,0.0139664505,-0.039491836,0.041635025,0.0094443215,-0.0021217575,0.0058794827,0.019617327,0.020931816,-0.018760052,0.003209426,0.008408447,0.0045399894,0.013937875,0.036319915,-0.0015234505,-0.01410933,0.00018272921,0.0049436237,0.016245376,-0.005804471,0.035862703,0.006933218,-0.020403164,0.034205303,0.0069832252,0.00032906886,-0.0047793123,-0.0041149235,-0.016845468,0.0027147066,0.010223013,-0.015530979,-0.00410778,0.019588752,0.025203908,-0.008101256,0.010087278,0.012580521,-0.03351948,-0.0041863634,0.01780276,-0.01376642,0.0024610958,0.024303768,0.029175952,0.02463239,-0.03097623,0.014466529,-0.03029041,0.025775425,-0.016373968,0.013080599,-0.0020824657,0.035434064,0.0024575237,0.0069903694,0.0112017365,-0.0187029,0.031176262,-0.028232949,0.03589128,0.0033112275,-0.012537658,0.00020527736,0.019374432,0.00443283,-0.009487185,0.0059759263,0.017302683,0.042177968,-0.0018395709,0.0035684104,-0.00096264924,0.005236526,-0.02048889,-0.033348028,-0.002232489,0.015188069]},{"id":"interface-RateLimitErrorBody","type":"interface","source":"main","text":"Interface: RateLimitErrorBody\nProperties: code: \"RATE_LIMITED\", global: boolean, retry_after: number","meta":{"url":"/docs/typedefs/RateLimitErrorBody"},"embedding":[0.015156114,0.022059748,-0.007829432,0.01948468,-0.0258733,0.03418709,-0.018282982,-0.0025275517,0.022415353,-0.01375822,0.02196165,0.011029874,-0.04220659,-0.0033813093,0.008319922,-0.028595515,-0.011912754,0.022488926,0.010496467,0.067295104,0.0066522583,-0.024818748,0.043163043,0.01337809,0.01348845,-0.008975951,0.026118545,-0.004877301,0.010306402,-0.025897825,0.06523505,-0.03109701,-0.0034150304,0.0077926456,-0.010631352,-0.00075029506,0.014898607,0.027859781,-0.0025474778,-0.047405772,-0.017265217,-0.043751627,-0.00079474563,-0.006897503,-0.103689395,0.01117702,0.0023420856,-0.0064376695,-0.009196671,0.018748946,-0.022820005,0.014690149,-0.004938612,0.024303736,0.031023435,0.019913858,-0.030851765,0.07784062,0.025358288,0.0043255007,0.030998912,0.0099753225,-0.051501356,-0.0023834705,-0.063175,0.02862004,-0.019398844,0.0010775432,0.012973437,0.042574454,0.007228583,0.02906148,0.05002989,0.0018592603,0.0049324813,0.019227173,0.021728668,0.039484374,0.048313178,-0.010410631,-0.036026426,0.0082340855,-0.07018899,-0.010496467,-0.01822167,-0.008632609,-0.07479959,-0.023384068,-0.014383594,-0.020061005,-0.008761362,-0.0073512057,-0.04205944,0.029331248,-0.00043645868,-0.06273356,-0.004773072,-0.0046872366,0.0116184605,0.02109103,0.06920801,-0.01045968,-0.007878481,0.007860088,0.0011595469,-0.014126087,-0.032789197,-0.0026593707,-0.028570991,-0.04304042,-0.0134148775,0.019043239,-0.053806655,0.009858831,0.011109578,-0.04002391,0.0012630095,0.023261447,0.03548689,0.018282982,-0.015769225,-0.04480618,0.01755951,-0.019778972,0.010735581,-0.016639844,0.012292883,0.016578533,-0.013623335,0.044659033,0.063125946,0.026265692,-0.009497096,-0.008277004,-0.0014017259,0.0076332367,-0.015340047,0.008135988,-0.009527751,0.0019190386,-0.005855214,0.042353734,0.06126209,0.044021398,0.009638111,0.004396009,0.004276452,0.008160513,0.017302003,0.033279687,-0.023187872,0.018123573,-0.05047133,0.0084915925,-0.02202296,-0.027663587,0.021777717,0.044683557,-0.062978804,-0.02906148,-0.035069972,-0.02334728,0.014763722,-0.027639061,-0.022930365,0.01948468,-0.0031452614,-0.046081454,-0.069698505,-0.030214129,0.052531384,0.0023942,-0.037399795,-0.03573213,0.029306725,-0.028497417,0.02399718,-0.031734645,0.01926396,0.024266949,0.00509189,0.04188777,-0.000023590419,0.000112850816,-0.035683084,-0.027859781,-0.025628056,0.01486182,0.0117717385,-0.05228614,-0.017314266,0.000541454,-0.0028172468,-0.003914716,-0.016308762,-0.02773716,0.0005058169,-0.018589538,-0.004966202,0.02229273,0.0053493967,-0.019018715,0.061997823,-0.0021842094,-0.010465811,-0.0009388268,-0.015940895,-0.03622262,-0.02746739,0.01822167,0.07411291,0.033819225,0.0072347145,-0.022378566,-0.00047899326,-0.006830061,0.039116506,0.011452921,0.024745176,0.008326053,-0.05096182,-0.00792753,-0.005901197,-0.022513451,0.030263178,0.010545515,-0.0019205714,0.04887724,-0.0095768,0.009490964,-0.003804356,-0.0004058031,0.012317408,-0.030263178,0.036345243,-0.009681029,0.0054444293,-0.0016262779,0.0007533606,-0.021949388,-0.012556521,0.01205377,0.0075596636,0.030802716,0.023580264,-0.012912126,0.014077038,0.026290216,-0.022709645,0.013696908,0.023200136,-0.013292255,0.014616575,-0.044217594,0.015168375,-0.017584035,0.03153845,0.017485937,-0.0007027789,-0.03325516,0.013353566,-0.020674115,-0.01773118,0.0088471975,0.0011426863,-0.043849725,0.064695515,-0.009386735,0.021728668,-0.016848302,-0.0020922427,-0.019398844,0.07710489,-0.032298706,0.00013622569,0.006946552,0.06440122,0.009766865,-0.03835625,0.011091185,-0.016737942,-0.003467145,0.0015580693,0.0037675695,0.004613663,-0.0056069037,0.013292255,0.0348002,0.053463314,0.019202648,0.000024069412,-0.003902454,0.031072484,-0.049465828,0.0021826765,0.015156114,-0.003942306,-0.021189129,0.0337947,-0.025824253,0.056062907,-0.026510937,0.0112567255,-0.08647323,-0.022427615,0.044021398,0.038650542,0.026461888,0.03860149,0.012366457,-0.0017611624,0.010913382,-0.052089944,-0.0022317255,-0.00881041,-0.021507947,0.08353029,-0.038650542,0.0033445226,0.0020156037,0.022770956,-0.02521114,0.02729572,0.009276375,-0.0099753225,-0.040097486,0.007332812,0.0013971275,0.022268206,0.025946874,-0.029404823,-0.04242731,0.014077038,0.00990788,0.0027436735,0.0013028617,-0.032764673,0.020551493,0.009834306,0.06342024,0.059103936,-0.017351052,-0.021458898,0.042083964,0.036786683,-0.008074677,0.00058513816,-0.024487669,0.045026902,-0.0033475882,-0.023911344,0.0009986052,-0.034162566,-0.0035683082,-0.020796739,0.03197989,0.04228016,-0.019055502,-0.021655094,0.047405772,-0.062341165,0.037988383,-0.00033644488,-0.008307659,-0.029576493,0.0018577275,-0.019129075,-0.058221057,0.010539385,-0.0154136205,0.01579375,0.0134148775,-0.027222145,-0.031906318,0.016468171,0.017878328,-0.05763247,0.033549454,0.00021918732,0.011373216,0.052188043,0.03502092,-0.00016975522,0.011974066,0.049441304,0.04232921,-0.014493953,0.008307659,-0.052874725,-0.03688478,0.05130516,0.013341304,-0.03688478,-0.042598978,0.043236613,0.0012599439,0.03153845,0.014371331,0.03296087,-0.010520991,0.033426832,-0.015732437,-0.016063519,0.031513926,0.008074677,-0.0023052988,0.018736685,0.015560767,0.048484847,-0.04958845,0.022280468,-0.045443814,0.0064744563,0.0069281585,0.058319155,-0.0057387226,0.047405772,-0.022108797,-0.02185129,0.021324014,-0.006676783,0.007958186,-0.027957879,0.0104412865,0.0002862464,0.0048864977,0.003473276,-0.021826765,-0.034653056,-0.084756516,0.022611547,0.019337533,0.02790883,0.010435156,0.034922823,0.05498383,0.014395855,-0.03791481,0.007958186,-0.021765454,0.008240217,0.012286752,0.024242423,0.020281725,0.011808526,0.016002208,0.0032433593,-0.014898607,0.041299183,0.0012752716,-0.05719103,0.006774881,-0.03494735,0.03747337,-0.05145231,-0.016676629,0.00996306,0.010545515,-0.016639844,-0.035707608,-0.003957634,0.002644043,-0.0020186692,-0.025333762,0.039288178,-0.00070929324,0.023089774,-0.002262381,-0.0028586318,0.00080930704,-0.039288178,0.021360802,0.0462286,-0.009386735,0.0109011205,0.00968716,0.0073389434,-0.008252479,0.045174047,-0.008240217,-0.034922823,-0.014506215,0.011642985,-0.025063993,0.030287702,0.08127405,0.032936342,-0.019043239,-0.03264205,0.027786208,0.0010714121,0.002762067,0.028105026,-0.012764979,-0.028595515,0.004110912,-0.034653056,-0.02839932,0.01656627,-0.008074677,-0.0015833601,-0.069257066,-0.0002919943,0.0076332367,0.0007207891,0.019729925,0.008509986,-0.085197955,-0.064695515,-0.025529958,-0.03237228,0.0052145123,-0.0024233228,-0.0069894698,-0.07926304,-0.010067289,-0.02521114,0.034285188,-0.01271593,0.025309239,0.019864809,-0.007909137,-0.029674591,0.017878328,0.015891846,0.0061556385,-0.0030686224,0.013991202,0.01364786,-0.0063640964,0.017853804,-0.04635122,-0.00517466,0.0104045,-0.015487194,-0.0064254072,0.000868319,-0.006885241,-0.015266473,-0.07367147,0.012985699,-0.011183152,-0.0038717985,0.035364266,-0.026682608,0.014334545,-0.0005418372,0.012912126,0.02461029,0.024095278,-0.012041507,-0.043604482,0.024843274,-0.025529958,0.02240309,0.0093009,0.026707131,-0.017216168,-0.04029368,0.012617832,0.009123097,-0.022452138,0.051108964,-0.016370075,-0.01716712,0.0019328337,0.0058429516,-0.010373845,0.0034886037,0.010367714,0.0070814365,0.04166705,-0.016088042,0.053708557,0.01678699,0.009613587,0.0017427691,-0.035658557,0.040048435,-0.0017596297,0.0011020678,-0.03573213,0.0020569887,0.07337717,-0.04586073,0.015536242,-0.0067626187,0.03494735,-0.006498981,0.025051732,0.013292255,0.03215156,0.024475407,0.0027022883,-0.026682608,0.0010637483,0.010662007,0.020809,-0.0011587805,0.020195888,0.026094021,-0.036909305,-0.020232676,0.00492635,0.008277004,0.04971107,0.0009541546,0.02653546,-0.00095875293,-0.028767187,-0.0063640964,0.021397587,-0.032053463,-0.06837418,0.0039944206,-0.032593,-0.028595515,-0.020011956,-0.008632609,0.0005127144,-0.011238332,0.0077068103,-0.006164835,-0.0025628055,-0.047234103,0.004917153,-0.04586073,-0.052433286,-0.008454806,-0.02085805,0.04078417,-0.0046535153,-0.017571772,0.0015565365,-0.009116966,0.029674591,-0.017351052,0.02289358,-0.03467758,-0.02063733,0.006339572,-0.008939164,0.04321209,-0.02680523,0.03411352,-0.031636547,-0.013120583,-0.026780706,-0.017743444,0.040489875,-0.008191168,-0.016995447,-0.017964164,0.018013213,0.014273233,-0.0025965266,-0.043874253,0.013034748,-0.004708695,-0.005695805,-0.0010361583,0.03274015,-0.012446161,0.021875814,-0.037301697,0.021642832,0.003963765,-0.0037399794,-0.030508423,0.016443647,0.047700066,0.031146059,-0.002567404,-0.0025275517,-0.032519426,0.0056774113,-0.0100795515,-0.04205944,-0.03617357,-0.025162091,-0.019950645,-0.008105333,-0.05091277,-0.04564001,0.012985699,-0.02636379,0.017633084,-0.00017722751,0.004472648,0.0071795345,-0.007817171,0.01585506,0.020833526,-0.007369599,0.0006843856,-0.014923131,-0.025407337,0.010668138,0.038895786,-0.017093545,0.022304993,-0.0047975965,0.0097729955,0.011416134,-0.026388314,0.02923315,0.008926902,0.046253122,0.022587024,0.02074769,0.0044113365,0.027197622,-0.033328734,0.011324167,-0.03671311,0.036639538,0.0064008827,0.022145584,0.018859306,0.0075474014,0.014763722,0.022599285,-0.034481384,0.010110207,-0.002435585,0.055621464,0.034285188,0.05307092,-0.03136678,-0.033058967,0.050667524,0.01568339,-0.01987707,0.015217424,-0.011029874,0.009858831,-0.0101286005,0.022084272,-0.01727748,0.0069097653,-0.0006633099,0.018908355,0.004046535,-0.011980196,0.013831793,0.008595821,-0.020784477,-0.0111034475,0.002900017,-0.014444904,-0.013537499,0.008056284,-0.02950292,0.036149047,0.02641284,-0.035634033,0.0073941234,0.0075657945,-0.06803084,-0.030753667,-0.040538926,0.020330774,-0.02565258,-0.0024478473,0.0015741634,-0.009251851,-0.027933355,-0.012145736,0.027320243,0.034726627,-0.004613663,0.008712313,-0.004586073,0.02345764,0.031391304,-0.022746433,-0.03526617,0.007811039,-0.029748164,0.007087568,0.037080977,0.008424151,0.0015818274,-0.0015710979,-0.0029766557,-0.02213332,0.0064376695,0.000023039576,-0.009049524,0.005931853,-0.00035771218,0.012863077,0.037448842,-0.05547432,0.02548091,0.013709171,0.0004636655,-0.06695177,0.009895618,0.038724117,0.025677105,-0.008792018,-0.026339265,-0.014003464,0.014150611,-0.0077742524,-0.0063640964,0.028154075,0.019913858,-0.0075841877,-0.038429823,0.031072484,-0.010429025,0.017792493,-0.0058889347,0.042746127,0.011422265,0.012292883,0.028742662,-0.015695652,0.055621464,0.00660321,0.027540963,-0.02163057,0.022341779,0.026609033,0.0035468494,0.053218067,-0.025309239,-0.003292408,0.014726936,0.039214604,-0.022268206,-0.018307505,-0.03494735,-0.05316902,-0.02565258,-0.017866066,-0.022574762,0.059643477,0.047479346,-0.042133015,0.009527751,0.00043875782,0.013525237,-0.022378566,-0.01271593,-0.043064944,-0.0061525726,0.02174093,-0.027835257,-0.01227449,0.047086954,0.0044205333,0.03303444,-0.04662099,-0.06420503,0.0123358015,0.032568477,-0.026069496,-0.033108015,0.036909305,-0.0035376528,-0.00040656948,-0.019092288,-0.013512975,0.020661853,-0.021213654,0.031415828,0.0014553731,0.029110529,-0.00075834215,0.0197054,0.024132064,0.0034886037,0.044953328,-0.014726936,0.029453872,-0.016934136,0.0269769,-0.025726154,0.01678699,-0.002719149,-0.011428396,0.026118545,0.0065909475,0.00820343,-0.0034518172,0.047185052,-0.008792018,0.01716712,0.023408594,0.025554482,0.02109103,-0.0073512057,-0.0057601817,0.019962907,-0.012501341,-0.0069649452,0.01607578,0.023249185,-0.015045754,-0.0008468601,-0.0029015497,0.06091875,0.023384068,0.031195108,-0.042255636,0.049612973,0.0071366164,0.025971398,0.026609033,0.007645499,0.053267118,-0.06091875,0.01959504,0.008123726,0.0009740807,-0.00088517956,-0.02333502,0.0025474778,-0.00863874,0.025946874,0.021986173,-0.023077512,0.015205163,0.0026057234,-0.0084915925,0.0019634892,0.0057387226,0.025162091,0.032347757,-0.028693613,-0.0039177816,0.001992612,-0.013684646,-0.0034518172,0.019864809,0.014677887,0.0056406246,-0.04667004,0.025505433,-0.0032219004,-0.020710902,-0.0011580142,0.005459757,0.003979093,0.038871262,-0.042893272,-0.020600542,-0.017596297,-0.023261447,0.04139728,-0.011262856,0.026559986,-0.03180822,0.015499456,0.020244937,0.081323095,0.050103463,-0.030459374,-0.012102819,-0.059790622,-0.05547432,0.016112568,0.043751627,0.00583682,-0.0015894913,-0.0131573705,0.026241167,-0.030017933,-0.015340047,0.043678056,0.010478074,-0.001965022,0.004227403,-0.016382337,0.045370243,-0.035143543,-0.03188179,-0.0035928327,0.032323234,0.008044021,-0.019901596,0.008509986,-0.01948468,0.019644089,-0.012243834,0.04095584,0.06126209,0.008608084,0.004144633,-0.040980365,-0.0044573196,0.033451356,0.008301528,-0.038160052,-0.0012231572,-0.014126087,-0.029208627,-0.001971153,-0.005729526,-0.00996306,-0.0053187413,-0.027222145,0.00006547838,0.011373216,-0.038944837,0.025456386,-0.03869959,-0.018699897,0.0090004755,0.019999694,0.00026038074,-0.015891846,-0.010196042,-0.010778498,0.021066507,0.008074677,0.049392253,0.06690271,0.0146411,0.014506215,0.005913459,-0.0042948453,0.00886559,0.014408117,0.032127038,-0.008724575,-0.019411106,-0.03661501,0.010649744,0.025456386,0.0057325913,0.014812771,0.042672552,-0.008185037,0.002075382,-0.013476188,0.0065970784,-0.032789197,0.024867797,-0.019582778,-0.0021826765,0.0054628225,-0.019362058,-0.003411965,0.009644242,0.009920143,0.021311752,0.047086954,0.013402615,-0.037890285,0.003880995,-0.0042090095,0.0023267576,0.035707608,0.02047792,0.03632072,-0.013010223,0.0016875891,-0.00085758953,-0.0025995923,0.0006920495,0.033279687,0.026020447,-0.016885087,0.025628056,-0.024352785,0.01733879,0.013562024,-0.020612804,0.01018378,0.016222928,-0.008393495,-0.009717816,-0.025971398,-0.031783693,-0.015989944,-0.0017013841,-0.03516807,0.055081926,-0.040857743,0.02152021,-0.041765146,0.020759951,0.044879753,0.012752716,0.019950645,-0.028423844,0.0041691572,0.043972347,-0.004205944,0.002132095,0.011593936,-0.011692034,0.014653362,-0.0337947,-0.0015910241,-0.03455496,-0.013623335,-0.029208627,0.020686379,-0.015597554,0.0030870158,0.0064008827,0.00082770037,-0.0348983,-0.009607456,0.02680523,-0.019729925,-0.0018010146,0.036590487,0.022611547,0.0046657776,-0.042672552,0.020330774,-0.0019696204,0.0025704694,-0.0035897673,-0.025579007,-0.013831793,0.04365353,-0.00087215094,0.009564538,-0.0062966538,0.028105026,-0.012568783,-0.021324014,-0.0013082264,0.03193084,-0.013991202,0.019435631,-0.030140556,0.0033997027,-0.0153645715,-0.039116506,0.004396009,0.021385325,0.006725832,-0.006456063,0.006744225,0.0109501695,-0.0019052436,0.03644334,-0.037448842,-0.028055977,0.051697552,-0.015474931,-0.017915115,0.027540963,-0.020735428,0.011974066,0.006983339,0.015070278,0.01827072,-0.016701154,0.011170889,-0.008853328,0.008123726,-0.009650373,0.020784477,0.03386827,0.007087568,0.016970923,0.01271593,-0.0014162873,0.021164605,-0.014788247,0.04348186,-0.0071795345,-0.0073082875,-0.014175136,0.015340047,0.017804755,-0.0054720193,0.027614538,-0.018466914,0.033328734,0.0025689367,0.028423844,-0.02768811,0.022010699,0.02218237,0.003188179,0.023531215,0.015241949,-0.03153845,0.0048190556,-0.018405603,0.01937432,-0.017964164,-0.015928634,-0.01497218,-0.009754602,-0.0028463695,0.025284713,0.0045002378,-0.014138348,-0.014493953,-0.00057402556,-0.00748609,0.026731657,-0.0003343373,0.033426832,-0.009589062,0.014604313,0.00004207956,0.022268206,-0.029355774,0.02289358,0.023138823,0.06160543,0.009221195,-0.00465045,0.0055026747,-0.0023374872,-0.010637483,-0.028644564,-0.014322282,0.0094664395,-0.006689045,0.002608789,-0.009116966,-0.017718919,-0.03153845,0.015474931,-0.009172146,0.02653546,0.020232676,0.009981453,-0.027173096,0.03440781,-0.021765454,-0.000057191795,-0.022317255,-0.009435784,-0.009920143,-0.004150764,0.040808693,0.0024785027,0.01232967,-0.0056559527,0.015119327,0.00974234,-0.03764504,-0.018000951,-0.016480435,-0.0102328295,-0.0053739212,0.007847826,0.0029567296,-0.0012714397,0.005714198,-0.039042935,-0.027614538,-0.020011956,-0.005324872,-0.0051654633,0.009221195,-0.010386107,0.01282629,-0.0033721125,0.012072164,-0.037792187,0.00509189,0.009748471,0.004337763,-0.011483576,0.00015797198,-0.016026732,-0.02543186,0.01744915,0.020330774,0.03109701,-0.0040373383,0.008264742,0.008019497,0.016333288,0.013218681,-0.032519426,-0.0002425622,0.013954415,0.017927377,-0.03860149,-0.0021872749,-0.008749099,0.048141506,-0.020330774,0.006063672,-0.002102972,-0.027491914,-0.0019742188,-0.0017611624,-0.010275747,0.015622078,-0.039091982,-0.049956314,0.030729143,-0.008773624,-0.0049232845,0.022574762,-0.024708388,-0.023433117,0.0034886037,-0.0122315725,0.011452921,-0.0022026026,-0.0056069037,0.004537024,0.02306525,0.025333762,-0.020220414,-0.022537975,0.028301222,0.011937278,0.03791481,-0.021164605,-0.004785334,-0.025799727,0.008436413,0.050054412,-0.023825508,-0.0043622875,0.01662758,0.000384919,0.039876763,-0.046155024,-0.0042120754,-0.0050734966,0.015033491,0.0053769867,-0.012973437,0.0062568015,0.0016661301,0.0040925187,-0.021017458,-0.002386536,0.0055578547,0.018466914,-0.0086448705,-0.015781486,-0.02339633,0.021949388,0.022550236,0.0023022334,0.019644089,-0.0018240063,0.017191643,0.0035468494,-0.00015864256,0.0075657945,0.012121212,-0.03914103,0.015315522,0.021005196,-0.038993884,-0.02619212,0.0009464907,0.0011495838,-0.00092273264,0.020612804,-0.03303444,0.00016525268,-0.009895618,-0.0045125,-0.01194341,0.003997486,0.041568954,-0.027173096,-0.03153845,0.010827547,0.0051102834,0.017804755,-0.013880841,-0.014604313,0.016443647,0.004671909,0.035928328,-0.02866909,-0.0039361753,0.05895679,-0.031832743,-0.027565489,0.042133015,-0.011422265,-0.012642357,0.018184884,0.009472571,-0.017694395,-0.05817201,0.02790883,0.00069166627,0.025726154,-0.0040710596,-0.03688478,0.027271194,-0.007578057,0.0022332582,0.018172622,-0.009938535,-0.00586441,-0.006897503,0.0011595469,-0.033353258,-0.014898607,0.0057877717,0.025848776,-0.009208933,0.012072164,-0.00654803,0.0037675695,0.014910869,0.020392084,-0.017387839,0.03835625,-0.01244003,-0.030312227,0.010815285,-0.009901749,-0.0031605891,-0.00682393,-0.028472893,0.028203124,-0.04691528,0.0055670515,-0.035854753,-0.016970923,0.029601017,0.000010160645,-0.007700679,-0.0112567255,-0.0010070355,-0.0075167455,-0.013427139,0.002415659,0.002526019,-0.014211922,-0.005140939,-0.018148096,-0.0028463695,0.059202034,-0.00048665717,-0.040587973,0.0042948453,0.012961174,0.002662436,-0.011262856,0.02768811,0.041691575,-0.002303766,-0.010245091,-0.029650066,-0.03224966,-0.0037123894,-0.015806012,0.018932879,0.016026732,-0.00086525345,-0.022010699,0.014923131,-0.01849144,0.015156114,-0.007896875,0.0060238196,0.019104552,-0.00036480126,-0.0009311629,-0.011777869,-0.013169632,-0.009644242,0.05444429,0.015646603,-0.0029705246,0.0112076765,0.032127038,0.015021229,-0.0020585214,-0.009239589,0.017105808,-0.019411106,0.010410631,0.01998743,-0.0064376695,-0.0039055196,0.00231143,0.010159256,-0.012360326,-0.024193374,-0.009533882,-0.016357811,0.017878328,0.020110054,-0.003396637,-0.012501341,0.0269769,-0.022415353,0.0026409773,0.04691528,0.005723395,0.006517374,0.0151070645,0.018577276,0.020281725,0.028889809,0.053119972,0.0027130179,0.014812771,-0.0075474014,-0.00039315768,-0.0048834323,0.00454009,0.029355774,0.025002683,0.00095032266,-0.017485937,0.030361276,0.0049631367,0.0029153447,-0.060526356,0.019300746,-0.015658865,0.0041354364,-0.0057448535,-0.028448367,-0.003258687,-0.015658865,0.027933355,-0.013083797,0.011262856,-0.023138823,0.0028111157,0.0107478425,-0.021127818,0.010024372,0.029650066]},{"id":"interface-RateLimitState","type":"interface","source":"main","text":"Interface: RateLimitState\nDescription: Tracks rate limit state per bucket (route hash).\nDelays requests when limit is exceeded.\nProperties: limit: number, remaining: number, resetAt: number","meta":{"url":"/docs/typedefs/RateLimitState"},"embedding":[0.0015977342,-0.011241345,0.019607896,0.0019417747,-0.044630203,-0.013084822,-0.02763927,0.045713086,0.017016714,0.014245053,0.022843651,-0.0053177234,-0.021000173,0.008740404,0.031248877,-0.015095889,-0.016320577,0.06693241,-0.009423651,0.051307973,0.005839827,-0.017377675,0.035322573,0.006703554,0.0011698991,0.013117051,0.023333525,-0.018164054,0.0021206436,-0.04174252,0.031661402,-0.021657636,0.0108223725,0.01830586,0.015856484,-0.004724717,0.019633679,0.074100055,-0.014966974,0.014683362,-0.006967829,-0.0016339914,0.010899722,0.026556388,-0.07404849,0.026865784,-0.006922709,0.00826342,-0.05223616,0.037385207,0.0082183,0.025808685,-0.029830817,-0.011202671,0.044913813,0.020110663,0.01875706,0.03130044,0.036224976,-0.021270894,0.015972508,-0.0077799903,-0.05056027,0.046331875,-0.020755235,0.050947014,-0.03877748,0.004969654,-0.020046206,0.034445956,-0.0049406486,0.056928646,0.034239694,-0.021799443,-0.0069356007,-0.0151990205,-0.027974447,0.031068396,0.03774617,0.03534836,-0.023565572,-0.03627654,-0.04212926,-0.02355268,0.036224976,-0.027716618,-0.042876966,-0.047930412,-0.0037224065,-0.029263593,0.008256974,-0.014477099,-0.03207393,0.017493699,-0.0017774088,-0.072759345,0.04228396,0.022237752,-0.043392625,0.005485312,0.04383093,-0.049348474,-0.028361192,-0.020922825,0.021374024,0.015263477,-0.027484573,0.053267475,-0.00095880165,-0.008521249,-0.0032889314,-0.018898867,-0.03867435,-0.006948492,0.007921796,-0.026891567,-0.013104159,0.026208319,0.02745879,-0.0057238042,-0.04024711,-0.004740831,-0.001031316,-0.01741635,-0.0106612295,-0.022637388,0.038622785,-0.018460557,-0.013922767,0.01022292,0.04184565,-0.008966004,0.00022036323,-0.028954199,-0.0010071446,-0.033363074,0.008282757,0.0091271475,0.0017629059,-0.022676062,0.01830586,0.00018974605,0.063322805,0.056567684,0.0084825745,0.03766882,-0.044810683,0.020458732,0.038545437,-0.008205408,0.00883709,0.010229366,-0.05605203,-0.016423708,-0.019878617,-0.04426924,-0.00337756,0.049761,-0.020742344,-0.013316869,-0.013445783,-0.025666878,0.033027895,-0.036560155,0.019801268,0.014373967,0.02239245,0.004689265,-0.047595236,-0.032409105,0.053370606,0.017467916,-0.009397867,-0.027149396,0.042954315,-0.020548973,-0.058888145,0.026092296,0.012556273,0.004879414,0.05667082,-0.014618905,-0.029392507,-0.0016629972,-0.00254445,0.009597685,-0.012105072,0.031248877,0.01280121,-0.034961615,-0.013001028,0.046074044,-0.0131815085,-0.012556273,-0.012910788,-0.038854834,0.021167763,0.022147512,0.010461412,-0.0028860734,-0.029805034,-0.009004679,0.051514238,0.0046248077,0.0042864075,0.005984856,0.03313103,0.0027007589,-0.02311437,0.018073814,0.018344535,0.082299024,0.026002057,0.00431219,-0.008140951,-0.00415427,-0.046306092,0.010261594,-0.0012391907,-0.0028828506,-0.04395985,-0.018537907,-0.00037143493,0.015276369,-0.00010373589,0.03145514,-0.015547089,0.00862438,-0.01740346,-0.013896984,-0.023836292,0.013652046,0.002918302,-0.04782728,-0.012259769,0.037359424,-0.043573104,-0.012627176,0.020652104,-0.06425099,-0.024596889,-0.012208204,-0.02319172,0.017081171,0.003980235,-0.017790202,-0.044372372,0.06425099,-0.026711086,0.010809481,0.023243286,-0.013155726,0.017687071,-0.03596715,0.014103247,-0.0059687416,0.046074044,0.06399316,0.0057624783,-0.01124779,0.016501056,-0.057805266,-0.016810453,0.0005595695,0.007064515,0.0013914709,0.041794084,-0.0127174165,-0.026788434,-0.022469798,-0.006078319,-0.012885005,0.03766882,-0.0018031916,-0.0087855235,-0.0057560327,0.0778128,-0.028928416,-0.025653986,0.0248805,-0.029108895,-0.028283842,0.014696253,0.014477099,0.023630029,-0.017003823,0.034342825,0.03730786,0.06791216,0.03689533,-0.0042574015,0.0025637872,-0.0014986311,-0.019943073,0.009636359,0.030759001,-0.0025911815,-0.017184304,0.04321214,-0.011866581,0.07389379,0.031403575,-0.013123496,-0.03658594,-0.00937853,0.028232276,0.0597132,-0.036998462,0.010938396,-0.025267243,0.01644949,0.035915583,-0.053628433,0.018189836,-0.010809481,-0.04068542,0.0496063,0.0021415923,0.021000173,0.0089466665,0.04362467,-0.040401805,0.03686955,-0.012569165,0.017828876,-0.007064515,0.012195312,0.02213462,-0.0052629346,-0.020213794,0.019040672,0.0006002582,0.01280121,-0.0022995125,-0.022985457,-0.015547089,0.015431066,0.010474304,0.008920884,0.0856508,0.029108895,-0.013587589,-0.01111243,0.0064682853,0.040221326,0.04328949,-0.009075581,-0.024635563,0.024648454,0.0031358453,-0.004125264,0.003545149,-0.028773718,0.0070258407,0.0031793541,0.012756091,0.059403803,-0.040298674,-0.083381906,0.02923781,-0.05295808,0.017442133,-0.009088472,0.00060589815,-0.060796082,-0.0026685302,-0.054401923,-0.0639416,-0.048110895,-0.01724876,0.008907992,0.025782902,-0.0027297647,-0.021283785,0.014696253,0.031248877,0.039860364,0.028232276,0.023758944,0.044320807,0.0144126415,0.013001028,0.01412903,0.046151392,0.07667835,0.025615312,-0.0128398845,0.030887917,-0.05179785,-0.047079578,0.016604189,0.0009169044,-0.003496806,-0.013858309,0.025383266,0.015237695,0.016900692,0.040865898,0.011866581,0.016488165,-0.017377675,-0.027097829,-0.022005707,0.0049374257,0.009230278,0.014232161,-0.017287435,0.037282076,0.045352124,-0.030707436,0.025357483,-0.01244025,0.0022141067,-0.041278426,0.07636895,-0.023797618,-0.039370492,-0.013871201,-0.03774617,0.0018015802,-0.004756945,0.012865668,-0.02577001,-0.009791057,0.004898751,0.001249665,0.00671,0.0073868013,0.009649251,-0.060486685,0.048188243,0.016152987,0.06435412,0.008733958,0.02249558,0.008927329,0.044475503,-0.0060203075,0.018408991,-0.052726034,0.024777368,-0.03658594,-0.009204496,0.013033257,-0.05048292,0.015121671,0.011350922,-0.03607028,0.056206726,0.00078476703,-0.048085112,0.021490049,-0.06373533,0.055794198,-0.037282076,-0.019569222,0.03405921,0.014425533,-0.03155827,0.008134506,0.023075696,0.03671485,0.030269125,-0.017261652,0.031867664,0.040427588,0.019607896,-0.020110663,-0.02569266,0.0015332769,-0.01740346,0.0030439938,0.031764533,0.017094065,0.020677887,0.035399925,0.020136446,-0.029108895,0.03313103,-0.0010458189,-0.03331151,0.012291999,-0.040659636,-0.030243343,0.036560155,0.12128277,0.06115704,0.013523132,-0.042412873,0.00588817,-0.012208204,0.013884093,0.038957965,-0.014025899,-0.015663113,-0.01856369,-0.027716618,-0.0039866813,0.04496538,-0.029676119,0.021696312,-0.07461572,0.010809481,0.011544294,-0.0061298846,-0.0010836875,0.0062523535,-0.010467858,0.0022334438,-0.020162228,-0.015443958,0.00020868036,0.0007771128,-0.03877748,-0.043392625,-0.0066519887,-0.011789232,0.0040446925,-0.002989205,0.030423824,-0.022444015,-0.0052661574,-0.02275341,0.0013640766,-0.010094006,0.014000115,-0.014425533,-0.018512122,0.014464208,-0.023758944,0.0437278,-0.043495756,-0.0036708405,0.045893565,0.0011739277,-0.0015888712,0.022933891,-0.013129942,-0.0071418635,-0.058320925,0.0091078095,-0.019143805,0.00048101225,0.014954083,-0.030552737,-0.0073996927,0.004080144,0.02195414,0.016372142,0.01767418,-0.04942582,-0.026556388,0.023204612,-0.010164909,0.02613097,-0.018176945,0.011937483,-0.031867664,-0.01412903,-0.0055465465,0.005233929,-0.02480315,0.018331643,-0.014567339,0.017429242,0.00826342,-0.008714621,-0.012008387,-0.018202728,-0.014670471,-0.005353175,0.045816217,0.006577863,0.018318752,0.019711029,-0.0044733332,-0.03313103,-0.012852776,0.04522321,0.0075930646,-0.017029606,-0.019066455,0.005446638,0.040401805,-0.028979981,0.026633738,0.0120728435,0.01572757,-0.003545149,0.03689533,-0.046254527,0.029108895,0.027175179,0.011292911,-0.048188243,0.010016657,-0.014438425,-0.0037675265,-0.016694428,0.0039866813,0.0127174165,-0.010577436,-0.0054530837,-0.0053177234,0.0037256293,0.021567397,-0.011370259,0.015134563,-0.011492728,-0.010422738,0.0004955151,0.016668646,0.016024074,-0.072192125,0.015469741,-0.02311437,-0.013039703,0.010261594,-0.002831285,0.027587704,0.025937598,0.04444972,-0.007696196,-0.02800023,-0.04390828,0.023952315,-0.06260088,-0.045558386,-0.04274805,-0.037204728,0.0047795055,0.009604131,-0.027922882,-0.028206494,-0.0036386119,0.0022398895,-0.004582911,0.026040731,-0.004263847,-0.034084994,0.026014948,0.002428427,0.017222978,-0.021657636,0.054298792,-0.018847302,0.0009990875,0.011795677,-0.018602364,0.017687071,-0.017455025,-0.019878617,-0.007838002,-0.014373967,-0.008927329,0.011924592,-0.008856427,0.008121614,0.049632084,0.015624438,0.0109641785,0.025744228,-0.008244082,0.023256177,0.03003708,0.020020423,0.022340884,0.0023559127,-0.002241501,0.019066455,0.007889568,0.028412757,0.016462382,0.0041864985,-0.023488224,0.008450346,0.009069135,-0.012820547,-0.06399316,-0.019053563,-0.009146485,0.012362901,-0.014451317,-0.023862075,-0.016926475,-0.035322573,0.023320634,0.026079405,0.0159854,-0.022173295,0.002850622,0.018808626,0.020587647,-0.030243343,0.016552623,0.032744285,-0.00079161563,0.020755235,0.012092181,-0.031661402,-0.0026765876,-0.00652952,-0.031171529,0.027200961,0.0035354802,0.012614285,-0.004508785,0.035425708,0.013974332,0.010725687,0.021167763,-0.0046957107,-0.026363017,0.021941248,-0.033981863,0.053886265,0.0065166284,0.01954344,0.02390075,-0.0038319838,-0.0020449064,0.024480864,0.018073814,-0.009088472,0.013832526,0.041922998,0.039602537,-0.0013334594,0.004105927,-0.017106956,0.070438884,0.0077799903,-0.019272719,0.0075286073,-0.018537907,0.008927329,-0.023965206,0.005359621,-0.017339,0.012517598,-0.010957733,0.026092296,-0.010835264,-0.012923679,0.06646832,-0.026453257,-0.012111518,0.0144126415,-0.0059880787,-0.022431124,-0.022727627,0.009971537,0.0026201874,0.055226974,0.038597003,0.0038513208,0.022160403,-0.0054111863,-0.008495466,0.007715533,-0.0556395,0.056722384,-0.040298674,-0.0036740634,-0.019001998,-0.014309511,-0.044939596,-0.0026733645,0.024519539,0.034007646,-0.021618962,-0.007928242,-0.019504765,-0.00048181796,0.056412987,0.0034710232,0.012053506,-0.018718386,-0.041381557,-0.0028216164,0.03599293,-0.0070709605,-0.008888655,-0.042412873,0.010609664,0.019143805,0.0084825745,-0.021180654,0.0036998463,0.0046409224,-0.030269125,0.00026790047,0.014567339,-0.044011414,0.0074254754,-0.0047343853,0.036044497,-0.047492106,0.0061073247,0.011660317,0.004879414,0.021528723,-0.045248993,0.009256061,0.017016714,-0.013381326,-0.020664996,0.030552737,0.011621643,-0.022985457,-0.033259943,0.036018714,-0.004814957,-0.0021915466,0.019698137,0.029005764,-0.006197565,0.01652684,0.00424451,0.0072385496,0.03581245,0.022933891,0.040762767,-0.02613097,-0.015224803,0.0417683,-0.005591667,0.027433006,-0.013497349,-0.021554505,0.008160288,0.02949564,-0.012988136,-0.0061621135,0.0203556,-0.013265302,0.00755439,-0.030939482,-0.03952519,0.052081462,0.023526898,-0.043598887,0.018357426,0.0032921543,0.0036289433,-0.02344955,-0.009565457,-0.030707436,-0.019672353,0.0038609896,-0.037075814,0.013407108,0.038339175,0.014941191,0.005417632,-0.035915583,-0.008901547,0.01644949,0.061569568,-0.0164366,-0.019968858,0.059249107,-0.043418407,0.01097707,-0.009874851,-0.0030762225,0.022972565,0.025177004,0.007161201,-0.013007474,0.016165879,0.0032421998,-0.0028747935,-0.00018612032,-0.009475216,0.016939366,-0.018718386,0.06414786,-0.0015211912,0.02549929,-0.0071418635,0.03258959,-0.013768069,-0.0036837321,0.031326227,0.015714679,-0.011834351,-0.0047150482,0.027304092,0.030088646,0.017635504,0.0039576753,-0.011376705,0.009133593,0.014941191,0.0061298846,0.019427417,-0.020200903,-0.040659636,0.014631797,0.007883122,-0.026002057,-0.002102918,0.03135201,0.06672615,0.009887743,0.047131144,0.017545264,-0.017442133,0.021206437,0.039061096,-0.011718329,0.032666937,0.018460557,-0.02088415,0.004057584,-0.021438483,0.0027394332,-0.019221153,-0.01093195,0.020278253,-0.042206608,0.03421391,0.0426707,0.002898965,0.020639213,-0.026711086,0.010081114,0.019633679,0.000092204085,0.03599293,-0.014077464,-0.0033646687,0.031068396,-0.022508472,-0.017841768,0.020407166,-0.0050856774,0.02195414,0.021644745,-0.017996466,-0.0046989336,0.005372512,-0.036431238,-0.01848634,0.0014390082,0.0140903555,0.029005764,-0.013536023,0.000660284,-0.001397111,-0.030346476,0.05873345,-0.014386859,-0.015070106,-0.028567454,0.0059977476,-0.012414467,0.049812566,0.006471508,0.002794222,-0.013871201,-0.05205568,-0.050689183,0.02150294,0.025293026,0.020781018,0.021696312,0.0034645773,0.005063117,0.036560155,-0.002581513,0.025305917,0.023617137,-0.011918146,0.01998175,0.019698137,0.004279962,-0.01164098,-0.0020529635,-0.0022479468,0.06806686,0.023075696,-0.012955908,-0.00005176723,-0.030939482,0.024751585,0.0015284426,0.044011414,0.029805034,0.042103477,0.01280121,-0.014786494,0.0007755013,0.0033131028,-0.033904515,-0.011479837,0.00082505285,0.030346476,-0.043237925,0.026375908,-0.020368492,0.009133593,0.0049374257,-0.04751789,0.003993127,0.030681653,-0.009707263,-0.005114683,-0.054247223,0.0023333526,-0.034420174,-0.0050889,-0.009900634,-0.019865725,0.019156696,-0.015173238,-0.013961441,-0.012027724,-0.009462325,0.02391364,0.0030907253,-0.003182577,0.033491988,0.0040027956,-0.033002112,-0.0019047118,0.025473507,0.011860135,-0.014902517,-0.048832815,0.007109635,0.033002112,0.021644745,0.020845477,0.036018714,-0.014644688,-0.010377618,-0.02941829,-0.013974332,-0.03774617,0.00426707,-0.04016976,-0.010989962,0.017313218,0.021928357,-0.0068711434,0.015972508,0.03021756,0.030991048,0.050611835,-0.010390509,-0.052133027,-0.02435195,-0.012955908,0.013007474,0.04823981,-0.01305904,-0.018641038,0.0095912395,0.012111518,-0.03436861,-0.01332976,-0.0031986912,0.03759147,0.017661287,0.012156638,0.011653871,-0.031945016,0.031609837,0.024583997,-0.010641892,0.030810567,-0.0057592555,0.02265028,-0.0050502256,-0.00737391,0.008134506,0.006400605,0.033981863,-0.05099858,0.03374982,-0.03155827,0.025293026,-0.03395608,0.012446696,0.0027619933,0.039860364,0.002459044,0.044630203,-0.00901757,0.011254236,0.0012335507,-0.04416611,-0.0052661574,0.022908108,-0.00330988,-0.058063094,0.0009459102,-0.03645702,0.02008488,0.0035064747,0.010757916,-0.008927329,0.015070106,0.010061777,-0.019337175,0.009075581,-0.025834467,0.018589472,0.0058075986,-0.013961441,0.037720386,0.026234102,0.001374551,-0.026582172,0.03184188,0.0010546818,0.010261594,-0.01856369,-0.019955965,-0.024132796,0.02833541,0.0033421086,-0.006168559,-0.016694428,0.042876966,-0.024223035,-0.010242257,-0.019620787,0.032950547,-0.012582056,0.016385034,0.0017838544,-0.012279106,-0.010783698,-0.019311393,0.019891508,0.00062563823,-0.00060831534,-0.007438367,0.018370317,-0.0039770124,-0.03333729,0.0040736985,-0.008682392,-0.018164054,0.0496063,-0.007232104,-0.013768069,0.007863785,-0.0070065036,-0.020909933,0.056206726,0.0041478244,-0.0039351154,0.0057431413,0.0070065036,0.0134844575,-0.013729395,-0.0008887044,0.011802123,0.030965265,-0.0017757973,0.035864014,0.012317781,0.01565022,0.018679712,0.016965149,0.028154928,-0.031764533,-0.032151278,-0.009069135,0.010867493,0.021258002,-0.002981148,0.022044381,-0.011041528,0.009913526,-0.010667675,0.0053402833,-0.049039077,0.0036740634,0.037797734,0.006645543,0.047698367,0.016990932,0.011698991,0.00888221,-0.022340884,0.028232276,-0.015366609,-0.0008053128,-0.0011787621,-0.014799385,0.027897099,-0.0035354802,-0.0018821518,0.022315102,0.019775486,-0.022946782,-0.01301392,0.027665053,0.006010639,0.03759147,-0.062858716,-0.004202613,-0.01599829,0.018950433,-0.023591354,-0.0020030092,0.016127205,0.047028013,-0.037204728,-0.004827848,-0.030062864,-0.011486283,-0.0318161,-0.015379501,-0.04027289,0.015057215,0.021876791,0.024326168,0.0055433237,0.008418118,-0.009810394,-0.0024542098,-0.014760711,0.010319606,-0.01937585,0.029108895,0.0019530548,0.026711086,0.02435195,0.003751412,-0.011518511,0.031764533,-0.009275399,0.014876734,0.008050711,-0.007515716,0.00990708,-0.00044636647,-0.007954025,-0.0057334728,-0.033930298,-0.0136262635,-0.018808626,-0.027871316,0.007747762,0.018280078,-0.013832526,-0.0041897213,0.01919537,0.0066777715,-0.023694485,-0.022534255,-0.027226744,-0.0034452402,0.039705668,-0.013536023,-0.0065585254,-0.015611547,-0.03457487,-0.0048181796,0.0011980992,-0.008521249,0.010422738,0.0067680115,0.007850894,-0.01740346,-0.008192517,0.0067422288,0.007850894,0.018164054,0.0050856774,-0.013561806,0.0046344767,0.04798198,-0.006013862,0.017996466,-0.017738637,0.0194532,-0.029650336,-0.017390568,-0.014850951,0.021477157,0.03225441,-0.0168878,0.022237752,-0.003545149,-0.009281845,0.032821633,0.007966916,0.011157551,0.025898924,-0.006313588,-0.038313393,0.010119788,0.0028586793,0.0027619933,0.052287724,-0.0298566,0.016591297,0.013832526,0.028825283,-0.0063909367,0.0013189565,-0.016385034,0.00089837296,-0.003680509,0.017132739,-0.0122146495,-0.020265361,-0.0030939481,-0.0037675265,0.030062864,-0.007535053,0.0040414697,-0.019595005,0.01919537,0.0125369355,-0.014489991,-0.0020755236,-0.009958645,-0.02738144,0.014270836,-0.057547435,0.003425903,0.0053306147,-0.0068195774,-0.0087855235,0.008998233,0.016836235,-0.02070367,0.021851009,0.014348185,0.011653871,-0.022508472,-0.015766244,-0.004901974,-0.004744054,0.0037385207,0.029289376,0.028412757,-0.0017016715,0.01572757,-0.0068131317,0.010790144,-0.021348242,0.021129088,0.011273573,-0.007019395,-0.020909933,0.0034452402,-0.008547032,-0.03511631,-0.010899722,0.009281845,-0.022250643,-0.019079346,0.003425903,-0.02807758,-0.018873084,-0.009810394,-0.028979981,-0.024983631,0.012047061,0.020909933,-0.009720154,-0.016475273,0.01829297,-0.016668646,0.023307743,-0.024467973,0.0022012151,-0.011350922,0.013935658,-0.012079289,-0.011744112,0.01937585,0.041562036,-0.015933832,-0.029392507,0.01813827,-0.008869318,0.00564001,0.025937598,0.013987224,-0.020561865,-0.053267475,-0.006242685,0.000074377625,0.019221153,0.0131815085,-0.024687128,0.0021158094,-0.030372258,-0.03184188,0.015327935,-0.01652684,-0.033156812,0.020484515,0.021644745,-0.0009160987,0.00782511,-0.0027362104,-0.00684536,-0.018344535,0.016217444,-0.017558156,-0.003493583,-0.0050083287,0.019208262,0.025215678,0.024107013,0.009449434,-0.021386916,0.009623468,-0.0056432327,-0.010648338,-0.047260057,-0.028361192,0.012988136,-0.02702048,0.0036708405,-0.030088646,-0.018769952,0.014515773,0.006336148,-0.02763927,-0.0074061383,0.016036965,-0.020123554,-0.006316811,0.010023103,0.011550739,-0.0057850387,0.0072643324,-0.008424563,-0.015121671,0.047028013,-0.0035258117,-0.013664938,-0.017222978,0.029572988,-0.002450987,0.0058140443,0.035245225,-0.017480807,0.004972877,-0.0053177234,0.016011182,-0.010893276,-0.036843766,0.00012639664,-0.009604131,-0.023978097,0.019478982,-0.023965206,-0.012833439,-0.0029376394,0.012356455,-0.029444072,0.0054530837,0.035864014,-0.004035024,0.03846809,-0.011196225,-0.02486761,-0.010480749,0.009185159,-0.001144922,0.0011489505,0.01812538,0.032331757,0.0011344476,0.00082747,0.018963324,0.023539789,-0.021270894,-0.020458732,0.00737391,-0.008650163,-0.006613314,-0.0058591645,-0.025022306,-0.015933832,-0.027974447,-0.019711029,-0.022534255,0.005872056,-0.0034645773,-0.03596715,0.028386975,0.016642863,0.007586619,-0.006967829,0.051849414,0.006639097,-0.029779252,0.041690953,0.051050145,0.04656392,-0.0038577665,0.011750557,-0.012124409,-0.01776442,0.0134844575,-0.012092181,0.005163026,0.021941248,0.0097330455,0.0034839145,0.033156812,-0.021618962,0.026736869,-0.00046006363,0.032099713,-0.020368492,0.015443958,-0.020458732,0.000997476,-0.008901547,-0.009449434,-0.0080378195,0.0077026417,0.06115704,-0.03246067,0.044114545,-0.0008012842,-0.0027362104,0.01004244,-0.051075928,0.0119117005,0.006896926]},{"id":"interface-ReactionCollectorEndReason","type":"interface","source":"main","text":"Interface: ReactionCollectorEndReason","meta":{"url":"/docs/typedefs/ReactionCollectorEndReason"},"embedding":[0.025449743,-0.007485676,0.0027361973,0.038120203,-0.041105144,0.031170884,-0.035197448,0.010727137,-0.0019812167,-0.014295076,0.03163728,-0.05941901,0.009592237,0.04558256,0.037094127,-0.024252657,0.027346427,0.0074468097,-0.023071118,0.06691246,0.010618311,0.034668863,0.046950657,0.0056278603,-0.019029008,-0.036969755,0.0030743352,0.011341226,-0.035259634,-0.035166353,0.06078711,-0.038120203,-0.020925691,0.020023989,-0.024625776,0.025294278,0.034420118,-0.0068910196,-0.011364547,0.025698489,0.0032919873,-0.04548928,-0.021127796,0.037467245,-0.0394883,-0.0020307715,-0.00017210544,-0.01406965,0.029414121,0.002722594,-0.023599701,-0.015111271,0.011022522,0.038213484,-0.017178966,-0.0848843,-0.007959846,0.038524415,0.0034629996,-0.009149159,0.007835474,-0.04026563,0.03619243,-0.025807315,-0.013494427,-0.01974415,-0.021982858,0.042286687,0.016090706,0.0143494895,0.028123755,-0.0011280983,-0.024952253,0.0024913386,-0.039332837,0.012794832,0.031839386,-0.021578647,0.0033327972,-0.028574606,-0.021252168,0.01420957,-0.037156314,-0.060165245,0.00142154,-0.020863505,-0.0054957145,-0.0044657537,-0.010268513,-0.041975755,-0.06541999,0.06280816,-0.014598235,0.0063546626,0.002028828,-0.0069143395,-0.033642787,0.014100743,-0.0102141,0.03473105,0.009452318,-0.06772088,-0.007843248,0.0028644565,0.022387069,-0.007816041,-0.014769247,0.02146982,-0.043841343,-0.0006412962,0.012033049,-0.040203445,-0.053231474,-0.0008016203,-0.013424468,-0.019961802,-0.022480348,0.01693022,-0.017894108,0.010392886,-0.013813132,0.01947986,-0.020521479,-0.033114206,-0.01127904,-0.034295745,-0.0071864044,-0.039830327,0.03600587,0.016557103,0.047696892,-0.0082785515,-0.03986142,-0.0134166945,-0.011488919,-0.015453296,0.016417183,-0.021594193,-0.032212503,-0.027206507,-0.017800828,0.023319863,0.037747085,-0.007419603,-0.029274201,0.02482788,-0.036876477,0.012343981,0.052733984,0.0031889912,-0.02650691,0.04272199,-0.032212503,-0.01477702,0.026429178,-0.03059566,0.023615249,0.040016886,0.023164397,0.0016877751,0.024003912,-0.028341407,-0.038897533,-0.0027983836,-0.06709902,0.013385601,-0.004838872,-0.015834186,-0.08183717,0.037622713,-0.005927132,0.0010319039,-0.051241513,0.0044890735,-0.026771203,0.00343385,-0.028590152,-0.016230624,0.042162314,0.0031423515,0.052391957,0.044743042,-0.012514994,-0.053044915,-0.008379604,-0.0019122288,-0.02310221,-0.0004525511,0.045738026,-0.01801848,-0.015810868,0.044183366,-0.018034028,0.00740017,0.011341226,-0.054164268,0.029725052,-0.017598724,0.0033230805,-0.02655355,-0.027393065,0.011698798,0.10994538,-0.019402126,-0.04116733,0.009250212,-0.03326967,-0.0062380633,0.06271488,-0.020987878,0.071203314,0.009226892,0.009833209,-0.0345134,-0.03386044,0.0028158734,0.02782837,0.024221564,0.0090325605,-0.0075439755,-0.0051847827,0.050464183,0.06237286,-0.018811356,0.006004865,0.018904636,0.06050727,-0.006339116,-0.025247639,0.0071630846,-0.055407993,0.023848446,-0.021982858,-0.06815618,0.022698,-0.015235644,-0.0061603305,-0.010633858,0.042815268,-0.03336295,-0.024998894,0.014419449,0.035663843,0.01413961,-0.0047183856,-0.0080609,0.02560521,-0.009242439,0.014489409,0.0035562792,0.03414028,0.032150317,0.054692853,-0.016339451,-0.0040770895,-0.008760495,-0.0006291505,0.0012446977,-0.015453296,-0.004834985,0.0014837263,-0.050557464,-0.014629328,0.03354951,-0.019650871,-0.04191357,0.033300765,-0.012064142,-0.020039536,0.039332837,0.012546087,-0.025200998,0.05052637,-0.0074701295,-0.04017235,-0.0140618775,0.053044915,0.021034516,-0.03967486,-0.01191645,-0.008915961,-0.018889088,0.04135389,0.06274598,-0.01924666,-0.010773777,-0.0047650253,0.0065217884,0.06423845,0.0049710176,-0.011193534,-0.026771203,-0.017007953,-0.02650691,-0.01570204,-0.027004402,0.0215631,-0.0394883,0.023941725,0.0014205683,-0.017552083,0.016183985,-0.006863813,-0.01974415,0.038524415,-0.047914546,0.029383028,-0.011582199,0.0073496434,0.0053519085,0.0010591104,-0.054630667,-0.031761654,-0.009910942,0.007151425,-0.021127796,0.04853641,0.0135954805,0.00801426,0.009460091,0.028092662,-0.025869502,0.03550838,0.011496693,0.011061388,-0.04834985,0.010789324,-0.021827392,0.07207392,0.048101105,-0.012926977,-0.041291703,-0.025325371,-0.025496384,0.06417626,-0.009530051,-0.027812824,-0.00033935258,0.00793264,0.07282016,0.01688358,-0.040203445,0.0032978172,0.007034825,0.02056812,0.023413142,0.029414121,-0.0021920672,0.020537026,-0.0056045405,-0.013719853,0.0105794445,-0.035632752,-0.02614934,0.013556614,-0.0068366067,0.021547554,-0.03867988,-0.021718565,0.04253543,0.023490876,0.03205704,0.020847958,-0.021189982,-0.001246641,0.044680856,-0.106400765,-0.023895087,0.04014126,-0.027128775,0.030844405,0.006611181,0.016277265,-0.0229312,-0.026569098,0.029274201,-0.0037817045,-0.0019462369,0.06097367,0.004924378,0.03482433,0.012001956,-0.005946565,-0.01820504,0.026755657,-0.0009211346,-0.003000489,0.02886999,-0.06666371,0.013167949,0.04838094,-0.07885223,-0.020770224,-0.0535735,0.041074052,0.016665928,0.0045162803,0.05851731,0.05211212,0.040825307,0.0019102854,0.008356284,0.012755965,0.039581582,-0.0014050218,0.038648788,-0.0047961185,0.01525119,0.043779157,-0.04906499,0.06442501,-0.024439216,0.056216415,0.029180922,-0.007170858,-0.03690757,-0.03827567,0.024035005,0.014396129,0.014038557,-0.020008443,-0.0075672953,-0.02428375,-0.007893774,-0.023055572,0.023801807,0.038244575,-0.012305114,0.027393065,-0.06305691,-0.021127796,0.04135389,0.005239196,0.015600989,0.01468374,-0.0032181412,0.07238486,-0.023584155,-0.007625595,0.037778176,-0.030082623,0.002777007,0.051925562,0.006766647,-0.09284415,0.009452318,-0.004974904,-0.0010649404,-0.01200973,0.034482304,-0.076737896,-0.009942035,-0.008053126,0.039052997,-0.031746108,-0.006121464,0.031575095,0.04048328,0.009320172,0.00065732864,0.021936217,0.042193405,0.013782039,0.05456848,-0.037622713,0.0075439755,-0.031062057,-0.0010571671,-0.0048855115,0.0051342566,-0.03326967,-0.01300471,0.02047484,0.013105763,0.0032181412,-0.018096214,0.005009884,-0.010820417,-0.03482433,-0.024843428,-0.013968598,-0.00339304,-0.024610229,-0.040732026,0.038648788,0.06964866,-0.022589173,-0.018826902,-0.076800086,0.013673213,0.043748062,0.016572649,0.0012621876,-0.021189982,0.0015604876,-0.026911123,0.022262696,-0.013012484,-0.01078155,-0.002034658,0.01825168,0.0060942573,0.013984145,0.026755657,0.023506422,0.011201307,0.022262696,0.012274021,-0.03504198,-0.030517928,0.024719056,0.024143832,-0.03513526,-0.023117758,-0.046297703,0.01300471,-0.034451213,0.005896039,0.004232555,0.026771203,0.014940259,-0.016510462,-0.0018995972,0.008573936,-0.020350467,0.020319374,-0.007170858,-0.05071293,-0.023008931,-0.016665928,0.0054296413,0.010369565,0.020366013,0.016852487,-0.023273224,-0.01647937,0.01300471,0.00018546579,-0.019200021,-0.025465291,0.0072485907,-0.0052469694,0.00007894745,-0.035788216,-0.009219119,0.021189982,-0.008620576,0.016323904,0.01366544,0.024050552,-0.049282644,-0.025480837,0.03752943,-0.04931374,0.0066189542,0.040047977,-0.008729402,-0.027564079,-0.010097501,-0.004080976,-0.013587707,0.00091530464,0.0167903,-0.030797767,-0.018173946,0.036378987,0.012180742,0.01480034,-0.0054918276,0.012468354,-0.002172634,-0.011558879,-0.03650336,-0.012709325,0.03000489,-0.007769401,0.024812335,0.013113536,0.03504198,-0.020987878,-0.01423289,-0.026320351,0.012343981,0.036565546,0.009498958,-0.0042286683,-0.006234177,0.016899128,-0.008636123,-0.006615068,-0.022962293,-0.00050283456,0.02274464,0.04371697,0.014466088,-0.0026273713,0.0038283442,0.06010306,0.01688358,0.014108517,0.030315822,-0.01983743,-0.031652827,-0.010027541,0.009514504,0.061066948,0.038897533,-0.007726648,-0.010330699,0.025480837,-0.0031598415,-0.0007234016,-0.0019034839,-0.023008931,-0.013929731,0.014217343,-0.036876477,-0.015103498,0.0056939335,0.01784747,-0.0090792,-0.0018529574,-0.016168438,-0.024081646,-0.019899616,0.038337857,-0.024439216,-0.012546087,0.034668863,0.006887133,0.015655402,0.008301871,-0.023599701,-0.015220097,0.012926977,0.0001570447,0.0063896426,0.01130236,-0.025543023,-0.048785154,0.012211835,-0.035166353,0.020366013,-0.01536779,0.031901572,0.029833877,0.015282284,0.013556614,-0.0042092353,0.007680008,-0.015196778,-0.002421379,0.0014992729,-0.020101722,0.00844179,0.0040187896,-0.018096214,0.03376716,0.00623029,-0.015997427,0.012996937,-0.032896552,-0.028698979,-0.024625776,-0.02674011,0.00044842155,0.019573139,-0.0076916683,-0.0041004093,0.00508373,0.03522854,0.03895972,0.009040333,-0.0061603305,0.052143212,-0.008861548,0.026538005,-0.0021395974,-0.03246125,-0.016899128,0.02773509,0.010260739,-0.017878562,-0.006187537,-0.024174925,0.016199531,-0.004866078,-0.030626753,-0.027517438,0.026491364,0.0051847827,0.011038069,0.013214589,0.0007122275,0.0028236466,-0.030611208,0.0143494895,0.00391968,-0.007505109,-0.058983706,-0.018795809,-0.029662866,-0.0033133638,0.0138830915,0.010548351,-0.022698,0.038400043,-0.0041509354,0.05030872,0.012025276,-0.011566652,0.014015238,-0.011589972,0.01080487,-0.014442769,0.0372185,0.030440195,-0.003573769,0.044649765,-0.020490386,0.0118698105,0.009980901,-0.004232555,0.020397106,0.009965355,0.044649765,-0.0004989479,0.030409101,0.00044574947,0.01191645,-0.029180922,-0.019184474,-0.016199531,0.018640343,0.010789324,0.02210723,-0.031388536,-0.0110458415,0.028901083,-0.0040732026,0.008947054,-0.013898638,0.02215387,-0.009343492,0.011488919,0.041105144,-0.0068560396,0.039301742,-0.030315822,-0.016277265,-0.013136856,0.01416293,-0.04943811,0.021003423,0.026864482,-0.041540448,0.040700935,-0.00957669,-0.034264654,-0.008169726,0.011659931,0.029320842,-0.0028236466,-0.01629281,0.010556125,0.023677435,-0.04480523,-0.0007724705,0.015142364,0.033642787,0.04965576,-0.0038011377,0.014147383,-0.016106252,0.008807135,0.0057328,-0.019961802,-0.016697021,-0.019604232,0.019137835,0.02151646,-0.010423979,-0.05543909,-0.012639366,0.0030218656,0.029709505,0.00079141784,0.04045219,0.0036106922,-0.014613781,0.015002445,-0.027035495,0.01983743,-0.046546448,0.034420118,0.02995825,-0.021189982,-0.118091784,0.027812824,0.019650871,-0.014652647,-0.008651669,0.0037098015,0.010929243,0.031419627,-0.0042053484,-0.008472883,-0.00085214665,-0.0031831614,0.0064362823,-0.030766673,0.02137654,-0.011551105,0.003645672,0.017692003,0.020505933,-0.006121464,-0.028792258,-0.017132327,-0.0012670459,0.040732026,-0.01638609,0.020459292,-0.027672904,0.020412654,0.025682943,-0.00450462,0.028745618,0.004197575,-0.024610229,0.014450542,0.029351935,0.013844226,-0.008527297,0.02955404,0.0016469653,0.00566284,0.022542534,-0.018236132,0.012398394,-0.0047727986,-0.0013632403,-0.050246533,0.019215567,0.018065121,-0.012328435,0.044463206,-0.012095235,-0.038058016,0.00062720716,-0.052640703,0.032025944,0.05052637,-0.007260251,0.022247149,-0.01874917,-0.03976814,-0.021438727,-0.0026701244,0.02787501,-0.029274201,0.0030762786,-0.025480837,-0.031248616,-0.028450234,0.006121464,-0.022278242,0.016665928,0.019619778,-0.0044346605,0.01082819,0.04834985,0.019122288,0.043499317,-0.0249678,0.009421225,0.008325191,0.0043530413,0.037747085,-0.04331276,-0.018422691,-0.003307534,0.0001490285,-0.0011446166,0.018267225,0.006560655,0.014466088,-0.009265759,-0.03908409,-0.008231912,0.0044346605,0.016354997,0.04213122,0.012281794,0.0066034077,0.014419449,0.018718077,0.036472265,0.020770224,-0.0113334535,-0.034389026,-0.035477284,0.00055870507,0.02778173,0.013362282,0.020350467,0.037591618,-0.029227562,0.00070542586,-0.0009842926,0.0281393,0.036969755,0.013704306,0.016821394,-0.01541443,0.008239685,0.0011990296,-0.022729093,0.009514504,-0.03173056,-0.0076333685,-0.019371033,0.012235154,0.011092481,0.016712569,0.027890556,-0.0076916683,-0.004112069,-0.055034876,0.0014263983,-0.018547064,0.023164397,-0.0082085915,0.015033538,0.015507709,-0.024781242,0.033611696,0.02900991,0.0017956295,0.003175388,-0.035384007,-0.036472265,-0.0046289926,-0.0131990425,0.0031248617,0.0068366067,0.0038652674,0.0139530515,-0.016339451,-0.0021085043,-0.026289258,-0.018686984,0.05121042,0.028590152,-0.01983743,-0.0028411367,0.029180922,0.014590461,0.08507086,-0.0030587886,0.003266724,0.01756763,-0.013719853,-0.0048621916,0.00019627552,-0.006362436,-0.010571672,-0.017909655,-0.021360995,-0.00095902936,-0.043499317,-0.0056939335,0.0019812167,0.03187048,0.028170394,0.010843736,-0.006704461,-0.02551193,0.036596637,-0.031388536,0.039892513,0.047012843,-0.004341381,0.04066984,-0.008830455,-0.025449743,-0.024361484,0.018764716,0.046515353,0.008729402,-0.027113227,-0.0038594373,0.017629817,-0.00023550632,0.0039021904,-0.009219119,0.00015886656,0.067783065,0.013517748,-0.0015983823,-0.008814909,-0.00790932,-0.027268693,0.0035990323,0.0033910968,-0.011722118,-0.022713546,-0.0043258346,0.016417183,-0.034948703,0.011760985,0.032647807,0.018920181,-0.053915523,-0.0069415458,0.008239685,0.013844226,0.0059543382,-0.03650336,0.015748682,0.038120203,-0.025029987,0.025278732,-0.02796829,-0.011698798,-0.012942524,0.0029868858,0.024625776,-0.02033492,0.0012233212,-0.010081954,0.01784747,-0.0016887467,0.018080667,0.028590152,0.035974775,-0.008216365,0.00047295596,-0.0022970065,0.0001119232,-0.015919693,-0.008884868,-0.01425621,0.03073558,0.00742349,-0.008605029,0.0043608146,-0.0051886695,-0.011014748,0.036472265,0.045924585,0.031994853,-0.037653804,0.0049904506,0.0036845384,0.013564387,0.012312888,-0.006257497,-0.008783815,0.019464312,0.01693022,-0.0049671307,0.025340918,-0.03535291,0.014427222,-0.025294278,-0.031901572,-0.008457337,0.0033172506,0.016183985,0.012227382,-0.006677254,0.0015779774,0.0034979794,-0.0063585495,-0.0068249465,-0.043468226,-0.006261383,0.009833209,-0.06165772,-0.009133613,0.01425621,-0.025263185,-0.015857507,0.0014079367,0.010960336,-0.05080621,0.044058993,-0.009926489,-0.016681476,-0.0063313427,0.0063663227,-0.00037724737,-0.017645363,0.010486165,-0.0028838897,-0.027952742,-0.013782039,0.013960824,-0.026024967,-0.019790791,-0.0074662426,0.02827922,0.011520012,0.030346915,-0.016090706,0.00058931235,-0.015593215,-0.021625286,0.011931997,0.0064362823,-0.015764227,0.03740506,0.016557103,-0.018127307,-0.037156314,0.025714036,-0.0024427557,0.00738851,0.002951906,-0.002559355,-0.002155144,0.0008385434,0.003000489,-0.0034824328,-0.005348022,0.0051031634,-0.004014903,-0.027439706,0.02333541,0.0021784639,0.011900904,0.0385866,-0.0041936887,0.006203084,-0.015655402,0.01766091,0.0010911752,-0.019495405,-0.009219119,0.0050992765,0.016836941,-0.023941725,-0.0034319065,-0.0010571671,-0.022573628,-0.010299606,0.12157422,-0.009304625,-0.0073185503,0.04225559,-0.034917608,-0.00682106,0.009203573,0.045613654,-0.018407146,0.017396618,-0.018547064,-0.0070542586,0.007516769,-0.011714345,-0.013152403,0.011955316,-0.0018004877,0.0078082676,0.021640833,-0.022029497,0.008830455,0.02900991,0.018127307,0.021734113,0.012934751,-0.012149649,0.008651669,0.02688003,0.0073846234,0.038368948,0.029927157,0.030238088,-0.014629328,0.0051575764,-0.028061569,0.0019277753,0.023724074,-0.018578157,-0.0076916683,-0.03308311,0.00032890725,-0.014295076,0.028294766,0.004368588,-0.0065295617,0.010019768,-0.025449743,0.014512728,-0.0045434865,-0.009965355,-0.052889448,-0.031994853,0.0047144988,-0.011597745,0.002089071,-0.01933994,0.0019063988,0.010882603,0.0485675,0.009421225,-0.03740506,0.01974415,-0.006261383,0.007069805,0.031761654,0.036938664,0.025931688,0.0072485907,-0.006210857,-0.006257497,0.004943811,-0.026833389,0.014015238,0.016075158,-0.03323858,0.041664824,0.010773777,-0.0026759543,-0.0015711758,0.009366811,0.01132568,-0.022589173,0.00074040564,-0.00399547,-0.024221564,0.02827922,0.02787501,-0.020303827,-0.012196288,0.0054296413,-0.008068672,-0.01593524,0.0043258346,-0.04035891,0.01250722,-0.019355487,0.001014414,0.0061603305,-0.007450696,-0.010493939,-0.00033910968,-0.01811176,-0.009491185,-0.010198553,-0.02369298,-0.0014089084,0.02832586,-0.0007122275,-0.018795809,-0.0059115854,-0.019542046,-0.0022367635,0.01629281,-0.013611027,-0.01246058,-0.025682943,0.005530694,-0.033331856,-0.0118698105,0.015422203,-0.007205838,0.042379964,0.0021998405,-0.0261027,0.014504955,0.004290855,0.027222054,0.010641631,0.0376849,0.02220051,0.017863015,0.017940748,0.017474351,0.00785102,0.012794832,0.012740418,-0.030844405,-0.019588685,-0.0037603278,0.016012972,0.027346427,-0.010136367,0.019526498,0.010439525,-0.0031792747,0.034886517,0.0067821937,-0.021687472,-0.02823258,0.021625286,-0.014901392,0.008869321,-0.014878073,-0.0010911752,0.0068677,-0.028667886,-0.009257985,-0.007948186,0.009809889,-0.007598389,-0.005029317,-0.01193977,0.0015002445,-0.002771177,0.012569406,-0.0008579766,-0.029678412,0.008006486,-0.027626265,0.012670459,-0.02492116,-0.0022872898,-0.014574914,0.0031715014,0.01707014,-0.00563952,0.013346735,-0.0023008932,-0.0070736916,0.014108517,-0.0072291577,-0.001997735,0.011566652,0.00789766,-0.008037579,0.0035601659,-0.035197448,-0.018422691,0.016759207,-0.030315822,-0.0083873775,0.0007700413,-0.01416293,-0.0071203317,0.010354019,0.026709016,0.0011203251,0.020661399,0.010354019,0.028294766,-0.033922628,0.006731667,-0.01541443,-0.032399062,-0.0007015392,-0.0050759567,-0.035290726,0.012196288,-0.0068366067,-0.004201462,-0.0069648656,0.028823351,0.011792078,0.0054957145,0.012103009,0.026133792,-0.005670613,0.03650336,-0.03619243,0.052671798,0.0057328,-0.01300471,-0.0035232427,-0.034575585,0.003713688,0.016106252,0.0322436,-0.0047455924,-0.016417183,-0.01536779,0.000079676196,0.008410697,-0.023366503,0.00039425143,0.032212503,-0.009561144,-0.047914546,-0.0067744204,-0.0458624,0.0058105327,0.015725361,0.025822861,-0.035259634,-0.031621736,0.034109186,-0.013502201,0.011006976,0.0014487465,-0.008908188,0.02714432,-0.02120553,0.011481146,0.02787501,0.0057133664,-0.0019957917,-0.013494427,-0.0055384673,-0.03818239,0.037778176,-0.008589483,0.009040333,-0.0059543382,-0.029476307,0.0040498828,-0.00506041,-0.022402614,-0.0015925523,0.023179945,0.029709505,-0.031217523,-0.032896552,0.027983835,-0.021780752,0.021174436,0.033114206,0.016836941,-0.011520012,-0.020039536,0.027797276,-0.047914546,0.020443747,0.019402126,0.03895972,0.002378626,-0.0036476152,-0.016572649,0.00041489923,-0.022076137,0.052640703,0.033891533,-0.01697686,0.025278732,-0.0048000054,-0.02827922,0.025853954,0.030564567,-0.021951765,-0.038866438,-0.027408613,-0.004733932,0.010315153,-0.010089727,0.05183228,-0.0051031634,0.021951765,-0.011380093,-0.011457826,-0.01073491,-0.0037156316,-0.020350467,-0.0066072945,-0.016246172,-0.010346246,0.021500913,-0.0050137704,0.0070659183,0.038555507,0.027564079,-0.010587218,-0.0030354687,-0.008612803,0.0072991173,-0.006199197,-0.018780263,0.041975755,-0.008659443,-0.003266724,0.038213484,0.025029987,0.013820905,-0.0077188746,0.007178631,0.0019297187,-0.0060709375,0.029973798,0.005262516,0.015453296,-0.030906592,0.006556768,-0.00075498055,-0.040607654,0.01364212,-0.0181584,-0.022946745,-0.008045353,0.04371697,0.028854445,0.0004336037,0.02624262,-0.025869502,0.01884245,-0.01898237,-0.022387069,-0.0010212157,0.007268024,0.019852977,0.036783196,-0.0058338526,-0.002125994,0.03295874,-0.003880814,-0.05161463,0.046017863,-0.0069687525,-0.0015264794,0.035446193,-0.004123729,-0.021780752,0.013059123,0.03513526,0.02328877,0.040421095,0.022511441,0.024874521,-0.03033137,0.02170302,0.0032608942,-0.029025456,-0.0064207357,-0.021951765,0.04135389,-0.012468354,0.0054918276,-0.028123755,0.000005784419,0.0036378987,-0.0074157165,-0.017723097,0.036254615]},{"id":"interface-ReactionCollectorEvents","type":"interface","source":"main","text":"Interface: ReactionCollectorEvents\nProperties: collect: [reaction: MessageReaction, user: User], end: [collected: Collection, reason: ReactionCollectorEndReason]","meta":{"url":"/docs/typedefs/ReactionCollectorEvents"},"embedding":[0.029121045,-0.0133276805,-0.010511608,0.03843874,-0.023722492,-0.0036693297,-0.014223114,-0.010764665,-0.015923139,-0.021269783,0.002550038,-0.06935065,0.025253812,0.030185184,0.029432502,0.007014227,0.0202316,0.03589519,-0.016896436,0.071946114,0.0038672334,0.009564265,0.059228364,-0.0011768782,-0.034260053,-0.006605442,0.0031534822,0.067585744,-0.030548548,-0.013210884,0.062187187,-0.021892693,-0.013457453,0.03156078,-0.023047673,0.040722746,0.009856254,0.024176696,-0.022411786,0.055438995,-0.020192668,-0.035012737,-0.0356616,0.02608436,-0.038724244,-0.0048243087,-0.00007482221,-0.0045517855,0.0069882725,0.03599901,-0.032780644,-0.019089598,0.022801105,0.04889844,0.0037374604,-0.08507913,-0.037660103,0.011958576,-0.022710264,-0.02469579,-0.018297983,-0.025279768,0.0348051,-0.018233096,0.00054464076,-0.02694086,-0.018765166,0.06021464,0.043993022,0.025149994,0.030626412,0.0029928882,-0.03734865,0.014897932,-0.011192915,0.012373849,0.0035784885,-0.031353142,-0.0112123815,-0.023462946,-0.013665089,-0.008921889,-0.05144199,-0.052506126,-0.0013658601,-0.044953343,0.020698782,0.00009297014,-0.012743702,-0.006271277,-0.03758224,0.043499887,-0.04295484,0.016338412,0.03192414,-0.032391325,-0.01831096,0.009337163,-0.015871229,0.03830897,0.012010485,-0.1035588,-0.0010187175,-0.017233845,0.015845275,0.014249068,-0.027797362,0.001223921,-0.05699627,-0.018285006,-0.022891944,-0.017714005,-0.022528581,0.011471927,-0.01073871,-0.020283509,-0.00068901316,0.015287251,-0.020789623,0.014119295,-0.023748446,0.021178942,-0.023164468,0.0042013987,-0.023475923,-0.016001003,0.024630902,-0.05224658,0.030574502,0.02330722,0.036985286,-0.021905672,-0.027771408,-0.022502627,0.013535317,-0.031327184,0.024124788,-0.007247818,-0.04487548,-0.02818668,-0.010751687,0.011952087,-0.015235342,0.018168211,-0.032079868,0.010952836,-0.052038945,0.005015724,0.04438234,-0.02919891,-0.009187924,0.027875226,-0.03485701,0.020192668,0.042980794,-0.024773654,0.019868236,0.025967564,0.018440733,-0.038153242,0.038490653,-0.042124294,-0.06971402,-0.0205171,-0.05896882,-0.007156977,-0.013989522,0.0012093215,-0.041579247,0.036466192,0.0068779653,-0.000038957227,-0.050896943,0.008396309,-0.052506126,-0.014275023,-0.046199165,0.00556077,0.009408537,0.026304973,0.024436243,0.014132272,-0.059228364,-0.079940125,0.007747444,-0.0072218636,-0.028913409,0.0133017255,0.009136015,-0.03820515,0.007513853,0.054037448,-0.009187924,0.026629405,0.015481911,-0.050066397,0.010712756,-0.015884208,-0.01692239,-0.036310468,-0.023956083,-0.008182183,0.07324384,-0.014936864,-0.002238583,-0.00680659,0.0065308227,0.010161221,0.038516607,-0.03384478,0.0517794,0.020270532,0.016182685,-0.013431499,-0.05115649,0.033299733,-0.022320945,0.0128864525,-0.032469187,-0.013768908,-0.012471179,0.038490653,0.099561796,-0.007397057,0.0052947355,0.03843874,0.029718002,-0.02311256,-0.029458456,-0.0038153243,-0.07381485,-0.0030058655,-0.032053914,-0.063173465,0.015936116,-0.00001894634,0.010667335,0.017480414,0.045186933,-0.050377853,0.011900178,-0.009317696,0.020971306,0.046718255,-0.00031834922,0.011394063,0.022956831,0.011063143,0.032858506,0.0044836546,0.032391325,0.027018724,0.033066142,-0.011147494,0.015105569,-0.008279513,-0.025396563,0.012373849,-0.016714754,0.015066638,0.042513613,-0.029172955,-0.033715006,0.03145696,-0.0149887735,-0.033663098,0.036258556,-0.0103429025,-0.021542307,0.05279163,-0.0049897693,-0.020543056,0.04194261,-0.001224732,-0.023800356,0.017480414,0.039970063,0.013665089,-0.018687302,0.022282012,-0.014326932,0.017428504,0.047341164,0.024137765,-0.0137299765,0.013652112,0.022930877,-0.0037082615,0.0393212,0.028913409,0.01572848,-0.010939858,0.009045173,-0.017739959,-0.005641878,-0.023670582,0.02880959,-0.02976991,0.039243333,-0.026214132,-0.03781583,-0.014158227,0.016325435,-0.034208145,0.056113817,-0.016623912,0.032287505,-0.030626412,0.022943854,0.0133017255,-0.002579237,-0.048924394,-0.028965319,-0.015391069,-0.011166961,0.005557526,0.01960869,0.03389669,0.012990271,0.0056029465,0.045913663,-0.021516353,0.028342409,0.013314703,-0.019907167,-0.055542815,0.03197605,-0.028134773,0.057255816,0.06654756,0.01232194,-0.037712015,-0.024669833,0.006050663,0.07879812,-0.027511861,-0.005168207,-0.027356135,0.001706514,0.06670329,0.039918154,-0.04850912,-0.03044473,-0.012587975,0.0072607957,0.0141452495,0.009681061,0.026862998,-0.018259052,-0.012036439,-0.00997305,0.020387327,-0.05455654,-0.03259896,0.017065141,-0.025448471,0.0020942106,-0.017921641,-0.011686052,0.043655615,0.025020221,0.032131776,0.039035697,-0.025188927,0.0041138018,0.015871229,-0.12634693,-0.0041300235,0.055594724,-0.057255816,0.01779187,-0.038905926,0.007448966,-0.0048567518,-0.008506616,0.02056901,-0.015754433,-0.00939556,0.047600713,0.009570754,-0.0095253335,0.03592115,-0.009415026,-0.026603451,0.01975144,0.005359622,-0.028212635,0.019647622,-0.04544648,0.039373107,0.07345148,-0.050222125,-0.015572752,-0.032157734,0.033870734,0.01672773,-0.0019336167,0.06602847,0.04622512,0.04368157,0.0002925974,0.008908912,0.032858506,0.021114057,0.012386827,0.053206902,-0.02694086,0.045005254,0.051519852,-0.032157734,0.055698544,-0.0077733984,0.034727238,0.005690543,0.002879337,-0.02167208,-0.03527228,0.033092096,0.010576494,0.0072543067,-0.02948441,-0.04635489,-0.018959826,0.0008293301,-0.01232194,-0.012068883,0.028498136,-0.026395814,-0.0076111825,-0.036466192,-0.057567272,0.027875226,0.05507563,0.004626405,0.041112065,-0.044849526,0.07724085,0.0036466194,-0.037089106,0.01505366,-0.00028712262,0.012620417,0.04152734,0.038516607,-0.061875734,-0.010232596,-0.0018200653,-0.008000501,0.022567512,0.010602448,-0.067066655,-0.0006942852,0.0068974313,0.030600457,-0.062031463,-0.044719752,0.024591971,0.06031846,0.012166212,0.0034162723,0.0068195676,0.055698544,0.022904923,0.052324448,0.00790966,0.0048113316,-0.067326196,-0.019310212,0.007987524,0.014962819,0.0050611445,-0.021633148,0.00040310717,0.016039934,0.0196606,-0.027122542,0.05382981,-0.003572,-0.009960072,-0.012419269,0.013989522,0.030911913,0.015261297,-0.020166714,0.015040683,0.040878475,-0.00021351702,-0.06898729,-0.030834049,0.030185184,0.019427007,0.010109311,-0.018609438,-0.015027706,0.008941355,-0.012912407,0.027745454,-0.045576252,0.017415527,-0.015936116,0.012016973,0.0053304234,-0.00073483924,0.030340912,0.018713256,0.03898379,-0.02402097,0.017376596,-0.01822012,-0.011478416,0.032287505,0.013872727,-0.03791965,-0.011342154,-0.00041608445,0.006722238,-0.026629405,-0.006199902,-0.0066962834,0.025993519,0.033585235,-0.0082405815,0.0046036947,0.010712756,-0.023268286,0.0037147503,-0.011848269,-0.014755182,-0.0124582015,-0.0012304096,-0.0047918656,-0.0077798874,0.004765911,0.017194914,-0.012354383,0.00098303,-0.03441578,0.0070985793,-0.00479511,-0.02790118,-0.010673824,0.0034941363,0.0137169985,-0.03361119,-0.0137299765,0.03763415,-0.0027349645,0.03843874,-0.0061577256,0.018946849,-0.01716896,-0.020828556,0.0461213,-0.05224658,0.015910162,-0.0015207765,-0.002929624,-0.02622711,0.0039288756,-0.023268286,-0.004288995,-0.014106317,0.017143004,-0.028160727,-0.042980794,0.03830897,0.041293748,0.018323937,-0.022048421,0.028705772,-0.011971553,-0.012023462,-0.030055411,-0.02766759,-0.0005795173,0.00766958,-0.023553787,-0.0010454832,0.002279137,0.0074035455,-0.008701275,-0.009239833,0.007345148,0.036310468,-0.010362369,-0.012062394,0.019258304,0.03672574,0.00092787645,-0.016104821,-0.006585976,-0.011919644,0.032858506,0.049780898,-0.014028454,0.008993264,0.007604694,0.044330433,0.01112154,0.0057359636,0.041060157,0.014781137,-0.05341454,-0.016714754,0.028731728,0.07345148,0.008863491,-0.016104821,-0.06135664,0.054400813,-0.002939357,-0.007124534,-0.017272778,-0.02512404,0.0052266046,-0.0050416784,-0.019764418,0.006469181,-0.003581733,-0.0017827556,-0.030574502,0.015988026,-0.024968311,-0.003403295,0.015520843,0.023436991,-0.03400051,-0.01855753,0.036076874,0.00092787645,0.013003248,-0.007027204,-0.022087352,-0.029588228,0.018635392,-0.008019967,0.024007993,0.027044678,-0.02535763,-0.0061285268,0.016117798,-0.018622415,0.037945606,-0.008746696,0.03389669,0.038646378,0.007111557,0.009213878,-0.011679564,0.014443727,-0.03265087,-0.026681315,0.011141006,-0.040255565,-0.014365864,0.002950712,-0.004035938,0.030470684,0.024708766,-0.011017722,-0.0013918147,0.02200949,-0.004224109,0.0023845776,-0.028368363,0.03327378,-0.012062394,-0.018817075,0.016416276,0.040489156,0.017104072,0.041553292,0.0034357384,0.003351386,0.0342341,-0.014365864,0.012854009,-0.0021006993,-0.017649118,0.0053239344,0.02014076,0.009908163,-0.04186475,0.009168457,-0.029692046,-0.02124383,-0.0021834297,-0.03882806,-0.010894437,0.040203653,0.0072088866,-0.009265787,0.02267133,0.021944603,0.024591971,-0.018142255,0.018375847,-0.01903769,-0.0034292496,-0.05058549,-0.020296486,-0.025591223,-0.00066468073,0.012854009,0.021036193,-0.0031891698,0.018479666,-0.036907423,0.022982785,0.0060149753,-0.009239833,0.015845275,-0.0066184197,0.007994013,-0.036128785,0.019998008,0.011244824,0.012815077,0.04510907,-0.005249315,0.011783382,0.019985031,-0.012983782,0.017662097,-0.020101827,0.03750438,0.0348051,0.04391516,-0.03304019,0.00017144221,0.00019405108,-0.01941403,-0.013924636,0.009577243,-0.014547545,0.013924636,-0.017934619,0.004237086,0.019725485,-0.0015142879,-0.0034260054,-0.005278514,0.027719498,-0.02699277,0.015248319,0.023333173,-0.0012417648,0.045316707,-0.04477166,-0.004717246,-0.021698033,0.00963564,-0.042980794,0.03807538,0.030263048,-0.009369605,0.027459953,-0.0013869482,-0.051961083,-0.03581733,0.029354637,0.03965861,-0.0021055657,-0.008844025,-0.0000075531902,0.008928378,-0.0042597963,0.0061155492,0.0037082615,0.00071253453,0.019985031,0.014378841,0.00089867756,-0.014184182,0.020309463,0.013522339,-0.0069493405,-0.024319448,-0.016351389,0.0017422016,0.026966816,-0.007896683,-0.025591223,-0.041812837,-0.010693289,0.007994013,-0.008603945,0.0036011988,-0.016377345,-0.021568261,0.0116146775,-0.036933377,0.038957834,-0.042539567,0.000722673,0.017246822,-0.008649366,-0.0764103,0.022969808,0.029718002,-0.044226617,-0.015884208,0.0077020237,0.0011290245,0.013911658,-0.017143004,-0.025720995,-0.005479662,-0.03605092,0.010849017,-0.031716503,0.013262793,-0.0071375114,0.021036193,0.008214626,0.036985286,-0.008668832,-0.025591223,0.014028454,-0.009187924,0.047107574,-0.012776145,0.026888952,-0.021659102,0.052324448,0.028472181,-0.009953584,0.015494888,0.025046175,-0.03628451,0.020244578,0.01663689,0.02823859,0.003987273,0.03599901,-0.010868483,-0.0048048426,0.027382089,0.000118012256,-0.012743702,-0.01576741,0.02464388,-0.01720789,-0.013457453,0.027408043,-0.022424763,0.047756437,-0.007922637,-0.025396563,-0.015624661,-0.02727827,0.06400401,0.039035697,-0.021088101,0.017298732,-0.013846772,-0.042980794,-0.004204643,0.0044804104,0.009161969,-0.0017000254,0.0037309718,-0.027018724,-0.04113802,-0.00577814,0.0050903433,-0.0047594225,0.013924636,0.016546048,0.007111557,-0.01088146,0.030081365,0.021062147,0.033637144,-0.005398554,-0.024111811,0.0060376856,-0.011166961,0.036128785,-0.041890703,-0.019738464,-0.0014096585,0.026421769,0.0133276805,0.0031242834,0.016987277,0.016896436,0.010265039,-0.045238845,-0.022827059,0.0065502888,0.0065989536,0.017026208,-0.006031197,0.0053823325,0.028783636,-0.0009124659,0.023722492,-0.00039357698,-0.0038769664,-0.009836788,-0.025539313,-0.029017227,0.007968058,0.028472181,0.027459953,0.01677964,-0.02699277,0.009382583,-0.02517595,0.019543804,0.023618674,0.013249816,0.026395814,0.022502627,0.010576494,-0.0014777893,-0.027356135,0.019790372,-0.0056353896,-0.00017539623,0.029043183,0.026162224,-0.010654357,0.03400051,0.020581987,-0.020192668,-0.008162717,-0.035635646,0.021023216,0.023372104,-0.019154485,-0.000190604,0.009479913,0.004785377,-0.020192668,0.043785386,0.018648371,-0.00056856766,0.010550539,-0.022606445,-0.025656108,-0.01822012,-0.009142503,0.005119542,-0.012270031,-0.019076621,0.020153737,-0.0040132278,-0.0054958835,-0.030963821,-0.04651062,0.0362326,0.0026165468,-0.024812585,0.0000776103,0.029147001,0.008908912,0.06462692,0.027200406,-0.0068584993,0.008746696,-0.04741903,-0.0060539073,-0.014456704,-0.020127783,0.008980287,-0.003413028,-0.034934875,0.025253812,-0.010784131,-0.025630154,0.0015532197,0.028134773,0.031716503,-0.0070401817,0.012691793,-0.026149245,0.006923386,-0.02219117,0.011082608,0.035505876,-0.00063061534,0.028679818,-0.0049735475,-0.035687555,-0.016182685,-0.0050416784,0.03978838,0.0036498636,0.020984283,-0.0021006993,0.012665838,-0.021451466,0.009681061,-0.026914906,-0.014080363,0.007111557,0.018609438,0.0077085122,-0.013691044,0.012600952,-0.0118288025,-0.028991273,0.026421769,-0.02176292,0.0038315458,0.0029572006,0.0025111062,-0.034882963,0.021905672,0.035350148,0.010466187,-0.044745706,-0.006572999,0.023475923,0.0037893697,0.0037536821,-0.011679564,-0.006793613,0.04684803,-0.025720995,0.045290753,0.017194914,-0.0077798874,-0.022995764,-0.0090711275,0.03322187,-0.015468934,0.0015491644,-0.0010763042,0.05580236,-0.020465191,0.0237744,0.02076367,0.034493644,0.0073711025,-0.002136387,0.0051844288,-0.019362122,-0.033715006,-0.019764418,-0.031379096,0.016818572,0.025253812,0.002016347,0.011017722,-0.00047123796,0.007987524,0.040592972,0.059851278,0.013236839,-0.05471227,-0.01711705,0.013898681,-0.006605442,0.0072737727,-0.0029961325,0.006251811,0.0033578747,-0.00867532,-0.0065146014,-0.011017722,-0.020127783,0.03527228,-0.0007636326,-0.035739467,-0.031353142,0.0076955347,0.009103571,0.0043668593,-0.017908664,0.011861246,-0.021023216,-0.0126853045,-0.010219619,-0.010557028,-0.014197159,-0.001917395,-0.05953982,-0.017130027,0.012620417,0.02272324,-0.0130746225,-0.012815077,0.014002499,-0.04837935,0.025474427,0.004898928,-0.01802546,-0.00048421524,0.00104305,-0.0020244578,-0.030185184,0.00963564,0.013872727,-0.028783636,-0.031612687,-0.015365115,0.01256202,0.01572848,0.0026846775,0.013794863,0.00704667,0.032858506,-0.002981533,-0.021010237,-0.027433997,-0.030314958,0.016546048,0.0045388085,-0.03283255,0.021075124,0.007468432,-0.038490653,-0.018323937,0.008091343,-0.027485907,0.015663592,0.00031632153,-0.0076306486,-0.007851263,0.0074814097,0.01903769,-0.018856008,0.016753685,-0.0070596477,-0.0071375114,-0.027304225,-0.00405216,0.0035363124,0.002087722,0.03470128,-0.0126853045,-0.016818572,-0.007066136,0.016325435,0.0067481925,-0.03283255,-0.030989775,0.0145735005,0.030470684,-0.028991273,0.013126532,-0.007825308,-0.031716503,-0.0054829065,0.07028502,-0.01083604,-0.029121045,0.045186933,-0.0036109318,-0.019790372,0.014807091,0.03015923,-0.010336414,-0.017480414,-0.005148741,-0.0001348422,0.0141452495,-0.02421563,-0.006813079,-0.010712756,0.004042427,0.013794863,0.035687555,-0.036829557,0.017052162,0.030237094,0.018401802,0.00024048546,-0.0041689556,-0.020971306,0.021581238,-0.005859248,-0.0026522344,0.032002006,0.034286007,0.011809337,-0.023229355,0.014742205,-0.033585235,0.002579237,0.0036595967,-0.005379088,-0.00006306153,-0.029069137,0.024007993,-0.01178987,0.009674572,0.0003246351,0.0061382595,0.0038380343,-0.02195758,0.0076306486,-0.010109311,-0.022217127,-0.02953632,0.0022402052,0.007883705,-0.018959826,-0.0020715005,-0.0038120798,0.013574249,0.024916403,0.026149245,0.004243575,-0.02085451,0.03558374,-0.009791368,-0.010453209,0.035220373,0.015442979,0.022853013,-0.009213878,0.0060052425,0.02286599,0.0046912916,-0.015923139,0.0118872,0.021010237,-0.00949289,0.047133528,-0.0016343278,-0.0018930626,0.013989522,0.008409286,0.0010973924,-0.020387327,-0.007929126,0.00877265,-0.021620171,0.023696538,0.044512115,-0.015105569,-0.014690296,0.016026957,0.010135266,-0.00031267165,0.022619423,-0.03039282,0.021983534,-0.001164712,0.0011371353,0.005726231,-0.013262793,-0.034934875,-0.005304469,0.0010909038,0.019777395,0.01184178,-0.036518104,-0.0035071135,0.019452963,0.0097264815,-0.023268286,-0.029354637,-0.017558279,0.006942852,0.01624757,0.0022093842,-0.006352385,-0.031041685,-0.0015913405,-0.039425015,-0.029224865,0.00023054972,-0.011037188,0.03747842,0.0021590972,0.0061447485,0.022411786,-0.003361119,0.029172955,-0.0018476421,0.038334925,0.018129278,0.0041786884,0.03496083,0.0101158,0.006264788,-0.0039905175,0.015131524,-0.04318843,-0.014262045,-0.00030253315,0.03010732,0.013626158,0.0065600215,-0.0031129282,0.0070207156,0.008415774,0.031145504,0.010174198,-0.027070634,-0.00939556,0.011504371,-0.014936864,-0.008967309,-0.007831796,0.013418521,0.037270784,-0.01822012,0.0069688065,-0.0175453,0.011835291,0.019998008,-0.007689046,-0.0015613306,-0.02852409,-0.031249322,0.018635392,0.0014242579,-0.017726982,-0.013197907,-0.014599455,0.005048167,-0.032858506,0.0010422389,-0.02722636,0.0011866112,0.0019936366,0.00036052542,0.0019644378,0.005216872,-0.006813079,-0.0021753188,-0.026214132,-0.024475174,0.0022061397,0.014794114,0.0004797543,-0.015559775,-0.013204396,-0.029432502,0.008156229,-0.0057359636,-0.00048745956,0.0008058088,0.010323437,-0.02852409,-0.0038996765,0.024514107,0.016649866,-0.0048891953,0.019024711,0.0132757705,-0.038179196,0.0068390337,-0.037192922,-0.018531574,-0.013457453,-0.0040975804,-0.029614182,0.018868985,-0.011484904,-0.017376596,-0.0031956586,0.022567512,0.026733223,-0.01624757,0.024410289,0.019686554,-0.019595712,0.033533327,-0.016649866,0.04176093,0.009694038,-0.018881962,0.015481911,-0.06768956,0.0006882021,0.031171458,0.037660103,-0.008960821,-0.002710632,0.0040262053,0.021918649,0.0059371116,-0.01779187,0.0043019727,0.021581238,0.008448218,-0.041734975,0.02498129,-0.02056901,0.014949841,0.010634892,0.004136512,-0.03111955,-0.04651062,-0.0029426012,0.01184178,-0.008292491,0.004980036,-0.0036076875,-0.0031048174,-0.0013536939,-0.008733719,0.0258897,-0.013678067,0.008422263,-0.007955081,-0.0022207394,-0.013366612,0.016429253,-0.00012602168,0.02464388,-0.0044512115,-0.0029361127,-0.012964316,-0.010654357,0.007377591,-0.019504871,0.006472425,0.0007064514,0.011089097,-0.035687555,0.03797156,-0.038464695,0.026149245,0.004717246,0.0028063396,0.006485402,-0.029069137,0.019777395,-0.05907264,0.026162224,0.009051662,0.028394317,0.009097083,0.00014234468,-0.006462692,-0.005726231,-0.015157479,0.03241728,0.004512854,-0.015663592,0.008720741,-0.0067092604,-0.03441578,0.02919891,0.035324194,-0.027823316,-0.04318843,-0.011037188,0.029640138,0.027408043,-0.02071176,0.052480172,-0.023852265,0.008370354,0.0025029953,-0.003159971,-0.0071310224,-0.028757682,0.0028760927,-0.005051411,-0.04544648,-0.01059596,0.016455207,0.012633394,0.023501879,0.026019473,0.026862998,-0.0077085122,0.00084027974,-0.0046880473,0.029069137,0.003292988,-0.01030397,0.021088101,-0.0015532197,0.0070012496,0.036310468,-0.0045323195,0.01246469,0.012581485,0.01030397,-0.025033198,0.0015816076,-0.0028679818,0.002739831,-0.0000877995,-0.027096588,-0.0058852024,0.012912407,-0.01969953,-0.009363117,-0.016429253,-0.016273526,-0.003503869,0.036518104,0.063692555,-0.015066638,0.019024711,-0.009343651,-0.0015207765,-0.017311709,-0.025396563,0.008467684,0.027304225,0.02795309,0.026811088,-0.016403299,0.008435241,0.010466187,-0.00016860342,-0.020244578,0.054348905,-0.0007413279,-0.018998757,0.044122797,0.0029150245,-0.04199452,0.019725485,0.04152734,0.03311805,0.023281263,0.020724738,0.022956831,-0.046484664,-0.0037179946,-0.015676571,-0.042695295,-0.012834543,-0.034986783,0.0452648,-0.01711705,0.009895186,-0.040541064,0.0076630916,-0.024877472,-0.013081112,0.0057456964,0.027875226]},{"id":"interface-ReactionCollectorOptions","type":"interface","source":"main","text":"Interface: ReactionCollectorOptions\nProperties: filter: (reaction: MessageReaction, user: User) => boolean, max: number, time: number","meta":{"url":"/docs/typedefs/ReactionCollectorOptions"},"embedding":[-0.00019405886,-0.0003368845,-0.0133030685,0.034100823,-0.042371746,0.008197313,-0.018348599,-0.003667043,-0.0136242695,0.018455666,0.031852417,-0.07682054,0.006092779,0.044218652,0.030085813,0.00093265355,0.011683681,0.027087938,0.007554912,0.07409033,-0.018295065,-0.0057414654,0.056745484,-0.0036971557,-0.026137719,-0.022751728,0.026137719,0.067666315,-0.025133967,-0.025682686,0.019606635,-0.025803136,-0.008551973,0.042612646,-0.029122211,-0.023889314,0.01628756,0.004235836,-0.036081564,0.030487314,-0.052569874,-0.030005513,-0.013657728,0.040605143,-0.047136225,0.01903115,-0.0048347423,-0.006721797,-0.0027703573,0.0071935607,-0.036054797,-0.005048876,-0.020663923,0.049518466,0.03300339,-0.058886822,-0.035733595,0.019459419,-0.0032120086,0.0064106337,-0.0063437168,-0.024290815,0.014039154,-0.004727675,-0.014159604,-0.0054202643,-0.031477682,0.04381715,0.02046317,0.034930594,0.010392186,-0.041408144,-0.009876926,0.008150471,0.018402133,0.03142415,0.015738841,-0.061188765,0.00031283626,-0.03715223,-0.011824206,0.015471174,-0.05572835,-0.029095445,-0.0057146987,-0.037553735,-0.0071199522,-0.0128480345,-0.025120584,-0.028693942,-0.034529094,0.019713702,-0.068736985,0.0043863994,0.014721706,-0.0634907,0.010907446,0.0009100691,-0.020382872,0.06525731,0.02117249,-0.08501116,-0.0034495634,-0.0028540033,0.009408508,0.022256542,-0.019686935,0.011094813,-0.030299947,0.006484242,0.01386517,-0.022885561,-0.02823891,-0.0036770806,-0.008371297,-0.03297662,-0.015939593,0.020208888,-0.020423021,-0.014454039,-0.031504452,-0.044031285,0.033699322,-0.007320703,-0.013651037,-0.022296693,0.00012745569,-0.04234498,-0.021948725,0.030246414,0.01505629,-0.0012806212,0.0028339284,-0.018187998,0.018937467,-0.019205134,0.02880101,-0.0041454984,-0.0076485956,0.0022366955,0.012787809,0.033271056,-0.0038677936,0.026003886,-0.017906947,0.019191751,-0.05401528,0.020918205,0.032521587,-0.0036737348,-0.038544104,0.007447845,-0.025642535,0.031798884,0.019325584,-0.009053849,0.034502324,0.037955236,-0.015725458,-0.04635999,0.04178288,-0.027516207,-0.043442417,-0.037473433,-0.029095445,0.011804132,-0.0005654473,0.0046105706,-0.042398512,0.088169634,0.056424282,-0.0109007545,-0.029416645,-0.024210515,-0.022136092,-0.00037327054,-0.037874933,0.0022132746,-0.017505446,0.027087938,0.053881444,-0.003881177,-0.042478815,-0.06868345,0.007186869,-0.012787809,-0.042264678,-0.012573675,0.02880101,-0.05546068,0.0074143866,0.04456662,-0.00889994,0.008130397,0.008284305,-0.04258588,0.032039784,-0.013517203,-0.02896161,-0.055353615,-0.0032722338,0.0034462176,0.055193014,-0.013630961,-0.012807884,0.00989031,-0.0026632904,-0.012038341,0.028158609,-0.019887686,0.04341565,0.017987248,-0.004158882,-0.000213402,-0.03867794,0.0033642445,-0.020904822,-0.025334718,-0.022751728,0.0095691085,-0.04676149,0.017973864,0.09089984,-0.03865117,-0.005892028,0.027864175,0.036697198,0.0062634167,-0.028479809,0.016863044,-0.051633038,-0.025589002,-0.024759233,-0.06830872,0.028479809,-0.017960481,0.012700818,0.010753537,0.025910202,-0.067184515,-0.027542973,-0.02947018,0.009361667,0.054095577,-0.020101821,0.015698692,-0.0016620471,0.011134963,-0.029737845,0.01966017,-0.0026967488,0.030808516,0.03337812,-0.05326581,0.022350226,-0.039293572,-0.019272052,0.019887686,-0.0017105618,-0.004473391,0.025508702,-0.03353872,-0.0064675133,-0.011616765,-0.022457292,-0.014467422,0.040738974,-0.008056788,-0.006146312,-0.00212461,0.0185092,-0.0033458422,0.038303204,-0.0037607267,-0.031317085,0.045690823,0.0623665,0.008464981,-0.03715223,0.023139846,-0.028774243,0.0017615859,0.040846042,0.012406383,-0.013918703,-0.008665731,0.042478815,-0.015190124,0.0628483,0.020730838,0.010479178,-0.019405885,0.04716299,-0.016354477,-0.018857166,-0.0024023147,0.016729211,-0.037286066,0.035225026,-0.022885561,0.010064294,-0.0248663,0.030915583,-0.052328974,0.036536597,0.031772118,0.05867269,-0.0015892751,0.026338471,-0.004831396,0.0037205766,-0.048554864,-0.019419268,-0.035091195,-0.02645892,-0.009368358,0.040150106,0.030835282,-0.00623665,0.007186869,0.037071932,-0.028988378,0.017237779,-0.008592123,-0.004429895,-0.055942483,0.042933848,-0.047055926,0.06407957,0.04242528,-0.0022216393,-0.03388669,-0.040203642,0.021466924,0.042960614,-0.018402133,-0.0033575527,-0.017505446,-0.02617787,0.062741235,0.026646288,-0.035840664,-0.046252925,0.0007461228,0.0086456565,0.004222453,0.012627209,-0.00032851988,0.021386623,-0.0192319,-0.028426277,0.04274648,-0.060867563,-0.029818146,0.04338888,-0.027998008,0.021587374,-0.042800013,-0.048635162,0.019807385,0.0029593974,0.035626527,0.01879025,-0.025856668,0.029978747,0.0063972506,-0.10294487,-0.04470045,0.03650983,-0.029443411,0.011449472,-0.007956413,-0.0006177261,0.0035566303,-0.0048113214,0.0042960616,-0.005577519,-0.018870551,0.035385627,0.001536578,0.023327213,0.01473509,-0.02947018,-0.024705699,-0.0009033774,-0.016033277,-0.02649907,0.01120188,-0.051873937,0.021386623,0.06825518,-0.034181125,-0.03832997,-0.016983496,0.060599893,0.024973366,0.009856851,0.08410109,0.03832997,0.035733595,0.0057080067,-0.0061898082,-0.00298951,0.047296826,-0.017438529,0.008986932,-0.02034272,0.03353872,0.04818013,-0.026512453,0.05556775,-0.0018117736,0.025254417,0.02355473,0.021199256,-0.03873147,-0.027302073,0.033351354,0.006149658,-0.007929646,-0.014842156,-0.0011074737,-0.0060091326,-0.02995198,-0.0028757514,0.010981054,0.05024117,0.0013308087,-0.020128587,-0.02200226,-0.052784007,0.02232346,0.040712208,0.011690373,-0.004393091,-0.031557985,0.055032413,0.002693403,-0.018174615,0.033833157,0.0058217654,0.018776868,0.044941355,0.026365237,-0.049357865,0.006069358,0.0025344754,-0.030942349,0.015859293,-0.03535886,-0.06648858,0.010358728,-0.019365735,0.013945471,-0.04092634,-0.050589133,0.0034428716,0.04445955,0.00989031,0.0028322556,0.01505629,0.014587873,0.03027318,0.040846042,0.013396752,0.012172174,-0.020811139,0.0043328656,0.017532213,0.033833157,-0.030567614,-0.037232533,0.001549125,0.012941718,0.009368358,-0.0489296,0.05398851,0.012660667,0.0073876195,-0.005918795,0.034475558,0.03841027,0.0059857117,-0.017652664,0.019057918,0.08602829,0.023809014,-0.031879187,-0.057869688,0.019486185,0.028265676,0.016648911,-0.024625398,-0.016019892,0.021814892,-0.005048876,-0.006664918,-0.0070731104,0.004921734,-0.022510827,0.02466555,-0.023153229,-0.01505629,0.0051592886,0.026084187,0.03126355,-0.004148844,0.004178957,-0.03503766,0.042157613,-0.015658543,0.019365735,-0.03233422,-0.024223898,-0.033351354,-0.005199439,-0.014146221,-0.006239996,-0.0026147757,0.023407513,0.048046295,-0.021105573,-0.005825111,0.02260451,-0.0046373373,0.010044218,-0.010519328,-0.034475558,-0.0248663,0.007019577,-0.004182303,-0.025682686,-0.016474927,0.021721208,-0.028988378,-0.020570239,-0.03618863,0.015538092,0.005831803,-0.03948094,0.0033257671,-0.025334718,0.016381243,-0.03364579,-0.015832525,0.033940222,0.026405387,0.036456298,-0.011148347,0.002480942,-0.011790748,0.0010347017,0.03011258,-0.028934844,0.0119111985,0.014400505,0.00068882527,0.020583622,-0.0065678884,-0.029577246,-0.001262219,-0.023380745,0.021828275,-0.01628756,-0.035492696,0.008966858,0.019834153,0.022269925,-0.024438031,0.024183748,-0.013055476,-0.008960166,-0.037366368,-0.007019577,0.025736218,-0.00186698,-0.032120086,-0.0018101006,-0.0017247817,-0.02872071,0.0016904868,0.002951033,0.027998008,0.025441784,-0.006681647,-0.029496945,-0.00075030513,0.045155488,-0.032949854,0.013122394,0.022577744,-0.0012898222,0.0501341,0.033217523,-0.039802138,-0.0043997825,0.0078560375,0.0374199,-0.0074143866,0.00030781748,0.047644794,0.007601754,-0.030540848,-0.0185092,0.035894196,0.05958276,0.018335216,-0.011656915,-0.043576248,0.026686437,-0.02823891,-0.0066046924,-0.037553735,-0.027235156,-0.028319208,0.0061396207,-0.0033190756,-0.02137324,0.007715512,0.0000680147,-0.0628483,0.033779625,-0.02728869,0.008157164,-0.0137714865,0.014427272,-0.029443411,-0.03222715,0.04012334,0.010720079,-0.0068857432,0.026632905,-0.020931588,-0.015939593,0.02375548,-0.039989505,0.012761042,0.045664053,-0.022885561,0.010238278,0.047216527,-0.014547722,0.04103341,-0.034261424,0.0004251311,0.044914585,-0.015283807,-0.01501614,-0.028747477,0.014815389,-0.040498074,-0.016006509,-0.01366442,-0.01943265,-0.024317581,0.010853913,0.022350226,0.018080931,0.0061663873,-0.018094314,0.030969115,0.009917077,0.01318931,-0.0025127276,-0.022858795,0.022149475,0.00048180128,-0.021747975,-0.021386623,0.02129294,0.012493375,0.041756112,-0.009649409,0.012667359,0.01933897,-0.041488443,0.015886059,-0.015952976,-0.032200385,0.010004069,0.011329022,0.015564858,-0.051392138,-0.0055875564,-0.009388434,-0.025963737,0.005554098,-0.008839715,-0.030540848,0.023327213,0.0003038443,-0.0011651895,0.020690689,0.0026482341,0.040257175,-0.0008326965,0.017773114,0.0036168555,-0.00324714,-0.023380745,-0.015591625,0.0030146039,-0.013035402,0.0025947008,0.017840032,-0.0033441694,0.023621647,-0.0020275805,0.056584883,0.00091090554,-0.02240376,0.028345976,-0.015698692,-0.0058016903,-0.019874303,0.026954105,0.03634923,0.0063437168,0.03921327,0.01739838,0.0088798655,0.023380745,-0.042559113,0.040712208,-0.026967488,0.037794635,0.011589997,0.051633038,-0.030487314,0.029015144,0.014815389,-0.018977618,-0.00568124,0.025013518,-0.0058886823,0.02177474,0.018442282,-0.0068188263,0.03134385,0.0021313014,-0.008511823,0.024906449,0.023420896,0.002924266,-0.02268481,-0.016060043,-0.01370457,0.026003886,-0.03586743,-0.0033140567,-0.03174535,0.0105059445,-0.017023645,0.043308582,0.010077677,-0.034823526,0.006939277,-0.022417143,-0.051820405,-0.021346474,0.028372742,0.04004304,-0.01862965,-0.024223898,0.015350725,0.039106205,-0.014360355,0.007722204,0.016916579,-0.011603381,0.029148977,0.006490934,0.005256318,-0.03222715,0.030219648,-0.0054169185,-0.008491748,-0.025829902,-0.024518332,0.002460867,0.02343428,-0.013758103,-0.040846042,-0.03905267,-0.018723333,-0.009709634,-0.0067552556,-0.011355788,0.025856668,-0.0073943115,0.0058652614,-0.026539221,0.010144594,-0.052569874,0.010479178,0.04660089,-0.025589002,-0.06370483,0.04520902,0.032120086,-0.010653161,-0.026338471,0.008264231,0.014266672,0.018522583,-0.04906343,-0.019914454,-0.007380928,-0.015390875,0.0038544103,-0.03182565,0.028319208,0.0071801776,0.016180493,0.019419268,0.04480752,0.0014035808,-0.03554623,0.012814576,-0.03776787,0.052971374,-0.022042409,0.031129716,-0.011422706,0.046493825,0.01283465,-0.008317764,0.013423519,0.015819142,-0.00064700225,0.037741102,0.023353979,0.02856011,0.0106665455,0.012426458,-0.028185375,0.0059455615,0.016528461,-0.016903196,0.00055331865,0.0060760495,0.017572364,-0.020985123,-0.0013341546,0.022470677,-0.010512636,0.033030156,-0.013296377,0.0016377898,0.0012061761,-0.019633403,0.024250664,0.05168657,-0.016193876,0.022992628,-0.025682686,-0.04218438,-0.0019556447,0.041247543,0.046413522,-0.026405387,0.008237463,-0.025160734,-0.047403894,-0.010459103,0.019071301,-0.021921959,-0.0020376178,-0.0049485005,0.012874801,0.01707718,0.033940222,0.010519328,0.030219648,-0.014440655,-0.018482432,-0.0060091326,-0.0050388384,0.0136242695,-0.038035534,-0.042023778,0.00534331,0.038704704,-0.013329836,0.00030363517,0.028158609,-0.018161232,0.030353481,-0.045262553,-0.010244969,0.0124532245,-0.0024508294,0.014721706,-0.020516705,0.020623771,0.016501695,-0.005500565,0.009395125,0.008759415,0.0034495634,-0.02264466,-0.016006509,-0.032200385,0.011395939,0.028747477,0.039507706,0.027034406,-0.026954105,-0.009977302,-0.023046162,0.039293572,0.03519826,0.02617787,0.035385627,0.030942349,0.006761947,0.01132233,-0.0045871497,-0.006765293,-0.010499253,-0.012720892,0.0048247045,0.020597005,-0.004664104,-0.009020391,0.020878056,-0.010418952,-0.009575801,-0.04400452,0.026472304,0.00508568,0.00534331,-0.0015942939,0.024491565,-0.015952976,-0.036884565,0.0256693,0.031076184,0.0249466,0.019646786,-0.0057213902,-0.025401635,0.009047157,-0.012399691,-0.00504553,-0.017692814,-0.01986092,0.028667176,-0.03388669,0.018268298,0.022510827,-0.041916713,0.038356736,-0.0039045978,-0.031129716,-0.0041187317,0.0372593,0.011670298,0.060974628,0.01982077,-0.018361982,-0.00091341493,-0.055514216,-0.009903693,-0.0075749867,0.0043763616,0.01584591,-0.017344845,-0.032200385,0.0059924033,-0.022457292,-0.010057602,0.02355473,0.017840032,0.028292442,0.013450285,0.002398969,-0.010994438,0.021895193,-0.021025272,0.0072270194,0.03889207,-0.0023805667,0.012332775,0.011168421,-0.037607267,-0.01350382,0.005918795,0.030808516,0.02740914,0.009823393,-0.009622643,0.03634923,-0.0056511275,0.014614639,-0.017492063,-0.014775239,0.029978747,-0.0154845575,0.015725458,-0.014213138,0.008311072,-0.014855539,-0.0068355557,0.0037941851,-0.021921959,0.025856668,-0.021199256,0.026271554,-0.028479809,0.0042793322,0.027783874,0.0014654789,-0.031905953,-0.008545281,-0.015511325,0.042452045,0.017585747,-0.012245783,-0.0036804264,0.036402762,-0.02415698,0.018254915,0.036054797,-0.00080007454,-0.030085813,0.016849661,0.03932034,-0.013557353,0.00889994,-0.015712075,0.05647782,-0.017585747,0.027569741,0.02813184,0.041649044,-0.0039982814,0.013068859,-0.0069593517,-0.04510195,-0.022109326,-0.030728215,-0.014467422,0.0076619787,0.01120188,0.0068020974,-0.009435276,0.0047812085,0.009468733,0.0066013467,0.057227287,0.01195804,-0.04702916,-0.020155353,-0.00043412304,-0.015123207,0.015645158,-0.011543156,0.015083057,0.014909073,-0.0030932312,0.013216077,0.012928334,-0.017251162,0.009441967,0.010365419,-0.029229278,-0.0061563496,0.031236783,0.013543969,0.017826648,-0.057976756,0.013396752,-0.025856668,-0.020128587,-0.027757108,-0.017157478,-0.024250664,-0.0046674497,-0.047323592,-0.027516207,-0.003079848,-0.0070061935,0.010084368,-0.013932087,0.013042093,-0.016983496,0.0184289,0.04210408,-0.01318931,0.0135506615,-0.0006327824,0.007300628,-0.04207731,-0.011998191,0.011817515,0.010780304,-0.03297662,0.009810009,-0.0011308946,-0.0014964279,0.020704072,-0.0076887454,0.017759731,0.036777496,0.0020409639,-0.027061172,-0.023099694,-0.023206761,0.02022227,-0.0136242695,-0.021828275,0.0036001264,0.010305194,-0.010860604,-0.020637155,0.027087938,-0.0034428716,0.014654789,-0.017960481,0.0102717355,-0.01862965,0.012627209,0.022109326,0.004453316,-0.0007624338,0.031477682,-0.014641406,-0.01227255,0.006865668,-0.006470859,0.00023588187,0.01513659,-0.008986932,0.00945535,-0.0011434415,0.012801193,-0.004239182,0.0022450602,-0.02888131,0.021065423,0.023982998,-0.015685309,-0.0011434415,0.020998506,-0.025696069,-0.012680742,0.06440077,-0.012212324,-0.03626893,0.03792847,-0.011188497,-0.018268298,0.0037607267,0.042023778,0.002332052,-0.014159604,-0.01624741,-0.01493584,-0.002480942,-0.012700818,-0.022310076,0.02034272,-0.0067686387,-0.0024056607,0.040765744,-0.016662294,0.0030547539,0.028158609,0.02300601,0.025762985,-0.014802006,-0.010853913,0.016314328,-0.0031384001,0.00703296,0.026913956,0.017411763,0.012279241,-0.00073273946,0.0021547223,-0.032628655,-0.009221141,0.007153411,0.025803136,0.007086494,-0.03586743,-0.012212324,-0.018736716,-0.023086311,0.0050622593,0.013129085,0.015457791,-0.042157613,0.012627209,0.0030547539,-0.019633403,-0.02022227,-0.010994438,0.017224396,-0.022885561,0.007682054,-0.007213636,0.021507073,0.004460008,0.020637155,0.014320205,-0.042130847,0.045396388,-0.009120766,0.013617578,0.046333224,-0.0058418405,0.018455666,-0.0025328025,-0.008652348,0.026927339,0.027542973,-0.03289632,0.015163357,0.008966858,0.011228646,0.042478815,-0.0016486638,-0.016394626,0.008598815,-0.001972374,0.021747975,-0.0014612966,-0.0109007545,0.002564588,-0.01382502,0.032708954,0.028105075,0.004195686,-0.03439526,0.017037028,-0.0024240627,-0.01183759,0.02896161,-0.015631774,0.0015993126,-0.020931588,0.008545281,0.011416013,-0.02272496,-0.027462672,-0.0032621962,0.0032387753,0.019098068,-0.013042093,-0.037286066,0.00027686844,0.007715512,-0.0025394943,-0.000046162168,-0.034769993,-0.0069928104,0.0011225301,0.014293438,-0.018295065,-0.042211145,-0.010659853,0.010111135,-0.009917077,-0.014146221,-0.0072069443,-0.011047971,0.021654291,-0.006554505,-0.0049083508,0.01175729,-0.0030898852,0.033297822,0.0051224846,0.01001076,0.029095445,0.031638283,0.017960481,0.022256542,-0.012158791,0.00280047,0.021761358,-0.037874933,-0.022711577,0.0032371024,0.024250664,0.0068857432,-0.0020944972,0.015364108,-0.013236152,0.0073943115,0.01013121,-0.0015215217,-0.014106071,-0.016796129,0.028319208,-0.033271056,-0.018295065,-0.0021145723,-0.012941718,0.03841027,-0.029818146,0.005286431,-0.0058016903,-0.01473509,0.010981054,0.015243657,0.0023069582,-0.020570239,-0.011476239,0.03126355,-0.012874801,-0.015738841,-0.013958854,-0.018254915,0.03964154,-0.007936338,0.0070731104,-0.017170863,-0.023688564,0.034020524,0.016675677,0.0061764247,0.020610388,-0.0048247045,0.013731336,-0.03353872,-0.013236152,0.013530586,0.038115837,0.003988244,-0.021881808,-0.02240376,-0.02904191,0.028453043,0.007334086,-0.0073073194,0.0020024865,0.014855539,-0.021681057,0.030540848,0.009662792,0.019325584,-0.0051157926,0.013256227,-0.0015775646,-0.032762486,0.017706197,-0.054443546,-0.026432155,-0.023742096,-0.019312201,-0.04756449,0.033672556,0.008458289,-0.01473509,0.002230004,0.025602385,0.0153373405,-0.012071799,0.026244787,0.017251162,-0.023153229,0.03881177,-0.038918838,0.027676808,0.00929475,-0.025441784,0.0054269563,-0.061188765,-0.003354207,0.015618391,0.005032147,-0.0028289095,-0.004091965,-0.008404756,0.0052830847,0.020623771,-0.019312201,0.006785368,0.032039784,0.007380928,-0.065096706,0.016515078,-0.026137719,0.0091140745,-0.015163357,0.008230772,-0.045664053,-0.041916713,0.035064425,0.012038341,-0.009843468,-0.004563729,0.004483429,0.012894876,-0.014654789,0.0053065056,0.030139348,-0.01195804,0.0011969751,-0.00044834285,-0.006387213,-0.021011889,0.020610388,0.004215761,-0.0024792692,-0.017425146,-0.0067385263,-0.006280146,0.008960166,-0.0068857432,0.018361982,-0.006363792,0.0062433416,0.009408508,-0.017973864,0.023902697,-0.055246547,0.021480307,0.018375365,-0.006403942,0.021988876,-0.047136225,0.006089433,-0.060171627,0.0070128855,0.036429532,0.018535966,0.0051258304,-0.0022801915,0.014266672,0.0007206108,-0.03233422,0.015738841,0.016193876,-0.026351854,0.019794002,-0.00028711508,-0.010385495,0.01747868,0.032200385,-0.017933715,-0.042291448,-0.022939095,0.022363609,0.031317085,0.0017113984,0.027944475,-0.0382229,0.0033977027,0.024839533,-0.028453043,0.011335714,-0.010077677,0.026780121,-0.021520458,-0.00814378,-0.021908576,-0.01132233,-0.007079802,0.023099694,-0.0015616718,0.036643665,-0.024919834,0.001536578,0.0008096938,0.029523712,-0.0039547854,-0.012178866,0.021199256,-0.009589184,0.02240376,0.027569741,0.03543916,-0.004011665,0.033859923,-0.012085183,-0.013236152,0.0007084821,0.010492561,0.0011576614,0.005032147,-0.025535468,-0.01879025,0.005644436,-0.015605008,-0.012981868,-0.020797756,-0.003797531,-0.008853098,0.033271056,0.050027035,-0.0135506615,0.039159738,0.008873174,-0.0038142602,0.023394128,-0.010532712,-0.01191789,0.015671926,0.02947018,0.03011258,-0.0059890575,-0.0069058184,0.043442417,0.0084850555,-0.026325086,0.039802138,-0.0019205135,-0.00332744,0.03479676,0.0087192645,-0.0379017,0.016849661,0.013436902,0.02177474,0.0116769895,0.004647375,-0.011436089,-0.025294567,0.014454039,-0.013891937,-0.008652348,-0.012091874,-0.034930594,0.040337473,-0.008391372,-0.0046273,-0.010927521,0.018535966,-0.016100192,-0.009073924,0.016702445,0.025575617]},{"id":"interface-ReadonlyCollection","type":"interface","source":"main","text":"Interface: ReadonlyCollection\nDescription: Read-only view of a Collection (e.g. for method return types).","meta":{"url":"/docs/typedefs/ReadonlyCollection"},"embedding":[0.010734521,-0.009993202,-0.010302572,0.0017205003,0.011866928,-0.0007402237,-0.01804847,-0.019099157,-0.020873653,0.0043837004,-0.008078617,-0.052067388,0.039902765,0.03492951,0.03801153,0.00036682846,0.043101523,-0.0053818533,0.015760308,0.09544909,-0.028672086,-0.0036102778,0.019857988,0.013145264,-0.01487306,-0.030539975,-0.050292894,-0.016250629,0.01891237,-0.01128905,0.07728388,-0.02860204,0.012024531,0.056923896,0.01386907,0.012141274,0.058838483,0.007144673,-0.00594222,0.04100015,-0.019075809,0.010699498,0.010641126,-0.007383996,0.016495788,0.043568496,0.08223378,-0.018620512,0.0021699609,0.0038262524,-0.024726171,-0.0013790269,-0.015643565,0.0022137396,0.017172897,-0.035022907,-0.039272353,0.0292558,-0.00415897,0.004640535,-0.018795626,-0.0028645818,-0.029722773,0.017418059,-0.01905246,0.009397813,-0.030353185,0.08059938,-0.0054956777,0.0048448355,0.0002612125,-0.0061990544,-0.039225653,0.015106547,0.034392495,0.0022151987,0.020091474,0.017056156,0.0225781,0.0076641794,0.019764593,0.034462538,0.006158194,-0.037381116,0.020803606,-0.015923748,0.012701641,0.017943403,-0.003038237,-0.00315498,-0.0484717,0.025029704,-0.038501848,-0.03607359,-0.008685681,0.015164918,-0.032664698,0.01848042,-0.02743461,0.045202896,0.051273536,-0.012736663,0.015258312,-0.029045664,0.025356583,0.023290232,-0.02284661,-0.022543076,-0.05365509,0.0121296,-0.06509591,-0.041887395,0.037404463,-0.00030316703,0.012047879,-0.011049727,-0.020149846,0.00956709,-0.032080982,-0.027457958,-0.00895419,0.007775085,0.01514157,0.016600857,-0.016951086,-0.016507464,0.038058225,-0.042844687,-0.027107729,-0.05047968,0.07401507,-0.034299098,-0.036727354,-0.02442264,0.0142193,-0.0046901507,0.018246934,0.01413758,-0.018865671,-0.035326436,0.02274154,0.0008996509,0.048798583,0.04732762,0.023430323,0.058418207,-0.037707996,0.020885326,0.049265552,0.05384188,0.022940002,0.040556524,0.0047222553,0.022636471,-0.032524604,-0.0071796956,-0.010349269,0.022286242,0.016192257,-0.0057174894,0.032337815,-0.03028314,-0.030820157,0.016892714,-0.05286124,-0.031147037,-0.0108454265,0.0005691222,-0.028345205,0.0102442,0.0012527985,0.035559922,-0.034042265,-0.0067185606,-0.024329245,0.011043889,0.009748043,-0.023278559,0.00086025015,0.03826836,0.008411335,0.02909236,-0.007734225,-0.0309369,0.0401129,0.009561254,-0.018959066,-0.06005261,-0.00991732,-0.062107287,-0.035186347,0.07611645,-0.031520616,0.045226246,-0.022391312,-0.048191518,0.008539752,-0.015024827,0.01362391,-0.06883168,-0.015398405,0.046580464,0.026337225,-0.033201713,0.043801982,0.034485888,0.019367667,-0.005463573,-0.023512045,-0.04447909,0.016017143,0.04111689,-0.020395005,-0.009637136,0.03600355,0.007856805,0.04795803,0.00895419,0.013834048,0.043381706,0.01975292,0.005527782,0.07938525,0.0146279,0.046066795,0.015877051,-0.0071621845,-0.01972957,0.0023436162,-0.021457367,-0.02333693,0.025216492,-0.011224842,0.0058634183,0.02165583,0.01124819,-0.032384515,0.0056678737,-0.016881041,-0.061126646,-0.0004892262,-0.01598212,-0.013437121,0.027971627,0.017838333,-0.013962465,0.01706783,-0.019344319,-0.032851487,0.021130487,0.036750704,0.02577686,0.012514852,-0.031917542,-0.02659406,0.023722181,0.0015030664,0.047467712,0.022531403,0.0318008,-0.02390897,-0.06841141,0.013997488,-0.017429734,-0.044432394,-0.010028225,0.052207477,-0.028228462,0.04149047,0.052814543,0.028672086,0.057110686,0.050573077,0.014522832,-0.046417024,-0.016682578,0.010226688,-0.028065022,-0.03780139,0.006152357,-0.021469042,0.0025158122,-0.003540232,0.05267445,0.018970741,0.0007836375,-0.023535393,0.0031841658,0.025683464,0.034509238,-0.00903591,-0.028998965,0.058231417,-0.00026321903,-0.023512045,0.023570416,0.041093543,-0.013413773,0.10067918,0.003747451,0.005857581,0.010956332,0.042541157,-0.024165805,0.019332644,-0.02960603,0.011464165,-0.018982414,-0.012141274,-0.00928107,-0.02141067,0.006911187,-0.087183684,-0.014686272,-0.029115709,0.0083588,0.020009754,-0.016834343,0.059445545,0.031824145,0.004949904,-0.009993202,0.02979282,0.0029346277,-0.006765258,0.0070571154,-0.0060414514,-0.004021797,0.03731107,-0.018422049,-0.0045588147,-0.04146712,-0.016075514,-0.008790749,0.031123688,-0.06869159,-0.022216197,0.01487306,0.010512709,-0.010559406,0.0011893195,0.014009163,-0.021282252,0.03399557,0.00395467,-0.036330428,-0.06476903,0.057764445,0.011761859,-0.012187971,0.002083863,-0.008230383,-0.031076992,-0.033061624,-0.03497621,0.012806709,0.005775861,-0.024189154,-0.016238954,0.024726171,-0.017009458,-0.00084565725,0.0021130487,0.0063741687,0.0032542117,0.0100398995,-0.034649327,-0.0013950791,0.011230678,-0.03061002,0.039365746,0.045553125,-0.00004304899,-0.037614603,0.022811586,-0.034812767,-0.0021787167,-0.018538792,0.030353185,-0.016974434,-0.044082165,0.016682578,-0.003149143,0.022111127,0.058138024,0.031310476,-0.018176887,0.00919935,-0.06140683,0.011522536,0.0148847345,0.013880745,-0.014417763,0.00710965,0.008399661,-0.017184572,-0.029185755,0.037264373,0.040229645,0.011131447,0.010728683,-0.022834934,0.027224472,0.013226984,0.026033694,0.00012084727,0.02458608,0.026710803,0.07172691,-0.054122064,0.0014184277,0.022869958,0.04263455,0.032080982,0.023628786,-0.016414069,0.009140979,-0.0087849125,0.020791931,-0.013810699,-0.0009850193,-0.009164327,-0.056130044,-0.016857691,0.032664698,0.028041674,0.043638542,-0.013530516,-0.0501528,-0.05099335,-0.01016248,0.037591252,0.01899409,-0.0034468377,0.02643062,0.02306842,0.046090145,0.003890461,-0.01048936,0.0033446874,0.029582681,-0.03327176,-0.050713167,0.022951677,-0.0334352,-0.024842914,-0.011055564,-0.023780553,-0.018538792,-0.009771391,-0.025543373,0.07069957,0.021539086,0.035770062,-0.018270282,-0.02241466,-0.024516035,-0.006339146,-0.005154204,-0.0032688046,0.014336043,0.019110832,0.0067185606,0.021375647,0.03677405,0.008119477,0.018760603,-0.0057350006,0.024469336,-0.04751441,-0.0013323297,0.0048973695,0.039715976,0.026687454,-0.006776932,-0.0033913846,0.01956613,-0.062294073,-0.02759805,-0.025846904,0.032291118,-0.01774494,-0.025169795,-0.03110034,0.056970593,0.12514852,0.03079681,0.0153867295,0.023021724,0.010308408,-0.001825569,-0.002966732,-0.0100398995,-0.010425151,0.03110034,-0.012526526,-0.032221075,-0.04132703,-0.019145856,-0.01132991,0.016577508,0.0028631226,0.011090587,0.0011389741,0.024119107,-0.0075065764,-0.02276489,0.02526319,0.022519728,-0.021795921,-0.002880634,0.05818472,-0.017277967,-0.059538938,-0.019706221,-0.011499187,-0.016262302,-0.014791341,-0.011843579,0.0024457662,0.041443773,-0.0030820158,-0.0028645818,-0.025566721,-0.011662628,-0.010179991,-0.010034063,-0.0037737181,-0.0047339294,0.01020334,-0.044525787,-0.0077225505,-0.010576918,0.03544318,0.006800281,-0.057811145,0.007874317,-0.020698538,-0.018935718,-0.03546653,-0.0041823187,-0.012339737,-0.0035664993,0.0067185606,-0.011726837,0.01872558,-0.00048448352,-0.019928033,0.001237476,0.061967194,-0.02692094,-0.03224442,0.011189818,-0.039202306,0.025683464,0.022391312,0.014697946,-0.003478942,0.03061002,-0.018982414,-0.0342524,0.005828395,0.0153867295,-0.024025714,-0.010460175,0.022636471,-0.021702528,-0.042167578,-0.0068878382,-0.018585488,-0.040579874,0.008160337,-0.020698538,0.072660856,0.027154427,-0.0135772135,0.008767401,-0.013740653,0.009170164,0.041560516,0.008119477,-0.023301907,0.017219596,0.023979016,-0.04193409,0.02825181,0.046697207,0.00017082787,0.018141866,-0.0039284024,-0.0029477612,0.008936678,-0.017896704,0.038058225,-0.018585488,-0.018106842,0.0133670755,0.02331358,-0.01728964,-0.00086900586,0.0076408307,0.05584986,-0.00022819612,0.008726541,0.00035333005,0.0242592,0.016028816,-0.013518842,-0.011650953,0.005460655,-0.010466011,0.029699424,0.019157529,-0.02993291,-0.031870846,-0.006928698,-0.024726171,-0.0065959804,-0.018690558,-0.012421457,-0.005994754,-0.03791813,0.0019700385,0.029465938,0.009257722,0.0004341381,-0.013635585,-0.013016847,-0.017371362,-0.03581676,-0.0032950717,-0.020371657,0.0011506483,0.0075532733,0.022589775,-0.029045664,-0.018013448,0.023838924,0.0058692554,0.00258148,0.027808188,0.000090567046,0.022169499,-0.024445988,0.050619774,-0.01772159,0.044409044,-0.0025245678,-0.037941482,0.007086301,-0.005116263,-0.023687158,0.020932022,-0.008668169,0.010074923,0.0006698131,-0.007658342,0.036540564,-0.019822964,0.042564504,0.024562731,-0.050432984,0.0007099435,-0.02778484,-0.04665051,-0.043405056,0.0006344253,-0.007413182,-0.014569528,0.00035551898,-0.0071329987,-0.0242592,0.028625388,0.011767697,0.011067239,-0.0032425374,0.03163736,0.0318008,-0.03614364,-0.005770024,0.015246638,-0.01061194,-0.012117925,-0.010331757,-0.04732762,-0.020196542,0.009993202,0.030002955,-0.014732969,0.00047791674,0.028672086,0.006344983,0.06668361,0.005924708,-0.023091769,0.009024235,0.021293927,-0.021550762,0.016507464,-0.015865376,0.011691813,-0.015048175,-0.0007033767,0.004325329,0.02366381,0.011108099,-0.011820231,-0.025123097,-0.004278632,-0.034812767,-0.019075809,0.026290528,-0.02878883,0.0005282622,0.017371362,0.007127161,-0.0067535834,0.022799911,0.055756465,0.019064136,-0.03829171,0.00042611203,-0.020430028,-0.01663588,-0.012830058,0.036470518,0.023243535,0.043194916,-0.016017143,-0.010839589,0.0062399143,-0.014114231,-0.003362199,0.022624796,0.016133886,0.0072205556,-0.013799025,0.031543963,0.008101965,-0.0135772135,-0.013693956,-0.008300428,0.047257572,0.03443919,0.011078913,0.031217083,0.017581498,0.050806563,-0.04585666,0.0067068865,-0.0091818385,0.0072205556,-0.004935311,0.039622582,0.019437714,-0.019554455,-0.010635289,-0.02727117,-0.02979282,0.008633146,-0.017032806,-0.007839294,-0.0078217825,0.015596868,0.010664475,0.011866928,0.003945914,-0.028135067,0.022181174,0.015842028,-0.011154795,0.014336043,0.028391901,-0.023757204,0.014441111,0.03462598,0.0154917985,-0.022881633,-0.023617113,0.039015517,0.021644156,-0.003712428,-0.001077684,-0.007903502,0.04501611,0.0047310106,0.0069812327,0.025029704,-0.014312694,-0.0012506096,0.00071979366,-0.034532584,0.026734151,-0.021025417,-0.0012163164,0.023173489,-0.014908084,-0.08568937,0.03616699,0.024889613,0.00622824,0.027644748,0.008755727,0.023080096,0.019519433,0.008066943,-0.040719964,-0.060239397,0.01620393,-0.007646668,-0.04949904,-0.00084857584,-0.018737255,0.02491296,-0.024889613,0.0568772,0.011563396,-0.010232526,-0.013553864,0.007617482,0.061266735,-0.02065184,-0.0068236296,-0.0031053643,0.02290498,-0.00936279,0.015153244,-0.030563323,0.021515738,-0.04060322,0.037871435,0.023325255,-0.036493868,-0.0071796956,0.012981824,-0.003362199,0.024002364,-0.02040668,-0.0044449903,-0.020009754,0.0045763263,0.0025639685,0.018375352,-0.010401803,0.046954043,-0.003397222,-0.004766034,-0.0056912224,-0.040883407,0.010600266,-0.041537166,0.04100015,0.0070279296,-0.005130856,0.022531403,-0.015596868,0.022239545,-0.014336043,-0.00018031325,0.019379342,0.028065022,-0.01221132,-0.03044658,0.035700016,-0.0103434315,-0.029139057,0.01755815,0.04968583,0.016028816,-0.024889613,0.0041881558,-0.004482932,0.02523984,0.03616699,-0.018036796,-0.0044245603,0.029629378,0.006794444,-0.009928994,0.045739915,-0.004442072,0.019367667,0.02075691,-0.024959657,0.012526526,-0.017231269,0.016028816,-0.018200237,0.01874893,0.0028280995,-0.009952342,-0.0056737107,0.009415325,0.028508645,0.0064325402,-0.002982784,-0.0010725765,0.014931432,0.010104109,0.004914881,-0.038501848,-0.053281516,0.014978129,0.011300724,0.028228462,0.015643565,0.017137876,-0.003794148,0.018667208,-0.060239397,0.0047310106,0.01563189,0.018410373,0.043755285,0.0040393085,-0.0135772135,0.05253436,-0.008160337,-0.0045267106,-0.030236442,-0.02523984,-0.011540048,-0.0018635105,0.027061032,0.0028893896,-0.01929762,-0.014114231,0.0023450754,-0.020546772,0.011633442,0.044362348,0.030119698,-0.022484705,0.016962761,0.006730235,-0.0063624945,0.0059772427,-0.006380006,0.0072030444,0.00090038055,-0.025940299,0.02021989,0.010250038,-0.010296734,-0.021702528,-0.014943106,0.027294518,0.011907788,-0.011405793,0.009759717,0.014908084,-0.015912073,0.028905572,-0.0060064285,0.009555416,-0.0077925967,0.02477287,-0.029325847,0.046393678,0.0102383625,-0.014838038,0.02157411,-0.023827251,-0.036563914,0.025356583,-0.022881633,0.016787646,0.0010915472,-0.016414069,0.02759805,0.002403447,-0.02792493,0.040509827,0.004144377,0.0042377715,0.039272353,-0.005781698,0.02523984,0.051740505,0.01864386,0.005822558,0.033902172,-0.022834934,0.0011331369,-0.006782769,-0.05416876,-0.011820231,0.0284386,0.039272353,-0.024516035,-0.034649327,0.003225026,-0.030726762,-0.007845131,-0.027481306,0.022356289,0.009444511,0.020173194,0.046907347,-0.016997784,-0.030376533,0.0000432314,-0.0085747745,0.041607212,0.013145264,0.0028718782,0.016810995,-0.0075240876,-0.016098863,-0.024632776,-0.03128713,0.01932097,0.0038554382,-0.052020688,-0.004914881,0.027831536,0.009730531,0.018608836,-0.010903798,-0.04697739,0.043638542,-0.04665051,-0.002860204,0.045132853,-0.00715051,0.0076816906,-0.006140683,0.013834048,0.029395891,0.055943254,-0.048611794,0.009473696,0.0085747745,0.023547066,0.00393424,0.010536058,-0.0049323924,0.014406089,0.027714793,0.017546475,-0.013320379,0.015970444,0.010810403,0.01975292,0.022134477,-0.018597163,0.030563323,-0.0100924345,-0.0109504955,0.036353774,0.013507167,0.026617408,-0.014230974,0.021457367,0.0060239397,0.0016168908,0.04616019,-0.027714793,0.014441111,0.029862864,0.0025843985,0.008253732,0.010477686,-0.0022633553,0.010232526,-0.008580612,0.0014753399,-0.030026305,-0.018818974,0.021959363,0.023512045,-0.007956036,0.007127161,-0.025473326,0.024632776,0.0060414514,-0.009800577,-0.014803015,-0.018737255,-0.01991636,-0.026664106,0.012304714,0.03231447,0.00026559038,-0.0057787793,-0.014020837,-0.021048766,-0.012771687,0.032618,-0.0484717,0.0102442,-0.0042436086,-0.01983464,-0.020371657,-0.013028521,0.016098863,-0.00017028063,-0.04377863,0.037894785,-0.019040786,0.0061698686,-0.0055190264,-0.016705927,-0.0032133516,0.015234964,-0.020231565,0.0051221,-0.0021830944,-0.03126378,0.0075474363,0.0342524,-0.003143306,0.03492951,-0.02233294,-0.03600355,-0.00018314061,0.009310256,-0.0108979605,0.018363677,-0.0131686125,-0.029209103,-0.016367372,0.046020098,0.009327767,-0.028135067,-0.04214423,-0.043708585,-0.018387025,-0.0040947613,0.024095759,-0.0085631,0.030189745,0.0011200033,-0.010133294,0.012876755,-0.009222698,-0.022251219,-0.010413477,-0.03380878,0.013834048,-0.03028314,0.010185828,-0.019496085,0.0031316315,-0.0011470001,0.018573815,-0.0070454413,0.04548308,-0.011446653,0.008166174,0.015666913,0.007880154,-0.0125615485,0.007308113,0.0004709851,-0.014931432,-0.018935718,-0.0064383773,-0.01991636,0.016939413,-0.022648146,0.001911667,-0.025566721,-0.0049469853,-0.008008571,0.022239545,0.009497045,0.008942516,-0.0325713,0.015690261,-0.027948279,0.0076349936,-0.026290528,0.017231269,0.008843284,0.013110241,0.019262599,0.012187971,-0.0032075145,-0.015269987,-0.00991732,-0.02776149,-0.04578661,0.03880538,-0.017966751,0.020873653,-0.03345855,0.004517955,-0.02323186,0.028531995,-0.0007000933,-0.023325255,0.0075474363,0.0033242574,-0.0037678808,-0.002175798,0.014499483,-0.028555343,0.015643565,-0.013705631,0.0068936753,0.006724398,-0.023371952,0.015328359,0.032034285,-0.00056255545,-0.0089308405,-0.000059101152,0.02222787,-0.022052756,0.011049727,0.04949904,0.030143047,0.04749106,0.01124819,-0.0003976559,-0.022029407,-0.0043632705,-0.02184262,-0.039085563,0.014324369,0.0032162701,0.00827708,-0.0055365376,-0.028625388,0.010395966,0.03196424,0.010985518,-0.0021889317,-0.027457958,0.0075591104,-0.023979016,0.0007602889,0.0032921531,-0.009975691,-0.0030849343,0.0051658787,-0.004503362,-0.002896686,0.013880745,0.0023085931,0.0024078249,0.0031024457,-0.020383332,0.012036205,-0.023733856,0.009467859,-0.0060356143,-0.0033155018,0.010302572,-0.027037684,-0.0019860906,0.025730161,0.03147392,0.0012520689,-0.020371657,-0.048798583,-0.011522536,-0.018118517,-0.016052166,0.016133886,0.007769248,-0.01313359,-0.0010397425,0.0367974,-0.015666913,-0.0016256465,0.0057583493,0.010156643,0.0037795552,-0.040509827,0.011131447,-0.00040239858,-0.01149335,0.027504655,0.0032425374,0.012748337,-0.02659406,-0.015036501,0.017277967,0.01354219,0.0065843062,-0.0022400066,-0.04100015,-0.0018343247,0.014441111,-0.02073356,0.03810492,-0.012082903,0.0061757057,0.040369738,0.009269396,0.0084813805,0.007629156,-0.042494457,-0.023733856,0.006000591,-0.07069957,-0.027364563,-0.031660706,-0.0125382,-0.006502586,-0.011020541,0.005507352,-0.0075357617,0.018550465,-0.0018751847,-0.041186936,0.0027711873,-0.015164918,-0.017814985,-0.0061815428,-0.02407241,-0.028812177,0.009409487,-0.0021830944,-0.013635585,-0.03460263,0.040860057,0.023243535,0.0021889317,0.004996601,-0.017219596,-0.0063216346,-0.01546845,-0.02393232,0.026220482,-0.022683168,0.025379932,0.0669638,0.013904094,-0.011394119,0.007926851,-0.010582754,-0.0041969116,0.011697651,0.008749889,0.029699424,0.03198759,0.0153867295,-0.034532584,-0.015748633,-0.0050374614,0.02624383,-0.03161401,0.014814689,0.016659228,-0.02493631,0.008172011,0.03616699,-0.002946302,-0.011067239,-0.03616699,-0.032454558,0.06481572,0.0025377013,0.0046171863,0.000051667907,-0.0035577435,0.025123097,0.010635289,0.026734151,0.045576476,-0.004605512,0.008341289,-0.01153421,0.059772424,0.02057012,0.028345205,0.00060961745,-0.030890202,0.012596572,0.037404463,-0.010635289,-0.008078617,-0.044852667,-0.0018518361,-0.02390897,0.01245648,-0.03243121,-0.015947096,0.0022093616,-0.027457958,-0.012526526,0.030143047,-0.022461357,-0.015036501,-0.0052972147,-0.00095510384,0.012596572,-0.044058815,-0.022274569,0.00018879535,0.017616522,-0.003732858,-0.022554751,0.023021724,-0.04149047,0.023488695,0.020803606,-0.023208512,-0.03513965,-0.017838333,-0.06556288,0.008247894,0.032664698,0.018258609,0.00038342786,0.026150437,0.011954485,-0.008247894,0.027901582,-0.055149402,-0.015620216,0.020745235,0.020103147,0.015993794,-0.030399883,-0.0019948464,0.010775381,0.021527413,0.021912664,0.038548544,-0.017149549,-0.034906164,0.038478497,-0.033528596,0.0060414514,0.028298508,0.016414069,-0.015515148,0.023827251,0.058324814,0.0042173415,-0.031147037,0.037848085,0.022192849,-0.006724398,0.008749889,-0.018924043,0.002464737,0.016997784,-0.011621768,0.006461726,-0.035419833,0.0032221074,0.00013753786,-0.0013060626,-0.0068644895,0.026173785,0.0035694179,-0.023441998,0.0066718636,-0.005294296,-0.0055394564,-0.024189154,-0.0334352,-0.0027814023,-0.0046171863,-0.01196616,0.031894192,-0.020861978,0.0019408527,-0.037871435,0.047654502,-0.0035022907,-0.023360278,0.007599971,-0.0034059775,-0.026664106,0.0034964534,0.020430028,0.026057042,-0.00031247,0.009222698,0.013156938,0.016530812,-0.003169573,0.017383035,0.021293927,0.009952342,0.021854293,-0.022940002,-0.03329511,0.018141866,-0.016355697,0.028998965,0.0084813805,0.014744643,0.015340033,0.0026398515,0.026734151,0.0384318,0.02493631,-0.012760012,-0.018900694,-0.026897592,-0.04377863,0.01728964,-0.018036796,0.00956709,0.054589037,0.023196839,0.051320232,0.00016280179,-0.0077225505,0.0060181026,0.019741245,-0.0040655755,0.013752327,-0.022916654,0.009146815,-0.0036044407,0.01061194,-0.016846018,-0.022811586,0.01530501,0.0031724914,0.021118812,-0.00852224,0.008510566,-0.04146712,0.011680139,-0.03313167,0.0010222311,0.009823925,-0.002393232,0.020395005,-0.0010864397,0.0047485223,0.009374465,-0.0037241024,0.02331358,-0.0059101153,-0.005443143,0.020710211]},{"id":"interface-RequestOptions","type":"interface","source":"main","text":"Interface: RequestOptions\nProperties: auth: boolean, body: unknown, files: { name: string; data: Blob | ArrayBuffer | Uint8Array | Buffer; filename?: string; }[], headers: Record","meta":{"url":"/docs/typedefs/RequestOptions"},"embedding":[-0.000057174657,0.010972113,-0.007920087,-0.012880307,0.035821997,-0.02326695,0.010440854,-0.041308053,0.021705702,-0.012077998,0.0002436064,0.026671343,0.03259108,-0.010283645,-0.02222612,-0.025608825,-0.007139463,-0.0005488767,0.008706133,-0.0041741733,0.015222181,-0.038771026,-0.0051092966,0.005757107,-0.008944658,0.00093647855,-0.0014338557,0.0107986415,-0.02471978,-0.020860026,-0.0022998613,-0.039031234,0.052605428,0.053039107,0.009611441,-0.031571932,0.060801987,0.030791305,-0.029772157,-0.016544906,-0.047184423,-0.032114033,-0.018973516,0.010825746,-0.048658937,0.009589757,0.045232862,0.023722315,-0.017412266,0.002682042,-0.008950079,-0.0056595285,0.015406495,0.07129705,0.019927613,0.02805912,-0.05126102,0.017900158,0.009589757,0.025088409,-0.0069117807,-0.02363558,-0.026302714,-0.0012569954,-0.0012204036,-0.010402908,-0.049179353,0.05581466,0.010560117,0.0332416,0.048615567,-0.015623335,-0.007150305,-0.00426362,0.035214845,0.016263014,0.002719989,-0.05078397,0.011020903,-0.035821997,-0.003577863,0.062016293,-0.072988406,-0.0516947,-0.01025112,-0.006076946,-0.056421816,-0.009568073,-0.055467717,-0.032504342,-0.03653757,0.0232019,-0.077021636,0.01160095,-0.014669239,0.0020220347,-0.00879287,0.0066840984,-0.0040765954,0.038337342,0.021022655,-0.03475948,-0.061105564,0.00555653,0.03512811,-0.039139654,0.009204865,-0.005914316,-0.0054887673,-0.02747365,0.0048545096,0.03469443,-0.0018201022,-0.0002383548,-0.0125008365,-0.017282162,-0.025240198,0.004976482,0.02250801,-0.05186817,0.0061311563,-0.014181348,0.038012084,0.019905929,0.01457166,-0.024633044,-0.038445763,-0.0023893078,-0.06678677,-0.0017442082,0.072814934,-0.005995631,0.009183181,-0.046967585,-0.0136717735,0.0036130995,-0.0047081425,0.011210637,-0.012077998,-0.005526714,0.026888182,-0.03374033,0.06114893,-0.014528292,-0.0332416,-0.00350739,-0.007464723,0.07407261,0.0033474702,0.015027025,0.019732457,0.02276822,-0.022009278,0.023353688,0.0068358867,-0.034174014,0.035648525,-0.0028487379,-0.022529695,-0.01634975,0.025717245,-0.008863342,-0.027451968,-0.052215114,0.01904941,0.021109391,0.04343309,-0.02838438,-0.04527623,0.004469618,0.008738659,-0.036342416,-0.011427478,0.038554184,-0.043823402,0.018669939,0.04299941,-0.053993206,0.0027484493,0.012934517,0.034087278,0.04026722,-0.016273856,-0.0195373,-0.036667675,0.01731469,-0.010673958,0.038250607,0.009166919,0.006147419,-0.023678947,0.04252236,0.006770835,-0.0268665,-0.0000063633274,-0.048442096,0.008928395,-0.0023554265,0.0099367015,-0.0051499545,0.0026671342,0.02352716,0.04338972,-0.027126707,-0.048268624,0.015352285,0.022161067,-0.020469714,-0.043476455,0.033393387,0.03059615,0.033805385,-0.01214305,-0.011947894,-0.01516797,0.011698528,0.021922542,0.005973947,0.006212471,-0.0068413075,-0.015840175,0.013075463,0.06492195,-0.04570991,0.06114893,0.008082718,-0.014181348,0.009318707,-0.015959438,-0.02417768,-0.009557231,0.049396195,-0.044018555,-0.013140515,0.0064618373,-0.015341443,0.036906198,-0.023765683,0.002573622,-0.046490535,0.00717741,-0.070820004,-0.059717786,0.0411129,0.030986462,0.027191758,-0.011644318,-0.016219646,0.003501969,-0.014398188,0.034976322,-0.01839889,0.01505955,-0.056421816,0.0067220456,-0.0142247155,-0.004431671,0.014734291,0.016696693,-0.008440504,0.03027089,-0.041264687,0.0025668456,0.057332546,-0.013238093,-0.045189492,-0.013216409,0.025175145,0.0004899233,-0.005147244,0.011958736,0.035800315,0.01457166,-0.007020201,-0.048311993,-0.012056314,0.009643967,0.012002104,-0.07546038,0.034911267,0.008050192,-0.0023879525,-0.023180215,0.027256811,-0.009188603,-0.0142680835,0.03146351,0.064054586,0.018268785,0.0014067506,0.05039366,0.0154173365,0.050263554,-0.037643455,0.005919737,0.038337342,0.012891149,-0.017455634,0.07311851,-0.004906009,0.04343309,-0.07619764,0.074766494,-0.051651333,0.010115595,0.010907061,0.035756946,0.052865636,0.057722855,0.013422407,0.01672922,-0.019342145,-0.078669615,-0.0011079177,-0.039963644,-0.0010184712,0.038879443,-0.004447934,-0.039421543,-0.0208275,0.005865527,0.011254005,0.017910998,-0.013953665,0.0038841497,-0.024481256,0.0136500895,-0.0026508712,-0.007562301,0.02352716,-0.031528562,-0.03530158,-0.008857922,0.002072179,0.031571932,-0.015981121,-0.051607963,0.046013486,-0.011514214,-0.00009164886,-0.00024801097,-0.033154864,-0.005217717,0.011839474,0.027105022,-0.03616894,-0.053125843,0.006223313,-0.043649927,0.00561074,0.004073885,0.038727656,-0.05616161,0.036385782,-0.024155997,0.016534064,-0.013931981,-0.07858288,-0.0759808,0.0064184694,-0.026541239,0.04896251,0.0005451498,0.016176278,0.0136717735,-0.013639247,-0.033219915,-0.016490696,-0.009101867,-0.0332416,0.047834944,0.027733859,-0.029230056,-0.017910998,-0.004214831,-0.025457038,-0.035258215,-0.005402031,0.0012529297,0.020784132,0.04445224,0.054513622,0.010917903,-0.0027863963,0.00090598536,-0.01440903,-0.03183214,-0.0076598795,0.0051391125,0.017043639,0.0029137898,0.02174907,-0.06435817,-0.038337342,0.00345318,0.057289176,0.03384875,0.0028839745,-0.011839474,-0.042500675,0.027039971,0.012674308,-0.017726684,-0.0010801351,-0.0075243544,-0.01850731,0.028991532,0.035952102,0.026107557,-0.040115435,0.024437888,-0.018225417,0.038489133,0.027105022,0.07029959,-0.015081234,0.012327365,-0.04161163,-0.016577432,0.044018555,-0.012999569,0.024329469,-0.0706899,0.00044147306,-0.01408377,0.0002647822,0.05963105,-0.0099367015,-0.011167269,-0.08608555,-0.025543774,0.0014650265,0.010061384,0.015363127,0.009535547,-0.02147802,0.0028622905,-0.010717326,0.012945359,0.006033578,0.007003938,-0.018431416,-0.004133516,0.03328497,-0.03259108,0.0066244677,0.011178112,-0.014810184,-0.008608555,0.009226549,-0.014983657,0.021163601,-0.029013216,0.0136284055,-0.0011960091,-0.013248935,0.0039464915,-0.030531097,0.0074809864,-0.021814123,0.01629554,-0.013834404,0.016870165,-0.008245348,0.028514484,0.012815255,-0.008033928,-0.0023676236,-0.02077329,-0.006792519,-0.0026901735,0.019786667,-0.028774692,-0.0037269406,-0.025218513,-0.046230327,0.010885377,-0.007903825,0.028037436,0.029880578,0.011254005,-0.0020206794,-0.0031712877,-0.035540104,0.0023296766,0.10304245,0.014636712,0.031181619,0.0032986812,-0.00073590135,-0.027321862,-0.0065377313,0.0010001754,-0.008586871,0.009437969,-0.012750203,-0.003496548,-0.04100448,0.0017984182,0.003713388,0.043324668,-0.0643148,-0.001521947,-0.006770835,0.009774071,0.0242861,-0.044929285,-0.040245537,-0.03627736,-0.049656402,0.022551378,0.057592753,-0.006104051,-0.0032200767,-0.06479184,0.024112629,-0.012283997,0.053125843,-0.04896251,0.015959438,-0.008505556,0.012598415,-0.0018743123,-0.020534765,0.022421274,-0.005599898,-0.02153223,-0.017423108,-0.0091181295,-0.003464022,0.023136847,-0.045623176,0.0025139907,0.001015083,0.013574195,-0.016978586,0.011232321,-0.031810455,0.011947894,-0.0041687526,0.0011316347,0.012858623,-0.010050543,-0.00004370685,-0.0065377313,0.054079942,0.0166208,-0.004252778,0.0011526411,0.008565187,-0.01948309,-0.022182751,0.011839474,-0.011633475,0.017542372,0.06561584,0.02493662,0.026649658,-0.026085874,0.00029781644,-0.009812018,-0.024524625,0.047141057,-0.0035561789,0.029490264,0.021326233,0.0035155215,0.0025654903,-0.0051011653,-0.03616894,0.015601651,0.035366632,0.024242733,0.09384843,0.03410896,0.022161067,-0.016664168,-0.018810885,-0.04505939,0.01225147,0.00917234,-0.02023119,-0.034846216,0.066049516,-0.015200497,0.019580668,0.055467717,0.0039302283,0.009356654,0.022920007,0.037144724,0.026758078,0.023440424,-0.003599547,-0.0053424,0.0018946411,0.03625568,0.022681482,-0.044018555,0.025066724,0.00001860294,-0.025153462,-0.004439803,0.00036151323,0.045406334,0.024741465,0.004274462,-0.015243865,-0.011546739,0.032981392,0.0024977277,0.05390647,-0.021185286,-0.051391125,-0.018648256,-0.016219646,-0.029316792,-0.0016656036,-0.043801717,-0.005887211,-0.019352986,0.014322294,-0.0055240034,0.061929557,-0.019136146,-0.025673877,-0.017065322,-0.009952964,-0.012576731,0.0030520256,0.024676412,0.031962242,0.00067186577,0.016967744,-0.01634975,0.00046349588,0.010370382,-0.00469459,-0.03955165,-0.011579266,0.005654108,0.021456337,0.0206215,-0.044929285,0.036515888,-0.02983721,-0.06349081,-0.0069443067,-0.0074593024,0.0019041279,-0.029273424,-0.0007087963,-0.007898403,-0.018528994,0.025717245,-0.010972113,-0.0016886429,0.017574897,-0.021911701,-0.014257242,0.022464642,-0.0077357735,-0.016111225,-0.007432197,-0.033371706,0.00046552878,0.033480123,0.016588274,-0.032482658,0.0055077407,0.00046349588,0.020892551,0.033870436,-0.015991963,0.023939157,-0.029403528,0.0202854,-0.010158963,-0.006326312,0.040549114,0.0011607726,-0.0011302794,-0.025587142,-0.06683014,0.00803935,-0.03501969,0.016826797,0.034000542,0.0043069883,-0.007925509,0.025001673,0.009291601,0.02563051,-0.015493231,-0.012609256,0.060411673,-0.008033928,0.012674308,0.013704299,0.012002104,-0.01451745,-0.009860807,0.0006617014,0.0061419983,-0.05056713,0.005946842,0.0008355123,0.0063534174,0.016544906,-0.03135509,-0.028319327,0.013053779,-0.019504774,0.0037350722,0.006136577,0.022356223,0.029446896,0.033328336,-0.0049087196,-0.00074132235,0.03328497,-0.04839873,-0.050306924,0.04258741,0.02790733,0.01235989,0.024047576,0.025153462,-0.045753278,0.015482389,0.043888453,0.021824963,-0.015048709,0.01731469,-0.03426075,0.012977885,0.010484222,0.018810885,0.019927613,0.0136717735,0.014560818,-0.009752387,0.018496467,0.0326995,-0.007426776,-0.026107557,-0.043151196,0.0003686283,-0.043476455,0.017097848,-0.04458234,0.0037892822,-0.018171208,-0.013942824,0.006125735,-0.03421738,-0.01225147,-0.013585038,-0.056985598,0.014625871,-0.01737974,0.027321862,-0.009400022,-0.0047894577,-0.005093034,0.019764982,0.0015476968,0.009790334,0.034130644,0.035431687,-0.0065323105,0.013140515,-0.004203989,0.002573622,0.054643724,-0.027603755,-0.008510977,-0.007979719,-0.005919737,-0.008142348,0.034607694,-0.010175225,0.014094612,-0.011308216,0.036906198,0.008120664,-0.01850731,0.016317224,-0.008679029,-0.025153462,-0.0028839745,0.035821997,0.0042229625,-0.027430283,0.021412969,0.009367496,-0.028579535,-0.06782761,0.002531609,0.02207433,-0.03222245,-0.01780258,-0.013704299,0.005621582,0.04354151,-0.0053667943,-0.016122067,0.016393118,0.035648525,0.009042235,-0.046750743,0.036732726,0.000011011415,0.028102487,0.0066515724,0.022789903,0.015124602,0.0057191597,0.034889586,-0.038510818,0.081792116,-0.010717326,-0.004418119,0.019385513,-0.013953665,0.0102890665,-0.03033594,0.001932588,0.017780894,-0.034911267,0.02714839,0.032244135,0.01721711,0.023809051,-0.00047535435,-0.012609256,-0.019721614,0.008982604,0.00022124474,-0.015178813,0.018106155,-0.03584368,-0.004732537,0.02083834,0.028210908,0.002730831,-0.030140786,-0.007020201,-0.045796648,0.002940895,-0.024307784,-0.013715141,0.025608825,-0.03259108,0.038380712,-0.05390647,-0.006223313,-0.011937052,0.00023818538,-0.007903825,-0.0037269406,0.06205966,-0.044018555,0.013845245,-0.03814219,-0.012587572,-0.011308216,0.0076544583,0.023787368,0.019396354,0.02406926,-0.0029273424,-0.0037621772,-0.0041091214,-0.016859325,0.021900859,-0.011514214,0.02983721,-0.023613896,0.07147052,-0.0040007015,0.020101085,0.026020821,-0.002013903,0.025587142,-0.018182049,0.006087788,0.03200561,-0.013585038,0.01645817,-0.00076436164,0.013866929,0.031441826,0.023657264,0.008283295,0.012815255,-0.02990226,0.007855035,0.011156428,0.016956903,-0.009459653,-0.016208803,-0.009459653,-0.02142381,0.022486327,0.026454503,0.04883241,-0.04386677,-0.012153892,-0.010825746,0.022746535,-0.002358137,-0.043736663,0.03356686,-0.021651492,0.03081299,-0.00782251,-0.022573063,0.008857922,0.0031224985,-0.006087788,-0.017607423,0.02298506,0.034412537,-0.044929285,-0.006895518,0.02827596,-0.03102983,0.007508091,-0.008879606,-0.016013646,0.029490264,-0.032287505,0.0010164384,-0.0017780894,-0.065008685,0.009730703,0.033935487,-0.014723448,0.0038570447,-0.016989429,0.030964779,0.027213443,-0.00096832693,0.017152058,0.0046918793,-0.03178877,0.00034897716,-0.011752738,-0.014203032,0.0054914774,0.0020897973,-0.000513979,-0.03189719,0.031658668,-0.03458601,0.038337342,0.01592691,0.008445925,0.028557852,-0.013682615,0.018539835,-0.025326934,-0.023462107,-0.0011038521,-0.011037165,0.039898593,-0.03725314,0.024784833,0.00092157075,-0.03313318,0.02638945,0.042283837,0.0018892201,-0.021597283,0.044365503,0.0348679,0.028406063,-0.010717326,-0.018767517,0.0065648365,0.047834944,-0.018149523,-0.028904796,-0.010375802,-0.013465775,0.0013023963,0.01592691,0.04208868,0.012869465,-0.003173998,-0.016284697,-0.02769049,0.0017929972,-0.0071231998,0.000068482535,-0.016263014,0.0023567816,0.019071095,-0.0076436163,-0.0029327634,-0.0021358759,0.007226199,-0.019461406,0.02104434,-0.0066786776,-0.003179419,-0.0008734593,0.034998003,-0.011958736,-0.016978586,-0.0105330115,0.038337342,-0.04226215,0.032721184,-0.028210908,0.012782728,0.00631547,-0.0011241809,0.013292303,0.021900859,-0.006158261,-0.017889315,0.02077329,-0.015514915,-0.018474784,0.022161067,0.02584735,0.024459573,0.009183181,-0.037643455,0.034065593,0.012652624,0.0067870975,-0.0018092602,0.016046174,-0.0077249315,-0.00031424884,0.012294838,-0.005239401,-0.018821727,0.012761044,-0.042175416,0.0023825315,0.009801176,-0.012771887,0.006282944,0.010636011,0.023765683,0.046230327,0.032114033,0.0038543341,-0.011644318,0.025023356,0.031810455,-0.0024746885,0.034716114,0.016718378,0.049829874,-0.012761044,-0.016284697,0.053472787,0.018377205,-0.016447328,-0.0064672586,0.035648525,0.021987595,-0.007031043,0.023180215,0.008782027,0.0321574,-0.004906009,-0.005212296,-0.0030357626,-0.028969849,-0.01111306,0.022334538,-0.018908463,0.012674308,-0.030921409,-0.050133448,0.023722315,-0.0326995,-0.02638945,-0.012565888,0.008044771,-0.0016181698,0.014311452,0.00944339,-0.030097418,-0.017835105,0.0024191232,-0.0057191597,-0.0147993425,-0.01214305,-0.0025221223,0.0010476091,-0.026237661,-0.0014907762,-0.007508091,0.0055240034,-0.019201199,0.0022036384,0.014159664,-0.0010049187,0.0069659906,0.011460003,-0.049613032,-0.015406495,0.0021060603,-0.022746535,0.025348617,0.018171208,-0.018312152,-0.002995105,-0.025110094,0.03668936,-0.0037269406,-0.021879174,-0.019504774,0.00847303,-0.01203463,0.018659098,0.031593613,0.0016859324,0.0010381223,0.0055944766,0.044799183,-0.030444361,0.011481687,0.0029273424,-0.035475053,-0.0038922813,-0.01052217,0.018572362,-0.027582072,0.025565457,0.0010652274,0.011839474,0.0038218081,0.035691895,0.005843843,0.0022700457,0.017705001,0.009730703,0.01263094,-0.009898754,0.027755544,0.0021399416,-0.0034016804,0.010999219,0.009611441,-0.0014812895,0.036776096,0.0032851289,0.004198568,0.002256493,0.007882141,0.005049666,0.003529074,0.00091614976,0.018247101,0.03319823,-0.002137231,0.0047488,-0.0024177681,-0.01214305,0.034499273,-0.011503371,0.013975349,0.00074674335,0.00058445206,-0.02693155,0.016989429,0.004122674,-0.0075026704,0.014170506,-0.0064293114,0.009324128,0.017455634,-0.012826096,-0.01640396,-0.01910362,0.013964508,-0.03773019,0.007296672,-0.016881008,-0.009334969,-0.015883543,0.011254005,-0.016035331,0.003523653,-0.0074593024,-0.010814904,-0.0050361133,0.00094799814,0.023592211,-0.007909246,-0.0021941515,-0.0065810997,0.012045472,0.021163601,-0.012132208,0.03584368,0.031593613,0.016208803,-0.005228559,-0.020263715,0.018496467,-0.029620368,0.036233995,0.031398457,0.051174283,0.031593613,0.024698097,0.008283295,0.026324399,0.003016789,-0.005778791,0.004285304,-0.021326233,0.01737974,0.003924807,0.014181348,-0.03113825,-0.038792707,0.0401588,0.005209585,-0.00033474702,-0.02276822,0.022963375,-0.037578404,-0.0017618265,-0.0023594922,0.003485706,-0.033024758,0.0065377313,0.019081935,-0.007551459,0.006060683,0.026974918,-0.0017848657,0.008077296,0.0038949917,-0.03679778,-0.018843412,-0.0003466055,-0.010180647,0.004399145,-0.0045807487,-0.016252171,0.0023459396,0.013151357,0.0020274557,-0.005833001,-0.0029923946,-0.024546308,-0.012695992,-0.0029707104,-0.0014704475,0.014560818,-0.016501538,-0.030552782,0.017032797,0.0026779762,0.0065214685,0.011297373,-0.0013396657,-0.026476186,0.0014162374,-0.004418119,0.01160095,0.033545177,0.0064347326,0.024047576,0.0034667323,0.054903936,-0.004063043,-0.010332434,-0.003594126,-0.025326934,0.05629171,-0.010153541,0.014311452,-0.04263078,0.011741896,-0.038077135,0.0035859945,0.026519554,-0.031224987,0.016956903,0.0029815524,-0.02174907,0.0035615999,-0.04440887,-0.0021182576,0.013411565,-0.019624036,-0.00037235525,0.020491397,-0.0018038392,0.03243929,-0.009269917,0.0076924055,-0.0076436163,-0.023678947,0.00782251,-0.0048870356,0.006076946,-0.0038245188,0.017390583,0.01219726,0.018431416,-0.012283997,-0.009725282,0.035518423,0.002535675,-0.045666542,0.004906009,0.0030249206,0.023353688,0.023548843,-0.02023119,-0.029728789,0.01910362,-0.03816387,-0.0017062612,-0.028514484,0.018171208,0.017184583,0.03773019,0.003648336,-0.00004480799,-0.024633044,0.009291601,0.00858145,-0.010766115,-0.028774692,0.00858145,0.0065377313,0.0052529536,0.018550677,-0.015970279,-0.018973516,0.012153892,0.026779762,-0.0032742866,-0.0010747141,0.01235989,0.03428243,-0.012424942,0.007865878,-0.012338206,-0.06370764,0.03523653,0.01354167,0.050870705,-0.004084727,-0.026259346,0.023592211,-0.0142463995,0.04393182,0.0160787,0.006391364,0.047141057,-0.015634177,0.03059615,-0.00012747831,0.020610658,0.024025893,-0.014116296,-0.008538082,0.02109855,-0.012858623,0.027170075,0.011460003,-0.007209936,0.029056584,0.013953665,0.0008531306,0.009562652,0.06349081,-0.019927613,-0.023657264,0.002989684,-0.0058167377,-0.019732457,-0.027213443,-0.02573893,-0.021380441,0.0034342064,0.02276822,0.040679216,0.006938886,0.01203463,-0.018160366,-0.0012082064,0.0007989205,0.0012237917,0.020393819,-0.042283837,-0.03658094,-0.023657264,-0.009568073,-0.0160787,-0.0036944146,-0.020220347,0.034304116,0.01986256,0.032135714,0.03168035,0.0091614975,-0.015851017,0.013400723,-0.018106155,-0.009736124,0.015341443,-0.013704299,-0.022833271,-0.014072928,0.016447328,0.0005329525,-0.015569125,0.014148822,-0.02465473,0.014474082,-0.028449431,-0.016924376,0.051044177,0.04549307,0.047748208,0.015959438,0.051607963,-0.02708334,-0.015623335,0.016024489,-0.00041030228,0.017694158,0.002595306,-0.011286532,0.0008246703,-0.0082995575,-0.015991963,-0.02071908,-0.03200561,-0.006337154,-0.01629554,-0.0011221479,-0.008868763,0.022746535,-0.006738309,-0.012999569,0.02541367,-0.022551378,-0.0037459142,-0.01840973,-0.0025993716,0.033805385,-0.009833702,0.013877772,0.017564055,0.00847303,0.008836238,-0.034195695,0.013834404,0.024611361,-0.0047460897,0.024090944,-0.023245268,-0.013769352,0.010543854,0.019439721,0.009269917,0.010652274,0.030639518,0.015981121,0.030682886,-0.010945008,-0.010999219,-0.0019285224,0.0037513352,-0.009183181,0.005041534,-0.039855227,0.025587142,-0.0125225205,-0.0042554885,0.019179514,-0.054426886,-0.013400723,-0.031376775,0.0029652894,0.044799183,-0.0047189845,-0.025912402,-0.008982604,-0.038380712,0.024806516,0.043454774,0.05256206,-0.03679778,-0.016176278,0.019287935,-0.010370382,0.025999138,-0.020881709,-0.0032715762,-0.049222723,-0.0027281204,-0.028492799,0.02936016,-0.003163156,-0.006244997,0.012283997,0.001109273,-0.00820198,0.018680781,-0.017553212,-0.004884325,-0.011243164,-0.015146286,-0.0038109662,-0.009215708,-0.0043178303,0.011254005,-0.005865527,0.010381224,-0.0049846135,0.018789202,-0.020046875,0.014495766,-0.01516797,-0.0013959087,-0.0063642594,-0.017553212,0.006212471]},{"id":"interface-ResolvedMessageFile","type":"interface","source":"main","text":"Interface: ResolvedMessageFile\nDescription: Resolved file data (after URL fetch). Used internally by REST layer.\nProperties: data: any, filename: string, name: string","meta":{"url":"/docs/typedefs/ResolvedMessageFile"},"embedding":[-0.0070078024,0.024284795,-0.018575972,-0.0048920815,0.054412212,0.0058760727,-0.023526592,-0.00071151217,0.019200375,-0.0126776,0.025488999,0.019501425,0.0105033405,-0.021107033,-0.00070140744,0.013469253,-0.0057645724,0.024775397,0.008474033,-0.011094294,0.06614206,-0.0514686,0.024708496,0.004136666,0.020226179,0.017282568,-0.020226179,0.001521981,0.019780178,-0.02039343,0.006768076,-0.03311563,0.041768063,0.01530901,0.032022923,0.0075931796,0.03625994,-0.021564184,-0.012644149,-0.022690339,-0.03637144,0.003470451,-0.014060205,0.0035178387,-0.032067526,0.008022456,-0.032468926,0.06551766,0.034654334,0.017460968,-0.0050007943,-0.019389926,0.004733193,0.043106068,-0.01825262,-0.016970366,0.0122427475,0.03559094,-0.01031379,-0.005926248,0.016000312,0.009812038,-0.04134436,-0.03597004,0.025243698,0.047900587,-0.039894857,0.060254835,0.028744811,0.013803754,0.032312825,0.01806307,-0.02820961,0.0077827303,-0.002330359,-0.037597947,0.0037018145,-0.012699899,-0.011696395,-0.058827627,0.003880215,0.05610702,-0.047722187,-0.06837206,0.005600109,-0.004683018,-0.057534225,-0.0255559,-0.029815216,0.0018216383,-0.039270453,-0.004228654,-0.09339276,-0.004393117,-0.04183496,-0.07122648,-0.05905063,-0.0042035664,0.006968777,0.04616118,0.0008627346,-0.022099385,-0.04078686,-0.01835297,-0.00035645295,-0.04390887,0.040162455,-0.03347243,-0.022690339,-0.015899962,-0.019111175,-0.010386266,0.060968436,-0.0040502534,0.009990439,-0.036750544,-0.03070722,0.0060210233,-0.0023010902,0.005413346,-0.020070078,0.034609735,-0.020973232,0.016401714,0.011540295,-0.015186359,0.015331309,-0.02285759,-0.05878303,-0.02028193,0.03554634,0.050487395,-0.0050035818,-0.026559403,-0.03844535,-0.013145901,-0.019824777,-0.0027443045,-0.013904104,-0.025511298,-0.00032335127,-0.033004127,0.022589987,-0.0015693686,0.032691926,0.050219797,-0.00066586665,0.06248484,0.008841984,-0.02053838,-0.01833067,0.0005362474,-0.031465422,0.010464315,0.049996793,-0.050665796,0.061860442,-0.013424653,-0.036928944,-0.03329403,-0.001692019,-0.029302314,-0.032089826,-0.014428156,0.009555588,0.03349473,0.08674734,-0.037441846,-0.034431335,0.0060265986,-0.00047283154,0.01585536,-0.011651795,-0.0255559,-0.032089826,0.013814904,0.052048404,-0.0037659272,0.000008792636,0.011930547,0.019802477,-0.026760103,-0.047766786,-0.034654334,-0.03153232,-0.008624558,-0.024128694,0.057043623,0.015565461,0.030841019,-0.03398533,0.042860765,0.0126887495,0.021932134,0.008273332,0.04620578,-0.0014913183,0.003612614,-0.048123587,0.003509476,-0.024842296,-0.028633311,0.012008597,0.009767438,-0.051914603,0.019947428,-0.009800888,-0.018642873,-0.038913652,0.034810435,0.03875755,0.04136666,0.011841346,-0.044756275,-0.026224902,-0.024240194,0.040363155,0.014350106,-0.032580428,-0.014974508,0.040073257,0.04415417,0.03670594,-0.02054953,-0.004005653,-0.002570085,-0.023548892,-0.011841346,-0.0512456,-0.010631566,0.013357752,0.023972593,-0.02064988,-0.030038217,0.006991077,0.021608785,-0.027139205,-0.0028362924,0.0072977035,0.006271899,-0.030372718,-0.037040442,-0.005505334,0.042949967,0.016345963,-0.0032836879,0.0021171144,-0.00161815,0.024284795,0.04665178,0.02867791,-0.021764884,0.014539656,-0.039939456,0.0136811035,-0.052137602,-0.060567036,0.034944236,0.0060823485,0.03311563,0.038177747,-0.042169463,-0.027027706,0.0027666045,-0.03133162,-0.022322387,0.034342133,0.045848977,-0.05641922,0.039627254,0.021965586,-0.035256438,0.046027377,0.016814265,-0.03630454,-0.0049088066,0.011088718,0.016178712,-0.034698933,0.031755324,0.035211835,0.0012676206,-0.0065116254,0.025422098,-0.055259615,0.017527869,0.034810435,0.02075023,0.021798335,-0.009756288,0.046919383,-0.008513059,0.0516916,-0.0513348,0.002581235,0.024619296,0.03115322,-0.022478487,0.049060192,-0.0013233707,0.039292753,-0.047855984,-0.018609423,-0.02101783,0.016858866,-0.0011129137,0.004245379,0.016881166,0.04183496,0.01017999,-0.014450456,-0.057578824,-0.05427841,0.010090789,-0.047811385,-0.014015605,0.049461592,-0.01576616,-0.04435487,0.04683018,0.047811385,0.013190501,0.022467338,-0.032290526,-0.0026690415,0.042370163,-0.008451733,0.0076879547,-0.060923837,0.055794816,0.042459365,0.026960805,0.008802959,-0.036951244,0.044377174,-0.008189707,-0.04321757,0.045113076,-0.03902515,-0.0038105273,0.028165009,-0.049818393,-0.035479438,0.03576934,0.0014035117,-0.067480065,-0.007955556,0.029280014,-0.0006529744,-0.005101145,-0.024329394,0.006110224,-0.0051596826,0.017494418,-0.027116906,-0.0003155114,0.00455758,-0.029681416,-0.01786237,-0.014171705,-0.03592544,0.02303599,0.024217894,0.020783681,-0.034721237,0.03293723,-0.022099385,0.0057980227,0.008579958,-0.062886246,0.02836571,-0.011200218,-0.024240194,0.015989162,-0.012744499,-0.036237642,-0.0061492487,0.0051541077,0.014907608,0.026514804,0.019389926,0.076667696,-0.052985005,-0.0519592,0.008044756,0.008797384,-0.04919399,-0.0043903296,-0.021553034,0.037820946,0.034498233,0.06177124,-0.019178074,-0.0021045706,-0.025221398,0.024150994,0.021965586,-0.01041414,0.0041617537,-0.060433235,0.05392161,0.009522137,0.013101301,0.011618345,0.00893676,-0.012610699,-0.012454598,-0.019612927,0.029993616,-0.032647327,0.023816492,-0.032781128,0.016602414,0.014651157,0.019122325,-0.031621523,0.039092053,-0.02820961,-0.011506844,0.020516079,-0.019958578,0.0025756601,-0.048123587,-0.025712,0.036951244,0.0060321735,0.03918125,0.016167562,-0.013993304,-0.05664222,-0.019111175,0.0057868725,0.031688422,-0.0070468276,0.029748315,-0.0070635523,0.012621849,-0.021697985,-0.05909523,0.011997446,-0.00015993344,0.016791966,0.0084684575,0.027273007,-0.07189548,-0.0005094176,0.016011462,0.017483268,0.0015972437,-0.004652356,-0.05392161,-0.0009958382,-0.03848995,0.006589676,0.009979289,-0.0007372966,-0.017137617,-0.009628062,0.021452684,0.0035540764,-0.037620246,-0.011250393,0.018977374,0.026425602,0.021999035,-0.042147163,-0.0068684267,-0.036549844,-0.005981998,-0.026291803,-0.013792603,0.018798973,-0.011138894,0.0035345638,-0.050398197,-0.016736215,0.0070914277,-0.05931823,0.011696395,0.031733025,-0.0042648916,0.014138255,-0.047276184,-0.027072305,0.009382761,0.09820958,0.015833061,-0.01033609,0.022511937,0.034966536,-0.021430383,-0.032848027,0.02856641,-0.009717262,-0.014495056,0.009756288,-0.0065116254,-0.06217264,0.03387383,-0.01547626,0.040363155,-0.013725704,0.030038217,-0.012577249,0.034230635,0.036215343,-0.03340553,0.000697923,0.0013616991,-0.011897096,0.0757757,0.041790362,-0.0067346264,0.00013920132,-0.049862992,0.03608154,-0.017360618,0.0043624546,-0.01804077,0.034475934,0.00074287166,0.0008933972,0.031911425,-0.009198786,-0.030328117,0.014104805,-0.024017194,0.014194005,-0.026737804,0.019746726,0.0511118,-0.016892316,-0.0013714554,0.019624077,0.025243698,0.010815542,-0.004939469,-0.016602414,0.026648603,0.0068963016,0.0035345638,0.011729846,-0.013380052,0.030417318,-0.006879577,0.060611635,-0.013569603,0.013525003,0.014104805,-0.019612927,0.0020808768,-0.037352644,0.041567363,-0.013502702,0.032669626,0.007743705,0.010185565,-0.0072977035,0.015119459,0.017672818,-0.008083781,-0.037085045,0.022634588,-0.0014153586,-0.0069855023,0.012543798,0.013881804,-0.002728973,-0.005544359,-0.02083943,0.031108622,0.04642878,0.017249117,0.02829881,0.012175848,0.036995843,-0.014996808,-0.011484545,0.009895664,0.0074147787,0.0056502842,-0.042526264,-0.030172016,0.027273007,0.009934689,0.01029149,0.021575334,-0.025868101,0.024373995,0.01538706,0.031108622,-0.01538706,0.012220448,0.003721327,-0.00096169126,-0.005753422,0.014428156,0.024507795,-0.008574383,0.030194318,-0.0054244963,0.02092863,-0.009639213,-0.0023624154,0.061102238,0.045982778,0.014082504,-0.0114956945,-0.03387383,0.0027233982,-0.029302314,0.0030383868,0.0010927042,-0.03880215,-0.021631084,-0.013201651,-0.008251032,0.029659115,0.013614203,-0.023437392,-0.016513214,0.02059413,-0.037754048,-0.014573107,-0.00454643,0.0058091725,-0.019233825,-0.008524208,-0.024128694,-0.014539656,0.037999347,0.022166286,0.0010529822,-0.016892316,-0.0042342287,0.034542833,0.03882445,0.008485183,-0.03686204,-0.0014634432,-0.0017477693,0.032335125,0.04136666,-0.0019972515,0.018810123,-0.01800732,0.0016516001,0.0017644943,-0.0136811035,0.04611658,-0.046963982,-0.039917156,0.0059429733,0.019936277,0.020315379,0.0021073583,0.01805192,0.052093003,-0.0083179325,0.05387701,0.011356319,-0.0012968894,-0.03808855,-0.0018090946,-0.057935625,0.015186359,0.061860442,-0.009405062,0.0014982871,0.011183494,0.016256763,0.004398692,0.04642878,0.012298497,0.0023944718,-0.04185726,0.013725704,-0.014751507,-0.016100662,0.0012160516,-0.027785908,-0.009299136,-0.015197509,-0.03902515,0.000057231082,-0.019021975,0.013168201,-0.009767438,0.010743067,0.009644788,0.02044918,-0.0043094917,-0.03133162,-0.017828919,0.010497766,0.034275234,0.036549844,0.015866512,0.04112136,-0.019122325,-0.0056391344,-0.05905063,-0.019813627,0.02836571,-0.024329394,0.004429355,0.011874796,-0.0073757535,0.06194964,0.006946477,-0.026849305,-0.04089836,-0.024864597,-0.007108153,0.00792768,0.018297222,-0.008830834,0.075106695,0.017650519,0.02820961,0.029257713,-0.026202602,-0.024418594,0.00097981,0.029659115,0.0012062953,0.016022611,0.010681742,0.00884756,0.01834182,0.028945513,0.012655299,-0.0018773886,0.0025157286,-0.008072631,0.01575501,0.011216943,0.0044544423,0.005374321,0.031264722,0.015509711,0.001350549,-0.008239882,0.0049896445,-0.00396384,-0.037620246,-0.006885152,-0.016524363,-0.031889126,0.0044767424,0.010230165,0.004780581,-0.008825259,0.007832905,-0.00505097,-0.0032920502,-0.0010048976,0.009756288,0.00014129195,-0.0036823018,-0.010921467,0.057935625,-0.0029324614,0.02054953,0.016401714,0.002735942,-0.0028348984,-0.030216618,0.027317606,-0.0071471776,-0.024819996,-0.008920034,-0.028990112,0.012365398,0.049907595,-0.032424327,0.014818408,0.0063053495,-0.03347243,0.0041756914,0.008986935,-0.01540936,0.026224902,-0.052717406,-0.0007721405,0.0256674,-0.024864597,-0.021709135,-0.021497283,-0.018888174,-0.020025479,0.011517995,0.011194644,-0.014060205,0.002496216,0.02071678,-0.012432299,-0.08251032,0.02305829,-0.00318055,-0.010670591,0.024195595,-0.014383556,0.0132351015,0.017026117,0.034141432,-0.08108312,0.026492503,-0.014963358,0.0515578,-0.012398848,0.040474657,-0.0034063382,0.004702531,0.019200375,0.008579958,0.0075485795,-0.014584256,0.021854086,-0.022121686,0.032335125,-0.00055889593,-0.02287989,-0.00029808944,0.0060600485,0.078184105,-0.029614516,0.030216618,0.023727292,0.011032968,0.028767113,-0.013647653,-0.0050844196,0.0011310325,-0.020092377,-0.0067792265,0.032268226,0.0022941213,-0.016568964,0.0015289497,0.0129229,-0.013413502,0.015052559,0.025132198,0.022088235,0.017171066,-0.02339279,-0.040028654,-0.011863646,0.026983105,-0.017840069,0.009349312,0.032803427,-0.010553516,0.019902827,-0.026648603,-0.03077412,-0.016290214,-0.011596045,-0.009867788,-0.011607195,0.05427841,-0.0076600797,0.0068684267,0.0108489925,0.034498233,-0.0129452,-0.012331948,0.031287022,0.00039722028,0.01788467,0.01538706,-0.0002824097,0.014573107,-0.024797697,0.012142397,-0.009895664,-0.002551966,0.012142397,0.019334175,0.027339906,0.003094137,0.027139205,-0.012409998,0.021731434,0.01548741,0.032245927,0.03572474,-0.0024530096,-0.018297222,0.02809811,0.021999035,0.033740032,-0.021686835,-0.03576934,0.014829557,-0.039604954,0.03342783,-0.018787824,-0.00453528,-0.006093499,-0.029168513,-0.005820323,-0.061146837,0.010966067,0.030841019,0.013413502,-0.027384507,-0.012164697,0.016580114,0.021474984,-0.00017029949,-0.0039582653,0.065160856,-0.039984055,0.00386349,-0.008000156,-0.013971005,-0.0029882116,0.027250705,-0.021363484,0.010893593,0.054813612,0.0034676634,-0.0011310325,-0.025935002,0.0016042124,-0.031733025,0.016502064,-0.0127668,0.04888179,-0.029815216,-0.012075497,-0.02085058,0.032981828,-0.0123876985,-0.04098756,0.028967813,0.014595407,0.0258012,-0.018319521,0.0008620377,0.0057589975,-0.005820323,0.03846765,0.018943924,-0.016992666,0.02039343,-0.004061403,-0.040028654,-0.027094604,0.01534246,0.05918443,-0.050442796,-0.005887223,0.0042314413,0.052628204,-0.022601137,0.021162782,-0.034520533,-0.026113402,-0.009137461,-0.03081872,-0.044421773,-0.0021547459,-0.023927992,0.055928618,0.002621654,0.0038049524,0.015955713,-0.020170428,0.016847715,0.01530901,0.01817457,0.00776043,0.05360941,0.013257402,-0.0060098735,-0.05369861,-0.00023066653,0.045001574,0.047053184,-0.01761707,-0.026648603,-0.0016892316,-0.013948704,-0.00898136,-0.006444725,0.03342783,0.026537104,0.011908246,-0.0044265673,0.0137814535,-0.0022871527,0.008658009,-0.03788785,-0.02068333,0.0058983727,0.032156724,0.002935249,-0.029324614,0.021720285,-0.006182699,-0.002758242,0.0060600485,0.03329403,0.010408565,0.03576934,0.005522059,-0.018899323,-0.012599549,-0.010609266,0.02305829,-0.07211848,-0.00039756874,-0.004200779,-0.043172967,0.03115322,-0.021865236,-0.020984381,0.032379724,-0.0037910147,-0.018319521,0.022099385,0.013569603,-0.0075095543,-0.009444087,-0.007136028,-0.006188274,-0.019746726,-0.0034147007,0.03273653,0.015966862,0.026537104,0.014316656,0.04642878,0.005703247,0.019467976,-0.018542523,0.0041979915,-0.035011135,0.025199099,-0.037441846,0.03846765,0.02314749,-0.02805351,0.0057060346,-0.019501425,0.031844523,-0.0033310754,0.031866822,-0.022812989,-0.011094294,-0.021408083,0.017371768,0.00010427033,0.04346287,0.012019747,0.0051150825,-0.0048112436,0.004186841,0.02287989,0.040452357,-0.010140965,0.012978651,0.041210562,0.011244819,0.001048104,0.013391202,0.0075708795,0.016490914,0.019367626,0.011651795,-0.0031666122,0.011529145,0.016513214,0.006639851,-0.04339597,-0.0013428833,0.0041673286,0.008435008,0.02037113,-0.006662151,-0.008568808,-0.0051095076,0.04593818,-0.012053197,-0.009929114,0.024061793,0.014729207,-0.01545396,0.020872882,-0.013212801,-0.011116593,-0.024730796,0.0016488127,-0.005103932,-0.011406494,0.017104166,0.009148611,0.0061938493,-0.029837515,-0.010185565,0.000033580796,0.022177435,-0.010592541,-0.014394706,-0.010531216,-0.017093016,0.014851858,0.008741634,0.021831784,0.02308059,-0.0004338064,-0.020136978,-0.0034174882,0.018419871,0.01300095,0.016702766,0.004872569,-0.00058502884,0.0063555245,0.019980878,0.014784957,0.0039025152,-0.008808535,-0.008819684,0.039069753,-0.040073257,0.024976097,0.0032836879,-0.020170428,-0.006221724,-0.015119459,-0.0036377017,0.0014251149,-0.01802962,-0.024039494,-0.0070468276,0.0064949,0.0043791793,-0.030484218,-0.019412225,-0.0024139844,0.019891677,0.009851064,-0.030506518,0.039225854,0.016089512,0.0017686756,0.0062161493,-0.013859504,0.004786156,0.008585533,0.014428156,-0.008546508,0.01304555,0.009393912,0.0026760104,-0.0007435685,-0.015699262,0.01815227,0.028454911,0.013123601,0.039783355,-0.044800874,-0.010631566,-0.0032809002,-0.022021336,0.011874796,0.004069766,-0.020783681,-0.022021336,-0.013736853,-0.0052042827,0.015888812,-0.0021728647,-0.011311719,0.03617074,-0.005402196,-0.01295635,-0.039069753,-0.015989162,0.0075597293,-0.05949663,0.0019470763,-0.03630454,0.026916204,-0.018620573,-0.00031533715,0.020516079,0.010993943,-0.0028878613,-0.026224902,-0.016669314,-0.01585536,-0.0039749905,0.002843261,-0.00903711,0.004172904,-0.002968699,0.037642546,-0.03295953,0.022690339,0.022155136,-0.045670576,-0.026804704,-0.01576616,0.014115955,0.0074370787,0.012532649,0.05980883,0.031866822,0.008697034,0.002273215,0.016424013,-0.018888174,-0.023972593,-0.0113005685,0.012421148,-0.015732711,0.008663584,0.0018899323,0.012220448,-0.024708496,-0.016212163,0.00019948125,0.00030697463,0.019769026,0.021274284,0.026113402,-0.03311563,0.004039103,0.0104029905,-0.0073924786,-0.027206106,0.016078362,0.04114366,-0.0006571557,0.021631084,0.0004742253,0.0014550807,0.033940732,0.034944236,-0.028811712,-0.02277954,-0.012265048,-0.009421786,0.02030423,-0.0030188742,-0.01554316,-0.011016243,0.024284795,0.011412069,0.0006393853,-0.0004393814,-0.009031535,-0.045291476,-0.009800888,-0.0010968855,-0.0035763765,0.010363965,-0.040296257,0.016468614,-0.01017999,0.00643915,0.010676166,-0.008111657,-0.0029101614,-0.009700538,-0.0254444,0.00007086375,0.007191778,-0.000450183,-0.010782092,0.01554316,0.031889126,0.0129340505,0.023704993,0.00225649,0.0053213583,-0.0148741575,-0.010168839,-0.017048417,-0.04136666,-0.023548892,0.00048467846,0.0032669627,0.014093655,-0.02834341,0.0043457295,0.013223952,0.013346602,-0.009694963,0.003345013,0.0059652734,0.005870498,-0.059541233,-0.012499198,0.022210887,-0.0069186017,0.03378463,0.016256763,-0.015777312,-0.021619935,-0.0006331134,0.026269503,0.014851858,0.0129340505,-0.034587435,-0.0019108386,0.039560355,0.0020307016,0.0067123263,0.026983105,-0.0042871917,-0.027139205,-0.044890076,0.0052349456,0.00074565917,0.025488999,-0.0008223157,-0.007961131,-0.0062941993,0.028834011,-0.0024976097,-0.013625353,0.0011728451,0.00917091,0.02020388,0.005101145,-0.04629498,0.03561324,-0.00783848,-0.006695601,-0.067480065,-0.03652754,0.03862375,0.004850269,-0.022668038,0.010330515,-0.0038551274,-0.021564184,-0.035167236,0.052271403,0.024284795,-0.03855685,-0.019021975,0.019144624,-0.033561632,-0.029057013,-0.0018606635,-0.008652434,-0.040207054,0.012755649,0.026425602,-0.011099868,-0.046874784,-0.021920985,-0.004108791,-0.016245613,-0.0024307095,0.010614841,-0.03686204,-0.008055907,0.0122427475,0.024931496,-0.012711049,0.0019345325,-0.012365398,0.0012711049,0.029569915,0.0057812976,0.032424327,0.025957301,-0.024084093,0.021251982,0.021731434,-0.03353933,0.014260906,-0.023816492,0.03900285,0.0255559,-0.03115322,0.007788305,-0.004878144,-0.0047304058,-0.019356476,-0.005452371,-0.005725547,0.0129229,0.004192416,0.021508433,0.024797697,0.026024202,-0.03369543,-0.0019219887,0.0015066497,-0.0006282352,0.014383556,-0.017327167,-0.008390408,-0.0034370008,0.012577249,-0.017650519,-0.049907595,0.013313152,0.0054244963,0.017282568,0.004245379,-0.016568964,-0.013179352,-0.001310827,-0.009700538,-0.0047276183,-0.0065060505,0.022634588,-0.019936277,0.0067903763,-0.015721561,-0.014818408,-0.016167562,-0.0069186017,0.032134425,-0.03846765,0.016022611,-0.008323507,-0.024284795,0.03059572,0.032156724,-0.011278269,-0.0065116254,-0.00900366,-0.03309333,-0.007989006,0.0015930624,0.0010571635,0.009784163,-0.00041394535,-0.013056701,-0.030395018,-0.0077827303,0.011963996,-0.022233186,-0.010720767,0.0005550631,-0.019735577,-0.020872882,0.012287348,0.021218533,-0.011596045,-0.02072793,-0.013413502,-0.043128368,-0.017728569,-0.019278426,0.016401714,0.013112451,0.0012885269,-0.009260111,-0.00320285,0.011428795,-0.0255336,-0.008674733,0.021374634,0.039047454,0.0254667,-0.016323663,0.0019219887,-0.03316023,0.009276836,0.021240832,0.033740032,0.00396384,0.012097797,0.042771567,0.021642234,-0.023281291,-0.0042202915,-0.016089512,-0.03828925,0.011841346,0.010297065,-0.014405856,0.050977997,-0.020136978,-0.0042565293,-0.028633311,-0.045848977,0.013491552,-0.03918125,0.011897096,0.018497922,-0.032089826,0.016145263,0.009577887,-0.044644773,0.040630758,0.030439619,0.0015874874,-0.008708184,0.013703403,0.030551119,0.0045687305,-0.013101301,-0.007916531,-0.012231598,-0.018899323,0.012030897,-0.027852809,0.016468614,0.0029491864,-0.01029149,0.023704993,0.00060837425,0.0026021414,0.010085214,0.01787352,0.02064988,-0.022790689,0.014004454,0.011283844,-0.009572312,0.0020014327,0.00010035039,0.039092053,0.012064347,0.024842296,0.013959854,-0.018419871,0.010263615,-0.00900366,-0.008334657,0.011272694,0.007537429,0.026202602]},{"id":"interface-RESTCreateRoleBody","type":"interface","source":"main","text":"Interface: RESTCreateRoleBody\nDescription: Body for POST /guilds/{id}/roles (create role). All fields optional.\nProperties: color: number, hoist: boolean, hoist_position: number | null, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/RESTCreateRoleBody"},"embedding":[0.005434144,0.041697323,-0.004866225,0.040152125,0.003750568,-0.02850547,-0.0005225138,0.0082449075,0.036462095,0.03272594,0.023131866,-0.00878688,0.0040763286,-0.008585082,0.014933084,0.020433534,-0.014760114,-0.0008295357,-0.013364823,0.039875373,0.01179656,-0.045594916,0.010412799,0.0028439166,-0.012592223,0.022001795,0.021655856,0.009461464,-0.0273754,-0.064667754,0.044211157,-0.043357834,0.0046788407,-0.0139413895,-0.01299582,0.00998614,0.02901285,0.029520229,0.005638825,0.010043796,-0.00086557114,-0.03666966,0.031203805,-0.035608776,-0.060147464,0.050322764,0.023097273,0.03184956,0.005382253,0.007068711,0.00041548858,-0.008861834,0.0291051,0.07301644,0.006993757,-0.0041801105,-0.056872565,0.00071025843,-0.032841254,0.06060872,-0.015544245,-0.08473228,0.014056703,-0.002179423,-0.014321923,0.007333932,-0.10267504,0.019326525,0.015163711,0.048708376,0.04091319,-0.0449261,-0.00064071006,0.053090286,-0.010787568,-0.042227764,0.03367151,-0.0007106188,-0.011911874,-0.0682194,-0.06628214,0.048892878,-0.052213904,-0.080719374,0.009328853,0.01308807,-0.0037476853,-0.028620785,-0.05392054,-0.010222533,-0.03590859,-0.04485691,-0.052721284,-0.0074780737,-0.008504363,-0.04976926,-0.027306212,0.026360642,-0.007645278,0.055996183,0.024492566,0.0030471564,-0.07015667,-0.020364346,-0.0061577354,-0.008187251,-0.0049642418,0.0021578018,0.009940014,-0.014333455,-0.07453858,0.028436283,0.012649879,0.0064863786,-0.0014435796,0.01945337,0.020456595,-0.036992535,0.035585713,-0.07061792,-0.019326525,-0.043427024,-0.013549324,-0.0547508,-0.04139751,-0.0028540066,-0.05553493,-0.04536429,-0.042250827,0.017827451,0.013203383,0.003442105,0.025945514,-0.00017711417,-0.03752298,0.022140171,-0.020502722,-0.018369423,-0.011721606,-0.04494916,-0.00011098914,0.0012929514,0.0241005,0.018058077,-0.07020279,0.005388018,-0.0050910865,0.021644324,-0.015106055,0.06259211,-0.040959317,0.008879132,-0.038860615,0.016086219,-0.018069608,-0.09321935,0.009790107,0.0076395124,-0.043588463,-0.029174289,0.04898513,-0.018380955,0.0060943128,-0.04151282,-0.0038774128,-0.021725044,0.012384659,0.0041483995,-0.037061725,0.047462992,0.035516527,-0.0033527368,-0.02548426,0.0073915883,-0.055996183,0.010706848,0.021748107,-0.02617614,-0.0026190553,0.0016360087,0.048708376,0.016397564,-0.051429775,0.004347315,-0.059778463,0.009807404,-0.024953818,0.022739802,0.011957999,-0.007293572,-0.028228719,0.0144141745,0.012938162,-0.027283149,0.046355985,-0.03099624,0.016720442,-0.010464691,0.029151225,-0.015820997,0.03503221,0.00445398,0.03909124,-0.03452483,-0.022174766,0.017931232,-0.022762863,-0.01790817,-0.04810875,0.005984765,0.036093093,-0.055396553,-0.0018695184,-0.02659127,-0.0019055539,0.030857865,-0.03124993,0.036531284,-0.00012369163,0.026222266,-0.036715783,0.029197352,0.059271086,-0.030696426,-0.004033086,0.03962168,0.0022947364,0.0048806393,0.0025873443,0.008838772,-0.007945092,0.027052522,-0.026245328,-0.013307165,-0.037546042,-0.012903568,-0.008060406,0.043357834,0.016028563,0.012523035,-0.018565455,-0.037753604,-0.010049562,-0.0023985186,0.031964872,0.005021898,0.019142024,0.023235649,0.0041916417,0.009075164,0.06448325,0.028251782,-0.0020972623,-0.015867123,0.0061404384,-0.007368526,0.03159587,0.013791482,-0.02926654,-0.0101994695,-0.0077548255,-0.018830677,0.00688421,0.019683996,-0.013457073,-0.00070881704,0.0047278493,-0.027951967,-0.0018349243,0.00072683475,-0.016155407,-0.00022035668,0.059086584,-0.000565396,-0.041535884,0.011392963,0.034478705,0.010262892,0.0071897903,-0.011946468,0.039806183,0.009369213,-0.02850547,0.012027187,-0.011323775,0.026106952,0.018703833,0.012546097,0.03962168,0.06000909,0.031572808,0.0217827,0.020791005,-0.014910022,-0.0016749271,-0.027283149,0.023293305,-0.02608389,0.069372535,0.0045865905,0.0009952987,0.014114359,0.020860193,-0.034640145,-0.0169626,-0.0076856376,0.010228298,0.0036006607,0.0044424483,-0.044303406,0.034409516,0.05899433,-0.020975506,0.00990542,-0.04381909,-0.0047537945,0.003629489,0.021379104,-0.04407278,0.0402905,0.03390214,-0.022393862,0.011537105,-0.032702878,0.021079289,-0.03934493,-0.000299995,-0.00900021,-0.020502722,0.010003437,0.0024878865,-0.06568251,0.021644324,0.025023006,0.060562596,-0.046955615,-0.02850547,0.059547838,0.06637439,0.008919491,0.013434011,-0.008475535,-0.002009336,0.002921753,-0.031226868,0.0022659083,-0.03394826,0.020687222,-0.03351007,0.041535884,0.006434487,0.030811738,-0.00020269933,-0.005428378,-0.03556265,-0.027283149,0.009870826,-0.015913248,0.0031451727,0.054566298,-0.050830144,-0.020548847,-0.024953818,0.037338477,0.030142922,0.021206133,0.004451097,0.018207984,0.021425229,-0.035262834,-0.004923882,0.033602323,-0.0838559,-0.013641574,-0.00088719244,-0.014529487,-0.03434033,-0.016697379,-0.023558525,-0.028390158,0.010257127,0.028551595,0.010349377,-0.013376353,-0.01376842,0.004376143,-0.00736276,0.01196953,-0.010239829,-0.025461197,0.019960748,0.027098648,-0.01489849,-0.0004508033,0.020341283,0.030627238,0.030142922,0.017838983,0.021321446,-0.016512878,0.00977281,-0.0007862932,-0.0041455165,0.009057867,-0.023281774,-0.023016553,0.008371753,0.0020050115,-0.024999944,-0.04778587,0.03159587,-0.034455642,0.024792379,0.044510968,0.055903934,0.00426083,0.03978312,-0.037177037,-0.0006598088,0.025161382,-0.01704332,-0.003736154,0.0022471698,-0.03514752,0.036784973,0.00223708,-0.007086008,-0.03676191,-0.024792379,-0.023258712,-0.0215982,0.049538635,0.039229617,0.016478283,0.016547471,-0.011900342,-0.017988889,-0.040728692,0.030235171,0.007258978,-0.0035631838,-0.0016648371,0.02661433,0.009836232,-0.0135723865,0.0031451727,0.05544268,-0.064022,0.025945514,-0.01463327,-0.013307165,0.055996183,-0.013145727,0.05295191,0.03796117,-0.008348689,0.00787014,0.047831997,-0.043611526,0.009686325,0.04075175,0.013699231,0.055903934,0.03108849,-0.042735144,-0.01075874,-0.04448791,-0.031111553,-0.028828349,-0.0387453,0.00048936123,0.016674317,0.04750912,-0.0056417077,-0.007258978,-0.008809944,-0.0021131178,0.013053476,0.000069413254,0.027813591,0.011398729,-0.022151703,-0.023892935,-0.076614216,0.042550642,0.090082824,0.011854216,-0.0052294624,-0.039921496,0.0061635007,0.007414651,0.020744879,-0.018611582,-0.010879818,0.017412322,-0.03962168,0.01299582,-0.0370156,-0.008844538,0.0042031733,0.022220891,-0.06595926,-0.022024859,-0.01515218,0.040613376,0.032772068,0.016236126,-0.014990741,-0.026868021,0.0015610551,-0.008527425,0.038952865,0.040475,-0.034893833,-0.060331967,-0.034155827,-0.056457438,0.01705485,-0.015890185,-0.004935413,-0.02359312,0.055165928,0.027190898,-0.0066651143,-0.0024114912,0.00148466,-0.021298384,-0.04107463,0.024515627,-0.014564082,0.011911874,-0.009294259,0.03221856,0.016570535,-0.014760114,0.002714189,0.0136877,0.015728747,0.024769317,-0.00782978,-0.014172016,-0.0036698487,0.0148177715,0.021044694,0.0009866502,0.03821486,-0.02041047,0.009351917,0.03828405,0.035931654,0.029289601,-0.028551595,-0.0007253933,0.005413964,0.0014363724,0.03244919,0.009219306,-0.026545143,0.027190898,0.009455699,-0.006451784,-0.013560855,-0.00027332877,0.003891827,-0.04907738,-0.007518433,0.010770271,0.04554879,-0.0013196176,-0.02815953,-0.019868497,0.029935356,0.04485691,0.01851933,0.0121425,-0.0052092825,-0.008642739,0.0014046612,0.028713034,0.006791959,-0.030604174,-0.060470343,0.0000071564123,0.0038341703,-0.03666966,-0.010908647,0.013457073,0.0057512554,-0.008642739,-0.004869108,0.022532238,0.031665057,0.06886516,-0.0010306134,0.0039177723,-0.031457495,0.0077951853,0.012592223,-0.02091785,0.0075991526,-0.0008381842,-0.005451441,-0.048892878,0.0008951202,0.010729911,-0.001212232,0.05175265,-0.014229673,0.01162359,0.031157678,0.027260086,0.044141967,-0.047070928,-0.032864317,-0.01652441,-0.025622636,-0.012154032,-0.0003008959,0.00061440415,-0.028943662,0.015694153,0.0015898835,0.018565455,0.01489849,-0.031272992,-0.0019588862,-0.022163235,-0.021425229,-0.023339432,-0.013653106,-0.016374502,-0.05355154,-0.0058579203,-0.009386511,-0.03623147,-0.029658604,0.036462095,0.036784973,-0.01697413,0.0099630775,0.028989786,0.00097223604,0.02935879,-0.049907636,0.0256457,-0.02566876,0.009184712,0.0078124823,-0.007380057,0.009824702,-0.016674317,-0.04082094,0.012523035,-0.042896584,0.005428378,0.00067962834,-0.048708376,0.015428932,-0.011093148,0.020548847,-0.030419674,-0.015832528,0.022140171,0.009582543,0.045940857,0.02031822,-0.008936788,0.024238875,-0.0275599,-0.0008201665,0.041489758,0.016720442,-0.017031789,-0.0064863786,0.031134617,0.012269345,-0.016985662,-0.0061058444,0.0025758129,0.012488441,0.0006003504,-0.0052640564,0.004136868,-0.05613456,0.021194601,-0.03383295,-0.0020107774,-0.002365366,0.041789573,-0.04621761,0.0067458334,0.0025080664,0.0023624832,-0.0047912714,0.0066362857,0.03351007,-0.01841555,-0.0086485045,-0.008458237,-0.030073732,-0.0045865905,-0.00076683407,0.029543292,-0.018657707,-0.041974075,0.00005770174,-0.021448292,0.063145615,0.02049119,0.0070802425,-0.027306212,-0.001445021,-0.034801584,0.005990531,-0.021194601,0.034294203,-0.013803014,0.010493519,0.013549324,0.023962123,0.026798833,0.012523035,-0.022024859,-0.03108849,-0.0038284047,0.026037764,0.02979698,0.01592478,-0.017423853,-0.035608776,0.014160485,0.01652441,0.011854216,0.030950114,-0.01158323,0.02721396,0.009150118,0.044972222,0.012499972,0.010643426,-0.025691824,-0.0054918,-0.0088848965,-0.012038718,-0.030719489,0.0030615707,-0.003649669,0.0022356384,-0.030488862,0.016939538,-0.033002693,0.0062903455,-0.029589416,-0.009605606,0.012719068,-0.03194181,-0.024238875,-0.022843583,-0.059547838,0.06042422,-0.010107219,0.0113122435,-0.0044770427,0.0006886372,-0.03579328,-0.025761012,0.0126268165,0.00029152667,0.018242579,0.002963554,0.0065325038,-0.0110758515,0.009709388,-0.0058002635,0.015013804,-0.03461708,0.0072186184,-0.021298384,-0.0018738427,-0.03902205,0.023201054,-0.016409095,0.0021491533,-0.0007437714,0.008314095,0.023823747,0.015394338,0.003248955,0.04494916,-0.014702458,-0.03297963,0.03623147,0.023443213,-0.017804388,0.01386067,0.0055090976,-0.021471353,-0.060331967,-0.008331393,0.04432647,-0.026729645,-0.025461197,-0.017343134,0.028459346,0.032679815,-0.0035631838,-0.015578839,0.007068711,-0.021840356,0.046471298,-0.0070975395,0.03452483,-0.0000011598905,0.0042031733,-0.010908647,-0.01299582,-0.005866569,0.007137899,0.0028525651,0.010320549,-0.011300713,-0.017804388,-0.004624067,0.01765448,-0.011375667,0.047209304,-0.01945337,0.021655856,0.02342015,-0.0241005,-0.00035675082,-0.019776247,0.00019423099,0.0130996015,0.020618035,0.0043703774,-0.0012107906,0.014010577,-0.008562019,-0.00013567341,0.021206133,-0.025207508,0.044141967,0.009743982,0.018738426,-0.006878444,0.023500869,0.022601426,-0.0045981216,0.02935879,0.018749958,-0.022636019,0.014298861,-0.020295158,0.0001516191,-0.050645642,-0.052213904,0.0225553,-0.004866225,-0.005388018,-0.0071840244,0.008429409,-0.046033107,-0.002523922,-0.012119438,-0.027859716,-0.013272571,-0.0034997615,0.000405759,-0.020341283,0.024285,-0.026360642,-0.011410261,-0.017838983,0.023616184,0.027998092,-0.0021044693,-0.0032576034,0.00537937,0.047416866,0.009911186,0.023454744,-0.0041801105,0.004990187,0.0056907157,-0.026983334,0.013191852,0.0143449865,0.041535884,0.03261063,-0.034755457,-0.00184069,0.014748583,0.0088848965,0.00086268835,0.03005067,-0.03074255,-0.02832097,0.01886527,0.022059452,-0.020502722,-0.002016543,-0.021575136,0.0076222154,0.03833017,-0.02393906,0.0050737895,-0.026383704,0.014183547,0.017642949,-0.010211001,-0.011560168,-0.032403063,0.042412266,-0.005445675,0.028228719,0.016247658,-0.006878444,0.018484738,0.0020050115,0.0069533978,-0.0016273602,0.016685847,-0.009409573,-0.035677966,-0.014114359,0.015175243,-0.03639291,-0.01489849,0.010343611,0.009916952,-0.018726895,-0.020179844,-0.004837397,-0.018184923,-0.058071826,-0.010574238,0.008994444,0.004015789,-0.020952443,0.018023483,-0.00030467962,0.011790794,0.018369423,-0.0047912714,-0.018300235,-0.013364823,-0.0016201532,-0.019049773,-0.014229673,-0.04400359,-0.009282728,0.013364823,-0.04407278,0.020733349,0.0038860613,0.037223164,-0.029889232,0.062130857,0.021459822,-0.02504607,-0.035977777,-0.02118307,-0.0052842363,-0.0061635007,-0.00044792047,-0.032241624,-0.031572808,0.03332557,0.025253633,-0.0048806393,-0.030189047,0.02290124,0.012799786,-0.019257337,0.016489815,0.037084788,-0.01420661,-0.012892038,-0.03607003,-0.031203805,0.06397587,0.009282728,0.017089445,-0.06383749,0.0015336681,-0.0036698487,-0.0037419195,0.028274843,-0.00921354,0.016155407,0.0033988622,-0.04513366,0.04460322,0.0034478705,0.014114359,-0.03773054,0.025922451,-0.0026882435,-0.054197297,0.009951546,-0.021748107,-0.0013354733,0.012315471,0.015059929,-0.012453847,-0.027698277,-0.006872678,0.00058521546,-0.0010399827,-0.020076063,0.041028507,-0.009046336,-0.0512914,-0.0028338267,0.013791482,-0.011162337,0.0235124,0.008677333,0.0071609616,0.009519121,0.0000059514773,-0.0043703774,-0.024238875,0.03203406,-0.01054541,0.014102828,0.014471831,0.019061305,-0.017977359,-0.022313142,0.049907636,0.008567785,0.02099857,-0.0061173756,0.0010133164,0.016374502,0.018265642,0.029381853,-0.005382253,-0.02160973,0.00447416,-0.0135377925,0.024261938,0.013826076,0.028828349,-0.0008093559,-0.04031356,0.0066362857,-0.009236603,0.007328166,0.047739744,-0.016282251,0.04264289,0.01299582,0.025415072,0.0122578135,0.012799786,0.053367037,-0.0069533978,-0.0067688962,0.0014277239,-0.024953818,0.021171538,0.023915999,0.012476909,0.0035055273,0.022151703,-0.027951967,0.044557095,0.007086008,0.0048806393,-0.0038255218,-0.008585082,0.020029936,0.039298806,-0.002120325,-0.0046384814,-0.0354704,-0.02712171,-0.002510949,-0.0071263677,0.0014803357,-0.0066651143,-0.024492566,0.031895686,0.047647495,-0.009478761,0.024792379,0.005791615,-0.037938107,0.037246227,-0.024054375,-0.02247458,-0.029151225,0.027306212,0.029912295,-0.0077432944,0.004428034,-0.01894599,0.012430783,-0.033625387,0.01697413,0.04637905,-0.012107906,0.0016850169,0.016236126,0.009588309,0.00067854725,0.0097958725,-0.018565455,0.012004124,0.015648028,-0.004569293,-0.007945092,-0.043334775,-0.027629089,-0.011531339,-0.008994444,-0.008464003,0.011900342,-0.026844958,0.025299758,0.020295158,-0.009202009,0.030650299,-0.0062384545,0.02866691,-0.0118196225,-0.015394338,-0.011179633,-0.0013455632,-0.016547471,-0.0010327756,0.028390158,-0.010182173,-0.014068234,-0.014840834,0.023316368,-0.033371694,0.005388018,0.00460677,-0.001509164,-0.002904456,-0.013318697,-0.011364135,0.006809256,0.057149317,0.019118961,-0.0075991526,-0.003442105,0.033025756,0.025438135,0.035770215,-0.013653106,-0.0057743182,0.01981084,-0.00649791,-0.030765614,-0.013872202,0.0038341703,0.004422269,-0.005549457,-0.034063578,0.035239775,0.027629089,-0.00460677,0.010868288,0.0114794485,0.0013246626,0.016662786,0.016755035,-0.014667864,0.025784075,-0.019430308,0.0079739215,0.028597722,-0.012603754,0.026729645,0.011934936,0.013549324,-0.012373127,0.0038284047,0.02841322,-0.012004124,0.016916474,0.0026392352,-0.00073296076,-0.015855592,-0.012684473,-0.0073396973,-0.00038774128,-0.0040042577,-0.009029038,-0.024331126,0.0016360087,-0.01308807,-0.027975028,-0.00016900619,0.0035862466,-0.0046586613,-0.001308807,-0.02194414,-0.009288494,0.046563547,0.006993757,0.02212864,-0.009778576,0.039206553,-0.012857444,0.022762863,-0.010211001,0.06960317,0.0139067955,0.021851888,0.01789664,0.04432647,0.004782623,-0.0071090707,-0.0030990473,0.012269345,0.008262205,-0.008221845,0.037776668,-0.016339907,-0.0028295023,0.0042348844,0.0030327423,-0.011531339,0.021252258,0.05613456,-0.03563184,0.05193715,-0.005405315,-0.03493996,-0.0012597988,-0.007996984,0.031872623,-0.01790817,-0.0217827,0.037384603,-0.0011581789,0.019441837,0.002275998,0.0033498541,-0.0013902471,0.005307299,-0.0076510436,0.019868497,0.022762863,0.03348701,-0.0025527503,0.022797458,-0.00092394854,-0.007991218,0.016259188,0.013284103,0.018150328,-0.0077202315,0.03325638,0.01282285,-0.008221845,-0.056088436,0.040659502,0.009415339,-0.023662308,-0.0056763017,0.010781802,-0.0041858763,0.031019302,0.016847286,-0.006428722,0.005062258,-0.016801162,-0.02832097,0.046978675,0.020168312,-0.0061116097,0.014933084,0.012361595,-0.016755035,-0.013630043,-0.010591535,0.033625387,-0.033164132,0.0038168733,0.0013369146,-0.028689973,0.009755513,-0.005310182,0.011191165,-0.009824702,-0.029497165,0.018150328,-0.02290124,-0.008833006,-0.0233279,-0.022716738,-0.00989389,-0.02204792,-0.05387442,0.0071609616,-0.03152668,-0.0038716472,0.017158633,0.015936311,-0.014356517,0.0052236966,0.020987038,-0.020906318,-0.020779474,0.022243954,-0.007847076,0.013653106,-0.016582066,0.01695107,0.0035718323,-0.0058406233,-0.0026161727,-0.015751809,0.022924302,0.020514254,-0.023443213,0.0121425,0.023362493,-0.037569102,0.015313619,-0.03902205,-0.0019588862,-0.009478761,0.007051414,0.004035969,0.019349588,0.019660933,-0.0026421181,-0.0010219649,0.023362493,-0.00223708,0.0215982,-0.031872623,-0.009818936,-0.023028085,0.0035977778,0.03314107,-0.0076741064,0.01937265,-0.023523932,0.0033383227,0.004955593,0.02488463,-0.008890662,0.0048287483,-0.002472031,-0.018553926,0.033763763,0.031203805,-0.0194649,-0.032841254,-0.0007689962,0.04787812,0.023062678,0.015405869,-0.004889288,-0.0020886138,0.017170165,0.017158633,0.021805763,0.0066824113,-0.0015077227,0.004906585,-0.032356936,-0.020041468,0.0013116898,-0.047416866,0.024423378,-0.0036784972,-0.00535919,-0.012453847,0.012788256,0.003788045,0.007414651,0.008631207,-0.03493996,-0.042389203,-0.0000016300404,-0.012892038,-0.023523932,-0.016316846,0.0126614105,-0.028689973,-0.0028640963,-0.0076914034,-0.0010500726,-0.0086830985,-0.02599164,-0.0077029346,0.018231047,0.014125891,0.009259665,0.00439344,0.03383295,-0.032795127,-0.01071838,0.0029476986,-0.047462992,0.0041483995,0.004332901,0.016535942,-0.0018392486,0.04614842,-0.019856967,0.04847775,-0.026153078,-0.00039350695,-0.010539644,0.041812636,-0.010735677,-0.018277172,0.0035977778,0.0062615173,-0.010897116,-0.0185078,-0.0025095078,0.03148056,0.015417401,0.034248076,-0.04091319,-0.026914146,-0.0068323184,0.044049717,0.042550642,0.021563604,0.041028507,-0.01713557,-0.018738426,0.023662308,0.008809944,0.0031394071,-0.03623147,-0.009380745,-0.009461464,0.023604652,0.021563604,-0.010856756,-0.007351229,-0.0013679052,-0.02375456,-0.021379104,-0.019314993,0.019015178,-0.00044575834,0.006002062,0.027237024,-0.023708433,-0.027237024,-0.025899388,-0.018957522,0.0022500525,-0.004837397,-0.027444588,-0.055396553,0.047047865,-0.017769793,0.0029606714,-0.000623413,-0.0041916417,-0.014702458,-0.0027862599,-0.02299349,0.00030215713,-0.0036064263,0.030419674,0.019499496,0.03330251,-0.0035055273,0.024976881,0.03348701,-0.014886959,-0.027836652,0.0008353014,-0.0057454896,-0.016720442,0.016939538,-0.03477852,-0.00083385996,0.018196454,-0.013595449,0.020341283,-0.003646786,-0.01962634,0.010845224,0.010360909,0.015521183,0.015209837,-0.020249031,0.034225017,-0.025968576,0.016847286,0.05724157,0.02126379,-0.026406767,0.01721629,-0.020871725,0.011231525,-0.01876149,0.025161382,-0.012211689,-0.0057310755,0.0030269765,-0.023212586,0.040590316,0.010960538,0.0073396973,0.04949251,0.013814544,0.040405814,0.008677333,-0.03203406,-0.023304837,-0.0027444588,-0.029243477,-0.004402089,-0.008452471,-0.026222266,-0.022843583,0.018911397,0.0051602744,0.026683519,0.0015942077,0.0022716739,0.0052150483,-0.024261938,0.011127742,-0.032518376,0.017931232,-0.013468605]},{"id":"interface-RestOptions","type":"interface","source":"main","text":"Interface: RestOptions\nProperties: api: string, authPrefix: \"Bot\" | \"Bearer\", retries: number, timeout: number, userAgent: string, version: string","meta":{"url":"/docs/typedefs/RestOptions"},"embedding":[-0.034890577,-0.027728945,0.039209936,0.0058300165,-0.017266247,-0.014681347,-0.00995355,0.014580635,0.0122642955,0.01801598,-0.01774742,-0.026162338,-0.010854349,0.005374022,0.0044928053,0.0050131427,-0.064947054,0.024774771,-0.023700528,0.03066074,0.016550085,0.0109103,-0.026117578,0.027057542,-0.017355768,-0.003863365,0.006126553,-0.0014589028,-0.019806389,-0.06745362,0.017557189,-0.03314493,0.017232677,0.036367666,0.040284183,-0.012734277,0.07645042,-0.005007548,0.016628414,-0.01749005,-0.021003725,-0.027549904,-0.020847064,0.023163404,-0.059038706,0.0048480895,0.012935698,-0.005368427,0.005141828,-0.0035024858,-0.051742792,-0.029273173,-0.045722548,0.0715268,0.041515086,-0.008370157,-0.007861011,0.016404614,0.0012253105,0.01807193,0.0036479565,-0.012398576,0.00012886043,-0.0357634,-0.028624149,0.058188263,-0.031600703,0.017635519,-0.021227526,0.026788982,0.034129653,-0.0049348124,-0.025289515,0.018564293,0.011150885,0.004006038,0.012756658,0.025289515,0.045073524,-0.048117217,-0.04030656,0.009947955,-0.03764333,-0.056487374,-0.00221563,-0.004730594,-0.041917928,-0.02873605,0.005175398,-0.020947775,0.0009889207,-0.029922195,-0.046147767,-0.009858434,-0.03513676,-0.058591105,0.032406386,-0.034219176,-0.05787494,0.043551676,0.041201767,-0.047132492,-0.10402271,0.026968021,-0.014200174,0.017859321,0.03318969,-0.0004444548,-0.015106568,-0.005785256,-0.020668024,0.018933566,-0.020030191,-0.020108521,0.028176548,-0.042432673,-0.0117495535,0.011682413,0.029452212,-0.05545789,-0.0031080365,-0.002589098,0.0715268,0.0062776185,-0.008946446,-0.0021512872,-0.041626986,-0.019023085,-0.06884119,0.0094444025,0.020321133,0.025558075,0.014144224,-0.023029124,-0.0010224909,-0.017008876,-0.01982877,0.009830459,-0.003231127,-0.0354277,0.013069979,-0.061500516,-0.017613139,0.0034241555,-0.036748126,-0.028288448,-0.034823436,-0.002698201,-0.016247954,0.069781154,-0.02018685,0.043574058,-0.0222682,0.036390044,-0.026117578,-0.031936403,0.019123796,0.030235516,-0.03314493,-0.010194136,0.04646109,0.012353816,-0.012130015,-0.03985896,0.0030129212,0.014860387,0.032294486,-0.008498844,-0.06132148,0.025379034,0.04932574,-0.027147062,-0.018732145,0.010389962,-0.009892005,-0.012734277,0.023163404,0.02007495,-0.015319179,0.045767307,0.04444688,-0.0054915175,-0.0016757101,-0.05536837,-0.029317932,-0.015699642,-0.03956802,0.016807456,0.027236583,-0.019660918,0.010417937,0.021753458,-0.0309293,0.009231792,-0.010541027,-0.010255681,0.0024240448,-0.04211935,-0.014580635,-0.013114739,0.0035892087,0.021082055,0.069244035,-0.016303904,0.004425665,0.013394491,-0.0029429833,-0.043238357,-0.017892892,-0.0011301951,0.031332143,-0.011229216,0.0029933385,0.003203152,-0.017087206,-0.005653773,0.029452212,0.019437118,-0.0040955585,0.00047417838,-0.054249365,0.012085254,0.06346997,-0.04267885,0.06172432,0.02468525,0.012130015,0.009198221,-0.020231612,-0.005740496,-0.03334635,0.04202983,-0.046863932,-0.0020995333,0.0309293,-0.010904704,0.030839778,0.015408699,0.005709723,-0.041380808,-0.011570512,-0.023096263,-0.024192888,0.03325683,0.013528771,-0.007128062,-0.008476463,-0.034420595,-0.021227526,0.009119892,0.02649804,-0.0074861436,0.056039773,-0.03976944,0.04601349,-0.02652042,-0.01787051,-0.010932679,-0.018217402,0.0036451588,0.016740315,-0.012040494,0.012107635,0.025423795,-0.027706565,-0.0439769,-0.031779744,0.019314026,-0.0021834585,-0.025177613,-0.013685431,0.008605149,0.039232317,-0.012219535,-0.01329378,-0.016594846,0.027840845,-0.011156481,-0.07148204,0.040217042,-0.0071504423,-0.029407453,-0.002738765,0.041537467,0.027214203,0.0053404514,0.04717725,-0.010742448,0.025199994,0.028288448,-0.00660213,0.027639424,0.034420595,-0.062350962,0.00089170714,0.03811331,0.055099808,-0.01573321,0.0892966,0.019280458,0.036188625,0.00038885424,0.012700708,-0.063649006,-0.015218468,0.020970155,0.052548476,-0.011257191,0.07112396,-0.005676153,0.029228412,-0.01533037,-0.045633025,-0.00049725786,-0.030392177,-0.004836899,0.03276447,-0.043685958,-0.008817759,-0.011671223,-0.03372681,-0.039321836,-0.030615978,0.007698755,0.007928151,-0.0756895,0.012588806,-0.025916157,0.02210035,0.010361987,0.020198042,-0.054920767,-0.008465273,0.018922376,0.007111277,0.04390976,-0.029138891,0.025334274,0.008789784,0.040038,0.0065014195,-0.03979182,-0.05102663,0.0013113341,0.020779924,-0.013853283,-0.05062379,-0.025602836,-0.014882768,0.029787915,-0.0045179827,0.010216516,-0.02638614,-0.030213136,-0.032518286,0.011128506,-0.00003140645,-0.028512249,-0.072511524,0.029385073,-0.05912823,0.016561275,0.017366959,-0.0047222013,0.020914204,0.0005392206,-0.020198042,-0.0196833,-0.025043333,-0.03529342,0.05501029,0.0064510643,-0.0038269972,-0.009466783,-0.004943205,0.013898043,-0.047087733,-0.0041822814,-0.02240248,-0.011469802,0.0493705,0.01769147,-0.03538294,-0.025804257,0.01329378,-0.0042913845,-0.020309942,0.008151952,-0.014289695,0.040866066,0.027885607,0.016102483,-0.07233249,-0.011928594,0.026699461,-0.03569626,-0.010770423,0.00033500214,0.0011176063,-0.034868196,0.045677785,0.0063951137,-0.023029124,0.041515086,-0.031399284,-0.05527885,0.03833711,-0.003580816,0.0009035966,-0.017064827,0.027952746,-0.029899815,0.04218649,0.03283161,0.03775523,-0.027415624,0.02468525,-0.06664794,0.02235772,0.021406567,-0.01994067,0.043417394,-0.0486991,-0.0048704697,-0.030459318,0.017557189,-0.006904261,-0.0098640295,-0.05089235,-0.04623729,0.01324902,0.036725745,0.041403186,0.013830902,-0.017467668,-0.01779218,0.012353816,-0.010983035,-0.0122642955,-0.010328417,-0.02629662,-0.008661099,0.0003533608,0.01562131,-0.04232077,0.012958079,0.0064510643,-0.041761268,0.0130923595,-0.020925395,-0.067498386,-0.03771047,-0.02878081,0.04605825,-0.0011266982,-0.029474594,0.015587741,0.011162075,0.01548703,-0.012532856,0.030078856,-0.03361491,-0.017131967,0.031175481,0.042790752,0.045744926,0.000020478667,0.028019886,-0.034308694,-0.007900176,-0.0037570593,-0.020947775,-0.0049627875,-0.041179385,-0.016606035,-0.040038,0.030145995,0.018273352,0.023566246,0.032473527,0.004414475,0.014658966,-0.036882408,-0.00082176935,0.030459318,0.07349625,0.00774911,0.02663232,-0.05277228,0.009763319,0.031891644,0.012723087,-0.016303904,-0.008918471,0.013439251,-0.028288448,-0.0005605516,-0.044849724,-0.017422909,-0.0019386762,0.023901949,-0.051429473,-0.009634634,0.029452212,0.008107192,0.020410651,-0.015856301,-0.036882408,-0.016236763,0.0004640374,-0.0034073703,-0.002084147,0.012018114,0.003804617,-0.0446483,0.01988472,-0.016829835,0.024080988,-0.025602836,0.0012665738,-0.015218468,0.0037850346,0.019336408,0.04160461,0.009422023,-0.018776905,-0.03976944,-0.011324331,-0.0035612336,0.027482765,-0.0001369907,-0.025289515,-0.027079923,-0.022917224,0.004540363,0.01003188,0.019190937,-0.013987564,0.004081571,-0.040776543,-0.001969449,0.002881438,-0.008823355,0.013886853,-0.036121484,0.027348483,0.0041599013,0.018116692,-0.011771933,0.021887738,-0.01320426,-0.005953107,0.03321207,-0.008711454,0.01769147,0.0031388092,0.030078856,-0.020533742,-0.013181879,-0.010809589,-0.002071558,-0.025580455,0.004213054,0.011262786,-0.020668024,0.0027639426,-0.004168294,0.0309293,-0.034442976,-0.016762696,-0.011514562,0.00778268,-0.01331616,0.06526037,0.025177613,0.015319179,-0.0018967135,-0.0039528855,-0.011660033,0.004671846,-0.009740939,-0.02466287,0.009438807,0.05550265,-0.013137119,-0.006244048,-0.009075131,0.005222956,0.009679394,0.058367305,0.026162338,0.012544046,0.018967135,-0.025983298,-0.009119892,0.023700528,0.0484753,0.0143792145,0.005091473,0.029608874,0.010624953,-0.011984544,-0.016337473,0.008224688,0.0032870774,0.032742087,-0.0013973576,0.011839073,-0.02206678,0.019974241,0.019582588,0.018821664,-0.018351683,-0.050355226,-0.03097406,0.004540363,-0.037083827,-0.04053036,0.0013043403,-0.01584511,-0.015867492,0.038963757,0.00882895,0.025043333,-0.030436937,-0.0055083022,-0.01989591,-0.036927167,-0.012812608,-0.031914026,0.032160204,0.049862865,-0.028288448,-0.0029150082,-0.02674422,0.013125929,0.009030371,0.022805324,-0.010345202,-0.009052751,0.018150263,0.006188098,0.014144224,-0.03844901,0.038247593,0.0029541734,-0.029631253,0.0005119448,-0.013170689,0.030593598,-0.044961624,-0.0043865,0.028087027,0.023342445,0.022615092,0.01985115,-0.020388272,0.018004792,-0.0013994557,-0.0005189386,0.0005595025,0.0156325,0.012018114,-0.011301951,-0.013237829,0.027863225,0.025490936,0.005986677,-0.021473708,-0.0067923605,-0.019213317,0.022592712,0.024730012,0.012398576,0.0089968005,-0.009192627,0.002296758,-0.0439769,-0.021731079,0.014222554,-0.05129519,0.007799465,-0.034152035,-0.006199288,0.039500877,-0.039500877,0.01793765,0.031802125,0.023073884,0.00009196823,0.020768734,0.018295733,0.026318999,0.013069979,0.0046830364,0.04641633,0.034353454,0.059083465,0.015084188,0.009489163,-0.004677441,-0.014692537,-0.0035500436,-0.0056397854,-0.045923967,0.036009584,0.01994067,0.0048816595,0.0056565707,0.019582588,-0.043372635,0.023230545,-0.032965887,0.003564031,0.030638358,0.022984363,0.019280458,0.022827704,0.013495201,-0.004470425,0.0046466687,-0.0016910963,-0.05756162,0.011995734,0.0267666,0.006148933,0.051877074,0.03157832,-0.022671042,0.01973925,0.051205672,0.0028576592,-0.034174412,0.007049732,-0.0019596575,0.029564114,-0.011693602,-0.0074134083,-0.0046326807,-0.014211364,0.0121971555,-0.014133033,-0.015889872,0.0036199812,-0.024998574,-0.0118166935,-0.009651419,0.029273173,0.029317932,-0.0132266395,-0.019918289,0.004999155,-0.016594846,0.03784475,0.01567726,-0.027505144,-0.004414475,-0.02656518,-0.035002477,-0.009970335,-0.023633387,0.024774771,-0.016292714,0.013685431,-0.01584511,0.0056985333,0.0021345022,-0.008767405,0.03784475,0.025737116,0.020813493,-0.005813231,-0.009338097,-0.011648842,0.04843054,-0.04417832,-0.051608514,-0.03538294,-0.034644395,-0.04272361,0.025423795,-0.025871396,-0.012599997,0.006244048,0.0024030632,-0.010686498,-0.025737116,-0.0148268165,-0.029966956,-0.0011057169,-0.019258076,-0.025960917,0.0223801,-0.052682757,0.007547689,0.011648842,-0.03779999,-0.03536056,0.032227345,0.002428241,-0.004671846,-0.000072647905,-0.004999155,-0.02020923,0.04458116,-0.045655407,-0.002347113,0.031376902,0.03086216,-0.027057542,-0.050041907,0.036211003,-0.010535433,0.016001772,0.01549822,0.04144795,0.0067308154,0.026028058,0.044961624,-0.0009406636,0.043014552,-0.0064734444,-0.021540847,0.010792804,-0.003438143,0.027057542,-0.0065517747,-0.053667482,0.025244754,-0.039187558,0.010451507,0.03757619,0.034756295,-0.007021757,-0.012275485,-0.028019886,-0.02672184,0.00882895,0.0011287964,0.021261096,0.020779924,-0.024192888,0.014009943,0.0058076363,-0.001819782,-0.0044452474,-0.0009994113,-0.015140139,0.0025513314,-0.002393272,0.0040507982,-0.0199071,0.047893416,-0.00056230003,0.039948482,-0.030280277,-0.034577254,0.01333854,0.01564369,-0.034084894,-0.025916157,0.038023792,0.00385777,-0.02891509,-0.0041990667,-0.0074301935,0.00027747828,-0.021305855,0.03348063,0.024528591,0.028310828,0.024080988,0.010820779,0.019179747,0.019425929,0.046192527,-0.01564369,0.03585292,-0.0349801,0.06794599,0.03108596,-0.004890052,-0.0024422286,-0.0073798383,0.003908125,0.023342445,-0.005407592,0.026318999,0.012734277,0.026318999,0.0018869223,0.040843684,0.025132854,0.031914026,0.03318969,0.025490936,0.0022226237,0.03768809,0.011229216,0.020556122,0.021641558,-0.0029122105,-0.0014421177,-0.007307103,0.01992948,-0.0026100792,0.0266547,-0.022536762,-0.029944574,0.037307627,0.02860177,0.0055698478,0.013998753,0.06915451,-0.036815267,0.012823798,0.018206213,-0.019604968,-0.01790408,-0.002128907,-0.010048665,-0.009936765,-0.03301065,0.014524685,-0.041022725,-0.017098397,0.009472378,-0.03383871,0.0012330037,-0.0136742415,0.018195022,-0.008420513,0.00088960904,0.015912252,-0.048788622,-0.024707632,0.0015652083,0.023006745,0.010837564,-0.01314831,-0.0199071,-0.02857939,0.0017316603,-0.029631253,0.016986497,0.008179927,-0.022726992,0.017154347,-0.03545008,-0.02220106,0.0018589471,-0.008750619,0.043126456,-0.02234653,-0.011492182,0.018430013,0.012029304,-0.015005858,0.025692357,0.039500877,-0.02221225,-0.0056090127,-0.015352749,-0.050041907,0.018955946,0.03135452,0.0075085238,0.022335341,0.01336092,0.0018015981,-0.019750439,-0.007967316,0.044939242,0.012756658,0.018418822,0.054025564,0.0072063925,0.029989336,-0.0039920504,-0.012488096,0.01740053,0.0493705,0.0030828589,-0.048072457,0.027617045,-0.008694669,0.0069210464,0.025692357,0.025625216,0.021753458,0.005264919,-0.033995375,-0.01548703,0.029183652,0.00015438773,-0.020399462,-0.0109494645,0.006372734,-0.0014176395,-0.025647596,-0.011704793,0.011883833,-0.030101236,-0.040396083,0.0011169069,0.016158434,-0.020735163,0.008045646,0.008532413,0.0010637542,-0.02000781,0.009808079,0.012420956,-0.058770146,-0.04646109,-0.024170509,0.01538632,-0.0021666735,0.017993601,0.039165176,0.042634092,0.022659853,0.016404614,-0.004282992,-0.0075644744,-0.008224688,0.02426003,0.04223125,0.019079037,-0.0058356114,-0.0491467,0.03956802,-0.0005832814,0.042813133,0.03999324,0.01760195,0.0076875645,0.021138005,0.0125216665,-0.010043071,-0.00033098072,0.009836054,0.0034017754,0.021507276,0.001056061,0.0065573696,0.027258962,0.008163142,0.004655061,0.038672816,0.00075742655,0.0010805392,-0.041291285,-0.004501198,0.023566246,-0.015822731,0.035785783,-0.0012882545,0.049818106,-0.014949908,0.009097511,0.016964117,0.030213136,-0.0011427839,-0.016594846,0.009024776,-0.0009427618,0.020276371,0.012667137,0.04019466,0.044737823,-0.025558075,-0.014435166,0.0045431606,-0.010227706,-0.031645462,0.009422023,-0.028534628,-0.0018113895,-0.023745287,-0.016930547,0.011402662,-0.0051698033,-0.009545113,-0.063649006,0.006445469,0.006294403,0.008112786,0.023745287,-0.02857939,-0.016695555,0.009198221,-0.0027485562,-0.017422909,-0.023006745,-0.010960654,0.030145995,-0.02195488,0.016203193,-0.010988629,-0.020477792,-0.008275042,0.02243605,0.021216337,-0.0040088356,0.046103008,-0.024886671,-0.027102303,-0.024058608,-0.009858434,-0.018799284,0.016393423,0.01545346,0.006904261,-0.0020617668,-0.03833711,0.01539751,-0.006797956,-0.010216516,-0.02220106,0.004031216,-0.017546,-0.011839073,0.007161632,-0.0026548395,-0.015856301,-0.006216073,0.042589333,-0.017836941,-0.0036171838,0.009170246,-0.023879567,0.0039053275,-0.045073524,0.011346711,0.006652485,-0.005396402,0.015039428,0.017042447,0.013998753,0.015240849,0.01749005,-0.0027023973,-0.011760743,0.018083122,0.0134168705,-0.049818106,0.028042266,0.021753458,-0.019079037,0.014155414,0.011962164,0.0002853463,0.025625216,0.0076316143,-0.009869625,0.0021191158,0.0055027073,-0.0018589471,0.018452393,-0.01547584,-0.015755592,-0.0016435387,-0.012398576,0.027482765,-0.0019806388,-0.006428684,-0.0056174053,0.03110834,-0.005253729,0.023969088,0.004951597,-0.012141204,0.0049488,-0.004229839,0.045409225,0.047132492,0.002864653,-0.008140761,-0.04171651,0.012230725,-0.03766571,-0.0008098799,0.0078442255,0.0031807718,0.025759496,-0.026878502,0.0047893417,-0.009578683,0.014647776,0.010166161,-0.009405238,0.0076372093,-0.0064958245,-0.038359493,0.0045487555,0.0201309,0.020600883,0.012029304,0.027885607,-0.010082236,-0.012398576,0.0082918275,0.019448308,0.025781875,0.013506391,0.0015218469,-0.02218987,0.039187558,-0.012275485,0.0264309,0.02685612,0.018575484,0.03766571,0.040284183,0.00084904506,0.013036408,0.0067643854,-0.024036229,0.0010196933,0.005057903,0.023879567,-0.007267938,0.008879305,-0.028109407,-0.023901949,0.024752392,0.017467668,0.027102303,-0.012040494,-0.0052677165,-0.035002477,0.023745287,0.014468735,0.023431966,-0.004173889,-0.01324902,0.018620243,-0.043215975,-0.00777149,0.021921309,-0.030504078,0.0027653412,0.00011565966,0.0036731341,-0.025379034,0.00056754536,-0.03119786,0.0020855456,-0.016382234,-0.034957718,-0.029138891,-0.018541913,0.007989696,0.004361322,0.0058356114,-0.012812608,0.0017932056,-0.019403547,0.012946889,-0.004257814,-0.012767848,-0.0109103,0.018564293,0.024998574,-0.002761145,0.005290096,0.016449375,-0.025714736,0.035114378,-0.015777972,-0.025893778,0.053398922,0.025625216,0.01112291,0.0018477571,0.009517138,-0.023118645,-0.0012127217,-0.0353158,-0.013707812,0.047132492,0.0047949366,0.018832855,-0.02214511,-0.025692357,-0.01987353,0.02656518,0.008263852,-0.006238453,0.010289252,0.026207099,-0.032093063,0.012018114,-0.023230545,0.008812165,0.0039305054,-0.020253992,-0.034062512,0.008437298,-0.0009882214,0.031824503,-0.053398922,0.0015316382,0.005902752,-0.010781614,0.0000040159607,-0.01330497,0.0079113655,-0.014681347,0.008605149,0.0141218435,-0.012846178,0.0007294514,0.0130923595,0.010278061,0.029004611,-0.02869129,-0.016348664,0.0009364674,0.014144224,0.04471544,-0.00088821026,-0.01538632,0.011827883,-0.0069434266,-0.015140139,-0.028198928,0.021540847,-0.00447602,0.027863225,0.0046746437,0.0013253216,-0.027661804,-0.0017806168,-0.020108521,0.011408256,-0.008627529,0.01769147,0.033950612,-0.017109588,0.016012963,0.025423795,0.018262163,0.003426953,0.01964973,-0.0004322157,-0.00027223295,-0.0021764648,-0.008974421,-0.012253106,-0.018038362,0.008935255,-0.09444403,0.02629662,-0.02652042,0.013562341,-0.012018114,0.014636586,0.017579569,0.009545113,0.05536837,-0.010412342,-0.014267314,-0.013886853,-0.023633387,0.018955946,-0.008118382,0.011570512,0.004098356,-0.047535334,0.012946889,-0.0018337695,0.0024730011,0.009914385,-0.00334023,-0.00660213,0.024058608,0.057293057,-0.012924508,-0.004207459,0.025199994,-0.012599997,-0.054741725,-0.0023750882,-0.009382857,0.010395557,0.00385777,-0.043215975,-0.04444688,0.017948842,0.018620243,0.018732145,0.036009584,0.020835875,-0.027885607,0.0129021285,-0.0033430276,-0.008000886,0.021742268,-0.016303904,0.0011301951,-0.018161451,-0.013752572,-0.020388272,0.0005087976,0.023790047,-0.009259767,0.011973354,0.01772504,0.009752129,0.023275305,0.0042438265,0.03301065,-0.02904937,-0.016762696,0.0152744185,-0.008023266,0.010384367,-0.023320066,0.0061097676,0.004436855,-0.020455413,0.037016686,-0.015811542,0.02667708,-0.03822521,-0.005041118,0.07774847,0.016874596,-0.0007392427,0.00081897184,0.0395904,-0.012544046,-0.0038941377,0.015352749,-0.010154971,0.0013113341,-0.0004444548,-0.0063447584,-0.012107635,-0.0021512872,0.014726106,-0.011592892,-0.022883654,0.0062888083,-0.027706565,0.021596797,-0.027102303,0.05545789,-0.03562912,-0.0076875645,0.044827342,-0.025580455,-0.0018785297,-0.03157832,0.003110834,-0.0025863005,0.0062552383,0.010787209,0.01790408,0.0027401636,0.00492642,-0.013439251,0.026229478,-0.0016491337,0.00096863875,-0.028534628,-0.017613139,0.0076819696,-0.008269447,0.017378148,0.014043514,0.024192888,0.025199994,0.036457185,0.014983478,-0.0073406734,-0.016382234,0.009718559,-0.020668024,0.01549822,0.014647776,-0.030526457,-0.035271037,-0.0029877436,-0.008062432,0.006937831,-0.034935337,-0.00780506,-0.04196269,-0.0005318771,0.02652042,0.016896976,-0.032697327,0.029899815,-0.034442976,0.039120417,0.07291437,0.041470326,-0.0105690025,0.010552217,0.008571579,-0.007502929,0.00774911,0.0011672621,-0.0047138087,0.009422023,-0.03327921,-0.016147243,0.013137119,0.00072245765,0.025647596,0.054607447,-0.00896323,-0.008515628,0.02441669,-0.015196089,-0.043036934,-0.016852217,-0.026811361,0.014222554,0.0027289735,-0.022637472,0.038202833,-0.0015708033,0.029922195,0.008247067,0.010356392,0.0061657177,0.008409323,0.014625396,0.0065685594,-0.02015328,-0.012152395,0.020612072]},{"id":"interface-RESTOptions","type":"interface","source":"main","text":"Interface: RESTOptions\nDescription: Options for the REST client.\nProperties: api: string, authPrefix: \"Bot\" | \"Bearer\", retries: number, timeout: number, userAgent: string, version: string","meta":{"url":"/docs/typedefs/RESTOptions"},"embedding":[-0.027465785,-0.009192783,0.048799474,-0.0042158156,-0.011074222,-0.010388113,-0.025493221,0.005110973,0.00816362,0.008978374,-0.024271091,-0.038958102,-0.01055964,-0.0012777433,0.020819107,0.010918775,-0.044254005,0.011106383,-0.02952411,0.034777127,0.026522385,-0.0040416084,-0.013454161,0.014547646,-0.030253101,-0.0074453503,0.015984187,0.010902694,-0.01678822,-0.057290066,0.005354863,-0.030639037,0.036985543,0.04007303,0.042131357,-0.019060954,0.06445132,-0.0026760914,0.03244007,-0.024742791,-0.026093567,-0.024785673,-0.007150538,0.03331915,-0.05141526,0.00937503,0.013786495,-0.025386017,0.025750512,-0.0047893594,-0.04463994,-0.031089295,-0.04485435,0.07259887,0.03342635,-0.03190405,-0.012392837,-0.0052422984,0.00015301762,0.015984187,-0.00599809,-0.002781956,-0.013368397,-0.033490676,-0.022770228,0.07045478,-0.03286889,0.017485049,-0.027916044,0.038829457,0.030531833,-0.008254744,-0.02161242,0.03983718,0.026543826,-0.011363673,-0.005612154,0.025000082,0.029566992,-0.036985543,-0.04416824,0.021666022,-0.031239381,-0.04704132,0.006432268,0.0068289246,-0.043739423,-0.05235866,0.0052262177,-0.01080085,0.0018358765,-0.036835454,-0.040308878,-0.017581532,-0.04058761,-0.047169965,0.056603957,-0.020754784,-0.045797747,0.049571346,0.03194693,-0.039944384,-0.09476875,0.021708904,0.003194693,0.024185328,0.024592705,-0.0040067667,0.009444714,-0.0048617227,-0.040994987,0.036170788,-0.015040787,-0.006936129,0.010715086,-0.023885155,-0.0043900227,0.024871437,0.027036967,-0.06513743,0.010597162,-0.005454027,0.071441054,0.01297174,-0.029395465,0.0036288712,-0.020701183,-0.012821654,-0.06573778,0.0016777499,0.0037601967,0.052187134,-0.0022740748,-0.029781401,0.004440945,-0.026029244,-0.04086634,0.0076436787,-0.006019531,-0.029824283,0.017549371,-0.049828637,-0.013336236,-0.0009681903,-0.013336236,-0.021955475,-0.035720527,0.006973651,-0.0113743935,0.06886815,-0.02665103,0.04346069,-0.012585805,0.02041173,-0.011331513,-0.03239719,0.033211943,0.02066902,-0.036663927,-0.00040704195,0.06449421,0.01967202,-0.00043719323,-0.032461513,0.0037280354,0.00503593,0.03842208,-0.0014941623,-0.048542183,0.026372299,0.043525014,-0.03411246,-0.022770228,0.009433993,-0.017356403,-0.017806662,0.04438265,0.039708536,-0.020186601,0.026586708,0.044211123,-0.0074024685,-0.0043042595,-0.047641665,-0.033018976,-0.017860264,-0.038550727,0.02472135,0.031968374,-0.011696007,0.020208042,0.011599523,-0.041616775,0.001031843,-0.028409183,-0.008490594,-0.016337961,-0.03162532,-0.029609874,-0.02926682,0.017967468,0.021194324,0.06067773,-0.028516388,0.0013789175,0.00983065,-0.017570812,-0.035398915,-0.006839645,-0.013068224,0.013572086,0.007831287,-0.0040201675,0.0075203935,0.004004087,0.0061588967,0.026372299,0.014236753,0.004130052,0.004936766,-0.025407458,0.004457026,0.050686274,-0.023413455,0.05325918,0.0078098453,0.012853815,-0.0014593208,-0.009208864,0.003141091,-0.017645855,0.039279718,-0.04459706,0.0073274253,0.026479503,-0.005370944,0.020583257,0.012639407,-0.003982646,-0.04725573,-0.016027067,-0.021869712,-0.031282265,0.025042964,0.013743613,0.0027658753,-0.020593978,-0.05325918,-0.04174542,0.030167338,0.012071223,-0.01678822,0.043610778,-0.04249585,0.042388648,-0.015673293,-0.009889612,-0.008319067,-0.011427996,0.005400425,0.013690011,-0.0077937646,0.009964655,0.011942578,-0.0484993,-0.008710363,-0.04153101,0.027658753,-0.015448163,-0.018878706,-0.0067485212,0.013336236,0.028216215,-0.019404009,-0.021451613,0.005341463,0.02208412,-0.015072948,-0.06706712,0.026801117,0.011599523,-0.019564815,0.01224275,0.051929843,0.035934936,-0.0065609133,0.04058761,-0.01177105,0.010093301,0.029009528,0.012424998,0.024892878,0.043996714,-0.06389386,-0.00960552,0.033683643,0.064965904,-0.022255648,0.09725589,0.010409554,0.01104206,0.0063411444,-0.00504933,-0.0461408,-0.02547178,0.0029910046,0.068310685,-0.037886057,0.06719576,-0.008270824,0.046055038,-0.006903968,-0.03844352,-0.0073756673,-0.02375651,-0.0014673611,0.021065678,-0.03211846,-0.003626191,0.0004268078,-0.04871371,-0.03668537,-0.03141091,0.0069254087,0.010388113,-0.07680128,-0.0043417807,-0.026072126,0.0044275443,-0.0018894788,0.038829457,-0.05377376,0.011202867,0.023627864,0.014215312,0.04386807,-0.009857451,0.029845724,0.02255582,0.02905241,0.015040787,-0.029781401,-0.04772743,0.004604432,0.008024254,-0.03336203,-0.042624496,0.0013058844,-0.0216017,0.032525834,0.027980367,0.013336236,-0.016477326,-0.0031491313,-0.04202415,0.015330239,-0.015705455,-0.044082478,-0.06093502,0.01821404,-0.057976175,0.018063953,0.006550193,0.003575269,0.029331142,-0.005660396,-0.017581532,-0.004818841,-0.038250554,-0.037800293,0.057032775,0.01752793,-0.013175429,-0.008672842,-0.0016630093,0.023649305,-0.038979545,-0.005569272,-0.019768504,-0.026222212,0.039151073,0.019822106,-0.041659657,-0.021644581,0.03870081,-0.0049126446,-0.036192227,0.003623511,-0.0053816643,0.029781401,0.02905241,0.02330625,-0.04819913,-0.00022998708,0.022620143,-0.032354306,0.0049689272,0.0009380391,0.009916414,-0.032332867,0.032740243,0.01344344,-0.02016516,0.049957283,-0.027894603,-0.055574797,0.046912674,0.0003718655,-0.001872058,-0.017817382,0.040501848,-0.022748787,0.046741147,0.04704132,0.042538732,-0.054845806,0.031968374,-0.06320775,0.008233303,0.006067773,-0.03844352,0.05060051,-0.04438265,0.0033796208,-0.009476875,0.013464881,-0.0015169432,-0.008190421,-0.050772034,-0.043289162,0.03818623,0.05420258,0.023177605,0.010784769,-0.013700731,-0.02330625,0.010109381,-0.012435718,-0.0064215474,-0.008694282,-0.037628766,-0.005606794,-0.0099378545,0.017517209,-0.045797747,0.005258379,0.03168964,-0.040887784,0.009380391,-0.023113282,-0.06089214,-0.022148443,-0.04459706,0.034198225,0.0044972273,-0.01007186,0.0031866527,-0.00033936914,0.031861167,-0.018900147,0.014236753,-0.038615048,-0.022512939,0.022748787,0.032204222,0.041723978,0.007895609,0.02399236,-0.039451245,-0.016702456,-0.007364947,-0.0032992174,-0.0047411174,-0.03792894,-0.03265448,-0.0466125,0.020765506,0.0070218924,0.018374845,0.030124456,0.025514662,0.013561365,-0.0484993,-0.020990634,0.014858539,0.058233466,-0.007654399,0.049056765,-0.04704132,0.0019109197,0.043996714,0.010254107,-0.017485049,-0.0070915753,0.016691735,-0.051543906,-0.009798489,-0.046955556,-0.011159985,-0.0044248644,0.031260822,-0.044982996,-0.0073971082,0.0058480036,0.030896327,0.013346956,-0.00913382,-0.022384293,-0.020915592,0.022663025,-0.0058426433,0.010157623,0.0031544915,0.0009655102,-0.051543906,0.011063501,-0.019028792,0.011846093,-0.01486926,0.007842007,-0.017141994,0.010313069,0.01897519,0.040030148,0.0044087837,-0.023499219,-0.058190584,-0.02615789,-0.002351798,0.016573811,-0.006410827,-0.023713628,-0.03432687,0.0030848086,0.0027015526,0.010028978,0.036878336,-0.022855991,0.019243201,-0.043010432,-0.017388564,0.0035859894,-0.012382116,0.00384328,-0.032289986,0.030103015,0.0038057587,0.009659123,-0.009894973,0.019886428,-0.009718085,-0.012403557,0.026307976,-0.0047464776,0.018889427,0.010977738,0.02858071,-0.028452065,-0.0044302247,-0.012950299,-0.020358128,-0.015887702,-0.010902694,0.00814754,-0.018289082,-0.000744401,-0.012800213,0.02617933,-0.032525834,-0.030317424,-0.010538199,-0.0010928155,-0.0055960733,0.04777031,0.01920032,0.009530477,0.014483323,0.005405785,-0.011460157,0.012210589,0.0044061034,-0.028494947,0.009755607,0.062007062,0.0018908188,-0.015405281,-0.007080855,-0.0027497946,0.023584982,0.07126953,0.03625655,0.016852543,0.028838001,-0.037521563,-0.02570763,0.030510392,0.046183683,0.026243653,-0.013743613,0.027551549,0.009573359,-0.0112350285,-0.022105562,0.020283084,0.0044945474,0.03501298,0.0006187708,-0.0018546373,-0.00983065,0.013314795,0.011728168,0.030531833,-0.01296102,-0.034691367,-0.021794667,0.015759056,-0.039944384,-0.028902324,-0.0037387558,-0.015308798,-0.017184876,0.050214574,0.009970016,0.014719173,-0.021172883,-0.005815842,-0.0132611925,-0.028066128,-0.02375651,-0.008136819,0.030338865,0.038057584,-0.009005175,0.0043283803,-0.03046751,0.022277089,0.013722172,0.0022633544,-0.02808757,-0.006019531,0.016102111,0.018385567,0.014762055,-0.02950267,0.05034322,-0.01535168,-0.024121005,0.0015022026,-0.014804937,0.029545551,-0.03674969,-0.01152448,0.032097016,0.011738889,0.022384293,0.028966647,-0.0050332495,0.005783681,-0.0035725888,0.0113743935,0.005354863,0.025793394,0.0153624,-0.014386839,0.0026251695,0.018857265,0.03269736,0.0011665187,-0.03046751,0.0024188007,0.0052128173,0.01725992,0.019864988,0.0073542264,0.013014622,-0.015458884,0.0024188007,-0.029717078,-0.0114923185,0.014386839,-0.046398092,-0.0019953432,-0.02110856,-0.030017251,0.04965711,-0.03599926,0.025900599,0.056732602,0.026329417,0.0064429883,0.03098209,0.010827651,0.013765054,0.01344344,0.010345231,0.043160517,0.02231997,0.051929843,0.016187875,0.018460609,0.0015718855,-0.023670746,-0.00817434,-0.014011624,-0.03627799,0.02162314,0.0046392735,0.007482872,0.014944303,0.029073851,-0.045154523,0.021451613,-0.02617933,-0.009208864,0.033276267,0.035570443,0.0103505915,0.044682823,0.002357158,0.003382301,0.009460794,-0.00008609859,-0.0619213,0.0017809342,0.033297706,0.0072577423,0.026500944,0.012639407,-0.012843095,0.018664299,0.044768587,0.0046124724,-0.04133804,0.013014622,0.011149265,0.02759443,-0.0019645218,-0.0021762506,-0.012778772,-0.017838823,0.011181426,-0.015040787,-0.013539924,0.0057944013,-0.021891152,-0.022041239,-0.014890701,0.027444344,0.013036063,-0.010355951,-0.02446406,0.004052329,0.0029722438,0.03548468,0.01991859,-0.02710129,-0.004824201,-0.026522385,-0.043996714,-0.012307073,-0.030832004,0.030017251,-0.019339686,0.007032613,-0.013786495,-0.0034010618,0.0054620677,-0.023949478,0.045540456,0.006619876,0.019018073,-0.003216134,0.0014526205,-0.021419453,0.03559188,-0.046055038,-0.03482001,-0.044982996,-0.05999162,-0.049785756,0.037307154,-0.026586708,-0.0045159883,0.00936431,0.015952025,-0.015180153,-0.012671568,-0.030295983,-0.017442167,-0.008721083,-0.013368397,-0.016638134,0.019650578,-0.05325918,0.008136819,0.009546557,-0.031282265,-0.048799474,0.042088475,0.0011712088,-0.0060784933,-0.009031977,-0.01463341,-0.0065662735,0.05741871,-0.024764232,-0.012564364,0.026265094,0.018792942,0.0019042194,-0.038722254,0.020390289,-0.0000020310222,-0.0007397108,0.017806662,0.017860264,0.009782407,0.03527027,0.04318196,0.0146762915,0.033276267,-0.0147942165,-0.009214224,0.016981188,-0.0034412635,0.02446406,-0.0071451776,-0.045754865,0.043310605,-0.032675922,0.000013829795,0.038143348,0.02641518,-0.0039022425,-0.016230756,-0.015405281,-0.030767681,0.006646677,0.0029883245,0.035934936,0.03529171,-0.013282633,0.020315247,0.01080085,0.008517395,0.005325382,0.011953298,0.013539924,0.016337961,0.0010278228,0.0046901954,-0.0022512937,0.05951992,-0.0017474329,0.039429802,-0.04867083,-0.02855927,0.016413003,0.0061749774,-0.024206769,-0.023263369,0.011867534,0.0057247183,-0.03623511,-0.005424546,0.00408181,0.011888975,-0.011202867,0.026307976,0.0096430415,0.01801035,0.007177339,-0.013014622,0.016981188,0.0073542264,0.031796847,-0.043289162,0.041252278,-0.018460609,0.06964002,0.03647096,0.0032992174,0.0034841453,-0.015726896,-0.010302349,0.016262917,-0.0069200485,0.0018077353,0.012424998,0.04772743,-0.013818656,0.042860344,0.019747064,0.022748787,0.026307976,0.007032613,-0.000671368,0.043996714,0.013507763,0.020079397,0.023327691,0.0007792425,0.003961205,-0.0006626576,0.028945206,-0.002660011,0.024849996,-0.016262917,-0.035356034,0.047641665,0.029695638,0.019082395,0.00887117,0.0725131,-0.028023249,0.019264642,0.028387742,-0.015212314,-0.027958926,-0.000111559646,-0.0040550088,0.010859813,-0.016873984,0.019822106,-0.042195678,-0.0364924,0.027658753,-0.031303704,-0.0074453503,-0.010077219,0.03694266,-0.010366672,0.009423273,0.011352953,-0.03818623,-0.018042512,-0.00791705,0.022362852,0.02159098,0.0006495921,-0.0032536555,-0.022770228,0.00960016,-0.038014702,0.029781401,0.01297174,-0.035141625,0.03286889,-0.039558448,-0.0235421,0.0069950917,-0.013068224,0.029609874,-0.017206317,-0.014419001,0.021505216,-0.00047638986,-0.021558817,0.013722172,0.017045511,-0.02662959,-0.0009775708,-0.015244476,-0.05115797,0.010452435,0.029674197,0.0030553273,0.052959006,0.025600426,0.006694919,0.00035477977,0.0046124724,0.041595332,0.004936766,0.027615871,0.04588351,0.013561365,0.019832827,-0.0038834817,0.003141091,0.029309701,0.063422166,-0.003577949,-0.04058761,0.02399236,-0.0048215208,-0.00084088504,0.024614146,0.01753865,0.027958926,-0.019564815,-0.034734245,-0.0031866527,0.035977818,-0.00480008,-0.026736794,-0.0022137722,0.017452886,0.016970467,-0.015726896,-0.024099564,0.0057300786,-0.035699088,-0.039151073,0.013475602,0.01126719,-0.0067270803,0.00288112,0.0039960467,-0.0038325598,-0.021001356,0.03121794,0.0078098453,-0.05514598,-0.025578985,-0.03859361,0.018675018,-0.00014455852,0.006973651,0.02834486,0.042581614,0.023885155,-0.003891522,0.0244855,-0.01658453,-0.0007055394,0.014311796,0.03599926,0.027551549,-0.009916414,-0.04438265,0.039729975,-0.004030888,0.033919495,0.029095292,0.02061542,-0.00240138,0.0095948,0.012542923,-0.0020931673,-0.011503039,0.010484597,0.0026479503,0.022641584,0.025729071,-0.0014955023,0.029223938,0.004352501,-0.0058212024,0.03527027,-0.0037735973,-0.008447712,-0.026672471,-0.016037788,0.005740799,-0.018578535,0.033619322,-0.00093669904,0.04298899,-0.011835373,-0.00039699153,0.020583257,0.02973852,-0.0036047501,-0.00504933,0.019618418,-0.0004951506,0.006212499,0.0013393858,0.03672825,0.035034418,-0.01634868,0.0014419,0.002517965,-0.022234207,-0.03162532,0.002326337,-0.03237575,-0.0024831234,0.002109248,-0.0058426433,-0.0020033834,0.0002686812,-0.013186149,-0.050514746,-0.006212499,0.011888975,-0.002999045,0.015169432,-0.02375651,-0.009155261,0.013775774,-0.0062393,-0.0056871967,-0.020325966,-0.00648587,0.027036967,-0.021194324,0.009798489,-0.01991859,-0.007734802,-0.0015919863,0.008442352,0.0182462,0.0034144623,0.023134723,-0.022234207,-0.020111557,-0.018878706,0.0033233385,-0.01463341,0.009857451,0.015780497,0.007488232,-0.011245749,-0.04584063,0.017913867,0.022127002,-0.0016536289,-0.019103836,-0.00014799241,-0.023842273,-0.02446406,0.01008258,-0.009852091,-0.024678469,0.0005186016,0.033404913,-0.014611969,-0.016970467,-0.0071934196,-0.006501951,0.006185698,-0.04511164,0.009814569,0.012885977,0.000005737114,0.005470108,0.012521482,0.0043900227,0.0070486935,0.027851721,0.0070701344,-0.01608067,0.021290807,0.015651852,-0.05158679,0.027787399,0.026758235,-0.027658753,0.0028087571,0.027765958,-0.0074078287,0.02111928,0.02064758,-0.011138544,0.0033179782,0.0028703995,0.004708956,0.028430624,-0.026329417,0.0068074837,0.0013896379,-0.0067538815,0.022277089,-0.0068235644,-0.015201594,-0.021644581,0.029845724,0.0031571717,0.021676743,-0.008018894,-0.01967202,0.006619876,-0.0073542264,0.03985862,0.042581614,0.006282182,-0.010929495,-0.034734245,0.0145583665,-0.038765136,0.009653762,0.0066145156,-0.0018318563,0.025064405,-0.04228144,-0.005140454,-0.020272365,0.019135997,0.0071398173,-0.019950751,0.020658301,0.0079331305,-0.0360207,0.002067706,0.021816108,0.029245378,0.0058694445,0.03239719,-0.007536474,-0.014065226,-0.017806662,0.027530108,0.036792573,-0.009069498,-0.00960016,-0.016809661,0.04202415,-0.013325515,0.027272817,0.020776225,0.012253471,0.036299434,0.028409183,-0.0059873695,0.01127791,0.008126099,-0.0031786123,0.0018934989,0.0015089029,0.022855991,-0.02375651,0.015383841,-0.019371847,-0.03527027,0.019082395,0.028516388,0.032525834,-0.029309701,-0.0041112914,-0.03336203,0.022191325,0.009868171,0.020293806,-0.000019493626,-0.0153624,0.018171158,-0.034498397,-0.008710363,0.029138174,-0.039708536,0.0076115173,0.005719358,0.008056415,-0.031325147,-0.010189785,-0.035720527,0.001965862,-0.011867534,-0.040480405,-0.018803664,-0.026994085,0.027015526,0.0036637126,0.016166434,-0.007343506,-0.00059464975,-0.01943617,0.008077856,-0.008860449,-0.012778772,-0.0072363014,0.022491498,0.013797215,0.00001735791,0.009852091,0.014333237,-0.028301978,0.040373202,-0.010479237,-0.028923765,0.051972724,0.014150989,0.021633862,-0.0025889878,0.015909143,-0.0061481763,0.00013032043,-0.028409183,-0.024764232,0.039494127,0.012028341,0.018321244,-0.0071666185,-0.015587529,-0.013421999,0.029073851,0.0073542264,-0.0053468226,0.011106383,0.011685287,-0.017431445,0.006116015,-0.030488951,0.0115352,0.00030670527,-0.007155898,-0.02975996,-0.00036382515,-0.0116102435,0.025343137,-0.059691448,-0.0069414894,0.0092892675,-0.009685923,-0.030853445,0.004371262,0.017249199,-0.014268914,0.019521933,0.026029244,-0.008592438,0.0073542264,0.0021239885,0.024785673,0.026801117,-0.03745724,-0.017613694,-0.0002375249,0.022255648,0.034391195,0.011985459,-0.0005879495,0.008892611,0.0036369115,0.00072832033,-0.025364578,0.016434444,-0.0030338864,0.036192227,0.0017661935,-0.0039022425,-0.01991859,-0.01486926,-0.00983601,0.010774049,-0.0012797533,0.028452065,0.03689978,-0.0022244926,0.021923313,0.021247925,0.01439756,0.013314795,0.010768688,0.0046339133,0.006668118,0.0010532839,-0.010672205,-0.024892878,-0.027980367,0.0003336739,-0.0887653,0.014472603,-0.021955475,0.01750649,-0.010816931,0.00961088,-0.0030767682,0.00083619484,0.027637312,0.009262466,-0.024185328,-0.020626139,-0.020208042,0.023134723,-0.008554917,0.018224759,-0.0009474195,-0.053001888,0.0043632216,-0.0016281678,-0.0042560175,0.009777048,0.0037467962,0.0016871303,0.014804937,0.055060215,-0.02185899,-0.014772776,0.029009528,-0.005089532,-0.049828637,-0.002377259,-0.007622238,0.0038995624,0.016991908,-0.048971,-0.03715707,0.027165612,0.013550645,0.010007537,0.032268543,0.021440893,-0.03096065,0.016177153,0.011878255,-0.008678202,0.014826378,-0.008678202,-0.0150300665,-0.016605971,-0.026115008,-0.026994085,-0.0028784398,0.02040101,-0.0049046045,0.024142446,0.008919411,0.015523206,0.015576809,0.010130822,0.0316682,-0.03623511,-0.025536103,0.009884252,-0.008040335,-0.00039531649,-0.025021523,-0.0028328781,-0.008549556,-0.022019798,0.030338865,-0.023241928,0.020025795,-0.030103015,-0.009578719,0.081046574,0.011835373,-0.000015599087,-0.008061776,0.053173415,-0.012081943,-0.00888189,0.030124456,-0.0021909913,0.0069468496,0.000008851697,-0.0013514463,-0.012575084,-0.0019779224,0.016648853,-0.028001808,-0.012596525,0.015726896,-0.015523206,0.019564815,-0.026007803,0.031389467,-0.029459788,-0.004156853,0.043139078,-0.019757783,-0.0113743935,-0.03863649,-0.0072845435,-0.0040630493,-0.0002567882,0.01656309,0.014997905,-0.0036181507,0.0059176865,-0.026329417,0.03627799,-0.0034895055,0.014922862,-0.022470057,-0.021269366,0.0016482687,-0.01560897,0.038936663,0.022127002,0.028216215,0.011288631,0.031732522,0.021065678,-0.010259467,-0.014504764,0.018567814,-0.029416906,0.016756058,0.01390442,-0.044511296,-0.021162162,-0.00191762,-0.0130253425,0.021162162,-0.024099564,-0.0032134538,-0.03936548,0.00015754031,0.023949478,0.022169884,-0.02422821,0.029116733,-0.04704132,0.03859361,0.08559205,0.0633364,-0.010827651,0.009803848,0.000061349434,0.0015799259,0.013368397,0.0026318696,-0.0016281678,0.0022244926,-0.025407458,-0.028602151,0.014547646,-0.010977738,0.024742791,0.050000165,-0.01343272,-0.011149265,0.010532839,-0.013132547,-0.03342635,-0.008801486,-0.021762507,0.011931857,-0.007927771,-0.022041239,0.030295983,-0.0035457877,0.03482001,0.002374579,0.009707364,-0.014654851,0.0021923312,-0.0031116097,0.013711452,-0.02304896,0.002019464,0.017313521]},{"id":"interface-RESTUpdateRoleBody","type":"interface","source":"main","text":"Interface: RESTUpdateRoleBody\nDescription: Body for PATCH /guilds/{id}/roles/{roleId} (update role). All fields optional.\nProperties: color: number, hoist: boolean, hoist_position: number | null, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/RESTUpdateRoleBody"},"embedding":[0.016954055,0.022897523,-0.000059950813,0.03545858,-0.0031318374,0.0002547251,0.012156585,0.0039042637,0.03386317,0.025346817,0.024155876,-0.0037750578,-0.012212762,0.004558719,0.011740879,0.034896813,0.017257407,0.006353557,-0.037660696,0.039188698,-0.01658329,-0.043121047,0.013796938,0.00044941166,-0.0183697,0.013381232,0.03314411,0.017145054,-0.025234465,-0.061524455,0.03204305,-0.036402345,0.009594939,-0.020762818,-0.026852347,-0.0041402048,0.02700964,0.035952933,-0.00011612727,-0.0072973217,0.03087458,-0.020054994,0.023212112,-0.039211165,-0.07010822,0.057839278,0.0139317615,0.029616227,0.0047581457,0.011038674,0.010813968,0.01348235,0.018032642,0.067906104,0.0100612035,0.01505529,-0.034582227,-0.008662409,-0.01033085,0.041525636,-0.016448466,-0.07132163,0.012280174,-0.031683523,-0.009645497,0.018032642,-0.09374727,0.019268524,0.044267047,0.022155995,0.03772811,-0.009527527,-0.008224233,0.03736858,-0.012235233,-0.037503403,0.041772813,-0.018594407,0.00770741,-0.047098342,-0.054603517,0.049570106,-0.059547044,-0.07100704,0.0097971745,0.013347526,0.00020908174,-0.047278106,-0.047952224,0.0014044114,-0.040963873,-0.015044055,-0.055322573,-0.019976348,-0.04318846,-0.056086574,-0.027975876,0.023279523,-0.0064490573,0.06453551,0.01892023,0.0058367336,-0.06947904,-0.04777246,-0.015942879,-0.013178997,0.011010585,0.012100409,-0.00078927923,-0.021751525,-0.08925316,0.017336054,-0.0021529626,0.014751937,-0.0044632195,0.012100409,0.015617055,-0.019133702,0.046379283,-0.07981551,-0.018504525,-0.041143637,-0.008319734,-0.046559047,-0.05060375,0.0030953228,-0.039278578,-0.022796405,-0.046918575,0.0020729112,-0.0026669772,-0.0059827925,0.0036570872,0.000349874,-0.027526464,0.017313585,0.019167406,0.0007597866,0.007179351,-0.051592458,0.0022568891,-0.014156467,-0.011695938,0.009662351,-0.07756845,0.020908877,0.0021290877,0.009375851,-0.00028456887,0.06246822,-0.048356693,0.02665011,-0.03936846,0.028560111,-0.016852938,-0.08916327,-0.004808705,0.004314352,-0.0436154,-0.023414347,0.019908937,-0.021942524,-0.006881616,-0.048446577,0.0047974694,-0.04049199,0.000021340471,0.017459642,-0.04242446,0.02309976,0.05172728,-0.018122524,-0.0061457045,0.0011045695,-0.062423278,0.010954409,0.030672345,-0.017246172,-0.026357993,0.010358939,0.050648693,0.025998464,-0.05667081,0.020436995,-0.047997165,0.008859027,-0.058693163,0.04044705,-0.0045278226,0.027324228,-0.005814263,0.04444681,0.023032347,-0.019290995,0.0017962422,-0.034874342,0.013313821,-0.030941993,0.038447168,-0.030267876,0.023054818,0.0070501454,0.053030577,-0.041413285,-0.042716578,0.027121993,-0.018796643,-0.019942641,-0.05055881,0.0059715575,0.048446577,-0.021481877,-0.022773936,-0.0229537,-0.014010408,0.010606115,-0.009173615,0.021920053,-0.017470878,0.025908582,-0.016055232,0.025481641,0.069748685,-0.022582935,-0.010482526,0.047278106,-0.0039295433,0.008628704,0.009707292,-0.0014247753,0.002946455,0.016167585,-0.029751051,-0.010645439,-0.043435637,-0.03662705,-0.0070501454,0.03705399,0.0011579372,0.0077916747,-0.018482054,-0.045368105,-0.00889835,0.004996896,0.03397552,0.00060179026,0.029436463,0.0077916747,0.001577154,0.011718409,0.031975638,0.056086574,-0.011740879,-0.046514105,-0.018751701,-0.0069658807,0.0508734,0.041098695,-0.018268583,0.0043564844,-0.0061119986,0.010594879,-0.0016684408,0.01643723,-0.016954055,-0.007106322,0.020818995,-0.024043523,0.0035475432,-0.012561056,-0.006679381,0.034896813,0.04673881,-0.00037603115,-0.009785939,0.031211639,0.03891905,0.012628468,0.003536308,-0.022672817,0.03442493,0.005814263,-0.035728227,0.0036851754,-0.017864114,0.020796524,0.010684762,0.03626752,0.045839988,0.027054582,0.011740879,0.014414879,0.019886466,-0.016864173,-0.00675241,-0.022976171,0.013650879,-0.037076462,0.057704456,-0.0011600439,0.00022031704,0.011004968,0.0073422627,-0.02309976,0.008864645,-0.009651115,0.013942997,-0.012695879,-0.018762937,-0.0344474,0.032672226,0.055816926,-0.03390811,0.021133583,-0.0485814,-0.022448111,-0.007566969,0.020695407,-0.020762818,0.038851637,0.041795284,-0.015133938,-0.0010497975,-0.025593994,0.020178583,-0.057929162,0.0039716754,0.0041177343,-0.013336291,0.0062636747,0.010842056,-0.06089528,0.041413285,0.022863818,0.05060375,-0.010336468,-0.037301168,0.07684939,0.05091834,-0.021818936,-0.0030166758,-0.024447994,0.007645616,-0.02431317,-0.03462717,-0.02424576,-0.032604814,0.0254367,-0.030425169,0.05204187,0.0246727,0.025706347,0.0027231537,0.008286027,-0.046424225,-0.030986933,0.020178583,-0.013560996,0.023661524,0.05276093,-0.04242446,-0.006578263,-0.031548698,0.037076462,0.023639053,0.024110936,0.014729467,0.028605051,0.018830348,-0.013044173,-0.010780262,0.013414938,-0.06772634,-0.020111172,0.0025897347,-0.008201763,-0.028492698,-0.022268347,-0.05172728,-0.03159364,0.012875644,0.06219857,0.005628881,-0.00007197609,-0.014369938,-0.001601029,-0.016807996,0.012808232,-0.01620129,-0.037233755,0.01944829,0.017886585,-0.033413757,0.0026669772,0.008078175,0.02395364,0.023481758,0.03932352,0.027166935,-0.02023476,0.013909291,0.0014928894,-0.019942641,0.022908758,-0.03287446,0.011021821,0.017684348,0.009589321,-0.016886642,-0.03170599,0.023459287,-0.026762463,0.018010171,0.043772694,0.0717261,-0.011752115,0.06354681,-0.031795874,-0.0038565136,0.04159305,-0.020077465,0.0009009299,0.024088465,-0.015931644,0.04979481,0.0100612035,-0.0069377925,-0.03433505,-0.01987523,-0.03316658,-0.038806695,0.06529951,0.03658211,0.008145587,0.03963811,-0.0077579687,-0.019987583,-0.018268583,0.04125599,0.0134037025,-0.027773641,-0.027414111,0.012819467,0.013841879,-0.008488263,0.021605466,0.042401988,-0.050828457,0.011774586,-0.0017189996,-0.021560524,0.059232455,-0.014493526,0.05676069,0.023796348,-0.003952014,-0.0031823963,0.027414111,-0.0235267,-0.014044114,0.044963636,0.016931584,0.04278399,0.028852228,-0.027683757,-0.0019352789,-0.038087636,-0.018223643,-0.05015434,-0.057614572,0.01369582,0.029481404,0.034245167,0.005609219,0.009201704,-0.027930934,-0.017212465,0.0119094085,-0.008218615,0.045413047,-0.008347821,-0.013808173,-0.013190232,-0.067052215,0.06058069,0.07006328,0.0019830288,0.00069237483,-0.0021824553,0.016145114,-0.0035054109,0.018504525,-0.021661641,-0.009909527,0.02736917,-0.031166699,0.007370351,-0.040222343,-0.0016937201,-0.012594761,0.0044941166,-0.051502574,-0.009763468,-0.0018271393,0.052985635,0.046918575,0.025571523,-0.01930223,-0.01641476,0.00703891,0.0017723672,0.026717523,0.046783753,-0.044918694,-0.04849152,-0.026829876,-0.045547873,-0.004305925,-0.008454557,0.03085211,-0.032132935,0.049974576,0.030717287,-0.0046373666,-0.008696116,-0.00439019,-0.016841702,-0.043862578,0.013325055,-0.008729821,0.016482173,-0.019347172,0.015268761,0.02095382,-0.016324878,0.0075164097,0.015336173,0.012987996,0.03961564,0.0082804095,-0.018717995,-0.020212289,0.0015645144,0.030784698,0.001522382,0.03278458,-0.0044267047,0.037121404,0.04087399,0.027166935,0.034806933,-0.019571878,-0.009021939,0.03278458,-0.0051569985,0.016425995,0.019380877,-0.033660933,0.031458817,-0.0016754628,0.0019830288,-0.026447875,0.0042834547,-0.012808232,-0.052715987,-0.0076343804,0.01930223,0.01675182,-0.0075107925,-0.020010054,-0.022054877,0.03900893,0.03204305,0.009887056,0.045547873,0.015044055,-0.004982852,0.02350423,0.027077053,0.012482408,-0.0064602927,-0.08588257,0.010128615,0.00032213688,-0.044199634,-0.0048311753,0.0061232336,-0.01271835,-0.026672581,0.016324878,0.021144819,0.0413234,0.0757708,0.0023594112,0.0027933742,-0.035211403,0.0009346358,0.00031967915,-0.015448526,0.017965231,-0.004530631,-0.009055645,-0.031930696,0.010246586,0.0022990215,0.009858968,0.026762463,-0.011920644,0.0042441315,0.03321152,0.014302526,0.03550352,-0.031840816,-0.014392409,-0.017189996,-0.023436818,-0.017100113,-0.004645793,0.009139909,-0.018852819,0.021886347,0.017459642,0.022751465,0.02157176,-0.021358289,0.00858938,-0.0063984985,-0.01947076,-0.018189937,-0.03894152,-0.017965231,-0.06583881,-0.020526877,0.0064602927,-0.0516374,-0.042963754,0.031953167,0.0042834547,-0.0010280291,-0.0066512926,0.030559992,0.010460056,0.028605051,-0.037121404,0.04076164,-0.029009523,0.00090795197,-0.012729585,-0.003409911,0.000931827,-0.026110817,-0.07765833,-0.006499616,-0.016268702,0.0123475855,0.009201704,-0.044986106,0.029638698,0.0037947197,0.014617114,-0.03779552,-0.01811129,0.021066172,0.01040388,0.027526464,0.012482408,-0.016021525,0.016998995,-0.004159867,0.0025335583,0.035368696,0.013875585,-0.0076231454,-0.012403762,0.056895517,0.013055408,-0.006072675,-0.012954291,-0.011740879,0.036761872,0.0005814263,-0.0144373495,-0.007639998,-0.06049081,0.009128674,-0.032087993,-0.004786234,0.012156585,0.039795402,-0.045839988,-0.001546257,0.0065726456,0.008274792,-0.029481404,-0.013999173,0.045390576,-0.014111526,-0.018246112,0.004707587,-0.0029352198,0.0053676604,0.02736917,0.011420674,-0.016628232,-0.035346225,-0.012999232,-0.022223406,0.055547282,0.017527055,0.008656792,0.00037884,0.010875762,-0.028312935,0.008083792,-0.0005677333,0.031885758,-0.012156585,0.018291054,0.02739164,0.035211403,0.033526108,-0.0026529331,-0.010842056,-0.02665011,-0.0034464255,0.011920644,0.013257644,0.02779611,-0.013583467,-0.0334587,-0.003359352,0.021324582,-0.012055468,0.032604814,0.0054041753,0.010757792,0.0028032053,0.030290345,0.006314234,0.0214257,-0.02507717,-0.0071568806,-0.012437467,-0.01176335,-0.019841524,0.0015069335,0.009493821,0.0019886466,-0.038537048,0.024852464,-0.03011058,0.00563169,-0.017852878,0.002765286,0.0223807,-0.04898587,-0.030245405,-0.0095556155,-0.047233164,0.049570106,0.0003819999,0.008600616,0.0033790139,-0.000004813949,-0.036964107,-0.011808291,-0.003027911,0.001184621,0.017448407,0.010055586,-0.0065108514,0.0129430555,0.01868429,0.0007155476,0.0022007127,-0.027930934,0.010504997,-0.033391286,0.019841524,-0.043031167,0.018931465,-0.0073647336,0.00539294,0.008426469,-0.0036907932,0.02851517,0.01730235,-0.015212584,0.032155402,-0.0014774408,-0.022728994,0.03125658,0.020841466,-0.0075164097,0.010089291,0.015021585,-0.001713382,-0.04287387,0.014347467,0.05487316,-0.02471764,-0.0063029984,-0.026897287,0.021796465,0.037256226,0.033278935,-0.018673055,0.023279523,-0.021347053,0.024133407,-0.00918485,0.03190823,0.0042413226,0.008297263,-0.009432027,-0.004845219,-0.013145291,0.0033200285,0.009493821,0.013639644,0.0047637634,-0.018212408,0.004519396,0.016055232,-0.031144228,0.055412456,-0.016055232,0.013145291,0.019796584,-0.025324346,-0.0073647336,-0.0123925265,0.0010519042,0.01233635,0.019268524,-0.009409556,0.005390131,0.009190468,-0.0144822905,-0.0005322719,0.015021585,-0.011111703,0.024740111,-0.014897997,0.0032132934,-0.0036514697,0.010802733,0.016504643,0.0043621017,0.011224056,0.022706524,-0.024268229,-0.010336468,-0.0053508077,0.006516469,-0.052985635,-0.040986344,0.018392172,0.009241027,0.0056036017,0.0076961746,0.009814027,-0.03887411,-0.017066408,-0.0074602333,-0.018785408,-0.002782139,-0.014976643,-0.00904441,-0.022908758,0.014381173,-0.025796229,0.0029689257,-0.021470642,0.01178582,0.022549229,-0.0035868667,0.011999291,-0.00020732623,0.069344215,0.0045868075,0.018100055,-0.001327871,-0.00031599257,-0.0015659187,-0.008050086,0.003044764,0.019043818,0.040829048,0.024335641,-0.024605287,0.00539294,0.013369997,0.035952933,-0.018437114,0.0068085864,-0.008696116,-0.02584117,0.005061499,0.02202117,-0.03476199,-0.019111231,-0.029751051,-0.003519455,0.040379636,-0.011617291,0.0017119775,-0.013100349,0.03314411,0.032649755,-0.014223879,-0.023863759,-0.02858258,0.039278578,-0.00007575044,0.050289165,0.028312935,0.0023200877,0.0269647,-0.004848028,-0.004451984,-0.0028987052,0.04736799,-0.016358584,-0.003659896,-0.0035952933,0.028335406,-0.0006284741,-0.016336113,-0.0027596685,-0.0017737716,-0.02775117,-0.026110817,0.0036233815,-0.0028256758,-0.05006446,-0.015324937,0.009909527,0.0012990806,-0.047188222,0.020313406,0.023728935,0.027706228,0.01641476,-0.0043621017,-0.009094968,-0.01715629,0.015336173,-0.014190173,-0.022425642,-0.04118858,0.003963249,0.006089528,-0.05559222,0.028357875,0.008628704,0.037211284,-0.032177873,0.06022116,0.0013531504,-0.0231447,-0.03545858,-0.029885875,0.004308734,-0.009898292,-0.006151322,-0.031840816,-0.025301876,0.041031282,0.0046177045,0.01011738,-0.001829948,0.017032702,0.014190173,-0.03047011,0.046469163,0.035256345,-0.0043649105,-0.018616877,-0.027279288,-0.040536933,0.06831057,-0.0013938784,0.008196145,-0.049839754,-0.00548844,-0.0057580867,0.010673527,0.04058187,0.007055763,0.021470642,0.009370233,-0.06296257,0.03442493,0.0076680863,0.013246409,-0.023279523,0.029279169,-0.00016765161,-0.035391167,0.011639762,-0.030941993,0.01147685,-0.0023748598,0.00040060835,-0.0018791024,-0.018167466,0.0046205134,0.0028439332,-0.0028818522,-0.012257703,0.032177873,-0.03471705,-0.050693635,-0.03242505,0.012179056,-0.016718114,0.042986225,0.0027975875,0.008830939,0.017616937,0.014594643,-0.0053227195,-0.029121876,0.035368696,-0.017257407,0.022448111,0.0047132047,0.022054877,-0.026155759,-0.013684585,0.04235705,0.018841583,0.027908463,-0.017055172,-0.022706524,0.026402935,0.013763232,0.025683876,-0.0029211757,-0.04008752,0.0068029687,-0.007915263,0.006241204,0.01811129,0.01049938,0.0037441608,-0.03361599,0.014976643,-0.0062355865,-0.006741175,0.05900775,-0.017931525,0.025301876,0.01908876,0.029189287,-0.00045397598,-0.011016203,0.034469873,-0.027593875,-0.019369641,-0.0065445574,-0.016695643,0.018246112,0.019335937,0.03278458,0.0018159039,0.008297263,-0.0016993379,0.032627285,0.011797056,-0.0043873815,0.0056682043,-0.01541482,0.030222934,0.037705638,0.020908877,0.009005086,-0.013628408,-0.018055113,0.018830348,-0.029818464,-0.013808173,0.006185028,-0.02274023,0.021830171,0.051367752,0.002932411,0.02817811,-0.0062355865,-0.031863287,0.0281107,-0.017819172,-0.022470582,-0.014684525,0.02665011,0.020290935,-0.01019041,0.0017386613,-0.013650879,0.022751465,-0.028088229,0.015145172,0.03961564,-0.024200818,0.014796878,0.018212408,0.0054772045,-0.021515584,0.013785702,-0.026762463,0.010993732,0.016560819,-0.011038674,-0.019403348,-0.023616582,-0.02316717,0.01734729,0.0037216903,-0.013841879,0.021762758,-0.038716815,0.016931584,0.016088936,-0.0054350724,0.024515405,-0.02622317,0.031481285,-0.0036486608,-0.019751642,-0.010235351,-0.007684939,-0.021627937,0.00861185,0.030694816,-0.013257644,-0.023279523,-0.020549348,0.016763054,-0.03087458,0.008623086,0.01071285,-0.013965467,-0.007072616,-0.0056485427,-0.000099800985,0.015527173,0.055322573,0.016043996,0.0035278816,0.0005312186,0.026425404,0.027256817,0.018673055,-0.0076680863,-0.0062243515,0.008662409,0.0010189004,-0.012650938,-0.025009759,0.01176335,0.0062243515,-0.0024998523,-0.03732364,0.030200463,0.030582463,0.010533086,0.0036739402,0.019392112,-0.011342026,0.0029436464,0.019717935,-0.014909232,0.050783515,-0.02221217,0.02121223,0.035818107,0.009791557,0.018425878,0.011516173,0.008460174,-0.013392467,0.0012007718,0.040357165,0.0045250137,0.024762582,-0.01290935,0.013819409,-0.017841643,-0.02970611,-0.0064322045,-0.0011045695,-0.005530572,0.006454675,-0.024425523,-0.008696116,0.00207572,-0.027121993,-0.019886466,0.017931525,-0.0022695288,0.0024872127,-0.006100763,-0.010454439,0.050648693,-0.008274792,-0.0030812786,0.007140028,0.047278106,-0.015886702,0.024874935,0.0026824258,0.047278106,0.019762877,0.035346225,0.009280351,0.039256107,0.014280056,-0.0032301464,0.0012934629,-0.002703492,0.019313466,-0.023751406,0.023796348,-0.010201644,-0.0069883512,0.0039660577,0.008027616,-0.0010350512,0.010634203,0.06516469,-0.034065403,0.05118799,-0.0038930285,-0.03442493,-0.0043255873,-0.013325055,0.035211403,-0.0098645855,-0.026515288,0.048446577,0.0030953228,0.018830348,-0.004421087,-0.008364675,-0.011061144,0.008909586,-0.026537757,0.0036570872,0.029031992,0.014212644,0.019987583,0.017414702,0.018504525,-0.0028397199,0.030582463,0.012426232,0.018717995,-0.017055172,0.026784934,0.00990391,-0.017684348,-0.053255282,0.031795874,0.020560583,-0.0258187,0.031368934,-0.016504643,0.0018032643,0.019246055,0.016347349,-0.0021094258,0.0020967862,-0.008881498,-0.008196145,0.031661052,0.023212112,-0.01138135,0.013201468,0.036065284,-0.013909291,0.0023650287,-0.01235882,0.025616463,-0.01660576,0.0001015565,-0.005024984,-0.034986697,0.0047188224,0.0028383154,0.023369405,-0.015302467,-0.018717995,0.012235233,-0.027481522,-0.0021206613,-0.03889658,0.0007000991,-0.0006551579,-0.033705875,-0.0663781,0.008448939,-0.019998819,-0.012246467,0.008752292,0.02779611,0.008533204,-0.003943587,0.0062973807,-0.019313466,-0.010184792,0.004488499,0.00021663046,0.007909645,-0.014392409,0.039188698,0.015347408,-0.0066849985,0.009128674,-0.019549407,0.021684112,0.016257467,-0.02388623,-0.009297203,0.014100291,-0.04199752,0.016482173,-0.04044705,0.004696352,-0.010078057,0.02030217,0.005659778,0.009381468,0.02471764,0.0016993379,0.017897818,0.013280114,0.008100645,0.009106204,-0.026537757,0.0027161317,-0.0020981906,0.0060164984,0.011628526,-0.0005041837,0.0155159375,-0.020717878,-0.013246409,0.0022863818,0.0138868205,-0.016291173,0.0057187635,-0.006404116,-0.021178525,0.030290345,0.016032761,-0.010836438,-0.04058187,0.0076343804,0.04046952,0.022279583,0.008954527,-0.000046565016,0.007842233,0.016560819,0.02214476,0.020740347,0.0046542194,0.0019675803,0.005468778,-0.046559047,-0.009387086,0.013898055,-0.019504465,0.010010645,-0.0019549406,-0.017661879,-0.0155384075,0.0024998523,-0.0043929988,-0.009516291,0.008920821,-0.02817811,-0.039413404,0.006611969,-0.012650938,-0.02025723,-0.011370115,0.0000845719,-0.030222934,-0.0007984079,0.002348176,0.0058086454,-0.0043368223,-0.0265827,-0.008403998,0.021942524,0.01834723,0.004157058,0.0044800723,-0.002276551,-0.044828814,0.0048227487,0.01465082,-0.038829166,-0.001433904,0.01348235,0.031773403,0.0011635548,0.041795284,-0.016594525,0.047997165,-0.008887116,-0.0029380287,-0.01465082,0.023728935,-0.0037385433,-0.010229733,-0.0062187337,0.0011712791,-0.0013903673,-0.029391522,0.0123925265,0.023639053,0.000761191,0.03745846,-0.024088465,-0.014324997,0.0037048373,0.056940455,0.028223053,0.023661524,0.016841702,-0.043547988,-0.010673527,0.024560347,0.008151203,-0.0023285141,-0.025549052,-0.017437171,-0.00878038,0.003106558,0.023279523,-0.016358584,-0.0013426173,-0.005418219,-0.009752233,-0.035818107,-0.033076696,0.010437585,-0.0108532915,-0.008050086,0.029998228,-0.021009995,-0.012403762,-0.01004435,-0.008774763,0.0065501747,0.010066821,-0.01071285,-0.04898587,0.03617764,-0.005235646,-0.000022470582,-0.00066814874,-0.016931584,-0.027548933,0.023212112,-0.015639525,-0.0033424993,-0.024605287,0.03577317,0.009151145,0.01866182,0.0069097043,0.02703211,0.042536814,-0.010533086,-0.018055113,-0.009196086,-0.00027438687,-0.020976288,0.014639584,-0.04172787,0.027661286,0.013729526,-0.023122229,0.013134056,-0.013145291,-0.013178997,-0.010269056,0.0008342204,0.017527055,0.007213057,-0.022425642,0.037975285,-0.032155402,0.01889776,0.047502812,0.0065220864,-0.024043523,0.021189759,-0.018774172,0.016998995,-0.0017695584,0.034941755,-0.022919994,-0.0074714688,-0.005659778,-0.027481522,0.028065758,0.011875703,0.0073759686,0.030492581,0.005238455,0.034087874,0.004120543,-0.037211284,-0.009982556,0.003246999,-0.01792029,0.021863878,-0.006280528,-0.021684112,-0.016931584,0.012167821,-0.00044730504,0.030492581,-0.0028481463,-0.017830407,0.018639348,-0.023683995,0.019526936,-0.023009876,0.0013735144,-0.009887056]},{"id":"interface-RoleResolvable","type":"interface","source":"main","text":"Interface: RoleResolvable\nDescription: Role ID or Role object for add/remove.","meta":{"url":"/docs/typedefs/RoleResolvable"},"embedding":[-0.0168457,0.024377557,-0.045903936,0.024163717,0.006967562,-0.007258619,-0.0023091557,0.035402104,0.028369203,0.0026403079,0.0038669077,-0.04431203,0.007270499,0.021169983,0.022951968,-0.018449485,0.00063297595,0.040011507,-0.003457051,0.0959896,0.03946503,-0.0263021,-0.0002827045,-0.027561368,-0.012533295,0.02012455,-0.006830943,-0.0075437366,0.0018235648,-0.032503407,0.07184964,-0.03366764,-0.0017760451,0.03466555,0.019007841,-0.020540347,0.030650143,0.018877162,-0.009593019,0.007989233,-0.017998049,0.016334863,-0.0046123713,-0.00086946023,-0.07479586,0.039702628,0.005470694,0.00014636408,0.010864169,-0.008559468,0.029153276,-0.012497655,-0.011274026,0.020077031,-0.02149074,-0.0029105756,0.012343217,-0.004425263,-0.06367627,0.035520904,-0.04074806,-0.038086962,0.0007599424,-0.005705322,0.0013929183,0.02153826,-0.08981205,0.023534084,-0.027870247,0.012366977,0.0046925605,-0.0048618494,-0.029034477,-0.026896095,0.010507772,-0.012343217,0.021859016,0.012901572,-0.0214551,-0.053031877,-0.022322332,0.026610978,-0.018413845,-0.05597809,-0.01193336,-0.024139958,-0.021003664,-0.045500018,-0.018200008,-0.052176524,-0.04400315,-0.0215739,-0.045286182,0.0037659286,-0.03944127,-0.048469994,-0.031814374,0.017118936,-0.035996098,0.07270499,0.0037896882,0.0048262095,-0.05013318,-0.016049746,-0.042553805,0.02744257,0.0028942407,0.007929834,-0.032527167,-0.014137082,-0.059969738,-0.009094064,0.018603925,-0.009794978,-0.011131466,0.009301962,0.009699939,-0.034451712,-0.010579051,-0.023415284,-0.03692273,-0.031196618,-0.014826116,-0.019934474,-0.055455375,-0.018556405,-0.030341266,-0.029343354,-0.028179124,-0.018378206,-0.0075437366,-0.013198569,-0.023237085,-0.02044531,-0.016976377,-0.023652881,-0.040106542,-0.025731865,0.0047282004,-0.068808384,-0.018259408,-0.0030249197,-0.002879391,0.0047460203,0.0061894283,0.033976514,0.0191504,-0.0013491112,-0.037659284,0.025446746,-0.040011507,0.01683382,0.005515244,-0.021241263,-0.015859667,-0.04027286,-0.0051142974,-0.02497155,0.010632511,0.00012919391,0.0144222,-0.050703414,0.017748572,-0.015693348,0.009711819,-0.02042155,0.02516163,0.058306552,-0.05051334,0.075603686,0.00720516,0.009753399,-0.06305851,-0.011743282,-0.04407443,0.03685145,0.030293746,0.02501907,-0.000049375838,0.004555942,0.045785137,-0.03718409,-0.014089562,-0.025803143,-0.0005524154,-0.034998186,-0.068523265,-0.019578077,0.020516587,0.018651444,0.003445171,0.027822727,0.029438393,0.032836046,0.0074486975,0.035140745,0.0060052895,-0.010941388,-0.028464241,-0.018437605,-0.021633299,-0.0013446562,0.05968462,0.007912014,-0.024187477,-0.0050281677,-0.043741792,-0.037920643,-0.02141946,-0.01798617,0.024567634,-0.004140145,-0.014137082,-0.02141946,-0.003694649,0.029723512,0.01197494,0.030816462,0.024662673,-0.0065933447,-0.0025512087,0.0136975255,0.023094527,-0.021930296,0.009688059,0.015657708,-0.0037273187,-0.015182513,0.0019052391,-0.02741881,-0.035307065,0.0005995637,-0.0149924345,-0.035354584,0.005853821,0.022845048,-0.029462153,0.011119587,0.01652494,-0.00019787459,-0.044502106,-0.01676254,-0.00298334,0.028155364,0.02632586,-0.009397001,0.054742582,0.015063714,-0.03228957,-0.007092301,0.037896883,0.026397139,0.029984869,-0.019399878,-0.011268086,-0.030341266,0.086913355,0.018188128,-0.015277552,0.01667938,-0.007009141,-0.029081997,0.021205623,0.017641652,-0.03727913,-0.028986957,0.014873635,-0.00953956,-0.032051973,0.021668939,-0.030127428,-0.031743094,0.019839434,-0.03473683,-0.045595057,-0.014647917,0.031220378,0.026919855,-0.02746633,-0.014814236,0.006207248,-0.019411758,0.02853552,-0.004544062,-0.040035266,0.03231333,-0.009943477,0.044573385,0.007929834,0.012176898,-0.010163255,0.01072161,0.030982781,-0.048755113,-0.022346092,-0.012984731,0.02520915,-0.0383008,0.07622144,0.028036565,0.052224044,0.045428738,-0.017582253,-0.042268686,0.058116473,-0.030483825,-0.0084763095,-0.0131866895,0.027941527,-0.046117775,-0.011125526,-0.026159542,-0.017439693,0.007852614,-0.029557193,-0.041247014,0.028939437,-0.03822952,-0.0017255555,0.07051909,0.04640289,-0.014529118,0.024757713,-0.0215145,0.02143134,-0.024175597,-0.0330974,0.0071517,0.01199276,0.022821289,0.038490877,-0.0045915814,0.0019527586,-0.004217365,0.010596871,0.00047482477,-0.03323996,0.064911775,0.002846721,0.019471157,0.02504283,-0.025779383,-0.03362012,-0.005452874,-0.047472082,-0.024377557,-0.02744257,0.003964917,0.04317156,-0.009949417,-0.00356991,0.0015169148,-0.030935261,0.012295697,-0.050845973,0.006920042,0.031315416,-0.030436305,0.025731865,0.025993222,-0.025351707,-0.027252492,-0.016429903,-0.015384471,-0.01316293,0.000327811,-0.014101442,0.024175597,-0.031457976,-0.0059102504,-0.016251704,0.024496354,-0.045119863,-0.001017959,-0.0048321495,-0.00018163254,-0.020671027,-0.017724812,0.005868671,0.00716358,0.031790614,0.03466555,-0.019649355,-0.035093226,0.01663186,-0.03727913,-0.030816462,0.033002365,-0.07075669,-0.032004453,0.038443357,-0.0048232395,0.03350132,-0.004202515,-0.011547264,-0.027181212,0.051891405,0.07327522,0.0143034,-0.050893493,-0.01439844,0.002144322,0.031149099,0.014018282,-0.058354072,-0.037778083,-0.009604899,0.0005854563,0.0048499694,-0.011113647,0.011303726,-0.018295046,0.025708105,0.07146948,0.049135268,-0.02155014,0.0007863009,-0.03663761,0.030578865,-0.03335876,-0.020742306,0.026183302,-0.03326372,-0.050703414,0.03953631,-0.0045767315,-0.009301962,0.004220335,-0.011529444,-0.018259408,-0.006551765,0.07845486,0.036186177,-0.007876374,-0.0067180838,0.002257181,0.04673553,-0.0031422337,0.005010348,0.009355422,-0.008862406,-0.00956926,0.017178336,-0.02025523,-0.03347756,-0.01798617,0.015087473,-0.032907326,0.027822727,0.017736692,-0.017784212,0.028297924,-0.018295046,0.07042405,0.053079396,-0.030982781,0.011487864,0.026563458,-0.017796092,0.036019858,0.0002810339,0.019910714,0.035592183,0.030246226,-0.052936837,-0.004410413,-0.0031481737,-0.027133692,-0.053221956,-0.07289507,0.00595777,0.022179775,0.0669076,-0.018449485,0.018948441,-0.021894656,-0.00841691,-0.031909414,-0.032669727,0.018627685,-0.0024056798,0.012307577,-0.026135782,-0.01656058,0.045191143,0.10862981,0.020849226,0.021110583,-0.023296485,0.041318294,0.008927745,0.0053281356,0.034926906,-0.0110898875,0.02996111,0.022001576,0.041983567,-0.042482525,-0.012283817,-0.024520114,0.014849876,-0.026088262,0.015408231,0.017546613,0.019946354,0.008814886,0.043718033,-0.0056785922,-0.020088911,0.007537797,0.034356672,-0.00024056798,0.0052806158,-0.010080095,-0.028012805,-0.018200008,-0.009456401,-0.0033857715,0.009307902,0.008012993,-0.0118739605,0.0021814466,0.046996888,-0.000013747736,-0.0017715902,0.0020626478,-0.02523291,-0.017558493,-0.0005494454,-0.022251053,0.048802633,0.0026031833,-0.007965473,0.035021946,0.010668151,0.005631073,0.045096103,0.018722722,0.04652169,0.00075957115,0.021680819,-0.015812147,-0.012069979,0.008963385,-0.02398552,0.02516163,-0.019708754,-0.019589957,0.024163717,0.032550927,-0.024425076,-0.0066586845,0.00719922,-0.01431528,0.04447835,-0.013578726,-0.025993222,-0.010905748,0.011470044,-0.01310353,-0.020005753,-0.03224205,0.0011575478,-0.048517514,-0.049325347,-0.018461365,-0.00074472127,0.014552878,-0.0076031364,-0.018211888,-0.0113393655,0.029248316,-0.004276764,0.071517,0.042506285,0.013246089,-0.05498018,0.009794978,0.04397939,-0.048469994,-0.019411758,-0.064103946,-0.016192304,0.010157315,-0.028179124,-0.019506797,0.02497155,-0.017154576,-0.00843473,0.011107707,0.020694787,0.008601048,0.049325347,-0.0090049645,-0.026373379,-0.054552503,0.0038579977,0.026943615,-0.01665562,-0.009664299,-0.013816324,0.0025497237,-0.042244926,-0.0035194205,0.031457976,0.0049776784,0.04759088,-0.014445959,-0.024757713,-0.0035342705,0.010103855,-0.0095752,-0.020932384,-0.0023611302,-0.03585354,-0.0021071974,0.004561882,0.004089656,0.014766716,0.004312404,-0.022227295,-0.0136975255,-0.032147013,-0.015443871,-0.014897395,0.039868947,-0.02033839,0.018033689,-0.0050578676,-0.034903146,-0.0009838042,0.010472132,0.01792677,-0.012711493,0.018615805,-0.046996888,-0.012319457,0.016976377,0.008238711,0.014445959,-0.0017790151,0.006931922,-0.028963197,-0.004229245,0.048113596,-0.017332776,0.030388786,0.034380432,-0.0118799005,0.02879688,-0.028345443,-0.04984806,0.000052670654,0.006082509,0.025969462,0.013721285,0.0054142647,0.06709768,0.013685646,0.02870184,-0.024068678,-0.021716459,-0.024270637,-0.028179124,0.021146223,-0.020979904,0.005512274,0.0061834883,0.011452224,0.014469719,-0.01431528,0.021324422,0.022951968,-0.001424103,0.010489952,0.031956933,0.005146967,0.04894519,-0.003964917,-0.021657059,0.0084881885,-0.045523778,-0.01076319,-0.0026061533,0.007894194,-0.015669588,0.02620706,-0.041532133,-0.00023165806,-0.020112671,0.022037216,0.02036215,0.011487864,-0.007923894,-0.02379544,0.0010342938,0.014244,-0.007870434,0.024199357,0.020789826,-0.018176248,-0.013721285,0.026801055,-0.022833169,-0.021787738,-0.02853552,0.024294397,0.01653682,0.015812147,0.0033887415,-0.011713582,0.00029866814,-0.010347393,-0.0048083896,0.0076862955,0.039868947,0.013543086,0.04388435,0.058449112,0.019720634,-0.0082149515,0.019447397,0.03476059,-0.0113571845,0.00077813346,0.024151837,0.032503407,0.023260845,-0.0065280055,-0.0076684756,-0.02030275,-0.005405355,0.010014757,0.021977816,-0.01652494,0.022571811,-0.012485775,0.02877312,-0.0075021572,0.012675853,0.015871547,0.00477275,-0.015455751,-0.031434216,-0.036518816,0.015099353,-0.013210449,0.0018205948,-0.01661998,-0.00061478483,-0.010994848,0.0072289193,0.0061478484,-0.014695437,0.0021027424,-0.022738129,0.0065101855,-0.010008817,-0.030745182,0.05412483,-0.025636826,0.03350132,0.010941388,0.0047311704,0.000012599191,0.007395238,-0.024318157,-0.01913852,0.027395051,0.012426376,-0.0018562345,0.010674091,-0.021015543,-0.042126127,0.00047668102,-0.0030620443,0.004508422,0.02162142,-0.019625595,-0.015051834,-0.003914427,-0.027157452,-0.0027977165,-0.07265747,-0.02035027,0.029248316,-0.0039767968,-0.00831593,0.019863194,-0.0022185715,-0.029509673,0.052319083,0.0032699427,-0.036495056,0.0065161255,0.004567822,-0.005506334,-0.09218803,-0.015408231,-0.008874286,0.008630748,0.040985655,-0.015990347,0.058449112,0.037896883,0.036447536,-0.017309016,-0.030887742,-0.05854415,0.037920643,-0.016061626,0.048588794,-0.014861756,-0.012319457,0.028036565,0.02858304,-0.003819388,-0.037730563,-0.011749222,0.009111884,0.012877813,-0.053174436,0.0065101855,-0.028416721,-0.010258294,0.055360336,-0.0029699751,0.010674091,0.024009278,-0.008238711,0.015111233,-0.0066408645,0.009248503,0.020837346,0.013257969,0.013246089,0.010489952,0.019292958,-0.026896095,0.015111233,-0.029129516,-0.009385121,0.0033798318,0.016322983,0.018687084,-0.004030256,0.04274388,-0.0071041803,0.00020140143,0.0017047657,-0.030151188,0.009212863,-0.020694787,0.02993735,-0.0031452037,-0.025993222,-0.06381883,0.029224556,-0.013554966,-0.023296485,-0.014529118,0.030982781,-0.0019631535,0.00022831684,0.006771543,-0.004149055,0.009088124,-0.016192304,0.020017633,-0.018960321,0.031362936,0.032669727,0.0061537884,-0.008909926,0.016322983,0.015016194,0.017309016,0.0016483362,0.017083297,0.0012978791,-0.0129253315,0.001007564,0.0037481086,-0.015930947,0.023403404,-0.004662861,0.0073536583,0.027917767,0.011559144,0.009402941,-0.030436305,0.016477423,0.041223254,-0.024258757,-0.00032484104,0.024270637,0.014980555,0.004048076,0.005259826,-0.020861106,-0.013851964,-0.032075733,-0.015170633,0.018081209,0.019922594,0.016501183,0.05374467,-0.025446746,0.0025363588,-0.016501183,0.0008835676,-0.004092626,0.0019987933,0.022809409,0.020647267,-0.010091975,0.004333194,-0.036447536,0.000023945424,-0.000345074,-0.011458164,0.019209798,0.009195043,-0.015194393,-0.02858304,0.0027041624,0.016394263,0.009284142,-0.0072111,-0.00054833165,0.02877312,-0.0035105105,-0.019399878,-0.005010348,0.008666388,-0.05730864,0.00844067,0.010240474,0.026468419,-0.008963385,-0.01659622,0.011672002,0.04428827,-0.019174159,0.027252492,-0.01073349,-0.003929277,0.00719328,0.023545964,-0.010270174,-0.018556405,-0.0018458395,0.045761377,0.004564852,0.009456401,0.032051973,0.02140758,-0.017071417,0.055835534,-0.01686946,-0.032432128,-0.038585916,-0.021965936,-0.0064923656,0.019542437,-0.0035491204,-0.01681006,-0.02141946,0.032503407,-0.017689172,0.006088449,0.0015726018,-0.009028724,0.022239175,-0.0037243487,0.032360848,0.0015963616,-0.038467117,-0.008042692,0.006955682,0.0075496766,0.027941527,-0.0033026123,-0.0026744625,-0.058068953,-0.02751385,0.0049628285,0.032432128,0.012141258,0.005141027,-0.012462015,0.00031481736,0.002168082,0.015871547,-0.024805233,0.0047371103,-0.016227944,-0.0048677893,0.0013647035,-0.0030561043,0.03304988,-0.027632648,-0.04664049,0.0499431,-0.009367301,0.006914102,-0.015728988,0.005461784,-0.011202746,0.010192955,-0.017784212,0.02996111,0.013353008,-0.05849663,-0.025304189,0.020908626,0.0025512087,0.02518539,-0.014137082,-0.0013958883,0.0023537052,0.0076150163,-0.025803143,-0.030269986,0.013495567,-0.026896095,0.0025512087,-0.019922594,-0.013982643,-0.037801843,-0.025921943,0.014160842,-0.020552227,0.041603412,0.006819063,0.0050845975,0.016382383,-0.028060324,0.018853402,-0.021763979,-0.03461803,0.045880176,-0.03811072,0.023248965,0.02877312,0.038704716,-0.0034214114,0.0004362151,-0.018995961,-0.005473664,0.0048202695,0.026872335,-0.013721285,0.028345443,-0.031648055,0.022940088,-0.00952768,0.02632586,0.020623507,0.018152488,0.016156664,-0.029628472,-0.005381595,0.017463453,0.013448047,0.022156015,-0.0066468045,0.008232771,-0.017736692,0.009670239,0.007537797,0.012366977,-0.013566846,-0.0030219497,0.03742169,-0.005732052,-0.020706667,-0.043813072,0.0003088774,-0.017558493,0.025470506,0.019578077,-0.021657059,0.038490877,-0.012378857,0.0010201865,-0.0015919066,0.0002526335,0.031648055,0.010270174,-0.013911364,0.025636826,-0.011844261,-0.013269849,-0.041650932,0.045618817,0.0049747084,0.004152025,-0.006082509,-0.03314492,0.024270637,-0.029343354,0.017261496,0.025375467,-0.0050073783,-0.011672002,0.0021933266,0.02140758,-0.030673902,0.042244926,0.003222423,0.010596871,0.023153925,-0.023427164,-0.0024531994,-0.03580602,-0.031956933,-0.0011649728,0.03326372,-0.003706529,0.007424938,-0.014077682,0.0113631245,0.012521415,-0.016097264,-0.0014352405,-0.027632648,0.012901572,-0.019269198,-0.005651863,0.0005810014,0.009598959,0.008571348,0.0036263396,0.02377168,-0.0017641652,-0.0038639377,-0.018829642,0.011654182,0.036352497,0.0050370777,-0.006581465,-0.022310453,0.010531532,-0.0087495465,0.005654833,0.00062555104,0.0407243,0.02019583,0.0013840084,0.011410644,0.0076862955,0.022322332,0.023058888,-0.0052241865,-0.0025675434,0.023248965,-0.01675066,0.023427164,-0.0076328362,0.017297136,-0.015717108,0.024330037,-0.000891735,0.013911364,0.022607451,0.010923568,0.0012911967,-0.01073943,-0.024353797,0.0016527912,0.019281078,-0.024056798,0.013269849,-0.0067240237,0.039750148,-0.017332776,-0.034404192,0.038823515,0.014849876,-0.032360848,-0.02383108,-0.008862406,0.048161115,-0.015776508,0.041151974,-0.02269061,0.039702628,-0.021122463,0.020956144,-0.020599747,-0.01797429,-0.0041223257,-0.016239824,-0.04176973,0.018948441,-0.002842266,-0.04443083,0.021633299,0.015978467,-0.00356991,-0.02494779,0.0056726523,0.0025883333,0.0050014383,-0.010442433,0.0025036891,-0.029675992,0.03946503,-0.024282517,0.04321908,0.05749872,0.04041542,0.00037978558,0.019328598,0.058449112,-0.008547588,-0.023569722,-0.0059845,0.002171052,-0.021134343,0.04412195,0.0036411895,0.02984231,-0.005524154,0.022310453,-0.012224417,0.02140758,-0.0046153413,0.019815674,0.023058888,-0.03359636,0.013863844,0.0215145,-0.010644391,-0.035592183,-0.026658496,0.019483037,0.0020864075,-0.011737342,0.008113972,0.02509035,0.010127615,0.015206273,-0.03704153,-0.02625458,-0.0077991546,-0.0113334255,0.00238192,0.021657059,0.01786737,0.0066289846,0.0027962315,0.051748846,-0.005758782,0.035307065,0.02043343,-0.0047133504,-0.01784361,0.018164368,0.02744257,-0.030863982,-0.031671815,0.027157452,0.012450135,-0.0075734365,0.003474871,-0.028392963,-0.00045254995,-0.017047657,0.0009073274,0.0049717384,-0.019803794,-0.012141258,-0.015146873,0.042648844,0.014921155,0.0010602811,0.032954846,0.0014708802,0.006213188,-0.0012845142,0.0030917441,-0.0004566337,-0.041460853,-0.031743094,0.0029521552,-0.0028199914,-0.02506659,-0.0003207573,-0.005274676,-0.015847787,-0.015586429,-0.013531207,0.015241913,0.00596074,0.031054059,-0.012319457,-0.052224044,-0.015693348,-0.04407443,0.024092438,-0.038063202,0.02974727,0.023641001,0.019233558,-0.021122463,0.00179238,-0.00038089932,-0.018104969,-0.0009875167,0.0139588835,0.028107844,-0.0105731115,-0.015562669,-0.0038728477,-0.010371153,-0.02984231,0.02033839,-0.012735253,0.02017207,0.013448047,-0.0026120932,-0.005274676,0.021954056,-0.021312542,0.0049865884,-0.0476384,0.0003705044,0.01072755,0.010234535,-0.044763464,0.05364963,-0.011487864,-0.00715764,-0.009622719,0.017665412,0.024733953,-0.0011612603,-0.019530557,0.027062414,-0.018057449,0.03233709,-0.008630748,-0.007056661,-0.0075556166,-0.0022497561,-0.038538396,0.03459427,-0.048660073,-0.038467117,0.0053043757,-0.022013456,0.0013372313,0.023308365,0.033335,-0.034047794,-0.038918555,0.018497005,0.022227295,0.008048632,0.001317184,0.0046064314,-0.008203072,-0.00029774,-0.012402616,0.028250404,0.013994522,-0.015574549,-0.0017077357,-0.0332162,0.0142321205,0.014897395,-0.015788388,0.001431528,-0.016952619,-0.00031685922,0.002172537,-0.005726112,-0.013495567,-0.011820501,0.028202884,-0.0050370777,-0.029462153,0.00826841,-0.034380432,-0.004425263,-0.03461803,0.032503407,-0.006997261,-0.021288782,-0.008939625,0.0049360986,0.052841797,-0.012865933,-0.0403679,0.030341266,-0.015966587,0.022262933,-0.009682119,0.019043481,-0.024139958,-0.00839315,-0.013780684,-0.031481735,0.0003491577,0.03378644,0.014552878,0.0048618494,0.025779383,-0.027608888,0.05355459,-0.028084084,-0.019839434,-0.013709405,0.04300524,-0.022488652,-0.00835751,0.009385121,0.010977028,0.013471807,0.0022438162,0.0129134515,0.018889042,-0.032788526,0.018116849,-0.006706204,-0.008868346,0.0005115782,0.0056756223,-0.00021922129,-0.01432716,0.046070255,-0.0012756044,-0.007246739,0.04797104,0.015657708,0.0041223257,0.01079289,-0.0123907365,-0.05136869,-0.017095177,0.020528467,-0.018176248,-0.05122613,-0.012331337,-0.025399227,-0.030697662,0.014659797,0.0664324,0.0050489577,-0.0017404055,0.024805233,-0.012794653,-0.028179124,-0.041532133,-0.011238386,0.017356535,0.017404053,-0.038182,-0.04070054,0.041532133,-0.02156202,0.005256856,-0.006955682,-0.03224205,-0.014790476,0.02979479,-0.015919067,-0.022084735,0.034380432,0.05008566,0.013257969,0.01796241,0.016453663,0.035354584,0.011624482,0.011755162,-0.029984869,-0.015622069,-0.017059537,0.00060216244,-0.0025200238,-0.015099353,-0.0022482711,0.0049093687,0.010543412,-0.017998049,0.0062310076,-0.02991359,0.019993873,0.002266091,0.01798617,-0.012165018,0.048517514,0.014137082,-0.0018562345,-0.026420899,0.059019346,-0.0063022873,-0.017617892,0.061442845,-0.01667938,0.012271937,-0.04321908,0.010602811,0.0075734365,-0.012414496,-0.021253143,0.0004131978,0.0028318714,0.058876786,0.02490027,0.02140758,-0.023676641,0.022025336,-0.010994848,-0.0018354446,0.028202884,0.012984731,-0.02509035,0.0006671307,-0.00019174902,-0.017760452,-0.03473683,0.022951968,0.0061597284,0.0476384,0.0077872747,0.009195043,-0.013780684,-0.046212815,0.01438656,0.0020062183,-0.0134361675,0.00843473]},{"id":"interface-SendBodyResult","type":"interface","source":"main","text":"Interface: SendBodyResult\nDescription: API-ready body from MessageSendOptions (serializes EmbedBuilder, includes attachments when files present).\nProperties: attachments: { id: number; filename: string; title?: string | null; description?: string | null; flags?: number; }[], content: string, embeds: APIEmbed[]","meta":{"url":"/docs/typedefs/SendBodyResult"},"embedding":[0.041245468,0.025444327,-0.00015384864,0.020654807,-0.020056117,-0.03194439,0.004909793,-0.009926495,0.016774014,-0.028844032,-0.0054844287,-0.011310966,0.02895094,-0.0452011,0.013866089,0.0022370697,0.0320513,0.04246423,0.027796324,0.01590805,-0.013342236,-0.019938517,0.026043018,-0.0104717305,-0.02154215,-0.025551237,0.0053855376,0.0036803402,-0.0064038457,-0.022301205,0.032094065,-0.03600693,0.04900706,0.005954828,-0.025380183,0.05452356,0.015116924,0.037974056,-0.032949336,0.0024348511,0.0065161,0.007852461,-0.043127067,0.022536404,-0.038658272,0.028266724,0.0339329,-0.013224636,0.015459033,0.035921402,-0.018431101,0.0193719,0.05332618,0.058072936,0.009883732,0.008467188,-0.030105557,0.019115318,-0.04233594,0.038551364,-0.020954153,-0.028352251,-0.016720558,0.0113751115,-0.017265793,0.018249355,-0.05879992,0.07004674,0.03350526,0.03382599,0.068336196,0.0063450458,-0.00819457,0.064915106,0.021574223,-0.033291444,0.03728984,-0.009354533,-0.004909793,-0.08522781,-0.030062795,0.022750223,-0.0433195,-0.012347982,-0.030105557,0.008483225,-0.012540419,-0.012615255,-0.041010268,0.013695035,-0.06042493,-0.027005197,-0.03215821,-0.0129146,-0.004038485,-0.029207522,-0.055549886,-0.00047073342,-0.015245215,0.043704376,0.06859278,-0.010204459,-0.056020286,-0.0070452993,0.03848722,-0.049220875,0.022771604,-0.017180266,-0.030105557,-0.025658146,-0.0016463976,0.0059601734,0.005182411,0.013352927,-0.0044687935,-0.011984493,-0.0075156987,0.011802747,0.0021194697,-0.033441115,0.00788988,-0.008878787,0.028437778,-0.013609508,-0.00035781087,0.0069918446,-0.020141644,-0.019927826,-0.026363745,0.017180266,0.0581157,0.013021509,0.023455821,0.023028186,-0.0027956688,0.005000666,-0.0110543845,0.05033273,0.029079232,-0.047510333,0.033526644,-0.0013530663,0.009001733,-0.044687938,-0.01626085,0.024867019,-0.00585861,0.03179472,0.008189225,-0.012946673,-0.0111719845,0.0132460175,-0.055464357,0.045158338,-0.024888402,-0.03696911,0.020398226,-0.013224636,0.0013196572,-0.037589185,-0.0032981408,-0.045243863,-0.031645045,-0.027047962,0.0031110502,0.029827595,0.072441496,-0.029955884,-0.015394887,0.007146863,0.014507543,-0.019532263,-0.03515166,0.01745823,-0.02809567,-0.012230382,0.03273552,-0.06311904,-0.015255906,0.004166776,0.029677922,0.017875174,-0.019061863,-0.023605494,-0.05084589,0.019403972,0.0051343017,0.069148704,0.031302936,-0.011257512,-0.036691148,0.0023987694,-0.024567675,-0.007686753,-0.010348786,-0.02044099,-0.035322715,0.014817579,0.0055913376,-0.012347982,0.051059708,0.008686352,0.027069343,0.012743546,-0.0452011,0.009488168,-0.026278218,0.006884936,-0.053283416,0.0038246673,0.05478014,-0.011065075,0.004714684,-0.0027422144,0.010316713,0.019810226,-0.032094065,0.013588127,-0.013577435,0.03288519,-0.045414917,0.02056928,0.083731085,-0.025850581,-0.018751828,0.042164885,-0.031174647,0.0101777315,-0.04828008,-0.023413058,0.003546704,0.044559646,0.0018989701,-0.023006804,-0.01899772,0.0017693429,0.0009795532,0.040219143,0.028886795,-0.011781366,-0.035942785,-0.020815171,-0.00085059425,0.020366153,-0.003586795,0.011898965,0.01638914,-0.032094065,-0.0017853793,0.01363089,0.03731122,0.00013196572,0.024353856,-0.033633552,0.0027662688,-0.027839089,-0.028566068,-0.005751701,0.013491908,-0.02008819,0.012668709,0.0028491232,-0.02691967,-0.0074194805,0.00000641036,0.008237334,0.0385086,0.008862752,0.03132432,0.0028811959,-0.017917939,0.01684885,0.01900841,0.035750348,-0.040219143,0.022985423,-0.018110374,-0.006719227,-0.029357195,0.0040545217,-0.0069864993,-0.023177858,-0.05824399,0.035921402,-0.026983816,-0.005628756,0.015940122,0.007895226,0.03230788,0.030747011,0.032863807,-0.005537883,0.042720813,-0.04579979,-0.023306148,-0.021959096,0.035707586,-0.02439662,0.09981018,0.025936108,0.02499531,-0.049178112,0.046441242,-0.018270738,-0.023541348,-0.0002604235,-0.006917008,0.04986233,0.027903233,-0.015223833,0.012380055,0.014026453,-0.06735263,-0.0057356646,-0.021253496,0.04351194,0.0155231785,0.009049842,-0.05465185,0.026021635,0.010557258,0.039150055,0.0070399535,-0.02296404,-0.008889479,-0.016079105,-0.006168646,-0.0046639023,-0.027325924,0.019093936,-0.012700782,-0.020344771,-0.008424425,-0.011503402,0.050118912,-0.030661484,-0.0101189315,-0.02055859,0.011567547,0.06589867,0.03681944,-0.0016022978,0.015063469,-0.0036108494,-0.028288106,-0.025850581,-0.033954278,0.06559932,-0.016431903,-0.025080837,0.013053582,-0.0034959223,-0.005345447,0.0020192426,0.03061872,0.0123693645,0.012989436,-0.06910594,-0.017907247,-0.019093936,-0.024182802,0.0028678323,0.0048697023,0.039150055,0.007815043,0.006430573,-0.015865287,0.018687682,0.0045489753,-0.024482148,0.053668287,0.05978348,-0.0258292,0.041780014,0.0096538775,-0.0025631418,-0.0049552293,-0.022985423,-0.030169703,0.0025096873,0.042635284,0.060082823,-0.040539872,-0.019051174,0.019681936,0.010958167,-0.010904712,0.03108912,0.010936785,-0.005463047,0.004081249,0.011524783,-0.053711053,-0.0011646393,0.042720813,0.071500696,0.032350644,-0.012176928,-0.018431101,-0.044089247,-0.013577435,-0.016923685,0.0069276993,0.0142081985,0.020857934,-0.060296644,0.04173725,-0.035814494,0.04152343,-0.04056125,0.031666428,-0.013534672,0.019040482,0.014657216,0.024909783,-0.006120537,-0.0101189315,-0.0260644,0.022814367,0.033569407,-0.046355717,-0.018794592,-0.046184663,0.021189352,0.01899772,-0.034617115,0.035344094,-0.028266724,-0.014838961,-0.049092587,-0.06872106,0.03337697,0.003498595,0.010856603,-0.008515297,0.0030121594,0.010086859,-0.016827468,-0.02403313,0.02869436,0.0014432707,0.014988634,0.007472935,0.03406119,-0.06577038,-0.013898162,-0.023541348,0.001107844,0.003934249,-0.023391675,-0.04043296,0.008387007,-0.032927953,0.03350526,-0.031260174,0.008873442,-0.024482148,-0.0048857387,0.036306277,-0.008205261,-0.016827468,0.03731122,0.026876908,-0.012230382,-0.014272343,-0.03382599,-0.017950011,0.001019644,-0.020387534,0.023028186,-0.036220748,0.013181873,0.026021635,0.021114515,-0.021809423,-0.03312039,0.007462244,-0.021146588,-0.0057570464,0.006628354,-0.011428566,-0.025743673,-0.013320854,-0.030811157,-0.03752504,0.079967886,0.01912601,-0.01782172,0.0332273,0.0010684212,0.028737122,-0.010332749,-0.03895762,-0.007895226,0.008611515,-0.041480668,-0.012529728,-0.009696641,0.043191213,-0.003402377,0.03202992,-0.026705854,-0.01171722,-0.02068688,0.057260428,-0.0010383531,-0.040946122,-0.03145261,-0.029250287,-0.012144855,-0.013064273,0.005981555,0.02689829,0.0063985,-0.03254308,0.007724171,-0.024054512,0.039898418,-0.024311094,-0.021734588,-0.016581576,0.017319249,0.020793788,-0.012861146,0.008023516,0.0032206317,-0.0192543,-0.01207002,0.010920748,0.0014058526,0.0035012679,-0.0026513417,0.008707733,0.017094739,0.008419079,0.017725503,-0.016816776,-0.004973938,0.010557258,-0.03215821,-0.022792986,0.023584113,0.017062668,-0.0055859922,-0.015223833,0.033163153,-0.0069864993,0.023776548,0.01058933,0.013310163,-0.02044099,-0.005257247,0.07124412,0.0018789247,-0.0066764634,0.044089247,-0.00950955,-0.003527995,-0.006778027,0.00037117448,0.005575301,-0.015640778,0.032607228,-0.0019444063,-0.0017172248,0.03619937,-0.0027088053,0.012091401,0.04088198,0.004949884,-0.013652272,0.03887209,-0.008750496,0.0063450458,-0.022899896,0.021820115,0.009926495,-0.009921149,-0.034018423,-0.015138306,-0.0046131206,-0.014913797,-0.020056117,-0.002985432,0.013256708,0.023626875,0.019179463,0.010685548,0.024567675,0.03814511,0.03887209,0.023327531,0.055934757,-0.01363089,0.019414663,-0.01985299,0.04554321,-0.01028464,-0.015790451,0.010664167,0.010867294,-0.004458103,0.008002134,0.006088464,0.023883456,0.019040482,0.013620199,-0.03279966,-0.026256835,0.0024722693,-0.009317114,0.042913247,-0.034574352,-0.019810226,-0.020462371,0.016218087,0.014218889,-0.002814378,0.00033592794,-0.008707733,0.020163026,0.03327006,0.0048403023,0.0334625,-0.031602282,0.019927826,0.006409191,-0.0053989016,-0.0010089531,0.023135094,0.019436045,0.031046357,-0.009873041,-0.011973801,-0.008664969,0.0029560323,-0.002715487,-0.005944137,-0.028908178,0.009119333,0.0023960967,0.018195901,0.049220875,-0.02403313,-0.0026914326,-0.0089215515,-0.043618847,0.0021248152,-0.0015461706,0.01494587,-0.04900706,-0.037011877,0.042186268,-0.013940926,0.009664568,-0.028352251,-0.031131884,0.02715487,-0.031153265,-0.02822396,-0.009707332,0.015020706,-0.004909793,0.006494718,-0.02499531,0.03502337,-0.026214072,0.0037231038,-0.015736995,0.02045168,0.0026232782,-0.002204997,-0.0021956423,-0.04197245,0.083303444,-0.026492035,-0.011396493,0.0053294105,0.0022490968,0.005027393,-0.019425355,0.0032794317,-0.036691148,-0.039770126,0.0024722693,-0.019949209,0.005345447,0.040967505,0.03374046,-0.021189352,-0.0023733785,-0.0014860342,0.011973801,-0.02476011,0.03895762,0.05332618,0.018719755,0.029848976,-0.00090672146,-0.013107036,-0.03168781,0.021125207,0.0011753301,-0.0071308264,0.002360015,-0.03096083,-0.03728984,0.008157152,0.020302007,-0.012957363,-0.0075905346,-0.0060831187,-0.020237863,0.006243482,-0.01637845,0.0090979505,0.0021943059,0.029848976,-0.0014218889,-0.026513416,0.031431228,-0.021702515,-0.0336977,0.025957491,0.018484555,-0.021499388,0.012903909,0.01698783,-0.009600423,0.0009428032,0.04009085,0.010787112,0.023541348,0.018612847,-0.020954153,0.03382599,-0.0033703044,0.006040355,-0.009782168,-0.0059601734,-0.021306952,0.00920486,0.055336066,0.018195901,0.0013684344,-0.017629284,-0.008884133,-0.00010415269,-0.001522116,-0.0024522238,-0.026941054,0.003458504,-0.02390484,0.030939447,0.028010143,0.012797,-0.021681134,-0.018965647,-0.059227552,-0.0033997044,0.004610448,0.03327006,-0.0057623917,-0.030875301,0.007211008,-0.03923558,0.0019403973,-0.0022878514,0.03707602,0.02165975,-0.0077883163,0.01411198,-0.012754236,0.0010049441,0.0430843,-0.04733928,-0.029442722,-0.037268456,-0.043127067,0.024460765,0.043362267,-0.049734037,-0.0130322,0.0010443667,-0.01947881,-0.00027846437,-0.047553096,-0.0320513,0.01482827,-0.011674456,0.0018749156,0.011225439,0.010690894,-0.054822903,0.041245468,0.025765054,-0.029677922,-0.037033256,0.01627154,0.042506993,-0.033997044,-0.025123602,-0.025422946,-0.036691148,0.0012882528,-0.0076707164,0.0049819564,0.020847244,-0.0076814075,0.036156602,-0.034146715,0.00015760717,-0.0021208061,0.025743673,0.011343039,0.008290788,-0.0110543845,0.0048563387,0.030554576,0.03194439,0.049734037,-0.019307755,-0.002744887,0.003923558,0.050632074,0.054737378,-0.021424552,0.004685284,0.02369102,-0.032457553,0.018024847,0.02428971,-0.0131498,0.012861146,0.009269005,-0.024332475,-0.011268202,0.029870357,-0.029036468,-0.0043645576,0.012230382,-0.01057864,0.051957745,0.027710797,0.027432835,0.0029961232,0.034403298,0.021371096,-0.029848976,0.0067940634,0.0117279105,0.0086596245,0.01184551,-0.050118912,-0.01685954,-0.016677795,-0.043682992,-0.0007857807,-0.004284376,0.0022210332,-0.01494587,0.019949209,0.0048991023,-0.005003338,-0.02392622,-0.024781492,-0.031666428,0.0014820251,0.015448342,0.024182802,0.019329136,-0.0147641245,-0.007211008,-0.012454892,0.011321656,0.037225693,-0.006409191,0.011546166,-0.019286374,0.044687938,0.026085781,-0.028373633,0.0024923147,0.004669248,-0.020473061,-0.0049285023,0.0382734,0.027774943,-0.018580774,0.023455821,-0.0052251746,-0.020740334,0.015801141,0.00908726,-0.025209129,0.032628607,-0.037118785,0.041651722,0.06346115,0.002504342,-0.020868625,-0.04464517,-0.00939195,-0.030148322,0.07329677,0.012519037,0.061536785,-0.025144983,-0.007724171,0.007462244,0.015020706,0.007996789,-0.06671118,0.02798876,-0.0083388975,0.0015648797,0.008114388,0.0036482676,0.013673654,-0.025316037,-0.021135898,0.0005515833,0.044944517,-0.005778428,-0.062135477,-0.020130953,-0.027005197,-0.029250287,0.04639848,-0.007633298,0.0049953205,-0.026085781,0.007777625,0.018794592,-0.008381661,-0.062349293,0.008884133,0.0038246673,-0.0076012257,0.02176666,-0.0017092067,0.004575703,-0.0045650117,-0.021852188,0.0057303193,-0.006900972,-0.06577038,0.010616058,-0.008317515,-0.02127488,-0.0054496834,-0.010616058,0.009370568,-0.037824385,-0.00043465165,-0.029977268,0.036071077,-0.020986225,0.07658956,0.026043018,-0.0065962817,-0.03459573,-0.037867147,-0.048622187,0.0030816502,0.02392622,0.055036724,-0.013310163,0.001208071,0.037974056,-0.022899896,-0.023028186,0.00472003,0.021082442,-0.01650674,0.036284894,-0.019714009,0.027283162,-0.0037337947,-0.01865561,-0.0027395417,0.024460765,-0.0033916861,0.0016784704,0.025765054,0.008055588,0.006975808,0.025038075,0.028245343,-0.017992774,-0.008317515,-0.030426284,-0.008916206,-0.022194296,0.036520094,-0.011129221,-0.035600677,0.018260047,0.016453287,-0.003450486,-0.04952022,0.015833214,-0.021488696,0.010396894,0.004431376,-0.009044496,0.004343176,0.015362815,-0.0047013205,-0.006804754,0.006831481,0.003402377,-0.0045489753,-0.037118785,0.017276485,-0.01183482,0.026256835,0.016774014,0.022814367,0.03350526,0.054138687,-0.047681388,0.0036509403,0.023370294,0.01530936,-0.013534672,0.028523305,0.012433509,-0.0001525958,-0.008435115,-0.04960575,0.06547104,-0.018088993,-0.021028988,-0.019778155,-0.0022223697,-0.004001067,0.014518234,0.014197507,0.0028571414,-0.024567675,-0.01022584,-0.027646651,0.04113856,0.013502599,-0.030062795,-0.01542696,-0.0073980987,-0.0071575535,-0.0025631418,0.0077081346,0.04725375,-0.02188426,-0.015512487,-0.0006755309,0.013107036,0.005719628,0.013705726,0.0373326,-0.0145609975,-0.020366153,0.039192818,0.031131884,0.016079105,-0.0015929432,-0.0020219153,0.020473061,0.0043592122,0.021478007,0.010979548,0.022108769,-0.0041427216,-0.004463448,0.006371773,0.01914739,0.0052412106,-0.014379253,-0.019917136,-0.044944517,-0.0036990494,-0.020056117,-0.018741136,-0.033890136,-0.02009888,-0.013331545,0.035429623,0.016592268,-0.002516369,0.04639848,0.0019109973,-0.024695965,0.004118667,-0.012893219,0.0038781217,-0.029143376,0.05037549,0.009846313,-0.04137376,0.013224636,-0.030319376,0.00825337,-0.022151532,0.00406254,0.021146588,-0.0062969364,0.00765468,0.014154743,-0.04507281,-0.00391554,0.021018298,-0.03406119,0.0024174785,-0.006467991,-0.008846715,-0.03767471,-0.026812762,0.0056020287,0.0015087525,-0.022044623,-0.025380183,0.0067406087,-0.009488168,0.007638644,0.050589312,-0.025957491,-0.024311094,0.031388465,0.0320513,-0.016560195,0.011118529,-0.006917008,-0.02307095,-0.015095542,-0.05512225,-0.003993049,-0.030148322,-0.0066550816,-0.017201649,0.027924616,-0.025936108,0.007665371,0.03540824,-0.016677795,0.014518234,0.02020579,-0.017511684,-0.030597338,0.03767471,0.010739003,-0.0029747412,-0.00045670161,0.0037631947,-0.00038687672,0.03384737,0.01316049,-0.02068688,0.018495247,0.00008485897,-0.023477204,0.027945997,-0.016838158,0.00204597,-0.0008699715,0.0063450458,0.005890683,0.016838158,-0.031281557,-0.0138874715,0.013577435,0.020312699,0.026620327,-0.02153146,0.0004714016,0.015074161,-0.002357342,-0.0064466093,0.023776548,-0.038166493,0.025508473,-0.009835622,0.050888654,-0.013716417,-0.020515826,-0.05918479,-0.019981282,0.01615394,-0.015533869,0.01051984,-0.026107164,-0.011578239,-0.01136442,-0.0041587576,-0.02942134,0.0113751115,-0.014999324,0.01196311,-0.014144053,-0.023819312,0.005516501,-0.027047962,-0.0005348788,0.057944644,-0.015972195,0.003701722,0.033654936,-0.018399028,0.008809296,0.012636636,0.012390746,-0.009589732,0.01231591,0.04066816,0.054993957,0.025080837,0.001078444,0.017094739,0.04652677,-0.0044794846,-0.019521572,0.0070185717,0.00061572867,-0.014379253,-0.0038540673,0.016688485,-0.04464517,-0.009295733,0.009482823,-0.0029079232,-0.0014659888,0.001145262,0.043682992,-0.016292922,0.041416522,-0.022172915,-0.016228776,-0.018334882,-0.0017974066,0.011278893,-0.0060563916,-0.001488707,0.01770412,0.01636776,0.026021635,0.02677,-0.033334207,-0.003335559,-0.020184407,-0.033633552,-0.022643313,0.0041534123,-0.004912466,-0.038358927,0.020911388,-0.014678597,0.011514093,0.0114071835,-0.013117727,-0.015769068,-0.03955631,0.012615255,-0.032906573,-0.022386732,-0.018046228,0.02895094,-0.014079907,-0.026235454,0.014496853,-0.015790451,-0.021349715,0.005457701,0.010311367,0.0039208853,-0.029699303,-0.016164633,0.016945068,0.011877583,0.036862202,0.012155547,-0.011588929,0.03743951,-0.016357068,0.019607099,-0.008723769,-0.01530936,-0.026748616,-0.006922354,-0.023263386,0.011353729,-0.0013136436,-0.0046451935,0.02715487,-0.015394887,-0.02128557,-0.0031110502,-0.010749694,-0.030297993,0.006772681,-0.019842299,-0.011182675,0.01615394,-0.041437905,0.04832284,0.012540419,0.012946673,0.0041988487,-0.012647328,-0.03572897,0.014496853,0.0101189315,-0.02978483,-0.006157955,0.024909783,-0.051872216,0.008167843,0.0050514475,0.033633552,0.004669248,-0.037738856,-0.03215821,0.004059867,0.0119310375,-0.018388338,-0.009162096,0.009354533,-0.012134165,-0.049819566,-0.017843103,-0.0032687408,0.0005479083,0.01316049,0.019959899,0.0029319776,0.0010056122,-0.018270738,-0.012978746,-0.04282772,-0.01589736,-0.0029239594,0.026941054,-0.040219143,-0.006922354,0.027582506,0.0131498,-0.008504606,0.0020486426,0.031067738,0.0046077752,0.0114071835,0.009557659,0.019222228,-0.023413058,0.027005197,0.007579844,-0.029357195,0.0053000106,0.053668287,0.012390746,0.029100614,0.0036001585,0.002686087,-0.040539872,0.041780014,0.02307095,-0.0067619905,-0.003816649,0.04413201,0.015598014,-0.01530936,0.03681944,0.01094213,-0.015127615,-0.014486161,-0.019200847,0.0076012257,0.02414004,-0.012572492,-0.014218889,-0.013620199,-0.00385674,-0.012572492,0.02450353,0.02272884,-0.052770253,-0.013834016,-0.008937587,0.006911663,-0.017137503,-0.017030595,-0.0049579022,-0.01411198,0.00029800867,0.017597212,-0.009488168,0.0014352525,0.016945068,-0.03025523,-0.001415207,-0.008071625,0.015982887,-0.009835622,-0.040860597,-0.016784703,0.0054844287,0.018815974,-0.039428018,-0.014389943,-0.014432707,0.019842299,0.027219016,0.049648512,0.0020219153,0.0005225174,-0.01446478,-0.007895226,-0.017158885,0.02942134,0.026620327,-0.019510882,0.010364822,-0.008643588,-0.012497655,-0.010567949,-0.026214072,0.008109043,-0.049349166,-0.0031939046,-0.03829478,-0.0061419187,0.0132460175,0.023498585,0.028266724,0.01016704,0.018976336,-0.026021635,-0.024418002,0.0027956688,-0.00078511256,0.0016490704,-0.05311236,-0.010701585,-0.0071842805,0.027839089,0.031067738,-0.0525992,-0.00442603,-0.0027395417,-0.02965654,0.012775619,-0.009776822,-0.00022283832,-0.043426413,-0.006922354,0.031067738,-0.050589312,-0.00071027625,-0.0011071757,0.02366964,-0.018313501,-0.005324065,-0.012016565,0.0034291043,0.013320854,-0.0062755547,0.014432707,-0.0069330446,0.028373633,0.014047835,-0.0001363089,0.010931439,0.0002640985,-0.026513416,0.06085257,-0.013545362,0.009937186,0.006291591,0.038658272,0.044858992,-0.021980477,0.014486161,-0.03696911,-0.005324065,0.016047033,0.0034291043,-0.03707602,-0.0049258294,0.010514494,-0.009520241,0.0069276993,-0.02154215,0.017661357,-0.030404903,0.009937186,0.02895094,0.020280626,-0.010257913,0.0113751115,-0.06688223,0.011578239,0.040368814,0.040005326,-0.04088198,-0.02296404,0.013844708,-0.0071094446,-0.0131498,0.039599072,-0.00033976996,-0.007606571,0.012882527,0.011567547,0.02152077,-0.004621139,0.0028197232,0.015074161,0.03525857,0.049819566,0.022087388,-0.034168098,0.009194169,-0.01627154,-0.009456096,-0.002072697,-0.025615383,0.012102092,-0.011193366,0.019863682,0.0009989304,0.034339152,-0.0037097402,-0.03754642,-0.01889081,-0.008670315,-0.0077348617,-0.0072163534,0.007296535,-0.012775619]},{"id":"interface-Snowflake","type":"interface","source":"main","text":"Interface: Snowflake\nDescription: Snowflake ID type - 64-bit unsigned integer as string.\nFluxer uses Twitter Snowflakes with epoch 1420070400000 (first second of 2015).","meta":{"url":"/docs/typedefs/Snowflake"},"embedding":[-0.0035646423,-0.035093684,-0.040754862,-0.0012454244,0.05151392,-0.034727536,-0.026263932,-0.008928329,0.017053952,-0.014702169,0.012899605,0.017420098,-0.036614597,-0.006139986,0.008414316,0.0395156,-0.030221125,-0.013617814,-0.030868921,0.02026477,-0.02996764,-0.044303663,0.029995805,0.02541898,0.021856098,0.0153218005,-0.057456754,0.029179018,0.030277455,-0.042360272,0.04038872,-0.028953698,0.04162798,0.024672605,0.029010028,-0.044134673,0.0038586152,0.029770484,-0.02813691,-0.003668501,-0.038586155,-0.019800048,0.0019433902,0.026179437,-0.0016943053,0.045402102,-0.024179718,-0.02003945,-0.007280672,0.038755145,-0.0007586967,0.035178177,-0.04683852,0.024855679,-0.004745815,0.0070835166,-0.008083376,0.020856239,-0.04055771,0.014019166,0.0031034392,-0.008034088,0.01998312,0.029460669,0.034558546,0.055090886,-0.006171672,0.04523311,0.038755145,0.0519364,0.007386291,0.014350106,0.012477128,-0.06032959,0.0009848975,0.027531361,-0.052077223,-0.008977618,0.027644021,-0.024405038,0.0081045,0.05300667,-0.03768487,-0.06590628,-0.008456564,0.018321382,0.0071820943,-0.0312914,-0.03734689,0.021208301,-0.0120969,0.015687946,-0.055400703,-0.013695268,-0.02553164,-0.058301706,0.018912848,0.017617254,-0.0096817445,0.016899046,0.027982002,0.037206065,-0.001204057,-0.045768246,0.02041968,0.0053408025,-0.003013663,-0.0070342277,-0.043374214,0.015856937,-0.07542607,-0.04162798,-0.008231243,-0.017335603,-0.017842576,0.013681185,-0.0407267,0.024109304,0.026559666,0.023334764,-0.013160131,-0.047824297,-0.012512335,0.01265316,-0.029573329,-0.03836083,-0.0043092566,-0.027925672,-0.041149173,-0.011104081,0.035544325,-0.057907395,0.004150828,0.0209689,0.008611471,-0.026841316,-0.012315179,-0.029263513,-0.0047880625,-0.047908794,-0.03889597,0.010808348,0.05970996,-0.0037037074,-0.006787783,0.009484589,-0.014744417,0.048810076,-0.014012124,0.010245046,0.011801166,0.001969795,-0.018096061,0.0104562845,0.0033146772,-0.033093963,0.06010427,0.010611192,0.00826645,-0.024827514,0.013286874,0.009160691,-0.0037107486,0.018659363,-0.0061505483,0.022672886,-0.003585766,-0.025686549,-0.069060765,0.0015499593,-0.015476708,-0.028615717,-0.0075834463,-0.054358594,-0.028052414,0.037234228,0.024827514,-0.0066293543,-0.046472374,-0.034643043,0.031995524,-0.021912428,-0.0022620077,-0.057513084,0.02425013,-0.021799767,-0.011737795,0.003869177,0.06359674,0.018786104,-0.026094941,0.080552116,0.036586434,0.046331547,0.046247054,-0.004076895,0.038614318,-0.048049618,-0.007203218,0.02502467,-0.03917762,0.045852743,0.015251388,-0.0156175345,-0.015828772,-0.027432783,0.024165634,-0.002879879,-0.016772302,0.01309676,0.03802285,0.05317566,0.008393193,-0.029657824,-0.058921337,0.054245934,0.033262953,0.009688786,-0.0027813013,-0.0010130625,-0.0377412,0.035178177,-0.0037283518,-0.011118163,-0.011343484,-0.012632037,0.0087875035,-0.028235488,-0.036558267,0.019800048,-0.013329122,-0.0015253149,0.0010491491,-0.06624426,-0.05365447,0.018588949,-0.027573608,-0.017222943,0.0010799546,-0.0033815694,-0.061568853,-0.029432504,0.0059956405,0.03979725,-0.021180136,0.0032794708,-0.022715133,-0.023630498,-0.028334066,0.015349966,0.012920728,-0.0016194918,0.015687946,-0.0007116082,0.007087037,-0.08269266,0.0049746563,0.056076664,0.041092843,-0.030502776,0.013913547,-0.10606967,-0.048162278,0.021222385,-0.03230534,-0.055738684,0.002142306,0.03768487,-0.024503615,-0.0071574496,-0.023362929,0.0018800187,0.038586155,0.008590348,-0.02658783,-0.0022127186,0.007682024,0.023644581,-0.008336863,-0.016899046,0.0046824436,-0.019729635,-0.0007674983,0.0012639078,-0.043937515,0.0023676266,0.023968479,0.02691173,0.026207602,-0.03151672,-0.034417722,0.013244626,0.017293356,0.0064462814,-0.029545164,0.022348987,0.030897086,0.03323479,0.008604431,-0.005354885,0.009970437,-0.038276337,0.006432199,-0.028615717,-0.04179697,0.018842435,-0.020673165,0.027179297,0.023926232,-0.014089579,-0.02015211,-0.026348427,-0.055203546,-0.026714575,-0.011723712,-0.010005643,0.030728096,0.06652591,0.044754304,0.009794405,0.03041828,-0.071482964,0.03224901,-0.032051854,-0.017912988,-0.02041968,-0.0028675566,-0.006896923,0.018617114,-0.0075623225,-0.0004761658,-0.018039731,0.028122827,-0.026700491,-0.0015499593,-0.06038592,-0.011125205,0.0032935534,-0.031263232,0.022630638,0.019067755,-0.07576405,-0.028432643,-0.008808627,-0.0070447894,0.004967615,-0.023264352,-0.0011582887,0.047683474,-0.0054710656,-0.07289121,0.035150014,-0.008294615,0.0038550945,-0.005189415,-0.018194638,0.07542607,-0.057963725,-0.026883565,0.0042036376,-0.0049288883,0.0060977386,0.036868084,0.03979725,-0.009414176,-0.039600097,-0.010808348,0.01304043,-0.029545164,-0.059259318,-0.029657824,0.009794405,0.02353192,-0.028657963,0.012139147,0.0030717535,-0.047429986,0.0032266614,0.04295174,0.02991131,0.035206344,0.07418681,-0.03140406,-0.04058587,0.0059041036,0.0040276055,0.026263932,0.013998042,-0.061287202,0.0064216373,0.010146468,-0.017786246,0.0010095419,-0.021827932,-0.021011146,-0.0015191537,0.033319283,0.04050138,0.021151971,-0.036868084,-0.03224901,0.005650618,0.038755145,-0.018039731,0.0024785267,0.0027320122,0.00504859,0.03974092,0.00654838,-0.0052246214,-0.02030702,-0.040163398,0.0125405,-0.009618374,0.013871299,-0.04883824,0.011660341,-0.0042775706,-0.007569364,0.036727257,-0.013068595,0.007520075,-0.036839917,-0.035854142,0.0100690145,-0.023644581,-0.014124786,-0.03289681,0.05954097,-0.019504314,0.02236307,-0.005351364,0.04455715,-0.01065344,0.008963536,-0.011526557,0.024672605,0.032164514,-0.00087751815,0.025714714,-0.022278575,0.044106506,0.0601606,0.019659223,-0.07841157,-0.029038193,-0.025081,0.0135896485,0.0471765,-0.04095202,0.0017541561,0.010343624,0.018462207,-0.0014443402,-0.00621744,-0.020391515,0.028122827,-0.008752297,0.072271585,-0.01059711,0.0038586152,-0.032868642,-0.030981582,0.013146048,0.017884823,-0.028742459,-0.01087876,0.020898486,0.0134277,-0.0059850784,-0.03041828,-0.012441922,0.030108465,0.056724463,-0.014181116,-0.018053813,0.007682024,-0.01359669,0.10561903,0.049542367,-0.012955935,0.033375613,-0.017208861,-0.0074214973,-0.025278155,0.1311366,0.032755982,0.012160271,-0.03053094,-0.00031993765,-0.047204666,-0.0077172304,0.065737285,-0.018081978,0.005865377,-0.0014786664,-0.0024433204,-0.023630498,-0.019631058,-0.06303344,0.053063,-0.002075414,0.021433622,0.03230534,0.028869202,-0.0037001867,0.0077946847,-0.028446727,-0.062639125,-0.04052954,0.077566616,0.026404757,-0.039318446,-0.02125055,-0.013068595,0.021377292,-0.009019866,0.021996923,0.0059639546,-0.019433903,0.0014795467,0.007118723,-0.018152392,-0.017659502,0.03300947,0.016504735,-0.029714154,-0.070694335,-0.023362929,-0.01698354,0.04517678,-0.018800188,-0.0006077495,-0.013026347,-0.033600934,0.0057984847,-0.0006570384,-0.012970017,-0.014012124,0.013160131,0.018828353,0.021095641,0.0101887155,0.016772302,-0.012371509,0.021461787,-0.018236887,-0.00046516382,-0.03968459,0.009252227,-0.009674704,-0.013441782,-0.009780322,-0.005731593,0.03768487,0.017462347,0.002985498,0.021968758,0.00072613085,0.0124560045,-0.006544859,-0.009928189,0.017476428,0.022179997,-0.03267149,0.0038058057,0.012237725,0.02441912,0.0075411987,0.009104361,-0.04129,0.0013017546,-0.021673026,0.009928189,-0.018518537,0.015434461,-0.03208002,0.026728656,0.027038472,0.01947615,-0.0018096061,-0.022179997,0.0098296115,0.04861292,-0.014413477,0.02130688,-0.011167453,-0.008886081,-0.009456424,-0.0084283985,0.0156175345,0.030812591,-0.008794544,-0.0017691188,0.025461229,-0.023151692,0.0043831896,-0.014174074,0.015406296,0.018236887,-0.0052140597,-0.023827653,-0.0031368851,-0.033093963,0.04695118,0.030333785,0.0039043836,0.030390115,-0.0023940313,0.03024929,-0.047908794,0.0074496623,-0.00210886,0.0020630918,-0.0418533,0.03002397,-0.00616111,0.014969737,0.0007758598,0.0077172304,-0.03024929,-0.036980744,-0.02058867,0.00074901496,-0.0197578,0.035994966,-0.014230404,-0.007065913,-0.03058727,-0.0012718291,-0.005516834,-0.011068874,0.00044404002,-0.024052974,-0.011998322,0.041768808,0.013307998,0.036586434,-0.0040592914,-0.015490791,0.03568515,0.0021792727,0.03312213,0.019081838,0.04866925,0.0015886863,-0.031235069,0.018743858,-0.0000062539393,0.0113223605,0.017363768,0.009738075,0.009118443,-0.030981582,-0.008724132,-0.016025927,0.0008700368,-0.012505293,0.0047317324,0.0050908374,-0.01903959,0.006210399,-0.022743298,0.012568665,0.012357427,-0.0076890653,0.025897786,-0.0016987061,0.0143360235,0.0024450806,0.037206065,0.034924693,0.022982702,-0.0016001284,-0.062019493,-0.0020630918,-0.019771883,-0.021391375,-0.008886081,0.015716111,-0.02647517,0.024714854,-0.017335603,-0.018307298,0.019180415,-0.022151832,0.013941712,-0.02979865,0.003085836,0.001432018,0.0006592388,0.025433064,0.032333504,-0.010836513,0.00070764753,-0.040980183,-0.010984379,0.027503196,-0.008414316,-0.018293217,-0.01515281,0.011188576,-0.032108184,-0.027658103,-0.0032724296,-0.018997343,0.022729216,-0.0094353,0.039825417,0.011026626,0.020602752,-0.018786104,0.0015068315,-0.010245046,-0.018490372,0.061850503,0.010280252,-0.011484309,-0.0044465614,0.016124506,0.038388997,-0.024602193,0.007998881,0.010850595,0.047570813,-0.011758919,0.009759199,-0.0049042436,-0.0016071696,0.00022499054,-0.022884123,-0.008083376,0.008132665,0.022672886,-0.012913687,0.008597389,-0.034981024,0.03047461,-0.01520914,0.0042212405,0.0052844724,-0.00821012,-0.031319562,0.017912988,0.0027003265,0.005076755,-0.01504015,0.019222664,-0.011068874,-0.014490931,0.0115617635,0.012639077,0.03213635,0.009033948,-0.047852464,0.0019891583,0.0057984847,0.004428958,-0.010618233,0.016518816,-0.027601773,0.012737655,0.006139986,0.03258699,-0.00020551703,-0.0050626723,-0.021518117,-0.047289163,-0.0042810915,-0.018152392,-0.02991131,-0.006808907,-0.022743298,0.014885242,0.013061553,-0.056808956,-0.048979066,-0.0048795994,-0.019884543,0.04145899,-0.0005593408,-0.026432922,0.010132385,-0.034051575,0.0029133249,-0.012251807,0.021011146,0.010639357,-0.019405738,-0.014399394,-0.0300803,0.014019166,0.01520914,-0.03146039,0.0031580091,0.0015807649,-0.009167732,-0.13384044,0.012617954,-0.020335184,-0.0026017488,0.006527256,-0.0003153168,0.0032777106,0.008724132,0.027953837,-0.00970991,0.013329122,-0.013730474,0.0030224647,-0.0072877132,0.019800048,-0.037882026,0.06523032,0.015180975,-0.024024809,0.0083086975,-0.027672186,0.012047611,0.011047751,0.04055771,-0.018687528,0.021546282,-0.050922457,0.02679907,0.042641923,-0.003735393,-0.012505293,-0.02979865,0.034952857,-0.01687088,0.07294755,-0.0019363489,-0.016631477,-0.006308977,0.0013721673,-0.013293915,0.0011406855,-0.028488973,0.009604291,-0.004918326,0.0430644,0.02003945,0.014103661,0.020391515,0.0050626723,-0.0018448124,-0.007682024,-0.0056682215,-0.002980217,-0.011864538,-0.023151692,0.0012005364,-0.010364748,-0.0034097345,-0.03757221,-0.02113789,0.010414037,0.016279414,0.015223223,-0.00047000468,0.025404898,-0.023968479,-0.024137469,-0.0011195617,0.023377012,-0.029094523,0.025489394,-0.025447145,0.032418,0.03258699,0.03134773,0.0069391704,0.023123527,-0.04438816,0.019180415,-0.03996624,0.029404338,-0.007682024,0.017321521,-0.041656148,0.009695827,0.03729056,-0.009914107,0.028404478,0.009759199,-0.0025735837,0.017546842,-0.019898625,-0.013012265,0.018405877,0.00014467607,0.021320961,-0.039487436,0.05266869,-0.015603452,-0.011554722,0.054076944,-0.035065517,-0.038417164,-0.034671206,-0.056583636,0.011167453,0.0045275358,0.045796413,-0.018307298,0.033826254,-0.014167033,-0.027432783,-0.005699907,0.058752347,0.022348987,0.01237855,0.03957193,-0.0062280023,-0.023377012,0.008590348,0.020391515,-0.005376009,-0.025883704,0.0056118914,-0.013800886,-0.0051154816,0.033600934,-0.016209,-0.003047109,-0.01970147,-0.04368403,0.0027232107,0.0015825252,-0.0021176615,-0.007094078,-0.013420658,0.010892843,-0.05038732,-0.005678783,0.008034088,0.022785546,-0.008639636,0.010899884,-0.035009187,0.023095362,0.024771184,-0.030784426,0.041768808,-0.010301376,-0.0015499593,-0.041036513,0.0076890653,-0.046218887,0.04517678,-0.009477547,0.014688087,-0.017729916,-0.009632456,-0.023165774,0.03729056,0.0011134007,0.035178177,0.007259548,-0.009801446,-0.056132995,-0.0069955005,-0.036896247,0.035347167,-0.034502216,0.014138868,0.009393052,0.0052527864,0.024841595,-0.0068898816,-0.0028446727,-0.01065344,-0.012118024,0.014392354,0.035037354,-0.024376873,0.0062596877,0.0033727677,0.042641923,0.018772023,0.046049897,0.06100555,-0.01604001,0.0053302404,-0.058639687,0.007682024,-0.013857217,0.023503754,0.018546702,0.003988879,0.004833831,-0.0103225,0.0036262535,0.02003945,-0.019321242,-0.0318547,0.053851623,0.009153649,-0.019335324,0.016913127,0.017180696,0.015279553,-0.0448388,0.02503875,-0.0043550245,0.013934671,-0.019771883,0.018039731,0.023391094,0.0019169854,-0.0037811613,-0.006847634,-0.03255883,0.013723433,-0.034727536,0.016730055,0.017448263,-0.0103084175,-0.02236307,-0.0033111565,-0.012723573,0.017448263,-0.012160271,0.0067525767,-0.02985498,0.0004145547,-0.023771323,-0.017321521,0.0050697136,-0.001365126,0.0068581956,-0.011364608,0.0037987644,-0.020321101,0.03278415,0.036530104,-0.010998461,-0.017997483,0.014533179,-0.021743437,0.00743558,-0.008357986,0.02358825,0.00970991,0.004700047,0.008836792,0.015378131,-0.026221685,0.015730195,0.006847634,-0.011639217,0.010238005,-0.0133220805,0.003946631,0.0061223833,0.011237865,0.0007054471,0.00849177,0.024559945,-0.00088323915,0.0056118914,-0.012913687,-0.010829471,-0.020292936,0.0051542087,0.015462626,0.006981418,-0.008005923,0.003096398,-0.0053020753,-0.01004789,0.026066776,-0.028728377,0.01992679,-0.009097319,-0.0056893453,-0.02702439,-0.0066786436,0.0046930057,0.019490233,-0.0062737702,-0.001953952,-0.003413255,-0.008984659,0.028728377,-0.016715972,0.007171532,0.00849177,-0.0010192237,-0.019011425,-0.04238844,0.006999021,-0.008710049,-0.04993668,0.0098296115,-0.005537958,-0.019771883,0.011533598,0.009949313,-0.02253206,-0.017406017,0.015842855,-0.0046648406,-0.022151832,-0.0032794708,0.00843544,0.03402341,-0.010470367,0.0110829575,-0.003707228,0.018152392,0.006977897,-0.0039501516,-0.031657543,0.030784426,-0.010012684,0.009505712,0.016406156,0.009421217,0.038642485,0.029629659,0.007682024,0.026982142,-0.025010586,-0.0068511544,0.017800327,0.008857916,-0.020433761,-0.007970716,-0.0027003265,-0.04089569,0.007900303,0.007259548,0.031037914,0.03002397,-0.02025069,-0.046697695,0.0009479308,-0.005287993,0.018419959,0.0053372816,-0.0039501516,-0.007984798,-0.022123666,0.0400789,-0.019997204,0.059315648,0.014659922,0.028742459,-0.014533179,-0.0020595712,0.0025154932,-0.019081838,0.031122409,-0.0031122407,0.005615412,0.020616835,0.0377412,-0.008611471,-0.0070271865,0.035938635,0.021884263,-0.0042212405,0.038417164,-0.02553164,-0.009723992,0.027460948,-0.0054921894,-0.01259683,-0.012688367,-0.038220007,0.0110547915,0.0075341575,-0.0040029613,0.03224901,-0.028348148,-0.04036055,-0.014688087,0.025686549,-0.014955655,-0.008442481,-0.010449243,-0.01881427,-0.004312777,0.014561344,0.009350805,-0.006006202,-0.044050176,-0.022926372,-0.021518117,-0.02602453,0.008984659,0.008583306,-0.01049149,0.0066117514,-0.02170119,0.009702869,-0.028503057,0.017476428,-0.011885662,0.030840756,-0.014631757,0.026573747,0.04174064,0.015420378,0.0012110983,0.0020349268,0.0038867805,-0.01687088,0.0032829915,0.025489394,0.005055631,0.017631337,0.03047461,0.015195058,0.028207323,0.009745116,0.013779763,-0.015955515,0.011963116,0.0075411987,0.02663008,0.02230674,0.006499091,-0.004816228,0.05078163,0.019490233,0.019997204,0.0038621358,0.028869202,-0.017138448,-0.022658803,-0.0074214973,-0.015406296,-0.0069145258,0.0138290515,-0.0031738519,0.014272652,0.010829471,-0.0035135932,-0.02003945,-0.000029375293,-0.0134277,-0.036192123,-0.0094353,-0.031235069,-0.014955655,-0.01270949,0.0025207743,0.043205224,0.009850735,-0.009343764,-0.002225041,-0.008336863,0.025264073,0.003557601,-0.014314899,-0.032051854,0.008174913,0.011822291,0.025658384,0.0038445326,0.009892982,0.0073510846,-0.017335603,-0.03351644,0.010737935,-0.00012168193,-0.012646119,-0.036642764,0.009843694,-0.026770905,0.037149735,-0.053851623,-0.0039536725,-0.03047461,0.010512615,0.010730893,0.018743858,-0.039656427,0.030868921,0.007865097,-0.004189555,-0.01282215,-0.0047141295,0.05348548,-0.003346363,0.00074769475,-0.003900863,-0.03191103,0.002825309,-0.008646678,0.02026477,-0.036361113,-0.012991141,0.019250829,-0.011674424,-0.034474052,-0.0013976919,-0.0142163215,0.033093963,0.008660761,-0.0014091339,0.0074285385,0.03740322,-0.00048056658,-0.0330658,-0.0024908488,0.029319843,-0.008414316,-0.0025771044,-0.025602054,-0.009519795,-0.03146039,-0.00682651,0.009942272,-0.011512474,-0.0048232693,0.03889597,0.0071820943,-0.0036755423,-0.03289681,0.005728072,0.01909592,-0.03751588,-0.000604669,-0.011287154,-0.022672886,0.021222385,0.035910472,-0.013491071,0.01326575,-0.028362231,-0.005411215,0.003869177,0.0011609292,-0.0023465028,-0.0015085918,-0.018772023,0.029066358,0.017110283,-0.021236466,-0.032051854,0.010836513,-0.005516834,0.015547122,-0.030728096,0.038163677,0.0029203661,-0.01359669,-0.0042318027,-0.012040569,0.021518117,-0.0028112265,0.009843694,-0.0060132435,-0.028953698,0.021067476,0.0051647704,-0.0070729544,0.034445886,0.006220961,-0.029066358,0.057851065,-0.020433761,-0.00638291,0.0032477851,-0.017617254,0.0008000642,-0.026489252,-0.0009972197,-0.0016080497,0.012512335,-0.00090304273,-0.0083086975,-0.013920588,-0.012589789,0.0020507695,-0.028066497,-0.038276337,0.029038193,-0.014744417,-0.0037037074,0.026461087,-0.010660481,-0.009181814,0.026334345,-0.001964514,0.016321661,0.01642024,0.011068874,0.0312914,0.04207862,0.035009187,0.014314899,0.056189325,-0.006682164,0.012885522,0.010238005,0.010083097,-0.018067896,-0.005728072,-0.01492749,0.008590348,0.00033534042,-0.021151971,0.0071680117,0.024292378,0.0077665197,0.011251948,0.004921847,-0.01487116,-0.0053865705,0.00064075546,-0.0073722084,0.005921707,-0.0074074147,0.0003069553,-0.019349407,0.011463186,-0.010730893,-0.0019609933,0.049204387,-0.011575846,0.0056858244,-0.016392075,-0.004101539,0.018828353,0.020166194,-0.018687528,0.038557988,0.019405738,0.008027046,0.0028094663,-0.013103801,0.012223642,0.025883704,-0.0052140597,0.0014478609,-0.028925532,-0.0051964563,-0.004650758,0.019504314,0.007703148,0.0037565168,0.011195618,0.04205046,-0.029291678,0.004400793,0.0044676852,-0.015011985,0.011913827,-0.0019169854,-0.009723992,-0.021151971,-0.0032090582,0.021687107,-0.0052915136,-0.024221964,-0.009667662,0.007231383,0.019025508,0.011033668,0.028826954,0.029995805,0.037487715,0.018180557,0.006059012,0.0061012595,0.024841595,-0.011822291,0.011653299,-0.0008418717,0.042867243,0.013448823,0.011702589,-0.025658384,0.0036051297,-0.023024948,-0.04706384,0.02025069,0.0066082305,-0.0027003265,-0.0002891321,0.010315458,-0.034699373,-0.02341926,-0.034614876,-0.045148615,-0.03934661,-0.030840756,0.028531222,-0.022081418,-0.008442481,0.0025295757,-0.009132526,0.008984659,0.004590907,0.01037883,0.021926511,0.0059041036,0.05151392,0.017448263,-0.0014645839,0.0006059892,-0.04199413,0.013991001,-0.032981303,0.011125205,-0.0037213105,0.021151971,-0.017420098,0.018476289,-0.037093405,-0.008231243,0.008076335,0.00038748982,0.0016362148,-0.013744556,0.014195198,0.00754824,-0.000837911,-0.017504593,0.02619352,-0.027320122,-0.009477547,0.035797812,0.005970996,-0.026235767,0.006875799,0.0026175918,-0.0146035915,-0.047401823,0.02225041,0.029460669]},{"id":"interface-TenorMediaResult","type":"interface","source":"main","text":"Interface: TenorMediaResult\nDescription: Result for embed media: url and optional flags.\nProperties: flags: number, url: string","meta":{"url":"/docs/typedefs/TenorMediaResult"},"embedding":[-0.021145659,-0.011891541,-0.054229125,0.02093744,-0.009838283,-0.0075536733,-0.008750925,-0.014933832,0.02963631,0.0021371227,0.0054107667,-0.033499904,0.013591984,-0.036345545,0.00031268795,-0.0251712,-0.0361836,0.0302841,0.035813432,0.046178047,0.0031319403,-0.018461963,0.018045528,0.07148805,-0.026027204,0.027600404,-0.008681519,0.033684988,0.022360262,0.042152505,0.028201923,-0.036044788,0.036993332,-0.02757727,-0.019063482,-0.0072124274,0.04108828,-0.008964926,-0.040718116,0.011428835,0.017721634,0.002391611,-0.016136866,0.024962982,-0.02034749,0.023875622,0.004288705,-0.009930825,0.022869237,0.050851375,-0.04654821,-0.025286876,-0.012504626,0.040926334,-0.027739216,0.020162407,-0.013360632,-0.0063332864,0.024361463,-0.03130205,-0.005399199,-0.035558946,-0.0028933575,-0.030793075,0.03317601,0.02049787,-0.02152739,0.05048121,0.030955022,0.011064454,0.06163242,0.018045528,-0.0067265863,0.015049508,-0.01783731,0.017328335,-0.0015789837,0.029428093,0.0018508234,-0.08347214,0.0031521837,0.02526374,-0.026189152,-0.010954562,0.000978189,0.022973346,-0.05210068,-0.03544327,-0.020902738,-0.010919859,-0.09388302,-0.006911669,-0.027484728,-0.007171941,-0.06158615,-0.03685452,-0.019526187,0.0015196996,0.00003072656,0.06579677,0.04374884,-0.022441234,-0.04830649,-0.013522578,-0.00024328206,-0.040440492,0.03803442,-0.025425687,-0.026628722,-0.028086245,0.007241347,0.010607532,-0.038821023,0.03990838,0.04004719,-0.024731629,-0.023424484,-0.005040602,-0.0067844247,0.0071835085,-0.057282984,-0.0015009021,0.059735328,0.0021168792,0.011729593,-0.0073107528,0.0015182536,-0.0089822775,-0.02561077,-0.028201923,0.04182861,0.032690167,0.0011321834,0.023921894,-0.027739216,-0.004441976,0.015651025,0.013210252,-0.036229867,0.02841014,-0.015292428,-0.022961779,0.07903016,-0.009508605,0.005752012,0.009768877,-0.058254667,0.042638347,-0.0014596924,-0.006472098,-0.0033719689,-0.018172773,-0.055894867,0.02044003,-0.031325188,-0.05103646,0.0122617055,-0.03544327,-0.030931886,-0.02403757,0.02993707,-0.030793075,0.00071936304,-0.008207245,0.005266171,0.057421796,0.04222191,0.0048844386,-0.031140104,0.013013602,0.007466916,-0.012030353,-0.06232648,-0.023517026,-0.050018504,-0.015789837,0.028572086,-0.031533405,0.0072934013,0.0076288627,-0.007877567,0.010711641,-0.00170189,-0.06801776,-0.029289281,0.039885245,-0.02020868,0.04078752,0.046131775,-0.02683694,-0.018635478,0.011914676,0.032551356,0.022383396,-0.023378214,0.021226631,0.018542938,0.008629465,0.049416985,-0.039098646,-0.010364612,0.026998887,0.04698778,-0.0017814175,-0.025495093,-0.00004667726,-0.017316766,-0.02963631,-0.043193594,0.041365903,0.05219322,0.043679435,-0.007357023,-0.024361463,-0.005928419,0.034217097,-0.008421247,-0.011741161,-0.020972144,0.007559457,-0.010451369,0.023459187,0.040764388,-0.01602119,0.0072124274,0.047890056,-0.010555478,0.024662223,-0.030978158,-0.0003238941,-0.01042245,0.03194984,-0.0075074024,-0.009369793,0.0020069866,0.023586432,-0.0028268436,0.017976122,0.021851284,-0.023759946,-0.015893945,-0.014343882,0.012932628,0.029543769,-0.03734036,0.012689709,0.026004069,-0.015176753,0.01868175,0.033499904,0.018265314,0.0048960065,0.036299273,0.0052546035,0.033939473,-0.015801406,-0.05598741,0.025703311,-0.0049914396,0.013430038,0.0047253836,-0.039838973,-0.027299646,-0.018982507,0.023366647,-0.01440172,-0.023597999,0.016194705,-0.010809965,-0.014124096,0.0016079028,-0.04747362,0.001733701,0.015801406,-0.012597167,0.0030885616,0.038011286,-0.0015009021,-0.039283726,-0.008080001,-0.018531369,-0.04974088,-0.05136035,0.05904127,-0.014783452,-0.03033037,0.016171569,0.008936007,0.05048121,0.016680546,0.022082638,-0.005561146,0.075976305,-0.06241902,-0.06556542,0.016298814,0.056357574,-0.03833518,0.06917453,0.005887932,0.02152739,-0.02723024,0.024500275,-0.023898758,0.0104571525,0.013522578,0.038959835,0.010451369,0.029404957,0.013163982,0.010561261,0.0072239954,-0.07560614,0.030839346,-0.07357023,0.006385341,0.04606237,0.025726445,-0.031417727,-0.016483895,0.022441234,0.0110586705,-0.009751526,0.0023973947,0.02433833,0.014262908,-0.01074056,-0.003982162,-0.015940217,-0.00031033828,-0.006570423,-0.0045692204,0.00892444,0.015732,0.013314361,-0.0019014319,-0.043771975,-0.011515592,-0.025842123,0.04064871,0.029428093,-0.00037594853,0.011272672,0.01783731,0.024060706,0.004817925,-0.045831017,-0.00060115615,-0.00024780066,-0.038497128,-0.0113189425,0.010133258,-0.026559316,0.0012962994,-0.0055177673,-0.01868175,0.0107521275,-0.054969456,-0.063020535,0.0014596924,-0.039445676,0.03641495,-0.026767533,-0.013406903,-0.020590411,-0.028109381,-0.0558486,0.021180362,0.01838099,-0.018276881,0.036391817,0.009346658,-0.012597167,0.0022123123,-0.00857741,0.018265314,-0.005526443,0.018843696,-0.0134647405,-0.00052849686,0.017814176,-0.016588004,-0.040232275,-0.027415322,-0.0045981393,-0.015859243,0.03435591,0.013904311,0.0073454557,0.027114563,0.023331944,0.031024428,-0.037756797,-0.023621134,0.010850453,0.041319635,0.017432444,0.04913936,-0.015847676,-0.021781879,0.014956967,-0.020775493,-0.022036366,0.035628352,0.015199888,-0.021249767,0.034679804,0.002228218,0.039006103,-0.017409308,0.0030307234,-0.031834163,0.028225057,-0.018450396,0.014413288,0.019699702,-0.011417267,-0.05450675,0.04414214,0.008797195,-0.006350638,0.07222839,0.000015510135,0.02197853,0.024315193,-0.011122292,0.017363038,-0.014320746,0.027785487,-0.029081063,-0.049093094,0.029543769,0.034957428,0.016252544,-0.016391356,0.0041961637,0.0027747892,0.006605126,-0.00007776531,0.010619099,-0.00517363,0.023470756,0.00054187194,-0.0061655557,-0.02732278,-0.0018349179,0.025101794,0.048260223,0.00783708,-0.027785487,-0.0133722,0.010717425,-0.0767629,0.06246529,-0.011579215,0.0051504946,0.023898758,-0.005462821,-0.00017035168,0.008276651,-0.044072732,-0.008756708,0.023470756,0.033430498,0.029034793,-0.013430038,-0.015500646,0.01381177,0.0060498794,-0.005433902,-0.002518855,0.03498056,-0.017143251,0.022198314,-0.029751986,-0.0361836,0.027438458,-0.078336105,-0.025124928,-0.055524703,0.032250598,-0.033523038,-0.03970016,-0.018797426,-0.0409032,0.115121216,0.03081621,-0.014563667,-0.016044326,-0.045298904,0.013534146,0.0012717182,-0.024454005,-0.010960345,-0.014262908,-0.0028629925,-0.020995278,0.017779473,0.030168422,0.0073454557,0.011162779,-0.015893945,-0.027901163,0.013360632,0.049093094,0.0072876173,-0.024407735,-0.024153246,-0.0534888,-0.020173976,-0.0030075882,0.01282852,-0.0110702375,-0.004193272,-0.029451229,0.00033636548,-0.037132144,0.01160235,-0.027854893,0.017039143,-0.044905603,-0.023875622,0.022337126,-0.010127475,0.01656487,0.01843883,-0.01243522,-0.0051533864,-0.0038404586,-0.020902738,-0.01749028,-0.0075189704,-0.015662594,-0.011937811,-0.01440172,0.0034182395,0.015593188,0.030978158,-0.001110494,-0.060614467,0.01499167,-0.01961873,-0.014274476,-0.01597492,-0.058948725,0.013002034,0.01754812,-0.005075305,0.011388348,-0.005665255,0.014170367,-0.05381269,0.037617985,-0.0037537012,0.016634276,0.002521747,0.03317601,-0.01093721,-0.012724412,0.012307976,0.0077792425,-0.048722927,0.0070157778,0.013210252,-0.0024523411,0.012550897,0.013083008,-0.010532342,0.02487044,-0.004803465,0.015512214,0.019896353,0.0060498794,0.062002584,0.016391356,0.008889737,-0.01558162,-0.002024338,-0.018473532,0.010509207,-0.007432213,-0.026466776,0.031278916,0.006975291,0.040926334,0.0070793997,0.0092541175,0.02113409,0.023227835,0.042707752,0.005208333,0.035905976,0.017906716,-0.0064200438,-0.01951462,0.024060706,0.058069587,-0.0036148895,-0.004222191,0.026119746,0.01779104,-0.014956967,0.0049654124,0.023852488,0.05751434,0.015616323,-0.0037537012,-0.0116370525,-0.048537847,0.0036524844,-0.0021718256,0.018739587,-0.02373681,-0.0058734724,-0.012134462,0.02732278,-0.028965387,0.05122154,-0.028525816,-0.0072586983,-0.0075131864,-0.0047051404,-0.013256523,0.014737181,-0.06852674,-0.0027386404,-0.04300851,-0.017409308,0.0043147323,0.029867664,0.01278225,0.0053529283,-0.018473532,-0.022290856,0.0073396717,-0.0369702,-0.0030654264,-0.004051568,-0.04305478,-0.017999258,0.06329816,-0.008045298,0.03252822,0.006674532,-0.015084211,0.00281383,-0.01078683,0.020868035,-0.035420135,0.024731629,-0.024130112,-0.017386172,0.0080857845,-0.027785487,0.008855034,-0.047103457,-0.033453632,0.051869325,-0.054923184,0.00951439,-0.0026056124,0.015697297,0.010191097,-0.03333796,-0.024592817,0.024801034,-0.013233388,-0.013846473,-0.045877285,-0.027137699,0.032019246,0.0065530716,-0.011579215,-0.0145521,0.06612067,-0.04462798,0.01484129,0.010006014,0.011926244,0.036692575,0.01892467,0.036785115,-0.055200808,-0.025818987,0.00150524,-0.009450767,-0.013094576,0.010341476,-0.010300989,0.020012029,0.00079744466,0.021735609,0.026883211,0.012458355,-0.008276651,0.042291317,0.01715482,-0.020012029,0.016125299,0.0017235794,0.014702478,0.028780304,-0.010648019,-0.016877197,0.013568849,0.019745972,0.02797057,-0.0095953625,0.022869237,0.027253374,-0.03248195,-0.03933,-0.03076994,-0.014019988,0.016032757,0.007171941,0.008785628,-0.00189854,0.017420875,0.025379417,-0.0011365212,-0.009121089,-0.023517026,0.02875717,0.020069867,0.0019390268,0.0013707661,0.002385827,0.015153617,0.0026981535,0.029775122,-0.0075421054,-0.038751617,0.021700906,-0.03120951,0.019051913,-0.0039705946,0.01152716,-0.005728877,-0.022996482,0.006258097,0.027808622,0.008363408,0.015315564,0.001801661,0.016379787,-0.024777899,0.017895149,-0.016437626,0.003967703,-0.033846933,0.0057057417,0.010399315,-0.0026692345,0.009815148,-0.014019988,0.019526187,-0.022834534,-0.014424855,0.01715482,-0.020093001,0.03833518,0.0015139157,-0.007825512,-0.008247732,-0.008560059,-0.0015833216,-0.027091429,0.0040400005,0.033754393,-0.026258558,-0.012735979,-0.030052746,-0.014274476,0.015685728,-0.0049596285,-0.040718116,-0.03204238,-0.036900792,-0.005040602,-0.026327964,0.0034095638,-0.021122523,-0.010781047,0.011816351,-0.035373863,-0.018311584,-0.029358687,-0.013476308,-0.004852628,-0.037294094,0.02285767,0.02959004,-0.07014621,0.011903108,0.012724412,-0.003603322,-0.058994997,0.0042395424,0.026559316,-0.023482323,-0.03671571,-0.0024422193,-0.00093481044,0.022533776,-0.033638716,-0.024199517,0.023574864,0.0016961062,0.01990792,-0.0095722275,0.024014434,0.004320516,0.02993707,-0.01518832,0.06727743,-0.023123726,0.008022163,0.028641492,-0.016171569,0.040371086,0.018219043,0.004297381,0.011984082,0.027207104,0.025495093,-0.04374884,0.017050711,0.023216266,-0.015419673,0.01641449,0.018635478,-0.013580417,0.007166157,-0.0145521,-0.010769479,0.011914676,0.014170367,-0.027461592,-0.021180362,-0.0169119,0.017929852,-0.0128747905,0.033291686,0.0034442667,0.009537525,0.004948061,-0.02020868,-0.012122894,-0.015026373,0.025286876,-0.0122270025,0.0026591127,-0.022892373,-0.018519802,-0.03886729,-0.025703311,-0.025310012,0.011480889,0.0012485828,-0.049555797,0.029890798,-0.011162779,-0.026559316,0.0021168792,-0.008016379,-0.025934663,0.008288219,0.0267444,0.037918746,0.05668147,-0.025286876,0.019468348,-0.028201923,0.0005104224,0.0043407595,-0.0021038656,-0.0043985974,0.015893945,0.020752357,0.0053240093,0.0192717,-0.023227835,-0.026513046,0.019572457,-0.004502706,-0.016888764,0.046270587,-0.032759573,0.0031348323,0.027207104,-0.005402091,-0.01145197,-0.0080395145,0.004227975,0.029751986,-0.006969507,0.040440492,-0.020532573,0.00033419655,-0.04379511,-0.0012594275,-0.025032388,-0.032458816,0.020879602,0.026605587,0.01902878,-0.027762352,-0.033846933,0.0063390704,0.01754812,0.012169165,-0.012400517,0.03262076,-0.01396215,0.0014481248,0.018704884,0.009502822,0.0056507955,-0.037826203,-0.03498056,-0.005853229,0.011810567,-0.0028355194,-0.035720892,-0.0122617055,-0.018311584,-0.01892467,0.019838514,0.0069579394,-0.014378585,0.017929852,-0.009774662,-0.004193272,0.011185914,-0.05311863,-0.011879973,-0.011914676,0.00833449,0.022950212,-0.014910696,-0.010538126,0.023759946,-0.042939104,0.042707752,0.0116601875,-0.019630296,0.003632241,-0.00065754843,-0.030955022,-0.011504024,-0.015396537,0.015072644,-0.019977326,-0.0014604154,-0.011370997,0.037479173,-0.034540992,0.03548954,0.011984082,-0.034217097,0.025703311,0.00058814255,-0.03111697,-0.01632195,0.012319543,0.05839348,0.008461733,0.022499073,0.016773088,-0.04314732,-0.0035801865,0.005668147,0.030746805,-0.015812973,0.023968164,0.008097352,0.02310059,0.027600404,-0.0140315555,-0.018045528,0.045992963,-0.005335577,-0.0028297356,-0.008594762,-0.0022990697,-0.0017149036,-0.001242076,0.006772857,-0.0039098645,0.0101853125,0.00568839,0.014737181,-0.0025940447,-0.0030856698,0.014725614,0.0008372084,0.027692946,-0.052655928,-0.02275356,0.010399315,-0.021689337,-0.030492317,-0.0034760777,-0.006061447,0.0083691925,-0.01744401,0.016715249,0.034679804,-0.021180362,-0.0011639944,0.017073845,0.022475937,-0.050990187,0.0027617756,-0.041666664,0.0038404586,0.014818155,0.029358687,-0.024130112,0.02196696,-0.013106143,0.0034818617,0.013557281,-0.04310105,0.01098348,-0.0064026923,0.014216637,0.01690033,0.0031724272,-0.034540992,0.043725703,0.030746805,-0.022429667,-0.01425134,0.04122709,-0.010659587,0.020868035,0.005433902,-0.0035396998,-0.027507864,-0.014517397,-0.009456551,-0.020359058,0.013256523,-0.016194705,-0.008791411,-0.046663888,-0.041805476,0.016229408,0.014852858,0.024939846,-0.005407875,-0.027854893,-0.024639087,0.0035946462,0.039098646,0.011139643,0.014980102,0.015361834,-0.01381177,0.010717425,-0.0060036085,0.011480889,-0.023181563,-0.0021674877,0.013279658,0.0034587262,0.00018282305,0.013638255,0.03889043,-0.020914305,0.020081434,-0.0072934013,0.030353505,0.00798746,0.0326439,-0.05228576,-0.009508605,0.016345084,-0.034101423,-0.017212657,0.0243846,-0.034240235,-0.017952988,0.03181103,-0.008178326,0.028595222,0.01307144,0.005202549,-0.02565704,0.021099387,-0.020972144,0.009965528,-0.03155654,0.06380714,0.03331482,-0.002001203,0.02850268,-0.051545434,-0.0369702,-0.027183969,0.036692575,0.004256894,0.025101794,-0.0054599294,-0.012550897,-0.029705716,-0.037965015,-0.02433833,-0.02340135,0.03164908,0.0021848392,0.0035223484,-0.051776785,-0.002261475,0.015616323,0.011741161,-0.008236164,-0.030931886,0.0077329716,-0.012597167,0.025055522,-0.0067902086,-0.020648248,0.024014434,-0.005821418,0.01606746,-0.041990556,0.008137839,0.013048305,-0.0043407595,0.023355078,-0.0073165363,-0.0034298073,-0.039885245,0.0016440518,-0.00928882,0.016507031,0.002588261,0.019456781,0.00094204023,-0.007131454,0.026674993,-0.0024378814,0.009207847,-0.018265314,0.038913563,0.0020142165,0.026374234,0.012481491,-0.0008372084,0.025009252,0.028548952,0.0037074308,-0.010220015,0.0052748467,-0.017351469,0.016645843,-0.024523411,-0.016877197,0.010867804,0.019584026,-0.017895149,0.047612432,0.01199565,0.0004514997,0.0122385705,-0.004803465,0.010567045,0.044211544,-0.010642235,0.019699702,-0.019722838,0.020856466,0.0035888623,0.022418099,-0.019051913,0.027854893,0.016946603,0.01754812,-0.027438458,0.009618498,-0.008750925,0.013823338,0.02369054,-0.020902738,0.02369054,-0.022591613,-0.015836108,-0.007536322,0.019722838,-0.050111044,-0.00064995716,-0.009728391,0.037641123,-0.041805476,-0.0014553545,0.011052886,-0.032921523,0.0006152542,0.024662223,0.0122617055,0.04182861,-0.013823338,-0.022591613,0.0026648967,-0.020243382,0.040926334,-0.025934663,0.031533405,0.05760688,0.041759204,0.02074079,-0.019236997,-0.005338469,0.037432905,-0.002886128,-0.002066271,-0.0047803298,-0.01661114,-0.0031984544,0.0044680033,0.023436053,-0.02561077,-0.016379787,0.00056862214,-0.011428835,-0.01990792,-0.011689107,0.03951508,-0.0515917,0.03081621,0.008525356,-0.00968212,-0.024731629,0.023424484,-0.0279243,-0.02487044,0.013314361,-0.0140315555,-0.010966129,0.038103826,0.026674993,-0.0056710388,-0.013591984,-0.0025622337,0.013580417,-0.01783731,-0.018288448,0.039283726,-0.018103367,-0.017941419,-0.049416985,0.016252544,0.0072182114,-0.016206272,0.005300874,0.010567045,0.017432444,-0.01862391,0.00026117577,-0.023806216,0.012805385,0.004161461,-0.0022137584,-0.03724782,-0.008351841,0.025402552,0.0068249116,-0.024523411,0.023412917,0.029913934,0.02683694,-0.013476308,0.009126873,0.03666944,0.041065145,-0.023239402,0.007900703,-0.047797516,-0.014309179,-0.0066224774,-0.022256153,-0.05446048,0.012759115,-0.010902507,0.056588925,0.004392814,0.008224596,0.028548952,0.024130112,0.01157343,-0.01990792,0.036808252,-0.017779473,0.018057097,-0.042684615,-0.028317599,0.022117341,0.0049856557,0.032713305,-0.0015760919,-0.009583795,-0.00845595,-0.026906345,-0.00081407314,0.011475106,-0.0059052836,-0.015940217,0.000261718,0.016472328,-0.014748749,-0.015037941,0.018554505,0.015766703,-0.009792013,-0.027901163,-0.026166016,-0.01543124,0.017513417,0.0041759205,-0.022776697,0.019745972,0.00033654622,-0.07116416,-0.024801034,-0.02279983,-0.029011657,-0.011272672,0.039353132,0.003603322,0.009040115,-0.015361834,-0.008808763,-0.0049798717,-0.0022123123,0.018114934,-0.022383396,-0.031741623,-0.022452801,0.015477511,0.0059457705,-0.016715249,0.033870067,0.030515451,0.008473301,0.0049278173,0.010746344,-0.0054165507,-0.015130482,0.028919116,-0.0008017825,0.002226772,0.02683694,0.009658985,-0.014193502,0.02609661,-0.03509624,0.008027947,0.020116137,-0.016449193,0.012735979,-0.00034684865,-0.022406531,0.009745742,0.03509624,0.0057346607,-0.008930223,-0.018369423,-0.013522578,-0.019352673,-0.019375809,0.02222145,-0.0302841,0.0013996853,0.00053138874,0.0243846,-0.004971196,-0.020012029,0.023945028,0.015998054,-0.012481491,0.023412917,0.022834534,0.00034883685,-0.005572714,-0.006315935,-0.03155654,-0.011093373,-0.028919116,-0.04252267,-0.0041788123,0.0015182536,0.027461592,-0.03828891,0.0025116252,-0.03111697,0.006055663,0.023597999,-0.04728854,0.010191097,0.013672958,0.050758835,-0.039168052,-0.010202664,-0.030052746,-0.0003990838,-0.027369052,0.011596566,0.0010757911,0.023216266,-0.006934804,0.0052603874,0.015963351,0.0010461491,0.029219875,0.0037739447,-0.021296037,-0.018600775,0.008866601,0.012354246,-0.038080692,0.033684988,-0.039838973,-0.049787153,-0.041180823,-0.008843466,0.024454005,0.0057144174,0.029381823,-0.035905976,0.01051499,-0.031972975,-0.013210252,0.011642836,-0.020775493,-0.0013845027,-0.02069452,-0.025009252,-0.032759573,0.005856121,0.0101853125,-0.030353505,-0.030885616,-0.000850945,-0.023875622,-0.03685452,0.016102163,0.0035078889,-0.02491671,0.00791227,-0.0008928777,-0.00909217,-0.0152577255,-0.043170456,-0.012388949,-0.035952244,-0.0048613036,0.015870811,-0.006570423,0.0067034513,0.028109381,0.01400842,0.013753932,0.0065588555,-0.0047629783,-0.022244584,0.015269293,-0.006506801,0.019977326,0.06376087,0.0051562786,0.022603182,0.032088652,0.04113455,0.026605587,-0.045252632,0.017409308,-0.02959004,-0.011064454,0.028687764,0.015107347,-0.0019187834,-0.0021067576,0.01278225,-0.035026833,0.015315564,-0.037317228,0.030885616,-0.009022764,0.016622707,0.05362761,-0.015859243,-0.029705716,-0.0008632356,-0.02408384,0.04694151,0.04881547,0.020868035,-0.015327131,-0.01907505,0.038913563,0.04724227,-0.016703682,0.023285672,-0.035744026,0.017409308,-0.004421733,-0.0302841,0.025842123,0.019156022,0.060984634,0.0020344597,0.04867666,0.014517397,-0.014459558,-0.04379511,0.016113732,-0.018785859,-0.008282435,0.0026287476,0.004722492,-0.012735979,0.011000832,-0.010717425,-0.03076994,0.009716823,0.030723669,-0.048630387,-0.00091095216,0.012643438,0.009520173,-0.027068293,0.0016267003,-0.00068285264]},{"id":"interface-UserFlagsResolvable","type":"interface","source":"main","text":"Interface: UserFlagsResolvable","meta":{"url":"/docs/typedefs/UserFlagsResolvable"},"embedding":[-0.026789293,0.019600857,-0.02891381,0.047787093,0.01157571,-0.019149762,-0.046943106,-0.021070559,0.052181643,-0.0049184035,-0.010411591,0.015162652,0.00022679861,0.04365447,0.0065445327,-0.052094333,-0.02207461,0.02821534,-0.014616972,0.026614675,0.041529953,0.030354409,0.050813805,0.018058399,-0.00082124973,0.057682108,-0.0028611866,-0.03439972,-0.012572488,0.010178767,0.052647293,-0.03797939,0.025348695,-0.035185505,0.035767563,-0.0075740507,0.01660325,0.0062098484,-0.03303188,0.008832755,-0.037571948,-0.032217,-0.018058399,-0.001171395,-0.052589085,0.013678401,0.020837734,0.058526095,0.017127104,-0.019324379,-0.0092620235,-0.018640459,0.018334877,0.031722248,-0.032449823,0.02325328,0.0107681025,-0.009909565,-0.03346843,0.034050487,-0.011328335,-0.05302563,-0.015875675,-0.036000386,-0.020779528,0.06949791,-0.014064015,0.01679242,0.020852285,-0.0035214606,0.013009032,0.0025719758,-0.008410761,-0.02002285,0.00422357,0.00718116,0.05753659,0.057769414,-0.0030721833,-0.019324379,-0.039434537,0.0287974,-0.03233341,-0.056809016,-0.023296935,-0.0017034338,-0.077297516,-0.024242783,-0.031402115,-0.06478323,-0.03893979,0.029714143,-0.033934075,-0.020983249,-0.020081056,-0.04676849,-0.012776208,-0.0036560618,-0.02265667,0.011859464,0.05127945,-0.0053476724,-0.012230528,0.0030448993,0.026149027,-0.010324283,0.04109341,-0.00047292342,-0.024286438,0.02470843,-0.044993207,0.020954145,-0.015089896,0.0054531707,0.020153813,-0.026934808,-0.04257766,0.005856975,0.023398796,0.0029139358,-0.028870156,0.030121585,0.0027884294,0.0047328724,0.01893149,0.002391901,-0.0122596305,0.00605342,-0.046128225,0.0032959124,0.043508954,0.0037288193,0.030703643,0.017054347,-0.06222217,0.007450363,-0.043567162,0.010506175,-0.041559055,-0.026832948,-0.055062838,-0.0043254304,0.013249132,0.0049329554,0.0034141433,0.023544312,-0.037950285,0.04548796,0.0008317086,0.038328625,-0.020473946,0.016399529,-0.017374478,0.0019626322,-0.015817469,-0.04318882,0.03527281,-0.02812803,0.0005011169,-0.007901459,-0.009996873,-0.019979196,0.0022954976,-0.01029518,-0.005478636,0.007195712,0.04996982,0.011750328,-0.06804277,-0.018480392,0.024592018,0.0061807455,-0.033934075,-0.02118697,-0.030092482,0.020241123,-0.00067482534,0.034690753,-0.036204107,-0.006442672,0.026047166,0.037222713,0.0024100905,-0.10878694,-0.018305775,-0.009487571,0.00028034355,-0.000492477,0.03681527,-0.0287974,-0.027007565,0.03661155,0.0156283,0.043305233,0.049358655,0.01993554,0.02655647,-0.03876517,-0.04973699,-0.07333951,-0.055412073,-0.019222518,0.082827084,-0.023529759,-0.036873475,-0.028142583,-0.024140922,0.008549,-0.016646905,0.021710822,0.019760923,0.04307241,-0.02889926,-0.0147042805,-0.0025938032,0.020255674,0.018800525,0.015555543,0.0029812364,-0.028098928,0.008781824,0.0054531707,0.03672796,-0.00490749,0.008665413,0.028739193,0.021987302,-0.008119731,-0.02646916,0.020168366,-0.02665833,0.042810485,0.015468234,-0.025377799,-0.008781824,-0.01893149,-0.012223252,-0.021114212,0.011190096,-0.0023464279,-0.07444543,0.0036469672,0.015962984,0.016850626,-0.031285703,-0.015962984,0.009014648,0.019659063,0.006588187,0.00011868559,0.002370074,0.011146441,0.022103714,-0.008199764,0.0005534114,0.012034082,-0.00277024,0.014347769,0.00086354,0.012165045,-0.010273352,-0.03527281,0.029233944,0.0054095164,-0.014042188,-0.02002285,0.013118168,0.036262315,-0.05867161,0.030441718,-0.018436737,-0.01992099,0.0121213915,0.007479466,-0.03987108,-0.052181643,0.03303188,0.050057124,-0.016166706,-0.05497553,-0.025959859,-0.019993747,0.03143122,0.03201328,-0.03047082,0.029175738,0.0023191436,0.025741586,0.023486106,0.032362513,0.014486008,0.014544214,0.050377257,-0.017374478,-0.02050305,0.018131157,0.04735055,-0.047437858,0.02655647,-0.010149664,0.0258871,-0.019018797,-0.04327613,-0.013394646,0.012288733,-0.004510962,0.060999848,-0.0053149317,0.040598657,0.009945944,-0.031169292,-0.08020781,-0.052909218,0.017636405,-0.053665895,-0.06618018,0.05995214,0.0047183204,-0.027123978,0.024592018,0.006169832,0.022729427,0.03623321,-0.026294542,0.05517925,-0.025566967,0.034719855,-0.0019498997,0.027706036,0.026410954,-0.00036174094,0.0013923957,-0.020212019,-0.013001757,0.030441718,0.001754364,-0.053578585,0.014646075,-0.032217,0.024039062,0.032595336,-0.043130618,-0.05090111,-0.004627374,0.008090628,-0.010862688,-0.053986028,-0.0026174493,0.0147042805,0.01084086,-0.018407635,-0.009247472,-0.018320326,0.012747105,-0.031314805,-0.0053767757,0.034428824,-0.020546705,-0.060417786,0.043508954,-0.0060643335,0.02383534,-0.019047901,-0.027487764,-0.0390562,-0.0024046337,-0.010127837,0.044905897,0.019702718,-0.055324767,0.014486008,0.02109966,0.00022509336,0.043014206,-0.0028739192,-0.02939401,-0.032682646,-0.017621854,0.03349753,0.017709164,0.042141117,0.007879632,-0.034719855,-0.06757712,0.0056350646,-0.027225837,-0.019033348,0.005867888,-0.06222217,-0.019717269,0.034719855,-0.015802918,0.03789208,-0.029117532,0.015410028,-0.010557106,0.029015671,0.04118072,0.025188629,-0.04697221,0.011008202,-0.0054422575,0.00083625596,0.04735055,-0.011277405,-0.00605342,-0.02207461,0.024562916,0.03303188,0.0069010444,0.026541919,-0.017476339,0.03972557,0.029161187,0.038648758,-0.019659063,-0.02872464,-0.0439455,0.03448703,0.0040089353,-0.019513547,0.032682646,-0.025799792,-0.022962252,0.015220859,0.009007372,-0.002710215,-0.029583178,0.02157986,-0.05712915,-0.01386757,0.020124711,0.015759263,-0.008141559,-0.017389031,0.0037615602,0.049358655,-0.0013787537,0.037135404,-0.0011568435,-0.010018701,-0.004903852,0.019775474,-0.00805425,0.002910298,-0.014231358,-0.0234279,0.049358655,0.019513547,-0.019746372,-0.038212214,-0.014551491,-0.024431951,0.028157134,0.0006943789,0.005878802,0.016676007,0.030267099,0.007654084,0.0033177398,0.01084086,0.048980314,-0.014260461,0.06693686,-0.0017725534,-0.027764244,-0.032158792,-0.00023737118,-0.013598368,0.00017882416,-0.026789293,-0.017825576,0.020983249,-0.013743882,-0.0020754063,0.0013914863,0.028331751,-0.06763533,0.00020247034,-0.022132816,-0.011204648,0.005758752,0.0123978695,0.005856975,0.057100046,0.10319917,0.048194535,0.012215976,-0.09947398,0.053374864,-0.009305678,-0.021929096,0.07235001,-0.019207967,0.006075247,0.010884515,0.01778192,-0.064142965,0.0032122415,-0.05896264,0.043683574,-0.035301916,0.0134892315,-0.022103714,0.037164506,0.045778986,0.004365447,0.0014615153,-0.08416582,-0.070079975,0.024621122,0.025712483,-0.04333434,-0.0049547823,-0.06943971,-0.0040853308,-0.011452023,0.030179791,-0.006508154,0.020779528,-0.03856145,-0.017840127,-0.008643585,-0.031023776,-0.011415644,0.010608036,-0.02988876,0.016428633,-0.021929096,-0.013067238,0.016035741,-0.011401093,-0.03454524,-0.010913618,0.014515111,0.04560437,-0.0060570575,-0.025028562,0.03876517,-0.013263683,0.007388519,-0.020954145,-0.0037470087,-0.0063371737,-0.030005172,-0.012579763,0.009174715,-0.016646905,0.018102054,-0.018887835,-0.048572876,-0.0073121237,0.0014087661,-0.007966941,0.058380578,-0.017330825,-0.0031449408,-0.003990746,-0.020648565,0.0200083,-0.07141871,-0.050348155,0.013227304,-0.010324283,-0.01766551,0.0037433708,0.00889096,0.0092620235,0.02344245,0.0037833874,0.016734214,0.03556384,-0.026047166,0.05867161,0.030092482,-0.0053476724,0.00668641,-0.008250695,0.038445037,0.027458662,-0.039492745,-0.016748765,0.0030067016,0.020634012,-0.028753744,-0.04746696,0.025625175,0.0033541184,0.0023246005,0.030296203,-0.019047901,-0.011066408,0.058846228,0.017985642,-0.022452949,-0.02373348,0.010673518,0.039085303,-0.022685774,0.007646808,-0.010186043,-0.01078993,-0.01381664,-0.030267099,0.039696466,0.0023155059,-0.0007648627,-0.040424038,-0.0047983536,0.015773816,-0.011852189,-0.0016679645,-0.010513452,-0.009298402,-0.028957466,0.0011486582,0.0032977315,-0.0063298983,0.024242783,-0.022045508,-0.034341518,-0.0012714365,-0.027938861,0.014718832,-0.041733675,0.04618643,-0.041442644,0.012281458,0.018043848,-0.015671955,-0.0064899647,-0.008767272,0.011386541,-0.018378532,-0.0010386126,-0.03466165,0.0001614306,0.010877239,-0.0072866585,-0.013983982,0.034021385,0.010069631,0.023515208,0.013190926,0.015031689,0.01689428,0.0022718513,0.038124904,-0.006624566,0.030092482,-0.0143041145,0.008243419,0.0015097171,-0.007170247,0.027982516,0.009684017,-0.01147385,0.027225837,-0.027706036,0.0058933534,-0.0018453108,0.018480392,-0.012245079,-0.024097268,-0.020153813,-0.0145660415,0.0038743343,0.02402451,-0.019106107,0.011582986,0.0077704955,0.044993207,0.034690753,0.002482848,-0.0092620235,0.005878802,-0.0019844593,-0.015148101,-0.015846573,-0.002710215,0.036262315,0.0121213915,-0.041064303,-0.017811025,-0.000998596,-0.0054640844,0.014638799,-0.017811025,-0.030936468,-0.0011768518,0.0127980355,0.0050166263,0.0028266269,0.0032613527,0.002197275,-0.02949587,0.03437062,-0.012070461,0.018713215,-0.026629226,-0.03818311,-0.0068355626,0.021608964,-0.016297668,0.006871941,-0.02655647,0.022409296,-0.022525707,0.03457434,0.030616336,-0.01078993,0.00593337,-0.020328432,0.011000927,0.015875675,0.011844913,0.0077413926,0.030441718,0.054451674,0.010993651,-0.011044581,0.021870889,0.008301625,0.06408476,0.02275853,0.032624442,0.05331666,0.014558766,-0.01923707,0.012019531,-0.0121359425,-0.002224559,-0.020488499,0.03995839,-0.0053767757,0.017752819,0.009247472,0.010862688,-0.062047552,-0.017389031,-0.0003537831,0.0041835536,-0.041937396,-0.0058096824,-0.019586306,0.019149762,-0.020852285,0.032857265,-0.030674541,-0.013481956,0.019688167,0.012637969,0.011532056,-0.014267736,0.037251815,-0.029364906,-0.009407538,0.024039062,-0.0034450653,0.0003524189,-0.036378726,0.076540835,0.006042506,-0.017461788,0.016646905,0.0390562,-0.006449948,-0.03533102,0.012768933,0.010309731,-0.024824843,0.012768933,-0.026483713,-0.023849891,-0.028520921,-0.0065190676,-0.028069824,-0.017432686,-0.049649686,-0.017418133,-0.01494438,-0.008316177,-0.022452949,-0.04889301,-0.021987302,-0.033526633,-0.0020117436,0.024562916,-0.017418133,0.014900726,-0.031780455,0.024693878,-0.003823404,-0.00947302,0.010855411,0.0052967425,-0.013860295,-0.086086616,0.0039543672,-0.02558152,-0.015992088,-0.01484252,0.009516674,-0.012317836,0.021914544,0.0075958776,-0.008519897,0.005929732,-0.017389031,0.0030758213,-0.006242589,0.055906825,-0.008177937,-0.0076977382,0.008869133,0.029655937,-0.0034396085,-0.037193608,-0.026134476,-0.014435078,-0.0059188185,0.017563649,-0.013671125,-0.04659387,-0.0016925202,0.044207428,-0.019382585,-0.016428633,0.006133453,0.022540258,0.01523541,0.050260846,-0.027313147,0.021827236,0.017156206,-0.0010749913,0.0026174493,0.019004246,-0.010186043,-0.013758434,0.013023583,-0.0034505222,0.01152478,0.02891381,-0.006278968,-0.010018701,0.008912788,-0.07048742,-0.023573413,0.0036342347,0.0017607303,-0.022394743,-0.002537416,-0.006308071,-0.012950826,-0.050435465,-0.046128225,-0.032566234,-0.009829531,-0.018916937,-0.007835978,0.048369154,-0.018422186,-0.008112456,0.0015488242,0.014638799,-0.010397039,0.00096130784,-0.013743882,-0.010469797,0.03457434,0.049678788,0.0001662053,0.009567604,0.010098734,0.03553474,0.0058278716,0.0012041358,0.058555197,0.009829531,-0.008920063,-0.0030448993,-0.016719662,-0.014544214,0.008614482,0.04641925,-0.0058351476,0.039201714,0.010367936,0.013780261,0.031809557,0.028666435,0.032886367,0.0037651982,0.016283117,-0.01591933,0.001557919,0.039812878,0.003990746,-0.008214316,-0.034807164,-0.028855605,-0.015555543,-0.0008558095,0.014180427,0.021201521,0.03797939,-0.025814343,-0.011786707,-0.008330728,0.043305233,-0.0035923992,0.0038597828,0.015744712,-0.04013301,-0.007544948,0.033613943,-0.026672881,-0.007850529,0.001528816,-0.013962155,0.0022809461,0.008316177,0.039318126,-0.012223252,0.010331558,0.018116605,0.0012086831,0.01776737,-0.004707407,-0.017214412,0.023209626,-0.026701985,0.01718531,0.0018680475,-0.049184036,0.02383534,-0.0043763607,0.027211286,-0.004823819,-0.013176374,-0.0014587869,0.022482052,-0.00996777,0.003917989,-0.0060897986,-0.007388519,-0.013045411,-0.020983249,-0.019790027,0.015933882,-0.028098928,0.02558152,0.00776322,-0.022147369,-0.016545044,0.04336344,-0.0410352,0.0137511585,0.0059188185,-0.020095607,-0.019760923,-0.014216806,-0.03751374,0.018727768,0.01191767,0.03341022,-0.017607303,-0.014260461,-0.009218369,-0.025421454,0.0033031884,0.02157986,0.032158792,0.014507836,0.0017161664,0.005875164,0.027444111,0.016545044,0.00725028,0.015337271,0.06338629,0.007053835,0.019018797,-0.017840127,-0.014253184,-0.017738266,0.043887295,-0.0019335293,-0.0001833715,0.011946773,-0.020648565,-0.01299448,-0.0022172832,0.013314613,-0.0061007123,-0.013911225,0.03303188,-0.0066282037,-0.019673614,0.02764783,-0.020241123,-0.029583178,0.030761851,-0.00016916107,0.021565309,0.00690832,0.0007725932,0.020866837,-0.012143219,-0.006697323,0.025450556,0.043683574,-0.02323873,-0.06297885,0.009043751,0.016384978,0.019557202,-0.00328318,0.0076031536,-0.0068319244,0.0021245175,-0.015133549,-0.051745098,-0.00024464692,0.021943647,0.0077122897,-0.013802089,0.0066063767,0.026847498,-0.01347468,0.0020972334,0.0068028215,-0.0044891345,0.023893546,0.019746372,0.008752721,0.031664044,0.0041871914,-0.008869133,-0.008381658,0.028389957,-0.039405435,-0.0072757453,-0.018829629,-0.0072902967,-0.0023027733,-0.002482848,-0.020721322,-0.0063298983,0.02128883,-0.016719662,-0.017461788,-0.027007565,-0.0021881803,0.01983368,0.014122221,0.013169099,0.0048383703,0.010389764,0.009582156,0.00072257244,0.010622588,0.019906439,-0.017607303,0.0035050903,-0.014915277,-0.017985642,0.019062452,0.018669562,0.025377799,-0.0025337783,0.011859464,-0.04540065,0.015337271,-0.03748464,0.005685995,-0.03925992,0.028433612,-0.013089065,0.00014585596,0.04435294,-0.013307338,-0.00053704093,-0.029626833,0.012928999,-0.0059733866,0.02646916,-0.02128883,0.026687432,-0.030674541,0.023995407,-0.021070559,0.0061807455,-0.034225106,0.058089547,-0.001756183,-0.006751891,0.03303188,-0.031081982,-0.0068064593,0.007974217,0.0028175323,-0.028957466,0.025508761,-0.021608964,-0.015031689,0.019950094,-0.046622973,0.01308179,-0.015846573,0.01571561,0.0161085,-0.0037797496,-0.021026904,-0.026920257,0.0057842173,0.017898332,0.025028562,-0.009945944,-0.0066282037,0.011175544,0.018422186,-0.00971312,-0.015439131,-0.014529663,-0.032799058,-0.011110063,-0.05311294,0.029219393,-0.0055222907,-0.015453682,0.013249132,-0.010018701,0.009953219,0.01894604,0.0040853308,-0.035185505,0.013736607,0.036757063,0.008265247,-0.010455246,-0.01147385,0.0063262605,-0.027094875,-0.020066505,-0.013336441,0.09656369,-0.0153954765,0.0147042805,0.02997607,-0.04569168,0.015162652,0.0075594992,0.020430293,0.007930562,0.015366374,-0.030325305,0.003079459,-0.032682646,-0.0079087345,0.012143219,0.0351564,0.012368767,0.017752819,0.0134892315,-0.0111537175,-0.001455149,-0.034428824,-0.00468558,0.0004888391,0.0070865755,-0.0106298635,-0.020764977,0.0025865273,0.031605836,0.017752819,-0.030820057,0.020139262,0.00121414,-0.023515208,-0.026512815,0.010724449,0.013118168,-0.04324703,0.029044773,-0.025945308,0.012812587,-0.035680253,-0.011408368,0.02657102,-0.013714779,-0.016646905,-0.00247921,-0.0062826057,-0.003426876,-0.007588602,-0.025959859,-0.013598368,0.03690258,-0.022511154,-0.0025355972,0.0028502732,0.031693146,0.0013678401,0.032624442,-0.0096767405,-0.039027095,0.025305042,-0.021929096,0.004656477,0.04641925,0.04560437,-0.009553053,0.007243004,-0.0034377896,0.007981492,-0.03105288,-0.014988035,0.014064015,-0.0038706963,0.003397773,0.0019771836,-0.020866837,-0.020430293,0.010528003,0.02236564,0.02782245,-0.00719935,-0.010433419,0.005504101,-0.031984176,0.01600664,0.051745098,-0.0021663532,-0.029612282,-0.0114447465,0.009793153,0.010135113,0.0049256794,-0.014988035,-0.014034912,0.012907172,0.01186674,-0.0030376236,-0.023005906,-0.0060606957,0.0005024811,0.018785974,0.0027775157,0.0078941835,-0.03885248,-0.0022372915,0.0044709453,0.0070138182,0.0016188533,-0.036291417,-0.013722056,-0.012776208,-0.018625908,0.011772156,0.008687239,-0.004128985,0.040249422,-0.01679242,0.0312566,-0.011823086,-0.017898332,0.030237997,-0.02920484,0.0026629227,0.011379265,0.0078068743,-0.0025610623,0.0035469257,0.0051512276,-0.0071447818,0.000013030973,-0.00083398225,-0.010811757,0.011881292,-0.010608036,0.039201714,-0.0027193096,-0.03789208,-0.014282287,-0.02274398,0.042723175,0.007359416,-0.0038706963,0.016457735,-0.026934808,0.023413347,-0.022511154,0.0025301403,-0.04170457,0.00656636,0.004885663,0.002715672,0.0073666917,-0.0044091013,0.023078663,-0.038270418,0.022904046,0.0035614772,-0.009007372,0.010993651,-0.0027484128,0.021216072,-0.009101957,-0.004147175,0.010367936,-0.0042926897,-0.011415644,0.028040722,0.02040119,-0.0056532538,-0.027953412,-0.0004399552,-0.013532885,0.014078567,0.0020044676,-0.02481029,-0.0095385015,-0.0016679645,-0.003936178,-0.010317006,-0.045633473,-0.020808632,0.01020787,0.04228663,0.011313784,-0.0051184865,-0.008563552,0.007344865,0.006242589,-0.0059006293,0.015890228,-0.03114019,-0.017636405,0.01944079,-0.005758752,-0.012812587,-0.020386638,0.039521847,0.0010495263,-0.01718531,-0.039405435,0.0018134795,0.01718531,-0.035127297,-0.0063262605,-0.02773514,0.013503782,0.022613015,0.013962155,-0.018320326,-0.007588602,0.0022882218,-0.002510132,0.011190096,0.001171395,-0.0045145997,-0.023718929,0.0032649906,-0.016734214,0.045167826,0.0039143506,-0.0029575904,-0.015249962,-0.016181257,-0.02508677,0.01786923,0.017432686,0.003508728,-0.0033559373,0.00162431,0.011110063,-0.0021790857,-0.008010595,-0.011750328,-0.004099882,-0.010520727,-0.016297668,0.018393084,-0.022816736,0.029859658,-0.001999011,-0.0010540736,-0.011160993,-0.04542975,-0.055703104,-0.00057614804,0.06286244,0.006278968,-0.03524371,0.027575074,-0.00009231101,0.040976997,0.02060491,0.00028102566,0.016137602,-0.024853945,-0.001200498,-0.01885873,-0.022307435,-0.0142895635,0.01323458,0.008076077,0.01865501,0.0069847153,0.028972017,0.0065554464,0.0034141433,0.02265667,0.027123978,-0.023544312,0.027298596,0.011750328,0.0019371671,0.03143122,0.0030176153,-0.032217,0.030179791,-0.005929732,0.025130423,-0.02539235,0.009014648,0.03309009,0.0019444429,-0.0016725119,-0.03818311,0.0068646655,-0.0020954146,-0.021943647,0.023515208,0.012368767,-0.043625366,-0.017534545,-0.017709164,-0.019790027,0.0077122897,-0.020153813,-0.039172612,-0.041238923,-0.004110796,-0.012303285,-0.0042162943,0.00918199,0.041675467,-0.029132083,-0.011000927,0.018422186,0.0070065423,-0.03643693,-0.013263683,-0.010280628,-0.014929829,0.032740854,-0.027444111,0.011328335,0.004056228,0.009865911,0.018203914,0.04988251,0.007821426,0.0030030638,0.033904973,-0.0008844578,-0.001171395,0.029452216,0.04627374,0.02988876,-0.004772889,0.011764879,0.048980314,0.0018935127,-0.0022936787,0.0078941835,0.020764977,0.004845646,0.030296203,0.0024992183,0.02041574,-0.013380095,-0.0175782,-0.0038015768,-0.014049464,0.020212019,0.0037433708,-0.028826501,-0.01768006,0.029466767,-0.013823915,0.0027720588,0.012637969,0.00490749,0.024562916,0.022380192,-0.0049766097,0.025785241,0.028477266,0.043683574,0.005631427,-0.058846228,0.0058096824,-0.004947507,0.000019866195,-0.023311486,0.013445577,-0.0073121237,0.02207461,0.026818397,-0.009742223,0.0081706615,0.006042506,-0.0039580055,0.019309828,0.013554713,-0.007042921,0.022962252,-0.005213071,0.029030222,0.023093214,0.006759167,-0.013401923,0.0032613527,0.050028022,0.028433612,-0.03346843,-0.020735873,-0.013292787,0.009458468,0.021245176,-0.023224179,0.020459395]},{"id":"interface-UserFlagsString","type":"interface","source":"main","text":"Interface: UserFlagsString","meta":{"url":"/docs/typedefs/UserFlagsString"},"embedding":[-0.017754894,-0.0079861935,-0.051790956,0.03497644,0.010028358,-0.021319909,-0.019747933,-0.007059851,0.058443777,-0.0031018432,-0.035341363,-0.0015930281,0.00351589,0.042892456,0.013151254,-0.051285677,-0.037474755,0.0253902,-0.012688083,0.030092089,0.010224854,0.040085357,0.027551666,0.055468254,0.010835398,0.04676625,0.0011184531,-0.013326697,-0.017249616,0.000105978914,0.009782736,-0.03955201,0.04508199,-0.031664062,0.045587268,-0.009017802,0.03068158,0.016856622,-0.020983057,-0.0052106753,-0.04617676,-0.007087922,0.018737378,0.013635478,-0.02209186,0.031046502,0.053812068,0.050611977,-0.010835398,-0.007523022,-0.020000573,-0.023144523,0.01807771,0.019804075,-0.013860046,0.024576142,0.012470532,-0.0082247965,-0.020295318,0.026920069,-0.017782966,-0.031579852,-0.021712903,-0.031243,-0.0135021405,0.0420784,-0.027355168,0.05709637,0.032646548,0.03014823,0.029446457,-0.021544477,-0.026934104,0.019088266,0.015916245,0.0010000286,0.012070521,0.01876545,0.009256405,-0.0050703203,-0.010624865,0.02741131,-0.030541224,-0.046682037,-0.0073756496,0.019902324,-0.069728315,-0.015032009,-0.035397504,-0.04190997,-0.040590636,0.011909112,-0.047748733,-0.027930625,-0.031944774,-0.00073423155,-0.016337309,-0.013888117,-0.021207625,-0.03183249,0.06512467,0.0049825986,-0.01169858,0.0041685402,0.02377612,-0.008519542,0.01879352,0.0108985575,-0.02480071,0.009635364,-0.05139796,0.045138136,-0.0014833758,0.0076282886,0.032000914,0.016744338,-0.005680864,0.016940836,0.067651056,-0.01185297,-0.015453074,0.0013009144,0.017418042,-0.012954757,0.00945992,0.00038860762,-0.03873795,-0.003954499,-0.045166206,-0.0067931768,0.046653967,-0.008512524,0.022751529,0.035481717,-0.025376165,0.002007075,-0.032618478,0.031720206,-0.062261432,0.012765277,-0.021839222,-0.0064212363,0.026863927,0.0038843218,0.00088423584,0.00566332,-0.058949057,0.056731448,0.011031895,0.05195938,-0.02398665,0.030541224,-0.031748276,0.014849548,-0.0023351545,-0.029193819,0.0173619,-0.026611287,0.0006364217,-0.01141787,0.002168483,-0.047159243,-0.010210819,0.003394834,-0.0020526904,-0.002143921,0.04359423,-0.019130372,-0.05911748,-0.0135302115,0.01449866,-0.019467223,-0.020814631,-0.028548185,-0.04036607,0.00787391,-0.009789754,0.014119702,-0.069896735,-0.023186628,0.032590408,0.050527763,0.012702118,-0.10846626,-0.016112741,-0.019397046,0.026527075,-0.017291723,0.03129914,-0.039664295,0.005972101,0.032562334,0.040843274,0.028014837,0.019565472,-0.005796657,0.038036175,-0.054598052,-0.012702118,-0.053138364,-0.016730303,0.009572204,0.05019091,-0.052885722,-0.021081304,-0.0436223,0.0024298942,0.023944546,-0.025825301,0.044604786,0.022793634,0.03814846,-0.03469573,-0.03407817,-0.016323274,0.025628803,0.020646205,0.0057019177,-0.0023386634,-0.04962949,-0.005800166,0.017754894,0.04741188,-0.024772638,-0.008694986,0.038288817,0.011867006,0.032871116,-0.023579622,-0.011193302,-0.011663492,0.02694814,0.0078598745,-0.06854933,-0.042527534,0.009270441,-0.011017859,-0.016940836,0.01449866,-0.004150996,-0.051790956,0.022204144,0.022204144,0.029614883,-0.02007075,0.007930052,0.00917921,0.04390301,-0.016716268,0.009838878,0.02181115,0.017782966,0.018849662,-0.018751414,0.0068914252,0.043173164,0.003628174,0.043650374,0.038176533,0.0041088895,0.007979176,-0.06282285,0.030569296,-0.0066142245,-0.007817768,-0.0021193589,0.037137903,0.03786775,-0.046289045,0.014400412,-0.018526847,-0.0055650715,0.04016957,0.052296232,0.0043334574,-0.04269596,0.038766023,0.057882357,-0.013565301,-0.02953067,-0.057461295,-0.010400298,0.013509159,0.03699755,-0.012947739,0.029193819,0.0037685288,0.018147888,0.041741546,0.0070563424,-0.0074879336,0.01677241,0.054598052,-0.01534079,0.0010596794,0.027242884,0.027172707,-0.0081967255,0.031018432,0.014274092,0.019242655,-0.008175673,-0.029502599,-0.020590063,-0.026162153,-0.010273978,0.058668345,-0.020561991,0.0069054607,-0.017600503,-0.0169268,-0.08196726,-0.046289045,0.0063896566,-0.058612205,-0.025025278,0.040085357,0.065236956,-0.031158786,0.02679375,-0.0033614996,0.032534264,0.02377612,-0.03528522,0.07489337,-0.012140699,0.056563023,0.027832376,0.03441502,0.03730633,0.0012614396,-0.019986536,-0.013593371,-0.020084785,0.046906605,-0.016519772,-0.052633084,0.018597024,-0.030821934,0.032506194,0.03332025,-0.025011241,-0.035369433,-0.020842701,0.011221373,-0.01920055,-0.059398193,0.025895478,0.010449422,0.028941179,-0.014891654,0.023902439,-0.0018035604,-0.0041545047,-0.025853371,-0.048057515,0.04039414,-0.0073265256,-0.027565701,0.068773896,-0.011186285,0.019158443,-0.008386205,-0.03506065,-0.040281855,-0.038232673,-0.0011395063,0.03581857,0.012098592,-0.06899846,-0.0030316657,0.0071510817,0.002542178,0.014821477,0.025249846,-0.010358191,-0.03531329,-0.017853143,0.044099506,-0.0041123983,0.030485082,0.019593542,-0.01782507,-0.01835842,0.010638901,-0.021053234,-0.011017859,0.021867292,-0.032309696,0.0031527218,0.03155178,-0.002915873,0.0075089866,-0.021993611,0.0012605623,0.021993611,0.021011127,0.049180355,0.027130602,-0.054036636,0.02694814,-0.011249444,0.011249444,0.022456784,-0.009712558,-0.021011127,-0.029081535,0.05080847,0.04561534,0.018007534,0.035537858,-0.031916704,0.04589605,0.022442747,0.04306088,-0.011214356,-0.035481717,-0.043987222,0.018568952,0.011958237,-0.014112685,0.031664062,0.0054071723,-0.028197298,0.023018202,0.018582989,-0.026751643,-0.05024705,0.021698866,-0.07045816,-0.014442518,0.009923091,-0.008849376,0.02324277,-0.010084499,-0.032085128,0.052913796,0.022583103,0.0642264,0.008645861,-0.009530097,0.011333657,0.016688196,-0.016379416,0.02124973,-0.03099036,0.0070282714,0.03851338,0.015972387,-0.030569296,-0.054541912,0.004940492,-0.07275998,0.03668877,0.00018662815,-0.0050948826,-0.0028334144,0.038036175,0.00637913,-0.012610887,0.026611287,0.03180442,-0.03407817,0.06299128,0.006431763,-0.020449707,-0.03180442,0.01817596,0.014919725,0.0058142017,-0.036239635,-0.007866892,0.012891597,0.023383126,0.0076774126,-0.015312719,0.02436561,-0.06798791,-0.0013202132,-0.0436223,-0.0017509273,0.018779485,-0.010316085,-0.010400298,0.016042564,0.12171576,0.067538776,0.0029088552,-0.057545505,0.0043510017,-0.031355284,-0.014526731,0.055496324,-0.017909285,0.006375621,0.009109032,0.025783194,-0.05364364,-0.014639015,-0.053755924,0.04502585,-0.031102644,0.030569296,-0.006982656,0.057545505,0.04011343,-0.0060633314,-0.013916188,-0.08241639,-0.06916689,-0.026246365,-0.007614253,-0.026527075,-0.017839108,-0.050331265,0.006242284,-0.0067756325,0.044604786,-0.0019404064,-0.006049296,-0.025025278,-0.01076522,0.00031689502,-0.046653967,0.0036211563,0.0009061663,-0.02467439,-0.013003881,-0.0073545966,-0.02707446,0.012070521,-0.024197184,-0.0056948997,-0.026976211,-0.008301992,0.0056563024,-0.00781075,-0.01039328,0.043762654,-0.0097687,-0.017965427,-0.027355168,0.025825301,-0.0010079236,-0.027116565,0.008702003,-0.022035718,0.0056177047,0.026176188,-0.026583217,-0.041938044,-0.012252982,0.0173619,-0.028351689,0.044548642,0.004284333,-0.004642238,-0.0073195077,-0.015635535,0.013712673,-0.04016957,-0.065461524,0.008800251,-0.011803847,-0.018611059,0.0029649972,0.015677642,0.015228506,0.024491929,0.005112427,0.016533807,0.062935136,-0.01076522,0.09499219,0.011102072,-0.024562106,0.028323617,0.00753004,0.006894934,0.021390086,-0.022007648,0.012596852,0.00070133584,0.020463744,-0.007614253,-0.048366297,0.01981811,-0.009733612,-0.006326497,0.017319795,-0.016533807,0.003684316,0.038906377,0.026063904,-0.01160735,0.010617848,0.003277287,0.011242427,-0.029811379,0.021993611,-0.013789868,-0.022105895,-0.003789582,-0.0017930338,0.040843274,0.0040878365,0.0014895163,-0.052408516,0.012014379,0.02953067,0.0017886477,0.039973073,-0.033348322,-0.040085357,-0.036660697,0.024127007,-0.018849662,-0.013144236,-0.012989845,-0.0136003895,-0.04875929,0.006351059,-0.013495123,0.012147716,-0.0223445,0.039916933,-0.052969936,-0.0002163439,0.02797273,-0.018695273,-0.04530656,-0.022877848,-0.004073801,-0.021600619,-0.017221546,-0.032309696,0.0038036176,0.002389542,-0.00027983257,-0.023060309,0.044885494,-0.021726938,0.03410624,-0.000010930959,0.030737722,0.016547842,-0.01807771,0.018597024,-0.028618364,0.03528522,-0.0026649886,0.022765564,0.003077281,-0.011410853,0.01564957,-0.008940606,-0.015551322,0.031327214,-0.033151828,-0.0051510246,0.0077054836,-0.00032698305,-0.00049124216,-0.033713244,0.0012114382,0.0034018517,-0.011642438,0.013579336,-0.025600733,0.0013860046,0.019691791,0.061194733,-0.009109032,0.0018877733,-0.008449364,-0.016449593,-0.0109827705,-0.032871116,-0.018021569,0.03503258,0.03674491,0.030737722,-0.03986079,-0.031944774,0.022316428,0.004129943,0.016225025,-0.013242484,-0.012091574,-0.009909055,-0.00057370064,0.0013553019,0.014014436,-0.00613,-0.003450976,-0.014568838,0.015719749,-0.015354825,-0.001709698,-0.02896925,-0.009537115,0.019733898,-0.024393681,-0.006951076,-0.010203801,-0.014961831,0.0014789897,-0.031355284,0.03680105,0.0173619,-0.021376051,-0.0031579852,-0.030513154,0.03447116,0.0055264737,0.014267075,-0.0075160046,-0.011445941,0.056591094,0.029614883,-0.007396703,0.0062773726,0.011291551,0.054289274,0.025291951,0.0061931596,0.055440184,0.017404007,-0.0109546995,0.023158558,0.0018211048,0.004986108,-0.010596794,0.050555833,-0.019804075,0.015635535,-0.0005074707,-0.007635306,-0.046878535,-0.023691906,0.005884379,0.011972273,-0.015832031,0.009754665,-0.026877962,0.032309696,-0.029811379,0.034274664,-0.03640806,-0.02405683,-0.0021351487,0.011621385,-0.0039755525,-0.008049353,0.020898843,-0.024618248,0.0041580135,-0.0074107386,-0.00040944153,0.03786775,-0.01754436,0.044324074,0.0110529475,-0.010217836,-0.01590221,0.045755696,0.00039080065,-0.014709193,-0.006491414,-0.005659811,-0.013123183,0.0052738353,-0.032028988,-0.0109406635,-0.022849776,-0.0021369033,-0.019032124,-0.06310356,-0.034751873,-0.01185297,-0.013719691,-0.006712473,-0.019776005,-0.029895592,0.0015640799,-0.06939146,0.02178308,0.03188863,-0.0034650115,0.014267075,-0.00852656,0.02663936,0.001359688,-0.008638844,0.009544133,-0.0022298885,0.010723114,-0.058949057,-0.022105895,0.0020842701,-0.011382782,-0.04154505,0.0014921479,-0.0068493187,0.048029445,-0.00398257,0.00041141527,0.016309239,-0.007803732,0.0003877304,-0.0077896966,0.03042894,-0.0025369148,0.032000914,-0.011628403,0.026218295,-0.011649456,-0.018316314,-0.00019967677,-0.018779485,0.038232673,0.04244332,-0.0068773897,-0.037980035,0.02106727,0.032225482,-0.03410624,-0.020618133,-0.010589777,0.021137446,-0.014849548,0.06484396,-0.012428426,0.0011272252,0.0069089695,-0.018681236,-0.024463858,-0.0011588051,0.0013079322,-0.024253326,0.01534079,-0.016421523,0.019958466,0.002442175,0.0012079293,-0.024098935,-0.0027737636,-0.03783968,-0.016351346,0.0023579623,0.015284648,-0.020267246,-0.014526731,0.0059966627,-0.022863813,-0.041769616,-0.009123068,-0.01197929,-0.0013219677,-0.010161694,0.015537287,0.05473841,-0.030906148,0.008175673,-0.006737035,0.010252925,-0.017965427,0.0160566,-0.005193131,0.0006605452,0.03758704,0.056085814,0.021979576,0.003873795,0.0049545276,0.012575799,-0.0016298712,0.0329834,0.06080174,0.023018202,-0.019032124,0.0051545333,-0.0036983516,-0.016828552,0.012140699,0.03674491,-0.0018842644,0.054626126,0.0173619,0.019453188,0.0077125016,0.012281053,-0.011754722,0.017909285,0.043397732,-0.012428426,-0.0081546195,0.019551437,-0.0044281967,-0.014610944,-0.032786902,-0.03671684,0.011572261,0.003543961,0.027425347,0.013045987,0.012898615,-0.027776234,-0.0054036635,-0.009880984,0.032169342,-0.029418387,0.020042678,-0.006603698,-0.032197412,0.0025755123,0.037194047,-0.029923663,0.001560571,-0.0055650715,-0.016575914,-0.0017281197,0.009354654,0.03500451,-0.029951734,0.0064493073,0.029362245,-0.012716154,0.007894963,0.007087922,-0.027579736,0.005659811,-0.016632054,0.005494894,-0.016168883,-0.045166206,0.009368689,-0.0010763466,0.025656875,-0.015817996,-0.008484453,-0.0015149557,0.007698466,0.006575627,-0.0001993478,0.027551666,-0.016912764,-0.03245005,-0.022709422,-0.035594,0.0133477505,-0.021418156,-0.0036632628,-0.011909112,-0.011249444,-0.01748822,0.051201466,-0.017937355,-0.00065791357,0.01807771,-0.031018432,-0.016660126,-0.0088985,-0.019593542,0.020239176,0.017291723,0.03129914,-0.0022895392,0.004073801,-0.011944202,-0.028478008,0.002050936,0.039159015,0.037109833,-0.015523251,-0.0011763495,0.026246365,0.03977658,0.009003767,0.015003938,-0.010709078,0.06254214,0.017684717,0.025179667,-0.040618706,-0.025727052,-0.0021246222,0.026990246,0.027916588,0.0038948483,-0.0034176416,-0.010540652,-0.013151254,0.021755008,-0.0037439668,-0.0015772381,-0.00448083,0.058331493,-0.011459977,-0.030625438,0.014442518,-0.012196841,0.012428426,0.00047896107,0.029614883,0.025193704,0.0073756496,0.00046755723,0.02953067,-0.013340733,-0.010224854,-0.008561648,0.04875929,-0.010042393,-0.0373344,-0.0039474815,-0.0071230107,0.012407373,0.03149564,0.0110108415,-0.024632284,-0.03901866,-0.005596651,-0.04016957,0.0011596823,0.025881443,0.017221546,-0.010435387,0.012154734,0.03983272,-0.0033895706,0.021305872,0.024730531,0.022779599,0.009951162,0.012624923,0.006544047,0.006319479,0.009866949,-0.009516062,0.0010824872,-0.011684545,-0.0043510017,-0.014456554,-0.007182662,-0.016365381,0.005687882,-0.008301992,-0.03677298,0.008428311,0.0071791527,0.0007947596,-0.007908998,-0.0077896966,0.0016307484,-0.006322988,0.03354482,0.022681352,0.011361728,0.020533921,-0.00027391134,0.013481088,-0.009740629,0.0019684774,-0.0019649686,0.001979004,-0.000030510742,0.010421351,0.024912994,0.009319565,0.016533807,0.012400355,0.013074058,-0.037165977,0.03096229,-0.012309124,0.017586468,-0.036576487,0.00787391,0.0034948369,-0.0035808042,0.011452959,0.0026614796,-0.020519886,-0.021684831,-0.014961831,-0.0019193531,0.02579723,-0.015368861,0.02651304,-0.050078627,0.005887888,-0.03070965,0.021137446,-0.031776346,0.061307017,0.02766395,-0.005438752,0.040029217,-0.03416238,0.0031018432,0.00027829743,0.007361614,0.010912593,0.021937469,0.009221316,-0.011593314,0.004179067,-0.03129914,0.02651304,-0.011586296,0.025404235,0.016140813,0.00013969697,-0.028885037,-0.02825344,0.015046044,0.02293399,0.01449866,-0.011775776,0.011445941,-0.0035667687,0.027116565,-0.0034141329,-0.007691448,-0.009059909,-0.0019983028,0.016870659,-0.038288817,0.0169268,-0.0064843963,-0.024169113,-0.0029106096,-0.016154848,0.023439268,0.025221774,0.010365209,-0.01835842,0.013677584,-0.0009465183,0.0169268,-0.003217636,0.018133853,0.020716382,-0.030372798,0.0006886162,-0.0010921365,0.09426235,-0.022667315,0.001717593,0.015972387,-0.018035604,-0.0005723848,0.011867006,0.03042894,-0.0015675888,0.0106038125,0.010140641,-0.0135442475,-0.010989788,-0.02019707,0.017979462,0.030092089,0.0046562734,0.019944431,0.036520343,-0.0014517959,0.007256348,-0.014947796,0.001202666,-0.008547613,0.011088037,0.0020369005,-0.01185297,-0.00030768424,0.034864157,0.01723558,-0.021670796,0.0027895535,0.021235695,-0.019986536,-0.02296206,0.0027649915,0.015467109,-0.021137446,0.020870773,-0.020646205,-0.018414563,-0.035397504,-0.0016746094,0.013137218,-0.016786445,-0.01720751,0.021839222,0.009670452,0.017460149,-0.047299597,-0.020590063,-0.026021797,0.025544591,-0.030737722,-0.0001357495,-0.008203744,0.027958695,0.013719691,0.011993325,-0.030765792,-0.018414563,0.04213454,-0.0133477505,0.002140412,0.04682239,0.07348982,-0.0048878593,0.009824842,-0.023439268,0.04870315,-0.01574782,-0.007670395,-0.0041615227,0.02063217,0.020463744,0.003849233,-0.021165518,-0.028421866,0.0009807298,0.01353723,0.02983945,-0.024281397,-0.018877733,0.018877733,-0.032478124,0.01677241,0.02738324,-0.017432079,-0.0038913395,-0.027720092,0.03245005,0.00020472077,0.017572433,-0.0031000888,-0.01384601,0.006498432,0.024127007,0.015551322,-0.02178308,-0.006572118,-0.008793234,0.01960758,0.009487991,-0.003965026,-0.017698752,-0.015032009,-0.005144007,0.013060023,0.0071054664,-0.032899186,-0.0059299944,-0.008666915,0.017109262,-0.0046668,0.022639245,-0.01807771,0.026162153,-0.021432193,0.029137677,-0.014224969,0.00029715762,0.016632054,0.01792332,0.007284419,0.0032597424,0.014105666,0.017740859,0.0055089295,0.0031404407,0.013445999,-0.004838735,-0.030035947,-0.019663721,0.013389857,-0.0013561791,0.020435672,-0.0111090895,-0.05072426,0.011031895,-0.009600275,0.036913335,0.020463744,0.0061931596,0.016042564,-0.019060194,0.025628803,0.012077538,-0.0050948826,-0.048871573,-0.009796771,-0.005793148,-0.0029421896,0.016758375,-0.011895077,0.00303342,-0.03792389,0.016758375,0.009073944,-0.01789525,0.018091746,0.009186228,0.013838992,0.008421293,-0.03152371,-0.006000172,0.012119645,-0.008294974,-0.0015903964,0.004010641,0.004526445,-0.02797273,-0.016716268,-0.0076774126,0.017530326,0.006838792,-0.032085128,-0.0021369033,0.009221316,-0.014168827,-0.02551652,-0.048001375,-0.012940722,0.014203915,0.043229308,0.021755008,-0.011319622,-0.0021018146,-0.0003059298,0.021109376,0.0097687,0.01646363,-0.043145094,-0.022540996,-0.011817882,-0.0042948597,-0.006235266,-0.032506194,0.023818225,0.029446457,-0.012337195,-0.031383354,0.005821219,0.03870988,-0.013389857,0.015074115,-0.01894791,0.019144408,0.01879352,0.018372456,-0.013368804,0.0039404635,0.0013298626,0.014049524,0.00952308,-0.013874081,-0.0010342401,-0.03070965,0.014835512,-0.018442633,0.033657104,0.01033012,-0.012154734,-0.011368747,-0.019495295,-0.0045229364,-0.003310621,-0.00924237,-0.0013035461,0.010526617,-0.017712787,0.015326754,0.025039313,-0.014919725,-0.008301992,-0.027874483,0.008203744,-0.034246594,0.03842917,-0.012091574,0.01185297,0.006322988,-0.010077481,-0.012526674,-0.033432536,-0.0614193,0.023186628,0.041039772,-0.0045755696,-0.026456898,0.041376624,0.016702233,0.038569525,0.032478124,0.016098706,0.02924996,-0.026091974,0.0030193846,-0.0033036033,-0.020337423,-0.018723343,-0.024505964,-0.009782736,0.042808242,-0.016603984,0.026091974,0.016168883,0.004779084,-0.0019807585,-0.0033229021,0.009509044,0.008007247,-0.016870659,-0.0010035374,0.02707446,0.010217836,-0.02520774,0.034302738,0.013881099,-0.0036667716,-0.017039085,0.004147487,0.029446457,0.0069651115,0.00009139516,-0.006958094,0.03407817,-0.013923205,-0.0054913852,0.006737035,0.003338692,-0.05330679,-0.015186399,-0.006122982,-0.028449938,0.019481258,-0.016126778,-0.011277515,-0.024253326,-0.013481088,0.0023983142,0.014849548,-0.007916016,0.017137332,-0.010652936,-0.019242655,0.021965541,0.013060023,-0.017165404,-0.017474184,-0.014161808,-0.008940606,0.013354768,-0.042611744,0.035762426,0.008547613,0.012098592,0.026976211,0.04819787,0.026863927,-0.007119502,0.017165404,0.018470705,0.019495295,0.0075651286,0.033657104,0.014470589,-0.016407488,0.016996978,0.026288472,0.01664609,-0.01390917,0.023649799,0.008968677,0.00017577257,0.03390974,-0.005596651,0.009003767,-0.011347693,-0.0031123697,-0.005558054,-0.010666972,0.019593542,-0.003849233,-0.02308838,-0.00017281197,0.038541455,-0.015228506,-0.0097687,0.006982656,-0.015074115,0.008800251,0.01319336,-0.009284476,0.027874483,0.019242655,0.02924996,0.028730648,-0.027130602,0.034920298,-0.026120046,0.0055545447,-0.017712787,0.015396932,-0.004372055,0.025053348,0.028351689,-0.006768615,0.006680893,0.015298683,0.010273978,-0.009410796,0.013993383,-0.001428111,0.011537172,0.00025834073,0.035116795,0.012526674,0.0106880255,-0.021558512,-0.0011833672,0.04926457,0.01577589,-0.052324306,-0.006210704,0.010463458,0.003591331,-0.014119702,-0.0016667143,0.0054633142]},{"id":"interface-VideoPlayOptions","type":"interface","source":"main","text":"Interface: VideoPlayOptions\nDescription: Options for video playback via {@link LiveKitRtcConnection.playVideo}.\nProperties: height: number, loop: boolean, maxFramerate: number, resolution: \"480p\" | \"720p\" | \"1080p\" | \"1440p\" | \"4k\", source: \"camera\" | \"screenshare\", useFFmpeg: boolean, videoBitrate: number, width: number","meta":{"url":"/docs/typedefs/VideoPlayOptions"},"embedding":[-0.0383754,-0.018569468,-0.0020781055,-0.023447886,-0.022852134,-0.017715182,0.01937879,-0.06074419,0.047345396,0.009447722,0.017198114,-0.02690999,-0.015927928,0.008823869,0.008795768,-0.03983668,-0.044130586,0.042264648,0.01991834,0.024234729,-0.013410033,-0.030484501,0.0041309195,0.008363005,-0.011167534,-0.038892467,0.0036700552,0.052516073,0.0018153565,-0.0018392428,0.038038183,-0.025830893,0.020412926,-0.043163896,-0.026685178,-0.058810808,0.035250515,-0.012173567,-0.020716421,-0.0013313083,0.03102405,-0.03988164,-0.060294565,0.008525994,-0.010234564,0.04511976,0.0133875515,-0.0033440778,-0.041095626,0.008778906,-0.045704268,0.024796758,-0.04532209,0.056472763,0.022323826,0.007463757,0.01486007,-0.029562771,-0.0021399288,-0.0029618975,0.007407554,-0.051616825,-0.0019839655,-0.01672601,0.015759317,-0.008621538,-0.096938916,0.04379337,-0.0025909578,0.05242615,0.038869984,-0.011723943,-0.017018264,0.031698484,-0.027921645,0.034216378,-0.017209355,-0.033047356,0.02198661,-0.04273675,0.008947516,0.039544422,-0.051976524,-0.02578593,-0.00034916107,-0.004914951,-0.049233817,-0.0073401104,-0.04197239,0.016253904,-0.03783585,-0.026954953,-0.07962839,-0.005513513,-0.031878334,-0.021559466,0.052605998,-0.0673087,0.032822546,0.074772455,-0.0033496981,0.0053982968,-0.06452103,-0.012274733,0.03145119,0.018917926,-0.014163153,0.042174723,0.0029618975,0.009453342,-0.033159763,0.024189766,-0.017085709,0.040173896,0.029450366,-0.029832546,0.016512439,0.0035295477,0.015939167,-0.04685081,-0.034216378,-0.03230548,0.036194723,0.0075649223,0.0041871225,-0.009138606,0.027764276,0.017231837,-0.039566904,-0.011274319,0.031091493,0.028528636,-0.002745516,-0.0044849985,0.007272667,0.035317957,-0.019434992,0.028258862,0.014972476,-0.001899661,0.012049921,-0.025898337,0.05395487,-0.019648565,-0.005603438,0.035812546,-0.004080337,0.0009463178,-0.03653194,0.011308041,-0.004024134,-0.00046121576,-0.02255988,0.024189766,-0.074232906,-0.030979088,0.004420365,0.019963302,-0.044287954,0.031900816,0.028730968,0.012713116,0.020469127,0.013039093,-0.020469127,-0.0007085089,0.01787255,0.039274648,-0.04945863,0.059575167,0.061148852,-0.02013191,-0.050852463,0.019322587,-0.001128275,0.0063340766,0.03572262,-0.031900816,-0.031855855,0.0139608225,-0.0031305065,0.006491445,-0.03817307,-0.030551944,-0.024909165,0.008531613,-0.04914389,-0.00884635,0.03437375,-0.016119016,-0.005533184,0.024909165,-0.004116869,-0.0032035704,-0.02182924,0.039072316,0.0009617736,-0.018333415,-0.0034508635,-0.028528636,0.024594428,0.021177286,0.06443111,-0.06209306,-0.022919578,0.01749037,-0.022604842,-0.008621538,-0.03327217,-0.03952194,0.043411188,0.048064794,0.029427884,-0.020356722,-0.02517894,0.034081493,0.02466187,-0.017209355,-0.019356309,0.016220182,-0.04118555,0.0036728652,0.0345536,-0.03666683,0.005041408,-0.03648698,-0.03255277,0.013882138,-0.022649804,-0.007300768,-0.023852548,-0.005061079,-0.021851722,-0.003065873,0.03212563,-0.05777667,0.00884073,-0.023009503,-0.025988262,-0.052156374,0.024482021,-0.013657326,-0.037521113,0.027112322,0.010807835,-0.007851558,0.011903793,-0.03722886,-0.04179254,-0.008851971,0.011336142,-0.021211008,0.0068174223,-0.03288999,0.014758904,-0.04444532,-0.0077616326,0.032440364,-0.038352918,0.009498305,0.017906273,-0.058406144,-0.030394576,-0.05809141,-0.02425721,-0.004206794,-0.033744276,0.020188114,-0.00095966604,0.0069691706,0.01825473,0.025089014,-0.012679394,0.03931961,0.036936603,0.05229126,0.06542028,0.01785007,-0.00012698362,-0.0037178276,-0.03295743,-0.00884073,-0.008188776,0.029787583,-0.020772625,-0.0067443587,0.01937879,-0.0011310851,0.030057358,0.013331349,0.008587817,0.0069298283,0.033991568,-0.061283737,0.033159763,0.032013223,0.06546524,-0.011010165,0.055438627,0.0035632695,-0.0017057607,-0.029495329,0.028303824,-0.042489458,-0.015275972,0.06474584,0.0771105,0.02632548,-0.0032597734,-0.023312999,-0.0032878749,0.02445954,-0.0073063886,-0.010779733,-0.059530206,-0.0139271,0.068432756,-0.009290353,-0.034081493,0.010094057,0.007767253,0.011757665,-0.026033225,-0.007598644,0.029989915,-0.032013223,-0.000015313119,-0.02106488,-0.005569716,-0.015512025,-0.009385899,-0.013567401,-0.058810808,-0.024279691,-0.009723117,-0.010296388,-0.027224727,0.014972476,-0.027741795,-0.016276386,0.00031034587,-0.01842334,-0.042287126,0.018310932,-0.006845524,-0.0425569,0.011302421,-0.05035788,-0.004853128,0.0037206379,-0.012769319,-0.00094140007,-0.032575253,0.009172328,0.016422514,-0.035228033,0.0068118023,-0.04797487,-0.06681411,0.014590296,-0.036194723,0.045254644,0.029292997,-0.00037164227,0.014061987,-0.004262997,-0.037745927,-0.019794691,-0.019873377,-0.0005838085,0.04775006,0.01749037,0.0129266875,0.005136953,0.018310932,-0.028326306,0.013792213,0.014444168,-0.02220018,0.017456649,-0.016163979,0.012611951,0.035497807,-0.03498074,0.022132736,-0.04757021,0.009869245,0.036824197,-0.02311067,0.0017886601,0.02481924,0.0137360105,-0.029225554,-0.051481936,-0.0034761548,0.026168112,0.013443755,0.026213074,0.01148227,-0.017377963,0.03235044,0.036936603,-0.008008926,0.053010657,-0.016006611,-0.058001485,0.032507807,0.05602314,0.048559383,-0.0060305805,0.016995784,-0.020907512,0.03122638,0.015939167,0.04404066,-0.012454582,0.015062401,-0.027292171,0.04792991,0.0191877,0.0061092647,0.020210594,-0.05552855,-0.026302999,-0.009290353,0.023807585,-0.0055247536,-0.03576758,-0.01940127,-0.048964042,-0.006676915,0.04006149,0.101075456,0.0021118273,0.03970179,-0.024324654,-0.0034087112,-0.025156457,-0.030574426,-0.0067218775,-0.024437059,0.034755927,-0.003327217,0.01899661,-0.023582773,0.025718488,0.0020078518,0.0090767825,-0.01222977,-0.020266797,-0.045839157,0.06883742,-0.031271342,0.03138375,0.01956988,-0.018310932,0.00019038763,0.0077279108,-0.009177947,0.011937515,-0.02933796,0.047705095,0.023155631,0.0030152902,0.025516156,0.054989003,0.032417882,0.016253904,-0.04810976,-0.03653194,0.0010826101,0.00061507145,0.029203072,0.016017852,-0.011251838,-0.01881676,0.056337874,-0.025291344,-0.015096122,-0.017614016,-0.03405901,0.018771797,-0.017243076,0.0046311263,-0.014320522,0.06987155,0.022065293,0.013151499,-0.025673525,-0.014545334,0.016602363,-0.036801714,-0.03590247,-0.010279526,0.007862798,-0.0022874617,-0.025673525,-0.0076829484,0.017782625,-0.0020696751,0.05242615,-0.04707562,-0.042961564,0.049009006,0.044287954,0.038330436,0.017838828,-0.039566904,-0.037970737,0.059215467,-0.025875855,-0.034463674,-0.008514753,-0.023560293,-0.01825473,0.009751218,-0.016883377,-0.022795932,0.00807637,0.01806364,-0.048694268,0.014061987,0.01921018,0.023447886,0.01900785,0.0089643765,0.0023773864,-0.011178774,0.0032597734,-0.013286387,-0.0048503177,-0.013949581,-0.05656269,0.006036201,-0.009239771,0.021952886,0.033407055,0.018389618,0.014365484,-0.04437788,0.024549466,0.0008395321,0.000827589,0.029248035,-0.021154804,0.028820893,0.009082403,-0.024706833,-0.03028217,0.016501198,-0.0010769898,-0.053325396,0.008745185,-0.034216378,0.016681047,0.013297627,0.0057776673,-0.0225936,-0.031473674,-0.0026766672,0.00865526,-0.022031572,0.0028171747,-0.035452846,0.017175633,0.0037206379,0.025111495,-0.0059406557,-0.0278542,0.02258236,-0.014275559,0.010982064,0.035048183,0.017366724,0.0126906345,-0.02353781,-0.020075707,0.011836349,0.006429622,-0.0007404744,0.029113147,-0.048604343,0.016265145,-0.0010088437,0.008447309,-0.028820893,0.010897759,0.031518634,0.005476981,0.046401188,0.040376227,0.018018678,-0.027741795,0.016265145,-0.011926274,0.01298289,0.008610298,0.015028679,0.018726835,-0.03178841,0.002560046,-0.0038499048,-0.007053475,0.010959582,0.031653523,0.03349698,0.017220596,-0.011566575,-0.017917512,0.0068174223,0.0050189267,0.008509132,-0.018007437,-0.031248862,-0.054224644,-0.023492849,-0.044130586,0.00010511715,0.034531116,-0.024032397,-0.022807172,0.020165632,-0.0053280434,0.01824349,0.00695793,0.024234729,-0.024504503,-0.023605255,-0.02218894,-0.023200594,0.03970179,0.006187949,0.0030546323,0.0023408544,0.011948755,-0.0011879907,0.01410695,0.0020668649,0.026213074,-0.019907098,0.041118104,0.018760556,0.025426231,-0.005190346,0.009526406,-0.008312422,-0.03104653,0.009801801,-0.015905445,-0.001843458,0.016456235,-0.026954953,0.023964955,0.008239358,0.017220596,0.0015638481,-0.03875758,0.030641869,0.010099676,-0.007750392,0.012960409,0.01336507,0.0025726918,-0.013072815,-0.0010299197,0.008149433,0.014747664,0.020480368,-0.03181089,-0.029382922,-0.017456649,0.0069466894,-0.024122322,-0.025471194,0.0012181997,-0.05004314,0.01768146,-0.022065293,-0.0032120007,0.042444497,-0.015073641,-0.0041646413,-0.049593516,0.014522852,0.002710389,-0.046176374,-0.0070647155,0.019513678,0.00884635,0.02182924,0.0057439455,0.007435655,0.019513678,0.054809153,-0.029405404,0.057506897,0.028865855,-0.00395107,0.040331263,-0.011813868,0.016220182,0.009503925,-0.0070422343,-0.0105212,-0.0072558057,-0.013410033,0.0043360605,0.019019092,0.014365484,-0.0069298283,-0.039207205,-0.025089014,-0.029697658,0.015512025,-0.02724721,0.013825935,-0.011532853,-0.014163153,0.03794826,0.013196462,0.012881725,0.011645259,-0.06515051,0.017007025,-0.0053561446,0.024279691,0.01409571,0.054629304,-0.019491196,0.053864945,0.03594743,-0.0017942804,-0.019153979,0.028258862,-0.043501113,0.02520142,-0.034688484,-0.007548061,-0.0063509378,-0.007053475,0.0039004874,0.010318869,0.022548638,0.04496239,0.027022397,-0.026505329,-0.024279691,0.009262253,-0.016827175,-0.004159021,0.011791387,0.005097611,-0.011577816,0.03520555,-0.0012090667,0.007491858,-0.019356309,-0.019243903,-0.034148935,-0.014151912,0.010324488,0.01937879,0.0021862963,-0.016231423,-0.009992891,-0.008514753,0.009835523,-0.026078187,0.049908254,0.022998262,-0.007660467,0.018726835,-0.025538638,-0.02632548,0.037161414,-0.061643437,-0.032215554,-0.019434992,0.016321348,-0.024774278,-0.031541117,-0.035093147,0.04725547,-0.017636498,0.038330436,0.0054039173,0.0013313083,-0.03648698,-0.02706736,-0.026033225,-0.022335067,-0.04361352,0.02239127,-0.02107612,0.0052353083,0.025089014,-0.0067274976,-0.07364839,0.006154227,0.018906685,-0.0033019255,-0.020457888,-0.014466649,0.0027862631,0.014320522,0.01843458,-0.0560681,0.030529464,-0.0011915034,0.06407141,-0.03592495,0.0021343085,-0.018693114,0.017456649,0.0020542191,0.039274648,0.0036728652,-0.000006899136,0.012218529,-0.044355396,0.070995614,-0.010464996,0.022233902,0.016074054,-0.033024877,0.017951235,-0.030731793,-0.007952723,0.028843373,0.009852383,0.00732887,0.014365484,0.025651043,-0.0070871967,-0.006339697,-0.03028217,-0.017636498,0.03385668,-0.008486651,0.0059968587,0.028933298,0.05247111,-0.050267953,-0.013994544,0.0051257126,0.0076773283,-0.010133399,-0.019221421,0.006317216,0.00263311,0.011611537,0.016793452,0.025381269,-0.04797487,-0.0039566904,-0.032934953,-0.019614842,0.010217703,0.011010165,0.017400445,-0.02859608,0.010998924,-0.0124658225,-0.037970737,-0.013792213,0.01111133,0.00026468094,-0.012780559,0.009981651,0.029427884,0.016321348,-0.0062778736,0.0112968,0.030889163,0.008318042,-0.002391437,-0.02049161,0.028101495,-0.027134802,0.008570956,-0.010386312,0.014803867,0.026842548,-0.0066881557,-0.007632366,0.0032316719,-0.042849157,0.02708984,-0.016984543,-0.007576163,-0.014208116,-0.011454169,0.006339697,0.028551118,0.00027627283,-0.0026036033,-0.034351267,0.04030878,-0.0026612114,0.010583023,-0.031473674,0.014151912,0.0043220096,0.0019628895,0.027606908,0.03369931,0.023492849,-0.02560608,-0.053325396,0.025830893,0.06528539,0.0034199518,0.013005371,0.04963848,0.0046198857,0.008587817,0.0027890732,-0.006187949,0.027044877,-0.03028217,-0.024212247,-0.005035788,0.006485825,0.018805519,-0.033991568,-0.026460366,-0.0072895274,-0.0089025535,0.0006235019,0.0054460694,0.002690718,0.017344242,-0.0047941147,0.007373832,0.027427059,0.00011653338,-0.029585253,0.012072402,0.03722886,0.04828961,0.046311263,0.005302752,0.02407736,-0.005004876,0.03365435,-0.0031445571,-0.017186875,0.041994873,-0.03405901,0.0047660135,0.016298866,-0.005606248,-0.00063825515,-0.022739729,0.0034564838,0.05035788,-0.011397966,0.04851442,0.031676006,0.024122322,-0.048424494,0.04237705,-0.033744276,-0.026932472,0.013792213,0.010571782,0.027292171,-0.0042967186,0.0413654,0.015579469,-0.018760556,0.010993305,0.019997023,0.02879841,0.022638563,0.015478303,-0.0033384576,0.032260515,0.020255556,-0.039746754,-0.03313728,0.04251194,-0.016400032,-0.00072642363,-0.008166295,-0.018771797,-0.0037852712,0.004437226,-0.009340936,0.06285742,-0.037790887,-0.0145340925,-0.03196826,0.0046170754,-0.014725183,0.0015961649,0.012106123,0.062542684,0.014196875,0.008722704,0.03329465,0.0050948006,0.0058226297,-0.0011064963,0.012443341,0.03709397,0.02972014,0.010611124,0.0058788327,-0.05058269,0.014792627,0.007817836,0.0037656003,-0.00978494,-0.021896685,-0.061778326,0.0010193817,0.0045805434,0.013780973,0.02106488,0.0011690222,0.028168937,-0.014905033,0.05791156,-0.010774112,-0.022256384,0.0154221,-0.0026246796,0.028618561,-0.016343828,-0.016815934,0.034755927,-0.025246382,-0.0058001485,-0.002557236,0.010656087,-0.011060748,-0.008306801,0.020030744,-0.007469377,0.028843373,0.021345895,0.0059406557,0.0022045623,-0.03363187,-0.0024125131,0.02614563,-0.0055444245,-0.005420778,0.012241011,0.017524092,-0.021862961,-0.023672698,0.002051409,-0.0098242825,0.004459707,0.03122638,-0.03554277,0.013095296,0.028865855,-0.020941233,0.020176873,0.023740143,-0.028528636,0.02050285,0.01615274,0.0410057,0.00187999,0.016456235,0.020761384,0.051616825,-0.04325382,0.008632779,0.007992065,-0.020165632,-0.0015680634,0.013758492,-0.023223074,-0.008559715,-0.011195635,-0.016310107,-0.0035604592,-0.01561319,-0.017760145,-0.026190592,-0.0042995284,0.014713942,0.0065307873,-0.006845524,-0.025718488,-0.008717083,0.030979088,-0.016770972,-0.015826762,-0.03498074,0.008194395,0.016534919,0.016636085,0.020974955,-0.025044052,0.0055584754,-0.0065026856,0.019097775,0.02783172,-0.01768146,0.0030827338,-0.013949581,-0.031496156,-0.023268037,0.0010580212,-0.0027230347,0.0172768,0.014151912,0.028641043,-0.029832546,-0.011993717,0.00921729,0.0032401022,0.044894945,-0.032058183,0.016692288,-0.0021343085,-0.017018264,0.013668567,-0.014264318,0.039184723,-0.0026710469,-0.016208941,-0.0074019334,0.0041449703,0.011836349,0.0033525082,-0.014039506,-0.009267872,-0.006457723,-0.016107777,0.009481444,0.006603851,0.018828,-0.0102233235,-0.011251838,-0.007992065,-0.010656087,-0.021514503,-0.00004685046,-0.0009631787,0.0036616246,0.04568179,0.03691412,0.021053638,0.0027384905,0.022706008,-0.003046202,0.002992809,0.014331762,-0.017939994,0.038825024,-0.010650466,-0.0018308123,0.050537728,0.000053085478,0.0070871967,-0.018288452,0.029944953,-0.03291247,0.020761384,0.02895578,0.000008287745,0.00545169,0.029292997,0.03673427,-0.015467063,-0.040533595,-0.009953549,0.0026232745,0.024931645,0.009340936,0.0018504834,0.001119142,0.007503099,0.014185634,-0.00865526,0.009981651,-0.004271427,0.02612315,0.03824051,-0.024122322,-0.0105212,-0.038712617,-0.01788379,-0.016501198,0.012746838,-0.017827587,0.024212247,-0.030372094,0.018670632,0.0020767003,0.020648977,0.01690586,0.01751285,0.018681873,-0.009858004,-0.007992065,0.02445954,0.039589383,-0.030821718,0.015343416,-0.04120803,0.018221008,-0.021345895,-0.0029394163,0.018940406,0.023627736,0.02351533,0.021188525,-0.021997849,0.028416231,0.012769319,-0.016411273,0.018490782,-0.016703527,-0.009610711,-0.014275559,0.0103975525,-0.03104653,-0.020412926,0.012555747,-0.0051847254,0.009059922,-0.03351946,0.0070590954,-0.027899163,0.048559383,0.03653194,0.002238284,-0.0022804362,-0.005499462,-0.0062778736,0.0048643686,0.023627736,0.010695429,-0.016557401,0.001995206,0.04797487,0.03423886,-0.058226295,-0.0056793117,-0.036284648,-0.0045046695,0.021930406,0.028303824,-0.007997685,-0.023560293,-0.012207289,-0.019288866,0.0138484165,0.0024982227,-0.026842548,-0.013713529,0.0282139,0.000573973,0.004945863,0.013556161,-0.0018013058,0.012634432,-0.019614842,-0.018872963,0.030619388,0.017973715,0.019468715,-0.02839375,-0.009059922,0.048244644,0.01995206,0.008351764,-0.0040775267,0.019412512,0.022706008,-0.0013376311,0.0038667656,0.0021230679,0.007244565,0.016489957,-0.007295148,-0.036554422,-0.017895032,-0.023447886,0.025358789,-0.008801388,0.015028679,0.009734358,0.043141413,-0.0014921894,0.006598231,0.011105711,0.006637573,0.018603189,-0.061238777,-0.020974955,0.002803124,-0.0030967847,0.034463674,-0.011229357,0.018074881,0.003425572,0.009054301,0.031496156,-0.008121332,-0.0071996027,-0.007491858,0.00067443587,-0.006041821,-0.023155631,-0.025044052,0.005437639,0.03295743,0.01806364,-0.015680633,-0.006154227,-0.03684668,0.0073232492,0.059080582,0.000032250857,0.004226465,0.018546985,-0.03313728,-0.030889163,-0.02670766,0.0113192815,0.018872963,0.011414827,0.0018757747,0.0024715264,-0.01598413,-0.014163153,0.026392924,-0.00085990573,0.014893792,0.019648565,-0.018187286,-0.025156457,0.041073143,-0.014061987,-0.004437226,0.016242664,0.01897413,-0.0013713529,-0.0008739565,-0.011825109,-0.028910818,-0.0025881475,0.0023549052,-0.01861443,-0.022548638,0.030124802,-0.01240962,-0.018153565,-0.015163566,-0.033766754,0.003234482,-0.023268037,0.015523265,0.03007984,-0.007598644,-0.0075143394,-0.013252664,0.042646825,0.004248946,-0.011589056,0.029540291,-0.05346028,0.04725547,0.013668567,-0.020750143,0.00049388374,-0.018333415,-0.022357548,0.008239358,0.025156457,0.011133811,0.01826597,0.022784691,-0.01185883,-0.008767666,0.01845706,-0.01690586,-0.012668153,-0.037925776,-0.009902966,-0.017625257,-0.010835936,-0.0042096036,0.010830316,0.0020429785,-0.0043135793,-0.0073063886,0.014556574,0.042579383,0.004943053,0.030529464,-0.015860483,-0.0067274976,-0.003105215,0.007834696,-0.0078122155,-0.014286799,0.005794528,0.005190346,0.008514753,0.016860897,-0.0014556574,0.009992891,-0.012117364,0.021784278,-0.02200909,0.005682122,0.02767435,-0.0075930236,-0.0016074055,-0.036464497,0.028303824,0.010065955,-0.008407967,0.058226295,-0.043725923,-0.0006175303,-0.04476006,-0.010650466,0.049413666,-0.005760806,0.04757021,-0.004810976,0.020019503,-0.018389618,-0.008531613,-0.0013025042,-0.014253078,0.013814694,-0.018400857,0.00069937593,-0.018400857,0.0021539796,-0.016647326,0.0055978177,-0.016107777,0.005741135,0.008368625,-0.027809238,0.012432101,-0.007469377,0.0085540945,0.005555665,0.026258036,-0.00071131904,-0.027382096,-0.030979088,-0.0058057685,-0.007075956,-0.016197702,-0.036959086,-0.0017970905,0.010802214,0.01034697,-0.007992065,-0.03558773,-0.017029505,-0.0018546986,-0.0026387302,-0.004707,0.019041572,-0.0114316875,0.020626497,0.013578642,-0.0070309937,0.010324488,0.040601037,0.027606908,0.012252252,0.0076773283,0.004605835,-0.003987602,-0.009992891,0.012274733,-0.028820893,0.0019825604,0.0127918,-0.010656087,0.014579055,-0.025516156,0.002293082,-0.03381172,-0.014028266,0.04792991,0.01202744,-0.02161567,0.03345202,-0.025988262,0.00095966604,0.049593516,0.0052718404,-0.006660054,-0.005491032,0.0062553925,-0.0015680634,0.008975618,0.011836349,-0.030484501,0.027989088,0.03046202,-0.036599386,0.0076998095,-0.01785007,0.00073836674,-0.0014444168,0.010993305,0.026775103,-0.013286387,-0.0116564995,0.011150673,-0.0064970655,-0.027044877,0.00042925033,-0.009858004,-0.043388706,0.0023155631,-0.027764276,0.01298289,-0.01673725,0.004268617,0.006283494,0.048379533,-0.020300519,-0.009059922,0.017580295,-0.012859244,-0.0016397221]},{"id":"interface-VoiceConnectionEvents","type":"interface","source":"main","text":"Interface: VoiceConnectionEvents\nProperties: disconnect: [], error: [err: Error], ready: []","meta":{"url":"/docs/typedefs/VoiceConnectionEvents"},"embedding":[-0.008668727,-0.011521579,0.0066044684,0.0046967687,-0.032517873,0.040983655,-0.008338214,0.009045628,0.021767493,-0.011770913,0.013672815,-0.026139546,0.017001143,0.03196122,0.016096579,-0.010727188,-0.021326808,0.087580234,0.020062739,0.021060077,-0.015771864,0.011968062,0.020886123,0.044369966,-0.012826237,0.025142208,-0.003047101,0.05404183,0.015702283,-0.021906655,0.049124718,-0.026904946,0.014183081,0.0026426571,0.0010038618,0.017569393,0.013846769,0.031126238,-0.053809892,-0.002520889,0.004557605,-0.03562586,-0.01731426,-0.012176807,-0.025443729,-0.004032843,0.007543822,0.011307036,-0.017418632,0.009834222,-0.027902285,-0.016166162,-0.012315971,0.044601906,-0.015076047,-0.029154755,-0.034373388,-0.0034240023,-0.030221676,-0.021802284,-0.007311883,0.006250761,0.0065812743,0.020236693,-0.0124667315,-0.0074394494,-0.012327568,0.015934221,-0.0064884988,0.020085933,-0.012895819,0.019459698,-0.045019396,0.02017871,-0.011933271,0.027183272,-0.0082048485,0.008802092,-0.023449052,-0.013000191,0.015145629,-0.0007849692,-0.08442587,-0.048753615,-0.011718728,0.013707606,-0.12543271,-0.0026977425,0.010037168,0.016919963,-0.06285552,0.00938194,-0.0070625483,-0.04432358,0.010112548,-0.02426084,0.06350495,-0.014206275,-0.0010973623,0.025675667,0.058680613,-0.029966542,-0.022498101,-0.045297723,0.005572339,-0.0010045866,-0.0018975525,-0.011683936,-0.060304187,0.016989546,-0.0037052284,0.060768068,-0.00694078,0.017221484,0.004447434,-0.043952476,0.05441293,-0.046202287,0.035301145,-0.0075612175,-0.036414452,0.006018822,-0.0066566546,0.030871106,0.0050127856,0.0012452235,0.017940495,0.020700572,0.0006410944,-0.003867586,0.0484289,0.043419015,0.0075148297,-0.015505134,-0.022788025,0.00575789,-0.037133463,0.015806656,-0.062948294,-0.0028963406,0.008894868,-0.0035399718,0.0636905,-0.001311906,0.036484033,0.05046997,-0.010292301,0.003383413,-0.008860077,0.005102662,-0.04706046,0.025420535,-0.018427568,-0.008228042,-0.015273196,0.0011553471,0.007108936,0.03757415,-0.026881753,-0.012049241,0.015876237,-0.025281372,-0.00766559,-0.014519393,-0.03574183,-0.009173195,0.022393728,0.016409697,-0.038896203,-0.00823964,0.023553424,0.00008434976,-0.034605328,0.03901217,-0.034350194,-0.046689358,0.04065894,0.01578346,-0.0061000003,0.0015771865,0.02699772,0.0047460557,-0.010234317,-0.05190799,-0.037736505,-0.026858557,0.012953804,0.07561217,0.024168063,-0.064061604,0.006442111,-0.0015568918,-0.037736505,0.024515972,0.034698103,0.010402473,-0.01201445,-0.0058680614,-0.011852092,-0.04782586,-0.0060710083,-0.023182321,0.039823957,-0.0117013315,-0.013788785,-0.023356276,-0.012350761,0.026673006,0.040867686,-0.0044300384,0.05404183,0.0008422292,0.007769963,0.0071031377,-0.035649054,-0.0010524241,-0.0023425857,0.025374146,-0.010744583,-0.027113691,-0.029966542,-0.01441502,0.06587073,0.01846236,0.045529664,0.01651407,0.0032500478,-0.025652474,0.0014206275,-0.012385553,-0.031334985,-0.015597911,0.010025571,0.0010328542,0.028922817,-0.025768444,0.026649812,0.014217872,0.03425742,0.046387836,-0.053485177,-0.048104186,-0.0019163975,0.038153995,0.05659316,0.032773007,0.01861312,0.02734563,-0.010356084,-0.005914449,0.0117013315,0.06656655,0.037017494,0.0064363126,0.015250001,0.0079497155,0.004679373,-0.03291217,0.015076047,0.012095628,0.009654469,-0.029896962,-0.03142776,0.03539392,-0.0020947007,-0.07366388,0.038038027,0.014820914,-0.027438406,-0.0047605517,-0.011086693,-0.03462852,0.053809892,-0.010025571,-0.033074528,-0.015099241,0.011005514,0.03864107,-0.00027470296,0.04367415,-0.0015583414,-0.0049953903,-0.043001525,0.054320157,0.0077931564,0.03692472,-0.05023803,-0.012988594,0.019517682,0.022822816,0.036484033,-0.013069773,0.038385935,-0.063412175,0.040867686,0.0499597,0.05775286,-0.018427568,0.025722055,-0.014322245,0.048614454,-0.021002093,-0.004612691,-0.006152187,-0.0002687233,0.047269206,0.007567016,0.018543538,0.068561226,0.0049953903,0.0035573673,0.01628213,-0.03367757,0.0058535654,-0.0052389265,0.029456276,0.019459698,0.027507987,0.012849431,-0.017998481,-0.020700572,-0.018091256,0.0042473865,-0.001559791,0.022254566,-0.009242777,0.006708841,-0.021106467,-0.002357082,0.054552097,-0.029038787,-0.07347833,0.0023889737,0.0171635,0.03302814,0.027368823,-0.06350495,-0.0015786361,-0.032541066,0.025582893,0.062113315,-0.019958368,-0.04610951,0.0146469595,0.04671255,-0.01826521,-0.006007225,-0.012710268,-0.04024145,0.023669394,-0.048568066,-0.011614354,-0.03722624,-0.04492662,0.016803995,-0.008216445,0.0021715306,-0.0068769967,-0.03539392,0.038873006,-0.024284033,0.013220534,-0.029456276,-0.008349811,-0.0499597,-0.0083324155,-0.0674943,-0.012234792,0.0003647606,-0.05580457,0.037875667,0.0068769967,-0.018207226,0.027902285,-0.04302472,-0.0072828904,-0.08071484,0.003226854,0.032517873,0.027299242,0.034651715,0.007862738,-0.035301145,-0.0024701522,-0.021535553,-0.0084889745,-0.06498936,0.014519393,-0.009028233,-0.00035298246,0.07268974,-0.01598061,-0.025304565,-0.011144678,0.03425742,-0.040612552,-0.0063667307,0.027206466,-0.021338405,-0.024121676,0.06577795,0.0047808466,-0.01518042,0.02681217,-0.00759021,-0.014960078,0.050980233,0.040914074,0.019772816,-0.016699621,0.04492662,-0.019935174,0.029525857,0.007108936,0.022440117,-0.058634225,-0.0027774717,-0.036252096,0.020607797,0.038757037,0.024191257,0.020607797,-0.019448102,0.015887834,-0.019633653,0.025466923,-0.01213042,0.026881753,0.028737266,-0.022057416,-0.026603425,0.0301289,0.048568066,0.060628902,0.03516198,-0.04599354,0.03864107,-0.0056419205,-0.03905856,-0.023634603,-0.054088216,-0.007700381,0.038269967,0.04058936,0.005404183,0.0146469595,-0.0032674433,-0.005812976,0.00033649302,0.014693348,-0.02497985,-0.01319734,-0.036484033,0.03066236,-0.054598484,-0.03604335,0.006285552,-0.0030065116,-0.028690876,-0.039035365,-0.03425742,-0.034048673,0.004134316,0.056685936,0.018520344,0.012489925,-0.0036066542,0.035138786,-0.01102291,0.020828139,0.026417874,-0.015702283,-0.0028209602,0.0034848864,0.044253998,0.012118823,0.029780991,-0.01994677,-0.007480039,0.0012901617,0.0044329376,0.026510648,0.0006048539,-0.0018671105,0.022405325,0.044601906,0.0036791353,-0.016861979,-0.0915232,0.018624717,0.0019700334,-0.0190654,0.03177567,-0.010982321,0.044741068,-0.00030768182,-0.019958368,-0.024840686,0.025049431,-0.02906198,0.01083156,-0.02166312,0.012663879,0.0027948671,0.047686696,0.032053996,-0.012884222,-0.05747453,-0.020573005,-0.025072627,0.043766923,-0.008454183,-0.0446251,-0.008546959,-0.03344563,0.017952094,0.029734604,-0.015795058,-0.016224146,0.021616733,-0.02841255,0.00010491624,0.031891637,0.019227758,-0.008662929,-0.010669203,-0.012559507,-0.014275857,-0.00093500485,-0.014426617,0.0115041835,0.00819905,-0.042955138,-0.012571104,-0.017685363,0.056036506,0.024724716,0.0005345473,0.013603233,-0.007938119,-0.008001902,0.04917111,-0.018253613,-0.017905705,-0.023367872,0.023205515,0.005995628,-0.001758389,-0.014751332,0.01201445,-0.013069773,-0.007532225,0.006650856,-0.02039905,0.034303807,0.00031891637,0.024631942,-0.023356276,-0.004015447,-0.018659508,0.006761027,-0.019540876,0.04699088,-0.025443729,-0.013545249,0.0007842444,-0.0037081277,0.0141946785,-0.010889545,0.016838785,-0.005572339,-0.01090694,-0.0047953427,0.018682702,0.007578613,-0.0098052295,-0.020109128,-0.011005514,-0.0072596967,-0.023588216,-0.004609791,-0.00892386,-0.004061835,0.07143727,-0.03539392,-0.011457796,0.009329754,-0.039522436,0.019169774,0.024585554,0.010744583,0.000022095379,0.009631274,0.032100383,-0.027971866,-0.014438215,0.012408746,0.025582893,0.026023576,0.017453425,-0.0068074153,0.034651715,-0.0036240497,-0.020306276,0.04137795,0.018160839,0.009207985,-0.0149020925,-0.02562928,0.011144678,0.0070451526,0.020619394,0.010698195,-0.03692472,-0.00858175,-0.007827948,-0.035301145,-0.01155637,0.0047721486,-0.015226807,0.009793632,0.02223137,-0.058634225,0.05255742,-0.0034298007,0.02433042,-0.025907608,-0.003931369,0.015586313,-0.015853044,0.008796293,0.015296389,-0.0024556562,-0.01731426,-0.036855135,-0.013777188,0.054134607,-0.0037690117,0.0020367159,-0.0240289,0.0026209129,-0.03553308,0.022625668,-0.00012928798,0.036437646,-0.00013318383,-0.02776312,-0.007253898,-0.026649812,0.012095628,0.0038356942,-0.04274639,0.021280421,-0.0053983848,0.026325097,-0.025350953,-0.006987168,0.017789736,0.0035370726,-0.002448408,-0.0011538975,0.058263123,0.018636314,0.011991256,-0.017349051,-0.01140561,0.032332323,0.023425858,-0.024191257,0.01567909,0.01438023,0.075565785,-0.0017482416,-0.007961312,0.03618251,-0.0183116,-0.0038994777,-0.027438406,0.012872625,-0.01899582,0.0037922056,0.026788976,-0.05084107,-0.0016685125,-0.0057520918,-0.0012423242,0.051304948,-0.027206466,-0.010501047,0.013139355,0.004980894,0.027855895,0.044068445,0.013034983,0.0100313695,0.0007070521,0.030291257,-0.01109829,0.022660458,-0.009811028,-0.010350286,-0.042769585,0.028203804,-0.0085585555,-0.0050301813,0.029780991,0.020700572,-0.009770438,0.00027379696,-0.008042491,-0.005534649,0.02829658,-0.037295822,-0.012768252,0.007903328,0.003989354,-0.02883004,-0.005088166,0.020352663,-0.052650195,0.023170725,0.0061000003,-0.02231255,0.04606312,-0.0018366685,0.0059173484,0.029433083,0.026209127,-0.028853234,-0.0059376433,-0.00846578,0.022324147,-0.029873768,-0.0036472436,-0.0023701286,0.039174527,-0.005636122,0.014229469,-0.018334793,-0.028714072,0.02829658,-0.013568442,0.034790877,0.003818299,-0.020039545,0.017778138,0.0003288825,0.02379696,-0.0141135,-0.003047101,-0.030314451,0.006337738,-0.049217496,0.01773175,0.017291067,-0.009515305,0.0065696775,-0.015841447,-0.007555419,-0.026719395,0.014322245,-0.002864449,0.013545249,0.038687456,0.010872149,0.029943349,0.0020961503,-0.013591636,0.056732323,0.06350495,-0.017836124,-0.009979184,-0.03949924,0.015493537,0.014055515,0.00059651857,-0.03490685,-0.049913313,-0.024956657,-0.0039342684,-0.021593539,-0.021964641,-0.010356084,-0.03172928,0.008761503,-0.016815592,0.0010089355,-0.008674526,-0.043001525,-0.030824717,-0.028157417,-0.022440117,-0.03131179,-0.04114601,0.021721104,-0.01952928,0.013985933,-0.09300762,0.01876388,-0.01567909,0.0043082703,-0.0015221009,-0.023715781,0.004543109,0.028227,-0.018578328,-0.025582893,0.029293919,0.025907608,0.011202662,-0.047083654,0.03474449,-0.01941331,0.0032065592,0.032053996,0.040427,-0.003867586,0.010170533,0.025536504,-0.0033167303,0.07403499,0.00018491714,0.016989546,-0.017975288,-0.0014329493,0.011312834,0.041099623,0.028528519,-0.0025426333,-0.027902285,0.016340116,0.06304107,0.0050011887,-0.018659508,-0.004186502,-0.035556275,-0.053763505,0.005088166,-0.012327568,0.004287976,0.021141257,-0.0024194156,-0.0008806441,-0.019320535,0.019123387,0.01148099,-0.010814165,-0.01719829,-0.001975832,0.01654886,-0.025675667,0.027136885,0.05728898,-0.037017494,0.056454,0.0078047537,-0.029154755,0.038803425,0.034999624,-0.008187453,-0.013533652,0.012571104,-0.015887834,-0.03291217,0.006337738,0.013011788,-0.017302664,0.004148812,0.029433083,0.0031804661,-0.015725477,0.027879091,0.044439547,0.013266921,0.0018236218,0.018555135,0.022695249,-0.014716541,0.014484602,0.038200382,-0.001540946,0.01952928,0.010843157,0.0065348865,0.0066566546,-0.0018700097,0.024539165,0.0030181087,-0.018624717,0.00015755557,0.0051200576,0.024052093,0.010553233,-0.013092967,-0.04274639,-0.0002112821,-0.011533176,0.014206275,-0.01758099,0.015853044,-0.007242301,-0.024562359,-0.011596959,0.005189639,0.033631183,0.0036472436,0.030801523,-0.02906198,-0.04218974,-0.0006334839,0.042236127,-0.01896103,-0.045065783,0.022706846,-0.009555895,0.0016293728,-0.007752567,-0.03817719,0.03901217,-0.008912263,0.008796293,0.014310648,0.016084982,0.018172435,-0.033399243,-0.01254791,-0.0075380234,-0.011451997,-0.036066543,-0.00228895,0.0054418733,-0.011620153,0.009207985,-0.027670344,0.013092967,-0.018450763,0.023820154,-0.0036704377,-0.014067112,-0.009167396,-0.07129811,-0.013823575,0.026951334,-0.025698861,0.031242209,-0.008494773,0.037087075,0.016722815,-0.010118347,0.0015757368,-0.026719395,-0.013255324,0.054459322,0.002158484,0.012408746,-0.00036965308,0.013719203,-0.0033805135,0.034837265,0.03829316,0.010744583,0.022103805,-0.01849715,-0.022115402,0.009150001,-0.0011799906,0.011411408,0.004134316,0.016966352,-0.011220058,-0.026464261,-0.026139546,0.034118254,-0.0072596967,0.003505181,-0.013371294,0.0068422058,0.014728138,-0.008442586,-0.001468465,0.02039905,0.03374715,0.00017141756,0.035602666,0.014681751,-0.024237646,-0.023251904,0.038339548,0.032749813,0.038038027,-0.018937834,-0.02829658,-0.039823957,0.021384792,0.015899431,-0.010802568,-0.00022161064,-0.001807676,-0.011417206,0.0034355992,-0.0046706754,0.0038009034,-0.022950383,-0.015992207,0.02101369,0.04569202,-0.01598061,0.016583651,0.014229469,-0.020074336,-0.0009096365,0.014484602,0.03135818,-0.039568827,-0.03439658,-0.019633653,-0.015911028,0.034002285,-0.016409697,0.00037436435,0.059098106,0.0073060845,0.011724526,0.010112548,-0.043952476,-0.029154755,0.010744583,0.023959318,-0.03397909,-0.007897529,-0.038919397,0.020283083,0.008674526,0.03237871,-0.0003484524,0.022683652,0.014832511,-0.0022947483,-0.0202135,0.006442111,0.0034529946,0.027786314,0.0038414928,0.012872625,0.053531565,0.011434602,0.025072627,-0.0030847911,0.006285552,0.026325097,0.016166162,-0.036298484,-0.0068654,0.0008226593,-0.0036936316,0.025884412,0.0020425145,-0.014032321,0.020515021,-0.010495248,-0.017720154,-0.0025498813,0.042584036,-0.031056657,0.019761218,0.0035863596,-0.0107967695,0.029177949,-0.0024223148,0.023553424,-0.007230704,0.011521579,-0.024539165,0.016618442,0.0031804661,-0.034071866,0.009828423,-0.029943349,-0.0030007132,-0.018218823,0.002726735,0.01647928,-0.007885932,-0.015818253,-0.02906198,0.01731426,-0.015052853,-0.0008016398,0.00518674,-0.01628213,-0.021558747,0.0034964832,-0.011179469,-0.023704184,0.009857415,0.0010690946,-0.010437263,-0.030384034,0.021802284,-0.014809317,-0.02151236,-0.025907608,0.0014090305,-0.0077119777,0.046271868,-0.005259221,0.022648862,-0.057149816,0.008970248,0.010385077,0.012385553,-0.0061579854,0.02154715,0.0043111695,-0.044253998,0.008436788,0.012745058,-0.049124718,-0.009376141,0.0167808,-0.01213042,-0.0045025195,0.012408746,0.03618251,-0.024307227,0.059933085,-0.015516732,-0.0014068561,-0.052603807,0.030639166,0.018647911,0.021036884,0.04374373,-0.04481065,-0.020804945,-0.022567682,0.012049241,0.00059434416,-0.017256275,-0.007085742,-0.017244678,0.004015447,0.015644299,0.022614071,-0.020677378,0.002509292,0.013800382,0.050655518,-0.0074742404,0.004632985,0.019842397,0.04824335,0.021790687,-0.014844107,0.014438215,-0.013150952,-0.016722815,-0.007480039,0.040705327,0.00087774487,-0.011852092,0.010390876,-0.0022947483,0.019865591,0.0019874289,0.021837074,-0.0034877856,0.008639734,0.0138119785,0.019285744,-0.0061115976,-0.031706087,-0.03611293,-0.013603233,-0.0017844822,0.05278936,0.055850957,0.012188404,0.025258178,-0.0055926335,-0.022451714,-0.055433467,0.029015591,-0.0040705325,-0.008355609,-0.005427377,-0.007990305,0.017882511,-0.0011981109,0.013835172,-0.059979472,0.00438655,0.017836124,-0.015725477,-0.027902285,0.0038588883,0.0074394494,0.018172435,0.010025571,-0.03379354,-0.01632852,-0.012791446,-0.010976522,0.028714072,0.014728138,0.00031837277,-0.0024020202,-0.03379354,0.008790495,0.007990305,0.03416464,0.007050951,0.035788216,-0.005812976,-0.014971674,0.020677378,0.012698671,0.0022353139,-0.03191483,0.024933463,-0.022579279,-0.021825477,0.012965401,-0.00087846967,-0.026232323,-0.007143727,0.021419583,-0.0016830087,0.011573765,0.002791968,0.013255324,-0.041053236,0.04585438,-0.018624717,-0.003142776,-0.011921674,-0.02947947,-0.0050359797,0.007839545,-0.001643869,-0.0054476717,-0.0048533273,-0.00392847,0.008628137,-0.0074510463,-0.052696582,-0.046550196,-0.009515305,0.0062449626,0.016664831,-0.00831502,-0.013777188,-0.016734412,0.0063145445,-0.009254374,0.03001293,-0.0033457228,-0.00095457473,-0.015087644,0.007468442,0.01903061,0.006459506,-0.022973577,0.021280421,-0.04154031,-0.032471485,0.0021468871,0.015145629,0.0034964832,-0.011156275,-0.03829316,0.0102575105,0.018369583,0.0015032558,0.052464645,0.028853234,-0.0026629518,-0.032587454,0.0053751906,-0.037319016,-0.024492778,0.005807177,0.0074046585,0.012211598,-0.014287454,-0.023889735,-0.013069773,0.024005705,0.0071147345,-0.036739167,0.027739927,0.008025096,0.018184032,0.020422244,-0.0019308937,0.011208462,0.022938786,-0.019819204,-0.034883652,-0.0005182391,0.009150001,0.012478328,0.0016670629,0.04049658,-0.0069233845,-0.019633653,-0.018775476,-0.023217112,-0.004241588,-0.038316354,-0.0062971488,0.009828423,-0.004169107,-0.011069298,0.01254791,0.032355517,-0.0131741455,-0.026000382,-0.020201903,-0.020352663,-0.008112073,0.070231184,-0.025327759,-0.009544297,-0.011324431,0.009584887,-0.01388156,-0.03782928,0.0012292777,0.00081178715,0.009480515,-0.0068016164,-0.014936884,-0.0549232,-0.018937834,-0.019772816,-0.0190654,-0.01243194,0.018300002,-0.008257035,0.0016351712,-0.011991256,0.028342968,-0.00091326056,-0.009561693,-0.0053346013,-0.015725477,-0.03462852,-0.0038009034,-0.026858557,-0.020932512,0.02906198,-0.0012111574,-0.019552473,0.026000382,0.010924336,-0.01586464,-0.004459031,0.0029775193,0.015041256,-0.05297491,0.024191257,0.021721104,-0.0024324623,-0.021083271,-0.013904754,0.029572247,0.01479772,0.00081251195,0.02227776,-0.027484793,0.017673766,0.0147745265,0.0059434418,-0.008767301,-0.0065464834,-0.03486046,0.027879091,0.037968446,-0.004435837,-0.022706846,0.012327568,-0.0014887596,-0.03829316,0.015969014,-0.026626619,0.010037168,0.021373196,-0.017952094,-0.026649812,0.010008176,-0.016977949,0.011544773,-0.00095022586,0.022126999,-0.054969586,-0.0069465786,-0.019308938,-0.006355134,0.030059319,-0.017105514,-0.031798862,-0.005175143,-0.016954754,-0.036298484,-0.03156692,-0.028992398,0.02551331,0.002845604,-0.0034153045,0.012710268,0.0014887596,0.008338214,0.02017871,0.02757757,0.029456276,-0.00012847256,-0.010390876,0.029780991,-0.064386316,0.03752776,-0.028899623,-0.0016888072,0.010959126,-0.026441067,0.01891464,-0.04302472,0.0017221485,0.029038787,0.028783653,0.00640732,-0.013104564,0.012478328,-0.006459506,-0.019285744,0.0480578,0.004206797,-0.005366493,-0.0010285053,-0.001098087,-0.0106112175,0.038571488,0.0274616,-0.039452855,0.027693538,0.03295856,0.007311883,0.01506445,-0.023472246,0.029293919,0.02616274,-0.008645534,-0.0027557274,-0.018184032,-0.034280613,-0.017441826,0.030221676,0.0118868835,0.008396199,-0.005984031,0.01022272,0.0077177766,0.026464261,0.032401904,0.007961312,0.0105126435,0.0068769967,-0.007827948,-0.00720751,-0.030337645,0.004954801,0.0042241924,0.0046010935,-0.00369943,0.017024336,0.039545633,0.033167303,0.0029775193,-0.008187453,-0.005691208,-0.026325097,0.00020965128,0.02086293,-0.022509698,-0.015505134,0.010599621,-0.001735195,0.029270725,-0.025536504,-0.0048446297,-0.015876237,0.0139395455,-0.0013343751,0.012710268,-0.008987644,-0.019019013,-0.017418632,-0.015122435,0.02116445,-0.010054564,0.019506086,0.039174527,0.0074742404,0.009260172,-0.001293061,0.017720154,-0.0018439165,-0.0016148766,-0.009248575,0.037087075,0.017569393,-0.023437455,0.07032396,-0.03367757,0.013139355,-0.009097815,0.026603425,-0.0027020916,-0.001933793,-0.00068603264,-0.008622339,-0.026116353,-0.020190306,-0.006934982,-0.02906198,-0.027113691,-0.006186978,0.029293919,-0.011289639,0.017209888,-0.016746009,-0.0019004517,0.019865591,-0.009984982,-0.017673766,-0.002586122]},{"id":"interface-VoiceConnectionLike","type":"interface","source":"main","text":"Interface: VoiceConnectionLike\nDescription: Union of connection types (Discord-style or LiveKit).","meta":{"url":"/docs/typedefs/VoiceConnectionLike"},"embedding":[-0.032905556,-0.04906737,-0.021319838,0.02313176,0.0247982,0.013377802,-0.0023211115,0.005015849,0.0036205372,-0.014614405,-0.030472027,-0.012200714,0.03629134,0.043486122,0.0010853346,0.0057531823,-0.045179013,0.05861633,0.0061797113,0.016928904,0.005696973,0.023158211,0.042216454,0.040020987,0.0021905077,0.010468147,-0.048141573,0.044570632,-0.004238839,-0.033381682,0.06798013,-0.03518038,0.033831358,-0.0009671298,0.00702285,0.045073207,0.020473393,0.03949196,-0.018013412,-0.0007174946,0.008206551,-0.011407171,0.020658553,0.010421856,-0.040179696,0.0023740144,0.0074857497,0.042957094,-0.042216454,0.0016589996,-0.02827656,-0.030392673,-0.014839242,-0.011136045,-0.012266843,-0.0075783296,-0.016545359,-0.008887675,-0.018158894,-0.007267526,-0.026530767,-0.020711455,-0.01386054,0.0028964297,0.0044669826,0.009707669,-0.03724359,-0.008504129,-0.0021723222,0.015209562,0.031239118,-0.011202173,-0.053617015,0.05819311,-0.0280914,0.033434585,-0.046580937,0.031344924,-0.010230084,-0.048882212,0.0025641338,0.008431388,-0.061102763,-0.04102614,0.008120583,0.006897206,-0.057346664,-0.017021485,0.007604781,0.029070104,-0.033725552,-0.012736355,-0.042771935,-0.044253215,0.0191905,0.030736541,-0.006857529,-0.0003172103,-0.011023627,0.023264017,0.052532505,0.026292704,-0.03708488,-0.035444893,0.030551381,0.00348828,0.017418256,-0.047850605,-0.07210655,0.034730706,-0.053035084,0.025327228,0.008080906,0.008332195,0.0038850512,-0.050151877,0.083745174,-0.008636386,0.0030650576,-0.039650667,-0.051448,-0.020182429,0.045469977,-0.006037535,0.00931751,-0.032984912,-0.008649612,0.021557901,-0.018198572,-0.024084011,0.03478361,0.008166874,-0.0007501455,0.024388203,-0.019679852,0.011142658,-0.066181436,0.018846631,-0.04004744,-0.039386153,-0.019018566,-0.039068736,0.07543943,-0.0043281126,0.04570804,0.049384788,-0.06729239,0.0032717092,-0.044200312,-0.002643488,-0.056606025,0.010421856,-0.028726235,-0.014191183,-0.072159454,-0.01423086,0.00006685181,0.0402326,-0.030313319,-0.048802856,0.034016516,-0.03089525,0.01079879,-0.0036205372,-0.037878424,-0.018661471,0.0148260165,0.030789444,-0.027562372,0.013510059,-0.0104813725,0.00862316,-0.056235705,0.0327733,-0.024229495,-0.06713369,-0.016307296,-0.018767277,-0.039518412,-0.007895746,0.07057237,0.03089525,-0.014931822,-0.07565104,-0.01946824,-0.013152965,-0.0041198074,0.021385968,0.03872487,-0.0599389,-0.0007129482,0.022192735,0.002132645,0.075333625,0.048353184,0.03293201,0.037666813,-0.02331692,0.007935423,-0.038698416,-0.0075055882,-0.028303012,0.02590916,-0.048935115,-0.025975287,-0.0008836425,0.047057062,0.003402313,-0.015593108,-0.007386557,0.023184663,-0.009357187,0.019984042,0.023488855,-0.026901087,-0.032535236,0.0123991,-0.0042421455,-0.0064541446,-0.00076502445,0.0031807823,-0.0146408565,0.04195194,0.0134902205,-0.023515306,0.0224837,-0.002178935,-0.0374552,-0.005247299,-0.016307296,-0.026821733,-0.02350208,-0.031556536,-0.0346249,-0.019679852,-0.01796051,0.009019932,0.01249168,0.06956722,0.0026137303,-0.05165961,-0.02227209,0.01833083,0.03748165,0.0017011565,-0.02141242,0.0071815588,-0.0007203877,-0.008636386,-0.0007646112,0.0393068,0.056076996,0.012981031,0.0017854704,-0.008477678,0.0016680922,0.02069823,0.015579882,0.051448,-0.019547595,-0.020367587,-0.03666166,-0.004999317,0.017021485,-0.023859175,-0.055283453,0.0047116578,0.0014110175,-0.04684545,0.03991518,-0.02171661,-0.006464064,0.034228127,-0.0067252717,-0.03108041,-0.042586774,0.022258865,0.03425458,0.010124278,-0.0052043153,-0.062795654,-0.016981807,0.010726048,0.03764036,0.0009464646,0.02787979,-0.02266886,0.013807638,0.02996945,0.012247005,-0.008590097,0.02171661,0.040893883,-0.026319155,0.039809376,0.0034452965,0.049755108,0.007611394,0.05393443,0.02750947,0.06480596,-0.030207513,0.033275876,-0.00036060714,-0.004185936,0.019335983,0.015751816,0.02593561,0.033725552,-0.020063397,-0.009462993,-0.010732661,-0.044808693,-0.0003684599,-0.04586675,0.018529214,0.008490903,0.009383638,-0.014296989,0.011724588,0.009760572,-0.010699596,0.032006208,-0.021835642,0.051051226,0.00019611242,0.001977243,-0.04361838,-0.0037891648,0.004999317,0.013245545,-0.047109965,-0.01993114,0.013397641,0.02159758,-0.02825011,-0.037190687,-0.0056639086,-0.014429246,0.00706914,0.0017325676,0.035947468,-0.050495747,0.018859858,0.04356548,-0.0050026234,-0.0073534925,0.039412607,-0.01983856,0.02732431,-0.061896306,-0.029096555,0.0027244955,0.007419621,0.010368953,-0.0374552,0.029652033,-0.04340677,0.02030146,0.030762993,-0.023740143,0.0110765295,-0.02790624,0.01005815,-0.03637069,0.006146647,-0.0730588,-0.001391179,-0.03441329,-0.072371066,0.009019932,0.019613722,0.01249168,0.024441106,0.0063450327,-0.010111053,-0.026874635,0.00069724274,-0.008953803,0.016505681,0.04171388,0.042269357,0.029466873,-0.018582117,0.013913443,0.024295622,-0.031530082,0.028858492,-0.04451773,0.020579198,0.0561299,-0.027773984,-0.01706116,-0.026742378,0.015447625,-0.007260913,0.035048123,0.044464827,0.0030634042,-0.011499751,0.034942318,0.016069233,-0.01995759,0.020446941,-0.0027988902,0.011850233,0.015103756,0.022801118,0.032138467,0.010071375,0.046819,-0.04253387,0.028593978,0.0021987737,0.03954486,-0.05131574,-0.030736541,-0.055124745,0.07443427,0.05708215,0.038169388,0.0234095,0.009383638,-0.037058428,0.04750674,0.030630736,0.013596026,0.038645513,0.032482333,-0.05655312,-0.0318475,0.012809097,0.039227445,0.016902452,0.030577833,-0.011731202,0.019693077,0.017140515,-0.0119362,0.0058920523,-0.023726918,0.008292518,0.023211114,0.0017061161,-0.0074592982,0.027959144,-0.014125055,-0.053617015,-0.010640081,0.013219094,0.0022334913,0.034386836,-0.042480968,0.09242123,0.011784105,-0.021690158,0.0044835145,0.063747905,-0.03502167,-0.026160447,-0.0018367199,-0.0012448697,-0.02051307,0.017881155,-0.007816393,0.009674604,-0.0011812209,-0.030683639,-0.022973051,0.012742968,-0.009330736,-0.04573449,0.01061363,0.03279975,0.008788482,0.028197207,0.08871804,0.004261984,0.004123114,0.005667215,0.008583483,-0.003931341,-0.014958274,0.026610121,0.027244955,0.050098974,0.027350761,0.0012068457,-0.050971873,0.00954896,0.01128814,-0.027377212,0.006897206,-0.015275691,0.05107768,0.0012308173,-0.0336991,-0.011698137,0.015288916,-0.061473083,-0.000202002,-0.03126557,0.0041032755,0.06713369,0.07030786,0.03991518,0.04253387,-0.027932692,-0.027297858,-0.039280348,-0.0024682474,-0.007862682,0.013754735,-0.0056010867,-0.029995902,-0.007598168,-0.03166234,0.0036502948,-0.009138963,0.020724682,-0.045787394,-0.0034585223,-0.013245545,0.0053696367,0.0147334365,0.011876685,-0.0018631713,0.019547595,-0.012015554,-0.027244955,0.019534368,0.0019094613,-0.005131574,0.002301273,-0.012617324,-0.0058722137,0.011413785,-0.013073611,0.02864688,0.0041660974,-0.027826887,0.023475628,0.005310121,0.012657001,-0.0066359984,0.02375337,-0.009806861,-0.014667308,0.0163602,0.030075256,-0.0060639866,-0.02864688,-0.007221236,-0.019415338,0.0374552,0.03145073,0.013569575,0.008762031,-0.020460168,-0.008543806,0.0044603697,-0.051395096,-0.0024054253,-0.032455884,-0.03615908,0.007042689,0.009529121,0.008014778,-0.015381496,0.03687327,-0.005293589,0.008762031,0.0147334365,0.03182105,-0.00435787,-0.029096555,-0.007875908,0.0040206145,-0.0016614794,0.008127197,-0.00053150806,-0.016915679,0.012756194,0.0018797035,-0.029757839,-0.051553804,-0.013331512,-0.027641727,0.010230084,0.018595343,-0.010765725,0.03597392,0.006804626,0.02959913,-0.022444023,-0.019521143,0.016876,0.027562372,0.015130208,-0.018582117,-0.025975287,0.046289973,0.009509283,-0.02612077,0.0038850512,0.010666532,0.012471841,-0.0027294552,0.0089405775,0.02412369,0.025393356,-0.0006823638,-0.0031642502,-0.042004842,0.006850916,-0.0018631713,-0.03240298,-0.020155977,0.028408818,-0.039597765,-0.038513258,-0.005759795,-0.019243402,0.043935798,0.014706985,0.03909519,-0.012974418,-0.017484384,0.016876,-0.0028567526,-0.0044603697,0.012147811,0.037508104,-0.011724588,-0.017206645,-0.050072525,0.032984912,0.013635703,0.04438547,-0.031027507,0.006348339,-0.023356598,0.04377709,-0.0035940858,0.037005525,0.0022764746,-0.015500528,-0.032984912,0.0020417185,0.014098603,0.02959913,-0.016069233,0.03949196,-0.005571329,-0.0006112756,-0.011916362,-0.02412369,0.015910525,0.00037300625,-0.0030105014,0.009846538,0.011374108,0.022258865,-0.004705045,0.00021243791,-0.01907147,0.031186216,0.010236696,0.004784399,0.013364577,0.012379261,0.054807328,0.017722446,0.026927538,0.029652033,-0.0145482775,0.0029080021,-0.009264607,0.023898851,-0.027430115,0.015236014,0.011222011,-0.03330233,-0.013754735,0.019177275,0.008570258,0.036185533,-0.013430705,-0.009476218,-0.015130208,0.027086247,0.02097597,0.002309539,0.0032485642,0.0102763735,-0.0147334365,0.042719033,0.011030239,-0.009429929,-0.025234647,-0.0046256906,-0.034704253,-0.041660976,0.0057631014,-0.0035312637,-0.0036436822,0.034704253,-0.015936976,-0.011420397,-0.026596896,-0.047824156,0.006533499,-0.029175907,0.037296493,0.024163365,0.014786339,-0.046289973,-0.04250742,0.03279975,0.006655837,-0.0035610215,0.03330233,-0.023065632,0.014468923,-0.0029228812,0.027244955,0.0017176886,0.008821546,-0.03539199,0.023449177,-0.0031576373,-0.00716172,-0.0150111765,0.030789444,-0.012835548,0.0053894753,-0.018714374,0.014905371,-0.05070736,-0.018026637,0.018489538,0.0042917416,0.010626855,0.0074989754,-0.010673145,0.03279975,0.03033977,0.042798385,-0.027456567,0.016704068,-0.0042818226,0.010600404,-0.04134356,0.02393853,-0.019719528,-0.015460851,0.0005265484,-0.010686371,-0.008107358,0.027800435,-0.0042454517,0.020129526,0.0048174635,0.036582302,0.01958727,0.021452095,-0.025882708,-0.059251163,0.04967575,0.025618194,-0.0064673703,0.009866377,-0.039148092,0.007690748,0.015288916,-0.011863459,-0.05107768,-0.0346249,-0.0018813567,-0.012101522,-0.015685689,-0.03835455,-0.005673828,-0.047665447,0.010091214,-0.02097597,0.010342502,-0.0044140797,-0.0014035781,-0.017365353,-0.021187581,-0.0030634042,-0.005439072,-0.012108134,0.010646693,0.027430115,0.018436635,-0.10448308,-0.020936294,0.003557715,0.012392486,-0.008186712,0.0018433328,0.002774092,0.041317105,-0.0034122323,-0.017074388,-0.0029212278,-0.0005319214,0.03145073,-0.024626266,0.02106855,-0.020592425,-0.0124123255,-0.003217153,0.034942318,0.024163365,-0.0012456962,0.029387519,-0.021888545,0.06459435,0.011215399,0.021571128,-0.03205911,-0.01768277,0.016188264,0.03552425,0.009231543,-0.038857125,0.005548184,0.008166874,0.02827656,0.0043677897,0.0037329555,-0.01151959,-0.002116113,-0.05255896,-0.017259547,-0.01202878,-0.0356036,0.0024847796,-0.025724,-0.0018714374,-0.021504998,0.034545545,-0.011248463,-0.0043843216,-0.031926855,-0.03182105,0.030048804,-0.023092084,0.021571128,0.034016516,-0.023158211,0.03502167,-0.009694443,0.01323232,0.037428748,0.003868519,0.013715058,0.0147334365,0.012478454,-0.015421174,-0.010309438,0.0067418036,0.019269854,-0.01833083,0.020433716,0.03145073,0.014257312,-0.0012051925,0.032482333,0.028223658,0.00293776,0.013900218,0.011195561,0.032270722,0.050813165,-0.005518426,-0.009727507,-0.006262372,0.032508787,-0.0039048898,0.005627538,0.0005017502,-0.010064763,0.026504315,0.013278609,-0.009231543,0.021214033,0.0073072026,-0.0028038498,0.023674015,0.00066169864,0.013252158,-0.0014399488,-0.012008942,0.049384788,-0.011440236,-0.0005860641,-0.020222105,-0.00968783,0.010990562,0.016492456,0.04232226,0.05538926,0.0047083516,-0.026530767,-0.03518038,-0.023105308,0.020288233,-0.041687425,-0.03761391,0.020764358,0.00615326,-0.031212667,0.011030239,-0.050866067,0.033275876,-0.016452778,-0.045073207,-0.0012696678,0.021055324,0.014667308,-0.021914996,0.008113971,0.0055514905,-0.029652033,-0.024639491,0.0054919748,-0.0011952732,-0.006001164,-0.020155977,-0.0017970429,0.008332195,0.00094233156,0.0045463364,-0.005310121,0.020632101,0.0028484864,-0.01796051,0.0014630938,0.0022334913,0.0143631175,0.015632786,0.01061363,0.005587861,0.015249239,-0.0036536013,0.0036469884,-0.006004471,-0.0052737505,0.04700416,-0.015950201,0.020394038,0.0026467945,0.007823005,-0.029493324,0.03518038,0.02301273,-0.0002071683,-0.001279587,-0.010937659,-0.0247982,0.006004471,-0.0042057745,0.017021485,-0.0019078081,-0.010210245,-0.00073113356,-0.025089165,-0.022933375,0.049146727,0.03912164,-0.012266843,0.03160944,0.003875132,0.009218317,0.022774667,-0.01814567,-0.012233779,0.054225396,-0.021571128,0.026385285,-0.025776902,-0.035206832,-0.005974713,0.017457932,0.012293294,0.027192052,-0.044068053,-0.03481006,-0.05351121,-0.00880832,0.04512611,-0.005637457,0.03428103,0.053035084,0.01995759,0.004463676,0.035868116,-0.014376343,0.009727507,-0.0070030116,0.045628686,0.030551381,-0.0066988203,-0.020909842,0.049146727,0.0012754541,-0.032535236,0.018185345,0.045760944,-0.036635205,-0.038116485,-0.0022996196,-0.010342502,0.02556529,-0.0051348805,0.0006827771,0.0046752873,0.0061830175,0.0023839336,0.01580472,-0.0053299596,-0.029572679,0.001220898,-0.0071947845,0.0055217324,0.0045628687,-0.013371189,0.013496833,0.001759019,0.04134356,-0.008504129,0.05221509,0.01891276,-0.0019491385,0.0055614095,0.025578516,-0.025089165,0.0026550605,-0.000009267035,0.028699784,0.025155293,0.014667308,0.032905556,0.01052105,0.005217541,0.0021607499,0.01724632,-0.010494598,-0.03221782,0.000008802069,0.025618194,0.016862776,0.02153145,-0.012220553,0.005177864,-0.008728966,0.0027790517,-0.00619955,0.040391307,-0.033249427,0.029837193,0.010216858,0.029070104,-0.0049100434,0.0027542533,0.02079081,0.028038498,0.009112512,-0.030630736,0.009145576,-0.0073997825,-0.036450047,0.031344924,-0.025975287,-0.025128841,-0.015526979,0.021372741,0.024295622,-0.0059945513,-0.015579882,-0.028303012,-0.0024054253,-0.022351444,-0.031159764,-0.00068029726,0.021478547,-0.015355045,0.012941354,-0.006143341,-0.011215399,0.00081338093,0.015791493,-0.0110566905,-0.029070104,0.06485886,-0.02199435,-0.025856256,0.018582117,0.0290172,0.0034287644,0.015103756,0.0014664002,0.009648153,-0.020526296,-0.0055680224,0.05187122,0.024017883,0.0238724,0.02621335,0.003921422,-0.04269258,-0.0066227727,0.005392782,-0.027430115,-0.010355728,0.025975287,0.004301661,0.00799494,0.012518131,0.032455884,0.008107358,0.06956722,-0.021319838,0.017576965,-0.038910028,0.012220553,0.0063582584,-0.0016209757,-0.0073204283,-0.030604284,0.02772108,0.00298405,-0.040708724,0.0058391495,-0.0053729434,-0.0043512573,-0.008801708,-0.010349115,-0.008054455,0.011030239,-0.0072410745,0.009390252,0.0024434493,0.06406532,0.01353651,-0.0032469109,0.02125371,0.009462993,-0.0035940858,-0.014442472,0.026477864,-0.018899534,0.019904688,-0.0017920833,0.030392673,0.031159764,-0.027377212,-0.008034617,-0.01888631,0.030762993,0.0003407686,0.04287774,0.029942999,0.002393853,-0.034386836,0.021174356,0.017418256,0.005495281,-0.0346249,0.00066541834,0.0026782055,0.0477448,0.012194102,-0.012789258,0.013344738,-0.021306613,-0.0025376824,-0.014680534,0.020989196,0.0059185037,-0.03674101,0.035101026,-0.012842161,0.015064079,-0.034016516,-0.01863502,-0.011215399,-0.024956908,-0.006758336,0.009958957,-0.020195654,0.0134703815,0.0033064266,-0.015130208,-0.0035378765,0.012352809,0.00075262535,0.007856069,-0.017550513,0.0039081965,0.029546227,0.011274914,-0.00015674529,-0.034148775,0.025234647,0.020870164,-0.0015548471,0.030075256,0.06776852,0.014336666,0.020539522,-0.022602731,0.04004744,0.02190177,-0.017074388,-0.005072058,-0.023528531,-0.0081602605,-0.010382179,0.008133809,-0.05866923,-0.021055324,-0.03991518,-0.0008596709,-0.009059609,-0.008980255,0.02257628,-0.056658927,0.036053274,-0.006341726,-0.0010249922,-0.0123395845,-0.00041805633,0.013298448,-0.0030171142,0.011585719,0.0034089258,-0.0020565973,-0.0029559454,0.04176678,0.017828252,-0.043671284,-0.0290172,-0.004047066,-0.003713117,0.018185345,0.0005649856,-0.027562372,-0.0028881636,0.027377212,-0.012452003,0.000011004201,0.027430115,-0.0145086,-0.013913443,0.041528717,0.0003659801,0.021928221,-0.007710587,0.00247982,-0.049649302,-0.019322757,0.016122136,0.006672369,0.028884944,0.0110765295,-0.0005141493,-0.00008524381,0.006140034,0.029625582,0.0023674015,0.0148260165,0.0077568768,-0.020552747,-0.018529214,-0.021333065,-0.027377212,-0.013371189,-0.0025046181,-0.013476995,-0.041237753,-0.025155293,0.0083454205,0.02996945,0.018621795,0.006021003,-0.0024070786,0.01743148,0.021756288,0.055283453,0.0013184376,-0.0009448114,0.006996399,-0.021002421,-0.02575045,-0.021650482,-0.024851102,0.014191183,-0.019058242,0.022563055,-0.00633842,-0.014878919,0.0031179602,-0.016135361,-0.0091257375,0.019362435,-0.0016912372,0.018502763,-0.0036635206,-0.03168879,-0.040417757,0.01743148,-0.021478547,-0.054913133,0.037217136,-0.012756194,-0.0145086,0.016095685,-0.045179013,0.013886992,0.0074526854,0.0063285003,-0.0010530968,-0.03052493,0.009244769,0.014283763,0.03727004,-0.021491773,-0.030498479,-0.039730024,-0.021214033,-0.013873766,0.005997858,0.013126514,0.027800435,-0.029519776,-0.01184362,-0.00019549247,-0.018965663,-0.002349216,0.00059061043,0.017629867,-0.015725365,-0.031768147,0.003278322,0.003954486,-0.017047936,0.029043652,-0.019481465,0.00064929953,0.06565241,0.009496057,-0.0155137535,-0.019759206,0.0019342595,0.019944366,-0.02510239,-0.00014114309,0.005687054,-0.005759795,-0.009588637,-0.039968085,-0.0071418816,0.029890096,-0.0048009316,0.002673246,-0.046184167,0.007889134,0.0077568768,-0.017153742,-0.015712138,-0.006642611,-0.011195561,-0.013338125,0.036476497,-0.019084694,-0.023171438,-0.015183111,0.010091214,-0.030921701,0.01617504,-0.039280348,0.033249427,0.0061598727,0.0031989678,0.0044901273,-0.013569575,-0.0067914003,0.006047454,0.0067219655,0.0016532133,-0.03589457,0.0012349504,-0.005118348,0.02707302,0.017087612,0.013728283,-0.042930644,-0.0033593294,-0.016413102,-0.0055845547,0.00029902495,0.004347951,0.0034320708,0.02356821,0.004324806,-0.012809097,0.0050423006,0.00067327113,-0.009257995,0.025922384,0.010289599,0.0028187286,-0.017153742,0.019349208,-0.022840794,0.027615275,-0.00202188,0.00034366173,0.017656319,0.0064144675,0.013543123,-0.032164916,-0.002456675,0.019137597,0.007122043,0.021478547,0.024811424,-0.006844303,-0.0039181155,0.017285999,0.052347347,0.004176017,-0.019362435,-0.002225225,-0.011387333,0.0022136527,0.028355915,0.016267618,-0.007849457,0.038301647,0.008788482,0.010692984,0.01974598,-0.02377982,0.024441106,0.030577833,-0.0019342595,0.036238436,-0.011956039,0.0070625274,-0.045999005,-0.00040937695,0.022496926,-0.016677616,-0.025803354,-0.0018863163,0.015593108,0.03637069,0.05202993,-0.0042884354,0.0070096245,-0.0069699474,-0.000035001627,-0.0038552934,0.012088296,0.01666439,0.0111691095,0.041290656,0.013966346,0.01170475,0.050072525,0.028884944,0.0016995033,0.030472027,0.006579789,-0.0035477958,0.009588637,-0.012961192,0.0063747903,-0.022973051,0.023184663,0.0034287644,-0.00790236,-0.018661471,-0.0009340655,0.016148588,-0.0033890873,0.0028336076,-0.030657187,-0.024136914,0.0076378454,-0.03917454,-0.019045018,0.043671284,-0.017087612,-0.017114064,0.020565974,-0.0026005046,0.016148588,-0.024136914,-0.009522509,0.005310121,-0.010765725,0.0023690546,0.030683639,0.0013994451,-0.027271407,0.042480968,-0.01441602,-0.007088979,0.016466005,-0.0118370075,0.01564601,0.0035246508,0.01731245,-0.02959913,-0.00073815975,-0.00647729,0.012842161,-0.013701832,-0.023991432,-0.0053696367,0.020010494,-0.010309438,0.0238724,-0.00024467558,-0.019322757,0.023647564,-0.026795281,-0.03597392,0.015976653]},{"id":"interface-VoiceManagerOptions","type":"interface","source":"main","text":"Interface: VoiceManagerOptions\nDescription: Options for creating a VoiceManager.\nProperties: shardId: number","meta":{"url":"/docs/typedefs/VoiceManagerOptions"},"embedding":[-0.0253029,-0.0002556129,0.027909003,0.006923944,-0.038238652,-0.02556351,0.002046384,-0.04676772,-0.017022597,0.003669276,0.006977251,-0.029235747,-0.0017857734,-0.029709585,0.018159805,-0.02760101,-0.10111683,0.008623835,-0.0046169497,-0.0004993798,-0.029685892,0.052501146,0.03617746,0.032694757,-0.02736409,0.008475761,-0.035324555,0.026369033,0.0031569395,-0.05548632,0.023194324,-0.030088654,0.03553778,-0.012710679,-0.019510241,-0.022116344,0.037646353,-0.038286034,-0.024686912,-0.013445127,-0.038925715,-0.007083864,-0.0067107175,0.030254496,0.009761044,0.065768585,0.044635452,-0.003239861,-0.011466857,-0.005141132,-0.015020635,-0.02760101,-0.012485607,0.027387783,0.02134636,-0.04702833,0.014617873,-0.008031539,-0.002604623,0.014037423,-0.046270188,-0.0759087,0.003867695,0.027814236,0.04345086,0.072118,-0.076856375,0.058708414,-0.021334514,0.022981098,0.017212132,-0.0154470885,-0.0114017045,0.037764814,-0.010288187,0.027127173,-0.034708567,0.0105251055,0.033310745,-0.029235747,-0.04667295,0.01968793,-0.02774316,-0.005925925,-0.011887387,0.028643452,-0.08017323,-0.006118421,0.00042053038,-0.019711621,-0.03411627,-0.0073622433,-0.0631151,-0.0191904,-0.01808873,-0.014072961,0.053590972,0.0032783602,0.0015488549,0.015257553,0.0091865165,-0.011455012,-0.04908952,0.033002753,0.018917944,-0.006645565,-0.014072961,0.017922888,-0.023016635,0.027506242,-0.08410608,0.010667257,0.0065448745,0.014925867,-0.029306823,-0.04745478,0.034708567,0.003651507,-0.010596181,-0.02294556,-0.019474704,-0.030112345,0.0474074,-0.005949617,0.013066057,0.007160863,0.0051322477,-0.014096653,-0.07396597,0.007776851,0.0113483975,0.021038366,-0.005600162,-0.03544301,-0.0015592201,-0.009802504,-0.021216055,0.038143884,-0.027529934,-0.026937637,-0.0066929488,-0.0034145883,0.033571355,-0.030136038,0.011911079,0.014416493,-0.012864676,0.033026442,-0.010063115,0.029567434,-0.044943444,0.006823254,0.003633738,-0.023277245,0.0043208017,0.010596181,-0.0027689855,0.037148826,-0.039683856,-0.04984766,0.073871195,0.016394762,0.035229787,-0.04461176,0.012935752,-0.000022777958,-0.016134152,0.028809294,-0.03579839,-0.0081026135,0.03977862,-0.057286903,-0.05894533,-0.009660353,-0.0073326286,-0.024829062,-0.007877542,-0.009085826,-0.03276583,0.041839812,0.06259388,0.01727136,0.009464895,-0.004000962,-0.010080883,0.01750828,-0.043901004,0.0024994905,0.053875275,-0.0410106,-0.021358205,0.036248535,0.014144037,0.033144902,0.012876523,0.034329496,0.025421359,-0.017176595,-0.044374842,-0.06761655,0.020351302,-0.020102538,0.041437052,-0.018479645,-0.017958425,-0.0052892063,-0.018977175,-0.011182555,0.026013656,-0.0007736871,0.045938503,-0.008985136,0.021962348,0.002594258,-0.022673104,0.019024558,0.0412949,-0.01776889,-0.011715622,-0.03387935,0.025231823,0.019735314,0.049373824,-0.0015266438,0.050795335,0.0057896967,-0.017413512,-0.042479493,0.033831965,0.020493453,-0.040062923,-0.03245784,-0.035229787,-0.0043504164,-0.011253631,-0.028524991,-0.023869542,0.04347455,0.0378122,-0.043806236,-0.009577432,-0.0066041043,0.028690834,0.0012082845,0.026961328,0.03800173,0.0037551587,-0.02204527,0.009038442,0.003028115,-0.006450107,-0.0031658239,0.040039234,-0.02288633,0.01712921,0.0037403514,-0.04690987,0.021156825,0.045701586,-0.014120345,-0.0020937675,-0.020872522,-0.02876191,0.053733125,-0.03553778,-0.029828044,-0.0061954195,0.0058548492,-0.006479722,-0.013089749,-0.04015769,-0.0038321572,0.03068095,-0.01153201,-0.024971213,-0.012414531,0.004883483,0.011567547,-0.020979136,0.025089672,-0.03743313,0.021192363,-0.03167601,0.059845623,0.031036329,0.012568528,0.03079941,0.03437688,-0.012088768,0.03643807,-0.003313898,0.008132229,0.04487237,-0.062451724,0.005514279,0.041247517,0.05354359,-0.03759897,0.022992944,0.044374842,0.06501044,-0.0017443127,0.021654354,-0.0389731,-0.0050197113,0.0031924772,0.0273404,0.0046702567,0.028406532,-0.051837776,0.003222092,-0.040133998,-0.00413719,-0.017460896,-0.04065522,-0.0058252346,0.042763796,0.011259553,-0.0037610817,0.029591125,-0.0011549778,0.005724544,-0.038783565,-0.028098539,-0.032126155,-0.04908952,0.0019412512,-0.08078922,-0.0034205113,0.0173069,0.018681027,-0.048094463,-0.008167766,0.027198248,0.0010024615,0.012284226,0.0077116983,0.020777756,-0.020055154,-0.006307956,0.02390508,-0.023289092,-0.058471493,-0.009085826,0.011265476,-0.02126344,-0.04871045,0.0106021045,-0.014309879,-0.016465839,-0.030325573,-0.019297015,-0.054301728,-0.038522955,-0.018254573,-0.035466705,0.03224461,-0.07529271,-0.06842207,-0.016359225,-0.042029347,0.00773539,0.016998906,0.03859403,-0.015435242,-0.014298034,-0.033666123,0.000951376,-0.027790545,-0.031628624,0.021452973,-0.0066396417,-0.07510318,0.008185536,-0.015387859,-0.018645488,0.0091865165,-0.018941637,-0.018775795,0.0071845544,0.041626588,0.007433319,-0.042977024,-0.00413719,0.020315764,-0.016015694,-0.012378993,0.030017579,-0.025539817,0.008600143,0.030586183,0.036106385,-0.026155805,0.0069890968,-0.026487492,-0.004634719,-0.0038825024,0.0039624623,0.0039802315,-0.017235823,0.0383808,0.034684874,-0.032220922,0.025231823,-0.017674122,-0.055154637,-0.021583278,0.05306975,-0.002240361,-0.031202171,0.051032253,-0.022400647,0.022353264,0.06728487,0.068043,-0.056433994,0.003485664,-0.030064963,0.03245784,0.022969251,-0.018965328,0.043664087,0.014996943,-0.031391706,0.014167728,0.0244263,0.0032990905,0.022033423,0.004883483,-0.026534876,-0.047525857,0.06946451,0.075813934,-0.019261478,-0.005718621,-0.04871045,-0.00020082548,0.005484664,0.007717621,-0.017141055,-0.0191904,0.007705775,0.021749122,0.00019175594,-0.008872599,0.009346436,-0.00413719,0.0061894967,0.02044607,-0.038830947,-0.044422224,0.012124306,-0.029496357,0.03181816,-0.01541155,-0.0546808,0.0098795025,0.01782812,-0.022412494,-0.016122306,-0.012177613,-0.05008458,-0.02608473,0.03387935,-0.03425842,0.0357747,-0.04093952,-0.0077116983,-0.044043157,0.008226996,0.005478741,-0.021334514,-0.004273418,0.004267495,0.03731467,-0.00573639,0.0063612624,-0.0047976,0.010625796,-0.02710348,0.023348322,0.05813981,-0.027316706,0.035869464,0.019060096,0.10509706,0.03027819,0.028406532,-0.028856678,-0.01573139,0.009559663,-0.005152978,0.023336476,-0.011466857,0.036935598,-0.0029910966,0.014309879,-0.022637567,0.00859422,-0.015079864,0.006272418,-0.028169613,-0.0006400502,0.04226627,0.02340755,0.040039234,0.000805523,-0.048426148,-0.029330514,0.027174557,-0.043261323,0.020682989,-0.038570337,-0.029235747,0.001537009,0.0041964194,-0.024615835,0.034850717,0.002352897,0.023691854,-0.038499262,0.005582393,0.004187535,-0.017472742,0.01654876,-0.007972308,-0.042503186,-0.0044303765,-0.0070009427,0.00094471266,-0.008866676,-0.033429205,-0.054538645,0.026890254,-0.02876191,-0.00096544303,0.04257426,0.008369147,0.034163654,0.0056268154,0.017472742,0.035371937,0.002964443,0.0011468338,-0.03771743,0.0005752678,0.015695853,0.026416417,0.01553001,0.025776736,-0.006799562,-0.013314822,0.011046327,-0.04205304,0.025989963,0.020540837,0.007877542,0.030183421,0.00865345,0.0010876041,0.020659296,-0.013907118,0.016773833,-0.0029792506,-0.045677893,-0.046056964,-0.02582412,-0.0027734276,-0.03748051,-0.00043940984,0.024070922,-0.0013037923,0.027553625,0.027269322,0.0041816123,-0.00795454,-0.007113479,0.01910748,0.008712679,-0.0024935675,-0.010815331,-0.013148978,-0.0037403514,0.023691854,-0.00096988527,0.0060058846,-0.011887387,0.0076702377,0.042005654,0.043379784,0.01153201,-0.0150087895,0.034992866,0.01564847,0.013646508,-0.008067076,0.015755083,0.03454272,0.021275284,-0.0073444746,0.01596831,0.036746066,-0.030112345,-0.021571433,0.033215977,0.0077116983,0.0046702567,0.02206896,-0.005046365,0.009079902,-0.011099634,0.018455954,-0.026677027,-0.0546808,-0.044327457,0.018313803,-0.030775718,-0.017354283,0.016607989,0.01776889,-0.036722373,0.004714679,-0.0052714376,0.028809294,-0.022175575,0.012556682,-0.036248535,-0.038902022,-0.011668238,-0.01147278,-0.0012090249,0.0014918464,0.0052743987,-0.0018731372,-0.025468742,0.006752178,0.010483645,0.042147808,-0.0021263438,-0.005712698,0.055012483,-0.026037347,0.004690987,0.016880445,0.015861696,-0.011686007,-0.032220922,0.032055076,-0.016513221,0.005484664,-0.031628624,0.0014659334,0.025753045,0.009897272,0.00725563,0.021452973,0.001023192,-0.0070127887,0.008363225,0.00041238632,-0.0012667738,0.036722373,0.01724767,0.010335571,0.025847811,0.037006676,0.03428211,0.033073828,-0.025895195,0.009352359,0.02925944,0.04295333,-0.0002824513,-0.02102652,-0.0028311764,0.0025142978,0.0017383897,-0.029354207,-0.0056060846,-0.011200324,0.02954374,0.020055154,-0.03132063,-0.038451876,0.05112702,0.006781793,0.032931678,0.0020078847,0.04179243,0.014013731,0.020481607,-0.007433319,0.013220054,-0.008197381,-0.0037492358,0.024331534,0.027956387,0.017733352,0.0017295053,-0.0016717564,-0.031770777,-0.0011164786,-0.026155805,-0.0039032327,-0.0007229717,0.045061905,-0.020742217,0.036627606,0.034211036,0.009565586,-0.03873618,0.0056297765,-0.02364447,-0.038783565,0.016998906,0.01169193,-0.018491492,-0.023561548,0.02506598,-0.0022092653,-0.008789677,-0.00076258153,-0.016122306,0.013042365,0.019936694,0.017603047,0.003370166,0.011407628,-0.017579354,0.0073563205,0.01451126,0.0025335476,-0.016963366,0.0039743083,0.011638623,0.050937485,0.014736333,0.009358282,-0.013575432,-0.024331534,0.03437688,0.02824069,-0.03658022,0.010839023,-0.022080807,-0.016442146,0.03134432,0.0032694757,-0.020457916,0.048402455,-0.038025424,0.0072023235,0.001337109,0.009524125,0.021879427,-0.005798581,0.0052714376,-0.01974716,-0.07965201,0.018230882,-0.012053231,0.0019605008,-0.030609874,0.007741313,-0.018136114,-0.011549778,0.014369109,-0.018278265,0.05813981,0.06382585,-0.02544505,-0.0067462553,-0.061172366,-0.00849353,0.019901156,-0.048094463,0.0017635623,-0.048212923,-0.0102408035,-0.04053676,0.026108423,-0.03245784,-0.03591685,-0.022151884,0.026155805,-0.044398535,0.0055468553,-0.051932544,0.0005034519,0.009986117,-0.02492383,0.012461915,-0.058755796,-0.029235747,-0.008363225,0.0038262343,-0.0044422224,-0.06700056,-0.008357301,0.006284264,-0.026558567,-0.007729467,-0.018219035,0.023419397,0.025160749,-0.017709661,-0.012935752,-0.0048864447,0.0022151882,0.03821496,-0.0108094085,0.016915983,-0.0014629719,-0.022542799,0.018017655,0.018763948,0.016240766,-0.009168747,0.0070424033,-0.038878333,0.041650277,-0.04641234,-0.03999185,0.006787716,0.0058518876,0.03271845,-0.0080256155,-0.0340215,0.012189458,-0.018100576,0.029899118,0.02876191,0.0005682343,-0.008777832,-0.004163843,-0.01910748,-0.014617873,0.010080883,-0.034969177,0.012094691,0.053733125,-0.011780774,-0.029993886,0.034045193,0.017863657,-0.021441128,0.015387859,0.031083712,0.026653334,-0.009624816,0.019605009,0.01355174,0.03951801,0.004149036,0.03755159,-0.0015518164,0.00907398,0.05908748,0.03963647,0.0010846427,-0.027956387,-0.039920773,-0.020943599,-0.009287206,-0.011407628,0.00557647,0.008801524,-0.0037966196,0.024355225,0.015636623,0.022140037,0.006965405,-0.0056031235,-0.011170709,0.01009273,0.0044984906,0.0029851736,0.03999185,0.0106021045,0.03639069,0.011099634,0.012627758,0.023111403,-0.010584336,-0.0031628625,0.022459878,0.0050137886,0.019131172,-0.013966348,-0.045038212,0.000012771389,-0.009109518,-0.009269438,-0.008582374,-0.01009273,0.0015414512,0.009026596,0.029164672,0.026463801,0.035727315,0.024201227,-0.0015666238,0.000022384636,-0.015861696,0.020884369,-0.001151276,0.04818923,-0.009790658,0.0062250346,-0.035087634,0.068895906,-0.029188363,0.0015488549,0.035987925,0.001428915,-0.0028252534,0.008961444,-0.007747236,0.004273418,-0.011585317,-0.009838042,0.03146278,0.03544301,0.016773833,-0.008511298,-0.021322668,-0.0189061,0.02748255,-0.0033316668,0.009429358,0.013492511,-0.0012097652,0.00997427,-0.0059733083,-0.021689892,-0.028856678,-0.020220997,0.0039121173,0.02582412,0.005034519,-0.0021396705,0.00869491,0.019865619,-0.0108331,-0.0047976,-0.04781016,0.011715622,-0.0008551278,-0.013563586,0.026463801,0.033903044,-0.016074922,0.062214807,0.009002904,0.01387158,0.028690834,0.0212279,-0.014179574,0.000016982247,-0.020659296,0.035987925,-0.031202171,-0.024378916,0.011283245,0.017579354,0.0042201113,0.013077903,-0.019616855,-0.012888368,-0.0034205113,-0.009002904,-0.0005526865,0.054633413,0.011176632,-0.02184389,0.016572451,0.017709661,-0.0006145075,-0.008955521,0.0035508166,0.01648953,0.059134867,0.0015118364,-0.012414531,-0.018692872,-0.014298034,0.002776389,-0.02000777,-0.0038143883,-0.01291206,-0.010939714,-0.023834005,-0.0030295958,0.020434223,0.0328606,0.0014785198,-0.035727315,0.026819179,-0.010483645,-0.0046317573,0.014831101,-0.008457991,-0.00983212,-0.031889234,0.03181816,0.014688949,0.0074629337,-0.0042941486,0.02632165,-0.001403002,-0.018550722,0.009210208,0.016477684,-0.022258496,-0.041081674,-0.024615835,0.00025080048,0.022448031,0.0070542493,-0.016193382,0.035063945,0.01143132,0.028667143,-0.011182555,-0.023502318,-0.04866307,-0.0029052135,0.02492383,-0.009506356,0.00084698375,-0.0669058,0.0067166407,0.039446935,-0.026819179,0.01834934,0.0014681545,0.006159882,0.0015125767,0.008434299,-0.016667219,0.008031539,0.00069113576,-0.031747084,0.030183421,0.03774112,-0.009660353,0.013622816,-0.008132229,-0.028951446,0.017922888,-0.02428415,-0.017993962,0.027127173,-0.012248688,0.0029970196,0.005925925,-0.0024609913,-0.022116344,0.017875504,0.016181536,0.013125286,0.03691191,0.012615912,0.01968793,0.018444108,0.003210246,0.0073503973,0.020813294,-0.0032605913,0.026108423,0.008292149,-0.0328606,-0.015944617,-0.004634719,-0.007960463,-0.051932544,0.008996981,-0.034590106,0.009358282,-0.009316822,-0.0033612817,-0.0164303,-0.023194324,-0.018692872,-0.006337571,0.0061894967,0.02428415,0.02262572,0.03451903,-0.019995924,0.010033499,0.002960001,-0.001982712,-0.064726144,0.02736409,0.00072260154,-0.01547078,-0.03323967,0.014523106,-0.01698706,-0.0025054135,0.015695853,-0.026629644,0.03435319,0.00943528,-0.018384878,0.024473684,0.002686064,0.010720564,0.0097255055,-0.00517667,0.009855811,0.007231938,-0.00079441746,-0.02899883,0.0062368806,0.018598106,-0.0119170025,-0.002342532,0.014120345,-0.01329113,-0.022021579,-0.014167728,0.013350359,-0.009612969,0.03158124,0.012805447,-0.0003179891,-0.018479645,0.031533856,0.013990039,0.007125325,-0.03245784,-0.02954374,0.039020482,-0.011650469,-0.003399781,0.014558644,-0.0041727275,-0.02504229,-0.0076287766,0.012852831,0.038262345,0.013338514,0.0116327,0.04252688,-0.02582412,0.05908748,0.00013946727,-0.008996981,-0.011686007,0.054159578,-0.008949597,0.000991356,-0.0016984098,-0.04093952,-0.020363148,-0.009897272,-0.010199343,-0.001237159,-0.02518444,0.019853773,-0.036366995,-0.0017576393,0.049895044,0.007374089,-0.0135398945,0.0066988715,-0.000101800935,0.021689892,0.014937714,-0.02032761,-0.029472666,0.008943675,-0.009784736,0.03397412,0.021500356,0.016560605,-0.0051855543,0.0357747,-0.025966272,-0.023158787,0.014203266,0.0051559396,0.03707775,0.03271845,-0.0067699472,0.010442184,-0.031391706,-0.0048479456,-0.03219723,0.0052151694,-0.010957482,0.008949597,-0.027293015,0.020280227,-0.01143132,0.0012119864,-0.0048657143,0.0066988715,-0.028809294,-0.006965405,-0.027293015,0.030752026,0.023194324,-0.03617746,-0.00525663,-0.020517144,0.012497453,0.0063731084,0.06723748,0.035490397,0.014025577,0.0028874446,0.022329573,0.0077946195,0.036153767,-0.024734294,0.0028593105,-0.0011616412,0.00045643837,0.013338514,-0.006112498,0.014049269,-0.04830769,-0.00093212636,-0.014653412,0.029685892,-0.013480664,-0.010110498,0.015932772,-0.02928313,0.021760967,-0.0008936271,0.011235861,0.004267495,0.021689892,-0.011922925,0.0090325195,-0.0057097366,0.009304975,-0.018053193,0.0023380897,0.016821217,0.031202171,0.0024195304,-0.013148978,-0.008706756,0.0053691664,0.0062605725,-0.0056890063,-0.021701738,-0.039968155,0.018313803,0.005884464,0.040844753,0.0045458744,0.015636623,-0.012686987,0.016667219,-0.011425396,0.0030355188,-0.021820197,0.030159729,-0.011863695,-0.036982983,-0.005280322,0.021962348,0.020161767,-0.02710348,-0.002216669,-0.015932772,0.010258572,0.010803485,0.0067699472,0.022542799,-0.010702794,0.017685968,0.0018997905,-0.0031125173,-0.0039920774,0.003610046,0.02925944,0.015423397,-0.013279283,-0.019545779,-0.01718844,0.008126305,-0.004338571,-0.015589239,0.0021130173,-0.003986154,0.043758854,0.00605623,-0.0020034423,0.013374051,0.027719468,-0.015245708,-0.039020482,-0.013468819,-0.01808873,0.024568452,-0.006793639,0.036888216,0.032789525,-0.02480537,-0.019972233,-0.028074846,-0.014238804,-0.00021748382,-0.009790658,0.038286034,-0.052216846,-0.012367147,-0.019474704,0.013326667,-0.019936694,-0.010377032,0.014807409,-0.024876446,0.008345455,0.0314154,-0.019391783,0.000035098186,0.015399705,-0.0039950386,-0.012094691,-0.0082566105,-0.003136209,0.016264457,0.042100422,-0.004901252,-0.00581635,-0.029235747,-0.0062013427,-0.016761987,0.026558567,0.0135398945,0.026629644,0.0038499262,-0.016335532,-0.014452031,-0.0050434032,-0.015233861,0.030988945,-0.008126305,0.010898253,-0.0207896,0.012319764,0.0100098085,-0.032149844,0.013042365,-0.0046258345,-0.024568452,-0.010957482,-0.012615912,-0.019000866,-0.0034560491,0.005138171,0.015956463,0.011342475,0.025705662,0.014298034,-0.031012636,-0.030988945,-0.027150864,0.03771743,0.011330629,-0.0023810312,0.030112345,-0.058376726,-0.009145055,0.017757043,0.006349417,0.026629644,0.01259222,-0.005920002,0.0145704895,0.033168595,-0.012544836,-0.016063077,0.0029718468,-0.02454476,-0.016110461,-0.0060384613,0.004539951,-0.0007907156,-0.03312121,-0.010856791,-0.027316706,0.015624777,0.006503414,0.040323533,0.007919002,0.040181383,-0.031865545,0.0033583203,0.0012467838,0.039210018,0.011934771,-0.0056031235,-0.035111327,0.015352321,-0.001337109,-0.027648393,-0.01966424,0.01625261,0.005280322,-0.026440108,0.0244263,0.0052270154,-0.000047383706,-0.0063790316,0.003393858,-0.028809294,0.00789531,-0.03745682,-0.001385233,-0.007273399,-0.00056638336,0.030230805,-0.010483645,-0.00245803,0.0036751986,-0.010400724,0.032647375,-0.015056172,-0.018799486,0.04754955,0.025516126,0.008564605,0.0073918584,0.016501376,-0.009678122,-0.0083869165,0.026534876,-0.006562643,0.006562643,-0.006645565,-0.014700795,-0.014475723,0.009648507,0.03155755,-0.012864676,-0.0380965,-0.014866638,-0.01596831,-0.023822159,-0.022708641,0.018538876,-0.002656449,-0.002336609,0.038665105,-0.009156901,-0.0052477457,-0.01698706,0.009328667,0.026108423,-0.004551797,-0.014985098,0.008126305,0.021488512,0.018207189,-0.028169613,0.00020878446,-0.019202247,-0.003953578,-0.010051269,0.0043800315,-0.003938771,0.02454476,0.01808873,-0.012284226,0.0057956195,0.015174632,0.0042319573,0.021689892,0.009802504,-0.009755121,0.019533932,-0.01878764,-0.0062605725,0.014404647,-0.045677893,-0.0023795506,0.04577266,0.00026486753,0.06794824,-0.030254496,-0.042029347,0.0232654,-0.019083789,0.012201305,0.0060828836,0.01227238,0.017223977,-0.03466118,0.0011571989,0.09798951,-0.0038765795,0.029496357,0.0132319005,0.012710679,0.027316706,0.00069668854,0.0027467743,-0.028975137,-0.015612931,-0.031391706,0.033050135,0.021760967,0.025918888,0.05818719,0.009376051,-0.007907156,0.0025083749,0.013279283,-0.01904825,0.010714641,-0.0273404,-0.017081827,0.0028815216,-0.01462972,-0.021310823,-0.0058489265,-0.016157843,-0.012686987,0.048899986,0.043142866,0.013326667,0.013374051,-0.015861696,0.023751084,-0.030704642,-0.016382916,-0.008161844]},{"id":"interface-VoiceStateMap","type":"interface","source":"main","text":"Interface: VoiceStateMap\nDescription: Maps guild_id -> user_id -> channel_id (null if not in voice).","meta":{"url":"/docs/typedefs/VoiceStateMap"},"embedding":[-0.02025531,-0.022352865,0.013583567,0.018107211,-0.014291177,-0.037756,-0.008042735,-0.030831538,-0.00284939,-0.006545384,0.009470589,0.018157754,0.0051554376,0.031766593,0.025751917,-0.04746035,-0.060450032,0.022896208,-0.0162371,0.015731666,-0.035228822,0.016388731,0.007979556,0.009786487,-0.047232907,0.024854768,-0.03879214,-0.012218893,-0.02506958,-0.031412788,0.022163328,-0.033965237,0.0511753,-0.031463332,-0.01657827,0.004792156,0.008301771,0.04078861,-0.04945682,0.017424874,-0.021897973,0.034091596,0.027091319,0.038665783,-0.049482092,0.050391875,-0.0134193,0.04298725,-0.011201705,0.026889145,-0.014025823,-0.00018845225,-0.024134524,-0.0015794846,0.024905313,-0.026333166,0.009085195,-0.036391325,-0.03201931,0.027091319,-0.034950834,-0.04799106,-0.003917122,0.022757214,0.03217094,0.029669037,-0.04066225,0.018006124,0.022782486,-0.005183868,0.021986425,0.004836382,-0.027344037,0.009078877,-0.013368757,0.012016718,-0.05046769,0.026560612,-0.005427109,-0.038311977,-0.03836252,0.030048113,-0.009887573,-0.041167684,0.0068928706,0.007480439,-0.035557356,-0.0016442434,0.007562572,-0.0057745953,-0.016805716,-0.013406665,-0.05857992,-0.0240208,0.039044857,-0.036694586,0.026156263,-0.0091041485,-0.0233511,0.011012167,0.041420404,-0.024639959,-0.012831733,-0.05635601,0.0334598,-0.009716989,0.006153672,0.03419268,-0.06787993,-0.008819842,-0.049532637,0.046297852,-0.0021986426,-0.019535065,-0.0085608065,-0.00041264034,0.040611707,-0.040889695,0.03864051,-0.024538873,-0.052868508,-0.023186833,0.022744577,-0.018056666,0.028708711,-0.02240341,-0.0003790763,-0.026257351,-0.037983444,-0.005960975,0.022302322,-0.039727196,0.00269618,0.027622025,-0.052312527,0.00094769074,-0.0342685,0.03618915,-0.044604644,-0.022441316,-0.029037245,0.031336974,0.00857976,0.02105137,0.03487502,0.003086313,-0.05337394,0.067728296,0.010317193,0.0076889307,-0.0390954,-0.0112396125,-0.054182637,-0.017778678,-0.00056624523,-0.015377861,-0.0030468258,0.011713457,-0.03687149,-0.02810219,0.018637918,-0.038387794,0.05984351,-0.0044509876,-0.055446226,0.0075120283,0.00643482,0.035102464,-0.036568224,0.00793533,-0.0137351975,-0.0071266345,-0.046500023,0.0035412044,-0.05650764,-0.05221144,-0.011201705,-0.027874744,-0.056153834,-0.024829498,0.034647573,-0.0072403573,-0.02926469,-0.04051062,-0.024222976,0.043745402,-0.0029062515,0.0054744934,0.025815096,-0.0649484,-0.016603542,0.03315654,0.029087787,0.06535275,0.028910885,0.008611349,0.049482092,-0.0137351975,0.010096066,-0.029466864,0.0056735086,-0.040080998,0.015112508,-0.028582353,-0.022694035,-0.020975554,0.019674059,0.0150746,0.014682888,0.021746343,0.005303909,0.0031273793,0.007745792,-0.025297025,-0.046323124,0.009059924,-0.0743495,0.019813053,-0.015491584,-0.02225178,-0.030528277,0.042380728,0.016199194,-0.017083704,-0.0012248902,0.025158029,0.054586984,-0.073490255,-0.010348783,0.0020912376,-0.01130911,0.015390498,0.016704628,-0.06550438,0.00032655842,-0.030376647,0.0003129354,0.04685383,0.05145329,0.011561827,-0.0891082,-0.001949084,0.043644316,0.023111017,-0.013394029,0.0055755805,0.016376095,0.01608547,-0.0324742,0.00067246554,0.061663076,0.0645946,0.020596478,0.002561924,-0.00337062,0.04136986,0.011087982,0.06611091,0.03431904,-0.0106899515,0.026737515,-0.03477393,-0.012964409,0.021076642,-0.045514427,-0.027167134,0.022605583,0.012907548,-0.034066323,0.015049329,-0.03720002,-0.020305853,0.018486287,-0.007366716,-0.012692737,-0.027950559,0.024463058,0.01731115,0.006829691,-0.029188875,-0.05696253,0.018044032,-0.00036782247,0.045666058,0.009716989,0.035683714,0.0014862949,0.051958725,0.0013070235,0.011801909,-0.04412448,0.0614609,0.0050385557,0.00061402464,0.014114274,0.048016332,0.018928543,-0.013811013,0.02083656,0.043745402,0.048799753,-0.012541107,-0.020545935,-0.008567125,0.002614047,0.003177923,0.025865639,-0.039348118,-0.0053828834,-0.027419852,0.021190364,-0.0018179867,-0.01069627,0.01369729,-0.04066225,-0.030225016,0.023944985,0.028380178,-0.0053418167,0.040813882,-0.0051301657,0.026408982,0.018119847,-0.040914968,-0.0009769112,-0.011328063,-0.0050322376,-0.027925286,-0.034521215,0.015529492,0.026156263,-0.023553273,-0.014657617,-0.019737238,0.03520355,0.0023123655,-0.044882633,0.06515058,-0.0038886908,0.0068170554,-0.0030499846,-0.039272305,-0.03416741,0.023957621,0.0078026536,0.0045836642,-0.04998753,-0.011517601,-0.0066970144,-0.0053386576,-0.02083656,0.033232354,0.0027135545,-0.062522314,-0.016767807,-0.03257529,0.038893227,-0.011372289,-0.034217954,0.0278242,-0.014834519,-0.027622025,-0.023186833,0.023679633,-0.023742812,-0.026863873,-0.02558765,0.036416594,-0.054586984,-0.0536772,0.009792804,-0.040156815,-0.034799203,0.02025531,0.009059924,-0.005610329,-0.015794845,0.01782922,-0.0041477266,0.0420522,0.017563868,0.025777187,0.011877724,-0.054991335,0.018878,-0.027344037,-0.000045311463,0.0068612806,-0.05767014,-0.057872314,-0.0105699105,-0.03085681,-0.012648513,-0.010121337,0.009040969,-0.016830988,0.04900193,0.01464498,-0.005932544,-0.02221387,0.06641417,0.039423935,-0.0125790145,-0.012004083,-0.03300491,0.0015763256,-0.027495667,-0.01679308,0.014240633,0.038867954,0.010127655,-0.022365501,0.013229762,0.026585884,0.05236307,-0.049861167,-0.03217094,-0.04516062,0.02999757,0.03649241,0.04298725,0.0095337685,0.041572034,-0.0055566267,0.060399488,-0.0027562005,0.011479693,0.0069118245,0.04584296,-0.031943496,-0.050796222,0.040763337,-0.003781286,0.0048648124,0.023414278,-0.032398388,0.045211166,0.0039455523,0.0063053025,0.020823924,-0.013040224,-0.023982894,-0.02031849,-0.006532748,0.00873139,-0.019585608,0.022858301,-0.03272692,0.017627047,-0.0047700433,-0.005120689,0.013090768,-0.04179948,0.072327755,-0.03272692,-0.051958725,-0.0122125745,0.073793516,-0.07283319,-0.018119847,-0.01890327,-0.004921674,0.014543894,0.058984272,0.000014067285,0.002711975,-0.02926469,-0.012572697,0.011365971,0.038413063,-0.0028225388,-0.031160071,-0.005373406,0.030199744,0.02855708,0.053879377,-0.009735943,-0.010254013,0.016477183,0.03765491,-0.0013070235,0.023919715,-0.063988075,-0.014139546,0.0665658,0.073793516,0.010993212,-0.003661245,0.0054555396,0.02681333,-0.009874937,-0.02025531,0.038413063,-0.013394029,0.023275284,0.00056703493,0.038893227,-0.03330817,0.023629088,-0.013280306,-0.006267395,-0.013684654,0.010967941,0.016224464,0.049557906,0.02558765,-0.00670965,-0.005916749,-0.028708711,-0.009818076,-0.015731666,-0.008832478,-0.041572034,-0.044756275,-0.018574739,-0.016527727,-0.001483136,-0.0025635033,-0.00078737305,0.045918774,-0.041142415,0.0018811661,0.006842327,-0.025158029,-0.0043720133,0.0074741207,0.013987916,-0.015643215,0.015428405,-0.010146609,0.022668762,-0.013608838,-0.035633173,0.026232079,-0.03591116,-0.023755448,-0.0012146236,0.011302792,0.046828557,0.011820862,-0.015883297,0.012989681,0.021089278,0.038135074,0.00502592,0.019585608,-0.0125790145,0.025044307,0.024816861,-0.014607073,-0.035835344,-0.02068493,0.0041414085,-0.041117143,0.046449482,0.0011443365,0.020154223,-0.010096066,0.0057903905,-0.020091044,-0.021594713,-0.039398663,0.0121557135,0.0038255116,-0.03073045,-0.023982894,-0.017664956,0.0027893698,-0.0016410844,-0.011599734,-0.0105699105,0.024993764,0.04311361,0.054283723,0.030780995,-0.021089278,-0.010904761,0.01976251,0.029871212,0.017058434,-0.009243144,-0.0081311865,0.028936157,-0.031084256,-0.018461015,-0.036669314,-0.027723113,-0.045185894,-0.005237571,0.04109187,-0.001274644,0.0032821689,0.010727859,0.006640153,-0.014430171,-0.007151906,0.0040403213,0.00640323,-0.011890359,-0.026434254,-0.009881255,0.028430723,-0.0321204,0.012857004,0.021253545,0.0018006124,-0.01286964,0.008832478,-0.0010653624,0.03257529,0.009211554,-0.0152009595,-0.024993764,-0.036138605,-0.016489819,0.0073856697,-0.008946201,-0.014960878,0.030326104,-0.0045583923,-0.022390774,0.0076826126,0.006760194,0.028127462,-0.0019964685,0.0301492,-0.025549741,0.0050827814,-0.028455993,-0.04359377,-0.03500138,-0.005531355,0.0014783975,-0.009401092,-0.03255002,-0.03550681,-0.010323511,0.013014953,0.018056666,-0.028304363,0.027040776,-0.037098933,0.021215636,-0.007562572,0.03836252,-0.0028541286,-0.015213595,0.015883297,-0.024475692,0.0122125745,-0.01902963,-0.0006835219,-0.01731115,0.015327318,-0.0031573896,-0.01875164,-0.014720796,0.0050322376,0.03401578,-0.047915243,-0.0010558855,0.02825382,-0.005847252,0.024425149,0.033232354,0.0050764633,0.0037402194,0.03618915,-0.017450145,0.01782922,0.0071961316,0.020925011,-0.007341444,-0.0005125427,0.03201931,0.006172626,-0.021897973,-0.033409256,0.015099872,-0.034698118,0.02653534,0.010519367,-0.020027865,-0.010595182,0.010165563,0.012067262,0.019876234,-0.037680183,0.028380178,-0.034394857,-0.0052660014,0.029214146,0.0004394916,0.011612371,0.015365225,0.028279092,0.012319979,0.0073161726,-0.00735408,-0.016489819,-0.05620438,0.005585057,-0.022504495,-0.0005682196,0.0061568306,-0.031185344,-0.009123103,0.0068612806,0.01470816,0.00056703493,-0.018410472,0.020192131,-0.014581801,0.027975831,0.03330817,0.036593497,-0.037124205,-0.014101638,0.033864148,0.039120674,0.039272305,0.027773656,0.00873139,0.007796336,-0.012964409,0.0087440265,-0.05999514,-0.016603542,-0.0058820006,-0.0009784907,-0.014000551,-0.010986894,0.001284121,0.021872701,0.0026108879,0.033485074,-0.027596755,-0.015959112,-0.038665783,-0.010588865,0.0112396125,0.019711968,-0.02668697,-0.026560612,-0.011985129,0.0332829,0.0008086961,-0.006640153,-0.04814269,-0.029770125,0.0023518526,0.009325277,-0.033030182,-0.0052754786,0.0014641822,-0.017475417,0.011486012,0.0073351264,-0.013747834,0.044326656,0.00061757845,0.034293767,-0.006633835,0.023262648,-0.016464546,0.005228094,-0.010462506,-0.022908844,0.052110355,0.015997019,-0.05175655,-0.022163328,-0.022150692,0.017980851,0.013672018,-0.019231804,0.0026235238,-0.050164428,0.0072024497,-0.010702588,-0.009559041,-0.03661877,-0.0154410405,-0.01715952,-0.0023771243,-0.008567125,-0.0086176675,0.00008484793,-0.014013187,-0.017336423,-0.05504188,0.01614865,-0.027571483,0.005316545,-0.041774206,-0.006842327,0.04528698,-0.07697776,0.01044987,0.006640153,-0.016856259,0.02561292,-0.012787507,0.022138055,0.020950284,-0.02546129,-0.048370134,-0.011587098,-0.018006124,-0.0056671905,-0.0068612806,0.047182363,-0.038236164,-0.044099208,0.04960845,0.018776912,-0.0034116865,-0.020204766,0.021986425,-0.040813882,0.027748385,-0.004624731,0.014366992,-0.01782922,0.003272692,0.044149753,0.012572697,-0.008649257,-0.028632896,0.014215361,0.031210614,0.021733707,-0.012332615,-0.0012122544,0.023831263,-0.03575953,-0.038160346,-0.019155988,-0.03967665,-0.02221387,0.007265629,0.008049053,0.016856259,-0.044832088,0.036138605,-0.021809522,0.017563868,-0.03388942,0.0051270067,0.013823649,0.008023782,0.031463332,0.016616177,-0.0039234394,0.015264139,-0.0067159683,-0.011347017,0.012098852,0.02307311,0.038539425,-0.015238867,0.0011861929,-0.038160346,-0.015630579,-0.00937582,0.016843623,-0.002028058,-0.0026393186,-0.0012019877,-0.010304557,0.030654635,0.022592947,0.041294046,-0.0069307783,-0.010228742,-0.00058204005,0.015415769,0.022782486,0.043922305,-0.003582271,-0.034647573,0.02999757,-0.0074488493,0.02696496,0.0036391325,-0.0041382494,-0.032145668,0.0017800791,-0.0134319365,-0.010532003,-0.0014073207,-0.0059767696,-0.02896143,0.0000042109305,-0.005919908,0.0009153113,-0.031033712,0.02883507,-0.012509517,0.00337062,-0.038716324,-0.03158969,-0.0018527354,0.017450145,0.04136986,0.02984594,0.017386965,-0.016338188,0.002043853,-0.01694471,-0.0060431077,-0.05837775,-0.032221485,0.013292942,0.027925286,0.00018845225,0.010866853,-0.025398111,-0.000548476,0.004296198,-0.015112508,0.018890636,0.040535893,0.045489155,0.008466037,0.0052533657,0.008939883,-0.012383159,0.0010732597,-0.0066527887,-0.012174667,-0.029239418,0.043164153,0.000058589005,0.0010171881,-0.017386965,-0.013255035,0.018675825,0.014796611,-0.008573442,-0.010475142,-0.0055029243,0.016894167,0.012743281,0.010361419,-0.016047563,0.019067537,-0.009641173,0.0022728783,0.0113596525,-0.022466589,0.017715499,0.049406275,0.012850686,0.01715952,0.0036486094,0.02313629,-0.021228272,-0.0064948406,-0.011189069,0.032069854,-0.025549741,0.0012493723,-0.0007948756,0.012218893,-0.03472339,0.027622025,-0.017778678,0.0024276678,-0.006880235,0.007265629,-0.025360204,0.026055178,0.049103014,-0.017488053,0.025334932,-0.0021417812,-0.021240909,-0.0095337685,-0.028784527,-0.028531808,0.05782177,0.0041698394,-0.006640153,-0.04715709,-0.014354356,-0.024096616,0.012629558,0.0026851238,0.0061915796,0.027723113,-0.016616177,-0.04382122,0.03965138,0.021822158,-0.011713457,-0.0008110653,0.0009176805,-0.003961347,-0.012755917,0.0047479304,-0.035708986,0.029441591,-0.045514427,0.00980544,0.015971748,0.0070192292,-0.017993487,-0.015997019,0.014291177,-0.014632345,-0.009634856,0.021708436,-0.019749874,-0.0602984,0.01645191,-0.0037181065,0.012863322,-0.018776912,-0.05549677,0.010550957,-0.025511835,0.026055178,-0.031185344,-0.018675825,-0.05782177,-0.0021370426,0.021594713,0.002656693,0.00034235328,-0.014758703,0.026257351,0.01823357,0.023894442,0.01767759,0.021518897,0.015150416,-0.0073098545,0.015251502,-0.00038618397,-0.0266617,0.010904761,-0.039600838,0.02175898,0.0321204,0.018625282,0.057366878,-0.013836285,-0.007865833,-0.009540087,-0.013229762,-0.033864148,-0.01645191,-0.022188598,0.01290123,0.019143352,0.014670253,-0.014960878,-0.038842686,0.0034306403,0.0162371,-0.0076889307,0.0075246645,-0.03181714,0.017841857,0.018764276,0.04427611,0.017892402,0.005044874,0.057164706,-0.005752483,0.021518897,-0.0005386042,-0.037579097,0.017121613,-0.02810219,0.031766593,-0.040131543,-0.01571903,0.0321204,-0.004081388,0.0009974445,-0.0037402194,-0.0045678695,-0.01247161,-0.0015107769,-0.030932626,0.011144843,0.01713425,0.02025531,-0.032196213,-0.0015060385,-0.03588589,-0.028809799,-0.02135463,0.028228547,-0.008270181,-0.06878971,0.002813062,-0.03836252,0.010967941,0.040561162,-0.0064948406,0.025511835,0.03358616,0.009609584,0.0034653891,0.039550293,0.00012092928,0.04344214,0.009451635,0.0073351264,0.017879765,-0.0137351975,-0.016868895,-0.017450145,-0.021872701,-0.016654085,-0.0098370295,0.019282347,-0.0017927149,-0.012313661,-0.015491584,0.031463332,-0.01271801,0.047182363,-0.03671986,-0.011498648,-0.013874193,0.04283562,0.008238591,-0.0071266345,-0.01795558,0.019257076,0.036820944,0.018637918,-0.036568224,-0.007739474,-0.006409548,-0.01384892,0.007872151,0.028076917,0.014013187,-0.018890636,-0.008895657,0.022049604,0.000756968,0.062168512,0.0051301657,0.01758914,0.022453953,0.0040719113,0.010329829,-0.011978811,0.017475417,-0.013823649,-0.011195387,0.011612371,0.0083775865,-0.016401367,-0.041167684,0.014177454,0.016199194,0.016982619,0.048926115,0.012237846,-0.0017721817,-0.024816861,-0.010892126,0.01167555,0.023401642,-0.022441316,-0.020419577,0.01103112,-0.016527727,0.01976251,0.024425149,-0.022453953,-0.008080643,0.018928543,-0.024096616,-0.02984594,0.022542404,0.008984108,0.0023802833,0.021013463,-0.00401505,0.042279642,-0.032196213,-0.013709926,0.006734922,-0.006779148,-0.0026298417,0.025714008,-0.047409806,0.0043341056,-0.0043593775,-0.01961088,0.0015336795,0.013495116,-0.0070318654,0.0017942945,-0.035102464,0.0091926,0.028304363,-0.013356121,-0.0091041485,-0.03401578,0.0015186744,-0.011940903,0.010677315,0.02546129,0.03330817,0.01286964,0.0063053025,-0.026737515,0.004195111,-0.014594438,0.0075373,-0.011302792,-0.0023328988,0.020369032,0.0050290786,0.0025824571,-0.031387515,-0.017424874,0.018486287,0.0045647104,-0.009489543,-0.014720796,-0.005218617,-0.027445123,0.03358616,0.0160602,-0.001115116,0.008358632,0.010683633,0.0064190254,0.00017532278,-0.015377861,0.013368757,-0.008965154,-0.005610329,0.012838051,0.0116629135,-0.0033200765,-0.02343955,-0.011959857,0.044604644,0.035532083,0.009830711,-0.026232079,0.0106899515,0.010866853,0.03717475,0.027925286,-0.03492556,-0.013558296,0.0006262656,0.035254095,0.0137983775,-0.0038160346,-0.026434254,-0.012086215,-0.04359377,-0.010089748,-0.019800419,0.018840091,0.03275219,0.022302322,-0.02175898,-0.021165093,-0.012819096,0.015150416,-0.017993487,0.048825026,-0.013520388,-0.037124205,0.01645191,-0.0012177826,0.011517601,0.00980544,0.015845388,-0.011429151,-0.01872637,-0.04599459,0.03232257,-0.009944434,0.024614688,-0.021657892,0.014063731,-0.006144195,0.02896143,0.022972023,-0.00057888107,-0.0045615514,-0.029567951,0.014025823,-0.04078861,-0.02249186,-0.0602984,0.03201931,-0.02668697,0.021405175,0.011707139,0.0061757844,0.0144680785,-0.014139546,0.020937648,-0.018056666,-0.018208297,-0.0035569991,-0.024766319,-0.028178005,-0.04991171,-0.004207747,-0.011365971,-0.0019348685,0.008920928,-0.03434431,-0.015706394,0.0017342741,-0.028152732,0.001354408,-0.0141648175,0.0028999336,-0.015024057,-0.005629283,-0.030351374,0.007954285,0.025688738,0.00018934072,0.0137351975,-0.0167299,-0.00033899688,0.008472355,-0.003484343,0.008781934,0.011321745,-0.047258176,-0.001360726,-0.036239695,-0.0108163105,0.023313193,0.0062010563,0.0067665116,0.01664145,-0.021493625,0.001295967,-0.02148099,0.005910431,0.012888594,0.00062034256,-0.0030215539,0.020823924,0.00438149,-0.014025823,0.0016979459,0.020520663,0.036820944,0.017298514,-0.009931799,0.005585057,0.0007249834,-0.030048113,-0.014417535,0.026333166,0.031160071,0.0005540042,-0.0035633172,-0.07541091,0.023035202,0.015655851,0.01872637,-0.044453014,0.021771615,-0.023111017,0.01492297,0.0022760371,-0.0077773817,0.011745047,-0.010765767,-0.009205236,-0.0467022,-0.022959387,0.015213595,0.030401919,-0.000015979942,0.026863873,0.0025745598,-0.0025255957,-0.015769573,0.041016053,-0.004694228,-0.011296473,-0.007973238,0.003171605,0.0010219265,0.04528698,0.003181082,-0.03603752,-0.01078472,0.002408714,0.006880235,-0.033636704,-0.008188047,-0.002043853,-0.0054586986,0.01758914,0.021304088,-0.019585608,0.05175655,-0.027167134,-0.021064006,0.015542128,-0.0030215539,-0.025347568,-0.014531258,0.0058567286,-0.002307627,0.017905036,0.0063937535,-0.013672018,0.011959857,0.016123379,0.028304363,-0.014543894,0.007461485,0.012888594,0.041698392,0.026004633,0.0108163105,-0.007840562,-0.025271753,-0.04991171,0.013570931,0.021291452,-0.015883297,-0.02840545,0.016856259,-0.019332891,0.022390774,-0.0028004262,-0.0016237102,-0.003097369,0.026232079,-0.0039329166,0.025006399,0.014720796,0.025145395,-0.014139546,0.00934423,0.0057714367,-0.017450145,-0.0017658637,-0.017247971,0.004008732,0.001219362,0.011700821,-0.03330817,-0.012370523,0.02896143,0.0012857005,0.005796708,0.028127462,0.058327205,-0.010279286,0.011789273,-0.0014428592,-0.008598714,-0.0013488798,0.0051017352,0.00811855,0.013255035,0.018081939,0.027141862,0.033383984,-0.00088293187,0.01731115,-0.017740771,0.008636622,0.0027309288,-0.0074741207,-0.030401919,-0.008592396,0.020975554,-0.007663659,0.0026835443,-0.020280581,-0.00793533,0.0090472875,-0.01795558,0.028632896,-0.02855708,-0.01247161,0.010241378,-0.057063617,0.0058788415,0.042608175,-0.04834486,-0.0048237457,0.070861995,0.013684654,0.011302792,-0.0033990508,-0.007549936,-0.02068493,-0.020116314,-0.015997019,0.036542956,0.023123654,-0.009015698,0.04976008,-0.0062926663,-0.014101638,0.0028083236,0.01780395,0.013899464,0.028683439,0.00033998405,0.0101402905,0.017260607,0.012023036,0.015049329,-0.004154044,-0.017361695,-0.011252248,0.03603752,0.056558184,-0.015365225,0.020912375,-0.014253269,0.011467058,-0.023616454,-0.023907078,-0.0070318654]},{"id":"interface-WebhookAttachmentMeta","type":"interface","source":"main","text":"Interface: WebhookAttachmentMeta\nDescription: Attachment metadata for webhook file uploads (id matches FormData index).\nProperties: description: string | null, filename: string, flags: number, id: number, title: string | null","meta":{"url":"/docs/typedefs/WebhookAttachmentMeta"},"embedding":[-0.022789354,0.044544708,0.0044410285,-0.015117075,-0.027483711,-0.045578707,0.018374175,-0.0142898755,0.017154055,0.013938316,-0.00091379724,-0.018094994,0.054926064,-0.045950945,0.0009461097,0.024423072,-0.03724467,0.048556626,-0.010122857,0.040677547,0.013669476,0.006932968,0.039519466,0.015851215,0.011890996,0.03279847,-0.035362788,0.011012097,0.007930778,0.029158792,0.04156679,-0.019770075,0.048143025,0.03397723,-0.021920793,0.038133908,0.03265371,-0.025353672,-0.034597628,0.002745269,-0.024878033,-0.0054853684,-0.0018224245,0.037906427,-0.010712237,0.013007716,0.021465834,0.048432544,0.0077911876,0.03759623,-0.010846657,-0.00039001176,0.03668631,0.03323275,-0.016750796,0.027855951,0.0143105555,0.033749748,-0.03548687,-0.00079617975,-0.018063974,-0.014341576,-0.02917947,-0.03128883,-0.03195059,-0.006266038,-0.06720998,0.036024548,0.03166107,0.00039841302,0.088262215,0.046571344,-0.021238353,0.057076782,-0.009192257,-0.03836139,-0.017784795,-0.014631095,-0.049135666,-0.02930355,-0.023988793,0.037306707,-0.067334056,-0.021093594,-0.03674835,0.047646705,-0.022106914,-0.06960886,-0.03995375,0.052940782,-0.075606056,-0.00063267857,-0.089254856,-0.018694714,-0.0028279892,0.016440595,-0.03161971,0.00048371797,-0.040077828,-0.016998954,0.018094994,0.0053250985,-0.03397723,-0.020948833,-0.019645995,-0.03083387,0.017174736,-0.015944276,0.015230815,0.010867337,-0.03397723,-0.007036368,-0.016202776,0.03155767,0.024691913,-0.029531032,-0.018756755,0.08056925,0.0013920221,-0.018053634,-0.051948145,-0.0061522983,0.019139335,-0.013235196,-0.0095644975,0.029324232,-0.015727134,0.047398545,-0.06820262,-0.0019361645,0.058400303,0.043800227,0.018467234,-0.03031687,-0.018301794,-0.03470103,0.013803896,0.018611994,-0.045413267,-0.019180695,0.013410976,-0.03312935,0.037720308,-0.021465834,-0.017505614,0.009719597,-0.023926754,0.08334038,0.005500878,-0.020059593,-0.04049143,-0.0014669871,-0.0023109892,0.013493696,0.04047075,-0.017577995,0.008313358,-0.010107347,0.006896778,-0.006333248,0.011984057,-0.021879433,-0.016368216,0.0046607535,0.003130434,0.0100297965,0.028993351,0.0025320067,-0.019025594,-0.019087635,0.059765182,-0.020007893,-0.0052604736,0.006245358,-0.0073258877,0.020152654,0.059103422,-0.041277267,-0.019377153,0.016812835,0.026491072,0.016512975,0.012480376,-0.009383547,-0.050004225,-0.02986191,0.027483711,0.03283983,0.03416335,0.0082358075,-0.001870247,0.006571068,0.022975473,-0.013131796,0.012004737,-0.008571858,0.0014540621,0.003355329,0.005521558,-0.04233195,-0.022582553,-0.003006354,0.02829023,-0.003337234,-0.044213828,0.03277779,-0.0079617975,-0.017164394,-0.03701719,-0.03056503,0.021651953,-0.00068050105,0.020711014,0.051286384,-0.002962409,-0.007108748,0.017733095,0.029634431,0.00084917224,0.003582809,-0.015065376,0.0074189478,0.03633475,-0.027173512,-0.03920927,0.016988615,-0.03556959,0.008421928,-0.03126815,-0.044461988,-0.039581507,0.0022954794,0.010133197,-0.03139223,-0.049177025,0.003332064,-0.0078997575,-0.008365057,0.016523315,0.005935158,0.0042057936,0.004104979,-0.041463386,0.015396255,-0.03116475,0.015944276,0.0019038519,0.0082151275,0.03238487,0.003417369,0.027090792,-0.0027271742,0.007320718,0.009952247,0.015034355,-0.008297848,-0.05997198,0.03509395,0.03126815,0.027338952,0.009704087,-0.033749748,-0.03370839,0.03296391,0.009078518,0.025787951,0.07047742,0.03627271,-0.011994396,0.008830357,0.037120588,0.0044978987,0.042559426,0.029200152,-0.039664228,0.021259034,-0.04309711,-0.021776034,-0.0021248693,-0.0105984965,0.02986191,-0.007977308,-0.029634431,0.08735229,-0.029882591,0.015809854,0.016575014,0.020400815,0.039933067,0.027814591,0.012056436,-0.010846657,0.02888995,-0.03437015,-0.022685952,0.06257766,0.03362567,-0.025208913,0.06319806,-0.02833159,0.0047357185,-0.047853507,0.003316554,-0.025022792,0.0051570735,-0.016213115,0.0026366992,-0.016936915,-0.027442351,-0.022086233,0.006757188,0.005955838,-0.055918705,-0.0011141347,-0.051906783,0.025912032,0.03352227,0.020214694,-0.010531287,0.03672767,0.006969158,0.018715395,0.006622768,-0.053106222,-0.007372418,-0.0142485155,-0.007129428,0.015789175,-0.006333248,0.06551422,0.040863667,0.022355074,0.020359455,-0.040677547,0.043055747,-0.012656156,-0.011311957,0.029717151,-0.012987036,0.054429743,0.024112873,0.003021864,-0.03304663,0.0097971475,-0.036624268,-0.042125147,-0.025415713,0.008768317,-0.013359276,-0.019387495,-0.020411154,-0.040450066,-0.054388385,0.011518757,-0.051286384,-0.03343955,0.018963555,-0.054512464,-0.008892397,-0.014475996,-0.03058571,0.05471926,-0.0012963772,-0.006085088,-0.016916234,-0.024485113,0.003275194,-0.018332815,-0.0032028141,-0.052072223,0.014724156,0.010515776,-0.029717151,0.007129428,-0.025974073,0.03095795,-0.0012937922,0.025167553,-0.021321073,-0.03511463,0.044379268,0.048556626,-0.03164039,-0.010960396,0.030730471,-0.022148274,-0.027835272,0.037823707,-0.051327743,-0.020990193,0.013669476,0.029593071,-0.00044074235,-0.001880587,-0.017092016,0.015747815,0.03627271,-0.03147495,0.0017035145,-0.052899424,-0.010345167,-0.015189456,-0.012594116,0.03709991,0.015778836,-0.023409752,-0.021776034,0.015375575,0.07337262,-0.0068295677,0.014486335,0.038837027,0.009729937,0.03145427,-0.008111727,0.0013519546,-0.014879256,-0.025787951,0.055050142,0.03300527,-0.02893131,0.06960886,0.021734674,0.017629694,-0.015882235,0.007129428,-0.003559544,-0.043427985,0.023513153,-0.016037336,-0.053643905,0.017681394,0.028848592,-0.03261235,0.045495987,-0.03408063,0.018570634,0.024195593,0.015551356,0.0046917736,-0.021103933,-0.000864036,0.0050640134,0.008675258,-0.017267795,0.004019674,0.009280147,0.011136177,0.0055577485,-0.0044927285,-0.046157748,0.045620065,-0.04013987,-0.006472838,0.027173512,0.013307576,-0.073910296,-0.021424474,0.03904383,-0.015778836,-0.03221943,0.00066369853,0.0053199283,0.03170243,-0.004042939,-0.029551711,-0.052940782,0.011901337,0.007744658,-0.018601654,0.026346313,0.013038736,0.014165795,0.019677013,0.009481777,-0.031102711,0.026780592,-0.06104734,0.016368216,-0.011074137,-0.022830714,-0.029241512,-0.053188942,-0.03031687,-0.03769963,0.11390541,0.021962153,0.048267104,0.047936227,-0.0008498185,-0.051286384,0.010464077,0.058234863,-0.006731338,-0.026056793,-0.015975295,-0.015644414,-0.044586066,-0.014786196,0.006974328,-0.023409752,-0.051451825,0.027566431,-0.003239004,0.043386627,-0.008969948,-0.020711014,-0.0048210234,0.00092478347,0.006157468,0.035280067,0.0072638476,0.006426308,0.027028752,-0.043055747,0.0047925888,-0.012904316,0.042559426,0.008618387,-0.004001579,-0.052692626,0.018291455,0.043303907,0.0053199283,-0.017898535,-0.019273754,-0.020576594,-0.0058576083,0.008799338,-0.014062395,0.018405195,0.021279713,0.009864357,0.008659747,-0.026759911,0.007982478,0.0053974786,-0.03267439,0.031971272,-0.0021726917,-0.046902224,0.026594471,0.014579396,0.006653788,-0.009326677,0.026429033,-0.009817827,0.010422717,0.025208913,0.03261235,-0.009528307,-0.017092016,0.018198395,-0.0045159934,0.015024016,0.0008194448,0.029841231,-0.0027039093,0.015158435,-0.025912032,0.0137418555,-0.038837027,-0.011270597,-0.0058472683,0.013566076,0.026346313,-0.0020124218,-0.003058054,0.0590207,-0.009331848,0.0105984965,0.010608837,0.0051570735,-0.0014850821,-0.014413956,0.0011309371,-0.016740454,-0.008716618,0.016812835,-0.03428743,-0.0043634786,-0.001407532,-0.015055035,0.018736074,-0.0035569589,0.025829311,0.04487559,0.016130395,0.02820751,0.00023717368,0.022024194,-0.006767528,0.036955148,-0.0017758944,0.023699272,-0.0045780335,0.03519735,0.011529096,0.006436648,0.012594116,0.004156679,0.022106914,0.009879867,-0.03501123,0.0073879277,0.03360499,0.003422539,-0.044916946,-0.051410463,0.011332637,-0.012656156,0.04030531,-0.04003647,-0.03283983,0.00017400277,0.032053992,-0.0105984965,0.0116324965,-0.009548987,-0.03058571,0.014475996,0.03542483,0.0021856169,0.011436037,-0.00007468224,0.012046096,-0.012025416,-0.03283983,0.008106558,0.047357187,-0.006684808,-0.0053406083,-0.016430255,-0.014569055,-0.012614796,-0.009264637,0.03596251,0.012604456,-0.0008284922,0.032053992,-0.011260256,0.013338596,0.06216406,-0.00091508974,0.03178515,0.010510607,-0.026946032,0.03104067,0.00032425585,0.040429387,-0.013100776,-0.03877499,-0.015685774,0.015117075,-0.005811078,-0.03393587,0.0153445555,0.029923951,-0.03015143,0.03445287,0.011022436,-0.014083075,0.00081685977,-0.011777257,-0.027008072,0.0019064369,-0.006684808,-0.017857175,0.0007231535,-0.0059713484,-0.019842453,0.022561872,0.015964955,0.04284895,0.0031717941,-0.044503346,0.031805832,0.00025316837,-0.013080096,0.052527186,0.014713815,-0.00008885935,0.015334215,-0.0631567,-0.021010874,0.006446988,0.043552067,0.042187188,0.03215739,0.006312568,0.00057807047,-0.026863312,0.001583312,-0.0046400735,0.022106914,0.055381022,0.014858576,0.020266393,0.03672767,0.015396255,0.006410798,-0.003404444,-0.027525071,0.025457073,0.020700675,0.0048856484,0.03523871,0.016378555,-0.0038490638,-0.026904672,-0.008814847,0.0070932377,0.0044823885,0.006478008,-0.0046323184,0.03095795,-0.016037336,-0.00037159363,0.003730154,0.019366814,0.039581507,-0.052279025,-0.024092192,0.003034789,-0.010825977,-0.011291277,0.015199795,-0.0005861486,-0.003528524,-0.03039959,0.0011729434,-0.02969647,0.023513153,-0.0006591748,0.010784617,0.055794623,0.00048759548,-0.008809677,-0.020731693,0.020648973,0.024485113,0.03732739,0.03240555,0.011260256,0.03217807,-0.020400815,-0.011425696,-0.0009318922,-0.012294256,-0.0035672989,-0.008153087,0.002750439,-0.0034354639,0.010107347,0.015065376,-0.0052294536,0.009905717,-0.03147495,-0.0073569077,0.016140735,-0.013183496,0.029489672,-0.008809677,0.018167375,-0.03166107,-0.04107047,-0.008990628,-0.006136788,0.03929199,-0.017671054,-0.013731516,-0.018880835,-0.03548687,-0.016388895,0.030647751,-0.014217496,0.012283917,-0.02977919,-0.038485467,0.023223633,0.014227835,-0.018767094,0.0058989683,-0.00050148985,0.009869527,-0.039167907,-0.050748706,-0.027400991,-0.04183563,0.0026935693,-0.02820751,0.043469347,0.019770075,-0.055381022,0.021300394,0.020007893,-0.0045082388,-0.06911254,0.0025630267,0.021486513,-0.010970737,-0.026780592,-0.008649407,0.003027034,0.048515264,0.001642767,-0.04216651,-0.0017577994,0.0012433847,0.019035934,-0.010500267,0.020090614,-0.013348936,0.0011419234,0.010619177,0.027959352,-0.0121598365,-0.021010874,0.012532076,0.0040972237,0.025808632,0.0076515977,-0.012656156,-0.006410798,0.03745147,0.07014654,-0.024753952,0.012625136,0.018157035,-0.025270952,0.020142313,0.044916946,0.013648796,-0.013896956,0.038981788,-0.004159264,0.000056223733,-0.0026043868,-0.025270952,-0.017267795,0.021238353,0.013576416,0.052030865,0.03809255,0.03734807,-0.007010518,0.022086233,-0.003781854,0.0049063284,-0.015075715,-0.04082231,0.021300394,-0.0040662037,-0.028228192,-0.0043608937,-0.015055035,-0.019490894,-0.0043091937,-0.007951458,0.0022877243,-0.0027168342,0.024733273,-0.011342976,0.0013170571,-0.011808276,0.0116324965,-0.018860154,0.021021213,0.0024208517,0.03445287,0.023575192,0.025808632,0.024216272,-0.030378912,-0.030006671,0.022458473,0.0024958167,0.028703831,0.016699094,0.028434992,0.018260434,-0.00050504424,0.020142313,-0.0031769641,-0.0016440596,0.03364635,0.0027762891,0.014507015,0.011291277,0.019263415,-0.012242557,-0.011498077,-0.022168953,-0.015075715,0.0043117786,0.06683774,-0.0038051188,0.029675791,-0.025105512,-0.004138584,-0.035528228,-0.011136177,-0.018911853,-0.022458473,0.019914834,0.006793378,0.012532076,0.025208913,-0.008132407,-0.03265371,0.0011160735,-0.028703831,-0.048101664,0.03126815,0.0015380746,0.03765827,0.00032425585,-0.013845256,0.046075027,-0.023409752,-0.014600076,-0.0054129884,0.03244691,0.013069756,-0.03490783,0.010732917,-0.03625203,-0.011818617,0.018539615,0.03273643,0.026160192,-0.024050832,0.010117687,0.048349824,0.009187087,-0.0726695,-0.014899936,0.017350515,-0.007992818,0.006421138,0.006452158,0.022727313,0.0077188076,-0.03302595,0.025643192,0.013586756,-0.052279025,-0.014569055,-0.046157748,-0.046654064,0.0055525783,0.009916057,0.013669476,-0.056373663,-0.023016833,-0.009559327,0.053850703,-0.04148407,-0.008747637,0.03623135,-0.025270952,-0.010960396,-0.016337195,-0.03964355,0.008887228,0.029324232,0.0020912644,0.012800916,-0.012056436,0.031061351,-0.025436392,0.006457328,0.054098863,0.003957634,0.00014694105,0.026304953,-0.014930955,-0.023513153,0.018498255,-0.013793556,-0.039498787,0.050831426,0.028538391,-0.0008814847,-0.032053992,0.012790577,0.0009932859,0.0042885137,0.020959174,-0.011012097,-0.018374175,-0.03749283,0.019263415,-0.03548687,0.03542483,-0.025312312,-0.014041715,0.02938627,0.0013364446,0.006974328,-0.00068050105,0.001735827,-0.010867337,-0.006612428,0.0078015276,0.006798548,-0.006741678,0.039933067,0.009088857,-0.07076694,-0.027442351,-0.010221086,0.03387383,-0.049714703,0.003151114,-0.024505792,-0.017743435,0.011022436,0.028186832,0.017060995,0.0577799,-0.041690867,-0.0028383292,0.0072948677,0.023513153,-0.0047770785,0.017908875,0.005511218,-0.0030761492,-0.011467056,-0.010970737,0.025457073,-0.0016104545,-0.0053095883,0.0045237485,0.0010876384,-0.0082151275,-0.0044384436,0.005110543,0.014496676,0.006963988,-0.026160192,-0.03213671,0.006509028,0.03596251,-0.023844033,-0.029572392,-0.019573614,-0.020752374,-0.008571858,0.005743868,0.022375753,-0.009926397,-0.017598676,0.022065554,-0.013803896,0.03639679,0.04090503,0.0053147585,-0.0010191359,-0.020638634,-0.005449178,0.017681394,0.0016285495,0.020235375,0.02735963,0.03066843,-0.018911853,-0.006571068,0.0016052845,0.018932534,0.009962587,0.02829023,-0.003218324,0.020876454,0.03379111,-0.003355329,-0.022437794,-0.03472171,0.008189278,-0.04260079,-0.007977308,0.0147758555,-0.019263415,-0.0023885393,-0.0017125619,0.03277779,0.012015076,0.03625203,0.005986858,-0.027587112,0.023637233,0.003298459,-0.037740987,-0.03474239,0.019015254,-0.0050097285,-0.030296192,0.007842887,-0.023906073,-0.016378555,-0.003148529,0.011436037,0.019284094,-0.023533832,0.0023911244,0.018208735,-0.015541015,-0.025188232,0.022913434,-0.006441818,0.03023415,0.009657557,-0.023368392,-0.03463899,-0.023926754,0.008142748,0.019170355,-0.023802673,0.010226257,0.03590047,-0.010200407,-0.021010874,-0.006333248,-0.0063849483,0.008747637,0.008013498,0.016058015,-0.03614863,-0.014217496,0.0023950017,0.018250095,0.008726957,-0.027235553,-0.003453559,-0.018942874,-0.007331058,-0.010681217,0.042125147,-0.036127947,0.038216628,0.00032716396,-0.03151631,0.006627938,0.00023943555,0.006255698,-0.008654578,0.027173512,-0.021031553,0.021321073,-0.002936559,0.008080708,0.0042549088,0.03683107,0.03759623,-0.018560294,0.017226435,-0.007393098,0.0018586144,-0.0054078186,-0.0054336684,0.02982055,-0.011911676,-0.024753952,0.02938627,0.0055318982,0.0019141919,0.0053767986,0.011911676,-0.00044817425,-0.013421316,0.0043660635,-0.019945854,0.013462676,-0.00091056596,-0.060344223,-0.022230994,0.022293033,0.0127285365,0.0048649684,-0.000835601,-0.041980386,-0.0044927285,-0.025746591,-0.024774633,0.03192991,-0.025808632,0.03579707,-0.011425696,0.0050355783,-0.015685774,-0.0044772187,-0.028000712,-0.015396255,-0.011560117,-0.0030658091,-0.03581775,-0.006229848,0.032053992,0.028869271,-0.008199617,0.027380312,0.010133197,-0.0034199539,0.024671232,-0.030006671,0.0020550743,0.019097975,0.04301439,-0.030006671,-0.012097796,0.047936227,0.071056455,0.024154233,0.0059403284,0.019604634,0.006266038,0.0058989683,-0.0026405768,0.017795134,0.024423072,-0.020142313,0.027504392,-0.0035104288,-0.022499833,-0.010794957,0.012697516,-0.023244312,-0.003378594,-0.011591136,0.04309711,-0.031805832,0.03035823,-0.0024402393,-0.023988793,-0.010970737,0.010898356,0.018446553,0.018622335,0.010205577,0.03416335,0.0006837323,0.044544708,0.002729759,-0.03505259,-0.03575571,-0.040677547,-0.006483178,-0.010345167,-0.010308977,0.016192434,-0.011373997,-0.030130751,0.018374175,0.013834916,-0.00045592923,0.0010159047,-0.017733095,-0.0022541194,0.0028383292,-0.015913256,0.0015509996,-0.019604634,0.008768317,-0.024092192,-0.012128816,0.038650908,-0.00037288613,-0.017009296,0.013504036,0.013369616,0.018818794,-0.0007722685,-0.0048184386,-0.0142898755,0.009212937,0.049259745,0.027980031,-0.012625136,0.006545218,-0.0077498276,0.0122218765,0.003254514,-0.019852795,-0.03501123,-0.009419737,0.008287507,0.00084141723,-0.010960396,-0.011167197,0.013245536,0.03325343,-0.001958137,-0.017650375,-0.008225467,0.0054078186,0.006963988,-0.009466267,0.011332637,-0.0046633384,-0.014827555,0.049880143,-0.028869271,0.016399235,0.010293467,-0.03521803,-0.0048003434,0.0010120271,-0.0048210234,-0.03523871,-0.03627271,0.023244312,-0.0011005634,-0.025312312,-0.028104112,0.022355074,-0.019894155,-0.017857175,-0.009802317,-0.010339997,0.0063952883,-0.03035823,-0.019863134,-0.015902916,-0.003394104,-0.046695426,-0.059517022,-0.022706633,-0.041111827,0.009011308,0.03203331,0.008147918,0.028104112,-0.026449712,-0.015416935,-0.0137211755,0.024443753,0.018849814,0.007015688,-0.03583843,0.009476607,0.025684552,-0.009657557,-0.014889595,0.042125147,0.025705231,0.009280147,-0.014382936,0.020762714,0.013462676,-0.010081497,0.03896111,-0.006715828,-0.013483356,0.024733273,0.023058193,0.006710658,-0.0042445688,-0.018767094,-0.0090371575,-0.03159903,0.016120056,0.015230815,-0.02905539,0.008773487,-0.011001756,0.0025501018,0.008540837,0.004221304,0.001660862,-0.010562307,-0.003332064,-0.012097796,0.02938627,0.03213671,0.016854195,0.021589914,-0.014041715,-0.048970226,0.0056249583,0.024216272,-0.007196638,-0.0003360499,-0.010650197,0.03343955,-0.015644414,-0.015758155,-0.016967935,0.037554868,0.00092349097,-0.017040314,-0.029241512,0.0013454921,0.03178515,0.024030153,-0.012924996,0.010929377,-0.012573436,0.0148172155,0.006167808,-0.027194193,-0.027028752,0.021796713,0.019811435,0.003691379,-0.010003947,-0.030420272,-0.016668076,0.03226079,0.049921505,-0.0013454921,-0.010681217,0.0013177034,0.0044074235,0.0068709278,-0.022892753,0.03912655,-0.025312312,-0.007449968,-0.012976696,0.006007538,-0.025725912,-0.026966712,0.019459873,-0.03360499,-0.022520512,-0.008535667,0.009750617,0.044503346,0.03869227,0.0063642683,0.0001626126,-0.0008704985,-0.03819595,-0.044172466,-0.0048339483,-0.0028951992,-0.00029420524,-0.0122218765,-0.014713815,-0.047067665,0.012035756,0.012780236,-0.03335683,0.011301616,0.007403438,-0.022272354,0.003024449,-0.010308977,-0.005650808,0.003603489,-0.03091659,-0.0030606391,0.006855418,-0.006658958,-0.023120234,-0.013183496,-0.018891174,0.0068812678,-0.025126193,0.007382758,0.010867337,0.022127593,-0.021279713,0.011156857,0.056125503,0.008122068,-0.022934113,0.000721861,-0.02930355,-0.0006010123,0.009776467,-0.020349113,0.0001105895,0.019294433,0.018456895,0.014507015,-0.023451112,0.025725912,-0.025105512,-0.03174379,0.020711014,0.03091659,-0.001415287,0.027132152,0.009879867,-0.011746236,0.010753597,-0.0055525783,0.014134776,-0.023120234,0.023513153,0.03896111,0.008116897,-0.020080274,-0.006834738,-0.025498433,0.027566431,0.023637233,0.016016655,-0.024795312,-0.008432267,0.019128995,0.012738876,-0.0051441486,0.018684374,-0.014382936,-0.001412702,0.019718373,-0.021341754,0.026036112,0.012480376,0.059062064,0.0021481344,0.03478375,0.021672633,0.012004737,-0.005743868,0.028910631,-0.021879433,-0.008199617,0.023244312,-0.024981432,-0.0044565387,-0.014093416,0.021569233,0.024133552,0.013504036,0.003295874,-0.03863023,0.011715217,-0.022934113,-0.0077188076,-0.003494919,0.013173156,0.009362867]},{"id":"interface-WebhookFileData","type":"interface","source":"main","text":"Interface: WebhookFileData\nDescription: File data for webhook attachment uploads. Use `data` for buffers or `url` to fetch from a URL.","meta":{"url":"/docs/typedefs/WebhookFileData"},"embedding":[-0.040957026,0.027492294,-0.0066295397,-0.020272862,0.0330124,-0.049702603,0.02264326,0.028921029,0.015402179,-0.0017913287,0.023011267,0.022026306,-0.0007935153,-0.042710472,-0.025955323,0.018573534,0.01989403,0.03578328,-0.0056229318,0.022112897,0.00744132,-0.031345546,0.035631746,-0.005382104,0.0394417,0.01783752,-0.029700337,0.025500726,0.017328804,-0.010185137,-0.025998618,-0.021084642,0.021615004,0.0105802035,0.006104588,0.047797628,-0.000071876384,0.038532507,0.005000567,0.006532126,-0.039160285,-0.04229917,-0.0077443845,0.04736468,-0.006737777,-0.017956581,-0.01902813,0.06368688,-0.004348437,0.02478636,-0.029440567,-0.016830912,0.005406457,0.022275252,0.00735473,0.06494243,0.00057873176,0.02881279,-0.060569637,-0.03491738,-0.009200177,0.013042605,-0.044637095,-0.043857787,0.009384181,-0.013973446,-0.03550186,0.029375626,-0.0087780515,0.035220444,0.11516457,0.060223278,-0.005208924,0.01899566,0.013843561,-0.03327217,-0.023639044,-0.03089095,-0.056326732,-0.036432702,-0.005693286,0.043879434,-0.093430504,-0.04383614,-0.026431568,0.030674474,-0.012577184,-0.037904732,-0.022838088,0.056066964,-0.0064996546,-0.00046778843,-0.076285705,-0.0006900133,-0.020684164,0.009335474,-0.039052047,-0.017556103,-0.025067776,-0.0098441895,0.015726892,0.004862564,-0.051650878,-0.05195394,0.035631746,-0.01789164,0.031432137,-0.03225474,-0.02753559,-0.020294508,-0.029873516,-0.021062994,0.0050925687,0.013529672,0.039506644,-0.012198353,-0.0032606511,0.024158584,-0.002431282,0.0041887867,-0.021344412,0.026366625,0.015196528,-0.0041536093,0.019526023,-0.018974014,-0.01667938,0.010434084,-0.019363668,-0.03441949,0.060353164,0.024180232,-0.0063751815,-0.030284818,-0.0014003211,-0.03664918,-0.012523065,0.022708202,-0.01667938,-0.00421314,0.028726202,-0.017869992,0.07472709,-0.02933233,-0.00063352694,0.043619663,-0.010726324,0.060742818,0.014958406,-0.0009335474,-0.04853364,0.022903029,0.026539806,-0.010071488,0.0026937579,-0.010266315,0.007868857,0.03465761,-0.014655341,-0.018021524,0.008269336,0.013594615,-0.013940975,0.002144453,-0.031107424,0.018378707,0.043121774,-0.06611139,-0.0041969046,0.0051845703,0.027708769,0.0030766476,-0.008258512,0.05394551,-0.0020754517,-0.00012058321,0.00033266083,-0.025998618,-0.014027565,-0.035956457,0.02058675,-0.03998289,-0.009449123,-0.022026306,-0.037904732,-0.019417787,0.030977538,0.034852438,-0.02191807,0.002892644,-0.0317352,0.033250522,0.008880877,0.0027979363,0.028423136,0.01812976,-0.009887485,-0.013324021,0.051607583,-0.019190488,-0.011040213,-0.016289726,-0.014211568,0.004824681,-0.017934933,0.007100372,-0.014936758,0.03156202,-0.05342597,-0.0089079365,-0.005747405,0.019363668,0.018714244,0.03859745,-0.046239007,-0.004010195,0.024569886,0.03848921,0.025089424,0.014265687,0.004957272,0.028531374,0.0065483614,0.001991568,-0.044810276,0.0015762069,-0.039311815,-0.05797194,-0.054854706,-0.02324939,-0.0033770062,-0.012014349,0.007652383,-0.026712986,0.003717954,0.033618532,0.008604872,-0.018497769,0.014103331,0.010206785,-0.012404004,-0.025457432,-0.05515777,0.037471782,-0.01569442,0.00949783,-0.013497202,-0.0067973076,0.013778619,0.0235741,0.044052612,-0.0031172365,0.035523508,-0.006191178,0.025370842,-0.014958406,-0.029548805,0.042580586,0.032016616,0.045156635,0.034029834,-0.041238442,0.0044458504,0.06290757,0.00090378214,-0.013020957,0.055027883,0.023184447,-0.048490345,0.022773145,0.019569319,0.02976528,0.061868485,0.005552578,-0.043554723,-0.005203512,-0.013129194,-0.009855013,0.0044296146,0.016841736,-0.015456298,-0.0073601417,-0.051001452,0.075896055,-0.011927759,0.012274119,-0.0077010896,0.042905297,0.03998289,-0.012284943,0.005203512,0.010028194,0.015726892,-0.018790009,0.019764146,0.0167335,0.0019956266,0.0042212578,0.057928648,-0.014731107,-0.0068297787,-0.020002268,0.006034234,-0.0051548053,0.0058015236,-0.031345546,0.0034608901,-0.017826697,-0.008880877,0.007430496,-0.01832459,0.029808575,-0.0531662,0.035978105,-0.045156635,0.033726767,0.042277522,0.050395325,-0.029310683,0.019320372,-0.009800895,0.026799574,0.0009436947,-0.06831943,0.026041914,0.007966272,-0.04426909,0.018486945,-0.03636776,0.021344412,0.030566236,0.04229917,0.021777362,-0.042688824,0.048663527,-0.03987465,0.0031551197,0.01702574,-0.039809708,0.002973822,0.0024109876,-0.011137626,-0.010082312,0.0072194333,-0.040848788,-0.020164624,0.016830912,0.053209495,-0.032622747,0.0056012846,-0.05182406,-0.01789164,-0.004629854,0.043251656,-0.034809142,-0.013616262,0.009947015,-0.058188416,0.020814048,-0.046239007,-0.050611798,0.026864517,0.000826663,0.035112206,-0.0063751815,-0.0024136936,-0.0049302126,-0.02762218,0.025933675,-0.048663527,0.023595748,0.020749105,-0.00027617445,0.017188096,-0.022491727,0.0132482555,-0.0101093715,0.040350895,0.023162799,-0.005043862,0.022426786,0.065505266,-0.011678813,-0.05567731,0.00050905393,-0.00891876,-0.033856653,0.03396489,-0.02136606,-0.01853024,0.015975837,0.027730417,-0.02053263,-0.01560783,-0.021246998,0.021820655,0.04519993,-0.0063048275,0.0020362157,-0.06728035,-0.0017845638,-0.003217356,-0.005882702,0.016668556,0.013280727,-0.0037396015,0.03184344,0.03708213,0.034592666,-0.04476698,0.0036963066,0.03706048,-0.006559185,-0.023725634,0.022924677,0.00512504,-0.02469977,-0.020770753,0.0033580647,0.049226362,-0.01789164,0.016462905,-0.024721418,0.039744765,0.009876661,0.011256687,0.017512808,0.028596316,0.03292581,-0.05359915,-0.020835696,-0.018952366,0.008621108,0.0002606153,0.018551888,-0.05195394,0.024656475,0.01346473,0.014233216,0.028206661,-0.038121205,0.02924574,-0.0020132153,0.05498459,-0.043446485,-0.025024483,0.04210434,-0.004499969,-0.021788185,-0.016289726,-0.029981755,-0.002275691,-0.06663093,0.017447866,0.04606583,0.0075279097,-0.02950551,-0.014005917,0.033250522,-0.008929584,-0.0008801052,-0.026994403,0.009882073,0.04074055,0.018346235,-0.010066076,-0.026301684,0.020694988,-0.008902525,0.0027492295,0.020056387,0.019374492,-0.0058177593,0.01972085,-0.02950551,-0.037017185,0.035220444,-0.02383387,-0.010899505,0.023141151,0.0007975742,0.013627086,-0.07680525,-0.018032348,0.0143847475,0.11906112,0.026431568,-0.012144234,0.06424971,-0.035436917,-0.08628684,-0.0087076975,0.04169304,-0.007890505,-0.024721418,-0.024613181,-0.031886734,-0.010039017,0.013443083,-0.0010641088,0.01453628,-0.046542075,0.030826006,-0.008437104,0.02615015,0.008837583,-0.03879228,-0.011797874,-0.045329817,0.01082915,0.028704554,0.012674597,0.020283686,0.035891514,-0.052343596,0.0065158904,-0.008166511,0.026518159,-0.0056283437,0.016646909,-0.06398994,0.0144496905,0.0063048275,-0.009930779,-0.020510983,0.03240627,-0.010688441,-0.028682906,0.008913348,-0.022080425,0.029007617,0.0034608901,-0.0012893778,0.010758796,-0.015943367,-0.015542888,-0.017231392,-0.0061587067,0.021095466,-0.00909194,-0.020023916,0.031129071,-0.040242657,0.026366625,0.015283118,0.04519993,-0.03121566,-0.021084642,0.024894597,0.012090116,-0.0025368135,-0.02122535,0.0047597387,-0.018952366,0.053902216,0.008069097,0.022134544,-0.014525456,-0.022708202,-0.0075333216,0.03664918,-0.045806058,0.010033606,0.017664341,-0.0035420682,0.021452649,0.0069650756,-0.039376758,0.009286767,-0.014168273,-0.0046082065,0.032709338,0.005920585,0.016755147,-0.0024921657,0.004294318,-0.014417219,-0.008631931,-0.02779536,-0.005035744,-0.01647373,-0.02110629,-0.022903029,0.011267511,0.011613871,0.0097576,0.030176582,0.000041920845,0.014482162,-0.008236865,0.016625261,-0.0006511155,0.026518159,-0.018551888,0.0117112845,-0.0065916562,0.0052576307,0.012025173,-0.03355359,0.026972756,-0.038186148,0.0025787556,0.021452649,-0.026972756,0.022426786,0.052430186,0.019926501,-0.013832737,-0.044312384,0.030414704,-0.005176453,0.025457432,-0.03677906,-0.0557639,0.021593357,0.02160418,-0.025608964,0.009827954,0.0025422254,-0.034354545,0.0006250709,0.03539362,0.0093733575,0.031908378,-0.019991444,0.00949783,-0.015802657,-0.013334845,-0.020370275,0.019634262,-0.032666042,0.011419044,0.005528224,-0.02053263,-0.048143987,-0.009579008,0.0531662,-0.036043048,-0.027210878,-0.0076632067,-0.015954189,0.028574668,0.05797194,0.00068764563,0.031886734,0.010894093,-0.02032698,0.006737777,-0.0056121084,0.023639044,-0.027384058,-0.00538481,0.013388964,0.0046542073,0.013735323,-0.038987104,-0.0044810274,0.021723242,-0.0010167549,0.033726767,0.034700904,-0.015910896,-0.014168273,-0.018508593,-0.013821914,0.008361338,0.025349194,-0.0024583414,-0.0039533703,0.03405148,-0.0076577947,0.032774277,0.03182179,0.017534455,0.008718521,-0.05069839,0.016387139,0.016690204,0.0041509033,0.04091373,0.013540496,-0.01552124,-0.0029792339,-0.041303385,0.010672206,0.009530301,0.039593235,0.03242792,0.02684287,0.013497202,0.022664908,-0.025587317,-0.005866466,-0.020575926,0.0075279097,0.047624446,0.031605314,-0.0033310053,0.014027565,0.045676176,-0.0059259967,-0.033921596,-0.023227742,-0.0007617206,-0.038727336,0.0023920462,0.023097858,0.0033499468,0.020684164,-0.010466555,0.010450319,0.011938583,-0.031280603,0.02139853,-0.0066349516,0.015012525,-0.013085899,0.029657042,0.008052861,0.02383387,0.009768424,-0.03680071,-0.022210311,-0.020402746,-0.01427651,-0.001488264,0.009919956,-0.012349885,0.018302942,-0.012707069,0.010937387,-0.012068468,-0.011981878,0.009081116,-0.0047705625,0.013973446,-0.004380908,0.015813481,0.0017020328,0.028011834,0.015856776,0.0028358193,0.025565669,0.039701473,0.03987465,-0.0026491098,-0.0019996855,-0.017166449,-0.042061046,-0.030046698,-0.0022905737,0.004183375,-0.029289035,0.029613748,-0.017090682,-0.012555536,0.012772011,-0.03664918,-0.0072086095,0.026280036,-0.024504943,0.029159151,-0.00561752,0.010818326,-0.030328114,-0.019850736,-0.021593357,-0.0085074585,0.053382676,-0.007630735,-0.025847087,-0.012977662,-0.0360214,0.02003474,0.06234473,-0.014460514,-0.00068832206,-0.008128627,0.0017561516,-0.0024258704,0.0004319348,0.001177758,0.023465864,-0.006618716,-0.00095654785,-0.031237308,-0.011332454,-0.0033634766,-0.034441136,0.001095227,-0.037255306,-0.00049248006,0.0011966996,-0.046758547,0.03147543,0.0040210187,0.0007299258,-0.045156635,-0.004529734,0.03578328,-0.002764112,0.0051196283,-0.013020957,0.008079921,0.06702059,0.014644518,-0.029657042,0.041563153,-0.026063561,0.024050346,-0.011354101,0.030328114,-0.0132482555,0.03420301,0.016885031,0.0034879495,-0.0021972188,-0.0004278759,0.0129127195,0.0031226485,0.06147883,0.010704677,-0.0055228123,0.003263357,0.00909194,0.050308734,-0.030414704,0.019558495,0.016397962,-0.0005861731,0.029202444,0.024050346,0.012999309,-0.0026951109,0.032557804,-0.03208156,0.0072897878,0.00039269874,-0.008058273,-0.016603613,0.0010871092,-0.0149800535,0.06645775,0.020197095,0.034181364,-0.008139451,-0.004708326,0.008263924,-0.0012555536,0.014904288,-0.0480141,0.008832171,0.010233845,0.014687813,-0.0011128156,0.0046136184,0.018930718,-0.007517086,-0.016192311,0.009974075,0.01010396,0.017783402,0.005693286,0.034506075,-0.037363544,0.0037693668,-0.02924574,-0.0145146325,0.00969807,0.053469267,0.05472482,0.029548805,0.02933233,-0.00001848703,-0.022838088,0.010293375,0.007820151,0.045849353,0.034441136,-0.03612964,0.004713738,0.031107424,0.008902525,0.018606005,-0.03095589,0.010585615,0.02666969,-0.006045058,0.02093311,0.00042618468,-0.01598666,-0.0029684103,-0.018367883,-0.018075643,-0.009384181,0.05273325,-0.01578101,0.028596316,-0.041238442,0.010639735,-0.029570453,-0.024678122,0.00026078444,-0.03019823,0.007998742,0.016289726,-0.0031199425,-0.0051115104,0.0207924,-0.032795925,0.0060937647,-0.015164057,-0.0009883426,0.030977538,0.007690266,0.010212197,-0.008144863,-0.0057690525,0.04905318,-0.019277077,-0.028617963,-0.00012624876,0.024591533,0.015066643,-0.036995538,0.0136487335,-0.017014917,-0.023444217,0.030674474,0.016776795,0.039160285,-0.021560887,-0.012360709,0.0131833125,-0.0071761385,-0.03963653,-0.010618087,0.031930026,-0.019049779,-0.00014586678,-0.03156202,0.019677555,0.02032698,-0.012717892,0.024613181,0.017004093,0.00074480847,-0.0043619666,-0.063513696,-0.078277275,-0.03431125,0.017339628,0.011613871,-0.037168715,0.00628318,0.018844128,0.04340319,-0.024353411,0.015369708,0.00796086,-0.033921596,0.022112897,-0.010471966,-0.041303385,0.0058881133,-0.007100372,-0.0024042227,0.015153233,0.033142287,0.03738519,0.0038640746,0.031800143,0.07074395,-0.020857343,-0.015413003,0.05130452,-0.0064563598,-0.0012853189,-0.04316507,0.0075008506,0.005541754,0.056066964,0.036389407,0.009746776,-0.01844365,-0.0038343093,0.0016587379,-0.009984898,0.045416404,0.0011310807,-0.020142976,-0.021149585,0.028163366,-0.025998618,0.018043172,-0.03441949,-0.004148198,0.03541527,0.026994403,0.021008875,-0.021463472,0.0045892647,0.027297467,-0.0077552083,0.009054057,0.027752064,0.024937892,0.00079825066,0.00833969,-0.04364131,-0.008144863,-0.027903596,0.04913977,-0.028206661,0.019915678,-0.00020429805,-0.023054563,0.044030968,-0.0006051146,0.008155687,0.024678122,-0.05385892,-0.03526374,0.022535022,-0.0038748982,0.00086048717,0.021928893,-0.002072746,-0.034506075,-0.019482728,0.01827047,0.00486527,-0.010168902,0.0018021524,0.010114783,0.010834562,-0.0035637158,-0.0004934948,0.005003273,0.026712986,-0.020922286,-0.0101093715,0.00471915,0.021669123,0.02597697,-0.02247008,-0.007446732,-0.021409353,0.00064130645,0.02400705,0.018865775,0.020402746,-0.005915173,-0.003103707,0.035631746,-0.029397273,0.008502047,0.039571587,-0.010585615,-0.031713553,0.0012920838,0.0046163243,0.048750117,-0.016268078,0.0020497453,-0.005379398,0.011473162,-0.004510793,0.012209176,0.017480336,0.034679256,0.0029521745,0.008767228,-0.0048138574,0.035220444,0.0066674226,-0.006900133,-0.02855302,-0.033726767,-0.00906488,-0.041909512,0.020013092,-0.0021187468,0.0075874403,0.008853817,-0.013432259,0.0043132594,-0.008069097,0.020197095,0.011819522,-0.011126802,0.012999309,-0.0040210187,-0.04210434,-0.028293252,0.009616891,0.0103096105,-0.028141718,0.03257945,0.009118999,-0.0071653146,-0.013746147,-0.012717892,0.02788195,-0.00020987904,0.014341453,0.020456865,-0.016949974,-0.025608964,0.03920358,0.007067901,0.016690204,0.0523003,-0.00380725,-0.016462905,-0.015153233,0.016387139,0.012209176,0.003103707,0.005882702,0.017047387,0.030133286,-0.02597697,-0.024375059,0.022361843,0.012750363,0.009286767,0.0020023915,-0.019406963,0.00049755373,0.010277139,-0.011830346,-0.018638477,-0.0020930404,0.0075766165,0.018292118,-0.0012264649,0.016722675,0.012588007,-0.005871878,0.021084642,0.00009732908,-0.032622747,0.021495944,0.032103207,-0.0072248452,-0.004711032,0.027384058,0.007398025,0.021008875,0.00054456934,-0.015510417,-0.00056926097,0.030999186,0.028856086,-0.034700904,0.018032348,0.005244101,0.018227175,0.00018248145,-0.015445475,0.039181933,-0.02272985,0.000034986886,0.0180107,-0.00039371348,-0.00198345,-0.005365868,0.0004877447,0.019309549,-0.006586245,0.006402241,-0.0028655846,0.0055579897,0.0035393625,-0.02067334,-0.0036584234,0.021095466,0.021452649,-0.012577184,0.0063481224,-0.039571587,-0.022145368,0.011191745,-0.05095816,0.0014530869,-0.011732932,0.019764146,-0.0075874403,-0.0034175953,-0.02608521,-0.0012427004,-0.0060125864,-0.0009700775,-0.01896319,0.0074250842,-0.021625828,0.019428609,0.032016616,0.032557804,0.009021586,0.028358193,-0.007100372,-0.013995093,0.016116546,-0.03240627,-0.009140647,0.020575926,0.023703987,-0.009817131,0.0049410365,0.03439784,0.04468039,0.0013204961,-0.015239824,0.01870342,0.00438632,0.006975899,0.006651187,-0.0043646726,0.008372162,0.006597068,0.025327547,0.010239257,-0.037255306,-0.016203135,0.011667989,-0.030111639,0.013475554,0.010271727,0.010385376,-0.044810276,0.028769495,0.014763579,-0.0113108065,-0.002776289,-0.006434712,0.037666608,0.003991253,0.016181488,0.04400932,-0.0063751815,0.026777929,0.032233093,-0.030566236,-0.034679256,-0.0035393625,-0.009054057,0.022318548,0.008594048,-0.0063427105,0.0068351906,-0.008767228,-0.0025056954,0.0063535343,-0.0052684546,-0.0030685298,-0.045676176,-0.0016384433,0.00021562916,-0.03225474,0.027059345,-0.028033482,-0.018454473,-0.022967972,-0.012772011,0.018118937,0.013778619,-0.024634827,-0.010953623,0.010071488,0.006743189,0.0037125421,0.025067776,-0.007619912,0.008112391,0.033250522,0.017826697,-0.028098425,-0.0042807884,-0.010959035,-0.0074900268,0.018865775,-0.039571587,-0.03842427,-0.011689637,-0.020868167,-0.008269336,-0.004830093,0.010834562,0.023963757,0.028726202,0.00028040246,-0.010006546,-0.0033770062,0.0059963507,0.015954189,-0.0011919641,0.013388964,-0.005195394,0.0052928077,0.033943243,-0.0047678566,0.014287334,-0.03225474,-0.028423136,-0.00060071744,0.030133286,-0.017274685,-0.049226362,-0.006266944,0.024981188,-0.0045270287,-0.023184447,-0.031237308,-0.025370842,0.020694988,-0.028531374,0.006759424,0.009551949,0.0072573163,-0.02452659,-0.0030739417,-0.02281644,-0.0019103898,-0.016354669,-0.030393057,-0.017902462,-0.03327217,0.0029927636,0.02238349,0.011635519,0.06442289,-0.03089095,-0.02478636,-0.03216815,-0.014060035,0.019504376,0.00039269874,-0.051694173,-0.001303584,0.011949407,0.0037666608,-0.02003474,0.026301684,0.041952807,-0.009286767,0.004186081,0.037948027,-0.012339061,0.018616829,0.06559185,0.00828016,-0.0006186443,0.041974455,0.03900875,0.0060504694,-0.008258512,-0.025067776,0.015402179,-0.03732025,0.014168273,0.025024483,-0.03509056,0.022881383,-0.029548805,-0.008913348,0.037666608,-0.017253038,-0.006737777,-0.0006003792,0.026799574,-0.011483986,0.045676176,0.032189798,0.012360709,0.029743632,0.003799132,-0.038445916,-0.025998618,-0.0009017527,-0.017566927,0.0034257132,-0.042602234,0.044637095,-0.025327547,-0.007890505,0.0048950356,0.026907813,0.0017561516,-0.007679442,-0.015239824,0.03833768,0.02591203,0.027405705,-0.022859735,-0.013064252,-0.030349761,0.03526374,0.02131194,-0.021409353,-0.02478636,0.020067211,0.021896422,-0.002933233,-0.023617396,-0.0101797255,-0.031518724,0.029548805,0.049356245,-0.01320496,-0.038142852,-0.028466431,-0.012317413,0.013443083,-0.022231959,0.053122908,-0.006034234,0.0036178345,-0.012198353,0.0023460453,-0.047494564,-0.0125122415,0.0216583,-0.008150275,0.014049212,-0.02469977,-0.017718459,0.021387706,0.031756848,0.008004154,0.014731107,-0.013399787,-0.033726767,-0.01630055,-0.013681205,0.0103096105,0.004789504,0.015597006,-0.0063318866,-0.033467,0.01317249,0.000056824625,-0.012685421,0.04788422,-0.022102073,-0.03491738,0.013388964,-0.004159021,0.006786484,-0.009362534,-0.03465761,0.0073817894,-0.021084642,0.003477126,-0.017133977,-0.014287334,0.0068730735,0.0029034677,-0.00036699238,-0.010623499,0.027600532,0.01149481,0.004794916,0.023444217,0.06511561,0.014471338,-0.040264305,0.01346473,-0.0235741,0.0018955071,0.0034365368,0.022513375,-0.012241648,0.01123504,0.022253605,0.019861558,-0.018378707,0.044723686,-0.0020835695,-0.032103207,0.024180232,0.028228309,-0.0068514263,0.035653394,-0.028228309,-0.013908504,-0.00906488,-0.025305899,0.011906112,-0.037363544,0.011505634,0.033142287,-0.032471213,-0.0103799645,0.001779152,-0.023335978,-0.012988485,0.017956581,0.012999309,-0.0004765827,-0.02139853,0.020002268,0.019829089,-0.0038316033,0.016008308,-0.016430434,-0.02247008,0.04359802,-0.032471213,0.033250522,-0.014492985,0.020554278,-0.007306023,-0.0056283437,0.017956581,0.03636776,0.017090682,0.008150275,-0.024764713,-0.0068568382,0.01074256,-0.043901082,0.001570795,-0.013821914,0.044637095,-0.00354748,-0.0006074823,0.01972085,-0.002517872,0.013150842,-0.017123153,-0.008886289,-0.018173056,-0.005327985,0.012263295]},{"id":"interface-WebhookSendOptions","type":"interface","source":"main","text":"Interface: WebhookSendOptions\nDescription: Options for sending a message via webhook. Aligns with WebhookMessageRequest in the API.\nProperties: attachments: WebhookAttachmentMeta[], avatar_url: string, content: string, embeds: (APIEmbed | EmbedBuilder)[], files: MessageFileData[], tts: boolean, username: string","meta":{"url":"/docs/typedefs/WebhookSendOptions"},"embedding":[-0.034762986,0.016148482,0.05059327,-0.0020968663,-0.023964187,-0.06606559,0.043871365,-0.039973456,0.012936683,0.007930058,-0.0112661505,-0.019260842,0.003902881,-0.010182293,-0.0044398378,-0.015929721,-0.02195557,0.05206493,0.0128173595,0.011305925,-0.015144173,0.006995355,0.024719903,0.027782546,-0.017341718,0.011912487,-0.016595945,0.036234647,0.002275852,-0.025336409,0.01428902,-0.029413305,0.027802434,0.00826317,-0.031581018,0.063559785,0.010410997,0.028080856,0.0056529627,-0.0010869649,-0.028438827,-0.027563786,-0.029870713,0.024700016,-0.039237626,0.042359933,-0.009471322,-0.005116006,-0.023327794,0.021537937,-0.032336738,0.014328794,0.034126595,0.041047372,-0.012051699,-0.013861442,0.001992458,0.013712288,-0.031600907,0.014895582,-0.016894255,-0.021120304,-0.030407669,-0.05170696,0.028697362,-0.007820678,-0.06765657,0.010122632,-0.019907178,0.024879003,0.09172019,0.0015884974,-0.03070598,0.07203177,0.011435193,-0.015740791,-0.040112667,-0.01985746,-0.014905525,-0.053775236,-0.0297315,0.008133902,-0.09172019,-0.04494528,-0.03746766,0.027424576,-0.0031943962,-0.039893907,-0.027822321,0.023705652,-0.052184254,-0.010957898,-0.06546897,-0.018216759,-0.013533303,-0.031600907,0.012946627,-0.04383159,-0.021339064,0.012419614,0.05170696,-0.013095782,-0.06928732,-0.0043130564,0.010261843,-0.021975458,0.031899218,-0.010067942,0.018017886,0.013225049,-0.020841882,0.006264497,-0.013811724,0.016039101,0.014119977,-0.035956223,-0.0075074527,0.04259858,-0.0061650607,-0.05373546,-0.027961532,-0.038223375,0.07521374,0.0012634646,-0.0048450413,0.019101745,-0.018584674,0.03386806,-0.056121938,0.052104704,0.04434866,0.039834246,0.027364913,-0.012568768,-0.029413305,-0.021140192,-0.017888619,0.03537949,-0.019350335,0.012260515,0.048644315,-0.038740445,-0.016834592,-0.048286345,-0.025972804,0.023049371,-0.03746766,0.05286042,-0.016814705,0.0029433193,-0.036234647,0.02621145,0.006622468,0.014627103,-0.008969168,0.026131902,-0.020563459,0.034166366,0.015800454,-0.02658931,0.04311565,-0.021935683,-0.00056243746,-0.009168042,-0.010957898,-0.030248571,0.08456077,-0.0029955234,-0.013314542,0.0005354032,0.03776597,-0.065190546,-0.0012864592,0.043950915,0.02827973,-0.0033261497,0.02121974,-0.030188909,-0.02473979,-0.0027071575,0.05397411,0.00053043134,-0.00019312424,-0.04208151,-0.072469294,-0.01240967,0.008889619,0.015810397,0.042837225,0.0010813714,-0.012618487,-0.0011385474,0.010351336,-0.017759351,-0.016188256,0.0047108023,-0.028597925,0.00009244483,0.0033758678,-0.057036754,0.027822321,-0.0034380155,0.04407024,-0.015392764,-0.044587307,0.03575735,-0.0038208459,0.030308234,-0.015154117,-0.029313868,0.041126918,-0.006175004,0.041047372,0.018564787,-0.04243948,-0.02217433,-0.015860116,-0.007263833,-0.00014775636,0.008178649,-0.051348988,0.02372554,0.043950915,-0.014547554,-0.01762014,-0.0005434824,-0.062605195,-0.036433518,-0.043234974,-0.0012703008,-0.04347362,-0.023089146,-0.0030775585,-0.03400727,0.006045737,-0.01622803,0.021478275,0.003845705,0.023168694,-0.022532301,-0.01093801,-0.020096108,-0.028538264,0.016397072,-0.011803107,0.004414979,0.0013635225,-0.02923432,-0.01303612,0.008765324,0.049320485,-0.00804441,-0.0062446096,0.0041191555,0.037209123,-0.029711613,-0.023288019,0.0042931694,0.021537937,0.009511097,0.049797777,-0.015989382,-0.010301617,0.028836573,0.01303612,0.01762014,0.045979418,0.039834246,-0.013503471,0.014438174,0.011743446,0.044308886,0.03289358,0.03965526,-0.028080856,0.025913142,-0.048127245,-0.024461368,-0.014080202,0.0069506085,-0.041445117,0.008745437,-0.006319187,0.08062308,-0.02402385,0.009565787,0.022949934,0.010371223,0.03422603,0.047490854,0.009461379,0.0004278875,0.02460058,-0.04399069,-0.0001887739,0.033967495,0.046536263,-0.0023230843,0.08861777,-0.0016170854,-0.014915469,0.0014144836,0.0075770584,-0.044985056,0.010311561,-0.028299617,0.014547554,-0.004914647,0.014259188,-0.018882984,0.022154443,0.025594944,-0.05699698,0.009575731,-0.035498817,0.015522031,0.01303612,0.008800127,-0.0068710595,0.015402707,-0.0287968,0.031123612,-0.0077112974,-0.036493182,0.0042484226,-0.038084164,0.0013871386,-0.00545409,-0.008680803,0.043791816,0.023467004,-0.010639701,0.0066473274,-0.007726213,-0.004186275,0.042996325,-0.010291673,0.028955897,-0.014995018,0.050831918,0.0012187181,-0.013960879,0.0045417603,0.0065578343,-0.072827265,-0.049837552,-0.050911468,0.015362933,-0.0065528625,-0.000022237255,0.0042235637,-0.02086177,-0.025575057,0.025833592,-0.024898889,-0.0013896246,0.01251905,-0.03277426,-0.02658931,-0.01865428,-0.012767642,0.025972804,-0.0057275402,0.027603561,0.024719903,-0.0037686417,-0.012757698,-0.03422603,-0.006329131,-0.03949616,0.062963165,0.019539265,-0.00074018014,0.007731185,-0.027762659,0.0122505715,-0.002163986,0.027205816,-0.012330121,-0.020225376,0.06487235,0.033728845,-0.03730856,-0.022452753,0.0040097754,-0.009640365,-0.01546237,0.017470986,-0.01039111,0.0020421762,0.0155816935,0.049598906,-0.07012259,0.018336084,0.013851499,0.005568442,0.027563786,0.012936683,-0.014676821,-0.046695363,-0.014338737,-0.01699369,-0.02086177,0.0154922,-0.00545409,-0.05309907,-0.00499171,0.030566767,0.043592945,-0.021557825,0.023904525,0.04709311,0.023665877,0.033470314,0.008909507,-0.014119977,0.01884321,-0.045899868,0.046019193,0.05699698,-0.045104377,0.0452237,-0.0011397904,0.022134556,-0.013811724,-0.03502152,0.010729194,-0.018266477,0.0051905834,-0.060178947,-0.063281365,0.02026515,0.04963868,-0.01737155,0.022452753,-0.06721905,0.030964514,0.020195546,0.01358302,0.026191564,-0.051150113,0.013931048,0.01865428,-0.0031073894,-0.01230029,-0.01442823,-0.006373877,0.008248255,-0.043433845,-0.006562806,-0.01772952,-0.02871725,0.006577722,0.008203508,0.020314869,-0.016675495,-0.033370875,0.0049817665,0.037368223,0.0068412283,-0.0068263127,-0.020285038,-0.013314542,0.0140304845,0.0112263765,0.021935683,-0.006602581,0.012568768,0.0112263765,0.030566767,0.01292674,0.025754044,0.035260167,0.007865424,0.01461716,-0.044149786,0.033291325,-0.036155097,0.024680128,-0.008233339,-0.007959888,0.0033336072,-0.024839228,-0.036711942,-0.012399727,0.073105685,0.007696382,-0.0025729183,0.01699369,0.013185275,-0.009933703,-0.0013324486,-0.032038428,-0.0046735136,0.007935029,-0.041325793,-0.016029157,-0.035638027,0.0010969085,-0.005469005,-0.012161079,-0.04494528,0.0063539897,0.0061948914,0.05405366,0.0073185232,-0.069168,-0.0031496498,-0.02593303,0.045462348,-0.007969832,-0.038302924,-0.015929721,0.017928394,-0.03187933,0.0021217254,-0.01325488,0.037069913,0.016784875,-0.030586654,-0.052343354,0.011465024,0.020762334,0.005707653,-0.0010938011,0.008685775,-0.05186606,-0.060258493,0.0077063255,-0.005285048,-0.02680807,0.0034131564,-0.020583346,-0.006060652,-0.015004962,-0.01112694,-0.0069207777,-0.040649626,0.046098743,-0.015770622,-0.03531983,0.036334082,0.011146827,0.01627775,-0.00019079371,0.032595273,0.010167378,0.031223048,-0.001165271,0.016049044,-0.028478602,-0.027921759,0.03796484,-0.020742446,0.018465351,0.019141518,-0.0045541897,-0.0025455733,-0.009083521,-0.023486892,0.027424576,-0.045661222,-0.024540918,0.0035846843,-0.021259515,0.021796472,-0.015999326,0.003316206,-0.003311234,0.010520377,-0.008899563,-0.009431548,-0.014965187,-0.0036716913,-0.0045268447,-0.0027593616,0.0005089904,0.0094862385,-0.011355644,-0.024063623,-0.004148986,0.00960059,-0.01560158,0.015034793,-0.008228367,-0.013960879,0.014308906,0.039535936,0.023367569,0.018803434,0.04017233,0.017908506,0.036851153,-0.026251225,-0.017500818,-0.021458387,0.00025232002,-0.00921776,-0.031441808,0.022074893,0.01743121,0.012041755,-0.0075969454,-0.017192563,0.020225376,0.046536263,0.014527666,-0.019817686,-0.033152115,0.03084519,0.009893928,0.027762659,-0.0098094065,-0.018465351,0.01546237,0.007497509,-0.024978438,-0.010460716,0.009366915,-0.029333755,0.034047045,0.042200834,-0.008079212,0.023924412,-0.014090146,0.030546881,-0.00025480593,-0.010599926,-0.0064782854,0.043871365,0.01420947,0.048882965,-0.013831612,-0.018674167,-0.026708633,-0.0026226365,0.03378851,-0.032654934,-0.012528994,0.02247264,-0.037149463,0.014845863,0.041126918,-0.002272123,0.0107988,0.022055008,-0.037288673,0.016476622,-0.01685448,0.025057988,-0.018664224,-0.014328794,0.051428538,0.000799842,0.016486565,-0.0309844,-0.005088661,0.02798142,0.009640365,-0.0012690579,0.012757698,-0.0045044716,0.004099268,0.027325138,0.026469985,-0.004497014,-0.0000636238,-0.007944973,-0.016705325,-0.011982094,-0.051587634,0.04852499,0.010371223,-0.023307906,0.011405362,-0.05707653,0.02857804,-0.033012904,0.021557825,0.044905506,0.006060652,-0.004007289,0.0012889451,-0.020881657,0.026847845,-0.022989709,0.032734483,0.031322483,0.051587634,-0.012091474,0.031600907,-0.016973803,0.011932375,0.003510107,0.021716923,0.071037404,0.04267813,0.0273848,0.03179978,0.02026515,0.0077560437,-0.011206489,-0.0215976,0.0141796395,-0.005469005,-0.020086166,-0.0030750725,-0.0017649971,-0.0069406647,0.0011907516,-0.016407017,0.022731174,-0.008844873,0.0066373837,-0.0037810714,0.01688431,-0.0062545533,0.0038407333,-0.007442819,-0.0040570074,0.021577712,-0.034385126,-0.045820322,0.027742771,-0.0017103071,-0.020125939,0.0082731135,0.015880002,-0.011842882,0.013493528,0.0077013536,-0.022333428,-0.004859957,0.009262506,-0.012359952,0.046536263,-0.005991047,-0.014249245,-0.017689746,0.007954917,0.032575384,0.012797472,0.05170696,0.024918776,0.015671186,0.011355644,-0.0007408016,0.010072913,-0.007905198,0.004638711,0.0048997314,0.0017078212,-0.020961206,0.028239954,-0.028220067,0.015611524,0.00370898,-0.02408351,-0.014448117,-0.0030079528,0.024879003,0.037726194,-0.02408351,-0.005707653,-0.013463696,-0.023824975,0.01718262,0.027066605,0.0500762,0.0076218047,-0.005623132,-0.033828285,-0.040331427,-0.005409343,0.058428865,-0.05317862,0.006060652,-0.029194545,-0.025793817,-0.03319189,0.0145972725,-0.04208151,0.010709306,-0.00747265,-0.0022957393,-0.03848191,-0.04007289,-0.025157424,-0.008546564,-0.0051856115,-0.046178292,0.004574077,0.013702344,-0.056002613,0.02593303,0.009481266,-0.0068064258,-0.0383427,0.0126682045,0.049837552,-0.031481583,-0.01589989,-0.01710307,-0.030129246,0.031481583,-0.004034634,-0.011474967,0.018694054,-0.0026599253,0.021995345,-0.036513068,0.03561814,-0.0147862015,0.009312225,0.026987055,0.002244778,-0.0010422184,0.012956571,0.020106053,-0.011723558,0.055127572,-0.0072240587,-0.012509107,0.011425249,0.045979418,0.062287,-0.020026503,-0.016506452,0.025336409,-0.0167451,0.016208142,0.023109034,0.009834266,-0.00084458845,0.026390437,-0.041286018,-0.0051358934,0.030348007,0.0039227684,0.0016804761,0.008402381,-0.013762006,0.036990363,0.035817012,0.011902545,-0.0068959184,0.02724559,0.01898242,0.01941994,-0.024401708,-0.02209478,0.01759031,0.0136924,-0.035359606,-0.010082857,-0.013155444,-0.024620468,-0.0015400222,0.0012112603,0.0056678783,-0.024640355,0.012051699,-0.0019887292,-0.008909507,-0.02416306,-0.020255206,-0.011216433,-0.0037910151,-0.0031347345,0.055923063,-0.0035225365,0.040689398,-0.0057971454,0.0112661505,-0.0029184602,0.018604562,-0.00033870543,0.04868409,-0.0057921736,0.026052352,0.018246591,-0.009351999,0.028657587,0.010570096,-0.042638354,0.00092227315,-0.0155816935,-0.00043006268,-0.0138017805,0.020921431,-0.023705652,0.0028339392,-0.0067069894,0.0024324644,-0.008979112,0.04208151,-0.041922413,0.03766653,0.00072340027,-0.004094296,-0.042359933,0.01557175,0.006115342,-0.007323495,0.028339392,0.011683784,0.035936337,-0.032595273,-0.017828956,-0.033510085,0.050513722,-0.032575384,-0.02350678,0.05663901,0.02121974,0.013901217,-0.009168042,-0.013016232,0.050354622,-0.0040371204,-0.01754059,0.010301617,0.029751388,-0.0020546059,-0.056678783,-0.0034678464,-0.015512087,-0.015681129,0.010768969,0.023049371,0.002472239,-0.05186606,0.01505468,0.015044737,-0.034047045,-0.06638378,-0.011594291,0.031978764,-0.0042111343,-0.013294655,0.026549535,0.012359952,-0.010172349,-0.025833592,0.013732175,0.036731828,-0.08471987,0.023546554,-0.048286345,-0.046576038,0.021418612,-0.016894255,0.025376184,-0.03106395,-0.035061296,0.001375952,0.009356971,-0.01791845,0.01671527,0.036274422,-0.022671513,-0.0019812714,-0.02643021,-0.043274745,0.0034206142,0.054729827,0.018902872,0.008606225,0.023904525,0.019400053,-0.021398727,0.024938663,0.059980072,0.0118329385,0.010301617,0.041604213,0.006214779,-0.0048375838,-0.004944478,-0.006458398,0.008675831,0.053775236,0.0034703324,-0.009888956,-0.0025654607,-0.014249245,-0.01175339,0.007979776,0.0077361567,-0.017391438,-0.013970822,-0.064235955,0.013841555,-0.026549535,0.03062643,-0.048803415,0.0003018829,0.031322483,0.021458387,0.020543573,-0.015183947,-0.000716564,-0.025495509,-0.020145826,0.012648318,-0.020841882,0.022572076,0.018813377,-0.000020333979,-0.024879003,-0.014239301,0.0017749408,0.031382147,0.007721241,-0.038521685,-0.005409343,0.0043404014,0.0067219045,0.0161982,0.046218067,0.056440134,-0.026469985,0.0073433826,0.017749408,0.0076317484,-0.0052054985,0.030507106,0.022353316,-0.01660589,-0.022989709,-0.028041082,0.018316196,-0.036930703,-0.010311561,0.0000987373,-0.0024535947,-0.005175668,0.032933354,0.015174003,-0.015452426,-0.01292674,-0.017580366,-0.030487219,0.02203512,0.008924422,-0.011206489,0.00018457892,-0.0015400222,-0.0060705957,0.034762986,0.010818686,0.034623776,-0.014279076,0.0131455,0.026251225,-0.014965187,0.04904206,0.0132349925,0.015362933,0.017252225,-0.011574404,0.016218087,0.031163387,0.00014022095,0.00837255,0.0031844527,0.023069259,-0.0076367203,0.019052025,0.007129594,0.04764995,-0.0012087745,0.005623132,0.007661579,0.023626102,-0.035817012,0.006120314,-0.021458387,-0.045502122,-0.0040843524,-0.036075547,0.009471322,0.008839902,0.0049941964,-0.015472313,0.0061650607,0.013931048,-0.0006687102,0.02849849,-0.009779576,-0.020543573,0.015870059,0.014050372,-0.03422603,-0.024182947,0.013781893,0.02607224,-0.035856787,0.0074875653,-0.009968505,-0.008193565,0.015929721,-0.019479603,0.022671513,-0.021915795,0.0020396903,0.0067765946,-0.033510085,-0.010440828,0.04824657,-0.019887293,0.028239954,-0.013662569,0.012976458,-0.026668858,-0.009133238,0.02173681,-0.003452931,-0.020881657,0.0003520672,0.023188582,0.012986402,-0.017461043,0.045502122,-0.008059325,0.021677148,0.036095433,0.019787855,-0.015004962,-0.0091083795,0.0056281034,-0.02129929,-0.006930721,-0.043354295,0.009734829,-0.0042558806,0.0024573235,0.024003962,0.035001636,-0.031521358,0.033072565,0.035518702,-0.03313223,-0.004405035,-0.0025207142,0.0014393427,-0.021796472,0.02372554,0.006204835,-0.010739137,0.017202508,0.014358625,0.0055982727,0.016019214,0.03299302,-0.008526676,-0.004099268,-0.0022037604,-0.008675831,0.011027504,-0.019688418,0.008243282,-0.02438182,-0.002081951,-0.0059015537,0.01453761,-0.013732175,-0.01769969,0.025276748,0.010649645,0.019221067,-0.022134556,-0.014189582,-0.001853247,0.008954253,-0.0019091801,0.019409997,0.024799453,0.020444136,-0.0147862015,-0.013791837,-0.03362941,0.008984084,-0.05325817,-0.029254206,0.032078203,-0.03665228,0.016108707,-0.021140192,-0.0167451,-0.015283383,-0.015979439,-0.005195555,0.022949934,-0.032217413,0.016804762,-0.030507106,0.03269471,-0.0031247907,0.033231664,0.009192901,0.014875694,-0.010371223,0.0034753042,0.03746766,-0.028160404,-0.0024535947,0.026131902,0.024242608,-0.009978449,0.018912815,0.037507433,0.036771603,0.024182947,0.0273848,0.014348681,0.014567441,0.003087502,-0.009754716,0.018922757,0.014955243,-0.02173681,0.0037214095,-0.018912815,-0.035717577,-0.019260842,0.023626102,-0.01641696,0.010232012,-0.024680128,0.021975458,-0.048803415,0.054292306,0.014577385,-0.02364599,-0.024123285,-0.019946953,0.020981092,0.0108485175,0.0068113976,0.04753063,-0.027404688,0.03305268,0.00017991784,-0.020444136,-0.011842882,-0.020384474,-0.0017674831,-0.012767642,-0.0001221981,0.008989056,-0.012578712,-0.024481256,0.018853152,-0.0011578132,0.028041082,-0.017232338,-0.029572403,-0.02959229,0.011882657,-0.035777237,0.015283383,0.0022833096,0.036373857,-0.018256534,-0.020821994,0.009277422,0.006060652,-0.020294981,0.006975468,0.019807743,-0.020682784,-0.005404372,0.021716923,0.014090146,0.022591963,0.044547535,0.012688092,-0.00031695372,0.003142192,-0.015223722,0.028836573,0.0041390425,-0.02129929,-0.010977785,-0.018057661,-0.02231354,0.0071992,-0.003987402,-0.0047928374,0.013215105,-0.008894592,-0.01123632,0.0014753884,-0.011395418,-0.002838911,-0.0070052985,-0.0037040082,0.0035846843,-0.003283889,-0.011276094,0.056042388,-0.01611865,0.00336841,-0.000336841,-0.028816685,-0.019320505,0.010311561,-0.009466351,-0.026469985,0.010619814,0.029114995,-0.04470663,0.0070052985,-0.030348007,0.014239301,-0.007785875,-0.031242935,-0.027006943,0.016148482,-0.002417549,0.0017252226,0.0015300785,-0.025097763,-0.021398727,-0.012091474,-0.064593926,-0.008178649,-0.03422603,-0.004290683,0.031004287,0.0161982,0.0110772215,-0.030566767,-0.019519377,-0.023844862,0.019012252,-0.029632065,0.020662896,-0.02937353,-0.013642683,0.046695363,0.018922757,-0.007964861,0.020841882,0.01696386,0.03209809,-0.013672513,0.021478275,0.015452426,-0.009511097,0.035359606,0.031461697,-0.023685765,0.017759351,0.0092575345,0.030507106,0.0006407437,-0.010097773,0.024202835,-0.0596221,0.042280383,0.040629737,-0.012877022,-0.018415632,-0.006264497,0.01644679,-0.016257862,0.007845537,0.01431885,-0.050513722,0.014746427,-0.022850499,-0.00646337,0.027901871,-0.0038208459,-0.00026397273,-0.015522031,-0.007273777,-0.011504798,0.034922086,0.0008240797,0.0058468636,-0.039396726,0.02203512,0.00404955,-0.0038133883,-0.011952262,-0.0019253384,-0.0061650607,0.014139865,-0.002250993,0.03496186,0.01671527,0.01622803,-0.019250898,0.002381503,0.025256861,0.0061103706,-0.0039749723,-0.045502122,-0.03575735,0.023705652,0.021060642,-0.017928394,0.0064434824,-0.0018420604,-0.012618487,0.0064683417,0.05815044,0.010440828,-0.025793817,-0.015522031,-0.0025194713,-0.01630758,-0.0018868068,0.028220067,-0.033947606,-0.008849845,-0.014736483,0.01887304,-0.030149134,-0.029035445,0.011465024,0.0031297626,-0.0035076211,-0.029134883,-0.01688431,0.07425915,0.01865428,0.004484584,0.0037040082,-0.0012777585,-0.011574404,-0.022432866,0.005275104,-0.00058791804,0.013831612,-0.010351336,-0.006965524,-0.021895908,0.01699369,0.023168694,-0.034345355,0.0102419555,0.01093801,-0.024401708,0.041365568,-0.0185449,0.023248244,-0.034106705,0.0025480592,0.028677475,-0.015362933,0.011574404,-0.014328794,0.0021291832,-0.014975131,-0.009511097,-0.007915142,0.0068660877,0.015512087,-0.01535299,-0.008710634,0.008959225,0.03545904,-0.005170696,-0.003286375,-0.007547227,-0.011445137,-0.020722559,0.039893907,-0.009347027,0.006915806,0.028478602,0.05691743,0.02007622,-0.00567285,0.023844862,0.007557171,-0.00938183,0.007880339,0.021398727,-0.028140519,-0.012906852,-0.004208648,-0.019350335,0.0050662877,-0.0008178649,-0.0015089483,-0.027006943,0.007721241,0.025236974,-0.0019601411,-0.01696386,0.010768969,-0.037209123,0.015034793,0.032635044,0.03796484,-0.012230684,-0.020762334,0.009113352,-0.0046486543,-0.0075323116,0.03840236,-0.01208153,-0.01068942,0.011037447,0.013911161,0.009018887,0.011385474,0.0044000633,0.012648318,0.032635044,0.029433193,0.013165387,0.0033012906,0.026469985,-0.0042335074,-0.020961206,0.0239443,-0.059423227,-0.010768969,-0.002248507,0.003567283,0.017122958,0.0042509087,0.016705325,-0.026191564,0.013553189,-0.019797798,0.004745605,-0.006687102,-0.02151805,-0.018346027]},{"id":"interface-WebSocketConstructor","type":"interface","source":"main","text":"Interface: WebSocketConstructor","meta":{"url":"/docs/typedefs/WebSocketConstructor"},"embedding":[-0.0119990995,-0.036602296,-0.00658564,0.014570335,-0.0060090027,-0.0141544,-0.026392976,-0.014608147,0.057323426,-0.007102408,0.0073860004,0.005760072,0.01797344,0.013259509,-0.0056151245,-0.0145829385,-0.06191132,0.017305424,-0.011205041,0.016145846,0.021767274,0.022006752,0.0052937204,0.009377447,-0.009226198,-0.011854152,-0.013309925,-0.015994597,-0.029594418,-0.049130764,0.034510013,-0.043937877,0.026720684,0.01831375,0.040333107,0.03236732,0.037686247,0.0015046139,0.00037772898,0.01470898,-0.008060319,-0.019788431,0.029342335,0.0046824217,-0.040610395,0.013322529,-0.00947828,0.040307898,0.017456673,0.0066234525,-0.009736664,0.004209768,0.011167229,0.017860005,-0.029871708,-0.043257255,-0.011501238,0.033224396,-0.01021562,0.046206616,0.022195812,-0.023304973,-0.016309699,-0.004751744,-0.0050794506,-0.012024308,-0.012534773,0.017444069,-0.026670266,0.04867702,0.057222594,-0.039753318,-0.01673824,-0.004865181,-0.020027908,-0.0018071122,-0.024577986,0.011967589,0.0031069096,0.027199639,-0.0050164303,0.015150123,-0.06705379,-0.05656718,-0.03176232,0.004761197,-0.031182533,0.00846365,-0.019901868,-0.016876884,-0.017746568,0.024010802,-0.027527345,-0.024729235,0.030577537,-0.008501463,-0.006336709,0.035770424,0.009112761,-0.041064143,0.09135449,-0.05006347,-0.04736619,0.023166329,0.0071465224,-0.011520144,0.017998649,-0.05813009,-0.06589422,0.025321629,-0.039677694,-0.0050920546,0.01757011,0.008583389,0.016876884,-0.000694013,0.01699032,-0.009396354,-0.009490884,-0.034257933,0.026166104,-0.00895521,0.022221021,0.017809587,0.0054670265,-0.03387981,-0.05001305,-0.00015331701,-0.034308348,-0.016120639,0.048399728,0.0019473328,0.024666216,-0.010347962,-0.00683142,0.005003826,-0.030022956,0.022359665,-0.0006794395,-0.02529642,-0.016196264,-0.024577986,0.0680117,-0.03330002,0.017595317,0.007871258,-0.014935854,0.050996173,0.001785055,0.031106908,-0.0028879135,0.012610398,0.010083277,-0.012188161,-0.016322304,0.030779202,-0.0013328831,0.035493135,0.0090686465,-0.029569209,0.03725771,0.020733738,-0.029670041,0.0009539725,-0.042198513,-0.00024774927,0.04837452,0.002560207,-0.050365966,0.03133378,0.04280351,-0.03123295,0.0037308123,0.031989194,-0.019069998,-0.028787754,-0.010158901,-0.024023406,-0.007833445,-0.011072698,0.07859914,0.020595092,0.059592165,-0.041366644,0.005923925,-0.0027130316,0.005489084,-0.00033597794,0.053189285,-0.0713896,-0.05167679,0.043559756,0.0059837946,0.012024308,0.042954758,0.008287193,0.0130956555,-0.024351113,0.029317128,-0.008035111,-0.02151519,-0.010959261,0.011652486,-0.024603195,0.00081926625,0.023367994,0.016549177,0.01741886,0.00032061667,0.038997073,0.028611297,-0.00843214,0.03609813,-0.001904794,-0.04098852,0.007606572,0.03834166,0.007505739,-0.022964662,-0.0560126,-0.024136843,0.034913346,0.03428314,-0.047643483,0.02856088,0.0152005395,0.024099031,0.020973215,-0.018540625,0.015162727,-0.046937652,-0.021363942,-0.024540175,-0.041467477,-0.046609946,0.020784155,-0.018011253,0.002843799,0.011116813,-0.016675219,-0.06135674,-0.03193878,-0.013423362,0.024073822,-0.012244879,-0.008072923,-0.00033144833,0.008898492,-0.038543325,0.011545352,0.04625703,0.0022214719,-0.006938555,0.040484354,0.006465901,-0.01966239,0.0055174427,0.03778708,0.03453522,-0.003218771,0.022460498,-0.06665046,-0.0149484575,0.04267747,-0.003086428,-0.073154174,-0.010127391,-0.027829843,0.024628403,0.014620751,0.027376097,0.025624126,0.029493583,0.037030835,-0.01637272,0.012528472,-0.002379023,0.027653387,-0.06594463,-0.012994823,-0.061104655,-0.03871978,-0.005813639,0.04638307,-0.006311501,0.025044339,0.012509565,0.0624659,0.01646095,0.032090027,-0.013536799,0.030048164,0.015868556,0.00033400854,0.018691873,0.036904793,0.08348953,0.00683142,0.043433715,0.01317128,0.04212289,-0.024981318,0.0020450146,-0.006286293,-0.0017708754,-0.0005250394,0.031006075,-0.03163628,0.024943506,-0.034131892,-0.026014853,-0.0061413455,-0.09296781,-0.006402881,-0.026922349,-0.011091604,0.05167679,0.0138519015,-0.02551069,-0.010713481,-0.022359665,0.008261985,-0.007278865,-0.01562908,0.041845597,-0.0243133,0.025964437,-0.030627953,0.014242629,0.038971864,0.004209768,-0.041038934,0.019523744,-0.040761646,0.03791312,-0.02188071,-0.025800584,0.0045910417,0.0142174205,0.042879134,-0.03861895,-0.02418726,0.0036488858,-0.0067620976,0.035871256,-0.028989421,0.015931576,0.036904793,0.02348143,0.033249605,-0.038064368,0.008829169,-0.065188386,-0.011740715,-0.008747242,-0.03927436,0.051979292,0.009742966,-0.0018165653,0.005372496,0.022296645,0.055558853,-0.008180059,0.018502813,0.023443619,0.022775602,-0.0043799235,0.0045028133,-0.046483904,-0.07073419,0.023393203,0.0621634,-0.010612649,0.007102408,-0.011954985,-0.008413234,-0.011652486,0.007486833,0.04421517,-0.014494711,0.036274586,0.021439567,-0.039223947,-0.045778077,-0.03294711,-0.015503038,-0.0034598242,0.07436416,-0.005766374,-0.010114787,0.027955884,0.0020009002,-0.02689714,-0.020317802,0.047845148,-0.013322529,0.040534772,-0.025182983,0.033199187,-0.022636956,0.019485932,0.032014403,0.0065352237,-0.0030675218,-0.013196488,-0.04572766,0.014545127,0.026392976,0.012919198,-0.019826243,0.0015959936,-0.038114786,0.027552553,0.03405627,-0.017179383,-0.023342784,-0.016788656,-0.12412514,0.036173753,0.032972313,-0.008280891,0.033123564,-0.049307223,-0.016952509,0.022334458,0.03024983,0.019586764,0.0024152598,-0.018275939,-0.01498627,0.0012895565,0.0035039387,-0.00390727,0.04809723,0.0013242178,0.0046446095,0.007518343,-0.014595543,0.00916948,0.04055998,-0.053844698,0.023317577,0.012421336,0.021691648,-0.014444293,-0.00941526,0.01680126,-0.00048250053,-0.048979517,-0.019006977,-0.039047487,-0.022977266,0.017733963,0.040610395,0.0133477375,-0.007499437,0.005394553,0.02997254,-0.006453297,0.022536123,0.0028422235,-0.027250055,-0.05283637,0.02563673,-0.024489759,0.019990096,0.021931127,0.018477604,0.008085527,0.025220796,-0.045072246,0.01187936,-0.003270763,0.0011067971,0.004597344,0.019372495,0.022246229,-0.008967814,0.016851677,0.012597794,0.0036520367,-0.017343236,-0.027628178,-0.0018165653,0.00040018006,0.10980688,-0.019712806,-0.00074679265,-0.061961737,0.012314201,-0.0062075173,0.00901823,0.018603645,-0.014078775,-0.010902543,-0.027300471,-0.076481655,-0.038291242,0.022145396,-0.023128515,0.031863153,-0.06957461,-0.018540625,0.028964212,0.029544001,-0.006560432,-0.042324554,0.0024577987,-0.05434886,-0.052533872,0.018490208,-0.011778528,0.023128515,0.020607697,-0.026821516,-0.0030045013,-0.015402205,0.054752193,0.002240378,-0.0215404,-0.02815755,0.028812964,0.0005277965,-0.019649785,-0.02717443,0.0200027,-0.044971414,-0.029871708,0.007625478,-0.00889219,0.0041152374,0.017128967,0.0041026333,-0.033224396,-0.024855277,0.004458699,-0.022939455,-0.024628403,0.017532296,-0.032518566,-0.016965114,0.01812469,-0.020595092,-0.0020292595,-0.028107133,0.036955208,-0.0019504838,-0.022750393,-0.0027303624,0.029871708,-0.0050794506,-0.010455097,-0.0017551203,-0.006686473,0.029367544,0.019952284,0.033678144,0.00867792,-0.025674542,0.005627729,-0.036904793,0.02083457,-0.00080744986,-0.0152005395,-0.031585865,0.023405805,-0.018263334,0.01883052,-0.00053803733,-0.002043439,-0.051500335,0.0051645283,0.011192437,0.11283187,-0.0009004051,-0.029216293,-0.004606797,-0.010952959,-0.019901868,-0.029518792,-0.014721584,-0.0020560431,-0.033249605,-0.0010934053,-0.016876884,0.0031163627,0.020595092,-0.0077326125,0.036476254,0.0058483006,0.022636956,0.014746792,0.0062169703,0.03982894,-0.016511366,-0.04797119,0.027930677,0.042173304,-0.032568984,0.022889039,-0.013435966,-0.019826243,-0.015503038,-0.023367994,0.025586314,0.022107584,0.038946655,-0.010669367,0.032594193,0.02077155,0.019574162,0.028434841,-0.017595317,-0.043131217,-0.025838396,0.026468601,-0.0252334,-0.0059774923,0.022636956,-0.01215665,-0.027955884,-0.0062421784,0.009119064,0.032594193,-0.015351789,0.025586314,-0.013045239,-0.019977491,-0.001178483,0.022636956,-0.0018071122,0.0035480529,-0.014683772,-0.023342784,-0.027376097,-0.0071654283,0.054248028,0.033627726,-0.01812469,-0.006579338,-0.023998199,0.0034818815,-0.00081138866,-0.004962863,0.035089802,0.021086652,-0.022460498,0.026846724,-0.0111735305,0.0011406706,-0.020090928,0.02745172,0.035241053,-0.011179833,0.042551428,-0.008488858,-0.012698626,0.0052937204,-0.003948233,-0.0026421335,0.019196037,-0.016851677,-0.011954985,-0.00064123335,-0.013700652,0.020355614,0.0077011026,-0.0058609047,-0.049937427,0.018691873,0.033829395,0.052584287,-0.0038474002,-0.0077326125,0.010234525,-0.02104884,0.0059995498,-0.06312131,-0.02529642,0.041769974,0.00846365,0.014381274,-0.00784605,0.0018811614,0.028812964,0.00011205829,0.006446995,-0.0001688752,0.009043438,-0.009150574,0.007770425,-0.01455773,0.02593923,-0.00046950256,0.036577087,-0.012528472,0.038568534,0.0193851,-0.0022261983,-0.03781229,-0.004361017,-0.014444293,-0.0060846275,0.01923385,-0.035089802,-0.020506864,0.015440017,0.0041026333,0.034383975,0.0011950259,0.0072095427,-0.009282917,-0.016536573,-0.02704839,-0.017645733,0.03718208,0.026569434,-0.0004222372,-0.031963985,-0.0012651361,0.011110511,-0.03496376,-0.029821292,0.014885437,-0.014885437,-0.01701553,0.020229574,0.031182533,0.010921449,-0.0004494148,0.0066423584,0.018943956,-0.008072923,0.02563673,-0.03917353,0.02019176,-0.011683997,-0.026191311,-0.00021742065,-0.008375422,0.0060058516,-0.026695475,-0.00075506413,0.013511591,0.011148322,0.011954985,0.030980868,0.023569658,-0.029544001,0.03594688,0.0009957235,0.0077074044,-0.038845822,0.026292143,-0.04908035,-0.020872382,0.004559532,-0.04028269,-0.021616025,0.006459599,-0.032821067,-0.023670493,-0.01295701,-0.011406707,-0.014356066,0.0130956555,-0.00082635606,-0.01966239,0.028510464,0.02314112,0.03597209,-0.05339095,-0.0049565607,-0.03819041,-0.004735989,0.0015093405,-0.055256356,-0.013763673,-0.01707855,-0.012919198,0.012692325,-0.027527345,-0.010303848,-0.021653837,0.03229169,-0.034812514,0.019864054,0.0504668,0.0014242629,-0.010158901,-0.016423136,0.021653837,0.0037465675,-0.01566689,0.02292685,0.012515867,-0.019158226,-0.053038035,-0.013927526,-0.009976142,0.035921674,0.01993968,-0.06967544,-0.00889219,0.026645059,-0.009516092,-0.0063934275,0.019801034,0.030098582,-0.02941796,-0.023115912,-0.0003984076,-0.038795408,0.012906594,0.008167454,-0.016599594,0.02055728,-0.003280216,0.034106683,-0.010240828,0.059894662,0.002818591,-0.019712806,0.016234076,0.0504668,0.021893315,-0.026040062,0.003825343,0.024540175,0.019889263,0.0008736214,0.00081138866,-0.03052712,0.011368894,0.032266486,-0.02378393,-0.050416384,0.0060846275,-0.007341886,-0.021237902,0.011633581,-0.034736887,0.052029707,0.002224623,0.014255232,-0.016851677,-0.018162502,-0.04197164,-0.011381499,0.008507765,-0.017368443,-0.015036686,0.049836595,-0.018452397,0.058331754,-0.0003590198,-0.00072079676,-0.021691648,-0.019700201,-0.010984469,-0.03246815,0.01055593,-0.020204365,-0.03317398,-0.010814314,0.0029556605,0.011413009,-0.0033274812,0.019876659,0.048828267,0.0007247355,0.04908035,-0.01455773,-0.033753768,-0.008381723,0.044820163,0.009043438,0.025397252,0.011917173,0.011728111,0.007833445,-0.007896466,-0.025409857,0.022636956,0.029014628,-0.009843798,-0.022699976,0.0012107809,-0.0014234751,0.018767498,-0.046660364,0.040812064,0.033804186,-0.031031284,0.0008421111,-0.0029824441,-0.0053409855,0.033678144,0.017733963,0.0029824441,-0.02886338,-0.014885437,0.03249336,-0.0002605503,0.036551878,0.0090245325,0.027023181,-0.015780328,-0.0023412108,-0.013751068,0.04169435,-0.017191987,-0.015679495,0.028913796,-0.006591942,0.00430745,0.028384423,-0.0012769524,0.004509115,-0.0006644722,-0.05646635,-0.01726761,-0.010927751,0.04807202,-0.024918297,0.0022718883,-0.033678144,-0.00544812,0.00615395,0.018578438,0.00077081926,0.0038978166,-0.0006266599,-0.000042021857,-0.030199414,-0.021842899,0.0034913346,0.01680126,-0.030728785,-0.014860229,-0.033905018,0.000677864,0.015503038,0.019019581,0.05434886,0.032846272,0.0037654736,-0.009251406,-0.040081024,-0.050265133,-0.028207967,-0.0034913346,0.012301598,0.0065163174,-0.015742516,-0.01665001,0.012793157,0.018301148,0.06508755,0.035493135,-0.0024325906,-0.017065946,-0.0025775377,-0.054298446,-0.026519017,0.017620526,-0.026594643,-0.014683772,-0.016234076,-0.027376097,-0.018855728,-0.00080981315,0.03440918,0.018792707,-0.007341886,0.02348143,-0.014860229,0.031459823,-0.007852351,0.0035291468,0.015679495,0.062264234,0.014267837,0.0056686923,-0.0035070896,-0.028712131,-0.008356515,-0.018565834,-0.0108773345,-0.012673418,-0.045047037,-0.023468826,-0.011274364,0.01840198,-0.008236777,-0.010562233,-0.014809812,0.01372586,-0.012345712,-0.01575512,0.017595317,0.012578888,-0.009396354,0.00686293,0.033552103,0.031459823,-0.051097006,-0.0021442717,-0.019057393,-0.047189735,-0.018553229,0.012301598,0.008885887,-0.025372045,0.0046288543,0.016902093,-0.011249156,-0.0034913346,-0.017935628,0.053441368,0.03990457,-0.031485032,-0.0047927075,-0.024300696,0.01394013,-0.02661985,0.0156921,0.0120432135,-0.019536348,0.0036614898,-0.02578798,0.025674542,0.017242404,-0.005671843,-0.015162727,0.013549403,0.017343236,-0.0068188156,0.013486383,0.003076975,-0.026468601,-0.0015566058,0.0400054,0.019246453,-0.018225523,0.0049282014,0.024111636,0.01637272,0.00023573598,0.03403106,0.010165203,0.024086427,-0.018112086,0.020645509,0.019271662,-0.008904793,0.015137519,0.037333332,0.007014179,0.008917398,0.015830744,-0.006825118,0.029619625,-0.019851452,0.0021143372,-0.0060216067,0.004203466,-0.0018827368,0.004033311,0.022195812,0.0020009002,0.030148998,-0.01237092,0.0038410982,0.0056214267,-0.01735584,0.015868556,-0.03778708,-0.014393877,-0.010347962,-0.008243078,0.04736619,-0.022120189,-0.04474454,0.0044240374,0.0021931126,0.006888138,-0.007467927,-0.0053189285,-0.0050731488,-0.033199187,-0.00309273,-0.014809812,-0.005259059,-0.024666216,0.012162953,0.029317128,-0.042349763,0.056516767,-0.02264956,-0.03428314,-0.0062610847,-0.0029824441,0.0074238125,0.015780328,0.0141039835,0.022120189,-0.018553229,-0.007455323,0.014078775,-0.028888587,-0.00050573936,0.027199639,-0.0111987395,0.011639883,0.008173756,0.025964437,-0.010228224,-0.014721584,-0.0041435966,0.0023774477,0.010436191,-0.0011910871,0.020166554,0.0069322526,0.02286383,0.028888587,0.009333333,-0.036173753,0.027855052,-0.022347061,0.002705154,-0.0193851,-0.030980868,0.016851677,-0.00874094,0.0014179607,-0.013410758,0.025119962,-0.013927526,-0.006478505,-0.008331307,0.0041183885,-0.0014510466,0.017960837,-0.0022766148,-0.0066360566,0.0950853,-0.009112761,0.011784829,0.016284492,0.014053566,0.013372946,-0.013826693,0.0027004275,0.0019300021,0.004972316,0.010971866,-0.0035543551,-0.0063587665,-0.0111294165,0.018817915,0.0025097905,0.0038600042,-0.019473327,0.0022198963,0.0007834233,0.014935854,-0.027023181,0.008129641,0.01366284,0.0068062115,0.0027366644,-0.014267837,0.027224846,0.028686922,0.03551834,0.0027886562,-0.001649561,-0.012496961,-0.0252334,-0.038064368,0.030300247,-0.020733738,-0.017986044,-0.022158,-0.00843214,-0.009364843,-0.0025806886,-0.031459823,-0.0042948457,-0.014620751,-0.024010802,0.030905243,-0.01750709,0.020103533,-0.030375872,-0.010631555,0.006015305,0.01338555,-0.004575287,-0.0041435966,-0.014721584,0.017796984,0.048147645,0.01658699,0.003967139,-0.014633356,0.010921449,-0.009780779,0.040207066,-0.001707855,0.06392797,0.0243133,0.026972765,-0.0059648883,0.0013533648,0.008425838,-0.00658564,-0.008274589,0.038089577,-0.013990547,0.001997749,-0.003206167,-0.035846047,-0.021288319,0.0083376095,-0.011992797,-0.0034031058,0.0010658338,0.050794505,0.016826468,0.032090027,0.02969525,0.005520594,0.0066171503,-0.054449692,0.0024451946,-0.0018023857,-0.012641908,0.012812063,0.0023869006,0.019977491,0.0044240374,-0.03193878,-0.03400585,-0.0010059644,0.00093349087,-0.00019890838,0.014645959,0.022687372,-0.015767723,-0.0068818363,0.00026547376,-0.0001426823,-0.015805537,0.026443394,-0.0018323205,0.009100157,0.016549177,-0.04766869,0.023040287,-0.027829843,0.015553454,-0.026720684,-0.004742291,-0.0006282354,0.018918747,0.015654286,0.014797209,0.007852351,-0.030703578,0.010007652,0.03398064,-0.00017537418,0.010203016,0.026317352,0.028233174,-0.0012856178,-0.022019355,-0.0037182083,0.041769974,0.021931127,0.013927526,-0.018767498,-0.033652935,-0.014822417,0.034257933,-0.0193851,-0.02049426,-0.011721809,-0.013536799,-0.011986495,-0.0008216295,-0.03173711,0.012452846,0.010744992,-0.05074409,0.017544901,0.029871708,-0.023166329,0.017897816,-0.0016275039,0.013927526,-0.0050164303,0.010455097,-0.019095205,-0.024199864,-0.00944677,0.024401529,-0.003809588,-0.0038694574,-0.003563808,-0.009553905,-0.0036425837,0.009528697,-0.017191987,-0.01972541,-0.017028134,0.0114949355,0.0063650683,0.05450011,-0.032821067,0.0024704027,0.014532522,0.023872158,0.001349426,-0.030022956,0.0050384873,0.028334007,0.021653837,0.003406257,0.021868106,-0.044845372,-0.009421562,-0.017393652,-0.042047262,-0.03622417,0.007360792,-0.039097905,0.018628854,-0.022145396,-0.0039986493,-0.022271438,-0.037459373,0.00920099,-0.009371146,-0.0048431237,-0.008564483,0.057323426,0.027098807,0.017834796,0.023241952,-0.0107702,0.03277065,-0.0041120863,0.019700201,-0.030123789,0.017103758,0.01680126,-0.01618366,0.048979517,0.003544902,0.018654061,0.001378573,-0.006730587,0.021590816,0.03902228,-0.013688048,-0.009377447,-0.005652937,0.02563673,0.0036268285,-0.044920996,-0.0012485932,-0.021590816,0.009553905,-0.029065045,0.039778527,-0.00836912,-0.014305648,0.021931127,-0.027502136,-0.028686922,0.00843214,-0.014519919,0.020090928,-0.0084762545,0.032720234,-0.004880936,0.01831375,-0.024363717,0.04416475,0.03236732,0.020317802,-0.03123295,0.035997298,-0.00039427186,0.043509338,0.01237092,-0.00023770538,-0.03609813,0.031863153,0.017318027,0.016700426,0.002412109,0.018162502,0.037484583,0.01372586,0.019095205,0.0053441366,0.0034913346,-0.057827592,0.04751744,0.009364843,-0.016322304,0.009774476,-0.0020560431,-0.00054158224,-0.047290567,0.022876434,0.00042144945,-0.00920099,0.014343461,0.0016763448,0.05102138,-0.013536799,-0.003658339,0.032014403,0.018666666,-0.008192662,0.021981543,0.0046792706,-0.0015762998,-0.011948682,-0.009427864,0.01080171,-0.030552328,-0.028384423,-0.0041656536,-0.010322754,0.035593968,0.022107584,-0.034736887,0.0024672518,-0.016939905,-0.03052712,0.026367769,-0.02341841,0.012396128,-0.009742966,-0.005923925,0.007745217,-0.021805085,-0.02237227,0.02566194,0.0046509113,0.012585189,-0.022271438,-0.03236732,0.035896465,0.01778438,0.026115686,0.020670718,0.009289219,0.009327031,0.013536799,-0.00216948,0.0052212467,0.035190634,0.036022507,-0.00004096331,-0.025762772,0.0009996623,0.019788431,0.03773666,0.030426288,-0.011620976,-0.031283367,-0.004194013,-0.002153725,0.03398064,-0.028989421,-0.008715732,-0.020683322,-0.007266261,-0.009434165,0.008173756,-0.001775602,-0.032594193,-0.02489309,-0.013713256,0.011942381,-0.009585415,-0.018137293,-0.025094755,-0.042274136,0.009673644,0.011236551,0.009163178,-0.042148095,-0.026166104,-0.0022844924,-0.005804186,-0.018918747,0.0013352464,-0.0011706054,0.0178474,-0.016019806,0.011406707,-0.009950934,-0.0018023857,0.033753768,0.009194688,0.0024751292,0.04948368,0.03372856,0.0030013502,-0.0050699976,-0.02689714,-0.026519017,-0.04711411,-0.020670718,0.0069196485,-0.025598919,0.0032045913,0.03889624,0.010751294,0.020998424,0.04151789,0.03607292,-0.019069998,0.0002924544,-0.017822191,-0.025724959,0.012805762]},{"id":"interface-WebSocketLike","type":"interface","source":"main","text":"Interface: WebSocketLike","meta":{"url":"/docs/typedefs/WebSocketLike"},"embedding":[-0.020030677,-0.035105888,-0.021422664,0.019933239,0.017177107,0.0025403744,-0.011490844,0.0144070545,0.04167606,0.0030588892,0.008303196,-0.0035530443,0.0069216504,0.007843841,0.0028083317,0.007335766,-0.023065208,0.03187648,0.015437124,0.034521252,0.03299007,0.03065153,0.049192782,0.031486724,0.0056027435,-0.024540713,-0.041314144,0.013718022,-0.03866937,-0.010892291,0.07466613,-0.04852463,0.03493885,0.016230557,0.013815461,0.034103658,0.039588083,0.019571323,0.0017512924,0.008755592,-0.011087168,-0.012131157,0.03084641,0.0053974255,-0.044042435,0.0015042148,0.015381445,0.028493952,0.023956079,0.037305225,-0.009799581,-0.021909859,0.0034382052,0.013467465,-0.004259477,-0.029398743,0.009528144,0.035161566,0.006149098,0.028243395,-0.008588553,-0.030178256,-0.026517333,-0.021993378,-0.025682142,-0.023969999,-0.019529562,-0.00591942,-0.03894777,0.022146497,0.045239545,-0.03677627,-0.040896546,-0.0009787402,-0.0045100343,0.009862221,-0.0049276305,-0.007565444,0.024471113,0.0013267366,-0.018415974,0.00895047,-0.06636989,-0.06269505,-0.00987614,-0.008303196,-0.07461045,-0.01386418,-0.023956079,0.018415974,-0.0034068855,0.04735536,-0.043402124,-0.01781742,-0.018012298,0.0030275695,-0.009444625,0.006211737,-0.01290371,-0.0056027435,0.06937658,-0.05261707,-0.04565714,0.019599162,0.017149268,0.007816001,0.08207149,-0.05629191,-0.07589108,0.018235017,-0.046046894,-0.022536254,0.010432934,0.021506183,0.03466045,-0.021617543,0.042845327,-0.0028883708,0.0025334144,-0.018235017,-0.019056289,0.01890317,0.026614772,-0.008296236,-0.016355835,-0.042121496,-0.03474397,0.012959389,-0.012430435,-0.0093750255,0.05286763,-0.024596391,-0.0076768026,-0.0074749645,-0.009542064,0.025278466,-0.03694331,0.024304075,-0.019125886,-0.014198257,-0.029899858,-0.044237316,0.08006703,-0.0059994594,0.024220556,0.0053278264,-0.042873167,0.03254463,-0.008685992,-0.01579904,0.02687925,0.0032903068,-0.012820191,-0.005675823,-0.05356362,0.013028989,0.019668762,0.020336915,-0.025696062,-0.01886141,0.0042003174,-0.0085259145,-0.014810731,-0.01589648,-0.039365362,0.009479424,0.03652571,-0.0000889566,-0.046297453,0.010419015,0.012207717,-0.000018052318,0.025835259,0.028814109,-0.011525644,-0.061971214,-0.021353064,-0.024137037,-0.00895047,0.00298581,0.07706034,0.04863599,0.05044557,-0.036470033,0.0178731,0.011602203,-0.013411785,0.0159104,0.012576593,-0.055206165,-0.04888655,0.076726265,-0.00065901835,0.038056895,0.038585853,0.016745592,0.027018448,0.017511183,-0.005369586,-0.012256436,-0.01094797,-0.0021140787,0.034632612,-0.034103658,0.00075123744,0.016675992,0.02886979,0.0056027435,-0.015645923,0.025556862,0.015116967,0.032238394,0.03850233,-0.012319076,-0.033017907,-0.00789952,0.040311914,0.029593622,0.0060968986,-0.02870275,-0.012806271,0.0046422733,0.03454909,-0.007614163,0.008045679,0.032266233,0.040005676,-0.010753091,-0.03179296,0.005557504,-0.014727212,-0.015701601,-0.030679371,-0.035384282,-0.009674302,0.01386418,-0.02577958,-0.0026412935,0.016634231,-0.023162646,-0.067539155,-0.028897628,-0.015464964,0.0079134405,-0.01090621,-0.016425434,-0.015604163,-0.012486114,-0.03658139,0.005741942,0.05133644,0.0053104265,0.0029214306,-0.0073844856,0.014059058,-0.029315224,-0.01891709,0.060913306,0.038168255,0.0031284885,-0.00044935048,-0.054036897,0.0051120683,0.037110347,0.014574093,-0.07861937,0.024540713,-0.02284249,-0.024582472,0.023009527,0.032405432,0.020058518,0.026573012,0.029315224,-0.027700521,-0.025696062,0.017302386,0.018026218,-0.040868707,-0.019251166,-0.046993446,-0.050083656,0.015562403,0.04237205,-0.013022029,0.01891709,0.014212177,0.036915466,0.05584648,0.03658139,-0.020462194,0.04379188,0.03079073,-0.024777351,0.004576154,0.023482803,0.092149474,0.044348672,0.037472263,-0.011177647,0.059075885,-0.02687925,-0.011984999,-0.02870275,-0.012778431,-0.014337456,0.037500102,-0.028132036,-0.01391986,-0.032934386,-0.018443814,0.0020444794,-0.07332982,-0.0069251303,-0.058129333,-0.0334355,0.0574055,0.040256236,-0.008532874,-0.030066896,0.009124468,0.00796912,0.020197716,-0.01588256,0.0357462,-0.05373066,0.039170485,-0.03641435,0.019738361,-0.005557504,0.0070225694,-0.017455503,0.010829651,-0.034131497,0.024554633,-0.041202784,-0.039086968,0.018151497,0.0102241365,0.052784108,-0.021589702,-0.0017338925,-0.02864707,-0.0017008329,0.03474397,-0.023190485,0.00018639563,0.029370904,-0.010613893,0.029231705,-0.03184864,0.00028057216,-0.02483303,0.016063519,0.0046005137,-0.040256236,0.03571836,-0.0031250084,-0.0022463175,0.03555132,0.0022271776,0.031041287,0.014685452,0.024276236,0.023343604,-0.0020270795,-0.016703831,-0.0060098995,-0.026099738,-0.060189474,0.032182716,0.06843003,0.0065005743,-0.02573782,0.010265896,0.030902088,-0.022243936,0.021325225,0.0038175215,0.011170687,0.046019055,0.04635313,-0.018471655,-0.026280696,-0.02090763,0.01183884,-0.010022299,0.05345226,-0.04763376,0.0040193596,0.024638152,-0.033157106,-0.035050206,-0.033769578,0.035217244,-0.017678222,0.034298535,-0.0070260493,0.01592432,-0.020309076,0.019320766,0.013495304,-0.022967769,0.012757551,-0.01687087,-0.023496723,0.0076907226,0.02196554,0.0067998515,-0.018875329,-0.0013276066,-0.030206095,0.020670991,0.0009970099,0.007725522,-0.019988919,-0.05245003,-0.0972163,0.07015609,0.06843003,0.029231705,0.015228326,-0.0257935,-0.015966078,0.040423274,0.0047118724,0.03084641,0.016035678,0.011121968,-0.050389893,-0.012019799,-0.004461315,-0.0021349585,0.044961147,0.024526794,0.016550712,0.016355835,0.004367356,0.024290156,0.005578384,-0.026531253,0.014135618,-0.005766302,0.0027213325,0.0032050477,-0.019459965,0.009103588,-0.01682911,-0.026600853,-0.04944334,-0.007544564,-0.017594703,-0.025709981,0.060133792,0.005421785,-0.01187364,0.0020131597,0.029259546,0.013878101,-0.01289675,0.008108318,-0.033017907,-0.038892087,0.038975608,-0.0037548821,0.010850531,0.035356443,-0.010015339,0.011546523,0.011859721,-0.0034782249,-0.014267856,-0.015061288,0.010836611,-0.0050007096,0.012646193,0.05670951,-0.0017626022,-0.011268127,0.0005711492,-0.0026064937,-0.0050181095,-0.022647612,-0.01389202,0.012493074,0.092427865,0.0031215285,-0.027909318,-0.052032437,0.03173728,-0.039727278,0.011637002,0.045156024,-0.017441584,0.0037235625,-0.032377593,-0.07305142,-0.0074540847,0.028981147,-0.057795256,0.025765661,-0.06592446,-0.01579904,0.021116426,0.04863599,-0.032488953,-0.023106966,0.006156058,-0.034187175,-0.055178322,0.020434354,-0.012520914,0.004757112,0.01598,-0.03299007,-0.012994189,-0.04860815,0.054036897,-0.0075932834,0.016355835,-0.030233935,0.04259477,0.008839111,-0.032127038,-0.019348605,0.0015268346,-0.034382053,-0.00018324191,0.0013580563,-0.01792878,0.0051259883,0.010064059,0.03566268,-0.005647983,-0.012249476,0.0045378744,-0.0357462,-0.04167606,0.0010100598,-0.029426584,-0.016689911,0.005731502,-0.02267545,0.005630583,-0.013147308,0.0334355,-0.009507264,-0.012952429,0.01579904,0.019473884,0.0051747076,-0.033519022,0.009173187,-0.0071269684,0.035913236,0.030929929,0.0106904525,0.012305156,-0.022341374,0.031124806,-0.020253396,-0.018569093,0.025598623,-0.02886979,-0.036497872,0.011664842,0.0014337455,0.013223867,-0.0029388303,0.00893655,-0.01890317,0.003072809,-0.008685992,0.082962364,-0.015172647,-0.029176027,-0.0035234645,-0.007537604,-0.014936009,0.0007255727,-0.030094737,-0.007307926,-0.016105277,0.014476654,-0.032767348,-0.022438813,0.004739712,-0.011623083,0.03271167,0.016884789,0.027143726,0.018179337,-0.0035147646,0.030206095,-0.035328604,-0.051976755,0.036024597,0.050974526,-0.027157646,0.0028466112,-0.012917629,-0.011706602,-0.037750658,-0.019306846,0.04771728,0.040980067,0.016703831,0.013147308,0.02792324,0.006246537,-0.00799696,0.028814109,-0.012207717,-0.048051357,-0.034354214,0.004426515,-0.04849679,-0.037026826,0.025835259,-0.035300765,-0.04092439,-0.007530644,0.0178731,0.022647612,-0.018318536,0.032043517,-0.025501182,-0.025974458,0.0034295055,0.0041272384,0.020949388,0.009089668,0.0259327,-0.021046828,-0.020378675,0.0018130618,0.023649842,0.023580242,0.0047223126,-0.011637002,-0.01283411,-0.016648153,0.012687952,-0.012653152,0.04075735,0.015089128,-0.040590312,-0.0057106223,-0.010760051,0.004558754,0.022188256,0.024471113,0.04952686,-0.0026465133,0.044209473,-0.04368052,-0.014079938,0.001785222,-0.01383634,-0.009792621,0.035022367,0.0011179388,-0.02288425,0.0066850125,-0.024443274,-0.0005380896,0.030929929,-0.0132656265,-0.023719441,0.03268383,0.032127038,0.04265045,0.025111428,-0.0025160147,0.011059329,-0.0009500304,0.032488953,-0.04476627,-0.011115008,0.050946686,0.0128271505,0.03669275,-0.024081357,-0.026642611,0.006156058,-0.014072978,0.0024464154,-0.0018931009,-0.0024986148,-0.016314076,0.024707751,0.00991094,0.017302386,-0.012513954,0.014574093,-0.019404285,0.034465574,0.019571323,-0.0019261605,-0.037611462,0.0070956484,-0.025181025,-0.01585472,0.025556862,-0.03279519,-0.028090278,0.026976688,-0.039086968,0.026531253,-0.01382938,-0.014337456,-0.00044347803,-0.01386418,0.003471265,-0.017274546,0.023468884,-0.00006590183,-0.0006846831,0.006173458,-0.011428204,0.01989148,-0.0036261235,-0.039281845,0.0079134405,-0.013578823,-0.011769242,0.002789192,0.023134807,0.009458545,-0.0064866547,0.008428475,0.023552403,0.011184608,0.035913236,-0.00397412,0.004771032,-0.007123488,-0.017747821,-0.022578012,-0.007732482,0.014727212,-0.02481911,-0.008484154,-0.016063519,0.027255084,0.018081898,0.0376393,0.04972174,-0.019098047,-0.006653693,-0.005449625,0.011052368,-0.006089939,0.042455573,-0.033379823,-0.03360254,-0.006671093,-0.041731738,-0.033157106,0.016508954,-0.018026218,-0.010586053,-0.01777566,0.018165417,-0.01089925,0.015562403,-0.034242854,-0.024067437,0.02682357,0.030400973,0.038056895,-0.02892547,-0.007836881,-0.013585783,0.012437395,-0.010405095,-0.028285155,0.0021036388,0.014727212,-0.01777566,0.0067789718,-0.041314144,0.010474694,-0.029510103,0.029899858,-0.02075451,0.02892547,0.028953308,-0.0044995947,-0.020364754,-0.020587472,0.0005367846,0.030317454,-0.032934386,0.016940469,0.02674005,-0.0102241365,-0.06642557,0.0014815951,0.011031489,0.025013987,-0.004457835,-0.041592542,-0.012165957,0.030818569,0.028814109,-0.0035982837,0.02676789,-0.006034259,-0.024443274,-0.03271167,0.00037779368,-0.044988986,0.040284075,-0.011191567,0.012813231,0.025389824,0.0026047537,0.021018988,-0.015256166,0.09059045,-0.0052095074,0.0040402394,-0.017566863,0.044710588,0.02976066,-0.007809041,0.0038244815,-0.013711061,0.028326914,0.01870829,0.025570782,-0.0077742417,0.009549024,0.039421044,0.010760051,-0.02274505,-0.022619773,-0.005355666,-0.014233056,0.016314076,-0.018610852,0.037193865,-0.038975608,0.008136158,-0.008428475,-0.023274004,-0.028981147,-0.018958848,-0.0034225455,-0.01589648,0.0015999139,0.038335294,0.013202987,0.01698223,-0.0026639132,-0.008136158,-0.005832421,-0.012882831,0.0027978919,-0.023301845,0.0338531,-0.0024098756,-0.015200486,-0.01678735,-0.010293736,0.015492803,0.012729712,0.032628153,0.05556808,0.013015069,0.059632678,0.0030571492,-0.03065153,0.0011362085,0.014768971,0.022202177,0.028145956,0.01783134,0.0038558012,0.003653963,-0.017288465,-0.05342442,0.02675397,0.026837489,-0.0139685795,0.0018757011,-0.01286195,0.011490844,0.018123657,-0.010043179,0.017274546,0.030568011,-0.013641463,0.02385864,0.011532604,0.007029529,0.05857477,0.0020166396,-0.013418744,-0.021046828,-0.0075584836,0.026531253,0.010015339,0.061748497,0.055762958,0.0031789478,-0.005164268,-0.0017243226,-0.020197716,0.035272926,-0.030985607,-0.02090763,0.021060748,0.0058011017,-0.0074053654,0.017942699,-0.008623353,0.02069883,0.014086898,-0.057795256,0.0068068113,0.0119780395,0.010050138,-0.04251125,0.033630382,-0.0069007706,-0.016439354,0.010217177,0.0129733095,0.007154808,-0.002359416,-0.03198784,0.019418204,-0.013105548,0.009381985,0.019362524,0.014476654,-0.015089128,-0.018875329,-0.006361376,0.0019574803,-0.0065840934,0.0061073382,0.04053463,0.0062152175,-0.000109836394,0.0065806136,-0.05075181,-0.033351984,-0.0034242854,0.02388648,0.041453343,0.0002670873,0.0027143727,-0.0037131226,0.02693493,-0.01289675,0.058797486,0.026628692,0.011797081,-0.01776174,-0.005066829,-0.041982297,-0.020991148,0.016564634,0.008511994,0.0005524444,0.00034973648,-0.004182918,-0.024638152,0.0073984056,0.027366444,0.027018448,0.0005058999,0.02873059,-0.030874249,0.02678181,0.027617002,0.0006472735,0.015590243,0.0774501,-0.028507873,0.02078235,-0.0028013717,-0.06659261,-0.012604433,0.00796912,0.017956618,-0.0068172514,-0.044098116,-0.026350295,-0.008157038,-0.007739442,0.012131157,-0.0050181095,0.0012710572,0.036191635,0.011226367,-0.010655653,0.0028692312,-0.0072104875,0.0073984056,0.0052895467,0.024568552,0.03978296,-0.029287385,-0.013321306,0.018958848,-0.030818569,-0.029064666,0.014337456,0.0057558618,-0.026698291,0.003180688,0.017065749,-0.032043517,0.027547402,-0.0034991046,0.04273397,0.028396513,-0.03479965,0.016035678,-0.03073505,0.0048197513,-0.025041828,0.025459424,0.021478344,0.014365295,-0.0037096427,-0.01879181,0.013084668,0.007537604,0.011191567,-0.008748632,0.051837556,0.004468275,-0.041091427,0.02970498,0.028452193,-0.023260085,-0.00397064,0.0075932834,0.02487479,-0.016592473,0.021854179,0.013028989,0.021074668,0.005355666,0.02488871,0.029036827,0.0055818637,-0.041258465,-0.0029231706,0.021046828,-0.02394216,0.0217985,0.039337523,-0.0008608563,0.0007712472,0.016522873,-0.005073789,0.030679371,-0.02873059,-0.0026412935,0.0023489762,0.03360254,-0.00014017733,0.024930468,0.0005850691,0.014588013,0.021575782,0.004078519,-0.0017347626,-0.0017573823,-0.02085195,0.02573782,-0.016021758,-0.006437935,-0.015492803,0.01383634,0.039142646,-0.023093047,-0.018123657,-0.030011218,-0.0007007779,0.0066641327,-0.0002285902,0.010822691,-0.012430435,-0.023274004,-0.022257855,-0.009423745,-0.013383945,-0.0218681,-0.0010457295,-0.0043464764,-0.021659302,0.07266167,-0.02875843,-0.041314144,-0.018346375,0.009013109,0.011504764,0.012430435,0.034465574,0.00050111493,-0.017469425,-0.024471113,0.05075181,-0.030289615,0.013133388,0.044265155,-0.0062221773,0.0043151565,0.009528144,0.011755321,-0.033184946,-0.008108318,-0.006566694,0.0126809925,-0.0011396885,0.053981215,0.011121968,0.010836611,0.012541793,0.00065292843,0.022410974,-0.0060133794,0.0021419185,-0.0049276305,-0.006051659,-0.0059124604,-0.033184946,0.0067928913,-0.010446855,-0.01389202,-0.0034608252,0.003772282,0.018165417,-0.011428204,-0.013606663,0.0030432292,0.0069877696,0.013766741,0.012799311,-0.016996149,0.09972187,-0.0010004899,0.012277316,-0.004137678,0.0049032704,-0.012409555,-0.022146497,-0.0035634842,-0.024053518,0.02087979,0.004172478,0.019794041,-0.009597743,-0.020559633,0.010286776,0.017065749,0.0045343945,0.00893655,0.024902629,-0.0069077304,0.00995966,-0.044098116,0.020364754,0.023093047,-0.0016112238,-0.012200757,-0.002265457,0.011706602,0.018374214,0.035217244,-0.02480519,-0.012381715,-0.01881965,0.0052199475,-0.025682142,0.026113657,0.0060272994,-0.024081357,0.008741672,-0.012987229,0.01087837,0.004189878,-0.04635313,-0.0059020207,-0.0045378744,-0.009124468,0.02177066,-0.027519563,-0.00082692667,-0.0257239,-0.0238308,0.0042246776,0.018736131,-0.0039045205,0.008839111,0.0060829786,-0.005473985,0.048107035,0.010098858,0.00693209,0.0032798669,0.010669572,0.0072313673,0.021394825,0.026962768,0.058853168,0.026461653,0.027449964,-0.008505034,-0.0016303635,0.015757281,-0.01790094,-0.026419893,0.03360254,-0.01877789,0.013279546,0.011845801,-0.029203866,-0.025278466,-0.007029529,-0.008317116,0.0071617677,0.018638693,0.04050679,-0.008623353,0.035913236,0.025445504,0.004182918,0.0063022166,-0.05473289,-0.005526184,-0.0024098756,-0.0077951215,0.009660383,0.009521184,0.010488614,0.013049869,-0.019988919,-0.040256236,-0.018402055,-0.009033989,-0.0063857357,0.011741402,0.018221097,-0.008358875,0.009806541,0.0017251926,-0.00061943376,-0.028062437,0.024624232,-0.022230016,0.006813771,0.042873167,-0.030011218,0.012750591,-0.036887627,-0.0012649673,-0.027436044,-0.023580242,0.013439625,-0.0056688627,0.04053463,-0.008539834,0.01189452,-0.008971349,0.004840631,0.036247313,0.008191837,-0.017232787,0.029343065,0.017664302,-0.006347456,-0.012771471,-0.004464795,0.032461114,0.0078856,-0.0070747687,-0.034298535,-0.021714982,-0.005181668,0.032461114,-0.01571552,-0.010996689,-0.014351375,-0.02388648,-0.009263666,0.025835259,-0.020587472,0.03257247,0.021032907,-0.0437362,0.0069773295,0.017497264,-0.027380364,0.02671221,-0.016369754,0.0012205977,0.0035878439,-0.017469425,-0.015019529,-0.035356443,-0.030568011,0.031291846,0.016968308,0.015089128,0.0021436585,-0.038029056,-0.012604433,-0.013070748,-0.015506724,-0.024526794,0.029537942,0.021158187,0.0019244206,0.015492803,-0.019028448,0.016202716,0.005491385,0.0014781151,0.02685141,-0.029537942,0.0017260626,0.026489493,0.017483344,0.004764072,-0.009145347,-0.01891709,-0.00496243,-0.0178731,-0.016550712,-0.0008430215,0.003158068,-0.052394353,0.016244477,-0.021993378,0.0036330833,0.0039428,-0.029036827,0.008337996,0.013711061,-0.039281845,-0.0062917764,0.014671532,0.016689911,0.029482262,0.019237246,-0.01788702,0.03872505,-0.004078519,0.011539564,-0.011421245,0.01884749,0.0059055006,-0.005352186,0.048107035,0.014045139,-0.0056131836,0.009089668,-0.01592432,0.0146993715,0.043095887,-0.020531792,-0.018750051,-0.023524564,-0.008435435,0.009688223,-0.022703292,0.0018757011,-0.034994528,0.012451314,-0.018805731,0.028354755,-0.019571323,-0.022188256,0.009897021,-0.021589702,-0.010711332,-0.008122238,-0.013272586,0.035217244,-0.004854551,0.014170418,0.020239476,0.009235827,-0.025612542,0.022536254,0.033491183,-0.0029109907,-0.047856476,0.028090278,-0.011233327,0.038168255,0.0076837623,-0.01293155,-0.05751686,0.03677627,-0.0029405705,0.023622002,-0.007642003,0.011991959,0.017942699,0.009736942,0.014601933,-0.0025960538,0.0029162106,-0.036080275,0.028299075,0.021617543,0.0007755972,0.03596892,0.002778752,0.012228597,-0.031041287,0.013390905,-0.024693832,0.0015311845,0.0065945336,0.010801811,0.037917696,-0.009479424,-0.009047909,0.01980796,-0.003671363,-0.0034103657,0.01386418,0.006604973,-0.0066884924,0.000037953367,0.0046005137,-0.00694253,-0.017399825,-0.009632543,-0.03780634,-0.012590513,0.031625923,0.034521252,-0.038223933,-0.01289675,0.00018074068,-0.029621461,0.022174336,-0.019292926,0.019988919,-0.0075724036,-0.0054113455,0.022076897,-0.038140416,-0.009256707,-0.010015339,-0.0024307554,0.014420975,-0.01770606,-0.03866937,0.04468275,0.022786811,0.03198784,0.042037975,0.024053518,0.033463344,0.0132656265,0.0023420164,0.0011318586,0.01879181,0.041007906,0.023622002,-0.014295696,0.009549024,0.01881965,0.04977742,0.045434423,-0.002660433,-0.0016408034,0.0033320663,0.0023176565,0.030902088,-0.01778958,-0.0012658372,0.009388945,0.0075724036,-0.021659302,-0.029955538,-0.008783432,-0.03466045,-0.03596892,-0.0034991046,0.013328265,-0.0159104,-0.032154877,-0.01783134,-0.040033516,0.010384215,0.014024259,-0.013015069,-0.04167606,-0.005352186,0.012527874,0.018694371,-0.023538483,0.0075584836,0.0044125956,0.00095090043,-0.014908169,0.026531253,-0.0019331205,-0.000001457915,0.026419893,-0.011261166,0.008045679,0.02685141,0.008066558,0.0033529461,-0.008658153,-0.0041968375,-0.009479424,-0.036998987,-0.026921008,-0.0087903915,-0.03374174,0.0007668973,0.016383674,-0.0003569139,0.01996108,0.034242854,0.030150415,0.008157038,0.008115279,-0.0052199475,-0.039114807,0.0393932]},{"id":"interface-WebSocketManagerOptions","type":"interface","source":"main","text":"Interface: WebSocketManagerOptions\nProperties: intents: number, presence: GatewayPresenceUpdateData, rest: { get: (route: string) => Promise; }, shardCount: number, shardIds: number[], token: string, version: string, WebSocket: WSConstructor","meta":{"url":"/docs/typedefs/WebSocketManagerOptions"},"embedding":[-0.03600943,-0.0016464986,0.019308427,-0.0046557137,-0.0062263496,-0.022522751,0.020117627,-0.027108222,0.04904655,0.033402003,0.013037122,-0.0018923494,0.0067826747,-0.012610043,0.023197085,-0.004700669,-0.062083673,0.058801915,-0.016228968,0.032143246,-0.0077548395,0.03571722,0.005855466,0.041786224,-0.043314714,0.02488292,-0.006642189,0.025579732,-0.042145867,-0.014048623,0.03313227,-0.03337953,0.048911683,0.03396395,0.011289473,0.006720861,0.023084696,0.023084696,-0.011531109,0.0010585637,-0.03149139,-0.019859133,-0.0062544467,0.026433889,-0.023916375,0.0061364383,-0.0032564707,0.030749625,0.007282806,-0.010384742,-0.005051885,-0.013947472,-0.009356382,0.06532048,0.028007334,-0.030210158,0.0011920256,0.006720861,0.017105604,0.01825197,0.025017787,-0.019342143,-0.014970212,-0.009614877,0.009463152,0.012070577,-0.038594376,0.035357572,-0.018892588,0.027647689,0.015768174,0.009277711,-0.017611353,0.0069793556,0.0041134367,0.022320451,-0.0007084018,-0.011823321,0.027085744,0.020106388,-0.046484083,0.020488512,-0.070850015,-0.06298278,-0.02273629,-0.045832224,-0.046978593,-0.028794056,-0.020454794,0.023286996,-0.009963283,0.0030316927,-0.07943653,-0.018184537,-0.022781245,-0.038414553,0.049136464,0.002527347,-0.02508522,-0.0067320997,0.051923707,-0.042617902,-0.08676429,0.035020407,-0.0010473249,0.013688978,0.015577112,-0.009418196,-0.06684896,-0.019016216,-0.06518561,0.0072266115,0.010648856,0.05097964,0.023534253,-0.04275277,-0.037088364,0.012654999,0.03194095,0.023062218,-0.0028729432,-0.005296331,0.05556511,0.021331428,-0.007260328,0.0062825438,-0.040842157,-0.010952306,-0.072468415,-0.012070577,0.01020492,-0.01570074,0.019443294,-0.023826463,-0.0042904494,0.017184274,-0.021870896,0.03549244,-0.013003405,-0.0416064,-0.009412577,-0.01998276,0.06212863,-0.030839536,0.0065017026,0.023062218,-0.003925185,0.04171879,-0.0053356667,0.014161011,-0.020971784,0.032457937,0.005127747,-0.037380576,0.016644808,0.021668596,0.008136963,0.04547258,-0.010053194,-0.03875172,0.057767935,-0.0006950556,-0.018780198,-0.032795105,-0.0016984785,0.005448056,0.015239946,0.031086791,-0.054980688,-0.0022997595,0.032502893,-0.061319426,-0.011435579,-0.011480534,0.0018277258,-0.02274753,0.008777579,-0.0054930113,-0.019814176,0.0113063315,0.052598044,0.016386313,0.0089911185,-0.009227135,-0.012789866,-0.0058048908,-0.026433889,0.025624687,0.051968664,-0.028928922,-0.028254589,0.06482597,0.039066408,0.015655784,0.03018768,-0.016397553,-0.0058779437,-0.011435579,-0.018510465,-0.025557254,-0.029490868,-0.034031384,0.037875086,-0.0018235112,-0.0033267138,0.029041313,0.015599591,-0.005054694,-0.011789604,0.050619997,0.030749625,-0.0015874944,0.02315213,0.00052296,-0.024500798,0.048507083,0.026883444,-0.0062263496,-0.016431268,-0.017004453,-0.0024585088,0.02641141,0.04751806,-0.00056756433,0.03499793,0.044146392,0.0146330455,-0.012823583,0.013857561,0.0010381932,-0.056149535,-0.006642189,-0.07498593,-0.03232307,-0.02886149,0.0024697478,0.014453223,-0.001207479,0.015352335,-0.0289514,-0.0083111655,-0.03110927,-0.015959235,0.002274472,0.04428126,0.0023334762,0.00002098513,-0.014217206,-0.043494534,-0.004228635,0.03376165,-0.009682311,0.01998276,-0.015532157,-0.014104817,-0.022635141,-0.060105626,0.036953498,0.025309999,0.025242565,0.0060409075,-0.02845689,0.032390505,0.017229231,-0.0285468,-0.042955067,0.021713551,0.02152249,-0.0031356525,-0.023489296,0.029625734,0.041651357,-0.001743434,0.003804367,-0.032030858,0.011621021,-0.021398861,0.009980141,-0.026793532,0.031221658,-0.037987474,-0.025579732,-0.0011491773,0.083617404,0.008541563,0.019128604,0.040572423,0.060420316,0.018487988,0.06788294,0.004506798,0.02886149,0.016037907,-0.031693693,0.03225564,0.043584447,0.07453637,-0.029063791,0.028704146,0.022275496,0.06559021,-0.02802981,-0.04234817,-0.046439126,0.02000524,0.0060633854,0.03185104,-0.026905922,0.03142396,-0.027108222,-0.022241779,-0.026051765,-0.048192393,-0.0018319404,-0.064061716,-0.018634092,0.023062218,0.043179847,-0.010671333,-0.013509155,-0.017071886,0.0036582614,-0.037380576,0.010058814,0.011002881,-0.073457435,0.03884163,-0.054486178,0.007586256,0.019555682,0.00642303,-0.03270519,-0.0012130985,0.019825416,-0.016285162,-0.008906826,0.0018080577,0.0212078,-0.0034334834,0.023331951,-0.012621283,-0.024793008,-0.03549244,-0.012598804,0.011598542,0.006810772,-0.030210158,-0.0032030859,0.010986023,0.01712808,0.0016127819,-0.03342448,-0.07808787,-0.021387624,-0.025152653,-0.048012573,0.04081968,-0.043719314,-0.048012573,0.024410887,-0.036751196,0.04556249,0.023242041,0.025759554,0.008732623,-0.0027760079,-0.008721385,0.015869323,-0.023039741,-0.0391788,0.051923707,0.023331951,-0.005425578,0.0049619735,-0.010744386,-0.010856776,0.011901993,0.009154082,-0.0077548395,-0.014981451,0.049945664,0.041156843,-0.037155796,-0.0056363074,0.002663619,-0.016768435,-0.047652926,0.04356197,-0.012430221,0.012025621,0.011137748,0.02366912,-0.034458462,-0.033671737,-0.014543134,-0.014340834,0.017498964,-0.0152849015,0.016577374,-0.04711346,0.027085744,0.042797722,-0.03110927,0.0037678406,-0.014767912,-0.05088973,0.018207015,0.018072149,0.007569398,-0.03814482,0.027894944,-0.020443555,0.021713551,0.03315475,0.00754692,-0.03153635,-0.0006170857,-0.08842765,0.028052289,0.03315475,-0.004203348,0.0416064,-0.045315236,-0.0014013501,0.019611876,-0.008676429,0.031356525,0.0008422149,-0.013902517,-0.037560396,-0.030569803,0.060645092,0.07543548,0.034548372,0.04169631,-0.015307379,-0.0017687216,-0.011413101,-0.030434936,-0.026456365,-0.04353949,-0.009480011,-0.02722061,0.03652642,-0.006394933,0.011429959,-0.021342667,-0.020050194,-0.007737981,-0.06585994,-0.060645092,-0.016071623,-0.007737981,0.030637236,-0.013059599,-0.005698121,-0.027153177,0.02387142,-0.010272353,0.022522751,-0.005518299,-0.035986952,-0.06577003,0.02937848,-0.0052064196,0.044078957,0.010969165,-0.0127673885,-0.012104293,0.041156843,-0.029356001,-0.014700479,-0.0035065361,-0.014419506,0.016970735,-0.022994785,0.022286735,0.067298524,0.021589924,0.004231445,0.019094888,0.0041892994,-0.018364359,0.024972832,0.02998538,0.09287825,0.016588613,0.009030455,-0.049226373,0.03843703,-0.0039392337,0.0099464245,-0.010030717,-0.009980141,-0.0020328357,-0.013374289,-0.069096744,-0.046484083,-0.007737981,0.0024121485,0.024545753,-0.07592999,0.0038605614,0.017892325,0.013801367,0.012486416,-0.03589704,-0.01458809,-0.037043408,-0.022814963,-0.032502893,-0.017690025,0.012306593,0.0020258115,-0.016824631,0.015599591,-0.0034306736,0.058127582,-0.0055520157,-0.014295878,-0.0277376,0.00795714,0.0146330455,0.004208967,-0.002722623,0.013464199,-0.014307117,-0.01223916,0.010356644,0.006619711,-0.0050153583,-0.024500798,-0.034818105,-0.00076003047,-0.010266733,0.017881086,0.025534777,-0.049226373,0.028434413,-0.0154872015,-0.0039645215,0.01050837,-0.013497916,0.011587304,-0.027580256,0.012205443,0.033514395,0.00079515204,-0.006619711,0.03693102,0.012081815,-0.03140148,0.024096197,-0.02192709,0.024905398,-0.0029726885,0.0013844918,-0.0018445841,-0.027085744,-0.0072153723,-0.005377813,-0.0151837515,0.020960545,-0.01183456,-0.03794252,0.0068894443,-0.016880825,0.029760601,-0.01980294,-0.04313489,-0.023826463,0.019285949,-0.015172512,0.05394671,0.030255113,-0.017498964,0.0006392123,0.006473605,-0.016453747,-0.008288687,-0.011946948,-0.021252757,-0.03140148,0.05138424,0.0013065219,-0.0052907113,-0.0018740862,0.0025301569,0.031019358,0.03185104,0.024186108,-0.005678453,0.0105982805,-0.0020103578,0.0086595705,-0.020848155,0.0131157935,0.03225564,-0.0010971974,0.03895402,0.012891016,-0.012891016,-0.038077388,-0.026793532,0.022106912,0.037155796,0.0147791505,0.010570183,0.004577041,0.03180608,0.0017518632,0.05201362,-0.03407634,-0.053901754,-0.034143772,0.028209634,-0.04131419,-0.008136963,0.02018506,-0.021904612,-0.0028406314,0.023331951,0.006467986,0.012834822,-0.019915327,0.021691073,-0.0046922397,-0.030345025,0.0021662975,0.002733862,0.011154606,-0.002468343,0.005799271,-0.011969427,-0.0579028,0.02355673,0.01774622,0.015846847,-0.031311568,-0.010440936,0.018724004,0.011092792,0.007788556,0.002978308,0.048596993,0.007811034,-0.05772298,0.024208587,0.007586256,0.014925256,-0.040437553,-0.015689502,0.05619449,-0.0007586256,0.03803243,-0.014734196,-0.035672262,0.006192633,-0.0030906969,-0.0129696885,0.0085134655,-0.006816392,0.016644808,0.027670167,-0.010171203,0.018802676,0.018072149,0.011913232,-0.016869586,0.028434413,0.017892325,0.04967593,0.05241822,-0.011064695,0.02917618,-0.00037334213,0.014295878,-0.031693693,-0.031783603,0.022253018,0.023039741,0.031334046,-0.033626784,0.010086911,0.053002644,-0.015273662,0.03038998,0.024343453,0.034908015,0.030682191,0.025916899,0.008148201,0.04347206,-0.007187275,-0.016858347,0.037200753,0.041134365,0.040617377,-0.009193419,-0.002388266,-0.03252537,0.02416363,0.007485106,-0.0030513608,-0.011857037,-0.00028237732,-0.008002095,0.031738646,0.03009777,0.0037566016,-0.003742553,0.00990147,-0.0407972,-0.04046003,0.0010887682,0.002561064,-0.0022210872,0.002662214,0.0007691621,-0.0071816556,-0.0035374432,-0.005383432,-0.037987474,0.040032953,-0.009648594,-0.0126662385,0.05866705,0.031086791,0.013733934,-0.01966807,0.042707812,0.02243284,-0.025849465,-0.0038689906,-0.02173603,0.045045502,-0.016813392,0.0032396123,-0.009699169,-0.009985761,0.018532943,-0.011289473,-0.024860442,0.01591428,0.0019007786,-0.04702355,0.013587828,0.021084173,-0.030524846,0.026523799,-0.03153635,0.0055548255,-0.0062094913,0.026793532,0.011924471,-0.029198658,-0.018499225,-0.05017044,-0.025961854,0.018892588,-0.038009953,-0.011469295,-0.011278234,-0.010249875,-0.011857037,-0.00652418,-0.020274973,-0.0123627875,0.041471533,0.0558798,0.0024641284,-0.017678786,-0.015644547,-0.000049521394,0.02058966,-0.051249374,-0.016026668,-0.010839917,-0.016970735,-0.0403926,0.02998538,-0.030277591,-0.011823321,-0.034391027,0.046888683,-0.023129651,0.003548682,0.0016085673,-0.004731576,-0.022500273,-0.022837441,0.024545753,-0.010019477,-0.045270283,-0.028299546,-0.015565874,0.0010747196,-0.038279686,0.0108286785,0.042235777,0.0003549033,0.010896112,-0.025534777,0.0078054145,0.02816468,-0.006467986,-0.017577637,0.020904351,0.01653242,-0.01672348,-0.01590304,0.034503415,-0.04153897,0.004051623,0.018296925,0.011059076,0.016689764,0.0138238445,0.04169631,-0.012250399,0.053452197,-0.008693287,-0.023781508,0.017881086,0.011778365,0.03762783,-0.02407372,-0.0031665596,0.015745696,-0.015071362,0.001336024,0.012329071,0.0020426698,0.0077660787,0.018487988,-0.012812343,-0.013396766,0.013677739,0.014464461,-0.0008513465,0.025557254,-0.0070018335,-0.009631735,0.009182179,-0.00046360455,-0.0024599137,-0.014250923,-0.034930494,0.011767127,0.0060914825,-0.009637355,-0.009064171,0.04425878,-0.008951782,0.06918666,0.0039954283,-0.018634092,-0.0069793556,0.0065635163,-0.009524966,-0.009716027,0.00968793,-0.017161798,0.00096443796,-0.013216944,-0.0020019286,0.033604305,-0.010356644,0.016948259,0.053092554,-0.016341358,0.017791176,0.012598804,-0.03996552,0.0041892994,0.039988,0.007412053,-0.011418721,-0.015138796,0.0407972,0.024186108,0.0017897945,-0.012980927,-0.0024528895,0.023107175,0.019038694,-0.010558944,-0.00866519,-0.0039195656,0.0056447363,0.014520656,0.022489036,0.00078953255,0.016476225,-0.0052907113,-0.028614234,0.013857561,0.021544967,0.03160378,0.026141677,-0.01866781,0.009395719,0.015947996,-0.008507846,0.028479367,-0.008996738,0.054935735,-0.008047051,0.018431792,-0.0041892994,0.05435131,-0.007788556,-0.01060952,0.026343977,-0.014644284,0.0028181537,-0.00012116937,0.005821749,0.0014055647,0.035852086,-0.021702312,0.012126771,0.0075806365,0.040572423,-0.017229231,0.011441198,-0.021668596,0.020634616,0.0056025907,-0.0063555967,0.0040741004,-0.011126509,-0.00254842,0.00896864,-0.003734124,-0.032817584,-0.0045658024,0.010721909,-0.017498964,0.007468248,0.009210277,0.012621283,0.009429435,-0.005922899,0.011053456,0.0015327047,-0.00045763387,0.023893896,-0.04081968,-0.033334572,0.011446818,-0.0077773174,0.04976584,-0.036975976,0.0018417744,0.020690812,0.027310522,0.011087173,0.0387742,-0.013812605,-0.002388266,-0.008215634,-0.0047062887,-0.024815487,-0.023579208,0.00023970462,0.00458828,-0.008372979,-0.023938853,0.0057121697,0.0064792247,0.025332477,0.04068481,-0.036728717,-0.020117627,0.05484582,-0.014116056,0.01712808,-0.0050603137,0.00427921,0.004554563,0.08253846,0.010778103,-0.004031955,0.0078054145,-0.015891802,0.012486416,-0.024433365,-0.005254185,0.0047343858,0.0022477796,-0.06181394,-0.010766864,0.041449055,-0.024141153,-0.0076536895,-0.028501846,-0.00001568397,-0.012205443,-0.022635141,-0.011553587,-0.011924471,-0.0042567328,-0.016858347,0.008614616,-0.0004878384,-0.0072041336,0.0391788,0.020038955,-0.021960806,-0.015217468,0.0048804916,0.0043691215,-0.014397028,-0.025759554,0.018499225,-0.011126509,-0.003832464,-0.013486678,0.031221658,0.03149139,0.016959498,0.014914017,-0.059790935,0.0042707813,-0.029468391,0.020151343,0.022848679,0.0053356667,-0.004355073,-0.03306484,0.023714075,0.011789604,-0.0076031145,0.01600419,0.0014308522,0.011654737,-0.032390505,0.022118151,-0.0062375884,-0.01612782,0.008035812,-0.005973474,0.0017125271,0.01039598,-0.0012046694,0.03578465,-0.0020665524,0.0016872395,0.025332477,-0.009878991,-0.0021957997,-0.018274449,-0.012149248,0.003436293,0.00084502465,0.002396695,0.037672784,0.031064315,-0.011059076,0.007732362,0.021747267,0.031131748,0.00158047,-0.023197085,0.0041696313,-0.019746743,0.010429697,-0.002997976,0.031693693,0.012598804,-0.005108079,-0.021072933,-0.024096197,-0.015037646,-0.026748577,0.040257733,-0.021713551,-0.013509155,-0.003304236,0.01633012,0.016161535,-0.0030429317,-0.031693693,-0.031558827,0.01773498,-0.008406696,-0.001468081,0.011289473,-0.04457347,-0.018622855,0.0067658164,0.0035149653,-0.024703098,0.0045208465,0.021691073,0.030929448,-0.044708338,0.029828034,-0.0026706432,-0.013025883,-0.022601424,-0.0017139319,0.029445913,-0.007979617,0.0203986,0.015161273,-0.015959235,-0.015105079,-0.001642284,-0.028524322,-0.005740267,0.03967331,0.017521443,-0.024298497,0.01754392,0.0078054145,-0.013711455,-0.01418349,-0.013216944,-0.012823583,-0.012081815,0.016375074,-0.0029614496,0.017105604,0.0018333453,-0.012216683,0.035447486,-0.033199705,0.01264376,0.0034138153,-0.00013574482,-0.015217468,-0.05601467,0.0144757,-0.024815487,0.0025863515,0.007468248,0.018015953,-0.012385266,-0.006996214,-0.0045348955,-0.0064792247,-0.009328285,0.0050209775,0.020938067,-0.030075291,0.04945115,0.0030766483,-0.0073165228,0.023039741,0.035986952,-0.0047147176,0.010564564,-0.027894944,-0.005192371,-0.02508522,-0.016296402,-0.0058161295,-0.011295092,-0.023107175,0.0009040288,-0.015228706,0.0044000284,0.0106994305,-0.011356906,-0.020038955,0.011317571,0.0003564838,-0.0058105104,0.009418196,0.005352525,-0.012093054,0.023826463,-0.000568618,0.04108941,0.040729765,0.02897388,-0.013576589,-0.009783461,0.0036133057,-0.04005543,0.026523799,-0.025220087,0.012834822,0.027894944,-0.011767127,0.024590708,-0.042235777,-0.033918995,-0.020421078,-0.0138238445,0.0048636333,0.00948563,-0.025422387,0.00030327463,-0.01846551,0.005574493,0.0005282282,0.008755102,-0.01897126,-0.012654999,-0.0013205705,0.01865657,0.059521202,-0.01633012,-0.022500273,-0.013576589,0.032368027,0.020173822,0.046259303,0.008075148,0.046124436,0.03243546,0.019623116,0.01703817,0.035155274,0.00867081,-0.05273291,-0.009676691,0.017397813,0.018791437,0.003037312,-0.011576065,-0.04117932,-0.02274753,-0.04001048,0.008794438,-0.008985499,-0.01897126,0.04070729,-0.008232493,0.014599329,-0.00029993808,0.033244662,0.010783723,-0.053497154,0.002437436,-0.01571198,-0.0075918757,0.014734196,0.0002303974,0.0064567467,-0.00035121557,-0.03407634,-0.01692578,0.0022070387,-0.011632259,-0.020072673,0.0027296473,0.0075750174,-0.0289514,-0.018746482,0.022118151,0.009721647,-0.021117888,0.0030007858,-0.00969355,-0.013947472,-0.002823773,-0.022219302,0.0025779223,-0.041246757,0.0043101176,-0.011879515,-0.034098815,0.0017490535,0.026231587,0.014520656,0.024320975,-0.0065747555,-0.025579732,0.020735767,0.023062218,0.016745958,-0.026276544,0.011913232,0.016880825,0.03292997,-0.013801367,-0.006299402,0.02836698,0.034840584,0.021365145,-0.011991904,-0.011665976,-0.032053337,0.035177752,-0.01785861,-0.0395834,-0.00500131,0.011503012,0.0064904634,-0.0045742313,-0.022444079,0.014363311,0.009839655,-0.052642997,-0.022691336,0.010952306,0.0032648998,0.0285468,-0.026388932,0.01592552,0.015206229,-0.0043213563,-0.021488773,-0.023826463,-0.030772103,-0.01071067,-0.0073502394,0.018903827,-0.008552802,0.005271043,-0.00055562303,0.007670548,-0.0128685385,-0.009671072,-0.010171203,-0.029670691,0.0125650875,0.035514917,0.0066646663,-0.007569398,0.0044112676,-0.01845427,-0.027692644,-0.05754316,0.0041415337,0.0017097173,0.028007334,0.009676691,0.0023095936,-0.05677891,-0.0033941471,-0.012733672,-0.02416363,-0.023579208,0.008940543,-0.024927875,-0.024950353,-0.00632188,-0.0005882861,-0.02447832,0.008316784,-0.00010176471,0.0072266115,-0.030210158,-0.0072266115,0.0069905943,0.012553849,0.011564826,0.015959235,-0.06316261,0.0074064336,-0.02569212,0.003071029,-0.020657094,0.011857037,0.0029136844,-0.013216944,0.071029834,0.004200538,-0.008912446,-0.015509679,0.0019415197,0.007732362,0.03774022,0.0018600376,-0.01183456,-0.03976322,0.018004715,0.009828417,-0.009862133,0.015206229,-0.014161011,-0.019196037,0.015813129,0.030030336,-0.025242565,-0.029625734,0.019162321,-0.017903564,0.0021297713,0.023399385,-0.035200227,0.009339524,-0.014430745,-0.006394933,-0.028906446,0.0152849015,-0.009957664,0.023601687,0.013430483,0.018487988,-0.020510988,0.033918995,-0.0034222445,-0.004363502,0.02620911,-0.041336667,-0.03243546,0.05331733,0.0024079338,-0.00091737503,0.00040565396,0.020938067,0.0039392337,-0.012351549,0.018027192,0.004453413,0.039111365,-0.018813916,0.049091507,-0.012902255,-0.015869323,-0.0015074172,-0.00989585,0.00046887278,-0.08051547,0.045607448,0.0018530133,-0.0024458652,0.014520656,0.020881873,0.036953498,0.01691454,-0.008429173,0.069591254,0.026433889,-0.004374741,0.027445389,0.01773498,-0.020061433,-0.0019710218,0.01672348,-0.009283329,-0.0032368025,-0.016386313,-0.00010931584,-0.026568756,0.043921612,0.026883444,-0.036031906,-0.03394147,-0.0060015717,-0.0206009,-0.011587304,-0.035559874,0.033918995,-0.002416363,-0.015037646,0.010637617,-0.026950877,-0.005346906,0.023084696,0.019218516,-0.0005233112,0.017970998,-0.0006504512,-0.00068592397,0.020050194,0.0006817094,-0.008328023,0.0061139604,-0.014700479,-0.007535681,0.0069287806,0.013520394,0.015768174,0.01183456,0.037268184,-0.0047568637,0.026231587,0.006344358,0.02917618,0.026388932,-0.0110085,-0.0060521467,-0.010367883,-0.015779413,0.01967931,0.01203686,-0.030614758,0.008344882,0.010356644,-0.011755887,0.019488249,-0.01234031,-0.032997403,-0.033716694,-0.012317833,0.033222184,-0.005018168,-0.024545753,-0.00815944,-0.03670624,0.035852086,0.044123914,0.023691596,-0.046843726,-0.025669644,0.0056025907,-0.013464199,-0.0051951804,0.021027979,-0.029715646,0.0012749125,-0.046439126,0.003509346,-0.011868277,0.049226373,0.035357572,0.023826463,0.0019120175,0.018229492,0.019746743,-0.0075300615,-0.008434793,-0.045247804,-0.037492964,-0.008946163,-0.044528514,-0.01713932,-0.007558159,-0.005422768,0.047383193,0.01284606,0.015431007,0.049406197,0.012317833,-0.010339786,-0.010823059,-0.014093578,-0.018105865,0.0104521755]},{"id":"interface-WebSocketShardEvents","type":"interface","source":"main","text":"Interface: WebSocketShardEvents\nProperties: close: [code: number], debug: [message: string], dispatch: [payload: GatewayReceivePayload], error: [error: Error], ready: [payload: unknown], resumed: []","meta":{"url":"/docs/typedefs/WebSocketShardEvents"},"embedding":[-0.018851921,0.008070008,-0.015769668,0.017633356,0.014371902,0.017059913,-0.013499791,-0.01404934,0.05877785,-0.00028018787,0.043557733,0.0103100175,0.028743804,0.030822532,0.03443044,-0.01166597,-0.039543636,0.05772654,-0.02704737,0.020058539,0.030081835,-0.011570396,0.05251777,0.025159787,-0.017728928,0.024048742,0.017095752,0.019449256,-0.013105549,0.011970611,0.05973359,-0.031658802,0.023224419,0.023379726,-0.0155426795,0.026521713,-0.010238337,0.028337615,-0.02711905,0.013272803,-0.022985484,-0.036509167,-0.051514246,0.010584792,-0.035983514,-0.0034197478,-0.038611792,-0.0051221554,-0.013631205,0.022650976,0.009449854,-0.01179141,0.009270653,0.08118989,0.0039185234,-0.00933636,-0.022376202,-0.001657607,0.026330566,-0.015709933,0.0050743683,0.0093722,-0.004575593,-0.020942597,-0.0028776657,-0.0129263485,-0.036987036,0.06790514,0.01878024,0.0029060391,-0.0074846186,0.040881667,-0.012317066,-0.014479422,-0.01084762,0.036222447,0.007108297,0.008559823,0.0013805926,0.0049787946,-0.010686339,0.0021220357,-0.07999522,-0.049746133,0.018362105,-0.05724867,-0.061788425,-0.009366226,-0.011707784,0.015327639,-0.03959142,0.008291022,-0.0151364915,0.0031539334,-0.012096052,-0.054907113,0.0422197,-0.024251837,-0.0049459413,0.0017711009,0.027501345,-0.063604325,-0.05863449,-0.022997431,0.014371902,-0.012472373,0.00793262,-0.028696015,-0.035003882,-0.018839974,-0.06599367,-0.0012230452,-0.017932024,0.021850547,-0.0076100593,-0.020823129,0.038014457,-0.002944866,0.018278478,0.034024253,-0.021958066,0.051896542,-0.0006006959,0.013440058,-0.035290603,-0.0061824266,0.033355236,-0.019628458,-0.0076100593,0.019962965,0.05361687,-0.013308643,0.014037393,-0.049220476,0.022543456,0.033403024,-0.03122872,0.025709337,-0.051514246,-0.030559704,-0.0011685384,-0.047547936,0.06647154,0.00021429425,-0.020655874,0.016068336,-0.0053640762,0.032805685,0.009246759,-0.011002927,-0.022423988,0.061310556,0.035433963,-0.027835852,-0.0055940505,0.024419092,-0.0013006988,0.014407742,0.0100770565,-0.047547936,0.0062242397,0.008942118,-0.053091213,-0.018409891,-0.04167015,-0.029890688,-0.004593513,0.008506063,-0.049602773,-0.023666447,0.013368377,-0.043557733,-0.0102861235,0.022877965,-0.010799833,-0.0021504092,0.006065946,0.010787886,-0.00095051073,0.0036377755,0.023164686,0.034932204,-0.014324115,-0.021970013,-0.029819008,-0.009909802,-0.0044561257,0.048360314,0.000021630092,-0.022005854,-0.03944806,0.04429843,0.007185951,0.026163312,0.06594588,-0.016677618,-0.009192999,0.012950242,-0.033689745,-0.023355832,-0.024251837,-0.054477032,0.06608924,-0.007293471,0.009527507,0.030368555,-0.0073352847,-0.013702885,0.025852697,0.012615734,0.0636999,0.021826653,0.021898333,0.009587241,-0.0076996596,-0.003727376,0.03163491,0.035649005,0.008195449,-0.020297473,-0.015100651,0.0064034406,0.04219581,0.025135893,0.038564004,0.03476495,0.03247118,-0.017382475,-0.00389463,0.011331461,-0.0436772,0.01328475,-0.02198196,-0.018278478,0.008954065,0.022866018,0.035457857,-0.030822532,0.0074666985,-0.030559704,-0.006272027,-0.04625769,-0.00860761,-0.0032315871,0.020428887,0.031611014,0.012603787,0.014730303,-0.04243474,0.0077713397,0.019819604,0.0007623499,0.005131115,-0.0066543217,0.0029612926,-0.047810763,-0.023714235,0.0024012902,0.012131892,0.020835076,0.047309,-0.04243474,-0.0025371842,0.03665253,-0.005507437,-0.05419031,0.046138223,0.017382475,-0.009784361,-0.034263186,0.03435876,0.045469206,0.018326266,-0.0068514426,-0.034956098,-0.0044411924,-0.009157159,0.014563049,-0.0083328355,0.024192104,-0.01932979,-0.022686817,-0.0014784063,0.08362702,0.010130816,0.036939252,0.008201421,0.026234992,0.04506302,0.039878145,0.010704259,0.0032345739,0.029054418,-0.032853473,0.031395976,0.03803835,0.061453916,-0.0140135,0.02052446,-0.052565556,0.03170659,-0.07712801,-0.0022982499,-0.04319933,-0.0010139777,0.0102980705,0.03868347,0.0010072576,0.018684667,-0.0022474763,-0.012771041,0.012209546,-0.07550325,-0.022041693,-0.038635686,0.0011394182,0.072970554,0.04286482,0.014395795,-0.029795114,0.0045696194,0.006373574,-0.010148737,-0.0046442864,-0.01700018,-0.005104235,0.06336539,-0.031658802,0.011014874,0.06494236,-0.018087331,-0.03916134,0.011397169,-0.01113434,0.005874798,-0.009838122,-0.017394422,-0.008326862,-0.013308643,-0.0071620573,0.011881011,-0.014431635,-0.038755152,-0.010321964,0.012567947,-0.005785198,0.018111223,-0.009969536,-0.015697988,-0.021539932,-0.03184995,-0.0051012486,-0.07502539,-0.033976465,-0.018541306,-0.061119407,0.01397766,-0.01714354,-0.016008602,0.022101428,0.0034316946,0.019855445,-0.0017740875,0.0036825757,-0.015913028,0.044465683,-0.035147242,-0.0116122095,0.009957589,-0.06838301,0.05954244,0.054572605,-0.018565198,0.018828027,-0.027286302,0.008279075,-0.02187444,-0.002071262,0.012950242,0.01328475,0.009581268,0.024705812,-0.043151543,0.006140613,0.0034107878,-0.0016680604,-0.049220476,0.05452482,-0.0036198555,0.007389045,0.061167195,-0.001411206,-0.05299564,-0.022483723,0.030201303,-0.03192163,0.017203273,0.004017084,0.005952452,-0.017203273,0.009581268,0.009945642,-0.027286302,-0.003539215,0.009712681,-0.009593214,0.025207574,0.0140135,0.004250045,-0.05208769,0.0017905143,0.0053581027,0.020249687,0.0033868945,0.023558928,-0.03137208,0.018421838,-0.039878145,0.006958963,0.024586344,0.029245565,-0.010913326,-0.052565556,0.015279852,0.0017546741,0.017047966,0.006194373,-0.011881011,-0.011319515,-0.031754375,-0.026856221,0.035983514,0.089887105,0.0013402724,0.07421301,-0.034645483,0.0033092408,-0.028600441,-0.050988592,-0.031348187,-0.03462159,-0.0046174065,-0.018839974,0.030488024,-0.048599247,0.004232125,0.011570396,-0.03548175,-0.02336778,-0.04248253,-0.019126695,-0.043796666,0.0004106684,0.06398662,-0.04171794,-0.028074786,-0.018553253,0.015924975,0.0015695001,-0.0026312645,-0.017310794,-0.025828803,-0.045373634,0.010375724,-0.004847381,0.030010154,0.004787647,0.0023355833,-0.00057232246,0.05146646,0.012806881,-0.005605997,0.0022295562,-0.024753598,0.010333911,-0.00931844,0.022913804,0.03268622,0.020942597,-0.0031658802,-0.033068515,-0.0035451883,0.020811182,-0.008308942,0.02169524,0.0837226,0.0040499372,-0.008918225,-0.059494656,0.02253151,-0.047261216,0.027764171,0.022089481,-0.012579894,0.007245684,-0.036365807,-0.050080642,-0.030081835,0.019962965,0.007998328,-0.019078908,-0.06470342,-0.02747745,-0.0076518725,-0.005328236,0.0053252494,-0.027381876,-0.025159787,-0.03400036,-0.05404695,0.01769309,0.005367063,-0.0030673197,-0.005301356,-0.023893435,-0.0000066675284,0.00040693508,0.023176633,-0.028433189,0.0061167195,-0.024586344,-0.004539753,0.018756347,-0.014037393,0.008219342,0.00080416346,-0.016355056,0.016104175,0.005871812,0.023009378,-0.0054656235,-0.026665073,-0.039400276,0.036819782,0.0016098202,0.023081059,-0.023308046,-0.0673317,0.020225793,-0.018756347,-0.013404218,0.049602773,-0.019712085,0.0049519143,-0.030440237,0.040929455,0.029675646,-0.007693686,0.008458276,0.014467475,0.019007228,-0.0137984585,0.01783645,-0.0072636046,0.029102204,-0.00085120363,0.004238098,-0.014981184,-0.034788843,0.004760767,-0.012113972,0.031682696,0.037847202,-0.018493518,-0.02719073,0.015411266,0.00926468,-0.0047846604,-0.013690938,-0.009258706,0.012125919,-0.0025894511,-0.002286303,0.021420464,0.0010423511,0.0034735082,-0.056723014,0.0142285405,0.0018577146,-0.00695299,0.00033301476,-0.036891464,-0.04723732,0.069052026,-0.06092826,0.004545726,0.039280806,0.0076160324,0.04152679,0.009109372,0.0048384205,-0.02817036,0.02747745,0.04632937,0.015877187,-0.03846843,0.011462876,0.036270235,-0.00850009,0.022543456,0.020870917,0.01568604,-0.028433189,-0.017334687,0.04611433,0.044632938,0.0011864584,0.0075025386,0.020333314,0.0001176005,0.013738725,0.03610298,-0.00540589,-0.045397528,-0.012675468,0.006122693,-0.03729765,0.023116898,-0.002162356,-0.0578699,-0.031204827,0.0031658802,-0.012579894,0.025518188,-0.009676841,0.013165283,-0.036174662,-0.03942417,-0.006720029,-0.00396631,0.024610238,-0.0055582104,-0.008404516,-0.014754197,-0.04673556,0.022244789,0.044609044,0.01762141,-0.028027,0.010166657,-0.012376799,0.0051460485,0.028982736,-0.005384983,0.02886327,0.004175378,-0.026999582,0.0033391076,-0.0076160324,0.034741055,-0.019138642,-0.013547578,0.021468252,0.009736575,0.040356014,-0.024896959,-0.006343707,0.009103399,-0.020906756,-0.011898931,0.008201421,0.034979988,-0.014073233,0.031969417,-0.016988233,0.008989905,0.015697988,0.011367301,0.009001852,0.043079864,0.053569082,0.038564004,0.043509945,-0.0125082135,0.020225793,-0.022686817,0.018182904,-0.041144494,-0.012723254,0.04138343,0.0037482826,0.03868347,-0.048838183,0.005689624,-0.0006118959,-0.018290425,0.040236544,-0.021862494,0.017932024,0.046687774,0.0028283854,0.028528761,0.045182485,-0.013846246,0.01321307,0.03471716,0.03791888,0.016223643,0.016319217,-0.015435159,0.011654023,-0.0070664836,0.009491667,-0.03170659,0.00062272267,-0.0032853473,0.021253211,0.0118332235,0.010166657,0.00389463,0.031395976,0.012364853,-0.03156323,-0.012986082,-0.041263964,-0.012460426,-0.040977243,0.012603787,0.0061883996,-0.025589868,0.02358282,-0.007496565,-0.035696793,0.024896959,-0.010435458,-0.00024397437,0.0549549,0.032710113,-0.017466102,0.0031748402,0.016880712,0.035075564,0.018314319,0.009187026,-0.016140016,0.04465683,-0.021719133,0.0075981123,0.0035063617,0.002628278,0.033307448,-0.030894212,-0.0038707366,0.026593393,0.017955916,-0.037536588,0.024705812,0.04219581,0.012759094,0.020225793,-0.03763216,0.0068394956,-0.039734785,0.010680365,0.025781017,-0.027381876,0.0076518725,0.0068394956,-0.038779046,-0.035314497,-0.02431157,0.007944567,0.011367301,0.01324891,0.018218745,0.0018920614,-0.024466878,-0.01022639,0.043844454,0.042506423,0.013404218,-0.023594767,-0.032447286,0.029603966,0.061310556,-0.01408518,-0.031419866,0.010877486,-0.027907532,-0.026163312,-0.017346634,-0.026187206,0.008798758,-0.015697988,0.017382475,-0.0024774505,-0.0023714234,0.007974434,-0.028911056,-0.009682815,-0.026019951,-0.01805149,-0.010662446,-0.070581205,-0.009157159,-0.01940147,-0.009025745,-0.084773906,0.0076339524,0.036485277,-0.019305896,0.0009101906,-0.03220835,-0.004751807,0.012567947,0.0042799115,-0.047619615,0.01652231,0.0026193177,-0.010680365,-0.011695837,0.033498596,-0.025350936,0.053186785,0.011564422,0.020082433,-0.007329311,-0.003204707,0.0313004,0.0075801923,0.052135475,-0.019210322,0.0054805567,0.007138164,0.0027417718,0.030631384,-0.031013679,0.03667642,0.0052475957,-0.01634311,-0.01790813,0.037871096,-0.024849173,-0.01332059,0.030846424,0.009676841,-0.012436533,0.010901379,-0.0008497103,-0.006743922,0.018421838,-0.0037482826,-0.018003704,-0.029245565,0.005859865,-0.010023296,-0.0187444,-0.042171914,-0.016916553,0.009664895,0.0074129384,0.016844872,0.051944327,0.0014694462,0.06685383,0.00780718,-0.04716564,-0.0022444895,0.033164088,-0.02977122,-0.051657606,0.007191924,-0.029126098,-0.009473747,-0.0060062124,0.035075564,0.02402485,0.019867392,0.058873426,0.04090556,-0.00704259,-0.0020832089,0.041025028,-0.04131175,-0.002189236,0.02754913,-0.0047458336,-0.046855025,0.015244012,0.03667642,0.0073651513,0.0038050297,-0.007813154,0.02121737,0.036700316,0.028982736,-0.0017591541,-0.022280628,0.00035373485,0.0023400632,0.02274655,0.031085359,0.028552655,0.0037004957,-0.030034048,0.0076638195,0.006065946,0.013201123,0.012388746,0.037034824,-0.0013507258,-0.010250283,-0.022854071,-0.017346634,0.033259664,-0.024777493,0.02416821,0.016367003,-0.009521534,0.014312168,0.018350158,-0.0031091333,-0.039734785,0.027238516,0.012329012,-0.015064811,0.004844394,-0.009503614,-0.0056657307,0.018493518,0.020596141,0.021181531,0.047547936,0.0044591124,-0.019735977,0.0004640553,-0.0071680304,0.02747745,-0.010387671,0.025327042,0.0048682876,0.0047488203,-0.02423989,-0.0057194913,0.014431635,-0.021169584,0.0059853056,0.029388925,-0.037871096,-0.030941999,-0.025112001,0.01895944,0.011904904,-0.02121737,0.023558928,-0.028433189,0.019759871,0.0033510544,-0.03380921,-0.029890688,0.0011506182,0.02664118,0.055528343,-0.03290126,0.0069111763,0.017597515,0.03380921,0.016641777,0.05571949,-0.0000032375137,-0.007108297,-0.018565198,-0.029365031,-0.042554207,-0.023057165,-0.013475898,0.011498716,-0.024227943,-0.004506899,0.0044471654,-0.03297294,0.00704259,0.035696793,0.009449854,0.019962965,-0.005767278,-0.011247835,0.03232782,-0.006857416,0.005561197,0.013858193,0.05753539,0.01743026,0.030057942,-0.0005364823,-0.030368555,0.00842841,-0.028839376,0.04728511,0.020643927,-0.00075824326,-0.031539336,0.00393943,0.006875336,0.009790335,-0.0049997014,-0.012305119,-0.0037124425,-0.022698764,0.012078132,-0.037464906,0.025542082,-0.022244789,-0.021050116,0.030488024,0.012460426,-0.013189176,0.016295323,-0.009073532,-0.043438267,0.01950899,-0.0034974015,-0.005925572,-0.039519742,-0.024729706,0.0169285,-0.020584194,0.0016516338,-0.017573621,0.0203811,0.042052448,-0.01852936,0.020596141,-0.04348605,-0.033498596,-0.038348965,0.020393047,0.025924377,-0.04054716,-0.011086554,-0.02249567,0.022340363,-0.007406965,0.024610238,-0.026067737,0.012567947,0.04425064,-0.019282002,-0.0049489276,0.0043904185,-0.013571471,-0.00853593,-0.007174004,0.006773789,0.026402246,0.01408518,-0.011188101,-0.012794934,0.022280628,0.019951018,0.0051968223,-0.017036019,0.0055552237,0.0050176214,0.010357805,-0.0036676424,0.009169105,0.0436772,0.030416343,-0.01499313,-0.0025371842,0.025589868,0.021671345,-0.021599665,0.03667642,0.0035242818,-0.025327042,0.02664118,0.013523685,0.017406367,0.0008071501,0.018278478,0.015984708,-0.012072158,-0.022005854,-0.011056687,0.006540828,-0.009449854,-0.024060689,-0.02114569,0.008058061,0.013416164,-0.0073233377,-0.03060749,-0.011253808,0.020046592,-0.0062839733,0.0142524345,-0.005241622,-0.024323517,-0.021241264,-0.009175079,0.0017457141,-0.040929455,0.025112001,-0.013105549,-0.01026223,-0.036007408,-0.001999582,0.0013514725,-0.042554207,-0.022352308,-0.023379726,-0.008822651,-0.003494415,0.017597515,0.02420405,-0.024777493,-0.04401171,0.01870856,-0.014348008,-0.015351532,0.016773192,-0.00013104056,-0.043940026,0.010423511,0.027907532,-0.012962189,0.0087629175,-0.013726778,-0.012747148,0.003727376,0.019293949,0.0070545366,0.0051400755,0.022137268,-0.012830774,0.010985007,-0.03959142,-0.005376023,0.015327639,0.023176633,0.013344483,-0.046496626,-0.014455528,-0.036461383,0.025781017,-0.028982736,0.0037572428,-0.0005148289,-0.009814229,-0.0037900961,-0.018409891,0.032303926,-0.013953766,0.00079669675,-0.027071262,0.047595724,-0.015805507,0.002765665,-0.004435219,0.010602712,-0.00393047,-0.02034526,-0.0026476914,-0.018206798,-0.007944567,-0.01895944,0.04917269,-0.015100651,-0.005534317,0.0040559107,0.002184756,-0.0017263007,0.016761245,0.0066543217,-0.024610238,-0.015387372,0.000088667046,0.018362105,-0.023152739,-0.021181531,-0.037847202,0.0074009914,-0.01335643,0.052756704,0.03791888,0.033331342,-0.020464728,0.003828923,0.015745774,-0.04305597,0.022101428,0.014431635,0.004862314,-0.015244012,-0.007544352,0.01932979,-0.009521534,-0.011898931,-0.01965235,0.019676244,-0.0022668897,0.01474225,-0.033211876,0.010829699,0.005674691,-0.001886088,0.029962368,-0.012137865,-0.021563826,-0.0028672123,0.011307568,0.026545607,0.066614896,-0.019246163,-0.0073054177,-0.011958664,0.0006167493,-0.008129741,0.033761423,0.014419688,0.0151125975,0.010656472,-0.023116898,0.013786512,0.025303148,0.013440058,-0.037751626,0.019425362,0.02879159,-0.009897855,0.0102861235,-0.012245386,-0.022686817,-0.0011834718,-0.0034496146,-0.0019682217,-0.019771818,-0.003987217,0.02941282,-0.043175437,0.042840928,0.02136073,0.01495729,-0.0064810943,-0.054620393,0.0035660951,-0.008291022,0.0013888059,0.002558091,0.012794934,0.007436832,-0.009067559,-0.048933756,-0.037871096,-0.034932204,0.003906577,-0.008279075,-0.0044919658,0.011928798,-0.012436533,-0.01819485,0.017537782,-0.0067140553,-0.0095514,0.014383848,-0.028361507,-0.009348307,0.019867392,-0.00005240689,-0.007203871,-0.026736755,0.0075981123,-0.034310974,-0.033761423,0.034191504,0.04534974,0.025374828,-0.010680365,-0.0047368733,-0.00019086747,0.008058061,0.006355654,0.020034645,-0.00789678,0.023033272,0.0064691477,0.030774744,0.018099276,-0.009258706,0.02288991,0.018553253,0.035171136,0.003578042,0.018385999,0.0034526014,0.041263964,0.008004301,-0.037894987,0.007854966,0.011522609,0.017872289,0.012293172,-0.023391673,0.031802163,0.006642375,-0.05514605,-0.0151245445,0.026760647,0.012591841,0.017943969,-0.011355355,0.024287676,0.009115346,0.02198196,-0.007490592,-0.05500269,-0.03228003,-0.027716385,0.006504988,0.005824025,0.0016710472,-0.023284152,0.010292097,0.030726958,-0.018087331,0.0026626247,0.002738785,0.0011521116,-0.0040469505,0.03371364,-0.014790037,-0.01717938,-0.009939669,-0.0010528045,-0.019126695,-0.06336539,-0.0060211457,0.034024253,0.01575772,0.008756944,0.014945344,-0.01878024,-0.013643151,-0.015244012,-0.022149215,-0.0024908907,0.009951616,-0.016199749,-0.011241862,-0.028146466,0.009419987,-0.009031719,0.021659398,-0.010823726,0.009969536,-0.024849173,0.0009460307,-0.025303148,0.011331461,0.0045964997,0.012048265,-0.034263186,-0.008661371,-0.013428111,-0.0076100593,-0.030201303,0.017191326,0.020739501,-0.01870856,0.06231408,0.0074129384,-0.033498596,-0.015351532,-0.0003591482,0.030105729,0.00008796704,0.005205782,0.020404994,-0.013929873,-0.0018218744,0.010985007,-0.009832148,-0.0011946717,-0.01561436,-0.029508393,0.020488622,0.021241264,-0.0069649364,-0.041694045,0.029436713,-0.021635506,0.0076996596,-0.0042918585,-0.02774028,0.012131892,-0.01324891,0.0022191028,-0.047524042,-0.018469626,-0.0327579,0.022471776,-0.003996177,0.01947315,-0.042960398,0.01867272,-0.0089719845,0.003476495,0.027788065,-0.01903112,-0.025542082,0.059016787,-0.0024445972,-0.0124962665,0.0051072217,-0.008028194,0.025422616,0.0005271489,0.014383848,-0.006015172,0.007723553,0.0012185652,0.017788662,0.0074009914,-0.018099276,-0.002989666,-0.022591243,-0.005635864,-0.06895646,0.021492146,-0.025303148,0.0015187265,0.00926468,0.0012596321,0.040451586,-0.011014874,-0.036819782,0.026521713,0.0027955319,0.014527209,0.0155426795,0.010799833,0.006272027,-0.012866615,0.026234992,-0.015626308,-0.00944388,-0.00048346873,-0.01878024,-0.01797981,0.04374888,0.020010753,-0.057009738,-0.0068872827,0.010793859,-0.01088346,0.007245684,-0.02900663,0.041001134,-0.011433009,-0.022029748,0.004199271,-0.020321367,-0.037679948,0.01011887,0.015602414,0.005104235,0.010895407,0.022077534,0.0036736156,0.014622782,0.010787886,0.014395795,-0.0048414073,0.00045397528,0.0010289111,-0.00048309538,-0.011875037,-0.0046920734,0.033164088,0.006708082,0.02136073,0.018995281,0.0071680304,0.023785915,0.015255959,-0.010250283,-0.021970013,-0.00012730721,0.008595663,0.01721522,0.004754794,-0.014933397,0.026067737,-0.019198375,-0.010053162,-0.01488561,-0.018612986,-0.021133743,-0.055671703,-0.011355355,-0.012424586,-0.008058061,-0.026808435,-0.014634729,-0.01645063,0.02351114,0.019461203,0.0116241565,0.006809629,-0.0053700497,0.027668597,-0.030631384,0.025661549,0.044131175,-0.020297473,0.0035571351,-0.016080283,0.026354458,-0.0026043844,-0.0027238517,0.053664654,-0.0151364915,0.0062600803,0.0052296757,0.03395257,0.021707186,-0.006122693,-0.03486052,-0.002272863,-0.012472373,-0.049459413,-0.025685443,-0.012603787,-0.01171973,0.0049997014,-0.0049220477,0.015590467,0.02416821,0.007962488,-0.0028731856,-0.011731677,0.009145212,-0.00016632071,0.012036318]},{"id":"interface-WebSocketShardOptions","type":"interface","source":"main","text":"Interface: WebSocketShardOptions\nProperties: intents: number, numShards: number, presence: GatewayPresenceUpdateData, shardId: number, token: string, url: string, version: string, WebSocket: WebSocketConstructor","meta":{"url":"/docs/typedefs/WebSocketShardOptions"},"embedding":[-0.046026915,-0.020677667,0.004757693,0.010258104,0.0030354513,-0.009531532,0.015414065,-0.018933898,0.039267115,0.021506496,0.020731486,0.010586406,0.029256584,-0.0112268645,0.023939162,-0.024262084,-0.039482396,0.0409463,0.0068620574,0.025295427,-0.009730667,0.007927694,0.017857496,0.039245587,-0.048739444,0.013767172,0.030871186,0.011904997,-0.028761439,-0.0039477013,0.04180742,-0.025338484,0.044175506,0.0466297,-0.02060232,0.014972741,0.00724418,0.0076908865,-0.019472098,-0.009450803,-0.03724348,-0.0018662106,-0.026759334,0.03128022,-0.028524632,-0.0024084477,-0.029988537,-0.021043643,-0.007367966,-0.0022765885,-0.004854569,-0.0055031013,-0.011722009,0.06286183,0.014509888,-0.010737102,0.012357086,0.019536681,0.019601265,0.015403301,-0.0028309352,-0.014897392,-0.015284897,-0.0041818186,0.018320348,0.00031081084,-0.04150603,0.069234125,-0.031732306,0.02996701,0.04563941,0.025618348,0.007265708,-0.0068028555,-0.0026923486,0.038319882,-0.029902425,-0.0024622676,0.02559682,0.010532586,-0.027082253,0.006221599,-0.07767311,-0.046457477,-0.011722009,-0.031323276,-0.033777468,-0.011334505,-0.013089038,0.029235056,-0.02036551,0.0024192117,-0.061397925,-0.02342249,-0.0064799353,-0.033174686,0.0498589,0.0083367275,-0.0150480885,-0.0023667372,0.031969115,-0.029192,-0.10764012,0.01416544,-0.0011732773,0.002221423,0.012131042,-0.013304318,-0.05011724,-0.0057695103,-0.082925946,-0.004520885,0.012970635,0.029170472,0.01765298,-0.026630165,-0.009456185,0.007879256,0.0007406986,0.011097697,-0.008282907,-0.003624781,0.056231197,0.026996141,-0.019999534,-0.020247106,-0.005451972,-0.019073829,-0.051279753,-0.014413012,0.02428361,-0.01220639,0.009989003,-0.03530596,0.02063461,0.003554815,-0.03801849,0.01682415,-0.023831522,-0.03649,-0.02962256,-0.024003746,0.08731767,-0.016006086,0.004405172,0.021700248,-0.009090208,0.041010886,0.017050195,0.008406693,-0.0054815733,0.041075468,0.0348754,-0.032292034,-0.00081671943,0.033389963,0.0070773377,0.047835268,-0.014391484,-0.054638125,0.060063187,-0.006340003,-0.014789753,-0.029041303,-0.026522525,0.010634844,0.01765298,0.037394177,-0.048222773,0.0032695686,0.019795017,-0.053088106,-0.0028336262,-0.014509888,-0.01639359,-0.028115598,0.029256584,-0.010963147,-0.009504623,0.03117258,0.028460048,0.023078041,0.018255765,0.0082021775,-0.006340003,0.013228971,-0.030569794,0.020591555,0.051796425,-0.022195393,-0.040558796,0.052786715,0.014251552,0.011388324,0.04281924,-0.008040717,0.0049810465,0.007879256,-0.0057587465,-0.045294963,-0.022259977,-0.006652159,0.022303032,-0.0048438055,0.013767172,0.033540662,0.0030246873,-0.025295427,0.0021824033,0.030763546,0.048868615,0.0005287821,0.016102962,-0.0136272395,-0.024800284,0.031000353,0.035564296,-0.033303853,-0.02342249,-0.039590035,-0.015693929,0.019030772,0.036403887,0.015123437,0.018008191,0.038276825,0.014305372,-0.019482862,0.008659648,-0.0037727861,-0.067081325,0.009574588,-0.031646196,-0.029019777,-0.047878325,0.018427989,0.022023167,-0.013411959,0.012077222,-0.057006206,-0.019945715,-0.04086019,-0.0085143335,-0.009596117,0.046543587,0.0033099337,0.005438517,-0.0015271442,-0.04585469,0.00093445077,0.019708905,-0.012615422,0.012389378,-0.0035144498,-0.012669242,-0.057221487,-0.04303452,0.02820171,0.024305139,0.009246286,0.035133734,-0.029278113,0.019848838,0.019235289,-0.024348196,-0.04925612,0.0073464382,0.024326667,-0.0046635084,-0.047921382,0.040278934,0.051495034,0.005384697,-0.011926525,-0.026113493,0.007965369,-0.022496784,0.024025274,-0.0058610043,0.028589215,-0.039848372,-0.0224322,-0.037760153,0.06746883,0.0029116652,0.019676615,0.060622916,0.045553297,0.029299641,0.05489646,-0.0060493746,0.008234469,0.0041387626,-0.014423776,0.012453962,0.040257405,0.062129878,-0.012712298,0.030074649,-0.014983505,0.056015916,-0.042690072,-0.00045814324,-0.04129075,0.026565582,-0.012464725,0.039159477,-0.0077608526,0.031667724,-0.02723295,0.004483211,-0.038190715,-0.05760899,-0.004472447,-0.051365864,-0.028718384,0.039181,0.055757582,-0.011958817,-0.00740564,0.0030515974,-0.006135487,-0.022066224,0.015855389,-0.013960923,-0.043378968,0.047835268,-0.045165792,0.021592608,0.0076585943,-0.0057372185,-0.040257405,0.012044929,-0.0057049263,-0.011775829,-0.014940448,0.013185915,0.0036409271,-0.0007057155,0.019073829,-0.006447643,-0.044735234,-0.029428808,-0.014305372,-0.010268867,0.0031511644,-0.0058610043,0.0033341527,-0.006366913,0.017136307,-0.016705746,-0.037674043,-0.10643455,-0.02492945,-0.032550372,-0.075391136,0.027362118,-0.06049375,-0.042194925,0.027577398,-0.016167546,0.022518313,0.030914241,0.032292034,0.0187832,-0.0033072426,-0.020139467,0.004897625,-0.05218393,-0.05394923,0.018072776,0.025467653,-0.023336377,-0.01693179,-0.0041522174,0.004572014,0.0006555956,0.0017020594,-0.019310636,-0.030591322,0.037178896,0.034789287,-0.04934223,-0.015403301,0.010952382,-0.016038377,-0.04693109,0.077716164,-0.008874928,0.009601499,0.006409969,0.014423776,-0.04042963,-0.012712298,0.011495965,-0.005309349,0.0017356969,-0.014875865,0.0078469645,-0.034164973,0.017243948,0.022712065,-0.015855389,-0.012421669,-0.0077124145,-0.023465546,0.034078863,0.016156781,-0.0034471748,-0.04641442,0.010306542,-0.021635665,0.017082486,0.032421205,0.01971967,-0.03136633,0.0005617469,-0.06049375,0.030419098,0.023788467,0.01813736,0.0336483,-0.060063187,-0.01089318,0.017749855,0.0043674977,0.023723882,0.0033933548,-0.014746697,-0.02492945,-0.02830935,0.046457477,0.09515387,0.030440625,0.03913795,-0.028524632,0.012174098,0.0016590033,-0.042453263,-0.019816546,-0.05140892,-0.039590035,-0.0078362,0.035241377,-0.038212243,0.0077554705,-0.0031538554,-0.04049421,-0.01813736,-0.058039553,-0.03780321,-0.03179689,-0.021807889,0.04891167,-0.0047738394,-0.024886396,-0.043228272,0.0252739,-0.0043378966,0.034466367,0.0021057099,-0.05097836,-0.06716743,0.015241841,-0.00378355,0.027426703,-0.010080497,0.0028201712,-0.00043762435,0.0352629,-0.003939628,0.009983621,-0.017685272,-0.012658478,0.025360012,-0.003441793,0.028115598,0.055929806,0.037717097,0.0057964204,0.0067867097,-0.021807889,-0.013272027,0.01427308,0.025919741,0.076467544,0.028007958,0.00871885,-0.05033252,0.04017129,-0.0065768114,0.015532469,-0.010392654,-0.008465895,-0.0134011945,-0.01427308,-0.055714525,-0.047146372,-0.0017141689,0.012873759,0.00010335133,-0.041441444,-0.0047280923,0.018115832,0.0006135487,0.017620688,-0.0150911445,-0.0174377,-0.025962796,-0.011657425,0.010177373,-0.0077447067,0.034272615,0.0021635664,-0.01590921,0.011517493,0.0025510709,0.05872845,0.012184861,-0.008794198,-0.0140255075,0.020537734,0.009628409,-0.009590735,0.013218206,0.009606881,-0.03855669,-0.0077285604,0.015823098,0.00901486,-0.02299193,-0.026048908,-0.038750444,0.008821107,-0.008003043,0.03517679,0.017104015,-0.043852586,0.027857263,-0.004526267,-0.010537968,0.0067920913,-0.017136307,0.024240555,-0.034229558,0.019536681,0.03082813,-0.012453962,0.0044320817,0.028847553,0.028416991,-0.02130198,0.027254479,-0.02299193,0.034164973,-0.0069858436,0.0041172346,0.00011117206,-0.03356219,-0.01856792,-0.012152569,0.0020909093,0.029579505,-0.018148124,-0.036533058,0.0064153513,-0.0012324793,0.0268885,-0.012432434,-0.02658711,-0.022109281,-0.001344156,-0.0057748924,0.054207563,0.0302684,-0.015607817,-0.022044696,0.030311458,-0.007292618,-0.006426115,-0.012507781,-0.024800284,-0.034358725,0.04273313,0.0016536213,-0.008573536,0.021592608,0.0055919043,0.06307711,0.015026561,0.011635897,0.009057916,0.012497018,0.014671348,0.021323508,-0.034466367,0.00716345,0.028890608,0.026436413,0.03603791,0.02691003,-0.020882184,-0.0297302,-0.0213558,0.026199605,0.041893534,0.02374541,0.034681648,0.019267581,0.026802389,0.014520652,0.026070436,-0.034681648,-0.043744944,-0.022410672,0.037006672,-0.029235056,-0.003632854,0.012087985,-0.03082813,-0.0038319882,0.016759567,0.006969698,0.01792208,-0.032270506,0.012497018,-0.012647714,-0.032098282,-0.012766118,0.0005516556,0.0012775536,-0.01601685,0.006372295,-0.00047765303,-0.06458407,0.03649,0.016877972,0.022755122,-0.008126829,-0.011173044,0.0040418864,0.0065283733,0.012507781,-0.0055488483,0.04010671,0.027857263,-0.047103316,0.019009246,-0.007184978,0.009612262,-0.028051015,0.0076908865,0.056274254,-0.001371066,0.023939162,-0.015919974,-0.027685039,-0.0007999006,-0.0016442029,-0.0049245353,0.01065099,0.002693694,0.025360012,0.029364225,0.004214111,0.03061285,0.01279841,0.0018473736,-0.0085573895,0.031538554,0.02331485,0.040601853,0.021883236,-0.0030973444,0.024025274,-0.006130105,0.002369428,-0.04563941,-0.029385753,0.031538554,0.024585003,0.029837841,-0.033755943,0.010015913,0.039396282,-0.011420617,0.0325719,0.021097463,0.03625319,0.029170472,0.018158888,0.0039503924,0.05097836,-0.024348196,-0.008390548,0.040042125,0.0341865,0.024262084,-0.013713351,-0.03050521,-0.020688431,0.0352629,-0.0013596292,-0.03259343,0.000011405227,-0.0118942335,-0.009542297,0.04105394,0.0040741786,0.005764128,0.014918921,0.020440858,-0.030548265,-0.026436413,-0.013594947,0.00882649,-0.0039988304,0.016264422,-0.006953552,0.011280685,0.0076047746,-0.006404587,-0.04174284,0.045165792,-0.018847784,-0.000033427303,0.05304505,0.0195905,0.007367966,-0.0004628525,0.022346089,0.011205336,0.0032749507,0.0060547567,-0.025553765,0.027878791,-0.02114052,0.014746697,-0.009520768,-0.004442846,0.024089858,-0.0148651,-0.017523812,0.030871186,0.007427168,-0.04805055,0.028761439,0.002666784,0.0016011468,0.041678254,-0.029880896,0.0041656727,-0.009843688,0.01220639,0.017071722,-0.010037441,-0.0050698495,-0.03397122,-0.024003746,0.0007696269,-0.049686678,-0.018718617,-0.020150231,0.010554113,-0.0056403424,0.008207559,-0.023034986,-0.02766351,0.033476077,0.06411046,0.01607067,-0.016221367,-0.0195905,-0.0008469932,0.029450336,-0.053346444,-0.041850477,-0.014154675,-0.024003746,-0.049643625,0.015274133,-0.03463859,-0.0076478305,-0.023034986,0.035908744,-0.030010065,-0.022733593,-0.0071419217,-0.009789869,0.0060439925,-0.041161582,0.027921846,-0.026823917,-0.050806135,-0.013702587,-0.006205453,0.0066360133,-0.05373395,0.011399088,0.052872825,0.010688663,-0.0025012873,-0.045467187,0.016404355,0.019741198,-0.00925705,-0.034358725,0.0091225,0.010053587,-0.006340003,-0.0066629234,0.03265801,-0.03922406,0.01226021,0.01628595,-0.00042786947,0.0070988657,0.0033018608,0.0348754,0.0030193054,0.058599282,-0.030526739,-0.018933898,0.021646429,0.018158888,0.022733593,-0.02637183,0.0025604893,0.014133148,-0.015898446,0.000017659708,0.027577398,-0.03638236,0.007174214,0.0313448,-0.022948874,-0.016135253,0.020343982,-0.0050563947,-0.0069374056,0.016458174,-0.0003141746,-0.012001873,-0.021861708,0.013239735,0.005330877,-0.004897625,-0.018417224,0.017663743,-0.0004631889,0.012970635,0.02070996,0.028007958,-0.012421669,0.06303405,-0.012087985,-0.014499124,0.014369956,0.027039198,-0.00064718624,-0.03356219,0.00089408574,-0.025446124,-0.0028982102,-0.022410672,0.008229087,0.031689253,0.0029493393,0.020559262,0.056747872,-0.014111619,0.026113493,0.018632505,-0.0354136,0.0041683638,0.025316956,0.008772669,-0.0039719203,-0.0034956129,0.04520885,0.023185682,0.007179596,-0.007841582,0.009208612,0.0224322,-0.0015311807,-0.010581024,-0.022690536,0.012195625,-0.0043217507,0.0089126015,0.0049702823,0.005470809,0.015209549,-0.004526267,-0.033626772,0.023185682,0.029536448,0.026802389,0.033497605,-0.035241377,-0.0029331932,0.02309957,-0.0060439925,0.029041303,-0.008874928,0.04869639,-0.0034148828,0.010311923,0.009558443,0.047103316,-0.016856443,-0.0006529046,0.033260796,-0.023379434,-0.0025725989,0.004547795,0.0059363525,-0.008288289,0.03782474,-0.030483682,0.006038611,0.025037091,0.033820525,-0.023379434,-0.0096607,-0.03287329,0.022905817,0.025769044,0.014240787,-0.011711245,-0.0055919043,0.003611326,0.030376041,-0.006237745,-0.042173397,-0.008939512,0.0104249455,-0.0018783201,-0.013788699,-0.003654382,0.024864867,0.022066224,-0.018837022,0.01285223,-0.005260911,0.002564526,-0.001077074,-0.026953086,-0.030978827,0.011948053,-0.013153623,0.044261616,-0.04650053,0.01395016,0.024563475,0.024800284,-0.0045935423,0.044950515,-0.0009701066,-0.008347491,-0.012787646,-0.01776062,-0.0139824515,-0.020214815,0.003724348,0.005083305,-0.027060727,-0.03211981,0.015155729,-0.0068136198,0.0187832,0.036016382,-0.032744125,-0.024068331,0.03394969,-0.014531416,0.022367617,0.001031327,0.0146498205,-0.0067113615,0.091364935,0.0140685635,-0.00933778,0.00541968,-0.0070558097,-0.0028524632,-0.02200164,0.012109513,-0.0104249455,-0.008643501,-0.051925592,-0.015919974,0.028589215,-0.0037216572,0.017007139,-0.019041536,-0.005303967,-0.017276239,-0.020430095,0.006103195,-0.0030004682,-0.017114779,-0.03672681,0.014122384,0.013347375,-0.0009929801,0.011775829,-0.0017235874,-0.01454218,-0.0056403424,-0.013325847,-0.0035951799,-0.028632272,-0.032205924,0.014832809,-0.007884638,-0.013304318,-0.00694817,0.02908436,0.023465546,-0.0033153156,0.013713351,-0.045467187,-0.001114748,-0.046758868,-0.00017407426,0.029450336,0.009865217,-0.0077177966,-0.019741198,0.029773258,0.020989824,-0.0148651,0.011086932,0.009692993,0.020300927,-0.035112206,-0.0010864924,-0.008810344,-0.025123203,-0.023013458,0.009736049,0.0059578805,0.014639056,-0.016038377,0.011388324,-0.0048142043,-0.0015271442,0.026651694,-0.0069212597,0.014423776,0.00007219456,0.0045693233,0.031064939,0.003939628,0.0060009365,0.051925592,0.039181,-0.005645724,0.006151633,0.033476077,0.023487074,0.0016455483,-0.01607067,-0.00224026,-0.014143911,0.010085879,0.0037216572,0.008605828,0.011549785,-0.013788699,-0.001813736,-0.025639877,-0.015306425,-0.017168598,0.04477829,-0.013917867,-0.025769044,0.0040607234,0.027878791,0.015037324,-0.0041737454,-0.04010671,-0.02047315,0.013681059,-0.007045046,0.009348544,0.010010531,-0.045079682,-0.015123437,0.008013807,0.0068136198,-0.037760153,0.015209549,0.017556103,0.021334272,-0.043723416,0.00882649,0.0041549085,-0.02439125,-0.005543466,-0.0038239153,0.03573652,-0.016845679,0.020785308,0.022259977,-0.024864867,-0.040601853,0.0040472685,-0.026027381,0.00038044056,0.03584416,0.011539021,-0.02658711,0.01290605,0.011840413,-0.01607067,-0.0024165206,-0.034552477,-0.011818885,-0.010527204,0.0028713,0.009117118,0.00861121,0.010850124,0.0028766822,0.029105889,-0.016135253,0.009606881,0.016102962,0.012174098,-0.016242893,-0.03573652,0.023766939,-0.03179689,-0.0087780515,-0.00025228152,0.008616592,-0.009057916,-0.023250265,-0.008083773,-0.010274249,0.011678953,-0.010263485,0.047878325,-0.019030772,0.053131163,0.0010790922,-0.010688663,0.01982731,0.020774543,0.007884638,0.007943841,-0.009908273,-0.011205336,-0.03638236,-0.019461334,0.00020249798,-0.020774543,-0.022195393,-0.0011618405,-0.018072776,0.008261379,0.0070988657,-0.008638119,-0.009655318,0.012109513,-0.0052743657,-0.0027542415,-0.0034498658,-0.0029035923,-0.019095358,0.031129522,0.005352405,0.044950515,0.046888035,0.026716277,-0.023400962,0.02353013,0.009779105,-0.04693109,0.028718384,-0.013035218,0.020666903,0.01075863,0.0015930737,0.019159941,-0.027297534,-0.029041303,-0.018427989,-0.0018070085,-0.007863111,0.016511993,-0.021452677,0.010726338,-0.0088695455,0.007454078,0.007158068,-0.008751142,-0.017696036,-0.016027614,0.010586406,0.02833088,0.052872825,-0.007981515,-0.010134317,-0.017620688,0.022733593,-0.0006206126,0.054121453,0.011495965,0.037092786,0.03192606,0.004644671,0.0029385753,0.026651694,0.0040203584,-0.028675327,-0.0088534,0.01808354,0.025424596,0.002849772,0.00041744183,-0.016372062,-0.012163334,-0.014047036,0.003452557,-0.0030031593,-0.012497018,0.03629625,-0.022109281,0.014197731,0.011183809,0.022948874,0.0039611566,-0.052097816,0.014520652,-0.019795017,-0.0049971924,0.01945057,-0.004531649,0.0038319882,0.00450743,-0.045596354,-0.01977349,-0.0058610043,-0.012077222,-0.026522525,-0.00046621627,0.003565579,-0.028416991,-0.029601032,0.023379434,0.005398152,-0.0038239153,0.013648767,-0.00023714463,-0.001114748,0.0029466483,-0.028503103,0.0069212597,-0.030225346,0.0011867323,-0.017556103,-0.02538154,0.02087142,0.027405174,0.022539841,0.019536681,0.016081434,-0.0113129765,0.011065404,0.023121098,0.012809174,-0.003713584,0.015435593,0.013304318,0.017136307,0.024305139,-0.002849772,0.023874579,0.04139839,0.035908744,-0.02462806,0.0014719786,-0.009074062,0.020892948,-0.012884522,-0.047017206,-0.009875981,0.021495732,-0.0038669712,0.0014033581,-0.018976953,0.01454218,0.008837254,-0.05132281,-0.03530596,0.017889788,0.007922313,0.045251906,-0.014552944,0.001077074,0.020387039,-0.005538084,-0.02114052,-0.036446944,-0.03082813,-0.0074917525,-0.023659298,0.027211422,-0.0119803455,-0.003678601,-0.0058663865,0.015231077,-0.014348428,0.007195742,-0.0051102145,-0.021129755,-0.002529543,0.043508135,-0.023594715,-0.0059847906,-0.0043163686,-0.01891237,-0.03388511,-0.0658327,0.011657425,0.012723062,0.0393317,0.010414181,0.022518313,-0.051365864,-0.019870367,-0.010591787,-0.018320348,-0.017179362,-0.002199895,-0.0065929573,-0.038255297,-0.014671348,0.014843573,-0.034078863,0.018395696,0.00029046013,0.021054408,-0.03657611,0.007018136,0.020021062,0.017028667,0.025639877,0.0174377,-0.0352629,0.013508835,-0.024434308,0.007228034,-0.034939982,0.016888734,0.017114779,-0.011248392,0.078146726,0.0123355575,-0.01776062,-0.019063065,0.0058986787,0.006544519,0.043378968,0.012087985,-0.009956711,-0.04008518,0.018610977,-0.011689717,-0.011086932,0.017997429,-0.013939396,-0.011345268,0.013272027,0.020645374,-0.019547446,-0.05433673,0.02951492,-0.028739912,0.010134317,0.008616592,-0.043378968,-0.004671581,-0.011722009,0.00074002583,-0.014509888,0.0014894701,-0.014682112,0.019525917,0.013724115,0.018750908,-0.021915529,0.016673455,0.014014743,0.0049891197,0.0224322,-0.054681182,-0.037609458,0.068028554,0.0019429042,-0.014176204,-0.008595063,0.015295661,0.0025524164,-0.0028766822,0.012195625,0.004461683,0.033605244,-0.024649587,0.027039198,-0.010338834,-0.028051015,0.003600562,-0.016964084,-0.018018955,-0.0662202,0.033691358,-0.03410039,0.014951212,0.01389634,0.020053355,0.054422844,0.0068405294,-0.014552944,0.079998136,0.02777115,0.00743255,0.031409387,0.013907104,-0.011851178,-0.009811397,0.020860655,-0.0059148245,0.0030246873,-0.0077070324,-0.0050779227,-0.016468938,0.04443384,0.032507315,-0.04279771,-0.029923953,-0.0075240443,-0.015392537,-0.021172812,-0.057522878,0.030806603,-0.018277293,-0.020225579,0.017932843,-0.016307479,-0.011657425,0.01633977,0.008589681,0.0014598691,0.008643501,0.003619399,-0.013541127,0.023573186,-0.0010703465,-0.0013313737,-0.012572366,-0.017243948,-0.009375454,-0.0042060376,0.010548731,0.016102962,0.005414298,0.03205523,0.012658478,0.004760384,0.022259977,0.022033932,0.023616241,-0.0057748924,0.012464725,0.0047227102,-0.001441032,0.023357905,0.0040930156,-0.01835264,0.02548918,-0.018148124,-0.009009478,0.01977349,-0.0077285604,-0.03259343,-0.040365044,-0.020720722,0.022173865,0.017426936,-0.016651927,-0.008584299,-0.025661405,0.03726501,0.04934223,0.035908744,-0.034789287,-0.031452443,0.010850124,-0.024369722,-0.0032076756,0.0263503,-0.0313448,0.0010575642,-0.03625319,0.026027381,-0.015252605,0.025876684,0.055714525,0.024262084,0.0021824033,0.015521705,0.008831872,-0.0030623614,-0.01736235,-0.039719205,-0.035349015,-0.00077500887,-0.040278934,-0.011969581,0.0034687028,-0.011495965,0.043099105,0.02712531,0.029428808,0.04684498,0.014714404,-0.0077823806,-0.006318475,-0.01617831,-0.0006128759,0.013562655]},{"id":"enum-APIErrorCode","type":"enum","source":"main","text":"Enum: APIErrorCode\nMembers: Unauthorized=UNAUTHORIZED, Forbidden=FORBIDDEN, MissingAuthorization=MISSING_AUTHORIZATION, InvalidAuthToken=INVALID_AUTH_TOKEN, InvalidToken=INVALID_TOKEN, TwoFactorRequired=TWO_FACTOR_REQUIRED, SudoModeRequired=SUDO_MODE_REQUIRED, NotFound=NOT_FOUND, UnknownUser=UNKNOWN_USER, UnknownGuild=UNKNOWN_GUILD, UnknownChannel=UNKNOWN_CHANNEL, UnknownMessage=UNKNOWN_MESSAGE, UnknownRole=UNKNOWN_ROLE, UnknownEmoji=UNKNOWN_EMOJI, UnknownSticker=UNKNOWN_STICKER, UnknownWebhook=UNKNOWN_WEBHOOK, UnknownInvite=UNKNOWN_INVITE, BadRequest=BAD_REQUEST, ValidationError=VALIDATION_ERROR, InvalidRequest=INVALID_REQUEST, InvalidFormBody=INVALID_FORM_BODY, RateLimited=RATE_LIMITED, SlowmodeRateLimited=SLOWMODE_RATE_LIMITED, InternalServerError=INTERNAL_SERVER_ERROR, BadGateway=BAD_GATEWAY, GatewayTimeout=GATEWAY_TIMEOUT, ServiceUnavailable=SERVICE_UNAVAILABLE, BotsCannotSendFriendRequests=BOTS_CANNOT_SEND_FRIEND_REQUESTS, BotAlreadyInGuild=BOT_ALREADY_IN_GUILD, BotApplicationNotFound=BOT_APPLICATION_NOT_FOUND, BotIsPrivate=BOT_IS_PRIVATE, NotABotApplication=NOT_A_BOT_APPLICATION, CannotSendEmptyMessage=CANNOT_SEND_EMPTY_MESSAGE, FileSizeTooLarge=FILE_SIZE_TOO_LARGE, MaxEmojis=MAX_EMOJIS, MaxStickers=MAX_STICKERS, MaxWebhooks=MAX_WEBHOOKS","meta":{"url":"/docs/typedefs/APIErrorCode"},"embedding":[0.008881612,-0.0020769953,0.017801896,0.02629679,0.002170452,-0.008133958,-0.03464989,0.02451789,0.021372586,0.036970194,0.022158913,-0.021269463,-0.030395996,-0.0039445185,0.015352685,-0.0008515842,-0.046302974,0.026245227,-0.0476436,0.027792098,0.03599051,0.030988963,0.0051272297,0.05076312,-0.0019351988,0.037537377,0.022919457,-0.0028182038,0.021037431,-0.009635711,-0.0036158087,-0.027766317,0.00851423,-0.013522222,-0.01679643,-0.011820665,-0.021282353,0.02563937,0.03472723,-0.032767862,0.0031259665,-0.029751467,0.014721046,0.024917498,-0.079354435,-0.011601525,-0.02758585,-0.028101472,-0.0136382375,-0.0023186938,-0.05640919,0.049602967,-0.022133132,0.09255439,0.017995255,-0.0024604902,-0.020573372,-0.00906208,-0.036867067,0.018936267,0.013406207,-0.024762811,-0.012768123,-0.010673403,0.023512425,-0.006332499,-0.014901514,-0.011549963,0.020650715,0.089357525,-0.010125553,0.015584716,0.02516242,-0.00015811106,0.02075384,0.009706609,-0.0061391406,0.046328757,-0.012548983,-0.059038874,-0.014953077,0.021282353,-0.0737857,-0.064916976,0.00062317913,0.008668917,-0.075641945,-0.056667004,0.02343508,-0.029854592,-0.05372795,-0.00091039744,-0.03975456,0.0004914535,0.0015710399,-0.049577184,0.012723005,-0.01657729,-0.002974502,0.057285752,0.04313189,-0.024144063,-0.07120758,-0.017518302,-0.004792074,-0.0112405885,-0.034598324,-0.00839177,0.010563833,-0.011762657,-0.054088887,0.029854592,-0.06424667,-0.011859337,-0.010989223,-0.037047535,-0.0033708876,0.010879653,0.028127253,-0.0026747962,-0.014553469,0.002848819,0.061771676,-0.046560787,-0.013290191,0.045555323,-0.023099925,0.028849125,-0.01987728,0.019928843,0.0072316173,-0.003648035,0.060224805,-0.024788592,-0.030009279,0.00047252045,-0.016293697,-0.01084098,-0.051459208,-0.02317727,-0.0050015463,-0.03650613,-0.00093376165,0.041198306,-0.04839125,-0.013973393,-0.02254563,-0.025922963,-0.04730844,-0.005678302,-0.019297203,0.011788438,0.0027489169,-0.0140636265,-0.0016459663,-0.059966993,0.018291738,0.04532329,-0.024582343,-0.0039993036,-0.029854592,-0.044910792,0.023499534,-0.0064549595,-0.012942146,-0.022571411,0.053418577,-0.019825717,-0.04993812,-0.014476125,0.032071773,-0.0038865109,-0.04480767,-0.030550683,-0.016693305,-0.0327163,0.018678455,-0.009474579,-0.02496906,-0.042074863,0.0029664454,-0.010119108,0.005803985,-0.052670922,-0.03292255,0.004150768,0.039857686,-0.008385325,0.020354232,-0.015855419,0.011382385,0.015533153,0.016835103,-0.004643833,0.035423324,-0.06434979,0.017711662,-0.035500668,0.03645457,-0.0015976267,0.03338661,-0.039857686,0.08255129,-0.003867175,-0.0392905,-0.01702846,-0.015997214,-0.030189747,-0.02520109,0.009036299,0.055481073,-0.03377333,0.0049274256,0.0012262168,-0.028565533,0.0023767012,-0.026219446,-0.02253274,-0.028101472,-0.008088841,-0.06563885,0.059760746,-0.025600698,0.007895483,-0.01986439,0.013129059,0.027508505,-0.033876453,-0.003918737,0.013767143,-0.045142822,0.049963903,-0.024762811,-0.051691238,0.0016322702,-0.033309266,0.075796634,0.057337314,0.019039392,0.02936475,-0.0014671095,-0.0033870009,0.002589396,0.039238937,-0.021372586,-0.04047643,0.02451789,-0.022919457,-0.01746674,0.0003645618,0.0733732,0.0525678,-0.0043119,-0.006590311,0.0158812,0.0013929887,0.033051457,0.00174184,0.017737443,-0.004959652,0.015971433,0.03642879,-0.02828194,-0.012826131,-0.03583582,-0.0024621014,0.015765183,0.025278434,-0.017299162,0.022146022,0.0120011335,0.005378596,0.03593895,-0.031117868,-0.028694438,-0.0011069789,0.0014638869,0.016886665,-0.007663452,-0.012993708,0.0010441373,0.030988963,0.0070898207,0.047231097,0.014179641,0.01635815,0.038800657,-0.030550683,0.0027311924,0.003757605,-0.008656027,-0.0014308548,-0.008868721,0.0074572023,0.010776528,0.009532587,0.019374548,0.007160719,0.05347014,0.0062744915,0.003503016,-0.03557801,-0.046973284,-0.029545218,-0.008559347,0.0029696682,0.013341754,-0.016061667,-0.001077975,-0.033025675,0.018730018,-0.007837474,-0.05640919,-0.010666958,-0.016951118,-0.035036605,0.020251106,-0.011350159,0.08863565,-0.015159326,-0.009274775,-0.046535008,-0.0008475559,-0.031272557,0.024028048,-0.044446733,0.022803443,0.06615447,0.023744455,0.0013390094,-0.012316952,-0.06202949,0.00248466,0.019103844,0.00535926,0.0033289932,-0.010364029,0.07223883,0.03426317,0.009680828,0.014115189,-0.010299576,0.0075474367,0.0069866963,0.028488189,-0.03890378,-0.028153034,0.029519437,-0.0059908987,0.032458488,-0.027534286,0.039986588,-0.018923376,-0.04797875,-0.026786633,-0.0223136,0.023770235,0.003831726,-0.010538052,0.07089821,-0.015752293,0.0075925537,0.018536659,-0.013999173,0.024582343,0.013844486,-0.038207687,-0.061565425,0.019052282,-0.035500668,-0.031453025,-0.008069505,-0.04797875,-0.027302256,0.016306588,0.037021756,-0.023306174,0.04998968,-0.006277714,0.0039509637,0.017647209,0.0150948735,0.016667524,0.005088558,0.04638032,0.0061198045,-0.013651128,0.010344693,-0.059606057,0.0219011,0.023473753,-0.0024475995,-0.0050273277,-0.04442095,-0.013199957,0.0004733261,0.017144475,0.035810042,0.013071052,-0.008295091,0.02959678,-0.013199957,0.0044246926,0.032097552,0.010847426,0.035474885,0.035964727,0.011118128,0.042951424,0.023164378,0.042590488,-0.0032210345,-0.017376507,-0.004885531,0.07492007,-0.04351861,0.05878106,-0.013303082,0.0154687,0.043879546,0.0023831467,0.0027553623,-0.051459208,0.0041894396,-0.007205836,-0.0023428635,0.008817159,-0.04844281,0.015507372,-0.06697947,-0.046225633,-0.00479852,0.024350312,-0.011859337,0.020599153,-0.035913166,-0.0037866088,-0.00995153,0.010737856,0.017208928,-0.05589357,-0.000052972242,0.0010481656,0.0043086773,0.014695265,0.0057201963,-0.0010046598,-0.06837165,0.0503764,0.03199443,-0.02034134,-0.059606057,-0.004495591,-0.0046244967,-0.051562335,-0.07620913,0.033309266,0.023538206,-0.044498295,0.018008145,-0.038645968,0.02388625,0.024479218,-0.00052649976,0.015262451,-0.02650304,-0.065484166,-0.014347219,-0.007972826,-0.0024717695,-0.019129626,0.036403008,0.008952511,0.009307001,-0.006806228,-0.020689387,0.06636073,-0.017995255,0.06125605,0.064143546,-0.00929411,0.016731977,-0.03905847,-0.06692791,0.009074971,0.06672166,0.0050724447,-0.014089407,-0.042049084,0.028436627,-0.026606165,-0.00348368,0.026335461,-0.0146694835,-0.0035964728,0.007489429,-0.007798803,-0.04754047,-0.0019787045,-0.025961636,-0.02650304,-0.069970086,-0.01503042,0.027766317,0.0029132718,0.022004226,0.0251882,-0.024427656,-0.020070639,-0.010782973,-0.02143704,-0.01269078,0.015069092,-0.018098379,-0.017170258,0.009970866,-0.031710837,0.0052045733,-0.036970194,-0.00928122,-0.010989223,0.018381972,0.019593686,0.009990202,-0.004924203,-0.01635815,-0.015352685,-0.04684438,-0.036918633,0.013225739,0.029570999,0.0043699075,0.03869753,0.014166751,0.007244508,0.008900948,-0.016061667,0.020019077,-0.004166881,-0.056151383,0.010441372,-0.021192119,0.030163966,0.03294833,-0.00939079,-0.01392183,-0.035681136,0.03727957,0.000008383915,0.005275471,-0.022442507,-0.02142415,0.005475275,-0.02962256,0.008701144,0.005994121,0.007869701,-0.038413938,-0.02320305,0.013676909,0.02146282,-0.0055751773,0.048236564,-0.0036544804,-0.03593895,0.0050369953,-0.00740564,0.06672166,-0.009848406,-0.0023879805,-0.01611323,0.028178815,-0.0066193147,0.058007624,0.021411259,0.0038897335,0.031220993,0.02232649,0.0040830923,0.011008558,-0.014231204,-0.02451789,0.03660926,0.042745173,-0.054192014,-0.026000306,-0.018497987,0.010557388,-0.026709288,0.024337422,0.013051716,0.01633237,0.014746827,-0.018240176,0.020624934,0.029983496,-0.0055397283,-0.013625347,-0.00939079,0.030911619,0.01989017,-0.013225739,-0.031040525,0.006980251,0.0040992056,0.006200371,0.03310302,-0.0011778771,0.024762811,0.02209446,0.016847992,-0.021256572,-0.0047534024,-0.008540012,-0.0183433,-0.0021994559,-0.032535832,-0.0010167448,0.023344846,0.013419097,-0.008488449,-0.0063743936,-0.0016548287,-0.007244508,-0.012297616,0.0370991,-0.008179075,-0.038156126,0.014888624,-0.015674949,0.004460142,-0.012961482,-0.009081416,-0.017041352,-0.006387284,0.019361656,-0.023048364,-0.002524943,-0.0026167885,-0.01038981,0.012613436,-0.04241002,0.0072767343,-0.046277195,0.009848406,-0.020702276,-0.030782713,-0.036170978,-0.033747546,-0.011872227,0.026683507,0.0012592488,0.0074185305,-0.020508919,-0.0003812793,-0.021746414,-0.018730018,0.03444364,-0.04436939,-0.010705629,-0.008256419,0.005713751,0.015958542,0.009745281,-0.005697638,0.024414765,-0.021088995,-0.0037801636,-0.030395996,0.010364029,-0.0066837673,0.0090878615,-0.013754252,0.013315973,0.01258121,0.0017337835,-0.03336083,-0.048468594,0.0041088737,-0.0036351446,-0.013180622,-0.019774156,-0.033283487,0.017905021,0.023267504,-0.0015799021,0.056976378,0.009957976,0.027482724,-0.0052948073,0.0070833755,0.027972566,-0.012716561,-0.021140557,-0.008385325,0.035526447,-0.0060843555,0.020392902,-0.00783103,-0.07899349,-0.003222646,0.013199957,-0.022158913,-0.011176135,-0.03289677,-0.018987829,0.027740536,0.033850674,0.008249973,0.013625347,-0.03181396,0.02054759,-0.03954831,0.02228782,-0.02562648,0.0012205772,0.008262864,-0.0020447688,0.011917344,-0.030318651,0.014695265,-0.0034353405,-0.022880785,0.0073927497,-0.015700731,-0.012445859,-0.0076827877,0.018678455,-0.04063112,-0.015623387,-0.019168297,0.011137464,-0.018652674,0.00029164946,-0.0009394013,0.0014928906,0.04663813,0.028204596,-0.013960502,-0.00056960265,0.006094023,-0.016229244,-0.003722156,-0.021037431,-0.040734243,-0.010576724,-0.025768276,-0.035964727,-0.009977312,0.0048243008,0.015494482,0.009983757,-0.03694441,-0.01037692,0.018291738,-0.0309374,0.032071773,0.028900689,-0.017363615,-0.0011166468,-0.009397236,0.053779513,-0.01830463,0.051175617,-0.0013100056,-0.013341754,-0.048623282,-0.019142516,-0.009455243,0.01392183,-0.013444878,-0.0054462715,-0.027766317,0.00950036,0.035964727,-0.03818191,-0.016293697,-0.051407646,0.034366295,-0.025033513,-0.005259358,-0.010563833,0.008759151,0.026026089,-0.012658553,0.0013438433,0.01942611,0.009081416,-0.0045342627,-0.036970194,-0.030834276,0.0004652695,0.007489429,-0.019542124,-0.02936475,-0.009481024,-0.008540012,-0.09693719,0.0140636265,0.05084046,0.005559064,0.020676496,0.007972826,0.01921986,0.02918428,-0.032974113,-0.029029595,0.02758585,-0.018046817,-0.0016677192,-0.023937814,0.03470145,-0.019812826,0.0040830923,0.01269078,-0.04246158,-0.015236669,0.0024733806,-0.00022075124,-0.0096486015,0.0366866,0.0154687,0.044240482,-0.025510464,0.0035868047,0.015043311,-0.041688148,0.021707743,0.008636691,-0.007006032,-0.013908939,0.012864802,-0.025536247,-0.008817159,-0.019516343,-0.0022381276,-0.058265436,0.024388984,-0.021321025,0.017711662,0.021359697,-0.03227802,-0.023834689,-0.013431988,0.0025233317,0.009713055,-0.003103408,-0.039161593,0.009319892,-0.010357584,-0.024260078,-0.024453437,0.025716715,-0.0503764,0.026477259,-0.018820252,-0.023473753,0.01249742,-0.018149942,0.013651128,-0.02453078,0.032742083,-0.014411672,-0.0013720415,-0.033489734,-0.003029287,0.041920178,-0.0046696137,-0.014050736,0.017556975,-0.010331803,-0.02544601,0.007424976,0.014514797,-0.020947197,0.02851397,0.01237496,0.0048533045,-0.005227132,0.021565946,-0.00817263,-0.010989223,-0.004502036,0.0019271423,0.017350726,-0.005269026,-0.023087034,0.027302256,-0.0018997497,0.011343714,0.00040806754,0.010808754,0.0049983235,0.00036395757,-0.0021672293,0.02763741,-0.022004226,0.010602505,-0.004695395,-0.02143704,-0.014695265,-0.00696736,-0.02561359,-0.0019625914,0.011736876,0.014347219,-0.010370474,0.012632771,0.041275647,0.022429615,0.009371454,-0.03227802,0.0064936313,0.020031966,-0.030524902,0.028153034,-0.024208516,-0.008920284,0.013367535,0.015623387,0.028797563,-0.025922963,0.027663192,0.04395689,0.02758585,0.009055635,0.016177682,-0.034108482,-0.028797563,0.0029019925,-0.03199443,-0.0247757,0.009455243,0.025523355,-0.0016121286,-0.029570999,0.0070447037,-0.010911879,-0.0065838653,-0.019374548,-0.0010111051,0.03204599,0.013870268,-0.017866349,0.009120088,0.024569452,-0.027147569,-0.01315484,-0.036093634,-0.01393472,-0.0008467502,-0.002848819,0.006935134,0.013754252,0.02939053,-0.051974833,0.06450448,0.017763223,0.043931108,0.0086238,-0.01269078,-0.020650715,-0.01414097,-0.01481128,-0.00067594997,0.0059006647,0.004985433,-0.018949158,-0.029854592,0.0059296684,-0.004560044,-0.005559064,0.030112403,0.015726512,-0.0031630269,-0.0063486123,0.050118588,0.0011674034,-0.0020222103,-0.016538618,-0.016976899,0.03232958,0.0020334895,0.0026570715,-0.0010932826,-0.0158812,-0.0092683295,0.032406926,0.047901407,0.041456115,0.004105651,-0.013805815,-0.03957409,0.03289677,0.02825616,-0.024479218,-0.00046244968,0.058471687,0.012729451,0.009957976,-0.008198411,-0.026000306,0.018046817,-0.040295962,-0.0017708439,0.0065194126,0.03070537,-0.011801329,0.021488603,0.018536659,0.008133958,-0.0014727492,-0.014037846,-0.0041539907,-0.04413736,0.0040927604,0.0146694835,0.008926729,0.00403153,0.019477671,0.039213154,0.0018675233,0.03287099,-0.041662365,0.012323398,-0.027044443,-0.013193512,-0.008224192,-0.012130039,-0.02962256,0.004411802,0.015339795,0.0073411874,0.02453078,0.0022381276,-0.0064195106,0.004170104,0.02054759,0.015365575,-0.021346806,-0.0055945134,-0.01722182,0.019593686,0.030782713,0.03287099,0.028462408,0.0063937292,-0.022004226,0.020212434,0.0062648235,-0.00029003812,0.046483442,0.0059747854,0.02758585,0.02139837,0.0061681443,0.01269078,-0.0038639524,0.016822211,0.0018336854,0.008759151,0.0023331956,0.014102298,-0.020470247,-0.009365009,-0.0111568,0.026129212,0.005433381,-0.00024935222,0.009352119,0.01612612,-0.005143343,-0.017595647,-0.029493654,-0.0072573987,-0.021346806,0.0024024826,-0.044060014,-0.010299576,-0.0007001198,-0.0015323681,0.017879238,0.0039477414,0.028024128,-0.034417856,0.006496854,0.019993294,0.022648755,0.012897029,0.007218727,-0.035706915,0.020818293,-0.0005285139,-0.006377616,-0.0031324117,0.019915951,0.008224192,-0.032149114,-0.034314733,-0.01393472,-0.017582756,0.017350726,0.0074829836,0.004975765,0.013522222,0.03934206,0.004295787,0.006206816,0.0015645946,0.043106113,0.0030631248,0.014875733,0.016757758,-0.022158913,-0.019026501,-0.0081919655,-0.014888624,0.007747241,-0.014231204,0.0090878615,-0.01768588,-0.01613901,-0.025935855,0.039677218,0.00016939032,-0.00050434406,-0.011807774,0.034753013,-0.01326441,0.012826131,0.004940316,-0.041224085,-0.004050866,-0.011968907,0.024621014,0.026219446,-0.037898317,0.0010965052,0.011975352,-0.028436627,0.008430442,0.0067288848,0.00082096906,-0.0029422757,-0.007959935,0.008900948,-0.020624934,0.07471382,-0.018833142,-0.015197998,0.060173243,-0.012432967,0.013380426,0.014772609,0.03756316,0.02784366,0.0068642357,0.018858923,0.015597606,0.04313189,0.0041346545,-0.011388831,0.023834689,-0.027044443,0.03913581,0.0033289932,0.005752423,-0.0064581824,0.024221405,0.022751879,-0.018691346,0.001599238,-0.035758477,0.042306896,-0.027946785,0.062235735,0.041327212,-0.013792925,-0.011820665,-0.011253479,0.015056201,-0.028307721,-0.002379924,-0.014772609,-0.008888057,-0.018381972,-0.016267916,0.025368668,-0.00929411,0.031272557,0.018149942,-0.031917084,0.027817879,0.019078063,-0.055120133,-0.026554601,0.0031162985,-0.006651541,0.018459316,0.0008975069,-0.009680828,-0.017118694,-0.014862843,0.010654068,0.048339687,0.014231204,0.005285139,-0.0071671642,0.009906413,-0.0068513453,0.006203593,0.017092913,0.017505413,0.01635815,0.000030413721,-0.025587808,0.039986588,0.023718674,-0.0026490148,-0.00016435493,-0.010525161,-0.020225326,0.00215595,-0.003925183,-0.0009394013,-0.009410126,0.053779513,0.007663452,-0.039625652,-0.0016596626,0.020844074,-0.019761264,0.030860057,0.03905847,0.008307981,-0.006922243,-0.0262839,0.0016548287,0.005423713,-0.01945189,0.019116735,-0.025974525,-0.0009821013,0.0071929456,0.021707743,0.000012242278,-0.008791378,-0.024028048,-0.0055268374,-0.020160872,-0.020199545,-0.009139423,0.0040895375,-0.004447251,0.006960915,-0.023486642,0.014759718,0.022893677,0.015197998,0.035758477,0.0031581928,0.026000306,-0.011053675,0.025239762,-0.037228003,0.009700164,0.0071929456,0.036531914,0.018188613,0.02784366,0.0035932502,-0.020263998,0.022146022,-0.0005035384,0.017054241,0.020135092,0.0028729888,-0.03593895,0.038568627,0.016912445,-0.018265957,0.011247034,0.01258121,0.020715168,-0.0029068266,-0.011092347,-0.012213828,-0.008423996,0.009416571,0.0092232125,-0.0014340774,-0.02892647,-0.03862019,-0.0014066849,-0.00092973333,-0.021166338,-0.007650561,-0.025600698,0.016087448,-0.00479852,-0.00328871,0.008920284,-0.026425697,0.03382489,-0.01769877,-0.0020914972,0.022390943,0.011678869,-0.0062648235,-0.030499121,0.011756212,-0.005275471,0.016628852,-0.012465194,0.0027489169,0.01392183,0.03310302,0.0056944154,-0.030550683,-0.019954624,0.00657742,0.019310094,-0.028204596,0.009210322,-0.027688973,-0.010035319,-0.019915951,-0.033644423,-0.023383519,-0.016835103,-0.008288645,0.01791791,-0.029854592,0.021256572,-0.013805815,0.012729451,-0.015945652,-0.010338248,-0.016203463,-0.044498295,-0.040089715,0.027353818,-0.0100611,0.01830463,0.000982907,0.03158193,0.012684334,-0.03294833,-0.008204856,-0.015674949,-0.020624934,-0.01501753,0.00872048,-0.038723312,0.014089407,-0.008314426,-0.0044988138,-0.016177682,-0.008572238,0.027998347,0.011749767,-0.00035287972,-0.027895223,-0.009558368,-0.0029100492,-0.038362376,-0.0033354384,0.002908438,0.025897183,0.010705629,-0.0442147,0.0047179535,-0.026863975,-0.02828194,-0.0155202625,0.02959678,-0.0042377794,0.018472206,0.030911619,-0.033257704,-0.011865782,0.0030615136,-0.010712075,-0.042513143,0.020637823,0.0010570278,0.0039960807,0.01701557,-0.026889756,-0.03227802,0.024878826,0.009551922,0.0012092978,-0.011743321,-0.019851498,-0.020251106,0.014308548,0.04888109,0.009558368,0.013612456,-0.0142440945,-0.007180055,-0.05127874,-0.00939079,-0.026915539,-0.02228782,-0.020392902,-0.029493654,0.014501906,0.013676909,-0.012426523,0.024646796,0.008075951,0.014489016,0.013406207,-0.014347219,-0.0026554603,-0.022494068,0.04173971,0.0126069905,0.022700317,0.0067482204,-0.04269361,0.028900689,-0.012839021,-0.011305042,-0.03220068,-0.03583582,0.044988137,0.02410539,0.009577704,-0.01481128,-0.010898989,-0.027508505,0.0040895375,0.018420644,-0.033876453,-0.004357017,0.0018965271,-0.06429823,-0.03426317,0.016822211,0.032767862,0.00015156507,0.012510311,0.007225172,0.005894219,0.010447818,-0.022867896,0.0424358,-0.014708156,-0.0070447037,-0.011189027,0.016757758,0.018730018,0.008791378,0.019696811,0.02077962,0.0055558416,-0.004025085,-0.0041926624,0.005426936,0.009506805,0.043183453,0.018614002,-0.009957976,0.004366685,-0.008971846,0.0008652804,-0.0018465761,-0.01347066,0.042049084,0.01833041,-0.025974525,-0.015649168,0.0047824066,0.013612456,0.007495874,-0.00425067,0.0043280134,-0.03642879,0.021166338,0.039419405,0.00464061,-0.031917084,0.019142516,-0.04047643,-0.034108482,0.017299162,0.03511395,-0.07363101,0.0017837345,0.020496028,0.05965762,-0.03560379,0.017531194,-0.021449931,0.018768689,0.043595955,0.0049113124,-0.019116735,-0.028874908,-0.00673533,0.010454264,-0.0071865004,0.026387025,-0.0071865004,-0.017801896,-0.02451789,-0.005143343,0.024260078,-0.0051659015,0.035500668,0.015958542,-0.020934308,0.008262864,0.0370991,0.00030856833,-0.02164329,-0.02164329,-0.021514384,0.014024955,0.018962048,-0.01082809,-0.0064291786,-0.026180776,-0.012336289,0.049293593,-0.0045278175,-0.008449777,-0.003722156,-0.0039058467,0.017943691,-0.022481177,-0.025768276,0.029287405]},{"id":"enum-ChannelType","type":"enum","source":"main","text":"Enum: ChannelType\nMembers: GuildText=0, DM=1, GuildVoice=2, GroupDM=3, GuildCategory=4, GuildLink=5, GuildLinkExtended=998","meta":{"url":"/docs/typedefs/ChannelType"},"embedding":[-0.030351501,0.004135525,0.024912639,0.015189016,0.0008469203,0.0055682003,-0.029873943,-0.0012403257,-0.0011068415,0.011580796,0.027645336,0.0075878752,0.011753247,0.04725177,0.05682947,0.0006280393,-0.028096363,0.025018763,0.011627225,0.039929204,-0.01048639,0.045394596,-0.012642037,0.06091525,-0.050249774,0.038390405,0.00040501278,0.017205374,-0.013716544,-0.0029200718,0.030669874,-0.045739498,0.07089092,-0.004473795,-0.054388616,0.0010604121,-0.0064702556,0.039027147,0.0145788025,-0.041521065,0.030165784,0.00012446786,-0.0007192397,-0.0052697263,-0.009411884,0.01656863,-0.027406557,0.0044903774,0.008881263,-0.0007304325,-0.03854959,0.033322975,0.013995119,0.045872156,0.005923053,-0.0008531385,-0.017205374,-0.008602687,-0.001040514,-0.021582995,-0.02907801,-0.061551996,-0.010274142,-0.0081052305,0.04526194,0.0034921472,-0.063303046,0.020495223,0.037674066,0.023559557,0.0034490342,-0.035737302,-0.007017458,0.017391091,-0.012330297,0.02313506,-0.06409898,-0.012628771,-0.007753694,-0.009425149,-0.029449446,0.042237405,-0.06118056,-0.007541446,0.029794348,-0.00136469,-0.019327857,0.014671661,0.00048958044,0.008284315,-0.03186377,-0.064841844,-0.061074436,-0.013862465,0.020110523,-0.057253968,0.013504296,-0.022352396,-0.057413153,0.030669874,0.081556395,0.020216648,-0.04908241,-0.014565537,0.030192316,0.004722524,-0.027565742,0.027698398,-0.050859988,-0.0047357893,-0.07895635,0.06324998,-0.0074154236,0.028892294,0.034384217,0.0073955255,0.024594268,-0.0019632964,0.004908241,0.018319678,-0.042316996,-0.00041558375,0.044280294,-0.0334291,0.0126221385,0.011103237,-0.017139047,-0.03979655,-0.02722084,-0.02722084,0.023798335,-0.019288061,0.0063475496,0.015905354,-0.032500513,0.018067634,-0.024899375,-0.0109573165,-0.08054821,-0.037674066,-0.023440167,0.007946044,0.04887016,0.045102756,-0.03441075,0.0060059624,-0.087234035,-0.006291171,-0.024461612,-0.0076807337,-0.07237665,0.02926373,-0.027831053,-0.000029847411,0.0024640695,-0.031200495,0.013524193,0.014844113,-0.04979875,-0.021529933,0.013968589,-0.0549723,0.023081997,0.03544546,-0.016210461,-0.040778197,0.017881915,0.014220634,-0.048896693,0.023732008,0.02597388,0.02698206,-0.048498727,-0.034569934,-0.02440855,-0.008430235,-0.021516668,-0.012330297,-0.058792766,-0.010592515,0.0349679,0.026889201,0.010526187,-0.0749767,-0.011176198,0.019075813,0.00848993,-0.04114963,0.018863564,-0.019155405,0.0018240084,0.022790156,0.04908241,0.039504707,0.011587428,0.013862465,0.036135267,0.013995119,-0.0150563605,-0.037647534,0.046376243,-0.040061858,0.045845624,-0.0095909685,-0.03167805,-0.012967042,-0.0039431746,0.009285862,0.0004522712,0.02130442,0.02375854,-0.02091972,-0.000472584,-0.0022120248,-0.07439301,0.020123787,-0.084687054,-0.028149426,-0.008436868,-0.021795243,-0.017085984,0.016794143,0.009624132,0.028918825,-0.019460512,0.010851192,0.0076608355,-0.046986457,0.026119802,-0.008357275,-0.010267509,0.008887895,0.010864458,-0.06903375,-0.029422915,0.005312839,0.015401265,0.07969922,0.0019317908,-0.02479325,-0.07105011,-0.012469585,0.015533919,0.036294453,-0.017072719,-0.02775146,0.02440855,-0.014631865,-0.036135267,0.01079813,0.06489491,0.069458246,-0.055821292,-0.0033727575,0.00095926266,0.017351296,-0.007050622,0.059694823,0.039451644,-0.018677847,-0.016024744,-0.030139253,-0.0062812218,0.00006368484,-0.019208467,0.014976768,0.021145232,-0.0090006525,-0.021795243,-0.021039108,-0.028149426,-0.02123809,0.037461817,-0.0059893806,-0.014539005,-0.01796151,-0.007992473,0.0026116485,0.018982954,-0.02801677,-0.01272163,0.004987834,0.009677194,0.024886109,-0.032102548,-0.0032732661,0.030457625,-0.0061883633,0.05422943,0.004583236,-0.007912881,-0.0018538559,0.0047556874,-0.028706577,-0.0011101579,0.022166677,0.033110727,-0.035498522,0.039610833,0.051762044,0.006447041,0.023838133,-0.03520668,-0.030829059,0.0070638875,0.019248264,0.030537218,-0.009285862,-0.04441295,-0.06383366,0.03783325,-0.009896075,-0.029290259,0.009013918,-0.048923224,-0.02325445,0.0072695026,0.061817307,0.06160506,0.024527939,0.028361674,0.009179737,0.023095263,-0.030033128,0.024965702,-0.0063110692,-0.024488144,-0.027565742,0.022445254,-0.001679746,0.013530826,-0.055980477,0.01606454,0.04183944,0.024050381,0.01647577,-0.0058401437,0.0749767,0.0009667245,-0.011985394,0.008682281,0.0017493899,-0.011070074,0.009551171,0.0017593391,-0.014353288,-0.04091085,0.026849404,0.0022551378,0.03364135,-0.008980755,0.013139494,-0.012489484,-0.03759447,-0.002790733,-0.06935212,0.04600481,-0.004487061,-0.010181284,0.077948175,-0.00841697,-0.0061054537,-0.026411643,0.04703952,-0.008251151,0.012317032,-0.04239659,0.011839474,-0.011189463,-0.0403537,-0.012456319,-0.008695546,0.013292047,0.01264867,0.011129768,0.01303337,0.017749261,0.020362567,-0.013650216,-0.01567984,0.002203734,0.0015844001,0.03579036,-0.034835245,-0.020760532,-0.0008365566,0.011222627,0.040698603,-0.052584507,-0.021317685,0.014645129,0.0042283833,-0.03724957,-0.011308853,-0.012297134,0.02186157,0.018730909,0.026955528,0.017855385,-0.02479325,0.040380232,-0.0010645577,-0.006798577,0.003369441,-0.028680045,0.012157845,-0.031996425,0.0032881899,0.022445254,0.0129206125,0.028202487,-0.000019652136,0.02032277,0.014087978,0.021384012,-0.03061681,-0.023506494,-0.017444154,0.028361674,0.013384906,-0.028096363,-0.005528404,-0.0010488048,0.03207602,0.038204685,0.0023231236,-0.022392191,-0.020402364,0.032792356,-0.035365865,-0.056776408,0.022644237,0.021529933,0.025881022,0.012947144,-0.044837445,-0.00017877355,-0.022193208,-0.0037773557,0.042821087,-0.049135473,0.013550725,-0.0023413636,-0.0133915385,0.036586292,0.017868651,-0.00050533324,-0.060862187,0.050196715,-0.023042202,-0.040778197,-0.0008319966,-0.05964176,0.04624359,-0.0318903,-0.02674328,0.047384422,0.065160215,-0.044386417,-0.022577908,-0.030378032,0.0022120248,0.02080033,0.039690424,-0.053009003,-0.004036033,-0.046323184,0.0028985152,0.023705477,0.03271276,-0.0272739,0.02751268,0.021437075,0.011222627,-0.0026663688,0.04523541,0.029794348,-0.014830847,0.036825072,0.024779985,0.020455426,-0.021384012,-0.040406764,0.007846553,0.011892535,0.04364355,0.033561755,-0.005548302,-0.011050175,-0.026902467,-0.015427795,-0.003429136,0.036427107,-0.015772698,-0.005933002,-0.016913533,-0.0049148737,-0.04292721,0.02142381,-0.023533026,-0.026080005,-0.035418928,0.011972128,0.0019433982,0.07009499,0.050515085,0.020017663,-0.033853598,-0.008284315,-0.018213553,-0.024010584,0.009750155,-0.014034916,-0.02135748,0.010347103,-0.03592302,-0.04085779,-0.009544539,-0.02852086,0.005846776,-0.010061894,-0.0009849645,0.025814695,-0.01233693,-0.007567977,0.00072421425,0.013544092,-0.069086805,-0.0148175815,0.0070240907,0.012157845,-0.012854286,0.035631176,0.0084633995,-0.043855797,-0.002309858,0.015321671,0.018598253,0.06791944,-0.024302425,-0.007103684,0.029529039,-0.016820675,0.00020499367,0.013464499,-0.00044688207,-0.054866176,0.028892294,0.02618613,0.013311946,-0.0094715785,-0.04852526,-0.015321671,-0.004901608,-0.026172863,-0.00045724577,-0.009040449,-0.0038735308,-0.020667674,0.023161592,0.014273696,-0.04396192,0.014830847,-0.0010371975,-0.02905148,-0.02686267,-0.002588434,0.057253968,-0.012283868,-0.0025751684,-0.007760327,0.02198096,-0.021450339,0.06144587,0.022975873,-0.015321671,-0.017271701,0.05168245,0.020083992,-0.006728933,-0.0026232558,0.008204722,0.07816042,-0.002117508,-0.021529933,-0.041441474,0.013457866,-0.005750601,-0.038416933,0.026464704,0.025244277,0.017908446,-0.0049579865,0.0020694204,-0.016688019,0.007110317,-0.011832841,-0.016847206,-0.02686267,-0.017855385,0.013769606,0.03701079,-0.023227919,0.0036844972,0.010101691,0.014233898,0.016382912,0.00039755093,-0.030112721,0.008854732,0.007820021,0.004865128,0.00048709317,-0.03366788,0.010778232,-0.013365008,-0.0039962367,-0.0036380677,0.025469791,0.007203175,-0.030139253,0.0148175815,0.017749261,0.014923706,0.022816688,0.024527939,-0.0031787492,-0.023506494,0.036825072,-0.028043302,-0.011401711,-0.061551996,0.0064868373,0.0012842678,-0.026225924,-0.019128874,0.0023828184,-0.011992027,-0.0014857379,-0.010048629,0.03271276,-0.010048629,0.020654408,-0.025191216,0.016157398,-0.029767819,0.010824661,-0.032208674,-0.02772493,-0.017656403,0.023413636,0.018996218,0.015387999,0.018810501,-0.0084633995,-0.05704172,-0.032818887,0.033588286,-0.009843013,-0.02233913,-0.0365067,-0.010705272,0.021874836,0.017749261,0.019977868,-0.0050972747,-0.03568424,0.0007121924,-0.0668582,0.022325864,0.017271701,0.020256443,-0.022564642,0.01976562,0.026822874,-0.008589421,0.004026084,-0.022007491,0.00048543498,-0.0049148737,-0.0006728104,0.024899375,-0.046057872,-0.022405457,0.021954428,-0.0019815364,0.026106536,-0.008125128,0.022989139,-0.004792168,0.0056809573,0.0050011,0.00057331903,-0.024156505,-0.0065233177,0.0084633995,0.012927245,0.016144132,-0.025350401,-0.06383366,-0.019460512,0.010294041,-0.03783325,-0.0005737336,-0.004208485,-0.028626984,-0.02260444,0.0044704787,0.026544297,-0.016900267,-0.007508282,0.020508489,-0.048657913,0.00827105,-0.0005455444,0.010333837,-0.0400088,-0.025960615,0.025098357,-0.0020528387,0.03929246,0.021941165,-0.0050044158,-0.01079813,-0.005923053,0.017404357,-0.049480375,-0.0138094025,-0.026504502,0.01502983,-0.013384906,0.036188327,0.02171565,0.010313938,0.024978967,0.04183944,0.01822682,0.015480857,0.008191456,-0.026172863,0.036108736,0.0050110486,0.009464946,-0.041096568,-0.027565742,0.020389099,-0.005405698,-0.0095909685,-0.039743487,0.029502507,0.018797236,0.010453227,-0.04987834,-0.029449446,0.0007267016,-0.017351296,0.037116915,0.0019981184,-0.005326105,0.04828648,0.012363461,0.030935183,0.0025386882,0.02686267,-0.01993807,-0.011408344,-0.03260664,-0.029714756,-0.0027791257,-0.00040687824,-0.052080415,0.0036148531,-0.023546292,-0.00094682624,0.019606432,-0.050780397,-0.033561755,-0.04852526,0.011972128,-0.0272739,-0.023360575,-0.0241963,0.01887683,0.016581895,0.0017609972,-0.025244277,0.025536118,-0.008085332,-0.0073557287,-0.030271908,-0.018624784,0.008655749,-0.0054222797,0.018810501,-0.034384217,-0.025549384,0.0017079352,-0.10888336,-0.009040449,0.007150113,-0.016900267,0.016077805,-0.0024690442,0.001207991,0.021662587,-0.010022097,-0.037700597,0.006510052,-0.011229259,0.036082204,0.0015023197,0.055980477,-0.021052374,-0.0015122688,0.037116915,0.01034047,0.004669462,0.0034821979,0.0038635817,-0.0077205305,0.02455447,-0.014658395,0.015427795,-0.0110767055,-0.00075447623,0.044041514,-0.013146127,0.009750155,0.017735995,0.0044373153,-0.0020528387,-0.024527939,-0.021742182,-0.004069197,-0.01979215,0.0045998176,-0.041812908,0.006483521,-0.009047082,-0.031280085,0.02340037,-0.000058606634,0.015082892,-0.020879922,0.014791051,0.0049579865,-0.004838597,-0.024753453,0.012708364,0.039027147,0.026438173,0.006516685,0.012854286,-0.05059468,0.01187927,-0.006911334,-0.023930991,0.027990239,-0.0028471113,-0.0002607503,-0.00988281,-0.017497215,-0.0472783,-0.020614613,-0.009597601,0.013066533,0.004069197,0.042555775,0.0033047716,-0.010075159,0.0036612824,0.013743075,0.020282974,-0.022246271,-0.00094682624,-0.015812496,0.037886314,-0.024342222,0.017908446,-0.0047954842,-0.001837274,0.027804522,0.004908241,-0.018266616,-0.008290947,-0.0112557905,-0.018041102,0.026451439,-0.0004987005,-0.008768506,0.023201387,0.021821775,-0.0077205305,-0.0016532149,-0.025151419,-0.014658395,-0.025960615,0.039372053,0.012051721,-0.026570829,-0.046217058,-0.005137071,-0.020481957,-0.006520001,0.038655713,0.005326105,-0.033561755,-0.000049434773,0.02390446,0.011540999,0.0049579865,-0.033561755,-0.017417623,0.030484157,0.024501408,0.0014111192,-0.022763625,-0.027539212,-0.01529514,0.025138153,-0.027088184,-0.017497215,0.032447454,0.007820021,0.004085779,-0.019845212,0.01656863,-0.029847411,-0.0063740807,0.004858495,-0.004934772,-0.027831053,-0.014499209,-0.005216664,-0.0020229912,-0.04682727,-0.01317929,-0.0063210186,0.024395283,-0.0016316585,-0.018160492,0.016250256,0.022007491,0.0135109285,-0.00025411753,0.0140481815,-0.013444601,0.007985841,-0.019845212,0.010910887,0.011229259,-0.01950031,0.010539453,0.009139941,0.039398585,0.011143033,0.021888101,0.009391986,0.015573716,0.04451907,0.031253558,-0.01630332,0.0035020963,-0.00063715933,-0.023572823,-0.017430888,0.039955735,0.008038903,0.0018455649,-0.011547632,-0.015573716,-0.012668568,0.025867756,0.04884363,-0.019341122,-0.014127775,0.032580107,-0.0041587395,0.007926146,-0.018080898,0.0033097463,0.04706605,0.03796591,0.04658849,-0.018717643,0.022325864,0.010061894,0.0007789345,0.032580107,0.03133315,0.004347773,0.006473572,-0.05810296,0.043802734,0.025085092,-0.009975668,-0.00645699,0.018691111,0.00017939539,0.014897174,0.021967694,-0.023453433,-0.0043079765,-0.02777799,0.0150563605,-0.009352189,0.042794555,0.0032765826,0.028122894,0.015772698,-0.012429789,0.0036447006,0.003158851,-0.028600452,-0.041176163,0.02363915,0.015772698,0.004987834,-0.017735995,-0.017881915,0.022445254,0.0029615264,0.030351501,-0.03555158,0.0053758505,-0.020906454,0.014074713,0.00626464,-0.0018555141,-0.005153653,-0.01514922,0.011534366,-0.04011492,0.014366554,0.021105437,-0.025390198,0.029873943,0.017231906,0.039929204,-0.0045732865,-0.018054368,0.001898627,0.009776685,0.01887683,0.03085559,0.0029781084,0.0070240907,-0.0051602856,-0.015109423,-0.007216441,0.0024259312,0.0046528797,0.0021440391,-0.0149369715,0.002467386,0.021224827,0.004284762,-0.008483297,0.008662382,0.012894082,0.012973675,-0.00077230175,0.007567977,-0.0050110486,0.0008058801,0.009577703,0.015812496,-0.0131527595,0.009285862,0.027831053,0.030537218,-0.006098821,-0.01656863,-0.008025637,-0.01603801,-0.02085339,0.03754141,-0.04218434,-0.013968589,-0.00033827065,0.038363874,-0.013955323,-0.0005268897,-0.03162499,0.020256443,0.037143447,-0.004128892,-0.0019450563,-0.0024458296,0.00089790963,-0.03783325,0.016701285,-0.007886349,-0.011043542,-0.030431094,0.03544546,0.031943362,-0.02722084,-0.026584094,-0.03186377,-0.019102342,0.04627012,0.033694413,-0.01606454,-0.016741082,-0.008264417,0.019619698,0.045633376,-0.00063923205,0.013073166,0.014990034,0.017430888,0.011487937,-0.016873736,-0.026080005,-0.0018306412,0.0016780877,0.0033130627,-0.039982267,0.018863564,-0.0075547113,-0.012602241,-0.017563544,0.027618805,-0.022949344,0.06606227,-0.038363874,0.022975873,-0.013232352,0.00757461,0.014990034,-0.004792168,-0.036320984,-0.009584336,0.022458518,0.028069831,-0.022538112,0.009365454,-0.013411437,-0.0034987798,-0.0035120454,0.015719637,0.0078001237,0.013849199,-0.015732903,0.027459618,-0.039902672,0.07534813,0.013292047,-0.010095058,0.041255753,0.00745522,0.027963707,0.005352636,0.03204949,-0.007594508,0.030935183,0.006692453,0.027565742,0.026783077,0.0062016286,-0.010890989,-0.009093511,-0.017417623,-0.0034324522,0.042025156,0.00029723046,-0.006579696,-0.0005807809,0.017059455,0.037912846,-0.022007491,-0.028202487,0.03372094,-0.008967489,0.059800945,0.0058136126,-0.001155758,0.026119802,0.015507388,0.005249828,-0.029290259,0.0012635405,0.0038901125,-0.026424909,0.029927004,-0.0065763798,0.02118503,-0.03056375,-0.0012768059,-0.006115403,-0.015454327,0.01789518,0.014273696,-0.03085559,-0.006115403,-0.039027147,-0.010260877,-0.012277235,0.005541669,-0.02777799,0.0034324522,-0.02275036,0.021609526,0.022577908,0.026398377,0.011852738,-0.011972128,-0.0031372947,-0.0053493194,-0.0006665922,0.023864664,-0.0031804075,0.031784177,-0.012608873,-0.010937418,0.04183944,0.020959515,0.000019781683,-0.020481957,-0.017006392,-0.015228813,0.0010206157,-0.009856278,-0.014446147,-0.0034656161,0.06457653,0.022034023,-0.028573921,-0.01591862,-0.011700185,-0.07195216,0.04571297,-0.0015446035,-0.043272115,0.025934083,0.007952677,0.0028487695,0.022564642,0.0044638463,0.010738435,-0.0017560227,-0.0077735926,0.00031008144,0.0028404787,-0.0065299505,-0.021914633,-0.0101282215,0.027698398,0.029343322,0.0033561755,-0.0126221385,-0.021503402,0.0034656161,0.0045998176,-0.006135301,0.011978761,-0.0057008555,-0.0077735926,-0.003989604,-0.020362567,0.021582995,-0.032553576,0.00018685723,-0.036639355,-0.0032997972,-0.0017609972,0.022684032,0.018505394,0.0503559,0.031757645,-0.006334284,0.011746614,-0.020588081,0.0069179665,0.031147432,0.014233898,-0.038231216,-0.009312392,0.003185382,0.010771599,0.00530289,-0.0012295475,0.0019118926,-0.023944257,-0.02907801,0.038921025,-0.018545192,0.020866657,0.010645577,-0.022670766,0.018730909,0.015321671,0.01337164,-0.009816482,-0.0200044,-0.034092378,0.0030958399,-0.015839025,-0.013822668,-0.04796811,0.013769606,-0.009975668,0.0070307236,-0.005581466,0.013663482,0.013497663,0.017629871,-0.009285862,-0.022445254,0.01644924,-0.014844113,0.022763625,0.0013514245,-0.0073623615,0.005405698,0.013862465,0.012197642,0.025284074,-0.028839232,-0.030775998,-0.007176644,-0.042529244,-0.00022406285,-0.007965943,-0.035498522,-0.025151419,-0.0018273249,-0.029635163,0.0046760943,0.014220634,0.012137948,-0.02029624,-0.007567977,-0.018982954,0.05088652,0.0025121572,0.029741287,-0.021463605,-0.060490754,-0.020163585,0.0061187195,-0.0028189223,0.03499443,-0.0014044865,0.030829059,0.004026084,-0.019964602,-0.01137518,-0.002966501,-0.00484523,0.027035123,-0.0072894013,0.0066460236,0.030988246,-0.014167571,-0.018691111,0.000111824156,-0.0013995119,0.017298233,-0.007017458,-0.007103684,0.013053268,-0.002029624,0.0019218416,-0.04828648,0.01642271,0.01099048,0.017444154,0.0027045072,-0.04544766,0.022816688,-0.029953536,-0.00010705686,-0.031041307,0.01647577,0.017908446,-0.0038503162,-0.013311946,-0.019566637,0.009604233,-0.005203399,-0.008131761,-0.031014776,-0.009338924,-0.002862035,0.002949919,0.016807409,-0.014114509,-0.046217058,0.0100088315,-0.022312598,0.05059468,-0.026119802,-0.01976562,0.023479963,-0.0058932058,0.037196506,0.03748835,0.03287195,-0.018982954,-0.015441061,-0.025881022,-0.024421815,-0.030882122,-0.0005136242,-0.0092327995,-0.0047888514,0.011235892,-0.001260224,-0.040300637,0.04863138,0.008748608,-0.014804316,0.02325445,-0.035074025,0.012642037,-0.018982954,0.008635851,0.00293997,0.008158293,-0.023161592,-0.0031721166,0.0033992885,0.0033727575,0.031518865,-0.003946491,-0.024076913,0.016913533,0.03157193,0.019964602,0.013796137,-0.010313938,-0.030165784,-0.00026303032,0.028122894,-0.007501649,-0.01887683,-0.014923706,-0.017112516,-0.05059468,0.031067839,0.022233006,0.007050622,-0.013716544,0.024222832,0.006151883,0.009100144,0.00010047592,-0.009491477,-0.024872843,-0.0073225647,-0.0038503162,0.015878823,-0.01060578,0.0035319438,0.014459413,0.006659289,0.0100685265,-0.005836827,0.00495467,0.010287408,0.0013348425,0.022564642,0.03080253,0.0126818335,0.0107185375,-0.014180837,-0.0024309058,-0.001714568,-0.040247574,0.023798335,0.007209808,0.00043734748,0.024899375,0.02597388,0.02751268,-0.0019550053,-0.018996218,-0.0015545527,-0.019208467,0.036320984,0.020030929,-0.014061447,-0.012237439,0.014313492,-0.03005966,-0.017921712,-0.006738882,0.015467592,-0.017231906,0.01789518,0.0051039075,0.010466492,-0.01938092,0.054653928,-0.013796137,0.021145232,0.0084633995,-0.011799676,-0.03523321,0.03133315,-0.0077404287,0.022936078,-0.03135968,0.029184135,-0.0013555699,-0.00010923323,-0.019805416,-0.014618599,0.024461612,-0.015971681,0.043537423,0.03464953,-0.031439275,0.030271908,0.039610833,-0.02438202,-0.016555363,-0.014539005,-0.002037915,0.025350401,0.025814695,-0.02748615,0.0028504278,-0.01931459,-0.018067634,0.009405251,0.020495223,-0.0151757505,0.009789951,0.021622792,0.009697093,-0.039159805,-0.030484157,0.011998659]},{"id":"enum-DefaultMessageNotifications","type":"enum","source":"main","text":"Enum: DefaultMessageNotifications\nMembers: AllMessages=0, OnlyMentions=1","meta":{"url":"/docs/typedefs/DefaultMessageNotifications"},"embedding":[0.0041001225,0.018352928,0.044437516,0.02068284,-0.01573666,0.027308116,0.013706123,0.00079480547,0.02405405,0.017532904,-0.021164441,0.00244543,-0.012489103,0.035560425,0.034805484,0.0067033744,0.024887092,0.0288961,0.035065807,0.049696084,0.028765937,0.054147646,0.03930911,0.024535652,-0.016634783,0.009768704,0.008720895,0.039881825,0.059510347,0.013901367,0.046389956,-0.019589473,0.0022046294,0.027073823,-0.037590962,0.010094111,0.024939157,0.0073021227,-0.006361698,0.025720133,0.0133677,-0.018105619,-0.0127949845,0.01625731,-0.018782465,0.011272082,-0.0101657,0.021880336,0.0028603235,0.03222826,-0.03087457,-0.023806741,0.040584702,0.035560425,-0.017975457,-0.031629514,-0.027542409,0.01194242,0.014057562,-0.023090847,0.009345676,-0.033165433,-0.031525385,0.05229934,0.06497718,-0.026032522,-0.046181694,0.009339168,0.024795977,0.019303115,-0.051570427,-0.047118865,-0.029598977,-0.012866574,-0.010569205,0.033269566,-0.025420759,0.022544164,-0.04579121,-0.022518132,0.01444805,0.016348423,-0.029859303,0.018457059,-0.0052780937,-0.0100615695,-0.014682342,0.0014570077,0.026097603,-0.013562944,-0.050737385,-0.036783956,-0.03064028,-0.019081838,0.01636144,-0.05399145,0.02704779,-0.018704368,-0.024861058,0.024106115,0.05274189,-0.060811974,-0.054147646,-0.006228281,-0.0008273461,-0.0038072565,-0.013048802,-0.00689211,-0.046624247,0.0000025994389,-0.025355676,-0.003079973,0.033920377,-0.035768688,-0.027906865,-0.031447288,-0.062269796,-0.0031157676,0.0014513131,0.00023673325,-0.013445798,-0.03035392,-0.0075168908,0.025407743,0.0078032487,-0.0075103827,0.00657972,0.009996489,-0.014252806,0.026488092,0.04199046,0.031421255,0.041235514,-0.007575464,-0.018092602,0.025889345,0.003192238,0.02022727,-0.05716742,-0.0064886063,0.021984465,0.013100867,-0.01775418,0.041417744,-0.023754677,0.013471831,-0.0492275,0.0015017511,0.0267354,-0.006530909,-0.025928393,0.032670815,-0.009065826,0.0427454,0.0065374174,-0.014955685,0.022843538,-0.012567201,-0.0152810905,0.012040041,-0.0036412992,-0.04563501,0.019016758,-0.027906865,-0.06305077,-0.008382472,0.02141175,-0.038007483,-0.03342576,-0.014669326,0.019016758,-0.007985476,-0.0042921123,-0.05893763,0.00051495584,0.00076999323,-0.032072067,-0.037278574,-0.03136919,0.012267826,0.07986778,0.025889345,0.006189232,-0.09080144,0.024080083,0.0093196435,0.0040025003,-0.01225481,0.010705875,-0.009176464,0.0020712125,0.014526147,0.019992977,0.02991137,0.0171294,-0.017311627,0.01423979,0.03613314,-0.028609741,-0.04527056,0.0024096353,-0.026540156,0.057011224,-0.020110123,-0.020813001,-0.0074387933,0.009013761,0.012144172,-0.024548668,0.027906865,0.03787732,-0.016387474,-0.0010974335,-0.028349416,-0.052195206,-0.0044580693,-0.090645246,-0.008864074,-0.03574265,-0.025889345,-0.0100680785,-0.009280594,0.06549782,0.03891862,-0.001744179,0.026162686,-0.05841698,-0.011987977,-0.021750173,-0.007028781,-0.016166197,-0.02534266,-0.005418019,-0.015346172,-0.024704864,0.017467823,-0.009579969,0.016830025,0.020617757,-0.021125391,-0.030822506,-0.024626767,-0.003917895,0.036705855,-0.044671807,0.0001595509,0.0036120126,0.013549928,-0.02384579,-0.03394641,0.06190534,0.060551647,-0.0089877285,-0.020292351,-0.042250782,-0.021216506,-0.024431523,0.056178182,-0.024939157,0.012957688,0.0026715875,-0.03222826,-0.016699864,-0.042719368,-0.03363402,0.0004938044,0.04407306,-0.04368257,-0.032254297,0.043786705,-0.03548233,-0.035768688,0.05399145,0.029442783,0.0064951144,-0.044281323,-0.016960189,0.00023937719,0.017728148,0.0029058803,-0.012664822,0.0027203986,0.028505612,-0.003686856,0.013244046,0.015424269,0.0059028743,0.012534659,0.012332908,0.004835541,-0.009306626,-0.00926107,0.049722116,-0.0012520016,-0.022414003,0.02311688,0.020214254,-0.03043202,0.014474083,0.0037779699,0.014513131,0.019537408,-0.00082693936,0.010712383,0.01904279,0.014539164,0.037096344,-0.013029277,-0.022544164,-0.053184442,0.0009566952,0.013445798,-0.03902275,0.038580198,-0.035222,-0.044932134,0.029807238,0.040740896,0.076119095,0.045322623,0.0024259058,-0.007360696,0.038033515,-0.020773953,-0.0008663949,0.0040708357,0.026579205,0.021437783,0.04230285,0.004087106,0.0012796612,0.0022843538,0.012352432,0.051856786,0.033607986,-0.009475838,0.0028668316,0.025850294,-0.048368428,0.023207994,0.03964753,0.0059874803,-0.04368257,-0.026540156,-0.007334663,-0.04862875,-0.0694027,0.035950914,0.01465631,0.02962501,-0.019966945,-0.019225018,0.0014635159,-0.020149173,0.0034037523,-0.048967175,0.04683251,0.0033484332,-0.0005169896,0.0738803,-0.011480343,-0.0045654536,-0.004532913,-0.032332394,0.01044555,0.004653313,-0.056126118,-0.021633027,0.044307355,0.021593977,-0.0004085886,-0.008473586,0.021281587,0.018964693,-0.008161196,0.013641042,-0.013120391,-0.0040513114,0.05281999,-0.0050600716,-0.0018206496,-0.02816719,-0.026995726,-0.00489086,-0.0011128903,0.056074053,0.016179213,0.005336667,-0.042328883,-0.023975953,0.045426752,0.012495611,-0.0044678315,-0.0023006243,0.013484847,0.05633438,-0.032462556,0.036679823,0.027516376,-0.024978206,0.0013146424,-0.012157188,0.009033285,0.015411253,-0.003940673,-0.012345924,-0.021815253,0.015307123,0.026084587,0.0134588145,0.02290862,0.02631888,0.006078594,0.027125888,0.019849798,0.005134915,0.026383962,0.022414003,0.009840294,0.01935518,-0.015163944,0.018756432,-0.008890106,0.014513131,0.03902275,-0.0013048803,0.0052097584,-0.02440549,0.06534163,-0.040480573,-0.083460264,0.018600237,0.0066903583,0.030327888,0.05633438,-0.06398794,-0.002196494,0.026891597,-0.00049055036,0.003638045,0.012749428,0.036783956,-0.04839446,-0.031212995,0.0040643276,-0.03363402,-0.046520118,-0.039725628,0.07304726,-0.0013634533,-0.053626996,-0.00717196,-0.02172414,0.016335407,-0.040272314,-0.00946933,0.06789282,0.082106575,0.006970208,0.028531644,0.002333165,0.0074973665,-0.014213758,0.029651044,-0.028765937,-0.028089091,-0.03251462,-0.033217497,0.0062087565,0.02461375,0.014916635,0.006615515,0.037278574,0.03600298,0.043109857,-0.042589206,0.002699247,-0.016374456,0.02868784,0.0031613244,0.0396215,0.01925105,0.016036034,-0.051336136,-0.013953432,0.049696084,0.06466479,-0.026084587,-0.036445532,0.0023803487,-0.0049591954,-0.017780213,-0.030093595,-0.014591229,0.01723353,-0.03157745,-0.0019508122,0.019277083,0.03251462,-0.071381174,-0.046728376,-0.04488007,-0.006976716,0.004135917,0.05529308,0.025069319,-0.047509354,-0.027334148,-0.060499582,0.0130422935,-0.04521849,-0.019433279,-0.05602199,-0.0117211435,-0.014409001,0.025668068,-0.02060474,0.022999734,-0.029364685,-0.02534266,0.015163944,-0.004139171,0.028948165,-0.020136157,0.041678067,-0.017611,0.0048583196,0.00029550982,-0.02346832,-0.0045491834,0.013484847,-0.00783579,0.042459045,-0.023103863,-0.007608005,-0.01026983,-0.03222826,-0.024431523,0.05120597,-0.009892358,0.018431026,0.0331394,0.0043506855,-0.0138753345,-0.018847546,0.0055709598,0.012098615,0.05524101,0.0023575702,-0.008942172,-0.01444805,-0.013419765,0.036393467,0.013100867,-0.0065504336,-0.0038235267,-0.024223262,-0.028505612,0.003195492,0.047275063,0.00409036,-0.03964753,0.028661808,0.01068635,-0.035065807,-0.026045538,0.0037161426,0.06799695,-0.017402742,-0.016205246,-0.0015253432,0.024001986,-0.036757924,0.05727155,-0.009651558,-0.01517696,0.018899612,0.011844798,-0.008746928,0.023494352,0.037721124,-0.0015757811,0.048160166,-0.025707116,-0.04797794,0.009391232,0.020930149,0.024587717,-0.04573914,-0.014461067,0.014317888,0.0057759658,0.0019524392,-0.015007749,-0.019797733,-0.0019670825,-0.014773456,-0.022622261,-0.024795977,0.014851554,0.016218262,0.03769509,-0.030197727,0.014565197,0.06513337,0.052611727,0.0035176447,0.003917895,0.00058085064,-0.00039008108,-0.01775418,0.021242538,-0.010621269,-0.01604905,-0.0031580704,0.011786224,0.024015002,-0.031395223,0.042563174,0.010413009,-0.008753436,0.022921637,-0.01970662,-0.008890106,-0.01754592,0.014643294,0.0027513122,-0.012749428,0.02704779,-0.0102307815,0.0030555674,-0.024665816,0.019511376,-0.024041034,0.01068635,-0.0013447425,-0.0037324128,0.008473586,-0.0072500575,-0.06466479,0.03352989,0.010256814,0.007614513,0.0045101345,0.04787381,-0.0076926104,0.020839034,-0.010705875,-0.01987583,-0.017728148,0.01981075,-0.0020337908,0.022843538,0.03574265,-0.011656062,-0.03808558,-0.0010510631,0.04873288,-0.016270326,0.007022273,-0.01945931,0.024522636,0.03602901,0.013393733,0.012378464,0.0013748426,-0.05758394,-0.0025755926,-0.01127859,0.0022127645,0.02683953,0.021789221,0.011851306,0.025824262,0.024041034,-0.033686083,0.027620506,-0.013484847,-0.004122901,-0.03228033,0.010152684,0.011623521,-0.041808233,-0.018391978,0.039465304,0.008434537,-0.0037519373,-0.0197717,0.007874838,-0.012274334,0.03509184,-0.030822506,0.033738147,-0.022010498,0.002331538,-0.021229522,0.01378422,0.010575713,0.009501871,-0.021086343,-0.030588213,0.005326905,-0.030666312,0.045166425,0.0023803487,0.012768952,0.0033516872,0.016947173,0.048238263,-0.0014358563,-0.009632033,0.036705855,-0.010536663,0.016960189,-0.015710628,0.034102604,-0.026019506,-0.020344416,0.0524295,0.0007740608,0.035950914,-0.0013374209,0.0011153308,0.0385021,0.0045459294,0.009768704,-0.000923341,0.030718377,-0.018287847,0.03873639,-0.025642036,0.013797237,0.015268074,0.015723644,0.018404994,0.020839034,-0.013152932,0.01315944,0.010399993,-0.014278838,0.018287847,0.004126155,0.040402476,-0.039855793,0.025108367,0.023975953,-0.01737671,0.029052295,-0.041808233,0.02419723,-0.009423773,0.010107127,-0.037486833,0.026045538,0.0016693355,-0.0011193985,0.024015002,0.014890603,-0.011812257,0.025004238,-0.012293858,0.06471685,-0.038319875,0.017402742,0.005629533,0.013536911,-0.025355676,-0.0331394,-0.0047802217,0.0028668316,-0.030536149,-0.020578708,0.011922895,0.0014643294,0.032124132,-0.003193865,0.01987583,-0.037538897,-0.025837278,0.01127859,0.0043474315,0.03186381,0.009592985,-0.049800217,-0.02060474,-0.015567449,0.025876326,-0.036289338,-0.0069376673,-0.02126857,0.0019312878,-0.00041652037,0.016036034,-0.013471831,0.0022550672,-0.0074583176,0.014916635,-0.073932365,0.021034278,-0.00081432983,-0.05727155,0.0073997444,0.029546913,-0.017845294,-0.015463319,0.0016677085,-0.022453051,-0.007360696,-0.0074453014,0.022114627,-0.029364685,0.001298372,-0.029416751,-0.021125391,0.02301275,-0.005893112,0.032332394,-0.015229026,-0.029416751,-0.015645547,0.014539164,-0.044723872,-0.011994485,-0.027594473,0.025316628,0.06409207,-0.017884344,0.008486602,0.019420262,-0.008558191,0.0021118885,0.008473586,0.011083347,0.016452555,-0.02022727,-0.034441028,-0.026423011,0.02440549,-0.006840045,-0.016686847,0.016751928,-0.035768688,0.010055061,-0.0065341634,0.0040740897,-0.0037584454,-0.0013797237,-0.012801493,-0.004627281,-0.0057499334,0.02301275,0.01796244,0.03293114,-0.036107108,0.020175206,0.013484847,-0.03170761,0.00685957,0.013016261,0.020969197,-0.0037616994,0.020643791,-0.026579205,0.026097603,-0.008304374,-0.048993208,0.0022648294,-0.00016575395,0.0014561942,-0.012476087,0.010347928,0.009970456,-0.0018743416,0.027099855,-0.00054586946,-0.04068883,0.019420262,-0.042250782,-0.017584968,0.021919385,-0.001370775,-0.005164202,0.034519125,0.0057434253,-0.027308116,-0.011695111,-0.010647302,0.025355676,0.00056336005,-0.021919385,0.03951737,0.022400986,-0.009645049,-0.037825257,0.012612757,-0.009723147,-0.02816719,0.013862318,-0.0020728395,0.0034655796,-0.077264525,-0.0021135155,-0.0067684557,0.0033028764,0.0219324,0.051466297,-0.004233539,-0.0059549394,-0.03175968,0.03355592,0.054303844,-0.015163944,0.0076926104,-0.0070417975,0.022361936,0.0040122624,-0.01465631,0.0060948646,-0.0015497486,-0.0016546922,-0.01465631,-0.0224921,0.010107127,-0.008265326,-0.0010421145,-0.0036478073,0.005479846,-0.043083824,0.032254297,-0.026995726,-0.03134316,-0.0093652,-0.030614246,0.023962937,-0.026995726,-0.040402476,-0.0027984963,-0.01964154,0.011812257,0.012092107,0.015046798,0.017519888,0.008890106,0.016491603,-0.013081343,0.030223759,-0.026305864,0.012567201,-0.037200473,-0.004933163,0.017467823,-0.059197955,-0.010458566,-0.014148676,-0.017246546,-0.037434768,0.04016818,-0.04331812,0.032176197,-0.0077641997,0.009065826,-0.0129641965,-0.03826781,-0.050893582,-0.00440275,-0.0021314127,0.08434537,-0.011649554,0.006146929,-0.0023120134,-0.010413009,-0.032983206,0.046207726,0.010920643,-0.029364685,-0.025329644,0.011285098,-0.011955436,-0.014148676,0.00758848,0.047301095,0.011187476,0.0015001241,0.025212498,0.018391978,-0.0015285972,-0.031447288,0.03717444,0.01991488,0.009091859,0.024001986,-0.013523895,-0.011818766,-0.00088429224,0.0043702098,-0.015918888,0.019797733,0.05810459,0.00006843706,0.005219521,-0.012261318,0.0120465495,-0.003485104,0.0017832278,0.001173904,-0.04396893,0.039387207,-0.03714841,0.03459722,-0.015554432,-0.01862627,0.00034086333,0.017493855,-0.027177954,-0.0120465495,0.026292847,0.023312123,0.019068822,0.0063584438,0.013471831,0.0353782,0.01476044,0.026136653,-0.008688355,0.048342396,0.0067359153,0.0069636996,0.007965952,0.0075038746,0.011291606,-0.011018265,0.004331161,-0.023090847,0.009124399,0.021606993,-0.00078545004,-0.018951677,0.017884344,0.010953184,-0.0041619497,-0.017246546,0.0050568176,-0.02301275,0.022166694,-0.0017100113,0.010569205,0.013615009,-0.019003741,0.0006914889,0.0069832243,0.008551683,0.011597489,0.012014009,-0.018053554,0.002435668,0.007621021,0.010699367,0.035222,0.00685957,0.00223717,-0.012332908,0.00076999323,-0.025368692,0.0023022513,0.015853805,-0.0111419195,0.0024584464,-0.012970705,0.033399727,0.0010844172,-0.0043279068,-0.018613253,0.0045198966,-0.020786969,-0.016934156,-0.027099855,0.025563937,-0.009280594,-0.027099855,-0.009690607,0.030692345,-0.0007378593,-0.0048648277,-0.020253303,-0.010256814,0.043994963,0.002098872,-0.026188718,0.014057562,0.025837278,-0.023767693,0.009098367,-0.029364685,0.00068091316,0.010250306,0.023247043,0.01284705,-0.022583213,0.0037747158,-0.0138753345,-0.017324643,0.01646557,-0.0089031225,-0.0044938643,0.013927399,-0.020448547,-0.022674328,0.009130907,0.008473586,0.0077902325,-0.0038755918,0.00588335,0.00967759,0.015137912,-0.027334148,0.02332514,0.028063059,-0.00015578838,-0.0245747,0.01368009,0.009124399,-0.025251547,-0.0038528133,0.0417041,-0.0117992405,-0.011617013,0.012580217,0.010562696,-0.0054961164,0.042146653,-0.00428235,0.0006719645,0.040923126,-0.041443776,0.030458052,0.0028961182,-0.022427019,-0.025134401,0.008382472,-0.0030718376,0.004181474,0.004630535,-0.026201734,0.023142913,-0.021528896,0.0127168875,-0.018821513,0.06804901,-0.006068832,-0.010647302,0.047301095,-0.006189232,0.012443546,-0.009879342,-0.008642797,-0.006231535,0.030562181,-0.008473586,0.015931904,-0.005411511,-0.042719368,-0.011421769,0.0067098825,-0.0033842279,0.0028538152,-0.0011869203,-0.009065826,0.009963948,0.006172962,0.036914118,0.008467078,-0.027906865,-0.01841801,0.02983327,-0.0026471822,0.031108864,0.01918597,-0.027802734,-0.007913887,-0.0068009966,-0.010094111,-0.024080083,0.01625731,-0.01883453,0.00818072,0.0009916764,-0.021424767,0.0052878563,-0.019602489,0.015502367,0.011519391,-0.018613253,-0.00043319745,-0.01246307,-0.009866326,-0.016374456,-0.009020269,0.04581724,-0.011109379,-0.026787465,-0.033269566,0.00016677084,-0.02047458,0.00029042532,0.012938163,-0.013927399,-0.0024617005,-0.018613253,0.020500612,0.022544164,0.023520384,0.020071074,-0.0032589464,0.0267354,0.012606249,0.04563501,0.06534163,0.01827483,-0.02983327,0.0015017511,0.02141175,-0.008206753,0.030327888,-0.036966182,-0.018196734,0.014812505,0.042849533,0.021841286,-0.0029969942,-0.03808558,0.009710131,-0.043213986,0.017923392,-0.015398237,-0.006566704,0.008310882,-0.014330904,-0.005167456,0.05737568,0.018704368,-0.028974198,0.013940416,0.0074908584,-0.0017555682,0.014981717,0.0066480553,-0.018821513,-0.007412761,-0.003979722,0.004171712,0.00967759,-0.0385021,0.0024730896,0.010679842,-0.002336419,0.004406004,0.002839172,-0.015085847,-0.015684595,0.010901119,0.0080765905,0.012118139,-0.03561249,-0.0013325397,-0.01138272,-0.0048030005,0.007848806,0.036783956,-0.0037584454,0.003693364,-0.0018824767,-0.02374166,-0.01910787,-0.00030649226,0.0067879804,-0.0112265255,0.02683953,-0.015255058,0.055188946,-0.009130907,-0.002695993,0.025889345,-0.012170204,0.0016205246,0.002788734,-0.034310866,0.011610505,0.003638045,-0.011701619,-0.027412247,0.0050177686,0.0016270326,-0.0064690816,0.013992481,-0.0052618235,-0.03095267,-0.007913887,-0.013510879,0.03467532,0.03064028,0.012912131,-0.012840542,-0.01619223,0.025121383,-0.037616994,-0.0007175214,0.028531644,0.018300863,-0.008187228,-0.036783956,0.013393733,0.0072565656,0.015046798,-0.002434041,0.013549928,-0.04146981,-0.012404497,-0.0067619476,-0.01382327,-0.029416751,0.0037226507,0.013484847,-0.03004153,0.012202745,-0.035638522,-0.040220246,-0.030666312,0.015359188,0.0062380433,0.023299107,0.016296359,-0.0064886063,-0.054147646,-0.01671288,-0.02290862,0.039152913,-0.0029693346,0.017415758,-0.0018531902,-0.028037027,-0.053626996,-0.002344554,0.014851554,0.030588213,-0.026409995,0.010881594,-0.004122901,-0.019537408,-0.0138753345,-0.00797246,-0.04667631,0.021958433,0.013198489,0.0038593214,0.029026262,-0.019290099,-0.016803993,-0.020734904,-0.0027838529,-0.010504123,-0.01246307,0.0033516872,0.023312123,0.007224025,0.014968701,-0.0106407935,0.00668385,-0.030015498,0.03136919,0.043526378,-0.045869306,0.014356936,-0.025602985,0.010959692,-0.015463319,0.012066075,-0.033477824,-0.0007549432,0.02764654,-0.040480573,-0.011714635,-0.0012308502,-0.004435291,0.0075168908,0.01444805,-0.0006418644,-0.0078292815,0.0034135145,-0.029703109,-0.034727383,-0.00766007,-0.06346729,0.03509184,-0.013328652,-0.022791473,-0.015020765,0.048238263,0.00466633,-0.0013244046,0.03509184,-0.022075579,-0.0123264,-0.048420493,0.002242051,0.022062562,0.034623254,0.00866883,0.025004238,0.01775418,0.006410509,-0.00016402523,0.030379955,-0.0031548163,-0.009007253,-0.018886596,0.008050557,0.01904279,-0.040116116,-0.00028635774,0.010751432,0.032774948,-0.0063519357,0.0060623237,0.015242042,0.021190474,0.009788228,-0.021151425,-0.004191236,-0.005183726,0.013432781,0.009443298,0.005623025,0.03303527,0.005837793,-0.021099359,0.027099855,-0.015515383,-0.02858371,0.0017132654,-0.01677796,-0.012599741,0.015606497,0.0055644517,-0.019979961,-0.031447288,0.00558723,0.00398623,0.014500115,-0.021698108,0.027594473,-0.021424767,-0.009215513,0.021997482,-0.03457119,0.00048363546,-0.004415767,0.03355592,0.00022839471,-0.0016660815,-0.03561249,-0.026253799,0.012651806,0.04094916,0.02374166,0.033868313,-0.0036055043,0.003839797,-0.015853805,0.004663076,-0.007978968,-0.02286957,0.022335904,-0.020917132,-0.011896863,0.036107108,0.028219255,0.014356936,0.022140661,0.018769449,0.009130907,-0.018300863,0.034961678,-0.005629533,0.010406501,-0.0047053783,0.012469579,-0.012124647,-0.04745729,0.011421769,-0.019368196,-0.02332514,0.038059548,-0.005326905,0.042433012,-0.025954425,0.035143904,0.009195989,0.015346172,-0.025043286,-0.04501023,-0.03975166,0.014474083,0.030015498,0.02301275,-0.035013743,0.02517345,-0.01692114,-0.034519125,-0.044099092,0.022817506,0.03274891,0.015827773,0.02461375,0.055553403,-0.014747424,0.043760672,0.03498771,-0.023168946,0.012938163,0.008512635,-0.018756432,0.021216506,0.065185435,0.0019654555,0.0105561875,0.027177954,-0.021281587,0.044281323,0.009163448,-0.0037324128,-0.0040773437,-0.019407246,-0.005590484,-0.031837776,0.010159192,0.018105619]},{"id":"enum-GatewayOpcodes","type":"enum","source":"main","text":"Enum: GatewayOpcodes\nMembers: Dispatch=0, Heartbeat=1, Identify=2, PresenceUpdate=3, VoiceStateUpdate=4, Resume=6, Reconnect=7, RequestGuildMembers=8, InvalidSession=9, Hello=10, HeartbeatAck=11","meta":{"url":"/docs/typedefs/GatewayOpcodes"},"embedding":[-0.0059410767,0.0020143273,0.030109607,-0.0054926933,0.0063079353,0.035598904,-0.06766509,0.016073857,0.03627827,-0.015937982,0.05233854,-0.0042120838,0.013268065,0.03385972,0.04562638,-0.02023159,-0.022174584,0.035626076,0.013872703,0.03866965,-0.004083004,0.0043785293,-0.013764003,0.040055558,-0.033832546,0.027650293,-0.0023302336,0.019823968,-0.012384886,-0.06326278,0.02921284,-0.036169574,0.032283586,-0.025421964,-0.0034036355,-0.010897069,-0.050463483,-0.0055538365,-0.019334825,-0.028968267,0.012914793,-0.055626683,-0.033941243,-0.03339775,-0.037338085,-0.0069703194,-0.05073523,-0.04744709,0.005258311,0.020448988,-0.036332622,0.030163957,-0.007826324,0.088317886,0.011134848,-0.0014164831,0.027364958,-0.012344124,0.01822066,0.01584287,-0.015476012,-0.004446466,0.0019328031,-0.006450603,0.03788158,0.04448504,-0.03529998,-0.0049729766,0.05858873,0.033560798,-0.02142728,0.028153026,-0.0040422417,-0.007214892,0.013879496,0.0385066,-0.018967966,0.028941093,-0.0103535745,-0.042365413,-0.008831789,0.0012491886,-0.024892058,-0.06380628,0.023805069,-0.0061618714,-0.068045534,-0.031006373,0.015258614,-0.016250491,-0.0014614912,-0.0064268247,-0.022840366,-0.0026240603,0.0056421543,-0.029620461,0.043860022,-0.022079471,-0.020204416,0.03524563,0.07516532,-0.04432199,-0.041767567,-0.042609986,0.02755518,-0.0043819263,-0.02591111,0.020190828,-0.018560344,0.022622967,-0.10174221,0.009891603,0.00051334774,-0.009735349,0.03467496,0.004392117,0.009042393,-0.041577347,0.0071265744,-0.01646789,-0.020612037,0.020571275,0.011997646,-0.025924698,-0.018071199,0.00730321,0.008811408,-0.0036210334,-0.01868263,-0.006124506,0.010455479,-0.037854407,0.057338692,-0.017568467,-0.032962956,0.048697125,-0.026726352,-0.019674508,-0.025435552,-0.036821768,-0.021400103,-0.050191734,0.019688096,0.059838768,-0.038479425,0.011787041,-0.045952477,0.02286754,-0.04676772,0.023370272,-0.03948489,0.051903743,-0.027364958,-0.0103263995,-0.019389173,-0.007914642,-0.008172802,-0.006396253,-0.025775237,0.03483801,-0.009599475,-0.033098828,0.029131316,0.0056387577,-0.042827383,-0.040490355,-0.022949064,0.010516622,-0.051496122,-0.005149612,0.04274586,-0.015000454,-0.0408708,-0.023288747,-0.027324196,-0.03483801,-0.019266887,0.035218455,-0.074187025,-0.024552373,0.037147865,-0.0031522692,0.010095414,-0.049974337,-0.010523416,-0.021644676,-0.0039675115,0.014062925,-0.004708023,-0.01962016,0.011114467,0.040599056,0.0021637883,0.047039468,0.028832395,-0.04084363,0.017473355,-0.02823455,-0.0014351656,-0.055708207,0.006487968,-0.066741146,0.058860477,-0.040381655,-0.019361999,0.009144299,0.0037738914,-0.029022617,0.030843325,0.031359643,0.0487243,-0.03328905,0.020381052,-0.0116104055,-0.08636131,0.028778045,-0.028044326,0.005244724,-0.01254114,-0.012615871,-0.042555634,0.008546454,-0.010231288,0.0007655632,0.017106496,0.020326702,0.010265256,-0.06652375,0.010244875,-0.028778045,-0.020353876,-0.013668892,-0.0191446,-0.058316983,-0.013138984,0.019239713,0.02023159,0.01879133,0.01574776,0.017772276,-0.032039013,-0.025938286,-0.000552836,-0.0035904618,-0.016603762,0.0058323774,0.00458234,-0.0021535978,-0.03608805,-0.0002186717,0.035571728,0.05250159,0.0061177122,-0.011590024,-0.017065734,0.014049338,0.031658567,-0.008159215,0.0040286547,0.033751022,0.010007096,0.005907108,0.01532655,0.027120385,-0.048126455,-0.020054955,0.032691207,0.0072760354,-0.019429935,0.005183581,-0.055871256,0.019647334,0.049593892,-0.019878319,-0.019484285,-0.04171322,0.020027779,0.0056353607,0.05755609,-0.007310004,-0.009307347,0.005998823,0.01832936,0.026862226,-0.028071502,0.026454605,0.0046536736,0.021291405,0.0010470765,0.050001513,-0.039403368,0.0033356987,0.027962802,-0.031930313,0.045762256,0.02250068,0.029076967,-0.04527311,0.051115677,0.014538484,0.031712916,0.016209729,-0.05027326,0.003199825,-0.024348563,0.026400255,0.020870196,-0.012473203,-0.019538635,-0.04918627,0.0033747624,0.014280323,-0.0122286305,0.012405267,-0.019158188,-0.030897673,0.02864217,0.027623119,0.04125125,-0.018546756,-0.004555165,-0.01563906,0.03467496,-0.026699178,0.038751174,-0.022636555,-0.011990852,-0.010306018,-0.005506281,0.016128205,0.00096894917,-0.06364323,0.014728706,0.029946558,0.007065431,0.05337118,-0.06451282,0.06603461,0.016793987,0.04160452,-0.011841391,-0.016168967,-0.033886895,-0.029348714,0.0060871406,-0.00008051577,-0.040653404,0.007153749,-0.02390018,0.005621773,0.025109455,0.016943447,-0.028261725,-0.01563906,0.024090402,-0.04866995,0.039675113,-0.029294364,-0.021033244,0.079513274,-0.029348714,-0.00916468,-0.012568315,0.024239864,0.015217852,0.034457564,-0.023750719,-0.029158492,-0.0053602164,0.015258614,0.009735349,0.0153809,-0.033886895,-0.006420031,0.004748785,0.020014193,-0.014986866,-0.0021654868,-0.013465081,0.022677317,-0.012099551,0.021658264,0.023152875,0.018859265,0.0004878714,-0.00027068585,-0.01006824,0.004674054,-0.06413238,-0.014389022,0.02502793,-0.02203871,-0.020299528,-0.025000757,-0.024579547,-0.047419913,0.038180504,0.03679459,0.004144147,-0.032745555,0.0563604,0.012908,-0.007812737,-0.005652345,-0.021957185,-0.011882153,0.008417374,0.013356382,0.0485069,0.028288899,0.055327762,0.015190677,0.024212688,0.002117931,0.05951267,-0.041495822,0.006059966,-0.059132222,0.0030011097,0.023302335,-0.028479122,0.031441167,-0.061197504,0.052718986,0.0271068,-0.0008190635,-0.025462726,-0.04671337,0.06440412,-0.020761497,-0.042908907,0.024661072,0.01962016,0.033153176,0.046550322,-0.029919384,0.016427128,0.019959843,0.020612037,0.002933173,-0.036876116,0.004507609,-0.022786016,-0.012575109,0.0075477827,0.01842447,0.00931414,-0.06516501,0.073208734,-0.0243078,-0.037745707,-0.009436427,-0.032120537,0.047691662,-0.04676772,-0.03252816,0.029158492,0.051387426,-0.031468343,-0.02869652,-0.048425376,-0.003147174,0.0072080987,0.038723998,-0.044539392,0.028044326,-0.031169422,-0.009246204,0.010876688,0.07483922,-0.031821616,0.0003647359,0.009776111,0.020000605,0.0025068694,0.005523265,0.022378394,0.054322295,0.040436007,0.027758991,-0.014212387,-0.017745102,-0.019321237,-0.007004288,0.050816756,0.06527372,0.03453909,-0.016698875,-0.053969026,-0.0070314626,-0.005350026,0.0135262245,0.03655002,-0.017106496,0.007914642,0.008587216,-0.008580423,-0.044675265,0.0066680005,-0.019579398,-0.05250159,-0.049566716,0.01532655,0.010482654,0.053425528,0.00041292858,-0.007622513,-0.009395665,-0.019878319,-0.06978472,-0.020843022,-0.023682782,0.0016644525,-0.0563604,-0.03437604,0.0012245615,-0.0119297085,0.016902685,-0.022337632,-0.011569643,-0.01661735,0.020910958,0.02157674,0.0013459986,-0.0008296786,-0.014565658,-0.0035055408,-0.010441892,0.010761195,0.016957035,0.035218455,-0.04342523,0.007214892,0.015190677,-0.004062623,0.0052345335,-0.00021845939,-0.020639211,0.004443069,-0.040218607,-0.021359341,0.03149552,-0.0012891016,0.00068573747,0.0109582115,-0.020313114,0.0035157313,0.004446466,0.008471724,0.012677014,-0.031468343,-0.0073303846,-0.0131933335,0.024851296,-0.004317386,0.022894714,0.004643483,-0.024199102,0.025761649,0.0040965914,0.030462878,-0.030598752,0.016726049,-0.017024972,-0.025816,0.009463602,-0.019402761,0.03638697,-0.018492408,-0.025557838,-0.015394487,0.008940488,-0.011732692,0.027487244,0.003481763,-0.020843022,-0.011549262,0.018451646,0.02115553,-0.012772125,-0.009320934,-0.05538211,0.024076816,0.031441167,-0.05940397,-0.01764999,-0.018764155,0.030952023,-0.021128356,0.025231741,-0.00082246034,0.026033396,0.029566111,-0.0023947735,0.009157886,-0.016372778,-0.007880673,-0.025870347,-0.01254114,0.0046129115,-0.0048167217,0.010801957,-0.026468191,0.003994686,0.03163139,0.021549566,0.009273378,0.019416349,0.024633897,0.019022314,0.009830461,0.036984816,-0.0048438967,-0.025802411,-0.028913919,0.0031862378,-0.024661072,0.008573629,0.014103687,-0.020503338,0.004449863,-0.00026091991,-0.003187936,0.022065885,0.004422688,0.04584378,-0.027582357,-0.011685136,0.0192533,-0.019076664,-0.0007893411,-0.04809928,-0.022541443,-0.0057814247,-0.03902292,0.01517709,-0.011875359,-0.040789276,0.016454302,-0.028723694,0.0064336187,-0.0010131081,0.018804917,-0.0036414145,0.050300434,-0.009524745,-0.025924698,-0.026305143,-0.021753376,-0.0037535103,-0.015258614,-0.022799604,0.042800207,0.014484134,0.024117578,-0.010903862,-0.018546756,0.032962956,-0.025204567,-0.0037704946,-0.050436307,-0.02080226,0.023288747,0.021848487,0.00458234,0.017541291,-0.026142094,0.03029983,-0.012418854,0.0059172986,-0.003977702,0.032337934,0.07396963,0.013145778,-0.0038588124,0.012092757,-0.022269696,-0.00866874,-0.0057066944,0.013431113,0.006039585,0.03782723,-0.03448474,0.04934932,0.035626076,0.0046061175,0.04543616,-0.03149552,0.025816,-0.016630938,0.02648178,0.012935174,0.0125479335,-0.001553206,-0.0018716599,-0.0045313872,0.03467496,-0.0009256394,0.0053466293,-0.046523146,-0.0128740305,0.0072964164,0.0032303967,-0.025992634,-0.031060722,-0.02338386,0.008315469,0.0271068,-0.005791615,0.0040456387,-0.0037433198,0.020068541,-0.038071804,0.0030639514,0.0054825027,0.0035598902,-0.049784116,-0.036713067,0.039213143,-0.025381202,0.02126423,0.05842568,0.018451646,-0.026033396,-0.011888946,0.018777741,0.00091969495,0.009470395,-0.040137082,0.034973886,-0.016848335,0.060056165,0.008960869,0.016114619,-0.016943447,0.01682116,-0.0005944473,0.0039471304,-0.008315469,-0.013784384,0.01574776,-0.01868263,0.007880673,-0.027989978,-0.018179897,-0.007092606,-0.010360368,-0.006420031,-0.028424773,0.013247684,0.0063317134,0.011005768,-0.036414146,0.0030079035,0.029348714,-0.029593287,0.03293578,0.01652224,0.005584408,0.022120234,-0.011311484,0.0068004774,0.0019820572,0.053561404,0.022160996,0.03701199,-0.060164865,-0.024267038,0.00012377242,0.03655002,-0.013437906,0.008322262,-0.0128740305,0.010761195,0.030544402,-0.032908604,-0.0245252,-0.050816756,-0.014538484,-0.011977265,-0.03304448,-0.017432593,0.018750567,-0.03467496,-0.002727664,0.0039810985,0.04274586,0.020516925,-0.012350917,-0.032392286,-0.0064404123,-0.0026767114,-0.0408708,-0.03937619,-0.013043873,-0.039185967,-0.016807573,-0.10505752,0.036223922,0.03845225,-0.030028082,0.027962802,0.0056149797,0.012955555,0.022025123,-0.010767989,-0.047691662,0.028941093,-0.021345755,-0.010299224,-0.025802411,0.030163957,-0.031033548,0.013634923,0.031875964,-0.019117426,-0.005798409,0.013940639,0.0027310608,0.023927355,0.010897069,-0.006810668,0.02404964,-0.0022283283,-0.024375737,0.03035418,0.003328905,0.0005927489,-0.026998099,-0.012486791,-0.032555334,0.023614844,-0.022989826,-0.007343972,-0.0036006523,0.01847882,-0.010693259,0.00846493,-0.014620008,-0.019701684,0.019796794,0.00478615,0.006963526,-0.030408528,0.020068541,0.015489599,0.014321085,-0.01692986,0.000089591704,-0.008016547,-0.0072284797,-0.015489599,0.024470849,-0.013566987,0.054023374,-0.02244633,-0.05106133,0.042148013,0.015258614,0.011066911,-0.001868263,0.021074006,-0.04361545,-0.004239259,0.017079322,0.02487847,0.024810534,0.026128508,0.014361847,0.0115085,-0.03937619,-0.009076362,0.03665872,-0.0034715724,-0.0034545881,0.01641354,0.021141944,-0.019674508,-0.00704505,0.028207375,0.0059410767,0.023764307,-0.04206649,-0.004901643,-0.011753073,-0.006681588,-0.015530361,-0.01267022,-0.031604216,0.013465081,0.023560496,-0.0112978965,-0.027677467,-0.010550591,-0.026699178,0.005608186,-0.0027395529,0.026128508,-0.014647182,-0.003804463,-0.033886895,-0.006127903,-0.006549111,-0.0144705465,0.026712764,-0.0015633965,-0.02972916,-0.008804614,0.031169422,0.006036188,-0.006922764,-0.03913162,-0.0025425362,0.03809898,0.003159063,0.0003010451,-0.030435704,-0.013764003,0.0063453005,0.015231439,0.030109607,-0.037310913,0.023750719,0.018777741,0.00091120286,-0.0017459767,0.023818655,-0.035843477,-0.01842447,-0.04263716,-0.0015175391,-0.0033815561,0.019117426,-0.006124506,0.010367162,-0.058969174,-0.018981552,0.009280172,-0.0071469555,0.01532655,-0.0028057913,0.017677166,0.0043037985,0.007323591,-0.0023862815,0.00033734887,-0.0029688398,-0.0030214908,-0.07168695,-0.016060269,-0.005601392,-0.005587805,0.03231076,0.0028720298,0.02292189,0.009171473,0.0112911025,0.030625926,0.027677467,0.0073167975,0.000633511,-0.030462878,-0.01604668,-0.0034681757,-0.008227151,0.0028839188,0.0051462157,-0.020965308,-0.00046451812,-0.0045211967,-0.007880673,-0.007839911,0.030218305,0.027052449,0.0042834175,-0.01434826,0.006416634,0.008403786,0.012038408,0.020978896,0.033751022,0.054838616,0.040436007,0.048860174,0.0011404897,-0.040490355,-0.0069057797,0.026060572,0.03758266,0.030571576,0.02266373,-0.026210032,-0.0459253,0.047501437,0.015299376,-0.027758991,-0.019022314,0.014647182,0.008573629,-0.0006555905,-0.011372627,0.0040456387,0.014239561,-0.03179444,0.02343821,-0.009327728,0.04144147,-0.00077575375,-0.00562517,-0.011331865,0.035028234,-0.038914222,-0.008492105,-0.036169574,-0.029022617,0.012174281,0.0064268247,0.013030286,-0.0059886323,0.009986715,0.04584378,0.029185666,0.030897673,-0.07168695,-0.009001631,-0.0614149,0.008376612,0.0058765365,-0.053914674,-0.021481628,-0.0050069448,0.034240168,-0.020775085,0.0052277395,0.00062204665,-0.011182403,0.040082734,0.019525047,0.0054451376,-0.01951146,0.006566095,0.028533472,0.0141444495,0.007452671,0.020612037,0.015706997,0.036223922,0.0013281652,0.0043479577,0.007799149,-0.036305446,0.02596546,-0.0029841256,-0.009252997,-0.0069159702,0.033153176,0.0023421224,-0.0016788892,0.01626408,0.0070858123,-0.012255806,0.010387543,0.014062925,-0.034511913,-0.0057644406,-0.010407924,0.021046832,0.022989826,0.01460642,0.022595793,-0.001666151,0.01158323,-0.02565295,0.002243614,-0.01169193,-0.028424773,0.011114467,-0.028805219,-0.024905644,-0.003634621,0.014429784,-0.01460642,-0.0030045067,-0.028533472,-0.017717928,0.009123918,0.008471724,0.013750416,0.023343097,-0.0026053777,-0.039865337,0.006073553,0.008043721,-0.025951872,0.0053873914,0.020625625,0.016128205,-0.014334673,0.0009222426,-0.026767114,-0.00005190799,0.016875511,0.05062653,-0.008614391,0.0017731515,-0.0011269023,-0.0069771134,-0.0059546637,-0.010537003,0.03793593,0.024565961,0.00006767146,0.035218455,-0.0063486975,-0.03304448,-0.024919232,0.005074882,-0.0128808245,-0.006769906,0.015815696,0.00086619466,-0.010849513,-0.03282708,0.023818655,-0.004901643,0.03866965,-0.032990128,0.030897673,-0.011990852,0.020014193,0.00065261824,-0.0017748498,0.040626228,0.0061822524,0.065001965,0.00898125,-0.012194662,-0.03426734,-0.015027628,-0.0035157313,-0.0048404997,0.0069125732,-0.008227151,-0.013417525,-0.01305746,0.035082582,-0.006793684,0.06456717,-0.0061958395,-0.0020398037,0.042256713,0.0020601847,0.011019355,0.005547043,0.01091745,-0.005845965,-0.010278843,-0.015829284,0.00911033,-0.009429633,-0.0060463785,-0.006382666,0.019959843,-0.0061584744,0.03029983,0.03385972,-0.006701969,0.005903711,0.015557536,0.007500227,0.016033094,-0.0055164713,-0.06250189,0.0097081745,-0.008994837,0.0459253,0.030462878,0.00665781,0.008831789,0.0081116585,0.013376763,-0.035463028,-0.0055164713,0.010829132,-0.025041519,0.020041367,-0.0036753828,0.01615538,-0.02013648,0.016563,-0.0040218607,-0.023261573,0.007663275,0.04309913,-0.027582357,-0.009952746,-0.0035361124,0.01532655,0.011739486,0.0006254435,-0.024864882,-0.001154077,-0.029674811,0.004181512,0.046387274,0.00942284,-0.029403063,-0.029185666,0.0054892963,0.0023879798,-0.0028074898,0.007092606,-0.0073983218,-0.001912422,0.013179746,0.0020398037,0.054376643,0.02120988,-0.010469067,-0.011800629,-0.027514419,-0.022881128,-0.018560344,-0.0116036115,-0.0076157195,0.009952746,0.014620008,0.02978351,-0.010856307,-0.022758842,0.011168816,-0.0618497,0.03195749,0.009986715,0.0037501135,0.0071877176,-0.024959994,0.019891907,0.007384734,-0.019266887,-0.010047859,0.0015447139,-0.0077515934,-0.003293238,0.014973279,-0.034756485,-0.02152239,-0.007778768,0.01125034,0.018981552,0.014389022,-0.024076816,-0.017269544,0.038615298,0.004602721,-0.02611492,0.016535826,-0.010435098,-0.016128205,0.00877744,0.003869003,0.005203962,-0.038479425,0.03035418,-0.021766962,-0.00338835,0.00042333142,0.013098222,0.047148164,0.051523298,0.00229117,-0.0067495247,0.01676681,0.029566111,0.023057763,-0.027595943,-0.00070611853,-0.021644676,0.015204264,0.012473203,0.00073456706,0.000037206035,0.020639211,0.028044326,0.014266736,-0.024647485,0.009171473,-0.005584408,0.021454453,-0.027908454,-0.014823818,0.0069771134,0.0138251465,0.024185514,-0.026087746,0.0034477946,-0.010910656,0.02115553,-0.004983167,-0.008186389,-0.023546908,-0.013736828,-0.050545007,0.031359643,-0.028805219,0.0061550774,0.003587065,-0.00497977,-0.010156557,-0.038914222,0.013750416,-0.03127812,0.007310004,-0.0029960147,-0.017894562,-0.00458234,-0.0072013047,-0.003909765,-0.029348714,-0.025870347,-0.00704505,0.027025275,-0.02554425,-0.0054247566,0.004918627,-0.023886593,-0.046985116,-0.011848184,0.012045201,0.00043288505,-0.003587065,0.032691207,-0.025788823,-0.016250491,0.00088912336,0.040381655,0.018750567,0.00530247,-0.014130862,-0.033941243,-0.031169422,-0.010428305,0.021277817,0.010197319,0.00048277614,0.00872309,0.015204264,-0.049267795,-0.030272655,-0.019090252,0.024402913,0.0153809,-0.019783206,-0.033995595,0.0057236785,0.010632115,-0.012975936,-0.0061992365,0.00094262365,0.021386517,-0.021753376,0.025326854,0.04263716,0.0034155245,0.01879133,-0.022065885,0.04815363,-0.011141641,0.008267913,0.019103838,-0.060925756,0.013172952,0.013077841,-0.022487093,-0.01331562,0.015761346,-0.012690601,0.03597935,0.020639211,0.009409252,-0.025313266,0.008199977,0.0005248121,-0.015503187,-0.014389022,0.0047385944,0.0057882187,0.024864882,-0.015149915,-0.030625926,0.0066068573,-0.016332015,-0.003933543,0.0022011534,-0.014062925,-0.039865337,0.02493282,0.01506839,0.024063228,-0.017731514,-0.015000454,-0.0065049524,0.00704505,0.017269544,-0.018451646,-0.0135330185,-0.005716885,0.017106496,0.007520608,-0.019891907,-0.011128054,0.017921738,0.01298273,-0.013797971,0.035544552,-0.021359341,-0.0047182133,-0.0069771134,0.016250491,-0.033669498,0.018872853,0.00063520944,-0.017378243,0.022269696,0.012649839,0.009565507,0.010944624,-0.02203871,0.04837103,0.02983786,0.026441017,0.0044158944,-0.009307347,-0.0053602164,-0.013927052,-0.0062569827,0.0020975498,-0.009932365,-0.0048710713,-0.020421814,-0.030788975,0.02519098,-0.0049729766,-0.00032524762,-0.040707752,0.02875087,0.007323591,0.013709654,-0.0103331935,0.042501286,-0.008084483,-0.0011353944,0.016005918,-0.0065626986,-0.0020686768,0.0048201187,0.015598298,0.0033985402,0.02085661,-0.021182707,0.024212688,0.028533472,-0.004745388,0.027799753,0.03524563,-0.0052956766,0.020177241,-0.020245178,0.0015464122,0.009416046,0.0059206956,0.00020954269,0.01713367,-0.0015455631,-0.00872309,0.016332015,-0.02864217,0.0002989221,-0.0014309196,-0.0070586377,0.02436215,0.00438872,0.005217549,-0.023886593,-0.0070110816,0.041984964,-0.018723393,-0.007853499,0.00802334,-0.009483983,-0.037854407,-0.01661735,0.014307498,-0.018519582,-0.018111961,0.03225641,-0.0385066,0.00607695,0.022079471,0.0096945865,-0.007602132,0.013634923,-0.012581903,0.007133368,-0.0087366775,0.0383979,-0.030163957,-0.043887198,-0.04589813,0.021535978,0.0035530967,-0.0069907005,0.023084937,0.008539661,-0.022568617,0.023465384,0.007452671,-0.008702709,-0.02023159,-0.013797971,0.014769468,0.012690601,0.00859401,-0.005981839,-0.0144705465,-0.014266736,-0.0122286305,0.011685136,0.038615298,0.014239561,-0.0047963406,0.009993508,0.020815847,-0.028832395,-0.03644132,0.0010148066]},{"id":"enum-GuildExplicitContentFilter","type":"enum","source":"main","text":"Enum: GuildExplicitContentFilter\nMembers: Disabled=0, MembersWithoutRoles=1, AllMembers=2","meta":{"url":"/docs/typedefs/GuildExplicitContentFilter"},"embedding":[0.028283473,0.043647654,0.019520486,-0.0043300223,0.017924877,-0.012797049,-0.031011453,0.016509416,0.006504684,0.003850696,0.08106728,-0.008724384,0.027691554,0.037496835,0.03657035,-0.009001042,-0.0062473277,0.018285176,0.011838397,0.03716227,0.05836844,-0.0056425403,0.007308923,0.01778333,-0.072471574,0.007817202,0.024268713,0.007476205,0.026610658,-0.012269469,0.027614348,-0.028334945,0.015145427,0.027151106,-0.045655034,-0.017410163,0.0045841616,0.02309774,-0.0033906712,-0.04485723,0.07149362,-0.017628917,-0.0419491,-0.0042302967,0.024178639,0.03883509,0.015402784,0.005861293,-0.012346676,-0.022608764,-0.0112143075,-0.024487466,-0.006395308,0.041099824,-0.008023087,0.014373357,-0.042618226,-0.006244111,-0.039993193,-0.005652191,0.009116853,-0.015582933,-0.0140130585,0.041099824,0.050544806,-0.0038989503,-0.038629204,-0.011027724,0.020382632,0.04321015,-0.044780023,-0.027743025,-0.016741037,0.002140884,-0.0067877765,0.0037799228,0.0062730634,-0.023805471,-0.019121584,-0.04864037,0.009933959,0.03355928,-0.05476545,-0.04920655,0.010513011,0.009116853,-0.039375536,0.034640178,0.013125179,-0.0053562312,-0.056566946,-0.04004466,-0.08683207,-0.018594004,0.013041538,-0.0794202,0.016277796,-0.008074558,-0.032632798,0.075096615,0.08039816,0.0057615675,-0.019044377,-0.056927245,-0.0021473179,0.024976443,-0.034588706,-0.0140130585,-0.027923174,-0.04094541,-0.022544425,-0.011085629,0.00068360305,0.01418034,-0.0041209203,-0.0022776045,-0.030831303,0.0111371,-0.012552561,0.004207778,-0.05147129,-0.025993,-0.00011852471,-0.07694958,-0.019250263,0.009811714,0.0112722125,-0.042618226,-0.033301923,-0.00998543,0.0040308456,0.004474785,0.058986098,-0.0125203915,-0.005813039,0.0523463,-0.010911914,0.010487275,-0.029776141,-0.022737442,-0.022428615,0.019829314,0.026211753,0.10891325,-0.04385354,-0.0022470434,-0.038757883,-0.0033424168,-0.038629204,0.0126169,-0.058986098,-0.005796954,0.018606871,-0.005301543,-0.04622122,-0.077567235,0.024062827,0.0010294258,0.0023081657,0.009715206,0.0026314696,-0.038243167,0.04058511,0.0013422747,-0.010069071,-0.0020411583,0.03214382,0.009734508,-0.065522954,-0.020768665,0.0018433155,0.0113301175,-0.009245531,-0.055228695,0.0019366073,0.0070515666,-0.032890156,0.0017805849,-0.04920655,-0.04390501,0.03965863,-0.010172013,-0.01309301,-0.010706028,-0.015570065,0.025787117,-0.0041659577,-0.022763178,0.0056972285,0.0021682282,0.0014645191,0.053427197,0.013099443,0.027331255,0.0638244,0.0023918066,0.019481882,0.024577541,0.0050860066,-0.024603276,0.015608668,-0.02990482,0.020009464,-0.025105122,0.015055352,-0.010358597,0.019893654,-0.009303436,-0.017410163,0.020601384,0.028026117,-0.013434007,0.021849563,-0.015853157,-0.0263533,0.05625812,-0.041408654,-0.03350781,0.023560982,-0.009303436,-0.039221123,0.016046174,0.0072059804,0.015595801,-0.0057712183,0.008724384,-0.057596374,-0.014875202,-0.03327619,0.020884477,-0.034949005,0.00198647,-0.040996883,-0.01890283,-0.017731858,0.024140036,-0.018696945,0.084258504,-0.00009022555,-0.0057937372,-0.044342518,-0.04421384,-0.014836599,-0.005629672,-0.033096038,-0.010551615,0.018478192,0.0042689,-0.04655578,-0.012790616,0.0397101,0.07612604,-0.051497024,-0.005159997,-0.03126881,-0.011574606,0.015608668,0.04951538,0.008396254,-0.0023708963,-0.026314696,0.015711611,-0.0026025171,-0.061765548,-0.044007953,0.03250412,0.04467708,-0.047302116,0.007913711,0.022055447,-0.012964332,-0.004156307,0.0360299,-0.038732145,-0.028463623,0.008724384,0.02676507,-0.005710096,0.015055352,-0.027202576,-0.03402252,-0.035669602,0.02293046,0.017976347,-0.020935947,0.0073603946,-0.005147129,0.0005750308,0.049180817,0.018658342,0.000108270666,-0.020678591,0.030702624,0.008595705,-0.0096508665,0.016946923,0.012700541,-0.051677175,0.047945507,0.008743686,0.01873555,0.02026682,-0.041974835,0.0031445741,0.055177223,0.017641785,0.021386322,-0.014695053,-0.053736027,-0.034202673,-0.016161986,-0.0035836885,-0.03633873,0.026970956,-0.013459742,-0.012816351,0.014347622,0.030651152,0.07972903,0.025774248,0.017242882,-0.021373453,0.016342135,-0.037316684,0.054096326,-0.023136344,-0.0011195006,0.016638095,0.019983727,0.007926579,-0.0033134643,-0.010088373,-0.035772547,0.027665818,0.030831303,-0.028926864,0.014321886,0.07051567,0.021695148,-0.022171259,-0.012732711,-0.015029617,-0.041254237,-0.00682638,0.019404676,0.016226323,-0.052140415,0.071339205,0.031474695,0.037599776,0.021257643,-0.014991013,-0.038140226,0.017937744,-0.00057422655,-0.05237204,0.047842562,-0.011806227,-0.003545085,0.081993766,0.002612168,0.03757404,-0.029621728,-0.014206076,0.007604883,0.012269469,-0.03628726,-0.0017210712,0.050158773,0.03505195,0.014772261,0.030522475,-0.0075791474,0.005591069,0.018117893,0.0082161045,-0.00080705376,0.029415842,0.021373453,-0.051316876,-0.01809216,-0.015492858,0.01689545,-0.036441673,-0.02587719,0.013858645,-0.020112406,0.01536418,-0.06825093,-0.008428424,0.010172013,0.023702528,-0.010416502,-0.050055828,0.0270739,0.0013286027,0.02789744,0.04969553,0.04663299,-0.035669602,0.039375536,0.00084203813,-0.0073861303,-0.020768665,-0.04449693,-0.044239573,-0.009432114,0.0066140606,0.0053980513,0.01232094,0.02753714,0.038757883,0.0016840763,-0.030831303,0.01554433,-0.022660235,0.05188306,-0.0033778034,0.016161986,0.0064789485,-0.014579243,0.009200493,0.004371843,-0.0011371938,0.069023,-0.028823921,0.01832378,0.0004672628,0.009882487,-0.026250359,-0.09326598,0.06150819,-0.029518785,-0.002023465,0.011709718,-0.023200683,-0.008042389,-0.03682771,-0.011851264,0.034485765,-0.00076402695,-0.0046613687,-0.02771729,-0.02398562,-0.028618038,-0.059655223,0.020935947,-0.041099824,0.049592588,-0.0014854292,-0.028823921,0.032941625,-0.034228407,0.016805377,-0.039452743,-0.03592696,0.008750119,0.057956673,-0.054044854,-0.021051757,-0.02002233,0.02818053,0.014193208,0.02091021,-0.010519445,0.019481882,-0.02197824,-0.013729966,0.019713504,0.07427307,-0.020241085,0.050493333,0.0031928285,0.026584921,0.014965277,-0.025838587,0.019469015,0.0023371181,0.03168058,0.018105026,0.04153733,-0.009747376,-0.039761573,-0.012848521,0.05111099,0.069743596,0.044291046,-0.017641785,-0.029493049,-0.0021907468,-0.033816636,0.009007475,0.018491061,-0.0148880705,-0.00028892283,-0.051548496,-0.013240989,-0.05383897,-0.013922984,-0.020408366,-0.025272403,-0.03204088,0.006671966,-0.0016213456,0.014231811,0.014154605,-0.0072831875,-0.009747376,-0.033713695,0.015055352,-0.05023598,0.016612358,-0.000021626487,0.003009462,-0.016908318,-0.004156307,-0.032092348,0.0043139374,-0.039761573,0.00063012115,0.0006844073,0.0032829032,0.0059706694,-0.009444982,-0.012546127,0.0016084778,-0.014116001,0.00132619,-0.004063015,0.0012393321,0.014077398,-0.01796348,0.04094541,0.028463623,-0.034949005,-0.026739335,0.03337913,0.026224623,0.056412533,-0.03770272,-0.005787303,0.020125274,-0.006022141,0.004658152,-0.007746429,0.0027279784,0.009728074,0.004696755,0.016264927,-0.01087331,0.0133954035,-0.051548496,-0.012417449,0.0018047121,-0.02304627,-0.007759297,0.0021151484,0.005147129,-0.042412344,0.019559091,0.018632608,-0.019571958,0.04696755,0.022351408,-0.04048217,-0.020408366,0.012134356,0.018439589,0.007321791,-0.0051020915,-0.035206363,0.020369763,-0.035309304,0.047302116,0.005353014,-0.012192261,-0.009882487,0.040096134,-0.020356895,0.032812946,0.003902167,-0.0118319625,0.03031659,0.014707921,-0.04755947,-0.03615858,0.019237395,0.0070644347,-0.03204088,-0.0056264554,0.036596086,0.031603374,0.008853062,-0.031037187,-0.013845777,-0.005932066,-0.0000109451885,-0.004770745,-0.020318292,0.0029435144,0.012385279,0.024088563,-0.016869714,-0.014991013,0.029930554,0.024358789,0.04220646,0.007598449,0.028875394,0.0025027914,0.028257739,-0.0023918066,-0.009251964,-0.024577541,-0.023651058,-0.02990482,-0.017036997,-0.021875298,0.0016012397,-0.01702413,-0.0039311196,-0.026095944,0.0038635638,0.0016937271,0.010596652,0.01807929,0.0027649733,-0.023676794,0.045397677,-0.015106823,-0.025606968,-0.025594098,0.0013430789,0.010731764,-0.005201817,-0.036956385,0.015570065,0.033173244,-0.009226229,-0.00070531754,0.050802164,0.0066333623,0.021669414,-0.050313186,0.042515285,-0.014514904,0.028515095,-0.015029617,-0.03427988,-0.011542437,0.006665532,-0.022621632,-0.0017210712,-0.01205715,0.023586718,-0.033971053,-0.010686726,0.03770272,-0.01584029,0.00021292226,-0.019687768,0.0043268055,0.007604883,-0.0065336367,-0.00549456,0.010159146,-0.05311837,-0.0074118655,-0.03847479,0.0016141075,0.0057519167,0.011973509,-0.027382726,0.008820892,0.05430221,-0.017924877,-0.00034401318,-0.013961587,-0.03301883,-0.0061283004,0.0005215489,0.006807078,-0.027382726,-0.036493145,0.014077398,-0.05471398,0.00972164,-0.011536003,0.010564482,-0.023329362,0.015248369,0.012816351,0.03646741,-0.013240989,-0.030162176,0.022943327,0.014913806,-0.008615007,0.0061829886,-0.05466251,-0.0248735,0.029493049,-0.01072533,0.009502887,-0.0107124625,-0.0024111082,0.01143306,0.0007258256,0.036210053,-0.027254049,-0.026739335,0.038011547,-0.039735835,-0.009818149,-0.0040887506,-0.0067170034,-0.017410163,-0.02416577,0.03368796,0.018529665,0.048537426,0.0032442997,0.011819095,0.040327754,-0.02623749,0.006221592,0.00029173767,0.017886274,-0.006671966,0.0028904346,-0.008196803,0.0047482266,0.018928567,0.023419436,-0.0055621164,0.024410259,0.056978717,0.061611135,-0.012507523,0.00028128256,0.03072836,0.026404772,0.04997862,0.016033307,-0.05466251,0.0046742363,-0.047791094,0.010693161,-0.00497663,0.01689545,-0.00434289,0.0094642835,-0.015016749,-0.023136344,0.029698934,-0.05111099,0.022698838,0.024963576,0.024358789,0.03232397,0.0248735,0.036853444,0.009303436,0.015634404,-0.016110513,0.023136344,-0.034974743,-0.011304382,0.023856943,-0.0071352078,-0.0074311676,0.019983727,-0.0026636391,-0.023059137,0.05075069,-0.011310816,0.01702413,-0.05435368,-0.0017677171,0.0015232285,0.020524178,0.00025132464,0.022287069,-0.038243167,-0.03574681,-0.018889964,0.03518063,-0.007598449,-0.01388438,-0.030522475,-0.040868204,-0.0025703476,-0.0091490215,0.0024432777,-0.02127051,-0.01719141,-0.024448862,-0.09774398,0.035360776,0.016046174,-0.025452552,0.0053369296,0.02807759,0.03994172,0.014836599,-0.014218944,-0.030393796,-0.006388874,-0.014810864,0.00983745,-0.014978145,0.006832814,-0.021540735,-0.03770272,0.018465325,0.026970956,0.007952314,0.006527203,-0.020241085,-0.005932066,-0.054044854,-0.016946923,-0.0003094309,-0.01613625,-0.011001988,0.043004263,0.00087822886,-0.0011500616,-0.0038860824,-0.036107108,-0.011716153,0.003982591,-0.015853157,0.00029656308,-0.033765167,0.009991864,0.0054688244,-0.009348473,-0.01997086,-0.03582402,0.02972467,-0.027923174,0.024976443,-0.008447725,-0.005462391,0.006321318,-0.027099634,-0.0263533,0.02245435,0.041743215,0.011124233,-0.0066783996,0.023007667,-0.00019713906,0.019070113,-0.018619739,-0.026044473,0.011883434,0.026584921,0.035669602,-0.029261429,-0.018452458,-0.012288771,-0.012488222,-0.008312614,-0.029029807,0.01495241,0.014193208,-0.027691554,-0.02830921,-0.0064757317,-0.0061250837,-0.002245435,0.017603181,-0.023805471,-0.029930554,0.040996883,-0.0063341856,0.015286973,0.015235501,-0.014900939,0.008666478,0.018722681,-0.036776237,0.0022743875,-0.0038989503,-0.040636584,0.054456625,0.0028003599,0.0046549346,0.02676507,-0.025027914,0.00029415038,0.012031414,-0.020794401,-0.0061218664,-0.01784767,0.006305233,-0.009181191,0.0017146374,-0.06475088,-0.014965277,-0.007109472,0.018246572,0.020163877,0.0033617185,-0.021901034,0.0075727133,0.011413759,-0.01713994,0.0021585773,-0.0270739,-0.003763838,0.014926674,0.028695244,-0.016290663,-0.0035901226,-0.0061218664,0.005513862,0.010448672,0.020395499,-0.001198316,-0.017989216,0.033096038,0.0070708683,0.010854009,0.045423415,-0.028798187,0.0034099729,0.029415842,-0.024616145,-0.00478683,-0.009477152,0.000078865676,-0.017178543,-0.056206647,-0.014141737,0.00089592213,0.007180245,0.039015237,0.023084873,0.028051853,0.055588994,0.013781438,-0.00027987515,0.020485573,0.00682638,-0.01602044,-0.015402784,-0.012694106,-0.004841518,0.014862335,0.0026604224,0.0019639514,0.01547999,-0.009760243,0.03883509,-0.013678495,0.012822785,-0.021798091,0.0039697234,-0.0070515666,-0.007366828,-0.0043750596,-0.022878988,-0.0135112135,0.010319994,-0.0014452173,-0.0319122,-0.0057133134,-0.018606871,-0.031474695,0.051445555,0.001544943,-0.019391809,-0.0031622674,0.052217625,0.0092776995,-0.0012594381,-0.039452743,-0.010332861,0.06989801,0.041151296,0.02617315,-0.021167567,0.01376857,0.009194059,0.03126881,0.04220646,0.043930747,-0.0025397865,0.013691363,-0.025697041,0.014926674,-0.008035955,-0.011761189,-0.0019060462,0.046941817,-0.02410143,0.019185923,0.0013881164,-0.03857773,-0.03847479,0.016766774,-0.001666383,-0.026404772,0.025246667,-0.03538651,0.019185923,0.002639512,-0.00041458514,0.008769421,0.0003793997,-0.03834611,-0.006089697,0.0109569505,0.025619835,0.030522475,-0.032890156,0.00080785796,0.012919294,-0.03705933,0.0069293226,-0.037316684,0.016676698,-0.010673859,0.018877095,0.020820137,0.0419491,-0.0026266442,0.0019285649,0.016856847,-0.02990482,0.011658248,-0.0069807936,-0.030368062,0.009689471,0.013755702,0.032838684,0.0010173622,-0.01172902,0.0064885993,-0.003905384,0.00957366,0.0068392474,0.025272403,-0.020279689,-0.0027971428,-0.026224623,-0.0012369194,-0.026790807,0.01004977,-0.012250167,0.008409122,-0.0064049587,0.0027778412,-0.012282336,-0.0039504217,0.027331255,0.007765731,0.0037767058,-0.0012682847,-0.0011862523,-0.005742266,-0.0061122156,0.014154605,-0.023754,-0.00028771648,-0.0035032646,0.01985505,0.035875488,0.0016269753,0.014514904,-0.021759488,0.011368721,-0.016792508,0.0229948,0.00087822886,-0.007334659,-0.0072510177,0.027434198,-0.023805471,-0.008544235,-0.006935756,0.01921166,0.031706315,0.0043203714,0.01258473,0.018452458,0.02311061,-0.016753905,0.0003239072,-0.0019414327,-0.013922984,-0.042592492,0.034228407,0.018941434,-0.021759488,-0.019945124,-0.031062923,-0.013665628,0.032169554,-0.021321982,0.007405432,0.004999149,-0.010950517,0.00028811858,0.033765167,-0.025066517,-0.0032089131,0.0016189329,0.010448672,0.004912291,-0.028206266,-0.012526825,-0.0019462581,-0.008042389,-0.007296055,-0.0378314,0.00653042,-0.032092348,-0.008814459,0.01873555,0.012719843,-0.027871704,-0.0018980039,-0.006347053,0.020421235,-0.016303532,0.024744822,0.0028888262,0.02753714,-0.0040404964,0.0002076947,0.027511405,-0.0004023205,-0.0013414705,-0.026456242,-0.0087179495,0.01973924,-0.022428615,-0.0085378,0.008621441,-0.011606776,-0.018568268,0.0008452551,-0.005726181,0.07818489,-0.007855806,0.006314884,-0.019301733,-0.017410163,-0.0047482266,0.020562781,-0.010075505,0.020562781,0.027820231,-0.024474598,0.0019912955,0.0018320562,-0.022492955,-0.036210053,-0.0027858836,-0.033404868,0.0067491727,0.025632702,0.0049798475,0.004156307,0.008589271,0.019366072,-0.013279593,-0.001218422,-0.017950613,0.03916965,0.007913711,0.022647368,0.032118086,0.0026025171,-0.028823921,-0.00950932,-0.005121393,-0.027408462,-0.009560792,0.019134453,-0.012809917,0.020060936,-0.015685875,0.030934244,-0.026481979,0.006330969,0.0070451326,-0.014772261,0.0152612375,-0.023972753,-0.021013154,-0.0040887506,-0.014502035,-0.045835182,0.016985526,0.0018658342,-0.0075727133,-0.013549817,-0.028257739,0.004931593,0.01778333,0.0019205225,-0.0028067937,-0.01388438,0.013035104,-0.004252815,0.0012473746,0.029698934,-0.045268998,0.02033116,0.022634499,0.026031604,0.07072155,0.025915794,0.0048061316,-0.008209671,-0.016316399,0.0058259065,-0.0060253576,-0.006813512,-0.010558048,0.00096026127,0.050081566,0.02097455,-0.020434102,-0.009303436,0.0012650678,-0.045577828,0.03204088,0.014502035,0.007611317,0.006018924,0.02245435,-0.016290663,0.03204088,-0.021605074,-0.025967266,0.0051117423,-0.012797049,-0.011413759,-0.030548211,-0.004561643,-0.02771729,0.001848141,0.001632605,0.00020809681,0.0047192737,0.0033488509,0.014797996,-0.0022534775,-0.0014251113,0.0089753065,-0.01789914,0.0057004453,-0.034305613,-0.023393702,-0.007437601,-0.033971053,-0.0111371,0.00441688,-0.028154796,0.008891665,-0.0053240615,0.024963576,0.0025237016,0.022724574,0.0066140606,0.00011812259,-0.0022502604,-0.021347718,-0.017423032,0.014617846,0.0322725,-0.038449053,0.019173056,0.011407325,-0.018272309,0.016625227,0.00226152,0.002824487,-0.00850563,-0.015814554,0.0061894227,-0.01098912,-0.00090074755,-0.0070065293,0.021193303,0.00087822886,-0.0059996224,-0.008486329,-0.007810768,-0.016277796,-0.034665912,-0.028206266,-0.00058588805,0.014296151,0.005584635,0.002784275,-0.0030673672,0.026739335,0.006347053,0.012591165,0.017127072,0.009490019,0.0019462581,-0.015299841,0.026147416,0.012513957,0.0072510177,-0.00095382734,0.006035009,-0.023419436,0.042515285,0.003915035,0.009361341,-0.015505726,-0.018182233,-0.0073796962,-0.008048823,0.00068601576,-0.0069228886,-0.040096134,-0.019713504,0.010217051,-0.022634499,0.018400986,0.014514904,0.019456148,-0.041460123,-0.010622388,-0.018928567,0.028489359,0.02121904,0.012597598,-0.019173056,-0.025555495,-0.039607156,0.005803388,0.016882583,0.04308147,-0.012771314,0.009740941,-0.025722777,-0.041974835,-0.01666383,-0.008524932,-0.033482075,0.02730552,-0.002140884,0.008756553,0.04081673,-0.028695244,-0.010757499,0.0067041353,-0.026507715,0.03564387,0.008286878,0.0035772547,0.04081673,0.017345825,0.035772547,-0.04153733,0.002202006,0.026687864,-0.0026202104,0.016998393,-0.035077684,0.039015237,-0.00400511,-0.024693351,-0.03505195,0.030419532,-0.006150819,0.0037863567,0.024886368,0.0012015329,-0.031989407,-0.00957366,-0.008055257,-0.0056135873,0.0069164545,0.002171445,-0.014038795,-0.008138898,-0.025246667,-0.045655034,-0.009309869,-0.008338349,0.044419724,-0.02085874,-0.047816828,0.0040790997,0.022827517,0.007180245,0.014965277,0.0053272783,-0.025542628,-0.020678591,-0.02812906,-0.016985526,-0.042566758,0.0033713696,0.010493709,-0.01979071,0.016908318,0.007862239,-0.02222273,0.038629204,-0.0045198225,-0.0032153472,0.027820231,-0.003154225,-0.023380833,-0.018928567,0.0089753065,-0.0025623052,0.015711611,-0.008370519,0.022209862,0.0122630345,0.00016989547,0.01613625,-0.018992906,-0.032710005,0.029570255,0.03703359,0.018105026,0.0026411205,0.029235693,-0.026456242,0.005217902,0.013794306,-0.054919865,-0.043261617,0.012063583,-0.034614444,-0.03669903,0.0075727133,0.008080993,-0.012359544,-0.01901864,0.0028421802,-0.004709623,-0.00045198225,0.009136154,0.01878702,-0.0015312709,0.017332956,-0.0034646613,-0.020459838,-0.0022743875,0.020009464,0.049309496,-0.008705081,0.055177223,-0.025748512,-0.045423415,-0.009264832,0.021540735,0.03108866,0.0319122,0.0052500716,-0.005497777,0.0049798475,0.011104931,-0.006527203,-0.018684078,0.038912296,-0.0040340624,0.0112143075,0.014218944,0.018452458,0.039015237,-0.0036062072,-0.026533449,0.022480085,-0.009412812,0.0048189997,0.014849467,0.01459211,-0.0052436376,0.0037091498,-0.012990067,-0.0315519,0.0049830643,0.03126881,-0.023187816,0.008338349,-0.019494751,0.036982123,-0.00043187628,0.04071379,-0.023020534,0.0144763,0.033250455,0.003003028,-0.033816636,0.0064113927,0.012513957,0.041871894,-0.039993193,0.011954207,-0.009271266,-0.015570065,-0.007804334,-0.005957802,0.015196898,0.004143439,0.043107204,0.031577636,-0.00084445084,0.030625418,-0.0041659577,-0.012597598,-0.018568268,-0.0030721927,-0.01613625,0.0046163313,0.027202576,-0.028412152,-0.019842181,0.00904608,-0.024178639,-0.007965182,-0.0047321417,-0.013446874,0.000055291424,-0.03255559,-0.0017902358,-0.0040823165,-0.008550668,0.0021264076]},{"id":"enum-GuildMFALevel","type":"enum","source":"main","text":"Enum: GuildMFALevel\nMembers: None=0, Elevated=1","meta":{"url":"/docs/typedefs/GuildMFALevel"},"embedding":[-0.011319522,0.032378595,0.05286772,0.023778932,0.018959658,0.029420657,-0.05774471,0.013253003,0.019565675,0.037371017,0.04175742,-0.025813416,0.0037046364,0.05944733,0.05705212,0.016607737,-0.007647351,-0.0039787865,-0.015958434,0.057571564,0.031570572,0.024702385,0.0147896875,0.020561272,-0.074742034,0.019291524,0.018526789,0.0006353253,0.003008439,0.006305457,0.061063375,-0.02561141,0.024457093,-0.006449747,-0.07878214,-0.021816593,0.0030499222,-0.001258927,0.015640996,-0.038669623,0.0062982426,-0.046432406,-0.04666327,-0.0123800505,0.004213257,-0.0091696065,0.03442751,0.007055763,-0.0115359565,0.014933977,-0.009111891,-0.020503558,0.005324288,0.07624264,-0.0037767813,-0.0024583347,-0.009689049,-0.011774034,0.0057246913,-0.00018194021,-0.023057483,-0.028179767,0.010258993,0.016088294,0.026765728,-0.005407254,-0.07508833,0.020532414,0.05915875,0.036851574,-0.014703114,-0.039708506,0.023721216,0.02673687,-0.0021066286,0.015828572,0.0016295711,-0.05064566,-0.035726115,-0.02673687,-0.009797267,0.02046027,-0.047442432,-0.02533726,0.07306827,-0.02643386,-0.05875474,-0.0028605422,-0.004656948,-0.051049672,-0.029334083,-0.05471463,-0.050443657,-0.0038741766,0.013224145,-0.013014926,0.02450038,-0.01545342,-0.048221596,0.03898706,0.06839329,0.011911109,-0.019565675,-0.058927886,0.014501109,0.0155399935,-0.024716815,0.018873084,-0.0027198596,0.019984115,-0.05133825,0.0036523314,0.0031346923,0.026246285,0.029348511,-0.014125955,-0.035235528,0.040285666,-0.005064566,-0.014529967,-0.018627793,0.022999767,0.012596485,-0.062159974,-0.02103743,0.017055035,0.0046533407,0.00462809,-0.012481053,0.0016467054,0.043633185,-0.03774617,0.051597975,0.013440579,-0.048683323,0.037399873,-0.01308707,-0.027934473,-0.037919316,-0.032926895,-0.013267432,0.0070160837,0.028944502,0.054454908,-0.034600656,0.004642519,-0.022538042,0.033879206,-0.014991693,0.013808519,-0.037890457,0.012574842,-0.027314028,0.007037727,-0.011954396,-0.05278115,0.022523612,-0.023447067,-0.0074669886,0.010410497,0.0065687858,-0.017156038,0.011629744,-0.006853758,0.007384022,-0.013685872,0.010951583,-0.0015880878,-0.056330673,0.013014926,-0.011853393,0.039593074,-0.025669126,-0.08109078,-0.023331635,-0.005587616,-0.03910249,-0.02992567,-0.064410895,-0.031974584,0.02353364,0.012257405,-0.012206904,0.023403779,-0.020056259,0.024442665,0.019248238,0.016665453,-0.02226389,0.02393765,-0.0020958069,0.04233458,0.029362941,0.038785055,0.041584272,-0.004404441,0.038756195,0.0362167,-0.007907072,-0.030704835,0.0067780055,-0.044874076,0.053791177,-0.030041102,0.025596982,0.020301552,0.001468147,0.0060673794,-0.011521528,0.023923222,0.009371612,0.011802892,-0.00078592764,0.004750736,-0.045451235,0.05347374,-0.062621705,-0.021066288,0.044700928,0.014219743,-0.019897541,-0.0005564169,0.013779661,0.013339577,-0.009328325,-0.01864222,-0.029261937,-0.018353641,0.016521163,0.006305457,-0.021831023,-0.020517986,-0.0063451366,-0.033359762,-0.046605553,0.05304087,0.01630473,0.04299831,0.011045372,-0.009732336,-0.047933016,-0.015669854,0.03624556,0.031022271,-0.05278115,-0.0068645794,0.024976537,0.00017709298,0.0072505544,0.023115199,0.038871627,0.05849502,-0.014667042,-0.026924446,-0.043806333,0.028338484,-0.043113742,0.005699441,0.0024294767,-0.041439984,0.0025106396,-0.005017672,-0.028713638,-0.0204747,-0.024009796,0.0059230896,0.0091912495,-0.031916868,-0.00808022,0.0008400362,-0.0027631465,0.0057751928,0.023043055,-0.029319653,0.012935566,-0.031541716,0.045826387,0.02059013,0.024832247,-0.022350464,-0.019926399,0.013887878,0.05093424,-0.0131880725,-0.02757375,0.008974816,0.029218651,-0.0115359565,0.024990965,-0.000784124,-0.022061886,-0.00772671,0.053935464,-0.0055190786,-0.0077699968,-0.007856571,-0.020921998,-0.020056259,0.050472517,0.018310355,0.022148458,0.04801959,-0.050472517,-0.0017666463,0.014039381,0.0012625343,0.042594302,-0.013317933,-0.08969044,-0.021730019,0.019825395,-0.0059411256,-0.0054036467,0.044700928,-0.0033150543,-0.048914187,-0.017329186,0.05849502,0.058264155,0.03910249,0.020979714,-0.0064136744,-0.0005216972,-0.04827931,0.023302777,-0.02911765,-0.01461654,-0.00808022,-0.0015664444,0.0054180757,0.026217427,-0.04051653,-0.000651107,0.0200274,0.020647846,0.024038654,0.006323493,0.086342916,0.033446338,-0.010323923,0.01963782,-0.04092054,-0.031484,0.022797763,-0.014905119,-0.03298461,-0.008130721,0.017430188,0.03939107,0.033879206,-0.0019316775,0.028425058,-0.0062224907,-0.014876261,-0.05191541,-0.09990615,0.041728564,-0.025539266,-0.0013887878,0.062968,-0.027501605,0.008065791,-0.033706058,0.02657815,0.018295925,0.041439984,-0.027487176,0.009710693,0.007156766,-0.005284608,-0.04848132,0.029449515,0.0070737996,0.008267797,0.021470297,0.009068604,0.014010523,-0.013996094,0.043056026,-0.01725704,0.0034377007,0.018699937,0.020994142,-0.019839825,-0.0040797894,0.010634147,0.002148112,0.024601383,-0.07214482,0.023764502,0.023836648,-0.0064028525,-0.0022346857,-0.051136248,-0.018425787,-0.0040365024,0.028497202,0.057427276,0.041382268,-0.026347287,-0.0053964322,-0.014356819,0.008210081,-0.022307178,-0.0047218786,-0.007131515,-0.020950856,0.010374425,0.0017161448,0.016723169,-0.0013581262,0.016853029,0.035408676,-0.015511136,0.026650297,-0.019392528,-0.0012913923,-0.033734918,-0.034081213,-0.011355595,-0.03748645,-0.012755204,0.028078763,0.022797763,0.11335394,-0.025683556,-0.016463447,-0.0060565574,0.03136857,-0.032638315,-0.03162829,0.014097097,-0.014933977,0.03592812,0.0066589667,-0.02004183,-0.005454148,-0.008440943,-0.005612867,0.022898765,0.008130721,0.0018306747,-0.019623391,-0.032176588,-0.017805342,-0.012899494,-0.0057824072,-0.05027051,0.024298375,0.00906139,-0.031195419,0.011911109,-0.022105172,0.026650297,-0.005627296,-0.015236986,0.034571797,0.045595527,0.012863421,-0.007351557,-0.035177812,0.016492305,0.024168514,0.031397425,-0.021831023,-0.011182447,-0.035697255,0.007993646,0.046114966,0.027241884,-0.015410133,-0.002395208,0.0047435216,0.010489857,0.008787239,0.014991693,0.03286918,-0.036736142,0.08109078,0.046201542,0.008541946,-0.045595527,-0.0034575404,-0.025697984,0.03939107,0.080859914,0.028511632,0.006233312,-0.029218651,-0.04161313,-0.008830526,-0.03520667,0.054483768,-0.018728795,0.042594302,-0.024269518,0.022927623,-0.06418003,0.025827846,-0.024399377,-0.017430188,-0.04037224,-0.009652977,0.011997683,-0.00055190787,0.022509184,-0.015107125,-0.019017374,-0.03385035,0.0431426,-0.04954906,0.020287123,-0.026058707,-0.0131375715,0.0059663765,-0.019147234,-0.02323063,0.014832974,-0.020936426,0.000013534199,-0.010713506,-0.03006996,0.007290234,-0.0155832805,-0.004112255,-0.015280273,-0.010922725,-0.0347738,-0.009263394,-0.011442169,0.02338935,-0.018454645,0.04025681,0.0030715656,-0.025784558,0.01864222,0.015049409,0.003136496,0.034167785,-0.03800589,0.023331635,0.015915146,0.028843498,-0.016550021,-0.0015745607,-0.028713638,-0.04219029,0.026015421,0.009847768,-0.011153589,0.024211802,-0.016131582,0.004938313,-0.008498659,-0.014861832,0.028742496,0.008664593,-0.015669854,-0.018036205,0.022321606,0.003407039,-0.011146374,0.031253137,-0.0025773735,-0.026607009,-0.027920045,0.009299467,0.06458404,-0.006882616,-0.010684648,-0.003188801,0.04522037,-0.023014197,0.0356684,0.0060132705,-0.018974086,0.012971639,0.06423774,0.041670848,-0.0056381174,0.0083904425,-0.037399873,0.008520303,-0.038496476,-0.026765728,-0.020763278,0.019695535,0.039852798,-0.03506238,0.011593672,-0.007813284,0.020994142,-0.013455008,0.0077916402,0.014905119,0.009487043,-0.004328689,-0.017069465,-0.023490353,0.013418936,0.026982162,0.006377602,-0.024139656,0.011774034,0.01225019,-0.0023934043,0.029463943,0.031484,-0.014277459,0.002043502,-0.015525565,-0.0021318793,-0.039477643,-0.01204097,-0.024255088,-0.028064335,0.037255585,0.027386174,0.00048833026,-0.02227832,-0.018166065,0.01864222,0.018555647,0.004371976,0.034744944,0.014443393,0.008534732,-0.01965225,0.0071784095,0.006089023,-0.05835073,-0.04943363,-0.03413893,-0.009919913,0.008015289,-0.0077050664,0.008210081,0.002828077,0.001078565,-0.011889466,0.07087507,-0.007337128,-0.0008152364,-0.040747393,0.018281497,0.0008706978,0.0051114606,-0.021225005,-0.039708506,-0.012740775,0.017314756,-0.015843002,-0.021758877,-0.0035314888,0.0099776285,-0.0724334,-0.019262666,0.03439865,-0.010706291,-0.002956134,-0.021773307,0.0040942184,-0.007531919,0.042565443,0.0056958334,0.02881464,-0.025539266,0.00822451,-0.03382149,0.00009322463,0.067296684,-0.0021823808,-0.03341748,0.028006619,0.0320323,-0.018151635,-0.013909521,-0.010460999,-0.04146884,-0.0034701657,0.033100042,0.011088658,-0.033648342,-0.033388622,-0.009393255,0.0019731608,0.018007347,-0.024269518,0.02963709,-0.007712281,-0.013007711,0.018194923,0.024182944,-0.02686673,-0.016174868,0.0018793725,0.0044946223,0.023980938,-0.009602475,-0.047269285,-0.009566403,0.019608961,-0.009811696,-0.007842142,-0.019897541,-0.024269518,-0.00034268788,0.0378616,0.02672244,-0.038236752,-0.024716815,0.0069655823,-0.026347287,0.025697984,-0.015410133,0.0073623788,-0.020416984,-0.03699586,0.015337989,0.021297151,0.023418209,0.023201773,0.022336036,0.008924314,-0.026318429,0.03757302,-0.023302777,0.026390575,0.010937154,-0.018050633,-0.019378098,0.011644173,-0.017632194,0.020719992,0.035264388,0.01426303,0.028049905,0.019695535,-0.033302046,-0.016881887,0.04761558,0.014226958,0.024255088,0.019291524,-0.04025681,0.024053082,-0.011651388,0.015193699,-0.04940477,0.044787504,-0.004833703,0.012719131,-0.0017179485,-0.013043783,0.035120096,-0.04178628,0.015770858,0.021210577,-0.011774034,0.044210345,0.0025394976,0.02089314,0.023605784,-0.011067015,-0.01712718,0.00420965,-0.010533144,-0.030185392,0.013411722,-0.029420657,-0.002793808,-0.004646126,-0.00075120793,-0.00092210097,0.034975808,-0.012596485,-0.005436112,-0.057860143,0.011997683,0.0020795744,0.014299103,0.022927623,0.022148458,-0.014501109,-0.012683059,0.0016683489,0.056474965,-0.027876757,-0.01142774,-0.014284674,-0.005324288,0.0038381044,-0.025221828,0.00063712895,-0.031426284,0.005901446,-0.009544759,-0.1135848,-0.008808882,0.0014573253,-0.006842936,0.03021425,0.03260946,0.017314756,-0.003331287,0.00030143006,-0.01950796,0.018324783,-0.033475194,0.027472747,-0.0072505544,0.046432406,-0.010598074,-0.0173869,0.014154813,-0.0027018234,0.02868478,-0.035120096,-0.030935697,-0.015713142,-0.013628156,-0.04608611,0.00494192,-0.0139816655,-0.008873813,0.0325806,0.016506735,-0.00079224026,-0.006348744,-0.018411357,-0.030531688,-0.014645398,-0.012870636,-0.01643459,0.0018613363,-0.0010776633,0.01517927,0.012444981,-0.003982394,-0.026419433,0.040314525,0.018137207,0.0257557,-0.036562994,0.00967462,0.031426284,-0.00020155459,-0.023706786,0.029867955,0.026809014,0.02185988,-0.010114703,0.0083615845,-0.032378595,0.018974086,-0.012776847,-0.037832744,0.012531555,0.0028208625,-0.0015240593,-0.016723169,0.015251415,-0.0400548,-0.0020958069,-0.0053026443,-0.028987788,-0.038179036,0.042132575,-0.017358044,-0.0012850795,-0.0077050664,-0.014097097,-0.009710693,-0.003051726,-0.028309627,-0.022307178,0.01572757,0.005962769,-0.0001810384,0.030473972,-0.004530695,0.014349604,0.009371612,-0.017646622,-0.013909521,-0.0005280099,-0.023620214,0.022783333,0.018728795,-0.016766455,0.03728444,0.02490439,-0.014111526,0.010107489,0.00862852,-0.0046244827,-0.02379336,-0.008953172,0.0027144488,-0.013281861,-0.033186615,-0.038669623,-0.010078631,-0.01614601,0.009652977,0.0115720285,-0.0356684,0.006741933,0.028728066,-0.0063703875,-0.0014735579,-0.021354865,-0.017358044,-0.0038849984,0.0272996,-0.0020471092,0.013613727,-0.018829798,0.011074229,-0.032090016,0.0050970316,0.0035675613,0.01796406,0.02145587,0.02450038,-0.029348511,0.018411357,-0.011673031,0.024168514,-0.0021986132,-0.020532414,-0.023028625,-0.057889003,0.022047456,-0.020200549,-0.0034034317,-0.006139524,0.008339941,0.009335539,0.028843498,-0.0068321144,0.019161664,-0.013613727,0.011341166,0.0057751928,0.00008747559,0.008296654,-0.022610186,-0.01572757,-0.025438262,0.02657815,-0.010706291,0.016174868,0.011254592,0.0037046364,-0.036389846,0.052925438,0.023908792,0.0070016547,0.02757375,-0.0054325047,-0.05485892,0.00032961165,-0.007402058,-0.017588906,-0.024875533,0.03240745,0.014421749,-0.03382149,0.0066120727,-0.03549525,-0.016203726,0.036938146,-0.004923884,-0.013801304,-0.030935697,0.046403546,0.019479102,0.0030733692,-0.032234304,-0.0007814186,0.06446861,0.023562498,0.050443657,-0.022639044,0.029132077,0.024125228,0.014508323,0.04080511,0.04943363,-0.021326007,0.032638315,-0.043546613,-0.0037082436,0.045451235,-0.02200417,0.005555151,0.036851574,-0.02284105,0.015742,-0.005645332,-0.0031491213,-0.010042558,0.0053170733,-0.0018956051,-0.015222557,0.068451,-0.029507231,0.0042024357,-0.0045956247,-0.025279544,0.015251415,-0.020301552,-0.04724043,-0.03050283,0.03353291,-0.0025629448,0.0068934374,-0.008058576,0.019464672,0.0058617666,0.018916372,0.026202997,-0.03050283,0.017040607,-0.003450326,0.019522388,0.0013337773,-0.003939107,0.00808022,0.006233312,-0.023158487,0.007589635,-0.007246947,0.0035910083,-0.02144144,0.004775987,0.00276495,0.057802428,0.021412581,-0.004126684,0.0012616325,-0.0037226726,0.021210577,0.016795313,-0.0030769764,-0.03748645,0.0010623324,-0.014378462,0.004537909,-0.026635867,0.018353641,-0.013729159,-0.023418209,0.010749578,0.016651023,0.0049310983,0.0016999122,-0.004617268,-0.0009811695,0.0051475326,-0.012055399,0.00037222216,0.00981891,-0.0026260715,0.0013951004,0.010828937,0.007416487,0.0057102623,-0.010576431,0.029839097,-0.009652977,-0.0012697488,0.0013662425,-0.014248601,-0.01440732,0.013310719,-0.026000993,-0.050155077,0.041526556,0.03699586,-0.038265612,0.0061828108,-0.0075679915,0.011391667,0.044470064,0.01753119,0.014717543,0.014493894,0.012582056,-0.025164112,0.021066288,-0.02797776,0.0030932091,-0.028742496,0.039044775,0.0083976565,0.0047327,-0.0037371016,-0.04340232,-0.009898269,0.003264553,-0.0052016415,-0.029305225,-0.001463638,-0.009075818,0.005526293,0.0356684,0.009083033,0.008455372,0.0011885859,0.027083164,0.019190522,-0.02031598,-0.014652613,0.011391667,-0.0030192607,0.029276367,-0.029550517,0.0060998444,-0.0019136413,-0.009342754,0.008448158,0.003996823,-0.020070689,0.021109574,-0.02548155,0.02409637,-0.0036974219,0.038900487,-0.015121554,0.0019695535,-0.0019695535,-0.011802892,0.024745673,0.0115503855,-0.011817321,-0.026029851,-0.006381209,-0.008311083,-0.025524836,-0.024601383,0.00835437,0.0083760135,0.00093968626,0.023894364,-0.030675977,0.0982901,0.0012300692,0.0011633352,0.009732336,0.017718768,0.023620214,0.011290664,-0.013079856,0.03967965,0.031657144,-0.029579375,0.005930304,0.019334812,-0.009645762,-0.02532283,0.005107853,-0.03136857,0.015366847,0.029059933,0.015972862,0.0029777773,0.010201277,0.04034338,-0.007546348,-0.023894364,-0.03480266,0.019839825,0.011384453,0.023894364,-0.01295721,-0.0062369197,0.021629017,0.024154086,-0.0060421284,-0.02255247,0.0037226726,0.029132077,0.015972862,0.052550286,0.008029718,-0.019796537,-0.03272489,0.0023014196,-0.0026693582,-0.023158487,0.0010875831,-0.0020164477,0.0029146506,0.0015276666,-0.0038994274,-0.035148956,-0.02506311,-0.0147752585,-0.011925538,0.00052259903,-0.017473474,0.0059988415,0.02073442,-0.0038849984,-0.0030877981,0.012993282,-0.030012244,-0.011052586,-0.016362445,0.006814078,0.00023176523,0.020575702,0.013671443,0.019262666,0.06452633,0.019594533,-0.007712281,-0.014933977,0.010194063,-0.018281497,-0.011160803,0.017213754,0.015107125,-0.011716318,0.0356684,0.00793593,-0.04233458,0.01371473,-0.016550021,-0.03716901,0.0091912495,0.010331138,0.00015939496,-0.009761194,0.009761194,0.009010888,0.037948173,0.0034034317,-0.0060385214,-0.012834563,-0.01189668,0.009559188,-0.006392031,0.007261376,-0.010648576,-0.0075968495,-0.0076401364,0.014948406,0.014306317,-0.012704702,-0.011810107,0.0131231425,-0.0055804015,-0.0005054646,0.009083033,0.009703478,-0.0071784095,-0.006089023,-0.024312804,0.029002218,0.010828937,0.027790183,-0.019277096,0.03006996,0.014291888,0.028554918,0.02298534,0.04911619,-0.003188801,-0.02992567,0.009869411,-0.017790912,-0.008325512,0.009725122,0.015381276,-0.034658372,-0.012856207,-0.00028316843,-0.014075454,0.0089171,0.0031238706,0.02826634,-0.010966012,-0.029579375,0.057398416,-0.021960882,0.009898269,0.01587186,0.00134009,0.017228182,0.01851236,-0.024053082,0.0068068635,-0.042652015,0.005749942,-0.013909521,0.027819041,-0.007647351,-0.054656915,0.0033366978,-0.026390575,0.013750803,0.035120096,0.026145281,-0.008029718,0.0019930005,-0.0026441077,-0.029810239,0.015410133,-0.012762418,0.018598935,0.013873449,-0.0019785715,-0.0018919979,0.01023735,0.030473972,-0.010843366,-0.0031996227,-0.028655922,-0.04066082,-0.030041102,0.0033348943,0.02409637,-0.03509124,-0.028915644,-0.0056814044,-0.015208128,0.020431412,0.014089883,0.029810239,-0.038958203,0.010879438,-0.0067599695,0.039621934,-0.020157263,0.021484727,-0.023908792,-0.028381772,-0.036793858,0.004833703,0.017560048,0.0041880067,-0.0005280099,0.035437535,-0.0091407485,-0.013195287,-0.019695535,0.011752391,-0.0040761824,0.002647715,0.030531688,0.014566039,0.040574245,-0.029694807,-0.02438495,-0.010533144,0.019262666,0.005241321,0.009241751,0.0123295495,0.022076314,-0.01128345,0.022076314,-0.02868478,0.02033041,0.009523116,0.0003774076,0.013556011,-0.0567924,0.0015664444,-0.020445842,-0.0001059627,-0.014652613,0.009487043,0.000936079,-0.00085897424,-0.0049635633,-0.011629744,-0.0054288977,0.012286263,-0.014104312,-0.014919548,0.008924314,0.00856359,0.0014347801,0.00835437,-0.03494695,-0.028569348,0.0054721846,-0.033100042,0.050991956,-0.015366847,-0.013664229,0.0075102756,0.0030300824,-0.0018523182,0.022942051,0.044700928,0.002642304,-0.0022960089,-0.05165569,-0.0147391865,0.0044080485,-0.0021968097,-0.013260217,0.0044405134,0.021282721,-0.0115359565,-0.020936426,0.016174868,0.012726346,-0.03385035,0.021816593,-0.0008256073,-0.023980938,-0.041670848,-0.011406096,-0.010828937,-0.015843002,-0.038179036,0.0060240924,-0.018916372,-0.0061467383,-0.02240818,-0.0058761956,-0.027169738,0.0051006386,0.038467616,0.027083164,-0.0006263072,0.0162903,-0.018209351,-0.015006122,0.016925175,-0.031772576,-0.017170466,-0.002936294,-0.03728444,-0.026087565,0.024442665,0.027198596,0.0018279693,-0.016218156,0.016679881,0.019132806,-0.0036342952,0.00016367856,-0.005858159,-0.014623755,-0.00093156996,0.028223053,0.010273422,0.026116423,0.010699077,0.008606877,0.012004898,0.0066120727,-0.037803885,-0.0060421284,0.0020128405,0.028021047,-0.0061828108,0.03506238,-0.0045920177,0.033388622,-0.01963782,-0.010273422,0.0002226344,-0.036360987,0.007416487,0.041295692,0.014919548,0.007712281,0.017891916,0.016881887,-0.029002218,0.009876626,-0.019984115,-0.0141981,0.01379409,0.04080511,-0.011983254,-0.022869907,0.02213403,-0.033128902,-0.048510175,0.013866234,-0.025798988,-0.02923308,-0.0015078267,0.0035134526,0.008606877,-0.019825395,0.069836184,-0.010374425,0.021412581,0.010626932,-0.041151404,-0.014320746,0.0027505213,-0.011131945,0.05133825,-0.039333355,-0.001985786,-0.036649566,-0.029579375,-0.008715094,-0.005868981,0.025986563,-0.011658602,0.033792634,0.016420161,-0.025697984,0.04109369,0.014024952,-0.022292748,-0.023216203,-0.02353364,-0.0023356886,-0.008556375,0.021297151,-0.0025431048,-0.005183605,0.006392031,-0.019709965,-0.036389846,0.027559321,-0.009652977,0.004491015,-0.02089314,0.008339941,-0.023706786,-0.028093193,0.01991197]},{"id":"enum-GuildVerificationLevel","type":"enum","source":"main","text":"Enum: GuildVerificationLevel\nMembers: None=0, Low=1, Medium=2, High=3, VeryHigh=4","meta":{"url":"/docs/typedefs/GuildVerificationLevel"},"embedding":[-0.031440105,0.03460075,0.04666111,0.011228609,0.008137275,0.01151279,-0.0360979,-0.013072318,0.033852175,0.02448114,0.05472907,-0.024231615,-0.016676564,0.05436865,0.059885915,-0.0015716586,-0.0059331413,0.029222108,-0.0005661957,0.064155556,-0.015262591,0.0339908,0.049100906,0.026366437,-0.04197559,0.029721158,0.013377293,0.005447955,0.021140283,-0.025922839,0.050653502,-0.04006257,0.039702144,0.008296695,-0.06393376,-0.011734589,0.0009963658,0.029832058,0.01670429,-0.033464026,0.031855978,0.013072318,-0.032909527,-0.027378399,0.018742073,-0.013037663,-0.0028608693,-0.014943753,-0.04086659,-0.0010769414,-0.047991905,0.02247108,0.025354477,0.06737165,-0.023413729,0.0027967554,-0.0077837827,-0.018645035,-0.011547446,-0.0004669923,-0.015567565,-0.029499358,0.028639885,0.012032633,0.027794272,-0.023704842,-0.051457524,0.005316261,0.07280575,0.03806637,-0.01614979,-0.01447243,0.027988348,0.00063247565,-0.008421456,0.041171566,-0.025576275,-0.024855427,0.0039092195,-0.013945655,-0.01928271,0.02208293,-0.04555211,-0.02274833,0.046078883,-0.005770257,-0.025964426,-0.0029787004,-0.008137275,-0.022263143,-0.03981304,-0.03257683,-0.03873177,0.010791941,0.004661259,-0.0738593,0.027711097,-0.014929891,-0.045025334,0.051734775,0.047603756,0.035293873,-0.015775502,-0.040478442,0.026726862,0.03773367,-0.04582936,0.024411827,-0.029055757,-0.00010034053,-0.080014236,0.02621395,-0.020558057,0.025465377,0.017577624,0.002353156,-0.041227017,-0.014333804,0.011790039,-0.012060357,-0.030497456,-0.028556708,0.063268356,-0.052289274,0.0033148655,0.015262591,0.0017267452,-0.007624364,0.008892781,0.019157948,0.02084917,-0.04627296,0.04896228,0.0056281667,-0.03141238,0.019462923,-0.023912778,-0.04671656,-0.036624674,-0.029832058,-0.01895001,0.021389807,0.0061410787,0.045801636,-0.03712372,0.03168963,-0.044027235,0.024009816,-0.017397413,0.024924738,-0.043888614,0.008289763,-0.009752255,0.007762989,0.003382445,-0.042945962,0.015747778,0.012739619,-0.022997854,0.015553703,0.0134604685,-0.032382753,0.034073975,-0.020031285,-0.01659339,-0.009738392,0.01749445,0.0167736,-0.052344725,0.034878,0.0046716556,0.029222108,0.004487978,-0.064488254,-0.00074684113,-0.00071738334,-0.03091333,-0.0028556709,-0.04333411,-0.053647798,0.028085385,0.0030237534,0.00020999492,-0.03146783,-0.021084832,0.051623877,-0.0024363308,-0.015331903,-0.017369688,0.007790714,-0.008802675,0.037400972,0.0036735572,0.046744283,0.0509862,-0.040478442,0.029138934,0.016232964,-0.0076659513,-0.047326505,-0.006359413,-0.03168963,0.05370325,-0.037179172,0.03751187,-0.0057494636,0.039424893,-0.044498563,-0.014458567,0.024384102,0.015498253,0.0023912778,-0.024217753,0.04416586,-0.064765505,0.053564623,-0.05744612,-0.021916581,0.038482245,0.0061064223,-0.021209594,0.026421888,0.012503957,0.020710545,-0.013848618,0.003985463,0.011831626,-0.015415078,0.034517575,-0.0027343743,-0.011894008,0.0054514203,-0.010736491,-0.039951667,-0.041836966,0.033769,0.039424893,0.06271386,0.010791941,-0.033574928,-0.030996505,-0.009717599,-0.0046092747,0.029610258,-0.038094096,-0.0068549966,0.005565786,0.007887751,-0.002971769,-0.009676011,0.013987242,0.050653502,-0.033879902,-0.051568426,-0.03152328,0.004935043,-0.030053858,0.039119918,-0.002973502,-0.017064713,0.0006086495,-0.010909772,-0.033796728,-0.030608356,-0.019643134,0.048823655,-0.0066643874,-0.018575724,-0.0524279,-0.0058603636,-0.043916337,-0.009703736,0.034018528,-0.02811311,0.026574375,-0.006539625,0.038315896,0.015623015,0.018298473,0.005205361,-0.013072318,0.019144084,0.053730972,0.0680925,-0.007194627,0.02011446,0.02475839,-0.023483042,0.032909527,0.0049385084,0.020100595,-0.022609705,0.036181074,0.0022387905,-0.016870638,-0.007735264,-0.0019078238,-0.021958169,0.051457524,0.0041656755,0.019670859,0.021722507,-0.04455401,0.016856777,-0.025590139,0.038094096,0.040977493,-0.0074164267,-0.09476391,-0.038981292,0.027156599,0.027808135,-0.026033737,0.024938602,-0.024772251,-0.037206896,0.004907318,0.040561616,0.034295775,0.029804332,0.042945962,-0.0135159185,0.015040791,-0.0115335835,0.0062519787,-0.033464026,-0.018256886,-0.01005723,0.025021777,0.013148562,0.015567565,-0.02236018,0.008747225,0.0032368891,0.0013082715,0.02816856,-0.008525426,0.11145434,0.014035761,0.012871313,0.01950451,-0.03692965,0.009980986,0.01352978,0.006976293,-0.026061462,-0.016468626,0.0069901557,0.053398274,0.025063364,0.009384899,-0.0017510045,-0.0046473965,0.002344492,-0.055255845,-0.067759804,0.05428547,0.006941637,0.017425137,0.06227026,-0.015525978,0.0004539962,0.011006809,-0.00029999274,0.014846716,0.02241563,-0.01928271,-0.018686622,0.00776992,-0.014021899,-0.05018218,0.0118732145,0.009828499,0.0067059747,-0.0022578514,0.01760535,0.01637159,0.019546097,0.011089984,-0.012095014,0.0041795378,0.018714348,0.039313994,-0.023413729,0.01834006,0.014458567,-0.017050851,0.009364106,-0.058333315,-0.029471632,0.009142306,-0.023219654,-0.015387353,-0.039785318,0.00928093,0.0036943508,0.019656997,0.07047685,0.03235503,-0.03839907,-0.009059131,-0.025299026,0.0045260997,-0.022512667,-0.020391708,-0.015276453,-0.032244127,0.0010457508,0.045940258,0.0349889,0.005572717,0.030746982,0.022720605,-0.039203092,0.011942526,-0.01845096,0.011450409,-0.0074302894,0.017036987,0.0019771361,-0.054867696,0.012039564,0.020377846,-0.013654543,0.10125156,-0.03648605,-0.023552354,-0.02588125,0.02588125,-0.036735572,-0.04851868,0.035682023,0.030719256,0.0045191683,-0.011145434,-0.007735264,0.0253822,-0.037373245,0.010480035,0.028376497,-0.03113513,0.006775287,-0.054063674,-0.05544992,0.018825248,-0.013848618,-0.0031866375,-0.08239858,0.058166966,0.012497026,-0.01648249,0.025396064,-0.019948108,0.03648605,-0.040173467,-0.037622772,0.041448817,0.060773112,-0.029499358,-0.0041344846,-0.017508313,0.027239773,0.012323745,0.07058775,-0.014721954,0.0049003866,-0.05561627,0.010584003,0.02459204,0.017910324,-0.035155248,-0.011048397,0.04208649,0.017064713,0.04158744,0.021902718,0.020169908,-0.026283262,0.06498731,0.040118016,0.005742532,-0.017036987,-0.02811311,-0.0021573484,0.07907159,0.05434092,0.004786021,0.016732013,-0.047132432,-0.028057659,-0.030331107,-0.03279863,0.052122924,-0.017286513,0.04643931,-0.0044567874,0.019740172,-0.073914744,0.01637159,-0.0067198374,0.018811386,-0.07502374,0.0026044135,0.0016340398,0.01950451,0.01867276,-0.0038225788,-0.0036285042,-0.015151691,0.039341718,-0.048019633,0.005780654,0.0053959703,-0.02816856,-0.008345213,-0.033103604,0.009024475,0.014458567,-0.031384654,-0.0046716556,-0.016981538,-0.02705956,0.025839662,-0.004422131,0.013411949,-0.0070629334,-0.015373491,-0.02453659,-0.011166228,0.001135857,0.0050944616,-0.030497456,0.071641296,-0.007021346,-0.03096878,0.0013914465,0.013703061,0.013813961,0.053231925,-0.03340858,0.01627455,0.014375391,0.0077837827,-0.01425063,0.006227719,-0.013287188,-0.03895357,0.020266946,0.010258235,-0.005992057,-0.007104521,-0.047797833,0.016939951,-0.009135375,-0.019601546,0.010140404,-0.010147335,0.010445379,-0.0063143596,0.026491199,0.027586335,-0.04394406,0.026227813,-0.007236215,-0.035820648,-0.0070525366,-0.0055138012,0.06426646,0.0059504695,0.018090537,-0.004935043,0.03629197,-0.030552907,0.036763296,0.027905172,-0.0105146915,0.042114213,0.03415715,0.03845452,0.014694229,0.0031242564,-0.022706741,0.028265597,-0.03091333,-0.025229713,-0.029776607,0.023233516,0.024744527,-0.017854875,0.009849292,-0.0011965053,0.024730664,-0.015026929,-0.00036194068,0.013432743,0.012205914,-0.011783108,-0.033630375,-0.029166657,0.028348772,0.016745877,0.03315905,-0.0046300683,0.020072872,0.0011592499,0.013432743,0.033075877,0.018381648,-0.0028140834,0.0003634569,-0.01749445,0.021265045,-0.024730664,-0.0063178255,-0.027045699,-0.011866283,0.018423237,0.01782715,0.008802675,-0.015623015,-0.038094096,0.021472981,0.0029509754,0.023275103,0.058832366,0.029305283,-0.014638779,-0.01878366,-0.009433418,0.001277081,-0.047021534,-0.048407782,-0.0037636633,-0.014042692,0.016967675,-0.020876896,0.017993499,0.0027776945,0.015692327,-0.013321843,0.03845452,0.007984788,0.0063940687,-0.05115255,0.014035761,-0.002434598,-0.014486291,-0.04685518,-0.037650496,-0.030663805,0.023552354,-0.024689076,-0.012718826,0.00032663468,-0.014957616,-0.042613264,-0.04649476,0.02632485,-0.018187573,-0.01637159,-0.024411827,-0.018478686,0.011741521,0.014777403,-0.0037601977,0.018991597,-0.032465927,-0.00542023,-0.024203891,0.009066062,0.033907626,0.027253635,-0.03692965,-0.0035366653,-0.0130238,-0.014611054,-0.010410722,-0.025770351,-0.030247932,0.011485064,0.0168845,0.009655218,-0.01626069,-0.03648605,-0.022221556,0.015248728,0.03984077,-0.014541741,0.029138934,0.00024865824,0.00079189416,0.017452862,-0.00018302805,-0.014278354,-0.01793805,-0.005853432,0.0111385025,0.011242472,0.012767344,-0.045967985,-0.0054756794,0.0072431457,-0.027683374,-0.030857882,-0.01425063,-0.007679814,-0.0064079314,0.022013618,0.029111208,-0.021084832,0.0019130222,0.03900902,-0.03382445,0.015941853,-0.0024519262,0.036153346,-0.048158254,-0.043167762,0.023580078,0.010348341,0.008871987,0.020086734,0.010147335,-0.0070802616,-0.03382445,0.03318678,-0.008130345,0.010791941,-0.04885138,-0.010882047,-0.04912863,0.02442569,-0.0072916644,0.013800099,0.025742626,0.017092438,0.0041656755,0.01961541,-0.013127768,-0.0074164267,0.011381096,0.027350673,0.029194383,0.011263265,-0.024924738,-0.00472364,-0.025506964,0.0074580144,-0.041393366,0.02280378,0.0110830525,0.011748452,-0.033685826,-0.019019322,0.019559959,-0.04577391,0.028889408,0.0121573955,-0.014236767,0.048934557,0.015955715,0.004006257,0.023330554,-0.004744434,0.0061133537,0.016122064,-0.03080243,-0.011055328,0.006740631,-0.0072639394,-0.0041760723,0.0058846227,-0.011887076,0.015789365,0.045940258,-0.019157948,-0.012718826,-0.03900902,0.015373491,-0.002016991,-0.0021660125,0.00018205335,0.024619764,-0.012663376,-0.03058063,0.0039092195,0.043472737,-0.017563762,-0.00066973106,-0.018090537,-0.015858676,0.023995953,-0.013876342,0.018728212,-0.020502608,0.011200884,-0.031606454,-0.087389074,0.019338159,0.010632522,-0.021362081,0.01072956,0.04724333,0.024716802,0.0024484606,-0.020752132,-0.032382753,0.02208293,-0.048213705,0.011803902,-0.007035209,0.043805435,-0.0171063,-0.02107097,0.033658102,-0.0020048611,0.016080476,-0.024938602,-0.023843465,-0.019144084,-0.0037463352,-0.020377846,0.01972631,-0.0145971915,-0.028584434,0.042446915,-0.01050776,-0.006550022,0.015248728,-0.00024281,-0.004952371,-0.005985126,-0.028778508,-0.006803012,0.010999878,0.007950133,-0.014063486,0.017799424,0.0057633263,-0.0068827216,0.020571921,0.016011164,-0.0008772351,-0.01834006,0.007222352,0.020765996,0.009669079,-0.010389929,0.049433604,0.015415078,0.00804717,0.019698584,0.03107968,-0.029000308,-0.021112558,-0.045358036,-0.04131019,0.023399867,-0.0053613144,0.024453415,0.0008897979,0.0043250937,-0.026366437,-0.02872306,0.026518924,-0.009849292,-0.022249281,0.009384899,-0.0071183834,0.0044845124,-0.018284611,-0.003347789,0.003347789,-0.008199657,-0.021542294,-0.009433418,0.028917134,-0.012136601,0.016607251,0.03102423,-0.00289206,0.008962093,-0.011485064,-0.0040166536,-0.018201437,-0.0013853816,-0.011672208,0.010965222,0.02481384,0.008414526,0.014541741,0.0027395727,-0.011436546,0.025174264,-0.037040547,0.0011375898,-0.009537387,-0.0037567322,0.025590139,0.0003957305,-0.025340613,-0.037650496,-0.017134026,0.0035141387,-0.0017484053,0.01827075,-0.023399867,0.012815863,0.02744771,0.025687175,-0.012455438,-0.03570975,-0.0012034365,0.00028656345,0.04544121,0.026310988,-0.0006294432,-0.018423237,0.011110778,-0.010660247,-0.017286513,-0.009121512,0.037428696,0.005690548,0.017771699,-0.03058063,0.037539598,-0.026505062,0.011325646,-0.010147335,-0.01218512,-0.010958291,-0.043472737,0.005635098,-0.029554807,-0.025562413,-0.016926087,0.008712568,0.024273202,0.019033184,0.026685273,0.0026650617,0.0025299026,0.017314238,-0.035460223,0.018076673,0.0058984854,-0.033214502,-0.012164326,-0.041227017,0.012053426,-0.0037705945,0.02376029,0.010473103,0.018173711,-0.037428696,0.041393366,0.044637185,0.016343864,-0.0012502224,-0.004425597,-0.053204197,-0.012996075,0.0014061753,-0.028889408,-0.015941853,0.027004112,0.0048761275,-0.05367552,0.027627923,-0.020100595,-0.00536478,0.01609434,0.0006047507,0.0024397965,-0.017355826,0.030525181,0.026962524,0.010445379,-0.02236018,-0.01928271,0.060052264,0.033242226,0.029970681,-0.030109307,0.046189785,0.01990652,0.013058457,0.038038645,0.022679018,-0.011450409,0.011069191,-0.06204846,-0.017369688,0.024231615,-0.014943753,0.027572474,0.012919831,-0.022734467,0.008712568,0.022152243,0.006082163,-0.028778508,0.0051395143,0.010715697,-0.006612403,0.037705947,-0.023330554,0.020876896,0.016440902,-0.015290315,0.003683954,-0.013612956,-0.009273999,-0.03460075,0.021278907,0.0147080915,0.045690734,0.0012294287,0.0019875332,0.0003654063,0.0019199535,0.03873177,-0.03235503,0.015221003,-0.02761406,0.014077349,-0.012004908,0.020558057,-0.00061601395,-0.00676489,-0.03046973,-0.016718151,-0.007007484,-0.0012727489,-0.026699137,0.0025316353,0.028473534,0.034794826,-0.015345765,0.025506964,-0.008123414,0.01167914,0.019157948,-0.0016054484,-0.0039889286,-0.021847269,-0.014209042,-0.011256333,-0.003476017,-0.015664602,0.0114226835,-0.021625469,-0.012767344,-0.005243483,0.0040443786,0.009315587,0.00034981102,0.01867276,-0.0013966449,0.0061930628,0.004061707,-0.0019684723,0.007021346,0.03141238,-0.005028615,0.022110656,-0.021764094,0.006941637,0.040755693,0.022124518,-0.0072292835,-0.016953813,-0.0006714639,-0.0045468933,0.0017293444,-0.00047175752,-0.04752058,-0.057945166,0.027295223,0.030192481,-0.007104521,-0.0049835616,-0.0126911,-0.0023046373,0.031661905,0.013155494,0.0034898794,0.004155278,0.010999878,-0.024508866,0.013772374,-0.01782715,-0.005482611,-0.007166902,0.029499358,0.024994051,0.002964838,0.00027898242,-0.033852175,-0.017064713,0.01928271,0.008310556,-0.0065119,-0.00026750253,-0.01906091,0.021223458,0.052677423,0.018797522,0.01670429,0.02448114,0.013155494,0.021486845,-0.026227813,-0.01375158,-0.0060994914,-0.0059331413,-0.0071738334,-0.009183893,-0.009218549,0.008407594,-0.033491753,0.017258788,0.0066366624,-0.013356499,0.033491753,0.006373275,0.018506411,0.0010206251,0.04521941,0.0033599187,-0.013363431,-0.0063524814,-0.004844937,0.0074164267,0.013716924,-0.018132124,0.010078023,-0.0054860767,-0.008865056,-0.017147887,-0.009121512,0.005645495,0.023885053,0.003127722,0.009641355,-0.03917537,0.087666325,0.0123861255,-0.02313648,0.005136049,0.029748883,0.0011748452,0.01749445,0.0032403548,0.014008036,0.03107968,0.006383672,-0.00023133014,0.0041206223,0.019948108,-0.029277558,0.004761762,-0.019019322,-0.003604245,0.039757594,0.01162369,-0.0098354295,-0.005607373,0.033630375,0.014222904,-0.024827702,-0.028695334,0.027336812,0.008996749,0.049988102,-0.003020288,-0.02230473,0.030220207,0.031384654,0.0169954,-0.029554807,0.0015430673,0.026366437,0.009246274,0.059220515,0.017674662,0.0024571246,-0.042557813,0.0027499695,-0.0009365838,-0.024079127,-0.0010024306,-0.00081745314,-0.0017847943,-0.012843587,-0.013044594,-0.011582102,-0.016413176,-0.0055484576,-0.011062259,0.009371037,-0.021708643,0.0029128536,0.01889456,0.00014122401,0.00043796774,0.017452862,-0.013495124,-0.011949458,0.0025437651,0.004706312,0.006082163,0.0129129,0.00461274,0.005822242,0.040367544,0.043250937,0.00033161652,-0.0050494084,0.010909772,-0.01274655,-0.018700486,0.014021899,0.008560081,-0.036042448,0.026283262,0.011048397,-0.023164203,-0.013827824,-0.010909772,-0.061660312,0.032854076,0.034878,-0.01212967,0.010098817,0.0070248116,0.0019008926,0.0003435296,0.025215851,0.0033443233,0.004061707,-0.008601669,-0.008684844,0.0046369997,-0.00877495,0.007998651,-0.012011839,0.009294793,0.009662149,0.009544318,0.0014642244,-0.004477581,0.026033737,-0.02051647,0.0065292283,0.020863032,-0.0022387905,-0.012510888,-0.0049038525,-0.008449182,0.014236767,0.002205867,-0.0014261026,-0.030386556,0.042640988,-0.00078842853,0.024023678,0.013827824,0.013425812,-0.008969025,-0.014680366,-0.016357727,-0.013502056,0.0028314115,0.0033633842,0.0004353685,-0.013938724,-0.022374043,-0.0053405203,0.0060613696,0.014888303,0.013294118,0.017175613,-0.013467399,-0.006775287,0.026061462,-0.00405131,-0.022166105,0.013765443,-0.017951911,-0.010604797,0.008650187,-0.017452862,0.0030133566,-0.029055757,0.014874442,-0.0005098793,0.0097799795,-0.01005723,-0.035903823,0.0129129,-0.02839036,0.023386003,0.029610258,-0.0050598052,-0.0024519262,0.009211618,0.010188923,-0.029721158,0.01804895,0.008781881,0.01637159,-0.0058672945,-0.016676564,0.029388458,0.014132799,0.01867276,-0.0076035704,0.014403117,-0.009634424,-0.005499939,-0.03607017,-0.0017440732,0.0012138335,-0.05237245,-0.022651292,0.0052677426,-0.030081581,0.006958965,0.029887507,0.03448985,-0.02800221,-0.0140288295,-0.010084954,0.06781525,0.0042419187,0.030137032,-0.02236018,-0.02425934,-0.02179182,0.014278354,0.0147635415,0.00060301786,-0.01235147,0.03157873,0.002800221,-0.017993499,-0.035543397,-0.0018731676,-0.03712372,-0.010431516,0.017023126,0.014583329,0.015775502,0.0027222445,-0.018686622,0.0026806572,0.013411949,0.009488868,0.022124518,0.006376741,0.002427667,0.0040409127,-0.0072639394,-0.009031406,0.032854076,0.0353216,0.018769799,0.0066643874,-0.042391464,0.023690978,-0.025742626,0.013321843,-0.0011705132,-0.016537938,0.0055692513,-0.012989144,0.006026713,-0.010909772,-0.018062811,-0.016898364,0.00405131,-0.042640988,0.024384102,-0.005919279,-0.002143486,0.0100017795,-0.0038260445,0.001841977,0.009107649,-0.032660004,0.029138934,-0.010258235,-0.0023739496,0.015609153,0.01447243,-0.0025662917,0.052899223,0.00693124,-0.0034326967,-0.01430608,-0.04516396,-0.012192051,-0.0051707053,-0.011394959,-0.008615531,0.02403754,0.008435319,-0.010819666,-0.02509109,0.0524279,-0.012053426,-0.011769245,0.04067252,-0.013439675,-0.02599215,-0.040312093,-0.0011774444,-0.017882599,0.0061514755,-0.032909527,0.028126972,-0.011595964,-0.001933816,-0.01441698,0.00011122474,-0.021625469,0.009273999,0.014319942,0.036402874,-0.0051325834,0.050542604,-0.02331669,-0.022831505,0.029582532,-0.025908975,-0.016967675,-0.0052920016,-0.009980986,-0.01738355,0.027378399,0.016607251,0.0005432359,-0.04153199,0.011942526,0.019310435,0.0019043582,-0.0076659513,0.011713795,-0.0038607006,0.0035435965,0.003072272,0.011790039,0.0027811602,0.0014936823,-0.0016539672,-0.016011164,-0.008560081,-0.027849723,-0.024564315,-0.019462923,0.0029804332,0.019074773,0.04940588,0.0060683005,0.032715455,-0.02531289,-0.0043805437,-0.017674662,-0.024675215,0.005378642,0.030746982,-0.0055623204,0.0105701415,0.02861216,0.018645035,-0.026463475,-0.007004018,-0.0032230266,-0.05148525,0.027156599,0.05788972,-0.0024501933,-0.026699137,0.039258543,-0.035986997,-0.026602099,0.024065265,0.0015292049,-0.024675215,-0.004439459,0.009766118,0.0019563425,-0.042419188,0.07275029,-0.011810833,0.025465377,0.021265045,-0.030636081,-0.0062450473,-0.0017510045,-0.010050298,0.037539598,-0.02464749,0.000051415722,-0.016135927,-0.01659339,-0.011887076,-0.005836104,0.02778041,0.008005582,0.05622622,0.00083694723,-0.054202296,0.023524629,0.02778041,-0.018395511,-0.0057217386,-0.018728212,0.0045815497,0.015345765,0.027946759,0.00043731794,-0.01889456,-0.017536037,-0.0067579593,0.00024194359,0.012905969,-0.010902841,0.0039750664,-0.013786237,0.0070282775,-0.036153346,-0.03984077,0.00645645]},{"id":"enum-MessageFlags","type":"enum","source":"main","text":"Enum: MessageFlags\nMembers: SuppressEmbeds=4, SuppressNotifications=4096, VoiceMessage=8192, CompactAttachments=131072","meta":{"url":"/docs/typedefs/MessageFlags"},"embedding":[0.019320117,-0.006359706,0.0041739754,0.03647124,-0.039497122,0.023028832,0.011494332,-0.0037689628,0.0055195554,-0.024019606,0.022667332,-0.006008249,0.0064266506,0.03240103,0.022653943,-0.016562015,0.0089303665,0.041318007,0.028089818,0.023417108,0.010557112,0.03264203,0.020538503,0.023015441,-0.022131778,0.007283537,-0.015584627,0.024287384,0.06024985,-0.023176108,0.017472455,-0.028759262,0.047342993,-0.036417685,-0.019721784,-0.0048635015,0.0009204838,0.015664961,-0.018797953,-0.0036986712,0.039791677,-0.028545039,-0.04011301,-0.0067546773,-0.004163934,0.05601897,0.0016150307,-0.013375467,-0.031437032,0.021569446,-0.020752726,-0.0032635336,0.03781013,0.032668807,0.014567074,0.012692635,0.016816402,-0.017726844,-0.0024936744,0.0040166564,0.010905223,-0.047557212,-0.047262657,-0.0077856192,0.028812816,0.013268355,-0.009251699,0.04177323,0.048039213,0.024474828,-0.0076048695,-0.01555785,-0.025465602,0.017338568,0.027219543,0.018797953,-0.02268072,0.0022225499,-0.0044417526,-0.07294248,0.018931841,0.040996674,-0.029616147,0.007906119,-0.023484051,0.03098181,-0.018409677,0.029053817,-0.040541455,-0.012384691,-0.05007432,-0.0036451158,-0.05484075,-0.044745553,-0.01812851,-0.027340043,0.012003109,-0.0029706522,-0.037676238,0.014861629,0.07444204,-0.016990457,-0.075245366,-0.023939272,-0.0008426611,0.007497759,-0.009419059,-0.00485346,-0.030553367,0.036685463,-0.038158238,-0.0140984645,0.012183858,0.006416609,0.057250746,-0.015624794,-0.03558758,0.0066308305,0.016227292,-0.0015254926,-0.036337353,-0.015865793,0.038774125,-0.0026024587,0.05542986,-0.0004928772,0.024300773,-0.019547729,-0.01462063,-0.0021556057,0.04177323,0.023872329,0.102772854,-0.0026158476,-0.015638184,0.0022761053,-0.00044434264,0.026148435,-0.05101154,-0.031169254,-0.0014928574,-0.0015397184,-0.00006479997,0.0146875745,0.011213167,0.018168677,-0.062445622,0.025773546,0.00116232,0.02385894,-0.011253333,0.0311157,-0.012612302,0.0122708855,0.00005397382,-0.033632804,0.028598595,-0.007404037,-0.002928812,-0.015075851,-0.04078245,-0.027661376,0.014955351,-0.03569469,-0.016628958,0.01011528,0.03965779,-0.0013003926,-0.032775916,0.0013832361,0.019895839,-0.021930944,-0.0015338607,-0.07197849,-0.0076316474,-0.0035011857,0.019574506,0.011829054,-0.059714295,-0.014834852,0.031196034,0.051627427,0.00090458454,-0.05928585,-0.04254978,-0.0107378615,0.02233261,0.019949395,0.019909227,-0.033365026,-0.01123325,-0.013121078,0.02351083,0.04230878,0.016695902,-0.023671497,-0.00040668648,-0.015638184,-0.01415202,-0.055054974,-0.007839175,0.0065873167,0.042282004,-0.028196929,-0.028089818,-0.03542691,0.01076464,0.024755994,0.017713455,0.04137156,0.054706864,0.011152917,0.015490905,0.013234884,-0.03400769,-0.0000028830493,-0.05441231,-0.037488796,-0.031892255,-0.010416529,-0.033365026,-0.020578671,0.05299309,-0.004555558,-0.006915344,0.025519159,-0.045816664,-0.005961388,-0.03941679,0.022292444,-0.02118117,-0.028973483,-0.0003878584,-0.028196929,-0.027902374,0.013362078,-0.029134149,0.0313567,0.02585388,-0.022011278,-0.033525694,-0.02023056,0.019601284,0.013977964,-0.026871432,0.02305561,0.0036886297,-0.023336776,-0.035748243,-0.036310576,0.03577502,0.011628221,-0.013522744,-0.026523322,-0.008669284,0.010061725,0.009352115,0.042496227,0.005435875,0.022198722,-0.0039497125,-0.03740846,-0.016816402,-0.0533412,0.019239785,0.019427229,0.07181782,0.0047865156,-0.02128828,-0.004803252,-0.013047439,-0.0119964145,0.032186806,0.04399578,-0.038613457,-0.043701224,-0.01392441,-0.022479888,0.045575663,0.02701871,-0.019159451,-0.017285012,-0.043620892,0.003218346,-0.01648168,-0.023189498,0.03518591,0.04653966,0.040220123,-0.016347792,-0.013696799,-0.027795263,0.023082387,-0.033632804,-0.027232932,0.017003845,-0.0064735115,-0.044504553,0.044504553,0.01707079,0.021904167,0.010818195,-0.024595328,-0.01918623,-0.009492698,0.043540556,0.026750933,0.004143851,-0.027607819,-0.04969943,-0.0008012393,-0.0102090025,-0.0795298,-0.003956407,-0.043487,0.024099939,0.02900026,0.047530435,0.035828575,-0.0035580883,0.016575404,0.00206021,0.033847027,-0.050583094,0.04011301,0.01965484,0.0068818717,0.013576299,0.004933793,0.0047530434,-0.029268038,-0.033980913,0.00044015862,0.026804488,0.038506348,-0.03740846,-0.040728897,-0.0005401566,-0.055965416,0.04188034,0.04329956,-0.004666016,-0.016200515,-0.026402822,-0.037703015,-0.021770278,-0.081725575,0.043567333,0.025224604,0.011039111,-0.000086922955,-0.007765536,-0.0035949077,-0.016521847,0.034114804,-0.023684885,0.060892515,-0.04423678,-0.015209739,0.047932103,-0.025371881,0.048119545,-0.010677612,-0.020873226,-0.028330818,0.0002192425,-0.067479834,0.025719991,0.012465024,-0.012103525,0.028143374,0.018972008,0.016200515,-0.003342193,0.023751829,-0.0069555105,-0.015758682,-0.011802276,0.019561118,-0.016080014,0.018958619,0.011895997,-0.012940329,0.026108269,-0.016695902,0.00299743,-0.0056266664,0.034329023,-0.039443567,0.019360285,0.032186806,0.01800801,0.002175689,-0.021074058,0.020257339,0.063248955,-0.015839016,0.03740846,0.0004585683,-0.0098541975,0.0028518261,-0.011916081,0.024528382,0.022640554,0.002873583,0.00201837,-0.010998945,0.0071161767,0.06330251,0.002031759,0.07422781,-0.005482736,0.023283219,-0.02514427,0.024019606,0.0042509614,-0.009479309,-0.021489114,-0.017472455,0.016053237,-0.029375149,-0.00424092,-0.042442672,0.038024347,0.04512044,-0.01649507,-0.002388237,-0.025679825,0.062766954,-0.05628675,-0.05425164,0.004826682,0.020886615,0.03647124,0.030285591,-0.047530435,-0.00033137418,0.01508924,-0.0011690144,-0.0038225183,-0.050663427,0.0037388378,-0.009512782,-0.017967844,0.0010803132,-0.013937798,-0.018061565,-0.009747087,0.07090738,-0.037836906,-0.078994244,-0.023309996,-0.075245366,0.015624794,-0.06303473,-0.027219543,0.042174894,0.0038995042,0.057572078,0.0053722784,-0.009345421,0.0040333928,0.025184438,0.013482577,0.0057639023,0.0020535158,-0.049538765,-0.023135941,0.017619733,0.059392963,0.010336196,0.0002886972,0.012578829,0.06806894,0.039684568,-0.05494786,0.06137451,-0.042630114,0.009800642,-0.024769383,0.0018577037,0.021716723,0.00044183224,-0.024140107,-0.032106474,0.084189124,0.0568223,-0.015919348,0.008040007,-0.033713136,-0.029348372,-0.0014041562,0.010229086,-0.01624068,0.01731179,-0.0045522107,-0.0017589609,-0.03588213,0.03778335,-0.06822961,-0.02352422,0.008106952,0.018396286,-0.037569128,0.06828316,0.04854799,-0.05160065,0.00012457912,-0.029348372,-0.025398659,0.039577454,-0.010978862,-0.009231616,0.0076651196,-0.007142954,0.009291866,0.009084338,0.06207073,-0.0267911,-0.027554264,-0.01543735,-0.025894046,0.028250484,0.010885139,0.0059881657,-0.028330818,-0.021234725,-0.041692894,-0.02080628,-0.011286805,0.026951766,-0.029883925,0.011059195,-0.053608976,-0.024836326,0.006831663,-0.0013246599,0.0015681697,0.038961567,0.00014162899,-0.005827499,0.0015957842,-0.00090374774,-0.01743229,-0.027447153,-0.002319619,0.0027865556,0.04678066,-0.00675133,-0.008696062,-0.043620892,-0.0043748086,0.03274914,-0.008053397,0.025800325,0.010851667,-0.009486004,0.020993724,-0.004508697,0.029696481,0.016548624,-0.022051444,0.03823857,0.002661035,-0.028036263,-0.0036216853,-0.00021014227,0.027072266,0.006496942,0.007263454,0.0041103787,0.031329922,-0.04549533,0.05111865,-0.0066643027,-0.012665857,-0.0023781955,0.0036685464,-0.0006183977,0.00923831,0.022279056,0.012471719,0.037756573,0.0067345942,-0.02747393,0.0003449722,0.017459067,0.024474828,-0.029268038,0.013388855,0.011413999,0.003956407,0.028839594,-0.009345421,-0.0261886,0.017365346,-0.00086776516,-0.035641134,-0.020484949,-0.0013480904,0.0049672653,0.004568947,-0.019614672,0.011527805,0.03941679,0.023457274,0.002244307,-0.036765795,0.0021723418,-0.009793947,0.010095197,0.032856252,-0.059821405,-0.024809549,-0.032508142,-0.0073237037,0.039390013,-0.028625373,0.038265347,0.0020233907,-0.0014317707,0.0052551255,-0.02771493,0.015357017,-0.025559325,0.043728,-0.037167463,-0.040300455,0.0303927,0.0018543565,0.0034409359,-0.015946127,-0.0078057027,-0.0056869164,-0.010731167,-0.018222231,0.006252595,0.0029790204,0.002319619,-0.046834216,0.055590525,-0.026014546,0.03307047,0.010396446,0.029401926,0.028812816,-0.011835748,-0.021716723,0.0035681298,0.010791417,0.0021489114,-0.025090715,0.014634019,0.010557112,-0.018570343,-0.057143632,0.00086107076,0.020632226,-0.041264452,0.006647567,-0.022653943,0.018744398,0.022305833,-0.014446575,0.018744398,0.0025924172,-0.03333825,-0.0043078642,-0.020618837,0.013870854,0.020792892,0.017485846,0.011126138,-0.0038258655,-0.0019597937,-0.037569128,-0.016776236,0.0013715208,0.019601284,0.00090793177,-0.0017957803,0.021957723,-0.055215638,-0.050154652,-0.011668388,-0.0009932857,-0.004086948,-0.010061725,0.008307785,-0.007886035,0.018222231,-0.009486004,0.0076115644,-0.023952663,0.027955929,0.011085972,0.03569469,0.003912893,0.023497442,-0.044370666,-0.029348372,0.03379347,-0.0486551,-0.006262637,-0.011065889,-0.015035684,-0.037354905,-0.018048177,0.033498917,-0.010262557,-0.0014100138,0.013288439,-0.013134467,0.004729613,0.022011278,-0.017325178,-0.020752726,-0.020217171,0.05494786,0.016776236,0.023323385,-0.023323385,0.0080065355,0.05569764,0.0026292366,-0.0024769383,0.01590596,0.032508142,-0.03424869,0.03746202,-0.0011171326,0.024581939,-0.0067345942,0.024822937,-0.008562173,0.024073161,0.0014066666,0.0047865156,-0.016749458,-0.023939272,0.025719991,0.0066107474,0.039979123,-0.017619733,-0.013857465,-0.006118707,-0.006517025,0.0101085855,-0.02924126,0.023323385,-0.00567018,0.010657528,-0.0017723497,0.01918623,0.03288303,-0.0038258655,0.009064255,0.015999682,0.012719412,-0.00406017,0.004977307,0.05240398,-0.025934212,0.0065873167,-0.028277263,0.015865793,-0.06094607,-0.03625702,0.00116232,0.016039848,-0.03510558,-0.013844077,-0.03240103,-0.01682979,0.025398659,-0.03400769,-0.019226396,-0.051252536,-0.037756573,0.00032781775,0.0018878286,-0.013362078,-0.004401586,-0.010597279,-0.051252536,-0.037756573,0.004244267,-0.04129123,-0.01040314,-0.009231616,0.007732064,0.0055496804,-0.02373844,-0.020993724,0.0053187227,-0.0005602399,0.01673607,-0.11118105,0.0345968,0.0402469,-0.013509355,-0.0052986396,0.007169732,-0.032829475,0.000388486,0.005482736,-0.0031865477,-0.010985556,-0.012712718,0.02456855,-0.042415895,0.036578353,-0.009157977,0.0035815188,0.041237675,0.016321015,-0.0013623161,0.031651255,0.01567835,0.014861629,0.03799757,0.013676716,0.016173737,-0.036792573,0.02700532,0.042683672,-0.013268355,-0.0033739915,0.003601602,-0.045896996,0.0021907515,0.029991036,-0.016080014,0.0056065833,-0.014607241,-0.031437032,-0.009378893,0.022439722,-0.020297505,-0.009573031,-0.0011480943,-0.02503716,0.0155712385,0.014553686,0.018891675,0.0012618996,-0.009338726,0.012732801,-0.014218965,-0.017994622,-0.00052425737,0.037756573,0.00032467974,-0.026630433,-0.0037354906,-0.017592955,-0.027420375,-0.0058676656,0.015450739,0.043594114,0.008870116,0.031169254,-0.029535815,0.010510251,-0.0036986712,-0.01064414,-0.020833058,0.020779504,0.00093889347,-0.00014947401,-0.008307785,0.012719412,0.0033405195,-0.014272519,0.0018961966,-0.016213903,0.024488216,-0.011454166,0.003785699,0.028357595,-0.008455062,-0.01403152,0.037033573,-0.0018309259,-0.012953717,0.03240103,0.0069220383,0.029428704,0.009057561,-0.0076115644,0.01720468,-0.019346897,-0.046941325,-0.006681039,0.021542668,0.01696368,-0.014459964,0.04171967,0.017151123,-0.015731905,-0.04747688,-0.03789046,-0.03076759,-0.010483474,0.027353432,0.01146086,-0.004190712,0.012873384,-0.032320697,0.026389433,0.06432006,-0.03382025,-0.011373833,0.0182624,0.013777132,-0.042630114,-0.025130881,-0.012511885,0.014459964,0.0047865156,-0.03743524,-0.026108269,0.03823857,0.0011455839,-0.00707601,-0.0101487525,0.0034476302,-0.012645774,0.05393031,-0.011648304,-0.0038559902,-0.018744398,0.007819092,-0.00520157,0.0009798969,-0.057625633,0.005593194,0.004803252,0.013074217,0.02830404,0.009157977,0.010456696,0.011501026,0.011320277,-0.005258473,0.0007786456,-0.04233556,-0.0023012096,-0.0353198,-0.03566791,-0.016441515,-0.030098146,-0.0001687205,0.0032652072,0.004086948,-0.011574665,0.041559007,-0.012076748,0.028571816,-0.016106794,-0.0041840174,-0.034918133,-0.012692635,-0.048735432,-0.030124925,0.009914448,0.0617494,0.019320117,0.0009882649,0.017137734,-0.026817877,-0.03941679,0.03406125,-0.012552052,-0.0066776914,-0.011266721,-0.014794685,-0.005164751,0.016803013,0.03414158,-0.0113872215,0.04704844,0.020444782,0.02547899,0.020498337,-0.0006179793,0.010523641,0.041853562,0.013261661,0.0049973903,0.002796597,-0.0015790481,-0.0057103466,-0.028839594,0.018436454,-0.020792892,0.018423066,0.032320697,-0.00412042,-0.003231735,-0.0024284036,-0.011179694,0.0080266185,-0.020632226,0.012183858,-0.008990617,0.0076450366,0.004880238,0.030017814,-0.007417426,0.0021003766,-0.02139539,0.017726844,-0.045066886,-0.015638184,-0.007859258,0.045468554,0.0057906797,0.014473353,0.013007273,0.025559325,-0.014928574,0.0070559266,-0.0033137416,0.02665721,0.004930446,0.0269116,0.0033221098,0.0025924172,0.0046425858,-0.026295712,0.047798213,-0.041692894,-0.012625691,0.0011045806,0.03424869,0.008127036,0.023698274,-0.006326234,-0.021221336,0.013616466,-0.0027363473,-0.0076450366,0.02771493,-0.008515312,0.009834114,-0.0128800785,-0.003631727,-0.03813146,0.002707896,-0.014580463,0.03320436,0.019949395,-0.024233827,-0.0019112591,0.008455062,0.010436613,0.0029890619,0.011902693,0.03671224,-0.025278158,0.022346,0.00031108168,-0.0038593374,0.012799745,0.0026760974,0.014821462,0.009372199,0.041907117,0.0072567593,0.0042944755,0.0032919848,0.025157658,-0.03719424,0.016454903,-0.045896996,0.009084338,-0.05095798,-0.019976173,0.007865952,-0.0010736189,-0.03475747,0.0033606028,-0.0303927,-0.022600388,0.038506348,0.03424869,-0.0017489193,0.02700532,0.010590585,-0.018838119,0.012404774,-0.007437509,0.001272778,-0.015972905,0.057572078,-0.0016292563,-0.026215378,0.011608138,-0.02023056,-0.014808074,0.0012309379,0.0073437872,-0.012846607,0.036176685,-0.028812816,-0.010155447,0.0062090815,0.012953717,0.028705705,-0.0101688355,0.008448368,-0.014526908,-0.008796478,-0.04501333,-0.0046559745,0.0042810864,-0.007651731,0.017218068,0.012672552,0.01707079,-0.0265501,-0.015638184,0.041800007,-0.022131778,0.008033313,0.015638184,0.023323385,-0.018409677,0.02644299,-0.009077644,-0.013449105,0.018222231,-0.038426016,0.037274573,0.002388237,0.01720468,-0.038318902,0.00958642,-0.026349267,0.0010903549,-0.00030919886,-0.00959981,-0.006774761,-0.026335878,-0.012009803,-0.04230878,0.063356064,-0.018289177,-0.022198722,0.021823835,-0.022948498,0.013482577,0.036444463,0.018449843,-0.012217331,0.04621833,-0.004244267,-0.001034289,0.017097568,-0.016883347,0.0016794645,-0.014071687,-0.014660796,0.021730112,0.022292444,-0.027822042,0.002826722,0.0020786198,0.029723259,-0.005228348,-0.021448946,-0.011213167,-0.005462653,-0.002950569,0.029455481,0.024729216,-0.011634915,0.006168915,0.003852643,0.014540297,-0.031919032,0.011902693,-0.019895839,-0.010450002,0.048199877,-0.028786039,-0.015450739,-0.035748243,-0.009760476,0.013536133,-0.017592955,-0.014058298,-0.03194581,-0.00970692,0.0041840174,-0.022305833,0.04327278,-0.02547899,-0.0140984645,-0.029482258,0.014834852,-0.012572135,0.031678032,0.009753781,-0.023430496,-0.0009941225,-0.0153168505,0.0069488157,0.012116914,0.013656632,0.024501605,-0.009004005,0.023577774,-0.003019187,0.007410731,0.03545369,-0.007571398,-0.013301828,0.029160926,0.011420693,-0.029027037,0.014982129,-0.030098146,-0.029428704,0.004404933,0.044022556,0.01636118,-0.021676557,0.00017938974,0.029883925,-0.048628323,0.041505452,0.0135294385,-0.02047156,0.014406408,0.021944333,-0.021448946,0.013710188,-0.007571398,-0.016173737,0.002396605,0.017633121,0.03194581,-0.008957144,-0.022359388,-0.022238888,0.0008024945,0.013067523,0.007886035,-0.00206021,-0.03989879,0.009639976,-0.010162141,-0.013328605,0.014259131,-0.0046091136,-0.032775916,-0.04482589,0.024782771,0.0009690184,0.02257361,-0.02841115,0.0176599,-0.024608716,0.012511885,-0.0129738,-0.005271862,0.011480943,0.03307047,-0.0098541975,0.00074726547,0.0033455403,0.0029790204,0.00959981,-0.0068751774,0.01034289,0.0039664484,0.0043948917,0.00324345,0.0036819351,0.009840809,0.0057672495,0.013408938,-0.014339464,0.0051547093,0.020551892,0.019520951,0.03299014,-0.016936902,0.023216275,0.015651572,-0.015410572,0.00005815784,-0.007517842,-0.019373674,-0.020565283,-0.005496125,0.008609034,0.012130303,-0.014928574,0.01192947,0.007886035,0.030017814,-0.009660059,-0.0012158754,0.004224184,0.007497759,0.0313567,-0.023122553,0.03017848,0.006014943,-0.0034108108,0.015236517,-0.0007388975,0.003005798,-0.0028133332,-0.012331136,-0.008555478,-0.038613457,0.0057203886,0.0175394,-0.036685463,0.0123110525,0.003835907,-0.055751193,-0.051520314,0.009271782,0.0008209042,0.010617362,0.03847957,0.017271623,-0.017285012,0.0017673289,-0.027273098,0.010101891,0.010885139,0.007410731,0.0030342494,-0.034302246,-0.019561118,-0.003342193,0.026295712,0.014741129,0.031758364,0.040032677,0.009901059,-0.04948521,-0.010034947,0.033632804,-0.034677137,0.030017814,0.0028685622,0.0029020344,-0.0043078642,0.0002702875,-0.03941679,0.01767329,-0.0060785403,0.0110324165,-0.029455481,0.022131778,0.033847027,-0.016588792,-0.004113726,-0.019601284,0.007169732,-0.035132356,0.010356279,0.057572078,-0.04611122,0.00134558,-0.008260923,0.014875018,-0.018851507,0.05119898,-0.018570343,0.015156184,-0.0128599955,-0.016628958,0.0056735273,-0.022894943,0.015209739,-0.0057906797,0.03403447,0.0034342413,-0.027554264,-0.007216593,-0.018061565,-0.006527067,-0.05004754,-0.030633701,0.014285908,-0.0048099463,0.008173896,-0.019092508,0.027581042,0.007156343,0.026590267,0.021422168,-0.03805113,0.009660059,-0.049993984,0.0003150565,-0.016588792,0.015531072,-0.028170152,0.029107371,-0.012384691,0.046245106,-0.022667332,0.000073168005,0.011768804,-0.018771175,0.006014943,0.024514994,0.022105,-0.036096353,-0.0021790361,-0.00552625,0.011601443,-0.003571477,-0.013897631,0.036980018,-0.020083282,-0.0033622764,-0.010791417,0.011675082,0.020324282,0.016160348,-0.0073705646,-0.025706602,0.039550677,-0.0015305135,-0.0107780285,0.005680222,-0.02456855,-0.0057639023,-0.015209739,-0.019440617,-0.021623,0.036498018,0.015852405,-0.026282324,-0.013777132,0.007437509,-0.025492381,0.019052342,0.012110219,0.012739495,-0.03248136,-0.018115122,0.027286487,-0.00054183026,0.020511726,0.0029371802,0.023068998,-0.02163639,0.014647407,-0.01415202,0.015598017,-0.0047496962,0.016468292,0.008347951,0.035748243,0.020203782,0.017780399,-0.03406125,0.036578353,-0.016548624,-0.0030007772,0.031142477,-0.036551576,-0.004836724,0.0055831526,0.021422168,0.010858362,-0.010751251,-0.0018275788,-0.0025171048,-0.017592955,0.02012345,0.002903708,0.0055530276,-0.005037557,0.027955929,-0.01250519,-0.026817877,-0.005151362,0.015303462,-0.043567333,0.03660513,0.016816402,0.0021689946,-0.007839175,0.043620892,-0.023671497,0.019494174,0.019668229,0.009593115,-0.011019028,0.016923513,0.034784246,0.028357595,-0.029214483,0.026242156,-0.0353198,0.008388118,-0.028973483,0.017941065,0.013362078,0.028732484,0.020525115,0.019895839,0.02750071,0.027661376,0.02538527,-0.0402469,0.028678928,-0.0037790043,0.0091312,0.003648463,0.04900321,-0.027929151,0.020618837,-0.01111275,-0.029642925,0.050583094,0.01953434,-0.022720888,-0.015116017,-0.008729533,-0.012498496,-0.02784882,-0.011186388,0.029535815]},{"id":"enum-MessageType","type":"enum","source":"main","text":"Enum: MessageType\nMembers: Default=0, RecipientAdd=1, RecipientRemove=2, Call=3, ChannelNameChange=4, ChannelIconChange=5, ChannelPinnedMessage=6, UserJoin=7, Reply=19","meta":{"url":"/docs/typedefs/MessageType"},"embedding":[-0.020826671,-0.00973407,0.008649737,0.020353055,-0.00015170535,0.00793308,-0.0056023872,0.026198482,0.010606522,-0.005325072,0.013797202,0.040008146,0.026397899,0.043497954,0.06221828,-0.014233428,-0.0026204714,0.014270819,0.03370157,0.040307276,-0.007926848,0.05678415,0.021773905,0.04407128,-0.03482329,0.033601858,-0.037490502,0.023506345,0.013086777,-0.03145812,0.029912634,-0.027295278,0.039409894,-0.021051016,-0.014632263,-0.019592775,-0.017648455,0.018894814,-0.019916829,-0.025575303,-0.0152928345,-0.012164471,0.0041005234,0.014694582,-0.023119973,-0.004490011,-0.04614024,0.0014107234,0.0036861089,0.028192658,-0.018022362,-0.019119158,0.052596383,0.060622938,0.01645195,-0.012756492,-0.001177031,-0.03270448,-0.00061772706,-0.02026581,0.001022015,-0.04873267,-0.007503086,-0.039584387,0.03741572,0.0050913794,-0.033003606,0.011211006,0.047336742,-0.009740301,-0.02702108,-0.011348106,-0.019044377,-0.008288292,0.010145368,0.045890965,-0.017573673,-0.03554618,-0.0072039594,-0.023032729,-0.0033308964,0.018695395,-0.027494697,-0.011391728,0.0087993,0.00952842,-0.0177357,-0.014943853,-0.015803842,-0.03509749,-0.05474012,-0.030186834,-0.04514315,0.003157964,0.031258702,-0.057432257,-0.00035482305,-0.041404072,-0.03143319,0.0066617928,0.059825268,-0.030635523,-0.04641444,-0.00668672,0.0004112987,-0.024416188,-0.022708675,0.00010224045,-0.0437223,0.0041005234,-0.037365865,-0.00762149,-0.04043191,0.013174023,0.015965868,-0.01607804,0.014382992,-0.028591493,-0.0075778672,0.006100931,-0.032305643,0.005885934,0.05349376,-0.0020019654,-0.024727777,-0.027295278,0.0042532026,-0.02061479,0.008282061,0.025026904,0.029538726,0.0100830505,0.034075476,-0.001977038,0.006294117,0.008749446,0.0056241984,0.039783802,-0.063165516,-0.055936627,-0.0035801684,-0.008718287,0.00041675154,0.041179728,0.009534652,0.0021406228,-0.06660546,-0.0032374195,-0.023157364,-0.041827835,-0.021213043,0.025089221,-0.022160277,0.009385089,-0.00069250865,-0.02102609,0.020278273,-0.004923121,-0.021636805,0.0004272677,-0.015305297,-0.10569131,-0.015405007,0.0087993,-0.04050669,0.004184653,0.0063252756,-0.0020518198,-0.029787999,0.024166916,0.04778543,-0.022658821,-0.035172272,-0.051599294,-0.00942248,-0.012351425,0.00015306855,-0.020103782,-0.047386598,0.0004736167,0.029837852,0.047436453,-0.025899356,-0.10957995,-0.014432846,-0.023319392,0.012220558,-0.0061352057,0.03599487,-0.026198482,-0.0011396402,0.028142802,0.031931736,0.007054396,0.013498076,-0.017972508,0.034598947,0.01493139,-0.013784739,-0.08146207,0.009783924,-0.035172272,0.06341478,-0.01631485,-0.03741572,-0.01586616,-0.017573673,0.006505998,-0.006319044,0.011292019,0.049106576,-0.010631449,0.025089221,-0.0059887585,-0.074083626,0.035172272,-0.08475246,-0.010631449,-0.029738143,-0.0034898072,-0.042949557,-0.007409609,0.047486305,0.04008293,-0.032754336,0.019891901,-0.02248433,-0.048483394,-0.011678391,-0.012874897,-0.04045684,-0.008749446,0.003866831,-0.06321537,-0.02154956,-0.01202114,-0.021562023,0.021462316,0.002354062,0.007496854,-0.033552006,0.005072684,0.015405007,0.055487934,-0.05713313,-0.0042532026,0.024279088,0.005203552,-0.025176467,-0.026298191,0.06740314,0.016776003,-0.01323634,0.011005357,0.006717879,-0.007876994,0.02456575,0.05962585,0.010107977,0.01302446,0.013560394,-0.029164819,-0.0065496205,0.022272449,-0.03838788,-0.0177357,0.021350143,0.0017293241,-0.018994523,0.0036892248,-0.019891901,-0.0063034645,0.031084212,0.052297257,-0.011728245,-0.032804187,0.0066493293,-0.009677984,0.043198828,-0.0076962714,-0.03534676,-0.013223877,0.022509256,0.01804729,-0.046638783,0.022023177,0.02421677,0.0073784497,0.023880253,0.0036331387,-0.010157832,-0.03287897,-0.005452824,-0.034200113,0.006104047,0.041902617,0.014158647,-0.03170739,0.010344786,0.014856609,0.0041254507,-0.020677108,-0.0081698885,-0.004636458,0.015417471,0.037241228,0.041104946,-0.029613508,-0.019393358,-0.08664693,0.016327312,0.016227605,-0.052297257,0.013921838,-0.044918805,-0.023855325,-0.00056631473,0.037291083,0.019904366,0.03135841,0.00095268624,0.015006172,0.04282492,-0.013560394,0.035870235,0.020153638,-0.019680021,0.00063019065,0.06770226,0.030062197,0.008126265,-0.061021775,0.011179847,0.03332766,0.030436106,0.025512984,-0.050726842,0.056435168,-0.026547464,0.060323812,0.041478854,-0.014245892,0.0018944668,-0.017561208,-0.004810949,-0.028142802,-0.037016883,0.025251249,0.029463945,0.02781875,0.011235933,0.033726495,-0.014220965,-0.024241697,0.018620614,-0.03883657,0.044918805,-0.0056771687,-0.018446125,0.055438083,-0.013336049,0.010618985,-0.03385113,-0.011478974,0.02577472,0.009715375,-0.06665532,-0.024540823,0.00014333137,-0.026821662,-0.052995216,-0.010681303,0.0067988923,0.02986278,0.029339308,-0.0020175448,0.010862025,0.00322184,-0.0054902146,-0.0014208502,0.039958294,0.0122579485,0.0011334084,-0.0007404156,-0.00831322,0.0061227423,0.007341059,0.0051443498,-0.027220497,-0.0074220723,0.013635175,-0.0027046006,-0.009266685,0.0040070466,-0.006935992,0.028765984,0.0063938256,0.040008146,0.012775187,-0.050876405,0.011273324,-0.019617703,0.009603202,0.0031688698,-0.039684094,-0.022284912,-0.017984971,0.0033682873,0.02604892,0.018471051,0.060024686,0.007409609,0.007739894,0.028765984,-0.01604065,-0.020215955,-0.00935393,0.00024537707,0.0141711105,0.0105753625,-0.02182376,-0.013074314,-0.018969595,0.006372014,0.014320673,-0.013834593,-0.007852066,-0.022010714,0.085251,-0.02542574,-0.022496793,-0.004446388,0.019218868,0.041927543,0.03038625,-0.07468188,0.045118224,0.0034337211,0.010026964,0.043049265,-0.040905528,0.044495042,0.011360569,-0.030062197,0.029114963,-0.00009649551,-0.048159342,-0.031507976,0.04496866,0.0007404156,-0.061370753,-0.025226321,-0.051350024,0.023406636,-0.061470464,-0.041628417,0.051699,0.06496027,0.003901106,-0.0011427561,-0.029937562,0.0144827,0.041428998,0.057482112,-0.039509606,-0.004552329,-0.060573082,-0.027419915,0.00831322,0.029040182,0.007889457,0.012638088,0.049181357,0.013747348,0.013211413,-0.0081013385,0.0579308,-0.021711586,0.015143271,0.027320206,0.051998127,-0.001483947,-0.005163045,-0.013124168,-0.030735232,0.06974629,0.0496799,-0.013435758,-0.023880253,0.0092355255,0.014520091,0.011422887,-0.0043871864,-0.013847057,0.03534676,-0.02996249,0.0069484557,-0.010101746,-0.0030816244,-0.048109487,-0.06196901,-0.013485612,0.03332766,-0.014009084,0.08111309,0.04265043,-0.00026212505,-0.003156406,-0.017486427,-0.028217584,-0.004271898,-0.019929292,-0.00762149,-0.01905684,-0.016439484,-0.010002037,-0.004153494,0.0044401567,-0.032854043,-0.026023991,-0.0046239947,0.022135349,0.040855672,0.018732786,-0.0019926177,-0.026647171,0.020153638,-0.02754455,-0.00011188026,-0.02737006,0.05110075,-0.006287885,0.0124075115,0.00076300587,-0.0062691895,0.014009084,-0.015891086,-0.0006500545,0.042999413,-0.017461501,-0.0016062461,0.025899356,-0.034274895,-0.014956317,0.008406697,0.024366334,-0.02657239,0.018932205,0.013697494,0.00031801648,-0.024453579,-0.024154453,0.028317293,-0.019243795,0.008126265,0.019979147,-0.03190681,-0.021699123,-0.008599882,0.024304016,0.019380894,-0.04382201,0.01143535,0.004530518,-0.011254628,-0.034424458,-0.014096329,0.056584734,-0.011254628,-0.0035552413,-0.011647232,0.020103782,-0.050876405,0.07428304,0.0021188115,-0.023855325,-0.0258495,0.0053998535,0.02092638,-0.02746977,0.011753173,-0.0034119098,0.044320554,-0.019804657,-0.0086746635,-0.010899416,-0.011310714,0.0020860946,-0.034424458,0.024316479,0.019355968,-0.006468607,0.010918112,0.013946766,-0.025699938,0.023344317,-0.023082582,-0.02088899,-0.016476875,0.0030457918,-0.0056802845,0.036393706,-0.03965917,-0.016165286,0.028666275,0.058429345,0.0124075115,-0.02390518,-0.026946299,0.010936807,0.020103782,0.014258356,-0.011198542,-0.0041597257,0.008705823,-0.011877809,0.023481417,-0.008394233,0.031532902,0.029015254,-0.032654624,0.03367664,-0.017648455,0.008232206,0.0050664525,0.05474012,-0.022708675,-0.032330573,0.0714912,-0.011478974,0.010488117,-0.02297041,-0.0018399386,-0.008057715,-0.009434943,0.0018975827,-0.0025908703,-0.033552006,-0.020452764,0.00014313663,0.030136978,-0.0034524165,0.023232145,-0.008562491,0.03918555,-0.005979411,-0.020477692,-0.01638963,-0.0002442086,0.0051505817,-0.0068799057,-0.008568724,0.02941409,-0.0017495775,-0.0041067554,-0.05962585,-0.013585322,0.06201886,-0.041703198,-0.0033994461,-0.016339777,-0.01625253,0.018832495,0.020689571,0.014370528,0.014694582,-0.060922064,-0.031782173,-0.008855386,0.017523818,0.003402562,0.036942102,0.0002432349,-0.025350958,0.009497262,-0.008992486,0.0030411177,0.007839602,0.0035739366,-0.017386718,0.028466856,-0.008045252,-0.039933365,-0.00167168,0.03238043,-0.009366393,0.020029001,-0.0140215475,0.017723236,-0.0003483965,0.02737006,-0.010475654,0.023568664,-0.0203032,0.030560741,-0.0012455807,0.009696679,0.0024117061,-0.0018555181,-0.039085843,-0.028541638,0.008350611,-0.028292367,-0.008095107,-0.014557482,-0.02719557,-0.013111705,-0.00069250865,0.027893532,0.0028666274,-0.0048234123,0.014769363,0.009715375,0.025176467,-0.0029351772,0.017162373,-0.037291083,-0.008942631,0.0203032,0.0064873025,0.028018167,-0.008363074,0.0042189276,0.03325288,-0.00855626,0.021350143,-0.018458588,0.020988699,-0.01870786,0.016888175,-0.007334827,0.03529691,0.011722013,0.0059575997,0.0028962286,0.0329039,0.0033527077,-0.0062193354,0.017760627,-0.016289921,0.02234723,-0.014258356,0.033477224,-0.049630046,0.0006691394,0.027320206,-0.0062131034,-0.02168666,-0.03385113,0.015517179,0.029439017,0.008219742,-0.04130436,-0.0059887585,0.015704133,0.022197668,0.028117876,-0.024652995,-0.010849562,0.009721606,-0.005147466,0.05110075,-0.022023177,-0.021636805,-0.0046956604,-0.0034212575,-0.031757247,-0.018620614,-0.015753988,0.020864062,-0.046339657,0.000993972,-0.008712054,-0.012176935,0.019480603,-0.021499706,-0.014644727,-0.05678415,-0.021487242,-0.011902736,-0.022858238,0.01645195,0.013385904,-0.035695743,-0.026547464,-0.019031914,0.0027419915,-0.015205589,-0.024129525,-0.036393706,0.005536953,0.0008218185,0.016028186,-0.01662644,-0.00032989585,-0.024503432,0.009110889,-0.09975863,0.026871515,0.011821723,-0.03901106,0.030510888,-0.027968314,-0.011354337,-0.017324401,0.016439484,-0.02400489,-0.025874428,-0.010519276,0.0385873,-0.049106576,0.011946358,0.00056553574,-0.0026890212,0.011840418,-0.020066392,0.016264996,-0.019169012,-0.0073597543,-0.024166916,0.024877341,-0.026971225,0.018309025,-0.03357693,0.006792661,0.07488129,0.00021811295,0.008356842,0.020901453,0.014831681,-0.0035677047,0.014220965,-0.009559579,0.0039571924,-0.024727777,-0.03295375,-0.06446172,0.028068021,-0.015965868,-0.030112052,0.00017556145,-0.005717675,-0.0050882637,-0.040830746,0.034274895,0.0072600455,-0.008998717,-0.014470236,0.010382176,-0.011429119,-0.012413743,-0.00415661,0.022858238,-0.027394988,0.011871576,-0.012787651,-0.02986278,0.02727035,-0.006125858,0.0258495,-0.014345601,0.02359359,-0.05314478,-0.0022138464,-0.020066392,-0.010002037,0.021337679,0.012687942,0.013198949,-0.017174838,-0.001765157,0.010544203,0.00316108,-0.0089364,0.0013117937,-0.0024319594,0.005515142,-0.045317642,0.015492252,0.00037332368,-0.017075129,-0.005141234,0.005293913,-0.012388816,-0.021474779,0.02359359,-0.004502475,0.014071401,0.008132498,-0.022235058,0.001917836,0.012444902,-0.009472334,-0.030361323,0.0063751303,0.0051568137,-0.013734885,0.03654327,0.014557482,-0.021873614,-0.045890965,-0.00601057,-0.007783517,-0.0076588807,0.025824575,0.040107857,0.005047757,0.011672159,-0.009266685,0.04132929,0.0010422684,-0.032554917,-0.02505183,0.01853337,0.020627255,-0.025512984,-0.044993587,-0.024540823,0.0044993586,0.04641444,-0.020726962,-0.049106576,0.052147694,0.00841916,-0.0086622005,0.019742338,-0.0070107738,-0.022708675,0.02144985,-0.02799324,0.012987069,-0.021250434,-0.02532603,0.00057722034,0.007615258,-0.046813272,-0.018720323,-0.0018804453,0.0146198,-0.0021811295,0.023680836,0.0006547284,0.00066018116,-0.0055587646,0.0013242572,0.03350215,-0.033651713,-0.024229234,-0.009260453,-0.0062473784,-0.008431624,-0.020066392,0.01288736,0.006097815,-0.015118344,-0.007683808,0.045965746,-0.013585322,0.03980873,0.03145812,-0.014295747,-0.039434824,-0.024777632,-0.035969943,-0.002632935,0.015567034,0.0584792,-0.016800929,0.0087307505,0.00883669,-0.02456575,-0.038886424,0.010768549,0.049106576,-0.005755066,-0.034623872,-0.0013234783,-0.016913101,0.034249965,-0.0016078041,0.019480603,0.017561208,0.01572906,0.012700406,0.012176935,0.0044121137,-0.011030284,0.0180099,0.010407104,0.028915547,0.02674688,-0.008842923,-0.03402562,0.00090361084,0.018583223,-0.04237623,-0.003807629,0.022384621,0.005705212,0.016053114,-0.0019754802,-0.0036269068,0.00050633366,-0.020739427,0.017798018,-0.02144985,0.06157017,-0.011703318,0.025089221,-0.00019552269,0.018869886,-0.029015254,-0.011030284,-0.03367664,-0.019879438,0.013261268,0.028765984,-0.0007178253,-0.013971693,-0.008849154,0.056584734,0.029364236,0.02429155,-0.027120788,0.027444841,-0.039060913,-0.0018820033,0.011055211,-0.018221779,-0.019904366,-0.03626907,0.012974605,-0.028865691,0.0016467528,0.00545594,-0.00779598,0.020328127,0.021088406,0.03038625,-0.0140215475,-0.013049386,0.007054396,-0.006035497,0.002015987,-0.022471866,0.013198949,-0.0044121137,-0.012937214,0.0031782174,0.008961326,-0.018383807,0.030859867,0.0036362547,-0.022546647,-0.01382213,0.033826202,0.00538739,0.017299473,-0.008886545,0.0203032,0.0053998535,-0.01569167,-0.013572858,0.004493127,-0.0057363706,0.004299941,0.008637273,-0.020714499,0.028491784,0.029289454,-0.016726147,0.0005604724,-0.024154453,-0.000666413,0.0077897483,-0.03048596,0.03277926,-0.01524298,-0.02799324,-0.004648922,0.016090505,-0.009995805,-0.003932265,0.00420958,-0.0152928345,0.02404228,-0.023020264,0.011908967,0.008705823,0.009322771,-0.028741056,0.02123797,-0.0031719855,-0.030810013,-0.010319859,0.039933365,0.029663362,0.010107977,-0.019754803,-0.020515082,-0.0024677922,0.041902617,0.048159342,-0.012357657,0.020938843,-0.017760627,-0.010369713,-0.019493066,0.009085963,0.009871169,0.008587419,0.0072912048,0.033726495,-0.03252999,-0.03963424,0.0021826876,0.025363421,-0.015080953,-0.0093726255,0.011622305,0.009142049,-0.02518893,-0.022770993,0.04773558,0.010338554,0.035496324,0.010407104,0.0048234123,0.003813861,0.030161906,-0.0029133658,-0.017997434,0.021325216,-0.017798018,0.016090505,0.008475246,0.0028744172,-0.018595688,-0.018284097,-0.020901453,0.033626787,-0.004268782,-0.025899356,0.022783456,-0.0012930982,0.008325683,-0.046115313,0.051499587,0.0065558525,-0.0011630094,0.065159686,0.001794758,0.026298191,0.023306927,0.019106695,-0.009896097,0.014607336,0.0045959516,0.034648802,0.03811368,-0.0013398367,-0.01621514,0.01933104,-0.026323117,-0.003595748,0.03589516,-0.008051484,0.005172393,0.029738143,0.03250506,0.0045616766,-0.02518893,-0.020826671,-0.005206668,-0.0069484557,0.06007454,-0.0040693646,0.008007862,0.019966682,-0.0021297173,-0.026796734,-0.054440994,-0.0022185203,-0.0007314574,-0.018695395,0.018122071,-0.016601512,0.018221779,-0.04673849,0.012837506,0.021424925,-0.02022842,-0.00022239731,0.001178589,-0.02466546,-0.011080138,-0.024017353,0.013248804,0.0013616481,-0.010731158,-0.027095862,0.01292475,-0.020153638,0.009453638,0.031582758,0.0020144288,-0.0057363706,-0.006562084,0.0046239947,-0.0048981938,0.028741056,0.03973395,0.020328127,0.028741056,-0.025363421,0.025388349,0.054889683,0.0019458792,-0.0035396616,-0.005540069,-0.018520907,-0.046264876,0.019879438,-0.01724962,-0.010195223,0.027120788,0.077124745,0.033801276,-0.02404228,-0.010319859,0.007739894,-0.045442276,0.034997784,0.017274546,-0.012557074,0.008680896,-0.036368776,0.01053174,0.028915547,-0.0012736239,-0.030062197,-0.02207303,0.0100145005,0.009329002,-0.022883166,-0.014320673,-0.024092134,-0.03210623,-0.01271287,0.043597665,0.024241697,-0.033876058,0.0029507568,0.0025129728,-0.005293913,-0.012133312,0.008967559,-0.022721138,-0.034898072,0.027694114,-0.005945136,0.031757247,-0.0017916422,-0.0013982599,-0.03021176,0.005100727,-0.006780197,0.03243028,0.045168076,0.032754336,0.014146184,-0.016364703,0.004053785,-0.008151193,0.0017137447,0.005013482,0.023419099,-0.036767613,0.023157364,-0.008768141,0.0066430974,0.002472466,0.008693359,0.0054403604,-0.011211006,-0.009671751,0.04105509,0.0012004003,-0.006724111,0.024590679,-0.009964646,0.0046551535,0.009092194,0.01240128,-0.008724518,-0.01829656,-0.020427836,-0.0053998535,-0.026996152,0.021113334,-0.015479788,-0.0027030427,-0.016925566,0.022147812,-0.029563654,0.0033277806,0.041703198,0.0151557345,-0.015143271,-0.027220497,-0.005050873,-0.01617775,0.005599271,-0.010544203,0.007845835,-0.0077648214,-0.010967966,-0.019879438,-0.004496243,-0.02594921,0.0008841365,0.0020985582,-0.032729406,0.003467996,-0.006138322,-0.040905528,-0.033925913,-0.004031974,0.006792661,0.018284097,0.013223877,0.0070419325,-0.0022792805,-0.013523003,-0.026672099,0.04673849,0.0016545425,0.033078387,-0.01662644,-0.04843354,-0.023618517,0.005733255,-0.00053437677,0.013734885,0.0022387737,0.02799324,0.014358064,-0.018682932,-0.00022512373,-0.034997784,-0.009553348,0.024191843,-0.019779729,-0.009403785,0.006378246,-0.014669654,-0.008300756,0.00043466798,0.018757714,-0.016701221,-0.018907277,0.0013678798,0.020589864,-0.005555649,0.0034399529,-0.029738143,0.0073597543,-0.028815838,0.022322303,0.01226418,-0.047062546,0.0081823515,-0.0144453095,-0.018346416,-0.03741572,0.015504715,-0.022521721,0.0055899234,0.01250722,-0.022147812,0.018209316,0.005920209,-0.0155794965,0.0048514553,0.018658005,0.0072600455,-0.014407919,-0.0019334155,-0.010444495,-0.04496866,-0.008518869,-0.040556546,0.012756492,-0.0138844475,-0.036368776,-0.003901106,0.021113334,0.029214673,0.0177357,0.008263365,-0.02879091,0.0141711105,-0.030062197,0.0048576873,0.0076090265,0.02386779,-0.0034243735,0.038687006,-0.003997699,0.0078084436,-0.0013024459,0.052197546,0.007409609,-0.029264526,0.0050103664,-0.007129178,0.030909723,-0.020776818,0.0261237,-0.027170643,0.0043186364,0.0005760519,-0.0013538583,0.0022730485,-0.02948887,0.016751075,-0.0017324401,-0.000929317,0.017174838,-0.0032467672,0.013398367,-0.010905648,0.009391321,-0.029015254,-0.03813861,0.037016883,-0.0032997373,0.005948252,-0.006412521,-0.013174023,-0.044993587,0.011142456,0.016601512,-0.018957132,-0.052795798,0.004726819,0.024815023,0.023680836,-0.019717412,0.0077087353,-0.044046354,-0.015143271,0.014968781,-0.017997434,-0.037964117,-0.012912287,0.023581127,0.018633079,0.0146198,-0.020714499,0.020951308,-0.014607336,0.0051879724,0.027943386,0.019929292,0.04357274,0.02456575,-0.027519623,0.031931736,-0.000035686786,-0.03661805,0.035247054,-0.009715375,-0.0152928345,0.004867035,0.01781048,-0.006378246,0.037166446,-0.01569167,-0.016763538,-0.023431564,0.03238043,-0.013647639,-0.021138262,-0.021574488,0.016264996,-0.017835408,-0.057432257,0.00632216,-0.012046067,-0.053344198,-0.0006469386,0.017835408,0.014856609,-0.0089364,0.026098773,-0.014220965,0.012170703,-0.001394365,-0.0124760615,-0.05483983,0.031333484,0.020141173,0.021200579,-0.020377982,0.055438083,0.0049355845,-0.012183167,-0.015467324,-0.0013694378,0.030984504,0.015380079,0.02307012,0.011659696,-0.013473149,0.031034358,0.06221828,-0.025799647,0.01808468,0.017062666,-0.008381769,0.02127536,0.03534676,-0.023842862,-0.011591146,-0.011267092,-0.0040101623,0.037266158,0.0047018924,-0.008998717,0.0032062605,0.004916889,0.01091188,-0.03661805,-0.009310307,0.01808468]},{"id":"enum-OverwriteType","type":"enum","source":"main","text":"Enum: OverwriteType\nMembers: Role=0, Member=1","meta":{"url":"/docs/typedefs/OverwriteType"},"embedding":[-0.0031626525,0.039451446,-0.016329156,0.004556527,-0.029325832,-0.0092924945,0.026941827,0.012342996,-0.004287365,-0.0052166143,0.05526791,-0.009548839,0.01895669,0.03294029,0.0142271295,-0.004059859,0.022084095,0.02280186,0.012785191,0.074032344,0.00014880007,0.0077864695,0.017072557,0.03555501,-0.04624458,0.033401713,-0.008959247,0.029684715,-0.012125104,-0.038297895,0.050858784,-0.027454516,0.026711116,0.0047519896,-0.0022718548,-0.04883366,0.055524256,-0.0032603838,0.026147157,-0.012266093,0.02576264,-0.036247138,0.014701367,0.001340202,-0.009484753,0.06670088,-0.011625231,0.026993094,-0.039143834,-0.022840312,0.029069487,-0.018661892,0.0017992193,0.03786211,-0.0018713162,0.002316715,0.01134966,-0.015829284,-0.04324535,0.003989364,0.005315948,-0.070648596,0.028941315,0.041732915,0.024288658,-0.019495012,-0.05490903,0.025877995,0.021417597,0.023006935,-0.0116444575,-0.00857473,-0.05111513,0.028531164,0.016495781,0.0061650896,-0.01001026,0.013419644,0.007683932,-0.032914657,-0.008196621,0.018636258,0.0050307643,0.02914639,0.038400434,-0.015085884,-0.03150476,-0.064650126,-0.0038515788,-0.030658824,-0.038528606,-0.018341461,-0.05747248,-0.0075749853,-0.0058094114,-0.029402735,-0.017175093,-0.028044108,-0.018546538,0.073365845,0.030633189,0.0101384325,-0.003470266,0.005671626,-0.002004295,0.028531164,-0.038861852,0.0107536595,-0.028915681,-0.045347374,-0.07777498,-0.012740331,-0.0045693438,0.021789297,-0.017918494,-0.030684458,-0.028582431,0.024660358,0.010003851,-0.050038483,-0.02655731,-0.026788019,-0.0048769577,-0.040681902,-0.04114332,-0.0025778662,0.0120289745,-0.0011960082,-0.015021798,-0.050397363,0.026685482,-0.0071199737,-0.0046366346,-0.024455283,-0.027121266,0.033119734,-0.005972831,0.021532953,-0.024224572,-0.0218662,-0.027659591,0.030786997,-0.0013201751,0.032478873,-0.0152268745,0.047757015,-0.021981556,-0.0018777248,-0.04498849,0.027839033,0.0008643622,-0.0048256884,0.0033324808,0.027762128,-0.030325577,-0.055114105,0.013509365,0.0360677,-0.0020010907,-0.020751102,0.017418621,-0.059933387,0.0027188559,-0.015034616,-0.017995397,-0.038682412,0.017905677,0.016649587,-0.045629352,0.018879786,0.00792105,0.011984114,-0.030761361,-0.028556798,-0.0361446,-0.0065688323,-0.01849527,-0.0165855,0.0056235613,-0.0057453252,0.03534993,0.04675727,-0.015829284,-0.021058716,0.004268139,-0.018341461,0.0052839047,-0.007241737,-0.00801718,0.0011711748,0.045578085,0.042553216,0.031940546,0.003813127,0.007632663,-0.0113368435,0.0301205,0.021904653,-0.021661125,-0.04532174,0.028890045,-0.02404513,0.057113595,-0.015572939,-0.0027605118,0.03711871,-0.021725211,-0.024365561,-0.08008208,-0.040528093,0.034145113,-0.039272007,-0.013983603,0.0076903403,0.0072353287,-0.014432206,-0.023109473,-0.0218662,0.007882599,0.04221997,-0.019456562,0.008183804,0.009805184,-0.010003851,0.004675086,0.03937454,-0.041681644,-0.00007059492,0.0053351736,-0.025339672,-0.028531164,0.0048577315,0.01042682,-0.035939526,-0.01876443,0.020802371,-0.014175861,0.0010125615,-0.01227891,-0.018328644,-0.07372473,0.012637793,-0.012163555,0.022981301,-0.010990778,0.042783927,0.049192544,-0.0014507506,-0.048859295,-0.0043899026,0.007241737,0.05185853,0.002108435,-0.013599086,-0.029505273,-0.029274562,0.052704465,0.080184616,-0.017111007,0.00035227367,-0.008728537,-0.017341718,0.00013678391,0.0117982635,-0.043450423,0.0010958735,0.07039225,-0.03865678,0.02011024,-0.029684715,-0.02988979,0.05455015,0.006347735,0.004652656,-0.00820303,-0.030607555,0.020007702,0.007542942,-0.021238158,0.009958991,0.009497571,-0.017213546,-0.012426308,-0.015342229,-0.042963367,0.009734689,-0.055216644,0.047757015,0.010035894,-0.014239947,-0.0018136386,0.0025602425,0.05157655,-0.0237247,-0.046629097,0.011279166,-0.0040758806,-0.06752119,0.06844403,-0.0038195357,0.039118197,0.05249939,-0.0015292562,0.03873368,0.0436555,-0.0034959007,0.012125104,-0.018546538,-0.048474777,-0.055729333,-0.007126382,0.0071712425,-0.012804417,0.04342479,-0.026018985,-0.039605252,0.0010205723,0.034145113,0.047987726,0.048961833,0.001879327,-0.028941315,-0.008145352,-0.0018777248,0.053986188,0.043527327,-0.013932333,0.048910566,0.067828804,0.024237389,-0.0044603976,-0.012253276,0.006482316,0.034965415,0.018405547,0.029864155,-0.019930799,0.09018206,-0.0075044907,-0.010048712,-0.0011271156,-0.048500415,0.0016710468,-0.01987953,-0.059523236,-0.02363498,-0.016918749,0.019392475,-0.015598574,0.03734942,0.027095633,-0.025083328,-0.050012846,0.021853384,-0.012246867,0.007965911,0.040194847,-0.04280956,-0.009388624,0.052704465,-0.009382215,0.014739819,-0.036503483,-0.009042558,0.022391709,0.026236879,-0.03460653,-0.005117281,0.03791338,0.028710604,-0.019430926,0.034683436,-0.033529885,0.017303266,0.037759572,-0.0046494515,-0.0029976305,-0.015355047,0.0010061528,-0.0038964392,0.013214569,0.017316082,0.023224829,-0.031812374,-0.01603436,0.051499646,-0.005879906,0.067828804,-0.07890289,-0.055216644,0.035273027,0.040476825,0.009625743,0.01260575,-0.025224317,0.032786485,0.0031754698,0.0625481,0.032889023,-0.058754202,0.010862606,-0.032273795,-0.018008213,0.013381192,-0.028479895,-0.011561145,0.016341973,-0.009055376,0.03937454,0.007799287,0.030940803,0.008997698,0.034632165,-0.00032964323,0.061932877,0.0017111007,0.020225596,-0.011509876,-0.01784159,-0.027557053,-0.04624458,0.005431303,-0.02618561,-0.01714946,0.06670088,-0.026249696,-0.041912355,-0.037375055,0.073519655,-0.039220735,-0.013957968,0.04475778,0.0036945678,0.007780061,0.014342485,-0.010234562,0.022366073,0.006238789,0.028351722,0.015188422,-0.032837752,-0.0077928784,0.005710078,-0.0149192605,-0.012016157,-0.034350187,-0.004463602,-0.06511155,0.020930544,0.031658567,-0.03429892,0.009125871,-0.030248672,0.034760337,-0.0028726626,-0.037887745,0.026864922,0.036682922,0.006658553,0.015534488,-0.027275074,-0.006876446,0.055524256,0.021174071,-0.023045387,0.027813397,0.0017335309,-0.020238413,-0.00741477,-0.03586262,0.015534488,0.06029227,0.07946685,-0.003210717,-0.0021308651,-0.040015403,0.017892858,-0.040246114,-0.006690596,-0.0053864424,0.019930799,-0.04657783,-0.0030505017,-0.003438223,0.0188157,0.085926734,0.040681902,-0.00945271,-0.014124592,-0.006914898,0.008728537,0.0018376709,0.017674966,-0.014867991,0.02622406,-0.013957968,0.047475036,-0.03937454,-0.007248146,-0.057933897,0.0017896063,-0.0564471,0.0077864695,0.021174071,0.009395032,0.023404269,0.03517049,-0.012471168,-0.03263268,0.033940036,-0.04916691,-0.016290704,-0.0029463617,-0.016021542,-0.024865434,-0.031966183,-0.025852362,0.033760596,-0.011432973,-0.023276096,-0.00011946063,0.001630993,0.010067937,-0.00623238,-0.009337355,-0.026159974,-0.0062900577,-0.038502973,-0.013137665,-0.018123569,0.046398386,-0.0005058802,0.012150737,-0.013599086,-0.024762897,0.0014964121,0.032325063,0.044962857,0.037759572,0.0076070284,-0.00521341,0.031530395,0.011516285,0.0076903403,-0.0051300977,-0.0031930935,-0.029223293,-0.0031290073,0.030838266,0.014983347,-0.0066521442,-0.03499105,0.007164834,0.0079402765,-0.055114105,0.0062868535,-0.0122596845,-0.0020123057,-0.004934635,0.016547048,0.023224829,-0.02354526,0.020379402,-0.025403759,-0.026300965,-0.013150482,-0.01686748,0.025096145,0.019917982,-0.00546655,-0.02696746,0.037939012,-0.02613434,0.109510444,-0.029043853,-0.006065756,0.05237122,0.045142297,0.023814421,-0.04119459,-0.0032331473,-0.007530125,0.03804155,0.0056972606,-0.021250974,-0.015496036,0.028044108,0.027557053,-0.043065906,0.0074724476,0.015521671,0.023417087,0.016521415,-0.028992584,0.01454756,0.0040758806,0.006328509,-0.014803905,-0.044885952,-0.0075557595,-0.019764176,0.0497565,-0.00013037531,0.001131922,-0.011945662,0.03534993,0.032273795,-0.013188934,-0.008305567,0.006415026,0.038015917,0.02182775,-0.02154577,0.018444,0.027223805,-0.0035279437,0.01348373,-0.01042682,0.0033324808,0.02005897,0.010740842,0.0046911077,0.022789042,-0.008773397,-0.02919766,0.020392219,-0.0036849547,0.021250974,0.02187902,0.021161253,-0.03040248,-0.04221997,0.017316082,0.008235073,-0.00322033,-0.0042617302,-0.00086035684,-0.020661382,-0.007869782,-0.02057166,-0.018969506,-0.024237389,0.017623696,0.011138177,0.012221233,-0.009228408,0.016623953,0.021994373,-0.027198171,-0.015688295,0.004162397,-0.043065906,0.015483219,0.008081266,0.01867471,-0.066649616,-0.011887984,0.025378123,-0.014586013,0.030223038,0.001610165,-0.019123314,0.0061618853,-0.034324553,0.021532953,-0.0065592197,-0.025929265,-0.009048968,-0.046039503,0.013201751,-0.020610113,-0.008055632,0.017674966,0.0022910805,0.016200984,0.010836971,0.032914657,0.004476419,-0.014393754,0.0028854797,0.028351722,-0.056703445,-0.0061234334,-0.02358371,0.017175093,-0.00641823,-0.031863645,-0.040348653,-0.0025938877,-0.04486032,0.014124592,0.0005150926,0.028966948,-0.030556286,0.015393498,-0.0063092834,0.02942837,-0.01941811,-0.01663677,-0.005059603,-0.035324298,0.020443488,-0.03952835,-0.0017559611,-0.049192544,-0.04870549,0.006177907,0.027223805,0.018995142,-0.008222256,0.0047103334,-0.007280189,-0.0008142949,0.015931822,-0.01830301,0.028018473,-0.0017463481,-0.0053543993,0.05180726,0.013791344,0.028274817,0.018751614,0.022314804,0.00012727112,0.004973087,0.030428113,0.0032587817,0.034657802,-0.020456305,0.026249696,-0.02840299,-0.0056331744,-0.015521671,0.00130896,0.020840822,0.028197914,-0.0143809365,0.020443488,0.0096001085,0.0031978998,0.031222783,-0.015649842,0.03183801,-0.00843374,0.003313255,0.04106642,-0.023135107,0.002013908,-0.017072557,-0.00048425113,-0.009004107,0.009420667,-0.012112286,-0.022109728,0.029684715,-0.030428113,0.01626507,-0.012349405,-0.038015917,0.045578085,-0.0032235344,0.04657783,-0.009568065,0.0018232516,-0.014445023,0.0286337,-0.008395288,-0.004902592,-0.004197644,-0.0051012593,-0.022724956,0.016739307,-0.039220735,-0.012631384,-0.00084914174,0.00020097023,-0.0041784183,-0.056139484,-0.013650354,-0.020276865,0.00963856,0.018251741,-0.0006196332,-0.030530652,-0.033427346,0.011746995,0.012503211,-0.009843635,-0.02099463,-0.022301987,-0.023481173,0.023596527,0.0028069743,0.006421434,0.0086324075,-0.003925278,-0.0011815887,-0.10561401,0.009145097,0.01283646,-0.057011057,0.037657034,0.015367864,0.035657544,-0.025326854,0.04593697,-0.020917727,0.002927136,-0.031940546,0.015111519,-0.041809816,0.035478104,-0.0028998991,0.006825177,-0.00982441,-0.019853896,0.016393242,-0.014727002,-0.023673432,-0.013752892,-0.03350425,-0.037426323,-0.004236096,-0.009651377,-0.014406571,0.05362731,-0.015547305,0.001080653,0.048474777,-0.034042574,0.0017976171,0.015726747,0.023250462,0.0051461193,-0.026916191,0.0036272772,0.0050083343,-0.0081069,-0.022481428,-0.008209438,0.004345042,0.014496292,0.008100492,0.0019578326,-0.018136386,-0.0014355303,0.0022654461,0.007812104,0.0035663955,0.008215847,0.0023343388,-0.00076582975,0.0140733225,0.0056524,0.0073506837,-0.011420156,-0.025083328,0.045014124,0.011945662,0.023288915,-0.006799543,-0.007363501,-0.04239941,0.005091646,0.014752637,-0.018828517,-0.008440149,0.054498877,-0.012061018,-0.0120289745,0.016047178,0.00031482332,-0.0072032856,-0.0032139213,-0.0142271295,-0.028326087,0.05088442,0.023276096,-0.018328644,0.03304283,-0.0031962977,-0.0044828276,0.012996675,-0.03981033,0.010170476,-0.01830301,-0.031248417,0.016303523,-0.016367609,-0.020866457,-0.03294029,-0.006354144,0.0061682938,-0.02771086,-0.019764176,0.0047744196,0.0076070284,-0.013547816,0.021558588,-0.022071278,-0.039272007,-0.028249184,-0.00833761,0.0020475532,0.0437324,-0.00007229721,0.008561912,0.0069213063,-0.023429904,-0.04091261,0.014573195,-0.039938502,-0.003218728,0.040886976,0.022314804,-0.0033773412,0.0070238444,-0.030915169,0.024814164,0.0017175094,-0.013740075,-0.025198681,0.05362731,0.010792111,-0.013675989,-0.011253531,0.011458607,0.0074083614,0.023058204,0.027454516,-0.0094463015,-0.0064983377,-0.036118966,-0.0011863952,0.0024256615,-0.05255066,-0.03596516,0.011298392,0.020610113,0.020674199,0.01853372,0.024480917,0.030043596,0.0102153355,0.009542431,0.01798258,-0.023442721,0.015983092,0.0052774963,-0.01839273,-0.016931565,-0.015406315,0.008786214,-0.0031722654,0.034760337,0.005565884,0.017341718,-0.007126382,0.020174326,-0.026582943,-0.00588311,-0.011855941,0.015560122,0.012855685,0.0018136386,0.0139964195,0.02237889,-0.005357604,0.024275841,-0.0035183306,0.0039509125,-0.009439893,0.020046154,0.011727769,-0.010804928,-0.021494502,0.007959503,0.011708544,-0.020802371,-0.008068449,0.01714946,0.04750067,0.02914639,0.021276608,0.010561401,0.005360808,0.004168805,0.03386313,0.057011057,0.031735472,-0.014996164,-0.0052742916,-0.012785191,0.01803385,-0.006575241,-0.024173303,-0.02914639,0.015444767,-0.037554495,0.016995652,0.0046558604,-0.009209183,0.0046879034,0.0028646518,0.035067953,-0.048910566,0.03127405,-0.00032643892,0.032222528,-0.0059536053,-0.021391964,-0.020815188,-0.0062548104,-0.046090774,-0.032683946,0.028915681,0.054498877,0.004114332,-0.0032379536,-0.036964905,0.023942593,-0.0075044907,0.007914642,0.0038483746,0.045629352,-0.012727513,0.018725978,-0.032325063,0.0007237732,0.0059375837,-0.020635746,-0.020123057,0.0058702934,0.032837752,-0.016188167,-0.039323274,0.012669836,-0.014239947,0.027992839,-0.00090842147,-0.0048000542,-0.0054761632,0.007331458,0.003396567,0.03437582,-0.006533585,-0.0008291148,-0.011907211,-0.029582176,0.02048194,-0.023929777,0.052396853,0.003294029,0.017457074,-0.0022990913,0.046270214,0.0142271295,-0.0022077686,0.025852362,-0.0028438237,0.045475546,-0.043117177,-0.0063124876,0.01140093,0.008837483,0.016521415,-0.0018825312,-0.0051877755,0.030658824,0.009818002,0.02349399,-0.0071007474,-0.015214057,-0.013663172,0.030043596,-0.01714946,0.0074596303,0.008901569,-0.011625231,0.024916703,0.033196636,-0.013624719,0.0028422216,0.007030253,0.025429392,0.00044940427,0.012041791,-0.00240964,0.021981556,0.0020171122,-0.0068508117,0.018790064,-0.0007021441,-0.020430671,0.013406827,0.014855174,0.0022926826,-0.008555504,0.0141502265,-0.024480917,0.000029990326,-0.00521341,0.011811081,-0.021391964,-0.0034446316,0.012458351,-0.0047167423,0.004111128,-0.0015100304,0.018802883,0.009792367,0.02478853,0.021327877,-0.03345298,-0.019917982,-0.019469379,0.0021020265,-0.0064855204,0.007241737,0.00458857,0.013150482,-0.03573445,-0.0040053856,0.030453749,-0.028992584,-0.006357348,-0.0072289202,0.003354911,-0.0025105758,0.017444255,-0.014329668,0.017072557,0.000109046625,0.054293804,0.021699578,-0.008606773,-0.03263268,-0.034965415,-0.02131506,0.0072545544,0.031248417,0.014867991,-0.014675733,-0.019764176,-0.03655475,-0.0043354295,-0.029761618,0.070648596,0.009189957,0.001069438,0.013291472,-0.017405804,0.004787237,0.035785716,-0.023096656,-0.011343252,0.028787509,-0.019956434,0.0045116665,-0.009202774,0.00029960283,-0.0113048,0.015406315,-0.028556798,-0.007914642,0.03665729,0.009734689,-0.0017671761,0.026236879,-0.0012336588,-0.009939765,0.010420411,-0.02187902,0.03345298,-0.009568065,0.01987953,-0.0059343795,-0.0013570247,0.025493478,-0.0010309863,-0.023647796,-0.007908233,-0.0056588086,0.04773138,-0.0033420937,0.019559098,-0.0076775234,-0.016200984,-0.038067184,0.04273266,0.0011519489,-0.015496036,-0.0049570655,0.000107344335,-0.012753148,0.001920983,-0.00479685,-0.048346605,0.007780061,0.0045853653,-0.008856709,-0.010683165,-0.007478856,-0.0062996703,-0.008260707,-0.0027172535,0.010330691,0.01580365,0.037426323,-0.022686504,0.011291984,0.008311977,0.0152268745,0.0019482196,-0.0059888526,0.05403746,0.038195357,0.03773394,0.0064630904,-0.022981301,-0.042989004,-0.004697516,0.0006973376,0.013881064,0.013329923,0.0064855204,0.07516026,0.02553193,-0.010997186,-0.00004691308,0.029172026,-0.011458607,0.038246628,0.00022750591,-0.023570893,-0.004973087,-0.035093587,0.010977961,0.048808027,0.008119718,-0.017867224,-0.0038515788,-0.000680515,0.0064662946,-0.028326087,-0.018162021,0.020225596,-0.034350187,0.0086324075,0.0044924407,0.02516023,0.005972831,-0.0038259444,0.017726235,-0.00024593069,0.01635479,0.027403247,-0.009170731,-0.032171257,0.006940532,0.01594464,0.013240202,-0.0066329185,0.011554737,0.013355558,0.024147669,0.046603464,0.014432206,0.0031946956,0.023968227,0.015598574,0.033606786,-0.019456562,0.006120229,-0.0012272502,0.009741098,0.016790576,-0.03722125,0.022212267,0.005492185,-0.003085749,-0.008587547,0.009741098,0.00063204987,-0.008305567,-0.008472192,0.01181749,-0.0136888055,-0.0138426125,0.020674199,0.0037554496,-0.0018873378,-0.0029848134,0.010997186,0.02942837,0.00968342,-0.0027380816,0.012246867,0.007517308,-0.0021837363,-0.03758013,0.003790697,-0.029043853,0.013291472,-0.010305056,0.025237134,0.016008725,0.024211755,-0.039682157,-0.024532186,0.031632934,-0.022007192,0.0137657095,0.0009669001,-0.028197914,-0.0035567824,-0.0049570655,-0.01612408,0.000757819,-0.012599341,0.010817746,0.0023055,-0.033991303,0.033914402,0.010189701,-0.044527072,-0.027608322,-0.02085364,0.010458863,0.03127405,0.015265326,0.0058606802,0.011202263,-0.0017431438,-0.004902592,0.05778009,-0.009926948,0.047244325,0.008651633,-0.027915936,-0.0076711145,-0.0012945406,0.02965908,-0.014880809,-0.0034862875,0.0058382503,-0.0077608353,-0.019020775,0.011138177,-0.0007101549,-0.02673675,0.038169723,-0.013970785,-0.0030344801,0.02965908,0.0011447392,-0.037451956,0.0026627805,0.017662149,0.014201495,-0.011208671,0.011202263,0.046962347,0.01371444,0.023199193,-0.02822355,0.009273269,-0.033401713,0.0060176915,0.022250718,-0.03081263,0.015701111,-0.0020619726,-0.022455795,-0.040271748,0.012144329,0.011247123,-0.0035407608,0.043168444,-0.008600364,-0.011606005,0.006411821,0.015829284,0.0050083343,0.0008875934,-0.04657783,-0.014252764,-0.022442976,-0.018251741,-0.03814409,0.01714946,-0.04555245,-0.0020539619,0.008427331,-0.025801092,0.0042521176,0.020392219,-0.00006759088,0.0149192605,0.0020331338,0.0384517,-0.009459118,-0.027608322,-0.022930032,-0.010478089,0.0026051027,0.03150476,0.035836987,0.0031498352,0.011811081,-0.010990778,0.047475036,0.003106577,-0.044732146,0.0024272637,-0.0023583712,0.0024032313,-0.0076518888,0.0038996434,-0.014342485,0.026211243,-0.014727002,0.0015244498,0.016521415,-0.0032251365,-0.0093693985,0.0039733425,-0.046552192,-0.01885415,0.015342229,0.027762128,0.01306717,0.03460653,-0.015598574,-0.0021436824,0.017751869,-0.007895417,0.0065688323,0.011016413,-0.044962857,-0.039835963,-0.005732508,0.017944127,-0.057575017,-0.040271748,-0.027172536,-0.0048897746,0.009222,-0.011881576,0.022020008,-0.023737518,0.0014699765,0.001506025,-0.0429121,-0.018226108,-0.011042047,0.00067971396,0.01580365,0.0049698823,-0.031248417,-0.032914657,-0.0096770115,0.018097935,0.019969251,0.0012552879,-0.0024176508,-0.010945918,0.0059375837,0.00071616296,0.00558511,0.0081069,0.03873368,0.0048545273,0.010202519,0.024237389,0.036170233,0.051730357,-0.012618567,-0.026839288,0.015162788,-0.036503483,0.0068123597,-0.030223038,-0.027121266,-0.02108435,0.011541919,-0.016431695,-0.012657018,0.041963626,0.0071391994,0.015419133,0.010381959,0.013957968,0.010625487,0.0041591926,0.048449144,0.028351722,-0.026454771,0.022994118,-0.039682157,-0.036426578,0.03337608,-0.0034125885,0.029530907,-0.025070509,0.025224317,0.002750899,0.013650354,-0.031914912,0.020148693,-0.016508598,0.019110495,-0.012310953,0.023288915,-0.030453749,0.02562165,0.008786214,-0.03981033,0.02524995,0.008709311,-0.034914147,-0.003313255,0.031248417,-0.0058734976,-0.014855174,-0.0070879306,-0.0021356717,0.029018218,0.02909512,0.0141502265,-0.0139195165,-0.06367602,0.0060817776,-0.016008725,-0.014803905,0.012349405]},{"id":"enum-PermissionFlags","type":"enum","source":"main","text":"Enum: PermissionFlags\nMembers: CreateInstantInvite=CreateInstantInvite, KickMembers=KickMembers, BanMembers=BanMembers, Administrator=Administrator, ManageChannels=ManageChannels, ManageGuild=ManageGuild, AddReactions=AddReactions, ViewAuditLog=ViewAuditLog, PrioritySpeaker=PrioritySpeaker, Stream=Stream, ViewChannel=ViewChannel, SendMessages=SendMessages, SendTtsMessages=SendTtsMessages, ManageMessages=ManageMessages, EmbedLinks=EmbedLinks, AttachFiles=AttachFiles, ReadMessageHistory=ReadMessageHistory, MentionEveryone=MentionEveryone, UseExternalEmojis=UseExternalEmojis, Connect=Connect, Speak=Speak, MuteMembers=MuteMembers, DeafenMembers=DeafenMembers, MoveMembers=MoveMembers, UseVad=UseVad, ChangeNickname=ChangeNickname, ManageNicknames=ManageNicknames, ManageRoles=ManageRoles, ManageWebhooks=ManageWebhooks, ManageEmojisAndStickers=ManageEmojisAndStickers, ManageExpressions=ManageExpressions, UseExternalStickers=UseExternalStickers, ModerateMembers=ModerateMembers, CreateExpressions=CreateExpressions, PinMessages=PinMessages, BypassSlowmode=BypassSlowmode, UpdateRtcRegion=UpdateRtcRegion","meta":{"url":"/docs/typedefs/PermissionFlags"},"embedding":[-0.015766114,0.014796102,0.00038830374,0.029209664,-0.012815091,0.013914893,-0.05530436,0.002010043,0.022405917,0.02855388,0.040357973,-0.0050208378,0.014755116,0.026791465,0.021681823,-0.021654498,-0.037734844,0.028663179,0.01618964,0.05535901,0.023089023,0.06229938,0.020957729,0.059293706,-0.02299339,0.024550874,-0.012480369,0.026217654,0.013341084,-0.011353242,0.0595123,-0.030985743,0.0131908,-0.027665842,-0.030931095,-0.00430016,-0.029619528,-0.019646164,-0.0052155233,-0.01803403,-0.031914767,-0.051506285,-0.04483916,0.0109980265,-0.04535832,0.028909096,-0.030575879,0.0048978785,-0.013873908,0.009194623,-0.046396643,0.00076806865,0.010089493,0.07716379,0.0078079156,-0.0008457721,-0.0022901169,-0.0078010843,-0.026449911,0.014440887,-0.024263969,-0.06262727,-0.01784276,0.0024472317,0.015615831,0.0058132424,-0.052298687,0.01751487,0.045959454,0.033226334,-0.008675462,0.006762761,-0.025206655,-0.021736471,0.027447248,0.0043308996,0.0021108012,0.04147827,0.0046724533,-0.012760443,0.009850406,0.054047443,-0.056124087,-0.020780122,-0.0074185445,0.028198665,-0.06065992,-0.032488577,0.03267985,-0.047352992,-0.03981149,-0.011578667,-0.0940502,-0.014413562,0.03598609,-0.03388212,0.000095368174,-0.022911416,-0.026518222,0.062190082,0.08683659,-0.024824116,-0.058583274,0.0010408846,0.025152007,0.03893711,0.0018443895,-0.01032175,-0.003593144,-0.0031849875,-0.08410416,0.0036921944,0.0079991855,0.0068959673,0.017405571,-0.038445275,0.004610974,-0.036095385,0.018238962,-0.018963056,-0.041970108,-0.007869395,0.06470391,-0.054976467,0.012821922,0.0046417136,-0.02241958,0.0011988531,-0.026531884,0.02032927,0.02159985,0.0015976169,0.082792595,-0.041368973,-0.035521574,0.02676414,0.0015609,0.012924388,-0.058911167,-0.00917413,-0.015192305,-0.008313415,0.0068447343,0.032133363,-0.047271017,-0.037516247,-0.05109642,-0.007848902,-0.04530367,-0.001339744,-0.04339097,0.028471908,0.010212453,-0.012958543,-0.022733808,-0.039592892,0.011161972,0.027187666,-0.019837433,0.022651834,-0.018580517,-0.042789835,0.016681477,-0.021955065,-0.0101714665,-0.037816815,0.015424561,0.0025428666,-0.053036444,0.01236424,0.024564534,-0.025944412,-0.0046485444,-0.025070034,0.015383574,-0.029974744,0.0063392348,0.011141478,-0.04530367,-0.018621502,-0.0022491305,0.020493217,-0.019577853,-0.046970453,-0.012254943,0.010799925,-0.008299752,-0.011032182,0.021627175,-0.012637483,-0.008484191,0.04869188,0.018580517,0.06672591,0.01676345,-0.026326953,0.037516247,-0.030657852,0.015957383,-0.047271017,0.030193338,-0.04046727,0.060058787,-0.028062044,-0.016025696,-0.017911071,0.0088530695,-0.019331934,-0.017624166,0.007910381,0.052681226,-0.031559553,0.050058097,-0.0017214301,-0.06721775,0.033663522,-0.0712071,-0.049730204,-0.04669721,-0.012131984,-0.04620537,-0.018116003,0.045850154,-0.0057449318,-0.039101057,0.05320039,0.00047433257,-0.01605302,-0.021189986,0.050222043,-0.07426742,0.0049491115,-0.032051392,-0.03931965,-0.013224956,-0.019591514,-0.002621424,0.016804438,0.027310627,0.0014507489,0.0051198886,-0.0036751167,-0.022624511,0.015848087,0.009966535,-0.005905462,0.016025696,-0.01420863,-0.0030193338,-0.008771096,0.09951506,0.04095911,-0.004084981,0.01274678,0.009946041,0.0007586759,0.010150973,0.0460141,0.013969542,0.0451124,0.004610974,-0.0006813994,-0.0049047098,-0.010062169,-0.029838122,0.0013756071,0.026463574,0.0034701845,-0.02217366,-0.0038902955,0.015096669,-0.0034138283,0.042134054,0.019632502,-0.0031627864,-0.019523203,0.02358086,0.012562342,0.024646508,-0.004440197,-0.024222981,-0.025520885,0.01759684,-0.012917558,-0.028854448,0.015014697,0.013006361,0.00013608776,0.024141008,0.013580171,-0.024059037,-0.02019265,0.011742613,-0.017706139,0.02683245,0.020657161,0.025794128,-0.030357284,0.040248677,0.04426535,0.024304954,0.018512206,-0.028663179,-0.014085671,0.015301601,0.016094007,0.010629148,-0.0034667691,-0.022091687,-0.06792818,0.042134054,0.03210604,-0.022829443,-0.018443896,-0.05716241,0.007090653,0.011079999,0.016927397,0.06295516,0.045085076,0.008238273,-0.05688917,0.0010400307,-0.013580171,0.0547852,-0.03388212,0.041259676,0.012179801,0.024769468,0.011920221,0.01420863,-0.0287998,-0.029428259,0.061971486,0.021244634,-0.0041327984,-0.0075278413,0.063119106,0.0070428355,0.019345596,0.037488922,-0.018471219,-0.02057519,-0.019960392,0.008033341,0.0063768057,-0.058528624,0.011831417,0.0045085074,0.069622286,-0.0010801633,0.022624511,-0.08006016,-0.03401874,0.009092157,-0.052216716,0.042598564,-0.016845424,-0.03907373,0.048145395,0.014454548,-0.012671638,-0.007855733,-0.018334597,0.020821108,0.0254799,-0.04237997,-0.016722465,0.024947075,-0.009010184,0.011134648,-0.018307272,-0.0009990443,-0.00013502041,0.0045290007,-0.004675869,-0.010082662,0.0287998,-0.000581495,0.004395795,0.018116003,-0.010806756,0.020862093,-0.019892082,0.002612885,0.025411587,0.023526212,-0.026176669,-0.024605522,0.029674178,0.059348356,0.017665152,0.006670542,-0.019359259,0.0035316641,-0.0006937808,0.01121662,0.036150035,0.008354401,-0.025124684,0.023963401,0.015438223,-0.011237114,-0.008989691,-0.03013869,0.017624166,-0.02147689,0.041505594,0.06929439,0.019851096,0.0480361,0.014673143,0.02057519,0.00853884,0.07191753,-0.012719456,0.02045223,-0.040166702,0.021545202,0.03325366,-0.038609218,0.017801775,-0.010342243,-0.030439258,0.039019085,0.010492527,0.00083296385,-0.04798145,0.036286656,-0.039647542,-0.05429336,-0.025657507,0.037106384,0.034373954,0.025917087,-0.061206404,0.01860784,0.01249403,-0.0017265534,-0.015725128,-0.024004387,0.032707173,-0.004733933,-0.010929715,-0.014372576,-0.020889418,-0.025507223,-0.054457307,0.04683383,0.0024335694,-0.008047003,0.029920096,-0.042653214,0.04046727,-0.06290051,-0.04830934,0.06415743,0.067436345,-0.011312256,0.029510232,-0.02116266,0.013873908,0.05098712,0.025903426,-0.0029493154,-0.012931219,-0.038472597,-0.02147689,0.007124808,0.023676496,0.0029356533,0.027092032,0.024250306,0.039401624,-0.00005795738,-0.060441326,0.021271959,-0.03677849,0.05046796,0.022870429,0.058856517,0.018252624,-0.028253313,-0.029674178,0.0068276566,0.029018395,0.047298342,-0.023239307,-0.05423871,0.016982045,-0.0074253753,0.013839752,-0.0023174412,-0.016708802,0.03560355,-0.03180547,-0.0089555355,-0.04478451,-0.005229186,-0.021353932,-0.028635854,-0.03727033,-0.016544856,0.020862093,0.02185943,0.05918441,0.016203303,-0.04008473,-0.020616176,0.012275437,-0.0365599,0.002635086,0.00013363284,0.0014217169,0.02313001,-0.01236424,-0.03874584,0.02459186,-0.032652523,-0.01038323,0.02796641,0.023457902,0.008368064,-0.014509197,0.011271269,-0.014837089,0.0032942845,-0.044074077,-0.019823771,-0.0058269044,0.039019085,-0.018334597,0.033854794,-0.014932724,0.0006267509,0.0037434276,-0.0030347037,0.021053365,0.017692477,-0.051970795,0.02490609,0.024195658,0.019167988,0.010232946,-0.0033267322,-0.0072204433,-0.01229593,0.044647887,0.004600727,0.0004978144,-0.0091877915,-0.051315013,-0.01899038,-0.0025172501,0.010164635,0.03448325,-0.021012377,-0.038390625,-0.0031559553,0.011756275,0.04147827,-0.003379673,0.014891737,-0.012610159,-0.042789835,-0.04295378,0.0053043272,0.038691193,-0.025684832,-0.010943377,-0.0020561528,0.014031022,-0.02516567,0.04325435,0.00525651,-0.019058691,-0.027870774,0.016230628,-0.030603202,-0.011715288,-0.015602169,-0.012698963,0.06699915,0.008969198,-0.007555166,-0.052271362,-0.019905744,0.018512206,-0.03625933,0.012289098,0.021490553,0.017473882,0.027283302,0.013218124,-0.017788112,0.009966535,-0.028280638,-0.023867765,-0.03713371,0.021750133,0.009918717,-0.00015316544,-0.045467615,0.0005264195,0.0030705668,0.02732429,0.016900072,-0.03740695,-0.011558174,0.026258642,-0.0009059709,-0.0104037225,-0.022296619,-0.00391762,-0.023662833,-0.0012125153,0.019960392,0.0010776016,0.02466017,0.007029173,-0.008197286,0.0063187415,-0.002332811,0.023553537,-0.02332128,0.05104177,-0.02657287,-0.023457902,0.037106384,0.0040439945,0.029592205,-0.021968728,0.005454611,-0.008354401,0.0054614423,-0.006875474,0.008859901,-0.009590825,-0.0040883967,-0.03519368,0.07831141,-0.027419923,0.0244689,-0.039920785,0.013525522,0.016353587,-0.019919407,-0.0101714665,-0.026040047,-0.007500517,-0.002848557,0.0010622317,0.0060250056,-0.015178642,0.007398051,-0.042461943,-0.0026316706,0.022228308,-0.032188013,-0.031067716,-0.010622317,-0.0034121205,0.032078713,0.028307963,0.006691035,0.0079991855,-0.036150035,-0.0012748488,-0.016230628,0.004850061,-0.016148655,0.031914767,-0.00898286,-0.0011211497,0.030876447,-0.036368627,-0.007480024,-0.021818444,0.030411933,0.0112302825,0.02293874,0.015424561,-0.03330831,-0.011319086,0.0268871,-0.0025496976,0.0041191364,-0.01420863,0.01994673,-0.017747125,0.017542193,-0.0076508005,-0.0034462758,-0.03090377,0.007493686,0.027597532,0.02714668,0.004347977,0.031395607,-0.10907856,-0.015028358,0.026272302,-0.03956557,-0.021176323,-0.0058269044,-0.016804438,0.023690159,0.022187322,0.021244634,-0.013525522,-0.019208975,0.018840097,-0.025630182,0.02019265,-0.009433711,0.0004897025,-0.008832576,-0.025698492,0.055522952,-0.00136963,0.0014558722,0.021189986,0.018785449,0.01096387,-0.009058001,0.03459255,0.052599255,0.0403853,-0.02184577,0.030548554,-0.026559208,0.010909222,0.022446902,-0.0043821326,-0.025329616,0.013962711,0.02001504,0.00576884,-0.041778836,-0.043063078,0.00075269875,-0.0023737976,0.035466928,-0.027665842,-0.018635165,0.011619654,-0.008935043,-0.008675462,-0.036723845,0.05989484,0.00083509856,0.011565005,-0.03855457,0.011373735,0.005956695,-0.032406606,0.020957729,-0.022446902,-0.02491975,0.04505775,0.013334253,0.036969762,0.0076439697,0.009133143,-0.030548554,-0.006335819,-0.01726895,0.0041532917,-0.007753267,0.023375928,-0.0016590967,-0.013108827,-0.019618839,-0.025192995,0.015902735,-0.008381725,-0.010075831,-0.04472986,-0.008074327,-0.014809764,-0.007602983,0.005652712,0.015533858,-0.019810108,-0.015643155,-0.020219974,0.03013869,-0.01344355,-0.024796791,-0.03713371,-0.021750133,0.0055912323,-0.0031252154,-0.00089999376,-0.027556544,-0.019318271,0.008532009,-0.09284793,0.010916053,0.027829787,-0.020506877,0.01568414,-0.005792749,0.015766114,0.012473538,0.01860784,-0.02006969,0.040166702,-0.0074390373,0.018402908,-0.01573879,0.052544605,-0.015287939,0.0035282488,0.004525585,0.014181306,-0.00017237784,0.025575534,-0.03461987,-0.027488234,0.025083696,0.019236298,0.023198321,-0.021750133,0.01338207,0.00942688,-0.010390061,-0.017227964,0.04363689,-0.0015421145,-0.021176323,0.028444584,0.014427224,-0.0031849875,-0.0014294018,-0.0034462758,-0.035904113,0.030767148,-0.013785103,-0.005550246,-0.004433366,-0.017064018,-0.013477705,-0.009618149,0.018703476,0.009973365,-0.00007017859,-0.0027358443,0.01344355,0.006588569,0.020288285,-0.017118666,0.017282613,-0.03620468,0.030084042,0.0018290195,-0.00583032,0.02803472,-0.003975684,0.008320246,-0.008163131,0.023184659,-0.014645819,-0.0124872,-0.025698492,-0.0034428602,0.012821922,0.009290258,-0.005051578,-0.019017704,-0.021108013,-0.01751487,-0.017938396,-0.010335412,-0.0038151538,-0.020875756,0.0048944633,-0.014072008,0.027187666,0.004535832,0.01918165,-0.00583032,-0.010554006,-0.024742143,-0.018840097,0.0031166766,-0.006721775,0.05847398,-0.011455708,0.0017214301,-0.0019297779,0.023621848,-0.0019263623,-0.0069745244,0.0115923295,0.032707173,-0.018881083,0.012944882,0.009918717,0.005785918,-0.048473287,-0.019140664,0.01427694,-0.007903551,0.0113600725,0.015766114,0.012316423,0.006014759,0.022897754,0.019086014,0.023375928,-0.048910476,0.0066056466,0.024865102,0.015588506,0.012644314,-0.02300705,-0.014140319,0.0032447593,0.0006942077,0.0029339455,-0.00083509856,0.0054102093,0.009297089,0.01274678,0.010717952,-0.030002069,-0.04440197,-0.007275092,-0.0049866824,0.0037502586,-0.009700122,-0.016900072,0.021586187,0.0008641306,-0.045385644,0.008381725,-0.001221908,0.018512206,-0.0058508134,0.029428259,0.008579827,0.02375847,0.0014840504,0.006014759,0.015916398,-0.027310627,-0.0225562,-0.042297997,-0.011148309,0.018580517,-0.04650594,0.007288754,-0.0007919774,0.03114969,-0.048008773,0.016162317,0.016476545,0.020848433,0.027419923,-0.021039702,-0.05522239,0.007001849,-0.0070701595,-0.016708802,0.012357409,0.014003698,0.012835585,-0.0034121205,-0.018799111,0.00834757,-0.024209319,0.026750479,0.027775139,-0.012862909,-0.020725472,0.058146086,0.0009665967,-0.0013337668,0.00020194356,0.0004041006,0.048282016,0.0148234265,0.005481935,-0.017829098,0.0002516823,-0.007883057,0.010205622,0.024810454,0.0050823176,0.020875756,-0.037871465,-0.03664187,0.020561527,-0.001700083,-0.013525522,-0.010191959,0.025766803,-0.023963401,0.0010280764,0.0050310846,-0.03467452,-0.006762761,-0.011865572,0.023854103,0.010287595,0.035330303,0.01523329,0.028745152,0.0081289755,0.010294425,0.012500862,-0.022091687,-0.0015626077,-0.06661662,-0.0023840442,0.031696174,-0.0087506035,0.00046792845,-0.0077737602,0.032351956,-0.010840911,0.014495535,-0.047489613,0.021053365,-0.01968715,-0.010601824,-0.017091343,0.02179112,-0.006964278,-0.00847053,0.023498887,-0.021299282,0.012125153,0.020807445,0.0009196331,0.014290603,0.010362736,0.019304609,-0.026299627,-0.013286435,-0.04377351,0.01707768,0.030493906,0.031832796,0.044238023,0.014454548,-0.04052192,-0.013600664,-0.008613982,-0.02147689,0.024236644,-0.0136963,0.010840911,0.008675462,0.009891393,-0.007193119,-0.015014697,0.019140664,0.008429543,-0.0043923794,-0.012009025,0.0024284462,-0.015246953,-0.023662833,0.023676496,-0.01860784,0.015260615,-0.007275092,0.037324976,0.014317927,-0.0037673363,-0.0061069783,-0.04620537,0.008716448,-0.020657161,0.03281647,-0.01695472,-0.012821922,-0.021545202,0.02159985,-0.016462883,-0.0076849563,0.02580779,-0.030630527,-0.004006424,0.0055126753,0.008197286,0.03563087,0.011571836,-0.04880118,0.015465547,-0.013812427,-0.012193464,-0.035521574,0.0263816,0.014550184,-0.027010059,-0.01994673,-0.045330994,0.021968728,0.038718518,0.014440887,0.0011510357,0.009816251,-0.008402219,-0.0035658197,-0.014345251,-0.019905744,0.017487545,0.0030688592,0.0006344358,0.011161972,-0.01120979,-0.025971737,-0.00126631,0.00917413,-0.013231787,0.0022798702,0.020793783,0.0013807304,-0.022788456,-0.014181306,0.040767837,-0.0004004716,-0.0054204557,-0.018361922,0.021968728,-0.014440887,-0.0075210105,0.0040303324,-0.007780591,-0.0020817693,-0.014700467,0.011933883,-0.00027922008,-0.002570191,0.004600727,-0.0047168555,-0.0093175825,0.035958763,0.01459117,-0.013293266,0.024181996,-0.037024412,-0.010663304,-0.012418889,0.08230076,-0.009098988,0.0002901071,0.043308996,0.005809827,0.015028358,0.0067525147,-0.0023601353,-0.010342243,0.041259676,-0.019482218,-0.0055468306,0.016203303,-0.0030671514,-0.0014977126,-0.033854794,-0.04003008,0.021504214,0.036423277,-0.0031610786,-0.009256103,0.042543918,0.03434663,0.014495535,0.01133958,-0.015096669,-0.0041532917,-0.0034923856,0.04442929,0.00481249,-0.0071521327,0.017952057,0.005331652,0.0036307147,-0.023594523,0.045604236,0.0149054,-0.00905117,0.021217309,-0.0075961524,0.017801775,-0.03574017,0.0096796295,-0.009481528,0.0012142231,-0.0064758565,-0.014058346,-0.0489378,-0.012036349,-0.031013068,-0.021189986,0.020028703,0.008053834,-0.023867765,-0.01618964,-0.0063802213,0.0066227242,0.01191339,-0.011517188,0.007363896,-0.012692132,0.05142431,-0.0068686428,0.019208975,0.011920221,-0.0034906778,0.023744807,-0.020616176,-0.00077233807,0.024427913,-0.0020219972,0.007568828,0.01949588,0.008805252,-0.01427694,0.023990724,-0.013218124,-0.0006720067,0.017610503,0.025616521,0.023444239,-0.020875756,-0.01032175,0.051588256,-0.014468211,0.06361094,0.048063423,-0.026531884,0.02389509,-0.0001593561,-0.008648138,0.020370256,-0.02274747,0.01420863,-0.0066944505,0.0025787298,0.00021923472,0.0032874534,-0.006663711,-0.02236493,0.014290603,0.0072614294,0.038090058,0.011353242,-0.033417605,-0.008320246,0.005543415,0.021613512,0.014659481,0.01523329,0.030739825,-0.024783129,-0.0030381193,0.0065407516,-0.0062265224,-0.01274678,0.0040542413,-0.00583032,-0.013914893,-0.0066193086,0.025534548,0.03319901,0.03822668,0.030739825,0.0019673489,0.0021022623,0.01751487,-0.0073297406,0.0069745244,0.02026096,-0.01968715,0.038527247,0.00796503,-0.0036990256,-0.024045374,0.020165324,0.012610159,-0.035221007,-0.03166885,0.0054204557,-0.006346066,0.015561182,0.009003353,0.0072341054,-0.005116473,-0.024550874,0.0026846114,0.0014242785,-0.015588506,0.0005208692,-0.011045843,0.0012927804,-0.009980196,-0.009385893,0.012528186,-0.024824116,0.042789835,-0.03721568,0.008456867,0.014864413,0.0048466455,-0.0078967195,-0.020916743,0.017419234,-0.0022491305,-0.02542525,-0.0062231068,0.007671294,0.0011109031,0.005331652,-0.0016556811,-0.0068788896,-0.045276344,-0.01942757,0.024632845,-0.029455584,0.0068208254,-0.02624498,-0.017637828,-0.056506626,-0.034893118,-0.0075210105,-0.00064468244,0.013074672,0.029264312,-0.04161489,-0.007036004,-0.012077335,0.030302636,0.009310751,0.009741109,-0.017870085,-0.043063078,-0.023662833,0.038008086,0.018785449,0.02554821,0.031996742,0.04483916,-0.015711466,-0.03267985,-0.010916053,0.0031969417,-0.034783818,-0.008900887,0.0015694388,-0.01975546,0.003335271,-0.0070428355,-0.008689124,0.0018273118,0.013935387,0.039647542,-0.0150556825,0.0002928822,0.019318271,0.0014960048,0.0055536614,-0.017391909,-0.007206781,-0.020862093,0.0034958012,-0.0049832673,-0.067327045,0.022050701,-0.020739134,-0.016654154,0.008422712,0.029728826,-0.019536866,0.025397927,-0.00039940423,-0.011640146,0.010089493,-0.0029424843,-0.004535832,0.0068139946,0.035712846,-0.03606806,-0.0048773857,-0.005116473,-0.0100416755,-0.0153152635,-0.008504685,-0.047954127,0.011120985,-0.00892138,-0.026258642,-0.02772049,0.01618964,0.017350923,0.022078024,0.019605177,-0.0124462135,0.003593144,-0.041997433,0.02140858,-0.00576884,0.008456867,0.0010246608,0.0016573889,-0.018621502,0.04371886,-0.008204117,0.020561527,0.0035248331,0.034319308,0.03038461,-0.030493906,0.0013841459,-0.013716793,0.044128727,-0.0074390373,0.004696362,0.011687964,-0.040631216,0.023293955,0.020411244,-0.029018395,-0.025780465,-0.026682168,0.028499233,0.028909096,0.008948704,-0.015766114,0.008545672,-0.033854794,0.020110676,0.010431047,-0.029865447,0.0072614294,-0.00719995,-0.05803679,-0.03713371,0.039674867,0.014222292,0.004836399,-0.041396298,0.012138815,0.003562404,0.003511171,-0.024031712,0.04377351,-0.018320935,0.0009119481,0.025397927,0.0070428355,0.015916398,0.004136214,0.021640837,0.009180961,-0.0016454345,-0.016831761,-0.0025821452,-0.0124872,-0.0018204807,0.020424906,-0.0049456963,0.0024318616,0.010267101,0.0022132674,0.026668506,0.023772132,0.010198791,0.03046658,0.0064826873,-0.03147758,-0.015069345,0.001863175,0.004440197,0.015383574,-0.0034770158,-0.008450036,-0.004013255,0.02504271,0.02134027,-0.0043104063,-0.00847736,0.028307963,-0.014454548,-0.034865793,0.013061009,0.0070633283,-0.02791176,-0.0023071945,-0.003430906,0.012753611,-0.0355489,0.042216025,-0.016708802,0.024824116,-0.00059174164,0.0065168426,-0.0072614294,-0.021203648,0.014987372,0.036751166,-0.025315953,0.024496224,-0.040631216,-0.01949588,-0.009522514,0.0031081378,0.02057519,0.0028451416,0.00023609893,0.0054580267,0.023116348,0.019851096,0.01567048,-0.024100022,-0.022774795,0.0093175825,-0.013757779,0.01121662,0.01676345,-0.031750824,0.005102811,-0.0070838216,-0.030439258,0.043227024,0.0031849875,-0.009727446,0.006913045,-0.0029014978,0.007869395,-0.0317235,-0.0082314415,0.0031047224]},{"id":"enum-WebhookType","type":"enum","source":"main","text":"Enum: WebhookType\nMembers: Incoming=1, ChannelFollower=2","meta":{"url":"/docs/typedefs/WebhookType"},"embedding":[-0.031151246,0.0052498193,0.031631663,-0.017484648,0.010619743,0.0035241111,0.029128438,0.022389958,0.048850816,0.041998554,0.05014036,0.0042068087,-0.02304737,-0.0014325591,0.0015226372,-0.0008652246,0.013653955,0.020556787,-0.012617266,0.038787346,0.01907761,0.0125856595,0.041113574,0.017054802,-0.014501006,0.0086348625,-0.05203674,0.03459002,-0.043338664,-0.017320294,0.023489859,-0.023805924,-0.00056614925,0.053654987,-0.03443831,0.0054647424,-0.004718832,0.015006708,0.004674583,0.008331441,0.020645285,-0.014576862,-0.012522447,0.03112596,-0.021947468,-0.0140964445,-0.05451468,0.019697094,-0.01962124,0.021479694,-0.025310388,-0.021542907,0.033426903,0.050190926,-0.0046619405,-0.0023799601,-0.0032396538,-0.017383508,-0.045867175,-0.031656947,-0.009766371,-0.053806696,0.01367924,-0.03855978,0.042984672,-0.03499458,-0.0324155,0.013881521,0.0070039732,0.010291036,0.034615304,0.033477474,-0.012471876,0.0035810026,0.026776923,0.041492853,-0.034261312,-0.022731306,-0.054059546,-0.0011725966,-0.012825868,0.006175886,-0.065184996,-0.033882037,0.0070924712,-0.02235203,-0.014880283,-0.06832035,-0.011334047,-0.0007111435,-0.047308426,-0.03453945,-0.034817584,0.014083802,0.02542417,-0.020379793,-0.01367924,-0.06488157,-0.06225192,0.045917746,0.052441303,-0.023856493,-0.04758656,-0.013767738,0.0018063044,-0.0141849425,0.0026328112,-0.041568708,-0.012402343,-0.044729345,-0.026878063,-0.047561277,-0.012775297,0.018445482,0.028926156,-0.020329222,0.024602404,-0.007256824,-0.0084136175,0.011346689,-0.02532303,-0.005565883,0.034665875,0.00560065,-0.01164379,0.03097425,-0.036157697,0.020051086,-0.016915733,-0.00222983,0.07175912,0.017724857,0.026296506,0.013274678,-0.0036347334,0.022086537,0.0123201655,0.012547731,-0.018002992,0.013476959,0.0011955112,-0.014159657,0.040355023,-0.008483152,0.007301073,0.014475721,-0.03964704,-0.020973992,0.020392435,-0.0762093,-0.04682801,0.016283605,0.010031864,0.011182336,-0.010291036,0.034767017,0.00078778894,0.033325765,0.0005072824,-0.006883869,-0.0024400123,-0.01977295,0.0061727255,0.015107849,-0.025993085,-0.007143041,0.02958357,-0.029912276,-0.03421074,0.031151246,0.018432839,0.014766499,-0.026953919,-0.013401104,-0.011473115,-0.028268743,-0.048749678,-0.014248155,-0.06017854,-0.026650498,0.06134166,0.04134114,0.038483925,-0.042150266,-0.019153465,-0.018458124,0.043540947,-0.01749729,0.013021828,-0.044223644,-0.0070039732,0.013262036,-0.0022440527,0.034160174,0.005199249,-0.027838897,0.009153207,0.03390732,0.02700449,-0.06579184,0.031252384,-0.043642085,0.039368905,-0.039090768,-0.009854868,0.028218174,0.0008960408,0.024349554,0.0042510577,0.024905825,0.041695133,-0.01085363,0.009589375,0.0018363305,-0.09557769,0.02309794,-0.05203674,0.006953403,0.0075539243,-0.018394912,-0.016270963,-0.00074512034,0.007705635,0.048243973,-0.0127184065,0.053452704,-0.0016166662,-0.058206305,-0.018673047,-0.043161668,-0.048193403,-0.0030642382,0.020885494,-0.05673977,-0.030392693,0.026372362,0.035146292,0.022023324,-0.015423913,-0.014286082,-0.05148047,-0.024539191,-0.014880283,0.03107539,-0.034387738,0.022175035,0.02235203,-0.020493574,-0.019254604,-0.007389571,0.03911605,0.08440167,0.0035999664,0.009848547,-0.010512281,0.009677873,0.010019221,0.049078383,-0.023654213,-0.012326487,0.019798234,-0.035727847,0.009380773,0.055930644,-0.008192373,-0.034362454,0.06311161,-0.01917875,-0.0013464317,0.009816941,-0.022870375,0.0064034523,0.04766242,0.010107719,-0.063313894,-0.0045481576,0.01799035,-0.022086537,-0.03881263,-0.009330203,-0.024792042,0.010505959,0.006770086,0.03175809,-0.006106352,-0.014614789,-0.0043332344,0.01729501,0.029330717,0.013666597,-0.025462098,0.007275788,-0.029229578,-0.007162005,-0.025841374,0.049230095,0.02557588,-0.033806182,0.09057123,-0.011947211,0.00035339882,0.022769235,-0.051177047,-0.007945843,-0.0200258,0.033174053,0.004914792,-0.018875329,-0.050721914,-0.06048196,-0.025993085,0.016397389,-0.04351566,0.021833686,-0.031656947,0.018445482,0.016928377,0.03532329,0.051227618,0.00078818406,-0.0068775476,0.018698333,0.016270963,-0.032137364,0.032693636,-0.0229968,0.0019090252,0.013325249,0.051050622,0.01615718,0.014121729,-0.048749678,0.020013157,0.021150988,-0.015929613,0.007041901,-0.018710975,0.016359461,-0.019292533,0.01710537,0.01040482,-0.012598302,0.007617137,-0.023755353,-0.029431859,-0.011435187,-0.011719645,0.023325507,-0.0018710975,0.031707518,0.007572888,-0.023578357,-0.021644047,-0.0093428455,-0.038888488,-0.030190412,0.06771351,-0.024475979,0.027889468,0.04268125,-0.0342866,0.032238506,-0.04275711,0.020291295,-0.0034166493,-0.0102341445,-0.041770987,-0.08000206,0.0019753985,-0.020708498,0.014829712,-0.0020733783,0.04053202,0.014602146,-0.0067068734,0.03668868,-0.00018074898,0.054868672,0.017585788,-0.0059293564,0.050797768,0.008287192,0.0097158,-0.039293047,-0.012958615,0.04020331,-0.03335105,0.06402188,-0.06715723,-0.020721141,0.0041309535,-0.014640074,-0.0035999664,-0.014930853,0.0009434504,0.0011702261,0.034969296,0.0330982,0.03421074,-0.03226379,-0.011081195,-0.051632177,0.0118776765,0.024804685,-0.0055848467,-0.0027529155,-0.03390732,0.0062580626,0.051025335,0.02488054,0.014336653,0.03777594,0.004405929,0.011719645,-0.0073137158,-0.018066205,-0.014892925,-0.01556298,0.029356003,-0.0069786883,-0.028015893,-0.010038186,-0.020051086,0.021871613,-0.001793662,-0.043338664,-0.0068901903,0.02423577,0.080608904,-0.058408584,-0.020885494,-0.01699159,-0.000733268,0.02586666,0.022187676,-0.06968574,0.05709376,-0.02591723,0.01273737,0.025828732,-0.04386965,0.017800711,-0.0012065734,-0.005436297,0.0051834458,-0.04306053,-0.03810465,-0.053604417,-0.01710537,-0.0104996385,-0.051075906,-0.055981215,-0.03532329,0.011194979,-0.018698333,-0.017914494,0.0036157696,0.040936578,-0.000052150524,0.0024953235,-0.05044378,-0.041265287,0.03562671,0.017623715,-0.009323881,-0.00812916,-0.02235203,0.006700552,0.014488364,0.034160174,0.04852211,-0.0054742247,0.02725734,0.046018884,0.0019169268,0.0017051641,0.046120025,-0.0013883101,0.008653826,0.003543075,0.016144538,-0.004845258,-0.03484287,-0.00401401,0.009330203,0.051303472,0.049204808,-0.0047788844,-0.029381288,-0.03216265,-0.008698075,-0.009671551,0.04579132,-0.013818308,0.0010825184,-0.02730791,-0.00589775,0.007345322,0.030190412,-0.04791527,-0.044476494,-0.050974764,0.005704951,-0.009323881,0.04187213,0.039571185,-0.014071159,-0.03282006,-0.06022911,-0.036410548,-0.006536199,0.014058516,-0.012623587,0.01486764,-0.027560761,-0.028420454,-0.014930853,0.012200061,-0.032921202,0.0028635378,-0.028825017,-0.005695469,-0.006254902,0.00807859,-0.006725837,0.0011773376,0.010594457,-0.05451468,-0.018913256,-0.022023324,0.016270963,0.0100129,-0.024400122,-0.019949945,-0.011106481,0.022832448,-0.008122839,-0.011220264,0.020493574,-0.010354249,0.0023530948,0.038888488,-0.039874606,0.01244027,-0.013047112,0.03866092,-0.013944734,-0.016081326,0.0147159295,0.019166106,-0.013122967,-0.041416995,0.01362867,0.001268996,0.008963569,0.010518602,-0.020114299,0.0011575836,-0.025714949,0.008647505,0.025891945,-0.039621755,0.04766242,-0.0041183108,0.0039887247,-0.014501006,-0.026574641,0.012996542,0.011157052,0.003394525,0.011473115,-0.007617137,-0.03969761,0.013514887,-0.01100534,-0.010967413,-0.022225605,0.012162134,0.007838381,-0.020582072,-0.0027323712,0.022731306,0.052997574,0.012117885,-0.004197327,-0.0218084,0.03534857,0.022339387,-0.0048800246,-0.02067057,0.023767997,-0.00011605467,0.0073137158,0.0023230687,0.027130915,0.0120104235,-0.032187935,-0.032440785,-0.04386965,0.03350276,-0.015575623,0.05284586,-0.011289798,-0.02864802,0.025651736,0.07180969,-0.0021666172,0.0048357756,-0.03287063,0.028951442,-0.007920559,0.0062485808,0.012332808,-0.0083693685,0.007832061,0.0030357926,-0.0015487125,-0.0005610132,0.040380307,0.026903348,0.020657929,0.040557303,0.0030089272,0.013198823,-0.022883017,0.024943752,0.011808143,-0.006422416,0.025335671,0.001967497,0.00083914935,-0.01590433,-0.013767738,-0.026220651,-0.043186955,0.015449197,0.014020589,-0.04376851,-0.009336524,0.0016830396,0.003057917,0.0006009163,0.018458124,0.0051518395,0.023173796,0.026675783,-0.006027336,0.008293513,-0.018609835,0.006235938,0.021644047,-0.007073507,0.026802208,-0.0013013926,0.00013027753,-0.08682904,-0.016776664,0.034893442,0.0031574771,-0.012187419,-0.0006427947,-0.0009568831,0.015171061,-0.009741086,-0.004475463,0.006166404,-0.020202797,-0.0037358738,-0.009349166,0.004614531,-0.008875071,0.03314877,-0.009083672,-0.016688168,0.0013179859,-0.023856493,0.01253509,0.004371162,0.010000258,0.014501006,0.022073895,-0.023034727,-0.028673306,-0.031151246,0.021618763,-0.005363602,0.023426646,-0.02586666,0.034337167,0.031328242,0.024463337,-0.023262294,0.028066464,-0.022137107,0.014336653,-0.02369214,0.0171433,0.0017715375,-0.019140823,-0.0064318976,-0.030139841,-0.030620258,-0.0031985654,0.010859951,-0.023085298,-0.004526033,0.008559007,0.014463078,0.011738609,0.009488234,-0.0068016923,0.019507457,0.0017683768,0.020278651,-0.0312271,0.027181484,-0.006902833,-0.028167604,0.0083251195,0.0035304322,0.01982352,-0.016776664,0.011422545,0.0023388718,0.012939651,0.020177511,0.0027339517,0.03211208,0.010107719,0.030696115,-0.014640074,-0.041695133,-0.008514758,0.0027149878,0.017927138,0.0454879,-0.02467826,0.009671551,-0.007029258,-0.015676763,0.03676454,0.010335285,0.0359807,0.020721141,0.04847154,0.023603642,-0.00039883298,0.011593219,-0.036739253,-0.0033724005,0.00010039963,0.009159528,-0.058004025,0.024615047,0.009937045,-0.0107208835,0.03825636,-0.02438748,-0.0024811006,0.011858713,0.0062138136,0.036056556,0.0067195157,0.0066057327,-0.0029378128,0.006624697,-0.047460135,-0.028521596,0.042023838,0.022870375,-0.05689148,-0.019166106,-0.022857731,-0.005445779,0.03112596,-0.033578616,-0.031353526,-0.020999277,-0.008830822,-0.0224026,0.005366763,-0.0158664,0.008976211,-0.001125187,-0.023072656,-0.03780123,0.010796739,0.008761288,-0.020202797,-0.017320294,-0.024513906,-0.02096135,0.04682801,-0.017383508,0.019861447,0.0033692399,-0.0067827287,-0.11165901,-0.0055816863,0.014842355,-0.015891686,0.017750142,-0.02849631,-0.014854997,0.014943495,-0.031555805,-0.013350534,-0.00037730113,0.012263275,0.009355487,-0.021580834,0.036815107,-0.017623715,0.03557614,0.03395789,-0.008306156,0.011144409,-0.010095077,-0.020910779,-0.025790803,0.056082357,-0.0144504355,0.004270022,-0.026928633,0.014210227,0.04758656,-0.033174053,-0.00015319216,0.004876864,-0.006457183,-0.019962588,0.012219026,-0.018293772,-0.0064002913,0.0008747065,-0.031631663,-0.010986377,0.008868749,-0.03216265,-0.025702305,0.006612054,-0.015069921,0.03671397,-0.012421306,0.013894163,0.026549356,-0.0037295525,0.017762784,-0.0086348625,0.012655194,-0.019494813,-0.02260488,0.051025335,-0.00036781922,0.009760049,0.030797254,-0.035651993,0.0063149543,0.01546184,0.023325507,-0.0102783935,0.015069921,-0.031302955,-0.003995046,-0.0059609627,-0.015423913,0.027181484,0.03469116,0.012667836,0.033376336,0.0106323855,0.034413025,0.0068522627,-0.048142835,-0.043439806,-0.000045014396,0.0100129,0.028799731,-0.0054426184,-0.012219026,0.00500645,0.012282238,0.015272202,-0.004058259,-0.046069454,-0.015171061,-0.046651013,-0.00550267,0.004298467,-0.009481913,0.015335415,0.009943366,-0.007737241,-0.0271562,-0.01189664,0.025247173,-0.017598432,0.027864182,0.022124464,-0.027687186,-0.06017854,0.010980056,-0.010126683,0.0052213734,0.039849322,0.040633157,-0.022807162,-0.0067321584,0.0085021155,-0.015879044,-0.009500877,-0.0336039,0.0065045925,0.022225605,0.019545384,0.008748645,0.020303937,-0.014842355,0.019343102,-0.009153207,0.010600779,-0.011978817,0.050469063,0.027333194,-0.029457144,0.010057149,0.01680195,-0.03008927,0.039343618,-0.009178492,-0.0034482558,-0.038736776,-0.037143815,0.020303937,-0.06361732,-0.036107127,-0.011460473,0.037093244,-0.003906548,0.006368685,0.007838381,0.033224624,-0.00033285466,-0.033174053,0.02735848,0.028572164,-0.015272202,-0.03226379,-0.044476494,-0.055778936,0.002269338,0.0016925215,0.00649195,-0.0012508223,0.00619485,-0.0051518395,0.04579132,-0.015499768,0.033325765,0.06983745,0.021138346,-0.0141723,0.026498787,-0.029381288,-0.006039979,0.009330203,0.03370504,-0.00018410715,0.018470766,0.007528639,-0.015954899,0.0037927653,0.035449713,0.017257081,0.028117033,-0.011574255,-0.0129839,-0.0008063577,0.006985009,0.018609835,0.048597965,0.020089014,0.03355333,0.017193869,0.026574641,-0.0063212756,0.01625832,0.000097634074,0.0772207,0.0044217324,-0.0126741575,-0.022857731,-0.023565715,-0.0034103282,0.025310388,-0.045285616,-0.006229617,0.041315857,-0.008691754,0.02700449,-0.015044635,-0.007756205,-0.007503354,-0.007825739,0.006883869,-0.015145776,0.031833943,-0.009146886,0.0012247472,-0.0011828687,-0.020190153,-0.040430877,0.006239099,-0.03423603,-0.04048145,0.032036223,0.046221167,0.028268743,-0.009260668,-0.004519712,0.048749678,-0.009892796,-0.0012057833,0.0024352714,0.031833943,-0.010878915,0.02294623,0.028117033,-0.029482428,-0.022339387,0.013641313,-0.041518137,-0.047005005,-0.018622477,-0.010613422,-0.008976211,0.000020963918,-0.0075539243,0.058509726,0.010645028,-0.025525311,0.0004950349,-0.017775426,-0.0010129844,-0.0079332,0.02720677,-0.016789308,-0.013350534,0.0028730198,0.029558284,0.022731306,0.0388632,0.0021587156,0.010682955,0.013982661,0.033325765,-0.004396447,0.021884255,0.00067637645,0.013262036,0.026347077,-0.025247173,0.023135869,-0.029507713,0.004589246,-0.0042953067,0.009633624,-0.028875586,0.02710563,0.024564477,0.013009185,-0.015348057,0.0141849425,0.009677873,0.03082254,-0.044248927,0.027889468,-0.0052940683,-0.055121522,0.034564734,0.00465878,0.0027734595,0.0010975314,0.0036252516,0.01788921,0.010512281,-0.0017825997,0.03772537,-0.01233913,0.023843851,-0.019760307,0.009336524,-0.021972753,-0.03335105,-0.037093244,0.023730068,0.037598945,-0.013363176,0.022440528,-0.0048958277,-0.030847825,0.016043397,0.04708086,-0.009797977,-0.018243201,0.0055437586,-0.011422545,-0.016384747,-0.0018679369,0.019583311,0.002888823,0.011106481,0.050266784,-0.023414005,-0.03557614,0.008388332,0.009987615,0.005426815,-0.03206151,0.007591852,0.008337762,-0.0014594245,-0.034893442,0.013818308,-0.0068901903,0.028015893,0.0018473928,-0.00020228082,-0.021454409,0.027055059,0.024020847,-0.0049084704,0.0059704445,0.004589246,0.021644047,0.0123644145,0.008988854,-0.0068269777,0.015638836,-0.010164611,0.033882037,0.030544404,-0.026928633,0.03484287,-0.013552815,-0.007945843,-0.045513183,0.06842148,0.003742195,0.008944605,0.041366428,-0.029179007,-0.0060304967,0.018129418,0.030468548,0.00011161002,-0.005606971,-0.0072631454,0.03107539,0.0010027123,0.023034727,0.006523556,0.0073769283,-0.02255431,0.00035517666,0.020556787,0.0009323881,-0.025702305,0.035070438,-0.0075539243,0.006681588,-0.07024201,-0.015853759,0.024589762,0.017724857,0.009551447,0.014033232,-0.0143619375,0.0031985654,-0.038989626,0.007528639,-0.033679757,0.009431343,-0.017674286,-0.015095206,0.0037358738,0.020076372,0.008034341,-0.05203674,0.019267248,-0.042984672,0.002566438,0.03127767,0.011580577,-0.01020886,-0.00072773686,-0.040102173,-0.011327726,0.004465981,0.011131766,-0.014741214,0.004168881,-0.004914792,-0.017674286,0.0124529125,0.019343102,0.015259559,0.022630166,-0.003909709,-0.011808143,0.008540044,0.016650239,0.02542417,0.034008462,-0.01224431,0.02642293,0.013186181,0.043970793,0.015196347,-0.022389958,-0.020620001,-0.035222147,-0.00247794,-0.02220032,0.0040361346,-0.0008739163,0.029532999,0.009197456,-0.01199146,0.0022424725,0.0015084144,-0.003027891,0.05527323,0.00981062,-0.0039286725,-0.000896831,-0.041695133,0.010727204,0.05279529,0.020215439,-0.022187676,0.005287747,0.013565457,-0.0019121858,-0.048496824,-0.02859745,-0.032769494,-0.014513648,-0.025209246,0.01927989,0.00024988793,-0.027130915,-0.022187676,-0.00946295,0.0066942307,0.00007847271,0.010815702,-0.02423577,-0.00008400383,0.03147995,-0.0056828265,0.021732545,0.0057902886,0.022693379,-0.026372362,-0.00067124044,0.041063007,0.009880153,0.004801009,0.0012768976,0.021075133,-0.011169693,-0.008849786,0.03443831,0.018002992,0.013122967,0.03365447,-0.0330982,0.011947211,-0.012478198,0.008894035,0.037042674,0.03319934,-0.042605396,-0.04788998,-0.00842626,0.030948965,0.019393673,-0.018685691,0.023805924,0.00837569,0.021416482,0.033325765,-0.007914237,-0.0002988778,-0.010645028,-0.00540153,0.02958357,0.013982661,0.0018631959,0.007547603,0.013502245,-0.029912276,0.023274936,0.0043237526,-0.0036410547,0.009500877,0.03474173,-0.016296249,-0.048496824,0.013009185,0.0010177253,0.0031005857,-0.00081070355,-0.00708615,-0.025563238,0.010512281,0.012433949,-0.008356726,-0.020430362,-0.007547603,0.008653826,-0.01575262,-0.0047504385,-0.021934826,-0.03706796,-0.024577118,-0.020253366,-0.009760049,-0.005192928,0.024450693,0.025512667,-0.0062928298,-0.017206512,-0.015335415,0.02572759,0.01496878,0.029052582,0.0038717813,-0.05234016,0.00071588444,0.016776664,0.008097554,-0.022250889,-0.008615899,0.03398318,0.028875586,-0.029507713,0.01982352,-0.01902704,0.012332808,0.055778936,0.00057721144,-0.01734558,0.018407553,-0.034185458,0.0040266523,-0.013881521,0.003874942,-0.025108106,-0.030873109,0.01695366,0.021087775,-0.0062896693,0.01144783,-0.035702564,-0.008059626,-0.0018742582,-0.011985138,0.00445966,-0.032693636,0.016587026,-0.021530265,-0.008344084,-0.011852391,0.01253509,-0.009595696,0.013451674,-0.0072125755,-0.046271738,-0.005660702,-0.025714949,-0.01020886,-0.015600908,0.03335105,-0.015031993,0.0006479307,0.025588524,-0.007117756,-0.028926156,0.008072269,-0.024766758,0.033629186,-0.00069099443,-0.0026407128,0.009867511,0.0035968057,-0.0015953319,0.01962124,0.025462098,-0.024121987,-0.028622735,0.010961092,0.022175035,-0.0055880076,0.012971257,0.0009157948,0.013186181,0.04222612,0.0063655246,0.008091233,0.00896989,-0.021530265,0.003454577,0.03509572,-0.0044881054,0.031909797,0.008577971,0.021226844,-0.013502245,0.009159528,-0.0019406315,-0.035702564,-0.025714949,0.018546622,-0.0071240775,-0.012383379,-0.020190153,0.016877806,-0.010784096,0.012414985,-0.006656303,-0.0021192075,0.0036062878,-0.02185897,0.01749729,0.004232094,-0.0042068087,-0.0032744207,-0.02849631,-0.036562257,0.023679499,0.04543733,-0.017762784,0.011675396,0.0017399311,-0.010708241,0.013653955,-0.007813096,0.006352882,-0.03979875,0.013059755,0.021277413,-0.021960111,-0.0007241811,0.018407553,-0.0118334275,0.003558878,-0.021100417,0.014475721,-0.0109042,-0.03335105,-0.009412379,0.037750658,0.038003508,0.04847154,0.007503354,-0.013388461,0.003830693,-0.0026185883,-0.0029757405,0.0020180673,-0.011371975,0.02462769,0.029229578,0.037447236,0.0135781,-0.0005333576,0.00008533722,-0.008464188,-0.034337167,0.034185458,0.0068080137,0.038003508,-0.03618298,0.027459621,-0.034767017,-0.024981681,-0.003995046,0.006681588,-0.049154237,-0.007920559,0.00560065,0.008761288,0.0035114684,0.025082821,-0.0006001261,0.013363176,0.0019611758,-0.024311626,-0.019418959,-0.006928118,0.018546622,0.020215439,-0.023262294,0.05370556,0.0015257979,-0.0359807,0.005234016,0.017712213,0.022250889,0.01610661,0.05153104,0.003206467,-0.012212704,0.03196037,0.0068522627,-0.0073769283,0.00035339882,-0.014640074,-0.0062612235,0.017231798,-0.013552815,-0.0017573145,-0.01848341,0.01590433,-0.01006347,0.00028169184,0.005158161,0.023072656,-0.00713672,-0.045766033,-0.0048831855,-0.018015634,-0.014690644,0.02051886]},{"id":"guide-installation-0","type":"guide","source":"guides","text":"Guide: Installation (installation)\n\n```bash\nnpm install @fluxerjs/core\n\n# Run your bot (Node 18+)\nFLUXER_BOT_TOKEN=your_token node your-bot.js\n```","meta":{"slug":"installation","url":"/guides/installation"},"embedding":[-0.042479027,-0.019205697,0.020315051,-0.052971672,0.031801492,-0.06341809,-0.018708799,0.054219697,-0.01961015,0.016466979,0.0020367054,0.06253985,0.017102547,-0.06341809,0.042294137,0.07816326,-0.06549813,-0.033927754,-0.009279287,0.025884936,0.012376235,-0.010769982,0.024382684,0.0056363293,-0.019621706,0.00039072963,-0.010925985,0.073124945,-0.014456274,-0.021239514,0.03889674,-0.024636911,0.034112647,0.031870827,-0.014121157,-0.004417195,0.054774374,-0.0129078,-0.0049083154,0.0074476968,-0.035984684,-0.043911945,0.02319244,-0.011879336,0.0007211526,-0.002598605,-0.053942356,-0.0057201083,-0.031385485,0.015611852,-0.01996838,-0.018454572,-0.0015686965,0.041670125,-0.0099553,0.0020164826,-0.033650417,0.018362125,-0.054543257,0.020453721,0.043449715,-0.0029929457,0.008695721,0.03818028,0.008585941,0.050013393,-0.0073668063,-0.0037671826,-0.007037467,0.014930061,0.019748818,-0.00028708877,0.038989183,-0.06831774,0.024567576,0.01982971,-0.020835062,0.013381587,0.020187939,0.0006182339,-0.019841265,-0.05246322,-0.038989183,-0.03875807,-0.032587286,-0.01802701,-0.035984684,0.0006536235,-0.039728753,-0.007927261,0.008169932,0.005171209,-0.02185197,0.060090028,0.051584978,0.010267306,0.012064229,-0.027317852,-0.011856225,0.03848073,0.085235395,-0.04904271,0.00003692431,-0.011833114,0.023261774,-0.022395091,0.015762076,-0.011393994,-0.025468927,0.005945446,-0.047193784,-0.019818153,0.009643294,0.020407498,0.043287933,-0.022926657,0.07682279,0.0081468215,0.019067029,-0.046754666,-0.023966677,-0.013023358,-0.00757481,-0.004576087,-0.013635814,-0.029328557,-0.028612098,0.015796743,-0.05218588,-0.00801393,0.013254474,-0.019263476,0.07072134,-0.028796991,-0.0026708285,-0.016778985,0.000117995296,0.008268157,0.009261954,0.02715607,-0.003434954,-0.0796424,0.045298636,0.009331288,-0.019899044,-0.0074476968,-0.011734889,0.009868632,-0.030853918,0.030206796,0.01944837,-0.013439366,-0.014340716,0.006055226,-0.009429513,-0.053896133,0.017680336,0.012919356,-0.053757463,-0.010371308,-0.002611605,0.015103398,0.019887488,-0.053295232,-0.029166775,-0.025630709,-0.027826305,-0.004968983,-0.028219203,0.045321748,0.02699429,-0.01843146,0.008897946,-0.018697243,0.040930554,0.02199064,-0.0021349294,-0.014363828,0.0052000987,0.029605895,0.019124808,0.012133564,-0.00048317583,-0.009799297,-0.017599445,-0.024775581,-0.021817302,0.04324171,-0.022660874,0.008152599,-0.017761225,0.013994043,-0.0136127025,0.006979688,0.05209343,0.011029987,0.06369543,-0.019113252,0.050013393,0.018662576,0.0043796385,0.021181734,-0.0049603162,-0.0060147806,-0.012873133,-0.027849417,-0.030345464,-0.026208498,0.013289141,-0.0036285133,0.0032442838,0.02937478,-0.011168656,0.038064722,-0.06554435,0.0062401183,0.038434505,0.04904271,-0.021713302,-0.03935897,-0.03956697,-0.016282087,0.057593983,-0.015103398,0.011255325,0.026000492,0.029421002,-0.013832263,0.005549661,0.021123957,0.010521533,0.042409692,-0.00050412066,-0.008557051,0.0055063264,-0.020234162,-0.025884936,-0.0048476476,-0.013173583,0.0010457976,-0.028796991,-0.007777036,0.03769494,-0.0045240857,0.036423802,-0.033026405,-0.02237198,-0.03427443,0.0656368,0.046639107,0.044535957,0.0205115,0.052833002,0.0042785257,0.022175532,-0.026508948,-0.02535337,0.022961324,0.008481938,-0.03399709,-0.009504625,-0.008672609,-0.0018344793,-0.005795221,-0.014756724,-0.020996843,-0.03757938,0.036678027,-0.016732762,-0.034990884,0.02013016,-0.029490337,0.038919847,-0.051076524,-0.022868877,0.009527736,0.007239693,0.05625351,-0.032309946,0.033049516,-0.020777283,-0.023042215,0.00030568635,-0.0016438089,-0.019506147,0.008984615,0.010047746,-0.00087607215,0.025191588,0.00090423936,-0.03133926,0.04592265,-0.009718407,-0.004359416,0.019113252,0.05967402,0.057778873,-0.0063961213,0.011261103,0.04120789,-0.047702238,-0.0048447587,0.017541666,-0.004630977,-0.019159475,0.008048597,-0.012757575,-0.00035588176,0.026878731,-0.02817298,-0.0063441205,-0.0061245607,-0.02349289,-0.022198644,-0.025861824,-0.009608626,0.014202047,0.011567331,0.027433408,-0.012029561,0.018142566,-0.042548362,0.05565261,-0.03029924,-0.031709045,-0.021216402,0.0037614047,-0.012653573,0.03910474,0.030738361,0.0328184,-0.034782883,-0.0070027993,0.042132355,-0.027664525,-0.013162027,-0.0004983428,0.029813899,0.037833605,0.036215797,0.01947148,-0.03610024,-0.049273822,0.014329161,-0.023203995,0.030276129,0.0052492106,-0.032402392,0.0123069,0.020707948,-0.07141469,0.040214095,-0.004154301,-0.05787132,0.014051822,-0.0074996976,0.004980539,-0.044928852,-0.010348196,0.0054485477,-0.058888227,0.028311647,0.011151322,0.052278325,-0.014225159,-0.013693593,0.00058934453,0.027826305,-0.0078117037,0.004446084,0.05491304,-0.006419233,-0.01747233,0.0043247486,-0.05232455,-0.014306049,-0.0021435963,-0.03473666,-0.019032361,0.0075170314,0.020499945,0.014132712,-0.012387791,-0.045575976,-0.045090634,-0.0052492106,0.012237566,0.004602087,0.042409692,0.055144157,0.028219203,-0.008701499,-0.0025538262,-0.00031308926,0.04203991,0.024636911,0.061199382,0.004994984,0.017842116,-0.008799722,0.034089535,0.02729474,0.021782635,0.01865102,0.07215425,-0.006205451,0.017622557,-0.03129304,-0.03834206,-0.018581687,-0.008776611,0.013000246,0.013000246,-0.0015166955,-0.0037296263,-0.005356102,0.06475856,-0.051538754,-0.01878969,0.024636911,-0.017356774,0.013034914,-0.017194992,-0.02907433,-0.0071530244,0.016258975,0.042109244,-0.039335858,-0.009874409,-0.03358108,0.00020926786,-0.055560164,0.019783486,0.05532905,0.002056928,0.002611605,-0.0011107988,-0.02669384,-0.003700737,0.048719145,0.0067485725,-0.0111051,0.04180879,0.016039416,-0.05787132,0.00054637145,-0.044374175,-0.03700159,0.0018720356,0.019263476,-0.07358717,-0.07728502,0.02805742,0.007857927,-0.0030940587,0.0019962601,0.037232704,0.041508343,0.05384991,0.030183684,-0.0023154884,0.02431335,-0.05338768,-0.0050412067,-0.009643294,0.0010299084,0.009498847,0.038272727,0.03757938,-0.04504441,0.050152063,-0.014375384,-0.012572682,-0.010388642,-0.042941257,-0.07793214,-0.0063961213,-0.015530962,0.025468927,0.001396082,0.023227107,0.047332454,-0.049458716,0.028704545,0.013138915,0.07358717,0.035591785,0.005191432,-0.034066424,0.00037267373,-0.0028340537,0.02108929,0.043796387,-0.011053098,0.02037283,-0.04890404,-0.042710144,0.0061765616,-0.04414306,-0.002614494,-0.023781784,-0.034574877,-0.04936627,0.02627783,-0.023666227,-0.030830806,0.022360424,0.0066445703,0.008008152,0.0060841152,0.04072255,-0.01649009,0.01731055,0.016085638,-0.0144100515,0.044374175,-0.030276129,0.028427206,0.019032361,-0.009030838,0.0079908185,0.042687032,-0.022337312,0.011249547,-0.0005474548,-0.015080286,-0.0052174325,-0.057778873,-0.0043854164,0.0016351421,0.031986386,-0.014675834,-0.000857294,-0.027641414,-0.0075054755,0.055745058,-0.042155467,-0.004038743,-0.04821069,0.0016452534,-0.015623407,0.05306412,-0.01372826,0.0113651045,-0.03175527,0.0246138,0.008493494,0.043079928,-0.0034638434,0.027872529,0.02357378,-0.014479386,-0.040214095,0.027433408,0.030645914,0.0151380645,0.009753074,-0.03235617,0.017819004,-0.013843819,0.029282333,-0.0024238238,0.008412604,0.009868632,0.021181734,0.005327212,-0.002155152,0.005705664,-0.00021937916,-0.002026594,-0.02149374,0.014398496,-0.0258156,0.025399594,0.0058790003,-0.02095062,-0.065082125,-0.011994895,-0.0146527225,-0.027641414,0.014941617,-0.07169203,0.02655517,0.04266392,-0.03189394,0.0146527225,-0.028265424,-0.014363828,-0.041392785,0.007077912,0.036192685,0.01766878,-0.0011779668,-0.02155152,0.022244867,0.0015296957,0.0071588024,0.015403848,-0.010330862,0.040468324,-0.028242314,-0.03508333,0.002042483,-0.011434439,0.030738361,-0.04312615,0.03494466,0.011630887,0.008089042,0.012642018,-0.00022028196,-0.004824536,-0.021274181,-0.064527445,-0.011607775,0.022764876,0.02037283,0.012283788,0.02653206,0.008851724,-0.0045818645,-0.045575976,-0.0015441404,-0.022106197,-0.00018010759,0.033719752,0.010937541,-0.014571832,0.0049054264,0.0047032004,-0.014282937,0.013820707,0.0030998366,-0.00035515951,-0.0065463465,-0.031986386,-0.0028802769,0.0316166,-0.025538262,-0.01982971,0.043542158,-0.023851119,0.013034914,-0.029952569,0.0158083,0.0028282758,-0.03367353,0.017090991,-0.024960473,-0.03714026,-0.017137215,0.049135152,-0.043611493,-0.023689339,0.0024599356,-0.032749064,-0.006511679,-0.03043791,-0.007586366,0.0007218748,-0.015738966,0.023342665,-0.009452623,0.030345464,-0.033604193,0.018939914,-0.024521355,0.040237207,-0.0063325646,0.010186415,-0.021886637,0.0005214543,-0.0030593914,0.015738966,0.022834212,0.01605097,-0.028288536,-0.06896486,0.0043709716,-0.009238842,-0.05190854,0.026647616,-0.032263722,0.039613195,0.037186485,-0.040237207,-0.0022707097,-0.019136364,0.0056536626,0.007378362,-0.014282937,0.0015542516,0.027179182,-0.00697391,0.0011259658,0.0038711845,0.02275332,0.022499094,-0.005023873,-0.044374175,-0.002978501,-0.00007100482,-0.009816631,0.021100845,-0.020650169,-0.028265424,0.010353974,-0.017264327,0.05625351,-0.020650169,-0.037163373,0.014930061,-0.020846618,-0.0034060646,-0.006292119,-0.024405796,0.0092735095,-0.012098896,-0.0092735095,-0.015426959,-0.014906949,0.013913153,-0.028681433,0.0013599702,-0.006858352,-0.018073231,0.02999879,0.01222601,-0.042479027,-0.008256601,-0.009533514,-0.01140555,-0.017079435,0.012353123,0.000084817584,0.0082334895,-0.022279534,0.030923253,-0.025422703,-0.04312615,-0.01618964,-0.01364737,0.004818758,0.007898372,0.0020742617,-0.024868026,-0.00050953747,-0.0010219638,0.015438515,-0.0017925896,-0.041231003,0.0060321144,-0.0043478603,0.009770407,-0.016374532,-0.021320404,0.007534365,-0.035245113,0.006633015,0.046824,-0.036909144,0.01186778,-0.0063498984,0.010839317,-0.011001098,0.032286834,-0.01588919,0.0067023495,-0.013739816,0.023250218,0.02939789,0.0053156563,0.02007238,0.017541666,0.0061361166,-0.01649009,-0.05269433,-0.03235617,0.0039722975,-0.018916802,-0.019055473,0.012295344,0.008412604,-0.009614404,0.028889436,-0.011341993,0.012434013,-0.0051134303,-0.028519653,-0.02201375,-0.028658321,-0.031269927,0.026716951,-0.012214454,-0.004827425,0.024729358,0.009464179,-0.054866817,-0.009417957,-0.02969834,0.0040156315,-0.023966677,0.018662576,0.01753011,0.027109848,0.019228809,-0.015623407,0.02095062,0.0060147806,-0.030160572,-0.001371526,0.004050299,-0.023180883,0.037533157,0.002797942,0.024244016,-0.023354221,-0.053480126,-0.027641414,-0.022487538,0.057825096,-0.017437665,0.0073090275,0.018107899,-0.021424407,0.0032471728,0.01873191,0.0043276376,0.003489844,0.0144100515,0.0030853918,0.016131861,0.02108929,-0.004240969,-0.0009591293,-0.016143417,-0.029721452,-0.016420756,-0.0022302645,-0.04596887,-0.04844181,0.023897342,0.020638613,0.00902506,0.010827761,0.00013099554,0.011994895,-0.018385237,-0.0020901507,-0.009429513,-0.025769377,0.031685933,0.004463418,0.0026838286,0.036886033,0.019679485,0.008967281,0.03760249,0.0010920207,0.00074823643,-0.03353486,0.014074934,-0.018258125,-0.0067601283,-0.007129913,-0.034066424,-0.024059122,-0.005535216,-0.0069219093,0.043426603,0.029166775,0.004509641,0.010816205,0.0144100515,-0.010434865,0.025376482,-0.035730455,0.021886637,0.015022507,0.019067029,0.013242918,0.0438195,-0.019228809,-0.016559426,0.021274181,-0.0016019193,-0.016016304,0.06277097,-0.015426959,-0.0014004154,-0.006968132,0.019667929,-0.0152074,-0.04619999,0.03448243,0.050660517,-0.020442165,0.009088617,-0.020465277,-0.025445815,0.025122255,0.014479386,0.06891864,0.009337066,-0.03850384,-0.052971672,-0.051862318,0.021609299,-0.02251065,-0.041277226,-0.0017767004,-0.01602786,0.046500437,0.0088748345,-0.07261649,-0.0107179815,-0.03979809,0.051353864,0.00060848374,-0.016154973,0.0065867915,-0.04950494,-0.05269433,0.0071125794,-0.014837615,0.009279287,-0.026971178,0.021262625,-0.003850962,0.004448973,-0.00626323,0.027063625,-0.015530962,0.0199106,-0.013335364,-0.006066782,0.034667324,-0.010677536,-0.01977193,0.012988691,-0.012630462,-0.017934563,0.006448122,0.0100766355,0.010013078,-0.015265178,0.0033078406,0.015923858,0.012572682,0.011671333,0.0796424,0.0012451347,0.04298748,-0.0067370166,-0.0346211,-0.04474396,0.031986386,0.008788167,0.02185197,0.006321009,-0.0133700315,0.005020984,0.021747967,-0.0049169823,0.019332811,-0.0009454068,-0.03013746,-0.0066445703,-0.023446666,-0.017437665,-0.016975433,0.0120064495,-0.01077576,0.029582784,-0.016721206,-0.003642958,-0.026901843,0.017333662,-0.00014164852,-0.00013930125,0.013658926,0.0056478847,-0.000973574,0.006251674,0.011671333,-0.030507246,0.00842416,0.00076629233,-0.015195844,0.053017896,0.0067427945,0.01635142,-0.008227712,0.016674982,0.00779437,0.0059627797,0.007280138,0.021297293,-0.0065347906,0.011578886,-0.029259222,0.03459799,0.0043767495,-0.048395585,0.034112647,0.0064943456,0.011706,0.012942468,0.028427206,-0.001536918,0.018697243,0.021620855,0.017437665,-0.006991244,-0.006413455,-0.007644145,0.0304148,-0.010538867,0.00013397477,0.021563075,0.0039231856,-0.009729962,-0.00048967596,-0.004659866,-0.018373681,-0.028242314,0.019379035,-0.0038278503,-0.0065867915,0.012214454,0.008938392,0.037024703,0.008747721,-0.02863521,0.031570375,0.053202786,0.020326607,0.0037556267,0.008429938,0.013936264,-0.0144100515,-0.019760374,0.022995992,-0.005853,0.002972723,-0.040653214,0.002682384,0.010082413,-0.0006803462,0.031223703,-0.019760374,0.041647013,0.03087703,0.014121157,0.025931159,0.01895147,-0.012919356,-0.0258156,0.025145365,-0.021563075,-0.035013996,-0.023307998,0.015230511,0.0074534747,-0.016721206,0.0047060894,0.00533299,-0.003486955,0.019413702,0.002688162,0.021921305,-0.003180727,0.0046425327,0.019113252,-0.0059916694,-0.032564174,-0.03778738,-0.02155152,-0.0151380645,-0.036631808,0.030599691,0.010845095,-0.0023862675,-0.0064018993,0.0012270788,-0.0007980707,0.036793586,0.041092336,-0.043149263,0.0037614047,-0.005220321,0.023180883,-0.008753499,-0.036654916,0.03029924,0.008817056,0.0044980855,0.011081988,0.016004749,-0.004301637,-0.019217253,-0.03473666,0.0134509215,-0.0024844916,-0.03744071,0.03531445,-0.025330259,0.0105562005,0.032148164,-0.018165678,0.00040950777,-0.0029640563,0.024844917,-0.037856717,-0.0009930744,0.024937361,-0.003888518,0.0258156,-0.0039780755,-0.03651625,0.029813899,-0.024798693,-0.009793519,-0.014421606,0.001294969,0.019020805,-0.015681187,0.015230511,-0.0069970214,0.009157952,-0.033604193,-0.059581574,-0.0199106,-0.05458948,0.033326853,0.01818879,0.035152666,-0.02059239,0.037510045,-0.0078290375,0.036932256,0.057593983,-0.014802948,0.030669026,0.014999395,0.0012400791,0.030599691,0.07233915,0.014421606,-0.008447272,0.019124808,0.031154368,0.023354221,0.026023604,0.0077192574,0.033349965,-0.009458401,-0.014248271,0.013959376,0.03686292,0.00015257233,0.005890556,-0.0066041253,-0.03210194,0.0044836407,0.001564363,-0.02398979,0.013462477,0.0054572145,-0.020187939,0.048534255,-0.02653206,0.0100766355,0.015623407,-0.0034753992,-0.020881284,-0.0052665444,-0.018396793,-0.018154122,-0.006979688,0.01039442,-0.011197546,-0.018870581,-0.008689943,0.013034914,-0.011463328,-0.019275032,-0.01772656,-0.004240969,0.015866078,-0.0060205585,-0.00026415777,0.0055178823,-0.034320652,-0.012746019,-0.0056681074,-0.012780687,-0.0027849418,0.0223142,0.035499338,-0.0035591787,-0.006257452,0.005434103,0.05694686,-0.0018633687,0.056207288,0.008002374,-0.009221508,-0.029883234,-0.026370278,-0.010105525,-0.01676743,0.013739816,0.018292792,0.02491425,-0.00014571109,0.05190854,0.0031056146,0.0021349294,-0.014664278,0.00514232,0.0043680826,0.032194387,0.010972208,-0.05371124,0.025630709,-0.016420756,0.031246815,0.008580163,0.02805742,-0.008499272,-0.011058876,-0.03224061,0.030391688,-0.01033664,0.002767608,0.020003047,0.0011765223,0.025884936,0.015045619,0.018928358,0.00888639,0.021227958,-0.04086122,-0.015970081,-0.013843819,-0.019217253,-0.00932551,0.012145119,-0.0021667078,-0.014594943,0.008169932,0.008008152,-0.0031056146,0.012480237,0.008661053,0.014178935,0.03429754,-0.017102547,0.03577668,-0.02245287,0.0072570266,0.012942468,-0.019124808,0.025145365,-0.019575482,0.002672273,0.028542763,0.0006315953,0.02327333,-0.016501646,0.011983339,0.0047985353,0.04606132,-0.03415887,0.023550669,-0.002280821,-0.007580588,-0.014791392,-0.010226861,-0.015218955,0.003790294,-0.01334692,0.0059627797,-0.013231362,-0.012064229,-0.01676743,-0.015681187,0.018165678,0.0045558643,-0.008065931,0.03818028,-0.04173946,0.016963877,0.009556626,0.017264327,0.031108145,-0.025561374,-0.030853918,0.019887488,-0.007950373,0.029305445,-0.025538262,-0.02387423,-0.0037845161,0.012919356,-0.013115805,-0.0043334155,-0.0050874297,0.011249547,-0.031986386,0.008707277,-0.022487538,0.048534255,-0.01670965,-0.00779437,0.012734463,0.015842967,-0.016802097,-0.011006875,-0.04250214,0.052833002,-0.0025798266,-0.0030622804,0.020904396,-0.031223703,-0.017079435,-0.024844917,-0.000511343,-0.017275883,-0.0009887409,-0.019402146,-0.025908047,-0.034667324,-0.017853672,-0.0044807517,0.011711778,-0.030784585,-0.02037283,0.02026883,-0.0051076524,-0.006523235,-0.031501044,-0.010769982,-0.033973977,0.009689517,0.019506147,0.008747721,-0.015681187,-0.01605097,0.02321555,-0.00615345,0.011798446,0.0025523817,-0.0025292702,-0.012445569,0.03265662,-0.0074650305,-0.00092590647,0.014641167,-0.00015798911,0.055837505,-0.0017824783,0.011578886,0.022406647,0.019032361,0.0034522878,-0.008100598,0.0028138312,-0.0107237585,-0.026046716,-0.032749064,0.022903545,0.010411753,-0.008528162,-0.0018633687,-0.019413702,0.011289991,0.017194992,-0.025607597,0.012988691,0.015334513,-0.0158083,-0.02056928,-0.022995992,0.007759703,-0.021204846,-0.0008377937,-0.03057658,-0.03295707,0.04418928,0.02639339,0.0028412761,0.014791392,-0.01066598,0.00026524113,0.004778313,-0.018535463,-0.010070858,0.008562829,-0.02415157,-0.011411328,-0.01835057,0.011711778,0.0050440957,-0.015461626,-0.007077912,0.015161176,-0.012272233,0.006841019,-0.0018344793,0.04610754,0.005642107,0.038064722,0.0041398564,-0.022083085,0.0146527225,-0.0073552504,-0.02387423,-0.02969834,-0.016663427,0.02201375,0.007551699,0.0037816272,-0.030045014,-0.004659866,-0.030992588,0.0020583724,0.006812129,0.0152998455,-0.03133926,0.017021656,0.030368576,0.020707948,0.009475735,-0.034228206,-0.009862854,-0.017715003,0.00913484,0.0030651693,0.0005366213,-0.018581687,0.0033627304,0.021759523,0.020014603,-0.0005247044,-0.009672184,-0.014583387,-0.018477684,0.009828187,0.003593846,0.022776432,0.021678634,0.021170178,-0.024660023,0.002103151,0.031709045,-0.011914004,-0.0035129555,0.022695541,0.0070894677,0.014248271,-0.025584485,-0.0013426365,0.00068937417,-0.025561374,0.0076557007,0.030391688,0.011249547,0.025237812,-0.010735314,0.044720847,0.015172732,0.008493494,-0.0089557255,0.031870827,0.01982971,-0.0028167202,0.05352635,0.024012899,0.010452198,0.012122008,-0.017738115,-0.009862854,0.016282087,-0.022406647,-0.005893445,0.0028427206,-0.01282691,-0.016212752,-0.021747967,0.0023674893,0.024359573,-0.010186415,-0.0015556961,0.013820707,0.018165678,0.041415896,0.008921058,0.01873191,-0.010879762,-0.03367353,0.0029640563,0.035707343,-0.0151380645,0.0004987039,-0.024174681,-0.04416617,0.026924955,0.009394845,0.007424585,0.015473182,0.06582169,-0.016074082,-0.008828612,0.006812129,-0.0070027993,-0.030900141,-0.023134662,-0.011711778,-0.021979084,-0.0043305266,-0.010059302,0.007233915,-0.014883838,-0.00998419,-0.03591535,0.023851119,0.038596287,-0.0096779615,-0.006303675,0.02169019,-0.0075112535,-0.039266523,-0.019875932,-0.003946297]},{"id":"guide-basic-bot-0","type":"guide","source":"guides","text":"Guide: Basic Bot (basic-bot)\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => console.log('Ready!'));\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!ping') {\n await message.reply('Pong!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"basic-bot","url":"/guides/basic-bot"},"embedding":[-0.052983865,-0.008294032,0.01338063,-0.0067454046,0.024202658,-0.03990929,-0.049923338,0.07678253,0.0045601875,0.028744482,-0.005423256,0.0005011615,0.004538764,-0.029185198,0.020260697,0.03227021,-0.075754195,-0.0162208,0.02432508,0.009144858,0.050584413,0.0007873209,0.027520271,0.04904191,-0.040276553,-0.024288353,-0.021521635,0.032759894,-0.034449305,-0.051172033,0.02803444,-0.027226461,-0.00023049604,0.0013764726,0.021950109,-0.015045557,0.050192665,0.041574217,-0.0106506385,0.007014731,-0.027838565,-0.040447943,0.05190656,-0.00040092922,-0.010858755,0.011654492,-0.034498274,0.0037277236,-0.02867103,0.051416878,-0.03990929,0.006298567,0.022403067,0.08329534,0.020236213,0.02565947,-0.035746973,-0.002172975,-0.017885728,0.050143696,0.027201977,0.018987518,0.025120817,0.027177492,-0.024239386,0.04754837,-0.0052702297,-0.0035961207,0.014200851,0.058468334,0.029797304,0.005248806,0.007455447,-0.06894758,-0.016808422,0.0015141964,-0.0014866516,0.006574015,0.0048509375,-0.01842438,0.007987979,-0.012407382,-0.0630224,-0.05347355,-0.04164767,0.0075901104,-0.053620458,-0.036457013,-0.015278158,-0.022060288,0.008385847,-0.039762385,-0.036089752,0.028181344,0.08892671,-0.02137473,0.010809787,-0.012297203,-0.019660834,0.04948262,0.091717914,-0.067870274,-0.03278438,-0.00909589,0.039835837,-0.03714257,0.0049090874,0.004731577,-0.03562455,0.020823834,-0.07521555,0.023884363,0.048576705,0.03359236,0.022280646,-0.03417998,0.072963,0.017359316,0.027079554,-0.04042346,-0.019611865,0.02387212,0.01737156,-0.0018562104,-0.0014751747,-0.06586257,0.0015448016,-0.026785744,-0.025806375,-0.027936503,0.05792968,-0.0034675787,0.037093602,-0.018522318,-0.027838565,0.010815907,-0.014237578,0.026516417,-0.02994421,-0.0061547225,0.010724091,-0.07526451,0.027520271,0.03320061,-0.0021071737,-0.032466084,-0.06512804,0.0021592027,-0.04453681,-0.001615959,0.006093512,-0.0030421652,-0.050829254,-0.0019709803,-0.023223288,0.02339468,0.0071922415,0.03714257,-0.041623186,-0.038317814,0.021350246,0.0009808993,0.011905455,-0.028744482,-0.043900218,-0.006555652,-0.0052916533,0.0069045518,-0.03236815,0.03915028,0.03726499,0.005937425,0.027079554,0.016147347,0.035869393,-0.030899094,-0.03256402,-0.0006029241,0.0018715131,0.035183836,0.042431165,0.014531389,0.0044561294,-0.013074577,-0.0093713375,-0.004958056,0.0016312617,-0.0006947399,-0.027348882,-0.027814081,-0.032515053,0.004119471,-0.024814764,-0.011091354,0.060720883,-0.001228037,0.044977523,-0.031780526,0.025059607,-0.0017414406,-0.024227142,-0.00550283,0.01929357,-0.04762182,0.006378141,-0.0027973228,0.0063230516,0.00613942,-0.002855473,0.023615036,0.024875974,0.011274987,0.009836538,0.0073269047,-0.074187204,0.009640664,0.012964398,0.043581925,-0.050290603,-0.018914064,-0.06483423,-0.03116842,0.045393758,-0.0062189936,-0.004263316,0.040741753,0.025904313,-0.03457173,-0.010956692,-0.001396366,0.0296504,0.032049853,-0.022831542,-0.05259212,0.03133981,-0.014151883,0.04257807,0.013698925,-0.0033971865,0.013196998,-0.011262745,-0.033102676,0.023957817,-0.033445455,0.018032633,-0.026785744,-0.03168259,-0.016257526,0.029258652,0.0010390494,0.0766846,-0.014519147,0.0557261,0.01424982,0.021631815,-0.016441159,0.0053681666,-0.027201977,0.0031018455,-0.04487959,-0.0017414406,0.010675123,-0.0007062169,-0.034277916,-0.044757165,-0.048797064,-0.025120817,0.024129206,-0.020040339,-0.022684636,-0.023847638,-0.0051722927,0.038024005,-0.029087262,-0.024520954,-0.012125813,-0.01448242,0.014629326,-0.028719999,0.02705507,-0.021680783,-0.010822028,0.0071922415,0.008967348,0.023847638,0.026908165,0.014457936,-0.04737698,0.0119299395,-0.00515393,0.0076084733,0.02769166,0.009469274,-0.020052582,0.03550213,0.07688047,0.070171796,0.010626154,0.048380833,0.031315327,0.02247652,-0.0406683,0.00979369,-0.0042724977,0.0050009033,0.020493299,0.0015157267,-0.029209683,0.05068235,-0.04505098,-0.002350486,0.026369512,-0.028989324,-0.032588504,0.0006916794,-0.0010933738,0.019281328,0.05567713,0.009469274,-0.0071310312,-0.016135106,-0.03897889,0.031535685,-0.0352328,-0.050633382,-0.022929478,-0.00625572,0.023211047,0.026957134,0.026320543,0.058517303,-0.028548608,-0.0011683567,0.008832685,0.001140812,-0.026491933,-0.0058578514,0.023859879,-0.022611184,0.04725456,-0.013392872,-0.032980252,-0.0665971,0.012866462,-0.01749398,0.05954564,0.033469938,0.004606095,-0.007828832,-0.010981176,-0.024508711,0.031609137,0.000003906358,-0.044169545,0.016184075,-0.027299913,0.011501466,-0.030189052,-0.01494762,0.0075839893,-0.04267601,0.021154372,-0.004704032,0.011103597,-0.020811593,-0.008440937,-0.02947901,-0.060965724,0.008263427,-0.0074860523,0.03846472,0.030556316,-0.011366802,-0.0025708438,-0.010944449,-0.035355225,-0.017420527,0.0013045502,-0.042822912,0.017126717,0.011495344,0.026516417,-0.02646745,-0.041696638,-0.025059607,-0.0065250467,0.0011675915,-0.0031370416,-0.0017766367,0.027471302,0.02884242,-0.014666052,0.0015746418,0.022341857,0.015302641,0.020015856,0.06204303,-0.026222607,0.008043068,0.021080919,0.056950312,0.010032412,-0.0030391046,0.0050529325,0.003412489,-0.041892514,0.0068739466,0.002803444,-0.028058924,0.0106506385,0.021644056,-0.023529341,0.027250944,0.004465311,-0.009695753,-0.03302922,0.019146666,-0.023908848,-0.018803887,-0.01083427,-0.0053375615,-0.005380409,0.00011878676,-0.024961669,-0.011164808,0.031021515,0.030384926,-0.027104039,-0.022892753,-0.052053466,0.00084088015,-0.04316569,0.0118809715,0.03944409,0.01726138,-0.028254798,-0.0004743819,-0.036359075,-0.030531831,0.02455768,0.009059164,-0.012033997,0.0077125314,0.036236655,-0.010589428,0.013025609,-0.024227142,0.004186803,0.018693708,-0.009334612,-0.058419365,-0.06615638,0.02061572,-0.010797544,-0.03932167,-0.014751746,0.003978687,0.03320061,0.03689773,0.031951915,-0.019881193,0.031609137,-0.042112872,-0.013270451,0.021448182,0.022292888,0.0077615,0.03702015,0.0018852855,-0.028891388,0.030335957,0.020578993,0.012003392,-0.0053957114,-0.005704825,-0.021338005,0.039297186,-0.022672394,0.014580357,0.03493899,0.07790881,0.005074356,-0.02756924,-0.018118327,-0.002212762,0.08784941,0.0044744923,-0.017077748,-0.041794576,-0.0016542156,-0.022635669,0.008208337,0.048503254,-0.012670588,0.045614116,-0.048552223,-0.011807518,0.015449547,-0.013882557,-0.0057262485,-0.025218753,-0.025010638,-0.054012205,0.017922454,-0.021644056,-0.0026167517,0.0049366322,-0.019771013,-0.0015065451,-0.021521635,0.030335957,-0.020860562,0.0018424381,0.004639761,-0.0025509503,0.013172514,-0.019722044,0.015743358,-0.022268405,-0.026026733,0.014702778,0.043704346,-0.007149394,0.00023986891,0.008477664,-0.036750823,-0.015657663,-0.041745607,-0.018314201,-0.01749398,0.022231678,0.0009365217,0.01314803,-0.017151201,-0.022696879,0.038611624,-0.025218753,-0.0035838787,-0.030801157,-0.026663324,-0.021999078,0.024190417,-0.00084088015,-0.0074615683,-0.052053466,0.020885045,0.0056099487,0.05136791,-0.029283136,0.035893876,0.062238906,-0.008912259,-0.0008898486,0.004165379,0.030923579,0.011893213,0.01216254,-0.021619573,0.007920647,0.0162208,0.008073674,0.0005363576,0.02676126,-0.0020245395,0.014470178,-0.040325522,0.00608127,0.01112196,-0.017506221,0.00049886614,-0.014568115,0.0223541,-0.02201132,0.042210806,0.0159882,0.006586257,-0.04137834,-0.011832003,-0.021803204,-0.008128763,0.026222607,-0.0547957,0.00590682,0.03469415,-0.022611184,0.0038379026,-0.022427551,-0.0012004923,0.00076321926,0.036187686,0.014200851,-0.0081226425,-0.022305131,-0.010338465,-0.027642692,-0.004664245,-0.009603938,0.010026291,-0.03320061,0.03682428,0.0127073135,-0.022109257,-0.025145302,-0.0023260016,-0.0064515937,-0.024129206,0.018265232,0.0072840573,-0.00050881284,0.012486956,0.01291543,0.01743277,-0.012168661,-0.05792968,-0.033690296,0.0019771014,-0.020028098,0.024582164,0.012841977,0.010546581,0.0015088405,0.0026228728,-0.0051631113,-0.000066949055,-0.017946938,0.03932167,0.0063842623,-0.0010474658,-0.02368849,0.005132506,0.0030804218,0.012780766,-0.0044591897,-0.0079451315,-0.02676126,-0.0074615683,0.0046948506,0.004140895,0.0048754215,-0.020248456,0.005879275,-0.02786305,0.027422335,-0.037093602,0.003000848,0.0009135677,-0.030654252,-0.0014575766,-0.015535242,-0.016049411,-0.001830196,0.017004296,-0.009579454,-0.027618207,0.018093843,-0.055921976,-0.0011966666,-0.021350246,0.012903187,0.011727945,-0.022207193,-0.0055946456,-0.016710484,0.042553585,-0.022403067,0.021252308,-0.047940116,0.016686,0.0017215472,0.0064271097,-0.010546581,0.02183993,0.008667416,-0.0004674957,0.009132616,0.019832224,-0.0013083759,-0.059006985,0.008263427,0.0040276553,0.0017490919,0.0113790445,-0.039786868,0.0026825531,0.022268405,-0.022904994,-0.0057568536,0.011372923,-0.010754697,0.0018424381,-0.028866904,-0.005092719,0.0244475,0.010509854,-0.004116411,-0.0017368499,0.022758089,0.03711809,-0.005334501,-0.04147628,-0.011495344,-0.029013809,-0.003342097,0.0062220544,0.00921219,-0.043875735,0.006818857,-0.01274404,0.024153689,-0.04958056,-0.044438872,0.041696638,-0.028107893,0.0067086783,-0.024337322,0.0132092405,-0.014274304,-0.0027774295,0.0025295266,-0.024582164,0.005230443,0.021705268,0.016049411,0.000082777726,-0.024692344,-0.044463355,0.027495787,0.045026492,-0.048454285,0.008716385,-0.00036688085,0.0225867,0.011195413,-0.009077528,-0.024692344,0.0063230516,-0.040619332,0.018583529,-0.041794576,-0.052445214,-0.0031768284,0.011128081,-0.01234005,-0.023933332,0.013539777,-0.008061431,0.014935378,0.016306495,0.00081869133,-0.022672394,-0.040350005,0.008459301,-0.010179318,-0.004147016,-0.014139641,-0.011746308,-0.00035655155,-0.016465643,-0.02114213,0.033910654,-0.04059485,0.022574456,-0.002919744,0.009830417,-0.012548166,-0.0026029793,-0.025904313,-0.025194269,0.009126496,-0.008624569,0.013980494,-0.012150298,-0.0007685752,0.025586016,0.034131013,-0.031756043,-0.049433652,-0.021191098,-0.0062067513,-0.027960988,0.00016890292,-0.006586257,0.010987297,-0.0043918584,0.01975877,-0.00076130644,-0.02259894,0.010748575,-0.053669427,-0.01841214,-0.031658106,-0.029258652,0.010736333,-0.01216254,-0.011538192,0.028230313,-0.010448644,-0.06987798,-0.011972787,-0.012988882,0.00306971,-0.04137834,-0.0051814746,0.016318737,0.032931287,-0.0000990846,-0.019905677,0.019024244,0.00041776212,0.0029564705,-0.0324416,0.035967328,-0.021264551,0.02977282,0.0028967902,0.03545316,-0.029332103,-0.044928554,-0.034890022,-0.017922454,0.036236655,0.0074064787,0.021533877,-0.012180903,0.0011331607,0.027642692,0.004547945,0.01233393,0.015510757,-0.0009931414,-0.015963716,0.018681465,0.027030587,0.007375873,0.005193717,0.0009296355,-0.03753432,-0.031217389,-0.010938329,-0.014200851,-0.02154612,0.0470342,0.008428695,-0.0003492828,0.016135106,-0.008391969,-0.015682148,0.0023795608,-0.01129947,0.015951473,-0.011715703,0.03579594,0.062238906,-0.011274987,0.047230072,0.017445011,-0.03261299,0.009169343,0.016588064,-0.007467689,-0.02183993,0.014910894,-0.020175003,-0.0078778,0.008036948,0.017567433,0.0026672506,-0.024374047,0.02472907,0.051123064,0.039125793,0.018216265,0.008991832,0.019538414,-0.030433893,0.03070322,-0.039713416,0.0003246073,0.022917237,0.034449305,0.040913142,0.051710688,-0.026736775,0.0076941685,0.016869633,0.011966666,-0.0040337765,0.045614116,-0.018608013,0.014715021,-0.0043520713,0.006592378,-0.009946717,-0.07320784,0.039297186,0.04757285,-0.038244363,0.01175855,-0.016588064,0.022280646,0.030115599,-0.022231678,0.04037449,-0.002299987,-0.010130349,-0.037901584,-0.0630224,0.028230313,-0.017824518,0.0033145521,0.017334832,-0.018228507,0.020982983,0.04593241,-0.022929478,-0.025904313,0.010436402,0.04343502,0.015045557,-0.015155736,-0.022745846,-0.04970298,-0.040913142,0.005086598,-0.000903621,-0.01813057,0.00886329,0.0032257969,0.014066189,-0.0076941685,-0.00012089087,-0.0030544072,0.00318601,-0.0013229133,0.02362728,0.0064209886,0.031927433,0.0010092092,-0.0088204425,-0.0012869522,-0.010791423,-0.0159882,0.012125813,0.005983333,0.015510757,-0.028058924,0.005221261,0.034106527,0.0025279964,0.006916794,0.012346172,0.011623886,0.033665814,-0.009426427,-0.0073942365,-0.030923579,0.037607774,0.0057293093,0.05636269,0.018497834,-0.026712291,0.012768525,0.0046213977,0.008918379,0.019085456,0.0031033757,-0.010540459,-0.008624569,-0.020995224,0.013135788,-0.02090953,0.026908165,0.02947901,0.06997592,0.0027131585,-0.013392872,0.008306274,0.032000884,0.010460886,-0.0016863511,0.03312716,0.004725456,-0.005821125,0.002948819,0.01847335,-0.038391266,0.008649053,0.018546801,0.015167979,0.045026492,-0.0139070405,-0.012364535,-0.004756061,0.023223288,0.022549974,-0.01558421,0.0010750106,-0.02798547,0.004159258,-0.021289036,-0.023443647,0.008391969,-0.0009472335,-0.025292207,0.025732923,0.010968934,0.008881654,-0.0033390364,0.008636811,-0.03320061,0.014335515,-0.013221483,0.0004303868,-0.044291966,0.020725898,-0.025610501,0.001117858,0.0019908736,-0.016649274,0.032686442,0.014102914,-0.013331662,0.025904313,0.0012349231,-0.03503693,-0.035649035,0.022158226,0.0012020225,-0.006151662,0.022513246,0.01940375,0.050878223,0.0052732904,0.0029503494,0.022794815,0.012407382,0.026026733,-0.011783035,0.0003888784,0.012535924,-0.027887534,0.009591696,0.0068310993,-0.002335183,0.0072901784,-0.012015634,0.011134203,-0.0037736315,0.015829053,0.039370637,-0.02479028,0.021031952,0.0069657625,0.02190114,0.024276111,0.01819178,-0.018987518,0.009016316,0.010209923,-0.01650237,-0.057782777,-0.007026973,0.011330076,0.009689633,-0.011464739,-0.0016848209,-0.0013879496,-0.021191098,0.019562896,0.024337322,-0.005839488,-0.027422335,-0.023088627,0.0014912424,-0.025904313,-0.019611865,-0.022831542,-0.014470178,-0.0026779624,-0.0073819943,0.015669905,0.005257988,0.0019097697,-0.02370073,-0.043949187,-0.0002769778,0.010411917,0.04321466,-0.007969616,-0.003954203,-0.008851048,0.006170025,0.012486956,-0.029209683,0.016759453,0.007890042,0.010962812,-0.013001124,-0.012560409,-0.01946496,-0.030042147,-0.020860562,0.028254798,-0.00005905863,-0.014225336,0.0547957,-0.01628201,-0.01917115,0.03474312,0.025059607,-0.027765114,-0.029356588,0.018093843,-0.03342097,-0.024165932,0.022807058,-0.013490809,-0.0019786316,-0.010509854,-0.02479028,0.036750823,-0.008508269,0.0037216025,0.0058180643,0.0021331883,0.0137111675,-0.019562896,0.047523886,-0.028915873,-0.011391287,-0.019648593,-0.03706912,0.0021821568,-0.0411335,0.0068310993,0.02050554,0.038072973,-0.023504857,0.017298106,-0.019477202,0.041892514,0.034008592,-0.022268405,0.022856025,-0.040447943,-0.013723409,-0.001315262,0.06605844,0.010467007,-0.025977764,0.025414627,0.046471063,0.03469415,0.025610501,-0.0043765553,0.017640885,-0.005242685,-0.029381072,0.023382436,0.018816128,-0.025439112,0.036408044,0.0037307842,-0.031707074,-0.0047070924,0.009836538,-0.032980252,-0.0075166575,0.029454526,-0.009493759,0.004251074,-0.044340935,-0.015204705,0.015878022,-0.033861686,0.020077066,0.016588064,0.012242113,-0.005288593,-0.03266196,-0.019917918,-0.016147347,0.007333026,-0.020101551,-0.0026152215,0.0058027618,-0.009352975,-0.018510075,-0.012187024,0.021741994,-0.03714257,0.021509394,0.038268846,-0.026271576,-0.019832224,-0.058811113,-0.03915028,0.0016251405,0.04304327,0.022292888,-0.0007658972,0.010987297,0.011611644,0.033959623,0.023100868,0.018277476,-0.012646103,0.005873154,0.01384583,-0.018852854,-0.008557238,-0.0045846715,0.02345589,0.0017261379,0.017983664,-0.007816589,0.042602554,0.0082695475,-0.0008202216,-0.017567433,0.014739505,-0.029185198,-0.009377459,0.0032288574,-0.03138878,0.015510757,0.013894799,0.009689633,0.009824296,0.015008831,-0.017016537,0.008159368,-0.014176368,0.0074064787,-0.039713416,-0.030850125,0.0067147994,-0.0029901362,0.02027294,0.02090953,-0.0021592027,0.00672092,0.0069535202,-0.034106527,-0.029332103,-0.01841214,-0.01679618,-0.016967569,0.0013933055,0.000043277785,-0.027618207,-0.012468592,0.01227884,-0.041745607,0.0077186525,0.02994421,0.0054385588,0.010662881,-0.015241431,0.03261299,-0.012927672,0.0046367003,0.0070943045,-0.015437305,0.044145063,0.009010196,-0.027667176,0.027789598,0.03902786,0.02044433,-0.03138878,-0.0005807353,0.016881874,0.010791423,-0.013062335,0.03702015,-0.0076268367,-0.008655175,-0.008679658,-0.044316452,-0.01929357,0.00095488486,-0.0072962996,0.0051110825,-0.021656299,-0.03253954,-0.022194952,0.0037001788,0.007737016,0.0033635206,-0.028597577,0.02044433,-0.035183836,0.025806375,-0.00324416,0.010460886,0.008948985,-0.010393554,-0.032637473,0.05739103,0.010258891,0.024361806,0.0054538613,0.00051187334,0.023051899,0.004244953,-0.038440235,-0.007014731,0.0018745736,0.012597134,-0.029038293,0.007210605,-0.008624569,0.047866665,-0.0006694906,-0.013037851,0.026222607,-0.0059251827,-0.015914747,-0.0024361806,-0.024312837,0.062238906,-0.017102232,-0.0014055476,0.010479249,-0.04860119,-0.016024927,-0.05357149,0.0017001235,-0.007914526,-0.009487638,-0.004893785,-0.032686442,-0.01274404,-0.0132582085,-0.011140323,0.00920607,-0.014176368,-0.031070484,0.018314201,-0.009420306,-0.021974593,-0.022366341,0.022194952,-0.039786868,0.019501686,-0.0014636976,-0.027936503,-0.02449647,-0.009028559,0.03320061,-0.0014591069,0.021129888,-0.01899976,0.0037032394,-0.040056195,0.02438629,-0.012382898,0.020762624,-0.009634543,-0.022758089,0.03961548,-0.011366802,0.0070943045,0.009622301,0.03283335,0.033935137,-0.02177872,0.009414185,-0.024937185,-0.036016297,0.017714338,0.015008831,-0.011923819,-0.0021790962,0.0065434095,-0.044732682,0.015951473,0.03863611,-0.03099703,0.02021173,0.03099703,-0.018987518,-0.03702015,-0.008159368,-0.012150298,-0.013111304,-0.014335515,-0.022109257,-0.047768727,0.03474312,0.013307177,0.023480374,0.02867103,-0.008710263,-0.027765114,0.011017902,-0.017567433,-0.005114143,0.0022892752,-0.026712291,-0.0033023101,-0.0022770332,-0.0105037335,0.011948302,-0.0060843304,-0.015449547,0.012266598,0.007308542,-0.025463596,-0.021252308,0.017359316,0.0004269437,0.0038317814,0.02039536,-0.038611624,0.01569439,0.012560409,0.009310127,-0.03474312,0.001257112,-0.018987518,0.00839809,0.016257526,-0.032588504,-0.0012089087,-0.01702878,-0.0011767731,-0.0060782093,0.003348218,-0.018387655,-0.0065434095,0.035722487,-0.0005099605,-0.022672394,-0.020530025,0.0038715685,0.010736333,0.010852634,0.022231678,0.0032288574,0.00648832,-0.0039756265,0.01448242,0.038489204,0.003005439,-0.0052671693,-0.020285182,-0.033739265,0.009542728,-0.006378141,-0.009175464,0.031070484,0.025243238,-0.006990247,-0.029699367,0.040325522,-0.0010589428,-0.007375873,0.014188609,0.0001329417,0.027299913,0.013723409,0.027275428,-0.011630008,-0.0050070244,0.032515053,0.012817493,0.019783255,0.009102011,-0.029821789,0.050633382,0.050192665,0.01442121,0.014494662,0.03249057,0.04125592,0.00095488486,0.03677531,0.0246801,-0.02879345,0.020064823,0.0071555153,-0.023994543,0.006004757,-0.008955106,-0.013417357,-0.0076513207,-0.04767079,-0.007222847,-0.06757647,-0.008838806,0.0012678239,-0.010926086,-0.030948063,0.00590988,-0.00295341,0.032515053,0.01448242,0.017445011,0.0041561974,-0.03388617,0.012089087,0.013062335,-0.0117034605,0.018987518,0.00076436694,-0.028940355,-0.00007646539,0.0021653238,0.009144858,-0.004933572,0.072277434,-0.033910654,-0.0031064362,0.028450672,0.01626977,-0.04101108,-0.024337322,0.021338005,-0.040692784,-0.021080919,-0.006800494,-0.024165932,-0.011832003,-0.006469957,-0.024263868,0.00047361676,-0.008061431,-0.0137601355,-0.01240126,0.011103597,-0.010216043,0.00038409632,-0.0070330943,0.010993418]},{"id":"guide-basic-bot-1","type":"guide","source":"guides","text":"Guide: Basic Bot (basic-bot)\nSection: Common mistakes\nAlways await message.reply() to avoid unhandled promise rejections. Use intents: 0 (Fluxer does not support intents yet). Set FLUXER_SUPPRESS_DEPRECATION=1 to silence deprecation warnings.\n\n```javascript\n// ❌ BAD — unhandled rejection if reply fails\nmessage.reply('Pong!');\n\n// ✅ GOOD\nawait message.reply('Pong!');\n```","meta":{"slug":"basic-bot","url":"/guides/basic-bot"},"embedding":[-0.030209007,0.0031615265,0.014777625,0.02338542,0.004916795,0.008083429,-0.04088703,0.041513547,0.029064933,0.05069338,0.01372208,-0.02941905,0.01755609,0.012584816,0.010950425,0.032687835,-0.03524838,-0.0018897654,0.026163887,0.01773315,0.044155814,0.003049162,-0.0040859794,0.039089203,-0.042003866,0.0057782554,0.00802895,0.040342234,-0.0025299022,-0.023821259,0.03320539,-0.026381806,0.0024618024,0.007061934,0.01969442,-0.016684415,0.036283497,0.022159627,-0.014151108,-0.016725276,-0.006646526,-0.053989407,0.05845674,-0.017338172,-0.01184934,0.044183057,-0.038326483,-0.010344338,-0.0055773617,0.06101729,-0.04317518,0.033613987,0.014110249,0.08466149,0.004354973,-0.0053322027,-0.028220497,0.020865735,0.0022472886,0.0237123,0.01180167,0.0134292515,-0.022282207,0.010868705,-0.049549308,0.0062753833,-0.010991284,-0.0039974498,0.036664855,0.052654654,-0.002758036,0.0063400776,0.02164207,-0.059818737,-0.023058543,0.018318808,0.036256257,0.048623152,0.020675056,-0.018427767,-0.009445422,-0.0021042794,-0.07774256,-0.055950675,-0.063414395,-0.020852113,-0.067500375,-0.04342034,0.00041838724,-0.045953646,-0.012407757,-0.026368186,-0.06079937,0.032796793,0.064340554,-0.028274976,0.0027495236,-0.018918084,0.026109407,0.02947353,0.073493145,-0.046689123,-0.05916498,-0.018577585,0.026340947,-0.0276076,-0.029609729,-0.006271978,-0.056223076,0.011277303,-0.07202219,0.0056080064,0.033886388,0.036011096,0.02388936,-0.02941905,0.022949584,-0.010337528,0.06281512,-0.005934885,-0.01788297,0.013939999,0.034975983,0.0005635246,0.008818905,-0.0466074,0.046498444,-0.016303057,-0.048895553,0.0028431606,0.0546704,0.0002683552,0.046144325,-0.02353524,-0.06069041,0.00010289432,-0.014178348,0.0077837906,0.011270492,0.015240703,-0.0018829554,-0.045626767,0.0051857885,-0.000656736,0.010310288,-0.028792534,-0.048922792,0.013068324,-0.03590214,0.0125167165,0.0016650365,0.032742314,-0.06292408,0.010514586,-0.02958249,-0.0002649502,0.013095563,0.017297313,-0.06325096,-0.05567828,-0.016030658,0.011522462,0.018958943,-0.05894706,0.0030117072,-0.03590214,-0.013381582,-0.012646106,-0.0312986,0.0546704,0.036256257,0.019871479,0.011835719,-0.012387327,0.020457136,-0.020511616,-0.019067902,-0.042494185,-0.006057464,0.014028529,0.042194545,0.045790207,0.029800408,-0.04159527,-0.013865089,-0.031189641,-0.012584816,0.0048146457,-0.031679958,-0.016248578,-0.030209007,-0.0007456912,-0.006520542,-0.011835719,0.024080038,-0.041813187,0.05720371,-0.03884404,-0.002730796,-0.012945744,-0.02725348,0.02158759,0.027621219,-0.026776783,-0.0033692303,-0.013926379,-0.0047874055,0.024720175,-0.01788297,0.034349464,0.029282851,-0.008117478,0.010010649,0.011406692,-0.061888967,-0.022581846,-0.0026524814,0.044128574,-0.06657422,0.010970854,-0.093705125,-0.011965109,0.07578129,0.010112799,0.0025486297,0.024461396,0.051510576,-0.010861895,-0.016888713,0.01777401,0.028465655,0.004545652,-0.012176218,-0.052409492,0.021165373,-0.009159404,0.052845333,0.0035922567,0.000010919885,0.041976627,0.00044307337,-0.01976252,0.0075931116,0.0025350095,0.012680155,-0.017746769,-0.03985192,-0.02766208,0.05088406,0.036310736,0.06935269,-0.006033629,0.04265762,-0.0197489,0.011931059,-0.056277554,0.003239841,-0.0007980428,-0.0013543318,-0.028411176,-0.034594625,0.019027043,0.008253678,-0.006265168,-0.040423956,-0.0071640834,-0.008675896,0.02768932,0.019054282,-0.036528654,-0.0078587,-0.004511602,0.034485664,0.00056054525,-0.010582686,0.01184253,0.0031240715,0.04309346,-0.03576594,0.038135804,-0.03712793,-0.009649721,0.0011823802,0.02556461,0.0435293,0.028356696,-0.0038884901,-0.040723592,0.012203458,0.014123868,-0.008553317,0.01780125,0.00686104,-0.036201775,0.044101335,0.086459324,0.054152846,-0.003364123,0.026449906,-0.004317518,0.012196648,-0.0024788275,-0.002650779,-0.03192512,0.028356696,0.018686544,-0.028928732,-0.024611214,0.00798809,-0.028901493,-0.01965356,0.020089397,-0.06701006,-0.022295827,-0.015431382,-0.009234313,0.03301471,0.019027043,0.026204746,-0.008573746,0.008553317,-0.03699173,0.022241347,-0.025932347,-0.047642518,-0.030127287,0.0058599752,-0.014832105,0.0058395453,0.059219457,0.014477986,-0.024801893,-0.0357387,0.018237088,-0.028520135,-0.01371527,-0.031679958,0.01176081,-0.028847013,0.044101335,-0.022472886,-0.018863603,-0.05725819,-0.008771235,-0.017161112,0.026109407,-0.005073424,-0.016711654,0.003035542,-0.0045899167,-0.030481406,0.030454164,0.014736765,-0.048078354,0.026599724,0.020443516,0.0054581873,0.0017280288,-0.001780806,0.036120057,-0.05742163,-0.0075794915,-0.0067588906,0.028274976,-0.0040178797,0.028656334,-0.018455006,-0.057639547,-0.009506712,0.015240703,0.002238776,0.042603143,-0.033586748,0.010146848,-0.033995345,-0.00790637,-0.027103662,0.008825715,-0.015363282,0.026109407,0.0012913396,0.016384777,-0.04320242,-0.058129866,-0.020007677,-0.006517137,-0.004504792,-0.010562256,-0.0069870246,0.018495865,0.02586425,0.0033556104,-0.03159824,0.026163887,0.038462684,0.037209652,-0.011924249,-0.016221337,0.014001288,0.020593336,0.06493983,0.007068744,-0.014668666,0.032878514,-0.025087912,-0.021110892,0.028383935,0.015131743,-0.028138777,-0.038299244,0.040532913,0.002546927,0.04777872,-0.0027495236,-0.01566292,-0.04453717,0.05878362,-0.04927691,-0.006329863,0.010875515,-0.012727825,-0.018182607,-0.022677185,-0.053390127,-0.0031700388,0.04720668,0.016371157,-0.04731564,0.01777401,-0.08727652,-0.040206034,-0.024733795,0.016970433,0.039633997,0.02553737,-0.008859765,-0.013245382,-0.042684864,-0.03933436,-0.007463722,0.020879354,-0.011631421,-0.0011466279,0.046008125,-0.030018328,0.017093014,-0.057694025,0.021192612,0.042930022,-0.014437127,-0.057694025,-0.061616566,0.012693776,-0.022077907,-0.013912759,0.013606311,0.029146653,0.0018557155,0.028710814,0.047696996,-0.0011355617,0.014409887,-0.040641874,-0.024434155,-0.0011483304,0.04453717,-0.011324973,0.020402657,-0.018849984,-0.051619537,0.013470111,0.01953098,0.021342432,-0.020579716,-0.014178348,-0.011372643,0.04897727,-0.020266457,0.012795925,0.020280076,0.03723689,0.013115994,0.008682705,-0.026504384,-0.022731664,0.07327523,0.032878514,-0.023862118,-0.084225655,0.018863603,-0.036692094,-0.010759746,0.060254574,-0.015935319,0.042221785,-0.0046205614,0.018591205,0.02388936,0.028438415,-0.010112799,-0.011910629,-0.028928732,-0.05932842,0.028901493,0.032578874,-0.021533111,0.0046409913,-0.019558221,0.016098758,-0.019244961,0.028166017,-0.026599724,-0.0021536516,0.0067759156,-0.024583975,0.025809769,-0.010643976,0.034104306,-0.011713141,-0.018209847,0.00988126,0.017283693,-0.0005350079,0.0022745284,-0.006857635,-0.02971869,-0.009636101,-0.026477145,-0.017351791,0.010678026,0.027117282,-0.0071164137,0.017093014,-0.00996298,-0.024216237,0.023971079,-0.030317966,0.0041540787,-0.032251995,-0.034349464,-0.018128129,0.0048282654,0.016997673,0.0015918294,-0.045790207,-0.0020242622,-0.0043651876,0.050094105,-0.033750188,0.027130902,0.02527859,-0.016234957,0.009295602,-0.020647814,0.033613987,0.006850825,-0.0006512029,-0.009724631,0.02557823,-0.006643121,0.022527365,-0.019149622,0.0060029845,0.006438822,-0.01942202,-0.02950077,0.012666536,0.033750188,-0.0041983435,-0.0042766584,-0.0022132387,0.006084704,-0.030508645,-0.0041506737,0.026422666,0.0021127916,-0.018659305,0.0050802343,-0.02168293,-0.025387552,0.0237123,-0.059764255,0.0155948205,0.03985192,-0.038544405,0.007238993,-0.038762324,-0.010017459,-0.028792534,0.027811898,0.039606757,-0.005155144,-0.025973208,0.012816355,-0.014164728,-0.008233248,-0.029282851,0.018523106,-0.026150268,0.036746573,0.022731664,-0.025333071,-0.010664405,-0.029909369,0.0058020903,0.0027903833,0.024161758,-0.01560844,0.0118902,0.0038816803,-0.0016114081,0.018100888,-0.00015822529,-0.07060572,-0.067500375,-0.014559706,-0.0000615025,0.0095543815,0.03148928,0.001084487,0.00343052,0.002574167,-0.015581201,-0.0031342865,-0.019353922,0.02346714,0.002283041,0.0027886808,0.00592467,-0.004099599,0.040314995,0.024188997,-0.0048452904,-0.011011714,-0.041486308,0.0013517782,0.0022047262,-0.014164728,-0.00487934,-0.02175103,0.009064064,-0.0312986,0.0354663,-0.010099178,-0.0034134951,-0.015948938,-0.021192612,0.00015748045,0.0016786564,-0.0060166046,-0.023235602,0.0075658713,-0.0058599752,-0.024624834,0.011631421,-0.018754644,-0.020566095,-0.014396267,0.0057305857,0.012795925,-0.015349662,-0.0124418065,0.008267298,0.015050024,-0.041486308,-0.021982567,-0.033777427,0.014042148,0.0069495696,-0.03127136,0.015104503,0.0077020708,0.038353726,-0.026340947,0.012312417,0.007504582,-0.0006465211,-0.059873216,0.013524591,0.006057464,-0.006510327,0.020811254,-0.034049828,-0.00015077689,0.019313062,-0.03767273,-0.0050972593,0.026844883,0.006329863,0.00033602922,0.0030542694,-0.009513522,0.02551013,0.0013611418,-0.0007665467,0.016139617,0.012434997,0.027239861,0.030890003,-0.05085682,-0.0044400976,-0.006244738,0.03135308,0.012223888,0.014614185,-0.05862018,0.03162548,-0.0049304147,0.03181616,-0.030290727,-0.052681893,0.022295827,-0.039279882,0.0061868536,-0.04192215,-0.020402657,-0.001718665,-0.005464997,0.030236246,-0.005529692,0.016139617,0.031571,-0.029282851,0.016847854,-0.02559185,-0.060036656,0.0044911723,0.04886831,-0.042603143,0.022622705,-0.020007677,0.02544203,0.014764005,0.00787232,-0.0108074155,0.0102762375,-0.043719977,0.031107921,-0.006850825,-0.026395425,-0.0023698679,0.012033209,-0.005533097,-0.024284337,-0.005825925,0.0068440153,-0.0045694867,0.011549701,0.015090884,-0.0021042794,-0.0068338,0.011971919,-0.021083653,0.017229212,-0.034213267,-0.030399686,0.00798809,-0.020497996,-0.020566095,0.025210492,-0.04118667,0.03797237,-0.02557823,0.017120253,0.010698455,0.009302413,-0.03740033,-0.0032789984,0.011502031,0.010609926,0.04113219,-0.015935319,-0.016303057,0.03334159,0.0438017,-0.02783914,-0.07006092,0.00984721,-0.009009584,0.009431802,-0.0314348,0.020784015,-0.022091528,-0.01588084,-0.009023204,0.020198356,-0.008117478,-0.012087689,-0.038707845,0.012652916,-0.020593336,-0.050148584,-0.009377322,-0.020184737,-0.025033433,-0.0008750805,-0.0042528235,-0.1058541,0.020838493,0.008689516,-0.00487934,-0.04159527,0.003701216,0.008117478,0.0196127,-0.0004194513,-0.014450747,0.016207717,0.018604826,0.007102794,-0.03557526,0.05134714,-0.0349215,0.029882127,0.028329456,0.025837008,-0.03729137,-0.018672924,-0.028683575,-0.030808283,0.031843398,0.0022949583,0.028683575,0.0054377574,0.01969442,0.0052266484,-0.008614606,0.02568719,-0.005325393,0.01780125,0.0006729097,0.004916795,0.0024992572,-0.0039804247,0.0047805957,0.008900625,-0.03726413,0.014069389,-0.022513745,-0.0039633997,-0.03353227,0.019299442,-0.0055807666,0.009540762,0.014096628,-0.009384132,-0.021029172,-0.0057305857,-0.032388195,-0.022363925,-0.013150043,0.023290081,0.035629738,0.0014147703,0.042330746,-0.012612056,-0.030808283,0.010718886,0.01771953,0.023344561,-0.038353726,0.06466743,-0.0196808,-0.03557526,-0.0057646357,0.021424152,0.004358378,-0.012911694,0.01754247,0.03508494,0.031843398,0.009908499,0.024134517,0.024406916,0.00199532,0.044509932,-0.0015577796,-0.010330717,0.023821259,0.013470111,0.042031106,0.025333071,-0.001576507,-0.006282193,0.03353227,0.011038953,0.024447776,0.02955525,-0.034649104,-0.034649104,0.0069870246,-0.014396267,-0.027975338,-0.042739343,0.0009040229,0.022922343,-0.021873608,0.034812544,0.007252613,0.0077088806,0.008893815,-0.010473726,0.026095787,0.022309447,0.009697391,-0.04513645,-0.03320539,0.016207717,-0.035956617,0.012394137,0.028656334,-0.020892974,0.019816998,0.024216237,-0.032524396,-0.032388195,0.008233248,0.038517166,0.015363282,-0.023943838,-0.010357957,-0.052164335,-0.025060672,-0.011222823,-0.0072049433,0.0062549533,0.011399882,0.010146848,0.026477145,-0.02741692,-0.0058395453,-0.0005694834,-0.0047908104,0.001867633,0.0237123,-0.0075658713,0.0045524617,0.002975955,-0.015867218,-0.024869993,-0.029119411,0.007123224,0.0037965558,0.01367441,0.036501415,-0.010800605,-0.011467982,0.031734437,-0.012005969,0.009200263,0.014314547,0.015022784,0.02966421,0.002671209,-0.02181913,-0.010984474,0.000089434,-0.016520975,0.040042598,0.005379873,-0.032524396,0.0052164337,0.0034083878,0.0005499047,0.0156493,-0.008451167,-0.00595191,-0.018373286,-0.01776039,0.0090981135,-0.0062311185,0.007627161,0.036583133,0.04982171,0.013381582,0.0061528035,0.024679314,0.03331435,0.031135162,0.00971782,0.035003223,-0.006414987,-0.0058225202,0.009316033,0.038380966,-0.040396713,0.014396267,0.034349464,-0.0001880189,0.025659949,0.0050768293,-0.012346467,0.012448616,0.009404562,0.028656334,-0.029609729,-0.0065954514,0.011359022,0.004307303,-0.00394978,-0.014083008,0.0064626574,0.003042352,-0.024338815,0.015921699,0.002048097,0.01959908,-0.029963847,0.016330296,-0.014764005,0.0016633341,-0.014968304,0.01176081,-0.014437127,-0.014832105,-0.030753804,-0.009942549,-0.001514366,0.0053696577,0.015472242,0.009486281,-0.00019291355,0.02361696,-0.025156012,-0.031080682,-0.023235602,0.0076067313,-0.00392254,-0.036855534,0.01370165,-0.0036501414,0.03195236,-0.01984424,-0.024257097,0.0033147507,0.023439901,0.02360334,0.010514586,-0.029773168,0.015145363,-0.031080682,0.012673345,0.0020140472,0.013606311,0.016425636,-0.030590365,0.0029708473,-0.008573746,0.01755609,0.015499481,-0.0033266682,0.029991087,-0.009390942,-0.005894025,0.008675896,0.033777427,-0.0065716165,-0.0047976207,0.013987669,-0.018468626,-0.042575903,-0.016902333,0.027294341,-0.009568001,0.014151108,0.009043634,-0.006850825,-0.028002577,0.008757615,0.00293169,-0.006643121,-0.048350755,-0.033886388,0.013347532,-0.029854888,-0.0036807864,-0.025401171,-0.00089721294,-0.024638455,-0.033096433,0.018209847,-0.020470755,-0.0060438444,-0.016275818,-0.03693725,0.0111479135,0.011549701,0.04342034,0.0061664237,-0.012870834,-0.012652916,0.028792534,-0.014723145,-0.044292014,0.02387574,0.014695905,0.036337975,-0.04331138,-0.001625028,0.00039455236,-0.047833197,-0.008784856,0.028710814,0.014845724,0.0027052588,0.06243376,-0.031080682,-0.008308157,0.014464366,0.013551831,-0.030862764,-0.0012649511,0.026436286,-0.015839979,-0.038598884,-0.0075182016,-0.011713141,0.007470532,-0.019027043,-0.007926799,0.037699968,0.003374338,-0.017828489,-0.012496286,0.018386906,0.024978952,0.0012011076,-0.0053662527,-0.006622691,0.006677171,-0.01761057,-0.042466942,-0.007511392,-0.07834184,0.013640361,0.01569016,-0.0048180507,-0.014709525,0.025101533,0.014328167,0.03522114,0.018318808,-0.005304963,0.016629936,-0.032578874,-0.050121345,-0.0011074706,0.085533164,-0.0052334582,-0.016847854,0.028874254,0.017842108,0.028901493,0.015131743,0.00487934,0.02553737,-0.0011585454,-0.004079169,0.016003419,0.015390522,-0.0078110304,0.010180898,0.012291987,-0.021315191,0.0394978,0.013218143,-0.02356248,-0.013538212,0.029991087,0.01169271,0.011004904,-0.024134517,-0.01184253,0.007334333,-0.027199002,0.013095563,0.025728049,-0.005046184,0.025210492,-0.048759352,-0.0054139225,-0.030072806,-0.0021570565,-0.029119411,0.002841458,-0.00789956,-0.026626965,-0.018768264,-0.01582636,0.014668666,-0.013327102,0.026014067,0.024679314,-0.026286466,-0.014518846,-0.010936804,-0.022023428,0.052409492,0.014941064,0.009322843,-0.009138973,0.0060166046,0.0065988563,-0.014859345,0.032061316,0.025006194,0.016194098,0.0020889568,0.021437772,-0.000793361,-0.014219208,0.0027103662,0.009200263,0.029201131,0.018060029,-0.004477552,0.04532713,-0.026776783,-0.009152593,0.014709525,0.006071084,-0.037699968,0.011250063,-0.003018517,-0.028302217,-0.0008257083,0.02758036,0.036583133,-0.00784508,0.017024914,-0.0067384606,0.002962335,0.01959908,0.00075505493,-0.030944483,-0.029745929,0.004140459,-0.005488832,0.008546507,0.028274976,-0.013252192,0.0073683825,0.010180898,-0.0035479919,-0.009138973,-0.020566095,-0.004157484,-0.015022784,-0.016657175,-0.008423927,-0.0351939,-0.013551831,0.018672924,-0.02349438,-0.022404786,0.0071436535,0.008137909,-0.0036331166,-0.026245607,0.02939181,-0.016371157,0.008015329,-0.0037863408,0.0003781659,-0.008124289,0.030835522,-0.021968948,0.024897233,0.035929378,0.0060642743,-0.02947353,-0.010991284,0.018060029,0.0062515484,-0.0017654835,0.010725696,-0.010998094,0.00033688048,0.00082528265,-0.006476277,-0.008369448,-0.008791666,-0.010712076,0.0073411427,-0.019258583,-0.023167502,-0.039824676,-0.011175153,0.011236443,-0.0058020903,0.005723776,0.0160579,-0.033259872,0.028955972,-0.019476501,0.002637159,0.03347779,-0.034403946,-0.028520135,0.018577585,-0.008219629,0.029909369,-0.012673345,0.0126324855,-0.0063673174,-0.005117689,-0.040805314,-0.0022966608,-0.013340722,-0.0038782752,-0.012836785,0.0018012358,0.018618446,0.034785304,0.001957865,-0.02585063,0.01588084,0.021873608,-0.003510537,-0.026722305,0.010991284,0.06069041,-0.026763164,0.004511602,0.02748502,-0.044346493,0.014273687,-0.042739343,0.005716966,0.0005333054,-0.028874254,-0.0236442,-0.02150587,-0.008178769,-0.015581201,-0.024515875,-0.016248578,-0.0138855195,-0.0046137515,0.005107474,-0.014559706,-0.017283693,-0.01582636,0.0038067705,-0.028274976,0.021206232,-0.0020208573,-0.017188353,-0.032360956,0.0063605076,0.025006194,-0.033913627,0.0030729969,-0.03127136,-0.0029061527,-0.011161533,0.0025928942,-0.015853599,0.016793374,-0.00791318,-0.0055569317,0.057312667,0.009070874,0.02952801,0.0048418855,-0.008457977,0.034867022,-0.046416722,0.023058543,-0.0064626574,-0.025891488,0.012142168,0.013245382,0.00046350327,0.00029772316,0.00988126,0.0035071322,0.008955104,0.012223888,-0.026967462,0.005049589,0.025646329,-0.022990443,-0.019122383,-0.03339607,-0.028656334,-0.010051508,-0.016139617,-0.003565017,-0.03366847,0.02191447,0.00794042,0.016357537,0.02349438,-0.017256452,-0.03385915,0.026844883,-0.0014147703,-0.005083639,-0.018495865,-0.029936608,0.015853599,-0.027784659,0.007266233,-0.0023170908,0.002838053,0.010786985,-0.0032108987,0.00247372,0.00032496304,-0.005066614,0.012019589,-0.0039633997,0.0071708937,-0.0044639325,-0.0015773582,-0.011290923,-0.0018659305,-0.004794216,-0.044292014,0.008417117,0.0016377966,0.018100888,0.040178794,-0.01370846,0.0073275226,-0.027771039,0.0057680407,0.012040019,-0.012074068,0.00485891,-0.014954684,0.014573326,-0.017256452,-0.013987669,-0.011277303,0.010221758,0.013013843,0.00297255,0.008628226,0.03740033,0.005866785,0.00002944778,0.048051115,0.0049882997,-0.023971079,-0.0006201325,-0.024706554,-0.03353227,0.016221337,-0.023290081,-0.007089174,-0.012972984,-0.00016897227,-0.0042255833,-0.016125998,0.054479722,0.025128772,-0.0077837906,0.017433511,0.024543116,0.010174088,0.020661434,0.009997029,-0.014600566,-0.027948098,0.009411372,0.00982678,0.02534669,0.020075778,-0.027226241,0.034376707,0.043856177,-0.008839335,0.0013688031,0.042766582,0.0053968974,0.012080879,0.02527859,0.008171959,-0.022472886,-0.0044435025,-0.021151753,-0.013211333,-0.017814869,-0.0059893643,-0.009983409,0.0038884901,-0.032824032,0.012557576,-0.032497156,0.018577585,0.0075386316,-0.016125998,-0.014600566,-0.0034696774,-0.013013843,0.024815515,-0.0025247945,-0.0021281142,0.005485427,-0.03557526,0.014287307,0.01189701,0.009091304,0.035820417,-0.0012104714,-0.03138032,-0.030481406,0.013081944,-0.002058312,0.0076067313,0.035629738,-0.008703136,0.00008852955,0.013075134,0.0012479261,-0.039906397,0.013081944,-0.0044435025,-0.03503046,0.0010095774,0.01769229,-0.031244121,0.0019714849,0.0016905739,-0.029800408,0.032687835,0.0012981497,0.010507776,-0.03742757,0.013163663,-0.016180478,-0.012291987,-0.012278368,0.023902979]},{"id":"guide-discord-js-compatibility-0","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: Overview\nFluxer SDK provides Discord.js-style APIs where it makes sense. Sections marked with the green \"Discord.js compatible\" badge offer familiar patterns — click the badge to see the full API reference.","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.027609399,-0.018778812,-0.027216382,0.00043216447,0.05718388,0.02851825,-0.05551356,0.046351366,0.037827823,0.029746426,0.02859194,0.0022767314,0.011194825,0.008689346,0.004332391,0.0739362,-0.049618315,-0.0178454,0.003068905,0.05458015,-0.004648647,0.016064543,0.033283573,0.050306093,-0.017673455,-0.025374118,-0.00012377712,0.0528607,-0.015855754,-0.04937268,0.020056115,-0.018398078,0.029328845,0.039203383,0.009592055,-0.026725113,0.0447793,0.036525957,-0.014799522,-0.013411683,-0.0057939207,-0.017931372,-0.03237472,-0.023740644,-0.02294233,0.01848405,-0.046818074,0.0044459975,-0.030360514,0.06951477,-0.056397848,0.025889954,-0.002098646,0.021210602,-0.018963039,-0.0014669029,-0.039080564,-0.01618736,-0.032792304,0.004507406,0.023814335,-0.0022199284,0.0034880203,-0.0033283574,-0.03215365,0.062145714,-0.03829453,-0.0059597245,0.059148964,0.028321741,0.050600857,-0.006478629,0.016629504,-0.041119337,-0.0033529208,-0.021259729,0.0102122845,0.029328845,0.009684169,-0.0018652924,-0.024723185,0.011010599,-0.07216763,-0.031883452,-0.03689441,-0.0075778468,0.01785768,-0.041880805,0.013988926,-0.018471768,-0.0035586404,-0.03006575,-0.085088044,0.012846722,0.039227944,-0.0031318492,-0.008167371,-0.022770386,0.008898136,0.04463192,0.076343425,0.00578778,-0.053155463,-0.057282135,0.044730175,-0.014959185,0.010273693,-0.0046425057,-0.041119337,0.015585555,-0.05138689,0.014676705,0.017538356,0.036378577,0.024600368,-0.031539563,0.056496102,0.019822763,0.017747145,-0.010623723,-0.063373886,-0.021861535,0.005284228,0.0030934687,-0.011059726,-0.033529207,0.007160267,-0.022537032,-0.08651273,-0.01931921,0.02224227,-0.04846383,0.051632524,-0.0050293813,-0.059934996,-0.0053517777,-0.04458279,-0.017071648,-0.004691633,-0.032030832,0.014406506,-0.045663588,0.041880805,-0.016224207,-0.03409417,-0.022979176,-0.044066958,-0.007977004,-0.08179653,0.029255155,-0.04853752,-0.010961472,-0.011796632,-0.008179653,-0.057773404,-0.004163517,0.03296425,0.010758823,-0.030557021,-0.028469123,-0.04804625,0.010574596,-0.009966649,-0.018299824,-0.027855035,-0.025251301,-0.0068470817,-0.017489228,-0.032178216,0.082533434,0.027658526,-0.026700549,-0.015401329,0.014406506,0.024391579,-0.0445091,0.017513791,-0.022770386,-0.005585131,-0.007676101,0.053794116,-0.0022414215,0.018422643,-0.035248656,-0.026651422,-0.021628182,-0.008806023,-0.006239135,0.001216662,-0.0016518969,-0.034806512,0.04136497,-0.018668277,0.0036630353,0.049053356,-0.0019681524,0.038024332,-0.00460259,0.011194825,-0.020006988,-0.029181466,0.04485299,0.021443956,-0.030090315,-0.037213735,0.008529684,0.0036968102,-0.007927877,0.015106566,-0.03397135,-0.0004809077,0.016826013,0.012797595,0.03849104,-0.050355222,-0.024023125,-0.015082003,0.047604106,-0.025963644,-0.0096350415,-0.05453102,0.033504646,0.04197906,0.021468518,-0.015487301,0.015941726,0.048709463,-0.022487905,0.011612405,0.056594357,0.025423246,-0.009051658,-0.021505363,-0.03465913,0.0066935597,-0.030041188,-0.012459847,-0.009377125,-0.009610478,0.030802658,-0.05551356,-0.021357983,0.016199643,0.013743291,-0.004716196,-0.01812788,-0.045074064,-0.023310782,0.03841735,0.033652026,0.028813012,0.031195674,0.025177611,-0.0060825422,-0.0021155335,-0.066763654,-0.007553283,0.004980254,-0.0096350415,-0.0019835045,-0.045024935,0.0053241435,0.018262979,0.02616015,-0.06283349,0.0075410013,-0.0073874793,0.0072708027,-0.02294233,0.0108755,0.018152444,-0.0006540038,0.057773404,-0.007823482,-0.028542813,-0.026528604,0.02252475,0.05738039,0.006576883,0.018017344,0.0011967041,-0.051681653,0.012048407,-0.0023534924,0.021726435,0.018226134,0.029746426,-0.012748468,0.010850936,0.009156053,-0.0450495,0.028444558,-0.016162798,0.011004458,0.021345701,0.05620134,0.054629274,-0.01911042,0.0009871465,0.030630713,-0.00892884,-0.018422643,-0.020191215,-0.0017194466,0.03925251,0.006008852,-0.017133057,0.03006575,0.014345097,-0.02155449,0.036452267,-0.0011990069,-0.04448454,-0.020670203,-0.06573199,0.021272011,0.031392183,0.051288635,0.04804625,-0.02168959,0.020117525,-0.024342451,0.012944977,-0.05384324,-0.009370984,-0.0076024104,-0.032472976,-0.03571536,0.015732937,0.028567377,0.050355222,-0.009045517,-0.0030151724,0.047309343,-0.025374118,-0.018606868,0.0066505736,0.028395431,-0.013337993,0.03362746,0.0066628554,-0.051829033,-0.04421434,-0.03682072,0.025939079,0.031121982,-0.02070705,-0.008769178,-0.010678992,-0.01276075,-0.050748236,-0.0029691157,-0.033725716,-0.07157811,0.043747634,0.0056925965,-0.013915235,-0.04917617,-0.0014876283,0.0017747144,-0.025349556,0.00026213884,-0.028370868,0.037705008,-0.009604338,-0.024710903,-0.010617583,-0.036378577,-0.0071725487,-0.060770154,0.028149797,0.017612046,-0.011379052,-0.0052258894,-0.031564128,0.03610838,-0.009506083,-0.026897058,-0.018655995,0.015855754,0.0033652026,0.015217102,0.00039128924,-0.06440555,-0.023347627,0.026700549,-0.033922225,-0.0019313069,-0.01785768,0.027977852,0.02168959,0.023949435,0.0076576783,-0.02237737,0.0013801629,-0.0040744743,0.036501393,0.0042157145,0.041880805,-0.004065263,0.042568583,0.041119337,-0.005800062,0.03564167,-0.01987189,0.020375442,0.019208675,0.016420715,-0.016089108,-0.039792906,0.026405787,-0.02719182,0.036943536,-0.014897777,-0.0097148735,-0.037262864,0.045688152,-0.044877555,0.007866468,0.049544625,0.03033595,-0.019724509,-0.045761842,-0.03701723,0.014774959,0.024796875,-0.014676705,-0.0015344525,-0.0013103104,-0.06239135,-0.032129087,-0.032399286,0.10601617,0.016789168,0.013350274,-0.027904162,0.051730778,-0.063128255,-0.006632151,0.0024870567,-0.0006781835,0.019798199,0.011661532,0.00012857468,-0.051485144,0.040824573,-0.00233507,-0.022794949,0.024219634,0.008345457,-0.023937153,0.009174475,0.017599763,-0.0061470214,-0.017685736,0.016101388,0.0038411207,0.016224207,0.044116087,-0.0011038233,0.026749676,0.010464061,-0.07359231,-0.00009820612,0.008449852,-0.0038349798,0.048734028,0.013718727,0.027167255,0.013104639,0.004378448,0.0054346793,0.04281422,0.007344493,-0.028886702,-0.02768309,0.03131849,-0.016703196,0.0447793,0.06086841,-0.018496333,-0.004700844,-0.032816865,-0.011919449,0.061752696,0.08798654,0.004123601,-0.014774959,-0.078603275,0.006840941,-0.054481894,0.036304887,0.048439268,-0.013067794,-0.0027311568,-0.036157504,-0.032030832,-0.013497655,-0.0077129463,-0.0023903379,-0.0051245647,-0.0097885635,-0.03237472,0.0713816,0.024133662,0.0064049386,0.004341603,-0.03890862,-0.009659605,-0.0059105977,0.030532459,-0.032669485,0.013816982,0.0073751975,-0.0056403987,0.02412138,-0.034757383,-0.019859608,-0.002209182,0.00053771085,-0.0036507535,0.008664782,0.010347384,0.010703555,-0.007455029,0.012527397,-0.0016703196,-0.06258786,-0.011084289,0.023937153,0.02071933,-0.0135836275,0.01834895,-0.042151004,-0.02991837,0.004958761,-0.019847326,0.010562315,0.021431673,-0.017305002,-0.008062976,0.035666235,-0.0019082787,-0.0149223395,-0.016531251,0.023138838,-0.029893806,0.033652026,-0.0132765835,0.006122458,0.038515605,-0.040628064,-0.024035407,-0.012822159,0.013067794,0.034806512,0.0040714038,0.00068931386,-0.0011237812,-0.01010789,-0.012429142,-0.025349556,-0.00039378396,0.022930048,-0.022008916,-0.028567377,0.024563523,0.014001207,-0.0020909698,0.004092897,0.009985072,-0.0067181233,0.0124721285,-0.0132397385,0.0059290202,-0.016592659,-0.040333305,0.0064110793,0.016826013,0.00941397,-0.01603998,-0.058559436,0.019994708,0.025767135,-0.041880805,-0.0012734651,-0.038933184,0.008750755,-0.0151556935,-0.0041819396,0.0071786894,0.015708372,-0.02328622,-0.0033713435,-0.0019113491,-0.013166048,0.013534501,0.021357983,-0.015389047,-0.004937268,-0.00054461934,-0.025128484,-0.01638387,-0.062096585,0.004264842,-0.028763885,0.0035402176,-0.0065277563,-0.0007752862,0.017489228,-0.024133662,0.008462134,-0.033209883,-0.06818834,-0.0387858,-0.0005254291,-0.006853223,0.0015114242,0.042445768,-0.00008784338,-0.028223487,-0.04183168,0.0035770629,-0.00509079,0.040603504,0.03296425,-0.017120775,-0.014111743,-0.0064172205,-0.016261052,-0.004200362,0.02168959,0.03284143,0.018815659,0.008910418,-0.024858285,0.02105094,0.0024839863,-0.004980254,-0.01750151,-0.0022890132,-0.0010662104,0.056741737,-0.00028766188,0.019601692,-0.017968217,-0.0026543958,-0.0013793954,-0.0036231196,-0.0062882616,0.010200003,-0.0051368466,-0.018766532,0.00066014467,0.019626254,-0.01882794,-0.0023473515,0.011029022,-0.009954368,0.0007246239,-0.023716081,-0.0015697626,0.00096565345,0.02036316,-0.021419391,0.00042218555,0.0129326945,0.029648172,0.0032515964,0.0022122522,0.0018330528,0.052271176,0.0061470214,-0.019601692,0.0013678812,-0.038859494,-0.011145698,-0.040013976,0.010992176,0.044656485,-0.035125837,0.044533666,-0.02503023,-0.010924627,0.03431524,-0.03409417,-0.0024532818,0.013092358,0.013423965,-0.025079357,-0.011765927,0.0104026515,0.042494893,-0.0030842572,0.02252475,-0.0054285387,0.006840941,0.03598556,-0.0027388327,-0.019994708,0.025300428,0.0029107775,0.011121135,-0.04183168,-0.018103316,-0.040554374,0.051927287,-0.0214808,0.038048897,-0.044877555,-0.055562686,0.017624328,-0.03728743,-0.009168335,0.0067918138,-0.0057969913,-0.008689346,-0.01715762,0.015843472,-0.018434923,-0.01247827,0.010150876,-0.047284782,-0.0082963295,-0.02106322,-0.034143295,0.009647324,0.006193078,-0.05006046,-0.0059259497,-0.0062944028,0.020240342,-0.0069637587,0.021493083,0.00039032972,0.011354488,-0.0031395252,0.02168959,-0.0447793,-0.019257803,0.012189648,0.0068348004,0.0043907296,-0.007921736,-0.00056227436,-0.0105193285,-0.004056052,0.045368828,0.024010843,0.015954008,-0.006951477,0.008701628,-0.0071848305,0.019933298,-0.021161474,-0.007958582,-0.0064479248,0.0018990673,-0.010648287,0.02405997,0.04205275,0.042372078,-0.016801449,0.034487184,0.0027449736,0.021443956,-0.020817585,0.01109043,0.033381827,-0.019294647,0.011280797,0.0028355517,-0.0067672506,0.0092543075,0.05418713,0.014136307,-0.04482843,-0.014897777,-0.01869284,-0.0011506475,-0.06288262,0.0023120416,0.014517042,-0.007958582,-0.00087891356,-0.005655751,-0.014148589,-0.005155269,0.015732937,-0.0069637587,-0.02237737,-0.0064724884,-0.025496935,-0.008486697,-0.023728363,0.017869962,0.024010843,-0.12124555,-0.03424155,0.007909454,-0.022954611,-0.03340639,0.03249754,0.0049464796,0.06273524,0.03814715,-0.015020594,-0.012994103,-0.011802773,0.0006920005,-0.03974378,0.012564242,0.0057171597,-0.0003811184,0.018963039,0.0049526202,-0.052615065,-0.011114994,-0.011649251,0.017329564,0.06499508,0.008554246,0.025546063,0.012699341,-0.057282135,0.035052147,0.023617826,0.042691402,0.0052320305,0.005471525,-0.011944013,0.03026226,0.024944257,0.02098953,-0.027363764,0.0074488884,-0.028542813,-0.014394225,-0.0052136076,-0.024047688,-0.04676895,0.02999206,0.007872609,-0.0057140896,0.009862254,-0.021259729,0.0075287195,-0.0099052405,0.0017793202,0.013546783,-0.009014812,0.013497655,0.014603014,-0.01645756,0.07187287,-0.021136912,0.0015137271,0.00857267,0.008591092,0.0135836275,-0.022647567,0.014418787,-0.0036998806,-0.05099387,-0.0017286579,0.0073629157,-0.024710903,0.019147266,0.004854366,0.037950642,0.041733425,0.00446135,0.035543416,0.0029614398,-0.015634682,0.013301147,-0.021812407,0.004519688,0.0128958495,0.030016625,0.000038380505,0.04156148,-0.013399402,0.0038564731,-0.0017547567,-0.02022806,0.00857881,0.0648477,-0.006828659,0.02544781,0.0039086705,0.016420715,-0.002259844,-0.025300428,0.02112463,0.02601277,-0.03109742,0.03296425,0.00034772736,0.009094644,-0.009549069,0.0062790504,0.013706446,0.013571346,-0.021173757,-0.04151235,-0.052615065,-0.0043262504,-0.012859004,-0.010586878,0.009401688,-0.02426876,-0.001555178,0.001419311,-0.012723905,0.0052351006,0.01178435,0.013190611,-0.010986036,-0.006675137,-0.0027142693,0.0028954253,-0.0062544867,0.0015843472,0.0013801629,-0.0029230593,0.036722466,0.009911382,-0.014492478,-0.003019778,0.015438174,0.02328622,-0.00076377206,0.02308971,0.021333419,0.002726551,0.042372078,0.008413007,0.01080795,0.002671283,0.015290793,-0.000822878,0.021345701,0.007510297,0.04212644,0.0009395547,-0.0061777257,0.040136795,-0.019356055,0.005397834,0.029672734,0.049470935,0.07236414,-0.024379296,-0.028444558,-0.016494405,-0.008204216,0.043673944,0.023138838,0.002315112,-0.030458769,-0.0054131863,0.010187721,0.006883927,0.019208675,-0.010298257,0.0032976528,0.00934642,-0.045221444,-0.015425893,-0.009542928,0.021001812,0.024281042,0.03844191,0.011084289,0.041807115,-0.0008520472,-0.0016626434,0.027732218,0.005057015,0.0043047573,0.027437454,-0.0075778468,0.042494893,-0.010562315,-0.031637818,0.010936908,-0.0020541246,0.022070326,0.023752926,-0.0019098138,0.00057378854,-0.014148589,-0.028911266,0.026897058,-0.026553167,0.0196631,0.05502229,0.014443351,0.0009595126,0.024452986,0.009499942,-0.0036968102,-0.02601277,0.026307533,0.044926684,0.030655276,-0.021173757,0.022365088,0.02225455,-0.0066935597,0.029328845,0.0013387119,0.0073322114,-0.009070081,-0.0033989775,0.007854186,0.01032282,-0.015843472,0.023347627,-0.0117168,-0.0069023496,-0.0041512353,-0.028444558,0.00019401345,-0.023396755,0.0058338367,-0.02021578,-0.008732332,-0.0003657662,0.006220712,0.023126556,-0.037754133,-0.014959185,0.009321857,0.035789054,0.040996518,0.012711623,-0.007203253,-0.015008313,-0.059787612,-0.008136666,-0.005342566,-0.0027526498,0.008713909,-0.0017102353,-0.009745577,-0.0037121624,-0.0026820295,0.010328962,0.016089108,-0.026528604,0.008560387,-0.026651422,0.03822084,0.017415537,-0.019933298,-0.02601277,0.0096350415,-0.0034204705,-0.04414065,-0.014148589,0.03311163,-0.005001747,0.0064417836,0.0057478645,0.007817341,-0.0004874324,0.01171066,0.0003120335,0.038859494,-0.020952685,-0.0003199015,0.017243592,0.013141485,-0.01053161,-0.042421203,0.009813127,-0.019957863,-0.044312596,0.02315112,0.019921016,-0.025988206,0.006374234,-0.012140521,0.037778698,0.00033966746,0.020670203,-0.01010789,0.009033236,0.010439497,0.009321857,-0.02078074,-0.04603204,0.0017777849,0.008198076,0.017698018,-0.028690195,0.015880316,-0.005677244,-0.009352561,-0.009493802,0.015475019,0.016924268,0.0022199284,0.024968822,-0.022094889,-0.004547322,-0.00016129407,0.013608191,0.0025515358,0.015990853,-0.009469238,-0.038122587,-0.016469842,0.017440101,0.010427215,0.02119832,0.0031441308,0.02684793,0.042765092,0.015106566,-0.020608796,0.02021578,0.007946299,0.026700549,-0.00920518,-0.021186039,-0.02999206,-0.031343054,-0.038245406,-0.04217557,-0.020092962,-0.045688152,0.028051542,0.018029625,0.005886034,-0.030090315,0.006478629,0.0060057812,0.01791909,0.030385077,-0.0007699129,0.053499352,-0.0066260104,-0.008891995,0.022610722,0.058805075,0.010887781,0.008971826,-0.0051153535,0.022205424,0.012957258,-0.008050694,0.028714757,0.014639859,-0.00043984057,-0.018815659,0.041045647,0.02802698,0.005551356,-0.010992176,-0.015487301,-0.031465873,0.020842148,-0.013718727,0.017833117,0.01346081,-0.008118244,0.010986036,0.018643714,-0.0071725487,-0.022303678,0.0026405787,0.012036126,0.024944257,0.0019313069,-0.01924552,-0.014627578,0.0005626582,-0.013546783,-0.029107774,-0.021861535,-0.030311387,0.024882847,0.023580981,-0.031662382,0.0049679726,-0.025496935,-0.020498259,-0.014959185,-0.011999281,0.011403616,-0.03296425,-0.0017885314,0.0059812176,0.0065584606,-0.0042986167,0.010138594,0.028469123,0.0014085645,0.0012312465,0.010488624,0.033308137,0.033774845,0.013632755,-0.017968217,-0.0051767626,0.035052147,-0.009985072,-0.028444558,-0.021701872,0.019736791,0.011440461,0.0004797563,-0.011569419,0.022229988,0.021738717,0.04129128,-0.0015528752,-0.0053517777,0.0015052834,-0.0009641183,-0.009899099,-0.03409417,0.023323065,-0.0108632175,0.01882794,0.008075258,0.031932577,0.025496935,-0.034216985,0.027904162,-0.00008251808,-0.0075962692,-0.0057632164,0.041954495,0.024465268,0.0125888055,0.016162798,0.015806627,0.00097025913,-0.032399286,-0.02071933,-0.0177103,0.02461265,0.0045012655,0.016347025,-0.00020149765,-0.023458164,0.011108853,0.0129326945,0.013915235,-0.0012596481,0.029304283,0.0036998806,0.018152444,0.024809157,-0.04777605,-0.004832873,-0.01010789,-0.013473092,-0.002490127,-0.019884171,-0.008713909,-0.002362704,-0.025644317,0.020940403,0.037950642,-0.011250094,-0.0096350415,-0.0062176418,-0.009383266,0.01674004,-0.02385118,0.01645756,0.015290793,0.021812407,-0.0067733913,0.009678028,-0.011802773,-0.01833667,0.0076883826,0.02699531,-0.027781343,0.007510297,-0.00080061733,-0.0033774844,0.020866713,0.02866563,-0.02608646,0.02462493,-0.0013241274,-0.005754005,-0.009856113,0.009499942,0.038269967,0.010335102,-0.008388443,0.014934622,-0.025251301,0.02225455,-0.009002531,-0.0107404,-0.0021155335,-0.0061777257,-0.023114275,-0.020559669,-0.0073936204,-0.0029061718,-0.03917882,0.033774845,-0.00066705316,-0.0031993988,-0.008849009,-0.018520895,0.03207996,-0.00009998121,0.015929444,0.004498195,-0.02643035,0.0100219175,-0.049544625,-0.033995915,0.009659605,-0.0437722,0.020264907,-0.050085023,-0.009438533,0.0063435296,0.033259008,0.010593019,-0.039424453,0.0012381551,-0.014001207,-0.0020065329,0.009186758,-0.030483332,-0.0014454097,0.005382482,0.0033498504,0.00008347759,-0.029623609,0.00061447185,-0.02810067,-0.008339316,-0.01032282,-0.041586045,-0.0214808,-0.007817341,0.0045657447,-0.008812164,-0.018262979,-0.019368337,0.009088503,-0.020694768,0.029034084,-0.009014812,0.04288791,0.006533897,0.031908017,0.034904767,-0.0055329334,-0.004854366,0.030409642,-0.014860931,0.015978571,0.0039639384,-0.011532574,-0.038024332,-0.029599044,0.008290188,0.027044438,0.0019543353,0.007651537,0.01234317,-0.0118580405,0.022782667,0.011630828,-0.031146547,-0.011065867,0.027240947,0.00080906105,-0.060819283,-0.0061593032,-0.014246843,-0.005244312,0.029083211,-0.014603014,-0.007774355,0.04755498,0.023273937,0.03610838,0.024391579,0.0020403075,-0.0047960277,0.020301752,0.0033897662,-0.009960508,-0.0065523195,-0.01387839,-0.010414934,-0.022008916,0.012109817,-0.0125089735,0.0019267013,-0.012214212,0.0065400377,-0.0019758283,-0.0031594832,-0.03544516,0.03871211,-0.013313429,0.020535104,0.016973395,-0.019773636,0.031146547,0.0108632175,0.003884107,-0.011428179,0.019134983,-0.023298502,0.01088164,0.022991458,0.009420111,0.0034634566,-0.013399402,-0.0126624955,0.027240947,0.010844795,-0.0036599648,0.028469123,-0.0047223372,-0.016703196,-0.019835044,-0.0026513252,-0.008001568,-0.0050170994,0.009506083,-0.0029123127,0.0037797121,0.0126256505,0.023384474,0.03689441,0.00045557658,0.014799522,-0.010986036,-0.019356055,-0.016089108,-0.00027039065,0.009567492,-0.005185974,0.024588086,0.027511146,0.0010815626,-0.019687664,0.031146547,0.023765208,0.006589165,0.010912345,-0.00096488587,0.0019881101,0.03348008,-0.0036169786,-0.022033479,0.03026226,0.022340523,-0.0076453965,0.0010186186,0.0031932578,0.0072339573,0.066272385,0.024649495,0.010378088,-0.00090885034,0.031736072,0.014836367,-0.00522896,0.03355377,0.006699701,0.015990853,0.013423965,0.002503944,0.012349311,0.02315112,-0.004559604,-0.02601277,-0.027339201,-0.005474595,-0.018091034,-0.034831073,-0.005830766,0.0038319095,-0.02878845,-0.035469726,0.015560991,-0.011913309,0.03382397,0.020657923,0.0070190267,0.0011583236,-0.018901631,-0.030360514,0.00079370884,-0.025767135,0.027142692,-0.034462623,-0.008056835,-0.008584951,0.00047591826,0.014517042,-0.022819512,0.027535709,-0.01541361,-0.0052903686,-0.005014029,0.007964722,-0.036992665,-0.004092897,-0.013792418,-0.021431673,0.0054131863,-0.03603469,0.0012151267,0.008320893,-0.020940403,-0.039080564,-0.00578778,0.0041512353,-0.0026482549,-0.008652501,-0.010537751,0.009874536,-0.022340523,-0.028149797,0.0077497913]},{"id":"guide-discord-js-compatibility-1","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: member.roles (GuildMemberRoleManager)\nmember.roles is a manager with add(), remove(), set(), and cache. Use member.roles.add(roleId), member.roles.remove(roleId), member.roles.set(roleIds), and member.roles.cache.has(roleId) instead of the old member.addRole() / member.roles.includes() pattern.\n\n```javascript\n// Discord.js style\nawait member.roles.add(roleId);\nawait member.roles.remove(roleId);\nawait member.roles.set(['id1', 'id2']);\nif (member.roles.cache.has(roleId)) { ... }\n```","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.0051349695,0.008188031,-0.00004846279,-0.013887482,0.0028011682,0.04484297,-0.0033929644,0.014494453,0.018099856,0.018755384,0.03178097,-0.03729226,0.04671244,0.009656899,0.003972621,0.011137906,-0.05181099,-0.0019043696,-0.016655266,0.0397687,0.020248532,0.044163164,0.0056023365,0.037559327,-0.035082888,-0.0010826834,0.00081258157,0.04734369,-0.013001305,-0.022494322,0.037972067,-0.020976895,-0.010288148,0.03216943,-0.0241817,-0.027993474,0.039088894,0.040812686,0.013134839,0.02112257,0.017383631,0.00069725723,-0.0050317845,-0.028988905,-0.0077388724,0.03619971,-0.010093917,-0.005905822,-0.031465344,0.01967798,-0.006579559,0.022688553,0.0028922139,0.05142253,-0.01413027,0.008643258,-0.021535309,-0.018294087,-0.027143715,0.037753556,0.0075871297,-0.045352828,-0.03547135,0.0019483749,0.003480975,0.009584062,-0.0528307,-0.034403082,0.019641561,0.046809554,0.010197102,-0.015878346,-0.009851129,-0.034985773,-0.015392768,-0.01760214,0.026512466,0.019180264,0.042342253,-0.006864835,-0.012109059,0.03418457,-0.057200886,-0.019410912,-0.017068006,-0.027556455,-0.017796371,-0.025080016,0.03702519,-0.041516773,-0.010002872,-0.029547317,-0.09604699,-0.016315363,-0.02192377,-0.034937214,0.026124004,0.023938911,-0.024982901,0.045134317,0.07885759,-0.032485053,-0.06336771,0.012637123,0.031028325,0.008958883,-0.015344211,0.026099727,-0.0712826,0.0057176608,-0.04098264,0.027629292,0.0052806423,0.012339707,-0.017505025,0.009244159,0.031246835,0.013426185,-0.010385263,-0.027750686,-0.06293069,-0.026779532,0.026293956,-0.041613888,-0.034281686,-0.030591307,-0.032485053,-0.06846626,-0.051568203,0.005365618,-0.011326067,-0.021972327,0.070165776,-0.01433664,-0.055792715,-0.01703159,-0.01843976,-0.041443937,-0.014627986,-0.016813079,0.0027237795,-0.008145543,0.004995366,0.017092286,-0.027677849,-0.009863269,-0.023902493,-0.010373124,-0.09196815,0.013620415,-0.0706028,-0.014712961,0.02232437,-0.018136274,-0.05656964,-0.043507636,-0.017468607,-0.010876909,-0.0031774899,-0.028551886,-0.03605404,-0.028042031,0.004364117,-0.051131185,0.0076114084,-0.033868946,-0.0077813603,0.022372928,-0.024363792,0.041055474,0.036806684,-0.030615585,-0.014045294,-0.018002741,0.0076114084,-0.030712701,-0.025638428,-0.03255789,0.0028193775,0.018597573,0.034160294,0.008406539,-0.015186398,0.0032746051,-0.05210234,-0.007842057,-0.03629683,-0.03661245,0.02561415,0.017881347,0.029935779,0.057540793,0.0018876778,0.024691556,0.06365905,-0.015065005,0.03496149,0.023404777,-0.014312361,-0.038384806,-0.031805247,0.027823523,0.039671585,-0.01967798,-0.015186398,-0.0027177099,-0.014482313,-0.0034293826,-0.00880107,0.0071197622,0.0017996671,-0.019908627,-0.0062457253,0.028916068,-0.015756952,-0.022615716,-0.064435974,0.009068137,-0.005141039,0.024145281,-0.05860906,-0.0013899622,0.02930453,0.015550581,-0.0019711363,0.009201671,0.03911317,-0.005981693,0.024642996,0.06793212,0.0119694555,-0.032897793,-0.045789845,-0.026803812,-0.0010250212,0.024303094,-0.016436758,0.038190577,0.00230497,0.034354523,-0.044745855,-0.016315363,-0.036345385,-0.0024885784,0.032339383,-0.018500457,-0.010197102,-0.003565951,0.018281948,0.012892051,0.02724083,0.05016003,0.02787208,-0.006433886,-0.020345647,-0.035277117,0.015004308,0.054967236,-0.03607832,0.06453309,-0.05574416,0.024023887,0.029571597,0.031683855,-0.05656964,0.020454902,0.017541444,0.019593004,-0.018876778,-0.0014999756,0.053316277,0.015404908,0.025322804,-0.04571701,-0.014057434,0.0030940315,0.019617282,0.06312492,-0.016934473,0.0050742724,0.0016949647,-0.03870043,0.035519905,0.020199973,0.016752383,0.030834096,-0.022894923,0.01865827,0.017699257,0.018973894,-0.04608119,-0.013474742,0.0051956666,-0.0001944202,0.019119566,0.023259105,0.02867328,-0.03602976,0.024885785,0.047222294,-0.012005874,0.036588173,-0.01760214,-0.028406214,0.020467041,-0.0054809423,-0.045765568,0.0073261326,-0.014203107,-0.029255971,-0.0074232477,0.052393682,-0.0072593656,0.014045294,-0.047659315,0.003480975,0.007441457,0.022166558,0.061522517,0.03365044,0.04775643,-0.040861245,-0.0068709045,-0.03602976,0.02192377,-0.038967498,-0.0071622506,-0.044745855,0.023708263,0.023744682,0.051325414,0.0011593134,0.00040856694,0.019423053,0.0011130319,0.015684115,0.0072593656,0.050742723,0.012819214,0.014591568,0.0012807075,0.0009999836,-0.021389635,-0.021972327,-0.007107623,0.004178991,-0.038821824,0.00035185314,0.0040242136,0.0007742666,-0.0026388038,0.003113758,-0.031683855,-0.05676387,-0.017080147,0.0052169105,0.025080016,0.0012966405,0.024157422,0.01064626,-0.05244224,0.018718965,-0.042730715,0.025104295,0.011356415,0.0057176608,-0.00983292,-0.027483618,0.04447879,-0.024424488,-0.009335204,0.059871558,-0.055549927,0.010476309,-0.0057449746,0.011204673,-0.025711264,0.009529435,-0.0012321499,0.032509334,-0.00051288994,0.031635296,0.013596136,-0.014093852,-0.01331693,-0.0034779403,-0.05433599,0.008855698,-0.04899465,-0.035592742,0.029984336,0.032533612,-0.015307792,0.015671976,-0.048897535,-0.011295719,0.05792925,0.04593552,0.025686987,-0.0421723,0.039210286,0.047416527,-0.025881216,0.0127706565,-0.011775225,-0.017990602,0.0018102891,0.030227125,-0.02129252,-0.034111734,0.046979506,0.036393944,0.039695863,-0.0029347017,0.039574467,-0.019180264,0.0291103,-0.019338077,0.013596136,0.02437593,-0.01434878,-0.02928025,-0.03051847,-0.06501867,0.05064561,-0.0145065915,-0.031052604,-0.010555215,0.018718965,-0.029353088,-0.08220807,0.032873515,0.03236366,0.008661468,0.0033626158,-0.0066888137,0.028042031,-0.024412349,0.014482313,0.00023937394,0.02151103,0.0068891137,-0.025759822,-0.0013323,-0.0019089219,0.0034111736,0.007939173,-0.062250882,0.025832659,0.023137711,0.0058663688,0.017638559,-0.0118359225,0.022154419,0.004112224,-0.024533743,0.020321367,0.003769286,-0.020017883,-0.021013314,-0.004446058,0.019544447,-0.016558152,0.0049680523,-0.012831354,0.03173241,0.024060305,0.003420278,0.0011062035,-0.033261977,0.01903459,0.02643963,0.053850412,-0.0044187442,-0.0051137256,-0.016448896,0.01677666,-0.02682809,-0.015999738,0.026925206,0.028600443,0.00920774,0.009244159,-0.028479049,0.038797546,0.044745855,-0.0036782403,-0.013814646,-0.027410783,0.03794779,-0.06244511,0.035349954,0.028964626,-0.011993734,0.030567028,-0.006907323,0.03955019,0.0053534787,0.00057662185,-0.003745007,0.005963484,-0.048023496,-0.026585301,0.07842057,-0.026609581,0.017383631,-0.02435165,-0.03522856,0.00450979,0.04918888,-0.006634186,-0.024048166,0.0039847605,-0.020770526,0.013292651,-0.024776531,-0.040812686,-0.0076903147,-0.0063003525,-0.027532175,-0.010433821,0.023890354,0.028867511,-0.007939173,0.003216943,0.024011748,0.025152853,-0.021219684,0.009960384,0.02600261,0.027750686,-0.022227256,0.04078841,0.0090317195,-0.029571597,-0.032485053,-0.0015333589,0.0192531,0.040836968,-0.028721837,0.012175825,0.043264847,-0.031246835,0.00009687816,-0.030348519,-0.002603903,-0.009911826,0.020127138,0.012254732,0.013341209,-0.0008763135,-0.040011488,-0.027799243,-0.028551886,-0.030275682,-0.042026628,0.004342873,-0.020661272,-0.0043003852,0.008637188,0.0026160423,-0.012807075,0.004752578,0.008436888,-0.05715233,-0.030299962,0.021632424,0.022567159,0.0038390877,0.0005614476,0.011180394,0.015356351,-0.009365553,0.0043155593,0.039671585,0.0090013705,-0.029328808,0.016946612,0.0066523952,-0.009116695,0.0045128246,-0.053801853,0.0233805,0.017140843,-0.049261715,-0.022372928,-0.03013001,0.0023535276,-0.0074718054,0.008139472,0.007441457,0.009644759,0.030227125,-0.008928535,0.0060484596,-0.014567289,-0.0067130923,0.019908627,-0.02663386,0.003103136,0.014907192,0.0034111736,-0.023671845,-0.009984663,-0.0056660683,-0.013450463,0.0458384,-0.009232019,0.030445633,0.0057115913,0.02355045,-0.008910325,-0.023392638,-0.054578777,-0.06686386,-0.027095158,0.0076903147,-0.017165123,0.038409084,0.002119844,0.016764522,0.0107373055,0.044503067,-0.016970892,0.018002741,0.03236366,-0.013001305,-0.00030538198,-0.004467302,-0.022627855,-0.02702232,0.02743506,0.009923966,-0.02006644,0.0030120905,-0.030858373,0.006737371,-0.002952911,0.03314058,-0.004591731,0.023052735,-0.00758106,0.02969299,-0.014397337,0.009080277,-0.012697821,0.015125701,-0.0030864445,-0.00922595,-0.03806918,-0.01865827,-0.03935596,-0.010075708,-0.02047918,0.015465605,-0.03627255,-0.007860267,0.033067744,-0.031878084,0.02192377,-0.045595616,-0.040642735,-0.004588696,0.023817517,0.025007179,-0.0033717204,-0.007708524,0.021850934,-0.004036353,0.018925337,-0.016218249,0.03095549,0.023283383,-0.020224253,0.028139146,-0.039016057,-0.03382039,0.010397403,-0.0123700565,0.019957187,-0.020928338,-0.0011843509,-0.005347409,-0.020989036,0.035131443,-0.025517035,-0.023210548,-0.010725167,-0.0015963321,-0.036539618,-0.0011805574,-0.0022639995,0.006804138,-0.020588435,-0.016473176,0.028430492,0.007927033,0.0048496933,0.034767263,-0.034524474,0.016169691,0.018136274,-0.005037854,-0.014567289,-0.021183265,-0.023259105,0.045789845,0.017747814,0.009717596,-0.0053747226,-0.051665317,0.005596267,-0.04612975,0.005338304,0.014615847,0.010992234,-0.015562721,-0.029668711,0.02969299,-0.0133047905,-0.0056630336,0.034136012,-0.018306226,-0.0041061547,-0.057832137,0.008394401,-0.013535439,0.01785707,-0.026973763,0.0006953604,-0.004339838,0.013583997,0.008321564,0.029814385,0.009766153,0.05224801,-0.0012913295,0.042536482,-0.019180264,0.015198538,-0.008691816,0.004919495,0.004752578,-0.038991775,-0.022457903,0.0070529957,0.014045294,0.008740373,-0.0072411564,0.037195146,-0.049310274,0.007884545,-0.004873972,0.0076781753,-0.0058876127,-0.028381934,-0.019520167,0.010615912,-0.040205717,0.059240308,0.027799243,0.021620285,-0.012697821,0.010057499,-0.006470304,0.024121003,-0.011241091,0.00035621575,0.0010644743,0.015259235,0.012491451,0.0065674195,-0.00921381,-0.023246964,0.03853048,0.014919331,-0.00942625,0.024982901,0.0018011846,-0.021668842,-0.0196537,0.0047616824,-0.008892116,-0.0095658535,-0.019872209,-0.007757081,-0.006409607,-0.010227451,0.028770396,-0.024193838,-0.050936952,0.017371492,-0.0032472915,0.035155725,-0.046761,-0.0010614394,0.018973894,-0.077109516,-0.046202585,0.032023758,-0.01698303,-0.029620154,0.020989036,0.0066463253,0.067155205,0.03836053,-0.01723796,-0.015137841,-0.06482443,-0.007969521,-0.039283123,0.0405699,0.0021335008,-0.024242397,0.028017752,0.018718965,-0.013547579,-0.0107373055,0.016096855,-0.010555215,0.0061516445,0.001421828,-0.009395901,0.030882653,-0.052490797,0.031101162,0.016691685,0.025055736,0.022700692,-0.023878215,0.0011426217,-0.041298263,0.030664144,0.02952304,-0.002857313,0.03607832,-0.044308838,0.0031289323,0.010433821,-0.014433756,-0.036393944,0.016108993,-0.006415677,0.01865827,0.01595118,-0.047635034,0.013171257,-0.022433626,0.033116303,0.018755384,0.010773724,-0.004449093,-0.011368555,-0.011453531,0.05593839,-0.0065249316,-0.005405071,0.062347997,0.018063439,-0.0061577144,-0.016922334,0.026075447,-0.000026578664,-0.028649002,0.001963549,0.0033444068,0.02069769,0.0020166591,-0.013705391,-0.011574925,0.017480746,0.0036327178,0.017517164,-0.023781098,0.0100696385,-0.008455098,-0.019180264,0.00032188397,0.0095355045,0.047489364,-0.0040879454,0.0069922986,-0.017662838,-0.041978072,-0.004136503,-0.0002913458,0.009584062,0.043119173,0.0061091566,0.020576296,-0.009814711,0.010961885,0.007933103,-0.019568725,0.0030378867,0.023866074,-0.01434878,-0.030008616,0.0062335855,0.007684245,-0.01926524,0.0042791413,-0.012157616,0.035131443,-0.008285145,-0.015489884,-0.012018014,-0.00076060975,0.012133338,-0.029401645,-0.010136405,-0.046736717,-0.006373189,0.022215115,0.018306226,-0.0028618653,0.0012230453,0.0059786583,-0.0005883819,0.005474873,0.011210742,0.014943611,0.030979767,-0.009930035,0.01823339,0.009547644,0.039695863,0.00013893931,-0.010518797,0.026269678,0.026196841,0.03093121,-0.011738807,0.016278945,0.01640034,-0.043264847,0.012327569,-0.029595876,0.03789923,-0.035277117,0.04319201,-0.009857199,0.050791282,0.029425923,0.0005015093,-0.010367054,0.02234865,0.03972014,-0.004792031,0.0041911304,-0.0010272973,0.0044581974,0.058123484,-0.015829787,0.01311056,0.012515729,-0.03338337,-0.008564352,0.015854066,0.0068769744,0.002169919,-0.010621982,0.016691685,0.033261977,-0.0033019187,0.012624984,-0.026730975,0.009256298,-0.03972014,-0.015295654,0.040399946,0.038651872,0.03935596,0.030202845,-0.0052108406,0.04030283,0.022627855,-0.014712961,0.020843362,-0.018536875,0.0033110233,0.034937214,-0.00337779,0.010834421,-0.050742723,-0.015052865,0.0044157095,0.022615716,0.004421779,0.0007776808,-0.0115688555,-0.006084878,-0.024121003,-0.008442958,-0.026585301,0.005920996,0.013535439,0.035689857,-0.020042162,-0.0034779403,0.025929775,-0.031125441,-0.0032108733,0.005138004,0.009996802,0.013875343,0.04037567,0.000084881016,0.051373973,0.02130466,-0.021013314,0.005845125,0.014895053,0.004057597,-0.02600261,0.0041273986,0.00943232,-0.007496084,0.028139146,0.00655528,-0.004798101,-0.01084049,0.014154549,-0.04523143,0.017869208,-0.051471088,0.0041850605,-0.007829918,-0.0142395245,-0.0036721707,-0.008273006,0.018876778,-0.0299115,0.0088678375,0.007951312,0.012952748,0.0397687,-0.0019377529,-0.008515795,-0.044818692,-0.037170865,-0.01782065,-0.03355332,0.0016555117,0.0059240307,0.018184833,-0.006719162,0.004792031,0.013486882,0.013171257,-0.032436498,0.028430492,0.016752383,0.01086477,0.017140843,0.04100692,-0.02069769,-0.009614411,0.007417178,-0.009596202,-0.01944733,-0.027799243,0.004691881,0.0029544283,-0.0011661418,0.049868684,-0.0013497503,0.02826054,0.00552343,0.0058147763,0.012989166,-0.008691816,-0.0102031715,-0.013899622,-0.002675222,0.011022582,-0.02641535,-0.010215311,-0.011781295,-0.022955619,0.05516147,-0.010591633,-0.029620154,-0.0004305696,-0.017541444,0.043337684,-0.010360984,0.0054718377,0.0033717204,-0.00032453946,-0.0163882,0.011417112,-0.010889049,-0.036418222,-0.026366793,0.041443937,0.014203107,-0.04734369,-0.0026190772,-0.027556455,0.018682549,-0.012819214,-0.004855763,0.024630858,-0.00073557225,0.0085704215,0.0045158598,0.028406214,0.018269809,0.05142253,-0.01597546,0.0015735707,0.0074596656,-0.008898186,-0.014858635,-0.0074596656,-0.022749249,0.00085051724,0.006858765,0.010403472,0.037559327,-0.0031046534,-0.016946612,0.012855632,0.0073079234,0.0028315168,-0.017347213,-0.0052927816,-0.04013288,-0.009347344,-0.026658138,-0.03054275,-0.0397687,-0.04671244,0.026876649,0.008024149,-0.0056235804,-0.012722099,0.020746248,0.0042336183,0.0393074,-0.0035173933,0.008364052,0.04758648,0.0035568464,-0.007599269,0.034524474,0.07273933,0.016934473,0.0049862615,-0.0042123743,0.03335909,0.0013323,0.013875343,-0.013899622,0.00030026067,-0.00943232,-0.021814516,0.01433664,0.02029709,0.008904255,-0.031222556,-0.024910064,-0.025517035,0.051471088,0.011587065,0.0299115,-0.0020060372,0.010002872,0.0028922139,0.015429187,0.0188525,-0.0022215117,0.019799374,-0.043798983,0.0023778065,0.007763151,-0.0091349045,0.012224384,-0.0040272484,-0.010276008,-0.04139538,0.005614476,-0.0058694035,0.025517035,0.012157616,-0.042317975,0.029061742,0.021778097,-0.019204542,0.004206305,-0.0021350184,-0.008109124,-0.038142018,-0.028333377,0.0032624658,-0.0031683852,-0.051519644,0.016485315,0.038991775,-0.009729735,-0.004439988,0.019605143,0.02358687,0.023538312,0.009347344,0.0035932646,0.02971727,0.05103407,-0.036126878,0.00048216208,-0.003772321,0.00052085647,0.0062942826,0.017869208,0.023477614,0.0040029697,-0.0016555117,0.03255789,0.009092417,-0.008436888,0.025468476,0.027969195,0.005763184,-0.027507897,-0.0015530854,-0.0031744551,0.04030283,-0.002981742,0.056375407,0.016813079,-0.016922334,0.032533612,0.0046493933,-0.015259235,0.019932907,0.02602689,0.011319998,-0.00963262,-0.009274507,0.00097570487,0.024339512,-0.016837358,0.008327633,-0.011793435,0.009043858,0.007210808,-0.0029407714,0.0045188945,0.00027408506,0.014385198,0.039404515,0.03605404,0.03379611,0.04712518,0.013620415,0.033626158,0.028576165,-0.027774964,0.004631184,0.004075806,-0.05962877,-0.026682418,0.00235808,-0.008309425,-0.007113693,-0.010415612,0.01864613,0.055355698,-0.004755613,0.026124004,0.005939205,-0.035180002,0.0012018014,-0.013244093,0.030178567,0.007004438,-0.009055998,0.012952748,0.014712961,0.0055841273,-0.024691556,0.011137906,0.026900927,-0.019216683,-0.004770787,-0.01661885,-0.06851482,0.048242006,0.012794935,0.010124266,0.020175695,-0.0033929644,-0.003153211,0.020867642,0.027483618,0.015659835,-0.0033140583,-0.015222817,0.0088678375,-0.037049472,0.021280382,-0.0038967498,0.023987468,0.0030227124,-0.0041547124,-0.031052604,0.005550744,-0.016837358,0.0008065119,-0.0106037725,0.04222086,0.028867511,0.012843493,0.0059027867,-0.01148388,0.016218249,0.033674717,0.03809346,-0.009547644,-0.0058056717,0.02787208,-0.033310533,-0.02070983,0.0051106904,-0.03255789,0.020187834,-0.04120115,0.032752123,-0.0071561807,0.031441066,-0.011241091,0.0067677195,0.019192403,-0.006907323,0.006330701,0.05103407,-0.0066523952,0.0063367705,-0.01636392,-0.009122765,-0.009990732,-0.011356415,0.027993474,-0.020187834,-0.008643258,-0.029207414,-0.016582431,-0.016958753,-0.040861245,-0.02558987,0.01311056,-0.011659901,0.0073625506,0.031392507,0.0077934996,-0.0007936138,-0.0040484923,0.02009072,0.0413711,0.05943454,0.017298656,0.0073018535,0.017104425,0.020042162,0.0055203955,0.049043205,-0.0015128737,-0.017881347,0.011150045,-0.0426336,0.0088678375,0.04552278,-0.024460906,-0.014579428,0.03156246,0.023683984,0.014652265,0.005019645,0.006579559,-0.008449027,0.0055537787,0.012048362,-0.03178097,0.00717439,-0.019823652,-0.008588631,0.0065188617,-0.038967498,-0.010591633,0.047974937,0.019799374,0.015137841,0.011738807,-0.045498498,0.0025568628,0.010002872,-0.011137906,-0.0061304006,-0.0372437,0.015878346,-0.025007179,-0.014627986,0.020151416,-0.015271375,-0.0055203955,0.031416785,0.03872471,-0.0016615813,0.019799374,-0.03258217,0.06317347,-0.020467041,0.024934342,0.017456468,0.008673606,-0.044163164,-0.008212309,0.02908602,0.020345647,0.011975526,0.009074207,0.011222882,0.0012996753,-0.00091652526,0.009881478,-0.018148415,-0.025007179,-0.00061304006,0.028794674,-0.01065233,0.024910064,0.015198538,-0.062347997,-0.0029620153,0.012977026,-0.009310925,0.023817517,-0.016497456,-0.013122699,-0.0013603723,0.021450333,0.0022215117,0.0057115913,-0.060794152,-0.020017883,0.0059999023,-0.044236,0.017942045,-0.0024218117,0.0090317195,-0.002579624,-0.009735805,0.006907323,0.025468476,-0.033917505,0.010876909,0.0188525,0.00941411,-0.012588565,-0.029134577,0.00481024,0.031465344,-0.0056569637,-0.006573489,-0.015137841,0.008103054,0.028916068,-0.011465671,-0.003745007,-0.020989036,0.062153768,-0.014373058,0.008558283,0.0025735544,0.0024961657,0.034500197,0.025274247,-0.013146978,-0.0077267326,-0.0014703857,-0.013559718,-0.002397533,-0.021450333,0.0067252317,0.030154288,-0.01189662,-0.030615585,0.02232437,-0.043337684,0.014591568,0.015283514,0.012479311,-0.0022806912,-0.027580734,0.025832659,-0.015611278,0.029474482,0.015671976,0.0047859615,0.00026744633,-0.015550581,-0.0483634,0.022797808,-0.022482183,0.021061871,-0.034136012,-0.009171322,0.00011968697,0.015198538,-0.011404973,-0.0110347215,0.024412349,0.025031459,0.016946612,0.03729226,-0.0026843264,-0.024363792,0.0046372535,-0.017529305,-0.012697821,0.019580863,-0.0066706045,-0.017310794,-0.0032655005,0.0031683852,-0.04071557,-0.009505156,0.004100085,-0.016436758,-0.003110723,-0.036345385,0.025565593,-0.036758125,-0.031586736,0.007945242]},{"id":"guide-discord-js-compatibility-2","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: guild.members.me\nguild.members.me returns the bot's GuildMember in that guild. Use guild.members.fetchMe() to load it when not cached. Same as Discord.js.\n\n```javascript\nconst me = guild.members.me ?? await guild.members.fetchMe();\nif (me?.permissions.has(PermissionFlags.BanMembers)) {\n await message.reply('I can ban members here.');\n}\n```","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.006123083,-0.0034042948,0.016765863,0.0044064126,-0.0044964575,0.027164647,-0.051401366,0.014384017,0.015023049,0.007284959,0.0050134924,-0.002956973,0.024027582,-0.0033026307,0.008202841,0.020367676,-0.051122516,0.012920055,0.00010847196,0.016940143,0.03850455,0.06985195,0.009957272,0.025096508,-0.003991042,-0.018160112,-0.027559685,0.024190245,-0.01230426,-0.043779463,-0.010288406,-0.019821594,0.004749166,0.018438963,-0.022424195,-0.004940875,0.044964578,-0.004374461,-0.0073081963,0.002852404,-0.033624675,-0.013082717,-0.028930698,-0.018264681,-0.014023836,-0.006704021,-0.01613845,0.008958059,0.014442111,0.05846557,-0.04438364,0.01967055,0.0051877736,0.075336,-0.009597091,-0.016103594,-0.021146132,-0.017916119,-0.029232785,0.021506313,-0.021622501,0.0033055355,-0.029976385,0.018764287,0.000251074,0.026723133,0.003375248,-0.006872493,0.011711704,0.009114913,0.03225366,0.017033093,0.017474607,-0.035832237,-0.040502977,-0.012606348,0.024190245,0.0041275625,-0.0008060511,-0.027815297,0.011264382,0.024190245,-0.08188897,-0.023783589,-0.002848047,0.0019621172,0.00405204,-0.028372997,0.06260184,-0.021273939,0.01007346,-0.056792468,-0.0788681,-0.005350436,0.026606947,-0.018729432,-0.017311944,-0.033857048,-0.015139236,0.06571567,0.08523518,-0.004188561,-0.06394962,-0.050146542,0.046405304,-0.009329859,0.00951576,0.0195776,-0.098062284,0.039294627,-0.03123121,0.05976687,0.040665638,0.012385592,-0.028047672,-0.017834786,0.031951573,0.007935609,-0.0012163382,-0.025166221,-0.048148114,0.019321987,0.016661294,-0.051401366,0.016940143,-0.025235934,-0.026235146,-0.05098309,-0.043872416,-0.015499418,0.00029137655,-0.019902926,0.045475803,0.005423053,-0.039550237,-0.0118337,-0.010939057,-0.045104,-0.020774331,-0.0024196054,0.005277819,-0.011479328,0.016487012,0.0069247773,-0.04930999,0.00041500735,-0.06353135,-0.034554172,-0.07779918,-0.016823955,-0.062044144,-0.024167009,-0.024747945,-0.03085941,-0.03931786,0.005103538,-0.0141748795,-0.022296388,-0.033508487,-0.033949997,-0.019426556,-0.057396643,-0.0010711038,-0.006547168,-0.00736629,0.005295247,-0.002885808,-0.020855663,-0.021773545,0.046730626,0.02525917,-0.0020202107,-0.0016716482,-0.04735804,0.012850341,-0.012211311,-0.022238296,-0.01211836,-0.00661688,-0.013663654,0.012827104,-0.017311944,0.005510194,-0.020553576,-0.02200592,-0.018903712,0.0021015422,-0.0019301655,-0.012617967,0.002606958,0.012188072,0.055584118,0.002522722,-0.0022859897,0.08040178,-0.0074360026,0.05177317,0.0010652945,0.014232974,-0.037272964,-0.016324349,0.034716837,0.032207187,-0.024004346,-0.00090916746,-0.004197275,0.023249127,-0.023411788,0.012141597,0.03178891,0.0043134624,-0.046498254,0.018775906,0.005045444,-0.031347398,-0.050750718,-0.08793073,0.026118958,-0.036250513,0.007122296,-0.07728795,0.029093359,0.0662269,0.046265878,0.0058413283,-0.0013158239,0.06450732,-0.023795208,-0.010503354,0.0398988,0.025468308,-0.023655783,-0.03555339,-0.044453353,0.014697724,0.020669764,0.01620816,0.06497207,0.011206288,-0.004232131,-0.013663654,0.00475207,0.013117573,0.019229038,0.021587644,-0.05790787,-0.0018778811,-0.02711817,0.040061463,0.04482515,0.012234548,0.046684153,0.05391102,-0.016707769,-0.020367676,-0.010671825,-0.03569281,0.06171882,0.03236985,0.010561448,-0.054654617,0.036970876,0.004531314,0.00024235994,-0.06106817,0.0066633555,-0.0056525236,0.009242719,-0.0066343085,0.033322588,0.04577789,0.0022278961,0.06348487,-0.017741837,-0.02955811,0.0005159453,0.009846894,0.036599074,-0.022180201,-0.013547467,-0.022877326,-0.009904987,-0.00031043857,-0.005181964,0.0006644475,0.026978746,-0.0214366,-0.014523442,0.013315092,0.042571113,-0.036180798,-0.0139541235,0.009817847,-0.0058122817,0.04940294,0.019995876,0.056374192,-0.003906806,0.06218357,0.034112662,-0.03801656,-0.0053940066,0.015673699,-0.025073271,0.002675218,0.011583897,-0.016533487,0.035088636,-0.030696748,-0.02711817,0.00503673,0.0056815706,-0.030789698,0.036784973,-0.058326144,-0.014418874,0.020297963,0.031928334,0.048519917,0.025166221,0.045940552,0.0129665295,0.0021175179,-0.024445858,-0.007598665,-0.004847925,-0.011705894,-0.041176863,0.023225889,0.030929122,0.059069745,0.029883435,-0.009283384,0.022517145,0.019136088,0.03234661,-0.0019592124,0.007976275,0.0045661703,0.025607733,0.015894456,0.020193394,-0.02767587,-0.013454517,-0.0027216931,-0.04261759,-0.019263893,0.02649076,-0.018764287,-0.011316666,-0.005995277,0.016068736,-0.014697724,-0.0825861,0.019740263,-0.028419472,-0.005977849,0.007976275,0.033996474,0.0006332221,-0.066505745,-0.0027943102,-0.027629396,0.013721748,0.005762902,0.018775906,-0.016359206,-0.024469096,0.061021697,0.00058965175,-0.036018137,0.01118886,-0.023934633,-0.005045444,0.008092462,0.021924589,-0.008679209,0.01651025,-0.0080576055,0.05391102,-0.010834488,-0.0044238404,0.013896029,-0.061114646,0.004014279,-0.0077961837,-0.017648887,0.0022976086,-0.016986618,-0.00085034757,0.045940552,0.039410815,-0.008824443,-0.053864542,-0.04054945,0.003953281,0.042989388,0.013094336,0.0027245977,-0.03236985,0.0438027,0.031858623,0.013280235,-0.010218694,-0.0041914657,0.01649863,-0.015847981,0.007569618,0.0058936127,-0.03206776,0.0231097,0.002046353,0.01929875,-0.061207596,0.04930999,-0.016905287,0.06367077,-0.01687043,0.051866118,-0.000023555209,-0.031603012,-0.048705816,0.0012192429,-0.009277575,0.0197635,-0.0019374272,0.012153217,-0.0053940066,0.046684153,-0.04940294,-0.10094374,-0.018090399,0.014581536,-0.017695362,0.00050069566,-0.018671338,0.043221764,-0.017939355,-0.023260744,0.0026389095,0.02367902,-0.03429856,-0.037621524,-0.015139236,0.0020812093,0.011427044,0.028442709,-0.06817885,0.028675085,0.039596714,0.009446047,-0.008446834,0.04261759,0.016928524,-0.026537234,0.014070311,-0.023934633,0.021320414,0.012002173,-0.027001984,-0.025003558,-0.00745924,-0.02525917,0.015801506,-0.01949627,0.019821594,0.0058500427,0.035204824,0.036389936,0.010369738,0.0008801206,0.0065297396,0.047729842,0.006123083,-0.0101606,-0.0070235366,0.017974213,-0.004903114,0.0017515272,0.046939764,0.018822381,0.02816386,-0.017451368,-0.028512422,0.032927547,0.018857237,0.031091785,-0.0028654751,-0.014186499,0.033624675,-0.057210743,0.0063845054,0.04038679,-0.011026197,0.03218395,0.011537422,0.014755817,-0.046963003,0.012606348,0.015836362,-0.029488398,-0.05530527,-0.04487163,0.060278095,-0.032927547,-0.0052371533,-0.03218395,-0.02414377,0.012536636,0.022644952,-0.021889731,0.005948802,0.0056902845,-0.017370038,0.009893369,0.014976574,-0.04680034,-0.014140024,-0.018903712,0.020507101,0.034925975,0.029790485,0.01903152,-0.028582135,-0.005434672,-0.00038196653,0.02116937,-0.03801656,0.014279448,0.049170565,0.02767587,-0.008992915,0.04763689,-0.0053940066,-0.022633333,-0.05172669,-0.021053182,0.00016420567,0.018102018,-0.051076043,0.00272605,0.020007495,-0.016545106,-0.0005464445,-0.026328096,0.012792248,-0.025677446,0.04147895,-0.0043831747,-0.016916906,0.0007051131,-0.025630971,0.0012359449,-0.0068027806,-0.03448446,-0.018810762,0.016823955,-0.018090399,-0.0006045383,-0.0011502566,0.01267606,0.00004838122,0.012083504,0.019809974,-0.014476967,-0.006256699,0.020286344,0.021029944,0.016614817,0.0026635993,0.030162284,0.024933845,-0.014023836,-0.0029526157,0.009417,-0.009080056,-0.0013993337,0.043384425,-0.008243506,0.011641991,0.009056819,-0.023318838,0.029976385,0.0121996915,-0.0374821,-0.0037180013,-0.039364338,0.008795396,-0.005585716,0.015429705,-0.013082717,-0.013036242,-0.009591281,0.004139181,0.036041375,-0.007854277,-0.019519506,0.0034420558,-0.06134702,0.015452943,0.031440347,0.0052981516,-0.0009287741,-0.012037029,0.025979534,-0.019159324,0.041711327,0.009480903,0.0021320414,-0.0045516468,-0.007319815,-0.008731494,-0.0219943,-0.054282818,-0.0363667,-0.015348374,-0.027280834,-0.01006765,0.025863346,0.016521867,0.021750307,-0.027885009,0.04110715,0.0073314337,0.022598477,0.028442709,0.0048072594,0.009928226,-0.0084991185,-0.04503429,-0.010207076,-0.022888945,0.008313218,-0.037412386,-0.011310857,-0.021111276,0.022029158,0.017869644,0.03889959,-0.014651248,0.030766461,-0.0019722835,0.019775119,-0.020971851,0.0025459595,-0.024352908,0.01091001,-0.004644597,-0.011909222,-0.009300812,-0.027466735,-0.0075928555,-0.026258383,-0.023527976,0.01900828,-0.026653422,-0.014883623,0.03555339,-0.032137472,-0.0021799686,-0.031207973,0.016928524,0.0030005432,0.016161686,-0.026444284,-0.0058790892,-0.01473258,0.033345822,-0.024840895,0.026118958,0.0032154901,0.013593942,0.018427344,-0.027745584,0.048705816,-0.016661294,-0.031068549,-0.025584497,-0.019856451,0.025607733,-0.009829465,-0.0022220868,-0.020751094,-0.008754731,0.058140244,0.002670861,0.034716837,0.0024210578,-0.023934633,-0.023760352,-0.0025154601,-0.0029206641,0.04607998,-0.0035872902,0.002163993,-0.00053337344,0.007900753,0.016893668,0.00030027216,-0.03927139,0.0056815706,0.007906562,0.0009374882,-0.005045444,-0.011037816,-0.008632734,0.051261943,0.014198117,0.005983658,-0.0335782,-0.06246242,0.039875563,-0.07361642,0.03039466,0.00032532512,0.0020754,-0.0031022073,-0.027327308,0.030719984,-0.0094286185,0.008737303,0.022795996,-0.024654996,0.010660207,-0.010544019,0.0024108915,0.011775607,0.025050033,-0.02359769,0.0033549152,-0.027489971,0.017509462,0.006192796,-0.008011131,0.014593155,0.024538808,0.015150855,0.023458265,-0.03683145,-0.03457741,0.017207375,0.025026796,-0.0032329182,-0.0425014,-0.026444284,0.0048711626,-0.0021058992,0.009393763,0.013628799,0.0118453195,-0.034972448,0.006535549,-0.04642854,0.009161388,-0.0049147326,0.0004662025,0.0011647801,0.0021393031,-0.035274535,0.05502642,-0.005678666,0.021401744,-0.0029293783,0.05985982,-0.021390125,0.015267042,-0.04596379,-0.023272363,0.0014000598,-0.023086464,-0.010555638,0.009660994,0.021924589,-0.0140122175,0.059720393,-0.0037731903,-0.04271054,0.028396234,0.008504928,-0.0023237509,-0.02525917,0.022772757,0.020576812,0.0073023867,-0.008121509,-0.01789288,-0.021006707,-0.009835275,-0.0044877436,-0.013210523,-0.019519506,0.010375547,-0.035739288,0.04326824,-0.030185523,0.01063116,0.02172707,-0.08207488,-0.03578576,0.038713686,-0.00950414,-0.0033781526,0.046010267,-0.00056096795,0.030905886,-0.009620328,-0.031533297,-0.0131872855,-0.027838534,0.021796782,-0.00054499216,0.045754652,0.0023658688,-0.016289493,0.017393274,0.030882647,-0.014546679,-0.013140811,-0.019775119,-0.029418685,0.007953037,0.01621978,0.000050151262,-0.0006310436,-0.02937221,0.023005133,0.0034042948,0.014523442,0.01855515,-0.014128405,-0.0096029,-0.028489184,-0.00069458364,0.018485438,-0.05098309,0.01566208,-0.07189685,-0.0005228439,0.005025111,-0.031440347,-0.027187884,0.0063089835,0.03927139,0.012757392,0.0186481,-0.020483863,-0.022319626,-0.021703832,0.0070874398,0.030719984,0.025468308,-0.008266743,-0.026932271,-0.05200554,0.05846557,-0.013047861,-0.0069770617,0.056792468,-0.014906861,0.019380081,-0.0033171542,0.023272363,0.013547467,-0.03216071,-0.021413364,0.004586503,0.025189457,-0.01380308,0.017265469,0.037412386,0.0203212,0.016440537,0.040595926,-0.020530337,0.0079239905,-0.009039391,0.0016237209,0.0011306499,0.021889731,0.023934633,0.019542744,0.016057117,-0.013768223,-0.005678666,0.012315879,-0.0121996915,-0.024190245,0.05716427,0.023539595,0.0017994544,0.023760352,-0.014384017,-0.018113637,-0.024259958,-0.0038980918,0.05735017,-0.024631757,0.011450282,-0.0075173336,0.005948802,-0.015243805,0.01519733,-0.030510848,-0.013500992,-0.014755817,-0.0034275323,-0.020844044,0.00030154298,0.03708706,-0.03199805,-0.02769911,-0.017869644,0.011229525,0.036296986,0.010358119,0.022052394,0.0046649296,0.0072210557,-0.0057541877,0.007319815,-0.026281621,0.010108315,0.011136576,-0.008510737,0.002185778,0.00067098305,0.04389565,-0.019751882,0.0102535505,0.023260744,-0.004374461,0.015452943,-0.012071885,0.048798766,0.00661688,-0.034019712,0.017648887,-0.0035321012,0.025886584,-0.05079719,0.026792847,0.01724223,0.016289493,0.03206776,0.0043570325,0.0026592424,0.029209547,0.053399794,-0.027768822,-0.012269404,0.012083504,-0.0052342485,0.06041752,-0.020425769,0.027745584,-0.00978299,0.00970166,-0.007122296,0.018229825,0.017474607,-0.023156177,-0.036250513,0.009068437,0.0012991219,0.007465049,-0.025282409,0.0319051,0.008696637,-0.014988192,0.024352908,0.011769798,0.03578576,0.041014202,0.0645538,-0.018020688,0.032671936,0.0029511636,0.011444473,0.010305835,-0.0177186,0.0417578,0.021924589,-0.0092659565,0.016068736,-0.037458863,0.0051122517,0.008359693,0.0065239305,0.019879688,0.029070122,0.005068681,0.017451368,-0.034461223,0.0070583927,0.012873579,-0.01295491,0.0020405436,0.0203212,0.008958059,0.015836362,-0.0059604207,0.0034449606,0.007610284,-0.0045719794,0.0130246235,0.008522356,0.033857048,-0.02191297,0.011223717,0.015081142,-0.008167984,0.009114913,0.0073140054,0.0042001796,-0.022482289,0.0047055953,-0.0064948834,-0.021599263,0.028280048,-0.0024747946,0.027536446,-0.017544318,0.024445858,-0.038155988,0.00091788155,-0.048845243,-0.0064832647,0.0052081062,-0.017195756,-0.0088593,0.02014692,0.03132416,-0.0135707045,0.02649076,0.024352908,0.0051790597,0.021239081,0.029441923,-0.0094576655,0.005995277,-0.018531913,-0.00391552,-0.019043138,0.012699298,0.023748733,0.014790674,0.027745584,0.01651025,0.022888945,0.00016465953,-0.021750307,0.015220568,0.0033171542,-0.019077994,0.034112662,0.019217419,-0.027373783,-0.008487499,-0.00032387275,-0.029697536,-0.015255424,-0.0008176698,0.021947825,-0.007720662,-0.02946516,0.025933059,-0.0014988192,0.013256998,0.014430492,-0.015859598,0.012780629,-0.005547955,-0.009730706,-0.0068202084,-0.0109042,0.015999025,0.009631947,-0.022133727,-0.038713686,-0.016638055,0.0417578,-0.03457741,-0.03130092,0.005995277,-0.021599263,0.02704846,0.006547168,0.010968104,0.013361567,-0.0012112551,-0.032578986,0.020844044,-0.014744199,-0.027815297,-0.02004235,0.026885796,0.024422621,-0.07728795,-0.0022046585,-0.025584497,0.003244537,-0.000033403918,-0.010003747,0.013303474,0.0058936127,0.008406169,-0.008818634,0.012710917,0.030882647,0.010509163,-0.00802275,-0.0064658364,0.014279448,0.008696637,-0.016545106,0.013164048,0.018299537,0.01380308,-0.027954722,-0.0049089235,0.025003558,0.017486224,-0.012629585,0.015685318,0.0070235366,0.015371611,-0.017916119,-0.016707769,-0.011572279,-0.0032881072,-0.005510194,-0.02983696,-0.06274127,-0.020774331,0.011084291,0.025538022,-0.0028741893,-0.0060359426,0.0055072894,0.0037906184,0.0027580017,-0.016487012,0.020925377,0.05651362,-0.009655184,0.00550148,0.009573854,0.062044144,0.015511036,0.0061869863,0.026165433,0.031440347,0.019449795,0.0028088337,-0.00081694365,0.020844044,-0.00087285886,-0.0013811793,0.016440537,0.017207375,-0.010218694,-0.022145344,-0.026211908,-0.037714474,0.032486036,0.01733518,0.02470147,-0.005353341,-0.003776095,0.020414151,0.0354372,0.0054956707,-0.029999623,0.02955811,0.0016774576,-0.014767436,0.0022264437,-0.0031196354,0.016068736,-0.01295491,-0.013652036,-0.03123121,-0.021936208,-0.014000598,0.000044500735,0.030975597,-0.03002286,0.042385213,0.0017631459,0.00034130088,-0.00046148238,0.0067156395,-0.01043945,-0.017521081,-0.0021828734,-0.030905886,-0.0018880476,-0.037040588,0.009358906,0.022203438,0.0030324948,0.0005747652,0.0116245635,0.012164835,0.04366328,0.013140811,0.0060010864,0.019937782,0.04810164,-0.030929122,-0.04382594,0.0036221466,-0.0020318297,0.0005435398,-0.000018948554,0.008568831,0.0035814808,-0.007354671,0.024654996,0.009196243,-0.01659158,0.018915331,0.009568044,-0.016719386,-0.0402706,-0.0030179713,0.020181775,0.023376932,0.013198905,0.029767247,0.0053097703,-0.02872156,0.03880664,-0.019844832,-0.014163261,0.045731414,0.026095722,0.015139236,-0.001767503,-0.005062872,0.017776694,0.023086464,-0.014476967,-0.015580749,-0.01956598,-0.008330647,-0.0009120722,-0.004612645,0.026653422,0.025026796,-0.035762526,0.018311156,0.040990964,0.04540609,0.010189647,-0.0016222685,0.011793035,-0.0067446865,-0.012408829,-0.01081706,-0.0067446865,-0.023795208,-0.022447433,0.0042757015,-0.010776394,0.0029889245,-0.012629585,0.043198526,0.081842504,-0.016533487,0.014953336,0.013605561,-0.030789698,-0.007186199,-0.018613243,0.02600277,0.02470147,-0.02767587,0.014128405,0.010340691,-0.0077729463,-0.013535848,0.011113338,0.0032822979,-0.031277686,-0.02862861,-0.034925975,-0.026444284,0.04763689,0.0050890143,-0.025514783,0.014616393,-0.016475393,-0.024654996,-0.0035204825,0.0024994845,0.022633333,-0.025235934,0.0131291915,0.014930098,-0.029116597,-0.004403508,-0.026095722,0.0058209957,-0.012571491,-0.02704846,-0.040595926,0.015987406,-0.022273151,-0.027885009,-0.0036134324,0.037412386,-0.0103871655,0.0011887437,0.011514185,-0.044267453,0.017927738,0.0005729498,0.030603798,-0.0016643865,-0.021587644,0.01473258,-0.06125407,-0.042176075,-0.006210224,-0.046660915,-0.015824743,-0.024817659,0.0098410845,0.0012039933,0.0011705895,0.009986319,-0.031858623,0.038434837,-0.017521081,0.0012141598,0.0203212,-0.004998969,-0.0011952793,-0.008719875,-0.02395787,-0.00950414,-0.021657357,0.012432067,-0.03801656,0.007610284,-0.014325923,-0.032462798,-0.04373299,-0.025050033,0.0049757315,0.013617179,0.010340691,-0.0014087739,0.028187096,-0.0064251707,-0.012315879,-0.0058878036,0.0195776,0.034112662,0.053492744,0.010085078,0.0020957328,0.017950974,-0.0044412687,-0.005362055,0.03309021,-0.041734565,0.013768223,-0.0058994223,-0.054282818,-0.022633333,0.016254637,-0.0063089835,-0.035669573,0.014999812,-0.015917692,0.0186481,0.00031842646,-0.0186481,0.01230426,-0.01380308,-0.0023644164,-0.04278025,0.0045981216,-0.004885686,-0.011368951,0.014976574,-0.026909035,-0.0004716488,0.045452565,0.009475093,0.020077206,-0.0026592424,-0.027931483,0.0051964875,0.0040636593,-0.0044325544,-0.009248528,-0.028837748,0.0033171542,-0.03206776,-0.011055244,0.028047672,-0.005269105,-0.007947228,-0.0016062927,0.029395448,0.0179045,0.004020089,-0.03485626,0.035483673,0.004484839,0.023435026,0.030069334,-0.003468198,-0.020297963,-0.017509462,-0.00027649003,0.0005337365,0.0056931893,0.015185711,0.011124956,0.006041752,-0.0009004534,0.010305835,-0.026072484,-0.015371611,0.023888158,0.031742435,0.0015191521,-0.015789887,-0.006721449,-0.030603798,0.0016048404,-0.0040578498,-0.0011734942,0.012978148,-0.015975786,-0.008551403,0.0065936428,0.025421834,-0.0012272309,0.03151006,-0.009190435,-0.021947825,-0.0045603607,-0.04233874,-0.0030644464,-0.003505959,-0.011810463,-0.009631947,-0.004118848,0.030557323,0.053771593,-0.003020876,0.025235934,0.023156177,0.017823169,0.0072036274,-0.008679209,0.017288705,0.016545106,0.040595926,0.0051209657,0.035065398,0.0091032935,0.035088636,-0.019926162,0.009469285,-0.023144558,0.01835763,0.01491848,-0.0034565793,0.015278662,-0.006692402,0.025793634,0.004176942,0.009347287,-0.0068841116,0.014035455,0.01967055,0.012002173,-0.009875941,-0.015789887,0.012722535,-0.027652634,-0.03787714,0.005661238,-0.0016164591,-0.02584011,0.016835574,0.023005133,0.019136088,-0.041943703,0.017393274,-0.025398595,0.021413364,-0.007499906,-0.012071885,-0.010898391,-0.031347398,-0.024190245,0.003020876,-0.029139835,0.059720393,-0.016289493,-0.031184735,-0.0007966108,-0.021564407,0.024167009,-0.01900828,0.016649675,0.003020876,-0.00079225376,0.000006461797,0.0014959145,-0.02955811,-0.021982683,-0.031835385,-0.040665638,-0.020867283,-0.0030353994,0.013361567,0.0075463806,0.015638843,-0.053213894,-0.01053821,0.015987406,-0.011978935,0.0010943414,-0.016812338,0.01687043,0.008609497,-0.018857237,0.007982084]},{"id":"guide-discord-js-compatibility-3","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: Other parity\nclient.channels.cache and client.guilds.cache are compatibility aliases. Collection extends Map with find(), filter(), etc. See the API reference for full details.","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.012688876,-0.013227346,0.024313483,0.0071711475,0.03159866,0.04670115,-0.024262805,0.0052168197,-0.013607442,-0.036970686,0.0337272,-0.014215596,0.021133346,0.035095543,-0.011624607,0.02756964,-0.032967005,-0.0072281617,0.0031294583,0.03560234,0.017319715,0.0515157,0.02868459,0.041607857,-0.009559418,-0.035222244,-0.018016558,0.059801795,-0.002899817,-0.038820487,0.007963014,-0.027341582,0.045231443,0.053010743,-0.0069430894,0.002066773,0.03550098,-0.0019083994,0.004488302,-0.0061575575,0.0037756218,0.010515993,-0.0038833157,-0.043077562,-0.007506899,0.0045738234,-0.019346895,-0.0035190568,-0.03762952,0.03327108,-0.026708089,0.036767967,-0.031167883,0.01780117,0.007297846,-0.015444573,-0.02870993,-0.025770519,-0.0073675304,0.010744051,0.014266276,0.018612042,-0.049741916,-0.004089201,-0.009115973,0.041633196,-0.018345974,-0.009933179,0.008121388,0.014671711,0.022881787,0.0068544005,-0.0147857405,-0.051388998,-0.028380513,0.024351493,0.011415554,0.026023917,0.028988667,-0.01132053,-0.039301943,0.018269954,-0.06730236,-0.030762449,-0.019549612,-0.015026468,0.01982835,0.0025640652,0.031852055,0.022438342,-0.0072408314,-0.024946976,-0.093858406,0.0032324009,0.0471826,-0.054125693,0.021348733,-0.010142232,-0.04812017,0.036945347,0.07966815,-0.009489734,-0.06345072,-0.0019923374,0.06613673,-0.010712377,-0.020107087,-0.005748954,-0.08063106,0.015571272,-0.08362115,0.026834788,-0.01379749,0.0018783085,-0.00781731,-0.021576792,0.045636877,0.00034960927,0.002488046,-0.009768471,-0.043635037,0.0048082164,0.051617056,-0.03352448,-0.00011927496,-0.031243904,0.0176618,-0.05240259,-0.051693074,-0.026353333,0.028963326,0.015495253,0.052554626,0.028735269,-0.030179635,-0.027366923,-0.051008902,-0.026910808,-0.0375535,-0.025909888,0.0115739275,-0.033043023,0.053618897,0.0071394728,-0.027265564,0.009001943,-0.0473093,-0.017522432,-0.046625126,-0.0013224179,-0.030458372,-0.022336984,-0.031294584,0.010186576,-0.06618741,0.003506387,0.008336776,-0.0043014213,-0.022362323,-0.03157332,-0.042520087,-0.014291615,-0.0111051425,-0.007925005,-0.00980648,-0.01866272,-0.020778589,0.004570656,-0.023413923,0.044521928,0.0412531,-0.014392974,-0.05792665,0.013163997,0.006974764,-0.044800665,-0.020575872,-0.020993978,-0.021918878,-0.015926028,0.026251974,0.016065396,0.024402173,-0.024022076,-0.035019524,0.01685093,-0.006113213,-0.037882917,0.0032593245,0.0037914591,-0.0035032195,0.038034953,0.0006833812,0.043660376,0.04540882,-0.030686429,0.03869379,-0.0063666105,-0.012074388,-0.023008486,-0.04647309,0.022134265,0.028557891,-0.014342295,-0.027493622,-0.022413002,0.041759897,-0.020816598,0.0059104953,-0.028836628,0.014963118,0.020069076,-0.009686117,0.020069076,-0.02764566,-0.057825293,-0.079414755,-0.0010310108,-0.044927366,0.027138865,-0.049843274,0.018840099,0.037958935,0.04809483,-0.014139577,0.013556763,0.05131298,-0.038997866,0.025504451,0.042824164,0.01979034,0.0077476264,-0.016939618,-0.024326153,-0.0006160725,-0.030990506,0.015051807,0.044952706,0.0029900896,0.02366732,-0.040036794,-0.0019384903,-0.005435375,0.035424963,0.018231945,-0.021475432,-0.013468074,-0.028000416,0.045890275,0.020905288,0.012511498,0.006784716,0.019511603,0.007906,-0.014012878,0.0017104327,0.0187134,0.018852768,-0.01678758,0.021209365,-0.06603537,0.016103407,0.016812919,-0.0028412186,-0.07799573,0.029976916,-0.0019194855,-0.0022251462,-0.055544715,0.0024437015,0.06608605,0.026150614,0.07292778,-0.066795565,-0.013328705,0.0025799025,0.0047765416,0.05407501,-0.0112318415,0.001803873,-0.046016973,-0.014570353,0.035577,0.026885467,0.041734558,0.026860127,0.0246429,0.016483502,0.007088793,0.021500772,-0.013252686,0.0066390126,-0.036565248,0.03375254,0.01786452,0.05123696,0.04634639,-0.0064077876,0.054784525,0.011960358,0.0057774615,-0.013974869,-0.01867539,-0.013062637,0.04046757,0.011466234,-0.005137633,0.025352413,-0.020335143,-0.011630942,0.048626967,0.009255341,-0.07014041,-0.008197407,-0.05225055,-0.0005384695,0.0078489855,-0.0053055086,0.06927886,0.006227242,0.001583734,-0.048221532,0.01132053,0.007899665,0.0010698123,-0.0051946472,-0.024275474,-0.073535934,0.018396653,0.013062637,0.07378933,-0.028937986,0.010528663,0.042697467,-0.023540622,-0.012562178,-0.00208261,0.027442941,-0.03233351,-0.01981568,0.0049000727,-0.034031276,-0.034031276,0.006087873,0.016356803,-0.020892618,-0.012973948,0.0095404135,-0.032840308,-0.013062637,-0.026049256,-0.024908967,-0.04513008,-0.04814551,0.0010721879,0.0070444485,-0.005565241,-0.03747748,0.012087057,0.048677646,-0.017345054,0.015685301,-0.025935227,0.021095335,0.010249926,0.0007831564,-0.03043303,-0.01777583,0.02555513,-0.0437364,-0.009299686,0.0062114047,-0.029318083,-0.007304181,-0.0015188009,0.05605151,-0.024262805,0.02085461,0.005726782,0.01683826,-0.003553899,-0.013202006,0.02362931,-0.022818439,0.04551018,-0.0018862272,-0.06340004,0.00086471875,-0.042089313,-0.002530807,0.03950466,-0.0029853384,0.002237816,-0.0005321346,-0.043939114,0.012391134,0.030052936,0.0016185761,0.014608362,-0.009103303,0.031801376,0.049691238,-0.01571064,0.026784109,-0.01477307,0.029292744,-0.0056856046,0.024503531,0.025441103,-0.0014483246,0.041025043,-0.013214676,0.028836628,-0.035146225,0.026936147,-0.05214919,-0.0030851138,-0.02870993,0.004589661,0.012220091,0.037046704,-0.05351754,-0.025947897,-0.040822327,-0.0035222243,0.022235624,0.021298055,-0.03623583,0.008172067,-0.05736918,-0.08873978,0.010731381,0.06208237,0.012302445,0.015444573,-0.019144176,0.034892827,-0.020968636,-0.019283544,0.0063127633,-0.009996529,-0.0039213253,-0.034740787,0.004494637,-0.05625423,0.023870038,0.028355172,-0.055696756,-0.013962198,0.0067403717,-0.018257285,-0.0013683462,-0.010851745,0.03871913,-0.04647309,-0.012011038,-0.007082458,0.033980597,-0.0034652099,-0.029064685,0.027949737,0.000019450232,-0.07439749,0.047638718,0.046016973,0.0034747124,0.0074562193,0.026175955,0.022020238,-0.018979467,0.019448252,0.02170349,0.036970686,-0.017040977,-0.030103615,-0.0027984579,0.016432824,0.03469011,0.035272922,0.004380608,0.024313483,-0.03278963,0.0072471667,0.012023708,0.014367634,0.06882274,0.015558602,-0.008666192,-0.014076227,0.0083557805,-0.06476838,0.045839597,0.0114472285,-0.013696131,-0.03043303,-0.00104764,-0.008070708,-0.02762032,0.026885467,0.031852055,0.0038706458,-0.04234271,-0.024794938,0.07110332,0.0051724752,0.04153184,-0.015457244,-0.008799226,0.008818231,0.026404012,0.0015069229,-0.023756009,-0.033068366,0.0013715136,-0.0032466545,-0.017231025,-0.035450302,-0.021095335,-0.012093392,-0.005939002,0.014963118,0.009172987,0.029064685,-0.029090025,0.0032593245,0.02070257,0.023502612,-0.06086606,-0.017915199,0.03626117,0.010541333,-0.029166045,0.0061163804,-0.0015496836,-0.015520592,-0.04670115,-0.011307861,0.010300606,0.031167883,-0.04036621,0.00690508,-0.008140393,-0.017370393,-0.0103449505,-0.016204765,-0.0030280992,0.022146935,0.03233351,0.00076771504,0.003838971,0.029242063,-0.026074596,0.00043711058,-0.02361664,0.0038674783,-0.0042760815,0.0029077355,-0.03648923,-0.0064236247,0.0031342094,-0.028431192,0.0056666,0.007595588,-0.003506387,-0.029394101,-0.002434199,0.017421074,0.025998576,0.0072344965,0.0004268163,0.011111477,-0.0072471667,-0.021323394,-0.005150303,0.02165281,0.009572088,-0.05635559,-0.0040321867,-0.019194856,0.0069494247,0.026378673,-0.017484423,0.04439523,0.024528872,-0.038161654,-0.0048842356,-0.028152455,0.014545012,-0.0011117812,0.010465314,0.0008536326,0.0059421696,0.0003505991,-0.007164812,-0.020183105,-0.009337695,0.012961279,0.012600187,-0.021412082,-0.016521512,0.008172067,0.014126907,-0.0074752243,-0.007202822,-0.017915199,0.0042285696,0.006708697,0.010984778,0.008444469,0.014329624,0.019030146,-0.03446205,-0.023147855,-0.055037923,-0.0433563,-0.0004707649,-0.008457139,-0.021069996,0.018295294,-0.006797386,0.007956679,-0.0008575919,0.021956887,0.010528663,0.04634639,0.02769634,-0.004143048,-0.01277123,-0.00743088,-0.029698178,-0.014722391,0.0227931,0.017991217,0.0167369,0.0020984474,-0.006132218,0.0137721505,0.002017677,0.028735269,-0.0049254126,0.009470729,0.0087802205,0.019486262,-0.0131386565,0.0066326777,-0.044040475,0.0246429,0.002785788,0.0042634117,-0.015609282,0.006898745,-0.021564122,-0.008444469,-0.01775049,-0.014101567,-0.034310013,-0.017585782,0.011998368,-0.021120677,0.01379749,-0.035070203,-0.019549612,-0.020208444,0.0034810472,0.021880869,-0.011352205,0.006607338,0.020335143,0.0070761233,0.01031961,0.0064236247,0.028355172,0.015812,-0.00564126,0.01474773,-0.026327994,-0.021842858,-0.0022821606,0.0009146063,0.018396653,0.0035570664,0.02868459,-0.04241873,-0.03063575,0.018320635,-0.0050996235,0.016356803,0.022286303,-0.00041533422,-0.021108005,-0.0066706873,0.017218355,0.023540622,-0.01474773,0.018333305,0.029292744,0.024034746,0.020816598,0.028127115,-0.018295294,0.0015607699,0.0032846641,0.015077147,-0.021044657,0.009185657,-0.027721679,0.048981722,-0.024326153,0.028000416,-0.0296475,-0.06314664,0.023718,-0.038060293,-0.0033195063,0.006727702,-0.01972699,-0.030331673,-0.012023708,0.018409323,-0.03942864,0.008514154,0.029774198,-0.055595398,-0.0054132026,-0.043153584,-0.0023312564,-0.027164204,0.011073467,-0.03945398,0.016369473,0.0022520698,0.024351493,-0.00084729766,0.019118836,0.025909888,0.021171356,-0.005410035,0.023135185,-0.04543416,-0.018510683,-0.004184225,0.0069304197,-0.0022140602,-0.02563115,-0.00053728174,0.010110557,-0.01866272,0.01875141,0.0031342094,0.024351493,-0.02082927,0.009534079,-0.030483712,0.0108960895,0.015267195,-0.025175035,-0.00940738,-0.023768678,-0.01586268,0.017471753,0.01775049,0.049843274,-0.028405853,0.056913063,0.008051704,0.021956887,-0.038034953,-0.047512017,0.014392974,-0.013417394,0.014177586,-0.00008413586,0.019663641,-0.019955048,0.032967005,0.005349853,-0.041177083,-0.04447125,-0.0085268235,-0.020803928,-0.046625126,-0.011592932,-0.012701546,0.026049256,-0.0059009925,0.007779301,-0.013987538,-0.03258691,0.014671711,-0.028659249,-0.05351754,-0.008552163,-0.010839075,0.028836628,-0.034081955,0.007785636,0.032029435,-0.113826126,-0.025149696,0.031319924,0.0011054463,-0.013366714,0.018840099,0.000595088,0.054733846,0.005096456,-0.015444573,-0.007703282,-0.0062082373,-0.0028380512,-0.01379749,0.014202926,-0.000779593,0.00040444607,0.040898345,0.016420154,-0.032080114,0.009990194,0.003107286,0.009299686,0.03327108,0.010078883,0.02063922,0.0011917598,-0.0437364,0.011992034,-0.006594668,0.020157766,0.015317875,-0.01586268,0.019549612,-0.03552632,0.035805058,0.0068353955,0.0074372147,0.010991113,-0.04130378,-0.026784109,-0.005435375,-0.027797699,-0.025162365,0.029926237,0.016318794,-0.01960029,0.028127115,-0.04829755,-0.0012939107,-0.049665898,-0.02769634,0.060764704,0.0072471667,0.021234704,0.0018624711,-0.005970677,0.04936182,0.0020636052,0.008577503,0.023211205,0.02663207,0.02764566,-0.0029267403,-0.0025909888,-0.0011624608,-0.03529826,-0.029850217,0.032130793,0.03539962,-0.0176618,0.020917958,0.021374073,0.023882708,0.009876165,0.066440806,-0.036869325,-0.022007568,-0.013556763,0.0023946057,-0.0047005224,0.00048422665,-0.0071774824,0.003433535,0.019030146,0.0048779007,0.005131298,-0.042773485,-0.0049792593,-0.023743339,0.046549108,-0.015609282,0.021424754,0.011643612,0.019498933,-0.013049968,-0.029292744,-0.00037178156,0.006376113,-0.02177951,0.022945138,-0.010338616,0.026454693,-0.03575438,0.033397783,0.004839891,0.023236545,-0.0032324009,-0.014545012,0.0033891906,0.0065883333,0.021031987,-0.0074372147,-0.00831777,-0.010129563,-0.0053308485,0.01582467,0.035830397,-0.0048367237,0.015431903,0.018523352,-0.026784109,0.0018022893,-0.038237672,0.0058724857,0.007791971,0.015609282,0.026074596,-0.0036679278,0.036869325,-0.025504451,-0.006053031,-0.0013445901,0.02655605,0.024414843,-0.00007364363,0.01775049,-0.015495253,-0.011219171,0.012283441,-0.017155007,0.038972523,-0.019993057,0.01866272,0.0046086656,0.02082927,0.005657098,0.0049982644,-0.019042816,-0.0005859816,0.032662928,-0.04627037,0.019980388,0.017281706,0.0135187525,0.06816391,-0.011592932,0.03950466,0.01777583,-0.046878524,0.0038072965,-0.0071711475,-0.004174723,0.007823646,0.027366923,-0.004605498,-0.010592013,-0.0003636649,-0.008590173,0.027949737,0.041937273,-0.037654858,-0.0069304197,0.030863807,0.026530711,0.059497718,0.052757345,0.011776646,0.015267195,0.006227242,0.004231737,0.018231945,-0.0007934507,-0.029470121,0.016052727,-0.0068353955,0.0077666314,-0.0314973,0.0016185761,0.00018856332,0.033017684,0.017104326,0.004345766,0.0155079225,-0.014000208,-0.028355172,-0.022628391,-0.017129667,-0.0009565753,0.032181475,0.029976916,0.014595692,-0.0032783293,0.014038217,-0.022907129,0.0044281203,-0.042038634,-0.00934403,0.031167883,0.031928077,0.00079978566,0.016964957,0.021234704,-0.017066317,0.020043736,0.007760296,-0.010123228,0.011162157,0.012568513,0.002440534,0.017408403,-0.0010436807,-0.000839379,-0.0033163389,-0.011947689,-0.00042166916,-0.030204974,-0.024060085,-0.013202006,-0.017902529,-0.00985716,0.015191176,0.02769634,0.022438342,0.01235946,-0.050045993,0.004060694,0.044572607,0.021956887,0.013125987,0.0029599988,-0.020803928,-0.018117916,-0.07247166,-0.021298055,-0.035095543,-0.007411875,0.017053647,0.009027284,0.021817518,-0.0021887203,0.01573598,0.00740554,-0.0022172276,-0.012625527,-0.005150303,-0.025048336,0.051186282,0.0075639132,-0.0070761233,-0.015317875,-0.017078986,-0.0009256925,-0.03243487,-0.015913358,0.039124563,-0.0032419034,0.013468074,0.018954128,-0.03276429,-0.0016866766,0.046675805,0.017193016,0.032004096,-0.034233995,-0.022476353,0.00034723367,-0.012093392,-0.000115909526,-0.041101065,-0.013252686,-0.018460004,-0.013911519,0.0008053287,-0.013075307,-0.008963934,-0.03243487,0.00092965184,0.026606731,-0.030939827,0.009971189,-0.011630942,0.0029457451,0.00006300292,0.0147857405,-0.021437423,-0.02269174,0.00686707,0.02470625,-0.0016930116,-0.05696374,0.009755801,-0.007684277,-0.005533566,0.0135187525,0.011067132,0.020183105,-0.014912439,-0.0020699403,-0.025137026,0.0012669872,0.008957599,0.042900186,-0.012676206,-0.022374993,-0.0044597946,-0.01486176,-0.03740146,0.006363443,0.004643508,0.01579933,-0.0026147447,0.016711561,0.016014718,0.006186065,-0.02380669,0.04132912,-0.00980648,-0.0010127978,-0.019283544,0.0010983195,-0.028836628,-0.011668951,-0.006594668,-0.020879949,-0.004447125,-0.056456946,0.0142789455,0.010851745,0.0005527231,0.010192912,-0.00786799,0.01282191,0.012074388,0.017205685,0.0011299942,0.04216533,0.01975233,-0.0053561884,-0.0077159517,0.05524064,0.008792891,-0.0004410699,0.0066643525,0.0076462673,0.009705122,-0.027442941,0.00089797715,-0.0025624814,-0.024883628,-0.013696131,0.0337272,0.0037502819,-0.014950449,-0.020183105,-0.013531423,-0.027544301,0.014583022,-0.003433535,0.0056032506,-0.00691775,-0.0070507834,0.007006439,-0.010864415,0.009977524,-0.023084506,0.015393894,-0.040999703,-0.019118836,0.052909385,0.0022267299,0.0034810472,-0.009945849,0.009255341,-0.004738532,0.008640853,-0.001095152,0.03276429,0.041937273,-0.07252234,0.0009827069,-0.011725966,-0.034994185,-0.018472673,-0.035982434,0.028405853,-0.019955048,-0.01960029,-0.020499852,-0.012878925,-0.0337272,0.0058661504,0.023946058,0.009287016,-0.007988354,0.0005083786,0.02366732,0.06588333,0.012885259,-0.0034493725,0.0035570664,0.044065814,-0.009939514,-0.04920978,-0.024186784,-0.0159387,-0.0018117917,0.003994177,-0.0100472085,-0.021120677,-0.012568513,0.036590587,-0.009812815,-0.03438603,0.027088186,-0.00893226,-0.02949546,-0.034259334,0.0013406308,0.004887403,0.034740787,-0.02848187,0.0138988495,0.029242063,-0.044902023,0.016166756,0.0088309,-0.0167369,0.005232657,0.05529132,0.001559186,-0.034005936,-0.0028222138,0.028912647,0.013252686,-0.023489943,-0.002576735,0.0024500364,0.026150614,-0.005077451,0.004643508,0.03844039,-0.045864936,-0.013227346,0.022184946,-0.000034149263,0.031345263,0.023946058,-0.012897929,0.028557891,0.021348733,-0.015241856,0.014304285,0.002785788,-0.036185153,-0.0050647813,-0.020373153,-0.04670115,-0.0045738234,-0.020309804,0.020905288,0.08762483,-0.018472673,-0.0042063976,-0.010534998,-0.021450093,-0.0030708602,-0.004481967,0.027088186,0.015203846,-0.014468993,-0.00034268043,0.027924396,0.02267907,-0.004095536,0.018421993,0.024199454,-0.015545933,0.0062905913,0.0036299182,-0.030686429,0.045611538,0.011827325,0.0068797404,0.019131506,0.03354982,0.0030154295,-0.029470121,0.032485552,-0.011010119,-0.031193223,-0.015431903,0.004611833,-0.036970686,0.03061041,-0.025922557,0.021399412,-0.0110227885,0.015368554,-0.024174115,0.011124147,-0.017307045,-0.025479112,-0.02155145,0.0296475,0.0015108822,-0.007513234,-0.00641729,-0.017294375,0.020512521,0.025263723,0.024465522,-0.020487182,-0.0353236,0.025099015,-0.036083795,-0.024921637,-0.020132426,-0.024237465,0.00836845,-0.06370411,0.015469913,0.013430064,0.01973966,-0.003118372,-0.043685716,0.023160525,-0.017269036,0.01481108,0.015330545,0.010813735,0.030078275,-0.0014633702,0.0062050694,-0.0052770013,-0.026226634,0.005349853,0.00071980705,0.0014332792,-0.03144662,-0.033043023,-0.0069557596,-0.020005727,-0.0011537502,0.0031991426,-0.0062842565,-0.012391134,0.04426853,-0.014671711,0.007481559,-0.00007874127,0.024490861,0.027366923,0.035627678,0.006138553,-0.006338103,-0.0032719944,0.0007178274,-0.006543989,0.024009407,0.0026353332,-0.009363035,-0.00938204,-0.05701442,0.004507307,0.008976604,-0.00033080243,-0.03623583,0.019663641,0.0047765416,-0.0062652514,-0.033980597,-0.0069874343,-0.01787719,0.0020699403,-0.010395629,-0.04036621,0.0074688895,-0.02265373,0.020563202,-0.00740554,-0.024528872,0.008748546,0.038085632,0.002047768,0.006993769,-0.008412795,-0.017940538,0.0069430894,0.004814551,-0.009071628,-0.0049602548,-0.0111494865,-0.01477307,-0.031370603,-0.0068734055,0.004089201,-0.024389504,-0.008989274,0.0082290815,0.013620112,-0.0025735677,0.005042609,-0.047005225,0.05812937,0.006518649,0.008013694,0.03854175,-0.022919798,-0.016280785,-0.0045864936,0.0185867,0.033828557,0.018979467,0.007620928,-0.0076526026,-0.012492494,0.021462763,0.013214676,-0.016293455,0.00441545,0.015216515,0.027721679,-0.005261164,0.026049256,-0.004314091,-0.017421074,-0.0035190568,0.021564122,-0.0014942529,0.010737716,-0.010300606,-0.002874477,-0.0054543796,0.02072791,0.009610098,0.021006647,-0.0031389606,0.008349446,0.014405644,-0.021982227,0.013316035,0.020069076,-0.006296926,-0.01981568,0.0022995817,0.014874429,0.043483,-0.041582517,0.02848187,0.03826301,0.017522432,0.014304285,-0.0072598364,0.007595588,0.036210492,-0.0147857405,0.04059427,0.02271708,0.005989682,0.026277313,-0.015013798,-0.013328705,-0.013493413,0.051718414,0.03055973,-0.02380669,0.005767959,0.036945347,0.03453807,0.01573598,0.019574951,0.0037946266,0.029951576,0.035247583,-0.00015817543,-0.01574865,0.0022995817,-0.005159805,-0.017129667,-0.019764999,0.00003642588,-0.013936859,-0.01378482,0.0062050694,0.014950449,-0.004244407,-0.0314973,0.024427513,-0.00321498,0.033169724,0.0067593763,-0.022235624,0.030483712,-0.016306125,-0.04350834,-0.0012606522,0.0041208756,0.026201295,-0.028152455,-0.0012994537,-0.008590173,-0.004333096,0.023451932,-0.016166756,0.019397574,-0.004130378,0.011548588,-0.0029790036,0.02177951,-0.006113213,0.026125275,-0.009914175,-0.029368762,0.0024373666,-0.019942379,-0.009926844,0.0032054775,-0.02075325,-0.035070203,0.010496989,0.007373865,-0.005451212,0.01184633,-0.02769634,0.022919798,-0.010566673,-0.026049256,0.01877675]},{"id":"guide-sending-without-reply-0","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: message.send() vs message.reply()\nmessage.reply() sends a message that references another message (shows as a \"reply\" in Discord). message.send() sends to the same channel with no reference—a regular standalone message.","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.003951171,-0.007490239,0.018678261,0.008381272,0.017397404,0.04098748,0.00034718929,-0.0026146225,0.0023709808,0.03610908,-0.0042296182,0.018600296,0.016584337,0.008949304,-0.006699448,-0.061837632,-0.052971862,-0.019580431,0.0034833788,0.07226271,0.032634053,0.039049484,0.0027371394,0.04194534,0.013721895,-0.03806935,-0.003636525,0.05430841,-0.034527496,-0.04673464,-0.015671028,-0.016840508,-0.0049563665,-0.016071992,-0.0035028702,0.04481892,0.039851412,0.011516591,0.00018951837,0.02463704,0.011399643,-0.004413394,-0.005914226,0.012619243,-0.03468343,0.02187484,-0.038403485,-0.016261337,0.04816029,0.037712935,-0.0568033,0.046600983,0.030295093,0.03036192,-0.013443448,-0.044596158,-0.015403719,-0.038915828,-0.00870984,0.0044050403,-0.008030428,-0.016239062,-0.059075434,0.026730964,-0.009701112,-0.028602133,-0.042168096,-0.009205476,-0.023924213,0.03684418,0.009879319,0.0038147315,0.0225097,-0.024748418,-0.008397978,0.0026619586,0.037557006,0.026730964,-0.024726143,-0.04444023,-0.009088528,0.001422867,-0.07114892,-0.008008151,-0.068520375,-0.019313121,0.023322767,-0.048917666,0.028535305,-0.044551607,0.006003329,-0.0387599,-0.02686462,-0.018188193,0.048293944,-0.010586576,-0.05435296,0.009857044,-0.0032049313,0.022654492,0.08749936,-0.04283637,-0.11886369,-0.008074979,0.013677344,0.0022707398,0.004385549,0.017920885,-0.0014910867,-0.01029699,-0.024057869,0.017208058,0.04423975,-0.008904752,0.0030879832,-0.021640943,0.039160863,-0.046066362,0.031252954,0.0108873,-0.021150876,0.030005507,0.06428797,-0.023746006,0.02702055,-0.04421747,-0.009923871,-0.037735213,-0.021462737,0.037178315,0.082420476,-0.0008228125,-0.010202318,0.017798368,-0.046378225,0.0048449873,-0.01709668,0.01618337,-0.022621078,-0.006248363,-0.0013163608,0.0025505796,-0.014267652,-0.0102858525,-0.012040072,-0.0027677687,-0.07288643,-0.020259844,-0.0074791014,-0.009305717,-0.018433228,0.0346166,-0.027421515,0.036443215,-0.038670797,0.07533677,0.007997014,0.012563554,-0.030406473,-0.011650246,-0.058629915,-0.023255939,-0.006721724,-0.044462506,-0.056669645,-0.054085653,0.025773106,-0.007384429,0.008565047,0.028067512,-0.035485357,0.020582844,-0.001903189,-0.020582844,0.016840508,-0.040185552,0.01656206,-0.076851524,0.020404637,-0.011627969,0.031319782,0.029314958,-0.017219197,-0.031186126,0.004210127,0.03492846,-0.0066716033,-0.013621654,-0.018388676,0.012997932,-0.018678261,0.010163335,0.026396828,0.004627798,0.000028040538,-0.028602133,0.029916406,0.05453117,0.0091832,-0.043660577,0.008035996,0.016172234,0.0140560325,-0.028913993,-0.0540411,-0.0023709808,0.030428749,0.0036504474,-0.022398321,-0.010258008,0.029604543,-0.012819725,0.016005166,-0.027621998,-0.0776089,-0.037824314,-0.062327698,0.020248706,-0.02287725,0.0029014235,-0.07373291,0.04183396,0.043170508,-0.015158685,-0.0025756399,0.0052375984,0.0045192037,-0.033881497,-0.04677919,-0.0035975424,0.045843605,0.029983232,0.021674357,-0.04094293,-0.009884888,0.004251894,0.007161671,0.005685899,0.012285106,-0.041499823,-0.020504877,-0.0249489,0.011460901,0.016005166,-0.020070499,-0.021373633,0.00036650657,-0.041388445,0.032745432,0.05457572,0.06125846,-0.0003605896,-0.000626507,-0.014345618,0.008498219,-0.06896589,0.0024099636,0.035240322,0.022275804,0.014746582,-0.055333097,-0.00051547604,-0.010358249,0.028000686,-0.037000112,0.017831782,-0.0069946023,0.03927224,-0.004984211,0.046467327,0.022621078,0.016227923,0.015916063,0.0005610718,-0.012897691,0.034059703,-0.0037618263,-0.026931448,-0.02824572,0.0038787744,-0.0019602708,-0.004650074,-0.0065880693,-0.032344468,0.0044217473,0.0068498095,0.005864105,0.035485357,0.011950969,-0.0008339504,0.0085427705,0.013777585,-0.007930187,0.009366975,0.0069444817,0.042190373,0.06281777,0.016239062,-0.014211963,0.04114341,-0.004527557,0.015737856,0.04412837,0.02702055,0.00081097847,0.008620736,-0.044306573,-0.021997357,-0.012730622,-0.031564813,0.021106325,0.03466115,-0.06722838,0.01183959,-0.00833672,0.026820067,0.007278619,0.0060701566,0.026953723,-0.0009042584,0.051011592,0.013900102,0.04230175,-0.060233776,-0.034594323,0.010313697,0.025728554,-0.011850728,0.021095186,0.05577861,0.0018990122,-0.0066548963,0.02548352,0.019936845,0.015882649,0.041700304,-0.009160925,0.034327015,0.0023974334,0.030673781,0.02463704,0.038470313,0.013777585,-0.014590652,-0.05315007,-0.006810827,-0.059431843,0.022498563,-0.030072335,-0.017486507,0.010029681,-0.03009461,0.030696059,-0.05738247,0.041544374,0.0290922,-0.008125099,-0.008364565,0.00009554232,-0.020293258,-0.018533468,-0.0037228437,-0.013788722,0.0028137125,0.025038004,0.03163164,0.009829199,-0.02064967,-0.025839932,-0.05377379,0.04620002,0.044106092,-0.040274654,0.014011481,-0.02913675,-0.0006080598,-0.00546871,-0.0060868636,0.001417298,0.020905843,-0.008013721,0.009951715,-0.016394991,-0.020415774,-0.013398896,0.037200592,-0.004747531,-0.010954127,-0.012173727,-0.02367918,0.015348029,-0.021852564,-0.0093725445,0.037356522,0.008565047,0.037044663,0.00448579,-0.014312204,0.036376387,-0.026374552,0.038893554,-0.013766447,0.0029960957,-0.013733033,-0.010670111,0.04691284,-0.025238486,-0.0031130437,-0.008637443,0.0054492187,0.04348237,0.030005507,0.016305888,0.028958546,-0.016127681,-0.04412837,0.023389595,-0.013978067,0.03922769,0.022119874,-0.008141806,-0.057917092,-0.025528071,-0.047046497,0.028446201,0.0051150816,0.008353426,-0.010113215,0.030428749,-0.06660465,-0.08990514,-0.004157222,-0.014724307,-0.013510275,0.024882073,-0.018589158,-0.011059937,-0.05430841,-0.03074061,-0.010675679,0.045375813,-0.032143984,-0.0775198,0.026797792,0.0052849343,0.020783326,-0.005351762,-0.016005166,0.014234239,0.03662142,-0.019736363,-0.0435492,-0.015303478,-0.036710527,-0.049140424,0.0036058957,-0.021095186,0.035151217,-0.0073343087,0.028913993,-0.024392005,-0.029225854,0.018110229,0.0456654,0.007495808,0.015214374,-0.0443734,0.0076573077,-0.009868181,-0.03731197,-0.016105406,-0.024325179,0.034171082,-0.0040486273,-0.0058362605,0.0214516,0.014646341,-0.015459408,-0.017709265,0.041477546,0.010335973,0.011705935,0.031319782,-0.019212881,-0.034215637,-0.0023709808,0.021117462,-0.017553333,-0.006281777,0.013532551,-0.052882757,-0.0044941436,0.032210812,-0.009105235,0.040475138,-0.0070669986,-0.011221436,-0.01821047,0.029604543,-0.04232403,-0.029203579,0.019970259,-0.045108505,0.0054547875,0.009667699,0.0022303648,-0.003934464,-0.022053046,0.044997126,0.02027098,-0.0021343005,0.0052431673,0.01253014,-0.0066437586,-0.01168366,0.0225097,-0.011583418,-0.012441036,-0.022554252,-0.028691236,0.016996438,0.030807437,0.0058585363,0.0067662755,-0.006721724,0.03154254,0.004586031,0.038180728,0.018967846,-0.007941324,-0.017842919,-0.052169934,0.03982914,0.014367893,0.0052181073,-0.0155819245,-0.057872538,0.000989185,-0.022799285,0.0031631642,-0.0020939256,0.016328163,0.029225854,-0.014958203,-0.02797841,-0.014223101,0.01481341,0.046467327,0.01199552,0.020961532,0.024703866,-0.027644273,0.00003245654,-0.02962682,0.025394417,0.023122285,-0.025238486,-0.031230677,0.03938362,-0.023345042,-0.0044468073,-0.004889539,-0.0057304506,0.014011481,0.016383855,0.0155819245,0.008787804,-0.0013497745,0.017932022,-0.06005557,0.024057869,-0.0030378627,0.0036198182,-0.020727636,-0.039361347,0.0048394185,-0.036955558,0.0008262931,0.0024517307,-0.010681248,0.02659731,-0.048026633,0.012674932,0.012819725,-0.028579857,-0.006276208,-0.025795382,-0.016595474,-0.020037085,0.021206565,-0.039160863,0.016651163,0.023055457,-0.012786311,-0.0014479272,0.0011799214,-0.008876908,-0.01141635,-0.050922487,0.003566913,0.014289929,0.012997932,-0.04620002,-0.020805601,0.022966353,0.03481708,0.030116888,-0.033302326,0.024146972,-0.020794462,0.012140313,-0.012630381,-0.009400389,-0.053951997,-0.027042827,0.021585254,0.030451024,-0.010335973,0.02213101,0.0353517,-0.006164829,0.0024670453,-0.009322424,-0.00289307,-0.01577127,0.020850152,0.00584183,0.003736766,-0.0022790933,-0.0060478807,0.042814095,0.013220689,0.013978067,-0.019569295,-0.01141635,0.020516016,0.018009987,-0.011059937,-0.000573602,-0.005897519,-0.021485014,-0.005780571,0.015882649,-0.03350281,0.0040012915,-0.03223309,0.016740266,0.017508782,0.028535305,-0.021975081,-0.033413704,-0.012897691,-0.0046472894,-0.04105431,-0.0055967956,-0.002235934,-0.010870593,0.022075322,-0.02940406,-0.029203579,-0.016885059,-0.017085541,-0.0033246637,-0.02686462,-0.00961201,-0.008921459,-0.024770694,-0.010592145,0.01412286,-0.0031241814,-0.016484095,0.016595474,0.024815246,-0.013075897,0.00023824669,0.000052687497,-0.003853714,-0.0030267248,0.008732115,-0.0005593315,0.01550396,-0.009188769,0.017887471,0.02548352,0.017319437,-0.01645068,0.019123778,0.014223101,-0.0108873,-0.040007345,-0.0025867778,-0.0131427245,0.016339302,-0.0186894,0.043660577,-0.0013455978,0.045888156,0.048605803,0.014690893,-0.031342056,-0.058540814,0.003138104,0.020827876,0.010865023,0.035864044,-0.06700562,-0.004689057,-0.010904006,0.007395567,-0.024302902,-0.052570898,-0.0011311931,-0.020805601,0.018110229,-0.024859797,-0.04348237,-0.029025372,-0.02214215,0.04034148,0.016250199,-0.00053357513,0.030985644,-0.011627969,0.020783326,0.0019129347,-0.0026953723,-0.010324835,0.03722287,-0.060367428,0.02118429,-0.012151451,0.008308874,0.021518426,0.012485588,0.009689975,-0.008804511,-0.015281201,0.0374679,-0.011950969,-0.0031436728,0.01905695,0.0008701486,0.001253014,-0.017987711,0.00092305365,0.008826788,-0.039740033,0.014456997,0.006938913,-0.016283613,0.020293258,0.0051373574,-0.054709375,0.023389595,-0.032745432,-0.010675679,0.0011075251,-0.005546675,-0.0387599,0.022687906,-0.024882073,0.03147571,-0.017341714,0.03334688,-0.005919795,-0.012864277,-0.03503984,0.006025605,0.00833672,-0.0074456874,0.004725255,-0.027399238,-0.018009987,-0.0034221204,0.008526064,-0.022543114,-0.03285681,0.015726717,-0.0094059585,0.012385347,-0.020504877,0.017976575,-0.013788722,0.004995349,-0.006220518,-0.0016553707,0.0020744342,-0.020449188,-0.0071839467,-0.017764954,-0.021095186,-0.015693303,-0.012931104,0.0044245315,-0.033770118,0.012396485,-0.007729704,-0.10282511,0.027755652,0.032478124,-0.04820484,-0.04040831,0.008381272,0.010079801,-0.0017542195,-0.0024740065,-0.041076582,0.022041908,0.0052014003,0.01550396,-0.025995864,0.02298863,-0.011672521,0.0029738199,-0.010347111,0.0038286538,-0.011873003,-0.02372373,-0.013554826,-0.036821906,0.016261337,0.017553333,0.0011799214,0.0009975383,0.0016247415,0.021830289,-0.028913993,0.011020954,0.025127107,0.02176346,-0.00034405675,-0.02786703,0.011271557,0.0013184492,0.008665288,0.019068088,-0.017297162,0.01231852,-0.0093892515,-0.018488917,-0.010425076,-0.017152369,0.034059703,-0.015058444,-0.0024224936,-0.025149383,-0.013087035,0.020772187,-0.0017723186,-0.010898437,-0.018544607,0.034906186,0.026062692,-0.0059921914,-0.00056664075,0.017297162,-0.022175563,0.012329658,0.005053823,0.008915891,0.000404097,0.0374679,-0.044930298,0.0051345727,-0.017441954,-0.009149786,0.017954297,0.018399814,0.0071226885,0.02203077,0.021106325,0.0031826554,-0.0013560395,0.009222182,0.024057869,-0.023077734,0.015693303,-0.019836603,-0.011817314,0.0023180759,0.0095229065,-0.01157228,-0.011438625,0.0002201476,-0.018923296,-0.0043354286,0.03488391,0.046066362,-0.033725567,-0.031898953,-0.013053621,-0.035218045,-0.0027886522,-0.050610628,0.004371627,0.030963367,-0.033302326,0.051724415,0.030495577,0.024592487,-0.06789665,0.0030128025,0.015036168,-0.019313121,0.011861865,0.030673781,-0.006699448,0.01475772,-0.039784584,-0.0093725445,0.0046695652,-0.028022962,-0.015370305,0.0042602476,0.035774942,-0.028267995,0.012307382,-0.010324835,-0.0036755076,0.009300148,-0.0074401186,0.008164082,0.01905695,-0.028869443,-0.02367918,0.021485014,0.03769066,-0.02882489,0.04094293,-0.0016344871,-0.02690917,0.0016943533,-0.01959157,0.02617407,0.016595474,-0.025839932,-0.00981806,-0.024080144,-0.02659731,-0.031898953,0.019669535,0.014468134,-0.018132504,0.04301458,0.052437242,-0.014579514,-0.00828103,0.012507864,-0.02532759,0.014100584,-0.0072062225,0.016472956,0.0637088,-0.0073398775,-0.03163164,0.019513605,-0.023077734,-0.039561827,0.025438968,0.04927408,0.0057582953,-0.008035996,0.0103192665,0.0010574046,0.034438394,-0.036933284,0.036019973,-0.0046055224,0.014635203,-0.02118429,-0.008748822,0.026998274,0.03588632,0.013332069,0.014323342,0.004889539,0.03223309,0.0058696745,-0.0036699388,0.020482602,0.042190373,0.002436416,-0.030673781,0.011627969,-0.00026261085,-0.027644273,-0.020883566,0.029938681,-0.0040040757,0.011705935,-0.008698702,0.01379986,0.01609427,-0.044106092,-0.00610357,-0.03595315,-0.0019519173,0.018477779,0.027777927,0.03626501,-0.0034917323,0.02633,-0.0041488684,-0.00849265,0.04820484,0.02341187,0.019146053,-0.0046834876,0.008108392,0.024280626,0.007189516,-0.03610908,-0.02314456,-0.01220714,-0.0045999535,-0.014846823,0.029649096,-0.023345042,-0.0063263285,0.0051512797,0.028223444,-0.026686413,-0.004452376,0.008381272,0.0037451196,-0.06206039,-0.006471121,0.033235498,0.00039957222,0.00902727,-0.03270088,0.012251692,-0.054709375,-0.008837925,0.024258351,0.038737625,0.012418761,-0.013532551,-0.022899527,0.015938338,-0.07444574,0.003547422,-0.04167803,0.025795382,0.03227764,-0.02224239,0.005123435,-0.036487766,0.017553333,-0.013499137,-0.02744379,0.033369154,-0.010335973,-0.009534044,0.0036226027,0.004432885,-0.007941324,0.0022679553,0.026953723,0.010024112,-0.034705702,-0.03216626,0.020248706,0.017130094,-0.006911068,0.0030434318,0.008152944,-0.006732862,0.038403485,0.009116373,0.0148356855,0.01995912,-0.0032856811,0.012608105,-0.0028791477,0.017497644,-0.0038035936,-0.0026382906,-0.0019644476,-0.040207826,-0.022498563,-0.0070837056,-0.015492822,-0.0036309562,-0.018978985,0.024971176,0.024236076,0.005864105,0.03089654,-0.032411296,-0.0015022245,0.012864277,-0.023812834,-0.018555745,0.012285106,0.015225512,0.016361577,-0.007712997,0.0007055165,0.0059643467,-0.025884485,0.012463313,0.022609942,0.017118955,-0.01884533,0.0169853,-0.020204155,-0.009884888,0.00015549555,0.0408761,0.00092583813,-0.019168328,0.00448579,-0.0070280163,-0.032634053,-0.0214516,0.030161439,0.0015467762,-0.04878401,0.036710527,0.026820067,-0.019023536,-0.030606955,0.019725224,0.013610517,0.02797841,0.007473532,-0.014902513,0.023590077,-0.033948325,-0.029582268,-0.047536567,-0.021050636,-0.06486714,0.02904765,0.013788722,0.022598803,-0.0026160148,-0.011110057,0.027577445,0.0457545,0.03290136,-0.022565389,0.04241313,-0.03009461,-0.0094059585,0.018255021,0.053951997,-0.045420364,-0.008810081,0.035641287,0.02410242,0.042435408,-0.020259844,0.03731197,-0.025706278,0.011227005,0.014423583,-0.0006585285,0.052259035,0.006777413,-0.018032264,0.01922402,-0.01550396,0.02878034,0.027042827,-0.017219197,-0.035908595,0.0024503383,0.007501377,0.00074415107,-0.05185807,-0.022342632,0.015570787,0.0048756166,0.0225097,0.022899527,0.021685496,0.0054185893,0.020950394,0.015225512,-0.043504644,-0.0021510073,-0.006810827,-0.030495577,-0.01582696,-0.014746582,-0.021841425,-0.01205121,-0.004544264,0.015782407,0.015459408,0.0071226885,0.008693133,-0.0734656,-0.00030942485,0.02840165,0.0021482229,-0.0011701758,0.0029543284,-0.0043660575,0.038269833,0.0022623863,-0.020293258,0.028357098,-0.019023536,0.028624408,0.006398725,0.00028175412,0.018678261,-0.0039623086,0.025104832,-0.015203237,0.0075626355,0.008052703,0.004689057,-0.00416836,0.002235934,-0.014133997,0.0014493195,-0.011605694,-0.05426386,-0.01863371,-0.017007576,-0.0457545,-0.024748418,-0.016239062,0.020616258,-0.023545524,-0.008091685,0.009211045,-0.028156616,0.043504644,-0.00029132576,-0.006721724,-0.012240554,-0.026931448,0.0037562575,0.02160753,0.016528647,-0.0075403596,0.009706682,0.005234814,0.021663219,0.01279745,-0.005023194,0.004691841,-0.014111722,-0.00050224975,0.024748418,-0.03838121,-0.011271557,0.044417955,0.0012008051,0.004338213,0.01385555,0.008843495,-0.028357098,-0.051947176,-0.0018892667,-0.024146972,-0.013499137,-0.02782248,-0.018856468,0.010909575,0.027265584,-0.023478698,0.015659891,0.028936269,-0.03296819,0.03630956,0.014579514,-0.008720977,-0.0045414795,0.038715348,0.01884533,0.031097023,0.0129756555,0.02341187,0.0055299685,0.012552416,-0.011627969,-0.003928895,-0.019123778,0.0029376217,0.004825496,-0.0090217,-0.0057193125,0.031163849,0.02383511,-0.037935693,0.0050788834,-0.034572046,0.008464806,0.022153286,0.015593063,0.0008520495,-0.008899184,0.023857387,0.0021245547,0.006927775,-0.005791709,-0.01656206,0.007356584,-0.052259035,-0.0047809444,-0.042346302,0.03653232,-0.023879662,-0.025394417,-0.021808011,0.013454585,0.025661726,0.02808979,-0.014523825,-0.041076582,0.0046584276,-0.009940578,0.013543689,-0.007863359,0.036554594,0.01863371,-0.026575034,-0.01609427,-0.00035745703,-0.04172258,0.010954127,-0.009121941,0.014401307,-0.01980319,0.014111722,-0.017564472,0.0009738703,-0.031386606,-0.021072911,-0.0103860935,-0.008503788,-0.025884485,-0.022119874,-0.030005507,-0.0339706,-0.029760474,0.017174644,0.02336732,-0.009639855,-0.009723389,0.024481108,0.021808011,-0.019881155,0.0006178055,0.008052703,-0.035440803,-0.0049591507,-0.034215637,0.00079079106,0.017085541,0.0011165746,-0.038626242,0.008347858,0.01677368,0.0072452053,0.033681016,0.016016303,0.028446201,-0.0052737966,0.012652657,0.017865194,-0.03550763,-0.0009731742,-0.014791134,-0.032634053,-0.009589734,-0.012340795,0.004263032,0.051679865,0.031186126,0.00051756436,0.0057304506,0.034059703,-0.015348029,0.031141574,-0.026441379,0.018912157,-0.001142331,-0.045108505,-0.004586031,0.02341187,0.007841083,-0.0032578364,-0.00387599,0.03238902,-0.01873395,0.0030573541,-0.009043977,-0.012441036,0.0047419616,0.0053434083,0.033881497,-0.0120957615,-0.054709375,-0.023233663,-0.01231852,-0.010163335,0.02855758,-0.008097255,0.033168674,0.06446618,0.007974738,0.006142553,0.038915828,-0.041856237,0.008125099,-0.016116545,-0.024080144,-0.00368943,0.017976575,0.048516702,-0.003090768,0.0037200593,0.0015732286,0.00082768535,0.008125099,-0.00003128184,-0.0038954811,0.023901938,0.03561901,-0.011048798,0.029003097,0.013599378,-0.016751405,-0.023055457,-0.0034527497,-0.0020827877,0.005610718,0.0036086803,0.0023194682,-0.013031346,0.042680442,-0.0290922,0.0018294004,0.0067607067,-0.0042212647,0.01922402,0.007534791,0.0073231705,-0.014479273,-0.011928693,0.00028140604,0.0050733145,0.017475368,-0.003747904,-0.015704442,0.03281226,-0.041455273,0.02149615,-0.020694222,0.00022971923,0.0318544,0.005663623,0.010107646,0.037824314,0.025550347,0.008186358,0.014746582,0.020360084,0.012919966,-0.010196749,0.018399814,0.038336657,0.032634053,-0.023924213,0.019613845,0.026084967,-0.0070224474,-0.021830289,0.030874263,0.012251692,0.020371223,0.031297505,0.009734526,0.011026523,0.016038578,-0.0064878277,-0.0024224936,-0.017876333,0.010063094,0.008013721,-0.030406473,-0.027488342,0.0084425295,-0.012452175,0.016305888,0.031408884,-0.026686413,-0.016606612,-0.014512686,-0.039561827,0.008141806,-0.01821047,0.0052431673,-0.0023166835,-0.019346535,0.02076105,-0.010018542,0.007874496,0.03477253,0.0007034281,-0.020872429,-0.0037200593,0.004349351,-0.0050955904,0.02690917,-0.006025605,0.005293288,-0.03292364,0.0408761,0.03557446,-0.031364333,0.015013892,0.008247617,-0.04691284,-0.026040414,-0.005981053,-0.016896198,-0.020460326,0.04432885,-0.028178893,0.0076740147,-0.026508207,-0.022810424,-0.030205991,0.016283613,-0.0183664,0.008487081,-0.0012091585,0.04241313]},{"id":"guide-sending-without-reply-1","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Sending to the same channel\nUse message.send() when you want to post in the channel without replying. Same signature as reply(): pass a string or object with content and/or embeds.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!hello') {\n await message.send('Hello! This is a regular message, not a reply.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.008299562,-0.014940332,0.012866843,0.0031998986,0.021228049,0.012665098,-0.034072474,0.019434761,0.008910401,0.042433683,-0.022629054,0.016890533,0.026271671,0.011398588,-0.020544358,-0.0029253012,-0.02358174,-0.023447243,0.0050296127,0.028087376,0.023604155,0.029746167,-0.0056236396,0.06379623,-0.032010194,-0.039183345,-0.009538052,0.04698415,-0.020387445,-0.04801529,0.04335274,-0.023043754,0.0027193534,-0.0014472395,0.0042870794,0.05536777,0.04265784,0.042433683,-0.041783616,-0.010288991,-0.014368721,-0.017843217,0.008131441,0.0068649314,-0.021452209,0.037345227,-0.041424956,-0.0015887412,0.02541986,0.049898244,-0.039071266,0.0245008,0.037659053,0.030956637,0.0041469787,-0.060075153,-0.026518248,-0.014301473,-0.012822011,0.042456098,-0.020387445,-0.027795967,-0.023783484,0.033041336,-0.019401137,0.0130461715,-0.014256641,0.004026492,-0.02707865,0.0821326,-0.012485769,0.0016377765,0.018134626,-0.04359932,-0.015624023,-0.016363755,0.010087246,0.02064523,0.0005138191,-0.04595301,0.013393621,0.016778452,-0.07724589,-0.03882469,-0.097734205,0.03667274,-0.0389816,-0.073883474,0.0064670453,-0.037121065,0.0053938744,-0.020981472,-0.02997033,0.003054194,0.06760696,-0.017574225,-0.031472206,0.011723622,0.013640198,0.047297977,0.09755488,-0.047073815,-0.070610724,0.008428454,0.027504558,0.006170032,0.009879897,0.0067416425,0.022292813,-0.0175406,-0.027751135,-0.015276574,0.042164687,0.022472143,0.0071227164,-0.019176975,0.022225564,-0.04859811,0.022976505,0.0017064258,-0.03626925,0.022494558,0.06065797,-0.008607783,0.015960265,-0.07101421,-0.014357514,-0.013539325,-0.039250594,-0.0040713246,0.09020239,-0.010776541,-0.006001911,0.022057444,-0.035776097,0.013102212,0.004850284,-0.016453419,-0.031718783,-0.015736103,0.026787242,-0.018123418,0.014346305,0.017932883,0.019827042,-0.008265938,-0.07980132,0.024074893,0.0027389675,-0.033444826,0.014043688,0.019625297,-0.06406522,0.04680482,-0.0013127429,0.054202136,0.030463483,0.022752343,-0.028311538,-0.017910466,-0.008153857,-0.031875696,-0.0073020454,-0.016229257,-0.062765084,-0.027347645,0.016049929,-0.013606574,0.01265389,0.04541502,-0.02011845,0.017036237,0.02340241,0.0015565181,0.02633892,-0.06316858,0.010776541,-0.051019046,-0.015836976,0.033310328,0.024881873,0.022225564,-0.012844427,-0.041962944,0.013460869,0.0027263584,-0.010518756,-0.013348789,-0.00078036054,0.00704426,-0.04485462,0.010737313,-0.00060663576,-0.019120935,0.014581675,-0.015366238,0.054426298,0.03445355,0.008176274,-0.014054896,-0.0062204683,-0.008557347,0.0016377765,-0.042456098,-0.010406676,-0.011746038,-0.0011691399,0.011914158,-0.030665228,0.0064670453,0.0350812,0.039362676,0.0042786733,-0.040147237,-0.063527234,-0.016453419,-0.043375157,0.032705095,-0.025509523,-0.024702545,-0.08374656,0.0069938237,0.04702898,-0.015007581,-0.012452145,0.03916093,-0.0038583716,-0.037928045,-0.043150995,-0.0012672102,0.05595059,0.042523347,-0.011236072,-0.050750054,0.027235564,0.0022836404,0.037233144,0.026607914,-0.012900467,-0.019132143,0.0011887539,-0.038376365,0.015041204,-0.02012966,-0.032413684,-0.011252883,-0.02398523,-0.039542004,0.026473416,0.016722413,0.06805529,-0.01736127,0.01055238,-0.014200601,0.014682547,-0.034520797,0.023873148,-0.005477935,0.049360257,-0.017731138,0.0015130868,-0.028871939,-0.010754125,0.0064222133,-0.054605626,-0.017529393,-0.009437179,0.019502008,0.0037995293,0.025711268,-0.0132255005,0.0034324657,0.0075822463,-0.010317011,-0.024343887,0.03990066,0.0016840097,-0.04025932,-0.008675031,0.0010808764,-0.014559259,-0.012844427,-0.019053686,-0.01195899,-0.0034520796,-0.011701205,0.012990131,-0.013819527,0.01437993,0.013707447,0.016195634,0.015881808,0.014749795,-0.010053622,-0.005912247,0.07137287,0.062675424,0.031270463,0.026585497,0.025218114,-0.015366238,0.01742852,0.028244289,-0.012261608,-0.010563588,0.017462144,-0.030508315,-0.012485769,0.06303408,-0.05330549,0.012541809,0.006573522,-0.06953475,-0.015388654,0.008131441,0.011219259,-0.011734829,0.038488448,0.021721203,0.024254223,0.031091133,-0.017585432,0.039990325,-0.07137287,-0.038040124,-0.04779113,0.032077443,0.001428326,0.029185764,0.05021207,0.011364964,-0.045639183,0.042231936,0.030687643,0.021642746,0.0053266264,-0.020779727,0.0078120115,0.00353614,0.049539585,0.024366302,0.010950265,0.015478319,0.0038975996,-0.026069926,0.030485898,-0.0050940593,0.017462144,-0.020465901,-0.025554357,0.004421576,0.009532447,0.018123418,-0.07083488,0.016587915,0.01592664,-0.024523215,-0.020432277,-0.018470868,-0.013259124,-0.04548227,-0.012788386,-0.018392412,0.014682547,0.016307713,0.01719315,0.018392412,-0.045863345,-0.016587915,-0.015164493,0.04064039,0.0040124822,0.011712413,0.03272751,-0.024119725,-0.025554357,-0.016352547,0.015836976,0.0004630326,0.036426164,0.01265389,0.02582335,-0.05352965,-0.029185764,-0.03978858,0.030216906,-0.0122504,-0.023940397,-0.012160735,-0.0038947978,-0.0058225826,-0.0040741265,0.007896072,0.058864683,0.030216906,0.0503914,0.021878116,0.0104346955,0.0054218946,0.02288684,0.039721332,0.0013582757,-0.00086231943,0.007660703,0.007694327,0.019064894,-0.044540796,0.008607783,0.00014850668,0.045863345,0.018157043,-0.0051725158,0.017294023,0.051915694,-0.02806496,-0.031292878,0.020813351,-0.0038163413,0.023335163,-0.019412344,0.0021057127,-0.02541986,0.0077503673,-0.04422697,0.012317648,-0.005256576,0.038914353,-0.03606751,0.0031242443,-0.0702969,-0.0701624,-0.032279186,-0.0016447814,-0.0064502335,0.01667758,-0.008949629,0.005861811,-0.05187086,-0.017686304,-0.0034969118,0.011084762,-0.010950265,-0.051915694,0.010014393,0.007425334,-0.015018788,-0.015052413,0.005587213,0.006562314,0.023559323,-0.04756697,-0.0648722,0.015164493,-0.021295296,-0.015825769,0.00049840804,-0.017450936,0.04306133,0.025330195,0.036448583,-0.038398784,-0.020376237,-0.010557984,0.03405006,0.012015031,0.00957728,-0.013348789,0.033489656,-0.015792144,-0.029140932,-0.022169525,-0.03266026,0.02828912,0.030754892,-0.0073692934,-0.01546711,0.00796332,-0.029073684,0.0114154,0.033668984,0.048284285,0.03236885,0.0015915432,-0.0051220795,-0.05003274,0.041357707,0.04144737,-0.04859811,-0.032413684,-0.0061868443,-0.025576772,-0.0031550664,0.013797111,-0.009622112,0.044877037,-0.03391556,-0.0042758714,0.0045168446,0.033131,-0.032503348,-0.021149592,0.011449024,-0.047073815,-0.0060131196,0.029477173,-0.0011523277,-0.040797304,-0.048284285,0.009061709,-0.012485769,0.027526973,-0.00065812276,0.0023382797,-0.00888238,-0.010272179,0.02490429,-0.03357932,0.008490099,-0.031068718,-0.040617976,0.021351337,0.052453678,-0.020196907,0.006214864,-0.027728718,0.011314527,-0.012003822,-0.028378785,0.025688853,-0.027325228,0.012082279,-0.027504558,0.04073006,-0.012754762,0.021878116,0.030754892,-0.06608267,-0.016195634,-0.03938509,0.0008546139,-0.025554357,0.009829461,0.015422278,-0.0034044455,-0.033960395,-0.005542381,0.02011845,0.06397556,-0.024007645,0.013393621,0.03236885,-0.019188182,-0.0131134195,-0.023940397,0.022091068,0.050167236,-0.019199392,-0.019423552,-0.008030568,0.02806496,-0.012183151,-0.014178185,-0.0014031079,0.001091384,0.0047970456,-0.004334714,-0.0081146285,0.009823857,-0.008960837,-0.04070764,0.006001911,0.011264091,-0.010826977,-0.00739171,-0.0066799982,0.0033708212,-0.06760696,0.0031046302,-0.018201875,0.003917214,0.02674241,-0.04113355,0.040909387,0.03380348,-0.031248046,-0.0034184556,-0.01720436,-0.010782145,-0.0043375157,0.0040489086,-0.019804627,0.0078232195,-0.000544291,0.0030401838,-0.024635296,-0.0057609384,-0.0066239582,0.008658219,-0.03440872,0.016834492,0.020499526,0.01506362,-0.03606751,-0.027213149,0.001550914,0.024142142,0.023223082,-0.03162912,0.009554864,-0.002643699,0.014940332,0.014066104,-0.024859456,-0.068324275,-0.00839483,0.019468384,0.008277146,0.008899192,0.022763552,0.04415972,-0.000065672175,0.011544293,-0.0062372806,0.017394895,-0.028647779,0.023850733,0.020790935,-0.00030699553,0.007251609,-0.0045812908,0.06635166,-0.019176975,0.04158187,-0.012093487,-0.017977715,0.0122504,0.014223017,-0.006203656,-0.009666944,-0.01403248,0.0050296127,-0.03420697,0.03709865,-0.012440937,0.0042506536,-0.014155769,-0.00029491185,-0.0077391593,0.021687578,0.0040377006,-0.0075766426,0.004163791,0.022416102,-0.050122403,0.0043711397,-0.028401202,0.003723875,0.008176274,-0.011062346,-0.009521239,0.00025690955,0.0047550155,-0.018997647,0.023626572,-0.007924092,0.0065791258,-0.04420455,-0.0052313576,-0.0035809723,0.0031438584,0.003931224,0.016419794,0.025262946,-0.024837041,-0.035372607,0.004362734,0.0080025485,-0.0078120115,0.007711139,-0.01880711,-0.007212381,0.009616508,-0.009627716,-0.011129594,0.024747377,-0.029992744,0.013259124,0.019793417,-0.021597914,0.0010136281,-0.023379995,-0.0015789341,0.027751135,-0.002869261,0.038600527,-0.014245433,0.018930398,0.040079992,0.000497007,-0.02656308,-0.020488318,-0.009633319,0.0047494117,0.012900467,0.018201875,-0.05657824,-0.011258488,-0.0156128155,0.027616637,-0.03093422,-0.048149787,-0.015825769,-0.009666944,-0.013954024,-0.02828912,-0.034543213,-0.01518691,-0.009907917,0.0038639756,-0.0073300656,0.004841878,0.021362545,-0.011667581,0.026988987,0.015724896,-0.025285363,0.0040545124,0.05187086,-0.031830866,0.0078120115,-0.006848119,0.019871874,0.020152075,-0.00119716,-0.062809914,-0.000040585404,-0.0343863,0.01506362,-0.039138515,-0.016184425,0.018269124,0.0041021467,-0.005861811,-0.011460233,0.015724896,0.008831944,-0.015780935,-0.005884227,-0.0064446293,-0.008658219,0.0031494624,0.0051753176,-0.042478513,0.023335163,-0.043038916,-0.012138319,-0.017058654,-0.0020440684,-0.028468449,0.024680128,-0.04480979,0.014357514,-0.0029869457,0.0022780364,-0.007968924,-0.01397644,-0.037591804,0.015859392,0.0036594286,-0.018997647,-0.00028527994,-0.018291539,-0.011353755,0.024769792,0.0175406,-0.028199457,-0.0622271,0.0018157043,-0.019625297,-0.0062092603,0.015825769,0.01891919,-0.0066687902,-0.0034632878,0.021183217,0.007593455,-0.004354328,-0.020544358,-0.041940525,-0.011925367,-0.020634022,-0.024254223,0.0023677007,0.006892951,-0.019681338,0.026988987,-0.00039158127,-0.08033931,0.009005669,0.012810802,-0.031360127,-0.04180603,0.0016377765,0.0014430366,0.015624023,0.0027193534,-0.023648988,0.030620396,-0.005447113,0.014469594,-0.018941605,0.026518248,-0.024680128,0.03427422,-0.023469659,-0.0073020454,-0.022326438,-0.0329965,-0.0370314,-0.045101196,0.047073815,0.00032555885,0.00747577,-0.002401325,0.024814624,0.02817704,-0.016072346,0.023895565,0.0073244614,0.0185157,-0.026876906,-0.017383687,0.037860796,0.019120935,0.014940332,0.0004731899,-0.023783484,0.0075990586,0.014682547,-0.021855699,-0.02633892,0.005298606,0.041649118,-0.018011337,0.0057945624,0.0026759221,-0.015601607,-0.006427817,-0.02093664,-0.020376237,-0.015590399,0.04375623,0.049718913,-0.006881743,0.009958353,-0.008775904,-0.041828446,-0.010036809,0.0093643265,-0.0015565181,-0.002399924,0.020656439,-0.039071266,0.001532701,-0.0037687072,0.016587915,-0.005096861,0.022001404,0.02398523,0.040348984,0.058685355,0.011079159,-0.012171944,0.016610332,0.0010367447,-0.0036538246,0.010036809,-0.015713688,0.0019067697,0.014626507,0.012104695,0.004827868,-0.0020889004,-0.00042240342,0.0067920787,0.0025946638,0.031427376,0.04985341,-0.045235693,-0.031404957,-0.002388716,-0.02835637,-0.012519393,-0.07173153,0.028132208,0.026719993,-0.055053946,0.04940509,0.01055238,0.02294288,-0.038510863,-0.008988857,0.027280396,-0.012922883,0.012452145,0.008916005,-0.033624154,0.028715027,-0.02150825,0.006001911,0.019591672,-0.0054246965,-0.005001593,0.01915456,-0.010451508,-0.008456474,0.027863216,0.013707447,-0.0091177495,0.0066351662,-0.02075731,-0.026159592,0.005096861,-0.01144342,-0.025576772,-0.010160098,0.032906838,-0.012071071,0.04400281,-0.011421004,-0.0449667,0.008237918,-0.012485769,0.011869326,0.017002614,-0.009812648,0.013539325,-0.0031382544,-0.012127112,-0.011090366,-0.0131806685,-0.0034548817,-0.016419794,0.035776097,0.021934155,-0.0058898306,-0.04922576,0.019423552,-0.015399862,-0.009807045,-0.017484559,0.025554357,0.054829787,-0.013651406,-0.02696657,-0.023133418,0.028782275,-0.019883083,0.05308133,0.027347645,-0.005309814,0.013954024,0.015601607,-0.01690174,0.01616201,-0.02099268,0.0042898813,0.00030997267,0.017563015,-0.014761003,-0.027414894,0.004662549,0.002404127,0.027795967,0.015265365,0.005895435,0.009005669,0.021541875,-0.00075163995,0.024299055,0.036448583,-0.016464626,-0.0017428519,0.008562951,0.007481374,-0.019771002,-0.019132143,0.030979052,0.013427245,0.022113485,-0.011645165,-0.009711776,0.022124693,-0.024142142,0.016072346,-0.039183345,0.0067416425,0.0156128155,0.010395467,0.0078456355,-0.026585497,0.029768584,0.0018563335,-0.029992744,0.041940525,0.011000702,0.022124693,-0.008663824,0.017294023,0.0066968105,0.008691844,-0.017271606,-0.01518691,-0.031023886,0.0029421134,-0.03472254,0.023200667,0.0035025158,-0.019838251,-0.008843152,0.052946832,-0.051422536,-0.004600905,-0.004665351,-0.011678789,-0.05998549,-0.009156978,0.033422407,-0.0036202006,0.023200667,-0.0071451324,0.03232402,-0.032637846,-0.02633892,0.0013617782,0.029813416,0.03474496,-0.012754762,0.0035697643,0.018033754,-0.07711139,0.011236072,-0.024433551,-0.014223017,0.005979495,-0.031898115,-0.0051220795,-0.027168315,0.022416102,0.02725798,-0.042456098,0.043330327,-0.008669428,0.02633892,0.024007645,0.020320196,0.0055788076,0.010770937,0.02093664,0.007021844,-0.040281735,-0.0031242443,-0.017058654,0.021463418,-0.002877667,-0.01638617,0.012822011,-0.014458386,0.027437309,-0.008271541,-0.007873656,0.015130869,0.028311538,-0.0047746296,0.019860666,0.009997581,0.008109025,-0.009633319,-0.036134757,-0.024523215,-0.019905498,-0.017966505,0.0015831372,-0.019670129,-0.016442211,0.032503348,0.013998856,0.02795288,-0.011398588,-0.030844556,-0.017170735,0.02725798,-0.00003176344,-0.046401333,0.011521877,0.02593543,0.0185157,-0.0075430186,-0.0022640263,-0.0027894038,-0.029297845,0.00014658029,0.027213149,0.008630199,-0.016318923,0.020028787,-0.031180797,-0.016105969,0.0043207034,0.032974087,-0.036112342,0.0013659812,0.005979495,-0.008988857,-0.02351449,-0.013673822,0.00197682,-0.0006948992,-0.034565628,0.010709293,0.001524295,-0.028132208,0.017910466,0.033310328,0.0018787496,0.031651538,0.011084762,0.0131134195,0.0026773233,-0.01454805,-0.015556775,-0.043913145,0.0032531368,-0.047925625,0.039654084,0.024702545,0.030822141,-0.029365094,-0.007033052,0.0010654654,0.06998307,0.039026435,-0.03391556,0.0076214746,-0.043509655,-0.017439727,-0.0067584547,0.054471128,-0.019120935,-0.018101003,0.01834758,0.041738782,0.048553277,0.016856909,0.036896903,-0.007649495,0.0055395793,-0.0042982874,-0.002612877,0.011208051,0.0026535061,0.02220315,0.027190732,-0.016296506,-0.0073524816,0.00928587,-0.053260658,-0.01017691,0.000987009,-0.0066799982,0.03019449,-0.06644133,-0.02656308,-0.00393963,-0.0055479854,0.016632747,0.019132143,0.006130804,-0.0051276833,-0.014604091,0.012261608,-0.034363884,0.020544358,-0.024411134,-0.02029778,0.012160735,-0.0029729356,-0.050481062,-0.052498512,0.01017691,-0.023469659,0.013707447,0.03526053,-0.018235499,-0.064110056,-0.005088455,-0.018706238,-0.014906708,0.009039293,0.011017514,-0.008579763,0.026473416,0.0068873474,0.014514426,0.03317583,-0.01437993,0.020051204,0.009969561,-0.0058281864,0.0130237555,-0.010204931,0.0131582515,0.0103450315,-0.004620519,0.029589254,-0.0131582515,0.036246836,0.012530601,0.0020580783,-0.009762213,-0.010395467,-0.052812338,-0.0040629185,-0.0027978097,-0.033444826,-0.01695778,0.0036089923,0.019502008,-0.0077279513,-0.0071507366,0.012631473,-0.006786475,0.013886775,0.00021943262,-0.03019449,-0.025061201,-0.0091177495,-0.006366173,-0.00097510044,0.036089923,-0.04467529,0.01506362,0.013920399,-0.001992231,-0.012956507,-0.014648923,-0.0025049995,-0.0059963074,0.008540534,0.029432341,-0.015366238,0.0038583716,0.016352547,-0.03662791,0.0130237555,-0.0050184047,-0.0014808638,-0.022640264,-0.061375286,0.018560532,-0.023424827,-0.003740687,-0.010770937,0.008736676,0.009840669,-0.012721138,-0.052184686,0.021620331,0.042837173,-0.02956684,-0.0055732033,0.011213655,-0.014671339,0.035686433,0.0042422474,0.01678966,0.04144737,0.011432212,0.0065791258,-0.017753553,-0.0053798645,0.0006451634,-0.019445969,-0.017215567,-0.005503153,0.0042226333,-0.037255563,0.009963958,0.010922246,0.016991405,-0.03420697,-0.006354965,-0.032749925,0.012956507,0.009325098,0.03185328,-0.0071339244,-0.017338855,-0.012855634,0.021351337,0.011146407,0.03071006,0.012295232,0.0015957463,0.00032363247,0.0029561236,-0.028468449,0.035708852,-0.01259785,-0.024007645,-0.028558115,0.010311407,0.003516526,0.043711398,-0.019468384,-0.038264286,0.014480802,-0.008445267,0.0023312746,-0.018201875,0.008534931,0.026473416,-0.016094761,-0.0071843606,-0.0040713246,-0.04783596,0.014884292,-0.036314085,0.015287781,0.006825703,0.0039228178,-0.018773485,-0.023895565,-0.01190295,-0.018896773,-0.0029337073,-0.011981406,-0.029073684,-0.03405006,0.013147044,-0.04456321,-0.021216841,-0.006808891,0.00008033896,-0.00015778834,0.02541986,0.041312877,-0.00483067,0.0010360442,-0.011880534,0.032346435,-0.032749925,-0.00352213,-0.020566775,0.012384896,-0.0027837998,0.015646439,-0.010916642,-0.010019998,-0.0062092603,-0.016049929,0.033736233,0.007246005,0.03824187,0.021205632,0.025733685,0.014503218,-0.027325228,0.02288684,-0.032458514,-0.040931802,0.0028104188,0.000030471889,0.009151374,0.038197037,0.007660703,-0.029634086,0.014615298,0.015646439,-0.014604091,0.034431133,-0.010950265,-0.007458958,-0.0034352676,-0.0402369,-0.007873656,-0.008333186,0.011813286,0.0031326502,-0.02432147,0.029185764,-0.012889259,0.017652681,-0.00043571298,-0.002409731,0.00090925314,0.0068985554,0.026182007,-0.008097817,-0.018706238,-0.009795836,-0.010059225,-0.0031802845,0.011421004,0.0065679178,0.0035977843,0.027818382,0.022382477,0.015825769,0.0029645294,-0.03346724,0.00041434763,-0.007033052,-0.0003754697,0.014368721,0.008378018,0.03983341,0.00871426,0.0030289758,0.00039088077,-0.00017915369,-0.013942815,-0.032817174,0.018538116,-0.0073132534,0.033332743,0.00017328697,0.007884864,0.018560532,-0.014940332,-0.0092298305,0.007699931,0.002830033,0.011779661,-0.02479221,-0.0026983384,-0.013539325,0.0382867,-0.022685096,-0.008859964,-0.004130167,-0.0062316763,0.018616572,-0.012059863,0.009706172,-0.005917851,-0.035843346,-0.012866843,0.0033119791,0.010339427,0.003917214,-0.00082589325,0.037928045,-0.03909368,-0.002378909,-0.018291539,0.014917916,0.002184169,-0.018683821,-0.00022013312,0.0021267277,0.025330195,-0.009151374,0.03949717,0.008557347,0.016711203,0.008512515,-0.01046832,0.027033819,0.065813676,-0.055233274,0.022091068,0.043733817,0.026832074,-0.02582335,0.03427422,0.0058281864,0.0038415594,0.018896773,0.007257213,-0.022438519,0.035036366,-0.0175406,-0.0165655,-0.02329033,-0.009812648,-0.009392347,-0.0017022227,-0.044921868,-0.0060411394,-0.015545567,-0.0011004905,0.008703052,-0.016756035,-0.016643956,-0.013057379,-0.019176975,0.024680128,0.006848119,0.017338855,0.010221742,-0.067427635,0.03996791,0.0055367774,0.004769026,0.0542918,0.0042114253,-0.031180797,-0.008422851,0.020107243,0.008843152,-0.0012307841,0.008321978,-0.013707447,-0.019905498,0.030015161,0.039474756,-0.031337712,-0.0045616766,0.015455903,-0.052005358,-0.032906838,0.016184425,-0.03059798,-0.011432212,0.004811056,-0.03474496,0.01179087,0.0021253268,-0.014973956,-0.03835395,0.020813351,-0.007117112,-0.003073808,-0.000023795217,0.00839483]},{"id":"guide-sending-without-reply-2","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Sending to a specific channel (e.g. logging)\nUse message.sendTo(channelId, payload) to send to another channel—handy for logging, announcements, or forwarding. You only need the target channel ID.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst LOG_CHANNEL_ID = process.env.LOG_CHANNEL_ID; // Your log channel's snowflake\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!report' && message.guildId && LOG_CHANNEL_ID) {\n const embed = new EmbedBuilder()\n .setTitle('User report')\n .setDescription(message.content)\n .addFields(\n { name: 'Author', value: message.author.username, inline: true },\n { name: 'Channel', value: `<#${message.channelId}>`, inline: true }\n )\n .setTimestamp();\n\n await message.sendTo(LOG_CHANNEL_ID, { embeds: [embed] });\n await message.send('Report logged.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.008324626,-0.01822928,0.005267743,-0.012522313,0.00484031,0.021436501,-0.058390293,0.013559943,0.0035255852,0.025846431,-0.006726911,0.047730997,0.019137206,-0.023936247,0.017168067,-0.0043892944,-0.014644738,-0.015316839,-0.006738702,0.032944765,-0.012192157,0.058720447,-0.0010273131,0.0505609,-0.044806767,-0.03542093,-0.008519181,0.045726486,-0.027308546,-0.025681352,0.051551364,-0.015823863,-0.003445994,-0.023830125,0.013949054,0.039618615,0.024643723,0.04577365,-0.051928684,0.009698307,0.006550042,0.008047531,0.029713962,0.030303525,-0.015906403,0.034383297,-0.058012974,0.011926854,0.014291001,0.05263616,-0.03966578,0.024455061,0.0007258991,0.0524475,0.0046428065,-0.03685946,-0.02678973,-0.0183354,-0.030044116,0.048815794,-0.020139463,-0.025398362,-0.026931226,0.040184595,-0.0056892806,-0.0051645697,-0.046551872,0.020056924,0.030869504,0.0772563,0.021943524,-0.005238265,0.025799265,-0.03976011,-0.0048491536,0.0072987867,0.0024260506,0.015092806,0.009344569,-0.05607921,0.018276446,0.00453079,-0.10706459,-0.023275936,-0.06541788,0.019490944,-0.035397347,-0.060324058,0.007917828,-0.04650471,-0.021731282,-0.024195654,-0.044853933,-0.0050378134,0.07263413,-0.004763667,-0.0092030745,-0.01094818,0.005491777,0.020504992,0.09093416,-0.049334608,-0.08876456,-0.040750574,0.034996442,-0.003145317,0.023535345,0.040656246,0.02321698,-0.029077234,-0.04162313,0.002608815,0.0266954,0.005589055,0.009592186,0.01221574,0.029855456,-0.044217207,0.04924028,-0.0060223835,-0.043438982,0.010883328,0.06305963,-0.026907643,0.036576472,-0.06239932,-0.02895932,-0.035468094,-0.02650674,0.022026064,0.074001916,-0.023606092,0.029572466,0.03494928,-0.03308626,0.0076937936,0.023535345,0.0063967556,-0.01588282,-0.030680845,-0.006632581,-0.0018733356,0.033251338,-0.005138039,0.002025148,0.0039176443,-0.0734831,0.010688772,0.0028077925,-0.011637968,-0.020316333,0.008625302,-0.06438025,0.017403891,0.010075627,0.031482648,0.030091282,0.035279434,-0.041882537,-0.040444,-0.051928684,-0.024455061,0.014255627,-0.04209478,-0.04820265,-0.038934723,0.016590295,-0.015646994,-0.026294498,0.04006668,-0.03157698,-0.017085528,-0.0071396045,-0.0035373764,0.012852468,-0.035963327,0.0027576797,-0.055466063,-0.0038999575,0.039618615,-0.0060076443,0.028039604,-0.02903007,-0.051079717,-0.01587103,0.028558418,-0.013960846,-0.015293257,-0.0021961213,0.023700422,-0.049523268,-0.0024776375,0.0069686314,0.0076112547,0.008460226,-0.00657952,0.05112688,0.035020027,0.013206205,-0.039901607,-0.018571226,0.009539125,0.018288236,-0.03787351,-0.03485495,0.023429222,0.0006643635,0.029855456,-0.011508265,-0.0057659233,0.024855964,0.04452378,-0.003953018,-0.010600338,-0.074709386,0.0018379618,-0.050325073,0.014515035,-0.0396422,-0.025893595,-0.07249264,0.017238814,0.03787351,-0.03315701,-0.011296022,0.04400496,0.01992722,-0.045915145,-0.016036106,0.004940536,0.048532803,0.05301348,-0.0077586453,-0.03664722,0.05122121,0.013831141,0.02914798,0.042660758,-0.013371283,-0.035185102,-0.009627559,-0.043957796,0.045066174,-0.031128911,-0.040161014,-0.017179858,-0.017038362,-0.06324829,0.016885076,0.04218911,0.080652185,-0.0075994637,0.022792496,-0.029289477,0.036317065,-0.052777655,0.013276952,-0.015187136,0.033133425,-0.022155767,0.024124907,-0.016177602,-0.02293399,0.033133425,-0.021212468,-0.03167131,0.0020133567,0.018252863,-0.0062080957,0.026860477,-0.008159548,-0.013500987,0.006850719,-0.0024555288,-0.036034074,0.04275509,0.012522313,-0.030515768,-0.01605969,-0.033062678,-0.04221269,-0.0014761176,-0.015764907,-0.0075051337,0.0047725104,-0.009804429,-0.011856106,-0.0039648092,-0.0025867065,0.034831367,-0.0067976583,0.012133201,-0.016295513,-0.029525302,-0.014715486,0.044995427,0.053532295,0.01589461,0.018099576,0.04006668,-0.022415174,0.014220253,0.02029275,-0.028181098,0.011024823,0.021412918,-0.008253878,-0.03789709,0.041858952,-0.04688203,0.004946431,0.008796276,-0.04709427,-0.009108745,0.00086002465,0.00500244,0.017804794,0.020092297,0.020092297,0.013394865,0.030232776,-0.017344935,0.016000733,-0.0697099,-0.0207644,-0.021483665,0.033439998,-0.015175344,0.01009921,0.0505609,0.036411393,-0.023995204,0.021295005,0.032944765,0.040844906,0.0091677,-0.013748603,0.013312327,-0.0018232227,0.02931306,0.013123667,0.01015227,0.005441664,-0.017710464,-0.023075486,0.029548883,0.024360731,0.021825612,-0.02518612,-0.024407897,-0.01569416,0.029265894,-0.026483158,-0.057682816,0.012251114,0.012056557,-0.0003636865,-0.026247334,0.011850211,-0.028110351,-0.03711887,-0.020976642,0.0070040054,0.013783976,0.022485923,0.0067799715,0.019007502,-0.021412918,0.021436501,-0.017545387,0.05806014,0.008808067,0.0024761634,0.038321577,-0.029006487,-0.009981297,0.0044394075,0.005600846,-0.012321861,0.06315396,0.020787982,0.038109336,-0.039123382,-0.031152494,-0.02921873,0.04329749,0.010228913,-0.0035845414,-0.0023390902,-0.019007502,-0.011402143,-0.0019013399,-0.01100124,0.030633679,0.017734047,0.030586515,0.027237799,0.023712212,0.00807701,0.0017583709,0.03733111,0.01615402,-0.021448292,-0.0024732156,0.0064910855,0.012133201,-0.017793003,0.011237065,-0.015929986,0.015540874,0.023594301,-0.009957715,0.02003334,0.047613088,-0.015246092,-0.046198137,0.015611622,0.012545895,0.0035491677,-0.036906626,0.008265669,-0.032756105,0.021082763,-0.028228264,0.016719999,-0.010676981,0.050325073,-0.051740024,0.014915938,-0.07720914,-0.07720914,-0.037260365,0.035751086,0.008713737,0.026082255,-0.030492185,0.006090183,-0.03353433,-0.009191283,0.023782961,-0.012640225,-0.017333144,-0.032732524,0.019939011,0.008454329,0.0022992946,-0.019160789,0.022238307,-0.004188843,0.023452805,-0.04471244,-0.076265834,-0.008283356,-0.012557686,-0.056032043,-0.0072575174,-0.020316333,0.031529814,0.014137714,0.032850437,-0.017651508,-0.007770437,0.01009921,0.008283356,-0.003793836,0.004348025,-0.028912157,0.022332637,-0.039146964,-0.008678364,0.008648885,-0.010671086,0.010794894,0.0067976583,-0.026058672,-0.02057574,-0.008088801,-0.06173901,0.013701438,0.030940251,0.04454736,0.018913172,-0.012050662,-0.027756613,-0.037354693,0.037802763,0.045915145,-0.04292017,-0.011260648,-0.001820275,-0.03730753,-0.004999492,0.03751977,-0.011319605,0.018488687,-0.009150013,-0.032190125,-0.0026309236,0.056173537,-0.0143381655,-0.02950172,-0.008542764,-0.041245807,0.017120901,0.02085873,0.0066031027,-0.03252028,-0.027379293,-0.007587672,0.00042227432,0.012887841,0.0014495874,-0.005760028,-0.025704935,-0.0073105777,0.021672325,-0.041245807,-0.0067622843,-0.031907134,-0.01945557,0.0041033565,0.024879547,-0.008301043,0.015941776,-0.0059251054,0.028393341,-0.0052913255,-0.0041799997,0.008359999,-0.023818335,0.006709224,-0.04183537,0.0119386455,-0.014279209,-0.0103055565,0.01758076,-0.07423774,-0.014456078,-0.02443148,0.019714978,-0.025044626,0.01580028,-0.01212141,0.013512778,-0.034571957,-0.011154527,0.0031836387,0.03957145,-0.0034047249,0.007959097,0.022120394,-0.05065523,0.0005280271,-0.016566712,0.020658279,0.029006487,-0.012168575,-0.018712722,-0.011720507,0.0015932933,-0.011472891,0.008301043,0.016330888,-0.0027444146,-0.021967107,-0.011331395,0.0060548093,-0.0059133144,0.005727602,-0.032095794,0.023594301,-0.0030421438,0.0011186952,0.0023155077,0.018193906,0.0186066,-0.04419362,0.0060046962,-0.03466629,0.008413061,0.021860987,-0.03928846,0.030680845,0.025138956,-0.01748643,-0.024785217,-0.033227757,-0.018547643,-0.023488179,0.017887333,-0.013524569,0.0024098377,-0.006992214,-0.0023936247,-0.02311086,-0.006774076,0.0013176727,0.0046369107,-0.014019802,-0.009539125,0.0136424815,0.0044394075,-0.02641241,-0.03174206,-0.009108745,0.010718251,0.023806544,-0.021401128,-0.0005202891,0.005683385,-0.0003708718,-0.010128688,-0.029525302,-0.07640733,-0.011455204,0.02057574,0.016908659,-0.003908801,0.03110533,0.052494667,0.005329647,0.012699181,-0.0029360224,-0.0054062903,-0.016036106,0.024407897,0.009008518,-0.008784485,-0.009515543,-0.023924455,0.024089534,-0.01109557,0.027214216,-0.015305049,-0.013701438,-0.015328631,0.0036611846,-0.0051350915,0.008625302,-0.013984428,0.018630182,-0.014904146,0.04296733,-0.021412918,-0.016944032,-0.00996361,-0.01019354,-0.006237574,0.011484682,0.0057511847,-0.018807052,0.017981663,0.034218222,-0.011525951,0.01907825,-0.04296733,-0.0136660645,0.03497286,-0.00076716853,-0.015045641,-0.025987925,0.00550062,-0.0071690828,0.043721974,0.010488321,0.006939153,-0.059050605,-0.014727277,-0.02745004,0.0073105777,0.011466995,0.013901889,0.003687715,-0.016743582,-0.0207644,-0.009486064,-0.013406657,-0.018535852,0.0026957756,0.001424531,0.02528045,0.0008135966,-0.011620281,-0.010223018,0.024313567,-0.020929476,0.022533087,-0.00050039135,-0.008018053,-0.008189026,-0.020964852,0.0034872636,0.022238307,0.0058278274,0.01842973,0.013147249,0.030562932,0.038934723,0.00068131345,-0.055607557,-0.032567445,0.00048602078,-0.0019263963,0.007452073,0.023983411,-0.06419159,-0.015281466,0.0035992805,0.02077619,-0.030751592,-0.049476106,-0.005303117,-0.003843949,-0.025704935,-0.048910122,-0.026082255,-0.01785196,-0.037095286,0.0063083214,-0.004695867,0.0059545836,0.03447763,-0.020363497,0.031647727,0.002623554,-0.030751592,-0.01588282,0.052588996,-0.009433004,-0.021495458,-0.030327108,0.007799915,-0.0031895344,0.021188885,-0.060559884,0.004350973,-0.03733111,-0.014220253,-0.015611622,-0.02556344,0.012192157,0.013383074,-0.01005794,-0.021389335,0.016743582,0.0074874465,-0.00259555,0.0005917736,-0.0050849784,-0.013819351,0.00036294956,0.0070452746,-0.056928176,0.0186066,-0.029265894,-0.02087052,-0.016979408,0.0013397813,0.0041652606,0.0006750493,-0.041670293,0.010912806,-0.008177235,0.02987904,-0.024360731,-0.008973145,-0.047872495,0.0019087093,-0.00014471923,-0.023594301,-0.009108745,-0.024950296,-0.0036818192,0.01457399,0.014680112,-0.048910122,-0.111969754,0.015175344,-0.0071572918,-0.009144118,-0.004177052,0.010830267,0.0025351197,0.009344569,0.025044626,-0.018099576,-0.008955458,-0.019726768,-0.051645696,-0.028487671,-0.040349673,-0.017899124,0.00096098724,0.0028564315,-0.02301653,0.018193906,-0.0014341114,-0.10074448,-0.013984428,0.015163554,-0.05207018,-0.05612637,0.019620648,-0.0003266546,0.023499971,-0.0010140479,-0.021766655,0.014915938,-0.013512778,0.001217447,-0.0186066,0.04473602,-0.0136188995,0.031883553,-0.0081713395,-0.0071455003,-0.001724471,-0.02714347,-0.03664722,-0.027025556,0.037543356,-0.00021371648,0.024643723,0.007723272,-0.0054947245,0.0415288,-0.024973877,0.03167131,0.019467361,0.0136188995,-0.023747588,-0.023099069,0.03476062,0.003938279,-0.013996219,-0.00401787,-0.043863468,0.012321861,-0.00094182644,-0.018252863,-0.04145805,0.022981156,0.02914798,-0.018877799,0.008336417,0.0029124399,0.0009860437,-0.00079001405,-0.019809308,-0.020752609,-0.0069686314,0.031270407,0.039453536,-0.00084086385,-0.0018482791,-0.0041682087,-0.04360406,-0.0024850068,0.008943667,-0.008413061,0.0067976583,0.01278172,-0.040632665,-0.016826121,-0.04419362,0.011402143,-0.009975402,0.029643213,0.016661042,0.020469619,0.05626787,0.012557686,-0.0021592735,0.016201183,-0.0049257968,-0.014397122,0.00048196752,-0.027709449,0.017557178,0.02302832,0.022073228,0.0029905569,-0.004695867,-0.007870662,0.018276446,0.008330521,0.016201183,0.035114355,-0.039217714,-0.033793736,-0.0045072073,-0.009904654,-0.0022712904,-0.0543341,-0.011543638,0.0102466,-0.060276892,0.03605766,0.008389478,-0.011455204,-0.02209681,-0.014444287,0.014043384,0.008000366,0.02650674,-0.005188152,-0.031034581,0.018111367,-0.0150102675,-0.016790746,0.010240705,-0.025115373,-0.013807559,0.0045602676,-0.0020222003,0.0050584483,0.020469619,0.02603509,0.0049759094,-0.008766797,-0.020469619,-0.027756613,0.021636952,-0.020905895,-0.02012767,-0.008654781,0.032213707,-0.020705443,0.045561407,-0.013783976,-0.03214296,0.013453822,0.002896227,0.0257521,0.0122982785,-0.034359716,0.022485923,-0.008342313,-0.00057408673,-0.0003535534,-0.019703187,0.013217997,-0.006726911,0.038887557,0.027237799,-0.010506008,-0.054381266,0.010977658,-0.0046428065,0.0068448232,-0.007104231,-0.012416191,0.051174045,-0.008920084,-0.0043362337,-0.040278926,0.004952327,-0.02518612,0.047165018,0.009987192,0.018500479,-0.00005273823,0.011319605,-0.016826121,0.0088670235,-0.01870093,0.014550408,-0.019467361,0.01756897,0.009692411,0.0059811138,-0.0022432862,0.0065618334,0.05791864,0.013583525,-0.0053414386,0.003575698,0.032850437,-0.0040149223,0.006119661,0.03591616,0.013571735,-0.012021184,0.0063201124,0.012710973,-0.018559435,-0.009191283,0.019868264,0.0031099434,0.023794752,0.0035226373,-0.013052919,-0.0072693084,-0.03174206,0.020363497,-0.040373255,0.01484519,0.019196162,0.008242087,0.031506233,-0.017073737,0.013901889,0.00831873,-0.053343635,0.05159853,0.005238265,0.029737543,0.025681352,0.014008011,-0.014715486,0.03091667,-0.018311819,-0.019101832,-0.025893595,0.004701763,-0.024761634,0.0328976,-0.027662283,-0.0058101406,0.0026309236,0.036977373,-0.038934723,-0.012899633,0.0014908568,-0.021153511,-0.069992885,-0.007511029,0.029619632,-0.004701763,0.014408913,-0.01775763,0.009698307,-0.042424936,-0.033958815,0.0067504933,0.011549534,0.032072213,-0.0046752323,0.0054210294,0.015729534,-0.058720447,0.0024511071,-0.02219114,-0.0053797597,-0.0019809308,-0.037000958,0.023134442,-0.025445528,0.020846939,0.020045133,-0.04707069,0.027591536,0.010181748,0.0033103947,0.021507248,0.02565777,0.0173921,-0.0034194638,0.024738053,-0.009102848,-0.044476613,-0.023488179,0.012475148,0.004412877,-0.026483158,0.004887475,0.021059182,0.0033280817,0.0207644,-0.00629653,0.0032249081,-0.016271932,0.014503243,0.0016964668,0.014090549,-0.0077291676,0.009444795,-0.02039887,-0.0025218546,-0.027308546,-0.023075486,-0.024195654,-0.014491452,-0.030350689,-0.0035845414,0.0064321295,0.0055772634,0.038580984,-0.006284739,-0.036623638,-0.03197788,0.021342171,0.006992214,-0.034265388,0.0064321295,0.023841918,0.017510014,-0.023004739,-0.013076501,-0.016319096,-0.03994877,-0.02256846,0.028016021,0.005459351,-0.028841408,0.023405641,-0.0136660645,0.0026707193,0.033463582,0.024289984,-0.025138956,-0.009238448,-0.014326374,-0.004796093,-0.029525302,-0.0028682228,0.0022668687,-0.010052045,-0.030397855,0.0032455428,0.008472016,-0.025728518,-0.008029845,0.016495965,0.013913681,0.030279942,-0.008584034,-0.0070511703,-0.012086036,-0.00860172,-0.022651,-0.0362699,-0.031624146,-0.041245807,0.048438475,0.024761634,0.017545387,-0.021601578,0.0065618334,-0.0136188995,0.06683283,0.04999492,-0.021389335,0.023334892,-0.045443494,-0.007640733,0.008778589,0.054428432,-0.005724654,-0.027615119,0.031128911,0.012416191,0.060842875,0.0059545836,0.019797517,-0.0009300352,0.0060489136,-0.0068330322,0.02236801,0.04426437,0.0046162764,0.039429955,-0.007799915,0.00049854896,-0.0051056133,0.017168067,-0.013477404,0.004065035,0.010164062,-0.005839619,0.0324967,-0.04202403,-0.0136896465,-0.0060666003,-0.014208462,0.001756897,0.012640225,-0.00014379804,-0.008012158,0.00041232543,0.01654313,-0.05282482,0.028086768,-0.007852975,-0.01268739,-0.003098152,-0.012251114,-0.020882312,-0.03138832,-0.002863801,-0.021165302,0.0061727217,0.027332129,-0.013571735,-0.051645696,-0.029949786,0.006709224,-0.023287728,-0.003749619,0.011071988,-0.019880055,0.03270894,0.011808941,0.011791254,0.012828885,-0.0057629757,0.020068716,-0.0040444005,-0.008931875,0.010034358,-0.0024260506,0.027733032,-0.0064616078,0.0035167418,0.021471875,-0.00803574,0.007233935,0.020599322,-0.0037702536,0.006326008,-0.014173088,-0.047424424,0.00088287017,-0.008755007,-0.03327492,-0.025492692,0.025893595,0.013583525,-0.016283723,-0.009456586,0.003272073,-0.00095361774,0.022155767,0.01776942,-0.0047223973,-0.020646486,-0.0027267276,0.0013876833,-0.0071337093,0.034005977,-0.026860477,0.0036110717,0.014833398,0.00686251,-0.019514527,-0.012239322,-0.03136474,-0.021460084,0.0011349083,0.028841408,0.021188885,-0.006597207,0.039029054,-0.010895119,0.03252028,-0.004100409,0.0014532722,-0.011525951,-0.07848259,0.0065559377,-0.030138446,0.008802172,0.0070157964,0.0037879406,0.022426967,0.0017922707,-0.032260872,0.032874018,0.06522922,0.0075228205,0.0036582367,0.0030863609,-0.009161805,0.021129929,0.0008135966,0.026294498,0.02452581,0.020245584,0.004890423,0.007705585,-0.000980885,0.0062611564,-0.010105105,-0.028464088,-0.027827362,0.030586515,-0.014373539,-0.0123454435,0.008277461,0.024219237,-0.03504361,-0.0046074325,-0.02235622,0.014373539,-0.0074108033,0.016330888,-0.004872736,0.004619224,-0.0019322919,-0.000033807737,-0.00029901884,0.030232776,0.033840902,0.000042743297,-0.011349083,-0.000095619704,-0.008430747,0.049759094,-0.017616134,-0.018547643,-0.0070157964,-0.0068271365,-0.0034548377,0.031058164,-0.00018119843,-0.033628657,0.009739576,-0.007735063,0.013583525,-0.009957715,-0.008701946,0.008212609,-0.02301653,-0.019007502,-0.0031924823,-0.050325073,-0.020964852,-0.029006487,0.0096098725,-0.024973877,0.022981156,-0.0073459516,0.0027075668,-0.004297912,-0.009150013,-0.0060164877,0.0012734554,-0.031341154,-0.023405641,0.0010258391,-0.021295005,0.0010678455,-0.0058573056,0.008825754,0.002498272,0.021188885,0.033628657,-0.00022900828,0.03280327,-0.0046369107,0.036128405,-0.0143853305,-0.0037849927,-0.011195797,0.009256135,-0.011808941,0.007245726,-0.004542581,-0.0015932933,0.007735063,0.014998476,0.018394357,-0.0037525669,0.03119966,0.011384456,0.0016080324,0.0155055,-0.01588282,0.020563949,-0.021636952,-0.039807275,0.012793511,0.010511903,0.011891481,0.010794894,0.03320417,-0.013996219,-0.0035491677,0.020894103,-0.0133477,0.032543864,-0.028912157,-0.027898109,-0.007328265,-0.040892072,-0.006502877,-0.0069568404,0.0067328066,0.012510521,-0.021684118,0.026294498,-0.006709224,0.02537478,-0.017899124,0.013772185,-0.00237299,-0.014621155,0.014173088,-0.014491452,-0.006237574,-0.039052635,-0.024407897,0.0050112833,0.01446787,0.001407581,-0.010824372,0.025822848,0.052400336,0.012522313,0.015552665,-0.047589503,0.01983289,-0.023146233,0.0032308039,0.0043097036,0.014998476,0.01813495,0.017781211,0.005108561,0.010423469,0.0029655006,-0.013135457,-0.023476388,0.0026014457,-0.013229787,0.02405416,-0.03374657,-0.0006230941,0.020328123,-0.0043450776,-0.009692411,-0.013783976,0.0056037935,-0.021271423,-0.020835146,-0.013312327,0.02266279,0.03487853,-0.030610098,0.00049081095,-0.0112901265,0.0019706134,-0.012109619,-0.022238307,0.024478644,-0.011207587,-0.013972636,-0.008053427,-0.0074402816,0.008849337,0.0003174427,-0.006679746,0.034147475,-0.027119886,0.0099695055,-0.015328631,0.0077409586,-0.012628433,-0.037071705,-0.0017008885,-0.006550042,0.019809308,-0.0076466287,0.03608124,-0.0022727642,0.011343187,0.002992031,0.0008681311,0.018311819,0.047165018,-0.03891114,0.032001466,0.0415288,0.02414849,-0.021424709,0.044665273,0.021507248,-0.0020074612,0.02940739,0.0062198867,-0.02256846,0.022709956,-0.004006079,-0.017238814,-0.008878815,-0.00041490476,-0.022686373,-0.04313241,-0.03591616,-0.010629816,-0.012840676,-0.02641241,0.005079083,-0.028464088,-0.010488321,-0.0045632157,-0.019986177,0.04155238,0.0082244,0.021094555,0.003814471,-0.0657952,0.043674808,0.014715486,0.017085528,0.04942894,-0.0008872919,-0.02039887,0.008389478,0.025870012,0.010676981,-0.0064792945,-0.0032779688,-0.012557686,-0.023287728,0.02612942,0.03985444,-0.016189393,-0.0014031593,0.0155055,-0.029006487,-0.028133934,-0.012475148,-0.036340646,0.0013773659,0.006072496,-0.03898189,-0.0046103806,0.029077234,-0.03589258,-0.027874526,0.03664722,-0.018465105,-0.016142227,0.0044335118,0.003558011]},{"id":"guide-sending-without-reply-3","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: client.channels.send() — send by channel ID\nUse client.channels.send(channelId, payload) when you have a channel ID. Works even if the channel is not cached. No need to fetch first when you only need to send.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst ANNOUNCE_CHANNEL_ID = process.env.ANNOUNCE_CHANNEL_ID;\n\nclient.on(Events.Ready, async () => {\n if (ANNOUNCE_CHANNEL_ID) {\n await client.channels.send(ANNOUNCE_CHANNEL_ID, 'Bot is online!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0048906556,-0.027151287,-0.019871913,0.00905227,0.02304214,0.024257211,-0.03523702,0.031503446,0.0033497263,0.042461164,0.0031867966,0.018822536,0.022644483,-0.0026966264,0.008991516,0.0033607725,-0.036673013,-0.024389764,-0.021727657,0.009344991,0.0039186,0.041577477,-0.018546384,0.056467608,-0.033292912,-0.05668853,-0.011510025,0.030465113,-0.017430728,-0.037777625,0.0547886,-0.02302005,0.0087485025,-0.02293168,0.01688947,0.052491013,0.0012344004,0.043035563,-0.0675137,-0.0061692405,-0.04232861,-0.010753367,0.042637903,0.00829009,-0.019838775,0.04352159,-0.048470236,-0.018203955,-0.008152014,0.049133003,-0.026554797,0.023881644,-0.002987967,0.04758655,0.023064233,-0.019308563,0.008726411,-0.034021955,-0.024544409,0.03194529,-0.02730593,-0.028167527,-0.040053118,0.043985527,-0.005727397,0.021208491,-0.02556065,0.007986322,0.011863499,0.07113681,0.013586689,0.009924911,0.024964161,-0.039699644,-0.026952457,0.010891443,-0.025383912,0.022445653,0.02186021,-0.026753627,0.015994737,0.0015616408,-0.09641026,-0.06817646,-0.062432494,0.021164306,-0.03399986,-0.053507254,0.009588005,-0.019518439,-0.0014594644,-0.0056611206,-0.035877697,-0.006666315,0.05297704,-0.010471692,0.0048575173,0.0050729164,0.00694799,0.045178503,0.09932643,-0.056379236,-0.06879504,-0.014260501,0.029250043,-0.024411855,-0.006362547,0.05708619,0.0100132795,-0.00086711795,-0.063802205,-0.013299491,0.010002233,0.02093234,-0.017055161,-0.007627324,0.035678867,-0.029890716,0.029338412,-0.007942138,-0.028079158,0.032232486,0.053683992,-0.0064951,0.0006165098,-0.066939294,-0.0170883,-0.0074064024,-0.0338894,0.016348211,0.0841712,-0.0077433083,0.037379965,0.03631954,-0.039500814,0.017386544,0.0313488,0.0117530385,-0.029868623,-0.021142215,0.01026734,-0.020026559,0.03589979,0.050281797,-0.004454335,-0.032431316,-0.063846394,0.0070197894,0.0032724037,-0.023903737,-0.021959625,0.01268091,-0.03978801,0.011112365,-0.015541847,0.03441961,0.0013372671,0.034971915,-0.038793866,-0.036142804,-0.019871913,-0.04109145,-0.005705305,-0.045001764,-0.06366966,-0.015055819,0.003421526,-0.022887496,-0.00056852837,0.044493645,-0.012161744,0.012415804,0.01846906,0.004537181,0.013432044,-0.036385816,0.02186021,-0.044383183,-0.016911563,0.036584646,0.043897156,0.048470236,0.018579522,-0.053021226,-0.0008691891,0.016248796,0.014879081,-0.028167527,-0.0104882615,0.020589909,-0.03196738,-0.015497662,-0.012835555,0.00455375,0.01333263,0.003277927,0.068220645,-0.0019468731,0.00669393,-0.05103293,-0.024566501,0.004288644,0.0053932527,-0.035126563,0.002318298,0.0017880857,-0.015199418,0.01420527,-0.008549673,-0.005553421,0.023064233,0.023417708,0.012791371,-0.035789326,-0.07007638,-0.010035371,-0.012868693,0.021539873,-0.04330067,-0.041157726,-0.0720205,-0.013288445,0.021175353,-0.032342948,-0.024190934,0.028521001,0.014934312,-0.058500085,-0.012415804,-0.015199418,0.05165151,0.056069948,-0.020103881,-0.01957367,0.03437543,0.026510613,0.054523494,0.0259804,-0.026157139,-0.03128252,-0.009880726,-0.03380103,0.017585373,-0.025162991,-0.022103224,-0.0103778,-0.0030597665,-0.049133003,0.036496278,0.016834239,0.06048838,-0.018645797,0.024787422,-0.029382596,0.014901173,-0.0060145953,0.0353033,-0.005034255,0.03194529,-0.01561917,0.026002493,-0.015398248,-0.004247221,0.017276082,-0.05103293,-0.037291594,-0.006461962,0.01993819,-0.019043457,0.01491222,-0.016547041,-0.0183586,0.008069168,-0.010571107,-0.039500814,0.038815957,-0.005467814,-0.04789584,-0.015696492,-0.029979086,-0.03733578,-0.01108475,-0.033292912,-0.005415345,0.021948578,-0.011101319,-0.014768621,-0.015144188,0.003976592,-0.009322898,0.0071689114,0.009521728,-0.012150697,-0.040141486,-0.01979459,0.06689511,0.060002353,0.016624363,0.038617127,0.061592992,0.009720558,0.027107101,0.029846532,-0.031591814,-0.014746528,0.028896568,-0.025317635,-0.008709841,0.048072577,-0.04402971,0.01496745,0.048160948,-0.044559922,-0.014404099,0.009394699,0.012769279,-0.016292982,-0.002242356,0.041356556,0.02282122,0.000025069443,-0.0019786307,0.0016776248,-0.060709305,-0.045598254,-0.030001177,0.03318245,-0.014757575,0.045509886,0.017640604,0.0038026161,-0.028521001,0.03654046,0.015044773,0.029073305,-0.0031702274,-0.027615221,-0.008522058,-0.022401469,0.019949237,0.041643754,0.02324097,0.005150239,-0.005119862,-0.025604833,0.031613905,0.006263132,-0.00070487853,-0.001999342,-0.011476886,0.008494442,0.009731604,0.0075334325,-0.072948374,0.0023196787,-0.0025530274,-0.0051281466,-0.04736563,-0.040804252,-0.02024748,-0.034485888,-0.0299349,0.0042775976,0.037092768,0.017353406,-0.005219277,0.031901103,-0.036871843,0.0043024514,-0.013675058,0.039014786,-0.018082447,-0.010438554,0.014194224,-0.0210428,-0.014017487,-0.0063128397,-0.0014346108,0.003131566,0.04838187,0.022777036,0.04608428,-0.03126043,-0.014834898,-0.025892032,0.02095443,-0.010035371,-0.025516465,-0.0152325565,0.005081201,-0.020866062,-0.013962256,-0.008533103,0.04131237,0.009665328,0.039721735,0.019905051,0.0006144387,0.011012951,0.014359916,0.053860728,0.026952457,-0.0052607,-0.006837529,0.009350514,-0.003288973,-0.014304685,-0.0016431058,-0.018369645,0.019860867,0.015265695,-0.0046421187,0.028587278,0.047409814,-0.015784862,-0.03397777,0.0168011,0.019220194,0.008770594,-0.010090602,0.008715364,-0.03965546,0.011217304,-0.035723053,-0.028388448,-0.009229007,0.046172652,-0.044559922,0.010780983,-0.07140192,-0.07321347,-0.021086983,0.031503446,0.009864157,0.046835415,-0.0066773607,-0.0063956855,-0.016933654,-0.01102952,0.0031122356,-0.020103881,-0.020291666,-0.056467608,0.01750805,0.0013980207,-0.009621143,-0.026289692,0.02304214,0.000970675,0.04250535,-0.053418886,-0.07939929,0.008439212,0.008660134,-0.049088817,0.015751723,-0.020490495,0.049133003,0.011708854,0.06256504,-0.034530073,0.00047014916,0.0019744884,0.004114668,-0.0024950353,0.029890716,-0.035480037,0.041643754,-0.026864087,-0.0302221,0.0047774334,-0.020236434,-0.00043528495,0.034132414,-0.0168011,-0.028521001,0.0029216905,-0.024942068,0.012183836,0.025406005,0.056865264,0.04360996,-0.00829009,-0.0148569895,-0.034905642,0.047453996,0.038285743,-0.018745212,-0.002802945,-0.012747186,-0.016414488,-0.0018861196,0.036385816,-0.009538298,0.03852876,-0.017607465,0.0047498182,0.039898474,0.044802938,-0.009008085,-0.02637806,-0.027526854,-0.031304616,0.01471339,0.03075231,0.020965476,-0.0066773607,-0.024942068,0.011543163,-0.0018861196,0.037998546,0.036253262,-0.00341048,-0.0017687549,-0.013796565,0.020280618,-0.026245506,-0.023285154,-0.040936805,-0.035877697,-0.005705305,0.061725546,0.0044046277,0.0071910038,-0.0048740865,0.0101513555,-0.014337823,-0.033624295,-0.00042458402,-0.024544409,0.0056721666,-0.031636,-0.007306988,-0.010808598,0.013177983,0.032409225,-0.05244683,-0.006511669,-0.037865993,0.032851066,-0.017916756,0.01669064,-0.015409294,0.017242944,-0.031812735,-0.010880398,0.028808199,0.06972291,-0.033226635,0.014437238,0.04049496,-0.032718513,-0.019308563,-0.027990788,0.013785519,0.035259116,-0.011162072,-0.036186986,-0.004796764,0.0046145036,-0.029227952,0.008842394,0.0051557617,0.000731113,-0.0170883,-0.0103888465,0.0061526713,0.0016113482,0.0015920176,-0.032917343,-0.004981786,0.009223484,-0.010786505,0.008632518,0.027836144,0.0071578654,-0.064685896,-0.0028581754,-0.0102507705,-0.001774278,0.029736072,-0.024014197,0.03857294,0.039854288,-0.036982305,-0.0024605163,-0.024544409,-0.031636,-0.01866789,0.022589251,-0.020037604,0.010543492,-0.010560061,-0.00170524,-0.04341113,-0.009648759,0.020821877,0.014989543,-0.015707538,-0.006334932,0.0032226965,-0.0021249913,-0.021175353,-0.011388518,-0.021727657,0.022997957,0.017474912,-0.019109733,-0.010642907,0.00892524,-0.006975605,-0.0038744155,-0.01612729,-0.07153447,-0.029758163,0.019871913,-0.0003194736,-0.0058378577,0.008245905,0.036164895,0.009753697,0.005581036,0.00404563,-0.0014649875,-0.020567818,0.02304214,0.024676962,-0.016171474,0.003739101,-0.016845286,0.045951728,-0.010869351,-0.00038385158,-0.0076162782,-0.030862773,-0.03245341,0.00682096,-0.024787422,-0.002178841,-0.006964559,-0.006473008,-0.014404099,0.01999342,-0.032851066,0.0022036948,-0.017143529,0.0035789327,-0.011040566,0.014470376,-0.0044764276,-0.016712733,0.012471034,0.024919976,-0.053021226,0.021164306,-0.05173988,-0.02374909,0.019496346,0.013608782,-0.017143529,-0.003849562,-0.0036286402,-0.002051811,0.0077543543,-0.00036969877,-0.0075279097,-0.034441706,0.0003655565,-0.020291666,0.008240382,0.013409952,0.027814051,0.009162731,-0.018623706,-0.034507982,-0.0059925034,0.011035043,0.0058930884,0.02352817,-0.017165622,-0.008190675,0.011200734,-0.014558745,-0.027571037,0.037622977,-0.009046746,0.025914125,0.02697455,-0.008676703,0.00854415,-0.026090862,0.009521728,0.02262239,0.012415804,0.025406005,0.0105214,0.03355802,0.03103951,0.017474912,-0.044869214,-0.04252744,0.0026538228,0.0002980718,0.0032254579,0.018932996,-0.0482935,-0.016171474,-0.016524948,0.0022975865,-0.02790242,-0.041820493,-0.0168011,0.006340455,-0.015508709,-0.03563468,-0.02355026,-0.010797552,-0.0040980987,-0.006887236,-0.021727657,0.01785048,0.02810125,0.0027546184,0.033933584,0.011631532,-0.02171661,-0.013763427,0.040428683,-0.030597666,0.010007757,-0.011322241,0.014845943,0.014934312,-0.0005360805,-0.04564244,-0.0011474125,-0.060311645,-0.0122280205,-0.039832197,-0.02679781,0.003896508,-0.004954171,-0.007478202,-0.02383746,0.021086983,-0.007831677,-0.016160429,-0.024831608,-0.011162072,-0.012459988,-0.010709183,0.0045703193,-0.048956264,0.028034974,-0.01993819,-0.0071302503,0.0019206387,-0.02171661,0.00782063,0.020468403,-0.048072577,0.010609768,0.00865461,0.015707538,-0.004241698,-0.0025129851,-0.062211573,-0.011283579,0.02053468,-0.015265695,0.0015119334,-0.009985664,-0.011322241,0.0037114858,0.0018184624,-0.036186986,-0.07617383,0.0021539873,-0.014393054,-0.01979459,-0.0023555784,0.010051941,-0.0029962517,0.02383746,0.021595104,-0.004092576,-0.01389598,-0.011962914,-0.04710052,-0.02666526,-0.04939811,-0.014337823,0.0009333945,-0.005981457,-0.017607465,0.029603519,0.013177983,-0.09163835,-0.011543163,0.0011529356,-0.048867896,-0.050060876,-0.0108638285,-0.0032033657,0.028697738,0.0065448075,-0.016513903,0.012570449,0.0026565844,0.008621472,-0.019982375,0.021639287,-0.0056390283,0.029161675,-0.009737127,0.008698795,-0.009146161,-0.04294719,-0.041047268,-0.028079158,0.028874476,0.0006617298,0.0137302885,-0.005050824,0.0043880586,0.0375567,-0.030818587,0.020457357,0.024875792,0.0066994526,0.0026662496,-0.015552893,0.044361092,-0.000036913785,-0.0035181793,-0.00042389365,-0.047409814,0.0035927403,-0.009289761,-0.009670851,-0.03256387,0.027548945,0.03731369,-0.0034767564,0.023086326,-0.011642577,-0.020777693,0.017276082,-0.004133999,-0.018712074,0.0029962517,0.019275425,0.042836733,0.004606219,0.013288445,0.0014035436,-0.0429251,0.024301395,0.016292982,0.0046255495,0.00027442627,0.0063901623,-0.028984938,-0.006500623,-0.0148569895,0.032895252,0.0067878217,0.01728713,0.012890786,0.024235118,0.053418886,0.037667163,-0.0024646586,0.006445393,-0.0023072518,0.014282593,-0.00669393,-0.008118875,0.014735483,0.013785519,0.018800443,0.00041422833,-0.004092576,-0.012084421,-0.00379157,-0.011289103,0.019308563,0.039522905,-0.05629087,-0.02536182,0.017143529,-0.022467745,-0.0015823522,-0.03978801,0.012261159,0.014072717,-0.07100426,0.05085619,0.001861266,0.015486617,-0.032917343,-0.0017646127,0.0064233006,-0.011388518,-0.0074505867,0.017154576,-0.033005714,0.032917343,-0.013177983,-0.004316259,0.0137302885,-0.026245506,-0.004023538,-0.0026220654,0.017552234,0.007196527,0.032585964,0.020015514,-0.005343545,0.009146161,-0.023925828,-0.036695108,-0.000362795,0.008395027,-0.01711039,-0.011228349,0.012813463,-0.01719876,0.04186468,-0.0063238856,-0.032144118,0.012703002,-0.0024398048,0.021628242,0.010361231,-0.023726998,0.02810125,-0.0066884067,0.0170883,-0.026731534,0.00585995,0.005456768,0.003896508,0.027968697,0.012371619,-0.020159112,-0.03523702,0.013785519,-0.010344662,-0.008152014,0.006456439,0.0033221112,0.042836733,-0.00015775196,0.008847917,-0.007588663,0.030398836,-0.016547041,0.032342948,0.042637903,0.008080214,0.010079556,0.017132483,-0.015431386,0.024190934,-0.02951515,0.007969753,-0.0010100268,0.028255895,0.020799786,-0.010278386,-0.010709183,-0.011184165,0.050591085,0.012250112,-0.0010100268,-0.00018174268,0.04360996,0.0032447886,0.025052529,0.019849822,-0.028631462,0.0019731077,0.010598722,0.024632778,-0.003976592,-0.010692614,0.021020707,0.018811489,0.015906367,0.018314416,-0.023815367,0.00096308085,-0.021937532,0.010593199,-0.04193095,0.024787422,-0.0041284757,-0.013873887,-0.0010928723,-0.02053468,0.026355967,0.0036203556,-0.03837411,0.057395477,0.018999273,0.022379376,0.010421985,0.029581426,-0.01135538,0.024190934,-0.00014006095,-0.024213027,-0.03914734,-0.011012951,-0.042858824,0.01677901,-0.011095796,-0.016856331,-0.0019786307,0.046305206,-0.040627513,0.000037798334,0.00045116368,-0.0053490684,-0.07440645,-0.006942467,0.029360505,-0.01177513,0.0009258003,0.028034974,0.003907554,-0.023064233,-0.01739759,0.00062686554,0.021528827,0.036385816,-0.0066276533,0.0050839623,0.01810454,-0.060753487,-0.000072705705,-0.016878424,-0.02567111,0.0056196977,-0.024743238,0.008129922,-0.029537242,0.031083694,0.03773344,-0.048912082,0.027769867,0.000007939377,0.03835202,0.027151287,0.020357942,-0.0056721666,-0.002860937,0.036275357,0.010924581,-0.04727726,-0.0015795907,-0.004131237,0.011051612,-0.019816684,-0.0028802676,0.012294297,0.0053932527,0.024566501,0.0065889917,0.000020948735,0.00890867,0.011819315,0.011819315,0.0070639737,-0.0035623636,-0.013465182,-0.00075044367,0.002628969,-0.022754943,-0.020888153,-0.02321888,-0.017066207,-0.030288376,-0.0007607994,0.019330656,-0.0133547215,0.038418297,-0.0066828835,-0.012813463,-0.019606808,0.01917601,0.022125315,-0.039412446,-0.009383652,0.020280618,0.026444336,-0.025472282,0.00063584046,-0.004760864,-0.010792029,-0.019330656,0.02911749,0.0005067393,-0.0350161,0.03307199,-0.019584715,-0.020380033,0.03978801,0.04961903,-0.03939035,0.008687749,-0.00854415,-0.02095443,-0.021816025,0.0144814225,-0.0050011165,-0.0023845744,-0.024014197,-0.010963243,0.018701028,-0.014470376,-0.0045288964,0.01527674,0.030155823,0.016812148,-0.009184822,0.025207175,-0.008715364,-0.02251193,-0.013034385,-0.039920565,-0.03817528,-0.05885356,0.041224003,0.011476886,0.041179817,-0.023108417,-0.0015091719,0.00834532,0.07582036,0.05081201,-0.03205575,0.0031011894,-0.056600157,-0.025008345,-0.010234201,0.048558608,-0.012261159,-0.004327305,0.015718585,0.020766648,0.053197965,0.008881056,0.021782886,0.0046448805,-0.017552234,0.009173777,0.0053214533,0.024632778,0.015088957,0.0341766,0.0117199,0.009013608,-0.0128797395,0.011797223,-0.010333616,-0.0037832854,0.011985007,-0.020589909,-0.0017590896,-0.0598698,-0.022103224,0.012890786,-0.009930434,-0.0051171007,0.022909587,0.0013966399,-0.011051612,-0.019242287,-0.008212767,-0.036960214,0.013321583,-0.032939438,-0.008643565,0.011830361,-0.01770688,-0.035347484,-0.030177914,-0.0037142474,-0.039125245,0.0032613578,0.028034974,-0.023395617,-0.07078334,-0.024986252,-0.00063653087,-0.0055727516,0.010190017,0.00848892,-0.02044631,0.025914125,0.008505489,0.02106489,0.025207175,0.0068099136,0.0046448805,0.009576959,-0.029250043,0.0019289233,-0.0104496,0.017375497,0.013200076,0.007842723,0.01344309,0.0042334134,0.022754943,0.008709841,-0.0055755135,-0.01527674,-0.019507393,-0.03563468,-0.019385885,0.0013089615,-0.019783545,-0.021009661,0.017022023,0.01603892,0.0078979535,-0.024036288,0.005056347,0.000760109,0.010504831,0.0077543543,-0.008881056,-0.01861266,0.00006994418,-0.014282593,-0.01719876,0.013222168,-0.024456041,0.009748173,0.011322241,-0.012471034,-0.011322241,-0.015088957,-0.025096714,-0.018446969,0.006108487,0.010549014,-0.011366425,0.010698137,0.018734166,-0.0196289,0.0039020309,-0.003346965,0.0061968556,-0.013122753,-0.053109594,0.025295543,-0.011095796,-0.025494372,0.00022972413,-0.0011004666,0.0071633887,-0.0033027804,-0.01618252,0.030663943,0.052402645,-0.0026206844,0.014790713,-0.008339797,-0.011195211,0.03744624,-0.0006116772,0.017253991,0.034949824,0.002548885,-0.01364192,0.016193567,-0.014127947,0.0019026888,-0.008124398,-0.025118805,-0.02084397,0.022268916,-0.028852385,0.0039434535,0.004816095,-0.008245905,-0.018734166,0.0029741593,-0.01160944,0.0066276533,-0.0040594377,0.035966065,-0.0028913138,0.014094809,-0.0068927594,0.011808269,-0.0031122356,0.033094082,0.029095398,0.026554797,-0.011305672,0.019407978,-0.033668477,0.036054432,-0.01841383,-0.010101648,-0.02324097,-0.003855085,0.004175422,0.03296153,-0.0028526525,-0.025516465,0.022754943,-0.00001304172,0.016547041,-0.01542034,-0.0027670453,0.0338894,-0.030266283,-0.008731933,-0.023461893,-0.06450916,-0.02019225,-0.03877177,0.007362218,-0.012095467,0.01612729,-0.017242944,-0.0033911492,0.016900515,-0.0064785313,0.0014553221,-0.005583798,-0.029294228,-0.030089546,0.0033552495,-0.05235846,-0.006202379,-0.048514422,0.014945358,-0.003786047,0.036673013,0.03053139,-0.011896637,0.044758752,-0.021517782,0.011498978,0.000004384995,-0.004203037,-0.011344333,0.010433031,0.007014266,0.00968742,-0.0063901623,-0.004506804,0.008356366,0.017231898,0.0144814225,-0.01491222,0.03581142,0.027018733,0.01496745,0.03143717,-0.031636,0.00043079746,-0.013420998,-0.04186468,0.0061526713,0.010930105,0.025803663,0.007572094,0.017861526,-0.02911749,0.010112694,0.009101978,-0.008383981,0.026621073,-0.012824509,-0.029294228,0.011443748,-0.027968697,0.011708854,-0.0015229795,-0.006594515,0.001993819,-0.024367671,0.021528827,0.000058337155,0.018226046,-0.014359916,-0.0045344196,-0.019109733,0.0006296271,0.01369715,-0.008251429,-0.018446969,-0.03735787,-0.0310616,0.014216316,0.0062962705,0.007218619,-0.0012054044,0.038617127,0.038219467,0.0025861654,0.0074064024,-0.028145434,0.03751252,-0.009781311,0.000068563415,0.008709841,0.006125056,0.023682814,0.011764085,0.014890128,0.016160429,-0.012448942,-0.009079885,-0.020457357,0.013984349,-0.016535996,0.025494372,-0.0126035875,-0.0035623636,0.01166467,-0.0024342819,-0.021120122,-0.009284237,0.015519755,-0.0059483186,-0.033049896,-0.013586689,0.004258267,0.032519687,-0.016160429,0.000497074,0.0015285026,-0.0047995257,-0.0036562553,-0.004802287,0.024919976,-0.0140064405,-0.011388518,-0.008881056,0.008892101,0.02064514,0.011322241,-0.008461304,0.035723053,-0.033823125,0.023461893,-0.017839434,0.011046089,-0.0036093094,-0.012294297,-0.0021277529,-0.012073375,0.020092836,-0.010261817,0.03196738,0.0029852055,0.011255965,0.008809255,0.0032696424,0.021186398,0.055230442,-0.05518626,0.032497592,0.04564244,0.015243603,-0.010184494,0.044582013,0.034839366,0.0010404035,0.028852385,-0.005302123,-0.022843312,0.035568405,-0.022489836,-0.03165809,-0.016591225,-0.010852782,-0.026709443,-0.015133142,-0.05540718,-0.011797223,-0.019905051,-0.020855015,0.0104496,-0.016414488,-0.007931092,-0.00674916,-0.02688618,0.023771184,0.006500623,0.0020241959,0.0207556,-0.057483844,0.01663541,0.0019206387,0.027350117,0.060179092,0.0013365768,-0.026355967,-0.008267998,0.008687749,0.028277988,-0.008428166,0.0070253126,-0.03143717,-0.013398905,0.020788739,0.02465487,-0.02177184,0.00043493975,0.026532706,-0.031812735,-0.010190017,-0.0035678868,-0.05876519,0.00046876838,0.0018681698,-0.02677572,0.00046013863,0.004495758,-0.041533295,-0.032828975,0.02750476,-0.011587347,-0.027018733,0.018082447,0.018402783]},{"id":"guide-sending-without-reply-4","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: client.channels.resolve() — get channel by ID\nResolve a channel by ID from cache or API. Use channel.isSendable() before sending. For sending when you only have an ID, prefer client.channels.send() which skips the fetch.\n\n```javascript\nimport { Client } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch channel (from API if not cached)\nconst channel = await client.channels.resolve(channelId);\nif (channel?.isSendable()) {\n await channel.send('Hello!');\n}\n// Or for webhooks: if (channel?.createWebhook) { ... }\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[-0.025951188,-0.023090428,-0.0035532466,-0.005386631,0.022636337,0.010075101,-0.036145486,0.026200937,0.019355545,0.028675722,0.019355545,0.0045323763,0.005017684,-0.0041322103,0.00095358695,0.006890801,-0.038733795,-0.030764531,-0.023045018,0.033920452,0.016392615,0.015700128,-0.011562242,0.02876654,-0.04713444,-0.025428986,-0.01581365,0.034033973,-0.014371918,-0.011460071,0.034692403,-0.020956209,0.008860412,-0.022579577,-0.008792299,0.058032576,0.005477449,0.034442652,-0.07247261,-0.0018716982,-0.009848055,0.012419335,0.013497796,0.0013530434,0.021716807,0.032172207,-0.057442263,0.012998299,0.017709471,0.01851548,-0.039505746,0.042434618,-0.0012373925,0.038279705,-0.010029691,-0.038438637,-0.013463739,-0.016494785,-0.060166795,0.038007252,-0.013827011,-0.039800905,-0.060575478,0.011624679,0.01596123,0.050267655,-0.031695414,0.0010479523,0.011130857,0.07696809,0.026813958,0.0041009914,0.045885697,-0.056079995,-0.01861765,0.0024577568,0.0038001575,0.015393618,0.015893117,-0.042548142,-0.008173603,-0.014451384,-0.097810775,-0.058077987,-0.06584291,0.018992273,-0.021637343,-0.06320919,0.01356591,-0.042139463,-0.015495788,-0.006902153,-0.04627167,-0.0058974815,0.049314067,-0.024066718,-0.010523513,0.020513471,0.011499804,0.03966468,0.07642318,-0.033920452,-0.063481644,0.002159761,0.050358474,-0.017005634,0.005749902,0.045068335,0.011692792,-0.010375935,-0.0571244,-0.017732177,0.01728944,0.025701439,-0.010529189,-0.01978693,0.019185262,-0.033897746,0.012725845,0.011726849,-0.039187882,0.014723836,0.062664285,-0.008111165,0.0012608066,-0.04967734,-0.00094649184,0.005630704,-0.043206573,-0.002260512,0.09980877,-0.0029459025,0.04586299,0.049087025,-0.04325198,0.010563246,0.021977909,0.0000406862,0.004889971,-0.01953718,-0.0095869545,-0.02158058,0.057714716,0.020297779,0.0413221,-0.006124526,-0.037916433,0.021841682,-0.0062153437,-0.015280096,-0.023430994,0.0066183475,-0.04763394,0.026450686,-0.01963935,0.03080994,0.0005949276,0.021047026,-0.046907395,-0.04972275,-0.04202594,-0.047724757,0.0033318782,-0.024044015,-0.039255995,-0.026359867,0.023953196,0.0022449025,0.0011557984,0.07378947,-0.012146882,0.033443656,0.0058038253,0.01892416,0.028516792,-0.03880191,0.056488674,-0.057623897,-0.005168101,0.02724534,0.030423965,0.04704362,0.00094294426,-0.035373535,0.0028962365,0.017675415,0.0069645904,-0.024339171,0.003865433,0.0016531679,-0.040777195,-0.012214995,-0.012214995,0.0007605991,0.02045671,0.0188674,0.04463695,0.0021725323,0.014598962,-0.04447802,-0.037371527,-0.008871764,0.008241716,-0.02147841,-0.018129505,-0.014428679,0.014258396,-0.0006037965,-0.02876654,-0.008105489,0.032580886,0.038166184,0.019457715,-0.02749509,-0.07074707,-0.022080079,-0.012930185,-0.007912502,-0.048178844,-0.00565057,-0.088320315,0.0057697687,0.023135835,-0.023238005,-0.020547528,0.009274769,0.00874689,-0.041662667,-0.022329828,0.029969877,0.04375148,0.044773176,-0.03044667,-0.021716807,0.035373535,0.039460335,0.036190897,0.042570848,-0.021364888,-0.043410912,-0.015597958,-0.04497752,0.00017507261,-0.030423965,-0.009598306,-0.017539188,0.0027358865,-0.07356242,0.05757849,0.016369909,0.06302756,-0.005199319,0.016528841,-0.029311446,0.021660047,-0.038574863,0.030083397,-0.026246347,0.016971577,-0.012544209,0.015654719,-0.034033973,0.0049098376,0.017993277,-0.053991184,-0.02667773,-0.012544209,0.04259355,-0.033897746,0.0163245,-0.002064686,-0.020626994,0.018856047,-0.051221244,-0.046385195,0.02524735,0.026132824,-0.032263026,-0.021228662,-0.005931538,-0.030423965,-0.023862379,-0.030060694,0.0057527404,0.001331758,-0.0010344716,-0.0216714,0.005034712,-0.0053667645,0.0036071697,0.008258744,0.016483432,-0.031400256,-0.052674327,-0.010222679,0.077512994,0.061120383,0.015461732,0.055989176,0.05639786,0.008446055,0.03732612,0.011505481,-0.031445663,-0.0036412263,0.02999258,-0.022363884,0.02060429,0.05371873,-0.03998254,-0.007339214,0.041435625,-0.040618263,0.0028721131,-0.004421692,0.00035475707,0.0022661882,-0.008582283,0.044160157,0.014405974,-0.008883117,0.005485963,0.00074569933,-0.029288743,-0.05135747,-0.03830241,0.007617343,-0.017993277,0.03612278,0.0100978045,0.03462429,-0.02260228,0.04263896,-0.009955902,-0.0042599225,0.00032513484,-0.03793914,0.0010997469,-0.047679346,0.022386588,0.035260014,-0.003669607,-0.013588614,0.02131948,-0.013554557,0.046498716,0.0073051574,-0.019593941,0.0068680965,-0.014746541,0.0043989876,-0.006896477,-0.028062701,-0.07860281,-0.012691788,0.029810945,-0.008116841,-0.042525437,-0.038529456,-0.020150201,-0.027903771,-0.022806622,-0.007889797,0.033375543,0.015075755,0.004325198,0.047860984,-0.02933415,-0.006646728,-0.0341702,0.023317471,-0.019298784,0.005378117,0.016574249,-0.010716501,-0.0418216,-0.0188674,0.007640048,-0.004467101,0.053945776,0.05626163,0.037666686,-0.031536482,-0.044296384,-0.011323845,0.0010862661,-0.009093133,-0.011533861,-0.020888096,-0.005170939,-0.00846876,-0.013100469,0.016426671,0.03809807,0.02162599,0.021296775,0.02524735,0.012714493,0.0009188208,0.0024336334,0.051130425,0.026904775,-0.001966773,0.006101821,0.0065161777,0.012328517,-0.027268047,-0.000072370436,0.0025216131,-0.026950184,0.01509846,-0.015722832,0.03916518,0.050948787,-0.0030537487,-0.028176224,0.0055938093,0.022704452,0.023385584,-0.017561894,0.00857093,-0.010444048,-0.010886785,-0.04472777,-0.027222637,-0.0013473673,0.04881457,-0.031536482,0.031173212,-0.06647863,-0.06638782,-0.015018995,0.023975901,-0.0068453923,0.016721828,0.010080776,0.008939878,-0.042775188,-0.022431998,-0.017630007,-0.021648694,-0.02458892,-0.06257347,-0.0063685984,0.0050063315,0.020683756,-0.016721828,0.012158234,-0.025338167,0.0285622,-0.040118765,-0.081009485,0.0053979834,0.0066126715,-0.019775577,0.0074754404,-0.037371527,0.039959833,0.017096452,0.04173078,-0.0484513,-0.010239707,-0.007696809,0.015995286,0.01479195,0.027971884,-0.020729164,0.030537488,-0.017380258,-0.030900758,0.0023711962,-0.025883075,0.023340177,0.015382266,-0.035850327,-0.0034056676,-0.009859408,-0.019730167,0.024066718,0.033829633,0.058940757,0.021637343,-0.025905779,-0.020275075,-0.036940143,0.035668693,0.040527444,-0.013032355,-0.034874037,0.0052475664,-0.021887092,-0.009218007,0.020842686,-0.00994455,0.019775577,-0.007202987,-0.009711829,0.047316078,0.06030302,-0.009672096,-0.012623675,-0.0012941537,-0.02352181,0.026155528,0.029152516,0.01688076,0.00714055,-0.043501727,0.009808323,-0.0051624244,0.022000613,0.04754312,-0.023272062,0.011965246,-0.030651009,0.03432913,-0.009819675,-0.020195609,-0.038574863,-0.019559884,-0.021762216,0.04259355,0.015382266,0.013645375,-0.017051043,0.030900758,-0.010069424,-0.030651009,-0.011079772,0.0083552385,0.011284112,-0.033443656,-0.0009358491,0.01168144,0.01943501,0.037712093,-0.03589574,0.0028536657,-0.020638347,0.010302145,-0.029969877,0.005772607,-0.03044667,0.020059383,-0.0351919,-0.006300485,0.015790947,0.058395848,-0.020309132,0.025883075,0.03907436,-0.037167188,-0.010154566,-0.023045018,0.035328127,0.02912981,0.0009848056,-0.022068726,-0.015904468,0.0045635947,-0.03228573,-0.0011451558,0.014326509,0.0015935687,-0.0018688601,-0.010092129,-0.008968258,-0.006379951,0.0023016639,-0.046430603,-0.007293805,0.00724272,-0.008956906,-0.011760905,0.030015284,0.009002315,-0.06003057,-0.0022832165,-0.008866088,0.016313149,0.023862379,-0.05390037,0.04972275,0.047089033,-0.02076322,-0.0046913074,-0.02066105,-0.033375543,0.011074096,0.015223335,-0.0127712535,0.006879449,-0.009399643,-0.0062664286,-0.044818588,-0.028039997,0.026745845,0.029674718,-0.021716807,-0.02647339,-0.00083367905,0.0028025808,-0.008434704,-0.023226654,-0.008633368,0.02933415,0.017607301,-0.007594639,-0.008196307,-0.006947562,-0.016176922,-0.0072086635,0.0052532423,-0.06452605,-0.01209012,0.024361877,0.005678951,-0.005585295,0.028130814,0.04586299,0.020638347,-0.0022576738,0.026087414,0.004776449,-0.01130114,0.022466054,0.04402393,-0.01597258,-0.011113829,-0.022420647,0.06343624,0.007918177,0.0040101735,-0.006238048,-0.029652014,-0.016426671,0.009149894,-0.03187705,-0.021296775,0.0035958176,0.008065756,-0.017471075,0.017573245,-0.021853035,-0.0133615695,-0.035214603,0.001656006,0.0056051617,0.0068283635,-0.0019568398,-0.026405277,0.015336857,0.0226931,-0.056579493,0.016154217,-0.017482428,-0.033284727,0.03821159,0.00025489295,-0.0060677645,-0.022148192,0.006090469,-0.028017294,0.0049098376,-0.017822994,-0.020513471,0.0017227002,-0.0006243724,-0.019593941,0.0037377202,-0.008883117,0.025837665,0.01555255,-0.022329828,-0.02223901,0.005383793,0.014508144,0.0013196962,0.009734534,-0.007685457,-0.002261931,0.011794963,-0.018799286,-0.029742831,0.01831114,-0.020377245,0.02177357,0.021024322,-0.013406979,0.012805311,-0.037961844,0.008287124,0.03405668,-0.0030849674,0.013634023,0.009530193,0.035941146,0.036486052,0.0163245,-0.039959833,-0.0484513,-0.008423352,0.013100469,-0.008616339,0.01702834,-0.05185697,-0.0067205178,-0.012691788,0.017868403,-0.017913813,-0.050630927,-0.01702834,-0.0063856267,-0.026042005,-0.0362136,-0.014326509,-0.01663101,0.023079075,0.00935991,-0.025519803,0.016449375,0.025814962,0.006283457,0.023907788,0.020740516,-0.0145422015,-0.010830023,0.033284727,-0.021228662,0.008434704,-0.022250362,0.024407284,0.030582896,0.0030282063,-0.04836048,0.017550541,-0.05262892,-0.017539188,-0.025315464,-0.020649698,-0.015382266,-0.012362574,-0.009183951,-0.007044056,0.03734882,-0.010052396,-0.02361263,-0.01943501,-0.023953196,-0.019866396,0.007747894,0.006090469,-0.040050652,0.014950881,-0.016710477,-0.02055888,-0.02524735,-0.026155528,0.016188273,0.00565057,-0.049768157,0.023238005,-0.0045465664,0.009853732,0.004872943,0.0014644371,-0.052265648,-0.04111776,0.0141221685,-0.017505132,-0.010330525,-0.011130857,-0.01585906,-0.005627866,0.008553902,-0.06434441,-0.07592369,0.00594289,-0.018731173,-0.022568224,0.0017368905,0.0062721046,-0.020070735,0.0068680965,0.00016691319,0.0050148456,-0.008207659,-0.02178492,-0.04836048,-0.019877747,-0.039414927,0.0024421476,-0.000031573378,0.0059258617,-0.020570233,0.011318169,-0.0020448198,-0.10543947,0.012941537,-0.0032041657,-0.029152516,-0.03137755,-0.0004899195,-0.0007020642,0.033988565,0.009144218,-0.010103481,0.006748898,0.015121165,0.022908792,-0.02248876,0.036054667,-0.009638039,0.017720824,0.012555562,0.002459176,0.01178361,-0.03437454,-0.03485133,-0.02667773,0.022193601,0.012124177,-0.004288303,0.0030055018,-0.016347205,0.045045633,-0.03457888,0.00075847056,0.031309437,0.025610622,0.01520063,-0.029674718,0.025814962,0.0056250277,-0.008247392,0.001083428,-0.026541503,0.011931189,0.0016162731,-0.009081781,-0.02713182,0.015018995,0.018390605,0.008241716,0.012544209,-0.012112825,-0.020888096,-0.009865084,-0.015416322,0.00042074185,-0.016460728,0.008797975,0.047089033,0.0062039914,0.03101428,-0.01841331,-0.058986165,0.016528841,0.012578266,0.017981926,0.0010812995,0.027654022,-0.017402962,-0.0099672545,-0.022965552,0.02815352,0.0040640966,0.008349562,0.02340829,0.025973892,0.05176615,0.023033665,0.0005619352,0.012793958,-0.012998299,-0.00026376187,-0.0017922326,-0.02622364,0.0128507195,0.019355545,0.01983234,0.010869756,-0.0066580805,-0.025928484,0.008230364,0.010824347,0.016403966,0.03544165,-0.048133437,-0.01978693,0.02259093,0.0054093357,0.009320177,-0.048315074,-0.0005094311,-0.010540541,-0.061529063,0.057215218,0.022568224,0.009093133,-0.05294678,0.009161246,0.02086539,-0.021660047,-0.011987951,0.018946866,-0.014144873,0.00084928836,-0.0134410355,0.0067261937,-0.00090108294,-0.02381697,-0.008576606,0.032217618,-0.024271058,0.002723115,0.03850675,0.03339825,-0.0000045730403,-0.0026479065,-0.024725148,-0.03550976,0.0014133521,0.017788937,-0.03278523,-0.0132594,0.002222198,-0.012612322,0.043637954,0.007481117,-0.013577262,0.021603286,-0.009252064,0.013316161,0.013554557,-0.03224032,0.012873424,-0.005522858,0.021762216,-0.017505132,0.003121862,0.0033517447,-0.0073165093,0.022454703,0.036077373,0.002060429,-0.040890716,0.0295839,-0.017278088,-0.0133615695,0.019242022,0.023101779,0.0504947,0.0084857885,0.014939529,0.00032016824,0.0018858885,-0.01693752,0.034351833,0.048996206,0.012498801,0.027654022,0.011658736,-0.018265732,0.037871026,-0.0077705984,0.022193601,-0.022454703,0.018912807,0.005673275,-0.0119198365,0.011942541,0.0043876353,0.050585516,0.029311446,0.0019724492,-0.012873424,0.025338167,-0.001812099,0.01785705,0.037099075,-0.023907788,0.00079749385,0.0024847183,0.02463433,-0.001910012,-0.027222637,0.030582896,0.017209975,0.02835786,0.004878619,-0.006788631,0.00006500923,-0.037121776,0.016029343,-0.046861988,0.018946866,0.01209012,0.008457408,0.0101772705,-0.009791295,0.004589137,-0.015473084,-0.029629309,0.030310443,0.03560058,0.02815352,0.030310443,0.010614331,0.00041116343,0.01887875,-0.005491639,-0.0139518855,-0.0453862,-0.013815659,-0.020025326,0.004081125,-0.0057555786,-0.020717813,-0.02009344,0.032830637,-0.021444354,-0.02361263,0.015427675,-0.013985942,-0.048315074,-0.0037944815,0.022874735,-0.012589619,0.0038058336,-0.0059258617,-0.0050545787,-0.021035675,-0.025315464,0.025769552,0.011255732,0.044092044,-0.0023768723,0.0022477407,0.014269748,-0.06743222,0.01749378,-0.017016986,-0.017448371,0.00024744304,-0.033420954,0.008122518,-0.023862379,0.028289746,0.028993584,-0.030355852,0.017834347,0.007889797,0.019185262,0.03183164,0.0316273,-0.01943501,-0.004285465,0.0028380565,-0.012180938,-0.041685373,0.009507489,0.019094443,0.010358906,-0.018583594,-0.01667642,0.011806315,-0.000705257,0.011874428,-0.009127189,0.02156923,0.016948873,0.0009188208,-0.0050659305,0.0111592375,0.007129198,-0.023215301,-0.0033091737,-0.013293456,-0.011011659,-0.016562898,0.004694145,-0.020819983,-0.02978824,-0.00037533295,0.0209108,-0.01702834,0.05044929,-0.01397459,-0.011794963,-0.019446362,0.039846312,0.003771777,-0.031786233,-0.008599311,0.023839673,0.011601974,-0.027472386,-0.0021867226,-0.010120509,-0.013883772,-0.028857358,0.028789245,0.005613676,-0.031763528,0.013634023,-0.0055512385,-0.021274071,0.0032013278,0.059076983,-0.03498756,0.004276951,0.0003873947,-0.014826007,-0.034692403,-0.009064753,0.00008061854,0.01124438,-0.026291754,-0.008707157,0.0024932325,-0.0075094975,0.0052589187,0.0134410355,0.02876654,0.003462429,-0.0052475664,0.0051737768,0.0029047506,0.0006243724,-0.010551894,-0.027971884,-0.030923463,-0.05167533,0.049314067,0.007708161,0.035736807,-0.013702136,-0.0012302975,0.007691133,0.05258351,0.039414927,-0.03355718,0.010205651,-0.032081388,-0.033897746,-0.019400954,0.050585516,-0.0046061655,-0.0030651009,0.003993145,0.009694801,0.04152644,0.018356549,0.03862027,-0.007662752,-0.013123173,-0.010529189,0.008553902,0.023272062,0.009711829,0.01489412,-0.002261931,0.009325854,-0.00007228175,-0.0067545744,-0.0061585824,-0.018890103,0.0028763702,-0.013543205,0.0038966516,-0.056851946,-0.019480418,-0.009518841,0.00236552,-0.011772258,0.0073675946,-0.0027954855,0.0036412263,-0.023272062,-0.014235691,-0.03687203,0.019877747,-0.013985942,0.0017822995,0.029720128,-0.022976905,-0.027790248,-0.04799721,0.013497796,-0.018799286,0.00061514875,0.049450297,-0.009592631,-0.05794176,-0.034033973,0.008253068,-0.020831333,0.009371262,0.023953196,-0.011528186,0.019662054,0.00034375957,0.017720824,0.0024932325,0.004180457,0.0057584164,-0.012317165,-0.00031786232,-0.004274113,0.0012161072,-0.004572109,0.004770773,0.011897133,0.022397941,-0.0074640885,-0.01820897,-0.00991617,-0.013736193,-0.008661748,-0.01795922,-0.03871109,-0.006096145,0.008417675,-0.019298784,-0.021648694,-0.0016787103,0.01667642,-0.0073505663,-0.011999303,-0.006652404,0.006782955,0.020729164,0.032013275,-0.015722832,-0.017709471,-0.0035078377,-0.009762914,0.0000022477186,0.023203949,-0.0209108,0.003067939,0.004120858,-0.002419443,-0.019877747,0.000514043,-0.03376152,-0.01499629,0.017505132,0.02377156,-0.019820986,0.018401958,0.002711763,-0.003224032,0.015541197,0.0045692706,-0.0008549645,-0.016006637,-0.047089033,0.0078103314,0.0019426496,-0.052311055,0.015586606,-0.0069702663,-0.0067091654,0.004135048,-0.02438458,0.023930492,0.03973279,-0.023839673,-0.013406979,-0.0155639015,-0.028607609,0.025065714,0.004694145,-0.004126534,0.026496096,-0.0063118376,-0.0047111735,0.02045671,0.010392963,-0.0067148414,-0.009569926,-0.021376241,-0.025338167,0.0073051574,-0.036940143,-0.0015708642,-0.01407676,0.0062550763,-0.031990573,0.011267084,-0.0086958045,-0.010483781,-0.0036525787,0.026359867,-0.0037405584,-0.00683404,-0.024339171,0.02203467,-0.005077283,0.025156531,0.028471382,0.0029799591,-0.0051113395,0.005434878,-0.033330135,0.0433655,-0.025133828,-0.021069732,-0.031559188,0.022874735,0.00351919,0.032376546,0.003984631,-0.016142866,0.03696285,-0.010160242,0.027358864,-0.014212986,0.00884906,0.022522816,-0.024884079,-0.0035731131,-0.029084403,-0.050767154,0.0011181942,-0.043887705,-0.0037831292,0.0020888096,0.023998605,-0.022670394,0.011284112,0.00096281065,-0.019775577,0.0009443633,-0.00892285,-0.01407676,-0.010597303,-0.0062210197,-0.027154524,-0.0035390563,-0.055398863,0.0076741045,0.016176922,0.023203949,0.02840327,-0.0058747767,0.035577875,-0.035373535,0.023953196,-0.012362574,-0.013486444,-0.024089422,0.019457715,0.010148889,0.0023527488,-0.019934509,0.008769594,0.0049240277,0.022295771,0.014826007,-0.0038938134,0.015518492,0.009609659,-0.0016829674,0.034442652,-0.031150507,0.010881108,-0.04116317,-0.041390214,0.012918833,0.002019277,0.025996597,0.007185959,0.017175917,-0.012430687,-0.00005716023,-0.007481117,-0.0090761045,0.016801294,-0.011306817,-0.023272062,-0.014757893,-0.02377156,-0.004725364,0.0061529065,-0.0033432306,-0.009013667,-0.011227352,0.03269441,-0.014905472,0.017459722,0.00043067505,-0.011119505,-0.007946558,0.0035362183,0.0072370437,-0.010642712,-0.020490767,-0.029856354,-0.0295839,-0.005273109,0.017414315,-0.013520501,-0.020933503,0.046907395,0.025678735,0.015291448,0.012056064,-0.022397941,0.028425973,-0.03126403,-0.0042031617,0.0146330185,0.0311051,-0.0000142124545,0.0142924525,0.014882768,0.0040584207,0.00020895191,0.0046430603,-0.030946167,0.0037065018,-0.037416935,0.025065714,-0.013055059,-0.0026989917,0.013838363,-0.0029856353,-0.03376152,-0.020819983,0.010756234,-0.0079749385,-0.045136448,-0.015064403,0.018594945,0.042411916,-0.01718727,0.018254379,0.010228355,-0.015041699,0.014326509,-0.012691788,0.018912807,0.011692792,-0.030015284,-0.0150530515,0.006641052,-0.008956906,0.0007237044,-0.010239707,0.008326857,-0.040709082,0.011562242,-0.007106493,0.008548226,-0.00036610928,-0.017788937,0.016767237,0.0064991494,0.019673407,-0.008718509,0.017630007,0.022829326,0.013963237,-0.00034056677,0.00857093,0.016245035,0.044954814,-0.031581894,0.05208401,0.048178844,-0.008343886,-0.022829326,0.056988172,0.02086539,0.00068077876,0.0042968174,-0.008179279,-0.022715803,0.051993195,-0.034306426,-0.0022761212,-0.011738202,-0.017221326,-0.017686768,0.00033737396,-0.047089033,0.012362574,-0.028494086,-0.027835658,0.026496096,-0.04150374,0.007793303,-0.0058974815,-0.025837665,0.03346636,0.009706153,0.011908485,0.0049069994,-0.06779549,0.023022315,0.0079352055,0.025633326,0.04431909,0.007657076,-0.030514782,-0.006419684,0.028335156,0.026178233,0.0027287912,0.0054064975,-0.023272062,-0.009110161,0.01907174,0.017675415,-0.0040527447,0.01769812,0.011233027,-0.029833648,-0.022988258,-0.014667075,-0.041549146,0.012862071,0.0017184431,-0.012544209,0.0020788764,0.015336857,-0.029879058,-0.03841593,0.00044167254,-0.013724841,-0.006090469,-0.012873424,0.018538184]},{"id":"guide-sending-without-reply-5","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: fetch message by id\nUse channel.messages.fetch(messageId) when you have the channel. For IDs-only, fetch the channel first.\n\n```javascript\n// When you have the channel\nconst message = await channel.messages.fetch(messageId);\nif (message) {\n await message.edit({ content: 'Updated!' });\n await message.react('👍');\n}\n\n// When you only have IDs (e.g. from sqlite)\nconst ch = await client.channels.resolve(channelId);\nconst msg = await ch?.messages?.fetch(messageId);\nif (msg) await msg.delete();\n\n// When channel is cached\nconst m = client.channels.get(channelId);\nif (m?.isSendable()) {\n const mes = await m.messages.fetch(messageId);\n if (mes) await mes.edit({ content: 'Edited!' });\n}\n\n// Refresh a stale message instance\nconst updated = await message.fetch();\nif (updated) console.log(updated.content);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.02008852,-0.005196596,-0.015963644,0.0006939699,0.007271496,0.05101886,-0.018829873,0.021721024,-0.02945984,0.031054959,0.050171454,-0.013558505,0.009203085,0.015739331,0.016075801,0.017683381,-0.014518068,-0.021820718,-0.033771645,0.05114348,0.02457479,0.033846416,0.01453053,0.050395768,-0.021583943,-0.010324652,-0.0143186785,0.027042238,-0.019328346,-0.04224571,0.003508014,-0.013608352,0.006109427,-0.040600743,0.019789435,0.06799191,0.0047697774,0.020661766,-0.032899313,-0.011695457,0.0010242092,0.012218854,0.020238062,0.0064053964,0.01687336,0.035192296,-0.023191523,0.013558505,0.044040218,0.02759056,-0.040874906,0.016761202,-0.007427269,0.053735547,0.021658715,-0.04346697,-0.0040220656,-0.0045423484,-0.010081646,0.036986805,-0.012810793,-0.036039703,-0.05891968,0.017845385,0.0047978167,0.0155524025,-0.03481844,0.015340551,0.0025126229,0.032974083,0.018269088,0.003255661,0.020125905,-0.046183657,0.012561556,0.005015899,0.022643201,-0.0015927816,0.017583687,-0.03080572,0.01995144,-0.019627431,-0.1004426,-0.021608867,-0.06729405,0.0046358122,-0.034668896,-0.0585209,0.0180697,-0.031927288,-0.022057494,0.022057494,-0.052788444,-0.024736794,0.04453869,-0.0100629525,-0.038881008,-0.009689097,-0.014206521,0.022580892,0.09615572,-0.059019376,-0.09800008,-0.0038320222,0.022792744,-0.007720123,-0.0063680112,0.053885087,-0.038681615,-0.002243135,-0.057075325,-0.06161144,0.028587509,-0.005442718,-0.0073836525,-0.00006951382,-0.0012088005,-0.058022425,0.016948132,-0.0005467642,-0.048327096,0.017970003,0.035391685,-0.0040874905,0.022506122,-0.0575738,0.0037603667,-0.032525457,-0.033248246,0.023116753,0.08713333,0.0013832665,0.03287439,0.035790466,-0.048501562,0.019776974,0.023814617,-0.021110393,-0.016412271,-0.0046295812,0.010349575,-0.033871338,-0.017783076,0.020748999,-0.009190623,-0.0038133294,-0.06390443,0.0071593393,0.00428688,-0.034070726,-0.007931975,0.025010955,-0.03696188,0.01995144,-0.002255597,0.027889645,0.018032312,-0.021646252,-0.051641952,-0.047629233,-0.03758497,-0.05772334,-0.005249559,-0.009689097,-0.035815388,-0.031254347,0.020736536,-0.055679597,-0.017359372,0.029609382,-0.002743167,-0.019889131,0.0058695367,-0.005374178,0.030008161,-0.0044083833,0.037859134,-0.057823036,-0.011763996,0.020649305,0.026120061,0.032724846,-0.02464956,-0.017994927,-0.003570323,0.009159468,-0.007645352,0.0034457047,-0.04989729,-0.0073462673,-0.05443341,-0.0039659874,-0.013919899,-0.013234496,-0.0028522084,-0.010698508,0.04867603,0.0032650076,0.012698636,-0.041273683,-0.0124120135,0.011134673,0.024824027,-0.026992392,-0.010038029,-0.019241113,0.007913282,0.015178547,-0.009134544,-0.024400324,0.034519356,-0.002651261,-0.0062060067,-0.006991104,-0.049473587,-0.017122597,-0.036488328,-0.0033304323,-0.07412315,-0.017571224,-0.08140088,-0.0006503534,0.06285763,-0.033522405,0.0028335156,0.025671434,0.020935927,-0.015527479,-0.048252326,0.02531004,0.0336221,-0.007377422,-0.018505864,-0.038731463,0.04720553,0.048800647,0.017060287,0.04413991,0.0056794933,-0.040525973,0.0020297256,-0.04065059,-0.0059006913,-0.012748484,-0.028911518,0.00133965,-0.00971402,-0.04418976,0.043068193,0.054882035,0.054582953,-0.01982682,0.026369298,-0.020661766,0.02684285,-0.036662795,0.013894975,0.00870461,0.013109878,-0.017957542,0.0020188214,0.016499504,-0.037236042,0.022518583,-0.052738596,0.014567915,0.02263074,-0.0057418025,-0.024001544,0.009252932,-0.0089600785,-0.008766919,0.048975114,-0.029285373,-0.008349447,0.026618535,0.00040462107,-0.030382017,0.002743167,-0.0097514065,-0.031827595,-0.036513254,-0.020736536,-0.016088262,0.02324137,0.01881741,-0.019477889,0.0065050917,0.018780025,0.016773665,-0.004165377,-0.010393192,0.0040750285,-0.056626696,0.025721282,0.07038459,0.058421206,0.03354733,0.036563102,0.034469508,0.015527479,0.024063854,0.040501047,-0.03302393,-0.0032930467,0.0024269475,-0.008791843,-0.020188214,0.04212109,-0.045012243,0.009408705,0.018393707,-0.051791497,-0.014842076,-0.009315241,0.011290446,0.008268445,0.021808257,0.030082934,0.0014728362,0.033971034,-0.00007394362,0.01673628,-0.017384296,-0.07556873,-0.057324562,0.021745948,-0.032076832,0.056576848,0.066247255,0.022443812,-0.02356538,0.039404403,0.028213654,0.044214685,0.02980877,-0.046557512,0.00870461,-0.00034250645,0.011390141,0.029933391,0.022381503,0.019602507,-0.03691203,-0.033647023,-0.018730177,-0.020001287,0.008380601,-0.024126163,-0.00579165,0.033995956,0.031827595,0.04084998,-0.09306518,0.042968497,0.017359372,-0.0028226115,-0.014243907,0.007072106,-0.033522405,-0.020574532,-0.014094365,0.01941558,0.031952213,0.046358123,0.03688711,0.022643201,-0.0047136988,0.0037042883,0.0035391685,0.009963258,0.012380859,-0.016636584,0.025820976,-0.019477889,-0.012704867,0.00039235392,0.008604915,0.0040937215,0.06544969,0.037186194,0.026693307,-0.010125262,-0.018231703,0.01627519,0.023191523,0.0023210216,-0.026543764,-0.022643201,0.0025889517,-0.00575738,-0.025796052,-0.018705254,0.032151602,0.0074085766,0.035790466,-0.023802156,-0.0019829937,0.030880492,0.02818873,0.0419217,0.028363196,-0.013321729,0.023478147,0.0065923245,0.030980187,-0.033422712,0.010499118,-0.005015899,-0.019889131,0.020935927,0.032899313,0.035366762,0.0258459,-0.010629968,-0.047031064,0.017234754,0.05503158,0.028238578,-0.01472992,-0.008685918,-0.058969527,0.027540714,-0.030257398,-0.029160755,-0.018555712,0.043641437,-0.031129729,0.045037165,-0.07053413,-0.118537225,-0.015141161,-0.000094729614,-0.019926516,0.046756905,-0.00609385,-0.00032478725,-0.021085469,-0.024026468,-0.049972065,-0.030481713,-0.0155648645,-0.07237849,0.015440246,0.009682866,0.039180093,-0.018468479,-0.0025780476,0.0016200419,0.020051135,-0.04506209,-0.04735507,-0.0024845835,0.005776073,-0.049922217,0.0007083789,-0.024412787,0.009614326,0.025048342,-0.015677022,-0.031104805,-0.010355807,0.030207552,0.020312835,0.011128442,0.025621586,-0.02684285,0.024736794,-0.031852517,-0.018917104,0.012592711,-0.008062824,-0.0017555647,0.0136706615,-0.006321279,-0.02691762,-0.0006659307,-0.021010699,0.0070409514,0.036463406,0.006816638,0.0073151123,0.016362423,-0.032625154,-0.016325038,0.04379098,0.02945984,-0.047629233,0.006100081,0.010742124,-0.041099217,0.019266037,-0.0063088173,-0.012823255,0.00040656823,-0.012056851,0.0042432635,0.027291477,0.053885087,-0.031378966,-0.022954749,-0.0014105269,-0.027839798,0.030556483,0.017658457,-0.021907952,-0.016125647,-0.025870824,0.04379098,-0.004660736,0.008891538,0.03770959,-0.016424732,-0.014505606,-0.003286816,0.014680073,-0.027141934,0.00468566,-0.059767086,0.003763482,-0.009988181,0.023403374,0.024612175,0.008093979,-0.0067107123,0.005308753,-0.0064303204,-0.0010756144,-0.00276186,0.035790466,0.0136706615,-0.05428387,0.015091314,0.009215546,0.009645481,-0.016761202,-0.063405946,-0.014742382,-0.011751535,-0.014655149,-0.012355935,0.025484506,-0.0048196246,0.0034457047,-0.040501047,-0.0031310427,0.008916462,0.085388675,0.0048507797,0.0038881006,0.008835459,-0.027765026,-0.006181083,0.013346653,0.0180697,0.018032312,-0.014356064,-0.03294916,0.022992134,0.00532433,0.016673971,-0.010617506,0.034469508,-0.002965923,-0.034519356,-0.0040127193,0.00856753,-0.021122854,-0.025098188,-0.026269604,0.014268831,0.0024845835,0.0047728927,-0.01191977,0.018057236,0.057075325,-0.05062008,0.021309782,-0.011396372,-0.00035341058,0.015839025,-0.03810837,0.030033085,0.022618277,-0.028213654,0.023590304,-0.0051810187,-0.052539207,-0.03175282,0.03441966,-0.016113186,-0.016611662,-0.007265265,0.008604915,-0.025945595,0.0027571868,0.010399424,0.0105427345,-0.024163548,-0.020549608,0.0064240894,0.024188472,-0.02945984,0.0013349769,0.014754844,0.056427307,0.021770872,-0.043442048,-0.0190168,-0.0075830426,-0.02269305,-0.0022914247,0.008324523,-0.06963688,-0.013296806,0.006399166,0.012243778,-0.009321472,0.027665332,0.048775725,-0.025696358,-0.0033927418,0.021185163,0.014268831,-0.008717072,0.020985775,0.023789693,-0.015415322,0.014094365,-0.030207552,0.047504615,0.0060253097,0.024338014,-0.0028771323,-0.018904643,0.0024627752,0.027665332,-0.018917104,-0.00405322,0.0030375787,0.0031357158,-0.01707275,0.00069085445,-0.0028755744,-0.0040345276,-0.01975205,0.023914311,0.0010615948,0.004289996,0.014181598,-0.057025477,-0.01814447,0.040600743,-0.019976363,0.0057480335,-0.030257398,-0.021334706,0.03175282,-0.02263074,-0.001013305,-0.020773923,-0.0012181469,-0.021708563,0.033347942,-0.022468736,-0.020611918,-0.012611403,-0.015303166,0.0026294526,0.017297063,-0.009165699,0.0042557255,0.032699924,-0.020574532,0.028288424,-0.014617763,0.0155648645,-0.006065811,0.00405322,-0.0021932875,0.0019019915,0.001299928,-0.038930856,-0.038133293,0.027391171,-0.012343474,0.0076640444,0.0113216005,-0.00020932032,0.008598684,-0.011016285,0.005162326,0.014268831,-0.01560225,0.012561556,0.016050877,0.033572253,0.022643201,0.011882384,-0.032650076,-0.020312835,-0.017035363,0.0116331475,-0.0026029712,0.0216961,-0.043068193,-0.02102316,-0.003710519,0.027740102,-0.0052339816,-0.048825573,0.0025546816,0.004585965,-0.024362938,-0.051392715,-0.027366247,-0.009340165,-0.00004042803,0.028238578,-0.0037385584,0.04124876,0.008978771,-0.0031045612,0.014169136,-0.014081903,-0.028886594,-0.03165313,0.030431865,-0.009981951,0.022418888,-0.022917362,0.031329118,0.038382534,0.008206136,-0.014717458,-0.0010117474,-0.042544793,0.005040823,-0.005779188,0.002481468,-0.0029300952,-0.007352498,-0.011134673,-0.0047666617,0.028637357,-0.033298094,-0.01225001,-0.010885436,-0.0075705806,-0.003884985,-0.011003823,0.009009926,-0.053386614,0.017022902,-0.019340808,-0.03080572,-0.013583428,-0.015926259,-0.0214344,0.04772893,-0.042818956,-0.0005471536,-0.023527993,0.025160497,-0.016300114,0.024076317,-0.028961366,-0.03013278,0.01018134,-0.013084955,-0.02497357,-0.006299471,0.0042681876,0.00011653787,0.025995443,-0.0111533655,-0.024163548,0.017247215,0.009851101,-0.0020406297,-0.010237419,0.009066004,-0.027914569,-0.016524429,0.012200162,0.017110135,-0.011028747,-0.021770872,-0.024412787,-0.008156288,-0.026294528,-0.022107342,-0.01379528,0.0125677865,-0.0187551,-0.0064303204,-0.01393236,-0.09650465,0.031304196,0.03668772,-0.033647023,-0.009888487,0.0021465556,-0.019128956,0.00037385584,0.0016122533,-0.005480103,-0.0032089292,-0.011072364,0.012661251,-0.036513254,0.04700614,0.01808216,0.00020231053,-0.027166856,-0.0052807136,-0.0042432635,-0.033896264,-0.024026468,-0.05562975,0.024063854,0.0046420433,-0.0033927418,-0.007022259,0.0012150315,0.023179062,-0.042494945,-0.0013232939,0.008654763,0.013271882,-0.00012783143,-0.03287439,0.029783849,0.002906729,-0.009383782,-0.014169136,-0.048900343,0.03825791,-0.025945595,-0.015141161,-0.017970003,-0.0086360695,0.009701559,-0.010461733,0.018381245,-0.022256885,-0.028737051,0.030980187,-0.014455759,-0.035341837,0.0002488478,0.022830129,-0.0038444842,-0.00579165,0.023216447,0.005536182,-0.048376944,0.030955262,0.012636327,0.01881741,-0.007832279,0.037310813,-0.017359372,-0.0019206844,-0.03053156,0.029783849,0.013894975,-0.011464912,0.025272654,0.008399295,0.02324137,0.015839025,-0.0103744995,-0.005881998,-0.002330368,-0.0034737438,0.0130475685,-0.04613381,-0.0029924044,0.03232607,0.029110907,-0.0032463148,-0.0050252457,-0.015053928,0.015315628,0.014169136,0.032002058,0.024026468,-0.013969746,-0.040501047,0.02189549,-0.008305831,0.0015997915,-0.022132264,-0.004003373,0.0058228048,-0.04954836,0.024587251,0.020163292,0.014106827,-0.042494945,-0.029783849,0.01553994,-0.008056593,-0.0029519033,0.022817668,0.0034114346,0.014667611,0.035142448,-0.008536375,0.0027462826,-0.04251987,0.0031201385,0.03486829,0.0043024574,0.007645352,0.013969746,0.01654935,0.0028459774,-0.010050491,-0.031503584,-0.022007646,0.0229049,-0.019652355,-0.021010699,0.0029737116,0.007084568,0.011577069,0.03541661,0.013645738,0.014169136,0.0080254385,-0.025384812,0.03449443,0.022194576,-0.03033217,0.020462375,-0.015016543,0.0055829138,-0.02550943,0.0048912806,0.0076889684,0.0013186206,0.029484764,0.01868033,0.003623286,-0.03165313,0.05772334,-0.044962395,0.018493403,0.0024207165,0.029036136,0.048775725,-0.010866743,-0.000073310795,0.016337499,0.012443168,-0.0016169265,0.030357094,0.031952213,0.014081903,0.0029986354,-0.03040694,-0.014206521,0.016973054,-0.033422712,0.05288814,-0.0035235912,0.050271146,0.017272139,0.0054022167,0.01967728,0.0105427345,0.05827166,0.017770614,0.007981822,-0.0072278795,0.014580377,0.02062438,0.02778995,0.022917362,-0.004514309,-0.0023755422,-0.008037901,0.02945984,-0.004726161,-0.022618277,0.013882513,0.015390399,0.015377937,0.037734516,0.019241113,-0.0028413043,-0.029484764,-0.004906858,-0.037983753,0.019527737,0.027565638,0.019515274,0.022605816,-0.0032681231,0.0074521927,0.018555712,-0.026219755,0.009159468,0.02330368,0.017907694,-0.002895825,0.020512223,0.006548708,0.009788792,-0.022531046,-0.008629839,-0.052090578,-0.003956641,-0.0058508436,-0.023091828,-0.03449443,-0.0155524025,-0.016025953,0.043815903,-0.035242144,-0.010162648,0.014879462,-0.0046451585,-0.051043782,-0.028961366,0.045087013,0.011147135,-0.033347942,-0.017733227,0.02945984,-0.019477889,-0.011739073,0.014343603,0.0057013016,0.026194831,0.0022041916,0.019141419,0.0021714794,-0.04232048,0.019627431,-0.012835717,0.00943986,0.024599714,0.016437195,0.009695328,-0.010168878,0.017920157,0.028238578,-0.049573284,0.03180267,0.0080129765,-0.019104034,0.024362938,0.01553994,-0.017247215,0.008174981,0.008430449,-0.01714752,-0.034120575,-0.008935154,-0.0103744995,0.0036264015,-0.023428299,-0.0005218404,0.03770959,0.025671434,0.02483649,-0.016997978,-0.006442782,0.0037011728,0.012499247,-0.0050065527,0.0092840865,-0.0023054443,0.0053804084,-0.008872845,0.0009689097,-0.030456789,-0.021235012,-0.013720509,-0.033572253,-0.027465941,-0.024437709,0.019253576,-0.0043086885,0.029185679,0.051592104,-0.025696358,-0.029160755,0.019938977,-0.013197111,-0.020337757,-0.01560225,0.005726225,0.0027930145,-0.016599199,0.004607773,0.02289244,-0.0125802485,-0.0018552595,-0.010237419,0.025521891,-0.0040812595,0.040152118,-0.022256885,-0.02396416,0.014069441,0.054632798,-0.044488844,0.0012804562,-0.004299342,0.0024503134,-0.018954491,-0.014867,0.00609385,-0.012225086,-0.026294528,0.0035578613,0.00249393,-0.01359589,-0.0041404534,0.032151602,-0.0031902364,0.0077450466,0.0031855633,0.00050470536,-0.0044488846,-0.005424025,-0.01995144,-0.044887625,-0.0395041,-0.062957324,0.040525973,0.01258648,0.026120061,-0.011234368,-0.012810793,-0.008922692,0.051791497,0.012293626,-0.018493403,0.014555453,-0.013982208,-0.013134802,-0.0041684927,0.06729405,-0.010885436,0.0021652484,0.018493403,0.01560225,0.029958313,0.01472992,0.024263244,-0.0243754,-0.02324137,0.0024690062,0.0049411277,0.02362769,0.02129732,-0.00021418824,-0.001741545,-0.013421425,0.02544712,0.015141161,-0.013782819,0.008953847,0.013371577,0.0015826564,-0.012985259,-0.047230452,-0.017284602,0.014829615,-0.03878131,0.005719994,0.037609898,0.017222293,-0.014879462,-0.0046233507,-0.010910359,-0.04673198,0.008305831,-0.008056593,-0.0105178105,0.02886167,-0.043741133,-0.024014005,-0.020337757,0.0035453995,0.0015219048,0.014804691,0.032076832,-0.007944437,-0.043691285,-0.017010441,0.008056593,0.0006795609,0.018169394,0.027316399,-0.03127927,0.01747153,-0.018929567,0.0014525857,0.03080572,-0.03434489,0.00970779,0.00897254,0.01064243,-0.017907694,-0.0051779035,0.009664173,-0.0015234625,0.031179577,0.0076640444,-0.0068602543,-0.003816445,-0.029559534,-0.014804691,-0.003508014,-0.014430835,-0.043292504,0.011196982,0.0046981215,-0.01909157,-0.004614004,0.013583428,0.01439345,-0.0035672078,-0.01191977,-0.007271496,-0.00065580546,0.059717238,0.011932232,-0.025596663,0.02457479,-0.015527479,-0.007483348,-0.004171608,0.013969746,-0.028886594,0.01995144,0.018530788,-0.009701559,-0.027914569,0.0007636784,-0.033796567,-0.02163379,0.0024222743,0.033971034,-0.030456789,0.0066546337,0.035117526,-0.0072216485,0.017508915,0.0060564643,0.014804691,-0.03292424,-0.050395768,0.0049785133,-0.0026434723,-0.038955778,-0.009558247,-0.00823106,-0.026269604,0.0027042239,-0.025621586,0.0015920028,0.057474103,-0.030506635,-0.0015141161,-0.003956641,-0.015278242,0.014667611,0.016761202,0.004131107,0.01198831,0.0018552595,0.0044706925,0.030581407,0.009502169,0.0024207165,-0.0021886143,-0.036986805,-0.010860512,0.024213396,-0.034918133,-0.0071157226,0.004579734,-0.008685918,-0.013633276,0.0074958093,-0.009215546,-0.0036326325,-0.009277856,0.036662795,0.003741674,-0.037535127,0.0142937545,-0.0048757032,-0.012810793,0.027366247,0.043741133,0.010860512,-0.03643848,0.00991341,-0.01834386,0.0061436975,-0.032625154,-0.009720252,-0.0029378838,0.017571224,0.010623736,0.019315885,0.012044389,-0.011826307,0.027615484,-0.013109878,0.029360145,-0.016885823,0.013284344,0.013982208,-0.02015083,-0.03279962,-0.0059816935,-0.045685183,-0.017508915,0.00061218895,0.015377937,-0.0053928704,0.015427784,-0.024163548,0.0005343023,0.00034270118,-0.0035921314,-0.018966952,-0.029310297,-0.0039659874,0.011433758,0.0005175567,-0.025995443,-0.0111533655,-0.037684668,0.02778995,-0.026344374,0.019938977,0.028761975,-0.01654935,0.009813716,-0.013845128,0.00529006,-0.025771128,-0.013645738,-0.021210087,0.013820204,0.00082014623,-0.007539426,-0.001485298,-0.0060035014,0.012997721,0.01841863,0.016985517,0.018256627,0.018954491,0.021920413,0.017608609,0.024923721,-0.040525973,-0.009396243,0.0024316206,-0.03681234,-0.017596148,0.021110393,0.024001544,0.024026468,0.030357094,0.0051249405,-0.019926516,0.008667224,-0.009601864,0.0025967404,0.0014930867,-0.0014876347,0.0014728362,-0.032824542,0.02759056,-0.008162519,-0.006299471,-0.004567272,-0.017783076,0.016075801,-0.0023116753,0.04426453,0.00051405176,-0.023752308,-0.002464333,0.00810021,0.023876926,0.0021948454,-0.011664302,-0.027092086,-0.038407456,-0.0013201784,0.028014263,0.0014518069,-0.009296549,0.055530053,0.037884057,-0.012368397,0.021259936,-0.01593872,0.023552917,-0.037136346,-0.0050003217,-0.00027883414,0.013396501,0.010754586,-0.023789693,0.011502298,0.00075550034,0.00075433205,0.024848951,-0.034843363,-0.009651711,-0.037211116,0.06888917,0.0051685567,-0.006047118,-0.0038974471,0.005710648,-0.00022470293,-0.02544712,-0.0029783847,-0.02322891,-0.032002058,-0.012374628,0.010486656,0.059468,-0.013408963,-0.01627519,0.027441017,-0.011508529,-0.020412529,0.003187121,-0.011533452,-0.021596406,0.002132536,-0.03187744,-0.028064111,-0.0011978964,-0.012069313,-0.016362423,0.025484506,-0.022929825,0.016761202,-0.011334063,0.021845642,-0.0037385584,-0.020125905,0.015701946,0.010119031,0.019203728,-0.006442782,-0.00019374299,0.030855568,0.02015083,-0.027615484,0.0066047865,0.032301143,0.03556615,-0.030382017,0.033422712,0.007072106,-0.041822005,-0.011994542,0.015053928,0.0035734386,0.013633276,0.002283636,-0.032450687,-0.0027914569,0.03242576,-0.03299901,-0.011277984,-0.0024253898,-0.024288168,0.010324652,-0.02430063,-0.06006617,-0.0074646547,-0.033572253,-0.01841863,0.02128486,-0.022007646,0.0035921314,-0.0011091057,-0.03564092,0.016636584,-0.009047311,-0.004433307,-0.014617763,-0.024886336,0.015078852,0.023129214,0.023665074,0.062957324,0.0092840865,-0.018842334,-0.0061966605,0.023777232,0.031104805,-0.0018163163,0.006804176,0.007358729,-0.0136706615,0.024051392,0.03359718,-0.031030035,0.024138626,0.004853895,-0.019565122,-0.013533581,-0.0053399075,-0.025372349,0.0139946705,0.0018848565,-0.02926045,0.017284602,-0.0003828128,-0.036189243,-0.032500535,0.030930338,-0.009471014,-0.010405654,-0.0155524025,0.022730434]},{"id":"guide-sending-without-reply-6","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: message.channel and message.guild\nAccess the channel or guild from a message. Resolved from cache; null if not cached (e.g. DM channel).\n\n```javascript\nclient.on(Events.MessageCreate, async (message) => {\n const channel = message.channel; // TextChannel or DMChannel | null\n const guild = message.guild; // Guild | null (null for DMs)\n if (message.channel?.isSendable()) {\n await message.channel.send('Same channel, different API');\n }\n});\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0017052367,-0.006599601,0.020573514,0.01436418,0.0073160627,0.02075991,-0.055033565,0.008108248,-0.007549058,0.02448784,-0.022612225,0.0074733347,0.0424285,0.034786247,-0.016880533,-0.031850502,-0.040867433,0.026305206,0.0023241313,0.030569026,0.030941818,0.06989869,-0.022460777,0.04454876,-0.034786247,-0.03026613,0.010519752,0.029497245,-0.043034293,-0.03084862,0.038933568,-0.025606219,0.012698261,0.005224927,0.010741098,0.07222864,0.019851226,0.04410607,-0.016146597,0.00011950127,0.014154484,-0.018511502,-0.000031377047,0.002354712,-0.023043267,0.024068447,-0.03457655,0.012290519,0.048696086,0.014958319,-0.04359348,0.042871196,0.023287913,0.009960563,-0.0018756147,-0.06426019,-0.037535593,-0.0150748165,-0.009133428,0.034949344,-0.03830448,-0.053542394,-0.043500282,0.0159136,0.026957594,0.00717044,-0.015750503,-0.005533646,0.0037133677,0.058854695,-0.0016047574,0.007519934,0.029240951,-0.019070692,-0.028402166,0.013653544,-0.008382018,0.015144715,0.009983863,-0.02926425,-0.003832778,0.0024144172,-0.063701004,-0.03231649,-0.05205122,0.022251083,-0.016717436,-0.04205571,0.008714036,-0.032619387,0.002439173,-0.024744134,-0.042941093,-0.024814034,0.07847293,-0.029427348,-0.030172933,0.0041706217,0.010129484,0.052517213,0.08043009,-0.05377539,-0.09296525,0.020701662,0.026957594,-0.005577333,0.004068686,0.019956075,-0.01711353,0.014736973,-0.06840751,0.0013484622,0.06710274,-0.0013433654,-0.009226627,-0.0018566839,0.020829808,-0.05577915,0.019420184,0.013012805,-0.06575137,0.012535164,0.10270447,-0.03993545,0.02017742,-0.024627637,-0.011847828,-0.028798258,-0.031035017,0.011609007,0.05745672,-0.007683031,0.010001337,0.03930636,-0.034832846,0.021761792,-0.025140228,-0.018686248,-0.03143111,-0.0186047,0.013140953,-0.02072496,0.02182004,0.030242832,-0.00506183,0.007653906,-0.06826772,0.00451429,-0.016065048,-0.0036114322,-0.043733276,0.021715192,-0.057037327,0.027027491,0.00027085742,0.018930893,-0.0006316366,0.0097159175,-0.042941093,-0.022996668,-0.061976835,-0.059973072,-0.0025076154,-0.0061976835,-0.045061354,-0.035788126,0.034762945,-0.0044385665,-0.01914059,0.03033603,-0.03783849,0.022251083,-0.016356293,-0.0034250356,0.02446454,-0.033364974,0.031850502,-0.06672995,-0.014841821,0.00372793,0.03355137,0.01644949,-0.026864395,-0.048090298,0.014678724,0.027050791,-0.0026343067,-0.023602456,0.0046074884,0.013571995,-0.046156432,0.0055307336,0.0129429065,0.0095644705,0.0066811494,-0.019198839,0.0532162,0.043779876,0.027167289,-0.033854265,0.011154666,-0.012558464,0.022658825,-0.03345817,-0.03448335,-0.014655424,0.02602561,-0.010403254,-0.018558102,-0.0021814215,0.024837334,0.00047400047,-0.003564833,-0.023544207,-0.049767863,-0.052657012,-0.09543501,0.015028218,-0.010205208,0.0053996737,-0.07544398,0.043383785,0.050793044,0.0046220506,0.02024732,-0.0074150856,-0.013991387,-0.038980167,-0.033131976,0.007939326,0.065052375,0.06220983,-0.013676843,-0.04138002,0.025582919,0.02123755,0.03783849,0.03308538,-0.012663312,-0.049907662,-0.0070655923,-0.015121416,0.021458896,-0.010106185,-0.018558102,-0.04200911,0.02823907,-0.052424014,0.030545726,0.03560173,0.056245144,0.0010280932,-0.033411574,-0.0059763375,0.016379593,-0.032479588,-0.0040191743,0.016600939,0.05377539,0.0030784546,-0.01332735,-0.029287549,-0.03823458,0.01966483,-0.047554407,0.02875166,0.0027042055,0.028332267,-0.029706942,0.022740373,0.008207271,-0.0160534,0.032130096,-0.035904624,-0.02448784,0.033830963,0.0006203508,-0.02342771,-0.0042987694,-0.016228145,-0.037675392,-0.0076946802,0.0025818828,-0.009081004,0.013944788,0.013991387,-0.022775322,-0.002281901,-0.0019644443,-0.018895945,0.0019833753,0.0037191927,-0.012465266,-0.0067219236,0.01438748,0.033225175,0.03895687,-0.002682362,0.038141385,0.04629623,0.0038415154,0.008352893,0.03630072,-0.013816641,0.0048492216,0.017311575,-0.05629174,-0.009873189,0.019886177,-0.033667866,0.0130827045,0.0150748165,-0.059833277,-0.005297738,-0.028938057,-0.004400705,-0.008119897,0.027609982,0.051165838,0.0023765552,0.053449195,0.017963963,0.025955712,-0.07013168,-0.04631953,-0.0009006737,0.03832778,-0.034902744,0.020818159,0.060345866,0.023637407,-0.052377414,0.044944856,0.04089073,0.020235669,0.044315767,-0.013129303,0.021342399,0.034856144,-0.000045438697,-0.0034541602,0.021540444,0.03245629,-0.021447247,-0.0021479283,-0.03082532,-0.049861062,0.023322862,-0.01810376,-0.013187552,0.018010562,0.01706693,0.0072228643,-0.077867135,0.023206364,0.009855715,-0.016577639,0.012395367,0.0018290157,0.007007343,-0.045597244,-0.01700868,-0.005481222,0.029870039,0.028425466,0.02826237,0.010682849,-0.004860871,0.0035997822,-0.0371861,0.017323224,-0.00056173786,-0.02285687,0.022740373,-0.029171051,-0.0077762287,-0.0023372374,0.009948913,-0.0021741404,0.043733276,0.014713674,0.025280025,0.00018466724,-0.02765658,-0.00014352895,0.013863239,-0.0060404115,-0.0042667324,-0.026351804,-0.029124452,0.008865483,0.011451735,-0.0061802086,0.040564537,-0.010228508,0.038490877,0.022996668,-0.0050793043,0.0038415154,-0.003244464,0.047065116,0.0044531287,0.009809116,0.0065646516,0.0063724304,0.053542394,-0.056757733,0.000009158275,0.020457016,0.011754629,0.027912876,0.02712069,0.03040593,0.024208246,-0.0054317103,-0.025769316,0.003695893,-0.025233425,0.03665021,-0.029660342,0.0028279843,-0.024604337,0.0024551915,-0.041403323,0.026887694,-0.017101878,0.0266547,-0.025909113,0.03285238,-0.08639478,-0.107923575,-0.02453444,0.0027770165,-0.033807665,0.03038263,-0.002883321,-0.023043267,-0.048463088,-0.00126837,0.00770633,0.0029080766,-0.029101154,-0.09180027,0.0081140725,0.020049274,0.030499127,0.009348949,-0.047181614,0.011049817,0.029124452,-0.029334148,-0.042218808,0.044874955,-0.00019567991,-0.030033136,0.007286938,-0.024254844,0.04571374,0.0039813127,0.024837334,-0.03995875,-0.02069001,0.012616713,0.023765553,-0.014282632,0.0065471767,-0.030685524,-0.0005857656,-0.026188707,-0.024604337,-0.0003145441,-0.025955712,0.041333422,-0.010595476,-0.03872387,0.010776048,0.008970331,-0.033341672,-0.0039929627,0.0479039,0.021225901,0.03280578,0.0038648148,0.00718209,-0.008300469,0.02182004,0.041147027,-0.010269282,-0.023730604,-0.00877811,-0.061510842,0.0067801727,0.021388998,-0.010904195,0.01706693,-0.0072461637,-0.0010688674,-0.0130827045,0.049348474,-0.0159602,-0.021097753,-0.012407017,-0.022309331,0.014585526,0.0053064753,0.015028218,-0.03508914,-0.021948187,0.0052948254,0.0013222501,-0.030219533,-0.0030580675,-0.0160068,-0.03035933,-0.0010411992,0.024720835,-0.04138002,-0.018930893,-0.025979012,-0.0024479101,-0.008970331,0.028425466,0.011323587,0.00218579,-0.0044822535,0.033388272,0.0080267,-0.031710703,0.0056734434,0.015307812,0.0007594201,-0.025839215,0.027400285,0.013001156,0.00048128158,-0.007123841,-0.050327055,-0.016775684,-0.0092615755,0.0007306597,-0.011655606,0.015995149,0.0072170394,-0.005227839,-0.051165838,-0.0026925555,-0.006220983,0.052004624,0.016565988,0.018721199,0.017684368,-0.04573704,-0.015727205,-0.015657306,0.0057724663,0.04212561,-0.00850434,-0.02293842,0.010269282,0.019816278,-0.008888783,-0.023649056,0.017358175,-0.0071587902,-0.0006378255,-0.0061452594,0.00082058145,0.03133791,-0.004324981,-0.06626395,0.034460053,0.009966387,0.009127604,-0.01753292,0.0049628066,0.005070567,-0.040681034,0.018441603,-0.0106478995,0.0043278937,0.014597176,-0.05163183,0.052796807,0.0039667506,-0.04617973,-0.02609551,-0.004852134,0.0025877077,-0.011492509,0.01965318,-0.022565626,-0.005134641,0.007013168,0.004467691,-0.013874889,-0.024557738,0.019583281,0.018441603,-0.04473516,-0.004004612,0.022332631,0.024790734,-0.035368737,-0.015668955,0.007927676,0.011731329,0.037582193,-0.018231908,0.010263457,-0.012139072,-0.0022309332,-0.026235307,-0.0159136,-0.056012146,-0.008416967,0.01224392,-0.0027376986,-0.0015552457,0.042894494,0.033691168,0.0061627342,0.027842976,0.031011717,0.011865302,-0.011119716,0.0029240951,0.008475216,-0.0060229367,0.003774529,-0.031780604,0.04301099,-0.013595294,0.019338636,-0.019047393,-0.010525577,0.02828567,-0.015109766,-0.013106003,0.00046271473,-0.0053297747,-0.0036871557,-0.027912876,0.014469028,-0.042871196,0.007013168,-0.01973473,0.03089522,-0.011882776,0.0018261032,-0.010595476,-0.030522427,-0.00045288523,0.030499127,-0.032829084,0.0033201876,-0.022286031,-0.015051517,0.023858752,-0.03779189,-0.029054554,-0.025885813,0.005003581,-0.020305568,0.025326625,-0.00013497364,-0.011544933,-0.026491603,-0.0027609982,-0.020095872,0.013420547,0.00085407455,0.03240969,0.023276262,-0.0009450885,-0.012069173,0.018476553,-0.006797647,-0.014259332,0.0006196227,-0.013746741,0.0135486955,-0.0018945456,-0.018895945,-0.010432379,0.008888783,-0.008510165,0.031291313,0.01145756,-0.0040861606,-0.02555962,-0.01650774,-0.0118711265,0.01648444,-0.025839215,0.03832778,0.018488202,0.042451803,0.047111716,-0.0048084473,-0.026212007,-0.04093733,-0.015762154,-0.0007346643,0.0024493665,0.0318971,-0.060951654,0.00046417097,0.0029168138,0.015284513,-0.03352807,-0.058295503,-0.007543233,-0.0372094,-0.006698624,-0.041846015,-0.027446885,-0.019385235,-0.027703179,0.015552457,-0.018581402,0.018814396,0.022181183,-0.023089865,0.03136121,-0.0028818646,-0.004657,-0.0019571632,0.026817797,-0.038118083,0.02451114,-0.040704336,0.040750936,0.033830963,0.00016327896,-0.019525032,0.028006073,-0.008859659,0.008533465,-0.02236758,-0.0049016452,0.011061467,0.014935019,-0.0146204755,0.005405498,-0.026305206,0.008760636,-0.028122572,-0.0033696992,0.003675506,0.006104485,0.03082532,0.006762698,-0.046039935,0.01039743,-0.034599848,-0.02870506,0.0022396704,-0.0048317467,-0.016577639,0.01759117,-0.0060287616,0.020037623,-0.0040948982,0.044385664,0.0024289794,-0.01748632,-0.025186827,-0.017148478,-0.005539471,0.005950126,-0.019338636,-0.028006073,-0.01220897,-0.001622232,0.0046482626,-0.04464196,-0.060951654,-0.0114808595,0.012150722,-0.0153893605,-0.0005311572,0.01116049,-0.015634006,0.009372249,0.008818884,-0.0007051758,0.010053761,-0.050327055,-0.021889938,-0.01435253,-0.021913238,-0.0040803356,-0.0059617753,0.021319099,-0.041636318,0.0037628792,-0.014748623,-0.105500415,0.016857233,0.007939326,-0.04725151,-0.02448784,0.011399311,-0.011865302,0.010129484,-0.022472428,-0.030056436,0.030172933,-0.002511984,0.0051754154,-0.02069001,0.0530298,-0.01220897,-0.005018143,-0.017218376,-0.0050268807,-0.007933501,-0.012139072,-0.012896308,-0.016822284,0.0033726117,0.005568595,0.0051550283,0.026421703,0.00042230455,0.025210125,-0.03511244,0.014538927,0.022227783,-0.0024668411,-0.00908683,-0.058621697,0.009098479,0.021016205,-0.007135491,0.014282632,-0.03981895,0.005760817,0.011381836,-0.026491603,-0.042148907,-0.02926425,0.033900864,-0.024138346,-0.00069024955,-0.000015483742,-0.00047545668,-0.02177344,-0.0078053535,0.0032765009,-0.011224564,0.036417216,0.025979012,-0.023194714,0.014853471,-0.03946946,-0.041170325,0.023649056,0.012418667,-0.014608826,0.014270982,0.0186047,-0.037395798,-0.006791822,-0.04641273,0.009034405,0.01808046,-0.01223227,0.043733276,0.02342771,0.026445003,-0.011329412,-0.005390936,0.0037920037,0.021027856,-0.008469391,0.0320136,-0.034693047,-0.012045873,0.000595231,0.021295799,0.009494572,-0.004161884,-0.0052103647,0.003139616,0.008300469,0.0073684864,0.038933568,-0.027982773,-0.022740373,0.012535164,-0.0029022517,0.0006520237,-0.046529226,-0.009162553,-0.0012800196,-0.052563813,0.039702453,0.019781329,-0.00042812945,-0.060951654,0.0147719225,0.00009774895,-0.011812878,0.0062559326,0.020375468,-0.020165771,0.033691168,0.008603363,-0.0019746379,-0.0013987018,-0.02020072,-0.03618422,0.016565988,0.0099430885,0.009453798,0.017870763,0.007653906,-0.034250356,0.008137372,-0.024045149,-0.0037075428,0.008282994,-0.021179302,-0.0078869015,-0.0006421942,0.050140657,-0.024045149,0.03133791,0.015133065,-0.022950068,-0.011038167,-0.0010877983,0.0111779645,0.033807665,-0.026328506,-0.010991569,-0.013886539,0.0081897965,-0.024045149,-0.0035823076,0.018884296,-0.022507377,0.04212561,0.023043267,-0.004723986,-0.037628792,0.018325105,-0.03518234,0.0022993756,-0.012861358,0.016962081,0.06761533,-0.0015596144,0.004421092,-0.0058685774,0.0016950432,-0.04198581,0.035858028,0.03511244,0.025606219,-0.009919789,-0.00252509,-0.009622719,0.014760273,-0.03555513,0.03942286,-0.028635161,0.0013280751,-0.014224383,-0.015622356,0.013688493,0.027074091,0.043243986,-0.0008992175,-0.009348949,0.04089073,0.022018086,-0.0036871557,0.00493077,0.019035742,0.0037104553,0.001432195,-0.0063666054,-0.013770041,0.011923551,-0.009710092,0.016927132,0.014026336,0.014270982,0.0011824528,0.014830171,-0.0123254685,-0.008160671,-0.0011875496,-0.021319099,0.024278143,0.024324743,0.0024697536,0.0051754154,-0.015494209,0.010618775,-0.018243557,-0.026817797,0.01812706,0.0033638743,0.025280025,0.008323768,0.0111663155,0.029916639,0.0016047574,0.007945151,-0.019804629,-0.06071866,-0.023159765,-0.020037623,0.015668955,-0.029497245,-0.014061286,-0.010880896,0.04154312,-0.02500043,0.0061918586,-0.010554702,0.0018362968,-0.06519218,-0.019024093,0.043873075,0.0042550825,0.019851226,-0.023707304,0.01817366,-0.03984225,-0.009797466,0.02602561,0.004598751,0.03560173,0.010042111,-0.015470909,0.016461141,-0.07069087,0.00040701422,-0.030475827,-0.002800316,0.015051517,-0.021866638,0.018697899,-0.023684004,0.028541964,0.000049238526,-0.047135014,0.013711792,-0.012674962,0.00074085325,0.021272501,0.009873189,-0.0070481175,-0.014608826,0.023637407,-0.012115772,-0.03769869,-0.005938476,0.011941026,0.014748623,-0.005696743,0.0015421398,0.021901589,0.0054899594,0.034762945,-0.033248477,0.03569493,0.015552457,-0.0077412794,0.004062861,0.006803472,0.0035153215,0.0068325964,-0.017521271,-0.03296888,-0.02283357,-0.013898189,-0.022099635,-0.022018086,-0.02607221,0.002270251,0.0265149,-0.0058190655,0.0015334025,0.019024093,-0.024231544,-0.021004556,0.019245438,-0.017894063,-0.03038263,-0.010176084,0.02714399,0.010624601,-0.03515904,-0.0147719225,0.0024886844,-0.026701298,0.0108750705,0.031687405,0.019245438,-0.015657306,0.012546814,-0.024860634,0.017101878,0.024021849,0.040191744,-0.01222062,-0.007939326,0.0135486955,-0.010071236,-0.0062559326,-0.017253326,0.010414904,-0.006448154,-0.030592324,0.03033603,0.017136827,-0.008690736,0.00016710155,0.033271775,0.004284207,0.026701298,-0.005388024,0.002034343,-0.00097494107,-0.0022993756,-0.016670836,-0.04361678,-0.02338111,-0.054567575,0.055452958,0.023590807,0.016228145,-0.004499728,-0.021086104,0.007840303,0.03935296,0.038071483,-0.0044589536,0.0479505,-0.011271163,0.005056005,-0.00801505,0.056757733,-0.017241675,0.0019848314,0.01702033,0.02232098,0.057643116,0.001831928,0.039725754,-0.008207271,0.0012822041,0.013770041,0.0069490946,0.03133791,0.0065588267,-0.00030325836,0.00663455,-0.019443484,0.007018993,0.02453444,-0.009669318,-0.01118379,0.0063607804,-0.0009385355,0.028588563,-0.03345817,-0.034902744,-0.0013659368,-0.00981494,0.01965318,0.021412298,-0.012395367,-0.007013168,0.0007594201,0.020818159,-0.031221414,0.015191315,-0.0057724663,-0.01968813,0.021249201,-0.015214614,0.0005023968,-0.045597244,-0.0099430885,-0.00006939811,-0.011311937,0.01223227,0.00982659,-0.060299266,-0.008416967,0.006855896,-0.04044804,0.016356293,0.006867546,-0.00078053534,0.023882052,0.008282994,0.0068966704,0.032083496,-0.009005281,0.021062804,-0.007292763,0.010595476,0.007828653,-0.01640289,-0.002086767,-0.020060923,0.011416785,0.008312119,-0.02877496,-0.004671562,-0.012873008,-0.0071587902,-0.005737517,-0.0053385124,-0.04301099,-0.0072228643,-0.004694862,-0.03672011,-0.028378867,0.017439723,0.017987262,-0.03625412,-0.018476553,0.021097753,-0.03497264,0.029497245,0.012744861,-0.033877563,0.0042871195,-0.00092324516,-0.0082655195,-0.0025163528,0.00801505,-0.022460777,0.025443122,0.00439488,0.011807053,0.011067292,-0.01088672,0.009768342,-0.0137001425,0.036021125,0.020829808,-0.022752022,0.007811178,0.030196233,0.015750503,0.01640289,-0.0057083927,0.013933138,-0.022227783,-0.032759186,0.0012465266,-0.015552457,-0.01805716,-0.003663856,0.0069432696,-0.016845584,0.013968088,-0.040517937,0.029147752,0.043290585,-0.02179674,0.010228508,-0.0265149,-0.026747897,-0.005198715,0.009931439,0.016123297,0.032712586,-0.009844065,0.01817366,0.013036105,0.01277981,0.004756023,-0.019198839,-0.0065355273,-0.0018406654,0.020503614,-0.0320602,-0.015156365,0.023707304,0.025093628,-0.03457655,0.0056210193,-0.021016205,-0.011463384,0.011760454,0.020538565,-0.024138346,-0.01144591,-0.011486684,0.0022411267,-0.014573876,0.010129484,-0.007298588,-0.022332631,-0.025932413,-0.004662825,-0.017742617,0.030196233,-0.019536683,-0.035485234,-0.012080823,0.01490007,0.0028032286,0.024953831,-0.0010164434,-0.03254949,0.00084679347,-0.009546995,0.040238343,0.0053239497,0.0053559868,0.013432197,-0.02712069,-0.017754266,-0.013944788,-0.04892908,0.004126935,-0.016531039,-0.002635763,0.003754142,-0.0046744747,-0.04151982,-0.014410779,0.0053938488,-0.023136465,-0.0053326874,-0.015634006,-0.029637042,-0.009616895,-0.016647536,-0.045340948,-0.034762945,-0.011078942,0.015144715,0.009884839,0.023299562,0.03394746,0.023136465,0.0045900135,-0.017497972,0.006593776,-0.017847465,-0.0011358537,-0.0102576325,0.02497713,0.004726899,-0.010205208,-0.026841095,0.0132691,0.029497245,0.003296888,0.015470909,-0.008382018,0.04142662,0.0038356904,0.02439464,0.04841649,-0.020829808,0.03567163,0.005370549,-0.056897532,-0.016845584,-0.0039172387,0.0040453863,0.013746741,0.018138709,0.013362299,-0.019245438,0.0056938305,-0.015272863,0.018872645,-0.022041386,-0.005222014,-0.011533284,-0.07013168,0.0064073796,-0.0011795403,0.009343124,0.007321887,-0.020107523,0.054986965,-0.021295799,0.03147771,-0.015051517,-0.023439359,0.020620113,-0.009704268,0.022227783,0.021342399,-0.015004918,-0.004336631,-0.034693047,0.008556765,0.022251083,-0.03126801,0.023101516,0.040215045,0.042941093,0.01748632,0.027773079,-0.036859907,0.021913238,-0.014049636,-0.0022615138,0.011317763,0.025210125,0.0035007591,0.009308175,0.0011649781,0.008416967,-0.007723805,0.0029736066,-0.025093628,-0.0130827045,0.0028614774,0.04888248,0.0041007227,-0.009855715,0.018395005,0.008131547,-0.017101878,-0.0319437,0.009587769,-0.005731692,-0.017661069,0.017055279,-0.00612196,0.0265848,-0.029613743,-0.009989687,-0.0022979192,-0.0026969244,0.035881326,0.0017052367,-0.016216496,0.023544207,-0.0029910812,-0.014806871,0.01226722,-0.0028731273,-0.0103333555,-0.0012945819,0.022122934,-0.03511244,0.023777204,-0.009628544,0.013175902,0.017952312,-0.004712336,0.00044778845,0.009267401,0.00076888554,0.0032095148,0.021097753,0.048090298,0.02926425,-0.01543596,0.00412111,0.0036405565,0.037488997,-0.04138002,0.031617507,0.025909113,0.010286757,-0.012663312,0.027540082,0.007496634,0.0014897158,-0.0077704038,0.01222062,-0.011102241,0.029287549,-0.013210852,-0.0070947167,-0.038071483,-0.008446091,-0.024161646,-0.0015683518,-0.036906507,0.009022756,-0.020957956,0.0015610707,0.014667074,-0.020060923,-0.032526188,-0.0037774416,-0.03394746,0.028308967,0.0031250538,0.002356168,-0.016391242,-0.045900136,0.025116928,-0.005577333,-0.011964325,0.06174384,0.022157883,-0.021563744,-0.005932651,0.013537046,0.027936175,0.007519934,0.0075898324,0.011463384,-0.027213888,0.036533713,0.032479588,-0.019501733,0.021610344,-0.0017955225,-0.02439464,-0.030988418,0.016962081,-0.0159602,-0.015016568,0.028402166,-0.018045511,-0.000771798,0.010228508,-0.031640805,-0.016181545,0.031710703,-0.016717436,-0.01757952,-0.023439359,0.028308967]},{"id":"guide-sending-without-reply-7","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Typing indicator\nUse channel.sendTyping() before a slow operation so users see \"Bot is typing...\". Lasts ~10 seconds.\n\n```javascript\nconst channel = message.channel ?? (await message.resolveChannel());\nif (channel?.isSendable?.()) {\n await channel.sendTyping();\n await slowOperation(); // e.g. fetch external API\n await message.reply('Done!');\n}\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0030561362,0.033137836,-0.008352982,-0.009942721,-0.04064798,0.027217427,-0.016089255,0.027614862,-0.0013901651,0.03138364,0.016212597,0.057449877,0.011011683,-0.011539312,0.019364666,-0.023352718,-0.03105473,-0.009209522,0.007914433,0.037660368,0.014554335,0.031520687,-0.011299481,0.046952117,-0.012450672,-0.003158921,0.021653341,0.040565755,-0.009401388,-0.042977773,0.0138828065,-0.026121056,0.018830184,-0.04870631,0.03297338,0.012635684,0.06293174,0.005546956,-0.009572696,-0.0049987696,-0.02639515,-0.04410155,0.016829306,-0.0059923567,0.025942896,0.049035225,-0.02710779,-0.002225292,0.028752347,0.053914078,-0.041634716,0.049939733,-0.023763858,0.05377703,0.02905385,-0.017925678,-0.035577264,0.00089765433,0.017171921,0.01761047,0.007297724,-0.035193533,-0.04020943,0.013382588,-0.0073525426,0.004937099,-0.032452602,0.02592919,-0.0073730997,0.011813405,0.002588465,-0.010874637,0.0071743825,-0.024969866,-0.0017139374,0.04229254,-0.015390318,0.006588509,0.030917682,-0.023393832,-0.005067293,-0.011772292,-0.04456751,-0.0038098916,-0.049802687,0.0008175678,-0.046349116,-0.050652374,0.00881894,-0.012621979,-0.020926995,0.010579987,-0.016966352,-0.023489764,0.07334727,-0.01571923,-0.014609153,-0.0022167265,0.00053705083,0.04774699,0.08135078,-0.03146587,-0.047034346,-0.018638318,0.00872986,-0.009511025,-0.009723446,0.046952117,-0.028505664,-0.028999032,-0.055914957,0.001440701,0.0009627514,0.0021225072,0.019816918,-0.029985767,0.038729332,-0.04229254,0.049007814,-0.025531756,-0.023667924,0.037386276,0.027916364,-0.0091547035,-0.036673635,-0.04073021,-0.034837212,-0.049309317,-0.0029293683,0.040483527,0.016240006,-0.024024244,0.04029166,0.012512342,0.0019580515,0.0095384335,0.009723446,0.02905385,-0.05311921,0.04380005,-0.024257224,-0.013245541,0.03607063,0.039195288,-0.030890273,0.018926118,-0.06742686,0.000080247126,-0.018706843,-0.03724923,-0.025052093,0.023051215,-0.034343842,0.027203724,0.011820258,0.028053412,0.0061773695,0.0336312,-0.07329245,-0.058601066,-0.028944213,-0.06638531,0.0036317313,-0.013327769,-0.010977422,0.0027717648,0.043169636,-0.02787525,-0.033987522,0.013087938,0.016596327,0.019858032,0.0024479926,0.014540629,0.031520687,0.007044188,0.025819553,-0.048980407,-0.017624175,0.015280681,-0.011655802,0.04917227,-0.0030150223,-0.037167,-0.035193533,-0.03996275,-0.0033507862,-0.0064000697,-0.00402574,-0.0124575235,-0.013690942,0.0051803566,0.0043340945,0.00920267,-0.010970569,-0.015623297,0.042977773,-0.0068146354,0.020392515,-0.026449967,0.017103398,0.011368005,0.017158218,-0.03217851,-0.016747078,-0.019008344,0.02905385,-0.00075675343,-0.028067116,-0.002901959,0.02291417,-0.00044026176,0.004477993,-0.025970304,-0.070332244,0.0025473512,-0.041442852,0.016788192,-0.03689291,-0.020419924,-0.071757525,-0.005574365,0.06698831,0.024928752,0.0014621145,0.027395587,0.029081259,-0.010100325,-0.016267415,-0.019488007,0.036618814,0.021900024,0.021338135,-0.015129929,0.039195288,0.010518316,0.032754105,0.046431344,0.0026449969,-0.037057362,0.0001425069,-0.008716155,-0.0039332337,-0.016034435,-0.05004937,-0.005218044,-0.024969866,-0.049364135,0.005399631,0.0090861805,0.02751893,-0.028176753,-0.0052043395,-0.025422119,0.019830624,-0.019076867,0.017377492,0.047938854,0.022968987,0.011683211,-0.019255029,-0.030890273,-0.019775804,0.018172361,-0.0015486251,-0.025819553,0.0519132,-0.004152508,0.044814195,0.008167969,0.0030852584,0.008544847,0.04344373,0.008065185,0.00021210081,0.044786785,0.01047035,-0.023215672,-0.07427918,-0.01896723,-0.012293068,0.033658613,-0.00036702756,-0.00009009735,-0.0017661863,0.0035974698,-0.025874373,-0.042429585,-0.015938504,0.0073525426,0.019460598,0.016185187,0.017870858,0.00805148,-0.021954844,0.023229375,0.022598961,0.014828428,0.028861985,-0.016020732,0.019296141,-0.017678995,0.05969744,0.003160634,-0.0132044265,0.06199982,-0.04311482,-0.04259404,0.019008344,-0.03563208,-0.00033940413,0.032699287,-0.03220592,0.0025490643,-0.0418814,-0.02775191,0.003205174,0.024353156,0.019816918,-0.043306682,0.014773609,0.021804092,0.039990157,-0.046787664,0.003160634,-0.04347114,0.05141983,-0.002965343,0.027505225,0.030095404,0.017925678,-0.033055607,-0.007530703,-0.008887463,0.029519808,0.038455237,-0.07126416,0.0031246594,-0.023613106,0.089683205,-0.018528681,0.03596099,-0.0068180617,-0.0027854694,0.026641833,0.0044231745,-0.013896512,0.036920317,0.0044368794,0.017144512,0.024188701,0.0002293387,0.046403933,-0.060958266,0.031136956,0.0066638845,-0.01807643,0.003455284,-0.049090043,0.011820258,-0.031602915,-0.013519634,0.016760783,0.02946499,0.0148558365,0.051666517,0.010689625,-0.04733585,0.007331986,0.0034193094,0.027505225,0.03206887,-0.003967495,0.0020745408,-0.036317315,-0.007592374,-0.017774926,0.011368005,-0.024997275,0.03683809,0.0065987874,0.0054818587,0.0007897302,-0.003964069,-0.02365422,0.032781515,0.007544408,-0.0033507862,-0.041634716,-0.019446893,0.014047262,-0.029711673,-0.0057285423,0.07077079,0.047390666,0.036317315,0.009750856,0.0070715975,0.009326012,-0.0014449836,0.058326975,-0.014869542,-0.013314064,0.06167091,0.018007906,-0.00004654762,-0.016294824,0.017939381,-0.012313625,0.038455237,0.07444364,-0.00008185314,0.03645436,0.018706843,0.0133620305,-0.020694016,-0.0003721668,0.014595448,0.026354035,-0.004669858,-0.07488219,-0.07778757,0.0029807605,-0.037441093,-0.008120003,0.028752347,0.030753227,-0.045444608,0.03453571,-0.09280787,-0.039304927,-0.0048000524,-0.008311868,-0.01902205,0.017308969,-0.031301413,-0.0056702974,-0.017884564,-0.018117543,-0.012875515,0.007825353,-0.017733812,-0.061396815,0.039770883,0.014609153,0.013341473,-0.055448998,-0.028053412,0.020652901,0.01395133,-0.036481768,-0.014650267,-0.020817358,0.0037482209,-0.027820433,-0.0020659755,0.022379687,0.006441184,0.017130809,0.016377052,-0.005512694,0.010223666,0.009997539,-0.00793499,0.0067461124,0.024613544,-0.046952117,0.055257134,-0.028861985,-0.0109637175,-0.014718791,-0.027039267,0.025435824,-0.021817798,-0.033220064,0.02214671,0.06907142,-0.016404461,-0.014965474,0.035467625,0.016705964,0.0022304312,0.0012830975,0.026682947,-0.005701133,0.014102081,0.042950362,-0.04108653,-0.0380441,0.013094789,-0.014746199,-0.014102081,0.06605639,-0.016212597,0.022174118,0.005084424,-0.023352718,0.00402574,0.06644013,-0.03206887,-0.023256784,0.0062219095,-0.047829214,-0.04547202,-0.0073251333,-0.005975226,0.0059067025,0.008805235,0.014526925,0.0046150396,-0.04223772,-0.013848545,-0.015842572,-0.0068112095,-0.057614334,0.0007173526,-0.019063164,0.02680629,-0.015568478,-0.039414562,-0.026847402,0.02129702,0.0058621624,0.012820696,-0.0061773695,0.0030030305,0.011409118,-0.011929895,0.0006548251,0.0101757,0.004262145,-0.04607502,0.027409293,0.0014158613,-0.025298778,0.0016017306,-0.06830396,-0.020666607,-0.056353506,-0.015404022,-0.00050493056,0.024558727,0.016925238,-0.025339892,-0.026874812,-0.008969691,0.01604814,0.040593162,0.007023631,-0.012293068,0.0073251333,-0.04854186,-0.0074964417,-0.0056017744,0.0035495034,-0.0025713344,-0.0057216897,-0.0066810152,0.023023807,-0.0092437845,0.0061431075,-0.042155493,-0.0048822802,-0.019542826,-0.018926118,0.015445136,-0.012663093,-0.017555652,0.011251515,0.0045019765,0.002247562,0.009209522,-0.008503733,0.019392075,0.025285073,-0.0038201702,-0.02987613,-0.007503294,-0.007880172,0.0052694366,0.020282878,-0.0104429405,0.05531195,0.057614334,-0.048980407,-0.004899411,-0.030670999,-0.013444258,-0.035385396,0.014609153,0.0049165417,-0.015801458,0.02498357,0.026052533,-0.006509707,-0.016185187,0.004347799,0.0056840023,-0.0348098,-0.019542826,-0.0048411665,-0.012765878,-0.0038647102,0.00006333046,0.008387243,0.027710795,0.003456997,-0.02598401,0.0064583146,-0.0056086266,0.0006184222,0.021269612,0.0143350605,-0.06654976,-0.0028094526,-0.0016454142,0.0035769127,0.0006779517,0.028999032,0.04648616,-0.01055943,0.00949732,-0.004450584,0.011875076,-0.0044197487,0.03173996,0.013396292,0.009147852,0.0023674776,-0.0057114116,0.026504787,0.010120882,0.017130809,-0.03300079,-0.038592283,0.0032668451,-0.00938083,-0.021776684,0.017651584,-0.012313625,-0.004029166,-0.05314662,0.009552139,-0.026477378,0.0069208466,0.012156022,0.004645875,-0.0002695961,0.010326451,0.0015965913,-0.03099991,-0.0063932175,0.015417728,-0.0065542473,-0.007105859,-0.011998418,-0.025243958,-0.013060528,-0.035495035,-0.016651146,-0.003433014,0.006537116,-0.0005314833,0.03996275,-0.013608714,0.0013396292,-0.027765613,0.006012914,-0.0014364183,-0.010730738,-0.014499516,0.027094087,0.017555652,0.0047794953,-0.007379952,0.009367126,0.012443819,-0.032589648,0.0068214876,-0.009161556,0.0036214527,0.0022441358,-0.015828867,0.011066502,-0.008236493,-0.010634806,0.019981375,0.056517962,-0.012272511,-0.038564876,0.006273302,-0.014458402,0.037907053,-0.0066467538,0.016774487,-0.008154265,0.04311482,0.035056487,-0.023188261,-0.03949679,-0.030670999,0.01586998,0.0029704822,0.027710795,0.019063164,-0.022694895,0.0020300008,-0.01704858,0.012546604,0.00581077,-0.037824824,0.022900464,-0.041689534,0.012025828,-0.026874812,-0.021201087,-0.03760555,-0.010107176,0.024791706,-0.029026441,0.017363787,0.027395587,-0.009901607,0.009079329,0.017267855,-0.02073513,-0.008983396,0.028670121,-0.02575103,0.040154614,0.0068865847,0.017322673,0.034261618,-0.005666871,-0.027546339,0.02751893,-0.052077655,-0.0027974609,-0.014951769,-0.03533058,0.013773169,0.002799174,0.012258806,-0.00013597579,0.02905385,0.0032702712,-0.004601335,-0.00080814585,-0.014198014,-0.030177632,-0.015787752,0.011176139,-0.067317225,0.0418814,-0.0074758846,-0.00440947,0.026902221,-0.030259859,-0.007839058,0.02227005,-0.04804849,0.009641219,-0.018049018,0.020694016,0.013115346,-0.002562769,-0.045170516,0.0061842217,-0.0089491345,-0.0054784324,-0.012395853,-0.028067116,0.028971622,0.009757708,0.020748835,-0.027052972,-0.06786541,-0.00064754457,0.032425195,0.020461038,-0.018501272,-0.005300272,-0.020570675,0.006742686,0.016267415,0.006975665,0.02365422,0.021009224,-0.03099991,0.0148558365,-0.041634716,-0.045691293,0.005656593,-0.0010561143,-0.005392778,-0.029437581,-0.014732495,-0.09225968,-0.011292629,0.013039971,-0.02621699,-0.028067116,0.01123781,-0.016610032,0.024750592,0.009188966,-0.021132564,0.032863744,0.015746638,-0.011128173,-0.05317403,0.009504172,-0.028423436,0.015924798,-0.041196167,0.02439427,-0.02757375,-0.039332334,-0.010031802,-0.05185838,0.0053825,-0.0067084245,-0.016445575,-0.0036865498,0.036180265,0.016363347,0.0062835803,-0.0031452163,0.016733373,0.031411048,0.0058690147,-0.049391545,0.024928752,0.0032325834,0.0015888824,-0.009394535,-0.020269172,0.005886146,0.00026060242,-0.0024291486,-0.020104716,0.022037072,0.012765878,-0.028204162,-0.019529121,-0.02716261,-0.014650267,-0.0017867433,0.023174558,-0.018802775,-0.042347357,-0.009051919,0.008627075,0.0049165417,0.0077705346,0.005283141,-0.02439427,0.029793901,0.014184309,-0.000029550643,-0.019227618,0.028807167,-0.027313361,-0.015842572,-0.027738204,0.004707546,-0.009421945,0.021159975,0.016007027,0.023421241,0.06775577,0.037742596,0.023023807,-0.0103744175,0.009250636,-0.0045259595,-0.004344373,-0.00063426816,-0.010490906,0.03250742,0.027957479,0.016007027,-0.023942018,-0.028724939,0.006530264,0.011553017,0.032014053,0.052488796,-0.0445401,-0.016171483,-0.009099885,-0.022461915,0.0011614688,-0.012478081,0.012868663,0.025504347,-0.011717473,0.067317225,-0.0069859433,-0.0040188874,-0.03478239,-0.0071606776,0.026258102,-0.015006588,0.057120968,0.012875515,-0.017583061,0.03289115,-0.026888516,0.00872986,-0.0011272072,-0.04922709,0.0002824442,0.028779758,0.011724325,-0.0037208116,0.009319159,-0.010977422,0.014430992,-0.021995958,-0.02155741,-0.030917682,0.04972046,-0.009003953,-0.032041464,0.0007661754,-0.0067838,-0.007592374,0.03478239,-0.00014818148,-0.029739084,-0.011422823,-0.020899586,-0.0058244746,-0.054626722,-0.04459492,0.01327295,-0.027258541,-0.009421945,-0.04256663,-0.030424315,-0.015952209,-0.01221084,0.02680629,-0.019885441,-0.0017764647,-0.028533073,0.022818236,-0.041250985,0.009935869,0.021105155,-0.002865984,0.0056291837,-0.0153080905,-0.009250636,-0.020008784,0.009511025,-0.0053345338,0.04229254,0.05353035,0.033055607,0.022407098,0.006410348,-0.028067116,0.019515416,-0.030095404,0.038098916,-0.011463936,0.032014053,0.010066063,0.0038852673,0.030095404,0.030314678,0.051639106,-0.015102521,-0.017651584,0.036618814,0.054133352,0.0010775279,0.00077431253,0.029218307,0.018514978,-0.025339892,-0.00929175,0.047829214,-0.034042343,0.0030647016,0.03338452,0.013026266,0.005046736,0.008846349,-0.010340156,-0.018268295,0.021406658,0.020036193,-0.022749713,0.0013524774,0.0006710994,-0.003861284,0.003919529,-0.004553369,0.011546165,0.027834136,-0.015938504,0.037386276,-0.001282241,-0.022571553,-0.030972501,0.03382307,0.017788632,0.005663445,-0.008627075,-0.0023434944,-0.035522442,-0.0032000348,-0.045609064,-0.002648423,-0.027984887,-0.026107352,-0.008599666,0.03571431,-0.012046385,0.031246593,0.012156022,-0.015417728,-0.026737764,-0.008421505,0.027847841,-0.015499955,0.024531318,-0.039441973,0.02291417,-0.02503839,0.013834841,0.010394975,0.03960643,0.0049508037,0.020008784,-0.023517173,0.011833962,-0.022571553,0.0024668362,-0.010545725,0.010874637,0.007797944,-0.014979179,0.0168156,-0.034563117,0.026436264,0.001738777,-0.007400509,0.02032399,-0.038893785,-0.016390758,0.023407536,0.022708599,-0.01200527,-0.021762978,0.041607305,0.0016077263,-0.01943319,-0.026559604,0.010011245,0.0047760694,-0.01589739,0.012628832,0.038153734,-0.034014933,0.062602825,0.027477816,-0.0018792497,0.00019165092,0.021653341,0.007044188,0.029684264,0.005252306,-0.022694895,-0.016733373,-0.016335938,-0.0132044265,0.003390187,-0.0044642887,-0.0037859087,-0.022585258,-0.032754105,0.006639901,0.0059032766,0.022585258,0.035878763,-0.0011383422,-0.043635596,-0.003902398,-0.008743565,-0.0037790562,0.0069311247,-0.011785996,0.020269172,-0.037413687,0.016527804,0.009415092,-0.025915487,0.023188261,-0.0036008959,0.016418166,-0.018898707,0.01781604,-0.029574627,-0.027464112,0.00307498,0.047445487,-0.0002738788,-0.0059204074,0.027546339,-0.013108495,-0.034124568,-0.027190018,0.0033028198,0.009757708,-0.027148904,0.032945972,0.03596099,-0.007928138,0.026038827,-0.014211718,0.022640076,0.011614688,-0.0032771237,0.013711499,-0.009860493,-0.01748713,0.0013439119,-0.08705191,-0.02091329,-0.04654098,0.029245716,0.015856275,0.0018946674,0.011765439,0.004258719,0.0009935868,0.04610243,-0.011203549,-0.021064041,0.010436088,-0.011210401,-0.0057353945,-0.0015486251,0.09193077,-0.04122358,-0.020721426,0.0083392775,0.020872176,0.032945972,0.02303751,0.014732495,-0.030095404,0.025860667,0.027094087,0.016377052,0.03870192,0.022009661,0.010072915,0.01191619,-0.037112184,0.0015169331,0.024065359,-0.011902485,-0.014609153,0.010367565,-0.010381269,-0.0017413467,-0.018542387,-0.022242641,0.03604322,-0.013053676,0.0383456,0.040565755,0.0057799346,0.0063897916,0.0015983044,-0.00407028,-0.07000333,0.019679872,0.013999296,-0.022379687,-0.022626372,-0.02503839,-0.028779758,-0.020461038,-0.0033370815,-0.00027602015,0.004107968,0.02114627,0.017898269,-0.042539224,0.009661776,-0.017733812,0.017788632,0.0103744175,0.046760254,-0.0049028373,0.04267627,-0.0035289465,-0.012772731,0.010881489,0.002907098,0.010011245,-0.005546956,0.010148291,-0.021516295,-0.012635684,0.04728103,0.0031931826,-0.016020732,0.021900024,-0.024832819,-0.010223666,0.010682772,-0.0075375554,-0.0043169637,-0.004937099,-0.026134761,0.0043546516,-0.0064960024,-0.048624087,-0.007215496,-0.014759904,0.014430992,0.009983835,-0.008263902,-0.019460598,-0.04700694,0.01784345,0.037167,-0.00411482,0.013190722,-0.027546339,-0.032836333,-0.02728595,0.039003424,-0.0011657515,0.0134990765,-0.01250549,-0.0047418075,0.012717912,-0.018295703,-0.012313625,-0.024339452,0.010936308,0.03757814,-0.034645345,-0.010477202,0.03297338,-0.041716944,-0.016240006,-0.008195379,-0.018898707,0.009935869,-0.051830973,0.00890802,-0.034672756,-0.0035460773,0.0007152112,0.0048891325,0.040867254,0.020652901,-0.019323552,0.019213915,0.009709742,-0.0026124483,0.021009224,0.0015340638,-0.0051632253,0.0038886934,-0.009805675,-0.006636475,0.019104278,-0.0050124745,-0.019063164,0.012251954,0.031767372,-0.00019839617,0.012793288,-0.0072771674,-0.0066227703,-0.019748395,-0.03445348,-0.006129403,0.002607309,0.017829744,-0.04760994,-0.010497759,-0.012313625,0.030177632,0.001187165,0.015212158,-0.032808922,-0.016007027,-0.001865545,0.023106035,-0.021187384,-0.013601862,-0.007516999,0.0021293594,0.0007785952,-0.0033593515,0.014650267,0.010257928,-0.03875674,-0.028039707,-0.019803215,0.03371343,0.010532021,-0.00043790627,0.0076471926,0.010497759,-0.005279715,0.0034878326,0.021365544,-0.015732935,0.0075718174,0.057175785,-0.03445348,0.0029362205,-0.005464728,-0.055668272,0.020392515,0.001971756,0.0051221116,-0.0068351924,0.0026758322,-0.007379952,-0.014348765,-0.02864271,-0.008736712,-0.023969427,-0.009894755,0.0007550404,-0.012532899,-0.04221031,-0.040922076,-0.0099221645,-0.022968987,0.040072385,-0.012197135,0.016335938,0.042840727,0.020228058,-0.0014167178,-0.045855746,0.016007027,-0.010771852,0.0064754453,-0.024079064,-0.0144035835,-0.004303259,-0.042840727,-0.005879293,0.015157339,0.018953526,-0.008195379,0.024051655,0.011518755,-0.005663445,-0.0023452076,-0.015993323,-0.013444258,-0.031411048,0.019090572,-0.014705085,-0.029273124,-0.008675042,-0.0069037154,-0.028423436,0.019570235,0.012354739,-0.027368179,-0.021201087,0.035823945,-0.016788192,0.027272247,-0.008126855,-0.0108061135,-0.02061179,-0.034206796,0.025120618,-0.0100592105,-0.014595448,-0.026614424,-0.03138364,0.03486462,-0.0055435295,0.025655098,0.01055943,-0.02380497,-0.02365422,0.008531142,0.027066676,0.0069174203,0.0058587366,-0.01866573,-0.00508785,0.028368618,0.012580865,-0.016925238,0.011957304,0.06397329,0.002247562,-0.008846349,0.010799262,-0.005526399,0.03837301,-0.0050330316,-0.0042450144,-0.0031948958,-0.003345647,0.03491944,-0.017117104,0.006146534,0.0065679518,0.021571113,0.028861985,-0.005834753,-0.007708864,-0.019282438,0.032863744,-0.0026792584,0.010991126,-0.009346569,-0.0032103134,-0.007928138,-0.022420801,-0.017034875,-0.0075718174,-0.013821136,-0.010367565,0.033165246,0.012827549,0.004190196,-0.007400509,-0.012704208,-0.0078185005,0.020049898,0.019296141,0.012258806,-0.030670999,-0.013060528,0.0030115962,-0.004515681,0.010922603,-0.015253272,-0.01743231,0.01958394,-0.015815161,0.027655976,0.008400949,0.0010167134,0.0055503817,0.00094904675,-0.010997979,0.0013199288,0.0023828954,0.005656593,0.014691381,-0.011169286,0.003857858,0.017788632,0.015650706,0.03324747,0.03300079,-0.03681068,0.032671876,0.02575103,0.016390758,-0.021858912,0.049693048,-0.0057285423,0.007921286,0.023942018,0.032452602,-0.013581305,0.022201527,-0.039387155,-0.013149608,-0.0153080905,0.008133708,-0.0143350605,-0.03957902,-0.042868134,0.013752612,-0.041305803,0.0123890005,0.03831819,-0.04141544,-0.029684264,-0.0031897565,0.008764122,0.012574013,0.02153,-0.003960643,0.015637001,-0.032014053,0.03486462,0.032041464,0.00834613,0.04771958,0.022133004,-0.002372617,-0.0031743387,0.036975138,0.0073662475,0.014266537,0.0061773695,-0.011669506,0.018528681,0.0053585167,0.012149169,-0.045088287,-0.009442502,-0.001558047,-0.015678115,-0.0017207897,-0.018624615,-0.012436966,0.008448915,0.035138715,0.008366686,0.031246593,-0.03379566,-0.017158218,-0.0019905998,0.055969775,0.0020317137,-0.02209189,0.0037619255,0.026408853]},{"id":"guide-sending-without-reply-8","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Quick reference\n\n```javascript\n// Same channel, no reply\nawait message.send('Pong!');\n\n// Reply to the message\nawait message.reply('Pong!');\n\n// Send to a specific channel\nawait message.sendTo(logChannelId, 'User joined!');\nawait client.channels.send(channelId, 'New update available!');\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[-0.011507871,0.009648256,0.0067139305,0.012630884,-0.01216598,0.03086476,-0.030212687,0.02649346,0.0005762237,0.025744785,0.014442196,0.037651144,0.028908543,0.030695705,-0.013778049,-0.025841387,-0.04257791,-0.015915398,0.013307107,0.047214873,0.0021237636,0.041660182,-0.017847463,0.049654104,-0.032410413,-0.018825572,-0.0072090225,0.05482238,-0.036854167,-0.04458243,0.022375744,-0.025551578,-0.0044709225,-0.01061429,0.017533502,0.022581026,0.032700222,0.046514496,-0.036274545,-0.0063818567,-0.0022414988,-0.004205263,0.03926925,0.0053705405,-0.016651997,0.048543166,-0.04682846,-0.006418083,0.03608134,0.035163607,-0.03407682,0.057478976,0.027217984,0.041249618,-0.0055033704,-0.050523534,-0.0045916764,-0.018982552,-0.002630931,0.014297291,-0.029246654,-0.04687676,-0.045331106,0.009207504,0.011912396,-0.007553172,-0.029077599,-0.008332036,0.008332036,0.031251173,0.0099742925,0.0022505554,-0.0004969788,-0.029922878,-0.015541059,0.019284436,-0.00015415021,0.020636884,0.0003764133,-0.042408857,-0.004540356,-0.0018022556,-0.061874427,-0.035622474,-0.08472111,0.023559134,-0.02588969,-0.06313027,0.026251951,-0.028063264,0.0034807383,-0.0262278,-0.054242764,-0.015975773,0.07090683,-0.028353075,-0.013995405,-0.002641497,0.026276102,0.0167003,0.09046901,-0.06636648,-0.11022439,-0.020141792,0.042602062,-0.004356206,-0.0037645106,0.05119976,0.0011577304,0.0022550838,-0.04745638,-0.0010769761,0.046731856,-0.005916953,-0.0037222465,0.019477643,0.024851203,-0.063951395,0.03458399,-0.0023818756,-0.04455828,0.01777501,0.08549394,-0.022134235,0.031347778,-0.039848868,-0.011984849,-0.03605719,-0.015601436,0.039969623,0.09940481,0.00047773359,0.010028632,0.021904802,-0.024899505,0.024368187,0.0064060073,0.003136589,-0.020987071,-0.023848943,0.02009349,-0.019151608,0.013524464,-0.0040482827,0.01411616,0.012787865,-0.083078854,-0.0049599768,-0.000969052,-0.03989717,0.000046792233,0.040356036,-0.058928024,0.043785453,-0.010867873,0.047359776,0.005738841,0.02296744,-0.05414616,-0.04859147,-0.03704737,-0.04866392,-0.012787865,-0.03690247,-0.04422017,-0.038979437,0.013029372,0.009575804,-0.015613511,0.033956066,0.005859595,-0.018088972,-0.0015252759,-0.0021554616,0.035791527,-0.037482087,0.029850425,-0.06327517,-0.017714633,0.008060339,0.030695705,0.052890316,-0.0118520195,-0.06622157,-0.0017796142,0.0111214565,0.00046867703,-0.0071003437,0.006701855,-0.007329777,-0.032144755,0.014804458,0.00020565941,-0.0032875317,-0.0063275173,-0.039486606,0.041660182,0.014997665,0.015601436,-0.04859147,0.0085916575,0.018596139,0.016289735,-0.054049555,-0.042167347,-0.0008603733,0.008597695,0.0046580913,-0.033931915,-0.00953354,0.038906988,-0.0039033778,0.010409008,-0.036491904,-0.07742756,-0.012111641,-0.060087264,0.017340295,-0.04682846,-0.014732006,-0.0960237,0.0059954436,0.0524556,-0.014768233,0.013802199,0.031251173,0.0026430064,-0.03117872,-0.0010686743,-0.0054973327,0.064048,0.037313033,0.00073320407,-0.035670776,0.010300329,0.0022520649,0.040259432,0.027604397,-0.030043632,-0.047866944,0.017424824,-0.036781713,0.0103124045,0.003652813,-0.018668592,-0.012642959,0.0022550838,-0.05680275,0.03028514,0.019888207,0.06235744,-0.0038550762,-0.015710115,-0.010384857,0.020310847,-0.03489795,0.014635403,0.010300329,0.031637587,0.0056482754,-0.009913916,-0.036564358,-0.019163683,0.027169684,-0.039848868,0.020709336,0.0024301773,0.0262278,-0.0064241206,0.021059522,0.0044407337,0.0049026185,0.02678327,-0.02022632,0.015251249,0.04424432,0.007329777,-0.013862576,-0.031227022,-0.006587139,-0.03893114,-0.0056090304,-0.030357592,-0.005735822,0.020721411,0.0018082934,-0.01996066,-0.0032060225,0.008156942,0.018004443,0.0054731816,0.019453494,-0.0015260306,-0.013476163,0.0056814826,0.064820826,0.055160496,0.00086339214,0.029488163,0.004827147,0.00037320578,0.015263325,0.030744005,-0.024682147,0.012703336,0.036443602,-0.024971958,-0.052214094,0.02852213,-0.057237465,0.0044860165,0.037143975,-0.0669944,-0.0009184862,-0.028956845,-0.005237711,-0.0026777233,0.028087415,0.023788568,0.006623365,0.027242135,0.007052042,0.046369594,-0.037916802,-0.034245875,-0.02473045,0.032700222,-0.03455984,0.048736375,0.060183868,0.030164385,-0.037071522,0.034197576,0.055691812,0.0104693845,0.047625437,-0.0451379,0.02448894,-0.026831571,0.027145533,0.008525243,0.027773455,0.011205985,-0.023172721,-0.003526021,-0.0055365777,-0.019610474,0.02533422,-0.014430121,-0.0113025885,0.01135089,0.0021690463,0.02430781,-0.054097857,0.04257791,0.007263362,0.007118457,-0.026879873,0.005095825,0.015504832,-0.042384706,-0.028739488,-0.021554615,0.0061131786,0.025551578,0.018427083,-0.0077282656,-0.045838274,-0.0064603467,-0.016978033,0.018137272,0.029922878,-0.007993924,0.0078067556,-0.030091934,-0.009177315,-0.012172018,0.016953882,-0.016241433,0.051634472,0.0094792005,0.02223084,-0.028449677,-0.019598398,-0.030985514,0.013524464,-0.015287475,0.0016965958,-0.009225617,-0.035646625,-0.0026279122,-0.014732006,-0.028159868,0.05588502,0.025116863,0.05448427,0.0029448918,-0.009545615,0.015359928,-0.008187131,0.02791836,0.005174315,-0.011218061,0.014913137,-0.0054580877,0.016193131,-0.03576738,0.0016392375,-0.009587879,0.0011169759,0.021204429,0.01692973,0.022532724,0.03876208,-0.0016347093,-0.04627299,0.020528205,-0.0016935769,0.02794251,-0.002517724,-0.020455753,-0.03907604,0.012498055,-0.025672331,-0.0072392114,0.011785605,0.034100972,-0.048205055,0.04339904,-0.066752896,-0.06506234,-0.003610549,-0.0008649016,-0.0003111306,0.0524073,-0.019055005,-0.022327442,-0.042940173,-0.012872392,0.0073116636,0.008458828,-0.019610474,-0.07660643,0.027821755,0.017135013,-0.0048633735,-0.03521191,-0.022750081,0.004893562,0.015082193,-0.053711444,-0.047069967,0.005014316,-0.016398413,-0.063081965,-0.0024694223,0.0011101834,0.020214245,-0.011218061,0.0095033515,-0.0305991,-0.018137272,-0.0016799921,0.0147199305,-0.0014792383,0.022472346,-0.04929184,0.02404215,-0.024657996,-0.0050414857,0.01790784,-0.026952326,0.0218082,0.0012898053,-0.0040573394,-0.022870835,0.026372707,-0.015094268,-0.0001456597,0.023764417,0.028642884,0.008676185,0.026952326,-0.0053675217,-0.031927396,0.0048392224,0.02791836,-0.018632365,-0.02557573,0.0043018665,-0.058589913,-0.004969033,0.053711444,-0.011990887,0.036660958,-0.0050505423,-0.01556521,0.012401451,0.05414616,-0.01938104,-0.033134937,0.003963755,-0.04018698,0.027169684,0.008247509,-0.0095033515,-0.021747822,-0.030671554,0.013802199,-0.016096529,-0.0018460291,0.0055758227,-0.009310145,-0.03989717,-0.018680668,0.016736524,-0.030381743,-0.018378781,-0.023909321,-0.027773455,-0.009219579,0.04694921,0.0022611215,0.014200687,-0.005316201,0.018439159,0.0113025885,0.0068527977,0.02256895,-0.00392451,0.001630181,-0.032724373,0.007547134,0.0048995996,-0.006665629,0.012498055,-0.0700374,-0.022532724,-0.021144051,-0.013790124,-0.022798384,0.013295032,0.006623365,-0.019743303,-0.033666257,-0.008905618,0.016639922,0.06086009,0.015094268,0.005657332,0.015227098,-0.04281942,0.010535799,-0.021627069,0.022001406,0.024875354,-0.02312442,-0.03402852,0.02296744,-0.022049706,-0.0015305588,0.0015652756,-0.007885246,-0.016555393,-0.006019594,0.0034173424,0.0026973458,-0.0042324327,-0.010759194,-0.039486606,0.027604397,0.0153720025,-0.013500313,-0.0017237655,0.036467753,0.00771619,-0.04455828,0.0039305473,-0.017787086,0.000025188561,0.02968137,-0.020419527,0.026904024,0.02188065,-0.030647403,-0.015806718,-0.026614213,-0.027193833,-0.024537243,0.03257947,-0.015879171,-0.012655035,-0.009122976,0.0039909245,-0.02707308,0.00887543,-0.006418083,-0.011326739,-0.03465644,-0.012045226,0.018088972,0.009056561,-0.036274545,-0.0055003515,0.00033263993,0.036346998,0.013452012,-0.034632288,0.011236173,-0.011628624,0.008531281,0.0017735765,0.00056678976,-0.06631818,-0.019827832,0.023740266,0.004917713,-0.007547134,0.02852213,0.029029297,-0.0040211133,0.023679888,0.009569766,0.024657996,-0.017159164,0.028087415,0.008144868,0.0045041298,0.015251249,-0.018632365,0.030309292,-0.005418842,0.0116165485,-0.01761803,-0.0247546,0.0041237543,0.0061826124,-0.03876208,0.016543318,-0.004084509,-0.0027667794,-0.013802199,0.026734969,-0.012220319,-0.0020558394,-0.018076897,-0.0028769677,-0.01142938,0.015396154,-0.0012498054,-0.040645845,-0.008006,0.026372707,-0.051392965,-0.0052316734,-0.03518776,-0.022786308,0.022665553,-0.028860241,-0.018716892,-0.017110862,-0.0076316623,-0.002196216,0.02138556,-0.010155424,-0.0043622437,-0.05153787,0.0012573525,-0.010149386,0.0011969755,-0.050765045,0.010892024,0.023100268,-0.018052746,-0.0049599768,0.011755416,-0.008555431,-0.018101046,0.004229414,0.002970552,0.027894208,0.0024422526,-0.024778752,-0.017787086,0.018535761,-0.030671554,0.0012732015,0.01171919,-0.0032241358,-0.040621694,-0.003547153,-0.011761454,0.03760284,-0.017605955,0.022907062,-0.0011894284,0.04593488,0.021687444,-0.0042354516,-0.038858686,-0.03286928,-0.0006799968,0.01717124,0.011375041,0.020322923,-0.05380805,-0.019972736,-0.012359187,0.03265192,-0.009593917,-0.05704426,-0.0044105453,-0.035139456,-0.0033720597,-0.044147715,-0.046731856,-0.030067783,-0.019489719,0.01019165,-0.0066354405,0.01977953,0.021916877,-0.016543318,0.028860241,0.0119546605,-0.015637662,-0.01253428,0.041322067,-0.031082118,0.028135717,-0.021095749,0.016036151,0.023064042,0.013077674,-0.03260362,0.0063456306,-0.033303995,-0.00041282823,-0.029053448,-0.015577285,0.01735237,-0.01113957,-0.00038433782,0.014188612,0.018101046,0.01340371,-0.022013482,-0.010934288,-0.0056180866,-0.0124256015,-0.0048392224,0.0077403407,-0.07679964,0.022049706,-0.023293475,-0.024609696,-0.009207504,-0.013935029,-0.023740266,0.012069377,-0.046756007,-0.013343333,-0.021349333,0.035284363,-0.0017720672,-0.0067078928,-0.034535687,-0.0025086673,0.010946363,-0.007450531,-0.0045554503,-0.007993924,-0.01324673,0.005071674,0.0139108775,-0.03113042,-0.07452946,0.0033207391,0.0016331999,0.0005052806,-0.0032060225,0.0047184685,-0.011870133,-0.016651997,0.0076316623,0.0050867684,0.018016519,-0.02169952,-0.038979437,-0.022665553,-0.035405114,-0.025406672,-0.006683742,-0.0017765954,-0.02464592,-0.018837648,-0.02188065,-0.09554068,0.025986293,0.019115381,-0.043495644,-0.046152234,0.008525243,-0.019900283,0.014393894,-0.0029328163,-0.03555002,0.020733487,0.020661034,0.009877689,-0.04607978,0.02127688,-0.021482162,0.017074637,-0.036467753,0.008078452,-0.03315909,-0.010753157,-0.034125123,-0.04306093,0.018873874,0.013355409,0.009944104,0.018366706,0.030357592,0.04141867,-0.016096529,0.028473828,0.032144755,0.008730525,-0.002206782,-0.026348555,0.024235357,0.016941806,0.0021011222,-0.0018686705,-0.06264725,0.031637587,-0.005092806,-0.030043632,-0.029633068,-0.0041992255,0.006484498,-0.021288956,0.018910099,-0.004929788,-0.007649775,-0.0028105527,-0.016108604,-0.024102528,-0.01253428,0.035719078,0.028739488,-0.008211282,0.029319108,0.005817331,-0.035067003,0.0116407,0.019610474,-0.0073478897,-0.013210503,0.038351517,-0.035477567,-0.01324673,-0.034004368,0.009358446,0.019115381,-0.0017630105,0.03233796,0.031903245,0.04492054,0.00058301614,0.0061343107,0.012498055,0.011839944,-0.013295032,0.00829581,-0.056899354,-0.0079395855,0.008790902,-0.00017094259,0.007154683,-0.017424824,0.0013048995,-0.010294291,0.020890467,0.029802123,0.034004368,-0.022061782,-0.026421007,-0.011670888,-0.004932807,-0.008724487,-0.039800566,-0.0037886614,0.006236952,-0.046103932,0.04192584,0.022013482,-0.0025373464,-0.060618583,-0.011737303,0.023945548,-0.023969699,0.05042693,0.006131292,-0.00002301876,0.016712373,-0.004784883,-0.0076014735,-0.007118457,-0.03820661,-0.00835015,-0.0013448993,0.031613436,-0.018922174,0.029439861,0.0038913025,0.014780307,0.011604474,-0.0211199,-0.017364446,0.046152234,-0.018765194,-0.026034594,0.009497314,0.024513092,-0.021470087,0.03842397,-0.020395376,-0.023691963,-0.0022898004,-0.008978071,0.0068890243,0.021687444,-0.03144438,0.0023592343,-0.016833128,-0.019393116,-0.024947807,0.008126754,0.014732006,-0.010288253,0.03555002,0.015420305,0.016845204,-0.024162905,0.032072302,-0.029319108,0.017799161,-0.018728968,0.009195428,0.05066844,-0.015347852,-0.011532021,-0.0012860317,0.0061131786,-0.03233796,0.039486606,0.05037863,0.021433862,0.011888246,0.0028030057,-0.020467827,0.006520724,-0.021458011,0.034125123,-0.0027999869,0.03144438,-0.014345593,-0.0032663997,0.027145533,0.008012038,0.05767218,0.005062618,-0.007402229,0.006315442,0.036781713,0.018813496,0.014804458,0.030985514,-0.0047788452,-0.022532724,-0.0005471672,0.018946325,-0.011417305,-0.012558431,0.03960736,-0.016060302,0.010759194,0.00006896194,-0.00940071,-0.009841463,-0.03989717,-0.010716931,-0.018185575,0.0052980883,0.03383531,-0.000601884,0.0225448,-0.009201466,0.017823312,-0.00792751,-0.047504682,0.014224838,0.0071727964,0.024368187,-0.0025569692,0.013983331,0.01279994,0.022496497,-0.03318324,-0.011785605,-0.03084061,0.005554691,-0.031879093,0.017569728,-0.0072090225,-0.015045967,-0.021771973,0.043326586,-0.023221023,0.00081207167,-0.0020996127,-0.026904024,-0.07124495,-0.0076075112,0.029029297,0.018270103,-0.014418045,-0.013584842,0.017678408,-0.04748053,-0.016482942,0.019103305,0.010433158,0.022979515,0.016519167,-0.010010519,0.0038520573,-0.06583516,0.015927471,-0.03315909,0.0035562096,-0.015082193,-0.011338814,0.009545615,-0.043519795,0.015444456,0.013729746,-0.036757562,0.027701002,-0.004036207,-0.010584101,0.0071244948,0.018294252,-0.0008830147,-0.00019320664,0.022762157,0.0021026316,-0.05008882,-0.01627766,0.013307107,0.017388597,-0.005877708,0.017630106,0.026831571,-0.007752416,0.037699446,0.0075290212,0.007196947,-0.002917722,-0.008338074,-0.009436937,-0.0057297843,0.014502573,0.015601436,-0.016217282,-0.019248212,-0.043350738,-0.008078452,0.0013652766,-0.025406672,-0.028328924,-0.011888246,0.01804067,0.001345654,0.04929184,0.0123773,-0.046731856,-0.013367484,0.0261795,-0.029270805,-0.026348555,0.010046745,0.016796902,0.02035915,-0.022556875,0.001206032,-0.0019924433,-0.026614213,0.014973515,0.028956845,0.03347305,-0.01790784,0.029198352,-0.0120331505,-0.022049706,0.013500313,0.04861562,-0.026034594,-0.025116863,0.010179575,-0.011266362,-0.03267607,-0.029633068,0.007758454,0.0002728289,-0.043278288,0.00879694,0.019211985,-0.024851203,0.011749378,0.020926693,0.012968996,0.012202207,0.0065690256,-0.0076256245,-0.011984849,-0.011067118,-0.023100268,-0.043592248,-0.020890467,-0.06834685,0.0451379,0.016205207,0.011544096,-0.013452012,-0.0010792402,0.01543238,0.054967288,0.034439083,-0.0040996033,0.025793087,-0.04453413,-0.00850713,0.0033599841,0.067574024,-0.019368965,-0.0046128086,0.02462177,0.022424046,0.049340144,0.0011584851,0.03902774,-0.00953354,-0.005666388,0.017340295,-0.0030747026,0.011785605,0.022629328,-0.0022747063,0.021578766,-0.013150127,-0.0005886765,0.036830015,-0.026396856,-0.0039456417,0.014079934,-0.0051260134,0.025672331,-0.0465628,-0.034318328,0.008344112,-0.019670852,0.011006741,0.049219392,0.0092437295,0.0053554466,0.00063886493,0.015661813,-0.060618583,0.024875354,-0.025020259,-0.011296551,-0.0063033663,-0.017581804,-0.023015741,-0.049943916,-0.011091269,0.008827128,0.014055783,-0.00001755888,0.018064821,-0.039124344,-0.0118761705,0.014744082,-0.00961203,0.0045162053,0.022158386,-0.020419527,0.036636807,0.005310164,-0.019211985,0.016531242,-0.011169759,0.020842167,-0.0041388483,0.00821732,0.007468644,0.012510129,0.014164462,-0.0030641365,0.02238782,0.016229358,-0.006810534,0.019344814,-0.021168202,-0.0047154496,-0.0058535575,-0.0029313068,-0.043809604,-0.009750897,-0.010861835,-0.031251173,0.003737341,-0.0010362215,0.028208168,-0.029174201,-0.012775789,0.008404489,-0.012606733,0.05380805,0.00080150564,-0.015601436,-0.0014362197,-0.024235357,-0.0124256015,-0.006291291,0.021095749,-0.0095576905,0.0005709407,0.012015037,0.007897321,0.0021237636,-0.028063264,-0.017702557,-0.012630884,0.000007393833,0.03820661,-0.011000703,0.010523724,0.023378003,-0.010644478,0.003918472,0.0028618732,0.02415083,-0.023233097,-0.047528833,0.022363668,-0.035091154,-0.0055426154,-0.016374262,-0.011767492,0.0073961914,0.016193131,-0.017521426,0.024211207,0.054629177,-0.006061858,0.0127637135,-0.000004719907,-0.0011516927,0.019682925,0.037361335,0.003918472,0.02620365,0.012280697,0.0019426324,0.009062598,0.0048573357,0.006762232,0.0021403672,-0.025020259,-0.011399192,0.02343838,-0.028063264,-0.012256546,0.023691963,0.017050486,-0.037385482,-0.009702596,-0.02246027,0.008235433,0.0021131975,0.04139452,-0.02506856,-0.012727487,-0.009491276,0.017412748,-0.0042988476,0.008754675,-0.008205244,0.018173499,-0.027435342,-0.007015816,-0.03470474,0.02970552,-0.024428563,-0.030985514,-0.016205207,-0.00829581,0.0137538975,0.027266286,0.012027113,-0.014732006,0.0109041,-0.011550134,0.020987071,-0.017871615,0.012172018,0.040017925,-0.024923656,-0.020479903,-0.001930557,-0.05279371,0.009642218,-0.015359928,0.021627069,0.0014867855,0.0033086636,-0.024501016,-0.013331258,-0.012075415,-0.017473126,-0.00096452376,-0.016193131,-0.01993651,-0.009648256,-0.006834685,-0.019055005,-0.020721411,-0.020033114,0.025551578,-0.015202947,0.01761803,0.034100972,-0.0012799939,0.014261065,-0.0134157855,0.03774775,-0.013125976,-0.0013698048,-0.02733874,0.014828609,-0.002641497,-0.0011396173,-0.021035373,0.009406748,0.013922953,0.0016347093,0.017714633,0.0011765982,0.029850425,0.010741081,0.0029479107,0.014224838,-0.031758342,0.02883609,-0.0000041420794,-0.05042693,0.009932029,-0.0062550646,-0.008036189,0.010867873,-0.00096452376,0.00022264046,-0.0099199535,0.0058626137,-0.0046158275,0.026614213,-0.024030074,-0.016132753,-0.0006626384,-0.059942357,0.00059509155,-0.011036929,-0.0057901614,0.0066716666,-0.015830869,0.033014186,-0.024875354,0.028377224,0.0167486,-0.018873874,0.0015909359,-0.0024135734,0.030985514,0.016917655,-0.017811237,-0.033907764,-0.016096529,0.016350111,0.032965884,-0.0036799826,0.02069726,0.060811788,0.035694927,0.003879227,0.022448195,-0.031830795,0.0262278,-0.004084509,-0.020455753,-0.0007833925,0.016796902,0.029584765,0.011525983,0.0022762157,0.001458861,0.006810534,0.0064482717,-0.026010443,0.0071305325,-0.008561469,0.032796826,-0.009587879,0.012081453,0.01851161,-0.005874689,-0.020818016,-0.019972736,0.01324673,-0.025744785,-0.01395918,-0.0038641328,0.008905618,0.022689704,-0.010988628,0.007571285,-0.009098825,-0.00771619,0.009950141,0.012437677,-0.0074143047,-0.013838425,-0.018270103,-0.0113025885,0.0009615049,-0.0031456456,0.00073093997,-0.011012779,0.025430823,-0.029971179,0.01353654,-0.01946557,0.019284436,0.027145533,-0.022194613,0.020636884,0.016048227,0.010674667,0.0036648884,0.030888911,0.015528983,0.010227877,0.00089131657,0.002709421,0.023051966,0.049557503,-0.035042852,0.026590064,0.030430045,-0.005950161,-0.007679964,0.031275325,-0.006454309,0.016603695,0.006128273,0.014587101,-0.025672331,0.030091934,-0.016917655,-0.023848943,-0.022424046,-0.018113121,-0.00495092,-0.00352904,-0.03844812,0.0021630086,-0.025189316,-0.0040180944,0.02588969,-0.03470474,-0.014478423,-0.0042988476,-0.01688143,0.029464012,-0.004911675,-0.004869411,-0.0031305512,-0.05414616,0.015830869,-0.0005116957,0.02080594,0.0582035,0.013234654,-0.021047449,-0.0108074965,0.0073599652,0.006436196,0.0077765672,-0.0072392114,-0.012226357,-0.010264102,0.02156669,0.027531946,-0.030067783,0.007329777,0.0145629505,-0.028111566,-0.0144059695,0.008561469,-0.020069338,-0.008851279,0.018028595,-0.021433862,0.016760675,0.0014784836,-0.019393116,-0.021397635,0.03784435,-0.0061343107,-0.025382522,-0.0029886651,0.01719539]},{"id":"guide-embeds-0","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Overview\nUse EmbedBuilder to create rich embeds. EmbedBuilder instances are auto-converted—no need to call .toJSON() when passing to reply(), send(), or edit(). An embed must have at least one of: title, description, fields, or image/thumbnail. A description-only embed (no title) is valid.","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.025435133,0.0005760156,-0.01962209,-0.0021063087,0.000394358,-0.030782152,0.009890759,0.007566768,-0.02433139,0.0028773954,0.015783519,-0.01981831,0.03203306,-0.03787063,-0.017831573,0.012012398,-0.003985737,0.01805232,0.02568041,0.055285234,0.03487826,-0.015452395,-0.027470924,0.040396977,-0.0069229184,-0.009338888,-0.02729923,0.039759256,0.017120272,-0.016801413,-0.003645416,-0.008020529,0.015256174,0.0108596,-0.028967109,-0.019695671,0.05891532,0.002834472,0.010638852,0.05082121,0.054156967,0.023448396,-0.0350009,-0.009363416,-0.012766622,0.049447663,-0.050477825,-0.015599561,0.008480421,0.0380178,-0.010485554,0.010976106,0.023472924,-0.0069781053,-0.058866266,-0.009712934,-0.042334657,0.010902523,-0.040593196,0.03921965,0.023742728,-0.025337022,-0.0012279135,0.05768894,-0.02823128,-0.02330123,-0.08108828,0.04147619,-0.01859193,0.010657247,0.042579934,-0.017807046,0.0016525479,0.025140801,0.0453025,-0.0056444164,-0.0004667911,0.045106277,-0.023558771,-0.042776152,-0.00079868035,0.015624088,-0.10860826,0.009933682,-0.08074489,0.008756357,-0.002276469,-0.022405973,-0.016445763,-0.02710301,-0.06642077,-0.04540061,-0.061024696,-0.024454027,0.033455662,0.021731464,-0.036865,0.00035373415,0.0032928318,0.03303869,0.05955304,-0.033406608,-0.093989804,-0.02977652,0.038140435,-0.04684774,-0.011889759,0.024956845,-0.0016234212,-0.011687406,-0.05881721,-0.004629587,-0.016862733,0.0074931853,0.037674412,-0.002389909,0.024883261,0.012135035,-0.03549145,-0.034216017,-0.05361736,-0.04024981,0.04446856,-0.0151458,0.016715568,-0.02783884,-0.013882628,-0.014299598,-0.030463293,-0.0047123674,-0.005371547,0.032057587,0.0521457,0.004350585,-0.02407385,-0.024515348,-0.04621002,0.011644484,0.021989003,-0.03509901,0.010798281,-0.008363916,0.028501084,-0.0026827075,-0.044419505,-0.00045491054,-0.020223016,-0.010522345,-0.0040102643,-0.009400207,-0.03549145,0.0085049495,-0.060632255,0.017586296,-0.03995548,-0.013845837,-0.012429367,-0.02607285,-0.013011898,-0.021155065,-0.009620955,-0.013649615,0.006683774,0.0077261976,-0.058473825,-0.026980372,0.015317493,-0.04309501,-0.037649885,0.02017396,-0.006628587,-0.024049323,-0.04915333,0.030414239,-0.001139001,-0.006505949,-0.031567037,-0.074563935,0.013036425,0.031051956,-0.0040562535,0.044861,-0.024380445,-0.008964842,-0.002075649,0.029016163,-0.031125538,-0.0006641617,0.014103376,-0.049619358,-0.03186137,-0.00860306,-0.015992003,0.01298737,0.03509901,-0.02023528,0.030193489,0.015992003,0.02874636,-0.014422235,0.037821576,0.020872997,0.011889759,0.010976106,-0.020664513,-0.013576033,0.024221016,0.006061386,-0.056413505,-0.0016801413,0.02668604,-0.03995548,0.018125905,-0.0132694375,-0.0064691575,0.02526344,-0.038336657,-0.003777252,-0.05307775,0.011012898,-0.08152978,0.0375763,0.060337923,-0.020934315,-0.027593562,0.01991642,-0.01391942,-0.025704937,-0.008934182,0.011362416,0.012306729,-0.010687906,0.0060276603,-0.04341387,-0.025901157,0.07471111,-0.021289967,0.03460846,0.004102243,-0.000741577,-0.03161609,0.0072785686,0.016764622,-0.0077323294,-0.01582031,-0.011650615,0.035785783,-0.071914956,0.019278703,0.05253814,0.044419505,0.013293965,0.036521614,-0.019033426,0.022099378,-0.03963662,-0.058964375,0.026612459,0.03122365,-0.050428767,-0.0032621722,-0.0024880196,-0.021339022,-0.020149432,0.015624088,-0.0019208186,0.01163222,0.004479355,0.01437318,-0.030365182,-0.033946212,0.00075460726,0.012325125,0.01685047,-0.04527797,0.012398708,0.012190223,-0.009154931,-0.015869364,-0.0013950078,-0.016715568,-0.03379905,-0.0062116175,0.031272706,-0.014471291,-0.012582664,0.00071743265,0.007523845,0.020554138,0.010056321,0.011478922,-0.01817496,0.047191124,0.0061594965,-0.036055587,0.010522345,0.056609727,0.0054727234,0.066813216,0.025557771,-0.01647029,0.0075422404,0.035049956,0.03387263,0.018395709,0.012962842,-0.017721198,-0.049619358,0.056511614,-0.053273972,-0.014949579,0.0017460593,-0.031444397,0.0043904423,-0.045106277,0.04137808,0.03519712,0.022835206,-0.016801413,-0.0059632757,0.032400973,0.01888626,-0.010185091,-0.063575566,-0.020713568,-0.072356455,-0.032278337,0.0012670044,0.015955212,-0.0048166094,0.035565037,-0.0008929584,-0.016568402,0.042996902,0.030855734,-0.056609727,0.004969907,-0.022442764,-0.008474289,0.03657067,-0.028353918,-0.018358916,0.023239912,-0.01627407,-0.049864635,0.005438998,-0.038827207,0.079224184,-0.018003266,-0.016261807,0.0037956478,-0.014753358,-0.018493818,-0.040789418,0.0741715,-0.017586296,0.015893891,-0.039881896,0.002281068,-0.00097497256,-0.00870117,0.012754357,0.010148299,0.0335783,-0.018383445,0.022761622,-0.010203486,0.0335783,-0.033897158,0.009271437,0.0048135435,0.05597201,-0.012791149,0.014974107,-0.018003266,0.0038232415,0.03303869,-0.0016740095,-0.007333756,0.01904569,-0.01031386,-0.008198354,0.00017418436,-0.04383084,0.01878815,-0.00037845338,0.038434766,0.010338388,-0.040102646,0.0134411305,0.013735462,-0.029187858,-0.0028727965,-0.054451298,0.074465826,0.06323218,-0.0010209618,-0.011288833,-0.0047368947,-0.0067818845,-0.022197489,-0.028819943,0.027986005,-0.012392576,0.010510081,-0.0277162,0.037429135,-0.0067083016,-0.0025570034,-0.014054321,0.022467291,-0.022933317,0.037919685,-0.014140168,-0.018506082,-0.003789516,-0.018714568,-0.0493005,0.02233239,0.041279968,-0.049423136,-0.052489087,-0.032450028,-0.0036147567,0.048000537,-0.038238544,0.040200755,0.009308228,-0.004099177,-0.037968744,-0.06548872,0.024049323,0.07441677,0.020198489,-0.0019146866,-0.00025006666,0.03519712,-0.040887527,-0.0037987137,0.016261807,-0.006006199,0.01965888,-0.016004266,-0.0012087513,-0.059994537,-0.033136804,-0.042579934,0.005932616,0.0028206753,-0.046357185,-0.023338022,0.011141667,0.011552505,0.00024700072,0.0023147934,0.02639171,0.0132694375,-0.004985237,0.015194855,0.025238913,0.0041972874,0.03441224,0.001575899,0.037355553,-0.021768255,-0.044394977,-0.05935682,0.027936948,0.014287334,-0.035172593,0.016482554,0.023988003,-0.0021063087,0.01031386,-0.0058804946,-0.022822943,-0.0056444164,-0.053028695,-0.028501084,0.004280068,-0.02397574,-0.021437133,-0.025729464,-0.016727831,-0.018224016,0.09874816,0.029359551,-0.03593295,0.027863367,-0.022136169,-0.009130403,-0.010786017,-0.00016067502,-0.012147299,0.01924191,-0.0028881263,-0.056953114,-0.018653248,0.04331576,0.009872364,-0.0115095815,0.0011481988,-0.07063952,0.049521245,0.045130804,-0.01401753,-0.021952212,-0.014557137,0.007505449,0.00834552,-0.030414239,-0.020713568,-0.009363416,0.037061222,0.018248543,0.036202755,-0.047877897,0.040838473,-0.0028038125,-0.056021065,-0.014508082,0.005868231,0.02346066,-0.0069167865,0.018457027,0.015182591,-0.0041942215,-0.013171327,0.004654114,-0.024012532,-0.040912054,-0.0044057723,0.02023528,0.024012532,-0.05842477,0.0085417405,-0.054107912,0.058719102,-0.01791742,-0.049349554,-0.028255807,0.043610092,0.010338388,0.0018119772,-0.047387343,-0.0027011032,-0.014348652,-0.004421102,-0.008038925,0.022700304,0.043806314,-0.03985737,0.050870266,-0.041132804,0.013060953,0.045572303,-0.007897891,0.022945581,0.010675643,0.0053531514,-0.0010945447,-0.01453261,0.015317493,0.029653883,-0.023350285,0.02884447,0.018739095,-0.0074931853,0.011675143,-0.03338208,-0.027789783,0.016028794,0.00082320796,0.03725744,-0.013747726,0.0032437765,-0.013674143,0.016041057,-0.030021796,-0.025901157,-0.00151458,-0.01827307,-0.042727098,-0.018125905,-0.007174326,0.007174326,0.008259673,0.00002024007,-0.008431367,0.022185225,0.025950212,0.021670144,-0.0037527245,-0.0027271637,0.02587663,-0.020774886,0.008382311,-0.011699671,-0.032376446,0.05391169,0.010203486,-0.0073582833,-0.031174595,0.021020163,-0.00667151,0.016740095,0.023068218,0.004227947,-0.034951847,-0.03161609,0.023387076,-0.002090979,-0.01272983,-0.044738363,-0.021167329,0.035049956,0.02545966,-0.017353285,0.036693305,0.01869004,0.017880628,0.008014397,-0.003096611,0.025238913,-0.040593196,0.0420158,0.010013397,-0.021510715,0.010540741,0.01688726,0.0066408506,-0.011669011,0.014937315,-0.018187223,0.0058835605,-0.023325758,0.009768121,-0.01272983,0.002386843,0.010123772,0.0057179993,0.016813677,0.03149345,-0.0032345788,-0.013036425,0.020934315,-0.00860306,0.019352285,-0.0038876263,0.0029954344,-0.026342655,-0.024944581,0.0054604593,-0.028623722,0.009915287,-0.029751992,-0.006861599,0.008290333,-0.018260807,0.0072724367,-0.027593562,-0.0026290533,0.014483554,-0.031567037,0.021670144,0.014446763,-0.048000537,-0.018923052,-0.015427867,0.01846929,-0.02658793,-0.011816177,0.009228514,-0.02197674,0.009670011,-0.039146066,0.020529611,-0.0198551,0.021498451,0.018395709,-0.021584298,-0.00032135003,-0.042113908,-0.011221382,0.0034982506,-0.022504084,0.003464525,0.018702304,0.030831207,-0.03632539,-0.03460846,0.0037496586,0.012754357,-0.033234913,0.024969108,0.053862635,0.025606826,0.004365915,-0.0060981773,-0.047509983,-0.026465293,0.019389076,-0.008370047,-0.036791418,0.020922052,-0.02977652,-0.019756991,0.011006765,0.03379905,-0.039783787,-0.025950212,0.022921052,0.00084773556,-0.01298737,-0.018285334,-0.023031427,-0.029163329,0.012325125,0.03863099,0.0021768254,-0.0065182126,-0.012331257,-0.014471291,-0.005537108,-0.027986005,-0.030978372,-0.0021093746,0.04118186,-0.027789783,0.013723198,0.015648616,0.008897391,0.028304864,0.009976606,-0.028721832,0.052194756,-0.028550139,0.0061502983,-0.021486187,0.0046326527,0.006223881,0.009768121,0.02926144,0.027667146,0.021473924,0.008560136,0.012447762,0.0031977873,0.019940948,-0.0046326527,-0.012901523,0.008744094,-0.029751992,-0.0050250944,-0.014422235,-0.003985737,0.023362549,-0.033136804,-0.026121905,0.016151432,0.022957845,0.048270337,-0.014127904,0.0055922954,-0.011429867,-0.048172228,-0.011748726,0.027470924,0.009283701,-0.0022611392,-0.029531244,-0.02568041,-0.0072785686,-0.02262672,0.08604286,-0.039146066,-0.04466478,0.0015674677,-0.024196489,0.01920512,-0.02046829,0.033897158,-0.0029187857,-0.00087302964,-0.009522845,0.014005266,-0.032278337,-0.014863732,-0.0081615625,-0.038851734,-0.004556004,-0.03676689,0.0052182493,-0.0047614225,-0.0016525479,0.0056382846,-0.0380178,-0.08883901,-0.016862733,0.02346066,-0.02568041,-0.004362849,-0.02142487,0.0032345788,-0.01250295,0.017586296,-0.029236913,-0.008032792,-0.0116812745,0.02017396,-0.017647617,-0.025054954,0.002579998,0.019646617,-0.013073217,0.0064017065,-0.020958845,0.022712568,-0.0040777153,0.01962209,-0.0009466125,0.010099244,0.002576932,0.016973106,0.038974375,0.029531244,0.004988303,0.01756177,0.05297964,-0.03912154,0.0074870535,0.005530976,-0.0068064122,0.027691673,-0.02181731,0.020345654,-0.028304864,0.01688726,-0.017880628,-0.013747726,-0.013539242,0.008130903,0.015611825,0.019254174,-0.0045222784,-0.02783884,0.02987463,0.05288153,0.007953078,-0.01334302,-0.0033173594,0.019744728,0.0324255,-0.04169694,-0.0019714066,0.022418236,0.006036858,-0.002267271,-0.013514713,0.013281701,-0.002961709,0.029801048,-0.024809679,0.012331257,-0.008204486,-0.027544508,-0.00062353787,0.01688726,0.016261807,0.012447762,0.012012398,0.0020603193,0.0035013165,-0.003088946,0.013809045,-0.02059093,0.03193495,0.013588296,-0.043070484,0.015771253,0.04682321,-0.014299598,-0.011975606,-0.008419103,-0.009167194,0.008590796,0.043879896,0.030463293,-0.024760623,0.011485054,-0.019180592,0.004418036,-0.014961842,-0.031885896,-0.016960843,0.0434384,-0.0054022064,0.058719102,0.024674777,-0.012263806,-0.013661879,-0.060337923,-0.022344654,-0.0032560404,0.010920919,-0.0070148967,0.020480555,0.027789783,-0.008370047,-0.028770888,-0.021228647,-0.018824942,-0.025852103,0.0067266976,0.0065979273,0.014912788,-0.00208638,0.032670777,0.009179458,-0.00670217,-0.049030695,-0.003098144,0.01724291,0.02742187,-0.007904023,-0.007854967,0.0031855234,-0.017684408,0.05337208,-0.011994001,-0.038827207,0.01082894,0.0052182493,0.017610826,0.030561404,-0.034731098,0.024601193,0.017892892,-0.029580299,0.023215383,-0.034436766,-0.016249543,0.0031855234,-0.032621723,0.04056867,-0.014912788,-0.04517986,0.029236913,-0.017022163,-0.0204315,-0.0038753625,0.046676043,0.041844103,-0.003715933,-0.024797415,-0.0033296233,-0.008854467,-0.043781787,0.06460573,0.017991003,-0.002333189,-0.0107492255,-0.009804913,0.0088851275,0.001132869,-0.012355784,0.01765988,-0.031125538,0.020860733,0.021670144,0.0024665578,0.0136128245,0.04064225,0.016458027,0.03399527,0.012030793,0.017144801,-0.022994636,0.04238371,0.008658247,0.018714568,0.019217383,0.0032989637,0.004776752,-0.008903523,0.007198854,0.026121905,0.00530103,0.0077384613,0.011061952,-0.03365188,-0.023779519,0.012766622,-0.01878815,-0.001008698,-0.0017445263,-0.012490686,0.0048993905,-0.026220016,0.006493685,-0.015084481,0.011393076,-0.0321557,0.0072724367,0.01340434,0.013122272,0.013330757,-0.006818676,-0.025238913,0.0050925454,0.02165788,-0.0069658416,0.022504084,-0.021866364,0.013980738,-0.0052795685,0.00931436,-0.008468158,-0.0012831007,-0.0095412405,0.023313494,-0.024993636,-0.015391076,0.016764622,0.01924191,-0.01740234,0.020333389,0.009774253,-0.006303596,0.0111968545,-0.028819943,0.04069131,-0.03068404,-0.027495451,-0.022773886,-0.015280702,0.012766622,0.023926685,0.017512714,0.0040470557,-0.03173873,-0.04468931,-0.013159064,0.055285234,0.01756177,-0.02207485,-0.004531476,0.011270437,-0.0064691575,0.028427502,-0.024343655,0.026857734,-0.0078856265,-0.030585932,-0.014275069,0.011558637,-0.007566768,0.009535109,0.017892892,0.024858734,-0.01781931,-0.012926051,0.022577666,0.0076526147,0.011209118,-0.004040924,0.027078483,-0.030929318,0.045891162,0.010736962,-0.0061686942,-0.026121905,0.02690679,-0.030144434,0.022516347,0.024012532,0.0064078383,-0.04468931,-0.034240544,0.00480128,-0.013122272,0.019413603,0.0065182126,-0.01163222,-0.007646483,0.03254814,0.037232913,0.0070823478,0.03554051,-0.015489186,-0.02536155,0.018959843,-0.017267438,-0.014974107,-0.0052090515,0.034068853,0.024760623,-0.00465718,0.012705303,-0.0069167865,-0.0033817445,-0.0142014865,0.0145448735,0.045008168,-0.010571401,0.040004533,-0.010571401,-0.016225014,-0.0033234912,0.024110641,-0.03787063,-0.00022458094,-0.005319426,0.011693538,-0.034682043,-0.00044111375,0.010884128,-0.014508082,0.011190723,-0.0054451297,0.044125173,0.0051937215,-0.020149432,0.006628587,-0.017414603,0.029016163,0.013772254,-0.01008698,0.011460526,0.0035810312,-0.021670144,-0.02433139,-0.012288333,-0.06745093,0.017120272,-0.036006533,0.0049760393,-0.008130903,0.0072172494,-0.03164062,0.01688726,0.018640984,-0.02680868,0.014826941,-0.0040501216,-0.01781931,0.0065427404,0.039783787,0.0062330794,-0.018530611,0.0005166128,0.0045222784,0.0029218516,0.031910423,0.026121905,-0.027176592,0.0046387846,-0.016654247,-0.0062208152,0.028795416,0.001764455,-0.028672777,-0.02506722,0.007640351,-0.013490186,0.021326758,-0.02387763,-0.00182884,-0.0061870897,0.017549505,0.04579305,-0.024257807,-0.007953078,0.0056934715,-0.010123772,-0.002518679,0.011711935,0.0062852004,-0.0035135802,0.016678775,0.04373273,-0.033676412,-0.0048748627,-0.04714207,0.00014860283,0.0124416305,-0.02742187,-0.0063342554,-0.019695671,0.017169328,-0.012754357,0.0132694375,-0.0029141868,-0.017328758,-0.003587163,-0.0038324392,-0.030782152,-0.014704303,0.028942581,0.022356918,0.014189223,0.014226015,0.0066531147,-0.0041942215,0.021755992,-0.02987463,0.029604826,0.011595428,0.04282521,-0.016776886,0.020492818,0.022822943,0.024772888,0.008554004,0.011270437,0.006867731,0.03181231,0.013465659,0.0036423502,-0.014974107,0.011184591,-0.008038925,0.027176592,0.008290333,-0.015624088,0.00025236612,0.030659514,0.008977106,-0.044713836,-0.00705782,0.015893891,-0.0095412405,0.03480468,-0.006245343,-0.0028881263,-0.0052673044,0.025803046,0.0045682676,-0.0035565037,0.02803506,0.017954212,0.020701304,0.011736462,0.0039366814,0.0020587863,0.01617596,0.007940814,0.0067328294,-0.017414603,-0.021069217,0.015673144,-0.003718999,0.0103015965,-0.040666778,-0.0023531178,-0.009682274,0.005368481,-0.006990369,-0.02342387,0.022160696,-0.03585937,-0.024944581,-0.015783519,-0.032499086,0.001354384,-0.0011849902,-0.048491087,0.0057793185,0.021130538,-0.005809978,0.009737462,0.044198755,-0.006180958,-0.008670511,-0.019413603,0.012594928,-0.016151432,0.032278337,0.02268804,0.018260807,0.01324491,-0.0139930025,-0.010252542,-0.017757991,-0.03009538,0.04321765,0.000042108924,-0.018898524,-0.0055647017,0.015967475,0.016384445,0.040863,-0.020210752,-0.008425235,0.010203486,0.0038048457,0.011264306,-0.010540741,0.009320492,0.024355918,-0.03225381,0.028574668,0.015942948,0.015280702,0.030414239,0.022859734,-0.05381358,0.019965475,-0.00094354653,0.008535609,-0.028770888,0.054892793,0.0005683507,0.019057954,-0.003476789,0.007861099,0.004273936,0.0046479823,-0.00555857,-0.03009538,0.0031671277,-0.008419103,-0.0125090815,0.0049515115,0.0065856637,-0.040298864,0.0120246615,0.013490186,0.017083481,0.0028206753,-0.003976539,0.00834552,0.030168962,-0.0010109975,-0.024552139,-0.006000067,-0.008192223,0.0066653783,-0.0028881263,-0.030659514,-0.024515348,0.010651115,-0.00232859,-0.0048779286,-0.023681408,0.0073521514,0.032204755,0.0045038825,-0.037110277,0.04660246,0.011724198,0.0053408872,-0.0012524412,-0.016163696,0.01298737,-0.00465718,0.030634986,0.02526344,-0.023865366,-0.008578532,-0.0027624222,0.033210386,0.027863367,0.0002922235,-0.009761989,0.008014397,-0.0049269837,0.010914787,0.003645416,-0.00892805,-0.02680868,0.024625722,-0.006751225,0.015280702,0.011938815,0.037919685,0.028942581,-0.027078483,-0.03296511,-0.03448582,0.03210664,-0.015648616,-0.025901157,-0.00401333,-0.011485054,0.015023162,-0.0056413505,-0.02007585,0.03983284,-0.003722065,0.020738095,-0.020823942,0.010185091,-0.033504717,0.013392076,-0.026514348,0.023902157,-0.019928684,0.046136435,-0.011981738,-0.02884447,-0.0138581,-0.018579666,0.037527245,-0.0060184626,-0.025140801,0.007143667,0.031910423,0.02803506,0.015599561,-0.0017951145,0.00870117,-0.04260446,-0.013526978,-0.013318493,0.04034792,0.039881896,0.0017705869,-0.0012953645,-0.0073030964,0.010657247,-0.014961842,-0.012239278,0.012619456,-0.009210118,0.013686407,-0.011098744,-0.031689674,0.0012524412,-0.018199487,0.0010876462,0.025582299,0.009878496,-0.010963842,0.0017062019,-0.013293965,-0.03276889,0.025753992,-0.011570901,-0.025999269,-0.00834552,-0.0005016663,-0.004418036,-0.00818609,0.024797415,-0.020321125,-0.017929684,-0.005347019,0.0032928318,0.017377812,-0.010387443,-0.0022335455,0.055481456,-0.027274704,0.0075483723,0.0012148833,-0.010626587,-0.011693538,-0.04375726,0.0017322625,-0.0026689107,0.0048963246,-0.012288333,0.037723467,0.033749994,0.024478557,0.024527611,0.012294465,0.020529611,0.001360516,-0.007879495,0.009001633,-0.034780152,0.016482554,0.000153585,0.024257807,0.032891527,0.007008765,0.032817945,0.02803506,-0.011932683,0.02326444,-0.03492732,-0.0050189625,0.0010462559,0.02084847,-0.020958845,-0.0028053455,0.004203419,-0.00084313663,-0.0061901556,0.026563402,0.043168597,-0.019450396,-0.026146434,0.014176959,-0.004681708,0.001355917,0.015771253,0.031984005,-0.041647885,-0.031787783,-0.0040777153,0.016531609,-0.03186137,0.011061952,0.01720612,-0.0107492255,0.0090936115,-0.0012654715,-0.019806046,0.024380445,0.030659514,0.011969474,-0.00802666,0.0554324,0.024956845,-0.03585937,0.013257174,-0.0067328294,-0.0277162,-0.014593929,-0.015170327,-0.035442397,-0.01324491,0.012643984,-0.046185493,0.027936948,0.00581611,-0.032204755,-0.002645916,0.0062790685,-0.022062587,-0.030512348,-0.008081848,-0.008878996]},{"id":"guide-embeds-1","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Basic embed\nMinimal embed with title, description, color, fields, footer, and timestamp.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embed') {\n const embed = new EmbedBuilder()\n .setTitle('Hello!')\n .setDescription('This is a Fluxer embed.')\n .setColor(0x5865f2)\n .addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true }\n )\n .setFooter({ text: 'Powered by Fluxer.js' })\n .setTimestamp();\n\n await message.reply({ embeds: [embed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.036455404,-0.0065648584,-0.013694824,-0.009931453,0.028808426,-0.03265596,0.0047703437,0.012113727,0.007803284,0.016556429,0.00802572,-0.0153180035,0.02496089,-0.057184007,0.0029562905,0.043693583,-0.020259682,-0.00230251,0.014404213,0.056606874,0.0066971174,-0.016484288,-0.025994916,0.0663219,-0.011644809,-0.025273504,-0.036263026,0.05598165,-0.011897303,-0.010183947,0.037465382,-0.0234339,0.017782832,-0.013718871,-0.016039416,-0.0016171675,0.06406148,0.019105421,-0.03477211,0.045665443,0.022243569,-0.012161821,0.0037753948,0.008729097,0.009270158,0.02705299,-0.06502336,-0.008061791,-0.022303686,0.08267393,-0.003234335,-0.016171675,0.006492717,0.018035326,-0.028928662,0.016364053,-0.06257056,0.018961139,-0.025658257,0.022435945,0.027990825,-0.013538518,0.017458195,0.04554521,-0.028736286,0.017001301,-0.054779295,0.029072944,0.012889246,0.05930015,0.07829736,-0.022844745,0.0038745892,-0.015065509,0.014873132,-0.004592996,-0.0012001006,0.023073193,-0.018552339,-0.027101083,0.017265819,0.025081126,-0.098977864,-0.0036972417,-0.072862715,0.028375579,-0.02712513,-0.009378369,-0.039172728,-0.0071600243,-0.047661353,-0.0514127,-0.06997706,-0.01774676,0.0688228,0.04953703,-0.03573399,0.0014586069,0.0014097613,0.035950415,0.08007684,-0.047661353,-0.076421686,-0.02902485,0.022207497,-0.044487137,0.004710226,-0.011765044,-0.013057576,-0.0056901453,-0.05492358,0.008626898,0.023746513,0.03433926,0.039605577,-0.0071840715,0.02912104,0.036118746,-0.0020905947,-0.030948618,-0.050306536,-0.039870095,0.043741677,0.007905484,-0.0040789894,-0.04412643,-0.008416485,-0.03234335,-0.05862683,-0.020175517,0.026235387,-0.01886495,0.03335333,-0.005025844,-0.036888253,-0.011320173,-0.0116087375,0.01188528,-0.015702756,-0.03448354,0.018191632,-0.04338097,0.04592996,0.009053733,-0.0019027268,0.0047493023,-0.04155339,0.016556429,-0.009636875,-0.0014849085,0.004472761,-0.022904864,-0.055693086,0.022952957,-0.023277594,-0.02570635,0.012083668,-0.029601982,-0.020415988,-0.045978058,0.00240471,-0.0047402848,0.0028961727,-0.024263525,-0.053625036,-0.0042413073,-0.013742918,-0.054154072,-0.04039913,0.03708063,0.0052843504,-0.031333372,-0.01476492,0.019357916,0.028375579,-0.011374279,-0.028640097,-0.051941738,0.021534178,0.034459494,0.00443669,0.023650324,-0.011584691,0.021498108,-0.007995661,0.0026767428,-0.004271366,0.018215679,-0.016364053,-0.028183201,-0.061320107,0.0033275175,-0.022640346,-0.002063542,0.017362006,0.012588657,0.035782088,0.010490548,0.04378977,-0.039870095,0.01310567,0.03335333,0.007628943,-0.0053294385,0.009961512,0.012612704,-0.007701084,0.016905112,-0.040615555,0.020764671,0.02705299,0.028087014,0.015726805,0.012468422,-0.0273656,0.05737638,-0.0057382393,0.0016532382,-0.040687695,-0.018299844,-0.06516764,0.027149176,0.054202165,-0.03308881,-0.029217228,0.038355127,-0.03708063,-0.021498108,-0.02936151,0.053769317,0.021510132,-0.002729346,-0.023686394,-0.052134115,0.01551038,0.032800246,0.0038866126,0.015606568,0.0059516574,0.0045869844,-0.021750603,-0.032752153,0.017470218,-0.03823489,0.00022299928,-0.02089693,-0.008013696,-0.06502336,0.013502447,0.05381741,0.08219299,0.016400123,0.030563865,-0.010364301,0.038066562,-0.051556986,-0.038066562,0.018985186,0.013442329,-0.059155867,-0.01713356,2.2015779e-7,-0.022904864,-0.020259682,0.026475858,-0.026259433,0.015859064,-0.007544778,0.0056751156,-0.044150475,-0.0030013788,-0.030179111,0.003474806,0.00961884,-0.038451314,-0.010352277,0.0022619304,0.003823489,-0.03542138,0.0086148735,0.0045569255,-0.026548,-0.0024798573,0.013863154,0.0008078323,-0.006606941,0.011686891,-0.015654663,0.030660054,0.0018381003,-0.018155562,-0.0010024635,0.0580497,-0.01629191,-0.015822992,0.045881867,0.06713951,0.025153268,0.06045441,0.012396281,-0.019381963,-0.030106971,0.009733064,0.012227951,0.017866995,0.029145086,0.00046365816,-0.0037333125,0.048478954,-0.05747257,-0.018672574,-0.0030705142,-0.030155065,-0.027293459,-0.0068053296,0.045978058,0.051124137,0.058193985,0.0080317315,-0.040831976,0.043140497,-0.005140068,0.022075238,-0.07930734,-0.03657564,-0.062474366,-0.019129468,0.0052963737,0.03457973,0.0013406259,0.028375579,-0.012756987,-0.006047846,0.023938889,0.022399874,-0.064879075,0.00066843425,-0.0037092653,0.023999007,0.05367313,-0.012612704,-0.04297217,-0.011969444,-0.019418035,-0.026860612,0.013634706,-0.010003594,0.014428261,0.009456523,-0.01916554,-0.02712513,-0.0046651377,-0.020428011,-0.047396835,0.05285553,-0.02705299,0.02336176,-0.0729589,-0.012913293,-0.025754444,-0.033064764,0.015654663,0.026908705,0.015522404,-0.027149176,-0.017289866,-0.005323427,-0.0003090428,-0.00626427,-0.014296002,0.018961139,0.025826586,0.0007473388,0.0025204367,-0.029337462,-0.017145583,0.023986982,0.003661171,-0.009871335,-0.0036311122,0.004731267,0.023289617,-0.01564264,-0.029481746,-0.010412395,0.0018396032,0.024816608,0.010244065,-0.025730398,0.029890547,0.01737403,-0.031718127,-0.019454105,-0.036455404,0.07146798,0.056029744,0.028038919,-0.003928695,0.0013797024,0.0021086303,0.004298419,-0.013899224,0.02371044,-0.037753947,0.018347938,-0.03383427,0.016147628,-0.010514595,0.0019718623,-0.004081995,0.012516516,-0.028014872,0.020259682,0.015462286,-0.025513973,-0.0059065693,0.015125627,-0.037777994,0.0096128285,0.027317507,-0.0020079329,-0.029145086,-0.009955499,-0.018095443,0.039581526,-0.021005142,0.04819039,-0.028808426,-0.018311867,-0.061175823,-0.045160454,-0.02827939,0.082770124,0.036864206,0.028736286,0.006630988,0.014788967,-0.039028443,-0.023133311,0.02367437,-0.008109884,0.0203198,0.0055248216,-0.0037242947,-0.04537688,-0.0086148735,-0.038451314,0.013201858,-0.018191632,-0.034387354,-0.019862905,0.010189959,0.027750354,-0.014247907,-0.018480197,0.005128044,0.0020966067,0.030106971,0.06348435,0.025562068,0.013442329,0.023073193,-0.040086515,0.032199066,0.004550914,-0.017698666,-0.021185495,0.0062101637,0.031116948,-0.026980847,0.0084826145,0.023277594,0.010616795,0.03234335,-0.012251998,-0.037200864,-0.00502885,-0.05780923,0.037513476,0.015931204,0.025898727,-0.016279887,-0.042924076,-0.023277594,-0.025538022,0.11648416,0.027846543,-0.029698169,-0.003159188,-0.014945273,-0.019213634,-0.003769383,-0.0012729934,-0.012492469,0.028255343,-0.037200864,-0.055644993,0.0047012083,0.012336163,-0.00567211,-0.009396405,-0.0029187168,-0.03914868,0.032752153,0.029986735,0.009570746,-0.024107218,-0.017782832,-0.020500153,0.011488503,0.0073764483,-0.011488503,0.0016276882,0.029890547,0.003820483,0.023650324,-0.038258936,0.04667542,-0.016147628,-0.059925374,0.012221939,0.002059033,0.0043735662,-0.009919429,0.019862905,-0.009624852,-0.031982645,-0.044439044,-0.010676913,-0.023085216,-0.009498605,0.0032673997,0.02380663,0.0066430117,-0.050643194,0.03566185,-0.058097795,0.02871224,-0.012648775,-0.0163881,-0.035204954,0.042635508,-0.0003366594,0.003934707,-0.054683108,0.017121537,-0.004154137,0.0352771,-0.014728849,0.03167003,0.040086515,-0.032126926,0.01422386,-0.015606568,0.020680506,0.06742807,0.016267864,0.0050198324,-0.009690981,0.017121537,0.008218097,-0.009107839,0.038210843,0.028664144,-0.004562937,-0.00058765104,0.025008984,0.023974959,0.009282181,-0.0110436315,-0.034459494,-0.0075628133,-0.0011024093,0.04542497,0.00013056824,0.020067306,-0.029794358,0.014247907,-0.0010565695,0.00077627046,0.0019959093,-0.024672326,-0.009240098,0.007851378,-0.014368143,0.014283977,-0.0009934459,-0.0023220482,-0.0050889677,0.0205242,0.023722464,0.0074004955,-0.006637,-0.0021807714,0.0064265877,-0.015498357,0.005560892,-0.011909327,-0.010881313,0.03316095,0.017013324,-0.031742174,-0.02512922,-0.0016036411,0.004331484,0.01229408,0.025730398,-0.005055903,-0.03145361,-0.0049597146,0.003664177,0.0060328166,-0.016724758,-0.060742978,-0.020043258,0.021498108,0.01791509,0.012276045,0.03590232,0.020259682,0.0075748367,0.0110436315,0.016568452,-0.00010210624,-0.03126123,0.022652369,-0.0075628133,-0.030419583,-0.0033756117,0.0039136657,0.022652369,0.015474309,0.0037513478,0.00978717,0.01977874,-0.02401103,0.0062943287,0.022989029,0.0037333125,-0.021630367,0.00019763711,-0.020235635,0.051941738,0.0005981716,-0.009011651,0.005972699,-0.015414191,0.008825286,-0.013009481,-0.018444126,0.0028300432,-0.017145583,0.023169382,-0.036864206,0.018961139,-0.031165043,0.015750851,-0.012209916,-0.0236383,0.0053144093,-0.007436566,0.010731019,-0.011668855,0.02160632,-0.018720668,0.02173858,-0.04429476,-0.0057352334,-0.010502571,-0.0031862408,-0.017049395,-0.008729097,0.00802572,-0.0053564915,-0.002915711,-0.034892343,0.009065757,-0.030034829,0.023782583,0.018480197,-0.026475858,0.018588409,-0.037104677,-0.018275797,0.0042172605,-0.03342547,-0.016844993,0.0344114,0.016352028,-0.024792561,-0.034964483,0.023722464,0.024540067,-0.020764671,0.0060268044,0.040928166,0.018648528,0.0034146884,0.007057824,-0.062474366,0.004145119,0.0039407187,-0.025249455,-0.0077191195,0.008681003,-0.030948618,-0.000048986574,0.0013751936,0.033641893,-0.056751158,-0.007953579,0.017566407,0.011518561,-0.012865199,-0.036022555,-0.011945398,-0.013730895,-0.008188038,0.016977252,0.0077371546,-0.010773101,-0.0046681436,-0.01422386,-0.00812792,-0.03203074,-0.046555188,0.015726805,0.038523454,-0.014656708,-0.012113727,0.005116021,-0.0024738454,0.008560768,0.003315494,-0.031862408,0.029890547,-0.029746264,-0.0039888127,-0.018840903,-0.0032944528,-0.00058502087,0.029337462,0.024167337,0.014716825,0.012396281,0.008813262,0.022291662,0.0005076193,0.008446544,-0.0058975513,-0.030467676,0.0076349545,-0.016604522,0.0065949173,-0.031044807,-0.005323427,0.0150534855,-0.023830676,-0.033449516,0.010526618,0.00924611,0.038619645,-0.0011685388,-0.0015390144,-0.02512922,-0.038619645,-0.02546588,0.001366176,-0.0044998135,0.012913293,-0.0090477215,-0.01567871,-0.037008487,-0.0045539197,0.05530833,-0.028760333,-0.05160508,-0.0016352029,-0.03251168,-0.0015630615,-0.0047282614,0.01933387,-0.0012647272,-0.0076950723,0.011187914,-0.008735109,-0.03390641,-0.0138872005,-0.033136904,-0.06497527,-0.019514222,-0.034363307,0.021389896,-0.0172057,-0.011530585,0.015293956,-0.030179111,-0.097535044,-0.015197768,0.017253796,-0.00860285,-0.022135356,-0.013827083,-0.0003731058,-0.006282305,0.018191632,-0.010358289,-0.009829252,0.0025685309,0.025393737,-0.024323642,-0.009324264,0.014103625,0.051268417,0.00988937,0.021955002,-0.030082922,-0.02844772,-0.01100756,0.019021256,0.029096993,0.003904648,0.027509883,0.010382336,-0.005479733,0.035108767,0.0058735046,0.019381963,0.031621937,-0.00738246,-0.008139944,0.03142956,0.018937092,0.018396033,-0.024347689,0.0030840407,-0.017446171,0.0039437246,-0.02285677,-0.026235387,-0.00056623406,0.05862683,0.016412146,0.012288068,0.017530337,-0.025946822,0.0033876353,0.03780204,-0.0061620697,-0.0007725131,-0.0028706226,0.044342853,0.031862408,-0.032944527,0.016808923,0.026451811,-0.024347689,-0.02306117,0.00067444606,0.024275549,0.008019708,0.016808923,-0.021089308,0.015798945,-0.0013323596,-0.021726556,-0.037777994,0.024419831,-0.0018726679,0.03674397,0.036623735,-0.008777192,0.009005639,0.013694824,-0.013153764,0.004006848,-0.0036581652,0.00015790304,-0.017518314,0.026331576,0.04321264,0.029674122,-0.022279639,-0.015330027,0.008536721,0.017037371,0.043741677,0.057905417,-0.041312918,0.012179856,0.0038385184,0.008224108,-0.0062101637,-0.043236688,0.016364053,0.06396529,-0.016736781,0.032319304,-0.013045552,-0.0021011154,0.019971117,-0.044198573,0.01534205,-0.007298295,0.0046681436,-0.032944527,-0.035373285,0.025441833,-0.022640346,0.0039737835,0.012408304,-0.025345644,-0.018961139,0.019886952,-0.015931204,0.0167969,-0.009955499,0.06290722,0.022087263,-0.01605144,-0.041192684,-0.028976757,-0.006985683,0.020500153,-0.006288317,-0.028928662,-0.013021505,0.012636752,0.0460502,-0.008470591,-0.031862408,0.024672326,0.011103748,0.018335914,0.008019708,-0.020776695,0.047493026,0.0062702815,-0.0410484,0.025826586,-0.024648279,-0.0033816237,0.034050696,-0.010670901,0.039821997,-0.023193428,-0.051316515,0.017482242,0.005407592,-0.03830703,0.010971489,0.0360947,0.044751655,-0.00711193,-0.021281684,-0.04992178,0.02414329,0.0027774402,0.053047903,0.010051688,-0.030419583,0.0075267428,-0.010183947,-0.0236383,0.0032162997,-0.014728849,0.001417276,-0.023013076,-0.0070938948,0.026163246,0.015462286,0.025562068,0.03193455,0.024467925,0.036070652,0.0072021065,-0.008157979,-0.000441114,0.027245365,0.017157607,0.006498729,0.023962935,0.006276293,0.021221567,-0.03128528,-0.0116267735,0.016376076,0.004247319,0.012624728,0.018107466,-0.02401103,-0.019117445,-0.004214254,-0.007983637,0.019730646,-0.008085838,-0.0064566466,0.014512425,-0.013382211,-0.020933,-0.027750354,0.0074004955,-0.024371736,-0.0048905793,0.02201512,0.007454601,0.020331824,-0.0137549415,0.0029788346,-0.0035709944,0.035854228,0.019790763,0.019309822,-0.031549796,0.017265819,-0.005461698,0.01713356,-0.00018025932,-0.004124078,0.011031607,0.019418035,-0.019586364,-0.01107369,0.0007867911,-0.017794855,-0.008560768,0.034627825,-0.006985683,-0.004914626,0.012805081,-0.009925441,0.037393242,-0.013791013,-0.033810224,-0.007953579,0.011350231,0.0203198,-0.00094535167,0.02604301,0.0031050819,-0.04754112,-0.027822496,-0.010773101,0.02119752,0.0150534855,-0.018215679,0.0072622243,0.010749054,-0.0016983264,0.0310929,-0.031044807,0.033497613,0.018576385,-0.020764671,0.0018245737,0.03955748,-0.017903067,0.008656956,0.017145583,0.0075507895,-0.04280384,-0.01493325,0.0034958473,0.021558225,-0.001071599,0.007087883,0.04511236,-0.023241524,0.022399874,0.020945026,-0.0068113413,-0.030756243,0.036551595,-0.016700711,0.0021176478,0.030611958,-0.018143538,-0.035373285,-0.022255592,0.0027098076,0.00042570883,0.011452432,0.018552339,-0.038138703,-0.016712734,0.029890547,0.019093398,0.015005391,0.000056266457,-0.024155313,-0.02136585,0.017181654,-0.009961512,-0.022435945,-0.0068534235,0.027678212,0.018504243,-0.012221939,0.0012061124,-0.009384381,-0.009570746,-0.01936994,0.03979795,0.028736286,-0.012877222,0.0460502,-0.0020229623,-0.015570498,0.002326557,0.020872883,-0.050643194,0.018468173,-0.0038415242,-0.008434521,-0.04405429,0.016893089,0.004571955,-0.0009167957,-0.012961388,-0.010526618,0.054202165,-0.008717074,-0.0065588467,0.026764423,-0.034074742,0.029385557,0.004463743,0.017229747,-0.0037092653,-0.0013045552,-0.016700711,-0.006104958,-0.0062161754,-0.042250756,0.03126123,-0.021654414,0.042563368,-0.01053263,-0.008368391,-0.045737587,0.027726308,0.009528664,-0.040278893,0.012053609,-0.00802572,-0.019285776,0.010989525,0.059684902,0.006655035,-0.013033529,0.0099134175,0.024227453,0.017806878,0.028880568,0.0051641148,0.0021717537,0.0010272621,-0.024696372,0.015774898,0.028760333,-0.00037930545,0.005771304,0.0011467461,0.002840564,-0.0020740624,0.005347474,-0.00924611,0.01476492,0.003955748,-0.007671025,0.035204954,-0.058530644,-0.025610162,-0.0005707429,-0.008885404,-0.005909575,-0.0047973967,0.002138689,0.004998791,0.019658504,0.01459659,-0.022940934,0.009606817,-0.035758037,-0.004632073,0.02678847,-0.015305979,-0.017494265,-0.021257637,0.00026207583,-0.038715832,0.0033064764,-0.00062146725,-0.024816608,-0.013526495,-0.00921004,-0.048262533,-0.014476354,0.0306841,0.0075026955,0.011067678,0.014849084,0.0023415864,0.029986735,0.02919318,-0.017891044,0.011223984,-0.00089199713,0.048454907,-0.015089556,0.01459659,0.023686394,0.039701764,0.01117589,0.017626524,-0.0013789509,0.04378977,0.006252246,0.0050949794,-0.014500402,0.030611958,-0.036623735,0.01886495,-0.008139944,-0.029505793,0.012648775,0.020584319,0.0018335914,-0.018371984,0.005392562,0.005681128,0.013370188,0.008650945,-0.0032764175,-0.026187293,-0.011584691,0.034146883,-0.0016457235,0.01961041,0.027654165,0.013827083,0.022616299,0.013093647,-0.00958277,-0.017422125,-0.00060455914,-0.0044096373,0.018648528,-0.010520606,-0.0013684303,0.01795116,0.0000036135232,0.001632197,-0.048719425,0.015859064,-0.014043507,-0.017494265,0.015702756,-0.022411898,0.026572047,-0.04335692,-0.018624479,0.0026872635,-0.0028676167,0.017217724,0.0007338123,-0.049224414,0.011915338,0.032824293,0.027341554,-0.02082479,0.040110566,-0.018396033,0.023409853,-0.0319586,0.009396405,-0.01774676,0.012889246,-0.00017950786,-0.006685094,0.0026797487,-0.014199813,-0.026091104,0.02628348,-0.02289284,0.013069599,-0.0025625192,-0.024503997,-0.013995413,0.022171427,0.002696281,0.050162252,-0.027221318,0.003052479,0.01154862,0.0024407806,0.0143200485,0.000097409546,-0.004626061,0.03448354,-0.005780322,0.01185522,0.0017298883,-0.0044487137,0.025008984,0.032800246,-0.03708063,-0.0010640842,0.0047493023,0.004097025,-0.020391941,0.039533433,-0.02235178,0.029169133,0.0032583822,0.0033245117,0.011470467,0.00958277,-0.037681807,-0.0145845665,-0.0055548805,-0.0045809727,-0.018023303,0.0053294385,0.009173969,-0.04229885,-0.0010054694,-0.0238427,-0.012215927,0.0030389524,0.0118912915,0.019141492,0.010027641,-0.01256461,-0.0205242,-0.0053264326,0.004271366,-0.022075238,-0.023494018,-0.011692903,-0.008687015,0.0004640339,-0.020584319,-0.007556801,-0.0063424227,0.0150534855,0.029890547,-0.007827331,-0.012239974,0.043501206,0.041938145,0.00038588082,0.0074004955,-0.018215679,0.009173969,-0.020343848,0.00978717,0.032150973,-0.012221939,-0.00042495737,-0.02671633,0.05357694,0.00069360854,-0.0015961264,0.039028443,0.031477656,0.007953579,0.0034718001,0.004893585,-0.043837864,-0.032535728,0.0273656,0.021798696,0.0052572973,-0.0096128285,0.027678212,-0.015774898,-0.014079577,-0.012793058,-0.035613757,0.053192187,0.02712513,-0.03782609,0.009799194,0.0118912915,-0.011037619,-0.009961512,-0.0030569877,0.01605144,-0.030900525,0.023866747,-0.01435612,0.013827083,-0.0026481869,0.026692282,-0.005458692,0.025898727,-0.01459659,0.01144642,0.00524828,-0.045232598,-0.022051191,-0.03914868,0.01517372,0.0033064764,-0.009763123,-0.011434397,0.025922775,-0.0019403005,0.0025204367,-0.0065648584,0.012083668,-0.032944527,0.017265819,0.017097488,0.012137774,0.049224414,-0.014524449,-0.009360334,-0.024431854,-0.0033786176,-0.038427267,-0.0163881,0.028159155,-0.037008487,-0.0046561197,-0.010340253,-0.01724177,-0.005158103,-0.014091601,-0.012408304,0.012480445,0.002888658,-0.010232042,-0.009408428,-0.01625584,-0.028495815,0.025345644,-0.0051941737,-0.022279639,-0.00020440036,-0.006600929,-0.000103609185,0.005212209,0.022087263,-0.012017539,-0.022123333,-0.016989276,-0.0056751156,-0.01771069,0.0065047406,-0.0138872005,0.02662014,0.00075823517,-0.00019575843,-0.012227951,0.012877222,-0.024984937,-0.033810224,0.00914391,-0.030203158,0.020884907,-0.0068534235,0.034531638,0.008440533,0.015366097,0.016881065,0.0058193984,0.02488875,0.019862905,-0.006787294,0.03905249,-0.012336163,0.02496089,0.009456523,0.03765776,0.049392745,0.014091601,0.023109265,-0.0027684225,-0.009510628,0.017470218,-0.008578803,0.011139819,0.023037123,0.009035698,-0.032247163,0.0021852802,-0.018347938,0.0065889056,-0.028928662,-0.0025685309,0.026860612,-0.008578803,-0.028952708,0.010250077,0.0010400371,0.0335938,0.028567955,0.027245365,-0.027509883,-0.04792587,0.02580254,0.030563865,-0.02621134,0.032247163,0.010995537,-0.008530709,0.015967274,-0.010123829,-0.0034056706,-0.012684845,0.05449073,0.010821195,-0.011783079,0.03467592,0.03376213,-0.04578568,-0.011133808,0.004923644,-0.0306841,0.0028946698,-0.0011835683,-0.041264825,-0.0021191507,-0.022207497,-0.06011775,0.0048545087,-0.004647102,-0.039100587,0.011236008,0.031213136,-0.01534205,-0.020055283,-0.01890102,-0.008037743]},{"id":"guide-embeds-2","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Title, Description, and URL\nsetTitle() and setDescription() accept strings (max 256 and 4096 chars). setURL() makes the title a clickable link.\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Clickable Title')\n .setDescription('Main body text here.')\n .setURL('https://example.com');\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.014959544,-0.009406463,-0.012789247,0.0008256262,-0.022577727,-0.023430344,0.016133275,0.0030921188,-0.0007619568,-0.0011142147,0.04043838,0.006765567,0.027172998,-0.06227422,-0.028856086,-0.0007107444,-0.021492578,0.012390621,0.04260868,0.048543774,0.017096622,-0.024936264,-0.045044724,0.060325384,0.011034186,-0.0002164414,-0.009616849,0.047525063,0.020496015,0.0030561318,0.009428609,-0.028169563,0.026929393,0.010458393,-0.026752226,-0.0061731646,0.06608331,-0.02673008,0.014583063,0.03177934,0.011637662,-0.0013107595,0.016875163,-0.016664777,-0.041102756,0.033418138,-0.061078344,0.0023253176,0.028125271,0.048632357,-0.011299936,0.0072417036,-0.02059567,-0.00977187,-0.03802448,0.013431477,-0.04511116,0.019255845,-0.027903812,-0.0072638495,0.005752393,-0.00451776,0.004354434,-0.004249241,-0.015003835,0.003177934,-0.084685855,0.035300538,-0.02285455,0.00059482455,0.05771217,-0.049075276,-0.0043101422,0.047082145,0.0043572024,0.0024401995,-0.036540706,0.048056565,-0.00948951,-0.034791183,-0.0068762964,-0.010845946,-0.06435593,-0.0037564952,-0.060059633,0.0306499,-0.0122356,-0.015590701,-0.012999633,-0.0057136375,-0.059173796,-0.0432952,-0.054921787,-0.021680819,0.033528864,0.0612998,-0.031292133,0.028546043,0.00089137175,-0.0104694655,0.06528606,-0.049075276,-0.057889335,-0.023851115,0.0019405329,-0.02759377,0.00029620118,0.021370776,0.0021038589,-0.012434913,-0.06745636,0.006859687,-0.0022630324,0.002506637,0.045620516,-0.0075351363,0.020817129,0.024404762,-0.03802448,-0.032288697,-0.057313543,-0.03532268,0.054877497,-0.007258313,-0.0032554448,-0.016498683,-0.0080002,-0.007989127,-0.046107728,-0.005068639,0.022943133,0.0133871855,0.0048305704,0.011803756,-0.035366975,-0.031712905,-0.05797792,-0.0043821163,-0.0026436646,-0.0067212754,0.06342581,-0.053770203,0.033750325,-0.015037054,-0.0030755093,0.006389087,-0.035477705,0.030362004,-0.00013443243,0.0056167496,-0.024537638,0.0059959977,-0.038533837,0.006361405,-0.028147416,-0.03561058,-0.0065828636,-0.021680819,-0.050005402,-0.012866758,0.017462028,-0.018480739,0.023518927,0.021282192,-0.05120128,0.0045925025,0.050049692,-0.012445986,-0.031934362,0.0049994327,0.03242157,-0.031225694,-0.018801855,0.0077621317,0.022090517,-0.0089690825,0.0030422907,-0.032775905,0.035300538,0.06980382,0.0122577455,0.05474462,-0.020972151,0.022810258,-0.019809492,0.0026865723,0.004459627,0.001636027,0.01833679,-0.055630457,-0.058066502,-0.033329554,-0.012445986,0.013431477,-0.03151359,0.018281426,0.020318847,-0.0088251345,0.03937538,-0.003728813,0.027239434,0.04347237,0.0062285294,0.010391955,-0.04393743,-0.034193244,-0.017938165,-0.017705632,-0.043959577,0.04433606,0.030915651,-0.011792682,-0.010436247,-0.013021779,-0.03399393,0.044225328,0.01772778,-0.022599872,0.006466598,-0.010690925,-0.0694052,0.028236,0.03151359,-0.044933997,-0.01404049,0.00024170155,-0.009306807,0.021403994,-0.017218424,0.04796798,0.03284234,-0.018325718,0.0034021612,-0.043848846,-0.027261581,0.05850942,0.012811393,0.0030755093,0.005060334,-0.025157722,-0.026176432,-0.0016830871,-0.03733796,-0.0074188705,0.029166127,-0.01400727,0.014472334,-0.072904244,-0.013719374,0.0484109,0.039331086,0.0115380045,0.04039409,-0.022190174,0.019266918,-0.043605242,-0.056073375,0.015424607,0.06125551,-0.05120128,-0.005079712,-0.0055641527,-0.016022546,-0.021470433,0.023164593,-0.021138245,-0.01766134,0.025046993,0.032155823,-0.07520742,-0.014782377,-0.026021412,0.0021564553,0.030893506,-0.025091285,-0.022633092,-0.016664777,0.01120028,-0.019433012,-0.01268959,-0.010286762,-0.0029011106,-0.007728913,0.0031364106,-0.01954374,-0.004897008,-0.023762532,-0.0087420875,0.007679085,-0.012656372,0.0015100724,-0.013165727,0.021791548,-0.005068639,-0.037360102,0.076447584,0.042099323,0.018657906,0.055098955,0.01998666,0.011870193,0.008647967,0.01844752,0.027970249,0.020972151,0.06524177,-0.022511289,-0.024271887,0.013298603,-0.03893246,0.0074410164,-0.014051562,0.011759464,-0.018702198,-0.013254311,0.021282192,0.05749071,0.03549985,-0.050049692,0.005680419,0.076359004,0.0113940565,0.01261208,-0.024648366,-0.021105027,-0.03968542,-0.0005508788,0.024271887,0.012158089,0.009666678,0.05718067,-0.0026408965,-0.00047129206,0.037648,0.015634993,-0.013442551,-0.014273021,-0.029941233,-0.0074410164,0.07232845,-0.039596837,0.0016291065,0.0005010506,-0.00621192,-0.038002335,-0.015668212,-0.0100985225,0.0036872893,0.015502118,-0.01487096,-0.015479972,-0.017362371,-0.0244712,-0.018059967,0.011028649,-0.035034787,0.027239434,-0.049518194,-0.009838308,-0.018059967,-0.011870193,0.0006695669,0.008996765,-0.0030035353,-0.047525063,-0.00287066,0.002903879,0.009007838,-0.017982457,-0.0068652234,-0.0077732047,0.04119134,0.011737318,0.0039004434,-0.020274555,0.0338832,0.014439115,-0.01280032,-0.012711736,0.0055946037,-0.0035904013,0.01468272,-0.04347237,-0.04889811,0.006610546,-0.00884728,0.07086682,0.046152018,-0.008714405,-0.03248801,0.002811143,-0.0071475836,-0.025667077,-0.013453623,0.08464156,0.04265297,0.032288697,0.000062890846,-0.0024900276,-0.042143613,-0.014250875,-0.037470832,0.027172998,-0.01562392,0.0027806924,-0.039818298,0.018048894,-0.033307407,0.0052347328,-0.0020429576,0.004210486,-0.020208118,0.033263117,-0.0047004637,-0.019067604,0.042232197,-0.0035101224,-0.060192507,0.056914918,0.025534203,-0.046284895,-0.05089124,-0.02495841,-0.03383891,0.039508253,0.0037205082,0.047480773,0.013686155,0.00082078174,-0.041390654,-0.045753393,0.041324217,0.029808357,0.006765567,-0.0048665577,0.01603362,0.010989894,-0.013054998,-0.005649968,-0.0153803155,-0.014727011,0.0301184,-0.007850715,-0.0013675082,-0.051998533,-0.01750632,-0.009888137,-0.019300137,-0.011770536,-0.04770223,-0.018491812,0.009561485,-0.022644164,0.019875929,0.019023312,0.04916386,0.026929393,-0.058332253,0.008625821,-0.008797452,0.021182537,0.0038063235,-0.04739219,0.0132432375,-0.0129553415,-0.031557884,-0.06568468,0.033462428,0.033639595,-0.06874082,0.042852283,0.014627355,0.002552313,-0.01992022,-0.01014835,-0.024338325,-0.0258221,-0.08694474,-0.025423473,-0.01025908,-0.018403228,-0.006975953,-0.007507454,0.01664263,-0.044889703,0.12135944,0.031292133,0.00047509838,0.033971783,-0.031114964,-0.046107728,0.0013031467,0.0054866425,-0.00930127,-0.010032085,-0.010203715,-0.017151985,0.00006531305,0.0009820315,0.0018464129,0.005375913,-0.0071586566,-0.0446461,0.020684253,0.0060624355,-0.020639962,-0.012589934,0.00076403294,0.005093553,0.03308595,-0.045288328,-0.061211217,0.001777207,0.015192076,0.013187873,0.004506687,-0.022987425,0.060901176,-0.0006214688,-0.06174272,-0.012545642,0.019599106,0.029431878,-0.0053482307,0.02356322,0.0073302872,-0.009594703,-0.009118567,0.012700664,-0.03308595,-0.0225888,-0.017295934,0.03308595,0.022289831,-0.052840076,0.025578493,-0.0301184,0.027638061,0.019377647,-0.034835473,-0.03538912,0.025711369,0.027172998,-0.0059849247,-0.040637694,-0.0153803155,0.0000028844795,0.0030948871,0.00023772221,-0.0062617483,0.02266631,-0.028368875,0.035787746,-0.018137477,0.0018920888,0.022201248,0.011427275,0.018270353,-0.018790781,-0.0010540056,0.0038063235,-0.014184438,0.017639196,0.028833939,-0.02356322,0.012844612,0.007424407,0.021182537,0.026154287,-0.028944667,-0.038046625,-0.0068209316,0.012368475,0.079105094,0.009910283,-0.00724724,0.00003804161,0.018358937,-0.019266918,-0.019632325,0.019643398,-0.02974192,0.0026187506,-0.03383891,-0.025999267,0.01637688,0.009306807,0.0043101422,-0.011072941,0.027837373,0.04969536,0.0077123037,0.025512056,0.013951906,0.023142448,-0.040482674,0.0052734884,-0.025689224,-0.018392155,0.026885102,0.0036513023,-0.0173513,-0.018248208,0.015568555,-0.022644164,-0.002001434,-0.00072666176,-0.0091960775,-0.020075243,-0.03572131,-0.005752393,0.01242384,0.014560917,-0.042852283,-0.0054811058,0.011549078,0.01174839,-0.028413167,0.008631358,0.0030339858,0.017085548,0.012324183,0.014904179,0.03166861,-0.03538912,0.009356636,-0.010170496,-0.02210159,0.030583464,0.002575843,0.051422738,0.01731808,0.010331054,-0.043915283,0.02318674,-0.026597206,-0.0014090318,-0.0150592,0.016886236,-0.008681186,0.0024678817,-0.002728096,0.030384151,0.018580396,-0.053504452,0.012744956,-0.026885102,0.024116866,-0.01298856,0.004550979,-0.016985891,-0.019222626,0.0039502718,-0.014693793,0.0015432911,-0.018059967,-0.030782776,-0.029564753,-0.033174533,-0.012922122,-0.028745355,-0.0025246306,-0.02216803,-0.015280658,-0.008238268,-0.017517393,-0.038157355,-0.020352066,-0.03908748,0.0026671947,-0.029121835,-0.005791148,0.0044623953,-0.000031986096,0.021769403,-0.04167855,0.01570143,-0.014771303,-0.0072693857,0.03368389,-0.01570143,0.023474636,-0.022832405,-0.03162432,-0.003269286,-0.014217656,-0.011770536,0.038002335,0.018026749,0.010236934,-0.035211954,0.027305873,0.0033329553,-0.016454391,0.0005270028,0.050846945,0.019654471,-0.0009924123,0.006411233,-0.044778973,0.0046063433,0.013830104,-0.013586499,-0.031070674,0.021702964,-0.023076009,-0.0182925,0.021636527,0.008326852,-0.018757563,-0.008492946,0.0089690825,-0.0030063035,-0.020496015,-0.029697629,-0.015945036,-0.010607878,-0.010314445,0.030029817,0.005951706,-0.035809893,-0.018203916,-0.021293266,-0.016177567,-0.022145882,-0.009362171,0.013409331,0.0012643915,-0.017572757,0.020197045,0.01261208,0.019222626,0.017484175,0.032244403,-0.02225661,0.042099323,-0.005470033,-0.012833538,0.01904546,0.0019363806,-0.022920989,0.007601574,0.0277045,0.033927493,0.0073302872,-0.0019253077,0.03206724,-0.018735416,-0.00048513323,-0.002319781,-0.019709835,0.005140613,-0.020684253,-0.025733516,-0.01901224,0.0029703164,0.039596837,-0.050049692,-0.0338832,0.002950939,-0.01063556,-0.0026616582,-0.015668212,-0.001141205,0.0018477971,-0.04619631,-0.0030146083,0.040460527,-0.0028983424,0.023939699,-0.02224554,-0.059616715,-0.034924056,-0.049119566,0.054921787,-0.0446461,-0.05018257,0.010718607,-0.011189207,0.015336024,-0.036806457,0.009683287,0.022422707,0.0113940565,0.01946623,-0.028036688,-0.023784678,-0.01120028,-0.00052285043,-0.042520095,-0.001188957,-0.017362371,-0.0067711035,-0.016764432,-0.0060901176,0.0060624355,-0.015557482,-0.0817183,-0.032244403,0.024249742,0.019964512,-0.014671647,-0.034879766,0.009384317,-0.011194743,0.030804923,-0.029321149,0.026552914,0.014693793,0.032886636,-0.024825534,-0.03760371,-0.0036402293,0.033063803,-0.026796518,-0.001611113,-0.03410466,0.016908381,0.0016498682,0.045155454,0.009567021,0.01573465,0.0061344095,0.020794984,0.033794615,0.03718294,-0.022212321,-0.022810258,0.043095887,-0.01148264,0.0040610014,-0.01112277,-0.015778942,0.020584598,-0.00560014,-0.00060174515,-0.024537638,0.019743053,-0.04023907,-0.012966414,-0.0050990894,0.00089344796,-0.010364273,0.009567021,0.022832405,-0.030804923,0.016166493,0.032399427,0.0073690424,0.006366941,0.0148045225,0.02544562,0.0009799553,-0.02108288,-0.008177367,0.024537638,-0.006461061,0.009777407,0.0015778941,-0.027793081,0.00409422,-0.007142047,-0.010851482,0.014649501,0.01705233,0.0031502517,-0.0042547775,0.015989328,0.011438348,0.026198579,0.040416237,0.009362171,0.00027682353,-0.016144348,0.03328526,0.013575426,0.02759377,0.028656771,-0.020695327,-0.006942734,0.049385317,0.0036042423,-0.0071697296,-0.016454391,-0.010519294,0.00051939016,0.037935898,0.04942961,-0.002671347,0.013320749,-0.0054146685,-0.011626588,-0.02748304,-0.03437041,-0.010452856,0.043715972,-0.010701997,0.026486475,0.012933196,-0.0024166694,0.0050188107,-0.039862588,0.0028623552,-0.006012607,0.044889703,-0.02721729,0.005467265,-0.006472134,-0.010209252,-0.024803389,-0.0004529525,-0.040770568,-0.014472334,0.003739886,0.012290965,0.0088860355,-0.02420545,0.028457459,0.03862242,-0.0008657656,-0.051156987,-0.019477304,0.019399794,0.0016844711,-0.026176432,-0.012623153,-0.010397492,0.0067821764,0.047215022,0.022300903,-0.022876697,0.004913618,-0.009090885,0.026198579,0.025002701,-0.021392923,-0.00790608,0.01430624,-0.02127112,0.010032085,-0.024537638,0.026641497,0.038600273,-0.026597206,0.012224527,-0.0017232265,-0.042741552,0.011947704,-0.0061233365,-0.030029817,0.013420405,0.026109995,-0.0050880164,-0.015424607,-0.029454023,-0.017617049,0.013652937,-0.028324584,0.02537918,0.019599106,-0.0032388354,0.02202408,-0.01938872,0.000929435,-0.01498169,-0.013088216,-0.0061953105,-0.010807191,0.008553847,0.023696095,0.0073468965,0.047746524,0.016598338,0.03437041,0.01705233,0.013010706,0.00023149367,0.021891205,0.024139011,-0.0047143046,0.005868659,0.05168849,-0.016465463,0.015878597,-0.03647427,0.02062889,0.016044691,-0.0066880565,0.0015169929,0.021979788,-0.058819465,-0.018513957,0.00209417,-0.0045814295,-0.017938165,0.016387952,-0.01185912,-0.0031142647,-0.025578493,-0.03904319,0.017096622,-0.0017481406,-0.029609045,-0.024936264,0.010187106,0.030849215,-0.00086092117,0.0036180834,-0.016996965,0.0059959977,0.035588432,0.02624287,0.041877862,-0.0006484591,-0.0015737418,-0.018757563,-0.019156188,-0.01063556,-0.0021924423,0.00041938765,0.030428443,-0.008481873,-0.026707934,0.015491045,0.011526932,0.02078391,0.022444852,-0.0061288727,-0.021138245,0.0067821764,-0.03284234,0.033905346,-0.021857986,-0.014616283,-0.009041056,0.020905713,0.038711004,0.028058833,0.019289063,-0.009306807,-0.04641777,-0.03366174,0.015269586,0.02985265,0.01890151,-0.014051562,0.009063202,0.0033910882,-0.005785612,0.017772071,-0.027062269,0.047082145,0.0069482704,-0.028523896,0.00291772,0.01758383,-0.023164593,0.012457059,0.009240369,-0.007092219,-0.023319615,0.0024263582,0.011848047,0.007828569,0.0031557882,0.047347896,0.040947735,-0.044136744,0.046063434,0.014317313,0.0068098586,-0.017373445,0.027084414,-0.0074022613,0.0015723576,0.042409364,0.009517193,-0.048499484,-0.011333155,0.023053864,0.0034409165,0.013974052,-0.0080444915,-0.036917187,-0.008614748,0.025777807,0.028435312,0.012479205,0.012368475,-0.01336504,-0.0060845814,0.0034630625,-0.016066838,0.021514725,-0.023031717,0.014926325,0.029808357,-0.009949038,-0.018458594,-0.04012834,0.010491611,0.008880499,0.02646433,0.05576333,-0.008692259,0.050315443,0.021680819,-0.01093453,-0.013431477,0.026309308,-0.030937798,0.011892339,0.0024734181,0.014295167,0.005243038,-0.018137477,-0.0019446852,-0.008509555,0.007081146,-0.024537638,0.028479604,0.0024180536,-0.0073136776,-0.00079725176,-0.051422738,0.031314276,0.006383551,0.021691892,-0.004210486,0.009550412,0.007059,-0.010248007,-0.023363905,-0.049651068,0.021581162,-0.034813326,0.015767869,-0.0160004,-0.0009931044,-0.0053703766,-0.0034630625,-0.0071918755,-0.013331821,0.0064887437,0.0012920739,0.019355502,0.038268086,0.04212147,0.011704098,-0.018048894,-0.00630604,0.029188273,0.04130207,0.029387586,-0.00032803588,-0.03941967,0.0053703766,-0.014704866,-0.0106743155,-0.0006519194,0.015070273,-0.014749157,-0.008343461,-0.00066160824,-0.030472735,0.010048694,-0.009755261,-0.005104626,-0.01468272,-0.0074299434,0.040061902,-0.029166127,-0.010386419,0.018048894,-0.00912964,0.0066271555,-0.0016069605,-0.012844612,0.027017977,0.026796518,0.061166927,-0.042785846,0.0016083447,-0.037714437,0.009722042,0.0129553415,-0.0021024747,0.005918487,-0.01127779,0.013298603,-0.019676616,0.015612847,-0.02646433,-0.011648734,0.0014380983,0.004492846,-0.025954975,-0.026176432,-0.0043101422,0.019898076,0.023031717,0.03279805,-0.012302037,-0.0103532,0.005611213,-0.017140914,0.017838508,-0.01016496,0.046816394,-0.0056139813,0.03410466,0.026397891,0.037869457,-0.0013536671,-0.0029204881,0.00960024,-0.028368875,-0.018868292,-0.00082770234,-0.028900376,0.031447154,-0.00082908646,0.02078391,-0.0034990495,-0.036717873,-0.009007838,0.019189406,-0.013730447,-0.03313024,-0.00409422,-0.0040776106,-0.00677664,0.0202967,-0.0116819525,-0.0041661942,-0.015070273,0.037448686,-0.012822466,-0.0072859954,0.045531936,0.022013007,0.025024846,0.015181002,0.0033938566,-0.016288297,-0.0026339758,-0.008819598,0.00019844787,-0.024670513,-0.015502118,0.03456972,-0.0044430178,-0.00045087634,-0.020972151,-0.019444084,-0.028523896,0.027770936,-0.0038893705,-0.03372818,0.053327285,-0.055497583,0.018248208,-0.019222626,-0.036164224,-0.022079445,-0.0027101024,-0.048366606,0.0072527765,0.007142047,0.036407832,0.016930528,0.052618615,-0.012147017,0.0070756096,0.009838308,0.012855684,0.009389854,0.027925957,-0.00310596,0.012634226,0.010613414,-0.011803756,0.025733516,0.014760231,-0.032332987,0.014095854,0.0077123037,-0.0066880565,-0.02560064,0.035234097,0.010369809,0.040106192,-0.016210785,-0.0011335923,0.013608645,-0.01961018,-0.021525798,-0.022743821,0.0061178,0.031912215,-0.016177567,0.00687076,0.021658674,0.015203148,0.031114964,0.010857019,-0.03957469,0.013774739,0.0051129307,-0.0013474385,-0.011604442,0.032930925,-0.0015086882,0.012468132,-0.0077732047,0.007081146,-0.003000767,-0.014793449,-0.021171464,-0.037980188,-0.0055364706,0.026973685,-0.041324217,0.012667445,0.006317113,-0.020717474,-0.00969436,0.019067604,-0.00077233766,-0.017938165,-0.022677384,0.005539239,0.046329185,0.013187873,-0.030162692,0.0041163657,-0.010834873,-0.0017993529,-0.02202408,-0.032997366,-0.01799353,0.012191309,-0.021503652,0.0077012307,0.010358737,0.024980556,0.029764066,0.007507454,-0.018934729,0.04420318,0.0004564128,0.010751826,0.012778174,-0.0033689423,0.016476536,-0.006222993,0.019776274,0.026663642,0.030539172,-0.00225888,-0.0051599904,0.035034787,0.0019488377,0.0031253377,-0.0066271555,0.02624287,0.029454023,0.020872494,-0.0006529575,-0.011006503,-0.00771784,0.018192843,0.015845379,-0.007551746,-0.012656372,0.007955908,0.031934362,-0.04415889,-0.013497915,-0.022788113,0.026021412,-0.00999333,-0.022920989,0.012069506,-0.007225094,-0.008963546,-0.0054506552,-0.023961844,0.017617049,-0.006937198,0.025202014,-0.032908782,0.0009093653,-0.019743053,0.024227595,-0.012080579,0.02495841,0.016631559,0.04167855,0.015158856,-0.05616196,-0.020208118,-0.010502685,0.036585,0.017462028,-0.013531134,-0.00032457558,-0.00414128,0.018779708,0.0006667987,-0.021669745,-0.003186239,-0.022544509,0.036119934,0.019731982,0.037581563,0.05168849,0.0277045,0.009655605,-0.018392155,0.0011543541,-0.014815595,-0.020340992,0.023319615,-0.020307774,0.0037371176,-0.011947704,-0.02495841,0.0066935928,-0.0052042822,-0.00265889,0.014339459,-0.019322282,-0.053017244,0.011382984,-0.019909149,-0.016321516,0.0043710438,-0.018713271,-0.006566254,-0.0035710235,0.017605977,0.0061565554,-0.0046866224,0.025157722,-0.022389486,-0.020507088,-0.019001167,-0.0062174564,-0.009279124,-0.0018394924,-0.012578861,0.039729714,0.0062894304,0.013542207,-0.0059350966,-0.01603362,-0.02225661,-0.02597712,-0.02533489,0.011770536,-0.008814061,-0.016122201,0.018170696,0.03279805,-0.023275323,0.013486843,0.0032028481,-0.01513671,0.013021779,-0.014937398,0.03490191,-0.043317348,-0.00143533,0.018425373,0.023784678,0.028213855,0.024626222,0.024781242,0.011870193,-0.017838508,0.019853784,-0.009024447,0.0066603743,0.0009010606,0.013497915,-0.018414302,0.020396357,0.0005892881,-0.006975953,0.020008804,0.027062269,0.039397527,0.012922122,0.0030367542,0.01287783,0.012091652,0.027283726,0.031048527,0.030229129,-0.021824768,-0.022433778,0.020230263,0.039198212,-0.062229928,0.038733147,0.012966414,0.011266718,0.004980055,-0.033595305,-0.004415335,0.0060181436,0.04433606,0.022832405,-0.0000091427455,0.05066978,0.0051793684,-0.03893246,-0.005093553,-0.0061565554,-0.026685787,0.0061731646,0.0066382284,-0.02495841,-0.030627755,-0.0033938566,-0.031070674,0.010602341,-0.0015640529,-0.047215022,0.018314645,0.027948104,-0.006466598,-0.061166927,0.0050381883,-0.0088251345]},{"id":"guide-embeds-3","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Color\nsetColor() accepts: number (0x5865f2), hex string (\"#5865f2\"), or [r, g, b] array.\n\n```javascript\nembed.setColor(0x5865f2);\nembed.setColor('#57f287');\nembed.setColor([88, 101, 242]);\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.019101862,-0.023603005,-0.005934342,0.009215025,0.010704209,-0.04082379,0.036009137,-0.013548214,-0.0044759493,-0.031799115,0.015048595,-0.003213502,0.037196007,-0.062792055,0.021318844,0.016683338,0.013481033,-0.007569085,-0.045011424,0.029962827,-0.0010923947,-0.016739322,-0.044070885,0.055760417,-0.029492559,0.005640424,0.007210785,-0.0050833793,0.019952824,-0.015384501,-0.023535823,-0.02555126,-0.009047071,-0.04373498,-0.015630832,-0.03948017,0.031015333,0.032829225,-0.045862384,0.0375767,0.012809221,0.012786827,0.027611485,0.02028873,0.014623114,0.012070227,-0.04734037,-0.045907173,0.022550499,0.062612906,0.0058279713,0.01918024,0.008963095,0.02680531,0.0044171656,0.04720601,-0.040599857,0.010782587,0.004590717,0.0043275906,0.03296359,-0.016537778,-0.015015004,-0.018049356,-0.0035130184,0.018586807,-0.04286162,0.017612679,0.01570921,0.007798621,0.05517818,0.012473314,0.011499187,0.010782587,0.011191273,0.03889793,-0.0082856845,-0.0033086755,0.006270248,0.012842812,-0.010317917,0.018385263,-0.05773107,-0.015037398,-0.025887167,-0.014130452,0.01771345,-0.06749474,-0.036904886,0.004898631,-0.020949345,-0.05750713,-0.08245376,0.0033590614,0.004296799,0.029716495,-0.06592718,0.00794418,0.005911948,0.017243182,0.052849233,-0.03860681,-0.03930102,-0.010620233,0.02018796,-0.006337429,0.030545065,0.058447666,-0.014164042,0.019986415,-0.029806072,0.014175239,0.011779108,0.014164042,0.052177418,0.017803025,-0.01105691,0.0014373984,0.015955541,-0.05607393,-0.060104806,-0.04165236,0.07492946,-0.013615395,-0.02196826,-0.015664423,-0.018911516,-0.046534196,-0.048370484,-0.00350742,-0.01875476,-0.026939671,0.020982936,0.01953854,-0.009215025,0.0040560667,-0.022494514,0.014376783,0.0084256455,-0.014387979,0.032874014,-0.022919996,0.0422346,-0.024543542,-0.0098140575,0.0045739217,-0.05289402,0.070719436,0.0072163837,0.008319275,-0.027723454,0.0028999897,-0.031127302,0.013772151,-0.038987506,-0.016325038,0.0054304823,-0.007876999,-0.060060017,-0.019527344,-0.0012582483,0.015261335,0.03553887,-0.025618441,-0.037307974,0.0018264896,-0.014141648,-0.00045942163,-0.009489348,0.052177418,0.013201111,-0.021632355,-0.01975128,-0.00079567765,0.009354986,0.00013996089,0.029470164,-0.033321887,0.0044283625,0.050341133,-0.00969649,0.03925623,-0.02723079,0.03853963,0.023849336,0.0032442934,0.0023023565,-0.039748892,-0.00008332047,-0.057283193,-0.0031911083,0.008733559,0.013928908,0.0028999897,-0.037666276,-0.0072163837,0.027006853,-0.0053129154,0.025170567,-0.032157414,-0.004198827,0.021710733,0.033232313,-0.011555171,-0.060866192,-0.008778347,-0.009153442,-0.040644642,0.007059627,0.02168834,0.027186003,0.014119254,-0.018598003,-0.0055564474,-0.042055447,0.033523433,-0.01774704,-0.003725759,-0.032806832,0.020579848,-0.09306839,0.00012062879,0.055626057,-0.023491036,-0.040017616,0.026715735,-0.005472471,0.0004884635,0.009791664,0.018172521,0.05428243,-0.0032554902,0.016660944,-0.027186003,0.0007578882,-0.01732156,-0.030007614,0.01818372,-0.010715405,0.0010441082,-0.040913366,-0.016269054,0.026178285,-0.0059063495,0.027208397,0.0032191004,0.030074796,-0.007261171,-0.014410373,0.0329188,0.0084256455,0.032179806,-0.006029515,-0.038382873,0.0062534525,-0.005634825,-0.0067461147,0.028910322,0.009282206,-0.03836048,-0.06194109,-0.006566965,-0.007417927,-0.060866192,-0.0046830913,0.02830569,-0.02637983,0.02139722,-0.009310198,-0.049266234,0.018161325,-0.0069308635,0.023267098,0.016101101,0.0175343,-0.031037727,0.008615992,0.038494844,-0.023311885,0.018575609,-0.029179046,-0.009494946,0.010676216,-0.015518864,-0.022281773,-0.018026963,-0.025036205,-0.009338191,-0.00030756404,-0.030589852,0.0026592568,-0.0007186992,0.013189915,0.0023555418,-0.02770106,0.040465493,0.027678665,0.003109931,0.027723454,-0.030253947,-0.021565175,0.0150597915,-0.007031635,-0.020893361,0.011213667,0.040555067,-0.023826942,-0.01807175,0.0143655855,-0.04082379,0.005979129,0.0061134915,0.020154368,-0.0065389727,0.0011651744,0.039323412,0.056700956,0.0773032,-0.03430721,-0.013335474,0.05786543,0.009791664,0.052177418,-0.041406028,-0.01703044,-0.04846006,-0.07277966,-0.0010280127,0.065524094,-0.035046205,-0.015809983,-0.016761716,-0.0056992075,0.046131108,0.03495663,-0.042324174,-0.013794545,-0.008380858,-0.048639208,-0.020624638,-0.021576371,-0.03439679,0.016235463,-0.05231178,-0.043667797,-0.044070885,-0.053028382,-0.0034458372,0.017377544,-0.010687414,-0.022069033,-0.0012960378,-0.040734217,-0.049490172,0.028148934,-0.05056507,-0.0024353196,-0.04075661,-0.030679427,0.017758237,-0.042503323,0.041831512,0.0015395698,0.00011389318,0.019572131,-0.040846188,-0.045683235,0.0140520735,0.025708016,-0.05517818,-0.036658555,0.024767479,0.0014199032,-0.013100339,-0.022125017,0.057462342,0.043533437,0.032202203,0.019247422,0.022897601,0.028574415,0.016112298,0.020736605,-0.050430708,0.0069476585,-0.032000657,0.023603005,-0.0020980136,-0.0052625295,-0.025752803,0.031687144,-0.0053045177,-0.03500142,-0.010049192,0.0683457,0.07824373,-0.0003553257,0.00022988576,0.0019006688,-0.017265575,-0.028529627,-0.039704107,0.038965113,0.0076418645,0.009450159,-0.02201305,-0.011213667,0.01785901,0.029761283,-0.02229297,0.0057775853,-0.00658376,0.03206784,0.007865802,-0.033232313,-0.011409611,0.022102624,-0.057955004,-0.013772151,0.022572892,-0.049087085,-0.037128825,0.014746279,-0.03381455,0.034867056,0.012305361,0.02100533,-0.00081387255,-0.0033198723,-0.024364391,-0.04913187,0.01843005,0.07313796,0.046220683,0.03903229,0.0056600184,0.020960543,-0.039883256,0.02222579,0.01367138,-0.034352,0.041876297,-0.016325038,0.0011504785,-0.05092337,-0.01570921,-0.011633549,-0.020333517,-0.041070122,-0.024879448,-0.003342266,-0.006785304,0.0030063598,0.009718884,0.034419183,0.04189869,0.0026284654,-0.03565084,0.020344716,0.0008334671,0.00015194505,0.015149367,-0.03589717,0.060821403,0.013066749,-0.027387546,-0.08464835,0.0047698673,0.04398131,-0.031799115,0.023356672,0.046175897,0.036882494,-0.040107194,0.01750071,-0.037330367,-0.0054584746,-0.04980368,0.000049729853,0.012439724,0.010010003,0.0051197694,0.0091870325,-0.035941955,-0.0034878254,0.08742517,0.032179806,-0.009063867,0.017993372,-0.01760148,-0.039278623,-0.008716764,-0.015798785,-0.009405372,-0.015485273,0.032403745,-0.02458833,-0.016806504,0.013872923,-0.0020532263,0.022203395,-0.039592136,-0.034083277,0.021811506,0.021766718,-0.008806339,0.017455922,-0.012170999,-0.01971769,-0.009886838,-0.013816939,-0.01613469,-0.03589717,-0.038338087,-0.02626786,0.00089435006,-0.004305197,0.0020196356,-0.017433528,-0.032448534,-0.012764433,0.0071436036,-0.002333148,-0.031485602,0.028820746,-0.0068860757,0.028708778,-0.027678665,0.032515712,-0.03052267,-0.0019202634,-0.001703324,-0.016000329,0.004940619,-0.036636163,0.022528104,-0.022774436,0.03609871,0.008028157,-0.040532675,-0.03638983,-0.003417845,-0.004562725,0.03177672,-0.042570505,0.014746279,0.004946218,0.04176433,0.019448966,0.028104147,0.038718782,-0.026760522,0.009707687,-0.027365154,-0.001076999,0.036277864,0.006566965,0.01703044,-0.0140520735,0.00023565914,0.0023527425,0.006785304,0.02375976,0.027186003,0.0012533498,0.033344284,0.039054688,0.017187197,0.018844334,-0.043488648,-0.055312544,-0.0077818255,0.015731605,0.052177418,0.02830569,-0.010340311,-0.023043161,0.022628877,0.013861727,0.0018978696,0.0016235464,0.042301778,0.0028426056,-0.014343192,-0.0022421735,0.0032023052,0.0011602758,-0.01975128,-0.019057075,0.008201708,0.031575177,0.028686384,0.0064102085,0.0077706287,0.0012715447,-0.005590038,0.0066005555,-0.026603766,0.008526417,0.04075661,0.012137408,-0.028977502,-0.020479077,0.02830569,0.008140125,0.0329188,0.019874446,-0.009063867,-0.01295478,0.014970217,-0.019605722,-0.0045039416,-0.0019580529,-0.020982936,-0.010429885,0.014791067,-0.003949696,-0.014264814,0.014903036,0.012092621,-0.00016979006,0.023535823,0.056432232,0.007826613,-0.013156324,-0.0038181331,0.008352865,-0.0066621383,0.038673993,-0.019672902,-0.0058951527,-0.03135124,-0.023491036,-0.021206874,-0.004064464,0.00065851596,-0.018698774,-0.014555933,0.031306453,-0.021565175,0.019314602,0.0014429968,0.029694103,-0.029783677,-0.023379067,0.007322754,0.015003807,-0.017299166,-0.021061314,-0.019460162,-0.031687144,-0.040532675,-0.022304168,-0.07510861,-0.014276011,-0.024610722,-0.014533538,-0.024633117,-0.028619202,-0.016123494,0.0064437995,-0.011868684,-0.0076922504,-0.034687907,0.012025439,0.0068972725,-0.03750952,-0.031306453,-0.03968171,-0.003960893,-0.04684771,0.03343386,0.002565483,-0.007843408,0.013839332,-0.016694535,-0.023020767,0.011655943,-0.002133004,0.011045713,-0.0018712771,0.00090344757,-0.03607632,-0.045033816,0.029828465,-0.0017313162,0.007389935,0.036904886,0.028171327,-0.041316453,-0.020781392,0.020344716,-0.00712121,-0.013503427,0.018833138,0.06982369,0.01549647,-0.04201066,-0.023446249,-0.05522297,0.017176,0.032694865,0.0031267263,-0.018486034,-0.009164639,-0.026043922,-0.018866727,0.019594524,0.032470927,-0.02590956,0.03146321,-0.016851291,-0.0137385605,-0.0048370482,-0.01084417,-0.029179046,0.00064417,-0.0064549963,0.015227744,0.0011546774,-0.016190676,-0.014667901,-0.017198395,-0.026088709,-0.018273294,0.0006382217,-0.01953854,0.00021501492,0.0009475352,0.015149367,-0.0015241741,0.017780632,0.034419183,0.025842378,-0.012495709,0.02261768,-0.0073395493,-0.004576721,0.021173283,-0.0015031799,-0.0060966965,0.014499948,0.017970977,-0.007249974,0.021419615,0.037979785,0.02097174,-0.016515385,-0.012170999,-0.0225393,-0.02770106,0.005590038,-0.009718884,0.0020616238,-0.02669334,0.010732201,0.029402984,-0.03992804,-0.027186003,0.0054304823,0.016201872,0.013492229,0.008341669,0.035359718,0.009058269,-0.006427004,-0.0020196356,0.014858248,-0.008711166,0.027902603,-0.0053017186,-0.012327755,-0.03726319,-0.005676814,0.052849233,-0.015474076,-0.038226116,-0.033232313,-0.01707523,0.013033158,-0.037307974,0.02211382,0.006023917,-0.002440918,0.019874446,-0.0002566533,-0.0034794277,-0.011678336,0.014891839,-0.048863146,-0.018810743,-0.04198827,0.017220788,-0.0067461147,-0.0067965006,-0.0011651744,0.006309437,-0.06682292,-0.021621158,0.04823612,0.0052681277,-0.009646105,-0.020154368,-0.0025892765,0.02225938,0.025999134,-0.0028188124,0.0029363795,0.019482557,0.020803787,0.0062534525,-0.030813789,-0.03560605,0.078378096,-0.01965051,-0.04129406,-0.01184629,0.012518102,-0.017791828,0.052401356,0.006673335,0.0069868476,0.043824553,0.0150262015,0.008554409,0.057596706,0.009047071,-0.020389503,0.050833795,0.0029139856,0.012271771,-0.005500463,-0.019706493,0.0061246883,-0.0332771,-0.0019440567,-0.022998374,0.01774704,-0.02705164,-0.019124256,-0.0077874237,0.034195244,-0.004960214,0.0025794792,0.025304928,-0.016078707,-0.012047834,0.0008369661,0.044362005,0.009478152,-0.025260141,0.02884314,-0.013615395,-0.009853247,0.0045431303,-0.02579759,-0.006863682,-0.026424617,-0.0076362663,-0.0026788514,0.027611485,0.010804981,-0.022069033,-0.024812266,-0.008218504,-0.00023006072,0.006337429,-0.008996686,0.02662616,0.031530388,0.028753566,-0.05696968,-0.0025570854,-0.011499187,-0.027454728,0.009287804,0.018105341,-0.004881836,0.004741875,-0.030612245,0.019975219,0.0024507153,-0.0038937118,-0.0077930223,-0.008576803,-0.028775958,0.021990655,0.029402984,-0.010547453,-0.0015157764,-0.0071548005,0.006712524,-0.027969785,0.0030483482,0.025439292,0.03567323,-0.010110775,-0.009438963,0.039592136,-0.0186092,-0.022953587,-0.02136363,-0.01420883,-0.012921189,0.020098384,-0.02175552,-0.021150889,0.004333189,0.009153442,-0.00547527,-0.02136363,-0.030769002,0.0042324173,-0.006326232,0.038517237,0.031127302,-0.033948913,0.020994134,0.017131213,0.041182093,-0.031552784,-0.029067077,0.01771345,0.009881238,0.0015367706,-0.030589852,0.031216877,0.01882194,0.047609095,0.018598003,0.0030259544,0.0075746835,-0.021677142,0.0039804876,0.016190676,-0.060060017,0.017702254,-0.008022558,0.008509622,-0.010793784,-0.008778347,-0.019784871,0.023468642,0.011208068,0.010457878,0.018340476,-0.017176,-0.0020672223,-0.03260529,-0.018598003,0.031507995,0.04086858,0.02848484,0.003070742,-0.027880209,0.016190676,-0.012249377,-0.0010175157,-0.003904909,0.0318439,0.003235896,-0.0005381496,-0.016145889,0.02830569,0.0068188948,-0.002526294,0.021957064,-0.0012295564,-0.0022281774,-0.008968694,0.008727961,0.019616919,0.034598332,0.045280147,0.020322321,0.03146321,-0.015328516,-0.007619471,0.06570324,0.011633549,0.009763672,0.03117209,-0.011812699,0.032381352,-0.025775198,-0.0035438098,0.02465551,-0.012159802,-0.018564412,0.025528867,-0.009069466,0.0150597915,-0.03585238,0.0008740558,0.0015199753,0.020479077,-0.0054052896,0.013895317,-0.05235657,-0.0035634043,-0.0001442472,-0.010799382,-0.00830248,-0.016078707,-0.0051113716,0.0028244108,0.02276324,-0.014499948,0.0076922504,0.014197633,0.045504086,0.004109252,0.026984459,-0.03728558,0.0075019035,-0.0053409077,0.007020438,-0.015171761,-0.01592195,-0.017590284,0.0039748894,0.014197633,-0.027477121,0.038942717,0.009338191,-0.023199918,0.034665514,0.03388173,-0.014891839,0.006415807,-0.052177418,0.019840855,-0.034083277,-0.03943538,-0.016101101,0.008095338,0.05943299,0.03565084,0.017422331,-0.02770106,-0.023782155,-0.0404431,-0.03878596,-0.008918308,0.0021693937,0.0009832253,0.023468642,-0.015171761,-0.043533437,0.035046205,-0.041182093,0.038562026,-0.0050217966,-0.027499516,0.026200678,0.02465551,0.0035522075,-0.001728517,-0.0051757535,0.012854008,-0.020378305,-0.029716495,0.010782587,0.011566368,-0.024431573,0.00848163,0.014858248,-0.02085977,0.010312319,0.0045067407,0.012786827,-0.013626592,-0.0034290417,-0.0037733456,0.024386786,0.040129587,-0.01223818,-0.037352763,-0.024319604,-0.008588,0.033053163,-0.016504189,0.015429288,-0.057283193,-0.032202203,0.048639208,0.018172521,0.009002284,-0.037845425,-0.040890973,-0.015720407,0.023782155,-0.014276011,-0.0023667386,-0.052266996,0.018519625,0.05020677,0.0025178965,-0.007249974,-0.020759,-0.0038909127,0.010553051,0.050117195,0.030433096,-0.004095256,0.05235657,0.0030315528,0.003636184,0.027275579,0.006516579,-0.0382933,0.011409611,0.0012799423,0.019986415,-0.026111104,0.004103653,-0.007110013,0.011779108,0.017176,-0.011532777,0.05714883,0.008901512,-0.0034262426,0.017803025,-0.040465493,0.010133169,0.013861727,-0.016694535,0.021822702,-0.031216877,0.0066621383,-0.0092598125,-0.034240033,-0.054372005,0.02991804,-0.025819985,0.018564412,0.012820417,-0.0143319955,-0.025327323,-0.0040392713,0.020747803,0.0070988163,0.021139693,0.0045235357,-0.015899558,0.01277563,0.054192856,-0.0022841617,0.009920428,0.0031715138,0.030903364,0.009567726,0.026782915,0.015642028,-0.012574086,-0.021318844,-0.023714973,0.0021483996,0.016560173,0.007709046,-0.036121108,0.0057775853,0.008532016,0.0052541317,0.045504086,0.0003771946,-0.027253184,0.008235299,-0.0024647112,0.027768241,-0.037442338,0.0045711226,0.03325471,-0.0037593495,-0.009310198,0.014276011,-0.012764433,0.012226983,0.034799874,0.029783677,-0.043399073,-0.0038517236,-0.027365154,0.0077314395,0.03643462,-0.020389503,-0.029694103,-0.027320366,-0.019706493,-0.0002559535,-0.001484985,-0.014455161,0.018351672,-0.010900154,0.020770196,-0.024789874,0.0026494598,0.04176433,-0.0028146135,0.0211173,0.008879119,0.0037733456,0.011079304,0.03296359,-0.0017719049,-0.0012393537,-0.023983698,0.06530015,-0.02841766,0.04626547,0.01313393,0.005718802,0.0111352885,0.01714241,0.00036844704,0.01442157,-0.006270248,0.0016417413,-0.026290253,0.017948585,-0.018374065,0.010166759,0.0031715138,-0.034262426,-0.0020098384,0.018228507,0.02315513,-0.052938808,-0.014768673,-0.013861727,-0.009131049,0.011140887,-0.0061022947,-0.022953587,0.01020035,0.0007991767,0.0408014,-0.003960893,0.0038993105,0.020131974,0.008224102,-0.0014905835,0.013906514,-0.017041638,0.004461953,0.016851291,0.011566368,-0.019930432,-0.0059679323,0.033344284,0.041137304,0.026715735,-0.03202305,0.014623114,-0.01223818,0.017019244,0.012170999,-0.011364824,0.04494424,-0.04548169,-0.027365154,0.0013401256,-0.015250139,-0.0066509414,-0.017332757,-0.045616053,0.014611917,0.027633877,0.010961737,0.0068300916,0.038427662,-0.007378738,0.008319275,0.008257693,-0.010261932,0.005718802,0.017444726,0.014040876,0.028462447,0.0057132035,-0.0032554902,-0.011331233,0.024924235,-0.0030035607,0.032717258,0.006466193,0.0077202427,-0.0013877122,0.028529627,-0.023849336,0.06229939,0.012148606,0.0116223525,0.0029839661,-0.040935762,0.004266008,-0.04666856,-0.024453966,-0.008044952,0.010637027,0.008448039,-0.0076866522,0.002025234,-0.009394175,0.027633877,-0.03553887,0.0018334877,0.0046746936,-0.004834249,-0.02812654,0.010838571,-0.005282124,0.030724214,-0.0059175463,-0.0026816507,0.0008810538,-0.0023569413,-0.002526294,-0.019740084,-0.0028636,0.029783677,-0.018709973,0.020020006,0.008571205,-0.03703925,0.012282968,-0.020691818,-0.038472448,0.0054024905,0.009338191,0.011174478,0.027208397,-0.012462118,-0.023983698,0.012372543,-0.012137408,-0.0040336726,-0.014511145,-0.040958155,-0.044608336,0.014432767,-0.009399774,0.0030931358,0.018362869,0.0068916744,0.01009398,-0.010575444,0.006040712,0.039569743,0.004047669,0.012876402,-0.0044115675,-0.013100339,0.006902871,-0.028507235,-0.0023751364,0.041159697,-0.012271771,0.017243182,0.022236986,0.00085236185,-0.009069466,0.0081457235,-0.0065221773,0.026491797,-0.004050468,0.0029391786,0.0025710815,-0.015910754,-0.02841766,0.017870206,0.032336563,-0.013559411,-0.02265127,0.01130884,-0.0019888442,-0.03141842,0.006337429,-0.03453115,0.049266234,-0.0045207366,-0.034799874,0.00017486364,0.008358465,-0.026558978,0.010099578,-0.06391174,0.007983369,-0.018598003,-0.013828136,-0.028104147,0.022236986,-0.012753236,0.022897601,0.01989684,0.024924235,0.0072947615,0.026962066,-0.0036837705,-0.051908694,-0.017556693,0.011958258,0.023311885,0.0034458372,0.009931625,0.0153733045,0.006572563,0.015563651,0.04248093,-0.0146790985,0.04021916,-0.042973593,0.0189675,0.04241375,0.051505607,0.015944345,0.0051589585,0.026917279,-0.047967397,-0.011252856,0.0056236284,0.018138932,0.012115015,-0.043958917,-0.023603005,-0.0069084694,0.0044647525,-0.0026648554,-0.024319604,-0.015507666,0.011499187,0.013413852,-0.031754326,0.022998374,-0.018631594,-0.028260903,0.023423854,-0.021643551,-0.010894556,0.014791067,-0.017343953,-0.016190676,0.029537346,-0.01105691,-0.013783349,-0.027902603,-0.029582134,-0.009690892,-0.0075914785,-0.026760522,0.016560173,0.037733454,-0.00038524234,-0.0023891323,0.01907947,-0.005024596,0.011185674,0.0047726664,-0.021699537,-0.029067077,-0.0035550066,-0.0073563443,0.001850283,0.024319604,0.004641103,0.018698774,0.0026704539,0.011264052,0.0027110425,-0.027992178,0.017590284,-0.025640834,-0.009550931,0.013861727,0.06435961,0.00876715,0.040062405,0.010222743,-0.014757476,0.0070764227,0.036882494,-0.027096428,-0.031530388,0.012730842,-0.0002566533,-0.026133498,0.016884882,0.005100175,-0.0013506226,-0.007261171,0.012764433,0.03088097,0.0014324997,-0.01313393,-0.0005357003,0.02175552,0.018900318,0.0015451682,0.022953587,-0.007804219,-0.016190676,0.0041848305,0.033075556,-0.022819223,0.029761283,0.021229267,0.026603766,-0.013884121,-0.02590956,-0.01760148,0.008291283,-0.004047669,-0.000976927,0.0018264896,0.02633504,-0.005178553,-0.052087843,0.04189869,0.031530388,-0.0020238345,0.00959012,-0.012383739,-0.06570324,-0.010541854,-0.03226938,-0.03889793,-0.0011441803,-0.018956304,-0.03771106,0.0069420603,0.009802861,-0.009690892,-0.0120030455,-0.04198827,0.009416569]},{"id":"guide-embeds-4","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Author\nsetAuthor() adds a header line with name. Optional: iconURL, url.\n\n```javascript\nembed.setAuthor({\n name: 'Fluxer.js',\n iconURL: 'https://example.com/icon.png',\n url: 'https://fluxerjs.dev',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.013851069,-0.029272394,-0.016475976,-0.034756575,0.006380632,-0.0689038,0.01229253,-0.013886224,-0.019382121,-0.0025663148,0.021421112,0.006984126,0.027420897,-0.027514644,-0.010077766,0.016288482,-0.044717155,-0.0022308775,0.016909553,0.036444012,-0.004467614,-0.01552679,-0.037850212,0.088637464,-0.032272287,0.026741235,-0.039045483,0.031569187,0.036139335,-0.0056511657,0.010968359,-0.017190794,0.048982628,0.014952592,-0.012503461,-0.0068552243,0.0715287,0.0059001804,0.00016982427,0.018503247,0.010903908,-0.022475762,0.007927452,0.042490672,-0.0170033,0.019124318,-0.040568866,-0.022499198,0.029272394,0.060888454,0.019440712,0.0043064873,-0.012948757,-0.011847234,-0.05193565,0.041928194,-0.022686692,0.032108232,-0.04656865,0.00484846,0.015726002,-0.025920952,-0.0104996255,0.02409289,-0.011067965,-0.017999358,-0.07190369,-0.0054695318,0.0012040586,0.0016376369,0.050763816,-0.0038201762,-0.00059983216,-0.0049832207,-0.027069347,0.0020140884,-0.045021832,0.023096833,-0.022956213,-0.023284325,0.04138915,0.011788642,-0.0553574,-0.029506762,-0.033139445,0.026999038,-0.039397035,-0.03147544,-0.038600188,-0.034405023,-0.04047512,-0.047342062,-0.084559485,-0.016569722,0.02817087,0.038248636,-0.026530305,-0.0046961214,0.018936826,0.009181313,0.08343453,-0.042256307,-0.047623303,-0.021303928,0.013651857,-0.0014530732,-0.00660328,0.0085309455,0.0011784248,-0.026155317,-0.06806008,0.020260997,0.008525087,-0.019979756,-0.007405986,-0.017600935,0.015386171,0.015409607,-0.0051677846,-0.063700855,-0.042279743,-0.034123782,0.07616916,-0.010651964,0.017764991,-0.01953446,-0.020260997,-0.021807816,-0.05095131,-0.063278995,0.020952377,-0.019862574,-0.017530626,-0.014050281,-0.024913175,-0.024139764,-0.019932883,-0.0129956305,-0.015655693,-0.024467878,0.026577178,-0.02347182,0.029131774,-0.021046124,0.042982843,0.033116005,-0.0304911,0.02213593,-0.02943645,0.031381693,-0.0041980925,-0.0016727919,-0.019698517,0.0032078936,-0.035295617,0.0066149984,0.036162775,-0.057794817,-0.03724086,-0.028452111,0.031569187,-0.021233618,0.008243847,-0.0032840627,-0.030280171,0.0065446887,-0.003738148,-0.03262384,-0.023296045,0.033186316,-0.02199531,-0.031780116,-0.013065941,0.016218172,0.048092037,-0.019147756,0.016534567,-0.031780116,0.0044881213,0.06543517,0.005736124,0.04567806,-0.007189197,-0.028334927,-0.008583679,0.015819749,0.012397995,-0.002944231,0.012538616,-0.00976723,-0.0034100348,-0.017870456,-0.036631506,-0.016194735,0.017390005,0.021104716,0.032014485,0.006210716,0.012058164,-0.044154678,0.024210075,0.043545324,0.01897198,-0.0064978153,-0.019499306,0.0024139765,-0.028920844,0.011366783,-0.006661872,0.047131132,0.015022902,-0.0099605825,0.01082188,0.025077231,-0.04982635,0.013675294,0.0043035573,-0.023038242,-0.025452217,-0.014624478,-0.06848194,0.03773303,0.024889737,-0.0184095,0.006427505,0.010599231,-0.01658144,-0.016804088,-0.033420682,0.06252902,0.044342168,0.00263516,0.0038524019,-0.03428784,-0.020741448,0.032483216,-0.0029618086,0.0011278895,-0.0011535233,0.0007433817,-0.030045804,-0.017811865,0.013019067,0.0078161275,-0.00027208502,0.007646212,0.0007085929,-0.046263974,-0.004060402,0.038061142,0.08849685,0.047834232,0.055076163,-0.010025034,0.020471927,-0.043264084,-0.036256522,0.0054343767,0.052685622,-0.08301266,-0.0047576427,-0.022042183,0.0006749027,0.004203952,-0.0075173103,-0.031287946,-0.03056141,0.05854479,0.020671139,-0.03379567,-0.00025432443,-0.004470544,0.015690846,0.028358364,-0.034475334,0.0067146043,-0.010446893,0.032764457,-0.061544683,0.041811008,-0.017612653,-0.013546392,-0.0347097,0.025170978,-0.04497496,-0.022077339,-0.041365713,-0.011097261,-0.014061999,-0.021092998,-0.007628634,0.025170978,0.05845104,0.008700862,0.016464258,0.052451257,0.034686264,0.035529982,0.021233618,0.0055808555,0.0333035,-0.021046124,0.015186959,0.018948544,0.009609032,0.041998502,-0.0016361722,0.014202619,0.039373595,-0.006878661,0.0028065406,0.007763395,-0.03478001,-0.020050067,0.0155971,0.04441248,0.032928515,0.043967184,0.01180622,0.027374024,0.03909236,0.019229783,0.019018853,-0.06918503,-0.041154783,-0.026131881,0.006937253,0.0347097,0.028194308,0.07326301,0.0056658136,-0.02859273,0.00933951,0.021702351,0.0009953259,-0.0065681254,-0.0077751135,0.011220303,-0.013077659,0.0226281,0.0034451897,-0.046006173,-0.033936292,-0.040217318,-0.011565994,-0.0047576427,-0.030819215,-0.021608604,-0.014741662,-0.029389577,-0.04202194,-0.005361137,-0.032366034,-0.020928942,-0.010710556,-0.013159688,0.016804088,-0.058685407,-0.013194842,-0.006204857,-0.06093533,0.007646212,0.0139799705,0.018350909,-0.034264404,-0.027655264,0.0068610837,-0.0022089055,-0.014530732,-0.02655374,-0.00058115605,0.020928942,0.010915627,0.015011184,-0.025452217,0.05924789,0.005402151,-0.028663041,-0.042139124,-0.0139799705,0.022393733,0.040006388,-0.011987854,-0.054841794,0.03731117,-0.04230318,0.015901776,0.017038455,-0.004154149,0.005952913,-0.008249706,0.004417811,-0.010353147,-0.01145467,0.0637946,0.05376371,0.03513156,-0.004868967,0.00414536,-0.01222222,-0.013663575,0.018632147,0.048045162,-0.008021198,0.027374024,-0.02957707,0.0077165216,0.00597342,0.0017811866,-0.0020565672,-0.018257162,-0.0007946494,0.021526577,0.0075173103,-0.020120377,0.008144241,0.025311599,-0.06852881,0.027491208,0.017378287,-0.03449877,-0.044646844,-0.002022877,-0.04312346,0.03885799,-0.056201123,0.05699797,-0.038623624,0.03358474,-0.009263341,-0.028334927,-0.007646212,0.036983058,0.008730157,0.017905612,-0.0011762276,0.02226483,-0.030186424,0.015561946,0.018421218,-0.006995844,0.008378607,-0.0175775,-0.0037235,-0.037287734,-0.05741983,0.0043885154,0.0017811866,-0.0124565875,-0.0076755076,0.008120804,-0.013288589,-0.0009543117,0.031241074,0.014413549,0.046053044,0.016710341,0.04363907,0.0055544893,0.009116863,-0.005964631,0.0033192176,-0.04532651,0.009122722,-0.01131405,-0.025920952,-0.038834553,0.030373918,0.017671244,-0.052216887,0.009995737,0.006661872,-0.0060583777,0.010698837,-0.040170442,-0.035998717,-0.05099818,-0.12430807,-0.014530732,-0.009269201,0.030537974,0.013030785,0.021397674,-0.009386384,-0.020260997,0.0827783,0.025124105,-0.0038318946,0.025030358,-0.05193565,0.002810935,-0.01285501,0.01721423,-0.011501543,0.0006540294,-0.05999786,-0.022581227,-0.0016464257,-0.014366675,-0.015163522,0.027303714,0.007857142,-0.03070203,0.044787467,0.026741235,-0.02353041,-0.020471927,0.004136571,-0.017999358,0.028920844,-0.013007348,-0.028991153,-0.0033543727,-0.00025212724,-0.00047825443,0.037615847,-0.02493661,0.04403749,0.0012567912,-0.043685943,0.016358793,0.05559177,-0.012526897,-0.005235165,0.050154462,-0.0058005746,-0.02129221,-0.025944388,0.0025633853,-0.021046124,-0.009298497,-0.009673484,0.010194949,0.0028446252,-0.048092037,0.04624054,-0.028498985,-0.004912911,0.017718118,-0.029553633,-0.028663041,0.054373063,0.002515047,0.02255779,-0.04335783,-0.034545645,-0.015210396,0.012151911,-0.007429423,0.0062634484,0.011882389,-0.018175133,0.022440607,-0.031100454,0.018538402,0.019065727,0.019194629,0.012937039,-0.019194629,-0.0016976934,0.014647915,0.00076535356,-0.010710556,0.040287625,-0.024116328,0.0022543143,0.017167358,0.02571002,0.012702672,-0.0085309455,-0.024303822,0.010218386,0.01124374,0.06777883,0.016323637,0.000867889,-0.004420741,0.006427505,0.014671352,0.005542771,-0.0028973576,-0.018151697,-0.014952592,-0.01482369,-0.026858417,0.009860977,0.00033598655,0.0014354957,-0.012444869,0.042396925,0.04940449,0.031311385,0.0025619203,0.01918291,0.006070096,-0.0037469368,0.018913388,-0.02852242,-0.013229997,0.01953446,-0.007411845,-0.017589217,-0.035670605,0.008929369,0.0013900872,0.028358364,0.035928406,0.00786886,-0.021186745,-0.016124425,-0.015819749,-0.027631827,0.005328912,-0.030608283,-0.02479599,0.013101095,0.037686158,-0.008724298,-0.021163309,0.012163629,-0.004101416,0.0059763496,0.019147756,0.038389258,-0.0553574,0.034311276,0.012210502,-0.006339618,0.0396314,0.004280121,0.033959728,0.038201764,0.032553528,-0.008689144,0.015936932,-0.024678808,0.018245444,0.00007026422,-0.008349312,-0.026366247,0.01735485,-0.027655264,0.026319375,0.034733135,-0.026319375,0.0069313934,-0.013159688,-0.00082174805,-0.02220624,-0.029155212,-0.020214124,-0.010903908,-0.0085309455,-0.019803982,0.018128261,-0.013687012,-0.005284968,0.017050173,-0.016007243,-0.01194098,-0.0375221,-0.010640246,-0.019522741,-0.025311599,-0.014858846,0.0073532537,-0.04145946,-0.012526897,-0.04544369,0.0045555015,-0.053857457,0.019276656,0.0065505477,0.0035858096,0.0125503335,-0.020483645,0.0011051852,-0.015116649,-0.0033250768,0.0340066,-0.012913602,0.023518693,-0.0057654195,-0.0027435545,0.010898049,-0.009796525,-0.015784593,0.020917224,0.007329817,-0.0361159,-0.02929583,0.026459994,0.01819857,-0.016171299,0.024561625,0.055544894,0.009409821,-0.008595397,0.002276286,-0.034170657,0.0017577498,0.012175348,0.0032635555,-0.0051267706,0.0061814203,-0.010628527,0.002664456,-0.005311334,0.023143707,-0.036209647,-0.024421005,-0.001497017,0.0014596648,0.0044558956,-0.009187172,-0.0074587185,0.00850751,-0.00009402131,0.021022689,0.023026522,0.003612176,0.019018853,-0.017460315,0.0122808125,-0.017647808,-0.005645307,0.021678915,0.0037703735,-0.005387503,-0.006984126,-0.028358364,-0.019311812,0.022464043,0.0155971,-0.024256948,0.042889096,-0.03494407,0.009819962,-0.0016434961,0.021983592,0.0022616382,0.009638328,0.02852242,0.025780331,0.029530197,0.0026512726,-0.0036004577,0.01883136,-0.008284861,0.0052087987,-0.013265152,0.006679449,-0.025780331,0.00632204,-0.042771913,0.039818894,0.0344519,-0.020014912,-0.019862574,0.046287414,0.004104346,0.014952592,-0.004370938,-0.0019716094,-0.024374131,-0.023846807,0.0030584848,-0.0008964524,-0.020155532,0.036162775,-0.014401831,-0.010792584,-0.017870456,-0.012151911,0.024350695,-0.022956213,-0.049357615,0.022077339,-0.04188132,0.014483859,0.007230211,0.00498615,-0.0073180986,-0.014413549,0.037990835,-0.023366354,0.0043738675,-0.025241287,-0.004280121,-0.04518589,-0.011571853,-0.010587513,0.015222114,-0.015362734,-0.0059997863,0.00927506,-0.0023158353,-0.09027803,-0.042818785,0.01545648,0.017366568,-0.017788429,0.0007239732,0.02396399,-0.0199446,0.04392031,-0.019206347,-0.015374452,0.002698146,0.010347287,-0.028077124,-0.00089132565,-0.0069313934,0.027725574,0.0060466593,0.01644082,-0.007113028,-0.01749547,-0.028475547,0.013511237,0.028827097,0.010810162,0.005495898,-0.017518906,0.0018104824,0.018737614,0.013464364,0.0058240113,-0.001082481,0.0018163415,0.017554061,0.05418557,0.017460315,0.013288589,-0.0061872792,0.015374452,-0.025452217,-0.0062634484,-0.047951415,-0.029459888,-0.0027171883,0.004195163,-0.002592681,0.008929369,0.012187066,-0.041998502,0.009585596,0.008308298,0.0062634484,-0.01496431,0.013253434,0.021409392,-0.008911791,-0.03576435,0.014718225,0.005686321,-0.034053475,-0.006943112,0.0042244587,0.02396399,0.016768934,-0.0011483965,-0.008636411,-0.0050242348,-0.005794715,-0.028545858,-0.025827205,0.023307763,0.0013886223,0.058216676,0.059622876,0.0017797217,-0.00093014265,-0.013112814,-0.033701923,0.031147327,-0.004842601,0.029717691,-0.020530518,0.050810687,0.04026419,0.0042332476,-0.0104937665,-0.010435175,-0.023928834,0.027209967,0.04497496,0.04523276,-0.030748904,0.025569402,0.0055339825,0.005528123,-0.01763609,-0.044178113,0.022217957,0.05418557,-0.009614891,-0.0023290184,0.0030204002,0.0061579836,0.017120484,-0.03979546,0.008132523,-0.029905183,0.006286885,-0.006638435,0.00016945807,0.004344572,-0.008542664,-0.03979546,-0.019136036,-0.039115794,-0.0019218065,0.020694574,0.014917437,0.013253434,-0.012397995,0.06041972,0.016874399,-0.004678544,-0.02382337,0.004886545,-0.023495257,0.0069606896,-0.008097367,-0.023331199,0.0015497494,0.006286885,0.03688931,0.014026844,-0.03105358,0.032061357,-0.025381908,0.05165441,-0.0015204536,-0.070731856,0.007681367,0.0026585967,-0.0030174705,0.009720356,-0.035108123,-0.017343132,0.020706294,-0.03970171,0.023905398,0.00087228336,-0.010212527,0.00758762,0.029905183,-0.059622876,0.0049832207,0.026319375,0.0382252,-0.01060509,-0.01847981,-0.0567636,0.05601363,-0.0010524527,0.011993713,0.011442952,0.014214337,0.018468091,-0.016956426,-0.021608604,0.007329817,-0.03192074,-0.0071481825,-0.024983484,-0.007159901,0.03773303,-0.001043664,0.025522528,0.0057742083,0.009398103,-0.012151911,-0.0028241181,-0.0071481825,-0.025592837,0.021714069,-0.015550227,-0.0023011875,0.03323319,-0.020917224,0.03667838,-0.03857675,-0.02199531,-0.013499519,0.009286778,-0.009175454,-0.009023116,-0.038201764,-0.03569404,0.009175454,0.013511237,-0.0005009587,-0.019522741,-0.012620644,0.00235392,-0.0070309993,0.003401246,-0.018139979,-0.011155852,-0.009450835,-0.017132202,0.0074997325,0.017472034,0.032342598,-0.0055134753,-0.018397782,0.011747628,0.045748368,-0.009568018,0.04544369,-0.009181313,0.025592837,-0.01693299,-0.01855012,0.0002742822,-0.013347181,0.00088400167,0.02317886,-0.02571002,-0.026295938,-0.011882389,-0.017800147,-0.008601256,0.011753487,-0.0036912747,-0.023143707,0.006146265,-0.006667731,0.021714069,-0.0022045113,-0.019780545,-0.026155317,0.021878127,0.025475655,0.051982522,0.02002663,-0.0021063702,-0.008689144,-0.020272715,-0.02732715,0.009351229,0.0009806779,-0.010622668,-0.026670923,0.015046339,-0.0042625433,0.022100775,-0.03192074,0.0052878973,0.030420791,0.009913709,-0.0026161177,0.0032694147,-0.02276872,0.029155212,0.009538722,0.019839136,-0.048045162,0.000017051088,-0.0035916688,-0.023436666,0.021655478,0.041764136,0.050060716,0.01622989,0.009532863,0.0070661544,0.019651644,-0.009679343,0.03724086,-0.018655585,0.028123997,0.027655264,0.004827953,-0.045279637,-0.011794502,-0.016487693,0.013792478,-0.004160008,0.010212527,-0.028709915,0.026178755,0.024608498,0.025967825,0.021327365,-0.012257376,0.002992569,-0.014226056,-0.0029295832,-0.004904122,-0.017296258,0.0055486304,0.014343238,0.028498985,0.014073717,0.010001597,-0.014202619,0.01631192,0.006948971,0.043873437,0.028077124,-0.012339404,0.055263653,-0.011009373,-0.013429209,-0.0032225414,-0.00028709913,-0.059201013,0.019030571,0.008741876,0.032342598,-0.02396399,-0.007652071,-0.009790666,-0.0012223686,-0.0049568545,0.004403163,0.07349738,0.016569722,-0.005088686,0.01032385,-0.032506652,0.018643867,-0.021339083,-0.02283903,-0.02992862,0.0006042265,0.0032166822,-0.019428995,-0.0013981435,-0.06763821,0.06820069,-0.010306274,0.0038465427,-0.02065942,0.019721953,0.025358472,0.027163094,-0.007130605,0.019335248,-0.018807923,-0.021456266,0.011396078,0.030092677,0.05521678,-0.017132202,-0.008384467,-0.013593266,0.022124212,0.010411738,0.03913923,0.024866302,-0.001219439,-0.025569402,-0.023518693,0.001841243,0.03035048,-0.014144027,-0.01089219,0.0077751135,-0.010089484,-0.029506762,0.014624478,0.015890058,0.006702886,-0.026952164,-0.00044236705,0.02571002,-0.027725574,-0.014073717,0.0031434426,0.015936932,0.011073824,-0.008384467,-0.016839243,0.021233618,0.042748477,0.041623518,-0.053623088,0.0045789382,-0.00456722,0.010845317,0.019780545,-0.011290614,-0.009866836,-0.0068493653,-0.013675294,-0.059669748,-0.0022220889,-0.037053365,-0.030186424,0.018046232,0.022921057,-0.02606157,-0.033631615,0.0347097,0.0061755613,0.018386064,0.017940767,-0.0017753274,0.009069989,0.021479703,-0.023940552,0.02178438,0.02087035,0.048748262,-0.014425267,0.009796525,0.028147435,0.036912747,0.02283903,-0.002009694,0.004742995,0.0048982627,0.021737507,0.03913923,-0.018608712,0.042818785,-0.0073415353,0.022534354,-0.015268987,-0.03424097,0.012491742,0.0044002337,0.01805795,0.0011234952,0.0017606794,-0.0040926277,-0.0051414184,-0.015257268,0.030397354,-0.042982843,0.005944124,0.041107908,-0.007089591,0.016042396,0.029553633,0.016159581,0.037264295,-0.005053531,-0.018796206,-0.022546072,0.006948971,0.019733671,0.012761264,-0.044717155,-0.0017020878,0.024702245,-0.00009045088,-0.00013540167,-0.042256307,-0.0070251403,0.0011015233,-0.0022733565,0.0048924037,-0.041787572,0.012655799,-0.049732603,-0.008595397,-0.01383935,-0.024983484,0.017718118,-0.013335462,-0.028920844,-0.008484073,0.006896239,0.00016662004,0.0035301477,0.04160008,0.0043064873,0.044834338,-0.001398876,0.006245871,-0.011126556,0.009966441,0.008864919,0.009784807,-0.017296258,0.010786725,-0.010798443,0.008320016,-0.0047898684,-0.010710556,-0.01819857,-0.025569402,-0.01721423,0.03618621,-0.026295938,0.04846702,-0.015421325,0.012105037,0.018843079,-0.020319588,0.00498615,0.010511344,0.013007348,0.026038134,-0.0057156165,0.0163002,-0.012421432,-0.0050740377,-0.00064817024,0.030889524,-0.031733245,0.0013073265,-0.010482049,-0.029694254,-0.035740912,0.014296365,-0.018585276,0.015515072,-0.0011440022,0.002831442,0.0175775,0.007511451,-0.02094066,-0.008882496,0.00088693126,0.028147435,-0.03070203,0.012362841,0.023389792,-0.029272394,0.008284861,-0.0018734684,-0.008454776,-0.026717797,-0.009614891,0.026085008,0.024842864,-0.0035360067,-0.020565674,-0.003289922,0.015351015,-0.0035506547,-0.06815382,-0.0049832207,-0.008138382,-0.004968573,-0.0064919563,-0.009831681,-0.010698837,-0.012069882,0.01855012,-0.011343346,0.02234686,0.041225094,-0.015655693,0.013065941,0.00864227,0.016640032,0.006070096,-0.014765099,0.015034621,0.005703898,-0.010200808,0.001184284,-0.023483537,0.018784486,0.0030233297,0.011642163,0.02129221,0.036420576,0.003380739,-0.0010927345,0.00023711313,-0.038342383,-0.011003514,0.009984019,0.03773303,0.0072184927,-0.012269094,0.021526577,-0.010933204,-0.025592837,-0.024022581,-0.036444012,0.021866407,0.0065857028,-0.01791733,-0.0030233297,-0.0104058795,-0.015351015,0.014354957,-0.013581547,-0.008747735,-0.028827097,0.025100667,-0.041998502,0.014683071,0.01011878,0.028616168,0.013640139,0.021444548,0.04209225,0.036701817,-0.011618727,-0.03913923,-0.03794396,-0.026530305,0.031452004,0.018925106,-0.03386598,0.01180622,0.0084430585,0.03492063,0.020132095,0.003351443,0.027936503,-0.025311599,0.019792262,0.021421112,0.020542236,0.026225628,0.000045934947,-0.00330164,-0.033116005,-0.021632042,0.0148705635,-0.006351336,-0.0026512726,-0.035225306,-0.026014697,-0.023506975,0.011062106,0.017296258,-0.0067087454,0.0039402894,0.017811865,-0.01665175,-0.012433151,0.012843292,-0.022299986,-0.015643973,-0.007048577,0.015796311,-0.016429102,-0.0006968746,-0.02156173,0.01040002,0.0088004675,-0.010775006,-0.03403004,-0.013815913,0.00709545,-0.0047605727,-0.00772824,-0.0048660375,0.007980185,0.035811223,0.003975444,0.0081501,-0.01229253,0.00037205705,0.01967508,-0.025381908,0.014530732,-0.0052234465,-0.0029398366,-0.020635983,0.019018853,0.028709915,0.003547725,-0.008396185,0.0129956305,0.018725894,0.026108444,0.012210502,0.021315647,-0.02058911,-0.019733671,0.0431469,0.055779263,0.056201123,0.0061872792,0.0122808125,0.0026966813,-0.020600827,0.005867955,-0.030373918,-0.002305582,0.020858632,0.0025619203,-0.01461276,-0.00040867683,0.022721846,0.001465524,0.008015339,0.016628314,0.018175133,0.0015058056,-0.007113028,-0.030397354,-0.016288482,0.02585064,0.020096939,0.026295938,-0.010704696,-0.035178434,0.025944388,0.0109390635,-0.04335783,0.016956426,0.0028211884,0.007230211,-0.0006426773,-0.026577178,-0.005454884,0.020366462,0.032694146,0.0026439487,-0.0028343715,0.053294975,0.019968038,-0.046498343,0.0041482896,-0.006034941,-0.037967395,-0.0071071684,0.004652178,-0.023589004,0.005897251,-0.012503461,-0.05352934,-0.017788429,0.013944816,-0.08615318,-0.0052410243,0.059716623,0.015808031,-0.050482575,-0.010153935,-0.026319375]},{"id":"guide-embeds-5","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Footer\nsetFooter() adds text at the bottom. Optional: iconURL.\n\n```javascript\nembed.setFooter({\n text: 'Powered by Fluxer.js',\n iconURL: 'https://example.com/footer-icon.png',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.025390495,0.0072965254,-0.0017651934,-0.01243592,0.013897583,-0.027842315,0.009925161,-0.0040077846,0.022431806,-0.0030854049,0.004794607,0.010750293,0.008681568,-0.0637002,0.026522104,0.010202169,-0.010208063,-0.03661229,0.024706813,0.058749408,-0.007991994,-0.007043092,-0.044062056,0.03680089,-0.00070467754,0.008563693,-0.008988046,0.042199615,0.005484182,0.010991938,0.03651799,-0.035009176,0.045146514,-0.007337782,0.0003267376,-0.016101863,0.09161324,0.010520435,-0.006306367,0.011705088,-0.0017887686,-0.012105867,0.02663998,0.009524383,-0.007897693,0.006577482,-0.011946734,0.016243314,0.023374815,0.05592038,0.039134838,-0.014062609,0.0054429253,-0.00428774,-0.045971647,0.026427804,-0.033641815,0.02122947,-0.02315085,-0.010078399,0.019319879,0.0072434815,0.013626467,0.012471283,-0.0075558526,0.031779375,-0.08751115,0.011145177,-0.019190216,0.013119601,0.06271004,-0.0079094805,-0.020557577,0.0021674454,-0.0021541843,0.0072670565,0.013697193,0.021370921,-0.008911427,-0.04453356,0.05323281,-0.0051010847,-0.058325052,-0.0058142347,-0.03116642,0.008263109,-0.047504034,0.00047076735,-0.07190437,-0.024494637,-0.026946457,-0.061295528,-0.08350337,-0.0013673618,0.010267002,0.028714597,-0.023304088,0.0070018354,0.021583099,-0.023869894,0.06134268,-0.061012626,-0.060729723,-0.036683016,0.029822633,-0.011074452,0.003960634,-0.003004365,-0.026144901,-0.022089966,-0.06294579,-0.012612734,-0.0056934115,0.021512372,0.029469004,-0.012942786,0.032863833,0.02423531,0.020015348,-0.04842347,-0.035551406,-0.023304088,0.031991553,0.013013513,0.011186434,0.004794607,-0.0345141,0.0023442593,-0.040714376,-0.025154741,0.023657717,-0.021889577,-0.02600345,-0.004328997,-0.010891744,0.009919267,-0.023952406,0.023410177,-0.030105535,-0.025791273,0.02482469,-0.02763014,0.022537895,-0.012129442,0.0018801225,0.014486963,-0.018966252,0.015712874,-0.036777318,-0.017704979,-0.0022499585,-0.005660996,-0.03496203,0.0054930225,-0.029586881,0.009141285,0.008563693,-0.043849878,-0.0035922716,-0.025861999,-0.031284295,-0.013437866,0.012836698,0.024376761,-0.027394386,-0.0075322776,-0.012648096,-0.043779153,-0.05563748,0.014781653,0.022974037,-0.026663555,-0.009341675,-0.010160913,0.015771812,0.008092188,-0.030930666,-0.015983988,0.0037160416,0.014428024,0.011616682,0.033736117,0.008086295,0.0014086184,-0.0072670565,0.0026787326,0.030859942,0.006618738,-0.0057022525,-0.0036394221,-0.039087687,-0.011103921,-0.02654568,-0.0022278568,-0.020687241,0.044297807,0.015642148,-0.009618683,0.021453435,-0.020970143,0.0055107037,0.04842347,0.021465223,0.010685461,-0.021512372,0.011039089,-0.06280434,0.0028525996,-0.003757298,0.041940287,0.012530221,0.0016031138,-0.0011271894,-0.0021350293,-0.039087687,0.03927629,0.03161435,0.0053103147,-0.016184377,-0.0060882964,-0.039535616,0.029516155,0.05766495,-0.02895035,-0.0050480403,0.016620519,-0.040219296,0.011993885,-0.044957913,0.08553084,0.03583431,-0.00032471158,0.010320045,-0.012659884,-0.012005673,0.04090298,-0.03878121,-0.007048986,0.015170643,-0.0057847654,-0.041704535,-0.027205786,-0.016113652,-0.007844649,-0.026569255,-0.0077090915,-0.0048152353,-0.037578873,0.023174426,0.07482769,0.07284738,0.024400335,0.03234518,-0.042176038,0.034797,-0.049177874,-0.009960524,0.016349403,0.021441648,-0.073318884,-0.022207841,-0.01386222,-0.0130253,0.011864222,0.03986567,-0.034820575,-0.018011456,0.018223632,0.012565584,-0.036046486,0.03519778,-0.027087908,0.021288408,0.033453215,-0.0068485965,0.012105867,-0.03797965,0.018765861,-0.05214835,-0.0009452183,-0.0012524327,-0.042741843,-0.039205562,-0.0005352308,-0.024258884,-0.025744122,-0.06120123,0.0005654365,0.02777159,-0.0009444816,-0.016549792,0.017021297,0.05549603,-0.015182431,-0.0021880735,0.033217464,0.054034367,0.010567585,0.030647764,-0.0030412013,0.0024768698,-0.0043083685,-0.037673175,-0.015064555,0.014310149,0.004685572,-0.008693356,0.022337506,0.019838534,-0.034844153,-0.03067134,-0.0037219352,-0.0046914653,-0.012365194,0.006483181,0.036541566,0.068085186,0.035763584,-0.0051364475,-0.026828581,0.050262336,0.016207952,0.031142844,-0.054222967,-0.040502198,-0.033641815,0.005722881,0.05195975,0.022172479,0.045500144,0.042671118,-0.008887852,0.027252935,0.023810955,0.013697193,-0.005778872,-0.017657828,-0.012011566,-0.006630526,0.031472895,-0.0076914104,-0.015854325,0.012270894,-0.030011235,0.008740507,-0.029822633,-0.06044682,0.009748347,0.01504098,-0.024801115,-0.029351128,-0.0073908265,0.004776926,-0.039299864,0.041515935,-0.017893579,0.0072316937,-0.052949905,-0.009736559,-0.0021202948,-0.07845828,0.0016001669,-0.015748236,0.01803503,-0.008092188,-0.017056659,-0.024942566,0.018836588,0.009942842,0.005882013,-0.0020819851,0.04132733,0.035127055,0.036447264,-0.05643904,0.046655327,0.038121104,-0.010390771,-0.02358699,-0.017386712,0.025861999,-0.0049773147,-0.026805006,-0.04580662,0.06879245,-0.020239312,0.018270783,0.01759889,-0.009872116,0.0086226305,-0.011292523,-0.0129309995,-0.0048181824,-0.039205562,0.091943294,0.042788994,0.023268726,-0.033217464,-0.004113873,-0.013296415,-0.001479344,-0.00810987,0.024306035,-0.025720548,0.011451655,-0.036895193,0.009919267,0.013673618,-0.017457439,-0.016184377,0.0053338897,-0.017174536,0.04045505,0.009147179,-0.04762191,0.023752017,0.018223632,-0.076902315,0.020062499,0.01666767,-0.03401902,-0.03632939,0.023917044,-0.045429416,0.06134268,-0.024164584,0.05926806,-0.006123659,-0.016585156,-0.03597576,-0.017481014,-0.007479233,0.03868691,0.036211513,0.006748402,0.020416126,0.0059291637,-0.032415904,-0.0020245207,0.015948625,-0.0072316937,0.016031139,0.0028658607,-0.016243314,-0.06294579,-0.027158635,-0.019178428,0.007821074,-0.024376761,-0.008475286,-0.017115599,0.018754074,0.0075676404,0.022726497,0.014428024,0.024400335,0.046820354,0.02113517,0.038757633,-0.033382487,0.04399133,0.016820908,-0.024188159,0.02953973,-0.03378327,-0.02487184,-0.029657606,0.032062277,0.027889466,-0.038804784,0.0024945512,-0.008168808,0.008080401,0.027417962,-0.034631975,-0.067990884,-0.016538005,-0.088076964,-0.028054493,0.012400557,-0.00050539343,-0.01784643,-0.022384657,-0.037460998,-0.055967532,0.079542734,0.053657163,0.013119601,0.03234518,-0.052525554,0.0069900476,-0.009182542,0.008516543,-0.011321992,-0.023669504,-0.015453546,-0.0150527675,0.00091943296,-0.008298472,-0.0089173205,0.01617259,0.018907314,-0.053657163,0.052336954,0.06115408,-0.026309928,-0.032250877,0.023480903,-0.026805006,0.023917044,0.014369086,-0.012247318,0.0062415353,0.004001891,0.0027509315,0.045099363,-0.05078099,0.04684393,-0.0028511262,-0.070065506,-0.019378817,0.041916713,0.01877765,-0.0012325412,0.03210943,-0.012070504,-0.042388216,-0.023822743,-0.0037661388,-0.021924939,0.011445762,-0.01666767,-0.010986045,0.018046819,-0.026144901,0.028266668,-0.04856492,0.008198277,0.01331999,-0.050262336,-0.01764604,0.065491915,0.006630526,0.013661831,-0.042388216,-0.01331999,-0.02737081,0.006282792,-0.0043967753,-0.012223743,-0.0008730193,-0.042576816,0.030199835,-0.0011014041,0.0051010847,0.031567197,0.024942566,-0.0004928691,-0.009105923,0.0033476788,-0.009294524,-0.024353186,-0.012153017,0.0694997,-0.029421855,0.017233474,-0.0018079234,0.04748046,0.018730499,-0.0055224914,-0.018978039,-0.0029247988,-0.008086295,0.061012626,0.007821074,0.026663555,-0.009147179,-0.0056639425,0.014864166,0.023044761,0.0095361695,-0.029233253,0.0052955803,-0.0037130946,-0.026239201,0.016184377,0.013626467,0.014251211,-0.01572466,0.033688966,0.050309483,0.030954242,-0.010579373,0.017481014,0.005834863,-0.0055519603,0.0012450655,-0.03647084,0.012919212,0.027983766,-0.011604894,-0.055826083,-0.021429861,-0.0027155688,0.007160968,0.019084128,0.016479068,0.0028157635,-0.015076343,-0.0021630249,-0.017976092,-0.024353186,-0.0042759525,-0.03515063,-0.021323772,-0.02290331,0.013980095,0.0026860998,-0.010402558,0.019685294,-0.009766028,0.024376761,0.033146735,-0.017787492,-0.033924717,0.024188159,0.004561802,0.006017571,0.020840479,-0.016384767,0.048046265,0.03597576,0.003197387,-0.006329942,0.021347348,-0.03170865,-0.0041168197,0.005009731,-0.0007603003,-0.020463277,0.019013401,-0.008115764,0.030930666,0.009377037,-0.004225855,0.024588937,-0.005213067,0.027559413,-0.0044851825,0.009318099,0.013237476,-0.00039856829,-0.0046325275,-0.00030942453,0.028573146,0.0002451453,-0.009595108,0.026757857,-0.034584824,-0.022514319,-0.038710482,0.003288741,-0.0069782604,-0.0044616074,-0.019237366,0.012954574,-0.025626246,-0.0029866835,-0.023893468,0.009813178,-0.062851496,-0.0032062277,0.0071373926,0.020086074,0.023598779,-0.0051128725,0.010402558,-0.047574762,-0.013826857,0.031826526,-0.038026802,0.014581263,-0.019897472,-0.025932724,-0.0026713652,-0.04604237,0.00021972826,0.03135502,0.023386601,-0.040973704,-0.0056668897,0.034136895,0.02659283,-0.028172368,-0.0058112876,0.042199615,0.010231638,-0.014911316,-0.0021615515,-0.020463277,0.007838755,-0.006954685,-0.003344732,-0.020486852,-0.006630526,-0.023799168,-0.011976203,0.008068614,0.013508592,-0.019744232,-0.025909148,0.0068132337,0.014428024,-0.007603003,-0.03208585,-0.00034883933,0.009724772,-0.01980317,0.035362806,-0.0056374203,0.00082586886,-0.0047798725,0.0033683071,0.0089644715,-0.007915375,0.0037219352,0.0013776759,0.0041669174,0.009418294,-0.010355408,-0.008050932,-0.0042170146,0.013296415,0.035574984,-0.022832585,0.02663998,-0.049979433,0.008428135,-0.009253267,0.0056020576,-0.02550837,0.032227304,0.055826083,0.007962525,0.0049596336,-0.0056167925,0.017033085,-0.0094595505,-0.012966362,-0.031991553,0.0055048103,0.007066667,-0.02147701,0.009094135,-0.011386823,0.034349073,0.02904465,-0.014486963,-0.012318044,0.0015662776,0.0075028087,0.04153951,0.033901144,-0.0021807062,-0.02349269,-0.02432961,-0.039252713,0.014039034,-0.0148052275,0.037673175,-0.0076501537,0.011787602,-0.0047504036,-0.012907424,0.040384322,-0.016384767,-0.041374482,0.0018388659,-0.028030917,0.0062238537,0.014428024,0.012612734,0.009424187,0.01853011,0.037225246,-0.04054935,0.018907314,-0.0027096749,-0.012518433,-0.06879245,-0.016585156,-0.03284026,0.015606785,-0.0067896587,-0.007432083,0.026852157,-0.014310149,-0.08935002,0.00008628893,0.007337782,0.024942566,-0.017928943,-0.0057995003,0.00023427859,-0.013885795,0.03651799,0.0052720048,-0.029822633,0.029775482,0.0031914932,-0.01558321,0.0016045873,-0.003727829,0.053657163,-0.0008855436,0.043826304,-0.042859722,-0.036895193,-0.021099808,0.011587213,0.0036541566,-0.01390937,-0.002578538,-0.0025564362,-0.0077326666,0.03378327,0.00032194887,0.002342786,0.028148793,0.014463387,0.0032386435,0.062097088,0.0010299417,0.0058731725,-0.028785324,-0.020840479,0.0059055886,0.017775703,-0.025296193,-0.048093416,0.017799279,0.0040402007,0.009365249,0.010980151,0.011109815,-0.03583431,0.009477232,0.028172368,-0.012483071,-0.039205562,0.011044983,0.007874118,-0.006724827,-0.008616737,0.012872061,0.0101727005,-0.019095914,0.0060470398,0.0016399501,-0.010485072,0.003162024,0.008693356,-0.029563306,-0.028478846,-0.010685461,-0.01440445,-0.0024370868,0.030246986,0.003960634,0.042435367,0.036753744,-0.005422297,0.0057523497,-0.003789714,-0.033665393,0.02831382,-0.006335836,0.023504479,0.007885906,0.01331999,0.04856492,0.0015353351,-0.005392828,-0.010738505,-0.0079566315,0.040124997,0.008787657,0.07746812,-0.03234518,0.00857548,0.0060765087,-0.0026698918,-0.0056668897,-0.011127496,-0.0017092023,0.050592385,-0.021712763,0.014828803,0.01327284,-0.012989937,0.0063829864,-0.019909259,0.022797221,-0.036895193,0.002971949,-0.011351461,-0.019697083,-0.014027246,-0.024494637,-0.008516543,-0.009783709,-0.04462786,0.0079566315,0.0056993053,0.04227034,0.013390715,-0.008593162,0.038616184,0.0260506,0.0054871286,-0.021406285,-0.01469914,-0.0004357729,-0.019166641,-0.014180485,-0.0047474564,0.012777761,0.014145122,0.051771145,-0.010396665,-0.013885795,0.011003726,-0.038333282,0.0036571035,-0.0021556576,-0.06440745,0.02727651,-0.004025466,-0.030294137,0.03519778,-0.025744122,0.021712763,0.0016871005,-0.0019979984,0.016054714,-0.009995886,-0.046655327,0.011964416,0.0037130946,-0.0580893,-0.0040195724,0.022502532,0.04281257,-0.010237532,-0.025767697,-0.016644094,0.06304009,-0.0016605784,0.047456887,0.008752294,-0.037578873,0.024046708,-0.019425968,-0.03823898,0.017964305,0.0016841536,0.008475286,-0.0041050324,0.019979985,0.03809753,0.0019199057,0.04340195,0.027842315,0.031001393,0.0049566864,-0.0073554637,-0.012542008,-0.0023531,0.034914877,-0.016679456,0.021323772,0.06497326,-0.003813289,0.03081279,-0.001538282,-0.0079861,-0.0006295316,0.016962359,-0.007614791,-0.020475063,-0.026333502,-0.026970033,0.0014830277,-0.009512595,0.024966141,0.004320156,-0.006866278,0.004885961,0.0023442593,0.01651443,-0.01690342,-0.013131388,-0.012153017,-0.026474953,0.01390937,0.024141008,0.025979875,-0.002160078,-0.025979875,-0.011027302,0.050168034,0.0069664726,0.010909425,-0.01572466,0.020922992,0.010608842,0.016255103,0.018647986,-0.008923215,0.037130944,-0.0044174036,-0.000030067593,-0.032745957,0.0017268837,-0.01651443,0.00017681402,0.031520046,0.011357354,-0.008887852,0.005796553,-0.00710203,0.03420762,-0.01504098,-0.030765641,-0.023139061,0.011510593,0.028266668,0.021370921,0.035504255,-0.0013062137,0.0026625246,-0.020156799,-0.0065598004,0.023304088,-0.012648096,-0.016278679,0.0051423414,0.017811066,-0.007314207,0.021571312,-0.033170313,0.0028201838,0.014651989,-0.019909259,-0.010685461,0.03760245,-0.0030706702,0.006754296,0.03288741,-0.0011618155,-0.040266447,-0.0014130388,0.025673397,-0.015642148,-0.0021836532,0.03302886,0.04113873,-0.01617259,0.014628414,0.013237476,0.02432961,-0.015194219,0.031873677,0.0004858702,0.027795166,0.011245372,-0.007826967,-0.03248663,-0.0041286075,0.044910762,-0.00399305,-0.007343676,0.008416348,-0.015229582,-0.014651989,0.03116642,0.03899339,0.011268947,-0.0015898527,-0.010101975,-0.0130253,0.005531332,-0.020734392,0.0069959415,-0.022844372,-0.0034007232,0.019496694,-0.00087228254,0.014616626,-0.007367251,-0.0011426606,-0.008793551,0.021111595,0.030341286,-0.015665723,0.050686687,-0.001235488,0.021323772,0.007508702,-0.0123416195,-0.062851496,0.012035142,0.0087464005,0.008840702,-0.03144932,-0.020227525,0.009942842,0.011180541,-0.032274455,0.0046826247,0.06652922,0.00013242634,0.02482469,0.026993608,-0.035598557,0.030388437,-0.0014181958,0.006777871,-0.04802269,-0.009259162,-0.0039753686,-0.029115377,-0.00094006123,-0.058513656,0.033382487,-0.025814848,0.005681624,-0.028879624,0.00009669517,0.0027273563,0.01769319,0.007950737,-0.0024370868,-0.0062415353,-0.020864055,0.016773757,0.01642013,0.063134395,-0.018718712,0.0113809295,0.004629581,0.032368753,0.02668713,0.019107703,0.0017077288,0.0046325275,0.009654046,-0.044910762,-0.0033889355,0.040478624,-0.026474953,-0.0058142347,0.0016443705,0.0026846263,0.005157076,-0.00390759,0.0020495693,0.0036276344,-0.011563637,0.019944623,0.019873897,-0.03937059,-0.017858217,-0.010426134,0.0028717546,-0.007791605,0.011245372,-0.019001614,0.010956576,0.009058772,0.04729186,-0.029846208,-0.0018683348,-0.012907424,0.0025814848,0.018424021,0.0015102865,-0.052902758,-0.0017445651,-0.013249264,-0.0523841,-0.014050822,-0.012282681,-0.027842315,0.022089966,0.006359411,-0.023763806,-0.0068839593,0.019178428,0.014439812,0.00059785246,0.032415904,-0.023787381,-0.023374815,0.037838202,-0.015877899,-0.0066776765,0.012824911,0.049696527,-0.03465555,0.022608621,0.033406064,0.04208174,-0.00010452288,0.006312261,0.0035893247,0.022042815,0.023787381,0.027064335,-0.020404339,0.049932282,-0.03121357,0.0074733393,-0.003583431,-0.027087908,0.0040667225,0.004376147,0.009382931,0.010879956,0.004800501,0.008522436,0.007491021,0.0010925634,-0.012129442,-0.048517767,-0.007496915,0.008386878,-0.01862441,-0.0010910899,0.030294137,0.0070313043,0.025720548,0.006418349,-0.005033306,-0.0005753823,-0.012247318,0.01449875,0.010520435,-0.019779596,-0.008422242,0.010868168,0.011316097,0.0023015293,-0.045783047,-0.011893691,-0.011286628,-0.018730499,0.008492967,-0.028667448,0.015441759,-0.04290687,0.0053338897,0.012765973,-0.0075617465,0.049366478,-0.011021407,-0.015312095,-0.0043348907,0.036164362,0.0019758968,-0.025838424,0.036164362,-0.010927107,0.033877566,-0.0016605784,-0.003138449,0.014687352,0.015653934,0.024706813,0.016985934,0.0066835703,-0.013437866,-0.01902519,0.014345512,0.006153128,-0.0006965736,-0.018424021,0.009223798,0.0029189049,0.026616406,-0.01440445,0.044321384,-0.020769754,0.011976203,0.008616737,-0.019685294,-0.00764426,-0.018742288,0.010520435,0.035032753,0.008551905,0.0037366697,-0.011870115,-0.00781518,-0.002977843,0.027653715,-0.023551628,0.02408207,-0.0031767588,-0.026899308,0.0005370726,0.009654046,-0.026805006,0.014545901,0.021524161,-0.021253046,0.014168697,-0.009530276,-0.04005427,-0.051582545,0.0060529336,0.009176648,-0.035009176,0.013838644,0.034325495,-0.02364593,-0.0060529336,-0.010856382,0.010119656,0.010202169,-0.008634418,0.031189995,0.014864166,0.0066423137,-0.0072788442,0.0011463442,-0.01331999,-0.023752017,-0.04856492,0.005599111,-0.018930888,-0.0025741176,-0.013343565,0.007962525,0.008103976,0.0022440646,-0.007461552,0.009347568,0.015477121,0.041704535,-0.001803503,0.013213902,-0.005089297,-0.005133501,-0.019284517,0.008139339,-0.0031590774,0.017033085,-0.0072434815,0.024258884,-0.0122944685,0.023198001,-0.0025092857,-0.020015348,0.022974037,0.03420762,0.02344554,-0.01607829,0.00041367114,-0.042623967,-0.015005617,0.014593051,0.011616682,0.02668713,-0.016490854,0.044344958,-0.006872172,-0.020958357,-0.004653156,-0.052289803,0.04036075,-0.0075440654,-0.04738616,0.0049832086,0.032015126,-0.008386878,0.0011293996,-0.022349292,-0.007078455,-0.013555742,0.051723998,-0.030105535,0.00044314016,-0.011156965,0.030011235,0.00024459272,0.008840702,0.02280901,0.022585046,0.009082347,-0.024400335,-0.019178428,-0.05337426,0.017728552,0.021700975,-0.013897583,-0.0017077288,0.008139339,0.03215658,0.0066128448,-0.019202003,-0.00006653549,-0.030977817,0.019072339,0.025720548,0.021866001,0.04790481,-0.0060529336,0.011092133,-0.016926996,-0.004821129,0.003551015,-0.0044733947,0.015736448,-0.041963864,-0.015948625,-0.022054603,0.035315655,0.02197209,-0.0059910486,-0.03760245,-0.0062238537,-0.037413847,-0.024518212,0.024353186,-0.0005304421,-0.038168255,0.007756242,-0.0004239853,-0.023964195,-0.015854325,-0.0055902703,-0.022761859,0.017634252,0.0023928832,-0.0140154585,-0.030529888,0.001307687,-0.005587323,0.015453546,-0.01000178,-0.0034714488,0.034089744,0.00693111,0.014522325,0.013284627,0.01356753,0.009901585,-0.026309928,-0.012247318,-0.00070394087,-0.011286628,-0.015866112,0.031779375,-0.0007496178,-0.014864166,0.009241479,-0.0037219352,0.0017136226,0.015889687,0.019013401,0.021889577,-0.04227034,-0.026922882,0.0077149854,0.0436377,0.02831382,0.0023103699,0.0062945792,-0.022125328,-0.0013916737,0.004107979,-0.004832917,0.027488688,-0.0058761197,0.0027774537,-0.021524161,0.0030677235,0.012459495,-0.00076766755,-0.008369197,0.022773646,0.037390273,-0.027535837,-0.0022308037,0.0015456493,0.0053987214,0.035716433,0.008581374,0.013060663,-0.017799279,-0.044344958,0.0005006047,0.045099363,-0.04644315,0.04245894,0.008657994,0.02442391,0.02020395,-0.010986045,-0.01626689,0.041845985,0.03769675,0.018471172,-0.011534168,0.029351128,-0.0017033084,-0.058749408,-0.025909148,0.017363137,-0.016832696,0.018978039,-0.007603003,-0.026309928,0.02181885,0.011198222,-0.06294579,-0.013013513,-0.024848264,-0.05922091,-0.010143232,0.042152464,-0.01759889,-0.033853993,0.0026050599,-0.01631404]},{"id":"guide-embeds-6","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Timestamp\nsetTimestamp() shows a date. Omit or pass null for current time. Pass Date or number (ms) for a specific time.\n\n```javascript\nembed.setTimestamp(); // current time\nembed.setTimestamp(new Date('2026-01-01'));\nembed.setTimestamp(Date.now() - 3600000); // 1 hour ago\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.021991048,-0.017538134,0.01455129,-0.03402595,-0.0050792755,-0.002394672,0.039868347,-0.021619061,0.0014031602,-0.033303857,0.012297481,0.02040463,0.02588598,-0.075622946,-0.005161332,0.017012974,-0.059999455,-0.009813915,0.01881821,0.029977847,-0.012385008,0.015032686,-0.049933903,0.04326,-0.0008732142,-0.020623446,-0.012888286,0.07395994,-0.003016931,0.019901352,-0.015328089,-0.021159546,0.027198879,-0.0100819655,-0.012286541,-0.02003264,0.07549166,0.01947466,-0.04792079,0.022242688,0.020656267,0.027176997,0.010760296,-0.0059135132,-0.016400289,0.020601563,-0.07724219,-0.034879334,0.0056782854,0.08844559,0.008873005,-0.03643293,-0.014474705,0.028183552,-0.014069894,-0.026411138,0.0015535965,0.024266738,0.010907997,-0.0012171662,-0.0033260093,-0.014573172,0.014638817,0.035995297,0.03148768,0.003949636,-0.054747865,0.036586102,-0.040240336,0.021498712,0.014179302,0.0003774583,-0.012603825,0.0008656924,0.024660608,0.05216583,-0.018085176,0.03549202,0.0054512634,-0.0096552735,0.025142005,0.01333686,-0.08166228,0.06778932,-0.025426466,0.018107057,-0.04043727,-0.045032416,-0.003574913,0.007751571,-0.020886024,-0.020481216,-0.05150938,-0.01735214,0.03240671,-0.0065043173,-0.042931776,0.0005473829,0.0046525835,0.023960395,0.02975903,-0.06406944,-0.04949627,0.0052734753,0.009135584,0.024901306,0.004961662,0.011225281,-0.038511686,0.020229576,-0.009726389,0.0020390954,-0.03538261,0.0039031375,0.0060393326,0.0088183,-0.016772278,-0.014201184,0.030262308,-0.046476603,-0.054178942,-0.05667345,0.020886024,0.0008677438,0.02227551,-0.02068909,-0.032231655,-0.03656422,-0.043807045,-0.027286405,-0.018172702,-0.018096115,0.020590624,0.005021836,0.00520236,-0.021870699,-0.014737285,0.036104705,-0.024748135,-0.0026887064,0.028840002,-0.022242688,0.037001852,0.022330213,0.039824583,0.018577512,-0.023938514,0.021509651,0.022735024,0.017045798,-0.0112909265,0.00867607,-0.019146435,0.015984537,0.006351146,0.017166147,-0.026892535,-0.030809348,-0.04282237,0.0053309146,-0.0064222612,0.014365297,0.04989014,0.021597179,-0.06297536,0.009190288,-0.011433157,-0.050896693,-0.045076177,0.0011371615,0.03308504,-0.06577621,-0.03188155,-0.023566525,0.02160812,-0.0023618494,-0.0019269519,-0.055448074,-0.0023317623,0.021892581,-0.0058642793,0.023325829,-0.036345404,0.01428871,0.053172383,0.009928794,-0.014496586,0.007302997,0.005147656,-0.014868574,-0.032713052,0.021991048,0.018074235,0.01708956,-0.002494507,0.0060666846,-0.014048013,-0.009179348,0.07846756,-0.0266956,0.029737148,0.033347618,0.02787721,-0.035557665,-0.0035284145,-0.0076148105,0.013676025,-0.025251413,-0.041465707,0.027658394,0.030524887,0.014649758,0.0058041047,-0.022045752,-0.0075491657,0.04417903,-0.026367376,-0.052122068,-0.043719515,-0.022713142,-0.069889955,0.025295176,0.037308197,-0.01975912,-0.003429947,-0.017428726,-0.026039151,0.03269117,-0.015711017,0.05658592,-0.02160812,-0.0205578,0.011312808,-0.020163931,-0.023850987,0.049715087,-0.02722076,-0.005579818,-0.04080926,0.02387287,-0.007893802,-0.01788824,-0.037767712,0.01921208,-0.017417785,-0.015470319,0.01214431,-0.06717663,0.002156709,0.06083096,0.048489712,-0.013851078,0.023850987,-0.04148759,0.027855327,-0.031531442,-0.06621384,0.06218762,0.0060885665,-0.00493978,-0.012286541,-0.017384963,-0.03547014,-0.03975894,-0.004989014,-0.021323659,0.01001632,0.0059080427,0.053172383,-0.089583434,0.0032056603,0.0029567566,-0.013249333,-0.008036032,-0.038402278,-0.009644332,-0.049583796,0.0105907135,-0.032734934,0.009212171,-0.009863149,-0.023282064,-0.01935431,0.0085830735,0.009496632,-0.009595099,-0.007313938,0.008927709,0.016859803,-0.026586192,-0.028271079,-0.011465979,0.057855055,-0.02003264,-0.0118817305,0.04498865,0.060130745,0.016980153,0.03910249,-0.0013217878,0.013676025,-0.049189925,0.0012445182,-0.004100072,-0.0017587368,0.067964375,-0.052822277,-0.06529481,0.014037072,-0.013457209,-0.029124463,-0.04013093,-0.017056739,-0.027680274,0.037986528,0.06967114,0.07356607,0.03483557,0.015645372,-0.009387223,0.03431041,-0.020470275,0.0030716353,-0.008867535,-0.006613726,-0.042144038,-0.012702292,0.012428772,0.066432655,0.026126677,-0.026476784,-0.0015563316,0.014441882,0.037176907,0.008440843,-0.018314933,0.018358696,-0.01107758,-0.0113456305,0.027111351,-0.041640762,-0.013949545,-0.030503007,-0.019835707,0.00586975,0.009425516,-0.06617008,-0.010339075,0.003079841,-0.030109137,0.0029594917,-0.0008212453,-0.011903612,-0.03472616,0.03750513,-0.01387296,0.020273339,-0.026498666,-0.02255997,-0.00012975128,-0.061706223,0.0023413354,-0.0024890364,-0.007932095,0.03135639,-0.037308197,-0.041575115,0.01507645,-0.03910249,-0.025645282,0.0041930694,0.026739364,0.0028883764,-0.00893865,-0.033303857,0.044638544,0.026870653,0.021859758,0.027658394,0.048752293,-0.00880189,-0.015404674,0.0370675,-0.061574936,0.029934084,-0.015623491,0.0135447355,0.019507483,0.021433067,-0.019146435,0.030218545,0.0000322455,-0.0074014645,-0.015700076,0.036104705,0.018741624,0.006099507,-0.012100547,0.00076654117,-0.052384645,-0.0057275193,-0.026520548,0.014518468,-0.016247118,0.038774267,0.008030562,-0.007571047,0.013172748,0.04067797,0.008796419,-0.037833355,0.021301776,0.021958226,-0.017724128,0.0057056374,0.013249333,-0.012494416,-0.008161851,0.039802704,0.008189204,-0.08341281,-0.048270896,0.010831412,-0.02242868,0.036651745,0.011586328,0.040546678,-0.013894841,0.05203454,-0.040546678,-0.013227452,0.023413355,0.04498865,0.019988878,0.0075272843,0.023325829,0.04229721,-0.02667372,0.010907997,0.04472607,-0.0028473483,0.0512468,-0.055535603,0.008386139,-0.07868638,-0.017964827,-0.06726416,-0.0054375874,0.0023030427,-0.03441982,0.039562006,-0.00011094675,0.0448136,-0.024310501,0.029277634,0.03201284,-0.009671684,-0.024923189,0.023654053,0.005366472,-0.025973506,-0.016444052,-0.028358605,0.02881812,0.0027092206,-0.029912202,-0.029824676,-0.0074233464,0.006821601,-0.024638727,0.017942945,0.016356526,0.035995297,-0.007571047,-0.028074143,-0.023741579,-0.0010551054,-0.062406436,0.013949545,-0.04015281,-0.0020719178,-0.030240426,0.005177743,0.016969211,-0.025404584,0.07260328,0.03470428,0.002490404,0.03805217,-0.04590768,0.002714691,-0.002056874,-0.031662732,-0.008862064,-0.010371897,0.030262308,-0.023238301,0.010918939,0.006367557,-0.0033916542,0.007844568,-0.0333695,-0.030306071,0.04284425,-0.0025122857,0.0033178036,-0.016345585,0.017319318,0.011695736,0.00029061554,-0.0245512,-0.013719788,-0.021969166,-0.027767802,0.0070130657,0.02003264,-0.012439712,0.052822277,-0.016170532,-0.07649821,0.0014113658,0.04560134,0.002542373,0.0057494007,0.030853111,-0.0053856187,0.013063339,-0.02203481,0.015623491,-0.01868692,0.002524594,-0.0008725304,0.02789909,0.005057394,-0.027548984,0.011411275,-0.06783308,0.019518422,-0.013533794,-0.02310701,-0.0013087955,0.039299425,0.006033862,-0.0066520185,-0.053741306,-0.030065373,-0.011542565,0.01454035,-0.018796328,0.03135639,0.016367467,-0.018260228,0.03148768,-0.0066793705,0.0245512,0.04402586,0.018883856,0.020721912,0.017505312,0.018993264,-0.000008462041,-0.012527239,0.0019638771,0.04192522,-0.0072100004,-0.003946901,0.010574303,0.014518468,0.012997694,-0.028533658,-0.03577648,0.021323659,0.010098376,0.057680003,-0.0034354175,0.029824676,-0.01601736,0.0044747954,-0.013008635,-0.0023782607,0.022231746,0.009792034,-0.018588454,-0.030656178,-0.015426556,0.017374022,-0.013052398,0.013019576,-0.022603733,0.02522953,0.05002143,0.019660654,-0.016345585,0.0018913943,0.024222976,0.0029540213,0.013807314,-0.0067340746,-0.046782944,0.038270988,-0.004953456,0.007324879,-0.018183643,0.04713305,0.029737148,0.05019648,0.008927709,0.0021662824,-0.033216327,-0.021258013,0.0019529364,-0.007406935,0.024748135,-0.046082735,-0.015481261,0.007456169,0.007702337,0.0042395676,-0.009179348,0.022603733,-0.0032576292,0.014430941,0.034354176,0.017527193,0.01653158,0.048489712,0.0027269993,-0.017592838,0.0041958042,0.001351875,0.03083123,-0.0029458157,-0.009961616,0.014124598,0.021465888,-0.0007097857,-0.019091731,-0.01040472,-0.0057165786,-0.03190343,-0.0005566142,0.011323748,0.039933994,0.00812903,-0.003722614,0.021061078,0.004359917,-0.0006120021,-0.04094055,-0.020338984,-0.057811294,-0.03496686,0.018621275,-0.03255988,0.0178773,-0.037308197,0.012450653,-0.0055497307,-0.0010756194,-0.009961616,0.0056017,-0.014923278,-0.038205344,-0.00037814208,-0.017625662,0.020207694,-0.033281974,-0.024354266,-0.020645328,-0.013391564,-0.06336923,-0.007899272,0.030481124,-0.002621694,0.023763461,-0.011925493,-0.010842352,-0.025864098,-0.025032597,0.029299516,-0.030371716,-0.010782178,-0.0266956,-0.025054477,-0.0037335549,-0.0128992265,0.0055907588,0.026586192,0.0063566165,-0.042056512,-0.026345495,0.018588454,0.034222886,-0.002610753,0.012866404,0.02962774,0.025142005,0.0080469735,-0.014102717,-0.03816158,-0.0178773,-0.00012017807,-0.03415724,-0.027264522,0.005084746,0.009255934,0.00453497,-0.003440888,0.0036651746,-0.02989032,-0.0030524887,-0.03240671,0.015503142,-0.013851078,-0.016783217,-0.028861882,-0.022931958,0.015273385,-0.0054922914,0.025338938,-0.005924454,-0.004121954,-0.0042614494,-0.005897102,-0.027920973,-0.046389077,0.009458339,0.016870745,0.0134353265,-0.0011863952,0.0069200685,0.0010133934,0.03879615,0.014682581,0.015820425,0.031575207,-0.05715484,0.035141915,0.03150956,0.00056276843,-0.014212125,0.04067797,0.016640987,0.011400335,0.045557573,0.0059627467,0.02308513,-0.0165644,0.019923232,-0.016826982,-0.019704416,0.0047784033,-0.013511913,-0.012767937,-0.0072373524,-0.0055415253,0.03455111,-0.059649352,-0.03761454,0.00480849,-0.009420046,0.0029950493,0.011870789,0.0016506962,0.002297572,-0.027964735,-0.03308504,0.016914507,-0.03002161,0.00002504422,-0.025010714,-0.021859758,-0.03255988,-0.04017469,0.04404774,0.001111177,-0.047833264,0.010875175,-0.02989032,0.04813961,-0.0033725076,0.03350079,-0.005842398,-0.026651837,0.012855464,-0.0027338373,-0.0075218137,-0.016214294,-0.020492155,-0.05321615,0.0026052827,-0.033216327,0.0135994395,0.042756725,0.005393824,-0.022231746,-0.004127424,-0.09225299,-0.0024931394,0.042516027,-0.002163547,-0.012450653,-0.021662824,-0.00035831184,-0.00063149043,0.013686966,-0.024988832,-0.0019939644,0.015174917,-0.004083661,-0.050371535,-0.029211989,-0.006608255,0.032341063,0.00908088,0.00090398523,-0.00827126,0.0044665895,-0.012461594,0.030131018,0.03562331,0.016914507,0.033960305,0.024376146,0.03735196,-0.0005484086,-0.012188073,-0.011641032,0.050108954,0.010782178,0.0065699625,0.01774601,0.0041821282,-0.006641078,-0.014507527,0.0024233917,-0.025120122,0.033260092,-0.037439484,0.022144219,0.015404674,0.042209685,0.0034928569,0.024923189,0.0033041276,-0.033216327,-0.013391564,0.0290807,0.01534997,-0.0140808355,-0.01507645,0.028271079,0.0020979021,-0.009863149,-0.013183688,-0.0048631947,-0.007953976,0.024069805,0.008435372,0.020940728,0.00009829643,0.01361038,0.016608164,0.02536082,-0.019671595,0.016050182,0.0074506984,0.010185903,-0.005787694,0.03638917,0.023654053,0.0074780504,0.04067797,-0.010153081,-0.017177088,-0.012516298,0.014956101,0.016247118,-0.036235996,0.023172656,0.012078665,0.013905782,-0.009135584,-0.011498801,-0.00973733,0.03402595,-0.0021991048,0.05002143,-0.017319318,0.004338035,-0.004338035,0.009748271,-0.013205569,-0.035141915,0.0054758806,-0.0053309146,0.009348931,0.014726344,-0.00493431,-0.024222976,-0.0026257967,-0.054353993,-0.0101913735,-0.0021307247,0.058905374,0.01746155,0.030962521,0.0055278493,0.01001632,-0.042603552,-0.0076257517,-0.024923189,-0.015415615,0.009562276,0.032537997,-0.009518513,-0.010842352,0.007839098,-0.009305167,-0.004950721,-0.027395813,-0.016170532,0.0082822,0.02308513,-0.027023826,-0.0051996247,0.022756906,0.008916768,0.036739275,0.019966997,-0.0145622315,0.004313418,-0.010049143,0.033544555,0.005366472,-0.027308287,0.005112098,-0.0077461004,-0.031312626,-0.026236085,0.00069713534,-0.0073084678,0.012078665,-0.007297527,0.010891587,-0.0112909265,-0.037133142,0.02787721,-0.033807132,-0.0035557665,0.027067589,0.039977755,0.02575469,-0.017286496,-0.022647496,-0.03695809,0.018260228,-0.009781093,0.012746056,0.023457117,0.013719788,0.044616662,0.0027721303,-0.017056739,0.015623491,-0.0392119,0.04177205,-0.0088183,0.04560134,0.02975903,-0.007833627,0.029671503,0.012045843,0.001833955,0.018293051,-0.01107758,-0.012319364,-0.004162982,0.049146164,0.025907861,0.007231882,0.045995206,0.0009415943,0.0023194537,-0.0032466883,-0.019649712,0.028314842,0.01893856,0.014299652,0.04708929,-0.012133369,-0.041137483,-0.0018366901,-0.0028610243,-0.031684615,-0.0037280845,0.018314933,-0.008380668,-0.012746056,-0.003375243,0.0017382228,0.01641123,-0.0030716353,-0.026476784,0.0076804557,0.005858809,0.025448347,-0.023128893,-0.026761245,0.015656313,0.054529045,-0.01855563,0.022603733,-0.023982277,0.014201184,-0.011465979,0.012669469,-0.013697906,-0.007997739,0.0024466407,0.022341155,-0.0061815633,-0.012111488,0.02630173,0.0018462633,-0.010317193,0.02147683,0.0053856187,-0.03870862,0.010913468,-0.011061169,0.04229721,-0.029693386,-0.052909806,-0.002449376,0.012177133,0.02803038,0.011121344,-0.011411275,-0.0024192887,-0.026192322,-0.029168226,-0.009759211,0.029452687,0.04150947,0.018665038,0.02468249,0.05045906,-0.0005990099,0.021236131,-0.07505403,0.034091596,0.020590624,-0.029211989,-0.025973506,0.00023420193,-0.011925493,0.00034019112,0.025513992,-0.003027872,-0.012505357,-0.0013135822,0.009272344,-0.018708803,0.016772278,0.039802704,0.007647633,-0.023544645,0.034813687,0.02042651,-0.0067450153,-0.020568741,0.016903566,-0.0015850513,0.016236177,0.042931776,0.00085270015,-0.03376337,-0.026345495,0.009441928,-0.016323702,0.00005872143,0.0066629592,-0.01975912,-0.014179302,0.036892444,0.023741579,0.0019119083,-0.00827126,-0.03601718,-0.0312251,-0.008320494,-0.005109363,-0.011925493,-0.034638636,-0.0045459107,0.009611511,-0.021422125,-0.019124553,-0.0091191735,0.025776573,0.019058907,0.051465616,0.02494507,0.011247163,0.04426656,0.021640942,0.0035256792,-0.0041930694,0.025426466,-0.0333695,-0.0071826484,-0.013960486,0.011110403,-0.0133478,0.021848818,0.0024069804,0.00091629365,0.0034217415,-0.005787694,0.08306271,-0.009113703,-0.009294227,0.025317058,-0.060655907,-0.002721529,0.0045021474,-0.025295176,0.0050245714,0.0128117,-0.0015754781,-0.028074143,-0.00035591854,-0.036126588,0.032100365,-0.048227135,0.009688096,-0.03925566,-0.014113658,-0.02147683,0.0065207286,-0.017658483,-0.0031728377,0.0031509562,0.01280076,0.006903657,0.042691078,0.046389077,0.011258104,0.008178263,-0.004217686,-0.002301675,-0.003938695,0.018172702,-0.0073741125,-0.0112909265,-0.010421131,0.0024521113,0.0173412,0.013785433,0.007953976,-0.03923378,0.00048037036,0.014770106,-0.015546905,0.013238392,-0.010322664,-0.0009915119,0.011279985,0.0069145984,0.042888016,-0.038861793,-0.03459487,0.016192414,-0.0011932332,0.001073568,-0.021050138,-0.02947457,0.0059080427,0.017910123,0.024748135,-0.04413527,0.0078117456,-0.022713142,0.051290564,0.014715402,0.010393779,-0.016673809,-0.008703422,-0.013621321,-0.022866314,0.022997603,0.00022890247,-0.020098286,-0.015229621,-0.0017601044,-0.0118817305,-0.026586192,0.036345404,0.011750441,0.014037072,0.009562276,0.01828211,0.014354356,0.011455039,-0.00680519,0.006444143,-0.0059025725,0.05361002,-0.028117906,0.011186988,0.029912202,-0.0008137235,0.010825941,-0.011028347,0.0245512,0.01333686,0.0047729327,0.031006284,-0.01427777,0.023807224,0.000598668,0.012264659,-0.0157329,-0.045294993,-0.014518468,0.020667208,0.003815611,-0.0058861612,-0.014058953,-0.0020828587,0.007007595,-0.0054129707,-0.008194674,-0.029408924,0.008424431,0.013205569,-0.010913468,0.010087436,0.019966997,-0.001627447,0.024310501,0.0011857114,-0.0069966544,-0.008522899,-0.03161897,-0.020568741,0.018632216,-0.01828211,0.014343414,0.051553145,0.037570775,-0.0032330123,-0.030043492,0.013205569,-0.009649803,0.0026996473,0.0035420905,0.009917853,0.015645372,-0.02242868,-0.024988832,-0.002817261,-0.014584113,0.01896044,-0.028511778,-0.02494507,0.011837967,0.025864098,-0.018665038,0.0037636422,0.04577639,-0.021006374,0.031662732,-0.017844478,-0.014868574,-0.00019112245,0.01760378,0.028489895,0.001448291,0.022713142,0.033457026,0.016422171,0.014923278,-0.027308287,0.0067833085,0.003522944,-0.024726253,0.006509788,0.037417606,-0.021454947,0.02415733,0.0024329647,-0.015142094,0.0019980671,-0.00016359944,-0.0021594444,0.0046799355,-0.0029157286,0.028008498,-0.006630137,0.010798589,-0.0010605757,0.022319272,-0.021739408,0.010557891,-0.030503007,0.035032507,-0.01960595,-0.010918939,0.0033697726,0.027548984,-0.009786563,0.015404674,-0.012461594,-0.004121954,-0.0037444956,0.020262398,-0.022352096,-0.0050382474,-0.0034572992,0.028621186,-0.037592657,0.010481305,0.0150983315,-0.06630137,0.00040651983,0.012155251,-0.010240608,0.00058738526,-0.0040207515,0.0015522288,-0.0032083953,-0.029737148,-0.019584067,0.017177088,-0.010054613,-0.01001632,-0.031990957,-0.020524979,0.0012404155,0.0054758806,-0.027986618,0.01494516,0.0073959944,-0.02135648,0.018708803,0.013686966,0.0053172386,-0.008358787,0.03069994,0.017242732,0.009830327,-0.012921108,-0.022888195,-0.021006374,0.016389348,0.04271296,-0.0068161306,-0.003320539,-0.016892625,0.031947196,-0.0074014645,0.019988878,0.025426466,0.01508739,-0.021564355,-0.01708956,0.00747258,0.005618111,-0.047614448,0.014529409,0.011542565,0.005049188,-0.0124178305,0.031837787,0.0084463125,-0.022516208,0.00090125005,-0.0072537637,0.013949545,0.007948506,-0.027439576,0.035185676,0.023063248,-0.006033862,0.0073467605,-0.049321216,0.01840246,0.0008219291,0.009901442,-0.022067634,0.018303992,-0.00074739475,0.027373932,0.013249333,0.027176997,-0.0105907135,0.020109227,0.019912291,-0.041596998,-0.043828923,-0.015700076,0.043719515,0.034091596,-0.015109273,-0.026039151,-0.015459378,0.0105907135,0.021170486,-0.011706677,0.0030497536,-0.04525123,0.028664948,0.0044775307,0.024441792,0.029387042,0.0005292622,0.0018722478,-0.00072004274,0.015897011,0.001507098,0.046958,0.038205344,-0.049715087,-0.0038347575,-0.01974818,-0.0066246665,-0.014529409,-0.033697724,-0.009190288,0.0032986572,-0.0061542112,-0.03853357,0.028139789,-0.009370812,-0.003402595,0.0049835434,-0.00840802,0.00013385409,0.011553505,-0.019540304,0.0004492574,0.017822595,0.028686829,-0.027680274,-0.015842307,-0.00013881165,-0.003082576,0.004321624,-0.022756906,0.007986799,0.0504153,-0.033522673,0.021859758,0.0015836837,0.0057056374,0.00015872736,0.012166192,-0.039846465,-0.026126677,-0.02855554,-0.021662824,0.00680519,0.028314842,0.027373932,0.005180478,0.009885031,-0.004176658,0.031837787,-0.012253718,0.004269655,-0.030218545,0.006827072,0.021673765,0.047658212,0.010760296,0.036914326,-0.003842963,-0.015251503,-0.009157467,0.0370675,-0.011520684,-0.0173412,0.002129357,-0.017505312,-0.021454947,0.023172656,-0.0117395,-0.013128984,-0.0016520638,-0.0117723225,0.011137755,-0.02013111,-0.014190244,0.0061979746,0.014999864,-0.00473464,0.01853375,0.019244902,-0.033719607,-0.042734843,0.02695818,0.04085302,-0.008200144,0.04096243,0.02163,0.02122519,0.002501345,-0.021619061,-0.008243908,0.012713233,0.028402368,0.0006520045,-0.004844048,0.020371806,0.006241738,-0.07098404,-0.0013696539,0.0063620866,-0.01668475,0.030131018,0.009726389,-0.020514037,-0.014234006,-0.005574348,-0.016640987,-0.0010489511,-0.0031017223,-0.052647226,0.0059846286,0.04148759,-0.037527014,-0.006876305,-0.0039660474,0.002397407]},{"id":"guide-embeds-7","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Fields\naddFields() adds name/value pairs. Max 25 fields. Use inline: true for side-by-side layout. spliceFields() to insert/remove.\n\n```javascript\nembed.addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true },\n { name: 'Long field', value: 'Not inline, full width' }\n);\n\n// Insert/replace fields\nembed.spliceFields(1, 1, { name: 'Replaced', value: 'New value' });\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.018604169,0.029104888,0.008345427,-0.020866381,-0.00579059,-0.046414755,0.019943489,-0.028069448,-0.021834293,-0.0059425295,0.026628833,-0.0060156854,0.04069732,-0.019819686,-0.01830029,0.015396553,-0.0035621412,0.01691595,0.036397994,0.05055652,-0.0027138114,0.026111113,-0.0137420995,0.0043753,0.0012260687,-0.022183191,-0.021294063,0.043781135,0.015914274,-0.021879314,-0.017163556,-0.0060888417,0.06127108,0.02629119,-0.021789275,-0.021811783,0.058659967,0.03549761,0.005087165,0.0359478,0.004625719,0.040067054,-0.011727491,-0.01853664,0.029194927,0.04193535,-0.037658527,-0.024467915,-0.008390446,0.071040235,0.0350024,-0.0011093003,-0.02309483,-0.021924332,0.008457975,0.026381228,-0.042475577,-0.004639787,-0.0039588725,0.0027180319,0.04031466,-0.026741382,0.024265328,0.039886978,-0.036330465,0.0032132426,-0.04497414,0.020742578,0.04024713,0.03655556,0.046909966,-0.0080134105,0.012976773,0.030725578,0.038851537,0.00035681203,-0.0020343033,0.0033229769,-0.009330221,-0.018244015,0.023860157,0.006544661,-0.08193488,-0.018424092,-0.03588027,0.03981945,-0.0010614675,-0.0072987317,-0.059155177,-0.04031466,-0.065863036,-0.048710734,-0.030455463,-0.010928402,0.0016572679,0.025345787,-0.029667627,-0.0068597947,-0.019752158,0.024783049,0.07765806,-0.05690422,-0.07801821,-0.014383622,0.008992578,-0.03065805,-0.01639823,0.01827778,-0.013381946,-0.026088605,-0.07320116,-0.023545021,-0.015542866,0.009746648,0.02313985,-0.01341571,-0.032616384,0.006347702,-0.015891764,-0.054068014,-0.04096744,-0.039931998,0.057174336,-0.012481563,-0.0187955,-0.0045328666,-0.021046458,-0.010748325,-0.0446365,-0.017827587,0.012819206,-0.012537836,0.013989705,0.005841236,-0.03864895,0.0032329385,-0.03615039,0.048980847,0.007090518,-0.03380939,0.037996173,-0.03871648,0.058659967,0.0024633922,-0.000194321,0.054428168,-0.034034487,0.0154978465,0.009971744,-0.027506707,-0.017309867,0.003956059,-0.03592529,0.0135057485,-0.032053642,-0.032683913,-0.018727971,-0.006904814,0.012774187,-0.048080463,-0.012830461,-0.024738029,0.008919422,-0.009892961,-0.035114948,0.004234615,-0.026696363,-0.034777302,-0.041575197,0.020146076,-0.0137308445,-0.09390997,-0.02285848,0.020427445,0.007760178,-0.019392004,-0.034687266,-0.04189033,0.0024957499,0.031963605,-0.034124523,0.048710734,-0.05960537,0.07239081,0.010556993,-0.0006028347,-0.018547894,0.0046566697,-0.0012689776,-0.021046458,-0.012042626,-0.018682953,0.009099498,0.008182232,-0.03128832,-0.008958813,0.0080190385,0.009195164,0.03347175,-0.017760059,0.038761497,0.012864226,-0.0241978,-0.003657807,-0.022610875,-0.031468395,-0.04454646,0.029690137,-0.040877398,-0.01903185,0.0029375004,-0.018615423,0.011885059,-0.017512454,-0.008761854,0.021924332,-0.0044709654,-0.037726056,-0.045919545,-0.016240662,-0.040629793,-0.0076138657,0.071130276,-0.017748805,-0.03212117,0.037996173,-0.027146554,-0.019752158,0.0040883026,0.021125242,0.016206898,-0.013877156,0.016904695,-0.034822322,-0.040584773,0.06802395,-0.024783049,0.023229888,-0.020888891,0.013584532,0.023477493,-0.00087506,0.020888891,0.026741382,0.010782089,0.017399905,0.010118057,-0.037410922,0.020618776,0.02175551,0.03862644,0.0042008506,0.03385441,-0.01983094,0.019763412,-0.04454646,-0.006544661,0.06550288,0.012819206,0.004597582,-0.021113986,-0.01931322,-0.012267722,0.01583549,0.021395357,0.0043387217,0.046414755,0.03279646,0.010652659,-0.06545786,0.023860157,0.0179739,-0.029420022,0.00073367165,-0.0009489195,-0.038041193,0.00712991,-0.005025264,-0.016735874,0.038153738,-0.021642962,-0.055148475,-0.017636256,-0.019482043,0.0026462825,-0.030185347,0.0016446062,-0.009971744,0.031423375,0.00022298553,-0.018547894,0.026021076,0.040179603,0.007979646,-0.012346505,0.026988987,0.0048170504,0.022306995,0.056138895,-0.017354887,0.0024493237,0.032886498,0.022250721,0.0010438818,0.029149907,-0.0036803165,-0.03873899,-0.02095642,0.01687093,-0.055643685,-0.020449955,0.026628833,-0.0068823043,-0.04447893,-0.020742578,0.03176102,0.070049815,0.017028498,0.0030190975,-0.039954506,0.008660561,0.028677206,0.016702108,-0.09134388,-0.03538506,-0.05478832,-0.0037000123,0.04240805,0.015914274,-0.014653737,-0.0018654815,0.0054754554,-0.027641766,0.003843511,0.018919302,-0.081664756,0.026628833,-0.024332857,-0.00026396,0.03376437,-0.01769253,-0.008002156,0.0021285622,-0.012312741,-0.023016047,-0.02281346,-0.010720188,0.02629119,-0.0135170035,-0.026741382,0.0049380395,-0.0067866384,-0.0382888,-0.016038077,0.029937742,-0.029442532,0.038446363,-0.07932376,0.01181753,-0.002373354,-0.031423375,0.013899666,0.021372847,0.019155653,-0.0005557053,-0.0048423735,0.0072424575,0.025953546,-0.021890568,0.017703785,-0.010286879,-0.011282927,0.007760178,0.011918823,-0.018671697,-0.006803521,0.042182956,0.0066009345,0.020753834,-0.01564416,0.021023948,0.0050111953,-0.006544661,-0.00976353,-0.0051772036,0.004383741,0.013044302,0.038491383,-0.048710734,0.00404047,-0.010517602,-0.020967675,0.008643679,-0.030815616,0.085716486,0.0015489405,0.034664754,0.0014314686,-0.004434387,-0.044659007,-0.004485034,-0.043263413,0.013168105,-0.025075672,0.017838843,-0.023500003,0.011896313,0.0063251923,0.036915712,-0.02313985,0.031423375,-0.02145163,0.03178353,0.04618966,-0.022712167,0.01747869,-0.020449955,-0.0183228,0.023297416,0.018401582,-0.01884052,0.010269997,-0.0027996292,-0.016094351,0.026741382,-0.0077264137,0.038356327,-0.037726056,0.016747128,-0.03232376,-0.07140039,0.053392727,0.058795024,0.023927685,0.0038463245,0.011704982,0.02800192,0.0054838965,0.008756227,0.0065840525,-0.057264373,0.023972703,0.010450073,0.04238554,-0.05852491,-0.017433671,-0.039436787,-0.014935107,-0.015126438,-0.027799333,-0.007979646,0.0040995576,0.014732521,0.0042937025,0.03016284,0.039571844,0.042723186,-0.013865902,0.039571844,0.03419205,0.035362553,0.02316236,-0.012954264,0.025525864,-0.0141697815,0.008103449,-0.031468395,-0.020056037,0.017411161,-0.009718511,0.030500483,-0.036870692,-0.01266164,0.024895597,-0.03925671,-0.011885059,-0.049791194,-0.04983621,-0.011592434,-0.008328545,0.023792626,0.0009531401,-0.028159486,0.0015672295,-0.03484483,0.11191764,0.02685393,0.0048930203,0.05217721,-0.048710734,0.0063139373,0.002736321,0.035655174,-0.009302084,0.015362789,0.004496289,-0.034619734,0.018649187,0.0073212413,0.0012584262,0.050736595,0.0036549931,-0.029307473,0.03380939,0.041687746,0.0077770604,-0.003154155,0.001325955,-0.020404935,0.045311786,-0.009814178,-0.010922774,0.007867099,0.00066403265,0.019470787,0.02121528,-0.020708814,0.03000527,-0.0021566993,-0.02368008,-0.0056836694,0.032931518,-0.002020235,-0.00476359,0.02177802,-0.037726056,-0.030590521,0.0017937322,0.025593393,-0.051231805,-0.021789275,-0.021294063,0.0074562985,0.027416669,-0.045311786,0.022937262,-0.030297896,0.04418631,0.023882665,-0.01877299,-0.031333335,0.03016284,0.0062295264,0.022926008,-0.036172897,0.009347104,0.015858,0.009921098,-0.002559058,0.029757665,0.0030725577,-0.025458336,0.005593631,-0.031378355,0.019346984,0.065277785,0.024265328,0.022070644,-0.014361112,-0.024783049,-0.009015087,-0.032976534,0.027821843,-0.00039004884,-0.0067697563,-0.012008862,0.004772031,-0.0070117344,0.02471552,-0.00980855,-0.06734867,-0.008947559,0.002504191,0.059245218,-0.008232879,0.011727491,-0.013235633,0.016702108,-0.014800049,-0.028564658,0.0030106565,-0.013843392,-0.020517483,-0.0080190385,0.009611591,-0.000986201,0.01142924,-0.0022073458,-0.011198517,-0.0006749357,0.018435346,0.03718583,0.02471552,0.021913078,0.038378835,-0.027281612,-0.0018260897,-0.006820403,-0.039369255,0.017523708,-0.014586208,-0.031423375,-0.011648708,0.0044062505,-0.023184868,0.020731324,0.011716237,-0.019583335,-0.0077770604,-0.013314417,0.0128417155,-0.014946362,-0.0112773,-0.041485157,-0.018547894,0.01047821,0.035700195,0.008300408,0.017625002,0.0097747855,-0.008795619,0.007855844,0.012931754,0.045244258,0.00009082968,0.035047416,0.03160345,-0.014631228,0.036803164,0.018086448,0.0069948523,0.0069948523,0.0175012,0.016927205,-0.0037478453,-0.029329984,0.010714561,-0.011125361,0.016510777,-0.027236592,0.036015328,-0.013010538,0.045536883,0.044208817,0.017534964,-0.017985156,0.0152614955,0.020607522,0.0034861714,0.0016882186,-0.022948518,-0.01125479,0.012346505,-0.026651343,0.015666667,0.0030134702,-0.0126278745,-0.033561785,0.009966117,-0.013426965,-0.010151821,-0.01905436,-0.004037656,-0.040607285,0.010917147,0.022903498,-0.015329025,-0.027079025,0.00016697537,0.017309867,-0.049701154,0.0003337749,0.00021243417,-0.0015475337,-0.004251497,-0.03657807,0.016567051,0.012481563,0.01613937,0.025053164,-0.037455942,0.014766285,-0.03855891,-0.03324665,-0.01821025,-0.013044302,-0.033044066,0.04297079,0.030185347,-0.0033820646,-0.022070644,0.030297896,0.011885059,-0.035159964,-0.0326614,0.05699426,0.011187262,-0.02281346,-0.0021609198,-0.045199238,0.013336927,0.016263172,-0.024535444,-0.0037759822,-0.030207857,0.003005029,-0.0075969836,0.0392342,0.007563219,-0.032999046,0.0014589023,0.006561543,-0.015869254,-0.00630831,-0.026673853,-0.009257065,-0.022171937,-0.0038632068,0.0015939598,0.008457975,-0.0061732526,-0.029780176,-0.01696097,-0.0077095316,-0.016477013,-0.016083095,0.0029178045,0.0018021733,0.02069756,-0.006674091,-0.010528857,0.011350456,0.036330465,0.006938578,-0.014034724,0.042475577,-0.036915712,-0.020663796,-0.010292506,0.0022228211,0.0028755988,-0.0065559153,0.054608244,0.044996653,0.004836746,0.011828785,0.0031203907,-0.0018809568,0.00006031864,-0.0067641293,-0.042700674,0.006038195,-0.020618776,0.0043274667,-0.029600099,-0.00131259,0.010962166,-0.027191574,0.0077151586,0.021868058,0.017591238,0.04555939,0.015689177,-0.004333094,-0.0013906701,-0.05843487,-0.007878353,0.019887215,-0.012988028,0.04150767,-0.03225623,-0.023927685,-0.01158118,-0.026088605,0.0667184,-0.028362071,-0.0472251,0.014507425,-0.053347707,0.0003316646,-0.028114466,0.020742578,-0.025683431,-0.021204025,-0.014136016,0.0038069328,-0.011153498,-0.02948755,0.012233958,-0.058614947,-0.018356564,-0.042025387,-0.013832137,0.011176007,0.008559268,-0.0077489233,-0.026448758,-0.07837836,-0.0022805019,0.043308433,-0.040607285,-0.005981921,-0.01983094,0.017017243,0.016251918,0.0013343961,-0.025458336,-0.0043190257,0.009662238,0.010292506,-0.021260299,-0.06653832,-0.028789753,0.049070887,0.013528259,-0.004743894,-0.046414755,-0.015092674,0.028024428,0.013370691,0.00055746385,-0.01935824,0.011271672,0.020269878,0.005258801,0.016263172,0.012481563,0.0029994017,0.040134583,-0.008885657,0.016488267,0.042025387,-0.027146554,0.014529934,-0.0010115242,0.0040067052,-0.012774187,-0.01235776,-0.016623326,0.0070961453,0.026561305,0.0069610877,0.024580462,0.0040095192,-0.00983106,-0.035295025,0.018502876,0.046369735,-0.0052531734,0.025615903,-0.010005509,0.012459053,0.003311722,-0.015227731,0.03212117,0.058930084,0.0056892964,0.0077489233,-0.00069533504,0.007293104,-0.00044210223,0.032458816,-0.031310827,0.036848184,-0.030275386,-0.032503836,-0.020731324,0.009470906,0.011524905,0.016567051,0.01881801,-0.0027208456,0.02309483,0.009082616,-0.022385778,-0.0108721275,-0.002604077,0.04830556,-0.020596266,0.015869254,-0.004586327,0.013854647,0.004195223,-0.0413501,-0.0069104414,-0.00031531,0.04830556,0.039481804,-0.016623326,0.012807951,-0.013449474,0.013663315,-0.008739345,-0.026178643,-0.005165949,0.0086886985,0.017850097,0.021237789,-0.0013435406,0.00362967,0.023184868,-0.041057475,0.011339202,-0.012267722,0.0039673136,-0.035272513,0.008176605,-0.014304839,-0.0038153739,-0.051952112,-0.02361255,-0.046909966,-0.039999526,0.0051687625,0.008553641,0.018165233,-0.008941931,0.03155843,0.032548852,0.016499523,-0.055643685,-0.00039462108,0.027259102,0.023545021,-0.0175012,-0.009020714,-0.008131586,0.016724618,0.045964565,-0.012751678,-0.005970666,0.0028333934,-0.0035959056,0.022802206,0.028857283,-0.024445405,0.027034007,0.011114106,-0.032616384,-0.009279574,-0.044929124,0.007214321,0.027619256,-0.021834293,0.02786686,-0.03223372,-0.026201151,-0.013764609,0.021789275,-0.04186782,-0.018682953,0.019166907,0.04020211,-0.011468631,-0.030905655,-0.012785442,-0.0053235157,-0.030703068,0.03324665,0.05316763,-0.011485513,0.00491553,-0.017861353,-0.008919422,-0.0022537718,-0.017287359,-0.02199186,-0.019898469,0.022689657,0.009454024,0.03374186,0.0047045024,0.039841957,0.010838363,-0.0031935468,-0.012245212,-0.021834293,-0.03005029,0.014147271,0.027214084,0.011232281,-0.0026434688,0.0053460253,0.010123684,-0.004186782,0.009150145,0.0027489825,0.003601533,0.022802206,-0.0064996416,-0.012323995,-0.0067810114,0.004614464,-0.04290326,-0.039684393,0.0075969836,-0.0038153739,-0.0015601953,-0.024895597,-0.0015433131,-0.024377877,-0.006854167,-0.024107762,0.010028019,0.011952587,0.009003832,0.025660923,-0.010934029,0.01581298,0.012380269,0.022520836,-0.008970068,0.035655174,-0.013100576,0.06361207,-0.0048986473,0.020641286,0.005703365,0.0012802324,-0.018806756,-0.018975576,-0.012807951,-0.017985156,-0.024557952,-0.017287359,-0.01745618,0.04447893,0.032098662,0.028564658,-0.01184004,-0.011468631,0.029465042,-0.0129205,-0.011761256,-0.021249045,-0.007191811,0.011873804,-0.028924812,0.010596385,0.011198517,-0.027079025,-0.020810107,-0.027484199,-0.0055204746,0.016319446,0.006381466,0.0075969836,0.01639823,0.0053629074,0.038041193,-0.039076634,0.036195405,0.018390328,-0.023590041,0.0067866384,0.0048170504,-0.028699715,0.022903498,-0.013809628,0.030748088,-0.006184507,-0.03389943,-0.002763051,0.012650385,-0.003956059,0.03275144,0.023882665,-0.023590041,0.03921169,0.011215399,-0.008947559,-0.03446217,0.055328548,-0.02734914,0.018570404,0.007754551,-0.0056048855,-0.013922175,0.006578425,0.038468875,-0.03167098,0.017343633,0.0022467375,-0.009228928,-0.0038660206,0.038468875,0.017557474,0.019977253,0.024940616,-0.02100144,-0.007687022,0.012931754,-0.02117026,-0.0005219409,-0.050196365,0.020359917,0.007861471,0.026921459,-0.009577827,-0.032999046,0.0013006317,-0.0013977042,0.010264369,0.037005752,-0.02316236,0.02579598,0.005610513,-0.0080134105,0.019459533,0.03272893,-0.06608813,0.03597031,-0.0023860156,0.011795021,-0.023364944,0.0026701991,-0.017208574,-0.016859677,0.00939775,0.013123086,0.058614947,-0.008289153,-0.0044653383,0.013055556,-0.029420022,0.024062742,0.002585788,-0.000944699,-0.0042852615,0.013775864,-0.019718394,0.0036493659,-0.032368775,-0.06055077,0.06172127,-0.03858142,0.017625002,0.0015616022,0.006319565,-0.024265328,0.011750001,-0.040112074,-0.030883145,-0.013145595,-0.03603784,-0.03277395,0.014428642,0.043961212,0.014710011,-0.011626199,0.0013695674,0.036825676,0.011896313,0.026516287,-0.017928882,-0.017118536,-0.011333574,-0.01341571,-0.0013871529,0.035745215,0.0026561306,-0.009634101,0.00014851047,0.01745618,-0.011637453,0.030568011,-0.0038097466,0.0010319236,-0.024602972,0.004530053,0.029982762,-0.005351653,-0.00095947087,0.009178282,-0.03810872,-0.000045678622,-0.0021693609,-0.011119733,0.0128529705,0.063792154,0.03808621,-0.048125483,0.0036493659,-0.024107762,0.007912118,0.02313985,0.006218272,-0.04983621,-0.0046566697,0.029465042,-0.012211448,0.011648708,-0.03369684,-0.025053164,-0.006505269,0.006792266,-0.048125483,-0.034214564,0.039504316,0.0086774435,0.004195223,0.02532328,0.010185585,-0.009448397,-0.0026533168,-0.035227492,0.020911401,-0.014766285,0.027551727,-0.018041428,0.027754312,0.020236114,0.034619734,-0.010973421,-0.00080331066,0.012222703,-0.012110154,-0.00001583804,0.018131467,-0.003517122,0.026696363,-0.0025281073,0.004251497,0.0075013177,-0.038491383,0.028317053,-0.005731502,-0.00630831,-0.037208337,-0.0023311484,-0.0071130274,0.037883624,0.0069273235,0.012909245,-0.033606805,-0.0041811545,0.018075194,-0.0069779702,0.017411161,0.032413796,0.01425982,0.01557663,-0.0029825196,0.003359555,0.00883501,0.008125959,-0.012864226,0.013764609,0.002976892,-0.009015087,0.016780892,0.042205464,-0.023038557,-0.050691575,0.0042402423,0.0013871529,0.010894638,-0.015351534,0.016015567,0.036240425,-0.043128356,-0.035092436,0.0035368179,-0.024602972,0.012087645,-0.007692649,-0.0006376542,-0.0060888417,0.031220788,-0.013190614,-0.010185585,0.040427208,-0.03270642,0.03011782,-0.02368008,0.011614944,-0.011997607,-0.001516583,0.008131586,0.0035227493,0.024355367,-0.013460729,-0.021395357,0.019178163,-0.007062381,0.037005752,-0.010078665,-0.04522175,0.010022391,0.02180053,0.0068823043,0.04776533,-0.030275386,0.013944685,0.015126438,0.009696002,-0.005033705,-0.026516287,-0.008514249,0.019425768,-0.032616384,0.02313985,0.0183228,-0.012526582,0.013708334,0.048755754,-0.033426728,0.006544661,-0.005089979,-0.0017051008,-0.03396696,0.022194447,-0.027461689,0.008300408,-0.018120212,0.0014209173,-0.014642483,0.04983621,-0.005666787,-0.031873565,-0.006544661,0.009650983,-0.009650983,0.020213604,0.015148948,-0.017242339,0.021879314,-0.00350024,0.00646025,-0.0060888417,-0.0053910445,0.014349857,0.03005029,0.009262692,-0.0241978,-0.014462406,-0.0001473674,-0.009673492,0.00808094,-0.034102015,-0.010292506,-0.005025264,-0.009712884,-0.026088605,-0.0059425295,0.020044781,0.031400867,-0.028654696,-0.0037816095,0.016026821,0.0076251207,0.036780655,-0.006606562,-0.031310827,0.0010382545,-0.014698756,0.0049802447,0.030095309,-0.020967675,0.020427445,-0.020967675,0.005343212,0.0054276227,0.020438699,0.034034487,0.014822559,-0.0154978465,0.018446602,0.0012598331,-0.0029262456,-0.020708814,0.020123566,0.026381228,-0.016499523,0.0056048855,0.03216619,0.0033089083,-0.00012441819,-0.019684628,-0.054518204,0.05645403,-0.024062742,-0.034664754,0.0326614,0.003908226,0.005070283,-0.02518822,-0.02797941,0.0010677982,-0.015914274,0.013775864,0.0074506714,-0.0012197379,0.004538494,0.020404935,-0.010984675,0.006820403,-0.0012408406,0.04826054,-0.009870451,-0.027686784,-0.029960252,-0.037208337,0.014901343,0.022655893,-0.021395357,-0.0029234318,0.019392004,0.014484915,0.017816333,0.0065671704,0.030590521,-0.015520356,0.00885752,0.004001078,0.039594352,0.048125483,-0.020314896,-0.0064996416,-0.00296001,-0.025255749,0.0036184152,-0.036623087,0.020427445,-0.033179123,-0.009515925,-0.007771433,-0.0014202138,0.0088912845,-0.002680047,0.020089801,0.01397845,0.018975576,-0.05037644,0.015722942,0.020888891,-0.015689177,0.03966188,0.007658885,-0.022183191,-0.0072368304,0.0035508864,0.0187955,-0.0062407814,0.028429601,-0.026583815,0.0086886985,-0.007602611,-0.0009643948,0.0034467797,-0.008204742,-0.0064546224,0.041642725,-0.005970666,0.030410444,-0.017726295,-0.00071256893,-0.0016488268,-0.039144162,-0.0056892964,-0.008148468,-0.0039391764,-0.008007783,0.018424092,0.009538434,0.0062126443,-0.00090952776,0.005542984,0.009003832,-0.00017884566,0.00051068614,0.036825676,-0.056769162,-0.0034917986,0.0041924096,-0.0010635777,0.015745452,0.02685393,0.013404455,0.012470308,-0.013224379,0.009954862,-0.021271555,0.010855245,-0.0018317171,0.0013758981,-0.02149665,0.03016284,0.008756227,-0.024985636,-0.015160203,0.008441092,0.039391767,0.0073550055,0.018761735,0.01966212,0.033449236,0.01075958,0.018480366,-0.004932412,-0.030995693,-0.039099142,0.002131376,0.052312266,-0.0028812264,0.04123755,0.012492818,-0.013021792,0.0046088365,-0.017838843,0.004065793,0.004811423,0.042610638,0.0048142364,0.0005138515,0.018142723,0.01637572,-0.03801868,0.02196935,0.0038744616,-0.017861353,0.020247368,-0.008925049,-0.0580297,-0.0050393324,0.0013428372,-0.010236232,0.014271074,-0.02845211,-0.042700674,0.02203688,0.03279646,0.017264849,-0.035092436,-0.0108833825,-0.016567051]},{"id":"guide-embeds-8","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Image and Thumbnail\nsetImage() adds a large image. setThumbnail() adds a small image (e.g. top-right). Pass a URL string or EmbedMediaOptions (url, width, height, content_type, etc).\n\n```javascript\nembed.setImage('https://example.com/image.png');\nembed.setThumbnail('https://example.com/thumb.png');\n\n// With metadata\nembed.setImage({\n url: 'https://example.com/image.png',\n width: 400,\n height: 200,\n content_type: 'image/png',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.013870051,-0.015462384,-0.020993643,-0.02264883,-0.002566588,-0.019872725,0.044417687,-0.023780225,-0.0177566,-0.02541446,-0.0074535813,-0.0017468513,0.019872725,-0.079909936,-0.026399191,-0.019495593,-0.017746123,-0.0038786908,0.044543397,0.05434881,-0.005075559,0.0022771922,-0.031406656,0.049739428,0.0024002837,-0.03061049,-0.041966334,0.0043684375,0.06599798,0.019359408,-0.024953522,-0.009197813,0.014268135,-0.009286858,-0.04202919,-0.0072650155,0.06251999,0.023926886,-0.01742137,0.028117234,0.02516304,0.001105859,0.025603026,-0.0043684375,-0.012036774,0.0015936417,-0.049613718,-0.021873616,-0.0031558557,0.04601002,0.00801404,-0.0015399528,-0.03593223,0.0023531422,-0.029500049,0.013870051,-0.0008662235,0.0037372664,-0.038006455,-0.0022156464,0.03964069,-0.025938254,0.022208843,-0.0033784679,-0.022942154,0.004096065,-0.03838359,0.033292312,-0.01042349,-0.023319285,0.044627205,-0.027991524,-0.018207062,-0.0016617348,0.007657861,0.03180474,-0.01577666,0.024283066,-0.004245346,-0.046806186,0.0002522393,-0.0011333581,-0.06599798,0.03048478,-0.06155621,0.058832485,-0.024471631,-0.04793758,0.0025534933,0.02011367,-0.033711348,-0.035136066,-0.04626144,-0.011638692,-0.0058245836,0.045842405,-0.016541399,-0.0042898688,0.003134904,0.061514307,0.04613573,-0.008794492,-0.08690781,-0.018751808,0.01934893,-0.08774588,0.006034101,0.077521436,0.042825356,0.006914074,-0.021496484,-0.037503615,-0.025791591,0.0022405267,0.032726616,-0.01258152,0.04142159,0.0541812,0.0080873715,-0.028829593,-0.06155621,-0.03565986,0.0843517,-0.011282512,0.03048478,-0.013042457,-0.02181076,0.010915856,-0.044836722,-0.026902033,0.029500049,-0.008694972,0.00028563113,-0.019212745,0.0038891665,-0.009197813,0.010538725,0.02516304,-0.022271698,-0.005562687,0.053049803,-0.008286413,0.035848428,-0.01872038,0.01318912,0.0059660077,-0.034654178,0.02516304,-0.024178308,-0.02782391,-0.002975147,0.022250747,-0.028242944,0.0045386706,-0.064782776,0.012330099,-0.01318912,-0.05082892,-0.034067526,-0.04106541,-0.012256768,-0.024262113,0.016363308,0.013251975,-0.018259441,0.045716695,0.0016316167,-0.005057226,-0.013859576,-0.0013278165,-0.0065317047,-0.0017822073,0.009883983,-0.034779888,0.01499097,0.006327425,0.020909837,-0.059921976,0.034235142,0.035010356,-0.008401647,0.021747906,-0.04785377,0.015682377,0.036916964,-0.012476761,-0.012015822,0.028326752,0.012864368,-0.018992752,-0.032244727,0.000056757934,-0.004323915,0.0054369764,-0.015252866,0.013157693,0.0027499157,0.028410558,0.044752914,0.019265125,0.05338503,0.06000578,0.048189,-0.008029754,-0.033459928,-0.047141414,0.0031689506,-0.04902707,-0.02373832,0.04274155,-0.0036796492,-0.035701763,0.015650949,-0.031092381,-0.029101966,0.03832073,-0.026063964,-0.02914387,-0.017232805,0.008616403,-0.041400637,-0.0014495985,0.03568081,-0.0553964,-0.03758742,0.0000251871,-0.03046383,-0.006275046,0.0003342457,-0.0034334662,0.025644928,-0.014802404,-0.003527749,-0.0102034975,-0.029730517,0.02386403,-0.014980494,-0.023570707,-0.009815889,-0.019432738,0.0020310092,-0.0010757409,-0.043118678,-0.013430065,-0.021161256,-0.017033763,0.006327425,-0.052086025,-0.038991187,0.043328196,0.0055312593,-0.014446224,0.009438759,0.030296216,0.048566133,-0.055312593,-0.018898468,0.07517484,-0.009339238,-0.0051750797,0.006175525,0.01542048,-0.018647049,-0.021726953,0.030987622,0.0025142087,-0.022732638,0.027844861,0.040290195,-0.033941817,-0.0019314885,-0.036330316,-0.0433701,0.017850881,0.0007195613,-0.005636018,-0.025477314,0.009475424,-0.018248964,0.014624314,0.014550983,-0.031511415,-0.06671034,0.027488682,-0.024995426,-0.008857348,-0.029458145,-0.044669107,0.008632117,-0.014509079,0.0073592984,-0.011607263,0.023801176,-0.007312157,-0.051373664,0.051583182,-0.008679258,0.017075667,0.022963107,-0.0010056834,0.005772204,0.012927223,-0.008364982,0.014268135,-0.0051855557,0.018772759,-0.028138187,-0.021873616,0.02089936,-0.0080664195,0.016038556,-0.018772759,-0.016394736,0.004274155,-0.002163267,0.05024227,0.041128263,-0.0022654068,-0.01542048,0.0024670672,0.051038437,0.008150226,0.019642256,-0.046051923,-0.0017049478,-0.019307029,-0.04169396,-0.006353615,0.017379468,-0.03348088,0.03442371,0.06486659,0.0044941483,0.022376457,0.03517797,0.015430956,0.011240608,-0.039305463,-0.052086025,0.028494366,-0.05032608,-0.021245064,0.018228013,-0.014372894,-0.0047796154,-0.013629107,-0.0638609,0.06587227,0.008454027,-0.03471703,0.030568589,-0.0026896796,-0.019045131,0.047392834,0.02338214,-0.00014723507,-0.0045884307,-0.07974232,-0.034528468,0.0057564904,-0.071948275,-0.0010633008,-0.013775769,0.0037189338,0.0062959976,-0.02794962,-0.018427055,0.007867378,-0.012424381,0.020511752,-0.004111779,0.057910606,-0.0010763956,0.00870021,-0.036707446,0.0240945,0.044375785,0.029060062,-0.014833831,0.011554884,-0.010648722,0.012141533,0.038467392,-0.026881082,0.013534823,-0.00042263587,0.021894567,0.016803294,-0.01608046,0.0049472293,-0.0027132502,0.010978712,-0.04253203,-0.020972691,0.024639245,0.07794047,0.0015739994,0.014655742,-0.015032873,0.017536607,-0.0058298213,-0.048272807,0.027027743,-0.02673442,0.02916482,-0.021831712,0.026336337,-0.0037555993,0.004750807,-0.010680149,-0.022145988,0.0025548027,0.03865596,0.0036377457,-0.032663763,0.030275263,0.005573163,-0.06109527,0.013063409,0.03132285,-0.050409883,-0.014928115,-0.012057726,-0.030128602,0.017987069,-0.037880745,0.02614777,0.008946393,0.039074995,-0.031280946,-0.038488343,0.053175513,0.022585975,0.028494366,0.031134285,-0.0066521773,0.018039448,-0.03959879,0.003938927,0.02998194,-0.0367284,0.018395627,0.030757153,0.001402457,-0.030107649,-0.0060026734,-0.02457639,0.025121136,-0.07144543,-0.019537497,0.0397664,0.0029306246,-0.0053453124,0.0028572935,0.04672238,-0.011408222,0.020752698,-0.04756045,0.021873616,-0.029039111,-0.0088783,0.011125374,-0.003140142,0.032600906,0.0043736757,-0.020689843,-0.017358515,0.018238489,0.002290287,-0.058036316,0.030736202,-0.011177753,0.024764955,0.013042457,-0.023172624,-0.052127928,0.00076539326,-0.07312157,-0.0192756,0.006798839,0.027865814,-0.011753926,0.0014613838,-0.022376457,-0.07014643,0.075091034,0.011837733,0.01542048,0.07861093,-0.060550526,-0.06545323,-0.0050912728,0.0050493693,-0.0070345467,0.027970571,0.005562687,-0.017662317,-0.03857215,0.0020074386,0.020281283,0.045926213,0.033187553,-0.081753686,0.012214864,0.005971246,-0.055438302,0.004229632,0.018584194,0.0071916846,0.01734804,-0.030275263,-0.0073540607,0.0021671955,0.0034858456,0.016667109,0.0108006215,-0.010596342,0.040751133,0.015650949,-0.052379347,-0.034298,0.012193913,-0.002515518,-0.042133946,0.040394954,-0.017107096,-0.018584194,-0.009255431,0.043160584,-0.024744004,-0.032831375,-0.029604807,0.0033129938,-0.001169369,-0.050870825,0.006081242,-0.043453906,0.03771313,-0.007233588,-0.038865477,-0.00824451,-0.0067045568,-0.007694526,-0.0052588866,-0.02782391,-0.02323548,-0.02998194,-0.008459264,0.0015373338,0.020731745,0.04012258,-0.013231023,0.037168387,-0.01752613,0.007490247,0.03155332,0.00831784,0.037671227,-0.008658307,0.0017049478,0.026168723,-0.006353615,-0.019851772,0.025498267,-0.018070875,0.021192685,0.02084698,-0.0075059608,0.012644375,-0.0009415188,-0.029081015,0.0024421872,0.024241162,0.06587227,-0.036770303,0.015577618,-0.009779224,0.012246292,-0.030065745,0.002114816,0.0038394062,-0.03188855,-0.01747375,-0.011240608,-0.006018387,0.02066889,-0.011481553,0.0038105976,0.01993558,0.041882526,0.051206052,0.04253203,0.018783234,-0.008689734,0.06432184,0.011649167,0.02264883,-0.026357288,-0.016709013,0.034528468,-0.0030301453,-0.017463274,-0.027195357,0.02929053,0.017568033,0.05095463,0.020784125,0.0021475533,-0.044752914,-0.023088817,0.0008171178,-0.03350183,0.016289977,-0.0128957955,-0.0003355552,0.0024814715,0.040604472,0.0055836383,0.017945165,0.0037844079,-0.0023767129,-0.0037791699,0.0074169156,0.025582073,-0.062352378,0.020176524,0.021747906,-0.033522785,0.0123824775,0.011198705,0.032852326,0.03048478,0.0059136283,-0.0022811205,0.005054607,-0.017379468,-0.010481108,-0.055354495,0.014372894,-0.002818009,0.016824247,0.01608046,0.004829376,0.035848428,-0.022083133,0.009768749,-0.03446561,0.010303018,-0.011041567,-0.010407777,-0.046429053,-0.020134622,-0.04179872,-0.016845198,0.006353615,-0.00613886,-0.004169396,0.0180604,-0.033837058,0.0099363625,-0.016289977,-0.002539089,-0.021580292,0.003622032,0.011230133,0.022292651,-0.04890136,-0.032559004,-0.032559004,-0.022145988,-0.026210627,-0.026231578,0.011732974,-0.012864368,0.005004847,-0.016803294,0.023549754,-0.025665881,0.0019157747,0.03446561,-0.01602808,0.0019026798,-0.02929053,-0.016551875,0.009208289,-0.045758598,-0.01874133,0.042092044,0.0039886874,-0.017714696,-0.02384308,0.025582073,0.0140062375,-0.04542337,-0.019537497,0.055857338,0.015703328,-0.016143315,0.023570707,-0.026168723,-0.008543071,0.0029175298,-0.017641364,-0.01729566,0.01590237,0.0005846845,-0.024073549,0.008841634,0.045088142,-0.007814999,0.01727471,-0.0053688833,0.0123615265,-0.013765293,0.0028730072,-0.045800503,-0.0043998654,-0.0018974419,0.0025364698,0.039116897,-0.0067307465,-0.014184328,-0.02866198,0.011596788,0.005939818,-0.0030956194,0.0023361188,-0.011722499,0.017337564,0.011439649,-0.0096273245,-0.023151672,0.018919421,0.028117234,-0.011146326,0.020941263,-0.04542337,0.014802404,0.012214864,0.016394736,0.010873953,0.018992752,0.021957424,0.039682593,0.029625759,0.0029515764,0.0068721706,-0.03563891,0.012864368,-0.028117234,-0.021643147,0.0031008574,-0.0150747765,-0.019170841,-0.028368656,-0.0012728182,0.026776323,-0.019307029,-0.039556883,-0.0037975027,0.0075792917,0.039577834,-0.017966116,-0.012832941,-0.021706002,-0.057156343,-0.011732974,-0.005468404,-0.0096273245,0.0028415797,-0.0361208,-0.009140196,-0.0046355724,-0.010659197,0.051164147,0.00018545563,-0.03806931,0.00418511,-0.036665544,0.018269917,-0.022669781,0.01920227,0.020166049,-0.00095985155,0.045381468,-0.009061627,-0.036812205,-0.04395675,0.006992643,-0.058371544,-0.03880262,-0.020857457,0.030673346,-0.010234925,-0.038341682,0.015064301,-0.022481216,-0.0662913,-0.0008688424,0.062017146,-0.019568924,0.007841188,-0.021318395,0.0054841177,-0.03046383,0.03314565,-0.016111888,-0.0045570033,0.020710794,-0.0009670537,-0.05443262,0.0005571853,-0.020092718,0.01922322,-0.038593102,0.014603362,0.003310375,-0.016709013,0.009810652,0.026650613,0.009103531,0.0006534324,0.017777551,0.020459373,0.012675802,0.027844861,-0.051499374,0.009805414,0.060760044,0.004748188,-0.00418511,0.016342357,0.010140642,0.03695887,-0.0056569697,-0.0060707666,-0.014446224,-0.014341465,-0.007993088,-0.01169107,-0.0066050356,0.0069612153,-0.013870051,0.03360659,0.030631443,-0.019034656,-0.00674646,0.03708458,0.0033365644,-0.024911618,0.02102507,-0.021286966,-0.0048660412,-0.019254649,0.015703328,-0.010287304,0.016237598,-0.028012475,-0.008281175,0.015525239,-0.028515317,0.009171624,-0.014624314,0.018552765,-0.000013289214,-0.0081292745,-0.004161539,0.019684158,0.01752613,0.03589033,0.020606035,-0.010465394,0.0028284849,-0.0036298889,0.032621857,-0.0039991634,0.00039742832,0.02878769,-0.0319095,0.018762283,0.019788917,0.014833831,-0.021957424,-0.0067569357,-0.03471703,0.012162484,0.0319095,0.0047167605,-0.0071916846,0.026126819,-0.018804187,-0.016457591,-0.002964671,-0.046051923,0.0096378,0.028263897,0.020145098,0.020794602,-0.00707645,0.015378577,-0.035094164,-0.047057606,-0.00928162,-0.02125554,0.013576727,-0.00052837667,-0.0037582181,-0.023172624,-0.024681149,-0.038027406,-0.010067311,-0.038844526,0.00042034427,-0.0013448398,0.05975436,0.0102454005,-0.024178308,0.023172624,0.008899251,-0.011942492,-0.0005866487,0.00593458,0.007469295,-0.0025731355,-0.009166386,-0.009433521,0.019778442,-0.005065083,0.037901696,0.023193575,-0.020909837,0.017075667,0.000943483,0.046177633,0.0075216745,-0.00090812694,-0.008684496,0.0048477086,-0.0056726835,0.022313602,-0.012832941,-0.014037665,0.02084698,-0.028347703,0.016185218,0.0020480326,-0.02660871,0.0107377665,-0.03869786,-0.01577666,0.020983167,0.02084698,0.002896578,-0.02054318,-0.016803294,0.010444442,0.024806859,-0.012015822,-0.0012688898,0.025728736,-0.012015822,0.015745232,-0.0040332098,0.003852501,0.0022130276,-0.0015988796,0.0044496255,0.032726616,0.0247021,0.013566251,-0.0030196693,0.036225557,0.020249857,0.04781187,0.017767075,0.0057355384,-0.028850544,-0.010853001,0.036435075,-0.011680595,0.02059556,0.06880551,-0.052546963,-0.005609828,-0.02127649,-0.019830821,0.017431848,-0.012413906,-0.020689843,0.0035120354,-0.02145458,-0.012843416,-0.0039860685,-0.02939529,-0.020857457,0.019191794,0.007642147,-0.0058141076,-0.02125554,-0.014477652,-0.018709904,-0.011753926,-0.025246846,-0.024031645,0.032496147,0.023905935,0.022816444,-0.024995426,-0.004394627,0.01704424,0.018887993,0.0031558557,0.044291977,-0.009480662,0.0009513399,-0.013608155,-0.0023675465,0.021601243,-0.0028520555,-0.018699428,0.0331247,-0.0063221874,0.00013495867,0.024157355,0.016237598,-0.016918529,0.012036774,0.0049577053,0.021999326,0.016499495,-0.029772421,0.026902033,-0.011072994,-0.039368317,-0.009653514,0.021538388,0.0043684375,0.024115453,0.012571043,-0.022942154,-0.019904152,-0.029206725,-0.0234869,0.051289856,-0.0070974017,-0.007778333,0.00037025652,0.013786244,-0.014414797,0.003697982,-0.058706775,0.044417687,-0.00026647994,-0.0156090455,-0.020228904,0.010135404,-0.009014485,0.022879299,0.02264883,0.014571935,-0.018280393,-0.024869714,0.019066082,-0.011596788,-0.012612947,0.02807533,0.028117234,-0.014372894,0.03107143,0.0017376848,-0.0018725618,-0.0027499157,0.03228663,-0.019212745,0.023926886,0.028934352,0.017892785,-0.036099847,-0.008186892,-0.004596288,-0.012843416,-0.0017638745,0.031218091,-0.026671564,0.013073885,0.03107143,0.0397245,-0.013566251,0.011554884,-0.014875735,-0.021423154,0.017358515,0.0073331087,-0.03201426,-0.03890738,0.032936133,0.007741668,0.0031741885,0.008773541,-0.036644593,-0.0063693286,0.010413014,0.048105195,0.03325041,-0.023193575,0.04638715,0.017976593,-0.010543963,0.020637464,0.013073885,-0.03576462,0.0007529531,-0.013870051,0.030254312,0.000043663098,-0.007642147,0.007856903,0.010303018,0.006091718,0.00794071,0.060676236,-0.019568924,-0.004172015,-0.0023086197,-0.056108758,0.030778104,0.032831375,0.011450126,0.014131948,-0.006893122,0.00091140065,-0.044836722,0.006343139,-0.06239428,0.0016067366,-0.019893676,-0.018605145,-0.014802404,0.0035984612,-0.018269917,0.0020336283,0.003134904,-0.025477314,-0.014310038,0.00852212,0.0077940472,0.03517797,0.027530586,-0.0009519947,-0.0145195555,-0.009789701,0.035974137,0.017672792,0.017128047,0.02338214,-0.013430065,-0.004030591,-0.027928669,-0.011240608,0.017976593,0.0059188665,-0.0066364636,-0.003061573,-0.016195694,-0.004266298,-0.0015085252,-0.016153792,0.007139305,-0.019118462,0.015200486,0.037168387,-0.03188855,-0.0026975365,0.0038079787,-0.007060736,0.008721162,0.016771868,-0.03188855,0.0035041785,0.026881082,0.038048357,-0.02589635,0.0054107867,-0.018217538,-0.0031113334,0.012413906,0.0076054814,0.016195694,-0.01648902,-0.00900401,-0.015818562,-0.0023007628,-0.014037665,0.014299562,0.0034884645,-0.0035198922,-0.008061182,-0.0041379686,0.030799057,0.0034177525,0.013398637,0.0072283503,0.022565024,-0.012288195,0.0023086197,-0.027069647,-0.009009248,0.022418361,0.05858106,-0.00289134,0.027153455,0.04923659,0.01674044,0.008213081,-0.015064301,0.028201042,0.016499495,0.015514763,0.030421926,-0.015430956,0.0070502604,-0.019726062,0.002539089,-0.009354952,-0.0022261222,-0.009501614,0.018353723,-0.0005526021,-0.019506069,-0.018804187,0.021297444,-0.03974545,0.014854783,0.014571935,-0.041652057,-0.011586312,0.025623977,-0.020805078,-0.01156536,0.024890667,0.032600906,0.032559004,0.017442323,-0.0043082014,0.005395073,-0.016625205,0.03700077,-0.015766183,-0.02516304,-0.006034101,0.024304017,0.033962768,0.03132285,-0.018510861,-0.0017128047,-0.0016774486,0.001935417,0.00093955453,-0.0101825455,0.044417687,-0.049320396,-0.02264883,0.015944274,-0.025938254,0.013346258,0.0088783,-0.033459928,0.012539616,0.048189,-0.016310928,-0.0028022951,0.0494042,0.024869714,0.009711131,-0.0048660412,-0.010371111,0.019265125,0.028012475,0.009140196,0.009847318,0.0020781506,-0.004596288,-0.0063117114,-0.006432184,-0.0030118125,0.028620075,-0.024995426,-0.008228796,0.0027630106,0.030861912,-0.013178644,0.028724834,-0.035576053,-0.017620413,0.023067866,0.003459656,-0.025728736,-0.017987069,0.0044731963,-0.007841188,-0.024199259,0.023780225,-0.009313048,0.0022261222,-0.015221438,0.0043920083,-0.0517927,0.01072729,0.0011739521,-0.0013310902,-0.02011367,0.05711444,0.0032789472,0.0059869597,0.0010299089,-0.0067150323,-0.0124034295,-0.0046460484,-0.012497713,-0.018626096,0.022292651,0.004805805,-0.0081292745,0.0074431053,0.028829593,-0.059000097,0.016237598,0.0016931625,-0.016908053,-0.008469741,-0.013891003,-0.003938927,0.03817407,0.000902889,-0.026126819,-0.0009546136,-0.00999398,-0.024660198,-0.014341465,-0.027844861,-0.025477314,0.018217538,-0.0030065747,0.009973028,0.0064793252,0.024345921,-0.0051017487,-0.002886102,0.002888721,0.0009906244,-0.020564131,-0.0003208235,0.007338347,0.017033763,0.016761392,-0.0023112388,-0.022376457,0.024115453,-0.012372002,-0.011177753,0.026210627,0.012979602,-0.018228013,-0.0018241107,-0.007364536,0.009512089,0.033878963,0.000705157,-0.014341465,0.037021723,-0.027027743,0.013388162,-0.0046041445,0.007904043,0.00662075,0.04274155,0.014257658,-0.007401202,-0.025393508,-0.022439312,0.01138727,-0.025833495,-0.025938254,0.057784896,0.015525239,0.006489801,0.007909281,-0.063190445,-0.002880864,0.008584975,0.017578509,-0.012476761,-0.0041536824,-0.0017219711,0.025456363,-0.007312157,0.00043114752,0.030212408,0.033941817,0.005070321,-0.04772806,-0.0076683364,-0.032957084,0.036476977,0.011753926,0.008323078,0.0023073102,-0.010041121,0.025582073,0.012780561,-0.025854446,-0.0088259205,-0.021496484,0.018322296,0.021014595,0.008810206,0.024723053,-0.018961323,0.022565024,-0.035303682,-0.017128047,0.009962552,0.016572826,0.030882863,-0.029500049,-0.023926886,-0.015525239,-0.019139415,0.00046355723,-0.01650997,0.00077848806,0.027174406,0.0065683704,-0.025330653,0.0029830039,-0.025938254,-0.034235142,0.03325041,-0.010098739,-0.018500386,-0.02325643,-0.008946393,-0.026357288,-0.0026071821,-0.000400702,-0.018751808,-0.005950294,-0.010035883,0.035827473,0.006584084,-0.009292097,0.0150747765,0.022418361,-0.03626746,0.02118221,-0.008904489,-0.008778779,0.024220211,0.0012983531,0.010706339,0.00662075,-0.012141533,-0.017431848,-0.011114898,0.022355506,0.01493859,0.015305245,0.003056335,0.019107986,0.011973919,0.004536052,0.015106204,-0.03999687,0.010413014,-0.0014312657,0.06277141,0.02662966,0.012508188,0.003860358,0.002103031,-0.03348088,0.026168723,-0.0099573145,-0.032579955,0.007731192,0.0023452854,-0.020375567,-0.0080664195,0.001529477,-0.014142424,-0.010313494,0.019024178,0.04676428,-0.009224003,0.014676694,-0.023926886,-0.02264883,0.03723124,0.02457639,0.045213852,-0.010821573,-0.0033548973,0.0022012421,0.04395675,-0.0113348905,0.024262113,0.0124034295,0.017065192,0.014226231,-0.020260332,-0.022187892,0.044752914,0.027991524,0.016111888,0.006023625,0.036686495,-0.0123824775,-0.06331616,0.0075321505,0.018290868,-0.027761055,0.017033763,-0.017505178,-0.012864368,-0.009988742,-0.0010849072,-0.030317167,-0.0005954877,0.021894567,-0.06687795,0.010570153,0.02168505,-0.0385512,-0.022816444,-0.0074431053,-0.024492584]},{"id":"guide-embeds-9","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Video and Audio\nsetVideo() and setAudio() add video/audio to embeds (Fluxer supports these). Pass URL or EmbedMediaOptions. Include a title when using video. See Embed Media guide for full examples.\n\n```javascript\nembed.setVideo('https://example.com/video.mp4');\nembed.setAudio({\n url: 'https://example.com/audio.mp3',\n duration: 120,\n content_type: 'audio/mpeg',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.062486246,0.0033307478,-0.03719108,-0.03326935,0.0052208044,-0.032288916,0.0058281277,-0.01508777,0.01258222,-0.01650395,0.0028677657,-0.003973476,0.024292944,-0.042485416,-0.038411174,0.008894703,-0.02958728,0.007881589,0.033334713,0.04322619,-0.030131966,-0.008110357,-0.040088803,0.069893956,-0.034162633,-0.056865096,-0.019957252,0.0922914,0.02448903,-0.0137914205,0.042158607,-0.016569313,0.01726651,0.013442822,-0.04662502,-0.013933038,0.042093243,0.0014488617,-0.025796274,0.037822913,0.03276824,0.015806753,-0.019826528,-0.009793433,0.011972173,0.022702465,-0.0461457,-0.007434948,-0.021351645,0.067235895,0.021547733,0.01989189,-0.03527379,-0.031243123,0.003570409,0.02775714,-0.02732139,0.0050356113,-0.050764628,-0.036559246,0.026820282,-0.017647788,0.0190095,0.02424937,-0.014619341,-0.016373226,-0.06453426,0.011950386,-0.0039979867,0.012451495,0.057344418,-0.021634882,-0.00046638638,-0.004346585,0.00048136522,0.04453343,-0.029696217,0.020251382,-0.0137914205,-0.023225361,0.03268109,0.008404487,-0.07093976,0.006530771,-0.077214524,0.07011183,-0.034402296,0.017658683,-0.013388353,-0.023922559,-0.055122107,-0.036472097,-0.091594204,0.018650008,0.012974393,0.039478756,0.0025858912,-0.0057954467,0.037387166,0.065710776,0.044293772,-0.04137426,-0.05390201,-0.033073265,0.038062576,-0.06361919,0.027539266,0.043901596,-0.008932832,-0.022833189,-0.017963706,-0.016220715,-0.012233621,0.0023326129,0.040655278,-0.0111279115,0.034838043,0.0058335746,-0.0062257475,-0.021525946,-0.087062426,-0.031896744,0.0563422,-0.013126904,0.04762724,-0.030240903,-0.0047605457,0.0042621586,-0.06396779,-0.031155972,0.008954619,-0.037931852,0.014183593,0.0061985133,-0.02203795,0.009243302,0.0043765428,0.028868297,0.007010094,-0.0013399248,0.047278643,-0.025926998,0.0559936,0.0021610372,0.0039380714,-0.015621562,-0.037866488,0.008829341,-0.015806753,-0.018693583,-0.028040376,-0.0073151174,-0.0357749,0.025382314,-0.059566732,-0.024794053,-0.017658683,-0.026798494,-0.018399455,-0.014902577,0.017658683,-0.008257423,0.027473902,-0.013105117,-0.006236641,0.009875136,0.005926171,-0.01228809,-0.03601456,0.048847336,0.0070209876,-0.004915781,-0.0281711,0.0014692873,0.025033714,-0.046668597,-0.0002745552,-0.071244776,0.02716888,0.03309505,-0.01700506,0.019739378,-0.009134364,0.019815635,0.006040555,0.037408955,-0.03810615,-0.0131813735,0.006710517,-0.024445456,-0.023944346,-0.007723631,-0.028192887,0.038650837,-0.0064817495,0.016700037,0.021863649,0.0031700658,0.048368014,-0.015599774,0.028323611,0.037910067,0.02059998,-0.034053694,-0.031047035,-0.0024292944,-0.013693376,0.018955033,-0.021471476,0.065972224,-0.0036384948,0.03344365,0.027582841,-0.015392793,-0.032659303,0.06510073,-0.013813208,0.007870696,-0.023116425,0.0012595836,-0.062224794,0.019554185,0.01809443,-0.005751872,-0.0035132172,-0.0003147257,-0.04348764,-0.0039761993,-0.020109763,0.037648614,0.026144871,-0.032223556,-0.008943725,-0.003311684,0.018617328,0.013475503,-0.02858506,-0.0035840261,-0.008644149,0.0014597554,-0.025011927,-0.033073265,-0.016841656,-0.001196945,-0.015469049,0.0065525584,-0.0019063969,-0.060743254,-0.023094637,0.05425061,0.06388064,-0.003807347,0.05943601,0.0084480615,0.048934486,-0.05943601,-0.027735353,0.04897806,-0.020011721,-0.010703057,0.0064490684,-0.0054141674,-0.007799887,-0.0181489,0.0061168107,-0.016928805,-0.04346585,0.006035108,0.022637103,-0.03359616,-0.006901157,-0.019630441,0.00086877233,0.031047035,-0.003537728,-0.008856575,0.042027883,0.013747845,-0.0025995085,0.043356914,-0.024227582,-0.041396048,-0.0461457,0.037931852,-0.016765399,-0.0056701694,-0.014216274,-0.011939492,0.00031285334,-0.005855362,-0.023508597,0.0065144305,0.04128711,-0.04714792,-0.023421448,0.067061596,0.033814035,-0.0032245342,0.042245757,0.032724664,0.016700037,0.001035582,0.00249738,0.03187496,0.022920338,0.029151533,-0.013148692,-0.011040762,0.06374992,-0.020077083,0.020839643,-0.012157366,-0.005746425,0.004185903,-0.019020395,0.038825136,0.06771522,0.042877592,-0.01620982,-0.011122464,0.048847336,0.0055830195,0.016231608,-0.09534163,-0.0093631325,-0.047322217,-0.024859415,-0.020284064,0.0072715427,0.0009974542,0.030698437,0.013824102,0.014020188,0.036842484,0.0059425114,-0.03401012,0.014041975,-0.020676237,-0.032049257,0.004014327,-0.032877177,-0.02590521,-0.027343178,0.007434948,-0.029456556,0.012320771,-0.040589914,0.0054795295,0.006503537,-0.00310198,-0.031068822,-0.007004647,-0.028040376,-0.012222728,0.052376892,-0.02675492,-0.010953612,-0.07355424,-0.0132140545,-0.03233249,-0.037300017,0.020414788,-0.015207601,0.045187052,-0.00090145343,-0.026449896,0.015741391,0.016732719,-0.018257836,-0.0229857,0.031722445,0.028018588,0.007135371,0.032746453,-0.03459838,0.021449689,0.040001653,0.011187826,-0.032790028,0.007080903,-0.017070422,0.019902784,0.0038046236,-0.061745472,-0.0217765,-0.023966134,0.023247149,0.031352058,0.014750065,0.025948785,-0.033138625,-0.018704478,-0.029325832,-0.03320399,0.06592865,0.042267542,0.028367186,0.02525159,-0.0059806397,-0.023334298,-0.0099404985,-0.0116889365,-0.003023001,0.01997904,0.024380093,-0.0081266975,0.05690867,0.010256415,-0.012691157,-0.014739172,0.0047360347,0.0014148189,0.03651567,0.014346998,-0.013257629,0.025861636,0.004085136,-0.04832444,0.031112397,0.008208401,-0.008927384,-0.022942126,-0.018366773,-0.027953226,0.031809594,-0.046581447,0.021101091,-0.011743405,0.044271983,-0.03320399,-0.06026393,0.0107902065,0.055383556,0.015458155,0.0050900797,0.0055830195,0.005811787,-0.037234657,-0.013736951,0.014434149,-0.05974103,0.04281223,0.034554806,0.011073443,-0.055078533,-0.0026471682,-0.040154167,0.034990553,-0.030436989,-0.04588425,0.009395814,0.005637488,0.0004408543,0.0027452116,0.03470732,0.018813414,0.02623202,0.004785056,0.032463215,-0.01688523,0.0024837628,0.021994373,-0.033530798,-0.009123471,0.012647582,-0.0046134805,-0.011885023,0.02156952,-0.0035350046,-0.054424908,0.018584646,0.040306676,0.011018975,0.012331665,-0.044402707,-0.08993836,0.0056483815,-0.0706783,-0.0005103016,0.005593913,0.026166659,0.018758945,-0.040437404,0.021046622,-0.053291965,0.069937535,0.03936982,-0.034075484,0.009733518,-0.07250845,-0.035709538,-0.022898551,0.0035813027,-0.00860602,0.0019649505,-0.005915277,-0.058564514,-0.014412361,0.01859554,0.025970573,0.034249783,0.006563452,-0.038541898,0.046537872,0.03435872,-0.0056701694,-0.012821881,-0.004662502,-0.010496077,0.044751305,0.004855865,-0.02381362,0.0037910065,0.032223556,0.01029999,0.011383913,-0.014041975,0.018246941,0.0027111687,-0.040415615,-0.014216274,0.03963127,0.009259642,0.013519078,0.016863443,-0.0033171307,-0.0127892,-0.035992775,0.0066015804,-0.035143066,-0.018519284,0.0043520317,-0.015360112,-0.0029930433,-0.05259477,0.03736538,-0.043531213,0.033988334,0.0073532453,-0.021079304,-0.020534618,0.0402631,-0.030066604,0.0146411285,-0.023138212,0.002378911,-0.0017634172,0.02507729,-0.026123084,0.0024238476,0.010959059,-0.08497083,0.01709221,-0.028824722,0.020425681,0.041918945,-0.0030801927,-0.00791427,-0.033073265,-0.012898137,0.018911457,-0.034641955,0.0149788335,0.029478343,-0.012113791,-0.003902667,0.017375447,-0.02027317,-0.0013154139,-0.008480743,-0.042332906,-0.0068739224,0.005713744,0.05533998,-0.005354252,0.0049348446,-0.023987921,0.015338325,-0.03695142,0.012124685,0.0032653855,-0.04405411,0.012691157,-0.015305644,0.002506912,0.015349219,-0.015240282,0.01833409,-0.014957045,0.011852342,0.038890496,0.026362747,-0.00917794,-0.016079096,0.001428436,-0.0075384383,0.0011247742,-0.031286698,-0.009412154,0.017462596,-0.018421242,-0.02198348,0.0016667356,0.0031755127,0.019543292,0.026515258,0.007887037,0.020262277,-0.038716197,-0.005071016,0.0019785676,-0.016231608,0.0026321895,-0.03427157,-0.031286698,-0.0063510253,0.0015428198,0.0052425917,0.028367186,0.012353452,0.01985921,0.008251975,0.0013637546,-0.00018263963,-0.032833602,0.02766999,0.008426274,-0.028802935,0.019870102,0.010817441,0.036428522,0.021057516,0.031025248,-0.008529765,0.013431928,-0.041679285,-0.01942346,0.002331251,-0.0010137947,-0.00948841,0.028911872,-0.011231401,0.03621065,0.021144666,-0.017822089,0.0014965216,-0.01664557,0.002128356,-0.0066397083,-0.007963292,-0.018867882,-0.022593526,-0.019401673,-0.00041838604,0.022419227,-0.031199548,-0.023421448,0.009962286,-0.020033509,-0.011623574,-0.019750273,0.009679049,-0.0062638754,0.003003937,-0.00039489652,0.023791833,-0.024053283,0.00900364,-0.013388353,0.00057294033,-0.067323044,-0.033334713,0.012702051,-0.01859554,0.008823894,-0.033639736,0.025186228,0.008507977,0.0030420648,0.030284477,-0.042027883,0.015436368,-0.053945586,-0.01208111,0.0110952305,-0.05407631,-0.016482163,0.027887864,0.0064381748,-0.01809443,-0.035600603,0.017669575,0.015196707,-0.00044425856,-0.021547733,0.061004702,0.003962582,-0.03592741,0.01868269,-0.057954468,0.0081757195,0.0026934666,-0.007946952,-0.02675492,0.0052289744,-0.027256029,-0.014837215,-0.0056538284,0.04806299,-0.016329652,-0.0050900797,-0.007990527,0.0045617353,-0.022419227,-0.00769095,-0.020077083,-0.006421834,-0.025534825,0.018944139,0.02884651,-0.0063074506,0.009858795,-0.03636316,0.0015673307,-0.030240903,-0.030436989,0.009804327,-0.0010260501,0.0068739224,0.0010512418,0.0066723893,-0.012516857,0.0011274976,0.03435872,-0.035905626,0.03592741,-0.03651567,0.006857582,-0.0028841062,-0.024292944,-0.0056102537,0.023116425,0.057300843,0.014096444,0.020763386,0.006677836,0.008823894,0.011253188,-0.028018588,-0.0047687157,-0.029805154,0.0046652257,-0.0009926881,0.009531985,-0.05682152,0.008709511,0.028323611,-0.008355466,-0.015458155,0.0017743108,-0.0072769895,0.0191838,-0.0054822527,-0.022234036,-0.024336519,-0.049936704,-0.009597347,0.0005222166,-0.010185607,0.013889464,-0.044097684,-0.0005719191,-0.016068203,-0.008311891,0.045361355,-0.018606434,-0.045927826,-0.009798881,-0.016340544,0.016416801,-0.015469049,0.023900772,0.010643141,-0.017789407,0.03893407,-0.010136585,-0.012800094,-0.033160415,-0.043422274,-0.044271983,-0.0089873,-0.040306676,0.028149312,-0.037321806,-0.01228809,0.0076038004,-0.011351232,-0.062355522,0.008791213,0.026275596,0.00044051386,-0.010087564,-0.022462802,0.024619754,-0.01700506,0.019761166,-0.01792013,0.0006560048,-0.0013637546,0.025839848,-0.04906521,-0.010692163,-0.014238061,0.030001242,0.008780319,0.041657496,-0.028127525,0.00978254,0.007042775,0.043269765,0.038520113,0.01968491,0.012113791,0.030371627,0.009079896,0.004763269,-0.023639321,0.024140432,0.051679697,0.0042730523,0.01876984,0.027561054,0.012015748,0.02740854,-0.015676029,0.007712737,-0.03401012,0.017277403,-0.002895,-0.01818158,-0.014717384,0.04623285,-0.00037957725,0.012233621,0.0067704325,-0.003338918,-0.0017566086,0.013802314,0.00827921,-0.00998952,0.017669575,0.021340752,0.002124271,-0.033705097,0.020992154,0.003306237,-0.021852756,0.012015748,-0.0019404397,0.02658062,-0.02339966,0.006296557,-0.015850328,-0.015065983,-0.004047008,-0.021732925,-0.027103517,0.011307657,-0.0042730523,0.038977645,0.04181001,0.013889464,0.012560433,0.016253395,-0.00379373,-0.008393593,0.010071223,0.025360527,-0.014662916,0.0153819,0.014129125,0.029652642,-0.020175127,-0.028563272,-0.018127112,-0.004139605,0.03960948,0.054947805,-0.04540493,0.022179566,-0.008807554,-0.006852135,-0.021972585,-0.04488203,0.008290104,0.045274206,-0.015458155,0.057213694,0.004014327,0.013246736,0.009597347,-0.017843876,0.009482963,-0.016035521,0.002535508,-0.015959267,-0.030393414,-0.014957045,-0.025142653,-0.026406322,0.018562859,-0.013638908,0.007936058,0.014390574,-0.0034914298,-0.01169983,-0.018214261,0.05359699,0.0030829161,-0.030328052,-0.030240903,-0.019935464,-0.01830141,-0.0006025576,-0.033160415,-0.014630235,-0.017222935,-0.00039625823,0.05050318,-0.010811994,-0.0049457382,0.031700656,0.0034315144,-0.02248459,0.012146472,-0.0056592757,-0.011144252,0.0075602257,-0.026449896,0.032310706,-0.012092004,-0.022963913,0.03459838,-0.0076255878,0.035252,-0.016623782,-0.030436989,-0.0021174622,-0.0037065803,-0.03233249,0.017996388,0.043596573,0.015033302,-0.015207601,-0.013366566,0.011209614,0.0057082972,0.019575974,0.034467656,0.025229802,-0.013148692,0.033639736,0.012636689,-0.00012374559,0.006459962,0.0021882714,0.0076637156,0.0034424083,0.0060133208,0.020589087,-0.0026703174,0.018911457,0.036341373,0.031722445,0.0016272459,0.016307864,-0.022593526,-0.0071190307,0.0131813735,-0.009766199,0.0137914205,0.024031496,-0.022637103,0.025316952,-0.03244143,-0.003954412,0.021210028,-0.0025954233,-0.0059806397,0.049675256,-0.052638344,-0.011471063,-0.019750273,-0.024946565,-0.031722445,-0.012157366,0.0010233267,0.011351232,-0.009335898,0.000979071,0.009226961,-0.023007488,-0.026319172,-0.021384327,0.0071244775,0.012233621,0.025839848,-0.0023829963,-0.0034614722,-0.01317048,0.029064383,-0.015196707,0.020926792,-0.0155235175,-0.016438589,-0.023094637,0.0071190307,0.013235842,-0.00739682,-0.027452115,0.011340339,-0.01650395,0.0119939605,-0.019586867,-0.015708711,-0.007135371,0.0049457382,0.011427488,-0.018290516,0.007195287,-0.008023208,0.023094637,-0.018606434,-0.045753527,-0.0067704325,0.014357892,0.03660282,-0.0020166957,0.030480564,0.012723838,-0.023922559,0.0017892896,-0.0033225776,0.02590521,-0.012135578,0.004052455,-0.0042158607,0.018911457,-0.02265889,0.011569106,-0.03470732,0.040589914,0.02893366,-0.029064383,-0.012309877,0.022201354,-0.021101091,0.0021964416,-0.009662709,0.02065445,-0.019325418,-0.0059316177,0.007434948,-0.023530385,-0.0022808677,0.023421448,0.036755335,-0.033552587,-0.008257423,0.007843462,0.03884692,-0.021417009,0.038345814,-0.0006937923,0.014695597,0.02499014,-0.002317634,-0.02207063,0.016569313,-0.0007857079,-0.02407507,-0.0013746483,0.026384534,-0.03734359,0.018922351,0.047322217,0.013105117,0.021787394,0.002137888,-0.011231401,-0.011274976,0.01597016,-0.009722624,-0.025360527,-0.019336311,0.041853584,0.012516857,0.016482163,0.0096191345,-0.035208426,0.00007974527,0.013867676,0.035796687,0.020883217,0.009493857,0.041853584,-0.005964299,-0.003968029,0.0025641038,0.00860602,-0.025229802,0.001992185,-0.02566555,0.0038699857,-0.03150457,0.0069883065,-0.0035540685,0.008251975,-0.009303217,-0.016166246,0.040742427,-0.006933838,-0.0084153805,0.025709124,-0.049108785,0.02507729,-0.0046570553,0.004648885,-0.00929777,0.010539652,-0.008148485,-0.017778514,0.011117018,-0.06043823,0.05032888,-0.016035521,0.026035935,-0.019935464,0.0024211241,-0.0038100705,0.029652642,0.014009294,-0.01691791,0.004275776,-0.004474586,-0.0048068436,0.014837215,0.038498323,0.022637103,0.0024538052,-0.0165911,0.05050318,0.0055448916,0.019674016,0.0023625705,-0.007358692,0.0010914123,-0.03875977,0.011471063,0.021722032,-0.013192267,-0.02699458,-0.015915692,0.018813414,-0.012113791,0.022353865,-0.034249783,-0.007173499,-0.028781148,0.0053488053,0.062791266,-0.042507205,-0.0046897363,-0.0010648589,0.018421242,0.018344985,-0.0016966932,-0.028868297,0.035252,0.019238269,0.0216022,-0.043683723,0.015610668,-0.027975013,0.0032844495,0.035491664,0.012146472,-0.0018260559,-0.0052507618,-0.005234421,-0.033421863,0.023268936,0.0046189274,-0.008981853,-0.00060051505,0.006432728,-0.019107545,-0.016471269,0.025316952,0.027473902,0.016035521,0.015076877,-0.009101683,0.00008097931,-0.01029999,-0.03677712,0.003017554,-0.013976613,0.043727297,-0.0065198774,0.020175127,0.0165911,0.03886871,0.013889464,-0.00520174,-0.010169266,-0.002474231,0.003929901,0.020175127,-0.0015577986,0.04322619,-0.023617534,0.020109763,0.024968352,-0.03886871,0.0066015804,0.012375239,-0.007925164,-0.017081317,-0.012146472,0.003948965,-0.011449276,0.012952605,0.008633255,-0.0509825,-0.01664557,0.026035935,-0.018083537,0.015621562,0.041766435,0.025316952,0.032158192,0.008115804,0.016188033,0.008725851,-0.0063946,-0.0040088804,-0.007788993,-0.02599236,0.006470856,0.043727297,-0.0020602704,-0.006939285,-0.03830224,0.013257629,-0.020665342,-0.0012003492,0.005713744,-0.03895586,0.012549539,-0.055165682,-0.008671382,0.0105015235,-0.028236462,0.0229857,-0.0190095,-0.037234657,0.014390574,0.02466333,0.0102128405,-0.016329652,0.012549539,-0.0043438617,0.032005683,-0.004338415,-0.01617714,-0.00038808794,0.025796274,-0.012571326,0.008916491,-0.0087530855,0.00019234183,0.006329238,0.0052752728,-0.027517479,0.025600187,-0.004175009,0.0036357713,-0.0060187676,0.046102125,0.028149312,0.021155559,-0.021820074,-0.0035458982,0.022724252,0.007402267,0.018225154,-0.0039516883,0.00929777,0.0041014766,0.016449481,0.033225775,0.034315147,-0.0012194131,0.0017988217,0.0114165945,-0.02466333,0.011089783,-0.00007723461,-0.0055830195,0.0046516084,0.011106124,-0.02516444,0.0067377514,-0.010419821,-0.0032599387,0.003840028,0.005822681,-0.04252899,-0.050938927,0.0024006984,0.005632041,-0.016994167,0.0024292944,0.027386753,-0.046930045,-0.018508391,0.002615849,-0.010191053,-0.0058989367,-0.000066170694,0.005915277,0.0073859263,-0.0027683608,-0.016667357,-0.023748258,-0.005433231,-0.023116425,-0.043509424,-0.002766999,-0.014771853,0.03392297,-0.026166659,-0.002289038,-0.009183386,0.017277403,0.021700244,-0.03679891,-0.00010306459,0.0084480615,0.0066669425,0.022789614,-0.003878156,0.0122663025,0.012102897,-0.013268523,0.01735366,0.047975842,-0.019815635,0.03442408,-0.001390308,0.024380093,0.015065983,0.020066189,0.011645362,0.02507729,0.0411346,0.02416222,-0.0021732925,-0.010528758,-0.0279968,0.030502351,0.02122092,0.006525324,-0.015327431,0.01977206,-0.0013971166,-0.0073205642,-0.014826321,-0.024859415,0.028890084,0.0047687157,-0.013606227,0.017811194,0.01149285,-0.011895916,0.0045835227,-0.015414581,0.015741391,-0.014782746,0.020926792,-0.0090417685,0.008905597,-0.00030927887,-0.0053515285,-0.008916491,0.008409934,-0.0041695624,0.007685503,0.0042267544,-0.03660282,-0.0064109406,-0.016057309,0.036733545,-0.011062549,-0.03679891,0.00068596244,0.0022304845,-0.00014246913,0.01240792,-0.014652022,0.022201354,-0.020545512,0.007080903,0.018737158,0.02808395,0.039391607,-0.0062693227,0.011558212,-0.023203574,-0.00769095,-0.017124891,-0.00037447084,0.05006743,-0.052856218,-0.038019,-0.01773494,-0.017865663,0.0043928833,-0.027430328,-0.008774873,0.0067268577,-0.018584646,-0.020414788,0.012593114,-0.024881203,-0.011405701,0.012636689,0.0011063911,-0.020545512,-0.030545926,-0.0120266415,0.018573754,-0.0043629254,0.0008081761,0.008034102,-0.029979454,-0.012843668,0.020708917,0.008017761,-0.004578076,-0.0027942332,0.03509949,-0.015774073,-0.009237855,-0.028388973,0.017157573,-0.008889257,-0.04119996,-0.009967732,-0.022441015,-0.0049648024,-0.014009294,0.0013957549,-0.02106841,0.0056592757,0.013628014,0.0014012017,0.014238061,0.014390574,-0.0037828363,0.028606847,-0.045753527,0.005335188,0.00015770328,0.041657496,0.049762405,0.008094016,0.02481584,-0.0107902065,-0.023181787,-0.0019880997,-0.007870696,-0.016079096,0.041548558,0.006715964,-0.019728485,0.0073532453,-0.00950475,-0.0044527985,-0.013519078,0.013192267,0.0057082972,0.0047033536,0.010926378,0.014684703,-0.010245522,0.029282257,0.031112397,0.018138004,-0.01266937,-0.03952233,0.016198928,0.046014976,-0.05708297,0.028650422,-0.0030447883,0.0090254275,0.03810615,-0.033726886,0.011106124,0.020610875,0.03368331,0.0037065803,-0.014859002,0.02740854,-0.0036929632,-0.057387993,0.009738965,0.025316952,-0.03359616,0.021144666,-0.022201354,-0.029412981,0.015076877,-0.012211834,-0.03409727,-0.018846095,0.0070645623,-0.05032888,0.020000827,0.023987921,-0.0032735558,-0.04745294,-0.03666818,-0.019042183]},{"id":"guide-embeds-10","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Multiple embeds\nMessages can include up to 10 embeds. Pass an array to embeds.\n\n```javascript\nawait message.reply({\n embeds: [\n new EmbedBuilder().setTitle('First').setColor(0x5865f2),\n new EmbedBuilder().setTitle('Second').setColor(0x57f287),\n ],\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.010027303,-0.008021843,0.030258683,-0.004535145,-0.017957712,-0.0069185346,0.025260272,-0.020237476,-0.0119657125,-0.004571719,-0.009350689,-0.03547654,0.03547654,-0.05661617,-0.0031301037,-0.0119657125,-0.011350054,0.0073635154,0.03169725,0.054909393,0.0307951,-0.007186742,-0.041474633,0.045936633,-0.009332403,-0.010344276,-0.0053153853,0.03040498,0.014385676,-0.011130611,0.015970537,-0.011252524,0.012739857,-0.008564354,-0.041377105,0.009881008,0.03691511,0.02484577,-0.009228777,0.057347644,0.06505252,-0.0053153853,-0.013690774,-0.022639152,-0.03313582,0.034793828,-0.059103183,-0.0136542,0.015958346,0.067393236,0.024163058,0.034647536,0.021663852,0.031038923,-0.021773573,-0.004910026,-0.06471116,0.012739857,-0.01814058,0.014690457,0.039572798,-0.011331768,0.0059798085,0.016884882,-0.011575593,-0.019457236,-0.053300146,0.011514636,0.011618262,0.023797322,0.04025551,-0.0047149663,-0.0010994984,0.02056664,0.03949965,0.0062114424,-0.039207064,0.0002131564,-0.013349419,-0.03225805,0.0132153155,-0.007973078,-0.08558258,0.017214047,-0.061053783,0.014458823,-0.0075402884,-0.031160837,-0.027820434,-0.019420663,-0.031843547,-0.03691511,-0.077341296,-0.010319893,0.02913709,-0.008570449,-0.048033528,0.012520415,-0.0036360405,0.025845451,0.08329062,-0.038914472,-0.12883714,0.006180964,-0.00926535,-0.04530269,0.025162742,0.04661934,-0.016531335,-0.015373167,-0.04600978,0.019481618,0.007991365,-0.011374437,0.053592738,0.0036329927,0.02115182,-0.00033792623,0.014970856,-0.040426187,-0.06446733,-0.04603416,0.079291895,0.0035903233,0.009240968,-0.04503448,-0.012703283,-0.024504414,-0.03732961,0.03430618,-0.015726713,-0.006449172,0.061687727,0.023992382,-0.039743476,-0.004958791,-0.03403797,0.017921139,-0.02133469,-0.012160772,0.055884693,-0.030429361,0.007765827,-0.024406884,0.019371897,-0.008009652,-0.0742691,0.012581371,-0.00882037,-0.040889453,-0.016726395,-0.0024382502,-0.06041984,0.018311258,-0.040206745,-0.022383137,0.0005996571,-0.015153725,-0.026869517,-0.035647217,-0.041572165,-0.027893582,0.010545432,-0.027966728,-0.046326753,-0.0052483333,0.026552543,-0.02123716,-0.022163693,0.015068386,-0.0057329354,-0.031794783,-0.06227291,0.0026973141,0.037744112,-0.010466189,-0.027137725,-0.06680805,0.013666392,0.03284323,0.024211824,0.04047495,-0.01900616,0.0032032512,-0.029161472,0.03430618,-0.015214681,-0.012215633,-0.00093186874,-0.035354625,-0.036695663,0.0040962603,0.023224333,0.008533875,-0.005202616,-0.045936633,0.010490571,0.014032129,0.01645819,-0.03801232,0.01666544,0.020773891,0.03272132,-0.0011345482,-0.023602262,-0.024626326,-0.016750779,0.00016639152,-0.020542257,0.02523589,0.0518372,0.0007432853,0.004949648,-0.022358753,-0.030039242,0.010063877,-0.04201105,-0.029015176,-0.068563595,0.014312528,-0.07187961,0.021578513,0.06978272,-0.022590388,-0.0021151819,0.032038607,-0.028746968,0.005781701,-0.0017357293,0.052666202,0.040986985,-0.027357167,0.0050197477,-0.058713064,-0.017104324,0.044376153,0.01510496,0.044888183,0.019957077,-0.016238745,-0.011575593,-0.008064512,0.029259002,-0.02701581,0.0246629,-0.016811734,0.010319893,-0.042961966,-0.0034257413,0.059298243,0.0586643,0.0096737575,0.01998146,-0.0072659855,0.028966412,-0.04447368,-0.036012955,0.03801232,0.014373484,-0.033208966,-0.0030310496,0.02123716,-0.049862213,-0.008783796,0.007948696,0.011490254,0.026796369,0.036134865,0.026674457,-0.04084069,-0.00041526448,-0.01194133,0.0012297924,0.016421614,-0.0027445552,-0.0005798464,0.0029137088,0.010338181,-0.02027405,0.007223316,-0.009777383,-0.034671918,0.001723538,-0.0013768494,0.007095308,-0.008283955,0.0077231573,-0.011752365,0.0014134231,0.0085094925,-0.0016199125,-0.009844434,0.033160202,0.009368976,-0.008832561,0.057542704,0.033282116,0.012617945,0.035720363,0.031233985,-0.018981777,-0.018384406,0.039792243,0.00628459,0.0032093467,0.005306242,-0.030843863,-0.024833577,0.026845135,-0.035525303,0.02212712,0.00055622583,-0.053446442,-0.008716744,-0.026576927,0.016933648,0.031550955,0.024736047,-0.01461731,-0.017384723,0.053348914,0.031819165,0.021005524,-0.06753953,-0.04757026,-0.043571528,0.0016686774,-0.01647038,0.012532606,0.019323133,0.020737316,-0.004132834,0.006979491,0.053153854,0.023711983,-0.053934094,-0.0072111245,-0.022480667,0.011795035,0.0346963,-0.019530384,-0.0006388977,0.022395328,-0.0555921,-0.045156393,-0.03216052,-0.053739034,0.02427278,-0.01276424,-0.0108624045,-0.0034866978,-0.012398502,-0.016580101,-0.04661934,0.061053783,-0.048886914,0.015860816,-0.01655572,-0.0030660995,-0.009021525,-0.017799227,0.023285288,0.02213931,0.00946041,0.010484476,0.0067234747,-0.011813322,0.024431266,-0.0087777,0.010917265,0.015519462,0.045278303,-0.0108014485,-0.00017229666,-0.034476858,0.030551273,0.01032599,0.007838974,0.021017715,0.0121729635,-0.007302559,-0.005988952,-0.019762017,-0.019542575,-0.011228141,0.00940555,0.030453743,0.020822655,-0.015360976,-0.004181599,0.019640105,-0.017531019,-0.032770082,-0.0040109213,0.07373268,0.058518004,0.027576609,-0.014202807,0.004181599,-0.0084607275,-0.0185307,-0.034184266,0.027186489,-0.0020587975,0.02272449,-0.005723792,0.0062723984,-0.012739857,0.012258302,-0.0097956695,0.021810148,-0.009228777,0.018189346,-0.0028679918,-0.022773257,0.02193206,0.002522065,-0.04608293,-0.0006617563,0.03323335,-0.023187758,-0.06558893,-0.025942981,-0.03528148,0.05642111,-0.023565687,0.06139514,-0.035720363,0.02046911,-0.053105086,-0.10084602,0.012971491,0.078121535,0.029600356,0.022968316,-0.02133469,0.010703918,-0.014605118,-0.024065528,-0.0008122421,-0.007485428,0.03411112,-0.014653883,0.024004573,-0.034671918,-0.023626644,-0.053105086,0.0016305798,0.010460093,-0.019530384,-0.032038607,-0.01266671,0.009521367,-0.0066625183,-0.01203886,0.013520097,0.03789041,0.007979173,0.020249667,-0.0019323132,-0.0026775035,0.007564671,-0.039572798,0.010362563,0.027552227,-0.026698839,-0.07007531,-0.004321798,0.031721633,-0.005528732,0.0026424536,0.019530384,-0.00013477047,0.0020953713,0.0085582575,-0.039377738,0.00152924,-0.042181727,0.0136542,0.005711601,-0.027527845,0.00025087307,-0.002963998,-0.004276081,-0.03589104,0.061687727,0.021164011,-0.037987936,0.019786399,0.010978221,-0.024833577,0.024102103,-0.017409107,-0.012800813,0.0037731922,-0.005358055,-0.032696933,-0.030575657,0.025577243,-0.024626326,0.0019582196,0.007272081,-0.0536415,0.023260906,0.021919869,0.001691536,-0.04903321,-0.015970537,0.022407519,0.03691511,-0.021224968,-0.04688755,-0.009844434,0.010161407,-0.0032489684,0.027040195,-0.005184329,0.036183633,0.0016305798,-0.049545243,0.00060918153,0.0120022865,0.0031483904,-0.026503779,0.037085783,-0.008357102,-0.007302559,-0.0207617,0.0059036133,-0.0185307,-0.011301289,-0.008930091,0.029941712,0.005108134,-0.03528148,0.015056195,-0.05978589,0.020786082,0.0084973015,-0.04727767,-0.024528796,0.026991429,0.004282177,0.006376024,-0.06695435,0.018750144,0.006016382,0.043205794,-0.0074793324,0.020286242,0.013093404,-0.033623468,0.023833895,-0.012873961,0.0133128455,0.009533558,-0.0018210681,0.019152455,0.026284337,0.01921341,0.021127438,-0.0054921582,0.051593374,0.016129024,-0.024199633,0.02282202,0.025455331,0.022212459,0.012307067,-0.005860944,-0.035598453,-0.006881961,-0.013934599,0.052129786,0.002293479,0.0029533305,-0.0155804185,0.030039242,-0.016482571,-0.04544898,0.009301924,0.00237577,-0.017689504,-0.03411112,-0.018201537,0.014824561,-0.0069551086,-0.0050045084,-0.01775046,0.021980824,0.02115182,0.010124833,0.010703918,-0.0023971046,0.022480667,-0.03711017,0.007869452,-0.030258683,-0.020798273,0.03635431,0.023370627,-0.011892565,-0.037939172,0.012142486,0.012837387,0.026796369,-0.0032428727,-0.0032428727,-0.004526002,-0.028527526,-0.005089847,0.0010766399,-0.008869135,-0.042937584,-0.04513201,0.014495397,0.027284019,-0.0016321037,0.047131374,0.02290736,0.0040078736,0.020237476,0.031112071,0.010795352,-0.04006045,0.032891992,0.0013067496,-0.030380597,0.033721,0.034257416,0.03654937,0.005812179,0.0050136517,-0.034574386,-0.00868017,-0.0046662013,-0.030721951,0.01645819,0.029307766,-0.009320211,0.017994286,-0.0043004635,0.03050251,0.0054403455,-0.017104324,0.030746333,0.00882037,-0.017018985,0.017494444,-0.021273732,-0.034476858,-0.016848309,0.01921341,-0.033550322,0.005708553,-0.03996292,-0.028844498,-0.016129024,-0.042961966,-0.010332085,-0.0026439775,0.019664487,0.004769827,-0.0066442317,0.013495714,-0.0007307131,-0.04447368,-0.028308084,-0.01655572,0.013398184,-0.028698204,0.0028192268,0.02321214,-0.013861452,0.018969586,-0.013885834,-0.015543845,-0.019408472,0.02113963,0.0009333926,-0.004586958,0.018189346,-0.035330243,-0.016787352,0.024248397,-0.024431266,-0.012581371,0.02163947,0.03138028,-0.04725329,-0.039133914,0.012642327,0.014483206,-0.024492223,0.030551273,0.028405614,0.028332466,-0.0068392917,0.0074915234,-0.012703283,-0.015604801,0.035598453,-0.01832345,-0.006327259,0.007863357,-0.027917964,-0.015019621,0.045668423,0.029795416,-0.029210236,-0.009893199,-0.012209537,0.0043644677,-0.0005741317,-0.021310305,-0.015263446,-0.036208015,-0.035257097,0.022943934,0.010393041,-0.009076386,-0.007156264,-0.00657718,0.014324719,-0.020054607,-0.036329925,-0.021663852,0.021298114,-0.018055242,0.036305543,-0.0036177535,0.01764074,0.022480667,0.027893582,-0.028868882,0.03910953,-0.016092451,0.0033739286,-0.0040292083,-0.012752048,0.019591339,-0.007912122,0.04123081,0.010612484,0.013727348,0.027771669,0.014068703,0.0052269986,-0.010435711,0.029746652,-0.034013588,0.007869452,-0.012240016,0.0052330946,-0.043571528,0.007058734,0.013873643,-0.018067433,-0.035135183,0.020359388,0.033501558,0.034988888,-0.015775478,0.0029853324,-0.0085460665,-0.030673187,-0.041572165,0.0073147505,-0.008607023,0.008186425,-0.031429045,-0.02572354,-0.011069655,-0.028259318,0.043839738,-0.030429361,-0.048813768,0.009539654,-0.010569815,0.011459775,-0.013861452,0.017531019,-0.01832345,-0.019140264,0.009417742,0.00022020447,-0.040133595,-0.029454062,0.0009585371,-0.050910663,-0.030234301,-0.035549685,0.024638517,-0.029088324,-0.0155682275,0.010405232,-0.020871421,-0.076561056,-0.025162742,0.026771987,-0.018250301,-0.030283067,-0.014495397,-0.02301708,-0.016421614,0.0018500222,-0.009326307,0.0040444476,-0.022480667,0.03267255,-0.025699155,-0.010679536,-0.0026455014,0.019518193,-0.0008229094,0.0021517558,-0.028283702,-0.0050685126,-0.00076652487,0.0029396154,0.016543526,-0.014093086,-0.002944187,0.019128073,0.026357483,0.037158933,-0.016055876,0.012203442,0.040572483,-0.010600292,0.016433805,-0.0016001016,-0.0037488095,0.028673822,-0.01861604,-0.0021045147,-0.04588787,-0.0013768494,0.008381485,-0.023992382,-0.013715157,0.016092451,0.024260588,0.013873643,0.012087625,-0.026942665,0.007308655,0.037573434,0.011587784,-0.014190616,0.002977713,0.053787798,0.020615404,-0.051544607,0.010210172,0.020139946,-0.007137977,-0.0018256397,-0.010606388,0.012630136,-0.004340085,0.028308084,-0.017957712,-0.0058274176,0.0039103436,-0.026723221,0.006363833,0.016287511,-0.0009532034,0.039914154,0.0155682275,-0.015958346,-0.022858595,-0.005927996,0.019408472,0.011819418,0.036305543,-0.0037335705,-0.021078672,0.010100451,0.025991747,-0.0014667598,-0.01726281,-0.009496984,-0.040499333,0.013129977,0.061736494,0.02252943,-0.0298198,0.0070526386,0.009820052,0.017018985,-0.024236206,-0.041791607,0.009868817,0.026138041,-0.012093721,0.02952721,0.018201537,-0.012057147,-0.011831609,-0.040231127,-0.019432854,0.011880374,0.037158933,0.017567592,-0.003239825,0.015068386,-0.008302242,-0.0084485365,0.007467141,-0.020920185,-0.01793333,-0.0016641057,0.004922217,0.005924948,-0.03652499,0.040718775,0.028454378,-0.009228777,-0.05164214,0.00028763732,0.046643727,-0.019932695,-0.0007901454,-0.0014690456,0.0024138677,-0.012160772,0.05978589,-0.014263763,0.003626897,0.010898978,0.0013600864,0.012642327,0.015629184,-0.03589104,0.011673123,0.012337546,-0.051739667,0.043961648,-0.025065212,0.0108685,0.009332403,-0.010362563,0.032965142,-0.011392724,-0.052178554,0.032770082,-0.009935869,-0.01067344,0.024504414,0.025552861,0.05022795,-0.007308655,-0.03667128,-0.029478444,-0.0042090295,-0.009716427,0.047887232,0.027942346,0.018347831,-0.019189028,-0.0076926793,-0.02272449,-0.025894217,-0.018981777,0.03869503,-0.0185307,-0.015287829,0.02046911,0.013678583,0.021224968,0.034354944,0.02407772,0.021395644,0.015677948,-0.011051369,0.0066320403,0.029771034,0.01539755,0.012276589,0.0007143311,-0.024480032,0.02543095,-0.009960252,-0.013349419,0.01676297,0.007912122,-0.009667662,0.020676361,-0.018262494,-0.00553178,-0.009033716,-0.018847674,-0.009539654,-0.0031270557,0.009545749,0.011910852,-0.019067116,-0.005888374,-0.016933648,-0.000763858,-0.012465553,-0.019762017,0.0033282114,0.004294368,0.031843547,-0.012849578,0.009643279,0.02630872,0.020383772,0.005190425,0.03294076,-0.014702648,-0.012240016,-0.009411645,0.024784813,-0.015251255,0.008649692,-0.01018579,0.03713455,-0.019640105,-0.007912122,0.0036390882,-0.02456537,-0.03667128,0.021395644,0.031331513,0.00086786464,0.0038829134,-0.020018034,0.03889009,-0.05388533,-0.04505886,-0.003124008,0.011514636,0.0155804185,0.027381549,0.019725444,-0.026357483,-0.03703702,-0.029283384,-0.020066798,0.03186793,0.0053336723,-0.011435393,0.002016128,0.021176202,-0.00079471717,0.009295829,-0.031941075,0.048399266,-0.01022846,-0.031258367,-0.00475154,0.03615925,-0.0047058226,0.025894217,-0.010234555,0.017860182,-0.03206299,-0.012678901,0.004245603,0.009838339,-0.0039408216,0.0060316212,0.037792876,-0.023248715,0.02045692,0.017104324,0.0019506001,-0.01461731,0.023443775,-0.02740593,0.01071611,0.008808179,0.0042577945,-0.05544581,-0.031916693,-0.005873135,-0.018993968,-0.01022846,0.015458506,-0.05388533,-0.009356785,0.0438885,0.048228588,-0.00858264,0.025674773,-0.030258683,-0.023431584,0.009289733,-0.018542891,-0.023846086,-0.004013969,0.03306267,0.020103373,-0.022090547,-0.0019475523,-0.015751095,-0.0060102865,-0.015531654,0.030575657,0.034062356,-0.009173916,0.044985715,-0.00296095,-0.02513836,0.020188712,0.03988977,-0.04744835,0.009722522,-0.008802083,0.0155804185,-0.03725646,-0.0035202235,-0.0022157598,-0.018299067,0.0071318815,-0.023736365,0.050715603,0.0072964635,-0.005693314,0.039450888,-0.039182678,0.021590704,0.03128275,0.0038341484,-0.007863357,0.008863039,-0.02223684,-0.050374247,-0.030136772,-0.063053146,0.033599086,-0.02476043,0.010642962,0.020737316,-0.004690584,-0.02204178,0.015263446,0.00040726396,-0.024870152,0.039158296,-0.007351324,-0.018372215,0.025894217,0.058371708,-0.006266303,-0.035257097,0.018018669,0.03147781,0.01256918,0.0011520731,0.01164874,-0.012197346,-0.02779605,-0.012264398,-0.00458391,0.048765004,0.004535145,-0.011855992,0.00692463,0.013069021,-0.01510496,0.03976786,-0.01375173,-0.0003988825,-0.005162995,0.017238429,0.04532707,-0.03820738,-0.024406884,0.015275637,-0.01998146,0.0108258305,0.036768813,-0.017884566,0.0175554,0.031794783,0.028088642,-0.03323335,0.016689822,-0.04552213,-0.008131565,0.021676043,-0.044376153,-0.027479079,-0.009216585,-0.009320211,0.0052970983,-0.005924948,-0.030258683,0.007869452,0.0029990477,0.0036177535,-0.033989206,-0.0068271,0.020030225,0.010441806,0.009356785,0.017713888,0.0038341484,0.0066381358,0.030624421,-0.018469745,0.030185537,-0.0076378183,0.061297607,0.0040444476,0.025991747,0.021164011,0.020164328,0.021737,0.0013425614,0.0046174363,0.052081022,0.004708871,-0.016019303,-0.008515589,0.026723221,-0.020432536,0.019042734,-0.008296146,-0.028771352,-0.00006619468,0.02123716,0.010990412,-0.041011367,0.017226238,0.004785066,0.00048765002,0.041986667,0.003431837,-0.016726395,-0.009484793,0.025845451,0.0018347832,-0.009253159,0.017018985,0.017774843,0.03286761,0.009137343,0.009527463,0.003825005,0.009820052,-0.0011962665,-0.0020938474,-0.004020065,-0.013105595,0.021078672,0.012325354,0.039036386,-0.030234301,0.017982095,-0.007077021,0.007973078,-0.009813957,-0.026747603,0.039353356,-0.05027672,-0.010124833,-0.0063516414,-0.012307067,-0.011246429,0.013483523,-0.04649743,0.0034013588,0.0307951,-0.003889009,0.023638835,0.031843547,-0.008619214,-0.0007147121,-0.00638212,0.009533558,-0.009533558,0.015348785,0.03789041,0.016836118,0.011721888,-0.005540923,-0.01539755,0.012508223,-0.017982095,0.033184584,-0.0055835927,-0.007662201,0.019822974,-0.0010141596,0.0038768176,0.043717824,-0.020103373,0.007851166,-0.0003609753,-0.007924313,0.008649692,-0.009436028,0.00868017,0.027722904,-0.017518828,0.035647217,0.016494762,0.006150486,0.025772303,0.017774843,-0.046180457,0.019810783,0.010173598,-0.008655788,-0.023529114,0.042328022,-0.0083875805,0.023809513,0.007966982,-0.022090547,-0.013337228,0.0075463844,-0.011301289,-0.024821386,-0.0015818147,0.010277225,-0.03186793,0.007095308,0.020152137,-0.019335324,-0.006394311,0.015153725,-0.006833196,0.010399137,0.0046753446,0.009533558,0.026625691,-0.0058975173,-0.020627595,-0.029600356,0.0005105086,-0.010027303,0.012264398,-0.03713455,-0.035647217,0.003562893,-0.018786717,-0.014141851,-0.0074305674,0.008832561,0.04564404,-0.025309036,-0.012617945,0.030331831,0.021029908,0.0011977904,-0.001497238,-0.010252842,-0.0037061402,-0.0107648745,-0.0004766017,0.04201105,-0.012532606,0.015141534,-0.03303829,0.027430315,-0.008765509,0.021676043,0.0042669377,0.021298114,0.0023163375,-0.009338498,0.016055876,-0.002669884,-0.03306267,-0.000058289417,0.016933648,-0.00042174108,-0.01451978,0.012508223,0.0040261606,-0.004989269,-0.016043685,-0.027137725,0.05983466,-0.009643279,-0.04525392,0.007089212,-0.0022538574,0.0132153155,0.0007817639,-0.034208648,0.0061901077,-0.017957712,0.006449172,-0.016592292,0.022785448,-0.038987618,0.024248397,-0.010880691,0.021090863,-0.0107770655,0.03489136,-0.018676996,-0.04564404,-0.016409423,0.0067051877,0.030161154,-0.00012819862,0.010551527,0.0026881709,0.017031178,0.0048856437,0.03225805,0.011270811,0.02476043,-0.032209285,0.011868183,0.0031148645,0.048204206,0.044571213,-0.019384088,0.00044040894,-0.036403075,-0.009411645,-0.007826783,-0.014446632,0.0016381993,-0.033818528,-0.0025403518,-0.01871357,-0.006497937,0.0095884185,-0.0011627405,0.004327894,0.0131421685,0.0039591086,-0.016311893,0.009533558,-0.018091816,-0.036378693,0.027064577,-0.03235558,-0.025089594,-0.0066747097,0.016238745,0.016592292,-0.0012884628,-0.003709188,0.003919487,-0.011014795,-0.0034501238,0.019164646,0.00044459966,-0.020786082,-0.014983047,0.03430618,-0.0061901077,0.025747921,-0.010740492,0.018847674,-0.015385359,-0.031258367,-0.015214681,-0.0029746653,0.011325672,-0.0036634707,0.003334307,0.027381549,-0.0048246873,0.0038432917,-0.0072111245,0.019457236,0.013971173,-0.023224333,0.022639152,-0.023614453,0.02085923,-0.0069490126,0.029210236,0.0041998858,0.026601309,0.00774754,0.0062541114,-0.00034687918,0.01765293,-0.013081212,0.010313798,0.028113024,0.017860182,-0.034793828,0.0036817577,-0.011319576,-0.017409107,-0.010338181,0.04103575,0.038256146,0.009436028,-0.035135183,0.0020938474,-0.021200584,0.0076439143,-0.0034775543,0.02601613,-0.041474633,-0.046765637,0.020712934,0.018286876,-0.03530586,0.04408356,0.03225805,0.006912439,-0.000040978794,0.004730205,-0.025894217,0.021590704,0.01520249,0.011307385,-0.0024108198,0.05261744,-0.0033129724,-0.047521494,0.027259637,0.019420663,-0.006016382,0.017494444,-0.01461731,-0.037085783,-0.0117036,-0.003907296,-0.051495843,0.014446632,-0.0028390375,-0.033306498,-0.0061565815,0.03711017,-0.010460093,-0.030234301,-0.028795734,0.0016793448]},{"id":"guide-embeds-11","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Load from existing embed\nEmbedBuilder.from() creates a builder from an API embed (e.g. from a received message). Edit and toJSON() to send.\n\n```javascript\nconst existing = message.embeds[0];\nif (existing) {\n const edited = EmbedBuilder.from(existing)\n .setTitle('Updated title')\n .setColor(0x57f287);\n await message.edit({ embeds: [edited] });\n}\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.02490618,-0.02611757,-0.021041846,-0.011326497,-0.0038279928,0.0022410718,0.022071527,-0.008164769,-0.0038128505,-0.021066075,0.0018064856,-0.0011061506,0.041187264,-0.06400985,-0.0007442478,0.009921285,0.0050605824,-0.003573601,-0.018001257,0.03924904,0.033579733,-0.0019261104,-0.020169646,0.0391279,0.011368897,-0.037310816,-0.0076680994,0.028831085,-0.030042475,-0.053737268,-0.01082377,-0.015881324,0.002695343,0.0052150344,-0.008394933,0.00607815,0.019212648,0.014367087,-0.008291965,0.026529444,0.042955894,-0.0021880735,-0.0132526085,0.011780769,-0.023210235,0.034548845,-0.059794217,0.02266511,0.0021577887,0.033022497,0.024252031,0.012622685,0.011526377,-0.000054891116,-0.028249618,-0.029606374,-0.032998268,-0.00028410883,-0.06061796,0.050975297,0.01602669,0.010938853,0.0056844484,0.025487648,-0.016244741,-0.0057389606,-0.06623881,0.041090354,0.0047940766,0.014972782,0.044845663,-0.010260475,-0.01835256,-0.0076802135,0.02192616,-0.037213907,-0.0026226596,0.041599136,-0.006232602,-0.039418634,0.0038522207,-0.0075166756,-0.08925523,0.016596045,-0.04576632,0.012852849,0.009085426,-0.019273218,0.03273176,-0.027425872,-0.033046722,-0.022967957,-0.052089777,-0.013349519,0.032901358,0.012574229,-0.056063134,0.00589947,0.042156376,0.03583292,0.086202525,-0.053301167,-0.080194026,-0.002586318,-0.011920079,-0.039176356,0.024833499,0.015723843,-0.03493649,-0.022289578,-0.05930966,-0.017553043,0.005242291,-0.03680203,0.012707482,0.013531228,0.019236876,0.02111453,-0.03176265,-0.034791123,-0.07147202,-0.05116912,0.07331333,0.0063173994,0.0058540427,-0.028080024,-0.01565116,-0.039612457,-0.03791651,-0.007353138,0.010333158,0.012107844,0.06517279,-0.0010569379,-0.024348943,-0.022556085,-0.0027483413,0.016729297,0.00061061635,-0.009406445,0.045548268,-0.058001358,-0.017032145,-0.021962503,-0.033216316,0.035227224,-0.031011587,-0.01630531,-0.013482772,-0.007334967,-0.014124809,0.008982458,-0.051120665,0.014245948,-0.049133983,-0.012961875,-0.00067535,-0.03139923,-0.008225339,-0.016608158,-0.032659076,-0.020424038,-0.009648723,-0.0046305386,-0.05005464,-0.0025272625,0.035639096,-0.052186687,-0.021272011,-0.0005913098,0.011526377,-0.019527609,-0.034355026,0.034476165,-0.012852849,-0.015396768,-0.040751163,-0.06987298,-0.011683858,0.031278092,-0.010987309,0.025196915,-0.027571239,0.0011970049,-0.021126645,0.034040064,-0.024978865,0.04024238,-0.014609365,-0.03847375,-0.0518475,-0.011453694,-0.003503946,0.019648748,0.03922481,-0.0075711883,0.052428965,0.02179291,0.03803765,-0.03462153,0.035978287,0.009491242,0.03626902,0.0069836644,-0.021005506,-0.03362819,0.013906758,0.0005920669,-0.056208503,0.018837117,0.033046722,-0.012780166,-0.017868005,-0.007849808,-0.017129056,0.002369782,-0.015869211,-0.007765011,-0.04831024,0.012780166,-0.07059982,0.010926739,0.07379789,-0.007474277,-0.047559176,0.005269547,-0.030163614,0.008558472,-0.05039383,0.06008495,0.019273218,-0.01990314,-0.030793536,-0.045378674,0.0064143105,0.07355561,-0.034766898,0.018497927,0.027498556,-0.013967329,-0.021320466,-0.018025486,0.022059415,-0.019321673,-0.022955842,-0.0011667202,0.03529991,-0.06275001,-0.0025908607,0.07118128,0.043803867,-0.0024106663,0.02403398,0.003261668,0.0238765,-0.04290744,-0.06672337,0.02325869,-0.013616025,-0.06536661,0.027643923,0.023573652,-0.013349519,-0.015626933,-0.0034827467,0.008146599,0.018279877,0.0066989874,0.059358116,-0.01676564,-0.013579683,0.006486994,0.0029300498,0.011465807,-0.029703286,-0.003976388,-0.005632964,0.017589385,-0.0028664519,0.021150872,-0.021599086,-0.038740255,-0.011920079,0.00089037174,-0.021223554,-0.021599086,-0.014245948,-0.012622685,0.014403429,0.013434317,0.0009145996,-0.018437358,0.054948658,-0.016172059,0.0075409035,0.048528288,0.055723947,-0.0043428335,0.049909275,0.048455607,-0.013700822,-0.029339869,0.019733544,0.017964916,-0.0028073967,-0.009327704,-0.019672975,-0.041865643,0.047244214,-0.04760763,-0.0027983112,0.024409512,-0.02834653,-0.017104829,-0.01372505,0.07757743,0.030551258,0.044385336,-0.02381593,-0.002484864,0.009703235,0.011035764,-0.01732288,-0.041187264,-0.038352612,-0.044239968,-0.0053785723,-0.030236298,0.033458594,0.04523331,0.020654202,0.01900671,-0.0030723882,0.040169697,0.031375006,-0.0034585188,0.0051332656,-0.045039486,0.026408305,0.042568248,-0.021138757,-0.011629345,0.034863807,-0.052865066,-0.04167182,-0.034863807,-0.018182965,0.042955894,-0.020484608,-0.0061447765,-0.001962452,-0.026723266,-0.0073289103,-0.047050394,0.066190355,-0.0121563,0.026650583,-0.045281764,0.022095757,-0.022992184,0.0053028604,0.009606324,0.010854055,0.036656667,0.0019215676,0.025560332,0.020920707,0.05194441,-0.0074015935,-0.020787455,-0.02083591,0.028031567,-0.012241097,0.0062204883,-0.025075777,-0.009182338,0.067401744,0.0064506526,0.009400387,0.025608787,0.018594839,0.0022274435,-0.022374377,-0.045015257,0.019273218,0.015566363,0.032344118,0.035130315,-0.015808642,0.01732288,0.01322838,-0.01900671,-0.02502732,-0.023719018,0.060714874,0.057855994,0.02198673,-0.009660836,0.010605721,-0.011374953,-0.039757825,-0.043755412,0.023367716,-0.0002901658,0.015396768,-0.016596045,0.0445307,-0.02179291,-0.00029168004,-0.0015240802,0.046129737,-0.021950388,0.02732896,-0.042156376,-0.018510042,-0.005000013,-0.015372541,-0.040969215,0.0016959462,0.02592375,-0.040000103,-0.070648275,-0.027643923,-0.019273218,0.02999402,-0.030163614,0.027038228,-0.022313807,0.012743824,-0.044942573,-0.0769475,0.020351354,0.07118128,-0.014306517,0.03021207,0.006644475,0.009745633,-0.009769862,-0.0048273895,0.019915253,-0.047704544,0.009297419,-0.0265779,0.001624777,-0.07379789,0.0045275707,-0.035978287,-0.0036735407,-0.016947348,-0.049061302,-0.027183594,-0.022737794,0.035227224,0.011187188,-0.031350777,-0.0039582173,-0.015178719,-0.0016853465,0.058922015,0.011332555,-0.0061659757,0.010127221,-0.012338009,0.01372505,0.021720225,-0.040097013,-0.041889872,0.0068928096,0.006059979,-0.014415543,0.028467668,0.021538517,0.0037310815,-0.015481566,-0.0146214785,-0.026699038,0.010000026,-0.041502226,-0.0099757975,0.022071527,-0.045281764,0.009630552,-0.0006287872,-0.0013385861,-0.021247784,0.08281063,0.02359788,-0.047971047,0.044070374,-0.019079395,-0.014924326,0.01207756,-0.018219307,-0.012465204,0.00034732826,-0.0328529,-0.041526455,-0.03617211,0.05039383,-0.014318631,-0.014560909,-0.015578477,-0.056160048,0.026311394,0.024797156,-0.039588228,-0.03130232,-0.017819548,0.0040975274,0.0099939685,-0.02179291,-0.011041821,-0.0002275142,0.009382216,0.028152706,0.021211442,-0.027256278,0.05940657,-0.009255021,-0.033289,-0.004900073,-0.0019533667,0.011980648,-0.0070381765,0.026723266,0.013143583,-0.015045466,-0.03801342,-0.006904924,0.0053694868,-0.0040490716,-0.013143583,0.019527609,-0.01273171,-0.032344118,-0.001873112,-0.059939586,0.013410089,-0.0011296213,-0.035663325,-0.018837117,0.05722607,0.0064385384,-0.0052786325,-0.07166584,0.0039097616,-0.024639675,0.016995804,0.011356782,0.039709367,0.027401645,-0.03726236,0.036583982,-0.01642645,-0.0026105458,0.030890448,0.006741386,0.010944909,0.023391943,0.016850436,0.009987911,-0.001184891,0.041962553,0.0005496683,0.0045275707,0.028467668,0.006371912,-0.006402197,0.0028709946,-0.0019412527,-0.021296239,0.01704426,0.0045820833,0.021780794,-0.02502732,0.02459122,0.009279248,0.017177513,-0.032004926,-0.040726937,-0.0037946797,-0.015663274,-0.031084271,-0.00512418,0.007122974,0.015542136,-0.0016959462,-0.0023682676,0.0020866196,0.033918925,0.014488226,0.013337405,0.0011546062,-0.0061205486,0.019442812,-0.039612457,0.018825002,-0.027692378,-0.03915213,0.044021916,0.004784991,-0.017456131,-0.015202946,0.0406058,0.017746866,0.022156326,-0.0029467065,-0.013519114,-0.030623943,-0.009891001,0.00526349,-0.000987283,0.0015854068,-0.006353741,-0.030672397,0.003428234,0.016680842,0.004936415,0.03583292,0.036680892,0.0055027395,0.033700872,0.027280506,-0.0056844484,-0.038885623,0.029364096,0.0023273833,-0.020327127,0.026262939,0.0037613665,0.021853479,-0.007219885,-0.0053725154,0.0007461406,0.009194451,-0.024203574,0.0064567095,-0.00020839696,-0.0009032428,-0.0014105124,-0.008964287,0.0040732995,0.032489482,-0.0027998255,-0.013349519,0.0053543444,-0.027062455,0.018376788,-0.0063173994,0.0013037586,-0.048697885,-0.03297404,0.03803765,-0.02415512,0.009073312,-0.01797703,0.0006798927,0.014233834,-0.009757748,-0.01658393,-0.029848652,-0.0022652994,-0.026335621,0.014548795,0.008582699,0.021538517,-0.026408305,-0.031108499,-0.006608133,0.014912212,-0.03813456,0.00067951414,0.016789867,-0.03639016,0.010684461,-0.025075777,-0.006026666,-0.032344118,0.010914625,-0.0031526429,-0.024264144,-0.009103597,-0.031132726,-0.022156326,0.021950388,-0.026941316,-0.014463998,0.021005506,0.020920707,-0.051314484,-0.031568825,-0.0074015935,-0.001057695,-0.041768733,0.028419213,0.056160048,0.007486391,0.02375536,0.0017807435,-0.041356858,-0.009691121,0.004669909,-0.024203574,-0.003764395,-0.00018823867,-0.030793536,-0.026190255,0.032344118,0.029315641,-0.011314384,-0.0099757975,-0.0130709,0.016462792,-0.013688709,-0.042640932,-0.014633593,-0.018934028,-0.012344065,0.022895273,-0.003943075,0.0023667535,-0.010775316,-0.03508186,-0.0023137552,-0.02133258,-0.029242957,-0.007910377,0.05291352,-0.015760185,0.02887954,-0.007983061,-0.0041641537,0.0175167,0.0015642075,-0.03450039,0.04399769,-0.012222926,-0.016995804,0.0012144186,0.008685667,-0.025972204,0.027619695,0.040508885,0.033119407,0.009394331,0.012743824,0.02313755,0.014875871,0.009618438,0.023270804,-0.014451885,0.00782558,-0.043513134,0.004155068,-0.021659655,-0.007831637,0.015869211,-0.02151429,-0.04695348,0.0096123805,0.036656667,0.03857066,-0.011156904,0.0041702106,-0.013034558,-0.0024318658,-0.001503638,0.016692957,-0.0055027395,-0.009666894,-0.03428234,-0.015639046,0.008879489,-0.04004856,0.051992863,-0.040072784,-0.035929833,-0.003670512,0.0031193297,0.0025666328,-0.041502226,0.0238765,-0.019491266,0.0096123805,-0.014185378,0.012852849,-0.034912262,-0.0130709,0.01614783,-0.043125488,0.00661419,-0.03341014,0.011423409,-0.026917089,0.008510016,0.009878887,-0.03437925,-0.08314982,-0.017831663,0.027716607,-0.009018799,0.0012537888,-0.004669909,-0.025414964,-0.009563925,0.0027377417,-0.026480988,-0.0004198224,-0.024361055,0.02589952,-0.021368923,-0.00015426296,0.016268969,0.01875232,0.0031768705,-0.0072986255,-0.014851643,0.0065475637,0.0010569379,0.008128428,0.013555456,0.008764408,0.004203524,0.023016412,0.027159367,0.018982483,-0.014173265,0.0043943175,0.05049074,-0.033458594,0.009242907,-0.024070323,0.006656589,0.013591797,-0.01611149,-0.017298652,-0.05170213,0.013955214,-0.007934606,-0.033773556,-0.03437925,-0.021659655,0.009751691,0.026723266,0.032683305,-0.013325292,0.023840157,0.05039383,0.0066868737,-0.019891025,0.022895273,0.035663325,0.0064324816,-0.050684564,0.014694163,0.027619695,-0.003885534,0.024954638,-0.0013968842,0.025657242,0.0046032825,0.0047880197,0.005466398,0.017819548,-0.002319812,-0.012041218,-0.010678404,-0.009842545,0.032004926,0.03387047,0.009406445,-0.012877077,-0.00033142878,-0.01968509,0.012029104,-0.0009002143,0.029824425,-0.0036795975,-0.035227224,0.02322235,0.053252712,-0.0020866196,-0.018667523,-0.0032980097,-0.017746866,0.033385914,0.048382923,0.025729926,-0.033119407,0.010781372,-0.01366448,0.014851643,-0.021635428,-0.025196915,0.00088355766,0.031278092,-0.0103392145,0.00953364,0.05601468,-0.0189098,-0.009418558,-0.042592477,0.007867979,-0.0031132726,0.027474329,0.007147202,-0.0032980097,0.039539773,0.0026014603,-0.03968514,-0.002981534,-0.02046038,-0.025875293,0.014766846,0.015905552,0.029751742,-0.010775316,0.047898367,0.018485814,-0.010563322,-0.042713616,0.004000616,0.007916435,0.011417352,0.0077892384,-0.008667496,-0.004288321,0.008479731,0.0121563,-0.019782001,-0.013458544,-0.013688709,0.010042424,0.0072501698,0.014960668,-0.035687555,0.018897686,0.01477896,-0.02375536,0.026602127,-0.014803187,0.0008040602,0.017032145,-0.016474906,0.03517877,0.0028694803,-0.0440946,0.039588228,-0.00092595635,-0.019430697,-0.0036402273,0.030769309,0.034888037,0.0048273895,0.00895823,-0.020787455,0.022144211,-0.025148459,0.044603385,0.007734726,-0.0038007365,-0.036680892,0.0038825055,-0.010272589,0.0056087365,-0.012210812,0.008534243,-0.020642089,-0.0018110282,0.016971575,-0.0019230818,0.028491896,0.038110334,0.029921336,0.029291414,0.022035187,0.010932796,0.007116917,0.030139387,0.015578477,0.031350777,-0.0025302912,-0.012622685,0.010054538,-0.0034645759,0.008400991,0.01630531,0.010405841,0.042616706,0.015941894,-0.0130103305,-0.009242907,-0.025342282,-0.007970947,0.005414914,-0.010321044,-0.00981226,-0.004203524,-0.02778929,0.019769887,-0.032004926,0.0108056,-0.013107241,-0.0072259423,0.0038825055,0.015093921,0.028152706,-0.034766898,-0.036680892,0.011108448,0.03794074,-0.026892861,0.01912785,-0.022907387,-0.00909754,0.011417352,-0.00076090446,-0.01571173,0.006402197,0.0018488842,0.03934595,-0.062265452,-0.012719597,0.038376838,0.025681471,-0.018582724,0.01732288,0.011417352,0.023089096,0.008497902,-0.016559703,0.046493154,-0.032901358,-0.03762578,-0.008570585,-0.021429492,0.020327127,0.019891025,0.04751072,-0.012325895,-0.050975297,-0.031714194,-0.003688683,0.043198172,0.034984946,0.007765011,0.0042156377,0.025560332,-0.0015452795,0.007843751,-0.0522836,0.059745762,-0.010042424,-0.035566416,0.004058157,0.021623313,-0.0015975208,-0.0015255945,0.004248951,-0.0038461636,-0.03033321,-0.011199302,0.027110912,0.013264722,-0.00008422947,0.0033616077,0.04111458,-0.010139336,0.03815879,0.0069230944,-0.004784991,-0.0108601125,0.010799543,-0.010557265,0.011526377,0.0070502907,-0.0038279928,-0.04915821,-0.06197472,-0.00476682,-0.018740205,0.00220473,-0.0019094537,-0.01863118,-0.018207194,0.01974566,0.024978865,0.005557252,0.05049074,-0.036123652,-0.035106085,0.021635428,-0.020072734,-0.015602705,-0.014040012,0.022701452,0.00760753,-0.015021238,0.0063052857,-0.00683224,0.016608158,-0.032901358,0.017286537,0.0391279,-0.0166445,0.03859489,-0.009388274,-0.03207761,0.010841941,0.038425297,-0.046686977,-0.00016940534,-0.01639011,0.004812247,-0.028734174,0.021162985,-0.0017913432,0.005866157,0.017892232,-0.017504588,0.05465792,0.009757748,-0.031811103,0.04210792,-0.03697163,0.029703286,0.010327101,-0.020714771,0.0038401068,0.036075197,-0.027401645,-0.035324138,-0.031447686,-0.047583405,0.021889819,-0.02943678,0.010296816,0.003370693,-0.0122471545,-0.049085528,0.00909754,-0.0009198994,-0.028734174,0.02359788,-0.0030693598,-0.006090264,0.028104251,0.05911584,-0.0016762611,-0.030236298,0.017298652,0.015905552,0.0023940098,0.017722638,0.00987283,-0.020593632,-0.024106665,-0.013737164,-0.010193848,0.059212748,-0.0064082537,-0.009073312,-0.0037371386,0.024300486,-0.015941894,0.024445852,-0.009321647,-0.01086617,0.0052786325,-0.018788662,0.03464576,-0.0635253,-0.010793486,0.0039915303,-0.020411924,0.0015808641,0.016341653,-0.0065475637,-0.012029104,0.014124809,0.021162985,-0.03152037,0.010835885,-0.0544641,0.008304079,0.0119867055,-0.021720225,-0.0063416273,-0.024954638,-0.009503355,-0.0028952225,0.0030814738,-0.027716607,-0.00047698486,0.0023970383,-0.021780794,-0.023428285,-0.018182965,0.030963132,-0.00033616077,0.02046038,0.02018176,0.012440977,0.007728669,0.022398604,-0.031229638,0.021635428,0.010133279,0.044821434,0.010799543,0.024518536,0.0046335673,0.052332055,0.010333158,-0.0022819561,0.012828621,0.020363469,0.0047365353,-0.0020305926,0.0004251222,0.00019609378,-0.016075147,-0.001956395,-0.031689964,-0.046468925,-0.0012749882,0.0369474,0.0019927367,-0.03152037,0.031375006,0.01875232,-0.0043852325,0.034888037,0.028467668,-0.0040823845,-0.019672975,0.040823847,0.00454877,-0.012586343,0.013046672,0.023307147,0.034669984,0.013591797,-0.0023046697,-0.023125438,0.010732916,-0.0023985524,0.000923685,-0.012622685,-0.021805022,0.0013196581,-0.0013469144,0.023125438,-0.014803187,0.034669984,-0.017613612,0.026044888,-0.0013416145,-0.025269598,0.03331323,-0.03263485,-0.008031516,-0.0123864645,-0.008413104,-0.01543311,0.0106178345,-0.049763907,-0.00211539,0.029848652,0.006384026,0.0090914825,0.020702658,-0.013301063,0.023307147,-0.027934657,0.01207756,0.0018503984,0.018328333,0.04179296,0.013531228,-0.013301063,-0.0062144315,-0.0054451986,-0.01602669,-0.032925583,0.032368343,0.00087295804,-0.0062871147,-0.023149665,0.036559753,0.025947977,0.022980072,-0.011096334,0.0073289103,0.0042004953,-0.0024863782,0.004312549,-0.009467014,-0.008443389,0.027595468,-0.035881374,0.025172686,0.0016202343,-0.008824977,0.012937646,0.021284124,-0.032683305,0.00572079,0.0031102442,0.00923685,-0.016002463,0.029291414,-0.0026771722,0.020957049,0.014754732,-0.007504562,0.012204756,-0.012289553,-0.012804394,-0.006153862,-0.0077892384,0.018098168,-0.02288316,0.00093428465,0.0007927034,-0.00061326625,-0.019043053,0.012277439,0.028176935,0.00846156,-0.0053604012,0.018049713,0.030575488,0.023440398,-0.015905552,-0.022192668,-0.011914022,-0.0072925687,0.0069594365,-0.033458594,-0.008467617,-0.008013345,-0.020981276,-0.010472468,-0.022871045,0.01636588,0.012023047,0.0004077085,-0.014403429,0.03219875,-0.0007544689,-0.016523361,0.007474277,-0.00967295,0.0007927034,0.0057874164,0.030405892,0.019782001,0.005339202,0.009703235,-0.03617211,0.038231473,-0.0058903843,0.000013687289,-0.016777754,0.04411883,-0.0025878323,-0.006199289,0.024118777,0.009382216,-0.013955214,0.006365855,0.017868005,0.0040309005,0.017056374,0.029509464,0.022980072,-0.026020661,-0.02049672,-0.036535528,0.01906728,0.0027195709,-0.012562116,-0.019479154,-0.017238082,0.031811103,-0.0018170852,-0.014403429,0.012204756,-0.0077589536,0.021817137,-0.00337675,0.029679058,-0.022592425,0.017104829,-0.012901305,0.033216316,-0.023997638,0.0319807,-0.030357437,-0.03341014,-0.05591777,-0.00653545,0.03571178,0.005869185,-0.020944936,0.02490618,0.025754154,0.031689964,0.010575436,-0.011677801,0.01592978,-0.014173265,0.013797734,0.023767475,0.03978205,0.03474267,0.007341024,0.02459122,-0.018122396,0.011435523,-0.009430672,-0.0073713087,-0.0130103305,-0.041647594,0.019600293,-0.019043053,-0.035445277,-0.0019018825,-0.02313755,0.00852213,0.01962452,0.008413104,-0.028637262,0.0117625985,-0.024736587,-0.028927997,0.02176868,-0.030938905,-0.0143792005,-0.006850411,-0.0075469604,-0.010569379,-0.021284124,0.007492448,-0.030090932,0.0065536206,-0.0033464653,0.012235041,-0.014633593,-0.03794074,-0.018316219,0.035663325,-0.017371334,0.018061826,0.0056874766,0.022798363,-0.032925583,-0.034573074,-0.0036644551,-0.016014578,-0.0066808164,-0.0039339894,-0.0034888035,0.02645676,0.0040793563,0.0010773801,0.0022925558,0.01322838,0.019733544,0.0051696072,-0.009206565,-0.05712916,0.01173837,0.0060508936,0.014306517,0.031593055,0.0023243548,0.0012507603,0.01571173,-0.016377995,0.013797734,-0.03408852,-0.027159367,-0.006995778,0.0072925687,-0.027256278,-0.013955214,-0.0056147934,-0.020811683,-0.0102362465,0.001394613,0.024615448,-0.02170811,-0.021962503,0.01726231,-0.015941894,-0.00032896813,0.022313807,0.024445852,-0.040944986,-0.03680203,0.013313178,0.020375581,-0.011029707,0.029824425,0.01605092,-0.018934028,0.018146625,-0.007831637,-0.0051120664,-0.012138129,0.023549424,-0.0031617281,-0.009170223,0.049666997,0.0034433764,-0.013531228,0.025536103,-0.014330746,-0.01630531,-0.00072418415,-0.015554249,-0.005218063,0.017213853,-0.00072039856,-0.029242957,0.014754732,0.003746224,-0.055190936,0.0018897686,0.026069116,-0.013385861,-0.021211442,-0.008588756,-0.011035764]},{"id":"guide-embeds-12","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Limits\nTitle ≤256, description ≤4096, field name ≤256, field value ≤1024, footer ≤2048, author name ≤256. Max 25 fields. Combined title+description+fields+footer ≤6000 chars.","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[0.031039027,0.016257921,0.025339039,-0.038708102,-0.020714276,-0.05435716,0.036998104,-0.024030633,-0.028448123,0.018278826,0.045081727,-0.009521571,-0.019483596,-0.025481539,0.015247469,0.0150401965,-0.011905203,0.0050328304,0.03150539,0.054823525,0.010953045,-0.0176311,-0.0070796446,0.025364948,0.012488157,0.00924305,-0.0021520695,0.024976313,0.053165346,-0.009055208,-0.002200649,-0.02339586,0.060989875,0.0010460773,-0.02302018,-0.0049356716,0.07751984,0.010940092,0.005236864,0.010551455,0.020688366,0.02089564,-0.011743272,-0.031971753,-0.0071638487,0.038371284,-0.015791558,0.018265871,-0.0040547643,0.02247609,0.02800767,0.010175775,0.0021326377,-0.002067865,-0.008388051,0.04303491,-0.02505404,0.02138791,0.008426915,0.0035722086,0.014573834,-0.027308125,0.015389969,0.013628154,-0.042983092,0.0059493626,-0.063373506,0.030106302,0.030728118,0.022722226,0.036816742,-0.008252028,0.0057679997,0.027644943,0.025494494,-0.02568881,-0.02488563,-0.003795674,0.022683363,-0.048294447,-0.022838816,0.011594295,-0.08720982,0.013952017,-0.017125875,0.035935834,0.01659474,0.0010274553,-0.045599908,-0.04637718,-0.07347803,-0.051843986,-0.025766538,-0.021750636,0.023952905,0.021310184,-0.016374512,0.01928928,-0.03635038,-0.021685865,0.05060035,-0.02365495,-0.040832642,-0.03793083,0.004093628,0.0013820853,-0.024445178,-0.0010072138,-0.024095405,-0.027049035,-0.07192349,0.0008906232,0.009417935,0.03015812,0.03686856,-0.016465193,0.008232596,0.03474402,-0.004786695,-0.02247609,-0.030235847,-0.029847212,0.019470641,-0.03989992,0.010985432,-0.006490214,-0.02396586,-0.011808044,-0.035702653,-0.047802176,0.037283104,-0.027256308,0.06456532,-0.0010363616,-0.04785399,-0.032956295,-0.02479495,0.029847212,0.007617257,-0.055548977,0.025675856,-0.018304735,0.013628154,0.032438114,0.009845435,0.05518625,-0.07264894,0.04547036,0.018784052,-0.0035041973,-0.004479025,-0.012585315,-0.05461625,0.0108235,0.018019736,-0.055393524,0.015856331,-0.019755641,-0.0038345377,-0.066689864,0.0078115747,-0.030391302,-0.0012744007,0.013511564,-0.016633602,0.015428832,0.012863837,-0.02184132,-0.043786272,0.028033579,-0.010681001,-0.05383898,-0.014301789,-0.01573974,0.012216112,-0.013602245,-0.009605776,-0.012280884,0.027904034,0.041869003,0.0004457164,0.05010808,-0.0150401965,0.056999885,-0.027074944,-0.0012476821,0.029121758,-0.017695872,0.027256308,-0.046739906,-0.0107911145,-0.030935392,0.019574279,-0.01888769,-0.014301789,-0.04409718,0.01056441,-0.037309013,0.010577365,-0.0132524725,0.008193733,0.031090846,0.012896224,-0.0038183446,-0.017734736,-0.0022751375,-0.016517011,0.03987401,-0.0524658,0.011199182,0.029873122,0.005327546,0.014560879,-0.026738128,-0.017462691,0.03285266,-0.0009675406,-0.056378067,-0.03228266,-0.001463051,-0.0533208,0.024548814,0.035909925,-0.026181083,-0.03443311,0.021828365,-0.027308125,0.0058198175,-0.01004623,0.044822637,0.015921103,-0.0030022098,-0.0064092483,-0.08606982,-0.03422584,0.05710352,0.0042458437,0.04368264,-0.04308673,-0.023266315,-0.0115554305,0.030572664,0.016296785,-0.007086122,-0.02559813,-0.03425175,-0.02261859,-0.055289887,0.014224062,0.019962914,0.06435805,0.04795763,0.030365393,-0.037075832,0.021193594,-0.035754472,-0.015389969,0.037309013,0.059901696,-0.047258087,-0.042179912,-0.0124492925,-0.04477082,-0.030624483,0.04311264,-0.004527604,0.040262643,0.033759475,0.0060335672,-0.049071718,-0.0007319303,-0.015014287,0.02500222,-0.0086924825,-0.050755806,-0.037619922,0.022566771,-0.0020370982,-0.03562493,-0.002658915,-0.0180586,0.0075783934,-0.013278382,-0.005440898,0.019561324,-0.013602245,0.0262329,0.016361557,0.06301078,-0.006814077,-0.00921714,0.032774933,-0.002186075,0.011328727,-0.02772267,0.015817467,-0.011775658,0.03987401,0.033552203,-0.013025769,-0.009320776,0.021232456,0.024380405,-0.01056441,0.017281327,0.04956399,0.026168128,-0.00081370573,-0.0183436,-0.04072901,0.0030167836,-0.0055510113,-0.034044474,-0.010797592,-0.03614311,0.026556764,0.04062537,-0.006587373,0.013084064,-0.043864,0.05896897,0.0042361277,0.02434154,-0.06477259,0.0010290745,-0.01869337,-0.015092014,0.041117642,0.032982204,-0.013084064,0.017527465,-0.028448123,-0.0074553257,0.020973366,-0.00484499,-0.07384076,-0.010240547,0.0034782884,0.004527604,0.069902584,0.005622261,-0.0027625512,-0.00250508,0.01198293,-0.0481649,-0.0042749913,-0.019911095,0.016244967,0.065031685,-0.0033050217,-0.026530854,-0.0058036246,-0.01344679,-0.027385853,0.04627354,-0.04705081,0.06917713,-0.055859886,-0.04249082,0.023875179,0.001522156,0.012157816,0.028966304,0.003769765,-0.043216277,-0.0016500818,-0.03855265,0.014768152,-0.02259268,0.0056902724,0.01803269,0.030209938,0.0010039752,-0.021828365,-0.009009868,0.04062537,0.016400421,0.007876348,-0.00090681633,-0.03932992,0.0031107038,0.025079949,0.003934935,0.0028791418,0.021711774,0.005907261,0.0473099,0.03741265,-0.03712765,-0.0372572,-0.028318578,-0.00935964,0.017138828,-0.010551455,0.0828571,0.0269454,0.04741354,0.012740769,0.0027495967,-0.02245018,-0.007157372,-0.0215045,0.025468584,-0.025986765,0.007733848,-0.020260867,-0.009398503,0.01697042,0.027593125,-0.012565884,0.01843428,-0.02743767,0.033811294,0.01869337,0.012293839,0.016128376,0.0012476821,-0.020377459,-0.023499498,0.0094956625,-0.048864447,-0.024289723,-0.05168853,-0.013304291,0.028214943,-0.028163124,0.062492598,-0.028940395,0.02143973,-0.02169882,-0.03909674,0.014042699,0.04715445,0.0015755934,-0.0094956625,0.012922132,0.012183725,-0.033034023,0.0032046242,-0.014612697,-0.03961492,0.0007582442,0.009022823,-0.0062408396,-0.024043588,-0.010842932,0.0062570325,0.0039997078,0.0054538525,-0.03453675,-0.016776102,-0.00060845754,-0.010130433,-0.00007291977,0.010065661,0.008569414,0.03881174,-0.0024791711,0.02023496,0.010156343,0.0538908,0.029847212,-0.004540559,0.04342355,-0.0039576055,-0.020247914,-0.031194482,0.018991325,0.025066994,-0.03715356,0.04583309,-0.0047186837,-0.042672187,0.009631685,-0.013058155,-0.021750636,-0.03339675,-0.06943622,-0.0005501622,-0.027593125,-0.021880183,-0.041299008,-0.007662598,-0.00034592615,-0.027774489,0.12363793,0.06964349,0.00801237,0.020908594,-0.0092948675,-0.02219109,0.01507906,0.01814928,-0.014431334,-0.034044474,-0.011251,-0.026219945,-0.02436745,-0.0128508825,-0.02153041,-0.0026151936,0.010577365,-0.023201544,0.011477704,0.04088446,-0.011069637,-0.022139274,-0.010901228,-0.015428832,0.010609751,-0.0475949,-0.013025769,-0.0076496433,0.032204933,0.016011786,0.024535859,-0.012948042,0.05080762,0.0014743862,-0.02743767,0.0033050217,-0.0067622587,0.0074682804,-0.0043009003,0.02625881,-0.02384927,-0.027411763,-0.061197147,-0.010616228,-0.021310184,-0.020779049,-0.016089512,-0.01453497,0.014314744,-0.05570443,-0.008763732,-0.004320332,0.03339675,0.023201544,-0.015921103,-0.04059946,0.02110291,0.028992213,-0.0019707063,-0.010473728,-0.01427588,0.017903145,0.0184861,-0.015998831,-0.008433392,-0.020455185,-0.022463135,0.051299896,-0.018615644,-0.023292225,0.038086284,0.014638606,0.023331089,-0.013019292,0.0094762305,0.011853385,-0.042646278,0.040521733,0.01869337,-0.032956295,-0.0028499942,0.006069192,0.0136540625,0.051040806,-0.0021941715,-0.043579,-0.006542032,-0.017009282,0.030287664,0.0012395856,-0.000817754,0.00498749,0.014198152,0.01846019,-0.018408371,0.008057711,0.0020743425,0.008679528,-0.016814966,-0.015389969,-0.011659067,0.024561768,0.0006040044,-0.026440173,0.022929499,0.022502,0.011937589,0.019755641,0.01387429,-0.0020840582,-0.02393995,0.0032985443,-0.026867673,-0.025507448,-0.030909482,0.0111732725,-0.0152604235,-0.0028354204,0.011976453,-0.023369953,0.0321013,-0.00877021,0.02505404,-0.012105998,-0.025351994,0.012909178,-0.0053826026,-0.016983375,-0.0530358,-0.023667905,0.0012233924,0.039433554,-0.009281913,0.03417402,-0.0008558079,0.01037657,0.012520542,0.008789641,0.045289,-0.037619922,0.017967917,-0.028499942,-0.05028944,0.0016614171,0.007571916,0.021491546,0.012578838,0.012403952,-0.020118369,0.0042749913,-0.023382906,0.016905647,0.00961873,-0.0024597393,-0.024134269,0.03533993,-0.01992405,0.058865335,0.01616724,-0.015532468,0.0076237344,0.008996913,0.01224202,-0.015584286,0.0005469236,-0.0076755523,-0.018239962,0.01628383,-0.0044498774,-0.004336525,0.0028143693,0.0022427512,-0.023577224,-0.013304291,0.022178136,-0.021711774,-0.001290594,0.006052999,-0.037594013,0.0055963523,0.007345212,-0.04065128,-0.02356427,-0.046998996,0.02330518,-0.03826765,0.003986753,0.007902256,0.017618146,-0.007818053,-0.043864,0.01739792,-0.009819525,-0.004572945,0.041299008,-0.044537637,0.023926996,-0.021880183,-0.028474033,-0.04440809,-0.02155632,-0.0066327136,0.04360491,0.012799065,-0.009489185,-0.007831006,0.027489489,-0.0031123231,-0.040754918,0.0079994155,0.03720538,0.0035916404,-0.028292669,0.008964527,-0.0776753,-0.009417935,0.032256752,-0.051869895,-0.0223595,-0.028292669,-0.014081562,-0.02184132,0.0075978255,0.020623595,-0.06404714,0.00065501285,0.027515398,-0.015869286,-0.012157816,-0.013977926,-0.0074099847,-0.003831299,0.007364644,0.01978155,-0.009625208,-0.014703379,-0.004783456,-0.0027074944,-0.004861183,-0.013032246,-0.02058473,0.026129264,0.0006420583,0.009113504,-0.004527604,0.0038151059,0.0033114988,0.0150401965,0.029199485,-0.028577669,0.037542194,-0.017410873,0.010318275,-0.000761078,0.01923746,-0.0021779784,0.019302234,0.02396586,0.031194482,0.003986753,-0.00245812,0.013459745,0.005641693,0.0070343036,0.0054020346,-0.05435716,0.010687478,-0.023719724,-0.021089956,0.0012193441,-0.0115554305,0.014625652,-0.01616724,-0.011017818,0.026582673,0.006085385,0.039459463,-0.026466083,0.0139649715,-0.015014287,-0.02502813,-0.0481649,0.013705881,-0.022346545,0.009132936,-0.0027139718,-0.05028944,-0.03285266,-0.0070343036,0.060108967,-0.055548977,-0.043164458,0.020403367,-0.029562213,0.012941564,0.003944651,0.010013843,-0.01136759,0.032697205,-0.01453497,-0.023616089,0.003157664,-0.0070213494,0.0052789664,-0.0776753,0.0010306939,-0.019613141,-0.0029018123,0.007856916,0.0018298258,0.020455185,-0.034873564,-0.10902523,0.008802596,0.029976757,0.0017812464,-0.02018314,-0.015415877,-0.0035203905,-0.013537472,0.008569414,-0.02316268,0.0023641996,-0.0007274772,0.03992583,-0.008575891,-0.019962914,-0.007979983,0.02479495,0.005117035,0.025066994,-0.016322695,0.025986765,0.0051720915,0.033552203,0.010123957,0.0022864726,-0.01779951,0.01011748,0.0068918043,0.05414989,-0.013692927,-0.006052999,0.009884298,-0.009372595,0.014211107,0.043501273,-0.035365835,-0.015389969,-0.034666292,0.0037147084,0.0011829095,0.002900193,-0.021051094,0.0063606687,-0.0030993687,0.0051591373,-0.0036240267,0.014224062,-0.000049819235,-0.022229955,0.029458577,0.01115384,-0.0029860167,0.016607692,-0.03308584,0.007533053,-0.0014104232,-0.024211995,-0.024587678,0.0032693967,-0.0053048753,0.005502432,0.0020354788,-0.004880615,0.009553958,0.020792004,-0.006551748,0.013809517,0.003585163,-0.03777538,-0.010901228,0.03692038,-0.013679972,0.014237016,0.039692648,0.0031900504,0.03365584,-0.030054484,-0.009353163,0.012190202,-0.007740325,0.020571776,-0.008446346,0.02826676,0.017061101,0.016128376,0.02327927,-0.018045645,-0.00018014878,0.0032774932,0.02384927,0.050781716,-0.0063282824,0.008847936,0.01507906,-0.007986461,-0.008621233,-0.0014832924,-0.04015901,0.028085398,0.0008088478,0.020766094,0.0043170936,-0.006088624,0.007954075,-0.052128986,-0.011788612,-0.006108056,-0.0019480358,-0.012935087,0.0107716825,-0.03176448,-0.00005627119,-0.008122483,-0.018680416,-0.027515398,-0.016193148,0.012494634,0.036557652,0.014664516,-0.017644055,0.013084064,0.04495218,0.00083718577,-0.04632536,-0.02190609,0.06352896,0.020118369,0.00238687,0.011399977,0.013382018,0.0028192273,0.069850765,-0.0034912429,-0.024380405,0.019729732,-0.03287857,0.07156076,0.0019528937,-0.04251673,0.010460774,0.01231327,0.0111732725,0.005272489,-0.03632447,0.0140556535,0.013498609,-0.049071718,0.02285177,-0.00038013415,-0.019729732,-0.007850438,-0.019587232,-0.04821672,-0.0041454462,0.025818355,0.023525406,-0.018563826,-0.010473728,-0.02058473,0.03264539,-0.0059526013,0.03585811,-0.010966,0.024522904,0.01224202,-0.030313574,-0.027515398,-0.0064675435,-0.0038701624,0.0019431779,-0.023732679,0.002462978,0.022372454,0.007746802,0.006794645,0.055030797,0.0058651585,0.0042005028,-0.00060117064,-0.01011748,-0.006166351,0.01063566,-0.022825863,-0.013809517,0.029173577,0.015195651,0.005107319,-0.016620647,-0.028033579,0.01573974,0.014936561,0.021828365,0.02342177,-0.02422495,-0.0006728253,0.021232456,-0.00699544,0.03982219,-0.0063185664,-0.010966,0.03147948,0.009838957,-0.03041721,-0.0022718988,-0.0017650533,-0.0075265756,0.0024694551,-0.018162236,-0.007261008,-0.00036009515,0.003934935,-0.018952461,0.008588846,0.027100854,0.005826295,0.03448493,-0.00082989887,0.07819348,0.0070731672,-0.0027997955,0.0044628317,-0.012637133,0.009994411,-0.009664071,0.006176067,-0.021426775,-0.0009885917,-0.0031544254,0.015299287,0.04251673,0.024315633,0.00027002074,0.0037503333,-0.03282675,0.021867229,-0.02583131,0.014314744,0.0057323747,0.020662457,-0.00994907,0.0111085,0.005188285,0.013304291,-0.029044032,-0.02640131,-0.007384076,0.01699633,0.020973366,-0.01739792,-0.0043430026,0.021180639,-0.008122483,0.034122203,-0.04044401,0.009754753,0.0018832632,-0.0032742547,0.012967474,0.010324752,-0.008834982,0.016076557,-0.0049130013,0.012799065,-0.029769484,-0.0031107038,0.011976453,-0.015959967,0.012747247,0.015519514,0.055289887,-0.00029835876,0.009165322,-0.014224062,0.0024743131,-0.020273821,0.028033579,-0.005826295,-0.0005934789,0.02798176,0.0033195955,-0.054046255,0.018822916,0.04655854,-0.0058554425,0.008264983,-0.015804512,-0.008167824,-0.019911095,0.029173577,0.010143388,0.01969087,0.007086122,-0.010085093,-0.0052951598,0.011212136,-0.0046862974,0.017980872,-0.019069051,0.02514472,0.022281773,-0.003543061,-0.01030532,-0.012520542,-0.013692927,-0.0082002105,0.010460774,0.019483596,-0.015921103,0.03850083,-0.0014120425,0.01250111,-0.015169742,0.020921549,-0.04176537,0.011477704,-0.01198293,0.008174301,-0.00082544575,-0.0047219223,0.017022237,-0.03717947,-0.0014954372,0.009119981,0.04197264,-0.013939062,-0.0042037414,0.015001333,-0.027385853,0.0064060097,0.003172238,0.008705436,0.0058101015,0.0030993687,-0.022035636,-0.028292669,0.005178569,-0.05228444,0.028292669,-0.04819081,-0.0049000466,-0.015027242,0.014573834,-0.03228266,0.022812909,0.007921688,0.004294423,-0.03803447,-0.03202357,-0.02075314,0.02597381,0.060730785,-0.016581785,-0.030598573,0.029406758,-0.023149725,0.02393995,0.026206993,-0.003100988,0.0084010055,0.04114355,-0.0038604466,0.016737238,-0.0006355811,0.009521571,-0.006438396,0.0030005905,-0.012060657,-0.007843961,0.00241116,0.009256003,0.02035155,-0.04435627,0.002900193,-0.008601801,-0.0024160177,-0.019250415,-0.017864281,-0.036013562,0.006535555,0.0011367591,-0.0040903892,0.004411014,0.038423102,0.03873401,-0.0518958,-0.013835426,0.0030103063,0.011205659,0.013407927,-0.015752696,-0.032412205,0.008731346,0.02611631,-0.0038021512,0.012118952,-0.007947598,-0.032386295,-0.014353607,0.027308125,-0.03940765,-0.033500385,0.00084771134,0.02084382,0.0022913306,0.043527182,-0.0023253362,0.009107027,0.021374956,-0.02063655,0.034070384,0.0140556535,0.033344932,-0.02110291,0.0047899336,0.024561768,0.02169882,-0.015791558,0.017527465,-0.015195651,-0.021996774,0.0032645387,0.015221559,-0.00862771,0.035676744,-0.0024403075,0.013291337,0.0032030048,-0.0020225244,-0.0010363616,0.008601801,-0.02419904,-0.02129723,-0.0016444143,-0.0019026949,0.016089512,0.02290359,0.008465778,-0.025442675,0.015662013,0.04337173,-0.02245018,0.011425885,0.017048147,0.016219057,-0.0021488308,-0.00010727961,-0.0061177714,-0.023616089,-0.0042620366,-0.001165097,0.02006655,-0.012559406,-0.004009424,-0.00031475432,0.0025747106,-0.0037341402,-0.047283992,-0.03261948,-0.023616089,0.014366562,-0.025766538,-0.008433392,0.04168764,-0.015389969,-0.009754753,-0.005249819,-0.038086284,-0.016659511,0.034847654,-0.00080722844,0.004728399,0.015610196,0.019988822,0.0030718404,0.054512616,-0.0028856192,0.01311645,0.016296785,-0.0015877382,-0.011335204,0.026349492,0.015143832,0.015351105,0.034096293,0.004116298,-0.013220087,0.022502,-0.011166795,0.024445178,0.00018379223,-0.04313855,-0.01158134,0.011833953,0.01387429,0.03829356,-0.031401753,-0.006470782,-0.015843377,-0.028292669,-0.007740325,-0.03964083,0.017954962,0.03365584,-0.019354051,0.004126014,0.021659955,-0.007299871,0.030831754,0.040029462,0.0011068017,0.009664071,0.0019091723,-0.00907464,0.0054797614,0.023810405,-0.031013118,0.008595323,0.019133825,0.028603578,-0.0029277212,0.026582673,-0.025442675,-0.0011399976,0.013602245,0.0033649362,-0.024665404,0.029924938,0.013822472,-0.038604468,-0.0043106163,0.034951292,-0.035702653,0.00467982,-0.0044142525,0.015273378,0.003594879,0.042387187,-0.031894024,0.015532468,0.014340652,-0.00314309,-0.013304291,-0.0366872,-0.012494634,0.009560435,0.002699398,-0.0067816908,0.01980746,0.0021261603,0.030132212,0.0043235705,-0.02089564,0.054253526,-0.0033649362,0.04331991,-0.02101223,-0.01645224,0.012967474,-0.011276909,-0.008044756,0.029121758,-0.012416907,0.005282205,-0.005667602,0.019198596,0.0026556763,0.014729288,0.00546033,-0.014612697,-0.018499052,0.013103496,0.010227593,-0.030184029,-0.029018123,0.019069051,-0.0057777152,0.0051591373,-0.029329032,0.03629856,-0.0052174325,-0.034148112,-0.022657454,-0.04337173,0.02020905,-0.0015092015,-0.03362993,-0.0073257806,0.025494494,-0.00074448,-0.011199182,-0.020455185,0.005126751,-0.022774044,-0.00602709,-0.0051040803,-0.009061686,-0.012209634,0.024639495,0.009515095,0.0023140009,0.0066197594,0.045340817,0.0076302118,-0.06948804,-0.032256752,-0.05085944,-0.014509061,0.005502432,0.0027690283,-0.014353607,0.011030773,0.0064416346,0.011859862,-0.020027686,0.009437367,-0.029173577,0.015804512,-0.005036069,0.031375844,0.03373357,-0.008711914,0.0022038876,-0.012935087,-0.013628154,-0.021336094,-0.04046992,0.05031535,-0.028940395,0.017877236,-0.011535999,-0.028707214,0.021970864,0.0067816908,0.0025892844,0.013887244,-0.0013027388,-0.04223173,-0.011380545,-0.012481679,-0.026245855,0.017592236,0.021284275,-0.02370677,-0.011244522,0.0321013,0.026789945,0.017980872,0.04065128,-0.007558962,-0.0136540625,0.003902549,0.0068075997,0.0020241435,0.0010047848,-0.02396586,0.03313766,0.02138791,0.03451084,0.029665848,-0.028214943,-0.024121314,-0.016270876,-0.024963358,-0.008990436,-0.0010323132,0.023745634,0.010104525,0.041039918,-0.0084010055,0.03966674,0.01252702,-0.01219668,-0.015804512,0.0072221444,0.04894217,-0.05083353,-0.0044142525,0.018615644,0.0010679382,-0.006412487,0.027696762,0.015092014,0.017864281,-0.03425175,0.004469309,-0.0062440783,0.030598573,-0.0012088185,0.02035155,-0.031090846,0.016529966,-0.000964302,0.020766094,-0.026414264,0.019716777,0.07342622,-0.010247025,-0.02479495,0.007636689,-0.0051850462,0.04150628,0.06762259,0.010914182,-0.010959523,-0.0031398516,0.04046992,0.03749038,-0.05549716,0.022139274,0.0023625803,0.030209938,0.008718391,-0.00420698,-0.022294726,0.02318859,0.03749038,0.029743575,0.0052077165,0.020403367,0.004151923,-0.046480812,0.017825417,-0.005133228,-0.022217,-0.005023115,0.023292225,-0.05549716,-0.0034782884,-0.0058457265,-0.014599742,0.011477704,-0.0072739623,-0.066638045,-0.0035657312,0.027929943,-0.0057420903,-0.034096293,0.034096293,-0.0072350986]},{"id":"guide-editing-embeds-0","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Overview\nThe Fluxer API supports editing existing messages via PATCH. You can update the message content, embeds, or both. Only the message author (or admins with proper permissions) can edit messages.","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[-0.0024551915,0.012330062,-0.01213119,-0.017980365,0.011768541,0.011505328,0.015605601,0.03560978,-0.007364112,-0.01638939,0.022109883,-0.026204307,0.009259244,0.0146814305,-0.008569042,0.0432839,0.018027158,0.00020069984,-0.023186132,0.04625528,0.009569251,-0.018974725,0.013043662,0.06990935,-0.026274497,-0.016728641,0.0098090675,0.035796955,-0.0021715064,-0.033597663,0.023654066,-0.011452686,0.038136624,0.0116398595,-0.028543977,0.018553585,0.028333407,0.04290955,-0.020904953,-0.024660124,0.019290581,0.009300189,-0.020940049,0.01588636,-0.0146112405,0.05498225,-0.034346357,0.025385423,-0.009733028,0.03996157,0.020413622,0.0027403387,-0.0054602055,-0.025081264,0.002816378,0.022098185,-0.019126805,-0.00021824737,-0.050302908,0.016962608,-0.002278254,-0.014155005,0.0053461464,0.0016275331,-0.034065597,0.019161899,-0.037879262,0.041178197,0.032521416,0.04992856,0.049834974,-0.024098603,-0.006872781,-0.032100275,0.010370588,-0.03504826,0.014459162,0.024519743,-0.018705664,-0.037504915,0.012447045,0.010019638,-0.092042625,-0.0020574476,-0.047799464,0.065230004,0.0074810954,0.001975559,-0.016915815,-0.06822478,-0.058866102,0.0029392107,-0.06307751,0.009241697,0.045459792,0.02660205,-0.06036349,-0.007656571,-0.00078013376,0.049554214,0.082917914,-0.038347196,-0.07468227,-0.05526301,0.0046793404,-0.039025698,-0.000058720238,0.056526434,-0.02709338,-0.038721543,-0.07360602,-0.05526301,-0.0020720705,0.004547734,0.024145396,-0.038043037,0.012154587,0.016857324,0.02901191,-0.012821393,-0.054139968,-0.017723002,0.051191986,0.0016874871,-0.011932318,-0.051004812,-0.014658034,-0.023151036,-0.07908085,-0.019360771,0.030017968,-0.06902027,0.051004812,-0.027467728,-0.040991023,0.018927932,0.024005016,0.023525383,0.00094025495,-0.022250263,0.02590015,-0.025666183,-0.003682056,0.017652811,-0.03277878,-0.002667224,-0.04576395,0.02234385,-0.00057650934,0.037200756,-0.023572177,0.0043751835,-0.023735953,0.0119791115,-0.038066436,-0.009452268,0.02831001,-0.03797285,-0.013090455,-0.021162316,-0.019817006,0.0037288493,-0.0065042833,-0.040569883,-0.00829998,-0.039891377,0.012318363,-0.037855864,-0.021513268,0.016681848,-0.03640527,-0.043798625,-0.01270441,0.0048489664,0.008826406,-0.023326512,-0.0016714019,-0.045015253,-0.0038575314,0.0546079,-0.005767287,0.017816588,-0.036709424,0.012833091,-0.015991647,0.017173178,-0.048992693,0.029924382,-0.043658245,-0.017021101,-0.020694382,0.007820347,-0.005577189,-0.014997286,-0.028426994,-0.010013789,0.042722378,-0.0034100693,0.043120123,-0.03680301,0.019957388,0.034205977,0.024800504,0.006059746,-0.010002091,-0.0062118242,-0.014377274,0.016494675,-0.039423443,0.023934826,0.03235764,0.038160022,-0.025923546,0.022952165,-0.024005016,0.046348866,-0.007913934,0.0023572177,-0.072108634,-0.034744103,-0.051425952,-0.012283268,0.07196826,0.011429289,-0.022928769,0.038277004,-0.022402342,0.0075922296,-0.045646966,0.039704204,0.019933991,-0.0011925007,-0.04143556,-0.043939006,0.02688281,0.011429289,-0.051847093,-0.005290579,0.0048255697,0.00039335704,-0.03724755,-0.030345522,0.010581158,-0.006129936,-0.039189477,0.014412369,0.008212242,-0.052455407,0.03305954,0.06415376,0.08853312,0.012142888,0.040686864,-0.012891583,0.037598502,-0.066353045,0.012645918,0.038885318,0.011967413,-0.022577818,0.03427617,0.039259665,-0.03808983,-0.01333612,0.014388972,-0.006422395,-0.0029977025,0.021220809,0.007890537,-0.052970134,-0.030883648,0.015476919,0.014061418,0.021092126,-0.032030087,0.004556508,0.042698983,0.00008239112,0.015699187,0.008387717,-0.0084930025,-0.054280348,-0.034790896,-0.02716357,-0.0001955818,0.00095487793,0.016167121,-0.01426029,0.027678298,0.008680177,-0.019980785,0.0029099649,0.0446877,-0.0011537499,0.0005001045,0.055871326,0.016787134,-0.0059778574,0.006726552,0.0496478,-0.016050138,-0.011025696,-0.0137221655,0.0042903703,0.036709424,-0.0076331743,0.014225195,-0.009493212,0.069722176,-0.046068106,0.029784001,0.015652394,-0.050256114,-0.055450182,-0.021033635,0.045436397,0.029409654,0.030485902,0.0068259877,-0.0048548155,0.011072489,-0.005662002,-0.005085858,-0.080578245,-0.042535204,-0.07533738,-0.004378108,0.0069663683,0.04293295,0.036919996,0.026204307,-0.022952165,0.029924382,0.028684357,0.013839149,-0.023735953,0.02354878,0.030181745,0.041388765,-0.0031527057,0.002961145,-0.0567604,-0.0035036562,-0.01326593,-0.06785043,-0.011025696,-0.033433888,0.0035943184,0.002263631,0.008516399,-0.030275332,0.001035304,-0.035165243,-0.047448512,0.055450182,-0.012119492,0.01333612,-0.050630465,-0.0034422397,-0.03163234,-0.011815335,0.0034217676,-0.01752413,0.052127853,0.0044599962,-0.014856906,-0.009224149,0.014739922,-0.030415712,-0.022542723,0.007030709,-0.0072763744,0.012259872,0.020869859,-0.05526301,0.034088995,0.019688325,-0.03411239,-0.036756217,-0.0021305622,0.03383163,0.037598502,-0.017021101,-0.028076043,-0.018647172,0.0056152083,0.02150157,0.000021865862,-0.017372051,0.033597663,-0.007469397,0.009042826,0.011189473,-0.03694339,0.0674293,0.03853437,0.025666183,0.027210364,0.024987677,-0.0032813875,0.012119492,0.009885106,-0.01695091,0.013558389,-0.008411114,-0.002981617,0.019442659,0.013511595,0.0065510767,-0.029105498,0.013511595,-0.01199081,0.03462712,0.038464177,-0.02419219,-0.0124587435,0.053578448,-0.03996157,-0.005299353,-0.0058345525,0.0054602055,-0.029971175,-0.018307919,0.0142017985,0.05938083,-0.047284734,-0.004761229,-0.02377105,-0.020589098,-0.036218096,-0.05647964,-0.0068259877,0.05760268,-0.00464717,0.017360354,0.0011500941,0.035913937,-0.014482559,-0.019056614,-0.0007889076,-0.035867143,0.021524966,0.021489872,0.00010565073,-0.03397201,-0.0123885535,-0.029175688,0.023747653,0.012154587,-0.029128894,-0.015687488,-0.030673077,0.037130564,-0.021653648,-0.05484187,-0.0020676835,0.009715481,0.069535,0.07968917,0.03341049,0.009101317,0.010943808,-0.021630252,0.03780907,0.0050683105,-0.024309173,-0.010282851,0.027491124,-0.004071026,0.0066797584,0.0025955716,0.021302698,-0.0066505126,0.02582996,-0.02887153,-0.068645924,-0.05165992,-0.040967625,0.038136624,0.029316068,0.009113016,0.00716524,-0.01284479,0.018226031,-0.013172343,0.08614666,0.019700022,-0.0134765,0.00351243,-0.029479844,-0.011189473,0.009013579,-0.010639651,-0.010692293,0.017617717,-0.06710174,-0.061065394,-0.032685194,0.02489409,-0.011499479,-0.005085858,0.02256612,-0.018846044,-0.0014622939,0.0560585,0.0071125976,-0.007264676,-0.0054514315,-0.001621684,0.005547943,0.016611658,-0.004307918,0.016798832,0.029175688,0.021489872,0.02164195,-0.03341049,0.039750997,-0.0068903286,-0.034673914,0.030345522,0.024122,0.020366829,-0.008832255,0.0025063718,-0.02398162,-0.051191986,-0.046161693,-0.0038721543,-0.019817006,-0.010739086,-0.0234084,0.016330898,-0.01617882,-0.05924045,0.025502406,-0.035024863,0.016553167,-0.02382954,-0.0038341347,-0.03626489,0.025783166,-0.0024902865,0.01738375,-0.03376144,0.014962191,-0.016822228,0.044945065,-0.0129032815,0.016401088,0.03808983,-0.020378528,-0.00659787,0.011236266,0.018541886,0.061252568,-0.01340631,0.0034656364,0.005094632,0.018810948,0.007598079,-0.024309173,0.018272825,0.009423022,-0.031538755,-0.020811366,0.020144561,-0.023104243,-0.016646754,-0.011803636,-0.020191355,0.010973053,0.01354669,0.03284897,0.018822648,0.04078045,-0.060971804,0.021326095,-0.019735118,-0.0032111974,-0.005021517,-0.0631243,0.023864636,-0.016857324,-0.033316903,-0.012025905,-0.04440694,-0.00047597665,-0.037060376,0.006398998,0.0248239,0.046138298,0.01361688,-0.010095677,-0.014704827,-0.020507209,0.011481931,-0.018623775,-0.016845625,0.01546522,-0.02382954,-0.0034305414,-0.022601215,0.011160227,0.018787552,0.04548319,0.0043751835,0.0021144769,-0.023455193,0.0014140382,0.004129518,-0.020811366,-0.01667015,-0.018857742,-0.003319407,0.007656571,0.034650516,0.017255068,0.049975354,0.034463342,0.03312973,0.009738877,-0.007159391,0.0077033644,-0.037200756,0.008030918,0.0025414668,-0.042371426,0.025081264,-0.016646754,0.049133074,-0.00496595,0.028497184,0.044079386,-0.008908294,-0.033948615,0.032193862,0.024519743,-0.018974725,-0.01447086,0.02639148,-0.036569044,0.03610111,0.0037346985,-0.016096931,-0.024145396,-0.007726761,0.009165658,-0.0010470024,-0.012786298,-0.018237729,-0.016646754,0.019325675,0.0041616885,0.025198247,-0.020308338,0.03284897,0.009253396,0.004907458,-0.011049093,-0.025525803,0.007960728,0.0063697523,0.038604558,-0.010089828,0.004588678,-0.04765908,-0.02347859,-0.010739086,0.03256821,-0.018974725,0.00723543,0.010212661,-0.010686444,-0.00017584083,-0.016915815,0.025081264,-0.04782286,0.018226031,0.04604471,-0.016506374,0.016541468,-0.026157513,0.0054923757,0.033527475,-0.037341136,-0.04426656,0.00808941,0.012002508,-0.035001468,-0.025666183,-0.0051969923,0.009639441,-0.036756217,0.03640527,0.037504915,0.008902445,0.01440067,0.017687907,-0.039189477,0.028894927,0.0020486738,-0.012786298,-0.037855864,0.013827451,-0.05633926,-0.014026323,-0.006352205,0.055496976,-0.01120702,0.0005161897,-0.0013709005,0.009083769,-0.016728641,-0.016295804,-0.006165031,-0.015500315,0.0262511,0.024449553,0.018343015,0.003369125,-0.007878839,-0.019466056,0.0163192,-0.018693965,-0.066306256,0.021513268,0.051987473,-0.0019872573,0.004878212,-0.019372469,0.0023396702,0.010072281,0.0085456455,-0.0142368935,0.00063573226,0.00929434,0.013827451,-0.024800504,0.015921457,-0.004498016,0.029526638,0.040335916,0.008879049,0.016330898,-0.0025721749,0.020413622,0.020062672,0.008522249,0.0047290586,-0.03413579,0.007399207,-0.011534574,0.008703574,-0.038464177,0.001667015,0.024636727,-0.006235221,-0.03949363,0.007691666,0.036498856,0.054139968,0.0026993945,-0.026999794,-0.03376144,-0.013324422,-0.014962191,-0.0034305414,0.009580949,0.013663674,-0.021665346,-0.005893044,-0.028286614,0.008481304,0.024847297,-0.021653648,-0.028193027,-0.024449553,-0.0071359943,0.0076390235,-0.005372468,0.012306665,-0.030228538,-0.031959895,-0.029175688,0.010405683,-0.0053753923,-0.037364535,-0.016869022,-0.004673491,-0.012505537,-0.030134952,0.00610069,-0.029433051,-0.019372469,0.019524548,0.01035889,-0.06771006,0.03170253,0.02213328,-0.009423022,0.006632965,-0.01035889,0.0052086907,-0.0027783583,0.04251181,-0.027420934,0.030602887,-0.011154378,0.016588261,-0.022039693,0.009376229,0.011113433,-0.003348653,0.01595655,0.015991647,-0.014739922,0.0073173186,0.011768541,0.007978275,0.026999794,0.009627743,0.036615837,-0.000347112,0.013160645,0.018576981,0.015418427,0.017606018,0.024309173,-0.007937331,-0.015196158,0.025502406,0.023256322,0.003696679,-0.02489409,-0.0133478185,-0.0461149,0.024589933,0.0047787763,-0.0062293718,-0.016564865,-0.008750367,0.03200669,0.0013438481,-0.008247337,0.0093996255,-0.02398162,0.041973684,-0.008996032,-0.021290999,0.0049279304,0.025783166,-0.0085456455,-0.01610863,0.037738882,0.010148319,-0.022261962,-0.000079283745,0.016986005,0.02503447,0.0012875497,0.002512221,-0.014775017,-0.012353458,-0.006463339,-0.055824533,-0.051472746,-0.00624107,0.0013153333,0.040289123,0.043517865,-0.0007538125,0.0068786303,0.009130563,-0.017500734,0.018483395,0.017676208,-0.0133127235,0.009610196,0.043260504,0.02248423,0.010019638,0.0078086494,-0.008381869,-0.019477755,0.0044161277,0.03752831,0.05830458,-0.01745394,0.0048489664,-0.019817006,0.013991228,-0.010095677,-0.011891373,0.013382914,0.014786716,-0.011908921,0.023712557,-0.00031878008,-0.016202217,-0.016986005,-0.037621897,-0.008223941,0.0028777944,-0.0049250056,-0.013675372,-0.0075863805,0.0094698155,0.0073407153,-0.004243577,0.030088158,-0.012973472,-0.0065861717,0.009692084,-0.027257157,0.014529352,-0.011265512,0.0468168,-0.0026365158,-0.046512645,-0.030673077,0.0056795496,-0.011037394,0.010002091,0.015605601,-0.008574891,-0.010405683,-0.0016860248,0.021092126,0.004454147,0.014552749,-0.021700442,-0.0029245878,0.024075206,0.019290581,-0.007358263,0.038206816,0.000741383,-0.01681053,0.03811323,-0.0040768753,-0.0054104873,0.02688281,-0.016541468,0.0461149,-0.03879173,-0.05053688,0.015862964,-0.008574891,-0.047214545,0.0072120335,0.03731774,0.025783166,0.004427826,0.0016787134,-0.045249224,0.022449136,0.0129383765,0.031538755,-0.012259872,-0.015734281,-0.04227784,-0.013944435,-0.002617506,0.010002091,-0.011727597,-0.00038677672,-0.016997704,-0.022648009,0.013453104,-0.010698142,-0.009253396,0.03783247,0.03528223,0.017255068,0.049741387,-0.0035855446,-0.008604137,0.015313142,0.02354878,0.0034246922,0.011400043,-0.01340631,0.027350744,-0.0065803225,-0.016939212,0.013804054,0.015628997,0.02575977,0.026953,0.03135158,0.003936495,-0.012505537,-0.03341049,0.0038575314,-0.029620225,-0.0036615839,0.0019419263,0.012435347,0.010780031,-0.020413622,0.005299353,-0.020752875,0.0037230002,0.0066446634,0.008744517,0.026134117,-0.0017591396,-0.0012107793,-0.0037113018,0.014505955,0.0012656153,-0.002439106,-0.013991228,-0.024075206,0.013710467,0.009721329,0.0034773347,-0.006352205,-0.0036615839,0.037504915,-0.041809905,-0.008633384,-0.029058704,0.0020866934,-0.015067476,0.01731356,-0.008393567,-0.020355131,-0.011481931,-0.027935663,0.036498856,-0.00596031,-0.021115523,-0.018343015,0.0023966997,0.04412618,0.013453104,0.05718154,-0.03425277,-0.056807194,-0.0062469193,-0.010902863,0.011312306,0.038019642,-0.013921037,-0.025806563,0.01752413,-0.016132027,-0.002189054,-0.0525022,0.04562357,0.024917487,-0.044243164,0.0028193027,0.0028090666,-0.027795281,0.013628579,-0.0142017985,-0.0069488203,-0.02582996,-0.012716108,0.0037200756,-0.012248173,0.014751621,0.04106121,0.0037434723,-0.020390226,0.017173178,-0.018214332,0.0046881144,-0.03575016,-0.0062527684,-0.001289012,0.030181745,-0.015699187,0.012107793,-0.022297056,-0.0070482567,-0.03284897,-0.008873199,-0.018003762,0.020624192,0.025525803,0.006363903,0.018249428,0.021665346,0.0049279304,0.030392315,-0.01298517,-0.029245878,0.036194697,-0.022086486,-0.016857324,0.013418009,0.027631504,-0.000049306724,0.0090077305,0.0016947986,0.007609777,-0.0035299775,-0.014997286,-0.017559225,0.010048884,0.030111555,0.047565494,-0.002294339,-0.00142793,-0.011253813,0.0038487576,-0.050770845,0.023361607,-0.015558807,-0.008586589,-0.036335077,0.019641532,0.01234176,0.008627534,0.0031614795,0.013534992,0.03242783,-0.0051969923,-0.03242783,0.027280554,-0.031585548,0.014002927,0.016225614,0.021618553,-0.0013804054,-0.02249593,-0.051987473,-0.02831001,0.00020179656,-0.025057867,0.047565494,-0.016728641,0.029433051,-0.027257157,0.0060246508,-0.02405181,0.022893673,0.02475371,-0.028216423,0.009335284,0.011382496,-0.0326384,0.0046208487,0.044453733,-0.010850221,0.003278463,-0.008873199,0.033153128,0.019945689,0.007937331,0.020612495,-0.0060071032,-0.014587844,-0.026157513,0.0073114694,0.031047424,0.0042318786,-0.0014242743,-0.0066154175,-0.017886778,0.003731774,0.0133127235,-0.023525383,0.0004657406,-0.018834345,-0.029175688,0.047799464,-0.051051605,0.0020091918,0.002402549,-0.005723418,0.036147904,-0.012891583,-0.034533534,0.010850221,0.015231253,-0.011429289,-0.035867143,0.00886735,-0.0021013163,0.011025696,0.04120159,-0.020916652,-0.009083769,-0.010399834,0.012645918,-0.026485067,-0.0016626281,0.0009958221,-0.023443496,-0.035001468,0.009159809,-0.032170467,-0.017290164,0.03582035,0.046770006,0.0039394195,0.02291707,-0.0048986846,-0.0027447257,0.019606436,-0.034814294,0.0006159913,0.018050555,0.05348486,-0.01603844,0.020437019,-0.016365994,0.04796324,0.009452268,0.022238566,-0.0008064551,0.026976397,0.008914144,0.024847297,-0.0033662005,0.022601215,-0.0042728228,0.028193027,0.006106539,-0.028216423,0.027420934,0.011277211,-0.0037785673,0.0053110514,0.013710467,0.0016714019,-0.0034714856,0.02590015,0.033644456,-0.04880552,-0.0093996255,0.015289745,0.011306456,0.038183417,0.012856488,0.032661796,0.013534992,0.0038867772,-0.019454358,-0.008604137,0.02370086,0.018822648,-0.0030386467,-0.03483769,-0.00010565073,-0.009335284,0.009616044,0.0060538966,-0.039283063,0.015874662,0.0061533325,0.015593902,-0.015909757,-0.05292334,-0.015453522,-0.0071476926,-0.030181745,-0.010744936,-0.013967832,-0.012353458,0.0065101325,-0.024870694,-0.005925215,0.034463342,-0.005226238,-0.00400961,-0.009996241,-0.014505955,0.037200756,-0.019887196,-0.019091709,0.009692084,0.017395448,0.026157513,0.0042465013,-0.02064759,0.0012385629,-0.029199084,0.008785462,-0.0076682693,0.015278047,-0.015032381,-0.010487571,-0.0074518495,0.024145396,-0.0027257157,-0.010815126,-0.011247965,0.016635055,-0.0111426795,-0.0019989558,0.03200669,-0.0038897018,0.025783166,0.0008517862,-0.018623775,0.013031963,0.013148947,-0.027631504,0.009165658,0.038557764,-0.022729896,-0.004512639,-0.007890537,-0.015102571,-0.0069254236,0.020378528,-0.038744938,0.0070014633,0.005758513,-0.013921037,0.00083423866,-0.026485067,-0.03142177,-0.012119492,0.004524337,0.0012656153,-0.020320036,0.008182997,0.026999794,-0.031094218,-0.016365994,0.008177147,-0.0014425529,0.00011378474,0.019969085,0.0075922296,0.014388972,-0.0045360355,-0.018413205,-0.026648844,-0.004512639,-0.029058704,-0.036569044,-0.01433048,-0.003611866,0.011616463,-0.0061825784,-0.01731356,0.0019390017,0.015944853,0.012599124,-0.04241822,-0.005553792,0.028567374,0.01255233,-0.006264467,-0.0004357636,-0.009703782,-0.0039891377,0.0048343437,0.034463342,0.022168376,-0.015781075,0.0030678925,-0.009686234,0.027795281,0.006428244,0.024777107,0.013710467,0.014412369,-0.000052596883,-0.005474828,0.0016289954,-0.024660124,-0.033246715,0.020413622,0.02845039,0.015558807,-0.0018585755,0.022074789,-0.036288284,-0.010844371,-0.008703574,-0.035352416,0.0028119911,0.0044424487,0.0059778574,-0.0024946735,-0.028263217,-0.017699605,-0.0071125976,-0.0006796011,0.019735118,-0.033784837,0.019606436,-0.0155354105,0.011756843,0.0065452275,0.014388972,-0.019945689,0.01858868,0.025362026,0.004553583,-0.0018600378,-0.02852058,-0.018003762,-0.03598413,0.0048840614,-0.016190518,-0.013078757,-0.0014900775,0.0058521,0.016588261,0.0016889494,-0.011938167,0.019653229,-0.014587844,0.006866932,-0.0057409657,0.005030291,0.050724052,-0.007984125,0.011926468,-0.030485902,-0.00936453,-0.0065101325,-0.009171507,0.02220347,-0.026789224,0.020097768,0.004185085,-0.019583039,0.0078086494,-0.0003500366,-0.0043254653,0.011832882,0.009803218,-0.009850011,0.0013796743,-0.014108212,-0.02440276,0.026274497,0.008785462,-0.024940884,-0.019278882,-0.00029666288,0.0014184251,-0.026929604,-0.018822648,0.011505328,-0.02361897,-0.021946106,-0.0065861717,0.009499061,-0.018413205,-0.017559225,0.035095055,-0.0021861293,-0.028684357,0.0038984756,0.029596828,-0.02533863,-0.03079006,-0.005787759,-0.024917487,0.020694382,-0.009066222,0.011955715,0.016342597,0.021033635,-0.013254232,0.021419682,0.04078045,0.016354294,-0.011499479,0.02398162,-0.037153963,0.019454358,-0.008112807,0.045015253,0.023899732,0.010797578,0.029058704,-0.01326593,-0.0075454363,-0.020284941,-0.029550035,-0.012739505,0.033223316,-0.0073114694,-0.014892001,0.00076551083,-0.007650722,0.013067058,-0.025666183,-0.00596031,0.00929434,-0.016061837,0.014002927,0.024309173,-0.0062235226,0.023958223,0.02106873,0.0102536045,-0.041271783,-0.002383539,0.029807398,0.043658245,-0.03539921,0.056386054,-0.006562775,-0.015137666,0.008311679,-0.00044344063,0.007966577,0.013441405,0.0120493015,0.004995196,-0.025081264,0.02688281,0.036896598,-0.06167371,0.01368707,0.0062527684,-0.054795075,-0.004299144,0.008446209,-0.03142177,0.010072281,-0.009926051,-0.06962859,-0.0050770845,0.012528934,-0.051613126,-0.0074109053,0.024449553,0.017547527,-0.029433051,0.003682056,-0.0099319]},{"id":"guide-editing-embeds-1","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Content\nUpdate the text content of a message you sent.\n\n```javascript\nconst reply = await message.reply('Initial message');\nawait reply.edit({ content: 'Updated message!' });\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.012521235,0.0017571979,-0.014814783,-0.004823035,-0.044422403,0.00088065653,0.04363228,0.049558192,-0.015626853,0.0053031435,0.035994437,0.013651548,0.027654262,-0.008598061,-0.011818904,0.002908087,-0.0020260587,0.005311374,0.009547304,0.035731062,0.010452652,-0.021267444,0.0009183794,0.06509726,0.015670748,0.014716018,-0.0098436,0.0095637655,0.00002884939,-0.035511583,0.008685852,-0.0117201395,0.05491346,0.014639201,-0.017207095,0.03678456,0.03412887,0.012455392,0.0131248,-0.008082287,0.008411504,-0.0059259133,-0.0068148,-0.01040327,-0.05443061,0.03865012,-0.042512942,0.018721497,0.020773618,0.051050644,0.01864468,0.021124784,0.03434835,0.0041042436,0.00031069893,-0.0053196047,-0.008877896,0.01399174,-0.030068522,0.009399157,0.007709174,-0.012949218,-0.037442993,0.017349757,-0.024471827,-0.033207063,-0.049163133,0.017042488,0.013750314,0.022145357,0.030726958,-0.012060331,-0.0104691135,-0.022496523,-0.00018535626,-0.015999965,-0.005679,-0.016142627,-0.014244139,-0.028839445,0.013728365,-0.006567887,-0.107632145,0.0079506,-0.07027694,0.038342852,-0.009426592,-0.0045569176,-0.012718766,-0.036806505,-0.039528035,-0.016636454,-0.047934055,-0.014112453,0.032987583,-0.007956088,-0.10947576,-0.0020288022,0.011709166,0.04332501,0.10719319,-0.048197426,-0.09542915,-0.011368974,0.007599435,-0.031143967,0.011632348,0.046090435,-0.02554727,-0.008855948,-0.048241325,-0.025174158,-0.005816174,-0.020378558,0.03926466,-0.029629566,0.005574748,-0.013037009,0.0041618566,-0.03847454,-0.06615075,-0.040120628,0.06018094,-0.0318024,0.011215339,-0.047802366,-0.03665287,-0.033843547,-0.059741985,0.030573323,0.007983522,-0.01822767,0.015407374,-0.0020411478,-0.0545184,0.029805148,0.011533583,0.036718715,-0.021772245,0.009558278,0.03535795,-0.03494094,-0.024054818,0.0028477304,-0.04435656,-0.020137131,-0.06250741,0.010935505,-0.035731062,-0.007818913,-0.020345636,0.037421044,-0.05109454,0.02190393,-0.0017119305,0.02434014,0.0062880525,-0.049558192,-0.021475948,-0.045695376,-0.042512942,-0.016416974,-0.011445791,-0.038606226,-0.028532175,-0.044949148,0.024384035,-0.013805183,-0.025810644,-0.0018340152,-0.017602157,-0.057503305,-0.019204348,-0.0057228957,0.024910783,0.0049410043,-0.007956088,-0.066194646,0.009975287,0.075763896,-0.015242766,0.0057722786,-0.04595875,0.03757468,-0.013026035,0.01604386,-0.043346956,0.024493774,-0.04310553,-0.06645802,-0.015681723,-0.026337393,-0.0036433393,-0.0052153524,-0.03000268,-0.008998609,0.06040042,0.013947844,0.024076765,-0.022540418,0.034589775,0.011401896,-0.0046529393,-0.008806566,-0.031143967,-0.0034705,-0.026951931,0.012005461,-0.022430679,0.014452644,0.048109636,-0.012378574,-0.0151110785,0.022353861,-0.02004934,0.021969775,-0.026403235,-0.049821567,-0.06233183,-0.014847705,-0.059917565,-0.0025047958,0.08765962,-0.0034156304,-0.0020013675,0.026578818,-0.0037009523,0.040318158,-0.05816174,0.043171376,0.026117913,-0.021410106,-0.012235913,-0.009755809,0.0035967,0.040471792,-0.023528071,0.0148916,-0.0055884654,0.013190644,-0.0091467565,-0.0121152,0.019764017,-0.012740714,-0.004148139,0.020510243,0.0045953263,-0.05816174,0.008954713,0.08190929,0.057591096,-0.009651557,0.0474512,-0.025810644,0.032965634,-0.056230333,-0.03224136,0.046090435,0.014661148,-0.029212557,0.015813408,-0.001493824,-0.038035583,-0.012993113,0.004812061,0.020159079,0.0062770783,0.023857288,0.018919026,-0.06320974,-0.021366209,0.007347035,0.009229061,0.028510228,0.0022853175,0.040208418,-0.019390905,0.0004296973,-0.0038298958,0.022891583,-0.028290749,-0.036411446,-0.015879253,-0.032460835,-0.016482817,0.0030644652,-0.028554123,-0.008148131,0.024186505,0.0194348,-0.0035720088,-0.009722888,0.02655687,0.008027418,-0.019248243,0.05495736,0.030858645,0.013695444,0.027764,0.03816727,-0.000052469022,0.000951987,0.030639166,0.0028916262,0.031670716,0.016614504,0.004060348,-0.03272421,0.047890157,-0.029278401,0.033667967,0.030222157,-0.015736591,-0.021574713,-0.018908054,0.056625392,0.024427932,0.050128836,-0.007983522,-0.003928661,0.021256471,0.015176922,0.017624104,-0.075939484,-0.04837301,-0.043698125,0.011154983,0.025700904,0.04503694,0.03990115,0.02434014,-0.015736591,0.020927252,0.027434783,0.03485315,-0.0034567828,0.0063538956,0.01727294,0.026227653,0.020071287,-0.028751653,-0.013519862,0.03900129,-0.023681706,-0.059654195,-0.023528071,-0.06755541,0.053069845,-0.024822991,-0.001251712,-0.012082279,-0.003860074,0.0049849004,-0.04999715,0.05504515,0.0045870957,0.020356609,-0.012181044,0.008598061,-0.021794192,-0.025898436,0.018688574,0.013399148,0.035028733,0.038057532,0.032790054,-0.02655687,0.017305862,0.012685844,0.0059314,-0.0019506131,0.020334661,0.007857322,0.03232915,-0.08089969,0.017371705,0.026095966,-0.0037640522,-0.044597983,0.0072811916,-0.0057667913,0.015067183,-0.016241392,-0.0121152,0.004032913,0.0060082176,0.0015775,-0.024801044,-0.020576088,-0.0017242761,0.011100113,0.0060685743,-0.054211132,0.010337426,0.060971063,0.037816107,-0.0074128783,0.012938244,0.041152176,0.006727009,0.02091628,-0.015209844,0.012784609,-0.0077750175,0.011434818,0.008334687,-0.006847722,0.022101462,-0.0057887393,-0.005275709,0.028049322,-0.0097174,0.047582887,0.012268835,-0.023879236,-0.026929984,0.0635609,-0.031736556,0.01292727,-0.018041113,-0.034304455,-0.05039221,0.013783235,-0.0082414085,0.056976557,-0.009459513,0.015253739,-0.03182435,0.010013696,-0.05061169,-0.09305879,0.0151110785,0.04876807,-0.0155719835,0.025635062,-0.016954696,0.0001882712,-0.014156348,-0.019884732,0.002556922,-0.026622714,0.031319547,-0.009668018,0.016899826,-0.020707775,0.0021934109,-0.028400488,-0.0049410043,-0.00061591086,-0.028927235,-0.01696567,-0.015352505,0.011314104,-0.010260609,-0.046748873,0.018414227,-0.015835358,0.012016435,0.04330306,0.015275687,-0.014814783,0.017876504,-0.007187913,0.033755757,0.0074238526,-0.010441679,-0.032285254,0.027588418,0.006699574,-0.0075335917,0.0030315435,0.022759896,0.011994488,0.00863647,-0.010737974,-0.033580177,0.008954713,-0.03441419,-0.02111381,0.032043826,0.004485587,0.020400506,0.023506122,0.014737966,-0.031385392,0.035204314,0.0024279784,-0.03875986,0.030968383,-0.005432087,-0.008921792,0.008927278,-0.019094609,-0.008466374,0.03254863,-0.03274616,-0.02798348,-0.0051604826,0.044707723,-0.008696826,-0.0060466263,0.021464974,-0.047056142,0.03415082,0.04374202,0.00491357,-0.0037722827,-0.0141344005,0.0091467565,-0.0063813305,-0.008082287,-0.019467723,0.0013785979,-0.0047818827,0.0067544435,0.025832592,-0.049733777,0.043083582,-0.011198878,-0.03243889,0.003613161,0.029936835,0.042886052,-0.022167305,-0.03202188,-0.032043826,-0.0054759826,-0.04323722,0.013157723,-0.025876489,-0.0057283826,-0.021783218,0.022397757,0.0038875088,-0.046309914,-0.004444435,-0.045607585,-0.00053292065,-0.0023154956,-0.02616181,-0.01837033,0.04141555,-0.00049828424,0.014968418,-0.050655585,-0.009624122,-0.006249644,0.04192035,-0.0061563654,0.025876489,0.04977767,-0.03748689,0.016021913,0.006370357,0.023637809,0.012916296,-0.0040274262,0.013333305,0.028839445,0.026600767,0.028949184,-0.029234504,0.010617261,-0.0022386783,-0.031275652,0.0023319565,0.031560976,-0.003969813,0.009942366,-0.01393687,-0.01029353,0.01579146,-0.0017695435,0.02756647,0.022057567,0.05342101,-0.046222124,0.035314053,-0.033360697,-0.00636487,0.020181026,-0.04784626,0.0237256,-0.020630958,-0.021486923,0.0217064,-0.027390888,0.000041838044,-0.0206968,0.02333054,0.028532175,0.02899308,0.011105601,0.0058710435,-0.019533565,-0.040054783,0.0014910805,-0.012663896,-0.032680314,0.027764,0.011100113,0.015988993,-0.02919061,0.024164557,-0.0006409451,0.06342922,-0.005399165,-0.023308592,-0.0017229044,-0.021135757,0.0016090501,-0.009739348,0.017657027,-0.029519826,-0.016801061,-0.0060356525,0.038013637,-0.014737966,0.025942331,0.026117913,0.0053662434,0.011193392,0.017294887,-0.0052345567,-0.046704974,0.016932748,0.014902574,-0.015967043,0.05026052,-0.01705346,0.047319513,0.003618648,0.0040466306,0.0013072675,-0.01146774,-0.029475931,0.012455392,0.00066255004,0.008872409,-0.008038391,0.009547304,-0.022628209,0.020290766,-0.00005568404,-0.0076927133,0.0057777655,0.0010987631,0.0081700785,0.008872409,-0.0041838046,-0.030463584,-0.014705044,0.024493774,-0.015813408,0.008087774,-0.046617184,-0.009942366,0.028444383,-0.012202992,-0.021146731,-0.004043887,-0.0063977917,0.009761296,0.023374436,-0.022584314,-0.0100960005,-0.06579959,-0.049645983,-0.0066666524,0.044422403,-0.04868028,-0.009958826,0.035577428,-0.02534974,0.0464416,-0.016581584,0.030463584,-0.046748873,0.020411478,0.024866888,0.020422453,-0.013080905,-0.0307928,-0.013925896,0.013882,-0.021991722,-0.0076378435,0.00079080765,-0.00012748601,-0.04211788,-0.03292174,-0.00964607,-0.014408749,-0.028071271,0.02159666,0.06048821,0.036608975,0.00034842175,0.025305845,-0.020071287,-0.0039423783,-0.008159105,0.0014170066,-0.012532209,0.013212591,-0.04859249,-0.010249635,0.0014005457,0.05776668,-0.007818913,-0.004145396,-0.027237253,-0.011522609,-0.019039739,-0.028181009,-0.009399157,-0.032592524,0.02565701,0.02060901,0.00851027,0.00869134,-0.032043826,-0.0073964177,0.0006584348,-0.033360697,-0.031539027,0.01671327,0.05767889,-0.012740714,0.017294887,-0.04433461,0.023111062,0.034282506,0.015089131,-0.010809305,0.017953323,-0.020762645,-0.013146748,-0.009914931,0.010721513,-0.017887479,0.00023833968,0.022562366,0.025766749,0.015582957,-0.0070233047,0.0001025375,0.010101487,-0.0031769478,0.0011707793,-0.03232915,0.0050836653,-0.028554123,-0.014726992,-0.019281166,-0.0032894306,0.009925905,-0.028488278,-0.037508834,0.027193358,0.010551418,0.013464992,-0.005794226,0.01399174,-0.04604654,-0.02086141,-0.0053827045,-0.0022661132,0.009163218,0.021695428,-0.02515221,-0.019873757,-0.013651548,-0.0034293479,0.041656975,-0.024405984,-0.06268299,0.022628209,0.0063813305,0.014024661,-0.016230417,0.03441419,-0.02919061,-0.0464855,0.0006121386,0.011994488,-0.015352505,-0.049733777,-0.010266096,0.0015432065,-0.012795583,-0.056362018,0.024866888,-0.014672122,-0.017887479,0.015275687,-0.011067192,-0.051928557,0.035292104,0.049338713,-0.022222174,0.027412836,-0.033953287,-0.018304488,-0.025064418,0.04587096,-0.03423861,0.013728365,0.013871026,0.017437547,-0.032768104,-0.013421096,-0.01483673,0.0062935394,-0.014968418,-0.013750314,-0.04282021,0.010919044,0.018578835,-0.03998894,-0.0003182435,-0.002603561,0.029870993,0.010233174,0.031385392,0.015407374,0.0059807827,0.01721807,0.028356593,0.005533596,-0.02176127,-0.0102222,-0.0026735195,0.0076707653,-0.0033799654,-0.015769513,-0.026030123,0.023111062,-0.0151110785,-0.00750067,-0.009975287,-0.0020630958,0.02899308,0.0032647392,0.0010013696,-0.01934701,-0.009536331,0.03709183,0.014726992,-0.011621375,0.00141975,0.044290714,-0.016987618,-0.017316835,0.030485531,0.024405984,-0.0069464874,0.0015747566,-0.015582957,-0.0043676174,0.010573366,0.027764,-0.0042359307,-0.028949184,0.00090123265,-0.022255097,0.0021056195,-0.03421666,0.008329201,0.029432036,0.018831236,-0.024910783,-0.008559653,-0.02383534,0.022650158,0.03959388,0.043039687,-0.018293513,-0.017152227,0.0242304,0.038189217,0.008790105,-0.02989294,0.0016090501,-0.03243889,0.0055363392,0.053596593,0.058951862,-0.005201635,0.003240048,-0.018743444,-0.006106983,-0.02226607,-0.01990668,-0.021969775,0.019105583,-0.018765392,-0.0062990263,0.00078875,-0.010255122,-0.026929984,-0.03399718,0.006469122,-0.022057567,0.020060314,-0.00686967,0.0007647446,0.024998575,0.015736591,-0.009481461,0.010408757,-0.028949184,-0.005275709,0.017185148,0.0059259133,0.009920417,-0.021750296,0.015253739,0.013475966,-0.0022331914,-0.058556803,-0.008120696,0.008345661,-0.020323688,-0.012268835,0.00048868207,-0.015045235,0.021684453,0.019215323,0.0094485395,-0.0006165968,-0.025569217,-0.01141287,0.0076762526,0.058907967,-0.021410106,0.0067215217,0.0053827045,-0.035862748,0.014485566,0.0013635088,0.008718774,0.0096350955,-0.017689949,0.022046592,-0.015780488,-0.037025984,0.039528035,-0.019774992,-0.016164575,-0.017185148,0.029058922,0.03140734,0.0024416957,-0.014628227,-0.008576114,0.008427965,0.015857305,0.044290714,0.007187913,0.018984871,-0.029914888,-0.02908087,-0.0039067133,0.0017489675,-0.003124822,0.030266054,-0.018074036,0.0272592,0.0029739304,-0.0041015,0.033141218,0.042995792,0.045783166,-0.0010267468,0.04091075,-0.01651574,0.0013401891,0.028971132,0.0002335386,-0.0030370306,0.015187896,-0.0126968175,0.0048724175,-0.010359374,-0.024318192,0.017437547,0.0011742087,0.009914931,0.016823009,0.029541776,-0.0062880525,-0.01777774,-0.040537637,-0.01141287,-0.018523965,0.0012839478,0.008625496,-0.013058957,0.02383534,-0.0060301656,0.014277061,-0.0035034218,-0.0071934,0.017240018,0.011176931,-0.015890226,-0.005006848,-0.029827097,-0.0043950523,0.020894332,-0.03020021,0.011122061,-0.023528071,0.004035657,-0.010085027,0.017547287,-0.00813167,0.00083333155,0.00085802283,0.047143932,-0.035643272,0.005991757,0.0049355174,-0.009426592,-0.02504247,0.010891609,-0.0012668011,-0.007873783,-0.00995334,-0.027698157,0.05131402,-0.03939635,-0.019171426,-0.029300349,-0.013278435,0.03000268,0.008537705,0.0186776,-0.029849045,-0.055615794,-0.010897096,-0.02686414,0.0060356525,0.02212341,-0.004716039,-0.014979391,0.000005240472,-0.013914922,0.019303113,-0.051752977,0.04172282,0.019149479,-0.028707758,-0.0045404565,0.0014471848,-0.014584331,0.012762661,-0.00901507,-0.038233113,-0.03140734,-0.0077640438,0.011281183,-0.0004975984,0.018578835,0.033953287,0.007094635,-0.03715767,0.045256417,0.006342922,0.017942348,0.009470487,0.007330574,-0.0026625458,0.010919044,0.0081261825,0.017854556,-0.021640558,-0.007901218,-0.008559653,-0.01646087,0.00090740545,0.0057283826,-0.0065459395,-0.005706435,0.01705346,0.024405984,0.0007359381,0.031363446,-0.04343475,-0.026095966,0.0323072,-0.0232208,-0.020159079,0.0019835348,0.019127531,0.021541791,-0.005454035,-0.0038216654,0.00007518845,-0.003366248,-0.004779139,0.011687218,0.04565148,0.004611787,0.05008494,-0.019983497,-0.00964607,-0.0118628,0.029212557,-0.0777831,-0.004403283,-0.010370349,0.017130278,-0.031560976,-0.0058655567,0.020038366,-0.0048202914,-0.018359357,0.017898453,0.04385176,-0.003802461,-0.004823035,0.021212574,-0.040932696,0.020565113,0.022474574,0.0135308355,-0.0029437523,-0.011840853,-0.028619966,-0.03283395,0.004065835,-0.048021846,0.036521185,-0.015297635,0.04069127,-0.022298992,0.00093758374,-0.027149461,0.03009047,-0.009152244,-0.025525322,0.027127514,0.0010061706,-0.010271583,0.025766749,0.056010853,0.0013422468,-0.014726992,0.009783244,0.05258699,0.032460835,0.022375809,0.031165915,-0.021289391,-0.019039739,-0.008351148,-0.005311374,0.024384035,0.011347027,-0.0232208,0.0038737913,-0.014540435,-0.0038518435,0.058337323,-0.037530784,-0.006189287,0.009986261,-0.0067215217,0.046748873,-0.044202924,-0.0048038308,0.017997218,-0.024493774,0.026929984,0.01705346,0.01029353,0.02868581,0.0067818784,0.021695428,-0.038233113,0.015769513,-0.022650158,0.0004495875,0.024098713,-0.039879203,-0.0156488,0.0027133,-0.0061453916,-0.012389548,0.009475974,-0.024757149,-0.033667967,-0.015747566,-0.008334687,-0.012126174,-0.028707758,0.0065459395,0.040954646,-0.030266054,0.020543166,-0.013497913,-0.023308592,0.0029602132,-0.03706988,0.010919044,0.019610383,0.067379825,-0.029936835,0.01932506,-0.0012743457,0.02293548,0.013783235,0.013201618,-0.0049876436,0.02383534,-0.014430696,0.0024060304,0.0046172743,0.01923727,-0.019500645,0.01343207,-0.008290792,-0.031670716,0.01732781,0.036608975,-0.013267461,-0.02635934,0.018414227,0.013618627,-0.0019355239,0.033492383,0.0091467565,-0.035818852,0.032394994,0.007829887,-0.0043566437,-0.009569253,0.040230367,0.016164575,0.027171409,0.0013333305,-0.0033004044,-0.0027023263,-0.02049927,-0.0014924522,0.0006546625,-0.012356627,0.0033991698,-0.013980766,0.026403235,0.014342905,-0.03897934,-0.021421079,0.010661157,0.013552783,-0.024559619,-0.041152176,0.013849079,-0.031626817,-0.013892975,-0.026600767,-0.023264697,-0.028049322,-0.0012098739,-0.043456696,-0.013827131,0.026381288,-0.021838088,0.007341548,0.018381305,-0.012367601,0.011182418,0.013695444,0.0017846327,0.0051412783,0.031473182,0.0307928,0.0038216654,0.013454018,0.009761296,-0.00036385382,-0.012982139,-0.014979391,0.013838105,-0.014902574,-0.0020342893,0.011950592,0.025788696,0.01752534,0.0025596654,-0.007478722,0.017338783,-0.0012482826,0.014178297,0.0066940873,-0.029651513,0.012960192,-0.0020425196,-0.027807897,0.037596628,0.011939618,-0.01864468,-0.008965687,0.044466298,-0.026600767,0.018875131,-0.011928644,-0.020060314,-0.024098713,0.020192001,-0.028729705,0.004043887,0.0016666631,-0.0055363392,0.004145396,-0.018238643,-0.016285287,-0.016032888,0.0030260566,0.024866888,-0.029541776,-0.007923165,0.040954646,-0.050128836,-0.011270209,0.009975287,0.0070672003,-0.013135774,-0.01166527,-0.0039643263,0.011731113,-0.012993113,-0.02111381,-0.023396384,-0.024603514,0.0049519786,-0.010562392,-0.041020487,-0.012159096,-0.013794209,0.0047626784,-0.003934148,-0.01853494,0.02414261,0.019083636,-0.032790054,0.00083333155,0.025503375,0.004919057,0.007072687,-0.009964313,-0.012521235,-0.018995844,0.0026515718,0.021574713,0.015429323,-0.021860035,0.0009197511,-0.011358,0.028181009,0.01671327,0.019303113,0.00054355164,0.024603514,0.007187913,-0.03465562,0.005832635,0.0040493743,-0.032482784,0.0032318174,0.020268818,0.004743474,0.0022181023,0.016812036,0.0058765304,-0.011325079,-0.011050731,-0.019204348,0.0143868,-0.0117201395,0.015473218,-0.0012805185,-0.025678957,0.0007668022,-0.011358,-0.04213983,0.021805165,-0.027522575,0.02217828,-0.026030123,0.035094574,-0.0050781784,0.003980787,-0.01699859,0.007890244,0.039330505,0.015253739,-0.0077969655,-0.016943723,-0.038101427,-0.0066447044,0.031670716,-0.0036488262,0.0043840786,0.021102836,0.01965428,0.007961574,0.0029053437,-0.029300349,0.0030781827,-0.023550019,-0.0066721393,-0.0038381263,0.003624135,0.039440244,-0.0029355218,0.001551437,-0.0434128,0.008987635,-0.0070013567,-0.002908087,0.010266096,-0.016768139,0.021190627,0.0016844957,0.011325079,-0.018798314,-0.010831253,-0.02293548,-0.007604922,-0.004995874,-0.027764,0.004348413,-0.01954454,-0.019698175,0.033053428,-0.005253761,-0.036016382,-0.011807931,0.001898487,-0.003550061,-0.026095966,-0.012345652,-0.02313301,-0.02989294,-0.03452393,0.0061234436,0.020455375,-0.019643305,-0.005286683,0.045256417,-0.017920401,-0.0037695393,0.004123448,0.030968383,-0.0034485522,-0.025305845,-0.0019629588,-0.0009458142,0.008812052,0.004737987,0.012060331,0.0025624088,0.027083619,-0.021794192,0.008192026,0.04977767,0.0013614511,-0.025810644,-0.0012592565,-0.039923098,0.0025006805,-0.0024677587,0.057634994,0.015253739,0.01869955,0.013190644,-0.0041097305,-0.020740697,0.0027475934,-0.027698157,-0.025942331,0.014353879,-0.0059862696,0.0019958804,0.0013813414,0.0022592545,-0.004406026,-0.018556887,0.02159666,0.019423828,-0.00091632176,0.011165957,0.035379898,-0.019028766,-0.0075281044,-0.012587079,0.013377201,-0.053201534,-0.033075374,-0.0004893679,0.039462194,-0.016724244,0.066106856,-0.0021495153,0.0038902522,0.011994488,-0.008378583,-0.017283913,0.02605207,0.011292157,-0.0041316785,-0.0070013567,0.03362407,0.03191214,-0.058820177,0.02908087,0.024735201,-0.032065775,0.0042825695,-0.0032043827,-0.031275652,0.0012736599,-0.007720148,-0.051884662,0.014639201,-0.017437547,-0.05263089,0.006973922,0.028356593,0.01027707,-0.00038168643,-0.014825757,0.000090106114]},{"id":"guide-editing-embeds-2","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Embeds\nReplace or update embeds on an existing message. Pass an array of EmbedBuilder instances or APIEmbed objects.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!editembed') {\n const embed = new EmbedBuilder()\n .setTitle('Loading...')\n .setColor(0x5865f2)\n .setTimestamp();\n\n const reply = await message.reply({ embeds: [embed] });\n\n // Simulate loading, then update the embed\n await new Promise((r) => setTimeout(r, 2000));\n\n const updatedEmbed = new EmbedBuilder()\n .setTitle('Done!')\n .setDescription('This embed was edited after 2 seconds.')\n .setColor(0x57f287)\n .setTimestamp();\n\n await reply.edit({ embeds: [updatedEmbed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[-0.027892746,-0.016823204,-0.015935138,-0.019875145,-0.024352994,0.016898252,0.006572932,0.02143864,-0.015947646,0.008436617,0.011776242,-0.027242333,0.027842714,-0.03559765,0.005065723,0.025328616,0.0060945023,0.002657941,-0.026341759,0.037498858,0.0109382095,-0.030844625,-0.016573044,0.0622396,-0.011782496,-0.015147137,0.0016088361,0.03607295,-0.02621668,-0.03729873,0.04735513,-0.011644909,0.021901434,-0.0016166535,-0.020100288,0.011769989,0.027617572,0.028743288,-0.030094147,0.009124556,0.03307104,-0.020938322,-0.016310377,-0.012357863,-0.016347902,0.051983073,-0.06394068,0.017936412,-0.0014837565,0.032195482,0.017661236,0.030569449,-0.01708587,-0.006841853,-0.0024875202,0.010156462,-0.03692349,-0.0001984661,-0.046529602,0.036223046,0.01892454,-0.0018355428,0.008567952,0.025566267,-0.04985672,-0.008386586,-0.068643674,0.037774034,-0.008242744,0.052583456,0.029318653,-0.016710632,0.005325263,-0.041626483,0.011782496,-0.032570723,0.015122121,0.018399207,0.0020747576,-0.028217953,0.021338576,0.0052001835,-0.09856271,0.018736921,-0.07034475,0.040876005,-0.025153503,-0.027292363,0.001965313,-0.030819608,-0.047505226,-0.0013109903,-0.06539161,-0.027267348,0.022464292,0.013696214,-0.04685481,0.00067230273,0.007154552,0.06974437,0.09095787,-0.044828523,-0.085354306,-0.027167285,0.0117387185,-0.056986257,0.016923267,0.03839943,-0.009449762,-0.044553347,-0.062689885,-0.028343033,-0.01586009,-0.004215182,0.061138898,-0.013345991,0.018536793,0.043752838,0.0067355353,-0.044553347,-0.08180205,-0.038174286,0.061939407,-0.008899412,-0.0015806932,-0.049331386,0.00036155817,-0.03894978,-0.05015691,-0.016773172,0.025453694,-0.023227278,0.040375687,-0.0075485525,-0.049881738,0.011188368,0.0051939297,0.025128487,-0.017198442,-0.0073296633,0.014759391,-0.025891474,0.00010260434,0.0005065723,-0.032345578,-0.0066855033,-0.0104879225,-0.006841853,-0.017348537,-0.001633852,-0.027267348,-0.010738082,-0.045403887,0.0210634,-0.027642587,-0.02291458,0.021038385,-0.021025877,-0.0045122458,-0.0224768,-0.043952964,0.0076548704,-0.00008902148,-0.027467476,-0.028918399,-0.00616955,0.02340239,-0.040100515,-0.03497225,-0.0018730666,-0.004105737,-0.038874734,-0.007442235,0.01433412,0.0146593265,-0.008211474,-0.033171106,-0.06634221,-0.0035147362,0.053433996,-0.00894319,0.028217953,-0.05213317,0.014359136,-0.030619482,0.004177658,-0.05978804,0.020362956,-0.034647044,-0.03289593,-0.023590008,-0.020075273,0.0003097674,0.007498521,0.015184661,-0.008749316,0.042902295,0.010437891,0.04843081,-0.035197392,0.015659964,0.014359136,0.008180205,0.003527244,0.022064038,-0.022964612,-0.020425495,0.022001497,-0.032270532,0.043552708,0.032845896,0.032620754,-0.0048843576,0.0030269257,-0.018586826,0.033296183,-0.01936232,-0.01185129,-0.07074501,-0.0027611316,-0.07414717,0.0087117925,0.05983807,0.0023186626,-0.025766393,0.05133266,-0.006910647,0.0058099465,-0.051732913,0.03572273,0.022952102,-0.0023139722,-0.039525148,-0.035547618,0.02841808,0.029593829,-0.026441824,-0.007992585,0.023977755,0.020975845,-0.015334756,-0.018386697,0.012520466,-0.046279445,-0.038999815,0.0007215528,0.0107318275,-0.06319021,0.00881811,0.06283998,0.0543846,-0.007367187,0.058337115,-0.025416171,0.031069767,-0.036298092,-0.014309104,0.022439277,0.0022936468,-0.03417174,0.022401752,0.03369644,-0.014596787,-0.019062128,-0.0050876117,-0.005431581,0.029944051,0.032045387,0.022689436,-0.056586,-0.023690073,0.005853724,-0.02021286,0.010606748,-0.015222184,0.006275868,0.0034678313,0.030569449,-0.012845673,0.0024718852,-0.00465296,-0.051933043,-0.015534883,-0.001398546,-0.004374658,-0.0024797027,-0.025866456,-0.00900573,0.031369958,0.03277085,-0.009968842,-0.021351084,0.043627758,-0.018486762,-0.013070816,0.060438454,0.05518511,-0.010406621,0.042577088,0.05358409,-0.013821294,-0.021963974,-0.015197169,0.0026595045,0.0012601768,0.0007579041,-0.014196532,-0.024703218,0.06569179,-0.04680478,0.013796277,0.0067730593,-0.038999815,-0.043477662,-0.006516646,0.033721454,0.049706627,0.031069767,0.0072170915,-0.014046437,0.025741378,-0.0074860128,-0.01806149,-0.05953788,-0.039600194,-0.06809332,0.0069919485,-0.0149720255,0.033246152,0.021826386,0.029043479,0.018336667,0.0035209903,0.023314834,0.043452647,-0.022439277,-0.0030785212,-0.011401003,0.042677153,0.008505411,-0.011338464,-0.039625213,0.03774902,-0.024040295,-0.024903344,-0.036723364,-0.013571135,0.0322205,-0.027542524,-0.0037930382,0.0040775943,0.0020638132,-0.025691345,-0.053133804,0.038524512,-0.019224731,0.018486762,-0.036273077,-0.012551736,-0.025503727,-0.010738082,0.019249747,0.025316106,0.027842714,-0.0041088643,-0.00332399,0.01904962,0.027817698,0.013733738,-0.017048346,-0.0019903288,0.020062765,0.007661124,0.02714227,-0.028368048,-0.0062133283,0.020262891,0.0011288432,-0.019224731,0.014221548,0.016272854,0.009818747,-0.02554125,-0.022201626,0.0023045912,0.02088829,0.008811857,-0.0058474704,-0.03717365,0.02376512,0.018474255,-0.015472344,-0.007367187,-0.029293638,0.06529154,0.054584727,0.0344219,0.02934367,0.012583005,0.016372917,0.0028549414,-0.014934502,0.016085234,0.010681796,0.030269258,-0.0011765298,0.015484852,0.005262723,0.017786317,0.017523648,0.026066585,-0.016460473,0.04110115,-0.012414148,0.001061613,-0.011013257,0.030419353,-0.024478074,-0.017160919,0.0066855033,-0.024165375,-0.046729732,0.0040088007,-0.017160919,0.04925634,-0.042527057,0.013971389,-0.030894656,-0.023077182,-0.07009459,-0.09410988,-0.013933865,0.082852714,0.014046437,0.020550575,-0.0060350895,0.034571994,-0.014771898,-0.018974572,0.0078424895,-0.02786773,0.03086964,0.00029315526,0.026291728,-0.04728008,0.016760664,-0.049531512,0.028818335,0.0005890466,-0.02604157,-0.029843988,-0.0143466275,0.028968431,0.010663034,-0.028593192,0.012176497,-0.017548665,0.0199627,0.08685526,0.013320975,-0.008868142,0.028568177,-0.014459199,0.0066604875,0.03474711,-0.025366139,-0.028568177,0.046029285,-0.00030409973,-0.017786317,-0.011050781,0.023439914,0.02516601,0.016135266,-0.022339214,-0.055335205,-0.013896341,-0.059637945,0.008849381,0.03774902,-0.022639403,0.013821294,-0.03307104,0.0057599144,-0.02786773,0.07679886,0.025203535,-0.048305735,0.0048999926,-0.009831255,-0.005090739,0.0120514175,-0.017836347,-0.013521102,0.0077111563,-0.050857358,-0.04410306,-0.01071932,0.04105112,-0.0036929746,-0.021476164,-0.0012977007,-0.05468479,0.015972663,0.012820657,-0.0083303,-0.026666967,-0.024415534,-0.027817698,0.01861184,-0.005684867,-0.011626147,-0.0097562075,0.025553757,0.0017370427,0.04843081,-0.020925814,0.03387155,-0.013533611,-0.028968431,0.009362207,-0.0028580683,0.01647298,-0.009249635,0.02205153,-0.0260916,-0.01929978,-0.06424087,-0.021601243,-0.01056297,-0.002556314,-0.013458563,0.02095083,-0.01365869,-0.045178745,0.0036179267,-0.04943145,0.02150118,-0.019812606,-0.017260982,-0.027492492,0.03522241,0.0009756207,0.007661124,-0.06474119,0.017448602,-0.00888065,0.06304011,-0.008055125,0.014634311,0.05298371,-0.0260916,0.003141061,0.010550463,-0.007348425,0.04815564,0.008436617,0.008636745,0.0028142906,0.04122623,0.010906939,-0.0057755494,0.04115118,0.01075059,-0.0210634,0.000045439065,0.02786773,-0.00971243,-0.003814927,0.002382766,-0.03712362,0.015272217,-0.005906883,0.046604652,0.017648729,0.045679063,-0.035872824,0.024327978,-0.020563083,-0.043077406,0.0027611316,-0.06904393,0.004158896,-0.0033021008,-0.03192031,0.012995768,-0.026116617,-0.005856851,-0.02626671,0.03412171,0.01991267,0.037273716,0.011694941,-0.016873235,0.031470023,-0.036523238,0.016510505,-0.0043183723,-0.008080141,0.041076135,-0.010237764,-0.021163465,-0.012457926,0.013883834,-0.0026469966,0.009380968,0.0016713758,-0.006591694,-0.021288544,-0.010775606,0.006941917,-0.013208403,-0.005725518,-0.033721454,-0.014859454,0.000081497165,0.030669512,0.012564244,0.042977344,0.031294912,0.008211474,0.021651275,0.019587463,-0.0049812943,-0.014046437,0.023652548,0.0155599,-0.015259708,0.02626671,0.0027986555,0.021913942,0.004440325,-0.00037817028,-0.0036617047,-0.005362787,-0.0029393702,0.019087143,0.01904962,0.005334644,-0.016460473,0.03154507,-0.029443733,0.033971615,-0.0057161367,-0.014621803,-0.011394749,-0.015672471,-0.0017401696,-0.006866869,-0.0033490057,-0.022276673,-0.026616935,0.016460473,-0.0213761,0.027117252,-0.047029924,0.006597948,0.011920084,-0.011444782,-0.014921994,-0.01592263,0.0023530596,-0.0115636075,0.025616297,-0.0053096283,0.013008276,-0.044628393,-0.010537955,-0.013808786,0.024603153,-0.0066042016,0.008355316,0.02976894,-0.02051305,0.008142681,-0.023790136,-0.015584916,-0.04122623,0.022089053,0.005112628,-0.019612478,0.0031441879,-0.035922855,-0.013333484,0.039274987,-0.03172018,-0.03307104,0.0177613,0.016610568,-0.035972886,-0.04815564,0.029843988,-0.005409692,-0.040951055,0.030944688,0.042477027,0.020375464,0.024090327,0.021576228,-0.03937505,-0.0001267408,0.006466614,-0.014834438,-0.013496087,0.0019262255,-0.047505226,-0.0045716586,0.0020716304,0.04317747,-0.034647044,0.012301576,-0.0019277891,0.004440325,-0.015684979,-0.02731738,-0.0036898477,-0.018174063,-0.0048499606,0.03664832,0.007955061,-0.015322248,-0.022064038,-0.013320975,-0.0034490693,-0.020600608,-0.05923769,0.0057536606,0.062940046,-0.023439914,0.019587463,-0.020250384,0.03282088,0.026917126,-0.009574842,-0.03209542,0.01929978,-0.02242677,-0.011951353,-0.02217661,0.00014794568,-0.013821294,0.022314196,0.03252069,0.013070816,0.024765756,0.01420904,0.040475752,0.0065854397,-0.00332399,0.020137813,-0.04300236,0.008736809,-0.0022592498,0.0034240535,-0.05065723,-0.01420904,0.025691345,-0.015497359,-0.035697713,0.014621803,0.028318016,0.037824064,0.018824477,-0.031820245,-0.017311014,-0.012733101,-0.030494401,0.000029364386,0.013120848,0.0026344887,-0.016260345,-0.013133355,-0.013758753,-0.005684867,0.040375687,-0.036523238,-0.04000045,-0.01653552,-0.003852451,-0.0019778209,-0.0317452,0.03312107,-0.021488672,-0.042552073,-0.014634311,0.0048843576,-0.024327978,-0.03809924,-0.03202037,-0.010600494,0.00968116,-0.03172018,0.020137813,-0.01831165,-0.01843673,0.019249747,0.0015666217,-0.07309651,-0.0119138295,0.031069767,-0.013871325,0.011726211,-0.0061226455,0.0063696774,-0.0023968373,0.03564768,-0.026066585,0.03774902,-0.015497359,0.0032020372,-0.045804143,0.010763098,0.00238902,0.031394973,0.005600438,0.02156372,-0.034221772,-0.019737558,0.026516872,-0.004452833,0.024365501,-0.00031328527,0.03902483,0.011601131,0.0086429985,0.015522376,0.026992174,0.016885743,0.025378646,-0.029043479,-0.0054909936,0.0049938024,0.022326704,0.006188312,-0.016685616,-0.019249747,-0.050757293,0.02057559,-0.0018824476,-0.007898776,-0.0008356879,0.016623076,0.019324794,0.009137063,0.00955608,-0.012470434,-0.00713579,0.032195482,0.0063728048,-0.013758753,0.0001570335,0.031445008,0.019387335,-0.033421263,0.027917761,0.029668877,-0.023239786,-0.004249579,0.0119826235,0.011088305,-0.0043277536,0.01966251,-0.0075485525,-0.021538703,-0.0023655675,-0.03312107,-0.02989402,0.01420904,0.0026641951,0.03462203,0.032870915,-0.010456652,-0.008774333,0.0023718216,0.00079699146,0.030519417,0.030294275,0.009180841,0.004046324,0.03474711,0.0399254,0.010118938,-0.022089053,-0.012758117,-0.005412819,0.020763211,0.04635449,0.05463476,-0.036373142,0.009168333,-0.005112628,0.0061070104,-0.010256525,-0.011132083,0.01469685,0.03294596,-0.0069544245,-0.002088829,0.030944688,-0.022739468,-0.013946373,-0.03779905,0.0028674493,0.006313392,0.018736921,-0.017298507,-0.007998839,0.04833075,0.0012015457,0.006541662,0.032320563,-0.014434183,-0.010250271,0.0070857583,-0.029693892,0.028618207,-0.02480328,0.052333295,0.012983261,-0.037648953,-0.048806053,-0.009443508,0.007098266,0.004509119,0.0070107104,-0.009036999,-0.000017003005,0.003914991,0.02461566,-0.009237127,-0.005247088,0.0022201624,0.018424222,0.00548474,0.02676703,-0.020913305,0.041751564,0.0014446691,-0.03124488,0.028593192,-0.021451147,-0.00042370707,0.040325657,-0.0082239825,0.019737558,-0.032395612,-0.0633403,0.030444369,-0.015960155,-0.035072315,0.004527881,0.04387792,0.0271923,0.008374078,-0.010956971,-0.04415309,0.008274014,0.0123641165,0.050857358,0.011469797,-0.022776991,-0.005597311,0.005931899,-0.011469797,-0.018674381,-0.00255006,-0.007054488,-0.01586009,-0.007142044,0.0066980114,0.0036648316,0.037398793,0.031019736,0.039274987,0.025553757,0.042176835,0.0059037562,0.0017683125,0.019324794,0.039800324,-0.00177613,0.0029690766,-0.010294049,0.018211586,0.007611092,-0.013483578,0.022339214,0.013833801,0.03209542,0.023840168,0.020550575,-0.020775719,-0.012983261,-0.016085234,0.004815564,-0.03264577,-0.01911216,0.0027095363,-0.035472568,0.001578348,-0.039400067,0.010706812,-0.012407894,-0.013958881,0.027667603,0.010681796,0.02786773,-0.021651275,0.0073046475,-0.000222798,0.05133266,-0.0034021647,0.035322472,-0.021526195,-0.028067857,-0.01537228,0.0051063737,-0.020913305,0.003805546,0.002546933,0.042401977,-0.047855448,-0.015109614,-0.0064728684,-0.013170879,-0.035797775,0.028518144,-0.008824364,-0.002237361,0.0015423875,-0.013333484,0.03682343,-0.0177613,-0.031870276,-0.0130458,-0.022251656,0.035622664,0.02964386,0.031069767,-0.027592555,-0.046679698,-0.01420904,0.0040400703,0.011870052,0.029193575,-0.010331573,-0.0034459424,0.021576228,0.0025907108,0.0047029923,-0.039650228,0.04723005,0.009212111,-0.026141632,0.014071452,0.038124256,-0.013633674,-0.0032301801,-0.0057317717,-0.002209218,-0.024653185,-0.0005491775,0.008355316,0.005684867,-0.005062596,0.009043254,0.0055285175,-0.026016552,0.028618207,-0.0027845842,-0.004721754,-0.027092237,0.016973298,-0.0072921393,0.014909486,-0.0018621222,0.0036554507,-0.044928584,-0.03594787,-0.007917537,-0.0070044566,-0.0072671236,0.0052408343,-0.0009795295,-0.014759391,0.023940232,0.03214545,-0.006904393,0.027542524,-0.03319612,-0.035072315,0.022739468,-0.004787421,-0.017861364,0.001268776,0.018749429,0.009837509,-0.0036273077,-0.017361045,-0.008017601,0.001479066,-0.037273716,0.017223459,0.026066585,-0.002976894,0.053784218,-0.006166423,-0.013983897,0.0014720303,0.031144815,-0.070594914,0.0149720255,-0.009868779,0.010806875,-0.034822155,0.011407258,0.005931899,0.0027720763,0.0073359176,-0.032670785,0.03932502,0.012576751,-0.027792683,0.024653185,-0.043152455,0.016710632,0.015835075,0.014534247,0.008936936,0.0043058647,-0.028493129,-0.021213496,-0.006791821,-0.036147997,0.03814927,-0.028092874,0.039550163,-0.009449762,0.00565047,-0.045629032,0.021326069,-0.0019324796,-0.042552073,0.0015369153,0.0058631054,-0.013883834,0.014133993,0.07269625,0.0040932293,-0.01310834,-0.00894319,0.03717365,0.019499907,0.013608659,0.011744972,-0.01026278,-0.025741378,-0.034872185,0.008492904,0.046679698,0.007417219,0.008530428,0.00016524186,0.0055472795,0.001801146,0.023902707,-0.029818973,-0.010431637,0.018711906,-0.021038385,0.04080096,-0.04587919,-0.00664798,0.020663146,-0.019950192,0.028067857,0.00242029,0.013621166,0.01108205,-0.0072796317,0.009105793,-0.024840804,0.016635584,-0.020725686,0.010118938,0.034597013,-0.02824297,-0.0119138295,-0.017673744,-0.006941917,-0.027942779,-0.018586826,-0.003567895,-0.016510505,-0.00955608,-0.009099539,-0.019387335,-0.013446054,0.015509868,0.026792046,0.0054909936,0.009743699,0.0040431973,0.01843673,0.00046904842,-0.038299367,0.009099539,0.0014696851,0.059687976,-0.024865821,0.015785042,0.0021685672,0.032495674,0.010362843,0.008686777,-0.0073296633,0.03619803,0.003119172,-0.005262723,0.004162023,0.015059581,-0.015785042,0.028368048,-0.021813879,-0.026441824,-0.0019793843,0.03362139,0.0004307428,-0.017486125,0.02217661,-0.0050156913,0.019137176,0.025241058,0.024778266,-0.023014642,-0.023077182,0.038924765,0.0020903924,0.013496087,0.02866824,0.017811332,0.038249336,0.014409168,-0.023602517,-0.018899525,0.016247837,0.0028987192,-0.0025969648,-0.019449875,-0.019349812,-0.003239561,0.016147774,0.025353631,-0.019574955,0.028017826,-0.010437891,0.0029940924,0.0069606784,-0.035447553,0.012107703,-0.035447553,-0.032795865,0.013483578,-0.0034115454,-0.00037074368,-0.0111133205,-0.02516601,-0.007454743,0.03162012,-0.0022545594,-0.0026032187,-0.00058044743,-0.015334756,0.025140995,-0.0366233,0.0054378347,0.0052126916,0.010287795,0.032420628,0.009968842,-0.008874396,0.00047217542,-0.018912032,0.015272217,-0.018111523,0.014596787,-0.01001262,-0.017110886,-0.0078424895,0.039099876,0.0115636075,0.019650001,-0.015509868,0.0058318353,0.0000018138982,0.0130583085,0.012357863,0.0030550687,-0.00039126456,0.018286634,-0.017223459,0.03484717,0.008380332,-0.012808149,0.020538067,0.0477804,-0.036298092,0.010325319,0.0057161367,-0.008843127,-0.0097562075,0.029018462,-0.027267348,0.01384631,0.009499794,-0.010344082,0.017598696,-0.0047936747,-0.00719833,-0.015647456,-0.0033896565,0.013070816,-0.012382878,0.015409804,0.01739857,-0.026842078,-0.021088418,-0.020062765,0.021963974,0.0005347152,0.009130809,0.009393477,0.01856181,0.0052564694,-0.008824364,-0.01991267,-0.012107703,-0.012545482,-0.026992174,-0.0054440885,-0.0055660415,0.004950024,-0.036298092,-0.015059581,-0.012751863,0.024703218,0.03282088,-0.017173426,-0.008874396,0.030044114,0.020813242,-0.013070816,0.006497884,-0.008774333,-0.0009951644,-0.0070169643,0.04115118,0.01978759,-0.021901434,-0.0015079906,-0.030594464,0.018411715,-0.006610456,-0.0046811034,0.026566902,0.030769577,0.008436617,-0.0078049656,0.007792458,-0.033421263,-0.035922855,0.015647456,0.023690073,0.015059581,-0.0016275981,0.03454698,-0.01887451,0.0063290265,-0.023977755,-0.041251246,0.014746882,0.009631128,-0.010187732,-0.00001579374,0.004359023,-0.002410909,0.014459199,-0.019875145,0.018999588,-0.02461566,0.016022693,-0.015484852,0.026291728,-0.012770625,0.03387155,-0.02150118,0.022939594,-0.005725518,0.00998135,-0.003971277,-0.028217953,-0.015084597,-0.0355226,0.020225368,-0.003119172,-0.022226641,0.011782496,0.035572633,0.00600382,-0.00032012555,-0.015947646,0.010931956,-0.0112509085,0.016335392,0.00092949765,0.014234056,0.03975029,0.00095920404,0.01696079,-0.03014418,0.008517919,-0.015422313,-0.01604771,0.010681796,-0.038924765,0.0013422603,-0.011713702,-0.016485488,-0.010181478,-0.026516872,-0.005913137,0.025078455,0.016335392,-0.022626895,0.009837509,-0.025065947,-0.017723776,0.03582279,-0.0058787405,-0.031219862,-0.01507209,-0.011644909,-0.014771898,-0.03742381,0.008067633,-0.019574955,-0.0143466275,-0.040625848,0.00719833,0.021538703,-0.020262891,-0.014108976,0.03872464,-0.0019965828,0.00035178632,0.013971389,0.048806053,-0.022389244,-0.035447553,-0.003517863,-0.001547078,0.022289181,-0.0011812203,0.022751976,0.0293937,0.020262891,-0.003286466,0.01145729,0.046579637,0.017436093,-0.029243605,0.012783133,-0.029518781,0.025916489,0.0011796568,0.053333934,0.026491854,0.027342396,0.01898708,-0.014646819,-0.011907576,0.009893795,-0.022314196,-0.01023151,0.03031929,0.000445596,-0.028092874,-0.0049781674,-0.004437198,-0.010431637,-0.016548028,0.0066167098,0.008549189,-0.021088418,-0.011963862,0.023127215,-0.0005018818,0.021876419,0.00028084274,0.031344943,-0.03564768,-0.03527244,0.009118302,0.025015917,-0.019512415,0.041201215,0.00710452,-0.023202263,0.01691076,0.0060100737,-0.0017370427,0.008080141,0.04312744,-0.014421675,-0.017848857,0.013283451,0.01991267,-0.032570723,0.023302326,0.0032833389,-0.02571636,0.00626336,-0.013821294,-0.0388247,0.027042205,-0.02811789,-0.05010688,0.0022873927,0.014771898,-0.044002995,-0.012576751,0.023339849,-0.0045779124,-0.013145864,-0.031194847,0.008092648]},{"id":"guide-editing-embeds-3","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Content and Embeds Together\nYou can update both content and embeds in a single edit call.\n\n```javascript\nawait message.edit({\n content: 'Updated text',\n embeds: [new EmbedBuilder().setTitle('Updated embed').setColor(0x5865f2)],\n});\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.0056942655,-0.0073240935,0.0088931285,-0.042636067,-0.02994483,0.020576939,0.05155235,0.032677613,-0.042682383,-0.013652341,0.0149376765,-0.008603638,0.037170496,-0.01882842,-0.023043392,-0.006507732,-0.0057521635,0.011458009,0.011776447,0.012945986,0.00042193147,-0.03399769,0.011249576,0.076517954,-0.00049973186,-0.019349502,-0.0036504671,0.036660995,0.009732649,-0.02252231,0.012042778,-0.0069188075,0.0354104,0.01113378,-0.03793475,0.019476878,0.03536408,0.0182147,0.01226279,0.0049821204,0.05308086,-0.0055437307,-0.03939378,-0.016026158,-0.012112255,0.02855528,-0.049884893,0.027721548,0.020565359,0.05048703,0.026123565,-0.000741094,0.010485322,-0.03140386,-0.011660651,-0.0030946466,-0.034391396,0.0009661724,-0.0365452,0.0021827535,0.014451333,-0.031635452,0.012297529,-0.0025909343,-0.017589403,-0.02484981,-0.074572586,-0.0013859327,0.020553779,-0.024595058,0.019777946,-0.027003614,-0.015366121,-0.0022406515,-0.0021697264,-0.010745863,-0.011272735,0.017265175,-0.004990805,0.0002310491,0.020403245,-0.015956681,-0.099769786,0.011869084,-0.088329144,0.024062397,0.0055553103,-0.01769362,-0.0030946466,0.0059982296,-0.04194129,-0.0001553294,-0.059519112,-0.024965605,0.032677613,0.02311287,-0.06878279,0.019256866,0.018191542,0.06591105,0.089903966,-0.056878965,-0.07850965,-0.0073240935,0.0017152274,-0.048310068,0.025498265,0.072025076,-0.015933521,-0.031519655,-0.045970988,-0.034044005,-0.029203737,-0.008412575,0.04453512,-0.044743553,0.016118795,0.01681357,-0.0152850645,-0.057434786,-0.07021866,-0.060630754,0.04997753,-0.021202236,-0.005592944,-0.01998638,-0.031033313,-0.018944217,-0.07332199,0.0029614812,-0.00013144649,-0.009790547,0.03900007,0.010375316,-0.05280295,0.012158574,-0.011348003,0.05650842,-0.018342078,0.014763983,0.05479464,-0.0381895,-0.005905593,-0.0045826244,-0.022904437,0.0004639075,-0.03999592,-0.003879164,-0.025544584,0.0075093666,-0.04393298,0.013258635,-0.04330768,0.010745863,-0.02166542,-0.009205777,-0.000036864723,-0.055998918,-0.00853416,-0.012633338,-0.03332607,-0.010114775,0.0010638752,0.011070092,-0.030616447,-0.021016963,0.023900282,-0.007532526,-0.044998303,-0.009970031,-0.020970644,-0.03561883,-0.026007768,0.02711941,0.03631361,-0.017554665,-0.048078474,-0.059519112,0.0026430425,0.069940746,-0.0074514686,0.025799336,-0.04761529,0.057156876,-0.03737893,0.018944217,-0.018041007,0.031033313,-0.040829647,-0.05451673,-0.021005385,0.005335298,-0.0053439825,0.01056638,-0.013304953,-0.011434849,0.04886589,0.04228868,0.032075476,-0.019673731,0.022059128,0.023830805,0.0033812416,-0.021318033,-0.028763711,-0.022939175,-0.023853963,-0.0014293562,-0.07114503,0.03337239,0.020715894,0.008128875,-0.017774677,0.01567877,-0.0006119092,-0.0011767762,-0.011064302,-0.03283973,-0.06257613,-0.01742729,-0.05127444,0.0029730608,0.07295144,0.00455657,-0.032098636,0.025938291,-0.019882163,0.020090597,-0.035804104,0.0519229,0.031635452,-0.0026039612,-0.02340236,-0.018133644,0.010931137,0.02255705,-0.033696618,-0.00655984,0.017091481,0.000052334337,-0.010022139,-0.0058332207,-0.0023057866,-0.030709084,-0.028879508,0.010809551,0.042566586,-0.06280772,-0.012517542,0.0793897,0.038351614,0.039463256,0.019013694,-0.019766368,0.0211096,-0.055257823,-0.007023024,0.036938906,-0.00470421,-0.0007845175,0.0056392625,0.030106945,-0.058963295,-0.026586749,0.0032104424,0.008951026,0.024409784,0.03714734,0.016732514,-0.053821955,-0.035016693,0.032168113,0.0019410294,0.018990535,-0.007023024,0.000549307,-0.016026158,0.022198083,-0.01313126,-0.016975686,-0.054702003,-0.05386827,-0.012170154,0.0030714874,-0.00065931317,0.0064556235,-0.05132076,0.007978341,0.029481648,0.0056740013,-0.021433828,-0.010242151,0.048032157,0.004591309,-0.019534776,0.07040393,0.036938906,-0.016466184,0.015597713,0.0404591,-0.0023723694,-0.009477898,0.0070346035,0.019650571,0.059704386,0.0128417695,-0.008528371,-0.024595058,0.037471566,-0.0013714582,0.007254616,-0.0012382929,-0.018168382,-0.023356041,-0.0005319376,0.047314223,0.050301757,0.03082488,-0.016500922,0.0021986754,0.057481106,-0.010022139,-0.022892857,-0.05965807,-0.047152106,-0.042404473,0.011857504,0.006415095,0.045229893,0.027721548,0.016072476,0.013513386,0.011753288,0.04277502,0.032978684,-0.018457873,0.014103945,-0.0037836323,0.03413664,0.024085555,-0.019222125,-0.01968531,0.02454874,-0.03647572,-0.048541658,-0.044396166,-0.04506778,0.052895587,-0.021352772,0.012714394,0.0017919422,-0.0064614136,-0.0049126428,-0.029898511,0.026054086,0.0051239706,0.00599244,-0.0009357759,0.00016464735,-0.023761326,0.003795212,0.021190658,0.00656563,0.026656225,0.016304068,0.0083083585,-0.020982224,0.047244743,0.0009285387,0.007104081,0.0068609095,0.02226756,0.012019618,0.018133644,-0.08050134,0.027351001,0.03140386,0.021804376,-0.009593694,-0.0080015,-0.00022073601,0.025289834,-0.024131874,-0.038050547,0.00048344806,0.021051703,0.022614947,0.007758328,-0.022360196,0.007532526,0.01881684,-0.008736804,-0.0519229,-0.0066640563,0.07267353,0.030384855,0.033858735,0.011191677,0.028184732,0.013339693,0.01654724,-0.012644917,-0.0005189106,-0.006137185,0.03110279,-0.002551853,0.01570193,0.010693755,-0.0042004976,-0.011469588,0.016767252,-0.01653566,0.04877325,-0.0010139382,-0.01822628,-0.017844155,0.0359199,-0.03279341,0.015435599,0.005760848,-0.028138414,-0.05423882,0.020472722,-0.022325458,0.051876582,-0.052293446,0.040667534,-0.0014720559,0.005167394,-0.06294668,-0.08605954,0.0354104,0.068412244,-0.0066119484,0.029458487,0.01256386,0.004015224,-0.015238746,-0.006021389,0.0063456176,-0.04050542,0.0199748,0.0058650644,0.03140386,-0.048541658,-0.014613448,-0.050116483,0.004226552,-0.0364294,-0.029921671,-0.020576939,0.019777946,0.008962606,0.012714394,-0.030176422,0.03307132,0.0011717102,-0.007619373,0.05386827,-0.0035896741,0.021086441,0.012355427,-0.025567744,0.02307813,0.038258977,-0.014879778,-0.034993533,0.03198284,-0.0004418339,-0.022487571,0.0074283094,0.02623936,-0.01025952,0.012992305,-0.012656497,-0.034414552,0.00066365546,-0.027791025,-0.010971665,0.0055784695,-0.023853963,-0.0136639215,0.0136639215,0.04247395,-0.01256386,0.042612907,0.018735783,-0.030199582,0.043840345,-0.03422928,-0.0017774677,0.018944217,-0.026054086,-0.010676386,-0.0028427904,-0.03659152,-0.053219814,-0.010936927,0.04455828,-0.009860025,0.00826783,0.029852193,-0.049745936,0.03737893,0.027026772,0.008817861,-0.033696618,-0.024085555,0.0070346035,0.018110486,-0.0073414627,-0.03158913,-0.007758328,0.023298144,0.00078307005,0.02254547,-0.013443909,0.036267288,-0.0034333498,-0.036614675,0.003022274,0.007654112,0.02196649,-0.0045218314,0.006357197,-0.020021118,0.009854235,-0.010745863,0.005532151,-0.03281657,-0.013860774,-0.013455489,-0.008018869,-0.009020504,-0.054933596,0.023657111,-0.022626527,0.017184118,-0.013027043,-0.053127177,-0.036105175,0.036359925,0.0027530484,0.022209661,-0.06141817,-0.017045163,-0.00070707896,0.029852193,-0.0009010372,0.014462913,0.03874532,-0.04536885,0.009501057,0.00799571,-0.015748248,0.016964106,0.016072476,0.0051442347,0.023066552,0.029991148,0.0045507806,-0.026494112,0.027235206,-0.0031207006,-0.026725704,0.031264905,0.032330226,-0.0040325937,0.01566719,0.0026734388,-0.026702544,0.004310504,-0.0056971605,0.02252231,0.022753902,0.053682998,-0.035757788,0.025336152,-0.03339555,-0.044071935,-0.0016037738,-0.059241205,0.009593694,-0.043400317,-0.05734215,0.019025274,-0.016987264,-0.010502692,-0.030130103,0.009917922,0.019766368,0.031612292,0.020461142,-0.00075122615,0.0128417695,-0.042196043,0.0075151566,-0.013687081,-0.027351001,0.04536885,-0.014231321,-0.010276889,-0.018388396,0.034460872,-0.023205508,0.022487571,-0.0067451135,0.010016349,-0.022765482,-0.01741571,-0.006704585,-0.030709084,0.01570193,-0.006200873,-0.020750633,-0.011926982,0.032144953,-0.006762483,0.045785714,0.009309994,0.01599142,0.03080172,0.035804104,0.010977455,-0.04129283,0.018353656,0.0043133986,-0.028370006,0.039833803,-0.0013417854,0.020588519,0.011313263,0.0068319608,0.009732649,0.0024621112,-0.045276213,0.013003884,0.0073240935,-0.0031901782,-0.025498265,-0.000052108175,-0.010456374,0.016049318,0.006224032,-0.008505212,-0.00998161,0.0058390102,0.005792692,0.0030367486,-0.007214087,-0.038675845,-0.057851654,0.024131874,-0.0042381315,0.017577823,-0.025289834,-0.010803761,0.0013244161,-0.047522653,-0.015505076,-0.004246816,0.010722704,-0.02084327,0.0051239706,-0.009923712,-0.00052361476,-0.05025544,-0.035850424,-0.020657996,0.025753018,-0.076147415,-0.006316669,0.032700773,-0.012795451,0.054655686,0.0004197603,0.011284314,-0.039509576,0.012123835,0.016188273,-0.0058071665,0.0056045237,-0.045808874,-0.021873854,0.017195698,-0.046735242,-0.017369391,0.027536275,0.009865814,-0.04226552,-0.0394401,0.00972107,0.002451979,-0.037008382,0.0023014443,0.045206737,0.036267288,0.005416355,0.012702815,-0.032029156,0.009923712,-0.010867449,-0.016095636,-0.004049963,0.020959066,-0.03131122,-0.014335537,0.013756558,0.03679995,-0.013247056,0.020681156,-0.015574554,-0.0040962812,-0.038351614,-0.01628091,-0.032330226,-0.036359925,0.020727474,0.03795791,-0.012888088,-0.013212317,-0.024757173,-0.01972005,-0.011845925,-0.039509576,-0.021734899,-0.0006614843,0.038258977,-0.016176693,0.018434715,-0.030014308,0.009246306,0.002967271,0.019638991,-0.023552895,0.044118255,-0.007219877,-0.000121857134,-0.0004772964,0.019025274,-0.0020857744,0.017543085,0.022684425,0.029898511,0.021873854,-0.00070635526,0.010207412,0.006814591,0.000051791543,0.020901168,-0.03768,0.0064208847,-0.023807645,-0.007764118,-0.035294604,-0.004791057,-0.0020206391,0.0046578916,-0.029898511,0.008065187,0.02883319,0.015574554,-0.0022377565,-0.005705845,-0.037587363,-0.021005385,-0.004516042,0.0042149723,-0.003395716,0.027327843,-0.039880123,-0.006166134,-0.02253389,-0.011892243,0.036776792,-0.011319053,-0.045716237,-0.014567129,-0.013247056,0.0028442377,-0.016327228,0.025498265,-0.005766638,-0.022869699,0.009530006,0.024803491,-0.025475107,-0.049282752,-0.009078402,-0.028485801,-0.02022955,-0.029041622,0.03682311,-0.008099926,-0.021549625,0.024710855,-0.021016963,-0.06850488,0.00400075,0.038536888,-0.017728359,-0.0019106331,-0.009089981,0.0011355239,-0.024757173,0.025336152,-0.020102175,0.011481168,0.012945986,0.00034503572,-0.038699005,-0.027767867,0.005286085,-0.0006292786,-0.019812686,0.021711739,-0.047522653,0.010485322,0.01313126,-0.0036620467,-0.00039913412,-0.009327363,0.020032698,0.042960294,0.018758943,0.02022955,0.010699545,0.018492611,0.046989992,-0.0045276214,0.009611063,-0.016211431,0.0032075476,0.011035353,-0.015041892,-0.020380085,-0.015817726,0.006224032,-0.005225292,-0.030917516,-0.00091478793,-0.006137185,0.0026835708,0.0069419667,0.0025460632,-0.0069477563,0.00012909438,0.027837344,-0.000670169,-0.018955795,-0.0023274985,0.026331997,-0.0147060845,-0.032144953,0.02484981,0.029203737,0.0108385,0.007214087,-0.010201623,-0.0020162968,0.013455489,0.014011309,0.006797222,-0.012610178,-0.0007020129,-0.026355157,-0.016431443,-0.0026690965,0.010276889,0.0098252855,0.006698795,0.0018310234,-0.02510456,-0.022730744,0.0041252305,0.026331997,0.052941903,-0.002438952,-0.03594306,0.013142839,0.04886589,0.0054047755,-0.015644033,-0.00999898,-0.03175125,-0.00427866,0.057851654,0.049792256,-0.03158913,0.00971528,-0.020912748,0.004744739,-0.010763233,0.004860535,-0.025915131,-0.0037257343,0.004875009,-0.010392685,0.020183232,0.004455249,-0.040621217,-0.031658612,-0.0036881007,-0.00030233597,0.017230436,-0.0070693423,0.012228051,0.022499152,0.018944217,-0.019766368,0.004324978,-0.023170767,-0.019233705,0.009564744,-0.016141955,0.02334446,-0.018191542,0.03821266,0.01652408,-0.008042028,-0.044975143,-0.0022464413,0.008505212,-0.010496902,0.0062645604,-0.011035353,-0.0041454947,0.021769637,0.02254547,-0.00051131146,-0.007908863,-0.008759963,0.005422145,0.0058882236,0.0451141,-0.030477492,0.032052316,0.006189293,-0.037726317,0.027999459,-0.0065482603,0.011788026,0.017855734,-0.030732242,0.016350387,-0.027258364,-0.03564199,0.038096864,-0.031218586,-0.027351001,-0.009628433,0.028068935,0.018029429,0.010213202,-0.018006269,-0.018469453,-0.006988285,0.007017234,0.037471566,0.025197197,0.013200738,-0.022985494,-0.008731014,0.016141955,-0.010137934,-0.0045420956,0.00455657,-0.011602754,0.0015183743,0.0012752028,0.011145359,0.049282752,0.032677613,0.031658612,-0.0027631808,0.051506035,-0.005700055,-0.019662151,0.012760713,-0.0058621694,-0.01741571,0.034182962,-0.01113957,0.025081402,-0.018596828,0.017160958,0.01256386,-0.00049321837,0.00969212,0.01714938,-0.005740584,-0.021364352,-0.012969146,-0.033418708,-0.018087326,0.009640012,0.0042120772,-0.011556435,-0.018967375,0.014763983,-0.0114464285,0.01652408,-0.023054972,-0.00827362,-0.0012780977,0.020299029,0.0021147234,0.009072612,-0.015180848,0.0048547448,0.04423405,-0.014011309,0.048310068,-0.024896128,-0.012911247,0.0045999936,0.0030309588,0.0015227166,-0.0052397666,0.019036854,0.035271443,-0.036406245,-0.030940676,-0.022614947,0.007098291,-0.012042778,0.012239631,-0.0018049693,0.00798992,-0.0064787827,-0.022140184,0.042126562,-0.016107215,-0.027559435,-0.026378315,-0.02165384,0.041848652,0.035526194,0.04078333,-0.051367078,-0.0604918,-0.008765752,-0.00771201,0.0007837938,0.016060896,0.010473743,-0.0035317761,0.020773793,0.0064961524,0.017346231,-0.04668892,0.051135488,0.014451333,-0.031519655,0.017195698,0.0051789735,-0.0070635523,0.0062877196,0.0057492685,-0.02714257,-0.029643761,-0.017832575,0.00456815,0.017797837,0.009970031,0.05169131,0.0027631808,-0.03823582,0.05247872,-0.0036765211,0.016315648,-0.017612563,0.013142839,-0.019245286,0.03508617,0.011735919,0.009199987,-0.019222125,0.0032422864,-0.008464684,-0.011394321,-0.010763233,-0.0080767665,0.0011319054,0.0112148365,0.019060012,0.022232821,-0.0052542407,0.028161572,-0.033789255,-0.01823786,0.017728359,-0.010398475,-0.0047736876,-0.016211431,0.028671075,0.012135414,-0.00035317763,0.0054829377,-0.0028427904,0.013108101,-0.009182618,0.017033583,0.044048775,-0.0083083585,0.055767324,-0.0149376765,-0.029041622,0.0026908081,0.012054358,-0.05132076,0.008649956,-0.00627614,0.014960836,-0.02943533,0.00972107,-0.002622778,-0.004133915,-0.010097406,0.008638377,0.04076017,0.00911314,-0.036962066,0.029504806,-0.054331455,0.017357811,0.020368505,0.010195833,-0.0070635523,0.029666921,-0.025521426,-0.005193448,-0.014347117,-0.024803491,0.028045777,-0.051506035,0.013629182,-0.015586134,-0.0017210172,-0.036962066,0.012112255,0.0024794806,-0.012679656,0.020275868,0.013362852,-0.01540086,0.041524425,0.05938016,-0.017438868,-0.0025286938,-0.0043799817,0.014752403,0.026772022,0.0014568577,-0.0055726795,-0.010618487,-0.04900484,-0.018654726,0.010398475,0.02853212,0.0064556235,-0.014636607,-0.008974185,0.0015864044,-0.019198967,0.045461487,-0.014960836,0.0032451812,0.0028297633,-0.03082488,0.03158913,-0.032978684,-0.013941831,0.023448678,-0.02651727,0.02311287,0.031056471,-0.008094137,-0.0064961524,0.014810301,0.016234592,-0.03538724,0.026030928,-0.042844497,0.0013280347,0.043794025,-0.043122407,0.0011449324,-0.0008026106,-0.014300799,-0.019256866,0.016466184,-0.012436484,-0.009309994,-0.009570534,-0.0032914996,-0.0036649415,-0.023182347,0.009061032,0.031079631,-0.004990805,0.0028760817,-0.0101668835,-0.013154419,0.0023477627,-0.03304816,0.007845175,-0.009309994,0.07475786,-0.020345347,0.0133165335,0.00015750057,0.013953411,0.003511512,0.0034941426,-0.0073588323,0.040713854,-0.015099791,0.012691235,0.0073588323,0.0057811122,0.0018831315,0.023298144,-0.011950141,-0.03334923,0.0021494622,0.0101784635,-0.028508961,-0.019940061,0.010010559,0.00485764,0.0055726795,0.029829035,0.02022955,-0.018307338,0.010305839,0.020449564,-0.004733159,0.0010602566,0.027188888,0.0182147,0.04363191,0.009275255,-0.016500922,-0.014497652,-0.0034478242,-0.0005608866,0.008435735,-0.01999796,-0.035155647,0.0049821204,0.04388666,0.010045298,-0.027628912,0.0013598786,0.005170289,0.012135414,-0.014161844,-0.03483142,0.021422248,-0.021549625,-0.031774405,-0.0054047755,-0.012401746,-0.055674687,-0.020565359,-0.044071935,-0.026169883,0.013386011,-0.012436484,0.007306724,0.031612292,-0.006362987,0.014080786,-0.0084241545,-0.0014315273,-0.013362852,0.005801377,0.03971801,0.017531505,-0.0012397403,0.0073240935,-0.006362987,0.005034229,-0.008713645,0.03742525,-0.02396976,-0.008956816,-0.006160344,0.020403245,0.038930595,0.016118795,0.010126355,0.009431579,-0.0031178058,0.013362852,0.0020119546,-0.012992305,0.018087326,-0.006646687,-0.01998638,0.02707309,0.005286085,-0.01313126,-0.001894711,0.033858735,-0.04133915,0.017299913,-0.0011282867,-0.00627614,-0.026447793,0.025150878,-0.04905116,0.001043611,0.0033262384,-0.0005789797,-0.0056305774,-0.010960086,-0.022742324,-0.021063281,-0.006988285,0.020588519,-0.01198488,0.0041425996,0.031542815,-0.034924056,-0.014694505,0.011290104,0.017103061,-0.00018265001,0.005928752,0.00041758912,0.01397657,-0.010415845,-0.027582593,-0.027837344,-0.016975686,-0.0050400184,0.00057355175,-0.03249234,0.00011860037,0.010543221,-0.00585638,-0.014347117,-0.0043191887,0.008470473,0.02396976,-0.02626252,-0.013223897,0.042381316,0.0070288135,0.01427764,-0.0051413397,0.015470338,-0.005335298,0.01198488,0.02883319,0.042960294,-0.035433557,0.018423134,-0.024988765,0.03823582,0.0052310815,0.01572509,0.019337922,0.042844497,0.0024360572,-0.012888088,-0.0011456561,-0.0101784635,-0.025150878,0.013247056,0.03768,0.0076656914,0.0076309526,0.03425244,0.009049453,-0.024988765,-0.019349502,-0.0150534725,0.009257886,0.0019612939,-0.007578844,-0.014173423,-0.023460258,-0.0017991795,0.00090537954,-0.03941694,0.010282679,-0.041200195,0.009211567,-0.011892243,0.03283973,-0.026702544,0.027443638,-0.0034999324,0.020171653,-0.0105258515,0.04078333,-0.009645802,-0.03714734,-0.046966832,-0.00052108173,0.032955524,-0.014902937,0.0030280638,0.017763097,0.0171378,0.015806146,-0.0032567608,-0.022661265,0.0044147205,-0.022464413,0.008910498,-0.0008720882,0.031519655,0.039532736,-0.009912132,0.010045298,-0.03311764,-0.0031496496,-0.017450448,0.0036794161,0.009524216,-0.0038067915,0.009356312,-0.017103061,0.025266675,-0.007214087,-0.009003134,-0.016755672,0.027976299,-0.010346367,-0.03277025,0.007104081,-0.0038588997,-0.04393298,0.014381856,-0.01171276,-0.031820726,0.0037923171,-0.003653362,-0.003083067,-0.028416324,0.006600369,-0.013223897,-0.005836115,-0.04048226,0.003966011,-0.00057861785,-0.016141955,0.002757391,0.049838573,-0.016987264,0.0071098707,0.00884102,0.020113755,-0.020368505,-0.028578438,0.0042410265,-0.038027387,0.01795995,0.023054972,0.012587019,0.015945101,0.016315648,-0.015354542,0.0022999968,0.032121792,-0.003824161,-0.035225127,-0.0068435404,-0.046248898,0.0044899876,0.0015950891,0.047476336,0.021155918,0.025081402,0.004536306,0.01228595,-0.0049473816,0.0068609095,-0.023298144,-0.022024387,0.017739939,0.010155304,-0.020623257,-0.0036967855,0.005106601,-0.013200738,-0.013826035,0.012529121,0.027513117,-0.010907978,0.012540701,0.033279754,-0.007868335,-0.0052339765,-0.00006576848,0.023205508,-0.03388189,-0.01653566,-0.00999898,0.04539201,-0.022638107,0.06655951,0.00770622,0.0020756423,0.0056161033,-0.0030193792,-0.019060012,0.011307473,0.020484302,0.018203123,0.02310129,0.04476671,0.023633951,-0.030871198,0.016894627,0.022881279,-0.012772292,0.025451949,-0.010861659,-0.014729244,0.0035636202,-0.029551124,-0.04504462,0.011342213,-0.012008039,-0.03941694,0.0031351752,0.014335537,0.011087461,-0.028948985,-0.021862274,0.00942]},{"id":"guide-editing-embeds-4","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: API Reference\nThe edit endpoint is PATCH /channels/{channel_id}/messages/{message_id}. See openapi.json for the full request body schema. The SDK Message.edit() accepts { content?: string; embeds?: (APIEmbed | EmbedBuilder)[] }.","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.01640587,0.021695757,-0.025737934,-0.028604578,0.003830786,0.029450135,0.04281406,0.04421645,-0.020881135,-0.019086905,0.024686143,-0.032543637,0.03503906,-0.0017748965,0.014116678,0.010254958,0.023593105,0.0075017414,-0.010713827,0.017158622,-0.011683124,0.010399321,-0.0059601464,0.07420279,-0.0055528353,-0.029429512,-0.0014410561,0.014508522,-0.0005017273,-0.020994565,0.009569231,-0.0021796296,0.029800732,0.0039416365,-0.014683821,0.03934934,0.016983323,0.014611639,-0.020530539,-0.01794231,0.020520227,0.03749324,-0.046278782,0.0028047748,-0.048506103,0.009187699,-0.04446393,0.039122485,0.026934087,0.0066097816,-0.0009847647,0.009172232,-0.0013289168,0.018890982,0.034440983,-0.0063313665,-0.0036013515,-0.009491894,-0.026604114,0.016560545,0.0032920013,-0.025882296,-0.017065817,-0.022500068,-0.009801244,-0.02410869,-0.07754377,0.034131635,0.018736308,0.019416878,0.045742575,-0.023840586,-0.022623809,-0.0072645727,-0.0020855356,-0.037451994,-0.02670723,0.016209949,-0.002887268,-0.06566472,-0.022046354,-0.0063004317,-0.09536234,-0.012178085,-0.041782893,0.0379882,0.011002554,0.0023123925,0.016024338,-0.02029337,-0.056301728,-0.0058879647,-0.05555929,-0.011445955,0.034049142,0.0066716517,-0.07742003,0.0073419106,0.0075584557,0.030295692,0.04759868,-0.021922614,-0.0983321,0.0116728125,-0.0024773793,-0.058982763,0.028315851,0.05370319,-0.0014359003,-0.046031304,-0.031615585,-0.042442843,-0.040999208,-0.024005571,0.039328717,0.0029568719,0.054280642,-0.0022891911,-0.00013566294,-0.035286542,-0.070119366,-0.023345625,0.06603595,-0.0196128,-0.027532164,-0.0117243705,-0.006913976,-0.029367642,-0.04434019,0.033781037,0.016498676,-0.004178805,0.04126731,0.0030419433,-0.008687584,0.023593105,-0.021675134,0.04269032,-0.015580936,-0.020891447,0.03256426,-0.021798875,-0.024314923,0.003957104,-0.026727853,-0.010992242,-0.025676062,0.0023781294,-0.0059188996,0.0032223975,-0.023366248,0.022500068,-0.022561938,0.0063004317,-0.029305771,-0.020004643,0.022541314,-0.04656751,0.0012825142,-0.00943518,-0.032770492,-0.0032584884,-0.0052589527,-0.008971155,-0.01998402,-0.0072439495,0.051145893,-0.039555572,-0.018643502,0.017055506,-0.025799803,-0.03491532,-0.025119232,0.00080431043,0.019385943,-0.023242509,0.029223278,-0.07634762,-0.017055506,0.025242973,-0.013807328,0.03380166,-0.07317162,0.02060272,-0.03706015,0.054734353,-0.040380508,0.02751154,-0.029347017,-0.030027589,-0.049619764,-0.015653118,0.0020275326,0.0060477955,-0.027222814,-0.0144466525,-0.0009351397,0.012229643,0.06302494,-0.022066979,0.042215984,0.026851594,0.03132686,-0.0036090852,-0.027985878,-0.035183426,-0.045206368,-0.011435644,-0.05032096,0.026995957,0.031285614,0.012425564,0.00059259887,-0.0047227456,0.011342839,0.03726638,-0.040050533,-0.029594498,-0.101301864,-0.035513397,-0.07436778,-0.006295276,0.062076263,0.003431209,-0.035183426,0.0401949,-0.022603184,0.029780108,-0.022933159,0.051640853,0.016024338,0.026109153,-0.024397416,-0.022396952,0.0045732264,0.052878253,-0.056136742,0.020994565,-0.006248873,-0.03472971,-0.012734915,-0.02534609,-0.0055167447,-0.014714756,-0.02819211,0.016313065,0.039864924,-0.06582972,-0.014199172,0.059065256,0.07795624,0.01832384,0.020943007,-0.013374238,0.019437501,-0.02732593,0.004405662,0.029326394,-0.0069191316,-0.009306284,0.06389112,0.052218307,-0.027841514,-0.032316778,-0.010755074,0.018179478,0.0018496561,0.016333688,0.031553715,-0.038565654,-0.034564722,0.00035124132,0.02602666,-0.008919596,-0.021180173,0.0036683772,0.0021345161,-0.019437501,-0.007475962,-0.016993634,-0.04198913,-0.047887404,-0.03576088,0.0052254396,0.012322448,0.031615585,0.019767474,-0.016498676,0.0089505315,0.025511077,-0.0059859254,0.0036271305,0.022912536,-0.030646289,-0.014054809,0.029738862,0.039885547,-0.0066716517,0.05217706,0.042030375,0.017189557,-0.022046354,0.014663197,-0.030357562,0.006279808,-0.0077801566,0.0061096656,-0.009332063,0.06335491,-0.07065558,0.04101983,0.018653814,-0.038875002,-0.018540386,-0.00073277316,0.04545385,0.01659148,0.016179014,-0.026789723,0.014003251,-0.015168469,0.0053878487,-0.03182182,-0.04792865,-0.04854735,-0.031100003,0.0129308365,-0.012910213,0.034564722,0.011363463,0.010786009,-0.017653583,0.0053311344,0.038318172,0.018313529,-0.00955892,0.015570625,0.005594082,0.02751154,0.021592641,0.017859817,-0.02171638,0.0032713779,-0.0022118536,-0.05267202,-0.021798875,-0.04557759,0.027965255,-0.00008748809,0.0043128566,-0.01683896,-0.020839889,-0.016395558,-0.05015597,0.0379882,0.0034466763,-0.0039107017,-0.04137043,-0.00037250915,-0.031698078,0.00044597982,0.00021364495,-0.00447011,0.052342046,0.055229314,-0.022005107,-0.018509451,0.026047284,-0.02633601,-0.03256426,0.02134516,-0.0038591432,-0.0008262227,0.014333224,-0.014797249,0.033842906,0.028522084,-0.0010930372,-0.012044033,0.007970923,0.023428118,0.039555572,-0.014405406,0.012425564,-0.0074037802,0.024748012,-0.011301592,0.008749453,-0.006754145,0.01659148,-0.024871754,-0.008362766,-0.019561242,-0.0317187,0.09593979,0.04359775,0.020592408,-0.00049624924,0.006816015,0.0039416365,-0.014230107,-0.001443634,-0.0065272884,0.014209484,0.017849505,-0.008868038,0.018674437,0.010631334,0.0046118954,-0.027490918,0.037080772,-0.025676062,0.03996804,-0.0053930045,-0.0073315986,-0.02227321,0.020056201,-0.025511077,0.003487923,0.00885257,-0.013219563,-0.0697069,-0.03472971,0.024644896,0.04578382,-0.052342046,0.010992242,0.0024077755,-0.009136141,-0.035080306,-0.06504603,0.019437501,0.06797454,-0.012281201,0.03609085,-0.008306052,0.042154115,-0.03670955,-0.014487899,0.05481685,-0.05267202,-0.009703283,-0.011270657,0.02227321,-0.026006037,-0.018622879,-0.021180173,-0.0008172,-0.021324538,-0.010486971,-0.011250034,-0.057621624,0.008770077,0.015653118,-0.03547215,-0.025139855,0.010909749,0.02813024,0.026274139,0.028253982,-0.0005110722,0.011961539,0.0074811177,0.04421645,0.016292442,-0.015364391,-0.05258953,0.030151328,-0.031368107,0.012229643,0.0058312505,0.011456268,0.014075432,0.03547215,-0.024438662,-0.06376738,-0.009600166,-0.025325466,0.014756002,0.03817381,-0.031677455,-0.006346834,-0.008883505,0.032234285,-0.007166612,0.048506103,0.01986028,-0.035018437,0.026315387,0.00065865804,0.023180638,0.012683356,-0.03897812,-0.0066149374,-0.010394165,-0.029182032,-0.04945478,-0.005712666,0.04768117,0.009914673,-0.029099539,0.022974405,-0.01394138,0.022396952,0.03138873,0.016498676,-0.033327322,-0.03811194,0.020221189,0.011260346,-0.009136141,0.0013701634,-0.0057900036,0.0059910812,0.012188396,0.022128848,-0.02115955,0.024954246,-0.020262435,-0.022520691,-0.008043104,0.009404245,0.040834222,0.0016537344,0.0056095496,-0.002321415,-0.03138873,-0.047722418,0.0048310184,-0.003959682,-0.010347763,-0.015147846,0.030110082,0.009058803,-0.030378185,0.014157926,-0.049702257,0.027057827,0.0013128048,-0.015446885,-0.03576088,0.015013794,-0.0127246035,0.02732593,-0.03755511,0.011703747,0.0021744738,0.051599607,0.0144982105,0.04454642,0.019839657,-0.032894235,0.023964325,0.00021283935,0.0009493183,0.051970825,-0.018148543,-0.030749405,0.014302289,0.04434019,0.0010833701,-0.008074039,0.018055737,0.0050088945,-0.060921356,0.0074604945,0.03959682,-0.027305307,-0.0037405589,-0.018231036,-0.020901758,0.02078833,0.0022724348,0.024170559,0.013477355,0.06644841,-0.053620692,0.012394629,-0.035781503,-0.014230107,-0.002639788,-0.039431833,0.031368107,-0.020241812,-0.027119698,-0.0016447117,-0.034337867,-0.0072491053,-0.035740256,0.01220902,0.022933159,0.023056898,0.019633424,-0.022355705,-0.016694596,-0.019932462,0.02466552,-0.010095127,-0.009919829,0.017694829,0.011590319,0.020468669,-0.015024106,0.053579446,0.0104405675,0.029470759,-0.014962235,-0.010095127,-0.017818568,0.0011955095,0.013848576,-0.017550465,0.00065543567,0.0054600304,-0.008733986,0.0046015834,0.035183426,0.0065221325,0.05927149,0.009290816,0.009084583,0.026129777,0.007207859,0.021695757,-0.036544565,0.018200101,0.0121368375,-0.03347169,0.035843372,0.011487203,0.036111474,0.014817872,0.02608853,0.016508987,-0.016117143,-0.024149936,0.00247609,0.001947617,-0.033595428,0.012848343,0.009280505,-0.014941612,0.024500532,0.0009944319,-0.013302057,-0.007955455,0.0027454826,-0.015003483,-0.0018625457,-0.0038849225,-0.022830041,-0.02670723,0.022603184,0.015426261,0.0115181375,-0.029429512,-0.027470294,0.033347946,-0.028583955,-0.02472739,-0.02590292,0.028563332,0.01326081,0.022850664,0.0010517905,0.009172232,-0.0398443,-0.00610451,-0.021365784,0.024933623,-0.036173344,-0.023675598,-0.002732593,-0.029945096,0.06026141,-0.02522235,0.010610711,-0.015828416,0.010167308,0.028604578,0.005055297,0.010713827,-0.037245758,-0.015075664,0.022974405,-0.056013003,-0.004689233,0.02134516,0.025304843,-0.028068371,-0.017911375,0.003988039,-0.014539457,-0.034523476,0.021303914,0.07383157,0.008094663,0.010827255,0.030955639,-0.020365551,-0.008460727,0.0031192808,-0.016086208,-0.0051377905,0.011146917,0.003583306,-0.026624737,0.0074347155,0.044793904,-0.021984484,-0.013126758,-0.014890054,-0.006733522,-0.01919002,-0.0196128,-0.011353151,-0.02645975,0.030955639,0.023593105,0.007037716,-0.0057384456,-0.026686607,-0.0043102787,0.0035652604,-0.007661572,-0.044876397,0.013992939,0.04883608,-0.017199868,0.009759997,0.0011458845,0.01979841,0.004534558,0.021901991,-0.014838496,0.02992447,-0.006975846,-0.020014955,0.0103890095,0.0027635281,0.013353615,0.024830505,0.033904776,0.005717822,0.02534609,-0.023015652,0.0032765337,0.015735611,0.027429048,-0.012239954,-0.007635793,0.0027841514,-0.05828157,0.018313529,-0.015312833,0.006259185,-0.004062799,-0.024335546,-0.05118714,-0.0045680706,0.019633424,0.023861209,0.009357843,-0.0010208555,-0.05370319,-0.02109768,-0.01350829,-0.017973244,0.040772352,0.010291048,-0.0417004,-0.0064241714,-0.023840586,0.004217474,0.060302656,-0.03891625,-0.015993403,-0.010419944,-0.019561242,0.0011110826,-0.0018805912,0.002985229,-0.026810346,-0.02608853,-0.015519066,0.02701658,-0.058446556,-0.03194556,0.0015944423,-0.018138232,-0.045495097,-0.021066746,0.005279576,-0.0255317,-0.012662733,0.0063726134,-0.023448741,-0.039885547,0.03854503,0.04842361,-0.017045194,0.02608853,-0.044587668,-0.028171487,-0.018860048,0.0102343345,-0.023160014,0.018200101,-0.0026011192,0.031100003,-0.042649075,0.009950764,-0.011765618,0.010012633,0.007604858,0.012961771,-0.017818568,0.044876397,0.037287004,0.014725068,0.0116212545,-0.00012277334,0.03947308,0.025057362,0.029388266,0.038008824,-0.025676062,0.011085047,0.045990057,-0.040050533,0.018066049,-0.016550234,0.009502206,0.0044365968,-0.036276463,-0.04052487,-0.050197218,0.024624273,0.0031759948,-0.027099073,-0.02590292,-0.016127454,0.027800268,-0.0034415205,0.01017762,-0.007254261,-0.012868967,0.057621624,-0.0075842347,-0.011033489,-0.0011413732,0.012538993,0.0024786682,-0.041102324,0.053373214,0.0012051767,-0.018004179,0.022479445,0.0022221652,0.00835761,-0.0019269937,-0.014395094,0.00031966183,-0.014085744,-0.028604578,-0.035513397,-0.0088989725,-0.004990849,0.006578847,0.024129312,0.03188369,-0.026604114,0.001037612,-0.030770028,0.0057436014,0.03318296,0.032234285,-0.022933159,-0.025304843,0.036070228,0.038400665,-0.025387336,-0.0014616795,-0.009796089,-0.021427654,-0.007161456,0.033286076,0.029223278,-0.027552787,0.02258256,-0.006795392,0.021283291,0.0028718007,0.009600166,-0.022005107,-0.0029568719,-0.012992706,0.0028692228,0.033100467,-0.013652653,-0.0392256,-0.012477123,-0.018158855,-0.0075017414,0.018839424,0.008744298,0.025387336,0.009584699,0.015426261,-0.0040756883,-0.009043336,-0.01714831,-0.028728317,0.03221366,0.0014281665,0.03163621,-0.015560313,0.01425073,-0.00072052807,-0.017602025,-0.022809418,-0.0010369675,0.021757627,-0.0071717678,-0.00906396,-0.024479909,-0.037596356,-0.008945376,0.023201263,0.0073264427,0.0196128,-0.003923591,0.008955687,0.03687454,0.036462072,-0.021922614,0.005537368,-0.0066974307,-0.023469366,0.008218402,0.018158855,-0.010280737,0.020190254,-0.021180173,0.019385943,-0.019107528,-0.06252998,0.05304324,-0.018158855,-0.032028053,-0.026851594,0.035843372,0.028109618,0.017736075,0.018365087,-0.026047284,0.0015196827,0.010878813,0.035843372,0.011755306,0.027924007,-0.04248409,-0.0107241385,0.004405662,-0.017385479,-0.01350829,0.02441804,-0.022871288,0.030625666,0.03219304,-0.017787633,0.022747548,0.03972056,0.06760332,0.0007566189,0.029759485,-0.008037948,-0.003681267,0.0029001578,0.017426725,-0.022087602,0.004055065,-0.004186539,0.027779644,-0.003462144,0.021180173,-0.014694133,-0.0024928467,0.022128848,0.040463,0.022293834,-0.002516048,-0.009775465,-0.05514682,-0.013168005,-0.0021229153,0.02639788,0.008058571,0.00916192,0.014951924,-0.007795624,0.009832179,-0.032028053,-0.008326675,0.003420897,0.029883225,0.029099539,-0.002858911,-0.0016949811,-0.0024928467,0.031966183,-0.0015480397,-0.005996237,-0.019571554,-0.008868038,-0.013095823,0.01659148,-0.026171023,0.0034002739,0.0131370695,0.037472617,-0.029243901,-0.01597278,-0.0020700681,0.00027680394,-0.007914208,0.029285148,0.014487899,0.012435877,-0.02584105,-0.037843835,0.044587668,-0.025511077,-0.028542709,-0.0050449856,-0.007909052,0.05027971,0.022479445,0.05931274,-0.035369035,-0.05679669,-0.0057023545,-0.018303217,0.02177825,0.03442036,0.022603184,-0.0064396393,-0.007537832,-0.005034674,0.008017325,-0.058199078,0.05502308,-0.0052357516,-0.030708158,-0.01350829,0.0063262107,-0.00073470664,0.032419898,-0.015818104,-0.01553969,-0.0131886285,0.00012011486,0.0010659691,0.024253052,0.002485113,0.037287004,0.026789723,-0.0044752657,0.028913928,-0.012095591,0.014797249,-0.005604394,-0.0011039934,-0.002768684,0.016148077,0.0012322448,0.02091207,-0.03670955,-0.020881135,-0.011456268,-0.01051275,-0.009234102,0.012466812,-0.011229411,0.01116754,0.011208788,0.0015506176,-0.004843908,0.02763528,-0.035554644,-0.038710017,0.036895163,-0.017096752,0.021633888,-0.0119821625,0.010878813,0.00009683304,0.0015248385,-0.011786241,-0.013518602,-0.0056095496,0.006877885,0.011115982,0.03165683,0.02726406,0.03788508,-0.0078987405,-0.029037667,-0.008935064,0.041122947,-0.039143108,0.02701658,-0.019148774,-0.0032636442,-0.03541028,0.016344,-0.0062385616,-0.006903664,-0.023180638,-0.015446885,0.029347017,-0.0018999255,-0.017447349,0.045123875,-0.034750335,0.011549072,0.024789259,0.017426725,-0.010450879,-0.0072130146,-0.031285614,-0.008904128,-0.023964325,-0.039143108,0.019468436,-0.042092245,0.015622183,0.00016289219,-0.015312833,-0.02905829,0.014931301,0.014890054,-0.026542243,0.014188861,0.022665055,-0.02466552,-0.005717822,0.040545493,0.010492126,-0.0033487154,-0.015116911,0.032646753,0.02577918,0.0146528855,0.02658349,-0.020509915,-0.031244365,0.008007013,0.006470574,0.03928747,0.012734915,-0.017952621,-0.00829574,0.0011149495,0.0055889264,0.041122947,-0.01948906,-0.010806632,0.0016408447,-0.009110362,0.030625666,-0.0492073,-0.022871288,0.012838031,-0.002583074,0.015281898,0.029573875,-0.03299735,0.016333688,0.013271121,0.026315387,-0.01683896,0.028088994,-0.030006966,0.001259313,0.014766314,-0.044628914,0.0061354446,-0.016570857,-0.0013972316,-0.017684517,0.0015351501,0.016508987,-0.01751953,-0.03165683,-0.0075533,-0.0036503319,-0.017797945,0.02720219,0.023366248,-0.0059859254,0.013343303,0.010621022,-0.0015467508,0.02460365,-0.035492774,0.011580007,0.007506897,0.05576552,-0.006408704,0.018921917,-0.00013429341,0.037575733,0.022355705,0.0051558358,-0.007909052,0.051022153,0.0060271723,0.0141373025,-0.0050501414,-0.023139391,-0.002982651,0.011239722,-0.0011046379,-0.028357098,-0.003299735,0.019602489,-0.022561938,-0.030130705,0.013858887,0.012394629,-0.0064396393,0.0647573,0.029800732,-0.013106135,0.015807793,0.018581633,0.0027557942,0.0032327091,-0.014353847,0.025737934,0.029326394,0.0052048163,0.0025624505,0.003018742,0.013642342,-0.009228947,-0.012611175,-0.016519299,-0.010193088,-0.014931301,-0.0008391123,0.019777786,-0.032316778,0.017849505,-0.0060684187,0.015591248,-0.010796321,-0.027470294,0.018829113,-0.023077521,-0.035162803,-0.016570857,-0.03470909,-0.04743369,-0.009857958,-0.015828416,-0.016344,0.037699472,-0.0016563123,0.029305771,-0.02874894,-0.008202935,0.014281666,0.009935296,-0.0015171047,0.016694596,0.01888067,0.01732361,0.03175995,0.016539922,0.0398443,-0.011188164,0.015570625,-0.021984484,0.012982395,0.0038462535,-0.011198476,0.0018754354,0.0010015211,0.016251195,0.0044855773,-0.023881832,0.017870128,0.0017001369,0.009543452,0.006759301,-0.033842906,0.021200797,0.0048310184,-0.030233823,0.027985878,0.004153026,0.014240419,0.009687816,0.030089458,-0.026789723,0.03532779,-0.011992474,-0.029553251,-0.014230107,0.018932229,-0.0320693,0.0007430849,0.008099819,0.005728134,0.012044033,-0.009187699,0.01264211,-0.016508987,0.012487435,0.013992939,-0.020551162,0.024191182,0.018117607,-0.038627524,-0.022417575,0.009192855,0.017107064,0.0012309558,0.0038539874,0.013900134,0.02732593,-0.0023098146,-0.019468436,-0.016478052,0.0021796296,-0.003768916,-0.008471038,-0.021922614,-0.012312137,-0.0105694635,-0.024768636,0.005779692,-0.0044855773,0.024438662,0.014075432,-0.026315387,0.024149936,0.024933623,0.018540386,0.0021989641,0.013982628,-0.015869662,0.005686887,-0.010342607,0.04176227,0.01707613,-0.021943238,0.023345625,-0.021592641,0.015034418,-0.0024296877,-0.0023832852,-0.030605042,0.018963164,-0.005717822,-0.0018470782,-0.0023948858,0.0009924985,-0.023696221,0.001986286,0.021592641,0.011177853,-0.008079194,0.039184354,-0.011445955,-0.015508754,-0.032667376,-0.014023874,0.013044265,-0.016570857,-0.009362998,0.009687816,-0.008471038,0.0019334385,0.0030625665,-0.025696686,0.006284964,-0.027676526,0.0032610663,-0.0054858094,0.024748012,-0.041947883,0.0060477955,-0.0012174217,-0.005712666,0.009888893,0.028769564,0.012992706,-0.05514682,-0.017127687,-0.022252588,0.011208788,-0.015158158,0.0057023545,0.010033256,0.0018277438,0.02441804,0.026315387,-0.014477587,0.012673045,-0.016189326,-0.007017093,-0.0011987318,0.0043309024,0.044092707,-0.009754841,0.01319894,-0.021448277,-0.0033925402,0.014766314,-0.018220725,0.033409815,-0.026748477,0.009615634,-0.009455803,-0.00022927357,0.0037611823,-0.005934367,0.013467044,0.029800732,0.019839657,-0.029573875,-0.013642342,0.0012141994,-0.037225135,0.012982395,-0.008486506,-0.035389658,-0.0089505315,0.014890054,0.004812973,-0.022561938,-0.008831947,0.011951228,-0.016313065,-0.022706302,-0.008079194,0.0005162281,-0.022170095,-0.01264211,0.050609685,-0.011280969,0.001243201,0.0066819633,0.030646289,-0.018519763,-0.027408425,0.016539922,-0.01942719,0.010775697,-0.01085819,0.009935296,0.029202655,0.037245758,-0.022252588,0.006578847,0.01098193,0.006496353,-0.018890982,0.04281406,-0.044917643,-0.0067850803,-0.018849736,0.052094568,0.0196128,0.013209252,0.005217706,-0.013302057,0.002226032,0.013405173,-0.019251892,-0.033017974,0.012807096,-0.018035114,-0.026356634,-0.013312369,-0.009316595,0.00016265051,-0.024232429,0.0027944632,0.029017044,-0.019777786,0.030666912,0.01838571,-0.029821355,0.019344697,0.019757163,0.024294298,-0.051599607,-0.0039210133,0.023551859,0.006259185,0.0059549906,0.06257123,-0.0007430849,-0.0056404844,0.006078731,0.008001857,0.010631334,-0.009754841,0.01856101,0.013374238,0.002951716,0.02707845,0.054486874,-0.052960746,0.019509682,0.0066974307,-0.043267775,0.028728317,-0.009816712,-0.027449671,0.023283755,-0.0039777276,-0.033884153,0.008398857,0.002923359,-0.042772815,-0.0053569134,0.009048492,0.0036039294,-0.031244365,0.002260834,-0.016601792]},{"id":"guide-embed-media-0","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Images and Thumbnails\nUse setImage() and setThumbnail() with a URL string, or pass full EmbedMediaOptions for width, height, content_type, and other metadata.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embedimg') {\n const embed = new EmbedBuilder()\n .setTitle('Image Embed')\n .setDescription('Simple image from URL.')\n .setImage('https://placehold.co/400x200/5865f2/white?text=Image')\n .setThumbnail('https://placehold.co/100x100/57f287/white?text=Thumb')\n .setColor(0x5865f2);\n\n await message.reply({ embeds: [embed] });\n }\n});\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.030469608,-0.022242812,-0.03625883,-0.009331317,0.0101420265,-0.012829881,0.003884875,-0.0070460965,0.007965626,-0.008629428,0.0021995248,-0.0041487636,0.025572706,-0.09846036,-0.023439834,0.017139154,0.0051417463,-0.029250823,0.047184363,0.04391976,0.0015302816,-0.0040943534,-0.01967466,0.047793753,-0.0039256825,-0.029947272,-0.02287397,0.032341313,0.019652896,-0.013330453,0.013167223,-0.00913,0.013047521,-0.018172944,-0.03884875,0.012046377,0.055672325,0.018455876,-0.041808654,0.025202718,0.033081286,-0.027618522,0.03395185,0.019446138,-0.0046765404,0.032580715,-0.03547533,0.0040508253,0.0032646006,0.04983957,-0.014919225,0.0038059803,-0.014603647,0.013569857,-0.02581211,0.008090769,-0.04239628,-0.007845923,-0.036650583,0.031601336,0.0575005,-0.025463887,0.024092754,0.0011160853,-0.030143147,0.002564072,-0.020251406,0.036911752,-0.0048071244,0.038718164,0.037717022,-0.020566985,-0.008602223,-0.018989094,0.012829881,0.0030768863,-0.008406347,0.011110525,0.0037243653,-0.061287437,0.0010371909,0.0061809774,-0.08631604,0.020501692,-0.07304,0.06080863,-0.038369942,-0.039588723,-0.036454707,0.013613385,-0.0343436,-0.00011910692,-0.057674613,-0.0032727623,0.011883147,0.05223361,-0.015724493,-0.0025423078,0.029947272,0.07003657,0.07321411,0.0028429232,-0.08792658,-0.0063496483,0.038935807,-0.07682694,0.014853933,0.06516143,0.019750835,0.004956752,-0.030817831,-0.04548677,-0.017683255,0.03319011,0.029359642,-0.019522313,0.039109915,0.032363076,0.0026484074,-0.016388295,-0.06407323,-0.036977045,0.064900264,-0.008939565,0.025398593,-0.03223249,-0.010337902,0.025311537,-0.07743633,-0.043593302,0.032841884,-0.009723069,0.009587044,-0.0066597853,0.0028184387,-0.01586596,0.03793466,-0.0013072005,-0.022786913,0.0015316418,0.040894564,-0.017247973,0.059546318,-0.024158046,0.018542932,-0.002423966,-0.029925507,0.020936973,-0.016159773,-0.013646031,0.014135721,-0.016660346,-0.034474183,0.028206151,-0.039131682,-0.021056674,0.0054246783,-0.022079583,-0.052320667,-0.057456974,-0.001309921,-0.0068828664,0.005419237,0.008819863,-0.035845317,0.031949557,-0.0038522289,-0.025986223,-0.020795507,0.029751394,0.0074432897,-0.0073725567,0.026856782,-0.0050791744,0.02885907,0.016366532,0.036345888,-0.06037335,0.032145437,0.05815342,-0.0068665436,0.03532298,-0.018270882,0.0018567416,0.018499404,0.008754571,-0.011763445,0.028119095,0.00440177,-0.023418069,-0.060025126,-0.0046330127,-0.02330925,-0.017530905,0.023657473,0.019206734,0.014146604,0.018836746,0.044246223,0.01053922,0.02505037,0.04679261,0.022068702,-0.012699297,-0.016758284,-0.028119095,-0.0018404187,-0.040807508,-0.04983957,0.041830417,0.0076609296,0.012590477,-0.009353081,-0.04150396,-0.032841884,0.06886131,-0.012590477,-0.00989174,-0.031601336,-0.010343343,-0.053234756,0.022090465,0.03266777,-0.061635662,-0.007546669,-0.011883147,-0.029424934,-0.025616234,-0.022068702,0.009309554,0.019272026,-0.012960465,-0.013373981,0.0017111949,0.015136865,0.031340167,0.010675244,0.000739296,-0.011774327,-0.012438129,-0.013395745,-0.02831497,-0.015789786,-0.02352689,-0.028184386,-0.016932396,-0.004309273,-0.061374493,-0.016769165,0.050884243,0.036650583,-0.020327581,0.03292894,0.051319525,0.059546318,-0.037847605,-0.033886556,0.049360763,-0.0030578426,-0.03092665,0.0020784624,0.00576202,-0.014179249,-0.029207295,0.021024028,0.0033081288,-0.013091049,0.025529178,0.024049226,-0.027466174,-0.0155503815,-0.029163767,-0.02592093,0.013602503,-0.0017193564,0.014396889,0.0033217312,0.0013024397,-0.03408243,0.013700441,0.0029626251,-0.04072045,-0.045834996,0.020403754,-0.027574994,0.004058987,0.0039447257,-0.048838425,-0.0052206405,-0.0026987365,0.002266177,-0.027705578,0.049012538,-0.022416925,-0.033342455,0.06768606,0.03364715,0.0045350743,0.029881978,0.013820143,-0.036694113,-0.016018307,0.0058653993,0.0039229617,0.0007352153,0.020469047,0.0018036918,-0.026203861,0.036432944,-0.022830442,-0.0006420381,-0.001152132,-0.021938117,-0.013787497,-0.0215246,0.03961049,0.026987366,0.026617378,0.010604511,-0.02777087,0.035997663,0.010174672,0.0138419075,-0.06581435,-0.00956528,-0.06899189,-0.041416902,-0.034038905,0.010169231,-0.033886556,0.037325267,0.027292062,-0.00047438729,0.032580715,0.039784603,-0.012264017,0.022917498,-0.029794922,-0.03027373,0.036802933,-0.01728062,-0.039915185,0.020196997,0.00576202,-0.009048385,-0.0026878547,-0.032341313,0.021916352,-0.00008510066,-0.0428098,-0.010789505,0.027205005,-0.02287397,0.004755435,0.02787969,-0.015735375,-0.0060014245,-0.07813278,-0.055237044,-0.016323004,-0.051754802,0.009804685,0.014298951,0.0057892255,0.00053933926,-0.03060019,0.0071168295,-0.009788361,-0.0060939216,0.008330173,0.009135441,0.032319546,0.0045731617,0.019816127,-0.039588723,-0.010114822,0.02049081,0.014821287,-0.024092754,0.013330453,-0.01537627,0.012318427,0.032210726,-0.041699834,-0.0048098452,-0.008711043,0.039371084,0.014298951,-0.02875025,-0.005519896,0.016692992,0.021666067,-0.04439857,-0.013254279,0.038500525,0.07586932,0.0072909417,0.025268009,-0.00771534,0.032450132,0.0142445415,-0.0073290286,0.029120238,0.011094201,0.029446699,-0.036389418,0.015942134,-0.008716484,-0.008983093,0.000233623,-0.0076500475,-0.032754827,0.034321837,0.011915793,-0.04570441,0.017846484,0.020022884,-0.04640086,-0.022199284,0.033734206,-0.048403148,-0.0015751699,-0.0064693503,0.0006216344,0.024876257,-0.038326412,0.030230204,-0.0150280455,0.012013731,-0.054975875,-0.06716372,-0.010838474,0.05140658,0.049621932,0.02951199,0.00069474784,0.019663779,-0.07012362,-0.024810966,0.025202718,-0.0370641,0.026443265,0.036802933,0.008351937,-0.028032038,-0.004113397,-0.03075254,0.04918665,-0.06494379,-0.013384863,0.01749826,-0.013515447,0.008509726,0.0060177473,0.027814398,0.018009715,0.01428807,-0.005751138,0.040611632,-0.005258728,-0.0024606928,0.022482216,-0.02016435,0.026835019,0.0094999885,-0.048054922,-0.007911216,0.039632253,0.030883122,-0.054627653,0.008460757,0.020773742,0.013221633,0.022373397,-0.035801787,-0.038718164,-0.015180393,-0.061592136,-0.010419518,0.0054328395,0.041939236,-0.0017615241,-0.051145412,-0.031688392,-0.050536018,0.08444434,0.039284028,-0.034104194,0.028402027,-0.052843004,-0.06694608,-0.0056695235,-0.012427247,-0.009091913,0.026595615,-0.041569248,-0.033385985,-0.00934764,0.008215912,0.004956752,0.023722766,0.0046275714,-0.069253065,0.023918642,0.0044806646,-0.031884268,-0.0040508253,-0.002527345,-0.018249119,0.019337319,-0.0204364,-0.004766317,0.0064802323,0.02320043,0.017247973,0.017073862,-0.020033766,0.057848725,-0.0075031407,-0.029860215,-0.025877401,0.016094482,0.0031693832,-0.019163206,0.0074487305,-0.018183826,-0.029272586,-0.061940357,0.013178105,-0.016758284,-0.012536067,-0.0030306377,0.016235948,-0.012383719,-0.034387127,0.013776615,-0.04640086,0.038391706,-0.016050953,-0.04596558,-0.021883707,0.009162646,-0.014930108,0.011545804,-0.039262265,-0.0063224435,-0.031536043,0.0043011117,-0.005318579,0.019413492,0.038761694,-0.03495299,0.005511734,-0.003022476,0.030839594,0.044877376,0.0068066926,0.014320715,-0.017737664,0.023287484,0.027422646,-0.0028837307,0.0024307673,0.029599046,-0.025268009,0.0064965556,0.0059252502,-0.00891236,-0.0030088737,-0.0046275714,-0.014375125,-0.0043119933,0.017977068,0.08087504,-0.017269738,0.02228634,-0.03945814,0.025572706,-0.034517713,-0.00630612,0.00391208,-0.032994233,-0.017541789,0.0045133107,-0.0070352145,0.02330925,-0.0016731079,-0.0064367047,0.029250823,0.02374453,0.029316114,0.020664923,0.017345913,-0.025637997,0.05771814,-0.02010994,0.03151428,0.01641006,0.0025844756,-0.0006369372,0.017574433,-0.02163342,-0.02857614,-0.0015166791,0.011061556,0.035736497,0.025529178,0.0018676237,-0.03854405,-0.013178105,0.0015153189,-0.0030904887,-0.009897181,-0.027074423,-0.013711323,0.0023709163,0.020632276,0.022395162,0.031818975,0.009363963,0.0036563529,-0.009897181,0.009908063,0.020033766,-0.036041193,0.0067033134,-0.010343343,-0.036868226,0.001979164,0.03125311,0.020882562,0.012198725,0.025877401,-0.007323588,0.009625131,-0.028554374,0.0011670948,-0.036541764,0.0051553487,-0.015419797,0.031993087,-0.0038767133,0.027966747,0.022416925,-0.020882562,0.02059963,-0.044420335,0.0103542255,-0.020501692,-0.0068393387,-0.039327558,-0.010838474,-0.017813837,-0.005468206,0.029881978,-0.034865934,-0.011600215,0.021622539,-0.02483273,0.021448426,-0.005783784,0.014984517,-0.037738785,0.029229058,-0.008156061,0.017890012,-0.046183217,-0.028946126,-0.042091586,-0.006931836,0.009581603,-0.004956752,0.004450739,-0.017563552,-0.00041861704,-0.029250823,0.013754851,-0.030360786,0.009070149,0.022144875,-0.026726197,0.0037461293,-0.037238214,0.0016159774,0.019141443,-0.05118894,-0.03384303,0.03662882,-0.00052097585,0.020273171,-0.036324125,0.01798795,0.03647647,-0.02711795,0.0017098347,0.05184186,-0.00206486,-0.0051553487,0.010131144,-0.043288607,0.00412972,-0.0032265137,-0.02190547,-0.012035495,0.027400883,-0.028532611,-0.016595054,0.004875137,0.052190084,-0.0076718116,0.0036318684,-0.002304264,0.0090266215,-0.04674908,-0.0215246,-0.023396306,-0.02201429,-0.013526329,-0.0060395114,0.030534899,0.0015547661,-0.013069285,-0.038718164,0.016377414,-0.017139154,-0.030687246,0.016660346,0.012601359,0.00891236,0.0060721575,0.008819863,-0.009848212,0.0031748242,0.03408243,-0.036062956,0.03075254,-0.04505149,0.012644887,0.012677533,-0.009298671,0.011709034,0.000041232586,0.010076734,0.03564944,0.033233635,0.011349929,0.022046937,-0.023918642,0.002249854,0.0010439921,-0.041329846,0.004494267,0.0020022884,-0.011676389,-0.027292062,-0.040611632,0.012242253,-0.022895733,-0.037956424,-0.012873409,0.034909464,0.04315802,-0.028119095,-0.022057818,-0.03027373,-0.033277165,0.00084743596,0.0044044903,0.0021736799,-0.01587684,-0.013939845,0.0040127384,0.0010609953,-0.004875137,0.07338823,-0.02972963,-0.056673467,-0.00003989359,-0.017922658,0.0049159448,-0.028793778,0.019881418,0.0071603577,-0.012013731,0.041721597,-0.009636013,-0.040241644,-0.0337995,-0.026704434,-0.04439857,-0.033059523,-0.019772599,0.027205005,-0.005057411,-0.044485625,0.018978212,-0.02446274,-0.06694608,-0.018401466,0.044877376,-0.037194684,-0.013101931,-0.0067958105,0.00025453683,-0.019108796,0.0466185,-0.022591038,-0.020512575,0.017073862,0.014603647,-0.047793753,0.0226128,0.00063387665,0.03238484,-0.021339606,0.0046819816,-0.0016499836,-0.019870536,-0.0021165495,0.02157901,0.019598486,-0.02054522,0.029990798,0.02592093,-0.0117307985,0.031100763,-0.0067359596,0.0055334982,0.050013684,-0.002026773,-0.0029054948,0.017324148,0.027596759,0.034931228,-0.005419237,-0.019794362,-0.0332554,-0.009793802,0.0033271722,-0.009091913,-0.016997688,0.023657473,-0.0064802323,0.0102834925,0.023722766,-0.016453588,0.0066162576,0.015495972,-0.004325596,-0.02157901,0.026116805,0.004118838,0.023439834,-0.044006817,0.01804236,-0.010854797,-0.022025174,-0.0509713,0.016660346,0.029969035,-0.028293207,0.01646447,-0.007965626,0.004287509,-0.00003759817,-0.0151477475,-0.02113285,0.03129664,0.018934684,0.035018284,0.05036191,-0.019903183,-0.0043337573,0.026160333,0.017868249,0.0067033134,-0.01853205,-0.00019842651,-0.028184386,0.029925507,0.024789201,0.03277659,-0.014984517,-0.016507998,-0.0054246783,0.004842491,0.040851038,0.025028605,-0.018477641,0.012209606,-0.0033434953,0.0027300224,-0.010098498,-0.056412302,0.007677253,0.041721597,-0.012590477,0.018825864,-0.017215328,0.023853349,-0.02857614,-0.033168342,0.011219344,-0.019435257,0.01206814,-0.013352217,-0.04291862,0.011132289,-0.017617961,-0.0148865795,0.004156925,-0.0027585877,0.0005420598,0.016453588,-0.008237676,-0.004352801,-0.008569577,0.058022838,0.013896317,-0.044920906,-0.015071574,-0.0064258226,-0.011164934,-0.0015071573,-0.026660906,-0.020664923,0.013417509,-0.0057456973,0.035910606,0.0068828664,-0.03945814,0.018891156,-0.008906919,0.0098808585,0.027139714,0.011665506,0.0069644814,0.015691847,-0.0068012513,0.033103053,-0.02363571,-0.030143147,0.04853373,-0.02515919,0.050840717,-0.0064094993,-0.03819583,0.028793778,-0.016986806,-0.026399737,0.01646447,0.033712443,0.029642574,-0.011959321,-0.007345352,-0.010577306,0.021448426,0.0066271396,0.017160919,0.017541789,-0.010969059,0.031122526,-0.0130366385,0.011164934,0.0059905425,0.0072147674,-0.00288101,0.02287397,0.023831585,0.017487379,0.0032836443,0.034147725,0.019522313,0.050666604,0.011567568,0.01521304,-0.013384863,-0.0106153935,0.030687246,0.00451059,0.018466758,0.04200453,-0.041569248,0.010952735,-0.011491395,-0.0065400833,0.022101346,-0.014592765,0.00050805346,0.020012002,-0.023396306,-0.0019492387,0.0031748242,-0.020425519,0.0011555327,-0.0025246246,0.0009657777,-0.0040753097,-0.019924946,0.0027014571,-0.028293207,0.0015098779,-0.014984517,-0.012449011,0.045399714,-0.0026048794,0.030469608,-0.022460453,0.00024229458,0.0082213525,0.017247973,0.010370548,0.036062956,-0.0050465288,-0.010234524,-0.011241108,0.0060939216,0.00842267,-0.007193004,-0.016061835,0.037673492,-0.013134577,-0.013014875,0.026073277,-0.018945565,-0.012100787,0.011632861,0.013896317,0.0101420265,0.017900893,-0.018847628,0.029925507,0.0018730647,-0.044964433,-0.0113064,-0.0066325804,0.019544076,0.017215328,0.025202718,0.0070352145,-0.03266777,-0.022525745,-0.0097611565,0.03251542,0.0066924314,-0.039327558,0.009940709,-0.0022144874,0.0032564392,0.021383135,-0.027509702,0.028402027,0.022416925,-0.009423814,-0.012198725,0.034278307,-0.0030279171,0.013896317,0.019946711,-0.011665506,-0.023135137,-0.012906055,0.002625283,-0.011926674,-0.019696424,0.0072147674,0.044050347,0.0032101907,0.018183826,-0.006175536,-0.0052233613,-0.023831585,0.03967578,0.005582467,0.0077806315,0.011317283,-0.002433488,-0.047793753,-0.02515919,-0.011719917,-0.016420942,0.0012759148,0.041873947,-0.033864792,-0.0008562776,0.030948415,0.035344742,0.011578451,-0.010593629,-0.023940405,-0.013852789,0.024266865,0.019195853,-0.07108124,-0.021470191,0.026007986,0.005985101,0.009086472,0.016725637,-0.023178665,-0.0008243117,-0.014211895,0.019184971,0.028293207,-0.010087616,0.050884243,0.010985382,-0.030774303,-0.000016726828,-0.00039379246,-0.045617353,0.001233747,-0.008819863,0.021589892,-0.011817855,-0.0063986173,0.0051118205,0.0066706673,0.007949303,-0.0062299464,0.05184186,-0.0013745329,-0.014451299,0.0053349016,-0.048229035,0.045878522,0.022503981,0.008237676,0.014853933,0.007203886,-0.033625387,-0.027270298,-0.0074596126,-0.05419237,0.008515167,-0.01168727,0.027052658,-0.030643718,-0.003808701,-0.020360226,0.011719917,0.009663219,-0.043353897,0.0067141955,0.0090973545,-0.013787497,0.019261144,0.046226747,0.015768021,-0.008602223,-0.015136865,0.024898022,0.0025518297,0.02298279,0.019435257,-0.0010528337,0.0061700954,-0.03212367,0.0003499244,0.02875025,0.0068230154,0.020980502,0.0032673213,-0.015572146,-0.021100203,0.012525185,-0.02690031,0.022503981,-0.010658922,0.01733503,0.048620787,-0.051711276,-0.0053865914,-0.008107092,-0.0063550896,0.0060612755,0.0064584683,-0.02864143,0.007845923,0.022765148,0.02407099,-0.0142445415,0.0096741,-0.024636853,-0.009505429,0.02966434,0.004320155,-0.01092009,-0.028140858,-0.019217616,-0.0076446068,0.00081274955,0.0025504692,0.0055688648,-0.0022294503,-0.015909487,-0.0018376982,-0.014712467,0.018118534,0.013243397,0.020403754,-0.0011936197,0.020044649,0.02320043,0.0044316957,-0.025986223,-0.0033570977,0.020447282,0.049099594,0.009282348,0.019739952,0.017683255,0.02885907,0.017628845,0.005321299,-0.0047472734,0.023331013,-0.0057565793,0.008379142,-0.021807533,0.0013412068,-0.024484506,0.022678094,-0.016997688,-0.017237091,-0.0096904235,0.018999977,-0.011121406,-0.019315554,0.0016717477,0.019141443,-0.015158629,0.0103542255,0.019413492,-0.03009962,-0.021361372,0.036324125,-0.02254751,0.0066380217,0.04827256,0.02777087,0.023505125,0.026769726,-0.014897461,-0.0004560239,-0.011186698,0.020741096,-0.018281763,-0.015485089,-0.0026647304,0.033821262,-0.00027085983,0.024484506,-0.036868226,-0.0008297527,-0.0043228753,-0.0067141955,0.0068937484,-0.015365387,0.026443265,-0.053887676,-0.025637997,0.017726783,-0.018401466,0.027292062,-0.0066380217,-0.059241623,0.012655769,0.058849867,-0.0014568281,-0.032406602,0.038326412,0.018216472,0.021764005,-0.027531466,-0.00249878,0.02222105,0.03641118,0.007813278,-0.009973356,-0.009222497,-0.018575579,-0.019032622,-0.027139714,-0.013613385,0.037368797,-0.038718164,-0.011894029,0.0033162902,0.032341313,0.013439273,0.04722789,-0.025420358,-0.020022884,0.018662633,0.018336175,-0.0007590197,-0.02581211,-0.0034305514,0.02515919,-0.024484506,0.028989654,0.01152404,-0.0058164303,0.0011895389,-0.007786073,-0.02690031,-0.005016603,-0.011752563,-0.0052723303,-0.023222193,0.04422446,0.0032074703,0.020099059,0.014516591,-0.00089640496,0.0037352473,0.0065999343,-0.020012002,-0.018172944,0.004853373,0.00019655617,-0.01978348,0.008286645,0.015387151,-0.06015571,0.0036862784,-0.010294374,-0.008988534,0.011621979,0.0070243324,0.012993111,0.012753706,-0.010408635,-0.016780049,-0.010990823,-0.009630572,-0.02570329,-0.020915208,0.001065076,-0.019870536,0.0122531345,-0.0069644814,-0.0004590845,0.0054845293,0.033886556,0.019272026,0.00062197447,-0.011883147,0.009625131,0.0053349016,-0.013689559,-0.0024974195,-0.0034251104,0.020196997,0.0011895389,0.009630572,0.025768582,-0.004374565,-0.005128144,0.004717348,0.02363571,-0.0074269664,0.0012725141,0.00831385,0.0061973003,0.036541764,0.009717628,-0.00023617347,-0.014146604,-0.018771455,0.016007425,0.014712467,0.009249702,0.014538355,0.024767438,0.011154053,-0.005147187,-0.018129416,-0.02195988,0.021948999,0.005321299,-0.02635621,0.025137426,0.014396889,0.008079886,-0.010136586,-0.02809733,-0.0065292013,-0.013972491,0.023918642,-0.023766294,0.016867103,-0.0023709163,0.018020596,-0.0004070549,0.0013507286,0.009723069,0.0010739176,-0.0033271722,-0.03652,-0.010261728,-0.012481657,0.027944982,-0.0048778574,-0.024810966,0.0048724166,0.0071766805,0.013014875,-0.0024212454,-0.01587684,-0.0024552518,-0.03086136,0.018238235,0.027030895,-0.00027170999,0.04135161,-0.009478224,0.0011528122,-0.02130696,0.002804836,-0.020947855,-0.015093338,0.043332133,-0.041699834,-0.017237091,-0.028293207,-0.028772015,0.001868984,-0.018238235,0.009962473,0.015822431,0.004170527,-0.021165494,-0.025725054,-0.028924363,-0.028032038,0.027487937,0.0061102444,-0.02363571,-0.022591038,-0.013787497,-0.031100763,-0.012731943,-0.005914368,0.0010664363,-0.018183826,-0.01695416,0.02505037,-0.012166079,0.0072909417,0.015310978,0.008662074,-0.011948438,-0.0029082152,-0.016431823,0.010522896,-0.0021818415,-0.011600215,0.012166079,-0.0050465288,0.0067033134,-0.0044262544,-0.010963618,0.0009848212,0.020022884,0.010114822,-0.0068012513,0.026269155,0.04287509,-0.008460757,0.044311512,-0.020425519,0.02711795,-0.0022484937,0.061069798,0.044529155,0.010071293,0.023091609,-0.013080167,-0.026007986,0.013613385,-0.009918945,-0.02201429,0.027161479,-0.0017220769,-0.026203861,-0.0034278308,-0.020577867,-0.0215246,-0.017422086,0.0067958105,0.036955282,-0.0038875954,-0.0075140228,-0.012361955,-0.020447282,0.03625883,0.025529178,0.0553241,-0.023004552,-0.0376082,0.0061918595,0.03826112,0.008253999,0.026508559,0.020741096,-0.0056858463,0.031013707,-0.009418373,-0.000950815,0.010006001,0.042352755,0.02809733,-0.010071293,0.020479929,0.0020186114,-0.04827256,-0.004298391,0.010169231,-0.020686686,-0.008166943,-0.033081286,-0.024549797,-0.0033462157,-0.024658617,-0.040089298,-0.012721061,0.036650583,-0.051928915,0.0025871962,0.029860215,-0.022808677,-0.0057783434,-0.030208439,-0.026530322]},{"id":"guide-embed-media-1","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Image with Full Media Options\nPass an object to setImage or setThumbnail with url, width, height, content_type, description, placeholder, duration, and flags. Use EmbedMediaFlags.IS_ANIMATED for animated GIFs.\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Image with metadata')\n .setDescription('EmbedMediaOptions: width, height')\n .setImage({\n url: 'https://placehold.co/400x200/5865f2/white?text=Image',\n width: 400,\n height: 200,\n content_type: 'image/png',\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.015994161,0.009149015,-0.04545709,-0.010018503,-0.006518396,-0.046874855,0.016426137,-0.03985249,0.003453033,-0.016271068,0.010561242,0.0021557228,0.025054567,-0.110851504,-0.05870433,-0.005067402,-0.0064574764,-0.0027981475,0.044726055,0.055558667,0.007288198,0.024035547,-0.04913442,0.040450606,0.00020664201,-0.00949238,-0.019095521,0.003339501,0.043064613,0.0130035635,-0.0127931135,-0.00781986,0.025165329,-0.04286524,-0.01555111,0.00077326345,0.034934614,-0.025696991,-0.04483682,0.01417765,0.03754862,-0.014676083,0.043153223,0.02074589,0.013801056,0.044548836,-0.0143991755,-0.004524664,0.008445671,0.042754475,-0.022130426,0.044172242,-0.0048375693,0.010799382,-0.037127722,0.009863435,-0.023082986,-0.009198858,-0.024633667,0.026450178,0.022706393,-0.02972876,-0.0016572898,-0.016160306,-0.022817155,0.015318507,-0.04399502,0.04545709,-0.034580175,-0.0066956165,0.040206928,-0.021654146,-0.028643284,-0.018574936,0.009824668,0.007055596,-0.0032010474,0.011009831,0.0058316663,-0.04545709,-0.018796463,-0.014111192,-0.06659065,0.018408792,-0.078420125,0.044903275,-0.047184993,-0.05396368,-0.035953633,0.019893015,-0.053520627,-0.0073435795,-0.054938395,0.01778852,-0.022108274,0.031035762,-0.030260421,-0.0062359506,0.03555489,0.05476117,0.06557163,-0.0023440197,-0.09738273,0.010965526,0.039077148,-0.0747871,0.021022797,0.07784416,0.014199803,0.01495299,-0.046786245,-0.040450606,-0.023171596,0.00895518,0.027269823,-0.022540249,0.033007342,0.047495127,0.016403984,-0.018840767,-0.072483234,-0.022307646,0.076249175,-0.042222813,0.039210062,-0.01782175,-0.028687589,0.020889882,-0.060565148,-0.035953633,-0.007238355,0.0022401796,0.007011291,-0.041292407,-0.014831151,-0.019782253,0.010832611,-0.0100572705,-0.03486816,0.025032414,0.051349677,-0.011652256,0.035776414,-0.025696991,0.014133344,0.0003558258,-0.03187756,0.008174301,-0.051438287,0.0012675428,-0.0008251835,0.0010937835,-0.032918733,0.0058427425,-0.0429317,-0.037238482,0.012062078,-0.038213197,-0.037149873,-0.03382699,0.0016185227,-0.036463145,0.0089441035,0.008600739,-0.0096696,0.032519985,0.013324776,-0.0034641095,-0.022196883,0.02277285,0.04160254,-0.03573211,0.011707637,0.014509939,0.0026140043,0.027469197,0.06260318,-0.059767656,0.015517881,0.033383936,0.0022706392,0.036817584,-0.028798351,0.008545357,0.012815267,0.023437427,0.03006105,0.026583094,0.02328236,-0.022307646,-0.053653546,-0.014465634,0.01988194,-0.026760314,-0.01946104,-0.01035633,0.00889426,-0.024589362,0.058527112,0.0095643755,0.050552182,0.02647233,0.029174946,-0.006900528,-0.046254583,-0.013291547,0.0072217407,-0.04098227,-0.03757077,0.030105354,0.020989567,-0.03154527,-0.0040040785,-0.048514146,-0.019826557,0.028909115,-0.017090714,-0.019593956,-0.02999459,-0.008899799,-0.06503997,0.028909115,0.022230113,-0.049621776,-0.017478384,-0.01766668,-0.036485296,-0.009232087,-0.028222384,0.001219084,0.01164118,-0.013501996,-0.014543167,0.0048126476,0.010993217,-0.0053830766,0.011419654,-0.010666466,0.0026790774,-0.0006763459,0.01898476,0.0028286073,-0.01635968,-0.002122494,-0.034137122,-0.0018331258,0.0054024598,-0.06171708,-0.026516637,0.0077201733,0.018054351,-0.019073369,0.016426137,0.04002971,0.052457307,-0.042998154,-0.01981548,0.0541409,-0.00480434,-0.014587473,-0.0010037887,0.0038240887,-0.0048846435,-0.03668467,0.021388315,0.020391447,-0.030216116,0.008008157,0.033295326,-0.009143476,0.0016642124,-0.017522689,-0.014997295,0.012737732,-0.0019355816,0.034735244,-0.007360194,-0.0030930538,-0.026405873,-0.0011200898,-0.015218821,-0.03763723,-0.049798995,0.017123943,-0.041292407,0.005023097,-0.0007254969,-0.032963037,-0.004172992,-0.0012509284,0.007886318,-0.019593956,0.043529816,-0.017456232,-0.050818015,0.061628472,-0.016847035,0.006861761,0.023658954,-0.028510367,-0.015407118,-0.009531147,0.014687159,0.0030321341,0.010306487,0.026450178,0.0054966086,-0.0433969,0.022972224,-0.016104924,0.0017625145,-0.02032499,-0.005715365,0.005507685,-0.01898476,0.033383936,0.036241617,0.015972009,-0.00094633043,0.0037327094,0.043529816,0.017522689,0.009060404,-0.046431802,-0.021233246,-0.041890524,-0.0305041,-0.00996866,0.001131166,-0.027557807,0.009514532,0.044238698,-0.0065793158,0.03650745,0.038944233,-0.0001311848,0.0129481815,-0.057375178,-0.055292834,0.028621132,-0.003256429,-0.022307646,-0.005947967,-0.0013443846,-0.013302623,-0.031235136,-0.04406148,0.03686189,0.010350792,-0.05781823,0.011630104,0.0123279095,-0.027247671,0.04594445,0.03360546,-0.01632645,-0.005826128,-0.054273818,-0.034668785,0.0084788995,-0.052014254,0.009686215,0.009952046,0.006274718,-0.0060753445,-0.00063307915,-0.00036378688,0.0009504841,0.008966256,0.029662302,0.0078032454,0.042134203,-0.01988194,-0.009985275,-0.018552784,0.012372215,0.03411497,0.033383936,-0.041403167,-0.013557378,-0.0052944664,0.01349092,0.03967527,-0.018198343,0.0030875155,-0.0062193363,0.068008415,0.025564075,-0.014332718,-0.00459666,0.022196883,0.026051432,-0.05232439,-0.0012530052,0.018010046,0.08719255,-0.0072937366,-0.0049372558,-0.010738462,0.015540034,-0.018198343,-0.018242648,0.0057264413,0.018696776,0.015130211,-0.05697643,0.018486327,-0.0014800691,-0.015794788,-0.0030570559,0.017467307,-0.006014425,0.023526037,-0.0095366845,-0.014698235,0.034491565,-0.007869704,-0.0399411,0.00865612,0.015373889,-0.048425537,-0.01110398,-0.004981561,-0.013845362,-0.0073325033,0.008002619,0.0262065,0.0011837784,0.027469197,-0.050818015,-0.047406517,0.034004208,0.0219089,0.029086335,0.03531121,0.013169708,0.00084872067,-0.049710386,-0.0074432665,0.018918302,-0.05626755,0.032254152,0.01972687,0.0038600867,-0.03963096,-0.014321642,-0.029883828,0.027535655,-0.07199588,-0.031988323,0.0047295755,0.014288413,-0.013391233,0.023481732,0.04193483,0.040251233,0.0053138495,-0.024279226,-0.0035527197,-0.040428456,0.014886533,0.031811103,0.0028909114,0.03976388,0.0058427425,-0.03865625,-0.036042243,0.020557592,0.01202885,-0.041536085,-0.0065627014,0.017245783,0.021587687,0.0006500397,-0.01662551,-0.04784957,0.009304083,-0.07554029,-0.020524364,-0.0038545486,0.02698184,-0.0056101405,-0.00820753,-0.024700124,-0.04665333,0.090559736,0.0481154,-0.020336067,0.047362212,-0.09596497,-0.06667926,-0.005704289,0.006679002,-0.009741596,-0.015451423,-0.016104924,-0.04149178,-0.020136693,0.0009553299,0.007171897,0.055292834,0.000521624,-0.07939484,0.02143262,-0.009420384,-0.019084446,-0.006928219,-0.00010963796,0.00019452733,0.020092389,-0.03661821,-0.010926759,-0.009569914,0.031035762,0.008423517,-0.0054689175,-0.011452883,0.071287,0.0051837033,-0.018165113,-0.044659596,0.022285493,0.01071631,-0.026095737,-0.0007864165,-0.00895518,-0.0042228354,-0.051837035,0.02955154,-0.0067177694,-0.02101172,-0.01190701,-0.011497188,-0.006922681,-0.038168892,-0.001012096,-0.012970335,0.037149873,0.0125383595,-0.061052505,-0.016226763,-0.003220431,-0.00033194255,0.016891342,-0.032918733,-0.025564075,-0.028842656,-0.005859357,0.003333963,0.004987099,0.034513716,-0.051925644,0.030349033,0.0006974601,0.01194024,0.040849354,-0.000728266,0.016437214,0.0028438373,0.0029601383,0.02381402,-0.015628643,-0.01119259,0.014188726,-0.014808998,0.010228953,0.035355516,0.0047821878,0.024367835,-0.005826128,-0.032763664,-0.0075817197,0.030326879,0.0695591,-0.012250376,0.023415275,-0.0005908508,0.00883334,-0.046165973,0.0005690444,0.003411497,-0.023614649,-0.032054782,-0.011225819,0.00093110057,0.035709955,0.00444713,0.018021122,0.015994161,0.026228653,0.018165113,0.023415275,0.018608166,-0.01972687,0.042045593,-0.008805649,0.04459314,-0.0027233826,-0.0069503714,0.0015742176,0.024677971,-0.016437214,-0.043330442,0.007786631,0.0053969217,0.024367835,0.0080136955,-0.011873782,-0.050419267,-0.015706178,-0.011563646,-0.0015631412,0.0037631693,-0.03274151,-0.024035547,-0.0006548856,-0.0014385331,-0.0028909114,0.0257856,-0.006047654,0.005870433,0.001187932,0.010971065,0.021643069,-0.04461529,0.015495729,0.0025890826,-0.019538574,0.0025807754,0.0317668,0.00468527,0.0034364187,0.0257856,-0.01370137,0.03333963,-0.022462714,-0.0063079465,-0.037903063,0.02629511,-0.017079638,0.024345683,0.0036579445,0.006047654,0.015008371,-0.0041868375,-0.0043474436,-0.029485082,0.008456747,-0.025276091,-0.00094563817,-0.04873567,-0.0053443094,-0.03127944,-0.0075208005,0.0040068477,-0.018076504,-0.012682351,0.026095737,-0.05205856,0.019693643,-0.0029712145,0.004964947,-0.031678185,0.010062808,-0.0015977547,0.019826557,-0.03659606,-0.039232217,-0.041004423,-0.036064398,-0.020612974,-0.025763448,-0.002913064,-0.023924785,0.011873782,-0.01692457,0.013214013,-0.026760314,0.011353197,0.037349246,-0.012837419,0.004048384,-0.04089366,-0.0010183264,0.010821534,-0.046298888,0.0012460825,0.05405229,0.0057541323,-0.001247467,-0.010350792,0.018275877,0.026760314,-0.02286146,0.00036482528,0.07323642,0.009724982,-0.015229898,0.0006375789,-0.03637453,-0.025896363,-0.0055353753,-0.037770145,-0.007288198,0.04279878,-0.016946722,-0.021576611,0.005031404,0.058128364,0.008462285,-0.013280471,-0.02432353,0.014720388,-0.04683055,-0.0055326065,-0.03566565,-0.0025226248,-0.011497188,0.008152149,0.04483682,0.005981196,-0.014509939,-0.053742155,0.01011819,-0.001704364,-0.025652686,0.021764908,0.00981913,0.009736058,0.0014482248,-0.00091171707,0.007614949,0.027602112,0.0028770661,-0.03453587,0.049001504,-0.03249783,0.007930623,0.023570344,-0.017378697,0.016027391,-0.005815052,0.019616108,0.036485296,0.023592496,0.0018095887,0.0014129191,-0.028510367,0.009508994,-0.00204496,-0.03333963,0.0048486455,-0.013801056,-0.0072549693,-0.02534255,-0.018718928,-0.0066180825,-0.026428025,-0.01593878,-0.007465419,0.028244536,0.042976003,-0.020136693,-0.0028576825,-0.029507235,-0.042200662,0.010683081,0.0038794703,-0.0026389258,-0.006911604,-0.022551324,-0.009176705,-0.00027708028,-0.04461529,0.046963464,-0.005136629,-0.05467256,-0.014609626,-0.01310325,0.0101846475,-0.032542136,0.0124829775,0.00015022217,0.0053775385,0.054318123,-0.0087890355,-0.043020308,-0.02913064,-0.020025931,-0.0369505,-0.03635238,-0.003533336,0.032519985,-0.03178895,-0.012161765,0.0075927963,-0.020579746,-0.08400258,-0.019582879,0.07115408,-0.049798995,-0.025630534,-0.008379213,0.0038047053,-0.021798138,0.04674194,-0.018730005,-0.027048297,0.023393122,0.013501996,-0.03881132,0.018918302,0.007853089,0.014100116,-0.032985188,0.00040255388,0.008318293,-0.007997081,-0.0032425837,-0.0024672435,-0.0035167218,-0.009891126,0.014354871,0.027269823,0.01683596,0.020701583,-0.02964015,0.018242648,0.039586656,-0.013513072,0.02277285,-0.0030792083,0.009392693,0.02946293,0.022628859,-0.0010307871,-0.022495942,0.005975658,-0.0028853733,0.00597012,-0.0129481815,0.010677543,-0.007127592,0.0030736702,0.014698235,-0.006701155,0.031080067,0.009464689,0.010151419,-0.019527497,0.019006912,-0.027912248,0.022152578,-0.03539982,-0.0015409887,-0.017799597,-0.011563646,-0.038789164,0.01585017,0.03566565,-0.027026145,0.009149015,0.0030930538,0.011297815,-0.015340661,-0.01220607,-0.016581206,0.014930838,0.011331044,0.027026145,0.04468175,-0.02187567,0.0016849805,-0.016392907,0.030747779,-0.0015783712,-0.0016988259,0.0055104536,-0.024124157,0.02080127,0.016503671,0.010228953,-0.0046160435,-0.028200231,0.004712961,-0.0068119178,0.025409007,0.023570344,-0.034846004,0.019195208,-0.018619241,-0.010766153,-0.0182648,-0.051526897,-0.0057541323,0.05002052,0.0013727676,0.022097196,-0.01880754,0.00943146,-0.033317477,-0.025586227,-0.014487786,-0.04691916,0.020158846,0.00865612,-0.01874108,-0.0019743484,-0.028886963,-0.03263075,-0.01925059,-0.015528957,-0.014665007,0.03746001,0.025364703,0.008146611,-0.0071774353,0.035842873,0.020302838,-0.03841257,-0.007542953,0.009315159,0.009337312,0.006773151,-0.019948397,-0.015495729,0.006252565,0.0085952,0.02388048,0.0026998455,-0.028333148,0.013369081,-0.019173056,0.019582879,0.028399605,-0.0121728415,-0.01808758,0.0030182889,-0.008102305,0.011375349,-0.0060365777,-0.018707853,0.027535655,-0.037127722,0.04873567,0.0019245052,-0.040251233,0.015684025,-0.048779976,-0.009780363,-0.0020878804,0.023127291,0.01071631,-0.030437643,-0.024611514,0.0044305157,0.025674839,-0.00063342525,0.011281201,0.0041231485,-0.02095634,0.039498046,-0.012560512,0.00008640371,0.0070334435,0.011585798,0.015263126,0.010151419,0.016049543,0.032852273,-0.014742541,0.02534255,0.02543116,0.055913106,-0.0056239855,0.0142441075,-0.0042726784,-0.0139339715,0.01984871,-0.011929164,0.0038711631,0.05892586,-0.050286353,0.00083556754,-0.03351685,0.014875456,0.036219466,-0.026073584,-0.026627399,0.013823208,-0.029485082,-0.0020463443,0.010046194,-0.007991542,-0.017799597,0.016248915,-0.0011768558,-0.006352252,-0.030349033,-0.0010155572,-0.02372541,-0.0030321341,0.0002208335,-0.0024395527,0.030769931,-0.014875456,0.015163439,-0.011630104,-0.0064796293,0.0060088867,0.018076504,-0.0048541836,0.037836604,-0.015717255,0.009808054,-0.023481732,-0.012438673,0.014509939,-0.002355096,-0.025320398,0.011884858,-0.02611789,-0.0064851674,0.010500322,-0.0061861076,-0.015152363,0.013413386,0.0077534025,0.017688833,0.014509939,-0.033627614,0.033118103,-0.0067620743,-0.034159277,0.009082557,0.012294681,-0.0011796248,0.02152123,0.006817456,-0.008379213,-0.027092604,-0.04169115,-0.006368866,0.03263075,-0.017423002,-0.01576156,0.014133344,-0.02199751,-0.0037382476,0.021255398,-0.029418623,0.017135018,-0.006861761,-0.003417035,-0.00605873,0.0021834134,-0.016271068,-0.0055215303,0.028754046,0.00067357684,-0.02483304,-0.008800112,0.002874297,-0.0013367697,-0.006518396,0.018098656,0.02062405,0.020646203,0.042754475,0.007304813,-0.0069836,-0.007692483,0.036485296,-0.0011997005,0.035067532,0.011419654,0.004100996,-0.052191474,-0.030659169,0.00051747035,-0.030349033,-0.001012096,0.027535655,-0.030991457,-0.005981196,0.04098227,0.041137338,0.022562401,-0.0011609335,-0.021809213,-0.011552569,0.027447045,0.004557893,-0.041159492,-0.032785814,0.03533336,0.014687159,0.013457691,0.030703474,-0.035621345,0.0048375693,0.0027995321,0.018131886,0.04184622,-0.026073584,0.049710386,0.0014004583,-0.025475465,0.0035970248,0.004256064,-0.03170034,0.01202885,-0.015983084,0.012992487,0.01865247,-0.001237083,0.008213068,0.01310325,0.020214228,0.0028078393,0.05826128,-0.0026167734,-0.014332718,-0.004981561,-0.039143607,0.04286524,0.01674735,-0.004707423,0.01722363,0.005518761,-0.025564075,-0.03462448,-0.0014219186,-0.059235994,0.017290087,-0.020192076,-0.00058635103,-0.019715795,-0.007864165,-0.027801486,0.0022831,-0.017932512,-0.017899282,-0.002533701,-0.012859572,0.025098871,0.026937535,0.039099302,0.015717255,0.0046132742,-0.018663548,0.021355085,0.010566779,0.031057915,0.009459151,0.009442536,0.021388315,-0.011081827,-0.04452668,0.019272743,-0.011452883,0.021288628,-0.013889667,-0.037925214,-0.016226763,0.01683596,-0.010516937,0.01164118,0.003934852,0.01981548,0.028310996,-0.020247456,0.0065405485,0.009824668,-0.012926029,-0.0059258146,0.015628643,-0.03041549,-0.0031290518,0.036573905,0.024013394,-0.006994677,0.0003689789,-0.02432353,-0.007127592,0.02964015,-0.007315889,-0.0023315588,-0.023393122,-0.021332933,0.0072937366,0.01916198,-0.018851845,0.015185593,-0.016703043,0.0062636416,-0.009320697,-0.005643369,0.005903662,0.011607951,0.013645988,0.010361868,0.014022582,0.00071718975,0.014465634,-0.012051002,0.00018223957,0.011486112,0.06286902,0.0028521444,0.00964191,0.027181214,0.035266906,0.020878805,-0.028244536,0.0059147384,0.03644099,-0.015506805,0.008002619,-0.0063356375,-0.006590392,-0.014875456,0.0257856,-0.032874428,-0.0126380455,0.009060404,0.03557704,-0.005975658,-0.020967415,-0.012571588,0.019117676,-0.03659606,0.02955154,0.013369081,-0.055647276,-0.0061805695,0.042599406,-0.02118894,-0.0069503714,0.043352596,0.04064998,0.020524364,0.01620461,-0.016304297,-0.0046243505,-0.016060619,0.017301163,-0.005053557,-0.009808054,-0.019017989,0.019660413,0.018231573,0.011829477,-0.046210278,-0.00919332,-0.009553299,0.008528743,0.019505344,-0.023592496,0.040096167,-0.041646846,-0.012937105,0.0033256558,-0.011951316,0.00055969873,0.0016448289,-0.05910308,-0.010140343,0.04468175,0.0005410075,-0.0063467138,0.05196995,0.016116,0.017533766,-0.025829906,-0.012571588,0.01680273,0.029662302,0.004012386,0.013036792,0.0016116,-0.044393767,0.00073172734,-0.025741296,-0.008069077,0.017544841,-0.03686189,0.011796248,0.012161765,0.028820504,-0.0031982784,0.046697635,-0.02749135,-0.020734813,0.015296355,0.0025517,-0.0044194395,-0.024589362,0.003181664,-0.0044277464,-0.011397501,0.013900743,0.0028798352,-0.005197549,-0.016725196,-0.03119083,-0.033007342,0.00016363486,-0.020114541,-0.008855493,-0.022673164,0.031412356,0.0050286353,0.0010564011,0.023437427,0.0007047289,0.0025046258,-0.0033893446,-0.010129266,-0.0057264413,0.0030349032,0.014011506,-0.019749023,0.007714635,0.03014966,-0.100572705,0.0010127882,0.02020315,-0.0021986433,0.008368136,0.009464689,-0.0019037372,0.019571804,-0.00042470646,-0.016171383,0.0021155712,0.0040096166,-0.0016877495,-0.014100116,-0.021288628,-0.010129266,0.010040656,0.0075983345,-0.0009234856,0.020635126,0.0356435,0.014698235,-0.009508994,0.0080136955,0.021764908,-0.0186857,0.0024547826,0.00033401934,-0.003951466,-0.0011007062,0.008561972,-0.009697291,0.009974198,-0.027314128,-0.004710192,0.016913494,0.0140890395,-0.007792169,-0.0034281116,-0.019516421,0.011087365,0.03101361,-0.011630104,-0.0032065858,0.015905552,-0.034513716,-0.008766883,-0.0017292856,0.005125553,0.005316619,0.041358862,0.030083202,-0.030083202,-0.029374318,-0.0039237756,0.022252265,-0.005031404,-0.011164899,0.026272958,0.016869187,0.0066346973,-0.008429056,-0.036064398,-0.00027984937,-0.0044692825,-0.0056212167,-0.022241188,0.008362598,-0.024389988,0.0038379342,-0.003959773,0.0078032454,0.023791868,0.007138668,-0.0042283735,-0.038789164,-0.01477577,-0.010876915,0.030969305,0.0082961405,-0.0035111837,0.0069836,-0.013446615,0.028510367,0.022396257,-0.030437643,-0.006784227,-0.02301653,0.013058945,0.0136238355,0.01715717,0.04182407,0.00243263,-0.008163225,-0.014100116,-0.010982141,0.009448075,-0.020225303,0.030127507,-0.04246649,-0.016381832,-0.028709741,-0.0026763084,0.011663333,-0.0026098506,0.0007587258,0.027912248,0.00028850272,-0.025054567,-0.019272743,-0.029950285,-0.037592925,0.0052363155,-0.0028909114,-0.011751942,-0.028842656,-0.009918817,-0.009868974,-0.009198858,-0.006047654,0.008561972,-0.02277285,-0.013202936,0.02638372,-0.0053609237,0.00432806,0.021554459,0.014609626,-0.0072605074,0.0142441075,-0.021587687,0.0010577856,0.011148285,0.0015631412,-0.0067953034,-0.013269395,-0.007891856,0.0055353753,-0.0042948313,0.0078586275,0.017888207,0.005095093,-0.0014233032,-0.0008348753,0.028333148,-0.010012966,0.031345896,-0.022008587,0.014609626,-0.007437728,0.036795434,0.029861676,0.010688619,0.016470442,-0.011984545,-0.03881132,0.028820504,-0.015540034,-0.034092817,0.031744644,-0.015628643,-0.029595844,-0.015008371,-0.017267935,-0.0025060105,-0.017079638,0.0036524064,0.050242048,0.0017611299,-0.012737732,-0.024013394,-0.008866569,0.022795003,0.03533336,0.039210062,-0.025564075,-0.025143176,-0.0034751857,0.046697635,0.000021892978,0.036906194,0.01877431,0.024965955,0.016592281,-0.028842656,0.0015202207,0.025852058,0.032165542,0.016869187,0.016536899,0.01829803,-0.021809213,-0.052634526,-0.011807324,-0.0010827073,-0.027513502,-0.007398961,-0.02492165,-0.032586444,-0.0262065,-0.010190186,-0.014133344,0.005167089,0.03573211,-0.058438502,0.009503456,0.02707045,-0.017810673,-0.011807324,-0.0262065,-0.025143176]},{"id":"guide-embed-media-2","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: GIFs in embeds\nEmbeds require GIF format for animated images (not MP4). Add EmbedMediaFlags.IS_ANIMATED to the flags field. For Tenor URLs, use resolveTenorToImageUrl() to get the GIF URL and flag — see the GIFs (Tenor) guide.","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.0420796,0.034301747,-0.046550706,-0.009530203,-0.006939525,-0.02782796,-0.015287912,-0.03176346,-0.0020143252,-0.018734388,0.019852163,-0.011835616,0.03318397,-0.06883636,-0.024893798,0.008948028,-0.014903678,-0.00978636,0.019991886,0.05155741,-0.0020245132,0.011305836,-0.041730296,0.061757114,-0.027804673,0.0306224,0.004383777,-0.0023592638,0.055702493,0.058683228,-0.012470187,-0.011393162,0.034068875,-0.033999015,-0.0061128363,0.025569122,0.023356857,-0.011503776,-0.019048763,0.027269073,0.04224261,0.003964611,-0.011300014,0.011899655,0.020085033,0.0071549295,0.015823513,-0.02170348,0.0129825,0.026570462,0.0025950447,-0.0053007025,-0.00788847,0.0023578084,-0.017069368,0.029201893,-0.025382826,-0.024195189,0.0015136547,-0.010094913,0.008994603,-0.029504623,-0.005356009,-0.0358154,0.022751395,0.021051444,-0.051371112,0.071444504,-0.013157153,-0.02096994,0.032299064,-0.019863807,0.02286783,-0.02306577,-0.03385929,0.021121304,0.0017188714,0.022623317,0.00094821735,-0.062362574,-0.010607227,0.0065552895,-0.079734676,0.010380179,-0.05928869,0.032904524,-0.041427564,-0.022565098,-0.024381485,-0.00007973067,-0.062222853,-0.0046952404,-0.09696705,0.010222991,-0.04890269,-0.033440124,-0.0059440057,0.0066891895,0.013390022,0.026454028,0.0576586,-0.016405689,-0.06785831,-0.0063165976,0.0004711978,-0.059894152,-0.0021016514,0.011823972,-0.040193357,-0.00040825014,-0.036537297,-0.041986454,-0.009559312,0.04634112,0.06273517,-0.022763038,-0.00050321745,0.02376438,-0.01627761,-0.010409287,-0.0807593,0.003685167,0.06883636,-0.016836498,0.025382826,0.00785354,0.00005994582,0.029551197,-0.008284349,-0.014076989,0.0051551587,-0.0051114955,0.025056807,-0.029318327,-0.024917085,-0.0052861483,-0.014065346,0.025452686,-0.038097527,0.041334417,0.012842778,0.002976369,0.019526146,0.03434832,-0.0017538018,0.006293311,-0.05952156,0.008383319,-0.0072830077,-0.014205067,-0.029993651,-0.00022486506,-0.017535107,-0.02705949,-0.06068591,-0.058962673,-0.018629597,-0.050253335,-0.0105199,-0.03672359,-0.0042382334,-0.019491216,0.030226521,0.035792112,-0.021656906,0.05146426,0.048110932,-0.020515844,-0.01770976,0.045852095,-0.011218511,-0.036816742,-0.02759509,0.0277581,0.0044361725,0.008849058,0.0003302023,-0.022192506,0.026128009,0.01488039,-0.0006021872,0.06865007,-0.05668055,-0.020492556,-0.01341331,0.04983417,0.015916662,0.041194696,0.0313443,-0.027641663,-0.022320585,-0.016813211,0.039704327,0.039029006,-0.039261874,-0.0017494356,0.02759509,-0.03122786,0.07749912,0.009716499,0.010386,0.020585705,0.02326371,0.009943548,-0.055236753,0.0039093043,0.0015034666,-0.025801992,-0.03697975,0.040659096,0.030342955,-0.016405689,-0.023508223,-0.03914544,-0.03357985,0.03192647,-0.011864725,-0.031903185,-0.012784561,0.02573213,-0.0555162,0.0093963025,-0.0037171866,0.012365395,-0.0051114955,0.021226097,-0.02533625,-0.0078011435,-0.02343836,0.038493402,0.0014758133,-0.029947076,-0.018769318,0.00006144674,-0.0010093458,0.021063088,-0.013075648,-0.014566015,0.022600029,0.010880848,-0.0115619935,0.031577166,0.01814057,-0.006077906,-0.052675184,0.0054637115,-0.0019197217,-0.048669823,0.026360879,0.034581188,0.008109696,0.002066721,0.032299064,0.015555713,0.029853929,-0.05635453,0.0019546521,0.036863316,-0.035629105,-0.009617529,0.035163365,-0.009640817,0.007935043,-0.040100206,-0.00732376,-0.0016315451,-0.018478232,-0.005341455,-0.0027711524,0.00007027033,0.025382826,-0.0025717577,-0.016731707,0.03718933,0.001200008,0.042661775,0.050905373,-0.002237007,-0.039820764,0.0039063934,-0.01797756,-0.0691158,-0.011806507,-0.0065320022,-0.045549363,-0.004869893,-0.010257922,-0.0008667129,0.00044827466,-0.0008012182,0.019386424,-0.0039063934,0.013331805,0.0065087155,-0.040868677,0.051836852,-0.030785408,0.02096994,0.0036706128,-0.016638558,-0.036933176,-0.045083623,-0.0033678818,0.0065552895,0.030459391,0.033672996,-0.030179946,0.00059964013,0.054677866,0.026756758,0.005376385,-0.01141645,-0.0054200483,0.043290526,-0.020178182,0.04687672,0.023589727,0.006613507,-0.0015020112,-0.023123987,0.0011061323,0.035722252,0.007673065,-0.030529251,-0.02136582,-0.023054127,-0.0028701222,0.012248959,0.022355516,-0.022099359,-0.0063631716,0.01461259,0.020515844,0.04210289,0.037701648,-0.027641663,-0.0066251503,-0.049554728,-0.03255522,0.005245396,-0.017581683,-0.022332229,0.021132948,-0.019747373,-0.025173243,0.015148191,-0.050020467,0.024171902,0.00087180693,-0.049135562,0.0071374644,0.025289677,-0.012889353,0.038074236,0.004217857,0.01371604,-0.0008659852,-0.051743705,-0.027338933,0.027315646,-0.05542305,0.028223839,-0.03751535,0.024265049,0.00782443,0.0030622398,-0.02952791,0.03621128,0.036304425,-0.0031029922,0.011142828,0.06348035,0.0015704167,0.021063088,-0.010979818,-0.008068944,0.03339355,-0.017081011,-0.017465247,-0.01957272,-0.028689578,-0.0037230086,0.04000706,-0.014833816,0.0064272108,-0.012377039,0.043756265,0.029877216,-0.028689578,0.043453533,0.0050270804,0.023962319,-0.041008398,-0.028782727,0.022495238,0.036863316,0.04806436,0.0062001627,0.00392677,-0.01747689,-0.030342955,-0.019235058,-0.038563266,0.0014605313,0.023554796,-0.03185661,0.042754926,0.019153554,-0.0038132456,-0.022809612,0.005699492,-0.02496366,0.0142982155,-0.034208596,0.0016068027,0.03185661,-0.01364618,-0.05118482,0.010263744,0.022111002,-0.039704327,-0.019421354,0.0066076852,-0.00898878,-0.025382826,-0.053979255,0.016335828,0.017197447,0.04124127,-0.022891117,-0.017721403,0.028130691,0.018222075,0.013832476,0.009046998,-0.000072044146,0.013029074,-0.053699814,0.041753583,0.013925623,-0.05682027,0.013296874,0.024521207,-0.0028613897,-0.006706655,-0.004590449,-0.029108744,0.028503282,-0.009437055,-0.021063088,0.0030011116,0.016231036,-0.029271754,-0.010799345,0.014065346,0.036397576,0.0014525263,0.014903678,0.017150873,-0.03225249,-0.016126245,0.028177265,0.04217275,0.031437445,-0.008563792,-0.048949264,-0.038516693,-0.028084118,0.028969023,-0.028875874,0.0053007025,0.026058149,-0.033603135,0.01457766,-0.016184462,-0.043034367,0.00539094,-0.08439207,0.0026590838,-0.034325033,0.024358198,-0.024591068,-0.004316827,-0.03697975,-0.033812717,0.06827747,0.06785831,-0.04922871,0.031204574,-0.075775884,-0.032741517,-0.0087500885,0.020026816,-0.010287031,-0.0016839409,0.016126245,-0.042522054,-0.060499616,0.020399408,-0.0024480454,0.009990121,0.060127024,-0.036397576,0.026151296,0.05635453,0.009879508,-0.0019182663,0.02003846,-0.005536483,0.020504199,0.01910698,-0.008360031,-0.020783644,0.039704327,0.0030942596,0.032368924,-0.018489875,0.034720913,-0.004249877,-0.02386917,-0.038190674,0.0037637607,0.010455861,-0.024567781,-0.0053501874,0.010909958,0.023380144,-0.043663118,-0.019759016,-0.039867338,-0.0042062136,-0.012446899,-0.0130640045,0.0063340627,-0.026523888,0.02170348,-0.026523888,0.026034862,-0.02140075,-0.06920895,-0.011946229,-0.0009773261,-0.0049048234,0.014519442,-0.0231007,-0.023042483,-0.024870511,-0.0070559597,-0.0061710537,-0.016231036,0.034441467,-0.071444504,0.03162374,-0.0007531888,0.020795288,-0.00034766758,0.011841438,-0.010426752,0.016918002,-0.002459689,0.02190142,-0.03672359,-0.029714206,0.0075275213,-0.02136582,0.039029006,0.026617037,0.014938608,-0.0021525917,-0.030459391,-0.0063806367,-0.016126245,0.012644839,0.033300404,0.011655142,0.009477807,-0.029411476,0.00070334005,-0.02952791,-0.011463024,-0.0110496795,-0.011521242,0.014216711,-0.03665373,0.008482289,-0.019491216,-0.0052337525,0.041753583,0.022623317,-0.014659164,0.008039835,0.035792112,0.009896973,-0.018746031,-0.0024975303,-0.03208948,-0.006351528,-0.034325033,-0.019130267,0.010863383,0.027781386,-0.01754675,-0.022495238,0.033812717,0.016347472,-0.007166573,0.031064853,0.0022340962,-0.019724086,-0.028433422,0.00065058045,-0.010554831,-0.01075277,-0.037724935,-0.022145933,0.008476467,-0.0022457396,0.04023993,0.0030447748,0.0013746605,0.0059323623,-0.016289253,0.016033096,-0.0045642513,-0.052721757,0.005702403,0.0011607112,-0.028223839,-0.007742926,0.0000703613,0.025965,-0.016696775,0.024614355,-0.030436104,-0.006293311,-0.049973894,-0.030762121,-0.028153978,-0.00865694,-0.035186652,0.025149956,-0.01131748,0.013238657,0.016778281,-0.011096253,0.012970856,0.009582599,0.02100487,-0.01987545,0.0059236297,-0.026919767,-0.009343907,-0.019293277,-0.018187143,0.0173721,-0.0181755,-0.05924212,0.021854846,-0.06650766,0.024241762,-0.029038884,0.01720909,0.029784068,-0.013471527,-0.023822596,0.016731707,-0.00036622438,-0.009576777,-0.01910698,-0.023892459,-0.031321008,-0.0063631716,0.017022794,-0.019526146,0.02806083,-0.03278809,0.014938608,-0.00742273,0.019665867,0.015206409,0.0055335723,0.015951592,-0.046760287,0.008138805,0.0036065734,-0.03409216,0.016661845,0.031996332,-0.017779622,-0.027269073,-0.014344789,0.01770976,0.004875715,0.009303154,0.0048087644,0.043034367,-0.010939066,-0.0254294,0.014309859,-0.039564606,-0.021784985,0.0028948647,-0.030599112,-0.039355025,0.035838686,-0.006951168,0.005032902,-0.00023159645,0.032951098,-0.00022650242,-0.026989628,-0.030459391,-0.010450039,-0.005099852,0.0397509,-0.019898739,0.0030884377,0.014391364,0.0236363,0.04587538,-0.006759051,-0.003478495,-0.019398067,0.03954132,-0.0077778567,-0.014007128,0.020178182,0.0026445296,0.017395386,-0.013261944,-0.0058304816,0.016766638,-0.021889776,0.016615272,-0.044291865,0.025801992,-0.0017246931,0.0116202105,0.0007772035,-0.014973538,0.014496155,0.028549857,0.027688239,0.004124709,0.0032776447,0.026151296,0.004590449,-0.006467963,-0.002666361,-0.026500601,-0.0014008584,0.0068987724,0.0021482254,-0.00908775,-0.013075648,-0.0071083554,0.024404772,0.0028526569,0.009873686,0.032694943,-0.0088257715,0.062316,-0.012411969,0.010170596,0.0004912101,-0.024614355,0.0038801958,-0.016137889,0.0035134256,-0.015579,-0.022518525,-0.00024323995,0.0075275213,-0.05169713,0.033137396,-0.00426152,-0.04750547,0.004683597,-0.0009147423,-0.014472868,-0.059102394,0.013343449,-0.020492556,-0.004284807,0.0041800155,-0.016068026,-0.024102041,-0.024986947,-0.0019124445,-0.02073707,-0.055981938,-0.014926964,0.022471951,-0.03292781,-0.0006462141,0.010287031,0.0064155674,-0.07125821,-0.029667633,0.06329405,-0.046853434,-0.014135206,-0.0065028938,-0.008808306,0.015730366,0.03481406,-0.0058042835,-0.022332229,0.0054782657,0.027408794,-0.010351069,0.05016019,0.015695436,0.0145077985,-0.030552538,0.01926999,0.008243596,-0.017057724,-0.0017028616,0.033230543,-0.035233226,0.03907558,0.013890693,0.013983841,0.005652918,0.027175924,-0.020422695,0.012074308,0.013704397,0.010077448,0.008371675,0.02736222,-0.026873194,0.023450004,-0.018082352,0.010956531,0.010450039,0.024404772,0.010397644,0.008226131,-0.024893798,-0.0075915605,0.038796134,0.010257922,-0.033207256,-0.026081435,-0.015928306,0.016487192,0.028806014,0.010572297,0.036164705,-0.012225673,0.030785408,-0.034767486,-0.0152296955,-0.045852095,-0.03548938,-0.01081681,0.020143252,0.04254534,-0.03914544,0.02263496,-0.0050416347,-0.019246701,-0.020411052,-0.034581188,-0.030668974,-0.005198822,-0.007859361,0.028899161,0.016731707,0.00007368151,0.024078753,-0.019898739,0.012912639,0.0074110865,0.02473079,-0.043313812,0.0020827306,0.010933245,0.027338933,0.022553455,-0.014682451,-0.02566227,-0.0062467367,-0.0032630903,-0.019432997,0.044222005,-0.009763073,0.011201045,0.030552538,-0.005070743,-0.034720913,-0.008295992,0.008464823,0.021621976,-0.013634536,0.037957802,-0.03208948,-0.030179946,-0.050439633,-0.021656906,-0.07507727,-0.005245396,0.0071374644,0.0130640045,-0.03853998,0.0014008584,-0.030948417,-0.014100276,-0.019351494,0.0073936214,-0.010875027,0.030063512,0.00872098,-0.0070210295,-0.02143568,0.024893798,-0.019095337,-0.039494745,-0.047016446,-0.025149956,0.004989239,-0.02027133,-0.018466588,-0.00053705636,-0.0109739965,-0.012039376,0.039331734,-0.013017431,-0.022984264,0.022111002,-0.032904524,0.0052250195,0.01341331,-0.025755417,-0.007486769,-0.017185804,-0.032438785,0.011853081,-0.019432997,-0.030016938,-0.0029952899,-0.044664457,0.048716396,0.017814552,-0.028410135,0.026197871,-0.028782727,-0.021051444,-0.014600947,0.03299767,0.021354176,-0.019630937,0.0032980207,-0.014892034,-0.0153112,0.014833816,0.018746031,0.0036094843,-0.012120881,0.02559241,-0.0049252,-0.011934585,0.0020696318,0.011224332,0.025848566,-0.025406113,0.015148191,0.04713288,0.00535892,0.00932062,0.008319279,0.030575825,-0.00028308254,0.010805166,0.01597488,-0.03441818,0.048250657,-0.006700833,0.019654224,0.051417686,-0.03900572,0.0031932292,-0.028316988,-0.0023854617,0.021249384,-0.018466588,-0.01178322,-0.0032630903,-0.012924283,-0.0016679311,0.009221651,-0.0018513162,-0.022844544,0.0015427634,0.009256581,0.009413769,-0.036956463,-0.016708419,-0.010677088,-0.012598265,-0.014950251,0.02566227,-0.01797756,-0.008493932,-0.008592902,0.004246966,0.008616189,-0.00053269,0.025755417,-0.019386424,0.03108814,-0.034394894,-0.031530593,0.012074308,0.00049957883,0.004523499,-0.022239082,-0.030319668,-0.03129772,0.00009360281,0.02372945,0.006095371,0.0066367937,0.01441465,0.028945737,0.03597841,-0.00011861813,0.010205526,-0.019828876,0.026989628,0.03574554,-0.025638983,0.0077662133,0.018978901,0.019153554,0.023217134,0.015555713,0.011905476,-0.0438727,-0.025848566,-0.029248467,0.025126668,-0.0054113157,0.013529745,-0.016801568,-0.013331805,-0.0047709234,0.004549697,-0.01414685,0.014309859,0.021249384,-0.0181755,-0.012109238,-0.02213429,-0.0053938506,-0.010869205,-0.009716499,0.0010930334,-0.030342955,-0.009483629,0.0010850285,-0.008109696,-0.022483595,0.005728601,0.018780962,0.022111002,0.0070559597,0.009972656,0.00908775,-0.014461224,0.027012914,-0.011899655,0.06459813,0.018524805,-0.0019983153,-0.056075085,-0.032205917,0.0073354035,-0.02913203,0.018257005,0.05281491,-0.025522547,0.008039835,0.046061676,0.0316936,0.027711526,-0.020841861,0.010409287,-0.049182136,0.018780962,-0.009937725,-0.009978478,-0.028806014,0.044454876,0.00891892,0.030482678,0.012994144,-0.010688731,-0.03937831,-0.017814552,0.019933669,0.008581258,0.008790841,0.026034862,0.007387799,-0.0065028938,0.006869664,0.001727604,-0.023787666,0.03751535,-0.016324185,-0.0023490756,-0.03378943,0.008493932,-0.010048339,-0.011888011,0.008167914,0.0058479467,0.043779552,0.020888435,-0.021482253,0.003685167,-0.024195189,0.043616544,0.0005963654,-0.019747373,0.004666132,0.010234634,-0.017092654,-0.024381485,0.009373016,-0.05039306,0.014519442,-0.020585705,0.004171283,0.005731512,0.008779197,-0.017139228,0.027222497,-0.008057301,0.0010959442,-0.015322844,-0.024171902,0.0037608498,0.0027842515,0.038982432,0.006101193,0.008412427,0.006904594,0.00075973826,0.00848811,0.010968175,0.043523394,0.007352869,0.021086374,-0.020865148,0.007859361,0.010298674,-0.011195223,0.016091313,0.0044856574,-0.03595512,0.01697622,0.029015597,-0.008697693,-0.011154471,-0.0053530983,-0.0100425165,0.026128009,-0.0018949793,0.0051551587,-0.0066076852,0.0095476685,-0.000672412,-0.0039966307,-0.032438785,0.00872098,0.02510338,0.0016548322,-0.016708419,0.0016068027,-0.0472726,-0.009006246,0.025871852,0.01255169,0.0058566793,-0.015928306,-0.008499754,-0.0077545694,0.025312964,-0.018070709,-0.0038889283,-0.028177265,0.02107473,-0.045479503,-0.021354176,0.03767836,0.021377463,-0.0032892881,0.025219817,0.020306261,-0.014007128,-0.0067124767,-0.018501518,0.0040956005,0.022693178,0.04077553,-0.0068813073,0.0049513974,0.0173721,0.036164705,0.010112378,-0.022751395,-0.010089091,0.008790841,0.018012492,0.010537365,-0.0004122526,-0.008505575,0.012505117,-0.0027231232,0.016673489,0.008633654,-0.007900113,0.030459391,-0.009862043,-0.031204574,0.006403924,0.013599605,-0.05458472,0.015602287,0.034231883,-0.049508154,-0.02573213,0.038586553,-0.0048029427,-0.024591068,-0.00549282,0.023706162,-0.0031175467,0.017267307,-0.009285689,0.0041567287,-0.0063165976,0.028782727,0.009140146,-0.014007128,-0.0056092553,0.031111427,0.020131608,0.0067998026,-0.069814414,-0.0039034826,-0.007597382,-0.018350152,0.008429892,-0.008360031,-0.00033093005,-0.0013542844,-0.011288371,0.01930492,0.019619294,-0.016603628,0.031647027,-0.05179028,-0.00572569,0.029970363,0.011922942,0.012225673,0.039704327,0.043290526,0.008860702,-0.008167914,-0.013518102,-0.0038365326,0.014437937,-0.0050590998,-0.006374815,0.0027973503,-0.04550279,0.0026852817,0.022926047,-0.026523888,-0.0060895495,-0.043686405,0.042522054,0.014111919,0.015159834,0.022437021,0.03844683,-0.015101617,-0.011026393,0.026780045,-0.036327712,-0.010368535,-0.006054619,0.0058101052,0.018163856,0.0053647417,0.01581187,-0.014123563,-0.007661422,-0.008447357,-0.00399372,-0.026221158,-0.0076556,-0.027548516,-0.0077836784,0.0027580536,0.053234074,-0.022448665,-0.025126668,0.037794795,-0.0037259194,0.0021773342,-0.015392704,-0.006648437,-0.047878064,0.022448665,-0.011899655,-0.014472868,0.011527063,0.019223414,-0.07419237,-0.0008128617,0.041986454,-0.037957802,-0.016591985,0.0043197377,-0.0057664425,0.01964258,0.015905019,-0.016324185,-0.0197008,0.005242485,0.0040694023,-0.050113615,-0.06217628,-0.022914404,-0.009524382,0.006793981,-0.01757004,0.026151296,0.021156237,0.029644346,-0.013390022,0.025825279,0.003018577,-0.011352411,0.045828808,0.0032951098,0.015322844,0.011119541,0.0030127552,-0.0016155354,0.010554831,-0.022751395,-0.012225673,0.030319668,0.008552149,-0.010746948,-0.0010355436,-0.027734812,0.022949334,-0.008645297,0.004776745,-0.011730825,-0.024055466,-0.018990545,0.006520359,-0.02503352,0.0059498274,-0.020795288,0.04356997,0.028503282,0.0031262792,-0.04659728,-0.023275353,0.012644839,-0.0022733929,-0.025406113,0.01488039,0.0334867,-0.0070152073,0.0033533275,-0.015043399,-0.026267732,0.009798003,0.023158917,-0.040798817,0.0017334258,-0.01255169,-0.035233226,-0.04098511,0.00955349,-0.0034872277,-0.00059600157,0.008115518,-0.015218052,0.005105674,-0.009215829,0.05006704,0.006561111,0.0033737035,0.013436597,-0.0047359928,0.011055501,0.009134324,0.00025615696,0.026523888,-0.024870511,-0.01704608,0.0130640045,0.0021540471,0.021552114,-0.0039966307,0.023939032,0.001867326,0.0015835157,0.007876826,-0.031367585,0.012330464,-0.038167387,-0.018000849,-0.04070567,-0.023741093,-0.01887411,-0.008412427,-0.006770694,-0.00336206,-0.0088257715,-0.013471527,-0.019887095,-0.022250725,-0.04426858,0.01387905,0.011305836,-0.0128544215,-0.04471103,-0.019246701,-0.008924741,-0.0116958935,0.000052304775,0.014065346,-0.020329548,-0.04773834,0.05914897,0.027385507,-0.04876297,0.006566933,0.017721403,0.0035134256,-0.0018658706,-0.018757675,0.01255169,-0.0027682416,-0.000005952511,-0.021982925,-0.03178675,-0.002389828,0.009437055,0.0003038225,0.0059672925,0.032042906,0.019654224,-0.0023534421,0.02938819,0.02154047,-0.017523464,0.037329055,0.0026605392,0.00009201092,-0.007486769,0.041334417,0.02922518,-0.029551197,0.005612166,0.00042425995,-0.009815468,0.0313443,-0.013052361,-0.0036938996,0.012237316,0.003498871,-0.04103169,-0.040426224,0.0003478495,0.011579459,-0.03278809,0.0044652815,0.027967682,0.008942206,-0.021063088,-0.0040024524,-0.034790773,0.037561923,0.02317056,0.034301747,-0.037259195,-0.05961471,0.003944235,0.048809543,-0.042754926,0.021552114,-0.00891892,0.020119965,0.011206867,-0.035466094,-0.009891151,0.031740174,0.047878064,0.003341684,0.026058149,0.009902795,0.007376156,-0.07293487,-0.014437937,-0.008092231,-0.025755417,-0.0158468,0.00056798436,-0.0282937,-0.012237316,0.010729483,-0.0038743739,-0.0010246278,0.012586622,-0.07344718,-0.0022122646,0.032345638,-0.017302237,-0.010147308,-0.00439251,-0.01081681]},{"id":"guide-embed-media-3","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Video in Embeds\nUse setVideo() to add video to a rich embed. Fluxer supports the .video field. Include a title when using video. Pass a URL or EmbedMediaOptions (e.g. duration for progress bars).\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Video embed')\n .setDescription('Rich embed with video field.')\n .setVideo('https://example.com/sample.mp4')\n .setURL('https://example.com/sample.mp4')\n .setColor(0x5865f2);\n\n// With full options (duration, dimensions for progress bar):\nconst embedWithDuration = new EmbedBuilder()\n .setTitle('Video with metadata')\n .setVideo({\n url: 'https://example.com/video.mp4',\n duration: 120,\n width: 1280,\n height: 720,\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.0442879,0.013583923,-0.032860156,-0.019211547,0.047867157,-0.034326356,0.012538176,-0.011169003,0.017152397,0.006317602,0.019793715,0.0032504387,-0.0148021635,-0.0510583,-0.022230197,0.02165881,0.0007843098,-0.020526817,0.028483115,0.038875893,-0.040967386,-0.005951052,-0.02734034,0.035641626,-0.025184162,-0.04368417,-0.019028272,0.088489555,0.016742723,-0.020246513,0.02384733,-0.009875297,0.0076436517,-0.014198434,-0.04088114,-0.021583345,0.060459238,0.0073148347,-0.050195828,0.034412604,0.027771575,0.0022289492,0.0043258327,-0.0008867283,0.045624733,0.039026827,-0.027750013,-0.0018502704,-0.027663767,0.07244759,-0.0232436,0.017874718,-0.023868892,-0.022682995,-0.037927173,0.012570519,-0.01911452,0.0030887253,-0.049074616,-0.0016171336,0.035296638,-0.030229619,0.018564694,0.008872673,-0.031976122,0.0020631931,-0.06848022,0.045064125,-0.004282709,0.031286146,0.043662608,-0.004611526,0.038164355,0.002711394,0.0060211276,0.030941157,-0.011061194,-0.0091961,-0.000058199967,-0.026801296,0.032622978,-0.008818769,-0.07956298,-0.011751171,-0.087325215,0.046530325,-0.02539978,-0.02068853,-0.023674836,-0.00004337624,-0.023782646,-0.01570776,-0.07956298,0.025011668,0.036029737,0.04211016,0.009568041,-0.0146081075,0.032946404,0.067100264,0.03736657,-0.009395546,-0.055974387,-0.01948107,0.019578097,-0.043145128,0.0068889894,0.053085107,-0.009988495,-0.029388709,-0.012451929,-0.008727131,-0.01390735,0.017281769,0.03846622,-0.02335141,0.03025118,0.014252338,-0.0034391042,-0.0060804226,-0.0931469,-0.021971457,0.038919017,0.0015686196,0.022898613,-0.02576633,0.0046869926,0.019394822,-0.055370655,-0.021734277,-0.0011933099,-0.01549214,0.02408451,0.0067057144,-0.0026116709,0.011503211,0.002094188,0.015427455,-0.0013375042,0.0082958955,0.013368305,-0.017648319,0.06904083,-0.024515746,0.0055144257,0.0084899515,-0.011470868,-0.00441747,-0.039371815,-0.009692021,-0.011352278,-0.020063238,-0.050152704,0.029388709,-0.051575784,-0.06334852,0.0012809046,-0.016128212,-0.041829858,-0.028634047,0.020106362,0.0032450482,0.0073849102,0.0045198887,0.00070682215,0.0208179,-0.0146943545,-0.026520992,-0.0578287,0.07274945,0.02529197,-0.005843243,-0.010053181,0.013292839,0.025809454,-0.012883165,-0.0015160628,-0.048212145,0.02143241,0.031889874,-0.036223795,0.028569361,-0.011082756,0.007169293,-0.0015147151,0.029216215,-0.015794005,-0.0050131143,0.024882296,-0.020494474,-0.023761084,-0.0010396822,-0.018349078,0.01185898,0.016031185,0.014317024,0.040342096,0.019534975,0.06761775,-0.016764285,0.01101268,0.0503252,-0.0011218864,-0.021378508,-0.016505545,0.0056114537,-0.041463308,-0.0069482843,-0.051963896,0.05248138,-0.0026574896,0.044589765,0.022165513,-0.041096758,-0.027469711,0.067315884,0.0011818552,-0.008527685,-0.04381354,-0.025593836,-0.060890473,0.026283812,0.020332761,-0.01814424,-0.026865982,-0.010026229,-0.020494474,-0.014823725,-0.030531483,0.04696156,0.039458062,-0.013034097,-0.022424253,0.0015942242,0.040557712,0.008096449,-0.028634047,0.0041695097,-0.000849669,0.008026374,-0.013443771,-0.024666678,0.007875441,0.00050097454,-0.018478448,-0.00009062687,-0.018543134,-0.061407957,-0.014198434,0.028677171,0.05541378,-0.0075466237,0.04838464,0.0008624713,0.04911774,-0.03725876,-0.04269233,0.062399797,-0.026046634,-0.023135792,-0.0066841524,0.0020348933,-0.032213304,-0.021820523,0.014198434,-0.027016914,-0.024472622,-0.009880687,-0.0013422209,-0.03085491,0.0070938263,-0.009611164,-0.028332181,0.042562958,-0.011611019,0.0048918296,0.061666697,0.001130646,-0.014004378,0.04476226,0.0002066899,-0.041463308,-0.031393956,0.03715095,-0.021249136,0.009368595,0.011384621,-0.018812655,0.019621221,-0.0067919614,-0.03158801,-0.0030429065,0.023567028,-0.056448746,-0.030402113,0.033183582,0.031048967,0.013476114,0.02624069,0.035296638,-0.028095001,-0.0029728308,0.0050535426,0.020483693,0.014015159,0.043403868,0.0013462638,-0.04898837,0.03680596,-0.02697379,-0.0010086871,-0.007244759,0.011524772,0.0019149558,-0.063003525,0.023696398,0.047263425,0.044244777,-0.025378218,-0.025184162,0.04271389,-0.013637828,-0.018661723,-0.08741146,-0.017378796,-0.078916125,-0.016117433,-0.036008175,0.016149774,-0.010112476,0.029992439,0.014381709,-0.009325471,0.034024492,0.025852578,-0.0636935,0.03906995,-0.012085379,-0.00050232216,0.015201056,-0.0015160628,-0.039608993,-0.0050751045,0.02068853,-0.0103712175,0.0004962579,0.012020693,-0.018532353,0.012031474,-0.013174249,-0.042261094,0.016009623,-0.020861024,-0.0049672956,0.075336866,-0.03710783,-0.0038703398,-0.07999421,-0.04234734,-0.030703979,-0.04696156,0.02044057,0.006279869,0.04972147,-0.02382577,-0.028138125,0.03894058,0.011697267,-0.015449017,-0.0076921657,0.0012168931,0.022187075,0.018521572,0.011093537,-0.021561783,-0.015934156,0.03919932,0.03835841,-0.030509923,-0.008452219,-0.001869137,0.02117367,0.010074743,-0.05321448,-0.019966211,-0.018446105,0.030790225,0.036504097,-0.014209215,0.03167426,-0.022402693,-0.0006973889,-0.010090914,-0.028612485,0.047565293,0.05554315,0.014899191,0.016936779,0.0019890745,-0.020968834,-0.0054524355,-0.017389577,0.018446105,0.019933868,0.039393377,-0.029022159,0.040449902,0.012128502,-0.038250603,-0.0040805675,0.021583345,-0.0078107556,0.024343252,0.01887734,-0.029949315,0.03542601,-0.007880831,-0.022359569,0.0038056546,0.012710671,-0.013648608,-0.02539978,-0.014834506,-0.0070183603,0.031372394,-0.036245357,0.027124722,-0.0072932728,0.0084252665,-0.0183922,-0.061623573,-0.0066841524,0.09814923,0.029237777,0.01873719,0.004220719,0.009778269,-0.06554782,-0.034412604,-0.0007452291,-0.04124769,0.059984878,0.041139882,-0.0019499937,-0.029582765,0.0052449037,-0.02828906,0.041786734,-0.01065152,-0.033205144,-0.01318503,0.016225241,0.008673226,0.007950908,0.017335674,0.03141552,0.013885788,-0.015675416,0.043102004,-0.0018246658,0.0055144257,0.027642205,-0.032730784,0.017335674,0.017508168,-0.0033366857,-0.0028057268,0.028698731,0.012053036,-0.04463289,0.0057084817,0.02445106,-0.0058378526,0.01645164,-0.03229955,-0.047824033,-0.010198723,-0.057138722,0.008727131,0.0014163395,0.012527395,0.025248848,-0.06688465,0.022855489,-0.050972052,0.061666697,0.05118767,-0.057526834,-0.015988061,-0.06602218,-0.020386664,-0.015028562,-0.004002406,-0.0083390195,0.002728913,-0.029733697,-0.05455131,-0.011751171,0.022812366,0.033830438,0.034628224,-0.002261292,-0.03859559,0.022532063,0.0013273972,-0.0042341948,-0.0007095174,-0.000023309465,-0.019685907,0.060416114,-0.023976702,-0.030919597,-0.00079778593,0.040104914,0.008807988,0.032967966,-0.02371796,0.025723206,-0.002431091,-0.03316202,0.00028518826,0.028116563,0.015815567,0.03145864,0.006015737,-0.006835085,-0.0005107447,-0.037129387,0.002881193,-0.020020114,-0.007282492,-0.011158222,-0.005204475,-0.014748259,-0.048772752,0.015222618,-0.05649187,0.051834524,-0.013249715,-0.024257004,-0.026650364,0.026046634,-0.021809742,0.028849665,-0.03626692,0.015319646,-0.025723206,0.028116563,-0.018812655,0.00040630484,0.031178337,-0.076673694,0.015578387,-0.030272743,0.014079844,0.056707487,0.0026103233,0.00027929246,-0.021637248,-0.0035873414,0.017723786,-0.024343252,0.005843243,0.0181658,-0.024364814,0.004816363,0.021583345,0.0011454697,0.00069065084,0.00834441,-0.023200478,-0.011395402,0.020052457,0.06455597,0.0030186495,0.008781035,-0.033722628,0.028504675,-0.000251498,0.017702224,0.019049834,-0.051015176,-0.00031652022,-0.0145326415,0.017594414,0.008818769,-0.015567606,0.0039862343,0.0073471772,0.029453395,0.01924389,0.018068774,-0.010797063,0.00040832625,0.013389867,-0.010225675,-0.00045144983,-0.014360147,0.0051963897,0.008937359,-0.006592515,-0.04596972,-0.019319357,-0.018942026,0.015093247,0.03521039,0.03048836,0.012074598,-0.05360259,0.011535553,0.0073202252,0.009465623,0.011945227,-0.04079489,-0.0059456616,-0.0032396577,-0.017874718,0.001140753,0.03544757,0.0068620373,0.025917262,0.005018505,-0.016117433,-0.0018812655,-0.013745636,0.007417253,-0.009104462,-0.033916682,0.011557115,-0.00087257836,0.029625889,0.007525062,0.035275076,0.0043150517,0.037927173,-0.025205724,0.013314401,0.0053149792,-0.005412007,-0.011708048,0.048859,-0.023998264,0.0442879,0.016020404,-0.012063817,0.0065386104,-0.012926289,0.005967223,-0.012775356,0.0035388274,-0.023804208,-0.03085491,-0.009961544,0.0014594632,0.02335141,-0.0176591,-0.028245935,0.011589458,-0.016149774,0.014317024,-0.031113653,0.024623556,-0.032838594,0.010317313,-0.017120056,0.025119476,-0.026520992,0.0030321255,-0.02684442,-0.011438525,-0.033312954,-0.025809454,-0.02794407,-0.0258957,-0.017853156,-0.041204564,0.017217083,0.009826782,0.0010787629,0.019459508,-0.04320981,0.02311423,-0.055241287,0.00027272286,0.0147590395,-0.056233127,-0.032234866,0.03799186,0.017723786,0.006366116,-0.032709222,0.013163468,0.022068484,0.010441293,-0.021561783,0.031286146,0.020063238,-0.017411139,0.001869137,-0.05118767,0.0033932854,0.00027727103,-0.013174249,-0.027512833,0.006252917,-0.026822858,-0.022057703,-0.011848199,0.06291728,-0.010236456,-0.0046142214,-0.009508746,-0.00069199846,-0.041937668,-0.040212724,-0.021378508,-0.026865982,-0.021001175,0.002951269,0.033183582,-0.004220719,-0.01052754,-0.06645341,-0.0033959807,-0.034822278,-0.026758172,0.025809454,0.026434746,-0.003207315,0.0013839969,0.0045684027,-0.002548333,-0.009454842,0.025464464,-0.049548976,0.031868313,-0.021389289,-0.00043426777,-0.013476114,-0.0028003366,-0.0075951377,-0.0007876789,0.041700486,0.0008308024,0.01923311,0.0022073875,0.03025118,-0.016408516,-0.028741855,-0.0061990125,-0.034822278,0.0044578984,-0.0052125608,0.003975454,-0.027361901,-0.023502342,0.010085524,-0.008085668,-0.021076642,-0.012613643,-0.0027652986,0.030660855,0.0013934302,-0.036849085,-0.026542554,-0.03389512,0.014554203,-0.0019324748,-0.008139573,0.001699338,-0.037409693,0.015147152,-0.012872384,-0.014133749,0.067315884,-0.007967078,-0.06097672,-0.0039727585,0.011352278,0.014909972,-0.03906995,0.0049565146,-0.0005558897,0.0044471174,0.029388709,-0.01754051,-0.025442904,-0.028806541,-0.04308044,-0.03753906,-0.029604327,-0.0326661,0.010867138,-0.028720293,-0.015201056,0.021928333,-0.0058109,-0.05722497,-0.0075035,0.008177306,-0.010058572,-0.0183922,-0.0035981224,0.015556826,-0.034649786,0.0065763434,-0.02348078,-0.003158801,0.012236311,0.0070075793,-0.032083932,-0.02154022,0.0039107683,0.028375305,-0.002576633,0.021453973,-0.030509923,-0.017594414,0.016279146,0.002832679,0.053171355,0.0032450482,0.0104359025,0.034347918,-0.022726119,0.022726119,-0.008091059,0.04549536,0.053343847,0.0018340991,-0.022920175,0.020742435,0.023437656,0.024300128,-0.017206302,0.003953892,-0.033938244,0.0073579582,-0.016742723,-0.0074495957,-0.015955718,0.051618908,-0.014920753,0.009654288,-0.0072555398,-0.00040596793,0.011438525,-0.0050131143,0.036935333,-0.0103712175,0.005007724,0.009772878,0.015934156,-0.049764592,0.020171048,0.0043042707,-0.012893946,-0.010306532,0.013508457,0.025852578,-0.031070529,0.016731942,-0.021119766,0.0019122605,-0.009740535,-0.019017491,-0.03628848,0.019890744,0.007589747,0.03753906,0.048600256,-0.0043500895,0.006738057,0.033722628,-0.010840186,-0.0012391286,-0.009271567,-0.0013186377,-0.031135213,0.017206302,0.023006422,0.013357524,-0.024062948,-0.04284326,0.008608541,-0.006096594,0.039113075,0.06623779,-0.033981368,0.015934156,-0.0012553,-0.011125879,-0.024041386,-0.03497321,-0.003158801,0.042498272,-0.0022437728,0.059812386,-0.013562361,0.02770689,0.0159665,-0.021928333,0.010268799,-0.01572932,0.00078228844,-0.002344844,-0.04342543,-0.00039653466,-0.013896569,-0.013152687,0.01597728,0.010894091,0.006738057,0.015567606,-0.04657345,0.0019702078,0.00097499683,0.04344699,0.0019055225,-0.02238113,-0.027512833,-0.01246271,-0.008069497,0.020645406,-0.0066841524,-0.024407938,-0.012786137,-0.0084791705,0.05338697,-0.021119766,-0.029022159,0.027620643,0.0031264585,-0.031997684,-0.0075843567,0.0034876182,-0.0065493914,0.014974657,-0.022941737,0.033205144,-0.0077406797,-0.01174039,0.031544887,-0.010974947,0.06265854,-0.01814424,-0.011923665,0.0026494039,-0.016990684,-0.016904438,-0.0022397302,0.042433586,0.0068997703,-0.019049834,-0.0082527725,0.0047247256,-0.0041317767,0.03820748,0.03449885,0.005713872,-0.023265162,0.028159687,-0.009524917,-0.0055521587,0.00018293825,0.0037167121,-0.0031776677,0.0001890025,-0.011082756,0.02142163,0.0232436,0.024235442,0.032924842,0.02710316,0.0043905177,0.024731364,-0.013961254,-0.012074598,0.013217373,-0.012613643,0.044201653,0.016678039,-0.036504097,0.004414775,-0.023049545,0.0074495957,0.03631004,-0.015351989,-0.018446105,0.054508187,-0.03643941,0.021798963,-0.0019014797,-0.018338297,-0.008123402,0.0038649496,-0.0031507155,0.0083282385,-0.031027405,0.011104317,0.0052664652,-0.010090914,0.008624713,0.014015159,0.0032639147,-0.0014311633,-0.0007304054,-0.009390156,-0.015298084,-0.016969122,0.019222328,-0.018435324,0.00423689,0.013745636,0.0010255323,-0.026154442,-0.012710671,0.0058109,0.0012195883,-0.023308286,0.004099434,-0.01900671,-0.013605485,-0.017270988,-0.006630248,-0.012904727,0.01294785,0.006932113,-0.02105508,0.00011488387,-0.021367727,0.03232111,-0.006112765,-0.041657362,-0.0001962459,0.01658101,0.0244295,0.0031237633,0.021734277,0.013282058,0.009616555,-0.0193517,0.011158222,0.019157644,-0.017637538,-0.022898613,0.0148021635,0.0054389597,-0.006522439,0.012020693,-0.027879385,0.019017491,0.02274768,-0.010495197,-0.005746215,0.022963298,-0.02673661,-0.0073471772,0.009454842,0.027491271,-0.017033808,-0.004622307,0.0048783533,-0.0068296944,0.006603296,0.010236456,0.058259934,-0.035512254,0.000045903013,0.0026332326,0.03967368,-0.017594414,0.043145128,-0.0026157137,0.011988351,0.02964745,-0.01402594,-0.02358859,0.0031911437,0.001154903,-0.034261674,0.005091276,0.027491271,-0.017594414,0.016861314,0.036719713,0.019987771,0.03809967,0.0020241123,-0.012969412,0.0054039215,0.023739522,-0.011697267,-0.03764687,-0.016667258,0.029108405,0.010419731,0.032709222,0.01887734,-0.038034983,-0.0058270716,-0.0055737207,0.01367017,0.03264454,-0.009373985,0.04670282,-0.013767198,-0.013928912,-0.017648319,-0.0026588372,-0.027534395,-0.00906673,-0.014198434,-0.01887734,-0.019028272,-0.0002309469,0.002462086,0.01040356,0.0040455293,-0.02964745,0.023976702,-0.010937214,-0.0043743467,0.0035118752,-0.028526237,0.042735454,0.0031318488,0.0020901454,-0.006953675,0.009109853,-0.020289637,-0.010365827,0.011718828,-0.030057125,0.014230777,-0.007589747,0.032558292,-0.018974368,-0.008258163,-0.016548667,0.00968663,0.027987193,-0.011190565,0.008015593,0.0106299585,-0.007147731,0.01874797,0.043511678,0.018338297,0.015998842,-0.025097914,0.029367147,0.008015593,0.026305374,0.001650824,0.0013934302,0.024300128,-0.024817612,0.010058572,0.027318778,0.011697267,0.01378876,-0.010069353,0.008387533,-0.014317024,0.0015389723,-0.010387389,0.0083174575,-0.018305954,0.029582765,0.04596972,-0.02818125,0.0032693052,0.0054147025,0.01294785,0.012807699,0.0025065572,-0.010220285,-0.0029108406,0.03449885,0.0146296695,-0.039824612,0.0045171934,-0.028353743,0.012365682,0.04476226,0.006064251,-0.004220719,-0.013724075,0.0017788471,-0.005104752,0.031437077,-0.012527395,-0.020882586,0.00047671754,0.018079555,-0.017357234,-0.012106941,0.0057408246,0.029367147,0.027728451,0.024127634,0.0069752363,0.015201056,-0.0018246658,-0.032730784,-0.0064685345,0.0021575259,0.048859,-0.013637828,0.011632581,0.009638117,0.02977682,0.023933578,0.0060912035,-0.016645696,-0.00072905776,0.004296185,-0.001237781,-0.006905161,0.02503323,-0.026693486,0.017314112,0.026715048,-0.034067616,-0.005606063,0.0065008774,-0.0049053053,-0.024106072,-0.0043878225,-0.0020470216,-0.0062636975,0.015556826,0.019675126,-0.02238113,-0.015222618,0.028720293,-0.012796918,0.023437656,0.039716803,0.018101117,0.039134637,0.0067218854,0.00932008,0.024709802,0.0027922508,-0.0012822523,-0.023653274,-0.015934156,-0.0025294665,0.035404447,-0.008824159,0.004921477,-0.049031492,0.008290505,-0.024494184,-0.014317024,-0.0070830453,-0.031156775,0.017475825,-0.049807716,-0.00882955,0.017572852,-0.012247092,0.0076328707,-0.02684442,-0.047090933,0.014823725,0.035641626,0.011718828,-0.044589765,0.017637538,-0.01185898,0.019912306,-0.03374419,-0.012300997,-0.012937069,0.02721097,-0.008969702,0.000032216336,-0.005676139,-0.01318503,-0.00592949,-0.02408451,-0.02697379,0.033701066,-0.0148776295,-0.020979615,-0.005492864,0.0495921,0.012602862,0.019416384,-0.010090914,-0.0034633612,0.01873719,0.005762386,0.013260496,-0.016634915,0.009104462,0.0103819985,0.019362481,0.016117433,0.019696688,0.0015524484,0.014963876,0.016613353,0.0046546496,0.007417253,-0.008985872,0.0007459029,-0.014909972,0.00713695,-0.021949895,-0.01027958,-0.0023286724,-0.008026374,0.016893657,0.016268365,-0.033550132,-0.038875893,0.0051424853,0.010980338,-0.0032100102,0.001189267,0.03025118,-0.048600256,-0.0015996147,0.012980193,-0.003048297,0.0049080006,-0.00024374921,0.005606063,0.015179494,0.0017882803,-0.011632581,-0.014489518,0.0027868603,-0.012106941,-0.023308286,-0.018359857,-0.00392694,0.01959966,-0.0075466237,-0.02384733,-0.0002826615,0.030660855,0.024127634,-0.014467956,-0.026865982,0.020246513,0.034800716,0.0019378652,-0.014834506,0.006075032,-0.0021966065,-0.018305954,0.0031614962,0.0345851,-0.02721097,0.022445815,-0.010845576,0.017324893,0.012656766,0.011945227,0.030208057,0.042282656,0.0251626,0.026715048,-0.015362769,-0.020365104,-0.02757752,0.037517503,0.03014337,-0.0017249426,-0.0148668485,0.0042018523,0.008942749,-0.013271277,-0.0024405243,-0.023006422,0.01995543,0.014241558,-0.010915652,-0.001487763,0.015589168,0.002354277,-0.013540799,-0.013012536,0.01632227,-0.02055916,0.033938244,-0.01330362,0.009708192,-0.021551002,-0.0021548306,-0.0077029467,0.01583713,-0.008786426,0.0042422805,0.006161279,-0.036676593,-0.011826637,-0.0104574645,0.03389512,-0.001213524,-0.0464872,0.014230777,0.014942315,0.0083821425,0.014058282,-0.028741855,0.027987193,-0.027146284,0.011891323,0.0075789667,0.031717382,0.052050143,-0.008495342,-0.015718538,-0.012290216,-0.0021804352,-0.025313532,-0.0019324748,0.043015756,-0.06158045,-0.011513991,-0.013842664,-0.034067616,0.0101556,-0.028073441,-0.007282492,0.00041978096,-0.003953892,-0.024041386,-0.0048190583,-0.0387034,-0.02891435,0.005967223,0.0020200694,-0.0055845017,-0.039867736,-0.0105329305,-0.0022060398,-0.008177306,-0.01137384,0.0073956912,-0.033808876,-0.031027405,0.01984762,0.0033932854,-0.00008367824,-0.0029081453,0.007767632,0.007039922,-0.0147266975,-0.01802565,0.012689109,-0.021389289,-0.036762837,0.010225675,-0.028590923,0.010791672,-0.020677749,0.011611019,-0.00932008,0.0029216215,0.0048109726,0.0014783297,0.01113666,0.026111318,-0.009826782,0.03232111,-0.047565293,0.012053036,-0.0059348806,0.063219145,0.0495921,0.0061181556,0.035382885,-0.0051209233,-0.03736657,0.0010983032,-0.02395514,-0.006942894,0.041183002,0.0072016353,-0.017486606,0.0076759947,-0.0058971476,0.0041695097,-0.023545466,0.010856357,0.03098428,-0.0046438687,0.0021413546,0.012160845,0.0025995423,0.036676593,0.043727294,0.006565563,-0.019567318,-0.052783243,0.010171771,0.052567624,-0.033722628,0.025723206,-0.0013422209,0.0044471174,0.04872963,-0.044805385,0.009789049,0.0018489228,0.046357833,0.028030317,-0.005697701,0.028526237,-0.00076409563,-0.03906995,-0.0033447715,-0.009142196,-0.041765172,-0.006242136,-0.038185917,-0.022316445,0.004875658,-0.012128502,-0.03277391,-0.02818125,0.029841507,-0.037301883,0.015060904,0.009578822,-0.009826782,-0.02203614,-0.028526237,-0.021141328]},{"id":"guide-embed-media-4","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Audio in Embeds\nUse setAudio() to add audio to an embed. Pass a URL or EmbedMediaOptions (e.g. duration, content_type).\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Audio embed')\n .setDescription('Rich embed with audio field.')\n .setAudio({\n url: 'https://example.com/sample.mp3',\n duration: 180,\n content_type: 'audio/mpeg',\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.04512249,0.01953094,-0.019188475,-0.024034888,-0.013781662,-0.03401829,0.010668335,-0.036156107,0.0062214658,-0.02434622,0.0013789446,0.01856581,0.0076172743,-0.049688704,-0.010927779,-0.011654221,-0.0033494213,-0.029701142,0.048152797,0.01753841,-0.018586565,0.024076398,-0.03235785,0.0340598,-0.0033935267,-0.049024526,-0.013158997,0.07305942,0.014871327,-0.024014132,-0.017289344,-0.01074098,0.006927153,-0.0006972556,-0.04416774,-0.03758824,0.029140744,-0.031299315,-0.032835227,0.012878797,0.017164811,-0.005432756,-0.026255727,-0.0062733544,0.0111976005,0.026048172,-0.026608571,0.0034687654,0.01235991,0.046948977,-0.014041106,0.030282296,0.012837286,-0.031589895,-0.023516,0.03188047,-0.014767549,0.0126712425,-0.033748467,-0.033665445,0.034537178,-0.009329604,0.006045044,-0.0055936114,0.00007073901,-0.034931533,-0.03526362,0.033748467,-0.029140744,0.006994609,0.04508098,-0.009469704,-0.019188475,0.004457247,-0.00985887,0.034973044,-0.056455,-0.0033182881,-0.022187646,-0.030053986,0.014757171,0.0066625206,-0.09688675,0.0020638765,-0.05882113,0.04831884,-0.032648426,0.004125159,0.0051473677,-0.0128995525,-0.049107548,-0.036405172,-0.05761731,-0.001823891,-0.010279169,0.021087604,0.00011374996,0.017382745,0.034744732,0.058945663,0.020579094,-0.029721897,-0.07322546,-0.011145712,0.008597972,-0.07260279,0.046948977,0.04396018,-0.043628093,-0.035948552,-0.015971368,0.0019458296,-0.000308414,-0.013158997,0.03127856,-0.0072177304,0.03545042,-0.01074098,-0.040805344,-0.033852246,-0.09265262,0.002332401,0.05002079,-0.02735577,0.060315527,-0.030531364,-0.009023461,0.0005250497,-0.05346621,-0.008494195,0.005432756,0.016054392,0.016894989,-0.007150275,-0.00027241613,-0.0004407304,0.0047504185,0.02536324,-0.011830644,0.0033805545,0.055417225,-0.05280203,0.043337516,-0.0019315601,-0.0034687654,-0.0049268403,-0.017849743,-0.023038622,-0.029327543,-0.012453309,-0.02272729,-0.0022766206,-0.052179366,0.041220453,-0.036778774,-0.017756343,-0.028684122,-0.02494813,-0.049315106,-0.042631827,0.027791634,0.011872155,0.026234971,0.0044001695,-0.00028636126,0.033727713,0.039310947,-0.034869265,-0.018088432,0.04549609,0.0074771745,-0.031029496,-0.024366975,0.03291825,0.013584484,-0.0459112,0.021129115,-0.0745123,0.034890022,0.028144479,0.0025710894,0.036550462,-0.026234971,0.043711115,-0.0020158794,0.03082194,-0.009734336,-0.008354095,0.012878797,-0.04248654,-0.010917401,-0.03383149,-0.013605241,0.040307213,0.00999897,0.0040317588,0.029535098,0.006927153,0.053300165,-0.040203433,0.03721464,0.00045726995,-0.0050695348,-0.030095497,-0.038937345,0.00036127568,0.002485473,-0.02438773,-0.0077262404,0.04869244,0.0041640755,-0.026442526,0.0052589285,-0.047032,-0.0411997,0.06438361,-0.009739526,-0.020080961,-0.015047749,-0.025010396,-0.053798296,0.013252396,0.00726443,-0.0017849744,-0.0013971056,-0.02133667,-0.053756785,-0.004125159,-0.0022999705,0.031112518,0.03364469,-0.041573297,-0.0043612528,0.039726056,0.029286033,0.05400585,0.0015488804,-0.0030121442,-0.014954349,-0.005526156,-0.013262774,-0.037401438,0.007108764,0.03239936,-0.019582829,0.009319226,0.01786012,-0.055790827,-0.004145914,0.034931533,0.008924872,0.015556259,0.046035733,0.017745966,0.05035288,-0.036758017,-0.026442526,0.050311368,-0.02559155,-0.023204666,-0.00781964,-0.01763181,-0.005868622,-0.031403095,0.024906619,-0.03082194,-0.014217528,0.0059620216,0.014352439,-0.03173518,-0.037754282,-0.02471982,-0.0099522695,0.007529063,0.020215873,0.013418441,0.021253647,-0.00939187,-0.02642177,0.031008739,-0.055541757,-0.041573297,-0.031589895,0.0346202,-0.010637201,-0.0075186854,-0.0009787523,-0.002478987,0.006045044,-0.016178925,-0.023453733,-0.017496899,0.05180577,-0.03165216,-0.035346642,0.03221256,0.030925717,-0.030842695,0.018161075,0.0282275,0.02438773,0.010855135,0.03943548,0.029452076,0.041988406,0.050311368,-0.008416361,-0.028206745,0.052968074,-0.027521813,0.00061780086,-0.011301378,-0.0015903914,0.023682043,-0.019458296,0.04823582,0.044914935,0.0071139527,-0.04161481,-0.01902243,0.045164,0.033125803,-0.010004158,-0.08177673,0.010938156,-0.04636782,-0.011799511,-0.009843303,-0.01513077,-0.0127853975,0.0030328997,0.011021178,-0.0080064405,0.042424273,0.01934414,-0.0045791855,0.04192614,-0.032150295,-0.041635565,0.023827331,-0.024014132,-0.007861151,0.0022636484,0.013864684,-0.020506449,-0.01856581,-0.06122877,-0.008888549,0.005443134,-0.026276482,-0.0036218374,-0.0038812815,-0.015981747,-0.010824001,0.04943964,-0.022166891,-0.011975932,-0.06882529,-0.017735587,-0.03636366,-0.047032,0.012276887,-0.02198009,0.022478223,-0.007155464,-0.022997111,-0.008219184,0.015327948,0.0028097779,-0.018119564,0.01878374,0.047198042,-0.0069686645,0.02739728,-0.038626015,0.023038622,0.05350772,0.028061457,-0.03657122,0.0048619793,-0.004872357,0.0069479086,0.034495667,-0.03812788,0.011114579,-0.0088366605,0.027231237,0.040141165,-0.030489853,0.0045973468,0.0005198608,0.00499689,-0.016635546,-0.004695935,0.060689125,0.047322575,-0.0013277044,0.003294938,0.008857416,-0.020911181,-0.014954349,-0.02781239,-0.023702798,0.021648003,0.04346205,-0.0135014625,0.06712334,0.0004741338,-0.04267334,-0.012235376,0.027916169,-0.0041173752,0.03221256,-0.02110836,-0.002131332,0.058447532,0.002786428,-0.035616465,0.023848087,0.008753639,-0.029182255,-0.03401829,0.013989218,0.004187425,0.031050252,-0.03777504,0.052054834,0.023599021,0.060232505,-0.0021209542,-0.07384812,0.023951864,0.035471175,0.013449574,-0.009749903,0.013314663,-0.03744295,-0.0515567,-0.005951644,-0.005697389,-0.050892524,0.04636782,0.0006139092,0.021544226,-0.042320497,0.00085032755,-0.032980513,0.026546305,-0.018441275,-0.027210481,0.017808232,0.0055832337,-0.018617697,0.010019725,0.06492325,0.053051095,0.022063114,-0.0060657994,0.0040395423,-0.022934845,0.015026993,0.013127863,0.006921964,0.0005244011,-0.046201777,-0.038148638,-0.016770456,0.016635546,0.0097810365,-0.023661288,0.034288112,0.041822363,-0.0063667544,0.010580124,-0.049771726,-0.06330432,0.0069115865,-0.05678709,-0.03179745,-0.0051447735,0.01680159,0.013906195,-0.03773353,-0.0057648444,-0.01800541,0.054919094,0.05923624,-0.023910353,0.04219596,-0.098713234,-0.048609417,-0.00856165,-0.0076120854,-0.006678087,-0.0035440042,0.002107982,-0.038397703,-0.0064705317,0.054254916,0.029244522,0.010844757,-0.0019678823,-0.025072662,0.04914906,0.011166467,-0.009173938,-0.03183896,-0.008712128,-0.012287265,0.011031557,-0.03756748,-0.023993377,-0.027521813,0.015929857,0.0033935267,-0.006081366,0.0019990157,0.06430059,-0.0068700756,-0.030801184,-0.033706956,0.030718163,0.0058841887,0.005059157,0.0119551765,-0.0012823017,0.009563103,-0.056496512,0.015338326,-0.023806576,-0.020184739,0.0117268665,-0.016095903,-0.0056247446,-0.028704878,0.0015553664,-0.01379204,0.041573297,0.016002502,-0.041158188,-0.016210057,0.03540891,-0.046035733,0.0076172743,-0.025529284,-0.017621433,-0.010606068,0.004716691,-0.0035725432,-0.0014165639,0.02148196,-0.07031968,0.042631827,-0.007757374,0.002921339,0.038065616,0.02105647,-0.0037230207,-0.015047749,-0.003411688,0.018918652,-0.026338749,0.0103103025,0.026359504,-0.031901225,0.008156918,0.00916356,-0.019499807,0.020745138,0.00021744646,-0.025736839,-0.008950816,-0.002721567,0.06650067,-0.0059360773,0.028352033,-0.017995032,0.019572452,-0.030448342,0.0126712425,0.0009119455,-0.011612711,-0.010097559,-0.01823372,0.015452481,0.010574935,0.0049216514,0.015037371,-0.0075550075,0.02471982,0.011374023,0.02781239,0.013574107,-0.015369459,0.023536755,-0.023329198,-0.00014204555,-0.018991297,0.0015397999,0.03221256,0.002874639,0.0053289784,-0.009589048,0.03652971,0.013937329,0.04541307,0.015369459,0.021585736,-0.022042356,-0.007196975,0.015660036,-0.012090088,0.0011765782,-0.033706956,-0.0038034483,-0.021440448,-0.0076068966,0.0011999282,0.011664599,0.01902243,-0.0047426354,-0.010559369,0.024408486,0.0010462077,-0.05520967,0.009884814,0.0042367196,-0.005243362,0.039041124,0.034391887,0.027667101,0.037318416,0.014892083,-0.03244087,0.040950634,-0.04794524,-0.0017940549,-0.026442526,-0.0077781295,-0.01735161,0.024865108,0.012629731,0.035471175,0.026836881,-0.016396858,0.010465968,-0.012422176,-0.00402657,-0.007700296,-0.005401623,-0.054628517,-0.013843928,-0.023993377,-0.0046414523,0.018264854,-0.023682043,-0.035948552,0.015203415,-0.016365724,0.0038060427,-0.027065191,0.019593207,0.007394152,0.0061280658,0.02124327,0.010907023,-0.01638648,-0.010637201,-0.029306788,0.0027423224,-0.06002495,-0.037380684,-0.013625996,-0.012204243,0.041863874,-0.054877583,0.018866764,0.020330027,0.015473236,0.008489006,-0.030303052,-0.0049787294,-0.047654662,-0.032648426,0.001682494,-0.04275636,-0.003702265,0.037339173,0.01115609,0.0017720021,-0.046990488,-0.0026956226,0.005035807,-0.004257475,-0.01351184,0.09364889,0.011623088,-0.032835227,0.007814451,-0.045662135,-0.013843928,-0.0052096345,-0.013221263,-0.010081992,0.009749903,0.0075134966,-0.02133667,0.0037126427,0.03217105,0.0088366605,0.008815905,-0.004387197,-0.014124128,-0.015940236,-0.00043586583,-0.044458315,-0.017673321,-0.024304708,0.006921964,0.031299315,-0.01106269,-0.02133667,-0.022146136,-0.008597972,-0.017694077,-0.017144056,-0.0053237895,0.010056047,0.015068504,0.014964727,0.002179329,-0.016293079,0.010279169,0.014476972,-0.032274827,0.054836072,-0.022042356,0.01397884,0.024034888,0.0072229193,0.006288921,0.019572452,0.045745157,0.0057181446,0.026712349,0.009474893,0.02411791,-0.018669587,-0.011166467,-0.019001674,-0.03684104,0.0032352658,-0.019012053,-0.014892083,-0.021295158,-0.008094651,0.016967634,0.023702798,0.0022545678,0.0025944393,0.011280622,0.032648426,-0.014404328,0.0054950225,-0.027542569,-0.036737263,0.016075147,0.015369459,0.003868309,0.012391043,-0.032378603,-0.017102545,-0.006641765,-0.01290993,0.05168123,-0.019084696,-0.04090912,0.01055418,-0.0005338059,-0.008504572,-0.01638648,0.026089683,-0.02110836,-0.0029498776,0.031548385,0.0075861407,-0.03563722,-0.02003945,-0.030116253,-0.027293503,-0.044416804,-0.038542993,0.023038622,-0.03244087,-0.010009347,0.00018015139,-0.016739324,-0.029078476,-0.0030847886,0.043337516,-0.018264854,-0.007196975,-0.014684527,0.019593207,-0.00735783,0.0055157784,-0.042548805,-0.005915322,-0.0012187379,0.017559165,-0.030489853,-0.018960163,0.0032663993,0.025010396,-0.002207868,0.024304708,-0.006890831,0.02999172,0.016095903,0.03231634,0.021876313,0.0284143,0.008333339,0.022104625,0.039414722,0.028870922,-0.01087589,0.01795352,0.07447079,-0.01994605,0.02532173,-0.0091946935,-0.0063719433,0.034807,-0.019572452,-0.005780411,-0.035056066,0.025508529,-0.022872578,-0.0176837,-0.019198852,0.030303052,0.011778755,0.03289749,0.004018787,-0.01753841,0.013760907,0.0170299,0.027335014,0.02231218,0.029119989,0.019728117,0.011830644,-0.020537583,0.02471982,0.0010728007,-0.0035414097,-0.007964929,-0.016241191,0.020994203,-0.03507682,0.005238173,0.02193858,0.010299925,-0.0017395717,-0.026587816,-0.022000846,0.0051525566,0.0038449592,0.027604835,0.019499807,-0.007830018,0.00726443,-0.0120278215,0.032648426,-0.011591955,-0.0032689937,0.025197195,-0.046907466,-0.000084886815,0.024263198,0.02022625,-0.016230812,-0.03484851,-0.00698942,-0.0024763923,0.038563747,0.057700332,-0.034371134,0.026546305,-0.009350359,-0.03188047,-0.012484442,-0.019748872,-0.016376102,0.05392283,-0.012992953,0.037961837,-0.0053756787,0.0012206838,-0.012193865,-0.01708179,-0.02254049,-0.034412645,-0.0055209673,0.007456419,-0.01217311,0.014155261,-0.017662944,-0.030718163,-0.02231218,-0.005770033,0.016645923,0.024055643,-0.00032057543,-0.0037333984,-0.010637201,0.030137008,0.0006654737,-0.03657122,-0.047032,-0.022021601,-0.0044780024,-0.017517654,-0.033810735,-0.010626824,0.004695935,0.012245754,0.049647193,-0.009594237,-0.023204666,0.018679963,0.0074252854,-0.038563747,0.0049138684,-0.023536755,-0.012131599,-0.0007582249,-0.026774615,0.0044676247,-0.022644266,-0.03947699,0.034454156,-0.015078882,0.034599446,0.0009281607,-0.020236628,0.005837489,-0.019053563,-0.02026776,-0.031216295,0.042320497,0.021585736,-0.005261523,0.006818187,0.015452481,0.0041666697,-0.020682871,0.030904962,0.023474488,0.00080881646,0.024408486,-0.01578457,0.0044131414,-0.0153902145,0.00967207,-0.009962647,0.0028720445,0.05238692,0.010626824,-0.0056818225,0.029452076,0.046948977,0.03590704,-0.009796604,0.0020093934,-0.0004420276,-0.013926951,0.02905772,-0.012505198,0.02235369,0.021772536,-0.019686606,-0.0010857729,-0.016811967,0.0078352075,0.028352033,-0.016137414,-0.0012810045,0.02901621,-0.046118755,-0.018347876,-0.024595285,-0.01290993,-0.026297238,0.0075498186,0.004799713,0.00075173884,-0.026629327,0.023391467,0.006050233,-0.016594034,-0.034142822,-0.010709845,0.0012129004,0.0023466705,-0.008255506,-0.017112922,-0.02532173,0.0068752645,0.030967228,-0.010351813,0.033852246,-0.019074319,-0.0030354941,-0.015172281,0.000407327,-0.013719396,0.008675805,-0.021461204,0.025861371,-0.006454965,0.0043612528,0.0100664245,-0.026048172,0.001065666,0.009490459,0.04794524,-0.02596515,-0.003077005,-0.026089683,0.032378603,-0.011685356,-0.055832338,-0.010834379,0.002786428,0.04508098,0.001989935,0.028808655,-0.013833551,-0.017476143,-0.007124331,-0.005707767,0.012411798,-0.015047749,-0.005873811,-0.01430055,-0.0045973468,-0.00087692053,0.041033655,-0.046741422,0.04836035,0.026048172,-0.024927374,-0.004044731,-0.005479456,-0.02175178,-0.0016331996,0.0011460936,0.0045376746,-0.020952692,0.0017369771,0.016230812,-0.029597364,0.005124018,-0.003938359,0.04669991,-0.020423427,0.0075861407,0.020952692,0.026401015,-0.014009973,0.033810735,0.020402672,0.011280622,0.0053808675,0.009890003,-0.038024105,-0.011529689,0.0028383168,-0.040660053,0.005025429,0.0098951915,-0.03165216,-0.0021572763,0.045745157,0.026068928,0.025342485,0.043711115,-0.035491932,-0.027480302,0.007980496,-0.011228734,-0.012432554,0.008629105,0.030240785,0.0012887878,0.008597972,0.004594752,-0.031444605,0.027874658,0.0005811544,0.009386682,0.030095497,0.025944395,0.030738918,-0.0034272545,-0.031921983,0.008463061,0.009417815,-0.025882127,-0.0011026368,-0.05242843,-0.006818187,-0.013563729,-0.008011629,0.007492741,0.024512263,-0.013771284,-0.023910353,0.036031574,-0.005238173,-0.0017434633,0.017133677,-0.058987174,0.030738918,-0.00930366,-0.015234549,-0.006211088,0.027646346,-0.0010319382,-0.000094372735,0.00007337399,-0.054462474,0.012764642,-0.033665445,0.025093418,-0.011332511,-0.008457872,-0.019655474,0.017694077,-0.00404992,-0.0038086371,0.0141448835,-0.0036763207,0.0005312115,0.016552523,0.039124146,0.027106702,0.01939603,-0.021461204,0.028476568,-0.007622463,0.012318399,-0.0005526156,-0.017797854,0.008359284,-0.008867794,0.0049813236,0.02026776,0.0072229193,-0.02735577,-0.023806576,-0.0002868477,-0.00870175,0.039809078,-0.01814032,-0.005749278,-0.017704455,0.01855543,0.044541337,-0.02498964,-0.005910133,0.009184316,0.0033364492,-0.005295251,0.013003331,-0.02976341,0.026940659,0.040410988,0.043628093,-0.03356167,0.011405156,-0.024699064,-0.003883876,0.014601505,0.0021767346,-0.008483817,0.011342889,-0.00615401,0.0015722302,0.019894162,-0.0067092204,-0.022602756,0.0044546523,0.01087589,0.0011687949,-0.007757374,0.013345797,0.016023258,0.013999595,0.017559165,0.015182659,0.0018744825,-0.012858042,-0.03872979,0.002804589,-0.004452058,0.059360772,-0.0049034907,0.032129537,0.008255506,0.01757992,0.015141148,-0.0018563214,0.00015526099,0.005474267,-0.005095479,0.030095497,0.006003533,0.013158997,-0.0090078935,0.016853478,-0.0017616244,-0.042507295,0.019468673,0.030012475,-0.021222515,-0.027065191,0.0073889634,0.002478987,-0.020734759,0.021295158,0.011332511,-0.03345789,-0.013895817,0.028123723,-0.02559155,0.009931514,0.03235785,0.020890426,0.037152372,0.013055219,0.007539441,0.021834802,0.0072229193,0.00698942,-0.0061280658,-0.033665445,-0.023868842,0.02758408,0.012660865,0.0027423224,-0.040224187,-0.00065379875,-0.0170299,0.0093088485,-0.003240455,-0.02137818,0.021855557,-0.059858907,-0.0076899184,-0.02120176,-0.02498964,0.015161904,-0.038958102,-0.032835227,0.0009943189,0.030386075,0.01698839,-0.0048074964,0.017486522,0.0040291646,0.030738918,-0.0030899774,0.0004942407,0.0052511455,0.038252413,0.00052894134,0.009199882,-0.0004887275,-0.006688465,0.009049404,-0.00014909919,-0.02476133,0.033935267,-0.017735587,-0.013968462,0.016656302,0.05520967,0.02592364,0.024491508,-0.0051214234,-0.00018339444,0.027791634,0.005744089,0.0060554217,-0.011623088,0.0130863525,0.0030510607,-0.0033208826,0.009002705,0.042590316,0.009324416,0.005077318,-0.014559994,-0.021129115,0.030303052,-0.015971368,-0.014103373,-0.003790476,-0.005196662,-0.0012913822,0.009687637,0.004078459,0.016075147,0.014020351,0.015514748,-0.026919903,-0.05122461,0.00040927282,0.015120393,-0.018337497,0.0019224796,0.010341436,-0.06342886,0.012401421,0.020797027,-0.013729773,-0.0028772333,-0.0012362504,0.016905367,0.03476549,0.011093823,-0.024491508,-0.010035291,0.00025020126,-0.017600678,-0.012951442,-0.012474065,-0.01906394,0.013947707,-0.002763078,0.013480707,0.008577216,0.027127458,0.011322133,-0.018773364,-0.0046492354,0.026110439,-0.0064393985,0.0404525,0.009002705,0.018773364,0.014632639,-0.023516,0.0057129557,0.051515188,-0.040514767,0.034910776,-0.012847664,0.008276261,0.019966805,0.013491085,-0.02141969,0.021959335,0.029119989,0.020579094,0.008992327,-0.0033494213,-0.04225823,0.011249489,0.02438773,-0.0027085948,0.0054638893,0.039601523,0.019313008,-0.019001674,-0.018897897,-0.022187646,0.037941083,-0.010019725,-0.012660865,0.0019886377,0.00091908016,0.0081205955,-0.00985887,-0.017870499,0.006932342,0.0023765066,0.013304286,-0.010419269,0.005640311,-0.031465363,0.007368208,-0.007845585,-0.0053860564,-0.014155261,0.0070413086,0.017476143,-0.033478647,-0.017735587,0.0067040315,0.04508098,-0.024138665,-0.028019946,0.0173101,0.0072229193,0.01661479,0.013823173,-0.012816531,0.009241393,-0.020413049,-0.0012368989,0.008546083,0.040826097,0.026919903,0.00062169257,0.0120278215,0.013937329,-0.0030951663,-0.0133873075,0.0017966493,0.05002079,-0.04956417,-0.027272748,-0.01966585,-0.018762985,-0.0033442324,-0.022872578,-0.005349734,-0.0033260714,-0.01851392,-0.016282702,0.005108451,-0.009267338,-0.039954368,0.011633466,0.007622463,-0.03156914,-0.026525548,-0.00020544717,0.0035803264,-0.016811967,0.01698839,0.017102545,-0.02003945,-0.023287687,0.012152354,0.0038397703,-0.008213995,0.0171233,0.042092185,-0.0121419765,0.038854323,-0.020859294,-0.00041219156,0.0036711318,-0.023059377,-0.012930686,-0.027853902,0.0009288093,0.012432554,-0.023516,0.008852228,0.007871529,0.0039591147,-0.0072748084,-0.006382321,-0.00055683154,-0.020579094,0.028102968,-0.079535134,0.009884814,-0.0048464127,0.046824444,0.03410131,0.013843928,0.026919903,0.016324213,-0.0353674,0.0120278215,0.002179329,-0.03864677,0.026255727,0.0057285223,-0.024906619,0.022187646,0.002598331,-0.019593207,0.0063252435,0.03601082,0.027210481,0.0045039468,0.009941892,0.025487773,-0.0022480818,0.014570372,0.046492353,0.00726443,-0.011052312,-0.05184728,-0.007466797,0.034993798,-0.04391867,0.00530044,0.021544226,0.0037515594,0.020620605,-0.028393544,0.023495244,0.0057544666,0.040514767,0.031942736,0.025612306,0.030925717,0.008961194,-0.05956833,0.009199882,0.0072229193,-0.018389387,-0.0062785433,-0.031548385,-0.023910353,0.014591128,-0.007824829,-0.022415956,-0.033146556,0.0012596004,-0.05836451,0.019904539,0.040286455,-0.006927153,-0.03231634,-0.025529284,-0.0149751045]},{"id":"guide-gifs-0","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: How Tenor GIFs Work\nTenor embeds are created by the Fluxer unfurler when you send a Tenor URL as message content. Do not use custom embeds for Tenor GIFs—the API turns the URL into a type: \"gifv\" embed.","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.049556967,0.015643379,-0.010062992,-0.016466714,0.013656917,-0.04861601,-0.016558195,0.0038128283,-0.0077824825,-0.021119215,-0.010605347,-0.028646855,0.0028293997,-0.05243211,-0.00040983004,0.02647743,-0.007488434,-0.009703599,-0.005511775,0.0746491,0.008605818,-0.0075929845,-0.008971745,0.059436996,-0.026046159,0.017512219,-0.0163883,0.062207583,0.031861786,0.027575212,-0.024412556,-0.016100787,0.04354531,-0.034841474,0.013983638,0.0065866853,0.041715674,0.0347892,-0.0054693012,0.013826812,0.039180323,0.03732455,-0.00985389,-0.013722261,0.04080086,0.036958624,-0.00019613441,-0.0023246165,-0.02869913,0.042787317,0.018518519,-0.011513631,-0.04142816,0.016087718,-0.019224234,0.022125512,-0.07856975,0.015172901,-0.0088018505,-0.009089365,-0.005433362,-0.020988526,-0.01146789,0.0012603244,0.011337202,0.04950469,-0.042813454,0.0699966,-0.017551426,-0.011330667,0.05175253,-0.025967747,0.043728273,-0.005560783,-0.025314305,0.00022686656,0.02006064,0.036644973,0.000016961389,-0.050393373,0.024621658,-0.0069395434,-0.0748582,0.010592279,-0.046943203,0.026542773,-0.045009017,-0.038709845,-0.0061750175,-0.030424213,-0.05415719,-0.0133498,-0.07193079,0.024660865,0.00049539,-0.017473012,-0.0090370895,0.03690635,0.020910112,0.016244544,0.08771792,-0.03745524,-0.037873443,-0.0015217008,-0.0039729215,-0.06550093,-0.038370058,0.0017005802,-0.04100996,-0.0045773545,-0.050445646,-0.059227895,0.011840351,0.037742753,0.065187275,-0.012990408,0.020295879,0.021445934,-0.0061129406,-0.025418855,-0.057136882,-0.023576152,0.05640503,0.015486552,-0.003169189,-0.0009768943,0.0005186688,0.0002460614,-0.023419326,-0.0109386025,0.025431925,-0.05227528,0.01695026,-0.011846886,-0.009056693,-0.04686479,-0.051909354,0.002917614,-0.021563554,0.048354637,-0.009514101,-0.010664158,0.013369403,0.009318069,-0.00040084522,-0.0021269505,-0.06973523,0.029979873,-0.033586867,0.020975458,-0.05185708,-0.008827988,-0.025967747,-0.027993413,-0.054000366,-0.024961447,-0.024896102,-0.022243133,-0.02849003,-0.023667634,0.010036854,-0.01772132,0.029666223,-0.004106877,-0.03588698,0.01927651,0.051595703,-0.04255208,-0.0104746595,0.059332445,-0.042996418,-0.016793434,-0.05802556,0.02259599,0.010997413,0.000037547332,-0.02324943,-0.012055987,0.026843358,0.01871455,0.009697065,0.05405264,-0.0416634,-0.03356073,-0.027705899,0.0027183148,-0.00653441,0.030973105,0.014833111,-0.030764002,-0.040826995,-0.013473954,0.030607177,0.037141588,-0.03852688,-0.0054039573,0.047492094,0.008115738,0.07250582,0.015185969,0.03267205,0.03991218,0.0112195825,0.03455396,-0.03609608,0.021864137,0.0034861078,-0.001023452,-0.019681644,0.011108497,0.041140646,0.022674404,-0.022190858,0.0019668576,-0.06351446,0.018557725,-0.008932538,0.0035939256,-0.028516166,0.0418725,-0.049556967,0.0161792,0.028202515,0.027287697,0.00841632,0.025314305,-0.014911524,-0.008540474,0.0039925245,0.02037429,0.022635197,-0.029849187,-0.04012128,-0.043466896,-0.0127028935,0.007357746,-0.028280927,-0.024896102,0.029796911,0.0004345383,-0.051987767,0.028176377,0.01960323,-0.010363574,-0.027941138,-0.015904754,-0.027287697,-0.03878826,0.058234666,0.072871745,0.048485324,0.0037213466,0.01850545,0.0023687237,0.037716616,-0.023171019,-0.027653623,0.03933715,-0.009690531,-0.0155388275,0.03855302,-0.028882094,-0.029718498,-0.014728561,-0.041088372,-0.021341383,-0.039128046,-0.01582634,0.006854596,0.007985049,0.0049792207,0.0044401316,-0.009004417,0.020622598,-0.031286757,0.08233357,0.05671868,0.0075407093,-0.019564023,0.0056163254,-0.0069526127,-0.04908649,-0.007723673,-0.014650147,-0.008024256,-0.0152121065,-0.03092083,-0.016375232,0.007612588,0.023079537,0.038160957,0.015878616,0.029221883,-0.009625186,-0.019250372,0.06931702,0.023118744,0.018427037,0.0015192503,-0.009651324,-0.06340992,-0.053686716,0.005158917,0.025392719,0.007168248,0.0030368671,-0.021877205,0.011859954,0.049164902,-0.0014808608,0.011611647,0.0041493503,-0.03079014,0.009122036,-0.026307536,0.046106797,0.03311639,0.0045773545,0.0076844664,-0.04255208,0.01706788,-0.008658093,0.018322486,-0.019302648,-0.018792965,-0.019799262,-0.021877205,-0.003597193,0.01585248,-0.015604172,0.015003006,-0.03146972,0.02404663,0.02616378,0.0124741895,-0.01761677,-0.025967747,-0.014480253,0.0007608504,0.035050575,-0.008997883,-0.023458533,-0.0027607884,0.0055575157,-0.018413968,0.055673175,0.0033341828,0.008808385,0.0082921665,-0.025379648,-0.005884236,0.034501687,-0.007357746,0.003275373,0.025745576,0.021027733,0.020256672,-0.050158132,-0.039075773,0.0052503985,-0.042055465,-0.00592671,-0.02348467,0.030659452,-0.030058287,0.01102355,-0.013277922,0.045061294,0.03366528,-0.00035571697,-0.004567553,0.059646096,0.0073708147,0.0063155075,-0.011343736,-0.014558666,0.014676285,-0.03745524,-0.008599284,0.008233357,-0.0066324263,0.00412648,-0.012042918,-0.020740218,-0.014414909,-0.05415719,0.034397136,0.014467184,-0.01057921,0.05162184,0.0065246085,0.008769179,-0.043780547,-0.020570323,0.059698373,0.030319663,0.05739826,0.03212316,0.00006478255,-0.0152121065,0.029666223,-0.0026578715,-0.026895633,-0.00062648655,0.008912936,-0.03779503,0.032279987,0.016100787,-0.003711545,-0.0416634,-0.006583418,-0.03434486,0.018231004,0.0121344,-0.024804622,0.019629369,-0.008625422,-0.043780547,0.024804622,0.03447555,-0.062782615,-0.025980815,-0.0021628898,-0.0044368645,-0.016087718,-0.03468465,0.016048511,0.0048191277,0.030659452,-0.033848245,-0.016336026,-0.012807444,-0.019916883,0.026555844,-0.022870436,-0.00092053507,0.041271336,0.0023327845,0.037298415,0.019733919,-0.0069722156,0.0040219296,0.048589874,-0.023367051,-0.028751405,0.011441752,-0.015081419,0.010396247,0.014820042,-0.029457122,-0.03175723,0.03609608,-0.016205337,-0.024987584,-0.021681173,0.021367522,-0.0016719922,0.033822108,0.047230717,-0.008671163,-0.037193865,-0.01761677,-0.016205337,-0.0061750175,-0.008213754,-0.021772655,-0.010657623,-0.025850127,0.034057345,-0.035050575,-0.03857916,0.02560182,-0.04176795,0.0058221593,0.009860425,-0.044407852,0.015107556,-0.041375887,0.056091376,-0.019668575,0.018897515,-0.032698188,-0.035521053,-0.03301184,-0.060012024,0.10747798,0.022203926,-0.0533992,0.02616378,-0.06586686,-0.021498209,0.006848062,0.0023164484,-0.01417967,0.034867615,-0.0013019813,-0.053320788,-0.076896936,-0.018531587,-0.02825479,0.026320605,0.059018794,-0.02249144,-0.0011026817,0.057659637,0.0030711729,0.05232756,0.02935257,0.0011075825,0.01023942,0.0021465537,-0.016205337,-0.028307065,0.022334615,-0.02004757,0.030633315,-0.033848245,0.040069003,-0.0040742047,-0.024504038,-0.018348623,-0.0014555398,-0.003045035,-0.033403903,0.009899631,0.029430984,0.026294466,-0.018923651,-0.039493974,-0.030659452,0.026333673,-0.04882511,0.014820042,0.010781777,-0.038814396,0.015172901,-0.02470007,0.02228234,-0.045139704,-0.06675553,-0.0045871558,0.022556784,0.016649676,0.029927598,-0.041506574,0.015159831,-0.034109622,-0.027679762,-0.0242688,-0.0005684937,0.040461067,-0.04001673,0.02040043,0.007044094,-0.010115267,0.015094488,0.014218877,0.00035081615,0.018244073,0.00075186556,0.013578504,-0.03102538,0.005034763,0.018361693,-0.007194386,0.03047649,-0.0031512193,0.019890744,-0.030188976,-0.03465851,0.007815154,-0.016780365,0.025993884,0.025209755,0.0011092161,-0.0072205234,-0.017316187,0.013108027,-0.006629159,0.008050393,-0.013016545,-0.021694241,0.013748399,-0.01136334,-0.008233357,-0.027287697,-0.045061294,0.018217936,0.017878147,-0.0097297365,0.037847303,0.030241251,-0.0053288117,-0.02338012,-0.011284926,-0.010605347,-0.007599519,-0.028437754,-0.027967276,0.013023079,0.00060443295,-0.03988604,-0.011755404,-0.0011933467,0.013905225,0.007514572,0.025863195,0.008259495,-0.024242662,-0.033299353,-0.0071617137,0.007906636,-0.025954677,-0.051255915,-0.031286757,0.01662354,-0.021877205,0.030424213,0.0038193627,0.030293526,0.019250372,-0.013369403,-0.0027885595,0.00703756,-0.038814396,0.020335084,-0.005211192,-0.040696308,0.0047537833,-0.028960506,0.016035443,-0.031365167,0.035808567,0.0018263677,-0.011095429,-0.02238689,-0.013722261,-0.005515042,-0.012232416,-0.025863195,-0.0053124754,-0.01450639,0.023654565,0.02471314,-0.018257143,0.017956559,0.007468831,0.018074179,-0.032855015,0.0033652212,-0.025654094,0.0074165557,0.008357511,-0.0418725,0.023223294,0.02781045,-0.023628427,0.0000010305735,-0.055568624,0.0198254,-0.02859458,-0.0035089783,0.020439636,0.0009605583,-0.04001673,0.0117292665,-0.0029094461,-0.0065670824,-0.020387359,-0.036514286,-0.010389713,0.0051556495,0.013565436,-0.0116835255,0.046943203,-0.004159152,0.020583393,-0.037376825,0.031887922,0.009474895,0.003953318,0.02969236,-0.03625291,0.02570637,0.018779894,-0.014140463,-0.0058188923,-0.0011476058,-0.0042931074,-0.04344076,-0.014062051,0.03722,0.03578243,-0.0004525079,0.014702423,-0.008507802,0.0027591547,-0.005466034,0.011781542,-0.030502627,-0.0013338365,-0.008932538,-0.023458533,-0.041088372,0.013036149,-0.003263938,-0.0040709376,0.008481665,0.03387438,-0.017041741,-0.037533652,-0.010768708,-0.024752345,0.004809326,0.043466896,0.004472804,0.01672809,0.0069395434,0.02315795,0.0015935793,-0.014532528,0.0028016283,-0.021981755,0.018753758,-0.014728561,-0.035913117,-0.0038487676,-0.0044956743,-0.004463002,-0.01551269,-0.004332314,0.02050498,-0.0068872683,0.031417444,-0.050785437,0.007664863,0.001401631,0.001816566,-0.016662747,-0.018623069,-0.006743511,0.026791083,0.033952795,-0.004413994,0.0009058326,0.017512219,0.013330197,-0.021184558,0.00053949724,-0.020910112,0.011827283,0.010990878,-0.006583418,0.006743511,-0.03092083,-0.007893568,0.042891867,-0.03246295,0.015970098,0.05107295,0.004299642,0.020570323,-0.010389713,0.0027558876,-0.0043355813,-0.027888862,0.0023295172,0.010343972,-0.001862307,-0.030554902,-0.008122272,-0.005430095,-0.002515748,-0.021837998,0.0126114115,-0.011101963,-0.0327766,0.0057600825,0.004368253,0.013460885,-0.042813454,-0.00088704616,-0.011585509,-0.00831177,-0.013578504,-0.0076060533,-0.0034370997,-0.023210226,-0.0009899632,-0.026843358,-0.012977338,-0.008350976,0.015891686,-0.04255208,-0.013140699,0.04080086,-0.008272563,-0.06581458,-0.03857916,0.04210774,-0.032070886,-0.024294937,-0.023785254,-0.0028882094,0.0032949764,0.045845423,0.027183147,-0.005717609,-0.032724325,0.012513395,-0.015185969,0.027705899,0.028934369,-0.0064559975,-0.014140463,-0.0054921717,0.011415615,-0.041088372,-0.015486552,0.042578217,-0.004472804,0.027183147,0.018688412,0.009520636,0.006083536,0.01874069,-0.0008927638,0.0127028935,-0.017015604,0.019995295,-0.005769884,0.028202515,-0.00079638127,0.027183147,-0.021080008,0.031966336,-0.0025631224,0.015264383,-0.00786743,0.0036625369,-0.035076715,-0.01928958,0.038709845,0.0022478371,-0.007893568,-0.001862307,-0.026843358,0.018570794,0.025118273,0.011814213,0.019341854,0.024203455,0.02060953,-0.021445934,-0.0054366295,0.00021767755,-0.0325675,0.0016744427,0.0032868083,0.043597586,-0.033403903,0.016649676,-0.023197155,-0.013578504,-0.00093360385,-0.051987767,-0.069421574,0.008540474,-0.009252725,0.034214173,0.023288637,0.032541364,0.0017201835,0.023210226,-0.0086973,0.018204866,0.018649207,-0.031260617,0.02138059,0.008579681,0.044277165,0.02138059,-0.0091285715,-0.032044746,0.0050380304,-0.005122978,0.011036619,0.068219244,-0.021524347,-0.001138621,-0.0026644059,-0.01197104,-0.04788416,-0.03468465,0.027313834,-0.01157244,-0.012644084,0.055464074,-0.02283123,-0.023301708,-0.028960506,-0.048589874,-0.03047649,0.026111504,-0.0069264746,-0.004505476,-0.04307483,0.00085927494,-0.03267205,0.013160302,0.00042310305,-0.03379597,0.007213989,0.027470661,0.015342795,-0.018792965,-0.011925299,0.0645077,-0.011376408,-0.041846365,-0.051883217,-0.03212316,0.0026807417,0.0035906583,-0.008024256,0.009311534,0.0033325492,-0.027392248,0.024190387,-0.012036383,-0.018413968,0.01251993,-0.016701952,0.012637549,0.012689824,-0.029770773,0.01628375,-0.0014604407,-0.039833765,0.0396508,-0.034188036,-0.027496798,-0.0015609072,-0.00819415,0.040565617,0.013473954,-0.014062051,0.03123448,-0.008527406,-0.02415118,0.016035443,0.03403121,0.028751405,-0.011578975,0.022582922,-0.028333202,-0.0074818996,0.021811862,0.030398076,-0.0023115475,-0.01717243,0.03544264,0.0009540239,-0.03165268,0.014336496,-0.014062051,0.0074361586,-0.033508457,0.0031348832,0.041715674,0.011801145,-0.0076387255,0.01451946,0.010298231,0.030162837,0.0095010325,0.02004757,-0.029535534,0.016192269,-0.005181787,0.054679945,0.029509397,-0.03557333,0.012768238,-0.029640084,-0.011650854,0.012016781,0.016440576,0.016871847,0.02616378,-0.019890744,0.0019227501,0.013304059,-0.009834288,-0.011513631,-0.040356517,0.0027019787,0.023563083,-0.00725973,-0.025288168,-0.02460859,-0.00891947,-0.0067173736,-0.0005399056,-0.020335084,0.0045479494,0.014663217,-0.0060443296,0.022295408,0.0053614834,0.035521053,0.005018427,0.010383178,-0.028855955,0.0033096788,0.038056403,-0.000049237802,0.00077514444,-0.028829819,-0.017577564,-0.015917823,0.01296427,0.020518048,0.013944431,-0.0068676653,0.006750046,0.038160957,-0.0038258971,-0.010977809,0.019537887,-0.019211166,0.03246295,0.02505293,-0.0140489815,-0.005992054,0.03588698,0.011605113,0.005894038,0.019015133,0.03146972,-0.040251967,-0.044172615,-0.015656447,0.024804622,0.020491911,-0.00420816,-0.00033815572,0.018361693,0.00023340096,0.0057110745,-0.011846886,0.020661805,0.0069852844,-0.038187094,0.017551426,-0.013656917,0.021367522,-0.022635197,-0.0006505822,-0.006139078,-0.046368174,-0.005635929,0.004319245,-0.020740218,-0.014310358,-0.00040431664,0.0100107165,-0.010716433,-0.010696829,-0.0012325532,0.018649207,-0.0050282287,0.0007294035,0.010259024,0.029666223,0.017930422,-0.0095010325,-0.024778483,-0.031417444,0.010690295,0.0027199483,0.01312763,0.038396195,-0.02846389,0.0056097913,0.044224888,0.021641966,0.011271858,-0.029065056,-0.0033325492,-0.0418725,0.018244073,-0.011997177,-0.0327766,0.024294937,0.020021433,-0.0064069894,0.017799733,0.029979873,0.0027199483,-0.048459187,-0.015787136,0.033848245,0.012637549,-0.009108968,0.029065056,0.02969236,-0.0016924122,0.0127028935,-0.010069526,-0.019080479,0.03465851,-0.022543715,-0.026974045,-0.05813011,0.0041362816,0.0163883,-0.016466714,-0.000030502422,-0.0057633496,0.046368174,0.021498209,-0.024033561,0.0045283465,-0.017603701,0.03510285,0.01595703,0.0012505228,0.007044094,-0.010461591,-0.025941608,-0.028882094,-0.0007820872,-0.034972165,0.021694241,0.013016545,-0.00018041098,0.0054594995,0.014571735,-0.009958441,0.030006012,0.010605347,0.0032688386,-0.013140699,-0.018688412,-0.0062240255,-0.0112653235,0.059175618,-0.0030025614,-0.0045871558,0.0043388484,0.0119122295,0.019080479,0.0266996,0.047335267,0.003324381,0.020975458,-0.013696124,0.02637288,0.00024871598,-0.013722261,0.025105204,0.016270682,-0.036749523,0.00997151,-0.0038814396,-0.027575212,-0.016087718,0.007213989,-0.01063802,0.039467838,-0.019799262,-0.0058384957,-0.017146293,0.017263912,0.015434277,0.0012096827,-0.0396508,-0.0030286992,0.0130753545,-0.0079197055,-0.007887033,-0.0060116574,-0.03588698,-0.0015502889,0.010272093,0.005034763,-0.01727698,-0.024033561,0.0038651037,-0.04074858,-0.0061227423,-0.007168248,-0.00037266559,-0.02481769,0.014663217,-0.049713794,-0.0004414811,0.045793146,0.04095768,-0.002030568,0.041950915,-0.01114117,-0.00792624,0.008645025,-0.007044094,0.014114326,0.0067173736,0.0007682016,0.019315716,0.014702423,0.010886327,0.029483259,0.008324838,0.0010847121,0.012931597,-0.015970098,0.02050498,0.0080111865,-0.0023932278,-0.0060966047,-0.0015176168,0.029378708,0.029300295,0.010108733,-0.034109622,0.018113386,-0.0046100263,-0.012794375,0.0067696488,0.026111504,-0.043728273,0.03160041,0.013970569,-0.05661413,-0.022569852,0.04286573,0.0048452653,-0.027575212,0.020596461,0.026869494,-0.016701952,0.0014955632,-0.01817873,0.006596487,0.0022984787,0.023968216,0.004828929,-0.010553072,0.011637785,0.027732037,0.023824459,-0.006449463,-0.04540108,0.014663217,-0.02383753,-0.0035285815,0.02383753,-0.025967747,-0.012114797,0.0037932252,-0.0054889047,0.024321076,0.017133223,0.009664393,0.037246138,-0.058234666,0.02259599,-0.0069722156,-0.007102904,-0.036592696,0.036279045,0.042499803,0.0036527354,-0.01429729,-0.0030368671,-0.013487022,0.011284926,-0.016479783,0.006913406,-0.019812332,-0.038134817,-0.02515748,0.0440942,-0.024321076,-0.012278156,-0.024111973,0.028385477,-0.00054521486,0.006991819,-0.004717844,0.026059227,-0.012480724,-0.002437335,0.030868554,-0.055673175,-0.017799733,0.0126114115,-0.017133223,0.035834707,-0.0025451528,0.0056620664,0.0060672,-0.02182493,-0.0030711729,0.005779686,-0.03536423,-0.026085366,-0.009847356,0.018792965,0.012493792,0.04163726,-0.014637079,-0.033743694,0.047256853,0.0013428213,0.0035449176,-0.019328786,-0.012709428,-0.03434486,0.021772655,-0.01551269,-0.015904754,0.011115031,0.029326433,-0.03954625,0.008827988,0.02835934,-0.029300295,-0.0061227423,0.0043845894,-0.02835934,0.016349094,-0.026621187,-0.027130872,-0.03112993,-0.015943961,-0.001278294,-0.046681825,-0.031887922,-0.01351316,-0.0067696488,0.01462401,0.015551896,-0.010363574,-0.011886092,0.042186152,-0.019564023,0.0021236832,0.006913406,0.019537887,0.033586867,-0.00067794503,0.009605583,0.011886092,0.01717243,-0.000671819,0.02192948,0.0012219347,-0.01351316,0.0325675,0.028725266,-0.0032982435,-0.0033521524,0.014101258,0.018518519,-0.01616613,0.010324368,0.011676991,-0.030528765,-0.027627487,0.021798793,-0.006233827,0.000026265267,-0.03246295,0.037638202,0.027836587,-0.0050739697,-0.023680702,-0.04798871,0.03311639,0.016610472,-0.037612066,0.011918765,-0.009076295,-0.018427037,0.016571265,0.011611647,-0.002179226,-0.01861,0.04696934,-0.01290546,0.005322277,-0.004926945,-0.030162837,-0.03290729,0.019655505,-0.005181787,-0.011533234,0.010455056,-0.010147939,0.005381087,-0.0004917144,0.027287697,0.008775713,0.019250372,0.0014775936,-0.0064429287,-0.009638255,-0.004672103,0.0026072296,0.0059169084,-0.013003476,-0.0032933427,-0.0049628844,-0.022805091,0.030554902,-0.015891686,-0.0023148148,-0.03766434,0.021798793,0.0015364032,-0.020034501,0.00017316187,-0.027888862,0.0072074546,-0.018897515,-0.037821166,-0.005109909,0.0051360466,-0.005064168,0.01772132,0.010448522,0.030215112,-0.025980815,-0.022504508,-0.014898456,0.0035155127,0.00018306558,0.009089365,-0.017459944,-0.016009305,0.020975458,0.016453644,0.010259024,0.012317363,-0.019354923,-0.0062044226,0.029457122,0.0029976608,-0.057555087,-0.0015870449,0.022138583,-0.0051001073,-0.026385948,-0.014414909,0.022765886,0.013487022,-0.017054811,-0.036958624,-0.02047884,0.022648266,0.004410727,0.0012554235,0.001973392,0.024425626,0.021406727,0.0057437466,0.024909172,0.033952795,0.0033096788,0.03975535,0.014898456,0.018126454,-0.0032819074,0.036122218,0.023732977,-0.03424031,0.027104734,0.012853185,-0.0034044278,0.013062286,-0.015996236,-0.0009033822,0.015172901,0.010696829,-0.030162837,0.015251313,-0.027418384,0.022203926,-0.0122389505,-0.001319134,0.01063802,-0.0015756097,-0.027235422,-0.0005758449,-0.027339973,0.013722261,0.016022373,0.027941138,-0.04221229,-0.02348467,0.026947908,0.059436996,-0.03092083,0.019315716,-0.014806974,0.01429729,0.010873259,0.0025386184,-0.012761703,0.024294937,0.04297028,-0.010200215,-0.005430095,0.012925063,0.02449097,-0.065762304,-0.02394208,-0.016532058,-0.029457122,-0.023079537,0.018061109,-0.0053288117,-0.034815338,-0.0040317313,-0.01280091,-0.0034763063,0.011592044,-0.05217073,-0.0034109622,0.0325675,-0.012820513,-0.012598343,0.0072074546,0.00015243553]},{"id":"guide-gifs-1","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Send a Tenor GIF\nSend the Tenor URL as content. No embeds needed. The unfurler detects the URL and creates the gifv embed.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!gif') {\n const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\n await message.reply({ content: tenorUrl });\n }\n});\n```","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.043715186,0.0022995588,-0.017561492,-0.022988854,0.0046496205,-0.03617344,-0.044011466,0.029089587,-0.0018770191,-0.0023500614,-0.0020520953,-0.015083489,0.01155503,-0.045816097,0.014827609,0.042368446,-0.019446928,0.0029156923,0.016174348,0.059364304,0.02498203,-0.0062286733,0.004100824,0.046758816,-0.027392695,0.029466674,-0.042341508,0.036685202,0.029682152,0.0079525,-0.008376723,-0.02638264,0.019541198,-0.03857064,-0.00019948588,0.055539563,0.038112745,0.040509943,-0.033668503,0.0041109244,0.025224444,0.015527913,0.03181,-0.012605487,0.03415333,0.02756777,-0.0062859096,0.0014772055,-0.004740525,0.02529178,-0.0019056373,-0.011393421,-0.03022085,0.04228764,-0.015783794,0.0060401293,-0.069545664,0.017925112,0.00041096617,-0.0050166068,0.009999545,-0.022934984,-0.018369535,-0.009656127,0.016551437,0.04732445,-0.034234133,0.068845354,-0.0021716184,-0.000418752,0.040132854,-0.010955731,0.053492516,-0.0151373595,-0.02036271,-0.008807681,0.0036867012,0.0041210246,0.01308358,-0.05984913,0.032860458,-0.019258384,-0.07967315,-0.010282361,-0.049775515,0.020133765,-0.06976114,-0.029170392,0.0035486603,0.008235316,-0.01937959,-0.0015268666,-0.070084356,0.010470904,0.017561492,-0.03202548,-0.013790619,0.039701898,0.03140598,0.03202548,0.10860112,-0.030840348,-0.047620732,0.017251741,0.0022507394,-0.017399883,-0.018275263,0.015608718,-0.024645345,0.024335595,-0.041075572,-0.037412442,0.02010683,0.034072526,0.054542974,-0.031082762,0.017884709,-0.0099120075,-0.014787206,-0.033614635,-0.07951154,0.0016825835,0.06243487,0.009393512,-0.0010883344,-0.02487429,-0.02161518,-0.0077706906,-0.026194096,0.0077235545,0.028577825,-0.03582329,0.022450158,-0.0020419948,0.0023786798,-0.022423223,-0.028173804,-0.015002685,-0.04072542,0.07126949,0.0105786435,-0.030867284,0.0101544205,0.008518131,0.021049548,0.00647782,-0.075201966,0.026153693,-0.032321762,0.0020318942,-0.040752355,-0.0010841258,-0.022436691,-0.009130898,-0.034018654,-0.01570299,-0.029682152,0.0040604216,-0.041129444,-0.056616955,0.026557716,-0.021009145,0.04468484,-0.018679285,-0.024470268,0.025143638,0.04974858,-0.016537968,-0.0036530327,0.058556262,-0.034288004,-0.016834252,-0.0342072,0.04037527,0.027769782,0.010410301,0.0011119023,-0.0028651897,0.016403295,0.048321035,0.030328589,0.064859,-0.030247783,-0.045331273,-0.03684681,0.0044644433,-0.0012238501,0.032725785,0.0042354977,-0.026409574,-0.04015979,-0.0017574959,0.031055827,0.0348267,-0.017399883,-0.0052758544,0.059148826,0.0051344465,0.05613213,0.004292734,0.009723464,0.034745894,0.0024998863,-0.0035183586,-0.01839647,-0.0052994224,-0.003710269,0.009750399,-0.024106648,0.009110697,0.060926523,0.026207563,-0.013144184,-0.005767415,-0.059148826,0.021413168,0.0028332046,0.011945585,-0.013177852,0.037654854,-0.05093371,0.020147232,0.027015608,0.0065855593,0.03892079,0.020739798,-0.010821057,-0.013043178,0.0029948133,0.021399701,0.033453025,-0.03943255,-0.05731726,-0.022382822,0.014477456,0.009252105,0.0031395878,-0.008787479,0.017992448,-0.0072589293,-0.015272033,-0.004366805,0.029062653,-0.006188271,0.025897812,-0.00746094,-0.038597573,-0.041129444,0.049937125,0.067390874,0.058179174,-0.009063561,0.014369717,0.0050065066,0.033318352,-0.0421799,-0.027554303,0.02041658,-0.0010403567,-0.017453752,0.041129444,-0.03062487,-0.022719506,-0.0014864644,-0.039055463,-0.018840894,-0.0015899951,-0.0052657537,0.008026571,0.032160155,0.008652805,0.0008366623,-0.009582056,0.037170026,-0.027109878,0.08694554,0.04223377,0.010854726,-0.02938587,0.01435625,-0.017844306,-0.029305065,-0.022167342,-0.02860476,-0.013831021,-0.0045284135,-0.011056736,-0.02605942,0.005528368,0.037143093,0.03539233,0.008026571,0.03959416,-0.008154511,-0.0066427956,0.08128923,0.031082762,0.010174622,0.029332,0.0046866555,-0.053708,-0.059633654,0.036927614,0.015595251,-0.010484372,0.04021366,-0.023258202,0.01917758,0.05634761,0.000025448653,0.0021211158,0.02425479,-0.024753084,0.027850585,-0.0317292,0.02876637,0.0019510897,0.030113108,0.016147414,-0.019056372,0.031055827,0.0067337006,0.015797261,-0.006949179,-0.027688976,-0.028927978,0.0006683198,-0.004454343,0.021884527,-0.016591838,0.011225079,-0.018585013,0.014208108,0.021493973,0.029251195,-0.004504846,-0.032052416,-0.018665818,0.016295556,0.04613932,-0.024335595,-0.0385437,0.004612585,-0.019891351,-0.024955094,0.051014517,0.019783612,0.0048684655,0.0033466492,-0.03663133,-0.02296192,0.03207935,0.007784158,0.008565268,0.014733337,0.015164294,0.014692935,-0.0409409,-0.029628282,-0.010827791,-0.043795988,-0.01595887,-0.0050098733,0.01968934,-0.0044206744,0.02616716,-0.034584288,0.036254246,0.0708924,-0.019931754,0.00654179,0.077572234,0.023298604,0.01093553,-0.014800674,-0.04923682,-0.0026362438,-0.02254443,0.0032557442,0.02642304,-0.025843943,0.02156131,-0.03579635,-0.0042624325,-0.04861732,-0.033776242,0.02125156,0.0025200874,-0.013420265,0.028739434,0.045519818,0.0024561174,-0.07800319,0.012349607,0.038382094,0.028793303,0.0452774,0.048536513,-0.006457619,-0.0019073207,0.037897266,0.011514628,-0.03170226,0.0039526825,0.002169935,-0.032725785,0.017978981,0.01741335,-0.010544975,-0.04969471,-0.023756497,-0.0384629,0.018356068,0.019568134,-0.0011834479,0.015325903,0.022059603,-0.031675328,0.030382458,0.037493244,-0.07649484,-0.015568316,0.010417035,-0.016430229,-0.033453025,-0.02156131,0.026099823,-0.015514446,0.034045592,-0.02876637,-0.026638519,-0.033937853,-0.013602075,0.027231086,-0.0060131946,0.0018770191,0.019393058,0.022840712,0.042314574,0.015204696,-0.001777697,-0.0010933847,0.036254246,0.000044979017,-0.006747168,0.013561673,-0.017534556,0.011649302,0.0075215437,-0.00463952,-0.010046681,0.0060603307,-0.018611949,-0.036496658,-0.0385437,0.029197326,-0.027096411,0.042314574,0.050448887,-0.023339007,-0.022396289,-0.0019898086,-0.016282089,-0.008504664,-0.015002685,-0.027298423,-0.0062421407,-0.021844124,0.024120117,-0.021413168,-0.037493244,0.029655218,-0.034853633,0.020591656,0.018046318,-0.043203425,0.033614635,-0.035580873,0.05260367,-0.0171036,0.043257292,-0.0066091274,-0.034961373,-0.03181,-0.061572958,0.09028546,0.017884709,-0.07816479,0.012248602,-0.040860094,-0.02949361,0.0068010376,-0.016349426,-0.016066609,0.037089225,-0.0054778657,-0.028820239,-0.05141854,-0.011770509,-0.045816097,0.0047607264,0.034907505,-0.04683962,0.0015327586,0.04907521,0.013581874,0.05416589,0.007649484,0.0021042814,0.028281543,0.014544793,-0.017319078,-0.040698487,0.022126941,-0.02254443,0.04659721,-0.028443152,0.044630967,-0.02803913,-0.021844124,-0.013817553,0.004881933,-0.007528277,-0.04296101,-0.013177852,0.01964894,0.01850421,-0.022517495,-0.020443516,-0.03840903,0.03409946,-0.034503482,0.013130716,0.0054340963,-0.027527368,0.033937853,-0.028066065,-0.0049560037,-0.038220484,-0.054489106,0.0026025753,0.009258838,-0.0003259532,0.030140044,-0.043903727,0.0032557442,-0.009952409,0.011218346,-0.0268944,-0.00026198305,0.04145266,-0.04323036,-0.0019611903,0.0016539652,-0.0021951864,0.0054643983,0.015070022,-0.013400064,-0.0045923837,0.016430229,0.028847173,-0.018746622,0.0128344335,0.0094271805,-0.012019656,0.014598663,-0.007535011,0.039944313,-0.037277766,-0.011662769,0.019985624,-0.026409574,0.022073071,0.028308477,0.02414705,0.00038550436,-0.010827791,0.013831021,-0.009056827,0.031756133,-0.010228491,-0.009837937,0.014235043,-0.0016556487,-0.012969107,-0.022221211,-0.016147414,0.012558351,0.014612131,-0.00946085,0.028927978,0.016928524,0.0063768146,-0.028200738,-0.01430238,-0.021049548,-0.026315302,-0.019850949,-0.035365395,0.0033045637,0.0077706906,-0.043418903,-0.009265572,-0.0032641613,0.012019656,0.0045789164,0.0342072,-0.004589017,-0.01026216,-0.019581601,-0.019204514,0.021305429,-0.043984532,-0.07450166,-0.021063015,0.0034005188,-0.007359935,0.026288368,0.007535011,0.027446564,0.020928342,-0.005518268,0.017736567,0.016160881,-0.02451067,0.021857593,0.0015908368,-0.013608809,-0.013669413,-0.018989036,0.012544884,-0.02336594,0.030301653,0.002158151,-0.027715912,-0.03752018,0.004255699,-0.0099120075,-0.00433987,-0.03388398,0.0021076484,-0.007918832,0.03797807,0.014868011,-0.002003276,0.034530416,-0.0065990267,0.010006279,-0.027473498,0.0050233407,-0.0207802,0.011103872,0.02554766,-0.04363438,0.0189621,0.017507622,-0.048590384,-0.0052994224,-0.079780884,0.043176487,-0.017319078,0.0134472,-0.014396652,0.03291433,-0.046193186,0.022530962,-0.01148096,0.009521453,-0.032267895,-0.02487429,0.0003821375,0.020497385,0.02461841,-0.01575686,0.056455348,-0.016982393,0.021224624,-0.060818784,0.03202548,-0.006030029,0.023190865,0.021722918,-0.0378434,0.013871423,0.02125156,-0.01302971,-0.012484281,-0.00011005392,-0.007945767,-0.020174168,-0.018652352,0.032240957,0.04201829,0.026813596,0.021682516,-0.016066609,-0.0070232498,-0.0027540836,0.015123892,-0.03773566,-0.0009435598,-0.019191047,-0.022921517,-0.032860458,0.02285418,-0.008646072,0.0031395878,-0.00048019702,0.04789008,-0.0102150235,-0.029358935,-0.010693117,-0.034584288,0.009528186,0.012901771,0.0010773921,0.009938942,0.0062657082,0.014073434,-0.010477638,0.00958879,0.01135302,-0.018100187,0.018005915,-0.0153797725,-0.042368446,0.0030621504,0.0051007783,-0.014935348,-0.011157742,-0.00084381684,0.03590409,-0.0006030871,0.029224262,-0.0825821,0.00746094,-0.004316302,-0.014989218,-0.016389828,-0.023285137,0.00003519411,-0.005844852,0.017144002,0.003294463,-0.008147778,0.015447109,0.004424041,-0.028254608,-0.022261614,-0.002430866,-0.0063801813,0.011292416,-0.023702627,0.0058852546,-0.018531144,-0.019958688,0.012794031,-0.035257656,0.007070386,0.032941263,-0.0042220303,0.0041479594,-0.012639157,0.01288157,-0.0048246966,-0.01622822,0.011043269,0.009784067,0.0085787345,-0.038139682,0.011400155,0.014504391,-0.0010967515,-0.012760363,0.022813778,-0.0033331818,-0.059903,0.020012558,0.00886155,0.0051176124,-0.026988672,0.004191729,-0.004023386,-0.005309523,0.01730561,-0.0006430684,-0.012659357,-0.03218709,-0.025224444,-0.011514628,-0.036146507,0.0058616865,0.025830476,-0.041156378,-0.018073253,0.030032305,-0.01228227,-0.06830666,-0.035473134,0.03857064,-0.0421799,-0.034961373,-0.0051883166,-0.014989218,0.006514855,0.03566168,0.01923145,-0.012544884,-0.019339189,0.010767187,-0.010955731,0.04072542,0.032160155,-0.0001270986,-0.019568134,-0.0062623415,-0.007380136,-0.05031421,-0.024887757,0.032510307,0.006498021,0.015716458,0.0087605445,0.010363165,-0.006147869,0.030894218,-0.011225079,0.016362892,-0.0060468633,0.030193914,-0.01393876,0.031001957,-0.0004469494,0.020699397,-0.011130807,0.02269257,0.008268984,0.0124708135,0.004346604,0.0052522863,-0.053142365,-0.004248965,0.058071434,0.0152855,0.0034005188,-0.01191865,-0.029116523,0.009050094,0.01746722,-0.007629283,0.009622458,0.033453025,0.024806954,-0.020483917,-0.015689522,-0.0026412942,-0.037062287,0.000070809074,-0.0016219801,0.047297515,-0.039405618,0.017911645,-0.0081410445,-0.024268257,0.014127304,-0.015245099,-0.04538514,0.00005823599,-0.0006115042,0.034799766,0.031594522,0.022679104,-0.000773113,0.01492188,0.011642569,0.0140464995,0.014437054,-0.03073261,0.011204878,0.0014982484,0.044065338,0.046624143,-0.0022743074,-0.019150645,-0.0034291372,-0.0013618909,0.0023551118,0.058556262,-0.0256554,0.01430238,0.00023041882,-0.008747078,-0.046812687,-0.04902134,0.015931936,0.013285591,-0.026988672,0.05120306,-0.024443334,-0.006706766,-0.0050940444,-0.026598118,-0.0116089,0.018207926,-0.009292507,0.0031732565,-0.04877893,-0.0027136814,-0.047809273,0.017736567,-0.008322854,-0.031998545,0.002700214,0.039890442,0.03145985,-0.038112745,-0.0009848038,0.05211884,0.00971673,-0.036658265,-0.039163202,-0.03509605,0.0145313265,-0.020914875,-0.005646208,-0.020403113,0.014814141,-0.004854998,0.021278495,-0.012571819,-0.021803724,0.035015244,-0.01430238,0.0039257477,0.011278949,-0.01766923,0.0054071615,-0.003318031,-0.032240957,0.038786117,-0.027136814,-0.018787025,0.00030701468,0.0034274536,0.038139682,0.017251741,-0.024685746,0.028470086,-0.002328177,-0.020901406,0.00052312436,0.031432915,0.043418903,-0.0024241323,0.01210046,-0.025668867,-0.016349426,0.034395743,0.027904455,0.012921971,-0.022194277,0.050610494,-0.015177761,-0.019716276,0.007629283,-0.0019948587,0.015945403,-0.013352929,-0.0013147551,0.047917012,0.01533937,0.001168297,0.010289094,0.034072526,0.02083407,0.01912371,0.016080078,-0.01932572,0.0003791915,0.004434142,0.049209885,0.040806226,-0.015393239,-0.000576994,-0.022355886,-0.010342964,0.023244735,0.016457165,0.015554848,0.021399701,-0.026005551,-0.00598626,0.024497204,-0.004747259,-0.02554766,-0.045896903,0.0063768146,0.016335959,-0.0019275218,-0.02041658,-0.03202548,-0.008928887,0.010659448,-0.022423223,-0.006124301,0.009521453,0.0067202332,0.0005900405,0.024968563,-0.0012246919,0.02539952,-0.012450612,0.0072319945,-0.033399154,-0.0014241777,0.011467492,-0.01621475,-0.008706675,-0.030840348,-0.007245462,0.0072656632,0.00213795,0.026598118,0.018733155,-0.026975205,0.008524865,0.024524137,-0.010975932,-0.010652714,0.006026662,-0.007218527,0.033910915,0.020403113,-0.023096593,0.006865008,0.019972157,0.017157469,-0.0017591793,-0.0017473954,0.042799402,-0.033453025,-0.018356068,-0.005242186,0.008895218,0.026988672,0.01020829,0.019837482,0.0036294647,0.024025844,0.0096089905,0.0017154103,0.016107012,-0.0023921472,-0.030786479,0.008329588,-0.0071646576,0.020672461,-0.033506893,0.0003303722,-0.0268944,-0.038031943,0.01062578,-0.00009216753,-0.0055654035,-0.038786117,0.023312071,0.03471896,0.003888712,-0.0041075572,0.016928524,0.011204878,0.006878475,0.009555121,0.012780564,0.022140408,0.0044274083,-0.007393603,-0.021265026,-0.03280659,0.01621475,-0.003203558,0.016982393,0.026288368,-0.05104145,-0.0024527505,0.032321762,0.005535102,0.01943346,-0.038031943,-0.016928524,-0.032510307,0.0158646,0.0021244825,-0.0452774,0.016349426,0.020807136,-0.00090147415,0.014692935,0.024025844,0.0067842035,-0.03735857,-0.014208108,0.03253724,0.009137631,-0.012262069,0.028173804,0.03415333,-0.028981848,0.033129808,-0.0034510216,-0.033587698,0.024402931,0.0053229905,-0.024214387,-0.050287277,-0.0029241096,0.018625416,-0.019716276,-0.0079592345,-0.0043365033,0.041802812,0.017615361,-0.0036361984,0.0048448974,-0.011285682,0.042099096,0.018369535,0.021776788,-0.007811093,0.0103968335,-0.012457347,-0.034584288,-0.027554303,-0.034745894,0.023487149,0.026854,0.027338825,0.0027271488,0.01129915,-0.017278675,0.028685564,0.00152855,-0.00036677625,-0.020201102,-0.030894218,-0.0128277,-0.0036530327,0.07003049,0.0022557897,-0.002878657,0.013184586,0.013790619,0.022571364,0.02280031,0.038328223,0.011070204,0.016120479,-0.0135010695,0.02570927,-0.0043129353,-0.0069424454,0.028362347,0.009218436,-0.036146507,-0.0034459713,0.0000029854493,-0.028901042,-0.0002041153,0.01777697,0.00063801813,0.036254246,-0.009373311,-0.009117431,-0.01008035,0.0030874019,0.01002648,0.016255153,-0.027688976,0.016699577,0.013272124,0.0020133764,0.0029274763,0.00940698,-0.035473134,-0.012356341,0.01155503,-0.0005429046,-0.031136632,-0.036496658,0.0063027437,-0.035230722,0.0060199285,-0.0031816736,-0.0059525915,-0.01912371,-0.0058785207,-0.042449247,-0.014315847,0.032321762,0.025022432,-0.0029863962,0.032860458,-0.013884891,0.011056736,0.019150645,-0.012248602,0.010888394,0.0024679012,0.010901862,0.025924748,0.029816827,0.010221758,0.032375634,-0.013359662,-0.001124528,-0.005875154,0.0012406843,0.01435625,-0.010821057,-0.004514946,-0.018827427,-0.005898722,0.021184223,0.026342237,0.010948997,-0.022611767,0.012538151,-0.008262251,0.0041546933,0.010437236,0.041991357,-0.039890442,0.025534192,0.016120479,-0.04867119,-0.028389283,0.031298243,-0.0005433255,-0.02156131,0.025870878,0.021426635,-0.016672643,0.00015455947,-0.020093363,0.006831339,-0.0075888806,0.011292416,0.014585196,0.00082066975,0.021749852,0.021763321,0.02047045,0.0063094776,-0.034314938,0.01927185,-0.03315674,-0.01357514,0.016968926,-0.04861732,0.0035789618,-0.0060704313,-0.009373311,0.0041984622,0.015770327,0.005737113,0.017588425,-0.067875706,0.031890806,0.011110606,-0.004929069,-0.027271487,0.020201102,0.035984896,0.0019039538,-0.012006188,0.0009873288,-0.004023386,-0.0031581055,-0.00989854,-0.000013927713,-0.022046136,-0.021776788,-0.0065619913,0.017332546,-0.020403113,-0.018019384,-0.045627557,0.017871242,-0.00006523272,0.005019974,-0.0072791306,0.023864236,-0.030490197,0.0031210703,0.025197508,-0.026719324,-0.034288004,-0.011602166,-0.03773566,0.024833888,-0.003999818,0.017009327,0.038732246,-0.01704973,0.0059256568,-0.0033264481,-0.03913627,-0.025076302,-0.010329497,0.019864418,-0.016241686,0.03218709,-0.018638883,-0.011400155,0.045331273,-0.009736931,-0.0064003826,-0.021534374,-0.0020571456,-0.031432915,0.005710178,-0.0076966197,-0.006636062,-0.0012196415,0.016295556,-0.03819355,0.011056736,0.0045923837,-0.02461841,0.001967924,0.013346194,-0.01228227,0.012491015,-0.018975569,-0.018383002,-0.05456991,-0.019096775,-0.0017928478,-0.041641206,-0.013022977,-0.012841167,-0.02227508,0.01621475,0.029278131,-0.012066792,-0.003804541,0.028173804,-0.018019384,0.019096775,-0.0054643983,0.036496658,0.031109696,-0.0000042250026,0.00268843,0.0109894,-0.0010740253,-0.006656263,0.013480869,0.0051883166,-0.0048650987,0.03135211,0.020322308,-0.0020066428,0.011837846,0.014571728,0.007393603,-0.0022069705,0.006181537,0.011999454,-0.022059603,-0.015931936,0.025008963,0.0022002368,0.007992903,-0.023392877,0.03679294,0.028497022,0.0029325266,-0.010827791,-0.03690068,0.028012196,0.02803913,-0.03711616,0.008868284,-0.007198326,-0.017642295,0.0061142,0.005716912,-0.015325903,-0.01735948,0.059094958,-0.013743483,0.020133765,-0.01730561,-0.025857411,-0.030813415,0.0085787345,-0.004434142,-0.028739434,-0.0052320855,0.015837664,-0.003908913,0.009514719,0.0110634705,-0.0028130035,0.024241323,0.0071848584,0.016968926,-0.013898358,-0.01932572,-0.004205196,-0.0038988127,-0.016888121,0.0062286733,0.008558533,-0.034288004,0.030948088,-0.021318896,-0.007939033,-0.04015979,0.033210613,0.0003909755,-0.012942173,0.0031614725,-0.03725083,0.0057438468,-0.025224444,-0.013157651,-0.0019561402,0.01173684,0.008343055,0.009864871,0.0138040865,0.02430866,-0.03700842,-0.024537604,-0.01179071,0.007824561,-0.010975932,0.0021345832,-0.018221393,-0.009683061,0.03191774,0.005716912,-0.0026295101,-0.0021396333,-0.041964423,-0.01241021,0.019204514,0.001912371,-0.043445837,-0.003274262,0.014760272,0.0013913509,-0.013777152,-0.017709633,0.022032669,0.016645707,-0.027042542,-0.031540655,-0.002336594,0.033937853,0.0041479594,0.002070613,0.000355834,0.020753266,0.02300232,0.0052489196,0.0238373,0.047405254,-0.018611949,0.04059075,0.03937868,0.012349607,-0.015891533,0.037439376,0.023621822,-0.038624506,0.027298423,0.012928706,-0.015649121,0.015043087,-0.012309205,0.0018366169,0.03539233,0.005450931,-0.038678378,0.0207802,-0.0385437,0.0058886213,-0.014814141,-0.0015209747,0.013911826,0.00004255909,-0.028927978,0.008154511,-0.027271487,0.023433277,0.015622186,0.013002776,-0.030409392,-0.057694346,0.015649121,0.051068384,-0.02181719,0.023958506,-0.007561946,0.0034981575,0.011225079,0.0047607264,-0.009218436,0.021520907,0.03948642,-0.01131935,0.0025167207,0.012383276,0.018059785,-0.05298076,-0.03913627,-0.004632786,-0.03959416,-0.032348696,0.018787025,-0.012235134,-0.028389283,-0.014639066,-0.012618955,-0.009326176,0.004134492,-0.031783067,-0.0047506257,0.035365395,-0.007676419,0.0059896265,0.0042792666,-0.0019662406]},{"id":"guide-gifs-2","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Tenor URL in an embed\nTenor page URLs do not work as setImage() URLs. Use resolveTenorToImageUrl() to fetch the Tenor page or oEmbed, derive the GIF URL (embeds require GIF, not MP4), and return { url, flags: IS_ANIMATED }. For full gifv embeds, send the Tenor URL as content.\n\n```javascript\nimport { EmbedBuilder, resolveTenorToImageUrl } from '@fluxerjs/core';\n\nconst tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\nconst media = await resolveTenorToImageUrl(tenorUrl);\nif (media) {\n const embed = new EmbedBuilder()\n .setTitle('Tenor in embed')\n .setDescription('GIF URL + IS_ANIMATED flag')\n .setImage(media)\n .setColor(0x5865f2);\n await message.reply({ embeds: [embed] });\n}\n```","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.055804763,0.01902092,-0.03323629,-0.010284129,0.017586803,-0.022958452,-0.0187819,-0.008397132,0.0030207662,-0.010497988,0.005827673,-0.030695137,0.032858893,-0.077341676,-0.010976027,0.050269574,-0.015989147,-0.0012265474,-0.005286734,0.060685795,0.020165699,-0.020467617,-0.020794697,0.054446127,-0.026669545,0.031550575,-0.010869097,0.03366401,0.04699878,0.035727125,-0.0010095428,-0.018756742,0.0376896,-0.05333909,-0.007856194,0.0284559,0.03899792,0.0075857244,-0.026996624,0.012774963,0.059880674,0.020039897,0.013359932,0.01441665,0.030594496,0.008655022,0.0005582363,-0.011139567,0.011837755,0.03245633,0.005120049,-0.01923478,-0.030871255,0.017901303,-0.0390734,0.008579542,-0.070498176,-0.0064598164,0.004242596,0.00015960842,0.01451729,-0.021260155,-0.025990225,-0.025650566,0.020568257,0.0566602,-0.032078933,0.06481203,-0.011240207,-0.012101934,0.055402204,-0.017674863,0.061541233,-0.00013110692,-0.020480197,0.0015158869,0.015158868,0.027424343,0.0011785863,-0.06783122,0.02371325,-0.010516858,-0.077945516,0.0001270774,-0.040255915,0.020694057,-0.06310115,-0.041262314,-0.015649488,0.012693194,-0.04428151,-0.015284668,-0.07668752,0.0029704464,-0.014882109,-0.013649272,-0.015322408,0.024858028,0.0147059895,0.0284559,0.08509094,-0.031475093,-0.06244699,0.01412731,0.0040853466,-0.050873414,-0.008812272,0.0036293224,-0.025663147,0.0023430202,-0.046193663,-0.044507947,0.007698944,0.042570632,0.05318813,-0.03396593,-0.009164511,0.017121345,-0.020039897,-0.015888507,-0.08182015,0.0012784399,0.08559414,0.018454822,0.00466088,-0.008170693,-0.008975811,0.010139459,-0.039752718,-0.013410252,0.016215587,-0.031399615,0.0073529948,-0.021977214,-0.024669329,-0.041513912,-0.029311338,0.0049439296,-0.018958021,0.042319033,0.0011974563,-0.01885738,0.026417945,-0.0060226624,-0.0058654128,0.018090002,-0.046017542,0.008988392,-0.035576165,0.011995005,-0.025512187,-0.013246712,-0.018656101,-0.015184028,-0.07039753,-0.05213141,-0.017964203,-0.020140538,-0.045061465,-0.045891743,0.022983612,-0.0072712246,0.035752285,0.0020175134,-0.026820503,0.03698512,0.052030772,-0.027751422,-0.0015717105,0.046420105,-0.02411581,-0.0125296535,-0.02863202,0.037060603,0.027374024,-0.0006946504,-0.0021543205,-0.007648624,0.040029477,0.04845806,-0.0020835581,0.06546618,-0.040658474,-0.020668898,-0.027675942,0.015209189,-0.0053464887,0.036079366,0.027474662,-0.019335419,-0.03202861,-0.01883222,0.049288336,0.029009419,-0.03884696,0.003909227,0.039400477,0.012611424,0.06692546,0.011460356,0.01929768,0.03306017,0.023021352,0.014215371,-0.029487459,0.006566746,-0.016907485,-0.015699808,-0.046973623,0.028078502,0.041715194,0.02402775,-0.021373376,-0.025864426,-0.03786572,0.024367409,0.0008051183,-0.0061327373,-0.022895552,0.045992386,-0.059930995,0.030166777,0.0074599246,0.00973061,0.02387679,0.025210267,-0.0040822015,-0.008233593,-0.00945385,0.022933291,0.017523903,-0.03711092,-0.046042703,-0.006230232,0.008699052,0.004846435,-0.009957049,-0.020027319,0.017800663,0.00467975,-0.022920713,0.0017486163,0.015523688,-0.011888076,-0.021775935,-0.004236306,-0.015838187,-0.05786788,0.046394944,0.07261161,0.023625191,0.008397132,0.01430343,-0.004380976,0.023461651,-0.046822663,-0.032380853,0.026090866,-0.02454353,-0.022681693,0.040708795,0.006223942,-0.026367625,-0.035551004,-0.02383905,-0.020178277,-0.020165699,0.00058929314,0.015938826,-0.003871487,0.016504925,-0.000541332,-0.035450365,0.027499823,-0.013573792,0.058622677,0.035223927,0.020266337,-0.041966792,0.002849364,-0.0036450473,-0.049690895,-0.015196608,0.0034186079,-0.049942497,0.0014010946,-0.02344907,-0.0037834272,0.007220905,0.031475093,0.031475093,0.015800446,0.045338225,0.0035444077,-0.0050854543,0.08106535,0.026417945,-0.003928097,0.028581701,-0.012957373,-0.05349005,-0.059629075,0.017045865,-0.0023603176,0.01918446,0.039828196,-0.020933077,0.029537778,0.051024374,0.0059314575,-0.013045433,-0.009214831,-0.018605782,0.038519878,-0.016832005,0.029713899,0.021033715,0.010441378,0.011158437,-0.034846526,0.037362523,0.012800124,-0.008780821,-0.003868342,-0.01943606,-0.022782333,0.004160826,0.0018272412,0.0088311415,-0.01864352,0.00982496,-0.016970385,0.004000432,0.02855654,0.015246928,0.0011259076,-0.033261452,-0.027097264,0.0031968858,0.032431174,-0.01416505,-0.015158868,0.017599383,-0.016580405,-0.0050036847,0.031676374,0.005730178,0.001880706,-0.010957157,-0.061641872,-0.008397132,0.03758896,0.0005625607,0.016932644,0.010887967,0.019612178,0.015121128,-0.032707933,-0.04798002,0.0035098128,-0.039903678,-0.0040822015,-0.018027103,0.017259724,-0.007831033,0.011925815,-0.016743945,0.046017542,0.049917337,-0.011403746,-0.0064723967,0.08388326,0.016253326,0.008271333,-0.017221984,-0.02448063,0.010189779,-0.023486812,-0.0065038465,0.02372583,-0.016844586,0.022518152,-0.011108117,-0.027701102,-0.01447955,-0.02913522,0.041362952,0.012699484,-0.027298544,0.035425205,0.03202861,0.00955449,-0.07834808,0.0005263933,0.032531813,0.015121128,0.045363385,0.036758684,0.004324366,-0.0010260541,0.008114083,0.007774424,-0.031575736,0.008661312,0.033135653,-0.036783844,0.030896416,-0.0014231096,-0.025726046,-0.0383186,-0.01937316,-0.04735102,0.011441486,-0.008887751,0.005808803,0.011554706,0.020354398,-0.051024374,0.020819856,0.050370216,-0.06717706,-0.021989794,0.0041922764,-0.023121992,-0.026367625,-0.021297896,0.013825391,-0.01949896,0.02888362,-0.01405183,-0.04350155,-0.0035601326,0.001535543,0.034443967,-0.016328806,0.017259724,0.022656532,-0.011126987,0.031902812,0.012057905,-0.011642765,0.008397132,0.032380853,-0.011340846,-0.031701535,0.01434117,-0.009095321,0.012278054,0.0066673863,-0.015473368,-0.0055005937,0.02372583,-0.017700024,-0.021801094,0.0010056116,0.053791966,-0.022165913,0.027776582,0.030317737,-0.032406013,-0.032104094,0.013183813,0.002624497,0.0050288443,0.01427827,-0.04803034,-0.018429661,-0.017335204,0.030544177,-0.04299835,-0.018303862,0.04191647,-0.04896126,-0.0040444615,0.0020442458,-0.024983827,0.0069944654,-0.06762994,0.0183416,-0.040708795,0.011177307,-0.03293437,-0.047401343,-0.042419672,-0.044809867,0.10033787,0.023021352,-0.07034721,0.022845233,-0.041312635,-0.027147584,-0.017196825,-0.000949788,-0.013699591,0.010592338,0.011215047,-0.045086626,-0.058169797,0.009051291,-0.039224356,0.006274262,0.051502414,-0.05660988,0.02928618,0.042721592,0.0068183457,0.026392786,0.014806629,0.0031670083,0.030745456,0.010296709,-0.018681262,-0.032355692,0.0189077,-0.014076991,0.039224356,-0.02888362,0.05213141,-0.023071673,-0.012749803,-0.025159948,-0.0039186617,0.002111863,-0.03336209,-0.01431601,0.021461435,0.02337359,-0.035047807,-0.02878298,-0.027977861,0.017385524,-0.028229462,0.017284883,-0.0068749557,-0.021511756,0.034318168,-0.041740354,0.018278701,-0.031424776,-0.0657681,0.0059314575,0.010548308,0.010831357,0.038696,-0.045262747,-0.00478668,-0.007818454,-0.0065541663,-0.018064842,0.0014506283,0.04330027,-0.05318813,0.0066862563,0.003896647,-0.0011982425,0.0094035305,0.023272952,-0.0028383567,0.0001114507,0.010265258,0.030695137,-0.012661744,0.008007153,0.007994574,-0.017662283,0.026241826,0.008629862,0.03308533,-0.024908349,-0.025097048,0.009881569,-0.029588098,0.020719217,0.045715626,0.02802818,-0.0030773762,-0.02787722,0.015372728,-0.00122812,-0.00089946814,-0.027726263,-0.025436707,0.005613813,-0.024681909,-0.017939042,-0.0017706313,-0.02399001,0.024493208,0.017461004,-0.0040633315,0.03351305,0.027298544,0.011705666,-0.024858028,0.003896647,-0.020014739,0.0017800663,-0.015951406,-0.02407807,0.013146073,0.030418377,-0.044029906,-0.019561859,0.007686364,0.020656317,-0.0040822015,0.040482357,0.014680829,-0.0058842828,-0.029512618,-0.013749911,0.008076343,-0.024795128,-0.052936528,-0.030116457,0.011944685,-0.007503954,0.036280643,0.0006604486,0.029084899,0.010328159,-0.02382647,0.030971896,0.010007369,-0.036406443,0.017850982,0.00040137977,-0.021474015,-0.000061573075,-0.016077206,0.01943606,-0.00965513,0.023247791,-0.011454066,0.000639613,-0.04835742,-0.011303106,-0.026543744,-0.0074599246,-0.035878085,0.02366293,-0.005189239,0.030493855,0.012624004,-0.026543744,0.015196608,0.0012320512,0.016970385,-0.0378154,-0.0008876744,-0.026216665,-0.0014655669,-0.0017486163,-0.0476781,0.016832005,0.007981993,-0.047376182,0.002715702,-0.07568112,0.04385379,-0.022228813,0.003115116,-0.00963626,0.012919633,-0.051351454,0.008686472,-0.008818561,-0.00951675,-0.03358853,-0.035249088,0.00942869,0.006126447,0.03338725,-0.012366114,0.058773637,-0.027072104,0.021536915,-0.04372799,0.030267417,0.0073592844,0.012026455,0.03695996,-0.040532675,0.0077492637,0.013108333,-0.0070133354,-0.00954191,0.011126987,-0.0028760964,-0.031902812,-0.022367192,0.051225655,0.023323271,0.0062994217,0.00467346,0.013058012,-0.0073844446,-0.0004941571,0.017989362,-0.036054205,-0.012932213,-0.014844369,-0.021486595,-0.040985554,0.031978294,-0.00021543205,0.01419021,0.0054376936,0.043627348,-0.008403422,-0.04176551,-0.02392711,-0.035249088,0.0005429045,0.0288333,-0.011523256,0.010063979,0.022581052,0.036205165,0.009265151,-0.012812703,0.0106615275,-0.032380853,0.01907124,-0.013787651,-0.04808066,-0.0027990441,0.020731797,0.006315147,-0.010743298,0.011749695,0.020253757,-0.017825823,0.016580405,-0.06682482,0.022216234,0.003880922,0.012183704,-0.008699052,-0.008592122,-0.009038711,0.0014207507,0.018379342,0.000021425269,-0.0064598164,0.02415355,0.0064189318,-0.03411689,-0.012007585,-0.013573792,-0.0039312416,0.009107901,0.00044108534,0.003361998,-0.029739058,-0.026040545,0.031777013,-0.017398104,0.0118063055,0.026116025,-0.0029295613,0.018178063,-0.025235428,0.0055886535,0.00932176,-0.023159731,0.005170369,-0.0030254836,0.013120913,-0.02314715,-0.0069755954,0.0017438988,0.0045822556,-0.025751207,0.037211563,-0.0065038465,-0.050772775,0.022857813,0.007906513,0.0075857244,-0.056006044,0.011089247,-0.0077870036,-0.007170585,0.016052047,0.0039847065,-0.007893934,-0.027449504,-0.0147437295,-0.0069189854,-0.045237586,0.005447129,0.017284883,-0.044231188,-0.007774424,0.027650783,-0.006654806,-0.077643596,-0.034846526,0.045011148,-0.036607724,-0.036658045,0.004475326,0.008617282,0.020995976,0.045665305,0.007573144,-0.00952933,-0.0016951514,0.024442889,-0.008755662,0.0292107,0.021574656,0.009107901,-0.018127741,0.015888507,-0.0068497956,-0.050772775,-0.0015300394,0.04430667,0.0117685655,0.014655669,0.010843937,0.016668465,-0.002715702,0.025310908,-0.029311338,0.020392137,-0.0023603176,0.035626486,0.0051672244,0.022794912,-0.023210052,0.030695137,-0.020706637,0.02396485,0.021851415,0.015611747,-0.015297248,0.006050967,-0.050848253,0.008416003,0.04865934,0.020920496,-0.00479926,-0.020895336,-0.008114083,0.0064157867,0.019788299,-0.011579866,0.018291282,0.020706637,0.024845447,-0.03836892,-0.012473044,-0.00932176,-0.027197903,-0.0050068297,0.005815093,0.046218824,-0.04287255,0.030141616,-0.006214507,-0.021021137,-0.0055351886,-0.020140538,-0.044658907,0.004745795,-0.009000971,0.03877148,0.020165699,0.011472936,0.015838187,0.010416218,0.0133725125,0.012189995,0.023612611,-0.041614555,0.0147437295,0.009114191,0.054949325,0.026594065,-0.009328051,-0.016630726,0.009019841,0.0012540661,0.0022738304,0.046822663,-0.02385163,0.0031072535,0.011265366,-0.0025820397,-0.04659622,-0.019838618,0.01892028,0.01957444,-0.017234564,0.05575444,-0.023247791,-0.013208972,-0.013837971,-0.026770184,-0.03454461,0.009296601,-0.003093101,0.011649055,-0.04179067,-0.007007045,-0.032682773,0.012869313,-0.012026455,-0.024769967,0.0010339166,0.021901734,0.016265906,-0.023084251,-0.0027172742,0.054546766,0.008642442,-0.04395443,-0.029411979,-0.0192222,0.011064087,-0.017599383,-0.009378371,-0.00927773,0.011252787,-0.008428582,0.026367625,-0.012787543,-0.030342897,0.017813243,-0.020329237,0.03290921,0.02848106,-0.019800879,0.007189455,-0.0015347567,-0.04264611,0.027197903,-0.03288405,-0.025424127,0.017838404,-0.021411115,0.045464024,0.011649055,-0.019914098,0.04219323,0.0030506437,-0.02913522,0.0060132276,0.03436849,0.03424269,-0.0060006473,-0.005324474,-0.025663147,-0.029764218,0.014806629,0.015334988,0.004352671,-0.02838042,0.05125081,-0.01885738,-0.011038927,-0.0073718647,0.00050044706,0.017008124,-0.019800879,-0.0031072535,0.050948896,0.004236306,0.013498312,0.0022848377,0.030267417,0.021662714,0.039652076,0.0058748475,-0.017926462,0.027751422,-0.0064535267,0.03814248,0.05208109,-0.040054638,0.0011927388,-0.015498527,-0.009126771,0.013158653,0.013045433,-0.00023705389,0.028053341,-0.009969629,0.0018036538,0.013045433,0.005079164,-0.02445547,-0.027474662,0.010315578,0.017058445,-0.026971463,-0.022367192,-0.024832869,-0.019700238,0.0011156864,-0.002256533,-0.012296924,0.011089247,0.019624759,0.0056075235,0.027273383,0.0019671933,0.034922007,-0.011366006,0.01892028,-0.023386171,-0.012510784,0.019687658,-0.00481184,-0.0037142374,-0.013624111,-0.01446697,-0.004777245,-0.0050099744,0.016316226,0.016492346,-0.015259508,0.008195853,0.031751852,-0.003064796,-0.020719217,0.0136366915,-0.011900655,0.034142047,0.040834595,-0.036934804,-0.0009450705,0.039325,0.015976567,0.0287075,0.008931781,0.0196625,-0.04342607,-0.02360003,-0.008447452,0.013246712,0.017674863,0.014542449,0.02381389,-0.0070322054,0.013825391,0.009114191,-0.000019865056,0.025487026,0.0028540816,-0.03248149,-0.0059188777,-0.011057797,0.0070573655,-0.022945872,0.003133986,-0.02400259,-0.03306017,0.013158653,0.0000012254418,-0.0064535267,-0.04254547,0.02390195,0.04163971,0.004292916,-0.0018382487,0.0081077935,0.010277838,-0.014882109,0.016467186,-0.0045791105,0.032003455,0.013460572,-0.013875711,-0.035324566,-0.029437138,0.017146504,-0.021197256,0.01397635,0.034469128,-0.04397959,-0.008447452,0.046369784,0.01942348,0.0149324285,-0.03341241,-0.016618146,-0.04370283,0.021436276,0.0005802513,-0.040985554,0.005079164,0.032406013,0.0056169583,0.0074662142,0.022492994,0.0016243891,-0.034922007,-0.031148015,0.035903245,0.021121776,-0.0073781544,0.03341241,0.024757389,-0.020077638,0.032707933,-0.012441594,-0.036079366,0.03874632,0.0008570107,-0.00034496648,-0.049187697,-0.00042221538,0.00023096046,-0.0096299695,-0.00965513,-0.01463051,0.039576598,0.027248222,-0.01439149,0.00928402,-0.02405291,0.036280643,0.011705666,0.0035255377,0.0024703923,0.029361658,-0.012403854,-0.036330964,-0.0074599246,-0.035626486,0.020052478,-0.0002234911,0.0049879597,0.010976027,0.0074158944,-0.004255176,0.00924628,-0.0035035226,0.0020049333,-0.020945657,-0.008026023,-0.00986899,0.014869529,0.053641006,0.00061012874,0.0013059585,0.0038935018,-0.004456456,0.017637122,0.029084899,0.048986416,0.009774639,0.012435304,-0.021562075,0.020228598,0.0009930317,-0.0091708,0.021763355,0.016932644,-0.034318168,0.019914098,0.0011581439,-0.0059314575,-0.008881462,0.00943498,-0.010277838,0.041513912,-0.009063871,0.00467346,-0.005431404,0.017435843,0.013007693,0.011510676,-0.027248222,0.0028981115,0.024644168,0.003906082,-0.011498096,0.011428907,-0.045866583,-0.003327403,0.006843506,-0.0064786864,-0.0031921684,-0.02863202,-0.012045325,-0.029638419,0.015108548,-0.014542449,0.0014907268,-0.018656101,0.004239451,-0.026946304,-0.0032456333,0.035551004,0.018366762,-0.0017690588,0.022832653,-0.006736576,0.011303106,0.009485301,0.00059047254,0.01855546,0.007554274,0.022342034,-0.003336838,0.024417728,0.010133169,0.026468264,0.007654914,-0.00009110653,-0.011711956,-0.013523472,0.007969413,-0.0034343328,-0.004223726,-0.0124919135,-0.005771063,0.021738194,0.017687444,0.015800446,-0.027575303,0.018115163,0.0011628614,-0.011366006,0.015737547,0.020895336,-0.054395806,0.034620088,0.027801743,-0.052030772,-0.028128821,0.045464024,-0.0071454253,-0.029613258,0.011359716,0.025549926,-0.003402883,-0.0044784704,-0.017146504,0.0073844446,0.0040884917,0.017549064,0.0040538968,-0.010655237,0.0035444077,0.03308533,0.020253757,0.004726925,-0.035299405,0.011535836,-0.028506221,-0.0149324285,0.029638419,-0.03389045,-0.0037393973,0.008032314,-0.016794264,0.020580838,0.018656101,0.0070133354,0.014869529,-0.06194379,0.016995544,0.021914314,-0.008252462,-0.022593632,0.040759116,0.040884916,0.00087509444,-0.002972019,-0.0020253758,-0.006768026,0.01440407,-0.010076559,0.0025631697,-0.018807061,-0.025323488,0.0051043243,0.030468697,-0.023021352,-0.01907124,-0.059025235,0.031852495,-0.00038703074,0.0037393973,0.01393861,0.040130116,-0.0197254,-0.004201711,0.023411332,-0.046671703,-0.016467186,-0.0031166885,-0.030820936,0.029009419,-0.0068686656,0.009151931,0.01444181,-0.011139567,0.005242704,-0.0070573655,-0.039123718,-0.029839698,-0.011579866,0.0002415748,-0.007503954,0.045212425,-0.008283913,-0.029437138,0.04777874,-0.00974948,0.0027786016,-0.016806845,0.0050194096,-0.029386818,0.019712819,-0.005727033,-0.008529223,0.015888507,0.016844586,-0.03836892,0.013850551,0.02440515,-0.018027103,-0.017762924,0.0037425421,0.0014608494,0.032204732,-0.0037456872,-0.0196625,-0.04850838,-0.015397888,0.0020819856,-0.05152757,-0.02787722,-0.021952054,-0.0025270022,0.008862591,0.017951623,0.010114299,0.0030915285,0.030292576,-0.00032609652,0.013058012,-0.00088059815,0.015334988,0.017800663,0.009774639,0.0012171124,0.010875387,0.0058056577,-0.006324582,0.011051507,-0.0010299854,0.008787111,0.03766444,0.011183596,-0.013083173,-0.0063182916,0.0006313574,0.012359824,-0.010504278,-0.000063489555,-0.000829492,-0.040004317,-0.015284668,0.030971896,-0.0022754027,0.00966142,-0.027298544,0.035475526,0.032808572,-0.013183813,-0.02893394,-0.031097695,0.015951406,0.025298327,-0.035676807,0.016404286,0.004352671,-0.006277407,0.0195367,0.006566746,-0.011246497,-0.011397456,0.040884916,-0.028229462,0.0023917675,-0.020568257,-0.018077422,-0.041589394,0.031978294,-0.018542882,0.0007642334,0.00958594,-0.005944038,-0.0046105604,0.0020929931,0.022115594,0.000990673,0.009674,-0.0022109305,-0.00022014954,0.0045445156,-0.009057581,0.0045256456,0.027072104,-0.025914745,0.013410252,0.013900871,-0.005333909,0.024417728,-0.0023508826,0.0028194867,-0.017171664,0.021398535,0.004160826,-0.020392137,0.0025049872,-0.036532246,-0.012422724,-0.040658474,-0.028204301,0.0058779926,0.0035695676,0.0051106145,0.010573468,0.005318184,-0.010485408,-0.042721592,-0.021587236,-0.01427827,0.00946014,-0.017196825,-0.015372728,-0.02366293,-0.015611747,0.000055184806,0.007774424,-0.015511108,0.0040664766,-0.03758896,-0.032053772,0.03333693,0.0036010174,-0.05228237,-0.0033965928,0.0020143683,0.0045162104,-0.006988175,-0.0074473443,0.0054439837,0.004336946,-0.010535728,-0.022908133,-0.00083971326,0.0106237875,-0.004619995,-0.007654914,0.01416505,0.021260155,0.014945009,0.016404286,0.019612178,0.03784056,-0.0095482,0.03683416,0.025889587,0.0063528866,-0.010674108,0.04337575,0.025008988,-0.036356125,0.023121992,-0.0018036538,-0.0029641562,0.01879448,-0.027348863,0.013963771,0.023335852,0.0016291066,-0.03796636,0.007988283,-0.027449504,0.021046296,-0.015284668,0.0104728285,0.021926895,-0.0021354505,-0.03338725,-0.0006816773,-0.022882972,0.031173175,0.012227735,0.018215802,-0.02890878,-0.06345339,0.016945224,0.059729714,-0.01401409,0.020467617,-0.0018413936,0.0063591767,0.002934279,0.002184198,-0.021939475,0.024631588,0.050571494,-0.0025553072,0.0064535267,0.0042300164,-0.0011660063,-0.045665305,-0.025008988,-0.0064912667,-0.017939042,-0.026241826,0.008214723,0.00038270638,-0.025373807,-0.008315363,-0.002558452,0.006736576,0.017033285,-0.044684067,-0.0060006473,0.020543097,-0.013183813,0.009045001,0.0010590765,0.0006517999]},{"id":"guide-gifs-3","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Important\nCustom embeds cannot create gifv embeds. For full animated gifv, send the Tenor URL as content. resolveTenorToImageUrl() returns GIF URL + IS_ANIMATED (derived from media.tenor.com path).","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.03045558,0.044843215,-0.0003956682,-0.0045781825,-0.0034754805,-0.04001233,0.0027091682,-0.012372579,-0.012471035,-0.012405398,-0.0051721977,-0.015372192,0.005303472,-0.07529879,-0.0053330082,0.03389496,0.00015475981,0.009563315,0.017013118,0.06479687,0.03890963,-0.003987449,-0.013875668,0.045210782,-0.02762006,0.028013883,-0.018562151,-0.003938222,0.064166754,0.033711176,-0.0207413,-0.013521228,0.036966775,-0.05870576,-0.0062814634,0.042086463,0.021135123,0.013442463,-0.016684933,0.014440146,0.06663471,0.03182083,0.015962925,0.009917755,0.02544091,0.014610802,0.0074235476,-0.0046339743,-0.008657523,0.026504232,0.023537438,-0.00983899,-0.0289328,0.017827017,-0.0414826,0.020767555,-0.063116565,-0.00817181,-0.00060591183,-0.020426244,-0.008145555,-0.02362933,-0.0038496116,-0.026622377,0.01411196,0.042821597,-0.059335873,0.06894513,-0.008998836,-0.050619274,0.04731117,-0.008244011,0.010961384,0.004033395,-0.023655584,-0.0058220043,0.0054642824,0.022881068,-0.007928953,-0.05250962,0.005355981,0.0056579118,-0.08401539,0.0032966197,-0.050934333,-0.0096355155,-0.05161696,-0.04250654,-0.014558293,0.0018739371,-0.052194566,-0.031400755,-0.065952085,0.024968324,-0.005099997,-0.031427007,-0.017511958,0.028197667,0.02712122,0.03541774,0.057603054,-0.030796893,-0.042427775,0.02407566,-0.00044633177,-0.04072121,-0.014138215,0.010127793,-0.04458067,0.0010272195,-0.060596105,-0.051039353,-0.0044469084,0.036100365,0.061698806,-0.032450948,0.02316987,0.004197488,-0.018247094,-0.04203395,-0.06322158,0.00095912104,0.06757988,-0.033474885,0.0034590713,-0.0061501893,-0.02139767,0.029274113,-0.028118903,-0.012740147,0.016212346,-0.013422772,0.021371417,-0.028355196,-0.01386254,-0.04269032,-0.049043987,0.026162919,-0.03678299,0.053979892,0.022355972,0.006885324,0.011493043,0.0117359,0.0054938192,0.015569103,-0.04912275,0.0058515407,-0.028722763,-0.0021397672,-0.039224688,-0.002564767,-0.020977594,-0.028460214,-0.08012968,-0.039802294,-0.022500373,-0.020465625,-0.03465635,-0.027305003,0.009123547,-0.03809573,0.019533578,0.0017918908,-0.03733434,0.019166011,0.058548227,-0.025217745,-0.019244777,0.035050172,-0.025467167,-0.018142074,-0.041272562,0.04720615,0.01948107,0.0035706542,0.0026189173,-0.004266407,0.033422373,0.03344863,0.012897676,0.081022345,-0.060491085,-0.020701919,-0.031400755,0.03780693,0.020675663,0.028565234,0.026688015,-0.042427775,-0.026399212,-0.02717373,0.02909033,0.030035503,-0.04513202,-0.012411961,0.029772956,-0.0071806908,0.06637216,0.00097306893,0.03476137,0.017984545,0.016383002,0.024220062,-0.047179896,0.012431653,0.007843625,0.00028941827,-0.038410787,0.005520074,0.047337424,-0.007909262,-0.006445556,-0.007371038,-0.04486947,0.022447864,-0.004899804,-0.008946327,-0.0035805,0.06731734,-0.06096367,0.019638598,0.011368333,0.0140463235,0.029064076,0.03234593,-0.00547741,-0.019310413,-0.013147096,0.04901773,0.030586854,-0.044711944,-0.025900371,-0.020111185,-0.006780305,0.0062387995,0.0039447853,-0.018115819,0.010626635,0.01320617,-0.021581454,0.034787625,0.01634362,0.0081193,-0.014597675,-0.020426244,-0.01196563,-0.04203395,0.03596909,0.052982207,0.027908863,-0.005582429,0.01664555,-0.0021233577,0.014085706,-0.054925065,-0.028880293,0.033396117,-0.011676827,-0.020623153,0.0368355,0.0031965233,-0.021647092,-0.030980676,-0.017590724,-0.020413116,-0.01618609,-0.0010969588,0.023235507,0.025427785,0.007266019,0.001325868,0.0009427118,0.018299604,-0.021187631,0.06973278,0.035837818,0.022185314,-0.030429326,0.0018509642,-0.023314271,-0.039145924,-0.016146708,-0.019100375,-0.036861755,-0.0028863882,-0.023445547,-0.0037183375,-0.011762155,-0.0032375464,0.035942838,0.014860223,0.018575279,0.0035739362,-0.025388403,0.081494935,-0.008027408,0.021542072,0.030586854,-0.02924786,-0.046024684,-0.06369417,0.0038364842,0.014663312,0.024351336,0.04825634,-0.042427775,0.04355673,0.026989946,0.012182232,-0.001168339,-0.0041777967,-0.029589172,0.037229322,-0.0130158225,0.01973049,0.019966783,-0.022789177,0.013678757,-0.031899594,0.023813114,0.018942846,0.017380685,-0.00015947747,-0.037623145,-0.03182083,-0.0025253845,0.008860999,0.036205385,-0.017590724,-0.0063306913,-0.0036034728,0.019310413,0.024902688,0.0009919396,-0.025125854,-0.026884926,-0.035155192,-0.016973736,0.03182083,-0.041325074,-0.03830577,-0.0045617735,-0.00094107084,-0.015477211,0.029562917,-0.0029520253,0.008480304,-0.0048210397,-0.05392738,0.00076713273,0.023432419,-0.02373435,0.034157507,0.010042465,0.005454437,0.012070649,-0.034131255,-0.026701143,0.04269032,-0.040143605,-0.013678757,-0.014125088,0.015306555,0.00030480194,0.026084155,-0.05295595,0.03536523,0.052588385,0.0039776037,-0.008335902,0.077346675,-0.00882818,-0.01386254,-0.01522779,-0.032083377,0.021528944,-0.0064816563,-0.0060287607,0.0016351824,-0.020911956,0.008867563,0.012274124,0.0023432418,0.0009180979,-0.02393126,0.034813877,0.0215552,-0.0140331965,0.04290036,0.027462533,0.011598063,-0.06143626,0.019796127,0.045473333,0.025585312,0.04812507,0.026084155,0.010081847,0.01345559,0.010364086,-0.002515539,-0.06815749,-0.008309647,0.009090728,-0.0250996,0.024718905,0.026793035,-0.0066424673,-0.029457897,-0.012280688,-0.056237806,0.006905015,-0.02772508,0.01315366,0.009596134,-0.005178761,-0.034918897,0.022290334,0.05119688,-0.08763856,-0.02352431,0.0035575267,-0.038725846,-0.027410023,-0.03197836,0.03116446,0.018837826,0.02109574,-0.016829334,-0.023996897,0.026071027,-0.0048046303,0.032976042,-0.028355196,-0.00006358587,0.027305003,-0.016251728,0.056605373,0.027094964,-0.03368492,-0.012070649,0.027856354,-0.01060038,-0.016120454,-0.006622776,-0.019467942,-0.0004188463,0.0057268306,-0.0038233567,0.0019920839,0.03596909,-0.021830875,-0.011118912,0.003577218,0.044501904,-0.018102692,-0.0012011576,0.0030307898,-0.023616202,-0.015897287,0.011860611,0.0123463245,0.020413116,-0.004952314,-0.040143605,-0.0368355,-0.02722624,0.040484916,-0.044711944,-0.008841308,0.01715752,-0.038830865,-0.006320846,-0.0016466689,-0.033264846,0.0033212337,-0.05965093,0.02586099,-0.024679523,0.008145555,-0.03754438,-0.01558223,-0.039986078,-0.0379382,0.10055593,0.040458664,-0.061541278,0.02838145,-0.075823896,-0.02777759,-0.004656947,0.014151343,-0.014663312,0.00032203167,0.02717373,-0.047731247,-0.059178345,-0.014203853,-0.02008493,0.02979921,0.065689534,-0.04447565,0.01781389,0.07225324,0.0150308795,0.052588385,0.03252971,0.017275665,0.037623145,-0.008060227,-0.01533281,-0.041508857,0.02362933,-0.01421698,0.039907314,-0.003938222,0.029536663,0.006494784,-0.00003535682,-0.03799071,0.00036346505,0.007088799,-0.044948235,-0.002449902,0.011847483,0.036494188,-0.026294192,-0.040301133,-0.040406153,0.003990731,-0.04016986,-0.0030603264,0.018496513,-0.029510407,0.03105944,-0.018050183,0.028670253,-0.03213589,-0.057813093,-0.0033606158,0.006064861,0.016159836,0.035811562,-0.036467932,-0.0066654403,-0.0022119677,-0.012326634,-0.017196901,-0.011972194,0.046260975,-0.061961353,0.030114267,0.008486868,-0.0061534713,-0.0009074319,0.0041810786,0.00037187478,0.015437828,0.009458296,0.024220062,-0.03226716,-0.010449415,0.013639375,-0.020281842,0.041272562,0.011420842,0.04153511,-0.022631647,-0.035443995,0.0056644753,-0.028512724,0.040353645,0.03066562,0.014203853,-0.0120050125,-0.018890336,0.0023416008,-0.025388403,0.0017918908,-0.013494973,-0.01634362,0.0008959454,-0.027593806,-0.0024958479,-0.015660994,-0.03111195,0.025729714,0.022802303,-0.018037055,0.035181448,0.034525078,-0.0042959433,-0.015949797,-0.024876432,-0.020321224,-0.007266019,-0.030534346,-0.0126810735,0.006527602,0.017210029,-0.032004613,-0.027987627,0.02068879,-0.008499995,0.008099609,0.023432419,0.013330881,-0.017288793,-0.02515211,-0.0061665988,-0.00822432,-0.0014267849,-0.054925065,-0.026399212,0.017853271,-0.010344395,0.04164013,0.001457142,0.003134168,0.019034738,-0.01214285,0.03754438,0.008998836,-0.03662546,0.012812348,-0.0116505725,-0.035785306,-0.024325082,-0.032555964,0.018181456,-0.024508866,0.040589936,-0.013225861,0.014833968,-0.049621593,-0.0289328,-0.02387875,0.0033064652,-0.025585312,0.00888069,0.0053461357,0.009418913,-0.0053198813,-0.0065111932,0.003951349,0.010889183,0.007443239,-0.04108878,0.000032664677,-0.021030104,-0.0010108103,0.005917178,-0.04381928,0.015542848,0.007935517,-0.051118117,0.0005845798,-0.061593786,0.02488956,-0.024298828,0.0015777501,0.039067157,-0.014768331,-0.03476137,0.02114825,0.00067524094,-0.0071478724,-0.028775273,-0.039539743,-0.028565234,0.00039792448,0.036993027,-0.011972194,0.05434746,-0.00260579,0.028775273,-0.052430857,0.009084164,0.00983899,0.022395354,0.02458763,-0.02722624,0.02580848,0.015962925,-0.008454049,0.018286476,0.01836524,-0.013481845,-0.03759689,-0.007686096,0.043688007,0.01902161,0.013324317,0.0018493233,-0.005182043,0.00741042,-0.016711187,0.016921226,-0.028827783,-0.018115819,-0.006672004,-0.015490338,-0.037124302,0.03116446,0.016094198,0.0038791483,-0.002271041,0.018890336,0.004128569,-0.039250944,-0.02341929,-0.02614979,0.008860999,0.013993814,-0.011716209,0.002271041,0.021830875,0.008342466,0.0052673714,-0.007876444,0.013783775,-0.032293417,0.021515818,-0.0041187233,-0.011427406,0.01130926,0.0025073343,0.0014046323,-0.0056776027,-0.0063635097,0.023104234,-0.0020413115,0.0018903464,-0.04507951,0.024062535,-0.00017537393,0.01416447,-0.0049326224,-0.007213509,-0.018207712,0.020531261,0.0189691,0.004719302,-0.0029700755,0.030823147,0.004282816,-0.025283383,-0.013980687,-0.036966775,0.0012766402,0.010981075,-0.017695742,-0.0089725815,-0.0189691,-0.005890923,0.026320448,-0.024508866,0.01138146,0.029589172,0.0011347001,0.01001621,-0.017564468,0.02772508,0.014965242,-0.031006932,0.0205969,0.0059762513,0.00022357612,-0.01467644,-0.0071216174,-0.0006018095,0.0047061746,-0.03940847,0.019625472,-0.011086094,-0.048597656,0.02706871,-0.004043241,-0.016816206,-0.037229322,-0.008480304,0.0055955565,-0.012654819,0.022999214,0.004089187,0.004906368,-0.023314271,-0.0001063525,-0.028407706,-0.036861755,-0.0046897656,0.011407715,-0.04933279,-0.010836673,0.006356946,-0.00786988,-0.08464551,-0.036336657,0.05928336,-0.04998916,-0.01795829,-0.008821616,0.0010666017,0.009989955,0.04447565,0.012635128,-0.013357135,-0.011440534,0.028906547,-0.011716209,0.034026235,0.013718138,-0.0016721033,-0.0044075265,-0.0038561753,-0.002294014,-0.033369865,-0.011854047,0.012608873,-0.019008484,0.0048243213,-0.018194584,0.016159836,0.0029126431,0.03121697,-0.015818523,0.011565244,0.0013939664,0.021660218,0.015949797,0.032923535,-0.024495738,0.026031645,-0.012825475,0.029510407,0.018102692,0.013823158,-0.004131851,0.0070165982,-0.026989946,-0.011493043,0.03279226,0.0031423727,-0.01923165,-0.028670253,-0.0075351307,0.016750569,0.023393037,0.02139767,0.020321224,0.003198164,0.010935129,-0.02625481,-0.018404622,-0.003862739,-0.02150269,-0.006202699,-0.013304626,0.053113483,-0.044659432,0.0045289546,-0.011696518,-0.016277982,-0.002031466,-0.03182083,-0.018378368,-0.0030094576,0.0016343619,0.021371417,0.0040038587,0.026189175,0.018102692,0.012733583,-0.0038955575,0.006734359,0.0135081,-0.03667797,0.0009927601,0.0053100353,0.04759997,0.021056358,0.008270266,-0.011644009,-0.009143238,-0.0011970553,-0.013074895,0.052483365,-0.02368184,-0.00847374,-0.00055955566,-0.017118137,-0.023865623,-0.023589948,-0.00042130766,0.008460613,-0.00018634762,0.061278727,-0.013166788,-0.008362157,-0.035050172,-0.040458664,-0.043898042,0.009418913,-0.0035181446,0.01563474,-0.0270162,-0.01426949,-0.04016986,0.00013424823,-0.02458763,-0.01381003,-0.014991497,0.020701919,0.041456345,-0.008893817,-0.02246099,0.04452816,-0.0046700747,-0.0422965,-0.040642448,-0.035995346,0.0067015407,-0.018890336,-0.008808489,0.0030832994,0.015542848,-0.0077386056,0.025939753,-0.014400763,-0.029982993,0.020662537,-0.035575267,0.024482612,0.006950961,-0.013770648,0.0005702217,-0.0133636985,-0.036047854,0.016212346,-0.032871023,-0.017564468,-0.01381003,-0.02246099,0.042532794,0.013133969,-0.0070756716,0.03652044,-0.01852277,-0.018864082,0.010436287,0.021030104,0.0411938,-0.004696329,0.0030767357,-0.0032194962,-0.01584478,0.019769872,0.028696507,0.0016474894,-0.029116586,0.034735113,-0.019310413,-0.01095482,0.0028174694,0.007305401,0.029431643,-0.015096516,0.0086247055,0.05718298,0.010574125,0.0016597963,0.010862928,0.028670253,0.014256362,0.018128946,0.016540531,-0.043635495,0.02727875,-0.031321988,0.028801527,0.05030422,-0.031243226,0.01416447,-0.014203853,-0.0056218114,0.0014686285,0.0083030835,0.0013406363,0.0014637057,-0.0024794387,-0.0020806938,0.02671427,-0.0113289505,-0.033369865,-0.009989955,0.013599992,0.0086378325,-0.012293815,-0.02433821,-0.036205385,-0.013002695,0.009445168,0.000606322,-0.02221157,0.0034525075,-0.0029274113,0.0036034728,0.009327021,0.0043550166,0.030376816,-0.010469106,0.028013883,-0.026832417,0.012083776,0.021515818,-0.006091116,0.0089332,-0.040353645,-0.024797669,-0.027252493,0.009386095,0.025270255,0.024758287,-0.010816982,0.010029337,0.041823912,-0.00287162,-0.0060353247,0.021542072,-0.022040913,0.01937605,0.02362933,-0.03061311,0.014742076,0.038568318,0.006350382,0.026123537,-0.005986097,0.0360216,-0.037124302,-0.018785316,-0.0086050145,0.03835828,-0.0006961627,0.006471811,0.019559834,-0.008847871,0.0076926597,0.01760385,0.011873738,0.0013668911,-0.006422583,-0.025362147,-0.00459131,-0.026241682,0.011854047,-0.021922767,-0.006251927,-0.0066424673,-0.03323859,0.0043779896,0.006498066,-0.010003082,-0.022014659,0.018627789,0.028775273,0.01274671,0.004020268,0.022894194,0.013796903,-0.010344395,-0.0012471036,0.0018247094,0.04153511,0.019060992,-0.0034984534,-0.04360924,-0.016488021,0.028040137,-0.012260997,0.020557517,0.028722763,-0.040196117,-0.010199994,0.043477967,0.011716209,0.010593816,-0.035549015,-0.013403081,-0.050908078,0.025454039,-0.0076992232,-0.035233956,0.012077213,0.011276442,0.005815441,0.01552972,0.023668712,0.011867175,-0.02114825,-0.010711962,0.02316987,0.014400763,-0.00459131,0.03657295,0.037885692,-0.0043189162,0.022172188,-0.0153984465,-0.014190725,0.04371426,-0.0041843606,0.004391117,-0.052352093,0.0029388978,0.015976053,-0.015267173,0.016698059,0.0063930466,0.03368492,0.018982228,-0.038673338,0.00352799,-0.012306943,0.033632413,0.009195748,-0.017538214,0.013980687,0.013127405,-0.014505783,-0.042611558,-0.01552972,-0.032293417,0.007850189,0.0033474884,-0.0052214256,0.013232425,0.0064324285,-0.00027998295,0.0059795333,-0.0070691076,0.021699602,-0.010101538,-0.017932035,-0.013383389,0.0153984465,0.061646294,0.01148648,0.013127405,0.0044895727,-0.0009927601,0.022001531,0.037649397,0.034236275,-0.0043550166,0.022946704,-0.0044239354,0.014952115,0.0073841657,-0.008913509,0.015345937,0.005713703,-0.030219287,0.011676827,0.0028781837,-0.015805395,-0.0044075265,-0.0009074319,0.006091116,0.017472576,-0.008447485,-0.00087133155,-0.011164858,0.013173351,0.0055069467,0.008132428,-0.024272572,0.003911967,0.016698059,-0.006780305,-0.0038233567,-0.010449415,-0.041561365,-0.0060057878,0.0144664,0.011637445,-0.0059762513,-0.0150440065,0.013088023,-0.024771415,0.002297296,-0.01826022,-0.010679144,-0.020045549,-0.000524686,-0.032976042,-0.007902698,0.060281046,0.019940529,0.0076926597,0.026661761,-0.013107714,-0.010442851,0.0031226815,-0.014322,0.020728173,0.0011248545,0.02848647,-0.011722773,0.0077582966,0.008762543,0.028355196,-0.009707716,-0.016041689,-0.0030012531,-0.014020069,0.020872574,-0.0029536663,-0.00935984,-0.009379531,0.005208298,0.02281543,0.014177598,0.016277982,-0.03035056,0.028801527,-0.012405398,-0.021240141,0.001315202,0.017787633,-0.06563703,0.030429326,0.038935885,-0.04492198,-0.03444631,0.033579905,-0.014203853,-0.03035056,0.012589182,0.041456345,-0.017328175,-0.0043189162,-0.02717373,-0.012267561,-0.0066129304,0.023117362,0.01416447,-0.015766013,0.01795829,0.02281543,0.029615426,-0.00609768,-0.04749495,-0.0055988384,-0.0330023,-0.019809255,0.02003242,-0.01781389,-0.0044567543,0.02271041,-0.01487335,0.010751345,-0.0061108074,0.008486868,0.024141299,-0.0578656,0.012622001,-0.0056579118,-0.017459448,-0.012996132,0.040406153,0.037098046,0.0048899585,0.00786988,0.0058220043,-0.006494784,0.0029027974,-0.00958957,0.00049638003,0.00095994154,-0.03977604,-0.0026418904,0.025637822,-0.030481836,-0.037675653,-0.0551351,0.038568318,-0.0093073305,0.010711962,-0.008887254,0.028827783,-0.010180303,-0.0017853271,0.035391483,-0.034131255,-0.023996897,-0.002141408,-0.015805395,0.023261763,-0.009149802,0.00948455,-0.0032441102,-0.021699602,0.0025450757,0.00349189,-0.03470886,-0.017039372,-0.015004625,0.0020478752,0.0036395732,0.057918113,-0.031295735,-0.038016967,0.05216831,-0.004371426,-0.005520074,-0.028880293,-0.002097103,-0.008867563,0.01659304,-0.0042499974,-0.00064447353,0.01533281,0.02924786,-0.057288,0.011762155,0.028644,-0.031138206,-0.023314271,-0.012490726,-0.010232813,0.02964168,0.0053888,-0.021056358,-0.03652044,-0.016632423,0.017275665,-0.040799975,-0.03704554,-0.006091116,-0.015621613,0.025362147,0.020715045,0.0123463245,-0.0035903454,0.036756735,-0.009773353,0.01836524,-0.00586795,0.009615825,0.040563684,-0.0068787606,0.0013480204,-0.0006243722,0.018942846,-0.006094398,0.0061272164,-0.008145555,-0.0030504807,0.03935596,0.011283005,0.003770847,-0.0017180492,-0.0024121606,0.01973049,-0.009241694,0.006041888,-0.004108878,-0.029457897,-0.023484929,0.02180462,-0.0113223875,-0.007797679,-0.03743936,0.040484916,0.04093125,-0.011177986,-0.018614661,-0.04224399,0.01107953,0.012169105,-0.03252971,0.015857905,0.025204618,-0.028197667,0.023182997,-0.017013118,-0.011860611,-0.014387636,0.038988393,-0.030901913,0.003997295,-0.013521228,-0.026819289,-0.040747467,0.026648633,-0.022539755,0.012615437,0.008106173,-0.0030570445,-0.0019018329,-0.002472875,0.02407566,0.008499995,0.018654043,0.014151343,-0.012832039,0.006041888,-0.0072988374,0.008565632,0.006294591,-0.024416974,-0.0032605194,0.0065079113,-0.0028174694,0.01983551,0.0020823346,0.0043287617,-0.020610027,0.023406163,-0.009740535,0.0018296321,0.0041548237,-0.042322755,0.0120050125,-0.031847086,-0.016934352,-0.0025467167,0.002892952,-0.00032141633,0.010219685,-0.0048210397,-0.005608684,-0.027383767,-0.008106173,-0.02504709,0.014768331,-0.008007717,-0.010232813,-0.026753653,-0.015555975,0.009530496,0.008834744,-0.0018575279,0.004919495,-0.018050183,-0.045867153,0.04605094,0.018483387,-0.06736984,0.004135133,0.029431643,0.0047324295,0.0030307898,-0.01983551,0.0050409236,0.022067169,-0.008710033,-0.025454039,-0.0037577199,0.0022037632,0.0044928547,-0.0076467134,-0.0048243213,0.029405387,0.028355196,0.015464083,0.00983899,0.026661761,0.0049818503,0.032844767,0.008769107,-0.0051328153,0.0020642844,0.04185017,0.027042456,-0.026477976,0.010974511,0.00033249258,-0.016264856,0.03652044,-0.033474885,-0.006865633,0.015411573,-0.008532814,-0.034787625,0.014847095,-0.014886478,0.021266397,-0.03935596,0.016172964,0.022605391,0.021069486,-0.025782224,-0.00032962093,-0.020872574,0.01618609,0.022434736,0.011420842,-0.030376816,-0.03355365,-0.002981562,0.05938838,-0.033868704,0.006950961,-0.006553857,0.021673346,0.002472875,-0.02534902,-0.026097283,0.0075810766,0.044554412,-0.023813114,-0.00017024604,0.0060779885,-0.0024466203,-0.04442314,-0.029510407,-0.017630106,-0.042821597,-0.024246318,0.012471035,-0.011565244,-0.03749187,-0.0010403469,0.017616978,0.010869492,0.009812736,-0.03355365,-0.0008368721,0.02691118,-0.010922002,-0.0038135112,0.011230495,0.0036461367]},{"id":"guide-attachments-0","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Basic File Upload\nPass files in your send options. Each file needs a name and data (Buffer, Blob, Uint8Array). Use with message.reply(), message.send(), or channel.send().\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!file') {\n const data = Buffer.from('Hello from Fluxer!', 'utf-8');\n await message.reply({\n content: 'Here is a file:',\n files: [{ name: 'hello.txt', data }],\n });\n }\n});\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.021233737,0.0124683995,0.013046334,-0.0062020924,0.015711254,-0.04961674,-0.045421362,0.006528518,-0.0061378772,0.03388408,-0.002188659,-0.009070359,0.051072277,-0.045121692,-0.030780358,0.054068975,0.022175556,-0.018012289,0.054582693,0.025300683,-0.0107238935,0.018600926,0.024166219,0.014855054,-0.025878618,-0.04769029,0.0032910153,0.051757235,0.024615724,-0.044993263,0.03566069,-0.026756221,0.03606739,0.019756794,-0.017562784,0.05569575,0.03379846,0.06305906,-0.04679128,-0.004658258,-0.019221669,-0.0009679063,0.02889672,0.016524643,0.02859705,0.029196389,-0.024572914,-0.022111341,-0.034462012,0.059591457,0.0010715867,0.013410218,0.059291787,0.031508125,-0.008663665,0.029859943,-0.031615153,0.017905263,-0.03548945,0.011173398,0.009353975,-0.0064107906,-0.007919841,0.026328122,-0.023160186,0.017541379,-0.03758714,0.04786153,0.0137741035,0.07192072,0.07003709,0.019414315,0.044822022,-0.016203567,0.0245087,-0.006763973,0.0029565624,-0.03426937,0.022967542,-0.030031184,-0.009776724,0.0012682449,-0.06785378,-0.036773752,-0.07363312,0.068025015,-0.0580503,-0.017519973,-0.023288615,0.0009939936,-0.0054127835,0.004505748,-0.072905354,0.02472275,0.032364327,0.012971416,-0.015443691,-0.018140718,-0.027334156,0.002804052,0.06267378,-0.026178287,-0.054283023,-0.023117376,0.018237041,-0.015208237,0.022389606,0.032535564,0.025942832,0.017573487,-0.043837395,0.010178067,0.052656244,0.025600353,0.02352407,-0.0067104604,0.021340763,0.017209603,0.02829738,-0.016546048,-0.027890686,0.002535152,0.052014094,-0.009867694,0.018215636,-0.036024578,-0.00958943,0.0068817004,-0.07915561,-0.017231006,0.0774004,-0.016406916,0.052741867,-0.0339697,-0.008877714,0.0054422156,0.016824313,0.015668444,-0.022860516,-0.015572121,0.025450518,-0.03733028,0.044993263,-0.025450518,-0.02335283,0.04743343,-0.0559098,0.07003709,-0.013709888,-0.03375565,-0.0066622994,0.010595464,-0.022860516,0.035382427,-0.009605484,-0.009048955,0.028126141,0.01694204,-0.04364475,-0.06549923,-0.0037913567,-0.004289022,-0.0052040853,-0.045207314,0.0012006855,-0.013281789,0.016653072,-0.01883638,-0.014255715,0.062887825,0.01444836,-0.028361596,0.020313324,0.024872584,0.04640599,-0.0140630705,0.016203567,-0.04537855,-0.016481834,0.04525012,0.010402819,0.0034114183,0.0048000664,-0.019467827,-0.008053623,0.038721606,0.014801542,0.024273245,-0.022796301,0.015251047,-0.027227132,0.016535345,-0.009568025,-0.029774323,0.035403833,0.005736534,0.0155186085,0.010788109,0.022967542,-0.01728452,0.008829554,0.03392689,-0.0048455517,-0.04351632,-0.029132174,0.016235676,-0.0005160606,0.056423523,0.0015170778,-0.03259978,0.029688705,0.05021608,-0.011515878,0.021576218,-0.04236045,0.026734818,0.008984739,0.04991641,-0.031315483,-0.013517244,-0.061046995,-0.013506541,0.06639824,-0.025942832,-0.013431624,0.025900023,-0.018001586,-0.02825457,-0.014705219,-0.0075238496,0.042467475,0.010547303,-0.009942612,-0.037779786,0.020816341,0.018558115,0.03728747,0.00111841,-0.009669699,0.0113553405,0.00064047705,-0.043152437,0.02085915,-0.00829978,0.00971786,-0.022774896,-0.020923365,-0.017252412,0.043452103,0.0240806,0.050772607,-0.035682097,0.052099716,-0.016524643,0.04099053,-0.070165515,-0.027355561,0.0052040853,0.036944993,-0.022368202,0.0037057367,-0.013238979,-0.013741995,0.0011438285,-0.029431844,0.01608584,0.0036495486,0.04854649,-0.027762257,-0.012896499,0.021886589,0.027612422,0.030801762,0.008727879,-0.02339564,0.02863986,0.0042970493,-0.02378093,-0.003981326,0.064386174,0.010386765,-0.015925303,-0.052056905,0.0012140636,0.0015531987,0.026328122,0.01870795,-0.029517464,0.032342922,0.01229716,0.019639067,-0.010761352,0.024958204,-0.020923365,0.004781337,0.0653708,0.006127175,0.023845145,0.03272821,0.02420903,-0.05638071,-0.017509272,0.044993263,-0.016117949,0.011184101,0.009359326,-0.03277102,0.016706586,0.036709536,-0.032749616,0.019553447,0.0145018725,-0.05967708,-0.016663775,-0.03255697,-0.00339804,-0.0032160978,0.035938956,0.0035425238,0.02893953,0.026692007,-0.0076308744,0.051286325,-0.07162105,-0.026713412,-0.035853337,-0.029196389,-0.0037726273,0.018386876,0.027227132,0.01819423,-0.019510638,-0.0016080489,0.0045565846,0.040348385,-0.032235898,-0.03405532,0.03608879,-0.018247744,0.059591457,-0.022518037,-0.041397225,0.002937833,0.030673333,-0.03959921,-0.01857952,0.018076504,0.031743582,0.013624269,-0.014726625,-0.02915358,0.03384127,-0.031443913,0.008053623,0.019243075,-0.009450298,-0.018033694,-0.08382189,0.00576329,-0.031743582,-0.04888897,0.036623918,0.010097798,0.02459432,0.027376967,0.006464303,-0.0018889892,-0.05753658,-0.010980753,-0.04283136,0.025750188,0.023481261,-0.013731293,0.029603085,-0.002012068,-0.018044395,-0.0017364788,0.008583396,-0.011515878,0.0042943736,-0.009878397,0.079626516,-0.011965383,-0.035724908,-0.023117376,-0.02472275,-0.02292473,0.0013324599,0.0052522463,0.002301035,0.014769435,0.0391283,-0.04948831,0.03989888,0.010718542,0.07085048,0.08168139,0.01759489,-0.014651707,-0.033691436,0.024465889,0.031893417,0.0046983925,0.029688705,0.035682097,-0.01759489,-0.011173398,-0.0098302355,0.015218939,-0.038678795,-0.00019715991,-0.006014799,0.021940103,0.012810879,-0.015604229,0.0062074433,-0.015058402,0.008235565,-0.025364898,0.007400771,-0.03452623,-0.004923145,-0.016481834,-0.0039465427,0.014726625,-0.0339697,0.063529976,-0.020837747,0.042296235,-0.052356575,-0.062887825,-0.06798221,-0.0025150848,0.0193501,0.03362722,-0.030887382,0.02816895,-0.027847875,-0.022325391,-0.0067425678,-0.0014568763,0.02885391,0.015379476,0.042381857,-0.011901167,0.00722418,-0.02863986,0.039534993,-0.008669016,0.032813832,-0.054197405,-0.04381599,-0.0013070415,-0.043302268,0.016760098,0.025043825,-0.01905043,0.006956618,0.083350986,0.0005715798,-0.021233737,0.040969126,-0.03626003,0.0007819506,-0.002953887,-0.02489399,-0.018922,-0.0032803128,0.0037057367,-0.0116443075,-0.018162124,0.020816341,0.029988373,0.018311959,-0.025578948,-0.04373037,0.003719115,-0.04572103,0.025878618,0.019799605,0.044051442,0.04122599,-0.023459855,-0.044565164,-0.053683683,0.09837728,0.051543187,-0.018258445,0.026328122,-0.007978706,-0.03840053,0.0027987007,0.03938516,-0.0084014535,0.0421464,-0.03797243,-0.007941247,-0.03929954,0.026285313,-0.015796874,-0.017905263,-0.022753492,-0.02412341,-0.007620172,0.022068532,-0.007925193,-0.02893953,-0.018643735,0.0040428652,0.026221098,0.061218236,-0.011537283,0.009107818,0.017016957,-0.030694738,0.015604229,-0.03750152,0.04197516,-0.004527153,-0.05753658,-0.0012702516,0.03908549,0.0050408724,-0.015861088,-0.019360803,-0.0020588913,-0.025921429,-0.026028452,0.012329267,-0.026970271,0.051457565,-0.004955252,-0.0049525765,-0.0023358183,0.0021057148,0.025386304,-0.032813832,-0.0037137636,-0.0035559018,0.0050408724,-0.014426955,0.011023563,-0.016952742,0.01444836,-0.025771594,0.021180226,-0.0066194893,0.026049858,-0.0020508645,0.0061218236,-0.010204823,-0.034975734,-0.012532614,0.0023197643,0.04313103,0.03302788,-0.0021859834,-0.0010100474,-0.03435499,-0.010980753,0.011505175,-0.013378111,-0.01079346,-0.005998745,0.004476316,-0.0022635765,-0.0068442416,-0.012136622,0.022582252,-0.003052885,0.009113169,0.033520196,-0.01582898,0.0059719887,-0.0032776373,0.010049637,-0.041568466,0.018087206,-0.039663423,-0.023973575,-0.0005551916,-0.012404185,-0.015839683,0.026263908,-0.0076255235,0.0057097776,-0.020976879,-0.02024911,0.007047589,-0.00941819,0.030908788,-0.004933847,0.037073422,-0.020848447,-0.003689683,-0.0039625964,-0.011879763,0.011815548,-0.03358441,0.02111601,0.00078663294,-0.025792997,-0.00016145708,-0.009905153,0.025921429,0.025043825,0.028211761,-0.045121692,-0.015251047,0.022047127,0.008251619,0.026863247,-0.034333583,-0.06909527,-0.016053732,0.0039064083,0.014459062,0.005126492,0.010739948,0.015079807,0.01221154,0.007336556,0.008406805,0.02283911,-0.0032134224,0.02305316,0.0057525877,-0.007684387,-0.012286457,0.01728452,-0.00133848,0.018654438,0.034890115,0.00066388876,-0.005348569,-0.032278705,0.008144594,-0.009814182,-0.021800969,-0.006127175,0.027120106,-0.0062234974,0.053555254,0.0016281161,0.011119886,0.030138208,-0.038079455,-0.0021431735,-0.0032883396,-0.022667872,-0.024166219,0.0058596125,-0.0016976823,-0.024530103,0.0089793885,-0.04124739,0.011451663,0.014994186,-0.009626889,0.03444061,0.011762035,-0.010713192,-0.010354658,0.037951026,-0.016289188,0.002018757,-0.026413742,-0.010809514,-0.0097339135,0.010525898,-0.013153358,0.019853117,-0.0035612532,-0.020067167,-0.0005571983,-0.031101432,0.017637702,-0.039513588,0.022218367,0.02851143,-0.00021555481,0.027505396,-0.032963667,-0.036709536,0.0014261067,-0.03456904,-0.027013082,0.022496631,-0.0029966969,0.0041177827,-0.025557544,-0.0019705957,0.018718652,-0.024786964,0.0035585775,0.03818648,0.01943572,0.027912091,0.019499935,-0.025707379,-0.003264259,-0.015657742,-0.019596256,0.007379366,0.025643162,-0.06395807,-0.0027344858,0.00061071076,0.04756186,-0.054625504,-0.023095971,0.016653072,-0.011216208,-0.004495045,-0.019981546,-0.008974037,-0.027034488,0.0021404978,-0.005174653,0.010953997,0.0038475448,-0.005375325,-0.013688483,0.024615724,-0.012051002,-0.04948831,0.0038421934,0.016246378,-0.013399516,-0.0019732714,-0.010814865,0.0040321625,0.0124683995,0.03711623,-0.035981767,0.017123982,-0.010729245,0.010846972,-0.03921392,-0.0063144686,0.016663775,0.0016615614,0.032492757,0.030544903,0.018301256,0.000035911868,-0.023160186,-0.0073258537,-0.04188954,-0.009065008,-0.033006474,0.004115107,0.0075399033,0.0026047183,-0.0318292,-0.0065017617,-0.01819423,-0.013313896,-0.024401674,0.027890686,-0.023566881,0.0563379,-0.021640433,0.0014929972,-0.02115882,-0.019071834,-0.0014287822,0.0038288154,0.04002731,-0.027441181,0.0043532373,-0.006833539,0.00031271335,0.029474653,0.05021608,-0.033477385,-0.037908215,0.0018354768,-0.012061705,-0.014073772,0.0232244,0.01913605,0.0034809844,-0.017241709,0.012265052,-0.009530567,-0.035831932,-0.037244663,-0.040048715,-0.010574059,-0.011280423,-0.0050087646,-0.0028629159,-0.03797243,-0.009252301,0.018536711,-0.013131954,-0.07513147,0.0044656135,0.020634398,-0.034076724,-0.04032698,-0.006373332,-0.008845607,0.038550366,0.03456904,-0.023331426,0.02162973,-0.011451663,0.02463713,-0.01027974,0.050858226,0.011205506,0.0460207,0.017958777,-0.0067425678,-0.016010923,-0.010301146,-0.020976879,0.003087668,0.077186346,-0.006244902,0.011398151,0.01638551,-0.0091292225,0.03298507,-0.0031652611,0.040562432,0.018087206,0.004519126,0.0056188065,0.039941687,0.050130457,0.003759249,0.020698613,-0.0014742678,-0.038036644,-0.01732733,0.0012361375,-0.018076504,-0.0062823608,0.01883638,0.044907644,0.038635984,0.02893953,0.014705219,-0.017123982,0.0039599207,-0.019970844,-0.0005786033,-0.014352038,0.026392337,-0.0010394793,-0.016578155,0.02395217,0.00006229183,-0.018996917,-0.014897864,-0.02825457,0.010911187,0.011537283,0.034247965,-0.01926448,-0.000062626284,-0.009423542,-0.024744155,-0.022903327,0.0011016874,-0.0163427,0.044993263,0.025557544,0.0073312046,-0.0006996752,0.03277102,-0.0092951115,-0.0058221538,-0.020227704,0.0025244495,0.025364898,0.027355561,0.019360803,0.021233737,-0.017477164,0.009873046,-0.0072402335,0.016835015,0.052784674,0.05937741,-0.005155924,0.02175816,-0.0055278353,-0.011194803,-0.007828871,-0.045935083,0.019788902,0.051329136,-0.05663757,0.025043825,-0.02262506,0.031144243,0.0064107906,-0.0106275715,0.0066248407,-0.008069676,-0.0026354878,-0.018044395,-0.04948831,0.015668444,-0.01875076,-0.01672799,0.025835808,-0.0029084014,-0.018622331,0.027312752,-0.00696732,0.0014207554,-0.01397745,0.03728747,0.023459855,0.0065338695,-0.016364105,-0.0066890554,0.011708523,-0.029945564,-0.03337036,-0.012575424,-0.004941874,-0.0064321957,0.025600353,-0.004248888,-0.0064107906,0.014523277,-0.0056776702,0.010317199,0.019029025,-0.017776834,0.00800011,-0.00950381,-0.021383572,0.010659679,-0.017937372,-0.0054850257,0.032706805,0.015978815,0.031550936,-0.008283726,-0.06519956,0.023759525,-0.003349879,-0.03384127,0.004016109,0.022432417,0.041932352,-0.02902515,-0.010499141,-0.025343493,0.02808333,0.026970271,0.030865978,0.0036763048,0.004992711,-0.007620172,-0.015133319,-0.027205726,0.005913125,0.017626999,0.014480467,0.0024588967,-0.00864226,0.03426937,0.005246895,-0.0010742623,0.025129443,0.019371504,-0.0144055495,0.028019115,-0.0077539533,-0.0021190927,0.00563486,0.017102577,0.029496059,0.044051442,-0.018889893,0.016845718,0.007159965,-0.019200265,0.005907774,-0.00082476053,-0.0005705764,0.02111601,-0.013121251,-0.018611629,0.025150849,-0.026328122,0.012725259,-0.042638715,-0.013185467,0.017209603,0.027248537,0.020827044,-0.039941687,-0.0067907292,0.03238573,-0.038593173,0.032321516,-0.0056776702,0.025043825,-0.0017779509,0.019253777,-0.009396785,-0.0057525877,-0.025857212,0.016267782,-0.018033694,0.013067739,-0.02386655,0.0051077628,0.017519973,0.0030154262,-0.0012461711,0.024615724,-0.036602512,0.00003137585,0.0054101082,-0.030865978,-0.026092667,0.018119313,0.027334156,-0.012693152,0.01789456,0.0016950066,0.025964238,-0.014394848,-0.026092667,0.017519973,0.015625633,0.017787537,0.010124555,-0.022646466,0.03349879,-0.05732253,-0.017241709,-0.018151421,0.016289188,0.008026866,-0.033049285,-0.0042943736,0.01659956,0.014105881,0.0076094694,0.009621537,0.024851179,0.010574059,-0.0022354824,0.021148117,0.008064325,0.019842414,0.00088496204,0.0060415547,0.013988153,-0.0343978,-0.007930544,0.021008985,-0.0013966748,-0.002287657,0.0124683995,0.023545476,-0.036474083,0.021918697,-0.0050060893,-0.014202203,-0.007218829,0.0070315353,0.022453822,0.0039037329,-0.0019812982,-0.0232244,-0.02480837,-0.0017752753,-0.012607532,-0.026520766,-0.008128541,0.001947853,-0.035724908,-0.0048830104,0.009701806,0.024016384,0.0032856641,-0.014052368,-0.025728783,-0.0146945175,0.029988373,0.0021726051,-0.055010792,-0.00696732,0.0023398316,0.01737014,-0.016481834,-0.012832284,-0.008454966,0.0013364733,-0.025857212,-0.0052923807,0.014683815,-0.008026866,0.044179875,0.0031572343,-0.009894451,0.04584946,0.017776834,-0.044693593,0.03596036,0.007668333,-0.037951026,-0.017637702,-0.0017016957,0.0087867435,0.002924455,-0.018001586,0.0013398178,0.04495045,0.00006747585,0.00085017894,0.010761352,-0.0012548668,-0.0004411432,0.004034838,0.031080028,-0.017990883,0.004979333,-0.021940103,-0.026135478,-0.016192865,-0.06545642,0.02808333,0.03546805,0.042809956,-0.010445629,0.02420903,-0.022068532,0.04717657,0.04948831,-0.029346224,0.032492757,-0.0064321957,-0.032278705,0.0020093923,0.04597789,-0.0016736017,-0.007828871,-0.00494455,0.04321665,0.0292392,0.038036644,0.027740851,0.01023158,0.0024027086,-0.0070154816,0.026071263,0.04781872,-0.009749968,0.037844,-0.009867694,-0.020302622,0.005230841,0.010049637,-0.01994944,0.0115479855,-0.00036288126,0.0057204803,0.012350672,-0.0013217573,-0.017969478,0.008872363,-0.017691214,-0.02842581,0.0032963667,0.007919841,0.010777406,0.011130588,0.005827505,-0.022261176,-0.02115882,-0.048032768,-0.041504253,0.009461,-0.015368774,-0.034911517,0.0020896608,-0.015315262,0.0002655555,-0.009985422,-0.0027318103,-0.0055920505,0.0017685862,-0.028404405,-0.021608325,-0.0145018725,0.02851143,0.010868377,-0.0063305222,0.030865978,0.007962652,0.034419205,0.0064750058,-0.0318292,0.009407488,0.000913725,-0.0037779785,0.015861088,0.00021170861,0.031122837,0.041825328,0.0012849675,0.013538648,0.00078997744,0.017252412,0.0059933937,0.0069512664,0.0069298614,0.015775468,-0.009022198,0.008974037,0.0012053679,-0.04670566,0.0020829719,0.0068442416,-0.0016548723,-0.014544683,0.04261731,0.0073044486,-0.015111914,0.00042174495,0.021383572,-0.040241357,-0.033049285,0.018386876,-0.0008883066,0.015550716,0.039770447,0.022154152,0.008663665,0.035853337,0.007459635,-0.021897292,0.0009839601,0.010541951,-0.0131961685,-0.0057204803,0.013923937,-0.0066408943,0.0059880423,0.029710108,-0.016524643,0.019360803,0.015679145,-0.01994944,-0.010852324,-0.043751772,-0.01359216,-0.03857177,-0.004992711,-0.010980753,-0.006833539,0.020623695,0.00232244,-0.02382374,0.010360009,0.020570183,0.00535392,0.0023478584,0.010804162,-0.011890465,0.020131381,-0.00980348,0.0011465041,0.013474434,0.019029025,-0.009428892,-0.013602863,-0.004425479,0.00093379215,-0.024444485,-0.019906629,-0.019799605,0.0016000221,-0.026049858,-0.024615724,0.026627792,0.012018895,-0.021479895,0.007818168,-0.04313103,-0.0077646556,-0.015593526,0.020281216,0.02339564,0.011333936,-0.011291126,0.030973002,-0.000025167572,0.057622198,0.043152437,0.022303987,-0.01600022,-0.0369878,-0.017338032,0.028746884,-0.005228166,0.0071492624,-0.027526801,0.009043603,-0.02868267,0.031572342,0.000559205,-0.026370933,-0.005897071,-0.012832284,-0.02756961,-0.0210732,0.0015277803,-0.015743362,-0.017091874,-0.009434244,0.005955935,-0.050729796,-0.008968686,-0.026135478,-0.009252301,0.020238407,0.0279549,-0.021554813,0.0014742678,-0.040048715,-0.0056990753,-0.042381857,0.0002312741,-0.039770447,-0.009391434,-0.0059505836,-0.012714556,0.014105881,-0.011847655,-0.015497204,0.0019518664,0.022518037,0.018536711,-0.025771594,0.0069726715,0.008481722,0.010183418,0.013271086,-0.031722177,-0.020591589,0.015090509,-0.00855664,-0.0037431954,0.015807576,0.0017016957,-0.02305316,-0.021619027,0.0054769986,-0.00034515528,0.03005259,0.04884616,0.00022659176,0.0053405417,-0.016920635,0.014651707,-0.009921207,-0.017177494,0.01638551,0.018055098,0.017059768,0.03367003,-0.0018903271,-0.000396661,0.022004317,-0.02103039,0.0017471813,0.038336314,0.023331426,-0.009273707,-0.024701344,0.009327219,-0.018258445,-0.018258445,-0.0039064083,0.0026167585,-0.027740851,0.040177144,0.019125348,0.012307862,0.02868267,0.003293691,-0.007679036,-0.021319358,0.010643625,-0.007336556,-0.017049065,-0.024765559,-0.021875886,-0.007416825,-0.0069726715,0.012115218,-0.025364898,-0.014170095,0.023267211,0.0033953646,0.0058114515,-0.025878618,0.037565734,-0.009386083,-0.017177494,0.018611629,-0.0032160978,0.040583838,-0.01647113,-0.013303193,-0.036581106,0.0072723413,-0.052185334,-0.022946136,0.01996014,-0.038379125,0.004738527,-0.007165316,-0.004462938,0.032235898,0.02863986,-0.0034676064,0.021961506,0.0128536895,-0.011462365,-0.032578375,-0.009535917,0.0063305222,0.02433746,-0.004735851,0.007844924,-0.015111914,0.0075238496,0.0038769767,-0.0014675788,0.0120403,0.00030719486,-0.031187052,0.027077297,-0.009477054,0.010092447,-0.007176019,-0.021105308,0.011483771,-0.0016709261,0.00035017205,-0.03135829,0.017723322,0.0050328453,-0.019928034,-0.00007437394,-0.008149945,0.02489399,-0.0028522133,0.0032482054,-0.016802907,0.026499363,0.012671746,-0.012821581,0.013217574,0.00298867,-0.04824682,0.04614913,-0.0017190872,0.008524532,-0.008888417,0.028704075,0.018397579,-0.0047920393,0.041782517,-0.0010107163,-0.01359216,0.028447215,0.009434244,-0.007218829,0.0215013,-0.03857177,-0.0036415218,0.001020081,-0.044137064,-0.021693945,-0.028104736,-0.00081740256,0.0045940434,-0.01023693,-0.020120678,-0.0010080406,-0.019660471,0.0163427,0.005048899,0.03452623,-0.009118521,-0.064129315,0.030823167,0.020709315,-0.025257874,0.039791852,0.0046368535,-0.017220305,0.032621186,-0.003732493,0.0167708,0.00993191,0.0020495267,-0.00022291277,0.010691786,0.03548945,0.023631096,-0.029089365,-0.006196741,-0.013538648,-0.02816895,-0.000104850944,-0.04991641,-0.04158987,-0.0089098215,0.00032341582,-0.049531117,-0.011783441,0.023095971,-0.032214493,-0.019510638,0.019157454,-0.012190134,-0.018001586,-0.0016802908,0.0036067388]},{"id":"guide-attachments-1","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Attachment Metadata\nWhen using files, you can pass attachments to set metadata per file: filename, title, description, and flags. The id in each attachment matches the file index (0, 1, 2...).\n\n```javascript\nimport { MessageAttachmentFlags } from '@fluxerjs/core';\n\nawait message.reply({\n content: 'Spoiler image:',\n files: [{ name: 'secret.png', data: imageBuffer }],\n attachments: [\n {\n id: 0,\n filename: 'secret.png',\n title: 'Hidden image',\n flags: MessageAttachmentFlags.IS_SPOILER,\n },\n ],\n});\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.016181782,0.0007848281,0.0055478723,-0.015947942,0.0069450713,-0.03722745,-0.035426877,-0.0014410438,-0.005986324,-0.0018078815,0.0004983732,-0.006658616,0.061032444,-0.05733776,-0.024646819,0.035169654,-0.005638486,0.005708638,0.030095309,0.045622338,-0.0016325009,0.04122613,0.007266602,0.0340706,-0.0011706654,-0.010300687,-0.0033643842,0.057431296,0.043611307,0.005404645,0.04466359,-0.014159059,0.052099727,0.014615049,-0.008757337,0.040571377,0.01691838,0.025932942,-0.029347017,0.00069640705,-0.020390917,0.01450982,0.018157737,0.003273771,0.024927428,0.005942479,0.004814197,0.005156189,-0.025512028,0.061500125,0.02076506,0.021174282,0.025371725,0.06655109,-0.008090891,0.033556152,-0.031895883,0.017912203,-0.010043462,0.014100599,0.0095173195,-0.018941103,-0.015573796,0.03608163,-0.037765287,0.009447168,-0.060564764,0.030750062,0.0492001,0.050369304,0.063745,0.040571377,0.02248379,0.0038057587,0.030750062,-0.02167704,-0.0011509351,-0.025044348,-0.0032006956,-0.048077665,0.017128836,0.027686749,-0.058179587,-0.022752708,-0.06692523,0.045622338,-0.042746093,-0.03514627,-0.07861727,0.002222949,-0.03727422,-0.0014753891,-0.1120565,0.00044831663,0.033930298,0.028505191,-0.051351435,-0.013843374,-0.025067732,0.015760869,0.0690298,-0.0076816697,-0.03704038,-0.03905141,0.021536736,-0.008038277,0.018204505,0.04513127,0.010739137,0.024529899,-0.03498258,-0.01921002,0.01370307,0.00605063,0.021033978,-0.0298147,-0.01559718,0.017818667,0.036619466,0.003867142,-0.04419591,-0.0037356066,0.06617694,0.006185089,0.022904705,-0.023197005,-0.002912779,-0.01897618,-0.08624048,-0.009149021,0.04071168,-0.027990742,0.05953586,-0.058179587,-0.022437023,-0.009967463,0.024646819,0.013328925,-0.026564313,-0.015106115,0.015176266,-0.015375031,0.02930025,-0.008277964,-0.03177896,0.019221712,-0.06210811,0.055139657,-0.008622879,-0.011838189,-0.006319547,0.017970664,-0.0128612425,0.013258772,0.019876467,-0.021793962,0.0318725,-0.008903488,-0.027569829,-0.034023833,-0.018870952,-0.01617009,0.011931726,-0.06542865,0.016743,-0.016427314,0.032761093,-0.0022594866,-0.014474744,0.029978389,0.009587472,-0.0381862,0.0075238273,-0.027990742,0.05453167,0.008137659,0.020157075,-0.023372386,-0.019794622,0.0287858,-0.0037648366,0.013913526,-0.01714053,-0.008377346,-0.004133136,0.014837197,0.012183105,0.01433444,0.00037597213,-0.005053884,-0.0131652355,0.032527253,0.019630933,-0.008073353,0.0066410783,-0.01433444,0.00659431,0.00966347,0.008026585,-0.016415622,0.005372492,0.036058247,0.022846244,-0.021361355,-0.03858373,0.026026478,-0.0126157105,0.009949925,-0.0076816697,-0.015012578,0.0045452802,0.013399077,0.0052000345,0.037250835,-0.012416946,0.0044049756,-0.024179136,0.008324732,-0.042442102,0.019163253,-0.047516447,-0.02471697,0.07487582,-0.035473645,-0.038840953,0.016953457,-0.034491517,-0.005159112,-0.036946844,0.016883304,0.022682555,0.006296163,-0.01995831,-0.058740802,-0.012054492,-0.003598225,-0.0070386073,-0.031895883,0.016181782,-0.013574458,0.023091776,-0.010476067,0.0037531445,-0.0037356066,-0.019934926,-0.0137147615,-0.00023895605,-0.0071321437,0.03481889,0.03135805,0.057898976,-0.021069054,0.03222326,-0.02224995,0.024950812,-0.0533157,-0.050930522,0.05803928,0.035917945,-0.022951473,0.0053374157,-0.01788882,-0.04178735,0.0018751108,-0.024015449,0.018941103,0.018870952,0.041202746,-0.032480486,-0.03439798,0.0046505085,0.011276972,0.0027607826,0.017070377,-0.019139867,0.022425331,-0.019104792,-0.028037509,0.0058080205,0.02958086,0.03336908,-0.026915073,-0.036385626,0.011230203,-0.015117806,0.022799477,0.012580634,-0.019888159,0.0627161,0.008979486,0.011592656,-0.021805653,0.048825953,-0.0138316825,-0.013515997,0.083481155,0.0099382335,0.0050305,0.013960294,0.000010978413,-0.04260579,-0.03266756,0.039636012,-0.008172736,0.035356726,-0.014533204,-0.016778076,-0.009301017,-0.010066845,-0.03154512,0.035824407,-0.02385176,-0.06355792,-0.015012578,-0.03388353,-0.015152883,-0.01210126,0.017923895,0.03601148,0.02953409,0.02248379,0.009312709,0.0681412,-0.060798604,-0.0058109434,-0.0146267405,-0.006407237,-0.005071422,0.00816689,0.051632043,0.029370401,0.007973971,-0.001275163,0.009084715,0.023933604,-0.039028026,0.0018531882,0.031638656,-0.025301572,0.061032444,0.016696231,-0.029440554,-0.0204143,0.010101922,-0.04971455,-0.037180685,-0.051912654,0.013118467,0.01972447,-0.024927428,-0.025932942,0.013738146,-0.0356841,-0.004171135,0.010651448,-0.013656301,-0.014650125,-0.066644624,0.0084825745,-0.012966471,-0.0628564,0.024342826,0.019923234,0.008897642,0.024857275,-0.0024392516,-0.0048171203,-0.033345696,0.024296056,-0.022285026,-0.0015769638,0.031732194,-0.020893674,0.005413414,-0.0125572495,0.013574458,-0.01881249,-0.0031714656,-0.011896649,0.0057612523,0.023500998,0.06514804,-0.005746637,-0.017549751,0.016555928,-0.016778076,-0.00478789,0.009552396,-0.03170881,-0.006319547,0.021314587,0.027873822,-0.04178735,0.03996339,-0.023629611,0.07609179,0.06701877,0.023126854,-0.0003577033,-0.045271575,-0.013036624,-0.0061324746,-0.009529011,0.023302233,0.03830312,0.011937572,-0.030843599,0.00725491,0.02241364,-0.021419816,0.036292087,0.009271787,0.015550412,0.0049632704,-0.0037589904,0.029440554,0.0008155197,0.0014958503,-0.0067638448,-0.009529011,-0.01496581,0.025208035,0.007506289,0.0005612179,0.01972447,-0.019256787,0.046019867,-0.040103693,0.07838343,-0.061546892,-0.08016062,-0.034795508,0.007512135,0.011019747,0.042278413,-0.027733516,0.030960519,0.0020490298,-0.026190167,-0.025886174,-0.002231718,-0.0006288125,-0.012627402,0.02586279,-0.02993162,0.012054492,-0.039823085,0.0048755803,0.043845147,0.018192813,-0.04753983,-0.0029361632,-0.025792638,-0.01324708,0.0077108997,0.028598728,-0.0314282,0.0070269154,0.07403399,-0.001180896,-0.023419155,0.032457102,-0.027943972,0.028739031,-0.0035806869,-0.04031415,-0.04971455,-0.027873822,-0.0024348672,-0.010803444,-0.004483897,0.020554604,0.020309072,0.018426653,0.012522174,-0.06346439,0.02460005,-0.08394884,0.039472323,0.01628701,0.015807636,-0.0064949277,-0.02081183,-0.018718954,-0.066644624,0.107005544,0.055747643,-0.022401948,0.04674477,-0.019022947,-0.06341762,-0.0035251498,0.061921038,-0.011154206,0.016836537,-0.02327885,-0.0026102478,-0.063230544,0.01881249,-0.004197442,0.0034433054,0.002252179,-0.009733623,0.0035163807,0.005112344,0.007763514,-0.018192813,-0.0067053842,-0.00037816438,0.023664687,0.0340706,0.01324708,0.0079973545,0.0012642017,-0.016228551,0.0049398863,-0.032761093,0.056916844,-0.011902495,-0.04760998,0.00043443232,0.022460407,0.019759545,-0.006097398,0.009599164,-0.019362018,-0.036385626,-0.028084278,-0.024997579,-0.040688295,0.047516447,-0.028481808,0.007921357,-0.0014980425,-0.013691378,0.0058635576,-0.016766384,-0.013691378,-0.0006741191,-0.008967794,-0.032059573,0.031077439,0.017210681,0.013621225,-0.022320103,-0.0021454892,-0.03004854,0.049293637,0.015421799,0.012709246,-0.0024392516,-0.030235613,0.0038320657,0.0037911437,0.013784914,0.01577256,0.010370838,0.0066410783,0.008447498,-0.002801705,0.026587697,-0.02396868,-0.020905366,0.0064656977,0.011276972,0.0061909347,0.021127515,0.017923895,0.03159189,-0.00906133,0.026213551,0.01577256,-0.01652085,-0.0013394692,-0.0066644624,0.009885619,-0.042067956,0.014603357,-0.003948986,-0.03329893,-0.006261087,0.0068866108,-0.015737485,0.019712778,-0.0164507,0.009681009,0.004448821,0.007401061,-0.0032036186,-0.016930072,0.024833892,-0.011446506,0.005074345,-0.018835874,0.006606002,-0.0037472986,0.0007504828,0.025628949,-0.015760869,0.012089568,0.0077167456,-0.0034433054,-0.014895658,-0.025395108,0.01749129,0.042746093,0.0008447498,-0.05481228,-0.0096342405,0.0055274116,-0.02327885,0.02649416,-0.045388494,-0.067112304,-0.040735062,0.023115162,0.02098721,0.00072015653,0.012837859,0.011762192,0.024646819,0.024950812,-0.029253481,0.015573796,0.010861904,0.035099503,-0.011580965,-0.035076115,-0.009593318,0.04386853,0.008318886,-0.0003577033,0.016380547,0.012954779,0.018473422,-0.0075822873,0.004138982,-0.0019218789,0.008231196,0.01577256,0.047165684,-0.006570926,0.060517993,-0.005910326,0.025184652,0.010154536,-0.022097955,0.014696893,-0.010493605,-0.0061967806,-0.03131128,-0.031100824,-0.032831244,-0.010189612,0.000522488,-0.053502772,0.02288132,0.026517544,-0.028622111,0.03147497,-0.0061733965,-0.009412091,-0.013574458,0.019853082,-0.043494385,0.0011297433,-0.025161268,-0.03067991,0.009692701,-0.0046563544,-0.021069054,0.006658616,0.007786898,0.00018341886,0.017292526,-0.028832568,0.00653585,-0.02167704,0.008698877,0.025769254,0.0022302563,0.010172074,-0.028294735,-0.041202746,-0.0083715,-0.0025517875,-0.011481582,0.032059573,0.019455552,-0.0053081857,-0.024904042,0.007757668,-0.012335101,-0.019315248,0.03210634,0.027873822,0.029276866,0.04113259,0.021022286,-0.006068168,-0.009505628,0.00023548497,-0.040501222,0.013153544,0.043330695,-0.057103917,0.02213303,0.002556172,0.06234195,-0.041904267,-0.030235613,0.004442975,0.006898303,0.022857936,-0.010943748,0.0025766331,-0.006985993,-0.026283704,0.005796328,0.00662354,0.0019584165,-0.012428638,-0.0064364676,0.030586375,-0.007909664,-0.037765287,0.018625418,0.02001677,-0.00027531097,-0.0026438623,-0.0035573028,-0.010230534,0.028271351,0.012826167,-0.01313016,0.04340085,-0.01628701,-0.009055484,-0.033228774,-0.0038145278,0.024436362,0.022273334,0.030375917,-0.0023661763,0.003007777,-0.011633579,-0.037882205,-0.025605565,-0.046768155,-0.012522174,-0.018987872,0.0070386073,0.029721163,-0.018450037,-0.0064423135,-0.012148028,0.0035426877,-0.013200312,-0.017187297,0.03224664,0.002842627,0.045318343,-0.03905141,0.027569829,-0.024997579,-0.025699101,-0.019946618,0.004746968,0.021525044,-0.026283704,-0.0067755366,0.019654317,-0.0118264975,0.006646924,0.036105018,-0.002193719,-0.023641303,-0.0083013475,-0.026751386,0.022963164,0.009768698,0.0056706388,-0.0044546667,-0.009873927,0.01904633,-0.015749177,-0.041413203,-0.030773446,-0.050790217,-0.008693031,-0.02420252,0.011095745,-0.009347785,-0.043213777,-0.013983679,0.040618144,-0.011686193,-0.09199296,-0.007593979,0.025652334,-0.03210634,-0.010686523,0.014755353,-0.007143836,0.03767175,0.060284153,-0.053128626,-0.009640086,-0.012545558,0.017596519,-0.028435038,0.030305766,0.0012773552,0.006284471,0.021221051,0.013013239,-0.012791091,-0.020893674,-0.0008067507,-0.013480921,0.04323716,-0.009371169,0.00806166,-0.0028893952,0.020776752,0.04496758,-0.016064862,0.020788446,0.012791091,-0.0120428,0.02035584,0.014194136,0.036549315,0.0134692285,0.023828376,-0.0016953456,-0.0064598517,-0.0015813482,-0.024670202,0.0015141191,0.0240856,0.037975743,0.038724035,0.031170975,0.01324708,-0.0061266283,0.00358361,-0.0180642,-0.014778737,0.005191265,-0.016099937,0.03743791,-0.0084825745,-0.045622338,0.006208473,-0.019163253,-0.024155753,-0.01668454,-0.024857275,0.036058247,0.010353301,0.029159945,-0.013375693,-0.013738146,-0.020344147,0.0024597128,-0.013083392,0.011294509,-0.020881983,0.03916833,0.046861693,-0.0023544843,-0.00942963,-0.006880765,-0.01800574,-0.027078763,-0.014007063,0.014498129,0.011312048,0.02689169,0.029721163,0.026844922,0.0037794516,-0.00816689,0.017339293,0.018999564,0.03640901,0.054204293,-0.004162366,-0.010423453,-0.0014264288,-0.017409446,-0.025348341,-0.036292087,0.020215536,0.04419591,-0.039752934,0.0040922137,-0.0049866545,-0.0129197035,-0.020028463,-0.015304879,0.0037882207,-0.034772124,0.015491951,-0.016158398,-0.022682555,0.02930025,-0.0146852005,-0.046136785,0.020484453,-0.012323409,-0.039144948,0.025044348,0.0034491515,-0.0024889428,-0.028224582,0.021606889,0.018602034,-0.0096342405,-0.012358485,0.0016032709,0.026728,-0.0146852005,-0.019853082,-0.014182444,-0.007792744,-0.012837859,0.019970004,0.00900287,0.0013979294,0.0077167456,-0.012510481,0.03336908,0.04375161,-0.057665136,0.012405253,0.0022945628,-0.0050100386,0.033065088,0.011113283,-0.0058840187,0.035193037,-0.005732022,0.019911543,-0.0022741016,-0.07047961,0.028177815,-0.020227227,-0.031287897,0.01508273,0.0070502996,0.047750287,-0.025278188,-0.033556152,-0.028762415,0.036689617,0.00079140486,0.015363339,-0.0058986335,0.00049070024,-0.012241565,0.0017026531,-0.027663365,-0.0023442537,0.00725491,0.016544236,0.003878834,-0.034842275,0.04891949,-0.0102422265,-0.016462391,0.023746531,0.018508498,0.0019101868,0.05172558,-0.011943418,-0.020507837,0.0025839405,0.0028952411,-0.0049018874,0.04419591,-0.006874919,0.0053198775,-0.027382756,-0.0125572495,0.0240856,0.023711456,0.004992501,-0.0030457762,0.008675493,-0.00037451062,0.019818006,-0.04466359,0.012381869,-0.038326506,0.011160051,0.033673074,0.0025912481,0.012370178,-0.044078987,0.0049866545,0.018227888,-0.03182573,0.0119492635,0.00180642,0.02150166,0.014942426,0.011288663,-0.006570926,0.015971325,-0.04113259,-0.0054864893,-0.020823522,0.007558903,-0.043915298,0.010037616,-0.005471874,0.003256233,0.00041908651,0.03308847,-0.04506112,-0.002547403,0.008991178,-0.021945957,-0.04031415,0.021992726,0.006489082,-0.011773883,0.0058927876,-0.006541696,0.046861693,-0.019677702,-0.022214875,0.017584827,0.025254805,0.0007855589,0.0076349014,-0.022062877,0.010856058,-0.024646819,-0.02740614,-0.03329893,0.01725745,0.03589456,-0.0345149,-0.021373047,0.013843374,0.0034696127,0.0026555543,0.0051444974,0.004252979,0.024038833,-0.009681009,0.008798259,0.017736822,0.028715648,0.023699762,0.025839407,0.025909558,-0.041272897,0.0069976854,-0.003560226,0.005708638,0.010908673,0.026961843,0.033977065,-0.03004854,0.015152883,-0.006985993,-0.004200365,-0.010885288,0.010230534,-0.003297155,0.0164507,0.010873596,-0.031241128,-0.04115598,-0.024997579,-0.015176266,-0.038162816,-0.01875403,0.01949063,-0.05705715,0.010061,0.03577764,0.0271723,0.009301017,-0.0024991734,-0.0005860634,-0.026120014,0.032714326,-0.0122532565,-0.058460195,-0.014182444,0.011592656,-0.015012578,-0.022051185,-0.010791752,-0.014287672,0.0034842277,-0.031685427,0.008693031,0.010820982,0.0046446626,0.016415622,-0.004174058,0.0049281945,0.03257402,0.011884958,-0.012276641,0.047890592,-0.017467907,-0.016930072,-0.016357163,-0.0072782943,-0.0020256457,0.0043406696,-0.0032328488,0.0052789557,0.065709256,-0.008219504,-0.005167881,0.010949595,-0.005980478,0.0083013475,0.0054981816,0.028832568,-0.0073659844,0.026353857,-0.014755353,-0.033626303,-0.0074361367,-0.048545346,0.024576666,0.016719615,0.011750499,-0.016602695,0.030375917,-0.018321425,0.048311505,0.010195458,-0.04707215,0.022682555,0.004752814,-0.015410108,-0.0029098561,0.052707713,-0.0030837753,-0.0024582513,0.004451744,0.030866982,0.022168105,0.03584779,0.013293848,-0.016626079,0.014603357,0.0035573028,0.0070444536,0.057244223,-0.013235388,0.03004854,0.00021520659,-0.026821537,0.033252157,0.008862565,0.0030311611,0.013364,-0.010587141,0.012779399,0.007149682,0.011855728,-0.010318224,0.021829037,-0.009131483,-0.053596307,0.009055484,-0.0049603474,0.001791805,0.0032036186,0.01104313,-0.0361284,-0.017479599,-0.037835438,-0.013749838,0.016824843,-0.02035584,-0.0010004,0.000749752,-0.021069054,0.006956763,-0.00563264,-0.01731591,-0.011089899,-0.00013162679,-0.031732194,-0.0064364676,-0.0013241235,0.028598728,0.011563427,-0.008394884,0.023676379,0.00010130055,0.023243774,0.011124975,-0.03400045,0.0034491515,0.005430952,0.016240243,0.00008700521,-0.014673509,0.027148915,0.021782268,0.021910882,-0.0073484466,0.010516989,0.013749838,0.00042164416,0.0037911437,0.024997579,0.021139206,-0.0067696907,0.029113177,0.003548534,-0.0287858,0.003893449,0.008558572,0.0067112306,-0.0034462286,0.03720407,0.015760869,-0.0155387195,0.015293187,0.03227003,-0.04873242,-0.024296056,0.023723148,-0.0036888383,0.008038277,0.028505191,0.033065088,0.009587472,0.03217649,-0.0021688733,-0.011686193,-0.009797929,-0.00044429748,0.0023062546,-0.003975293,0.0024582513,0.016637772,0.008652109,0.026166784,-0.010014231,0.008991178,0.0107332915,-0.022448715,-0.016579311,-0.0586005,-0.010142844,-0.033392463,-0.008985332,-0.016743,-0.0067229224,-0.009037946,-0.00094851665,-0.0137732215,0.009675162,0.018087585,-0.016848229,0.007775206,0.015094423,-0.014042139,0.0076758238,-0.033392463,-0.009265941,0.016637772,0.020998903,-0.002222949,0.0126157105,0.002084106,0.0026073246,-0.01784205,-0.020063538,-0.019268481,-0.014650125,-0.010920364,-0.024693586,0.034725357,0.01743283,-0.014755353,0.053643074,-0.016906688,-0.019467246,-0.016824843,0.019759545,0.013153544,0.0076933615,0.011130821,0.01731591,-0.013036624,0.03928525,0.041951034,0.0035105348,-0.016427314,-0.04026738,-0.0015491951,0.023652995,-0.0073309084,-0.008353962,-0.030305766,0.0010142844,-0.005998016,0.013574458,-0.019163253,-0.006027246,-0.028107662,0.009055484,-0.011107437,-0.0023500999,0.009610856,-0.049667783,-0.033579536,-0.0099382335,0.023992063,-0.075530574,-0.034889046,-0.0061617047,-0.010552065,0.039659396,0.024179136,-0.02901964,0.016322086,-0.038794186,-0.005372492,-0.0314282,0.029113177,0.0005455067,-0.032386947,-0.0057787905,-0.0034988427,0.011563427,0.006898303,-0.008511804,0.025278188,0.02053122,0.024623435,-0.0240856,0.023080084,0.020157075,-0.020952133,0.010008385,-0.04524819,-0.0048989644,-0.0016310394,0.0029040102,-0.008687185,0.0214432,-0.027031993,0.008997024,-0.012592326,-0.0020855675,0.0024202522,-0.0037560675,0.0397997,0.0014629664,-0.0023457154,-0.038794186,0.013948603,0.011312048,-0.009686855,-0.031568505,0.0054221833,0.036034863,0.019829698,0.02958086,0.013515997,-0.0031714656,-0.02649416,0.011686193,0.03016546,0.006793075,-0.003948986,-0.007430291,-0.0066118483,-0.00082428876,-0.0038291428,-0.025792638,0.015819328,-0.0126157105,0.007792744,-0.017830359,-0.003244541,0.023629611,0.0298147,0.017736822,-0.021992726,0.016310394,-0.014638433,-0.018438345,-0.03067991,-0.006845689,-0.0029069332,0.013340617,0.014977502,-0.033509385,-0.015947942,0.0028265505,-0.0048463503,0.034725357,-0.023489306,0.019186636,0.005159112,-0.009587472,0.021337971,-0.00064452365,0.037835438,-0.028622111,-0.011025593,-0.026003094,-0.0062260106,-0.016836537,-0.011200974,0.020671524,-0.050930522,-0.01364461,0.005495258,0.020800138,0.041763965,0.051024057,-0.0017011916,0.019747853,-0.016988533,-0.016216857,-0.022425331,-0.0040366766,0.0026570158,0.030469453,-0.0029083947,-0.0045131273,-0.04948071,-0.0038379119,0.013515997,-0.016930072,-0.007821974,0.013060007,-0.024763739,0.013282157,-0.005676485,0.00089371024,-0.014369516,-0.013948603,0.014030447,0.012908011,-0.009242557,-0.03762498,-0.0040980596,-0.0042705173,-0.01032407,-0.01737437,-0.010353301,0.024062216,-0.0032036186,-0.026236935,0.0067112306,0.04403222,-0.002866011,-0.010335762,0.01605317,0.006933379,-0.033626303,0.04760998,-0.015129498,0.0065300036,-0.014463052,0.018894335,-0.0011757807,-0.014708585,0.04569249,-0.025091115,-0.008704723,0.01433444,0.021291204,0.00002502827,0.028037509,-0.00816689,-0.011563427,-0.021337971,-0.04089875,-0.016836537,-0.013609533,0.02373484,0.025254805,0.013656301,-0.0240856,-0.001221818,-0.016368855,0.04873242,-0.0054747975,0.023863452,-0.020203844,-0.04506112,0.014802122,0.010569603,-0.018485114,0.036946844,-0.014591665,0.014147367,0.026330471,-0.022285026,0.042348564,0.039986774,0.010949595,0.0004713353,0.005998016,0.041109208,0.0138316825,-0.03360292,0.015947942,-0.0008023662,-0.014088907,0.015866097,-0.043891914,-0.010470221,-0.014463052,0.016672848,-0.045154653,0.009716084,0.020823522,-0.041740578,-0.015199651,0.03241033,-0.024319442,-0.0107332915,0.009125637,0.004521896]},{"id":"guide-attachments-2","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Attachment Flags\nMessageAttachmentFlags: IS_SPOILER (8) blurs until clicked, CONTAINS_EXPLICIT_MEDIA (16) for explicit content, IS_ANIMATED (32) for GIFs and animated WebP. Combine with bitwise OR.\n\n```javascript\nimport { MessageAttachmentFlags } from '@fluxerjs/core';\n\n// Spoiler (blurred until clicked)\nflags: MessageAttachmentFlags.IS_SPOILER\n\n// Animated image (GIF, animated WebP)\nflags: MessageAttachmentFlags.IS_ANIMATED\n\n// Combine flags\nflags: MessageAttachmentFlags.IS_SPOILER | MessageAttachmentFlags.IS_ANIMATED\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.025753293,0.014850154,-0.045201782,0.015957402,-0.008454166,-0.035353787,-0.036682483,-0.027590021,0.028032921,-0.018002555,0.022353388,0.007692119,0.0318627,-0.04061647,-0.024750255,0.046165742,-0.0036897422,0.014771995,-0.0012847336,0.020946532,-0.004940281,0.031107163,0.00011469382,0.040642526,-0.011704266,0.005920522,-0.00020964444,0.030143207,0.055440575,0.03295692,0.021636935,-0.030429788,0.050620787,-0.020373369,-0.011697752,0.028762402,-0.016374249,0.016009508,-0.0188623,0.004608107,0.007920082,0.0068779658,0.01934428,0.0012155307,0.0462439,0.06580963,0.02635251,0.0008483476,-0.022522733,0.047624703,0.014550545,0.04462862,0.010167144,0.060651153,-0.031315587,0.03556221,-0.03603116,0.010981298,-0.0017895086,-0.007438103,-0.007783304,-0.0012025043,-0.030976899,-0.0016999518,0.00042539503,0.011306959,-0.03564037,0.039079353,0.052392382,0.0145896245,0.04092911,0.015123709,0.029882677,0.011482816,0.024567885,0.002094002,0.0052822256,-0.01508463,0.011814991,-0.057785336,0.0010111782,0.050646838,-0.0430915,0.008812394,-0.06315223,0.053095814,-0.036786698,-0.0046634693,-0.09014304,-0.0049923873,-0.060286414,0.013599615,-0.07852344,-0.01464173,-0.021128902,-0.0015688732,-0.034806676,-0.020008627,-0.025193155,0.013586588,0.06481962,-0.020816268,-0.03913146,-0.0063666776,0.02631343,-0.0019604808,0.0022438061,0.020373369,-0.010942219,0.01242072,-0.010655637,-0.014329095,-0.02473723,0.064402774,0.02003468,-0.06382961,-0.042570442,0.014407254,0.042700704,0.009554901,-0.043768875,-0.02990873,0.06867544,0.00041440397,-0.0034585227,-0.0133390855,0.00502821,-0.029075038,-0.048849188,-0.029986888,0.02007376,-0.020581791,0.07378182,-0.063621186,-0.0130329635,0.023838405,0.018953485,0.038011182,-0.059400614,0.019969549,0.0104016205,-0.02686054,0.025766319,0.008376008,-0.03306113,-0.008043833,-0.062474858,0.021884438,-0.022366416,-0.010890112,-0.009476743,0.03790697,-0.007281786,0.016765041,-0.020412449,-0.03681275,0.027980816,0.018380322,-0.018367296,-0.023656035,-0.037594337,-0.024867494,0.021988649,-0.05408582,0.0066369767,0.0018171899,0.036682483,-0.0034520093,-0.02613106,0.035588264,-0.0026720506,-0.03553616,0.004683009,-0.038740665,0.034051143,0.027590021,0.022457602,-0.026665144,-0.00030591805,-0.004950051,0.02316103,0.069665454,-0.027798446,-0.032722443,-0.0156187145,0.014263963,0.03548405,0.0008532325,-0.02110285,-0.039913043,-0.013860144,0.010955245,0.036343798,0.005331075,0.016465433,-0.029882677,0.0020272413,-0.021519696,0.038323816,-0.010492806,0.0021184266,0.038506187,0.026704224,-0.0114763025,-0.032748498,0.03277455,0.026704224,0.033347715,-0.022652997,0.0073013254,0.019461516,0.023069844,-0.004044713,0.016335169,0.0021672756,-0.011495843,-0.0076269866,0.02209286,-0.008877526,0.030325577,-0.05846271,0.009515822,0.042335965,-0.010864059,-0.019839285,0.03636985,-0.017025571,0.00483607,-0.0664349,0.037047226,0.014941338,-0.0070929024,-0.016712936,-0.056691114,0.0009598866,-0.028892668,-0.014889233,-0.023434585,0.03553616,-0.028840562,0.02209286,0.010375568,0.035770632,0.008395547,-0.03240981,-0.008245743,-0.0009085949,0.0041912603,0.00399912,0.015579635,0.068988085,-0.023734193,0.00097047054,-0.015280026,0.019331252,-0.03537984,-0.021259168,0.045332048,0.01666083,-0.006767241,0.0032224183,-0.026886594,-0.027173176,-0.052418437,-0.0026134315,0.043847032,0.0350151,0.030325577,-0.018302163,-0.029960835,0.032696392,0.018914405,0.000059026104,0.031237429,-0.025883557,0.009457203,-0.009183648,-0.026052902,-0.0113004455,0.013352112,0.00461462,-0.031002952,-0.0336864,-0.015801085,-0.03566642,-0.011437223,0.010225764,-0.025193155,0.024984732,-0.011430711,0.008108965,-0.03790697,0.030742424,-0.0040609958,-0.018067688,0.086183,-0.007425077,-0.021780225,0.01801558,-0.013273953,-0.028423715,-0.04147622,0.007425077,-0.015788058,0.055023726,0.009040357,-0.017963475,0.02213194,-0.018380322,-0.019279147,0.01750755,-0.034546148,-0.03423351,-0.016530566,-0.04488915,-0.0054027205,-0.005236633,0.02433341,0.025557896,-0.0010746822,0.011189721,0.025128024,0.032227438,-0.06846702,-0.00054588966,-0.009164108,-0.011639133,0.0126161175,0.014159752,0.035067204,-0.012127626,0.025961716,-0.010427673,-0.011319986,0.0018334729,-0.03285271,-0.010408134,-0.011430711,-0.04095516,0.031107163,-0.023460638,-0.0050477497,0.011704266,-0.020047707,-0.041710693,-0.048015498,-0.067216486,-0.01761176,0.022223124,-0.0069496115,-0.025336446,0.019969549,-0.027459757,-0.024633018,-0.010557938,-0.007920082,0.014159752,-0.042804915,0.00091510813,0.02653488,-0.06690385,0.026183166,0.0012049467,0.0050054137,-0.008968711,-0.0060442733,-0.038844876,-0.01948757,0.059035875,-0.019513624,-0.0019849055,0.061172213,0.009607007,-0.026782382,0.006890992,0.00028108637,-0.01621793,-0.004660213,-0.008434626,-0.014902259,0.019383358,0.06403803,-0.001929543,-0.00362461,0.00014960064,-0.025310393,0.012752895,-0.021519696,-0.027902657,0.012199271,0.020751135,0.025701188,-0.051324215,0.028814508,-0.016895307,0.078731865,0.025636055,0.045853104,0.0068128337,-0.024580913,0.00034723632,0.009444176,-0.024255252,0.021441538,0.039287776,0.0070212567,-0.002556441,0.015840163,0.016113719,-0.008135018,0.0453581,0.00823923,0.019057697,-0.025518816,0.022731157,0.032357704,0.02928346,-0.015345159,-0.00043435072,-0.00067493296,-0.0018171899,0.0032045068,-0.011547948,0.014745942,0.011743345,-0.0032419579,0.036213532,-0.062631175,0.07649132,-0.06471541,-0.044237826,-0.004731858,0.007464156,-0.0026085468,0.043925192,-0.010851033,0.023317346,-0.005549268,-0.01692136,-0.028814508,-0.032253493,0.007965675,0.008734235,0.0041652075,-0.034598254,0.021220088,-0.02730344,-0.015240947,0.02587053,-0.021858385,-0.05036026,-0.0014092991,-0.042153593,-0.0020874888,-0.021988649,0.040303838,-0.018536638,0.0078810025,0.05799376,-0.023564849,-0.0069886907,0.03321745,-0.02249668,0.03655222,0.018171899,-0.04337808,-0.028397663,-0.04113753,0.028032921,0.013990408,0.010329975,0.0035790172,0.02304379,0.036317743,0.039548304,-0.067060165,0.05163685,-0.07748133,0.02124614,-0.0055297283,0.032383755,0.010557938,-0.010668663,-0.035796687,-0.03548405,0.123907596,0.076908164,-0.025961716,-0.007607447,-0.04356045,-0.039444093,-0.016752016,0.049865253,-0.014889233,0.020360341,-0.030742424,-0.00053408445,-0.029231355,0.03306113,-0.015110683,0.035692476,-0.006164768,-0.015319106,-0.025375526,0.019422438,-0.009457203,-0.015345159,0.012179731,-0.045748893,0.0147198895,0.011587027,0.0045657707,0.010792415,0.0045201783,-0.026886594,-0.009333452,-0.025297366,0.05757691,-0.008597458,-0.05538847,-0.013847117,-0.0022193815,0.039313827,-0.008981737,0.00027213068,-0.013326059,-0.026678171,-0.051115792,-0.047129698,-0.058045864,0.04329992,-0.01783321,0.007965675,-0.017742025,-0.041684642,0.0022714874,-0.008356468,-0.022470627,-0.0008426485,-0.0193052,-0.00331686,0.013886197,0.03420746,0.02110285,-0.006936585,-0.004217313,-0.010219251,0.042075437,0.0021672756,-0.00155259,-0.0013490518,-0.041450165,-0.0021737888,-0.016465433,0.0041293846,0.024906574,-0.00884496,-0.0020760905,0.00018776408,-0.0035008586,0.002131453,-0.050777104,-0.03556221,-0.0021509926,0.0057576913,0.010597018,0.016895307,0.03725565,0.039470144,0.014811074,0.015840163,0.018784141,-0.023174055,0.0072687594,0.02366906,-0.012564012,-0.029596096,-0.009079436,-0.01783321,-0.0028576776,-0.01005642,-0.011977822,-0.004953308,0.008265283,-0.014133699,-0.010903139,-0.014902259,0.027329493,-0.00057438505,-0.0082978485,0.0133390855,-0.0073078386,-0.0016250497,-0.013221847,-0.013052504,-0.0034878321,0.020269157,0.0036929988,-0.025518816,0.0018888353,0.020790216,-0.032279544,-0.0038102367,-0.0083629815,-0.003673459,0.02029521,-0.023682088,-0.057889547,0.033530083,0.00011072483,0.00801778,0.035327733,-0.05270502,-0.038636453,-0.02719923,0.019917443,0.009997801,0.00092894875,0.026808435,-0.010251816,-0.0026671658,-0.0058944686,-0.013319545,0.023564849,0.012127626,0.021597855,-0.0067542144,-0.018953485,0.039313827,0.045853104,-0.0038883954,-0.0029651457,-0.008721208,0.013521455,0.014941338,-0.032253493,0.006591384,0.0009737272,0.0075618546,0.015123709,0.055127937,-0.016817147,0.06950914,-0.0060377596,0.035692476,-0.0014630333,-0.019214014,0.01754663,-0.032904815,0.008148044,-0.015371212,0.005086829,-0.028319504,-0.0029293231,-0.004767681,-0.03769855,0.016335169,0.025896583,-0.034884833,-0.0027143867,0.00959398,-0.007542315,-0.016504513,0.005559038,-0.040877003,-0.00959398,-0.026144085,-0.022626944,-0.01912283,-0.028319504,-0.015045551,0.03214928,0.008740748,-0.014342122,0.002891872,-0.042804915,-0.024580913,-0.023356427,0.018575719,0.027563969,0.009659113,0.0359009,-0.040798843,-0.018145846,-0.023330374,0.0057381513,-0.034884833,0.04283097,-0.0031751974,0.00014766703,-0.021181008,0.01716886,-0.00682586,-0.025636055,0.02730344,0.045488365,0.026626065,0.026365535,0.014889233,-0.025088944,-0.017729,0.022210099,-0.058514815,0.00006935567,0.04778102,-0.058150075,0.032383755,0.014394227,0.059296403,-0.022809315,-0.025792371,0.015801085,-0.028163185,0.015827138,-0.0018758089,0.013221847,0.007828897,-0.017989527,0.0150716035,0.0029993402,-0.013156715,-0.03089874,-0.028058974,0.038636453,-0.001727633,-0.018888352,0.014954365,0.003924218,-0.01827611,0.015957402,-0.022835368,0.00682586,0.0031002953,0.015123709,-0.029361619,0.04249228,0.0027339263,0.0028397662,-0.015188841,-0.006715135,0.04085095,0.0130329635,0.04543626,0.00502821,-0.010831494,-0.0132479,-0.054294247,-0.021076797,-0.02792871,-0.0032468429,-0.017312152,0.010310436,0.01692136,-0.005246403,-0.018888352,-0.021558776,-0.0026085468,-0.006858426,0.010505833,0.012342562,0.02510197,0.0808161,-0.03600511,0.03071637,-0.013326059,-0.021845357,-0.026026849,-0.0045201783,-0.0056762756,-0.030820582,-0.00583585,0.018510586,-0.02142851,-0.012381641,0.026665144,-0.0017943935,-0.0229005,-0.005497162,-0.030742424,0.013124149,0.009802404,-0.004428993,-0.008323902,-0.0039405013,-0.0027974301,-0.012205784,-0.020790216,-0.030742424,-0.039418038,0.003136118,-0.0039795805,-0.0045299483,0.02120706,-0.040981214,-0.00623967,0.01486318,0.0012163448,-0.117446475,-0.0117172925,0.043325976,-0.03548405,-0.03342587,0.027511863,-0.023864457,0.04697338,0.05189738,-0.03530168,0.0122644035,0.004428993,0.018575719,-0.027225282,0.029153196,-0.012837567,0.01739031,-0.0005906681,0.01603556,-0.02293958,-0.004223827,-0.004656956,-0.015475423,0.013019937,-0.019031644,0.022301283,-0.00018491453,-0.0029895704,0.01593135,0.00016954739,0.012199271,0.008486733,-0.003943758,-0.009118515,0.014902259,0.0065523046,0.0063959872,0.034285616,-0.0031507728,0.0066597727,0.0037255648,-0.010792415,0.01169124,-0.014850154,0.0021884437,0.013456323,0.02518013,-0.008069886,-0.007887516,-0.0012114599,-0.024359463,-0.03556221,0.028944774,-0.01732518,0.011593541,-0.008571404,-0.04194517,0.008988251,-0.022652997,-0.021493644,-0.020907452,-0.00864305,0.051793166,0.011385118,0.020177972,-0.018627824,-0.020816268,-0.038297765,0.0041814907,-0.027173176,0.011808477,-0.020503633,0.035458,0.033477977,-0.010564451,-0.010935705,-0.013234873,-0.036135375,-0.022522733,0.0051421914,0.020386396,0.016804121,0.024450647,0.0113655785,0.038636453,0.0052529164,-0.010069447,0.0018806938,0.018953485,0.017676894,0.05773323,-0.018041633,0.0021591343,-0.003937245,-0.03537984,-0.035588264,-0.014993444,0.023213135,0.0574727,-0.035431944,0.02873635,-0.016973466,-0.008102452,-0.047051538,-0.0069886907,-0.0038460596,-0.008636537,0.027772393,-0.0073534315,-0.016738988,0.013124149,-0.020959558,-0.035588264,0.021988649,-0.025258288,-0.049891304,0.014224884,0.011391631,-0.035692476,-0.017924396,0.016986491,-0.0002912633,-0.0013482376,-0.026521854,0.012296969,0.03045584,-0.026196191,-0.023095896,-0.0061745374,0.020321263,-0.0050640325,0.0011845928,0.013072043,-0.019513624,0.0043247817,-0.025649082,0.013612641,0.027225282,-0.040251732,0.01183453,-0.010701229,-0.020438502,0.056170054,0.017142808,-0.016413327,0.02168904,-0.025349474,0.013300006,0.0016738989,-0.0574727,0.013306519,-0.020308236,-0.04608758,-0.013860144,0.015058577,0.044810988,-0.020568766,-0.022978658,-0.021024691,0.021128902,0.0018692956,0.014732916,-0.0072101406,-0.029570043,-0.00028108637,-0.00024628133,-0.05215791,-0.011333012,0.03170638,0.04069463,-0.00765304,-0.054294247,0.04921393,-0.015722925,-0.022418521,0.029413726,0.014290016,-0.021728119,0.020490607,-0.002971659,0.0029325797,0.009730758,0.013456323,-0.013111123,0.058410604,0.0051487046,0.004940281,-0.023538796,-0.0045266915,0.03564037,0.03233165,0.016778069,-0.008936145,0.0076725795,-0.00401866,0.02429433,-0.047103643,0.007346918,-0.014615677,0.020125866,0.015605688,-0.014732916,0.0000122250185,-0.039860938,-0.00642204,0.011222287,-0.011170181,0.011339525,-0.0041293846,0.0063666776,-0.013130662,0.003013995,-0.02587053,0.02686054,-0.00091347983,0.010505833,-0.023577875,-0.01183453,-0.04408151,0.027433705,-0.0061191753,-0.025310393,0.0010136206,0.0034943454,-0.047494438,0.011593541,0.009965234,-0.031211376,0.002743696,0.020243105,0.0033282582,0.014993444,-0.009098976,-0.000590261,0.05181922,-0.021298246,-0.022366416,0.01581411,0.030481894,0.02590961,0.018666904,-0.02348669,-0.007001717,-0.019682966,-0.011189721,-0.044602565,0.013182768,0.013899223,-0.0071645477,-0.021662988,0.0027404395,-0.006347138,0.0010730538,0.01783321,-0.01776808,0.019604808,0.010271356,0.0056795324,0.011456763,0.01365172,0.021571802,0.00045796114,0.022405494,-0.043873087,0.026000796,0.010675176,0.002040268,0.026000796,0.025167102,0.0057609477,-0.022340363,0.01306553,-0.0108835995,0.0035985569,-0.018562691,0.0005699072,-0.009033844,0.024281304,-0.005204067,-0.024398541,-0.050724998,-0.037047226,-0.014263963,-0.014758969,-0.013729879,0.04061647,-0.029413726,0.0048393263,0.03384272,0.032461915,0.015201868,0.0065034553,0.007034283,-0.034285616,0.02249668,0.0014443077,-0.0213243,-0.03126348,0.027590021,0.0047123185,-0.009828457,0.0012057609,-0.020712057,0.0016494743,-0.012270916,-0.006747701,0.00858443,0.014472387,0.01304599,-0.021597855,0.024255252,0.020373369,0.020816268,-0.01607464,0.045279942,-0.009346479,-0.012609604,-0.015332133,-0.0055394983,-0.026339483,0.01328698,0.0052170935,0.022470627,0.074407086,-0.0016673857,-0.0029879422,0.012752895,-0.006168024,0.0013482376,-0.010369055,-0.0113655785,-0.01003688,0.032748498,-0.03115927,-0.03618748,0.010095499,-0.07227075,0.03871461,0.0031719408,0.031237429,-0.027277388,0.022835368,-0.0156187145,0.03548405,0.004950051,-0.022418521,0.009151082,-0.030377682,-0.03233165,-0.013521455,0.07310444,-0.0051487046,0.014316069,-0.004119615,0.006734675,0.009724245,0.02073811,0.03332166,-0.015240947,0.009952208,0.0130329635,-0.010316948,0.045488365,-0.008623511,0.011424197,-0.0040968186,-0.028580032,0.025792371,0.029752413,0.009802404,-0.020803241,-0.0050672893,0.028032921,0.019539677,0.0069496115,0.018614797,0.021298246,-0.00165843,-0.017924396,0.0026394846,-0.005379924,0.00067696837,-0.003046561,0.02164996,-0.012772434,-0.016296089,-0.03556221,0.008271796,0.026248299,-0.014524492,-0.013352112,-0.011658673,-0.025232235,0.03879277,0.012205784,-0.018745063,-0.030325577,0.0022600892,-0.023473663,-0.03827171,-0.003013995,0.024059854,0.009125029,-0.0038297765,0.0029146683,0.0018758089,-0.0039893505,-0.0060898657,-0.0117172925,0.003082384,0.003657176,0.02253576,0.003189852,-0.004731858,0.0264958,0.030560052,0.032461915,-0.02322616,-0.0094376635,0.047259964,0.0044908687,-0.0013107866,0.0085388385,0.009379044,0.010004314,0.014042513,-0.015801085,-0.02473723,0.009600494,0.016139772,-0.00086544483,-0.019617835,0.029361619,0.017207941,-0.00030266144,0.008766801,0.02910109,-0.04778102,-0.030924793,0.020490607,-0.01908375,0.0021965853,0.03196691,0.015735952,0.004722088,0.027329493,0.014537519,-0.019240068,-0.0016071383,-0.009763325,0.019357305,-0.016960438,-0.03045584,-0.0020337545,0.023916563,0.02792871,-0.047807075,-0.01247934,0.01445936,-0.01732518,0.0030807555,-0.05450267,0.00821969,-0.03420746,-0.0019946753,-0.015006471,0.006161511,-0.02136338,0.002668794,-0.041684642,0.000430687,-0.005129165,0.00097616966,-0.0035529644,0.003556221,-0.015201868,0.029413726,-0.011534922,-0.011137615,0.005331075,0.042570442,0.021662988,0.009177134,-0.007438103,-0.010199711,-0.021506669,-0.011385118,-0.010349515,-0.024085907,-0.027590021,-0.00040687303,0.024567885,0.029986888,-0.010629584,0.043065444,-0.005848876,-0.028970826,-0.012140652,0.01343027,-0.0076660663,-0.0068975054,0.007216654,0.006936585,-0.014003434,0.03214928,0.031654276,-0.0014190689,-0.027277388,-0.039313827,0.014420281,-0.01025833,-0.000043938828,-0.0051812707,-0.017129783,0.018927433,-0.0018546409,0.006597897,-0.02047758,-0.015475423,0.003136118,-0.019214014,-0.0142379105,-0.0076204734,0.0094376635,-0.015188841,-0.024789335,-0.0030921537,0.013821064,-0.08738143,-0.013677773,-0.0018481277,-0.057420593,0.007314352,0.027590021,0.007802844,0.003937245,-0.022118913,-0.010668663,-0.026235271,0.029022932,0.0000064846026,-0.05049052,-0.03350403,-0.007548828,0.0048914324,0.019539677,-0.003572504,0.05596163,0.03467641,0.009548388,-0.026600013,0.005474366,0.016243983,-0.025010785,0.012212297,-0.032461915,-0.0013059017,-0.031810593,0.015579635,-0.014342122,0.031211376,-0.014824101,0.013326059,-0.024489727,0.005884699,-0.0043834005,-0.013000398,0.034494042,-0.002758351,0.011867097,-0.042179648,0.028710296,0.017520577,0.00441271,-0.039391987,0.013638694,0.02065995,0.0071580345,0.0269387,-0.010518859,0.0041814907,-0.012251377,-0.004184747,0.009177134,0.029596096,0.010479779,-0.014290016,0.016009508,-0.008102452,0.015514502,-0.032670338,-0.004354091,-0.026990805,-0.00664349,-0.039991204,0.016452407,0.009339965,0.0056209136,-0.009952208,-0.011163668,0.023994721,0.0026785638,-0.0106426105,-0.021793252,0.0011927343,-0.033191394,0.0031393745,0.0024636274,-0.02092048,-0.018875327,-0.018250057,-0.01666083,0.038662504,-0.032201387,0.020725083,-0.00043557194,-0.009600494,0.030038996,0.0073404047,0.022926552,-0.022965632,-0.017663866,-0.019135855,-0.007939622,0.005301765,-0.02322616,0.03603116,-0.055284254,-0.037776705,-0.002020728,0.010349515,0.02326524,0.019943496,0.00947023,0.0045429748,-0.0029097833,-0.021702066,-0.004223827,0.0055525247,-0.0044941255,0.021532722,-0.00035517433,-0.0021917003,-0.049318142,0.002940721,0.021806277,-0.016504513,-0.007900543,0.0042010304,-0.013482376,-0.0014329095,0.0008630023,0.0054352866,-0.01669991,-0.00007937993,0.008812394,0.017181888,-0.0021119134,-0.010277869,0.016856227,-0.0069170455,0.007425077,-0.013150202,-0.0028446512,0.007438103,0.03691696,-0.0096526,0.013228361,0.033477977,-0.017859263,-0.020243105,0.02546671,0.0193052,-0.014355148,0.04069463,-0.009841483,0.006747701,-0.010694716,0.028085027,0.0076465267,-0.026248299,0.008043833,0.005581834,0.005666506,0.019005591,0.012303483,-0.0002120869,0.0048165303,-0.011645647,-0.027173176,-0.035874844,-0.01742939,0.018771116,-0.020607844,0.030481894,0.007783304,0.02249668,-0.020464554,0.0014312812,-0.0172861,0.052835282,0.018758088,0.018771116,-0.021389432,-0.02168904,-0.005607887,0.018184924,-0.031289533,0.060494836,-0.0150716035,0.015188841,0.019826258,-0.014316069,0.036838803,0.039001193,-0.002759979,-0.023291294,0.00864305,0.022548785,0.0071840873,-0.03420746,0.011039916,-0.004937025,-0.0058716726,0.005161731,-0.02385143,-0.021923516,-0.006995204,0.008349955,-0.02811108,0.013638694,-0.005943318,-0.03384272,-0.013625667,0.019774152,-0.025935663,-0.02164996,-0.000021664107,0.011925715]},{"id":"guide-attachments-by-url-0","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Using a URL\nPass { name, url } in the files array. The SDK fetches the URL (30s timeout), validates it with URL.canParse(), and uploads the result. Works with channel.send(), message.reply(), message.send(), webhook.send(), and client.channels.send().\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!attachurl') {\n await message.reply({\n content: 'Image from URL:',\n files: [\n {\n name: 'image.png',\n url: 'https://example.com/image.png',\n },\n ],\n });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.048690476,0.0066431537,-0.011793965,-0.024545701,0.009544313,-0.039535955,-0.042253353,0.04570579,-0.0045187925,0.026617164,-0.0142440805,-0.014288628,0.058179107,-0.06664314,-0.044324815,0.026260782,0.009455218,-0.024167048,0.027329924,-0.010708118,0.011871923,0.030359158,0.0069605554,0.04087238,-0.032586534,-0.035281662,-0.015424591,0.020202316,0.012941064,-0.037709504,0.038422264,-0.022596747,-0.003975869,0.031450573,-0.043812517,0.089540586,0.04069419,0.059649173,-0.032230154,-0.004549419,-0.015012526,0.010769371,0.023498835,0.0042208806,0.0011714614,0.020625517,-0.023988858,-0.004270997,-0.021182362,0.046329457,-0.008285845,0.034836188,0.008263571,0.012373083,-0.0058301613,0.022340598,-0.007032945,0.025548022,-0.058580033,0.0077011585,-0.004045475,-0.025392106,-0.001957308,0.0143331755,-0.007233409,0.009744777,-0.049804166,0.0204696,0.018732246,0.06610857,0.044770293,0.042943843,0.07528537,-0.013787468,0.015836656,-0.009483061,-0.011727143,0.0042821337,0.013976795,-0.04517122,0.01471183,-0.023699299,-0.079428285,-0.042943843,-0.074349865,0.05572899,-0.048334096,-0.057199057,-0.010184685,0.017585147,0.010457538,0.024679344,-0.06209929,-0.007784685,0.047398597,0.026260782,-0.03563804,-0.0031183288,0.007461715,0.01595916,0.052477017,-0.028376792,-0.056931775,-0.026327604,0.011437585,-0.02029141,0.03628398,0.02978004,0.028978184,-0.0066654277,-0.04681948,-0.0059415298,0.01034617,0.034925282,0.044837113,-0.022774937,0.025637116,0.038645003,0.02978004,-0.030336885,-0.04784407,0.013074707,0.07626541,-0.028978184,0.013787468,-0.035459854,-0.004064964,0.006854755,-0.07377075,-0.028042685,0.07978467,-0.014010206,0.034925282,-0.01374292,-0.0023805099,-0.03260881,0.026461247,-0.005061716,-0.04194152,0.009354986,0.019879345,-0.06446031,0.063480265,-0.013308582,-0.030448252,0.028733172,-0.058669128,0.050160546,0.0005133409,-0.02895591,-0.036417626,-0.013609278,-0.014645008,0.031049645,-0.009455218,-0.012785148,-0.0011596285,0.031873774,-0.041651964,-0.03425707,0.011660323,-0.029713219,0.014633872,-0.05136333,-0.014734103,-0.0024417627,0.039914608,-0.008040833,-0.013275171,0.030425979,0.010290485,-0.00090904854,0.023164729,0.034635723,0.047220405,-0.034657996,0.017206492,-0.01134292,0.008430624,0.010496518,0.013341992,0.011693733,0.010780508,-0.012941064,-0.03171786,0.010357306,0.023610203,0.046284907,-0.01613735,0.011649185,-0.028220875,-0.025859855,-0.025392106,-0.014288628,0.058713675,0.009616703,0.008191181,0.0058858455,0.038244076,-0.016872386,-0.024902083,0.020102084,0.030247789,-0.025436653,-0.012874243,0.012629231,-0.00987842,0.032051966,-0.010262643,0.003825521,0.026327604,0.053056136,0.011638048,0.0062645,-0.03490301,0.002319257,0.010156842,0.034836188,-0.015836656,-0.016304405,-0.054526206,-0.014043616,0.05532806,-0.03354431,-0.025793033,0.03113874,0.009544313,-0.030515075,-0.0065317852,0.021048719,0.02283062,0.033922963,-0.020447327,-0.04370115,0.05229883,0.02340974,0.05991646,0.013275171,-0.01134849,-0.015168442,-0.011916471,-0.02043619,0.00086310884,-0.017462641,-0.013397677,-0.03768723,-0.013876563,-0.021683522,0.047621336,0.027352197,0.048111357,-0.025369832,0.013408814,-0.025147093,0.04073874,-0.02594895,-0.045794886,0.010028768,0.025637116,-0.023810668,0.039313216,-0.0062589315,-0.03171786,-0.005752203,-0.004502087,0.007294662,0.003959164,0.040382355,-0.01600371,0.022919716,0.012016702,0.0051090475,0.019289091,-0.007083061,-0.024211595,0.0013823663,0.015936887,-0.022808347,-0.014299764,0.037887692,0.010496518,0.005768908,-0.05608537,0.007261251,0.004262644,0.004162412,0.009967515,-0.023342919,0.01613735,0.010151274,-0.008129928,-0.027797673,0.024100227,-0.009644546,0.009611134,0.076889075,0.022206955,0.027263103,0.034212522,0.056842677,-0.03666264,0.0041067274,0.033588856,-0.015658464,-0.02176148,0.007762411,-0.026438974,0.029445933,0.025793033,-0.01492343,0.020993035,0.015324359,-0.049625974,-0.0010712295,-0.004451971,-0.006726681,-0.016549416,0.031450573,0.018698836,0.046195813,0.013375403,0.0019823662,0.011242689,-0.032876093,-0.036528993,-0.04158514,-0.03191832,-0.0076955897,-0.0072556827,-0.0064872373,0.031806953,-0.0036306255,0.018342456,-0.03615034,0.04877957,-0.018865889,-0.016783291,0.004323897,-0.018064033,0.060050104,-0.03926867,-0.03721948,0.016270993,0.031116467,-0.03096055,-0.00930487,0.0067879334,0.019890483,0.005599071,-0.014934568,-0.023387466,0.01589234,-0.023565656,0.011949881,-0.0036696047,-0.0124510415,-0.013408814,-0.08343757,-0.019133175,-0.04445846,-0.038645003,0.031250108,0.016683059,0.029713219,0.0074505783,0.0068491865,0.0035387464,-0.079561934,-0.0030682127,-0.040894654,-0.018375866,0.008798142,0.026728531,0.024567977,-0.0048473305,0.0117494175,-0.014032479,0.025793033,-0.0045076557,0.04430254,0.009444081,0.061119244,-0.02247424,-0.05100695,-0.019155448,-0.018175403,-0.007005103,-0.0359276,-0.004012064,-0.005969372,-0.0059749405,0.019823661,-0.032742452,0.027285377,0.018687699,0.033566583,0.07889371,0.03162876,-0.019690018,-0.01341995,0.012896516,0.03171786,0.0012250578,0.007584221,0.056486297,0.02312018,0.0018626446,-0.022318324,0.003096055,-0.021850575,-0.020235727,0.012406494,0.033366118,-0.030604169,0.030648718,0.040360082,-0.017128535,0.026528068,-0.00034802777,0.0050477944,-0.028911361,0.007116472,-0.00015522038,-0.015491412,0.011793965,-0.059515532,0.067444995,-0.025458926,0.039558228,-0.054659847,-0.060540125,-0.071677014,0.015914613,-0.018264497,0.038221803,-0.04953688,0.0500269,-0.019723428,-0.028688625,0.005693734,-0.017161945,-0.014845472,-0.0062255207,0.025882129,-0.011782828,0.007044082,-0.03200742,0.029802313,0.01996844,0.04681948,-0.03855591,-0.057109963,0.008291413,0.0018904868,0.00018758696,0.020770296,-0.032296978,-0.015691876,0.052165184,0.0058078873,-0.030470526,0.048467737,-0.026327604,-0.02193967,0.023565656,-0.020280274,-0.050516926,0.020090947,-0.015357769,-0.029579576,0.012506725,0.030515075,0.037709504,0.014210669,-0.021238046,-0.04321113,0.008469604,-0.06410393,0.0039953585,0.03113874,0.021427372,0.009845009,-0.035014376,-0.04530486,-0.04641855,0.10174661,0.06330207,-0.00449095,0.037419945,-0.0041150805,-0.011949881,0.005729929,0.032341525,-0.009900694,0.0020018558,-0.039023656,0.010841761,-0.01839814,0.038711824,-0.005802319,-0.005841298,-0.034992103,-0.026238509,0.0047693723,0.020636654,0.004379581,-0.03207424,-0.023365192,0.031695586,0.04269883,0.061341982,-0.01141531,0.019222269,0.03131693,-0.027530389,0.027931316,-0.033477485,0.02273039,-0.008475172,-0.032898366,-0.0110310875,0.043456137,0.008748026,0.0015828302,0.006910439,0.0087313205,-0.044391636,-0.041830152,-0.016293267,-0.019990714,0.046864025,-0.0021341061,0.007433873,-0.024077952,-0.0059415298,0.034635723,-0.04713131,-0.007077493,-0.009176796,-0.005342922,-0.015970297,-0.015480275,-0.022318324,0.020848256,-0.031517394,-0.011242689,-0.00240696,0.038533635,0.0023262175,-0.0065763327,-0.012016702,-0.02995823,-0.017529462,0.01356473,0.032876093,0.01804176,0.004209744,-0.012116934,-0.05207609,-0.004541066,-0.0065484904,-0.0005203015,-0.01134292,0.0027174007,-0.004749883,-0.0018542919,0.009483061,-0.011482132,0.010730392,0.015769834,0.020035261,0.015235263,-0.0045577716,0.031183288,0.023565656,0.014867746,-0.0391573,0.0054960544,-0.024701618,-0.01757401,0.0031071918,-0.019511828,0.000040066698,0.02226264,-0.018175403,-0.0028218091,-0.017039439,-0.0464631,-0.002832946,0.018197676,0.029824587,-0.006141994,0.036618087,-0.007032945,0.0106134545,-0.012194892,-0.01799721,0.031472847,-0.022273777,0.010429696,-0.010290485,-0.033343844,0.018821342,-0.018877026,0.035838507,0.011326215,0.015290948,-0.010780508,-0.029624123,0.01370951,0.00805197,0.010552201,-0.025570296,-0.05590718,0.00200464,0.01141531,-0.006008351,0.019812524,0.0149902515,0.002819025,0.006270068,0.0062867734,0.031094192,0.021471921,-0.005301159,0.021271456,0.011771691,-0.01872111,-0.038065884,0.0048668203,0.030782359,0.017518325,0.027753126,-0.021995354,0.005768908,-0.012952201,0.0020909507,-0.0075173997,-0.022140134,0.009594429,0.008363803,0.012094661,0.037553586,0.00061879336,-0.0015187932,0.034568902,-0.03668491,-0.019534102,-0.0007294662,-0.020859392,-0.014088164,-0.01438886,-0.01621531,-0.0025392105,-0.000050203005,-0.047443144,-0.017150808,0.011894197,-0.029690944,0.027285377,-0.010869603,0.0049225045,-0.02215127,0.009700229,-0.023320645,-0.016994892,-0.02483526,-0.0006313224,-0.021928534,0.016404636,-0.0022593962,0.033922963,-0.017184218,-0.021015309,0.014466818,-0.050516926,0.009917399,-0.035014376,0.028443612,0.018776793,-0.0052983747,0.010218095,-0.037286304,-0.025659392,0.01828677,-0.011938744,-0.0024375864,0.025392106,-0.01574756,0.0031795816,-0.020714613,-0.0037670524,-0.0073503465,-0.000019217658,0.009917399,0.03532621,0.03839999,0.030425979,0.004738746,-0.0054375855,-0.007896054,-0.025748486,-0.007172156,0.0056352657,0.005039442,-0.05537261,0.010696981,-0.026283057,0.025703939,-0.030047325,-0.01141531,0.012952201,-0.017651968,-0.00079907174,-0.015903477,-0.0062589315,-0.026104866,-0.007233409,0.00026763335,-0.000577378,0.025570296,-0.022429693,-0.017384682,0.0038032474,-0.016861249,-0.040360082,-0.0020018558,0.013353129,-0.018921573,0.0021285377,0.008308119,-0.011320647,0.0046830615,0.023387466,-0.034412984,0.013464498,-0.02501345,0.0017721574,-0.033588856,-0.013609278,0.025703939,-0.0065262164,0.010167979,0.016939208,0.036751732,0.019745704,-0.008386077,-0.019367049,-0.04681948,-0.016972618,-0.011649185,0.0050116,0.023610203,0.019845935,-0.032764725,0.01585893,0.016204173,-0.01833132,-0.009917399,0.026015772,-0.017106261,0.02942366,0.01116473,-0.008202318,0.0036167046,0.0013726215,0.0023805099,0.011727143,0.032096513,-0.022028765,-0.016081667,-0.0008749418,-0.011125752,0.040404633,0.027174007,-0.011365195,-0.03131693,-0.005679813,0.015045936,-0.028109506,-0.005529465,0.009137817,0.0019392107,-0.0069048707,0.007829232,-0.027797673,-0.054570753,-0.019144312,-0.04169651,0.014578187,-0.030715538,-0.0065874695,0.0204696,-0.023877488,-0.0021842222,0.020770296,0.010340601,-0.059426438,-0.022385146,0.021750342,-0.036395352,-0.017117398,-0.007333641,-0.01241763,0.02648352,0.01725104,-0.030069599,0.0455276,-0.033700224,0.00919907,-0.023276096,0.07947283,-0.016738743,0.04298839,-0.00283573,0.019534102,-0.012250577,-0.041830152,-0.01474524,0.02719628,0.065484904,0.010541065,0.004374013,0.012283988,-0.0011470995,0.013987931,-0.017262178,0.019266818,0.021839438,0.00079907174,0.0026102082,-0.0029373544,0.03692992,0.00513689,0.0038951267,-0.026193962,-0.02283062,-0.0062867734,-0.002696519,-0.005248259,-0.017451504,-0.0022747095,0.065618545,0.050160546,0.0019893267,-0.015803244,-0.031606488,0.0045967507,-0.031695586,0.016671922,-0.00531508,0.011175867,0.004788862,-0.023097906,0.03586078,-0.00894849,-0.020425053,-0.018175403,-0.020425053,0.0054709963,-0.008592109,0.021561015,-0.01492343,-0.017083988,0.0029067278,0.008452898,-0.0118830595,-0.008113223,-0.0047693723,0.06339117,0.037664957,0.009210207,-0.017885843,0.042943843,-0.014500229,-0.008380508,-0.033232477,0.036952194,-0.002206496,0.023253823,0.042899296,0.0188993,-0.011086772,0.008079813,-0.0166051,0.008809279,0.033165652,0.054882586,-0.018264497,0.0075786524,0.022106724,-0.0030988392,-0.0047164722,-0.055595346,0.038533635,0.045438506,-0.06062922,0.030515075,-0.010852898,0.013787468,-0.0034078879,0.0000890516,-0.0125846835,0.0017206493,-0.0072167036,-0.0074505783,-0.052566115,0.016471459,-0.028644077,-0.019155448,0.04140695,0.003421809,-0.0038171685,0.03345521,-0.0006160091,0.008653362,-0.002070069,0.02208445,0.030737812,-0.009599998,0.0026672848,-0.023209276,0.010607886,-0.01600371,-0.056619942,-0.036061246,-0.011242689,-0.013687236,0.015290948,0.0066487226,0.0033772613,-0.008258003,-0.006893734,0.011515543,0.016304405,-0.037174933,0.018164264,-0.003872853,-0.011693733,0.016449183,-0.0118385125,-0.02795359,0.032787,0.0057856133,0.02312018,0.0056269127,-0.071677014,0.013787468,-0.026082592,-0.029223194,0.016048256,0.010591181,0.032475166,-0.034145698,-0.048155904,-0.022218091,0.024902083,0.011064499,0.02741902,0.020658927,0.015736423,0.009856146,-0.0044825976,-0.031450573,-0.002132714,0.0021911827,0.04494848,0.019378185,0.0029763335,0.039847787,0.0003360208,0.014010206,0.008597678,0.032475166,-0.030537348,0.030916002,-0.00398979,-0.00044443144,-0.005490486,0.015836656,0.04176333,0.04069419,-0.014656145,0.01592575,0.012473315,-0.009527608,-0.0107025495,0.011716006,0.027708579,0.021627838,-0.00076009263,-0.0204696,0.023209276,-0.040070523,0.024902083,-0.03920185,0.0105689075,-0.0050951266,-0.008837121,-0.016337816,-0.00797958,-0.007005103,0.00045104398,-0.02995823,0.014800925,-0.011019951,0.022986537,-0.0029011595,0.033700224,-0.014288628,0.004190254,0.0031294657,0.03425707,-0.029512754,-0.017451504,-0.052922495,-0.012651505,0.0049976786,0.0028510434,-0.000026058578,0.028421339,-0.021739205,-0.0025475633,0.01636009,-0.030715538,-0.017239904,0.027686305,0.007261251,-0.010051042,-0.015224126,0.0066097435,0.01563619,0.0012709973,-0.027263103,-0.0031238971,0.021137815,0.02695127,0.019133175,-0.0061809733,0.034346163,-0.05278885,-0.00107819,0.0017206493,0.02061438,-0.001253596,-0.015380043,0.0052593956,0.010708118,0.0034162404,0.023877488,0.019378185,0.020012988,0.018264497,0.02283062,0.031116467,-0.004825057,0.029824587,0.004137354,0.015424591,0.01628213,-0.014967978,0.014633872,0.025503475,0.0113819,-0.018375866,0.0035805097,0.044859387,-0.020335957,0.004265428,0.002445939,0.005454291,-0.01578097,0.035749413,0.03697447,0.03325475,-0.00009701274,-0.008881669,-0.054348014,-0.017496051,0.005640834,-0.018019486,-0.000063993604,0.012128072,-0.029579576,0.019857071,0.0060696043,0.010229232,-0.0022023197,-0.007829232,0.01825336,-0.03314338,0.028198602,0.015313221,-0.051808804,-0.021070993,-0.0021215773,0.009226912,-0.025102546,-0.020748023,0.0011324823,-0.009070995,-0.0017164729,-0.0053512747,0.014555913,-0.024523428,0.038667277,-0.013832015,-0.0093883965,0.021471921,0.011504406,-0.019099763,0.023365192,0.0077011585,-0.016939208,-0.013987931,0.0005164732,-0.0105689075,-0.009121112,-0.003574941,-0.0314283,0.037019018,0.009744777,-0.006097446,-0.00393689,-0.011109046,0.015881203,-0.003221345,0.034056604,-0.03127238,-0.0032157765,0.0023972152,-0.03797679,-0.019734567,-0.04793317,0.018954985,0.02741902,0.01878793,-0.013965658,0.033277024,-0.026349878,0.052699756,0.036172614,-0.036462173,-0.0022259855,0.0063368897,-0.010958699,-0.0061976784,0.042565186,0.008296981,-0.007172156,-0.00794617,0.037999064,0.03563804,0.047309503,0.017083988,-0.009421808,0.023877488,-0.0048723887,0.017852431,0.038890015,-0.011097909,0.057243608,-0.024523428,-0.015524822,0.017885843,0.013620415,0.0021647327,0.0077791167,0.02630533,0.015625054,0.020658927,-0.005529465,-0.015224126,0.0066264486,-0.00481392,-0.027151734,0.00081786525,0.0032686768,0.008670067,0.00051368895,0.004903015,-0.016761016,-0.027263103,-0.042943843,-0.0227638,0.013687236,-0.007406031,-0.0009953594,0.0038422265,0.004972621,-0.02924547,-0.01789698,0.011365195,-0.0052928063,-0.003822737,-0.0084473295,-0.001492343,-0.0058078873,0.04312203,-0.0030153126,-0.021427372,0.017796747,0.01979025,0.017306725,-0.003953595,-0.028042685,-0.0068658916,0.008619952,-0.016115077,-0.0006167052,0.0037364261,0.033121105,0.039847787,-0.0069215763,-0.0026770295,0.0057577714,0.008848257,0.01338654,-0.007333641,-0.00025684448,-0.00869791,-0.008452898,0.007823664,0.006503943,-0.027218556,-0.027285377,0.02459025,-0.024612524,-0.011075635,0.030849181,0.0012466355,-0.012161482,-0.010117863,0.029401386,-0.035081197,-0.03886774,0.033121105,-0.013898836,-0.0026185608,0.03922412,0.013453362,-0.006270068,0.039602775,-0.005746634,-0.030670991,0.002533642,0.00919907,-0.021872848,-0.00019907187,0.0011116007,-0.015112758,0.008753594,0.023476562,-0.023610203,0.020993035,-0.015458001,-0.0040566116,-0.0048668203,-0.026416698,0.010708118,-0.032475166,-0.008441761,0.015123894,-0.018943846,0.026617164,-0.029290017,-0.0450153,0.006242226,0.004195823,-0.005930393,0.031450573,0.0076287687,0.0044436185,0.015057073,-0.02577076,0.033922963,0.016950345,0.0039563794,-0.01256241,-0.017328998,-0.012339672,-0.008864963,-0.037820872,-0.02748584,-0.036061246,-0.010975404,-0.036038972,-0.013275171,-0.002283062,0.006141994,-0.008285845,0.017083988,-0.041496046,-0.0007781901,-0.014678419,0.02795359,0.02014663,0.013987931,-0.018799068,0.032252427,-0.0076788845,0.067578636,0.05849094,0.032541987,-0.014901157,-0.04223108,-0.034836188,0.04713131,-0.004822273,0.0039786533,0.0023805099,0.021293731,-0.0368631,0.026750807,0.011326215,-0.004488166,0.023832941,-0.015524822,-0.008597678,-0.034212522,0.00014634567,-0.02476844,-0.020558696,0.009739209,0.0002580626,-0.06138653,-0.042364724,-0.037843145,-0.0041067274,0.010101158,0.017885843,-0.012339672,0.023699299,-0.013776331,-0.0058691404,-0.04312203,0.017529462,-0.038667277,-0.011849649,-0.016471459,-0.015769834,0.021627838,-0.023253823,0.0029234332,-0.010546633,0.04240927,0.009488629,-0.012395357,0.019032942,-0.0061252885,0.011365195,0.031651035,-0.018999532,0.009538745,0.043857068,0.0039396742,-0.0016051041,0.010123432,0.004763804,0.00039153124,-0.0148566095,-0.0063870056,-0.01636009,0.017529462,0.036417626,0.006208815,0.007467284,-0.030737812,0.010312758,-0.011175867,-0.005746634,0.020057537,0.0163935,0.026038045,0.024033405,-0.009978652,0.007534105,0.019021805,-0.02229605,0.0064259847,0.035281662,0.017796747,-0.001994895,-0.011042225,0.015302084,-0.022062175,-0.00544037,-0.0050338735,0.005562876,0.00081438496,0.030047325,-0.0029401386,-0.018086307,0.019099763,0.03855591,-0.021405099,-0.03296519,-0.004552203,0.0008088165,-0.0061865416,-0.04073874,-0.017852431,0.009260323,0.022786073,0.007483989,-0.03191832,-0.0042598597,0.014611597,-0.01341995,0.02465707,-0.013921111,0.028599529,-0.0006880509,-0.0131081175,0.027285377,-0.008369371,0.029178647,-0.012874243,0.00027285377,0.004190254,0.004953131,-0.038711824,-0.031049645,0.017117398,-0.051318783,-0.008781437,-0.01786357,-0.0027883984,0.01810858,0.015691876,-0.012005566,0.027329924,0.00046600917,-0.024968904,-0.01474524,-0.019567512,0.0064593954,0.036038972,-0.014143848,-0.0143777225,-0.015981434,-0.0038505793,0.006208815,0.02358793,0.03338839,-0.014344312,-0.019701155,0.004045475,-0.027753126,0.007673316,0.01370951,-0.020012988,0.02208445,-0.0069939657,0.017562874,-0.02394431,-0.005504407,-0.017952664,-0.015948024,-0.003221345,-0.006632017,0.030760085,-0.0059638037,0.0040900223,-0.010429696,0.01739582,0.023922035,-0.028064959,0.0069939657,0.014500229,-0.038645003,0.041674238,-0.00076009263,-0.008180045,-0.013464498,0.045215767,0.012194892,0.0023387466,0.047042217,-0.011287237,-0.013999069,0.02766403,0.017529462,-0.0012619486,0.018676562,-0.028176328,-0.019088626,0.0074784206,-0.06748954,-0.020926213,-0.019367049,-0.00556566,0.008809279,0.013854289,-0.020803707,-0.018865889,-0.009817167,0.027797673,0.008057538,0.03231925,0.00458283,-0.06619766,0.02701809,0.0012257538,-0.020001851,0.02087053,-0.007940602,-0.030871455,0.02795359,-0.011961018,0.037308577,-0.023097906,0.037954517,-0.005326217,0.0040566116,0.0063870056,0.014322039,-0.018943846,-0.004838978,-0.007884917,-0.03260881,0.00070266804,-0.033655677,-0.023031086,0.016883522,-0.004841762,-0.04699767,-0.025058,0.016671922,-0.024345238,-0.017462641,0.015435727,-0.0072556827,-0.015647328,0.001077494,-0.00165522]},{"id":"guide-attachments-by-url-1","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Mixing buffers and URLs\nYou can combine file data and URLs in the same message. Order is preserved; attachments metadata id matches the file index.\n\n```javascript\nawait message.reply({\n content: 'Two files:',\n files: [\n { name: 'local.txt', data: Buffer.from('Hello') },\n { name: 'remote.png', url: 'https://example.com/logo.png' },\n ],\n});\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.043849457,0.007508704,0.03230289,0.01481122,0.015727613,-0.03076793,-0.0100516975,0.037549246,-0.028751865,0.025269566,-0.012336955,0.014937224,0.058099385,-0.056174956,-0.05896996,0.020641776,0.007548796,0.0152350515,0.034479327,-0.005183354,0.016873106,-0.005484046,0.034410596,0.03276109,-0.011540838,-0.035670638,-0.0031615596,0.042818513,0.042199947,-0.03205088,0.013333534,-0.019358825,0.022852577,0.0523261,-0.022016367,0.08600359,0.01930155,0.06762988,0.018018598,-0.0021592535,-0.0089176595,0.006294482,0.04048171,-0.008608377,-0.0138260955,0.007984083,-0.001910109,0.026185961,0.015315236,0.049210362,0.016586732,0.01392919,0.036403753,0.0029782807,-0.0169762,0.03913003,-0.012566053,0.039175846,-0.03551027,-0.017503127,0.0014647987,-0.01855698,-0.02164981,0.01546415,-0.019633744,-0.021283252,-0.055121105,-0.021077063,0.02634633,0.04032134,0.047469214,0.04187921,0.03427314,0.018797534,0.030011905,-0.004610608,-0.027400183,-0.03262363,0.012153677,-0.059703074,0.0020604548,0.00012233503,-0.05113479,-0.0323258,-0.0772062,0.008631287,-0.026529608,-0.001546415,-0.04339126,0.023482598,-0.015200687,-0.021993458,-0.105568595,-0.013562633,0.035968468,0.01788114,-0.03732015,-0.0060081086,-0.01630036,-0.018293517,0.045613516,-0.05571676,-0.07706874,-0.036770314,0.028728954,-0.017422942,0.05076823,0.04524696,0.008453735,-0.018075872,-0.023963705,-0.0044645574,0.03750343,0.001087502,0.040894087,-0.005323677,-0.010492712,-0.019748293,0.023917885,-0.004438784,-0.047285933,-0.008619832,0.077572756,0.0036512576,-0.0035653457,-0.027079444,-0.018660074,-0.010120427,-0.06671349,-0.02451354,0.05108897,0.010876453,0.025590304,-0.033013098,-0.009467497,-0.033013098,0.0013982169,-0.00068085216,-0.04036716,0.029759897,0.062498078,-0.058053564,0.04957692,-0.0035281172,-0.046965197,0.026025591,-0.07729784,0.0467361,-0.004576243,-0.018648619,-0.04332253,0.020366859,-0.0015836435,0.024376083,0.0077893496,-0.0046507,0.017491672,-0.008190272,-0.030561743,-0.03260072,-0.003702805,-0.022016367,0.0024871507,-0.03725142,0.026896166,-0.006323119,0.06721751,0.0070963264,-0.0060825655,-0.004350008,-0.014307203,-0.027583461,-0.016735647,0.02151235,0.04522405,-0.0069474126,-0.007955446,-0.031638507,0.006328847,0.034685515,0.03425023,-0.001044546,0.016426364,0.0074915215,-0.04050462,0.028179118,0.023035856,0.033081826,-0.018224787,0.0066839494,-0.021157248,0.04169593,-0.001269349,0.024903009,0.01620872,-0.023070222,0.029576618,0.008276184,0.00037156916,-0.013333534,-0.0116553875,0.038396914,0.0053694965,0.0063803936,-0.069233574,-0.003413568,0.010080335,0.009467497,-0.015246507,0.01934737,0.01794987,0.015853617,0.008385005,0.023574237,-0.039061297,-0.077847674,-0.027216904,0.010280796,-0.011472109,0.00558714,-0.036335025,-0.039336216,0.062727176,-0.012726422,-0.02634633,0.020595957,0.0031758782,-0.032073792,-0.02232565,0.025567396,0.049072903,-0.0047308845,-0.00174974,-0.049989298,0.03408986,0.03370039,0.03562482,-0.015956711,0.007308243,-0.012474414,0.011300284,-0.00968514,0.00774353,-0.0005673768,0.025086287,-0.02458227,-0.01690747,-0.011810029,0.034754246,0.019725382,0.028774774,-0.009994423,-0.006134113,-0.023264954,0.028774774,-0.039450765,-0.057824466,0.039382037,0.003871765,0.009919966,-0.014788309,-0.008677106,-0.02032104,0.026621249,-0.004851161,0.003820218,0.010555714,0.050218396,-0.039427854,-0.0059107416,0.0027162493,0.016815832,0.012669148,0.000024229854,-0.009576318,0.01867153,-0.013092981,-0.022886941,-0.0008684266,0.027537642,-0.0080757225,-0.020561593,-0.016563823,-0.0098569635,-0.014822674,0.011684025,-0.009221216,-0.007846625,0.072807506,-0.008946297,0.0016036896,-0.02011485,0.04153556,-0.021684175,0.02174145,0.050080936,0.004513241,-0.006134113,0.0038631738,-0.0002836884,-0.02241729,0.009381584,0.057824466,0.009410222,0.034845885,-0.012611873,-0.03205088,0.0051432615,0.0068443185,-0.001184153,0.021157248,-0.013608452,-0.061581682,0.013276259,-0.038099084,-0.017755136,0.00012806249,0.008476645,-0.032142524,0.028980963,0.06327701,0.016426364,0.06643857,-0.045659333,-0.013700091,0.015097592,-0.008969207,-0.011540838,-0.021397801,0.02769801,0.024903009,-0.009066574,0.027514732,-0.019839931,0.039359126,-0.024353173,-0.008522465,0.023803337,-0.020366859,0.03390658,-0.019267185,-0.011798574,0.015784888,0.016460728,-0.047606673,-0.0613984,-0.014857039,0.039084207,-0.019713927,-0.002122025,-0.036380846,0.02090524,0.0020217944,0.00140824,0.018843353,-0.007754985,-0.0039490857,-0.047011018,-0.004235459,-0.032852728,-0.008087178,0.026781617,-0.007829442,0.026598338,0.040275518,0.039450765,-0.0015278007,-0.033723302,-0.0063116644,-0.0177895,-0.01164966,0.05214282,-0.017216753,0.024101164,-0.04362036,0.025613215,-0.0042726872,0.053105038,-0.0013874779,0.030859571,-0.010349525,0.0495311,-0.041925028,-0.03257781,-0.008402188,-0.023963705,0.016174356,-0.01632327,-0.013322079,-0.034983344,0.012611873,0.009925693,-0.04492622,0.04934782,0.02169563,0.045865525,0.071341276,0.0059164693,-0.00018829035,-0.0706998,-0.008047085,-0.00801272,0.005962289,-0.0045046494,0.03367748,0.023413869,0.010675991,-0.02241729,0.007892444,-0.056862254,-0.005962289,-0.014261383,0.005567094,-0.015842162,0.0023153268,0.03718269,-0.017033475,-0.007485794,0.021409256,0.004490331,-0.020286674,-0.008362096,-0.015601609,-0.0010889339,0.022004914,-0.046965197,0.070745625,-0.018545525,0.06529308,-0.048843805,-0.08160489,-0.045750976,0.0035367084,-0.0110081835,0.033448383,-0.039152935,-0.000077052275,0.0082532745,-0.027239814,-0.0186028,-0.019587923,-0.007079144,-0.023620058,0.051455528,-0.04620917,-0.011598112,-0.018820444,0.006157023,0.046140444,0.028316576,-0.05544184,-0.030447192,-0.011821483,0.0034822975,0.004470285,0.06634693,-0.0045075133,-0.030355554,0.034479327,-0.008980662,0.016105626,0.040939905,-0.012818062,0.00070447795,0.020527227,-0.018259153,-0.042177036,-0.005481182,0.009828326,-0.009541953,0.024605181,0.014857039,0.006420486,0.008785929,-0.033173464,-0.05113479,0.03713687,-0.042039577,-0.008843203,0.041031543,0.03392949,-0.00498862,-0.015613064,-0.030630471,-0.0618566,0.079405546,0.04455966,-0.023872066,0.06973759,0.00008009499,-0.05892414,0.006792771,0.025888132,-0.010464075,-0.010561442,-0.024032434,0.00846519,-0.062131517,0.07468612,-0.009341492,0.026712887,-0.019839931,-0.0053265407,-0.012921156,0.028133297,0.014868494,-0.04806487,-0.033333834,0.025200836,0.03436478,0.055304382,-0.02799584,-0.0032761088,0.021764359,-0.022577658,0.0216269,-0.023150405,0.054387987,-0.007411337,-0.053563233,-0.0042812787,0.02169563,0.007754985,-0.020584501,0.008493828,0.039107118,-0.016575279,-0.021180158,-0.009736687,-0.059748895,0.039565314,0.0009242693,-0.0037514882,0.011036821,-0.006237207,0.0071879663,-0.024284443,-0.027423093,0.023803337,-0.02955371,-0.017972779,0.00010595807,-0.025040468,0.019118272,-0.015750524,-0.023196224,0.00016189032,0.024032434,0.018270606,0.017434398,-0.0077263475,-0.017548947,0.012485869,0.004939937,0.020916695,-0.0262776,0.011248738,-0.0045705154,-0.02313895,-0.011466381,0.013631362,-0.039588224,-0.012955521,0.008785929,-0.0016079852,0.03532699,0.013986465,0.014456117,0.02164981,0.0077378023,0.03216543,0.0031300585,-0.005183354,-0.0067870435,0.0016867379,0.036426663,-0.041008636,-0.020951059,-0.045728065,-0.057687007,-0.012783698,0.00961641,-0.01950774,-0.015590155,-0.017285483,0.0030069181,0.019565014,-0.01765204,-0.0045619244,0.0014977315,0.020527227,0.010698901,0.036037195,-0.006300209,0.005990926,-0.020481408,-0.0049313456,-0.001971679,-0.024559362,-0.004338553,-0.024444811,-0.008659924,-0.004619199,0.0052062636,0.0076748,0.04016097,0.003551027,-0.030355554,-0.0123255,-0.0069245026,0.005864922,0.026392149,-0.020412678,-0.06694259,-0.019026631,0.033631664,0.012623329,0.0073884274,0.0062085697,-0.006363211,0.016013987,0.01381464,0.010406801,0.008281912,-0.0026475198,0.025842313,-0.005833421,-0.023505509,-0.008768746,0.014227018,0.025384115,0.026025591,0.019290095,-0.03406695,-0.016243085,-0.034181498,0.017274028,-0.009415949,-0.007754985,-0.004450239,0.007915353,0.020676142,0.056999713,0.01677001,0.015635975,0.0039490857,-0.015315236,0.01677001,0.0017626267,-0.008946297,-0.051592987,-0.016918926,0.007606071,0.02234856,-0.013791731,-0.037869986,-0.004470285,-0.0011970397,-0.03411277,0.03855728,0.008585467,-0.009450314,-0.031638507,0.026094321,-0.02181018,-0.010486985,-0.017228208,-0.01171839,-0.014204108,0.036105927,-0.036999412,0.020343948,0.043780725,-0.008619832,0.031478137,-0.032852728,0.019003723,-0.009530499,0.035991378,0.0049685743,0.012749333,0.0008111519,-0.030538833,-0.049943477,-0.0026689977,0.0024184212,-0.018041508,0.011288829,-0.01862571,0.01481122,-0.014066649,-0.009060847,0.01119719,-0.021214522,0.0061169304,0.042566504,0.033723302,0.031065758,0.004587698,-0.0024570816,0.0007710597,-0.013230439,-0.019862842,0.015406875,0.017629132,-0.057778645,0.017033475,0.011191463,0.039840233,-0.012944066,-0.021455076,-0.0065235803,-0.0074800667,0.010996729,-0.018774623,-0.028866414,-0.026002683,-0.00810436,0.0045676515,-0.004914163,0.00008354041,-0.025659034,-0.016128536,0.0025845177,-0.012795152,-0.025040468,-0.022142371,0.0051003057,-0.00040486004,-0.0024126938,0.018797534,-0.0030384192,0.022119462,0.055212744,-0.015097592,0.037732527,0.011958943,-0.011764209,-0.0054869093,0.015716158,0.028362397,-0.018098783,0.01474249,0.04472003,0.017251119,0.018992268,-0.018946448,-0.029141331,-0.065338895,0.0144904815,-0.038900927,0.006220025,-0.01085927,0.008287639,-0.033608753,-0.0064033037,0.014524846,-0.017216753,-0.02648379,0.01546415,-0.026941985,0.0369765,-0.0523261,0.036884863,0.003785853,-0.017491672,-0.015670339,0.0010860702,0.0061398405,-0.02614014,-0.026048502,-0.002090524,-0.008619832,0.019187002,0.03411277,-0.001567893,-0.0058821044,0.03399822,-0.0032016519,-0.0034221592,0.01609417,0.007772167,-0.0033792031,-0.00616275,0.007520159,0.015361056,-0.043895274,-0.050722413,-0.028683135,-0.00957059,-0.048293967,-0.022577658,0.009318583,-0.04472003,-0.007880989,0.023917885,-0.016518002,-0.066301115,-0.00053694966,0.039267488,-0.039450765,-0.028522765,0.02248602,-0.011013911,0.03727433,0.015005953,-0.056862254,0.010240704,-0.026987806,0.0067183143,-0.026781617,0.02921006,-0.004544742,0.04194794,0.0073597897,0.013333534,-0.013917735,-0.010349525,0.012577509,0.00054876256,0.06882119,-0.0033648845,-0.009725232,0.014776855,0.030172275,0.026827436,-0.051592987,0.047560852,0.026529608,0.0009672253,0.010412527,-0.03709105,0.003934767,0.018087327,0.015968166,-0.023482598,0.007039052,0.0005362337,-0.010017333,-0.010945181,-0.01776659,-0.011019639,0.03727433,0.034318957,0.0071536014,-0.0062085697,-0.019943027,-0.011025366,-0.051409706,-0.0044846036,-0.01016052,0.010727538,-0.006059656,-0.011208645,0.0044416473,-0.0058047837,0.015968166,-0.017331302,-0.030057726,-0.0016652598,0.013585542,0.0446513,0.011420561,-0.008711471,0.006409031,0.008276184,0.011958943,-0.012932612,-0.0027234086,0.039038386,0.0065407627,0.033471294,-0.0043156436,0.020584501,0.042154126,-0.035258263,0.006420486,0.012153677,-0.011346105,-0.0029525072,0.027125265,0.024169894,-0.00013692216,0.028706044,-0.024467722,-0.0069817775,0.047377575,0.023333684,0.014536301,0.0030011905,-0.0017755135,0.016666917,-0.0023153268,-0.030172275,0.011752754,0.04048171,-0.056449875,0.050401673,-0.0009214056,0.015647428,-0.020779235,-0.023620058,-0.006792771,-0.021203067,0.0012435754,0.00058384327,-0.025613215,0.022405835,-0.005747509,-0.02799584,0.009902784,-0.020000301,-0.03436478,0.024124075,0.013677182,-0.029691167,-0.024169894,0.0028665953,0.039863143,0.008837475,-0.0177895,-0.009456041,0.031753056,-0.024651,-0.0224402,-0.010418255,-0.014307203,-0.025704853,0.01704493,0.0029181424,0.0040979995,-0.016896015,-0.013551177,-0.014513391,0.034410596,-0.042955972,-0.0016194402,0.0026088594,-0.0054095886,0.016815832,-0.021661265,-0.0059164693,0.026185961,0.01234841,0.022096552,-0.0138260955,-0.047744133,0.01541833,-0.021283252,-0.038144905,0.0058362847,0.016036896,0.044032734,-0.027743831,-0.047423393,-0.0033104736,0.015315236,-0.018453885,0.024467722,0.011706934,0.012084947,0.012932612,-0.03205088,-0.034754246,-0.011042548,-0.014181199,0.055121105,0.019736838,-0.030790841,0.040756628,0.013585542,0.0020246583,0.03420441,0.012451504,-0.047102656,0.07358644,0.0070905993,-0.015212142,-0.010635898,-0.025773583,0.0067183143,0.04962274,-0.020802146,-0.013917735,0.0067526787,0.019393189,-0.0041753207,0.004146683,-0.005624369,0.02474264,-0.000038123424,0.009782507,0.029805718,-0.03722851,-0.013230439,-0.025933953,0.026804527,0.0027921381,0.011449198,-0.0032703814,-0.025177928,-0.017090749,0.018969357,-0.039152935,0.0031529684,0.006294482,-0.01623163,-0.0005738202,0.042566504,-0.029232971,-0.0056444146,-0.04158138,0.025475755,-0.029026782,0.007468612,-0.028431127,-0.009759597,-0.0084480075,-0.0050630774,0.010223522,0.01469667,-0.031157399,-0.014009374,-0.0080585405,-0.028156208,-0.0068099536,0.018843353,-0.0049628466,-0.017892594,-0.01090509,0.0066782217,0.009261307,-0.032531988,-0.01923282,-0.0052520838,0.02069905,0.0025530166,0.017537491,-0.025750674,0.021638354,-0.053425774,-0.016724192,-0.036884863,0.022027822,0.010973819,-0.0061684777,-0.006701132,0.008602649,0.004518968,0.012852427,0.01948483,0.011958943,-0.006002381,-0.0232535,0.027652191,-0.00894057,0.026094321,0.03425023,0.008184545,0.01548706,-0.019839931,-0.0016566686,0.019427555,-0.000853392,0.028179118,0.027675102,0.013196074,-0.053013396,0.023688788,0.018385157,0.010338071,-0.0065235803,0.018304972,0.022566205,0.039702773,0.0026475198,-0.003742897,-0.031890515,0.0043643266,-0.014135378,-0.03427314,0.006529308,0.014261383,-0.044307653,0.0036455302,0.012004762,0.002742023,-0.014066649,0.009158214,0.007371245,-0.013470992,0.0068557733,-0.015853617,-0.047423393,-0.021214522,0.004246914,0.01618581,-0.030241005,0.008631287,0.023058766,-0.004776704,0.0065464904,-0.011981852,0.014043739,-0.010286523,0.035074983,-0.0017397169,0.0018857672,0.05269266,0.009318583,-0.022852577,0.025063379,0.0004607028,0.0077148927,0.0017010565,-0.0008712903,-0.0024785595,-0.0067813164,0.0119474875,0.0059737437,0.039061297,0.024490632,-0.0016308951,0.014719579,-0.0055298656,-0.0031901968,0.02004612,0.0430247,-0.01246296,0.012153677,-0.018304972,-0.062452257,-0.021592535,-0.04144392,0.008430826,-0.0010001583,0.0015950984,-0.011924578,0.028751865,-0.008092905,0.04359745,0.00887184,-0.031753056,0.027010715,0.026506698,-0.0065407627,-0.010710356,0.045865525,-0.0123025905,-0.010830632,0.012714968,0.03532699,0.042887244,0.040550437,-0.0065865824,-0.03979441,-0.003974859,0.015028863,0.010561442,0.03399822,-0.035991378,0.021455076,-0.0070848716,-0.020618867,0.053700693,0.036747403,0.0052205827,0.00618566,-0.010154792,0.005398134,0.02255475,0.019794112,-0.002100547,0.017869685,-0.008287639,-0.027262723,0.021844544,-0.007262423,-0.0025830858,0.0068615004,0.00086126727,-0.049897656,-0.013287714,-0.024307353,-0.027216904,0.0016223039,-0.02471973,-0.0057732826,0.023150405,-0.034639698,-0.0073196976,0.020217944,-0.009335765,0.005415316,0.007852351,-0.020618867,0.016781466,0.0076289806,0.0186028,0.031798873,-0.008957752,0.010372436,-0.000057364123,0.022039277,0.002827935,-0.033494204,0.028499857,-0.0005738202,0.015544334,0.011535111,0.003648394,0.04006933,0.021248888,-0.012039127,-0.010154792,0.011867303,0.005899287,-0.012485869,-0.008866113,-0.003539572,0.01632327,-0.0077492576,0.026460879,-0.00558714,-0.04648409,0.005856331,0.015784888,-0.014582121,0.018316427,0.02476555,0.027514732,-0.047102656,0.0048597525,0.0003583244,-0.038144905,-0.023734607,0.01776659,-0.02083651,-0.026529608,0.03354002,0.021936184,-0.011798574,0.018304972,-0.0009572022,-0.021993458,-0.022382926,0.0064491234,-0.012016217,0.011529383,-0.0017282619,0.0030842389,0.009496134,0.03913003,-0.012829517,-0.0012686331,-0.010481257,0.0046277903,-0.025842313,-0.050172575,-0.006769861,-0.012084947,-0.0035052074,-0.02076778,-0.030424284,-0.020447044,-0.0008190272,-0.012955521,0.023872066,0.012279681,-0.017640585,0.02939334,0.014685215,0.009862691,-0.0043958277,0.0027749557,-0.014845584,-0.012004762,0.0032245617,0.006128385,0.008476645,0.0007284617,-0.006769861,-0.019885752,-0.021271797,-0.026552519,-0.010864997,-0.022256922,-0.0033935218,0.010166246,-0.0038030355,0.031203218,0.023379505,-0.04824815,-0.010292251,-0.00079826516,0.028224938,0.008213182,-0.0085453745,0.019851387,0.0030556014,-0.0085281925,0.0369765,0.064193405,0.013402264,-0.030011905,-0.030218095,-0.019221365,0.054433808,-0.016609643,-0.010194884,-0.026781617,0.04620917,-0.01546415,0.024376083,-0.004876935,-0.011432016,-0.036587033,-0.021569626,-0.00855683,-0.016380545,0.0051318067,-0.016403453,-0.017170934,0.00017978864,0.020813601,-0.05118061,-0.020561593,-0.005927924,-0.002560176,0.032669447,0.0232535,-0.006832863,0.0133564435,-0.006603765,-0.0131617095,-0.046827737,0.0006389701,-0.018133149,-0.013459538,-0.02806457,0.0070104147,0.020103395,0.0059737437,-0.013608452,0.005927924,0.008407916,0.020893784,-0.014330112,-0.0044874675,0.0084881,0.0069932323,0.036335025,-0.018064419,0.0053780875,0.015280872,0.02092815,-0.023757515,0.013425173,-0.0047967504,0.03571646,-0.008178817,-0.015796343,0.0059794714,0.00481966,0.025155017,0.0049027083,0.007239513,-0.03383785,0.011878758,0.011065459,0.026919076,0.0035338446,0.012921156,0.043116342,0.012451504,-0.00091424625,0.02934752,0.002666134,-0.022382926,0.020870876,0.031936333,0.016861651,-0.0017740816,-0.02937043,-0.026392149,-0.0056358236,0.0048998445,-0.025911042,0.0075946157,0.0044187377,0.025727764,-0.0062772995,-0.015074682,0.023849156,0.033150557,-0.010343798,-0.030263914,0.0061398405,0.014078104,-0.022268375,-0.021019788,-0.023849156,0.01550997,0.020538682,-0.006655312,-0.009713777,0.01704493,-0.006643857,-0.008425098,0.01788114,-0.02932461,0.0006475613,-0.014799764,-0.0038545826,0.023734607,-0.00070913153,0.04323089,-0.03693068,-0.0008891886,-0.005449681,-0.016002532,-0.054983646,-0.027652191,0.014731035,-0.012703513,0.012233861,-0.016678372,0.02925588,0.007485794,0.029920267,-0.001984566,0.01569325,-0.016964745,-0.034410596,-0.001973111,-0.0071077817,0.0032875638,0.033288013,-0.018075872,0.006557945,0.00062930497,0.011122733,0.010681719,0.008430826,0.005128943,-0.012852427,-0.01009179,0.012989886,-0.018854808,0.009393039,-0.014948678,-0.022062188,0.019313006,-0.017411487,0.049897656,-0.031592686,-0.0034937523,0.0032990186,-0.010217794,-0.020916695,-0.010996729,0.0495311,0.018282061,0.013711547,0.01948483,0.02778965,0.019897206,-0.024421902,0.0046621547,0.006328847,-0.034754246,0.040962815,-0.033219285,-0.009645048,-0.024284443,0.017526036,0.0005881389,0.0010925136,0.05415889,-0.007880989,0.012554599,0.019679563,0.011867303,-0.0011111278,0.020687597,-0.024559362,-0.015361056,-0.017537491,-0.056449875,-0.012554599,-0.010389618,0.040710807,0.027537642,-0.0022279832,-0.008470918,0.0005183354,-0.025865223,0.013425173,0.007680528,0.01718239,-0.033471294,-0.04943946,0.019943027,0.005939379,-0.02932461,0.03993187,0.03562482,-0.0014597871,0.03711396,-0.032119613,0.011684025,0.006655312,0.009490406,0.007611798,-0.00565587,0.016792921,0.0059164693,0.005292176,-0.004140956,-0.010985274,-0.011695479,0.02792711,-0.02948498,-0.0048712073,0.011294557,0.027102355,-0.03995478,0.0010595806,-0.009673685,-0.017560402,-0.0074800667,0.018178968,0.0024513542,-0.0325549,-0.0027534778,-0.0007112793]},{"id":"guide-attachments-by-url-2","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Optional filename override\nUse filename to control the displayed attachment name independently from the local name used during upload.\n\n```javascript\nfiles: [\n {\n name: 'fetched-image.png',\n url: 'https://example.com/image.jpg',\n filename: 'custom-display.png',\n },\n]\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.021499773,0.019496212,0.01816417,-0.03344409,-0.04361603,-0.046148006,-0.018307284,-0.0062363655,-0.014751509,0.012648868,-0.010414125,0.0011627822,0.051520195,-0.07661978,-0.041414313,0.0057850135,0.01926503,0.007573909,0.012439705,-0.027763661,0.03463302,0.007876646,0.004821762,0.0017269724,-0.016633978,-0.0061042625,-0.005405217,0.03199096,0.044276543,0.0024741804,-0.002578762,-0.016105566,0.02987731,0.026332544,-0.058081314,0.03205701,0.06468647,0.036174223,-0.014619406,0.03144053,-0.030251602,0.014079985,0.042405084,0.0056584147,0.024240913,0.034192678,0.003065892,0.02926083,0.013331401,0.027323317,0.023426278,0.0053006355,0.0036741165,-0.016556917,-0.018032068,0.0141460365,0.003068644,0.043241736,-0.018230224,-0.022259366,-0.027521472,-0.0430656,0.018670566,0.037142977,0.036218256,0.0035392614,-0.078116946,0.013485521,0.04506916,0.031462546,0.032123063,0.0142010795,0.02121355,0.020916319,0.0139368735,-0.0009646276,-0.013716701,-0.013518547,0.0122305425,-0.06763677,-0.020299837,0.0071886084,-0.032937698,-0.010463663,-0.040533625,0.0036520993,-0.039410748,-0.04343989,-0.027653575,0.012197517,-0.014322174,-0.012175499,-0.07265668,-0.009021538,-0.023029968,0.060679343,-0.0015301938,0.011349855,-0.0015068006,0.010320552,0.023206105,-0.03205701,-0.03800165,-0.04548749,0.022963917,-0.018153163,0.033510145,0.05702449,0.02426293,0.021973144,-0.0175587,0.0016843141,0.03659255,0.039498817,0.023316192,-0.037253063,-0.019309064,0.04064371,0.034038555,-0.07204021,-0.035073362,-0.019408142,0.03738517,-0.031616665,-0.010931529,0.0013705693,-0.019298056,0.0041584945,-0.084413856,-0.066403806,0.03408259,-0.0053611826,0.013683676,-0.056452043,-0.023272157,-0.040995985,0.021015396,0.008399554,-0.05803728,0.039674953,0.047601137,-0.045927834,0.054734703,-0.019099902,-0.031066237,0.055086978,-0.06627171,0.025804132,-0.0006894129,0.014476295,-0.036548514,0.008801367,-0.0028952588,0.0215328,0.010546228,-0.010105885,0.022633659,-0.0050419336,-0.048569895,-0.034721088,0.005906108,-0.0183293,0.005025421,-0.014377217,0.021874066,-0.0063519557,0.06666801,-0.008839897,-0.022314409,0.0003963092,0.023624431,-0.01770181,0.0038942883,0.0005628141,0.035976067,0.031770788,0.023029968,-0.005818039,0.020773208,0.023932673,0.020167734,0.009687558,-0.031836838,-0.0041612466,-0.006153801,0.007067514,0.034544952,0.012747946,0.0023778551,0.025231685,0.02004664,-0.030780014,-0.00725466,-0.021907091,0.00015437826,0.008630734,-0.013683676,0.005402465,-0.0021356663,-0.033510145,-0.011647087,0.027543489,0.02013471,-0.0097811315,-0.037517272,0.028600315,-0.016369771,0.0036025606,-0.018824687,0.0042135376,0.009175659,0.020200761,0.031946924,0.0013581846,-0.011746164,-0.022875847,0.030317653,-0.0023420772,0.011052623,-0.0038915363,0.01240668,-0.018450394,0.0265307,-0.0352495,-0.01747063,-0.0042933496,-0.017888958,-0.0022085982,-0.008427075,0.019298056,0.01466344,0.008135347,-0.008041774,-0.060503203,-0.01029303,0.029150743,0.026332544,-0.010518706,-0.011559018,-0.018351318,-0.011234265,0.013408462,-0.0161496,-0.022589624,0.032431304,-0.04119414,-0.0012646116,-0.019077884,0.030339671,0.025848167,-0.013375435,-0.008300476,-0.021774989,-0.046368178,0.034126624,-0.039190575,-0.07186407,0.045443457,-0.020927327,-0.01770181,-0.029789241,-0.020773208,-0.041612465,-0.005628141,-0.014674449,0.029216794,0.0047254367,0.049010236,-0.0014029071,-0.00009400303,0.013727711,0.013738719,0.010513202,0.03745122,0.0010375595,0.02130162,-0.0016664251,0.017415587,-0.013848805,0.015048741,0.0073152073,0.0018177932,-0.049802855,0.0056584147,-0.031308427,0.0009804524,-0.019573271,-0.019077884,0.02481336,-0.038596112,0.010133406,-0.051476162,0.008619725,-0.02090531,-0.026090356,0.07710416,0.015599171,-0.004186016,0.008647246,-0.02239147,-0.06116372,-0.023778552,0.018439386,0.0013877703,0.009274736,-0.004706172,-0.02021177,0.03549169,-0.0027755406,-0.016094556,0.014223097,-0.040225383,-0.062616855,-0.0028484724,0.008394049,-0.03168272,0.011834233,0.03892637,0.032079026,0.050199166,0.043814182,0.018835695,0.0128690405,-0.033047784,-0.011812216,0.0056749275,-0.012043396,0.034611,-0.022501556,0.021202542,0.019022841,0.013782754,0.006225357,0.0033300982,0.0047034197,-0.010160928,-0.03113229,0.029745206,-0.046059936,0.043704096,-0.07296493,-0.024791341,0.0022099742,-0.010414125,-0.039608903,-0.098636955,-0.020938337,0.036086153,-0.016468849,-0.027323317,0.0073537375,0.037957616,-0.02223735,0.011426915,-0.019496212,-0.028248038,0.019705374,-0.059314277,-0.009836175,-0.038397957,-0.01864855,0.027367352,0.035888,0.01590741,-0.016479857,0.010948041,-0.0057519875,-0.025011513,0.03496328,0.0017421092,-0.018736618,0.015687238,-0.019870503,-0.0017737589,-0.04821762,0.02815997,-0.0055648414,0.015103783,0.020509,0.0017352288,0.022831813,0.046720453,0.00017871756,-0.049890924,0.014090993,0.008041774,0.009924243,0.0026310526,-0.023976706,-0.037429202,-0.0038447496,0.039829075,-0.021797005,0.036086153,-0.027081128,0.049098305,0.06283703,0.01661196,0.011157204,-0.04423251,0.014300157,0.015951445,-0.013925865,-0.0064014946,0.053193502,0.0071335654,-0.010892998,-0.03540362,0.04456277,-0.019077884,0.0056116283,0.0039355704,0.0128690405,-0.019022841,0.025870183,0.03487521,-0.00250583,-0.019088892,0.018131146,-0.0052483445,-0.040577658,0.0051300023,-0.0027218736,-0.019617306,0.00952243,-0.01958428,0.061912302,-0.030515809,0.09335283,-0.048966203,-0.016567927,-0.020861275,-0.010529716,-0.040071264,0.039983194,-0.046720453,-0.0058400566,-0.018736618,-0.000050226685,-0.0030631397,-0.00050639507,0.0036465952,-0.039829075,0.04046757,-0.039366715,0.027257266,-0.043726116,0.01778988,0.0049648737,0.045883797,-0.05711256,0.030251602,-0.0145753715,0.006467546,0.08119935,0.03657053,-0.012714921,-0.04874603,0.039564867,-0.019606296,0.019143935,0.009148138,0.0039851093,-0.002150803,0.0072821816,-0.045663625,-0.04330779,0.008014252,-0.0139368735,-0.06380578,0.025517909,0.043043584,0.018769644,-0.010953546,-0.025936235,-0.03315787,-0.006506076,-0.08714399,-0.017888958,-0.00048678604,0.023294173,0.0069959583,0.013100221,-0.040907916,-0.048790067,0.1077961,0.0762675,0.003759433,0.04865796,-0.04487101,-0.028842503,-0.0138818305,0.02613439,-0.009082085,-0.017338527,-0.00815186,0.020376898,-0.07948201,-0.009390326,-0.0032392773,0.027477438,-0.027323317,-0.009924243,0.016744064,0.013606615,0.020013614,-0.029458983,0.0023407012,0.01162507,0.0019650331,0.022523573,-0.011790198,0.0021769484,-0.01887973,-0.024615204,0.023294173,-0.02714718,0.03980706,0.025099583,-0.03604212,-0.008272954,0.043241736,-0.0021356663,-0.012670886,0.016424814,0.020057648,-0.037979633,-0.022765761,-0.036702637,-0.020145718,0.05794921,-0.025033532,-0.022941899,0.006880368,-0.020839259,0.0021714442,0.01732752,-0.015169836,-0.0012776844,-0.008927966,-0.03496328,-0.009979286,0.01216449,0.0053364136,-0.026178425,-0.04205281,-0.005385952,-0.0074473103,0.011691121,0.005509799,-0.016832132,-0.023470312,0.0037979633,0.01279198,-0.0030163534,-0.0059116124,0.020112691,0.014531338,-0.02067413,-0.0018453147,0.017272476,-0.026266493,-0.011470949,-0.001046504,0.001066457,0.012891058,0.03496328,-0.0045960858,0.03564581,-0.015643205,0.025055548,0.025870183,-0.0006240494,0.021103464,0.007265669,0.027411386,0.001644408,0.00990773,-0.0012880049,-0.011570027,0.0035887999,0.022490546,-0.045839764,0.008773846,-0.0032282686,-0.015599171,0.0010065979,-0.03853006,-0.0059226207,0.011091153,0.03232122,-0.01716239,0.015456059,0.0053501744,0.028710399,-0.0034456884,0.019474193,0.02168692,-0.015257904,0.0019292552,-0.028204005,-0.024681257,-0.022248358,0.024835376,0.0148395775,0.051432125,0.028049884,-0.017448613,-0.014190071,-0.00012453466,-0.0041612466,-0.011157204,-0.03278358,-0.03432478,-0.004499761,0.009538942,-0.008608717,0.01263786,-0.04368208,-0.0074142846,0.0044364613,0.01793299,0.015665222,0.015940437,-0.0054905335,0.025760097,0.015852368,-0.00030308022,-0.01326535,0.007948201,0.03245332,0.030956151,-0.009390326,-0.04680852,0.045531522,-0.0003233773,0.008927966,-0.004565812,0.009439865,0.0013134623,0.017888958,0.005438243,0.047160793,0.022039196,0.0072601642,-0.0096710455,-0.009390326,0.009748106,-0.011030606,-0.006016194,-0.053017363,-0.0157643,-0.019562263,0.014773526,-0.010964555,-0.047953412,0.016512884,0.013397452,-0.03135246,0.052929293,-0.0048685484,-0.012626851,-0.030647911,-0.022501556,-0.02402074,-0.01700827,0.002859481,-0.041854654,-0.057773076,0.0076894993,-0.051520195,0.040863883,0.028710399,0.009296753,0.012946101,-0.052929293,0.021774989,-0.02426293,-0.016215652,0.012461723,0.0055290638,0.0029117716,-0.027917782,-0.040071264,-0.010309543,-0.0009708199,-0.0074858405,0.04104002,-0.014817561,-0.025826149,0.01466344,0.013210307,-0.009390326,-0.028226022,0.0029558062,0.057552904,0.037891563,0.011977345,0.00070592575,0.014024942,0.0010740254,-0.021048421,-0.04478294,0.0366586,0.015742281,-0.019628314,0.01450932,-0.028710399,0.01841737,-0.027499454,0.004150238,-0.007496849,-0.030383706,0.0033686282,-0.009841679,-0.0048713004,-0.013969899,0.022655675,0.019925546,0.017360544,0.022589624,-0.016094556,-0.024747308,-0.012450714,-0.024901427,0.0072821816,-0.0028567289,0.01068934,-0.010551732,-0.0251216,0.0042355545,-0.00013605927,0.025209669,0.024439067,0.012362645,0.053721912,0.010518706,-0.014289148,-0.01529093,0.031572632,0.03775946,0.025363788,-0.00041557424,0.040291436,0.025892202,0.021015396,-0.008603212,0.0008545417,-0.056672215,-0.014861595,0.0009832046,0.005008908,0.012296594,-0.0031539607,-0.01443226,0.029921345,0.027433403,-0.03980706,-0.017580716,0.049802855,-0.025473874,0.017833915,-0.00713907,0.01450932,-0.009803148,-0.011988353,0.021422714,0.014344191,0.0041970243,0.0032034994,-0.024703274,-0.022380462,-0.030009413,-0.004092443,0.023316192,-0.018384343,-0.002563625,0.025407823,0.0119663365,0.0030851571,0.037979633,0.014597389,0.01162507,-0.021015396,0.022226341,-0.02432898,-0.048261654,-0.04440865,-0.02598027,-0.0069794455,-0.01185625,-0.008025262,0.025165634,-0.026728854,-0.003382389,0.03582195,-0.0053006355,-0.073757544,0.0061207754,0.0069959583,-0.031176323,-0.020376898,0.008487622,-0.013089213,0.0045905816,0.037517272,-0.038265854,-0.024681257,0.008394049,0.00013012496,-0.0067812908,0.048393756,-0.016975245,0.047513068,-0.00012419064,-0.013254341,-0.0041419817,-0.0265307,-0.014960673,-0.020553036,0.024086792,0.03401654,-0.013925865,0.016204642,-0.0029860798,0.040907916,-0.053149465,0.010639801,0.021554817,0.0069133937,0.010502194,0.01856048,0.025892202,0.010226979,-0.017118355,0.0031704735,0.0067427605,-0.016369771,-0.040291436,0.018197197,0.008944479,-0.024086792,0.026354562,0.06464244,0.0062914086,0.002299419,-0.014421252,0.0053611826,-0.04315367,0.021477757,-0.0014999203,0.0059886724,-0.017844923,-0.014674449,-0.003288816,0.0035530222,0.008850905,0.010248996,-0.026310528,0.0021989655,0.011162709,0.023888638,-0.0026682068,0.0012928211,0.014344191,0.013463505,-0.012990135,0.009219693,0.011382881,0.022138271,0.029304864,-0.007326216,-0.028732417,0.025914218,-0.0040429044,-0.028710399,-0.008146356,0.033840403,-0.023580397,0.008806871,0.06200037,0.015731273,0.008680272,0.0026888477,0.008641742,0.0082344245,0.009467387,0.046720453,0.0005628141,-0.0024879412,-0.004389675,-0.010716861,0.0058235433,-0.03236525,-0.008102321,0.028688382,-0.018582499,0.02027782,-0.00928024,-0.019859495,0.00076165673,-0.033025768,-0.0004823138,-0.0393447,-0.00044447178,0.0034924748,0.00452453,0.03738517,-0.015731273,-0.040049247,0.021907091,-0.037010875,-0.014542346,0.040665727,0.023140054,0.0060492195,-0.00070248556,0.022611642,0.02981126,0.014949664,0.014124019,-0.034809157,0.01895679,-0.01941915,-0.03822182,-0.016953226,-0.0014421252,-0.011448933,0.014168054,0.007348233,0.005553833,-0.00037842023,-0.028314091,0.03172675,0.04222895,-0.07402175,-0.007573909,0.01941915,0.0021810767,0.015566145,-0.0012632356,-0.0026860957,0.044012338,0.023976706,-0.0035447655,0.026112372,-0.051608264,-0.009979286,-0.011294812,-0.03066993,-0.0061097667,0.017129363,0.018351318,-0.04266929,-0.042471137,0.0042905975,0.049582683,-0.027081128,-0.015731273,0.021752972,0.018901747,0.059006035,-0.00079743465,-0.031462546,-0.006016194,-0.0012811245,0.042405084,0.006071237,-0.015709257,0.036240276,0.0013492402,0.026178425,0.015191853,0.011559018,-0.038816284,0.013749727,0.0015068006,-0.0010740254,0.008195895,-0.0094563775,0.03058186,0.07063111,-0.028710399,-0.001290069,0.006412503,0.0042135376,-0.012593825,-0.02395469,0.024240913,0.0051547717,-0.006148297,-0.012340629,0.032541387,-0.014828569,-0.009720584,-0.037715424,-0.0032200122,0.004642872,-0.007386763,0.014289148,-0.02690499,-0.0023104276,0.032255165,-0.03315787,-0.0032172601,-0.00035949922,0.016204642,0.009219693,0.034677055,0.008603212,-0.002654446,-0.012847023,0.038860317,0.0027136172,0.008416066,-0.07499051,-0.022039196,0.012538782,0.0032255165,-0.016711038,0.02300795,-0.03331199,-0.012825006,0.016490865,-0.0042300504,0.0075518917,0.019958572,-0.018175181,0.004692411,0.0012625476,0.0050034034,0.0044832476,-0.007573909,-0.0052290796,-0.0050611985,0.0025305992,0.009434361,0.021158507,-0.01693121,0.030097483,-0.03696684,-0.025429841,-0.022028185,0.006715239,0.0020200762,-0.015489085,0.00003382131,0.010381099,-0.027983833,0.023822587,-0.0012157611,-0.015731273,0.02567203,0.009373814,0.033510145,-0.011713139,0.063013166,0.007276677,0.029128727,0.030317653,-0.024218895,0.007205121,0.03659255,0.014179062,0.014740501,0.030383706,0.031836838,-0.012957109,0.013430478,-0.0020586061,0.0016691773,-0.01739357,0.020431941,0.022248358,0.023140054,0.051123887,-0.010237988,-0.04702869,0.0067592734,0.0157643,0.01170213,0.013474513,0.0032365252,-0.042867444,0.02340426,0.011250778,0.035469674,-0.014685458,0.013309384,0.015775308,-0.0076179435,0.009913234,-0.008124338,-0.03199096,-0.030163534,-0.021830032,-0.0049621216,-0.014641423,-0.028886538,-0.00070214155,0.016259685,0.006208844,-0.0056033717,0.0044419654,-0.018593507,0.0251216,0.009225197,0.030846067,0.03223315,0.010271014,-0.012769963,0.017977025,-0.02395469,0.0032970724,0.00059515185,-0.0071831043,0.019165954,0.008795862,-0.002635181,0.017437605,0.04126019,0.021730954,-0.013738719,-0.022985933,-0.010160928,-0.0063464516,-0.016193634,0.035843965,0.0037429202,0.015687238,0.01529093,-0.014729491,-0.011162709,-0.06274895,0.021268593,0.012902066,-0.02410881,-0.034368813,0.0051134895,-0.009814157,0.016039513,0.015092775,-0.025694046,-0.019397134,-0.0026750872,0.023602415,-0.0074473103,0.04275736,-0.020960353,0.0119663365,-0.014079985,0.026618768,0.007717021,0.06521488,-0.002602155,-0.0013058939,0.022523573,0.0054877815,-0.018109128,0.02699306,0.00069216505,0.05521908,-0.0033768846,-0.03520547,0.02432898,-0.004130973,0.010733374,0.020090675,0.030713962,0.005553833,0.0036108172,0.03227718,-0.0011565898,0.016733056,0.025848167,-0.04456277,0.006258383,-0.034390833,0.0063134255,0.005493286,0.019716382,-0.02628851,-0.0430656,-0.0071500787,-0.010634297,0.01927604,0.016898183,-0.0098692,0.0019306312,0.023888638,0.0038805276,-0.0017792631,-0.025627995,-0.01622666,0.033047784,0.00016573086,-0.018769644,0.003385141,0.033135854,-0.003924562,0.010507698,0.009610498,-0.007067514,-0.016733056,-0.01080493,-0.059138138,-0.00040662976,0.005063951,0.029392932,0.004830018,0.0066712047,0.049186375,0.005518055,-0.0014421252,0.0056006196,0.027917782,-0.009742601,0.0072821816,-0.008294972,-0.018989816,0.02340426,-0.000054913937,0.0175587,-0.008008748,-0.041942723,-0.047557104,0.034390833,-0.012461723,-0.026662802,0.028600315,0.008482118,-0.01084346,-0.014366209,0.0053556785,-0.016468849,-0.03386242,0.043021563,-0.04865796,0.011107666,0.011470949,0.021774989,0.003608065,0.017646767,-0.0060492195,-0.010628792,-0.02145574,0.023051985,0.002486565,-0.023756534,-0.0145753715,-0.0069959583,0.031418514,0.017569708,0.0035585263,-0.01879166,-0.004502513,-0.016347755,-0.029304864,-0.013089213,0.008592203,-0.043748133,0.0067978036,-0.013771744,-0.031022204,0.022589624,-0.036548514,0.013848805,-0.024659239,-0.018153163,0.009181163,0.020420933,0.023624431,0.008762836,0.016556917,-0.00924171,0.0145203285,0.021631878,0.01567623,0.016722046,-0.0052318317,0.025429841,-0.01739357,-0.03027362,-0.03659255,-0.032585423,-0.020663122,-0.012373654,-0.019870503,0.008030766,0.0035777914,0.01326535,0.022941899,-0.007639961,-0.004144734,0.016105566,0.005696945,0.0013093341,0.009109607,-0.013067195,0.04104002,-0.006561119,0.027917782,0.04632414,0.0077830725,-0.028688382,-0.02309602,-0.015665222,0.028248038,-0.02223735,0.025143618,0.0026434374,0.04205281,-0.027081128,0.0034924748,-0.0043456405,-0.010050842,-0.04026942,-0.006192331,-0.014476295,-0.040753797,0.024306964,-0.017360544,-0.0048465314,0.019617306,0.014762518,-0.06380578,-0.031770788,-0.007496849,-0.018571489,0.007871141,-0.0020420933,-0.034985296,0.04214088,0.0032365252,-0.015081767,-0.0193531,-0.0046814024,0.003720903,-0.026772888,-0.012703911,-0.010133406,0.033179887,0.006583136,-0.0034842184,0.028027868,0.0280719,-0.0073207114,-0.014740501,0.0018797165,0.040687744,-0.025363788,0.016733056,-0.045355387,0.029282846,0.02855628,0.0138267875,-0.043109633,0.008735315,0.0025250951,-0.0043043583,-0.015511102,-0.010193953,0.006324434,0.013782754,0.036262292,-0.013705693,0.0026104117,-0.028292073,0.008432579,0.0077115167,0.043505944,0.018076103,-0.010970059,0.05640801,0.014696466,-0.0028952588,0.03223315,-0.02472529,-0.030559843,0.006704231,0.022589624,0.0044034356,0.025716063,-0.007006967,0.018230224,-0.005889595,-0.0052786185,-0.032343235,0.0022842821,-0.01103611,0.050727576,-0.03767139,-0.001739357,0.04407839,0.029084692,-0.019793443,-0.022963917,0.008091313,0.036240276,0.00010182945,-0.013133246,-0.02518765,-0.0028484724,0.04641221,0.007700508,-0.03049379,0.005380448,-0.014300157,-0.0073592416,0.026728854,-0.03549169,0.029965378,0.012197517,-0.0026283006,-0.0009694439,0.0031126784,0.053721912,-0.004279589,-0.01599548,0.007865637,-0.009065573,-0.015412024,-0.01072787,0.043241736,-0.025848167,0.011581035,0.0016196386,0.03813375,0.02886452,0.023734517,-0.016898183,0.020883294,-0.023051985,-0.07943798,0.01848342,-0.015643205,0.013199298,0.031088255,-0.0075463876,0.00090752053,-0.016193634,-0.013166272,0.017767861,0.03579993,-0.00866376,-0.021125482,-0.0017943999,0.0066767093,-0.024483101,-0.019298056,-0.00351174,-0.033289973,0.01903385,-0.026949026,0.04423251,-0.026156407,-0.038419977,0.030449757,0.009841679,-0.0059721596,0.013078203,0.012472731,-0.0052400883,-0.019254021,0.00045857654,0.011581035,0.0066161617,-0.011272795,-0.0049648737,-0.03386242,-0.00048506595,0.031198341,-0.04680852,-0.030846067,0.0064400244,0.018989816,-0.0072326427,0.009500412,0.05398612,0.00044343973,-0.011944319,0.017030288,0.024835376,-0.023756534,0.023910655,-0.010326057,-0.009021538,-0.0032805596,-0.041678518,-0.016821124,-0.001534322,0.012087431,0.025165634,0.022061212,0.00819039,-0.0028264553,-0.0057905177,0.002727378,-0.027917782,0.009043556,0.0017655024,-0.0090875905,-0.0020076914,0.006654692,-0.02426293,0.0139368735,0.006748265,-0.005146515,0.032167096,-0.04502513,0.0039713485,0.008647246,0.008718803,-0.0028539766,0.018637542,0.024350999,0.011735156,-0.017877948,0.026024304,-0.024835376,-0.015797324,0.017613743,0.0025705055,0.0009962773,-0.008977504,0.041744567,-0.001347864,-0.00079881074,0.025650011,-0.05548329,-0.022204325,0.016997261,-0.015279922,-0.00501166,-0.0017022031,-0.017195417]},{"id":"guide-profile-urls-0","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: User avatar and banner\nWhen you have a User object (e.g. message.author), use avatarURL(), displayAvatarURL(), and bannerURL(). These handle animated avatars (a_ prefix) and default fallbacks.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!avatar') {\n const user = message.author;\n // avatarURL() returns null if no custom avatar; displayAvatarURL() uses default\n const avatarUrl = user.displayAvatarURL({ size: 256 });\n const bannerUrl = user.bannerURL({ size: 512 });\n\n const embed = new EmbedBuilder()\n .setTitle(`${user.username}'s profile`)\n .setThumbnail(avatarUrl)\n .setColor(user.avatarColor ?? 0x5865f2);\n if (bannerUrl) embed.setImage(bannerUrl);\n await message.reply({ embeds: [embed] });\n }\n});\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.017121723,-0.025510876,-0.016888691,0.022162573,0.017575523,-0.019452043,0.011945958,-0.020985149,0.037137948,0.039958864,-0.0145215755,-0.027497781,0.036622826,-0.058478776,-0.021990865,0.051512346,0.0006262736,0.0010655083,-0.009995848,0.017943468,0.03375285,-0.003167396,0.0021770098,0.06245259,-0.016704718,0.022849405,-0.022702226,0.055731453,0.000621291,-0.024750456,0.027105305,-0.021034207,0.009676962,-0.012418155,0.0030585455,-0.006580089,0.045428984,0.009768949,-0.0103760585,0.04108723,0.017146252,-0.064120606,0.04954997,0.02369568,-0.00502552,0.03149612,-0.028650677,-0.01696228,0.016667923,0.06294318,-0.017869879,0.006359322,0.022003131,0.038192727,-0.045870516,0.032084834,-0.021819158,-0.030613052,-0.052346356,0.039566386,0.008376889,-0.004050465,-0.0058779265,-0.005908589,0.016312243,-0.020727588,-0.058086302,0.012056342,0.0039155516,0.019071832,0.059361845,-0.009309017,0.041283466,-0.02205219,-0.0067763263,0.00023609825,0.0026906002,0.035249162,0.01531879,-0.054554027,0.009511387,0.017121723,-0.085559554,-0.021426683,-0.06500368,0.023327734,-0.044349678,-0.03998339,-0.023523971,0.009750552,-0.013822479,-0.03161877,-0.0646112,-0.011185538,0.065935805,0.042019356,0.009033058,0.0058349995,0.011841707,0.027963845,0.06338472,-0.009186368,-0.04655735,-0.006524897,0.050678335,-0.05200294,0.024345716,0.061814815,-0.0024284392,0.0012080872,-0.051512346,0.026173178,0.007579674,0.05445591,0.0077943085,-0.017992526,0.011351113,0.03250184,0.019734135,-0.04017963,-0.07628733,-0.010057173,0.054406848,0.022922995,0.035175573,-0.057252295,-0.017882142,-0.00154767,-0.09743192,-0.055633333,-0.001438053,-0.028307261,0.034022678,-0.042264655,-0.039689038,-0.033581145,-0.01182331,-0.03887956,-0.030122457,0.0031643298,0.032820724,-0.050482098,-0.01498764,-0.021549331,-0.031250823,-0.010529369,-0.054112494,0.045061037,-0.01065815,-0.034758568,-0.016925486,-0.024652338,-0.0567617,0.01379795,-0.03961545,0.003179661,0.027963845,-0.05021227,-0.026344886,-0.033384908,-0.00024874636,-0.026246767,0.0048906067,-0.0028776391,-0.025780702,-0.051659524,0.037579484,-0.0044184104,-0.037726663,0.026050529,-0.0016603533,-0.011118081,-0.02992622,-0.05021227,0.04108723,0.0055897026,0.016299978,-0.05185576,0.017440608,0.050236803,0.04952544,0.0536219,0.001583698,-0.04089099,-0.032452777,0.0062489384,0.010829858,0.01025341,-0.014313074,-0.00845661,0.0025817498,0.0041301865,-0.01931713,-0.022972053,0.041970298,-0.007782044,0.053229425,-0.022824876,-0.008174519,0.003066211,0.018740682,-0.0011130347,0.027865727,-0.013810215,-0.0010885049,-0.019856783,0.0020512952,0.015637677,-0.027350603,0.03448874,0.00621521,-0.007273053,-0.0012809096,-0.017587787,-0.061912935,-0.008855218,-0.0069235046,0.05131611,-0.035739757,-0.010523236,-0.052444473,0.050482098,0.054161552,-0.032796193,0.027031718,-0.016336773,0.0026967328,-0.042853367,-0.00848114,0.051070813,0.01891239,-0.004623846,0.017109457,-0.035862405,0.016753778,-0.021279505,0.012792232,0.050629277,0.00971989,-0.0075183497,-0.01625092,-0.006843783,0.03620582,0.021488007,0.007193331,-0.018593503,-0.009946789,-0.027301544,0.027767608,0.06505273,0.056369226,-0.010498707,-0.007309847,0.0027795203,0.030441344,-0.0181765,-0.050923634,0.030956468,-0.00060481013,-0.037260596,0.014901786,0.017097194,-0.021451212,0.020040756,-0.010069437,0.008113194,-0.017710436,0.0370153,-0.005936185,-0.004909004,-0.00006501326,-0.029043151,-0.0041179215,0.027743079,-0.03529822,0.015085759,0.022223897,0.012951676,-0.03210936,0.03461139,0.015588617,0.02766949,0.01691322,-0.019427514,-0.031177234,0.004666773,0.013540388,-0.025976941,-0.010216615,0.024112685,0.0011459964,0.009566579,0.021721039,-0.009799611,0.030367754,0.07349095,0.0489122,0.01645942,0.013724361,0.015956562,0.007567409,-0.042166535,0.023977771,0.019905843,0.0065310295,-0.0018151969,0.0023057908,0.027890256,0.013932863,0.009738286,-0.001945511,-0.0026062794,-0.042976014,-0.0054885177,-0.05430873,-0.0053505385,0.010958638,0.021083267,0.0072975825,0.014325338,0.01943978,-0.0056878217,-0.0063409247,-0.039787155,-0.023131497,-0.03625488,-0.017330226,0.0025832828,0.041455176,0.028282732,0.02999981,-0.009523652,-0.0031321347,0.035568047,0.010878917,0.021868218,0.0115412185,-0.0051604332,-0.018802006,0.048568785,-0.011252995,-0.084921785,0.005175764,-0.031128176,-0.04427609,-0.00009150724,-0.016189594,0.02526558,-0.04094005,-0.036377527,-0.015686736,0.049132966,-0.0026522726,-0.038290843,0.025658054,-0.008560861,0.019783193,-0.02906768,-0.04972168,-0.0010716408,-0.0021831424,0.0125346705,0.010670414,-0.018752947,-0.04346661,0.0020942222,-0.0011321985,-0.0028255135,0.030882878,-0.031422533,-0.03546993,-0.00085853913,0.012240315,-0.011252995,0.011148743,-0.014864991,-0.009315149,-0.006782459,-0.013932863,0.034341563,0.039713565,0.04567428,-0.004084193,-0.06470932,0.016680188,-0.013466799,0.0127063785,-0.006389984,-0.06142234,0.007236258,0.02369568,0.003933949,-0.024137214,-0.020985149,0.04030228,0.03873238,0.0614714,0.016900955,-0.0008976333,-0.010602958,-0.016005622,0.025461817,0.01936619,0.003296177,0.009315149,-0.021598391,-0.02752231,-0.027399663,0.0008393753,0.018716153,0.01936619,-0.012461082,0.032477308,-0.010940242,0.0016066947,0.01200115,0.044521384,-0.03760401,0.0145829,0.06382625,-0.07177387,-0.013650772,-0.033703793,-0.0722154,0.0039462135,-0.05921467,0.031815007,-0.028945033,0.028846914,-0.040743813,-0.056320164,-0.05681076,0.038266316,0.011829442,-0.035249162,-0.029337509,0.060048677,-0.01022888,-0.036475647,0.02124271,-0.022984318,0.024259862,0.0074324957,-0.0152329365,-0.0096953595,-0.0003857677,-0.012853557,0.023413587,-0.00020946054,-0.013258297,-0.016410362,-0.012185123,0.02043323,0.02005302,-0.04984433,0.037481364,0.021156857,0.047047943,0.027448721,-0.019353924,0.0018443259,0.030416815,-0.03551899,0.038830496,0.019979432,-0.042289183,-0.026835479,0.025314638,0.019096363,-0.057252295,0.029582804,0.016704718,0.035960525,-0.01417816,0.015036699,-0.017980263,-0.000028961322,-0.039762624,-0.009278355,0.024578748,0.070841745,0.03394909,-0.04170047,-0.04189671,-0.012332301,0.09331094,0.06068645,-0.047146063,0.008407551,-0.011743588,-0.042828836,-0.023450382,0.05445591,-0.0127063785,0.03856067,-0.029828101,0.007683925,-0.01263279,0.038953144,-0.01539238,0.017906673,0.016165065,-0.036843594,0.02483631,0.02766949,-0.04555163,-0.04170047,-0.019464308,-0.018262353,0.013233767,-0.032011244,-0.03870785,-0.024333451,0.015465968,-0.015208407,0.029239388,-0.024284393,0.03860973,-0.017232107,-0.042264655,-0.007886295,-0.0047342298,0.0008240442,-0.015404644,0.017624581,0.0014510844,-0.013405475,-0.09002396,-0.0022919928,-0.0074692904,0.013184708,-0.02600147,0.022726757,-0.035077456,-0.02835632,0.03137347,-0.033384908,-0.026958128,0.005764477,-0.021230446,-0.043098662,0.0055958354,0.008358492,0.002282794,-0.020629467,0.010210483,-0.007622601,0.0379229,0.011676132,-0.014080041,0.04101364,-0.00708908,-0.023254145,-0.010333131,0.016189594,0.012694114,-0.0030248172,0.006604619,-0.008364623,-0.04174953,0.0136139775,-0.004580919,0.028061964,0.027644958,0.013098854,0.002324188,0.012332301,0.030294165,-0.018679358,0.005635696,0.012240315,0.0008087132,-0.002526558,0.015453704,0.016815102,0.027718548,-0.0074263634,0.036377527,-0.0022030727,0.009676962,-0.014006453,-0.014619694,-0.020212464,-0.0013407008,-0.030367754,0.0040443325,-0.02414948,-0.013344151,0.00105401,0.029435627,0.048029132,-0.015098023,-0.014423457,-0.015686736,-0.0049641957,-0.014006453,-0.009345812,0.013196972,0.00006918139,0.0022689963,0.0048568784,-0.038928617,-0.040498517,0.00152544,0.018421797,-0.0096463,0.0051604332,-0.02529011,-0.039934333,-0.003240985,0.011945958,0.025731644,-0.01574806,-0.0141291,-0.024946693,0.008425948,0.040449455,0.0008163787,0.010008113,0.030343225,-0.011479895,0.0028669073,0.011510557,0.051708583,-0.034930278,0.030613052,0.0047127665,0.010400588,-0.0034586862,-0.006276534,0.034832157,0.0307357,-0.004550257,-0.007659395,0.011320451,-0.013540388,0.0036825195,-0.020531349,-0.02673736,-0.054063436,0.035715226,-0.0035660034,0.008824555,0.009542049,-0.023511706,0.0041240538,-0.033041492,0.02240787,-0.029018622,-0.007775911,-0.04977074,0.0034249579,-0.0134422695,-0.018115176,0.0013161711,-0.012865822,0.019452043,-0.007910824,-0.03392456,0.034096267,-0.01739155,0.009315149,0.008364623,0.017636847,-0.0049580634,-0.010504839,-0.011302054,0.006138555,-0.040743813,-0.012044077,-0.026541123,0.04160235,0.026467534,-0.029362038,-0.009597241,-0.035788815,0.0030677442,-0.040523045,0.025118401,0.022788081,-0.012927146,0.030171517,-0.033384908,0.016631128,0.0028515763,0.005957648,-0.010155291,0.0027641894,0.0022751286,-0.0126205245,-0.046974353,0.022322016,0.038241785,-0.0064083813,0.0100939665,0.0451101,-0.03149612,0.008364623,0.007365039,-0.02276355,-0.0039584786,-0.016692454,-0.012252579,-0.011817178,0.023327734,-0.026148649,0.007622601,-0.005212559,0.03066211,-0.025032548,-0.035715226,-0.01303753,-0.004547191,0.005666358,-0.023413587,0.02992622,-0.014313074,-0.019660546,0.024370246,0.005868728,-0.0050592483,0.019942638,-0.041357055,0.0047587594,-0.0056387624,-0.03473404,0.032747135,0.047366828,0.012755438,-0.018998245,-0.006800856,-0.0146932835,-0.00078188383,0.020445496,-0.0072423904,0.02162292,0.0019485771,-0.010872784,-0.010443515,-0.017048134,0.008321697,0.010425118,-0.024308922,0.011436967,-0.012816763,0.022824876,-0.0041731135,0.011522821,-0.0019286468,0.005945383,-0.028061964,0.008738701,0.009450062,-0.03691718,-0.037530422,-0.025535407,0.027963845,-0.025707114,-0.035273694,0.0046146475,0.034979336,0.04883861,-0.0034372227,0.016520746,-0.02126724,-0.006739532,0.018752947,0.0050653806,0.030220576,-0.0048998054,-0.040817402,-0.008364623,-0.023413587,0.008824555,0.048372544,-0.00027557573,-0.032084834,0.008781629,-0.008953337,-0.009738286,-0.005534511,0.04017963,0.021978602,-0.0347831,0.02276355,-0.013233767,-0.015870709,-0.037554953,-0.024958959,-0.031422533,-0.036573768,-0.019807724,-0.017967997,-0.036696415,-0.011590278,0.019047303,0.000908365,-0.09026925,-0.040326808,0.032133892,-0.036377527,0.0014587499,0.011663867,0.0057184836,-0.013552653,0.021868218,-0.021880483,-0.006739532,-0.010541634,0.0010356128,-0.0401551,0.02473819,-0.00062742346,0.012424287,-0.019734135,0.018605769,-0.030146988,-0.038143665,-0.012583731,-0.021917276,0.04094005,0.011289789,0.024235332,0.0076287333,-0.008315564,0.032084834,-0.038094606,-0.026173178,0.00688671,0.0013292026,0.02281261,-0.0015492032,0.027963845,0.0134422695,-0.015294261,-0.016299978,-0.02283714,0.017808555,0.0040719286,0.00886135,-0.03392456,0.00363346,0.02048229,0.005258552,0.022248428,-0.060244914,-0.00603737,-0.013160178,-0.013454534,-0.0228862,0.012583731,0.021230446,0.0038266315,-0.05524086,-0.0059208535,-0.020531349,-0.022162573,-0.0014664155,0.0037990354,0.016447157,-0.008947204,0.024112685,-0.010192086,-0.00037350284,-0.010474177,0.011259127,-0.011878502,-0.004096458,0.00085470633,0.041970298,0.019268071,0.019611485,0.015208407,0.034243446,-0.0003577885,0.027154366,-0.023658885,-0.0015790988,0.0034310902,0.0213163,0.019120893,0.012246447,-0.0006262736,0.0019347792,-0.023339998,0.0096953595,0.01536785,0.035739757,-0.022444665,0.0069909613,-0.0089288065,-0.0014687151,-0.0066168834,-0.014325338,0.04324584,0.056369226,-0.046189405,0.02838085,-0.028871443,-0.01162094,0.0044398736,-0.024370246,-0.017305695,0.0145215755,0.01729343,-0.010008113,-0.02374474,0.011712926,-0.030097928,-0.025854291,0.004580919,-0.034513272,0.021586126,0.023315469,0.037358716,0.0055897026,0.0016036284,0.019108627,0.009223163,-0.0019501103,0.01207474,-0.013785685,-0.015183877,-0.006463573,-0.03299243,-0.022236163,0.0291658,-0.028528027,0.01683963,-0.0035108116,-0.022003131,0.013160178,0.008149989,-0.0070032263,0.0010984702,-0.01157188,0.010357661,0.0096953595,0.0075735413,-0.015294261,-0.023168292,-0.02754684,0.02367115,-0.016925486,0.0073405094,0.002788719,-0.06780006,0.049010318,-0.0075612767,-0.038364433,0.02666377,0.023425853,0.031790476,-0.006984829,-0.030245107,-0.023940977,0.048249897,0.023658885,0.016618865,-0.010210483,-0.024235332,0.0356907,-0.033041492,-0.01539238,0.01896145,-0.0006094095,0.02845444,-0.0067088697,0.009339679,0.058478776,-0.0016036284,0.027007187,0.04636111,0.035666168,0.030318696,0.029484686,0.009358076,-0.006653678,0.019341659,-0.028724266,-0.003983008,0.042313714,-0.027154366,-0.008542464,-0.01853218,-0.022751287,0.009149574,-0.0054823854,-0.01645942,0.01572353,0.011817178,-0.0040167365,-0.0020650933,-0.000116420204,-0.0047280975,-0.03225654,0.0078004412,-0.01058456,-0.014030982,0.00012207353,-0.011326584,-0.018519916,0.0166066,-0.042951483,0.034979336,-0.023254145,0.03951733,-0.017501934,0.007978281,0.021635186,-0.015306526,-0.005372002,0.043589257,0.0035261428,-0.010302469,-0.049942445,0.000027931266,-0.003023284,-0.010872784,-0.023806063,0.03210936,-0.038438022,-0.023450382,0.0006741832,0.0060986937,-0.009634036,0.017195312,-0.026688302,0.0029374303,0.023082437,0.0028377783,0.009891597,-0.01931713,0.007953752,0.0026108788,-0.0056816894,0.013098854,0.03699077,-0.0012648121,-0.012485611,-0.030490404,-0.026688302,-0.020286053,0.02455422,0.0026369416,-0.012160594,-0.008579259,0.016483951,0.015380115,0.01969734,0.007867898,0.003661056,0.005678623,-0.009045322,-0.008726437,0.024198538,-0.014447987,0.01812744,0.016483951,0.015269731,-0.049966976,-0.005914721,0.0045686546,0.005276949,0.027694019,0.014815932,0.04984433,-0.0049365996,0.020335112,0.0016220256,-0.008149989,-0.047612127,0.030196046,-0.017710436,0.026050529,0.019893577,0.015564088,-0.04562522,-0.034071736,-0.027277013,-0.006202945,0.0030861415,0.011167141,-0.035249162,-0.0042191064,-0.0030263504,0.01943978,0.0338755,-0.011596411,-0.0011099684,-0.036770005,0.041479703,0.0041608484,-0.036009584,0.022223897,0.028282732,0.03210936,-0.008708039,-0.031079115,0.011210068,0.014803668,0.023990035,-0.0030600787,0.037579484,-0.008800026,0.03797196,-0.0005825801,0.019550161,-0.003970743,0.011032227,-0.0047097,0.0073466417,-0.0030018208,-0.0071994634,-0.011927561,-0.0029987544,-0.012013415,-0.0080764,-0.013957392,-0.007818839,0.037653074,0.013957392,-0.018237824,0.023401324,-0.008143857,0.023008848,0.006389984,-0.01063362,0.009302884,0.009879332,-0.0017186113,-0.06539615,-0.01898598,-0.049083907,0.031422533,0.007358907,0.013319621,-0.014497046,0.022739021,-0.00073435757,0.023352263,0.0094684595,-0.01962375,0.00059369515,-0.0031168035,-0.00079798145,0.024112685,0.054897442,0.00406273,-0.0054547894,0.0012456483,0.02762043,0.035028394,0.05116893,0.021304036,-0.01336868,0.006117091,0.0006021272,0.004053531,-0.003237919,-0.018863332,0.03620582,0.0073405094,-0.0058349995,0.006389984,0.022922995,-0.003964611,0.009407136,-0.01536785,0.020899294,0.02840538,-0.03851161,-0.0055590407,0.0056172987,0.007193331,0.005270817,0.021990865,-0.026393944,0.02999981,-0.015662206,0.025731644,-0.017428344,0.013650772,-0.0061968127,-0.025486346,0.035003867,0.0067211348,-0.00802734,-0.004752627,0.0043202913,-0.04488933,-0.037530422,0.004504264,0.022395605,0.009952921,0.0023303204,-0.059361845,-0.009407136,0.05509368,0.0068621803,0.009615638,-0.009523652,0.013098854,0.005880993,0.0056908876,-0.013233767,0.0072853174,0.035911463,0.049132966,-0.019059569,0.017146252,0.043074135,0.04116082,0.009842537,-0.010001981,-0.0060618995,0.020420967,0.00031294517,-0.004810885,-0.016766042,0.016692454,-0.033262257,0.02526558,-0.013847009,-0.033581145,-0.017550992,0.026492063,-0.0051880293,-0.0356907,0.01048031,-0.011308187,-0.03147159,0.009462328,0.020138875,-0.008867483,-0.006690473,0.03382644,0.00013769204,0.0055958354,0.049402792,0.055388037,0.007622601,0.014619694,-0.028699735,-0.027865727,0.00055038487,0.035960525,-0.006025105,-0.027890256,0.0029144336,0.008444346,-0.011804912,0.053082246,-0.02367115,0.0011988885,0.0043509537,-0.005939251,0.008358492,-0.02488537,0.026271297,-0.029877162,0.0027089976,-0.010799196,0.0037162479,0.025658054,0.0078004412,-0.042902425,0.021868218,0.05126705,-0.021340828,-0.008566994,0.039713565,0.00089150085,0.018409532,-0.017563257,-0.01605468,0.0145829,0.019464308,0.030514933,0.010707209,0.0010992367,-0.021353094,-0.0041332524,-0.01227711,0.0014273212,-0.029386567,-0.0023931777,-0.026884539,-0.023634356,0.016618865,-0.019035038,0.0383399,-0.04569881,0.0023333866,-0.0005212559,0.00049902586,-0.00181673,-0.013859274,-0.005580504,0.042460892,-0.013675301,0.017563257,0.007941486,0.004258967,0.01812744,-0.022910729,-0.031250823,0.022788081,-0.01141857,0.017452873,-0.025363699,0.041725002,0.0074876873,0.009394871,-0.018863332,-0.014926315,0.0022705293,-0.004479734,-0.02195407,-0.029705454,0.008579259,-0.00095819094,-0.026246767,0.008058003,0.044030793,-0.047047943,0.0015852312,0.019991696,-0.008094797,-0.020163404,-0.0060404358,0.005706219,0.004142451,0.00031352008,0.004780223,0.0007481555,-0.019402985,-0.012467214,-0.063482836,0.029533746,-0.02757137,0.020335112,-0.0056816894,0.0046207802,-0.03313961,0.0003277013,0.0066168834,0.003848095,-0.0001550353,0.011375643,0.013969658,-0.03394909,-0.0017400748,-0.0027212624,0.022346547,0.01101383,-0.0004043566,-0.008781629,0.009082117,0.02686001,-0.025633525,0.04896126,-0.0003100706,0.013564918,0.023781532,0.004593184,0.031913124,0.0052064266,0.014546106,-0.03301696,-0.033286788,0.010596826,0.02005302,0.027129836,-0.02202766,0.0115412185,-0.019586956,0.010670414,-0.012779968,-0.02250599,0.022003131,0.012037945,-0.0046821046,-0.021757834,-0.015036699,-0.00068069884,0.034096267,-0.01025341,-0.018139705,-0.013932863,0.030269636,-0.0073037148,0.0146074295,0.013969658,-0.0061232233,-0.017869879,0.016999075,0.032599956,0.006000575,0.0011306653,-0.0025250248,0.0002864991,-0.05666358,0.02762043,0.014423457,-0.03537181,0.011265259,-0.0064881025,-0.024419306,0.03485669,-0.002032898,0.019562427,0.019942638,0.0077207196,-0.0015898305,0.0032655147,0.03399815,0.0024453034,-0.0083033,0.005562107,0.0020267656,-0.013601712,-0.038683318,0.0071258745,-0.032673545,-0.010596826,-0.017281165,-0.010290205,0.01916995,0.00094056025,0.02521652,0.0067885914,0.002644607,-0.04893673,-0.019856783,-0.015183877,0.0240023,0.0049212687,-0.0027335272,-0.0055529084,-0.010952506,-0.01931713,-0.030465873,0.011553483,-0.008566994,-0.009192501,-0.0074754227,-0.011725191,-0.019954901,0.014595165,-0.011167141,-0.0034678848,0.04162688,0.005865662,-0.008941071,-0.025081607,0.008346227,0.018385002,-0.04260807,-0.009499122,0.009591108,0.021819158,-0.031422533,0.014852727,0.004473602,0.011651603,-0.0039431476,0.01724437,0.015171613,0.03780025,0.01002651,0.0141536305,0.024664601,0.012209653,0.024701396,0.0068805777,0.0026476732,-0.002121818,0.019967167,0.0036365264,-0.012657319,-0.0009459261,-0.00769619,-0.004446006,0.015404644,-0.01691322,-0.023376793,-0.0052953465,-0.0426326,-0.021034207,-0.008971734,0.0004802453,0.034366094,-0.013908333,-0.03137347,-0.017379284,-0.011173273,0.05141423,0.019513367,0.013295092,0.0060343035,-0.028552558,-0.017636847,-0.011081287,-0.018802006,0.028528027,0.0033881632,-0.039173912,-0.0053965314,-0.013969658,0.0045533236,0.028797854,0.022125779,-0.0078004412,-0.014840461,0.018446326,-0.014828197,-0.04702341,0.016618865,0.02002849,-0.028969562,0.013466799,-0.02521652,-0.013466799,0.017624581,-0.035077456,-0.042951483,-0.0032041906,0.037187006,-0.038536143,-0.027031718,0.010198218,-0.009125045,-0.007358907,0.002673736,-0.012583731]},{"id":"guide-profile-urls-1","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: Raw API data: CDN helpers\nWhen you have raw API data (e.g. from client.rest.get(Routes.user(id))), use the standalone CDN helpers. They work with id + hash and support size and extension options.\n\n```javascript\nimport { cdnAvatarURL, cdnBannerURL } from '@fluxerjs/core';\n\n// From REST response\nconst userData = await client.rest.get(Routes.user(userId));\nconst avatarUrl = cdnAvatarURL(userData.id, userData.avatar, { size: 256 });\nconst bannerUrl = cdnBannerURL(userData.id, profile?.banner ?? null, { size: 512 });\n\n// Or use User: client.getOrCreateUser(userData) then user.displayAvatarURL()\nconst user = client.getOrCreateUser(userData);\nconst avatarUrl2 = user.displayAvatarURL({ size: 256 });\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.0023319284,-0.026319679,0.01784218,0.003252994,0.04741485,-0.022056285,-0.04349647,-0.0013661959,0.0074424557,0.041475672,0.0053045982,0.0060100295,0.025876088,-0.043595046,-0.02146483,0.055054456,-0.017041253,0.021538762,-0.037877664,0.0401449,0.03075558,-0.024126371,0.012925722,0.021477154,-0.004531396,0.021575728,-0.0033916158,0.03950416,0.012174083,-0.03962738,0.010103996,-0.034082506,0.004488269,-0.0035579621,0.022179505,-0.03366356,0.042510714,0.024459064,-0.0040847254,0.021292323,0.023189904,-0.048375964,0.03615259,0.036842622,-0.0025229186,0.0012606891,-0.017509487,-0.012950366,0.03519148,0.051160723,0.0004886422,0.008637684,0.0016850262,0.030238057,-0.051160723,0.03551185,-0.004925698,-0.025605004,-0.056434516,0.02619646,0.03179062,-0.0213909,-0.014601507,-0.018310413,0.030262701,0.008643846,-0.012888757,0.0026276552,0.0074424557,0.03809946,0.055744488,-0.004913376,0.05005175,-0.009580313,0.03644832,-0.016622307,-0.016301936,0.041377097,0.0018760164,-0.06077184,0.023140617,0.025284635,-0.07353738,-0.052442204,-0.025851443,0.014379712,-0.061412584,-0.050372116,0.0066045634,0.033786777,0.01848292,0.002709288,-0.04975602,0.0020238797,0.03361427,0.03647296,0.02740401,-0.01101582,0.013652717,0.028389765,0.042560004,-0.013960766,-0.009531026,-0.008465177,0.06989008,-0.059096057,0.020109417,0.045147613,-0.010344274,-0.014182561,-0.060081813,0.02816797,0.0107817035,0.05229434,-0.00043781416,-0.0022703186,0.0009087436,0.04354576,0.008181772,-0.034328945,-0.07058011,-0.0006988854,0.065552756,-0.008083197,-0.0035456403,-0.038469117,-0.010510621,-0.018322734,-0.1004978,-0.06165902,-0.008132485,-0.032924242,0.025075162,-0.048893485,-0.018433632,-0.035166837,0.001272241,-0.054068703,-0.020971954,-0.009968455,0.023313124,-0.06875646,0.010054708,-0.0016850262,-0.050372116,-0.027428653,-0.06579919,0.042313565,-0.040268123,-0.036916554,-0.050396763,-0.0035918474,-0.0431761,-0.015710482,-0.04403864,-0.022315046,0.027182214,-0.026221102,-0.04406328,-0.074671,0.012802502,-0.008397407,-0.027428653,0.006937256,0.0100916745,-0.017263047,0.01158879,-0.03442752,-0.059835374,0.030410564,-0.014170239,-0.012716249,-0.01620336,-0.060525402,0.015698161,-0.007768987,-0.01348021,-0.03255458,0.016609984,0.028784068,0.062792644,0.017250726,-0.008465177,-0.038173392,-0.03176598,0.00227956,-0.006549115,0.04302824,0.02057765,-0.00032556892,-0.012001576,0.0178545,-0.010233377,-0.0155749405,0.027034352,-0.00835428,0.03943023,-0.039035928,0.01652373,0.032899596,0.015008131,0.029966975,0.012605351,-0.027206859,0.0061363294,-0.02348563,-0.028882643,-0.004109369,-0.055941638,0.0020546846,-0.024606928,0.021119816,-0.03723692,0.029498741,-0.02100892,-0.009075114,0.021243036,0.04374291,0.015993888,0.011718172,-0.045295477,0.04342254,0.02829119,-0.056631666,0.018187193,-0.013960766,0.009604958,-0.035782933,0.011114396,0.044087924,0.03829661,0.020023163,-0.03878949,-0.03943023,-0.002328848,-0.019444032,0.0013738971,0.02094731,-0.010393562,-0.016228003,-0.040243477,-0.045862287,0.008754743,0.045911573,-0.008748583,-0.009857558,-0.02829119,-0.049731378,0.023079006,0.06234905,0.028463697,-0.007159051,-0.009808269,-0.024816401,0.044334363,-0.0056619346,-0.016178716,0.03499433,-0.014502931,-0.0033946964,0.03405786,0.030139482,-0.018519886,0.029276945,-0.029597316,0.018593818,-0.045467984,0.053822264,-0.014355068,-0.007799792,0.019037407,-0.014490609,-0.0061363294,0.009506382,-0.021427866,0.019973876,0.021193748,-0.008138645,-0.044704024,0.033392474,-0.0055664396,0.00048902724,-0.015562619,0.010165606,0.010911084,-0.015180638,0.018815612,0.0022811005,-0.0060932026,0.004506752,0.009247621,0.0029326233,-0.0057543493,-0.012241854,0.046108723,0.062250476,0.044013992,-0.028340477,0.00519062,0.013702005,-0.0068633244,-0.014539897,0.036571536,0.014934199,-0.0006349653,-0.009586475,0.0024089406,-0.0016388189,0.015045097,0.010221055,0.015180638,0.0010412044,-0.03183991,-0.017632706,-0.050914284,-0.0010527563,-0.012248015,-0.04325003,0.008150968,0.020097096,0.0062626293,-0.023756713,-0.02538321,-0.041475672,-0.0055910833,-0.027009707,-0.031741336,-0.017903788,0.011767459,-0.006703139,0.030016262,0.008933411,0.010978854,0.0010743197,0.0062256637,0.025802156,0.017632706,-0.023399377,0.005437059,0.033983927,0.016314257,-0.071664445,-0.008187934,-0.0322835,-0.013837546,0.016856423,0.008440534,0.009826752,-0.030681647,-0.0015725885,-0.0155749405,0.042560004,-0.0024412856,-0.0029803708,0.03179062,0.02474247,-0.0022549164,-0.047069836,-0.052885797,0.00057374063,-0.018076295,0.02969589,-0.0060038683,-0.027034352,-0.017768247,0.022216469,0.008465177,-0.0377298,0.018556852,-0.036891907,-0.015858345,-0.00088255946,-0.016659271,-0.020294245,-0.0070296708,-0.013320024,-0.0030050147,0.0038013204,0.01753413,0.03600473,0.042806443,0.035709,0.013566463,-0.07038296,0.044334363,-0.008958056,-0.0019468676,-0.009611119,-0.060574688,0.001892959,0.0031159122,0.00035906924,0.013430922,-0.013085907,0.0050458373,0.027132927,0.09128098,0.019382423,-0.01184139,-0.0001347713,-0.009654245,0.04874562,0.014971165,-0.0022348932,0.032357432,0.000035882855,-0.031199168,-0.015365467,0.002196387,-0.016881067,0.0049010543,-0.0022179503,0.03600473,-0.007768987,0.040908862,0.008224899,0.05628665,0.0024320441,0.009962294,0.05209719,-0.060821127,-0.008767065,-0.04564049,-0.0754596,-0.02272167,-0.050150324,0.015981564,-0.010325791,-0.03494504,-0.025161415,-0.026985062,-0.024656216,0.03938094,0.010683128,-0.026886487,-0.00092183566,0.03373749,-0.012365074,-0.046010148,0.031741336,-0.0028787148,0.007621124,-0.023744391,-0.036694758,-0.031223813,-0.010165606,0.027305434,0.006727783,-0.011613435,-0.022179505,-0.022475231,-0.00879787,0.04012026,0.004512913,-0.039898463,0.035018973,0.0012745514,0.042905018,0.04406328,-0.017127506,0.02969589,0.015858345,-0.029893043,0.023005074,0.06377839,-0.03588151,-0.0043958547,0.020306569,-0.0041802204,-0.073192365,0.051752176,-0.011366996,0.014330424,-0.009888362,-0.045418695,-0.046034794,-0.0128517905,-0.025013551,-0.0016018531,0.03341712,0.044161856,0.02816797,-0.067770705,-0.017115183,0.02512445,0.11109467,0.0560895,-0.03018877,0.04221499,0.0014262653,-0.043915417,-0.014712404,0.06885504,-0.0128148245,0.002670782,-0.008206417,-0.006037754,-0.014613829,0.03676869,-0.002760116,0.033491053,0.0071159243,-0.010664645,0.03805017,0.013110551,-0.02019567,-0.029794468,-0.0053569665,-0.011052786,-0.00087331794,-0.017324656,0.03652225,0.0023519516,0.0032745574,-0.043915417,0.038222678,-0.035561137,0.040465273,-0.009469416,-0.024138693,-0.013061264,0.007171373,0.010449011,-0.0060747196,-0.024261912,-0.005138252,-0.002892577,-0.07619892,0.00090181245,-0.0023457906,0.026911132,-0.02772438,0.04189462,-0.027798312,-0.016745526,-0.0029495659,-0.032258857,-0.016289614,0.0019961554,-0.019727437,-0.032061704,0.004537557,-0.020097096,-0.0018036249,0.0073007536,0.0024258832,-0.007380846,0.024594605,-0.0003430892,-0.03800088,0.026763268,-0.038518406,-0.031913843,-0.0029387842,0.021070529,0.026344322,0.028118683,-0.024976585,-0.010535264,-0.04083493,-0.017558774,-0.011385479,0.033269256,0.03716299,-0.0010666185,0.03514219,0.031987775,0.008945733,-0.027058994,-0.0075410316,0.0040046326,0.015291536,-0.002348871,0.017102862,0.010147123,0.03183991,-0.03341712,0.053082947,0.010116318,0.04209177,-0.0143673895,-0.020602295,0.0015987726,0.021243036,-0.035290055,0.019838335,-0.0017420152,-0.02760116,-0.012186405,0.031667404,0.04039134,0.016979642,0.013591107,-0.02399083,-0.019382423,0.038444474,0.031618115,0.028143326,-0.011176006,0.00034289667,0.011662723,-0.046231944,-0.032505296,0.008397407,-0.0011490216,-0.012235693,0.0050427564,0.0029788306,-0.03354034,0.0037828377,0.022549162,0.017891467,-0.01860614,-0.0060038683,0.0058652465,0.023744391,0.02614717,0.0013946904,0.012629995,0.016363544,-0.00086176617,-0.017263047,-0.0024890332,0.032012418,-0.025432497,0.03829661,-0.0051290104,-0.023892255,-0.03151954,-0.034205724,0.009278426,0.024557639,0.003456306,-0.0051259296,0.016486764,-0.0059977076,0.003120533,-0.015747448,-0.026492186,-0.03652225,0.033072107,0.0121617615,0.027995463,-0.010350435,-0.023473307,-0.025925376,-0.005748188,0.020540684,-0.016363544,-0.0043250034,-0.050347473,-0.0071344073,-0.0121247955,-0.02348563,-0.014847945,-0.005600325,0.011983093,-0.010658484,-0.034230366,0.030583072,-0.0154393995,0.0031852233,-0.010701611,0.00022872613,-0.03255458,-0.010393562,0.023214547,0.018852578,-0.023140617,0.005055079,-0.01044285,0.044580802,0.018519886,-0.012081669,-0.022709347,-0.02031889,0.017065896,-0.02278328,0.014404356,0.01664695,-0.0173493,0.0278476,-0.022647738,-0.0020654663,0.019333133,-0.009672728,0.011502537,0.031815268,0.0053662076,0.011619596,-0.047759864,0.014613829,0.027896887,-0.030262701,-0.010239538,0.035807576,-0.02696042,0.013603429,-0.0063519636,-0.02266006,-0.0085391095,-0.0343043,-0.011792103,-0.0047131446,0.000043945067,-0.021563407,0.000043054613,-0.02981911,0.04007097,-0.03809946,-0.047562715,-0.008767065,-0.031741336,-0.0036935036,-0.0012714709,0.0054339785,-0.028340477,0.0060808808,0.011028143,0.015821379,0.0034593865,0.0042264275,-0.025075162,0.00083019113,0.012654639,-0.009648085,0.03701513,0.019801369,0.005310759,-0.0213909,0.015119028,-0.042264275,-0.022290401,0.024828723,-0.011163684,0.005246069,-0.006912612,0.01848292,-0.010861796,0.003822884,-0.010338114,-0.02411405,-0.01904973,0.0068386802,0.0016480604,0.003943023,-0.003594928,-0.005621888,-0.011145201,-0.03600473,-0.0054832664,0.00866849,0.017694315,-0.023522597,0.0023303882,-0.051949326,0.0373355,0.0054216566,-0.03785302,0.001728153,0.019567251,0.036941197,-0.00810168,0.0054986686,-0.012666961,0.012802502,0.006530632,0.007239144,0.024064763,-0.04423579,-0.049928527,0.018273447,-0.017250726,0.008317314,0.060426828,-0.002481332,-0.040218834,0.0018205676,-0.024323523,-0.027527228,0.008680811,0.037384786,0.035610426,-0.010621518,0.019924589,-0.0002841749,-0.011490216,-0.019739758,-0.0063334806,-0.022080928,-0.033959284,-0.017768247,-0.014465965,-0.037187636,-0.034033217,0.0178545,-0.0030789464,-0.08911232,-0.019579573,0.012549902,-0.030213414,0.010258021,0.033392474,0.027995463,0.020971954,0.02829119,-0.028710136,0.015501009,-0.017743602,-0.0063642855,-0.026911132,0.0074979044,0.022573806,0.007146729,-0.04790773,0.02512445,-0.01803933,-0.025605004,-0.01133003,-0.01145941,0.043693624,0.04191926,0.009007343,0.0031189928,0.00047747543,0.037187636,-0.05697668,-0.007670412,0.029966975,-0.0034871108,0.02120607,0.018692393,0.04241214,0.022438265,-0.004814801,-0.015143672,-0.00051020563,0.03075558,0.004152496,0.016043175,-0.009839075,0.0041370937,0.035487205,0.003108211,0.020491397,-0.0466016,0.00810168,-0.015082063,-0.030410564,-0.02853763,-0.0016958079,0.0031482573,0.018852578,-0.043348607,0.007411651,-0.01861846,0.005393932,-0.001982293,-0.01100966,0.014663116,-0.006234905,0.040736355,-0.006998866,0.007393168,0.01753413,0.040218834,-0.0036134108,0.008908767,-0.004608408,0.037138347,0.0063766073,0.023769036,-0.005230666,0.021193748,0.009524865,-0.024828723,-0.04904135,-0.005430898,0.0012114014,0.019961553,0.011878356,0.021970032,0.00943245,-0.01297501,-0.01152102,-0.012500615,0.01487259,0.028685492,-0.018852578,0.009518703,0.0016064738,-0.036497608,-0.01709054,0.0011274582,0.025099805,0.061609734,-0.059736796,0.022709347,-0.019579573,-0.023460986,0.015599584,-0.037434075,-0.02385529,0.014761692,0.0075533534,-0.021538762,-0.021403221,0.024224946,-0.027650448,-0.029030506,-0.0015818299,-0.023411699,0.040218834,0.019949231,0.017620383,-0.0005159815,0.022425942,0.013936122,-0.0042880373,0.0014016214,0.048844196,-0.028389765,-0.009062792,-0.0025937697,-0.018889545,-0.024902655,0.046256587,-0.04736556,0.031026661,0.00405084,0.029794468,0.014663116,0.01784218,0.0028586916,-0.023325445,-0.039011285,0.019037407,0.014983487,0.0045930054,0.013246093,-0.027132927,-0.011983093,0.042362854,-0.02905515,0.036546893,0.0018205676,-0.034452163,0.028340477,-0.01930849,-0.028365122,0.025654294,-0.003998472,0.048129525,-0.021070529,-0.0010173307,-0.013135195,0.040292766,0.018310413,0.030287344,-0.0056927395,0.012999654,0.03354034,-0.033712845,-0.0031636597,0.029449452,0.009666567,0.015981564,0.010270342,0.0034871108,0.054857306,-0.001449369,0.019259203,0.029893043,0.013985409,0.037581936,0.044432938,0.0062010195,-0.015328501,0.012666961,-0.009703533,0.0065244706,0.044457585,-0.016560696,-0.026023952,-0.0056896587,-0.0064443783,-0.0053384835,0.015919955,0.010621518,0.056188077,0.0053261616,0.017669672,0.011028143,-0.001614175,-0.025309278,-0.043619692,0.00016259194,0.011132879,0.0063026757,-0.012309625,-0.008717777,-0.008255704,0.045492627,-0.04093351,0.019764403,-0.012654639,0.032505296,-0.011859873,-0.018951153,0.005862166,-0.01519296,-0.0059083733,0.017004287,0.009186011,-0.0087301,-0.0421657,-0.014835624,0.0018744761,-0.01487259,-0.028340477,0.0094016455,-0.03418108,-0.035043616,0.005082803,0.013615751,-0.0155749405,0.019542607,-0.04771058,0.027206859,-0.01297501,-0.010036225,0.018532207,-0.012137118,0.027527228,0.00023180663,-0.00885948,0.019567251,0.048400607,-0.0031852233,-0.024557639,-0.045492627,-0.026492186,-0.010079352,0.0126792835,-0.0043126815,0.010196411,0.0055756806,0.018877223,0.020984275,0.0032961208,0.009641923,-0.006696978,0.024298878,0.00019185655,-0.0024412856,0.01822416,0.014675438,0.018593818,0.015488687,-0.000009788969,-0.020861056,0.017669672,0.011385479,-0.02057765,0.0047747544,0.025198381,0.04975602,0.005794395,0.010960371,0.010387401,0.0268372,-0.027157571,0.017792892,-0.019579573,0.029030506,0.0044328202,0.009567992,-0.02848834,-0.020553008,-0.031667404,-0.006176376,0.009198333,0.00835428,-0.028365122,-0.005809798,-0.0018621542,0.0055910833,0.011601113,-0.01164424,-0.0002164042,-0.042264275,0.017805213,-0.0154393995,-0.004488269,-0.018063974,0.022807924,0.014182561,-0.011046625,-0.028882643,0.015143672,0.01733698,0.018199515,-0.010547587,0.023978509,-0.020454431,0.034008574,0.0067462656,0.03627581,-0.008563753,0.029720536,0.017866822,0.014428999,-0.025531074,-0.02278328,0.017275369,-0.014847945,-0.0013099769,0.0044728667,0.00022757096,-0.00091182406,0.024828723,0.007879885,-0.0069927047,0.0030697049,-0.014330424,0.012716249,-0.016979642,0.020676227,-0.006924934,0.0022164101,0.010313469,-0.08186702,-0.017829856,-0.04398935,0.023978509,0.0139238,-0.006469022,-0.027872244,0.033491053,-0.0022364333,0.008951894,0.02962196,-0.018532207,-0.010769381,0.04145103,0.005323081,0.025777513,0.0556952,0.023806,0.013147517,-0.015944598,0.020848734,0.0063519636,0.035314698,0.025802156,0.009149046,0.0016095543,-0.0083296355,0.016351223,-0.019702792,-0.011225293,0.012352752,0.013517176,0.015427077,0.018408988,0.009487899,-0.0019330054,0.0053662076,-0.008261865,0.017176794,0.01481098,-0.022733992,0.008052392,0.024853367,0.0031282343,-0.014133273,0.013270737,-0.029572671,-0.0066045634,-0.004783996,0.025678936,-0.027132927,-0.010769381,0.013048941,-0.02659076,0.007953817,0.008982699,0.006438217,-0.010849474,0.009130563,-0.029424809,-0.034723245,0.008120162,0.03233279,0.002968049,-0.023879932,-0.034772534,-0.010239538,0.063630536,0.033195324,-0.009081274,0.012580708,-0.007356202,0.003979989,0.013812902,-0.028882643,-0.0060285125,0.018273447,0.043940064,-0.017916111,0.018778646,0.030213414,-0.0061363294,-0.00016779026,-0.014182561,-0.0034470647,-0.021292323,0.012753215,0.019444032,-0.013517176,0.0150574185,-0.010837152,0.017139828,-0.0054493807,-0.027354721,-0.026763268,0.01487259,-0.018975798,-0.03252994,0.021021241,-0.007356202,-0.011594952,-0.007189856,0.04246143,0.007879885,-0.01158263,0.04798166,0.0056557734,-0.018815612,0.021563407,0.048302032,-0.012586868,0.008902607,-0.02076248,-0.0080031045,-0.011354674,0.038641624,0.01640051,-0.009186011,0.0174602,-0.001608014,-0.018507564,0.045344763,-0.023152938,0.03050914,0.027946174,-0.012888757,-0.018273447,-0.026985062,0.0038968157,0.008261865,-0.021883776,-0.0063642855,-0.0021979273,0.045246188,-0.0014824842,-0.010720094,0.012629995,0.033688203,-0.01670856,-0.021230714,0.02829119,0.0023457906,0.039997038,-0.020589974,-0.021526441,0.025555717,0.008576075,-0.022697026,0.011748976,-0.0050027105,-0.032899596,-0.0070851194,-0.03982453,-0.02241362,-0.007879885,-0.016191037,-0.036423676,0.013393956,0.005748188,-0.020035485,0.0441865,-0.03886342,-0.030780222,-0.0018405907,0.03474789,-0.010301148,-0.006968061,-0.01101582,0.02474247,0.0014262653,0.0178545,0.011681206,0.002753955,-0.017078219,-0.03861698,-0.021316968,0.019641183,0.006179456,0.032308143,-0.023892255,0.04583764,0.0026122527,-0.012519098,-0.011699689,-0.020084772,0.038764846,-0.00120293,-0.00987604,-0.007387007,0.0112807425,-0.012790181,-0.028808711,0.010547587,0.03703977,-0.02841441,0.023744391,0.011687366,0.0005945339,-0.010941888,0.02317758,0.012901078,0.02994233,0.0034871108,0.011946128,0.0020685468,-0.016573017,-0.030213414,-0.06491201,0.050914284,-0.014761692,0.023091327,-0.0025290796,-0.014342746,0.002398159,-0.010030065,-0.0062811123,0.014268815,0.022142539,-0.0112992255,0.028907286,-0.034082506,-0.04968209,0.007122085,0.025149094,0.005418576,0.0029403246,-0.006998866,0.054315142,0.037828375,0.029498741,0.031741336,-0.012303464,-0.0077073774,0.032973528,-0.013381634,0.015587263,0.01924688,-0.0037119864,-0.045936216,-0.008027748,0.00013207586,0.02405244,0.036103304,-0.020466754,0.007916851,0.03176598,0.0018883384,-0.031199168,-0.026812555,-0.025580361,0.007239144,0.00892109,-0.03082951,-0.028710136,0.011748976,0.019222237,0.0077505047,-0.033244614,-0.005677337,0.038222678,-0.0074732606,0.0074732606,0.03095273,0.0035425597,-0.013209127,0.022943465,-0.0033916158,0.010510621,0.017324656,0.029991617,-0.017805213,-0.044901174,0.017386267,-0.012586868,-0.026615405,0.006191778,-0.017805213,-0.01803933,0.023189904,-0.027798312,0.015168317,0.0036072498,0.025876088,-0.0035117548,-0.01297501,0.001848292,-0.012241854,-0.0058714077,0.01753413,-0.00113901,0.0051259296,-0.021193748,0.02094731,-0.011163684,-0.006274951,-0.023941543,-0.021119816,0.043890774,-0.0007924552,0.013566463,0.0031544184,0.0030173366,-0.05101286,0.0043065203,-0.021280002,0.031051306,-0.0034593865,0.021797523,-0.002760116,-0.00892109,-0.028069394,-0.032948885,-0.0029772904,-0.0046915812,0.018211838,0.007910689,-0.014798658,-0.008255704,-0.0033392475,0.015279214,0.006290354,0.010177928,0.011619596,-0.010923406,-0.0020084772,-0.008089358,0.0019715114,-0.03514219,0.02411405,0.0224013,0.002994233,-0.036029372,-0.0010643081,0.00962344,0.015266892,0.004032357,0.003912218,-0.0012044703,0.034846466,-0.00048094097,-0.0034871108,0.034501452,0.01860614,0.013073585,0.029868398,-0.013911478,0.005153654,0.033589628,0.01771896,0.0008948814,0.0006911842,-0.022462908,0.005868327,0.009457094,-0.005671176,-0.026221102,-0.0114717325,-0.030238057,-0.02209325,-0.029671248,0.00009400298,0.027083639,-0.022758635,-0.01848292,-0.015279214,-0.007645768,0.05815959,0.030804867,0.023879932,0.009524865,-0.016696237,-0.015969243,-0.0012268039,-0.02056533,0.010042386,0.012925722,-0.041500315,0.009826752,-0.038222678,0.014404356,0.019899944,0.010331952,0.011662723,-0.022068607,-0.005005791,-0.008058554,-0.030878799,0.024101729,-0.0012375856,-0.024089405,0.022462908,-0.021526441,0.009377002,0.00047478,-0.0034655475,-0.047538072,-0.007559514,0.028956575,-0.03317068,-0.021723593,0.0036349744,-0.033762135,-0.016055496,0.013689683,-0.00145553]},{"id":"guide-profile-urls-2","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: Guild member and webhook avatars\nGuildMember has displayAvatarURL() (guild avatar or fallback to user) and bannerURL(). Webhook has avatarURL().\n\n```javascript\n// Member avatar (guild-specific or user fallback)\nconst memberAvatar = member.displayAvatarURL({ size: 128 });\n\n// Webhook avatar\nconst webhookAvatar = webhook.avatarURL({ size: 64 });\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.028979452,-0.008618789,0.0005051199,-0.008260876,-0.007579685,-0.014789912,0.005726617,-0.031981308,0.041956704,0.02101299,-0.002535702,-0.0306882,0.021174628,-0.06248478,-0.022490826,0.026739607,-0.027386159,-0.0018242046,-0.040455777,0.010177445,0.030826747,-0.0024635422,0.023518384,0.058974918,-0.024938492,0.033666965,-0.039301217,0.008884338,0.017122123,-0.00010048279,0.0069908598,-0.03011092,0.014616728,0.017480036,-0.034267336,0.017872587,0.041795067,0.0076027764,0.01911951,0.030364923,0.010720088,-0.021544086,0.033713147,0.025123222,-0.005091609,0.044312008,-0.0299031,-0.00969253,0.0078336885,0.03701519,-0.0129541615,0.025561955,0.0073776376,0.052509382,-0.07467693,0.011060683,-0.023426019,-0.010506495,-0.047383137,0.008012645,0.012850251,-0.0050540855,0.020816714,-0.019131057,0.051077727,-0.039070304,-0.04899952,0.003524294,0.008884338,-0.010864408,0.06996632,-0.017699402,0.05075445,-0.0035214075,-0.008878565,0.0052474746,-0.005085836,0.052925024,0.018750051,-0.049738437,0.00028088276,0.02586214,-0.104834035,-0.027339976,-0.01717985,0.013831627,0.013889355,-0.03161185,0.024476668,0.03168112,-0.011799602,-0.04456601,-0.069365956,-0.023229744,0.01996234,0.01649866,0.024545942,0.0016091678,-0.015078551,0.035075527,0.06156113,-0.003879321,-0.052139923,-0.010131262,0.07052051,-0.048260603,0.0068811765,0.062392414,-0.01181692,0.025815958,-0.06608701,0.03491389,-0.015979107,0.06368552,0.004947289,0.0052878843,0.0023019037,0.038862485,0.016510205,-0.05343303,-0.08589925,-0.011845784,0.03048038,-0.030041646,0.011626418,0.007123634,-0.038816303,0.004312281,-0.08238939,-0.030226376,-0.003307814,-0.030734383,0.020412618,-0.007868325,-0.05033881,-0.0409176,0.0030826747,-0.05287884,-0.050061714,-0.008849701,0.024361212,-0.032350767,-0.00096333586,-0.010379493,-0.03493698,-0.0010217854,-0.063269876,0.05153955,-0.03706137,-0.034198064,-0.08876256,-0.026831971,-0.002454883,-0.021809636,-0.04761405,0.02208673,0.0076893684,-0.022236822,-0.043365266,-0.023426019,-0.004543193,-0.020528074,0.000013067724,0.024453577,-0.019708337,-0.05172428,0.041610338,0.01728376,-0.054402858,0.012446155,0.011078002,-0.019604426,-0.019789156,-0.05537269,0.018680777,0.019789156,0.00288207,-0.046551853,-0.0006764999,-0.014986187,0.06677974,0.042141434,0.020262524,-0.056250155,-0.02179809,0.0031086523,0.03318205,-0.0150670055,0.0004942959,-0.016048381,0.024615215,0.012769432,-0.032858774,-0.005212838,0.040178683,-0.010991409,0.023991754,-0.013635351,-0.005902687,-0.0030826747,0.017202942,-0.005033881,0.03650718,-0.010160127,-0.0009258127,-0.025169404,0.012134424,-0.00965212,0.0027189883,0.03768483,-0.00833015,-0.03932431,0.006090303,-0.011701464,-0.05227847,-0.0066560376,-0.031011477,0.045027833,0.0077759605,0.010362174,-0.046182394,0.06359316,-0.00017110938,-0.010073534,0.01697203,-0.008353241,0.019050237,-0.04592839,0.0064308983,0.028471446,0.012653976,-0.008549516,0.009952306,-0.04784496,-0.010800907,-0.014351179,0.035006255,0.05708144,0.015182462,-0.011799602,-0.021959728,0.0049357433,0.0011119854,0.028125077,0.00034077556,-0.04611312,-0.003293382,-0.015205553,0.017029759,0.026393238,0.020158615,0.019258058,-0.013023435,0.018980963,0.025538864,0.017110577,-0.060083292,0.046390213,-0.0011754862,-0.008601471,0.031380937,0.02179809,-0.010344856,0.05652725,0.015090097,0.033112776,-0.015632741,0.055511236,-0.0048145144,0.009715621,0.0030740155,-0.0128964335,0.019973885,0.03819284,-0.003365542,0.0040351865,-0.003697478,0.02307965,-0.019546699,0.0048491512,0.02586214,0.038562298,0.022156004,0.009657893,-0.012007423,0.009178751,0.012526974,0.0049732667,0.0017318397,0.027663253,-0.013785444,-0.0018776029,-0.017872587,0.011083774,0.013231256,0.04227998,0.02835599,-0.0017303965,0.014489726,0.0066964473,-0.015020823,-0.003403065,-0.018634595,0.026277782,-0.016487114,-0.00087674387,-0.0045374203,0.03165803,-0.046736583,-0.007302591,-0.0059459833,-0.00017137997,-0.017999588,0.015297918,-0.064886265,-0.013947083,0.011181912,0.021601815,0.039647587,0.0051984056,0.04258017,0.01264243,-0.0106508145,-0.015967563,-0.029418185,-0.055141777,-0.019027146,-0.022941103,0.03588372,0.012665521,0.052601747,0.021705724,0.011129957,0.02662415,-0.009929215,0.045489658,0.014870731,-0.0013140334,-0.020758986,-0.0010347742,-0.04227998,-0.035629716,0.010604632,-0.02332211,-0.041541062,-0.026531786,-0.023114288,0.039278127,-0.031011477,-0.0144204525,0.00752773,0.042718716,0.009097932,-0.031704213,-0.0061884406,-0.037292283,0.050477356,-0.015355646,-0.022017457,0.0070543606,-0.02449976,0.0262316,-0.03627627,-0.010483404,-0.008416741,0.017110577,0.011228095,-0.04308817,0.047752596,-0.040063225,-0.036391728,0.01686812,0.03087293,-0.031265482,-0.014824549,0.013693079,-0.007677823,0.023218198,-0.0057323896,0.021163082,0.021070717,0.023033468,0.031311665,-0.063269876,0.017503127,-0.023437565,0.022248369,0.011822693,-0.07412274,-0.041979797,-0.00299031,0.018634595,-0.048768606,-0.055834513,-0.016671844,-0.016071472,0.054541405,0.01204206,0.0036628412,-0.035768263,-0.021232355,-0.0034434746,0.003986118,-0.033251323,0.007129407,0.0058680503,-0.029995466,-0.008705381,0.029533641,-0.0006967047,-0.022548554,0.04578984,0.030803656,-0.04498165,0.02526177,0.022167549,0.037754107,-0.056296337,0.040432684,0.064008795,-0.06645647,0.01264243,-0.042002887,-0.053894855,0.006378943,-0.05634252,-0.0013068174,0.01649866,0.045074016,-0.05056972,-0.08229703,-0.024407394,0.025169404,-0.008740018,-0.018103499,-0.048445333,0.04821442,-0.0066618104,-0.0035416123,0.031011477,-0.023610748,0.008693836,-0.032258403,-0.01754931,0.004398873,0.008076146,0.032720227,-0.046390213,-0.022340734,0.0040929145,0.018392138,0.008018418,0.020401072,0.031265482,-0.007822143,0.026831971,0.037084464,0.026970519,-0.013854718,-0.047290772,-0.0064539895,-0.007418047,-0.007897189,0.045651298,0.026116144,-0.021959728,-0.03165803,0.02489231,0.020758986,-0.03606845,0.032373857,0.0049213115,0.026947428,-0.017895678,-0.0057727993,0.013312075,-0.0014597966,-0.027940348,-0.007816371,0.02429194,0.046043847,0.041702703,-0.05301739,-0.030272558,0.015101642,0.077632606,0.054033402,-0.014766821,0.042141434,-0.031750396,-0.057404716,-0.007614322,0.06405498,-0.01070277,0.018588414,-0.0022384028,0.021474812,-0.008099237,0.012053605,-0.012434609,-0.0091845235,-0.015748195,-0.033297505,0.046782766,0.030988386,-0.037407737,-0.058236,-0.013485259,-0.009802213,0.02604687,-0.039970864,-0.03717683,-0.023760842,-0.0077759605,-0.008422514,0.031173116,-0.02200591,0.024961583,-0.006263487,-0.01047763,-0.034198064,0.014813003,0.014281905,-0.036461,0.022802558,0.04308817,-0.012838705,-0.08400577,-0.0011054911,0.010823999,0.00044811354,-0.015956016,0.0403865,-0.017249124,-0.04165652,0.003264518,-0.017087486,-0.02932582,0.013369803,-0.042072162,-0.031935126,0.017387671,-0.009715621,0.00810501,-0.013358258,0.013727716,-0.028148169,0.012319153,0.033828605,-0.012977253,0.032489315,-0.023576112,-0.0070889974,-0.016983576,-0.008486015,-0.021832727,0.0069908598,0.024268849,-0.016764209,-0.018796233,0.02182118,-0.002860422,0.026855063,0.020158615,0.004130438,0.013577624,0.026069961,0.043850183,-0.007366092,-0.0041217785,0.013935537,0.005599615,0.012746341,0.0007836575,0.0027565116,0.016083019,-0.0019887292,0.060175657,-0.0009250911,0.04105615,-0.028125077,-0.025746685,-0.010131262,-0.015817469,-0.022571646,-0.0037378876,-0.022791011,-0.025307951,0.016360113,0.041263968,0.04784496,0.013669988,-0.008370559,-0.018853962,0.010893272,-0.01938506,-0.017514672,0.0020305822,-0.025053948,0.006263487,-0.016487114,-0.015424919,-0.02082826,0.020539619,0.009236479,-0.005720844,0.004196825,-0.0077701877,-0.034244247,0.008220466,0.03258168,-0.0071409526,-0.005207065,-0.0005260463,-0.010050443,-0.0010015806,0.025977597,-0.0069908598,-0.003085561,0.0034636795,-0.0011141503,-0.011395506,0.035791356,0.05283266,-0.01282716,0.016948938,-0.0028950588,-0.008370559,-0.0150670055,-0.017699402,0.008029964,0.016383205,-0.038816303,-0.03320514,-0.004442169,-0.008307058,0.0023755068,-0.036530275,0.0067714937,-0.02237537,0.0154480105,0.019835338,-0.00273775,-0.025331043,0.003076902,-0.00046651435,-0.004644217,0.018369047,-0.0139239915,-0.00095034705,-0.033066593,0.023830116,-0.008561062,-0.0010961102,-0.0014922686,-0.009704076,0.010541132,0.017295307,-0.03840066,0.013820081,-0.0409176,-0.0072333175,-0.006552127,0.0017635901,0.01123964,-0.013473714,0.0015110302,0.0109740915,-0.060314205,0.012757886,-0.039624494,0.028078895,0.025908323,-0.00443351,-0.006500172,-0.037084464,-0.012503883,-0.019904612,0.009069067,0.046551853,-0.017710948,0.02662415,-0.032373857,0.019558243,-0.00036657276,0.0073430007,0.00021810357,0.008006873,0.027386159,0.001303931,-0.017145215,0.0022557213,0.02074744,-0.02006625,-0.02064353,0.04923043,-0.002694454,-0.013242802,0.016821938,-0.021174628,0.0010073534,-0.015944472,-0.017803313,-0.019154148,0.0041217785,0.010356402,0.020539619,0.021047626,0.0027998076,-0.0153902825,-0.015124734,0.013866263,-0.040802144,0.018923236,-0.013542987,0.034198064,-0.013265893,-0.02289492,0.014166449,-0.0058565047,-0.0150670055,0.011880421,-0.021451723,-0.014027902,-0.014766821,0.007360319,-0.0018689438,-0.0020998558,0.008428287,-0.012180606,-0.017607037,-0.021463268,-0.00833015,0.009721394,0.041402515,0.036668822,0.007902962,0.014108721,-0.013635351,-0.0033597692,0.003192358,0.0012317711,-0.023091197,0.013034981,0.0006267095,0.037338465,0.013739262,-0.004346918,-0.011326232,-0.01012549,-0.0006332039,0.006736857,-0.008982476,-0.034775343,-0.034082606,-0.03669191,0.039462857,-0.007037042,-0.018138135,0.018842416,0.04551275,0.022687102,0.024730671,0.042995807,-0.023737751,-0.00915566,0.017064394,-0.00457783,0.03798502,-0.001181259,-0.05712762,-0.025238678,-0.024061028,0.005793004,0.056619614,-0.0073718647,-0.013265893,0.011268504,0.001267851,-0.007106316,0.009906123,0.036484092,0.02856381,0.0034261562,0.012850251,-0.0327895,-0.0020493437,-0.010823999,-0.0064828536,-0.02392248,-0.031750396,-0.0069619957,-0.005351385,-0.017145215,-0.028240534,0.0023942685,-0.008711154,-0.08192757,-0.034706067,0.032073673,-0.042557076,0.015009278,0.024661398,-0.019512061,-0.0040698233,-0.020343345,-0.016452478,0.01152828,-0.022941103,0.0031317435,-0.046621125,0.044843104,-0.011741874,0.019211875,-0.017641675,0.04167961,-0.011661055,-0.009265343,0.002144595,-0.002824342,-0.0077124597,0.020920625,0.004961721,0.022306096,-0.021751907,0.033158958,-0.030919112,-0.047336955,0.040271048,-0.0063731703,0.0028055804,-0.022121366,-0.00028954196,0.00561982,-0.0025703388,-0.0007410831,-0.00868229,0.005178201,0.0044768057,0.0033135868,-0.016002199,-0.0074642296,0.022964194,0.020528074,0.043295994,-0.029256547,0.026485603,0.00709477,0.0039716857,0.00037054156,0.014050993,-0.008318604,-0.014154904,-0.03950904,-0.023691569,-0.02567741,0.002939798,0.035745174,0.010298674,0.02284874,-0.011759192,0.012665521,-0.023356745,0.0040986873,-0.028794723,0.0196737,0.009097932,-0.01825359,-0.002483747,0.037477013,-0.009040204,0.023356745,0.024037937,0.012503883,-0.01524019,0.009553983,0.0053167483,0.01144746,-0.0036137723,-0.0039687995,0.01070277,0.005504364,-0.0055851834,0.004456601,-0.0422338,0.0047712186,-0.015782833,0.017306851,0.0054668407,0.026393238,0.009484709,-0.009380799,-0.004543193,0.0044017592,-0.001502371,0.046736583,-0.03456752,0.001653907,-0.03800811,-0.0121921515,-0.030434197,-0.009911897,-0.06576373,0.025423408,0.027524706,-0.006563673,-0.050800633,-0.0093750255,0.009894578,-0.03029565,-0.017930314,-0.03680737,0.00041419835,0.058882553,0.044265825,0.026531786,0.00482606,0.0058593913,0.038285203,0.023495292,0.035976086,-0.0008016975,0.0023509725,-0.010298674,-0.017526219,0.006119167,0.048260603,-0.047290772,0.003524294,0.02208673,-0.0064886264,0.011176139,0.0058045494,0.003489657,-0.007764415,-0.04650567,-0.008099237,0.00874579,0.017872587,-0.025931414,0.0059690746,0.006707993,0.013450623,0.01831132,0.0024952926,0.016833482,-0.04209525,0.04766023,-0.029256547,-0.053941038,0.000096694384,0.01985843,0.01948897,-0.00882661,-0.0063904887,-0.01055845,0.037407737,0.012088242,0.0249154,0.019465879,-0.015782833,0.013589169,-0.00371191,-0.015459556,0.0033770876,0.008774655,0.011903512,-0.0065579,0.021024534,0.045582023,-0.008099237,0.049184248,0.054541405,0.027132157,-0.0051897466,0.04645949,0.029741462,-0.0139817195,0.023472201,-0.025192495,0.024592124,0.07435366,-0.006171122,-0.0007143839,-0.032281492,-0.0063616247,0.0033770876,-0.014351179,0.009958079,-0.0043093944,-0.03627627,-0.008018418,-0.0041997116,0.015321009,-0.014755275,-0.012746341,0.0096983025,0.005533228,-0.00049177033,0.0048404923,0.0025703388,-0.031634938,0.00006710879,-0.05038499,0.024153393,-0.00037342796,0.0393474,-0.0007194351,0.019546699,0.02761707,-0.0092422515,0.021463268,0.04456601,0.019869976,-0.04532802,-0.0516781,-0.008901657,0.015621195,0.009617483,-0.025007766,0.024130302,-0.017745584,0.00095611985,-0.021001443,0.018022679,-0.02161336,0.020297162,0.006321215,0.008295513,-0.025307951,0.02761707,-0.020181706,-0.016579479,0.02586214,0.00032778675,-0.02095526,0.025746685,0.057358533,0.020147068,-0.024799945,-0.014201086,-0.033043504,-0.01012549,0.038747028,0.008520652,-0.007764415,-0.005241702,0.015863651,0.014870731,0.004629785,0.000061065395,0.019107966,0.018507594,-0.018980963,0.006326988,0.02854072,-0.007793279,0.011626418,-0.00479431,0.00006192229,-0.02930273,-0.0026482716,0.027363067,-0.015090097,0.010535358,0.03498316,0.041356333,0.0007454127,0.024753762,-0.018530685,0.009663666,-0.023564566,0.0034434746,-0.007458457,0.03782338,0.023102742,0.038862485,-0.04687513,-0.035606626,-0.009080613,0.032535497,0.021036081,0.01293107,-0.02119772,0.023587657,0.004346918,0.02680888,0.010431448,-0.0071178614,0.023968663,-0.041402515,0.034844615,0.004612467,-0.033436053,-0.023783933,0.031011477,0.026162326,-0.030226376,-0.0327895,0.012757886,-0.014893822,0.034151882,-0.014016356,0.03553735,-0.014108721,0.02660106,0.022537008,0.05444904,0.0023206654,0.0068580853,0.014639819,0.013485259,-0.00051197514,0.00497038,0.003250086,-0.018507594,-0.008890111,-0.0021561405,-0.03800811,-0.008924748,0.039901588,0.034613702,-0.030364923,-0.0029094908,0.003446361,0.03877012,-0.030896021,-0.015748195,-0.0005834135,0.014247268,0.0020479006,-0.04532802,-0.039601404,-0.023737751,0.034636796,0.014986187,-0.01862305,-0.0077470965,0.037384648,-0.019027146,0.010235173,0.013693079,-0.0063385335,0.011603327,0.0034492475,0.016752664,0.024823036,0.05075445,0.011972786,0.008399423,-0.007481548,0.020181706,0.016440932,0.04401182,0.014997733,-0.017249124,0.014916914,0.009017113,-0.009196069,-0.004600921,-0.019350423,0.014062539,-0.015632741,-0.004346918,0.041587245,0.02507704,0.0054581817,-0.017537763,0.006679129,0.020135524,0.037961926,-0.031773485,0.004225689,0.031103842,0.010893272,-0.009265343,0.006592537,-0.038562298,0.042903446,-0.015136279,0.025192495,-0.013381349,0.0060268026,0.02583905,-0.022906467,0.040247954,0.021890454,0.032327674,0.0071178614,0.0109740915,-0.018576868,-0.038516115,-0.0050223353,0.03412879,-0.013069618,-0.010454539,-0.039231945,-0.02567741,0.039901588,0.009178751,0.024545942,0.008832383,-0.004081369,-0.033666965,0.00034420314,-0.0153325545,0.007221772,0.042326164,0.048352968,-0.028425263,0.003149062,0.028979452,0.033228233,0.0019714108,-0.006407807,-0.004701945,0.0143627245,0.014709093,0.0042632124,-0.016544843,0.018657686,-0.021001443,0.00363975,-0.017191395,-0.013427531,-0.033597693,0.005123359,-0.028332898,-0.027039792,0.004791423,-0.02017016,-0.050246444,0.027963439,0.010777816,-0.0051984056,-0.0018357502,0.030526562,-0.0033135868,0.003475225,0.035976086,0.047336955,-0.0032443132,0.015644286,-0.019719882,-0.019246513,-0.009998488,0.034867708,-0.0059171193,-0.015863651,-0.0050252215,0.01936197,0.009323071,0.038700845,0.007643186,0.009559755,0.024199575,0.01293107,-0.0029672189,0.0048953337,0.016879665,-0.031727303,0.0036599548,-0.0072910455,0.0060960758,0.0024072572,0.0064828536,-0.010321765,0.03179658,0.049876984,-0.019004054,0.019846885,0.023287471,-0.0010564222,0.023299018,-0.020770531,-0.018403685,0.019985432,0.0023163357,0.0047510136,0.019650608,-0.008301285,-0.016879665,0.016648753,-0.021971274,-0.005209951,-0.027963439,-0.0054379767,-0.026370147,-0.013704625,0.015759742,-0.028402172,0.024615215,-0.040594324,-0.012861797,-0.005212838,-0.010113944,-0.02583905,-0.02062044,-0.012665521,0.013554533,-0.010142808,0.009069067,-0.0059459833,0.01152828,0.016383205,-0.016544843,-0.032512404,0.025931414,-0.008272422,0.0054755,0.01623311,0.048953336,0.018034225,0.002398598,-0.020678166,-0.014582091,0.019535152,0.01466291,-0.0068292213,-0.030711291,-0.012861797,-0.005640025,-0.038862485,-0.007158271,0.02510013,-0.049276613,-0.0021287198,-0.005787231,-0.016764209,-0.021971274,-0.022317642,0.018403685,0.00047950313,0.002620851,0.0025544637,0.01224988,-0.014177995,-0.007978008,-0.029187273,-0.006615628,-0.03412879,0.031034568,-0.0023740637,0.021855818,-0.017168304,0.012757886,-0.00027835715,-0.0017506013,-0.015609649,-0.0058189817,0.00013710398,-0.008757336,0.016925847,0.008122329,0.047198407,0.019708337,-0.0008904543,-0.014755275,0.022975741,0.045189474,0.03454443,0.035814445,0.013081163,0.013531442,0.0059459833,-0.015309463,0.05939056,0.00713518,0.011037592,-0.016152292,-0.027663253,0.013785444,-0.005813209,0.022537008,-0.026485603,0.0013710398,0.00849756,0.0010484847,-0.028979452,-0.020366436,0.007891417,-0.015805924,0.010235173,-0.0422338,-0.014916914,-0.0027550685,0.03299732,-0.0029268092,-0.021774998,-0.00713518,0.061468765,-0.008855474,0.012134424,0.019165693,-0.013970174,-0.00097199506,0.00839365,0.023564566,0.020724349,0.0032241084,0.019916158,-0.02507704,-0.03664573,0.049507525,0.0006162463,-0.017976496,-0.004326713,-0.0005296543,0.01253852,0.046390213,-0.019419696,0.016856574,0.012365336,0.015286372,0.002636726,0.008815064,-0.0011192014,-0.0025183836,0.010356402,0.0045691705,0.004583603,-0.012065151,-0.023356745,-0.016186928,-0.00030397397,0.0077701877,-0.0075104116,-0.010927909,0.031034568,0.02408412,0.028817814,0.0023798365,0.0006833551,-0.066133186,-0.011730328,-0.022329187,0.021336267,0.00096910866,-0.009069067,-0.010154353,-0.010720088,0.02740925,-0.01008508,0.033620782,0.008947839,-0.013265893,0.0008854031,-0.0035733627,-0.034059517,-0.015009278,-0.0008154079,0.0042141434,0.016140746,0.0017404989,0.028586902,-0.023737751,-0.019419696,0.020978352,-0.03895485,-0.011834239,0.016186928,0.00036819634,-0.027570888,0.010333311,0.030896021,0.023587657,0.004762559,0.008549516,-0.006234623,0.012965707,0.018103499,-0.008797746,0.020100886,0.0066040824,0.03265095,0.010777816,-0.016856574,-0.014905368,-0.0016019518,0.018068861,-0.010333311,0.0066040824,0.02914109,-0.0006516047,0.008376332,0.0050511993,-0.02874854,-0.00713518,-0.011291595,-0.013450623,-0.018680777,-0.0008038623,0.033436053,-0.0065694456,-0.024846127,0.005539001,-0.032258403,0.05597306,0.008607243,-0.01282716,0.024638306,-0.021428632,-0.03805429,0.0038475706,-0.02433812,0.04345763,-0.020782078,-0.047706414,0.0017029757,-0.013439077,-0.0005725895,0.030388014,0.026670333,0.020262524,-0.010500722,0.012007423,-0.013127346,-0.024176484,-0.017583946,-0.01641784,-0.036345545,0.03449825,-0.029972374,0.013831627,0.005241702,0.0051147,-0.027940348,-0.008630334,0.041725792,-0.020216342,0.009525118,-0.015932925,-0.021105355,-0.013727716,0.005028108,-0.016452478]},{"id":"guide-reactions-0","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Add a Reaction\nUse message.react() to add an emoji reaction as the bot. Pass a unicode emoji string or custom emoji { name, id }.\n\n```javascript\nconst reply = await message.reply('React to this!');\nawait reply.react('👍');\nawait reply.react({ name: 'customemoji', id: '123456789012345678' });\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.0026251995,-0.015302278,-0.044033088,0.029154632,-0.025808653,-0.029600764,-0.01084655,0.006892717,-0.0068481043,0.022685738,-0.04126708,-0.031630658,0.0148338415,-0.021536954,-0.010350229,0.01288202,-0.0033905923,-0.0030141696,-0.0050635817,0.026232477,-0.006061799,0.013551216,0.021168895,0.069417916,0.018704023,0.019942036,-0.035801977,0.059023075,-0.035355847,-0.02344416,-0.0194736,-0.013997346,0.03796571,-0.018849017,-0.008632626,-0.0047373488,0.0016911137,0.026633995,-0.017231792,0.042560857,-0.020968137,-0.03522201,0.029266166,0.03544507,-0.0638859,0.0010037938,-0.06098605,0.002213923,0.025741734,0.00864378,0.0034603002,0.017588697,0.020477394,0.037831873,-0.00018855988,-0.024916392,-0.03482049,0.016272612,-0.019518211,0.053937186,0.005989303,-0.022295374,0.0075507597,-0.026723221,-0.0399733,-0.017142568,-0.043765407,0.011220183,0.010656944,0.012937786,0.04831594,0.013830047,-0.005177903,-0.0058721937,0.0050942535,0.003669424,-0.024916392,-0.0032455998,0.014186952,-0.0727639,-0.0015349679,0.011130958,-0.057863135,-0.047066774,-0.030493025,0.012525115,-0.016930655,-0.046843708,-0.025273297,-0.00027273217,0.028106226,-0.020611232,-0.06442125,0.000106043146,0.025719427,0.005601727,-0.029333085,0.031519122,0.03321442,0.023979519,0.05179576,-0.077269815,-0.063752055,0.008281299,0.01435425,0.005041275,0.012279743,0.04383233,-0.028797727,0.0070377095,-0.018670565,-0.010885586,0.025072537,-0.0016172233,0.01458847,-0.03330365,0.047646742,-0.04137861,-0.010707133,-0.07419151,-0.06103066,-0.020733917,0.08833385,-0.042694695,0.0022641127,-0.030894542,-0.0073444243,-0.014923068,-0.018570185,0.008766466,-0.014343098,-0.0115993945,0.0019462446,-0.021760019,-0.0045588966,-0.0077069052,0.022908805,-0.0075173,-0.022975724,0.02795008,0.033772085,-0.03854568,-0.0055375956,-0.010590024,-0.031519122,-0.040062524,-0.07914356,-0.015279972,-0.03468665,-0.036649626,-0.024135664,0.016517984,-0.04401078,-0.011415366,0.016718743,-0.019139001,-0.020566618,-0.0064911996,-0.020176254,-0.055989385,-0.0030364762,-0.04438999,0.017309865,-0.048940524,0.0028970602,-0.011342869,0.0041936273,0.010361383,-0.009725646,0.038144164,0.044501524,-0.014198105,-0.014889607,0.028061612,-0.023957212,-0.012937786,-0.0091401,0.016317226,-0.029890748,0.07503916,0.02737011,0.019428985,-0.0792774,-0.011677467,0.02197193,-0.006106412,-0.0001166736,-0.0049715675,0.00025931338,-0.037474968,0.0020982078,0.040508654,0.021470033,-0.037408046,0.050145075,-0.04550532,0.07035479,-0.027972387,-0.018269047,-0.049297426,-0.0051054065,0.03330365,0.030626863,-0.003387804,-0.012246284,-0.026232477,-0.032924436,-0.046843708,0.03584659,-0.008415137,0.0345082,-0.07432535,0.01612762,0.009273939,-0.054650992,-0.02026548,-0.03618119,0.009151253,-0.069284074,0.008231109,-0.080080435,-0.0074169207,0.11135419,-0.034798183,-0.012725874,0.042360097,0.050858885,0.00049353193,-0.022596514,0.047780585,-0.017934449,-0.007076746,0.023176482,-0.0461299,0.024648713,-0.007472687,0.049698945,0.006831374,-0.0132166175,-0.002489966,0.028730808,0.00978699,0.03693961,0.0044975537,0.006814644,0.01236897,-0.001773369,0.0070878994,0.004190839,0.015123826,0.05286647,0.019808197,0.059379976,-0.021670792,0.027459336,-0.056881648,-0.028418517,0.044880733,-0.006000456,-0.026700914,-0.015558803,-0.028864648,-0.0036052926,0.0033989572,-0.019841656,-0.027682401,0.002357521,0.04349773,0.025540974,-0.010640214,0.043230053,-0.04381002,0.031251445,-0.010958082,-0.0046899477,0.0031563737,0.0037642266,0.00978699,-0.030916847,0.031006074,-0.0066083088,-0.016852582,0.021347348,-0.021648485,-0.01458847,0.010863279,-0.004826575,-0.06709804,0.016049547,-0.003354344,-0.007907664,-0.01026658,-0.020187408,-0.033794392,-0.017689077,0.067276485,0.023801066,0.009675456,0.04189166,0.029979974,-0.046352964,-0.014097726,0.028039306,-0.013885814,0.03618119,0.019707818,-0.041423224,-0.02248498,0.04670987,-0.015781868,0.026767833,0.0018249528,0.018380579,-0.0013000524,-0.01834712,0.017789457,0.027570868,0.031786803,0.0024077108,0.0029054254,0.05134963,0.0029974398,0.04889591,-0.059067685,-0.0601384,-0.025741734,0.036783464,-0.024068743,0.07387922,0.0072496217,0.033392873,-0.022574207,0.020064723,0.045661464,0.04541609,-0.008972801,0.0016395298,0.017822916,0.004057,0.06544735,0.010043514,-0.009457968,0.016584903,-0.04572838,-0.011644008,0.001015644,0.0009731223,-0.0025429442,-0.00920702,-0.011777847,-0.012614341,0.03673885,-0.021737712,-0.048672844,0.06620578,-0.00090829394,-0.03332595,-0.0013725485,0.0256302,0.010171777,-0.016272612,-0.0021107553,-0.0016116466,0.013751974,0.04106632,0.02286419,-0.013841201,-0.0066584987,0.0396387,-0.03437436,-0.022418061,-0.022886498,-0.020031262,-0.0002830141,-0.04862823,0.023154177,-0.0008950494,0.022339988,-0.01910554,0.05197421,-0.0032846362,0.012647801,0.0056853765,-0.014220412,0.009134524,-0.03308058,-0.0026935132,-0.018681718,-0.004165744,0.044613056,0.060807597,-0.027213965,-0.035712752,0.014131186,0.025228683,0.060316853,0.018012522,0.012157057,0.0113094095,-0.00187096,-0.026522461,0.0040904596,0.02518407,-0.0019378796,0.031251445,0.008816655,-0.013763128,0.012391277,-0.0032455998,0.007840744,0.046174515,0.00506637,0.025942491,0.0355343,-0.026187863,-0.026500156,0.0076734456,-0.009324129,-0.0020243174,0.009747953,-0.04581761,-0.047691356,-0.0031480088,-0.067276485,-0.007154819,0.0193063,0.035712752,0.00047192248,0.043118518,-0.025451748,-0.05982611,-0.0433862,0.014577316,-0.035177395,0.051171176,-0.025206376,0.016239153,0.014064266,0.0034352054,-0.029979974,-0.01698642,0.027570868,0.018235587,0.039928686,-0.011443249,0.02248498,-0.05866617,-0.025808653,0.014700002,0.028953873,-0.046665255,-0.009859486,0.008799925,-0.00375865,-0.021068515,-0.0069652135,0.020611232,-0.012703568,0.011287103,0.033392873,0.03482049,0.04106632,-0.006061799,0.016517984,-0.008175342,0.01664067,-0.048985135,-0.012112445,0.02890926,-0.048985135,0.00032571016,0.025228683,0.010958082,-0.002338003,-0.017097954,-0.049966622,0.043765407,-0.041333996,0.0022376236,0.036649626,0.026143251,0.03354902,-0.0053591435,-0.040397123,-0.043720797,0.044189233,0.022953417,-0.066473454,0.030626863,-0.0053507783,0.033772085,0.01387466,-0.00050224544,-0.009017414,0.032812905,-0.0023338206,0.007969007,-0.022339988,0.006095259,-0.014521549,0.0027074548,-0.021960776,-0.06669652,0.02039932,-0.00910664,0.045639157,0.048226714,0.011933993,0.055097125,0.049877398,0.0033069428,-0.048851296,0.0018221645,-0.0034184754,-0.0008434656,-0.003962197,-0.016830275,-0.017655617,-0.011789,-0.027013205,0.014086572,0.006396397,0.016874889,-0.013205465,0.00084834517,-0.021001596,0.034463584,-0.007606526,-0.007762672,-0.0032400233,0.014778075,-0.0011453008,0.03256753,-0.019763583,0.018882476,-0.02251844,-0.04889591,0.010974811,-0.028485436,-0.040575575,0.006809068,0.0059000766,0.009307398,-0.02505023,-0.018302506,-0.011989759,-0.0032260816,0.05036814,-0.0039649853,0.01715372,0.01712026,-0.026767833,0.010835396,-0.018648257,0.0027562503,-0.0003387804,-0.021826938,-0.014376557,0.04445691,-0.008571284,0.024715634,-0.011175571,-0.01616108,-0.010785206,-0.02159272,0.0072496217,0.040464044,-0.0004429937,-0.038791053,0.0070209797,0.002874754,-0.0035132782,0.01066252,-0.031474512,0.0034491469,0.02975691,-0.026656302,0.0057718144,-0.039527167,-0.017979061,-0.0047485023,-0.028351597,0.026076332,-0.033883616,-0.0023366087,0.014432324,-0.023689533,-0.041757822,-0.011181147,0.02647785,0.00960296,0.01233551,0.0088947285,0.03885797,-0.010088127,-0.009357588,-0.035355847,0.0036861538,-0.006045069,0.01937322,0.007394614,-0.025384828,-0.029779214,-0.0005799697,-0.0132166175,0.013183158,0.016517984,-0.0331475,-0.020310095,0.015692642,-0.0073276944,0.019350912,-0.0074336505,-0.0341736,-0.037118062,0.006513506,0.022061156,0.0142538715,0.010205236,0.011577088,-0.016975269,0.029444616,0.0021734922,-0.024626408,-0.009508157,0.018447498,0.02859697,0.0022724776,0.04124477,0.031965256,0.016562598,-0.004313525,-0.006379667,-0.048806682,-0.010311193,-0.039661005,0.017242946,-0.033682857,0.01349545,0.004475247,0.03102838,-0.0065079294,0.038434148,0.005434428,0.010857702,0.041200157,-0.00017862649,-0.015201899,0.04137861,-0.0050496403,-0.028998487,0.01834712,-0.01698642,-0.018860169,-0.017031034,0.00067512103,-0.010840973,0.028240064,-0.01892709,0.0024746305,-0.0059781494,0.0148338415,0.013952733,-0.0049882974,-0.021826938,0.014142339,-0.019328607,-0.0061287186,0.0015726102,-0.016272612,-0.029310778,-0.010924622,0.00917356,0.0011829431,0.009720069,-0.021514647,-0.011169994,-0.023934904,0.006095259,-0.022808425,0.040843252,-0.019005163,-0.023020336,0.0062067914,0.029846136,-0.024938699,0.021146588,0.01558111,-0.006686382,-0.012090138,-0.01349545,-0.028507743,-0.012290897,-0.0020229232,0.015938014,0.014398864,0.032790598,0.020588925,0.00078909344,-0.019060928,0.04381002,-0.001164819,-0.02832929,-0.019228227,0.03354902,-0.022496134,0.017053341,-0.0016660189,0.051617306,0.0052364576,-0.013718515,0.018257894,0.0016702013,-0.0020285,-0.016651824,-0.011867073,-0.01592686,-0.01875979,0.03946025,0.0011501804,-0.0030281113,0.015224205,-0.013250078,-0.009742376,-0.03160835,0.021403113,0.026589382,0.047066774,-0.026165558,0.04626374,-0.02583096,0.039995603,0.033504404,0.015179592,0.0017747631,0.009614114,-0.026611688,-0.002586163,-0.0074392273,-0.03290213,-0.026879366,-0.02101275,-0.0056965295,-0.008114,-0.021068515,0.0193063,-0.017176026,0.008950494,-0.05839849,-0.009273939,-0.021659639,0.0056714346,-0.03577967,0.0016283765,-0.0049102246,0.008426291,0.0030392644,-0.037831873,-0.040307898,0.014410017,-0.009497005,0.020421626,-0.0026698126,0.049386654,-0.011521322,-0.013328151,-0.00037398288,0.0033627092,-0.024938699,0.0044362107,-0.006106412,-0.011398636,-0.013830047,-0.01872633,0.024336422,-0.01445463,-0.05282186,0.017376786,0.013852354,-0.015636876,-0.029355392,0.017755996,-0.012547422,-0.0048823413,0.018436346,-0.014320791,-0.018603645,0.002435594,0.011342869,-0.031072993,-0.00160607,-0.05166192,0.03566814,-0.0300692,-0.008699546,0.027771628,0.018001368,-0.057461616,0.00063399336,0.01616108,-0.03174219,-0.03013612,-0.008208802,-0.018157514,0.017644463,0.010606755,-0.031251445,0.01824674,-0.009569501,0.01294894,-0.034218214,0.009792566,-0.019161308,0.019618591,-0.01185592,-0.030961461,-0.016852582,-0.015882248,-0.02344416,-0.028150838,0.005021757,0.022473827,0.03638195,-0.0059614195,0.036872692,0.026946286,0.008114,0.022418061,0.018547878,0.011644008,-0.0040095984,-0.02589788,0.007868628,0.02716935,-0.011432095,0.003917584,-0.029533843,0.021068515,-0.024804858,0.013183158,-0.035355847,0.0036610588,-0.01596032,-0.0050691585,0.037497275,-0.03129606,-0.004377656,0.012157057,-0.0000377294,0.013383917,0.0039733504,-0.0011975818,0.0026405354,-0.006217945,0.03406207,-0.009234902,-0.01786753,0.027392417,-0.011209031,0.016908348,-0.022429215,0.046932936,-0.028686196,-0.03977254,-0.008130729,0.026901674,0.0351997,-0.01506806,-0.0092572095,-0.009190289,0.020834297,-0.031139914,0.0120566785,0.008721853,0.027637789,0.02036586,-0.02053316,0.012201671,-0.015871095,0.0012233737,0.03102838,0.034597427,0.0018765366,-0.019908577,-0.00400681,0.0043915976,0.02679014,0.007807285,-0.03468665,-0.009006261,0.0058108508,0.019540519,-0.008671663,-0.024961004,-0.015603417,0.04233779,-0.027280884,0.022629973,0.0009891551,-0.021615027,-0.024760246,-0.031318367,-0.02364492,0.0037251902,0.00148199,-0.01841404,0.007695752,-0.0081474595,-0.033794392,-0.022607666,-0.016138773,-0.0005182782,0.02026548,0.022050003,0.01763331,0.02053316,-0.019417834,0.008320335,-0.002471842,0.02955615,-0.015090366,-0.02286419,-0.014287331,-0.023399549,0.0042633354,0.032545224,-0.042583164,0.015871095,-0.014700002,-0.008431868,-0.014041959,0.0075730663,-0.023957212,0.0223846,0.024113357,-0.024581794,0.01493422,0.0032344465,-0.02005357,-0.01435425,-0.024626408,-0.024492567,-0.0020298942,-0.008236686,0.025161764,-0.006697535,-0.03308058,0.033482097,0.019652052,0.03693961,-0.011499016,0.029689988,0.060539916,0.016874889,-0.039727926,-0.0052197278,0.025741734,0.0054121213,0.009826026,0.034932025,0.003644329,-0.023109563,-0.013461989,0.0017761573,0.009424509,-0.01650683,0.00695406,0.006831374,0.019484753,0.009279516,-0.0014248295,0.018938242,0.006814644,0.05134963,-0.0013983404,-0.008376101,0.010595601,-0.01122576,0.04062019,0.003970562,0.02286419,0.008298028,-0.00008260386,0.015279972,-0.03064917,-0.029243859,0.022429215,-0.02036586,-0.018190974,0.006396397,0.001164819,-0.023778759,-0.003794898,-0.010506375,0.0006538601,-0.038389534,-0.00083370646,0.028953873,-0.014722308,0.03946025,-0.014164645,0.003976139,0.017912142,-0.02737011,0.02948923,0.0031173374,0.0345082,-0.002010376,0.03609196,-0.01175554,0.03649348,-0.015179592,-0.016741049,-0.03058225,-0.023957212,-0.029712295,0.030470718,-0.016841428,0.00022759629,-0.02641093,0.015335738,-0.031519122,0.011175571,0.011342869,-0.023578,-0.05505251,0.010640214,0.0152688185,-0.029533843,-0.04124477,-0.012770487,0.02743703,-0.037095755,-0.006836951,-0.004653699,0.007277505,0.033192113,0.0017803397,-0.00481821,-0.009976595,-0.027057819,-0.06616116,0.0051918444,0.03116222,0.0017691865,-0.010969236,-0.006530236,-0.023689533,0.00801362,0.03796571,0.0020326823,0.039237183,-0.042248566,-0.010450608,0.016852582,-0.00019431078,-0.017822916,0.027615482,-0.005071947,-0.010272156,-0.02685706,-0.016685283,0.01602724,0.035311233,0.008114,0.028351597,0.011956299,-0.02293111,0.017990215,0.018603645,-0.0028719655,-0.0025833747,0.016830275,0.030091507,-0.009597383,-0.0062625576,0.011777847,-0.012603188,-0.020923523,-0.04465767,-0.0055264425,0.012513963,0.027035512,-0.01773369,-0.011933993,0.028150838,0.044412296,0.0019615802,-0.008069387,-0.011354023,-0.029266166,0.032924436,-0.015815329,-0.06174447,-0.02228422,0.026433235,0.029065406,-0.0026042871,0.010606755,-0.008956071,-0.02716935,0.020990442,0.020878911,0.0145438565,-0.0055487487,0.077269815,-0.03604735,-0.016718743,0.015369198,0.017878681,-0.015246512,-0.0078574745,-0.0011020818,-0.0022613243,-0.016596057,-0.014744615,-0.019016314,0.0039371024,0.014610776,-0.012614341,0.07022095,0.0017817339,0.02429181,0.028440824,-0.01018293,0.0055487487,0.032411385,0.0341736,-0.0091122165,-0.02409105,-0.009742376,-0.05197421,-0.014755769,-0.047557518,0.0014415594,0.0035104898,-0.0015628511,0.023421854,-0.009469121,-0.022886498,0.021101976,0.011287103,-0.0043358314,0.023756452,-0.022295374,0.036538094,-0.006775608,0.05897846,0.00229339,-0.013439683,0.046843708,0.045148414,0.022998031,0.012558576,0.056524742,-0.011476709,-0.03502125,0.0038255695,-0.013629288,0.046442192,-0.010656944,-0.042003192,0.0009591807,-0.032991353,0.0040793065,0.026700914,-0.010110434,-0.023377242,0.0150346,0.008426291,0.053446442,-0.003677789,-0.025987105,0.028440824,0.00017235278,-0.010478492,0.012000912,-0.00046007213,0.026321704,0.00803035,0.024916392,-0.023533387,-0.0105844475,-0.020443933,0.012993553,0.029801521,-0.012870867,-0.012748181,-0.0008476481,0.009446815,0.020042416,0.029667683,-0.006546966,-0.059915334,-0.024514874,-0.03830031,-0.0076344092,-0.005030122,0.023533387,0.023377242,-0.024113357,0.019875117,0.023622613,0.011069614,-0.0013014465,0.0036025043,0.014655389,0.0055877855,0.07089014,-0.03816647,0.008504364,-0.0066138855,0.03988407,0.026366316,-0.010428302,-0.0050245454,0.04010714,0.0135289095,-0.027526256,0.009435661,0.027481643,-0.014956527,0.028775422,-0.01071271,-0.025786346,0.013584675,0.05576632,0.038590293,-0.023578,0.044278458,0.01657375,-0.00809727,0.020990442,0.025005618,-0.02859697,-0.022228455,0.007790555,0.013997346,-0.016016087,0.01236897,0.02265228,0.029199244,-0.013149698,-0.007829592,0.006993097,0.008130729,-0.005172326,-0.023154177,-0.0020968136,0.020655844,-0.007338848,-0.0034352054,0.017967908,-0.014421171,-0.016752202,0.0017887048,0.014945374,0.02525099,-0.020488545,0.038969506,-0.032812905,-0.04974356,-0.039036423,-0.028463129,0.0037614384,-0.01243589,-0.030894542,-0.022998031,0.05036814,0.0008727429,0.0246041,0.008905881,0.014766921,0.028663889,-0.0013390888,0.0112369135,0.010238697,0.029377697,0.027927773,0.0120566785,-0.00746711,-0.013952733,0.0062960177,-0.030381491,-0.009374319,-0.009480274,-0.013261231,-0.016696436,0.010550988,0.036404252,-0.026366316,0.036337335,0.006580426,0.02091237,0.01506806,-0.005417698,0.0321214,0.0035718328,-0.027972387,-0.005367508,-0.016361838,0.03609196,-0.017979061,-0.01243589,0.002690725,-0.007623256,-0.025652507,0.0019810984,-0.004235452,0.008035927,-0.05719394,0.035712752,-0.0014304061,0.007718059,-0.013116239,-0.0216931,-0.0050496403,0.009708917,-0.00349376,-0.028373905,-0.027057819,0.04360926,-0.030916847,0.013986194,0.030604556,-0.05442793,-0.0015042964,-0.017990215,0.012569728,-0.0066194623,-0.013350457,-0.01616108,-0.009798142,-0.006591579,-0.025496362,-0.012870867,0.0058721937,-0.011041732,0.020455087,-0.018023675,-0.02569712,-0.013027012,0.0021916165,0.0054372163,0.0031033957,0.032745983,0.0269909,-0.006156602,0.001041436,-0.024381036,-0.012101292,-0.01387466,-0.015090366,-0.04318544,0.0015238147,0.022696892,-0.015603417,0.0049158013,-0.009491428,0.03662732,-0.006892717,0.044033088,0.0032483882,0.0033766506,0.015123826,0.0038701827,0.024202583,-0.024113357,0.0055543254,0.030314572,-0.018603645,-0.012748181,-0.0141088795,-0.029221551,-0.0012979611,0.017432552,0.009000684,0.011655161,0.009965441,-0.032812905,0.03638195,0.0074782637,0.012658955,-0.021458881,-0.017967908,-0.0050524287,-0.0129266335,-0.01722064,-0.0011683044,-0.038322616,0.020477394,-0.014320791,-0.0045951447,-0.00404027,-0.011878226,-0.0060673757,0.0014513185,0.01654029,-0.0056073037,0.005205786,0.013930427,-0.01892709,-0.022886498,0.049565107,0.010718287,-0.011666314,0.03468665,0.029310778,-0.00458678,-0.007043286,0.014867301,0.01654029,-0.005021757,0.011443249,0.0071938555,-0.0013000524,0.03185372,-0.017365633,0.01892709,-0.049966622,-0.0069094473,0.02839621,-0.008521094,0.018659411,-0.054561768,0.024470262,-0.025228683,0.00864378,0.030537637,0.03122914,-0.004182474,-0.033125196,-0.0070990524,-0.006212368,-0.02091237,-0.016183386,-0.014989987,0.0026084697,0.0032679064,0.0020396532,-0.008866845,-0.017321019,0.018492112,0.004218722,-0.029913055,0.00509983,0.0148338415,-0.016306072,-0.022228455,0.027838547,-0.022150382,-0.008666086,0.04247163,0.012123598,0.015246512,-0.03330365,0.004129496,0.0006434039,-0.041356303,-0.017109107,-0.010361383,0.01927284,0.0041768975,0.0015377563,0.007545183,0.009446815,0.024470262,-0.0070209797,0.02897618,-0.0028663888,-0.013372764,0.015346891,-0.023823371,-0.009753529,-0.021938471,0.01975243,0.016852582,0.027905466,0.030805316,-0.008755312,-0.01715372,0.01654029,0.00009271151,-0.01927284,-0.031429898,0.0287085,-0.022953417,0.012090138,-0.0070990524,-0.031251445,-0.007589796,0.016317226,0.015971474,0.040687107,-0.03544507,0.0042382404,-0.009625267,0.01243589,-0.018358273,0.016339531,-0.0017454858,-0.05460638,-0.012145905,0.010478492,-0.0063573606,0.03185372,0.015904555,-0.021960776,0.0046983124,0.0051388666,-0.0066473456,-0.00009985657,0.01243589,-0.0126366485,-0.024559487,0.024001824,0.013250078,-0.017443705,0.011644008,0.02364492,-0.052152663,0.0059446897,-0.027124738,-0.040597882,-0.04438999,0.00816419,-0.05010046,0.016997574,-0.055721708,-0.011314986,-0.018670565,0.01889363,0.003016958,-0.016819121,-0.010121587,0.03526662]},{"id":"guide-reactions-1","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Remove Reactions\nRemove the bot's reaction with removeReaction(emoji). Remove a specific user's reaction with removeReaction(emoji, userId). Clear all reactions with removeAllReactions() or removeReactionEmoji(emoji).\n\n```javascript\n// Remove the bot's reaction\nawait message.removeReaction('👍');\n\n// Remove a specific user's reaction (requires moderator permissions)\nawait message.removeReaction('👍', userId);\n\n// Remove all reactions of one emoji from the message\nawait message.removeReactionEmoji('👍');\n\n// Remove all reactions from the message\nawait message.removeAllReactions();\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.012536085,-0.0022413451,-0.032225464,0.018928895,-0.03151251,-0.002936474,-0.02609407,0.008929732,-0.00001780061,0.031346153,0.002259169,-0.048718434,0.007480062,-0.016350383,0.022778839,0.0036538825,0.030989679,0.012239021,-0.02754374,0.06516388,0.010379403,0.026997143,-0.0043579233,0.043585174,0.0013315877,0.00756324,0.009541684,0.04006794,-0.041565143,-0.03374643,-0.004001447,-0.011098297,0.028066572,-0.010135811,-0.0063393377,-0.029136,-0.017122747,0.016314734,-0.011401302,0.05746399,-0.018750656,-0.032629468,-0.0009996191,0.009915984,-0.04080466,0.04006794,-0.079708114,0.02740115,0.010836882,0.008650493,-0.012078607,0.03726366,0.019867616,0.05831953,-0.02427604,-0.02507217,-0.009357505,0.008680199,-0.016623681,0.05019187,-0.009446624,-0.0031726395,-0.0010746276,-0.023087785,-0.040685836,-0.012215257,-0.014187759,0.0045599267,0.009737746,0.0038202382,0.014092699,-0.007367178,0.008573256,-0.020556804,0.0067433445,-0.016041435,0.029326122,0.011573599,-0.017847583,-0.0441793,0.021400465,0.023087785,-0.02180447,0.01012987,-0.029136,0.014045169,-0.019665612,-0.030989679,0.017146513,-0.007301824,0.003324142,0.004782724,-0.074622385,-0.0059085954,0.009428799,-0.04636569,-0.0125717325,0.0331523,0.012452907,0.051760368,0.035861522,-0.09206596,-0.06345279,0.018833835,0.008888144,0.00022428304,-0.02637925,0.055135008,-0.02885082,0.0027552652,-0.014556117,-0.014068933,0.01377187,0.0035914993,0.008097954,-0.019130897,0.02208965,-0.016184026,-0.023705678,-0.063833036,-0.03355631,-0.019214075,0.07761679,-0.049573977,-0.0076701827,-0.022968959,0.011223064,-0.03983029,-0.017098982,0.011312183,0.028137866,-0.011662718,0.015886962,-0.06544906,-0.017562402,0.0042004795,0.043656472,0.0006438854,-0.0010471493,0.054517116,0.052473318,-0.007735537,-0.031298622,0.02156682,-0.057796698,-0.046009216,-0.049241267,-0.026165364,-0.028969646,-0.0105457585,-0.016932627,0.0014600677,-0.011621129,0.007913775,0.00011177019,-0.027139733,-0.009927866,0.010058574,0.0028636933,-0.041660205,-0.016908862,-0.07001196,-0.00042554364,-0.057368927,-0.011211181,0.0061551584,-0.0011206726,0.013070799,-0.017586166,0.0066066952,0.065496586,-0.024359217,-0.010771527,-0.025595002,-0.06530647,0.0018655596,-0.038974747,0.021875765,-0.026212895,0.028613169,0.03286712,-0.0009595155,-0.05461218,-0.028446812,-0.017384164,-0.043395054,0.0074384734,0.0016234528,-0.04453578,-0.0134629235,0.03707354,0.020081501,0.013498572,-0.020509273,0.042444453,-0.07091503,0.047957953,-0.03495845,-0.02633172,-0.03847568,0.013367863,0.058984954,0.056085613,0.007491945,-0.015993906,-0.048171837,-0.02390768,-0.023634382,0.035267394,0.008103896,0.022481775,-0.03184522,0.03828556,0.0031072856,-0.041945383,-0.008086072,-0.057796698,0.03747755,-0.046151806,0.040234298,-0.07357672,-0.0055253836,0.11835015,-0.010712114,-0.0026483221,0.015958259,0.04196915,0.0013768899,-0.02987272,0.015114597,-0.02545241,0.012191491,0.0025829682,-0.016029553,0.03973523,-0.043276228,0.04486849,0.00081692496,-0.008335605,-0.0321304,0.026521841,-0.01919031,0.023860151,0.009096088,0.0021759912,0.016599916,0.017942643,0.0053263507,0.003235023,0.004503485,0.056133144,0.020913279,0.04135126,-0.036265526,0.009464447,-0.027424915,0.01064676,0.03286712,-0.017930761,0.015898846,-0.0015803785,-0.003942034,0.009773393,0.008793083,-0.024097802,0.0038024145,0.013047035,0.025214761,-0.0047916365,-0.000005149296,0.0019086339,-0.02492958,0.020390447,-0.009696157,-0.036859654,0.037525076,0.045177437,0.022481775,-0.038594507,-0.004646075,0.026711961,0.0035231747,0.023277907,-0.012149902,-0.0050916704,0.018679362,-0.043157402,-0.023182845,-0.008989145,0.023919564,0.00052505994,-0.01667121,-0.0051807896,-0.03296218,-0.030538142,0.042183034,0.037929084,-0.00929215,0.019463608,0.03790532,-0.03336619,0.015055184,-0.000029335033,-0.060838632,0.032225464,0.036241762,-0.006612636,-0.020224093,0.0422068,-0.005258026,0.009939749,-0.016005788,-0.013153978,0.006074951,-0.020247856,-0.0125242025,0.00083623413,0.031583805,0.021863883,-0.0048064897,0.037097305,-0.027615035,0.015304718,-0.038333092,-0.048219368,-0.038356856,0.016041435,-0.030276725,0.07619088,0.044797197,0.050999884,0.004262863,0.015411661,0.034697033,0.018322885,0.019772556,-0.009167383,0.035600103,-0.012203374,0.024596868,0.036265526,0.012726205,-0.010605171,-0.048148073,-0.01563743,0.0026720874,-0.015376014,-0.018192176,-0.018275354,-0.010058574,-0.011234947,0.017431693,-0.033128537,-0.076666184,0.06483117,0.007295883,-0.014092699,0.01993891,0.034293026,0.022564953,0.0017437635,-0.016231557,0.007390943,0.0054273526,0.059792966,0.035861522,-0.03229676,-0.02483452,0.067778036,-0.040186767,-0.017396046,-0.039378755,0.026355485,-0.0193329,-0.04234939,0.007836538,-0.016326617,0.03151251,-0.0019309135,0.046484515,0.0032439348,-0.019950794,-0.017704992,-0.027092203,0.015423544,-0.02507217,-0.010771527,-0.030110369,0.015423544,0.052235667,0.08137167,-0.022339186,0.00424801,0.018465474,0.025761358,0.03412667,-0.011021061,0.062169477,-0.0001227244,0.012856914,0.012476672,0.023099668,0.0053887344,0.0020853868,0.003650912,0.028636934,-0.021578701,0.017146513,-0.0012981681,0.008799025,0.067540385,0.048338193,0.0009914498,0.017954526,0.010432875,-0.06055345,0.067160144,0.015447308,0.02100834,-0.003030049,-0.062264536,-0.012714324,0.008056366,-0.07314895,-0.010337815,0.045248732,0.024430513,-0.0045926035,0.039188635,-0.044488247,-0.08037353,-0.016552385,-0.0012714324,-0.05337639,0.009838748,-0.021935178,0.02086575,0.044654604,-0.041850325,-0.02526229,-0.029991545,0.007153292,0.028137866,0.03372266,-0.024074037,0.004001447,-0.040424418,-0.026450545,0.016801918,0.014817534,-0.028066572,-0.010682408,0.023574969,-0.0013301024,-0.04127996,-0.048029248,0.026783256,-0.000552167,0.05090482,0.008864379,0.040020414,0.018263472,0.035314925,0.042325627,-0.005840271,-0.0005644209,-0.04196915,-0.013522336,0.007979129,-0.007973188,0.0033865254,0.012536085,0.029421182,-0.024311688,-0.0054362644,-0.06925147,0.02894588,-0.037715197,0.021685645,0.019665612,0.041018546,0.034697033,-0.00789001,-0.0462231,-0.022802604,0.03925993,0.0052550556,-0.041826557,-0.001202365,0.030870853,0.025309822,0.027163498,-0.009001028,-0.0106942905,0.027947746,-0.037192367,0.032795824,-0.034245495,0.024382982,-0.024644399,0.024668165,-0.009636744,-0.032059107,0.017158395,-0.0497641,0.008163309,0.04013924,-0.006333397,0.022850133,0.039568875,-0.026902081,-0.021780705,-0.033817723,-0.02782892,0.004785695,0.006077922,-0.026426781,-0.018025821,-0.01727722,-0.034388084,0.022909546,0.016908862,0.01597014,-0.0075751226,0.0007367178,-0.0057778875,0.029563772,-0.024359217,-0.018025821,0.0351961,0.020010207,0.0024314658,0.019618083,0.01255985,0.010527935,-0.012880679,-0.055135008,0.008430665,-0.02063998,-0.044559546,0.010314049,-0.0040460066,0.024668165,-0.03310477,-0.013106448,-0.0057303575,0.0009364931,0.054707237,-0.011175534,0.0077949497,0.0074265907,-0.0009075294,0.008947557,-0.013308451,-0.01241726,-0.0005365712,-0.03638435,-0.037762728,0.046341926,-0.009910042,0.009250562,-0.02166188,0.00844849,-0.0061313934,-0.029349886,-0.0077474196,0.041232433,0.015102715,-0.016659329,0.0144016445,0.013795635,0.007284,-0.030110369,-0.023824504,0.0034340555,0.04047195,-0.02025974,0.014235289,-0.030633202,-0.038356856,-0.0111874165,-0.018691244,0.013688692,-0.024240391,-0.016599916,-0.0031013442,-0.043014813,-0.020271622,-0.05266344,-0.0036004111,0.012975739,-0.008198956,0.033912785,0.031203564,0.00086222717,0.01703957,-0.0026408955,0.002866664,-0.017621815,-0.0018076322,0.026260424,-0.030371785,-0.035124805,0.01848924,0.0043965415,0.014556117,0.0052669384,-0.050429523,-0.037144836,0.02170941,-0.0006312602,0.013320333,-0.011840956,-0.0109913545,-0.013415393,-0.0062205126,0.017098982,-0.0007419164,0.008959439,0.009405035,-0.023040256,0.023551205,-0.0030775792,-0.021638114,0.0055105304,0.018263472,0.020093383,0.0038647978,0.042705867,-0.0040935366,-0.019154662,0.00532041,-0.0042361272,-0.0392124,0.01909525,-0.035101037,0.010801233,-0.010438816,-0.006380927,-0.01073588,0.029848954,-0.022279773,0.039283693,-0.012666794,-0.018132763,0.023586852,-0.022612484,-0.02782892,-0.0021507407,-0.013391628,-0.016445443,0.0056412383,-0.01834665,-0.04080466,-0.0037548842,-0.0018685302,0.016623681,0.03146498,-0.021578701,-0.005662033,0.006992878,0.025595002,0.002330464,0.0040073884,-0.01031999,-0.018358532,-0.038356856,-0.025048405,-0.0019353696,0.015613664,-0.027519975,-0.0024968197,0.027234793,0.016647445,0.01638603,-0.0019071485,-0.011371596,-0.018679362,-0.0042747455,-0.015150245,0.02330167,-0.034340557,-0.02012903,0.0063393377,0.0014786342,-0.017764404,0.019178428,0.018073352,-0.003650912,-0.016397912,-0.010539818,-0.03785779,-0.010872529,-0.014698708,0.01727722,0.01686133,0.009987279,0.048670907,0.035101037,-0.05503995,-0.0063512204,0.0058046235,-0.021483641,-0.011674601,0.032011576,-0.008282134,0.044416953,-0.0006093518,0.025808888,-0.019784437,-0.028565638,0.03548128,-0.015993906,0.0032290816,-0.010112046,-0.021424228,0.017514871,-0.007390943,0.043014813,-0.03538622,0.005463,0.029825188,-0.026521841,0.010397227,-0.017146513,0.0017541607,0.022980843,0.05518254,-0.027757626,0.04104231,-0.035362456,0.0276388,-0.0022725367,0.02025974,-0.022030238,0.003445938,-0.0004801291,0.011151768,-0.016647445,-0.037952848,-0.028898349,-0.0010137296,0.00695723,-0.049146205,-0.0507147,0.0005633069,-0.0050441404,-0.0039836233,-0.021032104,0.027900215,-0.025381116,0.008050424,-0.043704,0.03823803,-0.0026587194,-0.013094565,-0.00844849,-0.024691928,-0.04318117,0.024525573,-0.011056708,0.03800038,0.0011615187,0.014900711,-0.00006437926,0.020901397,-0.00565015,0.019594317,-0.012845031,-0.0072780587,-0.007628594,0.012749971,0.013237155,-0.00020942985,0.012357847,0.011555775,0.004182656,-0.0072245873,-0.028969646,-0.007955364,-0.026997143,0.027852686,-0.002017062,-0.019356666,-0.01839418,-0.0005317439,-0.010985413,0.0032706705,-0.00480946,-0.021543054,0.023408614,-0.04477343,0.04272963,-0.012773736,-0.012286551,0.031179799,0.012203374,-0.06430834,0.029706363,0.022208476,-0.0552776,-0.025856419,0.0063155727,-0.023586852,0.056513384,0.030752027,-0.031227328,0.011490421,-0.031108502,0.01008234,-0.04686476,0.032368053,-0.029944014,0.025404882,-0.029611303,-0.01512648,-0.024549339,-0.011918193,-0.017443577,-0.03790532,0.011644894,0.023836385,0.03790532,0.015257188,0.021436112,0.000042749314,0.0213767,0.000033605324,0.032177933,-0.027258558,0.009060441,-0.028874585,0.01377187,0.024002742,0.0077652433,-0.00826431,-0.02782892,0.03044308,-0.024299804,0.01461553,-0.02749621,-0.0020601363,-0.03514857,0.015851315,-0.0011585482,0.0005150341,-0.0035172333,0.017538637,0.015269071,0.0035142626,-0.0080326,0.005635297,-0.028874585,-0.0018076322,0.020901397,-0.03455444,-0.010147694,0.024074037,-0.0014117949,0.025832653,-0.030110369,0.0321304,-0.010141753,-0.064118214,0.0062918076,-0.011496362,0.006027421,-0.035909053,-0.027971512,-0.0046668695,0.028399283,0.0005451118,0.016302852,0.029635068,0.026925847,0.002385421,-0.024905814,-0.015280953,-0.0030270785,0.0029245913,0.0060452446,0.027615035,0.01078341,-0.03232052,-0.005210496,0.012108314,0.021745058,0.02507217,-0.02647431,0.001341985,-0.008977263,-0.009957572,-0.0048510493,-0.016885096,-0.004836196,0.046199337,-0.013403511,-0.006778992,-0.0046312218,-0.037049774,-0.019891381,-0.03552881,-0.016172145,0.011603305,0.027163498,0.00746818,0.00947633,0.0067017553,-0.02236295,-0.029183531,-0.011936016,-0.021305403,0.028827054,0.0003410662,0.03885592,0.0147462385,-0.0017170277,-0.02231542,0.010106104,0.003300377,0.008692082,0.009256503,0.022564953,-0.021911412,0.058747303,0.035647634,0.01965373,0.009090147,-0.019772556,-0.0076345354,-0.0129163265,-0.012892561,0.0027300147,0.032415584,0.0077711847,-0.011330007,0.034483146,0.00010935655,-0.0008614845,-0.014591766,0.0059590964,-0.044108007,0.0036954714,0.0091139125,0.026521841,-0.017312868,-0.054089345,0.028779523,0.013308451,0.026997143,0.020283505,0.022517422,0.03925993,0.016599916,-0.028042806,-0.008983204,0.028636934,0.01568496,-0.001036752,0.022018356,-0.02245801,-0.021721292,-0.0050589936,-0.018667478,-0.015708724,-0.0014927448,0.0020972693,0.018085234,-0.008585139,0.006273984,0.010325932,0.029896483,0.0009840233,0.011466656,-0.0044737784,-0.0023824503,0.0044143656,0.020045854,0.027852686,0.0008599992,-0.009001028,0.0038202382,0.0030835206,0.02330167,-0.01863183,-0.043062344,0.021043988,0.0056917393,-0.00723647,-0.00010935655,0.023551205,-0.015851315,-0.008698023,-0.027377384,-0.00026995657,-0.04420307,-0.0122746695,0.048765965,0.009387211,0.03659824,-0.004212362,0.030918382,0.019736908,-0.018679362,0.048100542,-0.010676467,0.04444072,-0.028209163,0.029587537,0.0012929694,0.022802604,-0.0016145408,0.008864379,-0.010700232,-0.031488746,-0.018358532,0.015708724,-0.03925993,0.0013761473,-0.004004418,0.035837755,-0.0482669,0.009838748,0.011537951,-0.020473626,-0.02516723,-0.009797159,0.006844346,-0.021602467,-0.03355631,-0.00723647,0.033889018,-0.029017175,0.017015805,0.021982709,0.0056293556,0.008727729,0.025381116,-0.011799367,-0.0371686,-0.013130212,-0.0447259,-0.0012989107,0.031417448,-0.0020556804,0.02077069,-0.031132268,-0.026616901,0.0015358189,0.010866588,0.000051754054,0.020461742,-0.047268763,0.012797501,0.012583615,0.023194728,-0.02367003,-0.008359371,-0.014282819,-0.027187264,-0.023194728,-0.00625616,0.023551205,0.006713638,0.024573103,0.019071486,-0.02759127,0.0075513576,0.033461247,-0.0056323265,-0.01578002,-0.00863861,0.0038945042,-0.001461553,-0.011365655,-0.018417945,-0.003650912,0.0027136763,-0.013118329,-0.047245,0.016611798,-0.0072661764,-0.01750299,0.023325436,-0.017966408,0.029278591,0.017574284,0.007587005,0.013795635,-0.01614838,-0.028708229,0.025595002,-0.0029795482,-0.028066572,-0.04995422,0.012892561,0.0009595155,-0.04085219,-0.008644552,-0.007996953,-0.020889515,0.012963857,0.0178357,0.030110369,0.00064945535,0.05556278,-0.010420992,0.0061551584,0.015185893,0.052853562,-0.020877631,-0.011472598,-0.023075903,-0.010890353,-0.031179799,-0.0033687016,0.0021878737,-0.014223406,-0.0012692043,0.0092624435,0.072863765,0.010682408,-0.017954526,0.04051948,-0.03020543,-0.02792398,0.02067563,0.00075974024,-0.029159766,-0.026141599,-0.02156682,-0.027947746,-0.006891876,-0.05014434,-0.017158395,0.0044975434,-0.015019537,-0.012143961,-0.010652701,-0.02063998,0.011240887,0.033413716,0.017930761,0.016932627,-0.05004928,0.0076167113,0.014259054,0.059792966,-0.018370414,-0.012690558,0.0427534,0.017348517,0.011466656,0.0038737098,0.05256838,-0.012880679,-0.01834665,-0.008709906,-0.024549339,0.046936054,-0.0103496965,-0.034340557,0.015162128,-0.033461247,0.03954511,0.02279072,-0.007480062,-0.033176064,0.045034844,-0.0010894808,0.031773925,0.0015447309,-0.02273131,0.04565274,0.012250904,0.019297253,0.019356666,0.0038677684,-0.00083177816,-0.013130212,-0.018988308,-0.036479414,0.0005982119,0.026260424,-0.0021091518,-0.0048540197,-0.030514376,0.010308108,0.0019695319,0.008614846,0.024715694,0.032629468,0.024026506,-0.053804163,-0.027995277,-0.042373154,0.0021462848,-0.010807175,0.03552881,0.0211034,-0.018845716,0.0030047987,0.024050271,-0.007194881,-0.022778839,0.002306699,-0.008953498,-0.0027938834,0.07600076,-0.027139733,0.01750299,0.00017823817,0.0024567163,-0.0026141598,-0.0056204437,0.010569524,0.039378755,-0.0064819283,0.002306699,0.0029186502,0.01900019,-0.020200327,0.021412347,-0.020295387,-0.018263472,0.026403015,0.023289789,0.029658834,-0.019629965,0.045771565,-0.016279086,0.016112732,0.0251197,0.018275354,-0.02885082,-0.0028354723,-0.0147937685,-0.0030404462,-0.009298092,0.011276536,-0.0047411355,0.027448678,-0.009428799,-0.019582434,-0.0058194767,0.004868873,-0.02273131,-0.008923791,0.0077295955,0.02413345,-0.016944509,-0.02180447,0.0052283197,-0.03495845,0.009131736,0.016005788,0.01616026,0.039854057,-0.02279072,0.020628098,0.0058878013,-0.06240713,-0.025048405,-0.01391446,-0.013831283,-0.028922115,-0.019285372,0.0028235898,0.03160757,0.0060571274,0.009731804,0.0113003,0.0039479756,0.030989679,-0.005252085,0.0102486955,-0.0049282857,0.023800738,0.050809763,0.039663937,0.00033029763,-0.024953345,0.009791217,-0.04075713,-0.0039895647,-0.017966408,-0.015720608,-0.05090482,0.0074860035,0.044274364,-0.015423544,0.016112732,0.0114369495,0.007991011,-0.0015477015,0.008359371,-0.0035885286,0.0012647484,-0.016255321,-0.016029553,-0.001522451,0.018893247,-0.025951479,-0.0048005483,0.00023468026,-0.0019828996,-0.017895114,-0.014972007,-0.011674601,-0.012892561,-0.026759492,0.044892255,-0.006493811,-0.0058373003,-0.0039984765,-0.009630803,0.02502464,-0.016136495,0.009696157,-0.0226006,0.0013226758,0.043038577,-0.018465474,0.026070304,0.013486689,-0.04608051,-0.009428799,-0.018501123,0.019119015,-0.0050322576,-0.014698708,-0.002165594,-0.006470046,0.00071072474,-0.026902081,-0.00085034466,0.008193015,-0.015209658,0.005962067,-0.0077711847,-0.013997639,0.02801904,-0.0073374715,0.03911734,0.010314049,0.015839433,0.025095936,-0.0063987505,-0.0019546787,-0.028684463,-0.033698898,-0.054469585,-0.03766767,-0.028209163,-0.017930761,0.0153403655,-0.004040065,0.0015432455,-0.0050352286,0.04132749,0.007081997,0.037501313,0.01008234,0.0046104277,0.0086207865,-0.02633172,0.02507217,-0.03828556,0.013890695,0.008038542,-0.02749621,-0.009405035,-0.014734356,-0.038546976,0.00097288337,0.037382487,-0.008044483,0.013641162,0.0065710475,-0.046199337,-0.00863861,0.030775791,0.004955021,-0.026521841,-0.028090337,-0.018893247,0.012019195,0.02497711,-0.01648109,-0.028731994,0.0236225,-0.011264653,0.0055491487,-0.000032050382,-0.0048243133,0.004865902,0.0011845413,0.016504856,-0.003324142,0.009393152,0.0027478386,0.0032171991,-0.017752523,0.020057736,-0.015364131,0.007040408,0.036099173,0.014876947,-0.01657615,0.007652359,-0.019831968,0.015482957,0.007028525,0.0004021499,0.008347488,-0.013367863,0.032368053,-0.020414213,-0.005454088,-0.061884295,0.005774917,0.03039555,-0.01778817,0.021887649,-0.020247856,0.025404882,-0.027258558,0.00035926132,0.019083368,0.021911412,-0.012845031,-0.024252275,0.00606901,-0.034340557,-0.012536085,-0.0009810526,0.007604829,0.016207792,0.012155844,-0.017669344,0.007319648,-0.002311155,0.02003397,0.009131736,-0.05237826,0.0023081843,0.014841299,0.00055513764,-0.037738964,0.027615035,-0.037929084,-0.013676809,0.008579197,0.000423687,0.020271622,-0.007991011,0.043086108,0.010747762,-0.030728262,-0.027234793,0.009179266,-0.0035736754,0.017360399,0.032700766,0.007783067,0.0068740523,-0.0009914498,0.020105267,0.04135126,-0.014128346,0.009422858,0.024192862,-0.026236659,-0.040448185,0.0025889096,0.0038737098,-0.00025417507,0.033485014,0.011912252,-0.0035499104,-0.002012606,-0.00043668353,0.027258558,-0.006333397,-0.034197964,0.003986594,-0.013094565,-0.039782763,0.0043579233,-0.007260235,-0.024810754,0.01246479,0.013189625,0.029991545,-0.0059175077,0.0010167003,-0.010955706,0.004360894,-0.014865064,0.007349354,-0.004271775,-0.018750656,0.00868614,0.023052137,-0.00789001,0.025238525,-0.0016709829,-0.03151251,0.013284685,0.007307765,-0.020224093,-0.0034667326,-0.0024492897,-0.013546102,-0.033413716,-0.0147937685,0.031916518,-0.02217283,-0.0044084243,0.030942148,-0.047649007,0.0060482156,-0.009345622,-0.030894617,-0.011009178,0.01316586,-0.036336824,0.032011576,-0.019867616,-0.016112732,-0.027852686,0.0331523,0.00490155,-0.018085234,0.0007604829,0.028090337]},{"id":"guide-reactions-2","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Listen for Reactions\nMessageReactionAdd and MessageReactionRemove emit (reaction, user, messageId, channelId, emoji, userId). Use client.on(Events.X, handler) or client.events.MessageReactionAdd(handler).\n\n```javascript\nclient.on(Events.MessageReactionAdd, async (reaction, user, messageId, channelId, emoji, userId) => {\n if (emoji.name === '👍') {\n console.log(`User ${userId} voted yes on message ${messageId}`);\n const message = await reaction.fetchMessage();\n if (message) await message.react('✅');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.015167912,-0.003873281,-0.024468988,0.028306497,-0.004917213,0.026927596,-0.025925942,0.0023008785,-0.012683288,0.021659153,0.011740171,-0.03496685,0.022439662,0.0052879555,-0.012845894,0.029269125,0.0063806693,0.0023203911,-0.0077140406,0.07066217,-0.0062766015,0.041861355,0.029607346,0.065562844,-0.0096197855,-0.003765961,-0.00654978,0.062909104,-0.044124834,-0.022868944,0.016885033,-0.013346721,0.023376275,0.0056359326,-0.014530495,-0.018576138,-0.00035529467,0.0075514344,-0.035955496,0.04206949,-0.047585092,-0.0116361035,0.013762993,0.023688478,-0.04925018,0.017925713,-0.07685422,-0.011135276,-0.012806868,0.032365147,-0.01153854,0.012110914,0.015480115,0.053959258,0.0070310943,-0.036137614,-0.023051063,0.00097319845,-0.016950076,0.025626745,-0.007863638,-0.032391164,0.0049562384,-0.007258743,-0.022348603,-0.028852854,-0.020371312,0.011512523,0.04285,0.002000057,0.03676202,-0.0025090144,0.007219718,-0.012208478,0.009314086,0.014790664,0.010250698,-0.019226564,-0.007948194,-0.035357103,0.017652534,0.019187538,-0.045139495,-0.032235064,-0.040898725,0.010771038,-0.027604038,-0.02125589,-0.016767956,0.00049472955,0.00042277627,0.020436354,-0.06759217,0.00055286125,0.021346949,-0.026693443,-0.027473953,0.034030236,-0.0068814964,0.029763449,0.04113288,-0.10016545,-0.03972796,-0.005408284,0.02246568,0.012280025,0.012611741,0.035201002,-0.023129113,-0.00086994347,-0.019356648,-0.022244535,-0.0063058706,0.031246418,0.018914359,-0.03114235,0.028150395,-0.037022192,-0.049510352,-0.03436846,-0.06264894,0.0007955511,0.04995264,-0.035096932,-0.00024147029,-0.050759166,0.010686483,-0.03834906,-0.021490043,0.029269125,0.020670507,-0.009164489,0.010998687,-0.03946779,-0.01994203,0.013398755,0.028124377,-0.0047481027,-0.044254918,0.03957186,0.05055103,-0.041757286,-0.010055571,0.011499514,-0.04165322,-0.037074227,-0.054791804,-0.004367604,-0.046388313,-0.05671706,-0.019447709,0.02168517,-0.052892562,0.017678551,0.021529067,-0.009997033,0.00014299188,-0.0056034117,-0.0053139725,-0.03356193,-0.0077400575,-0.060411476,0.011759684,-0.04381263,-0.025574712,0.013476807,-0.010367774,-0.002001683,-0.008182347,0.02323318,0.042980086,-0.022517715,-0.02471615,0.0013228019,-0.03285947,-0.014608546,-0.011174302,-0.018953385,-0.027395902,0.020306269,0.02411776,0.019109488,-0.063949786,-0.05333485,-0.013645917,-0.018172875,-0.015480115,0.017561475,-0.045659836,-0.047845263,0.004491185,0.03920762,0.018680206,0.0073693153,0.020956693,-0.064834364,0.03564329,-0.022075426,-0.027734123,-0.045243565,0.02177623,0.0076034684,0.028826836,-0.016117532,-0.009275061,-0.03478473,-0.037594564,-0.0011284874,0.043344323,-0.0134898145,0.03218303,-0.015376047,0.01977292,0.007122154,-0.063741654,-0.007232726,-0.051279508,0.000014621859,-0.034914814,0.0162216,-0.08299423,-0.0072782557,0.12748331,-0.026602384,-0.012221486,0.065979116,0.047897298,-0.0050603068,-0.013606891,-0.0017220002,-0.034212355,-0.024260852,0.0032944027,-0.044358987,0.039363723,-0.035305068,0.04631026,-0.013158098,-0.006390426,-0.012436126,0.027864208,-0.022530722,0.011434472,0.017587492,0.016533803,0.042980086,0.0072652474,0.016976092,0.026667425,0.021242881,0.038999483,0.015519141,0.050264847,-0.0057887826,0.017028127,-0.03486278,0.010016545,0.02802031,0.012416613,-0.010699491,0.000045199457,-0.02653734,-0.006579049,0.00867667,-0.04675255,0.0009423032,0.03736041,0.021281905,-0.01691105,-0.016898042,0.0026927595,-0.049822558,0.03155862,0.005278199,-0.008514063,0.021425,0.019876989,0.01812084,-0.008780737,0.013671934,-0.0070115817,0.0024504762,0.015245962,-0.008234381,-0.016013464,0.024143776,-0.04815747,-0.043656528,-0.008247389,0.02913904,-0.018719232,-0.024846235,-0.0048261536,-0.027864208,-0.0009463684,0.05697723,0.047402974,-0.036579903,0.0001944161,0.014465452,-0.008449021,-0.008052262,0.011063729,-0.036423802,0.039415754,0.0116361035,-0.0074278535,-0.026693443,0.024481997,-0.02176322,0.018315969,0.010263707,-0.012865406,-0.010504364,-0.037100244,0.009125463,-0.00030143134,0.03957186,-0.02316814,-0.027552003,0.043292288,0.0024537283,0.019720886,-0.028228445,-0.04641433,-0.057393502,0.038921434,-0.061972495,0.07305574,0.060151305,0.061139952,0.0006796941,0.022491697,0.053803157,0.047767214,0.0034797739,-0.026173102,0.017821645,-0.011070234,0.06332538,0.040872708,-0.026745476,-0.0026634904,-0.060827747,-0.013632908,-0.0069400347,0.0026033262,-0.007870142,-0.030283788,-0.01492075,-0.008995377,0.011824727,-0.036319733,-0.0806527,0.05796588,0.0059774057,-0.008507559,-0.025444627,0.032781422,0.007492896,-0.024586065,-0.009131967,0.008097791,0.010543389,0.05812198,0.02168517,-0.0480534,-0.0059774057,0.041861355,-0.029867517,0.002678125,-0.011421463,-0.0132231405,0.03096023,-0.050889254,0.015844353,-0.018550122,0.012689792,0.0072522387,0.04282398,0.00624408,0.012741826,0.0022293318,-0.028592683,-0.020709533,-0.015883379,-0.045477718,-0.040976774,-0.027812174,0.023272207,0.056248754,-0.04292805,-0.04745501,0.028124377,0.02072254,0.039649907,0.008884805,0.06639539,0.02237462,0.011167797,0.0013667055,0.017301306,0.013476807,0.020930678,-0.002369173,0.017743595,-0.054843836,0.011473497,0.00038659637,0.03538312,0.058954522,0.033900153,0.043838646,0.028956922,-0.0141142225,-0.021568093,0.008247389,0.019070461,0.025652763,0.012728818,-0.041601185,-0.033613965,0.019824954,-0.05195595,0.013554857,-0.0070115817,0.030205738,-0.018094825,0.070610136,-0.045998055,-0.10110206,-0.035877444,0.03200091,-0.0096197855,0.034836765,-0.048781876,0.04761111,0.014868716,-0.018667199,0.003330176,-0.021568093,0.0065920576,0.013815028,0.03337981,-0.026003992,0.018107831,-0.048937976,-0.026615392,-0.008702687,0.013067039,-0.02342831,0.0070571112,0.006322131,0.010647457,-0.031090315,-0.043838646,0.0117076505,0.014842698,0.04196542,0.003094397,-0.0030017113,0.022075426,0.010042562,0.04110686,-0.014712614,-0.012325554,-0.04573789,-0.021177838,0.013502823,-0.03816694,0.0050082724,0.0070571112,0.017405374,-0.014998801,-0.012201973,-0.078779474,0.07763473,-0.02679751,0.015818337,0.019291606,0.024924286,0.053699087,-0.0071611796,-0.033093624,-0.016833,0.06410589,0.0030895188,-0.036840074,-0.009288069,0.028774802,0.003453757,0.019629827,0.022621782,-0.014452443,0.03210498,-0.02099572,0.027473953,-0.023545386,0.04285,-0.032937523,-0.017717578,0.007408341,-0.054843836,0.023896614,-0.0090148905,0.020267243,0.009483197,0.007206709,0.01179871,0.03442049,-0.019577794,-0.020241227,-0.021672161,-0.030023618,-0.008396987,-0.014582529,-0.0325993,-0.018263934,-0.01718423,-0.029295143,-0.006624579,0.020436354,0.044723224,0.011070234,-0.014933758,-0.0105303805,0.01421829,-0.0072262217,-0.015050835,-0.0048098927,0.0013089803,-0.00066709216,0.039910078,0.004969247,-0.0050830715,-0.0028992696,-0.074668795,-0.013541848,0.009463684,-0.04631026,0.008923831,0.0011097877,-0.0027708106,-0.03928567,-0.0017886688,0.018628173,0.005408284,0.04321424,-0.012468647,-0.0077270493,0.0029838248,-0.032937523,0.00083498313,-0.00789616,0.0001732773,0.006367661,-0.015818337,-0.026134077,0.00026342212,-0.017054144,0.020111142,-0.028514633,0.020488387,-0.01743139,-0.037776686,-0.036007527,0.034576595,0.0084165,-0.036137614,0.017808637,0.015649226,-0.009203514,-0.014374393,-0.02176322,-0.00036749014,0.012377588,-0.016663888,0.013880069,-0.014244308,-0.051747814,-0.012969474,-0.015128885,0.021828264,0.01718423,-0.003587094,-0.0115645565,-0.02497632,-0.037854735,-0.021867288,0.008364466,0.01934364,-0.022712842,0.016325668,0.052086037,-0.0050245333,0.024924286,-0.0018195639,0.014972784,-0.009710846,0.006344896,0.025223482,-0.0029610598,-0.03442049,-0.0006321318,-0.0026586123,0.04519153,-0.0019122495,-0.048755858,-0.04519153,0.01890135,-0.008071775,-0.00053212896,-0.018953385,-0.027265817,-0.031688705,-0.0050407937,0.03775067,-0.00047928194,0.016780965,0.021112796,-0.048703823,0.024078734,-0.003821247,0.0010358018,0.0047741197,0.031064298,0.007902664,0.011122268,0.054271463,0.0020114393,0.006653848,0.01227352,-0.0010244194,-0.04069059,0.0036391278,-0.035513207,0.010862098,-0.022986019,-0.008787242,0.011115763,0.019746903,-0.025236491,0.044801276,0.0041757287,0.009379129,0.03410829,0.0032358645,-0.017886687,0.01201335,0.009294573,-0.03582541,-0.008286415,0.007512409,-0.02749997,-0.028124377,-0.024390938,-0.007824613,0.02906099,0.0034765217,-0.0039058023,-0.0063026184,0.004803389,-0.013411764,0.028956922,-0.02254373,0.00072197174,-0.031168366,0.015519141,0.012969474,0.021451017,-0.028462598,0.017639527,0.016611855,-0.024481997,0.029815482,-0.03512295,-0.011076738,-0.009535231,0.00019624543,-0.002627717,0.033327777,-0.011427968,-0.03618965,-0.019824954,-0.0037887257,-0.030648027,0.00993199,-0.019096479,0.007980715,0.017028127,-0.018094825,-0.029425228,-0.010777542,-0.020059107,0.033067606,-0.0025382836,0.040118214,0.0049822554,0.006637587,-0.046622466,-0.004806641,-0.017197236,-0.014972784,-0.034914814,0.020657498,-0.020540422,0.01934364,-0.0156102,0.04441102,-0.0054343008,-0.04987459,0.010302732,0.008331944,-0.0027952015,-0.03616363,-0.023142122,-0.01577931,-0.020267243,0.043838646,-0.020852625,-0.004650539,0.029243108,-0.020059107,0.0036618928,-0.012208478,0.023467334,-0.0037529522,0.029581329,-0.04100279,0.038244992,-0.035955496,0.024742167,0.0103157405,0.013723968,-0.020397328,0.026875561,-0.023441317,-0.008715695,-0.016416727,-0.016325668,-0.022829918,-0.0056619495,0.04027432,-0.020228218,-0.007486392,0.0090864375,-0.000651238,0.0062310714,-0.05023883,0.009574256,-0.03200091,0.010159639,-0.04961442,0.022608774,-0.0050375415,-0.024599073,-0.012787356,-0.036215663,-0.04084669,0.015909396,0.014985792,0.024729159,-0.007746562,0.02498933,-0.0056652017,0.00540178,-0.02731785,0.006364409,0.007596964,-0.01605249,-0.0063806693,-0.0065075024,0.0061952984,0.002471615,0.041861355,0.010920636,-0.022738859,0.012240998,-0.015128885,-0.024442973,-0.027604038,0.02359742,-0.021112796,-0.025977975,-0.013671934,-0.010946653,-0.023701487,-0.004546471,-0.01326867,-0.028228445,0.0054505616,-0.014790664,0.0099059725,-0.027291834,-0.005834312,0.032235064,-0.011727163,-0.088717975,0.015180919,0.04381263,-0.044567123,-0.025288524,0.009528726,-0.009275061,0.038895417,-0.007648998,-0.045009412,-0.0006300992,-0.035148967,0.009327095,-0.052788492,0.025600728,-0.00244885,0.03678804,-0.039233636,-0.005743253,-0.026160095,0.0045789923,-0.028306497,-0.058174014,0.028774802,0.009236035,0.032391164,0.0030114679,0.03215701,0.03025777,0.009092942,0.016976092,0.031636674,-0.019538768,0.0040423917,-0.02072254,0.028592683,0.023012036,0.009645803,-0.015467106,-0.040352367,0.05094129,-0.017561475,-0.008566097,-0.039597876,0.025574712,-0.024846235,-0.011414959,0.017808637,-0.004722086,0.020852625,0.014634563,0.011642608,-0.009164489,0.0043058135,0.01440041,0.006868488,0.0008764477,0.023844581,0.0035968502,-0.025340559,-0.008143322,0.0064782333,0.019629827,-0.03556524,0.027421918,-0.026524331,-0.026901579,-0.009866947,-0.003691162,0.013658925,-0.011844239,-0.0005008273,0.013437781,0.019889997,0.010484851,0.025717804,0.0072132135,0.023896614,0.0075254175,-0.03436846,0.009105951,0.0005089576,-0.0003233832,0.017665543,0.036007527,0.0038830373,-0.014699605,-0.011629599,0.013802019,0.011174302,0.03486278,-0.030023618,-0.01769156,0.008227876,-0.0043578474,-0.0110116955,-0.03668397,-0.0031626916,0.03944177,-0.012169452,-0.002991955,-0.017106177,-0.030856162,-0.027994292,-0.018459061,-0.020397328,0.0051090885,0.015467106,-0.023688478,-0.0017057396,0.00016575675,-0.02420882,-0.039493807,-0.010842585,-0.0221925,0.012865406,0.013997146,0.046102125,0.020696525,-0.008546584,-0.0032537512,0.0013577623,0.010764534,-0.009912477,0.0052196607,0.044853307,-0.031532604,-0.00006240015,0.02133394,0.009001882,0.027942259,-0.0022488444,0.0043741083,0.011291378,-0.0061692814,0.0052586864,0.016663888,0.030335823,-0.01449147,0.03189684,0.0072782557,-0.01305403,-0.015402065,-0.022062417,-0.032677352,0.002082986,0.0032114736,0.036553886,0.011024704,-0.036397785,0.02749997,0.007245735,0.018550122,0.010114109,0.010491355,0.06166029,0.023207165,-0.031350486,0.0043285782,0.027708106,0.010523877,0.029997602,0.038947448,-0.0041984934,-0.030205738,-0.015584183,0.013437781,-0.021359958,-0.015675243,0.011343412,-0.005278199,-0.01144748,0.00015345965,0.0027919493,0.01218246,-0.0049302215,0.039051518,0.005743253,-0.021047754,-0.0036846576,0.008650653,0.04232966,-0.002964312,-0.015389056,0.021451017,-0.0155061325,0.028254462,-0.010933644,-0.021841273,-0.0011024704,-0.00019492424,0.015428081,0.013249158,0.0053139725,-0.012371084,-0.0046472866,-0.0077660745,-0.008520568,-0.028046327,-0.000054473094,0.01404918,0.0015715894,0.034030236,-0.008423004,0.03834906,0.010959662,-0.028228445,0.02393564,-0.005522108,0.048781876,-0.020839617,0.025288524,-0.008344953,0.023636445,-0.011252353,0.007844126,-0.018615164,-0.018628173,-0.0009081559,0.0049887598,-0.032625318,0.0053237285,-0.011792205,0.020501396,-0.027864208,0.020618472,0.02177623,-0.037594564,-0.053751122,-0.0113694295,0.016793974,-0.009958007,-0.03920762,0.018784275,0.043084152,-0.031688705,0.020787584,0.020085124,0.0040098703,0.027708106,0.006816454,-0.0006032692,-0.05838215,-0.028176412,-0.048365604,-0.009899469,0.021672161,0.013093055,0.016195582,-0.006390426,-0.008136817,0.013463798,0.018094825,0.005278199,0.028046327,-0.052346203,-0.020371312,0.007258743,0.016208591,-0.010692988,0.00958076,-0.0051611224,-0.014959775,-0.023545386,0.005405032,-0.009372625,-0.009203514,0.011141781,0.035409138,-0.016416727,-0.010914132,0.028644718,0.009853939,-0.00967182,-0.01648177,0.022127459,-0.0024927538,-0.027786156,-0.011506018,0.0077920915,-0.0156102,-0.019018427,-0.04503543,-0.0023008785,0.0017642778,-0.009444172,0.005740001,-0.0077270493,0.024742167,0.016182574,0.0054733264,0.035409138,-0.005466822,-0.008683174,0.011928795,-0.015493124,-0.046388313,-0.015128885,0.019096479,0.00038517357,-0.016520794,0.000050331717,-0.011480002,-0.004992012,0.010166143,0.022855936,0.0325993,0.013528841,0.029034972,-0.01916152,-0.032885488,0.022127459,0.021229872,-0.019811945,-0.016507788,0.002889513,0.0070506074,-0.022309577,0.0049757515,-0.0062278197,-0.021086778,-0.0012829633,-0.025821872,0.072015055,-0.0052294172,0.00064310775,0.03634575,-0.028384548,-0.012579219,0.022270553,0.016390711,-0.034914814,-0.018172875,-0.0075384257,-0.017275289,-0.011037713,-0.05135756,0.001065884,0.0041041817,0.011408455,-0.013867062,-0.016117532,-0.0117076505,0.023129113,0.025002338,-0.00893684,0.045269582,-0.038218975,0.0038830373,0.008045757,0.07518913,0.0026716208,-0.0021431504,0.023311233,0.028592683,-0.009997033,0.008000228,0.0494323,-0.027916241,-0.032078963,-0.022309577,0.005222913,0.010582415,-0.023493351,-0.03668397,0.026641408,-0.0050310376,0.017665543,0.021112796,-0.023259198,-0.014686597,0.03566931,0.02195835,0.026745476,-0.024429964,-0.030569976,0.03210498,-0.001899241,-0.0051936437,0.021008728,0.018211901,0.037516516,-0.0019935525,0.02021521,-0.03062201,0.00094149023,0.012442631,0.0071156495,0.0076750154,-0.02802031,0.0070636156,-0.016494779,0.01614355,0.0009805157,0.03337981,-0.00420825,-0.046622466,-0.01456952,-0.041497115,-0.029034972,-0.029815482,0.01847207,0.03608558,-0.014816682,0.018784275,0.01977292,0.0070636156,-0.024508014,-0.0099775195,-0.016416727,-0.011961316,0.06462623,-0.022244535,0.013125577,0.01080356,0.010634449,0.016208591,-0.009073429,-0.0097954,0.033535913,0.0134898145,0.0064944937,0.031610657,0.00066546607,-0.002497632,0.032469217,-0.0070766243,-0.013281679,0.014179265,0.012787356,0.01874525,-0.04017025,0.028306497,0.012767843,0.010159639,0.059006557,0.021789238,-0.024065726,-0.013541848,-0.01577931,0.002834227,-0.0070506074,0.036397785,-0.007694528,0.031688705,-0.005281451,-0.011414959,-0.008884805,-0.010224681,-0.033431847,-0.0033822102,-0.005700975,0.05604062,-0.0008268528,-0.02003309,0.015024818,-0.013197123,0.000026169444,0.0073888283,0.008175842,0.014946767,-0.021372966,0.030752094,-0.021984365,-0.034628626,-0.017236263,-0.011512523,-0.024390938,-0.025808865,-0.027552003,-0.00032927765,0.060931817,-0.015154903,0.018211901,-0.0017837906,-0.013606891,0.037256345,0.0029090259,0.02809836,0.0266284,0.026485307,0.039858043,0.013171107,0.012995492,-0.012943458,0.013060534,-0.04076864,-0.018029781,0.011128772,0.009613282,-0.008000228,0.024768185,0.034290407,0.008956352,-0.0023025046,0.021008728,0.0032895245,0.031246418,0.029295143,-0.0075644427,-0.0027952015,-0.0139190955,-0.006344896,-0.01153854,0.03215701,-0.0026716208,0.011655617,0.017080162,-0.013034517,-0.009021395,-0.003974097,-0.013164602,-0.0071416665,-0.03371803,0.032469217,0.015987447,0.000044843757,-0.004474924,-0.0024895018,0.0032716377,-0.0026358473,-0.0021415243,-0.018368002,-0.00072847604,0.020267243,-0.026472298,-0.011148285,0.025184456,-0.025392592,-0.004751355,-0.04173127,0.019850971,0.011811718,-0.007954698,-0.006894505,-0.010055571,0.0009309208,-0.021893306,0.0060164314,0.0069530434,-0.0024260853,0.0045887483,0.015883379,-0.017886687,-0.0024943799,-0.0007175001,0.035253037,-0.0006187168,0.015389056,0.007707536,-0.033327777,0.01179871,-0.046284243,-0.0037106746,-0.024403946,-0.012780852,-0.023467334,-0.001951275,0.012052376,-0.0062538367,0.0060717175,0.0075904597,0.029191075,0.0013707707,0.038244992,0.02038432,0.00101385,0.029087007,0.0060196836,0.030908197,-0.008383978,0.0060196836,0.015271979,-0.05838215,-0.011245849,-0.0010788925,-0.012618246,0.0013187367,0.019200547,0.0053692586,0.01873224,0.005522108,-0.026979629,0.026589375,0.012592228,0.0062603406,-0.022881951,-0.0059774057,-0.006087978,-0.004517202,0.005548125,-0.009639299,-0.028306497,0.03215701,-0.01248816,0.022660807,0.0005780652,-0.008566097,-0.009853939,0.0026358473,0.03522702,0.005200148,0.006039196,-0.011005191,-0.0039643403,0.003772465,0.034472525,-0.0023041307,-0.0049724993,0.009444172,0.039649907,-0.009749871,-0.011304387,-0.013281679,0.026355222,-0.009958007,-0.0023203911,0.022452671,-0.008045757,0.040924743,-0.027630055,0.011180806,-0.07368015,0.028696751,0.011304387,-0.023051063,0.010140126,-0.057341468,0.004494437,-0.026953613,-0.00867667,0.002110629,0.026979629,0.006422947,-0.032469217,0.0036879098,-0.014959775,-0.03337981,0.020150166,0.015284988,-0.004478176,0.013073543,-0.018146858,0.0031269183,-0.0071611796,0.019955039,-0.016846009,-0.043578476,0.003385462,0.029555313,-0.0076750154,-0.012097905,0.029867517,-0.013411764,0.004735094,0.036657955,-0.0012878415,0.018992411,-0.041523132,0.024755176,0.00483591,-0.051123407,-0.011545044,0.010042562,-0.0059936666,0.025093397,0.019473724,0.0024130768,0.018589146,0.007928681,0.018081816,0.039779995,-0.0102441935,-0.009047412,0.03736041,0.001430935,0.0005796913,0.008813259,0.017925713,-0.00540178,0.044853307,0.005613168,0.0024602327,0.0013219889,-0.009340103,-0.0058895983,-0.01900542,-0.024703141,0.009405145,-0.005743253,-0.029425228,-0.010914132,-0.03392617,-0.0013675186,0.04256381,0.0083189355,0.028046327,-0.0026488558,0.011668624,-0.008917327,0.011031209,-0.012709305,0.0030553716,0.010901123,-0.022010382,0.009853939,0.030049635,-0.00045489098,0.03634575,-0.009489701,-0.03775067,-0.015245962,0.02638124,-0.015102869,-0.018784275,0.0011114137,-0.018758258,-0.02072254,0.0121889645,0.02765607,-0.005496091,0.020280251,0.016585838,-0.029711414,0.0012130426,-0.024169793,-0.031636674,-0.031376503,0.009769384,-0.060411476,0.027109714,-0.004751355,-0.0064099384,-0.035305068,0.024599073,-0.0125271855,-0.010595423,0.004107434,0.014322359]},{"id":"guide-reactions-3","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Reaction Roles Example\nSee examples/reaction-roles-bot.js for a full bot that assigns roles when users react to a message. Uses (reaction, user), Guild.fetchMember(), member.roles.add() (Discord.js parity), and guild.createRole() if you need to create roles programmatically. See the Roles guide for role CRUD.\n\n```javascript\n// Simplified reaction-roles logic\nclient.on(Events.MessageReactionAdd, async (reaction, user) => {\n if (!reaction.guildId || reaction.messageId !== rolesMessageId) return;\n const roleId = ROLE_EMOJI_MAP[reaction.emoji.name];\n if (!roleId) return;\n const guild = client.guilds.get(reaction.guildId);\n const member = await guild?.fetchMember(user.id);\n if (member && !member.roles.cache.has(roleId)) await member.roles.add(roleId);\n});\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.00028723158,0.008030262,-0.0115014855,0.036154512,-0.0119415,-0.02439635,-0.014483806,0.026914211,-0.0110003585,0.035567828,0.023051862,-0.035787832,0.035861168,-0.020912904,0.018101702,0.026009737,-0.026229743,0.016854994,-0.03226772,0.055295136,0.019433966,0.020656228,0.008763619,0.050406087,-0.022587402,-0.006893558,0.0043879207,0.05896192,-0.0372301,-0.045639265,0.046739303,-0.012369292,0.01030978,-0.010682571,-0.013872675,-0.02229406,0.012589299,0.03282996,-0.014691589,0.056615178,-0.022819633,-0.016427202,0.0064902115,0.00085023604,-0.06199313,0.026229743,-0.040603545,0.0014147683,-0.008898067,0.031216573,-0.023760775,0.024274124,0.017319454,0.0883451,-0.0026538365,-0.013395992,-0.045443702,0.0012299012,-0.014239353,0.041630246,0.0012810834,-0.08003372,0.01417824,0.010847576,-0.0064841,-0.008574168,-0.06913114,-0.00806693,0.01543717,0.033318862,0.04473479,-0.017637242,0.002853982,-0.0046293177,0.006086865,-0.016158305,0.030556552,0.005066276,0.00039016898,-0.043341413,0.0023024362,0.013029314,-0.046201505,-0.038672373,-0.0016668598,-0.016317198,-0.025789728,-0.045492593,-0.02121847,-0.020705119,0.016427202,-0.028332034,-0.10315891,-0.0026324468,0.015962742,-0.02948096,-0.00077308074,0.042412493,0.00039265168,0.06086865,0.051286116,-0.05901081,-0.05377953,-0.009307525,0.027183108,0.011434262,-0.021768488,0.049037155,-0.034834467,-0.0028738435,-0.049819402,0.014043791,0.02108402,0.0026614757,0.005573515,-0.0290165,0.045077026,-0.0012512908,-0.020631783,-0.05485512,-0.06438877,-0.0054176766,0.043781426,-0.077393636,-0.013139317,-0.029407624,-0.0020732621,-0.06077087,0.0080424845,0.043830317,-0.02346743,-0.006465766,0.014398247,-0.025545277,-0.041581355,0.0067652203,0.026107518,-0.042608056,-0.01628053,0.015987188,0.017099446,0.013273766,-0.02532527,0.044881463,-0.04710598,-0.007327461,-0.052606158,-0.006380208,-0.060624197,-0.008977515,-0.050161634,-0.015962742,-0.031607695,-0.003535393,-0.0073946854,-0.027720904,-0.03036099,0.0068385564,-0.004094578,-0.034614462,-0.0071807895,-0.067273304,-0.00015001357,-0.04324363,-0.022110721,-0.03534782,-0.022110721,0.012167619,-0.03045877,0.040750217,0.032805514,-0.014288244,-0.019067287,0.019983985,-0.022159612,0.0020686786,-0.03806124,-0.003669842,0.015388279,0.010700904,0.013921564,-0.017270563,-0.06644216,-0.05764188,-0.020399554,-0.022318505,-0.033294417,-0.0144960275,-0.0071624555,-0.0003437612,0.025178598,0.0313388,0.01002866,0.015131604,0.04859714,-0.039723516,0.0508461,0.008470276,-0.025056371,-0.033318862,0.0076085813,0.0049409945,0.059744168,-0.022196278,0.0005083846,-0.029627632,-0.037841234,-0.033832215,0.031412136,-0.004335975,0.027109772,-0.06761554,0.022232946,0.012589299,-0.061455335,0.00070623826,-0.09567867,0.012485407,-0.029456515,0.031412136,-0.09176744,0.015583841,0.06345984,-0.046201505,-0.008708617,0.060477525,0.045737047,-0.01800392,0.0074313534,0.0148382615,-0.016757213,-0.0033367753,-0.013408215,-0.056517396,0.009881989,0.015962742,0.04226582,0.03143658,0.00914252,-0.007150233,0.004073188,-0.0104808975,0.015376057,-0.0038226247,0.028478706,0.018040588,0.020436222,0.025080817,0.025520831,0.019531747,0.058277454,0.022355173,0.05069943,-0.005200725,-0.0065941038,-0.03703454,0.009912545,0.024225233,0.0057293535,0.022599624,-0.026009737,0.0049134935,-0.001018297,0.007749141,-0.04920827,-0.001470534,0.014520473,0.0148382615,0.0028998167,-0.02742756,0.009545866,-0.01767391,0.040701326,-0.03573894,-0.026523087,0.020045098,0.034761135,0.01967842,-0.013347101,0.009778096,-0.0050296085,0.0011099668,0.03715677,-0.0051579457,-0.017466124,0.027867574,-0.017295009,-0.05177502,-0.006254926,0.027720904,-0.03036099,0.002985375,-0.022746297,-0.037376773,0.012130951,0.0069791162,0.022367395,-0.02052178,0.034614462,0.036863424,-0.014936042,0.027525341,0.0062090913,-0.0042229155,0.029578742,-0.016549429,-0.022355173,-0.037841234,0.013493773,-0.030556552,0.017881693,0.035983395,0.012882642,0.018162815,-0.032243274,-0.0024964702,0.025789728,0.024408573,0.021560702,0.03260995,0.03221883,-0.025496386,0.02494637,-0.025911955,-0.03036099,-0.053388406,0.010120329,-0.026571978,0.04104356,0.03395444,0.07250459,0.0026813373,0.014728257,0.052361708,0.04835269,-0.0067896657,0.002259657,0.044539228,0.032854404,0.039576843,0.01231429,-0.013628222,-0.015143827,-0.053486187,-0.01949508,0.01166038,0.010823131,0.004986829,-0.006911892,0.00060310995,-0.012381515,0.028283143,-0.04155691,-0.05485512,0.0011099668,-0.0022795186,-0.014214908,0.0035109478,0.030140983,0.024799697,-0.060233075,-0.015962742,0.0008303743,0.018859504,0.04001686,0.053828422,-0.0012535825,-0.033196636,0.040750217,-0.02686532,-0.015094936,0.025716394,-0.0693756,0.0068507786,-0.037939016,-0.003899016,-0.012082061,-0.0011328842,-0.03297663,0.041434683,-0.026645312,0.023174088,0.019226182,-0.036863424,-0.011030915,-0.02789202,-0.043292522,-0.025618613,-0.042608056,0.015143827,0.03605673,-0.016708322,-0.04155691,0.02747645,0.0021924325,0.0016179694,0.046690412,0.064731,0.0292854,-0.0059035257,0.033098858,0.015742736,0.016940553,-0.0030144039,0.0017264452,-0.00361484,-0.032952186,0.015033823,-0.013347101,0.023296315,0.049183823,0.024359683,0.035812277,0.006618549,-0.0019082567,-0.020998461,0.03811013,0.0062946496,0.0007406144,0.02532527,-0.045028135,-0.036447853,0.005503235,-0.0621398,0.033978887,-0.005717131,-0.0009770457,-0.013738225,0.041483574,-0.034076665,-0.074704655,0.008653616,0.015046046,-0.007113565,0.02774535,-0.02640086,0.027500896,-0.009551978,0.001497271,0.009582534,0.0040456876,-0.006123533,-0.0046720966,0.033978887,-0.019531747,0.011434262,-0.022184057,-0.06908225,0.026229743,0.013310433,-0.012821529,-0.0020258992,0.029872084,0.037572335,-0.027794238,-0.021255137,0.027794238,0.032634396,0.003950962,0.0018288096,0.0008639865,0.036447853,-0.00029525268,0.011458707,-0.019666197,0.0025377215,-0.03375888,-0.0011840664,-0.00081891555,-0.026987545,-0.004714876,0.01861505,0.04627484,-0.011324258,-0.016084969,-0.030972121,0.023638548,-0.033612207,-0.008641393,0.047448214,0.030703222,0.013347101,-0.026449751,-0.025716394,0.004412366,0.029089836,-0.011128696,-0.025447495,0.004882937,0.044881463,0.0037584559,0.012564854,0.03138769,-0.011923166,0.031241018,-0.027843129,0.06531768,-0.026840875,-0.00035120937,0.0044887573,-0.01445936,-0.03226772,-0.067957774,0.02093735,-0.027036436,0.04375698,0.030801004,0.008586391,0.009111963,0.07001117,-0.023699662,-0.025203044,0.010890355,-0.028234253,0.0019342297,-0.023296315,-0.053241733,-0.011862054,-0.00793248,-0.040970225,0.006422987,0.029627632,0.025985291,0.0037095654,0.009802542,-0.0023604936,0.023357429,-0.02728089,-0.017466124,0.0007696431,0.018969508,0.0037676229,0.05783744,0.007736919,-0.026840875,-0.013787116,-0.046005942,0.017466124,0.026620867,-0.06785999,0.002328409,0.025105262,0.00015736624,-0.03036099,-0.014764925,0.01161149,-0.0044245888,0.031778812,-0.0023177145,0.0021649317,0.02061956,-0.034443345,0.0012337208,-0.019507302,-0.035567828,-0.024665248,-0.0071807895,-0.029358735,0.015596064,-0.001973953,0.023919668,-0.0069363373,-0.004812657,-0.013029314,-0.04649485,-0.0033948328,0.045590375,0.032414388,-0.021181801,0.0046415403,-0.0056468504,0.013383769,0.013139317,-0.012699302,0.017698355,0.0066918847,-0.0045162584,0.010951468,-0.014080459,-0.027256444,-0.0025789728,-0.05065054,0.028967611,-0.008183044,-0.015156049,-0.01879839,-0.030336544,-0.007798032,-0.026694203,0.016573874,0.023614103,0.017661687,0.021585148,0.027696459,-0.005023497,0.009105852,-0.025056371,0.023724107,-0.026180854,0.006459655,0.005931027,-0.011354814,-0.05773966,0.0057599097,-0.030752113,-0.01553495,0.021401808,-0.02494637,-0.011030915,0.019653974,0.02052178,-0.0073824627,-0.022721851,-0.04253472,-0.022636293,-0.01595052,0.016891662,0.002507165,0.015730513,0.007920258,-0.011898721,0.026034182,0.0067407754,-0.023015194,0.007156344,0.021621816,0.023112975,0.020900682,0.00035369207,-0.019739533,-0.024127454,-0.0058760247,-0.011574822,-0.037572335,-0.0101753315,-0.05480623,-0.003251217,0.005625461,0.015119381,0.026131963,0.013836007,-0.02401745,0.016598318,-0.02681643,0.021792931,0.044514783,0.0052404488,-0.021511812,0.003889849,-0.024041895,-0.029798748,-0.0069974503,-0.008781953,-0.04346364,0.00027061647,-0.03539671,-0.022355173,0.015486061,-0.0034437233,-0.012485407,-0.040799107,-0.0228563,-0.006416876,0.011049249,0.011214254,0.011122584,-0.026645312,0.015730513,0.0050968328,0.021646261,-0.03842792,0.025545277,0.020277327,0.0031412134,0.033245526,-0.016769435,-0.017710578,-0.022587402,-0.0061693676,0.010474786,0.033416644,-0.024787474,-0.030067647,0.01445936,0.04033465,-0.014862707,0.013738225,-0.018248372,0.009924768,-0.03405222,-0.016549429,-0.008268603,-0.01394601,-0.017295009,0.011116473,0.011085917,0.01086591,0.006581881,0.0024506354,-0.038501255,-0.003330664,0.014337134,0.01291931,-0.027672013,0.017747246,-0.054121763,0.017356122,0.028112028,0.011703159,-0.017527238,-0.037083432,0.012149285,-0.019751756,0.009649759,-0.032732178,0.010872021,-0.009411418,-0.02280741,0.045590375,-0.009649759,-0.0016225529,0.049697176,-0.01674499,-0.0054787896,-0.036154512,0.012687081,-0.0035078921,0.0344189,-0.03246328,0.031045455,-0.0061388114,0.016084969,0.031485472,0.025178598,-0.015131604,0.017845025,-0.031656586,0.029920975,-0.006893558,-0.015767181,-0.023455208,-0.013078204,0.0134571055,-0.019433966,-0.021866268,-0.006349651,-0.0063313176,0.017979475,-0.019482857,0.023711884,-0.0310699,0.008971403,-0.023308538,-0.009729206,-0.0068813353,-0.025691949,-0.009527532,-0.011623712,-0.037401218,0.047961563,0.017576128,0.028307589,-0.009600868,0.03605673,-0.0014033096,0.011458707,0.012797084,0.0040792995,-0.0040029082,-0.022330727,0.009784208,0.007889702,0.0058088005,0.0015033823,0.028160919,0.0058088005,-0.01343266,0.010144775,0.015644955,-0.02891872,-0.025349716,0.012338735,-0.015376057,0.0058851917,-0.016072746,0.003712621,-0.024139676,-0.0077063623,0.00050189137,-0.029872084,-0.02020399,-0.015681623,0.008922513,0.006319095,-0.033929996,0.015706068,0.0066246605,-0.09118075,-0.014789371,0.02891872,-0.03297663,-0.019641751,0.018480603,0.0075535793,0.04683708,-0.0010748267,-0.02701199,0.019751756,-0.058521908,0.0033367753,-0.033294417,0.052263927,-0.0005179336,-0.007406908,-0.0095642,-0.01949508,-0.020228436,-0.014936042,-0.023797441,-0.03172992,-0.03419889,0.007700251,0.014190462,0.019189514,-0.002065623,0.029578742,0.003367332,0.024873033,0.025019703,-0.013505995,-0.0015453976,-0.03857459,0.038012348,0.030312099,0.011929277,0.02294186,-0.02267296,0.023687439,0.0069363373,0.006034919,-0.036741197,0.033709988,-0.017698355,0.004950161,0.027183108,-0.022880746,0.051237226,0.014214908,0.021902936,0.01231429,0.017747246,-0.00487377,0.005805745,-0.030189872,0.049697176,-0.0107131265,-0.04287695,0.037939016,0.0032267717,0.008592502,-0.013078204,0.032634396,-0.032805514,-0.033514425,-0.0123265125,0.004366531,0.028552042,-0.018395044,-0.016072746,-0.006875224,0.031363245,-0.001266569,0.028503152,0.0023116032,0.02886983,-0.01740501,-0.022184057,-0.0021145134,0.00090447394,0.0044001434,0.0014499084,0.027183108,-0.023993004,-0.016940553,0.009570312,0.0056346282,0.023100752,0.02732978,-0.019238405,0.0014697701,0.0028127306,-0.007174678,0.013371547,-0.03815902,-0.013249321,0.05275283,-0.016317198,-0.010609235,-0.017551683,-0.007816366,-0.021181801,-0.0068263337,-0.029652078,0.027183108,-0.0060807536,-0.022575181,-0.017246118,-0.023491876,-0.014716035,-0.0549529,-0.02178071,-0.02737867,0.025691949,0.029676523,0.018089479,0.0385257,-0.0028157863,0.009240301,-0.007901924,-0.009221967,0.027965356,-0.001630192,0.027085327,-0.024249678,0.004357364,0.025496386,0.004901271,0.018859504,-0.026327524,0.021915158,0.022465177,-0.00010780733,-0.011495374,0.030189872,0.020155102,-0.03221883,0.006520768,0.0014606032,0.017295009,-0.012124839,-0.00041938867,-0.028380925,0.027207553,0.026180854,0.032854404,-0.0011168419,-0.018553939,0.017368345,0.016476093,0.046201505,-0.0063313176,-0.011373148,0.04062799,0.0028845384,-0.03221883,0.0020610394,-0.0015110215,-0.00015010906,0.03605673,0.025569722,-0.02234295,-0.024176344,-0.002941068,0.02341854,-0.009301414,-0.012442628,-0.040921334,-0.028258698,-0.018431712,0.010432007,0.02178071,0.012082061,0.0035078921,0.030947676,-0.006459655,-0.01687944,0.038696818,0.012809306,0.021854045,-0.016402757,0.0054879566,0.025496386,-0.021304028,0.013615999,-0.058179673,-0.010688682,0.002294797,0.002667587,0.012002613,0.0013017091,0.02061956,-0.015852738,-0.005209892,0.010566455,-0.028283143,-0.020790678,-0.014593809,0.010248668,-0.031485472,0.011635935,0.000073097,-0.0015041463,0.015058269,-0.005423788,0.03451668,-0.015363834,0.049843848,-0.010364782,0.04920827,-0.0037340105,0.020949572,0.007070786,0.002374244,-0.02845426,-0.045737047,0.0013742809,-0.008470276,-0.024567468,-0.008720839,-0.031314354,0.00044688955,-0.0033092746,0.015241608,-0.006759109,0.010792574,-0.069277816,-0.0035690053,0.012277623,-0.015791625,-0.019250628,0.019299518,0.047937118,-0.02373633,0.032414388,0.008390829,-0.0073763514,0.01828504,0.00096253137,0.0053810086,-0.032903295,-0.03419889,-0.046250395,-0.017197227,0.018309485,0.017270563,0.00040792997,-0.009075296,-0.016720545,0.019177292,0.02457969,-0.020216214,0.033245526,-0.029823193,0.008103597,0.018150592,0.010499231,-0.0068874466,0.0021160413,0.011819274,-0.022000717,-0.0093319705,-0.0050204415,-0.015253831,0.022257391,0.014447138,0.029847639,-0.0018028365,-0.01841949,0.010908688,0.0019189514,0.006630772,-0.0022352117,0.0041343016,-0.018627273,-0.02457969,0.0058760247,-0.0030006533,-0.009325859,-0.021352919,-0.0436592,0.018871726,0.00043122933,-0.01618275,0.009778096,0.0031473248,0.03698565,0.02033844,0.016121637,0.036496744,-0.010291447,-0.015388279,0.024029672,-0.02882094,-0.04742377,-0.026107518,0.032903295,0.01954397,-0.033709988,-0.007211346,-0.02275852,0.0043512527,0.004345142,-0.00210993,0.018847281,-0.023528544,0.026327524,-0.015547173,0.009356416,0.008091375,0.02789202,-0.0050387755,-0.012625967,0.0080241505,-0.0036362296,-0.008513055,-0.012601522,-0.010181443,0.0027714793,0.006416876,-0.015547173,0.06463322,-0.015266053,0.017942807,0.015449393,-0.0010297558,-0.0013872674,-0.0008403052,0.03791457,-0.022575181,-0.012338735,-0.019201737,-0.026718648,-0.020228436,-0.012711525,0.014214908,0.016671654,-0.0037462332,0.012283734,-0.017893916,0.00009591893,0.035983395,0.017600574,-0.0016683877,0.015681623,-0.040212423,0.0061907573,0.009943102,0.06570881,0.015730513,-0.014948265,0.021939604,0.016818326,0.0059829727,0.03661897,0.013701557,-0.0028387036,-0.013603777,-0.022697406,-0.0012108034,0.009307525,-0.009753651,-0.041630246,-0.003553727,-0.016427202,0.03246328,0.027623123,0.0066918847,-0.024995258,0.026596421,0.0031473248,0.028503152,-0.0047118203,-0.021841822,0.03979685,-0.043732535,0.0070157843,0.021047352,0.008427497,0.0066429945,-0.0011970529,-0.0058851917,-0.03265884,0.006123533,0.012100394,0.018248372,0.007822477,-0.03385666,0.008928624,0.01002866,0.013420437,0.0000016829975,0.009454197,-0.0005209892,-0.037376773,-0.026083073,-0.036765642,-0.009955324,-0.05798411,0.036643416,0.050161634,-0.01343266,0.004696542,0.015522728,-0.007107454,0.0040976335,0.023846332,0.015498282,-0.009949213,0.052899502,-0.031974375,0.0053229514,0.0038654038,-0.0039051273,0.01674499,-0.010621457,-0.009509198,0.04067688,0.014948265,-0.00015345118,0.019299518,0.012894864,0.027549786,0.024909701,0.0028830105,-0.013395992,0.00013893683,0.033832215,0.0197762,-0.014581586,0.04072577,-0.010230334,0.0017707521,0.044196997,0.037694562,-0.03529893,-0.0039723516,0.013762671,0.019788422,-0.0061693676,0.0048584915,0.022245169,0.02882094,-0.0037676229,-0.004763766,-0.0036117844,-0.015143827,-0.0126504125,-0.007272459,0.0067835543,0.03806124,0.0016149137,-0.014349356,0.033612207,0.009558089,0.0259364,0.030532107,0.022196278,0.03040988,-0.017967252,0.022245169,-0.012088172,-0.042950287,-0.02891872,0.004546815,-0.008739173,-0.02411523,-0.017380567,0.0145326955,0.05490401,-0.008592502,0.03199882,0.004995996,-0.0070646745,0.0036637306,-0.028625377,0.037303437,0.016622763,-0.0010305197,0.04901271,0.030263208,0.0012917782,-0.018150592,0.012302067,-0.016256085,0.00003074753,-0.00825638,0.01879839,-0.053241733,0.035714496,0.027720904,-0.010700904,0.0096375365,-0.022514068,0.021658484,0.02149959,0.020448444,0.018945063,0.012210398,-0.027158663,0.012112617,-0.038183466,0.016732767,-0.014679368,0.009228079,0.0069974503,-0.011672603,-0.020558449,0.0080424845,-0.011831497,0.002464386,-0.017185004,0.027158663,-0.00020511085,0.03168103,-0.028649822,-0.013774893,0.01674499,0.036545634,0.018651718,-0.023002971,-0.006264093,0.025520831,-0.035714496,-0.015877184,0.027354226,-0.020375108,0.004959328,-0.038721263,0.023332983,0.00082426297,-0.0052954503,-0.017466124,-0.00064894476,0.0126137445,-0.017478347,0.0051273894,0.033685543,-0.011403705,0.0003905509,-0.004131246,-0.017270563,-0.014068237,-0.017368345,0.029920975,-0.030703222,0.000039986113,-0.0020854846,-0.0013544192,0.0039906856,-0.03969907,-0.019922871,-0.029212063,-0.018089479,-0.023247425,0.02486081,0.016219417,-0.026596421,-0.00923419,-0.0022092387,0.050357196,0.02640086,0.036081176,0.0046415403,0.0054696226,0.033929996,0.03082545,0.044881463,-0.0013414326,-0.0093319705,0.009283081,-0.059450828,0.007901924,0.008684172,-0.021462921,-0.02126736,0.013322656,0.02098624,0.025911955,-0.0051457235,-0.008775841,0.019653974,0.021719597,0.017356122,-0.037425663,0.0012574021,0.004812657,-0.009221967,-0.017857248,-0.029114282,-0.028894275,0.031143237,0.00036018534,-0.0006122769,0.0036240069,-0.041263565,-0.007211346,-0.0088491775,0.019165069,0.013848229,-0.009894211,0.011507597,-0.016989443,-0.0048371023,0.035225593,-0.013017091,-0.013114871,0.03451668,0.033685543,-0.0054910122,-0.0034834468,-0.020179547,0.06531768,-0.017001664,-0.010474786,0.01632942,0.013298211,-0.002667587,-0.021181801,0.014764925,-0.032536615,-0.0029548185,0.004925716,-0.0023054918,0.005093777,-0.041385792,-0.000088041066,-0.024689693,-0.024371905,0.013542663,0.038965713,0.0069241147,-0.013114871,0.0076696943,-0.043219186,-0.006697996,-0.007926369,0.0026507808,-0.0021664596,0.0013887952,-0.008763619,-0.005756854,0.009264747,0.026547533,0.012253177,-0.042314712,0.0011771912,0.031412136,-0.01725834,-0.010077551,0.005588793,-0.00793248,0.021487366,0.03456557,0.015009378,0.035470046,-0.030092092,0.0129682,0.02527638,-0.03226772,-0.007969148,-0.017759468,0.016720545,-0.0066674394,0.030165428,0.012271511,-0.0034162225,-0.014117126,0.0052129477,0.017759468,0.012222621,-0.011862054,0.0590597,-0.004296251,0.007388574,-0.003465113,0.00001833393,0.028527597,0.032634396,-0.012540408,-0.0028142584,-0.0015209523,-0.013163762,0.023149643,-0.01487493,-0.016537206,0.025863064,-0.02640086,-0.022379618,0.012821529,-0.034590017,0.012528186,0.030556552,0.007327461,0.019702865,-0.03534782,0.005591849,-0.010425895,0.017062778,-0.009203633,0.014997155,-0.0045315367,-0.021634039,-0.040090196,0.03627674,-0.0038348471,0.019287296,0.007504689,-0.044881463,-0.009545866,0.023430763,-0.020252882,-0.018443935,0.03400333,0.0012864309,-0.027036436,0.041434683,-0.016207194,-0.015290499,0.0051182224,0.017759468,-0.044563673,-0.002516332,-0.026474196,-0.04314585,-0.046152614,0.024054118,-0.06414431,0.016366089,-0.01646387,-0.045859274,-0.0080424845,-0.0032848292,0.006697996,-0.02635197,-0.01661054,0.029700968]},{"id":"guide-webhooks-0","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: What are Webhooks?\nWebhooks let you send messages to a channel using a URL (ID + token). You can use them in scripts, CI pipelines, or anywhere you need to post without a full bot connection. No gateway, no events—just REST.","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.04017053,-0.026942361,-0.023709279,0.0115904985,0.031316534,-0.05756156,0.00823591,0.0075438614,0.02099391,0.023350047,-0.017306505,0.023793804,-0.055363912,-0.05764609,-0.02050789,0.038649082,-0.019726034,0.017105758,-0.05532165,0.02123692,0.01286894,0.017834786,-0.02191312,0.053546622,0.003954188,0.020106398,-0.016408427,0.029583769,-0.04118483,0.00440851,0.017380465,-0.018838521,-0.015341298,-0.0021382198,-0.00079044135,0.0534621,-0.008690232,0.015594873,0.04247384,0.04249497,-0.016735962,0.027343856,-0.005380548,0.0054360176,-0.050545983,0.013481746,-0.071001045,-0.000019160525,-0.020402236,0.030872777,-0.050207883,0.008785323,0.043572664,0.04300212,-0.0009449637,0.008753626,-0.013682493,-0.0016654077,-0.04564353,0.013344393,-0.00994226,-0.01920832,-0.01613372,-0.012826677,-0.0046911407,-0.008843434,-0.012034255,-0.0071423673,-0.04027619,0.033007033,0.07417074,0.017359333,-0.006909923,0.007781588,-0.021004476,0.005211498,-0.048897743,0.058237765,-0.03995922,-0.039473202,-0.037000842,-0.047122717,-0.1322817,-0.036874056,-0.046742357,-0.02692123,0.0029530942,-0.060984828,-0.0018489856,0.014527744,-0.01714802,-0.016651437,-0.03211952,0.03640917,0.01112561,-0.0008544955,-0.04915132,0.0013959841,-0.0061967433,0.016831052,0.06005505,-0.07007127,-0.07577671,-0.020032438,0.039388675,-0.052447796,0.058744915,-0.01879626,-0.025019417,-0.05215196,-0.06360511,-0.03359871,-0.03543713,0.04517864,0.048601907,-0.0039198496,0.07653744,-0.00677257,0.015658267,-0.015193379,-0.019926783,-0.003729668,0.00330176,-0.039536595,-0.027555168,-0.004786231,-0.060604464,0.022652715,0.006038259,0.0055258255,0.024723578,0.026794443,0.033218347,0.015056025,-0.008558162,-0.026646523,-0.017169151,0.010380734,-0.008177799,0.053419836,0.061280664,-0.06550692,0.032668933,0.007010297,0.0010169421,-0.009250211,-0.06795815,-0.009752078,-0.021828596,-0.031379927,-0.06254854,0.0027998926,0.018606078,-0.009583028,-0.012932333,0.059632428,-0.017781958,0.032647803,-0.03262667,-0.04733403,-0.009820755,0.025632223,-0.009884149,-0.014760188,-0.05633595,-0.03176029,0.029055487,-0.054096036,-0.01647182,0.026857836,-0.018172886,-0.018584946,0.0019440763,0.033831153,0.015742792,-0.049024533,-0.021015042,-0.0411637,-0.0180461,0.0034840172,0.036874056,0.017623475,-0.011622195,-0.026181636,-0.03594428,0.0015993725,0.017063495,0.023730408,-0.038332112,-0.040381845,-0.009767926,-0.005594502,-0.0051032,0.034021337,0.035711836,-0.01170672,0.0034655272,-0.01153767,0.05063051,-0.023497965,-0.001534658,-0.04813702,-0.0106078945,-0.001322685,-0.027660824,0.012763283,0.03176029,0.0129006365,-0.035880886,-0.005858643,0.01204482,-0.00054941286,0.03974791,0.0017169152,-0.06390094,-0.02875965,-0.015658267,0.06119614,-0.023645883,-0.016841616,-0.043783978,0.007813285,-0.013492312,0.005185084,-0.018426463,0.024216428,0.018775128,-0.05016562,-0.00480208,0.012393487,-0.0044903937,0.024977153,-0.0031115785,-0.050588246,-0.00568431,0.023455704,0.016017498,0.017274808,-0.0076125376,-0.03357758,-0.02508281,-0.007211044,-0.01170672,0.01654578,-0.010893166,-0.014654531,-0.005010751,-0.029731689,0.02842155,0.024533397,0.05316626,-0.002618956,0.026667655,-0.018532118,0.03395794,-0.047249507,0.0057529868,0.014527744,0.02823137,-0.016260508,0.06326701,-0.02080373,-0.02740725,0.018088361,0.018532118,-0.009445675,-0.0007580841,0.024934892,0.0001898512,0.026456343,0.006740873,0.0058058146,0.05384246,-0.031337664,-0.07949582,0.00089741836,0.0008525144,-0.03492998,-0.04008601,0.004310778,-0.01187577,0.015594873,0.0048284936,0.028125713,0.023434572,0.009440392,-0.049109057,0.008505334,0.008447222,0.006709176,-0.040719945,0.043403614,-0.012647062,-0.0046435953,0.010666005,0.10464202,0.04513638,0.019852823,0.047460817,-0.010597329,-0.01035432,0.016757092,-0.0139677655,-0.0047518928,0.011115044,-0.029224537,-0.02423756,-0.07404395,-0.020433933,-0.023772672,-0.002632163,0.037888356,-0.0059801475,0.011051651,-0.030619202,0.02140597,0.05101087,0.003354588,0.010211683,-0.029816214,-0.0048654736,0.03376776,-0.015859013,-0.04232592,-0.04234705,-0.055448435,0.00936115,0.021089,0.019007571,0.016598608,0.028548338,-0.029520376,0.055025812,0.008473637,-0.027470643,-0.005261685,-0.0032330833,-0.0040783337,-0.034359436,0.026033716,0.019905651,0.011072782,-0.013650796,-0.02856947,-0.01680992,0.020233186,-0.009704533,0.018584946,0.0077287597,0.008320435,0.03328174,-0.00622844,-0.029879607,-0.044122078,-0.023730408,0.016091457,0.018246846,0.0282525,0.023983985,-0.013059121,-0.05130671,0.008410243,-0.036895186,0.027703088,0.011558801,0.015003197,0.031802554,-0.034359436,-0.016841616,-0.013006293,0.039156232,-0.015763924,0.036557086,0.0056209164,-0.03951546,0.030175446,0.006598237,0.052405536,0.021057304,0.013365525,0.026435211,0.017285373,-0.01862721,-0.012256133,0.008679667,0.044079818,-0.0002491178,0.051518023,-0.021722939,-0.00922908,0.010386016,-0.032394227,-0.0009456241,0.023709279,0.0114320135,-0.008980787,0.035352603,-0.0027232915,-0.015087723,-0.050757296,-0.003101013,0.0072533065,-0.05299721,0.011569367,0.019831691,0.007036711,-0.0072797206,0.06136519,0.01521451,-0.011865204,-0.007961203,0.08143989,-0.0007290286,-0.00677257,-0.034866586,0.000040983097,0.0070208623,-0.009107575,0.03691632,0.029520376,0.0031776137,0.006508429,-0.026329555,0.019556984,0.02140597,0.02242027,0.0070472765,0.036472563,0.027386118,-0.055786535,-0.04784118,-0.04080447,-0.02174407,0.0015610721,0.024470003,-0.024470003,0.04915132,-0.016662002,0.02740725,0.012192739,-0.049362633,-0.001026187,-0.034380566,0.032394227,-0.04551674,-0.014686229,-0.02590693,-0.03790949,-0.020455064,-0.0076495176,0.012065952,-0.07045163,0.03361984,0.015689963,-0.009482655,0.0006243628,0.008795888,0.0302811,-0.0055522397,0.042283658,-0.033049297,-0.022187827,-0.005462432,0.06639443,0.029499244,-0.014020594,-0.02239914,0.0020867123,-0.007924224,-0.047545344,0.07214213,-0.013111949,0.012382921,0.015056025,-0.026456343,-0.044544704,0.0738749,0.004141728,-0.0038089103,0.005879774,0.0017340843,-0.03277459,-0.091540635,-0.0049816957,0.03309156,0.05747704,0.017454425,-0.014527744,0.0032225177,-0.0056420476,-0.048559643,0.015066591,-0.0013590044,-0.006746156,-0.024300953,-0.020359972,-0.049404893,0.009620008,-0.0030983717,0.015077157,-0.031379927,-0.040529765,-0.04175538,0.010481107,0.030915039,-0.0026757463,-0.010090179,0.008019315,-0.009445675,0.01014829,-0.023392309,-0.05096861,-0.0049156602,0.017612908,-0.016355598,0.0030719575,-0.0120025575,0.006254854,0.0040783337,-0.00091392716,-0.043361355,0.06871887,0.04699593,0.0043926616,-0.024956023,0.024829235,-0.025463173,0.0004467281,0.0095037855,-0.0048126453,-0.029964132,0.0049050944,0.0026427286,-0.0061650462,-0.011780679,0.004260591,-0.04615068,-0.026202768,-0.0017855918,-0.00568431,-0.033704367,0.0060805213,-0.009303039,0.039874695,-0.0056737443,0.0060435412,0.004564353,0.009197382,0.014210775,0.04450244,0.016461255,-0.047756657,-0.0072744377,-0.008262324,0.026477473,0.0057318555,-0.0007871396,-0.026604261,0.011104479,0.0014606987,-0.0029187559,-0.0132281715,0.011051651,0.019873954,-0.026350686,0.025695616,0.0207509,-0.015563176,0.008410243,-0.019345673,-0.00660352,-0.0012117459,0.0051692356,-0.021976514,0.013386656,0.002534431,-0.04847512,-0.020032438,-0.017919311,0.036493693,-0.035394866,-0.0136191,-0.00739066,0.018299675,-0.014960934,0.0077974363,0.010850904,-0.0029240386,0.036303513,0.005179801,0.012647062,0.008869848,-0.006323531,0.0023099112,-0.010296208,0.0025066962,0.0079876175,-0.015985802,-0.047080457,0.021891989,-0.020180358,0.011833508,-0.03892379,-0.0059009055,-0.012308961,0.04517864,-0.02840042,0.009044181,-0.009910563,-0.0015703171,0.04266402,-0.009260776,0.002498772,-0.030154314,0.016281638,0.038649082,-0.023286654,-0.013566271,0.038691346,-0.0014923955,0.022948552,0.02861173,-0.0113474885,-0.0016588042,-0.023159865,0.03224631,0.021078436,-0.0107293995,-0.023455704,-0.0006151179,0.029245669,0.0024921685,0.0064503183,-0.038226455,-0.039240755,0.012837242,-0.010322622,-0.030830514,-0.00247632,0.002172558,-0.025484305,0.002463113,-0.0075966893,-0.008996636,0.015235641,-0.0020735052,0.0007567634,0.03326061,-0.025843536,0.016165417,-0.014886975,0.02029658,0.03841664,-0.015299035,0.02016979,-0.04530543,-0.021141829,0.0038485315,0.010143006,-0.024977153,-0.0013008934,0.008331001,0.012805546,0.003354588,-0.025061678,0.0067672874,0.003703254,0.006619368,-0.012541405,0.0014078704,-0.046108417,0.046531044,0.018606078,0.025505435,-0.0059009055,-0.013819846,-0.01056035,-0.030576939,0.0044586966,0.042875335,-0.022208959,0.00752273,-0.01845816,-0.0009799624,0.022842897,-0.012435749,0.039367545,0.0364303,0.039198495,0.018997006,-0.0018450235,-0.004125879,-0.012647062,0.011516538,0.01044941,0.018975874,0.017010668,0.023793804,-0.0067567215,-0.020328276,-0.009995088,-0.0292668,-0.039135102,-0.004635671,-0.0039673946,-0.019081531,0.014929238,-0.0129006365,0.0051032,0.023307784,0.00029616788,0.02573788,-0.014665097,-0.036366906,-0.007290286,0.012530839,-0.007406508,0.005663179,0.00819893,-0.009038898,-0.004817928,0.0025648072,-0.03425378,-0.051264446,-0.0021831237,-0.026604261,-0.0005735157,-0.0026797084,-0.012615365,-0.022948552,0.00093307736,-0.032161783,-0.0030508263,-0.017084626,0.011611629,0.023350047,-0.047376294,0.029034356,-0.014834147,-0.022208959,-0.0069416203,0.026033716,0.027343856,0.013999462,0.046700094,0.008087991,0.02607598,-0.006920489,0.0156054385,-0.023603622,-0.0032225177,0.0042843637,-0.055575226,0.04551674,-0.015594873,-0.0058427947,0.010116593,-0.044122078,0.020381104,0.013059121,-0.02827363,0.029943,0.010216966,0.037698176,0.008389112,-0.018236281,-0.038057406,-0.00022121792,0.035141293,0.011632761,-0.013999462,-0.017190283,-0.004413793,0.0054201693,0.029499244,-0.029752819,-0.049700733,-0.008362697,-0.00547828,-0.057941925,-0.010988257,0.004823211,-0.00739066,-0.0048126453,-0.011326358,-0.03951546,-0.013703625,-0.00023029775,-0.049869783,-0.03795175,-0.039325282,-0.013671928,0.034148123,-0.02675218,-0.01605976,0.00932417,-0.007036711,-0.04500959,0.01538356,0.006619368,-0.00823591,-0.02341344,-0.0360922,-0.013851544,0.04733403,0.0037455165,-0.023202127,0.0011397676,0.031379927,-0.003943622,-0.025949191,0.02022262,0.006149198,0.033810023,0.015869578,-0.025315255,0.027132543,0.010808641,-0.006117501,0.011960295,0.013418352,0.010306774,-0.0059009055,0.012129346,0.04249497,0.04200895,-0.028210238,0.00010152912,0.0142953,0.0042553083,-0.022356877,0.014876409,0.02091995,-0.014686229,0.03860682,-0.0045722774,0.0038115517,0.00024317463,0.014379825,-0.01763404,0.009704533,-0.004176066,0.024300953,-0.021976514,-0.021701807,-0.011960295,0.0006408716,0.012446314,0.01814119,0.00994226,-0.019947913,0.0002892342,0.0099528255,0.02022262,0.0018767203,0.030407889,-0.03159124,0.008278172,-0.01622881,0.019863388,-0.016271073,0.0077921534,-0.014834147,0.028315894,-0.012372355,-0.022673845,0.013428918,-0.01562657,0.05384246,0.05815324,0.044079818,0.03712763,0.021300314,-0.013936069,0.019261148,-0.0034681687,-0.017412161,0.013513443,-0.023857197,-0.030386757,0.046192944,0.01204482,0.012879506,0.0051348973,-0.012182173,0.0060963696,-0.0011602384,-0.0069310544,-0.015859013,0.003592315,-0.023962853,0.04615068,-0.030830514,-0.0045749187,0.0076495176,0.040529765,-0.025357516,0.036366906,0.0077657397,-0.0005124331,-0.03442283,0.017454425,-0.011273529,-0.014284735,0.0062178746,0.002789327,-0.02048676,0.0058110976,-0.001086279,-0.029330194,-0.008362697,-0.04080447,-0.0012058028,0.019926783,0.012499142,0.023793804,-0.012974596,0.028062318,0.017359333,-0.028125713,0.017433293,-0.021374274,0.055406176,-0.001176087,-0.010327905,0.026540868,0.02058185,-0.039536595,0.024364347,0.0149503695,0.02740725,-0.021490496,-0.033894546,0.044291127,0.025780141,-0.026604261,0.018489856,0.00009839245,-0.016461255,-0.011421449,0.012076518,-0.002542355,-0.021870859,-0.026646523,0.018880785,0.012953465,0.0036477845,0.00052927213,-0.042896464,-0.02675218,0.018637775,-0.017813655,0.06453488,0.00006459068,-0.0013946635,-0.021532757,0.031147484,-0.031189745,0.06005505,0.03962112,0.042178,0.003948905,0.0020589775,-0.00035592972,0.028823044,-0.018426463,0.01622881,-0.04898227,0.017253676,0.018067231,-0.0020180356,0.02641408,0.06457714,0.029414719,0.0070525594,0.005369982,-0.0062759854,-0.014665097,0.012657627,-0.0047598174,0.00936115,0.0057846834,0.005375265,-0.028062318,0.009244928,0.000082874176,-0.0067567215,-0.0055046943,0.029478112,0.011601063,-0.011822942,-0.036345772,0.015330732,-0.033831153,0.005932602,-0.034000203,0.022547059,-0.000377061,0.012763283,0.0041971975,0.012636496,0.025378648,-0.010512804,-0.012974596,-0.0056895926,0.023328915,0.0059801475,0.005472997,-0.010343754,0.0011212777,0.033493053,-0.0056050676,0.013904371,-0.01603863,-0.0049816957,0.014855279,-0.01521451,-0.008024598,-0.016323902,0.0014620193,0.026688786,-0.014728491,-0.005063579,0.013534575,0.015087723,-0.011822942,0.02740725,0.007094822,-0.025315255,-0.02239914,0.010174704,-0.002262366,-0.03909284,0.0040096575,0.022462534,-0.0017155944,0.01630277,-0.005472997,0.051729333,-0.0026876326,-0.03928302,-0.02408964,0.00015716377,0.025843536,-0.022039909,-0.034063596,-0.01129466,-0.0022504795,0.013735321,0.031887077,-0.019218884,0.03678953,-0.009466806,0.026477473,0.026604261,0.025759012,-0.008420808,0.018373635,-0.016017498,-0.00064153195,-0.0017657812,-0.023202127,0.029795082,-0.0035579766,0.025611091,-0.017940443,0.008352132,0.0023904743,-0.0008987391,-0.0024842443,0.0115059735,0.0020933158,0.003904001,-0.014496047,0.01697897,0.0046911407,0.00064681476,-0.027428381,-0.0066774795,0.007580841,-0.011315792,0.029710557,-0.0055258255,0.003962112,0.0020946364,0.0123300925,0.025336385,0.0006504467,0.026963493,0.0058005317,-0.014326997,0.0063076825,-0.02709028,-0.027322724,-0.017496686,0.0023244391,0.04091013,0.006455601,0.0106924195,-0.0041919146,-0.0204128,-0.012562537,-0.01354514,-0.013597968,-0.021215789,0.037043106,-0.000009569945,-0.026709918,-0.0074276393,0.036535956,0.013978331,0.012235002,0.019070966,-0.018130625,-0.008584576,-0.0018529478,0.018120058,-0.019673206,-0.019831691,0.012055386,0.036493693,-0.011727852,-0.046404254,0.004440207,0.007881962,0.07214213,0.0027100847,0.029520376,0.013217606,-0.016735962,0.023857197,-0.012763283,-0.013407787,-0.038501162,0.02740725,0.016123155,0.001082317,-0.017813655,0.030830514,-0.00094958616,0.020761468,0.030386757,-0.01975773,0.036810663,-0.00752273,-0.0009667553,-0.0005507336,0.03178142,-0.009958108,0.010903732,0.010016219,0.032394227,0.029182276,0.0012573102,0.024427742,-0.023033077,-0.040064875,-0.010766379,-0.020941082,0.001298252,0.012097648,-0.013587403,-0.031802554,-0.01589071,0.012404052,0.007295569,-0.019261148,-0.043044385,0.005568088,-0.008737777,0.01739103,-0.056082375,-0.023054209,-0.0041998387,0.0039911675,0.00990528,0.02856947,-0.01814119,-0.026709918,-0.02740725,0.015151116,-0.03645143,0.015848449,-0.023730408,0.016334467,-0.0066510653,0.0028632863,0.03262667,0.003729668,0.018743431,-0.042558365,-0.0028553621,0.030682595,0.02341344,-0.041375015,-0.020433933,-0.03877587,0.010459975,0.029520376,0.06529561,0.014379825,0.013090818,0.014992632,-0.021606717,0.01538356,-0.008526465,0.002163313,0.03391568,0.009493221,-0.0068676607,0.029985264,-0.013090818,0.026878968,0.037021976,0.023117602,0.035542786,0.0004097484,0.027534036,0.015098288,-0.020085266,0.03928302,-0.028104581,0.018172886,-0.0019969044,-0.006312965,-0.018077796,-0.00033496355,-0.050376933,-0.007601972,0.021141829,0.0033440224,-0.007808002,0.053757936,0.038184192,-0.00079836557,0.00039786208,-0.06774683,0.05067277,0.0076442347,0.027491774,0.0072533065,0.0073325485,0.010676571,-0.017940443,-0.010433561,-0.023096472,-0.017074062,0.0116750235,-0.019345673,0.018637775,0.0047281203,0.011717286,-0.011865204,-0.017612908,0.0072268923,0.023603622,0.03328174,-0.0059061884,-0.0011278812,0.040022615,-0.0002628201,-0.024322085,-0.012382921,-0.012034255,-0.0013141005,-0.03476093,0.017264243,0.017179718,-0.008008749,-0.013460615,0.029626032,0.0044903937,0.024702447,0.044206604,-0.021807464,0.027364986,0.023033077,-0.007295569,0.022187827,0.0038089103,0.0136402305,0.008304587,0.008420808,-0.045601267,-0.030724857,0.024427742,-0.01279498,0.012499142,-0.0008789285,-0.018426463,-0.037698176,0.032351963,-0.013893806,0.0052458365,0.013048556,0.012689324,-0.018405331,-0.03042902,-0.011442579,0.014073422,0.012773849,0.025505435,-0.038902655,0.0059061884,-0.023540229,0.0074434876,-0.024470003,0.012224436,-0.03125314,-0.03243649,0.009720381,0.03277459,0.010792793,0.0068729436,-0.03545826,0.0024340574,0.01052337,-0.0065929545,-0.00530923,-0.030745989,-0.014094553,0.011009389,-0.016947273,-0.0001339689,-0.021891989,-0.022187827,-0.03311269,-0.036324643,0.01061846,-0.0045432216,-0.008706081,0.010116593,0.0114320135,-0.0027681955,-0.01446435,-0.00823591,0.03425378,-0.010655439,-0.017496686,-0.011210135,-0.029520376,0.01204482,0.021976514,-0.0018978516,0.0059061884,0.029330194,0.037507992,-0.006883509,0.027660824,-0.013270434,0.044544704,-0.0009053426,0.0038353244,-0.014665097,0.0034840172,0.0041021067,0.0055205426,-0.022462534,-0.0017869124,0.026942361,0.009863017,0.030323364,-0.005652613,0.0028500792,-0.011358054,-0.02641408,-0.002823665,-0.00045564288,-0.0082306275,-0.013862109,-0.039557725,0.006460884,-0.0041839904,0.0020629396,-0.029414719,0.025357516,-0.020518458,-0.015711095,-0.0045352974,-0.035352603,0.016323902,-0.044882804,0.0076812143,-0.0350779,0.019324541,-0.019049834,0.0017644606,0.007480467,0.014274169,-0.026371818,0.045389954,-0.017982706,0.030745989,-0.019599248,-0.014591138,0.013714191,0.0068518124,0.0120025575,0.036705006,0.030893907,-0.02823137,-0.06850756,0.017380465,0.06119614,-0.002346891,-0.016165417,-0.0032806287,-0.017591776,0.030809382,0.032204047,-0.023603622,-0.0026968776,-0.026688786,0.008806454,0.008299304,-0.016429558,0.038543426,0.01078751,0.0018384199,-0.016366163,-0.0156054385,-0.0051111244,0.008906827,0.010465259,-0.0062125917,0.026646523,-0.0069574686,0.0073589627,0.015806185,0.020328276,-0.0015584307,-0.016915577,-0.023962853,-0.0006795022,-0.005573371,-0.003159124,-0.011696154,-0.0010063765,0.0029081902,-0.008177799,-0.017824221,0.034148123,0.024026247,0.01572166,0.06390094,0.016281638,-0.012182173,0.0016363523,-0.023624754,0.020264883,-0.02150106,0.01129466,0.030302232,-0.00012241275,0.025103942,0.0061597633,-0.0043556816,-0.0043530404,-0.03659935,0.017961575,-0.017951008,-0.0017974782,-0.0044507724,0.035859756,0.039473202,0.032478753,-0.026097111,0.005536391,-0.03934641,0.033049297,0.019821126,0.05067277,0.021353142,0.013936069,0.024385478,0.037803832,-0.0001333911,0.022356877,0.032373097,0.005340927,-0.034380566,0.014020594,-0.016746527,0.0022848179,-0.023878329,0.008822302,-0.04266402,0.0046779336,-0.01664087,0.0029081902,-0.023624754,0.013524009,0.020571286,0.020074701,0.010174704,0.002369343,0.0116750235,0.029921869,0.025019417,0.02406851,0.009741513,-0.019831691,0.023709279,0.010861469,-0.016598608,0.05016562,0.003042902,-0.037043106,0.0028263065,-0.0180461,0.02844268,0.010301491,0.011421449,-0.0027100847,-0.030957302,0.042431578,0.015246207,-0.004992261,-0.0071529327,-0.019969044,-0.02624503,-0.0016125796,-0.015309601,-0.0051956493,-0.01975773,0.021606717,-0.014485481,0.0026704634,0.007834416,0.019926783,0.006777853,0.0008419488,-0.00066068216,-0.026773311,-0.01647182,0.008769475]},{"id":"guide-webhooks-1","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Webhooks Without a Bot\nA Client with intents: 0 is enough. No need to connect to the gateway or handle events. Ideal for scripts or one-off sends.\n\n```javascript\nimport { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.send('Message from a script!');\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.0592185,-0.010449988,0.0035299386,-0.015010086,0.04652556,-0.04339798,-0.023673702,0.04771267,0.06067956,0.010558425,0.005202165,-0.005467552,-0.0048911194,-0.0470278,-0.0038438377,0.033261895,-0.029700566,0.0045058797,-0.041023765,0.019815596,0.023787847,0.03648079,-0.009399853,0.02022652,-0.025043445,0.013434883,-0.008772054,0.04255331,-0.061227456,-0.033239067,0.03595572,-0.025751144,-0.020922804,-0.014153997,-0.019918328,0.06784787,0.0073167034,0.022840442,-0.018103419,0.030978993,-0.023856334,-0.024495548,0.030727873,0.016482558,-0.0036897417,0.030385436,-0.056570332,0.02066027,-0.041411858,0.016745092,-0.051593605,-0.01876546,0.047119115,0.060999162,-0.018719804,0.013834392,-0.046365757,-0.010969348,-0.047530036,0.0357046,0.014998672,0.0034443296,-0.012042313,0.011950997,0.006123887,0.026116408,0.0042461995,-0.019096483,-0.010421451,0.084284775,0.052004527,0.036572102,0.0031703813,-0.0069856825,-0.017258745,0.0073338253,-0.020979878,0.026253384,-0.02892438,-0.018400198,-0.016505387,-0.020614613,-0.11304935,-0.042507652,-0.058807578,-0.02022652,-0.02561417,-0.06935459,-0.0016008856,0.011608561,0.016996212,-0.033079263,-0.04017909,0.011814022,0.04885412,0.0053048953,-0.0009738007,0.025226077,-0.009394146,0.025340222,0.097799554,-0.05241545,-0.066341154,-0.0024327184,0.024016138,-0.018046347,0.030887676,-0.010301599,-0.013206593,-0.042393506,-0.056570332,-0.046411414,-0.012019483,0.0456124,0.03552197,-0.03218893,0.006500566,0.0042119557,0.0038923493,-0.0059640836,-0.036823224,0.0034842805,0.033901107,-0.007744748,-0.002342829,-0.013937122,-0.036206838,0.03166386,-0.022144157,-0.011962411,0.06510839,0.015706372,0.0399508,0.021447873,-0.0099762855,-0.021562018,0.009907798,0.012533137,-0.010838081,0.016048808,0.025819631,-0.08405648,0.030750701,0.009211513,0.025385879,0.030408265,-0.06638681,0.036047038,-0.007744748,-0.027805757,-0.025659828,-0.022657812,-0.012202116,-0.00815567,-0.0027209348,0.06154706,-0.015375351,0.058807578,-0.02677845,-0.056752965,0.017566938,-0.022372449,0.03102465,-0.0097651165,-0.08551754,-0.021253826,0.003395818,-0.0220985,-0.012966888,0.02986037,-0.0039922264,-0.009616728,0.004203395,0.016003149,0.01246465,-0.04698214,-0.008538057,-0.032828145,-0.016802166,0.047210433,0.07013077,0.020340664,0.009913506,-0.028604772,-0.031709522,-0.01577486,0.019884083,0.002067454,-0.022281133,-0.03173235,-0.03266834,0.0017221648,0.0013561869,0.02652733,0.062094957,-0.004240492,0.0062437393,-0.004000787,0.04602332,-0.015375351,-0.03479144,-0.046571217,-0.008646495,-0.028536286,-0.0033273308,-0.0063750064,0.006814465,-0.009993407,-0.012784256,0.0016508241,0.014290972,0.028764576,-0.0008646495,0.0029563592,-0.08807439,0.008834834,0.0095139975,0.03709717,-0.01631134,-0.016973382,-0.047849644,-0.0042233705,0.011682755,-0.036001377,-0.019758524,0.028216679,0.00992492,-0.065427996,-0.036115523,0.016516803,-0.0051051416,0.034859926,-0.019119311,-0.056935597,0.006369299,0.04024758,0.061729692,0.015946077,0.016185781,-0.017578352,-0.02561417,-0.05520059,-0.011037835,-0.010775302,-0.017361477,-0.018719804,-0.02257791,-0.0235139,0.01749845,-0.012019483,0.0691263,0.007938795,0.027189372,-0.00072375155,0.022817614,-0.037302632,0.021105437,-0.0035698893,0.003926593,-0.009502583,0.059309818,-0.026002264,-0.00013938193,0.03858106,-0.00840679,-0.03143557,0.025477195,0.032805312,-0.014188241,0.021710407,-0.014496434,0.0070998278,0.024997786,-0.03622967,-0.077344745,0.0073167034,-0.006814465,-0.011203346,-0.036526445,-0.00016872078,-0.033170577,0.0057785977,-0.027623124,0.03552197,0.034608807,0.004848315,0.0022158425,0.007299582,0.023319853,0.024564035,-0.01891385,0.045658056,0.016277097,-0.023285609,0.008857663,0.09136177,0.042210873,0.011848266,0.05492664,0.02490647,0.018388782,0.012829914,-0.012247774,-0.030362608,-0.005924133,-0.0029535056,-0.0090574175,-0.049904257,0.023148635,-0.008132841,-0.022977417,0.025454367,-0.049630307,0.028696088,-0.0037553753,0.009559656,0.02652733,0.03974534,0.01870839,-0.0178523,-0.042210873,-0.0021088314,0.010512767,-0.03193781,-0.026709963,-0.06889801,-0.0035128167,0.006523395,0.03291946,0.03753092,0.032645512,-0.0040892498,0.035681773,0.020146618,-0.019758524,-0.011734121,0.00031015376,-0.02374219,-0.0054133334,0.05666165,-0.0019476014,0.0007262485,-0.042393506,-0.04675385,-0.01198524,0.04912807,0.0121108,0.02159626,0.018240394,-0.00419198,0.011488709,0.000012373155,-0.030568069,-0.047849644,-0.04871715,0.0018448709,0.0056558917,-0.021402214,-0.0026139237,-0.0010907996,-0.051319655,0.014941599,-0.020888561,0.039106127,0.0008389668,-0.009787946,0.025819631,-0.0392431,0.003972251,-0.008087183,0.050360836,0.007676261,0.01729299,-0.013081034,-0.029449446,0.0012085116,-0.021653334,0.03218893,0.019381845,-0.0034985486,0.03520236,0.026938254,-0.041914098,-0.05008689,-0.0052506765,0.012145043,-0.024107454,0.039562706,-0.027919902,0.0068030506,0.0049738744,-0.029472277,-0.0059640836,0.035544798,-0.0085551785,0.0019276261,0.02511193,0.00007040437,-0.0089718085,-0.03166386,0.017304404,0.03175518,-0.014599164,0.018137664,0.03031695,-0.019575892,-0.02629904,0.06611287,0.0041520298,0.017692497,0.0097251665,0.027623124,-0.0016222878,0.009616728,-0.059583765,-0.018320296,0.014530676,-0.032348733,0.007413727,0.0072025587,-0.011465879,0.008629372,-0.014838869,-0.002519754,-0.015112817,0.0039009103,0.022269716,-0.002006101,0.01246465,-0.0643322,-0.037051514,-0.019986814,0.007459385,0.00464,0.044174172,-0.010096137,0.026641477,0.008172792,-0.003104748,0.0027494712,-0.03565894,-0.012179287,-0.027668783,0.049949914,-0.025682658,-0.002919262,-0.030613728,-0.0034072325,-0.023251366,-0.023194293,-0.027349176,-0.07739041,0.029746223,-0.008480984,-0.019941157,0.0053905044,-0.02255508,0.029175498,0.041252054,0.046274442,-0.04935636,-0.017897958,-0.05100005,0.03524802,0.0199754,0.01876546,0.0063864207,0.037051514,0.0090574175,0.008772054,0.03501973,-0.0106954,0.010712522,0.03618401,0.019769939,-0.041023765,0.06035995,0.029449446,0.01870839,-0.0030248463,0.069674194,-0.014245314,-0.056524675,-0.012704355,0.012727183,0.0784862,0.04161732,-0.024495548,-0.03154972,0.00068201724,-0.038695205,0.012247774,-0.003587011,-0.010324428,0.016288511,-0.038718034,-0.033992425,0.0043118326,-0.012430406,-0.010963641,-0.034905586,-0.05291769,-0.04588635,0.0149530135,-0.021322312,-0.0075392867,-0.006123887,-0.022235474,-0.033261895,0.012453235,0.0037924724,-0.039813824,-0.00033119926,0.028011218,-0.017429963,0.0071797296,-0.010712522,0.035476312,-0.014987257,-0.025066273,-0.030362608,0.039334416,-0.010410037,0.008024404,-0.02349107,0.022943174,-0.0054019187,-0.009194391,-0.016368413,-0.006882952,0.008663616,0.0235139,-0.00367262,-0.001936187,-0.0044602216,0.02513476,-0.030956162,-0.025500026,-0.008149963,-0.0057557686,-0.031800836,0.018308882,-0.024244428,0.0046885116,-0.043877393,-0.01631134,0.024701009,0.026230553,-0.01009043,0.04323818,0.01676792,-0.025248906,-0.022018598,0.0023257073,0.038192965,-0.011916753,0.003840984,-0.027098056,-0.0031446987,0.012145043,0.000960246,-0.015409594,0.04285009,0.0043831733,-0.012304846,0.014405117,0.0031561132,-0.0015637885,-0.030408265,-0.019199213,-0.021288069,0.009028881,-0.0062722755,0.01398278,0.007898844,-0.0048854123,-0.0220985,0.0019789913,-0.020614613,0.0019632964,-0.0028222387,-0.01079813,-0.011619976,0.055291906,-0.024792325,-0.006882952,-0.0028693236,0.0005086593,0.032074787,0.010889446,-0.0033701353,-0.016824994,-0.0019162116,-0.0134462975,-0.018320296,0.002050332,-0.0034899877,0.0022771957,-0.041434687,0.016471144,0.01398278,-0.02174465,-0.017452793,-0.013743076,-0.014599164,0.035384994,-0.01246465,0.007482214,0.006563346,0.010786716,0.028056877,0.026002264,-0.015375351,-0.038946323,0.0008289791,0.023194293,-0.034129396,0.014987257,0.035773087,0.01787513,0.02255508,0.03029412,0.017076114,0.0036155474,-0.017669668,0.032074787,0.02515759,-0.012133629,-0.012966888,-0.0014517836,0.017121771,-0.008075769,0.0077390405,-0.01676792,-0.04538411,-0.0101417955,-0.0034928413,-0.024358574,-0.0028678968,-0.027098056,-0.038649544,-0.036069866,0.014507848,0.0009160148,0.01903941,0.021459287,-0.03451749,0.029243985,-0.0067630997,-0.005393358,-0.0011935302,0.026961083,0.051410973,-0.035088215,0.0242216,-0.0526894,-0.0066032964,-0.027919902,0.014530676,0.0034928413,0.015569397,0.015421009,-0.040590014,0.055839803,-0.02887872,0.01729299,-0.006483444,0.019381845,-0.013354981,-0.007910258,-0.010495646,0.051593605,0.017464207,0.009274293,-0.013400639,0.002735203,-0.011580025,-0.010261648,-0.0047284625,0.0073167034,-0.015478081,0.0029820418,-0.017030455,-0.0025154736,0.018651316,-0.0131951785,0.030978993,0.031572547,0.030659385,0.021356557,-0.01446219,-0.038101647,0.04020192,0.009588192,-0.0010066174,0.0053905044,-0.0006195941,0.036709078,-0.007231095,0.014005609,-0.0014482165,-0.011500123,0.003387257,-0.005901304,-0.013343567,-0.031892154,0.020774417,-0.005907011,0.0033786963,-0.02823951,-0.0012998278,0.037690725,-0.0016493973,-0.0228062,-0.02255508,0.010381501,0.0006417097,-0.01233909,0.00428615,-0.029152669,-0.0010907996,0.013788734,-0.004055006,-0.009981993,-0.008617958,-0.028810235,0.021630505,0.012795671,0.003064797,-0.004086396,0.009776532,-0.005193604,-0.00026824107,-0.011602853,-0.034175057,0.03360433,-0.05049781,0.011659927,-0.03193781,-0.03481427,0.0073737763,0.015341107,-0.0033587208,-0.002312866,0.021858795,-0.014450775,0.04611464,-0.016630948,-0.0083040595,-0.008817712,-0.05145663,0.006215203,-0.03435769,0.020614613,-0.013001132,-0.017235916,-0.013994195,-0.028171021,-0.001874834,0.01562647,-0.028102534,0.017544108,-0.0063807135,0.0399508,0.009548241,-0.01645973,-0.0456124,-0.002612497,0.0138229765,-0.0052620913,0.007938795,-0.000055333643,-0.029403789,0.023251366,0.04588635,-0.04771267,-0.04392305,-0.012909816,-0.021915868,-0.042621795,0.013971365,0.006774514,-0.014119755,-0.012259188,0.006860123,-0.02867326,-0.03262268,0.011722706,-0.036206838,-0.031207282,-0.041891266,-0.0042690285,0.03360433,-0.018491512,-0.014873112,0.018628487,-0.003141845,-0.092548884,-0.008298351,0.0070827063,-0.021436458,-0.031869322,0.006877245,-0.015101402,0.0790341,-0.0031018942,0.0099877,0.012875572,-0.018822534,0.0029592128,-0.027006742,0.036138352,-0.027280688,0.028307995,0.023833506,-0.013526199,0.003073358,-0.034859926,-0.019324772,0.007248217,0.03225742,0.002489791,0.010661156,0.0074879215,0.016117293,0.03780487,-0.0031133087,0.0098507255,0.007955916,0.015318278,-0.013092448,0.026025092,0.027417663,0.003410086,0.017429963,-0.010021944,-0.008566593,-0.0067859287,0.015500911,-0.01866273,-0.021379385,0.013115277,0.024290087,-0.007567823,-0.009753702,0.006192374,0.003410086,0.010598376,0.010581255,-0.015592227,-0.029198328,0.020340664,0.03575026,0.018160492,0.021288069,0.012487479,-0.032074787,-0.027372004,-0.013800148,0.016174367,-0.034380518,-0.0018448709,-0.026687134,0.010295892,0.0042461995,0.0035698893,-0.0043403693,-0.008994637,0.01822898,0.060953505,0.05332861,0.034426175,0.023901993,-0.0038381305,-0.01092369,0.0028379336,-0.021915868,0.0070199263,-0.006169545,0.010746765,0.023833506,0.04346647,-0.009080246,0.015523739,0.013959951,0.016220024,-0.0037353998,-0.0024384256,-0.016185781,-0.0018562854,0.0044687823,0.020409152,-0.036115523,-0.057985734,0.026915425,0.033992425,-0.03807882,0.03364999,-0.008612251,0.010056187,-0.014359459,0.0063065193,0.035270847,-0.03575026,0.0071626077,0.013138106,-0.046936482,0.009628143,-0.0043346616,-0.017555524,0.015820516,-0.012829914,0.021961525,0.050452154,-0.013115277,0.0075335796,0.007830357,0.034608807,0.015523739,-0.010044772,0.0043917345,-0.033239067,0.011294662,0.0046542683,-0.017521279,0.004662829,0.014028438,-0.013491956,0.036138352,0.0015195572,-0.004000787,-0.010358672,-0.008269816,0.035636112,-0.0016023124,-0.026869766,0.02397048,0.002058893,-0.011688462,0.021687577,-0.001890529,0.009143026,-0.0105184745,-0.003955129,0.027372004,0.003972251,-0.01929053,0.0017421403,-0.0242216,-0.03876369,0.016779335,-0.0025982289,0.037051514,0.00084110704,0.0051964577,-0.028559115,0.06319075,-0.009034588,0.044585094,0.026458845,0.018628487,0.019507404,0.00934278,-0.024518376,0.009896384,-0.025203247,-0.011243297,-0.0199754,0.015535153,0.011734121,-0.0263447,0.037234146,0.037667897,0.026413186,-0.004157737,0.0036612055,-0.005102288,0.02912984,-0.00019386839,0.0101417955,0.032303076,-0.0011707011,0.007904551,0.0045315623,0.02771444,-0.019027995,0.0057785977,0.016585289,0.051776238,0.016904896,-0.02938096,-0.0535569,0.0006131734,-0.014393702,0.017121771,-0.047803987,0.021824552,-0.0033330382,0.01671085,-0.009833604,-0.010980763,0.015991734,-0.008212743,-0.024701009,0.019233456,0.009394146,0.035156704,-0.003087626,0.0020703075,-0.018286051,0.0061581302,-0.021185338,0.032759655,-0.045840688,0.0034157934,-0.0030305535,-0.0030705044,-0.0051450925,-0.015923247,0.020237934,0.036115523,-0.037576582,0.0058071343,-0.00084538746,-0.024061795,-0.016345585,0.025796803,0.02513476,-0.017943617,0.0037011562,0.030020172,0.0070028044,-0.03595572,-0.018891022,0.025385879,0.008423911,0.019222042,-0.0034528906,0.03974534,0.008286937,-0.06323641,-0.013743076,-0.0067117345,0.0020032472,0.010370086,-0.043306667,0.0054989425,-0.00057750306,0.004985289,0.057483494,-0.014713309,0.041891266,0.0070884135,0.032280248,0.028285166,0.035910062,-0.021288069,0.02677845,-0.024769496,-0.024792325,-0.047803987,-0.012510308,0.015249791,-0.0013633211,0.01491877,-0.016802166,-0.008201328,-0.0073566544,0.009730874,0.00014705105,-0.010792423,0.007242509,0.0141996555,0.013332153,0.008520935,-0.021504944,-0.0059640836,-0.020146618,-0.038398426,0.020066716,-0.009668093,0.028125362,-0.007322411,-0.030590897,-0.015421009,0.015135646,0.004209102,0.04326101,-0.01633417,0.009245756,-0.015911832,0.014450775,0.012715769,-0.031846493,0.01385722,0.01929053,0.026709963,-0.014256728,-0.010952227,-0.03449466,-0.025294563,-0.024632521,0.009685216,0.0123162605,-0.020055301,0.041548833,0.0020788684,-0.020968463,0.005907011,0.05972074,-0.015934661,-0.0040978105,0.03456315,-0.0150785735,-0.026801279,0.005787159,0.0055132103,-0.0044459533,-0.00499385,-0.0134462975,0.016950553,-0.010741058,-0.017224502,0.009468339,0.013845806,0.04401437,-0.0039123246,0.035681773,-0.017190259,0.0022643544,-0.013457713,-0.0070598773,-0.005533186,-0.039037637,0.03355867,0.010661156,0.02442706,-0.01539818,0.025477195,-0.033033606,0.023650873,0.030750701,-0.023559557,0.007881722,-0.036115523,-0.0015851907,-0.011905339,0.04698214,-0.02960925,-0.015135646,0.023422584,0.027645953,0.024541205,0.03266834,0.009959164,0.0037696434,-0.028604772,-0.032051954,0.0055417465,-0.0003699016,-0.009462632,0.011597146,-0.015466667,-0.012738598,-0.018902436,-0.0036983027,-0.015215548,-0.027326347,0.016847823,-0.012841329,0.025431538,-0.07844054,-0.017555524,-0.006209496,-0.0022686347,0.0051194094,0.038832176,-0.0036298155,-0.012841329,-0.03846691,0.0054019187,-0.03974534,0.028718919,-0.03524802,-0.0046514147,0.01598032,-0.0036583517,-0.00570155,-0.01954165,0.020386323,-0.0470278,-0.005724379,0.03123011,0.023422584,-0.033672817,-0.033079263,-0.04024758,-0.018012103,0.02725786,0.03928876,0.0054960884,0.015295449,0.022543665,-0.0010586962,0.02771444,-0.010198869,-0.012179287,0.022258302,0.031207282,0.017920787,0.017955031,0.005370529,0.033033606,0.014222485,0.034722954,0.012875572,0.017407134,0.018343125,0.0074536777,-0.024609692,0.021664748,-0.024837984,-0.0065975892,-0.0028921526,-0.014816039,-0.018879607,-0.018103419,-0.013092448,-0.0057044034,0.025294563,0.00963385,0.014850283,0.027280688,0.025203247,-0.0019162116,-0.012647281,-0.045932006,0.012304846,-0.009782239,0.043968707,-0.004557245,-0.00022472325,0.0063807135,-0.02938096,-0.014770381,-0.041503172,-0.023719361,-0.001920492,-0.010564133,0.021322312,-0.0126929395,-0.0014510701,-0.01516989,-0.03125294,0.02702957,0.03033978,0.011699877,0.0076933824,-0.020751586,0.023468241,-0.004602903,-0.022212645,-0.021584846,-0.0007490775,-0.005641624,-0.01610588,-0.010609791,0.017966446,0.012795671,-0.015546569,-0.0013026814,-0.0021116852,-0.0016964822,0.05666165,-0.010649742,0.010164625,0.026367528,-0.0036012793,0.023080148,-0.019427503,-0.010689693,0.014485018,0.0080928905,-0.022931758,-0.0048226323,-0.015295449,-0.046411414,0.035133876,-0.027006742,-0.0153296925,-0.033695646,0.02199577,-0.0069799754,-0.0003902337,0.010718229,0.007436556,-0.0123162605,-0.0076933824,-0.02336551,0.0221784,0.014313801,0.030020172,0.00009978782,-0.0029848954,-0.006101058,0.006083936,-0.028171021,-0.007881722,-0.025066273,-0.01671085,-0.008361132,0.028216679,-0.0077732843,0.05588546,-0.014964428,-0.015158475,0.010775302,-0.0070541697,0.003450037,-0.020820074,-0.025522854,0.019564478,-0.020842902,-0.0069742682,-0.008480984,-0.034951244,-0.022452349,-0.043078378,0.0046200245,0.019199213,0.018160492,0.026390357,-0.016014563,-0.03458598,-0.010980763,-0.010649742,0.018856777,-0.026184896,-0.017738156,0.011591439,-0.028718919,-0.005376236,0.0007505043,0.00570155,0.0015195572,0.047347404,0.030705044,-0.016356999,0.01623144,-0.012533137,0.056752965,0.016779335,0.01633417,-0.024723837,0.024586864,-0.00063671585,0.020306421,-0.013480541,-0.0023556703,0.03403808,-0.019712865,0.046594046,-0.009845018,0.019884083,0.009639557,0.003110455,-0.01583193,-0.011699877,0.02010096,-0.035773087,-0.031389914,0.026276212,-0.011197639,0.0008903321,0.0046057566,0.01903941,-0.035773087,0.0038552522,0.005162214,-0.037302632,-0.011950997,-0.0019904058,-0.008709274,-0.039060466,0.012042313,-0.014530676,-0.02207567,-0.0032103322,0.006146716,-0.019005166,0.037987504,-0.004394588,0.035179533,0.010295892,0.008566593,-0.01808059,0.013229422,-0.009268586,0.0025868143,0.01964438,-0.013640344,-0.06246022,0.0263447,0.008012989,0.005096581,-0.017224502,-0.005533186,0.00251262,0.024016138,0.0027608857,-0.021893037,-0.012852743,-0.015101402,0.020386323,0.017897958,-0.019918328,0.014930185,0.0038894957,0.007259631,-0.012282018,-0.0016993358,-0.010803837,-0.012772841,0.004691365,-0.03622967,0.009479754,-0.0062722755,-0.0041520298,0.027440492,0.00079188193,-0.011431636,-0.03314775,0.009719459,-0.008264109,-0.033901107,-0.010415744,-0.010621206,-0.014279557,-0.013674588,0.022235474,-0.007881722,0.026481673,0.03552197,0.0010943665,0.03846691,0.002826519,-0.032645512,-0.009525412,-0.01812625,0.008098598,-0.0006331488,-0.0015038622,0.018731218,0.00078189425,0.015306864,-0.015249791,0.03732546,-0.020671686,-0.031184454,0.0079273805,-0.0069970973,0.0115629025,0.0066946126,0.029997343,0.027897073,0.014131169,0.0065576383,0.006917196,-0.011197639,0.0406585,-0.009656679,0.05547454,0.031275768,0.029563593,0.01974711,0.031869322,0.026915425,-0.0026224847,0.038809348,0.0012634441,-0.055291906,0.033079263,-0.0018705535,0.00010531673,-0.010004822,0.0023941942,-0.038855005,0.017932203,-0.038192965,-0.014096925,-0.043443643,-0.00805294,0.007681968,-0.0058499384,0.008355425,-0.014895941,-0.010586962,0.044927526,0.020443395,0.011893923,0.005139385,-0.059264157,0.010187454,0.011580025,-0.012647281,0.06638681,0.0003106888,-0.0620493,-0.0042205164,0.012784256,0.008869078,0.011814022,0.033946764,-0.010592669,-0.018114835,0.022829028,-0.014416532,-0.021447873,-0.020534711,-0.027006742,-0.024061795,-0.029632078,-0.0069856825,-0.009125904,-0.01469048,-0.0021701846,-0.01005048,-0.015660714,0.0062779826,0.0021502092,-0.021927282,-0.0011500124,0.0020831488,0.003250283,-0.015089988,0.018742632]},{"id":"guide-webhooks-2","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Creating a Webhook\nCreate a webhook on a text channel. Requires Manage Webhooks permission. The token is returned only when creating—store it securely. It will never be returned when listing or fetching.\n\n```javascript\nimport { Client } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\nconst channel = client.channels.get(channelId);\nif (!channel?.createWebhook) throw new Error('Channel does not support webhooks');\n\nconst webhook = await channel.createWebhook({ name: 'My Webhook' });\nconsole.log(webhook.id, webhook.token); // Store token—it won't be returned when listing\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.051986944,0.005757908,-0.027275464,-0.050528128,0.029463688,-0.025507199,0.005907105,0.05189853,0.035608403,0.022479048,0.03262446,0.028579557,-0.009460209,-0.07157046,-0.0010547414,0.05432989,-0.044029757,-0.00731619,-0.029087933,-0.008150589,-0.004851673,0.022379583,0.00028423453,0.035343163,-0.031718224,0.015383892,-0.05123543,0.009294434,-0.048980895,-0.004257647,0.024821997,-0.018290475,-0.0024479397,0.03525475,-0.0039482005,0.059059996,0.038813382,-0.004276987,-0.011361092,0.02081025,-0.041112125,0.017240567,0.034348518,0.032049775,0.025661923,0.04672636,-0.07532802,0.02429152,-0.051986944,0.028159594,-0.025485096,-0.004525649,0.0024479397,0.04148788,-0.015814906,-0.028712176,-0.043477178,0.008178218,-0.09354113,0.054108858,-0.002670354,-0.014521863,0.0018290475,-0.009255754,0.01953931,0.035962056,-0.03640412,0.0059513114,-0.014831309,0.051058605,0.10247086,0.008741852,0.041045815,-0.016080145,-0.029795239,-0.005746856,-0.02659026,0.028623763,-0.02309794,-0.009520994,-0.010117782,-0.016687986,-0.1309399,-0.01356037,-0.05835269,0.019782446,-0.025684025,-0.083285205,0.012234172,-0.017737892,-0.017848408,-0.02215855,-0.048494622,0.026966017,0.04659374,0.012444153,-0.038724966,0.022722185,-0.02712074,0.0044013183,0.062066045,-0.01543915,-0.060076747,0.0067028236,0.026081884,-0.03127616,0.016931122,-0.0002996032,-0.011117956,-0.036956705,-0.07064212,-0.054197274,-0.022921113,0.06538154,0.036934603,-0.03322125,0.036138885,0.0013621154,0.016345385,-0.016632728,-0.038968105,-0.013847712,0.044891786,-0.025595613,0.0030806463,-0.03348649,-0.03719984,0.02464517,-0.008868946,-0.014831309,0.08173797,0.009692294,0.027761735,0.008692119,-0.037641905,-0.013372492,0.018213114,0.024114693,-0.00053600484,0.026435537,0.02074394,-0.047168426,0.065779395,-0.02316425,0.001997585,-0.002901057,-0.026037678,0.035011616,-0.031010918,-0.0068907016,-0.04712422,-0.003403907,0.030436233,0.0063270675,0.014798154,0.01570439,0.0022863094,0.052605834,-0.04102371,-0.06657512,0.00043550393,0.017085845,0.015461253,-0.018688334,-0.021716485,-0.0076753683,0.019815601,-0.026435537,-0.033398073,0.0342601,0.009968584,-0.021042334,-0.007161467,0.016842708,0.008636861,-0.008233476,-0.019041987,-0.050970193,0.0061668186,0.007802462,0.018754644,0.014400295,0.042018358,-0.005840795,-0.009664665,-0.010261454,0.02262272,-0.026413435,-0.0012129182,-0.016566418,-0.046372708,0.0042272545,-0.012742548,0.0007363159,0.05021868,0.02725336,0.008752904,-0.0072498797,0.023672625,-0.0355863,-0.00912866,-0.018412042,-0.01664378,-0.014201365,-0.0006617173,0.016886916,-0.022202756,0.016323281,-0.023318974,-0.010692468,0.028314317,0.025330372,0.015461253,0.0076422133,-0.09168445,0.019307226,-0.008222424,0.023053734,-0.029176345,-0.040515333,-0.064011134,-0.012731496,0.009625983,0.003124853,0.016997432,0.032469735,0.014831309,-0.05667284,-0.007349345,0.0107200965,-0.010421703,0.024070485,-0.0100017395,-0.058308486,0.016334333,0.011095853,0.022269066,0.033795934,-0.023274766,0.012455205,-0.03081199,-0.020091893,-0.0021025757,0.005835269,-0.00929996,0.00045069994,-0.027651219,-0.0382608,0.057070702,0.008437932,0.06807814,0.020434493,0.01731793,0.009753077,0.021395987,-0.011449506,-0.004652743,0.019793497,0.027164945,-0.018179959,0.078997165,-0.025153548,-0.03852604,0.023871556,-0.004647217,-0.042902492,0.008752904,0.008465561,-0.00414713,0.0151076,-0.0117589515,-0.011289257,0.039785925,-0.017273722,-0.08916468,0.02067763,-0.025573509,-0.00949889,-0.021230211,0.02369473,-0.025264064,0.0062441803,-0.02128547,0.020633424,0.032116085,0.007769307,-0.016875863,0.006647565,0.023915762,0.032182395,-0.042394113,0.010200669,-0.01919671,-0.014510811,-0.0069459598,0.092480175,0.03947648,0.019351432,0.035939954,0.030303614,-0.018157855,0.019749291,-0.04316773,-0.02926476,-0.0053655743,0.0043902663,0.017030587,-0.054020446,0.022943217,-0.03134247,-0.012985684,0.032315012,-0.016599573,-0.02316425,-0.022545358,0.038371317,0.06569099,0.000054394823,0.02866797,-0.021451246,-0.012201018,-0.013273027,-0.015251271,-0.042814076,-0.050704952,-0.047168426,-0.00502021,0.008415828,0.050130267,0.007691946,0.05432989,-0.029242655,0.031121435,0.008205847,0.01698638,-0.041178435,0.029949961,0.0066144103,-0.0041139754,-0.0022448655,0.03640412,-0.006531523,-0.025794541,-0.018986728,-0.009841491,0.024888307,0.038702864,-0.0066641425,-0.008852368,-0.017561065,-0.020257667,0.0064044287,-0.024402035,-0.07957185,-0.034812685,0.000014246262,0.016687986,-0.0049207453,0.015969628,-0.032845493,-0.0516775,0.007614584,-0.011471609,0.0476547,0.010499064,-0.029375276,0.038437624,-0.03852604,0.008592655,-0.020500803,0.017406343,-0.020578165,0.035033718,0.007216725,-0.039697513,-0.0068851756,0.012764651,0.04544437,0.008001392,0.021429142,0.07475334,0.00009747897,-0.018113649,-0.057910625,0.004550515,0.021716485,0.016091198,0.042195186,-0.011792107,0.00543741,-0.02221381,-0.022379583,0.00072457356,0.028358525,0.009288909,0.024556758,0.03571892,-0.000060654544,0.01578175,-0.0012806095,0.018909367,0.03262446,-0.015947526,0.03147509,0.06303859,-0.014411347,-0.041333158,0.03571892,0.015361788,0.015947526,0.015229168,0.058838964,-0.005492668,0.01268729,-0.008482139,0.009725449,0.02517565,-0.021042334,0.02262272,-0.019373536,-0.0093275895,0.009443631,0.019572465,-0.008703171,-0.010996388,-0.0010181329,0.005724753,0.0054512243,-0.004851673,-0.04462655,-0.033132836,-0.061005086,0.027142843,0.014787102,0.02471148,-0.027695425,0.028756384,-0.03456955,-0.01043828,-0.015317582,-0.0152954785,0.01657747,0.012742548,0.033000216,-0.007393551,0.017804202,-0.0044869683,-0.002073565,-0.021451246,0.014820257,-0.02329687,-0.059590477,0.027938562,-0.003561393,0.0006188922,0.008520819,-0.024954617,0.039852235,0.0006185468,0.048096765,-0.032580253,-0.031939257,-0.0052108513,0.039100725,0.009598355,-0.008918678,0.0009711634,0.035100028,0.014864464,-0.029728929,0.036691464,-0.02033503,0.009294434,0.039962754,-0.0089407815,-0.008752904,0.042150978,-0.010493538,0.014610277,0.011305834,0.05746856,0.017627375,-0.065293126,0.0022655874,0.0031966886,0.10238245,0.041509982,-0.01920776,-0.05256163,-0.02491041,-0.039189138,0.0057137012,0.01537284,-0.009178393,-0.0056915977,-0.04511282,-0.049776614,0.0138808675,0.014676586,-0.010062524,-0.02725336,-0.021539658,-0.03308863,0.011946829,0.0068299174,0.00069867127,0.0025474045,-0.0069349078,-0.005039551,0.046107467,-0.0149307735,-0.004489731,-0.017284775,0.013980333,-0.01124505,0.0015955814,-0.032668665,0.017804202,-0.010919026,-0.012046294,-0.024114693,0.043609794,0.014897619,-0.004464865,-0.033994865,0.0006903825,-0.032005567,-0.0016384065,0.009913326,0.000066180364,0.014157158,0.0013179088,0.0029480266,-0.012079449,-0.009852543,-0.00005404946,-0.038083974,-0.005785537,-0.006249706,-0.0035171865,-0.040891092,0.059855714,-0.037641905,0.033840142,-0.03337597,-0.012543619,-0.005056128,0.023606317,-0.012234172,0.040935297,0.035873644,-0.045090716,-0.021716485,-0.005487142,0.032933906,0.032381322,0.009067875,-0.00065584615,0.0033293085,-0.016732192,-0.006023147,0.011637383,0.017085845,0.013074097,-0.02718705,0.0021688857,0.010703519,0.009112082,-0.011858417,-0.011012966,0.0050754687,-0.019340381,0.01832363,0.010786407,0.017008483,0.020379236,-0.045930643,0.010034895,0.0027173236,0.028778486,-0.008178218,-0.026479743,0.015627028,0.049246136,-0.014046642,0.027496496,-0.0121236555,-0.026347125,0.030767784,0.00006423769,0.0315635,-0.016931122,-0.011560022,0.018467302,-0.015693337,0.00076463574,-0.011090327,-0.00044862775,-0.015129704,0.02006979,-0.019649826,0.008051124,-0.039940648,-0.03618309,-0.026634468,0.0224901,0.0026579208,0.017704736,-0.026833396,0.033994865,0.027894355,-0.0016909018,-0.017019534,-0.033000216,0.036735673,0.026811294,-0.0152844265,0.031939257,0.020036634,0.026479743,0.025396682,0.006780185,0.004437236,0.001264032,-0.011327937,0.013140407,0.020832352,-0.01030566,0.0114052985,0.00668072,0.021020232,-0.011261627,0.03750929,-0.010333289,-0.033862244,0.0039399117,0.012598877,-0.0019934408,-0.034525342,-0.00070247025,0.012333637,-0.037177738,0.014422398,-0.0052025625,-0.02725336,0.009587303,0.0039841183,0.034238,-0.0041084494,-0.0013780021,0.0064486354,0.04867145,0.01967193,-0.013792454,0.0248441,-0.060253575,-0.014599225,0.0064044287,0.031254057,0.00052046345,0.0070730536,0.020843405,-0.023252664,0.02718705,-0.021429142,0.025905058,-0.03067937,0.010819562,-0.02006979,-0.00096770976,-0.031629812,0.028424835,-0.009681242,-0.0077251005,-0.008973937,0.007807988,-0.0006482481,-0.050130267,0.031010918,0.032867596,0.022269066,-0.004083583,-0.018566765,-0.021594917,0.021937517,-0.01242205,0.027032327,0.01336144,0.034127485,0.047035806,-0.031895053,-0.023385283,0.023650523,0.009974111,-0.0011459176,0.0010851335,0.025595613,0.023959968,0.021782795,-0.024490448,-0.0020846168,-0.0335528,-0.010377496,-0.0076698423,-0.0026606838,-0.000534278,0.019417742,-0.009504416,0.019561414,0.011847365,-0.011991036,0.028137492,0.004089109,-0.02926476,-0.0145771215,0.026811294,0.004083583,-0.00899604,0.00899604,-0.0036746725,0.009786232,0.019904016,-0.034149587,-0.03134247,-0.010360918,-0.033884346,0.030900402,0.014787102,0.0008820595,-0.01825732,-0.006365748,-0.026546054,0.021097593,-0.04040482,-0.031320367,0.035696816,-0.054860372,0.0105377445,-0.022070138,-0.030856196,-0.005835269,0.027540702,-0.019550363,0.02087656,0.032956008,-0.0014070127,0.029706825,-0.019981377,0.001967193,-0.0042548836,-0.039830133,0.005053365,-0.041134227,0.029574204,-0.023805246,-0.0064154807,0.0027684374,-0.044206586,0.00072664575,0.015881216,-0.024733584,0.031917155,0.0108803455,0.0149307735,-0.03337597,-0.041797325,-0.04619588,0.0047936514,0.03419379,-0.0047218157,-0.024136795,-0.03342018,-0.016400643,0.012455205,0.021992777,-0.048627242,-0.038857587,0.012002088,-0.004661032,-0.050174475,-0.0043571116,0.02356211,-0.018555714,-0.0029867073,0.024114693,-0.05348997,-0.012952529,0.0056059477,-0.05552347,-0.018975677,-0.025794541,-0.017295826,0.048317797,-0.010714571,-0.024976721,0.03140878,-0.004500783,-0.06927172,-0.03512213,0.010399599,-0.009034721,-0.014864464,-0.038305007,-0.017450549,0.036293607,-0.01342775,-0.01543915,0.012101552,0.0114274025,0.017340032,-0.019119348,0.030988816,0.0035365268,0.017472653,0.03927755,-0.0005522369,0.015991732,-0.031651914,-0.033818036,-0.0121347075,0.0315635,0.022125395,0.0093275895,0.011725796,0.013063046,0.042040464,-0.014997084,-0.00021205346,0.038614452,0.030259408,-0.02276639,0.012532567,0.02222486,-0.016433798,0.01617961,-0.019550363,-0.019826652,0.00886342,0.0056584426,-0.013914023,-0.0021467824,0.0010492157,0.020058738,-0.0044565764,-0.0149307735,0.0007570378,-0.011825262,-0.004600248,0.007951659,0.021992777,-0.0080842795,-0.0049179825,0.035962056,0.011957881,0.018213114,0.0026662096,-0.019229865,0.013947178,0.0138698155,0.0005487833,-0.01960562,-0.01135004,-0.016201714,-0.025153548,-0.0110848015,0.0071006827,-0.010416176,-0.011438454,0.026966017,0.041532088,0.08686594,0.033199146,-0.00960388,-0.004619588,-0.028513247,0.043963447,-0.025065133,0.014919722,0.008719749,0.01416821,0.057689592,0.03432641,0.011891571,0.0010347103,-0.0124883605,-0.0029646042,0.005647391,0.021296522,-0.012068397,0.000011882678,-0.0042990902,0.05525823,-0.023318974,-0.029596308,0.002843036,0.03249184,-0.029773135,0.008415828,0.0029425009,-0.01570439,-0.016389592,0.017693685,0.026523951,-0.0015831483,-0.0077029974,0.004218966,-0.04933455,0.018345732,-0.0042686984,-0.006150241,-0.0021025757,-0.022832701,-0.0002327753,0.025529303,-0.004705238,0.019771395,-0.0063767997,0.044759165,0.04332245,-0.012499412,0.010233824,-0.022269066,-0.020788146,0.009388373,-0.0073880255,0.01181421,0.00046140622,-0.031033022,0.053357348,-0.00035779705,-0.00061336637,-0.014046642,-0.015538614,0.034525342,0.0016605098,-0.043897137,0.019506155,-0.0033182567,-0.009172866,-0.007995866,0.012433102,0.020666579,0.01087482,-0.0020224513,0.024379931,-0.01799208,-0.020766044,-0.0060397247,-0.0055534523,-0.016875863,0.010786407,-0.024998823,0.051014397,0.0072333026,0.01104612,-0.0382829,0.03551999,-0.027363876,0.045798022,0.05384362,0.023738936,0.04069216,0.03410538,-0.009244702,0.01087482,-0.009974111,-0.007001218,-0.028380627,0.025418786,0.028026974,-0.004185811,-0.0003113456,0.016842708,0.04444972,0.016422747,-0.008835791,0.016069094,-0.004249358,0.008156115,0.010863768,0.011272679,-0.01631223,0.022070138,-0.028071182,-0.004622351,-0.019616673,0.008216899,-0.029043727,0.046947394,0.031872947,-0.018003132,-0.010239351,-0.0031966886,-0.014124004,0.0074156546,-0.039918546,0.0022780206,0.00167018,-0.0020044923,-0.0035227123,-0.0017931296,0.018699385,-0.016002784,-0.03235922,0.019904016,0.029684722,0.026479743,0.0181247,-0.014742896,-0.02356211,0.015505459,0.014378192,0.011515816,-0.0114274025,-0.011991036,0.00521914,-0.0017447786,-0.0035586301,-0.024866205,-0.007874298,0.0034702169,-0.032513943,-0.020556062,-0.0045753815,-0.0015941999,0.004536701,0.0055037197,0.028115388,-0.026081884,0.0100238435,0.026081884,-0.00303644,-0.015096549,-0.030502543,0.008984989,0.00037506525,0.022677979,-0.0011224328,0.054197274,0.008100857,-0.046240088,-0.016367488,0.010841665,0.011162163,-0.0069625373,-0.018168906,0.00041685428,-0.019473001,0.029684722,0.03739877,0.005680546,0.027607013,0.028424835,0.03812818,0.0422836,0.035409473,-0.014124004,0.020633424,-0.0082555795,-0.014875515,-0.003500609,-0.017141104,0.03330966,-0.017163206,0.008167166,-0.013947178,0.016555365,0.021572813,-0.014875515,-0.010228299,0.018555714,0.0011700931,0.014135055,0.0038376842,-0.0017737892,0.011018491,0.013350389,-0.016997432,-0.02362842,-0.00008530489,-0.016953224,0.025507199,-0.0071725184,0.0002635127,0.014333985,0.0019478527,0.017218465,0.034238,-0.020102944,0.013803506,-0.028314317,0.012178914,-0.006597833,-0.02860166,-0.012013139,0.011803159,0.026634468,-0.007349345,0.01084719,-0.011869468,-0.04343297,-0.013505111,0.021395987,-0.009150763,-0.016831657,0.04946717,0.010515641,-0.012377843,-0.0017503045,0.031674016,-0.018478353,-0.018478353,0.017207414,-0.020412391,-0.017406343,-0.00033742058,-0.0110626975,-0.007719575,-0.032536045,0.003845973,0.019583518,0.0035365268,0.0039868816,0.009786232,0.0035807334,0.024203105,-0.0028181698,0.010802984,-0.0021633597,-0.010725623,0.0054760906,0.0102061955,-0.032513943,-0.02362842,0.01731793,0.022788495,0.010576425,-0.0077803587,0.0211418,-0.032845493,0.061535567,0.019229865,-0.00993543,0.022921113,-0.028358525,-0.004503546,-0.009255754,0.069183305,-0.004995344,-0.0014256623,-0.001657747,0.028115388,0.012598877,0.017914718,0.035962056,0.0043571116,-0.021793846,-0.014179262,0.0018594394,0.012632032,-0.002840273,0.03512213,-0.001730964,-0.022854805,-0.01154897,-0.0024451767,-0.009764129,-0.03536527,0.007056476,-0.009277857,0.02939738,-0.0610935,0.011361092,-0.010974284,0.0035392896,0.011129008,-0.007879823,0.002931449,0.00009799702,-0.0128309615,-0.013947178,-0.04880407,0.010454858,-0.025794541,0.004210677,0.016975328,0.0048820646,-0.0023636709,-0.029507896,0.016765347,-0.030701473,0.006559152,0.041465778,-0.01919671,-0.0423057,-0.031033022,-0.054153066,0.007028847,0.020589218,0.029375276,0.0051417784,0.014764999,0.0066144103,-0.023517903,-0.015417047,-0.019904016,0.005967889,0.040073268,0.027540702,-0.029596308,0.019119348,-0.023937866,0.031651914,0.022456946,0.03852604,-0.0039813556,0.0063878517,0.01987086,0.018511508,-0.032536045,0.013991384,-0.015273375,0.010112256,0.019097244,-0.03746508,-0.004464865,0.005719227,-0.023584213,-0.015207065,0.04338876,0.004489731,0.028977416,0.042018358,0.023318974,-0.009360745,0.0030530172,-0.029618412,0.017771047,0.028049078,0.03967541,0.021539658,0.010996388,0.014588173,-0.02725336,-0.02873428,-0.021119695,-0.01785946,0.020511854,-0.0040725316,0.03706722,0.014068746,0.0022932165,-0.0100017395,-0.038106076,0.02975103,0.022534307,0.020290822,0.018102596,-0.021804897,0.0093275895,-0.006001044,-0.014820257,0.013460905,-0.022788495,-0.01037197,-0.0201361,-0.016831657,0.017737892,0.011272679,0.010095679,0.01235574,0.000003931213,-0.0015803854,0.04013958,-0.024623068,0.03397276,0.01369299,0.011129008,-0.0014256623,-0.019108295,-0.019904016,0.006559152,0.01168159,-0.040780574,-0.007365922,0.019108295,-0.029618412,0.010626158,-0.0002376104,0.0103553925,-0.014389243,0.03348649,0.017826306,-0.014411347,-0.0040421397,0.014986033,0.001657747,-0.001218444,-0.03370752,0.015516511,-0.0054180697,0.044162378,-0.00260957,-0.00886342,-0.0019989666,0.015538614,-0.018555714,0.032580253,-0.022401687,-0.032801285,-0.020931818,-0.0000756347,-0.018213114,0.006973589,-0.010316712,-0.022899011,0.023053734,0.00007408056,-0.02115285,-0.011968933,-0.013140407,0.011670538,-0.023274766,-0.00016439323,-0.020125048,-0.017096896,-0.01463238,-0.041576292,-0.019053038,-0.0043792147,-0.00681334,0.008725274,0.022258015,-0.0027449527,-0.009918853,-0.006465213,0.027673323,-0.022589564,-0.026501847,-0.015991732,-0.016212765,-0.0050119217,-0.007034373,0.0019326566,0.009924378,0.027054429,0.01631223,-0.0063602226,0.009349693,0.0011749282,0.04858304,0.02725336,-0.0027408083,-0.015162858,0.016124351,-0.008775007,0.01872149,-0.013372492,0.007835617,0.021296522,-0.018423093,0.045223337,-0.023738936,0.00097185414,0.013449853,-0.016301177,-0.00785772,-0.024203105,0.0056087105,-0.055081405,-0.019660879,0.009217073,-0.016411694,-0.0058573727,-0.008747378,0.009858068,-0.04283618,0.0059844665,-0.005423595,-0.03664726,0.017605273,-0.02537458,-0.03518844,-0.046063263,0.04033851,-0.017936822,-0.0033458858,0.011162163,0.043587692,-0.026037678,0.04840621,-0.009725449,0.051986944,0.00032792307,0.004713527,0.00046313304,0.006338119,-0.009907801,0.019428793,0.034768477,-0.0161133,-0.04747787,0.028889002,0.018754644,0.00718357,-0.004724579,0.012101552,0.016489057,0.008879998,0.009239176,-0.017063743,0.020854456,-0.028778486,0.026302917,0.013858764,-0.013063046,0.032536045,0.031010918,0.0028540876,0.006625462,-0.011946829,-0.0076974714,-0.011228473,0.0050367876,-0.029773135,0.0023857742,-0.017671581,-0.015538614,0.012665186,-0.014709741,-0.008542922,-0.029087933,0.0063491706,-0.0035475784,-0.021904362,0.011239524,0.0039260974,-0.012930426,0.0057965885,-0.014588173,-0.0029452636,0.041996256,0.024158899,0.02127442,0.04650533,-0.0013614247,-0.017771047,-0.02738598,-0.03706722,-0.015317582,-0.00879711,-0.0044151326,0.011792107,0.008548448,0.010659313,-0.0050478396,0.01161528,-0.03410538,-0.037752423,0.012278379,-0.011394247,0.010852717,-0.0049732407,0.0062331283,-0.007277509,0.03967541,0.0038570245,-0.0007114497,0.0010077719,0.03633781,-0.0017613561,0.022390636,0.015814906,0.01063721,0.0030778835,0.051191226,0.03815028,0.0063215415,0.012510464,-0.007454335,-0.06157977,0.0315635,-0.014753948,-0.0069072787,-0.004937323,-0.009747552,-0.03149719,0.012543619,-0.022921113,0.007338293,-0.023716833,-0.0027712004,0.009725449,-0.012366792,0.00020635496,0.013129355,-0.008034547,0.036028367,0.01604699,0.009239176,0.02169438,-0.03536527,0.004315668,0.013637732,0.0014560544,0.046991598,-0.00949889,-0.05879476,0.028314317,0.00016154398,0.032978114,0.011267154,0.047831524,-0.016212765,-0.02021346,0.0049870554,0.016234867,-0.023053734,-0.009509942,-0.022501152,-0.015682286,-0.009675716,-0.006846495,-0.014621328,-0.016566418,-0.00580764,-0.022434842,-0.015317582,0.036028367,0.0044510504,-0.012875168,0.0015223642,-0.006338119,-0.030458337,-0.0027380453,-0.0035503414]},{"id":"guide-webhooks-3","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Sending Messages\nSend text, embeds, or both. You can override the username and avatar for each message.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Hello from webhook!',\n embeds: [\n new EmbedBuilder()\n .setTitle('Webhook Message')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n username: 'Custom Name',\n avatar_url: 'https://example.com/avatar.png',\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.036601026,-0.028271139,-0.009603467,-0.008180731,0.034076817,-0.04038734,0.016372936,0.024117667,0.027743349,-0.0062244693,-0.0047013387,-0.012448939,-0.011100782,-0.071274474,0.014307674,0.04956628,-0.023681669,-0.0036658396,-0.021696722,0.015902516,0.02328009,0.009104362,0.002991761,0.05218228,-0.017302305,0.022293353,-0.037931975,0.035843764,-0.025333878,-0.04646839,0.013034096,-0.008995363,-0.0045062862,-0.0033904715,-0.031231347,0.036096185,0.0153862,0.02817935,-0.014778095,0.030978926,-0.0049308124,-0.032401662,0.024071774,0.02391114,-0.025494508,0.03676166,-0.08127952,0.0021527484,-0.022235984,0.056542277,-0.0010354993,0.0056565222,0.023796404,0.042246077,-0.007968469,-0.007882415,-0.040272605,0.0038895763,-0.076277,0.0242783,0.010854098,-0.016258199,-0.021834405,-0.035247132,0.016464725,-0.0147551475,-0.031437874,-0.010010783,0.0016981041,0.04022671,0.08825552,0.0052406015,0.0021398407,-0.012357149,-0.003998576,-0.035407767,-0.032286923,0.027445033,0.0001136611,-0.059387747,-0.026320614,-0.011330255,-0.09940793,-0.015477989,-0.094175935,0.020262511,-0.027422087,-0.046238914,-0.006281838,-0.012414518,-0.016831882,-0.021226302,-0.062692165,-0.006620311,0.037564818,0.024737246,-0.022373669,-0.0040071816,-0.0011452163,0.024048826,0.10390561,-0.03414566,-0.08251868,0.0064252587,0.019539671,-0.04656018,0.04965807,0.019310197,-0.00021871696,-0.012448939,-0.067694694,-0.04004313,-0.0012563675,0.03926292,0.02964798,-0.01885125,0.004982444,0.008169257,-0.006534259,-0.037909027,-0.06361006,-0.021673774,0.072054684,0.006935837,-0.007716047,-0.0368305,-0.06452796,0.049474493,-0.060122065,0.017153146,0.04272797,-0.015879568,0.0398825,0.027077876,-0.03979071,-0.02634356,0.013711044,0.020916512,-0.028798927,0.019149566,0.042452604,-0.054890066,0.0022746564,-0.026045246,-0.0031036295,0.00914452,-0.059158277,0.024140615,-0.026940191,-0.026412403,-0.007979942,-0.006838311,-0.031598505,0.01810546,-0.0025270772,0.044357233,0.006534259,0.036440395,-0.03336545,-0.056588173,0.0077676787,0.00589747,0.007234153,-0.024415983,-0.04141997,-0.03302124,0.038849868,-0.035247132,-0.0049250755,0.03214924,-0.0054586013,-0.021272196,0.0031724714,-0.00045679574,0.016200831,-0.024507772,0.001382578,-0.050989017,0.003298682,0.05277891,0.033296607,0.029303769,-0.00047795032,-0.034811135,-0.032470506,0.003545366,0.0049049966,0.011525308,-0.0031667347,-0.033847347,-0.02808756,0.0051344703,-0.010854098,-0.023085037,0.051952805,-0.008846205,0.026068192,-0.005137339,0.013596307,-0.025287982,0.012988201,0.01005094,0.0043485234,-0.029303769,-0.035040606,-0.0076070474,-0.0053696805,0.0083471,-0.021363985,0.015879568,0.02496672,0.011117992,0.0016665515,-0.02010188,-0.09720498,0.020813249,-0.01046973,0.01672862,-0.039744813,-0.0053438647,-0.07187111,0.0316444,0.038758077,-0.050254703,-0.0073603634,0.017795673,0.00870852,-0.02739914,-0.029257875,0.018013671,0.016349988,-0.011479413,0.012162097,-0.056221012,0.019080725,0.013435675,0.02469135,0.03111661,0.023865247,0.019126618,-0.039469447,-0.039561234,0.015110832,0.0029602086,-0.005501628,-0.008846205,-0.0064941007,-0.051952805,0.01529441,0.023543984,0.077607945,0.0037318133,0.011640045,-0.0028770242,0.052733015,-0.038253237,-0.029670928,0.018518513,0.013561886,-0.0385745,0.018965987,0.0013811438,-0.032998294,0.025242088,0.013848728,-0.008450363,0.015489463,0.025265034,-0.0033244977,-0.016327042,-0.027123772,-0.017680936,-0.001143065,0.047638703,-0.04561934,0.03196566,-0.009442836,0.0006859107,-0.02135251,0.029097242,-0.016797462,0.01919546,-0.026595982,0.0007816442,-0.02609114,0.013745464,0.013011149,-0.013974938,0.026917245,0.027490929,-0.015317358,0.015500937,0.019218408,-0.009138783,0.013022623,0.0927532,0.052824806,0.00981573,0.030565873,0.020021565,-0.029877452,0.012345675,-0.020354303,0.0041764183,0.01754325,0.018449672,-0.01576483,-0.010452519,0.0216623,-0.050392386,-0.00301184,0.04135113,-0.034811135,-0.0047816546,-0.031690296,0.012861991,0.031736188,0.03621092,-0.00518897,-0.015994305,0.025976403,0.01763504,0.008593784,-0.05869933,-0.047592808,-0.068245426,0.006907153,0.0023879588,0.03779429,0.016889252,0.03570608,-0.011003256,0.03136903,0.041075762,0.018403776,-0.0062588905,-0.0047873915,-0.004474734,-0.008542152,0.04731744,0.0063621537,-0.033732608,-0.0009845848,-0.015019042,-0.06214143,-0.0035511027,0.01906925,0.03336545,-0.023934089,-0.0100337295,-0.0013668017,0.016063146,-0.033158924,-0.05245765,0.0020380118,-0.017451461,0.016900726,-0.01769241,0.0002432778,-0.028362928,-0.025425667,0.024714299,0.0016364331,0.014204411,0.008415941,-0.0132176755,0.0057540485,-0.010240256,-0.0047386284,-0.02721556,0.028454717,-0.008054521,0.018082514,0.007297258,-0.034719344,-0.009155993,-0.013653675,0.044494916,0.0038149974,0.008685573,0.046950284,0.015351779,-0.037243553,-0.0641608,-0.017210515,0.029877452,0.016223779,0.02521914,-0.017485883,0.0069702584,0.015099358,-0.008605258,-0.046307757,0.01213915,0.045206286,0.035591345,0.04568818,0.009735415,0.007331679,-0.014651884,0.0016880647,0.0069645215,0.010458256,-0.0027981428,0.043921232,-0.0009458612,-0.017038409,0.016533567,0.0048132073,0.007956995,0.02066409,0.014961674,0.0068669952,0.016338514,-0.052228175,-0.0076127844,0.03501766,-0.05080544,0.021742616,-0.00036195864,-0.033296607,-0.019998617,-0.0007916837,-0.02765156,0.027628612,-0.016889252,0.017359672,-0.024737246,0.0029630768,-0.051952805,-0.08802605,-0.071825214,0.03614208,0.0035166817,0.034742292,-0.040157866,0.04362292,0.0011609927,-0.015959883,0.015214095,-0.022717878,0.0290284,0.0031609978,0.032791767,-0.033296607,0.00044460496,-0.02574693,-0.0028569454,-0.04176418,-0.018231671,-0.015673041,-0.060535118,0.03345724,-0.0016177883,-0.00081893365,0.017279357,0.00645968,0.05511954,0.04334755,0.028684191,-0.011989992,-0.027009035,-0.030657664,0.038345028,0.024347141,-0.038735133,-0.030221663,0.035591345,0.042590287,-0.016923673,0.021478722,0.023819352,0.009741151,0.015879568,0.00015946617,-0.056312803,0.038023762,-0.019906828,0.021237776,0.037381236,0.04750102,0.0061785746,-0.05649638,-0.022694932,-0.016005779,0.10353845,0.03586671,-0.028477665,-0.007268574,-0.019149566,-0.013802833,0.013814306,-0.004030129,-0.010693466,0.007486574,-0.033158924,-0.024255352,-0.015868094,0.000025658905,-0.036027342,-0.026710719,-0.029762717,-0.036073238,0.010263204,0.030221663,0.010716414,-0.022293353,-0.0031466556,-0.0076127844,0.025242088,-0.015064937,-0.07402816,0.0012054531,0.02505851,-0.01025173,0.029487347,-0.02661893,0.040800393,-0.002888498,-0.042177234,-0.01248336,0.03754187,0.0052807597,-0.014720727,-0.016785989,0.002157051,-0.032286923,-0.011989992,0.008811783,-0.022086827,-0.004549313,-0.00500826,0.014525674,-0.04559639,-0.029303769,0.02028546,-0.057414275,-0.02980861,0.012058834,-0.0050828387,-0.04722565,0.02833998,-0.02025104,0.017462935,-0.04653723,0.017210515,-0.006126943,0.041465867,-0.013917569,0.026917245,0.016682725,-0.029280823,-0.00074005214,-0.0027766298,0.032631136,0.02833998,-0.00792831,0.019356092,-0.0093854675,0.013493043,0.010710677,-0.010446782,0.030038085,0.032401662,-0.031919766,0.010572992,0.006849785,0.0051660226,-0.00529797,0.0027536822,-0.004833286,-0.017279357,-0.0061613643,0.024760194,-0.0016421699,0.032011557,-0.019860934,0.040800393,-0.01772683,0.00020007223,-0.012185045,0.00035658033,0.0074578896,0.02955619,-0.021455774,0.0043800757,-0.014330622,-0.010223046,0.028156402,0.012494833,0.034398083,-0.017657988,-0.004325576,-0.014032306,0.0017784198,-0.030841243,0.00016905744,-0.020021565,-0.02703198,0.013125885,-0.0043313126,-0.016625358,-0.028271139,-0.004956628,-0.0010118348,0.024048826,-0.0008712823,-0.021983564,-0.007411995,0.0048906547,0.014812516,0.007647205,-0.028133454,-0.02266051,-0.008306942,0.016063146,0.026159981,0.0073661003,0.023521036,0.029189032,0.01925283,0.011760518,0.007893889,0.020732934,-0.029625032,0.029395558,0.016372936,-0.013401254,0.010572992,0.02213272,0.022373669,0.01192115,-0.006855522,-0.030129874,-0.027674507,-0.023681669,0.034007978,-0.031185452,0.00362855,-0.021891775,-0.011439255,-0.009764099,0.038299132,0.022453984,-0.0139864115,0.014858411,-0.018139882,0.033434294,-0.004012918,0.0032900767,-0.011307308,0.03536187,0.040777445,-0.018897144,0.012999675,-0.049795754,0.016648304,-0.0013969201,-0.0043772077,0.009184678,-0.0059720487,0.013011149,-0.029716821,0.04906144,-0.008479047,0.007188258,-0.0381385,-0.010641835,-0.026940191,0.021765564,-0.01482399,0.035476606,0.012207991,-0.011967044,-0.00223163,-0.025127351,-0.0024252483,-0.033135977,0.023727562,0.026504193,-0.019000407,0.009242047,-0.021616407,0.00161492,0.0242783,-0.019677354,0.01046973,0.01573041,0.03311303,-0.00082108495,-0.03226398,-0.01828904,0.027536822,-0.0019347486,0.009419888,0.015489463,0.01525999,0.030359348,0.021077143,-0.031942714,0.0022502749,-0.018931566,-0.031598505,-0.002456801,-0.009150256,-0.035660185,-0.009620678,-0.008387257,0.028317032,-0.010561519,-0.013240622,0.01273578,0.014147043,-0.011427782,-0.020044513,0.018151356,-0.008697047,-0.031001873,0.000917177,-0.009305151,-0.009855888,0.010395151,-0.017405568,-0.00013149908,-0.015879568,-0.048831966,0.019987144,0.01685483,-0.008438889,-0.004847628,-0.017141672,-0.018013671,-0.003981366,-0.0015102227,-0.023199774,0.027743349,-0.02912019,-0.02677956,-0.009511678,-0.023417773,-0.00008488728,0.008536415,0.01304557,0.0019619986,0.013722517,0.02687135,0.04410481,-0.0013890319,-0.012563676,-0.00158767,-0.013286517,0.006344943,-0.020836197,0.020296933,-0.04348523,-0.004078892,0.011502361,-0.01785304,-0.02409472,0.0069759954,0.032975346,0.045986496,-0.019654408,0.016923673,-0.033571977,-0.028798927,-0.019677354,0.009414151,0.005100049,0.0036400238,-0.024897877,-0.034558713,-0.03155261,0.009603467,0.05479828,-0.055807963,-0.05511954,0.027972823,-0.018575883,-0.0115597285,0.012380097,0.030129874,0.015753357,-0.017313778,0.015282936,-0.044150706,-0.031024821,-0.008358574,-0.042154286,-0.014135569,-0.021157458,-0.016051672,0.032837663,-0.036256816,-0.01841525,0.0433246,-0.0019189724,-0.077929206,-0.017439988,0.030175768,-0.03345724,-0.025632193,-0.0005740424,-0.031414926,0.009569046,-0.0035597081,-0.014973148,0.0074349423,-0.008352837,0.0042538657,-0.034696396,0.032011557,-0.013206202,0.029785663,0.010418098,-0.016889252,-0.0072169425,-0.006947311,-0.016407358,-0.00069236464,0.039056394,-0.011353203,0.0041878917,0.018690618,-0.0041333917,0.0546147,-0.021237776,0.0020853407,0.025333878,0.013756938,-0.025586298,0.00905273,0.034742292,-0.0014464003,0.00044030233,-0.036968186,-0.036440395,0.0028253929,0.0053754174,-0.025976403,-0.02599935,0.010492677,0.030382294,0.014640411,0.016464725,0.00080817705,0.026412403,0.016533567,0.01317178,-0.013906096,0.005386891,0.027376192,0.028936611,-0.021593459,-0.0012821833,-0.0029888926,-0.021799985,-0.004210839,0.0020451827,0.013756938,-0.015684515,0.027077876,-0.037931975,-0.015994305,-0.02240809,-0.013561886,-0.0072112055,0.013573359,0.009614941,0.061407115,0.03545366,0.026802508,-0.0229703,0.022786722,-0.009242047,0.02912019,-0.009442836,0.009351046,-0.010613151,0.021547563,0.027077876,0.030015137,0.013378306,0.010188624,-0.026550086,0.01906925,0.02730735,0.028615348,-0.023773458,0.023085037,-0.017451461,0.030795347,-0.031621452,-0.043921232,0.015546831,0.046147127,-0.042154286,0.009368257,-0.014869885,-0.008570836,-0.014938726,-0.0086224675,0.009414151,-0.009058467,0.02599935,-0.0008024402,-0.052319963,0.018243145,-0.00636789,-0.019734723,0.016120516,-0.033296607,-0.005949101,0.04284271,-0.008834731,-0.0057655224,0.0031925505,0.049703967,0.04846481,-0.00217713,-0.0064941007,-0.017761251,0.008065995,0.0015145253,-0.027192613,0.00792831,0.027009035,-0.00046504245,0.033158924,0.0041563394,-0.018518513,-0.026022298,-0.00927073,0.012104728,0.0026475508,-0.030818295,0.02400293,0.015041989,-0.02721556,0.023704614,0.0012958084,0.013034096,-0.0030175769,0.015489463,0.029189032,-0.008243836,-0.06365596,0.01351599,-0.010498414,-0.047087967,0.007096469,0.023119457,0.06439027,-0.0010218743,-0.014789569,-0.04456376,0.04222313,0.003264261,0.04359997,0.017279357,-0.0032527873,0.014778095,-0.011852307,-0.019459356,0.0056507858,-0.0015575516,-0.0007787758,-0.024324194,0.00015865943,0.010681992,-0.004543576,0.044058915,0.037243553,0.032906502,0.0111810975,0.021547563,-0.0028253929,0.001204019,0.008065995,0.018369356,0.021788511,0.022935878,0.011158151,-0.000427753,0.019826513,-0.026687771,0.017497357,-0.006849785,0.030129874,0.013963464,-0.012299781,-0.036463343,0.0024309852,-0.0053438647,0.013183254,-0.048510704,0.0034134188,-0.022671985,0.019677354,0.013240622,-0.015925463,-0.006666206,0.0016679857,-0.05328375,0.041970707,0.005673733,0.029946296,-0.0049365493,-0.020985354,0.0047587072,0.012552202,-0.008054521,0.03579787,-0.004976707,-0.01754325,0.0009021178,0.012816097,-0.0028311296,-0.0024281167,0.018220197,0.032539345,-0.040961023,-0.018920092,0.00038759512,-0.006872732,-0.017795673,0.026481245,0.017772725,-0.025287982,-0.015064937,0.009987835,0.0058343643,-0.014892831,-0.049428597,0.009655098,-0.008192205,0.030565873,0.022362195,0.046927337,-0.019597039,-0.047592808,-0.022935878,-0.018392304,0.010188624,0.0049738386,-0.032699976,-0.009092889,0.008335626,0.012655465,0.04782228,-0.009700993,0.06819953,0.017026935,-0.0034421028,0.032126293,0.033778504,-0.0024811826,0.01707283,-0.012311255,-0.007337416,-0.047730494,-0.00025690277,0.0045665232,0.005544654,0.022993248,0.009844414,0.02980861,-0.020055987,0.015868094,-0.013068518,0.018621776,0.0006199371,0.014938726,-0.02358988,0.024645457,-0.020067459,0.013079991,-0.024668405,-0.048510704,-0.0019003276,-0.014204411,0.01351599,0.012988201,-0.020457564,0.00061635155,0.023727562,0.03058882,0.032355767,-0.008565099,-0.002238801,-0.020572301,0.02110009,0.004661181,-0.046215966,-0.0055790753,0.02088209,0.035660185,-0.012242412,-0.011978518,0.0005152398,-0.017118726,-0.007956995,0.019642934,0.021145985,-0.017646514,0.04481618,-0.0023994325,-0.024806088,0.029097242,0.04688144,-0.03327366,0.010716414,0.009465783,-0.013504517,-0.005768391,-0.0042882864,0.0010598808,-0.01772683,-0.02150167,-0.020262511,0.048235334,0.0041018394,-0.006195785,0.033296607,-0.0050111283,0.04722565,0.019551145,0.017256409,-0.009890309,-0.00379205,-0.009104362,-0.03180503,-0.016774515,-0.05296249,0.021157458,0.018702092,0.029097242,-0.015432094,0.018185778,-0.048831966,0.042865656,0.027146718,-0.05089723,0.019436408,-0.017589146,-0.0019347486,0.007796363,0.053696804,-0.006230206,-0.0166942,0.00026371528,0.0030778137,0.02031988,0.008679836,0.025127351,-0.004730023,-0.03423745,-0.017141672,-0.012804623,0.01213915,-0.009173204,0.02886777,-0.004902128,-0.0033560502,-0.022453984,0.009913256,-0.022798195,-0.018747987,0.013355359,0.0045550494,0.042337865,-0.070356585,-0.005378286,0.0077791526,-0.0010978874,0.026182929,0.030497031,-0.023429247,0.01351599,-0.014147043,0.0076701525,-0.02487493,0.019126618,-0.032883555,-0.010114046,0.04325576,-0.018369356,-0.0020408803,-0.021145985,0.005051286,-0.023475142,-0.0061556273,0.003031919,0.028982507,-0.031162504,-0.027192613,-0.0519987,-0.014147043,0.013584833,0.04038734,0.022786722,0.018908618,-0.012024413,-0.0023191168,0.032516398,-0.02019367,-0.0041993656,0.0333884,0.048418913,0.008697047,0.032791767,-0.005318049,0.040593866,0.010314835,0.021960616,-0.010555782,0.031254295,0.019987144,-0.008341363,-0.010854098,0.006872732,-0.028500613,0.019333145,-0.01015994,-0.03510945,-0.0073603634,0.016958093,-0.016992515,-0.012747254,0.023486616,0.024301246,-0.008415941,0.044311337,0.023245668,-0.015661567,-0.016189357,-0.023291564,0.017141672,0.024324194,0.04066271,0.020652618,-0.014307674,0.024071774,-0.039056394,-0.0025614982,-0.0043743392,-0.0096493615,-0.008025836,-0.011008993,0.020124828,0.014663358,0.015305884,0.0061097327,-0.02259167,0.007297258,0.017554725,0.013275043,-0.008765888,-0.025976403,0.015466516,-0.027123772,0.0061843116,-0.024645457,-0.013527464,0.005125865,-0.010435308,-0.029785663,0.008324152,0.035935555,-0.013619253,0.0019419197,0.016590936,-0.022683458,0.033663765,-0.02222451,0.011192571,0.024989666,0.010263204,0.027789244,-0.007899626,-0.01694662,-0.015019042,0.004167813,-0.034214504,-0.024645457,0.0035080765,-0.016717147,-0.0062474166,-0.009316625,0.013963464,-0.004600944,0.021008302,-0.034122713,-0.004933681,0.01772683,0.00702189,-0.0032900767,-0.011674466,0.007865205,0.030221663,-0.0011660124,0.03196566,0.0070620477,-0.02625177,0.010624624,0.005822891,-0.029923348,0.01059594,-0.016613884,-0.005768391,-0.0075955736,0.027674507,-0.016395884,0.017371146,-0.016269673,-0.03302124,-0.007733258,-0.00970673,-0.03614208,-0.019539671,-0.011026203,0.0014958805,-0.033663765,-0.0069989427,0.00981573,-0.04100692,-0.020342829,-0.009213362,-0.01046973,-0.004167813,0.0100222565,0.023119457,0.004804602,0.00006395678,-0.017256409,-0.008886362,0.0026819718,-0.04362292,-0.0307724,0.0023434984,-0.015214095,0.018197251,0.00017873837,0.0024137746,-0.0036400238,0.0316444,0.03354903,-0.031575557,0.00035353264,0.020205144,0.034788188,-0.00038149973,0.018874198,-0.013837254,0.004853365,-0.00050125626,0.020090407,-0.0040645497,-0.0009967756,0.028064612,-0.020572301,0.04731744,-0.014456832,0.01825462,0.02181146,0.011978518,0.013240622,-0.0030892873,0.018897144,-0.05071365,-0.025494508,0.007159574,0.011399098,0.0077562053,-0.010641835,0.009310888,-0.01916104,-0.003510945,-0.00073395675,-0.03586671,0.0338244,-0.016682725,-0.020446092,-0.030359348,-0.0012269663,0.003258524,0.0062244693,0.010096835,0.0115654655,-0.03866629,0.04270502,-0.01291936,0.04421955,0.016705673,0.02437009,-0.0030577348,0.026894297,0.02197209,0.02088209,0.008794573,-0.015202621,-0.047914073,0.0081061525,0.030129874,-0.002750814,-0.008593784,-0.01124994,0.024989666,0.006763732,0.025586298,-0.006780943,-0.002552893,-0.021226302,0.026595982,0.0114335185,-0.00033829416,0.045917653,-0.016315568,0.0005500194,-0.016304094,0.008421678,-0.029349664,-0.017589146,0.0060122064,-0.03398503,0.0014772358,-0.024806088,-0.01785304,0.02150167,0.002908577,0.010314835,-0.008324152,-0.0076816264,-0.008995363,-0.033663765,-0.007888152,0.004061681,-0.00051954243,-0.00880031,0.0018042356,-0.003031919,0.01769241,0.026894297,-0.0034334976,0.02306209,0.008949468,-0.020182196,-0.009230573,-0.02358988,-0.01772683,-0.017084304,-0.00479026,0.04047913,-0.0035482345,0.0014973148,-0.019344619,0.025173245,-0.032998294,-0.058194485,-0.002456801,-0.013309465,0.020124828,-0.0035080765,0.021168932,0.023406299,0.027238507,0.001375407,0.017795673,-0.0037604973,0.033158924,-0.002732169,0.020136302,0.018013671,0.0026905772,0.0045091547,0.056312803,0.019000407,0.0006518482,0.021834405,-0.00068411796,-0.036119133,0.008983889,-0.014571569,-0.02050346,0.014284727,-0.005880259,-0.03442103,-0.0097698355,-0.010653309,-0.009528888,-0.031231347,0.007417732,0.014663358,0.0046152864,0.008324152,0.014640411,-0.0034105503,0.03430629,0.0144912535,0.0072743106,-0.00083399285,-0.053605016,0.014743674,0.027261455,-0.014319148,0.06292164,0.011875255,-0.037633657,-0.0015016174,0.017623566,-0.0047529703,-0.0021541826,0.021157458,-0.0030003663,-0.0075382055,0.045298073,0.023888195,-0.026114088,0.00658589,-0.0019562617,-0.03586671,0.005558996,-0.017439988,-0.012643991,-0.015420621,-0.015959883,-0.03467345,0.013951991,0.030611768,-0.012666939,-0.012632517,0.007509521,0.0023736167,-0.004334181,-0.021891775,-0.010601677]},{"id":"guide-webhooks-4","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Simple text only\n\n```javascript\nawait webhook.send('Plain text message');\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.04589066,-0.006898228,-0.022720266,-0.010223557,0.012052206,-0.044517767,0.024036894,-0.015034311,0.043752547,-0.002215479,-0.0049035936,0.023856841,0.00027834153,-0.050324433,-0.016159633,0.03965637,-0.010223557,0.02925839,0.00527495,0.0074496362,0.012896198,0.032836918,0.0030861974,0.030383714,-0.010111025,-0.01516935,-0.048343863,0.021921286,-0.0043634386,-0.015664492,-0.000026067046,-0.02716529,0.025274748,-0.0029567855,-0.0068813483,0.042762265,0.033714667,0.010127904,0.028538184,0.022157604,-0.005024566,-0.036798052,0.029753532,0.012389803,-0.009233273,0.03288193,-0.06981502,0.0130087305,-0.014460397,0.056266136,-0.025612345,0.016047101,0.05883187,0.07872757,-0.012974971,-0.0013236608,-0.03630291,0.023699297,-0.04593567,0.008867543,0.0002786932,-0.026557615,-0.015495693,-0.031126427,0.020773457,0.0073427306,0.005868558,-0.0031874767,0.0014586996,0.016744802,0.065538794,-0.007528409,0.003693872,0.0054043625,-0.011123815,0.010623046,-0.049559213,0.021977553,-0.033917226,-0.014662955,-0.014269092,-0.022765279,-0.13143769,-0.046003193,-0.06828458,0.002906146,-0.025612345,-0.050819572,0.003412541,0.04156942,0.0039752023,-0.029978598,-0.028110562,0.029460948,0.0043634386,0.010988777,-0.041929524,0.010729952,-0.0071120397,0.010004119,0.07571171,-0.050999627,-0.097317904,-0.00495142,0.02001949,-0.010538647,0.04982929,-0.022585226,-0.02925839,-0.014426637,-0.07818742,-0.022258883,0.010606167,0.036010325,0.025589839,-0.013886482,0.0018370893,-0.009165754,0.0112532275,-0.03110392,-0.037653297,-0.0058854376,0.025477307,-0.01932179,-0.023879347,-0.034862496,-0.059146963,0.025207229,-0.01590081,0.04233464,0.026962733,0.019974478,0.009002581,0.021651208,-0.026827693,-0.0004258643,-0.006042983,0.02329418,0.003806404,0.07238076,0.06333316,-0.08201352,0.029866064,-0.00048318543,-0.015743265,-0.014933032,-0.07103037,-0.01694736,-0.05959709,-0.043527484,-0.04003898,0.0132788075,-0.021718727,0.021527423,-0.009323299,0.028470665,-0.014550422,0.029753532,-0.0648636,-0.047893733,0.0084849335,0.0069938805,0.008293629,-0.02583741,-0.03578526,-0.017048638,0.041096784,-0.04874898,-0.019119233,0.050324433,-0.0010451435,-0.030991387,0.007837873,0.032971956,0.014482903,-0.008237362,0.0111857075,-0.096327625,0.0058291717,0.010099771,0.048839007,0.03560521,0.019625628,-0.015394415,-0.0027331274,-0.014347864,0.025882423,0.029483454,-0.019051714,-0.027232809,-0.030136142,0.01021793,-0.007022014,0.012018447,0.03619038,-0.018185215,0.007815367,-0.024577048,0.005651933,-0.009098234,0.010988777,-0.0039386293,-0.021088548,-0.02001949,-0.050549496,-0.002706401,-0.0027697005,-0.0070051337,-0.010718699,-0.00141228,0.006279301,-0.01897294,-0.0010774964,0.0019608748,-0.09794809,-0.04030906,-0.0036347923,0.02531976,-0.0030102383,-0.018995447,-0.06630401,-0.012153485,0.012040953,0.0063749533,-0.0002619892,0.019524349,0.0034688073,-0.023406712,-0.02081847,-0.001582485,0.048793994,-0.009790308,0.019434324,-0.023721803,0.018961689,0.032769397,0.0145616755,0.023609271,-0.01764506,0.009222019,-0.0054353084,-0.047758695,-0.0049654865,0.026715161,0.018567825,-0.015810784,-0.016958613,-0.039948955,0.0094245775,0.017667567,0.056221124,0.020514634,0.009576497,-0.01977192,0.033309553,-0.054690685,-0.026535109,0.016339686,-0.0031115173,0.0020635605,0.027525393,-0.019603122,-0.028088056,0.004641956,0.03400725,-0.02932591,0.034727458,0.007860379,-0.003291569,0.016272167,0.0059979702,0.0011900287,0.053070217,0.01935555,-0.037833348,0.03776583,-0.0268502,-0.027210303,-0.032926943,0.053070217,-0.025567332,0.014809247,-0.029033326,0.011827142,0.0118609015,0.014426637,-0.008923809,-0.007899766,0.027727952,0.0023997508,-0.020942256,0.02462206,0.008496187,0.010060385,-0.005896691,0.056581225,0.024532035,0.028763248,0.05311523,-0.00034568508,-0.028020535,0.043437455,0.0012779447,-0.016789814,-0.0062342877,0.007685954,-0.01865785,-0.0550958,-0.0064255926,-0.03756327,0.000010159773,0.040601645,-0.039386295,0.019816933,-0.03700061,0.021786248,0.050144378,0.069229856,-0.009418951,-0.06715926,0.021021029,0.014449144,0.021504916,-0.048208825,-0.016576003,-0.038553555,0.028673222,0.006841962,0.04400012,0.0421996,0.019333044,-0.0032127963,0.058921896,0.03204919,0.018117696,-0.0111181885,-0.010893124,-0.0014882393,-0.035875287,0.04258221,0.0008664985,0.017093651,-0.0051399115,-0.029303404,-0.04645332,-0.014527916,-0.0076803276,0.025949942,0.016227154,0.005159605,0.008777517,-0.0007349764,-0.010127904,-0.0467234,-0.0041383742,-0.01061742,0.026962733,0.011354506,0.049334146,-0.015281882,-0.045868155,0.031238958,0.00035676247,0.024149425,0.013706431,0.017386235,0.021493664,-0.06193776,0.01583329,-0.011180081,0.029460948,0.019198006,0.03992645,-0.02552232,-0.057931613,0.008445547,0.0126036145,0.06585389,0.010825604,-0.025027176,0.020649672,0.015596973,-0.05802164,-0.04379756,-0.0016317179,0.020593405,0.019366805,0.03427733,-0.00034392675,-0.041614432,0.010442995,-0.002951159,-0.03396224,0.02552232,0.01789263,0.0033506483,0.02151617,-0.019006701,0.0033422085,-0.050234407,0.016092114,-0.009008208,0.005201804,0.013121263,0.037293196,-0.013503873,-0.025972448,0.031936657,-0.014415384,-0.012243511,0.039386295,0.07319099,0.0119959405,-0.018038923,-0.048388876,-0.009447084,0.036843065,-0.020908495,0.010853738,0.0011555657,-0.01875913,-0.012479829,0.008935062,0.0009966139,0.0006889085,0.07373115,0.024464516,-0.0015416921,0.028268106,-0.030068623,-0.044720326,-0.022303896,-0.010156037,0.0031227705,0.06463853,-0.020750951,0.0046081967,0.008653732,-0.009739668,0.00010391652,-0.016857333,-0.0045913165,-0.064908616,0.029235885,-0.025882423,-0.012085966,-0.0010817165,-0.04118681,-0.042627223,-0.024914645,-0.0048754606,-0.05865182,0.018252734,-0.044270195,-0.017768845,0.017442502,0.030451233,-0.0071064127,0.015023058,0.022371415,-0.007714087,-0.008513066,-0.020379594,0.012974971,0.009840947,-0.024959657,-0.0036657387,0.03184663,0.019490588,-0.0008728284,0.017858872,-0.011444532,0.007685954,0.010679312,0.012356043,-0.050954614,0.04100676,0.004293106,-0.0031509036,0.018387772,0.023654284,-0.0072020655,-0.041209318,-0.015248123,0.022337656,0.108751185,0.029641,-0.009317672,-0.002650135,-0.019873198,-0.031621568,0.020773457,0.0012575481,-0.010066012,-0.0056350534,-0.018905422,-0.035132576,0.0063018072,0.013987761,-0.021842513,-0.048793994,-0.04397761,-0.033332057,-0.0028625396,0.011495171,0.012986224,-0.02294533,0.0023913106,0.015068071,0.025724877,-0.018072683,-0.06063239,0.027637925,-0.015630733,-0.018151455,0.009081354,-0.03515508,0.023429219,0.0062624207,-0.045418024,-0.03630291,0.06351321,0.0224952,-0.0040708547,-0.041862004,-0.0052665104,0.0031509036,0.009041968,0.03319702,-0.013368834,-0.013593898,0.015158097,0.03947632,0.011095682,-0.00017767791,0.0063018072,-0.05320526,-0.029438442,0.04127684,-0.0027654807,-0.030518752,0.03713565,-0.01058366,0.0016781375,-0.037720818,0.0070614,-0.012614868,0.036010325,0.017588794,0.0421996,-0.00878877,-0.027345343,0.005035819,0.011714609,0.046813425,0.018117696,0.0035278867,-0.004805128,0.012986224,0.0240594,0.016407205,-0.011427652,0.002889266,0.017465008,-0.03225175,0.0010374069,0.0061949017,0.016823575,0.023766816,-0.008591839,-0.00008936645,0.001664071,-0.003474434,-0.0037107517,-0.0072020655,-0.0024616434,-0.03985893,0.009525857,-0.0055900407,0.018826649,-0.012547349,-0.0009269846,0.0025826157,0.031328984,-0.0303387,0.027007746,0.0010866397,-0.017723832,0.026557615,0.0026445084,0.025949942,-0.0076240613,0.003949883,-0.00028133066,-0.017971404,-0.015822038,-0.018522812,-0.022225123,-0.05910195,0.037608285,0.004281853,0.0030130516,-0.035965312,-0.0037642044,-0.014989299,0.042244613,-0.0033393952,-0.015000552,0.0148205,-0.007612808,0.004833261,0.017476263,0.010223557,-0.055680968,0.008012298,-0.0011815889,0.0012673947,0.008006671,0.012299777,0.011624584,0.014100294,0.023654284,0.012738653,0.032521825,-0.015259376,0.0075790486,0.005722266,0.008394907,0.019850692,0.023766816,0.013560139,0.009475217,-0.028898288,-0.041029267,-0.016778562,-0.004475971,0.011371386,-0.05617611,0.028043041,-0.010628673,-0.028673222,-0.01196218,0.04105177,-0.012254764,0.015957076,0.011135068,0.019254271,0.0118609015,-0.0017850432,-0.012941211,0.004144001,0.053520348,0.018128948,-0.012085966,0.018511558,-0.06301807,-0.007247078,-0.015743265,0.015686998,0.0015374721,0.00035992742,0.0006994584,-0.027457874,0.04589066,-0.007325851,-0.0050752056,-0.020109517,-0.016789814,-0.029123351,0.0067012967,-0.038125932,0.022326402,-0.006684417,0.009148873,0.010960643,0.008113577,0.0014994926,-0.049469188,0.016744802,0.03733821,0.0060767424,0.02221387,-0.028470665,-0.024216944,0.012052206,-0.016744802,0.02329418,0.03630291,0.055680968,0.012277271,-0.017127411,-0.054105517,0.04156942,0.009115114,0.010437368,0.0077084606,0.021673715,0.029190872,-0.005108965,-0.02374431,0.00011130145,-0.029123351,-0.036595494,-0.0022872183,-0.00737649,-0.0064874855,0.022540214,-0.017510021,0.029168364,-0.0116583435,-0.0035391399,0.019704401,-0.027615419,-0.016778562,-0.031509034,0.0042255865,-0.018714117,-0.034817483,0.0011000029,-0.012558602,0.0046925955,0.0067069232,-0.012716146,-0.04658836,0.0134251,-0.025747383,-0.0051961774,0.019704401,-0.0070107603,0.032454308,-0.028718235,-0.012288524,0.0137514435,0.00039667625,-0.0125360945,0.009711535,-0.0470835,-0.0030327446,0.02950596,-0.023879347,0.0134138465,0.007894139,0.0037557646,0.02354175,0.013301315,0.011534558,0.046948463,0.0004325459,-0.01157957,-0.031058908,-0.030631283,0.0056069205,-0.052214973,0.03263436,-0.017847618,-0.016891094,0.0045069177,-0.0073821167,0.00490922,0.020424606,-0.020615911,0.009103861,-0.004135561,0.046768412,-0.013301315,-0.046813425,-0.025927436,0.00918826,0.030428726,0.015720759,-0.031711593,-0.049919315,-0.040759187,0.02430697,0.05388045,-0.028988313,-0.07053523,0.033332057,0.0048276344,-0.013683924,0.00020361308,0.0063243136,0.0025291627,0.010707445,0.015686998,-0.032296762,-0.0116583435,-0.0022942517,-0.026692655,-0.0137514435,-0.02716529,-0.030698804,0.04530549,-0.03655048,-0.007235825,0.01869161,-0.019220512,-0.07994293,-0.0069544944,0.010769338,-0.040399086,-0.039993968,-0.049919315,-0.024644567,0.025679864,-0.013470112,-0.010049132,0.029978598,0.0024532035,0.0072695846,-0.010572406,0.0038767366,-0.016542245,0.06855466,-0.016902346,-0.04024154,-0.018083936,-0.0038823634,-0.014066534,0.008946315,0.015844544,0.00035517997,-0.0037473247,0.016936107,0.027142784,0.055635955,-0.019670641,0.0007434163,0.016868588,0.005235564,-0.029821051,0.017172424,-0.016846081,-0.020514634,0.03078883,-0.006172395,-0.01942307,-0.01701488,-0.004366252,-0.012716146,-0.022618987,0.013290062,0.020008238,-0.009053221,0.0069263615,0.0075227823,-0.0014052467,0.021718727,0.032589346,0.020694684,-0.015844544,0.008265495,0.013965255,0.0022422054,0.008445547,0.012581108,-0.018297747,-0.018511558,-0.025027176,0.0062117814,-0.016418459,0.027795471,-0.024959657,-0.00027939654,-0.0009101047,0.0113207465,-0.00737649,-0.0210998,0.029933585,0.05910195,0.03384971,0.04595818,-0.01869161,-0.016002089,0.020041997,0.021358624,-0.009182633,0.03916123,-0.03808092,-0.009514604,0.023946866,0.027727952,-0.005362163,0.025634851,-0.02392436,-0.004380319,0.009357058,0.027953016,-0.00022137207,0.012491082,-0.024351984,0.041411877,-0.027052758,-0.012783666,0.011163201,0.031396504,-0.038958672,0.01603585,-0.020300822,0.0049739266,-0.004886714,0.0015979583,0.038576063,-0.007832246,0.03497503,0.009131994,-0.045980684,0.01938931,-0.0015641985,0.013166276,-0.0035166335,-0.04969425,0.0036544856,0.048793994,0.021257346,-0.00917138,-0.010386729,0.039813917,0.045643087,-0.0024841498,0.0030299313,-0.028470665,0.023035355,-0.021684969,-0.000073541596,0.013706431,0.02531976,-0.024734594,0.029213378,0.0037191915,0.0024841498,-0.013245048,-0.06855466,0.024914645,0.013717684,-0.04753363,0.0030214915,-0.0021479598,-0.03713565,-0.018646598,0.0146967145,0.018950434,-0.012772413,0.027412862,0.013571392,0.0031115173,-0.028515678,0.00013363207,-0.030001104,-0.046993475,-0.009492097,-0.0077365935,0.023384206,-0.000001151148,0.00013134626,-0.013312568,0.031238958,-0.0686897,0.035402652,0.051764846,0.017206185,0.019591868,-0.006886975,-0.027817978,0.006189275,-0.003935816,-0.004897967,-0.030226167,0.03078883,-0.00091080804,-0.02513971,0.039363787,0.030901361,0.04438273,-0.031081414,-0.008383654,-0.0046391427,-0.0006846885,0.016452217,0.000013802786,0.033309553,0.007224572,0.0023448912,-0.02430697,0.017206185,-0.007927898,0.015765771,-0.02570237,0.027232809,0.004053975,-0.028493172,-0.018151455,-0.0017104906,-0.025657358,0.010071638,-0.018252734,0.0240594,-0.019603122,-0.018984195,0.025657358,0.015428174,0.020199543,0.0077478467,-0.029550975,0.021741234,0.0184778,-0.02078471,0.0043690656,-0.022045072,0.0042874794,0.015810784,0.0031790365,0.01269364,-0.023991881,0.0026065288,-0.018016417,-0.008726877,0.008091071,-0.0018595958,0.00456881,0.01872537,-0.012108472,0.018680356,0.0073145977,-0.0064706057,0.0015852983,0.0065437513,0.014145306,-0.025499813,-0.008068563,0.036865573,0.018286495,-0.02583741,-0.04208707,0.0092389,-0.005137098,0.022855304,0.004098988,0.024779607,-0.008130456,-0.040399086,-0.019130485,-0.016654776,0.009559616,-0.023001596,-0.019220512,0.028403144,-0.0026684215,0.0013925869,0.027457874,-0.018005162,0.06580887,-0.012491082,0.008664985,0.021156067,0.027817978,-0.00089181826,0.0029033325,-0.007888512,-0.015214363,-0.044337716,0.0005383966,0.039566346,-0.0026191885,0.006898228,0.007657821,0.004014589,-0.021369878,0.010195424,-0.01583329,0.017667567,0.007353984,0.016193394,0.003705125,-0.0031115173,-0.003128397,0.022011312,-0.013807709,-0.021246092,0.0049654865,-0.00917138,0.037743323,0.00021064635,-0.02053714,-0.015034311,0.0029399055,0.029528467,0.009891586,-0.014314105,0.0040399083,-0.03657299,-0.0036741786,-0.011219467,-0.026107486,0.0060598627,0.0061330087,0.0345249,-0.018770382,0.034930017,0.0069770007,-0.03128397,-0.0015754518,0.025814902,0.019535603,-0.020492127,0.037923377,0.003750138,-0.026647642,0.001093673,0.06409838,-0.02678268,-0.018365266,0.008513066,-0.013053743,-0.027660431,-0.02462206,0.023204153,-0.01168085,-0.028110562,0.019580616,0.03700061,-0.01016729,0.010718699,0.008220483,0.010420488,0.027772965,0.009047595,0.0036347923,0.005182111,-0.0037895243,0.007145799,-0.0018736623,-0.024667073,-0.052214973,0.023586763,0.0017766032,0.025657358,-0.036347922,0.0043718787,-0.021820007,0.026039967,0.023406712,-0.016936107,0.043504976,-0.029033326,0.033129502,0.00082289224,0.064908616,0.001907422,0.00885629,-0.00080530904,0.016789814,0.008062937,0.00247149,0.012479829,-0.016643522,-0.012963718,0.008288002,-0.010904377,-0.00091221475,0.023631778,0.0077253403,-0.010544274,-0.024734594,-0.011112561,0.013638911,-0.0119284205,-0.04132185,0.025859917,-0.0010001305,0.019119233,-0.06540375,-0.004354999,-0.00010303736,-0.02091975,0.009334552,0.03929627,-0.023699297,0.011827142,-0.0014284565,0.011461412,-0.027682938,0.018185215,-0.028785754,-0.011039415,0.016666029,-0.025072189,-0.0042255865,0.005260884,0.016204648,-0.032544333,0.021381132,-0.0029877317,0.010414862,-0.017836364,0.013245048,-0.040646657,-0.023406712,0.016722295,0.041726965,0.00774222,0.04233464,0.0028414398,-0.025297254,0.0111857075,-0.004166507,-0.017172424,0.036145367,0.052980192,0.0051511647,0.014381624,-0.0051680445,0.022911571,0.017476263,0.029280897,-0.0007849126,0.0068194554,0.011135068,0.0010085704,-0.023001596,0.0470835,-0.033489604,0.02071719,0.0066394038,-0.03911622,0.012524841,0.0072695846,-0.013380087,-0.005868558,0.04530549,0.0128736915,0.01349262,0.044517767,0.0015993649,-0.028448159,0.0116583435,-0.027817978,0.016823575,-0.005184924,0.036910586,0.014910526,0.007252705,0.006948868,-0.018162709,-0.0023181648,-0.030946374,-0.008670611,0.0060936227,0.0054437486,0.029573482,0.0013503872,0.0120297,0.0054409355,-0.035515185,-0.01485426,0.015765771,0.0387111,-0.0077984864,-0.03339958,0.017937643,-0.027120277,0.004354999,-0.022337656,-0.014055281,0.019411817,-0.006116129,-0.01764506,0.00638058,0.017026132,-0.0006639404,0.009897213,0.023654284,-0.010161664,0.03675304,0.013897736,0.020627165,0.022011312,0.01311001,-0.0014228299,-0.006307434,0.013155023,0.03306198,-0.011483918,-0.030766323,-0.017903885,0.024667073,-0.03675304,-0.00638058,-0.01447165,0.0060204766,0.0023955307,0.015990837,-0.0006227958,-0.0073708636,0.029168364,0.0012969344,-0.022258883,-0.030001104,-0.00850744,-0.0037613912,0.0007694394,0.027435368,0.012839932,-0.024734594,-0.005730706,-0.012299777,-0.027637925,0.0038823634,-0.0074440097,-0.0063411933,0.006971374,0.010324836,0.0054887617,0.021032281,-0.012997477,-0.013357581,-0.004633516,0.0031171439,-0.018432787,-0.0062005282,-0.009244526,0.020762203,-0.036392935,-0.02468958,-0.0035813395,-0.047758695,-0.0039723893,0.00081234233,-0.02570237,0.00067976525,-0.012288524,0.026872706,-0.0008517286,-0.008766264,-0.016137127,-0.024644567,0.014775488,-0.013087503,0.014100294,-0.01897294,-0.021324866,0.0067913225,0.026265033,0.012423563,-0.013143769,0.037270688,0.0289433,-0.012007194,-0.019816933,0.0070163873,0.04492288,0.039813917,0.014392877,-0.0117258625,-0.018387772,-0.032769397,-0.0041102413,-0.010431741,0.008901303,0.024734594,-0.013200035,0.027502887,0.00046314063,-0.000003758402,0.007466516,-0.024712086,-0.0006547971,-0.015777024,0.028268106,-0.02608498,-0.018984195,-0.008091071,0.012862438,0.011568317,-0.01100003,0.009925346,-0.004982366,-0.03308449,-0.0074440097,-0.017690074,0.040083993,-0.0282456,-0.025544826,-0.046408307,-0.022765279,0.016058356,-0.029956091,-0.017093651,0.009604629,-0.035335135,0.03826097,-0.032656863,0.057751562,-0.0069657476,-0.017543782,-0.00843992,0.01757754,-0.0013946969,0.0432349,-0.0027978336,0.0072189453,-0.070175126,0.038621075,0.048793994,0.016407205,-0.005753212,-0.0026937411,0.03344459,0.016125875,0.035245106,-0.010223557,-0.01687984,-0.020987269,0.020233301,-0.010746832,0.005896691,0.032656863,-0.020323329,-0.0054803216,-0.013019984,-0.003688245,-0.012502335,-0.009756547,0.0019313351,-0.010049132,0.00458569,-0.005924824,-0.0077703535,-0.008259868,0.010763711,-0.007984164,-0.021651208,-0.0049542333,-0.02221387,-0.019085472,-0.0027204677,-0.0024067839,-0.0233617,-0.014010267,-0.004996433,0.007466516,0.0404441,0.04246968,0.026670149,0.041299343,-0.010009745,-0.019906959,-0.013908989,-0.01681232,-0.010291076,-0.013267554,-0.015608226,0.028088056,0.003612286,0.01687984,-0.016722295,0.004656023,0.0031030774,-0.03911622,0.021561183,0.0115908235,-0.0074496362,0.038486037,0.030361207,0.016778562,0.0162159,0.01513559,-0.009593376,-0.0039667627,0.026512602,-0.002430697,0.047038488,-0.014843007,-0.008079817,0.002990545,0.02374431,0.025499813,0.0023547378,0.025094697,0.027142784,-0.03477247,0.016339686,-0.0138189625,0.0032437427,0.0071683056,-0.010628673,-0.026715161,0.0083442675,-0.00958775,0.005162418,-0.032791905,0.017059892,-0.008755011,-0.0037023118,-0.0028470664,0.026557615,-0.0022393921,0.022720266,-0.012963718,-0.0048754606,-0.00882253,-0.03826097,0.017127411,0.015878303,-0.00092135795,0.081698425,0.006144262,-0.027187796,0.0027443809,-0.005398736,0.010724326,0.00671255,0.002443357,-0.0040342817,-0.0057841586,0.048163813,0.00988596,-0.013695178,0.010623046,-0.0071064127,-0.0121984985,-0.033309553,-0.018590331,0.007787233,-0.021628702,0.01875913,-0.019704401,0.013267554,0.0010542867,0.011506424,-0.003494127,0.019603122,-0.0112532275,-0.028515678,-0.029078338,-0.0037838975]},{"id":"guide-webhooks-5","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Embeds without a title\nEmbeds can use only a description—no title required. At least one of title, description, fields, or image is needed.\n\n```javascript\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('Description-only embed works.')\n .setColor(0x5865f2),\n ],\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.027773233,0.018725198,-0.04552614,-0.031456504,-0.004669861,-0.04227754,0.031799667,0.003740464,0.036466666,0.007629632,0.007114889,-0.004289523,0.021150209,-0.07659373,-0.027567336,0.015728252,-0.021916604,0.018279089,-0.0011081268,0.058886573,0.016426014,-0.008521853,-0.039097574,0.034407694,-0.0013590639,0.00034691519,-0.03246311,0.055912506,-0.007297909,0.018999727,0.0031199132,-0.021127332,0.012102175,0.01438992,-0.03552869,0.021401862,0.06108281,-0.003920624,0.014595818,0.047996905,0.0039578,-0.03292066,-0.032874905,0.0050073033,-0.010946863,0.05028465,-0.07750882,0.01097546,-0.0024293,0.039944038,-0.025920158,-0.008401746,0.022465663,-0.0036603932,-0.04138532,-0.0030598599,-0.049323797,0.039097574,-0.03616926,-0.0024850639,0.01808463,-0.027864743,-0.0035116896,-0.02294609,0.009482706,-0.0126169175,-0.050925218,0.0027696022,-0.01790161,0.010964021,0.07329937,-0.017707152,0.008870734,0.033973023,-0.021928042,0.0032857747,-0.044267878,0.025485488,-0.037999455,-0.011238551,-0.038022332,0.0014598677,-0.11612597,-0.021298911,-0.08231309,0.018690882,0.0013969548,-0.054402594,-0.007486648,0.018770954,-0.03552869,-0.035368547,-0.076044664,-0.027269928,0.0051216907,0.06108281,-0.030861689,0.02356378,0.009865903,0.012079298,0.03912045,-0.05687336,-0.08167252,-0.026057424,0.006176913,-0.037564784,0.0092367735,-0.0025150904,-0.00035442185,-0.006451443,-0.051153995,-0.026835257,0.008373149,0.027818987,0.018038874,-0.023540903,-0.004200873,0.020944312,-0.043673065,-0.037107237,-0.066939436,-0.03289778,0.035940483,-0.011038373,0.00710345,0.014801715,-0.019914826,0.015476599,-0.033606984,0.0237468,0.052297868,0.019228503,0.039280593,0.028276537,-0.04936955,-0.023540903,-0.042140275,0.024341615,-0.0018788112,0.024707653,0.053762022,-0.050055876,0.029809326,-0.023815433,-0.012742744,-0.0013004404,-0.03642091,0.010700931,-0.014252655,-0.024478879,-0.039944038,-0.013886617,-0.029489042,0.012399581,-0.01980044,-0.016117169,-0.024067085,0.021081576,-0.05577524,-0.02743007,0.0071720826,0.02653785,0.007858407,-0.0018230473,-0.064971976,-0.014161145,0.024387369,-0.05083371,-0.028139273,0.024616143,0.020646906,-0.029191636,-0.029214513,0.04850021,0.02095575,-0.009671445,0.012433898,-0.050696444,0.015213509,0.0074351733,0.024799163,0.05174881,0.03806809,0.010929705,-0.040127058,0.002176218,0.021928042,0.008967963,0.0090022795,-0.055271935,-0.031204851,-0.025576998,-0.011381535,0.0044124895,0.011759013,-0.0116961,0.0029011476,0.017055145,0.035482936,-0.03571171,0.01646033,0.0018015997,-0.011581712,0.0030112453,-0.029740693,0.014023881,-0.0050387597,-0.020212233,-0.05270966,-0.008436062,0.0017844416,-0.024478879,0.026423462,-0.012273756,-0.04662426,0.018507862,0.028276537,0.001484175,-0.020932874,-0.022625804,-0.07984232,0.042986743,-0.00009999951,-0.016494647,-0.027452948,0.0063370555,-0.026926767,-0.017569887,-0.049232285,0.042803723,0.022957528,0.004352436,0.0018044594,-0.044222124,-0.008070023,0.029191636,0.023998452,0.012685549,-0.006377091,-0.013623525,-0.015945587,-0.010111836,-0.025760015,-0.024181472,-0.016174361,-0.022225449,0.025050815,-0.070645586,0.009671445,0.02195092,0.05920686,0.042025886,-0.0042609265,-0.031159095,0.025714261,-0.05504316,-0.0356202,0.027109787,-0.0009744367,-0.021573441,0.025622752,0.0070405374,-0.032257214,-0.012479653,0.025714261,-0.016231555,0.056187034,-0.005639293,0.010392085,-0.008150094,-0.012799937,-0.0034687943,0.030129611,0.024433123,-0.06886114,0.01142729,-0.0210587,-0.011919155,-0.02868833,-0.013280364,0.0014269814,0.01635738,-0.025005061,0.06016771,0.0014448544,0.029168757,0.0005844475,0.0044954205,0.028642576,0.033218067,0.0045640524,-0.013268925,0.013543454,0.020269427,-0.034224674,0.070005015,0.047081806,0.006405688,0.06872388,-0.000018666127,-0.016597595,0.008870734,0.035185527,0.014184023,0.0117018195,0.011267147,-0.020452447,-0.05687336,0.0037175866,-0.04868323,-0.025531242,0.028642576,-0.017878732,0.014538623,-0.022923212,0.025439732,0.065155,0.049644083,-0.007520964,-0.041545462,0.039692387,0.016597595,0.006371372,-0.068174824,-0.035025388,-0.050421916,0.0017615642,0.019354329,0.02239703,0.018839587,0.022717314,0.019560225,0.01466445,0.044313636,0.015991343,-0.043307025,-0.008653398,-0.02365529,-0.018599372,0.06053375,-0.0153164575,-0.0012253738,-0.0048357225,-0.043673065,-0.05847478,0.002806778,-0.029306022,0.03058716,0.019114114,-0.032234337,0.0069947825,-0.015854077,-0.023071915,-0.03966951,0.0015756849,-0.030884566,0.019114114,-0.022328397,0.008824979,-0.013566332,-0.019766122,0.01998346,-0.007023379,0.004975847,-0.0237468,0.010197626,0.023060476,-0.025005061,-0.004981566,-0.002771032,0.018496424,0.043124005,-0.009053754,-0.012731304,-0.04390184,0.009334003,0.006176913,0.024959305,-0.013074467,-0.0034973912,-0.022957528,-0.01448143,-0.022419907,-0.038731534,-0.005450554,0.012182246,0.043490045,0.04552614,-0.034567837,-0.044222124,-0.0027510142,-0.017787222,-0.027384317,-0.013246047,0.04831719,0.031433627,0.012662672,-0.022008114,0.0048700385,-0.035574444,-0.04955257,-0.0050130226,0.012479653,0.005948139,0.04058461,-0.035048265,0.007240715,-0.012250878,0.0066344626,0.000041018564,0.008956525,0.0421174,0.02248854,-0.0026494954,-0.03580322,0.0035946204,0.006691656,-0.051337015,0.016094292,0.033767127,-0.027567336,-0.030175366,-0.020372376,-0.0012375275,0.02868833,0.0005769409,0.03228009,-0.0011074119,0.02868833,-0.03411029,-0.07197248,-0.0008014259,0.036306523,-0.001151022,0.038159598,-0.019697491,-0.004255207,-0.016208678,0.0053762025,-0.015099121,-0.016231555,0.013920932,-0.024456002,0.015671058,-0.05252664,-0.016437452,-0.026926767,-0.01782154,-0.016975073,-0.03031263,-0.008121497,0.0029340337,0.019388644,-0.016895002,0.020990066,0.017775783,0.006783166,-0.01638026,0.020292304,0.020829925,0.009070911,-0.007744019,-0.03031263,0.046166707,0.006142597,-0.018336281,-0.061357338,0.029534796,0.031227728,-0.05252664,0.040515974,0.027727477,0.0013876607,0.004506859,0.024661899,-0.025943035,0.01412683,-0.04165985,0.008596204,-0.0010609421,-0.013417629,-0.023586659,-0.05801723,-0.024890672,0.009013718,0.10477875,0.046715766,-0.013234609,0.012273756,-0.038159598,-0.027635967,0.004558333,-0.015590987,-0.010557947,-0.020338058,-0.012880008,-0.04504571,0.0064285654,0.010374927,0.014058197,-0.03058716,-0.015957026,-0.049598325,0.033858635,0.022385592,0.011759013,-0.041431073,0.011644625,-0.012880008,0.029832203,-0.014767398,-0.060030445,-0.010689491,0.03527704,-0.0015685356,0.027727477,-0.03973814,0.05243513,-0.018839587,-0.030701548,-0.039189085,0.019102676,0.046853032,0.00112457,-0.009299686,0.015373651,-0.0051617264,0.014584378,0.017375428,-0.02832229,-0.045617647,0.0061483164,-0.0010123275,0.0013898055,-0.04252919,0.008527572,-0.046853032,0.0023335007,0.017261041,-0.01592271,-0.044016227,0.03660393,-0.011839084,-0.02402133,-0.047264826,0.00015290362,0.008373149,0.016586157,0.0014605826,0.03202844,-0.0026795221,-0.05010163,0.020246549,-0.0030913164,-0.0029797887,0.043146882,0.013440506,-0.009619971,-0.0072807507,-0.0096600065,0.0284138,-0.004426788,0.036306523,0.022911772,-0.020441007,0.033172313,0.020681221,0.013829422,0.023884065,-0.030770179,-0.028985737,-0.011198515,0.0007281466,0.004255207,0.0015084823,0.010306294,-0.017318236,0.013623525,-0.00926537,-0.013348996,-0.003202844,-0.0058337515,-0.02868833,0.01133578,-0.03411029,0.026949644,0.020669783,-0.0031742472,-0.0011302894,-0.0014448544,0.013909494,-0.020441007,0.0071663633,0.012399581,0.008985121,-0.036375158,-0.0033172313,-0.010626579,-0.029649183,0.015968464,0.008115778,-0.010048923,-0.021928042,0.005467712,-0.010941144,0.020852802,0.0076410705,-0.0025965914,-0.013886617,-0.029489042,0.015064806,0.013543454,0.003786219,-0.03843413,-0.0010852494,0.011375816,0.00060053327,-0.0108095985,0.031159095,0.008945086,0.024707653,0.028573943,0.009511302,0.027498703,-0.044267878,0.021367544,-0.0062112296,-0.019949142,0.018931096,0.034933876,0.012365266,-0.003454496,-0.0064628813,-0.03465935,0.0050902343,-0.033767127,-0.0012160798,-0.01438992,0.011455886,-0.005264675,-0.03546006,-0.0007242145,0.03820535,0.006331336,-0.009019437,0.0006856088,-0.0016385978,0.025737138,-0.01178189,-0.001429841,0.003554585,-0.004884337,0.037816435,0.00067810214,0.0061940714,-0.017009389,-0.0049615484,-0.026423462,-0.014801715,-0.0025236695,0.009436951,0.013703597,-0.024730531,-0.005630714,-0.000004487802,-0.016517524,-0.03129636,-0.02159632,-0.02807064,0.000011366119,-0.049095023,-0.019285696,0.018896779,0.0053476053,-0.0021333229,-0.04541175,0.006136878,-0.032737643,0.00719496,0.03850276,-0.010100397,0.016426014,-0.0139323715,-0.03788507,-0.00088578655,-0.029397532,0.023906942,0.056553073,0.056781847,-0.008464659,-0.018668005,-0.004955829,0.020452447,-0.008172971,0.0040607485,0.050970975,0.0047642305,0.0048528807,0.018370599,-0.030701548,-0.020818485,0.0072807507,-0.0091910185,0.0051102517,-0.0060510873,-0.0010473586,0.009048034,0.016609034,0.01376079,-0.027567336,0.00566789,0.019674612,0.011072689,-0.01619724,-0.01888534,-0.0053190086,-0.010580824,-0.020303743,0.015579548,0.003857711,-0.006417127,-0.008870734,-0.029397532,-0.040264323,-0.042872354,-0.017707152,0.004572632,0.011896278,-0.0036603932,-0.019445838,-0.0055334847,-0.023323568,0.021562003,-0.00296835,-0.031159095,0.06016771,-0.0293289,-0.007887003,0.01331468,-0.011530238,-0.0005143853,0.017695712,0.039166205,0.020829925,0.028894229,0.012891447,0.03905182,0.00080643035,0.004721335,-0.010054642,-0.007566719,0.006182633,-0.053029943,0.0028082079,-0.022705875,0.010249101,0.025325345,-0.031250607,-0.0144013595,0.00728647,-0.00233779,0.018061751,-0.012628356,0.017478377,-0.022660121,-0.06213517,-0.036466666,0.013303241,0.020841364,0.008396027,-0.025165202,-0.056049768,-0.039989796,-0.01647177,0.072384275,-0.040630363,-0.046098076,0.020486763,-0.010849634,0.007097731,-0.0078755645,0.03362986,0.004758511,0.01421834,0.0035631638,-0.028573943,-0.05019314,-0.0029454725,-0.035574444,-0.02905437,-0.0412023,-0.022191133,0.034750856,-0.045983687,-0.0016314486,0.01429841,-0.029214513,-0.093157,-0.034773733,0.018782392,-0.015876954,-0.035116896,-0.021928042,-0.012788499,0.011072689,-0.0130401505,-0.0034773734,0.008195849,0.03175391,0.027681723,-0.034590714,-0.0050130226,-0.0049329516,0.03758766,-0.0055620815,-0.015671058,-0.021630635,0.008842137,-0.00917386,0.020898556,-0.020841364,0.01357777,0.012525408,0.0035660237,0.028756963,0.056461565,-0.010317733,-0.008150094,0.040630363,-0.0098945005,0.013703597,0.0017172392,-0.0058137337,-0.0030770178,-0.0031027552,-0.0023406497,-0.012102175,0.0067545692,-0.019743245,-0.01142729,-0.029031493,0.023106232,0.017558448,0.013383312,0.023243496,-0.028894229,0.021344667,0.042140275,0.026652237,-0.0028897088,-0.009940255,0.011358657,0.014744521,-0.015350774,0.005467712,0.015533793,-0.015362212,-0.011455886,-0.015579548,0.020932874,-0.024364492,0.011770451,-0.009517022,0.006325617,0.0048157047,-0.014687328,-0.009374038,0.0065257945,0.0054820105,0.038022332,0.045800667,0.008779224,-0.0036775512,-0.013120222,0.0021933762,-0.0029254549,-0.006485759,0.018565057,-0.046166707,0.0034201797,0.037564784,0.0045554736,0.0060968422,0.0013283223,-0.0048557403,0.005081655,0.034499206,0.016345942,-0.02365529,0.023254935,-0.03454496,0.0041694166,-0.0201436,-0.022614365,-0.011078409,0.06044224,-0.01656328,0.010855353,-0.0035831816,-0.010712369,-0.016403137,-0.013429067,-0.013383312,-0.01843923,0.014767398,-0.005908103,0.0022777368,0.03049565,-0.002645206,-0.014961856,-0.020246549,-0.054631367,-0.020726975,0.026514972,0.0017587045,0.023335006,-0.016689105,0.037473273,0.062226683,-0.015671058,-0.0031342115,-0.017375428,0.039349224,0.015705375,-0.0130630275,-0.006222668,0.018187579,0.00016273379,0.041682728,-0.00011349363,-0.023266373,0.0027638827,-0.0067088143,0.044816937,-0.009465548,-0.054356836,0.0016057115,0.025325345,-0.051474277,-0.00206898,0.01096974,0.008527572,0.007601035,-0.020406691,0.03614638,0.0140010035,-0.0330808,0.005027321,-0.011953471,-0.042940985,-0.002680952,0.03761054,0.026766624,-0.01096974,-0.011987788,-0.030015223,0.024684776,-0.037084356,0.02843668,0.0393721,0.015396529,0.045205854,0.0042780843,-0.026400585,-0.0058251726,-0.013154537,-0.0064628813,-0.04918653,0.01430985,0.011249989,0.009293967,0.05019314,0.025714261,0.022900334,0.015373651,0.0058680675,-0.008647678,-0.0006934729,0.029077247,0.012205123,0.017261041,0.013703597,0.02653785,0.012273756,-0.023151986,0.024639022,0.011976348,-0.025393978,0.015270703,0.0026523552,-0.062501214,-0.03221146,0.013383312,-0.017215285,0.0030770178,-0.011272867,0.004910074,0.00575654,-0.011942033,0.00170866,0.0036746915,0.022328397,-0.03465935,-0.024639022,0.0060739648,0.009820148,-0.014332727,-0.0006902558,-0.011896278,0.0065715495,0.04509147,0.019697491,0.04406198,-0.021081576,-0.0058680675,-0.016746297,-0.013863739,0.018988289,-0.0047070365,-0.0036375157,0.030243998,-0.023369322,-0.0118734,0.012365266,0.0042151716,-0.0061483164,0.030129611,0.017684273,-0.014458553,-0.0030741582,-0.0069032726,0.019605981,-0.03131924,-0.0149161015,0.00764679,0.0017129496,0.018770954,0.022568611,0.030930322,-0.010958302,-0.034407694,-0.04541175,0.0061483164,0.036009118,-0.006405688,-0.0101518715,0.00602821,-0.0036861303,0.00084360625,0.041065034,-0.02411284,0.059252612,0.0055363444,-0.009700041,0.020017775,0.02825366,-0.025645629,0.008681995,-0.00074780686,-0.0055992575,-0.030518528,-0.031548012,0.030106733,0.017855855,0.027498703,0.0055735204,0.05174881,-0.02087568,0.027910497,-0.008058584,0.01043784,0.0009615681,0.03616926,-0.01970893,0.0044210684,0.038640026,-0.0019560226,-0.024661899,-0.048545964,0.018336281,-0.0043867524,0.024158595,0.0051674456,-0.024387369,0.0121479295,0.017421184,0.02185941,0.012605479,-0.0057107853,0.0099173775,-0.011713258,-0.0034401976,-0.006600146,-0.016872125,-0.0074180155,0.019548787,0.029534796,-0.008396027,0.010935424,-0.028482433,-0.01989195,-0.011976348,0.024067085,0.028756963,-0.023140548,0.049049266,0.005902384,-0.019548787,-0.004721335,0.05980167,-0.022351276,0.0015427985,0.017832978,0.0011417281,-0.020452447,-0.008733469,0.005316149,-0.022522856,-0.024753409,0.015785445,0.03948649,-0.0020646905,-0.021298911,0.002618039,-0.0052989908,0.027407194,0.014641573,-0.012971518,0.013806545,0.012250878,-0.0065257945,0.02239703,-0.019194186,-0.058978084,0.025256712,-0.022419907,-0.00881926,-0.0012332379,0.016403137,-0.043398537,0.034156043,0.012982957,-0.025691384,0.012982957,-0.011072689,0.010740966,0.02347227,0.057696946,-0.021024384,0.023586659,-0.0014548632,0.004804266,0.015305019,0.013737913,0.022557173,0.000051072137,-0.015636742,-0.006497198,-0.010037485,-0.00013467316,0.025371099,-0.018988289,-0.029031493,-0.012433898,-0.0004400336,0.0038748693,-0.0019803299,-0.009848746,0.008052865,0.008487537,0.033355333,-0.058520533,-0.021653512,-0.0040149936,-0.0144013595,0.00074852176,0.018290527,0.0008707732,0.0036089187,0.006891834,0.04127093,-0.036992848,0.020257987,-0.047722373,0.0032057036,0.02715554,-0.034522083,0.0031227728,-0.0058280323,0.0134977,-0.015602426,0.0178101,-0.009465548,0.00021715711,-0.013280364,0.016002782,-0.03552869,-0.017192408,0.030564282,0.035757463,0.017466938,0.028390924,0.00908235,-0.018851025,0.015064806,-0.033538353,0.014344165,0.02328925,0.0402872,-0.017752906,0.033492595,0.017055145,0.04813417,0.018633688,0.017123776,0.01376079,0.017158093,0.015957026,-0.0033944426,-0.0174555,0.04014994,-0.018953973,0.027475826,0.0041122227,-0.026148934,-0.0034144605,-0.0007267167,-0.022133939,-0.024844918,0.009837306,-0.0007363681,-0.002123314,0.04387896,0.0032771956,0.004624106,-0.0053762025,0.010077519,0.0023978434,0.0016357382,0.03049565,0.013692158,0.02005209,0.017752906,0.0060625263,-0.0062112296,-0.007446612,-0.026675114,0.019262819,-0.0068517984,-0.016403137,0.030953199,0.009762955,-0.0008114348,-0.037267376,-0.018828146,-0.013143099,0.027864743,0.004741353,-0.007944196,0.027407194,-0.031227728,-0.010512192,-0.020063529,-0.008659118,-0.038182475,-0.00027488693,-0.017318236,0.003914905,0.0006423561,0.00908807,0.023975575,0.025302468,-0.026697991,0.035048265,-0.002051822,0.024639022,0.014103952,0.022088185,0.004469683,0.0121936845,0.014824592,0.008899331,0.0002087568,-0.007955636,-0.015430844,0.018130384,-0.018130384,-0.0017386867,-0.028139273,0.013371874,0.02095575,0.040127058,-0.028116394,-0.0043581557,0.020555396,0.0025122308,-0.007297909,-0.006914711,0.03893743,0.009099509,-0.020257987,0.009877342,-0.0001325284,0.00566789,-0.00022645107,0.014550063,-0.038891677,0.004524017,-0.012456776,-0.011192796,0.0010423542,0.03825111,0.016883563,0.008670556,-0.0017558448,0.007486648,-0.002592302,0.029443286,-0.012067858,-0.023106232,0.00020804188,-0.003131352,-0.036718316,0.0037719207,-0.017306795,-0.04145395,-0.012662672,0.003248599,-0.025302468,-0.0037175866,0.0031942648,0.04145395,0.04147683,0.002203385,-0.038113844,-0.012353826,0.007143486,-0.011930593,-0.0017286778,-0.034133166,-0.02518808,0.019274257,-0.0055191866,-0.0057079257,-0.005730803,0.039532244,0.03740464,-0.0018459248,-0.008807821,0.024639022,0.046120953,0.021287473,0.0090022795,-0.0042237504,0.0005404799,-0.016597595,0.011713258,0.015819762,-0.016345942,0.012262316,0.0035688833,0.051428523,0.017581325,0.0035402863,0.016506085,-0.0067602885,-0.0003619285,0.015087683,0.009608532,-0.03221146,-0.017249603,-0.0013619236,-0.0067545692,0.01421834,-0.0037318852,0.025622752,0.015213509,-0.039532244,-0.03141075,-0.033606984,0.040241446,-0.016426014,-0.03330958,0.012285194,0.0034859525,0.026194688,-0.025348222,-0.0028110675,0.026126055,-0.02294609,0.04371882,-0.048912004,0.032691885,-0.019720368,0.037816435,-0.0018130385,0.022957528,-0.015590987,0.04504571,0.0054190974,-0.035299916,-0.055912506,0.0064914785,0.0412023,-0.0044468055,0.0081329355,-0.020315181,0.03138787,0.03996692,0.034750856,0.013280364,0.016483208,-0.048820492,0.021035822,0.021928042,0.04435939,0.05188607,-0.013280364,0.013200292,-0.0012003515,-0.009299686,-0.026194688,-0.025645629,0.020852802,-0.01151308,-0.0035002509,-0.026034545,-0.014607256,0.02193948,0.004578351,-0.005256096,0.007257873,-0.011861961,-0.0325775,-0.02050964,-0.0040006954,-0.014469991,-0.002888279,-0.020246549,-0.032005563,0.008922208,0.024547512,0.038891677,0.012548285,0.039074697,-0.019274257,-0.033767127,-0.012880008,-0.016254432,-0.011438728,0.015636742,-0.0051417085,0.03850276,0.004175136,0.027361438,0.0011310043,-0.01403532,-0.020818485,-0.03138787,0.0049472502,-0.030083856,-0.0013519147,-0.0010552227,0.019537348,0.029191636,0.006880395,0.009602812,0.0025765735,-0.012296633,0.007160644,0.020086408,0.03635228,-0.043146882,-0.0027924795,0.009414073,0.038731534,0.037015725,0.009905939,0.031204851,0.017444061,-0.026492095,0.030838812,-0.023186302,0.014790276,0.014332727,0.022728754,-0.025691384,0.014904663,-0.0048300033,-0.005999613,-0.0033486877,0.0074237348,0.03806809,-0.008253043,-0.018816708,0.0067545692,-0.0006888259,0.03706148,0.018233333,0.006228388,-0.011896278,-0.053579003,0.016151484,0.010512192,-0.021470493,0.054585613,0.017169531,-0.014184023,0.012113613,-0.012948641,-0.004884337,-0.0057622595,0.037084356,0.00039249138,0.00039463612,0.052160602,0.010260539,-0.025508365,-0.012822814,-0.026377708,-0.0100832395,0.0032057036,0.0063198972,-0.013737913,-0.027384317,0.020223672,-0.018953973,0.016757738,0.01430985,-0.036718316,-0.013463384,0.014973296,-0.010735246,-0.035002507,-0.010912547,-0.011713258]},{"id":"guide-webhooks-6","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Fetching & Listing Webhooks\nFetch by ID or list channel/guild webhooks. Requires a logged-in bot. Fetched webhooks have no token and cannot send—but you can edit or delete them with bot auth.\n\n```javascript\nimport { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch single webhook (no token)\nconst webhook = await Webhook.fetch(client, webhookId);\n\n// List channel webhooks\nconst channel = client.channels.get(channelId);\nconst channelWebhooks = await channel?.fetchWebhooks() ?? [];\n\n// List guild webhooks\nconst guild = client.guilds.get(guildId);\nconst guildWebhooks = await guild?.fetchWebhooks() ?? [];\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.06326584,-0.016247077,-0.0053099776,-0.0371262,0.03382092,-0.017620398,-0.03975646,0.050929233,0.022869274,0.023427913,0.02523185,-0.027536236,-0.006441803,-0.045063525,0.03994267,0.0389185,-0.04585493,-0.011324073,-0.055724215,0.0067153033,0.031004451,0.005609664,-0.011952542,0.045948036,-0.042456545,0.025790488,-0.046297185,0.021763634,-0.027978491,0.009438667,0.026837936,-0.013698287,0.0115626585,0.023544295,-0.014978501,0.0411065,0.005484552,0.014908671,-0.01347716,0.026861213,-0.017794972,0.0065465476,-0.002991045,0.027070703,0.0076230913,0.017003566,-0.081049174,0.00090633315,-0.03223811,0.021018783,-0.049951613,0.0010496299,-0.018446717,0.06321929,0.007099367,0.0013835038,-0.03775467,0.010055497,-0.06671078,0.021111889,-0.014035799,-0.012057287,0.0026011616,-0.0123715205,0.01794627,0.035915814,-0.04673944,-0.015071608,0.01759712,0.033192452,0.06140371,0.02165889,0.030678578,-0.028350916,0.005830792,-0.010224253,0.00073503185,0.010742158,-0.031446707,-0.034402836,-0.016165609,-0.00481535,-0.1326767,-0.055863876,-0.033332113,-0.0035176785,0.00034333006,-0.052232724,0.018144121,-0.00087432784,-0.009671433,-0.020425228,-0.050277486,0.018179037,0.021554144,0.013023266,-0.02289255,-0.019075185,-0.03254071,0.04296863,0.088870116,-0.035706326,-0.0634055,-0.038965054,0.031051004,-0.010887637,0.011335711,0.005266334,-0.019133378,-0.027303468,-0.073274784,-0.05409485,-0.02818798,0.041967735,0.022624869,-0.00068375055,0.033215728,0.020599803,0.025068915,-0.031726025,-0.05437417,0.0059646326,0.053815532,-0.03803399,-0.006435984,0.018854057,-0.04213067,0.012883606,-0.03917454,-0.0084785065,0.06787461,-0.0016468205,0.018982079,0.028350916,-0.032145005,-0.016852269,0.024929253,-0.003526407,-0.015129799,0.012429712,0.015548779,-0.081002615,0.04580838,-0.00886839,-0.03300624,-0.008949858,-0.01904027,0.0016802807,-0.034146793,-0.028304363,-0.055724215,-0.019377781,0.027885385,-0.0026026166,0.0058948025,0.012999989,0.015641885,0.033029515,-0.055258684,-0.045249738,-0.02282272,0.005353621,0.029305257,-0.007722017,-0.044458333,0.0013718655,0.009619061,-0.028979385,-0.027303468,0.02165889,0.019645462,-0.0009921656,0.015653523,0.014035799,0.0066454737,-0.008647262,-0.011952542,-0.025068915,-0.0192614,-0.017573845,0.025837041,-0.007297219,0.014897034,-0.02076274,-0.030818237,0.009223359,0.009671433,-0.018388525,-0.04124616,0.0043905512,-0.007983879,0.009962391,-0.0154091185,0.011638307,0.049253315,0.01594448,0.021938208,0.018737674,0.05074302,-0.056748386,-0.041199606,0.021565784,0.029095769,-0.01615397,0.0029386727,-0.0036340614,0.002970678,-0.003948296,0.0030434174,-0.023637403,0.0071808356,0.0070586335,0.0065698246,0.008106081,-0.07052814,0.0012809412,-0.03903488,0.03340194,-0.017678589,-0.016130693,-0.039919395,0.0066978456,-0.014803926,0.0050277486,-0.0053681694,0.02234555,0.05479315,-0.042340163,-0.022834359,0.0024367706,0.001835943,0.0141405435,-0.014222012,-0.031120833,0.0077743893,0.017131587,0.025604276,0.055305235,-0.0019959698,-0.028863002,-0.020390315,-0.051255103,-0.009665614,-0.011801244,-0.026256021,-0.039151266,-0.0091826245,-0.038196925,0.04620408,0.028001767,0.06703665,0.029375087,0.014396586,-0.0011398267,0.030003555,0.0034623963,-0.017585482,0.0037213487,-0.0068316865,-0.020297207,0.055677664,0.03465888,-0.047414463,0.023544295,-0.027629342,-0.025115468,0.008239921,0.010509391,-0.042316884,0.0048386264,-0.023672316,0.0035584124,0.06526763,-0.043527268,-0.051674083,0.013546989,-0.0034187527,-0.019854952,-0.008856752,-0.021763634,-0.00013302221,0.01738763,0.002681175,0.028653512,0.023905084,0.022240805,-0.004716424,0.0010030766,0.029235428,0.03719603,-0.04818259,0.022776168,-0.019145016,-0.038895223,-0.0013609546,0.07802321,0.05409485,0.022648146,0.07052814,0.036730498,-0.04545923,0.009380476,-0.04036165,-0.04818259,-0.009106975,-0.013546989,0.0089324005,-0.046460122,-0.011830339,-0.022298997,0.00075867213,0.027862107,-0.047135144,0.0042712586,-0.017992822,-0.0031510717,0.031656194,0.020716187,0.055444896,-0.013896138,0.011021477,-0.0037504444,-0.015478949,-0.022438657,-0.06256754,-0.076905936,-0.011358988,-0.0077452934,0.014897034,0.026768107,0.07164542,-0.022811081,0.023811977,0.015362565,-0.00687242,-0.03698654,-0.00026604443,-0.0048182593,0.0041228705,-0.009811093,-0.004777525,0.009781998,-0.029700961,-0.019843314,-0.032982964,0.03156309,0.031376876,0.014943587,-0.027187085,0.0007892227,0.0033605613,0.015339289,-0.01450133,-0.042735863,-0.048229147,-0.043271225,0.010544307,0.012697393,0.020134272,0.0008677813,-0.04057114,0.024463722,-0.01326767,0.036404625,0.025930148,-0.012988351,0.035985645,-0.02352102,0.007122644,-0.019028632,0.051720638,-0.0086298045,0.027373299,-0.018097568,-0.013721564,-0.006587282,-0.0062555904,0.06042609,0.0016046317,0.01258101,0.04550578,-0.0038871947,0.0035496836,-0.059820898,0.011987456,-0.0011958361,-0.010183519,0.029025938,-0.052977573,0.011422998,-0.032680366,-0.04105995,0.008740368,-0.014606075,0.01444314,-0.03039926,0.042922076,0.013861224,0.0066803885,-0.012906883,0.0126741165,0.031539813,-0.01265084,0.008653081,0.03477526,0.020169187,-0.049625743,0.028420746,0.027187085,-0.009403752,-0.0013624093,0.055305235,-0.001275122,-0.0107014235,-0.0069946228,-0.023090402,0.023136955,-0.014838842,0.012429712,0.0075532612,-0.007611453,-0.01258101,0.014897034,0.022380466,-0.013186202,0.0022316454,0.015979396,0.009869285,-0.0019988792,-0.063964136,-0.08063019,-0.03733569,0.023299892,0.0014446048,0.04236344,-0.036963265,0.04371348,0.006209037,0.0029052123,-0.015572055,-0.023835253,-0.0025604276,-0.0032965506,0.03842969,-0.024114573,0.018330334,-0.0040995935,-0.036753774,-0.007401963,0.0064534415,0.007954783,-0.06084507,0.03512441,0.008920763,-0.00832139,0.003732987,-0.041758247,0.008554156,0.015025055,0.0006451987,-0.039546967,0.005627122,-0.013500436,0.02639568,0.050789572,0.0101777,-0.024370614,0.027606064,0.0059588132,-0.00094561244,0.021216635,-0.009723806,-0.012743946,0.021158442,-0.014815565,-0.0035933272,0.03181913,0.0054350896,0.018388525,0.033634707,0.021193357,-0.023486104,-0.10204468,-0.01319784,0.026023256,0.064708985,0.035636496,0.0033867473,-0.018970441,-0.0037562638,-0.062939964,0.016281992,0.03340194,-0.010940009,-0.018237228,-0.033518326,-0.028141428,-0.017678589,0.008059528,-0.011225147,-0.014047436,-0.04448161,-0.029444918,0.044597995,0.01650312,-0.012243499,-0.012324967,-0.0030608748,-0.012231861,0.03181913,-0.000438255,0.005039387,-0.01615397,0.030003555,0.0006906608,0.005749324,-0.04236344,-0.014466416,-0.028979385,-0.0062614093,-0.025743935,0.026209468,0.029142322,-0.0044982056,0.0017690227,0.0061857603,-0.0037242584,-0.02660517,-0.013872862,0.0156768,0.010747977,-0.0032878218,0.0013645915,-0.012487903,-0.013174564,0.0146991825,-0.027117256,-0.024021465,-0.001760294,-0.03726586,-0.031376876,0.030003555,-0.041897908,0.03375109,-0.033588156,0.005598026,-0.02674483,0.04371348,0.0009994396,0.035915814,0.029049214,-0.022310635,-0.025022361,0.011073849,0.012045648,0.026791383,0.02357921,-0.013104734,0.014524607,-0.011009838,0.0027204542,0.011568477,0.03698654,0.026512064,-0.011417179,-0.01553714,0.031679474,-0.006936431,0.0011507376,-0.025394786,0.029328534,-0.041013394,-0.0011958361,-0.008891666,0.023707232,0.020041166,-0.0648952,0.0025313317,0.0039512054,0.010532668,-0.026256021,-0.038336582,0.037940882,0.059355367,-0.021670528,0.0030346885,-0.006657112,-0.019168291,0.0033431037,0.009019688,0.024905978,-0.0041956096,-0.012813776,-0.00029223063,-0.0013260397,-0.0058104247,0.011219328,0.0075299847,-0.02963113,-0.00068011356,-0.03128377,0.022240805,-0.046087697,-0.031260494,-0.018679483,0.0014620624,0.01092837,0.012778861,-0.023358082,0.039663352,0.0037940883,0.004463291,-0.013453883,-0.019948058,0.018679483,0.013965969,-0.05740013,0.02233391,0.0154091185,0.02681466,0.014582799,0.0041956096,0.029165598,0.011370626,0.027396575,0.0068025906,0.03403041,-0.019924782,-0.013372415,-0.01739927,0.0023465736,-0.01711995,-0.012243499,0.001243844,-0.03631152,-0.013640096,-0.0052837916,-0.020983867,0.02014591,0.011492829,0.005906441,-0.030655302,0.011830339,-0.02723364,-0.000030300514,-0.021053698,0.0027204542,-0.016095778,-0.019494165,-0.0120689245,0.021367932,0.030375982,0.03775467,-0.012383159,0.024486998,-0.055165578,-0.009688891,0.016666057,0.00584534,0.0035496836,-0.011120402,0.021344656,-0.025022361,0.026349127,-0.01093419,0.0039192,-0.011626669,0.027559511,-0.024929253,0.023905084,-0.01958727,0.021216635,-0.0072564846,0.010806168,-0.0036456997,-0.0026564435,-0.01904027,-0.03254071,0.008187549,0.048275698,-0.027862107,-0.0044429237,-0.031726025,-0.021204995,0.030841514,-0.011091307,0.035659775,0.015432395,0.041572034,0.045273013,-0.017760057,-0.0001595721,0.02083257,0.014326756,-0.012918521,0.014512969,-0.0018490361,0.037568457,0.0020788927,-0.03808054,0.01594448,-0.01265084,-0.0072913994,-0.020797655,-0.015025055,-0.019971335,0.038336582,-0.0093339225,-0.0023087491,-0.008472688,-0.025324957,0.05740013,-0.026861213,-0.020855846,-0.024975806,0.021414485,-0.016852269,-0.031958792,0.019482527,-0.018935526,0.019773483,0.014210373,-0.0024251323,-0.03086479,-0.011033115,-0.031330325,-0.015548779,0.009188443,-0.020786017,-0.028793173,-0.023462828,-0.009793635,0.009246635,-0.031865686,-0.018248865,0.03188896,-0.02977079,0.011184413,-0.02186838,-0.025324957,-0.00042225234,0.022857636,-0.012837053,-0.009572508,0.034519218,0.009048784,0.039616797,0.0053739883,-0.03561322,-0.023090402,-0.017922994,0.0067909523,-0.0385228,0.014059075,-0.025953425,-0.023253338,0.011417179,-0.016119055,-0.00041025033,0.025999978,0.00052845187,0.0063137817,0.024999084,0.006401069,-0.0061508454,-0.014862118,-0.050789572,-0.017655311,0.037102923,-0.04201429,-0.031051004,-0.01717814,-0.0049899244,0.0062730475,0.048229147,-0.028700065,-0.028141428,0.00057355035,0.009566689,-0.034751985,-0.012743946,0.0018563101,0.0028993932,-0.0032092633,0.001725379,-0.026418958,0.0109050935,0.005307068,-0.038755562,-0.00976454,-0.031516537,-0.022054592,0.027000872,-0.0053303447,-0.023544295,0.026512064,-0.016887184,-0.07914049,-0.018411802,0.013069819,-0.012022371,-0.006674569,0.02371887,0.0011441911,0.052465487,-0.036893435,0.006447622,0.019982973,-0.014827203,0.0049608285,-0.022101145,0.054420725,0.0060111857,0.028374193,0.01972693,0.00859489,0.0107537955,-0.026768107,-0.010579221,-0.003863918,0.022368826,-0.0020439776,0.020180825,-0.0020948953,-0.0022636508,0.055584554,-0.030259598,-0.013256032,0.011166955,0.019098463,-0.015339289,-0.0046582324,0.020809293,-0.005577659,0.02509219,-0.00019257762,-0.03680033,-0.007239027,-0.0042247055,-0.03719603,-0.00078267616,0.0109050935,0.043620374,0.0004960828,-0.00405886,0.016188886,-0.0025516988,0.015781544,0.024626657,-0.0011856526,0.0027189995,0.0075183464,0.0063137817,-0.0010299901,0.024137849,-0.0016730067,-0.028304363,0.012848691,0.0014278748,0.01951744,-0.03829003,0.004841536,-0.020809293,-0.013360777,-0.023974912,0.016724247,0.007960602,0.011847797,-0.009060422,0.0435971,0.043573823,0.051999956,0.013663373,0.00453894,-0.028863002,0.032494154,-0.029700961,-0.006895697,-0.0064999945,0.0011980182,0.036334794,0.03286658,-0.0068316865,-0.0055194674,0.0031307046,0.0031685291,-0.036171857,0.0025269676,-0.007948964,0.0110563915,0.024812872,0.04089701,-0.021286463,-0.020157548,0.02000625,0.025185296,-0.0353339,0.013768118,0.01079453,-0.0010016218,-0.010183519,0.0029721328,0.01560697,0.0011485554,0.0052081426,0.005691132,-0.052418936,-0.0005011746,0.027792277,-0.015525502,-0.017550567,-0.02338136,-0.00045389397,0.044993695,-0.026721554,0.010352274,0.020029526,0.04317812,0.015734991,-0.024463722,0.008839294,-0.01759712,0.0044254665,0.0043149022,0.018749313,0.0095375925,0.04343416,-0.03645118,0.032191556,0.011591754,0.01169068,-0.023160232,-0.0072623035,0.044435058,-0.00021567238,-0.036870155,0.05507247,0.0056067547,-0.025837041,-0.016049225,0.030329429,0.020262294,0.020669634,-0.024440445,0.04015216,-0.013791394,-0.018923888,0.0039337478,-0.0084785065,-0.017026844,0.030003555,0.014268565,0.046041142,-0.0012358427,0.009427029,-0.0061799414,0.033099346,-0.0046174983,0.033657983,0.048275698,-0.007914049,0.032261387,0.031190664,-0.01594448,0.00233639,-0.023835253,0.005522377,-0.030538918,0.014280203,0.02206623,0.008845113,0.024021465,0.03856935,0.049672294,0.0061101113,0.008909124,0.008140996,-0.012534457,0.016421651,0.003610785,0.004504025,0.014908671,0.01863293,-0.018376887,-0.015211267,-0.01780661,0.007599815,-0.0014162365,0.06666423,0.015700076,-0.007733655,-0.015478949,-0.013011628,-0.012383159,0.005211052,-0.035287347,0.025906872,0.012639201,0.019680377,0.015164714,0.008164273,-0.010614136,-0.016142333,-0.043131568,0.023195146,0.009543412,0.05144132,0.017469099,-0.016410014,-0.00501902,0.024626657,0.011038935,0.022473572,-0.022787806,-0.028071597,0.01629363,-0.009799454,-0.006930612,-0.022124423,0.006965527,0.0074776122,-0.030794961,-0.025883595,-0.007937325,-0.0110040195,-0.025324957,0.022531763,0.03477526,-0.01106803,-0.026977597,0.04008233,-0.005906441,-0.016037587,-0.0036282423,0.03114411,-0.029235428,0.02509219,0.0021763635,0.06079852,0.0012023826,-0.03349505,0.015572055,0.005563111,0.008030432,0.0010430833,-0.016677694,-0.0016148151,-0.0030928801,0.017259609,0.018469993,-0.012778861,0.057586346,0.012965074,0.020134272,0.042712588,0.03484509,-0.004975376,0.0047076955,-0.014559522,-0.033914026,-0.020483421,-0.005219781,0.02695432,0.0036806148,-0.0059442655,-0.025557723,0.018772589,0.0032063536,-0.00063246925,-0.034542497,0.024859425,-0.024230955,0.00058700715,0.00053427106,0.0014969773,-0.009776178,0.009752901,-0.011521924,-0.010637413,-0.0065756436,0.0030754227,-0.009584146,0.00048517194,0.00858907,-0.011190233,0.01822559,-0.0013944147,0.03912799,-0.003959934,0.0024731404,-0.038127095,0.0151065225,0.0083854,-0.040059052,-0.03328556,0.024580104,0.020751102,-0.030981174,-0.003404205,-0.012918521,-0.051161997,-0.029887173,-0.02172872,-0.002006153,-0.02097223,0.051580977,0.003520588,0.014687544,0.008344666,0.04434195,-0.039430585,-0.0048182593,0.0338442,-0.028583683,-0.019808399,-0.00832139,0.0031219758,-0.000008569613,-0.049067102,-0.0167708,0.025278402,-0.0006146481,-0.024230955,0.004181062,0.000010939327,0.016270354,-0.03396058,0.014466416,-0.020937314,-0.014629352,-0.010375551,-0.01031154,-0.04504025,-0.018120844,0.042177226,0.020727824,0.019948058,-0.013069819,0.019750208,-0.010841083,0.019447612,0.026791383,-0.023497742,0.024440445,-0.011580116,-0.0005899167,-0.005513648,0.06531418,0.012662479,-0.0029852258,0.002812106,0.019377781,0.021321379,0.022194251,0.030469088,0.024161126,-0.015269459,-0.017922994,-0.0005128129,0.023974912,-0.0050102915,0.03829003,-0.012546095,-0.010660689,0.0036486094,0.02192657,0.006127569,-0.03680033,0.023835253,-0.0025051457,0.024580104,-0.06456933,-0.007239027,0.02702415,0.005100488,0.019889867,0.000037779035,0.012743946,-0.023555934,-0.03959352,-0.0038057265,-0.042153947,0.006523271,-0.0065698246,0.020332122,0.031376876,-0.004826988,0.023486104,-0.019156653,0.012313329,-0.023602488,-0.0028499304,0.057632897,0.0046989666,-0.029887173,-0.04278242,-0.02509219,-0.017864801,0.030632025,0.03163292,0.015059969,-0.008536698,-0.0038202743,-0.012965074,0.011388084,0.0029852258,0.0029794066,0.018528186,0.011452095,-0.044109184,-0.004696057,0.017445823,0.0058016963,0.017096674,0.014862118,0.017760057,0.018656207,0.02963113,0.0057435045,-0.015397481,0.011952542,-0.023881806,0.0005204505,-0.0058075152,-0.016514758,-0.02935181,0.0202041,-0.02653534,0.004751339,0.040850457,-0.013011628,-0.0028644784,0.04799638,0.016945375,-0.025045637,-0.0016439109,-0.023660678,0.013104734,0.020052804,0.023753785,0.014571161,-0.0014911582,0.011591754,-0.031167386,-0.024440445,-0.015583693,-0.044528164,0.002572066,0.0078674955,0.022112783,-0.005769691,0.01739927,-0.0028091965,0.0030026832,0.026093084,0.019412696,0.008501783,0.027745724,-0.009293188,0.008286475,0.000038551894,-0.0378245,0.00632542,-0.0024105844,-0.022170976,-0.015059969,-0.0020934406,0.018190674,0.010887637,-0.001581355,0.020983867,-0.0077743893,-0.025022361,0.030096663,-0.0497654,0.023136955,0.016200524,-0.019866591,0.009991487,-0.00019894232,-0.0039133807,0.014652628,0.00022312817,-0.038732287,-0.015316012,0.003404205,-0.032284666,0.007809304,0.009461944,-0.0084785065,-0.014873757,0.02343955,-0.0123715205,-0.016898822,-0.01560697,0.017213056,0.00529543,-0.010404646,-0.021216635,-0.004579674,-0.008507603,0.04634374,0.0029313986,0.004614589,-0.0023087491,0.006145026,-0.031656194,0.0075183464,-0.027885385,-0.037591733,0.0014671541,0.01822559,0.003904652,0.011626669,-0.006371973,0.005766781,0.057726003,0.014222012,0.008018794,0.010544307,-0.04171169,-0.009095337,-0.038615905,-0.016398374,-0.036683943,-0.035706326,-0.040524587,-0.039197817,-0.0050859405,-0.0058337017,0.0019508712,0.01691046,0.01553714,-0.0019683286,-0.0036456997,0.004448743,0.028583683,-0.0023625763,-0.023602488,0.007576538,-0.037149478,0.028304363,-0.020227378,0.005577659,-0.0008714183,0.0540483,0.028420746,-0.02516202,0.020925676,-0.033192452,0.050975785,0.012871968,-0.0008495964,-0.009770359,0.027582789,-0.012394797,0.0156768,-0.019854952,-0.017015206,0.038871948,0.022939103,0.022368826,-0.0055747493,-0.010986562,0.03442611,-0.037242584,0.03684688,0.014408224,0.020518336,-0.04669289,-0.025418064,0.013698287,-0.0055194674,0.010486115,-0.024649935,0.025580999,-0.030259598,0.0028673878,-0.028653512,-0.035915814,-0.007890772,-0.02748968,-0.02867679,-0.038965054,0.024743041,-0.0037824498,-0.005787148,0.015921203,0.011772147,-0.044644546,0.055491447,-0.0041025034,0.033564877,0.02639568,-0.019366143,-0.006063558,0.0088800285,0.0006033735,0.016584588,0.032959685,-0.0059500844,-0.05144132,0.008600709,0.016724247,0.011987456,-0.01780661,-0.02000625,0.016526395,0.02234555,0.007431059,-0.01987823,0.030818237,-0.020937314,-0.0034536677,0.027396575,-0.025138743,0.008885847,0.003258726,0.0035758698,0.002714635,-0.00068411423,-0.024649935,-0.014803926,-0.012813776,-0.037475348,-0.00019694198,-0.001760294,-0.016654417,0.019843314,0.0360322,-0.0007543078,-0.015176353,-0.00076303654,-0.009258273,-0.024300786,0.0025749754,0.021193357,0.013861224,-0.004021035,-0.026232744,0.015339289,0.027047426,0.012464627,0.026465511,0.052093063,-0.0049404614,-0.007803485,-0.035985645,-0.050556805,-0.004841536,-0.021938208,-0.012767223,0.016654417,0.01258101,0.017445823,-0.022601593,0.010811987,-0.013034904,-0.03554339,0.023835253,-0.009072061,0.041967735,-0.014384948,0.01787644,0.04380659,0.026302574,-0.004655323,0.0013434971,-0.014478054,0.03361143,-0.020529974,0.015618608,0.031051004,-0.021810187,0.010730519,0.031307045,0.0061915796,-0.013430607,0.015572055,-0.0049695573,-0.028909555,0.01999461,0.011405541,0.003616604,-0.0033431037,0.0009667069,-0.04874123,-0.010154423,-0.01671261,0.009339741,-0.034472667,-0.013709926,0.016782438,0.013570266,0.002729183,0.008018794,-0.0030899707,0.056608725,0.0043847323,0.019622186,0.009240816,-0.04131599,0.0022592864,0.01615397,0.00563585,0.05130166,-0.0061217495,-0.06671078,0.01671261,-0.011143679,0.051953405,0.0031918057,0.042247057,-0.014350032,-0.017922994,0.0054903715,0.0104977535,0.012022371,-0.02303221,-0.027373299,-0.017585482,-0.008897486,-0.009915838,-0.012290052,-0.005836611,-0.008303932,-0.028863002,-0.027675895,0.029281981,-0.00467569,-0.003252907,0.014769012,-0.012150393,-0.009560869,-0.023241699,0.0103464555]},{"id":"guide-webhooks-7","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Editing a Webhook\nUse webhook.edit() to change name, avatar, or (with bot auth) channel. With a token (e.g. from createWebhook or fromToken), you can update name and avatar. Without a token (fetched webhook), bot auth lets you also change the target channel.\n\n```javascript\nimport { Client, Webhook } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// With token (name and avatar only)\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.edit({ name: 'New Name', avatar: null });\n// avatar: null clears the webhook avatar\n\n// With bot auth (fetched webhook — can also move to another channel)\nconst fetched = await Webhook.fetch(client, webhookId);\nawait fetched.edit({\n name: 'Updated Name',\n channel_id: newChannelId, // move webhook to different channel\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.012501302,0.012295831,-0.026192175,-0.041245647,0.01320423,-0.008635199,0.006986022,0.03131814,0.010403332,0.02043898,0.048534468,-0.0055585373,-0.015367085,-0.022212522,0.0026157028,0.047626067,-0.015107542,0.0044744066,-0.04412224,-0.018730324,-0.022515321,0.0032902432,0.02476469,0.07444547,-0.013528658,0.0295446,-0.03523291,-0.004031021,-0.024980975,-0.026451718,0.019573838,-0.012187689,0.0028982258,0.019746866,-0.031123484,0.037330877,0.014026115,-0.017951697,-0.007542957,-0.0030766614,-0.02504586,-0.029674372,0.01588617,0.037439022,0.0058234874,0.04879401,-0.06994673,0.035838507,-0.026624745,0.028290143,-0.034497537,-0.01193896,-0.02046061,0.017789483,0.0014856111,0.0036363,0.008326991,-0.031577684,-0.056666803,0.04524693,-0.019271038,-0.025911003,0.0144262435,-0.042024273,-0.014112629,0.0145884575,-0.07319102,-0.005109745,-0.005542316,0.01093864,0.07695438,0.023466976,0.0050989306,0.00451496,-0.035708737,-0.03358914,-0.019238595,0.01768134,-0.011084632,-0.017843554,-0.057358917,-0.033156566,-0.1175728,-0.014685785,-0.035925023,0.019844195,-0.011679417,-0.070292786,0.018276125,-0.042002644,-0.008472985,-0.0022385549,-0.038282536,-0.009240798,0.040813074,0.034973364,-0.01565907,-0.039190933,-0.016394442,0.02132575,0.04102936,-0.035860136,-0.04641487,0.007699764,0.013344816,-0.053336006,0.033783797,0.05074058,0.0028144151,-0.040618416,-0.083832264,-0.058224056,-0.00902992,0.01773541,-0.0042175674,-0.04593904,0.034216367,0.033243082,0.004044539,-0.07396964,-0.04262987,-0.022731606,0.09456002,-0.0435599,-0.0074348142,-0.01664317,-0.045895785,0.04429527,-0.06285257,-0.014847999,0.06055994,-0.016210599,0.011495574,-0.01048444,-0.050394524,-0.04390596,0.0077376137,0.04593904,-0.0013761165,0.013171787,0.018838467,-0.0700765,0.010430369,-0.04115913,-0.031080227,0.021974606,-0.04399247,0.061079025,-0.03804462,0.0017640786,-0.046241842,0.007975528,-0.0012132265,0.020211881,-0.000971933,0.05567189,-0.0014896664,0.026062403,-0.05043778,-0.05731566,-0.012631074,0.0149237,-0.0015099432,-0.014307286,-0.01828694,-0.03802299,0.0008597349,-0.0060235513,-0.050221495,-0.00570453,0.007829535,-0.023899548,0.02038491,-0.0028955222,-0.00011828113,-0.0070887576,0.016859455,-0.03220491,-0.010533104,0.02653823,0.007699764,0.0292418,0.006493972,-0.023164177,-0.033654023,-0.026689632,0.0011294158,0.0024399708,-0.027554773,-0.01977931,-0.012620259,0.01320423,-0.007186086,-0.036465734,0.02805223,0.0141018145,0.023899548,0.018676253,0.012804102,-0.046371613,0.013625987,-0.0062290225,0.0088136345,-0.022753235,-0.030409742,0.010138383,0.002262887,0.008240478,-0.012111988,-0.017778669,0.023704892,-0.004909681,0.016859455,0.016989226,-0.08024192,0.008851484,-0.016556656,0.014880443,-0.049096808,-0.013247487,-0.028398287,0.008137742,0.009646334,-0.021963794,-0.03637922,-0.001799225,0.03239957,-0.026430089,-0.032723997,0.027100574,-0.0030144793,0.036033165,-0.01239316,-0.03521128,0.012955502,-0.017118998,0.015280571,0.014718229,0.005623423,0.022093564,-0.045290183,-0.017032484,-0.012512117,-0.009116434,-0.042456843,0.005423359,0.005001602,-0.054071374,0.025089119,0.0073428927,0.054114632,0.027857574,0.014826371,-0.007732207,0.03265911,-0.008516242,-0.011917331,0.0148696285,0.0033091682,-0.011549646,0.08024192,0.0023034406,-0.011895703,0.040229104,0.003536268,-0.008851484,0.018762767,0.03194537,-0.008397285,-0.02296952,-0.036011536,0.0054125446,-0.021487964,0.0061533228,-0.052600633,0.03058277,-0.010587175,0.011084632,-0.018546483,0.008748748,-0.0050800056,0.0070184646,-0.008078263,-0.0025846118,-0.0032442827,0.028744344,-0.027792687,-0.00585593,0.03547082,0.028939001,-0.025629831,0.028203629,-0.02431049,-0.01388553,0.018503224,0.10260584,0.04862098,-0.0059857015,0.0284848,0.019606281,-0.018178796,0.016297113,-0.019271038,-0.0049556415,0.01193896,0.037482277,0.017800298,-0.03700645,0.0042175674,-0.054720234,0.0021020249,0.046458125,-0.013636801,-0.033956826,-0.025911003,0.0052746627,0.031123484,0.015972685,0.015723957,0.026451718,-0.037179478,-0.0091759125,-0.041959386,-0.06164137,-0.03404334,-0.04844795,0.0019357553,0.011549646,0.04818841,0.015442785,0.03343774,-0.03313494,0.024829576,0.017367726,0.001153748,0.016708056,0.0025237815,0.024807947,0.00064446323,0.0033199824,-0.009300277,-0.02537029,0.001599161,-0.022385549,-0.053595547,-0.0038201427,0.054547206,-0.0057964516,-0.05718589,-0.010830496,-0.00623443,0.022299036,-0.017843554,-0.045549728,-0.032594226,-0.008905556,-0.005866744,-0.011192774,0.0041986424,-0.00359845,0.008797413,0.035751995,-0.0035714144,0.034194738,-0.0023507532,-0.026841031,0.047236755,-0.02552169,-0.007916049,-0.026884288,0.0023737333,-0.052168064,0.024050947,-0.0025805563,-0.060776226,-0.00088812236,0.030020429,0.025629831,-0.02997717,-0.015313013,0.06371771,0.023661634,-0.014015301,-0.053941604,-0.005937037,-0.0014599272,-0.0027535849,0.02402932,-0.03505988,-0.009543598,-0.015540114,-0.016210599,-0.011365803,0.012025474,0.006996836,0.009868026,0.038736735,0.028182002,0.0286362,-0.010608804,0.011495574,0.009754476,-0.018330196,-0.01350703,0.033783797,0.005071895,-0.022947893,0.059435256,0.02655986,0.024353748,0.019465696,0.022861378,0.013020387,0.03981816,-0.025997518,-0.012479673,0.050308008,-0.036465734,0.025759604,0.030799055,-0.038823247,-0.008137742,0.03345937,-0.025954261,-0.005228702,-0.0154752275,-0.0287876,-0.011701046,0.014447872,-0.042478472,-0.061122283,-0.037655305,0.01985501,-0.03248608,0.03774182,-0.055152804,0.013366444,-0.014945328,-0.010397926,-0.0076132496,-0.06025714,0.014988585,0.031902112,0.03326471,-0.028246887,0.047669325,-0.009440863,-0.0015437378,-0.03979653,0.009008291,-0.022169264,-0.04983218,0.02567309,0.030409742,0.00520437,0.0049988986,-0.0070617218,0.034821965,0.038909763,0.012101174,-0.0113982465,-0.034237996,-0.0025156708,0.084956944,0.02582449,-0.0148696285,-0.03806625,0.037222736,-0.023229063,-0.06116554,0.05688309,0.039299075,0.008889334,0.016145714,-0.016783755,-0.031274885,-0.0007624064,-0.054633718,0.01915208,0.05372532,0.03895302,0.01246886,-0.023813033,0.0021709658,0.012566187,0.09507911,0.036141306,0.0017438019,0.015907798,-0.013809829,-0.003198322,0.013031201,-0.006845436,-0.008435135,-0.017292026,-0.053033207,-0.026430089,-0.015583371,-0.0045852526,-0.010846718,-0.024050947,-0.042002644,-0.00876497,0.040077705,0.013139345,0.021963794,-0.002357512,-0.0028765972,-0.000657981,0.02327232,-0.042478472,-0.041829616,-0.0054395804,0.015572556,-0.0005488245,0.014026115,-0.013907158,0.026343575,0.012728402,0.020417351,-0.024526777,0.026905917,0.041094247,0.0110738175,-0.01626467,-0.0075321426,-0.035708737,-0.055109546,-0.006477751,-0.0037849962,0.006331758,-0.038390677,-0.008180999,-0.044208758,-0.038715106,-0.007937678,-0.024418633,-0.027835945,-0.00014590823,0.0069373576,-0.046025556,0.02283975,-0.0105493255,0.041678216,-0.02344535,0.00043595047,-0.005347659,0.04788561,0.01209036,-0.0040553533,0.029869027,-0.03164257,-0.027814316,0.011592903,0.018092282,0.017389355,0.00731045,0.011452317,-0.0004917116,-0.00034284632,0.0041634957,-0.0032686146,0.012544559,0.005136781,-0.0084297275,-0.0039147674,0.017897626,-0.01813554,-0.024440262,-0.02268835,-0.005472023,0.008213442,0.036357593,-0.0023494014,0.035254538,0.05013498,-0.020503866,0.03328634,-0.0013288041,-0.01768134,-0.024007691,-0.072455645,0.012339088,0.0061208797,-0.027035687,0.003887732,-0.044598073,-0.023813033,-0.010003204,0.02790083,0.0144262435,0.00067183684,0.0012044399,0.011517203,-0.018146355,-0.0046852846,0.0046933955,0.009311091,-0.016837826,0.0032334684,-0.030972084,0.0014491129,-0.043040816,-0.014437057,-0.034497537,0.0124472305,0.008932591,-0.010311412,-0.002057416,0.018038211,0.03343774,0.0013173139,-0.004158089,0.016437698,0.016394442,0.0021425784,0.015832098,-0.004263528,0.02200705,0.0298474,-0.02701406,0.020320022,0.027100574,0.048015382,0.00149237,0.022926264,0.023640005,-0.024851205,0.010603397,-0.0024751173,0.0024034726,0.002965815,0.014447872,0.009132655,-0.016978413,-0.0161349,0.049356353,-0.023207435,-0.021812392,-0.015778027,0.008770377,-0.010625025,0.015896985,0.0068400293,-0.026192175,-0.002941483,-0.01178756,0.021487964,-0.007223936,0.0041472744,-0.020655265,0.0074834786,0.025283776,0.005253034,0.026386831,-0.03698482,-0.00002135397,0.0141234435,0.013106901,0.018027397,0.02185565,-0.027814316,-0.018578924,0.028874114,-0.0040364284,0.0019208856,-0.0450739,-0.010998118,-0.057099372,0.010619618,-0.032853767,0.019790124,0.03536268,-0.01216606,-0.009813955,-0.027187089,0.013452958,-0.037828334,0.019952338,0.057791486,0.0058397087,0.00028167808,-0.015323828,0.014058557,0.031556055,-0.012414788,0.01998478,0.026754517,0.012414788,0.0070184646,-0.037265994,0.0028793009,-0.0048826453,-0.0003398048,-0.004658249,0.06856251,0.018719511,0.030452998,0.04089959,-0.014815557,0.021033766,-0.020092923,-0.0009448973,-0.008883927,-0.013269115,-0.025846118,0.021650178,0.0060722157,0.039320704,-0.015994312,-0.011046782,0.02046061,0.015215686,-0.012274202,-0.013042016,0.034670565,-0.012631074,-0.0002551493,0.006445308,0.025024233,0.014793929,-0.017173069,-0.023769777,-0.015367085,-0.012533745,-0.036746908,0.011473946,0.026473345,-0.016589098,-0.017140627,-0.023748148,-0.007223936,-0.006493972,-0.030409742,0.0031956183,0.040553533,-0.04120239,-0.0071320147,0.01747587,-0.005085413,0.0065264152,0.023661634,-0.017292026,-0.007840349,0.018232867,0.013290744,0.046328355,-0.015237314,-0.014469501,0.00451496,-0.00074348145,0.004596067,-0.04715024,0.008548684,-0.034973364,0.0049718632,0.007867386,-0.039472103,0.0008408099,0.017292026,-0.0014856111,0.01634037,-0.00046501384,0.014415429,-0.056580286,-0.010641247,-0.0033389074,-0.00857572,0.023380464,0.0055287983,-0.03698482,-0.036335964,-0.02446189,0.0050610807,0.038433935,-0.038671847,-0.02835503,-0.0052070734,-0.010360076,-0.037222736,-0.017270397,0.020201067,-0.007926864,-0.037049707,0.008743341,-0.056796573,-0.011874074,-0.030409742,-0.033243082,0.009673369,-0.033091683,-0.008202627,0.030085314,-0.026970802,-0.012371531,0.01836264,0.012198502,-0.04654464,0.010565547,0.04085633,-0.027533146,0.027641287,-0.014458686,-0.015107542,0.015907798,0.028030602,-0.025024233,0.019800939,0.03265911,0.019541396,-0.03371891,0.055715147,-0.031967,0.0074834786,0.034475908,-0.0030685505,0.0021966496,-0.0306044,-0.0056450516,-0.018351825,0.04278127,0.000014404953,0.045117155,0.009970762,-0.008116114,0.035557337,-0.023704892,-0.01894661,0.021574479,0.008170185,-0.0301502,-0.0013963933,0.031902112,-0.014577643,0.0031902113,-0.03815276,-0.030388113,-0.0009421937,-0.013982858,-0.011809189,-0.0007529439,-0.0075970283,0.020925622,-0.016459327,0.02567309,0.01752994,0.015799657,0.0066994433,0.015680699,0.0012226889,0.0017086555,-0.0016775645,0.000027753824,0.0029820364,0.023337206,-0.0026562563,-0.012544559,0.053595547,0.03642248,-0.013042016,-0.007921456,0.0052395165,-0.024980975,-0.01894661,-0.023207435,0.0044041136,-0.010679097,-0.010965675,-0.0033010575,0.050351266,0.041440304,0.008656828,-0.0002470386,0.00914347,-0.022255778,0.059045944,-0.013474587,0.024570033,-0.007429407,0.016286299,0.036184564,0.012490488,0.024007691,-0.008413506,-0.04490087,0.037547164,0.002564335,0.011117075,-0.001768134,0.0143181,-0.02253695,0.02006048,-0.0030766614,-0.021996235,-0.0066507794,0.020276766,-0.03493011,-0.020774223,-0.010738575,-0.01664317,-0.022104379,0.011993031,0.0015910503,-0.008927184,0.0076024355,-0.0000149329935,-0.029133657,0.03968839,0.023358835,-0.014231586,-0.01715144,-0.043019187,0.004093203,0.050351266,-0.017216327,0.05433092,0.0051584095,0.02074178,0.016610727,-0.0059965155,0.0012057917,-0.01687027,-0.0065858937,0.013366444,-0.012998759,0.012187689,0.034584053,-0.0043257102,-0.0020357873,0.00254541,0.004201346,-0.040337246,-0.001549145,0.020265952,0.0006184414,-0.018881725,0.022472063,-0.001423429,-0.01025734,-0.02177995,0.020168623,0.023921177,0.028117115,0.005261145,0.0027427706,0.0015072396,-0.026084032,0.009743662,-0.019563023,-0.032572597,0.0039904676,0.021109466,0.0444683,0.0039012497,-0.001918182,-0.037071336,0.032745626,0.030626027,0.004866424,0.0286362,0.0011429337,-0.0020763408,-0.00064277346,-0.022991149,0.0015437378,-0.0013132585,-0.020676894,-0.03908279,-0.000934083,0.0059478516,-0.009732848,0.045419957,0.03668202,0.050481036,0.002690051,0.026516603,0.023813033,-0.0018222054,-0.0007191493,-0.0057802303,-0.020255137,0.00944627,0.025932632,-0.008413506,-0.015896985,-0.016686426,-0.011322546,-0.03531942,0.05294669,0.0013963933,0.023899548,-0.03808788,-0.0062668724,-0.020265952,0.0027981936,-0.031707454,-0.0018330197,-0.0072185285,0.007699764,0.0074131857,0.012241759,0.015399528,0.008527056,-0.029522972,0.036465734,0.020449795,0.026148917,0.015399528,-0.008894742,-0.010138383,0.015323828,-0.018730324,0.023834663,0.026473345,-0.042045902,-0.00768895,0.003065847,0.006277687,-0.004268935,-0.0027143832,0.02478632,-0.03345937,-0.024699805,-0.004006689,-0.005077302,-0.029349944,0.01907638,-0.0016437698,-0.010587175,-0.013831458,0.010776426,-0.0031361398,-0.0026427384,-0.021996235,0.004909681,-0.028744344,0.038909763,0.018038211,0.03088557,-0.014739857,-0.04418713,-0.025132375,0.0036660393,-0.0014504647,0.007953899,-0.0077376137,-0.020493051,-0.020655265,0.0086514205,0.015561742,-0.0453767,0.062419996,0.008078263,0.028549686,0.047366526,0.014880443,-0.01947651,0.013993672,-0.0062182085,-0.011960588,-0.020406537,-0.022017865,0.017713783,0.0035876357,0.009624705,0.022299036,0.03131814,0.021185165,0.034411024,-0.029414829,0.031469543,-0.007148236,-0.0008583831,0.00262111,0.03192374,-0.002752233,0.030409742,0.006915729,-0.047972124,0.010754797,-0.0029441863,0.013853086,-0.0008996125,0.0088136345,0.010765611,0.004331117,0.016881084,0.019541396,0.005415248,0.009273241,-0.020157808,0.033178195,-0.0012889265,-0.024418633,-0.02268835,-0.003322686,0.015951056,0.010565547,-0.03774182,0.0059911082,-0.02213682,0.010722354,0.0118416315,0.008018785,-0.012609445,0.06267954,0.016729685,-0.021077022,-0.0018032804,0.04343013,-0.019898266,-0.003611968,0.017713783,-0.020082109,-0.008591942,0.0049799737,-0.0026359796,0.009386791,-0.029912286,-0.016902711,0.0450739,0.0023845476,-0.0290904,0.0049988986,-0.0066507794,0.009305684,0.0063533867,0.0141018145,-0.005618016,-0.010749389,-0.017940883,-0.020849923,-0.0015126468,-0.0142424,0.035016622,0.034713823,0.025175633,-0.015237314,0.016599912,-0.041851245,0.05731566,0.025954261,-0.03252934,-0.011203589,-0.0161349,0.0021236532,0.026386831,0.04702047,-0.011928146,0.008408099,-0.0035578965,0.020622823,0.046631154,0.043365244,0.019649537,-0.004344635,-0.024591662,-0.0027508812,-0.0009374625,-0.00007650255,0.013723316,0.038239278,-0.00876497,-0.010619618,0.0047177277,0.005747787,-0.0101870475,-0.018903352,0.026213802,-0.026603118,0.009235391,-0.03986142,0.014274843,0.0069643934,0.0014829074,0.030517885,0.0009563875,-0.010825089,0.007505107,0.0018722214,-0.015442785,-0.03538431,0.022039494,0.004049946,0.023185806,0.05441743,-0.009321906,0.018027397,-0.015907798,0.008445949,-0.034540795,-0.0047663916,0.0149994,0.02180158,-0.046112068,-0.024353748,-0.0286362,0.020525495,0.020525495,0.050481036,0.011463132,0.00074010197,-0.009959947,-0.016026756,-0.009262427,-0.04163496,-0.0009800437,0.0596948,0.067351304,-0.024137462,0.036790166,-0.0029441863,0.026386831,0.0053638807,0.024807947,0.010268155,0.019141268,0.0082675135,0.016480956,-0.013993672,-0.00087933574,-0.018351825,0.013442144,-0.01828694,-0.015572556,-0.009316498,0.04563624,-0.034692194,-0.0041094245,0.036898308,-0.010765611,0.006277687,0.05714263,0.039017905,-0.0052584414,0.0073969644,-0.012252574,0.025867747,0.036184564,0.03205351,0.037395764,0.013225859,0.006672408,-0.047712583,-0.04133216,-0.0043067853,-0.018276125,0.005209777,-0.033632398,0.016015941,-0.022515321,0.011463132,-0.006018144,0.012609445,0.0011253605,0.03659551,0.04490087,0.017270397,-0.014372172,0.008235071,0.0011713211,-0.008056635,-0.004758281,-0.014761486,-0.025348661,-0.018654624,0.013150158,-0.010376297,0.010873754,-0.0022845156,0.01907638,-0.0060289586,-0.02266672,0.047193497,-0.020752594,0.022039494,0.021866465,0.01915208,0.0077538355,0.0031875076,-0.021920536,-0.018600553,0.02357512,-0.03086394,-0.023466976,-0.016026756,0.005801859,-0.011679417,-0.014188329,0.052254576,0.0032496897,0.017594825,-0.012317459,0.0026738294,0.00072117697,0.018838467,0.010095126,0.000420067,-0.010608804,-0.0012929818,-0.029349944,0.047409784,-0.015540114,-0.012057917,-0.0077267997,0.03821765,-0.01924941,0.019130453,-0.04059679,-0.020298395,-0.014804743,0.003455161,-0.02006048,-0.0033740539,-0.020071294,-0.0038904354,0.025911003,0.0023291246,-0.004295971,-0.026192175,-0.023207435,0.0099437265,-0.016589098,0.020795852,-0.00030854478,-0.049140066,-0.02117435,-0.027641287,0.002633276,-0.032788884,-0.0131934155,0.0050178235,-0.0005900539,0.0032334684,-0.012706773,0.008299956,0.0011442855,0.00060086814,-0.040618416,-0.0153022,-0.013409701,0.024094205,0.0003443671,-0.002476469,0.014491129,0.034519166,0.0033902752,-0.038239278,0.023921177,-0.008629791,0.018503224,-0.02283975,0.0028036009,-0.008002563,0.008851484,-0.007953899,0.03793648,-0.043949213,-0.0070509072,0.032853767,0.0044933315,0.043105703,-0.01975768,0.0035092323,0.024094205,-0.006412865,0.004958345,-0.009100213,-0.0087325275,-0.035535708,-0.03103697,0.017778669,0.006802179,0.0018384268,-0.012955502,0.020082109,-0.030928828,-0.00021780626,0.0008043117,-0.028809229,-0.012176874,-0.027554773,0.0038688069,-0.027835945,0.010057276,-0.030496256,-0.005523391,0.004990788,0.03164257,-0.03910442,0.05398486,-0.0015937538,0.044684585,0.013907158,0.005117856,0.012101174,0.0041337567,0.007256379,0.04262987,0.053638805,-0.019433253,-0.05177875,-0.0041526817,0.017465055,0.03523291,-0.0146209,0.0057207514,0.0051340773,0.023120921,0.017173069,-0.008089078,0.009008291,-0.011290103,0.0055909804,0.022277407,-0.020525495,0.014750672,0.0039526178,0.011095447,-0.010138383,-0.0027157348,0.0074077784,-0.007191493,-0.0008056635,-0.016383627,-0.0056288303,-0.028809229,0.004282453,0.029869027,-0.002784676,0.0027562885,-0.005409841,-0.009981576,-0.018081468,-0.023769777,-0.0011084632,0.019563023,0.03371891,-0.0029955541,-0.019130453,0.0074456283,0.016124085,0.0035038253,0.0034659752,0.028982257,-0.017281212,-0.018676253,-0.014253215,-0.056320745,0.0019316999,-0.016199784,0.0000833882,0.035968278,-0.024223976,0.025197262,-0.0031631754,0.011625346,-0.010987303,-0.0468907,0.0051070414,-0.005504466,0.007910643,-0.0102465255,0.004677174,0.023034407,0.032767255,0.0042175674,0.026062403,-0.0030469222,0.020038852,0.008640606,-0.008986663,0.022363922,-0.031101856,-0.009630112,0.076219015,-0.0008408099,0.0004149978,0.017930068,-0.0032902432,-0.05683983,0.009786919,-0.0001993882,-0.02937157,0.012425602,-0.023618378,-0.021585293,0.0000013042608,-0.017497497,-0.017140627,-0.020557936,-0.01977931,0.0016870269,-0.027641287,0.011149518,0.0017086555,-0.006407458,0.029566228,0.010360076,-0.014220772,0.026300317,-0.032313053,0.0036335965,0.013139345,0.009192134,0.040034447,-0.0025751493,-0.048967037,0.0009766642,-0.0113766175,0.021314936,-0.01603757,0.03637922,-0.027922459,-0.014274843,0.008489206,0.027554773,-0.022450436,-0.003668743,0.003844475,-0.03791485,0.022190893,-0.008910962,-0.018178796,-0.0035389715,0.0026386832,-0.016253855,0.00017691478,0.037547164,-0.022071935,-0.008159371,0.00095435977,0.025391918,-0.020449795,-0.014026115,-0.0012936577]},{"id":"guide-webhooks-8","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Deleting a Webhook\n\n```javascript\nconst webhook = await Webhook.fetch(client, webhookId);\nawait webhook.delete();\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.0443119,0.014830192,-0.0076496094,-0.04734941,-0.02032451,0.010977468,0.0072420025,0.03113447,0.04860015,0.010190173,0.059008084,-0.033926297,-0.013233266,-0.06678053,0.0142271565,0.058516722,-0.049225517,-0.00029994705,-0.02954871,0.037790187,0.027404586,0.058472052,-0.0028588322,0.05333509,-0.00071819784,0.023138672,-0.0056004077,-0.0039616046,-0.02718124,-0.01803521,0.022312291,-0.015444394,0.0114911655,0.03477501,-0.0033529857,0.014841359,0.024702096,0.004159824,-0.0067673917,0.061152205,-0.018481903,-0.02997307,0.017923538,0.03466334,0.012786574,0.07459765,-0.082236096,0.027918283,-0.010849045,-0.019810814,-0.034976024,0.005301682,0.0066613024,0.05914209,-0.01986665,0.0067562247,-0.0035204955,0.0060861856,-0.0466347,0.01978848,0.01583525,-0.001983594,-0.016438285,-0.017934704,-0.009743481,-0.00812422,-0.0021427283,0.017052487,-0.028990345,0.017890036,0.056193918,0.011301321,-0.019319452,-0.010139921,0.007912042,-0.01862708,0.006745057,0.031156804,-0.032429878,-0.018816922,-0.024188401,-0.020179335,-0.11185181,-0.01058103,-0.043999214,-0.021396572,-0.04181042,-0.06432372,0.046902716,0.022312291,-0.007900874,-0.0016346155,-0.022725482,0.017890036,-0.0112231495,0.013992643,-0.031268477,0.014037313,0.00036049483,0.014986535,0.072676875,-0.0466347,-0.077992514,0.024724431,-0.006571964,-0.0009883072,0.001007152,0.0061252713,-0.07294489,-0.0026536328,-0.044043884,-0.05253104,-0.051101625,0.038571898,0.0012465513,-0.0030095908,-0.0061196876,-0.0018830881,-0.012596729,-0.042569797,-0.0443119,-0.016750969,0.026868556,-0.058204036,-0.027136572,0.031737503,-0.017700192,0.054585826,-0.015343889,-0.019844316,0.06660186,0.022167116,0.02256914,-0.024925442,-0.014126651,-0.003724299,-0.0002554523,-0.016069764,0.033479605,0.044401236,0.051637657,-0.054541156,0.015757078,0.0007412304,0.00000414412,0.02327268,-0.0026913225,0.028275637,-0.035467386,-0.03718715,-0.027069567,-0.0142048225,0.038058203,0.010943967,-0.018962098,0.046411354,0.006890232,0.051101625,-0.030241083,-0.06222427,-0.014707351,0.011122644,0.022055443,-0.003643336,-0.048689485,0.024925442,0.026153848,-0.017476846,-0.0018677331,-0.008498325,0.026578205,-0.038192213,0.0015522565,-0.0076384423,-0.012083033,0.011117061,0.024925442,-0.04451291,0.009503383,-0.00299284,0.02785128,0.013825133,0.028811667,-0.0066613024,-0.04227945,-0.022144781,0.0167063,-0.00022177586,-0.061643567,-0.02838731,0.019151943,0.0035316627,-0.027382253,-0.017342838,0.050342247,0.021876767,-0.00852066,-0.0029816725,0.02689089,-0.034976024,-0.016739802,-0.0018328353,-0.004014649,-0.009179532,-0.0009666705,-0.0068678977,-0.035757735,-0.012764239,0.031469487,-0.019732643,0.014562177,0.0062704463,-0.013836301,0.014729686,-0.046411354,-0.027359918,0.0025321883,0.045272287,-0.010687118,0.0013568285,-0.022122446,-0.0189956,0.0031352232,-0.010837877,0.006711555,-0.007621691,0.02896801,-0.030375091,-0.031938516,0.019129608,-0.022435132,0.019375289,-0.006538462,0.00095620117,0.004028608,0.019330619,0.017756028,0.0070577418,-0.020726534,-0.017342838,-0.029772056,-0.05136964,-0.03278723,-0.014852527,-0.024411747,0.023094004,0.010675951,-0.021273732,0.022267623,0.021787427,0.025215793,0.043619525,0.05324575,-0.026332524,0.021876767,-0.024880774,-0.0028895424,-0.015444394,-0.020961046,-0.027828945,0.060616177,0.009201866,-0.02838731,0.017800698,0.0024107436,0.024188401,0.029169021,-0.0050839195,-0.016013928,0.025997505,-0.022714315,0.0030765948,0.045026608,-0.03906326,-0.038013533,0.041922092,-0.012071866,0.008637916,-0.050654933,-0.043038826,-0.022714315,0.019766144,-0.003936478,0.0018453985,0.045919992,0.027248245,-0.03962163,0.047170732,-0.010664784,0.032474548,-0.029615715,0.013021087,-0.036561783,-0.024702096,0.012071866,0.086524345,0.05807003,0.0023758458,0.047662094,0.005363102,-0.005885174,0.005686954,-0.02834264,-0.046411354,-0.014763188,0.00448926,-0.00598568,-0.057802014,-0.014439336,-0.01342311,-0.022222953,0.01600276,-0.050699603,0.009994745,0.011217566,-0.0014028937,-0.0025391679,0.03607042,0.014618013,-0.029236026,-0.0041374895,-0.0017895619,-0.023071669,-0.014472838,-0.024054393,-0.0615989,0.004776818,-0.010491691,0.048734155,0.059499443,0.04571898,0.0029565461,0.032742564,0.03211719,0.01036885,-0.0071414965,-0.008894765,-0.027873613,-0.024657428,-0.009804901,-0.009106944,0.017923538,-0.019073771,-0.016728636,-0.0419891,0.008721672,0.025796494,0.013199764,-0.025528478,-0.0016541582,0.00037340703,-0.0029984235,-0.013545951,-0.05494318,-0.023875715,0.0022027525,0.02843198,0.014484005,0.039219603,-0.008766341,-0.029079683,0.05552388,-0.03254155,0.015723577,0.018359063,0.020011825,-0.013646456,-0.051637657,0.026332524,-0.015355055,0.007560271,-0.019341785,0.021284899,-0.021039218,-0.07357026,0.0046456023,-0.018225055,0.05905275,0.047974776,-0.02780661,0.050520923,-0.025662486,-0.046277344,-0.055211198,0.0013665999,0.000042422704,-0.019509297,0.060035475,-0.07383827,-0.020480853,-0.0034060306,-0.044066217,0.02389805,0.012875912,0.022234121,-0.040671356,0.0051928004,0.018749919,0.015790582,-0.024947777,0.0015829667,0.020134665,-0.040872365,0.022077778,0.04348552,-0.0012221228,0.019955989,0.035043027,0.015801748,-0.038504895,0.014104317,0.074820995,0.0142494915,0.006002431,-0.025729489,-0.059365436,0.03790186,-0.033859294,0.028565986,-0.038996257,-0.054541156,0.0058014193,0.010932799,0.014763188,-0.0033083165,0.010921632,-0.008794259,0.054005127,0.020603692,-0.060884193,-0.058516722,-0.03562373,-0.01916311,-0.032184195,0.0050978786,-0.00477961,0.0008905932,0.0025489393,0.0035567891,-0.032764897,-0.06155423,-0.010837877,0.004279873,0.059365436,-0.018225055,0.004076069,-0.0060750186,-0.010798791,-0.046143338,0.020022992,0.012987585,-0.0720515,0.01945346,0.018560074,-0.000536729,-0.032653224,-0.0351547,-0.015946923,0.038616568,-0.005301682,-0.018403731,-0.018794589,-0.015500231,0.068388626,0.02423307,0.021016883,0.016784472,0.046322014,-0.008889182,-0.009927741,0.037834857,-0.009006438,0.03615976,0.013155095,-0.011770348,-0.0419891,0.04344085,0.0074597653,0.03171517,-0.002162271,0.019151943,-0.029638048,-0.0703094,-0.013668791,-0.007839453,0.06021415,0.017465677,0.0189956,0.015935756,0.024925442,-0.02660054,0.037053145,0.01388097,-0.009481049,-0.06570847,-0.028007621,-0.016929647,0.01192669,0.012518558,-0.0022906952,-0.006387703,-0.0356684,-0.0049108258,-0.0013826529,-0.0018188761,-0.0143834995,-0.03142482,-0.014305328,0.0111561455,-0.0066222167,-0.008732839,0.0030375093,-0.018638246,0.0010622906,-0.0026885306,0.012228208,-0.020224005,0.013992643,-0.0023535113,0.0030626357,-0.051816333,0.026511202,0.041006375,0.014081982,-0.045785982,0.015857585,-0.020793537,0.007917625,0.006828812,0.023451358,0.019632136,0.008420154,-0.006611049,-0.00017352958,0.004436215,-0.003576332,-0.029749721,-0.017521514,0.02601984,-0.018135717,-0.033591278,0.033635948,0.0019696348,-0.005170466,-0.0489575,-0.016304277,-0.0000873755,0.041631743,0.024255404,0.037410498,0.00835315,-0.0117368465,-0.009028773,0.012831243,0.016572293,-0.00656638,0.0036405441,-0.012351048,0.03548972,-0.011323656,-0.009296788,-0.014562177,0.028364975,-0.010502858,-0.008079551,-0.0013889346,0.01749918,0.0031994353,-0.018682916,0.0023758458,0.030620772,-0.040135324,-0.014651515,0.0028895424,0.02901268,0.04784077,-0.027024899,0.010983053,0.00096318073,-0.015399725,-0.031246142,-0.008542995,-0.013903305,0.036226764,-0.008475991,0.02660054,0.0044027134,-0.015109375,0.0025070617,-0.009548053,0.022468634,-0.035757735,-0.0051816334,-0.00079078536,-0.00017274437,-0.025416804,0.031268477,0.0032050188,-0.03370295,0.0003919029,-0.010039414,0.012585562,-0.03129081,0.0077445316,-0.022636143,0.04060435,-0.008956186,-0.002601984,-0.0019626552,0.0012605104,0.006605466,0.009598305,0.014282993,-0.028297972,0.023540696,-0.013333772,-0.011351574,0.0034255732,0.0008145159,0.016371282,0.041966762,0.009592722,0.04073836,0.016013928,0.0017016194,-0.0085094925,-0.015701242,-0.032519218,0.0070912438,0.028901007,-0.0009122299,0.0067673917,-0.030040072,-0.0142718265,-0.016326612,-0.018515404,0.0143388305,-0.032720227,0.010759707,-0.01862708,-0.026198518,-0.012697235,0.02119556,0.0030989293,-0.015288051,-0.0018733168,-0.013836301,0.024411747,-0.007817119,-0.0007073795,-0.005086711,0.015042371,0.023965053,-0.009832819,0.028208634,-0.034730345,0.0035902911,0.027024899,0.007733364,0.03524404,0.016404783,0.028766999,-0.03837089,0.028565986,-0.008297314,0.0042519546,0.016661631,-0.0011551189,-0.037455168,0.002945379,-0.042614467,0.022591475,0.031000461,-0.0029565461,0.00048508018,-0.011318072,-0.0094978,-0.050029565,0.019955989,0.040894702,-0.02718124,-0.009860737,-0.023027,-0.011949025,0.00058942474,-0.030911123,0.0030821785,0.042212445,0.033479605,0.042123105,0.0054049795,-0.04118505,-0.003964396,0.0100226635,-0.024456415,0.028744664,-0.009296788,0.025707155,0.026511202,-0.006538462,0.0024554129,-0.021787427,-0.0010029643,-0.015031204,-0.018604744,-0.022312291,0.047662094,-0.006432372,0.021854432,-0.016237274,-0.0018105006,0.018124549,-0.017856535,-0.024970112,-0.026421864,0.008403403,-0.004179367,-0.018135717,-0.0073536756,-0.031201473,0.020603692,-0.0073871776,-0.0070800767,-0.037723184,0.0071470803,0.003900184,-0.011770348,-0.0036042503,0.013177429,-0.01525455,-0.044155557,-0.011195231,-0.023295015,-0.0056841625,0.00041493546,0.048823494,-0.04281548,0.004734941,-0.018180385,-0.007409512,-0.007476516,0.040425673,-0.0026578205,-0.027672602,0.030062407,-0.007364843,0.05498785,0.01255206,0.016817974,-0.020503188,-0.02834264,0.0054552327,-0.059722792,0.025774159,-0.013344939,-0.024746766,-0.013657624,0.003269231,-0.020257507,0.025081785,0.008302897,-0.008207975,0.0033613613,0.004698647,-0.020815872,-0.017633187,-0.041832756,0.013635289,0.037388165,0.008297314,0.00015555718,-0.038102873,-0.013635289,0.023473693,0.053469095,-0.023183342,-0.03848256,0.0044808844,-0.01134599,-0.008152138,0.012339881,0.012362216,0.0075379363,-0.019844316,0.00076216913,-0.06231361,0.0009931929,0.020882875,-0.06030349,0.0055501545,-0.033501938,-0.018046377,0.034216646,-0.01857124,0.007800368,0.0028002039,-0.018280892,-0.05083361,0.020670697,0.017264666,-0.0032971492,-0.005968929,0.00014849036,-0.027985286,0.04223478,0.013657624,-0.0074709323,0.025774159,0.006437956,-0.0067562247,-0.041453067,0.0363161,-0.010625699,0.042569797,0.00076147116,-0.0058963415,-0.00887243,0.0032050188,-0.012161204,-0.0035288709,0.011362741,0.030978126,0.02111739,0.009062274,0.025573147,0.048242792,-0.008408987,-0.017175328,0.03553439,-0.012295212,0.009575971,-0.0046791043,0.010435854,-0.0189956,0.010687118,-0.0072810883,-0.030241083,0.0065161274,-0.019833148,0.0015955298,-0.035512056,-0.015165212,0.03761151,-0.0067729754,-0.00061908795,0.004095612,-0.0039867307,0.0025838371,0.033390265,0.000021015052,-0.01824739,0.0072085005,-0.0063653686,0.022423964,0.016985483,-0.011949025,-0.020045327,0.018548908,0.017264666,-0.00034426732,-0.04851081,-0.010770873,-0.010117586,-0.027404586,0.00037131316,0.0141154835,-0.0036768378,-0.00019630043,-0.002519625,0.054183803,0.03562373,0.060884193,-0.009525718,-0.03278723,-0.0049554952,0.02057019,-0.025193458,-0.006890232,-0.014327663,-0.007850621,0.040135324,0.0061978586,0.015991593,-0.024367077,-0.014484005,0.023406688,-0.016784472,-0.017945873,0.0018356271,-0.00015512096,-0.014606846,0.0072140843,-0.012284044,-0.03017408,-0.00028528995,0.023228012,-0.006432372,-0.0020687447,-0.0038192212,-0.022792486,-0.013813966,0.01030743,0.0035958749,0.01708599,0.018180385,-0.008660251,-0.0027876406,0.016896145,0.012373383,-0.02892334,-0.0019459043,-0.0178342,0.014629181,0.046992052,0.018292058,-0.017376339,0.008492742,0.008905932,0.04156474,-0.007923209,0.017007818,-0.019352954,0.048689485,0.0013268164,0.017711358,0.009866321,0.06338567,-0.010033831,0.035422716,0.021240229,0.028990345,0.009570387,0.0021999606,0.031826843,0.022770151,-0.031223807,0.03765618,0.0036545033,-0.03712015,-0.057802014,0.03211719,0.011083558,-0.010586613,0.009587138,0.02427774,0.0112231495,-0.009240951,0.0019570717,-0.024456415,-0.034507,0.0024274946,0.017968208,0.060124815,0.007269921,-0.0114911655,-0.01587992,0.0299284,-0.02718124,0.018928595,0.02240163,0.015790582,0.020391515,0.037008476,-0.013970309,0.009548053,-0.01180385,-0.011150562,-0.0039783553,0.033032913,0.001203278,-0.00061524916,0.062402945,0.034976024,0.019006766,0.0043161665,0.0046930634,0.0038443475,-0.011306904,-0.0031017212,-0.0046204757,0.017945873,0.0049834135,0.027962953,-0.013557118,0.010675951,0.001658346,0.0023590948,0.007515602,0.056997966,0.003922519,-0.022915326,-0.008252644,-0.003087762,-0.055121858,-0.004648394,-0.014774355,0.034551665,0.014305328,0.009793733,0.022703148,0.01778953,0.03557906,-0.035422716,-0.013557118,0.035020694,0.0045618475,0.013155095,0.0040202327,-0.031491823,-0.01911844,0.016795639,-0.01059778,0.054228473,-0.019821981,-0.0011662863,0.009162781,-0.03200552,0.0046065166,-0.0003266439,0.01026276,0.03948762,-0.031916182,-0.048778825,0.013188597,-0.03209486,-0.005377061,0.02959338,0.026086843,-0.002666196,-0.043128163,0.025997505,0.006080602,-0.025617816,-0.00021497077,0.030263418,-0.010815543,0.026779218,0.007850621,0.031402484,0.0012667921,-0.028364975,-0.011396243,0.0024763518,0.0022892992,-0.005952178,-0.016639296,-0.014819024,-0.012049531,0.0017602477,0.011027722,-0.012295212,0.050029565,0.018515404,0.03254155,0.011580504,0.041676413,-0.018068712,0.01687381,-0.04654536,-0.04272614,-0.040157657,-0.0052458453,0.032764897,-0.02655587,0.016237274,-0.0027234284,-0.021977272,0.020771202,0.027091902,-0.026399529,0.010837877,0.0068008937,0.0062983646,-0.0061866916,0.026667545,0.0072085005,-0.022870658,0.03263089,-0.028119294,0.01720883,0.010530776,0.031112134,-0.023473693,-0.005136964,-0.010257177,0.014830192,0.0019305493,0.028744664,-0.010899298,0.0031826843,-0.019911319,0.0052430537,-0.022892991,-0.011859686,-0.027605599,-0.0029900481,0.008252644,-0.0322512,-0.005642285,-0.020938711,-0.044490576,-0.02036918,0.009006438,0.026377194,0.013646456,0.052843727,0.06325166,-0.013166262,-0.0022306708,0.079645276,-0.030576102,-0.0026229226,0.00094294,-0.015511398,-0.0050643766,-0.03408264,0.018459568,-0.0058740065,-0.041162714,0.0049331607,0.027940618,0.015801748,-0.036986142,0.009140446,0.0017476846,0.012540893,0.0036042503,-0.018470736,-0.030486764,-0.0016513665,-0.013076924,0.030107075,-0.02622085,-0.05440715,0.028096959,-0.0015355055,0.03598108,-0.034574002,0.020581357,-0.020257507,0.017354004,0.013478947,-0.013947974,0.016348947,-0.022669645,-0.0010930008,0.0039197267,0.062090263,0.0010518213,0.017901203,-0.022334626,0.010770873,-0.008905932,0.014863694,0.034529332,-0.040157657,-0.025148788,-0.017264666,-0.010569862,-0.009146029,0.024076726,0.030017737,0.013545951,-0.012875912,0.0017462886,0.01629311,0.00581817,-0.038058203,0.021843264,-0.020592526,-0.00028354506,-0.0368298,0.005217927,0.02115089,0.006097353,-0.005592032,0.0040928205,0.022211786,-0.00041528445,-0.041207384,-0.0059800963,-0.03316692,0.02597517,0.007364843,0.017443344,0.033591278,-0.03196085,0.018057546,0.002487519,-0.00008454005,-0.028856337,0.025037115,0.04855548,-0.028230967,-0.019955989,-0.014484005,-0.032563884,0.0067338897,0.04093937,0.049940225,0.011502333,-0.0003817825,0.0070298235,-0.043820538,-0.01820272,0.000037384325,-0.012351048,0.04971688,0.05994614,-0.017610854,0.030040072,-0.015031204,0.018180385,-0.013758129,0.00989424,0.022189451,0.006845563,-0.007264337,0.016594628,-0.014629181,0.016516456,-0.039755635,0.019218946,-0.01392564,-0.009475465,-0.008408987,0.023875715,-0.028543653,-0.010313014,0.0586954,0.012284044,0.033010576,0.06423438,0.01857124,-0.012976418,0.00899527,-0.03209486,0.005120213,-0.0063151154,0.009408461,0.0070019052,0.010279512,0.0087551735,-0.047617424,-0.03519937,-0.02622085,-0.030821783,0.021039218,0.010458189,0.008559746,0.002959338,0.021664588,-0.009927741,-0.034484662,0.008945018,0.021709256,0.03595875,-0.005547363,-0.007967878,-0.0020743285,-0.010268345,-0.029057348,-0.0066278004,0.015444394,-0.020346845,-0.028029956,-0.010809959,0.01030743,0.00024655333,-0.0069684032,-0.0016960357,0.02094988,-0.02032451,0.038058203,-0.0041374895,0.03716482,0.028476648,0.009218617,0.0032106026,-0.010742955,-0.0009638787,0.0045143864,0.041721083,-0.048287462,-0.0012060698,0.0099779945,-0.044110887,-0.010167839,-0.016226105,-0.012518558,0.0017295376,0.0031156803,0.030643107,-0.0021343527,-0.011306904,0.041252054,-0.0068064774,-0.020748869,0.015332721,-0.02256914,-0.00374105,0.031447154,-0.0061922753,0.0115135,0.024501085,0.011625173,-0.06807594,0.002470768,-0.02689089,-0.0019096106,0.006102937,0.033680618,0.0005311453,0.012060698,-0.008168889,0.04384287,0.021016883,-0.014305328,0.002490311,0.009799317,-0.011150562,0.009950076,-0.020882875,-0.009179532,-0.009743481,-0.05083361,-0.009095777,-0.031201473,0.0041709915,-0.017476846,-0.006650135,0.01936412,0.036986142,-0.015064705,-0.01197136,-0.013791632,0.015958091,0.006426789,0.014428169,0.014729686,-0.003950437,0.028744664,0.003464659,0.014997701,0.011022138,0.03848256,0.029057348,-0.01953163,0.011904356,-0.004173783,0.04225711,0.022546805,0.0046204757,-0.0050420417,0.0054384815,-0.013635289,0.021675754,-0.021050386,0.018303227,0.025952836,0.011703344,0.03207252,0.00021252793,0.00084801787,0.0026145473,-0.046232678,-0.009218617,-0.02090521,-0.0030821785,-0.021753926,-0.022781318,0.0016108849,-0.0042156605,0.019553965,0.006862314,0.033010576,0.007990212,-0.01994482,-0.019643303,-0.024724431,-0.03988964,-0.014193655,-0.023741707,-0.024657428,0.011826185,-0.009441963,-0.001203278,0.02631019,0.0098439865,-0.018772254,0.058918744,-0.026131513,0.038795248,0.033233926,0.017141826,-0.020838207,0.009073442,0.014405834,0.018046377,0.027203575,-0.0020561814,-0.05874007,0.04784077,0.023987388,-0.0026913225,0.010452605,-0.015433227,-0.0036796296,0.028521318,0.022982331,0.005217927,-0.02116206,-0.024702096,0.009263286,0.007152664,-0.015053538,0.018593576,-0.0017155785,0.01866058,-0.0142271565,0.0031352232,-0.00022090341,0.014539842,-0.027493926,0.000056796256,0.031737503,-0.010391185,0.021430073,0.0056674113,-0.01682914,-0.009793733,-0.033725284,0.0014014977,-0.022021942,-0.04335151,-0.01450634,0.017778363,0.013389609,-0.010435854,-0.030888788,0.038460225,0.039643962,0.018169219,-0.0040984037,0.016304277,-0.012250543,-0.018437235,-0.045026608,-0.03548972,-0.030933456,-0.02198844,-0.015678907,0.016884977,-0.020659529,0.0017923538,0.006292781,0.030241083,-0.014472838,-0.04310583,0.015020036,-0.010603364,0.0085318275,0.0057511665,0.0101120025,0.0010560091,0.034015637,0.006035933,0.0076384423,0.012451554,0.0036600868,0.017152993,0.029325364,0.019308284,-0.023764042,0.03046443,0.02601984,0.006142022,-0.010273928,0.0116698425,-0.013166262,-0.037924197,0.026176183,0.013043421,-0.012485056,-0.0066892207,-0.024501085,-0.00656638,-0.004698647,-0.0009687644,0.004081653,-0.032295868,-0.023831047,0.009749064,0.002797412,0.042882483,0.0056506605,-0.012708402,0.018392565,-0.010363267,-0.0033836958,0.02252447,-0.026756883,-0.010301846,0.016929647,0.007962294,0.07544637,0.00014473885,-0.041654076,0.0084648235,-0.0063765356,0.0089171,-0.016114432,0.013054589,-0.006678053,-0.00910136,-0.008341983,0.021284899,-0.010815543,0.013601787,-0.00057581457,-0.022959996,-0.017934704,-0.018236222,0.009257702,-0.008660251,-0.0050811274,0.0080628,-0.010329764,0.0040984037,0.025818828,-0.016203772,-0.01026276,-0.0110891415,0.0073425085,-0.01087138,-0.003774552]},{"id":"guide-webhook-attachments-embeds-0","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Overview\nWebhooks support rich embeds and file attachments. Embeds can have just a description (no title required), and you can attach files the same way as with channel.send or message.reply.","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.025569232,0.039378777,-0.017369816,-0.029366856,0.003255492,-0.053727753,0.04194649,0.017855309,0.0069101662,0.0070827855,0.013852698,-0.02960421,0.026863877,-0.06749415,-0.031438287,0.026216555,-0.0041482574,0.021814764,0.004051159,0.036206897,0.018642884,0.014079261,-0.015298385,0.022311043,-0.030661501,-0.012698307,-0.031330403,0.047297686,-0.0010060468,-0.005852873,0.0062628435,-0.012266759,0.0059715486,0.027813284,-0.058820024,0.03927089,0.024317743,0.025633965,0.0059553655,0.041385476,0.013270108,0.020261189,-0.02474929,0.016388044,0.0030289292,0.019398093,-0.05825901,0.013302474,-0.022354199,0.06883194,-0.0047928826,0.021857917,0.042788006,-0.00920816,-0.028611647,0.011716534,-0.006510984,0.0059229997,-0.062099792,-0.0021887587,0.007287771,-0.022019748,-0.022979943,-0.011468395,-0.016118327,-0.04911019,-0.06257449,0.017715055,0.0014187148,0.021955017,0.113669805,0.019592289,-0.0069047716,0.01974333,0.014413711,0.0014874928,-0.025180839,0.0058906334,-0.03344499,-0.038170442,-0.04768608,-0.019646233,-0.12834245,-0.010508199,-0.09381858,0.04067342,-0.011274197,-0.040328182,-0.014780527,0.024296166,-0.018071081,-0.012935658,-0.053123586,-0.010141384,0.029366856,0.011953886,-0.057093833,-0.019311784,-0.008771217,0.0071313344,0.037393656,-0.015417061,-0.08246887,-0.03976717,0.026820723,-0.035214335,0.017272718,0.021037977,0.016549874,-0.020584852,-0.051656324,-0.035689037,-0.016463565,0.027748551,0.04326271,-0.014597119,0.02509453,0.02710123,-0.0011085395,-0.012353068,-0.053986683,-0.022160001,0.04509679,-0.03249558,-0.0030612953,0.0004979662,-0.044967327,0.03059677,-0.046995603,0.0077570793,0.04326271,0.024814023,0.054461386,0.0032150343,-0.014694218,-0.006408491,-0.031373557,0.032538738,-0.008641753,-0.0023816067,0.038990382,-0.05653282,0.037911512,-0.035732195,-0.039875057,0.032279808,-0.052476265,0.030942008,-0.03167564,-0.06386914,-0.0639986,0.0016547177,-0.02159899,0.01925784,-0.02800748,0.01216966,-0.03210719,-0.015061033,-0.01283856,-0.042140685,-0.005604733,0.01567599,-0.010993691,-0.002996563,-0.044881016,-0.01183521,0.04427685,-0.022483664,-0.00483334,0.022958366,0.01167338,-0.016485142,-0.032581892,0.04084604,0.04958489,-0.011209466,0.0059715486,-0.07340635,-0.002175273,-0.010508199,0.018189758,0.0073902635,0.008841344,-0.0076815584,-0.04227015,0.0006945229,0.019484403,0.009601948,-0.007972853,-0.010702396,-0.011953886,0.00060787617,-0.0015319962,-0.0056370986,0.011619437,-0.007347109,-0.02326045,0.03808413,0.050145905,-0.05195841,-0.0007026145,0.0147157945,0.018448686,-0.0137448115,-0.044039495,0.023023099,0.0013499368,0.03059677,-0.025310304,-0.018621307,0.0051570013,-0.011058424,0.056575973,0.027791707,-0.03232296,-0.0154602155,-0.009138034,0.018189758,-0.020034626,0.0072230385,-0.0608483,0.015568103,0.04244277,0.00063720794,-0.061452467,0.032409273,-0.02783486,-0.04643459,-0.0069101662,-0.020023838,0.020735893,-0.0021523468,-0.0020984032,-0.035904814,-0.0073201368,0.040155564,0.022289466,0.03117936,0.013431938,-0.01884787,-0.02459825,0.0069155605,-0.028050635,0.0054833596,-0.01775821,-0.017779788,0.008469134,-0.045744114,0.030078912,0.023433069,0.07759237,0.0072284327,0.010103623,-0.02850376,0.020466175,-0.060718838,-0.04142863,0.025439769,0.015190498,-0.01317301,0.028352719,0.000022989216,-0.04099708,0.013119066,0.005842084,0.02584974,0.019484403,0.033703916,-0.0019365727,0.021070343,0.007924304,0.015061033,0.022699436,0.0029399223,-0.05437508,0.012968024,-0.010448862,-0.030704657,-0.019980684,0.0076977415,-0.0076384037,-0.008242571,-0.022742592,0.04201122,-0.021825552,0.025936048,-0.027619086,0.016150692,0.026151823,0.017359028,-0.019290205,-0.0009871665,0.004202201,-0.010993691,-0.0058636614,0.046218816,0.02392935,0.014726584,0.07120546,-0.0017396788,-0.042874318,0.01192152,0.01192152,0.00308557,0.027985903,-0.004741636,-0.022354199,-0.051872097,0.0045366506,-0.027878016,0.009877061,0.023735153,-0.03342341,0.007503545,-0.044320002,0.008361247,0.045657802,0.026238132,-0.0059391824,0.004987079,0.027726974,0.045312565,0.016290946,-0.07444207,-0.000003895629,-0.03281924,-0.019894373,0.010578326,0.014359768,0.026194979,0.03584008,0.0088521335,0.016614607,-0.0016722494,0.006052464,-0.03901196,-0.0018893721,-0.010923564,-0.017607167,0.049886975,-0.028417451,-0.0040916167,0.016560663,-0.021803975,-0.06835724,-0.0070126588,-0.023864618,0.042960625,-0.00712594,-0.005599338,0.015071822,-0.049282808,-0.014866836,0.0116949575,0.010367947,-0.02533188,0.021383215,-0.052648883,0.020304345,-0.030208377,-0.052735195,0.023864618,-0.0035575756,0.028805844,0.012957236,0.023238873,-0.005691042,-0.015093399,-0.015902553,0.0016304431,0.05920842,0.06611319,0.005151607,0.0094563,-0.03409231,0.046391435,0.002361378,0.043543216,-0.030078912,0.0072500105,0.004293905,0.041644406,0.0054968456,-0.013658501,0.0039837295,-0.004436855,0.00045413707,0.012978813,-0.037048414,-0.01167338,-0.016485142,-0.011802844,-0.017218774,0.018998912,0.016226213,0.034308083,0.027446467,-0.0036169137,-0.014262669,-0.06300604,-0.031567752,-0.0028374295,-0.005599338,0.0018853263,0.027079651,-0.0065811104,0.0010741506,-0.0025474832,0.015158132,-0.032797664,0.009866271,0.061409313,0.0012791359,-0.01992674,-0.014402922,0.016312523,-0.01858894,-0.03249558,0.033380255,0.04932596,-0.041234434,-0.01029782,-0.019290205,0.029323703,0.030445728,-0.037717316,0.04341375,-0.006300604,0.02809379,-0.047297686,-0.057482224,0.009348414,0.017380605,-0.009386174,0.020973245,-0.043154825,0.037307344,0.0043208767,0.0028374295,-0.0039001172,-0.01884787,-0.0014268063,-0.023130985,0.0075520943,-0.04427685,-0.017564014,-0.054288767,0.0028266408,-0.02334676,0.0009129942,-0.0025785007,-0.018448686,0.013442728,-0.007514334,0.019862007,0.002649976,-0.031546175,-0.010276242,0.019398093,0.0070666024,0.0067321523,-0.005993126,-0.016582241,0.052217335,0.0017302387,-0.018189758,-0.053900376,0.012741461,0.017682688,-0.02334676,0.027554356,0.03717788,0.0020296252,0.023950927,-0.0050383257,-0.04367268,0.017294295,-0.039378777,-0.017941618,0.0015670595,-0.0119754635,-0.009359202,-0.0639986,-0.014985512,-0.023605688,0.08009535,0.038796186,-0.007929699,0.05018906,-0.009423935,-0.038817763,0.008226388,0.019969894,-0.008026797,-0.00018930808,-0.020034626,-0.029151084,-0.04343533,0.019128375,0.030510461,-0.019969894,-0.016323311,0.0021968503,-0.0067591243,0.04768608,0.001088985,-0.044881016,-0.004490799,0.02067116,0.042162262,-0.011446817,-0.025353458,-0.0042102924,0.043543216,-0.007676164,0.00012592443,-0.033703916,0.02742489,0.009100273,-0.0360127,-0.04067342,0.02716596,0.028395874,0.010135989,-0.014014529,0.025029797,-0.030208377,-0.0071475175,0.0021981988,-0.032797664,-0.0075305165,0.015287596,-0.008069952,-0.012773828,-0.041881755,0.01104224,-0.0393572,0.023368336,0.016830381,0.0029911688,-0.057136986,0.03350972,-0.021782396,-0.0005967503,-0.015125765,0.0021806671,-0.013529037,0.00871188,0.010524383,0.017326662,0.008091529,-0.04958489,0.025439769,-0.014133205,0.02567712,0.03225823,-0.011101578,-0.0004119937,-0.021415582,-0.006020098,0.012989602,-0.032625046,0.001128094,0.013043545,-0.022224734,0.02984156,0.008808978,-0.0009601948,0.019732542,-0.023389915,0.01483447,0.0029938659,-0.003945969,0.013237742,-0.0032581892,0.01467264,-0.02992787,-0.009494061,-0.032042455,-0.026410751,-0.0046283547,0.0038542652,-0.033552874,-0.012957236,-0.0057234084,-0.003883934,0.0006709226,0.005701831,0.0055669723,-0.0008819767,0.0465209,-0.017564014,0.021458736,-0.0022885543,-0.0112849865,-0.008728063,-0.0116949575,-0.03234454,-0.044320002,0.028352719,-0.006241266,0.025439769,-0.023066252,0.005685648,-0.0025879408,0.0550224,-0.014057684,-0.017553225,-0.041968066,0.0009757036,0.009483272,0.0005761843,-0.009461695,-0.038537256,-0.0025879408,0.03232296,0.0055615776,-0.01599965,0.025137685,0.00758446,0.041493364,0.024296166,0.020930089,0.016657762,-0.025223995,0.029992603,0.0069641094,-0.03210719,0.022052115,0.032474004,0.014510809,0.034545437,0.015783876,-0.016733283,-0.01133893,-0.026475484,0.009607342,-0.040565535,0.015913341,0.022332622,0.0033984424,0.0058798445,0.031956147,0.0019096009,-0.012148083,0.027619086,-0.02050933,0.026885455,-0.0019433156,-0.008274937,-0.0056424933,-0.021609778,0.014273458,0.006327576,-0.0041509545,-0.057784308,0.001857006,0.015546525,-0.017909251,0.013885064,-0.0033768648,0.00758446,-0.0043316656,-0.014758949,-0.0033714706,-0.0057827462,-0.039443508,-0.02100561,0.003471266,0.0163341,-0.07323374,0.008010614,0.010723974,0.0037679556,0.006451646,-0.03476121,0.01800635,-0.017844519,0.027014919,0.05411615,0.010443468,0.0038785397,-0.030078912,-0.023476224,-0.0044719186,-0.0062035057,0.01583782,0.049886975,0.034006,-0.005993126,-0.031049896,-0.019247051,-0.0189126,-0.005213642,0.025871316,0.062056635,0.04101866,0.0050329315,0.022311043,-0.028223254,-0.025288727,-0.009618131,-0.019635445,-0.01325932,0.012277547,-0.028697958,0.014316613,0.008296515,0.030812543,-0.051224776,-0.0024355503,0.024231434,-0.0076384037,-0.002345195,-0.004253447,-0.014273458,-0.013885064,-0.0084151905,0.018578151,0.013399573,0.008269543,-0.027726974,-0.031977724,-0.015384695,-0.034006,-0.026648104,-0.0027147082,0.008566232,0.0012332839,0.0049924734,-0.0013863487,-0.03560273,0.03359603,0.0026176097,-0.024943488,0.05851794,-0.029755251,0.015686778,-0.026885455,0.002024231,0.028331142,0.024188278,0.042874318,0.03184826,0.059942048,0.013140644,0.011231042,-0.008123895,-0.007514334,-0.016636183,-0.0011591116,0.0047470303,-0.040543955,0.025245572,-0.017715055,0.021383215,0.014100838,-0.03432966,-0.007568277,0.003134119,0.0050194454,0.037285767,-0.015147343,0.012849349,-0.021642145,-0.055756032,-0.023044676,0.024101969,0.044147383,0.0031529993,-0.017272718,-0.024943488,-0.02800748,0.003757167,0.05877687,-0.043241132,-0.030877275,-0.008803584,-0.01659303,-0.018880235,0.001324988,-0.00055190973,-0.0011651802,0.0017450731,-0.00028050636,-0.021221384,-0.047642924,-0.041493364,-0.043046936,-0.032991864,-0.04416896,-0.029064773,0.03033784,-0.04086762,0.0026567187,0.0059715486,-0.019290205,-0.070903376,-0.00575038,0.0315246,-0.03234454,-0.012806194,-0.02634602,-0.026993342,0.02960421,0.012158872,-0.014262669,0.02151268,-0.010351763,0.027468044,-0.018524207,0.023735153,-0.012158872,0.025482923,0.02425301,-0.0049358327,-0.019398093,0.027575932,-0.00276056,0.031697217,0.040457647,0.030575192,0.0007653238,0.016549874,0.029000042,0.06119354,-0.01292487,0.021145863,0.034027576,-0.013291686,0.011101578,0.025439769,0.009866271,0.0077732624,0.0016088658,0.0019959107,-0.025353458,0.0013634227,-0.0043829116,-0.006467829,-0.004887284,0.008431373,0.054634005,0.0044584326,0.008474529,0.0023586808,-0.00040895937,0.037393656,0.015934918,-0.004895375,-0.026583372,0.01775821,-0.00404037,-0.007293165,0.0066674203,0.00934302,-0.00013342594,0.0018624003,-0.030380996,0.02643233,-0.008161656,0.018955756,-0.0075305165,0.010281636,-0.028115368,-0.03840779,-0.0034469916,-0.011209466,-0.001226541,0.05860425,0.03508487,0.03117936,0.0014200634,-0.010821072,-0.018880235,-0.008355852,0.013798755,0.0342002,-0.022893634,0.0005394353,0.03808413,-0.008409796,0.004666115,-0.0032770694,-0.04334902,0.017887674,0.011166311,0.009574977,-0.0041212854,0.019883584,-0.022332622,0.005140818,-0.015956497,-0.018578151,-0.010055074,0.07461469,-0.022116847,0.055497102,-0.0077570793,-0.0130867,-0.017607167,-0.017822942,-0.016042806,-0.020444598,0.007185278,0.010524383,-0.0019581502,0.0026607646,-0.0006911515,-0.034135465,-0.016452776,-0.04084604,-0.034243353,0.018567363,0.031481445,0.0040673423,-0.025828162,0.020638794,0.04086762,-0.016895114,-0.025569232,0.004784791,0.031459868,0.007983643,-0.04449262,0.011425239,-0.004415278,-0.034135465,0.057698,0.026389174,0.015384695,-0.03586166,0.0021860616,0.04841971,0.016183058,-0.05066376,0.008059164,0.0037652582,-0.03543011,-0.0049250443,0.025051374,0.011133945,0.008269543,-0.03860199,0.029971024,0.0036115192,-0.04410423,0.0042858133,-0.033315524,-0.043478485,0.002695828,0.0268423,0.03599112,-0.02075747,-0.023821462,-0.027014919,-0.002449036,-0.040457647,0.032560315,0.041061815,0.015319962,-0.0014362464,0.00575038,-0.020973245,0.0023276634,0.013550615,0.007579066,-0.020746682,0.011371296,0.051872097,0.015352328,0.03359603,0.050534297,0.007654587,0.0043046935,0.027791707,-0.018988121,-0.019139163,0.028201677,-0.00028320352,-0.0111555215,0.023950927,-0.0029857743,-0.004353243,0.0027160568,0.016517509,0.0033660762,0.007196067,0.01433819,-0.010723974,-0.021879496,-0.057568535,0.001919041,-0.06576795,0.004447644,-0.016636183,-0.00060753897,0.0016169572,0.0018529602,0.024814023,-0.014143993,-0.0017828336,-0.030208377,-0.01841632,-0.011468395,0.024188278,-0.0071637006,0.016258579,-0.020271977,-0.014823682,0.017359028,0.0011719231,0.011597859,-0.014219514,-0.000016604492,-0.020023838,0.0012575585,0.012849349,0.0063707307,0.007929699,0.03991821,-0.027770128,0.00042615389,0.006327576,0.0042992993,-0.016226213,0.04526941,0.014046895,-0.025979204,-0.021156652,0.0027915777,0.0008556792,-0.062488183,-0.027748551,0.0038623568,-0.009655892,0.009353808,0.0013944402,0.01400374,0.007924304,-0.027295426,-0.032236654,-0.01266594,0.03174037,-0.00028134923,-0.009877061,-0.01433819,0.00425075,-0.01200783,0.021394003,-0.023195717,0.043629527,0.009699047,-0.0071583064,0.010114412,0.0017531647,-0.00021054834,0.03441597,-0.0012730673,0.007579066,-0.014370556,-0.0150502445,0.044406313,0.0030370208,0.015546525,-0.009704441,0.018071081,-0.036660023,0.038321484,-0.0034469916,0.03769574,0.0047470303,0.009709835,0.003026232,0.017056944,0.013626136,0.0008813024,-0.040457647,-0.030467305,0.0018138512,-0.03376865,0.019052854,0.018276067,-0.024166701,0.012655152,0.013992951,0.02742489,0.003714012,0.02492191,0.012029407,-0.026971765,0.025892895,-0.01774742,-0.028395874,-0.033984423,0.027230693,0.018567363,-0.028201677,-0.007843389,-0.008199416,-0.030035757,-0.00037625612,0.023023099,0.016981423,-0.010901988,0.050750073,0.0101575665,-0.01825449,-0.0022413537,0.037307344,-0.01675486,0.037782047,-0.0111555215,0.0010687562,-0.015891764,-0.002845521,0.0012056378,-0.0022777654,-0.010146778,0.011446817,0.053641446,0.017682688,-0.03109305,0.0024355503,-0.0053431066,0.023605688,0.013550615,-0.0055076345,0.014985512,-0.0116949575,-0.0004730173,-0.000871188,0.000109994224,-0.069479264,-0.001088985,-0.0027079652,0.0025623175,-0.0005576412,0.0195815,-0.014197937,0.037911512,0.028546916,-0.04309009,0.012698307,-0.0007815069,-0.01400374,0.012493322,0.043370597,-0.0055831554,0.0064138854,-0.005685648,0.020239612,0.013949797,0.03927089,0.039551396,-0.019732542,0.002322269,-0.0069910814,0.015859397,0.015158132,-0.005933788,-0.006079436,-0.018135814,-0.008409796,0.01104224,0.024080392,-0.0067753075,-0.03383338,0.011889154,-0.0008617479,0.012978813,-0.02492191,-0.012482532,-0.0027227995,-0.0023910468,-0.038127284,0.007417235,0.004123983,0.009817722,-0.0063491534,0.027575932,-0.046866138,0.017542435,-0.0328624,-0.009645103,0.026453907,-0.0044692215,0.010680819,0.007045025,-0.0011193282,-0.011781267,0.0009696349,-0.0023910468,0.006386914,-0.020735893,0.000092631155,-0.036293205,-0.014446077,0.04768608,0.03141671,0.00825336,0.015578891,0.0019581502,-0.031222515,0.0015387392,-0.04082446,0.03193457,0.044622086,0.037285767,-0.0033121328,0.004110497,0.0038326876,0.041471787,0.008345064,0.014899203,0.019311784,0.010891198,0.022224734,0.008771217,-0.010448862,0.02651864,-0.014737372,0.03435124,0.018653672,-0.029949447,-0.0047793966,0.015384695,-0.038882494,-0.026907032,0.025245572,0.025116106,-0.0154602155,0.06300604,0.024576671,-0.025223995,-0.014909991,0.007891938,0.007676164,0.027705396,0.03599112,0.044837862,0.0066026878,0.034221776,0.016798016,-0.033725493,-0.035537995,-0.013021968,-0.00071340316,-0.0130003905,0.0011469743,0.017143253,-0.0032447032,0.013356417,-0.01758559,0.0033498933,-0.008776613,0.010815677,-0.029410012,-0.02118902,0.01592413,-0.036401093,-0.014262669,-0.017952407,-0.036401093,-0.027273849,-0.006316787,-0.0005596641,-0.007061208,-0.0016789923,-0.01400374,0.0366816,0.01742376,-0.013561403,0.020973245,0.01409005,0.020369077,0.01624779,0.035537995,0.0012285638,-0.0016452776,0.015244441,0.00070531166,0.012320702,-0.032474004,-0.022958366,0.022418931,-0.013302474,-0.0043963976,-0.0041509545,0.0026702047,0.015848609,0.02392935,-0.017315872,-0.0069964756,0.001857006,0.008156261,0.0072338274,0.0051785787,0.014909991,0.0183408,-0.014607907,0.048592333,-0.0037059204,0.036962107,-0.014963935,-0.01599965,-0.04975751,0.03586166,-0.020660372,-0.028439028,-0.0038758426,0.0427017,-0.012849349,-0.0035521814,-0.01283856,-0.005534606,-0.0033876537,0.006392308,-0.01841632,-0.01567599,-0.00040592506,-0.020261189,-0.011069212,0.008026797,-0.0013243137,-0.03409231,-0.03842937,-0.01125262,-0.042636964,0.019538347,0.0053323177,0.018567363,0.035322223,-0.024533518,-0.026475484,-0.025526078,0.024188278,-0.012568843,0.0028239437,-0.034804367,-0.012568843,0.026820723,0.013431938,-0.005197459,0.0116949575,0.01325932,0.035128027,-0.036444247,0.0051138466,0.029949447,0.014543176,0.050706916,0.006343759,0.0017693477,0.01950598,-0.00042514244,0.015697567,0.024209855,-0.0255045,0.006554139,-0.024511939,0.022138424,0.028697958,0.00093322305,0.017855309,-0.013226953,-0.0067051807,0.0042723273,0.0025825466,-0.0060416753,-0.022138424,0.011522338,-0.02492191,0.0209193,0.013518249,0.018955756,0.007260799,-0.013734022,-0.05178579,-0.015417061,0.05459085,-0.0072068553,-0.0050518117,-0.016463565,0.03717788,-0.021286117,-0.0037274978,-0.022569973,0.04759977,-0.0070072645,0.027058074,-0.023691999,0.010475833,0.001794971,0.0068238564,-0.008053768,-0.010529777,0.0018057596,0.045744114,-0.004674207,-0.056446508,-0.03193457,0.0065055895,0.045398872,0.003012746,-0.011608647,-0.0066080824,-0.003989124,0.022526817,0.046650365,-0.010713185,0.009488666,-0.041148122,-0.01200783,-0.0076491926,0.015287596,0.0698245,-0.0037652582,0.012094139,-0.016970634,-0.004876495,-0.037631005,-0.011479183,0.009742201,-0.013075911,-0.02199817,-0.01675486,0.0023950927,0.025116106,-0.001329708,-0.013431938,0.011317353,-0.021706875,-0.015395483,-0.013453516,0.0021240264,-0.019527558,0.013971374,-0.008431373,-0.044622086,-0.02317414,0.0058474788,0.035947967,-0.0025731064,0.024382476,-0.006176534,-0.023972504,0.019484403,-0.007767868,0.011425239,-0.006165745,-0.006570322,0.041989643,-0.014143993,0.017466914,-0.017456125,-0.009499456,-0.016959846,-0.009548005,0.020261189,-0.0111555215,0.0037949274,-0.012644364,0.01925784,0.0094131455,0.05144055,0.010972113,-0.0041051027,-0.0014092746,-0.012040196,-0.017477704,0.03510645,-0.02567712,-0.0015913341,-0.000745095,0.041795447,0.011986252,0.00064563664,0.056619126,0.02468456,-0.004029582,0.013065123,0.014036106,0.020315133,0.01058372,0.0023802582,-0.023821462,-0.0039055115,-0.013129855,0.038494103,-0.022850478,0.027770128,0.024490362,-0.0058043236,-0.020282768,-0.0043910034,-0.011436028,0.012568843,0.011705746,0.019991472,-0.012299125,-0.03726419,0.016312523,0.01492078,-0.022526817,0.044578932,0.002950711,-0.018653672,0.031136205,-0.015233653,0.0034955407,0.01133893,0.009229738,-0.0059553655,0.00046155433,0.042982206,0.019408882,-0.012525687,0.024360897,-0.007989037,-0.022440508,0.013356417,-0.033142906,-0.0315246,-0.0123099135,0.04017714,-0.026561793,-0.008916865,0.0031017528,-0.030920431,-0.016690128,-0.01567599,-0.010351763,-0.024555095,-0.00767077,-0.010443468]},{"id":"guide-webhook-attachments-embeds-1","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Embeds Without a Title\nYou do not need a title for embeds to work. At least one of title, description, fields, or image/thumbnail is required. A description-only embed is valid.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\n// Description only—no title\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('This embed has no title. Description-only works fine.')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.039032273,0.034383435,-0.008157925,-0.037999198,0.0014085474,-0.04538793,0.019358931,0.014227241,0.047431625,-0.009146084,0.024546765,-0.012767461,0.043299325,-0.069260955,-0.030947339,0.038403448,-0.03103717,-0.010274606,-0.016147414,0.0702042,0.021526143,0.0072259116,-0.03788691,0.011431201,-0.010353209,-0.014507969,-0.027106995,0.075908564,-0.015305233,0.01753982,0.032452036,-0.014305845,-0.019156806,0.033035945,-0.045994304,0.044916313,0.043928154,0.0056341896,-0.022098824,0.04006535,0.0051597613,-0.014552885,-0.024052685,0.019066975,0.004300737,0.029734598,-0.061939593,0.0011257151,-0.036494505,0.03382198,-0.010706926,-0.00724837,0.019212952,0.001682958,-0.044377316,-0.003051502,-0.057403047,0.03909965,-0.056055557,-0.00304308,0.026770122,-0.020526754,-0.0019707032,0.0039835153,-0.010993267,-0.02008882,-0.072045766,-0.0006947992,-0.01010617,0.03640467,0.073303424,0.0019959686,0.019853009,0.036314838,-0.019168036,-0.01144243,-0.0037785848,0.031823207,-0.039728478,-0.021144353,-0.036135174,0.000080094906,-0.09827689,-0.00956156,-0.09558191,0.054618236,-0.030700298,-0.05250717,-0.014114951,0.031733375,-0.021009605,-0.029689683,-0.08790122,-0.03092488,0.025624756,0.04895878,-0.02191916,0.029622307,-0.009426811,0.03436098,0.044265024,-0.031239295,-0.0591997,-0.02228972,0.007658231,-0.02910577,-0.007697533,-0.0011685259,0.02519805,-0.0037448974,-0.03811149,-0.0392344,0.00067725376,0.046847712,0.024209892,-0.03092488,-0.028027778,0.049407944,-0.05295633,-0.014878528,-0.0411658,-0.019875469,0.043636195,-0.0072539845,0.008079321,0.028701523,0.0050474703,0.027578615,-0.05964886,-0.005855964,0.07977137,-0.0037870065,0.041817088,0.021133125,-0.045006145,-0.03007147,-0.008786754,0.016866075,-0.0036494504,-0.0035961121,0.041772168,-0.028723981,0.028768897,-0.045612514,-0.013362602,0.027825655,-0.032564327,0.030273594,-0.0012113368,-0.030700298,-0.036449585,-0.018909767,-0.026343416,0.025512464,-0.017562278,-0.02118927,-0.008674462,0.022570446,-0.019909155,-0.01485607,0.014530427,0.019785635,0.022738883,0.0016520781,-0.06557781,-0.016955908,0.031082088,-0.04666805,-0.01789915,0.022390781,0.031486332,-0.020302173,-0.039167024,0.028521858,0.029420184,-0.017012052,0.025647214,-0.034989808,0.00023651245,0.024434473,0.020279715,0.020201111,0.025781963,-0.003408025,-0.043389156,-0.020998375,0.002866222,0.022705195,0.011970197,-0.025490006,-0.029801972,-0.033417735,0.0006014575,0.010993267,0.021402622,0.007686304,-0.007967031,0.03604534,0.03957127,-0.032946113,-0.0018668342,0.010662009,0.0023988117,-0.013093105,-0.021896701,0.02557984,-0.022952234,-0.008455495,-0.05089018,-0.02703962,0.007697533,0.003458556,0.011599638,0.013295229,-0.030161303,0.038403448,0.025737047,0.008287059,-0.0139577435,-0.0043905694,-0.071955934,0.03310332,0.009960192,-0.025714587,-0.038785234,0.02351369,-0.036561877,-0.033260528,-0.042827703,0.033552483,-0.00068883377,0.007023788,-0.008932731,-0.03761741,-0.02544509,0.009336978,0.04139038,0.012610255,0.007096777,0.0009341189,-0.025781963,-0.020672733,-0.024389558,-0.03507964,-0.023670897,-0.03687629,0.019201724,-0.06036752,0.026388332,0.019257868,0.07864846,0.018224793,0.0010457078,-0.011178547,0.01218355,-0.04603922,-0.02483872,0.018977141,0.013452435,-0.01703451,0.020987146,0.013081876,-0.02764599,-0.01339629,0.00043898675,-0.0097075375,0.042670496,0.0068721958,-0.0029841275,-0.019504908,-0.007821052,0.013003272,0.029262977,-0.001859816,-0.063781165,0.010824831,-0.024030227,-0.0049660597,-0.0272642,-0.017932838,0.0019314014,-0.007922115,-0.05443857,0.06831771,-0.0007558573,0.021964077,0.004449522,0.010639551,0.020481838,0.041862004,0.0011874749,-0.024951011,0.033080865,-0.0057661314,-0.02264905,0.06243367,0.054393653,-0.0049211434,0.048554532,0.016540432,-0.042558204,0.005053085,0.02569213,0.0067262175,0.01254288,0.009303291,-0.027780738,-0.024434473,0.008073707,-0.024793804,-0.027443865,0.0111953905,-0.038717862,-0.011431201,-0.0050671212,0.008618318,0.03469785,0.055830974,0.0128909815,-0.0010400934,0.03447327,0.0020661503,0.012161091,-0.06741938,-0.012846065,-0.044848938,-0.028881188,0.0058503496,0.017584736,0.019785635,0.023693355,0.014867299,0.020515526,0.01959474,-0.0016155835,-0.04612905,-0.002520928,-0.002186863,0.00014457438,0.06562273,-0.013239083,-0.006479178,0.008590245,-0.033642318,-0.053360578,-0.0063612727,-0.010319523,0.02434464,0.01874133,-0.041817088,0.000037393707,-0.030745216,-0.024164975,-0.021964077,-0.010330752,-0.033889357,0.018438146,-0.051474094,0.0005632084,-0.025130676,-0.023828102,0.0014625874,-0.029015938,0.024883637,-0.028297275,0.00050004484,0.0351021,-0.03168846,-0.009595247,-0.0010260569,0.036000423,0.042176418,-0.0007769118,-0.0056341896,-0.035663553,0.0061928364,-0.007882813,0.025647214,-0.006052473,-0.0068609663,0.000849199,0.03653942,-0.006855352,-0.040941216,0.010852904,-0.013497352,0.02252553,0.021279102,-0.047521457,-0.023109442,0.0013439802,-0.0120488005,-0.025040844,-0.003554003,0.027219284,0.048913863,0.037572496,-0.0068665813,-0.0006235647,-0.03469785,-0.034271147,0.014182325,0.018314626,0.010942737,0.054842815,-0.01133014,-0.008343205,-0.021481225,0.017618423,0.023109442,-0.0013320494,0.030475717,0.018067587,0.012239695,-0.015350149,-0.0047779726,0.017023282,-0.04249083,0.03018376,0.03382198,-0.044624355,-0.01302573,-0.0076806895,0.015911603,0.018954683,-0.04783587,0.04981219,-0.019314013,0.028387109,-0.037055958,-0.0751899,0.003085189,0.050575767,-0.016495515,0.037909366,-0.025984086,0.015327691,-0.015507356,-0.02143631,-0.0056033097,-0.013677017,0.0019987759,-0.010673239,0.015833,-0.05928953,0.010347595,-0.045163352,0.002894295,-0.01449674,-0.005314161,-0.025130676,0.018056357,0.027354034,-0.03725808,0.034024104,0.017865462,-0.015619648,-0.014036347,0.038987357,0.020290943,-0.002947633,-0.015282775,-0.054034323,0.021425081,0.008932731,-0.015417524,-0.046533298,0.026770122,0.032609243,-0.043478988,0.014103722,0.02483872,0.016641494,0.009875974,0.03507964,-0.020863626,0.010319523,-0.04612905,0.021761952,-0.02373827,0.0037589339,-0.022458157,-0.05493265,-0.03445081,-0.02971214,0.104655005,0.056325056,-0.014317074,0.016596576,-0.029240519,-0.009050637,-0.008870971,0.009673851,-0.009499799,-0.0010260569,-0.034495726,-0.024771346,-0.008797983,-0.00718661,0.013811766,-0.024973469,-0.009398738,-0.0360678,0.017977754,0.020156195,-0.0010218461,-0.031957954,-0.0017924416,-0.006226524,0.035618637,0.018168649,-0.021761952,-0.005580852,0.040739093,-0.005867193,0.021391394,-0.03761741,0.059244614,-0.010504803,-0.047925703,-0.017640881,0.0088372845,0.031845666,-0.0088541275,-0.01473255,0.0035792685,-0.022143742,-0.009746839,-0.0046319948,-0.031935498,-0.01974072,0.021166813,0.0021573866,-0.01217232,-0.041098423,0.015316462,-0.04882403,0.013946515,0.012329527,-0.011891593,-0.038380988,0.040155184,-0.013194166,-0.025265425,-0.035865676,-0.006052473,0.011116787,0.018527979,-0.01876379,0.026320959,0.0025658442,-0.02557984,0.015058193,0.022244804,0.006917112,0.029622307,0.013575955,-0.0028142876,-0.032968573,-0.011958968,0.020650275,0.00013773165,0.029195603,0.010667624,-0.008376892,0.041929375,0.000718661,0.006254596,0.026478166,-0.029420184,-0.016259704,-0.011667012,-0.0069451844,0.011711928,-0.0047779726,0.018718872,-0.017304009,0.024254808,-0.0069788718,-0.038291156,0.0064118034,-0.015125568,-0.030475717,0.0074561075,-0.042580664,0.011262765,0.019707032,-0.007826667,0.007366275,-0.0030122001,0.032923657,-0.021717036,0.015159255,-0.015282775,0.03445081,-0.021324018,0.00003171337,0.000060356295,-0.020122508,0.017247863,0.014552885,-0.008680077,0.0024661862,-0.0014850455,-0.002874644,0.02519805,0.015653335,-0.0076526166,-0.010179159,-0.015642105,0.00956156,0.025624756,-0.010431813,-0.038291156,-0.012700087,0.028184986,0.0023496845,0.0033939888,0.018494291,0.008225299,0.044354856,0.026680289,0.0067879776,0.022727653,-0.026747663,0.031351585,-0.008809212,-0.028387109,0.010364438,0.033574942,-0.00060180837,0.00456462,0.011414357,-0.01047673,0.006709374,-0.050845265,0.016619036,0.0008463917,0.0069451844,-0.0070462464,-0.023693355,-0.021851785,0.05942428,0.009460498,-0.006321971,0.0073494315,-0.0042249407,0.03678646,-0.023895478,-0.0126888575,0.013688246,-0.030879963,0.027556157,-0.012778691,0.00773122,-0.015529815,0.0058784224,-0.011459274,-0.020661503,0.0064847926,0.010443042,-0.0062658256,-0.03411394,0.0035989194,-0.016169872,-0.0061198473,-0.04044714,-0.016248476,0.004311966,-0.009516643,-0.055696227,-0.013351373,0.009668236,-0.0067879776,-0.0018935032,-0.04197429,0.0098086,-0.024816262,0.006748676,0.029060854,-0.017247863,0.0075290967,-0.013452435,-0.024434473,-0.005221521,-0.017697027,0.008135467,0.055067398,0.036292378,-0.0011053623,-0.029397726,-0.004763936,0.021863015,-0.0077873655,0.0075683985,0.07047369,0.016012665,0.012363215,0.021593517,-0.022750111,-0.038897526,0.00053197757,-0.008247757,0.018864851,0.008590245,-0.026994703,0.021952847,0.012149862,0.022963464,-0.048285034,-0.0031834436,0.038089033,0.01876379,-0.022053909,-0.0059008803,-0.010319523,-0.012441819,-0.009252761,0.012576567,0.0036803302,-0.004011588,-0.017360155,-0.00724837,-0.013160479,-0.049138445,-0.01668641,-0.002240201,0.016765013,0.019314013,-0.020133737,0.0059233387,-0.029779514,0.016585348,0.0007035719,-0.035371594,0.07047369,-0.02544509,0.0037533194,-0.011711928,0.0049295654,0.00973561,0.0011895804,0.045365475,0.027443865,0.034383435,0.012284611,0.025894253,-0.014665175,0.0026163752,-0.017708255,-0.009814214,0.0059738695,-0.023042068,0.011453659,-0.023042068,0.011644553,0.018685186,-0.031800747,-0.01924664,0.021593517,0.014799925,0.01888731,-0.00030879964,0.007108006,-0.021402622,-0.060547188,-0.035977967,0.016776241,0.0243671,-0.019078203,-0.0152378585,-0.026972245,-0.030857505,-0.0059233387,0.052417334,-0.0440629,-0.024771346,0.002001583,-0.027196826,0.0038908755,0.013688246,0.0253328,0.0075403256,0.00979737,-0.0006014575,-0.030004095,-0.059738696,-0.020605357,-0.035304222,-0.033193152,-0.036225006,-0.018337084,0.030430801,-0.03141896,0.0050727357,0.012846065,-0.011723157,-0.10267869,-0.041323006,0.0111841615,-0.022491843,-0.023805644,0.0035231232,-0.009729996,0.033282988,-0.0061198473,-0.0025139097,0.0072371406,0.0243671,0.027354034,-0.045971844,0.022727653,-0.0052664373,0.040042892,0.010381282,-0.0040087807,-0.039773393,-0.011492961,-0.0058222767,0.04370357,0.0068834247,0.016046353,0.012026343,0.003177829,0.016720098,0.05695388,0.0075964713,-0.0023188046,0.027601073,-0.011667012,0.0113919,0.030632924,0.021346478,0.0012871331,-0.010398126,0.00883167,-0.023670897,0.0071136206,-0.033911817,-0.013912828,-0.01752859,0.031104546,0.03912211,0.033642318,0.022323407,-0.022256032,0.007635773,0.025849337,0.0070350175,-0.021840556,-0.008500412,0.029891806,0.010252148,-0.025108218,0.018112503,0.0231319,-0.014474281,-0.016091269,-0.018977141,0.024793804,-0.022110054,0.009752454,-0.015046964,0.0020773795,-0.0021840557,-0.025018385,-0.032204997,0.007613315,-0.0047442853,0.0487342,0.052327503,0.016124956,-0.011212234,0.006748676,-0.02897102,0.0029953565,-0.0027960404,0.022357093,-0.030632924,0.020032674,0.023536148,-0.0011425586,0.00094745343,0.0059738695,-0.0025798806,0.008893429,0.028229902,0.038628027,-0.018561665,0.019302785,-0.016731326,0.0013881947,-0.021627204,-0.029779514,-0.00053057395,0.0589302,-0.029128227,0.033305444,-0.010493573,-0.010111785,-0.008870971,-0.020347089,-0.007647002,-0.019639658,0.0064847926,-0.009606476,-0.03409148,0.027354034,0.00085411174,-0.017225405,-0.0047892015,-0.04639855,-0.02751124,0.025737047,-0.015563502,0.014463052,-0.0097019235,0.052552085,0.06162518,-0.018977141,-0.006681301,-0.028072694,0.0088372845,0.020964688,-0.032070246,-0.011375056,0.009146084,0.0026612915,0.034989808,0.0037140176,-0.045006145,-0.00639496,0.006074931,0.05273175,-0.00681605,-0.051429175,0.015035735,0.030296052,-0.057447962,0.027331576,0.00706309,0.011273994,0.0135422675,-0.021997763,0.033193152,0.010179159,-0.066386305,0.0059738695,-0.0048256963,-0.034248687,0.0032227454,0.03227237,0.031800747,-0.010297065,-0.00754594,-0.034518186,0.031980414,-0.020728877,0.024299724,0.03532668,0.015046964,0.058615785,0.0009263989,-0.042580664,-0.0076638456,0.0053562704,-0.012599025,-0.014642717,-0.0041407226,0.03507964,0.0041828314,0.04442223,0.034316063,0.009095553,0.018786248,0.019942842,-0.01692222,-0.008354434,0.03375461,0.018078815,0.019527366,0.012138633,0.025894253,0.024030227,-0.020234799,0.025355257,0.0049014925,0.008730608,0.018168649,0.009415582,-0.05695388,-0.040581886,0.005760517,-0.03128421,0.01327277,-0.032519408,-0.0036887522,0.02751124,-0.0009727189,0.0037701628,-0.015496127,0.019897927,-0.026208667,-0.018056357,0.001698398,0.0055752373,-0.00032073053,0.0070911627,-0.015945291,-0.003217131,0.03858311,0.022795027,0.033440195,-0.026320959,-0.0129022105,-0.0227838,-0.009095553,0.020998375,-0.0022935392,0.0017222598,0.05151901,-0.036314838,-0.01620356,-0.005210292,0.00392737,0.0045281257,0.03436098,0.00046670856,-0.008652004,-0.003677523,-0.0025040843,0.013227854,-0.01605758,-0.021615975,0.0010351806,-0.00026300605,0.02203145,0.019650886,0.033799525,0.0036101486,-0.042176418,-0.033058405,-0.0023131901,0.030588008,0.011914051,-0.008539714,0.006282669,-0.0013390676,0.0011769477,0.03348511,-0.029240519,0.045275643,0.030296052,0.0007558573,0.021739494,0.029914264,-0.007467337,0.022188658,0.0105497185,-0.010308294,-0.034383435,-0.023401398,0.018337084,0.02204268,0.01595652,-0.00020931703,0.028566774,-0.031261753,0.022491843,-0.0019257868,-0.0010379879,-0.003624185,0.031890582,0.0031385273,0.004536547,0.0446019,-0.026231125,-0.036449585,-0.047790956,0.01898837,-0.00639496,0.022604134,0.018864851,-0.025265425,0.008910273,0.020414464,0.01040374,0.014036347,-0.002563037,0.021099437,-0.008483568,0.0020998376,0.0057549025,-0.033934273,-0.020032674,0.03532668,0.027937945,-0.02423235,0.0001772966,-0.020234799,-0.0064005745,-0.013688246,0.016416911,0.039885685,-0.0294651,0.033238072,0.014530427,-0.0036410284,-0.005552779,0.04386078,-0.033260528,0.014912215,0.008579016,-0.011015725,-0.017865462,0.007439264,-0.014260929,-0.0019861432,-0.020931002,-0.0039217556,0.024659054,-0.0018120925,-0.025984086,-0.00020300067,-0.010982038,0.028409567,-0.009954577,0.0020464994,0.0024760116,0.025153134,-0.0035792685,0.025490006,0.0064567197,-0.063870996,0.023536148,-0.021256644,0.0057015643,-0.012026343,0.013800536,-0.048240118,0.040245015,0.0243671,-0.033687234,-0.008562172,-0.0055780443,-0.014957132,0.019280327,0.05807679,-0.021222956,0.02081871,-0.019662116,0.001037286,0.010706926,0.020167423,0.024030227,-0.0025153134,-0.0013369621,-0.025781963,0.0012745004,0.0086463895,0.015619648,-0.0050586998,-0.01522663,-0.008174769,-0.0071304645,-0.00016422526,-0.0023567027,-0.0037280538,0.011891593,-0.008713764,0.036449585,-0.05394449,-0.016619036,-0.0017236634,-0.010156701,-0.017685797,0.021043291,0.012284611,0.008068092,-0.018404458,0.027578615,-0.033777066,0.023468772,-0.056549635,-0.01181299,0.028656607,-0.033687234,0.003854381,0.0051766047,0.0018556052,-0.02847694,-0.008466724,-0.013104334,0.008185998,-0.010656395,0.0025700552,-0.032160077,-0.02106575,0.036651712,0.025040844,0.005207485,0.014710092,-0.0032901198,-0.009550331,0.020740107,-0.026231125,0.021009605,0.023783186,0.03406902,-0.009089938,0.018483061,0.02362598,0.04118826,0.01876379,0.018202335,0.0049239504,0.01016793,0.01595652,-0.0109708095,-0.018471833,0.021582287,-0.025624756,0.02836465,0.019156806,-0.037213165,-0.019830551,0.007927729,-0.024322182,-0.033058405,0.015608418,0.017483674,0.011116787,0.031374045,0.009449269,-0.011633324,-0.02215497,0.026276043,-0.008006332,0.009589632,0.034405895,0.024389558,0.023244191,0.03409148,-0.0034613633,-0.021851785,-0.009679466,-0.025063302,0.006355658,-0.027106995,-0.01974072,0.030632924,-0.0064511052,-0.012565338,-0.03299103,0.0039414065,0.012250924,-0.011633324,-0.0014822383,-0.025265425,0.004648838,-0.02971214,-0.016619036,0.0017741943,-0.013104334,-0.020268485,0.0057380586,-0.023311565,-0.00156786,-0.008899044,0.0143956775,0.019358931,0.034922432,-0.02337894,0.038336072,-0.00045512855,0.017023282,0.019179264,0.017674569,-0.0013194167,0.010246534,-0.0044944384,0.025040844,-0.006928341,-0.006198451,-0.011790532,-0.008404965,-0.018191107,-0.0022219538,-0.0313965,0.017843004,0.03990814,0.03777462,-0.029936722,-0.01302573,0.022716425,0.013856682,-0.002036674,0.0027300694,0.032946113,0.017483674,-0.020111278,0.014429365,0.00398913,0.02337894,-0.008696921,0.0070181736,-0.04067172,-0.012935897,-0.0010660606,-0.020762565,-0.0047892015,0.045006145,-0.013070647,0.022480614,-0.012722545,0.0006095284,-0.004034046,0.018685186,-0.01753982,-0.019561054,-0.0024844336,-0.023828102,-0.03191304,0.0033013488,-0.020055134,-0.03847082,-0.017158031,-0.024569223,-0.02921806,0.0028395532,0.008371278,0.02472643,0.03285628,-0.02459168,-0.029487558,-0.014361991,0.0040873843,-0.030340968,-0.023558605,-0.013531039,-0.00937628,0.025063302,-0.013351373,-0.0018766597,0.0046179583,0.031127004,0.044736646,0.0023384555,-0.0057942043,0.031374045,0.05601064,0.020414464,0.006175993,0.0016380417,0.02618621,-0.008764295,0.03105963,0.019044517,-0.004429871,0.0065577812,-0.01777563,0.056055557,0.024951011,0.008354434,0.038021658,0.0075683985,-0.0052804737,0.010257763,0.012228466,-0.03918948,-0.018550437,0.009774912,-0.014339533,0.023446314,0.020055134,0.01497959,0.0066644577,-0.03687629,-0.042109042,-0.03433852,0.036314838,-0.0014401292,-0.024816262,0.014923444,0.035977967,-0.0037982357,-0.020526754,-0.0050053615,0.03824624,-0.016731326,0.046218883,-0.046353634,0.008298288,0.0054713683,0.04237854,0.002958862,0.017292779,-0.021840556,0.019168036,0.004752707,-0.042400997,-0.034248687,0.0007881409,0.03132913,-0.00712485,0.003677523,-0.016967136,0.023334024,0.03007147,0.01605758,0.008376892,0.035147015,-0.03918948,0.011172933,0.015754396,0.03117192,0.055606395,-0.0058784224,-0.00036143593,0.00547979,0.000029761442,-0.044714186,-0.035663553,0.020683961,-0.027848113,-0.017023282,-0.018718872,-0.007023788,0.03177829,0.008264601,-0.010937122,0.01728155,-0.01437322,-0.03588813,-0.013474894,0.011981426,-0.022458157,-0.0054152226,-0.020403234,-0.025826879,0.0058503496,-0.0020507104,0.0284994,0.005142918,0.021514913,-0.018730102,-0.04480402,-0.01839323,-0.03409148,-0.015002048,0.017854234,-0.008466724,0.03824624,0.0035596176,0.010847289,-0.011711928,0.0046376092,-0.035012264,-0.008893429,0.007574013,-0.028566774,0.005732444,-0.0048537687,0.011094329,0.013250312,0.016866075,0.0070687043,-0.0032283599,0.0035371594,0.0060244002,-0.010021952,0.03570847,-0.034742765,0.006709374,0.013328915,0.029644765,0.052282587,0.005906495,0.034922432,-0.0029616694,-0.017786859,0.030093929,-0.0005933866,0.015945291,0.019516136,0.017236635,-0.018000212,0.0035034723,-0.013003272,0.0051485323,-0.00022545883,-0.0039554425,0.018325856,-0.00068532466,-0.021009605,-0.0007004137,0.0050980016,0.038156405,0.007865969,0.017798088,-0.010931508,-0.048644364,0.0062882835,0.014294616,-0.012576567,0.05430382,0.013014501,-0.012396902,0.03337282,-0.002609357,-0.0051513393,0.0008281445,0.032204997,-0.0004972376,0.0011376459,0.03930177,0.013014501,-0.039638646,-0.008034405,-0.024636596,-0.001360122,0.01144243,-0.0005895266,-0.017236635,-0.021133125,0.002766564,-0.024748888,0.001640849,0.011846677,-0.045882013,-0.021391394,0.00016554118,0.00036319048,-0.009151698,-0.010746228,-0.0058222767]},{"id":"guide-webhook-attachments-embeds-2","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Direct Attachments\nAttach files to webhook messages using the files array. Each file needs name and data (Blob, ArrayBuffer, or Uint8Array). Optional filename overrides the display name.\n\n```javascript\nimport { Client, Webhook } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nconst buffer = readFileSync('report.pdf');\nawait webhook.send({\n content: 'Report attached',\n files: [\n { name: 'report.pdf', data: buffer },\n { name: 'log.txt', data: new TextEncoder().encode('Log content'), filename: 'log-2025.txt' },\n ],\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.027109843,0.026797278,0.02423424,-0.04621801,0.000793786,-0.0585956,-0.000067396926,0.0002461453,0.011429477,-0.015763717,0.011721204,-0.009913534,0.036632672,-0.10385508,-0.010627225,0.05446974,0.012002513,0.0036492017,0.0026138285,0.004425406,-0.0048187175,0.023129843,-0.007501571,0.0020342802,-0.02823508,-0.004094607,-0.02604712,0.02877686,0.006324241,-0.0069806282,0.013867487,-0.010752251,-0.009929162,0.022275498,-0.034132145,0.06751414,0.0061940053,0.05076063,-0.025359476,0.029777069,0.008965419,-0.004993233,-0.0048369505,0.04061267,0.0077307853,0.0074338485,-0.03973749,0.0010119306,-0.030985655,0.058762304,0.0057147383,0.016326336,0.04305068,0.015669947,-0.015169843,0.024671832,-0.00488644,0.024734346,-0.059054032,0.0018806021,0.043842513,-0.013273613,-0.029193614,-0.0028703928,-0.00868932,-0.021837907,-0.062346388,0.009903115,0.023025654,0.0658888,0.11152335,0.051427435,0.016888954,0.02026466,0.014513455,-0.017691204,-0.0076839007,-0.026838953,-0.011929581,-0.030652251,-0.03452806,-0.011835812,-0.09301948,-0.0050505367,-0.06705571,0.047968376,-0.030110471,-0.04034178,-0.015326126,0.016701413,-0.017482828,-0.01275267,-0.082433924,-0.0018089726,0.00651178,0.021400314,-0.04371749,-0.017389057,-0.021400314,0.0030449084,0.075515814,-0.021942094,-0.06463853,-0.009778089,0.009653063,-0.007366126,0.045717906,-0.0047744373,0.013513247,-0.0075849216,-0.034778114,-0.02098356,0.011950419,0.034340523,0.05888733,-0.018014189,-0.011700367,0.053344503,0.0074494765,-0.041717067,-0.041508693,0.003039699,0.06618053,-0.022483874,0.016576387,0.005553246,-0.036778536,0.012908953,-0.060220942,-0.0036492017,0.055761676,0.0056418064,0.07747456,-0.016649319,-0.008585131,-0.026547225,0.025880419,0.03990419,-0.015774136,-0.015951257,0.042842302,-0.04296733,0.042842302,-0.05797047,-0.0070796073,0.06693068,-0.036299266,0.055303246,-0.030298011,-0.031444084,-0.045176126,-0.0005193145,0.00529017,0.025901256,0.010502199,0.0127630895,-0.00029563482,0.033048585,-0.023463245,-0.04475937,-0.01031466,0.024546806,0.017493246,-0.007626597,-0.011471152,-0.014159215,0.039049845,-0.019285288,-0.018305916,0.025276126,0.0034225916,-0.044842724,-0.008199634,0.025067749,0.03865393,-0.015492828,0.002363776,-0.031131519,0.003591898,0.016138796,0.013513247,0.0103042405,-0.013711205,-0.013044398,-0.0385289,0.004407173,0.016628481,0.020816859,-0.005980419,0.025026074,0.00077946007,0.017253613,0.0064440574,-0.025755392,0.022046283,0.0029329057,-0.027297383,0.020691833,0.035694975,-0.035882514,-0.014523875,0.0102000525,0.013523665,-0.038799793,-0.034132145,0.016430523,-0.016242985,0.02298398,0.00732445,-0.022650575,0.0064492673,0.045259476,0.015836649,0.024005026,-0.056386806,0.008361125,0.002904254,0.020368848,-0.016242985,0.0034851048,-0.042217173,-0.008996676,0.01746199,-0.026838953,-0.06359665,0.027901676,-0.0031543062,-0.03302775,-0.009465524,-0.0029381153,0.01927487,0.005227657,0.0035215707,-0.024942722,0.0067774607,0.042800628,0.0635133,0.03127738,0.0061367014,0.0060012564,0.012877696,-0.021400314,0.0002756111,-0.0055219894,-0.016170053,-0.015232356,-0.020097958,-0.039404083,0.032527644,0.012700576,0.038466386,-0.010460524,0.02877686,-0.02080644,0.020483457,-0.04705152,-0.03925822,0.028839372,0.01601377,0.00017565527,0.041279476,-0.00058182754,-0.031339895,0.028068377,0.0028651832,0.0043160077,0.051094033,0.038591415,-0.03281937,0.013284031,0.032194242,0.02225466,0.029714555,0.019597854,-0.053886283,0.010793927,-0.023859162,-0.036528483,0.00006414104,0.03173581,0.005001047,0.010918953,-0.047426596,0.038591415,0.004823927,0.025651205,-0.031423245,0.011189843,0.026797278,0.031464923,-0.011606597,-0.0023390315,0.019597854,-0.03246513,-0.00321161,0.055761676,0.010793927,0.0007683901,0.04413424,0.009986466,-0.07051477,-0.00484216,-0.0000503035,-0.010898115,0.017482828,-0.0007749018,-0.025213612,-0.03354869,0.0058762305,-0.031131519,-0.00088625326,0.012919372,-0.047426596,-0.0005860602,-0.0036231545,0.00083741493,0.03682021,0.025734555,0.006287775,0.011887906,0.017659947,0.004326427,0.030193822,-0.06376335,-0.0061731674,-0.051510785,-0.014742671,0.00823089,0.0033861257,0.023234032,0.02542199,0.027359895,0.022379685,-0.0040138615,0.008553875,-0.040195916,-0.0058918586,-0.021671204,-0.010002094,0.04044597,-0.026693089,-0.0029876048,0.009830183,0.004938534,-0.07084817,-0.024588482,0.015336544,0.05755372,-0.029610367,-0.025276126,-0.011314869,0.0070691886,-0.06297152,0.026109634,-0.01683686,-0.013607016,0.004894254,-0.061762933,0.023880001,-0.02740157,-0.04396754,0.046092983,0.0023025654,0.03175665,0.011262775,0.00051150034,-0.010481361,-0.029360315,0.014773927,0.008658063,0.04263393,0.04588461,0.0008647644,0.014013351,-0.027526597,0.0140967015,-0.0036153405,0.06401341,0.012783927,-0.012429686,0.0056574345,0.04380084,0.011617016,-0.051802512,0.012335916,0.009038351,-0.014607226,0.030777277,-0.023775812,0.0199,0.0015432918,0.0100646075,-0.020400105,0.017743299,0.0039878143,0.029693717,0.06255476,0.0140967015,-0.0024354057,-0.041925445,-0.016274242,0.018160053,0.0039904187,-0.005058351,0.053386178,0.013252775,0.005303194,0.0037247383,0.03409047,-0.01672225,0.002849555,0.03500733,0.0046285735,-0.015023979,-0.01962911,0.016930629,-0.009429058,-0.008324659,-0.025547016,0.021587854,-0.031131519,-0.013711205,-0.011554503,0.030589739,0.018441362,-0.026255498,0.045634557,-0.016586807,0.04584293,-0.030318849,-0.07239016,-0.054511413,0.033215288,-0.005782461,0.034236334,-0.04921864,0.0251511,0.01592,-0.0018988351,-0.002958953,-0.028901884,0.018649738,-0.003419987,0.051135708,-0.037778743,-0.0077307853,-0.023025654,0.020702252,-0.045384504,0.01203377,-0.029860418,-0.025734555,-0.018837277,-0.02875602,0.038674764,0.022567226,-0.01726403,-0.029693717,0.060470995,0.011689948,0.008199634,-0.007939163,-0.044717696,0.013679948,0.009142539,-0.020275079,-0.029902095,0.027630785,0.015201099,0.0031699345,0.0071056546,0.0076213875,-0.02152534,0.037070263,0.0018636715,-0.06668063,0.011043979,-0.042758953,0.017086912,-0.0025877815,0.039299894,0.0007729483,-0.05642848,-0.02758911,-0.011200262,0.08476775,0.030339686,-0.025672043,0.025067749,0.006657644,-0.0329444,0.003946139,0.039674975,-0.007282775,-0.005902278,-0.03546576,-0.024817696,-0.05155246,0.0017060864,0.0034564529,-0.02252555,-0.044550996,0.002930301,-0.0069910474,0.04550953,-0.013471571,-0.03638262,-0.011721204,0.000036811907,0.044550996,0.03915403,-0.027734974,0.0116691105,0.02469267,-0.01936864,0.020243822,-0.027547434,0.032715183,-0.006204424,-0.047259897,-0.015399057,0.015451152,0.0019782789,-0.016534712,-0.015138587,0.003815903,-0.031673297,-0.050052147,0.00016751555,-0.021921257,0.048843563,0.0056209685,-0.010939791,-0.016399268,-0.018118378,-0.009559293,-0.04069602,0.0016657134,0.017191099,0.0055792932,-0.037695393,0.025109425,-0.023004817,-0.0012287729,-0.016888954,0.007798508,-0.01230466,0.008475733,0.004750995,0.02342157,-0.0112940315,-0.03736199,-0.008590341,0.0074130106,0.038591415,-0.0028287172,0.011502408,0.007933953,-0.023109006,-0.00823089,0.015586597,-0.0133465445,0.018316336,-0.0013251472,-0.0022048887,0.0291311,0.0077359946,-0.007459895,0.047968376,0.000105653635,0.0050817933,0.0036570157,-0.019243613,0.013513247,-0.018691413,0.027026493,-0.016857697,0.016607644,-0.04188377,-0.041279476,-0.023859162,0.0042118193,-0.04044597,0.011012723,-0.0026099214,0.005001047,0.008850812,0.0034225916,0.021421151,-0.009017513,0.047426596,-0.01963953,0.015388639,-0.027172357,0.020139635,-0.0055115707,-0.0036257592,0.003508547,-0.038299687,0.021817068,-0.011387801,-0.011179424,0.014430105,-0.01791,0.017514084,0.040841885,0.0025135472,-0.024505131,-0.009845812,0.01873309,0.006730576,0.018493455,-0.022463037,-0.056511834,-0.0006935046,0.022087958,0.0062721465,0.0019913025,-0.00651699,0.00219447,0.04876021,0.014826021,0.02967288,0.016065864,-0.00705356,0.031069005,0.0062200525,-0.017534921,-0.00050824444,0.03679937,-0.027734974,0.00032477503,0.0070223035,-0.0184622,-0.024255078,-0.019254033,0.034590576,-0.018951885,0.0184622,-0.0028287172,0.021150261,0.0049697906,0.05763707,0.012325497,0.016763927,0.02758911,-0.018264242,-0.0074286386,-0.026422199,-0.012533874,-0.022108797,0.010814765,0.003021466,-0.007767251,0.010668901,-0.049552042,0.005917906,0.010335498,-0.0117732985,0.023067331,0.014232147,-0.019827068,-0.03700775,0.009251937,-0.025109425,0.009491571,-0.018493455,-0.03129822,-0.017784974,0.02090021,-0.04317571,0.012929791,0.008611178,0.0032037958,0.013523665,-0.032444295,-0.011273194,-0.019035235,0.002578665,0.05363623,0.010377173,-0.0134819895,-0.0133465445,-0.026443036,0.017243193,-0.008095445,0.01456555,0.039591625,0.029922932,0.007652644,-0.025651205,-0.018660158,-0.0042456808,-0.01656597,-0.009522827,0.054136336,0.04198796,0.0013010537,0.018660158,-0.018503875,-0.012679738,-0.018910209,-0.025651205,-0.0013583574,-0.0049072774,-0.03538241,0.032527644,-0.0042222384,0.010668901,-0.05697026,0.008444477,0.02742241,-0.0068087173,-0.007491152,-0.020827278,0.003112631,-0.020514712,-0.012565131,-0.00321161,-0.014263404,-0.0017125981,-0.017868325,-0.018764345,-0.025547016,-0.020525131,-0.041571204,0.018212147,-0.013429895,0.024380105,-0.013252775,-0.00950199,-0.019129006,0.006303403,0.019139424,-0.033507016,0.030568901,-0.020962723,-0.008626807,-0.026484713,0.006167958,0.017576598,-0.007725576,0.029256126,0.021671204,0.046551414,0.019295707,0.002886021,-0.011867068,-0.029422827,-0.01590958,-0.026005445,0.00352678,-0.0029381153,0.011002304,-0.022275498,-0.0036596204,-0.006532618,-0.0017790183,0.005735576,0.032527644,0.007074398,0.029589528,0.0065899217,0.035444923,-0.024546806,-0.024046702,-0.022921465,0.016920209,0.024046702,-0.024317592,-0.0184622,-0.03392377,-0.016951466,0.019649947,0.046634763,-0.032652672,-0.040862724,0.023546597,-0.00849657,-0.01800377,0.0070431414,0.013148586,0.03021466,-0.013669529,0.0020017212,-0.03519487,-0.0531778,-0.03165246,-0.047801677,-0.008803926,-0.044384293,-0.016701413,0.018951885,-0.020785602,0.0039904187,0.014721832,0.0058918586,-0.08526786,-0.023880001,0.038028795,-0.02967288,-0.010450105,0.0001745157,-0.035569947,0.040633507,0.018295497,-0.022900628,0.022379685,-0.028651834,0.007381754,-0.023234032,0.04684314,-0.0066889008,0.044009216,0.016159633,-0.004750995,-0.024109215,-0.005271937,0.004902068,0.030631414,0.051885866,0.013950838,0.0072358903,0.006376335,0.008085026,0.07243183,-0.014273822,0.026922304,0.012898535,-0.038153823,-0.0037507855,0.049260315,0.02171288,-0.014367592,0.005897068,0.0011571434,-0.008658063,0.006709738,-0.01438843,-0.0035241754,-0.0009422546,0.004188377,0.07501571,0.025005236,0.012888115,0.00010866533,-0.015232356,0.021056492,0.0039487435,-0.010731414,-0.025359476,0.030172985,0.005745995,0.0040294896,0.026901467,0.009600969,-0.010700157,-0.04071686,-0.027714137,0.007590131,0.0052875653,0.016586807,-0.01582623,-0.010590759,-0.026130471,-0.02786,-0.024650995,0.0065795025,-0.012554713,0.048968587,0.018253822,0.014555131,-0.0037742278,0.02796419,-0.025213612,-0.0036752487,-0.008991466,0.049968798,0.016170053,0.0049802093,0.026422199,0.0061731674,0.0011063515,0.010814765,-0.032548483,0.02569288,0.0372578,0.0112211,-0.0013257985,0.007173377,-0.008793508,0.025276126,-0.011512827,-0.04846848,-0.0042769373,0.0772245,-0.036070053,0.007439058,-0.012450524,0.00242108,-0.004172749,-0.007814136,-0.019962514,-0.0056209685,0.0067253667,-0.003193377,-0.02821424,0.017149424,-0.005011466,-0.031527434,0.0062721465,-0.02179623,-0.016753508,0.03817466,0.005344869,0.004839555,-0.023754975,0.028380943,0.06976461,0.0014182657,0.005907487,-0.010028142,0.028360104,-0.0070848167,-0.033298638,0.0041805627,0.0030110471,-0.0139612565,0.048968587,0.0018936257,-0.0025109425,-0.023025654,0.021567017,0.03336115,0.0027714137,-0.07093152,0.024734346,0.0053761257,-0.03671602,0.013429895,0.0032506806,0.024838535,0.012460942,-0.010455314,0.018712252,0.0097572515,-0.036590993,-0.008444477,-0.01782665,-0.045384504,-0.0069129057,0.009929162,0.03465309,-0.033423666,-0.02198377,-0.037778743,0.01230466,0.00040503274,0.026818115,0.018493455,0.025046911,0.02315068,0.020306336,-0.03961246,-0.0015940837,0.014805184,0.008585131,0.010147958,0.007829765,0.042717278,0.011512827,0.03600754,0.04359246,0.013877906,-0.0026060145,0.031214869,-0.018868534,-0.005219843,-0.00016735274,0.026005445,0.01991042,0.034486387,-0.004693691,-0.01284644,0.012450524,-0.0055063614,-0.013804974,-0.00605856,0.029860418,-0.0010588155,-0.030027121,-0.031798325,0.021337802,-0.03392377,0.014763508,-0.046468064,-0.015586597,0.021837907,0.009033142,0.039841674,-0.033527855,0.0076839007,0.009548875,-0.024755184,0.006839974,0.012408848,0.02956869,0.022233821,-0.010476152,-0.027380733,0.013502827,-0.007772461,0.03842471,-0.010825183,0.0051990054,-0.019462408,0.0051443065,0.0071994243,0.0204522,0.010017723,0.046176337,-0.04530115,-0.029464504,0.009053979,-0.018858116,-0.0074286386,0.03765372,0.013763298,-0.02217131,-0.0061367014,0.01510733,0.020754347,-0.036757696,-0.034423877,0.020879371,-0.013086073,0.014555131,-0.00054080336,0.016638901,0.018899791,-0.04061267,-0.025484502,-0.005589712,0.009257147,-0.005725157,-0.014898953,-0.009376964,0.015232356,-0.022317173,0.02579707,-0.006615969,0.04867686,0.02460932,0.011825393,0.038799793,0.023775812,0.023379896,0.028193403,0.0039383247,-0.016701413,-0.03736199,-0.008267356,0.048510157,0.004089398,-0.00795479,-0.013721623,0.008324659,-0.037737068,0.00045224314,0.004555641,0.0069858376,0.011075236,0.0133465445,0.02190042,0.014773927,-0.00031793767,-0.0019730695,-0.036049213,-0.046718117,0.001250913,-0.038820628,0.0139612565,0.004362893,-0.030777277,0.016857697,0.013700785,0.028672671,-0.004323822,0.019785393,-0.013440315,-0.017691204,0.014367592,0.00047015052,-0.044384293,-0.027172357,0.020608481,0.023817487,-0.044217594,-0.019462408,-0.02631801,-0.023213195,-0.018555969,0.005402173,0.019139424,-0.01908733,0.043842513,0.015128167,-0.012971466,0.03511152,0.026401361,-0.04207131,0.017118167,-0.015597016,-0.012856859,-0.010085445,-0.008736204,0.009194634,-0.0027844373,-0.019733299,0.0065847123,0.016941048,0.024588482,-0.0076422254,0.018222565,-0.0030813743,0.012335916,0.0077307853,0.0080485605,-0.0018454385,-0.0025995027,-0.001185144,-0.015534502,-0.0021488874,-0.053802934,0.021879582,0.012137958,0.041383665,-0.012179634,0.03281937,-0.04296733,0.032881886,0.0265889,-0.034382198,0.021546178,-0.015534502,-0.021733718,0.015159424,0.04909361,0.0012925884,0.0045712697,-0.010814765,0.012106702,0.0053865444,0.049260315,0.027359895,-0.0006700622,-0.0081840055,-0.022212984,0.005673063,0.02796419,0.006345079,0.03990419,-0.030735603,-0.023942513,-0.000016645738,0.020045863,-0.0045452225,-0.009324869,0.011877487,-0.008408011,0.02225466,-0.0013017049,0.008824765,-0.0111585865,-0.012054607,-0.044009216,0.026088797,0.00049261615,0.0012678436,-0.018962303,0.029756231,-0.04425927,0.008001676,-0.024838535,-0.013429895,0.016430523,-0.029339477,-0.0045712697,0.007834974,0.0050609554,0.012200471,0.0004180563,-0.0017568783,0.010236518,-0.0068868585,-0.016378429,-0.03456974,-0.013940419,0.02786,0.009288403,0.004787461,0.03336115,0.011200262,0.008319451,0.00045484785,-0.036236756,0.0057043196,0.04325906,0.025171937,0.01873309,0.0018167867,0.015180262,0.037945446,-0.0008445779,0.00084588025,0.0077151572,0.002117631,0.0069493717,-0.005475105,-0.008741414,0.014794764,-0.009017513,0.02569288,0.003961767,-0.04125864,-0.021421151,0.0087674605,-0.021942094,-0.016816022,0.03842471,0.032777697,-0.0076057594,0.02152534,0.022129634,-0.03138157,-0.03184,0.003039699,0.014398849,0.009871859,0.025734555,0.03473644,0.004441034,0.03256932,0.0028156938,-0.034882303,-0.0025982002,-0.014180052,-0.014961466,-0.019858325,0.00062871235,0.014659319,0.023754975,-0.0065847123,-0.0039096726,0.024213403,0.008564293,-0.0075640837,-0.00081918197,-0.024817696,0.0022322382,-0.051344085,0.002256983,0.0072358903,-0.01383623,0.011825393,-0.0033757067,0.006209634,-0.0033392408,0.003881021,-0.003573665,0.011867068,0.016222147,-0.014075864,0.041592043,-0.01257555,0.0015849672,0.041946284,0.012460942,-0.0020420942,-0.00588144,-0.010752251,0.013200681,0.003328822,-0.03907068,-0.028797697,0.021962931,-0.024567645,-0.013763298,0.017159844,0.008220471,0.017149424,0.03398628,-0.032694347,-0.02631801,-0.006480524,0.033861257,0.0071994243,0.011940001,0.0059856283,0.008032932,0.003545013,0.044926073,0.023025654,0.018795602,-0.020129215,-0.029381152,-0.029464504,0.02660974,-0.022463037,-0.022900628,-0.015232356,0.026443036,-0.045009423,0.015232356,-0.0089029055,-0.017409895,-0.005871021,-0.0032923562,-0.019285288,-0.010319869,-0.010288613,-0.02044178,-0.025588691,-0.01746199,0.0036934817,-0.060012568,-0.018701833,-0.03319445,-0.014669739,0.016868114,0.02904775,0.0206189,0.036049213,-0.034944817,-0.014180052,-0.038799793,0.028297592,-0.023317382,-0.005391754,-0.013044398,0.0066055497,0.032861046,0.023192355,-0.009059189,0.032777697,0.034861468,0.029818743,-0.043134034,0.02352576,0.0100646075,0.05417801,0.042008795,0.0025265708,0.00018167867,0.022150472,-0.00470411,0.01257555,0.007532827,-0.012408848,0.0004174051,-0.029797906,0.012815183,0.006115864,-0.010731414,0.032881886,-0.0013518456,-0.015524084,0.0016071073,0.010158377,-0.016055446,0.0070639793,0.0074234293,-0.005933534,0.024130052,0.030527225,0.009371754,0.010543874,0.00393572,-0.037507854,-0.01365911,0.04396754,0.0034616624,-0.01781623,-0.030589739,0.0372578,-0.035965864,-0.014075864,-0.01410712,0.01727445,-0.003419987,0.04177958,-0.029693717,0.009871859,0.013159005,0.043467436,-0.01700356,-0.02252555,-0.015117749,0.017482828,-0.00084783375,-0.032235917,-0.03727864,0.031589948,0.029985445,0.00850699,-0.028568482,-0.02252555,0.014002932,0.014982304,0.030443875,-0.0012554713,0.019410314,-0.03763288,0.00515733,0.0015211519,0.0024653599,0.0398,-0.0076786913,-0.00940822,-0.024567645,-0.008366335,-0.04767665,-0.0038132984,0.016128378,-0.03165246,-0.029214451,-0.02750576,0.012315079,0.03757037,0.034590576,-0.013825811,-0.0015445943,-0.011679529,-0.03429885,-0.015701205,-0.015617854,0.005600131,0.008324659,-0.012367173,-0.003565851,-0.025817906,0.007282775,0.020056283,-0.0081840055,0.034778114,0.008585131,-0.029276963,-0.0021580039,-0.016503455,0.007090026,-0.0006700622,-0.021587854,0.024275916,-0.0041805627,0.033882096,-0.018691413,-0.0028443455,-0.011210681,-0.010793927,-0.00016637599,-0.0038914399,0.013867487,-0.009053979,0.0066055497,-0.00058540906,0.053511206,0.0061367014,-0.014721832,0.01203377,-0.002107212,-0.024088377,0.054428063,-0.007225471,0.004540013,0.017784974,0.021692041,0.01329445,-0.0016409686,0.044467643,0.0077203666,-0.011877487,0.020337591,0.04027927,-0.0024523365,0.03429885,-0.015221938,-0.022692252,0.0034251963,-0.015711622,-0.012325497,-0.039341573,0.01248178,0.0020798626,-0.0026724346,-0.0024341035,0.0013622644,-0.0005834555,0.024317592,-0.00005591991,0.034152985,-0.000698714,-0.07151497,0.01157534,0.030860629,-0.013419476,0.041008588,0.0038315314,-0.041133612,0.0530111,-0.018024607,0.02179623,0.0155657595,0.016399268,-0.0024484294,0.019920837,0.02542199,0.019295707,-0.011971257,0.017451571,-0.021858744,-0.017930837,0.008986257,-0.053344503,-0.020493874,-0.006266937,0.016795183,-0.01655555,-0.01130445,0.027880838,-0.0276933,-0.02008754,0.0009572317,-0.01582623,0.00823089,-0.0013427291,0.00032330988]},{"id":"guide-webhook-attachments-embeds-3","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Full Example: Embed + Files\nCombine content, description-only embed, and file attachments in a single webhook send.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '@fluxerjs/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Build completed',\n embeds: [\n new EmbedBuilder()\n .setDescription('Deploy succeeded. See attachment for logs.')\n .setColor(0x57f287)\n .setTimestamp(),\n ],\n files: [{ name: 'deploy.log', data: readFileSync('deploy.log') }],\n username: 'CI Bot',\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.015829116,0.024127876,0.015884003,-0.051548913,0.012459117,-0.07222995,0.011668759,0.019791884,0.013831267,0.009522717,0.010658857,-0.026850222,0.02294234,-0.099760756,-0.032558363,0.06257002,0.0023793073,-0.008918972,-0.005590137,-0.004036864,-0.0030955693,-0.0040505854,-0.0011388841,0.014577717,-0.035610024,-0.012601821,-0.03844214,0.055149432,-0.004871131,-0.031987548,0.018331917,-0.007343744,-0.016004752,0.021460418,-0.038705595,0.06696089,0.014863123,0.042284157,-0.017354947,0.03960572,0.013227521,0.0005238181,-0.0030351947,0.038661685,0.027003903,0.014577717,-0.0484753,0.0050001126,-0.03503921,0.07653301,-0.0029364,0.012184688,0.044721097,0.01479726,-0.009478808,0.009813613,-0.034182988,0.034073215,-0.08601731,0.013040909,0.035631977,-0.03187778,-0.022327617,-0.0005663547,-0.016784133,-0.008529281,-0.04544559,0.007327278,0.0152912345,0.051988002,0.072976395,0.03550025,-0.027047811,0.020692015,0.024171786,-0.028035758,-0.032163184,0.005222401,-0.022162959,-0.04177921,-0.021164034,-0.035456344,-0.089047015,-0.024654781,-0.084173135,0.016586544,-0.032316864,-0.04627986,-0.024391329,0.023535108,-0.016652407,-0.018452667,-0.056510605,-0.021032307,0.04092299,0.04063758,-0.04627986,-0.0027580205,-0.0021035052,0.03679556,0.08614904,-0.026081817,-0.060813665,-0.025313415,0.004668053,-0.029616475,0.028430937,0.0013220661,0.016213318,-0.027201492,-0.03593934,-0.021877551,0.003597776,0.027530808,0.065599725,-0.02834312,0.009687375,0.033502404,-0.01162485,-0.031263053,-0.03554416,-0.030472696,0.044677187,-0.014336218,0.003460561,0.006893679,-0.018672211,0.028123576,-0.05018774,-0.010082554,0.04109862,0.009577603,0.060594123,-0.009478808,-0.029353023,-0.012382277,0.020724947,0.028826118,-0.03128501,0.009775193,0.04019849,-0.07161523,0.048826568,-0.0377396,-0.02564273,0.039517906,-0.044216145,0.028057713,-0.03754201,-0.035675887,-0.051812366,-0.027684487,-0.0077718548,0.024435239,-0.017925762,0.0015944378,-0.030209243,-0.004154869,-0.006103321,-0.043908782,-0.0014270354,0.02619159,0.00047647892,0.001937475,-0.037827417,-0.010592994,0.04309647,-0.042723246,-0.041515756,0.005735585,-0.0020582243,-0.018298985,-0.0032355285,0.033963446,0.047684938,-0.029726246,-0.019901656,-0.053700443,-0.0041713347,-0.0019059157,0.011103434,-0.024127876,-0.009912408,0.00086719845,-0.05427126,-0.013205566,0.028628526,0.023732698,-0.016575566,-0.00022263125,-0.023381427,0.008562213,-0.013436088,-0.009303174,0.02658677,0.003965512,0.0036444291,0.017925762,0.061208844,-0.03938618,-0.012107847,0.023820516,0.017168334,-0.03363413,-0.018760027,0.019736998,-0.014731397,0.01882589,-0.008265829,0.0074370503,0.008918972,0.033963446,0.029001752,0.04158162,-0.030780058,-0.00053856865,-0.004303061,0.017903807,0.0028623038,0.012305437,-0.05427126,0.015027781,0.01976993,-0.019012503,-0.048607025,0.046192043,-0.018573416,-0.042525657,-0.02904566,0.016081592,-0.009270242,0.0012438535,-0.03984722,-0.007821253,0.012360322,0.056115426,0.019100321,0.019912634,0.004742149,-0.0017055818,-0.023864424,-0.009149493,-0.015280257,-0.017014654,-0.0108290035,-0.016729247,-0.014621625,-0.03508312,0.028123576,0.010510665,0.07244949,0.026718495,0.02544514,-0.0029062126,0.035961293,-0.048124027,-0.04909002,-0.015027781,0.0028485823,-0.010691789,0.02004436,0.03264618,-0.04869484,0.011526056,0.005120862,0.02434742,0.028826118,0.016773155,-0.0022187657,0.0018976828,0.010247213,0.020955468,0.045006502,-0.0024383096,-0.046104223,-0.0034001865,-0.032602273,-0.018134328,-0.027904032,0.008540259,-0.03214123,-0.014413059,-0.040703442,0.046850674,0.011602896,0.015016804,-0.022283709,0.0023751908,0.029923836,0.0040341197,-0.024588918,0.017190289,0.03914468,-0.035170935,-0.0036142417,0.05334917,0.03934227,-0.00006341904,0.058354773,0.039913084,-0.060462397,-0.0013028559,-0.003449584,-0.0014338963,0.029462794,-0.00007315272,-0.027025856,-0.044260055,0.014632602,-0.020922536,-0.0023491199,-0.006827816,-0.0442381,0.0037569453,0.009495274,0.0129970005,0.027728397,0.025357323,0.010779606,0.010252701,0.044325918,0.0021268318,0.01874905,-0.0749962,-0.027904032,-0.031021556,-0.02529146,0.014160583,0.02869439,0.018178236,0.021317715,0.017947715,0.012832342,-0.0020047105,0.009824591,-0.054973796,0.009215356,-0.0014325241,0.015510778,0.056071516,-0.027464945,0.0012040612,-0.01292016,-0.02059322,-0.05918904,-0.0034111636,0.013589769,0.057300963,-0.017179312,-0.021054262,-0.022964293,-0.01632309,-0.04109862,0.012228596,0.0055050636,-0.033678036,0.02043954,-0.054754253,0.009193402,-0.017124426,-0.04632377,0.05378826,0.01874905,0.035851523,-0.012942114,0.012426185,0.020219995,-0.0061911386,0.00029415454,-0.0036060088,0.049573015,0.05813523,-0.0025384766,0.02713563,-0.056949694,0.00416859,0.015159507,0.07350331,0.008578679,-0.01702563,0.012755502,0.055017706,-0.030758103,-0.034753803,-0.012634752,0.0009975526,0.0018030044,0.025357323,-0.025489049,0.008167034,-0.0005927686,-0.0071296887,-0.009846545,0.014994849,0.03532462,0.036510155,0.05708142,0.011295535,0.0017426299,-0.02744299,-0.017947715,-0.0085347695,-0.010774118,-0.006674135,0.07341549,-0.0075303563,0.028123576,-0.011548011,0.01409472,-0.0052361223,0.0066960896,0.047509305,0.02294234,-0.010988173,-0.0048436876,0.0077992976,-0.0044924174,-0.025620775,0.0039984435,0.033216994,-0.040571716,-0.003762434,0.0063393307,0.014204492,0.013677586,-0.041471846,0.055149432,-0.0052031907,0.03488553,-0.041076668,-0.08860793,-0.035522208,0.034534257,0.0049232724,0.0339854,-0.021811688,0.009791659,-0.0011738739,-0.020143155,-0.00297482,-0.015884003,0.026323317,0.013381202,0.03688338,-0.041845072,0.0025988512,-0.032426637,0.016213318,-0.039320316,0.042064615,-0.007920047,-0.036576018,0.021636054,-0.011092457,0.016026706,0.026762404,-0.045928586,0.0036499177,0.06353601,0.004231709,0.030253151,0.017135402,-0.037059013,-0.018112373,0.010790584,-0.036949243,-0.03539048,0.02000045,0.029989699,0.0015093645,0.012898205,-0.0049315053,-0.023535108,0.036576018,-0.020779831,-0.034182988,0.0324925,-0.036773607,0.010247213,0.0068881903,0.0041987775,-0.021658007,-0.07618174,-0.0039408132,-0.019254,0.085709944,0.012612798,-0.03205341,0.013853221,0.013589769,-0.012063938,-0.0001763212,0.013864199,-0.009034232,-0.011537033,-0.045050412,-0.016970744,-0.045752954,-0.005019323,0.020812763,-0.021932438,-0.04463328,-0.015642505,-0.004572002,0.023161884,-0.0026962738,-0.040791262,-0.005516041,-0.016180387,0.03139478,0.015159507,-0.030736148,0.009297685,0.043206245,-0.011701691,0.013556837,-0.031153282,0.047026306,0.0067784186,-0.058003504,-0.019133253,0.025774457,0.0076236627,0.006317376,-0.025994001,-0.0025645474,-0.0122395735,-0.028804163,-0.0040505854,-0.035763703,0.006838793,0.043557514,-0.008139591,-0.019890679,-0.036927287,0.015675437,-0.03512703,0.010214281,0.0011992586,-0.03185582,-0.05383217,0.053217445,-0.0058782883,0.005376082,-0.03168019,-0.0009872615,-0.005458411,0.01417156,0.014489898,0.013732472,-0.00530473,-0.032360774,-0.008331692,0.009303174,0.0007135177,0.007952979,0.017168334,-0.0049315053,-0.03194364,-0.009171447,0.017925762,-0.018979572,0.009665421,0.017673286,-0.016180387,0.03743224,0.023974195,-0.0020431306,0.027838169,0.020604197,-0.014380127,-0.011987098,-0.01980286,0.00016791679,-0.006816839,0.016542634,-0.026498951,0.00061472296,-0.038771458,-0.03574175,-0.01307384,0.00046481565,-0.015258302,0.014193514,-0.0010126464,0.0026962738,0.0064820345,-0.012777456,0.010142929,-0.0035264243,0.04443569,-0.007453516,0.016817065,-0.012514004,0.018573416,-0.015905958,0.020615174,-0.0039902106,-0.042086568,0.016619476,-0.011306512,-0.021592144,0.0028321166,-0.005461155,-0.005469388,0.015763253,0.0013447065,-0.016542634,-0.028123576,0.010126463,0.008079216,0.017508628,-0.021087194,-0.049397383,0.0016822553,0.00951174,-0.00014776335,0.0039819777,0.0069156336,0.0029995188,0.051944092,0.008507327,0.032602273,0.005532507,-0.0066302265,0.024325466,-0.00504951,-0.024457192,-0.006718044,0.04129621,0.0029583543,0.033524357,0.005244355,-0.016893905,-0.0039216033,-0.036071066,0.026498951,-0.006635715,0.0013110888,-0.0070254053,0.019726021,-0.0042728735,0.045928586,0.0036746163,0.005527018,0.033721946,-0.021076215,0.016937813,-0.023535108,-0.015565664,-0.009374525,-0.024303513,0.02211905,-0.009423923,0.011877326,-0.06384337,-0.0072175064,0.006465568,-0.016970744,0.011493124,0.008693939,-0.004379901,-0.02434742,0.033304814,-0.025906183,0.010900356,-0.040549763,-0.003433118,-0.020757878,0.0044128327,-0.06441419,0.0069156336,-0.0031394782,0.008853109,0.017322015,-0.025159733,0.0022558137,-0.035851523,0.037300512,0.032360774,0.015686413,0.005455666,-0.022525206,-0.026367225,0.014006902,-0.021262828,0.00015882631,0.03618084,0.017881852,-0.009500763,-0.03699315,-0.009873988,-0.014588693,-0.018189214,-0.0033206018,0.04658722,0.034622077,0.019133253,0.013029932,-0.014413059,-0.0024890793,-0.01522537,-0.04494064,0.008918972,-0.0064491024,-0.03848605,0.023732698,0.009286708,0.012843319,-0.033524357,0.010582017,0.021679962,-0.013633678,-0.014610648,-0.026081817,-0.004728427,-0.030297061,-0.015982797,0.017794035,-0.018628301,0.006465568,-0.032755952,-0.013534883,-0.01616941,-0.02109817,-0.038068917,0.004322271,0.01029661,-0.0026852966,-0.021317715,-0.0012411092,-0.016970744,0.005444689,0.011416283,-0.040418036,0.04153771,-0.051856276,0.0061362525,-0.022634977,0.0021638798,0.01804651,0.00475587,0.024764555,0.04843139,0.03209732,0.0003137077,0.017168334,-0.009407457,-0.014731397,-0.010669835,-0.03299745,0.005186725,-0.020395631,0.008946415,-0.024127876,0.0065039885,0.0012809016,-0.0122395735,-0.0043195267,-0.0044457642,0.013567815,0.04522605,-0.004936994,0.008479884,-0.003946302,-0.030845921,-0.021800712,0.008929949,0.024632828,-0.0013694052,-0.013611723,-0.020637129,-0.028870026,0.022678887,0.036927287,-0.03319504,-0.033260904,0.018068464,-0.017870875,-0.02152628,0.018705143,0.0036334519,0.020461494,0.009599558,-0.005450178,-0.017925762,-0.05813523,-0.018079441,-0.05238318,-0.02544514,-0.033963446,-0.023930287,0.02959452,-0.0314826,0.01307384,0.0232497,-0.014061788,-0.08992519,-0.0049918797,0.028365074,-0.038354322,-0.028650481,0.015829116,-0.024391329,0.035017256,-0.0025357322,0.0040615625,0.02959452,-0.018375827,0.0039243475,-0.029331068,0.029023707,0.00090699084,0.017881852,0.014621625,0.0073766755,-0.03178996,0.0053568715,-0.005159282,0.045006502,0.051548913,0.011218694,0.016301136,0.009456854,0.0016822553,0.065951,0.0018057488,0.02196537,0.019583318,-0.0040533296,-0.009627,0.01789283,0.020450516,0.00039586512,0.0030544049,-0.016641429,-0.021603122,0.005389803,-0.01730006,-0.01844169,-0.015686413,0.021153057,0.06533627,0.022920385,0.016037684,0.0124920495,0.017552536,0.017168334,0.008699427,-0.01064788,-0.020011429,0.016817065,0.018891754,-0.028935889,0.018935664,0.030033609,0.0035291684,-0.028826118,-0.022173936,0.032624226,-0.010378939,0.01597182,-0.010483222,-0.015401006,-0.015521755,-0.037300512,-0.025774457,0.017047586,-0.026784359,0.051724546,0.0209884,0.0044292985,0.0020335256,0.01002218,-0.027684487,0.0063503077,-0.00326846,0.032426637,0.0007471354,-0.0023751908,0.042218294,0.015851071,-0.018244099,0.0071296887,-0.0059276856,0.016465794,0.040066764,0.026081817,-0.026433088,0.014819215,-0.018233122,0.0142593775,-0.0069924737,-0.034182988,-0.00036910822,0.08909092,-0.02313993,0.028826118,-0.0027868357,0.0042811064,0.0043195267,-0.02097742,0.024149831,0.008578679,0.013458042,-0.010055112,-0.02869439,0.022503251,-0.0135019515,-0.03589543,-0.0008342669,-0.016652407,-0.03354631,0.025884228,-0.022294685,-0.005609347,-0.004753126,0.050012104,0.066170536,-0.025511004,0.0024945678,-0.014753351,0.010752164,-0.008880552,-0.03205341,0.008117637,-0.0031038022,-0.0048491764,0.050012104,0.018661233,-0.009105584,-0.009594069,0.022283709,0.034622077,0.0068442817,-0.048563115,0.031372827,0.0077169687,-0.04632377,0.026718495,0.003781644,0.0194955,0.020681037,-0.019210093,0.04364533,-0.015082668,-0.027904032,-0.0037953656,-0.01479726,-0.038969047,-0.00001573684,0.034709893,0.040505853,-0.014753351,-0.033304814,-0.03488553,0.0105545735,-0.006542409,0.04483087,0.035873476,0.014204492,0.03185582,0.009363548,-0.047684938,-0.008381089,0.0053404057,-0.007239461,-0.016586544,0.014237423,0.03635647,0.001982756,0.03640038,0.042723246,0.010148418,-0.0031422223,0.027684487,-0.017750125,-0.013425111,0.004909551,-0.00060717616,0.01088389,0.023776606,0.0022036722,-0.00436618,0.01980286,0.011493124,0.008946415,0.0016822553,0.01784892,-0.009802636,-0.02634527,-0.04588468,0.026718495,-0.052997902,0.0069869854,-0.043996602,-0.0009076769,0.014588693,-0.00086719845,0.025335368,-0.023030156,-0.0029967744,-0.020692015,-0.009253777,-0.001358428,-0.0053925477,0.00935806,0.01088389,-0.015181462,-0.019210093,0.02584032,-0.006602783,0.039759405,-0.030933738,0.012832342,-0.0053925477,-0.0013076585,0.019583318,0.008726871,0.021548236,0.03394149,-0.040857125,-0.021658007,-0.0018126095,-0.017278107,0.015192439,0.050978098,-0.009791659,-0.012118825,-0.008715894,0.011405307,0.014972895,-0.027574716,-0.050056014,-0.009028744,-0.013381202,0.0136227,0.0023203047,0.030099472,0.014467944,-0.032470547,-0.010894867,-0.0100606,0.018342894,-0.0007903581,-0.015609573,0.002799185,0.007404119,0.0079035815,0.035610024,-0.020560289,0.05532507,0.021164034,0.0063667735,0.040549763,0.0046241437,0.011800486,0.0065863174,0.0046570753,-0.024018105,-0.034622077,-0.0032931587,0.022810614,0.026235498,-0.0013337294,-0.009863011,0.013765404,-0.032514453,0.019122275,0.0027470433,0.026762404,-0.010269167,0.019045435,0.00561758,0.032470547,-0.005258077,-0.008331692,-0.04158162,-0.025884228,-0.002532988,-0.030121425,0.018573416,0.02141651,-0.01479726,0.003918859,0.014808238,0.01033503,0.026081817,-0.0057959594,-0.0029144455,-0.011602896,0.014885078,-0.0015985542,-0.0337439,-0.022832567,0.028035758,0.03440253,-0.050714646,0.006608272,-0.012294459,-0.027355172,-0.014720419,0.024018105,0.026674585,-0.02924325,0.037981097,0.0035209355,-0.031306963,0.006443614,0.038178686,-0.039276406,0.029923836,-0.019440614,0.0023916566,-0.009154981,0.010044134,0.00084387197,-0.0052992413,-0.013743449,0.0025686638,0.03534657,0.019594295,-0.025203642,0.011202228,-0.012052962,0.023074066,0.008595144,0.019429637,-0.0072175064,0.016015729,-0.0247426,-0.0010888006,-0.00052450417,-0.03824455,0.012195664,-0.0054117576,0.022766704,-0.011602896,0.017431788,-0.026850222,0.02869439,0.025159733,-0.03719074,0.01687195,0.0022777682,-0.023886379,0.018540485,0.050363377,-0.00078418344,0.008430487,-0.0065478976,0.0039847223,0.0055736713,0.050056014,0.017574491,-0.0029418885,-0.019528432,-0.02204221,0.003166921,0.041845072,-0.0010263678,0.021175012,-0.028826118,-0.0063393307,-0.0012465979,0.015653482,0.0038145755,-0.008600633,0.014402081,0.00042193598,0.014061788,-0.028145531,0.0049260166,0.0027552762,-0.024435239,-0.014160583,0.024523055,0.004467719,-0.017826967,-0.015565664,0.01088389,-0.03295354,0.0018427968,-0.038398232,-0.01507169,0.011427261,-0.005752051,-0.0050056013,-0.0016314858,0.006608272,-0.002018432,-0.012579867,-0.0008932693,0.0013748938,-0.00892446,-0.016312113,-0.026476996,-0.027662534,0.021822665,0.03664188,0.008666496,0.029528657,-0.00014167443,-0.005252588,0.023271656,-0.019089343,0.019341819,0.016740223,0.021284783,0.0018331917,0.012711593,-0.0011066386,0.016037684,0.0028842583,0.018606348,0.0063557965,0.022678887,0.003754201,0.0066247378,-0.021372601,0.017574491,-0.016301136,0.027486898,0.004478696,-0.03855191,-0.015587619,0.005790471,-0.031504553,-0.005156538,0.03934227,0.022788659,0.006602783,0.030867875,0.018123351,0.0024232161,-0.017947715,0.008737848,0.008595144,0.027179537,0.024149831,0.029550612,0.01479726,0.03859582,0.0018661233,-0.044874776,-0.040571716,-0.020187063,0.009594069,-0.013040909,-0.012667684,0.018002601,-0.01182244,-0.012316414,-0.020373676,0.02207514,0.0006836735,-0.00082946435,0.004467719,-0.03189973,0.008946415,-0.04109862,-0.015159507,0.018101396,0.004591212,0.000945411,-0.024676736,-0.019758953,-0.0020678292,0.0017412577,0.004517116,0.013117749,0.01976993,-0.00681135,0.01769524,-0.03264618,0.026367225,0.01730006,0.03962768,-0.0049946243,0.0021062496,-0.015752276,0.010340518,-0.015686413,-0.024325466,-0.026872177,0.008595144,-0.017003676,-0.026762404,-0.004643354,-0.009133027,0.025862273,0.027355172,-0.03354631,-0.011438238,-0.0000497833,0.029616475,0.00083289476,0.0053541274,-0.0022077886,0.018858822,-0.0095446715,0.052251454,0.0015903213,0.019901656,-0.007974933,-0.008935438,-0.04118644,0.023754653,-0.015686413,-0.013886153,-0.016290158,0.038310412,-0.026476996,0.018233122,-0.0017042097,0.0002231458,-0.010560063,0.013216544,-0.033765856,-0.007887116,-0.020450516,-0.022448367,-0.012305437,0.011339444,0.009665421,-0.055193342,-0.036949243,-0.03205341,-0.027421035,0.005450178,0.032031458,0.03635647,0.024391329,-0.021877551,-0.019166185,-0.051944092,0.018364849,-0.018540485,0.006959542,-0.020757878,-0.0065094773,0.033063315,0.018068464,-0.025028007,0.018298985,0.0015711111,0.030077517,-0.027399082,0.018913709,0.032316864,0.030933738,0.047816664,0.01851853,0.0054309675,0.012689639,0.010625926,0.02133967,0.021471396,-0.020757878,0.0072833695,-0.05738878,0.02529146,-0.00086994277,-0.001258261,0.026981948,0.008935438,0.00014236051,0.0032108298,0.015115599,-0.022678887,-0.003479771,0.03558807,-0.0021048773,0.017014654,0.008167034,0.028979797,-0.009445877,-0.0012877623,-0.030933738,-0.019012503,0.03784937,0.0155437095,-0.009950828,-0.019155206,0.046631128,-0.014138629,-0.016926836,-0.018485598,0.007415096,-0.020900581,0.027596671,-0.010104509,0.016158432,0.008057262,0.038376275,-0.026081817,-0.011059525,-0.030560514,0.032272957,0.0018002602,-0.052866176,-0.03969354,0.0018414246,0.02419374,-0.019649182,-0.028255302,-0.0039133704,-0.0050879302,0.024874326,0.019155206,-0.023359474,0.000835639,-0.039869174,-0.00017263356,0.018024556,0.010115487,0.05418344,-0.019166185,-0.01162485,-0.018178236,-0.0064326366,-0.038178686,-0.011405307,-0.001974523,-0.02603791,-0.028255302,-0.030516604,-0.004322271,0.030604422,0.005186725,-0.021109147,0.0072065294,-0.020571265,-0.0018167259,-0.02540123,-0.010669835,-0.01327143,0.005817914,-0.00963249,-0.020154132,-0.016828042,0.013205566,0.03293159,-0.0039682565,0.02638918,-0.008057262,-0.021658007,0.00278958,-0.01804651,-0.009830079,0.0058728,0.001974523,0.029901883,0.0011066386,0.028211394,-0.003155944,0.012953091,-0.02270084,-0.020055337,0.017673286,-0.028518755,0.020165108,0.022097096,0.031372827,-0.01354586,0.03934227,0.007096757,-0.0034934927,0.0030324503,0.0025467095,-0.017365923,0.03550025,-0.007766366,0.023271656,0.014654556,0.039078817,0.023579016,-0.010214281,0.051856276,0.009583092,-0.02579641,0.024457192,0.017958693,0.0075852424,0.0017467464,-0.0046762857,-0.0232497,-0.0074480274,-0.019539408,0.011504102,-0.024369376,0.016773155,0.01209687,-0.009423923,-0.0232497,0.012305437,0.0003203969,0.016356021,0.00646008,0.017201265,-0.023820516,-0.062350474,0.0039517907,0.034775756,-0.01754156,0.038969047,-0.00798591,-0.028387029,0.034622077,0.00767306,0.003460561,-0.005444689,0.03479771,0.0055462285,0.006904656,0.032185137,0.018573416,-0.01115832,0.0062844446,-0.013743449,-0.014413059,0.016839018,-0.048607025,-0.0152912345,-0.008897018,-0.015422961,-0.033524357,-0.018375827,-0.0033123689,-0.01742081,-0.011306512,-0.005164771,-0.018540485,-0.0023532363,-0.024018105,-0.00087062886]},{"id":"guide-voice-0","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Installation\nAdd the voice package alongside the core library.\n\n```bash\npnpm add @fluxerjs/voice @fluxerjs/core\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.04644615,-0.022053836,0.01803613,-0.05617322,-0.0039990456,-0.0024193295,-0.04112238,0.004885304,-0.04216723,-0.019093422,-0.006648491,0.039729245,0.019155616,-0.037614662,0.01583448,0.05482984,-0.049381685,-0.014615485,0.02093435,0.004014594,-0.034355722,-0.016618118,-0.0076311496,0.035873245,-0.033335745,0.016543487,-0.024093784,0.09786778,0.0048479876,-0.022613578,0.0055072396,-0.031096779,0.022750404,0.008700878,-0.036345914,-0.032763567,0.0467198,-0.008744414,-0.048212446,0.0056813816,-0.009018065,-0.054133274,0.0066858074,0.0021767744,-0.006474349,0.030325579,-0.015324492,0.015660338,-0.049108032,0.0020897035,0.0060763103,-0.014540854,0.001997968,-0.008190892,0.0045898845,-0.010367666,-0.01727737,-0.01881977,-0.03813709,0.0048044524,0.01602106,-0.038759023,-0.012326763,0.018521242,0.003426865,0.02384501,-0.035748858,-0.006253562,-0.0023369228,-0.00055274524,0.0044903746,0.0027676134,-0.021158248,-0.03502741,-0.021531409,0.05637224,-0.030897759,0.049481194,0.015859356,-0.05047629,-0.0364703,-0.004717381,-0.034405477,-0.018770015,-0.027290532,-0.005852414,-0.078612655,0.012519563,-0.00347662,-0.019280003,0.020250222,-0.030425088,-0.08617539,0.0100691365,0.014528415,0.045973476,0.028011978,0.019404389,0.035574716,0.0279871,0.09055382,-0.026096417,-0.00868222,-0.025897397,0.033733785,0.006160272,0.032987464,0.00010572905,-0.05502886,0.019479021,-0.06746757,0.016804699,0.03224114,0.013956234,0.0245167,-0.013433808,0.08304084,-0.033733785,-0.0008870356,-0.0775678,-0.041371156,-0.025573991,-0.00086371304,-0.00013731171,0.033609398,-0.018583436,0.009751949,0.006934582,-0.065328114,0.016269835,0.029454868,-0.016730066,0.022501629,-0.0010448517,-0.020884596,-0.010579124,-0.016531048,0.005740465,-0.0046085427,0.032066997,-0.00002725827,-0.057367336,0.024578894,-0.021108493,0.0034050972,0.018061008,-0.028584158,-0.010143769,-0.050028495,0.038808778,-0.0343806,0.004496594,-0.052789893,-0.0080540655,-0.029703643,-0.011630195,-0.00063009845,0.032863077,-0.06303939,-0.03452986,0.018123202,-0.000936013,0.0677661,-0.050948963,0.023335023,-0.018944157,-0.03719175,0.003126781,-0.01592155,0.046595413,-0.012364079,-0.0007187243,-0.014926454,-0.0046831747,0.017526144,-0.0058368654,0.022576261,-0.023534043,-0.03545033,-0.0018300454,0.016468855,0.030524598,-0.015809603,-0.020337293,-0.0020912583,-0.022053836,-0.0025266132,0.03418158,0.019727796,0.0044934843,-0.0033677812,-0.01699128,0.0029790713,0.05731758,0.04662029,0.030997269,0.032216262,-0.015685216,0.008016749,-0.017973937,-0.026892494,0.014105499,-0.0015719421,-0.032788444,-0.038286354,-0.056421995,-0.036122017,-0.0035823488,0.017787358,-0.022576261,0.0083028395,0.018608313,-0.0056222975,0.04104775,-0.10717194,0.026320314,0.02674323,-0.00011049074,-0.012556879,-0.054979105,-0.013645266,-0.023111125,0.061148707,0.000845055,0.043560367,0.012314324,0.02704176,-0.021058738,-0.0012858518,0.005955033,0.034679126,-0.024454506,-0.006517885,0.023782816,0.013097963,0.00031330006,-0.013732337,0.029579256,0.016754944,-0.001718097,-0.056322485,-0.02741492,0.06428326,0.03619665,0.03870927,0.027365165,-0.021854816,-0.05463082,0.04796367,0.014142815,0.021407023,0.04642127,0.06736806,0.024106223,0.009515614,-0.026220804,0.005426388,0.03709224,-0.032290895,-0.045724705,-0.0039461814,-0.02296186,-0.0048231105,0.0013363841,-0.026569087,-0.055576164,0.0028158133,0.016916648,0.017961498,-0.001949768,0.0047360393,-0.029479746,0.067616835,-0.011561782,-0.0037285038,0.005811988,0.026967127,0.05338695,0.0067790975,0.07045286,-0.057566356,-0.01814808,-0.042515516,0.008439666,-0.0037782586,-0.0013394938,-0.008725756,-0.004226052,-0.014515976,0.015535951,-0.009490737,0.033360623,0.01978999,-0.015436441,0.03627128,0.033733785,0.04766514,-0.031022146,0.003467291,0.039132185,0.018508803,0.014043305,0.02617105,0.019130738,0.010056698,0.052590873,-0.021319952,0.0027334068,0.03938096,-0.015088157,0.03293771,-0.027962223,0.0044344007,-0.009154892,-0.008066504,-0.03348501,-0.005096762,0.0214319,0.017140545,-0.00040659038,-0.0017429744,0.010635098,0.056720525,-0.02268821,-0.000027015327,-0.018857086,0.011978479,-0.048311956,0.00868844,0.005656504,0.02915634,-0.013272105,0.015374247,0.037415642,0.0034393037,-0.005239807,-0.03908243,-0.005473033,-0.00255771,0.0048044524,0.015710093,-0.023136003,-0.02423061,0.0048044524,0.007444569,0.030698739,-0.020897035,-0.0110020405,0.015523512,0.010044259,-0.055377144,0.011505808,0.01437915,-0.008831485,-0.0037222845,-0.00078130653,0.028783178,-0.045699827,-0.009403666,0.012724802,-0.07428399,0.008029188,0.003349123,0.08508079,-0.035798613,0.015623022,-0.0007474888,0.024641087,-0.052590873,-0.008489421,0.039007798,-0.033858173,-0.012183717,0.043013062,-0.09637514,-0.020188028,0.002240523,-0.01689177,-0.02895732,-0.0077368785,0.034803513,-0.0015579486,0.017924184,-0.037316136,-0.026668597,-0.02607154,0.011381421,0.014068183,0.032290895,0.02962901,0.02781296,-0.0016185873,-0.019068545,0.017252494,0.034156702,-0.0038591102,0.053237684,0.040376056,0.036345914,0.0011140421,0.033733785,0.049083155,0.016170325,0.020287538,0.050650433,0.015672777,0.021195564,0.031917732,-0.019404389,-0.015162789,0.03301234,-0.024280366,0.014229886,0.04537642,0.017625654,0.021805061,0.04199309,-0.0528894,0.00801053,0.028832933,-0.00395862,0.016133009,-0.01352088,-0.04094824,0.008377472,0.01583448,-0.0029479747,0.0007505985,0.031644084,0.018695382,-0.030922636,-0.03552496,0.03948047,0.01949146,0.022265293,-0.05378499,-0.02828563,-0.0032962586,0.015573267,0.034803513,-0.01563546,-0.004266478,0.010006944,0.03863464,0.037490275,-0.013272105,-0.007911021,-0.010311692,-0.026220804,0.013968673,-0.058063906,-0.010100233,-0.014043305,0.013769654,0.04323696,-0.008576492,0.043983284,0.039256573,-0.008389911,-0.013981111,0.010703512,0.012998453,-0.041445788,-0.008178453,-0.024367435,0.009018065,0.022476751,0.009807924,-0.0045805555,-0.0060607623,0.02201652,-0.030027049,-0.022874791,-0.009235743,-0.03696785,-0.05453131,-0.015001086,-0.012494686,-0.017140545,-0.015946427,0.031967487,0.04982948,-0.03656981,0.046471026,0.012532001,0.056222975,0.03734101,-0.01650617,-0.014677679,-0.03448011,0.012283227,0.00047694685,0.025163513,-0.013272105,0.025039125,0.0035668004,-0.0279871,0.010883872,-0.014341834,-0.026693475,0.018011253,-0.015573267,-0.0036414328,0.01853368,0.026096417,0.036321037,0.059606306,-0.024976933,-0.008613808,0.02838514,0.015187667,-0.015585706,-0.014826944,-0.00078519364,-0.000016520164,0.040201914,-0.022837475,0.031967487,0.039953142,-0.0060389945,-0.0013783647,0.025424726,-0.023223074,0.012438712,0.001997968,-0.029106585,0.00005174698,-0.025822764,0.024753036,-0.016941525,0.0141676925,-0.017787358,-0.043784264,-0.060999442,-0.019329758,0.03253967,-0.005065665,0.003252723,-0.017638093,0.0000723486,-0.012320544,0.07124894,-0.017078351,0.0027007551,0.004188736,-0.007270427,0.022439435,0.022414558,0.00723933,0.024155978,-0.010212182,-0.050401658,-0.02597203,0.020125834,0.0428638,0.035649348,0.026992004,-0.028534403,-0.001128813,-0.0102868145,0.04746612,-0.03542545,0.013533318,-0.011804337,0.00065419846,-0.0237455,-0.01254444,-0.0030972392,0.035898123,0.018297344,-0.02424305,-0.038460497,0.010031821,0.012444931,0.004471717,-0.0066360524,-0.0068101943,0.015274738,0.004083007,-0.037390765,-0.008980749,-0.041818947,0.03841074,0.015001086,-0.029106585,0.026419822,-0.016817138,-0.02923097,-0.006965678,0.018658068,0.017488828,0.02441719,-0.0024535358,-0.008327717,0.011835434,-0.01457817,-0.011748363,0.0022078713,-0.0019917486,0.0031127876,-0.043784264,-0.008327717,0.023198197,0.0047764652,0.0099198725,-0.04152042,0.025312778,-0.002385123,0.033659153,0.020635823,0.007948336,-0.0030412648,-0.019578531,-0.052640628,-0.01930488,-0.0077057816,0.00974573,-0.0063188653,0.019939255,0.001371368,-0.011543124,-0.04025167,-0.019267565,-0.006803975,0.015374247,0.024342557,-0.004042581,-0.0068288525,0.02771345,-0.01786199,-0.019864623,0.0065987366,0.037490275,-0.01360795,-0.014292079,-0.03159433,-0.0017802906,0.00646813,0.018521242,-0.041545298,0.049257297,-0.010529369,0.033161603,-0.00444062,0.04015216,-0.0018595874,-0.017488828,0.030798249,-0.0028251424,-0.03214163,-0.028136365,0.031196289,-0.008047846,0.019852184,0.0045525683,-0.010672415,-0.010747046,-0.013309421,0.013371615,-0.011269473,-0.058262926,0.03174359,-0.004412633,0.0026774327,-0.006505446,0.019043667,0.009130014,0.0544318,-0.030076804,0.015274738,-0.052491363,0.00482622,0.02684274,0.0052926717,0.019454144,0.012973576,-0.022526506,-0.044256937,0.03918194,-0.032564547,-0.0058928397,0.005718698,-0.05318793,-0.016083254,0.014254764,-0.030425088,-0.033062097,-0.025362533,0.009584027,0.0024022262,-0.00520871,0.0070216525,0.006822633,-0.001529184,-0.00041008877,0.027962223,0.031196289,-0.016804699,0.006166491,-0.04229162,-0.026419822,-0.010224621,-0.02414354,-0.005706259,-0.024292804,0.002200097,-0.025549114,-0.0025981357,0.038012702,-0.018869525,-0.06264135,0.017426634,-0.0364703,-0.005933265,0.01409306,-0.03639567,-0.021693112,-0.04577446,0.024665965,-0.018284906,-0.016568363,0.022078713,-0.01959097,0.0035512522,-0.012737241,0.009901214,-0.026195927,-0.002559265,-0.024777913,0.0071771364,-0.023322584,-0.018260028,-0.024466945,0.021295074,-0.03793807,0.017202739,-0.031171411,0.018931719,-0.041843824,-0.04403304,-0.0029837359,-0.020287538,0.015187667,0.010548027,-0.012382737,-0.02761394,0.048038304,-0.00087692915,-0.039455593,-0.013060647,-0.028882688,0.008253085,-0.040898483,-0.005532117,0.0018689164,-0.030300701,0.009148672,0.01215884,0.018993912,0.011058015,0.005927046,-0.026320314,0.0038497811,0.044853993,-0.013831847,0.015436441,0.005423278,0.019528776,0.053138174,0.0151503505,-0.021108493,0.0043006847,0.0022389682,0.009789266,-0.006922143,0.004166968,-0.05771562,-0.02471572,0.007313962,-0.03378354,-0.015884234,-0.003146994,-0.031793345,-0.04112238,0.028808055,-0.017065912,0.018459048,-0.019864623,-0.013757215,-0.008974531,-0.055924445,-0.013433808,-0.010324131,-0.019168055,-0.018658068,0.04082385,-0.0025903617,-0.05721807,-0.006835072,-0.03686834,0.0071211625,0.000087119566,0.019367073,0.035002533,0.012077989,0.0013387164,-0.0027691682,0.010977163,-0.0012244356,0.0010728389,-0.0039461814,-0.004005265,-0.04112238,0.0033553424,0.001345713,0.021170687,-0.029604133,-0.017327124,0.0007113388,-0.0077368785,0.040027775,-0.009329034,-0.012395176,-0.0014840937,-0.0031703166,0.0028811165,0.023596235,-0.02664372,-0.000719113,0.010317911,0.025499359,0.011089112,-0.016904209,-0.0015968196,-0.0554269,-0.051496264,-0.025698379,-0.0019482132,-0.024292804,-0.004431291,-0.031718712,0.015971305,0.02363355,0.009534272,0.047341734,-0.018906841,0.023235513,0.020051204,-0.0114684915,0.009235743,-0.0021363487,0.012196156,0.03853513,0.0066671493,0.06517885,0.006679588,0.008501859,0.051048473,0.026817862,0.015958866,-0.0037813683,0.0036445425,-0.01854612,-0.009621344,0.0063468525,-0.009776827,-0.039057553,-0.012494686,-0.0062411237,0.007519201,-0.0026992003,-0.025350094,0.017302247,0.0056720525,0.000027501213,-0.0030770262,-0.03656981,0.00801053,0.005752904,-0.021158248,-0.012028234,0.046893943,0.010149988,-0.019043667,-0.011381421,-0.0006219356,0.014777189,0.0708509,-0.03204212,-0.014466221,-0.012637731,0.0052740136,-0.016108131,-0.018608313,0.012998453,0.021792622,-0.032962587,0.052839644,0.019827306,-0.04652078,-0.0067977556,0.022377241,0.033111848,0.011953602,-0.0038280135,-0.023011615,-0.032962587,0.016282273,-0.01726493,-0.06448228,0.024267927,-0.021494092,0.01901879,0.02036217,-0.018969035,-0.024280366,0.0034983875,0.021083616,0.029206095,-0.021008983,-0.008731975,-0.019541215,-0.036644444,-0.035649348,-0.048685115,-0.01177946,-0.037714172,0.041396033,-0.02731541,0.006611175,-0.03505229,0.043809142,0.022713087,-0.024442067,-0.0058866204,-0.00053330977,0.021419462,-0.0022591809,-0.012022015,0.026817862,-0.019939255,0.00092046463,0.00024566456,0.021357268,-0.005463704,-0.007799072,0.0032744908,0.04064971,0.016244957,0.009515614,0.019615848,0.02151897,0.058611207,0.022053836,0.0011948937,-0.026494455,0.0031003489,0.00096166786,0.005351756,0.005743575,0.018172957,-0.0071025044,-0.007257988,0.0035668004,-0.0033926584,0.0035543619,-0.0202751,-0.018160518,0.014826944,-0.007991872,0.023807693,0.00022370245,0.02761394,0.014540854,-0.017414195,-0.0007156146,-0.035475206,0.014814505,-0.008464543,0.009335252,0.03967949,0.016070815,-0.020573629,0.004353549,-0.010193524,-0.017115667,0.008868801,-0.0114684915,-0.038112212,0.03281332,-0.0063468525,-0.015187667,-0.043411102,0.021506531,0.015038402,0.0041078846,0.027539307,0.011406299,0.026370069,0.004086117,-0.02414354,-0.018459048,0.024404751,-0.057068806,0.0153991245,0.019802429,-0.0023789036,-0.00008124033,0.026693475,0.0013954679,0.019031228,-0.0011358098,0.02771345,0.004042581,-0.010187305,-0.018210273,0.010199743,0.0024970714,0.02103386,-0.038933165,0.026792984,0.0022156455,-0.007780414,0.002952639,-0.068412915,-0.035848368,0.023820132,0.01187275,-0.019964132,-0.0019808647,-0.0035885682,0.038286354,0.008924776,-0.044455953,0.030400211,0.013408931,0.019155616,-0.008756853,0.0064059366,0.014777189,0.014242325,0.010181085,0.023297707,0.013782092,0.021531409,0.0073885946,0.032066997,-0.002327594,-0.0013853615,0.02617105,-0.02838514,0.04323696,0.018396854,-0.010666195,0.018421732,0.0057093687,-0.0038870974,-0.031619206,-0.016842015,-0.033111848,-0.025922274,-0.002066381,0.018944157,-0.008016749,0.0070029944,0.024641087,0.02036217,-0.013732337,-0.010019382,0.016095692,-0.0019917486,0.016195202,0.008607589,0.011910066,0.009882556,-0.078513145,-0.0056409556,-0.04288868,0.020747771,-0.022451874,-0.0028873358,0.008234427,0.00096555497,-0.021394584,0.028335385,-0.0015260744,0.05318793,-0.0059425943,-0.005445046,-0.010747046,0.00089092273,0.024056468,-0.022041397,-0.036619566,0.037913192,0.02307381,-0.026220804,0.0024892972,0.0472671,-0.019926816,-0.0017538583,0.00054147263,0.016070815,0.00974573,0.0007844162,0.0032838199,-0.012332982,0.012034453,0.048809502,0.0020197358,0.015946427,-0.0048977425,0.004269588,-0.028907565,-0.003049039,0.00453702,-0.011449833,0.020610945,-0.015672777,-0.005000362,0.02238968,-0.0118851885,-0.012152621,0.014528415,-0.003330465,0.050501168,-0.015623022,-0.000040668754,-0.01863319,0.043983284,-0.008949653,-0.061795518,-0.02704176,-0.07234354,0.05562592,0.00801053,0.03156945,-0.0237455,0.0031407746,-0.008968311,-0.0015369583,0.025213268,-0.0012601969,0.014354273,-0.009447201,0.013545757,0.021494092,0.074831285,0.01901879,0.010821679,-0.0030630326,0.017973937,0.010597782,-0.014080621,0.033086974,0.034305967,-0.032465037,-0.017973937,0.025673501,0.024740597,-0.00878173,0.011437396,-0.008116259,0.0012096647,0.0124013955,0.0031298907,-0.022215538,0.004748478,0.0017927293,0.017240055,0.056123465,-0.025549114,-0.014404028,0.012749679,0.0022374133,0.0011544679,0.015050841,0.010143769,0.011648853,0.0013006227,0.032091875,-0.044555463,0.013931356,-0.024429629,-0.0025064005,0.0009220195,-0.011456053,-0.033310868,-0.01824759,0.011922505,-0.002952639,0.0011311453,0.00066469365,-0.013645266,-0.014304518,-0.00012778833,-0.0115182465,0.003974168,0.025138635,0.0053704134,-0.00011019921,-0.0094534205,-0.000072542956,0.028310508,-0.03271381,0.015722532,-0.0055383365,-0.029852908,-0.013670144,0.0010969389,0.0070714075,-0.0104858335,0.021382146,0.0060918587,0.02036217,0.0133342985,0.035574716,-0.009975847,0.015884234,-0.00077664206,0.01080924,0.0021876583,0.025138635,0.008159795,-0.047739774,0.04577446,-0.010610221,0.02654421,-0.0035077166,0.05368548,-0.01631959,-0.003358452,-0.013234789,0.012693705,-0.023446972,-0.016332028,0.025200829,-0.025051564,0.014802067,0.022140907,0.003436194,0.014976208,0.008246866,-0.025039125,0.034803513,-0.0027054197,-0.019429266,-0.022849914,0.012488467,0.006188259,0.01786199,-0.0016372454,-0.015672777,0.032962587,-0.0006028888,0.01427964,0.0014615486,0.03271381,-0.03726638,0.022464313,-0.03328599,0.0005686823,-0.008402349,-0.019615848,0.022327486,-0.048660237,-0.0072082332,0.0014250099,0.0068288525,0.010852776,-0.031196289,-0.028011978,-0.0103863245,0.05866096,-0.040027775,0.036122017,0.008601369,0.00791724,-0.033733785,-0.027638817,-0.02597203,0.022053836,-0.020859718,0.0064992267,-0.022924544,-0.04206772,-0.028036855,0.0004547904,0.025947152,0.0040705684,0.0002652944,0.030076804,0.006343743,0.03552496,0.013794531,0.02587252,-0.00646813,-0.017787358,-0.071199186,-0.005762233,-0.021655796,0.030872881,-0.023546482,-0.01863319,-0.015361808,-0.020100957,-0.024591332,-0.012594195,0.013247227,0.020610945,-0.011412518,-0.009235743,-0.029703643,0.0020197358,-0.010933627,-0.0018098325,-0.01496377,0.0031796456,-0.030648984,-0.047938794,-0.026270559,0.050426535,-0.040798973,-0.004760917,0.017152984,-0.01437915,0.025138635,0.00034089843,0.0063872784,0.01051693,0.015299615,0.00024022261,-0.011829214,-0.042142354,-0.009105137,-0.017302247,0.010174866,-0.032489914,-0.006290878,0.01390648,0.023534043,-0.03139531,-0.009117575,0.01196604,-0.03388305,-0.0191183,-0.014155254,-0.017414195,0.0099198725,0.011120208,0.011704828,-0.013744776,-0.019665603,0.010983382,-0.0008668227,-0.029106585,-0.0183471,0.010249498,-0.036445424,0.011953602,0.00052942266,0.035674226,0.02781296,0.018409293,0.004023923,0.005880401,-0.0053548655,0.012196156,0.019429266,0.00016627059,-0.037589785,0.009024285,0.054979105,0.0060700914,-0.012799434,0.021021422,0.021058738,0.0046769553,0.020772649,-0.008514298,0.007301524,-0.0008823711,-0.006841291,-0.0053424267,-0.021767745,0.006107407,-0.0056347363,0.017103229,-0.014702557,-0.0063375235,0.020921912,-0.027788082,0.016842015,0.010504492,0.011443615,-0.024081346,0.007656027,-0.028932443,-0.00704653,0.010678634,-0.021456778,-0.050451413,-0.028459772,0.006340633,-0.014018428,-0.023247952,-0.005351756,0.026121294,-0.014752312,0.008638685,0.012214814,0.029977294,-0.010970944,0.010498272,-0.0014856486,0.015374247,-0.014391589,-0.008271744,-0.0001718097,-0.024330119,0.012264569,0.027539307,0.02885781,0.018869525,-0.016866893,-0.0031392197,-0.03699273,0.031096779,0.0051713944,0.026992004,-0.019715358,0.007830169,0.020548752,0.012637731,-0.0016745615,-0.018745137,-0.018222712,-0.031818222,0.0008668227,-0.007152259,-0.0044872654,-0.024180856,0.015287177,0.010212182,0.024964495,0.011325447,-0.02828563,-0.006300207,-0.007985652,-0.0072268914,0.016543487,0.01921781,0.04353549,0.01013755,-0.005065665,-0.015971305,0.017998815,0.013732337,0.0041731875,-0.0047920137,0.007618711,0.002837581,-0.0016527937,-0.014802067,0.009720853,-0.00008371836,0.0017398647,0.020150712,0.035375696,0.008452104,0.011704828,0.01457817,0.00028570165,0.0046489686,-0.018658068,0.05244161,0.02518839,0.011953602,0.041619927,0.022377241,0.02654421,-0.02741492,-0.019155616,-0.02731541,0.006698246,0.019441705,0.0109025305,0.02818612,-0.011244595,-0.03318648,0.0061042975,0.016966403,-0.0039057555,-0.03967949,0.0418687,0.017041035,0.00049249525,0.022613578,0.016070815,-0.000520871,0.008601369,-0.013670144,-0.001940439,0.050998718,-0.019926816,0.0069097043,-0.037316136,-0.04759051,0.011729705,-0.0009297937,0.030723616,0.011847872,0.047217347,-0.007065188,-0.008868801,0.014789628,-0.007556517,-0.020424364,0.0105355885,-0.004459278,-0.020872157,-0.021183126,-0.0012897389,0.024404751,-0.037913192,0.00039240246,-0.017774919,0.025748132,0.043311592,-0.0079048015,-0.025822764,0.0073201815,0.0119846985,-0.01427964,-0.017513705,-0.0033677812]},{"id":"guide-voice-1","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Setup\nCreate a VoiceManager before login so it receives VoiceStatesSync from READY/GUILD_CREATE. This lets the manager see users already in voice when the bot starts.\n\n```javascript\nimport { Client, Events, VoiceChannel } from '@fluxerjs/core';\nimport { getVoiceManager } from '@fluxerjs/voice';\n\nconst client = new Client({ intents: 0 });\ngetVoiceManager(client); // Must be before login\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.019413743,0.013216229,-0.012946772,-0.014909959,-0.014820141,-0.021518074,-0.021761868,0.011047741,-0.00412526,0.01601345,-0.0033938764,0.0280492,0.02287819,-0.041137118,0.01760453,0.020658378,-0.09895491,0.013293217,0.0074806423,-0.02277554,-0.0040194015,0.034362197,-0.0014972512,0.0632326,-0.02436662,0.0029720475,-0.026086014,0.038339894,-0.034439184,-0.04632096,0.022056988,-0.020145126,-0.0057933275,-0.007358745,-0.0027523118,-0.0016825029,0.027253661,0.008738109,-0.049785405,0.01919561,-0.01730941,-0.025919206,0.027099686,0.007576877,0.009918587,0.028382814,-0.013832131,0.0066401926,-0.03759568,0.02305783,-0.023096323,-0.03300208,-0.00780784,0.031462323,0.02436662,-0.02505951,0.0051645944,-0.03410557,-0.04652626,0.03300208,-0.00018565274,-0.016950134,0.010893766,0.05348082,0.0075127203,0.015461705,-0.03577364,-0.00018154271,0.020299101,0.038237244,-0.0068968185,0.001213359,-0.005536702,-0.015679836,-0.04942613,0.024713065,-0.01798947,0.07134198,-0.008507146,-0.05281359,-0.03608159,-0.02902438,-0.033489667,-0.024212645,-0.025393123,0.050401308,-0.061487544,-0.006543958,0.025380293,-0.03292509,0.015602849,-0.030769434,-0.052556966,0.012420689,0.051196847,0.021505242,0.072265826,-0.008090128,0.025547098,0.025431618,0.089254454,-0.0357993,-0.032386176,-0.0083210915,0.038750496,-0.024700234,0.012985266,0.03092341,-0.04044423,-0.000007887986,-0.094233,0.0058510685,0.027920889,-0.00282128,-0.010592231,-0.045166142,0.0364152,-0.053942744,0.042214945,-0.071187995,-0.03549135,0.0134471925,0.012946772,-0.0060980706,0.058202732,-0.027510287,-0.020260608,0.0041573383,-0.045525417,-0.0011050949,0.040213265,-0.009200036,0.04721915,-0.0083852485,-0.050144684,0.0054276357,0.018656697,0.03210389,-0.056560326,-0.00073659624,0.0058318214,-0.043498073,0.0018573293,0.0024700235,-0.0025887128,-0.0092706075,-0.056868277,0.023186142,-0.04981107,0.02435379,-0.054866597,-0.0052929074,-0.038853146,-0.025790894,0.0126259895,0.004516614,-0.019721692,0.036928453,-0.04665457,-0.07590991,0.015756825,0.0017610946,0.07375426,-0.059793815,-0.03023052,-0.034259547,-0.041419405,0.007993894,-0.026432458,-0.0036665413,0.0040354407,0.0154103795,-0.009886509,0.014165744,0.024777222,-0.040906154,-0.0353887,0.04198398,-0.025790894,-0.030358832,0.04801469,0.0042407415,-0.006239215,-0.031359673,-0.016821822,0.0049657095,-0.005658599,-0.0021203707,-0.004211871,-0.06590151,-0.0079554,-0.016526703,-0.011336445,0.040906154,0.059383214,0.011856113,0.040906154,-0.02198,-0.015153754,-0.041830007,-0.024430776,-0.042830847,-0.013280385,-0.042599883,-0.021261448,-0.042009644,0.0023208596,0.046577584,0.02337861,0.021441087,0.024251139,0.0063354494,-0.017335074,0.022993673,-0.119279675,0.03659484,-0.012138401,0.0017594907,-0.017065616,-0.020363258,-0.014114419,-0.028074862,0.04413964,-0.032129552,0.0349781,0.016975798,0.035234723,-0.042574223,0.010412592,0.010252201,0.004648135,-0.018759346,-0.017014291,-0.030461483,0.01848989,-0.027433299,0.019862838,0.05579045,0.03857086,0.05291624,-0.03241184,-0.011560992,0.03551701,-0.008783018,0.034670148,0.042830847,-0.014409539,-0.034131233,0.04216362,0.008282598,0.043472413,0.033951595,0.058305383,0.012901862,0.037236404,0.02206982,-0.02346843,-0.007833503,0.013254723,-0.042394582,-0.018682359,-0.0002480048,0.0002528165,-0.00007252686,-0.027510287,-0.05181275,0.00012239849,-0.006252046,0.0046770056,0.024995353,-0.06533693,-0.039853986,0.047886375,-0.0028886443,-0.038314234,-0.024122827,0.027766913,-0.0033361355,-0.006149396,0.06672271,-0.055533826,-0.000723364,-0.032591477,0.021518074,0.010232954,0.014730321,-0.015063935,-0.016629353,-0.030615458,0.053532142,-0.01938808,0.05011902,0.01113756,-0.017142603,0.050657935,0.05178709,0.037262067,0.0032094265,0.0036280474,0.07108535,0.048938543,-0.0008011537,-0.013588336,0.040007964,0.009815937,0.030949073,-0.0044588735,-0.027689924,0.035157736,-0.032386176,-0.004718707,0.0032206539,0.04385735,-0.015602849,-0.02902438,-0.007679527,0.03587629,0.024546258,0.01079753,0.0031981992,-0.054712623,-0.003307265,0.019901332,-0.024944028,-0.018861996,-0.022698553,-0.0056297285,-0.043780364,-0.02267289,0.007474227,0.025508605,-0.0640538,0.011496836,0.026381133,0.017270917,-0.010682049,0.017514711,-0.009456661,-0.025021017,0.008776602,-0.007993894,-0.017168267,-0.0433441,0.016744833,-0.0049560857,0.052326,-0.022146808,-0.0033746294,-0.031051723,-0.017835494,-0.02387903,-0.0052191275,-0.0019214858,-0.06297597,-0.015063935,-0.016347064,0.019067297,-0.044319276,-0.023737887,0.005408389,-0.044627227,-0.022095483,0.0055014156,0.045602407,-0.044781204,0.0014627671,-0.01878501,0.01710411,-0.018733684,0.0002963226,0.0437547,-0.022429096,-0.010759037,0.049965046,-0.06056369,-0.04108579,-0.0045775627,-0.014768816,-0.022198133,0.05389142,0.027202336,-0.0059248484,0.018066457,-0.029742932,-0.026175832,-0.0026175831,0.0100469,0.009957082,0.0065215034,0.0060499534,0.0012350117,-0.0098415995,0.03271979,0.029640282,0.0055495333,0.002152449,0.04198398,0.03102606,-0.00029993142,-0.004089974,0.06297597,0.038262907,-0.026227158,-0.011663643,0.03928941,-0.0005304937,-0.005299323,0.012690146,-0.006527919,-0.019619044,0.07288173,-0.034182556,0.02715101,0.023429936,0.01511526,0.0138193,0.016526703,-0.028074862,0.009963497,0.03292509,-0.017270917,-0.019439405,0.029742932,-0.027176673,0.010842441,-0.0050876066,0.0017338281,0.013562674,0.027612938,-0.013857794,-0.06277067,-0.013870625,0.035850625,0.024867041,0.0044428343,-0.048271313,-0.02894739,-0.029896908,0.010335605,0.006236007,-0.022198133,-0.0101559665,0.014371045,0.03002522,0.030846423,0.024571922,-0.030564133,-0.0024315296,0.02017079,0.0052512055,-0.03331003,-0.021646386,0.022454757,0.009886509,-0.00082922215,-0.026920047,0.020324765,0.04054688,-0.036363877,0.0052479976,-0.025251979,0.0021428254,-0.008269766,0.020761028,0.020530066,0.027510287,0.012638821,0.013293217,-0.033438344,-0.006794168,0.008109376,-0.031641964,0.0000683166,0.012850537,0.00885359,0.00929627,0.013177735,-0.01197801,0.009828769,0.0020931042,0.0697509,0.060615014,-0.047167823,0.038057607,0.06256537,0.0944383,0.062822,-0.020530066,-0.046166983,-0.039905313,0.021646386,-0.0026047518,0.07349763,-0.01451219,0.05579045,-0.033387017,0.01780983,-0.00894341,0.011811202,-0.006236007,-0.011599487,-0.02435379,-0.019465068,0.0469112,0.024815716,0.0217747,-0.009507986,-0.028588114,-0.0062648775,0.020427415,-0.019837175,-0.0058510685,-0.040906154,0.0045486926,0.002041779,0.021248616,0.007377992,0.027766913,0.0061429804,0.005459714,-0.026509445,0.0119331,-0.005148555,0.0077885934,-0.003708243,-0.0070251315,-0.004183001,-0.039417725,0.00012350117,-0.026227158,0.015820982,-0.0062841247,-0.032257862,-0.040623866,-0.041265428,0.03341268,0.006239215,0.0059184325,-0.026265651,0.01079753,-0.023506925,0.049066853,0.0029961064,-0.0025630502,-0.022454757,-0.019619044,0.01038693,0.037364718,-0.0019856421,0.008590549,0.020157957,-0.02535463,-0.059177913,-0.0038429715,0.008815097,0.009745365,-0.0055206628,-0.010406177,0.008962656,0.00031516858,0.003126023,-0.03697978,0.015602849,-0.0117278,-0.0028822287,-0.042599883,-0.021697711,-0.007647449,-0.013030175,0.027972214,-0.013998938,-0.009655546,0.019003142,0.03577364,-0.0062809167,-0.010823193,0.0029078913,-0.007814256,0.000067514644,0.017912481,-0.009507986,-0.043703374,0.015949294,0.028767753,-0.022724215,-0.0027057983,-0.045730717,-0.00502345,0.023044998,0.02346843,0.03331003,-0.02604752,0.0054725455,0.010816778,0.0029255343,-0.0067556743,-0.039109774,0.033464007,-0.008718862,-0.0032238618,-0.006152604,0.03210389,-0.011599487,-0.020504402,0.010900181,-0.021210123,-0.0026689083,0.012818459,0.022313613,0.026381133,-0.00073900213,0.0047989027,-0.0362099,-0.05399407,-0.016513871,0.0059184325,-0.02049157,0.016436882,0.030743772,0.032796778,-0.0016207524,0.007082872,-0.034567498,-0.0018396863,0.013485686,0.013357373,0.009277023,-0.009764612,-0.008860006,-0.0280492,0.0130815,0.011695721,0.017091278,-0.015718332,-0.036132913,-0.04175302,0.010682049,0.035696648,0.0063418653,-0.023327285,0.05876731,-0.05579045,0.028254502,-0.012022919,0.022608733,-0.0025887128,-0.020453077,0.029588956,-0.015820982,-0.007005885,-0.022044158,-0.011118313,0.010322773,0.00390392,0.017553205,-0.030641122,-0.02376355,-0.008988319,0.020902172,-0.00517101,-0.053737443,0.030204857,-0.002551823,0.012029335,-0.012395026,0.0159108,-0.008032388,0.033592317,-0.0349781,-0.0032062186,-0.041932657,0.033951595,-0.004176585,-0.021043316,0.015384717,-0.0047636167,-0.0004234326,-0.043626387,0.05301889,-0.033540994,0.008186364,0.0007867185,-0.02666342,0.014101588,0.030743772,-0.002657681,0.01769435,-0.031154374,0.0020578182,-0.0012438332,-0.022531746,-0.000579012,0.005478961,0.01879784,-0.006245631,-0.0013873833,0.028819079,0.002426718,0.00651188,-0.05579045,-0.030564133,-0.011875359,0.0033040573,-0.011836865,-0.00075143244,0.018849166,-0.021736206,0.004843812,0.015987787,-0.024148488,-0.035542674,0.018733684,-0.015140923,-0.0029704438,0.017771337,-0.003798062,-0.044011325,-0.05081191,0.047578424,-0.015179416,-0.013485686,0.023340117,0.008289014,0.034259547,0.014743153,-0.020927835,-0.00038594115,0.005536702,-0.050272997,0.0016568403,-0.010701296,-0.015051103,-0.0034034997,-0.0035350204,-0.014755984,0.039828327,-0.04655192,-0.011663643,-0.04206097,-0.052659616,0.023121985,0.008936994,-0.033053406,0.011496836,-0.012677315,0.0032062186,0.04316446,0.021749036,-0.05222335,0.00810296,-0.024520596,0.009366842,-0.02187735,-0.014063094,0.017527543,-0.0012229824,0.0035895535,-0.008904915,-0.038006283,0.028767753,0.009520818,0.018451396,0.00365371,0.011798372,-0.01879784,0.005828614,-0.004978541,0.009610636,0.02576523,0.004436419,-0.04791204,-0.030307507,-0.021492412,0.009264192,0.008513561,-0.018528383,-0.023981681,-0.03261714,0.008532808,-0.022621565,-0.010694881,0.016193088,-0.011554577,0.007050794,0.026689084,-0.015846644,0.033258706,-0.010040484,-0.0175917,0.0010625912,-0.03597894,-0.018836334,-0.033181716,0.006499049,-0.032796778,0.040700853,0.0059729656,-0.07621787,-0.008430158,-0.017796999,-0.014999778,-0.002476439,-0.0026897592,0.034285206,-0.003650502,-0.009604221,-0.012549002,0.0040290253,-0.0034580329,0.018823503,-0.038365558,0.01928543,-0.02992257,-0.026689084,0.023725055,0.01819477,-0.011323614,-0.038853146,-0.016975798,-0.044267952,0.02566258,0.001934317,-0.021453917,0.0017514712,0.013780806,0.012125569,0.021890182,-0.032873765,0.0020369673,0.016629353,0.015885137,0.00012370165,0.010476748,-0.008949825,-0.014345382,-0.01138777,-0.040213265,-0.03828857,-0.009815937,0.011291536,-0.004481328,0.01909296,0.012741472,0.012863369,0.03628689,-0.030641122,0.0144608645,0.028767753,0.012497677,0.012427105,-0.0013665324,0.020915003,0.06400248,-0.0353887,0.05419937,-0.0023272752,-0.010932259,0.042368922,0.022660058,0.024225477,-0.012131985,-0.01038693,-0.022262288,-0.0010754225,0.018977478,0.008391664,-0.02037609,-0.008526392,0.016693508,0.017296579,0.015474536,0.004067519,0.029563293,0.010271448,-0.00060146675,0.018502722,-0.019862838,0.010649971,0.025213486,0.026689084,0.0143325515,0.043831687,0.0041573383,-0.010258617,-0.0066786865,0.032745454,0.0055046235,0.02656077,-0.056406353,-0.01073979,-0.008295429,-0.0007706794,-0.045807708,-0.030641122,0.005138932,0.013703818,-0.022223795,0.028100526,0.0054885843,0.021826025,0.01710411,0.010572983,0.006960975,0.014165744,-0.008212026,-0.0055784034,-0.033053406,0.016180256,-0.01197801,-0.05409672,0.025880713,-0.056662977,0.000004254124,0.024071502,-0.0012422292,-0.011990841,0.0062616696,0.015564355,0.010688465,-0.0061814743,-0.0236609,-0.025341798,-0.049503118,0.021723375,-0.02077386,0.0051998803,-0.013280385,0.03205256,0.006024291,0.008141453,-0.015718332,-0.014640503,0.0154103795,-0.039058447,-0.0028437348,0.010746206,0.015987787,0.005645768,0.00459681,0.0062103444,-0.014191407,-0.013472855,-0.0016319797,0.027099686,-0.0072240164,-0.033053406,0.0280492,0.0077693462,-0.0061558117,0.0154103795,0.0066016987,0.013703818,0.062103447,0.014807309,0.0012791193,-0.026868721,0.0049592936,0.00006024692,0.013055838,0.0010986793,0.011054156,0.005575196,0.00506836,0.030795097,0.011528915,-0.012215388,-0.02327596,-0.023134816,-0.0071341973,0.020619884,0.0116764745,-0.015564355,0.06456705,0.027304986,-0.02018362,-0.031693287,0.02317331,0.026227158,0.013280385,0.00064036157,0.03200124,0.0116764745,0.0035574753,-0.01788682,-0.0099699125,-0.023827706,0.016821822,0.010059732,-0.017193928,0.042214945,0.0045711473,-0.018605372,-0.032078225,0.042394582,0.023481261,-0.012439936,-0.01831025,-0.038801823,-0.006075616,-0.028228838,-0.013626831,-0.009623468,0.019516394,-0.02237777,0.013152072,0.015641343,-0.015294898,0.002314444,-0.0067685056,0.0003871441,0.023699393,-0.0030249767,0.027766913,0.000100043966,-0.032668464,-0.021415424,0.008590549,-0.00043907072,-0.021646386,-0.073805586,0.025200654,0.0011981217,0.031334013,-0.012446351,-0.036235563,-0.046885535,0.008584133,0.027125347,-0.04585903,0.013883457,-0.0106628025,0.025932038,0.014948454,0.007839918,0.023686562,0.0068583246,0.03271979,-0.0034484093,0.02137693,0.0054340516,-0.01748905,0.039700013,0.007050794,0.0128762,0.015667006,0.012465599,0.042035308,-0.008192779,-0.014922791,0.028511127,-0.019901332,0.0016087231,0.027202336,0.012568249,0.021056147,0.026406795,-0.010322773,-0.0364152,-0.0037018273,-0.0039359983,0.0013777599,0.011984426,0.02237777,-0.022121144,0.03451617,-0.005822198,0.028921729,-0.0028148643,-0.0070957034,0.0437547,-0.00060106575,0.0004502981,-0.0051100613,0.011817618,-0.01848989,-0.052967567,0.015667006,-0.026612096,-0.00879585,-0.003778815,-0.01959338,-0.010483164,0.0015477744,-0.021402592,-0.016436882,0.01760453,0.020863678,0.029999556,0.014358214,-0.0006612124,-0.014691828,0.02099199,-0.014884297,-0.061333567,0.017245254,0.01848989,-0.0007706794,-0.026817396,0.036440864,-0.024713065,0.0037306978,0.020209283,-0.0024138866,0.012395026,0.012863369,0.023352949,-0.003923167,-0.0011484005,0.03708243,-0.002640038,0.014499358,-0.017373567,0.0028100526,-0.0076987743,-0.003968077,-0.018938985,-0.017643025,-0.02426397,-0.0040386487,-0.0056361444,0.013152072,-0.008135038,-0.001409838,0.011342861,0.0036665413,0.043318436,-0.011265873,0.02099199,-0.022198133,0.019015972,0.013767974,-0.027997876,-0.018348746,-0.039777,0.029717268,0.026689084,0.027433299,0.006329034,-0.020517234,-0.03839122,0.008519976,0.026714746,0.025534268,0.016937302,-0.015063935,0.0028421308,0.024328126,0.0791434,-0.015243573,-0.015089598,-0.008423742,0.044113975,0.0030426197,-0.0015421608,-0.012093491,0.014345382,-0.022506082,-0.01641122,-0.0008356378,0.012138401,-0.025021017,0.030461483,-0.042933498,0.00021933486,0.018258926,0.020748196,-0.01789965,0.007031547,0.00870603,0.020440245,0.034644485,-0.012606743,-0.02187735,0.007871997,-0.025790894,0.03241184,0.012446351,-0.00860338,-0.008519976,0.013870625,-0.018271757,-0.051350825,0.012350117,-0.026483783,0.003907128,0.028511127,0.020607052,-0.002548615,-0.013703818,0.01831025,-0.027920889,0.011695721,0.016962966,-0.022506082,-0.008263351,-0.030204857,-0.011323614,0.004882306,0.025303304,0.013973275,0.0027394805,-0.006781337,-0.023827706,0.020414583,0.0035157735,-0.0017017499,-0.00651188,-0.0133188795,-0.00850073,0.020260608,0.016962966,-0.007249679,0.028280163,-0.005854276,0.032591477,-0.011593071,0.012523339,-0.0017226008,0.0035703066,0.0007470217,-0.008622627,-0.0047090836,-0.0014154518,-0.008237689,-0.050888896,0.0038846731,0.0017947768,0.017052785,-0.001229398,0.019208442,-0.004195832,-0.008770187,0.02802354,0.009007566,-0.022852529,-0.009925003,0.009880094,-0.020953497,0.030666783,0.04319012,0.015590018,0.0042375335,0.009155125,-0.03341268,0.020055307,-0.022121144,-0.02355825,-0.018849166,0.03331003,0.022903854,0.002893456,-0.03551701,-0.0035670986,-0.020042475,0.009809522,0.029383656,-0.019259768,0.029204017,-0.02217247,0.023288792,-0.014435202,0.0021011238,-0.023891862,-0.0075255516,-0.0039712843,-0.026214326,-0.039238088,0.027202336,0.021364098,-0.006665855,-0.035953276,-0.021415424,-0.00046874306,0.031077385,-0.01938808,0.037133753,-0.027715588,-0.02684306,0.0011107086,-0.03887881,-0.015859475,-0.0025373877,0.009822353,0.003692204,-0.022441927,-0.029075705,-0.021633556,0.015897969,0.013575505,0.0015213098,0.024995353,0.028767753,0.0119331,0.02206982,0.027202336,0.01333171,0.0064798016,0.016385557,-0.036440864,0.029717268,-0.028511127,0.029563293,-0.02436662,0.010823193,0.019041635,-0.0131328255,-0.03171895,-0.016090438,0.0004683421,0.0011235399,-0.0036472944,0.0039327904,-0.042112295,0.023968851,-0.0071085347,0.0024459648,-0.0032976416,0.0215694,-0.017835494,-0.03310473,-0.014884297,0.04077784,-0.031539313,-0.003923167,0.019901332,-0.016937302,0.010932259,-0.0116764745,0.0021283904,0.00023096323,0.008725277,0.0065952833,-0.0159108,-0.008359586,-0.018040795,-0.026483783,0.025033848,-0.038827486,-0.023609575,-0.0028677934,-0.014114419,-0.052351665,-0.01829742,0.018335914,-0.0044524577,-0.007576877,-0.029563293,-0.035542674,-0.010579399,-0.029717268,0.0037563602,0.0036954116,0.016436882,-0.005398765,-0.009905756,-0.02576523,-0.01580815,0.010932259,-0.013498518,0.013575505,-0.009533648,0.0236609,0.017643025,0.019221272,-0.0065888674,0.011843281,0.021851687,-0.009578559,0.017283749,-0.0022262288,-0.031385336,0.023968851,0.042882174,-0.016282907,-0.012683731,0.016975798,-0.040931817,0.028228838,0.030974735,-0.00038393628,0.019619044,-0.012196141,0.0035767222,-0.043036148,0.017976638,-0.0052095037,0.00028710012,-0.011073404,-0.014563515,-0.031103048,0.03479846,-0.010059732,0.04034158,0.0050170347,0.0031356467,-0.030435821,0.011419849,-0.016141763,0.020927835,0.02049157,-0.00509723,-0.023891862,-0.036466528,0.0066401926,-0.01511526,-0.040161937,0.005154971,0.012908278,-0.0082569355,0.006024291,-0.017335074,0.03282244,-0.01739923,0.014563515,0.032848105,-0.007499889,-0.022903854,0.005113269,0.009251361,-0.004308106,0.011330029,-0.020401752,0.0042952746,0.009302686,-0.015269236,0.012593912,-0.009822353,-0.0010786303,-0.00517101,0.039238088,-0.01034202,-0.009700456,0.0074229017,-0.0143967075,-0.017835494,0.0017915689,-0.021017654,-0.010085395,0.0048341886,0.0011347672,0.0029736515,0.00293195,0.01710411,0.0060146675,0.029794257,-0.0016023074,0.009533648,0.004391509,-0.028690765,0.0175917,0.019850006,0.01333171,-0.003166121,0.0026143754,0.009815937,-0.015153754,0.021851687,0.009899341,-0.009058891,-0.030461483,-0.016834654,0.027997876,0.0006616134,-0.0021989625,-0.0016841069,0.019773018,0.011131144,0.014499358,0.030179195,0.003814101,-0.011689305,0.009931419,0.003993739,0.032591477,-0.009129463,0.056611653,0.034464847,0.02077386,0.03251449,0.021749036,-0.019850006,-0.015897969,-0.018284589,-0.040521216,-0.008025972,0.032155212,-0.002280762,0.059999112,-0.041008804,-0.017540375,-0.0048790984,0.005770873,-0.020247776,-0.010540905,0.012420689,0.0016408012,-0.030564133,0.008917747,0.034233883,-0.008757356,0.037929293,-0.0076410333,0.021287112,0.035363037,-0.017681519,-0.0027250452,-0.019657537,-0.060512364,-0.008269766,0.018040795,0.020607052,0.0025389916,0.06841644,-0.013601168,-0.022518914,0.01878501,0.00067644956,-0.006242423,-0.008468651,-0.0022887813,-0.017322242,-0.024315296,0.017784169,-0.0034067077,-0.021197291,-0.03331003,-0.021813193,0.013857794,0.028485464,-0.0010810362,-0.01451219,-0.0059248484,0.0064477236,-0.020850847,-0.022352109,0.004503783]},{"id":"guide-voice-2","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Join a Voice Channel\nGet the user's voice channel with getVoiceChannelId, then join. The connection resolves when ready.\n\n```javascript\nconst voiceManager = getVoiceManager(client);\nconst voiceChannelId = voiceManager.getVoiceChannelId(guildId, userId);\nif (!voiceChannelId) return; // User not in voice\n\nconst channel = client.channels.get(voiceChannelId);\nif (!(channel instanceof VoiceChannel)) return;\n\nconst connection = await voiceManager.join(channel);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.043258335,-0.004046234,0.014536891,-0.008575516,-0.02237931,0.021651898,-0.022322481,0.010882778,-0.031301484,0.016923714,-0.007245714,0.03841649,0.023299944,-0.0039751977,-0.01906049,-0.0038927954,-0.07696937,-0.004054758,0.004873098,0.0014576672,-0.032960895,0.078878835,-0.0018625747,0.07751493,-0.06010249,-0.008382297,-0.038643807,0.03330187,-0.027959932,-0.03534772,0.03277904,-0.009922366,0.0010342902,0.0031739068,-0.00452644,0.021958776,0.0034097477,-0.003691052,-0.06146639,0.013877673,0.0055806204,0.036643423,0.025914084,-0.008041322,0.031869777,0.025550377,-0.029346563,0.014320941,-0.020924486,-0.021106338,-0.016275862,0.015514352,-0.0052055484,0.063375846,-0.008069737,-0.020788096,0.01911732,-0.031824313,-0.050873436,0.0034751012,-0.023777308,-0.042712774,0.0023356772,0.038871124,0.043144677,0.0077458103,-0.023845503,0.0064330576,0.023504527,-0.0046713543,-0.0010449457,-0.012616067,-0.0014001277,0.0087687345,-0.049327686,0.044667695,-0.022674823,0.03068773,-0.004208197,-0.05355577,-0.03482489,-0.0024805914,-0.027118862,0.0054442305,-0.01601445,0.0166964,-0.041348875,0.0019904403,0.03398382,-0.0105986325,0.012354652,-0.020697169,-0.08260682,-0.041212484,0.04923676,0.023277212,0.030210365,0.007779908,0.0057028034,-0.025232134,0.051646315,-0.0155029865,-0.04400848,-0.010717974,0.06110268,-0.014230014,0.013332114,0.027755346,-0.08074283,0.01933327,-0.05023695,0.06392141,-0.0030545658,0.014889232,-0.012809286,-0.026505107,0.06023888,-0.053055674,0.0066774227,-0.021720093,-0.060193416,-0.011132826,0.047281835,-0.016946446,0.04471316,-0.010899827,0.009916683,-0.01835581,-0.046213448,0.011638606,0.037893664,0.01465055,0.048054714,0.015571182,-0.03096051,-0.019185515,0.0069047394,0.002499061,-0.026095936,-0.008819881,-0.015946254,-0.024163745,0.035711426,0.0008020011,0.014639184,0.02820998,-0.03932576,0.0123432875,-0.04182624,-0.016480448,-0.06769486,-0.015264304,-0.036916204,-0.016275862,-0.033915624,0.021640534,-0.028687345,0.019537855,-0.07646928,-0.06483067,-0.009575709,-0.031869777,0.065830864,-0.032119825,-0.026459644,-0.022072434,-0.005123146,0.0360524,-0.0038871125,0.042621847,-0.010411097,0.007944712,-0.053237528,-0.00056154287,0.03139241,-0.06701291,-0.007848103,-0.01644635,-0.010064439,-0.021879215,0.02875554,0.0017062946,0.0010591529,-0.03341553,-0.03180158,0.014366404,0.028732808,0.015559816,0.01810576,-0.03918937,-0.0065637645,0.012025044,0.013559431,0.04539511,0.0459634,0.016003083,0.04253092,-0.007558274,0.011064632,-0.061875556,-0.007421884,-0.044554036,-0.0052055484,-0.036166057,-0.035302255,-0.006200058,0.01921961,0.03498401,0.009308611,-0.0073536895,0.025641304,-0.021560973,0.006188692,-0.017241959,-0.08006088,-0.015207475,-0.009337026,-0.026391448,-0.04114429,-0.04005317,-0.035415914,-0.018276248,0.048100177,0.0069502024,-0.002551628,0.020935852,0.03959854,-0.057329226,0.05628357,0.00010531148,0.0056175594,-0.020208439,-0.033233676,-0.028028127,0.01609401,-0.018503565,0.028778272,0.058011174,0.027300714,-0.016560009,-0.032074362,-0.025618572,0.060284343,0.025118476,0.027027935,0.005370353,0.0055124257,-0.060511656,0.051646315,0.016957812,0.023049895,0.06373955,0.0037961858,0.026209595,0.027187055,0.023822771,-0.0028840783,0.025073012,0.027073398,-0.02709613,-0.012013678,0.006052302,-0.016128108,0.0021879214,-0.03843922,-0.024459258,0.01810576,-0.0075412258,-0.032278948,-0.015207475,-0.041098826,-0.045167793,0.052373726,-0.04430399,-0.025482181,-0.047691006,0.0229817,0.0102690235,0.024436526,-0.0023484637,-0.033233676,0.012684261,-0.05341938,0.0008083944,0.020401658,0.021549607,-0.047918323,-0.017798884,-0.031960703,0.056601815,-0.02366365,0.032983627,0.0007885042,-0.009666635,0.028960126,0.05960239,0.05764747,0.004336063,0.036893472,0.059284147,0.020594876,-0.0036058084,-0.015048354,-0.003597284,0.016128108,0.025232134,-0.015787132,-0.0025800425,0.02807359,-0.04400848,0.0261414,0.012456945,0.011990947,0.040985167,-0.010467926,0.007637835,0.019890195,0.027687153,-0.020310732,0.045486037,-0.014332307,0.001351823,0.025936814,-0.008035639,0.00448666,-0.019992488,-0.010462243,-0.071241,-0.004250819,0.010860046,0.04168985,-0.07151378,0.009842806,0.029323831,0.010212195,0.026186863,-0.016650936,0.010467926,-0.008655077,0.006472838,0.014343672,-0.0044298307,-0.031960703,0.025664035,0.004753757,0.0315288,-0.023015797,0.0048475247,-0.026527837,-0.022788482,-0.0117636295,-0.009888269,-0.022799848,-0.060375266,-0.0074843965,0.016184935,0.02243614,-0.031074168,0.0157644,-0.0067797154,-0.032574456,-0.043326527,-0.019105954,0.042985555,-0.04484955,0.006478521,-0.052919287,0.026527837,-0.028528223,-0.023913698,0.009086978,-0.03027856,-0.00046884033,0.032801773,-0.024300136,-0.00009669831,-0.010627047,0.02023117,-0.023413602,0.07724215,0.031551532,0.021310924,0.039962243,-0.047372762,-0.01375265,0.007637835,-0.012206897,0.007774225,-0.035938744,-0.017992102,0.030937778,-0.010865729,-0.002963639,0.017151032,-0.013275284,-0.009893952,0.046872668,0.00036974452,-0.0037933444,-0.014911964,0.047691006,0.045804277,-0.02153824,0.009229051,0.02586862,0.026846081,-0.03918937,-0.0014732952,-0.013775381,-0.019787904,0.04612252,-0.026118668,0.024527453,0.030301291,0.048236564,0.004699769,-0.010820267,-0.00066419045,0.050282415,0.034438454,-0.0136730885,-0.0030432,0.04003044,0.0006322241,0.009581392,0.015889425,0.025527645,0.037234444,0.06824042,-0.02905105,-0.071195535,-0.000990958,0.03150607,0.012195531,-0.03362011,-0.017310154,0.0027491092,-0.012354652,-0.017685225,0.011439703,-0.040257756,0.008461857,0.0009760403,0.009427953,0.05932961,0.04294009,0.009257466,-0.054828744,-0.039143905,0.010342902,-0.02752803,-0.0261414,0.038757466,0.027323445,-0.0064898864,-0.020401658,-0.029733,0.034029283,-0.0608299,-0.016264496,-0.054874208,-0.011485167,-0.000990958,0.05201002,-0.020799462,0.009439318,-0.002257537,0.00020813668,-0.052782897,0.010087171,0.021788288,-0.024254672,0.022277018,0.0059215953,-0.0032648335,0.0082686385,0.027323445,-0.021970142,-0.006472838,0.0150824515,0.019765172,0.019401465,-0.009621171,0.0315288,0.019560587,0.012070507,0.0545105,0.007115007,-0.04059873,-0.036802545,0.026095936,-0.0064898864,0.04996417,-0.009905318,0.039734926,0.015434791,-0.010149683,-0.004986756,0.03962127,-0.0021310924,-0.0030233096,0.01554845,0.02262936,0.035984203,0.031574264,0.057874788,-0.017082836,-0.024686575,-0.014014063,0.022538433,-0.0016551485,0.027187055,-0.034915816,-0.0021580863,-0.0020415864,0.003105712,0.010894144,-0.023731844,-0.002625506,0.013684454,-0.042167213,0.019981122,0.009007417,0.017026007,-0.004250819,0.008643711,0.009882586,0.023527259,0.017446542,0.0045917938,0.018662686,-0.011365826,-0.037757274,-0.017764786,-0.039416686,0.023754576,-0.009337026,-0.002389665,0.008160663,0.007319592,-0.05182817,0.042099018,-0.02530033,0.0010598633,0.00088724477,-0.016616838,0.0021694521,0.028869199,0.016480448,0.02292487,0.00088937586,-0.026050473,-0.020322097,-0.021094972,-0.00080697367,0.024800232,0.0010840157,-0.027823541,0.0021524034,-0.031142363,-0.011394241,-0.01685552,-0.00784242,-0.025186671,-0.03978039,-0.046827205,-0.010842998,-0.011053266,0.023822771,0.008757369,0.015036988,-0.0045406474,0.0110134855,0.0007309647,0.047145445,0.0044099404,-0.023481796,0.020958584,-0.009416587,0.0022404885,-0.0054811696,-0.028550955,0.025777694,0.006194375,0.0046543055,-0.02918744,-0.057192836,-0.052510116,0.010462243,0.01459372,0.00081691873,-0.0310969,-0.00031167225,0.0110419,0.003031834,-0.002688018,-0.0120932385,0.014957427,0.02739164,-0.01625313,-0.019083222,0.040803317,-0.0030034196,-0.015787132,-0.018151224,-0.017276056,0.018890003,-0.017173763,0.008615296,0.0019321904,0.0071491045,-0.012445579,-0.015264304,-0.043849356,0.010962339,0.01568484,-0.020515315,0.017332885,0.03866654,0.045895204,-0.0010911193,0.00010726498,-0.0021566655,0.027732616,0.040507805,0.027027935,-0.013025236,-0.018264882,0.00829137,-0.011865922,-0.018253516,0.0067797154,0.017332885,-0.011223753,-0.00481911,-0.055465233,-0.022265652,-0.00466283,0.004125795,0.0060011563,0.05328299,-0.033915624,0.024141014,-0.0013525333,0.0050435853,-0.0043985746,-0.016673667,-0.015446157,-0.024322867,-0.022868041,-0.036416106,-0.0016636727,0.013491236,-0.018094394,0.0067569837,-0.042849164,-0.034415722,0.0120932385,0.0040575997,-0.01301387,-0.03980312,0.013627625,0.010195146,0.011297631,-0.0082686385,-0.008513004,0.006131863,0.027778078,-0.02532306,0.0023598296,-0.039280295,0.018719515,-0.010842998,-0.029733,0.022163361,0.008490272,-0.020628974,-0.04168985,0.055328842,-0.01000761,0.019787904,0.028801003,-0.032597188,-0.020299366,0.013707186,0.00770603,0.016355423,-0.035302255,0.006467155,0.0043502697,-0.010314487,0.024754768,-0.0166964,-0.012650165,-0.03523406,0.0067569837,0.02505028,0.019503757,-0.0015116548,-0.06701291,-0.03464304,-0.015753035,0.0036853692,-0.046440765,0.0055039013,0.01375265,0.013775381,0.00204869,0.0070070317,-0.014411868,-0.055374306,0.03946215,-0.039553076,-0.024800232,0.013570796,-0.017014641,-0.04214448,-0.0423718,0.031324215,-0.01974244,-0.016605472,0.034165673,0.009513197,0.005401609,-0.0021865007,-0.015718937,-0.021333655,0.008922174,-0.01601445,0.013548065,-0.04059873,-0.0064273747,-0.0057624737,-0.010394048,-0.021901947,0.03509767,-0.02752803,0.009928049,-0.05528338,-0.06205741,0.010621364,0.019026393,-0.010109902,-0.0059215953,-0.006069351,-0.011382875,0.035711426,0.015866693,-0.025800426,0.011786361,-0.009689366,0.0058534006,-0.058829516,-0.013320748,0.017469274,-0.019185515,-0.013457138,-0.01416182,-0.014002698,-0.00526806,-0.0017276056,-0.019015027,0.009047197,0.047963787,-0.016741863,0.03746176,-0.0059784246,-0.023322675,0.034938548,0.012366018,-0.028414564,0.007450299,-0.008064054,0.026050473,-0.019390099,-0.033961087,-0.06824042,-0.013082066,0.009041514,-0.03866654,-0.008558467,-0.0032648335,-0.036166057,0.0021296716,0.00204869,-0.025004817,0.023038529,-0.016525911,-0.013513967,-0.02243614,-0.03498401,0.004941293,-0.048372954,0.024254672,-0.034415722,0.009757562,-0.005216914,-0.0847436,0.0005246039,-0.022697555,-0.012025044,-0.014957427,0.015071086,0.030801388,0.034233868,-0.008996051,-0.008586882,0.003304614,-0.006989983,0.016162204,-0.060738973,0.006927471,-0.000938391,-0.019867463,0.010791852,0.021504143,0.0037393568,-0.0013901826,0.002509006,-0.025277598,0.02573223,0.020901754,-0.011729533,0.012775188,-0.014730111,0.0261414,0.011610191,-0.04969139,0.019503757,0.021708727,0.030778658,-0.017992102,0.00040703863,-0.0018313187,-0.028687345,-0.026459644,-0.06273936,-0.0013475608,-0.025027549,-0.01726469,-0.016264496,0.01301387,0.00065460056,-0.0024663843,0.005484011,-0.023322675,0.019935658,-0.012320556,0.0211859,0.0062284726,0.0035688693,0.013241188,0.029369295,-0.029232904,0.05614718,-0.008734637,-0.016957812,0.044463113,0.009268831,0.013218456,-0.0015358073,-0.010075805,-0.0040860143,-0.00842776,-0.0020458486,0.0047935373,-0.0059159123,0.0022930554,0.0050208536,0.016662301,0.022458872,0.012547872,0.019162783,-0.012354652,0.027482567,-0.004981073,0.0066831056,-0.041507997,0.007126373,0.02112907,0.021345021,0.021629168,0.009194953,-0.02461838,-0.004981073,0.017344251,0.015843961,0.03577962,-0.019310538,-0.023038529,0.01410499,0.031051436,-0.033938356,-0.016378155,-0.020538047,0.0044582454,-0.052328262,0.03909844,0.0328927,-0.0068194955,-0.019401465,-0.0038018688,-0.017230593,0.0097689275,0.019026393,-0.00024294453,-0.035415914,-0.0020685804,0.018117126,-0.06369409,0.0039013198,-0.06787671,-0.0018185321,0.012161434,-0.010962339,-0.012286458,0.014400502,0.00032552436,0.014139088,0.030596804,-0.04071239,0.012195531,0.022595262,-0.0061148144,-0.007200251,-0.029937586,-0.0083538825,-0.002781786,-0.006410326,0.02407282,-0.0031284436,0.0009660952,-0.007831054,-0.013445772,0.016980544,-0.004898671,0.016139474,-0.021879215,0.018753612,-0.022970334,-0.01568484,-0.019685611,0.0071377386,0.008620979,-0.006285302,0.017435176,0.01873088,0.018696783,0.0036967348,0.029073782,0.011809093,-0.021606436,0.05241919,0.02380004,0.03261992,-0.00130707,-0.025754962,0.0069161053,0.009928049,0.015377963,0.035165865,-0.028437296,0.0072911773,0.0107634375,0.016264496,-0.0032847237,-0.002352726,-0.019924292,0.008723271,0.015980352,0.002682335,0.012672896,0.03250626,0.050282415,-0.013468504,-0.012820652,0.023981893,0.0180262,0.012047775,-0.018946832,0.000023308823,0.02682335,-0.003622857,-0.006972934,-0.000831126,0.008672126,-0.024322867,0.022151995,-0.016548643,0.04723637,-0.012138702,-0.032551724,-0.056601815,-0.013627625,0.003585918,0.015616645,0.008143614,0.00807542,-0.018333077,-0.004563379,0.011502216,0.00030403584,-0.01252514,-0.03893932,-0.0050492682,0.0010186621,-0.008979003,-0.0029238588,-0.0040490753,0.009138124,0.023095358,-0.0072343484,0.011922752,-0.000550177,-0.039553076,0.011473801,-0.01650318,0.0012623171,-0.018367175,-0.03359738,0.020947218,0.010604315,0.016832788,0.023209017,-0.03437026,-0.043121945,0.0130707,0.03216529,-0.02145868,-0.031983435,-0.023015797,-0.011615874,0.01718513,0.0026794935,0.032324407,-0.0013205669,0.040257756,0.019265074,0.026232326,0.0063648624,-0.033665575,0.037052594,-0.0021353546,0.01761703,0.011485167,0.002661024,0.041235216,-0.00914949,0.015184743,0.012422848,-0.008047005,-0.0008794308,0.009825757,-0.0046713543,0.016264496,0.03314275,-0.010212195,-0.009337026,-0.016048547,-0.026550569,-0.024641111,0.0031398095,0.039371222,-0.020162975,0.010735023,0.004358794,0.03096051,0.017401079,-0.00509189,0.03746176,-0.00883693,0.0016253131,-0.05682913,-0.0041485266,-0.019856097,-0.023413602,0.026186863,-0.046736278,-0.0022291227,-0.018151224,0.012127336,0.019708343,-0.004157051,-0.036643423,0.008132248,0.0129229445,-0.004699769,0.014548257,0.006165961,-0.03427933,-0.01190002,0.049327686,-0.031574264,-0.021345021,-0.0048049027,0.023686381,0.0065467157,-0.0069615683,0.020594876,-0.047554616,-0.0243456,0.040394146,0.010888461,0.0364843,-0.003529089,-0.00056935684,0.02132229,-0.010928242,0.033506457,0.052100945,0.023845503,-0.015843961,0.012718359,-0.008245907,-0.0106781935,0.0031113948,-0.016275862,-0.029619342,-0.03373377,0.000011832002,0.016866885,-0.011394241,-0.013570796,0.027300714,0.007581006,0.059147757,-0.038848393,0.0019293489,-0.028914662,0.025073012,-0.016162204,-0.02998305,-0.04696359,-0.042962823,0.051373534,0.012366018,-0.01053612,0.0069558853,-0.022106532,-0.01416182,0.023186285,0.017992102,0.03671162,0.035802353,-0.019696977,0.01004739,0.012854749,0.06460336,0.033938356,0.006063668,0.010484975,0.059147757,0.03136968,-0.01810576,0.002541683,-0.0000052833334,-0.027118862,0.0019748122,0.016685033,0.01045656,0.008814198,-0.010916876,-0.027346177,0.028119054,0.0056715473,0.024413794,0.008228858,-0.025982277,0.0044269892,0.0029863708,0.030164903,-0.025573108,-0.028141785,0.015809864,-0.026095936,0.05573801,0.011718167,0.005495377,-0.00019819158,0.007558274,-0.006643325,-0.047691006,0.02366365,-0.023731844,0.0032449432,0.007984493,0.016821422,0.010496341,-0.023436334,0.029551148,-0.017105568,0.0087801,0.0015713255,0.011326046,-0.012502409,-0.028664613,-0.00029195964,-0.025982277,0.013741284,0.044963207,-0.012672896,-0.009456367,-0.0010882778,0.010996437,-0.010746389,0.0027150116,-0.0019733915,-0.03264265,-0.0017915383,-0.009081295,0.021026779,-0.00784242,0.02380004,0.006063668,0.00057930197,-0.015673473,-0.00016391653,-0.010666828,-0.017787518,-0.0008687753,-0.02780081,-0.016241765,-0.015912157,0.0012594756,-0.04664535,0.0022958969,-0.0053362553,0.0067513008,-0.023277212,0.009075612,-0.0016679349,-0.021651898,0.045213256,-0.0056061936,0.012820652,-0.0005803675,0.013707186,-0.020253902,0.02044712,0.025982277,-0.0011017747,-0.011536313,0.0009966409,0.0026127193,0.0011990947,-0.024732037,-0.011956849,-0.017582932,0.016321326,0.04896398,-0.024891159,-0.010166732,-0.003554662,0.019515123,0.029914854,0.006336448,0.008257273,0.029619342,-0.008143614,0.03607513,-0.00955866,-0.0070865927,-0.010422463,-0.008058371,-0.017776152,-0.031983435,-0.020378927,0.019628782,0.026436912,-0.0069104224,0.012752457,-0.0051998654,0.010115585,0.037370834,-0.0019591842,0.0414398,-0.032006167,-0.030460414,-0.0013844997,0.0042849164,0.009166539,0.012161434,0.027846273,-0.001459088,-0.024141014,-0.032438066,-0.014923329,-0.012911579,0.013934502,-0.0059215953,-0.011695435,0.013866308,0.009007417,0.015116548,0.013513967,0.03082412,-0.024891159,0.010121268,-0.027869005,-0.014207282,-0.02682335,0.027368909,-0.0052566947,0.017969372,-0.0059954734,-0.031210558,-0.022606628,0.028005395,-0.0017091361,-0.008200443,-0.0062512043,0.0055351574,-0.033324603,-0.016753228,0.005597669,-0.009939414,0.014082259,-0.017173763,0.017901177,-0.04228087,-0.023345407,0.025391255,-0.040962435,-0.02229975,0.005819303,-0.038030054,0.015923522,-0.0410079,0.015116548,0.009314294,0.0047594397,-0.023277212,-0.01238875,0.005836352,-0.011934117,-0.029119246,0.0171283,-0.020162975,-0.0047992202,0.00752986,0.012672896,-0.0247775,-0.013729918,0.0063705454,0.012900213,-0.013320748,-0.025232134,-0.03755269,0.012400116,-0.02409555,0.0055181086,0.023277212,-0.022720287,0.00905288,0.03218802,-0.0075412258,-0.020049317,0.006541033,-0.004060441,0.033120017,0.016219033,-0.01527567,0.011416973,0.002918176,-0.046190716,-0.017469274,0.016105376,0.019435562,0.015730303,-0.016628204,-0.06646735,0.010161049,0.03746176,-0.02780081,-0.04723637,0.008177712,-0.030005781,-0.004083173,0.01153063,-0.0048162686,0.0036938936,-0.03362011,0.004537806,-0.027550763,-0.0088539785,-0.015025622,0.024186477,-0.016423618,0.006154595,-0.026345985,0.062693894,-0.015093816,0.028028127,-0.0005508874,-0.027755346,-0.01810576,-0.0065467157,-0.009047197,0.02889193,-0.0015230207,-0.007575323,-0.012195531,-0.001191991,-0.011280582,-0.009888269,-0.026777886,0.021924678,0.03273358,0.011695435,0.002541683,-0.023595454,0.068194956,-0.0071491045,-0.0038672222,0.026391448,0.020356195,-0.015775766,0.0077514932,0.012888847,-0.02627779,0.01804893,-0.018173955,-0.0013013871,0.017173763,-0.025141208,0.017855713,-0.032665383,-0.00752986,0.007302543,0.039644,0.010996437,-0.014661916,-0.018526297,-0.04525872,-0.039030246,0.029573878,0.010950973,-0.0029920537,0.0006695182,-0.0011017747,-0.0073423237,0.0005484011,0.036029667,0.023572722,0.032710847,0.028505491,-0.0047168178,-0.0042479774,-0.013104797,0.0046599885,0.010109902,0.0020898913,0.016219033,-0.013957234,0.0046202084,-0.008393662,0.016355423,0.024754768,-0.020037951,-0.012832018,-0.025936814,0.020208439,0.015730303,0.022447506,0.005407292,0.0076889815,0.0020927328,0.031028705,0.0039808806,0.014843768,-0.01995839,0.011053266,-0.006870642,0.017514737,-0.011422656,0.046690814,0.049191296,0.043008287,-0.007785591,-0.009308611,-0.008143614,0.00030971874,-0.017821616,-0.042030826,-0.02695974,-0.013604893,0.0064387405,0.035324987,-0.018401273,-0.0025544693,-0.01416182,-0.021822385,0.0008609613,-0.025254866,-0.0011387137,0.011274899,-0.03316548,0.024959354,0.02573223,-0.012718359,0.04307648,-0.010825949,0.015514352,0.019810636,-0.018173955,0.018742247,0.0072172997,-0.023345407,0.0052765845,0.0043389043,0.017310154,-0.0069558853,0.05664728,-0.016059913,-0.008575516,0.023140822,0.032551724,0.003006261,-0.0019563427,-0.01685552,0.004196831,-0.011246485,0.0076889815,0.0022561164,-0.0052709016,-0.02077673,-0.015934888,0.009570026,0.049327686,0.0029352244,-0.018776344,-0.0057482664,0.022242922,-0.0356205,-0.035847817,0.00028645433]},{"id":"guide-voice-3","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Play Audio\nPlay a WebM/Opus URL or stream. The voice package does not use FFmpeg—input must be WebM with Opus. Use yt-dlp or similar to get direct stream URLs from YouTube.\n\n```javascript\n// URL (fetched and demuxed automatically)\nawait connection.play('https://example.com/audio.webm');\n\n// Or a Node.js ReadableStream of Opus\nawait connection.play(opusStream);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.049950294,-0.006097018,-0.043101087,-0.030674666,-0.022443386,-0.007998896,-0.020633237,-0.024424763,0.008182357,0.0058585186,0.022834769,0.01108104,0.035053268,-0.030381128,0.0023513574,0.0027626157,-0.033683427,-0.002779433,0.02602699,0.00061382964,-0.029427132,0.002826827,-0.01982601,0.043296777,-0.023666458,-0.030014208,-0.030723589,0.064089015,0.0016006966,-0.031212818,0.014481182,-0.04165786,0.007986666,-0.008488125,-0.022455616,-0.048751682,0.0050849253,-0.027763752,-0.028179597,0.0034032,0.0049503874,-0.0068186307,0.0013163321,-0.017832402,0.023103846,0.04520477,-0.013698416,-0.03177543,0.015019334,-0.018713014,0.010652964,0.023323998,0.0045223115,0.020217394,0.013991953,0.040557094,-0.006482286,-0.010689656,-0.026320526,-0.044079546,-0.003895487,-0.02568453,-0.013086879,-0.030527897,0.027470216,0.0068186307,-0.020706622,0.0063599786,-0.014554567,-0.0032656044,0.023116076,-0.022749154,-0.0037334298,0.008946777,-0.044152927,0.049632296,-0.044128466,0.032631584,-0.02169731,-0.08987139,-0.008512586,0.027103294,-0.09173046,-0.015520794,-0.013527186,0.02974513,-0.0632084,0.029842976,0.0012788755,0.02336069,-0.0021816562,-0.030943742,-0.071916685,-0.03830664,-0.007937742,0.06756254,-0.014982642,0.01850509,0.05405982,0.032900658,0.05107552,-0.014823643,-0.022052003,-0.044788927,0.032704968,-0.012878956,0.04855599,0.018346092,-0.03275389,-0.006720785,-0.059343494,-0.00763809,0.02287146,0.03358558,0.060615487,0.004935099,0.052836746,-0.018920936,0.011380693,-0.04921645,-0.06839423,0.0007904108,-0.009466584,-0.016450329,0.052885666,-0.028252982,0.007087707,-0.01931232,-0.042293858,-0.015092718,0.053717356,0.017245326,0.038991563,-0.027690368,-0.0022183482,0.0052378094,-0.019887164,-0.008628779,-0.005308136,0.075536974,0.030258821,-0.0527389,0.031995583,0.033634502,0.028375288,0.011209462,-0.056163505,-0.01947132,-0.04266078,-0.001341558,-0.047773223,-0.027347907,-0.016731637,0.041511092,-0.035004344,-0.0023819343,-0.0021969446,0.04400616,-0.061300408,-0.016376944,0.008096742,0.03830664,0.028864518,-0.0010556647,0.0148114115,0.059049957,0.013588339,0.0133559555,-0.01779571,0.06814962,-0.0148114115,0.035395727,-0.031799894,-0.00990689,-0.027812677,-0.03730372,0.022382233,-0.036863413,-0.016401406,-0.0090752,0.000047465735,0.018908706,0.016805021,-0.015349564,-0.0067146695,-0.012744418,-0.0123346895,0.012671034,0.014738027,-0.008292434,-0.010096466,0.02334846,0.0028788077,0.04615877,-0.018321631,0.03341435,0.04615877,-0.04050817,0.043957237,-0.022602385,-0.0017749844,0.016597098,-0.026834218,-0.05640812,-0.040948477,-0.0058829803,0.012291882,0.0074485135,-0.004182909,0.034417268,0.029524978,0.027274523,0.044960156,-0.019593626,-0.09960705,-0.015728716,-0.014236568,-0.0058401725,-0.016107868,-0.016682712,-0.022333309,-0.007485206,0.005577212,0.017685633,0.0017703979,0.010549003,0.0073017445,-0.013453801,0.014004184,-0.006176518,0.017171942,-0.05239644,-0.021709543,0.015924407,0.0149581805,-0.016242407,0.025611145,0.023544151,0.0148114115,0.0007686248,-0.019887164,-0.03894264,0.043981697,0.0022137617,0.038844794,0.012585419,0.0045742923,-0.10958733,0.031824354,0.0057545574,0.025782375,0.044299696,0.007748166,-0.0029338459,0.029818514,-0.0066290544,-0.048286915,0.0632084,-0.03307189,-0.008500356,-0.003173874,-0.018737476,0.004045313,-0.02605145,-0.0366188,-0.04031248,0.000514455,0.011191117,0.023788767,0.008292434,-0.033169735,0.026785295,0.04667246,0.0013155676,-0.027616983,0.014248799,0.03008759,0.0066107083,0.0094054295,0.027152216,-0.031824354,-0.009546083,-0.07167207,-0.008011127,-0.0058982684,0.005464078,-0.004204313,-0.028766673,-0.035175573,0.012022805,-0.028375288,0.023067154,0.02485284,-0.0078154355,0.013637261,0.048971836,0.06585024,-0.028106213,0.015007104,0.0063905553,0.022577925,0.0063599786,0.03246035,0.023764305,0.011496885,0.059001032,0.016315792,-0.0389671,0.008818355,-0.008812239,0.028815595,0.02135485,0.014248799,0.046501227,-0.002510357,-0.0011764432,0.03307189,0.029255902,-0.020792238,-0.029451594,0.0136128,0.013013495,0.03343881,0.0099986205,0.028106213,0.016450329,-0.008928431,-0.009539968,-0.05425551,-0.025611145,-0.0024537898,0.006451709,0.02416792,0.0050054253,-0.0008339828,-0.002290204,-0.017832402,0.008457549,-0.024277994,0.013172494,-0.041951396,-0.0136494925,-0.015508563,0.029011287,-0.042905394,0.0206577,-0.0251953,-0.017526634,0.042758625,0.024008919,-0.008922316,-0.0065067476,-0.003742603,0.017196404,0.032631584,-0.038600177,0.01259765,-0.035248958,-0.0006088609,0.010047543,-0.04251401,-0.021599466,-0.023226153,0.04332124,-0.008280203,0.030992664,-0.029476054,0.007038784,-0.004026967,-0.024803916,0.025072992,0.011105501,0.011472423,-0.00063981995,-0.046060923,0.02318946,-0.01696402,0.007271168,-0.05087983,0.05361951,-0.02402115,0.037523873,0.019018782,-0.047944453,-0.033658963,-0.051809363,0.012114536,0.04097294,-0.002595972,-0.018541783,0.053130284,0.0022810309,-0.043272316,0.012903418,0.023434075,0.0059074415,0.025831297,0.032778352,0.0016939559,-0.041070785,0.050635215,0.04486231,-0.027470216,0.061447177,0.0055833273,0.018884243,0.037915256,0.019238936,-0.0143711055,-0.018688552,0.018590707,-0.027543599,0.040752787,-0.015141642,0.016707174,0.06995977,0.058218267,-0.037719566,0.034882035,0.027176678,-0.043443546,0.005133848,0.0037762374,0.03850233,0.019287858,0.03950525,0.018859783,-0.0064700553,0.056848425,0.019899394,-0.05136906,0.0023972227,0.02350746,0.03710803,-0.024571532,-0.04019017,-0.046476766,-0.024901763,-0.013404878,-0.021795157,-0.036056187,-0.008763317,-0.034294963,0.010127042,0.014774719,0.0062407292,0.003470469,-0.0067758234,0.0025302318,-0.03945633,-0.022321079,0.0028100098,-0.0033817964,-0.01250592,0.052885666,-0.009943582,0.056310274,-0.034001425,-0.012157343,-0.040801708,0.009595006,-0.029598363,0.0055435775,-0.0052622706,-0.024901763,-0.016266868,0.028179597,0.010255465,-0.01828494,0.005653654,0.050830904,0.00028073342,-0.042929854,-0.006904246,-0.03407481,-0.064040095,0.03642311,-0.024106765,-0.0046599074,-0.034197114,0.0065556704,0.019923856,-0.033707887,0.0111666545,-0.02568453,0.07132961,0.028644364,-0.0006826275,-0.015471871,-0.076906815,-0.020584315,-0.03074805,0.0088305855,-0.012120651,-0.000528979,0.002615847,-0.033634502,-0.0047852723,0.038257718,-0.0028910383,-0.011655884,-0.0183094,-0.035395727,0.02940267,0.04168232,-0.01711079,0.054157663,-0.047626454,-0.0248773,0.0032839505,0.021746235,-0.045694,-0.024754994,-0.008402511,-0.0024446168,0.015569717,0.030307744,0.03209343,0.014603489,0.016670482,-0.04065494,0.04031248,0.01711079,0.012377497,-0.024351379,0.019642549,0.026271604,-0.011961652,0.01730648,-0.022198772,0.022895923,0.0047180033,-0.022822538,-0.054842584,-0.024571532,0.016939558,0.012719957,-0.01696402,-0.01980155,-0.027103294,0.011215578,0.011356231,-0.049632296,-0.00041584476,0.016107868,-0.026100373,0.007491321,-0.014554567,-0.004724119,0.002777904,0.008286319,-0.017184174,-0.03292512,0.00082557416,0.027690368,0.04530262,0.009344276,-0.038159873,-0.03040559,-0.014261029,0.016095638,-0.051858287,-0.0035316227,0.0026968755,-0.014493412,-0.048776142,-0.0036997953,-0.0021403774,0.016731637,0.022357771,-0.0021266178,-0.033903576,0.005607789,0.02048647,-0.0059471917,-0.0076013976,-0.00016865028,0.005335655,-0.018064786,0.036814492,-0.014750258,0.005779019,0.006567901,-0.020376394,0.019385705,-0.00663517,0.0037762374,-0.02135485,0.007846012,0.0069287075,0.05459797,0.0010166792,-0.029671747,-0.009968043,0.0010785974,-0.007680897,-0.0050268294,-0.00036271752,0.011399038,-0.015606409,-0.017379865,0.02486507,0.02602699,0.04434862,0.015166103,0.018382784,0.01344157,0.0031203646,0.038013104,0.0058034803,-0.0251953,-0.0041248132,-0.035224497,-0.033830196,-0.0061489986,0.00080340594,-0.023495229,-0.016083408,0.026344988,0.007075476,-0.008867278,-0.02702991,-0.010481734,0.02654068,-0.008744971,-0.0032808927,-0.024595995,0.0045314846,0.005402924,0.0027809618,-0.021220313,0.0003764771,0.020780006,-0.0143833365,0.009876313,-0.07446067,-0.0019003494,-0.03238697,0.026344988,-0.04217155,0.02756806,0.007246706,0.05107552,0.038062025,0.00018040324,-0.012781111,0.0029078557,-0.027543599,-0.0076992433,-0.026075913,-0.02854652,0.045229234,0.019410165,0.027616983,0.005971653,-0.011136078,-0.02336069,0.0018865898,-0.017856862,0.019079937,-0.037499413,0.017196404,0.003375681,-0.004730234,-0.010194312,0.011918845,-0.0051399637,0.025415452,-0.0345885,0.004192082,-0.06604593,-0.019923856,0.03057682,-0.0029399612,0.049338758,-0.052641053,0.010237119,-0.015178334,0.008848932,0.033194195,0.006836977,-0.005537462,-0.04295432,-0.016340252,-0.01042058,0.00394441,-0.009179162,-0.023397382,-0.0012261305,0.012695496,-0.0104389265,-0.025415452,0.014322182,0.008616548,-0.0016266869,0.070302226,0.025929144,-0.025929144,0.0044978503,-0.069813,0.015630871,-0.02030301,-0.028840058,-0.03850233,-0.012230728,-0.013111341,0.007711474,-0.0161201,-0.0052194633,-0.019202244,-0.024290226,-0.001297986,-0.058952108,-0.010255465,-0.021257006,-0.0082435105,0.003424604,-0.039676484,0.018688552,-0.009760121,-0.005886038,0.038062025,-0.0020731085,-0.017489942,-0.022736924,-0.009283123,-0.044593234,0.019520242,-0.00790105,0.017722325,-0.02082893,-0.0008370405,-0.01730648,-0.0026968755,-0.03392804,0.0143833365,-0.021098007,0.00086608843,0.005393751,-0.045082465,0.022284387,-0.014028645,0.02553776,0.010781387,-0.0027763753,-0.022394463,0.02737237,-0.031163896,-0.041780166,0.002501184,-0.028301904,0.008329126,-0.03424604,-0.0035744302,0.0069103613,-0.041242015,0.004026967,0.006396671,0.01378403,0.006243787,-0.027494676,-0.0027427408,-0.003037807,0.028619904,-0.023323998,0.004910637,0.009417661,0.0074118213,0.04919199,-0.012878956,-0.04535154,-0.00390466,-0.016266868,0.0042868704,0.02266354,-0.0024996551,-0.03529788,-0.015924407,0.0057729036,-0.03647203,-0.005604731,0.014395567,0.00051980594,-0.028717749,0.019581396,0.009515506,0.009595006,-0.011087155,-0.022211002,-0.016193485,-0.0497546,-0.03378127,0.0017000712,-0.039676484,-0.018554015,0.011111616,-0.0005305078,-0.047626454,-0.015056026,-0.02923144,0.0009394728,-0.029084671,-0.013967492,0.019874932,0.040703863,0.010940386,-0.021807387,0.019752625,-0.0005702577,0.025806837,-0.02639391,0.015202795,-0.051124442,0.00403614,-0.020474238,0.03329204,-0.012401958,0.041535553,0.0028742212,-0.017049635,0.023776535,0.004479504,-0.004644619,0.025146376,0.040092327,0.0060603255,-0.021146929,-0.022847,0.058952108,0.01713525,0.011527461,0.011698691,-0.0060022296,-0.009215853,-0.015043795,-0.035200037,-0.010683541,0.007711474,-0.041951396,-0.014640181,-0.049094144,0.009619468,0.00074416335,-0.011368462,0.021159159,0.0055863853,-0.02972067,0.0094115455,-0.0025164722,0.00063981995,0.00039329435,0.010451158,0.018761937,-0.0019018783,0.026565142,-0.014897027,-0.014689105,0.00048273156,0.0031203646,0.018896475,-0.016584868,0.0057148077,0.012383612,0.0019431569,0.02553776,-0.02334846,-0.03243589,0.018774167,0.0074668596,0.03089482,0.011661999,0.010885348,-0.011123847,0.020535393,0.03808649,-0.004913695,-0.0024537898,0.014175414,-0.06629055,-0.02301823,-0.010224889,0.04916753,-0.016010024,0.004987079,0.0040514288,0.013514955,0.020070625,0.03424604,-0.047455225,0.0028971536,-0.021758465,-0.037230335,-0.03409927,-0.008457549,0.0037487182,0.036838952,-0.028742211,0.06164287,-0.00949716,-0.02805729,-0.040557094,0.045229234,0.0018254361,-0.020046163,-0.0011642125,0.003721199,-0.024131227,0.02285923,-0.01965478,-0.040043402,0.031359587,-0.04672138,0.021905234,0.026638526,0.013722877,-0.065409936,0.018358324,0.0022963192,0.014738027,-0.010175966,-0.034857575,-0.046354458,-0.013735108,-0.0436637,-0.034392808,-0.019887164,0.012732188,0.008414741,0.014738027,0.0013621973,-0.022076463,0.021183621,0.009802928,-0.024608225,0.031653125,0.0011886739,-0.005317309,0.0035255074,0.010035313,0.008622663,0.007460744,-0.028326366,0.0028008367,-0.010029197,0.03862464,0.01662156,0.04447093,0.03710803,-0.015068257,-0.004250178,-0.023874382,0.02585576,0.031017127,-0.0028100098,0.008053934,0.03209343,-0.014897027,0.020572085,-0.0025439914,0.02135485,-0.010848655,0.023385152,-0.0181504,0.0026984045,0.0023299537,-0.0086777015,0.02382546,-0.02805729,0.032876197,0.0339525,-0.0048800604,0.024999607,0.015068257,0.029109133,-0.026491757,-0.012793342,0.017905787,0.02906021,0.005097156,-0.00040437846,0.035836034,0.04515585,-0.0065373243,-0.0000326312,-0.009221969,-0.026834218,-0.009943582,0.023813227,-0.002586799,0.056652732,-0.038453408,-0.014016414,-0.05058629,-0.00062032725,-0.0072956295,-0.014261029,0.021966388,-0.025757913,-0.012573188,0.0028864518,0.025733452,-0.028130675,0.0032900658,-0.04938768,-0.00012918707,0.016853943,-0.024118995,-0.020082856,-0.0023895786,-0.012224613,0.02048647,-0.018431706,0.022565693,-0.044617698,-0.021416005,-0.010457273,-0.0027809618,0.016022254,-0.009209738,-0.04050817,0.028595442,0.025831297,-0.00002966907,0.024485918,-0.035518035,0.00026964935,0.022027541,0.026296066,-0.024644917,0.0071305144,0.018003631,0.021305928,0.016266868,-0.013196955,0.015435179,0.02183185,0.020535393,0.01545964,0.0060358644,0.03913833,-0.015643101,0.042049244,-0.012304112,0.022455616,0.017722325,0.024241302,0.01731871,-0.015814332,0.006280479,0.025660068,-0.018395016,0.018272707,0.019434627,-0.0003543089,0.025904682,0.004568177,0.01545964,-0.014848104,-0.02383769,-0.016499253,-0.0038893716,0.00014380661,0.0480423,-0.054206587,0.010310504,0.016743867,0.051320136,-0.01664602,0.008879509,0.035811573,0.00965616,0.0044000046,0.010359427,0.02974513,-0.038698025,-0.013906338,0.023213921,-0.01697625,-0.004604869,-0.022076463,0.001225366,-0.011717037,0.008280203,-0.04889845,0.0017780421,0.025415452,0.025733452,-0.007986666,0.022333309,-0.042611856,-0.0017719268,0.030381128,-0.023152769,-0.00026964935,-0.012891187,0.017624479,-0.002510357,-0.00865324,0.02805729,-0.007992781,0.013086879,0.016401406,0.0026984045,0.04434862,0.010928156,-0.020890083,0.009136354,-0.0097050825,0.033022966,0.014297721,0.011717037,0.005396809,0.00050872186,-0.018248247,-0.006210152,-0.010775272,-0.0017489941,0.012695496,-0.032778352,-0.029965283,0.016682712,-0.005286732,-0.020339701,0.01578987,-0.03309635,0.06677978,-0.03089482,-0.013343724,-0.020890083,0.024767224,0.0070571303,-0.02265131,-0.019740395,-0.050097063,0.039872173,-0.013869646,-0.017489942,-0.030772513,-0.011344001,0.021587236,0.006032807,-0.0060114027,0.033683427,0.01914109,-0.020095086,0.03338989,0.00965616,0.04486231,0.023874382,0.046329997,-0.012866726,0.01344157,0.032778352,-0.00990689,0.010983194,0.013417109,0.005604731,0.0010923569,0.016315792,0.005931903,0.002443088,-0.010524541,-0.032044508,-0.024118995,0.0015617111,0.026296066,0.00048311375,-0.021195851,-0.023397382,0.012585419,0.035909418,-0.015263949,-0.02501184,0.0021816562,-0.004604869,0.011215578,0.009160816,0.003935237,0.010481734,-0.0070999376,0.028277444,-0.042905394,0.027763752,-0.016058946,0.015655331,-0.005531347,0.016780559,-0.019520242,-0.001768869,0.0032227968,0.0038587947,0.044984616,0.00066237035,0.009374853,-0.012866726,-0.0061704023,-0.011533577,0.0017902728,0.04434862,0.036080647,0.00323197,-0.011392923,0.011710922,0.012658804,-0.011918845,-0.012163459,0.011203347,-0.024290226,-0.0039474675,0.0007082356,0.019728165,0.01646256,0.02369092,0.020694392,0.030845895,-0.00403614,0.0013316205,-0.010493965,0.012989033,-0.0057729036,0.004614042,-0.026907602,-0.004335793,0.004152332,-0.024767224,0.021623928,0.011344001,-0.030258821,0.0015196679,0.011668115,0.020951238,-0.005497712,0.035346806,-0.004146217,-0.05171152,-0.01932455,0.019862702,-0.005913557,0.041926935,0.029842976,0.02333623,-0.016328022,0.011863806,0.009338161,0.026002528,-0.017771248,-0.0077787433,-0.0015120237,-0.022149848,0.012432535,0.031212818,0.028473135,-0.010090351,0.007020438,-0.0069959764,-0.013172494,0.03275389,-0.0005557337,-0.019581396,0.046012,-0.031799894,-0.018737476,-0.030699128,-0.011191117,0.034490652,-0.043125547,-0.032998506,0.00201807,0.02183185,0.037181415,-0.0029965283,-0.022211002,0.03627634,0.049681216,0.0010885348,0.0094054295,0.015178334,-0.007931627,-0.031041589,0.0030836724,0.0040544863,0.014212106,0.03930956,0.0072283605,-0.012377497,-0.040679403,-0.048996296,0.019251166,0.016951788,-0.0009096604,0.0251953,0.027176678,-0.020621007,0.008280203,0.01444449,0.026124835,0.010964848,-0.034686346,-0.021073544,0.004069775,-0.019385705,0.027103294,0.010493965,-0.029647285,-0.037597258,-0.04921645,-0.029916361,-0.000095887,-0.0022718578,-0.01015762,0.048947375,-0.014456721,-0.0027534426,-0.0363008,-0.00070747116,0.016450329,-0.013991953,-0.024583764,-0.0050176564,-0.05812042,-0.0005106329,0.017184174,-0.051956132,-0.0015257833,0.006616824,-0.04165786,0.011136078,-0.010096466,-0.0030072303,0.011937191,-0.010714117,0.011447961,0.024926225,0.011686461,-0.010010851,-0.010237119,-0.00067612994,0.0032258546,-0.01763671,-0.03380573,-0.002077695,0.017697863,0.009258661,0.010934271,0.011490769,-0.01378403,-0.011973883,-0.011515231,-0.0013132744,-0.031359587,0.03123728,0.030796973,-0.0031463548,0.017930247,0.02923144,-0.025268685,-0.013343724,0.022492308,-0.02888898,0.018761937,0.03965202,0.01948355,0.039725404,0.004189024,-0.029647285,-0.025806837,0.039970018,0.022920385,0.0005377698,-0.012145113,-0.044128466,0.013135802,0.019202244,-0.012102306,-0.020694392,0.018590707,-0.0045742923,0.006118422,-0.0021036852,-0.002808481,-0.00021346443,-0.0066107083,-0.018174862,0.0041767936,-0.0062927096,0.0041339863,0.0017826286,-0.024791686,0.00009254266,-0.012487574,0.048776142,-0.021807387,0.0126221115,0.004589581,0.0000622525,-0.0159611,0.0027717887,-0.00973566,0.010542887,0.017612249,-0.007693128,-0.032827273,0.029842976,0.018346092,-0.030650204,-0.0070448993,0.03177543,0.022284387,0.008744971,-0.0015533025,-0.011068809,0.044544313,-0.003559142,-0.0029002114,0.021978619,0.009215853,0.03380573,0.010536772,-0.037572797,0.0029002114,0.008604317,-0.0067330156,0.00790105,0.070253305,-0.04263632,0.0016113984,-0.02468161,0.0183094,-0.0025363471,0.011301192,0.03615403,-0.0027289812,-0.019275628,-0.025660068,-0.012719957,-0.013233648,-0.014028645,-0.0148114115,0.0073200907,-0.028424213,-0.04170678,0.0012291882,-0.009595006,0.020926775,0.0036814492,0.010377773,-0.011215578,-0.04349247,-0.010377773,0.016597098,0.011967767,0.01344157,0.029794054,-0.017734556,0.026956525,-0.014554567,-0.006989861,0.0325582,-0.010811964,-0.028130675,0.004690484,0.018761937,0.01664602,0.008524817,0.0015135526,-0.0043419083,-0.00027385366,-0.0018881187,0.019104397,0.007937742,-0.014591259,-0.0024553186,-0.021220313,-0.019887164,0.010396119,0.04180463,0.018676322,-0.0024690782,0.033218656,0.03312081,0.042391703,-0.00014409327,-0.0064700553,-0.033732347,0.0050910404,-0.008763317,-0.0019584454,0.04400616,-0.04491123,-0.0024996551,-0.020254085,0.014848104,0.0058065383,-0.01593664,0.014138722,0.0075524747,-0.022100925,0.01849286,0.023128306,-0.007986666,0.010616272,-0.018920936,-0.013025725,0.02031524,-0.02351969,-0.0073628984,0.015410718,-0.008353587,0.012249074,-0.016169023,0.028424213,-0.0059869415,0.04019017,-0.0036264108,0.00046706092,0.008579856,0.01850509,-0.02404561,0.019862702,0.0011160539,-0.02906021,-0.009289238,0.01763671,-0.015166103,0.003819045,0.018174862,0.011178886,-0.024131227,0.037523873,-0.0034184884,-0.002808481,0.007338437,0.0056628273,-0.009680621,-0.010536772,0.0018529553]},{"id":"guide-voice-4","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Getting Stream URLs from YouTube\nUse youtube-dl-exec or yt-dlp to extract a WebM/Opus URL.\n\n```javascript\nimport youtubedl from 'youtube-dl-exec';\n\nconst result = await youtubedl(videoUrl, {\n getUrl: true,\n f: 'bestaudio[ext=webm][acodec=opus]/bestaudio[ext=webm]/bestaudio',\n}, { timeout: 15000 });\n\nconst streamUrl = String(result ?? '').trim();\nawait connection.play(streamUrl);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.020217894,-0.004348312,-0.059868407,-0.028012037,-0.042217307,0.018178523,-0.020757038,-0.017744863,0.009177166,0.0028187847,0.0452412,-0.010659811,0.01763938,-0.041068695,-0.013806771,0.0047204387,0.0019163047,0.008432913,0.011509549,0.014134944,0.0010694973,-0.00451826,-0.015517966,0.050070055,-0.0008621906,-0.04071708,-0.036544576,0.021870486,-0.006247036,-0.0023148023,0.010987986,-0.02127274,0.0056287786,0.0050515435,-0.012376867,-0.02352308,0.036755543,-0.031575076,-0.02105005,0.002985802,0.035841346,-0.006493167,-0.0070323106,-0.016830664,0.03457553,0.044678614,-0.041701604,-0.0057752854,0.04369409,-0.028668387,-0.0050984253,0.040881168,-0.02557417,0.024378678,-0.004477238,0.009024799,0.0029096187,-0.003029754,-0.009769051,-0.05292986,-0.012517514,-0.053258035,0.009393996,-0.023593403,0.017733144,0.019831117,-0.050351344,0.011550571,0.0045211897,-0.0050954954,0.017955834,-0.024566205,0.04191257,-0.012564396,-0.027238484,0.035231877,-0.034763057,0.047655627,-0.040435787,-0.060665403,-0.011714658,0.01946778,-0.06558802,0.0077296817,-0.020030364,0.046999276,-0.05724301,0.000011869313,0.008755227,0.010384379,0.0022561997,-0.029395059,-0.045147434,-0.017627658,-0.011796702,0.0842002,-0.019034121,0.014592045,0.012833967,0.0016394075,0.040084172,-0.02218694,-0.024238031,-0.029301295,0.02421459,-0.025832022,0.049929406,0.017627658,-0.03872459,-0.0069795684,-0.048335418,0.012400308,0.02693375,0.032067336,0.086356774,0.007055752,0.04212354,0.002124344,-0.0096401265,-0.01857702,-0.073042266,0.00520977,-0.006247036,-0.00021921031,0.044444203,0.008520816,0.014345914,-0.040177938,-0.068307176,-0.038138565,0.051804688,0.0016145014,0.03410671,-0.031997014,-0.0043834737,-0.017123677,-0.025245996,-0.021554032,0.031153137,0.10464078,0.032254867,-0.04950747,0.024238031,0.022690922,0.015998507,-0.0026708131,-0.053679973,-0.0041519934,-0.053258035,0.034481764,-0.035630375,-0.0013507897,-0.033169065,0.034294236,-0.037740067,-0.017369809,0.013232465,0.03122346,-0.030051408,-0.025644494,-0.0042252466,0.033591006,0.033192508,0.046671104,-0.008116459,0.044327,0.02669934,-0.013291067,-0.007975812,0.054430086,-0.015119468,0.023698887,-0.019842837,-0.017041633,-0.036568016,-0.01740497,-0.016924428,-0.027332248,-0.012998055,-0.0064169834,-0.0010189526,-0.000021529584,-0.0035190855,-0.04960123,-0.0075187124,0.0009779307,0.027894832,0.016994752,0.0042662686,0.00032469496,-0.015236674,0.020745317,-0.020885963,0.014697529,-0.042615805,0.03980288,0.04003729,-0.03120002,0.07224527,-0.0007889374,0.010190991,0.021600915,-0.015166351,-0.047139924,-0.05930582,0.012822247,-0.0029989874,0.017100235,-0.014756132,0.022339307,0.023675447,0.021589193,0.03689619,0.012740203,-0.035184994,0.010009322,-0.006938547,0.018260567,0.0009522921,-0.01605711,-0.024261473,-0.015893022,0.023335552,0.012048692,-0.016912708,0.007817586,0.025972668,-0.028316772,0.026207078,0.0013749633,0.018178523,-0.016021948,-0.030918727,-0.0030414744,0.032020457,-0.021636076,0.03328627,0.024355236,0.014216988,-0.016021948,-0.011960789,-0.032536156,0.019866278,0.008116459,0.064040914,-0.006282198,-0.007313603,-0.1129858,0.005089635,0.027472895,0.027191602,0.023288669,0.01199595,-0.033192508,0.04254548,-0.018588742,-0.068072766,0.012353426,-0.0262774,-0.007975812,0.004283849,-0.0086790435,-0.01334967,-0.030473348,-0.020698436,-0.00451826,-0.02960603,0.013068378,0.046202283,-0.006206014,-0.016959589,-0.023065979,0.038748033,-0.009347113,-0.03595855,0.015775817,0.037013397,0.020030364,0.010372658,0.01199009,-0.008684904,-0.00055159687,-0.067135125,0.0070967735,-0.0015339227,-0.01561173,-0.0077003804,-0.021577474,-0.028410535,0.017252602,-0.00723742,0.0127284825,0.029676352,-0.055789664,-0.0029110836,0.032395512,0.054430086,-0.0059862547,0.006293918,0.037599422,-0.0054031587,-0.013830211,0.01740497,0.015682053,-0.015541407,0.046694543,-0.0006091007,-0.01334967,-0.028363654,-0.024308354,0.04186569,0.023663726,-0.002081857,0.046507016,0.021190697,0.0011244372,0.022362748,0.017322926,-0.026113315,-0.024988145,0.017252602,-0.0043951944,0.020546068,0.011116912,-0.00073399744,0.017463572,-0.0027513916,-0.04024826,-0.020100689,-0.012060413,0.0045329104,0.008995498,0.01605711,-0.01130444,-0.013877094,-0.004348312,-0.013162142,0.00093983905,-0.009552222,0.019268531,-0.058790118,-0.020616392,-0.013173862,-0.0055643157,-0.023230067,0.023851255,0.009528781,-0.034481764,0.016361844,0.021237578,-0.035395965,-0.03886524,-0.017264323,-0.0077238213,0.035677258,-0.0084797945,0.0032319329,-0.028855916,0.0185653,-0.001110519,-0.02215178,0.004324871,-0.020311657,0.047679067,-0.0021155535,0.01447484,-0.023206625,0.0035571773,0.010935243,-0.027613541,0.03785727,-0.014017739,0.022667482,0.038091682,-0.027308807,-0.0077765635,-0.020850802,0.021096932,-0.028621504,0.07201086,-0.005523294,0.055977196,-0.002329453,-0.06465038,-0.036966514,-0.01991316,0.011908046,0.030871844,0.011251697,-0.020757038,0.048288535,-0.01063051,0.0005168016,-0.0101206675,0.025081908,0.0066572544,0.028598065,0.022011133,-0.01358408,-0.03436456,0.059399586,0.036052313,-0.0064638657,0.028387094,0.029066885,0.047233686,0.029934203,0.043342475,-0.018893475,-0.029137207,0.033450358,-0.023687167,0.059633996,-0.017123677,0.035583492,0.033825416,0.042170424,0.015306996,0.045194317,0.026746223,-0.019526383,0.006469726,-0.016889267,0.03956847,0.0037447056,0.030918727,0.03218454,-0.027308807,0.054852024,0.0011991555,-0.038162008,0.006967848,0.037013397,0.019327134,-0.030942168,-0.01356064,-0.02195253,0.00655763,0.0045094695,-0.006967848,-0.036075756,0.0024847498,-0.030637434,0.0398732,0.00027982736,0.031176578,0.0125292335,-0.016584532,0.008749367,-0.030871844,0.00087537616,-0.0061415513,-0.0029565007,0.021565754,0.058227535,-0.039123088,-0.0004395194,-0.04960123,-0.019584985,-0.018635623,-0.0004395194,-0.029770115,0.010917663,0.0038501902,-0.0018445165,-0.0325596,0.013220744,-0.02440212,-0.051945336,-0.02378093,0.068072766,0.004113902,-0.06436908,0.013068378,-0.021507151,-0.040435787,0.019303693,-0.05161716,-0.016139153,-0.008573559,0.004594443,-0.015529687,-0.070182465,0.023616843,-0.020569509,0.061696805,0.043530002,-0.0061708526,-0.004365893,-0.06300951,-0.008907594,-0.005995045,0.023616843,-0.010577767,-0.02106177,0.017990995,-0.06357209,0.0004732159,0.035161555,0.000060891754,0.0067744595,-0.052367274,-0.022913612,0.038091682,0.080590285,-0.031832926,0.019784234,-0.054383203,-0.03305186,0.018459816,0.0024774245,-0.030754639,-0.017944112,0.009517061,0.003533736,0.022315865,0.005675661,-0.00092958356,0.001074625,0.026863428,-0.050632637,0.026300842,0.030660875,0.00860286,-0.039216854,0.03933406,0.03933406,-0.025503848,0.013337949,0.0056053377,0.012763645,-0.0041109715,-0.022995656,-0.03288777,-0.007213979,-0.0051277266,0.014615486,-0.01924509,-0.042217307,-0.023687167,-0.015049146,-0.0016145014,-0.054195676,0.0076827994,0.006909245,-0.040412348,0.022772966,-0.007946511,0.013080098,0.008526677,0.0120838545,-0.026511813,-0.038513623,0.0036538716,0.008626301,0.042850215,0.011732238,-0.034153588,-0.027285365,-0.013935696,0.003964465,-0.053351797,0.0102437325,0.0030209636,-0.0035923389,-0.030989049,0.000019698253,0.01969047,0.029254412,0.02465997,-0.0028817824,-0.04500679,0.017264323,0.0035220156,0.010448841,0.0024349375,0.014533442,0.0034897842,-0.025152232,0.028387094,-0.025175672,-0.015764097,0.011251697,0.0019368156,0.032254867,-0.017428411,-0.012763645,-0.02148371,0.0010848804,0.009915559,0.052789215,-0.010249593,-0.03480994,0.003961535,-0.02215178,-0.007354625,0.041771926,-0.014357635,0.00062265253,-0.039966967,0.0069326865,0.02468341,0.045991313,0.03668522,0.025925785,0.015471084,0.0037447056,0.0035894087,-0.003507365,0.001971977,-0.037669744,-0.015002263,-0.011591592,-0.053539325,0.026793104,0.024284914,-0.05588343,-0.018237125,0.040131055,0.0144513985,-0.025199113,-0.018518418,-0.011491968,0.044491086,0.006288058,-0.022409631,-0.021554032,-0.0009947789,-0.037411895,-0.0048728054,-0.018705947,-0.0055731065,0.013783329,-0.00006881226,0.026418047,-0.04390506,-0.016994752,-0.025456965,0.014697529,-0.035231877,0.0142521495,0.0040582293,0.041326545,0.02871527,-0.012048692,-0.039005883,-0.015424201,-0.013314509,-0.024378678,-0.012236221,-0.018436374,0.0398732,0.021823604,0.030051408,-0.0039380942,-0.0049138274,-0.010929383,0.0020012786,-0.03300498,-0.006270477,-0.05527396,0.033169065,-0.021108653,0.003486854,-0.036802426,0.013877094,0.022093177,0.025691375,-0.060946696,-0.011392344,-0.038068242,-0.021389944,0.02378093,-0.013150421,0.025175672,-0.062306274,-0.0072550005,-0.020921124,0.0036773125,0.025785139,0.00004198326,0.01718228,-0.04866359,-0.014885058,-0.007788284,-0.0018928637,-0.022327587,-0.03185637,-0.0064111236,0.036497694,-0.015482805,-0.021448549,0.009095122,0.010208571,0.008432913,0.05503955,0.03863083,-0.0072550005,0.006856503,-0.049413703,-0.0024598436,-0.022351028,-0.06047787,-0.013455154,-0.020405421,0.015400761,0.00040325907,-0.02374577,0.023417596,-0.023194905,-0.016596254,-0.0079172095,-0.05044511,-0.027238484,-0.03682587,-0.0021829465,0.00018606322,-0.039685674,0.021530591,-0.01967875,0.008995498,0.038044803,-0.05400815,-0.0037505657,-0.022444792,0.0046178843,-0.045967873,0.0059364424,-0.021378225,-0.006135691,-0.025081908,-0.002263525,-0.029277854,-0.025738258,-0.033637885,0.01740497,-0.016232917,-0.012353426,0.009100982,-0.048382297,0.026816545,-0.006088809,-0.006288058,0.027261924,0.010302335,-0.029207531,0.022550277,-0.024238031,-0.031340666,0.015072586,-0.029816998,0.006739298,-0.037669744,-0.006440425,0.008386031,-0.06193122,0.011245837,-0.02510535,0.004122692,0.014099783,-0.037505656,-0.004773181,0.019924881,0.03141099,-0.015764097,-0.005971604,-0.01041954,-0.017569056,0.058837,-0.0059628137,-0.06038411,0.003598199,0.0003602228,0.008327428,0.023909857,-0.0038619107,-0.05292986,0.0015954556,-0.0008805039,-0.031809486,0.006200154,0.005678591,-0.0034516926,-0.018717667,0.01608055,-0.0023016168,0.0075948955,0.012294823,-0.023265228,-0.0006303441,-0.008966196,-0.010126527,-0.0023191974,-0.0371306,0.01109933,-0.018729389,-0.013326229,-0.071588926,-0.04003729,-0.023569962,0.00046515805,-0.010290615,-0.005590687,0.0042633386,0.036310166,-0.01899896,-0.012693321,0.01652593,0.013302788,0.022667482,-0.038419858,0.022140058,-0.030754639,0.03300498,-0.02308942,0.008221943,-0.033098742,0.008180922,-0.0039175833,-0.037880715,0.031340666,0.0006545177,-0.0063056387,0.0162798,0.015377319,0.009657707,-0.047444656,-0.025738258,0.056867953,0.019831117,0.008040275,-0.014134944,-0.0040875305,-0.02037026,-0.0058397483,-0.027097838,-0.015682053,0.00905996,-0.024050502,-0.013267626,-0.06319703,0.00903652,-0.003144029,-0.016537651,-0.0036216401,0.008257105,-0.015435922,0.0020540208,-0.0017756585,-0.03687275,-0.0136895655,-0.012986334,0.015400761,-0.012740203,0.0083567295,-0.020393701,-0.016854106,0.009933139,0.011427505,0.022233823,-0.027801068,-0.010900082,0.014580324,-0.008298127,0.027074397,0.016209476,0.005561386,0.016397005,0.006809621,0.027894832,0.014345914,0.013724727,-0.018612182,0.0017917742,0.033825416,-0.0052361414,0.019725632,-0.013455154,-0.038818356,-0.014744411,0.0065927915,0.03464585,-0.03187981,-0.029371617,0.027894832,0.0013075703,0.04950747,0.032137662,-0.042850215,-0.00972803,-0.025456965,-0.053445563,-0.025902344,0.0038501902,-0.01697131,0.010314056,-0.017967554,0.060196582,-0.0030854263,-0.021577474,-0.015482805,0.033380035,0.018131642,-0.009645986,0.0032963958,0.0064814463,-0.034974027,0.0053709275,0.0043512424,-0.029981084,0.021659518,-0.034458324,0.006762739,0.019737352,0.0052127005,-0.01945606,0.017662821,0.0027220903,0.017475292,-0.009628406,-0.029254412,-0.027308807,-0.009751471,-0.025035027,-0.019268531,-0.050023172,0.014592045,-0.005324045,0.021811884,0.012259662,-0.0049900105,0.019995203,0.0143693555,-0.032231424,0.021975972,-0.0033286272,0.006047787,0.015963346,0.011931487,-0.0007918675,0.03169228,-0.028598065,0.01651421,-0.006270477,0.035888225,0.0073429043,0.037013397,0.066431895,-0.0065634903,-0.019303693,-0.01562345,0.006991289,0.0070205904,-0.003932234,0.006206014,0.040154494,-0.041373428,0.0072315596,0.023124581,0.013220744,-0.004843504,0.03755254,0.013279347,0.005019312,0.008667323,-0.017240882,0.036286723,-0.047421217,0.026605576,0.021659518,-0.011503688,0.042217307,-0.00028403942,0.027074397,0.0025389572,-0.006651394,0.033567563,0.028433977,0.012705041,-0.013666124,0.024027063,0.03574758,-0.00057870056,-0.0137716085,0.004658906,-0.01220106,-0.0020979727,-0.01538904,0.010360938,0.060899813,-0.035583492,0.0019793024,-0.027308807,-0.013396552,-0.011790841,-0.02327695,0.009183026,0.013419993,-0.007331184,-0.003029754,0.033403475,-0.02082736,0.0052888836,-0.04111558,0.021143815,0.0055291546,-0.016314961,-0.023230067,0.000063684536,-0.005476412,0.028387094,-0.031668838,0.008186782,-0.0334738,-0.027847951,-0.023862975,-0.023827814,0.017135397,-0.010530885,-0.014181827,0.018178523,0.0050310325,-0.006727577,0.028035479,-0.053070504,-0.0016086411,0.010196851,0.022081455,-0.014638927,0.014580324,0.030098291,0.014744411,-0.015939904,-0.008790389,0.026136756,0.018354332,0.022667482,-0.0019793024,0.0015910603,0.024894381,-0.040318582,0.049788762,0.021929089,0.016408725,0.00062558264,0.034012944,0.027332248,-0.015939904,0.017287765,0.00792307,0.010155829,-0.0035923389,0.022034574,-0.012576116,0.0044596572,0.024777176,0.002058416,-0.002852481,-0.025738258,-0.014674089,-0.007887908,0.01290429,0.041303106,-0.05292986,0.0053972984,0.002078927,0.054430086,-0.006727577,-0.012283103,0.018272288,0.032207984,0.00039410242,0.0057313335,0.0066162325,-0.022573717,0.004817133,0.021647796,-0.026066432,0.010308196,-0.015975066,-0.00074242154,-0.0049665696,-0.017498733,-0.04903865,0.0032202124,0.003920513,-0.012177618,-0.009558083,0.024120826,-0.035395965,0.005476412,0.0047438797,-0.029582588,0.0028554113,-0.02852774,0.007788284,0.01538904,-0.041982897,0.0144513985,-0.006651394,-0.0167369,0.0144513985,-0.0026649528,0.02327695,0.00016481978,-0.0062235952,-0.00007165082,-0.0017243812,0.018823152,0.019549824,0.01470925,-0.010478143,-0.0014540767,0.017545616,-0.0032817451,-0.017264323,-0.0072432803,-0.0007398577,-0.031786043,-0.027285365,0.016490769,0.022561997,-0.03434112,0.026605576,-0.019596705,0.054055028,-0.019737352,0.005271303,-0.017955834,0.00905996,-0.017662821,-0.021636076,-0.016232917,-0.02129618,0.043154947,-0.00095522223,-0.017358087,-0.012036972,-0.018190244,0.00927679,0.0015251325,-0.00087830634,0.034927145,0.017369809,-0.0132090235,0.026839986,0.013830211,0.03931062,0.004324871,0.07051063,-0.016021948,0.027426012,0.02735569,-0.002514051,0.013490316,0.0026063502,0.0011456807,0.017018192,0.009218187,0.0062353155,0.013021495,0.0039293035,-0.04435044,-0.01584614,0.023159744,0.026746223,0.014322473,0.0007460842,-0.00089222443,0.013572359,0.052414156,-0.009458458,-0.022280704,-0.013337949,0.012154177,0.017615939,-0.014814734,-0.001719986,0.011650195,-0.0077765635,0.009692868,-0.03729469,0.031129695,-0.008667323,0.017826907,-0.016561093,0.010999707,0.009757332,-0.011702937,0.00407288,-0.003258304,0.032137662,0.022292426,0.030496787,0.0121658975,-0.021190697,-0.009991742,0.0033462078,0.040623315,0.03687275,-0.019198209,-0.003533736,0.0075187124,0.008333288,-0.03366133,-0.002172691,0.004321941,-0.030215496,0.010835619,-0.022761246,0.02102661,0.018248847,0.005072054,0.016807223,0.014345914,0.0075421534,-0.0048962464,0.016197756,0.027074397,-0.010501584,0.0075714546,-0.0538675,0.005813377,0.016959589,-0.021624357,-0.0015075516,-0.012294823,-0.03919341,0.005707892,0.020452304,-0.015025704,-0.015342158,0.031317223,-0.01517807,-0.055320844,-0.01176154,0.022784688,-0.008315708,0.005707892,0.033778533,0.035888225,-0.014838176,-0.00032341306,0.004843504,0.007864468,0.0024364027,-0.007213979,-0.005971604,0.014638927,0.027191602,0.034552086,0.010589488,-0.019209929,-0.015306996,0.0007947976,-0.02693375,0.015435922,0.03691963,0.019960042,0.03373165,-0.02552729,-0.03799792,-0.0029037583,-0.019924881,0.012271382,-0.03007485,-0.0338723,0.019631868,0.023019098,0.036263283,-0.0055350144,-0.0046471856,-0.0003944687,0.033637885,-0.006815481,0.035091233,0.0004743147,-0.013853652,-0.01899896,0.022245543,-0.014674089,0.014427958,0.029395059,-0.014205268,-0.0316454,-0.051242106,-0.037904155,0.014779573,0.0119256275,-0.018436374,0.008415332,0.025550729,-0.0053504165,-0.028269889,-0.0032260725,0.030215496,0.013630962,-0.044913024,-0.014603766,-0.019374017,-0.00791135,0.043037742,-0.0010350683,-0.026300842,-0.0257617,-0.047139924,-0.029301295,0.029934203,-0.010571907,0.012423749,0.029629469,0.010378519,-0.029770115,-0.060196582,0.009341253,0.03443488,0.004166644,-0.04212354,0.004638395,-0.03185637,0.030426465,0.00746597,-0.035606932,-0.01538904,-0.032676805,-0.04662422,-0.001649663,-0.02194081,0.014205268,-0.0077414024,-0.030801522,0.021706399,0.039732557,0.016139153,-0.017721424,0.012036972,0.008972056,0.011509549,-0.0064990274,-0.025081908,0.0029901972,0.027449453,0.00029978887,0.0022796406,0.046436694,0.006422844,0.013255906,0.008098878,0.011322021,-0.047304012,0.040295143,0.025456965,-0.033426918,0.013666124,0.011351322,-0.022925334,-0.0008614581,0.003325697,-0.02421459,0.018178523,0.04435044,0.012869129,0.012775364,-0.035677258,-0.04095149,-0.019139607,0.041982897,0.0008731786,-0.0039498145,0.0066631143,-0.035817903,0.002241549,0.021401666,0.011972509,-0.028738711,0.01018513,-0.016725179,-0.013220744,-0.0034897842,0.0009347113,-0.01809648,0.00049006415,0.003639221,-0.00860286,-0.0015544337,0.009517061,0.001381556,-0.00950534,0.020850802,-0.0032319329,0.048991766,-0.01768626,0.030848403,0.020968007,0.0045387708,-0.012247941,0.009446737,-0.016549371,0.011239977,0.0111637935,-0.01741669,-0.03305186,0.025175672,0.01402946,-0.013666124,-0.01018513,0.03755254,0.008427053,0.029699793,-0.00036992886,-0.039474703,0.029090326,0.017041633,-0.0064111236,0.020921124,0.00679204,0.026675899,-0.0058954204,-0.052742332,-0.0014775178,-0.018823152,0.0070088697,-0.0026166057,0.04048267,-0.03537252,-0.010308196,-0.015330438,0.029301295,0.015002263,0.0011383554,0.038419858,-0.027027514,-0.038583945,-0.068072766,-0.029746674,-0.029277854,0.00062704773,0.008567698,0.0065048877,-0.023183184,-0.023464477,-0.0016218267,-0.024495883,0.021167256,-0.0076593584,0.004392264,0.0035015047,-0.043740973,-0.014908499,0.0018533069,0.023171464,-0.0049226177,0.008421192,0.0016716389,0.016596254,-0.012962893,-0.005901281,0.01697131,-0.022362748,-0.012095574,0.016959589,0.03300498,0.019819396,0.0070909136,0.00498415,-0.0077707036,-0.013841932,0.007131935,-0.0018796781,0.022081455,0.0033989502,0.011146213,-0.014826455,-0.028598065,0.005543805,0.038091682,0.020686714,-0.017065074,0.0141701065,-0.0012431075,0.027004074,0.017029913,0.002940385,-0.0027030446,-0.022351028,-0.02106177,-0.008784528,0.026675899,-0.053586207,0.0023719398,-0.035606932,-0.010542606,0.004869875,0.009235769,0.014732691,0.021307902,-0.0321611,0.039755996,0.019362295,0.010771156,-0.017041633,-0.0077238213,-0.006311499,0.0096811475,-0.011978369,0.016854106,0.02219866,-0.016385283,0.03218454,-0.039287176,0.051195223,0.0004937268,0.042334512,0.0060126255,-0.024425559,0.013068378,0.01901068,-0.017393248,0.026793104,-0.017569056,-0.012107295,-0.0017463572,0.0014321008,0.0038736311,0.008362589,0.024542764,0.004664766,-0.008186782,0.03785727,-0.005502783,-0.0049870806,-0.006358381,-0.006047787,-0.008221943,-0.023288669,0.0073253238]},{"id":"guide-voice-5","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Volume Control\nLiveKitRtcConnection supports setVolume(0-200) and getVolume(). 100 = normal, 50 = half, 200 = double. Affects current and future playback.\n\n```javascript\nimport { LiveKitRtcConnection } from '@fluxerjs/voice';\n\nif (connection instanceof LiveKitRtcConnection) {\n connection.setVolume(80); // 80% volume\n console.log('Current volume:', connection.getVolume());\n}\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.034728464,-0.030164296,-0.018307664,-0.013985729,-0.03067426,0.0011976156,0.002095628,0.016165819,0.0056956466,-0.020067034,-0.016038328,0.008937097,-0.021851905,0.022081386,0.021545926,0.018906869,-0.044443253,0.022642346,-0.0052271183,-0.000024327814,-0.008395262,-0.02027102,0.0023203306,0.035544403,0.00066972454,-0.020181775,0.018154673,0.03735477,0.01089408,-0.046508603,0.021507679,-0.03449898,0.015439122,-0.082256995,-0.031133225,-0.028812895,0.028685404,-0.0011274958,-0.032382634,-0.017287737,0.0068908716,-0.025013672,-0.017682958,0.03585038,0.049670372,-0.00011763008,-0.009147457,0.0039394624,-0.031974666,0.0013976167,-0.023063065,0.007196849,-0.033912525,-0.004484485,0.04574366,0.025268653,0.0042135674,-0.030368282,0.01560486,-0.002905194,0.0015681355,-0.04342333,0.008497254,-0.017134748,0.0010143478,0.030699758,-0.028736401,-0.0075219506,0.015413624,-0.0032430443,0.0024653513,0.01410047,-0.060838558,0.01615307,-0.027741974,0.024592953,-0.018932367,-0.0081721535,-0.004965762,-0.033173077,-0.012717196,-0.04531019,-0.06308239,-0.0063267252,-0.0014645492,0.00021135565,-0.046049636,-0.034447983,0.02232362,-0.0028781022,-0.017963437,-0.04875244,-0.03052127,0.02547264,0.012908432,-0.007706812,0.046483103,-0.011308424,0.034575474,0.011391293,0.060736563,0.02245111,-0.0013625567,-0.031235218,0.030215293,0.017568218,-0.0047426536,0.008235899,-0.034320492,-0.011506035,-0.030776251,0.0014055849,0.011308424,0.00037251186,0.010964199,-0.037533257,0.037023295,-0.04954288,-0.029220866,-0.04077152,-0.0698649,-0.04217392,0.02669655,-0.029246364,0.052781146,-0.030087803,-0.0107347155,-0.0024589766,-0.052730147,0.007681314,0.032331638,0.0034549977,0.04161296,-0.018001685,-0.0075601977,-0.0056733354,-0.0014095689,0.030470274,-0.013437519,0.02602085,0.005985688,-0.02656906,0.02845592,-0.013794492,0.0033083833,0.03449898,-0.037431266,0.014954657,-0.044545244,0.022055889,-0.048981924,0.018562645,-0.04571816,-0.01752997,-0.015834343,0.032102156,0.02506467,0.035442412,-0.081900015,-0.015018403,0.0070566097,0.014087721,0.043040857,-0.042403404,-0.031235218,0.03243363,-0.0051506236,0.022565851,-0.042148422,0.028583413,-0.02998581,0.006502025,0.0025290966,-0.06955892,-0.002135469,-0.037048794,0.0052749272,0.012545084,-0.044698235,0.0328416,0.012538709,0.00084223534,-0.04217392,-0.0021322817,0.000030752148,0.024860684,-0.03998108,0.035110936,0.01438095,-0.06216446,0.021647919,-0.018588142,-0.0012956241,0.06950792,-0.008376138,0.019659065,0.024707695,0.0066358903,-0.021035964,-0.035671894,-0.00041553995,0.02176266,0.013424769,-0.099442735,-0.0492624,-0.058645718,0.0020844727,0.034830455,0.03120972,0.001778495,0.022553103,0.048726942,-0.004745841,-0.016688531,-0.070680834,0.052934133,0.00019382569,-0.0122837275,-0.018307664,0.017835947,-0.02013078,-0.035697393,0.03516193,0.0054916614,-0.011359421,-0.00038605774,0.023649523,-0.005797639,0.025549134,-0.034116507,0.016790524,-0.004293249,-0.04148547,0.0009705229,-0.004851021,-0.028251937,0.007738685,-0.004200818,0.011212806,-0.007566572,-0.013437519,-0.02121445,0.02177541,0.011914005,0.020576997,0.023585778,0.0037131663,-0.048573952,0.0070566097,0.011263803,0.009102835,0.021622421,0.027971458,0.005988875,0.013679751,-0.017504472,-0.041434474,0.04120499,-0.012800065,-0.022425612,-0.008586498,-0.047605023,-0.048624948,-0.026071846,-0.0055075977,-0.034269497,-0.024197733,0.034243997,-0.00746458,-0.0104606105,-0.046483103,-0.023369042,0.01819292,0.017593715,-0.02301207,0.0068398756,0.03748226,0.011302049,-0.006033497,0.039955582,-0.03409101,0.008650243,-0.039955582,-0.01740248,0.027588984,0.0034422486,-0.01615307,-0.00009038891,0.0225786,-0.023980998,0.050792288,0.01171002,0.038272705,-0.03888466,0.03505994,0.07297567,0.044264767,-0.033173077,0.011168184,-0.021596922,0.020347513,-0.00318408,0.0152988825,-0.0010844676,0.01410047,0.073179655,0.016765025,0.017415227,0.0112829255,-0.011142686,0.04984886,0.086030714,0.020882975,0.00475859,-0.0072478456,-0.018919619,0.013641504,0.01724949,0.027385,-0.016726779,0.0029673458,-0.025447141,0.025931606,0.0042613763,0.066499144,-0.010046266,-0.0060048113,-0.02464395,-0.008235899,-0.036054365,0.00944706,0.0060207476,-0.012519586,0.025804115,0.013463017,-0.009357817,-0.027461493,-0.006903621,-0.075066514,-0.012857436,0.031107727,0.04186794,-0.05035882,0.0051219384,0.022680594,-0.0003079697,0.0015840718,-0.04133248,0.033632044,0.0054438524,-0.033912525,0.014890912,-0.008886101,-0.015031152,0.007266969,-0.042505395,0.04778351,-0.043627314,-0.035926875,0.014852665,-0.07266969,-0.011850259,0.0055554067,0.00787255,-0.01505665,0.025039172,-0.047528528,-0.024835186,0.00016404466,-0.052934133,0.055636935,-0.026722047,0.020768233,0.010976948,-0.017568218,-0.04286237,0.011690896,-0.00065817067,-0.017083753,0.034702964,0.005692459,0.008994468,0.0042996234,-0.0051346873,0.0003280893,-0.01225823,0.016357055,0.044953216,-0.020997716,0.014903662,0.024006497,-0.0019952292,-0.031311713,0.017338734,0.053699076,-0.009185704,0.032051157,0.04235241,0.015005654,-0.027028026,0.032790605,0.007547449,-0.045947645,0.06823301,0.015923588,-0.010607225,-0.017351482,0.04077152,0.041434474,0.003770537,0.056197897,-0.02039851,0.023267051,-0.03108223,0.04602414,0.0006625532,0.029475847,-0.020589747,0.02353478,0.0067123845,-0.05477,0.005389669,-0.0016278967,-0.014444695,0.050333325,0.05997162,-0.018371409,0.03248463,0.033453558,-0.036895804,-0.007745059,0.00626298,0.026441569,0.01116181,0.015184141,0.008006415,-0.036309347,-0.009886903,0.017198494,-0.032102156,-0.0071012313,0.017236741,-0.027869465,-0.034728464,0.01547737,0.029220866,-0.007266969,-0.024172233,0.003470934,0.018511647,-0.049491886,0.034269497,-0.02232362,0.053954057,-0.012443091,-0.019059857,0.057370808,0.0099124005,-0.017682958,0.0006004014,-0.047834504,0.012417593,0.0025338775,-0.0219029,-0.023432788,0.018549895,0.035544403,0.0035824883,-0.06787604,-0.012984927,0.011467787,-0.0058390736,0.039369125,-0.012615204,0.005536283,-0.010925952,0.037711747,-0.01656104,-0.0037864733,-0.025765868,0.005593654,0.04120499,-0.041561965,0.026722047,0.08103308,0.07593346,0.03161769,0.0073434636,-0.052271184,-0.0629804,-0.015286134,-0.02792046,0.018511647,-0.013896485,0.06032859,0.011442289,-0.027767472,0.029934814,0.038680676,-0.0369468,0.04235241,-0.016688531,-0.0029769077,0.06007361,0.03531492,0.036054365,0.06517324,-0.03942012,-0.037737243,0.01956982,-0.03080175,-0.05107277,-0.028430423,-0.058951695,-0.024388969,0.013667001,0.0055044102,-0.0016446299,0.020194525,-0.0059091933,-0.04367831,0.004854208,0.0054215416,0.027716475,-0.0034518105,-0.003974522,0.022884578,0.0071012313,0.005431103,-0.014278957,0.014814418,0.001813555,-0.031541195,-0.021673417,-0.024809688,0.04092451,0.054820996,0.009000842,0.01012276,0.013730747,-0.0052558035,0.025944354,-0.0040255184,0.016624786,-0.019480577,0.0105498545,0.024274226,-0.01259608,0.005023133,0.010097262,0.024465462,-0.0058677588,-0.020322016,0.0035952374,0.014737924,-0.00066295156,0.038859162,-0.010492483,-0.004666159,0.0064446544,0.021826405,-0.024682198,0.015005654,-0.028022453,0.00013037915,-0.052143693,-0.000808769,-0.008752236,0.011442289,0.019748308,0.0054789125,0.004627912,0.019314839,0.02368777,0.0035633647,-0.033147577,-0.0010557823,-0.0011832729,0.03926713,0.012780941,-0.004615163,-0.013361024,0.023840759,-0.0037737244,-0.030164296,-0.009612798,-0.0078980485,-0.017886944,-0.004739466,0.0019792928,0.021061461,0.026645554,-0.01983755,0.017670209,-0.011059817,0.016446298,-0.004283687,-0.008541876,0.012162612,-0.015464621,-0.027537988,0.026773045,-0.012506836,0.027614484,-0.003792848,0.0072605945,-0.019773806,-0.015783347,0.013896485,0.0232798,0.0067187594,-0.02367502,-0.028965885,-0.031439204,-0.044468753,-0.042122923,-0.0029163496,0.024031995,0.026543561,0.010148259,-0.05232218,-0.014546688,-0.029322859,-0.0026741172,0.03365754,0.039955582,-0.007891674,-0.0019139539,0.03409101,-0.025153913,0.01532438,0.024286976,0.011933128,-0.022744339,0.009631922,-0.06496926,0.007075733,0.00045418556,0.022833582,-0.054413024,0.06537723,-0.0054820995,0.02848142,-0.011525158,0.006498838,-0.0035761138,-0.0342185,-0.01834591,0.0021386563,-0.007120355,0.014444695,-0.022425612,-0.015413624,0.00015019996,-0.0022629597,-0.007694063,-0.037864733,-0.012302851,0.017899692,0.0033338815,-0.027945958,0.023458287,-0.0038661552,-0.0040828893,-0.013794492,0.013909234,0.005593654,0.012321975,-0.0027059899,-0.018320411,-0.031541195,0.026875038,-0.0022868642,-0.0191746,0.03200016,0.020921221,0.0020908474,-0.015706852,0.010562603,0.013399271,0.0012502056,0.014623182,-0.05691184,-0.008937097,-0.01424071,0.014329953,0.010103637,-0.00007146451,0.008089284,-0.018027183,-0.034600973,0.041995432,0.00010348658,0.020576997,-0.037176285,0.041179493,0.03449898,-0.0049880734,0.039496616,-0.04158746,0.009408813,0.00081315154,-0.017440725,-0.016331557,-0.037660748,0.030776251,0.03954761,-0.022820832,0.026620055,-0.020704487,-0.0102757495,0.011563405,-0.027130019,0.0063713472,0.013220784,0.033504553,-0.045259193,-0.036895804,0.041026503,0.0013123573,-0.021061461,0.027283007,-0.0013609631,-0.004749028,-0.0042295037,0.019353086,-0.019340338,-0.0029721267,-0.010231128,0.043856796,0.033632044,0.017466225,0.0019346712,-0.0016231159,-0.024835186,0.023738766,-0.055636935,-0.01601283,-0.015464621,-0.024682198,0.0012263011,-0.0042295037,0.005590467,0.03903765,-0.0137434965,-0.020729985,0.034320492,-0.015043901,-0.0725677,-0.04640661,-0.01740248,0.009217577,-0.0013577758,-0.007515576,0.020589747,-0.018537145,-0.018090928,-0.032331638,0.005988875,0.0023681396,-0.020589747,-0.0328671,-0.0026470255,0.0382982,0.0084462585,0.013463017,-0.025255905,-0.02779297,0.03358105,-0.0014772983,-0.025855111,-0.02437622,0.0035378665,0.007158602,0.019761056,-0.020054284,-0.041434474,-0.0107347155,0.018460652,-0.035340417,-0.010039892,-0.012978552,-0.004321934,-0.043295838,0.01670128,-0.034116507,0.039624106,-0.00875861,-0.011608027,-0.0031522072,-0.028991383,-0.0107283415,-0.020156277,-0.029322859,-0.0058996314,0.032051157,0.009778536,-0.07037486,-0.015184141,-0.02955234,-0.045488678,0.005772141,0.0050645676,-0.007470954,0.023853507,0.009670169,-0.0232798,0.011333922,0.0015498087,0.025039172,-0.02178816,-0.03684481,-0.03998108,-0.012972177,0.011378543,0.05655487,-0.0040733274,-0.012940304,0.022948323,-0.0024605703,0.028277434,0.00465341,0.021928398,0.008726737,0.009019966,0.038655177,0.027334003,-0.009918775,0.036666322,0.022604099,-0.008184902,-0.0044048033,-0.013055046,-0.010339495,-0.037278276,-0.033071086,-0.048854433,-0.0050071967,-0.03064876,0.01012276,0.022400115,0.036462337,-0.010957825,-0.040210564,0.040746022,0.0012621578,0.000007544859,0.028302932,0.020079784,-0.0037036045,-0.03641134,0.03939462,0.059512652,-0.007955419,0.026747547,-0.0057083955,0.0029641585,0.034167506,0.031821676,0.022132384,-0.012678949,0.010830333,-0.022119634,-0.02517941,0.011015195,-0.0066040177,0.002852604,0.01012276,0.019518824,0.03806872,0.026773045,-0.0047171554,0.009702042,0.009166581,0.0032701362,0.012060619,0.0033785033,-0.0026374636,-0.000095418814,-0.0301133,-0.0070311115,0.032408133,0.009121959,0.011455039,0.0191491,-0.0018454277,0.010747465,0.02682404,-0.018218419,0.027639981,0.003101211,0.0019123603,-0.021839155,0.0051569985,-0.0027761096,-0.012857436,-0.02792046,-0.00261834,-0.0009673356,0.020984966,-0.015464621,-0.0035984246,0.024809688,0.012474963,0.017198494,0.059053686,-0.042275913,-0.010110011,-0.019531574,0.012787316,0.05120026,-0.023483785,0.03161769,0.032382634,0.013768994,-0.024898931,-0.00082231493,-0.0071076057,0.04268388,-0.017682958,-0.02232362,-0.04064403,-0.0064446544,-0.01698176,-0.008484505,0.0007266969,0.019225596,0.012889309,0.010588102,0.054922987,-0.0091793295,-0.0031713308,0.017542718,0.011888507,0.04390779,0.029042378,0.00937694,-0.018524397,0.04719705,0.020436756,0.025906108,-0.028991383,-0.0020462256,0.033479054,-0.02053875,0.031592194,0.008924348,0.025153913,0.006610392,0.008465381,0.04487672,0.035263926,0.04158746,0.0018087741,0.017568218,0.020041537,-0.010639098,0.019416831,0.044723734,0.02259135,-0.012200858,0.0017450288,-0.008102033,-0.01903436,0.0057562045,0.013055046,0.01197775,0.0063139764,0.0072605945,0.0017227179,-0.040567536,-0.007292467,0.020322016,0.053189114,-0.023980998,-0.000852594,-0.028226439,0.025510887,0.022833582,-0.0068717482,-0.014189714,0.037686247,-0.021877402,0.0021402498,0.020079784,-0.024656698,0.009160206,-0.0062470436,0.0056032157,0.04671259,-0.0019123603,-0.03641134,-0.06461228,-0.02135469,0.0044876724,-0.027155517,0.05038432,0.0076749395,0.005297238,-0.0045163576,0.026849538,-0.007190475,0.02451646,-0.04737554,0.0044430504,0.043142848,0.014954657,-0.025217658,0.002992844,0.0017274988,0.036513332,0.01795069,-0.01587259,0.005418354,-0.026645554,-0.008790483,-0.02942485,0.018282164,-0.03625835,-0.016382553,-0.012538709,0.023649523,0.0038980278,0.03052127,-0.027639981,0.001996823,0.028506918,0.0003318742,-0.0038565933,0.011703645,-0.026186587,0.032663114,-0.0034549977,-0.010071765,-0.015834343,0.009459809,0.021826405,0.009600049,-0.004019144,-0.015630359,0.014011227,-0.008286894,0.035620898,-0.0015545896,0.01183751,-0.023203306,0.05035882,0.0076876883,-0.012978552,0.052271184,0.0027681415,0.022820832,-0.0007972152,-0.020526001,0.019008862,0.02914437,-0.0067570065,-0.041842442,-0.020768233,-0.019786555,-0.033071086,-0.0052653654,0.011894881,-0.039114144,0.046330117,0.03518743,-0.004188069,-0.029220866,-0.004200818,0.019225596,0.012666199,0.010492483,0.0031139601,0.031974666,-0.022527605,-0.045692664,0.0369468,-0.03296909,-0.000088446664,-0.038629677,-0.012494087,-0.022106886,0.008293269,-0.05107277,0.00369723,0.014635931,0.022935575,-0.0046502226,0.008650243,-0.0157451,-0.003423125,0.009676543,-0.012200858,-0.0024016057,0.013080545,-0.006358598,0.016102074,0.019085355,0.00896897,-0.022298122,0.0020908474,-0.008841479,0.034243997,0.025574632,0.022922825,-0.0073307147,0.03024079,0.0094534345,0.045335688,-0.00074860937,0.039904587,0.017580966,0.00015348684,0.019531574,-0.014342702,-0.0028350742,0.020003289,-0.003971335,-0.0017370606,0.0017737142,0.01422796,0.011416791,-0.02710452,0.013399271,-0.031235218,0.055942915,-0.011212806,-0.00414026,0.0010055827,0.014329953,-0.0008693271,-0.00475859,-0.029042378,-0.016994508,0.02313956,0.0041083875,-0.0034741212,-0.014087721,-0.01477617,-0.014457444,-0.0142917065,-0.007515576,0.022846332,-0.0026852726,-0.0025657502,0.021150704,0.033912525,0.07261869,0.008560999,0.029654333,-0.019518824,0.025969854,0.05696284,0.026097344,-0.008790483,0.00800004,0.005545845,-0.03202566,-0.0034996194,0.034193,0.008248648,-0.013335526,-0.034422487,0.019136352,-0.009937899,0.011812013,-0.00835064,-0.011792889,-0.013730747,-0.0052303053,0.022425612,-0.033912525,-0.008427135,0.0063426616,-0.0029816884,0.028022453,0.030266289,-0.027359502,0.002313956,0.013271781,0.02408299,-0.039624106,0.021711664,-0.017185744,0.027843965,0.04887993,0.017721206,-0.014546688,-0.052143693,0.025230408,-0.014062223,-0.015643107,-0.008006415,0.01862639,-0.0129211815,0.010945075,0.00037350788,0.018027183,0.029730828,0.028226439,0.0078980485,0.017440725,0.004666159,0.017351482,0.0152988825,-0.0060207476,0.0040063947,-0.030164296,0.013271781,-0.008261397,0.008745861,-0.02957784,0.023114061,-0.0056733354,0.02093397,-0.018690135,0.012328349,0.009459809,0.0011681335,0.0073052165,0.0040828893,-0.012787316,-0.013322777,-0.016446298,-0.05451502,0.01860089,-0.04625362,0.01902161,0.015171392,-0.00039641635,0.011818387,-0.03393802,0.019684562,0.026594557,-0.019340338,-0.00870124,-0.0008772953,-0.009185704,0.00272352,0.033912525,-0.028557913,-0.02367502,0.00870124,0.02218338,0.0031585817,-0.008669367,-0.02970533,-0.025434392,-0.032127652,0.010690094,0.02136744,0.014011227,0.0029992184,-0.0034422486,-0.015681354,0.038935658,0.025434392,0.00200001,-0.02039851,0.028302932,0.007929921,0.011799263,-0.022540353,-0.023190556,0.037660748,-0.024337972,0.003684481,0.005402418,0.019939544,0.0062693544,-0.04125599,-0.015018403,0.028583413,0.046228122,0.018141925,-0.0024159485,0.02422323,0.038935658,-0.020105282,-0.017172996,-0.0063904705,0.010562603,0.010766588,0.010855832,-0.046993066,-0.0027362688,-0.0027346753,0.0045036087,0.013883736,0.01656104,-0.025816863,0.011544282,0.0382982,0.03164319,0.023471035,0.024605703,-0.026773045,-0.03462647,-0.025778618,0.021533176,-0.011104438,0.030572267,0.005985688,-0.0065976433,-0.011078941,-0.01588534,0.016803272,-0.00015478166,-0.0016860643,0.0015633545,0.02067899,-0.010441488,-0.06762106,0.00951718,0.009396064,0.0018741131,-0.0071076057,-0.033224072,0.013628755,-0.015005654,-0.03625835,0.06359235,-0.024720443,0.01902161,0.029475847,-0.036207356,0.013035923,-0.02148218,0.008063786,-0.019378584,0.0068335007,0.00006464176,-0.0007741075,-0.03687031,-0.0037514134,0.021596922,0.017364232,0.034116507,-0.003340256,0.021953896,-0.010231128,0.008669367,0.0052334927,0.045565173,0.028277434,-0.021647919,-0.015158643,-0.022106886,-0.0031028045,-0.04559067,-0.0037514134,0.0051824963,-0.007968168,-0.020028787,0.024121238,-0.0061578,0.0037992224,-0.020322016,-0.034167506,0.002266147,0.020882975,0.011939503,0.024197733,0.013616005,-0.023152309,-0.029832821,0.03368304,0.0076048197,0.026186587,0.026773045,-0.034371488,0.031566694,0.036079865,-0.01034587,-0.0070311115,0.0056223394,-0.018588142,-0.012054244,0.042071927,0.0017402478,0.0035059939,-0.029475847,-0.02231087,-0.020016039,0.015400875,-0.0147506725,-0.01109169,-0.010084514,-0.011843885,-0.026059097,0.008459007,0.0016318808,0.0021163453,0.001987261,0.021469431,-0.0013761026,0.015158643,-0.018983364,-0.016382553,0.04900742,-0.022106886,-0.03577389,-0.019812053,-0.0115506565,-0.004127511,-0.0060749315,0.008662992,-0.01286381,0.011945877,0.004984886,-0.04174045,0.025370646,0.024121238,0.013424769,0.0164208,0.01956982,0.021112457,0.017351482,-0.0063044145,-0.03954761,0.035569903,0.026594557,0.018218419,0.043627314,-0.01819292,-0.02027102,-0.031694185,0.0043251216,0.056860846,0.0033912524,0.032918096,-0.020169027,0.024490962,-0.014444695,0.008299644,0.02792046,0.009625547,-0.008656617,-0.00039801,0.0038438442,-0.0047904626,0.008102033,0.034728464,0.005220744,0.0054247286,0.026543561,-0.007432707,0.018460652,0.02287183,-0.00272352,0.016739527,0.013093294,0.026645554,0.019238345,0.002492443,-0.0239555,0.03518743,-0.030291786,-0.00011045873,-0.03952211,0.0287619,-0.029960312,0.0065976433,-0.021533176,0.0030629637,-0.011812013,-0.0018087741,0.000665342,-0.0036047993,0.0023777012,-0.025995351,0.009689292,0.023292549,-0.00828052,-0.0056127775,0.031592194,0.032816105,0.021316443,0.010282124,0.03261212,-0.0021561862,-0.004580103,-0.024184983,-0.0036175482,0.02053875,0.01383274,-0.0010294874,0.018792128,-0.0369978,0.0015673386,-0.012124364,0.012213608,-0.01149966,-0.026186587,-0.0054119797,-0.007273344,-0.016612036,-0.026033599,0.050282326,-0.022106886,0.0043952414,0.012137113,0.013807242,0.052526165,-0.008286894,-0.008312393,-0.020156277,-0.02710452,0.03957311,0.027945958,0.030291786,-0.016739527,0.03750776,-0.0050900658,-0.0048191478,0.009937899,-0.02845592,-0.0061418638,0.045233697,0.004532294,-0.03748226,-0.017542718,0.007681314,-0.0026629618,-0.025714872,-0.03161769,-0.0021035962,0.02011803,0.004057391,-0.024975426,-0.014087721,-0.00424544,0.004200818,-0.020079784,-0.007821553,-0.010415989]},{"id":"guide-voice-6","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Stop and Leave\nStop playback and disconnect. getConnection accepts channel ID or guild ID. leave(guildId) leaves all channels; leaveChannel(channelId) leaves a specific channel.\n\n```javascript\n// By channel ID (primary) or guild ID\nconst connection = voiceManager.getConnection(channelId) ?? voiceManager.getConnection(guildId);\nconnection?.stop();\nif (connection) voiceManager.leaveChannel(connection.channel.id);\n// Or leave all channels in the guild:\nvoiceManager.leave(guildId);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.010544704,0.0022724604,0.015074343,-0.020074673,-0.047191374,0.02726341,-0.023803525,0.0059906146,-0.0030365693,-0.0028195623,0.033058412,0.0021226949,0.031615775,-0.00689532,0.0057430435,0.016455851,-0.046408925,0.025527354,0.03875561,0.039635863,-0.031591322,0.0886611,-0.017397234,0.08010308,-0.027336765,0.009841724,-0.022617627,0.042814557,-0.0066569177,-0.051005807,0.040785085,-0.022483144,0.027654635,-0.040980697,0.0128003545,-0.012250196,0.00680974,-0.00042293436,-0.03958696,0.0071642864,-0.0032856688,0.020649282,0.05125032,-0.038731158,0.03811987,0.072816536,-0.01689598,0.028706048,0.0141818635,-0.0039978186,-0.0117978435,0.015881242,-0.027996955,0.04613996,-0.008735294,-0.029439593,0.036872845,-0.047900468,-0.006271807,-0.013093772,-0.051494837,-0.04093179,0.016382497,0.030148687,0.020233607,0.043450296,-0.040271603,0.009884515,-0.0052754087,-0.024475941,-0.01157778,-0.023216689,-0.028999466,0.024182523,-0.028461533,0.016309144,-0.012959289,0.0019958527,-0.014878731,-0.04584654,-0.023265593,-0.0034782244,-0.025160583,-0.0035332402,-0.022422016,0.021443956,-0.0639651,0.00009837904,0.037875358,-0.008289055,-0.021040507,-0.029415142,-0.04445281,-0.050810196,0.031566873,-0.012702549,0.07144725,-0.02419475,0.011351604,0.00596922,0.037802003,-0.034525502,-0.057069775,-0.027214507,0.067779526,-0.010856461,-0.03650607,0.04156753,-0.066263534,0.012482485,-0.046506733,0.028975016,-0.016321369,0.028363727,-0.015697856,0.012354115,0.041127406,-0.050174456,0.056727454,-0.03904903,-0.051837157,-0.021040507,0.035601366,-0.032202613,0.033082865,-0.0060303486,0.0036127076,0.0016244958,-0.005263183,-0.0016627013,0.06464974,0.0121096,0.022238629,-0.007989524,-0.037019555,0.020270284,-0.021602891,0.01042856,-0.010691414,0.013570577,-0.0123663405,-0.009921191,0.03168913,0.02562516,0.004856677,0.042570043,-0.040344957,0.022397565,-0.025894128,0.0026866074,-0.028950563,0.00045120638,-0.03875561,-0.008160684,-0.0369462,0.015074343,-0.015954597,0.04975878,-0.06210678,-0.0111743305,-0.00985395,0.013521673,0.022311984,-0.02723896,-0.032936156,-0.007421027,-0.0019927963,0.05110361,-0.022776563,0.04731363,-0.0082218135,-0.014621991,-0.05501585,-0.013374965,-0.013399416,-0.046726797,0.005067571,-0.016284691,-0.024341457,-0.041176308,-0.0007469166,0.015697856,-0.0060578566,-0.04728918,-0.013839543,0.0090898415,-0.012158503,0.008692505,-0.043499198,-0.026383156,-0.014475281,-0.0048169433,-0.0067791753,0.03723962,0.011437184,0.023216689,0.018118553,-0.02743457,0.007751122,-0.06968674,0.037215166,-0.0057002534,0.041885402,-0.05237509,-0.048560657,-0.031297907,0.0038847304,0.015221052,0.039831474,-0.011730602,0.017189397,-0.015648954,-0.023510106,-0.018289713,-0.078733794,0.029879719,-0.005984502,-0.00981116,-0.03149352,-0.02134615,-0.017507266,-0.018827647,0.07262092,-0.003973367,0.034525502,-0.016565884,0.029830817,-0.0287305,0.025380645,-0.0035790866,0.018032974,0.005474077,-0.010355205,-0.026040835,0.027874697,-0.046653442,-0.0039764233,0.029708559,0.011437184,-0.007335447,-0.035259046,-0.03958696,0.035528015,-0.023620138,0.022544272,-0.004010044,0.007848928,-0.07046919,0.019866835,-0.0015480849,0.04225217,0.028314825,0.0016733988,-0.0064246287,0.010587495,0.024268104,0.00891868,-0.001009388,0.05452682,-0.018742066,-0.02496497,-0.007317108,0.0044623967,-0.00005577996,-0.029586302,0.008551909,0.011510539,-0.0073537854,-0.0062840325,-0.007977298,-0.07751122,-0.050859097,0.018766519,-0.0094688395,-0.02485494,-0.004034496,0.03626156,0.025991933,0.021725148,0.005513811,-0.024818262,0.003664667,-0.058194544,0.012292986,0.012604742,0.023717944,-0.071153834,0.031420164,-0.010911477,0.0312001,-0.024842713,0.010043449,0.0049575395,-0.029806364,0.02709225,0.058830284,0.06983345,0.009462726,0.0016428344,0.048511755,0.046995763,0.005211224,-0.027654635,-0.015979048,0.02404804,0.020820443,-0.011822295,-0.014255218,0.004294293,-0.045455318,0.011748941,0.0072987694,0.019610094,0.03748413,-0.024989422,-0.013118224,0.017935168,-0.0015045307,0.00024757133,-0.0018858211,0.02011135,-0.018742066,0.0012378567,-0.0063512744,-0.0022617627,-0.022862142,0.00076716545,-0.059074797,-0.031909194,0.027312314,0.024842713,-0.049318653,0.016590334,0.060003955,0.028437082,0.04863401,-0.048047177,0.040491667,-0.0047955485,-0.0036982878,-0.005914204,0.038780063,-0.034941178,0.025551805,-0.0048047174,0.0112293465,-0.0076472033,-0.00062695146,-0.0023320608,0.025185034,-0.023522332,-0.006302371,-0.033620797,-0.07428362,0.03173803,-0.012788129,0.03650607,-0.018546455,0.0092793405,0.041127406,-0.029366238,-0.04384152,-0.033767506,0.033082865,-0.017959619,0.023253366,-0.06768172,-0.005403779,-0.0024986365,-0.046091057,0.03909793,-0.042227723,-0.00402227,0.032764994,-0.046897955,-0.0062901457,-0.017213847,0.010410221,-0.0064979834,0.037361875,0.023864653,-0.008172911,-0.003679949,-0.032398224,-0.00900426,0.01783736,-0.012861484,0.017776232,0.0061373236,-0.040833987,0.04873182,-0.021187216,0.004483792,0.0015106435,0.021248344,-0.0344766,0.042325526,0.025001647,-0.004441002,-0.032080352,0.08817207,0.032911703,-0.03616375,0.014475281,-0.0014518072,0.0176662,0.01153499,0.016333595,0.013460545,-0.009114292,0.050174456,0.022593176,0.0410785,0.029464044,0.037533037,-0.026309803,-0.010031223,-0.037875358,0.058439057,-0.009584984,-0.024989422,0.019463385,0.007940621,-0.0050767404,0.016944882,0.037679743,0.004719137,0.01910884,0.04892743,-0.03547911,-0.050174456,0.01626024,-0.0008741407,0.041787595,-0.007610526,-0.024011362,-0.0122868735,-0.029366238,-0.03895122,-0.019695675,-0.029341787,-0.011241572,-0.020649282,0.04547977,0.02281324,0.020637058,0.00870473,-0.05486914,-0.009303791,0.011944553,-0.03958696,-0.0013005136,0.015697856,0.057754416,-0.026725478,-0.007176512,0.032593835,0.0037044005,-0.015966821,-0.031297907,-0.006889207,-0.028608242,0.0144263785,0.05438011,-0.017103817,-0.0060517434,-0.019781254,-0.0018812364,-0.052472897,0.020135801,0.009652225,-0.005886696,-0.007934508,-0.021847406,-0.010434673,-0.006244299,0.010086239,-0.009083728,0.013815091,0.0126903225,0.027483474,0.0121218255,-0.026334254,0.021443956,-0.014047381,0.027605731,0.047044665,0.02266653,-0.053597663,-0.016321369,0.012079036,-0.019390032,0.036041494,-0.012115713,0.014499733,0.0054373997,-0.010948154,-0.0024298667,0.049856585,-0.0030457387,0.000075885575,-0.0040406086,-0.010813671,0.033718605,-0.008160684,0.018925453,0.003643272,-0.05340205,-0.014438604,-0.041812047,-0.02487939,-0.041102953,-0.042301077,-0.042863462,-0.0016443627,0.011541103,-0.01264142,-0.010520253,-0.015526695,0.023827976,-0.062302396,0.025454,0.007127609,0.025111679,0.015490019,0.039855927,0.021333924,0.01042856,0.014780926,0.0010460652,0.02741012,-0.007696106,-0.049294204,0.0025826886,-0.016162435,0.030980038,0.017116042,0.008723069,-0.007390463,-0.04010044,-0.009047051,0.017213847,-0.0001696322,-0.022801014,0.0021624286,-0.0402227,-0.012775903,0.029121723,0.022422016,0.023889106,-0.010324641,-0.040124893,-0.02375462,-0.018265262,0.010563043,-0.0042025996,-0.0049239188,-0.036432717,0.023938008,-0.0221775,-0.0011476917,-0.022104146,-0.0036004817,-0.014634216,-0.019145517,-0.037679743,-0.015000989,-0.0050553456,0.0053212554,-0.0070481417,0.017030463,-0.01427967,0.005718592,0.005779721,0.042178817,-0.0053976662,-0.0060486873,-0.0015519054,-0.006027292,-0.016076853,0.0088331,-0.03631046,0.020575928,-0.008185136,-0.01640695,-0.042961266,-0.041885402,-0.042790107,-0.035723627,0.02168847,0.012415243,-0.0056574633,-0.011956778,-0.012384679,-0.017458363,-0.007995637,0.030246492,0.015135472,-0.014438604,-0.018754292,-0.005767495,0.015245504,-0.025001647,0.021016056,-0.006314597,-0.011382168,-0.0043279137,-0.018143006,0.01689598,0.0118528595,0.019720126,-0.012470259,-0.013753963,-0.04892743,-0.0034751678,-0.0073843496,-0.025820773,-0.0056574633,0.022629853,0.05007665,0.013546125,0.016627012,-0.00981116,0.044477258,0.018057425,0.017861813,-0.02789915,-0.015086569,0.004602993,-0.03105339,-0.003961141,0.019243322,0.010355205,-0.031786937,-0.021395054,-0.038828965,-0.011186556,-0.02890166,0.014084058,-0.016015725,0.033963118,-0.03398757,0.022654304,0.00093526946,0.0069809,-0.027605731,-0.015575599,-0.014157413,-0.017715104,-0.007952847,-0.0064979834,0.006461306,0.014206315,0.006577451,0.014267444,-0.040833987,-0.023302268,0.020637058,0.01251305,0.0074393656,-0.026016384,0.022165274,0.021211667,0.03919574,-0.0073109954,-0.01427967,-0.015392212,0.01511102,-0.05565159,-0.012714774,-0.035087887,0.017739555,0.0070236903,-0.0008451046,0.026383156,-0.003013646,-0.015856791,-0.027996955,0.017776232,-0.01947561,-0.012824806,0.028485985,-0.04156753,-0.020221382,0.005419061,0.014132961,0.028217018,-0.020783765,0.009462726,0.004199543,0.0001107003,0.03198255,0.0114738615,-0.015538922,-0.03990483,0.013668383,0.03679949,0.0112293465,0.026407609,-0.059857246,-0.03821768,-0.029610753,-0.003349854,-0.019341128,0.014255218,0.009707241,0.008166797,-0.0113638295,-0.0089798095,-0.027630182,-0.056189522,0.026163094,-0.05961273,-0.018766519,-0.0138028655,-0.0056880275,-0.026236448,-0.045919895,0.033620797,-0.06381839,-0.010355205,0.037044007,0.021651793,-0.010018998,0.0040039313,-0.010764768,-0.03616375,-0.011376055,-0.007965073,0.029317336,-0.047386985,0.01574676,-0.0028501267,0.019438934,-0.0055413186,0.022739885,-0.017592845,-0.020588154,-0.01672482,-0.05599391,0.013815091,0.022862142,0.009823386,-0.013729511,-0.03723962,0.008882004,0.024084717,0.008851439,-0.039024577,0.00415064,0.0021150538,0.008234039,-0.051299226,-0.0061373236,0.01815523,-0.04200766,-0.0034446034,-0.026872186,-0.00046725268,0.005067571,0.001934724,-0.045699835,0.021896308,0.06191117,-0.001934724,0.02198189,-0.028192567,-0.010018998,0.043401394,0.048316143,-0.045186352,-0.0011041375,-0.004260672,0.020172479,0.018546455,-0.031591322,-0.031102294,-0.011198782,0.0076288646,-0.032496028,-0.0034965628,-0.0014693816,-0.010825897,-0.008026201,-0.0040253266,-0.015233277,0.030075332,-0.0046580085,-0.008484667,-0.02485494,-0.038144324,-0.017262751,-0.016443627,-0.0009367977,-0.02577187,0.005675802,-0.023974685,-0.10768436,0.016443627,-0.03418318,-0.0007484448,-0.03085778,0.026236448,0.018827647,0.05438011,0.0109053645,-0.009609435,0.037459683,0.009560532,0.031909194,-0.059955053,0.016358046,-0.012348002,0.0009474952,-0.005211224,0.036701687,-0.024451489,0.024402587,-0.0031664679,-0.05452682,0.018106328,0.027850246,0.018607583,0.021505084,-0.006302371,0.01738501,0.019121064,-0.041934304,0.033400733,-0.020037996,0.01657811,-0.015379987,0.008527457,-0.0034812808,-0.014915409,-0.014964311,-0.040809534,-0.0032398223,-0.021333924,0.00026858432,-0.00989674,-0.0078428155,-0.019414483,0.00035722097,0.017372783,0.012702549,-0.0052479007,-0.016957108,-0.0012256309,0.00091769494,-0.028681597,0.031102294,0.001191246,-0.004835282,0.035992593,-0.01789849,0.00072437536,0.06142214,0.01502544,-0.006650805,-0.021089409,-0.019011034,-0.021480633,-0.03393867,-0.010899251,-0.0038205453,-0.010575269,0.0060945335,-0.008930907,0.025307292,0.03797316,0.0014189505,0.018558681,0.0153188575,0.0279236,0.006742498,0.014707571,-0.013326062,-0.002003494,0.012971515,0.021468407,-0.00026743815,0.0141818635,-0.021737374,0.011107089,-0.004037552,0.0061342674,0.024732681,-0.041445274,-0.0005130992,0.010318529,-0.0037135698,-0.03364525,-0.0056666327,-0.019744577,0.009377146,-0.034060925,0.017311655,0.008613037,-0.021260569,-0.022593176,0.0106058335,-0.018045198,0.013338287,0.030001977,0.017421685,-0.00026953945,0.0016917374,-0.010893138,-0.03364525,0.017800683,-0.06376948,-0.03723962,0.017617298,0.002796639,-0.0016413062,-0.011761166,-0.040491667,0.01234189,0.009267114,-0.021945212,0.013741737,0.050027747,0.0017895433,0.008307394,-0.021945212,0.05041897,0.0016733988,0.0042790105,0.0172383,-0.020673733,-0.003469055,-0.007286544,0.003988649,0.03198255,0.0050156116,0.00072208303,-0.003252048,0.018204134,-0.047435887,-0.02660322,-0.02247092,-0.016883753,0.05501585,-0.0050003296,-0.0039489153,0.020942701,0.013105998,-0.0057124794,0.00813012,-0.009132631,0.006418516,0.07599523,0.029317336,-0.0101718195,0.019524515,-0.015612275,0.03892677,0.0031786936,-0.008081217,0.014340798,0.0034109827,0.01657811,-0.010208497,-0.005935599,-0.019512288,0.0070603676,-0.03594369,0.0061984523,-0.0068341913,0.004661065,0.0015847621,0.02347343,0.053255342,-0.03904903,-0.018448649,0.01789849,0.027850246,0.02453707,-0.035405755,0.025258388,0.03545466,-0.0058041723,0.03467221,-0.004324857,-0.005125643,0.0020936588,0.028975016,0.0123113245,0.04384152,-0.004743589,-0.024781585,-0.048536208,-0.01560005,-0.0015939315,-0.0039978186,0.0016795116,-0.0070175775,0.012849257,-0.005318199,0.023962459,0.0043890425,0.0061556622,-0.013350513,0.010404109,0.035723627,-0.01738501,0.009835611,-0.014927634,0.020392543,0.019035485,0.0040406086,0.01030019,0.001009388,-0.03088223,-0.008472441,-0.00830128,0.0069014328,0.004077286,-0.017617298,0.035210144,0.016981559,0.0051745465,-0.0063084844,-0.04171424,-0.056385133,0.025698515,0.020404767,-0.026480963,-0.005816398,-0.030515458,0.0030915851,0.0010949683,0.005409892,0.025429549,0.011259911,0.05565159,0.024145845,0.0011087222,0.0023840202,-0.015612275,0.03085778,-0.021847406,0.0060517434,0.05056568,0.01577121,0.045430865,0.007145948,-0.02060038,0.011082637,-0.030099783,-0.015392212,0.0018109385,0.004315688,-0.009915079,0.03875561,0.0017910716,-0.043768164,-0.023950234,-0.024488166,-0.019573417,0.0104713505,0.050810196,-0.043572553,0.011486087,0.025356194,0.010208497,0.04335249,0.020979378,0.00037976218,0.0027263411,-0.010459124,-0.02168847,-0.003230653,-0.000637649,-0.03217816,0.018314166,-0.009138744,0.008179023,-0.03318067,0.016125757,-0.003035041,-0.0070664803,-0.015441115,-0.013142675,0.008527457,-0.011999568,-0.012531389,0.01251305,-0.041274115,-0.022617627,0.032153707,-0.03381641,0.013448319,-0.029757462,0.0034996194,-0.0038663917,-0.017299429,0.012959289,-0.03300951,-0.035259046,0.006216791,-0.000981116,0.03513679,0.018436423,0.00038721226,0.046164412,0.024317006,0.06978455,0.02528284,0.022532048,0.002382492,0.0013203804,0.027948052,-0.016627012,-0.024170296,0.014010703,-0.020722637,-0.04467287,0.006565225,-0.0009069974,-0.0008924794,-0.03679949,0.022788787,-0.012604742,0.049000785,-0.024206974,-0.0015710081,-0.01361948,0.03283835,-0.025038324,-0.0018109385,-0.021248344,-0.045430865,0.051005807,-0.012060697,-0.0052876347,-0.03247158,-0.030735523,-0.008490779,-0.026089739,0.022593176,0.029855268,0.024414811,-0.014169638,0.006314597,0.023925781,0.07105603,-0.02183518,0.009860063,-0.004153697,0.047582597,0.033474088,-0.013436093,0.030270943,-0.024732681,-0.008937019,-0.0129348375,0.00552298,0.028363727,0.0052479007,-0.009181534,-0.01732388,0.01838752,0.020404767,0.021676244,0.00070107006,-0.013668383,0.0279236,0.0064246287,0.019830158,-0.027018895,-0.02309443,0.01219518,0.008435763,0.018754292,0.03344964,-0.006748611,-0.02596748,-0.023742396,-0.020661509,-0.06743721,0.027703537,0.039635863,0.014573088,0.00433097,0.020001318,0.00027698954,-0.01574676,-0.011858972,-0.019781254,0.015587824,0.010538592,-0.0133138355,-0.03758194,0.0046274443,0.007922282,-0.01666369,0.027312314,0.036408268,-0.002860824,-0.00578889,-0.030564362,-0.032740545,-0.030393202,-0.006326823,-0.0060548,-0.04746034,0.0039030688,0.015856791,0.023290044,0.0035424095,-0.0019102726,0.0073537854,0.012451921,-0.0135339,0.018118553,-0.0131793525,0.0012477901,0.0039122384,-0.029415142,-0.009731692,0.013057095,-0.0067119338,-0.04961207,-0.008698617,-0.02266653,0.01379064,-0.039171286,0.0064979834,0.007084819,0.006076195,0.074234724,-0.027141154,-0.023375623,0.029317336,-0.006754724,-0.024488166,0.0028852758,0.024378134,0.00020516328,-0.012415243,-0.0008626791,-0.006170945,0.007983411,-0.026823284,-0.013925123,-0.0032826124,0.019720126,0.019365579,-0.027996955,0.011962891,-0.026529865,0.010703639,0.022556499,0.014548636,0.030124234,0.009462726,-0.021431731,0.024903841,0.0022036904,0.0067241597,-0.024928292,0.007855041,0.0064246287,0.0020844894,-0.013289385,0.03344964,0.029586302,0.027996955,-0.022336435,-0.0012004153,0.0086558275,0.021884082,0.029879719,0.03628601,-0.019548966,-0.002663684,-0.0041170195,0.015465567,-0.0012149333,-0.002067679,0.032006998,0.0015549619,-0.0068464167,-0.042472236,-0.023228915,-0.010495801,0.0093588075,-0.0038572224,-0.016015725,0.023840202,0.034721114,0.004920862,0.009016487,0.018106328,-0.0039825365,-0.0019240265,-0.026334254,-0.02347343,-0.027630182,0.0107158655,-0.03134681,0.037386328,-0.0049147494,-0.0068341913,-0.02577187,0.015049892,-0.000567733,-0.008099556,0.030906683,-0.012066809,-0.031297907,-0.022226404,-0.000764109,0.023607913,-0.008050653,-0.028999466,0.038046516,-0.04694686,-0.024842713,0.035503563,-0.051788256,0.003848053,-0.019463385,-0.033425186,-0.018338617,0.000588746,0.022360887,0.00051424536,-0.0072682053,-0.007848928,-0.0041750916,-0.018228585,-0.009248775,-0.00755551,0.00040688805,-0.011302701,-0.0055474318,-0.0039855926,-0.009829499,-0.000012977915,-0.00007841669,0.025062777,0.0050706277,0.011773392,-0.021064958,-0.0006055564,0.01034298,-0.023082206,-0.014780926,-0.0040558907,-0.033865314,-0.0013348985,0.016419174,0.0028470703,-0.018228585,0.017764008,0.023571236,0.015648954,0.0048291693,-0.008698617,0.010122917,0.024329232,-0.038193226,-0.06044408,0.031909194,0.008869777,0.020184705,-0.0052326187,-0.054918043,0.0012225745,0.006302371,-0.0037319085,-0.02789915,0.020478122,-0.038853414,-0.010294077,0.0026178376,0.00011404327,-0.029610753,-0.02643206,0.013460545,-0.023938008,-0.026138641,-0.02249537,0.026383156,0.0060945335,-0.0034537727,-0.035723627,0.032764994,-0.0038816738,0.00428818,-0.0073415595,-0.027825795,-0.0136928335,0.007769461,-0.004557146,0.022788787,0.022874368,-0.000861915,-0.033889763,-0.021285022,-0.0009192232,-0.044257194,0.010654736,0.006259581,0.029243981,0.010679188,0.014511959,-0.033131767,0.030735523,-0.0026881355,-0.010422448,0.037459683,0.03675059,0.004774153,-0.0075983005,0.00045388076,-0.044550613,-0.005953938,-0.003258161,0.015013214,0.0074821557,-0.016773721,0.03462331,-0.030686619,-0.0067302724,0.026798831,0.018888775,0.019842383,-0.0042148256,0.00044203707,-0.03821768,-0.0121096,0.01640695,0.0065224348,0.0024023587,0.0114983125,-0.0014747304,0.0027569055,0.030686619,0.011155992,0.006650805,0.0109848315,0.025600709,-0.004520469,-0.013631705,-0.026676575,0.009529968,0.0036554977,-0.0025093341,-0.017849587,-0.015306632,0.013411642,-0.012201293,0.018509777,0.01783736,-0.014719796,-0.026652124,0.008472441,0.008851439,0.008148459,0.019353354,-0.0018705389,-0.0076288646,-0.021407278,0.010801446,-0.016516982,0.0019163855,-0.027776891,0.027116701,-0.013912898,-0.028192567,-0.01657811,0.015245504,0.02011135,0.029830817,0.012170728,-0.024206974,-0.005110361,-0.0128003545,0.013191578,-0.011107089,-0.029121723,0.022617627,0.002908199,0.029684108,-0.018424196,0.007304882,-0.004450171,-0.007885605,-0.009933418,-0.03826658,0.037044007,-0.025869675,-0.031762484,0.02419475,0.042081013,-0.021945212,0.015636727,-0.00035492863,0.010165706,0.04887853,-0.019463385,0.04122521,-0.00804454,0.0028501267,0.0014602124,0.010147368,0.004847508,-0.023950234,0.038193226,-0.02117499,-0.010012885,0.016981559,0.04085844,-0.024732681,-0.008613037,0.008258491,-0.015734533,-0.0149398595,-0.0010170292,-0.0010292549,-0.001338719,-0.01445083,0.012763677,0.0066141277,0.043083522,-0.007848928,-0.0059111477,0.033254024,0.000707947,-0.04418384,-0.0028959732,-0.0029357069]},{"id":"guide-voice-7","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: LiveKit and serverLeave\nIf using LiveKit, the server may emit serverLeave. Listen and reconnect if needed.\n\n```javascript\nconnection.on?.('serverLeave', async () => {\n try {\n const conn = await voiceManager.join(channel);\n await conn.play(streamUrl);\n } catch (e) {\n console.error('Auto-reconnect failed:', e);\n }\n});\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.034440678,0.030335829,0.007834253,-0.02745743,-0.042500194,0.031587306,-0.024153527,0.008566367,-0.026356127,0.012740047,-0.00357297,0.016043948,0.03589239,0.004677399,-0.015305577,0.039671853,-0.0480067,0.04039771,-0.004630469,0.0035854846,-0.017495664,0.039521676,-0.009285967,0.050384507,-0.006351251,0.013128005,-0.043000787,0.04337623,-0.008485021,-0.05761805,0.058719352,-0.0202364,0.0014423284,-0.015305577,-0.011632489,0.018196492,0.044102088,-0.016744776,-0.05997083,-0.0125398105,0.018209007,-0.02104986,0.03874576,-0.006495171,0.021475364,0.027482457,-0.025179738,0.009048186,0.0062354896,0.0072523155,-0.026931807,-0.007821738,-0.02903429,0.0318376,0.02479178,0.00625739,0.0013257846,-0.014116673,0.0040673036,-0.0027798456,0.01098172,-0.003119309,0.008747832,0.011951615,0.012364604,0.0205743,-0.02968506,-0.0060727973,-0.024966987,-0.0141792465,0.009636381,-0.00052444753,-0.047706343,-0.0065202005,-0.033564642,0.036743395,-0.017508179,0.00016239884,-0.029334646,-0.05761805,-0.034415647,-0.024166042,-0.059119824,-0.037143867,-0.026681513,-0.013916436,-0.11173196,-0.018359182,0.014442056,0.034415647,-0.0021087406,-0.026130863,-0.024929443,-0.035617065,0.03368979,0.018747142,0.082647614,-0.014029069,-0.011932843,0.020073708,0.041248716,-0.034540795,-0.07914347,-0.028809026,0.062473785,-0.0318376,0.012558582,0.028859084,-0.067729995,-0.005666067,-0.048206937,0.014104158,-0.016519511,0.021375244,0.0030536065,-0.03143713,0.052361842,-0.04970871,-0.0026312326,-0.042725462,-0.04955853,0.017545722,0.03148719,-0.027732754,0.03424044,-0.037694518,0.0018756527,0.011657518,-0.042975757,0.0048870216,0.060271185,0.020949744,0.03761943,-0.010831542,-0.020361548,0.015105341,-0.01714525,-0.003181883,-0.035742212,-0.0046554985,0.010449842,-0.040648006,0.01452966,0.009786558,0.0058256304,0.06432597,-0.011651261,0.00997428,-0.0045710234,-0.017708415,-0.040197477,0.0074150073,-0.04567895,0.022789415,-0.048907764,0.044627707,-0.02738234,0.0113071045,-0.06737958,-0.00781548,-0.02680666,0.032863814,0.034465704,-0.019798383,-0.06677887,-0.029334646,0.0029347162,0.041574102,-0.018284094,0.021587996,-0.0013195272,-0.0030051116,0.004990269,0.03709381,0.030385887,-0.059720535,0.028133227,0.008503794,-0.0023746795,0.0031631107,0.036242805,-0.0035416828,-0.00025498864,-0.03308908,-0.02858376,-0.010418555,0.0027016283,0.041448954,-0.021337701,-0.04059795,-0.00044623014,-0.007853025,0.004258154,0.031712454,0.052111547,0.005828759,0.0050371992,-0.040798184,-0.00563478,-0.045754038,0.0015142885,-0.044277295,0.006908159,-0.07694087,-0.021850808,-0.0036480585,0.009310997,0.044152144,0.035617065,0.0020899684,0.037319075,-0.004874507,-0.010499901,-0.010018082,-0.062273547,0.02858376,0.04447753,0.0050309417,-0.02395329,-0.020399092,-0.028934173,-0.04387682,0.08084548,0.009411115,0.05481474,0.0205743,0.046504926,-0.041774336,0.014955163,-0.019072525,0.00073367904,-0.024391307,-0.0061103418,-0.010762711,0.03143713,-0.012076763,0.016907468,0.008804148,0.02457903,0.012101793,-0.014116673,-0.021650571,0.010061883,0.031036656,0.031912692,0.007646531,0.012783849,-0.03426547,0.022764387,-0.030460976,0.026406188,0.0097114695,0.0647765,0.010881602,0.04783149,0.005953907,-0.011438509,-0.00700202,0.03146216,-0.04745605,-0.008616426,-0.014542175,-0.018759657,-0.014054099,-0.028608788,-0.05756799,0.04390185,-0.006526458,0.004545994,0.00004152854,-0.047756404,-0.057868347,0.022489062,-0.024328733,-0.014517145,0.012752562,0.042525224,0.008760346,0.023340065,-0.0007954707,-0.0256553,-0.01539318,-0.05977059,-0.005009041,0.0074150073,0.006845585,-0.053413082,-0.009167077,-0.012940283,0.013966495,0.005913234,0.029810207,0.016006405,-0.00090575725,0.030586123,0.026631454,0.04500315,0.0066891504,-0.02251409,0.032162987,0.04320102,0.006745467,-0.0458041,-0.0007027832,0.025617756,0.05251202,-0.0030473492,0.0011920328,0.04853232,-0.017808532,0.01369117,0.02908435,0.0019304049,0.028809026,-0.010068141,0.0041924515,0.022301339,-0.0017395545,0.01599389,-0.002944102,0.0020977901,-0.0051998915,0.023565331,0.0043864306,0.0040391455,0.0005956253,0.025955655,-0.058919586,0.002582738,0.040197477,0.017220339,-0.05366338,0.011275818,0.06512692,0.017358001,0.021663085,-0.035617065,0.014404513,-0.02848364,-0.010800255,0.0076840753,0.02193841,-0.05013421,0.017195309,-0.00016054117,0.017545722,-0.017220339,-0.03461588,-0.03989712,-0.01237086,-0.0024012735,-0.03651813,-0.009473689,-0.08189672,-0.005293752,-0.005666067,0.045203388,-0.038295228,0.0019632562,0.009367313,-0.040322624,-0.011457282,0.000841619,0.010887859,-0.012239455,0.041448954,-0.06087189,0.0077529065,-0.0060602827,-0.039046116,0.014116673,-0.017921166,-0.011375936,0.044677768,-0.07974418,-0.004624211,-0.018596964,0.0059695505,-0.0037825925,0.087503344,0.02848364,0.012233198,0.016394362,-0.04560386,-0.01237086,0.019197673,-0.047781434,0.018171461,-0.012890224,-0.01824655,0.02623098,-0.03822014,0.0062167174,-0.009874162,0.047581196,-0.027132044,0.014379483,0.020749506,0.0015221102,-0.026306069,0.04332617,0.032162987,-0.024929443,0.04783149,0.040798184,0.028133227,0.012808878,-0.022101102,0.0011740428,-0.010399783,0.074838385,-0.00856011,0.036943633,-0.004107977,0.024954472,-0.020036165,0.00815338,-0.036743395,0.0513106,0.020374063,0.0049714968,0.013290697,-0.00090653944,-0.006495171,0.0038639386,0.028834054,0.012233198,0.00856011,0.06517698,-0.04209972,-0.021625541,-0.0055252756,0.022363912,0.022363912,0.0011920328,-0.0314121,-0.006304321,-0.044677768,-0.00798443,-0.025617756,0.017245367,-0.0031302595,-0.05606622,0.07974418,0.023177374,0.006075926,-0.020787051,-0.04838214,-0.029885296,0.018809715,-0.041423924,-0.01239589,0.030586123,0.039521676,0.0023465215,-0.02102483,0.029534882,-0.00024775355,-0.004248768,-0.02848364,-0.05251202,-0.021237582,0.021237582,0.04510327,-0.0044302326,-0.0025577082,0.009799073,0.014492116,-0.013778773,0.0025905597,0.047405988,-0.0068893866,0.0061228564,-0.01282765,0.0036199002,-0.005913234,0.044752855,-0.033364404,-0.017220339,-0.009824103,-0.0035166533,0.011651261,-0.0040203733,0.0037043751,0.008347359,0.050584745,0.040347654,0.014642294,-0.053262908,-0.020611843,0.0063418653,0.006970733,0.013465904,-0.013178064,0.024716692,0.014079128,-0.028909143,0.017808532,0.035567008,-0.004445876,-0.03704375,-0.019435454,-0.018772172,0.052612137,0.015368151,0.037294045,0.008485021,-0.027557546,0.0035573265,-0.040748127,0.0059945798,-0.025730388,-0.035466887,-0.02251409,-0.018984923,-0.0027657666,-0.031637367,-0.017608296,-0.027282221,0.006551488,-0.05251202,0.023552816,0.022989651,0.05023433,-0.013065431,0.00008911893,0.013040401,0.032087896,0.010950433,-0.027732754,0.019885987,-0.0053093955,-0.04898285,0.00090028206,-0.022977138,0.026306069,-0.009285967,-0.0072585726,0.016219156,-0.0068080407,-0.018459301,0.042950727,-0.047681313,-0.010844057,-0.017808532,-0.003829523,0.022576664,-0.0037544342,0.0116262315,0.024178557,0.012145595,-0.05176113,-0.011576172,0.005957036,0.04109854,-0.0058569172,0.0065640025,-0.0386957,-0.012927769,-0.004136135,-0.00060970447,-0.040873274,-0.00095581636,-0.020048678,-0.04059795,-0.024879385,-0.0070645935,-0.012333317,0.010205803,0.021813262,0.000095180774,-0.03133701,-0.003757563,0.021337701,0.023039712,-0.0071772267,0.0033539613,-0.0047869035,0.009561293,-0.009517491,-0.00625739,-0.025354946,-0.0059758076,0.012790106,-0.023002166,-0.01568102,-0.043776702,-0.03126192,-0.018434271,0.033039022,0.022664268,-0.015493299,-0.027031926,0.022939593,-0.023577847,-0.000056609828,0.010318437,0.02481681,0.018659538,-0.014379483,-0.01712022,0.038270198,-0.006670378,-0.017608296,0.012952798,-0.0056003644,0.027006896,-0.0029081223,-0.007953143,0.017620811,0.023202403,-0.028959202,-0.015743595,-0.05696728,-0.002201037,0.0026844204,-0.025955655,0.0050559714,0.01052493,0.035742212,-0.026656482,0.010155745,-0.0061729155,0.025955655,0.013566022,0.029735118,-0.0059257485,-0.007170969,-0.0001490041,-0.006197945,-0.013128005,0.017633326,0.005190505,-0.04918309,-0.028633818,-0.05471462,0.01009317,-0.00534694,0.011519856,-0.0073774634,0.022451516,-0.05251202,0.04560386,0.0032726151,0.020824594,0.011976645,-0.020736992,0.015793653,-0.00045444298,0.00066758535,-0.02795802,-0.022551635,-0.0021494136,0.002138463,0.0050810007,-0.05421403,-0.019986104,0.023214918,0.023627905,0.003951542,-0.03241328,0.014467087,0.011019264,0.0023465215,-0.008697772,0.012683731,0.014229306,0.0318376,-0.0041736793,-0.016131552,-0.036367953,0.025580212,0.0021322058,-0.02131267,0.045703977,-0.029284587,-0.0051998915,-0.022614209,0.021487879,-0.032663576,0.0031584178,0.018234035,-0.07348679,-0.029309615,0.010293407,0.018196492,0.013616081,-0.050910126,0.0047556167,0.008428705,-0.026756601,0.002980082,0.012558582,0.023415154,-0.0066766352,0.048181906,0.02534243,-0.004852606,-0.004445876,-0.007052079,-0.024253644,-0.022626724,-0.00865397,-0.022101102,-0.0057004825,0.020298975,0.030460976,-0.026756601,0.0050747436,-0.02848364,-0.042700432,0.020636873,-0.049208116,0.010731424,-0.00088776724,-0.022126133,-0.036017537,-0.030561095,0.032763697,-0.056917224,-0.0144545715,0.04502818,0.0009597272,-0.017745959,-0.00968644,-0.021175008,-0.019072525,-0.0018881676,-0.021863323,0.036668308,-0.038495466,-0.0050027836,0.019961076,0.0075589274,0.00035276037,0.00997428,-0.060171064,-0.022176191,-0.04062298,-0.054864798,0.018909834,-0.015055281,-0.018697083,0.007759164,-0.01153237,0.012840165,0.036067598,0.020098738,-0.027757784,-0.0015698228,-0.019172644,0.008948068,-0.04620457,0.0126274135,0.018496845,-0.015305577,0.0044302326,-0.033839967,-0.020111252,0.0142668495,0.0025858665,-0.016244186,0.024341248,0.042375047,0.007533898,-0.0023371354,-0.03368979,-0.024366278,0.044052027,0.040748127,-0.02047418,-0.025630271,0.00028510235,0.025855538,0.01539318,-0.01594383,-0.06162278,0.021813262,0.017470634,-0.017608296,-0.009192106,0.000495116,-0.012608642,-0.018046314,-0.0015831197,-0.0061134705,0.003303902,0.00020277855,-0.024679147,0.013102976,-0.012020446,-0.038044933,-0.026306069,-0.036217775,-0.011194471,0.016406877,-0.021975955,-0.08044501,-0.01314052,-0.030936537,0.009060701,0.009442402,0.02076202,0.0025436291,0.03761943,0.0021619285,-0.03756937,0.025830507,0.01712022,0.02905932,-0.055215213,0.017508179,-0.00084631203,-0.00033672582,0.006135371,0.029735118,-0.010212061,0.010499901,-0.0039139977,-0.052361842,0.056817103,0.029960385,-0.0034728516,-0.004145521,-0.017633326,0.014029069,0.042124752,-0.024103468,0.03373985,-0.01009317,0.009630124,0.0023918874,0.0055158897,-0.005903848,-0.0094361445,-0.006720437,-0.04007233,0.0023277493,-0.00884795,-0.00281739,-0.0325134,0.016031435,0.014704867,-0.032888845,0.0051091593,-0.028783996,-0.010675108,-0.013002857,-0.003960928,0.010725167,-0.011638746,-0.0123082865,0.051861253,-0.0029018647,0.08014466,0.031061685,0.0018396728,0.036267836,-0.0025999458,-0.011144412,-0.026931807,-0.0096238665,-0.009861647,-0.025755418,0.00786554,-0.004965239,-0.019022467,-0.0030942794,-0.0013602002,0.029534882,0.026556365,-0.00039871308,0.03431553,-0.009317255,0.012239455,0.028608788,0.012120565,-0.0032663578,-0.016894953,0.00067501597,0.019435454,0.027482457,-0.001278072,-0.004524093,0.0032256846,0.037319075,0.015931316,0.017971225,-0.030360857,-0.0054063853,0.005027813,0.01860948,-0.004871378,-0.034741033,0.0073086317,0.021325186,-0.027432399,0.03151222,-0.0159188,0.014191762,-0.0010238655,0.023152344,-0.024541484,0.04149901,0.020774536,0.019247733,-0.016444422,-0.00039714875,-0.057267636,-0.029359676,0.04099842,-0.05301261,-0.010099428,0.040247533,-0.029384704,-0.005900719,-0.0050059124,0.00314121,0.032813754,0.027232163,-0.020073708,-0.006157272,0.02390323,-0.008766604,-0.0113071045,-0.006057154,0.012752562,0.013828833,-0.0034446933,0.013566022,-0.023915745,-0.029509854,-0.03353961,0.005953907,0.038545523,0.024779266,0.009060701,0.0027204005,0.005831888,-0.029434765,-0.038094994,-0.014141702,-0.011250787,0.020386579,-0.017595781,0.009861647,0.0084349625,-0.0003392679,0.018321639,-0.0022948978,-0.023702994,0.00008965667,0.064426094,0.008910524,-0.015643476,0.020386579,-0.028108198,0.020724477,0.030686243,-0.0017332971,0.01685741,0.022889534,0.017157765,0.007940629,0.01573108,-0.00856011,0.01618161,-0.033364404,0.021688115,0.005534662,0.0097365,0.0068330704,0.025329916,0.043551438,-0.011432252,-0.0053312965,0.009091988,0.055665743,0.032863814,-0.024666633,0.02625601,0.05121048,0.0077841934,0.01282765,0.011138155,-0.0037919786,0.036117658,0.02141279,0.004693043,0.031161804,-0.030110562,-0.040773157,-0.06542727,0.003982829,0.0030598638,-0.009142047,0.0234527,-0.013841348,0.008316072,-0.006432597,0.0256553,0.0076089865,-0.027983049,-0.03479109,-0.0019726423,0.042425107,-0.025092136,-0.025780449,0.0066641206,0.028433582,0.025955655,0.013828833,0.012639929,0.0062886775,-0.022051044,-0.021500394,-0.016169097,0.0071897414,-0.01172635,-0.021688115,0.022664268,0.020223886,0.022864504,-0.005284366,-0.040147416,-0.046529956,0.013340756,0.045954276,-0.048181906,-0.027782813,-0.01069388,0.015893772,-0.0070583364,0.01916013,0.024416337,0.015493299,0.040497832,0.0042331247,-0.0028424195,0.0010473307,-0.03589239,0.035692155,-0.022201221,-0.0030348343,0.034165353,0.009229651,0.03824517,0.006620319,-0.012596127,0.01824655,-0.0025874309,-0.013178064,-0.013228123,-0.007314889,0.025492609,0.005963293,-0.007978173,-0.025192253,-0.03699369,-0.029885296,-0.029735118,0.007853025,0.04620457,-0.038445406,0.022676783,0.027432399,0.020899683,0.031186834,0.013027887,0.013991524,-0.013791288,-0.017420575,-0.0055284044,0.01429188,-0.024554,-0.013090461,0.0062042023,-0.039046116,-0.030586123,-0.022439001,-0.0026922422,0.033214226,-0.0034165352,-0.0205743,-0.01014323,0.028733937,0.011695063,-0.0011896864,0.031562276,-0.024754236,-0.008284785,0.026881749,-0.024278674,-0.00032851298,0.028108198,0.011594945,-0.013828833,-0.012120565,0.02858376,-0.03837032,-0.0051060305,-0.009561293,0.013090461,0.022927077,0.007640274,0.027006896,0.016869925,-0.014667323,0.048807643,0.020061193,0.018396728,-0.020561785,0.017032616,0.024103468,-0.0021415919,-0.023340065,0.0144545715,-0.01599389,-0.020924713,0.0025624014,0.012633671,0.027757784,-0.005468959,0.003929641,-0.010061883,0.04783149,-0.0058131157,0.006801783,-0.029810207,0.023340065,-0.0036386724,-0.014329424,0.009911707,-0.045178358,0.036893573,-0.012683731,0.0028111327,0.0025232926,-0.026906779,0.01596886,-0.011851497,0.018972408,0.02502956,0.044052027,-0.026030743,0.018446786,0.003857681,0.06632834,0.013490934,0.022188706,-0.028333463,0.04167422,0.022751871,0.009142047,0.009786558,-0.015155399,-0.00472433,-0.01939791,0.03308908,0.03704375,-0.0055252756,-0.012602384,-0.013165549,-0.0006143975,0.0059945798,0.00896684,-0.0025311145,0.0032569717,0.0014994271,0.017758474,0.018546905,-0.011763894,-0.03481612,-0.009204621,-0.011188214,0.0342905,0.04162416,-0.0018866032,-0.008078291,-0.016782321,-0.00024403822,-0.05601616,0.019698264,-0.0055377902,0.015518328,0.021487879,0.030561095,-0.003313288,-0.0484322,0.02541752,-0.030861448,0.024541484,-0.009098246,-0.023565331,-0.035491917,-0.0025092135,0.020561785,-0.014054099,0.017220339,0.021900866,0.005121674,-0.016732262,0.009104503,-0.048131846,-0.023039712,-0.024829324,-0.017332971,-0.026356127,-0.020086223,0.016194126,-0.009085731,-0.0012147159,0.030110562,-0.009054444,0.019860957,-0.00570674,0.018083857,0.007039564,0.007890569,0.003960928,-0.02505459,-0.026130863,-0.0062135886,-0.016394362,-0.043626525,0.0111756995,-0.021825777,0.006413825,-0.003469723,-0.011551143,0.0037231473,0.00019290361,0.044752855,-0.0022948978,-0.003798236,0.0073336614,-0.008929296,-0.03353961,0.0023167988,0.026381157,-0.0027735883,0.021225069,-0.00700202,0.0112633025,0.02745743,-0.045403626,-0.013328241,-0.002326185,-0.022326369,0.024916928,-0.0154557545,-0.011838983,-0.0038764533,-0.0066578635,-0.0054720878,-0.008960583,0.048882734,0.010155745,-0.03238825,0.045378596,-0.010543703,0.00070552074,-0.027682696,0.005168604,-0.008941811,-0.0042894413,-0.003186576,0.026431216,0.029209498,-0.009411115,-0.014116673,0.005165476,0.02474172,0.02083711,0.028733937,0.023139829,0.0064388546,-0.0047180722,-0.011845239,-0.017545722,-0.013566022,0.02021137,0.026706541,0.012746304,-0.03083642,-0.03889594,-0.035567008,0.022426486,0.018158946,-0.019047497,0.008585139,0.022601694,0.031161804,0.020324003,0.01740806,0.03238825,-0.0016582084,-0.015668506,-0.028884113,0.008553852,-0.011363421,0.032713637,-0.016782321,0.013741229,0.0048807645,-0.011275818,-0.018647023,0.009129533,-0.018947378,0.0071834843,0.018459301,0.009023157,-0.020461665,-0.017645841,0.00024364714,0.015205459,-0.0081158355,-0.028633818,0.0198985,-0.054063853,-0.025855538,0.06542727,-0.016669687,-0.011163184,0.0002790405,-0.028208315,0.021575483,-0.03872073,0.018096372,-0.00015389269,-0.003128695,-0.007465067,-0.0062980633,-0.017921166,-0.024078438,-0.032313164,-0.019573117,-0.011494826,0.0141792465,0.022676783,0.01599389,-0.032263104,-0.01172635,0.014767441,-0.006107213,-0.0057223835,-0.011776408,-0.013065431,0.005152961,-0.048332084,-0.0013695863,0.02793299,0.0027923605,0.0054752165,0.025254827,-0.013803803,-0.0013648933,-0.0028424195,0.0068080407,-0.0023199276,-0.0048619923,-0.0025514509,0.035642095,0.019260248,-0.034340557,-0.025242312,0.011338391,0.009179591,0.008929296,-0.023202403,-0.060221124,0.030460976,0.018697083,-0.020324003,-0.022126133,0.0033789908,-0.05361332,0.01798374,0.001899118,0.013290697,0.000841619,-0.005684839,-0.00025322876,-0.034741033,-0.009504976,-0.004871378,0.025004532,0.0054658307,0.009404858,-0.014254335,0.037869725,0.0030958438,0.014417027,0.0044802916,0.017633326,-0.041423924,-0.0017379902,-0.01210805,0.016732262,0.017070161,0.0074462947,-0.054013792,-0.0030191909,0.022101102,-0.016419392,-0.024716692,-0.0019788996,0.019885987,0.03241328,0.0050309417,-0.014492116,0.0400473,-0.0024044022,-0.016744776,0.03426547,0.02474172,0.0035166533,0.024353763,0.018659538,-0.00697699,0.009886676,-0.0065827747,-0.00465237,0.0008619555,-0.039096173,0.007596472,-0.036968663,-0.019435454,0.0070333066,0.013503448,0.0034540794,-0.026130863,-0.023565331,-0.022501575,-0.00050254667,0.025880566,-0.023627905,-0.008447477,-0.005512761,-0.016945014,0.0034102777,0.015505813,0.016481966,-0.00390774,0.014955163,0.029735118,-0.024541484,0.007170969,-0.010743939,0.006732952,0.031011626,0.0040923334,0.02474172,-0.022113618,0.011113125,-0.011288332,0.020048678,0.03766949,-0.016844895,-0.030761331,0.017195309,0.005747413,0.025830507,0.021863323,-0.018784685,0.0053344253,0.009010642,0.012201911,-0.0019523058,-0.008397418,-0.020524241,0.021362731,-0.02251409,0.0075464128,-0.018021284,0.044127118,0.044052027,0.038845878,0.0123082865,0.0040704324,0.0041392636,-0.001908504,-0.012164366,-0.029184468,-0.03486618,0.004905794,0.0023950161,0.01596886,-0.0090294145,-0.018659538,-0.02392826,0.003488495,-0.028208315,-0.034741033,0.0031678039,-0.013340756,-0.0057411557,0.016006405,0.036067598,-0.03599251,0.016219156,-0.009229651,-0.006232361,0.012377118,-0.014379483,-0.000346503,0.0023246205,0.0041142344,-0.0037231473,0.03646807,0.0022526605,-0.04447753,0.036868542,-0.043226052,-0.014479601,0.0015627833,0.011131898,-0.012508524,-0.007890569,0.0025123423,-0.00913579,-0.011813953,0.0033633474,-0.0003730969,-0.023515273,-0.011088096,-0.0063356077,0.02280193,0.027432399,0.021362731,-0.027707724,0.009905449,-0.000818936,-0.0051091593,-0.028809026,0.005171733]},{"id":"guide-events-0","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Basic Usage\nUse client.on(Events.X, handler) to subscribe to events. Handlers receive event-specific payloads.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => {\n console.log('Bot is ready!');\n});\n\nclient.on(Events.MessageCreate, async (message) => {\n console.log(message.content);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.0048133307,0.013802411,0.018552804,0.0030401424,0.030319331,-0.0032398996,-0.058843583,0.044658076,0.02272308,0.031238763,0.0013032113,-0.015061156,0.017655265,-0.023379818,0.024233574,0.032858714,-0.04776663,0.023883315,0.026400805,0.042950563,0.053108085,0.035923485,0.012817306,0.060157057,-0.04415458,-0.019975733,-0.020096134,0.05604151,-0.0072022094,-0.027364017,0.033471666,-0.020128971,0.007470377,0.012642177,0.00533872,0.013594444,0.051663265,0.03625185,-0.017534863,0.016801506,-0.021300152,-0.02613811,0.030253658,-0.009944084,-0.0069559333,0.033734363,-0.0540713,-0.01684529,-0.049430363,0.0468472,-0.0040690294,-0.038243953,0.036864806,0.07569982,0.032902494,0.0009974184,-0.05227622,-0.027539147,-0.004380979,0.025393808,0.010754059,-0.008077858,0.016812453,0.009922193,-0.022186747,0.035792135,-0.007858946,0.0140651055,-0.0054864855,0.05118166,0.018695097,0.040236052,0.0109401345,-0.018804554,-0.014896971,0.01714082,-0.0025858998,0.032201976,-0.015258176,-0.0065564187,0.054158866,-0.013014327,-0.08537573,-0.039229058,-0.054859385,0.0072569377,-0.034391098,-0.020960838,-0.021967834,-0.015739784,0.0024367657,-0.0056479336,-0.046365593,0.04417647,0.0670309,-0.033931382,0.0042414228,-0.034369208,-0.03369058,0.07149671,0.08086614,-0.08187314,-0.021551901,-0.0133317495,0.023029558,-0.027451582,-0.011241139,-0.01343026,-0.0063703433,-0.0016719415,-0.078852154,0.010671967,0.031129306,0.049868185,0.014524821,-0.023226578,0.05840576,0.008198259,0.021212587,-0.0033055735,-0.02937801,0.053064305,0.018312002,0.014393474,-0.024715181,-0.07893972,0.0065673646,-0.03820017,-0.02848047,-0.033471666,0.087564856,-0.010983917,0.0443516,-0.03259602,-0.013298913,-0.028962078,0.010956553,0.028130211,-0.05643555,0.007076335,0.036339417,-0.07661925,0.030122312,0.04091468,-0.025350027,-0.034369208,-0.06615525,0.0077823265,-0.020993674,-0.027254563,-0.017852286,0.023839533,-0.008937089,-0.0071036993,-0.01786323,0.0066494565,0.011547616,0.019067248,-0.037915584,-0.011066009,0.02110313,0.01136154,-0.0004350879,-0.016637323,-0.054202646,-0.0084062265,-0.030012855,-0.01918765,0.0017034102,0.032311432,0.030319331,0.010743113,0.031786043,0.039097708,0.026006762,-0.047635283,-0.019198595,0.020654362,-0.00685195,0.0388788,0.045577507,0.009621189,-0.018859282,-0.00013254446,0.006934042,-0.011427214,-0.007152954,0.012051114,-0.0662866,-0.04597155,-0.047372587,0.012215298,-0.015247231,0.012149624,0.056347985,0.006249942,0.0056096236,-0.017578645,0.010102795,-0.021070294,-0.0044986447,-0.033449776,0.014338746,-0.011460051,0.024737073,-0.014305908,-0.009971448,0.033055734,0.038265843,-0.017699046,0.0036038412,0.024408704,0.008291298,0.012423264,-0.049605493,0.017709993,-0.030691482,0.039601207,-0.046584506,-0.029859617,-0.031961173,-0.028152103,0.03640509,-0.022482278,-0.025656503,0.039710663,0.020928001,-0.022876319,-0.013134729,-0.005204636,0.0005123912,0.03949175,-0.0031714898,-0.029947182,0.045665074,-0.019132921,0.056829594,-0.017151767,-0.018125925,0.009320185,-0.004263314,-0.016155716,0.001975682,-0.026116218,0.035617005,0.0028485942,0.006950461,0.009325657,0.038594212,0.008329608,0.07158427,-0.025503265,0.057267416,0.002076929,0.020128971,-0.008428117,0.0048981593,-0.017731884,-0.0076564522,-0.03242089,0.042271934,0.00023054185,0.0029799417,-0.0047887033,-0.05477182,-0.038594212,0.007640034,0.028918294,-0.009664971,-0.028765056,-0.006364871,-0.029837726,0.0060857576,-0.03169848,-0.055078294,-0.0034232386,-0.018049307,0.010715749,-0.044570513,0.029443683,-0.01836673,-0.03419408,0.011460051,-0.010234143,0.009024654,0.039338514,-0.011821256,-0.07447391,0.0208076,0.0023587784,0.009785373,-0.0012135942,0.023357926,-0.028983967,0.039032035,0.08393092,0.08585735,0.0078096907,0.040039033,0.017502027,-0.0051170713,-0.028918294,0.00018231277,-0.020654362,0.0028978495,0.011919767,0.0022493224,-0.029224772,0.055778816,-0.038594212,0.010387382,0.039951466,0.006611147,-0.0378718,0.0051854816,0.012335699,0.025656503,0.06357209,0.0031523348,-0.007995766,-0.01836673,-0.042928673,-0.0027555567,-0.029290445,-0.030078528,-0.038068824,-0.023554947,-0.0071474817,0.03870367,0.044570513,0.041527633,-0.042797323,0.0042660506,0.04341028,0.0028075483,-0.01009185,-0.01089088,-0.003948628,-0.0221758,0.024561943,0.0070106615,-0.058449544,-0.042315718,0.0016596277,-0.013900922,0.055822596,0.003248109,0.0064141257,-0.038178276,-0.007328084,-0.0155318165,0.010343599,-0.019165758,-0.035441875,-0.015093992,0.0033192553,0.0060802847,-0.031829827,-0.008597774,-0.015334796,-0.04851093,0.011635181,0.015061156,0.016538812,0.0074320673,-0.035989158,-0.013747683,-0.0117118,0.04518347,-0.005218318,0.06536717,0.0026871467,-0.008690813,0.0079684025,-0.0203041,-0.025547048,-0.026116218,0.0010165733,-0.010934662,0.0039458913,0.0073992307,0.042928673,0.0073390296,-0.047810413,-0.015466143,0.011897875,-0.037959367,-0.024408704,0.010775951,0.020523014,0.034588117,-0.0070653893,-0.01811498,0.027889408,0.0009933138,0.009544569,0.05534099,0.007443013,0.015455198,-0.013966595,0.049299017,0.023686294,0.013922812,0.0022096445,0.00702708,-0.051050313,-0.030078528,0.015061156,-0.024277357,-0.0008838578,0.01749108,0.0034205022,0.025021657,0.004153858,-0.04397945,-0.0077877995,0.004079975,-0.014689005,-0.006830059,-0.0020796654,0.00427426,-0.02272308,-0.01602437,0.011093373,-0.018815499,-0.022547951,0.02135488,-0.040214162,-0.0015282804,-0.03572646,-0.026203783,-0.026400805,0.031238763,0.034916487,0.008871415,-0.039272837,0.045008335,-0.04741637,-0.028217776,0.022963883,-0.007716653,-0.010491365,0.028349122,0.059062496,-0.017151767,0.018301055,-0.020544905,0.029290445,0.0055877324,-0.0034998578,-0.034675684,-0.05030601,0.029531248,0.013080001,-0.044745643,-0.012368537,-0.015903967,-0.002082402,0.026357023,0.013857138,-0.018027415,0.027539147,-0.025984872,-0.005237473,0.0006091914,0.00037967574,0.0012696905,0.029947182,0.008526628,-0.015739784,0.032793038,0.027604822,0.061207835,0.010420218,-0.00050862867,-0.032333326,0.028152103,-0.058537107,0.024846528,0.023773858,0.054202646,0.028371014,-0.0005571998,-0.0102450885,0.030516353,0.09316901,0.01983344,-0.016473139,-0.019789658,0.0052730464,-0.043760538,0.0076509793,0.039535534,-0.009134109,0.056172855,-0.064228825,-0.0117118,-0.0035655315,0.0041976403,-0.0057354984,-0.028458579,-0.022810645,-0.073948525,0.016659215,0.009073908,0.013682009,-0.008827632,-0.005431758,-0.02758293,0.022701189,0.013955649,-0.0099112475,-0.009659498,0.022591734,0.00029707063,0.0063703433,-0.009539097,-0.016330846,-0.03498216,-0.014951699,-0.023117123,0.053458344,-0.0014762888,-0.007278829,-0.0074265944,-0.02937801,-0.02200067,-0.0331433,-0.009851047,-0.03366869,0.0059215734,-0.023708185,-0.003951364,-0.025568938,-0.012105841,0.04014849,-0.02955314,-0.017053256,-0.011038645,-0.017129876,-0.04562129,0.039075818,-0.017129876,-0.0055138497,-0.031085525,0.016068151,-0.0062061595,0.055078294,-0.036799133,0.0221758,0.034828924,-0.025722178,0.0050267703,0.0020413557,0.009976921,0.019450344,0.0014147197,-0.013835248,0.0052675735,0.01612288,-0.011191883,-0.019045357,0.029662596,0.00033606435,0.020172754,-0.021858377,0.0028048118,-0.011689909,-0.03351545,0.007913674,-0.001505021,0.014218343,0.012587449,0.024474379,-0.014426311,-0.012488938,-0.037455868,-0.018574696,-0.018093089,-0.006747967,0.0111973565,-0.0338876,0.009145055,0.046234246,-0.038637992,-0.018859282,0.007853474,0.00014682506,0.011952603,0.0145029295,0.019844387,-0.03658022,-0.033449776,-0.0066768206,-0.016079098,-0.0014667114,-0.0044466527,0.030713374,-0.027429692,0.019056302,0.0047558662,0.010972971,-0.02127826,-0.02252606,-0.010507783,-0.011678963,-0.00044090275,-0.016462194,-0.016615432,0.0130362185,0.02145339,-0.003472494,-0.031983063,-0.02578785,-0.030932287,0.008367917,-0.013747683,0.006463381,0.012324754,0.026050545,0.007503214,0.000864703,-0.029180989,0.0071146446,-0.011919767,0.024934093,0.035376202,-0.0016651005,0.01577262,0.009205256,0.03443488,-0.0042414228,0.021486226,-0.007267883,-0.02307334,0.005242946,-0.011886929,-0.011394377,-0.0044247615,-0.023007667,0.0032234814,-0.027013758,0.025087332,-0.013309859,0.014163616,0.0015830084,-0.012499884,0.017272169,-0.010567984,-0.007158427,-0.0057573896,0.020030461,-0.006912151,-0.010765005,0.022744972,-0.07097132,0.011241139,-0.015083047,0.038134497,0.02127826,0.004758603,0.011460051,-0.023554947,0.019713039,-0.0066494565,0.010589875,-0.008055967,0.015619381,-0.014240235,0.017600536,-0.0047859666,0.041352503,0.005905155,-0.008428117,0.0044493894,0.009429641,0.020325992,-0.047372587,0.027079433,0.011854093,-0.018476184,-0.0016910963,-0.038178276,-0.035595115,0.0059489375,-0.031457674,-0.005937992,0.0039595733,0.006720603,0.043519735,-0.039623097,-0.012576503,0.026948085,0.02486842,0.00017889227,-0.008679867,0.009539097,0.029180989,-0.009424168,-0.032705475,0.0043618246,0.00034974635,0.0047969124,-0.0026994604,-0.0063429796,-0.026357023,0.00644149,-0.013167566,0.02379575,-0.041834112,-0.012543666,0.032201976,-0.012040168,-0.0023259416,-0.032902494,0.011350594,-0.007858946,-0.025634613,0.008231097,-0.0286556,0.0013401528,0.023226578,0.014108888,0.020413557,-0.010381908,-0.033121407,0.044570513,0.028786948,-0.045752637,0.022274312,-0.013233239,0.036120504,0.0042660506,-0.008652503,-0.050612487,0.020479232,-0.051663265,0.0072295736,-0.04649694,-0.03281493,0.01298149,0.0019373725,-0.0019934687,-0.021300152,0.05210109,0.006523582,0.0109401345,0.014404419,-0.023905206,-0.008083331,-0.035091616,0.0044411803,-0.01774283,0.007858946,-0.0015679583,0.0104038,-0.018826444,-0.014918863,-0.012828251,0.009790846,-0.006906678,0.017086092,0.013692955,0.021595683,-0.0163199,-0.015444252,-0.023489274,-0.0064141257,0.0044767535,-0.022569843,0.005456385,-0.015805457,0.0022342722,0.03914149,0.040980354,-0.021146914,-0.042293828,-0.02506544,-0.021639466,-0.035857808,-0.008488319,0.009358495,0.03174226,0.011427214,0.0076728705,0.004309833,-0.026466478,-0.008378862,-0.0515757,-0.033449776,-0.023751969,-0.031216871,-0.007546996,-0.007152954,-0.011137156,0.018125925,-0.00042345817,-0.07745112,-0.023117123,0.015061156,-0.034303535,-0.024408704,-0.010923716,-0.0016158452,0.021551901,0.020391665,-0.025459483,0.019034412,-0.014141724,-0.010628184,-0.028042646,0.03366869,-0.007404703,0.019537909,0.0018826445,0.0063210884,-0.024999768,-0.019078193,-0.049605493,-0.019132921,0.050875183,0.00499667,0.018312002,-0.0226793,0.0035108034,0.047328807,0.022416603,0.00014639749,0.017523916,-0.0050158245,-0.0031003433,0.046190463,0.04811689,0.012598394,0.013649172,-0.0054043937,-0.06309048,-0.009478896,0.026663499,0.0038829541,-0.02117975,0.033931382,0.010617239,0.0022342722,-0.0009392699,-0.012685959,-0.0079684025,0.020019516,-0.009566461,0.015247231,0.0071091717,0.04973684,0.06090136,-0.016560704,0.023773858,0.013868084,-0.04255652,-0.01793985,0.013517825,-0.024737073,-0.0135506615,-0.0072405194,-0.012992436,0.00126627,0.008526628,0.03257413,0.005795699,0.00626636,0.02559083,0.030954177,0.033449776,0.03027555,0.0057081343,0.013408368,0.0042058495,0.02758293,-0.040126596,0.03835341,0.035266746,0.017830394,0.04273165,0.04697855,-0.023598729,0.012160569,0.0069230967,0.0029306863,-0.0038364353,0.019209541,-0.018049307,-0.0021891214,0.0047887033,0.021497173,-0.017272169,-0.06313426,0.03804693,0.026203783,-0.017677156,-0.006830059,-0.023861423,0.017151767,0.017983632,-0.035266746,0.013660118,0.0142840175,-0.033099517,-0.013539717,-0.038594212,0.03570457,-0.018224437,-0.0027145105,0.014721842,-0.001934636,0.021694193,0.04073955,-0.017370678,-0.008017657,0.0067917495,0.019625474,0.0045916825,-0.023927098,-0.023051448,-0.017589591,-0.020501122,0.0032508452,-0.0063156155,-0.007360921,0.01624328,0.020227483,0.037543435,0.02775806,0.01270785,0.003275473,-0.0057245526,-0.01022867,0.033077624,0.006217105,0.030056637,0.008504737,-0.011821256,-0.0075962516,-0.020238427,0.004140176,0.01803836,-0.015061156,0.034172185,-0.0169438,-0.017381625,-0.0012929499,-0.006950461,-0.01793985,-0.002316364,-0.0004398766,0.055822596,-0.0012252239,-0.004318042,-0.0070653893,0.024999768,0.024977876,0.03966688,0.020862328,0.0033849292,-0.00860872,-0.0019702094,0.0076728705,0.026969977,-0.010048067,-0.019516017,0.0008024498,-0.011131682,-0.0048324857,-0.011744637,0.021125022,0.028261557,0.054377776,-0.009965976,-0.02883073,0.020599633,0.024649508,-0.0031003433,0.01549898,0.03570457,0.0010829311,0.0044521256,0.0069887703,0.02110313,-0.02848047,0.015750729,-0.021661356,0.04402323,0.039776336,0.00020762449,-0.03677724,-0.0034232386,0.0037488705,0.015980586,-0.012937708,0.017326897,-0.0030729792,0.0017198286,-0.021508118,-0.009462478,0.022142963,0.0045916825,-0.009068436,0.021004621,0.007443013,0.039075818,-0.008909725,0.0045670546,-0.042250045,0.015696,0.022701189,0.012291917,-0.04108981,0.010370963,0.0029087951,0.0074758497,-0.006934042,-0.028808838,0.020369776,0.020829491,-0.022230528,0.012992436,0.023160905,-0.03045068,-0.034412988,0.013123783,0.025393808,-0.00905749,0.014174561,0.019756822,0.036842912,-0.017688101,0.013167566,0.024540052,0.02008519,0.033559233,0.004181222,0.015181557,0.0025626402,-0.0371275,-0.010387382,0.018498076,0.00010449634,0.02848047,-0.002431293,0.019417508,-0.0051499084,0.018399566,0.057924155,-0.0026789373,0.021584738,0.0054837493,0.0074867955,0.04562129,0.013101892,0.00055001676,0.032858714,0.01133965,-0.008586829,-0.017556755,-0.003166017,0.002540749,-0.0018662261,0.009785373,0.008165423,-0.013747683,-0.026050545,0.0104640005,0.008466427,-0.013463097,-0.03266169,0.020785708,0.0025161214,-0.0056205695,-0.015663164,-0.0048926864,-0.0016965691,0.011460051,-0.026291348,-0.0037160337,-0.0012649017,0.0028732219,-0.010288871,-0.029312337,0.016998528,0.0011212407,0.03174226,-0.021956889,0.029837726,-0.003907582,-0.008220151,0.014294963,-0.04253463,0.015444252,0.0021426026,0.011777474,-0.002498335,-0.027670495,-0.014393474,-0.010808787,-0.021540955,0.025306243,-0.015991531,-0.014710896,0.041199267,-0.010836151,-0.038003147,0.043322712,0.023007667,-0.008980871,-0.021540955,0.022066344,-0.021289207,-0.027626712,0.033559233,-0.002397088,0.022088235,0.015805457,-0.02524057,0.019866277,-0.014678059,-0.0075086867,-0.0105406195,-0.011350594,0.0058449544,-0.009342076,0.02937801,-0.044242144,-0.039951466,-0.02105935,-0.011317758,0.011169992,-0.047810413,0.008975398,0.013167566,0.06357209,-0.04043307,0.018596586,-0.017414462,0.03640509,0.049299017,-0.028786948,0.042315718,-0.040389292,-0.039951466,0.010360017,0.0416152,0.010080905,-0.034719467,0.009052017,0.053020522,0.020369776,0.003174226,0.01415267,0.0059708287,-0.02975016,-0.025919197,0.022142963,0.013572553,-0.012828251,0.054465342,0.009451532,-0.013660118,-0.0021467071,0.0033356738,-0.034872703,-0.009369439,0.016462194,-0.010195833,-0.0030182512,-0.046409376,-0.022766864,-0.0036120503,-0.032158196,0.0003943839,0.0017731884,0.010754059,-0.009079381,-0.017086092,-0.003664042,-0.029706378,-0.0016117407,-0.025218679,-0.0122262435,-0.0004863954,-0.010042595,-0.027692387,-0.015586545,0.036864806,-0.041527633,-0.0029443684,0.02631324,-0.010726695,-0.009856519,-0.048817407,-0.039338514,-0.0037625525,0.060332187,0.012291917,-0.000022810475,0.008690813,0.027845625,0.039053928,0.028042646,-0.018443348,-0.024452487,0.013145674,0.022110127,-0.0024709709,-0.016538812,0.0018894854,0.026357023,-0.003540904,-0.01087446,0.0016432093,0.037171282,0.026378913,0.006348452,0.000029352184,0.013780519,-0.02379575,0.008887833,-0.009041072,-0.022547951,0.010059013,0.0004419289,0.011460051,-0.0062280507,0.017720938,0.000021634676,-0.0067808037,0.0009953661,0.009407749,-0.027823733,-0.04014849,-0.0009591088,0.00743754,0.014886026,0.038419083,0.0024600253,0.005174536,0.0013339958,-0.025131114,-0.046059117,-0.013736737,-0.01133965,-0.020895164,0.0054728035,0.0025298034,0.0011267135,-0.021694193,-0.0025024395,-0.04176844,0.009708754,0.014557658,-0.015827348,-0.011071482,-0.018727934,0.009758009,-0.023160905,-0.011668017,0.013539717,-0.02324847,0.003289155,-0.0024230839,-0.02524057,0.014371582,0.02648837,-0.0027322972,0.0055603683,-0.008833105,0.008553992,0.016473139,-0.026466478,0.036536437,0.023204688,-0.010567984,0.017305005,-0.045927767,-0.01965831,0.014382528,-0.0074649043,-0.0065673646,-0.008964452,-0.0060036657,0.007131063,0.0071474817,0.004528745,-0.008285825,0.009380385,0.0107212225,-0.00077029713,-0.0017882385,-0.025153005,0.03154524,0.009840101,0.008105222,-0.020325992,0.05516586,0.0082639335,0.035595115,0.02848047,0.01778661,0.0041976403,0.012368537,-0.023905206,-0.008909725,0.0029197407,-0.015630327,-0.0037817073,0.008203733,0.00076756073,0.051794615,0.0065454734,-0.0052675735,0.006381289,-0.0077659083,-0.004126494,0.012291917,-0.0175677,0.017633373,-0.010370963,-0.015728837,0.001477657,-0.016013423,-0.0061897407,-0.053108085,0.00644149,0.0014694477,-0.010896352,-0.0018689624,-0.024649508,-0.007245992,-0.024080336,-0.010743113,0.003746134,0.0051389625,-0.030297441,0.03204874,-0.027342128,-0.018301055,-0.045665074,0.030669592,-0.020490177,0.032333326,-0.01714082,-0.02162852,0.0043235146,-0.034522444,0.017512972,-0.006917624,0.015652219,-0.025043549,-0.0029936235,-0.046278026,0.031238763,-0.006381289,0.015104938,0.004482226,-0.015192503,0.023182796,-0.011558562,0.007284302,0.016713941,0.029815834,0.018848335,-0.011788419,0.014185507,0.0048981593,-0.03708372,0.01415267,0.031610914,0.0040553473,-0.009801791,0.0117118,-0.033997055,0.022876319,0.037740454,-0.031413894,0.022591734,0.02559083,-0.009336603,-0.04632181,-0.006162377,-0.00812164,-0.011350594,-0.0074320673,-0.018071197,-0.048729844,0.055822596,0.014842244,0.058974933,0.008362444,0.0048242765,-0.025897307,0.01198544,-0.0143278,-0.0024011927,0.015586545,-0.013638226,-0.0068847868,0.0150173735,-0.021223532,0.026116218,-0.036208067,-0.012412319,0.03734641,0.0008900147,-0.01298149,-0.0029908873,0.0069559333,0.005713607,0.018738879,0.049430363,-0.042862996,0.0358797,-0.007552469,0.012642177,-0.05319565,0.00854852,-0.024211682,0.0037789708,0.013747683,-0.039601207,0.01721744,0.00860872,-0.019592637,-0.011668017,0.011060536,-0.006797222,-0.004733975,0.031764153,0.02055585,-0.028130211,-0.008805741,-0.017425407,0.0072022094,0.033033844,-0.0034697575,-0.015378579,0.010037122,-0.009867465,0.0020263055,0.028918294,-0.0004740816,-0.006605674,0.01676867,-0.013528771,0.025350027,-0.009259984,-0.016648268,0.047328807,0.025897307,-0.0030729792,-0.039360404,0.02162852,0.004287942,-0.020971784,-0.0036312053,-0.0065400004,0.0056150965,0.026510261,0.04091468,0.0040143016,0.0438481,0.029969072,-0.0010117845,0.01764432,0.008466427,-0.030800939,0.04886119,0.04358541,0.035266746,0.0011068746,0.018892119,0.043913778,0.01764432,0.025284354,0.025087332,-0.030012855,0.011624235,0.001975682,-0.028962078,-0.010179414,-0.0012703745,-0.029706378,-0.016330846,-0.055559903,-0.024255466,-0.04597155,-0.00812164,-0.011843147,0.014678059,-0.022876319,-0.014229289,0.025459483,0.020917056,0.013889976,0.023642512,0.016801506,-0.023204688,-0.009052017,0.01856375,-0.0004990513,0.02648837,0.012412319,-0.027736168,-0.0005257312,0.017523916,0.042950563,0.000010785271,0.03570457,-0.032793038,-0.019275215,0.039776336,0.031610914,-0.029115316,-0.009528151,0.016724888,-0.022482278,-0.027561039,-0.01532385,-0.04058631,-0.014437256,0.0053879754,-0.048904974,-0.020785708,0.010562511,0.0006967563,-0.033756252,0.016090043,-0.029903399,0.009128637,0.009686862,0.0005681454]},{"id":"guide-events-1","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Common Events\nEssential events for most bots.\n\n```javascript\n// Bot finished loading\nclient.on(Events.Ready, () => {});\n\n// New message (DM or guild)\nclient.on(Events.MessageCreate, async (message) => {});\n\n// Reaction events\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {});\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {});\n\n// Guild joined/left/updated\nclient.on(Events.GuildCreate, (guild) => {});\nclient.on(Events.GuildDelete, (guild) => {});\n\n// Channel created/updated/deleted\nclient.on(Events.ChannelCreate, (channel) => {});\nclient.on(Events.ChannelDelete, (channel) => {});\n\n// Member joined/left/updated\nclient.on(Events.GuildMemberAdd, (member) => {});\nclient.on(Events.GuildMemberRemove, (member) => {});\n\n// Voice state changed (for @fluxerjs/voice)\nclient.on(Events.VoiceStateUpdate, (data) => {});\nclient.on(Events.VoiceServerUpdate, (data) => {});\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.014033304,0.012952792,0.0067631984,0.0021877012,-0.018315328,0.0051190876,-0.045301422,-0.0036417223,-0.020049483,0.0476492,0.013326302,-0.017048063,0.019102367,-0.01379319,0.03321571,0.045968406,-0.06947286,0.045354784,-0.0031031342,0.026332453,0.056079853,0.037057526,0.010638365,0.06301647,-0.022050427,-0.021396786,0.015980892,0.073314674,-0.0034983212,-0.023744563,0.05768061,-0.016207665,0.012545933,-0.0043687327,-0.026252415,0.01528723,0.027012775,0.021436805,-0.0043520583,-0.000015228556,-0.017448252,-0.03689745,0.022650711,-0.013553076,-0.024811734,0.013859888,-0.037724506,0.0007382658,-0.038231414,0.0582142,-0.032895558,0.0073234634,0.045861688,0.063496694,0.013072849,0.014766984,-0.050877392,-0.04732905,-0.014540209,0.013819869,-0.005255819,-0.016714571,0.0034816465,0.015193852,0.012612632,0.019115707,-0.022010408,-0.006476396,0.029213816,0.030974649,0.01267266,0.011832262,-0.001181392,-0.02980076,-0.0064997403,0.007903738,-0.015954211,0.007736992,-0.020703124,-0.021530181,0.018342007,0.007190067,-0.10196822,-0.04578165,-0.025652131,0.008990918,-0.045674935,-0.0034516323,-0.002179364,0.0020543048,-0.00068907585,-0.046155162,-0.0632299,0.021290068,0.050530564,-0.024664998,0.018702177,-0.031134725,-0.0030714525,0.05442574,0.063550055,-0.10789102,-0.052718263,-0.01079844,0.040739268,-0.022543995,-0.018808896,0.0018208611,-0.07059339,0.0028230017,-0.08195876,0.0058294237,0.0064497166,0.045674935,0.017808422,-0.048663013,0.0735281,0.001481534,0.022383919,-0.01599423,-0.033295747,0.031908423,0.0035616844,-0.015860835,0.011485431,-0.035109937,-0.005749386,-0.043834064,-0.025118547,-0.002574551,0.042393383,0.0072167465,0.05741382,-0.049650148,-0.04103274,-0.0070099817,-0.008283918,0.016661212,-0.07459528,0.012792717,0.026385812,-0.054479096,0.018875593,0.050503884,-0.03393605,-0.018768877,-0.07096689,-0.016928006,-0.048262823,-0.04396746,-0.051837847,0.008824173,-0.03572356,0.0040152324,0.010344892,-0.023344373,-0.020356294,0.024278149,-0.037857905,-0.04207323,0.020983256,-0.014606908,-0.0037884582,-0.01081178,-0.044954594,-0.022624033,-0.021063294,-0.027639737,-0.037777867,0.017661685,0.044340968,-0.016327722,0.0021476822,0.03868496,0.025091866,-0.025558753,-0.038658284,-0.012232452,-0.0020459676,0.0020176207,0.035830278,0.0030130916,-0.03991221,-0.047969352,-0.0035316702,0.01600757,-0.0019059014,0.014446832,-0.07977106,-0.057627253,-0.021810314,-0.0053091776,-0.01414002,0.04164636,0.07171392,-0.006936614,0.021103313,-0.02159688,0.011518781,-0.034282878,0.012572613,-0.041166134,0.07998449,-0.025412017,0.016461117,-0.0320685,-0.0077303224,0.025865566,0.042900287,-0.0069499533,0.013066179,-0.014646927,0.023797922,0.020743143,-0.06264296,-0.00049273303,-0.04732905,0.049703505,-0.06403028,-0.023797922,-0.026719302,-0.008684107,0.04884977,-0.0022427272,-0.0018725522,0.037937943,0.041939832,-0.030547779,-0.0019809369,-0.0064563868,-0.009924694,0.016928006,-0.019822707,-0.018688839,0.01858212,-0.021663578,0.032975595,0.010124789,0.020342954,-0.006049528,0.014566889,-0.0043287138,-0.0005139931,0.028840305,0.01304617,-0.013533067,0.0032298607,-0.010598346,0.007376822,0.028093286,0.082812496,-0.003508326,0.06445715,-0.005259154,0.033562537,-0.01081845,0.008043804,0.006929944,-0.008544041,0.006076207,0.011865611,-0.0024011356,-0.0105049675,-0.02274409,-0.035243332,-0.03500322,-0.010558327,0.015487324,-0.0034583022,-0.011218639,0.016287703,-0.054158945,0.033455823,-0.024825074,-0.03086793,-0.00745019,-0.0068632457,0.038765,-0.014807003,0.030040873,-0.0015624056,-0.003091462,0.02980076,-0.0077303224,0.014993757,0.02681268,-0.027066134,-0.055012684,0.010898488,0.005105748,-0.0011572139,0.0045721624,0.0092577115,-0.036017034,0.040899344,0.023491109,0.07758336,-0.0019859392,0.02718619,0.007316794,-0.006269632,-0.022517316,-0.022090446,-0.0011605489,0.03014759,0.020196218,-0.003658397,-0.045168027,0.022277202,-0.023250995,0.033242386,0.03433624,-0.020409653,-0.04274021,-0.029907476,0.0010646702,0.014513531,0.08793492,0.048636336,-0.017981837,0.013506387,-0.04023236,0.01864882,-0.026199056,-0.022890825,-0.04802271,0.0013914914,-0.014927059,0.023170957,0.031748347,0.04660871,-0.038898397,0.029640684,0.039458662,0.008323937,-0.0017975167,-0.022557335,-0.016621193,-0.020049483,0.025051847,-0.0040152324,-0.026199056,-0.04284693,-0.03169499,0.003761779,0.034042764,-0.03158827,-0.0034816465,-0.048556298,0.0062462874,-0.01746159,0.027052794,-0.032148536,-0.04020568,-0.019635953,-0.014593569,0.0072434256,-0.0033482502,-0.029694043,0.025798867,-0.057467178,-0.022050427,0.032575406,0.0140733225,0.012959462,0.00781703,-0.047409087,-0.013753171,0.01376651,-0.04876973,0.026479188,0.014486851,-0.008764145,-0.008310596,-0.06749859,0.008544041,-0.030894611,0.035270013,-0.03017427,0.042606816,-0.021196691,0.016901325,0.02534532,-0.05170445,0.024051374,-0.009224363,-0.008797494,0.005669348,-0.0052391444,0.023944657,0.045621574,-0.012679329,-0.028733589,0.015460645,0.013993285,0.004949007,0.038604923,0.028760267,0.00670317,-0.02080984,0.03604371,0.010751751,0.0026112348,-0.00893756,0.009024268,0.0064563868,-0.03393605,-0.008023795,-0.0111919595,-0.0010338222,0.054532457,0.034176163,0.030307665,-0.02046301,-0.0054525784,-0.020449672,0.01265932,-0.02718619,0.010758421,0.044741157,-0.014566889,-0.040685907,-0.008737465,0.00032744653,-0.030227628,-0.006589783,0.03988553,-0.02643917,0.019489218,-0.060401898,-0.040845983,-0.011151941,0.021796975,0.033269066,0.043647308,-0.0676053,0.017248157,-0.023957998,-0.0058394284,0.027372945,-0.019129047,-0.0069566234,0.021143332,0.038871717,-0.024678338,0.022637373,-0.025158565,-0.029347213,0.013366321,0.00087041163,-0.030654497,-0.019729331,0.00031077198,0.015167173,-0.072460935,-0.04396746,0.015954211,0.0040886,-0.0021760291,-0.024144752,-0.04506131,0.04775592,0.0047522476,0.031961784,-0.008637418,0.006112891,-0.011885621,0.014460172,0.012625971,-0.01747493,0.025772188,-0.013279613,0.021503503,0.0051991255,0.00080454716,-0.0069499533,0.05365204,-0.024091393,0.024544941,0.013899907,0.017661685,0.013519727,-0.0163544,-0.0072100763,0.02117001,0.08371959,0.03137484,-0.028626872,-0.020703124,0.022130465,-0.056400005,0.010498298,0.041219495,-0.015167173,0.026319113,-0.03494986,0.0053191823,-0.019115707,0.01974267,-0.0011922305,-0.022237184,-0.031188082,-0.0491966,0.048636336,0.017394893,0.011131931,-0.016487798,0.0020543048,0.024731696,0.014606908,-0.018342007,-0.011798914,-0.01005142,-0.0035583496,0.011358705,0.014473512,-0.019809369,-0.016114287,-0.030280987,0.0039018453,-0.022490636,0.02643917,0.021036616,-0.0034749766,-0.007410171,-0.020276256,-0.014686946,-0.020796502,-0.020276256,-0.04215327,-0.008857522,-0.0012097388,0.014473512,0.0013431351,-0.037057526,0.018502083,-0.015020437,-0.0027012774,0.0008287252,-0.03756443,-0.01711476,0.041219495,0.03086793,0.005175781,-0.0215702,0.025371999,-0.028760267,0.045568217,-0.01670123,0.012966132,0.017701704,-0.038845036,0.008123842,-0.0083572855,0.006629802,0.010951846,-0.0046121813,-0.01377985,0.0043120394,0.014033304,0.005732711,-0.03788458,0.02606566,0.005189121,-0.011952319,-0.024198111,0.017448252,0.0047355727,-0.04063255,0.026025642,0.0011438743,0.020636426,0.024771715,0.006376349,-0.01747493,-0.031028006,-0.03390937,0.007777011,-0.031028006,-0.029027062,0.00061028864,-0.043754026,0.0071633877,0.031561594,-0.07096689,-0.008990918,-0.016928006,0.016634533,0.0013122873,0.020436332,0.016114287,-0.008150521,0.0058227535,0.010638365,0.0022260528,0.0030214288,-0.026572566,0.027906531,-0.05127758,0.013926586,-0.008750805,0.009644561,-0.036097072,-0.011765564,-0.0020709794,-0.004962347,-0.0092577115,-0.018808896,-0.015487324,0.020356294,0.019542575,-0.004355393,-0.004472115,-0.04055251,-0.019422518,-0.006102886,-0.041486286,0.0120523665,0.019982783,0.01114527,-0.023784582,0.017661685,-0.011091912,0.0042620157,0.016287703,0.040579192,0.022984203,0.011398724,0.01975601,-0.023757903,0.003238198,-0.00031118884,-0.00023135942,-0.03420284,-0.04570161,-0.008123842,-0.0019692646,-0.007116699,0.01228581,-0.0223439,0.004322044,-0.010011401,0.033242386,-0.037004165,0.022370579,-0.015167173,-0.008163861,0.0071033593,-0.016661212,0.008750805,-0.01415336,-0.010725072,0.0073234634,0.005872777,0.025718829,-0.04388742,-0.00066864956,-0.01751495,0.0018408706,-0.0066698208,-0.018955631,0.010758421,0.009524505,0.02722621,-0.014340115,0.018181931,-0.012799386,0.013979944,-0.008243899,0.015327249,-0.030014195,0.01894229,0.017008044,0.02418477,0.042980324,0.005435904,-0.011345365,-0.05543955,-0.0045988415,0.010711732,-0.008757475,0.0035683543,-0.04570161,-0.01898231,-0.0011913967,-0.012059037,0.026172377,-0.011685526,0.023531128,0.00577273,-0.0061762542,-0.0011697198,0.014100001,0.015874173,-0.00033369949,0.027773134,0.00668983,0.012559273,-0.006429707,-0.064617224,-0.0019275782,-0.021877013,-0.0029747402,0.0031431532,-0.0043253787,-0.001974267,0.014246738,-0.011712206,0.013806529,-0.04540814,-0.026025642,0.038524885,-0.04767588,0.011225308,-0.047489125,-0.017554969,-0.020903219,-0.01636774,0.016501136,-0.037377678,0.0038618264,0.03169499,-0.012032357,-0.010464949,-0.008417314,-0.016794609,0.022023749,0.0305211,-0.053411927,0.021543521,-0.030654497,0.045034632,0.021263389,-0.008730795,-0.01526055,0.01638108,-0.04388742,0.009164334,-0.059548162,-0.02645251,0.00896424,0.019475877,-0.0065197498,-0.014713625,0.013619774,-0.00745686,0.0040352414,0.009484486,-0.012205772,0.00071909005,-0.04583501,0.011605488,-0.04732905,0.00783037,-0.008130511,0.00045604902,0.03535005,-0.010451609,-0.008383965,0.028066607,0.00856405,0.039351944,0.0053358567,0.052424792,-0.02675932,-0.009497825,-0.016821288,-0.009757948,0.011265327,0.005432569,-0.0132129155,-0.01526055,-0.014486851,0.0024311498,0.022477297,0.0114921015,-0.057894047,-0.04663539,-0.0016699564,-0.04100606,-0.014700285,-0.016314382,0.01491372,0.011251988,0.011732215,-0.010618355,-0.00409527,-0.0078036906,-0.04319376,-0.046315238,-0.037004165,-0.028947024,-0.024344847,-0.011025214,-0.020929897,-0.025905585,-0.0017208138,-0.101487994,-0.005819419,0.0017641677,-0.041406248,-0.018968971,-0.009524505,-0.010451609,0.026986096,0.022997543,-0.040472474,0.024891771,0.0001398578,-0.033002272,-0.036924127,0.044047497,-0.011111922,0.045941725,0.0036984158,0.0033632573,-0.035616845,-0.00969792,0.008684107,-0.031054687,0.028947024,0.010511638,0.025011828,-0.013199575,-0.009744609,0.027879851,0.018528763,0.009624552,0.010044751,-0.040765945,-0.009918024,0.008684107,0.024024695,0.0065864483,0.01005809,-0.00929106,-0.059708238,0.0025512066,0.00539922,-0.0035149956,-0.033322424,0.02865355,0.0067932126,-0.018888934,-0.0057927393,-0.00086707674,0.0077703414,0.016514476,0.016607855,-0.002252732,0.014486851,0.014820342,0.04399414,-0.03756443,0.01822195,0.0064597214,-0.022850806,0.0016132629,0.0056326636,-0.01715478,-0.02127673,0.0064130328,-0.015767457,-0.032255255,-0.0017708375,0.0067932126,0.026305774,-0.027239548,0.026012301,0.01787512,0.00053650374,0.025492055,0.046448633,-0.021810314,0.012132404,0.016474457,-0.019555915,0.025718829,0.028413437,-0.011698866,0.02828004,0.048396222,-0.026932737,-0.003468307,0.0019192409,0.010318213,-0.007910408,0.029694043,-0.03473643,0.0069966423,-0.008750805,0.01710142,-0.01526055,-0.02529196,0.010444939,0.040499154,-0.012799386,0.005886117,-0.024038035,0.01455355,-0.0050457194,-0.031561594,0.0023427745,-0.02158354,-0.023757903,-0.02122337,-0.028413437,0.04055251,-0.015794136,-0.007670294,-0.00032744653,-0.025251942,0.0027996574,0.032975595,0.019649293,0.027372945,-0.0024294823,-0.0049289977,-0.011632168,-0.032895558,-0.009777958,-0.027773134,0.019809369,-0.015020437,0.01079177,-0.008030465,0.010298204,0.013179566,-0.00023990512,-0.0012297482,-0.018515423,-0.039778814,0.0074301804,-0.00464553,0.031241441,0.0035883638,0.02830672,0.0006490569,-0.0010096441,-0.029694043,-0.028146645,-0.011245318,0.0098179765,-0.02605232,0.024544941,-0.014059982,-0.0070233215,0.0124392165,-0.013419679,0.007490209,0.006406363,-0.013112868,0.051330943,0.018715518,-0.0023494444,-0.016474457,0.014847022,0.019035669,0.028039927,0.027319586,-0.006936614,-0.0066698208,0.00019248687,0.0016749587,0.006222943,-0.008517361,-0.0021493498,-0.009624552,-0.02345109,0.008457333,0.0021927035,0.0007603596,0.040819306,0.06845904,-0.009864666,-0.034096126,0.043380514,0.031241441,0.005572635,-0.009150994,0.04655535,0.034069445,-0.0009571193,0.010578336,0.011465422,-0.016674552,0.0036083732,0.013873228,0.035189975,0.023424411,0.019115707,-0.041833118,-0.02123671,0.02052971,0.0013189571,-0.019435858,0.012739358,0.012559273,-0.002923049,-0.0077236528,-0.018155253,0.0140733225,0.016514476,-0.012445886,0.03126812,0.020743143,0.025478715,-0.017701704,0.013439689,0.0032548725,0.004662205,0.016140966,0.006676491,-0.060401898,-0.021743616,-0.005555961,-0.0047922665,-0.004495459,-0.035243332,0.0007899569,0.017995177,0.0036650666,0.030494422,-0.03647058,-0.017621666,-0.052318074,-0.0025028503,0.014753644,-0.025772188,0.01376651,0.011345365,0.049836904,-0.022637373,0.04508799,0.057253744,-0.014953738,0.028546834,0.010671713,0.012952792,-0.010571666,-0.031001328,-0.014660266,0.012179093,0.015940873,0.030280987,0.010925166,0.030334346,-0.00783037,0.027826494,0.04887645,-0.013493048,0.011218639,-0.018141912,0.0021676917,0.018728858,0.007977106,-0.010091439,0.0054992675,-0.019142386,-0.024878433,-0.02495847,-0.0057260413,0.022103786,-0.008604069,0.004685549,0.000173728,-0.0018592126,-0.018021856,0.027959889,0.016127627,-0.007930418,-0.032335293,-0.02048969,-0.009331079,-0.03212186,-0.016887987,-0.00008993837,-0.028360078,-0.0021543521,-0.028813627,0.0026129023,0.00052358094,-0.010885147,-0.0060428577,-0.03756443,0.015514003,0.009984722,0.02229054,0.009064287,0.011372045,-0.025118547,-0.0065764436,-0.009624552,-0.025665471,0.0056426683,-0.0007361815,-0.005179116,-0.036603976,-0.036684014,-0.0137264915,0.0011380382,-0.004922328,0.012259131,0.00932441,-0.007423511,0.049516752,-0.015847495,-0.0010838459,0.037137564,0.011018544,0.0102048265,-0.030040873,0.02082318,-0.013559746,-0.02982744,0.014593569,-0.002861353,0.02682602,0.004962347,-0.0038451517,0.034442954,-0.016527817,-0.016554495,0.015500664,-0.023210976,0.041299533,-0.022477297,0.015620721,-0.035803597,0.012405867,0.0063463347,-0.0142867565,0.0042286664,-0.037751187,0.00781703,0.012972802,0.025358658,-0.0043120394,-0.004808941,-0.021503503,0.014540209,0.045648254,-0.023291014,0.04359395,-0.032575406,-0.029187137,0.016847968,0.07262101,0.006769868,-0.033242386,0.026599245,0.037350997,0.0099046845,0.026719302,0.03092129,0.006663151,-0.012819395,-0.0136397835,0.022957524,0.02421145,0.005002366,0.02233056,-0.010925166,-0.037004165,0.022010408,0.022303881,-0.025358658,-0.0051224227,0.012132404,-0.017194798,0.0031981792,-0.016301041,-0.04274021,0.016727911,-0.05623993,-0.006539759,0.027399624,0.015580702,-0.00043353837,-0.016421098,0.037937943,-0.023437751,0.0046421955,-0.03462971,-0.015567362,-0.008697446,-0.015460645,0.014460172,0.01040492,0.006896595,-0.026839359,0.030974649,-0.012612632,0.0066464767,-0.03604371,-0.014019963,-0.033322424,-0.026679283,0.044927914,-0.0068632457,-0.008710786,-0.02010284,-0.013299623,0.026359132,0.024878433,-0.005359201,0.0050590592,-0.01231249,0.030734535,-0.008350615,-0.009491155,-0.00015945041,0.021890352,0.0015240541,0.0013047837,0.0087441355,0.029480608,0.009137655,0.008737465,0.021009935,0.031054687,-0.030547779,0.021263389,-0.021783635,-0.010658374,-0.011785573,0.005152437,0.009050947,-0.022277202,0.0021643569,0.0061295656,-0.029187137,0.019262442,0.023491109,-0.044821195,-0.0059894994,-0.0050490545,0.006739854,0.011418734,0.033989407,0.028093286,0.024664998,0.014420153,-0.0291071,-0.02351779,-0.047062255,-0.03420284,-0.014273417,0.0126526505,0.00708335,-0.019089028,-0.004348723,-0.0003082708,-0.019129047,0.00410194,-0.0038918406,-0.0030481082,0.006443047,-0.0014748642,0.025371999,-0.017434912,-0.015487324,-0.0018808895,-0.022637373,-0.024705017,-0.01603425,-0.028813627,0.028786948,0.03388269,0.011572139,0.006403028,-0.020409653,0.012485905,-0.00028263367,-0.011985668,0.030227628,-0.0040785954,-0.019449199,0.029907476,-0.02715951,-0.008423984,0.011718876,-0.0099046845,0.01904901,0.0005898623,-0.027012775,0.003578359,-0.017675025,0.015967552,0.004208657,-0.009204353,0.011698866,0.0011747222,0.010778431,-0.015794136,0.020236237,0.0060995515,-0.006883255,-0.04498127,0.041886475,0.00464553,0.029213816,-0.0073568127,0.041566323,-0.023010882,0.01231916,-0.0063263252,-0.01604759,0.0004918993,-0.0047222334,0.007977106,0.0021093308,0.00819054,0.02082318,-0.008390634,-0.008484012,0.018955631,0.011632168,0.0015840825,0.0045855017,-0.036657337,0.04508799,-0.0035250003,-0.010858469,-0.016968025,-0.023010882,-0.02275743,-0.040872663,-0.0016607854,0.0025978952,-0.020022802,0.010098109,-0.03268212,-0.006729849,-0.031001328,-0.0065364246,0.011332026,0.016661212,-0.024344847,0.0046722097,-0.022970863,-0.023491109,-0.012832736,0.032148536,-0.038578246,0.04164636,-0.038151376,0.002307758,-0.027279567,-0.03759111,-0.0066931653,-0.02193037,0.011058563,-0.033242386,0.002497848,-0.040018927,0.013586425,-0.020196218,0.013559746,0.036097072,0.006783208,0.029560646,0.0043520583,0.0043253787,-0.0061929286,0.00040540006,0.04274021,-0.012879424,0.024905112,-0.007877058,-0.056773517,-0.0037217601,0.02868023,-0.022650711,-0.033375785,0.024491582,-0.013393001,0.022677392,0.0013639784,-0.027479662,0.029213816,0.014873701,-0.013613105,-0.04730237,-0.003091462,0.0042720204,-0.023010882,-0.01747493,-0.016301041,-0.047168974,0.06280304,0.011211969,0.077796794,-0.01116528,-0.016514476,-0.024504922,-0.015514003,-0.004252011,-0.006509745,0.009277721,-0.024278149,-0.013372991,-0.00077620044,-0.0050890734,-0.007837039,-0.031454876,-0.009497825,0.037030846,-0.0026129023,-0.013246264,0.0052524838,0.008470672,-0.004798936,0.023384392,0.050210413,-0.031108044,0.033322424,-0.017554969,0.029240495,-0.03615043,-0.0016424434,-0.02610568,-0.0014698618,0.031428196,-0.04020568,0.027346266,-0.005749386,-0.011612158,-0.00064113655,0.029080419,-0.030387703,-0.005922801,0.0133396415,-0.024024695,0.0029263839,0.021396786,-0.0154473055,-0.013739831,0.011385384,-0.018342007,-0.012572613,0.0028763602,0.017074741,0.009844656,0.019862726,0.004131954,0.02609234,-0.011999008,-0.01859546,0.040499154,0.0082705775,0.004999031,0.020329615,0.03380265,0.017675025,-0.02052971,0.030120911,0.016861307,-0.01710142,-0.0024378195,0.0045688273,-0.0051190876,0.024451563,0.039005112,-0.0037117554,0.003318236,0.019515896,-0.00031577435,0.00013423014,0.022303881,-0.030494422,0.0283334,0.023371052,-0.002571216,-0.0040785954,0.018728858,0.028119965,0.021957051,-0.0034349577,0.014180039,-0.023130938,0.011832262,-0.0025978952,-0.03126812,-0.014820342,0.010038081,-0.03729764,0.004392077,-0.0327088,-0.012746028,-0.031534914,-0.00894423,-0.014686946,0.012225782,-0.024758376,0.01191897,-0.008977579,0.038658284,0.016901325,-0.002886365,0.018888934,-0.007123369,-0.019422518,0.027613059,-0.0052524838,0.032548726,0.011185289,-0.015233871,0.017141439,-0.0064130328,0.03684409,-0.020089502,0.034282878,-0.02270407,-0.026372472,0.038338132,0.03172167,-0.024905112,-0.010938507,0.021410124,-0.010271524,-0.027399624,-0.02273075,-0.017968498,0.0034216181,-0.001897564,-0.018968971,0.022383919,-0.006623132,0.0011088577,-0.00819721,0.025265282,-0.013953266,-0.018355347,0.0007899569,0.023264335]},{"id":"guide-events-2","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Reaction Events\nListen for when users add or remove reactions. Handlers receive (reaction, user, messageId, channelId, emoji, userId). Use MessageReactionRemoveAll and MessageReactionRemoveEmoji for moderator actions.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {\n const emojiStr = emoji.id ? `<:${emoji.name}:${emoji.id}>` : emoji.name;\n console.log(`User ${userId} reacted with ${emojiStr} on message ${messageId}`);\n\n // Filter for specific message (e.g. poll) or emoji\n if (emoji.name === '👍') {\n console.log('Someone voted yes!');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n\nclient.on(Events.MessageReactionRemoveAll, (data) => {\n console.log(`All reactions cleared from message ${data.message_id}`);\n});\n\nclient.on(Events.MessageReactionRemoveEmoji, (data) => {\n console.log(`All ${data.emoji.name} reactions removed from message ${data.message_id}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.010380175,0.015218445,-0.019564793,0.021133961,0.012889599,0.022653315,-0.051209696,0.015828677,0.002889263,0.033998653,0.0028581286,-0.043712556,0.026725681,0.00019303265,0.00547341,0.045356445,-0.006382531,0.024969708,-0.01848132,0.068296194,0.011096264,0.042990237,0.028020868,0.054298215,-0.010840963,-0.009464826,-0.0024923007,0.06705082,-0.024147762,-0.010268091,0.03432245,-0.011395154,0.020747896,0.010840963,-0.014159879,0.0060680746,0.019813867,0.032379672,-0.03830764,0.042815886,-0.020150118,-0.03275328,0.009533322,0.03596634,-0.009713901,0.029664759,-0.073875464,-0.00204708,-0.04044968,0.03394884,-0.02518142,-0.008885729,0.021557389,0.050039046,0.009608044,-0.021644564,-0.042915516,0.004063026,-0.030785594,0.035567824,-0.0037859306,-0.024907438,0.030362168,-0.016389094,-0.044982836,0.0025966004,-0.008997812,0.013811175,0.043338943,0.029963648,0.025878828,0.0037392292,0.013699091,-0.02685022,0.002521878,-0.008368899,0.013101312,-0.028220128,-0.014371593,-0.027298553,0.038656346,0.025629755,-0.06351397,-0.025467856,-0.0421932,0.012105015,-0.046552002,-0.017609559,-0.033899024,0.007901885,-0.010199596,0.015193538,-0.07123528,0.02859374,0.036165603,-0.021544935,-0.007061259,-0.0022883709,-0.020000674,0.05464692,0.06381286,-0.103216425,-0.013499832,-0.009776169,0.013948166,-0.00091223494,-0.0037765903,0.020299563,-0.022341972,-0.017871087,-0.035318747,-0.039129585,-0.008219454,0.03965264,0.0144089535,-0.03307708,0.041072365,0.009682767,-0.0064447997,-0.012634298,-0.05320229,0.004134635,0.051159877,-0.010199596,-0.01021205,-0.030661058,0.006229973,-0.052953213,-0.02615281,-0.00030881332,0.051309325,-0.018157523,0.018867385,-0.03957792,-0.017460115,0.0032566476,0.049939416,0.014010434,-0.039254125,0.019079098,0.030760687,-0.02246651,-0.0139232585,0.030162908,-0.042915516,-0.043064963,-0.049715247,-0.011114945,-0.0055574724,-0.0378344,-0.019477617,-0.000860085,-0.017970717,0.019377988,0.032055873,-0.029216425,0.023848873,0.0018680579,0.011071357,-0.03529384,0.0053737797,-0.046352744,-0.0045300405,-0.048220802,-0.039353754,0.0070176707,-0.015280713,0.0023739901,-0.012210872,0.02799596,0.028469203,-0.020685628,-0.002118689,0.02062336,-0.030860316,-0.0212585,-0.027447997,0.035343654,-0.0044957926,0.039528105,0.017248401,0.005127819,-0.068196565,-0.024533827,-0.015044093,-0.032653652,-0.01580377,0.024733087,-0.05504544,-0.043040056,-0.0020050488,0.032304946,0.008449849,0.016625715,0.03947829,-0.05230562,0.026725681,-0.017485023,-0.008555706,-0.0128522385,-0.0027725094,-0.0032908954,0.027796702,-0.012123696,0.026999664,-0.02799596,-0.030511612,0.020336924,0.046253115,0.0022043083,0.02752272,0.00495658,0.034945138,0.017970717,-0.0462033,0.03158263,-0.053351734,0.031458095,-0.038257826,0.0000466528,-0.058283407,-0.012030293,0.10261865,-0.0134749245,-0.026700774,0.0659549,0.041993942,-0.008599293,-0.025579939,-0.00012628849,-0.03546819,0.025442949,-0.016550994,-0.033475596,0.0565897,-0.042218108,0.041196905,-0.011239482,0.007677718,-0.018630764,0.028519018,-0.019265903,0.012223326,0.0020875547,0.007490912,0.030337261,0.012814878,0.0050468696,0.028618647,0.01911646,0.062866375,0.009396331,0.058482666,-0.01235409,0.013723998,-0.015828677,-0.0007744657,0.001141072,-0.0019910384,0.0018213565,0.025056884,-0.023761697,-0.019552339,0.003167915,-0.044260517,-0.03140828,0.024085494,0.013412655,-0.019639516,-0.01570414,-0.00080404326,-0.053899698,0.005339532,-0.0018882952,-0.017995624,0.01895456,0.030760687,0.0226035,-0.02484517,0.013238303,-0.0027429317,-0.012596937,0.017970717,-0.02300202,-0.012565803,0.012385224,-0.02585392,-0.06291619,0.0021887412,0.033475596,-0.008244363,-0.010199596,-0.00012667768,-0.02203063,-0.004287193,0.05942915,0.06460989,-0.00890441,0.025754292,0.021719286,-0.022180075,-0.02605318,-0.0045611747,-0.04665163,0.03703736,0.017410299,0.004200017,-0.02752272,0.036090877,-0.017609559,0.012497308,-0.009134803,-0.005529451,-0.02488253,-0.019863682,0.0009495961,0.018344328,0.075868055,0.0084934365,-0.015044093,0.041545607,-0.027373275,0.0061147762,-0.03873107,-0.041047458,-0.051658027,0.0116068665,-0.04757321,0.07870751,0.06057489,0.066004716,-0.012298048,0.0050250757,0.044409964,0.044584315,-0.018942107,-0.004417957,0.0067374622,0.0012414801,0.046327837,0.052853584,-0.025754292,-0.029116796,-0.043139685,0.004788455,0.021868732,0.014570852,-0.013350387,-0.012491081,-0.01151969,-0.023163918,0.019963313,-0.058731742,-0.07362639,0.035343654,-0.00091690506,-0.020038035,-0.0065382025,-0.007135981,0.009346517,-0.016600808,-0.0043712556,0.024135308,0.00025140945,0.023985863,-0.013001683,-0.04782228,-0.018008078,0.069890276,-0.05320229,0.0068993606,-0.028718276,0.011494783,0.023599798,-0.033899024,-0.01697442,-0.025804106,0.007422417,-0.009782396,0.0271242,-0.025094245,0.01620229,-0.0013862547,-0.04697543,-0.0056602154,-0.010641703,-0.04413598,-0.031084483,-0.021818915,0.03997644,0.066104345,-0.03023763,-0.008580613,0.025704477,0.026775496,0.02373679,0.02993874,0.06137193,0.019527432,0.019216089,0.02240424,0.015081454,0.02320128,0.005529451,-0.0028098705,0.0063949847,-0.068545274,0.01901683,0.01259071,0.02488253,0.055443957,0.029839111,0.021183776,0.036987547,-0.032728374,-0.033724673,0.03023763,0.020872433,0.010143555,0.0189172,-0.014745204,-0.040499493,0.0024642798,-0.031632446,-0.016426455,-0.014558398,0.02310165,-0.030611241,0.023163918,-0.02926624,-0.07915584,-0.031283744,0.06057489,0.008275497,0.03780949,-0.05514507,0.060226187,-0.005850135,-0.04211848,0.0075656343,-0.023960955,0.016164927,0.046601817,0.03790912,-0.03731134,0.015741501,-0.04211848,0.020536182,0.03663884,0.0019521205,-0.023898687,0.0020112756,0.023662066,-0.010012791,-0.04899293,-0.042243015,0.014259509,0.023487715,0.045754965,0.007970381,-0.0072605186,0.0529034,-0.011307977,0.032030966,-0.010099966,-0.017074049,-0.02377415,0.0011231698,0.012335409,-0.016961966,-0.005585493,-0.00850589,0.033276338,0.0058781556,-0.002445599,-0.0797038,0.046552002,-0.041396163,0.04289061,0.02682531,0.04191922,0.04794682,-0.013263211,-0.025467856,-0.011831033,0.07302861,-0.020038035,-0.0468758,-0.013549646,0.02976439,-0.0135621,0.017198587,-0.0006296912,-0.013400202,0.047299225,-0.036887918,0.020947156,-0.025305958,0.021146415,-0.026426792,-0.0071297544,-0.002338186,-0.072231576,0.04132144,-0.0039353753,0.02665096,0.004554948,-0.005003282,0.008144733,0.03307708,0.006924268,-0.00092858047,-0.01697442,0.010816055,0.010517166,-0.00214671,-0.036140695,-0.037211712,-0.029365871,-0.032304946,0.0089417705,0.016563447,0.010124873,0.015753955,-0.0047043925,-0.028693369,0.0016065298,-0.036315046,-0.022416694,-0.0037330023,0.012509761,0.0094274655,0.027871424,-0.007173342,-0.0050935713,0.021744194,-0.060076743,-0.0048227026,0.0007281534,-0.027572535,-0.0056602154,0.026376978,-0.0010219833,-0.021407943,-0.00419379,0.031458095,-0.010380175,0.063862674,-0.021943454,-0.0021389264,0.01580377,-0.039602827,-0.0035088353,-0.017285762,0.011009088,0.018830024,-0.0065942444,-0.028269943,0.0022478963,0.005946651,0.0014368478,-0.025505217,0.025729384,-0.0075656343,-0.036738474,-0.034671154,0.03469606,0.013512285,-0.0415207,0.037211712,-0.00059310836,0.008730058,-0.012428812,0.0022868142,0.0016096432,0.0076714912,-0.030561427,0.009545776,-0.007173342,-0.040300235,-0.013960619,-0.034895323,0.020361831,0.023188826,-0.029316055,-0.017734095,-0.016912151,-0.017136319,-0.030387076,-0.002338186,0.021644564,-0.0053644395,0.008225681,0.037610233,-0.00013611525,0.027273646,0.005750505,0.034173004,-0.013537193,0.016613262,0.0108098285,0.003614692,-0.03093504,-0.015616964,-0.003745456,0.025579939,0.0066253785,-0.031781893,-0.06645305,0.03140828,-0.007883204,0.0040661395,-0.032902725,-0.022080444,-0.022478964,0.00058843824,0.019178728,0.010940593,0.021619657,0.011488556,-0.04647728,0.027497813,0.0031912655,-0.018568495,0.008786099,0.03519421,0.016451363,0.0066253785,0.058183778,0.012148603,0.00067172246,0.01064793,0.004165769,-0.033600137,-0.0043214406,-0.029116796,0.010679064,-0.0074348706,-0.020947156,-0.004318327,0.028817907,-0.025978459,0.04824571,-0.02246651,0.0002451826,0.01831942,-0.011033995,-0.017198587,-0.0013597904,0.0054080277,-0.00430276,-0.01269034,-0.025231235,-0.014483675,0.00020840521,-0.02655133,0.009066308,0.02246651,0.020075396,-0.0121610565,0.009620498,0.026601145,-0.009471053,0.025330866,-0.026576238,0.00763413,-0.021495119,0.0010998191,0.0062922416,0.018680578,0.008350219,0.036315046,0.012964322,0.0055574724,0.02222989,-0.012111242,0.0073601482,-0.026277348,-0.0041470886,-0.012061427,0.020598453,-0.011009088,-0.044185795,-0.025629755,-0.0007845843,-0.01998822,0.016700437,-0.01496937,0.0065631103,0.029091889,-0.033824302,-0.029814204,0.006317149,0.009109896,0.031632446,-0.0052866037,0.008817233,0.01992595,0.008717604,-0.041396163,-0.0021638337,-0.008686469,-0.0061957254,-0.014570852,0.020685628,-0.009732582,0.035991248,-0.037684955,0.056041736,-0.047897004,-0.018468866,0.016812522,0.010031471,0.0030371507,-0.033899024,-0.0075780884,-0.007086166,-0.008692696,0.021246046,-0.028045775,0.0036738473,0.040873107,-0.012740155,0.01998822,-0.011868395,-0.017833726,0.03606597,0.04548098,-0.055892292,0.017970717,-0.03678829,0.021681925,0.003390525,0.0005179969,-0.05230562,0.023151465,-0.030486705,-0.005040643,-0.037087176,-0.02340054,-0.0103614945,0.01677516,0.010392629,-0.026800403,0.0035742174,-0.0060307137,0.006743689,-0.003505722,-0.03840727,0.003543083,-0.03663884,0.008549478,-0.04044968,0.024471559,-0.012802424,-0.00989448,0.014595759,-0.020835072,-0.029440593,0.012889599,0.02206799,0.030984854,0.01717368,0.017036688,0.0015870709,0.0046078763,-0.023662066,0.005439162,0.0024175784,-0.014745204,-0.0064572534,-0.013375294,-0.009402558,0.017497476,0.0294655,-0.0006495393,-0.009408785,-0.01473275,-0.011662908,-0.026700774,-0.021171322,0.018219791,0.00344034,-0.0143965,-0.016550994,-0.009097442,-0.0271242,-0.015243352,-0.033625044,-0.028992258,0.01120212,-0.041570514,0.030187815,-0.021719286,-0.027597442,0.018169977,-0.0032068328,-0.075768426,0.00014409343,0.034222823,-0.042940423,-0.033375967,-0.0038264052,-0.0041782227,0.058482666,0.027721979,-0.037510604,0.014085157,-0.047324132,0.010660384,-0.04909256,0.03275328,0.0047293,0.050437562,-0.01764692,0.007995288,-0.030013464,-0.014346684,-0.018194884,-0.02421003,0.030959947,-0.0031040895,0.044285428,-0.011395154,0.019552339,0.018531134,0.024521373,0.018356781,0.020884888,-0.018406598,-0.014483675,0.0006857329,0.04301515,0.024496466,0.020374285,-0.02504443,-0.040524404,0.033874117,0.00014010434,0.009981656,-0.04015079,0.023948502,-0.018568495,-0.0035150624,0.0022837007,-0.001302192,0.013450017,0.011631774,0.01419724,0.012746382,0.0020548636,0.02548031,0.041495793,-0.02397341,0.031258836,-0.0047417535,-0.034870416,-0.015081454,0.013039044,0.0034590205,-0.035916526,0.013587008,-0.011046449,-0.038681254,0.022354426,0.011214574,-0.0017948922,-0.00035454181,-0.0050157355,0.015679233,0.03536856,0.019776506,0.024832716,0.02028711,0.018120162,0.007590542,-0.035991248,0.01878021,0.01764692,0.0038699934,0.020822618,0.049615618,0.0009083432,-0.0055014305,0.007976607,0.027796702,0.01604039,0.047996633,-0.05066173,-0.010847189,0.008163413,0.006600471,-0.013001683,-0.05649007,0.0044023897,0.054796364,-0.013200942,0.0034527937,-0.014919556,-0.0043712556,-0.010940593,-0.012491081,-0.0023848873,0.0029717688,-0.0050063953,-0.021918546,-0.012048974,0.01667553,-0.01697442,-0.024807809,0.010473578,-0.008213228,0.022503871,0.009495961,0.012646752,0.028444296,-0.0010087512,-0.0026401884,-0.02809559,-0.015181084,-0.0148572875,-0.00030317024,0.017161226,-0.01929081,0.02500707,0.020399192,0.023886234,0.025069337,-0.006687647,0.012902053,0.009713901,-0.015641872,0.0016750252,0.006774823,0.03492023,0.00699899,0.046178393,0.010205823,-0.0016703551,-0.00015936869,-0.033101987,-0.03569236,0.02839448,-0.011015315,0.028817907,-0.031433187,-0.04413598,0.014321777,0.015205991,-0.006382531,0.014309323,0.0126778865,0.056141365,0.01794581,-0.029540222,-0.01633928,0.013188489,0.02799596,0.016152473,0.025804106,-0.00965786,-0.016252104,-0.01023073,0.019240996,-0.01731067,-0.0137862675,0.0034092057,-0.00040980522,-0.037211712,0.0073290137,-0.007827163,0.007683945,-0.0011138296,0.03900505,0.006612925,-0.003926035,0.016027937,0.011538371,0.0053986874,0.0066751936,0.0014952247,0.009022719,-0.0071546617,0.031831708,-0.007111074,-0.03636486,0.018556042,-0.0051402724,0.04590441,0.030461797,0.02849411,-0.024919892,0.007011444,-0.005750505,0.005488977,-0.04406126,0.0029624284,0.028643554,-0.00441173,0.019514978,-0.017534837,0.029042074,0.001384698,-0.029091889,0.05125951,-0.020573545,0.044683944,-0.0116068665,0.034222823,-0.016750252,0.024396837,0.026576238,0.01526826,-0.017709188,-0.015118815,-0.0060307137,0.017497476,-0.013574554,-0.021744194,0.0008764305,0.040275328,-0.037759677,0.0153429825,-0.0013613472,-0.02859374,-0.04861932,-0.0069616293,0.0053737797,-0.033052173,-0.02066072,0.011581959,0.04463413,-0.025629755,0.032205317,0.017559744,0.011569506,0.03666375,-0.00030317024,0.003599125,-0.030561427,-0.035219118,-0.031184113,-0.0055325646,0.00015236347,0.019838775,0.0128522385,-0.004909879,-0.015455065,0.014134971,0.033400875,0.01160064,0.008480983,-0.03133356,0.0029624284,0.016488725,0.022491418,-0.010623023,0.013885897,-0.018506227,-0.011731404,-0.020075396,0.0056539886,-0.009857119,-0.021383036,0.020996971,0.021532482,-0.0061147762,-0.023076743,0.019527432,0.0116068665,-0.015778862,-0.01120212,0.028195221,-0.009483507,-0.009583137,-0.0031087596,-0.010697745,0.003916695,-0.004804022,-0.037286434,-0.0041844496,-0.0013146457,0.0023848873,0.023276001,-0.0153429825,0.039503198,0.013138674,0.013462471,0.0033936384,0.0131635815,-0.014334231,0.00495658,0.0018135728,-0.04403635,-0.01911646,0.02092225,-0.0031461208,-0.0077773477,-0.02615281,-0.0035524236,-0.01473275,-0.019303264,0.03307708,0.021781554,0.0077026254,0.033276338,-0.022777854,-0.02514406,0.023139011,0.027647257,-0.014956917,-0.02367452,0.0012874033,-0.004875631,-0.031159205,0.012005385,-0.011158532,-0.014583305,0.012378997,-0.01687479,0.046327837,0.0036022384,-0.0017466341,0.028319757,-0.035169303,-0.00915971,0.016999327,0.025305958,-0.031134298,-0.022043083,-0.015741501,-0.019365534,0.004526927,-0.03561764,-0.022416694,0.012061427,0.033101987,-0.0150316395,-0.0079392465,-0.036514305,0.029490408,0.05058701,-0.029913833,0.035169303,-0.028892629,-0.021943454,0.01128307,0.066004716,0.007403736,-0.01376136,0.031557724,0.024670819,0.007827163,0.009197072,0.045207,-0.013176035,-0.020573545,-0.027846517,0.015193538,0.016102659,-0.0150316395,-0.0026199513,0.028369572,-0.021906093,0.025530124,0.015890947,-0.033973746,-0.017360484,0.029316055,-0.00028410048,0.023711883,-0.022865029,-0.023637159,0.022715583,-0.013848536,-0.0003148456,0.008038876,0.010791148,0.009321609,-0.019564793,0.002708684,-0.014496129,0.0003220454,-0.006482161,0.010143555,0.013213396,-0.034994952,-0.0018057893,-0.01687479,0.008767419,-0.032205317,0.033600137,0.013151128,-0.052255806,-0.01814507,-0.03937866,-0.032902725,-0.024757994,0.038656346,0.017721642,-0.0136119155,0.005579266,0.03589162,0.03073578,-0.002588817,-0.015778862,-0.018369237,-0.011712723,0.06739953,-0.016961966,0.0061147762,0.004492679,0.007366375,-0.004732413,-0.0069616293,-0.010286773,0.024048133,0.021906093,0.011009088,0.030810501,0.026302256,-0.014483675,0.042392462,-0.0210966,0.0017404073,0.014309323,0.0023988977,0.011737631,-0.014595759,0.039528105,0.005018849,-0.0024907438,0.010454898,0.025492763,-0.03297745,-0.02682531,-0.0054858634,0.008225681,0.00075812015,0.022952205,-0.006279788,0.03345069,0.0042031305,-0.014271962,-0.020872433,0.0026059407,-0.033600137,-0.010591888,0.017709188,0.03863144,0.0010134215,-0.011843487,0.0038014979,-0.030038372,0.0075220466,-0.007621676,-0.0075345,0.0035399697,-0.034496803,0.003359391,-0.013512285,-0.042143386,-0.0020377398,-0.021744194,-0.02397341,-0.025729384,-0.032379672,0.005728711,0.038183104,-0.009321609,0.011874622,-0.0019723577,-0.0021498234,0.020934703,-0.018630764,0.024932345,0.016314372,0.007721306,0.018294513,-0.0073850555,-0.007683945,-0.01183726,-0.006918041,-0.02397341,-0.011943117,0.010915685,0.002845675,-0.015753955,0.011868395,0.03731134,-0.0043930495,0.01687479,0.012553349,0.0040910468,-0.001045334,0.026675867,0.0012593823,0.017634466,-0.023525076,0.010261864,0.007926792,0.036838103,0.024347022,0.008524571,0.022217436,-0.0068059578,-0.0028736957,-0.02655133,-0.008848367,-0.0150316395,-0.01754729,0.03703736,0.000035026085,0.0104984855,-0.012441265,0.00075345003,0.015928308,0.0011325101,-0.015828677,-0.005607287,-0.019004377,0.027298553,-0.010286773,-0.012024066,0.0057567316,-0.03820801,-0.01798317,-0.062966004,0.003144564,0.019054191,0.0035212892,0.011108718,-0.012528442,-0.0070176707,-0.027846517,0.0015473746,0.01798317,0.0017684281,-0.027871424,0.012447492,-0.025953552,0.0005611957,-0.012789969,0.03355032,-0.0008694253,0.029963648,0.003194379,-0.03472097,0.0037267755,-0.043338943,-0.0011838817,-0.030387076,-0.017248401,-0.019166274,-0.01150101,-0.009402558,0.00071141875,0.0032192864,0.011575732,0.025156513,0.0025000842,0.030312354,0.00612723,-0.015753955,0.041445978,0.008524571,0.02377415,-0.00088888424,-0.010728879,-0.007901885,-0.036738474,0.014620666,0.019265903,0.00062346435,0.002338186,0.031034669,-0.017796366,0.027946146,-0.004243605,-0.038432177,0.012347863,0.03529384,0.010398855,-0.03140828,0.008480983,-0.015554695,-0.001387033,0.022304611,-0.0036894144,-0.037784584,0.035542917,-0.009769943,0.034596432,-0.0037703635,0.011482329,-0.015305621,-0.006513295,0.018082801,-0.0054453886,0.026800403,-0.018107709,0.0150316395,-0.01195557,0.015542242,-0.0055419053,-0.019091552,0.00020684849,0.040026255,-0.028867722,-0.017273309,-0.018693034,0.008094918,0.002632405,0.014907102,0.032603838,-0.024135308,0.05260451,-0.018207338,0.01828206,-0.06969101,0.02685022,-0.008655335,-0.019851228,0.03267856,-0.043612923,0.0036738473,-0.01721104,-0.009819758,-0.005367553,0.018693034,-0.00024420966,-0.01851868,-0.0020361831,-0.011009088,-0.026750589,0.01546752,0.010579434,0.0030916359,0.017123865,-0.018456412,-0.020585999,-0.009589364,0.022989566,-0.025368227,-0.021121508,-0.0016843656,0.0217691,0.007721306,-0.021133961,0.033126894,-0.006793504,-0.009128576,0.029066982,0.022516325,-0.002845675,-0.030760687,0.03529384,-0.0039540557,-0.04714978,-0.01633928,-0.004941013,0.00783339,0.02585392,0.034496803,-0.0009970759,0.021806462,0.018194884,-0.004492679,0.042442277,-0.0030667284,-0.023823965,0.035169303,0.008468529,0.007864524,-0.000990849,0.025804106,0.005772299,0.030013464,-0.0010352154,-0.007055032,-0.0088047795,-0.0016314372,0.007030125,-0.011812353,-0.011793672,0.013387748,-0.023637159,-0.02682531,-0.022155168,-0.028020868,-0.022204982,0.019340627,0.005084231,0.019776506,-0.010037698,0.012640526,0.014222148,0.017895995,-0.010753787,0.013088859,0.017970717,-0.027746886,0.0011535258,0.017298216,-0.017186133,0.03479569,-0.0048694042,-0.033874117,0.0019910384,0.025829013,0.011413834,-0.022292158,0.02437193,-0.019975767,-0.0264517,0.022752944,0.041495793,-0.0074410974,0.00009753792,0.023562437,-0.034148097,-0.023226187,-0.03706227,-0.0234379,-0.028743185,-0.0036489398,-0.06451026,0.010897004,-0.015978122,-0.01784618,-0.04035005,0.017721642,-0.027871424,-0.008063783,0.009651632,0.016389094]},{"id":"guide-events-3","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Error Handling\n\n```javascript\nclient.on(Events.Error, (err) => {\n console.error('Client error:', err);\n});\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.011789527,0.011159377,0.027497437,0.033203155,-0.042071078,0.014115351,-0.05481156,0.0035431595,0.004262103,0.013278971,0.029376429,-0.0055195377,0.048258003,-0.002887231,-0.027130805,0.04566866,-0.022994732,0.019110719,0.0045857704,0.05678221,0.04844132,0.06021939,0.035425864,0.070301786,0.020519963,0.005296121,0.017495245,0.04408756,0.03757983,0.019328408,0.04995368,-0.015707912,0.0334323,0.008008629,0.018537857,-0.002098112,0.07153916,0.013943492,0.0013705754,0.0147111295,0.013290429,-0.0064561693,0.04521037,-0.012293646,0.003050497,0.03226366,-0.018686801,-0.013393544,0.0011772341,-0.0023014783,0.0159256,-0.021379258,0.043468866,0.038954705,-0.010185509,-0.012981082,-0.03576958,0.013668518,0.0052846638,0.009246013,0.021849006,0.014229924,-0.024610206,0.017541073,-0.013003997,-0.00508989,-0.0054593873,-0.031026276,0.025114326,0.027428694,0.00006735619,-0.000443611,0.023384279,-0.033936422,-0.015673539,-0.0093033,0.0070290323,0.036823653,0.014493441,-0.02518307,0.031072104,-0.03494466,-0.0733265,-0.014321582,-0.038908873,0.0011364175,-0.073693134,-0.014012236,-0.013794548,-0.0030705472,-0.00074901874,0.008678879,-0.013863292,0.061319288,0.032034516,-0.05485739,0.009744405,-0.008283603,0.023407195,0.015123591,0.06970601,-0.07653453,-0.030911703,0.0060608936,0.030109694,-0.0070576756,-0.022341669,-0.00006435761,-0.05769879,-0.008879381,-0.052795082,0.0280703,-0.03783189,0.05774462,0.008174759,-0.027084976,0.029307686,-0.0075446097,0.0036949683,-0.018744087,-0.02882648,0.031347077,0.010609428,-0.03792355,-0.036525764,-0.026076736,0.018423283,0.01231656,-0.010368826,-0.039573397,0.035082147,0.023315536,0.04090244,-0.03265321,0.020703278,-0.028941054,0.0012538545,0.038450584,-0.032424062,0.010729729,0.04010043,-0.04126907,0.016784895,0.019328408,0.02891814,0.008684607,-0.029513916,0.0077737547,-0.0006580767,-0.034050994,-0.017254641,0.026672514,-0.024060259,-0.003276778,-0.019030519,0.0074472227,0.008684607,0.01587977,-0.041544046,-0.031599138,-0.0017816048,0.016555749,0.020519963,0.0021596947,-0.06649797,-0.014539271,-0.03281361,0.00479773,-0.008564306,0.018744087,-0.0036090387,-0.0063072247,-0.009034054,0.040489975,0.021734433,-0.04500414,0.03858807,-0.0044511477,-0.021344885,0.057057183,-0.020611621,0.0023072069,0.0061067226,0.014401783,-0.018091023,0.007745112,0.018904489,0.025205985,-0.045118712,-0.07268489,-0.02543513,-0.0042936103,0.00033852638,0.013909121,0.026397541,0.0023329856,-0.023693625,0.011291135,0.0048922524,0.012053044,0.01307274,-0.0152839925,0.039985858,0.00044289493,0.01529545,-0.01919092,-0.016624492,0.004769087,0.048166346,-0.050457798,0.015157962,0.017827505,-0.013840377,-0.009629832,-0.014252839,0.007160791,0.0065764706,0.030247182,-0.033455215,-0.04848715,-0.046149865,-0.013049826,0.017873334,-0.033592705,-0.008077373,0.017816048,0.053757492,0.01646409,0.0033598433,0.006055165,-0.021127198,0.017987907,0.0185264,0.03464677,0.05861537,-0.004935217,0.048807953,-0.0006408908,-0.016154746,0.0064217974,0.0318512,0.010151138,-0.012156159,0.002092383,0.028184874,0.005980693,0.028941054,0.019454436,0.019843984,0.058936175,0.015054847,-0.034853004,0.05137438,-0.026535027,0.01516942,0.0064217974,0.03464677,-0.025274727,-0.033501044,-0.03318024,-0.016945297,-0.032676123,-0.00808883,0.023086391,-0.07305153,-0.030957531,0.010128223,0.03927551,-0.022547899,-0.030865874,-0.008369532,-0.03829018,0.028001558,-0.06411486,-0.026466284,0.014310125,-0.005150041,0.060998484,-0.051282723,-0.0122363595,-0.028986882,-0.0400546,-0.009160084,0.0027769548,0.030934617,0.024014428,-0.058340397,-0.09188727,-0.002543513,-0.005187277,0.020920968,-0.026305882,-0.019992929,0.017334843,-0.0009008275,0.066222996,0.047662225,-0.000506984,0.014321582,-0.0126144495,-0.02543513,-0.011961386,-0.02811613,-0.007051947,-0.0040415507,0.0099048065,-0.03288235,-0.02367071,0.032630295,-0.03331773,-0.009097069,-0.007344107,-0.011474452,0.022055237,-0.0042850175,-0.01969504,0.018881574,0.022353126,0.044614594,-0.012259275,0.0045284843,-0.0465165,-0.004030093,-0.004007179,-0.05174101,-0.023716541,-0.051282723,0.009606917,0.05481156,0.06558139,0.03636536,-0.032790694,0.012201988,0.05421578,0.020210616,0.021768805,-0.02057725,0.04145239,-0.026512112,-0.029697232,0.004869338,-0.027795326,-0.032561548,-0.016647408,0.029743062,-0.06883525,0.012602992,0.00829506,-0.011778069,-0.029216027,-0.03524255,0.0016154745,-0.07671785,-0.020554334,-0.039183848,0.026603771,-0.010638071,-0.015146505,-0.007441494,0.0075904387,-0.06489395,0.0029559745,0.013256056,-0.016693236,0.014092437,0.019328408,-0.037946463,-0.018297253,0.060494363,-0.023739455,0.013863292,0.010861488,-0.04271269,-0.011474452,-0.046539415,0.012476962,-0.028139045,0.04931207,0.021333428,0.0008707522,-0.014642386,0.022479156,0.0016584392,-0.056919698,0.013210228,0.0039814,-0.032149088,0.013897663,-0.014848616,-0.020302275,0.0386339,-0.016395347,-0.03994003,0.017415045,0.023876943,0.00720662,0.018675344,0.022971818,0.020348104,-0.006759787,0.033638533,-0.00089653104,0.0063587823,0.02811613,0.042483542,-0.037396517,-0.024793522,0.049678706,-0.018904489,-0.035609182,0.012064501,-0.007745112,0.028849395,-0.017942078,-0.0316908,-0.070668414,0.036846567,-0.039733797,0.018652428,-0.017415045,-0.03301984,-0.027176633,-0.011445808,0.035998728,-0.017197356,-0.012396761,0.018205596,-0.026580857,0.047433082,-0.043514695,0.02011896,-0.024289403,-0.028986882,0.04211691,0.0126144495,-0.0075274236,0.005078433,-0.091795616,0.01370289,0.019889813,-0.043995902,0.0037751691,0.00077551365,0.049495388,0.015948514,-0.028986882,-0.03666325,0.010489127,-0.026260054,0.0048750667,-0.005135719,-0.0400546,0.0033569788,-0.014103894,-0.054444928,-0.019041976,0.027795326,-0.039000534,0.0028299447,-0.009108527,-0.008959582,0.0143330395,-0.037098628,0.047295593,-0.026397541,0.0034629586,-0.0096183745,0.03716737,0.00997355,-0.043331377,0.0001131405,0.026076736,0.046287354,-0.019660668,0.013977864,-0.00888511,0.0016584392,-0.044270873,0.032951098,-0.016292231,0.018365998,0.02811613,0.031186678,-0.004843559,0.0049982322,0.061319288,-0.018136851,-0.023304079,0.011044804,0.028895224,-0.040512893,0.023074932,0.05036614,-0.009927721,-0.012007214,-0.02216981,-0.018904489,-0.0185264,0.029284772,0.003067683,-0.025916334,-0.016739065,-0.096790984,0.04995368,0.006026522,0.0013891935,0.00883928,-0.014905903,0.044270873,-0.0032452706,0.007739383,-0.016269317,-0.03418848,-0.020749109,-0.0293306,-0.027886985,-0.003884013,-0.015891228,-0.030522157,-0.02589342,-0.038702644,0.03301984,0.03318024,-0.0022513526,-0.009818877,-0.024083173,-0.0029645676,0.02543513,0.021803176,-0.022272924,0.01370289,-0.009360586,-0.0027927086,0.021459458,-0.015902685,0.02619131,0.008157574,-0.005087026,0.014882988,-0.06351908,-0.013679976,0.04120033,-0.029949293,0.0073555647,-0.028711908,-0.022410411,-0.0062957676,0.009658475,-0.0032051702,0.020393932,-0.018698258,-0.060448535,0.0053190356,-0.03909219,0.021218857,-0.026970403,-0.0013705754,-0.018927403,-0.017942078,-0.0063587823,0.0053791865,-0.005359136,0.017392129,-0.025412215,-0.016246403,-0.013874749,-0.0134737445,-0.008272146,-0.011972843,0.016487006,-0.006490541,0.019374236,-0.0007812423,0.048028857,0.009543902,-0.007120691,-0.008403905,-0.02862025,0.009309028,-0.019374236,0.008982496,0.02765784,-0.016315147,0.07039344,-0.03716737,-0.0253893,0.02593925,0.015352736,0.026603771,-0.0078081265,0.043812584,-0.021986494,-0.014756958,-0.016154746,0.012350933,0.0108042015,0.018022278,0.04807469,0.00025188082,0.0045886347,0.018778458,-0.013485202,0.00011296148,0.030567985,-0.019866899,0.02422066,0.00502974,-0.0029230348,-0.006742601,-0.045508258,0.014837159,0.006725415,-0.005339086,-0.020096045,-0.014436155,0.0023372823,0.009280385,-0.0011607643,-0.00988762,0.030911703,-0.041291986,0.0074644084,0.029216027,0.020439763,0.00704049,0.030659644,0.018251425,0.022651015,-0.002579317,-0.009899078,0.0047776797,0.039871287,0.008272146,-0.014012236,-0.0039040633,0.008495563,-0.018205596,-0.033386473,-0.036227874,-0.022971818,-0.027084976,-0.011388523,0.013863292,-0.022020865,0.032699037,-0.025137242,0.016223488,0.011600481,-0.009074154,0.0043795398,-0.033203155,-0.0055997386,-0.0266496,-0.011027618,0.014344497,-0.028047387,0.0015911278,-0.014905903,0.003167934,0.021986494,-0.008037272,0.048258003,-0.026787087,0.03331773,0.002715372,0.019889813,0.00035571228,-0.0038754202,-0.01680781,0.0016484141,-0.035425864,0.037534002,0.009148627,0.003377029,0.021963578,0.008879381,-0.010666714,-0.053986635,-0.022788502,0.014012236,-0.030361755,-0.004064465,-0.060356878,-0.0332719,-0.011147919,0.006650943,-0.022524985,-0.008982496,0.0009924857,0.030247182,0.0126144495,-0.01617766,0.035815414,0.015089219,-0.0008714683,0.010151138,-0.017231727,-0.004316525,0.015593339,-0.047158107,0.008873653,0.007424308,0.039917115,-0.010311539,-0.010174052,0.018686801,0.017071325,0.010294354,0.039619226,-0.023579054,-0.0097100325,-0.0105177695,-0.027703669,-0.015089219,-0.03483009,0.0034400441,-0.024862267,0.010443298,0.018148309,-0.028941054,0.014653843,0.037900634,-0.019087804,-0.023235334,-0.01944298,-0.00963556,0.00959546,0.014310125,-0.014401783,-0.017541073,-0.008478377,0.024289403,0.022089608,0.008581492,-0.01767856,0.010615157,-0.035059232,-0.01948881,-0.019924184,-0.013691433,0.009767319,0.0016799216,0.0055625024,-0.013233142,0.029353514,-0.007286821,-0.018881574,0.018446198,0.011170834,-0.01009958,-0.034623858,0.0063587823,-0.039458822,-0.012877966,0.009612646,-0.017816048,0.0075961673,0.0033226071,-0.018778458,-0.01311857,0.008455462,0.007756569,-0.014447612,0.05719467,-0.01365706,-0.033042755,-0.02011896,-0.012270732,-0.0029072813,0.012568621,0.01441324,-0.04197942,-0.021860464,0.023785284,0.021482373,-0.0019778104,-0.082767285,-0.034921747,-0.02187192,-0.0135654025,-0.010867217,-0.002162559,0.021436544,-0.0073842076,0.0082377745,0.007510238,-0.033890594,-0.0013097087,-0.07511383,-0.037694406,0.0016584392,-0.06631465,0.007722197,-0.0035345664,-0.029422259,-0.038496412,-0.010735458,-0.08427965,-0.021035539,0.0018775595,0.005568231,0.0048005944,-0.03787772,0.009182999,0.027062062,0.0052445633,-0.039779626,-0.0066681285,0.025022669,-0.023831112,-0.03322607,0.012465505,-0.0386339,0.032584462,-0.0054250155,-0.025274727,-0.0000642681,0.036686163,-0.02836819,-0.010586513,0.032194916,-0.00080988545,0.04172736,-0.0016025851,0.0054078293,0.029720148,0.035677925,0.03251572,0.0097100325,0.0017959264,-0.01777022,0.037648574,-0.0004325118,-0.01055787,-0.0345322,-0.007676368,-0.069568515,0.014504898,0.0199471,0.0036634607,0.007109233,-0.0051070764,0.0119843,-0.013290429,0.0077279257,-0.012018672,-0.011044804,-0.027084976,0.006055165,0.010901588,-0.0061181798,0.03079713,0.040673293,-0.006605114,0.024747694,-0.018194137,-0.023269707,-0.010489127,-0.011451537,-0.058982003,-0.025205985,-0.008604406,-0.0016971075,-0.02983472,-0.0009015436,0.014390326,0.018686801,0.003230949,0.041475303,0.013152941,0.031736627,-0.0037952194,0.029055625,0.0021396445,0.0020179108,-0.0037150185,-0.0038782845,-0.004559992,0.010397469,0.0063072247,0.01428721,0.042300224,-0.0019434387,0.016693236,-0.009389229,-0.0015452987,-0.0025692917,0.014882988,-0.017025497,-0.0019147955,0.0053734574,0.069247715,-0.003548888,-0.058752857,-0.017117156,-0.020050215,-0.0075961673,-0.014126808,-0.019912727,0.012156159,0.018159766,-0.0108557595,0.009211642,-0.011514552,-0.01617766,-0.028757736,0.012774851,0.01587977,0.0023745184,-0.0017028361,-0.012018672,-0.017323386,0.051007748,0.047203936,-0.00745868,-0.0067827012,0.015329822,0.027818242,0.027932813,-0.011056261,-0.034005165,-0.014390326,0.03645702,-0.0042706956,0.0018116802,-0.017575447,0.02614548,0.003013261,0.019179463,0.015387108,0.015776655,0.010156866,-0.013301886,-0.020371018,0.058065422,0.012774851,0.017117156,-0.00519587,-0.008386718,-0.04168153,-0.046837304,-0.0057887835,-0.010454755,-0.023739455,0.040169172,0.032011602,0.004098837,0.012339476,-0.018079566,-0.006290039,-0.044683337,-0.0033798935,0.04374384,0.030476326,0.029949293,-0.017930621,-0.0097615905,0.0052101915,0.009039783,-0.0068571735,0.040169172,0.010534956,-0.014470527,0.00273399,0.008529934,-0.004877931,0.020416848,-0.0013111408,0.013622689,0.009830334,-0.011869728,0.017426502,0.031186678,0.015593339,0.022398954,-0.04287309,0.03838184,0.014734044,-0.029674318,-0.010523499,0.054903217,0.019832527,0.0016770572,0.025572617,0.008495563,-0.015398565,0.014149724,-0.0016426855,0.030315924,0.05962361,-0.014573642,-0.025549702,0.00530185,0.011417165,-0.0026394676,-0.00006717717,-0.00045471024,-0.019786699,-0.020107502,-0.005794512,-0.01248842,0.0452562,-0.0119843,-0.031736627,0.034371797,-0.00025760947,0.010271438,-0.025847591,0.017357757,-0.007229535,-0.0022141165,0.016910924,0.036640335,-0.019019062,0.00905124,-0.004299339,0.013462287,0.03418848,-0.01403515,0.020829309,0.03246989,-0.017415045,-0.009417873,-0.022925988,-0.04145239,-0.005757276,-0.0090455115,0.04287309,-0.0017443687,0.026466284,0.006083808,0.048624635,-0.024449805,0.012156159,0.022272924,-0.0030705472,0.015684998,-0.0067941584,-0.012201988,-0.021528203,-0.042483542,0.0000506626,0.0045571276,-0.008564306,0.048624635,0.0036863752,0.030613814,0.007790941,-0.017105699,0.0441563,0.003302557,-0.022868702,-0.015478766,-0.012935253,0.007378479,0.006679586,0.0072467206,0.019007605,-0.016727608,-0.009778776,-0.015226706,-0.013049826,0.01764419,-0.018159766,0.028941054,0.021734433,-0.006524913,-0.007378479,0.0039985855,0.0006820654,-0.01005948,-0.019786699,0.0028342411,0.016040172,-0.018503483,0.0055882814,-0.03008678,-0.023876943,0.017655646,-0.0031077834,0.010741186,0.028963968,-0.022719758,-0.023922771,-0.026947489,0.03842767,0.029513916,0.031095019,-0.04395007,-0.042643942,-0.013519574,0.015215249,-0.008512748,-0.00867315,0.0133248,-0.0073842076,0.0147111295,0.012820681,-0.021127198,-0.030820046,-0.00018421136,-0.04463751,0.0033655718,0.010878674,0.010787016,0.046906047,0.008816366,-0.029170198,0.055682313,0.04926624,-0.031163763,-0.027359951,0.011915556,-0.017162984,-0.020588707,-0.0038525057,0.012408218,0.014871531,0.020073129,0.011096362,0.0048836595,-0.0053734574,-0.017369214,-0.01755253,-0.050091166,0.0024131867,-0.008203402,-0.0030762758,-0.013611232,0.0039785355,-0.007120691,0.0032996926,-0.012545706,-0.07131002,0.0011514552,-0.021505287,0.048258003,-0.0046659713,0.004181902,-0.0064676264,0.0046487856,0.00745868,0.024862267,0.05091609,-0.021035539,-0.039183848,0.02053142,0.06173175,-0.0017644189,-0.015547509,0.015387108,0.040283747,0.020840766,0.004479791,0.026030907,0.007882599,-0.03675491,-0.014745501,0.03519672,-0.00745868,-0.0035746668,0.011743697,0.015662082,-0.029055625,-0.026626686,0.00093663146,-0.02032519,-0.032676123,0.004981046,-0.0070347614,-0.012557163,0.009108527,-0.03240115,-0.009629832,-0.0372132,-0.0008993954,0.04889961,0.015547509,0.026810002,0.017541073,0.011010433,-0.03984837,0.017964993,-0.04807469,-0.008071643,0.010907317,-0.014905903,-0.029353514,-0.005416422,0.026328797,-0.026489198,0.005768733,0.023785284,-0.016223488,-0.005628382,-0.007911242,-0.021860464,-0.009223099,0.02057725,-0.0305909,0.010638071,-0.004866474,0.0359529,-0.013817462,0.0100480225,0.00019226724,-0.0051529054,0.007905513,0.047295593,0.006444712,0.0028986882,0.007424308,0.03606747,0.006988932,-0.0033283357,-0.009125712,0.006324411,-0.0008048729,0.022822874,0.028780652,0.02376237,-0.016979668,0.00586612,-0.018583685,-0.014504898,0.0012602992,0.0059749642,-0.011251035,-0.046837304,0.027222464,-0.0038954704,-0.01160621,0.008690336,0.031874113,-0.039367165,-0.015180877,-0.017059868,0.007240992,-0.005041197,0.03402808,-0.02346448,0.023326993,0.010546413,-0.0018732629,-0.01575374,-0.008575764,-0.023361364,-0.009899078,-0.00019924901,-0.008197674,0.038656816,0.011262492,-0.0086674215,-0.0058460697,-0.011789527,-0.033157326,-0.003431451,-0.0061640088,0.0016555749,-0.0037694403,-0.049495388,-0.03480717,0.00988762,-0.0145163555,-0.05526985,0.008518477,-0.012190531,0.022066694,0.028047387,0.0022714029,-0.008690336,-0.01445907,0.045920722,0.01605163,0.037808977,0.025022669,0.0032624565,-0.007676368,0.030315924,-0.021356344,-0.013679976,0.010494855,0.00087648083,0.014184095,0.004780544,0.015811026,-0.01479133,-0.02300619,-0.0057171755,0.009246013,0.0019334136,-0.009658475,0.042437714,0.010746915,-0.012282189,0.05334503,-0.023739455,-0.022158353,0.0077279257,0.039710883,0.006037979,0.020302275,0.035334207,0.012098873,0.006524913,-0.0017271828,-0.011995757,-0.018388912,-0.0074185794,-0.030247182,0.0062843105,0.030499242,0.022112522,0.051145233,0.032172002,0.023178048,0.006925917,-0.024793522,-0.020222073,-0.012270732,-0.0008392447,0.05343669,-0.024908096,-0.01810248,0.01236239,0.0031564767,0.03226366,-0.04555409,-0.01671615,0.003866827,-0.028276531,-0.011743697,-0.012786308,-0.011302592,-0.029216027,-0.016704693,-0.01646409,0.0018818559,-0.0047547654,0.02731412,-0.0359529,-0.048028857,0.015341279,0.0023301214,-0.025755933,0.02614548,-0.0059520495,0.001891881,-0.029765977,-0.008764808,0.0066566714,-0.029307686,-0.012717565,-0.05371166,-0.0039441637,-0.034509283,-0.0021253228,0.0024948197,0.035861243,0.006553556,0.039367165,0.0016183387,-0.0037866263,0.02216981,-0.024953924,-0.0119499285,0.013932035,-0.0026466283,0.007120691,-0.027932813,-0.008060186,0.04404173,0.0226281,-0.011205206,-0.008552849,0.011039075,-0.008862195,-0.00494381,0.007441494,-0.022811417,0.0058059692,0.008031543,0.0020436898,-0.051282723,0.016154746,0.0032825067,-0.013210228,-0.011972843,-0.021860464,-0.0065936563,0.05274925,0.010133952,0.036479935,0.002056579,0.01840037,-0.016326604,-0.0072696353,0.037236113,0.007086319,0.020164788,-0.021333428,-0.033753105,0.031026276,-0.004580042,0.0018890167,-0.046058208,-0.023189506,0.052520107,0.0004010043,-0.025778849,-0.0075159664,0.018343082,0.010655257,0.015261078,0.018870117,-0.003884013,-0.0062499386,-0.020542877,0.009492344,-0.027634924,0.0007339811,-0.017208813,-0.00586612,0.018675344,-0.035082147,0.02376237,-0.026878746,-0.001149307,-0.008638779,-0.0018661021,-0.029055625,-0.01755253,0.021551117,-0.021585489,-0.008260689,0.002732558,-0.017987907,0.0011342693,0.009211642,0.0040701935,-0.009830334,0.021356344,0.011617667,-0.019248206,0.022261467,0.009578275,0.0073555647,-0.018572228,0.006003607,0.026305882,0.008988225,-0.0052732066,0.005923406,0.00086932007,-0.029147284,-0.025297644,0.036594506,0.02912437,-0.036984053,0.010420383,0.026305882,-0.01755253,0.038610987,0.024151916,0.0061754663,0.022937447,-0.0011306889,0.006971746,-0.018835746,-0.036594506,0.0059635066,0.053161714,0.030453412,-0.019305494,-0.0025478094,0.006708229,0.0532992,0.02719955,-0.027382866,0.038038123,-0.007979985,0.038610987,0.0005685668,-0.049174584,-0.024358148,-0.0074930517,-0.013256056,0.006146823,-0.020474134,-0.02237604,-0.025068497,0.0019205242,0.0030476328,0.008696064,0.012007214,-0.002433237,0.03686948,0.009108527,0.0017930621,0.012637364,0.036823653,-0.007928428,-0.01956901,0.009555359,0.004262103,0.040742036,0.032011602,-0.004700343,-0.0042019524,-0.013084197,0.023304079,-0.028941054,0.056507234,-0.034509283,0.002526327,0.0044396906,0.04642484,-0.03959631,-0.0072352635,0.001747233,-0.005817427,-0.025755933,-0.006290039,-0.016670322,-0.021757348,0.006215567,-0.033890594,-0.017300472,-0.02065745,0.01542148,-0.027680755,0.014882988,-0.016200574,0.015490224,-0.011113548,-0.0015166556]},{"id":"guide-events-4","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Gateway Dispatch Events Reference\nAll events the Fluxer gateway can send. Use GatewayDispatchEvents from @fluxerjs/types for type-safe checks.","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.025175834,-0.0092202565,-0.011427072,-0.010725727,0.01559886,0.019819017,-0.07376205,-0.0048187175,0.022140708,0.0072310995,-0.0095406985,-0.0014442549,-0.00004118885,0.0021010092,-0.007345975,0.029722478,-0.03458352,0.032793883,-0.00580725,0.08285534,0.0062758205,0.0031107028,0.030496376,0.031294458,-0.05997701,-0.012962773,0.033253383,0.050109826,0.028851844,0.009589067,0.07235936,-0.017412681,0.017847998,-0.015018437,0.008258931,0.02633668,0.018005196,0.012074001,-0.04007335,0.01893629,-0.029480636,-0.032068353,-0.0149217,-0.0115721775,0.012890221,0.0072552837,-0.0370745,-0.022648577,-0.043797728,0.04996472,-0.0022657646,-0.036615,0.04188717,0.010127167,0.043821912,0.01282976,-0.04638545,-0.043507516,-0.0033616147,0.018633988,0.010169489,0.0072190072,0.02119752,0.027255682,-0.014933792,0.04486184,-0.018210761,0.021294257,0.03494628,0.022527656,0.004516414,0.013531104,0.028682554,-0.07535821,-0.011898666,0.0076785088,0.023809422,0.03119772,-0.016808074,0.0132046165,0.028876029,0.0055774995,-0.06524918,-0.049311746,-0.015792334,-0.01927487,-0.023422474,-0.02701384,-0.015526307,-0.010979663,-0.015671413,0.004836856,-0.025925547,0.0955279,0.041137457,-0.014631488,0.036300603,-0.04611942,-0.018198669,0.034220755,0.091997,-0.09736591,0.014776594,-0.0536891,0.041451853,-0.025079098,-0.024002897,0.019625543,-0.022576025,-0.024268923,-0.07946954,-0.027957026,0.028730923,0.057800427,-0.0042534103,-0.020363163,0.053930942,-0.03262459,0.042806175,0.042564332,-0.037727475,0.008700294,-0.018065656,0.0052872878,-0.03741308,-0.019020936,0.026917102,-0.023313645,-0.06365302,-0.03576855,0.044619996,-0.08242002,0.05330215,-0.03052056,-0.00046214645,-0.0009787076,-0.0058314344,-0.0027887498,-0.021499824,-0.011124768,0.002386686,-0.04142767,0.03588947,0.029722478,-0.028077947,-0.027449157,-0.022394642,-0.0018349822,0.023083894,0.008803078,-0.03453515,0.02684455,-0.0043592164,-0.0027917726,-0.013676209,0.016082546,0.008960275,0.0014737295,-0.02255184,-0.04611942,-0.007279468,-0.0077571073,-0.04539389,-0.00337673,-0.042515963,-0.047667213,-0.039372005,-0.040097535,-0.035212312,0.032600407,0.004576875,-0.021777943,-0.0055019236,0.04058122,0.027279867,-0.0007028556,-0.032987356,0.018234946,-0.029456452,0.03448678,0.0014865774,-0.009836955,-0.02067756,-0.028416527,0.024885623,0.01673552,0.013833407,0.05165762,-0.053543992,-0.058525953,-0.016602507,0.047110975,-0.020205965,0.036881026,0.04053285,-0.013567381,-0.010925248,-0.015562584,0.03068985,-0.0016399964,-0.013047419,-0.04459581,0.028513264,0.01655414,-0.0039359913,0.02006086,-0.0128055755,0.01792055,0.036711734,-0.009976015,0.009685804,0.030448006,-0.002856768,0.0054868083,-0.042080645,0.076712534,-0.02373687,0.06007375,-0.024619596,-0.00031023895,-0.009589067,0.0031046567,0.020072952,-0.03429331,-0.01621556,0.019686002,0.0013286239,-0.0015810472,-0.036929395,-0.008325438,-0.021330534,0.012624194,-0.02378524,-0.056978162,0.03787258,0.0031076798,-0.01226143,-0.045079496,0.029287161,0.008131964,-0.010502023,-0.03673592,0.018065656,-0.02882766,-0.008222654,0.013216709,-0.002781192,-0.007533403,0.013688302,0.05605916,0.041814618,0.036977764,0.057074897,-0.019178133,0.030738218,-0.015852794,0.035816915,-0.010725727,0.0060430467,0.0027554962,0.045829207,-0.018452605,-0.007527357,0.024547042,-0.027134761,-0.028585818,0.012074001,0.009226303,-0.017231299,-0.008125918,0.024571227,-0.0048036026,0.027666815,-0.035647627,-0.052286413,-0.030931693,0.05127067,0.013095787,-0.0049184775,0.00658417,-0.019033028,-0.037485633,-0.00048028465,-0.01813821,0.017098285,0.0579939,0.006759506,-0.04176625,-0.0010814908,0.017545694,-0.04345915,0.035454154,-0.00057551026,-0.013265077,0.053495623,0.06302423,0.07395553,0.0029928046,0.028077947,0.0030396616,-0.004235272,-0.02289042,-0.05610753,0.005093814,0.01690481,0.014849147,-0.019867385,-0.015550491,0.0486104,-0.030206164,0.0013520523,-0.0018969544,-0.04471673,-0.04619197,-0.020363163,0.00638465,0.04945685,0.049577773,0.054946683,-0.0077933837,0.019831108,0.00097341725,0.033712886,-0.043362413,-0.0064572026,-0.04667566,-0.044499073,-0.017412681,0.031004246,0.04810253,0.013156247,-0.01712247,0.011269874,0.028876029,-0.01232189,0.007376205,-0.0050545144,-0.014486383,-0.0069953026,0.041814618,0.01802938,-0.03187488,-0.05871943,-0.041742064,0.005045445,0.008095687,-0.01316834,-0.027932841,0.013712486,-0.0036548492,-0.03344686,-0.0022173962,-0.05131904,-0.04870714,0.000010562909,-0.047231898,0.0027494503,-0.016941087,-0.04287873,0.0058314344,-0.02819887,0.014063158,0.019166041,0.03197162,-0.040315192,-0.0014102458,-0.01598581,-0.0050635836,0.024414029,-0.04544226,0.04757048,0.011040123,0.0033676608,-0.0116145,-0.02475261,-0.04159696,-0.008531004,-0.033978913,0.028102132,0.0259981,-0.014063158,0.05267336,0.013470643,-0.038404636,-0.006251636,0.0055714534,-0.022769498,-0.005027307,0.0076785088,0.0029429244,0.040653773,-0.01746105,-0.019939939,-0.0029247862,0.025079098,-0.010266227,0.05639774,0.013107879,0.010846649,-0.0113303345,0.02662689,-0.007890121,-0.0026648052,-0.008071503,-0.018380051,-0.014933792,-0.022817867,0.051802725,0.024123818,-0.06776435,-0.0068804272,0.015018437,0.02582881,0.015743965,-0.021221705,-0.029311346,0.046482183,-0.00039148302,-0.020314794,0.0077933837,0.010121121,-0.0007636942,-0.039517112,0.049867984,-0.0061095534,-0.021681206,0.014933792,0.0074850344,0.014123619,-0.057316743,-0.04328986,-0.015610952,0.035865285,0.03182651,0.058816165,-0.010562484,0.052334778,-0.053882573,-0.013156247,0.00785989,-0.0049608,0.009298855,0.039081793,0.026965471,-0.01184425,-0.00038657058,-0.01121546,0.020193873,0.020109229,-0.027207313,-0.035816915,-0.004443861,-0.008446359,-0.004171788,-0.06969909,-0.001913581,0.003078961,0.04832019,0.059348222,-0.011300105,-0.03622805,0.032140907,-0.028851844,-0.0015137848,-0.023132263,0.015949532,0.01944416,0.0028053764,0.01904512,0.0303029,-0.0073096985,-0.0047250036,0.015610952,0.036881026,-0.0012492691,-0.025925547,-0.016771797,-0.0130836945,0.057558585,0.020822665,0.0009892882,0.011028031,0.009371408,-0.004501299,0.04911827,0.0886112,0.0035097434,-0.00085022853,-0.05770369,-0.01282976,-0.02481307,0.011989356,0.021306349,-0.0122070145,0.02316854,-0.027400788,-0.03475281,-0.017775444,-0.00062123366,-0.0004919989,-0.037896764,-0.057897165,-0.034003098,0.02316854,0.037679106,0.0041234195,0.00029210074,-0.009806725,0.0005218514,-0.04070214,0.002640621,-0.014897516,-0.009450007,0.0024108703,-0.026167389,0.014462199,-0.0030865185,0.013373906,0.008748663,0.0064269723,-0.007037625,0.023047619,-0.010242042,0.0028476987,-0.01932324,0.0056772595,0.008083595,-0.043821912,0.030036874,-0.007823614,0.020834757,-0.029456452,0.004138535,0.019383699,0.013579473,0.030907508,-0.010502023,-0.005377979,-0.005970494,0.004262479,-0.025224203,0.04130675,0.007847798,0.014087343,-0.017509418,0.014256632,-0.001422338,0.008639834,-0.022261629,0.014631488,-0.009165842,-0.0332292,0.0006057406,0.002909671,0.026433418,0.056542844,-0.0067111375,-0.01633648,-0.008017088,-0.002828049,-0.011058262,-0.015187727,0.011747514,0.0061216457,0.014546844,0.003473467,-0.022007694,0.00017807564,-0.014123619,-0.009395592,-0.012382351,0.028464897,0.0059372406,0.0018591664,-0.009335131,-0.019153949,-0.02921461,-0.014498475,-0.008023134,0.014728226,-0.010447608,-0.04358007,0.010078798,0.053543992,-0.05770369,0.016227651,0.0016626691,0.002039037,0.0025831833,-0.009534652,0.0049094087,-0.006493479,-0.014051066,-0.009316994,-0.0003285661,0.009486283,-0.011916803,0.00624559,-0.018452605,0.014196171,-0.01773917,0.00030494865,-0.028126316,-0.036977764,0.035647627,0.008706341,-0.0153570175,0.0118502965,0.0015795357,-0.0159979,0.011021985,0.030157795,-0.023325738,-0.01333763,-0.0020722903,0.00099609,0.0021191475,0.026941286,0.0259981,-0.016009992,0.0030850072,-0.009673712,-0.014123619,-0.0017730099,0.009504422,0.0490699,0.003382776,-0.0027615423,-0.0053477488,-0.034728624,0.028876029,-0.023869883,0.021681206,-0.0013747251,-0.030665666,0.0012908359,-0.0055140154,-0.014897516,-0.001776033,-0.025345124,0.020435715,-0.008041273,0.028005395,0.0049063857,0.02255184,-0.0327697,0.001105675,0.041064907,0.0031046567,0.018343776,-0.031173535,0.015006345,-0.004912432,-0.008458451,0.034897916,-0.0026239944,0.011191275,-0.010780143,-0.011457302,0.0006495746,-0.010635037,0.05064188,-0.007805476,0.038694847,-0.006662769,0.007726877,0.004785464,0.027352419,0.0024864462,0.015973717,0.011789836,0.03775166,0.04916664,-0.0054263477,-0.034462597,-0.00075878174,0.0051875277,-0.023011342,0.014861239,0.021657022,-0.023869883,0.05838085,-0.03373707,0.032068353,0.01989157,-0.041862987,0.019371608,-0.026651075,0.01746105,0.025611151,0.0025287687,0.017013641,0.04793324,0.004658497,-0.010659221,0.0031893018,0.008452405,0.0144017385,-0.023108078,-0.021209612,0.0119288955,0.010846649,0.019903662,-0.027570078,0.012049817,-0.038791582,0.033664517,-0.0030079198,0.045756657,-0.053495623,0.00763014,-0.004507345,-0.034462597,-0.029891768,-0.013470643,-0.00641488,-0.03917853,-0.021330534,0.030448006,-0.02582881,-0.009165842,0.052238043,-0.009564882,-0.0003495384,-0.00024996718,-0.008428222,0.02633668,0.018839553,-0.054753207,-0.031512115,-0.0037515862,0.02233418,0.00065146404,0.009589067,-0.041113272,0.0055805226,-0.00056039507,-0.011959126,-0.034607705,-0.02667526,-0.002252161,0.019383699,-0.0144380145,-0.022902513,0.0118502965,-0.0155142145,-0.016263928,-0.0023821515,-0.022636484,-0.0012228176,-0.013047419,0.007938489,-0.03192325,0.005822365,-0.012745115,-0.006324189,0.0061125765,-0.0045587365,0.024885623,0.02058082,0.017811721,0.028392343,0.005997701,0.028634187,-0.043434966,-0.0011993891,-0.019903662,0.0003232758,0.015635137,0.012575825,0.02316854,-0.0110522155,-0.010677359,0.035599258,0.03487373,-0.0048489477,-0.0353816,-0.041234195,-0.022527656,0.0068804272,-0.021173336,-0.010514115,0.022201167,-0.03380962,0.013144156,0.0041143503,-0.0054898313,0.010139259,-0.039831508,-0.043265674,0.007116224,-0.019794833,-0.020955678,-0.02679618,-0.03888832,-0.020750111,-0.0015674436,-0.096156694,0.00483081,0.000056965313,-0.03182651,0.00675346,-0.017328035,0.014740318,0.031657223,0.041814618,-0.034631886,0.026965471,-0.0042745713,-0.022684854,0.0015304114,0.009365362,-0.042201567,0.051947832,0.033374306,0.0236885,-0.011070354,-0.0018818392,-0.010242042,0.0047461647,0.019528804,-0.0065478934,0.016820166,0.00032781035,-0.014365462,0.04595013,0.010369009,0.020266425,-0.041451853,0.01042947,-0.04447489,0.04437815,0.03296317,0.003987383,0.010302503,0.017823813,-0.03736471,-0.00039299452,0.04696587,-0.005973517,-0.010943386,0.016421126,0.02243092,-0.017110378,-0.0013694348,0.03509139,-0.002856768,0.012708839,0.0005192062,0.007974766,-0.020762203,0.022817867,0.034051463,-0.015078898,0.039009243,-0.0037001946,-0.046772394,-0.010943386,0.01910558,-0.02176585,0.00072741776,0.0005033353,-0.03182651,-0.008156148,0.0293839,0.025103282,-0.00006915192,0.03035127,0.05828411,0.031657223,0.025732072,0.002555976,0.04234667,0.009716034,-0.01792055,-0.010175535,0.01932324,0.0053296103,0.04703842,-0.007128316,0.046844948,0.06099275,-0.023229,0.01865817,-0.002646667,0.011342427,0.0032890618,0.024002897,-0.06592634,0.024462398,0.0025484185,0.010834557,-0.012219107,-0.04950522,0.012503272,-0.012146554,-0.019915754,0.013966421,-0.030036874,0.0009945785,0.01773917,-0.01232189,0.05373747,0.019637635,-0.03475281,-0.024559135,-0.021064507,0.027352419,0.023628041,-0.020834757,0.019033028,0.005789112,0.002506096,0.016650876,-0.0051603206,0.022309998,0.0035067205,0.020568728,-0.028223053,-0.057171635,0.017799629,-0.009607205,0.018585619,0.017884275,-0.0021161244,-0.035405785,0.017678708,-0.010864788,0.0011547994,-0.019770648,0.005988632,0.015381201,0.0042987554,-0.015743965,0.03148793,0.016433217,0.015453754,0.010447608,-0.028343976,0.009764402,-0.017267575,0.018005196,0.0043561934,0.0031802326,-0.004443861,-0.015211912,-0.0042534103,0.010308549,-0.04590176,-0.04024264,0.006620446,0.0035218357,0.039251085,-0.008035227,0.026119022,-0.053543992,0.0024940039,0.03487373,0.037558187,-0.009570928,0.005997701,-0.03339849,-0.013736671,-0.008591465,0.042249937,-0.017001549,-0.016493678,-0.02498236,-0.047546294,0.010913156,0.00034292552,-0.02272113,0.054801576,0.024232648,-0.004507345,0.018101932,-0.0016294158,-0.0067353216,0.020266425,-0.007472942,0.04619197,0.033882175,-0.010786189,0.056833055,0.017013641,-0.031100983,0.019238593,-0.025780441,0.04324149,0.06302423,0.025369309,-0.006499525,0.0036185728,0.01847679,0.018077748,-0.02481307,-0.024498675,0.04486184,-0.009836955,-0.007805476,0.0021312395,0.034680255,-0.014812871,0.0015810472,0.02079848,-0.021524008,0.036324788,-0.0020904287,0.027497524,-0.021342626,-0.000075575874,0.034801178,-0.015574676,-0.041621145,-0.019649727,0.011862389,0.018355867,0.008664018,-0.04328986,-0.000726662,0.029529005,0.025852995,0.003899715,-0.02582881,-0.023374105,-0.039662216,0.024764702,0.0075878175,-0.05402768,0.012878128,0.0047250036,0.029262977,-0.031149352,-0.000930339,0.023313645,0.0141598955,0.050738618,-0.010151351,0.015042622,0.013869684,-0.018198669,0.005456578,-0.0027358464,-0.01559886,0.054269522,-0.019577174,0.026119022,0.013990605,0.014667765,0.030714035,-0.00070625654,-0.0134827355,0.01282976,-0.015042622,0.0028643254,0.013470643,0.0069832103,0.020834757,-0.014002698,-0.0025801603,-0.020907309,-0.008488682,0.01390596,-0.016542047,0.017497325,0.0077631534,-0.000026168145,0.004939639,0.005220781,-0.0045466446,-0.017134562,-0.032842252,-0.01059876,0.0048277867,0.028489081,-0.0067232293,-0.027763553,-0.0044559534,0.0034099834,-0.016771797,-0.011342427,-0.005405186,0.0076966467,-0.010072752,0.0063786036,0.015804427,-0.0051512513,0.009982062,-0.006487433,0.0039329682,-0.01836796,-0.009939739,0.010000199,-0.057268374,0.03085914,-0.017847998,-0.0125274565,0.007273422,-0.005792135,-0.023011342,-0.02305971,-0.0148370555,0.014051066,-0.00827707,0.00915375,0.020024583,-0.00918398,-0.006699045,0.0056923744,0.009286763,0.017110378,0.006765552,0.018646078,-0.035018835,-0.043700993,0.021959325,0.004247364,0.024462398,0.015453754,0.024667965,0.010544346,-0.0049849846,-0.017146654,-0.017400589,-0.0102964565,0.031753957,-0.008397991,0.0128055755,-0.026312495,-0.040895615,-0.017811721,-0.018392144,0.019093487,-0.04556318,0.0152360955,0.011100584,0.028223053,-0.052044567,0.00539914,-0.020133412,-0.0055049467,0.06544266,-0.02204397,0.043700993,-0.012001448,-0.027570078,0.025780441,0.056978162,0.0055200616,-0.0013460063,0.008682156,0.012055863,0.0036850795,-0.017207114,0.022285813,0.0121526,-0.015743965,-0.017400589,0.037848398,-0.006747414,-0.010054614,0.03702613,-0.005991655,-0.011940988,-0.011064308,0.021257982,-0.028706739,-0.005226827,0.004513391,-0.0022446034,0.016094638,-0.02136681,-0.0510772,0.0017231299,-0.023071801,0.004833833,0.006644631,-0.015175635,0.015864886,-0.013216709,0.008458451,-0.021572378,-0.0050575375,-0.01690481,-0.024631688,0.013700394,0.0026043446,-0.011959126,-0.018114025,0.023507118,-0.030133612,0.00071268046,0.041814618,0.014728226,-0.028368158,-0.016941087,-0.02312017,0.038356267,0.03158467,-0.013434367,-0.017654523,-0.010628991,-0.022140708,0.034414228,0.037606552,-0.0009515002,-0.0147161335,-0.035695996,0.020278517,0.022588117,-0.014619397,-0.010248088,0.03780003,-0.0077933837,-0.006251636,0.0067836903,0.037679106,0.01724339,-0.011862389,0.0051633436,0.033495225,-0.01158427,0.04268525,-0.010508069,-0.03547834,0.0221528,0.012188877,0.0113303345,0.022926696,0.012938589,0.019383699,-0.04125838,-0.0035399739,0.014667765,-0.028876029,-0.03228601,-0.00048973167,0.031076798,0.013797131,0.0025045844,-0.004335032,0.02001249,-0.006251636,-0.024619596,-0.032890618,-0.0018500973,0.0049608,0.01299905,0.016263928,0.0034099834,0.03052056,0.014788686,-0.006644631,-0.0016173236,0.013930145,-0.0054233246,-0.0037062408,-0.018730724,-0.039831508,-0.01746105,-0.01571978,-0.034027282,0.022056062,-0.021560285,-0.0056953975,-0.023204817,0.0004081097,0.012200968,0.022297906,0.009335131,-0.006487433,-0.022660669,-0.002067756,0.026022283,0.00013707574,-0.031173535,-0.004108304,-0.009510468,0.017025732,-0.013373906,-0.036155496,0.012418627,-0.015731873,0.017896367,-0.004513391,0.009268625,0.01847679,-0.0056953975,0.0095406985,-0.015623044,-0.029891768,0.021403087,0.005021261,0.0067957826,-0.022805775,-0.014498475,-0.009431869,0.0052389195,-0.033277567,0.02527257,0.0048277867,0.0028144454,-0.0009696384,0.0037727475,0.0023912205,-0.0020178757,-0.023470843,-0.05905801,-0.0061851293,-0.013047419,0.0030426846,0.011009893,-0.007472942,0.036590815,0.0018742816,-0.020496177,-0.018887922,0.0148370555,-0.0264576,-0.008410083,-0.014232448,0.00785989,0.0034946282,-0.000030702697,-0.02515165,-0.029142056,-0.015864886,-0.020435715,-0.028658371,0.0052389195,0.0092202565,0.00002408981,-0.0183075,-0.031633038,-0.019311147,-0.014631488,0.011281966,-0.005982586,-0.03825953,0.030810772,-0.010961524,-0.030036874,-0.013688302,-0.019686002,0.0014480337,-0.019153949,0.010689451,-0.025393493,-0.026917102,-0.012938589,0.025949731,-0.02882766,-0.01542957,-0.04996472,-0.019601358,0.011003847,0.0040145903,0.008113826,0.038453005,0.0022808798,0.008035227,0.04764303,-0.008404037,0.03148793,0.028005395,-0.003379753,0.027545894,-0.014305001,0.0028990905,-0.0166146,-0.011487532,0.016118823,0.051125567,0.018114025,-0.00941373,0.013857592,-0.026651075,0.0077752457,0.032600407,-0.012503272,-0.024547042,0.024837254,-0.008228701,-0.010514115,0.009335131,-0.017255483,-0.02916624,0.019565081,0.013240892,-0.04328986,0.05069025,-0.023313645,0.041621145,-0.002950482,-0.015344925,-0.0020617098,0.024571227,-0.027763553,-0.01995203,-0.006692999,-0.02662689,-0.035115574,0.012333983,0.0075938636,-0.006844151,-0.04911827,-0.033930544,0.02464378,-0.016130915,-0.018839553,0.015876979,-0.0033434764,-0.000184783,0.0033948682,0.022128616,-0.03001269,0.015332833,-0.00624559,-0.0032437164,-0.082758605,0.011348473,-0.004706865,-0.00138455,0.023990804,-0.023095986,0.033325937,0.024595411,-0.029287161,0.0024441236,0.019008843,0.0052358964,0.024462398,0.016892718,0.024462398,-0.028489081,-0.045176234,-0.00081546366,0.006765552,-0.0054958775,0.014667765,-0.04674821,0.0046645426,-0.002555976,-0.03651826,-0.013373906,0.022479286,-0.006686953,-0.0079868585,0.00483081,0.01949253,-0.006692999,-0.0042745713,0.011396841,0.022225352,-0.052866835,-0.0008169752,0.035575073,0.01339809,-0.004939639,0.0018682355,0.016445309,0.0148370555,0.024547042,0.025054913,-0.021257982,-0.005039399,0.035284862,-0.00746085,-0.0021448433,-0.0011238132,0.012890221,0.024401937,0.008682156,0.019190226,-0.0236885,0.031294458,-0.004247364,-0.011451256,0.00014746742,-0.016034177,0.0025726026,-0.00020311016,-0.006844151,-0.011493579,-0.00088272616,0.0056802826,-0.022696946,-0.0044559534,-0.027594263,-0.029553188,-0.015550491,0.0017941712,-0.0123279365,-0.021257982,-0.0005773997,-0.0063000047,0.00092504866,0.0009590578,0.01452266,0.020048767,0.008410083,0.0050545144,0.02798121,0.010840603,-0.008077549,0.05828411,-0.011239643,-0.02136681,-0.023748962,0.030496376,0.02141518,0.015550491,0.011439164,-0.004008544,-0.04290291,0.022745315,0.03666337,-0.0045526903,-0.013639933,-0.005719582,-0.008089641,-0.033833805,-0.0298434,0.0025605105,-0.04713516,-0.0042262026,-0.032237645,-0.019153949,-0.001963461,0.023095986,-0.033712886,0.015804427,-0.027666815,0.011626592,-0.019528804,-0.012273521]},{"id":"guide-events-5","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Event Payload Reference\nPayload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from @fluxerjs/types.","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.0003911594,-0.00071400974,0.0000027891006,-0.008369661,0.025356334,0.010382981,-0.0672334,-0.01511716,0.047491353,-0.007374505,0.0114989355,-0.00562004,0.03327156,-0.046317875,-0.004541476,0.012954279,0.009652434,0.045581575,-0.002592869,0.06309171,0.0024188608,-0.022710254,0.019212829,0.02802542,-0.029037833,0.00085997547,0.0025123362,0.087987855,0.013817131,0.0031148943,0.0449143,-0.018234931,0.06507052,-0.031269744,0.016451703,0.035273373,0.0018608833,0.0439249,-0.047675427,0.039668165,-0.042176187,-0.023527088,-0.018349977,0.010262182,0.012827727,0.0066784713,-0.048549786,0.007961244,-0.06631302,0.044822264,-0.018637596,-0.004127307,0.06953434,0.06875202,0.031637892,0.012724185,-0.04249832,-0.030165292,-0.027358148,0.009589158,-0.027358148,-0.001253292,0.02081198,0.035756573,0.007155916,0.012310017,-0.039760202,0.03368573,0.034997262,0.05968632,0.045351483,0.051541004,0.000026559652,-0.023906743,0.0107971495,-0.019880101,-0.008921886,-0.0031350276,-0.00794974,-0.016773835,0.017498631,0.009537387,-0.06525459,-0.088540085,-0.008225852,-0.040174372,-0.022767778,-0.02959006,-0.02434392,0.026138652,-0.014357851,-0.0015646376,-0.04284346,0.0814532,0.040174372,-0.06645108,-0.0014941714,-0.035756573,0.0040726596,0.038264595,0.07100694,-0.065438665,0.006597939,-0.03589463,0.009019676,-0.03023432,0.0010059412,0.018557062,-0.026322726,-0.029981218,-0.06631302,-0.017728725,0.011688763,0.05167906,-0.0066612144,-0.00016690786,0.04169299,-0.0078634545,0.055406578,0.021801384,-0.04799756,0.030510433,-0.00069819076,-0.017441107,-0.03720616,-0.048411727,0.03242021,-0.041209795,-0.019891607,-0.0076161036,0.057431404,-0.06497848,0.023527088,-0.024228873,-0.010365725,-0.0037562808,-0.012988793,0.01109052,-0.012229484,-0.022204049,0.012988793,-0.051494986,0.014357851,0.029014824,-0.0071846778,0.01254011,-0.024136836,0.03474416,0.0040812884,-0.0023685277,-0.033041466,0.038195565,-0.017820762,0.0020420821,0.009514377,-0.00047420888,0.0027438682,-0.015738413,-0.012056913,-0.025011193,0.0023829085,-0.029981218,-0.03253526,0.010843169,-0.06456431,-0.024412949,-0.039000895,-0.04475324,-0.014645468,0.027174074,-0.019914616,-0.03294943,-0.03571055,0.05572871,-0.028209496,-0.014726001,-0.008841353,0.013920673,-0.0070811356,0.010296696,0.009698452,-0.011665754,-0.051771097,-0.016313648,0.009842261,0.022618217,-0.006943079,0.058535855,-0.06534663,-0.024044799,-0.0061895223,0.031499837,0.046755053,0.000093924995,0.013126849,-0.015531329,-0.014035719,-0.0107338745,0.030510433,0.012413559,0.012632147,-0.0350893,0.030809555,0.01774023,0.02245715,-0.008133815,-0.015358759,0.025724484,0.031614885,-0.032190118,0.0036498623,0.0051397197,0.015174684,0.012839233,-0.052921567,0.0328804,-0.025954576,0.05213925,-0.039438073,0.01438086,-0.01754465,0.036653936,0.053657867,-0.011113529,-0.05388796,0.020305775,-0.012977288,-0.019673018,-0.06424218,-0.043073554,-0.016819855,0.034191933,0.0071961824,-0.037735377,0.01843051,0.007155916,-0.0152552165,-0.055130467,0.014242804,-0.0024691937,-0.0013942245,-0.022399629,0.02878473,0.01589948,-0.0059076576,0.02583953,0.00032410864,0.0068740514,0.06341384,0.072801664,0.07381408,0.021295179,0.056695104,-0.016911892,0.0074838,0.01975355,0.0026805925,0.016371172,-0.0024289272,0.022411132,0.051541004,-0.0032040556,0.009186493,0.045926716,-0.05126489,-0.024090817,0.0053525562,0.013437476,-0.025264295,-0.023135928,-0.0013007488,-0.009433844,-0.0013891911,-0.0061435034,-0.053473793,0.024689062,0.01862609,-0.0063275783,-0.026644858,0.0052375095,-0.039944276,-0.025264295,-0.0110099865,-0.01698092,-0.0070753833,0.042176187,0.025310313,-0.03883983,0.002155691,0.024113826,0.0052950326,0.025241286,0.013725094,-0.032581277,0.040772617,0.05457824,0.027013008,0.002174386,0.056603067,0.0053237947,-0.00829488,-0.05430213,-0.008640021,-0.024620034,0.018775651,-0.003989251,-0.0025367837,-0.02308991,0.014254309,-0.039000895,0.004645018,0.0032529507,-0.03911594,-0.015738413,-0.0670033,0.045558564,0.056879178,0.052645452,-0.010348467,0.0021355578,0.023791695,0.009341807,-0.0060054474,-0.057477422,-0.0017400841,-0.023837714,-0.044385087,-0.03580259,0.02211201,0.059272155,0.031246733,0.018925212,-0.0030171045,0.032305166,0.00047744456,-0.007621856,-0.030717518,0.017107472,0.0145534305,0.029313946,0.0074953046,-0.058627892,-0.044891294,-0.049562197,-0.036722966,0.019143801,-0.012252493,0.008145319,-0.01310384,-0.0058213724,-0.015186189,0.0042078397,-0.041255813,-0.02728912,0.01199939,-0.039553117,0.0011253023,-0.022399629,-0.045351483,0.0115909735,-0.053473793,0.005976686,0.027818337,0.03946108,-0.022089,0.013909169,-0.024781099,0.029267928,0.02694398,-0.07689734,0.026644858,0.028669683,-0.03941506,0.015025123,-0.02044383,-0.05273749,0.011792306,0.0058530103,-0.02066242,-0.013955187,0.008812591,0.056649085,0.0035722058,-0.04328064,-0.023273984,0.003810928,-0.041785028,0.022042982,0.014806534,-0.010411743,0.04397092,-0.0039374796,-0.05121887,0.0051914905,0.003474416,-0.0019011497,0.03030335,-0.0038368136,0.010636085,-0.025540408,0.022399629,0.007828941,0.0075298185,-0.026851943,-0.024159845,-0.03833362,-0.028646674,0.031154696,0.008668782,-0.038563713,0.034445036,0.03136178,0.018246436,0.0038598229,-0.023055395,-0.024988184,0.028646674,0.014357851,-0.03317952,0.026391756,0.035135318,-0.0068798037,-0.06415014,0.05830576,-0.030464415,-0.0069948505,0.03064849,-0.00721344,0.012448072,-0.023561602,-0.022537684,-0.0069315745,0.03315651,0.014242804,0.04827367,-0.04254434,0.036078703,-0.064380236,-0.035618514,0.0328804,0.010739626,0.013725094,0.030165292,0.057845574,-0.026414765,-0.007455038,0.019857092,0.02728912,0.024896145,-0.02655282,-0.013011803,0.021168627,-0.025540408,0.017095966,-0.053243697,-0.02083499,0.004978654,0.053749904,0.048503768,-0.0035146822,0.00066763145,0.014679982,0.00341114,0.009825004,-0.046709035,-0.0021341196,0.009416588,-0.026713885,-0.030464415,0.03458309,0.01754465,-0.0022937472,0.017199509,0.011872838,0.008916133,-0.0073284865,-0.012620643,-0.024620034,0.05351981,0.027634261,0.02618467,0.03697607,-0.013230392,-0.019178316,0.035595506,0.10096514,0.00868604,-0.016773835,-0.003040114,-0.0179128,-0.057109274,-0.0016739322,0.031085668,-0.010411743,0.043303646,0.004429305,-0.021329692,-0.028347552,-0.0014898571,-0.003008476,-0.030119274,-0.042682394,-0.03727519,-0.0142773185,0.04058854,0.005953676,-0.012114436,0.00036581315,-0.018303959,-0.0069603366,-0.0039202226,0.0077311504,0.0031292753,0.018545557,-0.024251884,-0.012206474,-0.008208595,-0.025356334,-0.016704807,0.013218887,-0.037436254,0.023250975,0.0043746578,0.007915226,-0.013241896,-0.029981218,-0.0031494084,-0.05048257,0.019546466,-0.033662718,0.0057092016,-0.0142773185,-0.019742046,0.0061089895,0.018154398,0.01528973,-0.021881917,-0.03097062,0.03317952,0.018442016,-0.029544039,0.02655282,-0.0074147717,0.019063268,0.0057092016,0.031476825,-0.016325153,0.024412949,-0.020719944,0.010509533,0.011182557,-0.036745973,0.019960634,0.0030659994,0.015519825,0.04401694,0.0027654395,-0.02885376,0.0008304947,-0.0006388697,-0.00858825,-0.013460485,0.023020882,0.0074838,-0.016359666,0.019396905,-0.0027942013,-0.035871617,-0.004463819,-0.006839537,-0.008611259,0.045972735,0.008818343,-0.015347254,-0.010659094,-0.02009869,-0.039230987,-0.0021499386,-0.0009074323,0.005936419,-0.0036412338,-0.045903705,-0.024689062,0.028232506,-0.029037833,0.014564935,0.036078703,-0.010175897,-0.02623069,-0.020386308,0.03103965,-0.009922794,-0.0059019052,-0.0056689354,-0.021122608,-0.012528606,-0.013115345,0.004133059,-0.03023432,0.0031263991,-0.019661512,0.023768686,-0.044592172,-0.00682228,0.0068740514,0.0072997245,-0.012379045,0.003845442,-0.016290639,-0.0042538587,0.03170692,0.0314078,-0.03693005,-0.034905225,-0.02510323,-0.00434302,-0.018096875,0.02073145,0.016716313,-0.009221008,0.0011821067,0.007587342,0.002289433,0.0048549785,-0.018568566,0.036492873,-0.009577653,0.008847105,-0.0064138635,-0.006684224,0.01879866,-0.014357851,0.011136538,0.012954279,-0.02157129,0.014564935,-0.010768388,-0.03798848,-0.031545855,-0.0048405975,-0.0071789254,0.0017645316,0.045558564,-0.020006653,0.05025248,-0.006620948,-0.016520733,0.040519513,0.0034859206,0.0016566751,-0.010561304,-0.014852553,0.00010668801,-0.016739322,0.019224335,-0.018407501,-0.0110445,-0.00036275722,0.018545557,-0.0059939427,-0.0034859206,0.023400536,0.0015531329,0.018948222,0.005982438,0.024850126,0.012240988,0.021410225,-0.014449889,0.036699954,0.019454427,0.045558564,0.05973234,0.00074780476,-0.009428092,-0.01879866,0.006672719,0.004814712,-0.001086474,0.015991516,-0.034813188,0.011763544,-0.040381458,-0.013805626,0.023722667,-0.045811668,0.002241976,-0.0077656647,0.058167703,0.042337254,-0.008657278,-0.0065404153,0.0019529208,0.0010519599,0.018246436,0.018614586,0.024574013,0.02659884,-0.010348467,-0.015968507,-0.015266721,0.015749918,0.0135755325,-0.042613365,0.015013618,-0.027013008,0.011061758,-0.012609138,0.04689311,-0.066497095,0.0017185129,-0.010400238,-0.011930361,-0.0010469266,-0.019419914,0.010837416,-0.027772317,0.0074895523,0.0036124722,0.013771112,-0.013782617,0.04548954,0.0036987574,0.0008801087,-0.003307598,-0.017820762,0.042613365,0.024067808,-0.03244322,-0.017797753,0.0051253387,0.02044383,-0.015646376,0.00794974,-0.04353374,-0.0005561798,-0.021904927,-0.0066267005,-0.011625487,0.0032385697,0.00829488,0.0014690049,-0.014116253,-0.025954576,0.0076966365,-0.03911594,-0.015186189,0.0069603366,-0.009801994,-0.0067762616,-0.012459577,0.0064138635,-0.029981218,0.009215255,0.004794579,0.011320613,0.020409318,0.01155646,0.023515582,0.022595208,0.0201217,0.037436254,0.010716617,0.014392365,-0.021145618,-0.025172258,-0.03209808,0.015013618,0.04622584,-0.03209808,0.013126849,-0.019235838,-0.028807739,0.036676947,0.04348772,-0.008455946,-0.020317279,-0.038563713,-0.03476717,-0.014024215,-0.0067302426,0.00076290464,0.02073145,-0.01256312,0.0034168924,0.03334059,-0.0154392915,0.0058300006,-0.050068405,-0.04974627,-0.007857702,-0.024873136,-0.0033622452,-0.031775948,-0.022813797,-0.0017242652,-0.008916133,-0.08467451,0.014587944,0.033386607,-0.06461033,-0.011648497,-0.0035175583,0.010221915,0.022974862,0.024090817,-0.04390189,0.042590357,-0.017245527,0.004998787,-0.0023239471,0.02471207,-0.017188005,0.05770752,0.01550832,-0.015692394,-0.036147732,0.004133059,-0.022422638,0.012804718,0.029083852,-0.021191636,0.04173901,0.00071796443,-0.015738413,0.060698736,-0.0042711156,0.010411743,-0.02144474,-0.019442923,-0.012206474,0.031545855,0.036653936,0.0064138635,0.007472295,0.014679982,-0.04383286,0.008553736,0.027910374,-0.0063735973,-0.0032184366,0.024781099,-0.00029714452,-0.017188005,0.0023814705,0.010946711,0.036032684,0.015968507,-0.028577646,0.008197091,-0.03644685,0.0328804,0.024412949,-0.009600663,0.009514377,-0.000718324,-0.034353,-0.022940349,0.025356334,-0.008743563,-0.014392365,0.0111020245,-0.03844867,0.0042567346,0.0020507106,0.016877377,0.019270353,-0.00548486,0.025402352,0.021456243,0.050436553,0.003511806,0.056280933,-0.014726001,-0.004645018,-0.0031580369,-0.010860425,0.047215242,0.019431418,-0.0022664235,0.038126536,0.04134785,-0.0046335133,0.037758388,0.009917041,-0.003995003,0.00017077272,0.024113826,-0.05016044,-0.0103082005,0.00028060653,-0.007167421,-0.03610171,-0.023055395,0.014772019,0.020708438,-0.020374803,0.0028287151,-0.011314861,0.010066602,0.00986527,-0.021927936,0.012217979,-0.005818496,-0.023412041,-0.008795334,-0.012425063,0.016152583,0.02922191,-0.02731213,0.009715709,-0.0022333476,-0.010158639,0.03021131,0.009876775,0.02178988,-0.013034812,0.009732966,-0.007069631,-0.004762941,0.020179223,-0.0024030418,0.03465212,-0.0023814705,0.008484707,-0.020616401,0.035986666,-0.0033191026,0.010607323,0.00812231,0.039207976,-0.0012259684,0.008737811,-0.0015588852,0.029475011,-0.0028200867,0.01955797,0.013828635,-0.011401146,0.010595818,-0.010129878,0.0151631795,0.026621848,0.014495907,0.04348772,-0.007472295,-0.023906743,0.002106796,-0.034836195,-0.039668165,-0.018188912,0.023860723,0.03442203,-0.018142894,0.012701176,-0.019419914,0.024297902,0.0033881308,0.027887365,0.00051843,0.00075139996,-0.021973955,-0.032995448,-0.0186491,0.015381768,-0.042383272,0.0036412338,-0.022940349,-0.009347559,0.013264906,-0.023020882,-0.002438994,0.05770752,0.03317952,0.0042567346,-0.011205566,0.020650916,0.0015099903,0.00068920274,-0.0052461377,0.036009673,0.020248251,0.0064253686,0.034099896,-0.014403869,-0.030901592,0.032673314,-0.054072034,0.055958804,0.03584861,0.039046913,-0.010486524,0.015013618,-0.017843772,0.008168329,-0.016463209,-0.009537387,0.05756946,0.0049240068,0.0099112885,-0.008421432,0.06350588,0.010193154,-0.011941866,0.05121887,-0.015105655,0.055958804,0.02142173,0.02252618,-0.023124423,0.029106861,-0.0070983926,-0.019592484,-0.014610955,0.0019241591,0.026805924,0.0150711415,0.0051253387,-0.030326359,-0.0027539348,0.011964876,-0.0040410217,0.014070233,0.0028718577,-0.00387708,-0.056879178,0.021387216,0.010325458,-0.043303646,0.013287915,0.020478345,0.059364192,-0.018982736,0.007708141,0.005076444,0.015220703,0.027335139,-0.0034801683,0.045190416,0.019661512,-0.03202905,-0.0150711415,-0.02200847,0.009048438,0.048089597,-0.023538591,0.03697607,0.013414467,0.025977585,0.024182854,-0.020593392,0.014875562,-0.03242021,-0.02544837,0.029382974,-0.0011957686,-0.0024806985,0.006235541,0.007403267,-0.00966969,-0.031269744,0.00014237051,0.004915378,-0.024113826,0.041485906,0.0117117725,-0.009502873,-0.017038444,0.0022980615,-0.023366023,-0.009382074,0.019293362,0.026368745,0.025586426,0.005999695,0.006051466,0.004181954,0.009986069,-0.0009678319,-0.004932635,-0.02326248,-0.015105655,0.015128665,0.0057034492,0.010072354,0.011067511,0.016463209,-0.005467603,-0.029405983,0.02397577,-0.023814704,-0.008576745,0.0018105503,-0.027611252,0.010607323,0.00015225736,-0.0065634246,0.0075355708,-0.0084444415,0.0038166803,-0.025908558,-0.017072957,0.03317952,0.027082035,0.011625487,0.020765962,-0.016394181,-0.014150767,-0.011107776,0.019765055,0.020029662,0.0012302826,0.02436693,-0.026460784,-0.036032684,0.027358148,0.022779282,0.017613677,0.015795937,-0.005162729,0.012839233,0.016083553,-0.03028034,-0.009502873,-0.013414467,0.008967904,-0.000035233108,0.014818039,-0.024804108,-0.038287602,-0.0002973243,-0.014852553,-0.012574624,-0.02839357,0.013368448,-0.0038253088,0.03810353,-0.03584861,-0.016773835,-0.016520733,0.03384679,0.05126489,-0.01897123,0.063045695,-0.002075158,-0.033478644,0.001253292,0.040174372,-0.00023027352,-0.012436568,0.018787157,0.015795937,0.0009563272,0.0037447761,0.01916681,0.004495457,-0.005565393,-0.0055596405,0.03393883,-0.0037390236,0.0008053282,0.025195267,-0.012102932,-0.012942774,0.0092382645,0.035273373,-0.014829543,-0.026276708,0.03359369,-0.0007204811,-0.013437476,-0.047721446,-0.03511231,-0.008898877,-0.027795328,-0.02291734,0.0065001487,0.0022189668,0.017314555,-0.0017228271,-0.000103901715,-0.0021326817,-0.023860723,-0.016670294,-0.025931567,0.0068913084,0.01199939,-0.007316982,-0.014150767,0.009019676,-0.01700393,0.01126309,0.026736896,0.025793511,-0.023860723,0.0045529804,-0.04498333,0.015048132,0.06677321,-0.014438384,-0.017705716,0.04247531,-0.0071616685,0.021582795,0.024090817,-0.017245527,-0.0027970774,0.00009073424,0.009980317,0.00488374,-0.017314555,-0.0037907949,0.027841346,-0.018499538,0.0029221908,0.030326359,0.058627892,0.022951853,-0.0029265052,0.029636078,0.016060544,-0.007817436,0.02066242,-0.010055098,-0.019097783,0.009088703,0.022963358,-0.0013431724,-0.009405083,0.0034025116,0.021536777,-0.04095669,0.006534663,0.019212829,-0.02083499,-0.0039461083,-0.004141688,0.03584861,-0.006465635,-0.008277623,-0.0016868749,0.0134834945,0.015807442,0.0011066073,-0.04502935,-0.013736598,-0.012816222,-0.0019083401,0.041531924,0.03428397,0.029452002,0.005746592,-0.003577958,-0.019316372,0.013897664,0.0075930944,-0.010319705,-0.028623665,-0.022641227,-0.012287007,-0.013782617,-0.032328174,-0.004739932,-0.019327877,-0.021237655,-0.013149858,0.0076621226,0.025149249,0.029475011,-0.0005777511,0.006597939,0.0035376917,0.012459577,0.028347552,0.0043919147,-0.0068913084,0.010572809,0.0025784883,0.010164392,-0.00538707,-0.011130786,0.017820762,-0.0008959276,0.009405083,-0.013333933,0.00011279988,0.01933938,0.012263997,0.006632453,0.007334239,0.0047773216,0.01442688,0.0077369027,0.0127817085,-0.018292455,0.012655157,-0.0016235991,0.004328639,-0.01548531,0.01290826,0.003391007,0.008973657,0.018488035,0.008450193,0.013448981,-0.003109142,-0.031660903,-0.025264295,-0.011539202,-0.03720616,0.0091462275,0.005729335,-0.0028474103,0.03023432,0.0053669373,-0.006137751,-0.007932482,0.003008476,-0.02198546,0.038356632,0.003391007,-0.01072237,-0.008783829,-0.0009707081,0.01364456,-0.018764148,-0.016313648,-0.029083852,-0.02178988,0.025517398,0.0050217966,0.009571901,0.005936419,-0.020708438,-0.015657881,-0.024850126,0.0075125615,0.03442203,-0.023296993,0.0012719871,-0.028508618,-0.015519825,0.00327596,-0.02547138,-0.0027136684,0.0045587327,-0.017061453,-0.0068452894,0.004578866,-0.00849046,0.019132297,-0.02878473,-0.027381158,-0.040634558,-0.03953011,0.005027549,0.0094223395,-0.009928546,0.0203633,0.009853765,-0.005059187,0.036999077,-0.013448981,0.021306682,0.042222206,-0.002139872,0.004877988,-0.015048132,-0.009755976,-0.0054791076,-0.029452002,0.020512858,0.029336955,0.008714802,-0.004630637,0.022974862,-0.02659884,0.03094761,0.02142173,0.006782014,-0.012701176,0.011815315,-0.01172903,-0.02044383,0.017475622,-0.0075930944,-0.01045201,0.00976748,0.018706623,-0.027358148,0.02265273,-0.029244918,0.036838014,-0.03766635,0.017487125,0.001471162,-0.00026298998,-0.020823486,0.0125055965,-0.0023670895,-0.03536541,-0.009082952,0.018752642,0.005433089,0.031775948,-0.052277304,-0.0132073825,0.044131983,-0.007270963,0.017625183,-0.0066957287,-0.013817131,0.0021355578,-0.00976748,0.0019802444,-0.038908854,0.025678465,-0.006592186,0.016520733,-0.06520858,-0.005067815,-0.005930667,0.0029682096,0.028094448,-0.020351794,0.02915288,0.008893124,-0.032995448,0.00360672,0.014139262,0.030326359,0.023043891,0.019235838,0.0022175286,-0.003109142,-0.012816222,-0.009801994,-0.0014402432,-0.003911594,0.003408264,-0.03545745,0.006770509,0.011665754,-0.013863149,0.031223724,0.014185281,0.000026065309,-0.0008793896,-0.006270055,0.029198898,-0.015749918,-0.016451703,0.028094448,0.0067474996,-0.042981517,-0.032374192,0.024067808,0.009353312,-0.023181947,-0.018580072,0.009215255,0.016451703,0.011182557,0.013402962,-0.013759607,0.027634261,0.037390236,0.008927638,0.0029221908,0.011792306,0.0059421714,0.023906743,0.029060842,0.030878583,-0.008369661,-0.009180741,0.002909248,-0.022997871,0.013610046,0.0047600647,0.009082952,-0.025586426,0.009704204,-0.019719036,0.010250677,0.014818039,-0.030533442,-0.013161363,-0.03621676,-0.020041168,-0.02053587,0.022790788,0.012459577,-0.023423545,-0.01992612,-0.0077771693,0.005930667,0.00061945553,0.0059939427,0.015738413,-0.019765055,0.01438086,-0.004564485,-0.010210411,-0.0062988168,0.046386905,-0.025908558,-0.029336955,0.0008959276,0.020593392,0.021835899,0.0091462275,0.0066669667,-0.033754755,-0.03172993,0.02103057,0.056234915,-0.019258847,0.02063941,0.0037534046,-0.022848312,-0.02471207,-0.06580681,-0.0023483946,-0.05089674,0.022261571,-0.041554935,-0.017061453,-0.009364816,-0.027818337,-0.021824393,0.013322429,-0.040427476,0.004475324,0.019178316,-0.01384014]},{"id":"guide-permissions-0","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Overview\nUse member.permissions for guild-level checks (roles only) and member.permissionsIn(channel) for channel-specific permissions (includes overwrites). The server owner always has all permissions.","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[0.027688835,0.03430496,0.069175,0.03124412,-0.0030520114,0.013479471,-0.02841873,-0.0025296083,-0.021755513,0.0130674355,0.043063674,0.010189068,0.011101434,-0.0018482768,0.005588977,0.0009020651,-0.010118433,0.0020984418,0.01719957,0.05217556,0.030137507,0.024816355,-0.025098894,0.051280852,-0.11433417,-0.039743837,0.023803921,0.06258242,-0.01304389,-0.002254427,0.037295166,-0.01548079,0.006551376,-0.009724055,-0.04442928,0.0015068754,0.023544928,-0.015009891,-0.0038878561,-0.028607087,-0.0104833795,0.023062257,-0.022367682,-0.01601055,-0.011925506,0.01020084,-0.04428801,0.028677722,-0.002876896,-0.025663972,-0.009023594,0.022002736,-0.00042675182,0.06804484,0.021637788,0.025357887,-0.03840178,-0.0006507965,-0.037153896,0.027076667,-0.02107271,0.0050150696,-0.0017408531,0.0017923577,0.026629314,-0.0012780481,-0.07967604,0.03611792,0.04563007,0.042828225,0.01963647,-0.01872999,-0.008841121,-0.029595975,-0.009417972,-0.0034434458,0.024533816,0.062441148,0.00835845,0.003093215,-0.01390328,0.023132892,-0.041439075,0.015115844,0.009818235,0.04619515,0.016610947,0.011807782,0.020672446,-0.056743275,-0.009200181,-0.031620838,-0.0464306,-0.022367682,0.029619519,-0.06456019,0.03661236,0.016728671,-0.011142638,0.066632144,0.057308353,-0.012596536,-0.084808834,-0.04819647,0.0410859,0.02823037,-0.034611043,0.05919195,-0.038919766,-0.040567912,-0.07261256,0.028442273,0.011713602,0.029030897,-0.008605671,-0.007234179,0.0394613,-0.033527978,0.052505188,-0.0024148268,-0.04099172,-0.0065042865,0.017423246,-0.01682285,-0.016681582,-0.03687136,-0.015056982,-0.030443592,-0.024369001,-0.02775947,0.032539092,-0.023521382,0.040497277,-0.062629506,-0.035034854,0.011236817,0.010071343,-0.02202628,-0.034917127,-0.022614904,0.0040202965,0.025663972,0.02073131,0.016622718,-0.05528349,0.005026842,-0.044711817,-0.026747039,-0.020884352,0.035011306,-0.07491996,-0.0049061743,-0.0053123245,-0.01634018,-0.038284052,-0.0070046163,-0.0052446327,-0.027006032,-0.03649464,0.0038495958,-0.008823462,-0.0023795094,-0.026747039,-0.02374506,-0.027170846,-0.06380676,0.009229612,-0.0012721618,-0.017364385,0.03969675,-0.011695943,0.022038052,-0.0015274772,-0.032798085,0.040591456,-0.016246,-0.012985027,-0.019165572,-0.0071870894,-0.01782351,0.020943213,-0.011289793,0.0020086768,-0.040968176,-0.04252214,0.048149377,0.0052358033,-0.015092299,-0.022226412,-0.0032609724,0.020331046,0.0044705933,0.013149843,0.0033639816,0.039885107,-0.02794783,-0.0046530664,0.014962802,0.012584764,-0.052505188,-0.0030755561,0.0049856384,0.07360145,-0.000018003593,-0.036282733,-0.016210683,0.0067103044,-0.01290262,-0.057826344,-0.005962753,-0.00550657,-0.012820213,0.011383973,0.0003785583,-0.033080623,-0.013985687,-0.04409965,-0.005868573,-0.04080336,-0.0030578976,-0.017552745,-0.0037642454,0.0058303126,0.006386562,0.00545948,0.012266908,0.040356006,-0.003325721,0.029384071,-0.0045853746,-0.0033110054,0.032468457,-0.020366363,-0.04763139,0.007864006,-0.019954326,0.012855531,0.03875495,-0.0034140146,-0.034140147,-0.0297137,0.021143345,-0.014574311,0.022155777,0.0015201194,-0.043063674,0.02068422,0.0013979801,0.009629875,0.029619519,0.06394803,0.032303642,-0.0027841877,-0.0038201646,-0.0146214,-0.023403658,0.024439635,0.04122717,0.0050032972,0.012808441,-0.014103412,0.03435205,-0.029902058,-0.02388633,-0.04586552,0.011113206,0.015657376,-0.0033463228,-0.0036170895,-0.010453948,0.01290262,0.015928144,0.04739594,-0.046854407,-0.030584862,0.01452722,0.061828982,-0.003599431,-0.03105576,-0.047042765,-0.033857606,-0.00045655086,-0.003581772,0.022862125,0.017929463,0.03355152,-0.008199521,-0.0146920355,0.013773783,0.009300247,-0.018047187,0.011113206,0.016610947,0.057167087,0.00776394,0.030113963,0.0320211,-0.018953668,0.0170583,0.053964976,0.0033610384,0.060510464,-0.015739784,0.0004977545,0.045041446,0.00033202028,0.019389248,0.0025119495,-0.011454607,-0.020801945,0.0334338,0.024675084,-0.007034047,0.0076756463,-0.04939726,-0.0037907334,-0.0019380419,0.006351244,0.05278773,0.03602374,0.010277361,-0.0018762364,-0.04678377,-0.03225655,0.009682852,-0.020601813,-0.006415993,0.003555284,0.05857978,0.011172068,0.034375597,-0.016104732,-0.0030284664,0.034375597,-0.02427482,0.03277454,0.008941187,0.10472784,-0.0040379553,-0.016999438,0.031267665,-0.003525853,-0.04796102,0.012078548,-0.00879403,-0.021202208,-0.040026378,0.03863723,0.03187983,0.061216813,0.0012169784,-0.006321813,-0.06253533,-0.086504065,-0.029595975,-0.009447402,0.06521945,-0.008058252,-0.008505605,0.018565176,-0.0072047478,-0.02168488,-0.008040593,0.0019895465,0.03282163,0.018270865,-0.03244491,0.018035416,-0.0033021763,-0.009600445,0.023450749,0.0022853296,-0.041650977,0.008452629,0.0045059104,0.026582224,-0.010406858,0.018753536,-0.04840837,0.01182544,0.006945754,0.027006032,0.03487004,-0.044594094,0.021284616,0.018706445,-0.0104833795,0.017811738,-0.018765308,-0.03745998,-0.0072165206,0.044923723,0.04122717,0.01562206,-0.031456023,0.0032874607,0.050621595,0.07341309,0.015504335,-0.035129033,0.02232059,0.036000196,-0.021178663,0.007740395,-0.04687795,-0.0034817061,-0.044711817,0.012408177,0.0061923163,0.0010197897,0.032421365,0.045041446,0.026888307,-0.012773124,0.088010944,-0.049821068,0.039437756,-0.032892264,0.011354541,0.004823767,0.024722174,-0.0043322667,-0.03826051,0.0043558115,0.060745914,-0.031314753,0.021002077,-0.010854212,0.030467138,-0.036894903,-0.044358645,0.013173387,-0.030090418,0.0083761085,-0.016552085,-0.011407518,0.03164438,-0.053117357,-0.024157096,-0.0015436644,0.0025884705,-0.041344892,-0.017623378,-0.005933322,-0.006645556,-0.021943873,-0.004891459,-0.07247129,0.0058921184,-0.012714261,-0.0055683753,0.007975845,0.017646924,0.019059619,-0.03263327,-0.009553354,0.004414674,0.07619139,-0.06649087,0.012337542,-0.03955548,0.025051804,0.042734046,0.058203064,-0.05217556,0.0048885155,-0.038354687,-0.0107659185,-0.008329018,-0.01719957,0.018635811,0.0401441,0.01891835,-0.020884352,-0.005073932,-0.008452629,-0.03649464,-0.009412085,0.021355249,0.0012824629,0.021355249,-0.006268837,-0.0063747894,-0.022850353,-0.00016196335,0.04716049,0.06672633,0.028065555,-0.021390567,-0.0033316072,-0.051422123,0.0018571062,0.00087852014,-0.010636421,-0.020048507,-0.05316445,0.034516864,-0.056790367,0.033692792,0.027547566,0.012890848,-0.014680263,-0.030514227,0.015657376,-0.006286496,0.012690716,-0.039885107,-0.038566593,0.009935959,0.028324548,-0.056696188,0.017458564,-0.02097853,-0.008034707,-0.007793371,-0.040403098,-0.027476931,0.01820023,-0.008417312,-0.0034199008,0.005609579,0.049208898,0.0052122585,-0.012726034,0.0045294557,0.029548885,0.017211342,0.004190997,0.003572943,-0.011695943,0.0146920355,-0.04438219,0.0017320238,0.022391226,-0.0043263803,-0.0036759519,-0.008075911,0.026158415,0.012620081,-0.033009987,-0.0043675844,0.021967418,-0.02422773,0.0029180995,0.006003957,-0.025169527,-0.017305521,-0.008458516,0.021049166,-0.0053476417,0.012690716,-0.04986816,-0.018212002,-0.0020631242,-0.025145983,0.023756832,-0.030490682,-0.03731871,-0.013726693,-0.0037200986,-0.0011139694,-0.019471655,0.0040379553,-0.005488911,-0.022367682,-0.024486724,-0.010283248,0.03439914,0.02780656,-0.044405736,0.01034211,0.05175175,0.00388197,-0.00029835838,0.010913074,0.0057155313,0.0004024711,0.035223212,-0.0013891507,0.007510832,0.006727963,-0.05307027,0.035388026,0.010406858,0.0008947073,-0.04892636,-0.028913172,0.044994358,-0.01110732,0.024298366,0.018529858,0.01223159,-0.0016967064,0.0056802137,-0.00456183,0.03258618,-0.017211342,0.027665291,-0.023756832,-0.038495958,0.0010764446,0.015351293,-0.021626016,0.030066874,-0.0107718045,-0.014939257,0.019036075,0.022438316,-0.014350634,0.028607087,0.00984178,-0.04935017,-0.033174805,0.000053619893,-0.026558679,0.014103412,0.016410815,0.019106708,0.013620741,0.02393342,0.019247979,0.007051706,0.01629309,0.013208705,-0.023921646,0.0076462156,0.013608969,-0.025051804,-0.014833305,-0.03837823,0.017717559,-0.028348094,0.054153334,-0.013820873,-0.019554062,-0.035223212,0.009100115,0.0028371639,0.02107271,-0.014009233,0.02794783,-0.018953668,0.009847666,-0.05161048,-0.018659355,-0.042027697,-0.0022647278,-0.010347996,-0.006722077,-0.029384071,-0.015421928,0.0077698263,-0.014633173,-0.012478812,0.013173387,-0.024110006,-0.010501038,0.022344137,-0.026299685,0.00092340267,-0.025357887,0.00835845,0.0074990597,0.0052475757,0.0051887133,-0.03258618,-0.053446986,-0.002803318,-0.04275759,0.0022676708,-0.01566915,0.032303642,-0.015233569,0.030749677,0.013915053,-0.017458564,-0.0011397217,-0.03788379,0.0099124145,0.03889622,0.019554062,0.0029445875,0.0066337837,-0.016940575,0.0010889529,-0.009476834,0.016399043,0.0128790755,0.007110568,-0.047325306,-0.0019365703,0.034187235,0.0019100823,-0.028654177,-0.0011227988,0.035741203,0.04313431,-0.011854871,0.02432191,-0.038495958,-0.0038731406,0.023427203,-0.003681838,-0.035505753,-0.002410412,0.0071694306,-0.003681838,0.0341166,-0.01223159,-0.033480886,-0.03555284,0.043511026,-0.038213417,-0.000118552394,0.031715017,-0.009264929,-0.034917127,-0.015445473,0.04840837,0.0031873947,0.02068422,0.012219817,0.008270156,0.026605768,-0.031173484,0.004329324,0.014056322,0.033692792,-0.006898664,0.004614806,-0.03541157,0.0038466526,0.026888307,0.011207386,-0.00015377782,0.017329067,0.0065925797,0.04897345,-0.06178189,-0.005324097,0.000072152325,0.019389248,0.00095062645,-0.023909874,-0.01791769,-0.013526561,-0.022909215,0.014115185,-0.016658036,0.059851207,-0.004838483,0.00785812,-0.019318614,0.011454607,0.012667172,-0.011901961,-0.04490018,-0.01954229,-0.020119142,0.028489362,0.022332365,0.0471134,-0.00044367474,0.0040526707,-0.03531739,-0.005300552,-0.01872999,-0.024098234,0.0061511123,0.0015201194,-0.03096158,0.0061452263,0.051563393,0.014491904,0.024051145,-0.0007100267,-0.023015168,-0.045559436,-0.0031373617,-0.045300443,0.023285935,0.016975893,-0.003631805,0.0025752266,-0.008429084,0.004820824,0.013550106,-0.024816355,-0.02398051,-0.026535135,-0.048361283,0.007975845,-0.018553404,0.041486163,-0.045276895,0.0018011869,-0.011148524,-0.07557922,-0.012690716,0.027783016,-0.022191094,-0.018930122,-0.0136442855,0.02818328,0.041391984,0.012773124,-0.019895464,0.008340791,-0.04925599,0.009541582,0.013020345,0.057826344,-0.005683157,-0.004673668,0.004670725,0.029784335,0.00781103,0.033080623,-0.022767946,-0.03760125,0.002653219,0.03357507,-0.0076756463,0.011507584,-0.017305521,0.02608778,-0.009924187,-0.003093215,0.057025816,0.02202628,0.02044877,-0.01605764,0.011425177,0.011831326,-0.0057155313,-0.0009712283,-0.03541157,-0.005377073,-0.012584764,-0.031361844,-0.029266346,0.0033286642,-0.023968738,-0.016246,0.010141978,0.024369001,0.0029372298,-0.005171055,-0.0129968,0.051233765,0.023627335,-0.000030741765,-0.012961483,0.0055624894,0.037436437,-0.009935959,0.014021005,0.03449332,-0.022638448,0.033598613,-0.015810419,-0.01385619,0.0031020443,0.011330997,-0.03388115,-0.02823037,0.027665291,0.0107659185,0.029737243,0.033904698,0.031032216,-0.008823462,0.019165572,-0.004441162,-0.021425884,-0.047937475,0.00025292404,-0.022673765,0.037483525,0.022650221,0.023803921,0.041274257,0.02604069,-0.04247505,-0.030113963,-0.042074785,-0.05528349,0.06140517,-0.007911095,-0.010471607,-0.011495811,0.011054344,-0.0012169784,-0.01141929,-0.020095596,0.0120137995,-0.004776677,0.0039378894,0.0082819285,0.01557497,-0.03710681,0.0035523411,0.007964072,-0.006121681,-0.010218499,0.01595169,0.0035140805,-0.020001417,0.011766578,-0.032750994,-0.009094228,-0.04972689,-0.013938597,0.020695992,0.02804201,0.044499915,0.0048620277,-0.0061805435,-0.013797328,-0.024580905,-0.030655496,0.044005472,0.030796766,0.009329678,0.0154572455,-0.012049117,0.015374838,-0.020625357,0.026252594,0.025452068,-0.009017708,-0.011990255,-0.038660772,0.062629506,0.016399043,-0.03430496,-0.0087587135,0.0052475757,0.03164438,0.0144094955,0.06818611,-0.017788192,0.024957623,0.009476834,0.014338861,0.029807879,0.012949711,0.010960164,-0.038872678,-0.00088219903,-0.0036494639,-0.023486067,0.022650221,0.01901253,0.06380676,-0.0012029987,-0.017117163,-0.015963461,0.008841121,0.009088342,0.023285935,-0.021484748,0.027076667,0.015009891,-0.010907188,0.009364995,0.017364385,0.008440857,-0.026605768,-0.0034934788,0.027641745,0.0014590498,0.03708326,0.029831424,-0.0044558775,-0.0318092,0.033457343,0.023438975,0.0030461252,-0.051327944,-0.0029136848,0.044853088,-0.013302884,-0.0036465207,-0.025357887,0.011130865,-0.021531837,-0.020566495,0.023015168,0.022779718,-0.009264929,-0.026440954,-0.04452346,0.0051445668,-0.012714261,-0.0016981779,-0.025687516,0.0101949535,0.03889622,0.011354541,0.011684171,-0.013962142,-0.0066632144,-0.0077757123,-0.015786875,0.0055683753,0.047654934,0.040567912,-0.010094888,0.017493881,-0.0011669454,0.01701121,-0.0099124145,0.020660674,-0.015339521,0.03388115,0.02794783,0.01091896,-0.02174374,0.0073401313,0.004991525,-0.007828688,-0.00613934,-0.019000757,0.0091413185,-0.013126297,0.005789109,0.03917876,-0.003009336,-0.015009891,-0.008852893,0.004941492,-0.019601153,0.029077986,0.029266346,-0.02283858,0.031267665,0.016905257,0.023533156,-0.035953104,-0.027618201,-0.009235498,-0.014727352,0.03684781,0.022873897,-0.023391886,-0.00209697,-0.008841121,0.0058509144,0.006262951,-0.014515448,0.027123757,0.01571624,-0.009353222,0.031032216,0.006033388,-0.0013199876,0.004558887,-0.005636067,-0.015857508,0.0101007745,0.003728928,0.032162372,0.013385291,0.019754194,0.047937475,-0.031456023,0.03616501,-0.0036112033,-0.020707764,0.012890848,-0.049679797,-0.0320211,-0.008464402,0.022002736,-0.010665853,0.025216619,-0.033692792,0.008764599,-0.015798647,0.033009987,-0.037977967,0.0008961788,0.019601153,-0.013408837,-0.020590039,-0.011431063,0.007864006,0.022532497,0.018047187,-0.022438316,0.015433701,-0.017894145,-0.00821718,0.011448721,-0.014350634,-0.0028092042,-0.025711061,0.0023397773,-0.034375597,-0.016646264,0.014150502,-0.009229612,-0.0050857044,0.02432191,0.021755513,0.0010146393,0.011907848,0.010059571,0.01070117,-0.0028150904,0.013867962,-0.007098796,-0.0050003543,-0.0010506924,0.02179083,-0.0006747093,0.009406199,-0.008817576,0.03616501,0.019671787,-0.0194952,-0.035223212,0.013809101,0.007063478,-0.009700511,-0.036706544,0.0006206296,0.008511491,-0.024204185,-0.05518931,-0.026676403,-0.012208045,0.008817576,-0.008876438,0.013432382,-0.034516864,-0.0119196195,-0.0033110054,0.032091737,0.03402242,0.044264466,0.032750994,0.020766627,-0.03661236,-0.018223774,0.01395037,0.060180835,0.014456586,-0.017882373,0.018518087,0.046312872,0.025569791,0.017694013,0.026888307,-0.0052917227,0.0334338,-0.016599175,0.002207337,-0.0014274112,0.00388197,0.009082456,0.008370222,-0.0219321,0.0056949295,0.019565836,0.046030335,-0.0019071392,0.00871751,-0.00020914518,0.0035346823,0.006898664,-0.036965538,0.0010690868,-0.041509707,0.009312019,0.03955548,0.001914497,0.0034964217,0.012831986,0.018694673,-0.03932003,0.00352291,0.00984178,0.027500477,0.0133499745,0.014680263,0.014138729,-0.017682241,0.02427482,0.0023927533,-0.016281318,0.01724666,-0.025663972,-0.027877195,-0.037036173,-0.008994162,-0.052269742,0.038213417,0.016446132,-0.0106776245,-0.001078652,0.010907188,0.0013030646,0.012078548,-0.022673765,0.008811689,-0.009376768,0.023721514,-0.017446792,-0.005400618,-0.013479471,0.009288474,0.0133499745,0.003855482,0.016987666,0.008105341,0.010583445,0.035011306,-0.008617444,0.018082505,0.029595975,0.0027488703,0.014821532,-0.035435118,-0.03640046,0.010924847,0.012349315,-0.01629309,0.017187798,0.0074519697,-0.03213883,0.042263146,0.0027841877,-0.041933518,-0.002819505,0.0023530212,0.013102752,0.025734607,-0.011654739,0.025193073,-0.00019792456,-0.000016991897,0.0022661993,-0.0033374936,0.014833305,0.007958186,-0.0037524728,0.0120137995,-0.0024162983,0.005736133,0.010954278,-0.0076050116,0.0085703535,0.016811078,0.013526561,-0.008823462,0.0038731406,-0.036282733,-0.0030122793,0.035576385,-0.022391226,-0.0035641135,-0.02465154,-0.021802604,0.030019782,-0.00080347067,0.043652296,0.030608406,-0.00034011385,0.031032216,0.008423198,0.022085143,0.003016694,0.01777642,0.011660625,0.010648194,-0.007375449,0.010742374,0.009988936,-0.015892826,-0.023780378,-0.0024118836,0.01051281,-0.022709083,-0.015751557,-0.020366363,-0.039296485,0.023085803,-0.012690716,-0.012349315,-0.00067434146,-0.008417312,-0.021590699,-0.0144094955,0.03105576,-0.0064042206,0.0010036025,0.018129595,0.014385951,-0.015810419,-0.014656718,-0.0167169,0.02841873,-0.03355152,-0.0018129594,-0.0024898762,0.026393864,-0.005450651,-0.014385951,0.028701268,-0.0038731406,-0.0024825183,0.00591272,-0.0097476,0.0033845834,0.020201549,0.01395037,0.0067573944,-0.014315316,-0.010112546,0.017070074,-0.020154458,0.01605764,0.00082775136,-0.032986443,-0.030043328,0.0037377572,-0.02451027,-0.002157304,-0.003375754,0.011095547,-0.01452722,0.012831986,-0.022238184,0.056978725,0.027288571,-0.012160955,-0.012914393,-0.019789511,-0.030349413,0.016351953,-0.012596536,0.038566593,-0.0015539653,-0.01323225,-0.021755513,-0.009600445,-0.043440394,0.024251277,-0.015056982,0.0020322215,-0.02332125,-0.0056772707,0.02374506,0.0054447646,-0.024486724,0.0087587135,0.026699949,0.024533816,0.030867402,0.0037613022,0.021720197,0.034658134,-0.004711929,-0.046948586,0.0150805265,-0.017564517,0.011160295,-0.017117163,-0.051657572,0.007257724,0.00397615,-0.02474572,-0.0113722,0.010448062,-0.021119801,0.004408788,0.014197592,0.008123,-0.017847056,0.00082039356,0.00012968105,-0.039296485,0.005353528,-0.01743502,0.02079017,0.0203075,-0.0045677163,-0.006898664,0.008688078,0.0039408323,0.001015375,0.00010650401,-0.049585618,0.013703148,-0.02580524,0.010495151,0.007964072,-0.016622718,-0.028889626,0.007151772,-0.028465819,0.0038937426,-0.0041762814,0.0054182764,0.03357507,-0.009035367,0.015833965,0.010242044,-0.056931637,0.05278773,0.026535135,-0.025028259,0.017234888,-0.00017585118,-0.022626676,0.0034110714,-0.013432382,0.026723493,0.003143248,-0.02121398,-0.024886988,0.0067044185,0.021414112,0.018341498,-0.018518087,-0.039743837,0.038966857,0.059804115,0.00090795127,0.0095769,0.012561219,-0.015728012,0.019942554,0.0056125224,-0.020601813,0.0059745256,-0.0060569327,-0.010083116,-0.019295068,0.047890384,-0.009465061,0.0048149377,-0.036235645,0.0033080624,-0.015598515,0.014291772,-0.004676611,0.023309479,-0.031173484,-0.005783223,0.0010867455,0.02957243,0.022120459,-0.012502356,-0.0072871554,0.026888307,0.0041733384,-0.01366783,-0.028301004,-0.022544269,-0.0069045504,0.0046324646,0.0005010655,0.0017437963,0.0072224066,0.010318564,-0.0111544095,-0.018977212,-0.0066926456,0.04558298,-0.0056713847,-0.01605764,0.00080641377,0.009894756,0.011931392,-0.007905209,-0.010030139,0.055236403,-0.00014844342,-0.00645131,0.0076344428,-0.016422587,-0.015410155,-0.004614806,-0.009765259,-0.022532497,-0.0024177697,0.009370881,-0.0167169,0.006018672,0.012208045,-0.0005816333,-0.026346775,0.022238184,-0.0049620937,0.037200987,0.026393864,-0.016281318,0.0012692187,0.007787485,-0.00424103,0.039720293,-0.03684781,0.025263708,-0.010830667,0.010889529,-0.007163544,-0.009317906,0.004841426,0.014974575,-0.00035519732,0.03936712,-0.01719957,0.006775053,0.04313431,-0.03684781,-0.00037009685,0.003146191,-0.027406296,0.016563857,0.007640329,0.004058557,-0.004641294,0.030867402,-0.0045059104,-0.031715017,0.034681678,0.0023677368,-0.0051681115,0.00080347067,-0.0051622256,-0.026440954,-0.018859487,0.000033110056]},{"id":"guide-permissions-1","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Guild-level permissions\nmember.permissions returns an object with has(permission). Use it for server-wide actions like ban, kick, manage roles.\n\n```javascript\nimport { Client, Events, PermissionFlags } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nasync function getMemberPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id) ?? await guild.fetchMember(message.author.id);\n return member?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n const perms = await getMemberPerms(message);\n if (!perms) return;\n\n if (perms.has(PermissionFlags.BanMembers)) {\n await message.reply('You can ban members.');\n }\n if (perms.has(PermissionFlags.Administrator)) {\n await message.reply('You have Administrator.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.019958302,0.033239994,0.049836144,0.030140137,-0.012518649,0.0032816743,-0.07935631,0.00012006353,0.022879321,0.0061162543,0.015093913,-0.026301084,0.028113307,-0.0067243027,0.006414317,0.011642343,-0.03354998,-0.009126691,0.016548462,0.044041798,0.05408056,0.017144587,-0.01691806,0.024310024,-0.08140698,0.0053859996,0.014545478,0.042825703,-0.010509703,0.0029523147,0.05441439,-0.009538018,-0.0064202785,-0.011636382,-0.021567844,-0.007874826,0.030020911,-0.007433693,-0.026539536,-0.02363044,-0.03788978,-0.033383064,-0.027016437,-0.01989869,0.0070581334,0.024965763,-0.0635232,0.0038509748,-0.03157084,0.033716895,-0.027016437,0.018074544,0.004938905,0.10653966,0.018122233,0.030473968,-0.049979214,0.016453082,-0.036268312,0.024965763,-0.014330872,0.027111817,0.0056512756,0.033025388,-0.0031892748,0.030760108,-0.040035833,0.019529091,0.04211035,0.09976767,0.03591064,0.02169899,0.023201229,-0.037555948,0.0061013508,-0.020625964,0.054843605,0.03762748,-0.005350232,0.0050551496,0.022438187,0.041132703,-0.060232583,0.0077436785,0.010408362,0.030211672,-0.0103070205,-0.03369305,0.0121728955,-0.077162564,-0.018396452,-0.025514198,-0.051076088,-0.0016602112,0.035219133,-0.033788428,0.0016572307,0.0022518665,-0.02353506,0.081836194,0.09704933,-0.0021907636,-0.03960662,-0.043922573,0.036029864,0.033120766,-0.01436664,0.02897173,-0.035552964,-0.00048062668,-0.07964245,0.030950869,0.025347283,0.033239994,0.0056781014,-0.013150542,0.029329406,-0.003597621,0.04664091,-0.017824171,-0.056417376,0.0043934495,0.056608137,-0.0030789915,-0.011946368,-0.03524298,-0.016417313,-0.049693074,-0.029043265,-0.020327901,0.04633092,-0.035338357,0.051171467,-0.05970799,-0.032763094,0.024178876,0.02930556,-0.043827195,-0.023940425,-0.029424787,0.002542478,0.012912092,-0.00073286257,0.01994638,-0.043111842,-0.009138614,-0.029257871,0.0059702033,-0.074778065,0.013639366,-0.055940475,-0.037699018,0.001129659,-0.018503755,-0.024321945,-0.018682593,0.029639391,0.0069746757,-0.030760108,0.015308519,-0.0009903145,-0.018587213,-0.015213138,-0.04432794,-0.01749034,-0.012924015,-0.0025290651,0.006891218,-0.016488848,0.025776494,-0.008733247,-0.0015305538,0.0039403937,-0.049502313,0.032405417,-0.008846512,-0.0039016455,0.020685576,-0.04301646,-0.025585733,0.005043227,-0.02103133,-0.0059851063,-0.045353275,-0.039678156,0.029663237,-0.009526095,0.020947872,-0.019409867,0.0050283237,0.012280199,0.0238212,0.011111791,0.0012734744,0.055654336,-0.03691213,0.02906711,0.00039120778,-0.005231007,-0.04206266,-0.012459036,0.0008308508,0.07301353,-0.022867398,-0.0051505296,-0.005284658,-0.005552915,-0.014426253,-0.0015424764,0.0023710916,0.0012466487,0.009573786,0.006432201,0.03700751,-0.014307027,0.003138604,-0.03600602,0.012530571,-0.047427796,0.0010380046,-0.035481427,-0.012482882,0.020757113,0.020697499,0.00524591,0.03676906,0.04745164,0.0027064127,0.0008360669,0.032858472,-0.013400915,0.03397919,-0.04346952,-0.049979214,0.035052218,-0.022998545,0.030354742,0.028852506,0.014032809,-0.013234,0.006825644,-0.0065514264,0.014080499,-6.083514e-7,0.018146079,-0.040059675,-0.0061520217,-0.016488848,0.047427796,0.022140125,0.076304145,0.027827168,0.027517183,-0.001597618,-0.018420298,-0.00831596,-0.017752636,0.04835775,0.01653654,0.0063129757,-0.0057824235,0.053365212,-0.006360666,-0.019231029,-0.029663237,0.014831618,0.019588705,0.009758585,-0.02594341,-0.010390478,0.006891218,0.0028777989,0.026634915,-0.022283195,-0.045472503,0.017466495,0.04788085,0.001384503,-0.03426533,-0.024083495,-0.0034247446,-0.011302551,-0.008339805,0.012435191,0.01002088,0.012578261,-0.0062354794,-0.032643866,0.0025588714,0.030283207,-0.011660228,0.0024068593,0.025490353,0.03180929,0.041657295,0.022867398,0.038009003,-0.018658748,0.044637926,0.0755411,-0.006163944,0.028518675,0.0026318969,-0.024703467,0.0064202785,-0.018158002,0.0022861436,0.0084709525,-0.018932967,-0.041895743,0.047713935,0.04230111,-0.006205673,-0.012697486,-0.048810806,0.0036453113,0.018873353,0.005827133,0.05326983,0.017979164,0.017001517,-0.02632493,-0.019791387,-0.037031356,-0.02343968,-0.042086504,-0.022736251,0.013770513,0.048238527,0.006205673,0.05894495,0.01809839,-0.013222078,0.042491872,0.0033830157,0.032453105,0.010605084,0.08293307,-0.0013904643,-0.0019478421,0.04380335,-0.0016929982,-0.064810835,0.026301084,0.008137122,-0.00567214,-0.00070640945,0.015236984,0.03757979,0.019541014,-0.010926992,0.0113502415,-0.055797406,-0.051839128,-0.034909148,-0.040369663,0.035815258,-0.024214644,0.011773491,-0.00552907,-0.02689721,-0.0024485881,-0.009842043,-0.021615533,0.015463511,0.014485865,-0.033812273,0.0044083525,0.030283207,-0.0050789947,-0.004557384,-0.008953814,-0.018885275,-0.003695982,0.003558873,0.00062257925,-0.030473968,0.0059523196,-0.027207196,0.018169925,0.020220598,0.033025388,-0.0017347271,-0.030569348,0.02353506,-0.0061281766,-0.008464991,-0.003743672,-0.011207171,-0.019529091,0.013198232,0.011141597,0.03614909,0.004196728,-0.024631932,-0.011523118,0.07143976,0.06776762,0.0105275875,-0.023082003,0.022104356,0.040059675,0.025609579,0.016560383,-0.0101162605,-0.048119303,-0.03262002,0.0158808,0.027588718,-0.002783909,0.040011987,0.03824745,0.007076017,-0.015845032,0.072822765,-0.05684659,0.061567906,-0.009192265,0.0063964333,-0.022760095,-0.004900157,0.012292121,-0.015964258,-0.018873353,0.039248943,0.00032786938,0.00723101,-0.045949403,0.006187789,-0.03672137,-0.059755683,0.0016110309,-0.0052250456,0.014104344,-0.011606576,0.0040864446,0.0025439681,-0.03133239,-0.04144269,-0.01824146,0.05140992,-0.02906711,-0.002675116,0.037603635,0.026777986,-0.025752649,0.0062474017,-0.044161025,0.034742232,-0.021853983,0.0054933024,0.018515678,0.012971705,0.0138778165,-0.07124899,-0.005687043,0.016500771,0.064190865,-0.010217601,0.011081985,-0.057561938,0.022199737,0.020661732,0.017132664,-0.00813116,-0.0033859964,-0.0055976245,0.012351734,-0.012649797,0.0016050696,-0.026611071,0.033478443,0.059517235,-0.0042235535,0.010229524,-0.0048196795,-0.0018405394,-0.025609579,0.045877866,0.03946355,0.050885327,0.0141281895,-0.029901687,-0.032238502,0.025776494,0.07387195,0.049120795,0.0041699023,-0.03455147,0.01796724,-0.042849544,0.010074532,0.011505234,-0.011684072,0.0026274258,-0.045138672,0.019743698,-0.050503805,0.017216122,0.01200598,0.02410734,-0.056417376,-0.047928542,0.008679597,-0.04413718,-0.021651302,-0.01332938,-0.046235543,-0.0064500845,0.047237035,-0.025418818,0.037508257,-0.02254549,-0.022426264,0.0036930013,0.008029819,-0.05718042,0.027874857,-0.020244444,-0.023082003,0.024894226,0.055082053,0.02131747,0.0015573795,-0.0075171506,-0.011690034,0.006456046,-0.0018688554,0.00078390585,0.0062116343,0.029663237,-0.01653654,0.040798873,0.008304037,-0.0010424756,-0.0036363695,-0.029043265,-0.00088450214,0.0060059708,-0.039010495,0.008011935,0.03219081,-0.021615533,-0.0022190795,-0.017549952,-0.019374099,-0.0077734846,0.018169925,0.0059970287,0.007976168,0.010146067,-0.014473942,-0.029734772,0.0027913607,-0.0014254866,-0.00652162,-0.02079288,-0.030640883,-0.0065812324,-0.015225061,0.012089438,0.009603592,0.03743672,0.011731762,-0.02584803,-0.027278733,0.010521626,0.0587065,0.0041788444,-0.024071572,0.01569004,0.04883465,-0.011994057,0.03335922,-0.0049836147,-0.007022366,-0.012637874,0.031594686,-0.0030283208,0.031117784,-0.0014217608,-0.05803884,0.04258725,0.05427132,-0.010026841,-0.025132678,-0.02637262,0.03557681,-0.021555921,0.017716868,0.008864395,-0.003979142,-0.020578275,-0.007952322,0.0119523285,0.018754128,-0.0049776533,0.024131186,-0.020995563,-0.0021609573,0.0069746757,-0.025514198,-0.026444156,0.014593167,0.0018733264,-0.029901687,0.03691213,-0.0053472514,-0.020637887,0.020530583,-0.003630408,-0.0054187863,-0.060566414,-0.016143095,-0.025585733,-0.01068258,0.0011028333,0.040321972,0.0050819754,0.041704983,0.030354742,-0.0068971794,0.00931149,0.0138182035,0.01862298,0.009800314,-0.004611036,-0.0050968784,-0.014867386,0.00026993337,0.030783953,-0.039344326,0.039201256,-0.009490328,-0.023034314,-0.0018390492,0.032715403,-0.00723101,0.030473968,-0.036506765,0.039201256,-0.021985132,0.022509722,-0.07272739,-0.0061460603,-0.022473956,-0.018324917,-0.02618186,-0.029925533,-0.03281078,-0.0012198231,0.011052178,-0.032453105,-0.007725795,0.020566352,-0.0048852535,-0.017526109,0.01465278,-0.023654284,-0.0017883783,-0.011177365,0.016715378,-0.014712393,0.011195249,-0.0076244534,-0.015153526,-0.04277801,0.011338319,-0.026301084,0.0026766064,0.01332938,0.04633092,0.0041520186,0.0013219097,0.017931474,-0.028566364,-0.020804802,-0.048572358,0.0138778165,0.024441171,0.0060089515,0.0018569329,-0.015535047,-0.0047570867,0.029973222,0.0086021,-0.0092936065,0.024870383,0.012292121,0.0016780951,-0.008810745,0.018849509,0.018026855,-0.016739221,0.0035350278,0.0053472514,0.03326384,0.018062621,0.030736264,-0.031642374,-0.00013515296,0.012566339,-0.020077528,-0.02103133,0.00045566392,0.011803297,0.020005994,0.032214656,0.011040256,-0.055320505,-0.044733305,0.029782461,-0.045639418,0.0047809314,0.024894226,0.020220598,-0.00978243,-0.043111842,0.035982173,0.000043591725,0.00038822714,0.013985119,0.016393468,0.006456046,-0.032071587,-0.0068792957,0.036459073,0.042468026,0.0011982135,-0.000052207608,-0.015463511,0.017418806,0.01894489,-0.0024396463,-0.016619997,-0.00676007,0.007642337,0.022032822,-0.06771993,-0.027779479,0.0025171426,0.01653654,-0.0010037273,-0.03328768,-0.04067965,-0.01857529,-0.023010468,-0.01352014,-0.021210168,0.054986674,-0.02206859,0.007886749,-0.0060357773,0.0026795869,0.0053859996,-0.033931497,-0.05241141,-0.0070342883,0.005630411,0.049836144,0.010533549,0.060137205,0.013114775,-0.006748148,-0.013448605,0.01171984,-0.023332376,-0.02603879,0.0023949367,0.0019195261,0.008119238,0.0074396543,0.03266771,0.017502263,0.03951124,0.000019583675,-0.015070069,-0.032238502,-0.0052906196,-0.01304324,0.01431895,0.027421802,0.00050111854,-0.011827142,-0.013639366,-0.025299594,0.012280199,-0.013591676,-0.036125243,-0.032453105,-0.025299594,0.0026661742,-0.016345778,0.04163345,-0.040488888,0.028375603,-0.007815214,-0.071916655,-0.029520165,0.03166622,-0.03431302,-0.013639366,0.004858428,0.03638754,0.04022659,0.0069210245,-0.0119821355,0.01417588,-0.04754702,0.010247408,0.014008964,0.05923109,0.0046020937,-0.0038807811,0.0040059676,0.045210205,0.007874826,-0.01592849,-0.028566364,-0.06423855,0.016143095,0.016286166,0.0067243027,-0.0040298128,0.0029910628,0.024226567,0.0077734846,-0.005698966,0.030688573,0.012554416,0.002803283,-0.0068554506,0.021055175,0.015809266,-0.0066050775,0.0045395005,-0.045472503,0.009239955,-0.004283166,-0.029949376,-0.009740701,0.03416995,-0.010932953,0.0069210245,0.005368116,0.0185276,0.012530571,-0.0041669216,0.0038956841,0.043231066,0.010652774,0.021448618,-0.013400915,-0.029234026,0.05284062,-0.01843222,-0.001569302,0.0011795845,-0.021615533,0.017979164,-0.0049359244,0.004938905,0.012518649,-0.015916567,-0.014783928,-0.0015901665,0.014473942,0.0036900206,0.014032809,0.025800338,0.044733305,0.0061281766,-0.0009746662,0.011803297,-0.023690052,-0.013543986,-0.019159494,-0.03359767,0.054891296,0.03538605,0.019242952,0.04816699,0.0007652769,-0.017418806,-0.0040715416,-0.050503805,-0.01309093,0.07406271,0.0088822795,-0.0032906162,-0.005317445,0.0073383125,-0.012935937,-0.02363044,0.019231029,0.041561913,-0.021949364,-0.009722817,0.0074515766,0.01946948,-0.0053293677,0.017514186,-0.0069448696,0.0013003001,-0.012530571,0.0043547014,-0.019278718,-0.0086319065,0.013257845,-0.013889739,0.0063129757,-0.033573825,0.00029731792,0.046235543,-0.0008248895,0.021424772,-0.021913597,0.018312994,-0.009377064,-0.024214644,-0.0103070205,0.03383612,0.012089438,-0.008304037,0.015129681,-0.031403925,0.014438175,-0.023368144,0.03266771,0.02859021,-0.009025349,-0.0045931516,-0.030974714,0.04797623,0.013365148,-0.015463511,0.028184844,0.011117753,0.019445634,0.0037645365,0.055320505,-0.00043740755,0.017573798,0.025251903,0.029567856,0.016596152,0.013150542,0.009818197,-0.023523137,-0.010140105,0.012780944,-0.02358275,0.037412874,0.0032578292,0.049836144,-0.05732349,0.022008976,0.00040238514,0.02916249,0.0038807811,-0.014915076,-0.042038813,0.028399449,-0.01629809,-0.020959795,-0.009084962,0.026062634,0.02107902,-0.02305816,0.013162465,0.011469467,-0.0010499272,0.022175891,0.026611071,-0.019779464,-0.0008189283,0.040202748,0.021067098,-0.0033204225,-0.036244467,0.0008524604,0.03927279,-0.0067123803,0.006634884,-0.035886794,0.013210155,-0.0055409926,-0.0034485897,0.04687936,0.048047766,0.014795851,0.0025201233,-0.044518698,-0.00019094665,-0.004187786,-0.0291148,-0.028113307,-0.00019970225,0.027970238,-0.019958302,-0.007260816,-0.011117753,-0.020363668,-0.008703441,0.012017903,0.0036810788,0.059135713,0.032643866,0.008333843,-0.0032101392,-0.004381527,0.037651327,-0.020125218,0.016727298,-0.011302551,0.03142777,0.013019395,-0.0038032846,0.0042593214,0.01068258,0.02622955,-0.015177371,-0.0072846613,-0.022712406,-0.013782436,-0.028423294,0.013019395,0.015761575,-0.014271259,-0.017645333,0.0022518665,0.038533594,-0.013889739,0.009192265,0.01446202,-0.011809259,0.008494797,0.033621512,0.03407457,-0.017907629,-0.0013636386,-0.005931455,-0.009323413,0.020554429,0.04361259,-0.025919564,-0.006059622,0.009347258,0.0066706515,-0.0025722843,-0.021567844,0.032214656,0.013687056,-0.005138607,0.017943397,0.02259318,-0.015761575,-0.015535047,0.009538018,-0.043231066,-0.020304056,0.0073085064,0.016965749,0.01994638,-0.02103133,0.040345818,-0.012220586,0.018146079,-0.007314468,-0.002518633,-0.0016512694,-0.020447126,-0.035696033,-0.022199737,0.04022659,-0.00850672,0.011785413,-0.03445609,-0.0076542594,-0.018742206,0.03593448,-0.037079044,0.00931149,0.008423262,-0.031117784,-0.01691806,0.014628936,0.021746682,0.006575271,0.036888286,-0.026730295,0.003114759,-0.007302545,-0.012375578,0.003728769,-0.0040089483,0.008715364,-0.011338319,-0.0012541004,-0.032786936,-0.01640539,-0.01313862,0.00401789,0.0054098447,0.019457556,0.012697486,0.01352014,0.0070581334,0.006980637,0.01833684,-0.014903153,0.02268856,0.009031311,-0.008685558,-0.009090924,0.016882293,0.010605084,0.006956792,-0.027397957,-0.0009485857,0.015320442,-0.00656931,0.001649779,0.0019016423,0.0064202785,-0.003976161,-0.04075118,0.034384556,-0.00609539,-0.025013452,-0.038128227,-0.038748197,-0.031117784,-0.0017362174,0.011827142,0.03719827,-0.0172042,-0.01484354,-0.0016378566,-0.0012295102,0.01763341,-0.0039552967,0.014378563,0.027898703,-0.037555948,-0.0037228076,0.0068077603,0.06619385,0.0070700557,-0.020017916,0.011111791,0.05241141,0.029925533,0.016155018,0.0049240016,0.014879309,0.017526109,-0.030593192,-0.0035618537,0.03238157,-0.018837586,0.022712406,0.0039821225,-0.04380335,0.019874845,0.02448886,0.026348775,0.0013032807,0.008971699,0.01053951,0.009001505,-0.001994042,-0.032166965,0.0034247446,-0.024536552,0.027803322,0.0012906131,0.013114775,0.0286379,0.01158273,-0.013448605,-0.027660253,0.01762149,0.030974714,0.011624459,0.039725844,-0.0009679598,0.0046944935,-0.020029837,0.030664729,-0.007505228,0.009937422,0.020637887,-0.027994083,-0.019839078,-0.04423256,-0.023737742,-0.05274524,0.048000075,0.009985113,-0.013114775,-0.003961258,0.015415822,0.011320435,0.013758591,-0.018563367,-0.011117753,-0.00774964,0.033478443,-0.029377095,-0.017454574,0.0071356297,0.0017168432,0.007660221,-0.0008092412,-0.0035082023,0.037651327,0.001432193,0.023797356,-0.0037615558,-0.00006529444,0.016798835,0.0008800312,0.011535041,-0.032858472,-0.0040745223,0.011660228,0.0024754137,0.009526095,0.028256379,0.016941905,-0.025800338,0.013997042,0.004560365,-0.045591727,0.005681082,0.01956486,0.011695995,0.018909121,-0.01460509,0.022056667,-0.00879286,0.007594647,-0.01843222,-0.011499273,0.0068792957,0.0012734744,-0.015773498,0.015904645,0.030330898,0.011469467,0.019278718,0.0026766064,-0.010152028,0.024465017,0.019588705,-0.014545478,0.026587225,-0.030807799,-0.013579753,0.0041699023,-0.023117771,-0.008387495,-0.009538018,-0.008441146,0.04630708,-0.027874857,0.03593448,0.04056042,-0.014104344,0.006241441,0.0006143825,0.00803578,0.012625951,-0.017502263,0.012041748,0.019171417,-0.012709409,0.00024348026,-0.0016721338,-0.02107902,-0.040965788,0.0007287642,0.016178863,-0.03662599,-0.030211672,-0.02632493,-0.024941918,0.028280223,0.0067779543,-0.030235518,0.006932947,-0.017025363,-0.015761575,-0.018253382,0.0026169936,0.0001304026,-0.01441433,0.022676637,0.001928468,-0.0027958315,-0.0134366825,0.018253382,0.013448605,-0.006342782,-0.028232533,-0.01980331,0.028375603,0.009001505,-0.0058867456,0.01847991,0.003663195,-0.012494803,0.026587225,-0.0042712437,-0.017561875,0.00898362,0.012864402,0.0050074593,0.00063971785,-0.013687056,0.02064981,-0.028661745,-0.0105872005,0.020566352,-0.024238488,-0.020089451,-0.037174426,-0.024512706,-0.0038271297,0.0049746726,0.014831618,-0.027350267,-0.006408356,-0.01460509,0.02570496,0.032739248,-0.008888241,-0.03354998,-0.005567818,-0.029830152,0.0033025388,-0.033096924,0.040369663,-0.013782436,-0.0008807764,-0.0286379,0.0026825676,-0.038915113,-0.013842049,-0.004199709,-0.017359193,-0.025204213,0.0029597662,0.020125218,0.0031117783,-0.011177365,0.007260816,0.008494797,0.022032822,0.038557436,0.0045007523,0.009609553,0.024047729,0.0111594815,-0.023260841,0.027707942,-0.009365141,0.021377083,-0.029758617,-0.043755658,-0.010652774,0.008047703,-0.023070082,-0.0007816704,-0.002178841,-0.03762748,0.044065643,-0.004470946,-0.0088226665,0.00075596245,-0.0023800335,-0.01431895,-0.025991099,0.0011833104,-0.015868878,0.019743698,0.009371103,-0.002476904,-0.007970206,0.019171417,-0.0009098375,-0.022330886,0.028614054,-0.029257871,-0.014497788,-0.00094933086,0.008685558,-0.02665876,-0.019254874,-0.0057705007,-0.0001918781,-0.020292133,0.008739209,0.0007127433,-0.013174388,0.019874845,0.00040275772,-0.013746669,0.011493312,-0.05365135,0.049788453,0.019397944,0.017776482,0.018122233,-0.014497788,-0.03710289,-0.017609566,0.0008822667,0.008590178,0.029424787,-0.0044441205,-0.033859964,-0.0042563407,-0.017800326,-0.02689721,-0.031499304,-0.04075118,0.02283163,0.053555973,0.0031535071,-0.0053234063,0.04137115,-0.01706113,0.024345791,-0.0011326396,-0.001262297,0.03445609,0.0028941925,-0.01729958,-0.015272751,0.05360366,0.0046050744,0.00406558,-0.010593161,0.011535041,-0.0153323645,-0.016083483,-0.019302564,0.007260816,-0.025919564,-0.0147004705,0.0019955323,0.038009003,0.010086454,-0.024608087,0.018038776,0.007850981,-0.005842036,-0.008244424,-0.023225075,-0.014008964,-0.012083476,0.012119244,-0.008619984,0.013901661,0.015201217,0.03354998,0.022652794,0.018611059,-0.017144587,0.06719534,0.028280223,-0.018980656,-0.011195249,0.0058390554,0.012351734,-0.027731787,0.0055588763,0.018301072,-0.009800314,0.010211641,0.03228619,-0.012459036,0.0060506803,-0.0032161004,-0.013555909,-0.016810756,-0.0016646822,0.0071713976,-0.045877866,0.024727311,0.027469492,0.0028852504,-0.025824184,0.019099882,0.009520134,0.033025388,0.015201217,0.0018688554,-0.013532063,-0.025561888,-0.0049120793,0.04163345,-0.025347283,0.036411382,-0.027231041,-0.016131174,0.0013003001,-0.010366634,0.01417588,0.0048286216,0.008423262,0.010485859,-0.006336821,-0.005818191,0.009478405,-0.036697526,-0.020721344,-0.0148912305,-0.026921056,0.006163944,-0.020876337,0.0027615542,-0.0077734846,0.0019493324,-0.04320722,-0.038438212,0.028447138,-0.00096199854,-0.02126978,0.011523118,-0.0013666191,0.0005335329,-0.024727311,-0.015606582]},{"id":"guide-permissions-2","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Bot's own permissions (guild.members.me)\nUse guild.members.me to get the bot's GuildMember. Returns null if not cached. Use guild.members.fetchMe() to load it. Discord.js parity.\n\n```javascript\n// Check if the bot can ban members in this guild\nconst guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\nconst me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null);\nif (me?.permissions.has(PermissionFlags.BanMembers)) {\n await message.reply('I have Ban Members permission.');\n}\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.0050386516,0.026198637,0.04581234,0.019296212,-0.01526294,0.0026501426,-0.046094548,0.016332991,0.01646234,-0.007819611,0.0033042266,-0.009842127,0.014992488,-0.0047828974,-0.0010090532,-0.008172375,-0.028691504,0.017826362,0.01248786,0.027492106,0.0481641,0.06514382,-0.01726194,0.019837119,-0.046141583,-0.02645733,-0.017320732,0.029984975,-0.02249461,-0.030455327,0.007125841,-0.017908674,-0.029302964,0.010447706,-0.023423556,-0.021883152,0.027703764,-0.015745051,-0.019307971,-0.0025016875,-0.03490016,-0.036687497,-0.028197635,-0.0028191756,-0.011276702,0.0056912657,-0.0047946563,0.010300721,0.0050180736,0.03675805,-0.04943405,0.007778455,-0.006449709,0.07469198,0.011558914,0.0098538855,-0.03243081,-0.00069523987,-0.039415542,0.0059205624,-0.037745792,0.01535701,-0.03805152,0.03579383,0.0072081527,0.018073296,-0.023341244,-0.0064085536,0.008877904,0.04150861,0.027351,0.03499423,0.026151601,-0.03664046,-0.029302964,-0.009230669,0.04607103,0.004847571,-0.0030661107,-0.010024388,0.044354245,0.031325478,-0.04498922,-0.014263441,0.0062321713,0.021165865,-0.007508002,-0.015380528,0.038992226,-0.043319467,-0.019296212,-0.057853363,-0.062980205,0.0054854867,0.05211506,-0.009442328,-0.030761056,-0.013334494,-0.0005758144,0.08188838,0.051080287,-0.00047402718,-0.06599046,-0.03838077,0.04132047,0.012652484,-0.004685887,0.0120763015,-0.0848516,0.024740543,-0.05126843,0.053902403,0.048540384,0.0067436798,-0.020530889,-0.030431809,0.051973954,0.011276702,0.02100124,-0.02913834,-0.057618186,-0.0054796073,0.056959692,-0.047905408,0.00831936,-0.031207891,-0.021036517,-0.0452244,-0.020236919,-0.012723036,0.0062909652,-0.022294711,0.056583412,-0.029326482,-0.018802343,0.0051268428,0.011729416,-0.029585175,-0.02586939,-0.012640725,0.012146855,0.0077490583,0.016003745,0.025610697,-0.06904776,-0.033959452,-0.05126843,-0.03327744,-0.054984212,-0.017109074,-0.049387015,-0.02329421,-0.016967967,-0.028620953,-0.02993794,-0.014686758,-0.021530388,-0.0033689002,-0.053102802,-0.021083552,-0.006332121,-0.042566907,0.007890164,-0.038592424,-0.0034423927,-0.001347854,0.0005592786,-0.005808854,-0.028926682,0.018049778,0.0042449315,0.020072294,0.00040494415,-0.06542604,0.0140988175,-0.00594702,-0.042778563,0.009342377,-0.023870392,-0.030996233,-0.014486859,-0.01318163,0.0013529984,-0.02378808,-0.05728894,0.019190384,0.034265183,0.010412429,-0.02993794,0.011700019,0.021941947,0.034853123,0.014322235,-0.005617773,0.066178605,-0.028268188,0.023635216,-0.00436252,0.007519761,-0.0669782,0.00014064643,0.016603444,0.058935173,-0.009071925,0.0065672975,-0.014157612,0.017461838,-0.043954443,-0.007948958,0.03896871,-0.011141476,-0.04905777,0.025845872,0.007978355,-0.007155238,-0.0342887,-0.07821963,0.0031690001,-0.03918037,0.012969972,-0.05648934,0.01606254,0.038662978,0.04795244,0.007643229,0.0124761015,0.043060776,-0.004103826,-0.028879646,0.054372754,0.018202644,0.0072081527,-0.018367266,-0.038286697,0.021789081,0.009448207,0.03407704,0.05126843,0.015192387,-0.03259543,0.004450711,0.011811729,0.02586939,0.016191887,0.013169871,-0.05531346,0.012593689,-0.018814102,0.02993794,0.019061036,0.038192626,0.05291466,0.04132047,-0.0074550877,-0.019190384,0.013369771,-0.03527644,0.07596193,0.039086297,-0.005314984,-0.018578926,0.049528122,-0.029279446,-0.05686562,-0.037510615,0.008766196,0.00055560394,0.0067613176,0.0125819305,0.0056618685,0.0060969447,0.015803846,0.05103325,-0.038545392,-0.030831609,0.031654727,0.0023164863,0.0048916666,-0.031443067,-0.013122836,-0.013146354,0.022294711,0.00041890773,0.008672125,0.023270693,0.020601442,-0.00011841493,-0.016591687,-0.0006074162,0.02338828,-0.024787579,0.0020827798,0.01228796,0.008942578,0.041908413,0.010688761,0.06552011,-0.031748798,0.06528493,0.04858742,-0.024046773,0.025963461,0.014674999,-0.027115824,0.024317225,-0.0031366635,-0.026598437,0.020566165,-0.057618186,-0.04804651,0.011541275,0.033559654,-0.04607103,0.0041773184,-0.051597673,-0.026716024,-0.0021886092,0.009565795,0.06429719,0.008378155,0.02448185,0.008678004,0.003953901,-0.024528885,-0.007284585,-0.029185375,-0.00802539,0.0019152168,0.04498922,0.008772075,0.04778782,0.028127082,-0.013840123,0.02130697,0.005858829,0.01773229,0.01486314,0.045059774,-0.007743179,-0.014439823,0.030596433,0.021730287,-0.048728522,0.01993119,-0.0060175727,-0.022447575,-0.034735534,0.0342887,0.009142477,0.01832023,-0.010024388,0.013934194,-0.027303966,-0.087062255,-0.023646973,-0.03838077,0.0036452322,0.009465845,0.03139603,-0.0017373647,-0.043437056,0.005676567,-0.0044242535,0.014028264,0.033183374,0.0132874595,-0.024928685,-0.023646973,0.039415542,0.025375519,-0.045341983,-0.014239923,-0.018555408,-0.021730287,0.00931298,0.020425059,-0.025116825,0.022318227,-0.027021753,0.030572915,-0.011247305,-0.009695142,0.030032009,-0.037510615,0.033912417,-0.0100537855,0.003489428,-0.014333994,-0.013663742,0.0021886092,0.021671493,0.048728522,0.009683383,-0.026927684,-0.032266185,0.009395292,0.051174358,0.020566165,-0.015686257,-0.030290704,0.029679244,0.03259543,0.02338828,-0.007619711,-0.010818108,-0.0140988175,-0.030478844,0.026175119,0.022424057,-0.00037113755,0.03172528,0.023258934,0.018861137,-0.061616182,0.06072251,-0.01594495,0.053337976,-0.009377654,0.03327744,-0.0067142826,-0.027398035,-0.03525292,-0.0101067005,-0.018767066,0.023741044,0.009354136,0.022153605,0.002141574,0.050892144,-0.06674302,-0.07342203,-0.00021220984,-0.028315224,-0.010571173,-0.026739541,-0.017109074,0.0001702272,-0.012158613,-0.06185136,0.007854887,0.04113233,-0.0744568,-0.02110707,0.001893169,0.01398123,-0.0062556886,0.036240663,-0.07224615,0.03221915,0.014510375,0.0011538336,-0.025704766,0.03478257,0.029796833,-0.06594343,0.017967466,-0.0038186747,0.043272432,-0.020154607,-0.0059705377,-0.038898155,-0.0013868051,0.022271194,0.019590184,-0.026245672,0.03626418,-0.035770312,0.012193889,-0.00037279114,-0.011253185,-0.0048622694,0.01378133,0.043154847,-0.0011869052,0.004100886,-0.018073296,-0.0016138972,-0.028573917,0.02022516,0.043060776,0.04033273,0.03130196,-0.031090302,-0.009536398,0.033089302,0.027586177,0.061004724,0.018896414,-0.011576552,0.0070435293,-0.05131546,-0.0012655423,-0.015709775,-0.010853385,0.026198637,-0.016097816,0.037980966,-0.064579405,0.022047775,0.02100124,-0.008278205,-0.07008253,-0.033442065,0.029349998,-0.05757115,-0.006461468,-0.024105567,-0.021330487,0.018872896,0.046047512,-0.062980205,0.02238878,-0.031443067,-0.02349411,-0.012064543,0.010871023,-0.044707008,-0.003092568,-0.019648977,0.0016873897,0.038498357,0.045294948,0.012029266,-0.007560917,-0.008113582,-0.015897917,0.012828865,0.014921934,0.0073786555,0.024834614,0.024434814,-0.005629532,0.054937176,0.0063556386,-0.0034512118,-0.04607103,-0.014745552,0.00901313,-0.011852884,-0.048728522,0.023458833,0.006778956,-0.0052679484,0.017191386,-0.019648977,-0.01605078,-0.01953139,0.028080046,0.007560917,-0.003527644,0.0144045465,-0.017391285,-0.0151100755,0.00039098054,-0.035323475,-0.0111708725,0.0067613176,-0.02883261,0.0012971441,-0.0027515623,0.014722034,0.020989481,0.028926682,0.027515624,-0.013710776,-0.008777955,0.0069024237,0.048540384,0.016250681,-0.016497616,0.019707771,0.05272652,-0.019637218,0.0061910152,0.018602444,-0.009395292,0.00545021,0.025681248,-0.04045032,0.0044154343,-0.002231235,-0.033653725,0.02765673,0.014192888,-0.031325478,-0.015627462,-0.02497572,0.03327744,-0.04153213,0.0062792064,-0.016485857,-0.023646973,-0.0068495087,-0.0072551877,0.017967466,0.026010495,-0.025587179,0.01773229,-0.05362019,0.0053238026,0.009448207,-0.0030661107,-0.0023752803,0.017861638,0.011529516,-0.030761056,0.044330727,0.01832023,-0.0016859199,0.00396566,-0.014780829,-0.016180128,-0.017238421,-0.02488165,-0.026316226,-0.012546654,-0.010577053,0.013616706,0.030008493,0.02130697,0.036123075,-0.014533893,0.01318163,0.0009208621,-0.0024296648,-0.0027677307,0.028409293,-0.00052179734,0.008078305,-0.046353243,0.018896414,-0.040473837,0.014874899,-0.02280034,-0.03983886,-0.0076491083,0.02546959,0.039227404,0.044072032,-0.028620953,0.03718137,-0.027351,0.009983232,-0.049998473,-0.007819611,-0.02864447,-0.009989112,-0.002200368,-0.022553405,-0.026222154,-0.027938941,0.009900921,-0.03875705,-0.02873854,0.010788712,-0.013428565,-0.008237049,0.031090302,-0.026316226,-0.009953836,-0.022659233,0.03191342,-0.022282952,0.003151362,-0.022024257,-0.015533392,-0.03139603,0.022318227,-0.016227163,0.011553034,0.0058117937,0.015545151,0.002586939,-0.0031102062,0.046635453,0.00931298,-0.027115824,-0.050656967,-0.012299719,0.025775319,0.0059411405,-0.009689262,-0.0017491236,-0.016368268,0.03666398,0.0127818305,0.053855367,0.019472595,-0.014416305,-0.03816911,-0.0033659604,-0.0031366635,0.030008493,-0.018955206,0.007960717,0.013158113,0.013522635,0.0133932885,0.024740543,-0.06462644,0.0027074667,0.0134873595,0.00048321375,-0.0022385842,-0.00035166202,0.020236919,0.057241905,0.026386777,-0.019601943,-0.031584173,-0.05559567,0.04129695,-0.065331966,0.029114822,0.0042272937,0.003051412,-0.015991986,-0.026998235,0.039979964,0.002120996,0.013334494,0.01646234,-0.009001371,0.017167868,-0.009477603,0.0036158352,0.019249178,0.041343987,-0.014757311,0.010594691,-0.03337151,0.013557912,0.013887159,-0.0013831304,0.0194138,0.0037334233,0.012911177,0.03012608,-0.060064018,-0.037416544,0.009771574,0.028056528,0.003063171,-0.044471834,-0.039697755,-0.008448708,-0.018802343,-0.008960216,0.003795157,0.03450036,-0.0138754,0.007472726,-0.0334891,0.002894138,-0.0034923677,-6.8325136e-7,-0.0046241535,-0.008207652,-0.0003498247,0.05409054,-0.014792588,0.05362019,-0.007995993,0.03915685,-0.021142347,-0.0030896282,-0.03358317,-0.03052588,0.009942077,0.0035335235,-0.0054678484,0.0025516625,0.02457592,-0.011558914,0.046094548,-0.00723755,-0.023364762,-0.019249178,0.015415804,-0.013169871,0.0035041263,0.0354881,0.0071434793,0.0065966942,-0.016238922,-0.024387779,-0.009836247,-0.018496614,-0.029373515,-0.016979726,-0.024552403,-0.0047035255,-0.02725693,0.045530125,-0.026410295,-0.001705028,0.005482547,-0.06984735,-0.02329421,0.023705767,-0.017767567,-0.016180128,0.026104566,0.012605448,0.04698822,-0.01496897,-0.025610697,0.01050062,0.009395292,0.024834614,0.0138754,0.05686562,0.0011913148,-0.007067047,0.014040023,0.04480108,-0.003418875,-0.0057118437,-0.028127082,-0.05253838,-0.0057823965,0.012852383,0.009354136,-0.0054766675,0.0028059469,0.010377153,-0.0061674975,-0.010324238,0.025587179,0.0019901793,0.002360582,-0.028080046,0.010818108,0.009183633,-0.017814603,0.022271194,-0.054043505,-0.007919561,0.00891906,-0.01823792,-0.008883784,-0.007025891,0.025022754,0.0156157045,0.008043028,-0.014674999,-0.029255928,-0.009283584,-0.0035100058,0.06561418,0.027586177,-0.0018108573,-0.027586177,-0.03410056,0.044142585,-0.016579928,0.008578055,0.031701762,-0.012229166,0.022776822,0.008436949,0.025798837,0.01832023,-0.02497572,-0.02883261,0.0038804084,0.032830607,-0.026480848,0.023917427,0.03525292,0.019778324,-0.016591687,0.018085055,-0.02289441,0.002567831,-0.020342747,-0.0031160857,-0.0022547524,0.040191624,0.010841626,0.031207891,0.02022516,-0.0034159354,-0.010118459,0.019355007,-0.020965964,-0.02565773,0.05686562,0.02297672,-0.0098538855,-0.0021356945,-0.009812729,-0.017920433,-0.026433812,-0.014333994,0.058135573,-0.015874399,-0.01675631,-0.005262069,-0.0060969447,-0.025563661,0.02209481,-0.023799838,-0.016956208,-0.019801842,0.003618775,-0.02972628,0.00614398,0.031584173,-0.027421553,-0.024999237,-0.02488165,0.009089563,0.02528145,0.003992117,0.020719029,-0.0015477538,0.018085055,-0.015286458,-0.008419311,-0.013934194,0.0061498596,0.0034953074,-0.01872003,-0.0015139473,-0.0048593297,0.024270192,-0.034947194,0.025352001,0.028479846,-0.021060035,-0.00113987,-0.014580929,0.045177363,-0.00053870067,-0.026480848,0.020260436,0.0057853363,0.017955707,-0.019801842,0.0580415,0.013710776,0.024387779,0.027115824,0.008507501,0.0068024737,0.024646472,0.027186377,-0.04548309,-0.006373277,0.007361017,-0.03431222,0.027421553,0.004538902,0.034335736,-0.043789823,0.028691504,-0.044589423,0.026386777,0.009442328,-0.01893169,-0.05945256,0.028973717,-0.014028264,-0.0144751,-0.025210897,0.031866383,0.025540143,-0.037510615,0.03360669,0.02129521,0.0051415414,0.044636454,0.03687564,-0.03290116,0.0064555886,0.02645733,0.016815104,-0.0116765015,-0.04430721,0.0040950067,0.0334891,-0.016897416,-0.006373277,-0.028080046,0.012934695,-0.0032219149,0.024552403,0.017320732,0.044119067,0.013499117,0.03172528,-0.04597696,0.0028882585,0.0011971942,-0.022576923,-0.011864643,-0.00614398,0.021847876,0.0063791564,-0.009177754,-0.006990615,-0.0123820305,-0.003248372,-0.014051782,-0.014957211,0.0432254,-0.007643229,0.009559915,0.000057783545,-0.0028015373,0.019260937,0.0063967947,-0.010247806,-0.01606254,0.002416436,0.027233412,-0.003201337,0.0124761015,-0.002832404,0.038216144,-0.010018509,0.006855388,-0.020848377,-0.0003498247,-0.02796246,-0.0020210461,0.012158613,-0.01991943,-0.016086057,0.009924439,0.024129085,-0.0033835985,0.02220064,0.026433812,-0.0033130457,-0.009236548,0.030032009,0.015415804,-0.011817608,0.0086427275,-0.013687259,-0.0037892777,0.031748798,0.043460574,-0.0041538007,-0.006549659,0.01635651,0.02140104,0.0025193258,-0.036217146,0.0096539855,-0.0032395532,-0.009171874,0.0050856867,0.015874399,-0.01634475,-0.0125819305,-0.0032954074,-0.03896871,-0.004915184,0.0014764661,0.0214128,0.0111708725,-0.017826362,0.020754306,-0.0073786555,0.02466999,0.001247904,-0.0063086036,0.004380158,-0.025563661,-0.018849378,-0.014510375,0.020154607,-0.002448773,0.020648476,-0.0025237354,-0.04510681,-0.015027763,0.04687063,-0.046047512,-0.00039906474,0.015603946,-0.026880648,-0.006005814,0.018449578,0.014827864,0.012864142,0.032760054,-0.020566165,0.010459465,-0.0153099755,-0.019002242,0.0021533328,0.0073198616,0.021589182,-0.064156085,-0.018755307,-0.03431222,-0.0082840845,0.014910175,-0.0011259064,0.007067047,0.013428565,0.00921303,-0.009577554,0.014322235,0.013463842,0.005667748,-0.022847375,-0.0044918666,0.023964463,0.011094441,-0.021071794,0.01705028,0.0100537855,-0.006731921,-0.020166365,0.002714816,0.022424057,0.0038216144,-0.0072316704,-0.0026736602,0.008889663,0.0006129282,-0.0198136,0.0014500087,-0.012193889,-0.0050592297,-0.015333493,-0.027092306,-0.041696753,0.0032836488,0.0144751,0.029796833,-0.001655053,0.012346754,-0.0061674975,0.0067436798,0.029397033,-0.0054560895,0.027915424,0.046235655,-0.02796246,0.008995492,0.0015374649,0.07224615,0.007055288,-0.0074021732,0.023764562,0.04132047,0.020719029,0.017967466,-0.0050709886,0.008366396,0.0408266,0.0003364123,-0.017567668,0.021118829,-0.008554537,-0.0105065,-0.009371774,-0.04369575,0.027938941,0.034359254,0.02833874,0.0055119437,0.010965094,0.020189883,0.008777955,0.004300786,-0.050798073,0.0144986175,-0.01715611,-0.012558413,0.0012140975,-0.00025795898,0.009630469,-0.008989613,-0.0047623194,-0.036711015,-0.01911983,0.0144045465,-0.00084369484,0.035299957,-0.030619951,0.036123075,0.009695142,0.04687063,0.0151100755,0.004577118,0.0096010715,-0.014827864,-0.007125841,-0.046729524,0.0019975284,-0.034759052,0.0354881,0.019790083,0.0027471527,0.0011237016,0.024046773,-0.003936263,0.037204888,0.008660366,0.007261067,0.009554036,0.053432047,-0.03191342,-0.029984975,0.013322736,-0.015368769,0.0034482721,0.0006478371,0.005391416,0.019801842,-0.012723036,0.01923742,0.0113061,-0.0011545685,0.012170372,-0.0013919496,0.0041949567,-0.036522876,0.0012412898,0.01606254,0.03172528,0.015780328,0.025963461,0.0033865382,-0.01894345,0.023258934,-0.01894345,-0.029843869,0.04254339,0.01726194,-0.0026766,0.017932191,-0.026386777,0.016815104,0.016909175,-0.0065672975,-0.0057529993,-0.005312044,0.015521633,-0.004915184,-0.008242928,0.023940945,0.012064543,-0.031654727,-0.012523136,0.033324476,0.018179126,0.011670622,0.014181129,0.004747621,0.018085055,-0.008772075,-0.017320732,0.014192888,-0.031184373,-0.015568669,-0.010288962,-0.0023752803,0.0091483565,-0.013299218,0.05093918,0.06302724,-0.0137930885,0.006449709,0.0023076672,-0.0014220815,0.0033365632,-0.016403545,0.0020210461,0.005441391,-0.0346885,0.010800471,0.007995993,-0.009407051,-0.018085055,-0.0016697515,0.0071434793,-0.018919932,-0.046259172,-0.026951201,-0.018661236,0.021236418,0.009489362,-0.023846874,0.018308472,-0.028174117,-0.01686214,-0.01942556,0.0053796573,0.013746053,-0.035441063,0.023164863,-0.0038392525,-0.024622956,-0.027139341,-0.011359014,0.011141476,-0.026151601,-0.025210897,-0.017967466,0.026081048,-0.0072904644,-0.010647605,0.007878405,0.033042267,-0.014698517,0.012252684,-0.0027809595,-0.036993228,0.029397033,0.010577053,0.009507,-0.0048416913,-0.011347255,0.029491104,-0.04371927,-0.017085556,0.015592187,-0.05046883,-0.030173115,-0.0135931885,-0.010177253,-0.011288461,-0.039203886,0.015439322,-0.03151362,0.033136338,-0.024058532,0.02626919,0.039674237,-0.020965964,-0.0072551877,-0.00891906,-0.04023866,-0.001774111,-0.023552904,0.038710013,-0.01506304,0.014286959,-0.0072434293,-0.012605448,-0.029914422,-0.023999738,-0.0076373494,0.0016477037,-0.018096814,0.00050709886,0.016897416,-0.020613201,-0.020425059,-0.0073904144,-0.0076726256,0.03141955,0.031160856,0.005132722,-0.011705899,0.023435315,-0.0026486728,-0.014016505,0.028009493,-0.02972628,0.028385775,0.02704527,-0.04270801,-0.030643469,0.006361518,-0.0025516625,-0.03626418,0.017461838,-0.020554407,0.036687497,-0.0074021732,-0.008860266,0.013628465,-0.0038980467,-0.019801842,-0.018696513,-0.000021301366,-0.014921934,-0.00831936,-0.0023664613,-0.014439823,-0.016203646,0.040191624,0.000056084027,0.0057912157,-0.006449709,-0.03835725,-0.015321734,-0.012746554,-0.015580428,-0.0018402543,-0.024058532,-0.008689763,-0.007790214,-0.021777323,0.020189883,-0.016909175,-0.016262438,0.0069200615,-0.012393789,0.0067378003,0.026292708,-0.044565905,0.033559654,0.01120027,0.032054525,0.022294711,0.005817673,-0.033089302,-0.028221153,-0.0014125275,-0.00040641398,0.016133092,-0.0017667618,-0.007261067,0.0002651245,-0.004406615,-0.0050856867,-0.041861378,-0.01635651,0.026175119,0.033841867,-0.00047072,-0.027115824,0.017026762,-0.017873397,0.0111062,0.0016124273,-0.014616205,0.0049298825,-0.01358143,-0.028503364,0.005717723,0.04451887,-0.0013912147,0.037016746,-0.016168369,-0.021718528,-0.014745552,-0.027891906,-0.017308973,0.0071611176,-0.02397622,-0.020989481,-0.008131219,0.02972628,0.055736776,0.0023914487,0.020977722,0.01634475,0.015439322,-0.002259162,-0.03647584,0.0086427275,0.00000903155,0.030996233,0.0017814602,0.012146855,0.004509505,0.03259543,-0.00475644,0.010224288,-0.011323737,0.018896414,0.0066143326,-0.01813209,-0.01060645,-0.009542277,0.02240054,-0.010982731,0.0011310509,0.009924439,-0.012617207,0.014898417,0.021259936,-0.00525031,-0.02100124,0.003607016,-0.027492106,-0.03452388,0.009154236,0.016979726,-0.032760054,0.031584173,0.02011933,0.005035712,-0.024528885,0.017767567,-0.009971474,0.011411929,-0.011958714,-0.008901422,-0.008948457,-0.039674237,-0.007813731,0.030455327,-0.017708773,0.03212508,-0.0028000674,-0.027327484,-0.0036658102,-0.022141846,0.02268275,0.00079518976,0.010800471,0.016227163,0.0034247544,0.0045153843,0.013405047,-0.025399037,-0.02417612,-0.023870392,-0.02297672,-0.005482547,0.01120027,0.0049034255,-3.1578844e-7,0.009742177,-0.04339002,-0.013769571,0.016168369,-0.010918058,-0.003477669,0.0064144325,-0.005235612,0.015745051,-0.021471594,0.008966096]},{"id":"guide-permissions-3","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Editing the bot's guild profile (nickname)\nUse guild.members.me.edit({ nick }) to change the bot's nickname in that guild. Pass nick: null to clear and show the username. Requires Change Nickname permission (or bot has Manage Nicknames). See examples/ping-bot.js for a !setnick command.\n\n```javascript\nconst guild = message.guild ?? await client.guilds.resolve(message.guildId);\nconst me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null);\nif (me) {\n await me.edit({ nick: 'My Custom Nick' });\n await message.reply('Nickname updated!');\n}\n// Clear nickname (show username)\nawait me.edit({ nick: null });\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.008521699,-0.0115364,0.022136828,0.004108482,-0.025902482,-0.008576116,-0.035001002,0.05028129,-0.016597178,0.010818096,0.035371035,-0.0011033042,0.006165444,-0.0073517337,0.031061212,-0.018109972,-0.03750418,0.012145869,-0.014213715,-0.014126648,-0.0010516081,0.05646306,0.013560711,0.033760294,-0.0017127744,0.011677884,-0.010507919,0.00035337027,0.0015998592,-0.03358616,0.019176543,-0.018632373,0.013060075,0.010371876,-0.03807012,-0.020547852,0.041748706,-0.047321007,0.016706012,0.012287354,-0.07204808,-0.046580933,0.028362129,0.014496683,-0.037460648,0.02631605,-0.022506863,0.032323685,0.04192284,0.04362065,-0.03928906,0.023486368,-0.026359584,0.053894576,0.020787286,0.006214419,0.0061110267,0.0027167676,-0.009969191,0.021451173,-0.056898393,-0.024574708,0.015693856,0.012526789,0.018937109,0.032193083,-0.06577925,0.002675955,0.0011243909,0.016597178,0.0005856627,-0.0173046,-0.03881019,-0.019883964,-0.028601564,0.008505374,-0.019078594,0.010643961,0.013952513,-0.01567209,0.0020923328,-0.013212442,-0.06839126,0.0041193655,-0.007618377,0.047669273,-0.023225166,-0.041465737,0.036067575,-0.07326702,-0.02422644,-0.046014998,-0.050716624,0.002205248,0.06843479,-0.009060427,0.019535696,-0.019981915,0.021026721,0.076749705,0.073441155,-0.004239083,-0.04527493,0.018534424,0.021875625,-0.009566505,-0.013081842,0.047582205,-0.036589976,0.021320572,-0.07766391,0.031735983,0.0349357,-0.0071395077,-0.04294588,-0.009822265,0.030800011,-0.01502997,0.007765303,-0.059989277,-0.041531038,-0.0067313802,0.0696102,-0.042706445,-0.014670818,-0.032410752,-0.028144462,-0.010698378,-0.01842559,-0.012265587,0.0060457266,-0.048801146,0.019339794,-0.014540217,-0.02849273,-0.0077380943,0.029123968,-0.0068946313,-0.018904459,-0.012287354,-0.005134242,-0.030800011,-0.011253431,-0.011906435,-0.061512955,0.012037036,-0.052806236,0.0056648077,-0.050368357,0.041139238,-0.05576652,0.014823185,-0.03228015,-0.047408074,0.00031850938,0.01842559,-0.0022365379,-0.037765384,-0.08506462,-0.024400573,0.011264315,-0.013125376,-0.01957923,-0.013147142,-0.012037036,-0.026555486,0.03669881,-0.0011835693,-0.052675635,0.0021168205,-0.004973712,-0.025053577,0.020700218,-0.04307648,0.013223326,0.017533151,0.0041846656,-0.0036459377,-0.05646306,0.03323789,-0.024030538,-0.0033003897,-0.006796681,-0.042488776,-0.02768736,0.0078795785,0.0089842435,-0.038984325,-0.022506863,-0.052022632,0.009180144,0.011754068,-0.0071395077,-0.04368595,0.012559439,0.0005734189,0.062383626,0.00031867943,0.00034112643,-0.050237756,0.017968487,0.0057518748,0.06669345,-0.009571946,-0.033956196,-0.013114492,0.0076074935,-0.033542626,-0.04762574,0.005006362,0.020558735,-0.040616833,0.02951577,0.02208241,-0.05406871,0.014877602,-0.062035356,0.021113789,-0.057290196,-0.008782901,-0.039985597,0.008369331,0.03386913,-0.0036704252,0.029472236,-0.026577253,0.025097111,0.0032922272,-0.0057192245,0.029385168,0.0019889406,0.015726507,-0.027034355,-0.036132876,-0.015225871,-0.0052349134,0.006736822,0.021690609,-0.014942902,0.034021497,-0.022256544,-0.013495411,0.030495275,0.020068983,0.014028697,-0.053589843,0.0049220156,-0.024661776,0.03933259,0.00112167,0.022702765,0.023508135,0.024748843,-0.034086797,0.017043399,-0.0026419444,-0.014464033,0.057899665,0.025336545,-0.01788142,0.032584887,0.03352086,-0.0230728,-0.028601564,-0.009860356,-0.015323821,-0.014213715,0.02958107,0.0348051,-0.012505022,-0.058465604,0.001333216,-0.025358312,0.007008907,-0.007476893,0.034282696,-0.017685518,0.02496651,-0.026294284,-0.017380783,-0.053459242,0.0010312018,0.026969055,-0.033085525,-0.018349405,0.042227577,-0.047930475,-0.0401815,0.0028922625,-0.015563256,-0.0015250358,0.012592089,0.021331456,-0.00017974609,0.021026721,0.0078414865,0.04253231,-0.0041492945,0.017239299,0.019089477,-0.026881987,0.002541273,0.0018597003,-0.00012303339,0.00086523,-0.004380567,-0.032323685,-0.020907003,-0.0021358666,-0.07614024,0.0200581,0.0231381,-0.0352622,-0.018044671,-0.0173699,-0.03304199,-0.015628556,0.04120454,0.045710262,0.062993094,0.023116333,-0.015323821,-0.0075041014,-0.020341067,-0.046363268,-0.019851314,0.020841703,0.03765655,0.049236484,0.03881019,0.048017543,-0.0348704,0.011677884,0.05720313,0.013571595,0.03611111,-0.019720713,0.046189133,0.0041683405,0.010562336,-0.017250182,0.020482551,-0.015998593,0.0037275632,-0.017924953,-0.027578525,-0.008967918,0.045231394,-0.022615697,0.030016406,0.023747569,0.062470693,0.0059368922,-0.06612752,0.025793647,-0.051674362,-0.0014012372,0.017456967,-0.040965103,0.0200581,-0.010023608,-0.013451877,0.009218236,0.02153824,0.04455662,0.00072306563,-0.015084387,-0.02173414,-0.017837886,0.012450605,-0.010018166,-0.00727555,-0.012581206,0.0031942767,-0.03399973,-0.0014624563,-0.0073299673,0.013255976,-0.03012524,-0.020297533,0.0041710613,-0.0346092,-0.0033548067,-0.027230257,0.012472372,-0.017239299,0.039180227,-0.02099407,-0.015791807,-0.025902482,0.012831524,0.02259393,0.023899937,0.0012237019,-0.031322412,0.02775266,0.027578525,0.02442234,-0.003441874,-0.008630533,0.028318597,0.038548987,-0.009588271,-0.021647075,0.017903186,-0.010012724,-0.015302055,0.03066941,0.02958107,0.0054308143,0.01221117,0.034108564,0.039201993,0.022702765,0.040878035,-0.039637327,0.059553944,-0.049628284,0.02144029,0.018001137,-0.06556158,-0.023856403,0.035371035,-0.044513088,0.03182305,0.019492162,-0.004274454,0.0019263611,0.031235347,-0.04381655,-0.06704172,-0.0134627605,-0.0078088366,-0.018480007,0.027230257,-0.05089076,-0.007618377,-0.00047716888,-0.02503181,-0.008510816,-0.0055722985,0.016608061,-0.015280288,0.049845953,0.02551068,0.019720713,-0.02727379,-0.05685486,0.03358616,0.011862902,-0.024248205,-0.015824458,0.067607656,0.043881852,-0.02079817,0.0037819801,0.0346745,0.03019054,-0.010856187,-0.0150517365,-0.010078025,-0.001022359,0.038548987,0.050020088,-0.033694994,-0.032236617,-0.066214584,0.012069686,-0.01031746,-0.04301118,0.009664455,0.03534927,0.011558167,-0.01903506,-0.033020224,0.0028269622,-0.014279015,-0.010393643,0.025619514,0.03243252,0.034892168,0.03793952,-0.0025439938,0.015965942,0.030299375,0.019143892,0.057028994,-0.005243076,-0.01679308,0.007150391,-0.0049247365,-0.000810813,0.03093061,-0.008135338,0.00083530066,-0.012450605,0.03399973,-0.045144327,0.005893359,0.0049573868,-0.007319084,-0.031801283,-0.046232667,0.032519586,-0.056071255,-0.008489049,-0.011830252,-0.026838453,-0.022876898,0.041770473,-0.07731564,-0.015563256,-0.028993366,-0.04566673,0.020678451,0.0028351247,-0.034543898,0.012962124,-0.00910396,-0.020907003,0.017554918,0.048278745,0.008913501,0.0020297533,0.0054661855,-0.036307007,-0.013223326,-0.034500364,0.007857812,0.031431247,0.025314778,-0.046232667,0.030234074,-0.011808485,-0.055244118,-0.041748706,-0.020177815,0.008369331,-0.018251454,-0.025205946,-0.009822265,-0.010001841,0.004464913,0.02470531,-0.045013726,-0.013353927,-0.008238731,0.047669273,0.00839654,-0.009142052,0.026969055,0.005185938,-0.011830252,0.032149553,-0.023529902,-0.01929626,-0.0038527222,0.020341067,0.02041725,0.025750116,0.016553646,0.011405799,-0.0036296125,0.001647474,-0.0346092,-0.021364106,0.00951753,0.002739895,-0.004146574,-0.03297669,-0.019753363,0.032127786,0.010001841,0.0014502126,0.034369763,0.018436473,-0.020809053,0.04557966,-0.02931987,0.014344316,0.002640584,-0.07731564,0.035980508,-0.020983187,-0.039310824,-0.018229688,-0.028579798,0.013245093,-0.049367085,0.021494707,-0.014681701,-0.002602492,0.04442602,0.025075344,0.0154979555,0.0073299673,0.011939085,0.017729051,-0.043424748,0.004380567,-0.019154776,0.0005611751,-0.043337684,0.03628524,0.00017464449,-0.01903506,0.05015069,-0.0073517337,0.0011400357,0.004633606,0.011688767,-0.0036704252,-0.020841703,0.0002358636,-0.008679508,-0.02686022,-0.0072429,-0.010420851,-0.0047152312,0.010649403,-0.0056702495,0.018055554,0.010758237,0.033150826,-0.0005720585,0.019503046,0.016140075,0.0065300376,-0.0019848594,-0.05842207,0.02252863,-0.04884468,-0.010045375,-0.016967215,-0.019492162,-0.025053577,0.062035356,-0.013451877,0.0074170344,-0.03996383,0.040399164,-0.03234545,0.0081897555,-0.031387713,-0.023747569,-0.027121423,-0.008331239,-0.0030908845,-0.010393643,-0.003983323,-0.02727379,-0.014932019,-0.004864878,-0.04470899,0.018926226,-0.015312938,0.00253175,0.023051033,-0.03210602,0.0028922625,-0.020482551,-0.019361561,-0.02435704,0.020428134,-0.011188131,-0.014692584,-0.056071255,0.0032976689,-0.045884397,0.03874489,-0.017685518,0.025053577,0.03867959,0.022093294,0.021690609,0.01913301,0.018795624,-0.06395084,-0.015508839,0.012134986,0.020515202,-0.009414137,-0.016238026,-0.0068891896,0.03197542,-0.007602052,0.014834069,0.009310746,-0.010665728,-0.039854996,0.0021685166,0.023769336,-0.0045002843,-0.037286513,-0.012994775,0.022419795,0.007634702,0.04220581,0.027992094,-0.071482144,0.00663343,0.00090060104,-0.008162547,0.0015359193,0.026076617,0.0019236403,0.025554214,0.0114275655,0.012015269,-0.025619514,-0.039441425,0.04381655,-0.035001002,0.00810813,0.0016869263,0.011296965,-0.044273656,-0.012592089,0.044752523,-0.008690392,-0.0052485177,-0.0072048083,-0.009000569,0.024444107,-0.022027994,-0.0021875626,0.007830603,0.025184179,-0.0043560793,-0.023181634,-0.028470963,0.04390362,0.031910118,-0.03386913,0.04375125,0.032933157,0.012515905,-0.0005601548,-0.023377534,-0.023595203,-0.0012162195,0.037068848,-0.0040459023,-0.0154000055,-0.010154208,-0.008788343,-0.012091453,-0.0082278475,-0.0003441874,0.035436336,-0.021059372,0.0053056553,-0.03669881,-0.018621491,-0.034630965,0.020264883,0.006715055,-0.024313506,-0.02416114,0.041030403,0.001467898,0.018828275,-0.009337953,0.043250617,-0.033977963,-0.0026650715,0.00011963233,-0.012951241,0.013582478,0.0010420851,-0.022768063,-0.019633647,0.008886293,0.012559439,0.022441562,-0.05881387,-0.015312938,-0.010339226,0.022398029,-0.010916046,-0.0028514497,0.014725234,0.007003465,-0.054721713,0.0042934995,-0.036394075,-0.0077054445,-0.06011988,-0.042684678,-0.0005655965,-0.016640712,-0.009109402,-0.012820641,0.038636055,-0.0071993666,0.03160538,0.007803395,-0.040508,0.013125376,0.015345588,-0.044208355,0.0058443835,0.014355199,0.00047648867,0.0001291553,-0.008924385,-0.028928066,0.0036078456,0.05163083,0.016161842,-0.018545307,0.03867959,0.005474348,-0.0065953378,-0.004239083,0.028579798,0.0066551967,-0.016651595,-0.016640712,-0.066345185,-0.022550397,0.02470531,0.03093061,0.0058824755,0.016292443,0.008891734,-0.018109972,-0.020079866,0.06003281,0.0031480223,-0.0069272816,-0.02195181,0.021516474,-0.02746969,-0.025532447,-0.0017767143,-0.049845953,-0.00004663705,-0.0057137827,-0.013593362,0.011449332,-0.015813574,0.00987124,-0.012287354,0.0026691528,-0.016629828,0.010078025,0.02015605,0.0231381,0.03210602,0.011754068,-0.0025712023,-0.03567577,-0.023094567,0.035936974,-0.030081706,0.038048353,0.052283835,0.0058335,-0.0011135074,0.003512616,-0.003694913,-0.013310393,-0.024313506,-0.028601564,-0.006448412,-0.0010284809,-0.022680998,0.009435904,-0.0062253023,-0.0055260444,-0.0074551264,-0.007008907,-0.026337817,0.014507567,0.03439153,0.030821778,-0.0089842435,0.03304199,0.026098384,0.027905026,0.0013060075,-0.0076619107,-0.014877602,-0.019764246,-0.0033956196,-0.021059372,0.036219943,-0.013179792,0.035741072,-0.01951393,0.004905691,-0.016161842,-0.036394075,-0.005028129,-0.0002112059,-0.0077925115,-0.014409617,0.000039792416,-0.02775266,-0.024574708,0.013495411,-0.0123961875,-0.004826786,-0.0051451256,-0.010801771,-0.0014406895,0.017620217,0.036002275,-0.041835774,-0.031170046,-0.055418253,-0.018327639,0.040660366,0.0001977717,0.015040853,-0.014061348,0.016738662,-0.0020746472,-0.021897392,-0.033194356,0.012613856,-0.00006211188,-0.026729621,0.005637599,0.012015269,-0.004592793,-0.0061164685,-0.012352655,0.017097816,-0.011895551,-0.02435704,-0.02041725,0.011764951,0.01211322,-0.030647643,0.004220037,-0.013136259,0.009610038,-0.040377397,0.03426093,0.0023644178,-0.007950321,0.04518786,-0.0011237107,0.0232687,-0.0020134281,0.021396756,-0.042858813,0.0056811324,-0.0009482159,-0.012983891,0.012167636,-0.003945231,0.04714687,-0.055200584,0.025467146,0.0027534992,-0.0077544195,-0.010763679,-0.01676043,-0.028840998,0.018610608,-0.0064538536,-0.021690609,-0.030691177,-0.00926177,-0.012559439,-0.009425021,0.0033031106,0.00907131,0.033629693,0.04253231,0.06229656,-0.014464033,0.0029983756,0.029972872,0.0045002843,-0.02931987,-0.012537672,-0.007988413,0.052588567,-0.0025861668,-0.02727379,-0.024509408,0.003871768,0.010529686,0.0019943824,0.0021481102,0.021799441,0.047843408,0.009887565,-0.040290333,0.0289716,-0.021647075,-0.037025314,-0.0014610959,0.0013196118,-0.01519322,0.011373148,0.007743536,0.009234562,0.012581206,-0.020721985,0.012962124,0.011623466,0.03859252,-0.0074115926,0.009376045,-0.011394915,0.021560008,-0.0066769635,0.008706717,0.015552373,-0.013343044,-0.011786718,0.0066388715,-0.004054065,-0.013049192,-0.009952866,0.07252695,0.002044718,0.01563944,-0.02823153,0.021494707,-0.014246365,-0.01557414,-0.016662478,-0.011188131,-0.004304383,-0.03262842,0.03765655,0.009114844,-0.0050716624,0.009882123,-0.030038172,0.026141917,0.021364106,0.004739719,-0.014975552,-0.018871808,-0.012548556,0.0033412026,-0.0027453366,0.030277608,0.0045193303,-0.020362834,0.014790535,0.00919647,0.011906435,-0.051195495,0.022125944,-0.00698714,0.0016420324,0.02208241,0.008592441,-0.017772585,-0.006247069,0.00900601,-0.020536968,-0.021266155,-0.008418307,-0.008978802,0.030299375,-0.0046417685,0.04736454,-0.011073856,0.024814142,0.023508135,-0.0036785877,0.016988982,-0.031191813,-0.0052131466,-0.013800146,0.023355767,-0.018762974,0.032476053,0.011384032,-0.00085910806,-0.019415978,0.04505726,-0.013658661,-0.030517042,0.0021780396,-0.0032867854,0.0057573165,0.026903754,0.03719945,0.02381287,-0.00695449,-0.030364675,0.026925521,0.0066007795,0.0114275655,-0.006519154,-0.033346724,0.014289899,-0.041073937,-0.039528493,-0.024618242,0.0013230129,0.039876763,0.021462057,0.030647643,0.013234209,0.012439721,0.010007283,0.028079161,0.022332728,0.009920215,-0.022811597,-0.011960852,0.009256328,-0.015585023,-0.013451877,0.0073245256,0.0029466795,0.0041846656,-0.012265587,0.004970991,0.0348051,-0.004557422,-0.015302055,-0.019143892,-0.0115364,0.008091805,-0.018284105,0.0203846,-0.013506294,-0.019448629,-0.029189268,-0.03234545,-0.024792375,-0.026577253,0.037090614,0.03060411,0.00072374585,-0.0033275983,0.0038472805,-0.028470963,0.013789263,-0.0021712375,-0.0013046471,0.00029776292,-0.051456697,0.02503181,-0.0040078107,0.056941926,-0.0041193655,-0.0013216524,-0.002016149,0.04714687,0.045144327,0.025663048,-0.016118309,0.019894848,-0.0003608526,0.014681701,-0.005349189,0.016368628,0.00948488,0.01624891,-0.019829547,-0.05685486,0.00040812735,0.03719945,-0.0054444186,0.0060239597,0.01923096,-0.006323253,0.016477462,0.02140764,-0.026403118,0.016749546,-0.00026307208,0.018240571,0.010562336,-0.01692368,-0.0032459728,0.02201711,-0.0058062915,-0.04098687,0.0073789423,0.004301662,0.009299862,0.03635054,-0.01567209,0.025140645,-0.009566505,0.01278799,0.024814142,-0.0144858,0.008059154,-0.00050811854,-0.03902786,-0.039702628,-0.0020379159,-0.019568346,0.03297669,0.016575413,-0.009288979,0.020025449,-0.0052947723,-0.008113571,-0.004649931,-0.013005658,0.00608926,0.02775266,0.07008907,-0.045753796,-0.0007455126,0.006965373,-0.0017508663,0.0015590464,0.028645098,0.025118878,0.030299375,-0.011275198,0.0028922625,-0.009272654,0.016357744,0.019688062,0.012417954,-0.017598452,-0.04253231,0.010426293,0.02252863,0.009664455,-0.009218236,-0.014061348,0.010105233,-0.004086715,0.01865414,-0.0024201951,-0.017043399,0.054591116,0.02490121,-0.015813574,0.024748843,0.0071449494,0.024182906,0.028840998,-0.009463113,-0.03650291,0.0081897555,-0.01794672,-0.021570891,-0.019883964,-0.0085380245,0.015160571,-0.031453013,0.012602973,0.03515337,0.022136828,-0.0057790834,0.034652732,0.051717896,0.016575413,-0.0089842435,-0.01598771,0.018055554,-0.00894071,-0.033629693,-0.02720849,-0.015791807,-0.016988982,-0.015084387,0.01980778,0.02740439,0.01217852,0.0154000055,0.0027330928,-0.011166364,0.012407071,-0.02605485,0.012864174,0.021309689,-0.013310393,0.041030403,-0.0034826866,0.008434632,-0.0046689766,-0.011960852,0.009697106,-0.022833364,-0.06438617,0.024465874,-0.035458103,0.020166932,0.035936974,-0.027643826,0.0022310962,-0.022398029,-0.004791415,0.0057573165,0.0018175271,-0.0077326526,-0.030582342,0.009479438,-0.007993855,-0.030625876,0.023769336,-0.021668842,-0.006160002,-0.04172694,0.009223678,0.0043098247,0.0016937285,-0.043446515,0.009038661,-0.040595066,0.0028596122,-0.0015780925,0.020373717,-0.020079866,-0.016118309,0.028275063,-0.009637247,-0.0038772097,-0.017924953,-0.013713079,0.046842135,-0.027252024,0.010556894,0.01224382,-0.040464465,-0.016150959,0.00666608,-0.00910396,-0.033281423,-0.023007499,-0.0037629341,-0.054025177,0.010616752,-0.004557422,0.0018216084,-0.021886509,-0.015040853,-0.03195365,-0.032301918,-0.014039581,0.008565232,-0.014681701,0.019938381,-0.014137532,0.015465305,-0.0017753539,-0.016455695,-0.008086363,-0.0081897555,-0.013560711,-0.04259761,0.010780004,0.003387457,0.015955059,-0.017837886,-0.0068946313,-0.027774427,0.010137883,0.03719945,0.022746297,-0.021973576,-0.015867991,0.008663183,-0.00012133286,0.0008046911,0.026228985,-0.023181634,0.0016610783,-0.0038826515,-0.0200581,-0.022768063,0.006437529,-0.02381287,-0.0046744184,0.027317323,-0.002201167,0.0101923,0.016368628,-0.0055233235,0.012439721,-0.038244255,-0.004788694,0.0021045767,-0.004220037,-0.025293011,-0.023508135,-0.01913301,0.0049383407,-0.0055478113,0.045971464,-0.0037955844,0.028884532,0.021222621,-0.008135338,0.0014474917,-0.02086347,0.031735983,0.010137883,0.010072583,0.00040506638,-0.01621626,-0.032323685,-0.00044009733,0.010116116,-0.016629828,0.022136828,-0.00015228252,0.014823185,0.02368227,-0.015476189,0.03291139,0.010083466,0.01506262,0.010312018,-0.009174703,-0.022506863,-0.019361561,-0.0010747353,-0.018251454,-0.0023059195,0.022136828,-0.0022161314,0.0203193,-0.0073408503,0.0013658662,-0.013223326,0.008761134,0.01970983,0.022027994,0.0002304219,-0.009473996,0.0035180578,-0.055592388,0.014692584,0.015900642,0.014420499,0.008619649,-0.017446084,-0.022354495,0.011743184,0.025205946,-0.00958283,0.011547283,-0.03894079,-0.013898097,-0.028536264,-0.0064429706,-0.037700083,0.009854915,-0.035044536,-0.027295558,0.037525948,0.004848553,0.04849641,0.00025082828,0.026185451,0.012973008,0.0008931187,-0.011296965,-0.02666432,-0.0021113788,-0.032867856,0.038853724,-0.0026201776,0.029363401,0.011275198,0.051674362,0.016150959,0.009425021,-0.0057028993,0.008015621,0.0035561495,-0.022234777,-0.021603541,0.040965103,-0.0017005306,0.021385873,0.03121358,0.016150959,-0.0019603716,-0.0002513384,0.0291022,-0.03894079,-0.000113595444,-0.000044341337,-0.023312233,-0.03365146,0.0068238894,-0.010050816,-0.04566673,-0.0044349837,0.022811597,0.0045683053,-0.01577004,0.013473644,-0.0065844543,0.023551669,-0.034435064,-0.019241843,-0.017609335,0.0009434544,0.0008455038,0.047799874,-0.018893575,0.03887549,0.0064212037,0.0093923705,-0.0027888701,-0.028928066,0.016629828,0.017054282,0.018806508,0.022920432,-0.000432615,-0.0086740665,0.010007283,-0.049149416,-0.024509408,0.012940357,-0.023181634,0.0014542937,0.011111947,0.0054661855,-0.0067422637,0.023486368,-0.028405663,-0.0023385696,0.018197037,-0.040899802,0.013996047,0.036372308,0.0061327936,-0.009506647,0.005915126,0.008472724]},{"id":"guide-permissions-4","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Owner override\nThe guild owner automatically receives all permissions regardless of roles. No need to give the owner a role with Administrator.\n\n```javascript\n// When the message author is the server owner:\nconst perms = member.permissions;\nperms.has(PermissionFlags.BanMembers); // true\nperms.has(PermissionFlags.ManageRoles); // true\nperms.has(PermissionFlags.Administrator); // true\n// ... all permission flags return true for the owner\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.008920968,0.034526926,0.033891737,0.053401038,0.004406607,-0.018068789,-0.044599168,0.0071231634,0.007049436,-0.027449133,0.022254214,0.016594248,0.03588804,-0.011569469,0.011087407,0.009499442,-0.042875092,0.0028597573,0.02527135,0.049771402,0.049045473,0.021460231,-0.00953914,0.027539873,-0.080124244,0.0028994563,-0.0073840437,0.06456217,-0.010032545,-0.009119464,0.039245453,-0.014983596,-0.025951907,-0.0104692355,-0.0330297,-0.005002094,0.019826895,-0.023002828,-0.007486127,-0.02778941,-0.016798416,-0.01967944,-0.013214149,-0.019668097,0.013588455,0.047321398,-0.01975884,0.015970405,-0.02384218,0.01530119,0.012862528,0.033369977,0.020235227,0.055896416,-0.009074094,-0.0010789664,-0.035956096,-0.0025464175,-0.046323247,-0.0027094677,-0.0404024,-0.024341255,0.0050729853,-0.0033007015,0.031237567,0.011093079,-0.06469829,0.017422259,0.032712106,0.05734827,0.020382682,-0.022242872,-0.0072479323,-0.02067759,-0.010730116,-0.016424108,0.042648237,0.056077898,-0.02301417,0.0000234163,-0.000779096,0.018647261,-0.028674135,-0.0023564287,-0.001049192,0.023082225,-0.013475029,-0.021074582,0.0022259885,-0.062475134,0.017116008,-0.03992601,-0.05911772,-0.047139917,0.016231284,-0.042965833,0.012159285,0.021743797,-0.00884157,0.061386243,0.089107595,-0.028719505,-0.052992705,-0.013112064,0.030534323,0.053219557,-0.04691306,0.025951907,-0.03631906,-0.01755837,-0.059707534,0.009561826,0.04768436,0.015278504,-0.019169021,-0.013849335,0.003181604,-0.025203295,0.022923429,-0.028152375,-0.043646388,-0.015800266,0.035615817,-0.032054234,-0.015981747,-0.009629882,-0.015675496,-0.034436185,-0.033415347,-0.0038026122,-0.009510784,-0.022027362,0.062384393,-0.06574181,-0.025770426,0.015630126,0.006828255,-0.06478903,-0.021324119,-0.010990996,0.0009967324,0.022662548,-0.042602867,0.04074268,-0.041082956,0.008036244,-0.017694483,-0.026677834,-0.043328796,0.039426934,-0.04026629,-0.0032184676,0.0019963006,-0.008994695,-0.023297735,-0.013021324,-0.004999258,-0.0076052244,-0.045188986,0.01218197,0.02215213,-0.02215213,-0.010696088,-0.03854221,-0.024772275,-0.0573029,0.014960911,0.008540991,-0.00979435,0.01530119,0.0035530748,0.013565769,-0.015845636,-0.025588943,0.03951768,-0.018885456,-0.0016744538,0.0050304504,0.017444944,-0.015686838,0.043669075,-0.019531986,0.0032496597,-0.04927233,-0.034663036,0.032303773,-0.026178759,0.020496108,-0.030919973,0.013974104,0.016072487,0.006368879,0.040243603,0.02874219,0.033596832,-0.0076052244,0.0005309762,0.017739853,0.009437057,-0.052448258,-0.021925278,0.0069416813,0.080124244,-0.0072479323,-0.041060273,-0.033596832,0.015278504,-0.0020161502,-0.034209333,0.0063575367,-0.012567619,-0.02783478,0.018545179,-0.0021905429,-0.041196384,-0.016163228,-0.020257913,0.00037324298,-0.013894705,-0.012261368,-0.03541165,-0.0016418438,0.0006142736,0.013021324,0.034413498,0.0029859438,0.016900498,0.01851115,-0.015959062,0.012794471,-0.009431385,0.029536175,-0.0026541722,-0.043873243,0.014586605,-0.03198618,0.028447283,0.023501901,0.006159041,-0.008892612,-0.018091474,0.009369002,0.03815656,0.020836387,-0.012295396,-0.025430147,0.02315028,-0.0000035141065,0.008251754,0.04169546,0.04611908,0.026382927,-0.0067942273,0.017807908,-0.019577356,-0.012964611,-0.020008376,0.039245453,0.026995428,0.023002828,-0.026110703,0.028379226,-0.043941297,-0.018783374,-0.048092693,0.010815185,0.02341116,-0.030647751,-0.0013129079,0.0045654033,-0.004962395,0.01834101,0.056032527,-0.019702125,-0.024295885,0.010282082,0.044054724,-0.002082788,-0.038043138,-0.03770286,0.0014256252,0.01725212,0.004780913,0.021959307,-0.013078037,-0.00029313576,-0.014904198,0.00068481045,0.015369246,-0.014700031,-0.026269501,-0.008898282,0.03802045,0.029717656,0.020269256,0.033460718,0.021290092,-0.01903291,0.015788922,0.041604716,0.015459986,0.051722333,-0.02522598,0.011257547,0.034141276,-0.024091719,0.018522494,-0.016843786,-0.010236711,-0.013475029,0.007616567,-0.0054614698,-0.019792866,0.013327574,-0.021097267,-0.016866472,-0.0066978154,0.0053820717,0.052539002,0.024931071,0.018477123,-0.0017666125,-0.033301923,-0.0143370675,0.0011186656,-0.03770286,0.0074180714,0.010741458,0.039336193,0.025543572,0.036568597,0.0047525563,0.003436813,0.056077898,-0.028469969,0.03749869,0.0014405124,0.08597703,0.018624576,-0.023297735,0.03060238,0.034300074,-0.068826996,-0.0066694585,-0.0071685337,-0.03407322,-0.049952883,0.032167662,0.031169511,0.058664013,0.004125877,0.014246327,-0.065877914,-0.035661187,-0.05843716,-0.01477943,0.040470455,0.007911475,-0.032371826,-0.0030199718,-0.014359753,-0.016526192,0.010786829,0.022900743,0.011110093,0.043714445,-0.039676473,0.010934282,0.021641713,0.034254704,0.00013575694,0.020961156,-0.047139917,-0.014246327,0.0070551075,0.013282204,-0.018397724,0.000121578676,-0.04044777,0.000409752,0.000005225468,0.032802846,0.020779673,-0.04582417,0.020700276,-0.0085750185,-0.0027250636,-0.03545702,-0.0052487957,-0.050270475,0.011518427,0.05739364,0.040107492,0.025951907,-0.030488953,0.007599553,0.049226955,0.06297421,0.035729244,-0.020133145,0.0054189353,0.027948208,-0.0032610022,0.026314871,-0.022095418,-0.011597825,-0.077039056,0.01408753,0.021051897,0.0072706174,0.07263812,0.053355668,0.016446793,-0.062792726,0.06447143,-0.014949569,0.02774404,-0.044621855,0.0025435819,-0.035184797,-0.0038933533,0.034640353,-0.032530624,0.0025492532,0.03783897,-0.024545422,-0.020768331,-0.031713955,0.034844518,-0.016140543,-0.021936622,0.0188174,-0.041468605,-0.005430278,-0.00035871024,0.0066297594,0.0077356645,-0.03892786,-0.009783007,-0.022492409,0.020099116,-0.038678322,-0.035751928,0.005132534,-0.009119464,-0.011200834,-0.016582906,-0.06723903,0.02301417,-0.0103898365,0.0032354814,0.032462567,0.00987942,0.006726172,-0.06687607,0.000258399,0.02345653,0.07445294,-0.061567724,0.030420898,-0.0485464,0.008830227,0.016798416,0.028061634,-0.03811119,-0.0014114468,-0.015618783,-0.017150037,-0.00017749422,-0.011200834,-0.011694238,0.032144975,0.03845147,-0.045665376,0.022276899,-0.039336193,-0.027199594,-0.026587093,0.02731302,0.0033177154,0.04069731,0.015312533,-0.010480578,-0.018182214,0.009998516,0.064335324,0.04945381,-0.0060059153,-0.040992215,-0.015425959,-0.03255331,0.012941926,0.00013885844,-0.009635553,0.0041428907,-0.038678322,0.041718144,-0.051994555,-0.0043952637,0.012533591,0.0042109466,-0.045461208,-0.043374166,0.0070324223,-0.03402785,0.0023635176,-0.031124141,-0.016582906,-0.013100722,0.0122840535,-0.06973441,-0.0091364775,-0.011200834,-0.010934282,-0.014144243,-0.03772554,-0.033120442,0.053310297,-0.0079625165,-0.037952397,0.003975587,0.06415384,0.013089379,-0.017229434,0.023172965,0.013202806,0.01872666,0.017853279,0.015925033,0.01023104,0.03498063,-0.027199594,0.005577732,0.013452344,0.012250026,0.0013334664,0.0019339161,0.0008592032,0.011206505,-0.031373676,-0.00085991214,0.01434841,-0.0048886677,0.0061136703,-0.0030795205,-0.008858584,0.009238562,-0.017751195,0.014110215,0.030330157,0.005813091,-0.030942658,-0.018976199,0.021528287,-0.012318082,0.020609535,-0.03965379,-0.030103305,-0.006000244,0.010798171,0.0060342723,-0.0019736153,0.02067759,-0.0052119326,-0.033052385,-0.008376522,0.000115907365,0.050088994,0.054762155,-0.03169127,0.028016264,0.0768122,0.012862528,0.041967683,-0.005486991,-0.0068849684,0.03906397,0.015471329,0.0040323003,0.018409068,0.00927826,-0.03160053,0.017501658,0.032644052,-0.011682895,-0.025679683,-0.012578961,0.070641816,-0.014552577,0.0046759937,0.0010102018,0.0078093917,0.01504031,-0.00007558791,0.0015737881,0.028243115,-0.016446793,0.043714445,-0.030738492,-0.024159774,0.015800266,-0.005231782,-0.010962639,0.005977559,-0.008365179,-0.016741702,0.007837748,-0.011637525,-0.0037430634,0.021539629,0.0028058798,-0.042194534,-0.040969532,-0.01044655,-0.019044254,-0.0040379716,0.018499808,0.010650717,0.001590802,0.009834048,0.034821834,0.0060683,0.015074338,0.006493648,-0.044009354,0.01404216,-0.00953914,0.016174572,0.012193313,-0.026972743,0.03584267,-0.04836492,0.02812969,-0.011841692,-0.00080816145,-0.021902593,-0.0011753787,0.00927826,0.032621365,-0.018443095,0.025498202,-0.037566748,0.0034509911,-0.029967193,-0.016923184,-0.02315028,-0.0013646586,-0.010038216,-0.02926395,-0.04650473,-0.032780163,-0.0010123285,-0.017320177,-0.014620633,0.005625938,-0.014734059,-0.009822706,0.017490314,-0.015142393,-0.0025776096,-0.025384776,-0.00030181993,-0.018193558,0.01057699,0.0034481555,-0.039336193,-0.045098245,-0.011274561,-0.024205144,0.01391739,-0.037997767,0.045461208,0.001877203,0.032326456,0.01906694,-0.00580742,-0.013815307,-0.026541723,0.011382316,0.0404024,0.027539873,-0.014439151,0.020235227,0.0042506456,-0.018227585,-0.0040634926,0.014904198,-0.016957212,0.010236711,-0.035479706,-0.009215876,-0.006368879,0.029717656,-0.02301417,0.019566014,0.02822043,0.038723692,-0.008852912,0.00997016,-0.052176036,0.0065617035,0.03593341,-0.021426203,-0.027993578,-0.012953268,0.01603846,0.0036126233,0.029967193,-0.02115398,-0.049998254,-0.029989878,0.031010713,-0.03811119,0.007406729,0.021471573,-0.013497714,-0.021494258,-0.019134995,0.06324643,-0.00036792614,0.026178759,0.020076431,0.024023661,0.052039925,-0.02969497,-0.00010252662,0.020983841,0.033120442,-0.035275538,0.02969497,-0.02717691,-0.0037941053,0.026859317,0.011495742,-0.0282658,0.0117509505,0.019441245,0.026450982,-0.0585279,-0.00923289,-0.02522598,0.00074648595,-0.0026853646,-0.025498202,-0.035661187,-0.013191463,-0.021017868,0.01937319,-0.020859072,0.056758452,-0.013418316,0.0064085783,0.00242732,0.003822462,0.034300074,-0.013214149,-0.037476007,-0.0037855983,-0.0073330016,0.04772973,0.028469969,0.043555647,-0.0021976319,0.012488221,-0.03697693,-0.0023691892,-0.00068658276,-0.005064478,-0.0037657488,-0.016356053,0.002247256,0.0138039645,0.03935888,-0.008274439,0.0036920218,0.023774125,0.0014277518,-0.04069731,-0.0030851918,-0.039245453,0.019566014,0.025384776,-0.014439151,-0.0048347902,-0.010758472,0.002469855,0.019781524,-0.006017258,-0.0062894807,-0.013667854,-0.030352842,0.01365651,-0.013146093,0.05635012,-0.036296375,0.002476944,-0.010571319,-0.07073256,-0.02674589,0.0064596203,-0.03160053,-0.024931071,0.00901738,0.033778314,0.042013053,0.037339892,-0.010798171,0.005662801,-0.059934385,-0.0076732803,0.0007280542,0.034821834,0.02722228,-0.03141905,-0.026269501,0.009992845,-0.0013419733,0.016492164,-0.04772973,-0.036182947,-0.025520887,0.005739364,-0.015720867,0.025838481,-0.027857466,0.0038763392,0.012669703,0.004134384,0.05344641,0.019963006,0.010491921,0.008212054,0.004851804,0.02912784,0.019452587,0.030262101,-0.02722228,0.0026839466,-0.007798049,-0.032281086,-0.048001952,0.016650962,-0.02470422,0.012544934,-0.011042037,0.012964611,0.007764021,-0.001238472,0.0070721214,0.02393292,0.027812095,0.00001661516,-0.038564898,-0.023864865,0.040515825,-0.022685234,-0.022333613,0.009692266,-0.038292672,0.019452587,-0.0026839466,0.0132708615,0.009351987,0.023501901,-0.02856071,-0.008796199,0.0020643563,-0.013735909,0.022288242,0.02822043,0.030511638,-0.014246327,0.0010853467,-0.01451855,-0.015369246,-0.042625554,0.008331152,-0.021097267,0.034731094,0.01434841,0.02518061,0.06447143,0.018000733,-0.015312533,0.017513,-0.030647751,-0.0356385,0.080214985,0.008489949,-0.012261368,-0.042920463,0.010503263,-0.00062774296,-0.026382927,-0.0047525563,0.021358147,-0.010304768,-0.014008132,-0.0072876313,0.020087775,-0.028379226,-0.006839598,0.011626182,-0.004537047,-0.011274561,0.0005465723,-0.015199106,0.0041599046,0.019713467,-0.033800997,0.00987942,-0.068237185,-0.019010225,0.028379226,0.021006526,0.034390815,-0.005560718,0.007117492,-0.009680923,0.0058924896,-0.009805692,0.02878756,-0.021403518,0.0077810353,0.009057079,-0.021403518,0.030194046,-0.026450982,0.025520887,0.032757476,-0.004026629,-0.014382438,-0.042716295,0.030693121,0.01808013,-0.043238055,-0.017116008,0.0028399075,0.015505357,0.019928977,0.051903814,-0.0103614805,0.021324119,0.0063518654,0.021448888,0.037044987,0.0086033745,0.00962421,-0.025203295,0.000069606445,-0.0018545178,-0.03845147,0.023048198,0.007304645,0.035570446,-0.016855128,0.006970038,-0.012930583,0.008478606,-0.0002210038,0.003459498,-0.034481555,0.01955467,0.005685487,-0.011076065,-0.004786584,-0.004199604,0.008336823,-0.026882002,-0.016469479,0.009119464,-0.004729871,0.020552821,0.008586361,-0.015845636,-0.033506088,0.043691758,0.02388755,0.0023436681,-0.036568597,-0.009329302,0.0565316,-0.018522494,0.001738256,-0.033574145,-0.0064085783,-0.012749101,-0.0028810247,0.010730116,0.041241754,-0.009420043,-0.001976451,-0.030103305,0.023048198,-0.014359753,-0.010854884,-0.0397899,0.0074577704,0.015754895,0.008455921,0.00017908929,-0.022220187,0.00021568695,0.014677346,-0.01265836,-0.02917321,0.031124141,0.02960423,-0.0054160994,0.01582295,-0.010724444,0.009505113,-0.010384166,-0.008461592,-0.020439396,0.0290371,0.000045946457,-0.0065900604,-0.017093323,0.0006298697,0.018828744,-0.012692388,-0.005699665,-0.020507451,0.018352354,-0.0052204393,0.0072195753,0.02431857,-0.017932678,0.0048092697,0.0010229623,0.015788922,-0.0042421385,0.032848217,0.039381564,-0.025543572,0.017966704,0.008558004,0.02484033,-0.0376348,-0.027607929,-0.022537779,0.002705214,0.033846367,0.0364098,-0.022310928,-0.00706645,0.0057762275,-0.008711129,0.020337312,-0.01911231,0.006896311,-0.0069927233,-0.01755837,0.019055596,-0.011671552,0.010996667,0.0008485695,0.005302673,-0.030942658,-0.018624576,-0.012771786,0.01984958,0.0059151747,0.026042648,0.052221406,-0.023388475,0.020280598,-0.0016588577,-0.016344711,-0.004596595,-0.030284787,-0.026768574,-0.012476878,0.05925383,-0.005830105,0.012590305,-0.016832443,-0.020269256,-0.03874638,0.03817925,-0.033687573,0.001714153,0.00914782,-0.018738003,-0.000017168999,0.00039947277,0.040107492,0.034436185,0.018760689,-0.020609535,0.024069032,-0.0001779373,-0.013588455,-0.011739608,0.007338673,-0.000067080946,-0.018499808,-0.0025946235,-0.04013018,-0.008796199,0.031373676,-0.025634313,0.023343105,0.029944507,-0.002098384,-0.0013986864,0.009113792,-0.013327574,0.0041428907,-0.013667854,0.013928733,-0.006159041,0.0067942273,0.012261368,0.023569958,0.0073103164,0.009051408,-0.006913325,0.02327505,0.025157923,-0.011887062,-0.017104667,0.013815307,0.01382665,-0.0094484,-0.042171847,0.03854221,-0.0058584614,-0.020700276,-0.052493628,-0.02422783,-0.023524586,-0.020314626,0.013713224,0.028719505,-0.031282935,-0.012045859,0.007769692,0.027675984,0.025906537,0.013951419,0.033415347,0.038474157,-0.06297421,0.00037997766,0.015255819,0.060932536,-0.010248054,-0.018613234,0.0036608295,0.041944996,0.014677346,0.030057935,-0.0033460718,0.0028314006,0.022492409,-0.015698181,-0.018692633,0.0021026377,-0.009822706,-0.0075882105,0.0018715317,-0.053401038,0.010270739,0.027381077,0.04083342,0.018840086,-0.009040065,-0.0029235594,0.009369002,0.013055352,-0.031282935,0.0032695092,-0.04121907,0.020076431,0.030919973,-0.009391687,0.021596342,0.0069303387,0.008637402,-0.05839179,0.011149792,-0.003312044,0.008728144,0.028401911,-0.0032241389,0.01573221,-0.000258399,0.026609778,-0.007389715,-0.017501658,-0.007922818,-0.013021324,-0.028674135,-0.034390815,-0.021981992,-0.043011203,0.030216731,0.014314382,-0.010452221,0.004264824,0.01937319,-0.007644924,0.013112064,-0.02418246,0.0056372806,-0.003896189,0.02908247,-0.014552577,-0.016855128,-0.0015227463,-0.0032723448,-0.0045682387,0.012749101,0.021188008,0.036659338,-0.014473178,0.011853035,0.0104692355,0.026859317,0.023252364,0.014473178,0.016730359,-0.045052875,-0.014541235,0.014507207,0.034209333,-0.012374795,-0.0029802725,0.03956305,-0.02912784,0.03854221,0.014949569,-0.05644086,-0.0047979266,-0.017490314,0.0065390184,0.021709768,-0.033642203,0.019169021,-0.010792499,0.00511552,0.0010109107,0.0059718876,0.0019055596,0.028515339,0.007191219,0.014189613,-0.0010087839,0.024341255,0.028061634,0.0046448014,0.013565769,-0.0007904386,0.026768574,-0.00303415,-0.00043031052,-0.031350993,-0.016787073,0.016945869,-0.022707919,-0.024069032,-0.006238439,0.013974104,0.045710746,-0.001016582,0.029490802,0.03588804,-0.009204534,0.032666735,0.0077129793,0.012318082,-0.0063121663,0.0064482777,0.012522249,0.01573221,-0.017785223,0.028969044,0.005577732,-0.018885456,-0.023172965,0.004279002,0.018477123,0.0035303894,-0.009403029,-0.036659338,-0.025656998,0.0048858323,-0.0032836876,-0.014223642,0.008376522,-0.013940076,-0.02115398,-0.009822706,0.023910236,0.012272711,-0.025997277,0.031328306,0.022016019,-0.014212299,-0.025157923,0.00024705636,0.0064142495,-0.03259868,-0.020859072,-0.010094929,0.013894705,-0.012885213,0.0055947457,0.017762538,-0.015255819,-0.0050474643,0.044326946,-0.00035853303,0.009249904,0.009023052,-0.005024779,0.0037827627,0.0028314006,0.004902846,0.03584267,-0.047049172,0.012170628,0.029195895,-0.029876452,-0.021085924,0.007616567,-0.009130807,0.005197754,-0.00044058976,0.022027362,-0.026292186,0.0048035984,-0.012862528,0.041060273,0.03845147,-0.008506962,-0.035320908,0.010542962,-0.024431996,0.025611628,0.012499563,0.03722647,0.000322024,-0.02032597,-0.041037586,0.00552669,-0.0384061,0.015766237,-0.018964855,-0.0104692355,-0.03724915,0.012839842,0.0139627615,0.0040549855,-0.03207692,-0.008240411,0.02332042,0.024999127,0.025770426,0.0039869295,0.033415347,0.0370223,0.0050559714,-0.02484033,0.03926814,-0.008268768,-0.0022600163,-0.0058584614,-0.02474959,-0.013679196,-0.0014341321,-0.025702368,-0.0031107126,0.009731965,-0.029808396,0.01577758,-0.008092957,0.015845636,-0.0059265173,0.00011697073,-0.0128171565,-0.022174815,-0.03631906,-0.015936377,0.022231529,-0.024681535,-0.014722716,-0.02293477,0.011507085,-0.0036239661,-0.008455921,0.022310928,-0.06447143,0.012590305,0.0032184676,0.009181848,-0.010367151,-0.03849684,0.002902292,-0.014926883,-0.00992479,0.020019718,-0.022276899,-0.003246824,0.028356541,0.00051963364,0.000090563706,0.02011046,-0.04183157,0.054081596,0.016560221,-0.006368879,0.008796199,-0.0018119831,-0.030239416,-0.018431753,-0.023070883,0.019906292,-0.0037033644,-0.0077867066,-0.030239416,0.012771786,0.008467264,-0.028107004,-0.010162985,-0.054081596,0.032780163,0.08248351,-0.006363208,-0.0063915644,0.011597825,-0.013225491,0.039994065,-0.0050134365,-0.026723204,-0.015936377,-0.012794471,-0.0006610619,-0.020450737,0.017161379,0.0073500155,0.0047752415,-0.050860293,-0.010117614,-0.017841935,-0.0012186224,-0.023218336,0.009204534,-0.024250515,0.00003910101,0.009777335,0.041718144,0.030035248,-0.045756117,0.009403029,0.026904687,0.0053083445,-0.038428787,-0.009686595,-0.028356541,-0.008847241,0.01261299,-0.00975465,0.0011009427,-0.0037288852,0.01651485,-0.007208233,0.008331152,0.0030454926,0.050814923,-0.014382438,-0.016639618,0.0024414982,-0.015516699,0.025588943,-0.004023793,-0.012510906,0.04586954,-0.012533591,0.0067034867,0.0033687572,-0.017671797,-0.011773637,-0.0031674257,0.0014412212,-0.0132708615,0.0023394148,-0.0032808518,-0.017841935,0.023048198,0.01508568,0.024046347,-0.026110703,0.0028923673,0.021857223,0.025498202,0.020348655,-0.010854884,0.011773637,0.015505357,-0.0028838604,0.02258315,-0.046141766,0.045143615,-0.00064759253,0.011246204,-0.016639618,-0.0042506456,-0.0037997765,0.022866715,0.0023465038,0.024250515,-0.012578961,0.039585732,0.026133388,-0.03988064,0.017581055,0.0004008906,-0.0154032735,-0.0029802725,0.032961644,0.006918996,0.0038876818,0.033233866,-0.02063222,-0.018715318,0.03250794,-0.023127595,-0.0031872753,-0.0039018602,-0.017478973,-0.020291941,-0.010718773,-0.0012441432]},{"id":"guide-permissions-5","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Channel-specific permissions\nmember.permissionsIn(channel) applies channel overwrites. Use it when checking if a user can send messages, read history, or connect to voice in a specific channel.\n\n```javascript\nconst channel = message.channel;\nif (channel?.isSendable?.()) {\n const perms = member.permissionsIn(channel);\n if (perms.has(PermissionFlags.SendMessages)) {\n await channel.send('You can send here!');\n }\n}\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[0.012124612,0.007382464,0.020775123,0.047201447,0.0059117614,0.03342085,-0.026982183,-0.017521048,-0.021330979,-0.010873935,0.011586126,0.04138812,-0.00053378113,0.021898415,-0.009073193,0.0014707027,-0.0012441623,-0.001438133,0.04798891,0.031961728,0.025731506,0.06739756,-0.02304487,0.04965648,-0.08671355,-0.040832262,-0.0072203395,0.045047507,-0.006438667,0.023577563,0.046622433,-0.014707027,-0.008864747,-0.010520735,-0.022824842,0.00040458798,0.028441304,-0.0027952036,-0.013305806,-0.030803693,-0.033305045,0.024781918,-0.03242494,-0.0127615305,-0.017706333,0.010387561,-0.0661932,0.024040777,-0.010167534,0.019072814,-0.025430417,0.053918045,0.012645727,0.042638797,0.023415439,0.018540118,-0.01310894,-0.029020322,-0.033930384,0.011858264,-0.01658304,-0.0112213455,-0.040948067,-0.013317387,-0.0041168095,0.008476806,-0.04615922,0.023600724,0.022153182,0.04375051,0.019825535,0.009188997,-0.0028545528,-0.036454897,-0.0068787197,0.0011667189,0.023403859,0.060912568,0.011580336,-0.009026872,-0.0052227313,0.026287362,-0.036130648,0.010624958,-0.044885382,0.054612864,0.00036514248,-0.014591224,0.026843218,-0.054705508,-0.014707027,-0.011360309,-0.048822697,0.012170933,0.03654754,-0.03893309,0.008395744,-0.0014663601,-0.009073193,0.06665641,0.06211692,-0.02380917,-0.10098053,-0.020844605,0.040832262,0.016189309,0.010590217,0.04766466,-0.04831316,-0.042986207,-0.0330966,0.027607521,0.03411567,0.04314833,-0.0034712057,-0.011754041,0.043866314,-0.020288749,0.030896336,0.0015618978,-0.076337576,-0.021608906,0.03967423,-0.007886209,-0.006403926,-0.052574724,-0.023901813,-0.038423553,-0.034949455,-0.0220837,0.033003956,-0.024689276,0.04205978,-0.046576113,-0.014371197,0.020149784,0.019188616,-0.019177036,-0.022187924,-0.022141602,0.0220837,0.028163377,0.024503991,0.010179115,-0.016606202,-0.017370503,-0.07374358,-0.02517565,-0.016490398,-0.013606895,-0.035644274,0.0018687767,-0.005503555,-0.015969284,-0.0345094,0.012622566,0.004047327,0.010908676,-0.021284657,-0.034231473,-0.027815966,-0.013583734,-0.050397623,-0.03995216,-0.025685186,-0.018088484,0.022998547,-0.02173629,-0.018806465,0.014278554,-0.042546153,-0.02380917,-0.0075445888,-0.033003956,0.041295476,-0.029228767,0.00827994,-0.034949455,-0.028140217,-0.015100758,0.012935235,0.032355458,-0.00759091,-0.06484988,-0.030826854,0.017868457,0.029738303,0.013514252,0.014278554,-0.024735598,0.013039459,-0.0104512535,0.019512866,0.009026872,0.02899716,-0.040878586,0.014000626,0.008314681,-0.0014786641,-0.08407324,0.0059928237,0.007973061,0.0503513,-0.007770405,-0.030687891,-0.009588518,-0.013560574,-0.014799669,-0.03555163,-0.022326887,0.006073886,-0.0045337016,0.031127943,-0.0038852026,-0.016803067,-0.027074825,-0.03972055,-0.01207829,-0.08272992,0.010069102,-0.047039323,-0.034463078,0.042175584,0.008158347,0.011800362,0.038446713,0.05238944,-0.0114876935,-0.006681854,0.011325569,0.024503991,0.03731184,-0.020531936,-0.026982183,0.016779907,-0.020103464,0.0036449106,0.021296239,-0.013815341,-0.023380699,-0.022512173,0.020207686,0.023647046,0.049146947,0.0073708836,-0.002607023,0.016108247,-0.029460374,0.003410409,0.03240178,0.07202969,0.036686502,-0.010844984,-0.009768013,0.006172319,-0.014093269,0.03620013,0.05414965,0.0068150274,0.015911382,-0.004047327,0.0042210324,-0.025824148,-0.03895625,-0.03316608,-0.016779907,0.043379936,0.028904518,0.007006103,-0.008557868,0.029182447,0.02482824,0.060449354,-0.0330966,-0.043912634,0.018065324,0.039211016,0.003065894,-0.051277727,-0.009629049,-0.039766874,0.003862042,-0.028580269,0.012657307,0.01962867,0.008557868,-0.016038764,-0.01793794,-0.009484295,0.009090563,-0.025268292,0.0109549975,0.014382777,0.010908676,0.012194093,0.061329458,0.028325502,-0.019918177,0.01762527,0.06647113,0.017046254,0.048869018,0.028117055,-0.01412801,0.03101214,0.027051665,-0.0013483854,-0.0032656547,0.011672978,-0.047409896,0.03525054,0.046066575,-0.0112039745,-0.014892312,-0.057067893,0.0086331405,-0.008714203,-0.018516958,0.04314833,0.021296239,-0.01930442,0.008806845,-0.043889474,-0.057160538,-0.010978159,-0.013618475,0.0089516,0.020057142,0.06072728,0.010219647,0.04307885,-0.0073593035,0.0078572575,0.049517516,-0.005558561,0.038724642,-0.016988352,0.07189073,-0.039465785,0.006930831,0.031521674,-0.0009886712,-0.031776443,0.037033916,0.009397442,-0.0044555343,-0.05688261,0.016999934,0.02587047,0.02280168,-0.017416826,-0.026241042,-0.050119694,-0.09139201,-0.027422234,0.015135499,0.04613606,-0.017798977,0.005280633,-0.012182513,-0.010717601,-0.015077597,-0.0199645,-0.009333751,0.022639556,-0.002190131,-0.045371756,-0.0015257093,-0.0007433128,-0.004035747,0.012101451,-0.020254007,0.040508013,-0.0034683107,0.0032946055,0.025592543,-0.026403166,-0.007145067,-0.039929,0.03724236,0.028788716,0.04578865,0.016004024,-0.03620013,-0.006160739,0.013027878,-0.014232233,-0.018019002,-0.036061168,0.001690729,-0.012553084,0.013838502,0.0096753705,0.04523279,-0.020833025,0.025384096,0.024318706,0.050814513,0.005509345,-0.022697458,0.023334377,0.027630681,-0.0016415126,0.03203121,0.010457044,-0.03728868,-0.017034674,0.02065932,0.009600098,0.014452259,0.046969842,0.028070735,0.022245824,-0.0063344436,0.07513322,-0.025662024,0.04032273,-0.009727482,0.03311976,-0.032100692,0.0076024905,-0.035389505,-0.012472021,-0.02068248,0.015262882,-0.021238336,0.023901813,-0.039743714,0.036593862,-0.06642481,-0.059847176,-0.00790358,-0.018736983,0.008801055,0.00024626308,-0.035366345,0.014278554,-0.027815966,-0.025013525,-0.02170155,0.0022769836,-0.02512933,-0.0077472446,-0.0011840893,0.012228834,-0.005900181,-0.02823286,-0.06549838,-0.015135499,0.0065313093,-0.022824842,-0.025453579,0.0076082805,0.023589144,-0.05062923,-0.014093269,0.000055639895,0.08032121,-0.029136125,-0.00096623425,-0.053037938,0.0011891557,0.05827225,0.012147772,-0.0009155703,0.008714203,-0.0040241666,-0.025453579,-0.025384096,0.007677763,0.032494422,0.01241412,0.055354007,-0.0018427209,-0.01205513,-0.037080236,0.0015358421,-0.04412108,0.011603497,0.005613568,0.045070667,0.0186096,0.022465851,-0.011157653,-0.0051474595,0.040971227,0.051926225,-0.013525832,-0.01891069,0.0011761278,-0.04347258,0.006241801,-0.019536026,-0.010659699,0.009553777,-0.03242494,0.039743714,-0.015969284,0.07499426,0.0074577364,0.012564665,-0.017636852,-0.018771725,0.012692048,-0.053315867,0.00025006288,-0.04798891,-0.04974912,-0.028348662,0.00020030362,-0.065081485,0.037404485,-0.0434031,-0.024249224,-0.019617088,-0.021238336,-0.006971362,0.028696071,-0.01865592,0.0011992885,0.02174787,0.05762375,0.0031498515,0.008609979,-0.020520356,0.0008895146,0.023149092,-0.0007722636,0.02693586,-0.0083725825,0.03029416,-0.032147013,0.01620089,0.0025085902,0.0020106358,-0.0101849055,-0.031961728,0.0025100377,-0.0052024657,-0.017660012,0.01346793,0.01580716,-0.040160604,0.02487456,-0.014591224,-0.0069539915,-0.0013824026,0.006340234,0.008806845,-0.021087792,-0.007168228,-0.038794126,-0.013722698,0.0065718405,-0.0099359285,0.024226062,-0.029576179,-0.030873176,-0.012888914,-0.018818045,-0.005882811,-0.0077761956,0.0014388567,0.0044063176,-0.027514879,-0.009333751,-0.0010451253,0.041828174,0.03907205,-0.022813262,0.009061613,0.028348662,-0.011452952,0.0058104335,0.030734211,-0.021099372,-0.02098357,0.019871857,-0.030826854,0.00012439814,0.017833717,-0.036269613,0.0481742,0.021168854,-0.0066992245,-0.03379142,-0.030479444,0.009953299,0.0024289754,0.0035001566,-0.0007809489,-0.016374595,0.012564665,-0.007996222,-0.038701482,0.041295476,-0.021632068,0.008459436,-0.027167467,-0.03895625,0.005321164,-0.0089052785,0.0089516,0.01447542,0.011418211,0.0050548166,-0.00466398,-0.010428092,-0.0046726656,-0.0034972613,-0.011337149,-0.033212405,-0.025777828,-0.01413959,-0.031869084,0.016652523,0.017868457,0.011279247,0.0538254,0.053130582,0.006299703,0.018551698,-0.006311283,0.011927746,-0.020277169,0.023033287,0.054242294,-0.0017949521,0.017995842,-0.047803625,0.05479815,-0.023716528,0.05354747,-0.016953612,-0.022859583,-0.030433122,-0.0011819181,-0.011146073,0.029390892,-0.0022465852,0.02999307,-0.03138271,0.0179032,-0.0461129,-0.022697458,-0.035991684,0.0033235564,0.0044294787,0.003245389,-0.012715208,-0.03958159,0.014973374,0.003587009,-0.0054948693,0.014649125,-0.030247837,-0.040554337,0.014811249,-0.041596565,-0.016814647,-0.0011167786,0.010844984,-0.007550379,0.0075098476,0.0213773,-0.049795445,-0.026959023,-0.008980551,-0.03166064,-0.019339161,-0.040832262,0.030988978,0.02201422,0.0009778147,0.009501666,-0.015077597,0.00096623425,-0.028835036,0.02797809,0.02999307,0.018296931,0.0220837,-0.018262189,-0.011510854,0.0045452816,-0.013977465,-0.009727482,0.023647046,-0.0056743645,-0.0337451,-0.010659699,0.035320025,0.00103644,-0.031127943,-0.0029732513,0.029691981,0.04141128,-0.010370191,0.027862288,-0.022477431,-0.0046524,0.0045452816,-0.040206928,-0.010549686,-0.006444457,-0.006033355,0.018551698,0.030572087,0.021192014,-0.014707027,-0.022315307,0.021632068,-0.022952225,-0.0022769836,0.036755987,-0.011093962,-0.026542129,-0.03582956,0.027769646,0.0073998347,0.023693368,-0.0057727974,0.0029732513,0.031521674,-0.017382083,0.008059914,-0.0037375535,0.057438467,-0.015286043,-0.00044367163,-0.020392971,-0.010758132,0.027051665,0.0066355322,-0.015610293,0.012703628,0.0063228635,0.043681026,-0.041503925,-0.017995842,0.031521674,0.010920256,0.033305045,-0.026356844,-0.021632068,-0.025059847,-0.040230088,0.000018320454,-0.009605888,0.046761397,-0.015019695,0.006496568,-0.030965818,0.02480508,-0.0040502227,-0.015760837,-0.055400327,-0.029691981,0.013132101,0.0132710645,-0.013166842,0.06739756,-0.019107554,-0.021643648,-0.04314833,0.012124612,-0.021087792,-0.036038004,0.02065932,0.040183764,-0.022130022,0.019107554,0.036501218,-0.010659699,0.026796898,0.015320784,-0.043310456,-0.018725403,-0.0045742327,-0.030641569,0.01518182,0.017358923,-0.010596007,-0.0059522926,-0.012981556,-0.005969663,-0.0054746037,-0.04439901,-0.03793718,-0.03318924,-0.044329524,0.020751962,-0.024990365,0.021632068,-0.039743714,0.0054948693,0.0055701416,-0.06999155,-0.01205513,0.02241953,-0.023693368,-0.0227901,-0.014104849,0.011678768,0.03367562,-0.009837495,-0.013236324,0.009032662,-0.022465851,0.010752342,-0.006114417,0.037033916,0.0020801178,0.008795265,-0.018551698,0.030572087,-0.0008460883,0.014672286,-0.024550311,-0.058411215,0.02793177,0.025638863,-0.00055983686,-0.012136192,0.021134112,0.019501286,-0.016038764,-0.005460128,0.0627191,0.03003939,0.007446156,-0.014799669,0.011551385,0.014023786,-0.03557479,-0.015320784,-0.06679538,0.0034567302,-0.010283338,-0.038446713,-0.022929065,0.015367106,-0.011117122,-0.017497888,-0.003725973,0.0132826455,-0.0010415064,-0.024689276,-0.024944043,0.034393597,0.011852474,0.015471329,-0.007011893,-0.016467238,0.06781445,0.012205674,0.0004396909,0.036223292,-0.012275156,0.052806333,0.025523061,0.019269679,0.014788089,-0.018366413,-0.040044803,-0.007978851,0.028325502,-0.008569448,0.014371197,0.040160604,0.05201887,-0.01655988,0.026843218,-0.021481523,-0.008766314,-0.038493037,0.017138897,-0.023878653,0.055122398,0.030502604,0.04141128,0.017127316,0.044236884,-0.03520422,-0.022431111,-0.030433122,-0.029112965,0.051833585,-0.0012383722,0.0053848564,-0.016814647,0.00031556416,-0.0132710645,-0.017463146,-0.011974067,0.019593928,-0.020531936,-0.0052864235,0.005969663,0.0026649248,-0.057438467,0.0026229462,0.012275156,-0.008476806,-0.0046466095,0.034370437,0.009582728,-0.012587825,0.012008809,-0.019397063,-0.004901377,-0.046969842,-0.039164696,0.024318706,0.019142294,0.014243813,0.0060854666,0.0057756924,-0.008100445,-0.021794192,-0.026472649,0.016235631,0.032656547,-0.015610293,0.0036014845,0.00094741624,-0.028974,-0.032610226,0.03689495,0.0035667433,0.009762223,0.01034703,-0.01994134,0.059893496,0.021469943,-0.03962791,-0.005460128,-0.011817733,0.03203121,0.012912074,0.0503513,-0.017822137,0.014811249,0.029112965,0.020937247,0.034208313,0.0061954795,0.030734211,-0.027121147,0.010514945,-0.0020627473,-0.04446849,0.030664729,0.0059928237,0.068046056,-0.017521048,-0.003248284,-0.017289441,0.03937314,0.017370503,0.022153182,-0.006398136,0.040230088,-0.011603497,-0.0093048,0.039118376,0.05614147,0.011308198,-0.034694687,0.020311909,0.011082381,-0.0056656795,0.022963805,0.0419903,-0.012634146,-0.006693434,0.004805839,0.037450805,-0.0062939124,-0.017822137,-0.013815341,0.0240871,-0.008250989,-0.0049592787,0.01828535,0.0075967005,-0.01965183,-0.0101906955,0.013722698,0.029112965,0.000265443,-0.024758758,-0.041272316,-0.025013525,-0.0026432117,-0.0114876935,-0.013201583,-0.0017717914,0.027653841,0.020057142,-0.00654868,-0.016363015,-0.0035985895,-0.011238716,-0.007619861,0.008725783,0.057531107,0.029807784,0.0014801117,-0.0065718405,0.008575238,-0.018088484,-0.031776443,0.033003956,0.000148554,0.028093895,0.03161432,-0.00072015217,-0.022975387,-0.015726097,0.024411349,-0.0070929555,0.0114876935,0.01968657,-0.009837495,-0.029691981,0.0024579263,0.03031732,-0.008864747,-0.019536026,-0.006027565,0.008245199,-0.03277235,-0.0018094275,0.026750576,-0.011481903,0.03108162,0.03342085,0.027144307,-0.033258725,-0.018679082,-0.00051279174,-0.032355458,0.009739063,0.004614764,-0.009380072,0.01069444,-0.02241953,0.026750576,0.017382083,-0.013734278,0.03689495,0.006693434,-0.0025331986,0.022176344,0.019246519,-0.009241108,0.0056106728,0.0017688964,-0.01828535,-0.010769713,-0.0027546724,0.005141669,0.0091542555,0.0006727451,0.05655836,-0.015413427,0.022361629,0.003587009,-0.021481523,0.022118442,-0.03511158,-0.024411349,-0.028742393,0.028024413,-0.038191948,0.02515249,-0.020219266,0.005616463,-0.0112039745,0.019721312,-0.038863607,0.022477431,0.0025360936,-0.00096116785,-0.009524826,-0.004791364,0.020126624,0.005697525,0.02101831,-0.035088416,0.024781918,-0.039118376,-0.008378373,0.020091882,-0.0024955624,0.0058191186,-0.01930442,-0.006595001,-0.03965107,-0.018690662,0.0035088419,0.016004024,-0.012958396,-0.0059870337,-0.007660392,0.0025462264,-0.007770405,-0.001931021,0.02823286,-0.009536407,0.015980864,0.012831012,-0.017231539,-0.035644274,0.029738303,0.012680468,-0.0021771032,-0.013583734,0.03138271,0.030479444,-0.03337453,-0.011337149,0.022836423,0.009229528,0.009727482,-0.014023786,-0.0015792683,-0.010816034,0.00028335635,-0.03578324,-0.038423553,-0.015482909,-0.014996535,-0.009432184,-0.0030716842,-0.02068248,-0.0052864235,0.00092353177,0.00965221,0.063877136,0.025314614,0.021400461,0.03585272,-0.03691811,-0.02619472,0.00894002,0.061885316,0.020126624,0.003309081,0.026820058,0.032702867,0.03789086,0.008818426,0.01896859,-0.009536407,0.012170933,0.0075098476,0.010480204,0.02175945,0.009050032,-0.0026475543,0.004826105,-0.011603497,-0.00897476,0.029854106,0.039535265,0.0021220965,0.017347343,0.0040820683,0.0063807652,-0.013027878,-0.026750576,-0.01412801,-0.043240976,0.0050866627,0.019397063,-0.001532947,0.002304487,0.018482216,0.00997067,-0.03036364,0.013236324,-0.006791867,0.016444078,0.0068902997,0.005101138,-0.017741075,-0.03034048,0.013931144,0.00075272185,0.00052509585,0.011771412,-0.011082381,-0.029553017,-0.0330966,0.0030803694,-0.032957636,0.036038004,0.024596633,-0.017127316,0.006317073,0.029529857,0.0025549117,-0.010485994,-0.018435895,-0.005616463,-0.011198184,0.020937247,-0.01137189,-0.007278241,-0.0017674487,0.0060854666,0.030155195,-0.025615703,0.0008656301,0.0072435,-0.004409213,0.031475354,0.007973061,-0.0011370443,0.006595001,-0.013004717,-0.0004291962,-0.053037938,-0.011840894,0.0027604625,0.010677069,-0.0052256268,0.010468624,-0.012159353,-0.011562966,0.033536654,-0.0017877143,-0.03698759,0.005344325,-0.0076082805,0.008471016,0.015621873,0.0077067134,0.004009691,0.01140084,0.0037549238,0.0020395867,-0.010555476,0.0036014845,-0.005173515,-0.009773804,0.0054890793,0.021412041,-0.000062560954,0.012101451,-0.010601797,-0.015135499,0.024666116,0.0004118257,-0.011279247,-0.005379066,-0.04527911,-0.000036143312,0.030201515,-0.010237017,0.01100711,-0.02448083,-0.04196714,0.042152423,-0.005975453,0.028788716,0.045672845,-0.010127003,0.031776443,-0.0044642193,0.0035406877,0.041619726,0.02688954,0.01240254,0.017961102,0.00032823015,-0.00016881958,0.021516263,-0.00198458,-0.014730187,-0.01309736,0.001915098,-0.04560336,-0.013583734,-0.010242807,-0.022500593,0.031915404,-0.0041631307,-0.04029957,-0.012865753,0.0039141537,-0.018377993,0.0021568376,0.026472649,0.007347723,-0.019003332,0.018111646,0.0042152423,0.004713197,-0.019443383,0.009426394,0.011076591,-0.03272603,-0.025036687,-0.008303101,0.04277776,0.01759053,-0.0015980863,0.017787395,-0.017162059,-0.013363708,-0.0034538351,0.015575551,-0.03173012,0.022894325,-0.011516644,0.0059580826,-0.011788782,0.014996535,0.03101214,-0.017382083,0.010422302,0.0048232097,-0.037103396,-0.044584293,0.0032338088,-0.010856565,-0.020833025,-0.004102334,0.008482596,-0.00075272185,0.014348036,-0.022685878,0.033837743,0.03003939,-0.01893385,-0.00039626463,-0.015448168,-0.020890925,-0.0068845097,-0.02207212,0.021249916,-0.0028241544,-0.0015488699,-0.008830006,-0.023010127,-0.016988352,0.0011732328,-0.017775815,-0.004180501,-0.01757895,-0.00006355614,-0.009160046,-0.017162059,-0.03999848,0.013919564,-0.00111895,0.027468557,0.017023094,-0.0036738615,0.008459436,0.029877266,-0.026403166,-0.038585678,-0.0009351121,-0.0434031,0.013722698,-0.006357604,-0.044213723,0.009698532,0.032563906,-0.021157274,-0.037381325,0.022002637,-0.041156515,0.023739688,0.030155195,-0.004692931,0.0018282455,-0.03485681,-0.00826257,-0.018123226,0.00007386988,-0.012923655,0.019130714,0.022176344,-0.022292146,-0.016363015,0.016189309,0.020323489,-0.0068497686,0.0031614318,-0.044815898,0.020740382,-0.02619472,0.00621864,-0.017382083,-0.011713509,-0.057206858,-0.0038736223,-0.022627976,0.017694753,0.013027878,-0.0042152423,0.041249156,-0.006965572,0.022245824,0.03205437,-0.045116987,0.043889474,0.02827918,-0.012170933,0.00056490325,0.0037491338,-0.03166064,0.0022263196,-0.011528225,-0.011325569,0.0213773,0.031822763,-0.010370191,-0.004420793,-0.012587825,-0.013317387,-0.019478125,-0.013074199,0.034578882,0.040901747,-0.010069102,-0.019072814,0.038817286,-0.009270059,0.0037086026,0.0031295859,0.0053008986,0.012680468,-0.00017433833,-0.013305806,-0.0073303524,0.050582908,0.0061259978,-0.008453645,-0.023589144,0.017509468,-0.030687891,0.0022900114,0.0044960654,-0.011817733,-0.02793177,-0.015251302,-0.004426583,0.00792674,0.017370503,0.0037346582,0.0037665043,0.02825602,0.008007802,-0.00056598894,-0.007301402,-0.022917485,0.00042304414,-0.0025317508,-0.009530616,0.019385483,0.011771412,0.012634146,0.0036275403,-0.0019527341,-0.01032966,0.055678256,-0.008169927,-0.027885448,-0.012900494,0.00793253,0.021562586,-0.0044671143,-0.011232926,0.0503513,-0.0001735241,0.018574858,-0.0049216426,-0.018748565,-0.008604189,-0.025963113,-0.0021452573,-0.037126556,-0.009547987,0.0068381885,-0.023230154,0.0077067134,0.021967897,-0.010294919,-0.022280566,0.0066413227,0.009611678,0.03701075,0.0013042353,-0.0032946055,-0.0041254945,-0.022211084,0.008604189,0.025523061,-0.01622405,0.03550531,-0.012657307,0.013664796,-0.020960407,0.0028212594,0.023647046,0.0020091883,-0.025592543,0.020612998,-0.017764235,-0.0073303524,0.03698759,-0.03552847,-0.0007360751,0.010711811,-0.011105542,0.0119856475,0.013850082,0.011678768,0.010219647,0.006959782,-0.020091882,-0.013745858,0.017683173,-0.0039228387,-0.014185911,0.01346793,-0.002281326,-0.026403166,-0.019072814,0.011510854]},{"id":"guide-permissions-6","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Managing roles\nCreate, fetch, edit, and delete roles with guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Use resolvePermissionsToBitfield() for permission bitfields. See the Roles guide for full examples.\n\n```javascript\n// Create a role with specific permissions\nconst role = await guild.createRole({\n name: 'Mod',\n permissions: ['KickMembers', 'BanMembers', 'ManageMessages'],\n});\n\n// Add/remove roles from members\nawait guild.addRoleToMember(userId, roleId);\nawait guild.removeRoleFromMember(userId, roleId);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.030056402,0.049418654,0.026610045,0.015842794,-0.03201978,-0.008762099,-0.037450403,0.021471841,0.03041148,0.03991507,0.040499903,-0.023539655,0.029889306,-0.023915622,0.0053287973,-0.006997147,-0.03941378,0.014234494,0.03843209,0.051214937,0.0380979,0.03068301,-0.0145478,0.028782293,-0.06876002,0.023268124,0.012218898,0.04402981,-0.023978284,-0.041565143,0.053136542,-0.01016675,-0.007352226,-0.019466689,-0.02993108,-0.026108757,0.0353617,0.009378266,0.003699611,0.008903086,-0.012030915,-0.014673121,0.013503449,-0.017628632,-0.021430068,0.031079864,-0.021127207,0.03389961,0.018913183,0.029951967,0.0055193915,0.040249262,0.0045690327,0.09148508,0.02176426,0.03237486,-0.06307876,0.022766836,-0.037909914,0.040416356,-0.016030777,-0.040228374,-0.013158814,0.018923627,-0.0015195297,0.028719634,-0.08542785,0.003088666,0.007947505,0.0646244,0.020396162,-0.033189453,0.02629674,-0.0024281144,0.031267848,-0.035737667,0.039100476,0.034693316,-0.005292245,-0.013785424,-0.0072739,0.018819192,-0.057522815,-0.021179425,0.0092163915,0.028677858,-0.025356825,-0.017576415,0.010976122,-0.05296945,-0.027675282,-0.04833253,-0.06884357,0.0069449292,0.0027910261,-0.03557057,-0.008386133,0.01795238,-0.01273063,0.060446996,0.059820384,0.0049476097,-0.069846146,-0.009994432,0.026610045,0.018370122,-0.032604616,0.05965329,-0.012438212,0.0068457164,-0.10660728,0.027403751,0.03199889,0.008605447,-0.005858805,0.017054241,0.026839802,-0.03557057,0.020772127,-0.027090447,-0.081626415,-0.031873573,0.023247238,-0.04979462,-0.027717058,-0.021450955,-0.03828588,-0.06358004,-0.024437796,0.01147741,0.01457913,-0.0022975707,0.06291166,-0.056603786,-0.045283027,-0.0010639318,-0.0016592116,-0.030453255,-0.015153523,-0.030327933,0.0062713237,0.0045089824,0.0069658165,0.044322226,-0.05042123,-0.015090861,-0.04235885,-0.021680713,-0.07782499,0.023957396,-0.046995763,-0.01830746,-0.0057700356,-0.029053826,-0.033795174,-0.029032938,-0.010229412,0.0237903,-0.051925097,-0.024646668,0.0060206796,-0.021221198,-0.0054306216,-0.025795452,0.0001368262,-0.060864735,0.0015547764,0.023080142,-0.021743374,0.037283305,0.010532273,-0.02322635,-0.01869387,-0.028281005,0.015404167,0.013660102,0.0031957119,-0.035403475,-0.006448863,-0.027946813,0.0024281144,-0.020855675,-0.029304469,0.0027753608,-0.04478174,0.012030915,-0.011926481,-0.0038353764,-0.03995684,-0.00058418344,0.0078065186,0.029262695,-0.0075924266,0.002596516,0.034108482,-0.0042687817,0.014631348,0.020939223,0.010923904,-0.047204632,0.01013542,0.011122331,0.051423807,-0.00085636723,-0.026735367,-0.038808055,-0.02874052,-0.022202887,-0.0042922795,-0.010506164,0.004738739,-0.034066707,0.016270978,-0.011623619,-0.04087587,0.027006898,-0.032437522,-0.027821492,-0.017670408,-0.005649935,-0.030119063,-0.039455555,-0.0031199965,-0.008412242,0.04164869,0.012511317,-0.00814071,0.01058449,0.04045813,0.025899887,0.0002945394,0.018411895,-0.025482148,-0.047246408,0.018850522,0.0027466412,-0.0011461745,0.035319928,-0.001818475,-0.02888673,-0.0012251534,-0.027633509,-0.020323057,-0.003824933,0.029555114,-0.030181723,0.025732791,-0.002603043,0.026798028,0.0134616755,0.0561025,0.03103809,0.026610045,0.0127828475,0.010098867,-0.020646805,-0.001660517,0.050337683,-0.019310037,0.04198288,-0.010396508,-0.017043797,-0.003595176,-0.015550376,-0.0379308,0.020563258,-0.005059877,0.008328694,-0.024876423,-0.05944442,0.00069775654,0.02343522,0.021179425,-0.07565273,-0.03252107,-0.0059736837,0.038975153,-0.00861589,-0.031894457,-0.013597441,0.009190283,-0.013493006,-0.004616028,0.017096015,0.0035168496,0.038411204,-0.01580102,-0.03887072,0.0128663955,0.015727915,0.020866118,-0.02211934,0.0060206796,-0.0029059048,0.036030084,0.0033967493,0.03398316,-0.01729444,0.037471287,0.05042123,-0.021806033,0.057857007,-0.011383418,-0.031936232,0.03824411,-0.016876701,-0.051047843,-0.04031192,0.009519253,-0.058776036,0.044865288,0.025732791,0.0035168496,-0.016532065,-0.028782293,-0.022098452,0.023957396,-0.009273831,0.022223774,0.017973268,0.041878447,-0.012114463,0.004869283,-0.011132774,0.0036421716,-0.03682379,-0.034150254,0.007033699,0.03124696,0.00028442228,0.050755423,0.010986565,-0.010171972,0.054389764,0.009999654,0.03139317,0.012479986,0.1014273,0.019122055,-0.02734109,0.029408904,0.02665182,-0.018015042,-0.009587136,-0.02721577,-0.0034359125,-0.0035168496,0.02155539,0.011393862,0.024730215,-0.01821347,0.046285603,-0.027549962,-0.048959143,-0.039142247,-0.03139317,0.045993187,-0.031581152,0.0056603784,0.0147357825,-0.05768991,-0.017722625,-0.010955235,-0.014474695,0.03828588,0.023560543,-0.015748803,-0.011101443,-0.010809026,-0.0022322987,-0.0073261173,0.03272994,-0.05840007,-0.0062556583,-0.017764399,-0.0152475145,-0.01681404,0.0065010805,-0.01395252,0.0075558745,0.012594865,0.012594865,0.00933127,-0.055308793,0.0057491483,-0.0055768304,-0.008788208,0.007232126,0.009675905,-0.018056817,0.0028719632,0.051298488,0.05923555,0.04465642,-0.019905316,-0.00897619,0.06621181,0.055726532,0.014610461,-0.03293881,0.011832489,0.036510486,0.019122055,0.017962825,-0.017785285,-0.03179002,-0.03068301,0.023351673,0.014004737,-0.029784871,0.02280861,0.045658994,0.02295482,-0.03179002,0.058984905,-0.045324802,0.048457853,-0.025795452,0.024521345,-0.0021278637,-0.04164869,-0.0020939223,-0.008067606,-0.023247238,0.038202334,-0.026672706,-0.010109311,-0.018756531,-0.010521829,-0.02197313,-0.06633713,0.04703754,0.0019046338,-0.0061303363,-0.0050520445,-0.026818916,0.013733206,-0.051298488,-0.0072947866,-0.004751794,0.00986911,-0.022244662,-0.0019894873,0.030703899,0.008156376,-0.01672005,-0.005613383,-0.09892086,0.03369074,-0.0028693525,0.0027205325,-0.0035481802,0.0025234113,-0.004266171,-0.012814178,-0.014746226,0.015059532,0.019090723,-0.05029591,-0.00035540547,-0.041460708,0.008234702,0.051256713,0.04072966,-0.04075055,0.014067398,-0.035048395,-0.004490706,-0.0068039424,-0.029889306,0.009237278,0.01723178,0.016970692,-0.023602316,0.022662401,-0.009049295,-0.0030286158,-0.030098176,0.011007452,0.051507358,0.018485,0.019947091,-0.012354664,-0.0055611655,0.017879277,0.05810765,0.034317352,-0.0019085502,-0.03055769,0.017973268,-0.06057232,0.026129644,0.008636777,-0.006516746,-0.0057230396,-0.028991165,0.026150532,-0.043570295,0.011487853,0.026359402,0.027549962,-0.04561722,-0.029784871,0.024771988,-0.06090651,-0.0035586236,0.018255243,-0.025440373,0.018025486,0.062828116,-0.046578024,-0.01737799,-0.0010391285,-0.027988588,0.0025390766,-0.015487715,-0.03878717,0.05058833,0.0014503414,-0.02155539,-0.018495444,0.0580241,0.04221264,-0.010965678,0.0034306906,0.016166542,-0.0050912076,0.016552953,0.016563395,-0.013910746,0.021680713,-0.010662816,0.021785147,0.01645896,-0.009926549,-0.022286436,0.0072373473,0.03605097,0.02197313,-0.04198288,0.00849579,0.03362808,-0.028343666,0.0043105558,-0.035466135,-0.021054102,-0.017722625,0.0010378232,0.011926481,0.037053548,0.02015596,-0.051214937,-0.032980584,-0.0046395264,0.0005815726,0.0050076596,-0.025774565,-0.031309623,-0.0077438573,-0.009195505,0.02343522,-0.022787724,0.015780132,-0.018182138,-0.058358293,-0.029408904,0.01821347,0.02006197,0.0072947866,-0.03878717,-0.00697626,0.023915622,0.027382866,0.018610323,0.0009229446,0.013043935,-0.031852685,0.029596888,-0.005378404,0.0063548717,-0.00757154,-0.05351251,0.015602593,0.0062086624,-0.03272994,-0.03724153,-0.0085375635,0.015936786,-0.009712458,0.009472257,0.011226766,0.010485277,-0.0021879137,-0.012260673,-0.0063966457,0.007519322,0.0040651336,0.039309345,-0.037993465,-0.008819538,0.01583235,-0.0022349097,-0.049543977,0.0109970085,-0.029972853,-0.019518906,0.051799774,-0.003404582,0.016490292,0.013900302,0.017075127,-0.019310037,-0.02510618,-0.008850869,0.0001513492,-0.032980584,0.0072425692,0.011247653,0.014892436,0.026693594,0.016479848,-0.013670545,0.015049088,0.009054517,-0.0138063105,-0.006161667,-0.017513754,-0.009279053,-0.021242086,-0.02107499,0.03055769,-0.027257543,0.031267848,-0.008072828,-0.025795452,-0.042463284,0.034421787,0.031434942,0.0120204715,-0.017398875,0.028552538,-0.03055769,0.009252944,-0.03878717,-0.0005169534,-0.0055089477,0.0037988243,0.0020860897,-0.023080142,-0.021889582,-0.045575447,-0.009498366,-0.005125149,-0.029032938,0.018578991,0.0073835566,-0.013096153,0.022516193,-0.0013602662,0.001764952,-0.013367684,-0.0063809804,-0.01496554,0.026902463,0.03655226,-0.025147956,-0.045575447,-0.0014464251,-0.01576969,0.0237903,-0.025231503,0.024667554,-0.00998921,0.014255381,0.019602455,0.012824622,-0.006412311,-0.03366985,0.024646668,0.03569589,0.0048614508,-0.010339068,-0.004117351,-0.018265687,0.012573978,-0.027048673,0.013962964,0.0005822253,0.034839526,-0.043570295,0.01556082,0.0031252182,0.0120204715,-0.032186877,-0.020176848,0.03697,0.03153938,-0.010647152,0.025064407,-0.056269594,-0.009973546,0.028907616,0.009127622,-0.030599464,-0.012594865,0.005313132,0.011446079,0.06257747,0.0055455,-0.018088147,-0.035487022,0.0006096395,-0.030912768,0.010798582,0.0023719806,-0.010250298,-0.029596888,-0.03402493,0.03496485,-0.006574185,-0.00939393,0.04260949,-0.0014542578,-0.00515648,-0.039685313,0.02044838,0.022516193,0.02915826,-0.010339068,-0.019560682,-0.0027414195,0.0055977176,0.035883877,0.0011527017,-0.025858114,-0.002247964,0.0037936023,0.00995788,-0.022432644,0.015633924,0.011404305,0.0063809804,-0.009743788,-0.024458684,-0.037450403,-0.032625504,-0.007613314,0.00077086105,-0.00524786,0.045032386,-0.023811188,0.0042322297,-0.011613175,-0.03473509,0.013733206,-0.044907063,-0.05225929,0.009550584,-0.024103604,0.04143982,-0.0000547468,0.057940554,-0.0062138843,0.018599879,-0.050880745,-0.01949802,-0.0011683669,0.006109449,0.010976122,0.024082718,-0.007916175,0.0049476097,0.013137926,0.005041601,0.037408628,-0.007075473,0.007869179,0.012385994,0.010072758,-0.042108204,-0.0021161148,0.023727639,-0.00047811662,-0.038954265,-0.009038852,-0.006694285,0.0039189244,-0.010485277,-0.0019216045,-0.032750826,-0.04904269,0.024918199,-0.019508464,0.043904487,-0.038954265,-0.03028616,-0.022683289,-0.06662955,-0.014767113,0.046369154,-0.03293881,-0.0017923662,-0.008401798,0.031434942,0.04833253,0.02120031,-0.018380566,0.0066264025,-0.05071365,0.016124768,0.01395252,0.028281005,0.011842933,-0.003908481,-0.009874332,0.0038588743,-0.004960664,0.02608787,-0.02027084,-0.038828943,-0.027821492,0.025210615,0.002408533,0.026359402,-0.027842378,0.047204632,-0.0062556583,0.0016474626,0.035027508,-0.0008165514,0.0017310106,-0.034860414,0.029534226,0.020605031,0.028113909,0.040583454,-0.03544525,0.007895288,0.01105967,-0.028489877,-0.020793015,0.014662678,-0.014526913,0.033314776,-0.0041774013,0.0075558745,0.022683289,0.013931633,0.0022231606,0.03864096,0.014694009,0.021210754,-0.019404028,-0.0098064495,0.03997773,-0.037366852,-0.007106804,0.034212917,-0.025482148,-0.0037701046,0.015487715,0.02623408,-0.015811464,-0.016824484,-0.026630932,-0.02018729,0.022161113,-0.0031330509,0.021785147,0.013493006,0.034317352,-0.00903363,-0.024291588,-0.0115922885,0.00058516255,-0.034212917,-0.011456523,-0.019947091,0.020709466,0.033878725,0.0015156134,0.043653842,-0.010448725,-0.031706475,-0.0062243277,-0.011916037,-0.015748803,0.061407797,0.016949804,0.004540313,-0.030390594,0.01952935,0.0062922104,-0.029032938,-0.0070075905,0.02211934,-0.0100675365,-0.039225798,0.0026670096,-0.0092425,-0.018944515,-0.0038301547,0.0077960747,0.006600294,-0.026129644,-0.026359402,0.0052034752,0.00022486167,0.01812992,-0.016270978,-0.017409319,-0.03849475,-0.0027074781,0.025503034,0.03621807,0.027925927,-0.027382866,0.0010541411,0.016062107,-0.010819469,0.025920775,0.0056238263,0.020135073,0.005153869,-0.0071329125,0.00089814124,0.0090023,-0.01684537,0.020845233,0.028698746,0.00861589,-0.002542993,-0.03308502,0.021409182,0.039330233,-0.02406183,0.008991856,0.007435774,0.019038506,-0.01747198,0.05840007,0.008072828,0.040667,0.019571124,0.033502758,0.01625009,0.025983436,-0.0040938533,-0.023497881,0.022620628,-0.023393447,-0.026798028,0.03321034,0.011132774,0.06746503,0.013764537,-0.0071120253,-0.00096798217,0.037450403,0.027090447,0.01437026,-0.03402493,0.012030915,0.0077595226,-0.019163828,0.0021565834,-0.032040667,0.0030286158,0.0011879485,-0.012333777,0.04946043,0.011999585,0.035215493,0.028072136,-0.015310176,-0.019341368,0.03201978,-0.015905455,-0.0030808335,-0.019602455,-0.008443573,0.041356273,-0.025962548,-0.01105967,-0.049084462,0.0053444626,-0.015017757,-0.003762272,0.02358143,0.031643815,0.016678274,0.017148232,-0.042317074,0.027717058,-0.032980584,0.0071746865,-0.011916037,0.024939084,-0.009634132,-0.028113909,0.032437522,-0.03369074,-0.014798444,0.0100623155,-0.0013955131,-0.003383695,0.034839526,0.020594588,0.004642137,0.003404582,0.0036421716,0.012385994,-0.020343944,-0.01768085,-0.007738636,0.007644644,-0.0020978386,-0.027111333,-0.01398385,-0.007561096,-0.021492729,-0.004749183,-0.016772266,-0.010401729,0.005065099,-0.024792876,-0.007352226,0.026108757,0.013012605,-0.024688441,-0.023685865,0.039873295,-0.011320757,0.021743374,0.012678413,-0.02191047,0.0046917438,0.0052008643,0.05259348,-0.019936647,-0.015884567,-0.012459099,0.001270191,0.027591735,0.039434668,0.01105967,-0.0058953576,-0.009294718,0.010119754,-0.009487922,-0.028865842,0.03866185,0.017889721,0.012761961,0.0062974324,0.031079864,-0.014620904,0.01580102,0.019487577,-0.039246686,-0.02239087,0.0094670355,-0.00036258536,0.014380704,-0.009702014,0.025774565,-0.01129987,0.017513754,-0.006991925,-0.0054776175,-0.009232056,-0.01795238,-0.003762272,-0.02128386,0.012427769,0.0011631452,0.0076811966,-0.024751103,0.002710089,-0.030056402,0.040646113,-0.025022633,0.0044672084,0.011049226,-0.031017203,-0.0014777557,0.027278429,0.012887282,0.020678136,0.00067491137,-0.03697,0.026463836,-0.0115087405,-0.018464113,0.009362601,0.008057162,0.0032218206,-0.011644506,-0.024813764,-0.031017203,0.03258373,-0.0059580184,-0.00156522,0.038828943,0.010187637,0.006114671,0.028134797,0.014443365,0.019477133,0.03828588,-0.019059394,-0.0007747774,0.008991856,-0.0066368463,-0.0056029395,0.00399464,-0.023059255,-0.012605308,-0.010036206,0.017879277,0.021847809,-0.020573702,0.0092425,0.008516677,0.0056603784,-0.0038771504,-0.027549962,0.027403751,-0.017973268,-0.02197313,-0.04235885,-0.008098937,-0.030599464,0.0041408488,0.024730215,0.02120031,-0.011310314,-0.007038921,-0.006595072,-0.0014346762,0.023497881,0.003213988,0.024228927,0.028009474,-0.052342836,-0.0012754127,0.017837504,0.055977177,0.030662125,-0.035883877,0.00518781,0.063454725,0.0053888476,0.029325357,-0.026526498,0.0058535836,0.019487577,-0.008970969,-0.006746503,0.0077543007,0.023915622,-0.009936993,-0.017983712,-0.026547385,0.024709327,0.021242086,0.018537218,0.0040442464,0.0019672948,0.009973546,-0.001827613,0.017169118,-0.021513617,0.0028432438,-0.046786893,0.01660517,0.007456661,-0.0063496497,0.01514308,0.022913046,-0.0017962825,-0.04068789,0.017513754,0.0385783,-0.0028275785,0.017921051,0.015842794,0.0075872047,0.0015534711,0.039580878,0.025503034,0.002575629,-0.0072582345,-0.017033353,-0.01562348,-0.054306217,-0.01025552,-0.05050478,0.057146847,0.028030362,-0.016176986,0.0054723956,0.007947505,-0.008260811,0.008997078,-0.014119616,0.004814455,-0.025732791,0.04037458,-0.037304193,0.012166681,0.00849579,0.0057543702,0.0005518739,0.0071537993,0.02406183,0.013774981,-0.018996732,0.019393586,0.00023873195,0.018359678,0.042379733,0.009289496,0.043152556,-0.018453669,-0.0033863059,0.009174617,0.003887594,-0.019268263,0.04386271,0.04164869,-0.034275576,0.044405773,0.011341644,-0.053470735,0.015529489,0.016208317,-0.0058953576,0.009404374,0.0031669922,0.037262417,0.012500873,0.014109173,0.00024835955,-0.0121040195,0.004012916,-0.017900163,0.0033497536,0.0010182415,0.0076655312,0.0018563326,0.015863681,0.008527121,0.009534918,0.02406183,0.032458406,0.027278429,0.030578576,-0.021534503,-0.036656696,0.003448967,-0.021701599,-0.02623408,-0.0030260049,0.002039094,0.04039547,-0.018714758,0.036594033,0.055099923,-0.005320965,0.03828588,0.011999585,0.013221474,-0.0015626091,-0.0074096653,0.036343392,0.0065898504,-0.0039006483,0.035737667,-0.0009000994,-0.0065637417,-0.036238953,-0.014443365,0.029889306,-0.021179425,0.009085848,0.0038928157,-0.05652024,0.024855537,0.011581845,-0.018443227,0.00033680297,-0.03571678,-0.005858805,0.015320619,0.01878786,0.019205602,-0.015863681,-0.016928919,-0.016438074,-0.01576969,0.0014046511,0.022704175,0.013357241,-0.021409182,-0.017628632,-0.024500458,0.020469265,-0.0060833404,-0.00962891,0.0011709777,0.0015378058,0.00040240123,0.026484724,-0.013848085,0.013764537,0.021252528,0.01016675,0.0071955733,-0.022578854,-0.00055122114,0.03500662,-0.026046095,0.017806172,0.032980584,-0.020103743,-0.02071991,-0.01928915,0.00047517937,0.0032400968,0.0011755468,-0.012427769,-0.0047544045,0.01764952,-0.009597579,0.017315328,0.04457287,-0.01645896,0.0035690672,-0.019017618,-0.013273693,0.009843001,-0.0043131667,0.043361425,-0.020678136,-0.002036483,-0.020302169,-0.027821492,-0.01943536,-0.011487853,-0.010391286,-0.029179147,-0.015529489,-0.0072112386,0.011080557,0.008208593,-0.030348819,-0.017492868,0.019560682,0.05071365,0.04402981,0.006997147,0.0014555632,0.024187153,-0.0020834787,-0.008678551,0.040499903,-0.018443227,-0.002412449,0.00007440996,-0.015821908,0.00004581271,-0.0031800466,-0.0334401,0.010547938,-0.011498297,0.006788277,0.0031748249,-0.012918613,-0.0037492176,0.0054567303,-0.015153523,-0.030495029,-0.013827198,-0.012887282,-0.0060990057,-0.00045853504,-0.033168565,-0.010208524,-0.01297083,0.018923627,0.007926619,0.0064227544,0.024396023,-0.042442396,-0.011613175,-0.013701876,0.0045481455,-0.001114844,-0.023832073,0.004775292,-0.010568825,-0.012198011,0.007561096,-0.017315328,-0.0031069422,0.023936508,0.008182485,-0.0008387438,0.017210893,-0.043695617,0.053804927,0.0034959626,0.0053392407,0.010965678,0.022662401,-0.039852407,-0.0103234025,-0.009169396,-0.010798582,0.0018615545,0.0025077462,-0.011623619,0.01672005,-0.012041359,0.012239786,-0.020135073,-0.04277659,0.014600017,0.061407797,0.0077647446,-0.0036317282,0.035821214,-0.037199758,0.024020057,-0.013649658,0.0008929195,0.036322504,0.0042583384,-0.009258165,-0.018944515,0.04102208,0.009816892,0.009910884,-0.027236655,0.010365177,-0.0032479295,-0.031226074,-0.01311704,0.007895288,-0.000940568,0.0012003501,0.013012605,0.014255381,0.0025247168,-0.01949802,0.004660413,0.020072412,-0.015320619,0.0074671046,-0.046285603,0.02092878,-0.02874052,0.0021761649,-0.028364554,-0.017628632,-0.03417114,0.013169257,0.000608334,0.008897864,0.0006892712,0.059736837,-0.018150808,-0.02498086,-0.026192306,-0.0012225426,0.013597441,0.009670684,-0.00038771506,0.021597164,-0.024709327,-0.007038921,0.0135452235,0.0010038817,-0.0012231952,-0.0072425692,-0.002394173,-0.010339068,0.0067203944,-0.02602521,-0.0077073053,0.015571263,0.009712458,-0.0015900233,0.0043967147,0.024730215,0.0016566006,0.034066707,0.010631486,0.02504352,-0.014203164,-0.000033941385,-0.015393724,0.058776036,-0.010621043,0.029951967,-0.009503588,-0.013660102,0.009968324,-0.010819469,0.018150808,0.032437522,0.026986012,0.025440373,0.000055440316,0.010386064,0.009195505,-0.032750826,-0.0116758365,-0.008464459,-0.023184577,-0.010427837,-0.030891882,-0.030495029,0.022182,0.030495029,0.0007649866,0.0069605946,0.027278429,-0.009472257,0.006370537,0.0031617705,-0.0027205325,-0.022286436,-0.033711627,-0.013586997]},{"id":"guide-permissions-7","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: PermissionFlags reference\nCommon flags: BanMembers, KickMembers, Administrator, ManageRoles, ManageChannels, ManageGuild, ViewAuditLog, ManageMessages, SendMessages, EmbedLinks, AttachFiles, ReadMessageHistory, MentionEveryone, Connect, Speak, MuteMembers, ModerateMembers, CreateExpressions, PinMessages, BypassSlowmode.\n\n```javascript\nimport { PermissionFlags } from '@fluxerjs/core';\n\n// Check multiple\nconst canModerate = perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator);\n\n// List all permissions the user has\nconst names = Object.keys(PermissionFlags).filter((name) =>\n perms.has(PermissionFlags[name])\n);\nawait message.reply(`Your permissions: ${names.join(', ')}`);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.026770255,0.02480112,0.0027963575,0.038560133,0.0014449145,0.031381518,-0.10528636,-0.005602062,0.026122184,0.022794597,0.021648012,-0.014955449,0.037887137,0.0077892966,0.010686914,0.0031484335,-0.033574983,0.0266207,0.039856274,0.04930313,0.040728673,0.0499512,0.0025065956,0.061516747,-0.061766006,0.005745385,-0.0064993887,0.03364976,-0.012307088,0.004838711,0.07462769,-0.01929253,0.000021870885,0.015640907,-0.020127542,-0.009122824,0.021311514,-0.015778,-0.015615981,-0.019940598,-0.02696966,-0.028091319,-0.008387514,-0.008711549,0.005458739,0.017248617,-0.04596308,0.012300857,-0.02602248,0.03569367,-0.024339993,0.02849013,0.0067611095,0.09382052,0.017161379,0.03247825,-0.055833675,0.012369403,-0.02375424,0.00910413,-0.012761983,-0.024227828,-0.030708522,0.006686332,-0.02025217,0.033550058,-0.045539342,-0.0005888708,0.042872287,0.07203542,0.04638682,0.020763148,0.013933494,-0.043944094,0.010007688,-0.01846998,0.050175533,0.032453325,-0.0033026617,-0.0063155615,0.01673764,0.05493635,-0.06425858,-0.011017181,-0.005545979,0.037488326,-0.013086018,-0.02228362,0.007128764,-0.070390314,-0.026371442,-0.018108556,-0.08230482,0.017335858,0.044342905,-0.037089515,-0.009010658,-0.00083189685,-0.009085435,0.061466895,0.09970299,-0.022121603,-0.062763035,-0.0074091787,0.027518027,0.02861476,0.017709745,0.012425486,-0.01673764,-0.009072972,-0.074478135,0.021972047,0.027044438,0.035743523,0.02254534,-0.019753655,0.012070294,-0.017796984,0.062065113,0.0032185372,-0.05688056,-0.022408249,0.0648568,-0.0097584305,-0.0047545866,-0.036217112,-0.045065753,-0.040653896,-0.041725703,-0.0037949453,0.031880032,-0.0350456,0.07717012,-0.054188576,-0.039407607,0.015503815,0.044990975,-0.019940598,-0.026421294,0.0024006611,0.011690176,-0.0019068198,0.009814514,0.036740553,-0.028415354,-0.027019512,-0.06859566,0.004327733,-0.074478135,0.018781552,-0.018681848,-0.008611846,-0.0060476097,0.005306069,-0.02293169,-0.042024814,0.038086545,-0.001860084,-0.045290086,-0.023180947,-0.017772058,-0.027542952,-0.015591056,-0.04626219,0.013721624,-0.008998196,0.0056674923,-0.0071038385,-0.011073263,0.015117466,-0.004240493,-0.036192186,-0.0060382625,-0.057578478,0.038360726,0.0027200223,0.0036266963,-0.001339759,-0.03975657,-0.01764743,-0.030010602,0.013497293,0.0029723956,-0.045315012,-0.04489127,0.012693438,-0.0136593105,0.0064183804,-0.0065492406,-0.010506203,-0.006022684,0.021996973,0.013472367,0.034347683,0.026097259,-0.037239067,0.027717432,-0.008524606,0.016799955,-0.050449714,-0.013447441,0.0054556234,0.07462769,-0.028041467,-0.025897853,-0.02926283,0.0069231265,-0.0050443485,-0.024701416,0.010911247,0.009702347,0.00910413,0.021934658,0.03295184,-0.03190496,0.013260499,-0.032278843,-0.018681848,-0.050823603,-0.0034864892,-0.030035527,-0.03312632,0.048106696,0.012687206,-0.015840312,0.039432533,0.027542952,0.010855163,-0.0041501373,0.024090735,-0.0068296553,0.024564326,-0.03207944,-0.043894242,0.023729313,-0.01331035,0.017049212,0.026770255,0.02128659,-0.013098481,0.0083625885,-0.007047755,0.000037680722,0.0083625885,0.011970591,-0.010979792,0.008044785,-0.020326948,0.028215947,0.028340576,0.09287334,0.013783939,0.026545921,-0.0057329223,0.01374655,-0.009739736,-0.018931106,0.06091853,0.009116593,0.023342963,-0.020999944,0.021573236,-0.0008996637,-0.03394887,-0.034198128,0.0042467243,0.017610041,0.016949508,-0.031755403,-0.043171395,0.01686227,0.016613012,0.03230377,0.0027356008,-0.020937629,0.004860521,0.046411745,0.010643295,-0.034572013,-0.013297887,0.0021856765,-0.0057858895,-0.003972541,0.0057204594,0.0057734265,-0.002413124,-0.0004062118,-0.041725703,0.022258693,0.021523384,-0.023766702,-0.014070585,0.02602248,-0.0048106695,0.040653896,0.047159515,0.04067882,-0.02215899,0.044642016,0.04673578,-0.00823796,0.016376216,-0.023218336,-0.022732282,0.029412383,0.009185138,-0.008549532,-0.0049415296,-0.017572653,-0.05957254,0.04626219,0.03564382,-0.024651565,-0.024639102,-0.071187936,0.00526868,0.0051627457,0.007994934,0.052094813,0.012755752,0.022296082,-0.02966164,0.007913925,-0.040953007,-0.004430552,-0.0228943,-0.001682488,0.005545979,0.045938153,0.006084998,0.052792735,-0.012986315,-0.005081737,0.0599215,0.005739154,0.0101884,-0.007708288,0.07103838,-0.002159193,-0.008767632,0.057129815,-0.005412003,-0.058575507,0.011067032,0.0013989577,0.0008700644,-0.045389786,0.0050225384,0.012026674,0.028390428,-0.01322311,0.021623086,-0.06366036,-0.037787434,-0.016937045,-0.032926913,0.023941182,-0.027742358,-0.026346516,0.010431426,-0.01903081,0.0028181674,-0.0101884,-0.025199931,0.019566713,0.013958419,-0.022495488,-0.008275349,0.027891913,-0.0069480524,0.019105587,-0.007047755,0.0042965757,-0.013347738,-0.00593856,0.004645536,-0.033550058,-0.0064931577,-0.026520997,0.021822494,0.029711492,0.005670608,-0.0007551723,-0.03335065,-0.022408249,0.009415702,0.0077643706,-0.004539602,0.0028306304,0.0028384195,0.0291382,0.027642654,0.032752432,0.009091667,0.011104421,0.019267604,0.06017076,0.07951314,0.0033307031,-0.04691026,0.020601131,0.040853303,0.008998196,0.030683596,0.00732817,-0.01608957,-0.044392757,0.034696642,0.039656866,0.0049010254,0.054687094,0.032926913,0.009340924,-0.015964942,0.065803975,-0.021934658,0.05727937,-0.016550697,0.021398755,-0.034347683,-0.014444471,0.009390776,-0.0052593327,-0.026396368,0.02315602,0.008599383,0.0039694253,-0.069393285,0.022844449,-0.049253277,-0.057528626,-0.030858077,0.016351292,0.023941182,0.008692855,-0.025548892,0.02315602,-0.020027839,-0.02319341,-0.034447383,0.0021778874,-0.0054088873,-0.0031312972,0.0021529614,0.005767195,-0.015341798,-0.015628444,-0.056681152,0.031680625,0.00037271783,-0.014581563,0.0031936115,-0.029063422,0.014058122,-0.08454814,0.0017977696,0.0307833,0.06724967,-0.005458739,0.008854873,-0.0383358,0.0307833,0.023729313,0.0041470216,0.017111527,-0.013036166,-0.013297887,-0.0054712016,-0.019541787,0.021373829,-0.0015407228,0.01409551,0.014207677,0.016712714,0.0126248915,-0.05189541,0.011571779,-0.045564268,0.04705981,0.01374655,0.041576147,0.012313319,-0.024352456,-0.008437366,0.014606489,0.04778266,0.075525016,-0.0046985038,-0.052992143,0.024265217,-0.07293274,0.020825462,-0.0029537012,-0.013360201,0.014893135,-0.041426595,0.0076085846,-0.04409365,0.016637936,-0.0006687111,0.006767341,-0.056731004,-0.033574983,0.013734087,-0.019915674,-0.012132608,-0.0007777612,-0.050100755,-0.020601131,0.023642072,-0.049627166,0.002491017,-0.022645043,0.008549532,-0.0061379657,0.00021225832,-0.044268128,0.02107472,-0.012724594,-0.014893135,0.02861476,0.03793699,0.022121603,-0.006698795,0.0049571083,-0.012587503,0.0059852954,-0.0025330791,0.011391067,-0.011210355,0.027169066,-0.013235573,0.03818625,-0.009016889,-0.0069729784,-0.012151303,-0.016899658,-0.01864446,-0.002114015,-0.05862536,0.017173842,0.02128659,-0.023280649,0.0050879684,-0.015491352,-0.013198184,0.003033152,0.033425428,-0.0008755169,0.006281289,0.008225497,-0.032752432,-0.049004022,0.00513782,0.0075961216,0.024003496,-0.031207038,-0.03230377,0.009048047,-0.011609168,0.019180363,0.00068312127,0.013883642,0.00033961333,-0.026221888,-0.03517023,0.02215899,0.04257318,0.03148122,-0.025748298,0.030459264,0.022919226,-0.015354261,0.034272905,0.01817087,-0.02271982,-0.030534042,0.01556613,-0.01647592,-0.0052406387,0.0026405714,-0.03364976,0.056830708,0.03335065,-0.003101698,-0.048655063,-0.0019784812,0.025274709,-0.04110256,-0.0065243146,0.0043900474,-0.0012135723,-0.00724093,0.014880672,-0.016899658,0.028091319,-0.008636772,0.016662862,-0.026271738,0.0019675763,0.014432008,-0.031805255,-0.03646637,-0.008337663,-0.000049948863,-0.0077207508,0.015179781,-0.034098424,0.0041470216,0.019529324,-0.02107472,-0.007216004,-0.05523546,-0.02189727,-0.024950674,0.0035238776,-0.0035238776,0.021672938,0.03008538,0.03230377,0.003819871,0.0053964243,0.0108302375,0.0044523617,-0.0047452394,0.004449246,-0.0037263995,-0.013771476,0.017423099,-0.019803507,0.03990612,-0.031730477,0.034821272,-0.010157242,-0.024626639,-0.004882331,0.029811196,0.00620028,0.016986897,-0.032453325,0.07941344,-0.032378547,0.03464679,-0.055385012,-0.0020735108,-0.027717432,-0.020302022,-0.006053841,-0.012637354,-0.015541204,-0.01985336,0.010475046,-0.022557802,-0.0071599213,0.011783647,-0.0122697,-0.0005273354,0.010306797,-0.03492097,-0.011870888,-0.008206802,0.0076210476,-0.011852194,0.019865822,-0.008792558,-0.023804089,-0.049751796,0.00910413,-0.0021529614,-0.0029973213,-0.010070003,0.037762508,0.0022230651,0.004421205,0.021386292,-0.018794015,-0.012562578,-0.028789239,0.024402307,0.03160585,0.019142974,0.036840256,-0.011571779,-0.008188108,0.018307962,-0.0025237321,0.00045684224,0.0074341046,0.016687788,-0.016239125,0.0051939026,0.02263258,0.029063422,-0.033176173,0.004904141,0.010880089,0.0333008,0.020090153,0.025523966,-0.06400932,0.010431426,0.018806478,-0.047209367,-0.024165513,0.01135991,0.0015329336,0.027218917,0.028290724,0.0064744633,-0.020887777,-0.041850332,0.016812418,-0.032104366,0.0030736565,0.004907257,0.0059447912,-0.022495488,-0.06281289,0.044168428,-0.0025657942,-0.007982471,0.012300857,0.006162891,0.028515056,-0.008568226,-0.0009331577,0.05035001,0.046835482,-0.020962555,0.0101884,-0.0029178704,-0.008001165,0.034073498,-0.0010274082,-0.03975657,-0.0069355895,0.019155437,0.021672938,-0.0515963,-0.0374634,0.00932223,0.017871762,0.007072681,-0.028016541,-0.044018872,-0.031979736,-0.03160585,-0.0025704678,-0.027842062,0.06286274,-0.021224275,0.009023121,-0.017996391,0.0007002578,0.013509756,-0.03601771,-0.04040464,-0.009671191,0.009247453,0.048580285,0.0115406215,0.07442828,-0.011204124,0.012437949,-0.025922779,0.0018242532,-0.029212978,-0.002347694,0.0016684673,0.011197893,0.0070352927,0.0083252,0.013472367,0.008343894,0.039183278,0.00630933,-0.028938795,-0.02280706,-0.012699669,-0.024626639,-0.00033571868,0.023255723,-0.0018164639,-0.026047407,-0.016924582,-0.02931268,0.020065228,-0.023205873,-0.041426595,-0.019479472,-0.032926913,0.010655757,-0.016463457,0.0078017595,-0.035195157,-0.012581271,-0.0025782571,-0.081108384,-0.018831404,0.025461651,-0.037612956,-0.030035527,0.0145691,0.021872343,0.047009964,0.013297887,-0.023604684,0.023654535,-0.024352456,0.007864074,0.020302022,0.039681792,-0.009596413,0.017934076,-0.0023710618,0.04955239,-0.0078079905,0.010986024,-0.015217169,-0.05289244,0.02644622,0.009284841,0.01691212,0.0023835248,-0.0077332132,0.012755752,0.0038946483,-0.01331035,0.020862851,0.012718363,-0.013995808,0.009615107,0.010437657,0.01422014,0.0029661641,0.0018351582,-0.053839616,0.0037388622,-0.001471398,-0.035394564,-0.031456295,0.031880032,-0.010400268,0.010437657,0.0027823367,0.011067032,0.0071225325,-0.010905015,-0.009016889,0.019741192,0.017709745,0.022869375,-0.00205949,-0.031630773,0.046187412,-0.010767924,-0.0011434687,0.006066304,-0.00801986,0.021909732,0.007402947,0.037014738,0.009284841,-0.02536195,-0.034073498,-0.0017525917,0.0019457663,0.015491352,-0.005527285,0.020837925,0.050574344,-0.004436783,0.0021872343,0.005056811,-0.013248036,-0.014768506,-0.013073555,-0.026471145,0.047458626,0.016276514,0.023218336,0.042099588,-0.0008910955,-0.01964149,0.004539602,-0.013958419,-0.009745968,0.07397962,-0.0055490946,0.012001748,-0.0023726197,0.025449188,-0.020912703,-0.0051128943,0.033749465,0.028714463,-0.019516861,-0.0043370803,-0.00269977,0.0009721042,-0.028564908,0.00637476,0.014893135,-0.014942986,-0.004982034,0.006599092,-0.009253684,-0.007184847,0.021834956,-0.0064183804,0.008960807,-0.047583252,-0.008724012,0.032627806,-0.0040036985,0.007932619,-0.004763934,0.015603519,0.0069792094,-0.02896372,0.0033961332,0.029387457,0.0027356008,-0.01079908,0.01686227,-0.008337663,-0.009683654,-0.031755403,0.017472949,0.0046330737,-0.0024084505,0.00070687867,-0.02051389,0.030434338,0.02632159,-0.01691212,0.037737582,0.003001995,0.015404113,0.019791044,0.053091843,-0.0002993037,0.042498402,0.005701765,0.023916256,0.010325491,-0.017497875,0.009777125,-0.028764313,-0.005739154,0.030883003,-0.032901987,0.029537013,-0.002313421,0.033973794,-0.055434864,0.02389133,-0.007010367,0.031157186,0.016588086,-0.007029061,-0.01331035,0.025773223,-0.014444471,-0.014020734,0.014955449,0.025486577,0.017697282,-0.053839616,0.0047452394,0.015429039,-0.0010772597,0.034198128,0.048331026,-0.018719237,-0.016588086,0.03429783,0.021436144,0.0064059175,-0.020102616,-0.0023445783,0.024364918,-0.0133228125,0.008063479,-0.03307647,-0.010325491,-0.01820826,0.0065118517,0.018893717,0.05832625,0.030259859,-0.0014067469,-0.043595135,0.0047016195,-0.0065617035,-0.023268186,-0.0048636366,0.023654535,0.011802342,-0.008424903,0.0064059175,-0.03048419,0.0041345586,-0.013185721,0.0016669094,-0.0034459848,0.04920343,0.025897853,0.014843283,-0.008730243,-0.00927861,0.006642712,-0.022682432,0.026570847,-0.022956615,0.006518083,0.029038496,-0.0111916615,-0.0069605154,-0.005583368,0.021959584,-0.015628444,-0.01331035,-0.0332011,-0.015516278,-0.02397857,0.014594026,0.007845379,-0.0000067365245,-0.015179781,-0.00626571,0.05388947,-0.013821327,0.00023776827,0.031032557,0.0069729784,-0.0017416867,0.0038510282,0.0358183,-0.028589834,-0.005249986,-0.00496334,0.00022121602,0.011602936,0.023617147,-0.0036921266,-0.0013093808,-0.0075338073,-0.005265564,-0.0005557663,-0.020314485,0.024315068,0.003664085,-0.008599383,0.0005226618,0.028290724,-0.013958419,-0.01153439,0.008262886,-0.032378547,-0.036266964,0.012518957,0.015017764,0.0069916723,-0.026346516,0.035494264,-0.011253975,0.0036173493,-0.004218683,0.0057516163,0.017323395,-0.039183278,-0.013734087,-0.0350456,0.024564326,-0.02996075,0.025848001,-0.027842062,-0.0032372316,-0.030284785,0.018619534,-0.04349543,0.017971465,0.012363171,-0.03300169,-0.0027527374,0.015927553,0.021049794,0.0050755055,0.020439114,-0.029287754,0.014020734,-0.02966164,-0.00546497,0.0037980608,0.022458099,0.008443598,-0.02814117,0.008680392,-0.035743523,-0.018482443,0.0000239886,0.010007688,0.0054867803,0.01565337,-0.0015905743,-0.0062065115,0.00091056875,-0.0008988848,0.015516278,-0.0026608238,0.012836761,0.010144779,-0.017373247,-0.02063852,0.018183334,-0.0008451387,-0.0013366432,-0.020002913,0.021124572,0.030808225,-0.017510338,-0.013559607,0.0033743232,0.002911639,-0.007440336,-0.030907929,0.019018346,-0.010593443,-0.022383323,-0.023604684,-0.03382424,-0.016239125,-0.0037731351,0.016812418,0.028539982,-0.0005070832,-0.00626571,0.0061815856,0.00797624,0.03616726,0.015017764,0.00072012044,0.043819465,-0.045290086,-0.019018346,0.012562578,0.07034046,0.006530546,-0.013734087,0.03212929,0.035793375,0.033101395,0.020351874,0.014008271,-0.0008934323,0.037388623,-0.020401726,0.0018242532,0.035020676,0.0014861978,0.010076234,-0.0019177247,-0.05224437,0.027443249,0.03950731,0.018544758,0.014282454,-0.0015594171,0.016251588,0.010780387,0.00053434575,-0.01794654,-0.0071349954,-0.026944734,0.021485996,0.0140331965,0.009272379,0.019354844,0.018245649,-0.014195214,-0.059123874,0.016426068,0.013073555,0.008013628,0.02280706,-0.0016123843,-0.007938851,-0.035394564,0.012874149,0.0003010563,0.008848641,0.0023212102,-0.012120145,-0.018046241,-0.02931268,-0.025648596,-0.033923943,0.03235362,0.008767632,-0.007670899,-0.0014659456,0.003555035,0.010475046,0.013235573,-0.0092412215,0.0053528044,-0.009035584,0.049776718,-0.022146527,0.0072907815,0.01053736,0.0010359765,0.021485996,0.0023866405,0.0075961216,0.03412335,-0.01135991,0.022271156,0.00919137,0.01929253,0.0162142,0.024701416,0.0055179377,-0.04204974,0.013783939,-0.015179781,0.027991615,-0.002691981,0.020887777,0.02207175,-0.03100763,0.026196962,0.0029194283,-0.059223577,-0.000024974432,0.02133644,0.004872984,0.008904723,-0.009571487,0.031207038,0.0029209862,0.009795819,-0.010736766,-0.0049758027,0.005910518,-0.020052765,0.008468523,0.004617495,0.024614176,0.007652205,0.0095901815,-0.0015664275,-0.0081694145,0.02397857,0.021087183,-0.015067615,0.01903081,-0.03377439,-0.021473533,0.004848058,-0.020750687,-0.0055210534,-0.01603972,-0.0068670437,0.036491297,-0.013808865,0.02978627,0.05703011,0.009185138,0.017796984,0.0077145193,0.012363171,0.030808225,-0.021348903,0.0024255868,0.015940016,-0.00085448584,0.020750687,-0.0018304846,-0.02579815,-0.028465204,-0.0067922664,0.0245394,-0.046860408,0.0013350854,-0.010817775,-0.014494323,0.03464679,0.016712714,-0.02536195,0.005190787,-0.020738224,-0.010780387,-0.0038697224,0.0072222357,0.028091319,-0.020800536,-0.004869868,0.0035051834,0.00020661109,-0.0028166096,0.005228176,0.0032683888,-0.014469397,-0.017011823,-0.008013628,0.04586338,0.0073157074,0.0035176463,0.013721624,-0.000475926,-0.019404694,0.00949671,0.0046642306,-0.008512143,0.025012989,0.004938414,-0.0012712132,-0.012737057,-0.0005347352,0.034671716,-0.025486577,0.004857405,0.014930523,-0.028988646,-0.03170555,-0.039357755,-0.020800536,-0.013970882,0.006399686,0.021249201,-0.022956615,-0.007041524,-0.011609168,0.021822494,0.05563427,-0.017223692,-0.0228943,-0.0028913869,-0.034547087,0.013335275,-0.014581563,0.015628444,0.0012478452,0.020862851,-0.009833207,-0.01855722,-0.03307647,-0.0031842643,-0.0017307816,-0.028215947,-0.02766758,-0.0038790696,0.0023056318,-0.01483082,-0.009826977,0.021087183,-0.004408742,0.031680625,0.014581563,0.00075010926,-0.008343894,0.02679518,0.0030471727,-0.03990612,0.016887195,-0.023567295,0.022233767,-0.019018346,-0.043296024,-0.0008552647,0.014581563,-0.007889,-0.0046798093,0.005302953,-0.04543964,0.03990612,0.0018507368,-0.016799955,0.014780968,-0.013285424,-0.00797624,-0.011833499,0.022757208,-0.015715685,0.00152826,-0.014107973,-0.013173258,-0.018420128,0.012244774,-0.0059167496,-0.010780387,0.01135991,-0.037363697,-0.010063771,0.005134704,-0.0035020676,-0.030534042,-0.027642654,-0.02679518,-0.0062906356,-0.02133644,0.007758139,0.00008237181,-0.011017181,0.026172036,-0.0033400503,-0.020476503,0.03377439,-0.03170555,0.04543964,0.018108556,0.022607654,0.0042311456,-0.0119145075,-0.023318037,-0.023006465,-0.0051939026,-0.013970882,0.016102033,0.0069355895,-0.04127704,0.009521636,-0.009521636,-0.03439753,-0.030160155,-0.0035145306,0.035918005,0.0582764,0.016326366,-0.014245065,0.032727506,-0.016986897,0.029861046,-0.0006453432,-0.0019644606,0.026122184,0.00054719805,-0.01808363,-0.01855722,0.0474337,0.020526353,0.014556637,-0.03295184,0.009689885,-0.008792558,-0.026221888,-0.022869375,0.020750687,-0.021884806,-0.010986024,-0.012718363,0.03183018,0.02011508,-0.017173842,0.020177394,0.009203833,-0.012774446,0.0027387165,-0.025411801,-0.0019348612,-0.013110944,0.0037793666,-0.006729952,0.005069274,0.0030175734,0.026720403,0.024988063,0.014419545,-0.0035986549,0.0733814,0.015927553,-0.026496071,-0.015778,0.01058098,0.005832625,-0.0077145193,0.008480986,0.021710327,-0.0010172821,0.0030082262,0.02215899,0.0028057045,0.0025751414,-0.0014316727,-0.009023121,-0.030234933,-0.010256945,0.0046798093,-0.019018346,0.021361366,0.015117466,-0.013248036,-0.027169066,0.020426651,0.017036749,0.03870969,-0.0031048136,0.013771476,-0.016151885,-0.023205873,0.029063422,0.045315012,-0.026820105,0.03793699,-0.021411218,-0.012581271,-0.0045894533,-0.009029352,0.031406444,0.018096093,0.004947761,0.007901463,0.024863435,-0.008823715,0.013434978,-0.04214944,-0.009122824,-0.00021498458,-0.02146107,0.0056301034,-0.006555472,-0.014519248,0.0071349954,-0.0008007397,-0.053390954,0.00104065,0.023554832,-0.005168977,-0.012363171,0.018843865,-0.008001165,-0.018507369,-0.02427768,-0.007627279]},{"id":"guide-moderation-0","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Overview\nUse guild.ban(), guild.kick(), and guild.unban() for moderation. Always check member permissions before allowing moderation commands—see the Permissions guide.","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[0.016205285,0.045986317,0.001577722,0.021806808,-0.03336454,0.029646497,-0.06550604,0.022173721,0.021476587,-0.0019568645,0.022112569,-0.018039845,0.00010739823,0.018736977,0.021464357,-0.007900841,-0.04884823,0.03128537,0.0058889394,0.06946869,0.029206203,0.08301998,0.0053508016,0.073529184,-0.0635981,0.029670957,0.011955219,0.0018544348,-0.01484771,-0.038476847,0.052003674,-0.0049441406,-0.009264531,-0.0091361115,-0.027640712,-0.005821672,0.0018315029,0.009949433,0.027371643,0.0038862107,-0.009337913,-0.05978221,0.0015295648,-0.014113885,-0.011606652,0.037351653,-0.024485268,0.008903733,-0.008585743,0.0021311478,-0.014395185,0.01183903,0.028374536,0.05185691,0.040189106,0.014713175,-0.03461204,0.0036110266,-0.006702261,0.02820331,-0.03216596,-0.010346921,-0.00940518,0.0022259334,-0.04762519,-0.022124799,-0.036813512,0.0038189434,0.008542936,0.02942635,0.030086791,-0.008108757,-0.0024781853,-0.019079428,-0.030453704,0.017195947,0.06472329,0.026124142,-0.0028756736,-0.029304046,-0.026491053,0.038427927,-0.04488558,0.051220927,0.025268013,0.015911754,-0.01604629,0.000035090747,0.022907546,-0.092266165,-0.03669121,0.0016174709,-0.06883271,0.024950022,0.07122987,-0.048359014,-0.0050114077,-0.020669382,-0.0016526332,0.06702261,0.062913194,-0.019067198,-0.04552156,-0.035639394,0.06956653,0.012016371,-0.03823224,0.044322982,-0.027836397,-0.0020898702,-0.07147448,0.027249338,-0.006641109,0.027787477,0.0010716891,0.0017749373,0.08747184,-0.005858363,0.043515775,-0.04192582,-0.04219489,-0.013991581,0.021085216,-0.051465537,-0.026319828,-0.030184636,-0.019776562,-0.0075706197,-0.007497237,0.004589459,0.043687,-0.020265779,0.04483666,-0.041338764,-0.06423408,0.019458571,0.012597315,-0.03250841,-0.04128984,-0.018871512,0.024546418,0.0028282807,0.0107811,0.052395046,-0.06012466,-0.018639134,-0.056553386,0.015716068,-0.01485994,0.021464357,-0.050536025,-0.010340806,0.0029643439,-0.03402498,-0.008750853,-0.009631443,-0.01791754,-0.012805232,-0.029328506,-0.026735662,-0.01485994,-0.04155891,0.022687398,-0.05249289,-0.014431876,-0.077736445,0.004198086,0.04821225,-0.010891174,0.030429244,-0.00069942616,0.024534188,0.0036660633,-0.050242495,0.014211728,0.012004141,-0.050829556,-0.015654916,-0.016119672,-0.00456194,-0.009747631,-0.008524591,-0.06007574,-0.004641438,-0.048970535,0.023103232,0.0049563707,-0.020522617,-0.04583955,-0.041363224,0.0054027806,0.009704825,-0.006946869,0.022393867,0.048114408,-0.022675168,0.031334292,-0.029573115,0.029499732,-0.033217777,-0.009105535,0.0013040667,0.04307548,-0.031578902,-0.0042072586,0.00401463,0.01031023,0.013991581,0.0027457254,0.022296024,-0.01824776,-0.0448122,0.05185691,0.019507494,-0.035663854,0.0079986835,-0.08429194,-0.007943647,-0.040751703,0.015422539,-0.04332009,-0.018149918,0.035101257,0.022491712,0.013771434,0.037718564,0.053471323,0.0031432137,0.03003787,0.04094739,0.016694501,0.0039045562,-0.009240069,-0.04581509,0.03607969,0.008188255,0.023396762,0.03456312,0.007485007,-0.047992103,0.01642543,0.012230403,-0.018480139,-0.0034764921,-0.017954232,-0.025952915,0.041143075,-0.018296683,0.02700473,0.02668674,0.054841127,0.0027319663,0.019311806,-0.0007842746,0.0040238025,-0.014175037,0.0036966393,0.020816145,0.028301153,-0.006280312,-0.02336007,0.0073565873,-0.0071119796,-0.01914058,-0.030111253,0.03940636,-0.0060081854,0.0004360903,-0.0061152014,-0.012976457,-0.011906298,-0.009772092,0.012915306,-0.0327041,-0.012450551,0.025219092,0.06036927,0.017966462,-0.023837056,-0.062032606,0.002588259,-0.018370066,0.044249598,0.017990923,0.009496908,0.009955549,-0.04038479,-0.0029536423,0.019544184,0.050829556,-0.046035238,-0.027420564,0.0063536945,0.05058495,0.035908464,0.009374604,0.0073504723,-0.020718303,0.04669568,0.013318909,-0.001157302,0.051954754,-0.025610464,-0.04887269,0.07812782,-0.019960018,-0.0015379732,0.015031165,-0.024901101,-0.030820616,0.041461065,0.002358939,-0.020693842,-0.014297341,-0.020767225,-0.00060043635,0.016547736,0.02154997,0.046279848,0.025414778,0.003669121,-0.011569962,0.007668463,-0.017709624,0.005256016,-0.050536025,-0.01547146,-0.016511044,0.010530377,0.009490793,0.024032742,-0.0069285235,0.0011802339,0.06809889,0.0118268,0.035248023,0.024791026,0.06516359,-0.011105206,-0.015202391,0.024717646,0.0072342837,-0.021366514,0.007760191,-0.012841923,-0.028178848,-0.024008282,0.023298917,0.0033511305,0.05547711,0.013257757,0.011417082,-0.017783007,-0.051710144,0.010597644,-0.01303761,0.008371711,0.019568644,0.019886635,0.015361386,-0.02060823,-0.0085673975,-0.02940189,-0.0013369359,0.04708705,0.022063648,-0.024778796,-0.029010516,0.010634336,0.012866384,0.009258416,0.01394266,-0.047429502,-0.0047056475,-0.031383216,0.025830612,-0.0036293722,0.023543525,0.0016251148,-0.006050992,0.01786862,-0.044029452,0.043833766,-0.039186213,0.02729826,-0.016339818,0.008292213,0.015728299,-0.00048271872,0.003592681,0.0042867563,0.035150178,0.030282479,-0.012334362,0.004540537,0.008383942,0.037351653,0.042659648,0.00985159,-0.010732179,0.03549263,0.015116778,-0.0115210395,-0.0037700217,-0.031065224,0.0009883695,-0.04823671,0.025390318,0.033437923,0.0035804505,0.04128984,0.013490135,0.03649552,-0.011044054,0.02759179,-0.048138868,0.030184636,-0.03725381,0.03488111,0.0090260375,-0.021024063,0.031578902,0.012585085,-0.04097185,0.037400573,-0.017134795,-0.025316935,0.010878944,0.037473954,-0.054498676,-0.07255075,0.0056198705,-0.016657809,0.008090411,-0.003638545,-0.019825483,0.038696997,-0.04160783,-0.015691608,0.010836137,-0.043931607,-0.0126584675,-0.018137688,0.015679376,0.008714163,-0.04278195,0.03336454,-0.059684366,0.009857705,-0.031211989,-0.0048891036,-0.00027575737,0.022296024,0.034758806,-0.04642661,-0.003953478,0.037107043,0.028252231,-0.0098148985,0.04246396,0.004143049,0.03304655,0.028423456,0.040262487,-0.042219352,0.041314304,-0.02460757,0.0382567,-0.002588259,0.019984478,0.026588896,0.035076797,-0.00011322678,-0.027445026,-0.017098105,-0.043784842,-0.003086648,-0.04762519,0.046866905,0.00938072,0.036568906,0.01228544,0.0037027546,0.020204626,0.03607969,0.06888163,0.042023666,0.03583508,-0.03485665,-0.0064087315,-0.048114408,0.022577325,0.016890187,-0.011618883,0.0048891036,-0.03123645,0.017208178,-0.05621093,0.018480139,0.03216596,-0.018700287,-0.032288264,-0.042023666,0.018736977,0.043589156,-0.0060295886,0.00057368237,-0.03850131,0.0026616415,0.01784416,-0.058510248,-0.05249289,-0.0048768735,-0.013539056,-0.01971541,0.0045069037,-0.03493003,0.004467155,-0.016657809,0.004879931,0.014016042,0.06447869,0.015569303,-0.012964227,-0.000022908118,0.009038268,0.037718564,-0.019189503,-0.0048554703,0.007894726,0.0031676744,-0.030404782,0.01700026,0.022308255,-0.0010235319,-0.050536025,-0.0039045562,0.017416093,0.010817791,-0.092608616,0.006708376,0.011086861,-0.0024093895,-0.018859282,0.007858034,-0.0033205545,-0.018688057,0.03387822,0.026466593,0.0042011435,0.013918199,-0.030478165,-0.0014607687,-0.013698052,-0.013392292,-0.0019110005,-0.023396762,-0.035590474,-0.0024674837,0.016706731,0.024791026,-0.01047534,-0.018688057,-0.017024722,-0.018871512,-0.036275376,0.0024093895,0.028032085,-0.02974434,-0.051123086,-0.0016877956,0.034049444,-0.012083638,-0.008977116,-0.0011901711,-0.004188913,-0.025610464,0.031114146,0.007680693,-0.010218502,0.003837289,-0.038672537,0.01640097,-0.023262227,-0.020877298,-0.029230664,-0.014737636,0.020803915,-0.05034034,0.005246843,-0.0012711976,0.008805891,-0.018969355,0.012523933,-0.009032153,0.011429312,-0.011441542,0.0014424232,-0.021207519,0.013612439,0.001474528,-0.017636241,-0.013869277,0.02551262,-0.01168615,0.00005518014,-0.002826752,0.0026127198,-0.016755652,0.009625328,0.040825088,-0.023152154,-0.027469486,-0.006910178,-0.017795237,-0.011808454,0.04821225,0.006194699,0.013294448,0.020363621,0.0112947775,-0.012236519,0.008995461,0.006763413,-0.011092976,0.012303785,-0.0037853098,-0.034049444,0.019054968,-0.022124799,-0.010334691,-0.048285633,0.004500788,-0.036935817,-0.036960278,-0.035884004,0.047527347,-0.00044984953,0.02245502,-0.02551262,0.04857916,-0.0224061,0.025952915,-0.037694104,-0.0031370984,-0.0035743352,0.0024843006,0.005121481,-0.022809703,-0.022895316,-0.03855023,-0.01698803,-0.015544843,0.007637887,0.041705675,-0.013257757,0.0143584935,0.019262886,-0.021060754,-0.015581533,-0.01879813,-0.010065622,-0.0024445518,0.01701249,0.017990923,-0.022821933,-0.05068279,0.0060571074,0.0049074492,0.019262886,0.003286921,0.017599551,-0.026197523,0.020143474,0.0011198462,0.0057482896,-0.010964557,-0.01138039,0.02058377,0.030576007,-0.009668134,0.031187529,-0.016290898,0.012371053,0.0020791686,0.008420632,0.053813774,0.024093894,-0.0090260375,-0.044053912,0.034049444,-0.01638874,0.007619541,-0.031578902,-0.009411295,0.018333374,0.015312465,0.004182798,0.0151534695,-0.06731614,0.0040941276,0.032239344,-0.007485007,-0.01790531,0.01212033,0.0024720703,0.005561776,0.022528403,-0.02702919,-0.023445683,-0.02274855,0.03999342,-0.04853024,0.020754995,-0.0030881767,-0.010738294,-0.017685164,-0.02517017,0.044225138,-0.014970014,-0.0066655697,0.021317592,-0.004421291,0.0045466525,-0.044494208,-0.008708047,-0.008279983,0.016559966,-0.0061702384,-0.00326246,-0.009117765,-0.0022580381,0.032924246,0.017220408,-0.006671685,0.006402616,0.008438978,0.009307337,-0.03453866,-0.032997627,0.0043081595,0.041020773,0.00052476075,-0.025977377,-0.0069529843,0.00091269385,-0.016449893,-0.007344357,-0.027518407,0.0375718,-0.008396172,0.008928195,-0.040556017,0.000351433,0.019947788,-0.030306939,0.0009769035,0.018039845,-0.011349814,0.05391162,0.008812006,0.043589156,0.012413859,0.03607969,-0.0060571074,-0.005729944,-0.049875583,0.0065310355,-0.0025148767,0.029842183,-0.007399394,-0.0061029713,0.028178848,0.02243056,0.03488111,-0.012175366,-0.02700473,0.005601525,-0.010591529,-0.008701932,0.0010999719,0.031725667,-0.009509139,0.012854154,-0.030869538,-0.011435427,0.0061794114,-0.018455679,-0.013392292,-0.0034092248,-0.024815489,-0.012071408,-0.025414778,0.046915825,-0.06756075,-0.02332338,0.010096198,-0.05215044,0.0017520053,0.03793871,-0.0070875185,-0.021733427,0.018480139,0.016474353,0.047747493,-0.0060387617,-0.049606517,0.012273209,-0.028765908,0.010187926,-0.0003997813,0.039871115,-0.004237835,-0.00066617475,-0.0067389524,0.030258017,0.0028970768,0.03549263,-0.010823906,-0.026466593,0.006188584,0.017440556,-0.013575748,0.02759179,0.0022075877,0.03206812,0.010505917,-0.007246514,-0.021598892,-0.012939767,-0.01971541,-0.03006233,0.016339818,0.00018345605,-0.0048738155,0.001041113,-0.04094739,0.010885059,0.0049686013,-0.025855072,-0.020180166,-0.02152551,-0.01031023,0.018272223,0.0100472765,-0.015495921,0.017611781,0.019067198,0.028668065,0.044714354,0.014725406,0.002702919,0.00866524,-0.0123160165,0.034391895,-0.04150999,0.028007623,0.037009202,-0.030184636,-0.0036171419,-0.028178848,-0.0045466525,0.002588259,-0.0069957906,-0.03238611,-0.034391895,0.014223959,0.005399723,0.06281535,0.007974223,0.02427735,-0.027371643,0.026662279,-0.01304984,-0.0010564011,-0.018382296,0.00019950845,0.004008515,0.025047867,0.00651269,0.030429244,0.046524454,0.0021938286,-0.034489736,-0.011502694,-0.040776163,-0.033168852,0.062032606,0.024950022,0.017624011,-0.018345606,0.004372369,-0.0020164878,-0.020534847,0.0026004894,0.0046536685,0.015862834,-0.005332456,0.010102313,-0.017379403,-0.035174638,0.008854812,-0.004069667,-0.017416093,-0.023470143,0.0070630577,0.017807467,-0.0006122846,0.024008282,-0.03642214,-0.004097185,-0.051661223,0.013820356,0.023837056,0.017159255,0.029891105,-0.00062948355,-0.00087600265,-0.0124260895,-0.05855917,-0.02151328,0.019006047,0.004467155,-0.023519065,0.02370252,-0.00864078,0.027200418,-0.023763673,-0.0033511305,-0.000046102887,-0.0018055133,-0.019801022,-0.02276078,0.025023405,0.020767225,-0.029670957,0.008708047,0.022834163,0.013893738,0.015508152,0.05004681,0.02395936,0.0020699957,0.009967779,-0.0065310355,0.014211728,0.00092263106,-0.015960677,-0.035370328,0.0026555264,-0.0038800954,-0.018492369,0.021085216,0.002580615,0.030527087,-0.010885059,-0.0043754266,-0.011600537,0.010298,-0.0005492215,-0.0022182893,-0.047992103,0.029988948,0.01607075,0.0041002426,-0.015067857,-0.0032074233,-0.018529061,-0.019874405,-0.013685822,0.036275376,0.003424513,0.057091523,0.018749207,-0.04148553,-0.01093398,0.04014018,0.0009379191,0.021916883,-0.05283534,-0.012536163,0.026344288,-0.011545501,0.0054578176,-0.051220927,0.01455418,0.006127432,-0.006671685,0.03126091,0.042879794,0.029450811,-0.01334337,-0.037351653,-0.004305102,0.0040482637,-0.0018039845,0.0066839154,-0.047576267,-0.0007858034,-0.014774327,0.024375193,-0.007485007,-0.02243056,-0.0042561805,-0.0055770637,-0.024656493,0.028447919,-0.0020409485,0.02241833,0.010389728,-0.005307995,0.06398947,-0.013587978,0.015887294,-0.036568906,0.00272738,0.024460806,-0.025414778,-0.009869935,0.0019293461,0.015532612,-0.010236847,-0.0042256042,-0.067218296,0.010897289,-0.012432205,0.029670957,0.026711201,-0.008940425,-0.028765908,-0.014162807,0.020094553,-0.0008859398,0.031921353,0.018883742,0.020082323,0.0036354873,0.010866714,0.021072986,-0.033266697,-0.012536163,-0.029573115,-0.0051520574,0.024460806,0.059977897,-0.0034061673,-0.0066655697,-0.00013262343,-0.018712517,0.0059317457,-0.016523276,0.023433452,-0.018064305,-0.016511044,0.016706731,0.015275774,-0.0029903336,0.0035712777,-0.018113228,-0.023152154,-0.0065554962,-0.01139262,0.041387685,-0.0068123345,0.0036752361,0.028765908,-0.031676743,-0.0064454223,0.0053263404,-0.0019431054,0.010860598,-0.029817723,-0.02639321,-0.017147025,0.007870264,-0.029230664,0.008163794,-0.018284453,-0.0026861024,-0.04004234,0.02883929,-0.021953573,-0.009074959,0.040776163,0.0074116243,-0.030722773,0.016009597,0.0101573495,0.0327041,0.0077785365,-0.0064759986,0.0068979473,-0.016767884,-0.009160572,0.0046261502,-0.0038097706,0.02729826,-0.039528664,0.0060448768,-0.007368818,-0.012670698,0.008787544,0.002099043,0.035394788,0.01915281,0.011184704,0.020791685,-0.00015794419,0.017697394,0.0042011435,0.017036952,0.016657809,-0.029181741,-0.0048982766,-0.021770118,-0.016780114,-0.009662018,0.011404851,-0.026735662,0.0008049134,0.010053392,-0.017379403,-0.031652283,-0.012634006,-0.0039320746,-0.0085673975,-0.0039106715,0.0064209616,0.0094785625,-0.022149261,-0.028398996,-0.01640097,-0.024424115,-0.021770118,-0.0021265612,0.025537081,0.003776137,-0.0043479083,-0.00025339867,-0.0022259334,-0.0017413037,0.0043173325,0.013624669,0.026466593,-0.03823224,-0.010450879,-6.419767e-7,0.077296145,0.0023558815,-0.0052865916,0.009655903,0.050144654,0.024203967,0.03187243,0.005635158,-0.011160243,0.02636875,-0.017758546,-0.009515254,0.0071731317,0.012303785,-0.017036952,-0.02788532,-0.021635583,0.021745658,0.056308776,-0.009301222,0.0037088697,-0.021965804,0.004580286,0.0005943212,0.01695134,-0.026344288,0.007613426,-0.010689372,0.015226852,0.008977116,0.0090260375,0.018125458,0.0067572976,-0.006228333,-0.05489005,-0.013074301,0.02154997,0.014908861,0.022393867,-0.00066617475,0.031211989,-0.020730533,0.029548654,0.0050236383,0.0066044177,0.015716068,-0.025659386,-0.052590735,-0.0013919728,0.0021861845,-0.03468542,0.04158337,0.016621118,0.0015188633,0.000029572733,0.010536493,-0.0033878216,0.013086531,-0.010035045,0.013245527,-0.021953573,0.037669644,0.008915964,0.0044763274,0.0040574363,0.022932006,-0.041974746,-0.008065951,0.0072954353,0.026857965,0.003898441,0.030869538,-0.008359481,0.012780772,0.021647813,0.012597315,0.011796224,-0.018394526,0.0032227112,-0.0128786145,0.019079428,-0.016633349,0.016755652,0.0058155567,-0.03610415,0.044322982,0.0008339606,-0.02364137,0.002030247,0.009313452,0.020216856,0.025011174,-0.010444764,0.03422067,0.0062589087,0.0073260115,-0.0011710611,-0.007815228,-0.00022377816,-0.0151534695,-0.008261638,-0.008243292,-0.012890845,-0.02331115,0.0022794413,0.008542936,0.0037547338,0.008145449,0.012377168,0.02883929,-0.0068367952,-0.033437923,-0.0037394457,-0.0023558815,-0.038868222,-0.018895973,-0.023262227,0.002259567,0.049924508,-0.035321403,0.053226713,0.06643555,-0.0045772283,0.030893998,-0.009411295,-0.0039443052,0.016572196,-0.0073565873,0.00052208535,0.028007623,-0.01734271,0.004479385,0.018969355,-0.018321143,-0.02425289,0.014211728,-0.0006256616,-0.028912673,0.0118268,-0.005522027,-0.023947129,0.017501706,0.02152551,-0.02093845,-0.00364466,-0.0032135386,-0.020131243,0.00122992,0.009386835,0.0052346126,-0.033535767,0.03610415,0.0027701864,-0.008432863,-0.013575748,-0.016266435,-0.009013807,0.010664912,-0.004213374,-0.017049182,0.018847052,-0.018529061,-0.018370066,0.019849945,0.04094739,-0.021329824,0.0081148725,-0.0010434063,0.018003153,0.020889528,0.0007193006,0.01168615,-0.0218435,-0.013123223,0.026491053,-0.037498415,-0.004069667,0.015349156,-0.033266697,-0.025659386,-0.018675826,-0.0049441406,-0.010059507,-0.015544843,0.031114146,-0.022907546,0.024803258,-0.028594682,0.038770378,0.02883929,-0.010750525,-0.01603406,0.0031202817,-0.038109936,0.018516831,-0.03727827,0.04195028,-0.019213963,0.007833573,-0.018431218,-0.015508152,-0.061103094,0.005231555,0.005953149,0.002106687,-0.00036538328,-0.014113885,0.0055709486,0.013086531,-0.0063475794,-0.0030851192,-0.004188913,0.023103232,0.045766167,0.015459229,0.016890187,0.030453704,-0.032312725,-0.04195028,0.027493946,-0.020693842,0.01876144,-0.013869277,-0.051612303,-0.0094785625,-0.010450879,-0.017550629,-0.006573842,0.01784416,0.017538399,0.0044396366,0.014786557,-0.032581795,0.015960677,-0.026026297,-0.010732179,-0.036568906,0.0021571373,-0.03485665,0.01090952,-0.0028145215,0.010652681,-0.020106783,0.013013149,-0.021916883,0.015141239,-0.031016303,-0.034416355,-0.0224061,-0.009503024,0.02150105,0.009178918,0.00454971,0.009081074,-0.0015761933,-0.006255851,0.015177931,-0.036593366,0.0077724215,0.034832187,-0.010450879,-0.0005729179,0.042512883,-0.023592448,0.026270906,0.017085873,0.013477905,0.008090411,0.015667146,-0.019947788,-0.023249997,0.003445916,-0.03336454,0.015361386,-0.00958252,-0.020131243,0.016743422,0.020498157,0.012169251,-0.029279586,-0.028032085,-0.004910507,0.0200334,0.0068062195,-0.027371643,0.00985159,-0.05586848,0.013123223,-0.022222642,-0.027469486,0.031432137,0.0069590993,-0.0033266696,-0.024301812,0.050829556,-0.0003439801,0.018626904,-0.02274855,-0.010579299,-0.0060571074,-0.029768802,-0.000339967,0.023996051,-0.029352969,-0.012328247,0.0020868126,0.038868222,0.030527087,0.008035375,-0.009081074,0.0074544307,0.0050572716,-0.018700287,-0.025708308,-0.0074544307,0.013074301,0.026295368,0.016645579,0.0069529843,-0.0028817886,0.030478165,0.02063269,-0.015018935,-0.005109251,0.04791872,0.0042347773,-0.0233723,-0.0022993158,0.004479385,-0.00545476,-0.005546488,0.005100078,0.008163794,0.00061610655,-0.017978692,0.032288264,-0.0050358684,-0.035370328,0.008377826,-0.013881507,-0.04334455,0.012964227,0.02695581,-0.021403207,0.0014393656,0.02241833,-0.025390318,0.021427667,0.017526168,-0.005026696,0.025023405,0.010096198,0.0007135676,-0.013282218,-0.011435427,0.0151534695,0.06756075,-0.030380322,0.02641767,-0.024387425,-0.027102573,0.01168615,0.004188913,-0.016926877,0.032973167,0.033511303,0.0121081,0.0016786228,0.0031294543,0.031187529,-0.046059698,0.008750853,-0.012915306,-0.04916622,0.028032085,-0.013306678,0.0019171158,0.022711858,0.009655903,-0.024901101,-0.0061366046,0.013759203,-0.015398078,-0.0038709226,0.008867042,-0.0048004333,-0.01700026,-0.023139924,-0.01791754]},{"id":"guide-moderation-1","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Ban a member\nguild.ban(userId, options) bans a user. Pass reason for the audit log. Requires BanMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.003350959,0.017954215,0.0044638235,-0.0052953805,-0.050845545,0.03341067,-0.07117387,0.035488013,0.027005514,-0.014603256,0.02407497,-0.013502757,0.024594307,0.02361746,0.001006215,-0.005267559,-0.013972633,0.016581682,-0.028662445,0.046468277,0.03516652,0.09837723,0.020476708,0.052230444,-0.012797942,-0.0013338919,-0.017731642,0.01607471,-0.007913703,-0.045479067,0.043006033,-0.0056137834,-0.01715048,-0.014640352,-0.027104435,-0.011988024,0.027376467,-0.008834908,0.018943427,-0.002984641,-0.021713223,-0.045503795,0.013997363,-0.0023849306,-0.010943168,0.04884239,-0.025126008,0.01750907,-0.0030696513,0.0105598485,-0.0202665,0.028068917,0.008884368,0.05796788,-0.012334249,-0.01147487,-0.011697443,0.032965522,-0.004235068,0.03128386,-0.011023542,-0.013910807,-0.027178627,-0.00079098396,-0.01073296,-0.012198232,-0.04367375,0.013057611,0.019227827,0.0053262934,0.033930004,-0.0008369669,0.015592469,0.0048780562,-0.0057467087,-0.0047327657,0.048669275,-0.040087853,-0.024198622,-0.022640612,0.041917898,0.04889185,-0.041027606,0.04055773,0.00043046218,0.008865821,-0.06607942,-0.006460797,0.022269657,-0.051389612,-0.010498023,0.038307272,-0.040310428,0.008346484,0.06345801,-0.035834238,-0.029255973,-0.030541949,0.010980263,0.04068138,0.049336996,-0.035092328,-0.009731382,-0.03224834,0.0443662,-0.003533345,-0.015926328,0.04258562,-0.046270434,0.030492488,-0.026337795,0.044662964,0.0064978926,0.039370675,-0.041052338,0.0047327657,0.032396723,0.009972503,0.02829149,-0.044564042,-0.03061614,-0.025645345,0.033262286,-0.05198314,-0.001516278,-0.0042845285,-0.035710588,-0.01865903,-0.023654554,0.020451978,0.041720055,-0.015654296,0.03820835,-0.034919217,-0.043352257,0.023864763,0.025843188,0.0011182743,-0.019128906,0.02067455,0.014009728,0.014380683,0.04451458,0.028934479,-0.06607942,-0.020229405,-0.057127047,0.039296485,-0.019623512,0.00991686,-0.0613312,-0.03880188,0.0052304636,-0.013626408,0.013651138,-0.0018872328,-0.027129166,0.010188893,-0.052131522,-0.06286448,-0.0003182097,-0.05801734,0.038035236,-0.0358837,0.0031902117,-0.012884499,-0.0029660931,0.041818976,-0.024285179,-0.02977531,0.01530807,-0.0306656,-0.022665342,-0.023926588,0.014454874,-0.011320306,-0.05574215,-0.04211574,-0.0015765581,-0.013811885,-0.037342787,-0.0014467239,-0.021651398,-0.01490002,-0.048817657,0.02455721,0.015988154,-0.009236776,-0.012933959,-0.047605872,-0.00014625667,0.026857132,0.011524331,0.0065597184,0.059253857,-0.015790312,0.042264123,-0.016940271,0.03125913,-0.024210988,-0.019042348,0.011277027,-0.009991051,-0.044168357,-0.011437775,0.0051686377,0.01804077,0.006269137,0.006429884,0.016087076,-0.007882791,-0.022269657,0.021280443,0.03059141,-0.005196459,-0.004760587,-0.04743276,-0.008290841,-0.005619966,-0.0009668011,-0.060787134,-0.003585897,0.014294127,0.01564193,0.004160877,0.0023694742,0.05737435,0.0175338,-0.012470266,0.054654013,-0.01712575,-0.0252002,-0.0411018,-0.0085257795,0.05336804,0.00467094,0.0046029314,0.030492488,-0.02754958,-0.057621654,0.002958365,-0.0125135435,0.0063680583,-0.037021294,0.009651009,-0.0060403817,0.041175988,-0.029429086,0.0074932883,0.04810048,0.045281224,0.029181782,0.013552218,-0.032965522,-0.026906593,-0.009514992,-0.007363454,0.057671115,0.033089172,-0.03447407,-0.0031299316,0.0029073586,-0.012736117,-0.0076293047,-0.031135477,0.016173631,0.014776369,0.005471584,0.010838064,-0.0029104499,-0.01638384,-0.006142394,-0.0017094836,-0.013688234,0.019994467,0.03838146,0.06642565,0.032001037,-0.053763725,-0.063062325,-0.016062345,0.043055493,0.06622781,0.027079705,0.006386606,0.03346013,-0.02757431,0.0066957353,0.012655743,0.076614544,-0.025113644,-0.016569316,-0.004717309,0.024952896,0.032792408,0.0011947837,0.05425833,-0.03155589,0.036576148,0.009218228,0.01334201,0.0175338,-0.023567999,-0.094271995,0.04058246,0.009539722,-0.0022319118,0.0018764134,-0.034350418,-0.015815042,0.030269915,-0.009885947,-0.049559567,-0.010201259,-0.020130483,-0.023172313,0.0003755918,0.037293326,0.009137855,0.067414865,0.05119177,-0.017434878,0.005555049,-0.01166653,-0.0012797943,-0.015444087,0.030121533,-0.04125018,0.03373216,0.011623252,0.013700599,0.0017465791,-0.020921854,0.035042867,0.03736752,0.027846344,0.0051593636,0.0342515,-0.026238874,-0.0019583325,0.0010116248,-0.009298602,-0.026486177,-0.02057563,-0.014937116,-0.008420675,0.0041021425,0.03353432,-0.02479215,-0.0019289652,-0.00819192,0.0366998,-0.007950799,-0.052922893,-0.003406602,-0.013614043,0.018621933,-0.024470655,0.015901597,0.021255713,-0.0082351975,0.0028980847,-0.01870849,-0.022999201,0.07028358,0.01715048,-0.04446512,-0.03672453,0.028835557,0.013045246,0.0031252946,-0.023555633,-0.051043388,-0.025150739,-0.021849241,0.042437237,0.011963294,0.0023540177,0.0066339094,0.026337795,0.019747164,-0.013069976,0.02972585,-0.025892649,0.00524592,0.0016770251,0.022962105,0.011895286,-0.01166653,-0.014467239,0.030962365,0.04488554,-0.004596749,-0.0007886655,-0.009923043,-0.005721979,0.047581144,0.038777146,-0.0032489463,0.006627727,0.049089693,0.022887915,0.013156532,-0.007623122,-0.007375819,0.052972354,-0.003044921,0.017212305,0.021478286,0.005499406,0.011394497,0.020031562,0.030220455,-0.006460797,0.050895005,-0.05727543,0.02594211,0.0034560626,0.051587455,0.005567414,-0.044687696,0.021626668,0.028439872,-0.053219657,0.0328666,0.00864943,0.0003630334,0.011889103,0.07468557,-0.045602717,-0.09684395,0.01224151,0.00087328954,-0.061578505,-0.022430403,-0.029206512,0.0041330555,0.005691066,-0.05420887,0.0050078905,-0.036872912,-0.0034560626,-0.0153451655,0.02170086,0.03353432,-0.022727167,0.05519808,-0.011511966,0.023444347,-0.0018578656,-0.033979464,-0.03843092,0.01379952,0.011413044,-0.062369876,-0.018609568,-0.00093125127,0.014937116,-0.015493548,0.033831082,-0.016804256,0.02215837,0.015221514,0.012439352,-0.008940012,0.004068138,-0.038826607,0.025088914,-0.029453816,0.007932251,-0.002749703,0.029503277,0.020464342,-0.0037991959,-0.024087336,-0.026115222,-0.008488684,-0.058215182,0.040285695,0.0062444066,0.047754254,0.041744787,-0.017867658,-0.0015680571,0.029206512,0.026510907,0.03350959,0.02170086,-0.035562206,0.026387256,-0.031877387,0.025150739,0.007882791,-0.012185867,0.04498446,-0.014553796,0.04303076,-0.046789773,0.044959728,0.02824203,0.00044707788,-0.045602717,-0.060737673,-0.0012102402,-0.051537994,-0.004729674,-0.0070852377,-0.019672973,0.015493548,0.05514862,-0.05519808,-0.037812665,-0.036056813,-0.026486177,-0.015629565,0.041596405,-0.03214942,0.013255454,-0.018176788,0.009193498,0.019203097,0.03885134,-0.006534988,-0.032693487,0.0026044121,-0.0048131393,0.009020385,-0.033435397,0.0037713742,0.019660607,0.0058827256,-0.006640092,0.02455721,0.014726908,-0.023098122,-0.043253336,-0.03219888,-0.014702178,0.026436716,-0.027376467,0.017311227,-0.006117664,-0.017496703,-0.017434878,-0.0025286756,-0.031679545,-0.012192049,0.04441566,0.0038177436,0.0032273072,-0.008247563,-0.033806354,-0.009867399,-0.050078906,-0.020229405,-0.0039692167,0.004500919,-0.023209408,-0.019388573,-0.024470655,0.027351737,0.005511771,0.016940271,-0.005428306,-0.031184938,-0.05042513,0.021688493,0.0013539852,-0.017768737,-0.00008336824,0.011592339,0.008365032,-0.008297023,0.017051559,0.04814994,-0.0072645326,-0.0031268403,0.037342787,-0.03538909,-0.0057652565,0.0069121253,-0.03150643,-0.012278605,-0.014590891,-0.0034653365,-0.051537994,-0.03373216,-0.0037744655,-0.060144145,0.002483852,-0.009446983,-0.0115737915,-0.034746103,0.0065720836,0.04508338,0.0049306084,-0.0031685727,-0.0045163753,-0.03667507,0.031358052,0.026164683,-0.034696642,-0.0029954605,0.024470655,0.0054035755,-0.017484339,0.011048272,0.0009436164,-0.00840831,-0.007950799,0.0033385938,0.013527487,-0.016161267,-0.019029984,-0.026313065,-0.025670076,0.029280704,-0.05732489,0.008940012,0.032273073,0.044440392,-0.009001838,0.029107591,0.019536955,-0.0071285157,0.039321214,-0.0027512484,-0.03677399,0.017904755,-0.026214143,-0.0164333,-0.05509916,0.012618648,-0.049510106,-0.028662445,-0.017447243,-0.0072088894,-0.006003286,0.0018980523,-0.041695327,0.04718546,-0.010739143,0.01379952,-0.016136536,-0.024173891,-0.005830174,-0.018288074,-0.02064982,-0.04035989,-0.02675821,-0.031234398,-0.0057745306,-0.019574052,-0.012847403,0.025595885,-0.011852007,0.007654035,0.037268598,-0.000013174211,-0.009787026,-0.0043278066,0.026164683,0.010720596,0.025311487,0.0018207701,-0.028563524,-0.02759904,0.016322013,-0.004865691,-0.00063178246,0.011950929,-0.005394302,-0.0061856722,0.01073296,0.03501814,0.00031647086,-0.026931323,-0.025113644,-0.0031809378,0.0064237015,0.019029984,0.010677317,0.024433559,-0.010547483,0.0058208997,0.017867658,0.03501814,0.012130224,0.0010525844,-0.0018269527,0.01873322,-0.0012836583,0.025843188,-0.035537474,-0.0069059427,-0.009348062,0.025447503,0.014096284,-0.027005514,-0.06998681,-0.009743747,0.03521598,-0.036477227,-0.015011307,0.010164163,0.02110733,0.0136016775,0.017855294,-0.034770835,-0.008538145,-0.04597367,0.009088394,-0.056978665,0.015728487,-0.020637454,-0.011821095,-0.0049893428,-0.0481994,0.014677447,-0.013552218,-0.016878447,0.014788734,-0.013972633,-0.0022102727,-0.0070419596,-0.013428566,-0.02098368,0.028415142,0.018411726,-0.02524966,-0.0336827,0.0005707295,0.028637715,0.026214143,-0.003032556,0.016532222,0.010083789,-0.014825829,-0.014924751,-0.023073392,-0.018337535,0.02254169,-0.0041175988,-0.030912904,-0.010021963,-0.00040843675,-0.009885947,-0.009793208,0.0024328455,0.0036446315,-0.009193498,0.0089647425,-0.05598945,-0.014788734,0.0035178885,-0.044910267,0.001450588,0.018164422,-0.020402517,0.06405154,-0.039148103,0.021255713,0.005032621,0.03964271,-0.008513414,0.004426728,-0.033212826,-0.0051871855,-0.0019011436,-0.022047084,0.00764167,-0.01832517,0.0046678483,0.029478546,0.047877908,-0.020105753,-0.00467094,-0.015011307,0.028934479,0.007981712,0.02034069,0.06509021,-0.017706912,-0.00091656763,-0.004139238,-0.009991051,-0.014022093,-0.036477227,-0.069937356,-0.011969477,-0.01379952,-0.004157786,0.0029568193,0.03346013,-0.025768997,-0.012631013,-0.013787155,-0.064002074,0.037219137,0.04649301,-0.015159688,-0.016420934,0.013069976,0.028934479,0.03907391,-0.018720854,-0.047135998,0.0016028341,-0.015530643,-0.0022009988,-0.012426987,0.009997234,0.010695865,-0.008581422,-0.006355693,0.0055210446,-0.00021967482,-0.013193628,-0.023345426,-0.04429201,0.01609944,0.012136406,-0.0035055233,0.033262286,0.02831622,0.013638773,-0.026832402,-0.009626279,-0.03828254,-0.027895804,-0.0024081152,-0.019054715,0.009014203,0.01298342,0.0043370803,0.008315572,-0.05875925,-0.013193628,-0.023172313,-0.01875795,-0.02371638,-0.010164163,-0.00457511,0.029626928,0.0052768327,-0.020204674,-0.0077220434,-0.020810567,0.040829763,0.018597204,-0.0010904527,-0.0045287404,-0.016136536,-0.0172494,0.0026863313,-0.044168357,-0.0017218487,0.027747422,0.0009969411,0.009836487,-0.009842669,-0.0011213656,-0.0048811478,-0.031803194,-0.014232301,-0.019648243,-0.0038517478,-0.0041454206,0.020921854,-0.0034962494,0.037738472,-0.014504335,0.0059136385,-0.021305174,0.008303206,-0.019734798,-0.028761366,0.0048626,0.030517219,0.0058394475,0.04451458,0.012896864,-0.009298602,-0.008828726,0.00742528,-0.01760799,-0.008841091,0.034028925,0.035488013,-0.00012403802,-0.02034069,-0.001638384,-0.019178366,-0.017026829,0.014479605,-0.0034220584,-0.01207458,-0.023938954,0.0072954455,-0.0028378046,-0.014739273,-0.010170345,-0.046888694,0.020563263,-0.011048272,0.009935408,-0.029206512,0.01633438,0.0036477228,-0.033707432,0.001463726,-0.02225729,0.03895026,0.013984998,0.014764003,0.0023308329,-0.0017203031,-0.021119697,-0.0060929335,-0.032569837,-0.0031299316,0.014219936,0.05272505,-0.03825781,0.00042427963,-0.03355905,0.031630084,-0.022788994,-0.005499406,0.022170736,-0.008130094,0.020897124,-0.00033965553,0.023345426,-0.007932251,-0.016853716,0.014121015,0.0038332,0.0025147647,-0.011592339,0.052823972,0.00960773,0.025744267,0.021181522,-0.010423832,0.00065110304,-0.000731863,-0.0018223157,-0.0054746754,-0.0040464993,-0.01240844,-0.018238613,0.030987095,-0.0027373377,0.01490002,-0.04587475,0.033138633,0.0027976178,0.029107591,0.036897644,0.030170994,-0.053219657,0.008284658,0.0011491872,-0.03289133,-0.045429606,0.013255454,-0.022405673,0.015555373,0.010955533,0.011814912,0.003990856,0.033188093,0.01712575,-0.054307792,0.013725329,0.020451978,0.022034718,-0.012136406,-0.05440671,-0.0020186126,0.0336827,-0.0050851726,-0.004980069,-0.029206512,0.00027840934,-0.0030248277,0.031456973,0.025472233,0.05406049,-0.007289263,0.012532092,-0.021713223,0.0009992596,-0.007097603,0.00007650944,0.014121015,-0.014059189,-0.0048996955,-0.012736117,-0.0026152318,-0.0077220434,0.0076664,-0.00036284022,0.022628246,-0.021169158,0.012563004,-0.011709808,0.01825098,-0.0053139282,-0.00038409283,0.020118117,-0.00090111117,0.025744267,-0.041077066,-0.01180873,-0.00134162,-0.026214143,0.015258609,0.007215072,0.06667295,-0.038752418,0.0053232023,-0.03271822,0.0011801001,-0.03363324,0.015394626,0.03880188,-0.01947513,-0.029577468,-0.01993264,0.02371638,0.04879293,-0.0001197875,-0.0003999357,0.01799131,-0.00073881843,0.008470136,-0.006479345,-0.050622974,-0.0039444864,-0.029824771,-0.004395815,0.019252557,0.05955062,-0.001463726,0.009280054,0.0072027068,0.00084160385,0.022615882,-0.0411018,0.014232301,-0.016037615,-0.009910678,0.0074871057,0.02831622,-0.008222832,-0.006343328,0.001803768,-0.042832922,-0.002364837,-0.0001229754,0.0175338,-0.019623512,-0.0041454206,0.015369896,-0.010745325,0.0031685727,0.018114962,0.013094706,-0.025744267,-0.03838146,-0.012494996,-0.049881063,0.028860288,-0.023431981,0.025163105,0.008154824,-0.007468558,-0.038752418,0.03912337,-0.035834238,-0.013107072,0.013564583,-0.0005633877,-0.019771894,0.028192569,-0.003703366,0.02977531,-0.015320435,-0.016087076,-0.0046616658,0.0017651268,-0.009502627,0.015740851,0.015777946,0.05796788,-0.059253857,-0.009923043,-0.0025425863,-0.013515122,0.019289652,0.015060767,0.03514179,0.028019456,0.012637195,0.013527487,0.011753086,0.020513803,0.013935537,0.0069368556,-0.018201519,-0.023543268,0.013292549,-0.008674161,-0.0019799715,-0.014232301,0.0040928684,-0.019648243,-0.027945265,0.03650196,0.0143312225,0.0034344236,-0.007969347,-0.016903177,-0.018485917,-0.010949351,-0.015926328,-0.022764264,0.024730323,-0.009595365,0.0052088243,-0.05579161,-0.028538793,0.04429201,0.012167319,0.00859997,-0.0030742884,0.016346743,-0.014207571,0.026931323,-0.011814912,0.013737694,-0.0047234916,-0.029280704,0.009564453,0.0107020475,0.07824674,-0.0076478524,-0.021255713,0.038702957,0.015728487,0.009583,0.009372792,0.001537917,-0.0040712296,0.012124041,-0.0037157312,-0.009842669,0.005833265,0.009681921,-0.010535118,-0.018374631,-0.02412443,0.037070755,0.030195724,-0.008513414,0.027030244,0.0034777017,0.020229405,0.018288074,0.0047636786,-0.01911654,0.023901857,-0.005842539,0.010448562,0.005950734,0.024705593,0.027302276,0.0017960398,-0.015147323,-0.03660088,0.0027126074,0.040335156,0.013082341,0.018164422,-0.012426987,0.032371994,-0.0048904214,0.020278865,0.015172053,0.023419617,0.023431981,-0.0028857195,-0.023048662,-0.027500119,-0.00094979897,-0.046839233,0.017051559,0.04515757,-0.014219936,0.017311227,0.023963684,-0.0031252946,0.007140881,0.0017821289,0.0048255045,0.00035685085,0.05509916,0.0005637741,-0.00068124314,0.0005413622,-0.026436716,-0.05262613,-0.012773212,0.0021036232,0.011048272,0.020526169,-0.0007898247,0.024433559,0.0117159905,0.003820835,0.021972893,-0.002261279,-0.03731806,0.011351218,0.017781103,0.019079445,-0.02179978,0.02980004,0.015988154,-0.015913963,0.027920535,-0.003502432,-0.006473162,0.024359368,0.030813983,0.0008655613,-0.003224216,-0.0055705053,-0.00371264,-0.008389763,0.0021515382,-0.033287015,-0.018238613,0.017657451,-0.008754535,-0.003734279,-0.0022643702,0.019586416,0.0025410408,0.034993406,0.049262803,0.016965002,0.0071346983,0.02412443,0.006918308,-0.006757561,-0.019388573,-0.01449197,-0.017929485,-0.006534988,0.008989473,0.01710102,0.012797942,0.007561296,-0.0114315925,0.034820296,0.0689976,0.009589183,0.017039193,0.014590891,0.0121549545,0.016173631,-0.013515122,-0.0027218813,0.008334119,-0.021305174,0.017756373,0.010930803,-0.013020515,-0.010868977,0.025422772,-0.003660088,-0.024000779,-0.009984869,-0.0003211078,-0.0375159,0.004967704,0.043203875,0.0009822575,-0.030146264,0.014294127,0.0059414604,0.013045246,0.007561296,-0.0015471908,-0.022554055,0.017620355,-0.016804256,0.014380683,0.0044978275,0.03373216,0.009020385,0.007771504,-0.006173307,0.009694287,0.02977531,-0.0076478524,0.0017635812,0.004352537,0.04807575,-0.015209149,-0.0104114665,-0.013515122,0.00819192,0.007697313,-0.0040805032,-0.00039124145,-0.0015394626,0.0019830628,0.020056292,-0.05816572,-0.004701853,0.029503277,-0.025422772,0.0074314624,-0.027228085,-0.002582773,-0.009354245,-0.027648501,0.010949351,-0.031580623,0.022195466,-0.01732359,0.014244666,-0.009681921,-0.017088654,-0.008618518,0.020909488,-0.03160535,0.027425928,-0.007499471,0.047482222,-0.010689682,0.012216779,0.018560108,-0.03524071,-0.024755053,-0.009638644,0.011975659,-0.0036229924,-0.03061614,-0.004853326,0.023765841,-0.024235718,0.0028888108,0.01758326,-0.005286107,0.021898702,0.062221494,0.0023540177,-0.011852007,0.009317149,-0.013403836,-0.042091012,0.03355905,-0.0067699263,0.02220783,-0.016087076,-0.06266664,-0.009261507,0.010405283,-0.0042227027,-0.018003676,0.032693487,0.016915541,-0.012618648,-0.0031175665,-0.0077838693,-0.0065906313,-0.025546424,-0.029404355,-0.013082341,-0.010368188,-0.016989732,0.00821665,0.0019336022,0.012464083,-0.033855814,0.015592469,0.0066957353,0.00053092913,0.0011043635,-0.018065501,-0.030541949,0.019153636,0.015555373,0.003885752,0.0040805032,-0.016087076,-0.03820835,0.015592469,0.012896864,-0.020773472,0.0020077932,0.017175209,0.009119307,0.0021577207,0.0137500595,-0.011783999,0.03763955,-0.0024390281,0.019067079,0.010831881,0.006522623,-0.027475389,-0.030344106,-0.0044236365,-0.036328845,0.024878705,0.022121275,-0.010646405,-0.0034560626,0.009459348,0.0148381945,-0.03838146,-0.006448432,-0.00344988,0.01760799,0.0034467888,-0.031531163,-0.006868847,-0.053219657,-0.02596684,-0.014269397,0.012309519,0.0118643725,-0.0063371453,-0.0136016775,0.000620963,0.054802395,-0.0052799243,0.016643507,-0.01909181,-0.012797942,-0.0049429736,-0.028736636,-0.0037713742,0.017756373,-0.022652976,-0.016692968,0.0069677685,0.010442379,0.052230444,0.0065288055,0.015679026,0.009644826,-0.03363324,-0.025768997,-0.04132437,0.0114996005,0.0011584611,0.05440671,0.02670875,-0.005771439,-0.022380942,0.0566819,0.024705593,-0.0041670594,0.00073572714,0.03538909,-0.005493223,0.005122268,0.020996045,0.013836616,0.025496963,-0.011400679,0.0013918536,0.0005239737,-0.02596684,-0.016470395,0.010640222,-0.034919217,-0.04211574,0.0023370155,-0.0020804384,-0.038529843,0.034004197,-0.0016322014,-0.009651009,0.021972893,0.032396723,-0.0056385137,0.040137313,0.035611667,-0.006949221,0.020662185,-0.022319118,-0.016420934,-0.042091012,-0.035685856,0.03533963,0.044168357,-0.025150739,0.054604553,0.005938369,-0.027500119,-0.0013663503,-0.012686656,-0.0124455355,0.014652717,0.028761366,0.005555049,-0.0151967835,-0.015864503,0.019289652,-0.024000779,-0.022986835,-0.012581552,-0.04201682,0.004055773,0.00025734992,0.0052490113,0.013403836,-0.021849241,-0.04285765,-0.0153328,0.050078906,-0.017447243,0.001237289,0.018485917,0.011709808,0.00515009,-0.027302276,-0.042956572]},{"id":"guide-moderation-2","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Kick a member\nguild.kick(userId, options) kicks a user from the guild. Pass reason for the audit log. Requires KickMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.025103355,0.046243023,-0.007495435,0.0076987008,-0.01652807,0.042406376,-0.073836386,0.04626843,0.040805656,-0.0003995845,0.0375534,-0.029168677,0.012570734,0.030871028,0.0056056962,-0.02160972,-0.020085225,-0.0006494985,-0.04281291,0.049419053,0.033691347,0.094518706,0.020872882,0.021990843,-0.006396528,0.0014141281,-0.024938202,-0.015613372,-0.024646007,-0.051096,0.04352434,-0.0035635077,-0.00658709,-0.019246753,-0.037350133,-0.009451871,-0.002310563,0.016108833,0.012710479,-0.01258979,-0.012323003,-0.08176376,-0.0029664137,0.0043606916,-0.015105207,0.042685866,-0.0075716595,0.015117912,-0.014177806,0.015194136,-0.03887463,0.0323193,0.017938226,0.07866395,-0.0024518964,-0.014952757,-0.0038557025,0.024214067,-0.0051388196,0.022422785,-0.012748592,-0.025535295,0.010550777,-0.012234074,-0.0021374694,-0.014101581,-0.03259879,0.0062409025,0.01652807,0.019602468,0.035292067,0.02262605,-0.035851046,-0.009915571,0.0043130512,-0.0017595215,0.06667126,-0.029524392,0.010195062,-0.037578806,0.032395523,0.03130297,-0.03844269,0.018916445,0.014520817,-0.019475427,-0.059201233,-0.01659159,0.0317095,-0.048656806,-0.033538897,0.050384566,-0.04029749,0.009426462,0.067433506,-0.021749465,0.0021739937,-0.056558773,0.007114311,0.036333803,0.041542497,-0.053001616,-0.02145727,-0.023350185,0.0507911,0.025039835,-0.03580023,0.044439036,-0.0051324675,0.0016721807,-0.05823572,0.03989096,-0.009725009,0.034834716,-0.029143268,-0.0053611416,0.03902708,-0.0044909087,0.016680518,-0.037223093,-0.065959826,-0.025992643,0.022460897,-0.04713231,-0.017290317,-0.01572771,-0.033259403,0.012126089,-0.03610513,0.052645903,0.042965356,-0.02539555,0.035037983,-0.021190483,-0.037451766,0.027466323,0.0074509704,-0.02619591,-0.029676842,0.000059203216,-0.010296695,-0.0075335475,0.023769422,0.029575208,-0.042685866,-0.03364053,-0.046370063,0.049419053,-0.033538897,-0.0014697087,-0.040195856,-0.030769397,0.013440967,0.0023693198,-0.0047386396,0.0040494404,-0.016019905,-0.008244978,-0.038188607,-0.03961147,-0.028711326,-0.044896387,0.032522567,-0.019678693,-0.052442636,-0.031531643,-0.013999948,0.04931742,-0.020339308,0.0072350004,-0.004703703,-0.040678617,-0.010131542,-0.010982717,0.018675067,0.005729561,-0.032217667,-0.02751714,-0.029041635,-0.019754918,-0.037350133,-0.020339308,-0.007431914,0.012748592,-0.056965306,0.025700448,0.031023478,-0.025941828,-0.013707753,-0.018370168,-0.0082259225,0.014482705,-0.020047113,-0.013123363,0.03524125,-0.00938835,0.045582406,-0.016756743,0.030972661,-0.022092476,-0.010900141,0.010728635,0.0037699498,-0.074700266,0.015524443,0.04540455,-0.033843793,0.023528043,-0.010493609,0.0090262825,0.013034434,-0.023299368,0.035266656,0.023007175,-0.014304847,0.018497208,-0.025014427,0.010607946,-0.021139668,0.005122939,-0.072667606,-0.0060471646,0.03973851,-0.009858402,0.011560756,0.01563878,0.035774823,-0.005974116,0.011141519,0.015168727,-0.028685918,-0.020009,-0.013301221,-0.03902708,0.041745763,0.0036238523,0.011846598,0.01797634,-0.017849298,-0.057422653,0.014508113,-0.01018871,-0.01120504,-0.02385835,-0.012126089,-0.023121512,0.022651458,-0.021635128,-0.01058889,0.029676842,0.06717943,0.023312073,0.02604346,-0.0036333804,-0.00043670437,0.021317525,0.01711246,0.010353863,0.028685918,-0.009038987,0.009629728,0.0068475245,-0.024480853,-0.017646033,-0.0378583,0.013148772,0.008105233,-0.029753065,0.010029908,-0.023502635,-0.04189821,-0.014685971,0.000352341,-0.023528043,0.039382793,0.020631501,0.047970783,0.009331182,-0.03712146,-0.066264726,0.014368367,0.019081598,0.0427875,0.008365667,-0.005866131,0.010963662,-0.020402828,0.011471827,0.01745547,0.0695678,-0.058896333,-0.026526216,-0.0012608846,0.047081497,0.031125112,-0.012348412,0.0029664137,-0.032192256,0.04207607,-0.013263108,0.014076172,0.035901863,-0.055644076,-0.09416299,0.052899987,-0.017811187,0.026526216,0.014012652,-0.03143001,-0.042533416,0.022016251,0.002312151,-0.04060239,0.033411853,-0.01258979,-0.0070571424,0.025192283,0.039535243,0.03041368,0.03770585,0.035546146,-0.030007148,0.008727735,-0.01419051,-0.020999921,-0.04497261,-0.0030235823,-0.05645714,0.011694149,0.019081598,0.053509783,-0.0215462,0.007558956,0.06082736,0.019894663,0.02117778,0.013682345,0.041085146,0.0089182975,-0.0039319275,0.010747692,-0.0016753568,-0.014685971,-0.016121536,-0.007889263,0.00020922109,0.018509913,0.0065616816,-0.0022422783,0.00500225,0.0100045,0.011230448,-0.014254031,-0.0424826,0.0024360165,-0.0406278,0.015295769,-0.01462245,0.03099807,0.0072413525,-0.039077893,0.0029283012,-0.035571557,-0.031125112,0.07668211,0.026602441,-0.05981103,-0.056660406,0.038747586,0.016299395,0.004408332,0.0014649447,-0.042177703,-0.019615171,-0.029575208,0.012024457,0.004621126,0.010182357,0.0015356113,0.024925496,0.022499008,-0.039535243,0.020479053,-0.035978086,0.012227722,-0.025230397,0.015130615,0.009807586,-0.022206815,0.004421036,-0.021266708,0.008429188,-0.0045385496,-0.013568007,0.0107731,-0.036460843,0.03290369,0.018903742,-0.0075271954,-0.006885637,0.018154198,0.011592516,0.001605484,-0.002515417,-0.02234656,0.038620546,-0.0147749,0.01222137,0.026094276,-0.012596142,0.028457245,0.027847447,0.045480777,-0.024455445,0.0292449,-0.051782023,0.039204936,-0.015867455,0.0295498,0.032370117,-0.057016123,0.030185007,-0.00027611625,-0.031633276,0.06097981,0.017620625,0.008130642,0.01397454,0.07434455,-0.05137549,-0.077901706,-0.008791256,0.005901067,-0.03491094,0.027720405,-0.04568404,0.00797184,-0.028889185,-0.026653258,-0.0033284812,-0.05605061,-0.004122489,-0.0015554616,0.03143001,0.02416325,-0.012411932,0.053967133,-0.050460793,0.034148693,-0.010607946,-0.023312073,-0.024087025,0.019284865,0.005237276,-0.016248578,-0.04060239,0.025471775,0.037223093,0.012659662,0.056558773,-0.0048529766,0.02982929,0.027593363,0.021889212,0.0024630127,-0.01563878,0.0042272983,0.039052486,-0.032776646,0.015981792,0.010169654,0.013644232,0.006872933,-0.012538973,-0.04611598,-0.006701427,-0.008823017,-0.046954453,0.041263003,0.011916471,0.018014451,0.02810153,0.008232274,0.010582537,0.015244952,0.02016145,0.026958158,0.025941828,-0.03783289,-0.0020882408,-0.015702302,0.030769397,0.04728476,-0.013110659,0.0048466246,0.0016547126,0.055542443,-0.03915412,0.015308473,0.012945506,-0.022435488,-0.016667815,-0.053306516,0.04380383,-0.034529816,0.01957706,-0.027415507,-0.035724007,-0.0023566156,0.028558878,-0.056711223,-0.047056086,-0.008359316,-0.028457245,-0.008264035,0.034453593,-0.04542996,0.008175106,-0.005929651,0.018649658,-0.008136993,0.056253873,-0.0071270154,-0.01782389,-0.0011417834,0.010055317,0.012323003,-0.028076122,0.018154198,0.02133023,0.0037286612,-0.005885187,0.031379193,0.016858377,-0.025852898,-0.04380383,-0.021660537,0.00023323983,0.023591563,-0.037756667,0.024417331,0.012323003,-0.009197788,-0.016705927,0.006101157,-0.013453671,-0.004687823,0.008327555,0.035698596,0.007006326,0.001100495,-0.041821986,0.005837546,-0.029473575,-0.01732843,-0.012634254,-0.006637906,-0.022016251,-0.015600668,0.0059455317,0.022740388,-0.0021501735,0.010144246,-0.011465475,-0.06641717,-0.034402777,0.018433688,-0.0010750868,0.009032634,-0.007927375,0.020428237,-0.014800308,-0.019653285,0.0059645874,0.043117806,-0.021749465,-0.020847473,0.039662283,0.0006895959,0.020491756,0.006415584,-0.040932696,-0.004500437,0.004598894,-0.012596142,-0.04220311,-0.023667788,-0.011814838,-0.058997966,0.011027182,-0.01585475,-0.0240108,-0.01732843,0.024874682,0.03534288,0.012850224,0.004093905,-0.02111426,-0.0378583,0.0115035875,0.0056533366,-0.030210415,-0.007990896,0.021647833,0.021558903,-0.0019167352,0.008778552,-0.008308499,-0.020453645,0.005688273,0.033513486,-0.015740413,-0.03084562,-0.0066760187,-0.00895641,-0.015105207,0.018179607,-0.03580023,0.004529021,0.030464496,0.018497208,-0.010233174,0.033996243,0.041593313,-0.017201388,0.031023478,-0.037070643,-0.027339282,0.019246753,-0.02234656,0.00040276052,-0.02465871,-0.0060122283,-0.048275683,-0.014292143,-0.017658737,0.010017204,-0.012799408,0.011306673,-0.028609695,0.048224866,0.016909193,0.02764418,0.008067121,-0.005821666,0.0069618616,0.0076605887,0.01914512,-0.009807586,-0.016413732,-0.025560703,-0.010068021,-0.02271498,-0.014901941,0.03389461,0.0053643174,0.025281213,0.02866051,-0.0069491575,-0.0073556895,-0.010417384,-0.00068800786,-0.0072350004,0.035444513,0.012399228,0.0020771248,-0.049088746,0.004700527,-0.018065268,-0.0006137681,-0.00015493079,0.0056533366,-0.008206866,-0.007558956,0.03610513,0.0028790727,-0.032090627,-0.007304873,0.013059842,0.008105233,-0.01674404,-0.00698727,0.0055707595,-0.008448244,-0.010195062,-0.0015364054,0.032649606,-0.00032256573,0.009566207,0.0022740387,0.022499008,-0.019920072,0.0067204833,-0.032217667,-0.016985418,-0.0063488875,0.00760342,0.016604293,-0.012126089,-0.05503428,0.009337533,0.036181353,-0.02385835,0.006917397,0.010531722,0.018763995,0.026653258,0.026221318,-0.056660406,-0.008238627,-0.026221318,0.029422758,-0.040856473,0.025471775,-0.019843847,0.0067395396,-0.010900141,-0.060624093,0.022664163,-0.030871028,-0.005272213,0.024709526,0.012881985,0.005637456,-0.028863776,-0.00818781,-0.023782127,0.034453593,0.029676842,-0.040272083,-0.026577033,-0.030362863,0.0397131,0.002386788,-0.027390098,0.00418601,-0.007107959,-0.014876532,-0.024989018,-0.023655085,-0.019742213,0.02176217,0.0052531566,-0.008314851,-0.012799408,0.0018405104,0.0059518837,-0.016502662,-0.0019532596,-0.007838447,0.015295769,0.009489983,-0.05823572,-0.027110606,0.012430988,-0.032649606,-0.004328931,-0.008314851,-0.029854698,0.06687453,0.006066221,0.017150572,0.043194033,0.03684197,0.0063393596,0.0023629677,-0.020720432,-0.005888363,0.0018643306,-0.0004609216,0.02102533,-0.0041129612,0.017074347,0.01218961,0.027085198,-0.03912871,-0.0067458916,-0.009559856,0.007590716,0.012316651,0.019018078,0.04891089,-0.01157346,-0.008321203,-0.021851098,-0.041999843,-0.00398592,-0.033665936,-0.038468096,-0.011586164,-0.019221345,-0.024671415,0.013885611,0.028838368,-0.04746262,-0.011401954,-0.029371941,-0.07403965,0.012138793,0.03945902,0.0049641374,0.0067840037,0.03524125,0.0267803,0.042101476,-0.029854698,-0.051705796,0.0026138742,-0.031658683,0.016185058,-0.010766747,0.034834716,0.015092503,-0.020796657,-0.01037292,0.023223145,-0.014838421,-0.008499061,-0.024353812,-0.03099807,0.0012831169,-0.0017309373,-0.0042558825,0.016718632,-0.00963608,0.0317095,-0.016337506,-0.02197814,-0.034453593,-0.02059339,-0.02044094,-0.004687823,0.04291454,-0.0028473125,-0.016401028,-0.0056628645,-0.07622476,0.019615171,-0.020034408,-0.010106133,-0.014050765,0.0075526037,-0.017785778,0.015880158,0.020352012,-0.005195988,0.02896541,0.012443692,0.027694996,0.037146866,0.0019421434,-0.00081624015,0.004808512,-0.017303022,0.020936402,-0.041288413,-0.008880185,0.025713153,-0.00843554,-0.015041687,-0.023782127,-0.026653258,-0.0043384596,-0.043422706,-0.03158246,-0.00017954505,0.0019913719,0.0043543396,0.02662785,-0.0063425354,0.017277613,-0.015346586,-0.0033221291,-0.010646058,0.0029092452,-0.026831117,-0.012716831,-0.0044400925,0.01360612,0.0056565125,0.044210363,0.01622317,0.004779928,-0.013796682,0.0061424454,-0.010417384,-0.030083373,0.03887463,0.022219518,0.0031712677,-0.00003548223,-0.011891063,0.0017452295,-0.03287828,0.006866581,0.0034332904,-0.01585475,-0.02111426,0.008670567,0.0011941879,0.010112485,0.0012608846,-0.014749492,0.011528995,-0.011541699,0.021088852,-0.022460897,0.016515365,-0.006225022,-0.029905515,0.029371941,-0.044159546,0.031201337,0.016273987,0.013796682,0.017811187,-0.0018706827,-0.00917238,-0.00013785964,-0.029422758,-0.020415531,0.0350888,0.044337403,-0.029854698,0.013568007,-0.026399177,0.06601065,-0.0044909087,-0.0062567824,0.026005348,-0.0073620416,-0.0047259354,-0.0203139,0.02016145,-0.011077999,-0.009864755,0.026754891,0.024175953,-0.0012219782,0.011122463,0.056965306,0.027898263,-0.016972713,0.027466323,0.0012743827,0.00440198,-0.023007175,-0.0040335604,-0.002501125,-0.0045703095,0.00054151344,-0.018979967,0.038086973,-0.009960036,0.025065243,-0.022981767,0.030820211,0.02111426,0.023223145,0.021622425,0.016235875,-0.022880133,0.008880185,0.0063838237,0.0006356034,-0.04192362,-0.00079361093,-0.034987167,0.007590716,-0.0103030475,0.016083425,0.036206763,0.040653206,0.024493556,-0.056863673,0.004087553,0.018357463,0.020682318,0.007984544,-0.03389461,0.009045338,0.03727391,0.005373846,-0.002996586,-0.032547973,-0.010423737,0.013936427,0.019615171,0.013212292,0.030743988,0.0049387296,-0.020707726,-0.030057965,-0.007558956,-0.0015332294,0.0009805998,0.033386447,-0.02044094,-0.012437341,0.00880396,0.017341133,-0.00096074963,-0.015740413,-0.019068895,0.031760316,-0.02299447,0.016705927,-0.026399177,0.013923723,0.0037318373,0.013263108,0.04497261,-0.0175444,0.018382872,-0.05066406,-0.011230448,0.009045338,-0.01659159,-0.008562582,-0.010569834,0.061894506,-0.022054365,-0.0016197762,-0.036918193,-0.007317577,-0.02225763,0.019932775,0.054475296,-0.035317473,-0.04919038,-0.0071333675,0.016947305,0.05239182,-0.0111034075,0.007038086,0.016362915,-0.00038291034,0.002412196,0.020059817,-0.028126936,-0.014863828,-0.018586138,-0.023477226,0.023350185,0.052010696,0.008378372,0.018675067,-0.02502713,-0.02453167,0.032827463,-0.022016251,0.0031665037,-0.013542599,-0.010906493,0.019246753,0.0295498,-0.010519017,-0.017989043,0.015867455,-0.049292013,-0.021012627,-0.01255803,0.015181432,-0.019602468,-0.002512241,0.019195937,-0.011287617,-0.017188683,0.018700475,-0.0012616786,0.003607972,-0.03186195,-0.01884022,-0.046090573,0.012799408,-0.03813779,0.015829341,0.0055707595,-0.022359263,-0.034479,0.025751265,-0.02241008,-0.009648784,0.027898263,-0.0078257425,-0.0012450045,0.013123363,0.022676867,0.025967235,-0.02465871,-0.002796496,-0.00095519156,-0.006082101,-0.006024932,0.017798482,0.005316677,0.018154198,-0.04758966,-0.016629701,-0.012780352,-0.013072547,0.010677819,0.012240427,0.030642355,0.019920072,0.019259457,0.01215785,-0.0041383696,0.0025455893,0.016426437,0.008448244,-0.0021517614,-0.026475402,-0.0073429854,0.0044527967,-0.028635103,-0.024722232,-0.007285817,-0.0123039475,-0.0012386524,0.023299368,0.015054391,-0.008543526,-0.0032681366,-0.0036810208,-0.015156023,-0.017430061,0.001299791,-0.037019826,0.024188658,-0.006631554,0.01462245,-0.038315646,-0.041542497,0.03973851,0.022067068,-0.013313925,-0.019183232,0.023566155,-0.02271498,0.0014244502,-0.013250404,-0.018332055,0.0017214093,-0.030337455,0.011986344,0.000026648891,0.08552419,-0.00024038591,0.009280365,0.013631528,0.013745866,0.017722256,0.033208586,0.013047138,0.019132415,0.029854698,-0.034809306,-0.020631501,0.030515313,0.033386447,-0.023439115,-0.03651166,-0.020453645,0.02176217,0.03684197,-0.02764418,0.022016251,-0.020847473,0.03071858,0.009864755,-0.020453645,-0.017849298,0.014940053,-0.0100045,0.002887013,-0.014381072,0.026119685,-0.009331182,0.009185084,-0.018522616,-0.03740095,0.023464523,0.029778473,0.02191462,0.018636955,-0.0024614246,0.03272583,-0.017646033,0.026246727,-0.0036302044,0.026551625,0.0092104925,-0.0010274462,-0.036333803,-0.027161423,0.023172328,-0.042609643,0.04192362,0.030007148,-0.0038398225,0.018293943,0.013682345,-0.006999974,0.0074509704,0.002590054,-0.0033729458,-0.014978166,0.031353787,-0.009890163,-0.0042527067,0.0010719107,-0.004287643,-0.060014296,-0.017087052,0.022918245,0.029626025,0.021724056,0.021304822,0.005885187,0.0062694866,0.015270361,0.0026170502,-0.00781939,-0.024480853,0.015181432,0.025675042,0.00026658818,-0.011116111,0.012062568,0.01979303,-0.006917397,0.03884922,-0.00091152114,-0.025293916,0.04583649,0.029854698,0.022054365,0.0061678537,-0.0010385624,-0.00039482044,-0.00021458065,0.012367467,-0.0045766616,-0.0009766298,-0.0061646774,-0.009413758,-0.012964562,-0.007158776,0.025586111,-0.0046115983,0.0538655,0.024861977,0.008384724,0.023096103,0.020682318,0.015270361,-0.010709579,-0.0215462,-0.01462245,-0.009661488,-0.016350212,-0.003107747,0.009178732,0.045785673,0.029295716,0.0080099525,0.020542573,0.05762592,0.0027837919,0.021749465,0.030312046,0.014724083,0.02545907,-0.017862003,0.013999948,0.021647833,-0.02853347,0.007006326,0.012545326,-0.02059339,0.0021676417,0.022244927,-0.023502635,-0.026551625,-0.0042495304,0.00069634494,-0.028609695,-0.00017200196,0.032979913,-0.015689597,-0.028304795,-0.0080036,0.009953683,0.019589763,-0.006517217,-0.0025773498,-0.0145970415,0.027008975,0.00803536,0.006701427,0.010436441,0.007901967,-0.008943706,0.00720324,-0.006097981,0.01674404,0.024048913,-0.015918272,-0.013224997,0.01520684,0.05981103,-0.026754891,-0.017137866,0.012049864,-0.024607895,0.0037254852,0.0021803458,0.015295769,-0.010074372,0.00024912,0.006701427,-0.04263505,-0.0020755366,0.015003574,-0.017531695,-0.019068895,-0.022270335,-0.0033348333,0.0012188022,-0.0025408254,0.020186858,-0.025891012,0.029803881,-0.022753092,0.014292143,0.0077685737,-0.01994548,-0.01572771,0.019742213,-0.03887463,0.04105974,-0.016718632,0.035749413,-0.015676893,0.015600668,0.011560756,-0.0375534,-0.021228597,-0.01696001,0.009242252,0.0163121,-0.0069682137,-0.015079799,0.014317552,-0.0044527967,0.0018817988,-0.011459122,0.004630654,0.030972661,0.059150416,0.008880185,-0.015168727,0.017442767,-0.018662363,-0.044566076,0.02911786,-0.009655137,0.009413758,-0.027822038,-0.07190536,0.013644232,-0.0011679857,-0.016324803,0.015613372,0.034809306,-0.0038239423,0.0027536196,0.0120054,-0.013987244,-0.007793982,-0.037299316,-0.02619591,-0.023045287,0.009998148,-0.023451818,0.0001555263,0.009725009,0.014114285,-0.022333855,0.03041368,0.0009099331,0.0046751187,-0.00011562741,-0.012265835,-0.017531695,0.0053674937,0.029067043,-0.0019294393,0.019450018,0.01892915,-0.026068868,0.0038493504,0.0075653074,-0.023032581,-0.001797634,0.036638703,-0.0026472225,0.0055262954,0.019843847,-0.009744066,0.027288465,-0.0025678216,0.026068868,0.019437315,-0.012119737,-0.017518992,-0.04207607,-0.0045607816,-0.036206763,0.036181353,0.01674404,-0.010106133,-0.010595242,0.009744066,-0.010512665,-0.050282937,-0.01665511,0.009737713,0.027872855,0.011941879,-0.030235823,-0.018217718,-0.0535606,-0.021444567,-0.027593363,0.009991796,0.027339282,-0.010436441,-0.010480905,-0.010671467,0.03130297,-0.00067490677,0.02016145,-0.024264883,-0.024112433,-0.013745866,-0.032700423,-0.02234656,-0.0005157082,-0.037350133,-0.020212267,0.021406455,0.026399177,0.04395628,-0.004608422,0.009852051,-0.008873832,-0.04250801,-0.025382847,-0.03422492,0.0015776937,0.0060185804,0.050155893,0.015384698,-0.010715931,-0.016273987,0.02998174,0.013796682,-0.016350212,-0.0012553266,0.022473602,-0.0022565706,-0.009007226,0.021647833,0.0024630127,0.021711353,-0.013809386,0.012481805,-0.012456397,-0.030286638,-0.011090703,0.012894689,-0.017366542,-0.038950853,0.000499431,-0.013059842,-0.03592727,0.045760266,0.002196226,-0.031252153,-0.007781278,0.041821986,-0.0041478975,0.052899987,0.029930923,-0.011744966,0.0295498,-0.012386524,-0.019043487,-0.031023478,-0.023680493,0.04121219,0.059201233,-0.013542599,0.05544081,-0.0001255525,-0.017518992,-0.005697801,0.016426437,-0.014215918,0.023350185,0.023312073,-0.0012378584,0.0006129741,-0.003407882,-0.003687373,-0.013428262,-0.019894663,-0.011751317,-0.034275733,0.008543526,-0.010436441,-0.00021557315,0.008791256,-0.0014911469,-0.030515313,-0.015930975,0.031684093,-0.016337506,-0.007323929,0.004389276,-0.00975677,-0.008378372,-0.025649633,-0.048377316]},{"id":"guide-moderation-3","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Unban a user\nguild.unban(userId, reason?) removes a ban. Requires BanMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.unban(userId, rest.join(' ') || undefined);\n await message.reply(`Unbanned <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[0.00077832106,0.003312717,0.004673732,0.011149972,-0.037803948,0.031178514,-0.0744387,0.05836228,0.030155469,-0.019462213,0.018585317,-0.004265732,0.015698869,0.027792722,-0.0024845377,-0.01867057,-0.0060621505,0.0077763596,-0.04664598,0.048180547,0.025868423,0.09772515,0.013470092,0.05027535,-0.0066376133,0.01677063,-0.01582066,0.021690989,-0.004810747,-0.050226636,0.06055452,-0.0003777426,-0.014115585,-0.006357494,-0.0038820903,-0.0057698516,0.029327288,-0.013835466,0.0013534032,0.012532301,-0.0048472844,-0.050811235,0.0076302104,-0.04567165,-0.019949377,0.06201601,-0.026428662,0.026964542,0.00327009,0.020241676,0.00037032095,0.010815047,0.0065828073,0.07024909,-0.022567885,-0.0037937916,0.0076971953,0.036853977,-0.0001960075,0.010547106,-0.01867057,-0.009006449,-0.018487884,-0.000044339562,-0.027037617,-0.0077215536,-0.03095929,0.0026717915,-0.00047688815,-0.0022211645,0.009152599,-0.008805494,0.038900066,-0.0035014933,-0.012148659,0.0038638215,0.044624247,-0.024821019,-0.03816932,-0.004034329,0.031056723,0.026696602,-0.034661736,0.025040243,-0.0042352844,0.0049416726,-0.058118697,-0.011667584,0.012995107,-0.042578157,-0.0031391648,0.017769316,-0.048034396,-0.0020978511,0.050421502,-0.046402395,-0.044746038,-0.024321675,0.017610988,0.03587965,0.03831547,-0.03151953,-0.02289672,-0.046110097,0.038388543,-0.025235109,-0.0160886,0.04077565,-0.039362874,0.028596543,-0.02468705,0.03585529,0.0092865685,0.047644664,-0.039752603,-0.000650821,0.026258154,-0.0034954036,0.011113435,-0.03695141,-0.0373655,-0.024492184,0.05617004,-0.03746293,-0.0049538515,-0.002285105,-0.02508896,-0.0039460305,-0.031397738,0.012495764,0.058557145,-0.006917733,0.028840125,-0.017477019,-0.059239175,0.016307823,0.03154389,-0.0015558809,-0.007417076,0.017148182,0.0019730153,0.0028742692,0.031690035,0.035709143,-0.07775142,-0.017684063,-0.036610395,0.025844064,-0.0047620307,-0.0022348661,-0.06771583,-0.033638693,-0.007922509,-0.020485258,-0.0039734337,-0.026647886,-0.03653732,0.0062417923,-0.04637804,-0.06513386,-0.0013206719,-0.07702067,0.03190926,-0.062600605,-0.001152448,0.003116329,0.0068202997,0.038388543,-0.016405256,-0.016880242,0.0033188066,-0.01867057,-0.044819113,-0.036586035,0.005383165,-0.0062965984,-0.043162756,-0.017282153,-0.025819706,-0.0110647185,-0.030740066,0.004320538,-0.016758451,-0.015296958,-0.06937219,0.025186393,0.0122826295,0.0022318214,-0.03242078,-0.046110097,0.006972539,0.026672244,0.010035584,0.015552719,0.059775054,-0.013530987,0.05027535,-0.030715708,0.019985914,-0.018780183,-0.027451707,0.0077763596,0.0025454334,-0.019608362,-0.01717254,0.00042170158,0.0043114037,0.014821973,0.016551405,0.013384839,-0.022543527,-0.032250274,0.012471405,0.034954038,-0.0035928364,-0.0289132,-0.04742544,0.012209554,-0.027110692,0.014517495,-0.047595948,-0.0031300304,0.010133017,0.007459703,0.008982091,-0.008494927,0.046986993,0.017501377,-0.029132424,0.06596204,-0.020667944,-0.019437855,-0.04077565,-0.013214331,0.05714437,0.0016487465,0.01185636,0.015589257,-0.021106392,-0.055439293,-0.0014729107,-0.0141764805,0.024589617,-0.02072884,0.02139869,-0.008367047,0.059677623,-0.01037051,0.03259129,0.046426754,0.039703887,0.035100184,0.01308036,-0.041262813,-0.012306987,-0.01677063,-0.0066071656,0.04486783,0.04216407,-0.043844786,-0.008129554,-0.006576718,-0.015126451,0.004783344,-0.033322036,0.026209438,0.015637973,0.007538867,0.00476812,0.003900359,0.0010626271,-0.004363165,-0.0044940906,-0.022239048,0.0026641795,0.036025796,0.07054139,0.02849911,-0.049861263,-0.062649325,0.003970389,0.04077565,0.03656168,0.006056061,0.015443107,0.036512963,-0.039338514,0.0058398815,0.01786675,0.059482757,-0.003790747,-0.011143883,0.007660658,0.025454333,0.044599887,0.023651825,0.06230831,-0.015662331,0.030569557,0.010492301,0.011545793,-0.006327046,-0.022714034,-0.09202533,0.04213971,-0.0024784482,-0.016039884,-0.0072465683,-0.015881555,-0.0070029865,0.02329863,-0.012075584,-0.0406295,-0.00015690115,-0.022994153,-0.022019824,-0.015236063,0.031836186,0.004229195,0.06781327,0.052175295,-0.008537554,0.006856837,0.0008175225,0.0058551054,-0.02645302,0.024845378,-0.034978393,0.030325975,0.03587965,0.012605376,-0.010236539,-0.023931945,0.033589978,0.032615647,0.007940778,0.0060773743,0.032250274,-0.019888481,-0.017757138,0.0052461503,0.009317016,-0.026136363,-0.0354412,-0.026233796,-0.027768364,-0.0023383885,0.0338092,-0.02072884,-0.0155161815,0.007678927,0.029376006,-0.004734628,-0.062210876,0.008568002,-0.007374449,0.006083464,-0.011740658,0.027451707,-0.0017416122,0.011539703,0.0070821503,-0.019035943,-0.002140478,0.056121323,0.021033317,-0.03894878,-0.012593197,0.02752478,0.021228183,-0.0066315234,-0.03288359,-0.048375413,-0.008549733,-0.011478808,0.01826866,-0.0011943136,0.011149972,0.002755523,0.022848004,0.037146274,-0.008829853,0.013482271,-0.03298102,0.005986031,0.0005217986,0.04306532,-0.0043296725,-0.016137317,-0.011436181,0.04101923,0.022884542,0.026404303,0.0039186277,0.0229089,-0.001305448,0.03122723,0.021508303,-0.007185673,-0.0064731953,0.054221384,0.019949377,0.020192958,-0.03066699,-0.016673198,0.06513386,-0.020607049,0.010571465,-0.0006382613,0.0067106877,0.014980301,-0.006978628,0.03178747,0.00859845,0.037998814,-0.069761924,0.030520841,0.013579704,0.056803353,0.007538867,-0.03232335,0.013798928,0.06065195,-0.04486783,0.0357335,0.012221734,0.01118042,0.00014044033,0.07219774,-0.038510334,-0.10181733,0.022287766,0.006594986,-0.06177243,-0.022653138,-0.0029610454,0.023456959,0.004984299,-0.04554986,0.012057316,-0.025600482,0.00374812,-0.0392898,0.024236422,0.039728247,-0.015650151,0.035100184,0.0031574334,0.004323583,0.011771107,-0.049861263,-0.038680844,0.0357335,0.0044788667,-0.05578031,-0.014980301,-0.002752478,0.01513863,-0.0050817323,0.055975173,-0.0034162395,0.02071666,0.004262687,0.012629733,-0.010321793,0.027110692,-0.036975767,0.019839766,-0.024857556,0.020363467,0.018512242,0.029668303,0.02849911,-0.015711047,-0.012788062,-0.04006926,0.0071369563,-0.05056765,0.04783953,0.026258154,0.042651232,0.020339109,-0.025892781,0.001928866,0.023286453,0.018731466,0.043942217,0.01444442,-0.035465557,0.03748729,-0.034028426,0.025527408,0.0061869863,-0.011771107,0.041749977,-0.019316062,0.032786157,-0.032956664,0.018780183,0.027061975,0.0028407767,-0.04567165,-0.048253622,-0.010242629,-0.03473481,-0.011844181,-0.0026093735,-0.013689316,0.005331404,0.046816487,-0.062600605,-0.038632125,-0.02672096,-0.026379945,-0.028961916,0.052370157,-0.041408964,-0.0015475077,-0.011131704,0.002536299,0.01022436,0.039582096,0.0011060152,-0.032225918,-0.0021161197,0.0126175545,0.011156062,-0.023627467,0.0003786941,0.027354274,0.011892898,-0.028182453,0.015978988,0.024187706,-0.015041197,-0.026501736,-0.036220662,-0.014225197,0.040020544,-0.027890155,0.004119583,-0.008026032,0.0036750454,-0.021703169,-0.0093900915,-0.025381258,0.0005191344,0.06454927,-0.00093703,-0.0010078211,-0.0026550454,-0.028645258,-0.009457076,-0.021800602,-0.0126175545,-0.0020202093,0.00668024,-0.047011353,-0.012946391,-0.0145053165,0.018487884,0.0036902693,0.018694928,0.00083274645,-0.023164662,-0.053393204,0.025235109,-0.008714151,-0.014018152,-0.0030234633,0.018731466,0.033175886,-0.024906274,0.01623475,0.052565023,0.0012102987,-0.0022957616,0.032055408,-0.023115944,-0.00014205786,0.007283106,-0.027646571,-0.014273913,-0.017830212,-0.009183046,-0.053636786,-0.052175295,-0.022263408,-0.048618995,0.017099466,-0.0068629268,-0.019510929,-0.026526093,0.021581378,0.033906635,0.005550628,0.0086167175,-0.016246928,-0.01582066,0.020132063,0.021958929,-0.04048335,-0.00085253746,0.026379945,-0.008714151,-0.011137793,0.004911225,0.0045854338,-0.014614928,0.00033092918,0.0066071656,0.008403583,-0.010029495,0.001070239,-0.023128124,-0.020119885,0.039192364,-0.034929678,0.017391764,0.013859823,0.041287173,0.0056267474,0.027963229,0.024431288,-0.017209077,0.036196306,-0.01513863,-0.0387052,0.036853977,-0.034588665,-0.019145556,-0.05441625,0.0072587477,-0.024589617,-0.03176311,-0.0103948675,-0.0015619704,0.0091708675,-0.0015315227,-0.042066634,0.036318097,-0.029692663,0.01977887,-0.016953317,-0.038242396,0.00014063063,-0.041530754,-0.018256482,-0.02125254,-0.023566572,-0.030423408,-0.010608002,-0.009384002,-0.019998094,0.028133737,-0.021630093,-0.006448837,0.041189738,0.001724866,-0.009158689,0.0038333738,0.03680526,0.0076423893,0.007922509,-0.0057576727,-0.037998814,-0.02289672,0.009517971,0.0077093747,0.006214389,0.021301258,-0.013543166,-0.006461016,0.0056632846,0.022531347,-0.007995583,-0.012014689,-0.0041104485,-0.011076897,0.008915106,0.005742449,0.014371346,0.0075205984,-0.0017568362,0.012714988,0.026526093,0.021690989,-0.0011638659,-0.017891107,0.006856837,0.030082393,-0.0031665678,0.0196449,-0.049593322,0.009992957,-0.005495822,0.041067947,0.007063882,-0.027378632,-0.056121323,-0.01405469,0.025941497,-0.036391173,-0.017976362,-0.0022866272,0.0013465525,0.027695289,0.0051365383,-0.021605736,-0.014712361,-0.04048335,0.0057850755,-0.04308968,0.0040586875,-0.015686689,-0.021289079,0.007307464,-0.030520841,0.023383886,-0.0059890756,-0.0113083,0.021642273,-0.010419225,0.022653138,-0.018500064,-0.009755464,-0.0060195234,0.02126472,0.021983288,-0.012106032,-0.023919765,0.0020125974,0.022397377,0.039850038,-0.009018629,0.016453974,0.026136363,-0.021008959,-0.03027726,-0.019998094,-0.02058269,0.012556659,-0.012160838,-0.04023977,-0.0142860925,0.010114748,0.0027692243,-0.022531347,-0.00092408975,0.0059160013,-0.008744598,0.008068658,-0.04674341,-0.0046859113,0.0069968966,-0.037682157,0.0011730002,0.0152726,-0.025795348,0.06459798,-0.050421502,0.029132424,0.008147823,0.035952725,-0.008525374,0.007922509,-0.03792574,-0.0069603594,0.0068933745,-0.025186393,-0.00072465686,-0.0015741496,0.004089135,0.023079406,0.030764423,-0.027378632,-0.023481317,-0.00030504857,0.01949875,-0.003790747,0.02193457,0.07200288,-0.004317493,0.000098860095,-0.018195586,-0.007526688,-0.0046524187,-0.022738392,-0.06469542,-0.0013503585,-0.012629733,-0.0026991945,0.0075875833,0.033857916,-0.037389856,-0.005925135,-0.006923822,-0.058313563,0.045087054,0.047669023,-0.020132063,-0.024601795,0.006869016,0.0229089,0.04647547,-0.006625434,-0.04596395,0.0027463885,-0.026282512,-0.013348301,-0.00051989564,0.0012582539,0.00077375385,-0.007733733,-0.009024718,-0.0049568964,-0.018719288,-0.021325616,-0.03751165,-0.049642038,0.00045823888,0.009597136,-0.0009423584,0.04133589,0.02903499,0.0144566,-0.00805039,-0.02888884,-0.019705795,-0.029400364,-0.017014213,-0.025746632,0.020753197,0.0025149856,0.00954233,0.009109972,-0.038437262,-0.0038942695,-0.01948657,-0.019109018,-0.02645302,-0.023237735,-0.0015223883,0.028572185,-0.0066558816,-0.02385887,-0.008013852,-0.014773256,0.037121918,0.0074231657,-0.004171344,-0.0253569,-0.022153795,-0.022117257,0.0047955234,-0.035246335,-0.006735046,0.03997183,-0.015625793,0.013141256,-0.011143883,0.0058398815,-0.004207881,-0.032664362,-0.01376239,-0.029497797,-0.0072891954,-0.015029018,0.030204184,0.012361793,0.04075129,-0.020107705,0.005629792,-0.01936478,0.006381852,-0.022811467,-0.012416599,-0.0044331946,0.039094932,-0.006759404,0.0403372,0.017014213,-0.003967344,-0.019169914,0.008921196,-0.005313135,0.014688003,0.050470218,0.044112723,-0.0029564782,-0.017062929,-0.006576718,-0.013494451,-0.03164132,0.01908466,-0.0045641204,-0.010023405,-0.0080625685,0.0057211355,-0.0113083,-0.024528721,-0.010900301,-0.03763344,0.0073805386,-0.008878569,0.0024632243,-0.03395535,0.020874988,0.0028499109,-0.033419468,0.0030325975,-0.019571824,0.026306871,0.006461016,0.020509616,0.004335762,0.007319643,-0.030374693,-0.0049751652,-0.015248242,0.0039216722,0.012556659,0.066887654,-0.02944908,0.02329863,-0.031470813,0.016368719,-0.023201197,0.00030904484,0.0034527767,-0.02645302,0.0119537935,0.0051395833,0.019596182,-0.00044682098,-0.0055323592,0.016344361,0.020753197,-0.003900359,-0.011746748,0.041749977,0.017379586,0.020655764,0.029424721,0.0019730153,0.027841438,0.006135225,-0.013372659,-0.01554054,-0.007678927,-0.0046311053,0.0003524329,0.052467592,-0.005919046,0.0023262093,-0.026769677,0.038802635,-0.010778509,0.02264096,0.032834873,0.007009076,-0.06011607,0.0014234331,-0.008939465,-0.027695289,-0.046938278,0.024321675,-0.022068541,0.0062052547,0.012958569,0.002799672,0.002872747,0.025137676,0.011302211,-0.04501398,0.010882032,0.017294332,0.018609675,-0.008732419,-0.058557145,-0.018731466,0.028401677,-0.013738032,0.016721914,-0.03790138,-0.0046280604,-0.018366093,0.047108784,0.008817674,0.05266246,-0.0011516868,0.036488604,-0.0133970175,-0.0049934336,-0.0040404187,-0.0041226274,-0.0031208962,-0.008939465,-0.0072343894,-0.01021827,0.004143941,-0.010023405,-0.00025119408,0.0029123288,0.026964542,-0.028547825,-0.005620658,-0.013713674,0.025600482,0.005343583,0.014614928,0.020387825,0.0033218514,0.022263408,-0.04374735,-0.023213377,-0.025527408,-0.017964182,0.012039047,0.012300897,0.058557145,-0.043406337,0.0026093735,-0.032761797,0.009609316,-0.011801555,0.0072161206,0.0256492,-0.013677137,-0.034880962,-0.020935884,0.014700182,0.041920487,0.019791048,0.018938512,0.020400004,0.0012384629,0.023761436,0.006978628,-0.049301025,-0.020777555,-0.027768364,0.0017187764,0.010845494,0.053052187,0.00061009714,0.001399836,-0.004649374,0.0035441201,0.028937558,-0.042212784,0.0060865087,-0.030618275,-0.0024373438,0.0075449566,0.028937558,-0.014688003,-0.010072121,-0.017440481,-0.047547232,0.005511046,-0.011679763,0.02577099,-0.008969912,-0.001580239,0.0035410752,-0.015735406,0.010315703,0.023420421,0.01459057,-0.029814454,-0.024102451,-0.015686689,-0.035928365,0.03229899,-0.017610988,0.020400004,0.005742449,-0.00072237325,-0.03692705,0.058264848,-0.023968482,-0.025746632,0.01022436,-0.019510929,-0.010486211,0.0125079425,-0.0095057925,0.015236063,-0.0026824484,-0.008013852,-0.0009857465,0.00545624,-0.00094159716,0.005163941,0.013031644,0.052954756,-0.041652545,-0.016453974,-0.0008129554,-0.018975047,0.018719288,0.008013852,0.036488604,0.033857916,0.011539703,0.0061961208,0.019389138,0.010236539,0.009962509,-0.003559344,-0.0033827468,-0.019510929,0.0018618809,-0.017562272,0.006448837,-0.0032122394,-0.0066558816,-0.03154389,-0.012075584,0.03354126,0.012897674,0.009292658,0.007021255,-0.0005393061,-0.006521912,-0.009049077,-0.026087647,-0.025015885,0.022981975,-0.01281242,-0.022835825,-0.05792383,-0.028279886,0.031275947,0.008866389,-0.001881672,-0.010674987,0.004661553,0.0045610755,0.021508303,-0.016429614,0.030252902,0.00023882466,-0.02930293,0.006485374,0.018621854,0.081112854,-0.016880242,-0.0024495227,0.024857556,0.01158842,0.014359167,-0.0032000602,-0.00900036,-0.009584957,0.016600123,-0.0061139115,-0.022726214,-0.005072598,0.014213017,-0.011472719,-0.0039886576,-0.018110331,0.044770397,0.025892781,-0.003665911,0.028279886,0.010163465,0.0150655545,0.0065097325,0.0068933745,-0.023737079,0.025381258,-0.0006336942,0.011880718,0.008300061,0.030374693,0.02808502,-0.0070699714,-0.031690035,-0.03887571,0.010443584,0.043235827,-0.00477421,0.01322651,-0.0071065086,0.035148904,-0.01376239,0.025600482,0.011929435,0.017294332,0.025965856,-0.015260421,-0.027037617,-0.027597856,-0.02083845,-0.041896127,0.02810938,0.043235827,-0.017416123,0.015016839,0.027159408,-0.0035502096,0.016149495,-0.0075084195,-0.0002491008,0.00913433,0.05495213,-0.0044758217,0.010815047,-0.00006555785,-0.0035197618,-0.04808311,-0.018317377,-0.008939465,0.0042170156,0.016137317,-0.018049436,0.0067472253,-0.00085482106,-0.010717614,0.015029018,0.008427942,-0.031251587,0.019169914,0.004025195,0.029132424,-0.033322036,0.04606138,0.016112959,-0.005020837,0.013786749,-0.013689316,-0.0025774036,0.0062661506,0.018524421,-0.016527047,0.0054653743,-0.012629733,-0.0177206,-0.0050330157,-0.0035989261,-0.030861856,-0.020911526,0.024309497,-0.011649315,-0.009986867,0.00075091806,0.012714988,-0.00845839,0.02111857,0.03254257,-0.002508896,0.008750688,0.016746271,0.0052796425,0.00374812,-0.004402747,-0.0016578808,-0.008342688,-0.004746807,-0.014225197,0.0079529565,-0.001662448,0.020509616,-0.0012887018,0.041116666,0.05714437,0.018999407,0.025308184,0.010382689,0.012465316,0.016173854,0.0023277318,-0.003218329,-0.007009076,-0.020960243,0.02547869,0.01062627,-0.0075754044,-0.03449123,0.027792722,-0.005535404,-0.026672244,0.00042779112,0.0038546873,-0.040580783,-0.003260956,0.038412903,0.019279527,-0.027086332,0.025697915,-0.004009971,0.029692663,0.016685376,-0.0049568964,-0.034588665,0.03232335,-0.018719288,0.010407046,0.0017720601,0.02713505,0.0050360607,0.019267347,0.0015535973,0.015784122,0.029790094,-0.02210508,-0.010321793,-0.01580848,0.043138396,-0.022604423,-0.009335285,-0.021898033,0.016064242,0.018780183,-0.009968598,0.0032365976,-0.015674511,0.019876301,0.01717254,-0.056754638,0.0049386276,0.035465557,-0.023834512,0.0133970175,-0.03641553,0.0015878511,-0.010827226,-0.03609887,0.015784122,-0.027110692,0.026574811,-0.01583284,0.017525734,-0.008714151,-0.01977887,-0.009347464,0.014834152,-0.029522154,0.030131109,-0.020533973,0.048375413,0.0057850755,0.012532301,0.01759881,-0.024199884,-0.021362154,-0.02329863,0.0025804483,-0.025137676,-0.04223714,-0.0012346569,0.017269973,-0.028474752,-0.00025176498,0.021228183,-0.0058946875,0.0013130599,0.05631619,0.009639763,-0.010266987,0.008013852,-0.021386512,-0.041408964,0.018451346,-0.0075023295,0.02439475,-0.030983647,-0.052711174,-0.012885495,0.008921196,-0.0010534928,-0.010474032,0.034028426,0.029205497,-0.013275227,-0.018219944,-0.005562807,-0.012039047,-0.018049436,-0.018707108,-0.0075571355,-0.016307823,-0.016186032,0.01594245,0.0026002394,0.01513863,-0.03190926,0.02141087,-0.0040860903,-0.003245732,0.004375344,-0.026599169,-0.025819706,0.027768364,0.023615288,0.0065888967,-0.0014523584,-0.013384839,-0.032664362,0.012995107,0.01377457,-0.03081314,0.012081674,0.03668347,0.010266987,-0.007283106,0.011710211,-0.022981975,0.0389975,-0.0073257326,0.016928958,0.021800602,0.015150809,-0.01800072,-0.025137676,0.008622807,-0.047815174,0.018755825,0.023067228,-0.0035562993,0.014322629,0.0018557914,0.010467942,-0.01896287,-0.011582331,0.0021359108,0.015175167,0.0056084786,-0.03858341,-0.010516658,-0.04647547,-0.0034010157,-0.010108658,0.0022181198,0.017647525,-0.001278045,-0.012520121,0.005109135,0.04282174,0.0035837023,0.025308184,-0.026477378,-0.009560599,-0.002924508,-0.021922393,-0.005986031,0.031154156,-0.036074515,-0.02004681,0.0064731953,0.010352241,0.043917857,0.016441794,0.015747584,0.01650269,-0.02686711,-0.020570511,-0.035392486,0.009889435,0.0024084183,0.074731,0.027208125,-0.003915583,-0.014480958,0.060018636,0.044819113,0.009913793,0.012252182,0.03315153,-0.0047955234,-0.00982245,0.014225197,0.009877255,0.017781496,-0.0053496724,-0.0008236121,-0.004159165,-0.02427296,-0.007691106,0.020253854,-0.029668303,-0.052516308,-0.007581494,-0.0039034036,-0.04036156,0.02508896,-0.0037724783,-0.021021139,0.02562484,0.046938278,-0.018512242,0.030472126,0.025868423,-0.0034314634,0.018768003,-0.018780183,-0.011984241,-0.038534693,-0.019157736,0.04250508,0.028986273,-0.006899464,0.044819113,0.014225197,-0.03122723,0.0022287765,-0.019011585,-0.011149972,0.03324896,0.034272008,0.012361793,-0.023810154,-0.023286453,0.007581494,-0.028158095,-0.010005136,-0.018159049,-0.039484665,0.008537554,0.01718472,0.009426628,0.02004681,-0.021971108,-0.04920359,-0.0072526583,0.06299034,-0.01907248,-0.005346628,0.025283825,0.017501377,0.016600123,-0.03302974,-0.016831525]},{"id":"guide-moderation-4","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Full moderation example\nSee examples/moderation-bot.js for a complete bot with !ban, !kick, !unban, and !perms commands.\n\n```javascript\nimport { Client, Events, PermissionFlags, parseUserMention } from '@fluxerjs/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nasync function getModeratorPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id);\n const resolved = member ?? await guild.fetchMember(message.author.id);\n return resolved?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content?.startsWith(PREFIX)) return;\n const [cmd, target, ...rest] = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const perms = await getModeratorPerms(message);\n if (!perms) return;\n\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n if (cmd === 'ban' && (perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n }\n }\n if (cmd === 'kick' && (perms.has(PermissionFlags.KickMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.018981516,0.016824525,-0.0042156475,0.03907959,-0.014705599,0.017446246,-0.05750283,0.048392717,0.03232948,0.051184114,0.004612153,-0.013297211,0.0062711327,-0.013360652,0.0054083364,0.014908611,-0.032430984,0.021988614,-0.0031609426,0.05379788,0.05032132,0.054609925,0.029284317,0.056284763,-0.050879598,0.0084883915,-0.014172696,0.0037239806,-0.020301087,-0.04047529,0.09734371,-0.011616028,-0.022102809,-0.036821097,-0.014045814,-0.0010959415,0.015771406,0.017065601,0.0016605654,0.0061283903,-0.028370768,-0.08978155,0.015441514,-0.018017214,0.019679366,0.0415411,-0.046514865,0.025553992,-0.0016066406,0.036135934,-0.041236583,0.02328281,0.028675284,0.088258974,0.020618292,0.023803024,-0.053087343,0.022686465,-0.008139467,0.020935496,-0.025795069,-0.01825829,0.016152052,-0.005928552,-0.071358316,0.025528617,-0.027127327,0.00096033653,0.013119577,0.06704434,0.049788415,0.0074098967,-0.0032989266,-0.050143685,0.007505058,-0.02104969,0.06902369,0.02292754,0.0122504365,-0.03463873,0.002689894,0.035425395,-0.0313398,0.0015884014,-0.0078095743,0.015289255,-0.052072287,0.0007252087,-0.006451939,-0.055421967,-0.023650765,-0.015746031,-0.07014026,0.01582216,0.101606935,-0.03651658,-0.016380439,-0.02634066,0.0091037685,0.065826274,0.0858736,-0.022990981,-0.04255615,-0.002916695,0.042353142,-0.006509036,-0.0052655945,0.0035907547,-0.019222591,-0.011152909,-0.062476594,0.024513561,0.00808237,-0.007390864,0.014363019,-0.047961317,0.05735057,0.012567641,0.038800452,-0.019184526,-0.031872705,-0.012117211,0.05065121,-0.023600014,-0.009427317,-0.055827986,-0.01575872,-0.030197866,-0.028726038,0.0125042,0.053747125,-0.020453345,0.045829702,-0.04702239,-0.06404993,0.028167758,0.019857,-0.027051197,-0.032583244,-0.012383663,0.0049420455,-0.041236583,0.0062552723,0.054457664,-0.069988,-0.008970543,-0.04674325,0.026264532,-0.05065121,0.031593565,-0.015987106,-0.02634066,-0.014692911,0.02410754,-0.015314632,-0.004377422,0.010791296,0.021849044,-0.033572923,-0.034613352,0.008520112,-0.04717465,0.0014044228,-0.051615514,-0.019222591,-0.048976373,0.009167209,0.020440657,-0.018677,0.0119268885,0.0023124206,0.0073210793,-0.007650972,-0.03121292,0.036262814,0.008374198,-0.0457282,0.0025455658,-0.001343361,-0.0048024757,0.0008580381,-0.0031530126,-0.031162167,-0.0032196254,-0.062324334,-0.0010372587,0.000995229,0.001275162,-0.03935873,-0.022140872,-0.017129041,0.028548403,0.023130551,0.026949693,0.05169164,-0.042251635,0.05379788,-0.02953808,0.05623401,-0.030502383,-0.011819039,0.035019375,0.040576797,-0.03144131,0.021760227,-0.005319519,0.0027136842,0.027837865,0.0022251895,0.02885292,0.002759679,0.0070482837,0.0672981,0.044966906,-0.044890776,0.00583339,-0.045449056,0.005316347,-0.053188846,0.0063345735,-0.037861526,-0.0101886075,0.033699803,0.018651623,0.00155906,0.05552347,0.016748397,0.013183018,-0.015593772,0.04654024,0.020529473,0.031238297,-0.047682177,-0.064252935,0.036389697,0.0057731215,0.023523884,0.011793663,0.026518295,-0.033217654,0.0068389284,0.006635918,0.020821301,-0.029309694,0.00381597,-0.024412056,-0.004231508,-0.025731627,0.021024313,0.039333355,0.121908024,-0.0025027434,0.035856795,0.0022347055,-0.0049325298,0.008209252,-0.00068397215,-0.01400775,-0.017674634,0.0035590343,-0.034461096,0.019159151,-0.015225815,-0.026391413,-0.020186894,0.005595487,0.0077651655,0.0064265626,-0.012789684,-0.015390761,0.0041426904,0.001347326,-0.007606563,0.0022347055,-0.010886458,0.011730221,0.04585508,0.004691454,-0.037125614,-0.037531633,-0.018486677,-0.012294846,0.031923458,0.012510545,-0.00031383417,0.015631836,-0.020795925,-0.016202806,0.024830766,0.017712697,-0.018524742,0.0002406789,0.018131407,0.016316999,0.045550562,0.051336374,0.027304962,0.0025344638,0.059126914,0.035653785,-0.0029293834,0.027355714,-0.00062528934,-0.07359144,0.04501766,-0.002772367,-0.01202205,-0.0047770995,-0.015555708,-0.065267995,0.033674426,0.0039428514,-0.033395287,-0.011514522,-0.03555228,0.00439011,0.016697643,0.033065394,0.028548403,0.0019508075,0.011267103,-0.0345626,0.012047426,-0.015872912,-0.017585816,-0.040526044,-0.00442183,-0.0024218562,0.034790985,0.025414422,0.05430541,-0.000141949,0.000529335,0.054609925,0.030400878,-0.008507424,0.0046438733,0.06465896,0.0040158085,0.007416241,0.04174411,-0.008735811,-0.042124756,0.0043710778,-0.005106992,0.022826035,0.0075494666,0.021557216,0.020504097,0.03093378,-0.021430334,0.015644524,-0.03811529,-0.037658516,-0.0015305117,-0.018613558,-0.0038476903,0.0069658104,-0.020592915,0.008583553,-0.015238503,0.020998936,-0.0074289287,-0.0010277425,0.03770927,0.00046113602,-0.03364905,-0.039815504,0.050828844,0.014705599,0.01888001,0.0029991684,-0.008621617,-0.0020951356,-0.012421727,-0.016418504,-0.0050752717,0.015352697,-0.012535921,-0.017661946,-0.0071244123,-0.0061283903,-0.014959363,-0.01575872,0.0030784695,0.0020316946,0.012015706,0.0057255407,-0.0031561845,0.027178079,-0.008926134,-0.0011863448,0.03588217,0.03387744,0.020288398,0.023625389,0.039231848,0.046261102,-0.0020443827,0.01532732,0.028193135,0.058619387,0.008450327,0.0011903098,-0.002894491,-0.0043647336,-0.018270979,0.014921298,0.028269263,0.027203456,0.06070025,0.0045772605,0.02368883,0.013144953,0.020618292,-0.042429272,0.047707554,-0.018892698,0.026213778,-0.0034924212,-0.0038381743,0.00425054,0.015060868,-0.035856795,0.032583244,0.012554953,-0.0076446277,-0.03811529,0.0002373086,-0.041870993,-0.05998971,-0.017585816,-0.0045740884,-0.00042941555,0.00791108,-0.024031412,0.023993347,-0.018829258,-0.05552347,-0.0018381999,-0.036592707,-0.013906244,0.0018889527,0.039764754,-0.006857961,-0.01317033,0.0052370457,-0.011628716,0.027279586,-0.008158499,-0.01247248,-0.023371626,0.0054971534,0.01104506,-0.07054628,-0.006635918,0.028675284,0.087142415,0.026442165,0.038597442,-0.002482125,0.029664963,-0.003121292,-0.02181098,-0.014527965,0.008412262,-0.009414629,0.042429272,-0.03882583,0.010099791,-0.005814358,0.032633997,0.008964199,-0.008659682,-0.004666078,-0.075063266,0.029639587,-0.043799594,0.06115702,0.024412056,0.052529063,0.009167209,-0.033750556,0.012186996,-0.0021776087,0.07958026,0.039333355,-0.016329687,-0.045195293,0.027761735,-0.045068413,0.019653989,0.011844415,-0.013576352,0.034511846,-0.048544973,0.010385275,-0.020427968,-0.008240973,0.012428071,0.0026312112,-0.0415411,-0.0691252,0.007796886,0.013271836,-0.02111313,0.01247248,-0.0236127,-0.019476354,0.012808717,-0.055574223,-0.022343883,-0.0073527996,0.0037493568,-0.010328177,0.030273994,-0.05037207,0.011013339,-0.022546895,-0.011159253,0.024970336,0.04773293,0.006448767,0.012815061,-0.0010935625,-0.021620657,0.016240869,-0.049001746,-0.018169472,-0.0037620452,0.020339152,0.012827749,0.033395287,0.0009825409,-0.0107342,-0.020846678,-0.024209045,0.00099285,-0.01560646,-0.041845616,0.012960975,0.019539796,-0.003911131,-0.016431192,-0.009585919,0.008298069,0.029030554,0.06673982,0.0026407272,0.012573985,0.0019619097,-0.022128183,-0.030350124,-0.00093099516,-0.005246562,0.0077461335,-0.015251191,-0.049255513,-0.0015804713,0.021430334,0.012903878,-0.0015844364,0.005541562,0.0038032816,-0.021887109,-0.05128562,0.011577964,0.025693562,-0.017877644,-0.017065601,-0.0038001097,0.014109255,-0.0077715097,-0.0060617775,0.02460238,-0.014096567,-0.030096361,-0.006172799,0.0035653783,-0.004326669,-0.00811409,-0.038445182,0.007752477,0.010150543,0.00080411334,-0.014312266,-0.019425603,0.015390761,-0.065521754,0.0073337676,0.014705599,0.0027818833,-0.020098075,0.026721304,0.0008029238,0.024145605,-0.0014504174,0.004894465,-0.022623023,0.017522376,0.0002507898,-0.04920476,-0.018765816,0.0049008094,-0.015238503,-0.012155276,0.005731885,-0.02118926,-0.012700867,0.016393127,0.0053100027,-0.003390916,-0.0569953,-0.0122504365,-0.020174205,0.006756455,0.030197866,0.005389304,0.022331195,0.008659682,0.0134114055,-0.015720654,-0.005887315,0.009306779,-0.025515929,0.006680326,-0.008482047,-0.015720654,0.036465827,-0.01818216,0.007841295,-0.022623023,0.023942593,-0.0069721546,-0.017319364,-0.01957786,0.03057851,0.0127960285,0.01636775,-0.034816362,0.041870993,-0.026492918,0.027279586,-0.051717017,-0.02829464,0.013652481,-0.0280155,-0.0028151898,-0.029385822,-0.029284317,-0.013436781,0.0012434416,-0.0035526901,0.0016684956,0.02347313,-0.029867973,0.010030005,-0.0148959225,-0.030273994,-0.0048659164,0.0029626898,-0.0036510236,-0.035501525,0.045956586,-0.0094653815,0.006902369,-0.0448654,0.0056335516,-0.030096361,0.003758873,-0.00411097,0.034055073,0.007441617,0.01414732,0.00665495,-0.003245002,-0.025909262,-0.025731627,0.018232914,0.0038698947,0.0030308887,0.03154281,-0.034689482,0.019983882,0.0043615615,0.011470114,0.037455503,0.018385172,-0.002480539,-0.003406776,0.0122885015,-0.0073210793,-0.008139467,-0.035983674,-0.0067183906,0.0069404338,0.009129145,0.03644045,0.006448767,-0.064557455,-0.016697643,0.0015170304,-0.02278797,-0.010233017,0.020453345,-0.026949693,0.027355714,0.004831024,-0.0096810805,-0.060040463,-0.048189703,0.02556668,-0.031136792,0.0184613,-0.033116147,0.0074479613,-0.018803881,-0.031035285,0.02925894,-0.028472275,0.0022172593,0.021988614,-0.008945166,0.01428689,-0.047073144,-0.042074002,0.027761735,0.057198312,-0.030375501,-0.006851617,0.0099729085,-0.0037620452,0.013259147,-0.0102266725,-0.037024107,-0.013297211,-0.02314324,-0.022077432,-0.035932925,-0.036338944,-0.012599362,0.024335928,0.004082422,-0.030603888,-0.0047739274,-0.0134114055,-0.000038956674,-0.0055098417,-0.006807208,0.037607763,-0.02368883,0.009909468,-0.025795069,0.009674736,-0.0066930144,-0.020098075,0.00078309857,0.003888927,-0.0040253247,0.060446486,-0.028243886,0.041921742,0.01532732,0.021417646,-0.01442646,0.013906244,-0.022775281,-0.010873769,-0.00036220785,0.009915812,0.01476904,0.013995062,0.00452968,0.027634853,0.033268407,-0.0019365334,-0.023904528,-0.008393231,0.00067009445,-0.020859366,0.0029547596,0.0355269,0.00766366,-0.005931724,-0.0064043584,-0.017014848,-0.04118583,-0.01762388,-0.05197078,-0.015416138,-0.035425395,-0.028675284,0.008069682,0.020732485,-0.053138092,0.014730976,0.010461404,-0.068516165,-0.00850108,0.040297657,-0.015060868,-0.034689482,0.019857,0.031086039,0.045449056,0.018994205,-0.04577895,0.023523884,-0.023092486,0.01874044,0.004862745,0.05011831,-0.012726244,-0.0035812384,-0.025896573,0.0355269,-0.028421521,-0.014692911,-0.03588217,-0.04841809,0.016621515,0.005389304,0.02738109,0.016659578,-0.0031498405,0.00093892525,0.0131576415,-0.012003018,-0.025122594,0.0040507014,-0.014033126,-0.007270327,0.028243886,0.012383663,-0.00023750686,0.00439011,-0.057198312,0.0035558622,-0.010252048,-0.027634853,-0.039130345,0.013969685,-0.003317959,0.021823669,0.011241727,-0.004951562,-0.008799252,0.0033591953,0.030223243,0.02181098,-0.0054305405,0.026492918,0.018194849,-0.038775075,0.05065121,-0.007517746,0.015022804,-0.0035622062,-0.02354926,0.017966462,-0.0049864543,0.010556565,-0.00021946584,-0.018372484,-0.020427968,-0.012003018,-0.0069594663,-0.0028770445,0.038089912,0.03991701,0.044510134,-0.026188402,-0.0051165083,0.011983985,-0.0012719899,-0.00028786308,-0.034587976,0.0025059155,0.01825829,0.03895271,0.039460238,0.051361747,-0.026848188,-0.0108039845,0.020148829,-0.006800864,0.010277425,0.0943493,-0.01020764,0.020123452,-0.026442165,0.008919789,-0.0062140357,-0.05037207,0.043292068,0.036338944,-0.008970543,0.013284523,0.015695278,-0.02773636,-0.0100807585,0.010664415,0.024818078,-0.019793559,-0.004279088,0.0033369912,-0.020440657,0.029005177,-0.010175919,-0.02278797,0.01351291,-0.03352217,0.02278797,0.03748088,-0.024221733,0.018664312,0.0184613,0.013233771,-0.013715922,-0.038851205,-0.026010767,-0.027964747,-0.01790302,-0.03443572,0.009275059,-0.017890332,0.022559583,-0.02257227,-0.012770652,0.015441514,-0.02069442,-0.0046533896,-0.014324954,0.03907959,0.0010808742,-0.0131576415,0.03600905,0.0023790335,0.009877748,0.024551626,0.04689551,-0.0016185358,0.008196563,-0.0044313464,0.0032513458,-0.0125422655,-0.014654847,0.0025677702,-0.0017826891,-0.0040475293,0.014578718,-0.0010681861,0.028421521,0.012732588,0.00040245318,-0.041008193,0.025325606,-0.011990329,0.040881313,0.0017049741,-0.03024862,-0.033826686,0.004716831,-0.0131957065,-0.020263022,-0.028370768,0.022851411,-0.002055485,-0.047504544,0.0050435513,-0.005614519,0.016405815,0.035222385,0.032151844,-0.022978293,-0.012345598,0.011742909,0.020669043,0.002965862,-0.011964953,-0.016316999,0.011749254,-0.012561297,0.009141833,-0.010632694,-0.0125422655,0.004393282,0.020516785,0.025579369,0.055218954,0.056183256,-0.011273447,-0.023714207,-0.008615274,-0.0016169498,-0.029005177,0.008881725,-0.041008193,0.009141833,-0.02452625,-0.009497102,-0.012377319,0.007930112,-0.020301087,0.016329687,-0.0071815094,0.011901512,-0.0060490896,0.011374952,0.0020047324,-0.02466582,0.017991837,-0.030400878,0.01031549,-0.022597646,-0.006680326,0.03260862,-0.0184613,-0.0022077432,0.002988066,0.021861732,-0.02091012,-0.0039491956,-0.04501766,-0.011761942,-0.0017953773,0.013132266,-0.0038825828,-0.013487535,-0.0023140067,-0.0019983882,0.054254655,0.0027945715,0.0057636052,0.005687476,0.014972052,0.0006447181,0.0035780666,0.031466685,-0.0125042,-0.016659578,-0.0103345215,0.015720654,-0.0016462912,0.057807345,-0.0061823153,-0.0038572066,-0.009858715,-0.009915812,0.019146463,-0.030730769,0.023029044,-0.0053512393,0.015961729,0.03727787,0.032786254,-0.0001532494,-0.01945098,-0.014185384,-0.019336784,-0.029233564,-0.008285381,0.003121292,-0.00637581,-0.0074796816,0.027685607,-0.01292291,-0.017750762,0.01006807,0.0172813,0.026949693,-0.016672267,-0.017382806,-0.006591509,0.011254415,-0.0113242,0.019171838,-0.0074225846,-0.0045011314,-0.034790985,0.028243886,-0.015555708,0.0051133363,0.03555228,-0.031669695,-0.032862384,0.009884091,0.034055073,0.009896779,0.01166678,-0.0052814544,0.012815061,-0.0006522517,-0.0035717224,-0.0018699204,-0.0093575325,0.019438291,-0.031390555,-0.007638284,0.012244093,-0.035019375,-0.0096810805,0.02996948,0.0308069,-0.0061347345,0.020377215,-0.005319519,-0.020986248,0.015010116,0.024906896,-0.009700113,0.0033052706,-0.010620005,-0.011844415,-0.027355714,0.0037271527,0.0004171239,0.003406776,-0.015378073,-0.004748551,0.025274852,-0.012992695,-0.004444035,0.012218717,0.004082422,-0.0010087102,-0.017255923,0.024589691,-0.0172813,-0.0068198964,-0.030070985,-0.025972703,-0.016481945,-0.020174205,0.018968828,0.04209938,0.021100441,-0.0113242,0.005525702,-0.008336133,0.017293988,0.018296354,-0.013855492,0.0036510236,-0.028396145,-0.006318713,-0.014172696,0.073337674,0.0055764546,-0.009395597,0.043139808,0.051082607,0.008456672,0.042277012,-0.013208395,-0.0074098967,0.0104423715,-0.04263228,0.008551832,0.028320016,0.019857,0.0141346315,-0.0126881795,-0.029360447,0.030223243,0.0313398,-0.023384314,0.024069475,-0.0021696787,0.0052624224,-0.0040697334,-0.00609667,-0.004831024,-0.01575872,-0.014692911,0.04773293,0.0050403792,0.0052909707,0.0042854324,-0.0004448793,-0.005979304,-0.03895271,0.01763657,0.011057748,0.0044852714,0.030273994,-0.016481945,-0.0031514266,-0.01895614,-0.001205377,-0.014959363,0.013398717,0.01931141,-0.02989335,-0.035932925,-0.039612494,-0.01978087,-0.02124001,0.054711428,0.026442165,-0.006248928,0.018994205,0.016634203,0.010049038,0.018385172,-0.024564315,0.016545385,-0.024729261,0.04912863,-0.008260004,-0.010924522,0.014185384,0.013753986,-0.03720174,-0.021899797,0.003121292,0.027990123,-0.003053093,0.01776345,0.009693769,0.013804738,0.0047993036,0.011698501,0.00811409,-0.027076574,0.023435067,-0.0035844105,0.004256884,-0.0048024757,0.03154281,0.017116353,-0.011780974,0.007733445,0.009002263,-0.03144131,0.0044313464,0.025769692,0.025338294,0.025389045,-0.003679572,0.027228832,0.0077588214,0.017040225,-0.0057477453,-0.012307534,-0.009053016,-0.021519152,-0.003980916,0.011945921,0.0069404338,-0.030426253,-0.011159253,0.01264377,-0.025630122,0.018892698,0.00031998003,0.01644388,0.0111655975,-0.049103253,0.0076826923,0.0010063312,-0.02592195,-0.017928397,-0.01950173,0.028066251,0.03400432,-0.038318302,0.04222626,0.05176777,-0.0035748945,0.018067967,-0.0037049484,0.0016256729,0.015771406,-0.03448647,0.013119577,0.009497102,-0.023346249,-0.00721323,0.006226724,-0.00049285643,-0.027584102,-0.0006237033,0.009801619,-0.035679158,0.0061315624,-0.0005622449,-0.015796782,0.004618497,0.023726895,-0.024500873,-0.010055382,-0.04577895,-0.00013540666,-0.0052655945,0.008336133,0.010924522,-0.013652481,0.00961764,0.016316999,0.004593121,-0.006953122,0.00919893,-0.019793559,0.009674736,-0.007892047,-0.009040328,0.0100807585,-0.01937485,-0.011222694,-0.0017795172,0.04291142,-0.038013786,0.01951442,-0.0029277974,0.0042441958,0.012269469,-0.00937022,-0.012231405,-0.008761188,-0.026213778,0.026873562,-0.036059804,0.0006792141,0.025960015,-0.029233564,-0.034664106,-0.059126914,-0.015999794,-0.016900655,-0.0014797589,0.032151844,-0.030299371,0.017814204,-0.020922808,0.009306779,0.03415658,-0.0212527,-0.032862384,0.034867115,-0.041566476,0.022902163,-0.02333356,0.029944103,-0.015149686,0.018499365,-0.0057477453,-0.010283769,-0.04047529,0.017522376,0.020897431,-0.0066930144,-0.015187751,-0.0064075305,-0.0049991426,-0.013386029,0.0021585764,0.010182263,-0.007219574,0.034105826,0.014020438,0.010524845,-0.018943451,0.006030057,0.00091672095,-0.017332053,0.009179898,-0.0226484,0.017052913,-0.033623673,-0.035044752,0.0024979853,0.006467799,-0.026518295,-0.0029436576,0.027913993,-0.018524742,0.019209903,0.008532801,-0.037227117,0.014921298,0.010391619,-0.023130551,-0.004539196,-0.00055510784,-0.029944103,0.028599156,-0.022128183,0.016253557,-0.03534927,0.014274201,-0.014274201,0.021633346,0.0066930144,0.0024599207,-0.025960015,-0.0071117245,0.018638935,-0.00094130426,0.021214636,-0.011393985,0.004114142,-0.012345598,-0.00808237,-0.023841089,-0.0036986042,0.017040225,-0.0038350022,-0.020872055,0.02340969,-0.028142381,0.029994855,0.013753986,0.033395287,0.023942593,-0.0022759421,-0.005443229,-0.035577655,0.026442165,-0.033978943,0.017573128,0.0048976373,-0.03956174,0.012174307,0.00010338883,-0.022724528,-0.028472275,-0.0184613,0.006464627,0.0059412397,0.0019317752,-0.014718288,0.012339254,-0.030045608,0.00749237,-0.03024862,-0.004475755,0.013221082,0.0074035525,0.005443229,-0.01031549,0.0240441,0.030299371,0.008431295,-0.032481737,-0.0033655395,0.0027898133,-0.022737216,-0.019412914,0.009179898,-0.013335276,-0.00947807,0.024551626,0.030299371,0.022889474,0.0069214017,0.023803024,-0.006026885,-0.012377319,-0.0017430387,-0.039409485,0.0004028497,-0.008279037,0.037049484,-0.011108501,0.00030570582,-0.01608861,0.029005177,0.029081307,0.012573985,-0.0030055125,0.06070025,0.022584958,-0.023929905,-0.0063345735,0.007784198,0.0016669095,-0.007930112,0.020466033,0.013703234,-0.010030005,0.010258392,0.010213984,0.0033211308,0.0028564264,0.014451836,-0.018232914,-0.044053357,-0.01006807,0.024209045,-0.04813895,0.01957786,0.023232056,-0.03288776,0.001416318,0.01945098,0.015340009,0.03093378,0.0100807585,0.009452693,-0.019362161,-0.021087755,0.01735743,0.045347553,-0.020237645,0.019565172,-0.014972052,-0.011108501,-0.009141833,-0.008399574,-0.0006157732,0.008056994,0.034790985,0.00022977499,0.004599465,0.0046565617,0.025553992,-0.04159185,-0.013639793,0.011197318,-0.051666263,0.010721511,-0.0046248413,-0.0117111895,0.011362264,-0.0003998759,-0.049788415,-0.00048770188,0.0013520841,-0.01853743,-0.00864065,-0.00016692886,-0.0052687665,-0.008215596,-0.029461952,-0.01244076]},{"id":"guide-roles-0","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Overview\nGuild roles can be created, fetched, edited, and deleted. Use guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Requires Manage Roles permission. For permission bitfields, use resolvePermissionsToBitfield() or role.has() to check a role's permissions.","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.017327465,0.045316245,0.009903026,-0.010978211,-0.028679162,-0.01670499,-0.013660517,0.015573215,0.01108573,0.036827937,0.06224759,-0.046266936,0.030784262,-0.020394573,0.028769704,0.000045978333,-0.06532601,0.010797127,0.025623372,0.09380146,0.048530485,0.033613697,0.010808445,0.03411168,-0.058354285,0.03114643,0.036465768,0.056407634,-0.016037242,-0.041445576,0.040562794,-0.014565935,-0.0006741131,-0.011668594,-0.012596648,-0.04054016,0.0248764,0.007265991,0.005511741,0.011017824,-0.0144867115,0.02021349,0.014656478,-0.022329908,-0.024468962,0.032323476,0.019149622,0.022782618,0.011176271,0.0123023875,-0.009970932,0.01143658,0.00017542503,0.047670335,-0.00075758144,0.011894949,-0.057765763,-0.016535223,-0.044705085,0.039385747,-0.011419603,-0.060798917,0.018119708,0.015278954,0.008460013,0.03556035,-0.09959614,0.008748616,-0.0004654422,0.046946,0.026755145,-0.05305758,0.02392571,-0.0054749586,0.005330657,-0.032255568,0.05292177,0.03915939,0.013287031,-0.030376824,-0.01835738,0.036941115,-0.052287973,-0.009455974,0.006434137,0.028973423,-0.00922962,-0.038774587,-0.0014614037,-0.04889265,-0.045361515,-0.050522406,-0.05935025,0.0031180384,-0.0010921622,-0.054279897,-0.015833523,0.016818168,-0.01128379,0.049345363,0.058490098,0.004849653,-0.035515077,-0.017599091,0.028271724,0.020179536,-0.05953133,0.053600833,-0.0013298348,0.012460835,-0.10158806,0.010287829,0.014690431,0.01845924,0.0014741361,0.026053445,0.04042698,-0.038299244,0.033545792,-0.03144069,-0.09271496,-0.015109188,0.0064228196,-0.07949583,-0.04153612,-0.021594254,-0.029426133,-0.058535367,-0.02126604,0.0023512612,-0.032255568,0.0055032526,0.037416458,-0.032572467,-0.03605833,0.005520229,-0.032210298,-0.023450365,-0.018142343,-0.038299244,-0.0015618486,0.001168557,-0.016410727,0.06184015,-0.04475036,0.017316148,-0.033138353,-0.0042498126,-0.042215183,0.03565089,-0.050431866,-0.0066208798,-0.011147977,-0.047489252,-0.04124186,-0.035198182,-0.015867475,-0.015641121,-0.050296053,-0.016761579,-0.005070349,-0.02462741,-0.0019211869,-0.025306474,-0.0030925735,-0.08750879,0.009755895,0.0073056035,-0.037688084,0.045950036,-0.003881986,0.0071358373,-0.028226452,-0.001875916,-0.013083312,0.0178594,-0.014350899,-0.022182778,0.022194095,0.00018249861,0.009614423,-0.022454403,-0.03893304,0.007713042,-0.014633842,0.02863389,-0.045655776,-0.03535663,-0.03762018,0.014724384,0.0055485237,0.04653856,-0.0048581413,0.025102755,0.026392978,0.011827042,0.008058233,0.026800416,-0.005435346,-0.037076928,0.018538464,-0.007005683,0.06337936,-0.005291045,-0.032006577,-0.04058543,-0.0042158593,-0.006179488,-0.026868323,-0.0073848274,0.026664604,-0.059123892,-0.033432614,-0.0033641993,-0.053646103,0.035447173,-0.06405843,0.0006705763,-0.009037218,0.0061511938,-0.03576407,-0.013468115,-0.0055768183,-0.024650045,0.017248241,0.02216014,-0.024785858,-0.003135015,0.024695316,-0.00501376,0.0054438347,0.012800368,-0.0100048855,-0.06591454,0.011215883,0.011051777,-0.02483113,0.044501368,0.0030784262,-0.0315086,-0.033228897,-0.01710111,-0.0023753115,-0.007945056,0.020100312,-0.011657276,0.04153612,0.012528742,0.044908807,0.02929032,0.035130277,0.021809291,0.020824648,-0.0004944439,-0.005005272,-0.02512539,0.020179536,0.03365897,0.025170662,0.02512539,-0.02578182,-0.0124947885,0.011645958,-0.004688375,-0.042509444,0.034881286,-0.0022253513,-0.00064051355,-0.029833572,-0.034745473,-0.032232933,0.012483471,0.04149085,-0.06786119,-0.035085004,0.007277309,0.05577384,-0.00092734763,0.0019183576,-0.03164441,0.010412324,0.008924041,0.01484888,0.020304032,-0.0029680782,0.03485865,-0.011029141,-0.018979855,0.016784213,0.031599138,0.004368649,-0.005477788,0.0079563735,0.01303804,0.028271724,-0.016207008,0.023359822,-0.026574062,0.027547387,0.035401903,-0.021288676,0.040789146,-0.01474702,0.01083108,0.025691278,-0.024446325,-0.012008126,-0.0630172,-0.004829847,-0.05722251,0.022692075,0.035379265,0.009835119,-0.022443086,-0.01930807,-0.00233287,0.020190854,0.0066095623,0.013898189,0.03180286,0.04298479,-0.017995212,-0.014203768,0.0015264807,0.00646809,-0.051246744,-0.036148872,-0.002453121,0.021107592,-0.008188387,0.05731305,-0.009410704,-0.024016252,0.055140045,-0.00023254426,0.017870717,0.0015929724,0.072252475,0.048032504,-0.027954826,0.0038508622,-0.019274117,-0.01794994,-0.022499673,-0.041287128,-0.008935358,-0.016806848,0.03264037,-0.005992745,0.03861614,0.00006308758,0.036465768,-0.02623453,-0.027502116,-0.03114643,-0.022454403,0.029380862,-0.015222365,0.019149622,0.056860343,-0.05441571,-0.030286282,-0.011442238,0.020394573,0.035786703,0.018323427,-0.014690431,-0.00060832873,-0.03725801,-0.018821407,-0.004445044,0.033093084,-0.070351094,-0.0010313294,-0.0080525745,0.003952722,-0.0018179126,-0.007667771,-0.015426084,0.0025804455,-0.004088535,-0.004323378,0.028068004,-0.03798235,0.017610408,-0.0038282268,-0.030557908,0.014407488,-0.021311311,-0.017293513,0.00009337138,0.039000943,0.046719644,0.017112428,-0.011894949,-0.015471355,0.027705835,0.052197434,0.022918431,-0.039544195,0.026347706,0.018583735,-0.0030869145,0.008505284,-0.024785858,-0.006043675,-0.038299244,0.0283849,-0.0014394755,-0.027049407,0.023314552,0.03958947,0.028068004,0.006400184,0.051427826,-0.043097965,0.031236973,-0.032006577,0.01359261,0.0035028416,-0.031485964,-0.019149622,-0.015776934,-0.013818964,0.050975118,-0.035379265,-0.011668594,0.0028902688,-0.0037744674,-0.041966192,-0.05867118,0.06310774,0.015335542,-0.0060323575,-0.024401056,0.013128582,0.014531982,-0.06727267,0.007045295,0.010910304,0.006434137,-0.01183836,-0.014464076,0.013479432,0.02578182,0.0014783803,0.0049119005,-0.07297681,0.03972528,-0.027343668,-0.009269232,0.00436299,0.021481076,0.028226452,-0.00070983474,-0.021356583,-0.014826244,0.019704191,-0.050024427,0.0010164748,-0.016331503,0.012313705,0.04076651,0.07062272,-0.041649297,0.008312883,-0.029878844,0.00029090137,-0.044275012,-0.04124186,0.006745375,0.024717951,0.004940195,-0.029878844,0.011272472,0.009806825,-0.030082563,-0.035786703,-0.0023342846,0.043165874,0.006490726,0.0015491161,-0.02252231,-0.017700952,0.038887765,0.06564291,0.037348554,0.014101909,-0.011612005,-0.0113460375,-0.029720394,0.011815724,0.045203067,-0.009320161,0.0025875191,-0.025419652,0.011600687,-0.055547483,-0.016603129,0.014464076,0.022850525,-0.005276898,-0.028882882,0.009150395,-0.013637881,0.017723586,0.0025351746,-0.0070226598,0.013185171,0.04970753,-0.04504462,0.0028930982,-0.009184348,-0.029584581,0.010536819,-0.0131399,-0.031078523,0.031870764,0.010542478,-0.03216503,-0.017293513,0.037416458,0.05292177,-0.006790646,0.0019155281,0.030625815,0.013366255,0.050114967,0.003069938,-0.006213441,0.015278954,-0.038955674,0.015493991,0.017927306,-0.022533627,-0.008369471,0.041558754,0.040970232,0.02161689,-0.047625065,-0.0016424875,0.012924863,-0.004849653,-0.0061228992,-0.035175547,-0.012143939,-0.031191701,0.004286595,0.020688836,0.023359822,0.047443982,-0.048983194,-0.0079563735,0.00090188265,-0.024491597,0.0066095623,-0.037144832,-0.016727624,-0.0005269824,-0.00877691,0.010389688,-0.024559503,-0.0024800005,-0.024038887,-0.056815073,-0.025646007,0.018097071,0.010678291,0.0004919682,-0.042509444,0.0074300985,0.022352543,0.042554714,0.011872313,0.022737347,0.01268719,-0.025193296,0.012743779,0.017033204,0.007407463,-0.011815724,-0.067680106,0.012030762,-0.01800653,-0.036465768,-0.021005731,-0.026958864,0.012098668,-0.020960461,0.03671476,0.019375976,0.013536021,0.01655786,-0.011272472,-0.019624967,-0.022284636,-0.00066810055,0.04794196,-0.03886513,-0.00962574,0.005528718,0.020032406,-0.08560741,0.019670239,-0.024219971,-0.027841648,0.044365555,-0.0058060023,0.023450365,-0.008001644,0.033636335,-0.028271724,-0.010519843,-0.022646805,-0.0040064813,-0.0241747,0.0018745012,0.017587774,0.014441441,0.017666997,0.0057550725,-0.0075715706,0.0062870067,-0.0047675995,0.0022097894,0.010746198,-0.019998454,0.001479795,-0.03565089,-0.033387344,0.007277309,-0.040245894,0.015516627,-0.009438998,-0.015188412,-0.047715608,0.01058209,0.010185969,0.011815724,0.0052740686,0.024197336,-0.01736142,-0.007984668,-0.04318851,0.020292714,-0.008103504,0.014962057,0.009144736,-0.013479432,-0.0129927695,-0.024401056,-0.0035000122,-0.00501376,-0.04699127,0.023473,-0.015516627,-0.0074753696,0.032119755,0.018221566,0.022975018,-0.05437044,-0.0005128352,0.006213441,-0.0041366355,0.03556035,-0.0033104399,-0.02412943,0.0035283065,-0.0041253176,0.02743421,-0.028996058,0.042803705,-0.0105990665,0.006004063,0.008663733,0.0012725388,-0.0012223163,-0.03857087,0.005412711,0.049526446,0.00065466075,-0.022001693,-0.020688836,0.010966893,0.013717105,-0.016410727,0.026415613,-0.026189258,0.03791444,-0.04533888,-0.00087641773,0.0047477935,0.014916786,-0.028000098,-0.0033359048,0.024899036,0.0007738507,-0.015211048,0.009659694,-0.034745473,-0.006926459,0.03605833,0.026777782,-0.030037291,0.009699306,-0.037597544,-0.012019443,0.06595981,0.014814926,-0.022612851,-0.03295727,0.01474702,-0.030059926,-0.017666997,-0.00022122651,0.01635414,-0.019523107,-0.020586975,0.05767522,0.0098520955,-0.008844816,0.060255665,0.011323403,-0.0012824418,-0.033319436,0.017768858,-0.0052995333,0.007945056,-0.019987134,-0.0343154,-0.0105990665,-0.0014111812,0.030557908,0.010265193,0.005370269,0.007633818,0.008607144,0.033274166,-0.0041564414,0.00877691,0.004246983,0.016161738,-0.011357356,-0.024038887,-0.047217626,-0.03977055,0.0020230466,0.0417172,-0.00882784,0.018889314,-0.003791444,0.006485067,-0.005641895,-0.041920923,0.006173829,-0.059621874,-0.031169066,0.0031717976,-0.027139949,0.039634738,0.035582986,0.022329908,0.014305628,0.023314552,-0.045836862,-0.010729221,-0.005675848,0.0276832,0.013603928,-0.011159295,0.010576432,0.0024545356,0.0088561345,-0.013275713,0.012313705,-0.023450365,0.024084158,-0.0107518565,-0.0024743418,-0.03230084,-0.015018646,-0.0075659114,-0.004569539,-0.026460884,-0.007582888,0.011453556,0.010740538,-0.014724384,0.010780151,-0.021322628,-0.033523157,0.023008972,-0.021084957,0.020903872,-0.04567841,-0.0088561345,-0.024084158,-0.06500912,0.014837562,0.019998454,-0.030467365,-0.009059854,-0.008601485,0.031916037,0.03214239,0.027117314,-0.022544945,0.017927306,-0.054234628,0.015788252,0.012517424,0.03173495,0.012291069,-0.000104247025,-0.010542478,0.014882833,0.0028449977,0.024265243,-0.030037291,-0.009156055,-0.048983194,0.02116418,-0.004643104,0.015414767,-0.017531184,0.053148124,-0.018583735,-0.0140453195,0.036760032,-0.010389688,-0.007633818,-0.021673478,0.021979058,0.018334744,0.024740588,0.055275857,-0.006185147,0.007911103,0.031123795,0.009784189,-0.0155392615,-0.00737351,-0.004368649,0.03110116,0.012268434,-0.001121164,0.033274166,0.021503713,0.017531184,0.027547387,0.0072546736,0.0073904865,-0.018515829,0.007186767,0.024763223,-0.036329955,-0.029380862,0.033183623,0.01003318,-0.017836764,0.007226379,0.0155392615,-0.032187663,-0.0016339992,-0.004648763,-0.029720394,-0.0021249063,-0.0030755969,0.022952383,-0.02587236,0.031418055,0.013173853,-0.010565113,-0.01123286,0.000056588717,-0.031780224,-0.0017740562,-0.03510764,0.0056956545,0.021243405,0.018051801,0.021152863,-0.017191652,-0.018549781,-0.005953133,-0.008731639,-0.025532829,0.031191701,0.008488308,0.009654035,-0.013660517,0.0015052599,0.002317308,-0.015822206,-0.036986385,0.018278155,-0.006575609,-0.038955674,-0.0007462637,-0.026506156,-0.024468962,-0.0076960656,-0.01679553,0.023903074,-0.026958864,-0.015561897,-0.02027008,-0.010780151,0.030127833,-0.016580494,-0.028407536,-0.02433315,-0.01118759,0.025238568,0.035582986,0.02221673,-0.013717105,0.0042271772,0.0062077823,-0.024468962,0.014690431,0.021492396,0.0012647578,0.0020287056,0.0031576504,0.0011423847,0.037054293,-0.006530338,-0.004232836,0.028996058,0.031169066,-0.0007731434,-0.032821454,0.012472154,0.046153758,-0.0241747,0.023473,-0.0012520254,0.019692874,0.0061172405,0.0350171,-0.0008721736,0.026664604,0.030422095,0.016693672,-0.003791444,0.015426084,-0.0038904743,-0.015573215,0.023563541,-0.024219971,-0.016274914,0.030490002,0.0023356993,0.040313803,0.021594254,-0.006784987,-0.030806897,0.05346502,0.0020598294,-0.002226766,-0.03245929,0.004043264,0.015516627,0.0078997845,-0.008041257,-0.04108341,-0.029063964,-0.00441392,0.013422844,0.06369626,0.0062077823,0.027004136,0.010774491,0.0032962929,-0.023054244,0.043505404,-0.02738894,0.01394346,-0.025894998,-0.0017698121,0.047443982,-0.015143141,0.0034207879,-0.07161868,0.011702547,-0.010678291,-0.0050279074,0.05020551,0.041400306,0.0052627507,0.013547339,-0.038389787,0.048937924,-0.04538415,0.00094432425,-0.020949144,-0.018629005,-0.015075235,-0.027253127,0.037054293,-0.0061172405,-0.023042927,-0.0034773767,0.012200528,-0.008997606,0.006966071,0.025012214,0.013264395,0.017327465,0.006666151,0.04529361,-0.004085705,-0.040245894,-0.03576407,0.025623372,-0.017814128,-0.011125342,-0.019183574,-0.023812532,-0.023631448,0.0041309763,-0.016772896,-0.022273319,0.01619569,-0.030490002,0.011521463,0.03300254,0.024785858,-0.007215061,-0.023540907,0.03234611,-0.0071980846,0.044569273,0.01555058,-0.015471355,0.016037242,-0.008963653,0.04884738,-0.0045808568,-0.019138305,-0.0060832873,0.008273271,0.021379218,0.04106077,0.017531184,-0.021582937,-0.00066916156,-0.0017217117,-0.016229644,-0.01925148,0.009857754,0.021707432,0.009472951,-0.02392571,0.021084957,-0.0049430244,0.0032991222,0.031259608,-0.02196774,-0.009110783,-0.003952722,-0.0144867115,0.009393727,0.00922962,0.010010544,-0.013287031,0.0124382,0.008833499,-0.007809243,-0.00561643,-0.018198932,-0.011940219,-0.024989577,0.014203768,0.008590167,-0.0052203094,-0.014939422,0.021831928,-0.03395323,0.03845769,-0.033500522,-0.0037178788,0.008522261,-0.004993954,0.02623453,0.016274914,0.0038452034,0.03411168,-0.0068528936,-0.038684048,0.024740588,-0.025532829,-0.014260356,-0.0028506566,0.023744626,0.010825422,-0.008448696,-0.014679113,-0.021854563,0.013287031,-0.0005188478,-0.02738894,0.026008174,-0.009195667,-0.0026342047,-0.00017073877,0.038140796,0.021526348,0.010451936,-0.008194046,0.016716307,0.002327211,-0.028747069,-0.0016127784,-0.014882833,-0.016139101,-0.021005731,-0.0042300066,0.016535223,0.009472951,-0.03311572,0.010966893,0.002126321,-0.0049684895,-0.00476477,-0.029856207,0.02999202,-0.008335518,-0.023382459,-0.034519117,0.010689609,-0.035288725,-0.004147953,0.047127083,0.026687238,-0.004790235,-0.017429326,-0.00030752431,0.010044497,0.028226452,0.013807647,0.005930498,0.015437402,-0.050522406,-0.005152403,0.026257165,0.062066507,0.023156103,-0.026483519,-0.011091389,0.038095523,0.0049119005,0.03234611,-0.032323476,0.004085705,0.020519068,-0.012721144,-0.004422408,0.007005683,0.011645958,-0.005941815,0.0046204687,-0.020688836,0.015709028,0.02528384,0.0037348554,-0.0020188026,0.0035792363,0.0017683974,0.007090566,0.0070000244,-0.03655631,0.019545743,-0.04653856,0.020813331,0.00446485,0.00008377783,-0.0007062979,0.009388068,-0.008307224,-0.038389787,0.013547339,0.034383304,0.007995985,0.013185171,-0.0008360983,0.0023540906,0.00026808906,0.023076879,0.0062191,-0.0032962929,0.0059022033,-0.0027063554,-0.025057483,-0.022352543,-0.038684048,-0.058852267,0.054144084,0.031282242,0.0045808568,-0.008539237,-0.0018320597,-0.0025620542,0.007101884,-0.015516627,0.010672632,-0.010072792,0.020236125,-0.033138353,0.017259559,0.0042696185,0.0009973762,0.006004063,0.016218327,0.024672681,0.030105198,-0.005050543,0.0024686828,0.011091389,0.018436603,0.03135015,0.013219125,0.034632295,-0.018844042,-0.013060676,0.013966096,0.012404247,-0.02322401,0.042305727,0.026845688,-0.032527193,0.062428672,0.02492167,-0.050024427,0.014203768,0.011906266,-0.0054183695,-0.002496977,0.0002679122,0.022488356,0.009744577,0.013445479,-0.0044563613,-0.022839205,0.011317743,0.0109442575,0.0032510217,-0.0045157797,0.024061523,0.010689609,0.008375131,0.017135063,0.0025960074,0.026121352,0.043663856,0.022307273,0.026890958,-0.0071358373,-0.028928151,-0.006603903,-0.024355784,-0.03626205,0.018798772,0.007820561,0.0033783463,-0.02025876,0.047670335,0.024310512,0.00025305766,0.038435057,-0.0014012781,0.00541554,-0.021673478,-0.028792338,0.036420498,-0.0007512152,-0.0036471428,0.04282634,-0.008731639,-0.0054296874,-0.039204665,-0.0035000122,0.017689632,-0.003706561,0.01615042,0.0071132015,-0.044365555,0.010378371,0.019692874,-0.025261203,0.0060606515,-0.018572416,0.0012958816,0.010423642,0.002321552,-0.0024460473,-0.018776136,-0.009184348,0.0012972964,-0.035582986,-0.0015774105,-0.016772896,0.021526348,-0.0033189282,-0.0069377767,-0.036171507,0.011657276,-0.0006734057,0.002000411,-0.0042950837,0.0019424077,0.015460038,0.03015047,0.0013545924,0.03685057,0.017395372,0.008963653,-0.002532345,-0.011549757,0.0111536365,0.024219971,-0.03630732,0.0020541705,0.030014656,-0.010446277,0.009008924,-0.007458393,0.0115554165,0.0001851512,-0.010774491,-0.028611256,0.009269232,0.010061474,-0.003966869,0.019047761,0.03429276,-0.0073452154,-0.005285386,-0.01038403,-0.021786656,-0.022907112,0.013785011,0.033840053,-0.026755145,-0.016173055,-0.039929,-0.022273319,-0.01359261,-0.0026992818,-0.008341177,-0.018968537,-0.019353341,-0.005452323,0.03390796,0.011057436,-0.0010751856,-0.015335542,0.01038403,0.019353341,0.037801262,0.0132417595,0.006043675,0.018493192,0.0061115813,0.00586825,0.033387344,0.002603081,-0.009337138,-0.0017698121,-0.03173495,0.01464516,0.005726778,-0.015958019,-0.0013489336,0.0008070966,0.021673478,0.0076847477,-0.011702547,-0.01830079,-0.012902227,-0.026664604,-0.00656995,-0.034270126,-0.017768858,-0.019624967,-0.013332302,-0.024152065,-0.0070283185,-0.00651902,0.029177142,-0.01474702,0.014260356,0.025148027,-0.07166395,-0.007894126,-0.005322169,0.006128558,0.0088561345,-0.022046965,0.009801166,-0.010101086,-0.013354938,-0.008001644,-0.02483113,-0.0077979253,0.0076960656,0.019704191,-0.007639477,0.005907862,-0.034021135,0.06423951,-0.02076806,-0.022443086,0.020156901,0.03494919,-0.027547387,0.004077217,0.007605524,0.0077073835,-0.0030982322,0.00007617372,0.019093033,0.020202173,-0.0024149234,0.029177142,0.013196489,-0.028452806,-0.011244178,0.04348277,0.00042123225,-0.011521463,0.044772994,-0.046266936,0.013875553,0.011476192,-0.007215061,0.026958864,-0.010327441,-0.0192628,-0.026755145,0.024717951,0.0018179126,0.0012491959,-0.025102755,0.0010440618,0.010327441,-0.03526609,-0.026890958,0.013196489,-0.0012675873,-0.0012909301,0.018470557,0.009444657,-0.011561075,-0.022952383,-0.005622089,0.0132417595,-0.017440643,-0.011295108,-0.042645257,0.04022326,-0.018040484,0.0056588715,0.003601872,-0.020949144,-0.038955674,0.008409084,0.0014430123,0.0009994982,-0.011057436,0.051880535,-0.01003318,-0.013468115,-0.018051801,-0.00051707943,0.018470557,0.0040545817,-0.017259559,0.01655786,-0.020383256,-0.027162584,0.014667795,0.006439796,-0.0039300863,0.006128558,-0.0025549806,0.001509504,0.010265193,-0.019636285,0.019421248,0.008295906,0.008239318,0.010344418,0.00777529,0.011566734,-0.013196489,0.013411526,0.022578899,0.039906364,-0.012268434,0.017666997,-0.019194894,0.045248337,-0.017576456,0.03977055,-0.005446664,-0.024650045,0.013411526,-0.0048383353,0.029267684,0.0389104,0.037507,0.0343154,-0.00406307,0.036397863,0.012823003,-0.033319436,0.0048638,0.0050335666,-0.033885323,-0.015403449,-0.01815366,-0.040947597,-0.016931344,0.03094271,-0.016489953,0.0110008465,0.016161738,-0.016376775,0.00073353125,-0.009716283,0.000055660308,-0.030874804,0.0037829557,0.0007292871]},{"id":"guide-roles-1","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Create a role\nUse guild.createRole() to create a new role. Pass name, permissions, color, hoist, mentionable, unicode_emoji, position, or hoist_position. Permissions accept PermissionResolvable (string, number, array) for convenience.\n\n```javascript\nimport { Client, Events, PermissionFlags, resolvePermissionsToBitfield } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!createrole' && message.guildId) {\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const role = await guild.createRole({\n name: 'Moderator',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages'],\n color: 0x5865f2,\n hoist: true,\n mentionable: false,\n });\n await message.reply(`Created role ${role.name} (${role.id})`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.012673678,0.021049427,-0.0034116984,0.027224079,-0.0021648936,-0.02272921,-0.040407486,0.022126805,0.029587362,0.049767934,0.020632377,-0.009082416,0.023771835,-0.038021035,0.014585156,0.008850722,-0.06056489,-0.011706354,0.025416864,0.056626085,0.03894781,-0.008839137,-0.018408112,0.04763635,-0.045782793,0.022960905,0.026899708,0.057413846,-0.035843108,-0.04953624,0.057413846,-0.027942332,-0.028776431,-0.019566583,-0.018431282,-0.027641129,0.03236769,0.012581,-0.029587362,0.03570409,-0.026621675,-0.0349395,0.052501928,-0.022381669,-0.001799975,0.048099734,-0.010872255,0.030884849,0.0007689354,0.022879811,-0.017921554,0.0043703336,0.019867785,0.09657018,-0.0059545436,0.011781655,-0.07428119,0.00020780083,-0.044508476,0.058757674,-0.010993894,-0.0592674,0.013461439,0.01808374,-0.0013590319,0.04270126,-0.08456842,-0.0034812067,0.00771542,0.08123202,0.036028463,-0.02921665,0.027432604,-0.025857083,-0.018269096,-0.047682688,0.032599386,0.030259276,-0.009053455,-0.028197195,-0.017238056,0.022300577,-0.03848442,-0.025324186,-0.0034638296,0.033873707,-0.028104518,-0.045666944,-0.01663565,-0.06927659,-0.007976077,-0.04390607,-0.081417374,0.011816409,0.046616893,-0.0072694086,-0.00020725779,0.024397409,-0.0007863125,0.06649626,0.06695965,0.0040980927,-0.048794817,-0.01768986,0.003906945,0.0071535613,-0.025694897,0.037603986,0.015071714,0.0013300701,-0.09860909,0.03171895,0.034313925,0.0034667258,0.001329346,0.009748537,0.04999963,-0.02272921,0.053567722,-0.041241586,-0.05722849,-0.03776617,0.039040487,-0.04819241,-0.030212937,-0.033642013,-0.032205507,-0.044763338,-0.02643632,0.009592144,0.0057315375,0.0003193037,0.058340624,-0.02968004,-0.035240702,0.008954984,-0.008346787,-0.032390863,-0.024930306,-0.0064874403,-0.016542973,-0.012198704,0.014446139,0.046570554,-0.012928542,0.009893347,-0.034730975,0.012337721,-0.07122283,0.044021916,-0.043929238,-0.015106468,-0.022381669,-0.00041053334,-0.029610531,-0.04870214,0.00579815,0.011127119,-0.04907285,-0.01950866,0.013669963,-0.012569415,-0.0021286914,-0.04223787,-0.010310397,-0.05815527,-0.009094001,0.01521073,-0.03575043,0.060703907,0.02557905,0.018906254,-0.0015972425,0.00660908,0.019554999,0.0023850033,-0.0070145447,-0.0132297445,0.016114337,0.0116889775,0.0030294028,-0.006238369,-0.025949761,-0.015604611,-0.037650324,0.00041053334,-0.01786363,-0.02557905,0.0008210667,0.007651704,-0.03521753,0.01299805,0.0071535613,-0.0064700632,0.04796072,0.01420286,0.05644073,0.02108418,0.03042146,-0.04186716,-0.0060588056,0.004703394,0.0394112,-0.045829132,-0.010258265,-0.011202419,-0.018952593,-0.010866462,-0.017956307,-0.000681326,0.032182336,-0.03167261,-0.00472946,0.012546246,-0.05037034,0.05240925,-0.056672424,0.008485803,-0.01707587,-0.01506013,-0.06209407,0.0009854248,0.01909161,-0.023181014,0.00017458528,0.036260158,0.0045527928,-0.0012793869,0.008103508,0.043141477,0.007113015,0.023412708,-0.023424294,-0.058247946,0.013820564,-0.013368761,0.015720459,0.049721595,0.028730093,0.0019751939,-0.024026698,-0.033920046,0.006417932,-0.02921665,0.013449854,-0.033642013,0.023795005,-0.00085726887,0.046987604,0.027502112,0.07803464,0.0025211235,0.03336398,0.01992571,0.009916516,-0.01157313,0.0069508287,0.01641554,0.0011425425,-0.013137067,-0.014110182,-0.020168988,0.01461991,-0.004995908,-0.02292615,0.004604924,-0.010953348,-0.011219796,-0.023250522,-0.017875215,-0.0063947625,-0.024420578,0.016531387,-0.02798867,-0.038623437,0.017875215,0.033873707,0.01764352,-0.011909087,-0.0053579304,0.013832149,-0.008682744,0.0012207393,0.0067480966,-0.011816409,0.033224963,-0.008033999,-0.043326832,0.007640119,0.0039880383,0.014365046,-0.006516402,-0.0056823026,-0.0006429517,0.029749548,0.0017463957,0.053938434,0.0018216964,0.033085946,0.052687284,-0.024235222,0.026181456,-0.0065395716,-0.00375924,0.021732925,-0.015083299,-0.028174026,-0.034174908,0.029077634,-0.051853184,0.043210987,0.048470445,0.0129401265,-0.016230185,-0.023795005,-0.0069334516,0.024443747,0.020412268,0.020979919,0.04629252,0.023354786,-0.057460185,0.017006362,-0.037140597,-0.0036665623,-0.038090542,-0.018686146,-0.006973998,0.024096206,0.0019143741,0.06496708,-0.030583646,-0.010356735,0.057830896,0.03885513,-0.010571052,-0.00067299954,0.07659814,0.060750246,-0.021454891,-0.0039243223,-0.028197195,-0.016670404,0.0019056855,-0.02840572,0.0029569985,0.0316031,0.0064874403,0.0036723546,0.046454705,-0.029981242,0.050324,-0.012824279,-0.023331616,-0.017655104,-0.028197195,0.012581,-0.016566142,0.010067117,0.02641315,-0.07687616,-0.007165146,-0.020968333,0.015685704,0.0025587738,0.0058473847,0.001928855,-0.021999374,0.02435107,-0.0037853057,-0.0020389098,0.030514138,-0.066913314,0.0070435065,-0.011555753,-0.032390863,-0.0121060265,-0.013032804,-0.030908018,-0.0031104959,-0.0025833915,-0.0049698427,-0.001976642,-0.05328969,-0.015986906,-0.019276965,-0.0043500606,-0.0080629615,-0.0065569486,-0.0051812637,0.00016797836,0.032228675,0.043350004,0.056209035,-0.005801046,0.023725497,0.06302085,0.053984772,0.020203743,0.0037621362,0.0225091,0.023470633,0.031881135,0.023771835,-0.000058873884,-0.031834796,-0.028127687,0.007767551,0.0016276524,0.0043992954,0.0259961,0.012673678,0.01909161,0.02641315,0.04142694,-0.023181014,0.040546503,-0.027015556,-0.019195873,-0.0067191347,-0.030490968,-0.022821888,0.008369956,-0.046362028,0.047288805,-0.015755212,-0.0036752508,-0.036376003,-0.008659574,-0.01580155,-0.03848442,-0.0006950829,0.047010772,0.019740354,0.0022488828,-0.027316757,-0.009233017,-0.06088926,-0.001718882,0.007338917,-0.003973557,-0.0016175158,0.013299253,0.02803501,0.012928542,0.006481648,0.01422603,-0.05732117,0.030583646,-0.014457724,-0.022045713,-0.010472582,0.03408223,0.015488763,-0.0014408489,-0.021281121,0.00187962,0.067979105,-0.03278474,0.010750615,-0.023957191,0.017805707,0.027548451,0.025254678,-0.031579934,-0.0073968405,-0.04548159,-0.017655104,-0.020006802,-0.036005292,-0.0026659325,0.025115661,0.047497332,-0.012349306,0.010553675,-0.012662093,-0.0016537181,-0.03943437,0.037997864,0.04763635,0.030259276,0.024652272,-0.029193481,-0.048841156,0.017388657,0.0835953,0.03605163,-0.020551285,-0.043743882,0.0019114779,-0.013530947,0.021756094,0.021443307,-0.010449412,0.022428008,-0.0601015,0.023887683,-0.049814273,-0.0223585,0.022984074,0.0017565324,-0.04341951,-0.056718763,0.012812695,-0.015245484,0.0215244,0.044137765,-0.022300577,-0.006736512,0.06214041,-0.009957062,0.0007761759,0.003990934,-0.025903422,-0.0009760122,-0.021559155,-0.051436134,0.03083851,-0.011764278,-0.043512188,-0.000036111727,0.04680225,0.02435107,-0.008340995,0.0052449796,0.0048076566,-0.008120885,-0.022578608,-0.0016262044,-0.02435107,0.037557647,-0.01054209,0.018419696,-0.013206575,-0.015546687,-0.0016653028,-0.0034348678,0.0243279,0.0078949835,-0.03609797,0.000956463,0.025486372,-0.0066148723,0.0012446328,-0.020945163,0.001620412,-0.016994776,0.036005292,0.0050654165,0.028058179,0.037905186,-0.04800706,-0.024837628,0.014017505,0.0014509856,0.014457724,-0.013241329,-0.03236769,0.0002611991,0.0021924074,0.01825751,0.0042689675,0.00053760316,-0.008566896,-0.04754367,-0.033920046,0.012650508,0.042098854,-0.012407229,-0.04467066,-0.005589625,0.008879684,0.04680225,0.02680703,0.0059053083,-0.010634768,-0.012395645,0.023331616,0.011011272,0.0040285843,-0.015094884,-0.07293736,0.03211283,-0.010976518,-0.029726379,-0.02029642,-0.015118053,0.010576844,-0.016716743,0.003159731,0.0025022984,0.014353462,0.013090728,0.005801046,-0.015002206,-0.018199587,-0.013693132,0.03012026,-0.017284395,-0.000956463,0.008074546,-0.025254678,-0.06445735,-0.013461439,-0.021142105,-0.038461253,0.05037034,-0.010594222,0.016612481,0.009406788,0.035171196,-0.000291609,-0.051806845,-0.032668896,-0.0023690742,-0.026135117,0.018338604,0.02332003,0.03007392,0.018431282,0.015280238,-0.0058850353,0.004118366,-0.010901216,-0.010901216,-0.0016768875,-0.01828068,-0.0041560163,-0.023227353,-0.011358812,0.012511492,-0.05690412,0.015164392,-0.0068639433,-0.0047410447,-0.042469565,0.017852046,0.040847704,0.0076806657,-0.021698171,0.027085064,-0.042400055,0.0029425176,-0.048146073,-0.0056301714,0.016461879,0.0038142672,0.012847449,-0.005056728,-0.015419255,-0.027919162,0.005430335,-0.016067998,-0.042793937,0.030583646,-0.026482658,-0.00751848,0.029981242,0.007958699,0.016380787,-0.0259961,-0.028498398,-0.01464308,0.04212202,0.04017579,-0.0019230626,-0.043720715,0.014214445,-0.005780773,-0.0028310146,0.010408866,0.043141477,-0.024212053,0.012650508,-0.0071072225,-0.0017956308,-0.019624507,-0.036769886,0.033757858,0.012302967,0.01199018,-0.010275642,-0.0068871127,-0.0047989683,0.03948071,-0.015986906,0.00700296,-0.018095324,0.01784046,-0.05111176,-0.018384943,0.007964492,-0.00029179,-0.0043529565,-0.012453568,0.0088565145,0.014330292,0.014295538,0.019184288,-0.061352648,0.00092750124,0.014851605,0.010576844,-0.009198263,-0.004066235,-0.021165274,-0.013762641,0.058711335,0.017168548,-0.043512188,-0.04592181,0.002251779,-0.013947996,0.0012757668,-0.020064726,0.027108233,-0.0055519748,-0.03570409,0.024235222,0.004248694,-0.007472141,0.04432312,-0.014932698,-0.023123091,-0.041264754,0.0031713156,0.033132285,0.024513256,-0.037580814,-0.02218473,-0.007176731,0.0063136695,0.036422342,0.015662534,-0.027061895,0.0065048174,-0.011225589,0.01670516,-0.009841215,-0.017388657,-0.008115092,0.023655988,-0.007981868,-0.014828435,-0.033016436,-0.00982963,0.008514766,0.00023929676,-0.014863189,0.041380603,-0.022717625,0.0069624134,0.005977713,-0.017539259,-0.012638924,-0.040708687,-0.026528997,-0.01017138,-0.027339926,0.07177889,0.00065091613,0.044647492,0.0127316015,0.03700158,-0.023354786,-0.029193481,-0.0021750303,0.004283448,-0.011613676,-0.016554557,0.01506013,-0.012488322,0.009875969,-0.0042689675,0.01319499,-0.017909968,-0.0018578987,-0.012963296,0.000009684098,-0.04436946,-0.0215244,0.012453568,-0.0072404468,-0.024235222,0.004940881,-0.012569415,-0.006580118,-0.022960905,-0.0039416994,-0.024907136,-0.038924642,0.014434555,0.013924827,0.022717625,-0.035194363,0.014075428,-0.0106869,-0.07173255,-0.041218415,0.023030413,-0.008474219,-0.0134151,-0.0040980927,0.027247248,0.025833914,0.035958953,-0.012048103,0.010785369,-0.037580814,0.035171196,0.027849654,0.041172076,0.017388657,-0.0067017577,-0.0082309395,-0.018929424,-0.019624507,-0.025509542,-0.052316573,-0.029008126,-0.011781655,0.010582637,0.001944784,0.01280111,-0.03361884,0.034337096,-0.000047062902,0.0070898454,0.023934022,0.00832941,-0.0078544365,-0.014550402,0.045273066,0.014550402,0.013160236,0.032089658,-0.03252988,0.011845371,0.016102754,-0.0050654165,-0.027942332,0.0012236355,-0.012175535,0.05560663,0.014307123,-0.0053926846,0.024235222,0.007842852,0.010437828,0.03533338,0.022845058,0.014631495,0.007605365,-0.02761796,0.024953475,-0.029587362,-0.032668896,0.025694897,-0.0097311605,-0.0031307691,0.0098528,0.012117611,-0.029100804,-0.017909968,-0.005743122,-0.016091168,-0.017967893,0.0057112644,0.011353021,-0.00019404397,0.04944356,-0.01683259,-0.019960463,0.0049843234,0.008294656,0.001182365,-0.017330734,-0.029123973,0.02012265,0.035588242,0.0074258023,0.046570554,-0.030490968,-0.019694015,-0.0008246869,-0.007883399,0.01145149,0.053057995,0.004283448,0.007941322,-0.026274133,0.0015031167,-0.003964869,-0.045643777,0.010837501,0.053521384,-0.029378837,-0.03491633,-0.004376126,-0.007437387,-0.01125455,0.007385256,0.008201978,0.019103196,-0.028591076,-0.021860357,-0.029378837,0.023065167,0.004830826,-0.005673614,0.007182523,-0.036908902,0.012581,0.037673492,0.0016870241,0.028475229,-0.0038519176,0.011283512,0.0058850353,-0.009464712,0.014307123,-0.015500348,-0.0046918094,-0.016589312,0.0057286415,-0.0010006297,0.017006362,-0.0060066744,-0.006545364,0.03371152,0.0011686081,-0.0013163132,-0.018396527,-0.006545364,0.01963609,-0.033989552,0.00700296,-0.0023053582,0.023435878,0.004002519,0.015813136,-0.0046599517,0.039712403,0.042098854,0.02294932,-0.008572689,0.01017138,0.006307877,-0.005152302,0.012256628,-0.019300135,-0.019578168,0.047196127,-0.001393786,0.022555439,-0.010993894,-0.0005064692,0.0036868355,0.040963553,0.009540013,-0.013484608,-0.034383435,0.005690991,0.007952907,-0.021037841,-0.0016551662,-0.046964433,-0.0031510424,-0.0009999058,0.014747342,0.036260158,-0.0010223511,0.027919162,0.03206649,0.0042226287,-0.024073036,0.04986061,-0.013067558,0.016276523,-0.0042805523,0.0059892978,0.033757858,-0.0134382695,0.013866903,-0.08758044,-0.012835864,-0.0042689675,-0.009928101,0.014770512,0.03658453,0.012291382,-0.011764278,-0.037858848,0.043187816,0.0023039102,-0.0008340995,-0.023099922,0.012430399,-0.017933138,-0.045620605,0.029054465,-0.0056041055,-0.00039931064,0.003194485,0.029031295,-0.019578168,0.010043948,0.0055925213,0.01319499,-0.0030033372,-0.0060761827,0.03825273,-0.005569352,-0.022960905,-0.027780145,0.013762641,0.0009933893,-0.01639237,-0.011660015,-0.006846566,-0.011967011,-0.012059688,-0.023099922,-0.031510424,0.017168548,-0.020748224,0.004277656,0.014341877,-0.008300448,0.008537935,-0.022706041,0.039133165,-0.011799032,0.024907136,0.016485048,0.0098528,0.010130833,-0.00030608987,0.029842226,-0.017504504,-0.02358648,-0.0035478189,0.019137949,0.019404396,0.034591958,0.014133352,-0.016450295,-0.0070898454,-0.00042501424,-0.0069450364,-0.025857083,0.041936666,0.012882203,0.046593722,0.0034174907,0.042261038,-0.0025356044,0.0063658007,0.028058179,-0.016519804,-0.021049427,-0.0068639433,-0.018072154,0.020238496,0.013959581,-0.008144055,0.010889632,0.0055490783,-0.021698171,0.0059892978,0.000551722,-0.02132746,-0.0025645662,-0.025764406,0.010907009,0.0068060197,-0.0015537998,-0.010889632,-0.017238056,-0.030259276,0.046547383,-0.021964619,0.017979477,0.00030880506,-0.010866462,0.015998492,0.037117425,-0.0037129011,0.022126805,-0.001588554,-0.026227795,0.02761796,-0.0065048174,-0.03419808,0.004457219,0.024698611,0.026343642,-0.005433231,-0.009059247,-0.04504137,0.0010346598,-0.020586038,0.016589312,0.03456879,-0.01216395,0.0049727387,0.014944282,0.018871501,0.029031295,0.012233458,-0.022659702,0.015384501,0.002461752,-0.020667132,0.001232324,0.00011847181,-0.03415174,0.004442738,0.002434238,-0.0015016686,0.012245043,-0.031116543,0.026274133,0.014214445,0.010252473,0.01506013,-0.021628663,0.03042146,-0.016554557,-0.020006802,-0.039179504,-0.0071999,-0.024188884,-0.011810617,0.05407745,0.039642893,0.013924827,-0.019751938,-0.0082714865,-0.01963609,0.036329664,0.00044166725,0.002238746,0.022567024,-0.051667828,-0.004413776,0.014365046,0.07011069,0.01641554,-0.04147328,0.0021851668,0.056996796,0.016577726,0.021883527,-0.011804825,0.008972362,0.02476812,-0.021014672,-0.0012591137,0.017713029,0.020435438,0.016600896,-0.003385633,-0.042029344,0.01889467,0.0205397,0.0021721341,0.011799032,0.0031684195,-0.013820564,0.007993453,-0.0021142105,-0.019473905,-0.00042899646,-0.03899415,0.018141663,0.003484103,0.006736512,0.019462321,0.013693132,-0.018222757,-0.040407486,0.027015556,0.02400353,0.0027730912,0.016994776,-0.006771266,0.0011150287,-0.01543084,0.007970284,-0.010970725,0.006417932,0.0034464526,-0.026320472,-0.02476812,-0.035055347,-0.036677208,-0.037905186,0.049675256,0.02562539,-0.004211044,-0.005627275,0.02356331,0.010142418,0.012662093,0.00065707054,0.020389099,-0.038090542,0.038113713,-0.020412268,0.0123145515,0.0025877357,0.025671728,0.010182965,0.0243279,0.013577286,0.039202675,-0.0009448783,0.015743628,0.0034464526,0.019821446,0.012036518,0.015743628,0.028637415,-0.016878929,0.009209848,0.0043326835,0.01746975,-0.023459047,0.05157515,0.030490968,-0.01643871,0.032251846,0.020377513,-0.04467066,-0.0006744476,0.024026698,0.015685704,0.00035369582,-0.00030120258,0.029981242,-0.0033479827,0.020284835,-0.012407229,-0.016334448,0.0197056,0.01054209,-0.0038345405,0.028243534,0.021234782,0.017921554,0.004129951,0.01992571,0.0054853624,0.025857083,0.015361331,0.029471515,0.0422147,-0.028174026,0.0076459115,0.0007761759,-0.0037186935,-0.03005075,0.024490086,0.028081348,0.0069276593,-0.042724427,0.037928358,0.052270234,0.019775108,0.021234782,0.0024284457,-0.00015213988,-0.0014828435,-0.046130333,0.048841156,0.012986465,-0.0043645413,0.024883967,-0.020945163,-0.016044829,-0.04056967,-0.00874646,0.01865139,-0.04429995,-0.0066670035,0.009881762,-0.04548159,0.01380898,0.048794817,-0.024652272,0.021223197,-0.034406602,-0.0042168363,0.005717057,0.009592144,-0.0013199334,0.002529812,-0.02358648,0.021130519,-0.03776617,0.013901657,0.0019360954,-0.00025848395,-0.012974881,0.0021257952,-0.027293587,0.0110634025,0.003973557,0.01199018,-0.019624507,-0.0011005478,0.0014003024,0.039295353,-0.008358371,-0.0054187505,0.013704717,0.014886359,0.0017463957,0.0026847576,-0.008346787,0.034221247,-0.02761796,-0.0037244859,0.03456879,-0.00742001,-0.0033827368,-0.042075682,0.0006523642,0.0018289369,-0.002319839,-0.011214004,-0.011040233,0.00431241,-0.008717498,-0.0011309577,0.041264754,-0.026459489,-0.01280111,-0.013449854,-0.017956307,-0.013623624,-0.029448345,0.032182336,-0.016403956,-0.004103885,-0.016902098,-0.0118975025,-0.010125041,0.010617391,-0.0031191844,-0.030653154,-0.00094053405,-0.0015900021,0.01722647,0.0075242724,-0.019045271,-0.012036518,0.00359995,0.042469565,0.025648559,0.01115608,-0.014017505,0.0074431794,0.023285277,0.006174653,0.016485048,-0.0021677897,-0.0076574963,-0.014538817,-0.02233533,0.0012728706,0.0074489717,-0.04015262,0.013797395,-0.007599573,-0.014561987,0.015118053,-0.008954984,-0.0064121396,0.017295979,-0.0048018643,-0.023713911,-0.034754146,-0.002574703,-0.017284395,-0.007472141,-0.026482658,0.0055664554,-0.025926592,0.026204625,-0.021234782,0.01909161,0.010090287,-0.03526387,-0.012488322,0.0070145447,0.02761796,-0.009986024,-0.0053724116,0.030745832,-0.02135063,-0.0064758556,0.0011019959,-0.018801993,-0.007651704,0.01238406,0.026760692,-0.017909968,0.012302967,-0.031417746,0.061955053,-0.013137067,0.00638897,0.02641315,0.03378103,-0.016067998,0.00089853944,0.010414658,0.006499025,-0.010003401,-0.002757162,-0.015396086,0.018778823,-0.021802433,0.0027470256,-0.023795005,-0.03848442,-0.010374112,0.03174212,0.015708873,-0.00036166032,0.023528555,-0.006858151,0.014596741,-0.0076922504,0.0071535613,0.023354786,-0.0056214826,-0.010866462,-0.009319903,0.018570298,0.0110634025,0.0063658007,-0.00466864,-0.0054564006,0.0022141286,-0.044577982,-0.023621233,-0.0011324058,0.01125455,0.015720459,0.013600456,0.011955426,-0.002188063,-0.03568092,0.00020617172,0.010258265,-0.009835423,-0.011607884,-0.055513952,0.042886615,-0.03408223,0.001702953,-0.021871941,-0.018454451,-0.024165714,0.004961154,0.010640561,0.01847762,-0.00498722,0.042075682,0.022265822,0.0003127873,-0.024142545,0.03531021,0.03132507,0.0005332589,-0.006163068,0.009887554,-0.015917398,0.00032473405,0.002820878,-0.01584789,0.010009194,0.0077270046,-0.013137067,-0.0036028463,0.009881762,-0.03329447,0.0037186935,0.0070087523,-0.016600896,0.0060588056,-0.017527673,0.019358058,0.0039619724,0.032182336,0.017029531,0.028104518,-0.00073816354,-0.013600456,-0.01768986,0.027131403,-0.028591076,0.0402453,0.014446139,-0.01953183,0.0027108232,-0.008201978,0.020423852,0.021535985,0.040708687,0.015175977,-0.000518778,0.035124857,0.00031695055,-0.037094258,-0.0059284777,0.020389099,-0.04295612,-0.012071272,-0.024536425,-0.046153504,-0.01749292,0.008277278,-0.02435107,-0.019972049,0.00793553,-0.014527232,0.008115092,-0.003921426,0.0043500606,-0.04175131,-0.026250964,-0.021257952]},{"id":"guide-roles-2","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Fetch roles\nUse guild.fetchRoles() to fetch all roles from the API and cache them. Use guild.fetchRole(roleId) to fetch a single role by ID. Throws FluxerError with ROLE_NOT_FOUND on 404.\n\n```javascript\n// Fetch all roles (updates guild.roles cache)\nconst roles = await guild.fetchRoles();\n\n// Fetch a single role by ID\nconst role = await guild.fetchRole(roleId);\nconsole.log(role.name, role.color);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.038224455,-0.0007951521,0.011202143,-0.012265203,0.03513815,-0.017134706,-0.0380187,0.027090896,0.012688141,0.028759787,0.018517828,-0.044397064,0.037515745,-0.016837506,0.040487744,0.020883994,-0.05555348,-0.011247866,-0.017854843,0.056239326,0.05779391,-0.037309993,-0.0150886,0.03351498,-0.059119876,0.016334552,0.026153574,0.08605074,0.00038507365,-0.043276846,0.049700934,-0.01688323,-0.028394002,-0.013225387,0.010773489,-0.040487744,0.020255303,0.04629457,-0.0041922303,0.013099648,0.02565062,-0.021044025,0.016025921,-0.050295334,0.00050259614,0.033126336,-0.0007658608,-0.004952376,-0.004277961,0.05509625,-0.021489825,-0.026793696,-0.034017935,0.075397275,-0.0015874464,0.0022932957,-0.05779391,-0.0073214,-0.026679387,0.033995073,-0.0060583013,-0.04558586,0.04076208,0.0006269056,0.039161775,0.059988614,-0.06840165,-0.025239112,0.039458975,0.04723189,0.035275318,-0.026199296,0.03788153,-0.028531171,0.026816558,-0.0010109076,0.036006887,0.020506779,0.005841117,-0.045928784,-0.008510199,0.024256067,-0.037378576,-0.05431896,0.028028218,-0.017397612,-0.0010516297,-0.026770834,-0.020060979,-0.01795772,-0.025033358,-0.038498793,-0.08390176,0.015957337,0.005592498,-0.007047062,0.0215927,-0.025513452,-0.011630796,0.0859593,0.08079259,-0.0063497857,-0.054821912,-0.02368453,0.014002678,0.018609274,-0.033835042,0.045768753,-0.009813305,-0.007755769,-0.11010106,0.006778439,0.040053375,0.027319511,-0.03337781,0.047734845,0.004366549,-0.009464667,0.03337781,-0.01298534,-0.047872014,0.0062183323,0.022015639,-0.04464854,-0.057062343,-0.008835976,-0.007338546,-0.047414783,-0.062823445,-0.013854078,-0.01388837,-0.043231126,0.027342372,-0.018746443,-0.040990695,-0.025993543,-0.013534017,-0.047780566,0.0028819798,-0.011110696,-0.010156228,0.025101943,-0.008327307,0.041607957,-0.0655211,-0.009944759,-0.03308061,-0.012493818,-0.03257766,0.011459335,-0.040533468,-0.026336465,-0.031754643,-0.027090896,-0.02718234,-0.043734077,0.02052964,-0.0019446576,-0.039893344,-0.011333596,-0.015945908,-0.019798072,-0.017489059,-0.0431854,-0.002566205,-0.06259483,-0.0365327,-0.007361408,-0.031960398,0.045128632,0.004103642,0.028439725,0.008201568,0.010642035,0.0026990876,0.007304254,-0.010522013,0.0031520315,0.024850467,-0.008487337,0.015637277,-0.0015074312,-0.018735012,0.0033349234,-0.02519339,-0.00610974,-0.023730252,-0.0062697707,-0.030908769,0.061360307,-0.00026951582,0.0383159,-0.008973145,0.022998685,0.009933328,0.020941148,0.019946672,0.018277781,-0.0015131466,0.0010509152,-0.020323887,0.03317206,0.07868934,-0.025124805,0.0009430375,-0.015362938,-0.002364738,-0.014665662,-0.01660889,-0.015774446,0.022107085,-0.017146137,-0.026176434,0.014997154,-0.050203886,0.03756147,-0.035092425,0.03346926,0.0057925363,0.00082087127,-0.03109166,0.004692326,0.04256814,-0.03394935,-0.009927613,0.023593083,0.0035006695,-0.012173757,0.009533252,0.018952196,0.04176799,0.008310161,-0.03198326,-0.051392686,0.030703016,0.0024590418,-0.005909702,0.05747385,0.0070527773,-0.039619006,-0.04103642,-0.06652701,0.0032634812,-0.026885143,0.030611569,-0.02971997,0.017271874,-0.014231293,0.04480857,0.04300251,0.026908003,0.02487333,0.01599163,-0.011865126,0.02294153,-0.029354185,0.024964774,0.014779969,-0.0042379536,0.041813713,-0.026176434,0.029994307,-0.022895807,0.009156037,-0.062411938,-0.0043579764,-0.025719205,-0.013865509,-0.037378576,-0.016403137,-0.0012152324,0.0061268862,0.04405414,-0.045425832,-0.02280436,0.009093167,0.041562233,0.0038721692,0.005398175,0.0066126934,0.024621852,0.00951039,0.015831599,0.001163794,0.007487146,0.018049166,0.015111461,-0.029148431,0.0017731963,0.0052781524,-0.018140612,0.016963243,0.009567544,-0.03609833,0.018929334,0.009236052,0.03602975,0.0035035273,0.043665495,0.031023076,-0.038430206,0.016631752,-0.027570987,0.0030520123,0.013019633,-0.019660903,-0.024256067,-0.033995073,0.019272257,-0.05070684,0.019386565,0.0443742,-0.03212043,0.014162709,-0.023227299,-0.039093193,0.035412487,0.013831217,0.061771814,0.036852762,0.05687945,-0.026245018,0.014219862,-0.00516956,-0.01328254,-0.07452854,-0.043985557,-0.027936772,-0.016037352,0.024324652,0.0817985,-0.030268647,0.0012623842,0.015328646,0.0070813545,0.004726618,-0.028165387,0.027639572,0.050203886,-0.037104238,0.0014774255,-0.012425234,-0.038704544,-0.0217413,-0.026725112,0.0018789307,0.000033600176,0.016128799,-0.009196045,0.030245785,-0.002586209,0.037470024,0.011270727,0.0010309115,-0.04524294,-0.03360643,0.00071906607,-0.019558026,0.006835593,0.034337997,-0.055873543,-0.009076022,-0.017031828,0.021912763,0.011007819,-0.0012495246,0.028302556,-0.0051838486,0.023775976,-0.0069784774,-0.0019718057,0.03756147,-0.06369218,0.0012752439,0.009801875,-0.009538967,-0.024370376,0.0007565733,0.020301025,0.03303489,0.01690609,0.027570987,0.0139340935,-0.06684707,-0.020895425,-0.03726427,-0.020723963,-0.010070497,-0.035389625,-0.0004568731,-0.006229763,0.026016405,0.025627758,0.0014674235,0.0103505505,-0.010910658,0.05491336,0.048969366,0.019226534,-0.0049438025,0.047917735,0.028325418,0.00965899,0.02097544,-0.013225387,0.00019610893,-0.038567375,0.0039264653,-0.027959634,-0.046546046,0.009024583,0.035778273,0.024507545,-0.0042550997,0.031503167,-0.029056985,0.057108063,0.0031948967,-0.022667192,0.0062411935,-0.004803776,-0.035869718,0.009316067,-0.0049438025,0.01705469,-0.01796915,0.017191859,-0.037812945,-0.000093767936,-0.008721668,-0.059119876,0.023318745,0.035321042,-0.0062526246,0.0068413084,0.01146505,0.03287486,-0.038681682,0.0037607192,-0.0104248505,0.0025361993,-0.04133362,-0.023753114,0.008047253,-0.004235096,0.030451538,0.0061211707,-0.06684707,0.0377215,0.004286534,0.004995241,0.004986668,0.014654231,0.038590237,0.013762632,0.008687376,-0.0022975823,0.038841713,0.006955616,-0.01839209,-0.0009987624,0.015442953,0.0025562032,-0.019729488,0.024507545,0.008881698,0.012699571,0.007058493,-0.007584308,-0.019055072,0.009790444,0.022712916,-0.002390457,0.0080758305,0.003163462,-0.0068984623,-0.023193007,-0.03941325,-0.013465432,0.05491336,-0.012608126,0.010950666,-0.04163082,-0.043139677,0.034177966,0.061771814,0.019809503,-0.009670421,-0.0013481149,-0.018220628,-0.020541072,0.014059831,0.059119876,-0.009927613,0.022015639,-0.010619174,0.025216252,-0.037035655,-0.016688906,-0.012939618,-0.009470383,-0.025399143,-0.038704544,0.04240811,-0.016368845,0.009150322,0.016643183,-0.012288065,0.00007117433,0.047597673,0.008453045,0.0057353824,-0.0032606237,-0.0150886,0.0007830069,-0.012630987,-0.056788005,-0.007790061,-0.016003061,-0.014917139,-0.012448095,0.031457447,0.026930865,-0.014162709,0.018940765,0.025307696,0.0026333607,-0.008510199,0.014768539,0.0292856,0.047597673,-0.032257598,0.015625846,0.011842265,-0.03278341,0.020495348,-0.0035035273,0.02384456,0.016208814,-0.034086518,-0.022164239,0.010081928,-0.025467727,0.0023761687,-0.032851998,0.014242724,-0.018849319,0.021787023,0.006378363,0.0048723603,0.015362938,-0.036944207,-0.0045865914,0.0031177392,-0.01252811,-0.005641079,-0.00686417,-0.04149365,0.011990865,-0.008310161,0.019672334,-0.012505249,0.019066503,-0.006732716,-0.0374243,-0.012962479,0.02217567,0.015054308,0.0076528923,-0.03605261,0.0033549273,-0.0042236648,0.0037035653,0.025764927,0.02430179,0.0076300306,-0.028896956,0.0221871,0.029194156,0.017317597,-0.018746443,-0.02896554,0.02384456,0.020941148,-0.03184609,-0.00070727814,-0.022278547,-0.014802831,-0.03602975,0.006304063,0.037241407,0.0050638258,0.004738049,-0.020895425,-0.02309013,-0.012893895,0.01809489,0.03093163,-0.016917521,-0.0010916373,-0.0068013007,-0.005989717,-0.06232049,-0.0041550803,-0.0010852076,-0.033720735,0.042796757,0.010441997,0.0040550614,-0.0035063848,0.018517828,-0.01599163,-0.03198326,-0.036555562,-0.014208431,-0.021787023,-0.023867423,0.011739388,-0.0047694836,0.010121936,0.0010266249,-0.033880766,0.009727575,-0.023890283,0.021009732,-0.001185941,-0.0031520315,-0.0005929705,-0.0226329,-0.05509625,0.009178898,-0.014654231,-0.0038064423,0.003237762,-0.008887414,-0.041745126,-0.020849701,0.011042112,0.028279694,0.012871033,0.03550393,-0.026496496,-0.0011745103,-0.024850467,0.024416098,-0.024553267,0.028119663,-0.013111079,-0.009138891,-0.0024819032,-0.030657291,-0.009556114,-0.033789318,-0.036761317,0.033423536,-0.021809885,-0.0017989154,0.015054308,0.003294916,0.024393236,-0.056650836,-0.0017503347,-0.006138317,0.020266734,0.018060597,-0.0032892006,0.0053953175,0.043574046,0.017706243,0.02354736,-0.0031491737,0.036944207,-0.014357031,0.013568309,0.009230337,0.008367315,0.0037521461,0.0029891431,-0.008001531,0.03666987,-0.060720183,-0.0053324485,-0.043345433,-0.015568692,0.034086518,-0.03852165,0.018186335,-0.015020016,0.035206735,-0.024919052,-0.022907238,0.021044025,0.03241763,-0.007212808,-0.02939991,0.000984474,-0.01992381,-0.01132788,0.0024333226,-0.05564493,0.01764909,0.031594615,0.015923046,-0.020152425,-0.024736159,-0.04679752,0.015808737,0.03317206,0.004832353,-0.024347514,-0.048192073,0.023524499,-0.035069562,-0.005501052,-0.0059668557,0.022209963,-0.019180812,-0.028096803,0.044168446,-0.008333023,0.0061783246,0.047186166,0.0030863045,-0.0026447915,-0.0092874905,-0.014116986,-0.022587176,0.008710237,-0.016380275,-0.005198137,-0.006264055,-0.00016422784,0.0127110025,0.016357414,-0.0069784774,-0.005869694,0.0036206925,0.031137384,-0.010327689,-0.003900746,0.016220246,-0.0018360654,-0.037012793,-0.017774828,-0.04213377,-0.02457613,0.02807394,0.02821111,-0.02535342,-0.0045037186,-0.007972954,0.0065383934,0.0060297246,-0.014665662,0.007961523,-0.08531918,-0.022061363,0.016894659,-0.023890283,0.05523342,0.021386947,-0.01418557,0.006401224,0.019798072,-0.01809489,0.02339876,-0.0004504433,-0.009664706,0.017614797,-0.021421239,-0.0025161954,-0.005195279,-0.010607743,-0.009121745,0.009813305,-0.012871033,0.011419327,0.018769303,0.0020532499,-0.008241576,-0.0050209602,-0.034040798,0.016163092,-0.023455914,-0.0049380874,0.018289212,0.011024966,-0.004878076,-0.004746622,-0.0124023715,-0.016025921,0.00002244849,-0.004003623,-0.0047523375,-0.037652917,-0.0052410024,-0.016666045,-0.08980003,-0.024050314,-0.0042265225,-0.020175288,-0.0033692159,0.0066927085,0.030542985,0.032806274,0.020266734,0.014951431,0.008264437,-0.056330774,0.0034720926,-0.013225387,0.02187847,0.017111843,-0.001886075,-0.0048637874,0.009378936,-0.0069327545,-0.032600522,-0.020838272,-0.0067212856,-0.0150886,-0.013225387,0.011539349,0.009196045,-0.035023842,0.074208476,-0.004840926,-0.018895043,0.022450007,-0.010899227,0.00610974,-0.009156037,0.031023076,0.018723581,0.014665662,0.05157558,-0.03925322,0.0023190149,0.027136618,0.013808355,-0.025216252,0.020403903,0.012048018,0.023775976,0.018780734,0.008338737,-0.0016174522,0.017546212,0.016997537,-0.00076800404,0.021638423,0.005401033,-0.023570223,0.0011094979,0.059668556,-0.032646243,-0.05701662,0.04252242,0.0148485545,0.00080658286,-0.010762058,0.046591766,-0.03276055,-0.008338737,0.00829873,0.007298539,-0.014116986,0.018986488,0.0010659181,-0.01900935,0.026725112,0.012185188,-0.015420092,0.019798072,-0.021809885,-0.042773895,-0.025444867,-0.024804743,0.026359327,0.04316254,-0.011453619,0.034337997,-0.03212043,-0.019878088,0.020472487,-0.00641837,-0.012448095,0.022838654,0.014711385,0.010482005,-0.0047123297,-0.016448861,0.009653275,-0.003440658,-0.005758244,0.035366762,-0.040967833,-0.002723378,-0.015637277,-0.0040750653,-0.0041350764,-0.011659373,0.004020769,0.038270175,-0.037972976,-0.029902862,-0.04165368,-0.0039779036,0.05084401,0.014128417,-0.009093167,-0.03346926,0.0021704151,0.02277007,0.015888752,0.018815028,0.01539723,0.044122726,0.01931798,-0.017591937,0.041013557,-0.000032662498,0.025444867,0.007149939,0.02036961,-0.001035198,0.06428658,-0.0030577276,-0.008853122,0.040853526,0.026610803,0.00829873,-0.01824349,0.022850085,0.033720735,-0.017911997,0.03365215,0.004312253,0.030337231,-0.006732716,0.01631169,0.013819786,0.055324867,0.024050314,0.033835042,-0.0152372,0.0007701473,0.023707392,0.00074299925,-0.0062697707,0.0076929,0.0031891814,0.0136254635,-0.031617474,0.012150895,0.027731018,0.015785877,-0.000434726,0.031434584,0.01237951,-0.016791783,-0.0031377429,0.0040550614,0.028919816,-0.00015744082,-0.014608508,-0.031000214,0.00004634815,0.0058439746,0.020929717,0.037058517,0.013854078,0.027022311,0.03410938,0.026839418,0.008818829,0.036898486,-0.023455914,0.006669847,0.0061783246,0.022049932,0.027228065,-0.015042877,0.017923428,-0.06277772,-0.01208231,-0.0054667597,0.0075728768,0.047872014,0.030291507,0.0074585695,0.034223687,-0.026885143,0.041973744,-0.020266734,-0.013179664,-0.00096732785,0.020392472,-0.016768921,-0.027982494,0.028256834,-0.016185952,0.008110123,-0.03845307,0.02096401,0.0015645849,0.014265586,0.012539541,0.019580888,0.026473634,0.022415716,0.031365998,-0.014825692,-0.058616925,-0.05902843,0.01962661,-0.017271874,-0.013065356,-0.012768156,-0.014025539,-0.02549059,-0.004406557,-0.024256067,-0.0079157995,0.016071646,-0.027022311,0.006246909,0.02217567,0.014059831,-0.002899126,0.0039979075,0.035206735,-0.007910084,0.026450774,0.022061363,-0.005140983,0.018643565,-0.0029777123,0.038864575,-0.010156228,-0.006155463,0.021215485,0.0079900995,-0.017306168,0.052718654,0.02232427,-0.0041693687,0.006892747,-0.0075957384,0.0030034315,-0.034932394,0.03376646,0.026336465,-0.0030720162,0.023158714,0.050569672,-0.00513241,-0.02354736,0.008035823,-0.03833876,-0.038110144,0.0058382596,-0.018986488,0.0024776168,0.0032434775,0.02202707,0.029217016,-0.0013738342,-0.020609656,-0.034086518,0.013762632,-0.009961905,-0.011807973,-0.028233971,0.0009680423,0.012665279,-0.01463137,-0.017580505,0.014437047,-0.051987085,0.04195088,-0.0389103,-0.0046408875,-0.0009058875,-0.013351125,0.038681682,-0.0053781713,0.017409043,0.017694812,-0.015705861,-0.040030513,-0.0012066594,-0.009950475,-0.028919816,-0.021364085,0.015225769,0.017168999,-0.019272257,-0.011910849,-0.0146428,0.0013759774,-0.025033358,-0.018803596,0.018277781,-0.017569074,0.022747207,-0.004026484,0.0371271,0.023478776,0.010613458,-0.014665662,0.011293588,0.017911997,-0.024416098,-0.021146901,-0.027273787,-0.022598607,0.01026482,0.0021118324,0.0063440707,0.014105555,-0.018197766,0.018723581,0.0040750653,-0.0007451425,-0.0023504496,-0.052901547,0.02866834,-0.010373413,-0.013076787,-0.034726642,-0.033492118,-0.04179085,-0.009064591,0.06168037,0.016403137,-0.0136254635,-0.024233205,0.0019217961,-0.0028348279,0.01643743,0.024073176,-0.002427607,0.0229301,-0.02067824,-0.011407896,0.024187483,0.063326396,0.03847593,-0.011619365,-0.010259105,0.001784627,0.0030720162,0.005566779,-0.010482005,0.0365327,0.008510199,-0.018369228,-0.0029148431,0.01646029,-0.00006947757,0.0035949734,0.0022818649,-0.020632517,0.02368453,-0.00075585884,0.020426763,0.0009623269,0.006401224,0.002530484,0.01962661,-0.012779587,-0.011127843,0.038407344,-0.053678837,0.010813497,0.02291867,-0.019683765,-0.03381218,-0.023730252,-0.017774828,-0.019558026,-0.001449563,0.019786641,0.010304828,0.023798836,-0.0033263504,0.016780352,-0.008590214,0.0033292081,-0.024416098,0.00040650633,0.009276059,0.019397996,-0.019352272,-0.014528492,-0.014071262,-0.043436877,0.04855786,0.011687949,0.005703948,-0.018609274,-0.021501254,0.0016203099,0.027090896,0.004252242,-0.013065356,-0.019592319,0.0058096824,-0.020849701,-0.003274912,0.013819786,-0.027685294,0.02097544,0.029697109,0.011144988,0.031434584,-0.0086816605,0.009779013,-0.008624506,0.029011263,0.025582036,0.031503167,0.016974675,0.002023244,-0.023775976,0.013751201,0.023135854,-0.008864553,0.06940756,0.0011623652,-0.02127264,0.040556327,0.013865509,-0.053953175,-0.011739388,0.024941914,0.018174905,-0.023044407,-0.015557261,0.022575745,0.0069727623,0.016277399,-0.02443896,-0.023638807,0.02140981,0.014402755,-0.0015617273,0.012036588,0.010459143,0.017911997,0.035869718,0.011173566,0.009899036,0.043848384,0.051392686,0.026953727,0.0221871,-0.017477628,-0.0080758305,0.0078414995,-0.029948585,-0.024736159,0.026885143,-0.015557261,-0.0131682325,-0.0063440707,0.02880551,0.018620703,0.018780734,0.0033892195,0.0019889518,0.008030107,-0.014014109,-0.041127864,0.018552119,-0.006321209,-0.018037735,0.024073176,0.0048466413,-0.040350575,-0.014768539,-0.016837506,0.0017331886,0.014985723,0.03321778,-0.017557643,-0.033697873,0.02427893,-0.00022736492,-0.02640505,0.028828371,-0.027959634,0.006852739,0.0021575554,0.0115736425,0.01660889,-0.011853696,-0.038361624,0.021832747,-0.030268647,0.019123657,0.012539541,-0.00066334114,0.006892747,-0.014585647,-0.020861132,-0.021832747,0.0010344835,0.0005704662,0.0032320467,0.012128034,0.010081928,0.026679387,0.018014874,0.00089731446,0.03109166,0.022735776,0.01252811,-0.013328264,-0.014071262,-0.0013359698,-0.035709687,-0.02578779,0.013419709,-0.0085959295,-0.011139274,-0.031800367,-0.0017303309,0.010819212,0.034726642,-0.043871246,0.012722434,0.008207284,-0.003294916,-0.006024009,0.038293038,-0.013213956,-0.020632517,0.031320274,-0.019375134,-0.0036178348,-0.021478394,0.006064017,-0.022530023,0.0009744721,-0.020483917,-0.02170701,0.0020446768,-0.03152603,-0.011373604,-0.036898486,-0.010236244,0.012733864,0.044465646,-0.0067498623,-0.017511921,-0.0030805892,0.017077552,0.030611569,0.05779391,0.018609274,0.008967429,-0.0068127317,0.04208805,0.009721859,0.047643397,0.01177368,-0.009716144,-0.0307716,-0.027868187,0.016631752,0.03925322,-0.007955807,-0.011819404,0.00031381001,-0.008955998,0.0057553863,-0.017694812,-0.0053581675,-0.03244049,0.009247483,-0.019660903,-0.046568908,-0.008121553,0.0064983857,-0.008453045,-0.0006722714,-0.031068798,-0.053084437,0.04256814,-0.017043259,0.0150886,0.04213377,-0.06863027,-0.0029777123,0.027022311,0.014677092,-0.016014492,-0.026633665,0.011968004,-0.03696707,-0.020266734,0.0044837147,-0.026176434,-0.0084473295,-0.0006269056,0.022084223,-0.011899418,-0.0069670468,-0.019958103,0.08152416,-0.016197383,-0.016128799,0.01237951,0.0010752056,-0.02384456,-0.0052781524,0.0022061362,0.009716144,-0.007715761,-0.019146519,0.029559938,0.0022975823,-0.027205203,0.02608499,0.01992381,-0.034063656,0.0018389231,0.061360307,0.00033399244,0.0002620144,0.018780734,-0.027662434,-0.004812349,-0.017329028,-0.004780914,0.041402202,-0.0005761816,-0.011373604,-0.0006522676,-0.0099676205,-0.010270536,0.024621852,-0.017683381,-0.0015531542,0.016083077,-0.025536312,-0.033583567,-0.015157185,0.0018746442,0.002586209,-0.008024392,0.00080372515,0.0077329073,-0.03257766,0.016014492,0.0215927,-0.015420092,-0.0071156467,-0.017637659,0.027982494,-0.01252811,0.002401888,0.019992394,-0.02096401,-0.014151278,0.007155654,-0.008413037,0.020472487,-0.026245018,0.025467727,0.0046408875,-0.00905316,0.008601645,0.017363321,0.036441255,-0.009070306,-0.012436665,-0.01750049,-0.0074185617,-0.014768539,-0.0063326396,0.01343114,0.017683381,0.007921515,-0.02128407,-0.019489441,-0.0074414234,-0.032989167,0.010973527,-0.012276634,-0.0035435348,0.01599163,-0.0032892006,-0.016746059,-0.00015369011,0.04329971,0.020643948,0.036166918,0.015808737,-0.0071156467,-0.00596114,0.02578779,-0.0082244305,0.021809885,-0.0075500156,-0.038133007,0.011487911,0.011196427,0.04243097,0.015637277,0.026450774,0.017546212,-0.022312839,0.030840185,-0.007995815,-0.007995815,0.004635172,-0.0026419337,-0.0065612546,-0.016471721,-0.038270175,-0.028119663,-0.01810632,0.010173374,-0.045128632,-0.016014492,0.015031446,-0.033926487,-0.0021389804,-0.0047151875,-0.017340459,-0.046568908,-0.012116603,0.010973527]},{"id":"guide-roles-3","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Edit a role\nUse role.edit() to update a role. Pass any of name, permissions, color, hoist, mentionable, unicode_emoji, position, hoist_position. Permissions accept PermissionResolvable.\n\n```javascript\nconst role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId);\nawait role.edit({\n name: 'Senior Mod',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages', 'ManageRoles'],\n color: 0x57f287,\n});\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[0.0007415542,0.03679697,-0.0033291955,0.016662993,-0.01294246,0.014473776,-0.013192008,0.030467527,0.019941144,0.035118192,0.045780692,-0.03305375,0.027631756,0.007151815,0.012795,-0.014383032,-0.027041914,0.02577149,-0.00739002,0.073185585,0.026270585,0.0058048237,0.008257766,0.06833074,-0.033620905,0.040086463,0.016345385,0.048412286,-0.015800918,-0.041424945,0.049909573,-0.019079069,-0.01433766,-0.013849907,-0.030263351,-0.026701622,0.024864042,0.011530246,0.007038384,0.0063464562,0.005342593,-0.04026795,0.014065426,-0.019725624,-0.016175238,0.06284069,-0.00055368437,0.043081038,0.015823605,0.016073152,0.0117060635,0.011394129,0.02096202,0.060617447,0.019294588,0.01978234,-0.03353016,-0.022856316,-0.026542818,0.046597395,-0.02147246,-0.07073548,0.010123704,-0.0109914495,-0.016957913,0.016821796,-0.093920745,-0.0018999667,0.011184282,0.029083671,0.026157154,-0.027041914,0.015868977,-0.0017000448,-0.0010237134,-0.042332392,0.03305375,0.023412127,-0.0014590044,-0.018296396,-0.025567314,0.01978234,-0.07173367,-0.032441225,0.008887307,0.016640306,-0.026996542,-0.06411111,0.011053836,-0.06837612,-0.027019229,-0.030694388,-0.071098454,-0.0024600315,0.01058877,-0.011144581,-0.01827371,-0.00006158941,-0.021971555,0.06647048,0.05272266,0.004066496,-0.064428724,-0.0067888363,-0.0099649,0.024047341,-0.021393059,0.056715425,-0.00091524515,-0.012137101,-0.1015433,0.023207951,0.016935226,0.005813331,-0.02253871,0.0060912366,0.022765571,-0.025249707,0.024478378,-0.06755941,-0.06520005,-0.045689948,0.025272394,-0.061207287,-0.033189867,-0.021869468,-0.055762608,-0.038611863,-0.02926516,0.014723324,-0.01577823,-0.014360346,0.043398645,-0.031420346,-0.03548117,0.0025124934,-0.006709435,-0.04058556,-0.00037503074,-0.016901197,0.013747819,0.0028485323,-0.026111782,0.02742758,-0.050000317,0.019226529,-0.031011995,-0.0057622874,-0.06860298,0.033666275,-0.043806996,0.0066527193,-0.032894947,-0.0068852524,-0.027949361,-0.034210745,-0.010004601,-0.004571263,-0.06206936,-0.022345878,-0.009976244,-0.026520133,-0.032123618,-0.051134627,0.006794508,-0.08157947,-0.0012881492,0.02445569,-0.027926676,0.034528352,0.012250531,-0.019646224,0.012193817,-0.0015979571,0.0016319863,-0.015800918,0.017128058,-0.008376868,-0.020689787,0.03666085,-0.013169322,-0.0002679804,-0.04727798,0.018080877,-0.028062792,-0.0022898852,-0.039950345,-0.0068625663,-0.035390425,-0.0011499053,0.0066413763,0.028289653,0.017661184,-0.006828537,0.010055645,0.015018244,0.029718883,0.010118032,0.0093637165,-0.045326967,0.008762533,0.0060118353,0.04453295,-0.026452074,-0.039541993,-0.020939335,-0.034687154,-0.022039615,-0.024001967,-0.0066357045,0.028629947,-0.0184552,-0.016424786,0.013203351,-0.051860586,0.024001967,-0.028652633,-0.037590984,-0.037159946,0.0039700796,-0.05181521,-0.02801742,0.026202526,-0.016186582,0.0013469914,0.046279788,0.01896564,0.0319875,0.018852208,0.03672891,0.014768696,-0.0013165068,-0.017547753,-0.0145418355,0.015608085,0.0024515244,0.009284315,0.026610877,0.0073956912,-0.01095742,-0.013645731,-0.025136277,0.0067604785,-0.012987833,0.019725624,-0.01489347,0.054356065,-0.005135582,0.027495638,0.03434686,0.03371165,0.049546596,0.030853191,-0.01948742,0.0031335272,-0.011966955,0.0026230884,0.0519967,-0.007146144,0.008507314,-0.0014646759,-0.0024756284,0.0079061305,-0.010821303,-0.052314308,0.0029945744,0.007548823,-0.015449282,-0.00474141,-0.03736412,-0.020825904,0.019101756,-0.0042933575,-0.0061366092,-0.02117754,0.03305375,0.03784053,0.030671703,-0.017706556,-0.014235572,0.006845552,-0.001103115,-0.00970968,0.0014029979,-0.01055474,0.042264335,-0.029106356,-0.01522242,0.027563697,-0.0021991406,0.0028059958,-0.0030938264,0.008586715,-0.010815632,0.021982899,0.0017794465,0.047777075,0.0063918284,0.03647936,0.01187621,-0.012624853,0.056579307,-0.010520712,-0.016027778,0.03679697,-0.00897238,-0.035549227,-0.033144496,0.012171131,-0.059074786,0.02878875,0.06769553,0.018874893,-0.005271699,-0.024478378,-0.014065426,0.0019155635,0.025340453,0.019430704,0.058212712,0.018772805,-0.01955548,-0.004324551,-0.019986516,-0.0012378142,-0.045054734,-0.027518325,-0.007231217,0.03518625,0.0013172157,0.05081702,-0.022481995,-0.007934488,0.080172926,0.041084655,0.03731875,-0.021404402,0.097369045,0.0567608,-0.029877687,-0.011258012,-0.01430363,-0.005144089,-0.011223983,-0.04959197,-0.02445569,0.0013406109,0.010492354,-0.016311357,0.027813245,0.0005419868,0.03999572,-0.011603976,-0.016334042,-0.032668084,-0.014065426,0.022822287,0.014984216,0.020190692,0.018670717,-0.04668814,-0.017491037,-0.02481867,0.0059437766,0.03820351,0.026905797,0.00013664873,0.013157979,0.021359028,0.0066300333,-0.02357093,0.029242473,-0.046120983,-0.0032497938,-0.025453882,-0.002715251,-0.0027620413,-0.0110651795,-0.044396836,-0.004905884,0.014859442,0.019158471,-0.00012255849,-0.042400453,-0.021188883,-0.028130852,-0.014711982,-0.0101520615,-0.007202859,-0.042536568,0.0031930786,0.03275883,0.012613511,0.032327794,-0.014031396,0.0042848503,0.0398596,0.06665197,0.013781848,-0.015562713,0.018523257,0.025136277,0.014859442,0.017434321,-0.010208776,-0.0065619745,-0.016152553,0.023797793,-0.0029024119,-0.027495638,0.018443856,0.012307247,0.03754561,0.015029588,0.04918362,-0.07010026,0.055308882,-0.04453295,-0.0006869656,0.009012081,-0.045032047,-0.026497446,0.030104548,-0.029855,0.05118,-0.021880811,-0.03257734,-0.034369547,0.011099209,-0.022481995,-0.057532128,0.048820637,0.03434686,-0.0038084409,0.02416077,-0.008013889,0.0017525066,-0.0291971,0.003731875,-0.014133484,-0.02220976,0.002417495,-0.0021169032,0.013872593,0.027767872,0.007945831,0.029310532,-0.0674233,0.0068625663,-0.009346702,-0.004647829,0.018999668,0.013123949,0.037772473,-0.015245106,-0.013214694,-0.002009144,0.016447473,-0.031533778,-0.014904814,-0.012795,0.02742758,0.037885904,0.04959197,-0.024659866,-0.00004125161,-0.05490053,-0.004551413,-0.041379575,-0.045780692,0.03103468,0.044056542,0.034823272,-0.01801282,0.024795985,-0.040313326,-0.009987586,-0.043330584,0.0033490458,0.058893297,-0.003782919,0.025204334,0.016606277,-0.034868643,0.051134627,0.043330584,0.019328617,-0.027813245,0.016254641,0.01801282,-0.012012327,0.033938512,0.0040438096,-0.009352374,0.013725133,-0.034959387,0.027314149,-0.049138244,-0.010753245,0.0015454954,-0.007843743,-0.051134627,-0.03561729,0.03180601,-0.016889853,0.011377114,0.03532237,-0.021676635,0.020417552,0.05680617,-0.045145478,-0.021529175,0.014201542,-0.048548404,0.007957174,-0.03650205,-0.041016597,0.019714281,-0.0024756284,-0.009664308,-0.0060061635,0.039587367,0.058121968,0.00086561916,-0.007866429,0.008541343,0.010265492,0.0039332146,0.016265985,-0.0029350233,0.025612686,-0.05372085,0.0060628788,0.0034171045,-0.020383524,-0.01187621,0.00327248,0.016697021,0.023083178,-0.037727103,-0.0042933575,0.015585399,-0.0018900415,0.009726696,-0.027813245,-0.015800918,-0.023434814,0.026021037,0.016039122,0.025431197,0.037885904,-0.032804202,-0.022402594,0.019373989,-0.018024161,-0.005365279,-0.020485612,-0.01786536,0.009721024,-0.016220612,0.03867992,-0.004610964,0.005121403,-0.02559,-0.05526351,-0.038725294,0.037296064,0.013169322,-0.011331742,-0.038407687,-0.0045429054,0.014462434,0.028471144,-0.002457196,0.03062633,0.025022846,-0.021574548,0.029582765,0.007089428,-0.0034029256,-0.008348511,-0.089791864,0.020973364,-0.03405194,-0.043920424,-0.02676968,-0.029106356,0.0035050132,-0.035208937,0.019646224,0.013464242,0.021608576,0.01838714,-0.0056119915,-0.016594933,-0.026043724,-0.01830774,0.017559096,-0.022028271,0.004534398,-0.0014412807,-0.011530246,-0.051043883,0.015540026,-0.023548245,-0.011002793,0.037817847,-0.016458817,0.0006309591,0.0055836337,0.02617984,-0.009420432,-0.02754101,-0.0067037633,-0.012250531,-0.033915825,0.02742758,0.0034624767,0.022754228,0.010157732,-0.0008627834,0.012500079,0.026928484,-0.014564522,-0.008132992,0.010163404,0.002627342,0.0037120245,-0.0126929125,-0.03505013,-0.0007784192,-0.050272554,0.010912048,-0.0044720112,-0.009823112,-0.065699145,0.028811436,-0.0018063863,0.02096202,-0.028108165,0.039473936,-0.016697021,0.005016479,-0.021245599,0.008473285,0.004701709,0.02301512,-0.008711489,0.0002988194,-0.012466051,-0.055308882,-0.043693565,-0.026157154,-0.02304915,0.02253871,-0.017230146,-0.012999175,0.035503857,-0.0020601877,0.016776422,-0.03185138,-0.019861743,-0.012307247,0.024705239,0.03827157,-0.02481867,-0.042740744,-0.00977774,0.0033178523,0.022640798,-0.016844481,0.011388457,0.0076906118,0.0060855653,0.04069899,0.016334042,0.0031874068,-0.022255134,-0.0022884675,0.018375797,0.028153537,-0.024546437,-0.013520957,-0.016061809,0.031057367,-0.018194309,0.01478004,-0.0017085522,0.02978694,-0.060390584,-0.010452653,0.018908923,-0.002292721,-0.014836756,-0.029401276,0.039360505,0.016424786,-0.0056942287,0.024410319,-0.057123777,0.018058192,0.035798777,0.013827221,-0.0060288496,-0.022640798,-0.022470651,-0.0022913031,0.050317924,0.021143511,-0.024319574,-0.022413936,0.010180419,-0.022810943,-0.0040863464,0.008927008,-0.014984216,-0.025272394,-0.009902514,0.04673351,0.01150756,-0.009993258,0.03334867,-0.004554249,-0.016265985,-0.04378431,0.018738776,-0.005118567,0.04158375,-0.005617663,-0.01489347,-0.03375702,0.012137101,0.01912444,0.017740585,-0.0004551413,0.008047919,-0.0063294414,0.032146305,0.0005873591,0.018001476,-0.0026457745,0.013759162,-0.026134469,-0.018477885,-0.044555638,-0.018103564,0.0011470695,0.0081783645,-0.032713458,0.02956008,-0.022799602,0.0060798936,-0.00963028,-0.03073976,0.0045684273,-0.03779516,-0.022516023,0.010237134,-0.023412127,0.06892058,-0.0013817295,0.045644574,0.008422241,0.041311517,-0.046347845,0.00059692987,0.016572248,0.0104469815,0.011087866,0.0038651563,-0.00018946496,-0.0062500397,0.0017780286,0.0030399468,0.016016437,0.0012753882,0.00853,0.0041600764,0.019317273,-0.047187235,-0.012091729,0.0056261704,-0.0010754663,-0.05326713,-0.0039247074,0.012749627,0.021427087,-0.040676303,0.02088262,-0.008467613,-0.045780692,0.002526672,-0.013589016,0.01963488,-0.03375702,-0.009828784,-0.0061649666,-0.045395028,-0.0032100931,0.060209095,-0.008257766,0.017275518,-0.011740093,0.031737953,0.020202035,0.04437415,-0.01563077,0.014643922,-0.037590984,0.026996542,0.014972872,0.030240664,-0.007361662,-0.011774123,-0.008110306,-0.0064372006,-0.019351304,-0.0057367655,-0.035231624,-0.03702383,-0.021858124,-0.012545452,0.0070610703,0.011683377,-0.018228337,0.048140053,0.0048293183,-0.015267792,0.012295905,-0.0063407845,-0.021540519,-0.03459641,0.036887713,0.011371443,-0.0037885904,0.023979282,-0.015290478,0.013668418,-0.000100847115,-0.018466543,-0.019861743,0.01356633,-0.024319574,0.01955548,0.014723324,-0.005617663,0.011127567,0.017547753,0.029083671,0.01404274,0.031783324,-0.0054333378,-0.05353936,-0.006596004,0.04845766,-0.03529968,-0.02588492,0.0503633,-0.005589305,-0.0034000897,0.012216503,0.008195379,-0.005504232,-0.028403085,-0.006647048,-0.019011011,-0.007225545,-0.0021877976,0.019805027,-0.007004355,0.030013803,-0.049319733,-0.013838564,-0.03021798,0.009358046,-0.0043358942,0.0015128839,-0.028471144,0.010288178,0.021461116,0.022016928,0.033076435,-0.0037488895,-0.020939335,0.00277622,-0.012976489,0.0058048237,0.0362525,0.023321383,0.0109914495,-0.02518165,0.016163897,-0.0066413763,-0.0061309375,0.0011357263,0.019237872,-0.005297221,-0.067877024,0.002331004,-0.00235369,-0.027268777,-0.0026358494,-0.0099535575,0.012568139,-0.015449282,-0.011564275,0.010758916,0.0058473605,0.046506647,-0.0016943733,-0.019657567,-0.052223563,-0.012000984,0.020893963,0.026520133,0.04206016,-0.011399801,-0.0056091556,0.020428896,-0.0023111536,0.008785219,0.00882492,0.030013803,-0.02298109,0.0049626,0.013986024,0.019249216,0.017298205,-0.02194887,0.024478378,0.020689787,-0.010265492,-0.038884096,0.01463258,0.050000317,-0.035934895,0.0044833543,0.0031193483,0.020179348,-0.02235722,0.019011011,0.025680745,0.044805188,0.03548117,0.004140226,0.020757847,0.013986024,0.021120824,-0.017162088,0.007577181,-0.027336836,-0.0022416771,0.020304123,-0.010855332,0.03210093,-0.0016589261,-0.009131184,0.0030314394,0.027790558,-0.007957174,-0.0016532546,-0.05662468,0.00041154132,0.025136277,-0.03416537,-0.011513231,-0.038747977,0.00015446091,0.020190692,-0.009392074,0.03126154,0.036048323,0.023207951,0.0369104,-0.022016928,0.0060288496,0.058076594,-0.010265492,0.025748802,-0.0028896509,-0.0019581001,0.040063776,-0.009755054,0.012103071,-0.07127994,-0.0041685835,-0.006743464,-0.0070724133,0.021132167,0.038997527,0.022879003,0.0060798936,-0.05485516,0.017706556,-0.010651157,0.011898897,-0.015857633,0.019566821,-0.004897377,-0.008853278,0.039791543,-0.014201542,0.016152553,-0.014802726,0.0025238364,-0.00018928773,0.008995066,0.007838071,0.014020053,0.0071234573,-0.0037602326,0.015494654,-0.017320892,-0.024364946,-0.041606437,-0.003731875,-0.0021055602,-0.006533617,-0.0025933129,-0.026089096,-0.002468539,-0.002492643,-0.009210585,-0.031238856,0.031737953,-0.039723486,0.0069136103,-0.0010527801,0.011087866,-0.00966998,-0.023843165,0.04265,-0.01525645,0.02867532,0.002590477,-0.013838564,0.030376783,0.006386157,0.046347845,-0.03768173,-0.030013803,0.00004333413,0.013021862,-0.0032753157,0.052268937,0.017513724,-0.0030512898,-0.010526383,-0.011161596,-0.0024089876,-0.04394311,0.07155218,-0.0008266273,0.006448544,0.007287932,0.027382208,-0.006856895,-0.009766396,0.018024161,-0.0385438,-0.024705239,-0.0039757513,-0.02357093,0.026406702,-0.004576935,0.039042898,0.004758424,0.020621728,-0.0028995762,-0.0021495146,0.0064428723,-0.017763272,0.007208531,-0.023775106,0.019430704,0.0141902,0.016526874,0.016799109,0.004764096,-0.010775931,0.051452234,-0.040472127,0.000458686,0.009182228,-0.015471968,0.009346702,0.027677128,-0.008303138,0.038339626,-0.022436623,-0.016039122,0.04056287,-0.007106443,-0.012704255,0.00020789748,0.013577673,0.03459641,0.0016107181,-0.024478378,-0.025794176,0.02801742,-0.0028698004,-0.0004487608,0.042536568,-0.017706556,0.030013803,0.02040621,0.011524575,0.013804534,0.021120824,-0.027268777,0.007855087,-0.009057454,-0.010401609,0.00019690886,-0.016027778,-0.031420346,0.020338152,-0.0018021327,0.007327633,0.012477393,-0.029764256,0.024001967,0.0069873403,-0.0110651795,-0.0039870944,-0.031238856,0.019169813,-0.011189953,-0.04147032,-0.022413936,0.007770013,-0.03548117,0.0063521275,0.04600755,0.021756038,-0.020746503,-0.012148445,-0.006856895,-0.029287845,0.026678937,-0.017695213,0.007509122,0.020599043,-0.03185138,-0.00035323075,0.043965798,0.069918774,0.010946077,-0.013464242,-0.005464531,0.056125585,0.039315134,0.031374972,-0.015710173,-0.0015171376,0.0012335605,-0.0075431517,-0.00478111,0.00027382915,0.02683774,-0.007038384,-0.011399801,-0.04786782,0.01463258,0.03750024,0.010237134,0.0007415542,0.0062783975,-0.016526874,0.004165748,0.023775106,-0.01522242,0.021937527,-0.047550213,0.021858124,0.003930379,-0.004894541,0.026905797,0.025068218,-0.016708365,-0.040494815,0.020281436,0.03246391,0.023979282,0.034573723,-0.025340453,0.013691104,0.005864375,-0.009505506,-0.0017709392,0.002282796,-0.00411754,-0.008700146,-0.030558271,-0.021892155,-0.01341887,-0.03795396,0.04732335,0.042786118,-0.013135293,-0.00761121,0.012295905,-0.0058530318,0.001326432,-0.021279627,0.0035135206,-0.011910239,0.055671863,-0.03287226,0.033099122,-0.0063634706,0.0083995545,0.0045570843,0.007140472,0.03677428,0.022436623,-0.011683377,0.015948378,0.005087374,0.020043232,0.032668084,0.013838564,0.024274202,-0.0063975,0.0143716885,0.01584629,0.0088192485,-0.013917966,0.0447825,0.029310532,-0.030717075,0.058212712,0.028153537,-0.035503857,0.026384016,0.009250286,0.015971065,-0.024977474,-0.021495147,0.037636355,0.021347687,0.007996875,-0.008660446,-0.013021862,0.00999893,0.001909892,-0.0055694547,-0.011377114,0.018818177,0.0029945744,0.04423803,0.010889362,0.025907606,0.001238523,0.024024654,0.03323524,0.013294096,-0.03602564,0.006647048,-0.00024954788,-0.02547657,-0.043988485,0.01569883,-0.02713266,0.008564029,-0.011048165,-0.00006123493,0.052631915,0.010339222,0.03434686,0.016753737,-0.0022360056,-0.0011421068,0.0011243833,0.029401276,0.012965146,-0.0060969084,0.034029257,0.013339468,-0.008184036,-0.023775106,-0.004188434,0.01926056,-0.024795985,0.0024330916,0.0012675897,-0.04950122,0.0029548737,0.032736145,-0.0051270747,0.0009925199,-0.017184773,0.010707872,0.020973364,0.008711489,0.013498271,-0.012182473,-0.01048101,-0.017116716,-0.05022718,0.014938843,0.0063180984,-0.0006986631,-0.01816028,0.01356633,-0.019147128,0.010543398,-0.01445109,0.0008620745,-0.0069476394,0.0016319863,-0.0050023007,0.022164388,-0.010055645,0.019056384,0.020746503,0.0019198172,0.011649349,-0.013770505,0.006930625,0.043693565,-0.03820351,-0.008904322,0.02713266,-0.008461941,0.0012782239,-0.029446648,0.022844974,-0.016889853,0.010055645,-0.0029974103,0.00053206156,0.013589016,-0.023480186,0.01525645,0.024954787,-0.00010953166,-0.0010712126,-0.016991941,-0.016867168,-0.009913856,0.005691393,0.027291462,-0.012511423,-0.007299275,-0.012205159,-0.02547657,-0.011439501,-0.0041742553,-0.027949361,-0.031057367,-0.0087455185,0.002467121,0.010395938,0.012670226,-0.0050646877,-0.020462925,0.005543933,0.055762608,0.042513885,0.0016334043,0.00384247,0.02429689,0.009755054,0.0092276,0.013577673,0.0019524285,-0.028856808,0.0008812159,-0.028221596,-0.0020360837,0.025726117,-0.021892155,0.013940652,0.009392074,-0.0056119915,0.004925735,-0.018353112,-0.006386157,-0.0070610703,-0.02150649,0.0039388863,-0.021540519,-0.0107929455,-0.03334867,-0.0059551196,-0.043262526,-0.002420331,-0.02849383,0.034210745,-0.026542818,0.02051964,0.0027095794,-0.03879335,0.004968271,0.006408843,0.03824888,0.00053206156,-0.0016234791,0.008779548,-0.029809628,-0.0076168817,0.015415252,-0.008138663,0.0019623537,0.03534505,0.022153046,-0.007100771,0.0326454,-0.027654441,0.07191516,-0.009289986,-0.0015894498,0.02011129,0.024932101,-0.017581781,-0.00985147,0.01522242,-0.01720746,-0.0032781516,0.0035900865,0.0030172607,0.01356633,-0.016833138,0.01702597,-0.011116223,-0.026678937,-0.015324508,0.024841357,0.007554495,-0.0028442785,0.016991941,-0.04301298,0.021926183,-0.0021920511,0.010310864,0.03169258,-0.009681324,-0.025022846,-0.025862234,0.022822287,0.018069534,0.014972872,-0.034936704,-0.014235572,-0.007639568,-0.04714186,-0.045871437,-0.005507068,0.007157487,-0.005365279,0.03654742,-0.0017128058,-0.007441064,-0.014677952,0.005464531,0.020156663,-0.0063748136,-0.011019807,-0.04727798,0.023661675,-0.0148140695,0.009930871,-0.013214694,-0.027382208,-0.041379575,0.02724609,0.012749627,0.00014223166,-0.007100771,0.04353476,-0.016118525,-0.018784149,-0.015789574,0.028629947,0.015052274,0.016674334,-0.0025975665,0.008592387,-0.012103071,-0.010583098,-0.015914349,-0.036819655,0.017003285,0.00481514,0.001847505,-0.012057699,0.016969256,-0.030785132,0.0145418355,-0.005813331,0.004477683,0.0026117454,0.00039346327,0.016833138,0.004077839,0.012965146,-0.0004065787,0.011740093,-0.0033575532,0.009550878,-0.025045533,0.035276994,-0.015812261,0.03080782,-0.008734176,-0.003298002,-0.013906622,0.00016642433,-0.0011747183,0.01525645,0.01150756,0.0124206785,-0.00875119,0.032486595,0.0020219048,-0.048140053,-0.006533617,0.019181157,-0.028561888,-0.0060515357,-0.016379414,-0.04063093,-0.007860758,0.011898897,-0.0141902,-0.000023350804,0.0014689295,-0.025567314,0.010475339,-0.009358046,0.019895772,-0.025090905,-0.027178032,-0.00952252]},{"id":"guide-roles-4","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Delete a role\nUse role.delete() to remove a role. The role is removed from guild.roles cache.\n\n```javascript\nconst role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId);\nawait role.delete();\nawait message.reply('Role deleted.');\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.0011599298,0.03632482,-0.011486787,-0.0121297045,-0.02280213,0.011583225,-0.037267767,0.039818004,0.055162296,0.02318788,0.05807685,-0.04491848,0.027023952,-0.008390069,0.039968017,0.012611892,-0.05323354,0.00804718,0.0006258397,0.07809301,0.04676151,0.034653235,-0.002869018,0.046247177,-0.038682185,0.010249171,0.046804372,0.061805774,-0.02209492,-0.048433095,0.042153936,-0.02111983,0.010109873,-0.006889929,0.0042861146,-0.048475955,0.043718368,0.02361649,-0.0082936315,0.028374078,0.0076828604,-0.036196236,0.010227741,-0.031160053,-0.005839831,0.0807504,0.008807966,0.02548095,0.010688499,-0.0074846274,-0.018698175,0.002116269,0.006338092,0.06549183,-0.020144738,0.000014283561,-0.021516295,0.007506058,-0.015494304,0.041318145,-0.014765665,-0.050704736,0.016137222,0.023059295,0.0039164373,0.02063764,-0.06339163,0.011379634,-0.008802608,0.03566047,-0.0036753432,-0.04457559,-0.020059016,-0.0122582875,0.0046156095,-0.04301116,0.03632482,0.023980811,-0.010495623,-0.055548046,0.00040450206,0.022544963,-0.043546923,-0.013597699,0.012515455,-0.026423896,-0.048733123,-0.0063488074,0.01802311,-0.009231219,-0.016030068,-0.033238817,-0.043225463,-0.013854865,-0.01384415,-0.049590345,-0.017605215,0.01886962,-0.0003703471,0.049118873,0.08580802,-0.019062495,-0.07222103,0.012761906,-0.02248067,0.03300308,-0.05503371,0.05649099,-0.032081567,-0.0023720965,-0.07599281,0.020048302,0.023059295,0.012569031,-0.041361004,0.064506024,0.030924316,-0.032981653,0.023423616,-0.03321739,-0.0494189,-0.025052339,0.022287795,-0.071578115,-0.044018395,-0.0072649643,-0.017894529,-0.051476236,-0.030131385,0.012494024,0.0010407222,-0.0009054417,0.017648077,-0.04266827,-0.010200952,-0.0032601259,-0.012440448,-0.06536325,0.015247853,-0.0017198034,0.015022832,0.01366199,-0.015430013,0.060519937,-0.04980465,0.018751752,-0.006579186,-0.015751472,-0.048561677,0.0053522857,-0.02316645,-0.018516015,0.0030752872,-0.013319101,-0.059576992,-0.029359885,0.011315342,0.013179802,-0.036796294,-0.040160894,-0.02580241,-0.044404145,0.0076775025,-0.045518536,0.0025261287,-0.0553766,0.010324178,0.01734805,-0.010249171,0.035681903,-0.0002503024,0.015944347,0.0006409081,-0.025695257,-0.036924876,0.034674667,-0.004012875,-0.01272976,0.01870889,0.00020158132,-0.0037503503,-0.020262606,0.0020613533,0.016876576,-0.035253294,0.033774585,-0.011797531,-0.024859464,-0.049547486,0.049718928,0.016855145,0.02193419,0.00159122,0.00231852,0.02880269,0.014637081,0.046932954,0.015472873,-0.02073408,-0.018441008,0.016158652,0.017840952,0.057776824,-0.023787936,-0.005721963,-0.03431035,-0.03707489,-0.020498343,-0.024409423,-0.015772901,0.029059857,-0.040353768,-0.044789895,-0.026595341,-0.036517695,0.014154893,-0.054305073,0.0377821,-0.00042961602,-0.00927408,-0.04005374,-0.015783617,0.032253012,-0.028974134,0.027388273,-0.0031636884,0.007929312,0.010908161,-0.005550518,0.0209591,0.0012248912,0.0010273281,0.004071809,-0.026745355,0.026809646,0.014283476,-0.01441206,0.04521851,0.012451163,-0.042111076,-0.033453126,-0.05563377,0.0015376436,-0.030152816,0.0276883,-0.0134584,0.053662155,0.009815202,0.030967178,0.039775144,0.02543809,0.04418984,0.028995564,-0.029317023,-0.009097278,-0.005025469,0.017465917,0.0048433095,-0.0045915004,0.009745553,-0.0014371878,-0.014840672,0.0062416545,-0.00086391997,-0.035789058,0.03488897,-0.0006958239,-0.030838594,-0.023209311,-0.006472033,-0.020809086,-0.017926674,0.032703053,-0.044489868,-0.014058456,0.053276405,0.040289477,0.015537165,-0.004942426,-0.048947427,0.0045084567,0.0061612898,0.013833434,-0.011861822,-0.0053388914,0.036003362,-0.021066252,-0.0065202517,-0.0055773067,0.034460362,-0.008743674,0.0049531413,-0.0038628608,-0.019373238,0.0069595785,0.0012657432,0.04348263,0.0023694178,-0.0070506586,0.01889105,-0.0033003082,0.028974134,-0.019008918,-0.038789336,-0.0192768,-0.010500981,-0.047190122,-0.039753713,0.0011451963,-0.03767495,0.014872817,0.038467877,-0.0086150905,0.027966898,-0.002852945,-0.028974134,-0.026981091,0.022009198,0.038789336,0.03853217,0.06094855,-0.020723363,-0.00012364436,-0.01516213,-0.0185053,-0.032360166,-0.015719324,-0.028545523,0.018666029,0.046675786,0.059791297,-0.00075073977,-0.015365721,0.05730535,0.02507377,0.043589786,-0.0117761,0.05246204,0.047790177,-0.03431035,0.012204711,0.029874219,-0.0085507985,-0.00897941,-0.0217306,-0.0003539393,-0.009022271,-0.00029517265,-0.012172566,0.013940588,-0.014444206,0.033796012,0.007554277,-0.052804932,-0.01457279,0.012097558,0.03591764,0.0107635055,0.0494189,0.02991708,-0.05126193,-0.026102437,-0.020037586,0.006697054,0.037996404,0.03626053,-0.02916701,-0.019362522,0.015140699,-0.017198035,-0.016169367,0.0029359884,-0.068149224,-0.012376156,-0.03135293,-0.019758988,-0.015483589,0.006611332,0.016597979,-0.010431332,0.00031358955,-0.0017251611,-0.006836353,-0.033088803,0.0047843754,-0.027838314,-0.04271113,0.01818384,-0.04069666,-0.020455481,0.022309227,0.021837754,0.025138061,0.027516855,0.0130405035,-0.012997642,0.030281398,0.059148382,-0.005930911,-0.03261733,0.05040471,0.02730255,-0.0062577273,0.0077953706,-0.021762747,0.005716605,-0.01566575,0.0074364087,-0.021966336,-0.04676151,0.024495145,0.061805774,0.029788496,0.00970805,0.01893391,-0.08195051,0.049247455,-0.012086843,-0.0039003643,-0.020894809,-0.03784639,-0.007538204,0.019201793,-0.033624567,0.050747596,-0.0020332255,0.0007567671,0.018001681,0.004382552,-0.035810485,-0.086322345,0.027431132,0.010795651,-0.035231862,-0.003736956,0.03671057,0.013608414,-0.045389954,-0.026102437,-0.00925265,-0.017969536,-0.036860585,-0.031095762,0.019180363,0.041232422,-0.0002821134,0.023016436,-0.051476236,0.028524091,0.0024283517,-0.015580026,-0.006354165,0.019909002,0.020862663,-0.017530208,-0.061805774,0.00916157,0.0328745,-0.030581428,-0.007784656,-0.007522131,0.00027407694,0.02203063,0.05057615,-0.037610654,0.014551359,0.009804487,0.009831275,-0.036796294,-0.016630124,0.011958259,0.025738118,0.039175086,-0.020648357,0.011679662,-0.019780418,-0.02545952,-0.025138061,0.008331135,0.040289477,0.030131385,0.007891809,-0.028866982,-0.062062938,0.0037208833,0.02207349,0.024580866,-0.030860025,-0.0034797892,0.03823214,-0.010918877,0.024495145,0.0250952,-0.00720603,0.0018791934,-0.015633604,0.04526137,-0.017540924,0.018355286,-0.0042753993,0.0169623,-0.033495985,-0.010227741,0.025330937,-0.05271921,-0.0071256654,-0.006557755,-0.02132342,0.025116632,0.037910685,-0.019169647,-0.021966336,-0.0073506865,-0.039025072,0.015387151,-0.014347768,-0.060862828,0.0037637444,-0.015269283,-0.025138061,-0.004323618,0.041511018,0.045389954,-0.00916157,-0.013211948,0.033153094,-0.0018376716,0.007195315,0.010650994,0.032274444,0.055505183,-0.033495985,0.02700252,0.041789617,-0.009616969,-0.020144738,-0.0013052558,0.02809548,0.02841694,-0.033410262,0.00406913,0.02116269,0.012151135,-0.01059206,-0.032810207,-0.023873659,-0.026638202,0.016587263,0.034203194,0.03141722,0.011872537,-0.029059857,-0.0016059536,0.0014599578,-0.024280839,-0.035424735,-0.042732563,-0.020530488,0.026809646,-0.002481928,0.009466955,-0.021473434,-0.0009549999,-0.023145018,-0.05087618,-0.0538336,0.00888833,0.033688862,-0.02248067,-0.014647797,0.023745075,-0.012644038,-0.0024698735,0.0075757075,0.034738958,0.021827038,-0.024473714,0.022609254,0.0012898525,-0.019598259,-0.015172846,-0.03973228,0.006889929,-0.0058987653,-0.055119433,-0.007088162,-0.023059295,-0.011851107,-0.036346253,-0.003710168,0.027731162,-0.0043879095,0.010474192,-0.010795651,-0.019716127,-0.008749031,0.031267207,0.024838034,-0.025138061,-0.009129424,-0.0025488988,0.020069731,-0.070035115,0.020326898,-0.0017854345,-0.021151975,0.034653235,-0.0235522,0.029788496,-0.005582664,0.0284598,-0.015022832,-0.0070345853,-0.026359605,-0.01402631,-0.0670777,0.017465917,-0.010779578,-0.008154333,0.023337893,0.033088803,0.002725701,0.033624567,-0.037439212,0.0025622929,-0.0002432705,-0.045047063,0.008406142,-0.026081007,-0.028974134,0.0023720965,-0.02282356,-0.0039994805,-0.009241935,0.00879725,-0.06026277,-0.011840392,0.01120819,0.017626647,-0.03480325,0.020219745,-0.012794052,0.0036056938,-0.02503091,0.005738036,0.0028449085,0.00044367983,-0.01036704,-0.011561794,-0.018558877,-0.025673825,-0.012644038,-0.023080727,-0.025588105,0.021012677,-0.0201876,-0.009081205,0.053362127,0.018258847,0.030409982,-0.020605495,-0.005973772,-0.016233658,0.026445327,0.017551638,-0.02209492,-0.004460238,0.016062215,-0.0013447684,0.009504459,-0.007104235,0.0318244,0.0063488074,0.0061023557,0.027816884,0.012686899,-0.010083085,-0.026466757,-0.01384415,0.0024752312,-0.024452284,-0.027816884,-0.011497502,-0.0020452803,-0.002696234,-0.025673825,0.008459719,-0.030795733,0.022587825,-0.024152255,-0.008175763,0.0024631764,0.0031449366,-0.011786815,-0.03178154,0.019244654,0.0023587025,0.01611579,0.017690938,-0.045389954,-0.024645159,0.030988608,0.021430572,-0.008245413,0.0070399432,-0.035339013,0.0054862266,0.03338883,0.024216548,-0.027345411,-0.03101004,0.012944066,-0.04560426,-0.015847908,-0.027752591,0.022887852,-0.018280279,-0.029767066,0.028909843,-0.017326618,-0.0015965777,0.04483276,0.011336773,0.00094897253,-0.017669506,0.013576268,-0.01793739,0.020809086,-0.008936549,-0.017969536,-0.032403026,0.009059775,0.009129424,0.037053462,0.015558596,0.011004599,-0.0013280258,0.024066534,0.00023657343,0.0047575873,-0.0073506865,0.03786782,-0.0039459043,-0.061505742,-0.064291716,-0.014551359,0.010833154,0.018290995,0.019137502,0.014251331,-0.0120654125,0.004355764,-0.011926114,-0.016083645,-0.0061827204,-0.065749,-0.025716687,0.012333294,-0.031952985,0.04517565,0.021966336,-0.00797753,0.025545243,0.030988608,-0.018912481,0.0032440529,-0.009343729,0.024002241,0.016490826,-0.0033003082,0.015129984,0.00008333647,-0.00993307,0.011133183,0.013887011,-0.015494304,0.016544402,0.0132976705,0.006723842,0.002507377,-0.010008077,-0.0012610552,-0.011272482,-0.032338735,-0.0012998981,-0.0053978255,0.0092633655,-0.011476072,-0.000029508894,0.0060648522,-0.042882577,0.008936549,0.013222664,0.022373518,-0.041296713,-0.014422775,-0.003648555,-0.047575872,0.012933351,0.013919157,-0.018033827,-0.015976492,0.021677025,0.014658512,0.021516295,0.04976179,-0.005716605,0.031631526,-0.0471044,0.026638202,-0.009204431,0.03748207,-0.0058344733,-0.0032253012,-0.004824558,-0.00083847117,-0.022266366,-0.012944066,-0.028566953,-0.027023952,-0.031631526,-0.0023908482,0.005239775,0.008668667,-0.004998681,0.039796572,0.020091161,0.0015604136,0.04153245,-0.0403752,0.008459719,-0.04650434,0.036174808,0.017808806,-0.003391388,0.041403867,-0.0092687225,0.003736956,0.002191276,0.008599018,-0.04005374,-0.0032065494,-0.013736997,0.01461565,-0.0019568792,-0.009124067,0.03321739,0.004803127,0.035446167,-0.012429732,0.015419297,0.027645439,-0.0339246,0.019126786,0.025652396,-0.03338883,-0.028695537,0.059662715,0.032595903,-0.012611892,-0.022544963,0.01516213,-0.033174526,-0.05400504,0.01595506,-0.007431051,-0.009831275,-0.010902804,-0.0015778259,-0.007414978,0.025288075,0.008041822,-0.0011384991,-0.0099812895,0.020605495,-0.007784656,0.008765104,-0.054905128,0.0016193476,0.0053067454,0.0052022715,0.008395427,-0.003573548,-0.037974976,0.011111752,-0.009713407,-0.013533407,0.017358763,0.017926674,-0.0059523415,-0.021987768,-0.01832314,0.0073828325,-0.03628196,-0.03321739,0.02395938,-0.019266086,-0.04198249,-0.008068611,-0.03812499,-0.0134584,0.0054862266,-0.025138061,0.06060566,0.0019582186,-0.010029508,-0.013897726,0.020069731,0.028888412,-0.019158931,0.0033297753,-0.039432254,-0.0021859184,0.0071256654,0.049333178,-0.015194276,-0.018880334,-0.006557755,0.017380195,-0.0031208273,0.024602298,0.01441206,0.053319264,-0.041403867,0.008652594,-0.003889649,0.07517845,-0.0064291717,-0.013147657,0.037589226,0.03664628,-0.005663029,-0.0070399432,0.01795882,0.04607573,-0.014647797,0.0062630847,-0.007013155,0.009402663,-0.05687674,0.02955276,0.00055585545,0.0112831965,0.06390597,0.020101877,0.0038950066,-0.00916157,0.028888412,0.020669788,0.008754389,-0.009043702,0.008079326,0.036796294,-0.00079494034,0.01911607,0.0040771663,-0.018923195,-0.0051540527,0.02655248,-0.006788134,0.013415539,-0.027966898,-0.0034396069,-0.003726241,0.005636241,-0.02770973,-0.03398889,-0.008518653,0.026595341,0.0021725243,0.038682185,0.020905524,0.006279158,0.011861822,-0.0005990515,-0.0032788776,0.04108241,-0.020969816,0.00663812,-0.008240055,-0.0037476714,0.016330097,0.0026145298,-0.010474192,-0.055205155,-0.014540643,-0.010881374,0.032338735,0.017540924,0.0020680502,0.0047950908,0.024645159,-0.0396037,0.033110235,-0.02209492,-0.009772341,0.027216827,0.0076935757,-0.016983729,0.0036137304,0.025266645,0.008052538,-0.010838512,-0.0058184005,0.035767626,-0.02916701,-0.0018443686,0.007447124,0.022287795,0.022244934,-0.004824558,0.018280279,0.0031369,-0.040568076,-0.035746194,0.008395427,-0.026445327,-0.00916157,0.009429452,-0.014701373,0.012986927,-0.032360166,-0.022737838,-0.022437809,0.010554557,-0.0478759,0.020359045,0.005646956,-0.0023854906,-0.012986927,-0.010870658,0.02616673,-0.011315342,0.0419182,0.022052059,-0.0047656237,0.031245776,-0.008904403,0.0107635055,-0.0013708869,-0.025052339,0.004264684,-0.005571949,-0.013019073,0.04826165,0.017101597,-0.028031189,-0.0013554838,-0.011765384,-0.020648357,-0.022973575,0.01873032,0.018173127,0.019341093,-0.021880616,0.047318704,-0.013394108,-0.014862102,-0.0014197754,-0.03844645,-0.030174246,-0.0049933232,-0.02582384,-0.01011523,0.014101317,0.032145858,-0.005770182,0.04005374,0.026338173,-0.0134584,-0.027088244,-0.007940027,-0.009541962,-0.011186759,0.015569312,0.012033267,-0.017508779,0.030645719,0.0008230679,0.00000458068,0.040268045,-0.031674385,-0.02430227,0.006922075,-0.006755988,0.04573284,-0.000984467,-0.010072369,0.024859464,-0.018451722,-0.026595341,0.007790013,-0.02878126,-0.009884852,-0.017273042,0.029767066,0.006214866,-0.02584527,-0.029959941,-0.03786782,-0.0006563113,-0.0175945,-0.023102157,0.05271921,-0.00019672596,0.017583786,0.040846672,0.039539408,0.033131666,0.03398889,-0.008791893,0.006691696,-0.034588944,-0.008641878,-0.01161537,-0.036089085,-0.037910685,-0.0022086883,-0.009750911,0.008036464,0.014883533,-0.027495425,0.0034262128,0.027109675,-0.0016769423,0.014219185,-0.013876296,0.0068524256,-0.038082127,-0.017465917,-0.03171725,0.013319101,-0.030109955,-0.04457559,0.06459174,0.00825077,-0.00843293,-0.0380607,-0.0020024192,-0.004880813,0.010174165,0.009156212,-0.007972173,0.023895089,-0.03851074,0.0058344733,0.04607573,0.06257727,-0.0052826363,-0.019298231,-0.020091161,0.021055538,0.02189133,-0.00090945995,0.0009590181,-0.017701654,0.016930152,-0.01586934,-0.015772901,0.02548095,0.024345132,-0.010704571,0.023102157,-0.006563113,0.04127528,0.03326025,0.01402631,-0.010533126,0.005135301,-0.02548095,-0.0054246136,0.005180841,-0.013651275,0.056233823,-0.027131105,0.0030592142,0.017712368,-0.0048192,-0.0031636884,-0.026723925,-0.009906283,-0.02953133,0.028588384,0.051733404,0.0050951187,0.012676184,-0.031202914,0.029274162,0.012054698,-0.016072929,-0.010720644,0.013929872,0.016019354,-0.032724485,-0.049118873,-0.008925834,-0.0055344454,-0.048818845,0.061977215,0.023980811,-0.024259409,-0.019576829,0.016072929,-0.0059576994,-0.014669227,-0.0025930994,0.019898286,0.0043664793,0.0538336,-0.015590741,0.009697334,0.018901765,-0.017037306,-0.0032976293,-0.000046418954,0.031674385,0.022909282,-0.007329256,0.015515734,0.0110260295,0.00943481,-0.0045030992,0.013329816,-0.00073265773,-0.004805806,-0.003664628,0.013319101,0.010067011,-0.02661677,0.058934074,0.033838876,-0.010854585,0.06660622,0.0062684426,-0.049976096,0.007613211,0.0018939269,-0.0033110236,-0.022373518,-0.024538007,0.009043702,0.026466757,0.01234401,-0.020369759,-0.010334894,0.012472593,0.012719045,-0.010200952,0.016597979,0.010174165,0.008534726,0.027131105,0.031224344,0.0020466198,0.019973293,0.034996126,0.02002687,0.0123868715,-0.026038146,-0.0075435615,0.0044977413,-0.025138061,-0.039389394,0.027238257,0.0023921877,0.0017760587,-0.015558596,0.025266645,0.023830798,-0.001770701,0.0034288915,0.019105356,-0.018151695,-0.00082708616,-0.00675063,0.047061536,-0.006788134,0.010233099,0.039968017,0.0063434495,-0.011990406,-0.027881175,0.006397026,-0.0053147823,0.003110112,0.010383112,-0.016447965,-0.039475117,0.007972173,-0.006922075,-0.007950743,0.015194276,-0.0029842074,0.019598259,0.015279998,0.035617612,-0.01802311,-0.020541204,-0.013779858,-0.009504459,-0.040182322,0.022716407,-0.023787936,0.021109113,0.0153121445,-0.0055130147,-0.040225185,0.012204711,-0.0065523977,0.01666227,0.008968695,0.00907049,0.03071001,0.029681344,-0.0026064934,0.017744515,0.026209591,0.004157531,0.028031189,-0.001584523,0.007393548,0.027366841,-0.034867544,-0.018173127,0.0032440529,-0.020659072,0.0026587304,-0.006054137,0.02430227,-0.0020734079,-0.008507937,-0.037160613,0.0033994247,-0.0013374017,-0.0023720965,-0.010120588,0.03032426,0.010313463,0.00825077,0.018612452,-0.02016617,-0.013801289,0.008234697,0.03630339,-0.02245924,0.0058987653,-0.013490546,-0.00045673907,0.0060594943,-0.030259969,-0.024516575,-0.023487907,-0.022652116,0.003335133,0.022437809,0.018366002,-0.008861542,-0.029981371,0.015430013,0.045132786,0.05014754,0.007511416,0.0143370535,0.02248067,0.0012818162,-0.011690377,0.026381034,0.010050938,-0.002439067,-0.0035038986,-0.047447287,0.01366199,0.010945665,-0.011401065,0.006021991,0.03587478,0.022566393,-0.002677482,-0.013158372,0.0021979732,-0.034203194,-0.005448723,0.0032922716,-0.022502102,-0.047833037,-0.02286642,-0.016405104,-0.002719004,-0.013008358,-0.019341093,0.049633205,-0.02503091,0.018441008,0.011561794,-0.049118873,-0.018290995,0.0057005323,0.028652675,-0.0075007007,-0.016212229,0.02318788,-0.023037866,0.00031141302,0.010897446,-0.0354676,0.0034931833,-0.0012101576,0.010768862,-0.022159211,0.021087684,-0.022673545,0.051904846,-0.021784177,-0.019769704,0.005855904,0.026252452,-0.018783897,-0.021773461,0.00021849139,-0.0020238496,-0.0036164091,0.0026855187,0.034181762,-0.0010688498,0.008807966,0.022052059,0.0049531413,-0.005764824,-0.014176324,0.024195116,0.011808245,-0.017080167,0.03139579,-0.03823214,-0.017851667,-0.018087404,0.013072649,0.03373172,-0.027409703,-0.01763736,-0.00078623416,0.032103,0.0082293395,0.013876296,-0.031545803,-0.0076828604,-0.0013487866,-0.02809548,-0.021966336,-0.021452004,0.00014683291,-0.012761906,-0.013169087,-0.005464796,-0.007511416,-0.017433772,0.04043949,0.017369479,-0.009043702,-0.018826758,-0.028352648,0.02920987,0.0022488707,0.026873939,-0.0037155256,-0.028224064,-0.050018955,0.012622607,0.021205552,-0.009027629,-0.009627685,0.04148959,-0.0062684426,-0.01873032,-0.0054594385,0.024280839,0.03514614,-0.007227461,-0.034524653,-0.023037866,-0.030602857,-0.024045102,-0.005451402,-0.012311864,-0.009440167,0.0049504624,0.0022287795,-0.032081567,0.006139859,-0.018537445,0.00429683,-0.0030458202,-0.003964656,0.020284038,0.02916701,0.0040021595,-0.040739518,0.00852401,-0.004848667,0.022223504,-0.008245413,-0.006397026,-0.022180643,0.024988048,-0.01625509,0.047318704,-0.0060112756,-0.009065133,0.004339691,0.010292033,0.010575987,0.020884093,0.009815202,0.031567235,-0.0086847395,0.023702214,0.0020399226,-0.027088244,-0.018516015,0.0045272084,-0.031031469,-0.02805262,-0.019994725,-0.029681344,-0.013876296,0.005995203,-0.026873939,0.0059255534,0.017498063,0.0015095159,-0.017069452,-0.0034047822,0.007088162,-0.0133619625,-0.014358484,-0.0026225664]},{"id":"guide-roles-5","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Check role permissions\nUse role.has(permission) to check if a role has a specific permission. Administrator implies all permissions.\n\n```javascript\nimport { PermissionFlags } from '@fluxerjs/core';\n\nif (role.has(PermissionFlags.BanMembers)) {\n await message.reply('This role can ban members.');\n}\nif (role.has('ManageChannels')) {\n await message.reply('This role can manage channels.');\n}\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.040436853,0.018719899,-0.012690662,0.02054623,0.026107175,0.038493447,-0.050107043,-0.0036614435,0.032850552,0.012257494,0.036854435,-0.019071115,0.036713947,-0.018064292,-0.014868212,0.026669122,-0.059051383,0.016003815,0.037510037,0.086024895,0.06120552,0.003216568,0.004088758,0.03788467,-0.061814297,0.0049258266,-0.016893566,0.07970298,-0.011607742,-0.013217489,0.09628045,-0.012866272,-0.038774423,0.039781246,-0.0075863,-0.03870418,0.03896174,0.011467255,-0.009125804,-0.015816499,-0.016893566,-0.0008590197,0.0032019338,-0.017069176,0.0076389825,0.023625236,-0.033435915,0.015804792,-0.031141294,0.015125771,-0.00042804645,0.0028346188,0.019410625,0.07089913,0.023882797,0.02774619,-0.07141425,-0.019843794,-0.026996925,-0.008581417,-0.017186247,-0.037814427,-0.007305326,0.029080817,-0.024304258,0.017853562,-0.04629048,-0.030883733,0.030790076,0.060409427,0.02335597,0.013521877,0.02322719,-0.039921734,-0.01649552,-0.03481737,0.06944743,0.043949027,0.0019273065,-0.0050750943,-0.009219462,0.043995857,-0.03896174,-0.002476084,-0.021119885,0.031375438,-0.02706717,-0.043457326,-0.029361792,-0.06457721,-0.006848743,-0.01610918,-0.061954785,0.0288935,0.037392966,-0.016483812,0.003699492,0.020148182,0.004873144,0.06453038,0.0740835,-0.011279939,-0.042403672,-0.0047092424,0.017326735,0.038470034,0.0119413985,0.029642764,-0.019656477,-0.046056334,-0.029221304,-0.0065911836,0.023180362,0.06523281,-0.005013631,-0.0054292385,0.024234014,-0.04156075,0.045119755,0.00067645975,-0.04303586,-0.04556463,0.03294421,-0.021365738,-0.04739096,-0.036292486,-0.025217423,-0.044651464,-0.045962676,-0.012866272,0.020089647,-0.023074996,0.045377314,-0.05361922,-0.0045541213,0.021471102,0.011584327,-0.039711002,-0.003494615,0.0028814478,0.017525759,0.03858711,0.015582354,0.016881859,-0.003620468,0.0003193885,-0.022407683,-0.012526761,-0.039312955,0.007211668,-0.011174574,-0.025428154,-0.011057501,-0.011473108,-0.047320716,-0.03278031,0.016823323,0.014470165,-0.028331554,-0.024702305,-0.024280842,-0.023871088,-0.021728663,-0.045798775,-0.00871605,-0.04015588,0.0050487528,-0.01317066,-0.0039424174,0.050107043,-0.021681832,0.01462236,-0.003825345,-0.029127646,0.04378513,-0.008511173,0.010905307,-0.006286795,0.008938488,0.004718023,0.0020268182,0.015324795,0.016952103,-0.030017396,-0.03310811,-0.008622392,-0.014856504,0.010372627,-0.009951165,-0.003667297,0.0044780243,0.030836904,0.01640186,0.0272779,0.026903268,-0.033131525,0.005288752,0.009406778,0.013264318,-0.030321786,-0.012725784,0.015114063,0.056241643,-0.021798905,-0.03055593,-0.028987158,-0.0056341155,-0.019129653,-0.03563688,-0.0077853235,0.022899387,-0.016682835,-0.0034975419,0.016636007,-0.033131525,0.034325667,-0.00945946,-0.0064682574,-0.032873966,-0.009658484,-0.033061285,-0.018637948,0.03184373,-0.012245786,-0.0121053,0.071226925,0.018087706,0.021412566,-0.000545119,0.013217489,0.0084584905,0.0121638365,-0.03008764,-0.033904206,0.031515926,-0.0111218905,-0.003746321,0.033857375,0.014786261,-0.025240839,-0.005083875,-0.016378447,0.02250134,0.006930694,0.020733545,0.0010251163,0.03128178,-0.0067784996,0.029033989,0.035262246,0.05919187,0.021494517,0.03924271,-0.02634132,-0.012269202,-0.02748863,0.0009534094,0.05642896,-0.011882862,0.0154067455,-0.01998428,0.018860385,-0.019316968,-0.042005625,-0.05268264,-0.011677985,0.033225186,-0.012327737,-0.03397445,-0.018661361,0.008997024,0.02945545,0.059004556,-0.026364734,-0.032241777,0.014388214,0.064717695,0.0026282785,-0.051043622,0.015196014,0.0045950967,0.015582354,-0.012842856,0.009114097,0.003620468,0.02011306,-0.014563823,-0.049966555,-0.015348209,0.026036931,-0.0037346138,0.016799908,0.03221836,-0.011666277,0.025334496,0.033154942,0.06626305,-0.030696418,0.028495455,0.036831018,-0.0017853561,0.049076807,-0.010255554,0.0038341254,0.03107105,0.0005359727,-0.019668186,-0.0030029104,-0.013393098,-0.061861128,0.032920796,0.061252348,-0.011496522,-0.017151127,-0.053666048,-0.019457454,0.0064975256,-0.034114935,0.043363664,0.031000806,0.009529704,-0.042731475,-0.014458458,-0.035192,0.001802917,-0.024257429,-0.018263316,0.02083891,0.04483878,0.027910091,0.05638213,0.020792082,-0.0014041386,0.057974316,-0.017666245,0.0037960769,-0.01610918,0.09126975,-0.0129131,-0.0040975385,0.030485688,-0.014598945,-0.06270405,0.00865166,-0.032358848,0.01231603,-0.0303452,-0.020218426,0.03980466,0.023718895,-0.031890556,0.020042818,-0.0560075,-0.032124702,-0.051933374,-0.01802917,0.025802786,-0.041584164,-0.002335597,-0.0018980384,-0.036503214,-0.0119413985,-0.0054936283,-0.0043082694,-0.0036146145,-0.00013234685,-0.015875036,-0.014552115,0.029057402,0.012866272,0.014762846,0.002616571,-0.011953105,-0.003670224,0.0006534111,0.007240936,-0.030392028,-0.017080883,-0.01914136,0.038048573,0.025498398,0.022360854,0.01483309,-0.04167782,0.004437049,0.0038663205,-0.01683503,-0.033646647,-0.0037433943,0.0008334101,0.02821448,0.03589444,0.04977924,0.008113126,-0.006005821,0.027582288,0.048889488,0.081857115,0.027605703,-0.030157885,0.019738428,0.035660293,-0.015804792,0.050013386,0.007697519,-0.016273081,-0.042380255,0.024234014,-0.006743378,-0.027371557,0.040671,0.02327402,0.004375586,0.0044136345,0.07080547,-0.014540409,0.057740174,0.006474111,0.00465656,-0.03715882,-0.0034858347,-0.012819442,-0.0053355806,-0.008072151,0.017502343,0.0054292385,0.014353093,-0.07469227,0.016799908,-0.05642896,-0.02140086,-0.0047092424,0.0148096755,0.03699492,-0.02655205,0.0040682703,0.009418485,-0.05553921,-0.04931095,-0.009430192,0.030157885,-0.032873966,0.010600918,-0.006134601,-0.009242876,-0.00084438565,-0.007334594,-0.07394301,0.022267196,-0.012889686,-0.03055593,-0.027301315,0.0014648701,0.023578407,-0.06663769,-0.00173121,0.026903268,0.09201901,-0.006239966,0.039406613,-0.02826131,0.010085799,0.03008764,-0.003119983,-0.005236069,-0.0040536365,-0.00070280104,-0.024514988,-0.019925745,-0.026411563,0.017631123,0.0080311755,0.040296365,-0.0121638365,0.03280372,-0.053759705,0.0025887664,-0.062188927,0.023156947,0.0015482842,0.0395471,0.010776526,-0.035543222,-0.0030351053,0.029806666,0.07244448,0.043129522,-0.0019638918,-0.04462805,0.018228194,-0.039664175,0.02140086,-0.006029235,-0.0111218905,0.028916916,-0.021424273,0.022056464,0.020557936,0.030111056,0.013053588,0.006128747,-0.055679698,-0.042544156,0.00047853397,-0.017759902,-0.01649552,0.01891892,-0.038118817,-0.0037433943,0.03797833,-0.03280372,0.00060219184,-0.0026399856,-0.011063354,-0.017596,-0.026200833,-0.02685644,0.023578407,-0.019843794,-0.019621355,0.029830081,0.037135407,0.04322318,0.019082822,-0.015359916,0.019270139,0.018146243,-0.0021263298,0.0068604504,-0.011537498,0.04135002,-0.037088577,0.03252275,-0.024023283,-0.0022404755,-0.0053560683,0.0047268034,0.0056224084,-0.008675074,-0.035519805,0.012187251,0.020452572,-0.04561146,0.0038955885,-0.017853562,-0.005265337,0.008657514,0.015711134,-0.008159955,0.021412566,0.024795962,-0.03537932,-0.03741638,-0.000074496544,0.013006758,0.010952136,-0.029221304,-0.04542414,-0.008259467,-0.03636273,0.016472105,0.009512143,0.013322854,-0.0034594934,-0.042684644,-0.0075628855,-0.0037755892,0.033482745,0.05408751,-0.021248665,0.026364734,0.03210129,-0.0084584905,0.026247662,0.019832088,-0.01265554,-0.009576533,-0.008300442,-0.0046389992,-0.013826266,0.0019141359,-0.03870418,0.03622224,0.030462272,-0.0037755892,-0.045915846,-0.019398918,0.01879014,-0.03741638,-0.0147745535,0.020557936,-0.009582386,-0.0061755762,-0.018298436,-0.046220236,0.017279906,-0.0055521647,0.03898515,-0.016518934,-0.0020165744,0.018228194,-0.018310145,-0.035917852,-0.01756088,0.0028448624,-0.017994048,0.028495455,-0.022255488,-0.002680961,0.009494582,0.011285792,-0.01982038,-0.043878786,-0.020241842,-0.018965751,-0.005034119,0.02821448,0.019398918,0.0393832,0.028987158,0.011625302,0.008171663,-0.01790039,-0.015933571,-0.021857442,-0.00073755695,0.010946282,0.0013338951,0.005909236,-0.0121287145,0.04458122,-0.02774619,0.03924271,-0.00060292357,-0.008306297,-0.032452505,-0.027886678,0.029736424,0.007194107,-0.021635003,0.058021147,-0.05834895,0.007305326,-0.04823388,0.0016653568,-0.026224246,-0.014634066,0.013732608,-0.016764786,-0.01845063,-0.023964748,-0.009734581,-0.05216752,-0.018075999,0.015371623,-0.034981273,-0.019176481,0.017865269,0.007732641,-0.013416512,-0.0067609386,0.01457553,-0.008540441,0.008528734,0.008294589,-0.042380255,-0.028495455,0.006737524,0.013580414,-0.00091975107,-0.024585232,0.021506224,0.009225315,-0.007129717,0.013475048,-0.014915041,-0.0069072796,-0.023297435,0.009412631,0.036151998,0.016530642,0.0145872375,-0.004747291,0.007317033,0.015757963,-0.00671411,0.0121287145,-0.017830146,0.0030029104,-0.020124769,-0.020710131,0.031375438,0.038376376,-0.0117716435,-0.010495553,0.00824776,0.0023151094,0.0056721643,0.019949159,-0.04137343,0.003965832,0.021599881,-0.0020165744,-0.033857375,-0.0027409606,-0.031141294,0.019071115,0.04991973,0.010665308,-0.028846672,-0.05118411,0.024772547,-0.011607742,-0.01641357,0.019059408,0.0027658385,-0.023543287,-0.044557806,0.053478733,0.01044287,-0.019586235,0.019106237,-0.008440929,0.036081754,-0.022196952,-0.007896543,0.048561685,0.0589109,-0.019761844,-0.004609731,0.0024643769,-0.026107175,0.019340383,0.0049492414,-0.03413835,0.0076682507,0.012877978,0.02774619,-0.018017463,-0.028916916,0.010197017,0.014762846,0.005736554,-0.018087706,-0.033272013,-0.035145175,-0.03210129,0.0070477664,-0.01862624,0.054789945,-0.016097473,0.007024352,-0.0036760776,-0.0026999852,-0.0074223983,-0.04991973,-0.05596067,-0.028425211,0.018860385,0.062516734,0.007902396,0.045119755,-0.021681832,-0.003746321,-0.03999198,-0.0082536135,-0.03128178,-0.002907789,0.019258432,-0.0018234047,0.02987691,0.016518934,0.038001742,-0.009436046,0.009957019,0.024304258,0.019843794,0.0026692536,-0.012842856,-0.019726722,0.003839979,0.01683503,-0.00459217,-0.005423385,-0.011022379,0.0084760515,0.026622294,-0.0062809414,-0.030743247,-0.0133579755,-0.027535459,0.018403802,-0.016015522,0.0109345745,-0.03643297,-0.0014473092,0.0027775457,-0.08401125,-0.013451634,-0.00013362731,-0.0075336173,-0.01610918,0.007510203,0.03601151,0.047250472,0.03875101,-0.0080662975,0.002601937,-0.021775492,0.0018629166,0.016331619,0.028589113,-0.0027248631,-0.001018531,0.0012226762,0.043316837,-0.009219462,0.0010595064,-0.0439022,-0.05783383,0.024140356,-0.018637948,0.01410724,0.0046448526,-0.016460398,0.033951033,0.0024673035,-0.0010734088,0.02940862,0.020733545,0.013603828,0.013229196,0.024327673,0.018087706,-0.005139484,0.027043754,-0.046805598,-0.013182367,0.008967756,-0.032850552,-0.051933374,0.02229061,-0.012409688,0.011016525,-0.017958926,0.010636039,0.0014282849,0.0059619187,-0.0070594735,0.0074048378,0.018755019,0.00999214,0.004846803,-0.024983278,0.065794766,-0.005800944,-0.035402734,0.010840916,0.0075745927,0.027839849,0.009348242,0.037439797,0.0021731588,-0.016038937,-0.012152129,0.0025829128,0.0058828946,0.013674072,0.000092697665,0.010319944,0.07174205,0.00924873,-0.007791177,-0.009605802,-0.026528636,-0.042427085,-0.017701367,-0.03371689,0.061861128,-0.0044633904,0.01317066,0.044698294,-0.0007602398,-0.006813621,0.013229196,-0.027629118,-0.022466218,0.061252348,-0.0016390154,0.006228259,-0.01747893,0.017221369,0.015968693,-0.03451298,0.009746288,0.03481737,-0.013861388,-0.015652597,-0.012725784,-0.007445813,-0.018204778,0.013158953,0.032194946,0.0028126675,-0.03336567,-0.0077619087,0.010278968,0.011502376,0.03521542,-0.012327737,-0.016167717,-0.044183172,-0.009272144,0.0071414243,0.010472138,-0.0027790093,-0.0059209433,0.02263012,0.0011677985,-0.035262246,0.017982341,0.01457553,-0.00025609616,-0.017408686,-0.0024160843,-0.005502409,-0.003163885,-0.024257429,0.0032399823,0.011988227,0.00085023924,0.020944277,-0.032920796,0.013685779,0.02685644,-0.017865269,0.012397981,0.006035089,0.023461336,0.022068173,0.0395471,-0.025943274,0.050575335,0.010799941,0.021787198,0.0035297368,0.00003978637,0.008007761,0.0034975419,0.016952103,0.027160827,-0.041022215,0.040507097,0.001210969,0.02272378,-0.023789138,0.021260371,-0.0139901675,0.04682901,-0.0042731473,0.000069831935,-0.010197017,0.024561817,-0.0070828884,0.0007558495,0.015992109,-0.01184774,0.007041913,-0.04530707,0.015055528,0.02535791,-0.008189224,0.011917984,0.033857375,0.012456518,-0.016460398,0.024374502,0.009465314,0.049451437,-0.018040877,-0.0076448363,0.023215484,-0.019258432,0.013158953,-0.031000806,-0.006210698,0.0019097456,0.011127744,0.026575465,0.07642495,-0.004249733,-0.0014216995,-0.024140356,0.014341385,-0.016179424,-0.0013931631,-0.032873966,0.0066555734,-0.00046353406,-0.002108769,0.014751139,-0.009020438,-0.015933571,0.011209695,0.00004893266,-0.03802516,0.026247662,0.037135407,0.005376556,-0.01157262,-0.022700364,0.04031978,-0.007024352,0.00897361,-0.027090583,0.021834027,0.017244784,-0.0021731588,-0.026130589,-0.013229196,-0.008985316,-0.0015716987,-0.00405071,-0.012807735,0.0005107289,-0.02446816,0.005704359,0.0045394874,0.0010638966,-0.001709259,0.0043170494,0.020183304,-0.029127646,0.019960867,0.02041745,-0.00090072677,-0.0038429059,-0.013615536,0.03184373,-0.012983344,0.003556078,0.021974513,-0.0015131625,0.0013280415,0.043199763,0.024819376,-0.0024716938,-0.00036292485,0.004510219,0.006099479,-0.018532582,0.03875101,0.01137945,0.0047063157,-0.022981338,0.021236958,-0.002976569,0.0017107223,0.027231071,-0.03336567,-0.00924873,-0.01619113,-0.012608712,0.019808672,0.0030380322,0.03448957,-0.0051365574,0.01623796,-0.033037867,-0.005297532,0.0075628855,-0.035613462,-0.02706717,-0.029478863,0.034583226,-0.015804792,-0.0050048507,-0.019890623,-0.0036116876,-0.020932568,0.031609584,-0.026879853,0.0051687523,0.023473043,-0.020979397,-0.004281928,-0.012269202,0.032335434,0.014306263,0.019715015,-0.017923804,0.023028167,-0.011578473,-0.02748863,0.0055287504,0.014013582,0.016214546,-0.0036321753,0.013498463,-0.028659355,0.006708256,-0.017186247,-0.0032721772,0.017759902,0.0010602381,0.005288752,-0.006222405,0.00032725433,0.0015453574,0.015839914,-0.009201901,0.010390188,0.023297435,-0.005581433,-0.008628245,0.0063394774,-0.022735486,-0.015055528,-0.0064038676,0.012889686,0.0258262,-0.037697356,0.033131525,-0.0072702044,0.0050985087,0.00085536117,-0.027441802,0.011373596,-0.014961869,-0.027371557,-0.023309141,-0.027910091,-0.01990233,-0.00077194703,0.026200833,0.018204778,0.005689725,-0.021354029,0.007504349,0.014435044,0.062750876,0.026388148,0.0033921767,0.030438859,-0.0439022,-0.02748863,0.026388148,0.06935377,0.026434978,0.0009753605,0.0056838715,0.034887616,0.016226253,-0.004878998,-0.01901258,0.02868277,0.023754017,-0.011859448,0.0110867685,0.01781844,-0.014821382,-0.0048058275,0.009523851,-0.042989034,0.000110944515,0.03516859,0.028659355,0.017455515,0.0028624234,0.006415575,0.0017121858,0.014095533,-0.023332555,-0.009547265,-0.037908085,0.013603828,0.012245786,-0.000027255948,0.019504284,0.0047414377,-0.029221304,-0.04799974,0.01781844,0.0056019207,0.020089647,0.023648651,0.0072760577,0.008300442,-0.013627242,0.027231071,-0.029338377,0.0021834027,0.0054789945,-0.017748196,-0.01880185,-0.032031044,-0.020241842,-0.045541216,0.04577536,0.015687719,0.00005236252,-0.012070178,0.021775492,-0.010981403,-0.0015380403,-0.01265554,0.0258262,-0.006362892,0.04069441,0.00052353373,0.019281846,-0.0019141359,-0.010191164,0.042427085,0.0012738955,0.0073287403,0.009523851,-0.002749741,0.0042204647,0.019551113,0.012292616,0.01781844,0.013077002,0.043106105,-0.03404469,0.008563856,-0.017748196,0.03064959,0.005408751,0.04334025,0.020955984,-0.009078975,0.032241777,0.010811648,-0.055445552,-0.009131658,0.001677064,-0.01076482,0.0019258432,-0.015500403,0.03210129,0.006474111,-0.014224312,0.0042468063,-0.015324795,0.0350281,-0.0065150866,0.0076565435,0.00792581,0.00978141,0.026107175,0.021389151,0.0019712087,-0.0033951034,0.010940428,0.022115001,-0.003998027,0.016905274,-0.037650526,-0.027348144,0.008809708,-0.0376037,-0.01756088,-0.0060936254,0.012327737,0.01901258,-0.0025141325,0.033763718,0.03673736,-0.015992109,0.013615536,-0.0016609665,-0.01150823,0.024351086,-0.019492576,0.0078614205,0.015617476,0.019867208,0.026645709,-0.0033424208,-0.041139286,-0.014879919,-0.011906276,0.013779437,-0.04322318,0.014657481,-0.015277965,-0.015207722,0.013556999,0.012327737,-0.029221304,0.017596,-0.018661361,-0.014036996,0.009599947,0.012222372,0.046735354,-0.026622294,-0.008487758,0.009190193,0.00080194685,-0.01704576,-0.0065150866,0.015933571,0.009617508,-0.025474982,-0.051277768,0.027816433,0.00810142,0.013802852,0.0006940206,-0.018474046,-0.010138481,0.026739366,0.015242844,-0.0015936499,0.028870087,0.008686782,-0.0036380289,-0.007832153,0.023063289,0.03392762,-0.03657346,0.0010895062,0.0018307217,-0.019235017,0.011871154,-0.038048573,-0.019199895,-0.014762846,0.0048555834,-0.00711801,0.024585232,0.008259467,-0.012725784,0.007352155,0.052401666,-0.016390154,-0.015207722,0.021939393,-0.026996925,-0.021763783,0.0007682885,0.004577536,-0.006567769,-0.005736554,-0.03392762,-0.002983886,-0.004972656,-0.026996925,0.0054146047,-0.027184242,-0.034630056,-0.009541411,-0.0016126741,0.0041326606,-0.027652532,0.020171598,0.01005653,0.028823256,0.0067960606,0.005019485,0.0056985053,0.019785257,0.015523817,-0.026622294,0.002691205,-0.0028799842,-0.024585232,-0.0077033727,-0.011408718,0.0107121365,0.039734416,-0.012327737,-0.014189191,0.0065911836,-0.050107043,0.034793958,0.006146308,-0.007428252,-0.0069072796,0.008657514,-0.016003815,-0.007240936,0.004530707,-0.03273348,-0.0075745927,-0.021073056,-0.008423368,-0.0047443644,0.017420392,0.0068897186,-0.023110118,0.015676012,-0.06865133,-0.013369683,0.021014519,0.005350215,-0.024140356,-0.0376037,-0.027722776,-0.0033131526,-0.034840785,0.013873095,-0.019867208,-0.004235099,0.035964683,-0.0059267967,-0.020780375,0.015020406,-0.016823323,0.08401125,-0.000006465285,-0.0013207245,0.0058214315,0.012023349,-0.015102357,-0.0055433842,0.004138514,0.0109170135,-0.00029414473,0.0024629133,-0.0011399938,0.012515054,-0.014727725,-0.036971506,-0.02241939,-0.031258367,-0.0054350924,0.06926011,0.005625335,-0.0026707172,0.040928558,-0.033482745,0.043246593,0.016273081,0.0001129567,0.009787263,0.011713107,-0.014072118,-0.030813491,0.032312017,0.013030173,0.00664972,-0.029127646,0.0039892467,-0.01811112,-0.0409988,-0.0013558463,0.0028038872,0.012327737,-0.0036936384,-0.013720901,0.0026180346,-0.000024374867,-0.010355066,0.0152194295,0.017841853,0.0041268067,-0.010109213,-0.033342257,0.006321917,-0.0060936254,-0.011672132,-0.028378382,-0.0039248564,-0.028331554,0.028635941,0.009699459,0.021880856,0.0011224329,0.09112926,0.008165809,-0.0080487365,-0.013826266,0.01870819,0.022782315,-0.0047443644,-0.0151843075,0.024351086,-0.014505287,0.00012484688,0.005329727,0.0032663236,0.01675308,-0.011525791,0.0031463243,-0.04338708,-0.012959929,-0.014821382,0.00559314,0.03367006,0.011127744,-0.0141423615,-0.014739431,0.00072475214,0.03622224,0.021834027,-0.0043843663,0.024444744,0.005238996,-0.018485753,0.0012226762,0.023320848,-0.01751405,0.033833962,-0.01397846,-0.008686782,0.0011217012,-0.00018658435,0.03128178,0.0440661,0.000049161317,0.01231603,0.0058887484,0.012983344,-0.0011524328,-0.033061285,0.02369548,0.017654538,-0.028027164,-0.01870819,-0.0037785158,-0.01990233,-0.01244481,0.010202871,-0.046992913,-0.0050370456,0.008757025,0.01163701,-0.032546163,-0.020511108,-0.0045219264,-0.014060411,-0.026013516,-0.0023121824]},{"id":"guide-roles-6","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Add/remove roles from members (member.roles)\nUse member.roles.add(), member.roles.remove(), and member.roles.set() for Discord.js-style role management. member.roles.cache is a Collection of Role objects. Also available: guild.addRoleToMember() and guild.removeRoleFromMember() when you only have user ID.\n\n```javascript\n// Discord.js parity: member.roles.add(), remove(), set()\nconst member = await guild.fetchMember(userId);\n\nawait member.roles.add(roleId); // Add a role\nawait member.roles.remove(roleId); // Remove a role\nawait member.roles.set(['id1', 'id2']); // Replace all roles\n\n// Check if member has a role\nif (member.roles.cache.has(roleId)) {\n await message.reply('Member already has this role.');\n}\n\n// Guild-level: when you only have user ID (no member fetch needed)\nawait guild.addRoleToMember(userId, roleId);\nawait guild.removeRoleFromMember(userId, roleId);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.019880949,0.0029966785,-0.018058343,0.018706877,0.022575723,0.01947841,-0.0007103833,0.022475088,0.01886342,0.041953497,0.03130858,-0.034752525,0.050004277,0.0055964086,0.016660638,-0.011774262,-0.050898805,0.011606538,-0.007832736,0.054298025,0.012489887,0.04510672,-0.0029379749,0.043764923,-0.051882792,0.0035026474,0.01079587,0.069773406,-0.030570593,-0.04537508,0.04181932,-0.012445161,-0.035155065,0.02207255,-0.015520111,-0.026276844,0.033477817,0.03419344,0.029273523,0.02884862,0.005065281,-0.018561516,0.015341205,-0.023526162,-0.020686027,0.04875193,-0.017141448,-0.020272305,-0.039806623,0.02105502,-0.0042210678,0.010438058,0.011354951,0.088961095,-0.018852238,0.014223041,-0.034685437,-0.014167133,-0.034886703,0.01743217,0.01715263,-0.02712665,-0.02037294,0.027149012,0.012612886,-0.0011747706,-0.07102575,-0.011807808,0.004232249,0.036809947,0.02486796,-0.011528267,0.0074413787,-0.037547935,0.017991252,-0.0013285181,0.030771863,0.010717598,0.02692538,-0.011718354,0.015419476,0.025225772,-0.029094616,-0.0062896702,-0.017577533,-0.01975795,-0.036653403,-0.013619233,0.0033516954,-0.05783142,-0.0053224587,-0.020149307,-0.091689415,-0.0014088862,-0.019288322,-0.013731049,0.024443056,0.024152333,-0.025382314,0.06270661,0.08126813,-0.027864637,-0.06252771,0.010739962,0.026768837,0.014245404,-0.02023876,0.049288653,-0.04559871,-0.000092597926,-0.060201928,0.023503799,0.024599599,-0.0057249977,-0.027797546,0.04790213,0.028244812,-0.0060939915,-0.017174993,-0.032314926,-0.07460388,-0.031621665,0.044122737,-0.056892164,-0.03862137,-0.037905745,-0.036474496,-0.061633177,-0.052598417,0.037078306,-0.003192357,-0.020809025,0.039269906,-0.02556122,-0.034327623,-0.013786958,-0.017789982,-0.032493833,-0.0045565167,-0.003642418,0.029273523,-0.011606538,0.0012425593,0.03517743,-0.03303055,-0.015218207,-0.021625284,-0.005439866,-0.08153649,0.0024068472,-0.05125662,-0.0035166244,0.019735588,-0.019321866,-0.050943535,-0.032493833,-0.020473575,0.0023187918,-0.018002434,-0.020249942,-0.029899694,-0.05684744,0.00635676,-0.07044431,0.011405269,-0.05098826,-0.0133956,0.018483244,-0.016481731,0.055326734,0.028490808,-0.021278653,-0.01387641,-0.011444405,-0.0004507597,-0.0041092513,-0.034685437,-0.02323544,-0.0075643766,0.009454073,-0.002658434,0.00032426746,-0.03054823,-0.0063735326,-0.04866248,-0.0033936265,-0.0071450653,-0.025158681,-0.0056858617,0.0362285,0.017230902,0.025538856,-0.010930049,0.023391983,0.06731345,-0.024935048,0.05657908,0.029497156,-0.021446377,-0.042445492,-0.01995922,0.02658993,0.048304666,-0.017879436,0.0091298055,-0.010052291,-0.025807217,-0.031107312,-0.0026807971,-0.008106686,-0.010102608,-0.04202059,0.009208078,0.02003749,-0.03130858,0.0055936133,-0.071383566,0.03088368,-0.0010412899,0.023705069,-0.056892164,-0.0033684678,0.029989148,-0.0094932085,-0.0027031605,-0.0011971339,0.013663959,-0.0059709935,0.016280461,0.049914822,0.015631927,-0.037078306,-0.027327918,-0.028513173,0.019679679,0.02958661,-0.024711415,0.031241491,0.0115506295,0.0032091294,-0.027573915,-0.035512876,-0.025717763,-0.001253741,0.043586016,-0.011729537,0.013451508,0.0070500216,0.018941691,0.0060324925,0.047186505,0.03602723,0.033567272,-0.0063623507,-0.013585688,-0.037011214,0.024935048,0.048125762,-0.027327918,0.05890486,-0.03130858,0.029295886,-0.006451804,0.013060151,-0.057473607,0.017678166,0.00012588076,-0.011405269,-0.009577071,-0.019098233,0.036183774,0.013239057,0.012120893,-0.037771568,-0.004422337,0.029139344,0.012892426,0.03466307,-0.007748874,0.0153635675,0.019567862,-0.015620746,0.0423784,0.013854047,0.01708554,0.034841977,-0.0005492979,0.0014885553,0.0145361265,0.016772455,-0.020719571,-0.011422041,0.0027828296,-0.00731279,0.03177821,0.0055125467,0.03649686,-0.013116059,0.043026935,0.052195877,-0.0029575427,0.04470418,-0.020339396,-0.019422501,0.0028597035,-0.023011807,-0.04606834,-0.029653698,-0.0002610213,-0.051838063,0.010918868,0.057965603,0.0018841056,0.02303417,-0.039448813,0.005112803,0.018136613,0.028826257,0.036809947,0.038710825,0.048975565,-0.041662775,0.0037206893,-0.022855263,0.022564542,-0.047141775,-0.012344526,-0.034014538,0.03991844,0.023257803,0.0608281,0.009487618,0.0053392313,0.032359656,0.008525997,0.025986122,0.000023389712,0.036049593,-0.004461473,0.00854277,0.01223271,0.003357286,-0.027641004,-0.010438058,-0.02945243,0.021278653,-0.019198868,0.016928997,0.0061666723,-0.00008495423,0.008839083,0.021289835,-0.033723813,-0.03247147,-0.023705069,0.015084027,0.018136613,-0.008056369,0.029206432,-0.0031056993,-0.045017265,0.017957708,-0.03097313,0.010745552,0.015822016,0.0024697438,0.0043161116,-0.034282897,0.02542704,-0.010007564,-0.00977275,0.040812973,-0.051480252,0.0075755585,0.009353438,-0.0097951135,-0.021233927,0.028244812,-0.019836223,0.03962772,0.023347257,0.022273818,0.020831387,-0.0089676725,0.0045704935,-0.017745256,-0.037436116,0.009051534,-0.045240898,-0.022665177,0.029519519,0.03710067,-0.0118525345,0.03596014,-0.029273523,-0.01743217,0.05098826,0.064898215,0.011572993,-0.04906502,0.017555168,0.020987932,-0.001612951,-0.0050289407,-0.013440327,-0.004970237,0.0035865097,0.0045732893,-0.006172263,-0.011941987,0.039359357,0.047454864,0.033790905,0.015251751,0.03593778,-0.033052918,0.020104581,-0.002724126,0.019511955,-0.003273424,-0.026232118,-0.019456046,-0.016772455,-0.04758904,0.04385438,-0.009353438,-0.011164864,0.0016325188,0.0189976,-0.0130825145,-0.09848785,0.03765975,0.028177723,0.010466011,-0.009962837,0.005372776,0.03922518,-0.0073183808,-0.0072065643,0.0052134376,0.016761273,-0.0142342225,-0.029676061,0.033410728,0.004363633,0.026276844,0.01578847,-0.050719902,0.021043839,0.026075576,0.00082185026,0.01346269,-0.0004413252,0.039001547,-0.014401947,-0.023347257,0.008486861,0.02549413,-0.013563325,-0.03218075,-0.020451212,0.022944717,0.006026902,0.0022363272,-0.0062840795,0.01817016,-0.012009077,0.015229388,-0.008430953,-0.031286217,0.020171672,0.016515275,0.07634821,-0.02296708,0.0075028776,-0.028535536,0.009878975,-0.036944125,-0.015676653,0.039873715,0.021312198,0.013149604,-0.009487618,-0.019970402,0.018416155,0.022475088,0.01647055,-0.008386227,0.005543296,0.017454533,-0.060067747,0.025382314,0.027462099,-0.008375045,0.029608972,-0.009610616,0.058725953,-0.016090374,0.010762325,-0.004961851,0.014055316,-0.047812674,-0.033120006,0.05720525,-0.040432796,0.025113955,0.007748874,-0.024621962,0.0105610555,0.084577896,-0.007491696,-0.024018154,-0.009783931,-0.016358733,0.006261716,-0.014603216,-0.041126058,-0.014044135,-0.00984543,-0.035691783,-0.004975828,0.017365081,0.014748578,-0.023637978,0.023816885,0.0142342225,0.0108853225,-0.0020783865,0.019500773,0.028692078,0.020730752,-0.031755846,0.02755155,0.014703851,-0.011086592,-0.02002631,-0.015397113,-0.0014787713,0.03287401,-0.04175223,0.01667182,0.029027527,-0.038845003,-0.0136080505,-0.0340369,-0.017812347,-0.02542704,0.018103069,0.017454533,0.00594863,-0.013138422,-0.038800277,-0.017186174,-0.038218834,-0.021580558,-0.013048969,-0.009783931,-0.037145395,-0.0024110402,-0.024957411,0.0126799755,-0.011220772,0.0036480087,-0.0014955439,-0.052464236,-0.033768542,0.012970698,0.017320354,-0.0042602033,-0.0016478936,0.00052483805,0.0070388396,-0.019836223,0.0017806755,0.04161805,0.009962837,-0.04045516,0.009476436,-0.013205512,-0.005369981,-0.008855856,-0.06431677,0.021021476,0.024800869,-0.035110336,-0.0138093205,-0.021166837,-0.008878219,-0.0069046603,0.018237248,0.018293157,0.020518303,0.033880357,0.0049115336,-0.00023691091,0.0002220603,0.0011768672,0.020529484,-0.022922354,-0.01600092,-0.0052861185,-0.0027898182,-0.037033577,0.000047478276,-0.019087052,-0.037682112,0.038599007,-0.014893939,0.021558193,0.0072009736,0.019310685,-0.0116512645,-0.019221231,-0.033477817,-0.034752525,-0.013596869,0.03350018,-0.01620219,0.017510442,0.017197356,0.018360246,0.0074134246,0.025874306,-0.02193837,0.024890322,0.028803894,0.004033775,0.010963595,-0.0052777324,-0.03989608,-0.01907587,0.006966159,0.01572138,-0.018125432,0.0015612359,-0.04334002,-0.005920676,-0.0062561254,0.03546815,0.000069885224,0.021569375,-0.019288322,-0.0027283193,-0.0155648375,0.010969185,-0.013171967,0.007815964,0.0011132717,-0.017063176,-0.037123032,-0.011528267,-0.02090966,-0.024040516,-0.045442168,0.025986122,-0.034059264,-0.0065412573,0.032784555,-0.021569375,0.021614103,-0.03553524,-0.015900286,-0.011997895,0.013171967,0.028177723,0.006910251,-0.021043839,0.017946526,0.0054845926,0.03486434,-0.008587496,0.021971915,0.01223271,-0.010890913,0.018416155,-0.02426415,-0.01168481,0.011433222,-0.0074190153,0.023749795,-0.01798007,-0.016638275,-0.0047410135,-0.020339396,0.037637386,-0.031263854,0.0044027693,-0.019634953,0.0072680633,-0.035579965,-0.0071674287,-0.005520933,-0.0056858617,-0.023772158,-0.013026606,0.03971717,0.011097774,-0.013675141,0.049243923,-0.06355642,-0.0016045647,0.019601408,-0.0012670191,-0.018147795,-0.00656362,-0.010488374,0.036004867,0.028557898,-0.00854836,-0.0040980694,-0.056221265,0.0032957871,-0.0412826,0.0067537082,-0.0052330056,0.015397113,-0.007899825,-0.045330353,0.034081627,0.00032671343,-0.000047478276,0.05022791,-0.0007973904,-0.006507712,-0.059978295,0.00826882,-0.023190713,0.016571185,-0.027976453,-0.0009860805,-0.01974677,-0.004824876,0.022128457,0.027014833,-0.0013075526,0.02549413,-0.01168481,0.018975236,-0.026165029,0.004271385,-0.011125728,-0.003566942,0.0112878615,-0.043228205,-0.033366002,0.00064818544,0.018226067,-0.010029928,-0.0055796364,0.046694513,-0.035848323,0.005892722,-0.013048969,-0.005562864,-0.010549873,-0.03629559,-0.014949847,-0.009526754,-0.031487487,0.048036307,0.00990693,0.027931727,-0.0015332819,0.022799356,-0.020719571,0.010169698,0.0026500477,-0.012802973,-0.0020043082,0.0013124446,0.008235275,0.0075420137,-0.004327293,-0.008140231,0.018673332,0.013485053,0.0028317494,0.009509982,0.002422222,-0.023906337,-0.0023593253,0.015296478,-0.02180419,-0.023928702,-0.033097643,-0.021021476,0.005476206,-0.014077679,0.010997139,-0.018192522,-0.04461473,0.007989279,0.007978098,0.016325189,-0.049646463,-0.00888381,0.005137962,-0.07827145,-0.031957116,0.03238202,-0.027573915,-0.020965567,0.0018463676,0.028244812,0.048975565,0.02336962,-0.016761273,-0.008453317,-0.056087088,0.006038083,-0.036854673,0.032918736,0.011774262,-0.0095323445,0.013093696,0.005831223,0.0021888053,-0.00867695,0.00040743087,-0.0066474825,-0.013820502,-0.0035501695,-0.01079587,0.02003749,-0.043407112,0.026880654,0.008307955,0.009370211,0.019880949,-0.020563029,0.0055321143,-0.04933338,0.052240603,0.017230902,0.015889104,0.02925116,-0.043787286,-0.0033656724,0.017599896,-0.0019987174,-0.04121551,0.019064689,-0.006759299,0.009213668,0.03280692,-0.028982801,0.019925674,-0.0037961653,0.03826356,0.018427337,0.030056238,0.008050778,-0.023190713,-0.0062393527,0.045710526,-0.01633637,-0.01947841,0.07500641,0.021636466,0.00086517906,-0.012322163,0.038710825,-0.017510442,-0.0093310755,-0.0016912224,0.009728023,0.022363272,-0.010264742,0.004693492,-0.003192357,0.010264742,-0.003745848,0.007223337,-0.011707173,0.008319138,-0.033768542,-0.03613905,-0.016325189,0.0027143422,0.025315223,-0.004620811,0.008922946,-0.02439833,-0.030257506,-0.0034327623,-0.008962081,0.014457855,0.04477127,0.02289999,0.0134067815,-0.028267175,0.02808827,0.007676193,-0.013675141,-0.007827145,0.043966193,-0.03596014,-0.046962872,-0.008157004,-0.0022125663,-0.021882461,0.006474167,-0.006876706,0.03390272,-0.0077600554,-0.031621665,-0.016604729,0.011449995,0.024599599,-0.027059559,-0.018606242,-0.04354129,0.0076314667,0.02945243,0.040231526,-0.004612425,0.0018030388,0.012255073,0.019053508,0.005629954,0.033477817,0.007832736,0.023637978,-0.034439437,-0.001972161,0.0116512645,0.038039926,0.0028611012,-0.003944322,0.03303055,0.010946821,0.017465716,-0.0070388396,0.013205512,0.0051798928,-0.050764628,0.020864932,-0.025851943,0.034528892,-0.036116686,0.044055644,0.007804782,0.050272636,0.05282205,0.0040197982,-0.0031532214,0.008492452,0.038285922,0.006334397,-0.0053839576,0.0005258863,-0.010851778,0.051927518,-0.012132075,0.016258098,0.005831223,-0.0011621913,-0.019042326,0.017051995,0.025605947,0.0032370836,-0.031084947,0.024487782,0.013373236,-0.023078896,0.017107904,-0.036004867,0.0045565167,-0.016325189,-0.0029267932,0.05277732,0.043205842,0.030257506,0.025337588,0.00697175,0.015553656,0.038487192,-0.0069493866,0.010432466,-0.019355413,-0.007402243,0.038308285,-0.013384419,0.005562864,-0.06619529,-0.01148354,-0.015039301,0.03417108,0.0024389944,0.01209853,-0.022363272,0.0040701153,-0.023682704,-0.0020140922,-0.044167463,0.004310521,0.020864932,0.008498044,-0.020976748,-0.010650508,0.019646134,-0.03540106,0.0020700004,-0.010041109,0.029273523,-0.010147335,0.05590818,0.0007904019,0.05541619,0.030033873,0.009465255,-0.0075196503,0.018695695,-0.005434275,-0.021714738,0.011097774,-0.0054426612,-0.029094616,0.029362977,-0.023302529,0.0010391932,-0.021491105,-0.0039471174,-0.021233927,0.026276844,-0.06556911,-0.00017165559,0.009140987,-0.011740718,-0.004791331,0.013171967,0.022285001,-0.027104286,0.0311744,-0.0053420267,0.0077432827,0.030168055,-0.008106686,0.019992765,-0.0608281,-0.023280166,-0.02625448,-0.037637386,0.006882297,0.018147795,0.025919031,-0.012735884,-0.0011845545,0.010063472,0.022050187,-0.040164437,0.041975863,0.021793008,-0.0037738022,-0.0016423027,0.036586314,-0.017789982,-0.013417963,-0.001073437,-0.008224093,-0.0022349295,-0.024621962,-0.012512251,0.000087574925,0.011360542,0.050317362,0.0137086855,0.0038576643,-0.0034607162,-0.0146367615,0.013630414,-0.0042154766,-0.0068599335,-0.033880357,-0.00014116816,0.0018156181,-0.007256882,-0.0073519256,-0.022251455,-0.016772455,0.05707107,-0.018326702,-0.007866281,0.00915776,-0.0189976,0.039739534,-0.0074246065,-0.0061946264,0.0100578815,-0.0016814385,-0.018024797,0.011461177,-0.011774262,-0.035512876,-0.019724406,0.039672446,0.010700826,-0.029340614,-0.029989148,-0.033052918,0.009700069,0.0014633966,0.009526754,0.038084652,-0.007089157,0.012534614,0.008380637,0.01818134,0.0128812445,0.039873715,-0.01018647,-0.009543526,0.009789523,-0.013205512,-0.011399678,-0.013429144,-0.022285001,-0.002662627,0.0011964351,-0.00057725195,0.04307166,-0.009560299,-0.006334397,0.034014538,0.0034271714,0.0019693656,-0.023705069,-0.013619233,-0.033522546,0.003650804,-0.033768542,-0.025069227,-0.028244812,-0.039091,0.048215214,0.010583418,0.0022125663,-0.006384714,0.017242083,0.0051435526,0.042557307,0.0061834445,0.0008875424,0.041729864,-0.024689052,-0.00078970304,0.040634066,0.07169665,0.023280166,-0.010303877,-0.004631993,0.055282008,0.0020867728,0.0094932085,-0.01927714,-0.011975532,-0.006457395,-0.020730752,0.009342257,0.008514816,0.01572138,-0.025315223,-0.018852238,-0.019064689,0.047857404,0.030794226,0.027998816,-0.00001585521,0.008425362,0.007005295,0.011640083,0.001163589,-0.01264643,0.026701747,-0.039963167,0.01332851,-0.0015374749,-0.01647055,0.017655803,0.0062505347,-0.019165324,-0.031040221,0.012903608,0.02323544,0.013451508,0.022799356,-0.034439437,0.038576644,0.016604729,0.011410859,-0.002440392,-0.0053755715,-0.006725754,-0.023056533,-0.021278653,-0.013798139,-0.0038436875,-0.04682869,0.040432796,0.036317952,-0.017230902,-0.0030050646,0.020976748,0.008397409,0.014278949,-0.0038408919,-0.0040421616,0.010152926,0.062080443,-0.039404087,0.017678166,0.007659421,-0.0035781234,0.0021063406,0.002430608,0.011718354,0.016727727,-0.015620746,0.0074413787,0.009923702,0.0043049296,0.019511955,0.028132996,0.0077824187,-0.0047186506,0.0077432827,-0.007659421,0.03021278,-0.009817476,0.06185681,-0.01120959,-0.018975236,0.029989148,0.009068307,-0.029474793,0.006982932,0.016727727,0.008285592,-0.008760812,-0.0010007564,0.010102608,0.014413129,0.0034131943,0.00063630496,-0.008470089,0.011561812,-0.011265499,-0.014256586,0.006636301,0.013596869,0.014972211,0.025315223,0.031845298,0.03280692,0.04045516,0.02938534,0.023816885,0.056802712,-0.02235209,-0.0013697504,-0.0056774756,-0.039672446,-0.020182854,-0.008017233,0.011908443,-0.01100273,0.000034615026,0.025762489,0.046873417,-0.007922189,0.01831552,0.016481731,-0.02275463,-0.0065412573,-0.015732562,0.020932022,-0.0077153286,-0.008006051,0.028692078,0.015341205,-0.0027143422,-0.036385044,0.01216562,0.009124215,-0.019031145,-0.010566646,-0.008973263,-0.07236755,0.04318348,0.016213372,0.0105946,0.016649457,-0.0068599335,-0.004782945,0.029922059,0.03795047,0.003935936,-0.020607755,-0.025270497,0.010432466,-0.023481436,0.009560299,-0.0031336534,0.035289243,0.0007694363,-0.012802973,-0.032359656,0.0045341533,-0.01913178,0.008727266,0.0067481175,0.03144276,0.022642814,0.028803894,-0.015318842,-0.006116355,0.028244812,0.03177821,0.016246917,-0.032314926,0.009688888,0.034059264,-0.028110633,-0.0256954,0.012624067,-0.03739139,0.009951656,-0.046381425,0.044793632,-0.004886375,0.0027255237,-0.012802973,0.020618936,0.009700069,-0.0022307364,0.024644326,0.04969119,-0.022061368,0.013250238,0.0031252673,-0.016984904,-0.005892722,-0.018404974,0.044927813,-0.027842274,0.0069493866,-0.019333048,-0.005515342,-0.013652777,-0.05317986,-0.033857994,-0.012858882,-0.022083731,-0.0073239715,0.037816294,-0.0026137074,-0.011382906,-0.012993061,0.011164864,0.0485283,0.05541619,0.0121544385,0.01620219,0.018192522,0.011422041,0.0111872265,0.05018318,0.006815207,-0.010404512,0.017812347,-0.05693689,0.007027658,0.03725721,-0.023145987,-0.015262933,0.025337588,0.02077548,0.00717861,-0.0008868435,0.015486565,-0.005037327,-0.0071730195,0.011662446,-0.026612293,0.024554873,-0.011030684,-0.0038325058,-0.00008185307,-0.025851943,-0.0228329,0.03739139,0.002960338,0.005892722,0.018203704,-0.039135724,-0.003670372,-0.00049304025,-0.0035082384,-0.011237544,-0.041103695,0.005414707,-0.02296708,-0.006714572,0.027260829,-0.013652777,-0.0070220674,0.04222186,0.05134607,-0.009750387,0.025203407,-0.03582596,0.06597165,-0.022944717,0.004880784,0.024935048,0.007933371,-0.038218834,-0.023816885,0.02296708,-0.000011094279,0.006714572,0.015195843,0.00085120206,-0.0012467525,-0.011595356,0.001650689,-0.0057305885,-0.034685437,-0.020551847,0.026679384,-0.00005442312,0.0018617423,0.025113955,-0.056221265,0.0039051864,0.018158976,-0.011259908,0.03177821,-0.0021077383,-0.012903608,0.0017541192,0.025181044,-0.000032846056,0.015676653,-0.04647088,-0.016437005,0.015207025,-0.027037196,0.0015905877,0.0018882988,0.017275628,-0.005870359,-0.0040197982,-0.006233762,0.01093564,-0.045643438,0.0139099555,0.022944717,-0.010343013,-0.025069227,-0.039202817,0.021837736,0.0012467525,0.0077265105,-0.0023159964,-0.036474496,-0.009789523,0.027797546,0.0059989477,0.0009071102,-0.016593548,0.060067747,-0.026075576,-0.009783931,-0.00041791363,0.01709672,0.032717466,0.032717466,-0.04434637,-0.0054566385,-0.027372645,-0.011410859,-0.010874141,-0.023928702,0.002799602,0.014905121,0.0010587611,-0.040142074,0.027618641,-0.04387674,0.009655342,0.012601703,0.00031256166,0.0063735326,-0.0057110204,0.026522841,-0.0051854835,0.012221528,0.00135787,-0.0069158417,0.0028960437,-0.01776762,-0.038397737,0.036921762,-0.00772092,0.02542704,-0.01168481,-0.013921137,0.0034663072,-0.0011097774,0.012210347,-0.0034495348,0.023951065,0.046157792,-0.016369915,0.049646463,-0.0041931137,-0.009342257,-0.0008204525,0.0018673332,-0.010493966,0.008559543,-0.01969086,-0.013921137,-0.0117518995,0.004271385,-0.040701155,-0.0053811623,0.0049115336,-0.020462394,-0.00001511268,-0.0072345184,0.023973428,-0.01831552,-0.042937484,-0.011332588]},{"id":"guide-roles-7","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Permission bitfields for create/edit\nWhen creating or editing roles, pass permissions as a string (API format), number, PermissionString, or array. Use resolvePermissionsToBitfield() to combine multiple permissions. Handles high bits (PinMessages, ModerateMembers, etc.) correctly with BigInt.\n\n```javascript\nimport { resolvePermissionsToBitfield, PermissionFlags } from '@fluxerjs/core';\n\n// Single permission by name\nresolvePermissionsToBitfield('SendMessages'); // \"2048\"\n\n// Array of permissions (OR'd together)\nresolvePermissionsToBitfield(['SendMessages', 'ViewChannel', 'ReadMessageHistory']);\n// Returns combined bitfield as string\n\n// From PermissionFlags enum\nresolvePermissionsToBitfield(PermissionFlags.BanMembers); // \"4\"\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.029801585,-0.0013411003,0.00015403796,0.0075316313,-0.00687595,-0.02683071,-0.051711783,0.0032784063,0.011361274,0.045514725,0.02748059,-0.004331558,0.03864458,-0.0093246,-0.00018839957,0.017361049,0.0013693875,0.001939482,0.028594667,0.037205562,0.006324713,0.016966479,0.01925266,0.021480815,-0.05844267,-0.00017217074,0.024347246,0.040222857,0.005483352,-0.017488703,0.051897462,-0.021875385,0.0050684744,-0.0004924863,-0.03820359,-0.029314175,0.026482562,0.023407241,-0.006405948,-0.018916115,-0.011953128,0.009086698,0.007189284,-0.01358943,-0.000059702175,0.031519122,-0.03209937,0.013032391,0.001475283,0.025020333,0.010020899,0.047719672,0.0042474223,0.07882101,0.024115145,0.055796735,-0.04785893,0.009458058,-0.011929918,0.03267962,-0.000008023755,-0.05282586,-0.018939326,-0.013136836,0.00041669127,0.05366142,-0.08077065,0.010270406,0.026552191,0.09655342,0.027434168,-0.0039631003,0.030497884,-0.015689932,0.036184322,-0.025438113,0.03165838,0.04412213,-0.012904736,-0.02720207,-0.010160158,0.008349782,-0.04259027,-0.02163168,0.0037861243,0.049530048,-0.023001067,-0.045236208,-0.030683564,-0.06081009,-0.035743333,-0.031240603,-0.08230251,0.009899046,0.0057589705,-0.03801791,-0.03228505,0.02696997,-0.023929466,0.02759664,0.08569116,0.025089964,-0.040130015,0.0073749637,0.0059939716,0.0066438504,-0.0038470505,0.035789754,0.010142751,0.0011554207,-0.0673553,0.030149734,0.008407807,0.03669494,0.018266236,-0.00806546,-0.006202861,-0.012127203,0.031124553,0.029290965,-0.0722758,-0.06034589,0.024138356,-0.013136836,-0.046094976,-0.033027768,-0.034443576,-0.0671232,-0.0089938585,-0.025206013,0.028757136,-0.019055374,0.08350942,-0.04785893,-0.03790186,-0.006452368,0.010543123,0.011268434,-0.010073122,-0.034281105,0.0037542107,-0.008924228,0.017511912,-0.0018553459,0.011575966,0.045978926,-0.051479686,-0.006411751,-0.039155196,0.020946987,-0.050969064,-0.037205562,-0.026180832,-0.0076650884,-0.018126976,-0.05807131,0.044423856,0.03697346,-0.033770487,-0.011802264,-0.0052831667,0.0033973574,-0.025206013,-0.045514725,0.009156328,-0.025902312,0.017709197,-0.0014694805,-0.035998642,0.056910813,-0.019612413,-0.022153905,-0.011361274,-0.04284558,0.004789955,-0.009562503,0.014970423,-0.03650926,-0.023291191,0.010647568,-0.01370548,0.01698969,-0.02643614,-0.012788686,-0.034327526,0.0020758405,-0.031008502,0.008048053,-0.008419412,-0.009434847,0.020378342,0.04298484,0.023859836,0.010131146,0.005552982,-0.010926087,-0.012637822,-0.008605092,0.007676693,-0.023766996,-0.008825586,0.014506223,0.07775336,-0.0069919997,-0.02692355,-0.04340262,-0.03249394,-0.014169679,-0.019925749,0.000021532675,0.026343301,0.0066728625,-0.009527687,-0.02690034,-0.019670438,0.0010995717,-0.027364539,-0.041174464,-0.0757573,-0.02671466,-0.024950704,-0.04286879,0.007363359,-0.009655342,0.012591402,0.04217249,0.012777082,0.038783837,0.017036108,0.008692129,-0.00093202485,0.04293842,-0.046419915,-0.0540792,0.01356622,0.017105738,-0.025229223,0.018800065,-0.0010125344,-0.00592144,0.0026880032,-0.00008554138,0.018301051,0.003452481,0.0017175368,0.005170018,0.017720802,-0.0008914074,0.01855636,0.008692129,0.0384589,0.0188813,0.022246744,-0.0002471498,-0.0004634738,-0.022850202,0.010705593,0.06995481,-0.011314854,0.050087087,-0.020807726,-0.024416875,0.009423243,-0.03342234,-0.045700405,0.008152497,0.01100152,0.032981347,-0.023059092,-0.05282586,-0.0022586188,0.023186747,0.009794602,-0.018544756,-0.019844513,-0.044748798,0.053336482,-0.020888962,-0.03804112,0.017941296,0.014668693,-0.0107288025,-0.023198351,-0.012800291,0.0131716505,-0.00967275,0.0066438504,-0.056353774,0.023743786,-0.004186496,0.0081583,0.009893244,0.03254036,-0.003652667,0.019682044,0.029128496,0.025275644,-0.061599225,0.05426488,0.046303865,-0.0021121062,0.021654889,-0.0012765477,-0.023059092,0.020830937,0.014239308,-0.038691,-0.035023823,0.0006234049,-0.068469375,0.06568418,0.025948731,-0.03697346,-0.040153224,-0.056910813,0.0037222968,0.03718235,-0.010293616,0.0013374737,-0.004575263,0.019217845,-0.030288994,-0.012138807,-0.050736967,0.035186294,-0.0061390335,-0.026366511,0.025345273,0.050087087,-0.036021855,0.030033685,0.02692355,0.0014063783,0.04284558,-0.021155875,-0.007653483,-0.012324487,0.055100437,-0.01857957,0.00042902154,0.040803105,-0.0040733474,-0.009800404,-0.017593147,-0.017790431,-0.010612753,-0.010502505,0.016920058,0.050040666,0.010073122,-0.019682044,0.036277164,-0.058535513,-0.044284597,-0.023639342,-0.03397938,0.024904285,-0.072368644,-0.03172801,0.027527008,-0.07473606,-0.015179312,-0.017453888,-0.027248489,0.009957071,0.014610668,-0.018115371,-0.045329046,-0.020981802,-0.034954194,-0.017941296,0.033399127,-0.018335866,0.020041797,0.003629457,-0.008668919,0.0026575401,-0.0047638435,-0.025043543,0.012719057,0.016351415,0.0384589,-0.022815388,-0.056725133,-0.014773138,0.020714886,0.0070036044,0.00813509,0.00032639003,-0.007270519,0.011541151,0.056446616,0.077660516,0.062202685,-0.00554718,0.034768514,0.06651974,0.07988867,0.014947212,-0.031565543,0.009446452,0.027550219,0.022571683,0.03667173,0.018231422,-0.030172944,-0.046628803,0.0076186685,0.02338403,-0.0007673792,0.021364765,0.0111871995,0.017279813,-0.0094058355,0.08100275,-0.009075093,0.06020663,0.025577372,0.011193002,-0.015782772,-0.034791727,-0.0033509375,-0.013925974,-0.056400195,0.0377626,-0.024115145,-0.021411186,-0.07561804,0.014285728,-0.011825473,-0.029615905,0.023349216,0.012568192,0.00398631,-0.00347279,-0.016142525,0.030428253,-0.040106807,-0.026180832,-0.01953118,0.018324262,0.03172801,0.00692237,0.009063488,-0.0022484646,-0.0012627668,-0.020192662,-0.041731503,0.046628803,-0.02722528,-0.020645257,-0.018103767,-0.0016827219,0.031054923,-0.02091217,0.010635963,0.05389352,0.042451013,-0.008106077,-0.012544982,-0.039572977,0.022989463,0.04957647,0.008164102,-0.023233168,-0.025484532,-0.046396703,0.003417666,-0.0066728625,-0.007055827,0.008697932,0.0038267416,0.0132760955,0.011413496,0.012997576,-0.03741445,0.0021672298,-0.055982415,0.022618104,0.016757589,0.014065234,-0.0036120496,-0.044632748,-0.007647681,-0.0010074571,0.083695106,0.07148667,0.013554615,-0.044423856,0.008361387,-0.045259416,0.006904962,-0.0106765805,-0.010757815,0.0389231,-0.005750267,0.016235365,-0.014076839,0.03797149,-0.008576079,0.011152385,-0.03386333,-0.035650495,-0.015156102,-0.020413157,0.026087992,0.047464363,-0.028919606,-0.027805528,0.041847553,-0.0025052247,-0.003664272,-0.0032639003,-0.0111349765,-0.013809924,-0.0009994787,-0.0014056531,0.045537937,0.0063769356,-0.044331018,-0.0021788348,0.040199645,0.028919606,0.008506449,0.006417553,-0.009109908,-0.014912398,0.00400952,0.01051411,-0.03223863,0.040965576,-0.020645257,0.017744012,-0.01659512,-0.0072240992,-0.00088923145,-0.0057589705,0.040640634,0.004656498,-0.023581317,-0.0031333442,0.010647568,-0.035023823,0.023813415,-0.03769297,-0.012417327,-0.00024406721,0.011024729,0.0042242124,0.036207534,0.0065858252,-0.044888057,-0.027944788,0.005706748,0.019333893,0.020285502,0.0039079767,-0.025600582,-0.02664503,0.0002641946,0.020111429,-0.020633651,0.0027199169,-0.008883611,-0.03766976,-0.01932229,0.0041371747,0.023859836,0.06034589,-0.025438113,-0.004508534,0.036207534,0.014343753,0.027921578,0.0046477937,-0.012394117,-0.046211023,-0.0036381606,0.024045516,0.0036381606,-0.012672637,-0.047093004,0.040153224,0.009434847,-0.017987717,-0.023952676,-0.002862078,0.006260886,-0.011506336,0.001088692,-0.00020145517,0.023163537,0.0131716505,0.006347923,-0.010073122,0.0140884435,-0.006237676,0.0375305,-0.041476194,-0.015179312,0.018985745,-0.017906481,-0.046675224,0.01184288,-0.035232715,-0.015573882,0.034049008,-0.01051411,0.026250461,0.0075838533,0.019194635,-0.0047377325,-0.028316148,-0.014877583,0.00050554186,0.0009037377,0.019449944,0.014250914,0.030915663,0.02685392,-0.009933862,-0.0025458422,0.009545095,0.0054137222,-0.018962534,0.0024022306,-0.006168046,-0.020633651,0.021260321,0.011303249,0.007021012,-0.021086246,0.02149242,-0.0035511234,-0.028084047,-0.02650577,0.047951773,0.045189787,-0.008210522,-0.0135198,0.047766093,-0.034118637,0.016908454,-0.04460954,-0.011964733,-0.028269727,0.000050182465,0.0193455,-0.022351189,-0.018776855,-0.021480815,0.0056255134,-0.01610771,-0.016490674,0.006817925,0.0038470505,-0.0140884435,0.0031565542,-0.011883498,-0.0004725402,0.00046601243,0.012614612,-0.02142279,-0.0050017457,0.036184322,-0.011222014,-0.04980857,-0.0337937,-0.015597091,-0.0016290488,-0.008750154,0.05848909,-0.00463909,-0.003794828,-0.0050452645,-0.011239422,-0.009695959,-0.010873864,0.031936903,0.03154233,0.012695846,0.012927946,-0.004424398,-0.017256603,0.012301277,-0.027967999,-0.016560305,0.005370204,0.022107484,-0.046582382,-0.0031478505,0.02153884,0.013484985,-0.03274925,0.008175707,0.034977406,0.019171424,0.0054514385,0.016606724,-0.0629454,-0.015597091,0.027643058,-0.016212154,-0.022200324,-0.012173623,-0.025693422,0.02708602,0.04962289,0.023546502,-0.028408987,-0.03367765,-0.022525264,-0.007833361,-0.0026488362,0.016258575,0.0055123647,-0.014622273,-0.019670438,0.031403072,0.020471182,-0.00967275,0.0016841725,-0.01326449,0.012800291,-0.020076612,-0.0027358737,0.03790186,0.045700405,-0.0056632296,0.020053403,-0.016467465,0.008726944,0.016641539,-0.0011082755,-0.06512714,0.01056053,0.0070384196,0.008169905,-0.029894425,0.007369161,0.006463973,-0.013032391,-0.0059359465,-0.024161566,-0.052175984,-0.024625765,-0.02708602,-0.00946386,-0.013125231,0.052175984,-0.021921804,0.0070500243,0.018034136,-0.017604752,0.01650228,-0.034536418,-0.06396664,-0.01647907,-0.004505633,0.046884112,-0.013102021,0.079610154,-0.02671466,-0.012045967,-0.049483627,-0.0028432198,-0.011274236,-0.011071149,0.012707451,0.0012584148,0.009115711,0.012846711,-0.0024979715,-0.012220043,0.04762683,-0.011964733,-0.007589656,0.00032276346,-0.036393214,-0.0370663,-0.0028751334,-0.008686326,0.0013026588,-0.04393645,-0.01617734,-0.00051642157,-0.011338064,-0.019728463,-0.034072217,-0.017593147,-0.035511233,0.038296428,-0.02181736,0.010096331,0.0019264264,-0.0008254041,0.0056400197,-0.08197757,-0.015550671,0.030288994,-0.029198125,-0.04384361,-0.01837068,0.018219816,0.07626792,0.01895093,-0.02158526,0.025159594,-0.032981347,0.036718152,0.04804461,0.0193455,-0.015306966,0.019299079,0.0012344796,0.008239535,-0.009353613,-0.018266236,-0.01076942,-0.034768514,0.013055601,0.0067308876,0.023766996,0.013960789,-0.005790884,0.05305796,-0.046373494,0.00023826472,0.047766093,0.02694676,-0.0017378455,-0.011256829,0.01846352,0.0026909043,0.020645257,0.013299305,-0.031170972,0.013867949,-0.0032697027,-0.0029259052,-0.02258329,0.01848673,-0.02146921,0.040872734,-0.0011546954,0.0072415066,0.013032391,0.0022354089,-0.01876525,0.016548699,-0.029987264,0.034188267,-0.011274236,-0.008274349,0.03244752,-0.0063537257,-0.017024504,-0.010920284,-0.004343163,0.020355131,0.023500081,0.0547755,-0.018185,-0.012579797,-0.02673787,-0.003928285,-0.004351867,0.018185,-0.000084952066,0.0041313726,0.057607114,0.014262519,-0.01356622,0.012208438,-0.014517828,-0.064245164,-0.016061291,0.003995014,0.033724066,0.05556464,-0.011558559,0.04340262,-0.018811671,-0.0028374172,0.007392371,-0.0070442217,0.010972507,0.075014584,-0.009011266,-0.010299418,-0.023001067,0.025113173,0.0019148214,-0.033956166,0.03189048,0.0036613706,-0.015272152,-0.017651172,-0.0043808795,0.0015565178,-0.034838144,0.011326459,0.009272378,0.0071602715,-0.04370435,-0.0042155082,0.007392371,-0.011506336,0.0037426057,0.0044766204,-0.0066380478,-0.028130468,0.0167808,0.024532925,0.011332261,0.01892772,-0.024300825,-0.01083905,-0.012591402,-0.029360596,0.017732408,-0.014308939,0.025043543,0.015446226,-0.014239308,0.005303475,-0.010369048,-0.020993406,0.039596185,0.014007209,0.005930144,0.007757928,-0.013856344,0.013009181,0.026018362,-0.03834285,0.015121287,-0.0137519,0.021759335,0.042265333,0.04412213,-0.013102021,0.040013965,0.010189171,0.010641765,0.009191143,-0.0015971352,-0.005436932,0.010090529,-0.005790884,0.0021411185,-0.042451013,0.02151563,-0.004876992,0.019008955,-0.015156102,-0.0003960199,-0.017395863,0.039155196,0.009452255,0.014274123,-0.0023442057,-0.0052454504,0.0022209028,-0.008581881,0.04999425,0.0074678035,0.017314628,-0.0431241,0.021945015,0.022850202,-0.013241281,0.01671117,0.018359076,-0.014181283,-0.0076070633,0.0015129991,-0.009904849,-0.010612753,-0.00083555846,-0.008947439,0.013601035,-0.029848006,-0.012695846,-0.040013965,0.00007652033,-0.013960789,0.017070923,0.047905352,0.056214515,0.010450283,0.014889187,-0.013624244,0.010775222,-0.014900792,-0.015562276,-0.010044109,0.039155196,-0.019171424,-0.041336935,0.016281785,-0.022989463,-0.012428932,0.00550076,0.0010937692,-0.0027373242,0.041801132,0.024115145,0.017813642,-0.03674136,-0.010664975,-0.004543349,-0.01345017,-0.012823502,-0.012649426,-0.0017175368,0.0048450786,-0.012486957,-0.016235365,-0.017906481,-0.02197983,-0.013809924,-0.015504251,-0.0032784063,-0.002319545,-0.012788686,-0.011100162,0.014007209,0.0004384506,-0.0066032326,-0.023001067,0.057142913,0.0079262005,-0.014610668,-0.014471408,-0.010119542,-0.012695846,0.0066206404,0.041313723,-0.0038586555,-0.011570164,-0.0026836512,-0.0032464927,-0.010038306,0.014250914,0.007340149,0.008715339,-0.012544982,0.004482423,-0.005657427,-0.018614385,0.020146243,0.024950704,0.011941523,0.0036990868,0.020691676,-0.013125231,0.023952676,0.024927493,-0.0069803945,-0.0068933573,0.012092387,-0.0109841125,0.021132667,-0.0016885244,0.029778374,-0.0037106918,-0.01613092,-0.030451464,-0.0037774206,-0.01650228,0.0019438339,-0.00047145225,-0.031101342,0.029035656,-0.00557039,-0.012336092,-0.033631228,-0.009742379,-0.009713367,0.025020333,-0.030080104,-0.0027982504,0.0059823664,-0.024138356,0.010247196,0.022026248,0.030544303,0.009568305,0.030683564,-0.0645701,0.029267756,-0.023627736,-0.014123259,-0.0024559037,0.010664975,0.0025414904,0.010398061,0.01603808,-0.023105511,0.023024278,-0.024184775,-0.0044214968,0.019600809,0.01580598,-0.0036613706,0.002373218,0.011349669,0.022780573,0.041267302,-0.028478617,0.020181058,0.016304994,-0.01599166,-0.030613933,0.011506336,-0.023163537,-0.012568192,0.001396224,0.01610771,0.03165838,-0.0032668014,0.008796574,0.012811896,-0.0024559037,-0.006521998,0.008396202,0.02759664,-0.006928172,-0.01074621,-0.04259027,-0.018289447,0.0005624788,0.020053403,0.029058866,0.016850429,0.00046093523,-0.0045346455,0.00024316057,0.0036265557,0.054311298,0.0145990625,-0.0016856231,0.029290965,-0.05783921,-0.01321807,-0.012022758,0.05356858,0.013148441,-0.011732633,0.010740408,0.030544303,0.007021012,0.015689932,0.0048073623,0.0058460077,0.022931438,-0.012603006,0.03247073,0.0043953857,0.022246744,0.00014778215,-0.0001990979,-0.023592921,0.013102021,0.025809472,0.038482107,-0.007763731,0.015225732,0.0027938986,-0.010711395,0.007258914,-0.018939326,-0.010943495,-0.052036725,0.037507292,-0.0041458784,-0.020946987,-0.004424398,0.040988784,-0.010705593,-0.055935998,0.02130674,-0.008367189,0.004969832,0.018660806,0.01687364,-0.038853467,-0.0009066389,0.024115145,0.015411411,0.008372992,-0.019032165,0.0011503435,-0.0025124778,-0.021318346,-0.040431745,-0.030126525,0.04307768,0.008634104,-0.010154356,-0.009742379,-0.0014005759,0.025414903,-0.019473154,-0.017268209,-0.0008246788,-0.024556134,0.018312655,0.00057372113,0.01104794,0.0082279295,0.026296882,0.03374728,0.00468551,0.022165509,0.016560305,-0.0034002587,0.02151563,0.0071718767,0.017593147,0.0335616,0.011256829,0.03256357,-0.027155649,-0.006568418,-0.014227703,0.0148543725,-0.0040298286,0.036903832,0.039317667,-0.017395863,0.022618104,0.017337838,-0.058164153,-0.0010110837,0.0082279295,0.015875611,0.018614385,-0.012278067,0.018614385,0.0014353908,0.00941744,0.014436593,-0.021063035,0.019844513,-0.016490674,0.012498562,-0.0022470139,-0.0022600696,-0.00093927793,0.011906708,-0.011436706,-0.007142864,0.025275644,0.04846239,0.014076839,0.014784742,-0.015852401,-0.03650926,0.017569937,-0.02114427,0.0004718149,-0.0059939716,0.0038818654,0.039851498,0.0064697755,0.023906255,0.02690034,-0.003995014,0.019496365,0.008367189,0.011871893,0.020714886,-0.023534896,0.012997576,0.039572977,0.009376823,0.033886537,-0.015144497,-0.012997576,-0.016537094,-0.037019882,0.025902312,-0.03850532,0.012614612,0.020517603,-0.045746826,0.0052976725,0.010107936,-0.019658834,-0.002196242,-0.024811445,-0.0123593025,0.01846352,0.00473193,0.021620074,-0.03820359,-0.034838144,-0.0049379184,-0.022606498,-0.00042684563,0.018092161,0.0036671732,-0.01356622,-0.008442622,-0.009724972,0.035650495,0.0061564413,0.0074271862,-0.020703282,-0.02375539,0.0060519963,0.030033685,-0.0106243575,-0.002300687,0.01643265,0.0005729958,-0.005039462,-0.018962534,0.0054746484,0.028362567,-0.007345951,0.03850532,0.022861809,-0.031054923,-0.029708745,-0.02722528,-0.011523744,0.010340036,0.014947212,-0.012254857,-0.0061390335,-0.0025864595,0.0011249576,0.020030193,0.035789754,-0.030706773,-0.017128948,-0.020703282,-0.007345951,0.022316374,0.01580598,-0.0007601261,0.009922257,-0.0125101665,-0.004923412,-0.025159594,-0.014250914,-0.003936989,-0.0071950867,-0.03374728,-0.046048556,-0.011808066,-0.021991434,0.009614725,-0.04356509,-0.005254154,0.017651172,0.036277164,-0.0047522387,0.0010176116,-0.025020333,-0.001265668,0.008140893,-0.002927356,-0.0044708177,-0.017685987,-0.006318911,-0.0049988446,-0.0030347018,0.005750267,-0.00019547135,-0.0020787418,0.011918313,0.014053629,-0.051526103,0.0037077905,-0.01638623,-0.020006983,0.010717197,0.006121626,-0.038412478,-0.019380314,0.005538476,-0.012231647,-0.0037048894,-0.022339584,-0.024393665,-0.0026096695,0.0015144497,-0.0039776065,-0.018092161,0.02692355,-0.029917635,0.004990141,0.01046769,-0.0002322809,-0.0050829807,-0.0160845,-0.007258914,-0.012034363,-0.012835106,0.0024268911,-0.0039660013,-0.0025095765,0.023975886,0.011721028,-0.0025037741,0.02692355,-0.027643058,0.050690547,-0.00062086637,0.012939551,-0.0030753193,0.024973914,-0.019948957,0.0056226123,0.003974705,-0.017883271,-0.0060926136,0.017303023,-0.0044447067,0.03325987,-0.033538386,-0.027155649,-0.022664523,-0.020192662,0.036393214,0.042892,0.028896397,0.021039827,0.05426488,-0.03244752,0.020262292,-0.00951028,0.00018422904,0.017581543,-0.0035801358,0.008964846,-0.03722877,0.025832683,0.019856118,-0.015817586,-0.019032165,0.029383805,-0.002830164,-0.02641293,-0.011193002,0.019426733,-0.001697228,-0.007473606,0.010548925,0.013252885,-0.02692355,-0.002927356,-0.004705819,0.012196832,-0.015283757,0.009051884,-0.0326332,0.01592203,-0.0163166,-0.018509941,-0.03230826,0.0047116214,-0.033932958,-0.012753871,0.0035801358,0.020459577,0.006632245,0.07557162,-0.024022305,-0.019624019,-0.033724066,0.017036108,0.02239761,-0.0011873344,0.014691902,0.010334234,-0.021353161,0.024370454,-0.003037603,-0.0022441128,0.00036718877,-0.014401779,-0.0107288025,-0.003606247,-0.018010927,-0.034977406,-0.00091969455,0.036462843,0.025925523,-0.03704309,0.015016843,0.016374625,0.017152159,0.045700405,0.0036265557,0.031147763,-0.0070152096,-0.007792743,-0.0015507153,0.058349833,0.0006310207,0.024091935,-0.0050713755,0.0015115484,-0.0009175186,-0.0047116214,0.02172452,0.04389003,0.016629934,0.014320543,0.015980056,-0.008703734,0.016966479,-0.030892452,0.01580598,0.00016818152,-0.022061065,-0.010073122,-0.019507969,-0.028942816,0.020378342,0.015643511,-0.009841022,0.03205295,0.020076612,-0.023151932,-0.012185227,-0.00340316,-0.0005613908,-0.027898367,-0.01869562,0.01051411]},{"id":"guide-prefix-commands-0","type":"guide","source":"guides","text":"Guide: Prefix Commands (prefix-commands)\nSection: Basic Structure\nCheck for a prefix, split args, and dispatch to command handlers.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content) return;\n if (!message.content.startsWith(PREFIX)) return;\n\n const args = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const command = args.shift()?.toLowerCase();\n\n if (command === 'ping') {\n await message.reply('Pong!');\n }\n if (command === 'hello') {\n const name = args[0] ?? 'there';\n await message.reply(`Hello, ${name}!`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"prefix-commands","url":"/guides/prefix-commands"},"embedding":[-0.013574409,-0.026486654,0.03622295,0.002224082,0.013611197,0.0047240662,-0.057093453,0.03695869,0.018234098,0.04534613,-0.001417833,-0.0044726883,0.066854276,-0.0304106,0.01629665,0.010355545,-0.06391131,-0.034113828,0.0103371525,0.031097293,0.07377023,-0.0067136306,0.02641308,0.065088496,-0.029282466,0.0026164767,-0.024303956,0.065088496,0.004279556,-0.02353143,0.055572923,-0.024536941,-0.011385582,-0.019435808,0.009135443,-0.011980305,0.03327999,0.00885954,-0.0042550317,0.025873536,-0.017069176,-0.046940234,0.017817179,-0.013807395,-0.022783427,-0.01635796,-0.032372575,-0.0005824611,0.02039227,0.03502124,-0.03732656,-0.0021826965,0.01656642,0.12331008,0.0036051278,-0.002429476,-0.060526907,-0.03511934,-0.0075781257,0.005839939,0.008976032,-0.050766084,0.019644268,0.027688362,-0.023212608,0.01882269,-0.014702545,0.003396668,0.061409794,0.037571806,0.043727502,0.05562197,0.015242088,-0.04995677,0.008571375,0.0016584814,0.009773085,0.0570444,0.02410776,-0.0027053787,-0.0018071623,0.0028785842,-0.008552982,-0.06400941,-0.03695869,0.02783551,-0.034677897,-0.020821452,-0.032568775,-0.06042881,0.00912318,-0.025333993,-0.059202574,0.04326153,0.033353563,0.010705022,0.025775438,0.0016554159,-0.040858116,0.040367622,0.101041675,-0.05802539,-0.06400941,-0.04277104,0.029306991,-0.014923267,0.0013097711,0.043310583,-0.01221329,0.0046842135,-0.052875206,0.0087062605,0.020907288,0.012556636,0.034825042,-0.013476311,0.026388554,-0.0030257322,-0.008044095,-0.03779253,-0.006269121,0.022096736,0.047087383,-0.0041232114,0.011986436,-0.07779228,0.0021750324,-0.011410107,-0.02071109,-0.040024277,0.083874404,-0.03769443,0.024365269,-0.029282466,-0.01751062,0.025799962,-0.008264816,0.017130489,-0.016063664,0.053610947,-0.009012819,-0.058613982,0.056161515,0.0062507275,-0.0007127485,-0.015953304,-0.05890828,0.019116987,-0.056553908,0.008712392,-0.011391713,0.024303956,-0.017878491,0.020784665,-0.00568666,0.025530191,0.019497119,-0.01194965,-0.05439574,-0.032642346,-0.0006682975,0.006382548,0.0068730414,-0.017571932,-0.047259055,-0.02945414,-0.0079582585,0.03217638,-0.020563943,0.037768006,-0.0095952805,-0.030852046,-0.0021964915,-0.005383167,0.034604322,-0.035830557,-0.061213598,0.01818505,-0.016419273,0.03558531,0.02825243,0.030361552,-0.003580603,-0.030753948,-0.016259862,0.024745401,0.00025367714,0.014346937,-0.04397275,-0.0015672803,-0.0050766086,0.002665526,0.022722114,0.009135443,0.036517248,-0.012348176,0.071121566,-0.020416794,0.014960054,-0.030042732,0.011348795,-0.0066829748,0.019950826,-0.0059564314,-0.020968601,-0.010459775,0.0055425772,-0.0023635658,0.0418391,-0.018013377,0.016063664,-0.0076823556,-0.0025153123,0.017155012,-0.067688115,-0.0142611,-0.006983402,0.021520406,-0.018589707,-0.039190438,-0.025775438,-0.053659998,0.05660296,-0.05056989,0.0026026815,0.037866104,0.026854523,-0.017032389,-0.00063266006,0.036173902,0.027663838,0.024573728,-0.014359199,-0.06180219,0.019435808,-0.021103486,0.0063396296,0.003801325,0.027222393,0.010024463,0.0069466154,-0.0345798,0.05238471,-0.032299,0.027271442,0.011888338,-0.024782188,-0.0343836,0.028963646,0.010938006,0.07715464,0.0066400566,0.03484957,-0.009877315,0.01896984,-0.021667553,0.015131727,-0.02626593,0.011931256,0.03401573,-0.04595925,0.0124707995,0.014015853,0.0072531737,-0.033672385,-0.009760822,-0.017682293,0.019386759,0.016394747,-0.030753948,0.00072577724,0.024684088,0.020662041,-0.033157367,-0.023200346,-0.03963188,0.02972391,0.044880163,-0.016750356,0.027712887,-0.040637393,-0.039877128,0.026069734,0.0073206164,0.02594711,0.034506224,0.0070385826,-0.042280547,0.033795007,-0.02044132,-0.020870501,0.015475072,-0.0090005575,-0.033378087,0.017608719,0.07465312,0.011937387,-0.04129956,0.03281402,0.053659998,-0.013071653,-0.0067442865,0.017216325,-0.011170991,0.02751669,-0.00301347,-0.017216325,-0.011753452,0.012139716,-0.053316653,0.028963646,0.036566295,-0.03641915,-0.01986499,0.02196185,-0.018896265,-0.016554158,0.020036662,0.018479345,0.0014009723,-0.000644156,-0.016554158,0.018847216,-0.037449185,-0.013329163,0.016480584,-0.01876138,0.011894469,-0.0062415306,0.053120453,0.0421334,-0.01939902,0.020208335,0.05056989,-0.004975444,0.00723478,-0.0383566,0.032642346,-0.009601411,0.022256145,-0.006928222,-0.028595775,-0.03936211,-0.0049049356,-0.028718399,0.03737561,0.013807395,0.0019297857,0.000041744643,0.015659008,-0.038699944,0.034113828,-0.023985136,-0.03470242,0.0071121566,-0.023372019,0.00086219574,-0.049883198,-0.03014083,0.00080165046,-0.034359075,0.008264816,-0.006014677,0.0066645816,-0.018957576,-0.0031146342,-0.029527713,-0.041397657,-0.011649222,-0.033427138,0.04328606,0.005404626,0.021164797,-0.018368984,-0.04125051,-0.018540656,-0.04617997,-0.009570756,0.025971634,0.019693317,0.034506224,0.012826407,-0.032274477,-0.021888277,-0.014101691,0.032642346,-0.0025628288,-0.0067749424,-0.015376974,-0.006909828,0.0401469,0.00053456135,0.03281402,0.033034742,-0.038013253,0.053954292,0.06410751,0.029110793,0.0077252737,-0.012532111,0.06297938,0.027958134,-0.027860034,0.0011013113,0.022660803,-0.0018960643,0.001011643,0.019803679,0.0034426518,0.005806218,0.07558506,-0.014763856,0.04917198,0.06126265,0.03313284,-0.0438256,-0.0026348701,-0.049883198,-0.018197311,-0.026462128,0.014714807,0.0039975224,-0.0042856876,-0.0110851545,-0.004923329,0.04019595,0.02903722,-0.06626568,0.014322412,-0.05419954,-0.024782188,-0.034677897,0.044782065,0.021888277,0.019227348,-0.0083567845,0.03766991,0.013243327,-0.013267851,-0.0020002942,0.0067258934,0.0043286057,0.0057632993,0.035364587,-0.03369691,0.00297515,-0.01645606,-0.018565182,0.011262959,-0.0016768749,-0.0458121,-0.045297083,-0.007835635,0.01174119,-0.0014891078,-0.018908527,-0.009086394,0.018136,0.06798241,0.04355583,-0.026829999,0.026118783,-0.028963646,-0.0014822102,0.011250696,0.014420511,-0.023126772,0.032421626,-0.011471419,0.016345698,0.03791515,0.047430728,-0.006232334,-0.019460332,0.0009526305,-0.030729422,0.0064193346,-0.05101133,0.025101008,0.022268409,0.048681486,-0.00010346349,0.016075928,-0.022194834,-0.02626593,0.10535802,0.0039607356,0.01573258,-0.028865546,0.003654177,-0.047430728,0.008933114,0.036566295,-0.0132188015,0.03747371,-0.016186288,0.00047593206,0.02196185,-0.0014592183,-0.010631449,0.007995045,-0.04257484,-0.018945314,0.016259862,0.040367622,0.0008982164,0.036517248,-0.022807952,-0.022844737,-0.025015172,-0.015744844,-0.023813464,-0.037154887,0.006897566,-0.018798167,0.059251625,-0.028007183,0.016026877,0.014628971,-0.041667428,0.020821452,0.0030809129,-0.0068791723,0.025873536,-0.026535703,-0.031219916,-0.03668892,-0.069061495,-0.038724467,0.022942837,0.040809065,-0.0030885767,0.0024110824,-0.02207221,-0.013145228,0.031391587,0.0029950764,-0.009141574,-0.014861955,0.015609958,-0.036443673,0.02557924,-0.004503344,0.012102929,-0.041275036,-0.01200483,0.014101691,0.035315536,0.01053335,0.024831237,0.010827646,-0.026094258,0.014003592,-0.012985817,0.039607357,0.017424785,0.019006627,-0.017437046,0.04161838,-0.0063334983,0.0038197187,-0.010944138,0.017964328,-0.022734378,0.023163559,-0.020686567,0.005042887,-0.0033047004,-0.012176503,-0.053954292,0.007854029,0.012826407,-0.011459156,0.056063414,0.024034185,-0.019484857,-0.016370224,0.0002220633,-0.013255589,-0.04257484,0.010962531,-0.043114386,0.04350678,0.051403727,-0.0032311263,-0.021275159,-0.0014308618,-0.0035499472,-0.00031747963,0.054444786,0.0035714062,-0.0035100947,-0.005027559,0.004245835,-0.030655848,0.008142194,0.015401498,0.008712392,-0.0050827395,0.0033782744,0.008583638,-0.02935604,-0.014003592,0.007381928,-0.03433455,-0.0125198485,0.020122498,-0.024512416,0.0155976955,-0.015143989,0.0064867777,0.030606799,-0.039141387,-0.044487767,-0.019300923,0.015916517,-0.016639994,-0.014089428,-0.011201647,0.009625936,0.018319935,0.0024846564,-0.01106063,0.009816003,0.0048620175,0.03146516,0.0022639344,-0.040637393,0.031268965,0.010251315,0.05238471,0.002732969,0.011851551,0.0064070723,-0.019619742,0.020662041,0.034064777,0.00061579933,0.028178856,-0.029674862,0.046523314,-0.038233973,0.05792729,-0.021471357,-0.018172788,-0.012010962,-0.04058834,0.03470242,-0.0034978322,-0.0065235645,-0.0033660121,0.024610516,0.016958816,-0.019926302,0.001336595,-0.017179538,0.0012277667,-0.008369046,-0.013979067,0.022341982,-0.020796927,0.00015069265,-0.0065174336,0.020343222,-0.014064903,-0.005465938,-0.015867468,0.017486095,-0.0064806463,0.012066142,0.001750449,0.04728358,0.053905245,0.020576205,0.00186081,-0.011189384,-0.0105394805,-0.037154887,0.03175946,0.00028375819,0.03161231,0.022807952,-0.021140274,0.030238928,0.024966123,-0.024156809,-0.021569455,-0.027246919,0.0073451414,0.009944757,-0.023837987,-0.0014147674,0.026339505,-0.017903015,0.015659008,-0.0019727037,0.0323971,0.035756983,0.008693999,-0.020539418,-0.0060821204,-0.027394066,-0.0013956075,0.027860034,0.008761441,-0.035928655,0.02626593,0.033108316,0.025726387,-0.0161495,-0.032372575,-0.0004284155,-0.037866104,0.00045217376,-0.022525918,0.016689043,-0.00707537,-0.014960054,0.0066829748,-0.029380566,-0.010987056,0.007044714,0.007762061,0.014849693,0.003122298,-0.041495755,0.019877251,0.02773741,-0.01446956,0.048951257,0.02060073,0.021765653,-0.018332196,0.045027312,-0.01153273,0.0019849662,-0.016590945,-0.010809252,-0.025333993,-0.020110236,-0.0028969776,-0.007633306,-0.020245122,-0.01666452,-0.0001007811,-0.012875456,-0.014947792,0.018884003,-0.04100526,-0.022256145,-0.017449308,0.008418096,0.010698891,-0.01184542,-0.0028601906,-0.019092463,-0.024990648,0.001122004,-0.034064777,0.01749836,0.0032679134,0.022317458,-0.004812968,0.028203381,-0.017216325,0.0037614726,-0.016345698,-0.023666315,-0.010551743,0.010226791,0.05267901,-0.008013438,-0.0067381556,0.018528394,0.03340261,-0.03700774,-0.043359634,-0.004696476,-0.028963646,-0.004911067,-0.010766334,0.019325446,-0.012354307,-0.01278962,0.009975413,-0.00602694,0.0002009874,-0.0039791293,-0.026633801,-0.021299683,0.0053586424,-0.019190561,0.0011350327,-0.039435685,0.016738093,0.0029874125,0.009957019,-0.1295884,0.0051379204,0.024058709,0.011544992,-0.019018888,0.0061464976,-0.0065358267,0.049392704,-0.013549885,-0.014579921,0.03097467,0.026633801,-0.0049662474,0.0052605434,0.032004707,-0.021140274,0.042010773,-0.0285222,0.0026992476,-0.03622295,0.008129931,-0.00078478974,-0.020895027,0.047725026,0.005625348,0.0360758,-0.0040619,0.0013841116,0.025333993,-0.0010009134,-0.019938564,0.015352448,-0.015953304,0.005668266,-0.0031851425,0.024647303,-0.00943587,-0.004288753,0.03298569,-0.09054511,-0.0011227705,-0.04031857,-0.01200483,0.007369666,-0.005941103,0.014359199,0.010655973,-0.015438286,0.008289342,-0.012814145,-0.022795688,-0.012023224,-0.0017489161,0.02228067,0.05665201,0.031833034,-0.041741002,0.026535703,0.0064193346,0.010006069,0.0025352386,-0.0031575523,0.019497119,-0.012102929,-0.009558493,-0.026928097,-0.021360995,0.014923267,0.024708614,-0.0019451135,0.02783551,0.036149375,0.053267602,0.042967238,-0.00012693438,0.020318696,0.001052262,-0.0323971,0.009748559,-0.02631498,0.013329163,0.018209575,0.031857558,0.038650893,0.068227656,-0.046057347,-0.025113272,-0.0004644361,-0.00030904927,0.0011028441,0.056112465,-0.024046447,0.01472707,-0.008896328,0.018111475,0.0016293584,-0.04102979,0.035732456,0.021863751,-0.018810429,0.021630766,-0.019963088,-0.012121323,-0.009245804,-0.04115241,0.048387192,-0.014040379,0.0018700068,-0.04240317,-0.055523872,0.022709852,-0.0065664826,-0.018209575,-0.0011066762,-0.041765526,-0.0025827552,0.03475147,-0.028816497,-0.039264012,0.012801882,0.029969158,0.011072893,-0.035830557,0.0028096086,-0.014187527,-0.0066952375,-0.0046320986,0.002723772,-0.03470242,0.0063334983,0.016971078,0.010876695,-0.014861955,0.02972391,0.033893105,0.0034211928,-0.0011028441,0.02232972,-0.0049570506,0.025101008,-0.021078961,0.0050398214,-0.0058736606,0.007308354,-0.0076455683,0.008945377,-0.0043991143,0.014248839,-0.002208754,-0.047847647,-0.008632687,-0.018368984,-0.0048037716,0.005196166,-0.022268409,0.034530748,0.019484857,-0.012354307,-0.00006653277,-0.015389236,-0.002414148,0.00067826064,0.0019405152,-0.032617822,0.001247693,0.028105281,-0.005720381,-0.0054383473,-0.004239704,-0.023359757,-0.002806543,-0.0089515075,0.019141512,-0.011066761,0.03413835,0.032225426,0.05096228,0.00031058205,-0.026829999,0.01525435,0.029871058,0.01923961,-0.007590388,0.019190561,-0.0005387765,-0.0118760755,0.0010445981,-0.005193101,0.0002594251,-0.029233417,0.030852046,0.010754071,0.052286614,0.0051777726,-0.015536384,-0.00021248336,0.038969714,-0.00006782606,-0.03413835,0.00091584347,-0.037964202,0.05258091,-0.001713662,-0.016137239,0.011422369,-0.013182015,-0.037890628,-0.00828321,0.018773641,0.039558306,-0.015928779,-0.00980374,-0.03156326,0.030631324,0.015560908,0.002023286,-0.016897503,0.0038442435,-0.0034058648,0.003470242,-0.020563943,0.0017182603,0.020576205,0.019828202,-0.010416857,-0.007296092,0.01834446,-0.03722846,-0.007510683,0.008117668,-0.004068031,-0.03678702,0.0050091655,-0.008129931,0.0027375673,-0.0058644637,0.0044420324,0.019215086,0.012194896,0.01834446,0.021397782,0.014763856,0.03381953,-0.0024831237,0.01933771,0.015475072,-0.011649222,0.042280547,0.0048099025,0.01839351,0.016701305,-0.0015350915,0.035634357,-0.011771846,-0.008841147,0.0100122,0.0073451414,0.03156326,0.015487335,0.014665758,0.0039178175,-0.005435282,0.00943587,-0.024966123,-0.013292376,-0.0035346192,0.024132283,0.0070937634,0.012188765,0.002297656,-0.029552238,0.01677488,0.002009491,0.013329163,-0.028178856,-0.018933052,0.009999937,-0.027075246,-0.005288134,-0.024402056,-0.017032389,0.018994363,-0.038994238,0.020048926,-0.016897503,-0.02080919,-0.00574184,-0.034064777,-0.005447544,0.011508206,0.038013253,-0.017032389,0.0048865424,0.0016554159,0.023335231,0.0023635658,-0.038233973,-0.018319935,-0.005236019,0.0162476,-0.028350528,-0.008730786,-0.0012745169,-0.013917755,0.01221329,0.026928097,-0.013243327,-0.022108998,0.047087383,-0.0024386728,-0.028914597,0.0325933,0.026388554,-0.009963151,-0.0058736606,0.005205363,-0.0030809129,-0.021091223,0.006578745,-0.0026793212,0.00237123,0.020269647,-0.002038614,0.027860034,-0.0073512723,-0.017253112,-0.016333437,0.0058613983,0.009834396,-0.030018207,0.04617997,-0.021692079,-0.0019297857,-0.0054291505,-0.030802997,0.024671827,-0.05576912,0.033378087,0.047013808,0.034726944,-0.035291012,0.010177742,-0.01912925,0.015904253,0.032961167,-0.012219422,0.019116987,-0.033059265,-0.01824636,-0.013378212,0.066854276,-0.00169067,0.001495239,-0.003684833,0.050717037,0.040980738,0.012384962,-0.0200244,0.0048620175,-0.03401573,-0.021777915,0.040073324,0.009503313,-0.010993187,0.028546726,0.012814145,-0.0074616335,0.024610516,0.039337583,-0.0052390844,0.004392983,0.043629404,0.007676224,-0.001125836,-0.01373382,-0.023543691,-0.016051402,-0.03234805,0.022023162,-0.02091955,0.0011426967,0.005668266,-0.037620857,-0.018589707,-0.037032265,0.019582955,-0.033255465,0.008528457,0.011649222,0.00854072,-0.017167276,0.0012292995,0.011606304,-0.03507029,-0.019227348,0.020085711,0.009233542,-0.0021091225,-0.03156326,0.013746083,-0.011036105,0.017657768,0.006468384,-0.009472657,0.0006464552,0.004644361,0.034359075,0.023862513,0.013083916,0.0045799837,-0.030606799,0.032936644,0.010557874,-0.018074688,0.0054015606,0.011318139,-0.020821452,-0.0037553415,-0.03894519,0.02977296,0.009865052,-0.04414442,-0.00067902706,0.029257942,-0.019926302,0.017056914,0.011048368,-0.029601287,0.013034867,0.044414192,0.024941599,-0.027663838,0.014628971,0.016639994,0.014690283,-0.015744844,-0.0048620175,-0.01771908,-0.03879804,0.0012369634,-0.018172788,0.03374596,-0.0012155044,-0.008779835,-0.0067872046,-0.008313866,-0.016210813,-0.0057357093,-0.026879048,-0.023752151,0.00828321,-0.012765096,-0.011379451,0.0032587168,-0.023617266,-0.01022066,-0.008362915,0.013280113,-0.0038626369,0.002170434,-0.004435901,-0.030876571,0.018111475,-0.010147085,-0.010803121,0.0012270004,-0.013586672,0.03369691,-0.0054751346,-0.003182077,0.027320491,0.046449743,0.010079643,-0.004816034,-0.012985817,0.006431597,0.015340187,-0.017363472,0.0053034616,0.036443673,-0.017032389,0.006578745,-0.025677338,0.0020570075,-0.014543135,-0.021802438,0.025027435,-0.03641915,-0.0033905369,0.0019313184,-0.021618504,0.035928655,0.00990797,-0.0009970815,0.0162476,-0.026241407,0.030680373,-0.025750913,-0.023408806,-0.008522326,-0.010582399,-0.030238928,0.027271442,0.007412584,0.024573728,0.019092463,0.0009840528,0.019950826,-0.004865083,-0.030337028,-0.01629665,-0.023825726,0.015438286,-0.029552238,-0.00602694,0.0071121566,0.025113272,-0.018479345,-0.0030916424,-0.013979067,0.0017550474,0.00019734702,0.001705998,-0.020514894,0.0089515075,-0.0033322908,0.0073267478,0.008270948,-0.017375736,-0.039141387,-0.02431622,-0.000526131,-0.007437109,0.0058644637,-0.016259862,0.029282466,-0.001207074,0.0013358286,-0.0055272495,0.023887036,-0.021925062,-0.03683607,0.035830557,-0.0015818417,-0.007903078,-0.030484175,-0.014984579,-0.008908589,0.013255589,-0.00043224747,0.00007869931,0.005677463,0.035340063,0.031367064,-0.021790177,-0.018589707,0.0076516997,0.0047976403,-0.012427881,-0.0047485908,-0.012010962,0.024070973,-0.012691521,-0.029920109,0.007933734,-0.013905493,0.009356165,0.014579921,-0.005493528,0.0051777726,-0.025284944,0.013108441,-0.028791973,-0.0075352076,0.01163696,0.02248913,-0.030950144,-0.011299746,0.025922585,0.004923329,0.008847278,0.01871233,-0.009742429,0.0031575523,0.01221329,-0.02908627,-0.01578163,-0.008522326,-0.044683963,0.021876013,0.004031244,-0.028276954,-0.0039300798,-0.010723416,0.012029354,0.031931132,0.026903573,0.0007855561,-0.026143307,0.008681736,0.009883446,0.0017075307,-0.0038932927,0.0051041986,0.011538861,-0.016701305,0.008877934,-0.0058522015,-0.006014677,0.02500291,0.028178856,-0.02678095,-0.012292995,-0.030287977,-0.016517371,-0.000025338975,0.0075965193,0.025383042,-0.015560908,0.021410044,-0.009938626,0.009625936,-0.031783983,-0.01771908,-0.018847216,-0.022979625,0.002245541,-0.0005659836,-0.017682293,-0.0038258499,-0.008375178,0.013169752,0.03190661,0.03082752,-0.017682293,0.040269524,-0.005928841,-0.0017305226,-0.0063396296,0.0070998943,0.032421626,0.0044542947,0.0011181721,0.026756424,-0.024242645,-0.018798167,-0.00095799525,0.01839351,-0.018074688,-0.0305087,-0.019644268,-0.008087013,0.0011871477,-0.010386202,-0.015855204,0.048264567,0.02631498,-0.0077497982,-0.029110793,0.010128693,0.013120703,-0.021042174,0.017326685,0.030042732,-0.01677488,0.016799405,0.005754103,0.007486158,0.023911562,0.026879048,0.02495386,0.0133659495,-0.0009978479,-0.003779866,0.043212485,0.050717037,-0.018062426,0.004607574,0.013905493,0.022893788,-0.016431535,0.015327924,0.022648541,0.001524362,0.02085824,0.016922029,-0.0055333804,-0.011722797,0.018086951,-0.028718399,-0.026756424,-0.03681154,-0.008571375,-0.017804917,0.025530191,0.024610516,-0.03423645,0.0098957075,-0.0073144855,-0.028056232,0.026879048,-0.00021382455,0.030435126,0.0016646126,-0.043727502,-0.010760203,0.02599616,-0.0012890784,0.04593472,-0.009012819,-0.028448626,-0.00080548244,-0.01573258,0.038503744,-0.010974794,0.019803679,-0.023715364,0.0077130115,0.015916517,0.016860716,-0.017657768,0.022207096,0.020318696,-0.01573258,-0.005058215,0.020993125,-0.02584901,0.020882763,-0.010312627,-0.03134254,-0.0074187154,0.0022210162,0.015229826,-0.010300365,0.029699385,0.018307673,-0.0033936023,-0.027860034,-0.013047129]},{"id":"guide-prefix-commands-1","type":"guide","source":"guides","text":"Guide: Prefix Commands (prefix-commands)\nSection: Guild-Only Commands\n\n```javascript\nif (!message.guildId) {\n await message.reply('This command only works in a server.');\n return;\n}\n```","meta":{"slug":"prefix-commands","url":"/guides/prefix-commands"},"embedding":[-0.013338029,0.00095869176,0.036594253,0.008827326,-0.008439165,0.03461329,-0.07126108,0.038628753,-0.0026769752,0.020050544,-0.007555763,-0.01273571,0.09187379,-0.009677266,0.001001356,0.0005065339,-0.06815579,-0.00900133,0.0035838005,0.053271808,0.07918493,0.023905389,-0.019849772,0.0780606,-0.027599614,0.025565114,-0.004828594,0.06906596,0.009516647,-0.029125491,0.029928584,-0.033221263,0.0015476263,-0.039458614,-0.013137256,-0.0033679695,0.03921769,0.026595749,0.0051866397,0.023155836,-0.023383379,-0.044866104,0.01682479,-0.038655523,-0.043554388,-0.0035637233,-0.041600194,-0.017159412,-0.011992849,0.006063349,-0.032204013,0.016811404,0.00056885724,0.119393095,-0.017601112,-0.015740614,-0.057608508,-0.014027351,0.008593091,0.0036440326,0.012789249,-0.024547864,-0.011263373,0.045187343,0.04026171,-0.0017902273,-0.009958348,0.011316913,0.047998168,0.01564692,0.0042831604,0.015419377,0.0146029,-0.039886933,-0.025123414,0.018671902,0.012468012,0.07666857,0.027813774,-0.020759944,-0.0036440326,0.021375647,-0.056002323,-0.027974391,-0.029767964,0.0074888384,-0.039297998,0.024092777,0.016918484,-0.011437377,0.012059773,-0.06430095,-0.06483634,-0.019287607,-0.005377374,-0.0051565235,0.027813774,0.00051448116,-0.045883358,0.06494342,0.104187876,-0.06365847,-0.07773936,-0.06451511,0.041466348,0.01847113,-0.016450012,0.028402707,-0.0046445522,0.023677846,-0.068905346,0.007087292,0.025765887,-0.004875441,0.0050661755,0.0023791618,0.004962443,-0.043126073,0.007843537,-0.025899736,-0.021670114,0.028456246,0.042697754,-0.04229621,0.015713844,-0.032123704,-0.0036139167,-0.023838464,-0.028108241,-0.008064388,0.02703745,-0.011751921,0.036112398,-0.024186471,-0.019930081,0.028215319,-0.0292058,-0.031936314,-0.037129648,0.050460983,-0.011323606,-0.023718001,0.043018993,0.028804254,-0.04328669,-0.028001161,-0.07077923,-0.027024066,-0.029366419,-0.0053974516,-0.059589468,0.0061436584,-0.0045441655,-0.010600822,-0.048105244,0.012012927,0.004065656,-0.01570046,-0.07720397,-0.0031119836,-0.028054701,-0.01567369,0.010707901,-0.032096934,-0.029312879,-0.044170093,0.042430058,0.02165673,-0.021589806,0.047998168,0.0127624795,0.022914909,-0.030249821,-0.030972604,0.020759944,-0.00050444255,-0.03156154,0.014696594,-0.035443153,0.0071542165,0.040368788,0.014134429,-0.0055513773,-0.030517519,-0.016945254,0.035336073,-0.011457454,-0.020050544,-0.021509496,-0.0014455667,-0.023021987,0.009369413,0.03236463,0.03247171,0.029286109,-0.019823002,0.06665669,-0.04430394,0.023517227,-0.029767964,0.035496693,-0.008613168,0.03378343,-0.0082049295,-0.029071951,-0.029660886,0.024079392,-0.021924427,0.009784345,-0.00284094,0.0013794788,-0.018029429,-0.006919981,-0.00016250076,-0.046713218,-0.039753083,-0.043045763,-0.0189396,-0.024213241,-0.039458614,-0.07506239,-0.009978426,0.035336073,-0.022192124,0.019367917,0.027679924,0.019006524,-0.004427048,-0.008412395,0.054985072,0.021014256,-0.026662674,0.0048921723,-0.04882803,0.011490916,0.006595398,0.015446147,0.047891088,0.028161779,-0.03466683,0.0068062097,-0.026328051,0.050327133,-0.028322399,0.02160319,-0.040449098,0.0014882309,-0.0057220347,0.0135454945,0.024762021,0.055359848,0.04446456,0.0034097973,-0.0205324,0.02173704,-0.0061804666,-0.020599324,0.0013476898,0.038601983,0.011169679,-0.047810778,0.00022210529,-0.020505631,-0.0050159823,-0.051424693,0.027090989,0.03375666,-0.0020863677,0.004714823,-0.011276758,0.016409859,0.010861827,0.072117716,-0.03702257,-0.016436627,-0.0003772862,0.017159412,0.056377098,-0.016516937,-0.0024193164,-0.033007104,-0.0078100753,0.007160909,0.008111235,0.033033874,0.025953274,0.00072947575,-0.03688872,0.018190047,-0.00952334,-0.01564692,0.014776903,0.0061804666,0.012775864,0.014576131,0.021295339,0.052120708,-0.0043467386,0.03279295,0.057769127,0.0011502628,-0.010935443,0.0049825204,-0.0381469,0.015365838,0.004862056,0.016048467,-0.0135588795,-0.006980213,-0.033114184,0.03488099,0.050648373,-0.04438425,0.023463689,-0.021014256,-0.029955354,-0.003603878,0.04023494,0.047275383,0.027318532,0.043741774,-0.013706113,0.012367626,-0.041386038,-0.025524959,-0.011035831,-0.015539842,-0.013077024,0.01847113,0.0760261,0.03464006,-0.01907345,0.009182025,0.05734081,0.01844436,0.018819137,-0.028804254,0.04320638,0.0029965392,-0.013418338,0.011892462,0.022607056,-0.02225905,-0.013659266,-0.014870598,-0.01901991,-0.023958929,0.038816143,0.002427682,0.020211164,-0.011082677,0.03589824,-0.023169221,-0.08684108,0.012099928,-0.055948783,0.019501764,0.009891423,0.003941846,0.026729599,-0.062212903,-0.008787171,0.0006993598,0.018712057,0.017534187,0.021790579,-0.002948019,-0.012394396,0.011122832,-0.01844436,0.011544456,0.0027438996,0.004721515,-0.015526457,-0.022473207,0.03683518,-0.02116149,0.022513362,0.044571638,0.010828365,0.026394976,0.000106817584,0.00085914176,-0.0015551553,0.01679802,0.013391568,-0.0009553455,0.0014455667,-0.037156418,-0.031963084,0.03897676,0.020304857,0.012307393,0.004350085,-0.025096644,0.035362843,0.027947621,-0.0026686096,0.014535976,-0.038334284,0.036594253,0.021442572,-0.017989274,0.035282534,0.01674448,0.008613168,-0.003267583,0.013880117,-0.03241817,-0.0022202164,0.04775724,0.030678136,0.048854798,0.043929163,0.032953564,-0.047061224,0.0216835,-0.07383098,-0.011771998,-0.012949868,-0.020572554,0.0036774948,0.019006524,-0.00979773,0.051424693,0.02324953,0.002153292,-0.06440803,0.03464006,-0.068851806,-0.052388407,-0.022821214,-0.0059964247,0.02165673,0.018216817,-0.00014995244,0.011618072,0.0016705999,-0.030089201,-0.0146296695,0.008552936,-0.005236833,-0.047837548,0.014442282,-0.015513072,0.006745978,-0.0049590967,-0.04775724,0.03996724,-0.015365838,-0.028349169,-0.019341147,0.0026184164,-0.019113604,-0.007254603,-0.050594833,0.0032173896,0.021389032,0.03589824,0.0369958,-0.037424114,0.0035938392,-0.023932159,0.04773047,-0.014013966,0.033140954,-0.03900353,0.045695968,0.0011352048,-0.003771189,0.007107369,0.042001743,0.011316913,-0.01580754,0.028161779,-0.01139053,-0.01353211,-0.028322399,0.01564692,0.012066466,0.024936024,-0.024708482,0.03485422,-0.023115681,-0.011229911,0.050701912,0.023410149,0.00066046,-0.024547864,-0.0010113947,-0.039485384,0.009188717,0.0055513773,-0.015285528,0.012528244,0.020385167,0.0074486835,-0.0046579367,0.014469051,0.006709169,-0.024092777,-0.030865524,-0.033997584,0.046204593,0.023155836,0.0001370904,-0.0061905053,-0.024480939,0.013665958,0.00065125787,-0.047328923,-0.027679924,-0.030597826,-0.037557963,-0.020880407,0.036567483,-0.06253414,0.0043166224,0.0014146141,-0.02270075,0.018230202,0.030517519,0.017146027,-0.0075089154,0.009021407,0.01193931,-0.014415512,-0.027331917,-0.010600822,0.018230202,0.021201644,-0.04882803,0.015740614,0.016583862,-0.024025854,-0.016864944,-0.02173704,0.013264412,0.014817058,-0.034452673,-0.009202102,0.04979174,-0.01630278,0.0070404448,-0.03683518,-0.020920562,-0.027117759,0.025953274,0.005885999,0.016369704,-0.021563036,-0.041359268,-0.010493743,-0.010667746,0.02648867,-0.019930081,-0.009108408,-0.024695097,0.0653182,-0.0012598515,0.043688238,-0.014295048,0.0070337523,-0.017253105,-0.0016898406,-0.0103598945,0.0058257673,0.018618362,-0.029848274,-0.049952358,0.012869558,0.024762021,-0.031133221,0.037611503,0.03485422,-0.0065753204,-0.028456246,0.030999374,-0.0039786543,-0.012126698,0.028670404,-0.029901814,0.06333724,0.04550858,-0.040636484,-0.0401814,-0.027438996,0.022473207,0.012601861,0.030303359,-0.020840252,-0.003024982,0.0007031243,0.0016915137,-0.012675478,0.003423182,0.013880117,0.007622687,0.00839901,0.00436347,0.012454627,-0.021509496,-0.01904668,0.026261127,0.0093158735,-0.0075892247,0.03263233,-0.013157333,0.04328669,-0.016182315,-0.001253159,0.010353202,-0.026314666,-0.07490177,-0.040797103,0.00448728,0.0045475117,-0.0073750666,-0.008378932,-0.0005274478,0.022165354,-0.003160504,-0.023637692,0.007455376,0.003423182,0.03908384,-0.00043793643,-0.043741774,0.02272752,-0.006284199,0.020746559,-0.02332984,-0.019608844,-0.021308724,-0.019367917,-0.010105582,-0.008332086,-0.005149831,0.039458614,-0.017306644,0.019930081,-0.024494324,0.06772748,-0.016409859,0.018872676,-0.013498648,0.025779271,-0.009108408,-0.001176196,-0.024588017,-0.012628631,0.012528244,0.0043802005,-0.009596956,0.0008541224,-0.022687364,-0.02066625,-0.014067505,-0.01616893,-0.0061336197,-0.024507709,0.0151650645,0.0064414716,0.025926506,-0.014107659,-0.017146027,-0.024855714,0.0056049167,-0.004751631,0.0068798265,0.0009837884,0.016704326,0.034024354,0.022847984,-0.0019458263,-0.0076026097,-0.033007104,-0.06858411,0.0067894785,-0.017668037,0.012675478,0.012494782,-0.0021599843,0.041439578,0.02434709,0.01572723,0.0060533104,0.009476492,0.0034466055,-0.020960717,0.008760401,-0.012581783,0.03263233,-0.0066255135,-0.008004156,0.001863844,0.017159412,0.03383697,0.0018236894,-0.044009473,-0.0011042523,-0.005102984,-0.010507128,0.011042523,0.023691231,-0.011470839,0.012969946,0.025632039,0.008030926,-0.018203432,-0.040475864,0.034265283,-0.080844656,0.0047917855,-0.0095768785,-0.011022446,-0.011852308,-0.025739117,0.027305147,-0.022339359,0.003085214,0.01729326,0.006709169,0.00013834525,-0.023624307,-0.021000871,0.0145895155,0.039405074,0.0021298684,0.022941679,-0.0058793067,0.018243587,-0.013016792,0.04232298,0.022098431,0.037236724,-0.019622229,0.013826577,-0.006672361,-0.030597826,-0.0063745473,0.015031216,0.0037812276,-0.036647793,-0.009878038,0.008693477,-0.0090414835,0.014723364,-0.030704906,-0.00027146202,-0.029928584,0.010694516,-0.0057521504,-0.0052669486,-0.014402127,-0.0216835,-0.0037076108,-0.004838633,-0.04981851,0.031240301,0.0066255135,-0.011597996,-0.002307218,0.07233187,-0.03678164,0.020880407,-0.034265283,-0.036299784,-0.01904668,0.005163216,0.014147814,0.0056751873,0.009663881,0.0064883186,0.0074486835,-0.04210882,-0.0454015,-0.0075825322,0.008987945,0.014121044,0.016035082,0.025029719,-0.016557092,-0.015486302,0.009857961,-0.018230202,0.024815561,-0.015901232,0.0075022234,0.0030132702,-0.016035082,-0.012836096,0.00448728,-0.00017923187,-0.0111429095,-0.013264412,0.014402127,-0.110505536,-0.0056450716,0.032311093,0.020840252,-0.026341436,0.016677557,-0.02066625,0.040957723,-0.02599343,-0.022459822,0.006886519,0.004249698,0.0076762266,0.010212661,0.040368788,-0.021241799,0.016342934,-0.017534187,0.024025854,-0.008546243,0.00446051,-0.00031705425,-0.026903601,0.026609134,0.0065184347,0.020425322,0.002121503,-0.0002599594,0.02379831,-0.0045140497,-0.010647669,0.014750133,-0.021616574,0.010674438,-0.021496112,-0.003975308,0.0021348877,-0.017614497,0.025069874,-0.051879782,-0.019287607,-0.0326591,-0.025605269,-0.0047315536,-0.023021987,0.026783137,0.0014689901,0.0021901003,-0.026729599,-0.025899736,-0.025913121,0.045803048,-0.0034867602,0.012789249,0.0326591,0.007207756,-0.03260556,0.04232298,-0.039699543,-0.002948019,0.023731386,-0.0059763473,0.013960426,-0.029071951,-0.0047114766,-0.030383669,-0.041653734,-0.014067505,0.005196678,-0.0013426704,-0.0076159947,0.025404494,0.029366419,0.006418048,-0.0032558711,0.033060644,-0.021616574,-0.026394976,0.024173087,-0.0030751752,-0.013706113,0.00872694,0.03271264,0.027385456,0.05190655,-0.029955354,-0.028563326,0.005534646,-0.021790579,-0.01844436,0.049577583,0.007361682,-0.0013334682,0.003878268,0.020304857,-0.006796171,-0.018270357,-0.013291182,0.009831192,-0.011758613,0.01570046,-0.025431264,-0.025712347,-0.04877449,-0.025980044,0.016583862,-0.011604688,0.048961878,-0.009309181,-0.038548443,0.018149892,0.021027641,-0.014509206,-0.0040221554,-0.056377098,-0.006063349,0.018283742,-0.023048757,-0.028161779,0.028857794,0.022580286,0.0068195947,-0.016262624,-0.027492536,0.006980213,0.010011887,-0.012173545,0.024721866,-0.017855424,0.029312879,-0.013665958,0.008579706,-0.00090515224,0.017574342,0.016570477,-0.012314086,0.019408071,-0.0035503383,-0.057447888,-0.003073502,-0.0021332146,0.00019460355,-0.033355113,-0.010674438,0.0043367,-0.0015057985,0.0098512685,-0.0059295003,0.006324354,-0.024360474,-0.008392317,-0.031963084,-0.009188717,-0.0062674684,-0.014576131,0.062159367,0.015272144,0.010493743,-0.015579996,-0.03263233,-0.020478861,-0.016570477,-0.0014497495,0.009008022,-0.028804254,0.025163567,-0.012742402,-0.0029865005,-0.019769462,-0.00087921903,-0.0061905053,0.032284323,-0.009182025,0.023932159,0.002932961,0.041653734,0.018738827,-0.029580576,-0.029607346,0.038307514,0.033890508,0.024547864,-0.019956851,-0.009831192,0.028536556,-0.013331337,0.028536556,-0.028536556,-0.0066690147,-0.00897456,0.044999953,-0.00023862725,0.036540713,-0.002305545,-0.016075237,-0.032980334,0.035389613,-0.00045968685,-0.033408653,0.013217566,-0.03172216,0.04347408,0.005591532,-0.008198237,-0.021281954,-0.004674668,-0.031963084,0.012220392,-0.017989274,0.029419959,-0.025217107,-0.015446147,0.026903601,0.015111526,0.013960426,0.002305545,-0.034988068,-0.021335492,-0.005390759,0.006334393,0.0032575442,0.01732003,0.009329258,0.0401814,-0.021790579,0.0051331,-0.005454337,-0.03812013,-0.024146317,0.0028091508,0.00039046194,-0.03707611,0.0060131554,-0.011705074,-0.013210873,-0.019863157,0.027572844,0.04234975,-0.012514859,0.03148123,0.055681087,0.002506318,0.0017601112,0.0052435254,0.021148104,0.0082584685,0.022245664,0.056698337,0.0151650645,0.004601051,0.005588186,-0.006551897,0.0027338609,-0.011096062,-0.005798998,0.0031688695,0.0060165017,0.008144697,0.017132642,0.0068396716,-0.0062406985,-0.006933366,0.010246123,-0.031508,0.0075892247,0.029553806,0.010092197,0.00436347,0.017440494,-0.006414702,0.012521552,0.020411937,-0.0047282074,0.009362721,-0.033917278,-0.043072533,-0.0040723486,-0.014469051,-0.0019458263,-0.018671902,-0.027653154,0.0013409973,-0.044170093,0.035309304,-0.027465766,0.007180986,-0.0043333536,-0.030999374,0.0021750424,0.019863157,0.033114184,0.010781518,0.005638379,0.0010297989,0.020237932,-0.02116149,-0.042804834,-0.015004447,-0.0067259003,0.028081471,-0.04872095,0.001115964,-0.015914617,-0.035148684,0.017708192,0.020398552,0.013097102,-0.006337739,0.03383697,-0.00076502934,0.011129525,0.030517519,0.05196009,-0.011229911,-0.024748636,0.024240011,-0.00080183777,-0.013170718,-0.010741363,-0.015084756,-0.010808287,-0.020104084,0.0073148347,0.022058276,-0.025163567,-0.016342934,-0.012802634,0.016690942,0.032123704,-0.03573762,-0.002201812,-0.01732003,0.0059796935,-0.019474994,-0.018323896,-0.0042061973,-0.0783283,0.043126073,0.026408361,-0.023610922,-0.0216835,-0.010433511,0.0031755618,0.0119660795,0.007281373,0.01904668,0.027050834,-0.022325974,0.032150473,0.012882943,0.100279495,-0.017386954,0.0038247283,-0.008030926,0.049952358,0.043500848,-0.0029848274,-0.000839901,0.004326661,-0.005973001,-0.010192583,0.0036473789,0.041519888,0.0073081423,-0.0072479104,0.00839901,-0.014027351,0.025123414,0.029687656,0.021589806,-0.012441242,0.016637402,0.020880407,0.005363989,-0.002106445,-0.041011263,0.01789558,-0.022580286,0.019421456,0.012642016,-0.018270357,0.011357067,-0.017962504,0.006645591,-0.023477074,0.009489877,0.008887558,0.007877,0.024159702,-0.015499687,0.0059194616,-0.012949868,-0.0011661573,-0.0073750666,-0.025980044,-0.003818036,-0.0041626967,-0.032846488,-0.01844436,0.010139043,-0.03795951,0.0114172995,0.03455975,-0.014723364,0.011986157,0.00011669939,-0.006073388,0.044250403,-0.0065418584,0.0145895155,-0.00038293295,0.049631122,0.005437606,-0.0094698,0.027572844,0.0151382955,0.021442572,0.0111429095,-0.050701912,0.030758446,0.012963253,-0.035523463,-0.007281373,0.013652573,-0.031159991,-0.005936193,0.0071140616,-0.030704906,-0.025645424,0.026234357,0.025123414,-0.033970814,0.014134429,0.0030484055,-0.034292053,0.038816143,-0.0023707962,-0.029393189,-0.022995217,0.008566321,-0.020478861,0.0013719498,-0.009061561,-0.002961404,0.015486302,0.0036306477,-0.025257261,0.005116369,-0.03477391,-0.007555763,-0.0014530956,0.0016655806,0.014964292,-0.0151516795,-0.0015066351,0.0006955953,0.014027351,0.0058893454,-0.011705074,0.0061503504,-0.008191545,-0.03378343,0.005862576,-0.019274222,-0.0017517457,-0.028509786,0.0038715755,0.0072612953,0.023892004,-0.02544465,0.045214113,0.036085628,0.003941846,0.020960717,-0.012923098,0.012581783,0.015205219,-0.019314377,0.01844436,0.013364799,-0.0058257673,0.008332086,0.022740904,0.019300992,0.0048219017,0.0012498128,0.012367626,-0.012280624,-0.015191834,-0.00073909614,-0.03485422,0.034024354,-0.015272144,-0.0087670935,0.008051003,0.004778401,0.0031722158,-0.007361682,-0.02215197,-0.013043562,-0.033997584,-0.006893211,-0.011229911,-0.020304857,0.016704326,-0.006960136,0.025939891,0.008405702,0.0015467898,-0.027184684,-0.025136797,-0.009891423,0.0033094108,-0.008077773,0.018511284,0.030249821,0.013893502,-0.009556802,-0.020492246,0.014683209,0.027211454,0.027358687,-0.018778982,-0.043607928,0.021643344,-0.029607346,-0.008131312,0.0011644842,-0.024173087,-0.034479443,-0.0027305149,-0.021790579,0.006036579,-0.00924895,-0.016115392,-0.007180986,0.021201644,-0.0068798265,-0.017279875,0.025872966,-0.03375666,-0.021455957,0.007743151,-0.043741774,-0.024280166,-0.044143323,0.044116553,-0.026809907,0.023169221,-0.021723654,0.0114306845,0.019113604,0.024909254,0.0045910124,0.0002821281,-0.021937812,0.0065753204,0.028911334,-0.002917903,-0.024467554,-0.002183408,0.026006814,0.011564533,-0.00919541,-0.007622687,0.013759653,0.013244335,0.0034332208,-0.030651366,0.012019619,-0.025083259,0.038334284,-0.008439165,-0.026100509,0.0034332208,0.0045307805,-0.035416383,-0.0071140616,0.008238391,0.023610922,-0.0116783045,-0.0006508396,-0.0135454945,-0.009188717,-0.026676059,-0.017172797,-0.00051908224,-0.027572844,-0.017989274,0.016061852,-0.013773038,-0.02278106,0.0019073449,-0.0026301283,-0.0006855566,0.012260547,-0.00623066,-0.03576439,0.0035135301,0.009503262,0.017480649,0.00095199933,-0.010440203,0.030490749,-0.010279585,0.007073907,0.014803673,-0.005347258,0.0063310466,-0.0013066985,0.012789249,-0.027546076,0.024159702,-0.027144529,0.02215197,-0.003436567,-0.014308433,0.034184974,0.0077833054,-0.002431028,-0.027546076,0.008981252,-0.019167142,-0.002795766,-0.006274161,-0.012387703,0.01298333,-0.006397971,0.01899314,0.000018861696,-0.013398261,0.007609302,0.04449133,0.01784204,-0.019167142,0.004688053,-0.023905389,0.001039001,0.011256681,-0.00021750425,0.0025247224,-0.023450304,-0.012059773,0.012588476,0.010808287,-0.0041024648,0.013445108,0.007455376,-0.019086834,-0.0057220347,-0.027171299,-0.012976637,0.020331627,-0.028964872,-0.021870887,0.011872386,0.03386374,0.0100855045,-0.008546243,0.007682919,0.012682171,0.008586398,-0.00070605223,0.029553806,0.002489587,0.025243877,0.020278087,0.03343542,0.0037310342,0.0045207418,0.01004535,0.026555594,0.020572554,-0.014254893,0.041359268,0.022580286,-0.037343804,0.014335202,0.011745229,0.023597537,-0.0013083717,0.00064205576,0.020947332,0.009262335,0.026100509,0.0011653207,-0.0146162845,-0.030249821,0.033381883,-0.013177411,-0.012334163,-0.0019859811,0.023423534,-0.029446729,0.025056489,0.008900942,-0.01901991,-0.022392899,0.026006814,-0.036032088,0.03276618,-0.00057345827,-0.0047717085,0.013364799,-0.03801305,-0.0248691,0.0025866274,-0.014495821,0.06815579,-0.0037544577,-0.015057986,0.001328449,-0.03263233,0.01737357,-0.014883982,0.025110029,0.01567369,-0.010185891,0.022071661,0.0053238347,-0.032123704,-0.00082149677,0.0011703401,-0.00092104677,0.002414297,0.043500848,-0.012608553,0.02379831,0.010935443,-0.034292053,-0.0024795483,0.014723364,0.021563036,-0.0058391523,0.037129648,0.005785613,-0.010547282,-0.02113472,0.0007746497]},{"id":"guide-channels-0","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Create\nUse guild.createChannel() to create text (0), voice (2), category (4), or link (5) channels. Requires Manage Channels permission. Pass parent_id to put a channel under a category.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!createchannel') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n // Text channel (0), voice (2), category (4), link (5)\n const textChannel = await guild.createChannel({\n type: 0,\n name: 'general',\n });\n\n // Category, then voice channel under it\n const category = await guild.createChannel({\n type: 4,\n name: 'Voice Chats',\n });\n const voiceChannel = await guild.createChannel({\n type: 2,\n name: 'Lounge',\n parent_id: category.id,\n bitrate: 64000,\n });\n\n await message.reply(`Created ${textChannel.name} and ${voiceChannel.name} in ${category.name}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.02023937,-0.003249744,-0.0100413775,-0.010216063,0.022395825,-0.023877637,-0.031877007,0.0284074,0.006294685,0.029202519,0.02915433,0.036430866,0.024251102,-0.021793464,0.032937165,0.015528897,-0.050983936,-0.03269622,0.020757401,0.013613385,-0.030913226,0.04112929,-0.008764369,0.069006614,-0.045177165,0.005370059,0.005370059,0.030407242,-0.034937005,-0.01664929,0.05271874,-0.025829291,0.0067464565,0.019709291,-0.02172118,0.014637401,0.01551685,0.01683,-0.01831181,0.008902913,-0.0129146455,0.010872637,0.06442866,-0.025853384,0.0053158463,0.040020943,-0.0555137,0.037756063,-0.0052525983,0.008800511,-0.03264803,0.023070471,0.0026247932,0.02722677,0.013938661,0.00081620074,-0.040261887,-0.0071922042,-0.055995587,0.021516377,-0.0100112595,-0.040984724,0.018323857,0.008113818,0.031154172,0.025082361,-0.0686211,0.015047007,0.0253474,0.056622047,0.028455589,-0.024022203,0.013649527,-0.02356441,-0.037298266,-0.004725531,-0.042237636,0.02268496,0.0038129527,-0.03597307,-0.016685432,0.022865668,-0.06977764,-0.0017875098,-0.04038236,0.0555137,-0.015432519,-0.0004382185,0.0021429034,-0.059465196,0.0034334643,-0.032166142,-0.07917449,-0.016661339,0.06288661,-0.013276063,0.031371024,0.009186023,-0.015167479,0.0067283856,0.082885034,-0.033635903,-0.05556189,0.01140874,0.019167164,-0.022781339,-0.004065945,0.04570724,-0.012221929,-0.021841653,-0.08919779,0.020046614,0.0135411015,0.011529212,0.019902047,-0.02010685,0.07450015,-0.035105668,0.03259984,-0.010481102,-0.05787496,-0.0218537,0.07199433,-0.030503621,0.027106298,-0.018155197,-0.015324094,-0.028624251,-0.039876375,-0.02325118,0.058838736,-0.003204567,0.04780346,0.002439567,-0.023853542,0.025973856,-0.008168031,0.011264172,-0.05932063,-0.020094803,-0.0080837,-0.018504566,0.070741415,0.011788228,-0.015757795,-0.011673779,-0.05175496,0.03339496,-0.038792126,0.006150118,-0.07006677,0.012408661,-0.026672598,-0.014625354,0.002706112,-0.007174134,0.016685432,0.014324172,-0.05074299,-0.07893354,0.019287637,-0.023407795,0.024359526,-0.022275353,-0.01064374,-0.03806929,-0.013420629,0.009673936,-0.047755275,0.04541811,0.0019953246,0.022239212,-0.030334959,-0.016950471,0.021191102,-0.009089645,-0.04300866,-0.04127386,-0.0049273227,0.017335983,0.021034487,0.042237636,-0.039394487,-0.022371732,-0.0034455117,0.056718424,0.008963149,-0.054887243,0.016336063,-0.016408347,-0.075945824,-0.024311338,0.01817929,0.028214645,0.06746457,0.005508602,0.07054866,0.0055838972,0.02464866,-0.042912282,0.025082361,-0.027009921,0.00528874,-0.0314674,-0.013444724,-0.017528739,-0.023648739,0.027780944,-0.0192274,-0.0040689567,0.024817321,-0.014577165,-0.020251416,0.0042285826,-0.08211401,0.003629232,-0.055224564,0.0016113188,-0.06288661,-0.053778894,-0.05262236,-0.012625512,0.053827085,-0.007216299,0.0022061516,0.02604614,0.008336693,-0.033033542,0.022504251,0.041490708,0.016155353,0.026214803,-0.006276614,-0.057248503,-0.00036424087,-0.020167086,0.014926535,0.05734488,0.009836574,-0.018203385,-0.035298426,-0.03951496,0.0076319287,-0.0052194684,0.023648739,-0.014312126,-0.015432519,-0.028913384,0.04688787,0.03098551,0.1062085,-0.0029335038,0.0072223227,0.011709921,0.018733464,-0.018974409,0.008276456,0.0007299877,0.038406614,-0.04182803,0.0459,-0.045345824,-0.021757321,-0.002817549,-0.005514626,-0.019155117,-0.021528425,0.038575273,-0.021456141,-0.021733228,-0.00813189,-0.062308345,0.028383305,-0.032286614,-0.008071654,-0.010824448,-0.009318543,0.002439567,0.012842362,0.0025811219,-0.04284,0.0001143547,-0.015818032,0.018600944,-0.0035449015,0.01734803,-0.007210275,-0.023528267,0.028335117,0.027564093,-0.010252205,0.0042617125,-0.02561244,-0.021913936,0.0106979525,0.06910299,0.047297478,0.024347479,0.039129447,0.066693544,0.008023464,-0.0123845665,0.008643897,-0.008746299,0.0077042123,0.004876122,0.007282559,-0.009770314,0.07989732,-0.05122488,0.04773118,0.031563777,0.008999291,-0.045610864,-0.03378047,0.006445275,0.017757637,0.05927244,0.0032587794,0.034165982,0.0054212594,-0.024479998,0.0096980315,-0.057248503,-0.029395275,-0.025323305,0.011432834,-0.031178266,0.018902125,-0.012986928,0.048309445,-0.055754643,0.015456613,0.04715291,0.035394803,-0.018914172,0.020335747,0.042936377,0.0058368896,-0.0061410824,0.009685984,-0.023672834,-0.02045622,0.022347637,0.006722362,0.043996535,0.011968937,0.008939055,0.0043249605,0.027034014,-0.042912282,0.027299054,-0.018347953,-0.09435401,-0.026262991,-0.016817952,0.025973856,-0.030961417,-0.015673464,0.01831181,-0.043297794,-0.01328811,-0.0053610234,0.047177006,0.011535236,-0.03002173,-0.0008139419,-0.0058730314,-0.026624408,-0.034238268,-0.0024802263,-0.019552676,0.0016173425,0.015950551,-0.025949763,-0.043683305,0.00010258981,-0.007890944,-0.040285982,0.03956315,0.01398685,0.001814616,0.009083622,-0.02281748,-0.0057435236,0.004568917,0.012276141,0.016071023,-0.007776496,0.012661653,-0.0030223522,-0.00525561,-0.01721551,0.03720189,0.016962519,0.028648345,0.034069605,0.018131102,0.010758189,0.0058579724,0.054694485,0.016613148,-0.0027497835,0.026768975,0.029828975,0.007252441,-0.009101693,-0.004888169,0.004668307,0.010390747,0.012029173,0.004888169,0.028576061,0.037346456,0.0068609053,-0.021612756,-0.011511141,-0.024588425,0.017625118,-0.008487283,0.0022332578,-0.04165937,0.046140943,-0.035057478,0.007354842,-0.0067645274,0.007059685,-0.010234133,0.010872637,-0.02910614,-0.07488567,-0.011956889,0.070789605,0.014504882,0.031877007,-0.014167558,-0.0009110728,-0.055128187,0.0003021223,0.018914172,-0.030889133,0.017829921,0.025997952,0.014637401,0.012059291,0.030865038,-0.005499567,-0.023552362,-0.008872795,-0.028985668,-0.05700756,-0.034406926,0.011553307,0.019902047,-0.02910614,-0.0047556493,-0.02067307,0.05970614,-0.029563935,0.012529134,-0.024720944,0.027250865,0.00821622,0.040406454,-0.01809496,0.009499252,-0.021058582,0.022275353,-0.00560498,-0.030190393,-0.002915433,0.009692008,0.030624093,0.033925038,-0.026166612,-0.0031804724,0.0038159643,-0.020444173,0.015227716,0.035780314,0.065537006,0.02343189,-0.030045826,-0.015420472,-0.018191338,0.10379905,0.018588897,-0.0061922832,-0.023323463,-0.020359842,-0.0140711805,0.010607598,0.041731652,-0.012053267,0.0034003346,-0.05267055,-0.02958803,0.007921062,0.030262675,-0.00093366136,0.008137913,-0.017793778,-0.03517795,0.020215275,0.028070077,-0.0024892618,0.023793306,-0.025516061,-0.0044243503,0.024323385,-0.007306653,0.005686299,0.0029530807,0.010457007,0.012649606,0.011794251,-0.052863304,0.01092685,-0.024793228,-0.0059844684,-0.02705811,0.023528267,0.0025103444,0.007421102,-0.0022965057,0.008878819,-0.0018718404,-0.049225036,-0.009716102,-0.0018899114,0.021480236,-0.022805432,0.015059055,0.0034485236,-0.031443305,0.016275827,-0.029298896,0.000604621,0.012408661,-0.0052074213,-0.035105668,0.0437074,-0.013974803,0.0249137,-0.0034756297,-0.009764291,-0.005481496,0.036430866,0.006517559,0.033370864,0.03553937,-0.047972124,-0.02343189,-0.016745668,0.010390747,0.04332189,0.0073668896,-0.015275905,-0.003680433,-0.0009095669,-0.0052827164,-0.0010639222,0.01280622,-0.002102244,-0.026190707,-0.02915433,-0.008234291,0.022215117,-0.03633449,-0.03038315,0.004493622,-0.008059606,0.05267055,0.01717937,0.023130707,0.0096980315,-0.04773118,0.009469134,-0.0003367581,-0.00083803636,-0.00924626,-0.06481417,0.055224564,0.006068799,-0.02561244,0.0049152756,-0.032744408,-0.021456141,0.010089567,0.017299842,0.004957441,0.014300078,-0.0011648178,0.014589212,-0.020829685,-0.0093546845,-0.029756691,0.023986062,0.00018080277,-0.00071417564,0.0038460826,0.014926535,-0.054887243,-0.013745905,-0.013878425,-0.0009848622,0.0049785236,-0.012059291,-0.012270118,0.027178582,0.010583503,-0.008788465,-0.04081606,-0.054598108,0.016528819,0.00038890008,0.03635858,0.02303433,0.031081889,0.020889921,-0.000084283645,-0.0044785626,-0.00089601375,0.02819055,0.0010285334,0.022166928,0.0026458758,-0.022648819,0.01599874,-0.011378622,0.024817321,-0.029997637,0.031081889,0.002819055,-0.035515275,-0.021793464,0.0026112401,0.007198228,-0.011890629,0.0007552116,0.050502047,-0.026262991,0.0060236217,-0.01468559,-0.0076740943,-0.013468819,0.0049273227,0.0103847245,0.012233976,-0.013565197,-0.00047737203,0.05030929,0.011155748,-0.0112280315,0.033105824,-0.055320945,-0.033419054,0.012191811,-0.018191338,-0.0023507185,-0.034165982,0.0019305708,0.009408898,0.033346772,0.011896653,0.011601496,-0.040358268,0.011330432,-0.037900627,0.0015646358,0.0012137598,0.015348189,-0.006210354,-0.018263621,0.009384803,-0.0108545665,-0.0069211414,-0.051321257,0.056043778,-0.0034545471,0.012565275,0.036262203,-0.03252756,-0.021660944,0.031371024,-0.017155275,0.019179212,-0.021407953,0.016805904,0.004716496,-0.022444015,0.003903307,-0.011685826,0.011637637,-0.0015224704,-0.0010307922,0.027636377,0.01975748,0.002102244,-0.06915118,-0.02346803,-0.006276614,0.013878425,-0.0036412794,0.040599212,0.01613126,-0.028383305,0.019155117,0.014528976,-0.017733542,-0.034720156,0.0013733858,-0.0039906492,-0.020889921,-0.023058424,0.03139512,-0.040141415,-0.057441257,0.012492992,-0.0026022047,-0.0050568306,0.019396063,-0.021709133,-0.012294212,-0.020588739,-0.010685905,0.01302307,-0.0137579525,-0.03484063,0.015047007,-0.024070393,0.021227242,0.044117007,0.016552912,-0.03312992,0.038527086,-0.04009323,0.002295,-0.013456771,-0.04086425,-0.014022992,0.027732754,0.006915118,-0.0030825885,0.0074994094,-0.008559567,0.015432519,-0.008951102,-0.018107006,0.013878425,-0.024889605,0.007993346,-0.04358693,-0.013938661,-0.03876803,0.0060447045,-0.011667755,-0.02722677,-0.009077598,0.036238108,-0.02356441,0.021805512,0.0033009448,0.043225512,-0.037756063,-0.023588503,-0.010890708,-0.010782283,0.0074271257,0.014155512,-0.041466612,-0.014143464,-0.0013447736,-0.0033882873,0.001578189,-0.05083937,-0.054308973,-0.031130077,-0.006372992,-0.043803778,-0.031611968,0.018372046,-0.025564251,0.009252283,0.033346772,-0.043418266,0.006848858,-0.039587244,-0.048694957,-0.039442677,-0.04536992,-0.010360629,0.014324172,0.027805038,-0.041225668,0.01852866,-0.025058268,-0.08211401,-0.020986298,0.010956968,-0.003921378,-0.007210275,-0.035202045,0.009872716,0.013673621,0.011595472,-0.02333551,0.012468897,-0.0029892223,0.021648897,-0.00060123275,0.026889447,0.01442055,0.011764133,-0.0021444093,-0.0038430707,-0.001017992,-0.010703976,-0.01774559,-0.02604614,0.018347953,0.0233837,-0.0016324015,0.008836653,-0.017167322,0.017998582,-0.00037195865,0.00981248,0.049008187,0.02963622,0.012288189,-0.02137181,0.031178266,0.002867244,-0.00022739172,0.0031142125,-0.06360944,-0.009378779,0.00008080124,-0.022793384,-0.012962834,0.0052044094,0.012203858,0.0079812985,0.004123169,0.004011732,0.011306338,-0.014083228,-0.01105937,0.03951496,0.042358108,0.028142361,0.033226296,-0.049971968,0.013661575,0.0064272047,-0.018938268,0.04038236,0.02325118,0.009505276,-0.0074813385,-0.016251732,-0.054549918,-0.021974172,-0.009192047,-0.0051953737,-0.010475079,0.017203463,0.034551494,0.013769999,0.03780425,0.018119054,-0.0043339957,-0.009541417,0.021395905,0.03180472,0.0009667913,-0.019709291,0.011264172,0.00933059,0.013300157,0.040936533,0.013818189,-0.00948118,-0.0059513384,0.0061561414,0.02464866,0.034647875,-0.023287322,0.005273681,0.015408425,0.008143936,-0.0075475983,-0.019805668,-0.021998268,-0.002438061,-0.06105543,0.0097281495,0.013348346,-0.008240314,-0.024154723,0.017685354,0.013926614,0.0025434743,0.017733542,-0.017625118,-0.05088756,0.026720786,0.0018507577,-0.016420392,0.00939685,-0.03720189,-0.02298614,0.00926433,0.003921378,-0.011071417,-0.0077343304,0.0013334793,-0.012288189,0.02268496,-0.041635275,-0.0034997242,-0.002817549,-0.016890235,-0.013709763,-0.012167716,-0.0069090943,-0.033611808,0.02005866,-0.00075069384,0.016842047,0.0050237007,-0.018829841,-0.0033641928,0.016854094,-0.038406614,0.014769921,-0.0083547635,0.0068428344,-0.004776732,-0.011222008,-0.002278435,0.014986771,0.029684408,0.024118582,-0.028817007,-0.034937005,0.012468897,-0.0039093303,0.021058582,0.021118818,-0.019082833,0.056091968,0.008746299,0.03688866,-0.021130865,-0.013408582,-0.003632244,0.023986062,0.0721389,0.027901417,0.0037286219,0.014890393,0.002725689,-0.0150711015,-0.0075897635,-0.0030223522,-0.034479212,0.029949447,0.01919126,0.023769211,-0.02749181,0.038888503,0.07411464,-0.009938976,-0.018070865,0.017733542,0.008987244,0.0149144875,0.014300078,-0.008601732,0.010770236,-0.006210354,0.009993189,-0.013950708,0.0074150786,-0.021082677,-0.03378047,-0.006704291,0.03151559,0.0071138972,-0.0139145665,-0.04168346,0.008035512,0.007210275,-0.019118976,0.011450905,0.0010059448,-0.0066801966,0.0075475983,0.014854251,0.002038996,0.0026022047,-0.044213384,0.03317811,0.01385433,0.0218537,0.009776338,0.0105714565,-0.007342795,0.016360156,0.005764606,0.013866377,-0.0062344484,-0.018817795,0.028720628,-0.0051532085,-0.029274803,-0.025226928,-0.027082203,0.008270433,-0.035515275,-0.014059133,-0.002343189,-0.022082597,-0.027780944,0.010505197,0.03173244,-0.0017076968,0.011746063,-0.007692165,0.012818268,-0.01683,-0.023576455,0.027829133,0.0059995274,0.048743147,-0.0058639958,0.026696691,0.002391378,-0.052285038,-0.013264015,0.008939055,-0.0038219881,0.017829921,-0.0010315452,0.006258543,-0.021492282,0.026214803,0.0142277945,-0.010932874,0.00021101501,0.02102244,0.027250865,0.0058549605,0.014275984,-0.0047707083,0.0023010236,0.0069512594,0.0030253641,-0.010890708,-0.012770078,0.006993425,0.007409055,-0.009860669,0.015637321,0.029612124,0.014974724,0.0123845665,0.0068789762,0.0057585826,-0.010505197,-0.020155039,-0.0072705117,-0.008529449,-0.003599114,0.029612124,-0.032310706,0.00046381887,-0.027467715,0.0009607677,0.012986928,0.00751748,-0.029491652,0.011444882,0.000572997,0.0009291437,0.015781889,-0.007005472,-0.011101535,-0.0375874,0.023576455,-0.022444015,-0.011083464,-0.0069813775,0.016239684,0.01551685,0.0026428641,-0.017769685,-0.02215488,-0.022299448,0.005014665,0.020492362,0.01669748,-0.022516299,0.014998819,-0.0014584694,0.010866614,0.031130077,0.01105937,-0.026142519,0.0060748225,-0.0009780856,-0.01613126,-0.02019118,0.0032768503,-0.025419684,-0.0075536217,-0.03252756,0.008101772,0.0033641928,-0.025106456,0.0068127164,0.01704685,-0.0019230413,0.046116848,-0.013565197,0.044020627,-0.024889605,-0.008493307,-0.016709527,-0.019697243,-0.03247937,-0.051128503,0.05700756,0.03606945,0.016601102,-0.029226612,0.0020480314,-0.028142361,0.036527243,0.018504566,-0.015986692,0.009318543,-0.024961889,0.00057149114,0.009017362,0.07025953,0.0147578735,-0.03325039,0.019853858,0.056332912,0.040406454,-0.0069874013,0.014986771,-0.024841417,-0.0253474,-0.020950157,0.025275117,0.033852756,0.010788307,0.02207055,0.0046080705,-0.012782126,-0.006499488,0.015962597,-0.032407086,0.015878268,-0.00097582676,0.00026466287,0.036527243,-0.03732236,-0.003915354,0.018480472,-0.028913384,0.020094803,-0.0035117716,-0.00072396407,0.0021594684,0.016360156,0.0025916633,-0.034141887,0.03206976,-0.009240236,-0.024793228,0.0118846055,-0.016360156,-0.027154487,-0.032840785,-0.0007646235,-0.016179448,-0.004797815,0.022937952,-0.020082755,-0.03792472,-0.023937874,-0.055802833,-0.02469685,0.028600156,0.026937637,-0.038551178,-0.0025811219,0.012330354,0.0051833265,0.0012702312,-0.0008327657,0.022998188,-0.029298896,0.01989,-0.008276456,0.012782126,-0.011089488,0.014697637,0.022588583,0.0036894684,-0.019263543,0.009186023,0.005620039,0.0014705167,-0.015299999,0.02207055,-0.01801063,0.0015119291,0.0085113775,-0.050068345,-0.0015465649,0.012926692,-0.0016158365,-0.0563811,0.017191418,-0.0067163385,-0.005002618,0.022588583,0.010366653,-0.034864724,-0.0005236786,0.0013139026,-0.011734015,0.025251023,0.045659054,0.014107322,0.0038340352,0.0085113775,-0.00933059,0.00716811,-0.0030524703,-0.002737736,-0.01293874,0.027034014,0.017203463,0.016926378,-0.018022677,0.013420629,-0.022166928,0.02137181,-0.021600708,0.0139145665,0.029732598,-0.046357792,0.008155984,-0.008463189,0.010191968,-0.0027211711,-0.008776417,-0.015950551,-0.004827933,-0.04430976,0.045466296,0.03746693,0.034117796,0.018685276,-0.031009605,-0.0013455265,0.009011338,-0.02609433,0.038430706,-0.0034424998,-0.0053399405,0.009818504,-0.0044303737,-0.018914172,-0.014095275,-0.010734094,-0.00981248,-0.022215117,-0.009902834,0.0033491338,-0.017890157,0.0034184053,0.026335275,-0.02823874,0.018781653,-0.0011377116,0.007342795,-0.0068729525,0.013348346,-0.029443463,0.0027648425,-0.037177794,0.028913384,-0.033226296,0.031828817,0.024359526,0.019938188,-0.016311968,0.0054694484,-0.0105413385,0.025636535,-0.002660935,0.011962913,-0.026552126,-0.017058898,-0.01656496,0.003885236,-0.010746141,-0.0021910924,0.008553543,0.014095275,0.013480865,-0.03871984,-0.022130787,0.018552756,-0.033057638,0.007692165,0.002867244,-0.026503935,-0.0032286614,-0.02373307,0.014324172,-0.0013876918,0.0067524803,-0.012818268,-0.00012216657,-0.0060507283,0.0007386466,0.0021910924,0.0086679915,-0.03247937,-0.026913542,-0.020745354,-0.031274643,-0.02220307,-0.049875587,0.025901575,0.005879055,0.024046298,-0.009890787,-0.018649133,0.004460492,0.010818425,0.009692008,-0.017841969,-0.018637085,-0.006415157,0.032455273,-0.010306417,-0.0045508463,-0.022841575,-0.000045671288,0.030744566,0.0034937006,0.0022197047,-0.025732912,0.008451141,0.014047086,-0.0014125393,0.007150039,0.012348425,0.032358896,-0.016456535,-0.050453857,0.004999606,0.016492676,-0.009776338,-0.016986614,0.0076740943,-0.014492834,0.015456613,0.0037617518,-0.005779665,0.03339496,-0.014432598,-0.018516613,-0.047538422,-0.021299526,-0.014143464,0.0010149803,0.0111979125,0.01932378,-0.03937039,0.024347479,-0.012264094,0.052333225,-0.018323857,-0.027901417,-0.010023307,-0.017926298,0.023949921,0.018890077,0.016805904,-0.0049725,-0.025419684,-0.0062525193,-0.017661259,0.0032075786,-0.009270354,0.008439094,0.02123929,-0.0038400588,0.00094796746,-0.031154172,0.05271874,-0.0057555707,0.009143858,0.03344315,0.0096980315,0.019408109,0.0025043208,0.0076018106,0.009426968,-0.020745354,-0.014239842,-0.024070393,0.022540392,-0.016805904,0.015324094,-0.013721811,-0.018215433,-0.002755807,0.010631693,0.014396456,0.008222244,0.008908937,-0.012685748,-0.024239054,-0.0033160038,0.0035238187,0.019588819,0.0023055412,-0.0137579525,-0.0030087992,0.039924566,0.0075837397,-0.001816122,0.025226928,0.024636613,-0.010920826,-0.0014373867,-0.01787811,0.0060266335,-0.0035087597,-0.0059754327,0.014155512,0.019155117,-0.0027799015,-0.030889133,0.018299764,-0.01761307,-0.032792598,0.008258386,-0.03211795,0.02360055,-0.0052676573,0.0051471847,-0.009348661,0.029804882,0.0027527951,-0.008619803,-0.005430295,0.03329858,-0.023022283,0.01852866,0.019287637,0.0039123422,-0.024937794,0.053730708,0.020926062,0.011920747,-0.008252362,-0.00017336737,-0.024419762,0.015480708,-0.011324409,-0.016480628,-0.011149724,-0.0005605733,-0.0192274,0.0042165355,-0.03002173,-0.017637165,0.0011911712,0.009282401,0.0010398277,0.008710157,-0.004800827,0.024961889,-0.02023937,0.027106298,0.025805196,0.0065537007,0.0078246845,-0.014649448,0.005674252,0.020118898,0.00054062007,0.057971336,-0.0019290649,-0.013167637,0.014637401,-0.010155827,0.037033226,-0.009493228,0.054598108,0.01814315,-0.015914408,0.022697007,0.024600472,-0.033419054,-0.011848464,0.0074994094,-0.012998976,0.01272189,-0.011589448,-0.037780154,-0.008427047,-0.018275669,-0.03325039,-0.0036744094,0.02867244,-0.015480708,0.00011548412,0.020986298,0.014649448,-0.040719684,-0.01962496,-0.0029681397]},{"id":"guide-channels-1","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Fetch and Edit\nUse guild.fetchChannels() to load all guild channels. Use channel.edit() to rename, set topic, move to a category, set slowmode, or update permission overwrites.\n\n```javascript\nconst guild = client.guilds.get(guildId) ?? await client.guilds.resolve(guildId);\nif (!guild) return;\n\nconst channels = await guild.fetchChannels();\n\n// Edit a text channel\nconst channel = guild.channels.get(channelId);\nif (channel) {\n await channel.edit({\n name: 'renamed-channel',\n topic: 'New topic here',\n parent_id: categoryId, // Move under category\n rate_limit_per_user: 5, // 5 second slowmode\n nsfw: false,\n });\n}\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.021066522,0.024109464,-0.015507301,-0.009222455,-0.012639913,0.034502283,-0.033378735,0.01104822,0.017649064,0.030452827,0.05584969,0.019299274,0.015203007,0.026894927,0.06671065,-0.005816701,-0.027316257,-0.015015748,-0.0015009897,0.027105592,-0.01534345,0.038458105,0.008994235,0.07850791,-0.05416437,0.015378561,0.009912969,0.023009323,-0.0129208,-0.014067755,0.04386518,-0.016115889,0.007209432,-0.005693813,-0.027316257,-0.0028425176,0.008338831,0.0072269873,-0.009924673,-0.018561946,-0.03501724,0.005646998,0.021991108,-0.026309745,0.011071628,0.031084824,-0.048733886,0.026754484,0.004105046,0.0039997133,-0.01262821,0.009749118,-0.047727376,0.04302252,0.022634808,-0.0021797998,-0.022166662,0.0006590603,-0.039839134,0.016782995,-0.019147128,-0.056645535,0.0026508707,0.0041694157,0.01934609,0.021558074,-0.0778525,0.018386392,0.028182324,0.02018875,0.015846705,-0.06436993,0.01585841,-0.034712948,-0.013939016,-0.01114185,0.004725338,0.01402094,0.004941855,-0.01883113,-0.018760908,0.013939016,-0.05926715,-0.0007709762,-0.020727117,0.04632294,0.0011879178,-0.0015053785,0.04377155,-0.059360776,-0.013669832,-0.015905224,-0.07743117,0.000918003,0.033425547,-0.04487169,0.038902845,-0.034057543,-0.0030400162,0.045854796,0.10027664,-0.028065288,-0.06647658,0.006887582,0.04564413,-0.007057285,-0.018550243,0.07846109,-0.029703796,-0.037709076,-0.09133507,0.0001219737,0.0064194375,-0.01304954,0.0032857922,-0.011393477,0.055287916,-0.01925246,0.05093417,-0.024718052,-0.06792783,0.02125378,0.05940759,-0.02949313,0.0048862626,-0.016338259,-0.0109428875,-0.01036941,-0.029118614,0.0020642267,0.045948423,-0.009122974,0.021019708,-0.019708902,-0.02839299,0.0124643585,-0.019720605,0.007905797,-0.04047113,-0.008251054,0.015074267,-0.01925246,0.026965149,0.025537306,-0.06156106,-0.0046404866,-0.056598723,0.014571011,-0.026028858,0.0000033716492,-0.07068989,0.013775164,-0.03265311,0.004432747,0.0015609708,0.010913629,-0.0009984653,-0.011697771,-0.059735294,-0.07008129,-0.010708815,-0.022892287,-0.0010226041,0.0049798917,-0.007794613,-0.05116824,0.0057025906,-0.0080579445,-0.04751671,0.016361665,-0.0025879636,-0.0049272254,-0.0066242507,-0.024273315,0.024530794,0.004816041,-0.021148447,-0.038528327,-0.03707708,0.03560242,-0.016654257,0.050044693,-0.026754484,-0.040400907,-0.023255099,0.039230544,-0.001195964,-0.025396863,-0.029001579,-0.0098017845,-0.04342044,-0.004134305,0.019147128,0.014547604,0.03511087,-0.006834916,0.038809214,0.008502683,0.009479935,-0.043631107,0.032348815,0.005181779,0.048453,-0.033683028,-0.024156278,-0.037802704,-0.014219902,0.00076951325,-0.028416397,-0.008373942,-0.00063016696,0.015074267,-0.031646598,0.01560093,-0.06633614,-0.02448398,-0.07406053,-0.010310892,-0.08510875,-0.017848026,-0.03356599,-0.031974297,0.03621101,0.008543645,0.001988153,0.013985829,0.0184098,0.023524283,0.05271312,0.038832624,0.04545687,0.019954678,-0.0030049053,-0.048780702,0.015519004,-0.0129442075,-0.002427039,0.04414607,-0.028252546,-0.035251312,-0.015074267,-0.027831215,-0.027995067,-0.032933995,0.011791401,-0.030218756,0.007964316,-0.038387883,0.04412266,0.02567775,0.05608376,0.04548028,0.020703709,-0.033683028,0.03162319,-0.007578096,0.0077243913,0.0082920175,0.004500043,-0.017848026,0.034572504,-0.008016982,0.0012003529,-0.015507301,-0.038411293,0.0052871117,-0.023430653,0.015530708,-0.022435846,-0.028205732,-0.00036043502,-0.025865007,0.030406013,-0.040517945,-0.0019925418,0.006056625,0.008362239,0.013611314,0.0041489345,-0.03595353,-0.03279355,-0.018866241,0.004813115,0.006887582,-0.0014636844,0.0167947,-0.03901988,-0.00875431,0.055334732,0.038481515,-0.01049815,-0.007771206,-0.019229053,-0.031646598,0.0129208,0.06221646,0.029867647,0.041618083,0.04054135,0.031576376,-0.016654257,0.005617739,0.0067939535,-0.029282466,0.022330513,-0.015612634,0.004377155,-0.02057497,0.06413586,-0.0717198,0.036913227,0.058939446,-0.0027796105,-0.025139382,-0.026684262,-0.027667366,0.00571722,0.07031537,0.03152956,0.052057717,-0.022377327,0.0022295401,-0.0016560627,-0.023653023,-0.012476062,-0.037615445,0.011007258,-0.039675284,0.031974297,0.008151574,0.037287746,-0.041594677,0.012429248,0.06188876,0.035696052,0.017976765,-0.010486446,0.044684432,-0.0052812602,-0.03904329,0.032419037,-0.011633402,-0.020727117,-0.009292677,0.0014322309,0.015191303,-0.001585841,0.018082097,0.000110452944,0.045925017,-0.009585268,0.021862369,-0.007390838,-0.075558595,-0.02341895,-0.030382605,-0.0011125756,-0.01908861,-0.019849345,0.028088696,-0.016818106,-0.022822065,0.00079365197,0.041828748,0.05346215,0.013002725,-0.008093055,0.012651617,-0.010404521,-0.025373455,-0.0025821119,-0.028369583,-0.0036807896,0.006565733,-0.009415565,-0.0003317246,0.023664726,-0.0054099998,-0.026567224,0.03382347,0.018994981,-0.010989702,0.01931098,-0.016818106,0.015706262,-0.0014037034,0.0007420829,-0.0030341644,-0.019802531,-0.035227906,0.009515046,-0.0076600215,-0.022084737,-0.0077419467,0.0043742293,-0.004807263,0.020071713,0.027760994,0.013353834,0.005129113,0.06315275,0.013985829,-0.023372136,0.034993835,0.012230286,0.017695878,-0.0013064169,0.02125378,0.02916543,-0.027690772,0.012850578,0.020305786,0.05477296,0.037989963,0.014313531,-0.04131379,0.011457847,-0.02703537,0.008625571,0.0029785722,0.00852609,-0.046088867,0.039183732,0.0075312816,0.01124133,0.010726371,0.0071216547,-0.02044623,0.0080755,-0.029095208,-0.07008129,0.0031043862,0.025326641,-0.01915883,0.054960214,-0.011937696,0.010814148,-0.023465764,0.0036251973,-0.00888305,-0.064463556,-0.0023670578,0.00020517915,0.015050859,0.024413759,0.0552411,0.011182812,-0.037732482,0.0047750785,-0.0078121684,-0.016443592,-0.029142022,0.012288804,0.049529735,-0.04606546,0.004889189,-0.019779123,0.03323829,0.0070046186,-0.0018403948,-0.023793466,0.036702562,-0.012382434,0.04967018,0.01049815,0.0200249,-0.031131638,0.042624597,-0.02600545,-0.0044883396,0.017028771,0.015987149,-0.0048394483,0.0229391,-0.05158957,-0.019814234,-0.025115976,-0.0033150513,0.032536075,0.043233186,0.008233499,0.022271995,0.0066242507,0.001010169,0.0054538883,0.07232839,0.012979318,0.025022347,0.03808359,-0.0137166465,-0.044707842,0.017426696,0.025607528,-0.010603483,-0.0149806375,-0.05126187,0.00077536504,-0.014231606,0.03621101,-0.0065013627,-0.0027693699,-0.032255188,-0.044848286,0.020106824,0.005243223,-0.013950719,0.000043751435,-0.030874157,-0.0026932964,0.012862282,-0.04971699,0.02464783,-0.0177661,-0.022552881,0.011428588,0.004874559,-0.057020053,-0.012417545,-0.018433206,0.019650383,-0.029118614,0.0429523,0.043911994,0.0049828175,-0.0029273687,0.03000809,0.008186685,-0.03382347,-0.011393477,0.015074267,0.00788239,-0.04503554,0.010375262,0.013646425,-0.03452569,-0.00087704026,-0.021031411,-0.00002484734,0.009222455,-0.051027797,-0.025233012,0.022073034,-0.015109378,0.04107972,-0.008713348,-0.009836895,-0.012604802,0.04505895,0.03127208,-0.0036778636,0.036117382,-0.044848286,-0.002731333,0.008847939,-0.016478702,0.019170536,0.01143444,-0.03934758,0.014407161,-0.01705218,-0.002829351,-0.011422737,0.00794676,-0.011416884,-0.030288978,-0.03740478,0.0029010356,0.0037100485,-0.025303233,-0.04250756,0.028767506,0.015203007,0.025771378,0.020715414,0.028790914,0.028767506,-0.05032558,0.0134474635,0.0012895929,-0.009427269,-0.011744586,-0.06797464,0.06113973,-0.0029273687,-0.027058776,-0.024928717,-0.04260119,-0.010205559,-0.014149681,0.032957405,0.013061244,0.026731076,0.014091162,0.010662001,-0.03204452,-0.0039880094,-0.022424143,0.022857176,-0.016385073,0.013131466,0.005026706,0.019474829,-0.050278764,0.020305786,-0.009930524,-0.010451335,0.0057669603,-0.024530794,0.00046485328,0.019896159,0.016490405,-0.017005365,-0.021815553,-0.019240757,0.0050822985,-0.009409714,0.0004718023,-0.0013846849,0.024811681,0.027690772,-0.016443592,-0.0021695592,0.038200628,0.035064057,0.02958676,0.011879178,0.016291443,-0.008719199,0.021967702,-0.058705375,0.021581482,-0.0274567,0.0073206164,0.010585927,-0.039324176,-0.029422909,0.016338259,-0.03494702,0.0016619145,0.0047165602,0.06479126,-0.0014439345,0.00965549,0.009667193,-0.0015478042,-0.021581482,0.0042074528,-0.011598291,-0.0016984884,0.0017584694,-0.032863773,0.008233499,0.024109464,-0.03340214,0.029376095,-0.027854623,-0.035579015,0.024952125,-0.033425547,0.006436993,-0.05397711,-0.010954591,-0.008256907,0.029399501,0.00490967,-0.020247268,-0.04021365,0.011791401,-0.033214882,0.033776656,-0.0051525203,0.014126273,0.005448037,-0.016818106,0.045339838,-0.01695855,0.023196582,-0.042460747,0.01699366,0.046346348,-0.011961103,0.036913227,-0.052572675,-0.0030400162,0.021277187,-0.015483893,0.016864922,0.0007548837,0.034268208,-0.014102866,0.009105419,0.024952125,-0.0056674797,-0.010960443,-0.00084412383,0.023594504,0.027269442,0.0076951324,0.016174408,-0.05917352,0.0071040993,0.003672012,0.015191303,-0.018245948,0.023255099,0.0031014602,-0.019603569,0.01198451,0.00946238,-0.031927485,-0.04217986,0.016127594,-0.00859046,-0.029774018,-0.013482574,0.011767994,-0.029446317,-0.030569864,0.042554375,-0.0042981557,-0.0068173604,0.014629529,-0.022470957,-0.003478902,-0.013505981,-0.0048950403,-0.0229391,0.022915695,-0.019041795,0.029142022,-0.011767994,0.026848111,0.053836666,-0.004043602,-0.016256332,0.034080952,-0.027878031,-0.0053982963,0.005155446,-0.016385073,-0.0025982044,0.043888588,0.018632168,-0.027269442,0.019369496,-0.0022763547,0.01585841,-0.005924959,-0.034127764,0.0037510113,-0.018058691,0.007174321,-0.059360776,-0.004137231,-0.01750862,-0.020785635,-0.017333066,-0.01563604,-0.009579415,0.027105592,-0.010837555,0.0024665387,-0.008608015,0.04948292,-0.043162964,0.00056762574,-0.029212244,-0.0037012708,0.01111259,0.0041752676,-0.04210964,-0.010492298,0.0149806375,-0.017918248,0.0030575716,-0.033261698,-0.04445036,-0.03597694,-0.001985227,-0.017649064,-0.03213815,0.006360919,-0.008327128,-0.026403375,0.012206879,-0.0016033964,0.014992341,-0.046931528,-0.012288804,-0.017438399,-0.040986087,-0.020329194,-0.000102589576,0.032933995,-0.034923613,-0.0005782321,-0.014863602,-0.061233357,0.010474742,0.041407418,-0.017028771,0.022447549,-0.005401222,0.013833683,0.04096268,-0.00017299419,-0.03188067,0.022646511,0.019989789,0.0066242507,0.0031160896,0.028533434,0.012359026,0.023945613,-0.015975446,0.013974126,0.018585354,0.021838961,-0.003195089,-0.028275954,0.01695855,0.016478702,0.013564499,0.02151126,-0.020329194,0.029095208,-0.00030209977,-0.012183472,0.035766274,0.0039528986,0.0025338344,-0.032770146,0.030710308,0.0064721038,-0.012206879,-0.0027576662,-0.068583235,0.006360919,0.0018755057,-0.017965062,-0.006922693,0.0034584207,0.0007717077,-0.014676344,0.000040208346,0.013037836,-0.0015638967,0.011416884,0.024975533,0.02125378,0.058424488,0.015776483,-0.016677663,-0.027948253,0.024764867,-0.014477382,-0.00036976134,0.05364941,0.027526923,0.02073882,-0.0006722269,-0.018011875,-0.035906717,-0.01756714,-0.029563352,-0.013295316,0.0005500703,0.01437205,0.027643958,0.003543272,0.039558247,0.009187344,-0.0006191948,-0.024905311,0.013564499,0.02549049,0.026075672,-0.031646598,0.010451335,-0.005278334,0.0039265654,0.025467085,0.0071684695,-0.028065288,-0.0040904162,0.004096268,-0.016619146,0.03255948,0.0041898973,0.02839299,0.012054732,0.011937696,-0.01915883,0.00068356475,-0.027831215,-0.026637446,-0.05364941,-0.0071040993,0.0041196756,-0.015167896,-0.04253097,0.0015214711,-0.0021403,-0.0065364735,0.025911821,-0.0065832883,-0.015717966,0.02134741,0.03834107,-0.02128889,-0.0129559105,-0.05355578,-0.03962847,-0.00018780658,0.023770059,0.005796219,0.022143256,-0.0018901351,-0.019744013,0.0043742293,-0.030663492,0.006565733,0.031038009,-0.012967614,0.005632369,0.0014783139,0.020364305,-0.013997533,0.013108058,-0.003385273,0.032863773,0.0018594131,-0.019615272,0.0055884803,0.037006855,-0.04896796,0.022506068,-0.021733629,0.009854451,-0.026918333,-0.0044210437,0.0187375,0.022365624,0.012850578,0.009813488,0.002731333,-0.012382434,0.037685666,-0.03621101,0.027667366,0.03527472,0.018199135,0.02635656,-0.007466912,0.056926426,-0.00056725997,-0.018936463,0.004936003,0.010158745,0.056739166,0.02248266,0.0024767793,0.008110611,0.005840108,-0.014524196,-0.02406265,0.0017628582,-0.0258416,0.024296721,0.0055065546,0.037779298,0.008572904,0.047118787,0.08749629,-0.023535987,-0.03351918,0.026216116,-0.0028703136,0.008473423,-0.0014856287,-0.0016502109,0.026894927,0.00045717278,-0.0011623161,-0.02393391,0.010568372,-0.02108993,-0.024601016,0.029633574,0.021663407,0.04386518,-0.014769972,-0.04770397,-0.019861048,-0.01818743,-0.006021514,-0.0024606867,-0.006191217,-0.01883113,0.035344943,0.008385646,0.010024154,0.018105505,-0.022950806,0.004848226,0.02464783,0.04131379,0.01798847,0.022587992,-0.0021988181,0.021628296,0.0060975878,0.0033618659,-0.016935144,-0.029867647,0.019147128,-0.017040476,-0.033472363,-0.018573651,-0.018000172,0.016771292,-0.021206966,-0.009895413,-0.015050859,-0.025279826,-0.037287746,0.011814808,0.037217524,0.022833768,0.0049740397,-0.012288804,0.022353921,-0.0151796,0.012066436,0.041852158,-0.006805657,0.04709538,0.008531941,0.045012135,-0.018257651,-0.050419208,-0.00047728838,0.013330427,-0.020071713,0.008455868,0.015437079,-0.007706836,-0.023571098,-0.005632369,0.00053544075,-0.031482745,0.0044971174,0.0025645564,-0.024928717,0.02053986,0.02483509,-0.0038914548,0.006308253,-0.0014088236,-0.037264336,-0.01166266,0.0045439317,-0.0026567224,-0.0058284043,-0.012827171,0.036421675,-0.0022631881,0.02483509,0.04150105,-0.02780781,0.0134474635,-0.017391585,-0.022073034,-0.005190557,-0.018480022,0.0017277474,0.048499815,-0.012124954,0.020340897,-0.02525642,0.009842747,-0.0187375,-0.015132785,-0.015308339,-0.005155446,-0.020048307,-0.008239351,0.0113232555,0.009503342,-0.033214882,-0.042133044,0.012359026,-0.032887183,-0.003759789,-0.018362984,-0.0013576203,0.017918248,-0.00881868,-0.034057543,-0.023664726,0.0043947105,0.001585841,0.0032389776,0.009058604,-0.018386392,0.024624424,-0.0057991454,0.009877858,0.013775164,0.03475976,-0.024179686,0.010334299,-0.0057874415,-0.0014336938,-0.011024813,-0.00037195577,-0.00017098262,0.0335894,-0.024671238,0.01026993,0.014898713,-0.0229391,-0.016045667,-0.00534563,-0.016115889,0.005720146,-0.037779298,0.00939801,-0.008356387,-0.01996638,-0.019357793,-0.018035283,-0.026801297,-0.033659622,0.04744649,0.03766226,-0.0053982963,-0.026239524,-0.005500703,-0.006969508,0.0056294426,0.009152234,-0.0031248673,0.014512493,-0.016736181,-0.0013261668,0.021487853,0.064416744,0.012382434,-0.009895413,0.00041438141,0.03026557,0.06507215,-0.008081352,-0.0014556381,-0.01466464,-0.022564586,-0.01369324,0.01198451,0.015565819,0.016466998,0.005500703,0.010082671,0.005243223,-0.010550817,0.028112102,-0.009971487,0.013353834,0.009538453,-0.012394137,0.014231606,-0.013786868,-0.019486533,0.042788446,-0.042250082,0.013412353,0.008344684,-0.013529388,0.020668598,-0.010287485,-0.0061619575,-0.03862196,0.024858495,0.0019998567,0.003695419,0.018842833,-0.007221136,-0.0017292104,-0.008373942,-0.018983277,-0.0012208342,-0.011176961,0.020563265,-0.010199708,-0.034900203,-0.036257826,-0.017169215,-0.028252546,0.030616678,0.026988555,-0.021148447,-0.0044210437,0.0051934826,0.013166577,0.0010321133,-0.008192536,0.012885689,-0.012862282,0.048265744,-0.032419037,0.013880497,-0.012522877,-0.006360919,0.015004045,-0.016232926,-0.008128166,-0.007209432,-0.031318896,0.010919481,-0.0010972146,0.013131466,0.008438312,0.016420184,-0.0007336709,-0.036725968,-0.012148361,0.026403375,-0.015121081,-0.048687074,0.00975497,-0.010784889,-0.02464783,0.061935574,0.012686728,-0.026403375,0.006834916,0.015238117,-0.021429334,0.013002725,0.042062823,0.03316807,0.017742693,0.007800465,-0.031412523,-0.022822065,-0.015156192,-0.031225268,-0.018070394,0.016747884,0.015238117,-0.021920886,0.008063797,0.019989789,0.01508597,0.011674364,-0.008110611,0.021183558,-0.009041049,-0.030148534,-0.0018608761,-0.029680388,-0.01831617,-0.015846705,-0.02086756,-0.040588167,0.00033849073,-0.019896159,0.020329194,0.03628123,0.037381373,0.022599697,-0.039417803,-0.008473423,0.009889562,-0.0020349675,0.025888415,0.014079459,-0.006483807,0.02525642,0.014606122,0.0052929637,-0.018503428,-0.006156106,0.0067471387,-0.016443592,0.0013707869,0.0015668225,-0.023758356,0.010234819,0.049202032,-0.0066008437,0.010111931,-0.0077536507,0.015261524,-0.009608675,0.00962623,-0.019697199,-0.036725968,-0.026122488,0.0049008923,-0.053368524,0.03129549,-0.0016282666,0.008842087,-0.026216116,0.027269442,-0.007466912,0.017976765,-0.021534666,-0.0110657755,-0.010474742,-0.0149806375,-0.0031892373,-0.0032770145,0.025139382,0.013084651,0.035813086,0.011943548,0.042484153,-0.042788446,-0.032863773,0.004874559,-0.022658214,0.0067003244,-0.0075254296,-0.038060185,-0.0048570037,-0.025982045,0.041009497,-0.019135425,0.0011454921,0.0016911735,0.0017379881,0.0073147644,0.0020130232,0.016771292,-0.004064083,0.001834543,-0.030288978,-0.012909097,-0.047774192,-0.0066008437,-0.058705375,0.038645364,0.008988382,0.025467085,-0.024577608,-0.026450189,0.0027810736,0.011650957,0.008128166,-0.02380517,-0.013658129,-0.004906744,0.03602375,-0.018234245,-0.00054458424,-0.01198451,0.0009421417,0.02932928,0.032348815,-0.029563352,-0.0075605405,0.023793466,0.00859046,-0.018667279,0.025303233,-0.01637337,-0.0025587047,-0.021031411,-0.06053114,-0.0032419036,0.01640848,-0.006366771,-0.014676344,0.025724564,-0.01792995,0.0034116062,0.0025835747,-0.0070631364,0.022014515,-0.04599524,-0.0020905598,-0.026918333,-0.018655576,-0.0089298645,-0.009146381,-0.01372835,0.009790081,-0.034315024,0.025467085,-0.014255013,0.0436077,-0.023278506,-0.047001753,-0.0001616563,-0.024366943,0.032606296,0.012440952,0.014758269,-0.01747351,-0.039722096,-0.0054304814,0.007361579,0.023664726,0.003850492,0.030640086,0.014266717,0.00043120538,0.0013320186,-0.041852158,0.06432311,0.0039587505,-0.0132016875,0.033542585,-0.0077770576,0.0018199134,-0.0019208571,0.02134741,-0.004505895,-0.0047077825,-0.015448783,-0.042882077,0.011592438,-0.0071333586,0.036257826,-0.001988153,0.0045848945,0.0033296808,0.009608675,-0.0024504461,-0.0074493564,0.0029785722,-0.03279355,0.00073074497,0.008052093,0.009029346,0.043162964,-0.0014154069,-0.030452827,-0.0040582316,0.027760994,-0.017227734,0.0026845187,-0.005740627,0.0018798945,0.0011645105,-0.017134104,-0.034385245,0.0031482747,-0.015706262,-0.0184098,0.00029112762,-0.00091434555,0.015940335,0.0051437425,0.015331746,-0.005807923,-0.026497003,0.0069402484,-0.019006684,-0.0068524713,-0.01359961,0.0029902759,0.0290718,0.023875391,0.0018711168,0.017063882,-0.0049330774,0.013681536,-0.0452228,0.020036602,-0.0017804137,-0.04250756,-0.01317828,0.055475175,0.012394137,0.0033735693,-0.027222628,0.0076190587,0.00658914,0.019076906,-0.0057377014,-0.027222628,0.017368177,-0.021874072,-0.020937782,-0.018760908,-0.031482745,-0.018842833,-0.00936875,0.0015756002,0.0132133905,-0.008227647,0.0053836666,0.015577523,-0.019065203,0.020692006,-0.01624463,0.0069929147,0.0020642267,0.0071918764,0.013365538,0.03417458,0.0043127853,0.06961315,-0.014383753,0.019568458,0.02804188,-0.009661341,0.031927485,-0.013505981,0.026848111,0.021218669,-0.011334959,0.011416884,0.03340214,-0.055100657,0.0070338775,-0.0024460573,-0.009251714,0.010901925,-0.012171769,-0.028720692,0.018597057,0.003505235,-0.022166662,-0.006805657,0.01237073,-0.028814321,0.018456614,0.037100486,0.01675959,-0.03298081,-0.01411457,-0.007765354]},{"id":"guide-channels-2","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Delete and Reorder\nUse channel.delete() to remove a channel. Use guild.setChannelPositions() to reorder channels or move them between categories.\n\n```javascript\n// Delete channel (silent: true skips system message)\nawait channel.delete();\nawait channel.delete({ silent: true });\n\n// Reorder channels\nawait guild.setChannelPositions([\n { id: channelId1, position: 0 },\n { id: channelId2, position: 1, parent_id: categoryId },\n]);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[0.0025216362,0.0027504808,-0.025839167,-0.028967675,-0.022339871,0.039442386,-0.047785077,0.014043529,0.0027939323,0.021505602,0.06113338,0.0055733807,0.026905177,0.024564588,0.066695176,-0.010886053,-0.018087417,-0.019396756,-0.010416776,0.0552008,-0.027554052,0.055896025,-0.0029720834,0.058074396,-0.036707837,0.0030300189,0.041551232,0.008551258,0.0025592942,-0.012027379,0.05149294,-0.019906586,0.017450128,0.032721885,-0.0249122,-0.023695558,0.016430466,0.020231025,0.0010044541,0.03056669,-0.015410803,0.030798431,0.020231025,-0.029268939,0.050056145,0.079765394,-0.041226797,0.013811788,0.0051301755,-0.006905894,-0.024170628,0.027322311,-0.027716272,0.044587046,0.015770003,-0.0073577897,-0.023324773,0.012235946,-0.0014085532,0.018886924,-0.01791361,-0.067344055,0.024958549,0.025885515,-0.007467867,0.010532646,-0.06358984,0.030358125,0.018122178,0.0038584943,-0.035688177,-0.06331175,-0.0013339615,-0.027136918,-0.00004587303,-0.002837384,0.003090851,0.0424782,0.0088641085,-0.03140096,-0.05872327,-0.0050577563,-0.027971188,-0.0023637624,-0.024448719,0.022560025,0.010463124,0.013023867,0.02400841,-0.04136584,0.0047651827,-0.00061773567,-0.055154454,-0.0060252766,0.0103762215,-0.054598276,0.02938481,0.010775975,-0.012409752,0.02305827,0.074852474,-0.05821344,-0.0821755,0.011187316,0.0055386196,-0.029848292,-0.027345486,0.09881453,-0.04410039,-0.03325489,-0.052744344,0.00090379146,-0.021922737,-0.015016843,-0.0055907615,0.01071804,0.040392525,-0.011083033,0.057564564,-0.012189598,-0.04481879,-0.02799436,0.0579817,-0.05445923,-0.03056669,0.0055038584,0.002226166,-0.032652363,-0.051353894,-0.012432926,0.03863129,0.005718219,0.0025390168,-0.021505602,-0.013777026,0.009993848,-0.0058109155,-0.0054401294,-0.0046087573,-0.00727668,0.025815992,0.006094799,0.015874285,0.008759825,-0.038028765,0.023382708,-0.024981724,0.013023867,-0.012826887,-0.014182574,-0.043011203,0.013371479,0.024216976,-0.0012021585,-0.0296629,0.021204337,0.015318107,0.0049042273,-0.029338462,-0.08087775,-0.016442053,-0.023985235,0.02709057,-0.004886847,-0.021181164,-0.033764724,0.0023318978,0.03302315,-0.04062427,0.019999282,0.003050296,-0.02792484,-0.013441001,-0.052188165,-0.0054835808,0.02364921,-0.02091466,-0.058955014,-0.0006731364,0.017890437,0.009124817,0.04824856,0.00056631805,-0.030636214,0.011737702,0.047924124,-0.0019379375,-0.024425544,-0.04069379,0.019431517,-0.018724706,0.00093131076,-0.008081981,0.0377275,0.029477507,-0.008284755,0.03408916,0.018608835,0.008643954,-0.06219939,0.031099696,-0.015538261,0.008904664,-0.026511217,-0.031771746,-0.0438223,-0.03211936,-0.002747584,-0.029407984,-0.00793135,0.007885002,-0.0140203545,-0.06437776,-0.027577227,-0.059186753,-0.037912894,-0.08365864,0.03828368,-0.056683946,-0.038237333,-0.025004897,-0.02950068,0.037356716,0.0046666926,-0.000018896882,0.0033631471,0.041551232,-0.020555463,0.018539311,0.0054430263,0.020624984,0.047506988,0.027507704,-0.02535251,-0.0035166757,-0.0029836704,-0.024471892,0.01573524,-0.014819862,-0.029639725,-0.007299854,-0.031655874,-0.028782282,-0.05478367,0.022212414,-0.002026289,0.016349357,-0.013823375,0.0042553516,0.0139160715,0.06465585,0.039766826,0.0031690637,-0.039650954,0.01704458,0.024587763,0.028573714,-0.018342333,0.0030126383,0.0021725756,0.034390423,-0.0030445026,0.017983133,-0.0038961524,-0.028481018,0.015654132,-0.025700122,0.008846728,-0.026951525,-0.016998231,0.0027562743,-0.039581433,0.028643237,-0.04342834,0.009113231,0.025282986,-0.0016989541,0.011175729,0.013719091,-0.06743675,-0.048480302,-0.017890437,0.00939132,-0.0072013643,0.005683458,0.027669923,-0.037379887,-0.009460843,0.016082853,0.026650261,-0.02037007,-0.0063149533,-0.029523855,-0.036638316,-0.007879208,0.0740182,0.04303438,0.034158684,0.008562845,0.01751965,0.015966984,0.01676649,-0.0075721503,-0.026117256,-0.012989106,-0.0013303405,-0.0041481713,-0.02882863,0.042941682,-0.033115845,0.013568459,0.04428578,0.012525623,-0.03425138,-0.0363834,-0.05172468,-0.031910792,0.032930452,0.03649927,0.03728719,-0.0066220104,-0.031215567,-0.025815992,-0.032930452,-0.01676649,-0.021598298,0.009773694,-0.051261198,0.020590223,0.0043017,0.015515087,-0.03582722,0.0014317273,0.043474685,0.026233127,0.04477244,0.0023101722,0.062384784,-0.027136918,-0.04871204,0.027345486,0.017786153,-0.00014176057,0.0020060115,-0.0013730678,0.004264042,-0.01368433,-0.0071839835,-0.0032704505,0.024170628,-0.04029983,0.0019350407,0.009234895,-0.083936736,-0.018886924,-0.009536158,0.02242098,0.009443462,-0.0076822275,0.041574407,-0.0051127947,-0.021100055,-0.03214253,0.00478546,0.045374967,0.0033747342,-0.046927635,-0.010202415,-0.016465226,-0.018203286,0.022061782,-0.051307548,-0.01570048,-0.023232076,-0.027855316,-0.03353298,0.0133019565,0.017786153,-0.0019466277,0.009680997,0.018249635,-0.040531572,0.0064597917,-0.019987697,0.0014889385,0.0071955705,-0.014228922,0.025561078,-0.015213823,-0.015132713,0.020984184,-0.0013158567,0.0057993284,0.04259407,0.02574647,-0.0031429927,0.037472583,0.025120769,-0.00965203,-0.014819862,0.045815274,0.0047014537,-0.040531572,0.02345223,-0.022119718,-0.00020820517,0.017959958,-0.012595145,-0.008319517,-0.040207133,0.0031487863,0.037124973,0.043636907,0.047460638,-0.030265426,-0.0634508,0.007815478,-0.03793607,0.034228206,-0.0139160715,-0.007502628,-0.028481018,0.0511685,0.0041163065,-0.008974186,-0.001762683,0.012386578,0.022629548,0.017484888,-0.039488737,-0.0822682,0.021366557,0.01475034,-0.04630193,0.055154454,0.030775258,-0.010839704,-0.050287884,0.008655542,-0.007386757,-0.074203596,-0.02558425,-0.0098895645,0.008788792,-0.0025448103,0.030659387,0.0062628114,-0.012884822,0.0045884796,-0.019524213,-0.0438223,-0.018226461,-0.000988522,0.042918507,-0.02709057,-0.0012050553,0.0031487863,0.020346895,-0.005622626,-0.00966941,-0.020740855,0.048155863,0.00873665,0.074898824,-0.010839704,0.03341711,-0.0095883,0.0168476,-0.029431159,0.011662386,0.036846884,-0.0017742701,0.03167905,0.01475034,-0.050473277,-0.0127110155,-0.0058630574,-0.022606375,0.032999977,0.020578636,0.054830015,0.018377094,-0.0068595456,-0.008186265,-0.0061990824,0.06354349,0.0058746445,-0.008139917,-0.00013985956,0.023197314,-0.028388321,0.025422031,0.046023842,-0.010266144,-0.0063555078,-0.04959266,0.01081653,0.002388385,0.05204912,-0.008249994,0.032327924,-0.02748453,0.0012970277,0.0012354713,0.018910099,-0.043845475,-0.0038584943,-0.021053707,0.016140789,0.0101966215,-0.01032408,0.012305468,-0.02214289,-0.009136405,0.014785102,0.024054758,-0.045722578,-0.024842678,-0.013441001,0.018933272,-0.023892539,0.026348997,0.022733832,-0.0029141482,0.0035050886,0.048433952,0.020961009,-0.019396756,-0.006482966,0.00065611786,0.013162912,-0.027971188,0.0023695559,0.065860905,-0.019825477,0.0106079625,-0.02519029,0.03689323,-0.0008009562,-0.03045082,-0.016743317,0.0038440104,-0.016812839,0.047391117,0.0037165526,-0.009200133,-0.009107437,0.04456387,0.04275629,0.023208901,0.016708555,-0.03756528,-0.017902024,0.012873235,-0.0017192315,0.0088641085,-0.010515266,-0.04769238,0.031841267,-0.01779774,-0.033301238,-0.011795637,0.0027186163,-0.0112220775,-0.011042478,-0.044981007,-0.003426876,0.003238586,-0.013058628,-0.0344136,0.022606375,-0.004863673,0.029454332,-0.0015483223,0.03687006,0.047785077,-0.063775234,0.0020914662,-0.008771412,-0.04674224,-0.013777026,-0.047785077,0.049268223,-0.009055295,-0.039789997,-0.0141594,-0.058537878,-0.022722244,-0.0276004,-0.008794586,0.014657644,0.014298445,0.012293882,-0.0048926403,-0.022455743,0.024425544,-0.0018235152,0.03218888,0.00083789,-0.013325131,0.0006180978,0.02535251,-0.048897438,0.0174733,-0.028550541,-0.012699429,0.0030329155,-0.027021047,-0.009860597,0.030265426,0.026882002,-0.01273419,0.0030821606,-0.032420624,0.017137276,-0.016048092,0.029245766,0.0014085532,0.00039540877,0.011419058,-0.0097099645,0.023046682,0.0022594787,0.04057792,0.021100055,0.012305468,0.022606375,-0.01301228,0.030867955,-0.035618655,0.0086323675,-0.030195905,0.004295906,-0.00019390238,-0.0062743984,-0.05580333,-0.002004563,0.0007412104,0.007809685,-0.009287037,0.05691569,0.0018800021,0.00929283,-0.018052654,-0.022038607,-0.001981389,0.008255787,0.016917123,-0.007954524,-0.0068363715,-0.026140431,-0.0075663566,0.015167475,-0.03089113,0.015677307,-0.013151324,-0.028481018,0.039789997,-0.04326612,-0.0012159182,-0.026951525,-0.0064597917,-0.0014396935,0.023510166,0.023000333,-0.033486634,-0.035734523,0.013672743,-0.020115154,0.0105036795,-0.020231025,0.023695558,0.013649569,-0.009906945,0.009066883,-0.009727346,-0.0067842295,-0.01640729,0.0018611732,0.0178325,-0.011083033,0.031261913,-0.029083546,0.0042321775,0.01609444,-0.02669661,0.009321798,0.0032298958,0.019246124,0.034969777,0.019269297,0.0155846095,-0.0035166757,-0.002623023,0.006117973,0.019477865,0.02040483,0.02020785,0.022316698,-0.05038058,-0.0024752878,0.0025259813,0.030358125,0.0029503577,0.02653439,-0.0046435185,-0.004411777,0.008835141,-0.0010399396,-0.009680997,-0.017114103,0.0070970803,-0.010115513,-0.02653439,0.0029561513,0.02317414,-0.043289293,-0.030473994,0.0063439207,-0.027554052,-0.004510267,0.030798431,-0.0044407444,-0.010793356,-0.0040902356,0.0145070115,-0.03279141,0.011789843,-0.0123518165,0.006065831,-0.025097594,0.016754903,0.033973288,0.025885515,-0.02519029,0.044702917,-0.028573714,0.0076648467,0.009072676,-0.0085802255,-0.010671692,0.0350393,0.035919916,-0.0283188,-0.0059615476,0.0071608094,0.00046022394,-0.011164142,-0.0058775414,-0.00037187253,-0.01981389,0.00660463,-0.06766849,0.019999282,-0.022826528,-0.040531572,-0.013267195,-0.037843373,-0.0050172014,0.01676649,-0.015260171,-0.0072013643,-0.009124817,0.023104617,-0.040323004,-0.013220847,-0.04416991,0.021227513,-0.013371479,0.029755596,-0.020242611,0.0018524828,0.02546838,-0.017380605,0.000046438803,-0.045792103,-0.015885873,-0.00909585,-0.033787895,-0.0055733807,-0.02882863,0.014958908,-0.007740163,-0.009501398,0.0046522086,-0.011465406,0.016523162,-0.039766826,-0.0040323003,-0.017751392,-0.050565973,-0.018678358,0.031053348,0.034274552,-0.05872327,-0.018516138,-0.022363046,-0.065999955,0.0025694328,0.03619801,-0.01566572,-0.0027432388,-0.009831629,0.013522111,0.039372865,0.03733354,-0.029268939,0.007427312,0.018956447,0.001856828,-0.015306519,0.023823015,-0.006853752,0.033092674,-0.0042437646,-0.0010862878,-0.007265093,0.018342333,0.005793535,-0.030311776,-0.018597247,0.019431517,0.011691354,0.015202236,-0.015005256,0.011697147,0.027716272,0.0053619165,0.04903648,-0.023104617,0.047391117,-0.037449412,0.023660798,0.0134294145,0.0037571075,0.0050780335,-0.050797716,-0.009721552,-0.018214874,-0.02882863,-0.009003153,-0.002404317,-0.021482429,-0.018226461,-0.01724156,0.009698378,0.00052322866,-0.007577944,0.012490862,0.01858566,0.039581433,0.037657976,-0.01760076,-0.014808276,0.012235946,-0.0017930991,-0.0026012973,0.06113338,0.050473277,0.022328284,-0.02725279,0.0036151658,-0.040438876,-0.048851088,-0.03689323,-0.0054864776,0.0038150428,0.016024917,0.020335307,-0.020022457,0.052419905,0.013580047,0.028202929,-0.021992259,0.025653774,0.032999977,0.016279833,-0.02558425,-0.0042524547,-0.008794586,-0.0049824403,0.006865339,0.026372172,-0.058955014,-0.011656593,0.0045682024,0.005208388,0.005712426,0.012861648,0.0026809582,0.008302135,0.012282294,0.005173627,-0.00063584046,-0.045421313,-0.024077931,-0.028643237,0.004898434,0.008209439,-0.018214874,-0.052419905,0.035456434,-0.0005598003,0.028782282,0.026650261,0.0038121461,-0.00947243,0.01732267,0.04528227,-0.036128484,-0.040856007,-0.05557159,-0.04616289,-0.022965573,0.03385742,-0.01455336,0.010167654,-0.03941921,-0.02187639,0.013359892,-0.008951012,-0.0009798317,0.05603507,-0.025491554,0.020103566,-0.023730319,0.031771746,-0.0048028408,0.024379196,0.00010835721,0.042848986,0.011645005,-0.0018090314,-0.012293882,0.021134816,-0.046417803,0.00083499326,-0.013371479,-0.0013006487,-0.052929737,-0.0087076835,0.0038324234,0.0037802816,0.04481879,0.0052025947,-0.017867262,-0.008331103,0.010318286,0.004374119,0.019837065,0.018226461,0.019188188,0.04203789,-0.012490862,0.026951525,0.018411854,-0.05598872,-0.0034065987,-0.02091466,0.06535108,0.0242865,0.021123229,0.023602862,0.0016468123,-0.0006383751,-0.0061121797,-0.000050331335,-0.044123564,0.014182574,-0.0031545798,0.03788972,-0.010347254,0.014657644,0.054830015,0.0077807177,-0.0011833295,0.015573022,-0.0060600378,0.021783693,-0.0089394245,-0.006204876,0.0062743984,0.020555463,-0.004026507,-0.015515087,0.030937478,-0.014970494,-0.0016120512,0.0004960714,0.022212414,0.036012612,0.014761928,-0.035502784,-0.008968392,-0.023660798,-0.0011637764,0.015190649,0.010219796,-0.015885873,0.04080966,0.01914184,0.025167117,-0.0018264119,-0.02278018,0.041110925,-0.011280012,0.029176243,0.0069232746,0.020937836,0.015851112,0.024216976,0.0014889385,-0.0041858293,0.01491256,-0.02163306,0.018550899,-0.006007896,-0.0417598,-0.026974699,-0.04097188,0.012235946,-0.03246697,-0.048665695,-0.0013969662,-0.014031942,-0.034344077,0.029848292,0.031632703,0.028898153,-0.0020668437,-0.0068479585,-0.012745777,-0.03341711,0.01455336,0.03089113,0.0007676434,0.04623241,-0.013672743,0.009675204,0.010190828,-0.05445923,-0.014727166,-0.015329693,-0.0111467615,0.011048271,0.011726115,-0.014367967,-0.017183624,0.020080393,-0.010034403,-0.009443462,-0.0063091596,-0.005747187,0.0046145506,-0.003241483,0.036800534,-0.0017583378,0.0076474664,-0.009310211,-0.0070333513,-0.005805122,-0.022768592,0.02364921,-0.024379196,-0.020277373,0.026997874,-0.016824426,0.045467664,0.036313877,-0.021227513,0.00063801307,-0.0049274014,-0.019489452,0.008904664,0.0123518165,-0.004849189,0.0034094953,0.02586234,0.01214325,-0.020497527,0.009623062,-0.0064076497,-0.014483837,-0.02519029,0.016430466,0.021204337,-0.021470841,0.018574074,-0.030613039,-0.028017536,-0.029593376,0.0022522367,-0.04562988,0.0008646851,-0.03895573,0.011534928,0.008180471,-0.005185214,-0.04108775,-0.028527366,-0.0077807177,-0.0016583994,0.010474712,0.009205927,-0.021470841,0.022154478,0.036290705,0.013047041,0.036035787,0.02281494,-0.009727346,0.021204337,0.0006423582,-0.0178325,-0.022131303,-0.013927658,-0.017728217,0.010526854,-0.009402907,0.020775616,0.0073346156,-0.016499989,-0.030821607,0.016998231,-0.007890794,0.0174733,-0.0025172909,-0.00093493174,-0.010955575,-0.01937358,-0.029616551,0.0037484171,-0.0363834,-0.07503787,0.053995747,0.01724156,-0.0022913432,-0.021760518,-0.0009733139,0.009959087,-0.0046116537,0.013603221,0.010445744,0.022131303,-0.010312492,0.0006072349,0.021818453,0.06257018,-0.006569869,-0.007676434,0.0109671615,0.030775258,0.04662637,-0.018052654,0.0022276142,-0.026209952,-0.03318537,-0.008389039,0.013858136,0.025097594,0.010451538,0.011048271,0.0050548594,0.01130898,0.007896588,0.037820198,-0.037912894,-0.0038179397,0.0037194495,-0.034344077,0.0007346927,-0.010463124,-0.013371479,0.030914303,-0.012873235,-0.0021392629,0.006963829,-0.018342333,-0.005185214,-0.016360942,-0.009495604,-0.051817376,0.032235228,0.008180471,0.0042553516,0.009512984,-0.018492963,0.000032384956,-0.015109539,-0.015573022,-0.006482966,0.01388131,0.02361445,-0.03939604,-0.04583845,-0.0070739063,-0.03459899,-0.028110232,0.03867764,0.03374155,-0.0336952,-0.020810379,0.010393602,0.0035688176,-0.020115154,0.0124561,0.014703992,-0.03195714,0.051353894,-0.016013332,0.022606375,0.0055994517,-0.0019089698,0.0072535058,-0.03990587,0.023938887,-0.003649927,-0.010526854,0.010544234,-0.019199776,0.020509114,0.0008668577,0.0033428697,-0.02574647,-0.037843373,-0.011036685,-0.005616832,0.008053014,-0.053207826,0.0041221003,-0.01740378,-0.012560384,0.06558282,0.008012459,-0.03413551,-0.018516138,-0.0041510677,-0.032490145,0.017554412,0.024054758,0.0035804047,0.024842678,-0.02325525,-0.03151683,-0.0026215746,-0.007989285,-0.019582149,-0.01597857,0.0178325,-0.0005192456,0.016720142,0.0028895256,0.03246697,0.0020422211,0.029940989,-0.016662207,-0.001887244,-0.0051417626,-0.0344136,0.015688892,-0.002578123,-0.042895332,0.0014244855,-0.0048926403,-0.019095492,-0.006593043,-0.008163091,0.053346872,0.012073727,0.028226104,0.0024781846,-0.013753852,-0.015515087,0.020242611,0.0076416726,0.014286857,0.0023941784,-0.015596196,0.011436438,0.03508565,0.0036093723,-0.02653439,0.013336718,-0.017728217,0.009536158,0.0044784024,-0.0046377247,-0.022084955,0.0032965215,0.01874788,0.013116564,0.011401677,0.024402369,0.009796868,0.015943808,0.027461356,-0.039141122,-0.022675896,-0.027183266,-0.0042321775,-0.032374274,0.015387629,-0.009240689,0.024703633,-0.0054314393,0.024147455,-0.021123229,0.023104617,-0.015688892,-0.0015787383,-0.030613039,-0.019802302,0.017774565,-0.0023232074,0.002804071,0.03211936,0.017450128,-0.009507191,0.055386197,-0.036985926,-0.022166066,0.027739447,-0.01589746,0.01827281,-0.006975416,-0.04393817,-0.008562845,-0.0191766,0.042779464,-0.011007717,-0.0018061346,-0.017693456,0.016592685,-0.015063191,-0.0025621909,0.0037947656,0.022235587,0.0050693434,-0.0012419891,0.007039145,-0.019211363,0.014449077,-0.036360227,0.031377785,0.013719091,0.023985235,0.0043045967,-0.0079139685,0.022548439,-0.020856727,-0.012409752,-0.016303008,-0.029940989,-0.0010790459,0.010225589,0.0054430263,0.011841985,-0.019049143,-0.0101966215,0.029917816,0.049685355,-0.009234895,-0.013649569,0.0046116537,-0.0063033663,-0.035525955,0.037032276,-0.00670312,0.0010392154,-0.008904664,-0.04342834,0.0005880438,0.02519029,-0.014715579,-0.01273419,0.034575816,0.00006413624,-0.016917123,-0.004863673,-0.012189598,-0.00031230776,-0.02736866,-0.008435387,-0.00210595,-0.03246697,-0.013568459,0.012154836,0.010961369,-0.0008103707,-0.012027379,0.024332847,0.0071202544,0.038121462,-0.016048092,-0.039650954,0.004382809,-0.050519627,0.034181856,0.019489452,0.015051604,-0.0026519906,-0.016279833,0.010665898,0.0054806843,0.008371659,0.016314594,0.02658074,-0.0009414494,0.006135354,-0.004272732,-0.018099004,0.039488737,0.00095665746,-0.012270708,0.03056669,0.017658696,0.0008849625,-0.008389039,0.006477172,-0.017311083,-0.019443104,0.008134123,-0.0134294145,0.0038845653,0.021482429,0.012108488,-0.009304417,0.042941682,-0.00054133346,-0.023150966,0.0012847164,-0.0016598478,0.015294933,-0.031818096,-0.015827937,0.0002407938,0.013151324,0.05770361,0.013626395,-0.016893947,0.015839525,0.038260505,-0.022849703,-0.013591633,-0.010509472,0.015433977,-0.004000436,-0.005286601,-0.01827281,0.0029445642,-0.020613398,-0.013359892,-0.01763552,-0.018701531,-0.00077923044,0.0027982774,0.026233127,-0.012780539,0.0062396373,0.0062512243,-0.023823015,-0.020161502,0.0015874286,-0.004756492,0.019860238,-0.0005855091,-0.005718219,-0.009066883,0.0037194495,0.0051533496,-0.018875338,0.01273419,0.0002936598,-0.04477244,-0.015213823,0.037032276,0.0016526058,0.024077931,-0.032976802,-0.018423442,0.0064134435,0.019408343,0.0015830834,-0.012676255,-0.029616551,-0.02191115,-0.008354277,-0.02692835,-0.025375683,-0.012328642,0.0030850575,-0.008852522,0.02519029,0.017855676,0.024147455,-0.0025433619,-0.028944502,0.005955754,0.0053010844,-0.014333205,-0.009020534,0.01950104,0.019779129,0.017971545,0.021853214,0.068688154,-0.010833911,0.01396242,0.01846979,-0.010254557,0.00067603315,-0.01704458,0.024610937,0.024031583,-0.016917123,-0.010990336,0.04824856,-0.034274552,-0.008846728,-0.00079588685,-0.004843395,0.010793356,-0.0054893745,-0.040601093,0.014008768,0.00008477571,-0.0011427748,0.008638161,0.047831427,-0.013220847,-0.000988522,0.03874716,0.028295625,-0.04583845,-0.00812833,-0.0042119]},{"id":"guide-channels-3","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channel Permission Overwrites\nUse channel.editPermission() to add or update overwrites (type 0=role, 1=member). Use channel.deletePermission() to remove. Use resolvePermissionsToBitfield() for allow/deny bitfields.\n\n```javascript\nimport { resolvePermissionsToBitfield, PermissionFlags } from '@fluxerjs/core';\n\n// Deny SendMessages for a role (type 0=role, 1=member)\nawait channel.editPermission(roleId, {\n type: 0,\n deny: resolvePermissionsToBitfield(['SendMessages']),\n});\n\n// Allow ViewChannel for a specific member\nawait channel.editPermission(userId, {\n type: 1,\n allow: resolvePermissionsToBitfield([PermissionFlags.ViewChannel]),\n});\n\n// Remove overwrite\nawait channel.deletePermission(roleId);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.004411866,0.0062396787,-0.023440653,0.012635629,-0.0013262108,0.015794536,-0.035071682,0.011764975,-0.003842593,0.012870035,0.060722455,0.01577221,0.013361173,0.036589745,0.009415329,0.011290582,0.033642918,-0.009348356,0.027548349,0.055230644,-0.01551548,0.035741415,0.008176323,0.045809735,-0.08920843,-0.010911066,0.02875387,0.036746014,-0.022279784,0.0012606328,0.05424837,-0.008399568,-0.009404167,0.014064392,-0.032906212,-0.020315234,0.044849783,0.0027542769,-0.025159635,-0.017770248,-0.003435172,0.032928538,0.011497082,-0.015727563,0.014120203,0.05375723,-0.03902311,0.024288982,-0.014421583,-0.015694076,0.0039263093,0.055587836,-0.022078862,0.04442562,0.027972514,0.034937736,-0.01586151,-0.010899904,-0.051837333,0.007322414,-0.0053160056,-0.048131477,-0.012334249,0.0018682759,-0.011078499,0.03480379,-0.08193067,0.019545041,0.034067083,0.06308884,0.016955405,-0.032057885,0.038889162,-0.04665806,0.00006614485,-0.03712553,0.03304016,0.024623848,0.019589689,-0.025405204,-0.009197666,0.03132118,-0.044224698,0.006836857,-0.023596924,0.058356065,-0.00025254514,-0.04060814,0.019053902,-0.08179672,-0.032459725,0.008075863,-0.06741978,0.0018892051,0.013450471,-0.013160253,0.0059271366,0.008550257,-0.0052490323,0.042081553,0.062553056,-0.02267046,-0.06951828,-0.012133329,0.036143254,0.005324377,-0.00982275,0.05773098,-0.012803062,-0.044403296,-0.033665244,-0.012602142,-0.003429591,0.025717746,0.004124439,-0.033776864,0.028999437,-0.0018068837,0.061392188,-0.012624467,-0.08219856,-0.042237826,0.04290756,-0.0057597035,-0.04875656,-0.02594099,-0.02155424,-0.038665917,-0.029512899,-0.034357302,0.06349068,-0.02513731,0.052730307,-0.043354046,-0.028039487,0.040786736,0.031455126,0.0031449543,-0.009577181,-0.04498373,0.008751177,0.02251419,0.038308725,0.004875098,-0.009493465,0.033642918,-0.02281557,-0.030963987,-0.030204957,0.02221281,-0.03103096,-0.0075735636,0.0016896805,0.0042528044,-0.03607628,-0.0077744834,0.03904543,0.02674467,-0.010581781,-0.058043525,0.010252495,-0.0017733971,-0.025405204,-0.06174938,-0.02382017,-0.050140675,0.019187849,0.011999383,-0.029870091,0.023150437,-0.025360554,0.003560747,0.006351301,-0.036835313,0.01017436,-0.010302725,-0.017301435,-0.055275295,0.006474085,0.021487266,-0.0039765392,0.04467119,-0.021900268,-0.006965223,-0.012937008,0.01904274,0.010520388,-0.009197666,-0.01188776,-0.002468245,-0.0030807715,0.02654375,0.012646791,0.011642192,0.0043337303,-0.014745288,0.027994838,0.012133329,0.0053690257,-0.06514269,0.003892823,0.009454397,0.041545767,-0.019578528,-0.019031579,-0.018506953,-0.018830659,-0.014332285,-0.06572313,-0.02317276,0.021766322,0.018551603,0.009699966,-0.018607413,-0.02090683,-0.037036233,-0.034781463,-0.0402956,-0.098495394,-0.01783722,-0.036589745,-0.03183464,0.021074263,-0.00032876214,0.018819496,0.037817586,0.009895304,0.009298126,0.010587362,0.02099613,0.011329649,0.04346567,-0.029423602,-0.04226015,0.027637647,-0.0019826887,-0.011218027,0.0021724463,-0.013405821,-0.03922403,-0.018451143,0.0010290168,-0.004509535,0.0009083253,-0.00068787154,0.019801771,0.012825387,-0.027459051,0.011413366,0.02870922,0.05496275,0.041635066,0.007634956,-0.02402109,-0.010771538,-0.04435865,0.06648216,0.06009737,-0.011575218,0.016787972,0.0042388514,0.004894632,-0.0055280873,-0.023351356,-0.025248934,-0.002724976,0.01803814,0.017591653,-0.015236425,-0.040719762,0.024088062,0.022346757,0.016028943,-0.020438017,-0.020315234,-0.010754795,0.05652546,0.006619194,-0.011296162,-0.0067810463,-0.009482303,-0.016051266,-0.038866837,-0.0022952307,0.008036796,0.016307998,-0.04839937,-0.01818325,0.016084753,0.008734434,-0.018730199,0.010871998,0.011831949,-0.005235079,-0.017435381,0.073447384,0.042483393,-0.019935718,0.048533317,0.036545094,0.0028059022,0.05188198,0.00093413796,-0.000924371,0.036991585,0.008885124,-0.0066024507,-0.009415329,0.033776864,-0.05219452,0.027548349,0.04518465,-0.036812987,-0.015437345,-0.031053284,-0.014912721,0.013283037,0.006155962,0.039357975,0.03192394,-0.014466232,-0.023061138,-0.06291025,-0.065008745,0.0071940483,0.00060415495,0.012736089,0.014912721,0.10153152,-0.014957369,0.025807044,-0.00327332,0.00770751,0.038286403,-0.01868555,0.018908793,-0.02070591,0.10358536,-0.03324108,-0.030606797,0.046300873,-0.026588399,-0.029914739,0.0053662355,-0.012635629,-0.0039960733,-0.016575892,0.00051032257,0.018607413,0.03964819,-0.02075056,0.006161543,-0.061213594,-0.058266766,-0.042528044,0.01022459,0.031410474,-0.05188198,-0.019176688,0.007824713,-0.024981039,-0.00035788855,-0.030517498,0.007696348,0.036946934,-0.021543076,-0.0264991,-0.009448816,-0.016687512,-0.008522352,0.0012857477,-0.019545041,0.00800889,0.010235752,-0.015604778,-0.004417447,-0.011932409,-0.035116334,-0.060052723,0.025963314,0.03192394,0.045497194,0.014522043,-0.037549693,-0.023954116,0.03279459,-0.036634393,0.025717746,-0.019143201,-0.007640537,0.007288927,0.04181366,0.031410474,0.044157725,-0.011123149,0.048979804,0.035540495,0.070188016,0.020683587,-0.0019171106,0.02155424,0.030227281,-0.021543076,0.024824768,-0.008840475,-0.0152141005,-0.0050509027,0.018573927,0.017658627,0.0081316745,0.004799753,0.010129711,0.025561474,0.018808333,0.05853466,-0.03083004,0.044157725,-0.0039263093,0.017759087,-0.0354512,0.0072554406,-0.012501682,0.000087466426,-0.018652063,0.02377552,-0.041835986,0.0026314924,-0.05022997,0.056346867,-0.04991743,-0.05670406,0.00071787,0.03163372,-0.009298126,0.018797172,0.017446544,0.022134675,-0.047774285,-0.019288309,-0.017435381,-0.019545041,-0.012256113,0.010386442,-0.005360654,0.0015389905,0.008472122,-0.009794844,-0.029021762,0.011675678,0.013182577,-0.036187906,-0.033218756,0.0035551658,0.033575945,-0.042751286,-0.028843166,0.0013806266,0.0669733,-0.016508918,0.024266658,-0.05139084,0.002810088,0.04040722,0.021777483,-0.0076070502,0.0038760796,-0.01022459,0.013629066,-0.040317923,-0.024668498,0.04085371,0.019533878,0.03283924,0.021643536,-0.0133834975,-0.045720436,-0.01758049,-0.06250841,0.008444216,0.020482667,0.040273275,0.00036521375,-0.0026356783,0.008723272,-0.0032454142,0.08054655,0.047684986,-0.0063345577,-0.055319943,0.0055029723,-0.024936391,0.008712109,-0.011363136,-0.009292545,0.042394098,-0.05514135,0.012490519,0.0019659454,0.059963424,-0.0060666646,0.037594344,-0.041724365,-0.0042639663,-0.006250841,-0.02297184,-0.013651391,0.0083604995,-0.0472385,-0.013573254,0.0362772,-0.017189812,0.0040853713,0.009041395,-0.00074926374,-0.008198648,0.0049839295,-0.022056539,0.022112349,-0.00448163,-0.0063792067,0.008661879,0.029334303,0.008181904,0.032749943,-0.00927022,0.019533878,-0.0034435436,-0.017000055,-0.007930755,-0.005712264,0.022994164,-0.025405204,-0.00014728893,0.0075679827,-0.00045904613,0.011095243,-0.027101861,0.032973185,0.006914993,0.0091865035,-0.0029747307,0.006931736,-0.04080906,0.03949192,-0.0068256953,0.0010492483,-0.0023203457,0.026677696,0.013785337,0.017770248,0.01077712,-0.06273165,-0.03922403,0.023864819,-0.016564729,0.051435493,-0.01425415,-0.034245677,-0.03310713,-0.04109928,0.016453106,-0.0041272296,-0.0024445252,-0.010029251,-0.04159042,-0.02790554,-0.011497082,0.011943571,0.022748597,-0.032816917,0.0029524062,0.027793918,0.018149763,0.030160308,0.028954789,0.027347429,-0.026789319,0.033218756,-0.0067810463,-0.021074263,0.00025271956,-0.07210792,0.06130289,0.0029579874,-0.017323758,-0.023931792,-0.025092661,-0.010994783,-0.029579872,0.021018453,0.015604778,0.017413057,-0.0017259576,-0.012233789,-0.030450525,0.02030407,0.0008699552,0.029423602,-0.016553566,-0.017000055,-0.001601778,0.012278438,-0.016464269,0.0029747307,-0.028195757,0.0071382374,0.026007963,-0.04438097,-0.010403185,0.024713146,0.010765958,-0.02321741,-0.017770248,0.0028938046,-0.0038258496,0.009393005,0.037795264,0.017547004,0.049470942,0.053221446,0.015359209,-0.001999432,0.010352955,0.01843998,-0.029021762,0.017234461,0.016955405,-0.020873344,0.026275856,-0.022168161,0.027079536,-0.037304126,0.045452543,0.016084753,-0.030227281,-0.03576374,0.029289655,-0.007032196,-0.00060624786,-0.018573927,0.035495847,-0.03585304,0.03400011,-0.015258749,-0.020359881,-0.047774285,0.005748541,0.017212138,-0.018596252,-0.030919338,-0.022648137,-0.0018013027,-0.009286963,-0.0037058557,0.018652063,-0.021877943,-0.019377608,0.0353619,-0.021464942,0.00007303403,-0.019310635,0.008980003,-0.0038760796,0.005486229,0.021743996,-0.043041505,-0.052730307,-0.026655372,-0.010179941,0.0017399105,-0.040362574,0.0054834387,0.0052908906,-0.0016645654,-0.001370162,-0.003747714,0.02806181,-0.023462977,0.0100739,0.035317253,0.025003364,0.009945534,-0.008332594,-0.008673042,-0.0047467323,-0.03219183,-0.022849057,0.005435999,0.0035970241,-0.03616558,-0.0031672788,0.03596466,0.012177978,-0.049158398,-0.007227535,0.042751286,0.03757202,-0.0072052106,0.027325105,-0.032705292,-0.010313888,0.021397969,-0.018216737,-0.010313888,-0.0047885906,-0.017323758,0.019701311,0.0131156035,0.0152141005,-0.020717073,-0.030651445,-0.0028993855,0.015403858,-0.011273839,0.03408941,0.008583744,-0.021989565,-0.012099843,0.037616666,0.0075065903,-0.0009229757,0.0068424386,-0.015627103,0.0054443707,-0.016587052,-0.006669424,0.013885797,0.074920796,-0.019779447,0.0046127858,-0.03299551,-0.00024923135,0.025159635,0.010732471,-0.040563494,0.010592943,-0.019678988,0.012032869,-0.02931198,0.008187486,-0.006139219,0.013260713,0.021755159,-0.023061138,-0.004146763,-0.023462977,-0.033620596,-0.007484266,-0.014109041,0.04065279,-0.045698114,0.005837839,-0.02095148,0.0049336995,-0.012099843,-0.033017837,-0.052149873,-0.04982813,-0.0005591573,0.030048685,-0.029981712,0.06549989,-0.021833295,-0.0074117114,-0.06692865,-0.0023663898,-0.04357729,-0.021889105,0.025025688,0.030539824,-0.015013181,0.023686223,0.0021794226,0.0025296372,-0.0031840221,-0.007394968,-0.005293681,-0.033575945,-0.017223299,-0.04462654,-0.00901349,0.022101188,-0.01208868,-0.036522772,-0.02050499,-0.0026468404,-0.008974422,-0.048488665,-0.05433767,-0.029445926,-0.040273275,0.019891068,-0.0060220156,0.024713146,-0.013483957,0.012445871,0.0014343448,-0.07759973,0.022357918,0.017000055,-0.030963987,0.001752468,-0.037214827,0.013662552,0.03308481,0.03768364,-0.027235808,0.010743633,-0.016910758,-0.0024794072,0.0019031578,0.035094008,-0.014332285,0.023485303,0.0034268002,0.024043413,0.008572582,0.002136169,-0.028597597,-0.04185831,0.018105114,0.013428146,0.018931119,0.026409803,-0.024155036,0.021230536,-0.013740688,-0.0078582,0.060231317,0.010408767,0.021777483,-0.005606223,0.028374353,0.025427528,-0.0016966568,-0.016698675,-0.062017273,-0.017200975,-0.0142987985,-0.008661879,-0.032615997,0.012914684,-0.01808279,-0.013740688,-0.03259367,0.0099622775,-0.01465599,-0.005399722,-0.012546331,0.00008367302,0.0093148695,0.024088062,-0.003404476,-0.0002445223,0.0569273,0.007992147,-0.0037002745,0.026766995,0.033575945,0.057373792,0.019399932,0.006088989,-0.03118723,-0.02080637,-0.03455822,-0.015481994,0.00047020835,0.02361925,0.010877579,0.013829986,0.07978752,-0.0017747923,0.0033961043,0.011218027,-0.011117567,-0.008477703,0.011552894,0.0017008426,0.032057885,0.03388849,0.030562147,0.026231207,0.020538477,-0.046925955,0.006820114,-0.0062731653,-0.005681568,0.05938299,-0.017569328,-0.00065891957,-0.044001456,0.025003364,0.0007143818,-0.016330322,-0.0071438183,-0.0058322577,-0.013450471,-0.004579299,0.011139892,-0.0070656827,-0.0372818,0.0052546132,0.027860891,-0.011932409,0.000108221175,0.00005524425,0.010648754,0.0035495847,0.035719093,-0.0373711,-0.019031579,-0.03471449,-0.016397296,0.0054890197,0.00018522302,0.024757795,0.010129711,-0.0014029511,-0.019545041,-0.011865436,-0.015950806,-0.0039821207,0.040630467,0.008561419,-0.017613977,-0.019031579,-0.025650773,-0.01581686,0.0255838,0.022112349,0.026231207,0.011296162,-0.029021762,0.034535896,0.037505046,-0.039759815,0.015013181,-0.011474758,0.010336212,0.015504318,0.03821943,-0.02050499,0.04397913,0.027526025,0.016486593,-0.0012159839,-0.010185522,0.025851693,0.0038258496,0.027146509,0.0122895995,-0.017591653,0.022860218,0.0063233953,0.05344469,-0.010040414,-0.010503645,-0.007930755,0.03817478,0.02638748,0.02044918,0.013774174,0.01587267,-0.012457033,-0.01218914,0.030495174,0.012111004,-0.011391042,-0.017189812,-0.0033709893,0.03451357,-0.009934372,0.02835203,0.040228628,0.0033933136,-0.009789264,-0.013137928,0.009794844,0.00011284303,0.0063345577,-0.013718364,0.02261465,-0.023507627,-0.0027710202,0.0046211574,0.008198648,-0.02674467,0.0011671492,0.034223355,0.049292345,0.0142987985,-0.009850656,-0.036031634,-0.021185886,-0.02654375,-0.0131156035,-0.017011218,0.02171051,-0.008516771,0.013963932,0.0043086153,-0.005363445,0.011273839,0.008070283,0.011575218,-0.011452434,0.05612362,0.03853197,0.024534551,-0.03491541,0.001792931,0.003203556,-0.017457705,0.018618576,-0.013696039,0.009794844,0.028039487,-0.0055922703,-0.022067701,-0.020772884,0.022324432,-0.035183307,-0.030026361,-0.008901867,-0.011709165,-0.014868071,0.01591732,0.009125112,0.008120513,-0.019578528,-0.004911375,0.0061894488,-0.011123149,-0.0037198085,-0.007701929,-0.007992147,0.03953657,0.00034271492,0.041255552,-0.024222009,-0.038777538,-0.0009857632,0.0032426238,-0.015493155,0.02578472,-0.006055502,-0.005260194,-0.027771594,0.013763012,-0.009080463,-0.010414348,0.024646172,0.034134056,0.006808952,-0.0051653157,0.03288389,-0.012222626,0.022090025,0.012657953,-0.02594099,-0.0042500137,-0.0093148695,-0.002865899,0.011865436,-0.002186399,0.054426964,-0.00124668,0.02770462,0.019388769,-0.017692113,0.013137928,-0.0065298965,-0.011954733,-0.028017161,0.027883215,-0.023909466,-0.007863781,-0.0019980366,0.009437653,-0.017256785,0.012546331,-0.021397969,0.023284383,0.017145164,0.021464942,-0.013651391,0.006619194,0.014544368,-0.0046127858,0.008349338,-0.028575273,0.031164907,-0.023284383,-0.013606741,0.005357864,-0.006814533,-0.009286963,-0.0073056705,0.007082426,-0.019991528,-0.002084544,-0.021855619,0.015582453,-0.0046267384,0.0021166352,0.01531456,0.014365772,-0.00053683284,0.0037365519,0.038576618,-0.036187906,0.02069475,-0.004347683,-0.036120933,-0.030651445,0.016799135,0.0022547676,-0.0033179687,-0.012858873,0.009789264,0.04871191,-0.03192394,-0.0117873,0.026588399,0.0044760485,-0.011619867,-0.031298853,0.02135332,-0.0060499213,-0.014365772,-0.044113077,-0.02341833,-0.010950134,0.000032723605,0.036388826,0.012323086,-0.012713764,-0.027950188,-0.020058502,0.023351356,0.057864927,0.02513731,-0.015604778,-0.0045960424,-0.04297453,-0.02770462,0.007071264,0.055275295,0.0024905694,0.005645291,0.005988529,0.018875306,0.039960735,0.016866108,0.0054890197,-0.008790245,0.0068256953,-0.015828023,0.026633047,0.020225935,0.024847092,0.020583127,0.011675678,-0.015147127,-0.0059494614,0.009856237,0.024065739,0.006769884,0.012814224,-0.024646172,-0.008120513,0.0025701001,-0.0030305416,0.006451761,-0.050810408,0.016598215,0.0101408735,-0.009778101,0.010079481,0.027369754,-0.02181097,-0.05139084,0.010068319,0.02931198,0.014376935,0.014276475,0.0071382374,-0.034870762,-0.039291,0.011999383,-0.0007049637,0.0016213119,-0.0012962123,-0.020940317,-0.033977784,-0.027950188,-0.008611649,-0.03098631,0.017312597,0.02569542,-0.021677023,-0.017178651,0.028441327,0.014812261,-0.013919284,-0.0132941995,0.006786627,-0.017904194,0.03087469,-0.0111957025,0.021063102,-0.0124681955,0.013640228,0.02261465,-0.00046776663,0.024847092,-0.008851637,-0.0070154527,0.011497082,0.00068403454,-0.0063345577,-0.00045904613,0.0048081246,0.02201189,-0.03757202,-0.013137928,0.0031337922,0.005645291,-0.020828696,0.024489902,0.0013617903,0.0028142738,0.027034888,-0.0034240098,-0.046479467,-0.017290272,-0.027927864,-0.0064852475,0.027079536,0.00041404844,0.0077912267,-0.0003784689,-0.00082391105,-0.0030054266,-0.021397969,0.005670406,-0.002120821,-0.016732162,-0.0014001605,-0.0015989875,0.012099843,0.017859546,0.0022994166,0.0026510262,0.02161005,0.0026384688,-0.0026566074,0.0025324277,-0.042595018,-0.025248934,0.014946207,-0.015995456,0.014533205,-0.010749214,0.011346392,0.025807044,0.019221336,0.032415077,0.04310848,0.016486593,-0.009353937,-0.0074619413,-0.0019687358,0.02317276,-0.0010436672,0.008700947,0.002080358,-0.004043513,0.012814224,0.01768095,-0.010079481,-0.016676351,-0.0144773945,0.0038370118,-0.035540495,0.028128784,-0.007919592,-0.030204957,0.0058155144,0.007590307,-0.0070601017,-0.011776138,-0.0069708037,-0.0028477605,0.0073559005,0.040742088,0.02654375,-0.00468534,-0.011530569,0.007612631,-0.033352703,0.007171724,0.005656453,0.026655372,-0.029088736,0.011698002,-0.010927809,0.034647517,-0.02382017,-0.00036207438,-0.0127472505,-0.032615997,0.0067531406,-0.00009801821,-0.004916956,0.012166816,0.040675115,-0.017759087,0.017747924,-0.011452434,0.00044300046,0.03667904,-0.017547004,0.038063157,-0.011820787,-0.04045187,-0.014856909,-0.030182632,0.012814224,-0.005555993,-0.002105473,0.004272338,0.033977784,0.0090693,-0.0040407223,0.034468923,0.028441327,-0.015939644,-0.0062452597,-0.014120203,-0.019857582,0.011898923,-0.019980367,0.026454452,0.031789992,-0.0038118968,0.0075289146,-0.021889105,0.0015822442,0.008137256,-0.007171724,-0.016129402,-0.03496006,-0.0050788084,0.012122166,0.008287946,-0.01898693,0.0018919957,0.015749887,0.045765087,0.006033178,-0.0042025745,-0.004869517,0.024065739,0.013428146,-0.02377552,0.009543695,-0.031142583,0.0013583022,-0.009465559,-0.036433473,0.0062787463,0.037996184,-0.0066359374,-0.011223609,0.033218756,-0.030093335,0.0030807715,0.025851693,-0.013405821,-0.0067363973,-0.0046267384,-0.020058502,-0.0068982495,-0.0055727363,-0.047372445,-0.0016450316,0.00382864,-0.004459305,-0.030852364,0.0072163725,0.01591732,-0.0028770613,0.006669424,-0.046613414,-0.0073056705,-0.0061280564,-0.012870035,-0.0029775212,-0.0077465777,-0.03873289,-0.009577181,-0.0264991,-0.010146454,0.0047858004,0.008165161,0.06237446,0.01798233,0.018752523,0.012881197,-0.029914739,0.065410584,0.019031579,0.0015068991,0.0035802808,0.012144491,-0.0059996913,0.0014287636,-0.0063624633,-0.015705237,0.01894228,0.017915357,-0.030941663,0.038063157,-0.0076796045,-0.0012683067,-0.010157617,-0.014365772,0.017535841,0.021141237,0.0113742985,0.012177978,0.011675678,-0.021163562,-0.016185213,0.003842593,0.0061782864,0.037661318,0.013930446,-0.021621212,-0.016241025,0.03904543,-0.0092255715,-0.03933565,-0.025248934,0.02966917,-0.023038814,-0.018071627,0.0021487265,0.011608705,-0.0015989875,-0.013405821,-0.0038118968,-0.0043002437,-0.01577221,-0.0034268002,0.0017775829,0.0005518321,0.009443235,0.027972514,-0.042237826,-0.00634572,-0.017468868,0.0027989256,-0.028173434,0.02044918,-0.02100729,0.016497755,0.0053913505,0.0012948171,0.0038649172,0.06447296,0.006100151,-0.03212486,-0.012032869,0.046970606,0.02654375,0.00016717163,-0.029646846,0.020058502,-0.0100515755,0.01002367,-0.013573254,-0.005656453,-0.0014210896,-0.03083004,-0.010531551,-0.03283924,-0.014064392,-0.0010255286,-0.0072554406,0.02281557,0.01395277,-0.0144773945,0.006820114,0.015236425,0.016654026,0.017011218,-0.009632993,-0.008712109,-0.020661263,0.005117876,0.015281074,0.04603298,0.012557493,0.04880121,-0.017067028,0.026789319,0.008075863,0.010230171,0.0077912267,0.017167488,0.0028770613,0.019355282,-0.018953443,-0.020761723,0.03248205,-0.027771594,0.02125286,0.0014496928,-0.03283924,0.0031393731,-0.0012201697,-0.018462306,0.025092661,-0.0054527423,-0.00533833,-0.0015627103,0.0413895,0.0038063156,-0.016352646,-0.011809625,0.026811643,-0.027302781,-0.012200302,-0.013428146]},{"id":"guide-channels-4","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Roles — Quick Reference\nCreate roles with guild.createRole(), fetch with guild.fetchRoles() or guild.fetchRole(roleId). Add/remove with guild.addRoleToMember() / guild.removeRoleFromMember(). Reorder with guild.setRolePositions().\n\n```javascript\n// See the Roles guide for full examples and permission bitfields.\nconst role = await guild.createRole({ name: 'Mod', permissions: ['KickMembers', 'BanMembers'] });\nawait guild.addRoleToMember(userId, role.id);\nawait guild.removeRoleFromMember(userId, role.id);\nawait guild.setRolePositions([{ id: role.id, position: 5 }]);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.013526746,0.02232472,-0.014689376,0.002568405,-0.0014204481,0.008373167,-0.032911357,0.02026776,0.018680325,0.02347617,0.0418323,-0.01629917,0.046549894,-0.020312477,0.054196417,-0.010513971,-0.042972572,-0.016131483,0.008775616,0.049456466,0.012308221,0.022783065,0.005044582,0.06653818,-0.06045673,0.0069142915,0.00006061184,0.04695234,-0.030295439,-0.031413354,0.09444128,-0.01606441,-0.000086245236,0.0051116566,-0.008244608,-0.031279203,0.027321791,0.02975884,-0.005497337,0.021486286,-0.006791321,0.029490544,0.027836032,-0.024549367,-0.010407769,0.055537913,-0.013493209,0.023900978,0.007126695,0.034297567,-0.0143316435,0.030474305,-0.014622301,0.07981898,0.013068402,-0.0017942502,-0.04619216,-0.008965662,-0.03543784,0.027388867,-0.030362515,-0.0747213,0.009027147,0.020390732,0.013537926,0.0035857058,-0.08598986,0.005913759,0.013068402,0.031167412,0.01887037,-0.057416007,0.02309608,-0.023789186,0.010234493,-0.025980296,0.0011444633,0.025063608,0.020480165,-0.029132811,-0.009781738,0.019664088,-0.04838327,-0.014365181,0.0031776675,0.015505452,0.012654774,-0.017629487,0.011861056,-0.05263134,-0.024482293,-0.02116209,-0.08518496,0.0009488286,0.020446626,-0.025220115,0.03326909,0.015740214,-0.013772687,0.045767356,0.08004256,-0.01591908,-0.0842012,-0.011480966,0.042279467,-0.005595154,-0.03673462,0.07087568,-0.031100336,-0.007775084,-0.06703006,0.021016764,0.0106369415,0.0031664884,-0.0033202013,0.040714387,0.060099,-0.031614576,0.046371028,-0.02772424,-0.07659939,-0.031502787,0.040423732,-0.05057438,-0.02656161,-0.013795045,-0.032687772,-0.037159424,-0.04429171,0.01822198,0.018344952,-0.0032307683,0.042547766,-0.008021025,-0.018043114,0.016410962,0.0041642254,-0.024929458,-0.02528719,-0.010620173,0.005919349,0.008322862,0.031234486,0.031905234,-0.03863507,0.007026083,-0.05017193,0.0014295311,-0.06474952,0.015326586,-0.05880222,-0.0031636935,0.0049579437,-0.012073459,-0.04491774,-0.032285325,-0.018389668,-0.01052515,-0.03633217,-0.061753508,-0.0065397904,-0.05406227,0.008697363,-0.009451954,-0.0064000515,-0.07190416,-0.009658768,0.032777205,-0.047131207,0.047041774,0.0100947535,-0.0126659535,-0.013918016,-0.0025139067,0.009161296,0.01811019,-0.021072658,-0.060590878,-0.002368578,0.00021904106,0.00487969,0.017159963,-0.029199885,-0.02631567,-0.01926164,0.02553313,-0.0071546426,-0.048830435,-0.0065397904,0.003130156,-0.018814474,0.017685382,-0.014320465,0.026159162,0.03977534,0.0017523285,0.04169815,0.022615379,0.02568964,-0.047801957,0.024236351,0.004672876,0.025711996,-0.024996532,-0.009815276,-0.023163155,-0.036041513,-0.011022622,-0.044001054,-0.008015435,0.015002391,-0.02555549,-0.011570399,-0.016377425,-0.053302087,0.022816602,-0.0990918,0.01552781,-0.046236876,-0.01898216,-0.054151703,-0.002233031,0.026069729,-0.013124297,-0.0024817667,0.02966941,0.017797174,-0.0019283998,0.048606854,0.010569867,0.020055357,0.024079844,-0.010055627,-0.05365982,0.001778879,0.021732228,-0.01193931,0.077225424,-0.025890863,-0.06278199,-0.009435185,-0.022984289,-0.020346016,-0.027254717,0.021083837,-0.020826718,0.02001064,-0.00017083107,0.012341758,0.022436513,0.07731485,0.035996795,0.028730363,0.0074005835,0.0055392585,-0.013571463,0.036153305,0.031748727,-0.00095162337,0.03733829,0.0035745266,-0.015371302,0.009943835,0.00045065864,-0.03943997,0.043442097,-0.022861319,0.009714663,-0.012341758,-0.035258975,0.005751662,-0.025354264,0.03454351,-0.05146871,-0.0066180443,0.0049104323,0.021989347,0.0044241403,-0.0013393994,-0.0426372,-0.019988284,-0.017025813,0.010156238,0.004250864,-0.0058690426,0.025779072,-0.015963797,-0.028081972,0.008680594,0.022794245,-0.019093953,-0.008932124,-0.009798506,-0.028797437,0.031279203,0.017405905,0.035773214,0.0023979233,0.031525142,0.034901243,-0.027277075,0.060903896,-0.000026790609,-0.019295176,0.017472979,-0.021206807,-0.027277075,-0.02926696,0.033693895,-0.056655828,0.05133456,0.0636316,0.013124297,-0.013962733,-0.03850092,-0.04326323,0.022615379,0.037494797,0.032911357,0.04838327,0.01579611,-0.017372366,0.005491747,-0.022704812,0.013034864,-0.03297843,0.0033705074,-0.03566142,0.0226042,0.0011297908,0.04932232,-0.047399506,-0.0058969907,0.034208134,0.003719855,0.01939579,0.0016810616,0.06448121,0.01577375,-0.029356394,0.020603135,0.015371302,-0.027679523,-0.008736489,-0.029445827,0.016723977,0.0043067597,0.008244608,0.007534733,0.036913484,-0.01604205,0.03648868,-0.009614051,-0.05079796,-0.019865312,-0.019015698,0.044336427,-0.028953945,0.030384872,0.025242474,-0.05638753,-0.023587963,-0.02272717,-0.0011095286,0.042212393,-0.0003399154,0.0029177526,-0.021743406,-0.011419481,0.0008880421,-0.013191372,0.018479101,-0.056924127,0.0046644914,0.002189712,-0.02116209,-0.0016824589,-0.0022162623,-0.022984289,0.0406026,0.028171405,-0.002664825,0.030228365,-0.03570614,-0.00018812378,-0.0032531265,-0.013605,0.01565078,-0.021855198,-0.026472177,0.00590817,0.022626556,0.011626294,0.021150913,0.023945695,0.0041642254,0.059472967,0.04234654,0.011514503,-0.026360387,0.044873025,0.041250985,0.004225711,0.0058634533,-0.01269949,-0.010860524,-0.02761245,-0.00060926256,0.0045778533,-0.020480165,0.025376623,0.020804359,0.027947823,0.021553362,0.033157296,-0.041116837,0.018400846,-0.019485222,0.012766565,-0.0023168745,-0.028998662,-0.045007173,0.01257652,-0.016500395,0.024884742,-0.02940111,0.009194834,-0.017551232,0.021653973,-0.01553899,-0.08214424,0.034208134,0.016768694,-0.022984289,0.02119563,-0.0056538447,0.0073894043,-0.042413615,0.022548303,0.02157572,-0.022000527,-0.016768694,-0.022894856,0.016265633,0.01733883,0.0019912825,0.013437313,-0.08160764,0.010882882,-0.0062323646,-0.020569598,0.001395295,0.002196699,0.035147183,-0.019529939,-0.013616179,0.004329118,0.051558144,-0.05379397,0.004597417,-0.023677396,0.019943567,0.03416342,0.024102202,-0.018456742,0.02477295,-0.014197494,0.0031497197,-0.023587963,-0.016735157,0.0338504,0.015237153,0.024146918,0.019071594,-0.004197763,-0.015673138,0.000636861,-0.031480428,0.0023476172,0.05316794,0.02926696,0.004994276,-0.009871171,-0.0067969104,0.01771892,0.061753508,0.029222244,0.0022456076,-0.0007490016,0.0019367841,-0.037830174,0.018434385,0.04301729,-0.008960072,0.014432256,-0.045230757,0.026740476,-0.013448493,0.0111511815,0.016567469,0.014029807,-0.053838685,-0.03275485,0.026293311,-0.002175738,-0.0032447423,0.018400846,-0.016265633,0.018534996,0.061753508,-0.04532019,-0.009982962,0.0029345213,-0.02374447,-0.006070267,-0.011715727,-0.05696884,-0.0023783597,-0.0040328708,0.012464729,-0.012889536,0.04789139,0.024705876,-0.002365783,0.012252325,0.033939835,0.011905773,-0.003993744,0.02593558,-0.015103003,0.025913222,-0.02452701,0.026114445,0.028529137,-0.023386737,0.006098215,-0.0033928656,0.013336701,0.017159963,-0.040379014,-0.013929195,0.03300079,-0.03774074,0.017282933,-0.010737553,0.0111232335,-0.0021408033,0.02103912,0.022749528,0.029311677,0.03248655,-0.062960856,-0.017663024,-0.0051144515,-0.001572065,0.0057293037,-0.008954482,-0.04259248,0.0025055222,-0.025063608,-0.0032531265,-0.00654538,-0.006092625,-0.016254453,-0.051692292,-0.040379014,0.01578493,0.01693638,0.00093695073,-0.04082618,-0.006852806,0.000603673,0.037226498,0.014734092,0.025197757,0.0056398707,-0.042212393,0.01823316,-0.011100875,-0.016444499,-0.008311682,-0.06863985,0.031346276,-0.013593821,-0.020994404,-0.034364644,-0.032777205,-0.022268826,-0.015304227,0.030250723,0.022738349,0.011492144,-0.0008237621,0.002040191,-0.02991535,0.006433589,-0.014063344,0.021754585,-0.027768956,-0.014108061,-0.007394994,0.0006710971,-0.0695789,0.007121105,-0.026092088,-0.032933716,0.019675268,-0.017551232,-0.010955547,0.023766829,0.047712523,-0.0021533798,-0.009435185,-0.019149847,0.0063050287,-0.016489215,0.018054293,0.009792917,0.020457806,0.033202015,-0.0017872633,-0.007020493,0.016914023,0.0318158,0.008932124,0.018456742,0.001714599,0.0026885807,0.0063329767,-0.04348681,-0.00023528573,-0.02940111,0.010117112,-0.002157572,-0.02156454,-0.04496246,-0.009362521,0.008909766,0.020614315,-0.0070428513,0.04223475,-0.019775879,0.0024747797,-0.012911894,0.014018628,0.010363053,0.026405104,0.0012164289,-0.0111511815,-0.017394725,-0.04941175,-0.001354072,-0.0020988814,-0.033425596,0.027523017,-0.04355389,-0.026025012,0.037204143,-0.01694756,-0.014231032,-0.05638753,-0.0151477195,-0.010200955,0.01604205,0.039350536,-0.022011705,-0.026539253,0.009932656,-0.024549367,0.014901779,-0.03541548,0.009340162,-0.0023560014,-0.0003531906,-0.0018585302,-0.005134015,-0.012822461,-0.014074524,0.0102456715,0.035885006,-0.008266966,0.0037142658,-0.030183649,-0.009748201,0.003686318,-0.024437577,0.014029807,-0.0037002917,0.0210503,-0.023252588,0.015885543,0.015550168,-0.00055651105,-0.018322593,-0.031771086,0.027053492,0.033783328,0.005441441,0.004899253,-0.05880222,-0.0074508893,0.02658397,0.00912217,-0.02566728,0.0041949684,-0.0035242205,-0.009206013,0.042257108,-0.006455947,-0.012263505,-0.048562136,0.00340125,-0.02452701,-0.01437636,-0.0006864684,0.017405905,-0.03758423,-0.038411487,0.02169869,-0.01167101,-0.004572264,0.045364905,-0.009686715,-0.014801167,-0.03092147,0.011984026,-0.014175136,0.016377425,-0.008613519,-0.00069205795,-0.01964173,0.0015832442,0.04632631,0.02580143,-0.02631567,0.028216122,-0.018903907,0.022559483,-0.0029792378,-0.010614583,0.0020709336,0.008048973,0.015751394,-0.009211603,-0.00097118685,-0.002483164,0.00019720683,-0.002575392,-0.0067074774,0.011112055,-0.022302363,0.0059249382,-0.04107212,-0.009535797,-0.0061541107,-0.044269353,-0.02671812,-0.020882614,0.0026676196,0.055627346,-0.008143996,0.016723977,0.0055169,0.029334035,-0.034387,-0.019529939,-0.015203616,-0.0012457742,0.0044437037,0.0052569853,-0.025108324,0.003993744,0.015471915,-0.0077415467,0.004485626,-0.018076653,-0.01219643,0.008143996,-0.004876895,-0.028931586,-0.014096882,0.016142663,0.0029401109,-0.01013947,0.00020681389,-0.0067074774,0.009301036,-0.020636672,-0.0080881,-0.0452084,-0.05442,0.025331907,-0.0107599115,0.02848442,-0.04350917,-0.036935844,-0.0203013,-0.07713599,0.0024035128,0.03528133,-0.006427999,0.0015944233,-0.014834705,0.006226775,0.00743971,-0.0029065735,-0.028394988,0.007791853,-0.020111253,0.013895658,0.0014302299,0.03941761,0.0029429058,0.010603404,0.0032279736,0.020234223,0.0040133074,0.024929458,-0.015315407,-0.022861319,-0.011341226,0.0073279194,-0.0020387936,0.025130682,-0.023968052,0.04069203,-0.004161431,-0.0012639402,0.04672876,-0.009904709,0.030899113,-0.047533657,0.046281595,0.029803557,0.022157034,0.026136804,-0.073022075,0.0002876879,0.015583706,-0.017819531,-0.039730623,0.009748201,-0.017931323,0.0036108587,0.0034934778,0.0037142658,0.03212882,0.011145592,0.018848011,0.03351503,0.04053552,0.011648652,-0.007931592,-0.028730363,0.03590736,-0.023900978,-0.028014898,0.06653818,0.009166886,0.00897684,0.0043598604,0.013403776,-0.0300495,-0.008009846,-0.021866377,-0.022525946,0.036376886,0.008166354,0.027880749,-0.0047930516,0.039752983,-0.007612987,0.016612185,-0.019071594,-0.011480966,-0.027679523,-0.010905241,-0.036041513,0.012587699,0.017484158,-0.0051116566,0.031122696,-0.026405104,-0.045767356,-0.0023015032,-0.0007392199,-0.0063050287,0.03738301,0.006919881,0.010357463,-0.01103939,0.014566406,0.007355867,-0.012397654,-0.018412026,0.013750329,-0.04469416,-0.010290388,0.004393398,-0.006573328,-0.03821026,0.008032205,0.017394725,0.0018711067,0.0053575975,-0.014398718,-0.011374764,-0.0010033268,0.03092147,-0.025041249,-0.046281595,-0.057952605,-0.022559483,0.014365181,0.029244602,0.01629917,-0.0009488286,-0.010363053,-0.005992013,-0.0047706934,0.010424538,0.008188712,0.03706999,-0.013772687,-0.0047958465,-0.007769495,0.008870639,-0.026494537,0.007920413,0.017148783,0.02837263,0.0075906287,-0.017450621,-0.0038595942,0.025220115,-0.05428585,0.021631615,-0.0028073587,0.02323023,-0.032195892,0.024951816,-0.008032205,0.025063608,0.026270954,0.026338028,0.007691241,-0.01438754,0.026226237,0.0032335632,0.019351073,-0.006260312,-0.004737156,0.028551497,-0.019608192,0.04084854,0.030764963,-0.018814474,0.0023979233,0.040647313,0.057326574,0.020603135,-0.015035928,0.014957675,0.019697625,-0.009289856,-0.007685651,-0.016869307,-0.027008776,0.018479101,0.0064391783,0.052944355,-0.0011311881,0.024482293,0.057684306,-0.0062826704,-0.03067553,0.042681914,-0.008960072,0.022939572,-0.0049327905,0.008395526,0.033738613,-0.027053492,0.004337502,-0.051423993,0.029825917,-0.03311258,0.0023448223,0.003169283,0.03179344,0.007909234,0.00821666,-0.023006648,0.005746072,-0.04375511,0.008048973,-0.0008041986,0.015304227,-0.041608717,0.00020262171,0.033067863,-0.017785994,-0.0038176726,-0.007545912,0.021676332,-0.014231032,0.044246994,0.018143727,0.03130156,0.010128291,0.015416019,0.017730098,-0.013660896,-0.019283997,-0.014834705,0.003976975,-0.0062155956,-0.018814474,-0.02361032,-0.02412456,-0.00021362618,-0.017808354,-0.037941962,-0.021027941,-0.00082446076,-0.056521676,0.007981898,0.0318158,0.027098209,-0.008406705,-0.011961668,0.024281068,-0.03706999,0.031771086,0.024795309,-0.012520624,0.02363268,-0.009021557,0.04505189,-0.012095817,-0.03990949,-0.0006742412,0.007216128,-0.0013086568,0.0300495,0.023118438,-0.0018990545,-0.023677396,0.015136541,-0.002861857,-0.02001064,0.022045244,0.022525946,0.01721586,-0.010592225,0.032531265,-0.0034962727,0.01618738,0.010581045,-0.01911631,0.0012199224,-0.006455947,-0.011704548,0.016220916,-0.016232096,0.022402974,0.014700555,0.020659031,0.006405641,-0.0025963527,0.01438754,-0.00885387,-0.015483093,-0.029065736,-0.0017858659,0.00693106,0.013236089,-0.017920144,0.006942239,-0.041564003,0.04299493,-0.022134677,0.0019703214,-0.01013947,0.012990148,0.018065473,-0.0058802217,0.020200687,0.026762836,-0.014108061,-0.033783328,0.016858127,-0.03186052,-0.014991212,-0.02745594,0.028081972,0.0110002635,-0.00693106,-0.0341187,-0.02207878,0.014219852,-0.0074508893,-0.0024705876,0.037651308,-0.020189507,0.031279203,0.0090942215,0.011615115,0.0054749786,0.030586097,-0.0133925965,0.0010207943,-0.00077834685,-0.021106197,-0.011117644,-0.0063050287,-0.026047371,-0.010933189,-0.017573591,0.011760443,0.01437636,-0.032419473,0.004820999,0.011357995,0.0042536585,0.015035928,-0.02940111,0.009440774,-0.017003456,-0.015550168,-0.026248595,-0.012934253,-0.04632631,-0.018501459,0.04838327,0.018344952,-0.004351476,-0.006187648,0.011112055,0.0025711998,0.03644396,0.0044381144,0.007870107,0.045096606,-0.031145053,-0.015259511,0.02157572,0.06474952,0.017595949,-0.014789988,-0.00097118685,0.048830435,0.03863507,0.016578648,-0.025957938,-0.00770242,-0.01257652,-0.011374764,0.010223313,0.022559483,0.02439286,-0.015348944,0.0034739145,-0.017551232,0.026405104,0.037941962,0.0020038588,0.017227039,0.0051423996,0.012498266,0.01476763,-0.00911099,-0.010161828,0.015438377,-0.04838327,0.006869575,0.01015065,-0.010592225,0.0055504376,-0.0048321784,-0.009138938,-0.053078506,0.02991535,0.01950758,0.0032503319,0.0021408033,0.00859675,-0.000083930805,-0.019049237,0.018970981,-0.006019961,-0.0045023942,-0.00009580863,-0.0061205733,-0.026986418,-0.02642746,-0.027925465,-0.06211124,0.04516368,0.042838424,-0.018669145,-0.010368642,0.018646788,0.013470851,-0.011693369,0.009815276,0.02361032,-0.008898587,0.042413615,-0.025354264,0.012252325,0.016321529,-0.00564546,0.0123641165,-0.0053743664,0.016735157,0.014946495,-0.018557355,0.009602872,-0.009194834,0.01693638,0.023766829,0.01705935,0.02642746,-0.030966187,-0.0026312876,-0.013526746,0.0055476427,-0.04668404,0.025063608,-0.007266434,-0.019317536,0.06282671,0.0023643859,-0.039618835,0.003001596,0.006226775,-0.01988767,0.0042648376,0.010888472,0.026785193,-0.002111458,0.00719377,-0.01269949,-0.020178327,-0.010374232,-0.013236089,-0.009982962,0.01732765,0.028059615,0.017394725,0.0008852473,0.033738613,0.014689376,0.043710396,0.007607397,0.033336163,0.02309608,-0.025510773,0.0041921735,-0.0042648376,-0.03376097,-0.018378489,-0.0045359316,-0.0013980898,0.020513702,-0.011648652,0.045230757,0.05276549,0.019529939,0.027388867,-0.0053603924,-0.0021771353,0.0026536458,-0.015840827,0.039484683,0.0001959841,0.00071511493,0.01709289,0.020558419,0.0003912695,-0.036265094,-0.0026955674,-0.0018976572,-0.032531265,0.01167101,0.01669044,-0.048427988,0.01758477,0.008887407,-0.01709289,0.00590258,-0.028551497,0.0061429315,0.008920945,0.024079844,-0.0027249127,-0.013973911,-0.047131207,0.00667394,-0.032821923,0.00897684,0.0046393387,0.02926696,-0.0051955003,0.0076688826,-0.03233004,0.028596213,-0.016612185,-0.010832576,-0.015427198,-0.0048573315,0.00590258,0.02145275,0.0012625429,0.022022884,0.01334788,0.015516631,0.0418323,-0.027947823,-0.013839762,0.026919343,-0.022257647,0.0013491812,0.005248601,-0.031659294,-0.006327387,-0.030071856,0.04261484,-0.0063721035,0.0054861577,-0.018624429,0.012923073,0.004918817,-0.0024384474,0.023073722,0.049993064,-0.004633749,0.009083043,0.00031493703,-0.03143571,-0.002804564,-0.025980296,0.041675795,-0.024035128,0.00022061313,-0.011995206,-0.007517964,0.0045638797,-0.018635608,-0.008585571,-0.017819531,-0.025488414,0.0044632675,0.035616707,0.007098747,-0.008770027,-0.0032279736,0.001159136,0.05482245,0.04838327,-0.005083709,-0.014365181,0.013526746,0.0022693633,-0.015583706,0.044224635,-0.008613519,-0.008356399,-0.0154495565,-0.043732755,0.0203013,0.030519022,-0.037897248,-0.021340957,0.011458607,-0.0013973911,-0.0023056953,-0.011492144,0.003001596,0.020647852,-0.02926696,-0.014063344,-0.03335852,-0.017003456,-0.010105933,-0.0029932118,-0.028350271,-0.0015818467,-0.03541548,0.022134677,0.0026997598,0.034744732,0.0031357456,-0.069802485,-0.00539393,-0.018590892,0.024974175,0.010301568,-0.019552296,0.004287196,-0.019149847,-0.015203616,0.014599943,0.0019773084,0.00912217,0.04529783,0.028685646,-0.000708128,0.009301036,-0.04404577,0.0706521,0.0010759912,-0.008892997,0.025890863,0.020748464,-0.019541118,-0.009720253,0.00077555206,0.002861857,-0.013448493,0.0024622031,-0.025466057,0.006852806,-0.017595949,0.019339893,-0.006366514,-0.0315475,0.00253347,0.048204403,0.0051228357,0.0021561745,0.022838961,-0.02644982,-0.014398718,-0.01000532,0.022056421,0.035214256,0.010776681,-0.014912958,-0.014544047,0.03362682,-0.0001344989,0.018076653,-0.021508645,0.01487942,0.011894593,-0.042435974,-0.0039350535,-0.0044213454,0.008138406,0.0075291432,-0.0005365982,-0.00033013365,0.009641998,-0.018769758,0.008965662,0.013426134,-0.030273082,0.014409898,-0.048562136,0.02091615,-0.029445827,0.014521689,-0.0020527677,-0.0050501716,-0.026651043,-0.0047678985,-0.01245355,0.026941702,-0.016276812,0.052989073,0.015237153,-0.020044178,-0.008909766,0.027142925,0.008440242,-0.0014952085,-0.031234486,-0.0071322843,-0.0009152912,0.004454883,-0.0031357456,-0.011693369,-0.013157835,-0.0076688826,-0.014857063,-0.0149353165,-0.012420013,-0.03590736,0.016410962,0.0056789974,0.010111522,0.002414692,0.0032531265,0.017785994,-0.023051364,0.015214794,0.0031636935,0.008624698,-0.012990148,0.013381418,-0.025041249,0.033939835,0.010793449,0.04223475,-0.0035829109,-0.018020757,0.019339893,-0.0036555752,0.017506516,0.00333697,0.039730623,0.023811545,-0.007847749,0.021497466,-0.0033341753,-0.027232358,-0.0032698952,0.00048803884,-0.019563476,-0.008960072,-0.017808354,-0.040893253,0.0015874363,0.015695497,-0.011380353,0.006483895,0.03706999,-0.030496664,0.0027346944,0.007383815,0.019820595,-0.047310073,-0.030608455,-0.02156454]},{"id":"guide-channels-5","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Invites\nUse channel.createInvite() to create an invite. Use channel.fetchInvites() to list channel invites. Use invite.delete() to revoke. invite.url gives the full invite URL.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.content.startsWith('!invite') || !message.guildId) return;\n const channel = message.channel;\n if (!channel?.createInvite) return;\n\n if (message.content === '!invite') {\n const invite = await channel.createInvite({\n max_age: 86400, // 24 hours\n max_uses: 10,\n temporary: false,\n });\n await message.reply(`Invite: ${invite.url}`);\n }\n\n if (message.content === '!invitelist') {\n const invites = await channel.fetchInvites();\n const list = invites.map((i) => `${i.code} (${i.max_uses ?? '∞'} uses)`).join('\\n');\n await message.reply(list || 'No invites.');\n }\n\n if (message.content.startsWith('!inviterevoke ')) {\n const code = message.content.slice(13).trim();\n const invites = await channel.fetchInvites();\n const inv = invites.find((i) => i.code === code);\n if (inv) {\n await inv.delete();\n await message.reply('Invite revoked.');\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.017906569,-0.0123555325,-0.027050857,-0.02259809,0.013597054,-0.028674386,-0.072867796,0.03411798,-0.0049511665,0.052382685,0.019494286,-0.024185807,0.026071964,-0.027671618,0.05037715,0.02781487,-0.04149549,-0.008237022,0.0027904403,0.02009117,0.00028389372,0.052812442,0.027122483,0.03898857,-0.022741342,-0.02154757,-0.00793261,0.01831245,0.007192472,-0.012653976,0.05543874,-0.016796362,-0.0130121065,0.006153891,-0.025904836,0.039179575,0.030441167,-0.0040528537,-0.054292716,0.022657778,-0.017464874,0.03559826,0.047344968,0.0059300587,0.0032918244,0.026071964,-0.07181728,0.009001035,0.01174074,0.014802764,-0.020485114,-0.008207178,-0.001680233,0.062458113,0.000035486715,-0.0071805343,-0.024854317,-0.01143036,-0.041949123,0.042498257,0.022383211,-0.005912152,0.017906569,0.022884596,0.004103589,0.014993767,-0.039084073,0.03442836,0.035765387,0.069716245,0.014647573,-0.00949645,0.030632172,-0.04932663,-0.019613663,-0.012319719,-0.017739441,0.03366435,0.021320755,-0.03251833,0.015017643,0.00040662833,-0.08590378,-0.030870926,-0.04655708,0.023111412,-0.020282174,-0.022323523,0.016032347,-0.023815736,-0.01236747,0.023815736,-0.060977835,-0.0070432504,0.065800674,0.0013683604,0.031634938,-0.0015145973,-0.017142555,0.058160536,0.08556952,-0.042522132,-0.07172178,-0.003685769,0.032255698,-0.02750449,0.014695324,0.021070063,-0.008780188,-0.01555484,-0.05672801,-0.0028904187,-0.0075804475,0.019243592,0.020688057,-0.015113144,0.04681971,-0.042140126,0.063174374,-0.013453802,-0.07921866,-0.017249996,0.06689894,-0.014086501,-0.013704495,-0.039370578,-0.0007095478,-0.024639439,-0.02578546,-0.00019715879,0.057444274,0.0046497392,0.030703798,0.012880792,-0.01945847,0.009771018,-0.04149549,0.04331002,-0.03392698,0.016378542,0.01784688,-0.042808637,0.039442204,0.0070790634,-0.031849816,-0.04708234,-0.042856388,0.010934945,-0.0054197214,-0.0032679487,-0.04295189,0.015841344,0.0125107225,0.004196106,-0.028650511,-0.0016668031,0.014814702,-0.007341693,-0.043405525,-0.017440999,-0.0010535031,-0.040779226,0.0065358975,-0.03815293,-0.03705466,-0.023779923,0.010970758,0.003632049,-0.027146358,0.079887174,0.0106544085,-0.0013825364,-0.021117814,0.022395149,0.053528704,0.03471487,-0.015017643,-0.054770228,0.03027404,0.01748875,-0.0032142291,0.025594456,-0.0009139811,-0.060977835,-0.025689958,0.039060198,0.0019309251,-0.038272306,-0.015578715,-0.027981998,-0.04273701,-0.027146358,-0.022848783,0.020365737,0.043572653,-0.0017712581,0.05319445,-0.014182002,0.051379915,-0.056632508,-0.015065393,-0.009174132,0.019446533,-0.03392698,0.011627332,-0.030345665,0.010153024,0.027217984,-0.024448436,0.01649792,0.042808637,0.0046586925,0.022669716,0.00021618452,-0.035765387,0.016736673,-0.014719199,-0.00323512,-0.041686494,-0.01988823,-0.075446345,-0.009257697,0.027217984,-0.0025128885,0.008004236,0.042259503,0.0055659586,-0.03595639,-0.012474909,0.03449999,-0.0016653109,0.031969193,0.0002669198,-0.07239029,0.0070313127,0.008541433,0.014564009,0.022454837,-0.0017399216,-0.042211752,-0.013680619,-0.032064695,0.005443597,-0.008619028,0.01236747,-0.036290646,-0.011275169,-0.020234423,0.030632172,0.07243804,0.106293395,-0.005449566,0.03855881,0.023302415,0.024925943,-0.012391346,-0.015089269,-0.030990303,0.009257697,-0.025355702,0.033210717,-0.026477847,-0.022072831,0.012194374,-0.02812525,-0.007186503,-0.030202413,0.019673351,-0.022502588,-0.022502588,0.0066373684,-0.08222696,0.0434294,-0.025236325,-0.014122314,0.016247228,0.034595493,-0.0043154834,0.004154324,-0.023469543,-0.032589957,-0.020604493,-0.022538401,-0.03208857,0.005040699,0.020222485,-0.017249996,-0.050759155,0.010302247,-0.0049451976,-0.021857953,0.0049929484,-0.014265567,-0.014886328,0.02379186,0.06608718,0.04452767,0.01080363,0.0533377,0.05176192,-0.017858818,-0.025904836,-0.020186672,-0.032637708,-0.015041518,0.022693591,0.01858702,-0.0009609859,0.06503666,-0.04502905,0.061885104,0.0505204,-0.056775764,-0.032709334,-0.0060733114,0.024496187,0.036983036,0.056871265,0.021487882,0.039848085,0.023911238,-0.00241291,-0.00756851,-0.03657715,-0.0010057522,-0.047416594,0.005124263,-0.04139999,0.038320057,0.0085653085,0.055916246,-0.031706564,-0.041376114,0.028220752,0.019864354,-0.020604493,-0.005130232,0.02812525,-0.0188974,0.027098607,0.026907604,-0.009066693,-0.007968423,0.013358301,-0.013525428,0.03533563,-0.005103372,0.00014437172,-0.007484946,0.039322827,-0.032900337,0.042522132,-0.022120582,-0.07048026,0.0016653109,-0.0017727503,0.045220055,-0.044694796,-0.015674217,-0.0021487882,-0.07434808,0.0015787625,0.019530099,0.011382609,-0.002356206,-0.008887627,-0.011299045,-0.022204146,0.03278096,-0.033425596,0.007860984,-0.00652396,-0.021487882,-0.027050857,-0.006774652,-0.030035285,-0.0032769023,0.011627332,0.024854317,0.020998437,0.03110968,-0.00652396,-0.004354281,-0.04550656,-0.018324388,0.010982696,0.005073528,-0.014755013,-0.011704927,0.024245495,0.010397748,-0.018610895,-0.0071029393,0.011340827,0.07205603,0.0055152234,0.01843183,-0.00012637189,0.013071795,0.015996534,0.051427666,0.03318684,0.0059419964,-0.026955355,0.003778286,-0.010069461,0.009192039,0.008786157,-0.014731137,-0.028578885,0.02348148,-0.014528196,0.024042554,0.0038290215,0.018073697,-0.043142892,0.0052585625,0.0029441384,0.013537366,-0.0046109417,0.01080363,0.0030888831,0.010469374,-0.017703628,0.010069461,-0.029462274,0.058781296,0.010224651,-0.001016944,-0.054244965,-0.08155845,-0.030393416,0.038845316,0.024472311,0.028746013,-0.018909337,0.06498891,-0.040683724,-0.003763364,-0.005625647,-0.010326122,-0.009007004,0.019721102,0.032971963,0.0070969705,0.028626636,0.0041931216,-0.028316254,0.019601725,-0.0025606393,-0.035837013,-0.045745317,0.032852586,-0.010475343,-0.014969892,0.014241692,-0.036887534,0.05266919,-0.0032440734,0.038439434,-0.036887534,0.01158555,0.005031746,0.009227852,0.015041518,0.014719199,-0.0070850323,0.038749814,0.005485379,-0.04457542,0.008314617,-0.0025218418,0.033234593,0.051427666,-0.017679753,-0.045052927,0.015065393,-0.0084101185,0.0189929,0.03631452,0.051523168,0.035407256,-0.013955186,0.016462106,-0.011663145,0.07816815,0.014504321,-0.020365737,-0.054149464,0.0016653109,-0.00412448,-0.0046586925,0.008380274,-0.011943681,0.0070074373,-0.0266211,-0.021857953,0.002056271,0.01936297,0.00081922556,-0.013179235,-0.013680619,-0.01685605,0.050138395,0.019040652,0.02724186,-0.015745843,-0.03886919,-0.012403283,0.02499757,0.0018473611,0.0141342515,-0.0015078824,0.022956222,-0.0015198201,0.041829746,-0.044909675,0.0027546273,-0.037245665,-0.015542902,-0.020795496,0.033950854,-0.026262969,0.011209512,0.007108908,0.0004704205,-0.033377845,-0.023863487,0.015793594,-0.028435633,0.03349722,-0.03397473,0.001707093,-0.0062732683,-0.006040483,0.030703798,-0.038129054,0.024830442,-0.00033556164,0.00016181197,-0.0008237022,0.053433202,-0.026740476,0.007144721,-0.022538401,-0.011997402,0.02197733,0.03595639,0.0008401165,0.02776712,0.028101375,-0.032948088,-0.024806567,-0.0031366341,0.04013459,0.042975765,-0.000261324,-0.041208986,-0.0027919326,-0.022060893,0.0002921009,-0.014898266,-0.018324388,-0.006392645,0.0009326338,-0.024400685,0.006446365,0.023732172,-0.022502588,-0.02860276,0.032112446,-0.005261547,-0.014444632,0.03820068,0.023505356,-0.0061031557,-0.07200828,-0.007407351,-0.018694459,0.003366435,-0.0008028112,-0.058017284,0.041328363,0.048992373,-0.015232521,-0.029366773,-0.025331827,-0.012146623,0.0055928184,-0.016820237,0.014492383,-0.0072163474,0.019709164,0.00047527018,-0.04646158,-0.0019174952,-0.0087980945,0.030679923,-0.007192472,0.024078367,-0.019912105,0.017476812,-0.0336166,-0.017082866,-0.027265737,0.01696349,-0.014002937,-0.017345497,-0.019876292,0.013394114,0.00446172,-0.0072402228,-0.009627765,-0.026430096,-0.024973694,0.018085634,0.016092036,0.025857085,0.049278878,0.0028337145,0.011042384,0.007341693,0.008535464,0.030226288,0.015626466,0.053480953,-0.009723267,-0.049708635,-0.00007712882,0.021798264,0.03005916,-0.0011967557,0.013931311,-0.0008983129,-0.013179235,-0.013776121,-0.024042554,0.009938146,0.008642904,0.004912369,0.035096876,-0.037603796,0.012606225,-0.004246841,-0.01920778,-0.010254495,0.001478038,0.000058103087,-0.012964356,0.012236156,-0.0078311395,0.0059837787,-0.01539965,-0.018145323,0.045100678,-0.03686366,-0.020222485,0.032160196,-0.022526463,-0.017596189,-0.013716432,-0.0074252575,0.019768853,0.022239959,-0.008105707,0.023159163,-0.047822475,0.0046527237,-0.053576455,0.0144804455,-0.0077237003,0.042307254,-0.002259212,-0.011131917,-0.012158561,0.017429061,-0.016414355,-0.039275076,0.03481037,0.0127017265,0.0041065733,0.035216253,-0.026406221,-0.011340827,0.035001375,-0.0024770754,0.0280775,-0.024758816,0.013704495,0.007108908,-0.029271271,0.020413488,0.005416737,0.0041841683,0.012534599,-0.0056942888,0.02281297,0.027170233,-0.007407351,-0.05257369,-0.007664012,0.0047989604,-0.0020920841,-0.017548438,0.023947053,-0.021487882,0.012236156,0.019171966,0.002606898,-0.036338396,-0.009138319,0.03110968,-0.022466775,0.0056554913,-0.028411757,0.031205181,-0.006613493,-0.027886497,0.005939012,-0.025546705,0.023314353,0.027838746,-0.013250861,0.012844979,-0.0051123253,-0.020150859,0.04696296,0.025093073,-0.025642207,-0.0030441168,-0.030297915,0.0016115912,0.015841344,0.024782691,-0.03846331,0.021046188,-0.03115743,-0.0051809675,-0.03438061,-0.038845316,0.00970536,0.0074252575,0.01027837,-0.001268382,0.0018428845,0.0023263618,-0.007884859,0.0026471878,-0.027074732,0.0054734414,-0.033831477,0.007407351,-0.04787023,0.016414355,-0.030656047,-0.0055659586,-0.00039618285,-0.044861924,-0.013859685,0.04023009,-0.009048786,0.008069894,0.007604323,0.008213147,-0.044766422,-0.016891863,-0.024949819,-0.00284416,-0.003721582,0.01586522,-0.005610725,-0.016724735,0.00923979,-0.021786327,0.011299045,-0.03982421,-0.07649686,-0.022681653,-0.0045363307,-0.025307951,0.008511589,0.0118541485,0.0023218852,-0.032589957,0.026334595,-0.027146358,-0.006034514,-0.0084101185,-0.038749814,-0.033879228,-0.02077162,0.006440396,0.007819202,-0.00960389,-0.052955694,0.010994634,-0.009669547,-0.07267679,-0.0052943756,0.02154757,-0.0027068763,-0.009162194,-0.019721102,0.0114243915,-0.010409686,0.01936297,-0.020473177,-0.001881682,0.0050377147,0.025594456,-0.02264584,0.042760886,-0.013024044,0.044742547,0.017990133,0.011108042,-0.0060792803,-0.00809377,-0.0041573085,-0.0077057937,0.038391683,0.024615563,0.02781487,-0.0039931647,-0.0027009074,0.019971794,-0.01137664,-0.00031896075,0.042498257,0.00793261,-0.0065597733,0.014659511,0.017106742,0.01236747,-0.0026188358,-0.020317987,-0.07253354,-0.0037156132,0.011770585,-0.021105876,-0.004154324,-0.0010184362,0.04008684,0.009168163,0.0041095577,0.013716432,-0.01738131,0.028316254,-0.011651208,0.01539965,0.01957785,-0.006935811,0.035574384,-0.0050168238,0.058638044,0.028005874,-0.010845412,0.04818061,-0.0022040003,0.010117211,-0.030297915,0.011287107,-0.02160726,-0.01205709,0.0017160462,-0.008959253,-0.0045273774,0.0096098585,0.020007607,0.041256737,0.028292378,0.009269634,-0.0018801898,0.008619028,-0.0033216686,0.03208857,0.0047721006,-0.00751479,-0.0073775067,0.013919373,0.040779226,0.02092681,0.0020040434,-0.012522661,-0.0024532,-0.0024144023,0.039489955,0.05500898,-0.016259165,0.0033932948,0.01606816,0.026644975,0.005736071,-0.06365188,0.017763317,0.03268546,-0.05839929,0.023529232,0.0251647,0.014110376,0.0005771138,0.003924523,0.023159163,-0.00814152,-0.010355966,-0.005631616,-0.029868158,0.016987365,0.03375985,-0.027003106,0.025403453,-0.011090135,-0.00636877,0.006440396,-0.0076759495,0.016008472,-0.009329323,0.032852586,-0.023923177,0.008225084,-0.012928543,0.0038439436,0.0071805343,0.010170931,-0.008792126,-0.02154757,0.014528196,-0.057587527,0.042522132,-0.00022476475,0.028722137,-0.006894029,-0.008780188,0.020055357,0.02233546,0.008660811,0.049087875,-0.008547402,-0.003924523,-0.0378903,0.013107609,-0.0051212786,0.03156331,0.019279405,0.0128569165,-0.050281648,-0.029032517,-0.0029083253,-0.00029788323,0.0031008208,0.008660811,0.005410768,0.058829047,0.0008833907,0.008786157,-0.018419892,0.017512625,0.024006741,0.040683724,0.06637368,0.017632002,-0.019016776,0.019744977,0.002098053,0.0064941156,0.0007117861,0.009675516,-0.012844979,0.0051272474,0.018228887,0.036338396,-0.032398954,0.0052227494,0.05104566,0.008863752,-0.0003639137,0.01346574,0.008075863,0.014850515,0.0021860937,-0.009896364,-0.008475776,-0.015089269,0.008941347,-0.016784424,0.033377845,-0.010170931,-0.00091920386,0.02855501,0.03282871,0.010164962,-0.006285206,-0.012236156,-0.0188974,-0.018324388,-0.013358301,-0.006118078,-0.023660546,-0.011872055,-0.007950516,0.007192472,0.011842211,-0.0069298423,-0.030130787,0.020890998,0.0068343407,0.02473494,0.0037961926,0.0029396617,0.011842211,0.03767542,0.025379578,0.009180102,-0.035502758,-0.01258235,-0.0069895308,-0.009389011,-0.03543113,-0.015984597,0.006947749,0.054388218,-0.044121787,-0.0055778963,-0.04390691,-0.014205879,-0.032303452,0.015495151,0.039489955,-0.008266866,-0.021774389,0.00016134566,0.015148957,-0.028220752,-0.014289442,0.009753112,0.013417989,0.017309684,-0.016294979,0.029008642,0.029032517,-0.04347715,0.0058285883,0.0032858555,0.01388356,0.015829407,0.0064941156,-0.0022293678,-0.026406221,0.010821536,-0.013417989,0.0030545623,0.010063492,0.015363837,0.047321092,0.0071805343,0.054626975,-0.03299584,0.0034947654,0.0058882767,0.006720932,-0.0378903,-0.008314617,0.007556572,0.00041931216,-0.04237888,-0.010236588,0.009717298,0.03125293,0.0044020317,-0.007998267,0.0036559245,-0.012224218,-0.03757992,-0.015566777,-0.017178368,-0.0030918675,0.0070730946,-0.025427328,-0.010588751,-0.04273701,0.017918507,-0.025642207,0.006643337,0.0027038918,-0.007693856,0.016676985,-0.015304148,0.031085804,0.00068529934,0.0028396833,-0.024173869,0.01634273,-0.0016712798,-0.024436498,-0.009747143,0.014922141,0.021881828,0.0052227494,-0.026597224,-0.032303452,-0.02114169,-0.013847747,0.030560544,0.027599992,-0.015733905,0.043835282,0.0104216235,-0.017130617,-0.002411418,0.03182594,-0.03648165,0.0050645745,0.022777155,-0.010815567,-0.028244628,0.0026919541,-0.0055152234,-0.006870154,-0.013943248,0.0122003425,0.02583321,-0.013859685,-0.04655708,0.019518161,0.0007576717,-0.0013750753,-0.014217816,0.035813138,0.0015698093,-0.00647024,-0.0238993,-0.018885462,-0.01502958,-0.051188912,0.04875362,-0.000059222246,0.032494456,-0.01575778,-0.007353631,-0.00030142724,0.0533377,0.010642471,-0.032613833,0.031205181,-0.0049392288,-0.03251833,0.014002937,0.069716245,0.025427328,-0.007693856,0.031396184,0.035478882,0.04493355,0.014182002,0.027217984,-0.00050959113,0.008201209,-0.033330094,0.012015308,0.032709334,0.0042557945,0.0059628873,0.031706564,0.000014642351,-0.012015308,0.02061643,-0.014110376,-0.012606225,0.013680619,0.0035842983,0.019840479,-0.035216253,-0.008416087,0.025284076,-0.01362093,0.035717636,-0.01945847,0.0032918244,0.0064224894,-0.028173001,-0.014193941,-0.026955355,0.01623529,-0.0028426677,0.0033724038,0.033162966,0.013967124,-0.029557778,-0.035884764,0.03717404,-0.047010712,0.011084166,0.03428511,-0.0337121,-0.038797565,-0.038964696,-0.030990303,-0.024854317,0.013907435,0.007914703,-0.025498955,-0.008499651,0.015089269,0.033473346,0.0119317435,0.0072820047,0.026573349,-0.017309684,0.013549304,-0.0043781563,0.0050496524,0.006816434,0.014838577,-0.006899998,0.009645672,-0.012003371,0.007992298,-0.009824738,0.015614528,-0.014969892,0.033330094,-0.045769192,-0.0037484418,0.012474909,-0.03125293,-0.01346574,0.019744977,0.0063389256,-0.046891335,0.0147908265,-0.011919806,-0.0075028525,0.010982696,0.021404319,-0.026000338,-0.01304792,-0.0011191606,-0.03036954,0.0029023564,0.012152592,-0.006326988,0.006141953,0.0051153097,-0.003059039,-0.015435463,-0.016092036,-0.01716643,-0.0081773335,0.021010375,0.030250164,0.013537366,0.0023308385,0.022383211,-0.010666346,0.023039786,-0.027647743,0.011722834,0.01346574,-0.047106214,0.0066672126,-0.025618332,-0.03187369,0.025045322,-0.019565912,0.017858818,-0.007270067,-0.044694796,0.033377845,0.017858818,0.0031814005,0.014420757,0.0014631159,-0.012164529,0.017572314,-0.012594287,0.031921443,-0.02468719,0.0015742859,0.0057002576,-0.008051987,-0.0065896176,-0.021165565,-0.0079863295,-0.007490915,-0.012534599,0.010218682,-0.00929351,-0.027623868,0.009174132,-0.012015308,0.0032381045,0.009311416,-0.035407256,-0.008010205,-0.020544803,0.020067295,0.0037335197,0.0011370671,-0.036839783,0.030035285,-0.0156025905,0.03218407,0.030297915,0.0252602,-0.016366605,-0.017417124,-0.04242663,0.015674217,-0.00566146,-0.0024532,-0.022192208,0.011830273,-0.030130787,0.006434427,0.00032567573,-0.01847958,0.026334595,0.014420757,-0.0018518377,-0.007562541,-0.02134463,0.009042817,-0.025236325,-0.0044796267,-0.017978195,-0.027528366,-0.025451204,-0.05257369,-0.00001509701,0.006326988,0.0077833887,0.0013124023,0.014957954,-0.01362093,0.013752245,-0.01555484,0.014289442,-0.019673351,-0.01430138,0.009973959,-0.03151556,0.0018727287,-0.023493418,0.013955186,-0.008583215,0.026955355,0.025594456,-0.046389952,-0.005010855,0.009257697,0.0007953501,0.0029426462,-0.0077953264,-0.012206311,0.034858122,0.0026456956,0.02552283,-0.013238924,0.027074732,0.01837214,-0.0037961926,-0.011860117,-0.022574214,0.0031455874,0.046007946,0.011567644,0.028698262,-0.00751479,-0.0054585193,-0.043930784,-0.03349722,0.020902935,0.0036559245,0.0008371321,-0.010564876,0.0047213654,-0.044456042,0.024806567,0.013585117,-0.02745674,0.009585983,-0.008732437,-0.020019544,-0.01221228,0.029557778,-0.03407023,0.012451034,-0.02118944,0.016426293,-0.019124215,0.023660546,-0.0003463802,0.011758647,-0.00062822213,-0.039084073,-0.011830273,-0.0100336475,0.01764394,0.015686154,0.0057301023,-0.0149460165,-0.007114877,-0.0026233124,-0.014862453,0.029868158,-0.009269634,0.007938579,0.021857953,-0.02077162,-0.0014929601,-0.010737972,0.024364872,-0.0040379316,-0.0056017716,0.042211752,-0.009329323,0.021953454,0.01430138,0.039585456,-0.025093073,-0.0010333583,-0.026764352,-0.02891314,0.011394546,-0.02745674,0.007944548,-0.008445932,0.0006629161,0.018825773,0.0045482684,0.018240824,-0.00059128983,0.041590992,0.0073834755,-0.02385155,0.003799177,0.015733905,0.036815908,-0.024639439,-0.014420757,-0.007819202,0.01461176,0.019160029,0.009884426,0.00730588,0.030942552,-0.0080639245,0.0012803196,-0.012809166,0.029366773,-0.015686154,-0.010099305,0.02666885,0.0055928184,0.0023248696,-0.015638404,0.023660546,0.0017264917,-0.02186989,0.028292378,-0.0113885775,0.03929895,-0.010511156,0.03972871,-0.004384125,0.024496187,0.0020398567,-0.0020025512,0.018551206,0.01148408,-0.024806567,0.03411798,0.0077117626,0.015781656,-0.0066313995,0.03617127,0.03208857,-0.009311416,-0.0037663484,-0.018969025,0.006040483,0.0117765535,-0.036123518,-0.0050377147,-0.0032589955,-0.010869288,-0.01628304,-0.025069198,-0.034643244,-0.020317987,-0.011973526,-0.009400949,-0.0054794103,0.018849649,-0.025642207,0.013143422,-0.030178538,0.013680619,0.0027397051,0.02834013,0.008463838,-0.047010712,-0.009979928,0.007341693,0.013334425,0.047679223,0.0058524637,-0.02781487,0.024543937,0.0046437704,0.026000338,0.0009303955,0.025355702,-0.017978195,-0.030106911,-0.007956485,0.047106214,-0.020795496,-0.018193074,0.02635847,-0.025116948,-0.004891478,-0.02771937,-0.031754315,-0.011609426,-0.021750513,-0.022944285,0.0025800383,0.014683386,0.0021860937,-0.007920672,0.016557608,-0.015125082,-0.029915908,-0.036075767,-0.00060770416]},{"id":"guide-channels-6","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Quick Reference","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.01745148,0.0041453857,-0.02122121,-0.027732562,-0.012864535,0.027574392,-0.04995552,0.007328567,-0.02168254,0.019824037,0.02048308,0.020219464,0.017082416,0.004586945,0.057890408,0.007111083,-0.023132438,0.0068870075,-0.001117903,0.05008733,-0.0062708016,0.026546285,0.0034369135,0.08667744,-0.04262695,0.0021320067,-0.013365408,0.04336508,0.013371998,0.014630772,0.089788124,-0.028681586,0.036221046,0.028628863,-0.0005552444,-0.0030283062,0.0037400736,0.03355851,0.0058325375,0.012218672,0.0057995855,0.063479096,0.020443538,-0.020720337,0.030658718,0.030105121,-0.018848652,0.01776782,0.0076185465,0.008046925,-0.001320559,0.028813396,-0.008501665,-0.0066167996,0.0126800025,0.0021962635,-0.01941543,-0.04800475,0.009259566,-0.006860646,-0.0069133695,-0.047424793,0.0040135765,0.004273899,-0.008554389,0.010188817,-0.063426375,0.030790526,0.013009525,-0.03160774,0.004033348,-0.0022160348,-0.008323723,-0.03284674,-0.0059775272,-0.015553433,-0.016383829,0.047451153,0.0112564685,-0.041150693,-0.023686035,0.026968071,-0.050878182,-0.014182623,-0.023686035,0.006999045,0.001320559,-0.0032853333,0.005367912,-0.02604541,-0.014709857,-0.024200087,-0.047029365,-0.016080668,0.017860087,-0.0198504,0.021906616,0.004544107,-0.0321877,0.0090948045,0.05296076,-0.03532475,-0.074076526,-0.013365408,0.08340858,-0.01911227,-0.023396054,0.034349363,-0.04436683,-0.027258052,-0.038171817,-0.03429664,-0.010254721,0.045078594,0.044208657,0.0052163317,0.04331236,-0.022157053,0.06442812,0.003581903,-0.055728745,-0.01565888,0.043101463,-0.029103374,-0.011447591,-0.0041915188,-0.001683857,-0.0034039612,-0.039331734,-0.039806247,0.070754945,-0.012607507,0.028971566,-0.021708902,0.016462915,0.019309983,-0.017346032,0.008455532,-0.020535804,-0.011460772,0.019204536,-0.0031502293,0.072916605,0.0013806968,0.015329359,0.0041651567,-0.08862821,0.005008733,0.0068540554,-0.0028932022,-0.040465288,0.029024288,-0.022526117,-0.019178174,-0.029156098,-0.007256072,-0.0098131625,-0.022921544,-0.028918842,-0.058312196,-0.0023396055,-0.03221406,-0.0010923651,0.010590834,-0.045263126,-0.03448117,-0.03883086,0.007434014,-0.07376018,0.050192777,-0.012258215,-0.01084127,0.0032803905,-0.010109732,0.020338092,-0.014854847,-0.01642337,-0.04033348,-0.041097973,0.003703826,0.024503248,0.041335225,-0.0049098763,-0.033822127,0.025360005,0.04679211,0.01610703,-0.033769403,-0.0024499954,-0.03250404,-0.032082252,0.009417736,-0.015527071,0.008949814,-0.012363662,-0.011361915,0.0049428283,-0.035904706,0.03838271,-0.050799094,0.0053613214,0.007895345,0.010821499,-0.0083566755,-0.03023693,-0.023224704,-0.025360005,0.03864633,-0.063373655,-0.013490627,0.018571854,-0.010663329,-0.037275515,-0.011803474,-0.038013645,0.007447195,-0.048215643,0.04394504,-0.056941383,-0.009556135,-0.054516103,-0.01896728,0.07629091,0.019797675,-0.026322208,0.052117184,0.005450292,-0.029314268,0.049533732,-0.037380964,0.030289654,0.045790363,0.017016511,-0.028523415,-0.027363498,0.013879462,0.00063309394,0.019520877,-0.038277265,-0.07434014,-0.025056845,0.019731771,0.009885657,0.029973311,0.011355325,-0.014498964,0.0027745743,-0.0379082,0.029973311,0.028048905,0.07128218,0.044894062,0.016726531,-0.029024288,0.0038158635,-0.018308237,0.0448677,0.00857416,0.009977923,-0.02286882,-0.010307445,-0.03659011,0.013009525,-0.02302699,-0.025504995,0.054568827,-0.018097343,0.022196595,-0.031238675,-0.017398756,0.0027449173,-0.022315223,0.08013973,-0.027099881,-0.015474348,-0.01820279,0.019718591,-0.014261708,-0.01114443,-0.016937425,-0.036326494,-0.01593568,0.0010767129,-0.008409399,-0.0041849283,-0.0026608894,-0.02152437,-0.005074637,0.017477842,-0.00094737543,-0.037539136,0.021959338,-0.008620293,-0.0016682046,-0.01941543,0.05311893,0.011658485,-0.0024434049,0.025083207,-0.0054437015,-0.0028388312,0.03885722,0.009720896,0.012805221,0.025267739,0.026269486,-0.003776321,-0.030632356,0.021550732,-0.02799618,0.03624741,0.039358094,-0.0045408118,-0.017029691,-0.04022803,-0.028312521,0.022763373,0.024305535,0.02663855,-0.0083434945,0.0027119652,-0.010584244,0.034692064,-0.021234391,0.010584244,0.0014276536,-0.0047319345,-0.017227406,0.040728908,-0.026427656,0.063426375,-0.06426995,0.019323165,0.0037071214,-0.04863743,-0.0067749703,0.006999045,0.019916303,-0.060737476,0.0056480053,0.0162652,-0.012073683,-0.006952912,0.015131646,-0.028549777,0.019599963,0.00857416,0.014973475,0.030316014,0.04573764,-0.0126931835,-0.0035588364,-0.028866118,-0.07054405,0.008600522,-0.006059908,0.021445286,-0.04710845,0.010735824,0.06263552,-0.032741297,-0.008705969,-0.020061294,0.009997695,-0.00458365,-0.0076514985,0.0009424326,-0.010175636,-0.019955846,-0.028365245,0.017372394,-0.01849277,-0.00029883516,-0.008013973,-0.0045935353,0.011553038,0.03988533,-0.0090289,-0.03550928,0.0030316014,0.014643953,-0.026150858,0.012844764,-0.01866412,0.05414704,-0.00594787,-0.03867269,0.046739385,-0.032161336,-0.0076844506,0.004995552,-0.000068169844,0.012930439,-0.012436156,0.05509606,0.039806247,0.027653478,0.031212315,0.042969655,-0.039489903,0.04426138,0.012363662,-0.021023497,0.030816888,-0.010781957,0.014248527,-0.025926784,0.004804429,0.0010149274,-0.018295055,0.01836096,-0.051379055,0.036748283,0.029762417,-0.009648401,-0.03147593,-0.005779814,0.012159358,0.02601905,0.011948464,-0.0018931034,-0.06469174,-0.014011271,0.0055919867,-0.020509442,0.011025802,0.025386367,0.015672062,0.063584544,-0.04890105,-0.0104985675,0.010024056,0.002008436,0.027600754,0.03416483,-0.018756386,0.00032602073,-0.07465648,0.037987284,0.027310776,-0.030922335,-0.01099285,-0.007842621,-0.004409003,-0.018624578,-0.0026674797,-0.004076186,-0.053171653,-0.021642998,-0.012818402,-0.030184206,0.020667613,-0.022987448,0.0370119,-0.03669556,-0.00556892,0.027969819,0.022895182,0.006514648,0.021168487,0.028048905,0.051906288,-0.008857548,0.066853404,0.005901737,-0.024173727,0.009345241,0.002792698,-0.009252975,-0.006801332,0.05404159,0.019085908,0.0303951,0.019744951,-0.040518012,-0.045263126,-0.0049856664,-0.013905824,0.020548986,-0.0021616637,0.0069001885,-0.022737011,-0.024424164,0.028470691,0.028681586,0.09147528,0.06500808,0.03959535,0.010195407,-0.012126406,-0.031976804,-0.004784658,0.017978715,-0.015013018,-0.025267739,-0.04995552,-0.03867269,0.009608858,0.04394504,-0.007394471,0.022961086,-0.005512901,-0.02213069,0.03535111,0.094375074,0.013292913,0.010999441,0.0065410095,-0.013101791,0.0031930672,-0.015382082,0.0006903484,-0.027653478,0.003062906,-0.018677302,-0.00052805885,-0.011875969,-0.0037565497,0.003265562,0.025373187,-0.009424326,0.0029459258,0.033822127,0.010346987,0.01594886,0.03234587,0.009846115,-0.0589976,0.00070806016,-0.03991169,0.003189772,-0.03384849,-0.012100044,0.037802752,-0.016027946,0.029287906,-0.0059808223,0.0037532544,-0.010327216,-0.032556765,-0.0409398,0.013075429,-0.021300295,0.036062878,0.017411938,-0.024265993,0.010880813,0.00616865,0.026388114,0.027310776,0.03126504,-0.043154188,0.023303788,-0.018888196,0.024780046,0.0069595026,-0.0075592324,-0.022947906,0.03593107,-0.03585198,-0.045974895,-0.019191355,-0.015408444,-0.025755432,0.0059544607,-0.005776519,0.014973475,-0.024555972,0.014472602,-0.041097973,0.0025834516,0.004181633,0.01596204,0.013187466,0.025979506,-0.0028586024,-0.037222795,0.004079481,-0.008738921,0.0077767167,-0.007447195,-0.04244242,0.042205166,-0.021181667,0.0017283424,-0.036959175,-0.02362013,-0.012969982,0.002683956,-0.007585594,0.04948101,0.014933933,-0.038145456,0.012989753,-0.04758296,-0.0019408839,-0.025228197,0.0011665075,-0.026888987,-0.01775464,-0.013760834,0.013919005,-0.045658555,0.003160115,-0.027284414,0.026203582,-0.038461797,-0.020496262,-0.024859132,0.018756386,0.011197154,0.008435761,0.006801332,-0.030737802,0.024490068,0.0126536405,0.013161104,0.0022308633,0.018519131,0.01279204,-0.019217717,0.0246746,0.0105249295,0.023699215,-0.0065706666,0.043259636,0.037407327,-0.017991895,0.007750355,-0.053619802,0.0022473393,-0.0058127665,0.033505786,-0.0009729134,-0.034718428,-0.005222922,-0.0141562605,-0.038013645,0.00962863,0.0090618525,0.050350945,-0.0017151615,0.0007105316,-0.0090948045,0.034349363,-0.022222957,0.035113852,0.012172539,0.006966093,0.001510858,-0.015751146,-0.007163806,0.012271396,-0.006455334,0.014063994,-0.03160774,-0.015171188,0.016344287,-0.029446077,-0.02213069,-0.046423044,0.0033907804,0.007723993,-0.032451317,-0.01159258,-0.008791644,-0.0025636803,-0.014327612,-0.04154612,-0.016581543,-0.06664251,0.018150067,0.017491022,-0.02333015,-0.017965535,-0.010729233,0.019085908,-0.0040728906,-0.006198307,0.029736057,-0.010920356,0.027758924,-0.046739385,0.006227964,-0.0052855313,-0.00021212971,0.012686593,0.019006822,0.007783307,-0.011131249,0.007407652,0.03007876,0.009101395,-0.011605761,-0.0027482125,-0.018400503,0.038593605,0.00963522,-0.012818402,-0.12632552,-0.0018370845,0.016489277,-0.00124065,-0.020127198,0.021234391,-0.021840712,-0.047635686,-0.006198307,0.012053911,-0.036431942,-0.038013645,0.012535013,-0.027627116,-0.02994695,-0.009747257,0.014920752,-0.04950737,0.015856594,0.02555772,0.008040334,-0.0043398035,0.020522624,-0.047134813,-0.012132997,0.0035983792,-0.0032787428,-0.020852145,0.0035423604,0.0061126314,0.0047451155,-0.020074474,-0.004224471,0.029867865,0.02603223,-0.008547798,0.06216101,-0.03150229,0.009285927,-0.011836426,-0.044894062,-0.024806408,0.010478796,0.023541044,0.023976013,0.04903286,0.009213433,-0.021498008,-0.007644908,-0.037090983,-0.0219857,-0.0048077246,0.010973079,-0.041915186,-0.00079373585,0.011777112,-0.016357467,0.003822454,-0.049191028,0.011915511,0.035693813,0.0071044923,0.014077175,-0.011071936,0.024569152,-0.016739713,-0.015487529,-0.028075265,-0.02228886,0.0007249482,-0.0025224902,-0.049428284,0.010999441,0.0246746,-0.016383829,0.010162455,-0.025201835,-0.05209082,-0.03461298,-0.03764458,-0.007176987,-0.023949651,0.009220023,-0.017807363,0.011843017,0.00062773924,0.002316539,0.034955684,-0.038778137,-0.025597261,-0.03324217,-0.015434805,-0.022592021,0.01444624,0.00903549,-0.041467037,-0.019837217,-0.0033298188,-0.104497984,0.023857385,-0.009826343,0.010544701,0.018571854,-0.030263292,0.008020563,-0.00060261315,0.010557882,-0.055939637,-0.0036082647,0.06247735,0.010452434,-0.016238838,0.01942861,-0.01082809,0.06484991,0.020522624,0.042864207,-0.018611398,0.045658555,-0.002603223,0.019362707,0.022486575,0.017438298,0.0097933905,0.0014746105,-0.007460376,0.04697664,-0.02165618,0.0017827135,0.08077241,0.0023742053,0.03023693,-0.010142684,0.01969223,0.0043727555,-0.008976176,0.0071967584,-0.056994107,0.018084161,-0.012429566,0.00086169975,0.0041750423,0.00089382817,-0.0028866117,-0.029129736,-0.013958547,0.013141333,0.008831187,-0.0070385877,-0.021076221,0.031344123,0.019020004,0.012508651,0.011361915,-0.015276635,-0.0018173133,-0.0076712696,0.00025496757,0.035799257,0.0463176,0.03669556,0.009503411,-0.0053810924,-0.026427656,0.0008674664,-0.04138795,-0.014802123,0.044155933,0.022829277,0.03585198,0.003417142,0.0294988,0.011296011,0.053250737,-0.023659673,-0.009391374,-0.019138632,0.008560979,-0.022802915,-0.0025933373,-0.012917259,0.00601707,0.04726662,-0.004254128,-0.024015555,-0.012370252,0.020746699,0.010063599,0.017359214,0.0016443143,0.01834778,0.007598775,0.037407327,-0.010689691,-0.019164994,-0.019230898,-0.018993642,-0.042257886,0.06801332,0.015724786,-0.010267902,-0.04331236,0.005104294,0.014617591,-0.011935283,0.0021089402,0.0065871426,0.018927738,-0.008139191,0.015540252,-0.0029640496,-0.020720337,-0.030922335,-0.017899629,0.007611956,0.020364454,-0.016146572,0.0056282342,-0.011803474,-0.032398593,-0.008613703,-0.046844833,0.0009968037,0.015144827,0.0005733681,0.01970541,-0.007256072,0.006531124,-0.028523415,0.02918246,-0.021959338,0.034112107,0.019020004,-0.02815435,-0.0029937064,0.021932978,-0.037829112,0.033453062,-0.013919005,0.0044946787,-0.014195804,0.011381687,-0.041440673,-0.0009004186,-0.01369493,0.013602664,0.0025340235,-0.04729298,0.016726531,-0.0056743673,0.003506113,0.019336345,0.0057369764,0.05841764,-0.014512144,0.018571854,0.014723038,-0.020390814,-0.026704455,0.037697304,0.04336508,0.035720173,0.004880219,0.016041126,-0.009417736,0.015329359,0.0021072926,0.03659011,-0.018229151,0.026111316,0.014261708,0.026546285,-0.0032326097,0.056941383,0.06321548,0.006043432,-0.010426072,-0.013787196,0.0022555774,0.038936306,-0.0003620622,0.023672853,0.008640064,-0.007394471,0.019072728,-0.01760965,0.019982208,-0.029261544,-0.01791281,0.0106831,0.012403204,0.0067156563,0.02767984,0.011454181,-0.03429664,-0.039226286,-0.013154514,0.019586781,0.049401924,-0.00798102,0.0361156,0.0072165295,0.02481959,-0.0083830375,-0.008191914,-0.020904869,0.0055788057,0.022091148,0.020377634,-0.015237093,-0.0060401363,0.01896728,0.0031419913,0.013055658,-0.02002175,-0.0076251365,0.012442747,-0.0038092732,-0.00023622601,-0.046686664,-0.05683594,-0.00579629,0.00040181077,-0.022908362,-0.015144827,-0.023910109,-0.0246746,0.018136885,0.032767657,0.03864633,-0.0063037537,0.0044188886,-0.026309028,-0.033215806,0.023870567,0.033057638,-0.016304744,0.0032260194,-0.013589483,0.023844205,0.012390023,-0.051695395,0.0072626625,-0.009365012,0.003759845,-0.006755199,-0.01849277,-0.004316737,-0.01836096,0.01158599,0.013490627,0.0038784728,-0.030895973,-0.009338651,-0.01219231,0.001708571,0.01399809,0.019244079,0.027785286,-0.017069234,0.026783539,0.011875969,-0.0012217024,0.015566614,0.008508256,0.022025244,-0.011796884,-0.00004548947,-0.007269253,0.012508651,0.0063564773,0.019454973,-0.011724389,-0.020403996,0.0026971367,-0.010017466,-0.00129914,0.0020067883,-0.009048671,0.013945366,-0.051827203,-0.012436156,0.013154514,-0.004850562,-0.002654299,0.026981253,0.010004285,-0.029762417,0.040122587,-0.0005877847,0.009819753,-0.03387485,0.017214224,-0.06305731,-0.0055590346,-0.008224866,0.0070715398,-0.009575906,0.02317198,0.017570108,0.009879067,0.010096551,0.0068408744,0.024503248,-0.0009383136,-0.021563914,0.016344287,-0.008673016,0.0063729533,-0.0090948045,0.033347618,0.004329918,-0.0021039974,0.00024487596,-0.009384784,-0.024648238,-0.014868028,0.025504995,-0.0020265598,-0.0077898977,0.036168322,0.012264805,-0.041018885,-0.028681586,0.0062576206,-0.0106831,0.026269486,-0.01911227,0.0064026103,-0.005466768,-0.030922335,0.006046727,-0.013945366,-0.0035357699,-0.037117347,0.016120212,0.008956405,0.0090684425,-0.033769403,0.0051240656,0.015843414,0.014182623,0.0423897,0.00390813,0.034059383,-0.0033265236,-0.0321877,0.0011969883,0.07750355,0.012574555,0.009246385,0.002792698,0.010201998,0.04710845,-0.012014369,0.025478633,-0.0074537853,-0.031739548,-0.005822652,0.030922335,0.018611398,0.0065377145,-0.0015940622,0.008350085,0.00015755265,-0.040834352,0.046159428,-0.014433059,0.01836096,-0.020957593,0.008086467,0.0052723503,-0.0046726204,-0.012831583,0.009510002,-0.03189772,-0.0036379218,0.003674169,-0.010571063,-0.02857614,0.003522589,0.008376447,-0.051589947,0.005555739,0.014775762,-0.0005185851,0.008804825,-0.00029121496,-0.030816888,-0.033031274,0.008013973,-0.0051833796,-0.0011409696,0.027811648,0.0044913837,-0.022644745,-0.004376051,-0.017477842,-0.017543746,0.020641252,0.023580587,-0.020838965,-0.0083434945,0.0017332851,0.01834778,-0.03384849,0.023079714,0.014907571,-0.018176427,0.026981253,0.015237093,0.0056084627,-0.0067947414,-0.0036906453,0.037565496,-0.0119682355,0.010043828,-0.014090356,-0.01684516,0.013615845,-0.012818402,0.029736057,-0.017398756,-0.0058621946,-0.0055491487,-0.034982044,0.00034105516,-0.011394868,0.022222957,-0.037407327,-0.019375887,-0.029577885,-0.016673809,0.044024125,0.010636967,-0.026467199,-0.0006149702,-0.011777112,-0.009701124,0.010070189,0.031027783,0.040254395,-0.012508651,-0.0052855313,-0.017240586,-0.01700333,-0.016594723,0.004379346,0.00068705314,0.010208588,0.00691996,0.0014910866,-0.006893598,0.01083468,-0.013813558,-0.010122913,-0.0112762395,0.026704455,-0.013734473,-0.015896136,0.019402249,-0.018901376,-0.034797512,-0.009305699,-0.03176591,-0.001573467,0.014261708,0.01610703,0.016331105,-0.0026262896,0.020140378,-0.01714832,-0.0047945436,0.014551687,0.0011541505,0.001789304,-0.0000645657,0.006323525,0.0033973707,-0.00692655,0.020034932,-0.00096220395,-0.012238443,0.022236139,-0.03324217,-0.020588528,0.01596204,0.01912545,-0.021432104,-0.0071374443,0.024424164,-0.0020990544,0.025504995,0.022367947,0.0055194916,-0.02873431,0.016950607,-0.018875014,-0.0052558742,-0.006682704,0.025267739,-0.021893434,0.012502061,-0.019204536,0.016950607,0.010129503,0.0370119,-0.016449733,0.02016674,-0.020562166,-0.016383829,-0.021445286,-0.012310938,-0.003319933,-0.017860087,0.014775762,0.043681424,-0.0048242006,-0.015817052,0.041440673,-0.030526908,-0.011816655,-0.007994201,0.008521437,0.009832934,-0.025953144,-0.06332093,0.014485783,-0.0012332357,0.03340034,-0.012811812,0.005012028,-0.012890897,0.01714832,-0.02002175,-0.0105381105,0.04157248,0.0155929765,0.0370119,-0.01503938,0.003146934,-0.020838965,0.012567965,-0.015434805,-0.0053053023,0.027758924,0.011032393,-0.0006182655,-0.0004535045,0.017082416,0.033189446,0.013035886,0.0063268202,-0.022552479,-0.029999673,0.035377473,-0.01203414,0.010452434,-0.010043828,-0.006985864,0.008066696,0.013101791,-0.036379218,-0.013760834,0.006827694,-0.0026378229,-0.02707352,0.008165552,-0.005901737,-0.009562725,-0.0246746,-0.045816723,0.026071772,0.02197252,-0.008158962,-0.044630446,0.0020430358,-0.029630609,-0.022183415,0.004076186,-0.016041126,0.004774772,-0.031555016,0.0025801565,-0.046607576,0.0051734936,-0.019903123,0.0105117485,0.012442747,-0.008653245,-0.029973311,-0.007163806,-0.022539297,0.0339803,-0.009259566,-0.029393353,0.0018090752,-0.0063531823,0.01925726,0.04138795,0.021128943,-0.031370483,-0.018242333,-0.039199926,0.014353974,0.0010948365,0.0039311964,0.023277426,-0.020825785,-0.0056447103,-0.002852012,-0.03084325,0.051510863,0.008600522,-0.021458466,0.009951562,0.0031650579,0.016186116,0.0115794,-0.003822454,0.010142684,-0.018097343,-0.0070254067,-0.005961051,0.008791644,-0.0008979472,0.023369692,0.013523579,0.03158138,-0.0019721885,0.03835635,-0.03234587,0.015817052,0.019085908,-0.011006031,0.0115794,-0.0056941384,0.003235905,0.01762283,0.019323165,0.0014391869,-0.029366992,0.0026592417,-0.00050663995,0.010544701,-0.00903549,0.022012062,0.0060368413,-0.028207075,0.013681749,0.008053515,0.003628036,-0.00019668338,0.019679047,-0.0006689294,0.0133917695,0.020285368,-0.01428807,0.012508651,-0.025373187,-0.004336508,-0.026888987,-0.0013353875,-0.0180578,0.015131646,0.037829112,0.032293145,0.024081461,0.017227406,-0.030816888,0.029024288,-0.042468783,0.07112401,0.033004913,-0.012759088,-0.014525325,0.063584544,0.0025669755,0.016634265,-0.00932547,0.0012464166,0.013325865,0.017280128,0.00084316416,-0.0050153234,-0.019665867,-0.020654432,-0.027653478,-0.004412298,-0.017108778,0.006939731,-0.01866412,-0.0035687222,0.03445481,-0.0069792736,0.016607903,0.01324019,-0.010926946,0.009220023,0.015513891,-0.004063005,0.009536364,0.041467037,0.004000396,0.019507697,-0.006050022,0.0397008,0.017069234,-0.0018024847,0.033031274,-0.022947906,0.013760834,0.0090552615,0.021774806,-0.0017036282,-0.04531585,0.013174285,0.008053515,-0.036300134,0.034797512,0.028127989,-0.025702707,0.016528819,-0.011520086,-0.01580387,-0.011783703,0.011381687,0.0075262804,0.013629026,0.0062246686,-0.021076221,-0.008172143,0.036089238,-0.0010973079,-0.04405049,-0.0048274957,-0.0028602502]},{"id":"guide-emojis-0","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Fetch Emojis\nUse guild.fetchEmojis() to get all emojis in a guild. Cached in guild.emojis. Use guild.fetchEmoji(emojiId) for a single emoji. Use emoji.delete() to remove an emoji (e.g. autocreated ones).\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!emojis') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const emojis = await guild.fetchEmojis();\n const list = emojis.map((e) => `:${e.name}: (${e.id})`).join(', ');\n await message.reply(emojis.length ? list : 'No emojis.');\n\n // Or get from cache after fetching: guild.emojis.get(emojiId)\n});\n\n// Fetch single emoji by ID\nconst emoji = await guild.fetchEmoji(emojiId);\nawait emoji.delete();\n```","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[-0.003905362,-0.013520318,-0.0019698099,0.0020069222,-0.002156799,0.0011883092,-0.046407577,0.03386931,0.0066231284,0.018247861,0.021285364,-0.04229667,0.022884052,-0.06828674,0.019012947,0.016809044,-0.05353315,-0.013269096,-0.016169569,0.023226626,0.033777956,0.007645146,-0.003457159,0.045516882,-0.00075723487,0.04357562,-0.029141765,0.040264055,0.015427322,-0.027314696,-0.042319506,-0.023546364,0.067784294,-0.051751755,-0.028296746,0.040949207,0.0045648203,0.019058624,-0.046704475,0.016192408,-0.009860468,-0.028205393,0.01221853,-0.009066835,0.007251184,0.0018813111,-0.035353802,0.0022452977,0.019789452,0.00829604,-0.017642645,-0.00899261,-0.029004736,0.05229988,-0.02289547,-0.043644134,-0.074909866,0.012252788,-0.051020928,0.03875672,0.037432097,-0.028273908,0.015107585,-0.010168786,0.026309807,0.046065003,-0.048280325,0.016112473,0.007713661,0.031083029,0.0185676,0.010163077,0.027017796,-0.0398758,0.028799191,-0.03622166,0.0139428275,0.016272342,0.016180988,-0.046498932,0.0034114823,0.038436983,-0.0398758,-0.055040482,-0.0016429356,-0.029461503,-0.046453252,-0.020463184,-0.014502368,0.009774825,-0.0042793406,-0.018761724,-0.10048885,-0.01965242,0.03263604,0.00012132886,0.008929805,0.008113333,-0.022050451,0.04709273,0.08148732,-0.043233044,-0.10651818,-0.014490949,0.0063719065,0.017676901,-0.034394592,0.044854566,-0.01883024,0.015552933,-0.07952322,0.0018955851,0.01109374,0.009289509,-0.00028815606,0.007456729,-0.011773182,-0.00842736,0.039578903,-0.045402687,-0.080939196,0.007222636,0.059379775,-0.044649024,0.01812225,0.008946933,-0.032384817,-0.032361977,-0.04946792,-0.03133425,0.028593644,-0.037500612,0.026583867,0.017026009,-0.038299955,-0.02262141,0.015621448,-0.02163936,-0.045037273,0.020234799,0.037021004,-0.04337007,0.0024908101,0.007097025,-0.061617933,-0.029530019,-0.05170608,-0.01278949,-0.080847844,-0.0041936967,-0.021102658,-0.024962343,0.0013424682,0.0046847216,0.0047018505,-0.0053727278,0.012412657,-0.0047132694,-0.024962343,-0.021388138,-0.034874197,-0.024756799,0.031905208,-0.030991673,-0.016477887,-0.00001467544,0.0011611886,-0.031791016,-0.0020069222,0.020897113,0.043461427,-0.042958982,-0.019903643,0.0016914671,-0.031174382,-0.007371085,-0.010014627,0.016489306,-0.06184632,0.024802474,0.010968129,0.01588409,-0.058146503,-0.006788707,-0.018156508,0.003976732,0.024071647,-0.0049073957,-0.02783998,0.03188237,-0.006434712,0.0038168633,0.0014673655,-0.010711198,0.057095937,-0.01700317,0.0542183,-0.010985258,0.009500763,-0.036313016,-0.010636973,0.07221494,0.04314169,-0.017642645,0.015130423,-0.048828445,-0.018704629,-0.027565919,0.045722425,0.016226666,0.015689963,-0.009769115,-0.020234799,0.015507257,-0.046476092,0.025350595,-0.041268945,0.016649175,-0.012115758,0.016649175,-0.044215094,0.021433815,0.051614728,-0.02950718,-0.007108444,-0.0035171097,-0.0018941577,-0.019960739,0.00308889,0.049376566,0.0026877911,-0.0054983385,-0.037295066,-0.059060037,0.025350595,-0.025213566,0.013645929,0.042936143,0.009489344,-0.00786782,-0.021422395,-0.046179194,0.03327551,-0.020223381,0.0019398344,-0.0075138253,-0.030854644,-0.012880843,0.037980217,0.018304957,0.050929576,0.0032459039,0.024528414,-0.013017873,0.024688283,-0.01925275,-0.015233196,0.015906928,0.005204295,0.03877956,-0.02065731,0.011459154,-0.036038954,0.010003208,-0.006811545,0.013303353,0.0016572096,0.022415865,-0.06125252,-0.006069298,0.0048131873,-0.018613275,0.066962115,0.019070042,-0.020428926,0.02094279,-0.0155300945,0.005033007,-0.00730828,0.0102772685,-0.010225882,-0.03263604,-0.0038596853,0.0015487273,-0.010928162,0.030534906,0.046042163,-0.04145165,-0.005735287,0.026309807,0.011830278,0.0028390954,0.004964492,-0.020189123,0.03275023,0.036335856,0.03528529,0.045722425,0.06554613,0.0382086,-0.03905362,-0.0612982,-0.017437099,-0.027360372,-0.025076535,-0.017939543,-0.008592938,0.012538267,0.03921349,-0.015381645,0.035330966,-0.023820424,-0.03763764,0.019994996,-0.022792697,0.014445272,0.01460514,0.047412466,0.067875646,-0.01727723,0.037272226,-0.00018681076,0.043735486,-0.01854476,-0.062759854,-0.070068136,-0.012755232,-0.033321187,0.008627196,0.015849832,0.031448442,-0.0120244045,0.0033943534,0.070753284,0.03306997,-0.01532455,-0.010774003,-0.0045476914,0.021730714,-0.030512068,0.015141842,-0.021993354,-0.014719333,-0.03092316,0.012195692,-0.01194447,0.0034485946,0.055588603,-0.00983763,-0.0021710729,-0.021685036,0.0362445,0.0371352,-0.061161168,0.034622975,-0.029598534,-0.0030232298,-0.008809903,0.013782959,0.03302429,-0.008021979,0.008216105,0.0016357986,0.036975328,0.010328655,-0.004079505,0.022107547,0.038825236,0.060521692,-0.03062626,-0.0017085959,-0.0047389627,-0.025053697,-0.025647495,0.023683395,-0.010145948,-0.023706233,0.027474565,0.024916667,0.045197144,0.0049530724,0.0062462953,0.0062063285,-0.019229911,0.026104262,-0.009746277,-0.01769974,-0.033092804,-0.029461503,0.010996677,0.017871028,-0.012481172,-0.036746945,-0.013508898,0.012252788,0.012995035,0.0012368407,0.017231554,-0.0006373334,0.014639398,0.009986079,0.01741426,0.02724618,-0.008490166,0.012241369,0.017448518,-0.03021517,0.0073653758,0.020634472,-0.030580584,-0.0017471357,0.028022686,0.0056867553,-0.0013574559,0.01461656,-0.029575694,0.022963986,-0.025921555,0.008216105,0.028547969,-0.020234799,-0.04161152,-0.0017171603,-0.03119722,0.0016072507,-0.021685036,0.02079434,-0.035102583,-0.002389465,-0.04316453,-0.05280232,-0.0152103575,0.02569317,-0.019321265,0.045288496,-0.013269096,0.035764895,0.0063205203,-0.013554575,-0.05019875,-0.039807286,-0.03469149,-0.010362913,0.025601817,-0.002840523,0.02402597,-0.026743736,-0.023283724,0.012995035,0.039989993,0.00048888393,-0.013097808,0.024665445,-0.002522213,-0.012995035,0.015792737,-0.013988504,0.014867782,0.03147128,-0.014399596,0.0054755,0.0018670372,-0.003539948,0.001081968,0.04428361,-0.016477887,-0.034211885,0.00095064734,0.03441743,0.0306491,-0.040104184,-0.0077022417,0.0142625645,0.040469598,0.008804194,-0.025807364,0.005001604,-0.04120043,0.027611595,0.029073251,0.012070081,0.027634433,-0.03768332,-0.062851205,-0.026195616,0.070890315,0.0371352,-0.055588603,0.00927238,-0.03501123,-0.047503818,0.017494194,0.006999962,-0.009717728,0.0139428275,-0.010243011,0.008324588,-0.046590284,0.0051072314,-0.01783677,0.019915063,-0.014114115,-0.05590834,0.066642374,0.0030232298,0.033755116,0.029050412,-0.026378322,0.027931333,-0.0011776037,0.0134632215,0.005721013,-0.021445233,-0.015415903,0.02235877,0.0030603423,-0.05663917,0.012858005,-0.026880767,-0.024574092,-0.025556142,0.0078792395,0.048828445,-0.0365414,0.0120815,0.0029804078,0.0017257247,-0.053578828,-0.015061908,0.03485136,0.038254276,-0.027611595,0.01040288,-0.0029190297,0.0023866103,0.014502368,-0.02081718,0.020908533,0.015724221,-0.031653985,-0.0011933051,0.032773066,-0.00003064446,0.019469714,-0.038048733,0.017505614,-0.060750075,0.05691323,0.011156546,-0.005101522,0.0039167814,-0.018624695,0.02235877,-0.010140238,0.017939543,0.023021081,-0.017882448,-0.015027651,0.026172778,0.01812225,0.017448518,0.018990109,0.041223265,0.013303353,-0.01532455,-0.004382113,0.025533304,0.03613031,-0.013451803,-0.0115447985,0.00983192,-0.0043450007,0.014707914,0.022792697,0.0071312822,0.05367018,-0.031562634,0.03501123,-0.020988466,0.0101173995,-0.010842518,-0.018521922,0.026446838,0.015781317,-0.027908495,0.0362445,-0.016923236,-0.035171095,-0.045745265,0.006685934,0.03622166,-0.01659208,0.008124752,-0.020440346,0.003848266,0.010853938,-0.025601817,0.003328693,-0.028273908,-0.0035171097,-0.02305534,-0.015244615,-0.027474565,0.014365338,-0.010208754,-0.033092804,0.00018261779,-0.022769859,0.014159792,0.016706271,-0.022507219,0.006897189,-0.030991673,-0.050061718,-0.018030897,-0.013794378,-0.01067694,0.0011597612,-0.0069371564,0.01769974,-0.005858043,-0.0142511455,0.039852962,-0.02473396,0.029735563,0.025190728,0.026720898,-0.009215284,-0.00031331394,-0.010642682,0.00414802,-0.015541514,-0.021662198,-0.01532455,0.008101913,-0.023660555,-0.0076051787,-0.017459938,0.02937015,-0.022735601,0.04311885,-0.027040636,0.040264055,-0.019778032,0.019081462,0.011424897,0.0075823404,-0.02459693,0.0077079516,0.00386254,-0.0051100864,0.008735678,-0.012709555,-0.043666974,0.0089983195,-0.020017836,0.0023152402,0.033755116,-0.037021004,0.024094485,-0.024048809,0.03327551,-0.03695249,0.039715935,-0.021331042,0.038825236,0.018487664,0.029324474,0.00086500344,0.0020297605,0.0059779445,0.02178781,-0.011978728,0.019857967,-0.01952681,-0.030238008,-0.028068362,-0.051112283,0.01686614,0.0017242973,-0.036335856,-0.004958782,-0.057689734,-0.026926443,0.049970362,-0.024665445,0.011407768,0.01153338,0.018373473,0.0016229519,-0.006999962,0.0056153852,0.017071685,0.0055982564,-0.00065410533,0.005070119,-0.0026849364,0.021582264,0.01108803,-0.03864253,-0.00786782,0.01712878,-0.056091048,-0.009055415,0.001630089,-0.012241369,0.020063512,-0.019161396,0.029164605,-0.015004812,-0.048371676,0.010699779,-0.033206996,-0.0068343836,-0.023957456,-0.02541911,-0.0051957304,-0.02994111,0.02822823,-0.046065003,0.013588833,0.05293935,-0.01769974,0.01123648,-0.020177703,-0.017905286,0.010305816,0.014125534,-0.033526734,0.009380862,-0.026469676,0.02724618,0.00870713,-0.017711159,-0.0052356976,0.009734857,0.0049673463,0.027657272,-0.042479377,-0.026880767,-0.012252788,0.01165899,-0.024505576,-0.018750306,-0.031562634,0.0025022295,-0.00618349,-0.0013253394,-0.054172624,-0.029164605,-0.01334903,0.0066231284,-0.0026249858,-0.0034200465,-0.0035742056,-0.034942713,-0.0077935955,0.0030032462,-0.028205393,0.0194012,0.039533228,0.007388214,0.0049816202,0.04357562,-0.008438779,-0.0030432134,-0.012583944,0.00042929008,-0.009295219,-0.032361977,-0.042205315,-0.012743813,-0.008061946,0.0152103575,0.026766576,-0.0043193074,-0.017950963,-0.0038025894,0.015518676,0.021570845,-0.04227383,0.012378399,0.011453445,-0.005606821,0.023386495,-0.004176568,-0.011773182,-0.0041508744,-0.010254431,-0.04515147,-0.0060122022,-0.012618202,0.009500763,0.007405343,-0.037272226,0.02304392,0.00053705863,-0.07413337,-0.038825236,0.02950718,-0.021513749,-0.0088441605,0.02697212,-0.018727466,0.029164605,0.0031545504,0.0077935955,0.016946074,-0.0424337,-0.0033829343,-0.028159715,0.033755116,0.009437959,0.028822029,-0.004030973,-0.014399596,-0.01813367,-0.01700317,-0.013394707,0.018339215,0.0035228194,0.0072112167,0.0009413693,0.0015059053,-0.02614994,0.018716048,0.00087785005,-0.016009701,0.021993354,0.011773182,-0.022107547,0.006942866,0.010140238,0.007530954,-0.0030546326,0.014536626,-0.039122134,0.03501123,-0.0017085959,0.02345501,-0.020988466,-0.006126394,-0.0061035557,0.0128237475,0.031151542,-0.025327757,-0.036609914,0.009866178,-0.012389818,0.01194447,0.029301634,-0.010642682,-0.033412542,-0.024391385,0.0502901,-0.03676978,-0.011818859,0.020680148,-0.016797625,0.04567675,0.000013861377,0.037295066,-0.0085187135,-0.018750306,0.006280553,0.03720371,0.0013574559,0.011042354,-0.01068265,-0.015838413,0.01686614,-0.008547261,0.006223457,0.031220058,-0.0210684,-0.002683509,-0.0057723993,-0.021730714,-0.0073139896,0.020474603,0.018933013,0.02669806,-0.0045134337,-0.042091124,-0.008347426,0.010876776,-0.014045601,0.036975328,0.006840093,-0.002242443,0.02107982,0.017551292,0.0006020053,-0.005675336,0.009466507,0.043347236,-0.034211885,0.04172571,0.0009542158,0.01602112,-0.022735601,-0.03160831,-0.0052471166,0.011967308,-0.026378322,-0.0067259013,-0.0306491,0.0012546832,0.021856325,0.0005723868,0.02052028,-0.025259241,0.029118927,0.026492514,0.005392711,-0.0063547776,-0.0059950734,0.037066683,0.01054562,-0.001615815,-0.010305816,-0.020771502,-0.0032116463,0.003514255,0.024003131,-0.006685934,0.055542927,0.0013774395,-0.00026406872,0.031265736,-0.00323163,0.029347312,-0.025282081,0.01614673,0.027794302,-0.0066802246,0.03128857,-0.0022495799,-0.010602715,-0.029781241,-0.024208678,-0.021479491,0.026195616,0.001212575,0.054081272,0.0027249036,-0.045494042,0.04764085,0.0037454935,-0.017117362,0.027497403,0.054994807,0.05060984,-0.008256072,-0.021159753,-0.012241369,-0.000024912562,0.062348764,0.014673656,0.0131434845,-0.03964742,-0.00086286233,-0.009186736,-0.019275589,0.0052299877,-0.031083029,0.012538267,0.0388024,0.016694851,0.010214463,0.039396197,-0.0032287752,0.014833524,0.02459693,0.0061206846,0.007645146,0.014981974,-0.03313848,0.000092245624,0.019412618,0.013189161,0.030945998,-0.014171211,0.013417545,-0.030100977,-0.022655668,-0.003879669,-0.008164719,0.017688321,-0.00646326,0.033206996,0.011499122,-0.013543156,-0.006480389,-0.0076794033,-0.019184235,0.0011497694,0.046179194,0.02544195,0.020668728,-0.016238084,-0.033937823,0.014650817,-0.04611068,0.023101015,0.023009662,0.035102583,0.007262603,0.021433815,0.023226626,0.026264131,0.026012909,-0.004045247,-0.055999696,-0.026264131,0.012012985,0.01742568,-0.014445272,-0.0050901026,-0.009346604,-0.010151657,-0.042045448,-0.0005160045,-0.015290292,-0.025464788,-0.031585474,0.017688321,0.0012589653,0.000119009346,-0.0050387164,0.020063512,0.032544684,-0.021730714,0.0018741741,0.016809044,0.0069714137,0.018807402,0.0015344532,0.024368545,-0.011442026,-0.006394745,-0.009369443,0.022712763,0.014924878,0.051203635,0.0069200275,0.006531775,-0.0074510197,0.0015087601,0.004510579,-0.015198939,0.02234735,0.037751835,-0.008592938,0.02822823,0.037066683,-0.033892147,0.005309922,-0.011276447,-0.022587152,-0.034097694,-0.000669093,-0.004776075,-0.004810333,0.0029861175,-0.0105912965,0.0077022417,0.0048674284,0.027086312,-0.0061606513,-0.0002963636,-0.0036027536,0.005818076,-0.007987722,-0.0070228004,0.0013938545,-0.0013296216,-0.0037569127,-0.017802512,-0.013782959,0.003865395,-0.019469714,-0.008924095,0.0056524975,-0.017928123,0.042547893,0.0027177667,0.019070042,-0.03284158,-0.0068058358,-0.04622487,0.017962381,-0.00414802,-0.03119722,-0.04355278,0.01881882,-0.0061035557,-0.015016232,-0.022495799,0.007645146,0.00036166707,-0.007405343,-0.014696494,0.0024123034,-0.005441243,0.027977008,0.016614918,0.024300031,0.01994932,0.03259036,-0.03286442,-0.005406985,-0.010488523,-0.011190804,-0.046407577,-0.031083029,-0.002415158,0.023135273,-0.00940941,-0.018362053,0.024231516,-0.0018970125,-0.034097694,0.053304765,0.003962458,0.014353919,-0.01728865,0.018419148,-0.017745417,-0.011070902,-0.0654091,-0.046430416,-0.013725863,-0.06618561,0.014879201,0.014959135,-0.011773182,-0.021513749,0.0029004735,-0.051888786,-0.007856401,0.013874313,0.014490949,0.0043050335,-0.014570883,0.012115758,-0.00400528,0.061663613,0.022667088,-0.020897113,0.00435642,0.0401727,0.01813367,-0.003191663,0.019755194,0.010557039,-0.010853938,-0.007388214,0.0030175203,0.0261271,-0.024916667,0.011978728,0.0021368153,-0.014970555,0.048691414,0.014719333,0.0060064923,-0.002676372,0.031973723,-0.0035199644,0.053487472,-0.02316953,-0.027611595,0.026766576,-0.010191625,-0.0009356597,0.006417583,-0.0012546832,-0.020897113,-0.030831806,-0.0043764035,0.00554687,-0.00062270253,-0.01040859,-0.03204224,0.026538191,-0.02305534,0.0010591296,-0.010893905,-0.004610497,0.0058437693,-0.0076794033,0.0044220802,-0.0069200275,-0.034440268,-0.04129178,-0.004864574,0.013782959,0.028456615,-0.007148411,-0.0042507923,-0.003597044,-0.009380862,0.0064061643,0.041017722,0.0060179117,-0.007405343,-0.008107623,0.057552703,-0.053989917,-0.008952643,-0.0066402573,0.020554537,0.0034742877,0.0031117285,-0.0022010484,0.050518483,0.005426969,0.0063319393,-0.01306355,0.008204686,-0.023957456,0.015975444,0.0068686414,0.0055325963,-0.016706271,0.027314696,0.030260846,-0.0093180565,0.048600063,0.0008421651,-0.020348992,0.03638153,0.008741388,-0.024893828,0.015655706,0.030032463,-0.020314734,-0.019503972,0.0062177475,0.012618202,0.0063205203,0.0039710226,-0.026286969,0.009329476,0.0065146466,-0.010625554,-0.028433776,0.03724939,0.0034799974,-0.013805797,0.028776351,-0.0044192253,-0.031242896,0.029552856,0.00280912,0.01446811,0.029438665,-0.017676901,0.022758441,0.015187519,-0.039419036,-0.017950963,0.00033775816,-0.0063148104,-0.015084746,-0.030375037,0.020508861,0.04188558,-0.008113333,0.010808261,0.00075580744,0.0063033914,-0.010385751,-0.03302429,0.01828212,-0.010003208,-0.013565995,0.024916667,0.0017885303,-0.01838489,-0.021022724,-0.0099518215,0.005943687,0.015689963,-0.019766614,-0.0443978,-0.0058637527,0.020554537,0.0014609423,-0.019926481,0.030854644,-0.01883024,0.00013756553,-0.017094523,-0.010808261,-0.0023195224,-0.008079075,-0.023797587,-0.0028505146,-0.01659208,0.03768332,0.0013281943,-0.003514255,-0.012720975,0.0027762898,-0.00870142,-0.031265736,-0.0006748026,-0.00801627,-0.014445272,0.029963948,-0.0039025072,0.021410976,0.018898755,-0.023158113,0.017813932,0.02107982,-0.0155300945,-0.00005116331,-0.06294256,-0.00085358426,-0.025373435,-0.0056410786,0.0025678896,-0.02991827,-0.02991827,-0.01614673,0.0002526495,0.02036041,-0.0011055201,-0.0020697278,-0.009900436,0.009780534,-0.0033658054,-0.025647495,-0.01503907,-0.006771578,-0.030009624,-0.0035114002,-0.052208524,0.008747097,-0.050518483,0.01896727,0.00842736,0.051112283,0.01994932,-0.020965628,-0.020897113,-0.007685113,0.0032002272,-0.00040680854,-0.0034257562,-0.0066688056,0.025921555,-0.01838489,-0.005820931,0.011761763,-0.013794378,0.03919065,0.05229988,0.018316377,0.023569202,-0.027177665,0.026720898,-0.004227954,0.020189123,-0.00020750804,0.0105342,-0.019287007,-0.014867782,0.012389818,-0.022541476,0.004330727,0.017471356,0.045585394,-0.010094562,0.013257677,-0.030717613,-0.020874275,-0.0171402,0.019755194,0.0055040484,-0.051797435,-0.010014627,0.0074852775,0.008912676,0.015335969,-0.0005588265,-0.0110651925,0.035445157,-0.029324474,0.015678544,0.0018042315,-0.021822067,0.014422433,0.006674515,0.014216888,-0.018579017,-0.013109227,0.026652383,-0.032795906,-0.05997357,0.013999924,0.0017085959,-0.0019112865,-0.03679262,-0.00604075,-0.015610029,0.025898717,-0.011219352,0.022096127,0.0036455756,0.0000906398,0.029826917,-0.050472807,0.02585304,-0.025967231,0.026309807,-0.012287046,0.01152767,-0.01040288,-0.015552933,0.023409333,-0.032339137,0.025236404,-0.00393391,0.019960739,0.012572525,0.021490911,-0.0017071685,-0.03528529,-0.006252005,-0.008273201,-0.037706155,-0.000507797,-0.018933013,0.0466588,-0.0061720707,-0.03512542,0.017779674,0.0015016231,-0.01334903,0.027702948,-0.009175317,-0.006297682,-0.0032773067,-0.0010705488,-0.060795754,0.0074852775,-0.024642605,0.0022039032,0.0051757465,0.012880843,0.018362053,-0.033800796,0.047549497,0.01586125,-0.0029490052,-0.021730714,-0.004653319,0.034052018,-0.014308242,0.007839272,0.030945998,0.026332647,0.036998168,0.011898793,0.009614956,0.0010455693,-0.028251069,-0.018419148,0.002278128,-0.032247785,-0.034508783,-0.021742133,0.017242974,-0.013897151,0.010294397,-0.0024608348,-0.0074966964,0.04567675,0.02162794,0.0020283333,0.0056039663,0.03722655,-0.02921028,-0.026515353,0.0018427713,0.02361488,-0.05239123,-0.011504831,0.001411697,0.025921555,-0.038939428,-0.013862893,-0.03861969,0.0443978,-0.0066231284,0.037432097,-0.022872632,-0.035193935,-0.036290176,0.01838489,-0.002379473,0.048006263,-0.03270455,-0.048097618,0.001236127,0.015644286,0.01742568,0.02235877,-0.007114154,0.010008918,-0.006309101,0.006383326,0.028867705,-0.038825236,-0.012766652,-0.010311526,-0.018864498,-0.0045790942,-0.031905208,-0.01686614,-0.0032230655,-0.01615815,-0.038162924,0.003779751,-0.041520163,-0.015221776,-0.01306355,0.03722655,0.0038197183,-0.004830316,-0.027337534,0.010174496]},{"id":"guide-emojis-1","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Create Emojis & Stickers\nUse guild.createEmojisBulk() and guild.createStickersBulk() with base64 image data. Use emoji.edit() / emoji.delete() and sticker.edit() / sticker.delete() for individual updates.\n\n```javascript\nimport { Client, Events } from '@fluxerjs/core';\n\nconst client = new Client({ intents: 0 });\n\n// Create emoji from URL (fetch and convert to base64)\nasync function createEmojiFromUrl(guild, name, imageUrl) {\n const res = await fetch(imageUrl);\n const buf = await res.arrayBuffer();\n const base64 = Buffer.from(buf).toString('base64');\n const [emoji] = await guild.createEmojisBulk([{ name, image: base64 }]);\n return emoji;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || !message.content.startsWith('!addemoji ')) return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const [_, name, url] = message.content.split(/\\s+/);\n if (!name || !url) return;\n const emoji = await createEmojiFromUrl(guild, name, url);\n await message.reply(`Created emoji :${emoji.name}:`);\n});\n\n// Bulk create stickers\nconst stickers = await guild.createStickersBulk([\n { name: 'cool', image: base64Image, description: 'A cool sticker' },\n]);\n\n// Edit and delete\nawait emoji.edit({ name: 'newname' });\nawait emoji.delete();\n```","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[0.012299076,0.007264533,-0.01700936,-0.01787405,-0.025963452,0.00416132,-0.023642443,0.057979733,0.00020319501,0.024143051,0.01664528,-0.029103642,0.023437647,-0.058389325,-0.012321831,0.025485598,-0.06348644,-0.0114912735,-0.010996353,-0.015985386,0.027556302,-0.0073839966,0.037750542,0.07031294,0.0054469774,0.04170991,-0.005421378,0.047512434,-0.006894764,-0.04421296,-0.032425873,-0.036407996,0.07991555,-0.031333633,-0.04607887,0.048195083,-0.0040276344,0.02996833,-0.020854956,-0.0048923246,-0.0093238605,-0.03916135,0.032334853,0.016065028,-0.01564406,0.026509572,-0.03993502,0.03219832,0.019751338,0.016383598,-0.014449423,-0.006900453,-0.0029268616,0.016895585,-0.009852914,-0.014767993,-0.05929952,0.0061381604,-0.07108661,0.060619313,0.049423855,-0.039548185,0.028489256,-0.032403115,0.008248687,0.047011826,-0.047148354,0.023801727,0.03092404,0.047239374,0.025826922,-0.011923619,0.020911843,-0.029126396,-0.006542062,-0.051471803,0.0022484781,0.017396195,0.0113263,-0.029991087,-0.005822435,0.031492915,-0.036385242,-0.03970747,-0.031083327,0.015791968,-0.043553066,-0.04134583,-0.030400677,-0.023983767,0.011855354,-0.01141732,-0.066353574,-0.012287699,0.067445815,-0.006689969,0.020433988,0.007008539,-0.018283641,0.056386884,0.072588444,-0.038000844,-0.08310125,0.006058518,0.0031231234,-0.026031718,-0.017896805,0.07354415,-0.01000651,0.007531904,-0.08633246,-0.014483556,-0.0053360467,-0.009921179,0.03520198,-0.023392137,0.013425448,-0.018158488,0.03520198,-0.048832223,-0.07044947,-0.01541651,0.059071973,-0.0412093,0.021992706,-0.01546202,-0.029103642,-0.012481116,-0.03156118,-0.029080886,0.03065098,-0.033586375,0.050652623,-0.004039012,-0.03552055,-0.01700936,0.032721687,-0.009659496,-0.021537606,0.016702168,0.040321857,-0.050470583,0.01546202,-0.004693218,-0.06121094,-0.011775712,-0.07449986,0.013141011,-0.065443374,0.010074775,-0.04107277,-0.009284039,-0.015154828,-0.004556688,0.013186521,-0.01700936,0.0045509995,0.010842756,-0.035293,-0.018112978,-0.005233649,-0.008066647,0.03615769,-0.03556606,-0.0024930944,-0.015712326,0.004511178,-0.011485585,-0.027078446,0.028921602,0.038046356,-0.039844,-0.016611148,-0.0036720878,-0.042278785,-0.01714589,0.0072076456,-0.02001302,-0.04648846,0.030628227,0.012367341,0.025508352,-0.076775365,-0.0061666043,-0.03888829,0.01787405,-0.0026794008,0.01568957,0.015211715,0.016360844,-0.041277565,0.000011721934,-0.004693218,-0.022299897,0.07645679,-0.01500692,0.06157502,-0.0037119088,0.034405556,-0.028580276,0.021071127,0.031538427,0.016906964,-0.020707047,0.0025087385,-0.049378343,-0.02024057,-0.025531108,0.031447407,0.027283242,0.03115159,-0.014642841,-0.03042343,0.008407972,-0.058525853,0.045441728,-0.02987731,0.014893145,-0.029809047,0.01955792,-0.03679483,0.010933776,0.030491697,-0.031856995,0.0036720878,0.008538812,0.0031544114,-0.004275095,0.0050658314,0.036499016,-0.008271442,0.009727761,-0.03383668,-0.06257624,0.020399855,-0.047011826,0.019432768,0.025326312,0.019626185,0.017316554,-0.009414881,-0.048468143,0.009727761,-0.028807826,0.0003189255,0.00868672,-0.033768415,-0.005077209,0.03993502,0.0054242224,0.08123534,-0.03292648,0.0093011055,0.013095501,0.025895188,-0.018465681,-0.022254387,0.02269811,0.016429108,0.023483157,-0.009414881,-0.017214155,-0.03652177,0.016770434,0.006035763,0.020115418,-0.004428691,0.044417754,-0.032812707,-0.022766374,-0.0007729588,-0.019751338,0.028466502,0.018340528,0.0014022767,0.008567257,-0.008624144,0.042415313,-0.018715985,0.026714366,-0.023005303,-0.04330276,-0.026691612,0.009540033,-0.022117857,0.04343929,0.043006945,-0.039684717,0.0028216196,0.017726144,0.048104063,0.004829748,0.0027249109,-0.003552624,0.045783054,0.045077648,0.00832264,0.026464062,0.036749322,0.046784274,-0.034951676,-0.047831003,0.028079666,0.0023935414,-0.025531108,-0.017111758,-0.0113319885,-0.018750118,0.06826499,-0.00054611993,0.047375903,0.0045140227,-0.009949623,-0.010308014,-0.029012622,0.027897626,0.015985386,0.063987054,0.005193828,-0.017669255,0.014995543,-0.017316554,0.04298419,-0.055249132,-0.041050017,-0.0719513,-0.015018298,-0.03970747,0.014608708,-0.014620086,0.006451042,-0.017111758,0.015587173,0.08132636,0.064169094,-0.009517278,0.027169466,0.0076741227,0.04116379,0.002960994,-0.0034729815,-0.04371235,-0.0032681865,-0.021594493,0.0036692433,0.0066217044,0.021480717,0.06626255,-0.028079666,-0.0028884625,-0.029308436,0.0692207,0.008834627,-0.045737546,0.052700575,-0.047330394,0.0040703,-0.037409216,0.0023167431,0.010125974,-0.024029277,0.025758658,-0.013357183,0.018852515,0.00782203,-0.010455921,0.026395798,0.020399855,0.047375903,-0.031538427,-0.00836815,0.019068688,-0.01541651,-0.0051284074,-0.024802947,-0.018021958,-0.012993104,0.031310875,-0.019250728,0.03019588,0.013994323,0.00836815,-0.005990253,-0.012867951,-0.003316541,0.0055180867,0.016884208,-0.011360432,-0.00786754,0.005552219,0.036225956,-0.011787089,-0.059982173,0.021457963,0.01555304,0.021184903,0.010125974,0.029513232,-0.016087784,0.031720467,0.016884208,0.01687283,0.025599372,0.0043718037,0.0070711155,0.021480717,-0.014221873,0.0091759525,0.017885428,0.001905731,-0.013357183,-0.008328329,0.019717205,0.011991884,0.011206836,-0.024052031,0.00026310465,-0.029399456,-0.009227151,0.025713148,-0.036567282,-0.032767195,0.017942315,-0.052564044,0.017748898,-0.03879727,0.013584733,-0.041232057,-0.031265367,-0.02992282,-0.04116379,-0.006177982,0.0412093,-0.014779371,0.04407643,-0.027146712,-0.0029126396,-0.013960191,-0.013448203,-0.009847225,-0.055385664,-0.0115481615,0.0030577027,0.046101626,-0.018272262,0.026896406,-0.02992282,-0.026350288,0.0066444594,-0.0073214206,-0.024711927,-0.022686733,0.024575397,-0.0091076875,-0.010239749,0.01796507,-0.007418129,0.0034957365,0.026555082,-0.02005853,0.0030463252,0.019956132,0.005239338,0.022004083,0.019922,-0.0058935443,-0.057433613,0.023574177,0.032494135,0.022026837,-0.020024398,0.0050231656,0.03606667,0.037727784,-0.0020010176,-0.043325514,-0.008572945,-0.041050017,0.04157338,0.049878955,0.028147932,0.03565708,-0.014108098,-0.063805014,-0.039844,0.07691189,0.026668856,-0.07518251,-0.009813093,-0.0416644,-0.026191002,0.021913063,0.024643661,-0.009722073,0.011258035,-0.051562823,-0.02024057,-0.03611218,-0.010905333,-0.02196995,0.036954116,-0.042779393,-0.04216501,0.062849306,0.01755548,0.018727362,0.034269027,-0.013300296,0.03588463,0.0068378765,0.019683072,-0.001526007,0.002952461,-0.025917942,0.008254375,0.0011981928,-0.03470137,0.043234494,-0.03779605,-0.025007742,-0.035952896,0.01705487,0.020069908,-0.0113319885,-0.015291358,-0.012651779,-0.014972788,-0.049787935,-0.009613986,0.0000036304664,0.017862672,-0.027305996,0.015371,0.004912235,-0.011610737,0.002101993,-0.026077228,0.010199928,0.007691189,-0.031788733,-0.00044265582,0.04362133,0.011946374,0.03379117,-0.040048797,-0.012026016,-0.040503897,0.03593014,0.0042551844,0.008464859,0.015405133,-0.027351506,0.026441308,-0.0070654266,0.038820025,0.031515673,-0.024780191,-0.0005564308,0.018670475,0.023096323,0.019353125,-0.0020152396,0.02278913,0.0040105684,-0.012378719,-0.0077423877,0.020581895,0.02969527,-0.047603454,0.0021631469,-0.011576605,0.006109717,0.045350708,0.03183424,0.0037119088,0.0384787,-0.022550203,0.014893145,-0.027192222,-0.01527998,-0.023369383,-0.064169094,0.016201558,0.0037574188,-0.048604675,0.029900067,-0.017987825,-0.018226752,-0.009022356,0.011787089,0.026532328,0.0026210912,0.004067456,-0.01755548,0.020354345,0.01983098,-0.032721687,0.0062064254,-0.03597565,0.010717603,-0.019387258,-0.025280802,-0.056750964,0.0058935443,-0.018329151,-0.024370601,0.000303637,-0.018454302,0.004744417,0.03351811,-0.0076513677,0.02278913,-0.03388219,-0.034360047,-0.007918739,-0.016110538,0.014369781,0.020229192,0.007418129,0.0067980555,-0.007059738,0.007509149,0.033859435,-0.0014975632,0.015120695,0.037682276,0.0029809047,0.0006200737,-0.0028713963,0.027442526,-0.015257225,-0.027260486,-0.009710695,-0.0065306844,0.00013190787,-0.03397321,0.025713148,-0.021617247,0.021867553,-0.023665197,0.032425873,-0.02065016,0.057797693,-0.013937436,0.022846017,0.036271464,-0.009272661,-0.019523788,-0.00076869223,0.01546202,-0.0069573405,0.0089256475,0.0062519354,-0.027715586,0.0019071532,-0.014267383,0.0015544507,-0.00052372046,-0.04089073,0.026668856,0.0041470984,0.016804565,-0.032949235,0.040913485,-0.008453482,0.032266587,-0.018829761,0.022595713,-0.004912235,0.007264533,-0.0034985808,0.020980107,-0.012321831,0.003674932,-0.01951241,-0.01091671,-0.02960425,-0.050197523,0.03333607,0.0047330395,-0.010364901,0.009705006,-0.048513655,-0.010455921,0.033358827,-0.031720467,-0.0020365722,0.0036550215,0.012390096,-0.009739139,-0.0076286127,-0.004448602,0.00095784315,0.002360831,0.00977896,0.022163367,0.020354345,0.020365722,0.008652587,-0.027192222,0.004425847,0.0070199165,-0.04644295,-0.023642443,0.010160106,-0.016702168,-0.0023394981,-0.0034104052,0.043006945,0.007145069,-0.03506545,0.007691189,-0.04216501,0.010984975,-0.028534766,-0.014108098,-0.005685905,-0.023221474,0.011451452,-0.020581895,0.0027761096,0.031265367,-0.023915501,-0.019762715,-0.022277143,-0.009284039,0.030855777,0.015814723,-0.02065016,-0.00032994745,-0.022800507,0.026236512,-0.0015601395,0.00088175613,-0.011832599,0.010342146,0.016679414,0.03269893,-0.02206097,-0.017498594,-0.0311971,0.0023807415,-0.0022285676,-0.00037901293,-0.0231077,-0.0018886648,-0.012879329,-0.007577414,-0.024256827,-0.006013008,-0.017760275,0.006405532,-0.013277541,-0.0026210912,-0.008976846,-0.009665185,0.008646899,-0.017885428,-0.027283242,0.01596263,0.029080886,0.010410411,0.005139785,0.039320637,-0.01746446,-0.021310056,-0.009500211,0.024711927,-0.02087771,-0.014938655,-0.0311971,-0.027237732,0.0021162147,0.035361268,0.022720864,-0.015746458,-0.019341748,-0.025098762,-0.0037716408,0.008726542,-0.045874074,0.03069649,0.0073157316,-0.014494933,0.018181242,-0.0058110575,-0.027943136,-0.028034156,-0.024393357,-0.036089424,-0.03228934,-0.012902084,0.024029277,-0.0020550606,-0.04057216,0.032061793,0.002323854,-0.07436333,-0.04134583,0.047239374,-0.044190206,-0.015450643,0.0025770036,-0.010717603,0.024598151,0.024598151,0.0007637146,0.007981315,-0.038729005,0.0020152396,-0.013368561,0.031674955,0.015939876,0.023096323,-0.0031487227,-0.026873652,-0.018033335,-0.002012395,-0.009386436,0.013584733,0.0070483605,0.037682276,-0.014654218,0.0032141434,-0.018624965,0.019580675,-0.01487039,0.010586763,0.039684717,0.01114426,-0.037545744,0.0035668458,0.022948414,0.035042696,0.016850075,-0.008908581,-0.031401895,0.021913063,-0.0074693277,0.0114116315,-0.046238154,-0.020775313,-0.014699728,0.010802935,0.04216501,-0.024416111,-0.01527998,-0.0016070717,-0.038023602,0.022481937,0.021048373,-0.0052222717,-0.011787089,-0.04139134,0.013641621,-0.04248358,0.0072531556,-0.0006186515,0.014779371,0.033040255,0.0057627033,0.029672517,-0.034223516,-0.020593273,0.017817162,0.016201558,-0.0011896597,0.012811064,-0.0028827738,0.022231633,0.019410012,-0.012151169,-0.0000016749589,0.034678616,-0.00557213,0.0037033758,0.012071526,-0.014290138,-0.008288507,0.04061767,0.015894366,0.020763936,0.0000058109686,-0.017839918,-0.0167363,0.004249496,0.031083327,0.048377123,0.0049236123,0.005748481,-0.009813093,0.027260486,-0.012310454,-0.015564418,-0.004093055,0.051653843,-0.028989866,0.014119476,0.003916704,0.021446586,-0.006490863,-0.026464062,-0.001921375,0.004269406,-0.00777652,-0.007924428,-0.042415313,0.019990265,0.0067297905,-0.0034559153,0.026350288,-0.024279581,0.008567257,0.022709487,0.0050060996,-0.0054242224,-0.00964243,0.03374566,0.012162546,0.0024618062,-0.012378719,-0.018283641,-0.002359409,0.0006278957,0.006399843,-0.012344586,0.04039012,-0.0067753005,0.006126783,0.021184903,-0.014585953,0.023528667,-0.014233251,0.0045254,0.027510792,-0.0066217044,0.018499812,-0.013243409,-0.024393357,-0.0024162962,-0.03228934,-0.016759055,0.019455522,-0.006445353,0.037864316,-0.0113092335,-0.04616989,0.022254387,0.014290138,0.0025869587,0.016394975,0.042233273,0.045350708,-0.019011801,0.0014541865,-0.033267807,0.0021531917,0.04607887,0.025189782,0.031128837,-0.02092322,-0.032152813,-0.015746458,0.00029208174,0.0030264147,-0.009477456,-0.0311971,0.014403913,0.00048034376,0.014733861,0.026941916,0.0018246664,0.004314916,0.042961434,-0.01632671,0.020206438,0.028580276,-0.03019588,-0.013607488,0.031674955,0.008567257,0.033813927,-0.009881358,0.020399855,-0.03292648,-0.016724924,-0.009517278,-0.0066387705,0.015382378,0.0077480767,0.0014605864,-0.01109875,-0.0051739174,-0.0055209314,0.0002954594,-0.019660318,-0.002474606,0.033950455,0.01105324,0.009676563,-0.0043462045,-0.021355566,0.028011402,-0.054338932,0.052473024,0.014119476,0.030127617,-0.0057513257,-0.0025002053,0.02046812,0.03106057,0.0072247116,-0.011349055,-0.022993924,-0.010495743,-0.008419349,-0.005062987,-0.0051966724,-0.007304354,-0.008572945,0.016759055,-0.051835883,-0.008123534,-0.038296662,-0.017794408,-0.044235714,0.005216583,-0.0058537233,0.006610327,0.005461199,0.00015119629,0.031629447,-0.021310056,-0.000630029,0.008754985,0.0057797693,0.031174347,-0.0044144695,0.003956525,-0.030582717,-0.02178791,-0.039047576,0.029103642,0.0043718037,0.056068312,0.0035270245,0.018875271,-0.016702168,0.023687951,0.0011249501,-0.016588394,0.041823685,0.026486818,-0.015541663,0.017862672,0.0032368985,-0.02278913,0.016247068,-0.016793188,-0.013880548,-0.02233403,-0.001844577,0.0008085135,0.007122314,0.00539009,-0.010746048,0.013197899,0.010296636,0.025986208,0.0112182135,-0.009420569,-0.006195048,-0.00025066052,0.012697289,-0.004926457,0.0066842805,-0.0070711155,-0.014142231,-0.022038216,-0.028694052,-0.022356784,0.003234054,-0.019034555,0.002010973,-0.0043547377,0.027351506,0.017498594,0.007941494,-0.037409216,-0.0090849325,-0.030742,0.017794408,-0.0093693705,-0.0348379,-0.03010486,0.005887856,0.006849254,0.016577015,-0.022686733,0.00051589846,0.011957751,0.011798467,-0.0056773718,0.021310056,-0.0069744065,0.042824905,0.012970349,-0.003834217,0.033950455,0.02256158,-0.037500236,-0.020263325,0.0015160517,-0.0035554683,-0.03602116,-0.014904523,-0.02183342,0.01714589,-0.015314113,-0.002687934,0.012890706,-0.027101202,-0.022891527,0.050925683,-0.004357582,0.039639205,0.0059618093,0.04139134,-0.0077878977,-0.021230413,-0.050060995,-0.04157338,-0.003143034,-0.044622548,0.013095501,0.023505913,0.010268193,-0.012424229,0.017168645,-0.07372619,0.00873223,0.010859823,-0.002943928,-0.007145069,-0.013857793,0.012913461,0.013175144,0.06498827,0.012503871,-0.029126396,-0.004644864,0.06867458,0.006945963,0.0031259677,0.031697713,-0.008863072,-0.027442526,-0.014130853,0.0034331603,0.02169689,-0.012970349,0.018966291,0.015359623,-0.032539647,0.044622548,0.021480717,-0.018477058,0.016303955,0.023801727,-0.01996751,0.043234494,-0.013778151,-0.008521747,0.022413673,-0.0065477504,0.0052478714,0.012151169,0.002983749,-0.0025898032,0.003029259,0.009249906,-0.023346627,-0.0002954594,-0.012913461,-0.03797809,0.036635544,-0.0029666827,-0.012902084,-0.003666399,-0.0022527447,0.0011107282,0.010609518,-0.008555879,0.008681032,-0.024143051,-0.038182884,-0.026987426,0.013846416,0.03055996,0.023756217,-0.0050885864,0.009972378,-0.0012102814,-0.004363271,0.031265367,-0.021719646,-0.005188139,-0.015632683,0.06385052,-0.037477482,0.0020507942,-0.007145069,0.050561603,0.00388826,-0.012754176,-0.0022527447,0.04061767,0.017794408,0.035179228,-0.019000422,0.006627393,-0.026259268,0.01623569,0.004676152,-0.014631463,-0.012890706,0.031765975,0.0017421795,-0.028625786,0.04434949,0.018602211,-0.015200338,0.033540867,0.03310852,-0.010410411,-0.003865505,0.017123135,-0.012026016,-0.03474688,0.020206438,0.020308835,0.0039963466,0.004667619,-0.032858215,-0.0023793194,-0.0034303158,-0.011610737,-0.02119628,0.021310056,0.027101202,0.0049833446,0.013960191,0.016850075,-0.028398236,0.029718027,-0.008954091,0.016565638,0.04284766,-0.022675354,0.029900067,0.0042637177,-0.012993104,-0.022026837,0.0010716182,0.015063808,-0.009045111,-0.0453052,0.024211317,0.065079294,-0.0014733861,0.020274702,-0.015302735,0.026941916,0.0019725738,-0.025212537,0.044986628,-0.0012422806,0.0116846915,0.019432768,-0.0116391815,-0.019080065,-0.026441308,-0.0010573963,-0.0043518934,0.01682732,-0.014802125,-0.025144272,-0.031583935,0.009653808,0.0407542,-0.003953681,0.012014639,-0.015211715,0.0031970772,-0.014335648,-0.010512808,-0.011798467,0.0057427925,-0.0339277,0.007526215,-0.018841138,0.025007742,0.027260486,-0.0045822877,-0.018807005,0.00502601,-0.0028216196,-0.0298318,-0.004949212,0.000018643987,-0.036476262,0.0362032,-0.016303955,0.018124355,-0.009830159,-0.01678181,-0.012594891,0.0059333653,-0.028944356,0.006422598,-0.063076854,0.027920382,-0.0045054895,0.018727362,0.018317772,-0.03920686,-0.018715985,-0.0032966302,-0.0017734676,0.016929718,0.0022484781,0.01923935,-0.025371822,-0.00084975694,0.000112797235,-0.014108098,-0.012708666,-0.024325091,-0.024052031,-0.01741895,-0.03329056,0.001951241,-0.02192444,0.018044712,0.005967498,0.042733885,0.04061767,-0.008009759,-0.021992706,0.015837478,0.012333209,-0.0048240595,-0.011440075,-0.016747678,0.007509149,0.01960343,0.012117036,0.014039833,0.003074769,0.03042343,0.043325514,0.014608708,-0.007480705,-0.0167363,0.025826922,0.0114685185,0.010194239,0.00823162,0.0067297905,-0.0038711939,-0.011900864,0.012435606,-0.025053252,-0.006018697,0.023369383,0.050971195,0.009722073,0.019865112,-0.019227972,-0.008846005,0.007145069,0.007890295,0.019546542,-0.051198743,-0.01527998,-0.0010645072,-0.0114798965,-0.0042096744,0.020763936,-0.0076741227,0.031583935,-0.024529887,0.014460801,-0.011246657,0.014164986,0.0009038001,-0.0092783505,0.015291358,-0.0060300743,-0.0023409203,0.043689594,-0.026122738,-0.050698135,0.023392137,-0.010455921,0.0013304562,-0.03033241,0.0047501056,-0.01737344,0.03388219,-0.022083726,0.003552624,0.0011448608,0.009784649,0.028603032,-0.03602116,0.040594917,-0.017362064,0.036590036,-0.017032115,0.009710695,-0.014699728,-0.03456484,0.03788707,-0.027055692,0.027146712,-0.024825701,0.007031294,-0.007190579,0.012947594,0.0025627816,-0.007264533,-0.0023039435,-0.0114343865,-0.03697687,0.010239749,0.0007878918,0.033313315,-0.006542062,-0.024234071,0.0065022404,0.008254375,-0.0075887917,0.010791558,-0.0090849325,0.0012963237,-0.0031743222,0.0060926504,-0.041960213,0.007873229,-0.0008860227,-0.0012949016,0.00059482985,0.031606693,-0.0013574779,-0.036407996,0.022857394,0.0013169454,0.0004600776,-0.026464062,-0.02964976,0.03306301,-0.013186521,-0.0051511624,-0.006018697,0.019182462,0.035224736,-0.010296636,0.02210648,0.01646324,-0.017271044,-0.0035782233,-0.008851694,-0.008629832,-0.053110164,-0.0008134912,0.013607488,0.0028216196,-0.0033819615,-0.005324669,-0.02042261,0.028989866,0.015951253,-0.021298677,0.012435606,0.03797809,-0.037204422,-0.0064112204,-0.00093651033,0.0055550635,-0.022857394,-0.0017222689,0.0002702156,0.014096721,-0.03147016,0.012378719,-0.03333607,0.04252909,0.0072247116,0.02996833,-0.012526626,-0.03015037,-0.024529887,0.031128837,0.012674534,0.029080886,-0.0074920827,-0.03597565,0.022891527,0.0030776134,0.0077480767,-0.007645679,-0.007486394,0.010922398,0.0038854158,0.014153608,0.023915501,-0.044281226,-0.014722483,-0.0019626184,-0.025417332,-0.006581883,-0.028898846,-0.018681852,0.004363271,-0.02247056,-0.021958573,0.009807404,-0.052017923,-0.010569696,-0.006041452,0.024666417,0.026964672,-0.031606693,-0.045145914,-0.0033421402]},{"id":"guide-emojis-2","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Quick Reference","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[0.000002835665,-0.0006991855,-0.018913923,-0.017874695,-0.058098875,0.001905758,-0.03386656,0.04523692,-0.023877757,0.00041148785,-0.030296508,-0.003310242,0.006754972,-0.04054206,0.003722876,0.017911375,-0.039784037,0.015820695,-0.0034416737,0.047584347,0.016199708,-0.0040835487,0.013326552,0.062500305,0.031788103,0.04626392,-0.06029959,0.019953148,0.013583302,-0.0053703557,-0.0049913437,-0.032203794,0.09189208,-0.0296852,-0.035358153,0.01593073,-0.03151913,0.028658198,-0.007610806,0.0117982775,-0.016603172,0.010111063,0.040077463,-0.0066388235,-0.022960793,0.018742755,0.0025583312,0.01095467,0.01571066,-0.004948552,0.015148254,-0.007292925,-0.0019485496,-0.0066327103,-0.010257777,-0.045408085,-0.031592485,-0.032326058,-0.0056576715,0.0018369857,0.032008175,-0.04440554,-0.027557842,-0.019610815,-0.01811922,0.018033637,-0.06699955,0.03880594,-0.014451361,-0.043354083,0.03266839,0.040273085,-0.01756904,-0.031250153,0.028609294,-0.041495703,-0.0044442215,0.042204823,-0.0037289893,-0.04083549,-0.02672646,0.020295482,-0.038047917,-0.021249125,-0.043965396,-0.019781983,-0.051154397,-0.03283956,-0.023437614,-0.024489067,0.0013059104,-0.033010725,-0.045677062,-0.045065753,0.04699749,-0.015771791,-0.019036185,0.022801852,-0.045530345,0.02672646,0.047486536,-0.054822255,-0.09820079,0.003169641,0.041935846,-0.005266433,-0.030051986,0.024171187,-0.033695392,0.01596741,-0.0695915,-0.026873175,-0.033524223,0.0312257,0.034331154,0.025283769,0.018644946,-0.04924711,0.047168657,-0.048366822,-0.06939588,-0.032595035,0.058539018,-0.025259318,-0.004413656,0.007977592,-0.020002054,-0.012434039,-0.037338797,-0.034331154,0.042204823,-0.043036204,0.042229276,-0.008772294,-0.021065732,-0.01413348,0.028829366,0.006418752,-0.010349473,0.0041538496,0.0363607,-0.02258178,0.008711163,-0.013668885,-0.016921053,-0.017813565,-0.077025026,-0.00058647525,-0.06235359,0.00064340344,-0.001348702,0.018583816,0.0011454416,-0.028193604,-0.025919532,-0.011951105,0.0027371391,-0.018596042,-0.025748365,-0.030467676,-0.009157419,-0.04726647,0.051154397,-0.041104466,-0.042424895,-0.022716269,-0.0045664837,-0.02297302,-0.017715756,0.04577487,0.026873175,-0.05159454,-0.011627111,-0.022752948,-0.056680635,-0.027631199,0.023303127,0.006528788,-0.08035055,0.013534397,0.019415196,0.050812062,-0.045383632,-0.01693328,0.018938376,-0.01320429,0.0317392,-0.011138063,-0.013681111,-0.029269509,0.022594007,0.0064554303,0.0022328086,-0.05066535,0.02206828,-0.017752433,0.015368326,-0.07531336,0.031910367,-0.034233343,0.008491091,0.07076521,0.046019394,0.0055873706,-0.008509431,-0.025332674,-0.035798296,0.014182385,-0.0028257791,0.0056515583,0.036800843,-0.04147125,-0.029440675,0.0032521677,-0.04425882,0.0327662,-0.017789112,0.0065960316,-0.025772817,0.0404198,-0.04699749,-0.00002705523,0.07242797,-0.024000019,-0.023278674,0.02348652,0.011627111,-0.013424361,0.03132351,0.025748365,0.010538979,0.023584329,-0.010759051,-0.02547939,0.025406031,-0.044381086,-0.011089158,-0.0073785083,-0.015148254,-0.0028043832,-0.0049302126,0.03880594,0.031054534,0.028609294,0.017226707,0.008234342,-0.008906783,-0.010924105,0.03129906,-0.010098836,0.09287017,0.0007041524,0.048415728,-0.015294969,0.0069383653,-0.03438006,0.014194611,0.047657706,0.010477848,0.02569946,-0.037827846,-0.027460031,-0.003438617,-0.014182385,0.014316874,0.022728495,-0.020906791,0.045383632,-0.033719845,-0.010190533,-0.018229255,0.0018064202,0.082893595,0.067537494,-0.036091726,0.005049418,-0.0049393824,0.0028471749,-0.046019394,0.024024472,-0.002903721,-0.039343894,-0.0035272571,-0.031665843,-0.03142132,0.033450868,0.026017342,-0.013008671,-0.014536945,0.018253708,-0.0033866558,0.0030061156,0.028095795,0.012739695,0.0070789666,0.035309248,0.006012231,0.009511979,0.004520635,-0.01413348,-0.021102412,-0.0243179,0.02589508,0.0052817157,-0.00051693874,0.013253194,-0.032570582,-0.01924403,0.022141637,0.012923087,0.014683659,-0.015429457,0.004141623,-0.0095180925,-0.046092752,0.0097503895,0.028315866,0.023205316,0.02714215,-0.050812062,0.008839538,0.0037351022,0.075606786,-0.0026484993,-0.040053014,-0.04159351,-0.022153864,0.013742242,0.032595035,-0.034062177,0.026457485,-0.033744294,-0.0055965404,0.055458017,-0.014695886,-0.021481423,0.002067755,0.0008497205,-0.028242508,0.0184371,-0.0062170196,-0.05281716,-0.020319935,-0.01525829,-0.04487013,0.0016123294,0.0031268492,0.04411211,0.005098323,0.019843113,-0.050127394,0.03254613,0.0045542573,-0.06162002,0.045114655,-0.003946004,0.004080492,-0.04342744,0.032643937,0.06675502,-0.011144176,-0.03132351,-0.019647494,0.013069802,0.0063942997,-0.017226707,0.006871121,-0.0066327103,0.03861032,-0.026286317,-0.026139604,0.0060917013,-0.011773825,-0.022251673,0.007372395,-0.0039398912,-0.0017834961,0.019953148,-0.026457485,0.033206344,0.006424865,-0.009426395,-0.0004966891,-0.014940409,0.045530345,-0.00017517844,0.0006307952,0.010056045,-0.0058532907,0.015563945,0.027729008,-0.007904234,-0.011773825,-0.011779938,0.062744826,0.042278178,-0.005477335,0.057120778,0.0134365875,-0.044283275,-0.0011943463,0.0001537826,0.0016108011,0.019268481,-0.014292421,0.01606522,-0.04677742,0.01596741,-0.0004389968,-0.019671947,0.01156598,-0.057903256,0.018131446,0.017556814,-0.009738164,-0.008130419,0.0033591469,-0.019415196,0.0404198,0.026995437,-0.018106993,-0.0429873,-0.037094273,-0.035676036,-0.002802855,0.01413348,0.013827826,-0.00888233,0.041642416,-0.034135535,-0.012165063,0.003628123,0.0009276625,0.00042486025,0.040468704,-0.039343894,0.019684173,-0.006877234,0.02267959,-0.022459518,-0.064896636,-0.04369642,0.0048110075,0.016395327,-0.018241482,0.0030412658,-0.04922266,-0.042155918,-0.009322473,0.013130932,-0.034257796,0.03164139,-0.01892615,0.0017773829,-0.0025950097,0.0016734604,0.014353552,-0.007800312,0.04230263,0.021065732,0.036972012,0.017116671,0.019708624,0.034477867,0.009175759,-0.04420992,-0.058734637,0.004468674,0.047486536,0.017300066,0.009426395,0.020124316,0.0378523,0.011578206,0.022532877,-0.058587924,0.02473359,-0.06328278,0.026848722,0.006602145,-0.0017223652,0.0022159978,0.00105833,-0.02384108,0.0013410606,0.05467554,0.08925122,-0.031910367,0.02376772,-0.038463607,-0.04313401,0.007635258,0.00013792675,-0.012213968,0.008900669,-0.030369867,0.0017972506,-0.06029959,-0.0058746864,-0.021126863,0.035578225,0.016921053,-0.04095775,0.0655324,0.08255126,0.026286317,0.066803925,0.032912914,0.024525745,-0.017226707,0.00030794725,-0.03748551,-0.030687748,-0.008179324,-0.017617946,0.012421813,-0.0046948586,0.024648007,-0.0046673496,-0.027484484,-0.019256257,-0.006742746,0.07590021,-0.012220081,-0.018168125,-0.0103372475,0.0151604805,-0.041911393,-0.016982183,-0.04159351,0.017886922,-0.013791147,-0.008539997,-0.0070850793,0.0010674996,0.041838035,-0.0057921596,0.019623041,-0.005098323,-0.028927175,-0.0076046926,0.026848722,0.0337932,0.034966916,-0.013888957,-0.017495684,-0.037338797,0.022153864,0.022826305,0.0047834986,0.008295473,-0.025406031,0.07448197,-0.014610302,0.035064723,-0.009077949,-0.030981176,-0.003466126,0.042253725,-0.011223646,-0.0019195125,-0.02396334,-0.0024421823,-0.008601127,-0.020552233,-0.00084895635,0.026090698,0.009762616,0.008870103,-0.015087124,-0.0011530829,-0.00055208907,0.030858913,0.020540006,-0.002529294,0.009285795,-0.008870103,0.0044870134,-0.02550384,0.0129964445,-0.0065165614,-0.0016474797,0.00379929,-0.036556322,0.011119723,0.004869082,-0.012678564,-0.016273065,-0.022532877,-0.0048904778,0.062011257,-0.010820182,-0.013693337,-0.0097503895,-0.021420293,0.020393291,-0.055262398,-0.03337751,-0.031005628,-0.017899148,-0.022716269,-0.029783009,-0.03616508,0.0093713775,-0.021664817,0.015331647,-0.038659226,-0.034257796,0.013326552,0.007292925,-0.027484484,0.025870627,-0.012690789,-0.031078985,-0.0015183404,0.013656659,0.019940922,-0.0017544589,-0.00077330676,-0.015686207,-0.016370874,0.008778407,0.025992889,-0.008154872,-0.0067121806,0.042644966,0.033108532,-0.007488544,0.008124306,-0.02027103,-0.011810504,0.01259298,0.0068833474,-0.015270516,0.008429961,-0.001476313,-0.0064982222,-0.039979655,0.029000532,-0.020002054,0.031543583,-0.023083055,0.04814675,-0.0071645495,0.045701515,0.028804913,0.008179324,-0.012085593,0.001548906,0.015380552,0.0037870635,-0.021982698,-0.0056974064,-0.019647494,-0.0088456515,0.003169641,0.019965375,0.026970984,-0.04313401,-0.003927665,-0.015881827,0.012024462,-0.009921556,-0.012764147,-0.03963732,0.036482964,0.024831401,0.015172707,-0.020674495,-0.02212941,-0.055458017,0.018045863,0.019060636,-0.003236885,-0.034673486,-0.02190934,-0.0032949594,-0.037412155,0.018681625,0.000406903,-0.017434552,-0.013778921,-0.044601157,-0.005984722,0.024782496,-0.005572088,0.012110045,0.03183701,0.0030275113,-0.02948958,0.004184415,0.0030229264,0.017471232,0.016175255,0.024232317,0.011076932,0.04905149,-0.0004985995,-0.0153071955,-0.09507088,-0.00931636,0.0041935844,-0.05487116,-0.020026507,-0.00015617053,-0.04012637,-0.036091726,-0.01458585,0.05599597,-0.0075313356,-0.02220277,0.011028027,-0.04516356,-0.022153864,-0.021408066,-0.02232503,-0.021273578,0.0072440202,0.036996465,0.003398882,-0.012055027,0.046386182,-0.029783009,-0.00042638852,0.0015106992,-0.00080310815,0.014683659,-0.005822725,-0.0035486529,-0.012281212,-0.018840564,0.007555788,0.018938376,-0.0038084595,0.0064004124,0.03428225,0.004597049,0.01920735,-0.009579223,-0.038854845,-0.036556322,-0.018131446,-0.0046673496,0.012629659,-0.0054589957,0.016676528,-0.037387703,-0.0029021928,-0.057267494,-0.047290917,0.020063184,0.008570562,-0.005504844,-0.019133994,0.020185446,-0.009591449,0.0030443224,-0.020833435,-0.009640354,0.0073907343,0.042840585,0.041446798,-0.019867565,0.034893557,0.0083199255,-0.020026507,-0.0053061685,-0.00422415,-0.0291717,-0.01914622,-0.049369372,-0.017397875,0.013399908,0.014267969,0.03000308,-0.015661756,-0.029465128,-0.009958236,-0.020503327,0.03134796,-0.04641063,0.011596546,-0.007818651,-0.00023802872,0.0021472254,0.00058800355,0.012690789,-0.01760572,-0.0015970466,-0.03633625,-0.0061161537,-0.024452388,0.009359152,-0.028682651,-0.04956499,-0.011669902,0.006290377,-0.07081412,0.0048660254,0.01693328,-0.005822725,-0.0015359157,-0.0016398383,-0.030051986,0.017483458,0.016652076,-0.014830373,0.015771791,0.0049577216,0.0018706077,-0.033744294,0.015282743,-0.000037944184,0.062500305,0.020283256,0.0116821285,-0.047779966,0.019060636,-0.004862969,0.037192084,0.026359675,0.02733777,-0.012580754,-0.0036220101,0.006363734,0.01593073,-0.0034233343,0.009145193,0.035358153,0.017544588,-0.017177803,0.03357313,0.009946009,0.0073357164,-0.017838018,-0.00941417,-0.018938376,0.06284264,-0.016407553,0.039906297,-0.021884888,-0.00031463348,-0.020808982,-0.028535938,0.02135916,-0.018730529,0.0060886447,-0.00056546147,-0.018094767,0.034820203,0.002651556,-0.004872138,-0.01564953,-0.0066449367,-0.0012440153,-0.03156803,0.03000308,0.023889983,-0.0010399907,0.03748551,0.01336323,0.037509963,-0.004508409,-0.009206324,-0.008069288,0.02052778,0.019513005,0.0010896595,0.018657172,0.0038023463,-0.0044442215,-0.036189534,0.033499774,0.013864504,-0.03041877,-0.021664817,0.0013678055,-0.01259298,-0.007256246,0.0007606985,0.010214985,0.032643937,0.009548658,-0.011908313,-0.028853819,0.024978114,0.012360683,0.04741318,0.0063087163,0.006320942,-0.0070178355,0.041080013,-0.0006418752,-0.013668885,-0.0022633742,0.02723996,-0.00594193,0.047046397,-0.0046153883,-0.009151306,-0.039759584,-0.047144204,0.028022436,-0.006547127,-0.008093741,0.008980139,0.022007149,-0.027997985,-0.0060305703,-0.002484974,0.0057921596,-0.03134796,0.018217029,0.012910861,0.023413163,-0.016468683,-0.007989818,0.0013968427,0.008870103,-0.010068271,-0.029538484,-0.017006636,0.014255743,0.020821208,0.02753339,0.0049852305,0.0067671984,0.0066938414,0.014157933,0.0052725463,-0.019219577,0.037338797,-0.0153071955,0.0073601687,0.039539512,0.00629649,0.0025720857,0.00067740754,-0.0020876226,0.0022939397,-0.0111258365,-0.058441207,0.008919009,-0.023877757,0.033964366,0.025968436,-0.063918546,0.027264412,0.00059144216,0.0038573642,-0.0006162766,0.045114655,0.03951506,-0.0070728534,-0.033695392,-0.003906269,-0.009738164,0.017862469,0.014035671,0.007751407,-0.019586364,-0.0158696,0.0053917514,-0.02094347,0.029440675,0.0035180873,0.024036698,0.028438127,0.037950106,0.018351518,0.037192084,0.0088150855,0.023816627,0.021505876,0.008760069,0.0030687747,-0.008955687,-0.028389223,0.025234865,0.0048110075,0.024085602,0.035798296,0.0011446774,0.018217029,-0.024684686,-0.016603172,0.012605206,0.002535407,0.0040315874,-0.014463588,0.026115151,0.016004087,0.014915957,-0.020344388,-0.024036698,-0.006913913,-0.00957311,0.052230302,0.016908826,0.032643937,-0.0049210433,-0.012825278,-0.0010552733,-0.030443223,-0.0153561,0.0132898735,0.009854312,-0.019390743,-0.0014365778,0.018779434,0.026237413,0.0020066241,-0.014561397,-0.04044425,-0.012391248,0.000014387269,0.017556814,0.00026229006,-0.019965375,-0.036091726,-0.02390221,0.00009623352,0.014402457,-0.028902723,-0.005449826,-0.019598588,0.009291908,0.002535407,0.021518102,0.008099854,-0.008228228,0.020332161,-0.02887827,0.03684975,0.0076046926,0.0143413255,0.006779425,-0.00025350248,0.011480397,-0.016664302,-0.0088456515,-0.030492129,0.010728485,0.03980849,0.03748551,-0.010789616,0.0022847701,0.00058265455,-0.009200211,0.026555294,0.008246568,0.008050948,-0.000039735132,-0.030492129,-0.004447278,0.0013785034,-0.017397875,0.0343067,-0.0061375494,0.0070789666,-0.0020876226,-0.012073367,0.008900669,-0.0044319956,0.042571608,-0.023156412,-0.023975566,-0.022141637,0.022312805,0.016945506,0.0038023463,0.006430978,-0.008863991,0.016199708,0.009285795,0.006033627,-0.010074384,-0.0034997482,-0.008417735,-0.01805809,-0.000096663345,0.033695392,-0.013130932,0.014316874,0.0030336245,0.03993075,0.0011668374,0.014035671,-0.032521676,0.014646981,-0.03633625,0.01719003,-0.034477867,-0.024427935,-0.02422009,0.013240968,-0.01930516,0.03594501,0.019109542,0.02723996,0.024855852,0.02206828,-0.0047682156,0.015417231,0.004104945,0.016432004,-0.0052725463,-0.000819155,-0.0143413255,0.026653104,0.010905765,-0.0106001105,-0.018229255,-0.010942444,-0.04198475,-0.033499774,0.0048171203,-0.008796747,0.026922079,0.02396334,0.025430484,-0.042033654,-0.02001428,0.04487013,-0.011272551,0.021322483,0.009505866,-0.011229759,0.016945506,-0.02621296,-0.028731557,-0.037461057,-0.005070814,-0.04587268,-0.016358647,-0.01215895,-0.015417231,-0.019830886,0.023523198,-0.04308511,-0.0010575658,0.03186146,0.016517589,0.0059297043,-0.027508937,-0.00596027,0.011755486,0.07761188,-0.0032399416,-0.0063148295,-0.000107170235,0.033157438,0.023058603,-0.0037198195,0.053844158,0.016969958,-0.015282743,0.0076597105,0.019109542,0.021090185,-0.004386147,-0.0138155995,-0.000043603573,-0.020735625,0.019781983,0.04790223,-0.0064676567,0.00577382,0.0043250164,0.0050005135,0.028976081,0.00078476884,-0.031372413,0.017838018,-0.010728485,0.0012180345,-0.0014954164,0.00048484502,-0.020026507,0.006736633,0.02875601,-0.02672646,-0.007861443,0.01215895,-0.0129964445,0.0068405555,-0.012910861,-0.0047834986,-0.009456961,0.031543583,0.027362222,0.0014136537,-0.0063087163,0.007885896,-0.031665843,-0.010746825,-0.0014457474,0.027093247,0.01606522,0.0196964,0.0017636286,-0.0050952663,-0.022887435,-0.023914436,-0.006430978,0.004040757,-0.01602854,-0.010147741,0.07443307,-0.030687748,0.015686207,0.004590936,0.03288846,0.02017322,-0.020650042,0.00064837036,0.026481936,-0.0075863535,0.012226194,-0.026555294,0.035896108,-0.023303127,0.02348652,0.014194611,-0.009132967,0.012012236,0.014940409,0.04782887,0.0062323026,0.02875601,0.0048018377,-0.0077636335,0.024427935,0.029367318,-0.030051986,0.004104945,0.013351004,-0.0014144179,-0.0088150855,0.02042997,0.044772323,-0.009952122,-0.010936331,-0.007158437,0.00878452,-0.0012944483,-0.00045848227,-0.010844634,0.010331134,0.0065226746,-0.015405005,0.0064554303,-0.007445752,-0.0470953,-0.01294754,-0.019525232,0.014573623,0.032105986,-0.006045853,0.056582827,-0.010214985,-0.051056586,-0.027655652,-0.02518596,-0.008760069,0.009114628,0.014708112,-0.007616919,0.013057576,-0.01310648,0.010667355,0.015123802,0.02171372,-0.0038329118,0.0074151866,-0.0032124326,-0.0086683715,0.013240968,0.01121142,0.005896082,-0.0042455457,-0.042131465,0.024427935,-0.016248612,0.025381578,-0.013656659,-0.013778921,-0.0074702045,0.0025033134,0.040615417,-0.025626102,0.014989314,-0.0003834058,0.0072073415,-0.014219063,-0.015894052,-0.000601758,0.0024834457,0.0025033134,0.011382586,-0.011492622,0.0038543078,-0.022569554,-0.026066246,0.0013120235,0.010508413,0.011150289,-0.020931244,-0.010349473,-0.024207864,-0.011676015,0.00864392,-0.015515041,-0.0037259327,0.023266448,0.027166603,-0.034942463,-0.021077959,-0.011443717,-0.012910861,-0.026530841,0.013583302,0.009554771,0.0038145725,0.026090698,-0.055555828,-0.001688743,0.026359675,0.0109485565,0.019231804,-0.009878765,-0.004807951,-0.0109791225,-0.019892018,-0.019586364,0.008974027,-0.01010495,0.012764147,-0.011425379,-0.0069994964,-0.030443223,0.019464102,0.020148767,-0.011095271,0.01728784,0.042742774,0.028731557,-0.0010713203,-0.000088926456,0.019733077,0.0098482,-0.0052847723,0.01500154,-0.03831689,0.0022190541,-0.01898728,0.016676528,-0.0035547658,-0.018901696,0.006158945,0.051154397,-0.005471222,0.029269509,-0.01164545,-0.010673467,-0.015478361,-0.009744276,-0.012935313,-0.01644423,-0.021065732,-0.013008671,0.034233343,-0.03826799,0.0009765673,0.01215895,0.03714318,-0.026139604,0.0034875218,-0.012800825,-0.042571608,-0.0073418296,0.0018171181,0.022080507,-0.055017874,0.0029663804,-0.0075863535,0.02052778,0.0059388736,0.00029629417,-0.013693337,0.00066021446,-0.03337751,0.030296508,-0.008160984,0.0030489073,-0.0013143158,0.0050738705,0.01156598,0.00080769294,0.003655632,0.019231804,-0.013937862,-0.06582583,0.031665843,0.003025983,0.016908826,-0.016823243,-0.037387703,-0.027631199,0.03438006,-0.023254221,0.0031085098,0.018351518,-0.011639337,0.007873669,-0.033499774,0.04271832,-0.023462066,0.015466136,0.012910861,0.014671433,0.019488553,-0.006492109,0.032326058,-0.016016314,0.011028027,-0.01564953,0.03401327,-0.0035578224,0.02499034,-0.049809515,-0.0071339845,-0.00001004721,-0.017410101,-0.008338264,-0.0057218587,-0.015686207,0.030663295,0.019781983,-0.01644423,-0.029929724,-0.015857374,0.011700468,0.017972505,-0.017825792,-0.002764648,-0.005122775,0.01458585,-0.03144577,0.01879166,-0.008332151,0.006742746,0.016872147,0.030589938,0.002084566,0.0047315373,0.009628128,0.0168966,-0.011871634,-0.03973513,-0.016725434,0.011889974,-0.006620484,0.0038848731,0.013791147,0.014329099,0.057120778,0.00033755758,-0.0082893595,0.0043616947,0.00019657428,0.016346421,-0.0016138576,-0.029709652,-0.028511485,0.016395327,0.0023138071,0.011492622,0.011015801,-0.007629145,-0.019549685,0.02621296,0.0013082027,-0.018742755,-0.014671433,0.02550384,-0.032741748,-0.013852278,0.012482944,0.03491801,-0.045603704,-0.010111063,0.020417744,0.016603172,-0.038854845,-0.008216002,-0.036311798,0.029734105,0.01154764,0.03186146,0.005590427,0.017446779,-0.03308408,0.01602854,-0.034233343,0.0032277151,-0.014255743,-0.034673486,0.024183411,-0.0035822748,-0.0037320456,0.025332674,-0.0032277151,-0.012715242,-0.032081533,0.01602854,0.0053917514,-0.050420824,0.009377491,0.016749887,-0.038928203,0.007861443,-0.009976574,-0.0049241,-0.020307709,-0.011284777,-0.0010927161,0.03797456,-0.05506678,-0.00905961,-0.019549685,0.04883142,0.007953139,-0.009456961,-0.0074213,0.0019240973]}]} \ No newline at end of file +{"model":"openai/text-embedding-3-small","dimensions":1536,"generatedAt":1771602237878,"chunks":[{"id":"class-AttachmentBuilder","type":"class","source":"main","text":"Class: AttachmentBuilder\nDescription: Builder for attachment metadata (filename, description, spoiler). Actual file data is passed separately when sending.\nProperties: description: string | null, filename: string, id: number, spoiler: boolean\nMethods: setDescription(description: string | null) -> this — Set the attachment description (alt text).; setName(name: string) -> this — Set the displayed filename.; setSpoiler(spoiler: boolean) -> this — Mark the attachment as a spoiler (blurred until clicked).; toJSON() -> APIAttachmentPayload — Convert to API format for MessagePayload.","meta":{"url":"/docs/classes/AttachmentBuilder"},"embedding":[-0.004026309,0.01704269,-0.009464065,0.021182232,-0.030461965,-0.024626583,0.022709543,-0.008121084,-0.021234898,-0.026038028,-0.006577973,-0.02974571,0.005429856,-0.04381804,-0.012365957,0.002460815,0.032041945,0.030251302,0.02190902,0.025827365,-0.005956515,0.002714928,0.029640377,0.0040210425,0.01846467,-0.028839856,-0.026417224,0.049843024,0.011660234,-0.011786632,0.01806441,-0.010311986,0.0583117,0.038467184,0.0010895261,0.018211873,0.031725947,-0.00489793,0.0131138135,-0.023657529,-0.028376395,-0.014978186,-0.014451527,0.0020131546,-0.013851136,0.07175204,0.029240116,0.06324123,0.0011356088,0.007620758,-0.011828764,0.038593583,-0.007209964,0.09909619,0.0033758853,-0.025363905,-0.03398005,0.029808909,-0.0058459165,0.019359991,-0.0108386455,0.0012810983,-0.028355328,0.009248135,-0.036571212,-0.0153468475,-0.054941084,0.05890156,0.021203298,0.020065714,0.06644332,0.0028544927,-0.019296791,0.052623782,0.003436451,-0.038193323,-0.031852346,0.038572516,0.00006167673,-0.015041386,-0.02730201,0.028376395,-0.01621057,0.00013438037,-0.04676733,0.023762861,-0.03524403,-0.010333053,-0.010406785,-0.004192207,-0.027028147,-0.002235668,-0.051359802,-0.04782065,0.05106487,0.0068360358,-0.0024028823,0.0015997272,0.0067781033,0.012618753,0.019444257,-0.020792503,-0.03960477,-0.03246327,0.017158555,-0.04198527,-0.04411297,0.027470542,-0.00792622,0.0006662238,-0.06197725,0.015873507,-0.012660886,0.009432466,-0.025764165,-0.06244071,0.020929435,0.025427105,-0.009727394,-0.026332958,-0.0112389065,-0.04807345,0.034422442,-0.014156599,-0.0032336873,-0.004574035,0.009279734,0.015083518,-0.031409953,0.0036392147,0.014767523,0.024710847,0.027449476,-0.038045857,0.0040289424,-0.028271064,-0.032884598,0.0063409763,-0.009964392,-0.0351387,0.03530723,0.009632596,0.05797464,-0.035897087,-0.05026435,0.021993287,0.0029150585,0.0007149398,-0.017442951,0.0023383666,-0.023320468,0.035749625,-0.03593922,0.016263235,0.007884088,-0.032336872,0.0073995613,-0.010169788,-0.03848825,-0.00373928,0.034127515,-0.032126207,0.011038776,-0.03210514,-0.029324383,-0.022625277,0.033074196,-0.011786632,-0.03918344,0.0035707492,0.05102274,-0.01240809,-0.0150308525,-0.0033495522,-0.012028895,0.003765613,0.013187545,-0.06568493,-0.01098611,-0.0117971655,0.034127515,0.024479117,-0.06180872,-0.036613345,-0.005403523,0.0073679616,0.0066569718,0.054646153,0.018728,-0.020539707,-0.03199981,0.0014390962,-0.0013943302,-0.01330341,0.02382606,-0.027681205,-0.0048294645,0.015252049,-0.015905106,-0.0047030663,0.040995147,-0.0047820653,0.0013824803,-0.008610877,-0.006251444,0.008468679,0.008905807,-0.023194069,-0.042743657,-0.044702828,0.013840603,-0.043228183,0.016157903,0.015062452,0.006109246,0.023531131,-0.00078801374,0.0538035,-0.017169088,0.004832098,-0.05738478,0.018485736,0.053129375,-0.04512416,-0.0395837,-0.001985505,-0.036550146,0.00017034131,-0.018843865,0.01707429,-0.029408647,0.0046504005,-0.031346753,-0.022941273,-0.030461965,-0.0031678549,-0.017790547,-0.022056485,0.016505498,-0.022772742,0.021930087,-0.0044845026,0.0036681811,0.023699662,-0.004724133,0.005256058,0.011007177,-0.024837246,0.04029996,0.027870802,0.02220395,-0.013450875,0.014019667,-0.005687919,-0.000015655767,0.009785327,-0.044702828,0.005271858,0.062524974,-0.017158555,0.0039315107,-0.050517146,-0.03454884,-0.0081632165,-0.019496921,0.02713348,0.059238624,0.026248692,0.029471846,-0.0034390844,0.009701062,0.02243568,0.0057142517,0.024626583,-0.0033416525,0.030588364,-0.04110048,-0.023109803,0.0010480518,0.006251444,0.016400166,-0.018043343,0.0032731867,0.023004472,-0.032084078,0.01942319,0.041416477,0.019486388,0.033558723,0.03606562,0.04609321,-0.017727347,0.05797464,-0.032379005,-0.009685262,0.029851042,0.04782065,-0.034738436,0.046977997,0.029956372,0.016221102,-0.016136836,0.06071327,-0.007968353,0.033284858,-0.016895225,-0.01472539,-0.01776948,-0.026627887,-0.050390746,0.026922816,-0.022056485,-0.046935864,-0.023088738,-0.017095357,-0.0150308525,-0.030988624,-0.01591564,-0.005340324,0.03848825,0.0046793665,0.0040105097,-0.01121784,-0.061092462,-0.0111967735,-0.015957773,-0.008252749,-0.0051217605,0.01001179,0.08772035,-0.0010210604,-0.022835942,-0.017632548,-0.0039367774,0.018980796,-0.010570049,0.010164522,0.046051078,-0.01029092,0.07170991,0.0037735128,-0.0073837615,0.00088347076,0.052539516,-0.034590974,-0.06694891,-0.016442299,0.012734618,-0.01621057,0.0020618706,-0.02736521,-0.011870897,-0.061429523,-0.037350666,-0.0068149697,0.005482522,0.0045003025,-0.025911631,-0.004645134,0.01027512,-0.024436984,0.026290825,-0.0023541665,-0.000044436867,-0.0045872014,0.0070782993,-0.027744405,0.000104591214,-0.0066464385,-0.02719668,-0.031620614,0.044787094,-0.03907811,-0.008800475,0.021097966,-0.021498227,0.010243521,-0.01820134,-0.0064041754,-0.027091347,0.034970168,0.048284113,-0.030946491,0.00060763303,0.019433724,-0.02696495,-0.006746504,0.036739744,-0.06876062,0.011660234,0.041521806,0.034801636,-0.03716107,0.025700968,-0.050180085,0.070740856,0.046346005,0.021930087,-0.0024858313,0.0057774507,0.011533836,-0.0442815,-0.010733314,0.033748318,0.020465976,-0.0146305915,0.02521644,-0.029197983,0.06277777,-0.025869498,0.040278893,-0.008268549,0.024626583,0.023088738,0.020771436,0.013177012,-0.021287562,-0.009553597,0.03577069,0.027344143,-0.052328855,0.0072678966,-0.01614737,0.013261277,0.0047030663,-0.001981555,0.022119684,-0.033706184,0.015325782,-0.037203204,-0.02464765,0.013429808,0.026943883,0.006314643,0.02690175,-0.0012323824,-0.023236202,0.018148674,-0.045292687,0.0074996264,-0.012165827,-0.035454694,-0.0038156456,0.02683855,-0.05270805,0.03391685,-0.010859712,-0.021213831,0.021930087,-0.020655572,-0.043354582,0.03414858,-0.026164427,0.050137952,0.016326433,0.044155102,-0.040974084,-0.001379847,0.053634968,-0.011491703,0.017590417,0.03914131,-0.010585849,-0.005930182,-0.02938758,-0.07010887,-0.06492654,-0.02005518,-0.0052455254,-0.010706981,0.015831374,0.019201992,0.032442205,0.0029150585,-0.010849179,-0.04063702,0.029935306,-0.06981394,0.023783928,0.01588404,-0.04265939,0.027997201,-0.025637768,0.003249487,-0.043986574,0.10828112,0.04331245,0.020918902,0.03183128,-0.026627887,0.0063515096,-0.041142613,0.043270316,-0.0068149697,-0.0024397485,-0.0041158414,0.0041553406,-0.05426696,0.023657529,-0.004745199,0.012313291,-0.02021318,-0.010817579,0.0040526423,0.00512966,-0.040910885,-0.0055509876,0.017727347,-0.03425391,0.0077682226,-0.048157714,0.009095403,0.034970168,-0.035370428,-0.019865584,-0.0060407803,-0.015072985,0.024710847,0.0009894609,-0.03842505,-0.024542317,0.01518885,0.034127515,0.013556207,0.02422632,-0.003152055,-0.026080161,-0.038993843,-0.025722032,-0.026986016,0.0075364923,-0.015631244,0.010933444,0.043523114,-0.02203542,-0.00038281537,0.009448266,-0.019043995,-0.018106543,-0.011091442,-0.028608125,0.016537098,0.05199179,0.0016273768,0.004068442,0.025974829,-0.04086875,-0.0015470613,0.0070782993,0.0328214,-0.00020984076,-0.032737132,0.034127515,-0.012365957,-0.022288216,0.0024687147,-0.008394947,-0.0048399977,0.0068676355,-0.0121552935,0.0001705059,-0.007157298,-0.02544817,-0.0125134215,0.018843865,0.029935306,-0.021529827,-0.007884088,0.014904454,-0.0056036534,0.010185588,0.025469236,-0.0057300515,-0.015441647,-0.011586501,0.009200735,0.0017748413,0.002501631,-0.0075364923,-0.07419574,-0.009342933,-0.02677535,-0.03572856,0.008958472,-0.022098618,0.00075773086,0.006541107,0.017790547,-0.010548983,-0.00015651651,0.006024981,0.0021790522,0.025743099,-0.009732661,0.05119127,-0.03878318,0.025300706,0.020076247,0.000051431558,0.01985505,0.028207865,-0.003855145,-0.004402871,0.013356077,0.025953764,0.017516684,0.016463365,-0.041585006,-0.03084116,0.010469984,0.01588404,0.05658426,-0.05009582,-0.06505294,-0.020329043,0.026585754,0.017516684,-0.025321772,-0.0028518594,-0.042238064,0.007152031,-0.0005490422,-0.030862227,0.052665915,0.010196121,0.016789895,-0.014472594,-0.017780013,0.013587806,0.03444351,-0.014367262,0.001522045,0.0013245478,-0.01234489,0.022983406,-0.0005381798,0.038509317,0.016726695,0.0016023605,0.03195768,0.015399514,0.04702013,0.06522147,0.015536445,0.027660139,-0.012671419,-0.026712153,0.033369124,-0.006893968,0.007194164,-0.02928225,-0.029808909,-0.0033047863,-0.0041553406,0.0062251114,-0.020244777,0.0015931439,0.04520842,-0.016779361,0.010891312,-0.0015931439,-0.015546978,-0.010053923,0.005493055,-0.009227068,-0.019275725,-0.00022580511,-0.039330907,0.0022975507,0.015515379,0.0164107,-0.00605658,-0.011733966,-0.00893214,0.0055035884,-0.039857566,0.0040210425,-0.026016962,-0.016263235,0.014746456,-0.011038776,-0.01234489,-0.010764914,-0.048663307,0.024142057,0.008595077,-0.010965044,0.037582397,0.025700968,-0.01611577,-0.017421884,0.008990072,-0.025174309,-0.042216998,0.040342093,0.04110048,0.009801127,0.044660695,0.03785626,-0.029977439,-0.017748414,0.0042659394,-0.040405292,0.009853792,0.022793809,-0.021887954,-0.008410747,0.03663441,0.014904454,-0.010912377,-0.042069532,0.00886894,-0.013703671,0.030272368,-0.027786538,0.01234489,-0.02266741,0.010217188,-0.0084054805,-0.0045898347,-0.013377142,-0.023847127,-0.001843307,-0.01968652,-0.021087432,0.016684562,0.03560216,0.036297347,-0.027049214,0.00059677067,0.0023344166,-0.0010335686,0.03404325,0.023088738,-0.0010197437,0.04036316,0.012629286,0.0012666152,0.012492355,0.01707429,0.026501488,0.053382173,0.04546122,0.009485131,0.02249888,-0.018159207,-0.013387675,0.0005026303,-0.0026820118,-0.016526565,0.00082092994,0.003923611,-0.019781318,0.003196821,-0.0016365934,-0.0035681159,0.016505498,-0.009564131,-0.019475855,0.019012395,0.02031851,0.03914131,-0.03315846,0.016368566,-0.022119684,-0.027512675,-0.011059842,-0.0030414567,0.008863674,0.00012590445,-0.012313291,-0.018822799,-0.05675279,-0.0040026098,0.031199288,-0.013735271,-0.026417224,-0.011154641,-0.016779361,0.03320059,-0.0042185397,0.0093482,0.016642429,0.008521345,-0.018074943,0.0010118439,-0.046219606,-0.0067781033,-0.06058687,-0.00910067,0.00304409,0.017980143,-0.01826454,-0.06787583,0.033032063,0.019381057,-0.019338924,-0.07861968,-0.0058248504,0.019802384,-0.016526565,-0.021698358,0.02412099,0.011312638,0.04937956,0.04394444,-0.04824198,0.030799028,-0.02713348,0.025237506,0.01577871,-0.012071028,0.0019683887,-0.010922911,-0.014209264,0.0067359707,-0.019317858,-0.0062777773,0.0010678015,-0.01730602,0.004139541,-0.012429156,-0.0054403893,0.00747856,0.036781877,0.03994183,0.0044292035,0.02677535,0.019475855,-0.065474264,0.019939316,-0.008716209,0.04213273,-0.0013719471,0.024015658,-0.0015575945,0.005645786,0.03315846,-0.012365957,0.0036971474,0.04782065,0.014451527,-0.006746504,0.03785626,0.046851598,-0.0060407803,0.04162714,-0.019749718,-0.03821439,0.03756133,-0.018306673,0.028081466,-0.02382606,-0.06399962,-0.007810355,0.007736623,-0.028460661,-0.0023791827,-0.0071783643,0.02445805,0.010880779,-0.011765566,-0.017527217,0.028249998,-0.041711405,0.00068531523,0.019191459,0.019728651,-0.006604306,0.023109803,0.008516079,-0.02551137,-0.006230378,-0.0032389539,-0.013482475,-0.051696863,0.0050506615,0.052539516,-0.012502888,0.021140099,0.03937304,-0.018917598,0.03060943,-0.010670114,0.023699662,0.032336872,0.029956372,0.030883294,0.005358757,0.006730704,-0.040552754,-0.02428952,-0.009416666,0.008795208,-0.019296791,0.03391685,0.011439037,-0.007088832,0.0067096376,0.012218492,-0.044492166,-0.013967001,-0.012892616,-0.008473946,0.02025531,-0.0049611293,0.032189406,0.034991235,-0.030925427,-0.02150876,0.015873507,-0.03113609,-0.044323634,0.0071888976,0.036044553,0.01148117,-0.009458799,0.009574664,0.036170952,0.003810379,-0.02226715,0.005766918,0.03240007,-0.0059881145,-0.005253425,-0.002397616,0.019201992,-0.034864835,-0.005445656,0.00032998488,-0.014440994,0.018612135,-0.0071098986,0.032779265,0.0397733,-0.05485682,-0.007452227,0.011881431,0.030925427,0.016263235,-0.017948544,0.004621434,0.015831374,0.0074364273,0.0083212145,-0.0019433723,-0.051444065,0.015230983,-0.014788589,-0.03183128,-0.029008387,0.0021040034,0.015178317,-0.032695,-0.0035417827,0.00052073423,-0.0036365816,-0.03345339,0.017758947,-0.005919649,-0.05211819,-0.028734524,0.0063725756,-0.03842505,-0.015694443,0.025363905,0.0028860923,-0.013619406,-0.020666106,0.056794923,-0.016157903,-0.021171698,0.012207959,-0.018538402,0.0064041754,0.022519946,0.0046188007,0.0020263211,-0.020371176,0.005253425,-0.023467932,0.057932507,0.035517894,0.017811613,-0.0013916969,0.031178223,0.039204508,0.011660234,0.029640377,-0.0149887195,-0.023510065,-0.023531131,0.02256208,-0.000562867,0.021677291,0.0021066365,-0.027007082,0.027323077,-0.0011672083,0.0077945557,-0.010849179,0.02527964,0.0016747761,-0.012703019,0.023025539,-0.025890565,0.03534936,0.011365305,-0.0108386455,-0.027344143,0.0030730562,0.0022830674,0.0019960382,-0.013682605,0.0035496827,-0.039815433,0.011375838,-0.026585754,-0.0058353837,0.02428952,0.03242114,-0.012681953,-0.0027017614,0.029577179,0.010048657,-0.020034114,0.0068255025,-0.010348853,0.020013047,0.004026309,-0.0001784058,0.0492953,-0.026564687,0.0035180831,0.0017919578,-0.0014167131,0.00771029,0.04122688,-0.02719668,0.0028439595,-0.0057563847,-0.022772742,-0.022793809,0.029556112,0.06138739,-0.020929435,0.0022369847,0.016537098,0.012313291,-0.010780713,0.017348154,-0.004129008,-0.001824874,-0.02084517,0.006409442,0.011828764,0.02313087,0.017190155,0.013145412,0.026648954,-0.02928225,0.044365767,-0.0035075499,-0.009664196,0.029029453,0.04042636,0.02677535,-0.018633202,0.011649701,-0.0210137,0.016663495,-0.021024233,0.00655164,0.007404828,0.0059881145,0.016874159,0.0016550265,-0.034422442,-0.07701863,-0.010159255,-0.020529173,-0.011860364,-0.000036578123,-0.0044134036,0.014914988,-0.007841955,0.038109057,0.011744499,0.033242725,0.00655164,-0.024415918,0.0058459165,-0.0017932744,-0.024942577,-0.013292877,0.009553597,-0.022309283,-0.03345339,-0.022119684,-0.012007829,0.055910137,-0.000053982563,-0.00513756,0.028713457,-0.0029782576,-0.03391685,0.009506198,-0.014546326,-0.01816974,0.029303316,0.024921512,0.027028147,-0.010096056,-0.019412657,-0.008210616,-0.0070361663,-0.027786538,0.008737275,0.0009710278,-0.016242169,0.03652908,-0.0013930135,-0.024247387,0.02260421,-0.005982848,-0.0009157286,0.00653584,0.0040816083,-0.014451527,0.012692486,-0.015072985,0.013629939,-0.008610877,-0.071667776,-0.01747455,-0.0035812822,0.013556207,-0.00396311,0.025995895,-0.04841051,0.001981555,0.023531131,-0.012892616,0.02869239,0.006398909,-0.012260625,-0.010338319,0.035370428,0.007362695,0.010406785,-0.01449366,0.015241516,-0.039330907,0.012892616,0.027807603,-0.062230047,0.022793809,0.03292673,-0.010222455,0.03722427,-0.00537719,0.010117122,-0.0041474407,-0.007404828,0.00022136142,0.00039631102,-0.0035049168,0.014820188,0.011965696,0.01823294,-0.0057616513,-0.014851788,-0.022014353,0.026248692,-0.018654268,-0.06998247,-0.010859712,0.013714205,0.0210137,-0.007473293,0.044955626,-0.021203298,-0.031199288,-0.04238553,0.0015694443,-0.007778756,-0.020107847,0.021930087,0.003818279,-0.016726695,0.026986016,-0.014978186,-0.004495036,-0.033685118,-0.0032073543,-0.06117673,0.0050875274,0.035180833,0.011428503,0.021076899,0.004621434,0.044913493,-0.03490697,-0.027175613,0.00516126,-0.043059655,0.009316601,-0.008911073,0.00053719233,-0.0003365681,-0.014388328,0.027407343,0.02898732,0.024247387,-0.011165174,0.032189406,0.02249888,-0.012576621,0.011733966,-0.009964392,-0.008479212,0.03326379,0.016031506,-0.0016800427,-0.022077551,-0.0021566693,0.025342839,-0.0027886603,-0.03176808,0.016094703,0.024268454,0.00011833373,0.025574569,0.013514074,-0.0051138606,-0.011312638,0.021097966,0.01767468,0.0121974265,0.026396157,0.018559469,0.030925427,0.06029194,0.005190226,0.015610177,0.0028887254,-0.02487938,0.013819536,-0.013977534,-0.04122688,-0.004308072,-0.028881988,-0.017421884,0.0066991043,0.006604306,0.0033469188,0.011660234,-0.006925568,-0.046851598,0.011375838,-0.036170952,0.022583144,-0.046598803,0.006899235,0.0022909674,-0.0075628255,0.0029756243,-0.0027807604,-0.015062452,0.028587058,0.009206002,0.011038776,-0.022077551,-0.0029440247,-0.018443603,0.033284858,0.010169788,0.029535046,0.017211221,0.034590974,-0.01793801,0.022646343,0.0009400866,-0.011354771,-0.00515336,-0.034169648,0.009864326,-0.057258382,-0.022793809,0.034696307,0.0047609988,0.04173247,0.0060987133,-0.028228931,0.0014193464,0.0049927286,-0.01214476,0.009716862,0.012302758,-0.009801127,-0.045039892,0.036044553,0.023088738,0.015294182,0.024942577,-0.038593583,0.01661083,-0.009711595,0.0038340786,-0.0075470256,-0.056373596,0.007209964,0.024731914,0.0031546883,-0.043270316,0.021371828,-0.015515379,-0.031409953,-0.0040394757,-0.014304062,0.0047056996,-0.031115023,-0.026943883,0.000843313,-0.00043745627,-0.043438848,-0.039330907,0.024099924,-0.009174403,0.018949196,0.011691833,-0.032273673,0.024247387,-0.014156599,-0.031388886,-0.019833984,0.03659228,0.02829213,-0.021319162,-0.048494775,-0.004779432,0.010670114,-0.01148117,0.012039429,0.026585754,0.009026938,-0.008768875,0.033811517,0.0058459165,0.06395749,-0.031115023,0.00056714605,-0.023278335,-0.026290825,-0.006988767,0.025827365,0.002119803,0.02031851,-0.0016589763,-0.014251397,-0.06753877,0.03258967,0.0023001838,-0.020739838,0.012471288,0.02011838,-0.004129008,0.009306068,0.029008387,0.038045857,-0.004708333,-0.014609525,-0.0017708914,0.009748461,0.012218492,0.028881988,0.044576433,-0.016305368,-0.02051864,0.015546978,0.022772742,0.033032063,0.009016405,-0.009769527,-0.024900446,0.000979586,0.009511464,-0.017990677,0.014598992,-0.029577179,-0.02719668,-0.0021593026,-0.00559312,-0.008726742,0.035854954,-0.008416014,-0.019096661,0.0002667858,0.01707429,0.0024292155,-0.021266498,0.0044634365,-0.019833984,-0.009137536,0.004089508,-0.022793809,0.003249487,-0.01800121,0.009632596,0.05085421,-0.012281692,-0.019675987,-0.0053982562,-0.019096661,0.0041869404,0.020560773,0.019981448,-0.008300148,-0.012534488,-0.0059723146,0.015662843,-0.023994591,-0.021593025,0.021108499,-0.03728747,0.0013403476,-0.00564052,-0.01962332,0.028439594,0.028418528,0.0013475891,0.028460661,-0.013830069,-0.03914131,0.0015984105,0.015789242,0.014019667,0.00791042,-0.008937406,0.014040733,-0.034274977,0.011302105,0.008015753,-0.042406596,0.0101381885,-0.0008577961,-0.0068834354,0.02875559,-0.011207307,-0.02174049,0.021866888,-0.024373787,0.008584544,0.01260822,0.0017945911,-0.013682605,0.019233592,-0.017211221,0.0059775813,-0.017516684,0.04150074,0.0034654173,0.042638324,-0.041016214,0.012281692,0.017095357,0.007310029,-0.0081632165,-0.017811613,0.017442951,-0.017495617,0.0046240673,-0.034127515,0.0035575826,0.008811007,0.0054983217,0.0018854397,-0.0071783643,0.03756133,0.016600296,-0.035454694,0.023762861,0.01816974,-0.026164427,0.010891312,-0.011028242,-0.013261277,-0.0064410414,0.0052823913,0.00039927347,0.0005464089,0.04845264,0.043607377,0.0071730977,-0.015515379,0.015294182,-0.036318414,0.00655164,0.018738532,0.0053982562,-0.026185494,0.0074943597,0.007520693,-0.010975577,-0.021150632,0.015599644,-0.019107195,0.016916292,-0.003544416,-0.031725947,0.028608125,0.011712899,0.009953858,0.036718678,0.014082866,0.06058687,0.032147273,-0.0043765376,-0.0028518594,-0.03130462,-0.0028492261,0.0048689637,-0.017400818,0.000560892,-0.020760903,0.011228373,0.010475251,0.0073310956,-0.005271858,-0.01562071,0.0133139435,-0.0068255025,-0.043733776,-0.034485642,0.03242114,0.0069045015]},{"id":"class-Base","type":"class","source":"main","text":"Class: Base\nDescription: Base class for all Fluxer structures. Provides the client reference.\nProperties: client: Client","meta":{"url":"/docs/classes/Base"},"embedding":[-0.038849954,0.019582117,0.03418409,0.0090416195,0.0142514305,0.007875154,-0.04032466,-0.005626837,0.012111902,-0.03909171,0.0011324689,-0.043491643,0.010691594,-0.03360388,0.012166297,0.05434642,0.0069202236,-0.035054408,-0.008449322,0.05386291,0.027245738,-0.051348664,0.043999325,0.0024130126,-0.035610445,-0.007844935,-0.04622347,0.017261274,-0.00656968,-0.021068908,0.09162497,-0.019026082,0.031718194,0.045087222,-0.017261274,-0.020065626,0.004696082,0.04090487,-0.03058195,0.021117259,0.017756872,-0.022894155,0.006388364,0.009343813,0.02079089,0.00020926878,-0.00488042,0.019642556,-0.021685382,0.05541014,-0.03701262,-0.04503887,0.0077421893,0.030606125,-0.027294088,0.007476259,-0.0061768284,0.018675538,-0.023861174,0.014118466,0.033942338,0.030606125,0.020174416,0.051348664,-0.018010713,0.07204285,-0.04559491,0.044265255,0.024683138,0.06329134,0.017623907,-0.008268005,-0.01616129,-0.01188828,-0.031935774,-0.034764305,0.0059260083,0.027995177,0.0014233298,0.0067086886,0.014976694,0.025553456,0.005811175,-0.026133666,-0.008975137,-0.010631156,-0.007161978,0.0035296164,-0.019642556,-0.031403914,-0.0042730113,-0.027245738,-0.052895892,0.0584079,0.04237957,-0.01611294,0.025335876,-0.01659645,-0.022543611,0.0320083,0.099119365,0.009434471,-0.021637032,-0.01303057,0.031500615,-0.022301856,-0.03471595,0.0026849865,-0.094090864,-0.0037441736,-0.08069766,-0.016318431,0.05323435,0.03471595,-0.029905036,-0.02398205,-0.0065575917,0.057585932,-0.014795378,0.03962357,0.036335707,0.029687457,-0.0006659582,0.036553286,0.020645838,-0.039381813,0.049994837,0.0056812316,-0.050091542,-0.056135405,0.04095322,-0.03266104,-0.028623737,-0.0064306706,-0.00020133621,-0.0064367144,-0.003324125,-0.002574686,-0.024997419,-0.06754622,-0.0013885776,-0.03382146,0.06522538,0.0066240747,0.020923855,0.06290453,-0.035054408,0.035973076,0.005799087,0.0411708,0.011561911,-0.003011355,-0.00965205,0.012994306,-0.008763602,-0.006521329,0.03239511,0.003015888,-0.018494222,0.010588849,0.061889164,0.042814728,0.022132628,0.015931625,-0.027149035,-0.022422733,-0.057054073,-0.039164234,-0.03261269,-0.00433345,0.03258851,0.010975656,-0.035441216,-0.028623737,-0.010721814,-0.04813333,-0.00234653,0.025456753,-0.031258862,-0.01159213,0.066627555,-0.029276475,0.04627182,-0.08093942,-0.019497504,0.0024205674,-0.036553286,0.025601806,0.025190823,-0.026593,-0.02526335,0.027608369,-0.0034057172,0.02685893,0.022616137,0.02722156,0.010600937,-0.009065796,-0.015037132,0.016209641,-0.026157841,-0.020234855,0.008020207,-0.027366614,0.0039647743,-0.021745821,-0.015859097,-0.014855817,-0.007826803,0.0029886905,0.014215167,0.026496299,-0.035997253,0.025069946,-0.036722515,0.03232258,0.01946124,0.048326734,-0.03377311,-0.021298574,0.013622869,-0.0030884142,0.014771203,-0.0067147324,-0.041460905,0.040131252,0.011084446,-0.032999493,-0.016209641,-0.021528242,0.0095795235,-0.011017963,0.005605683,-0.06387155,-0.018808503,0.020138154,0.011894324,0.0064367144,0.029373176,-0.042307045,-0.07262307,-0.028140228,0.0028965217,0.01755138,-0.032781918,-0.0011030051,-0.03940599,-0.016209641,0.044579536,0.03367641,0.0398895,0.0020609575,0.016016237,0.0027786663,-0.0032546206,0.01313936,0.049801435,0.013743746,0.026182016,-0.036649987,-0.024755664,-0.025940262,0.016040415,-0.02238647,-0.036408234,-0.016294256,0.02015024,-0.02238647,-0.03515111,0.010504235,-0.015834922,-0.0027967978,0.021854611,-0.04489382,-0.015895361,0.0021425497,-0.00725868,0.018034888,-0.011694876,0.0024251002,0.00017206123,-0.025601806,0.028188579,0.028575387,0.011295981,0.021902962,0.046658628,0.030872054,-0.0020549137,-0.012003113,0.0070531885,0.026351245,0.009911936,-0.0637265,-0.019642556,0.01701952,0.00478674,-0.03892248,0.036384057,0.040759817,-0.0125591485,0.033362128,-0.0011173593,0.021491978,0.0035537917,0.027584193,0.06928685,-0.0063460567,0.0155569045,-0.045981713,0.004421086,-0.009724576,-0.037955463,-0.06295288,-0.045715783,-0.015339325,0.026302895,0.042742204,0.024876542,0.045715783,-0.018010713,-0.022084277,0.06343639,-0.0306303,-0.02685893,-0.035320338,-0.05908481,-0.012812991,0.020283205,0.007820759,0.041412555,-0.045014694,0.03413574,-0.02579521,0.05202558,-0.028067702,-0.007083408,0.048641015,0.012371789,0.0061949603,0.050381646,-0.037471954,-0.049656384,0.044386134,-0.0034873092,-0.0035658795,0.005369973,0.03926094,0.023994138,0.009531173,-0.034861006,0.007222417,-0.05212228,-0.012081684,0.0090416195,-0.031984124,0.028406158,-0.08369542,-0.021975487,0.015242624,-0.012359701,0.013550342,-0.000498241,0.0173338,-0.037206024,0.010788296,-0.042742204,0.00786911,-0.051010206,-0.029977564,-0.025239173,0.023969963,-0.0030733047,-0.014795378,0.0035084628,-0.016294256,-0.008908655,-0.005799087,0.013816272,-0.019231575,0.018868942,0.018216204,-0.024634788,-0.04366087,0.018808503,-0.035271987,-0.0049287705,0.008261962,-0.06561218,0.020234855,0.026157841,0.0020231833,0.006466934,-0.014529448,0.020875504,0.019799696,0.045014694,0.006823522,0.016983256,0.027995177,0.035852198,-0.0013228506,0.029905036,0.00092697755,-0.021612857,-0.0466828,-0.010335007,0.011972894,0.018977731,-0.0016318432,0.0186151,-0.023740295,0.020355733,0.06010018,0.020512873,-0.047504768,-0.023039207,-0.034208268,-0.0118097095,0.00840097,0.022410646,-0.012958043,-0.009615787,-0.005811175,-0.009083927,0.013792097,0.028116053,-0.021685382,-0.031307213,-0.04078399,0.05806944,0.024610613,0.018844767,0.016185466,0.02360733,0.021745821,0.010214129,-0.031500615,-0.039962027,0.036843393,-0.016656889,0.031500615,0.01356243,0.00877569,-0.03287862,-0.037254374,0.0030778374,0.0063037495,-0.014396483,-0.0081773475,-0.054733228,0.020089803,-0.024973243,0.029687457,0.0051523936,-0.011344332,0.012958043,0.06266278,0.044216905,0.00022230085,0.024115015,-0.00073546264,-0.0585046,-0.005360907,-0.017237099,-0.035441216,0.021105172,0.013284412,0.0063460567,-0.04206529,0.0102927,0.026979806,0.011447078,0.0070713204,0.008836129,0.01637887,-0.011265761,0.0005348819,0.06928685,0.03797964,0.0386082,0.028212754,-0.04010708,-0.022035927,-0.044700414,0.105791785,0.0116707,0.011054226,-0.00015836812,-0.0129822185,0.021068908,-0.00009301884,0.043249886,-0.012510798,0.0306303,-0.04600589,-0.035344515,-0.014287693,-0.0061163898,-0.026568824,0.004925749,0.01770852,-0.0054213456,-0.0032878618,0.023849085,0.007083408,-0.0037079102,-0.0013878222,-0.02041617,-0.035030235,0.025988612,0.024550173,-0.018494222,0.003281818,0.016511835,0.01135642,-0.022894155,0.0026502341,-0.027729247,-0.004158178,0.039962027,0.04605424,-0.027777597,-0.043104835,-0.0047202576,-0.019437065,-0.043346588,-0.05105856,0.021346927,-0.018917292,0.022011751,-0.0043153185,-0.008268005,0.02435677,-0.020500785,0.05802109,0.011658613,-0.010921261,0.010020725,-0.039478518,-0.06271113,0.030001739,-0.01007512,-0.028599562,-0.01356243,0.016318431,-0.023486454,0.013151447,-0.012825078,0.033362128,-0.008805909,-0.03285444,0.021588681,-0.027584193,0.050623402,0.027052334,0.0034782435,0.01204542,-0.0031246773,-0.004058454,-0.044386134,-0.0040554325,0.020561224,0.01584701,0.011229498,-0.0090234885,-0.014867905,-0.0026804535,0.015230536,-0.010909174,-0.041678485,0.021552417,-0.034474198,0.052412383,-0.0006266731,-0.022737015,-0.028164404,0.011876192,-0.0011158483,0.006207048,-0.0018751087,-0.03036437,0.008219655,0.03133139,0.02074254,-0.0032395108,0.018590923,0.0022845804,0.0027167166,0.022035927,0.0020639794,-0.0054757404,-0.014203079,-0.021383189,-0.020138154,-0.004735367,-0.00004915361,0.03292697,-0.0070652766,-0.0018237358,-0.009077883,-0.018143678,-0.061018847,-0.00059796474,-0.0013190733,-0.016681064,0.008606462,0.017188748,-0.03307202,0.019606294,-0.0042427923,0.07088243,-0.03972027,-0.019968925,0.00043402496,0.030267669,-0.0046779504,0.0043697134,-0.006388364,0.01361078,-0.018373346,0.006243311,-0.0047897617,0.016040415,0.011991025,0.026593,-0.024308419,-0.017309625,-0.00949491,-0.0058262846,0.0074520838,-0.030267669,0.008358663,0.0439268,-0.00744604,-0.00699275,0.031524792,0.011598174,-0.008358663,-0.028357808,-0.017611818,0.010486104,0.00835262,-0.02685893,0.018324994,-0.024102928,-0.01276464,0.01002677,-0.010661376,-0.017478853,0.021588681,0.034909356,-0.002573175,-0.052847542,0.0054364554,-0.031790722,-0.005786999,0.020730453,0.034812655,0.028913843,-0.013429465,-0.016898643,-0.0011218921,0.0042186165,-0.027511667,-0.00083934155,-0.0045752046,-0.0077421893,-0.020343645,-0.000058030535,0.060438637,0.04818168,0.01154378,0.01010534,-0.018965643,0.0039768624,0.017152485,-0.014589886,-0.026979806,0.02169747,-0.014565711,-0.0017436546,-0.033483002,-0.013526167,0.009162497,-0.024562262,-0.02302712,0.034280796,0.0029750918,0.062130917,-0.015327238,0.0346676,0.022205155,-0.010697639,0.0054364554,-0.035296164,0.020222768,0.006040842,0.016874466,-0.022120541,0.0037562612,-0.031935774,-0.0121179465,0.008497672,0.0071921977,-0.06599899,0.010909174,-0.023788648,0.009845453,-0.051493715,-0.021842523,0.012220692,-0.0048139375,0.010600937,0.0073009874,0.039430164,-0.022579875,0.012825078,0.021020558,0.0002530868,-0.012130034,0.022954594,0.013320675,-0.007548786,-0.0198964,0.008219655,0.015822835,0.050188243,-0.013816272,-0.018409608,0.000107561886,-0.0012707224,-0.013260237,0.0113685075,-0.01914696,-0.012970131,-0.018240381,0.013393202,-0.05395961,-0.024078753,-0.03754448,-0.02280954,-0.008074602,0.003009844,0.013042658,-0.0009360434,-0.008685032,0.038366444,-0.035707146,0.020730453,-0.012728376,0.008062514,-0.0054727183,0.0116707,0.0065575917,0.0010810961,0.003907358,-0.01044984,-0.013804184,0.013864623,-0.020234855,0.017672257,-0.013054745,-0.012160254,-0.010286655,-0.035779674,-0.041968588,-0.03285444,0.028381983,-0.009646006,-0.013659132,0.021371102,-0.02930065,0.013683307,0.009011401,-0.00047746522,-0.036649987,-0.050768454,-0.040276308,-0.023256786,0.017188748,-0.01303057,0.0386082,-0.025094122,-0.0049741,0.01018391,0.02930065,-0.006019688,-0.026834754,-0.03249181,0.024175454,-0.00063082826,-0.012776728,-0.007971856,0.029929211,0.012885517,0.022084277,-0.09626666,0.020645838,-0.008141085,0.006642206,0.03314455,0.0048381127,0.0466828,0.021093084,0.04158178,-0.036480762,-0.0030007781,0.0106190685,0.0233414,-0.0007256414,0.021854611,0.023039207,0.023039207,0.013465728,0.0035598357,-0.017793134,-0.028164404,-0.018071152,-0.009192716,0.04003455,0.018977731,0.027922649,0.0064367144,-0.004826025,0.040977396,0.0075366977,0.015351414,0.026617175,0.004605424,0.031041283,0.033942338,0.04109827,0.008328444,-0.025867736,0.02302712,-0.04387845,0.0048109153,-0.0070652766,-0.024550173,0.025891911,0.041412555,0.036359884,-0.023619419,0.02207219,-0.013900886,-0.018977731,0.0016907708,-0.05333105,-0.0034601118,0.009108102,0.011997069,0.024562262,-0.02632707,0.011447078,-0.015182185,-0.029687457,-0.010401489,0.042742204,0.03159732,-0.016390959,-0.028841317,-0.036625814,0.00007162923,0.008207567,0.0065031974,0.02930065,-0.01728545,0.008346575,-0.011295981,0.027971,0.028406158,0.027777597,0.015834922,-0.049051996,0.0015623387,-0.043080658,0.0053971703,0.038221393,-0.0033996732,-0.02557763,0.013369026,-0.01637887,-0.01633052,0.0226524,-0.0073856013,-0.008721295,0.029010545,-0.021153523,0.0032123134,-0.013864623,-0.006720776,0.0009700401,-0.062179267,0.01946124,0.014178904,-0.031887423,0.037471954,-0.024900718,0.052460734,0.051493715,-0.024308419,0.013417377,0.018131591,-0.0018312907,-0.022301856,-0.038269743,0.003496375,-0.02552928,-0.00078041386,0.031524792,-0.018856855,0.0032606644,0.021600768,-0.02690728,-0.018578837,0.025190823,0.012716289,0.015085483,0.0071559343,-0.03897083,-0.028502861,-0.012994306,0.05270249,0.023413928,-0.0399862,0.0051765693,-0.0054183234,0.02951823,-0.0058262846,0.025819385,0.016656889,0.0005073068,-0.021189785,-0.03372476,-0.014481097,0.017841484,0.03312037,-0.018107414,0.055700246,-0.027414965,-0.018603012,0.032370932,-0.009108102,0.025360052,0.00048766425,-0.025287526,0.015436027,0.0065394603,-0.007488347,0.0505267,-0.0066059427,0.009863585,-0.0036776909,0.015701957,-0.03807634,0.045328975,-0.004783718,0.03926094,-0.024284244,-0.042524625,-0.024260068,-0.0011755314,-0.012994306,0.024151279,0.013465728,0.017297538,0.022688664,-0.03174237,0.04849596,0.0082921805,-0.025940262,0.043467466,0.033628058,-0.0013802673,0.0043062526,0.004396911,0.027318263,-0.04823003,-0.006732864,0.033483002,0.06783632,0.017841484,0.041871887,0.002885945,-0.00789933,0.025553456,-0.0033392345,-0.0033785198,0.05255744,-0.03701262,0.021878786,-0.002926741,0.028261106,0.03324125,-0.0010161245,-0.0159558,0.050671753,0.023728209,0.003813678,-0.0022558721,0.028236931,0.017768959,-0.034208268,0.033265423,0.010014682,0.014094289,0.0069202236,-0.02739079,-0.021927137,0.007808672,-0.012704201,-0.0071257153,-0.031186337,0.009954243,0.0005031516,0.016415134,0.027753422,-0.02898637,-0.0006686024,0.016463485,-0.010165779,-0.03217753,-0.002124418,0.005487828,-0.021878786,0.01345364,-0.027608369,0.012680026,0.01642722,0.011471253,0.0044482835,-0.019739259,-0.019533766,0.013417377,0.012534973,0.0199931,-0.010606981,-0.004644709,0.016946994,-0.029324826,0.004705148,0.020718364,-0.0006157186,0.044047676,-0.011797622,-0.018179942,0.019231575,-0.0050284946,0.021709558,-0.018603012,-0.010492147,0.007294943,-0.030606125,0.004644709,0.012317394,0.00957348,0.0049952534,0.0065878113,0.00007115705,-0.010673463,-0.002168236,0.003632362,0.02898637,0.02323261,-0.012849254,0.0059139202,-0.044313606,-0.0017466765,0.018748065,-0.004514766,-0.023522716,0.0035628576,0.017104134,-0.00070448784,-0.010721814,-0.0059562274,-0.022616137,-0.0292523,-0.001953679,-0.011628393,-0.0014150195,-0.02025903,-0.0043183407,-0.019666731,0.0026804535,0.006956487,0.008709207,-0.002083622,-0.007294943,0.012680026,0.018820591,0.0132965,-0.019715082,0.016523924,0.013199798,-0.014747027,-0.03510276,0.013925062,-0.0023193327,0.008080645,-0.0049771215,0.020802978,0.018252468,-0.028454509,-0.009706445,0.003994994,-0.020077715,-0.03195995,0.0028904777,-0.020512873,0.0055150255,0.014879992,-0.044216905,-0.043999325,0.008606462,0.018034888,0.043950975,0.0075064786,-0.022458997,-0.002479495,-0.020670014,0.013078921,0.022362296,-0.013876711,0.0010690084,-0.006466934,0.0037532393,0.0015744264,-0.014323956,0.007857023,0.0060015563,0.018893117,-0.010087208,0.0119064115,0.005013385,0.014263518,-0.018554661,-0.016548099,-0.030170966,-0.004366691,0.019388715,0.016451396,0.002834572,-0.002521802,-0.007844935,-0.041775186,0.05110691,-0.010165779,-0.00038491856,-0.011066314,-0.0049831653,0.012619587,0.0071559343,0.029421527,-0.000764171,0.013574517,-0.052460734,0.0049831653,-0.006720776,-0.021141434,0.031839073,0.029349001,0.0010078142,-0.02030738,0.02286998,-0.010884998,0.017503029,0.011163016,-0.0038348313,-0.030436898,-0.039599393,-0.019231575,-0.015931625,-0.012849254,0.026593,-0.0047172355,0.012402008,0.01936454,-0.019968925,-0.035223637,-0.029010545,-0.013925062,-0.032781918,-0.014456921,0.04083234,0.0052037663,-0.0135019915,-0.016185466,0.027825948,-0.02903472,-0.013804184,0.015859097,-0.027487492,-0.018167853,-0.008733382,-0.0035991208,0.004680972,0.017370064,0.007494391,-0.003632362,-0.0038710947,-0.01744259,0.037375253,0.024924893,-0.0063279252,-0.011471253,-0.021854611,0.00050957326,0.00052241643,0.0048925076,0.020343645,0.027487492,0.009911936,0.00725868,-0.001592558,0.05333105,0.006188916,0.0032395108,-0.021600768,0.0048381127,-0.029953388,0.0126558505,0.011791578,-0.041291676,-0.0067389077,-0.00068711175,0.028357808,-0.00469306,0.00030313752,0.037931286,-0.0074158204,-0.012740464,0.020017276,-0.015871186,-0.028502861,0.018796416,0.027632544,0.016209641,0.012970131,-0.0068960483,-0.0125591485,0.0025414447,-0.011876192,-0.025408402,0.011120709,-0.009210848,0.013937149,0.026447946,-0.0024946046,0.007863066,-0.016137116,-0.014323956,-0.011549823,0.015290975,0.012154209,0.007579005,-0.025408402,0.0045208097,0.0037169761,0.00020775781,0.01888103,0.01037127,0.038148865,-0.026786404,-0.008769646,-0.001770852,0.009670181,0.028381983,0.013260237,-0.05221898,-0.015242624,-0.0078509785,0.01371957,-0.037399426,0.014771203,0.014384395,0.007917461,-0.011761358,-0.020452434,-0.0043002088,0.0063037495,0.008364707,-0.0044936123,-0.008678988,-0.024828192,0.0071196714,-0.0006840898,-0.00744604,0.023305139,-0.003985928,0.025360052,-0.005194701,0.00813504,-0.022676576,-0.033168722,0.042645503,0.011211366,0.00203376,0.00380159,-0.00066822465,0.020174416,0.015617344,0.0026381465,0.03350718,0.02021068,-0.027366614,-0.018095328,-0.012510798,0.01888103,-0.0505267,0.010189954,-0.022301856,0.028696263,-0.021890873,-0.006291662,0.009688313,-0.029397352,-0.015593168,-0.019159047,0.008074602,-0.004387845,-0.008739427,0.030436898,-0.00028613917,0.0055210693,-0.017406328,-0.04462789,0.0012133056,0.0318149,0.018167853,-0.017575555,-0.017926099,-0.058166143,-0.022168892,0.0025112254,-0.01936454,-0.004288121,-0.019811785,0.008340532,0.008824041,0.007264724,-0.011991025,-0.003587033,0.004735367,-0.00018112703,-0.020271119,-0.0008370751,-0.0043546036,0.00786911,-0.007216373,-0.004919705,-0.029421527,-0.014227254,0.02413919,0.007349338,-0.00041249368,0.0077663646,0.020500785,-0.02579521,-0.0479641,0.014239343,0.003901314,0.019340362,0.028647913,0.009210848,0.019243661,0.0072042854,0.016681064,-0.029639106,-0.044289432,0.02238647,0.01983596,-0.019860135,-0.0041974634,-0.027269913,-0.030920405,-0.00055527996,-0.0008461409,-0.011876192,-0.0028919887,0.06319464,-0.03935764,-0.029711634,-0.0021153523,-0.010093252,0.013465728,0.03292697,0.00088467053,-0.024997419,-0.0020957098,-0.0021108193,0.020706277,0.034764305,0.0193041,-0.03261269,0.014420658,0.020609574,0.021830436,0.005357885,0.018433783,-0.02313591,-0.020839242,-0.014928343,-0.013586605,0.021153523,-0.021649119,0.013320675,0.034861006,-0.016632712,-0.024175454,0.012825078,-0.008491628,-0.036674164,-0.0010055478,-0.029759984,0.04003455,0.024997419,0.0054122796,-0.010461927,0.006104302,-0.06459682,0.011066314,-0.0013372048,-0.023147997,0.051397014,0.0051221745,-0.02526335,0.025553456,0.0070531885,-0.03355553,0.015544817,0.03701262,0.02526335,0.0064427587,0.021588681,0.0013024526,-0.01026248,0.028865492,0.037689533,-0.02280954,-0.006388364,-0.008038338,-0.022120541,0.002477984,0.0052400297,0.005566398,-0.02898637,-0.013006395,-0.0034842873,0.0019143937,-0.01749094,0.009724576,0.0033513224,-0.018083239,-0.061115548,0.016971169,-0.0014633705,-0.02286998,-0.021769997,0.00212744,0.0009473756,-0.017563468,0.024066664,-0.0015895361,0.025771035,0.049003646,0.026036965,-0.00090582407,0.03839062,-0.011864104,0.056570563,0.036722515,-0.0011166037,0.048520137,0.017853573,0.056812316,-0.036674164,-0.0027847101,0.011852017,0.0022815585,0.0372302,0.0030491292,-0.0048139375,0.03067865,-0.0134052895,-0.017188748,-0.009446559,-0.043975152,-0.010056989,-0.0464894,-0.0038408753,0.030340195,-0.008128996,-0.011984982,-0.011489385,-0.027971,0.006732864,0.02047661,-0.006599899,-0.02335349,0.012474534,0.014396483,0.008237786,-0.039019182,-0.0016152225,0.015109659,-0.0058323285,-0.005590574,-0.022023838,-0.005055692,-0.00893283,0.0173338,0.012643763,-0.01515801,-0.010238305,0.00874547,-0.034643427,-0.0049922313,0.0015442071,-0.0066542937,0.010117427,0.0023374641,-0.029349001,-0.028309457,0.008503716,-0.015520642,0.007983943,-0.0110784015,-0.040227957,0.005977381,-0.043830097,-0.022217242,-0.0061073243,0.011108621,0.016995344]},{"id":"class-BitField","type":"class","source":"main","text":"Class: BitField\nProperties: [Symbol.toStringTag]: string, bitfield: number, defaultBit: number, Flags: Record\nMethods: add(bits: BitFieldResolvable[]) -> this; equals(bitfield: BitField) -> boolean; freeze() -> Readonly>; has(bit: BitFieldResolvable) -> boolean; remove(bits: BitFieldResolvable[]) -> this; resolve(bit: BitFieldResolvable) -> number; serialize() -> Record; toArray() -> S[]; toJSON() -> number; valueOf() -> number","meta":{"url":"/docs/classes/BitField"},"embedding":[0.006078237,0.0012443577,0.0035672083,0.018231736,-0.004897102,-0.0131620765,-0.009169421,-0.019600308,0.0055010575,-0.013899914,0.0642157,0.020409549,0.03796295,0.003965879,0.048197474,0.015089975,-0.015327987,-0.0077651488,0.04691221,-0.012007717,-0.032726683,0.001566418,0.038129557,-0.0035582827,0.013066871,-0.0095680915,-0.028989889,-0.015125677,0.008401832,-0.00545048,0.008229272,-0.02161151,0.059550658,0.0059473305,-0.013185877,-0.016018223,0.038819794,0.02045715,0.0024247495,0.017946122,-0.018422145,-0.010561792,-0.04336583,-0.015506497,0.018600656,0.048554495,-0.016410943,0.015078074,-0.052077074,0.038010553,0.009579992,0.039581433,0.032560073,0.02451526,0.0065929387,0.022658763,-0.02882328,0.05279111,0.038248565,-0.01965981,0.07492625,-0.02960872,-0.038224764,0.013007368,-0.017481998,0.03156042,-0.058884226,0.0758783,0.013542895,0.021932827,0.03017995,-0.021123584,0.023777422,0.057932176,0.038605582,-0.0032696929,0.031465217,-0.004459754,0.03017995,-0.027585616,-0.041295122,-0.0025511936,0.00076238293,-0.03798675,0.055028427,0.032774284,-0.04557934,0.019314691,-0.036463473,-0.044889107,-0.011061618,-0.0331075,-0.052077074,-0.005971132,-0.021194989,-0.05336234,-0.03217925,0.0039361273,-0.040438276,-0.0370109,0.05003017,0.042080563,-0.014494944,0.019505102,0.03617786,-0.005980057,-0.021920927,-0.0026716872,0.008508937,0.005765846,-0.054028776,0.022539757,-0.0028115194,0.03522581,-0.03915301,-0.013090672,-0.021849522,0.004909002,0.017565303,-0.0050726356,-0.03401195,-0.024562862,0.0026553238,0.010139321,-0.010829557,-0.014506845,0.009603794,-0.047816657,-0.0050339587,-0.017160682,0.02958492,-0.03289329,0.014340237,-0.0077591985,-0.017946122,-0.008163819,-0.02453906,0.019481301,-0.018338842,-0.051267833,0.02684778,-0.040557284,0.05141064,-0.009615694,0.032679077,0.051125027,-0.04070009,-0.01478056,0.033488322,0.031179601,0.0544572,-0.012138624,-0.003599935,0.0038260466,0.014566348,-0.06878553,0.011174674,0.039867047,-0.0059413803,0.0002820817,0.02549111,0.0132453805,-0.03367873,0.019743115,-0.0017717035,0.0130787715,0.012793157,-0.025800526,-0.036130257,-0.044341676,0.007354578,-0.05003017,-0.020778468,-0.039272018,-0.044103667,0.014673454,-0.021694815,-0.05740855,-0.025848128,-0.022634963,-0.0048613995,0.022158938,-0.035773236,-0.02996574,0.024098737,-0.007973409,0.006598889,-0.010305929,0.046864606,0.005840225,-0.019397996,0.065120146,0.053171933,0.040057458,0.027204797,-0.01518518,0.0039063757,0.0056974175,-0.026514562,-0.04950654,-0.008931409,0.013495293,0.010294029,0.009740651,-0.014364038,-0.061026335,0.018291239,0.019981127,-0.04795946,-0.023813123,0.013173977,-0.01206722,-0.014102224,-0.024063036,-0.012876461,0.031822234,0.018326942,-0.016577551,-0.046269577,0.031441417,-0.012674151,-0.012013667,0.015851615,0.013483393,-0.0046055363,0.01730349,-0.01891007,0.004421077,0.029442113,-0.021980429,-0.041223716,0.020945076,-0.022861075,-0.008140018,-0.058312997,-0.0028576343,-0.03867699,0.040414475,-0.026752574,-0.064786926,0.013126374,-0.031869836,-0.021302095,0.045055714,-0.027895033,0.021278294,0.00008507077,-0.00091932225,0.009419334,-0.001162541,-0.022087535,-0.008937359,-0.02551491,-0.00089849613,-0.025776723,-0.031869836,0.027680822,0.06769068,0.0081757195,-0.0067476467,-0.051696256,-0.09672817,-0.020730864,-0.069785185,-0.031036794,-0.030727379,0.055599656,0.01616103,-0.004596611,-0.039557632,0.045674548,0.025776723,0.022337448,-0.052457895,-0.0060425354,-0.03582084,0.017232085,-0.0006177161,-0.011722102,-0.00016056528,0.02202803,-0.010383284,0.017755711,0.0018312066,-0.0084256325,-0.026490761,0.031203402,0.0016482347,0.015970621,0.029442113,0.063168444,0.030013341,0.09244395,-0.012156474,-0.023610814,0.009520489,0.050791807,-0.05431439,0.07354578,0.0046233875,0.05274351,-0.023277596,0.019802617,-0.03327411,0.020100132,0.02606234,0.0013499756,-0.022361249,0.013209678,-0.037510727,0.037891548,-0.017815216,-0.073878996,-0.032060247,-0.035202008,-0.04457969,0.056170885,-0.009175371,-0.0060008834,-0.010597494,0.0011707227,0.011222277,-0.007824652,0.010526091,0.0013611324,0.019921623,-0.033464517,0.038296167,0.027204797,-0.01265035,0.004299096,0.009901308,0.00350473,0.009942961,-0.011805407,-0.038795993,-0.019540804,0.038819794,-0.04027167,-0.0056914673,0.027371407,-0.016482346,0.015232783,0.017684309,-0.0039777793,0.010829557,-0.0056914673,0.011466239,0.007539037,-0.017958023,-0.0024530136,0.021064082,-0.061169144,-0.046793204,-0.020516654,-0.05212468,-0.0067654974,-0.082019016,-0.024217743,0.05179146,-0.0071106153,0.02841866,0.004697766,0.014875764,0.003873649,0.020564256,-0.059693467,-0.046221975,0.0076996954,-0.029918136,-0.02062376,0.013888014,0.025729122,-0.010728401,0.03541622,-0.048744906,0.02218274,0.00010162006,0.008711248,-0.023598913,-0.014911466,0.039962254,-0.020802269,-0.0409381,0.009847756,0.004549009,-0.027133394,0.03215545,-0.05436199,0.03777254,0.042913605,0.02646696,0.022075634,0.015292286,0.010805755,0.008812402,0.0032072146,0.05279111,-0.0031774633,-0.028490063,0.013650001,-0.005340399,0.012352834,-0.006384678,0.015256584,0.014518746,0.02996574,0.04500811,0.053647954,-0.010240476,0.003076308,-0.008758849,0.04031927,0.011841108,0.03915301,-0.0005797829,-0.01654185,-0.00021755804,0.026014736,0.012602747,-0.023848824,0.007955559,-0.021040281,-0.054266788,0.0077532483,0.025657717,-0.014625851,-0.02803784,-0.012156474,-0.030060943,-0.021456802,0.013578597,0.03546382,0.0039986055,0.03798675,-0.025943333,-0.025348302,0.0016586477,-0.028204449,0.027799828,-0.03539242,0.034226157,0.03451177,0.03217925,-0.044436883,0.004459754,0.008312577,-0.026919182,0.046436187,-0.032560073,0.0036564628,-0.013769007,-0.056980126,0.0038498477,0.005920554,0.025871929,0.043627642,-0.023015782,0.0022938428,-0.012114822,-0.0051261885,0.019743115,0.011305581,0.065453365,-0.01380471,0.0018936847,-0.0142212305,0.03524961,0.025038887,0.0103773335,-0.0074259816,-0.013602398,0.010823606,0.02084987,-0.017232085,0.0024738396,0.04415127,-0.005509983,0.034987796,-0.026252748,0.027419008,-0.0038855495,-0.02412254,-0.0011067569,-0.032869488,0.074450225,0.062216397,0.010252377,-0.010442787,0.0013142738,-0.03617786,-0.051601052,0.023991633,-0.011109221,0.030941589,0.009228924,-0.034345165,-0.013745206,0.04460349,-0.046959814,0.04186635,-0.025372103,0.0114067355,-0.011168724,0.016315738,0.01808893,0.015268484,-0.009919159,-0.036534876,0.017612904,0.018588755,0.011025917,-0.029632522,-0.0105439415,0.000783209,-0.012626548,0.021135485,-0.0005392464,-0.018077029,-0.032774284,-0.014685354,-0.021361597,0.010413035,-0.021159288,0.01772001,0.004403226,-0.029775329,-0.00040945542,0.0015225344,-0.030441763,0.003736792,-0.027014388,0.0038260466,0.018731562,0.009068266,0.009841805,-0.015197081,0.050172977,0.00700946,0.008621993,-0.016339539,0.0053582503,0.014161727,0.019302791,-0.013971318,0.010413035,-0.0048137973,0.0075687887,0.0055546104,0.043699045,0.024063036,0.0057926225,0.03931962,-0.06269242,0.019338494,0.037891548,0.03782014,0.0005611882,-0.05102982,0.017243985,0.0006969295,-0.045650747,-0.0116566485,-0.0014667504,0.021456802,-0.010484438,-0.009853706,-0.017553402,0.03934342,-0.035797037,-0.027133394,0.018374544,-0.0051113125,-0.0047423937,0.0019264114,-0.011888711,-0.013292983,-0.027038189,0.022218442,0.0066881436,-0.008502987,-0.039414823,-0.029323107,-0.0034184507,0.0069737583,0.03858178,0.061740372,0.00719987,-0.0015961695,-0.00062664156,-0.018612556,0.021361597,0.009532389,0.025276897,0.014959068,-0.015982522,-0.010752202,0.03467838,-0.0662626,0.035511423,0.03213165,0.024063036,-0.016470445,0.0037903448,-0.020183437,0.022266043,0.021813821,-0.01964791,-0.005527834,0.0120196175,-0.03217925,0.024241544,0.02240885,-0.049982566,0.025324501,0.019493202,-0.005477256,0.0099310605,-0.0099310605,0.012864561,-0.027823629,0.022682564,-0.021980429,0.020112034,0.017374892,0.010918811,-0.0040402575,-0.015542198,0.007973409,0.0145544475,-0.017005974,0.006206169,0.009038514,-0.0045817355,-0.02356321,-0.0009765939,0.06659582,0.043127816,-0.017505798,-0.017648606,0.05436199,0.01888627,0.02958492,0.0019963277,0.026157543,-0.03541622,0.023027683,0.037653536,-0.01850545,-0.033416916,0.01891007,-0.014768658,0.030108547,-0.026990587,-0.009984612,0.008574391,-0.027799828,0.032203056,0.0016705483,0.0065691373,0.017874718,0.004260419,-0.003466053,-0.028704274,0.024467656,0.020695163,-0.0062775724,0.0018654208,-0.005158915,0.018326942,-0.004980406,-0.015101876,0.04945894,-0.01420933,-0.0034184507,-0.008437534,-0.0063192244,0.004049183,-0.029918136,0.04248518,-0.0041741394,-0.012400437,-0.03915301,-0.048007067,-0.01868396,-0.040771496,-0.023920229,0.01733919,0.020588057,-0.022230342,0.0021227715,0.029108895,-0.013899914,-0.035963647,-0.022813471,0.020754667,0.047673848,-0.018136531,-0.035773236,-0.045674548,-0.012412338,0.012388537,-0.05369556,-0.030822583,-0.0057509704,-0.0144711435,-0.025657717,0.043342028,0.0116864005,-0.022266043,-0.033178903,-0.0034214258,-0.01926709,0.028180648,-0.02315859,-0.0036624132,0.015458894,0.05279111,0.021183088,-0.009669247,-0.01207317,-0.0155302975,-0.03384534,-0.00077279593,0.032036446,0.03227446,0.007687795,0.039629035,-0.005730144,-0.0025095413,0.0035761336,0.028204449,-0.006563187,-0.0052303188,-0.015161379,0.030513167,0.003448202,0.0024530136,0.016399043,-0.0008300676,-0.0053642006,0.014340237,0.035797037,-0.013959417,-0.006967808,-0.0011997303,-0.03132241,0.018553052,-0.029132696,0.016994072,-0.0034422518,0.007491435,-0.0146377515,-0.018053228,0.02237315,0.010948562,-0.027680822,-0.015875416,-0.025015084,0.0019502126,-0.06454892,0.039414823,-0.02644316,-0.013400088,-0.016660856,0.008021012,-0.021135485,-0.005861051,0.009520489,0.017958023,-0.01244804,0.051601052,-0.040819097,-0.017101178,0.064120494,-0.014328336,0.0054623806,-0.021885224,-0.055456847,-0.043889455,-0.014256933,-0.010115519,0.015863515,-0.023396602,-0.03991465,0.005685517,0.0060484856,0.0134119885,-0.03384534,-0.027133394,-0.03167943,0.0070808637,-0.030679775,0.010204774,0.01616103,-0.01244804,0.004852474,-0.071356066,0.018136531,0.021528207,-0.027419008,-0.025752923,-0.020718964,0.0039391024,0.04596016,-0.0030911837,-0.033226505,0.012198127,-0.024824675,0.013959417,0.019064778,-0.01168045,-0.017541502,0.028204449,0.00021718616,0.007991261,-0.0067416965,-0.01400702,0.036630083,-0.016898869,0.043342028,-0.018434048,0.03639207,0.010186924,0.004450829,0.011787555,-0.03325031,0.03234586,0.02956112,0.002490203,0.021873323,0.007092764,-0.029108895,0.01694647,0.02453906,0.015435093,0.021397298,0.019302791,-0.009633545,-0.028204449,0.039843246,0.019909723,-0.01343579,0.009240825,-0.024443856,-0.023146689,-0.026657369,-0.025086489,-0.00700351,0.03167943,-0.031822234,0.032702878,-0.017029775,-0.019624108,-0.008270925,-0.02706199,-0.004688841,-0.022277944,0.044555888,-0.0027416034,0.012043418,0.06869033,-0.04024787,0.021742417,-0.028680474,0.0056111384,-0.0034749785,0.021944728,-0.03175083,-0.012555145,0.021647211,-0.005486182,0.032631475,0.010353532,-0.042961206,-0.051696256,-0.03444037,0.0052630454,-0.015125677,0.04417507,-0.035678033,-0.018077029,-0.002717802,-0.03677289,0.0661198,0.038034353,-0.0154469935,0.05183906,0.0025303676,-0.011216327,-0.0004555703,0.007437882,-0.0080924155,-0.035178207,-0.008116217,-0.052315086,0.012156474,0.009175371,0.004242568,-0.0121326735,-0.04379425,-0.03479739,-0.0051321387,0.028537666,-0.004534133,-0.009514539,-0.010496339,-0.012924064,-0.03546382,0.008699347,-0.007973409,-0.007539037,0.009324129,0.047412034,0.03539242,-0.03798675,-0.030941589,-0.0014823698,0.01149004,0.00043883504,-0.025419706,-0.01769621,0.031846035,0.05293392,0.00033135765,0.005801548,-0.027728423,-0.002061781,0.027300002,-0.017850917,0.01769621,0.03384534,-0.026514562,-0.028490063,-0.00267615,-0.023408502,-0.013316784,-0.019933524,0.0069261556,-0.0043913256,0.0121326735,-0.019231388,0.009907259,-0.024634266,-0.008479185,-0.013899914,-0.010555842,-0.014173628,0.016625155,-0.0014898077,0.039200615,-0.014066523,0.026157543,-0.026514562,-0.006598889,0.012816958,0.049554147,-0.042699393,0.047626246,0.028847082,-0.024705669,-0.0061942684,-0.020683262,-0.018945774,0.0015210469,-0.022694467,0.048982915,0.0032399413,-0.006325175,-0.000109522814,0.051125027,-0.02591953,0.023229994,-0.012293331,-0.019493202,0.0013923715,-0.03760593,0.011049718,-0.04655519,0.023122888,-0.0045609092,0.039200615,0.006170467,-0.018005624,0.003677289,0.02375362,0.052648306,0.0038409224,0.036701486,0.016696557,0.011222277,-0.010674848,-0.0063192244,-0.0005712293,0.008949259,0.035035398,-0.017553402,0.0072653233,-0.0013328685,-0.018553052,-0.0044359528,-0.006563187,-0.018160332,0.017946122,0.02684778,-0.008580341,0.048506893,-0.0052600703,-0.023801222,0.0056557655,-0.008449434,-0.020611858,-0.007497385,-0.018005624,0.03134621,0.010050066,0.015851615,-0.0095680915,-0.008354229,-0.033202704,-0.014185528,-0.029489715,-0.032774284,0.049982566,-0.024824675,-0.031869836,-0.014697255,0.011626897,0.0087886015,-0.0045728097,-0.038605582,0.045079514,0.020778468,-0.001503196,-0.026205147,-0.0148876645,-0.0115733445,0.0051142876,-0.005004207,0.046293378,0.0026835878,0.0080924155,-0.018933872,-0.019636009,-0.0027609419,0.0054534553,-0.0019531879,0.008752899,0.01773191,-0.011376984,0.0075092856,-0.0058670016,-0.006896404,0.0034898543,0.0045876857,0.027728423,0.017386792,0.04422267,0.01499477,0.024170142,-0.004650164,-0.020219138,-0.0008278363,0.018410245,0.0046799155,0.009818004,0.011781605,-0.041152313,-0.006563187,0.025443507,-0.021397298,-0.0010710551,0.03929582,-0.02684778,-0.018303141,0.007027311,-0.007283174,-0.03460698,-0.02901369,0.018207936,0.020933175,-0.01851735,-0.020159636,-0.006997559,-0.009722799,0.018148432,-0.018422145,0.04422267,-0.017291589,0.0037219161,-0.026181344,0.05507603,-0.020754667,-0.008610092,-0.042770796,0.030084746,0.01381661,-0.01244804,0.0071165655,-0.03936722,0.0025407805,0.0025511936,-0.009693048,0.014709156,-0.025562514,-0.04110471,0.0023548335,-0.0035196058,0.011900611,-0.006018734,-0.027585616,0.013840411,0.03620166,0.0032786184,-0.06673863,0.01244804,-0.023539409,-0.0036267112,-0.000635567,-0.0136262,0.024705669,0.0023964855,0.005587337,0.008407782,-0.02708579,-0.03365493,0.0331075,-0.012674151,-0.026990587,0.0447463,-0.0006545336,0.007860354,0.017041676,-0.004828673,0.02511029,0.022170838,0.0036683634,0.01439974,-0.015708806,-0.004459754,-0.00065155845,-0.008544639,-0.021159288,-0.0041979407,-0.045198523,-0.0023637589,-0.01851735,0.04591256,0.024051135,0.0077115963,-0.002735653,-0.0021644237,-0.028751876,-0.0022417777,-0.014697255,-0.023825023,0.03486879,-0.008264975,0.018850569,-0.019885922,0.024039235,0.0034511774,0.0053225486,0.03677289,0.0038498477,0.020088231,-0.0004555703,0.0022878926,-0.0052481694,0.009074216,-0.021290194,-0.028204449,-0.02960872,-0.0037903448,0.02082607,0.0075449874,-0.037106104,0.008776701,0.027014388,0.016827464,-0.00020640122,-0.077258766,-0.016101528,-0.019100482,0.004346698,-0.010972364,-0.008026962,-0.03791535,-0.009829905,-0.011543593,0.031798434,0.010169072,-0.01323348,-0.011359134,-0.012793157,-0.020611858,-0.031631824,-0.0018148433,-0.04405606,0.01576831,-0.00025195826,-0.005432629,0.0013544384,0.018660158,-0.011983915,0.011644748,-0.011341282,-0.029680125,-0.0009661809,-0.010061967,0.0028858983,0.021968529,0.0064739324,0.015720708,-0.030727379,0.018672058,0.03558283,-0.00091262814,0.026633568,0.0031447366,-0.008979011,0.021552008,-0.010930711,0.022206541,-0.0120196175,-0.0046680146,0.009455035,0.020088231,0.0041979407,-0.030298956,0.030917788,-0.031869836,-0.008074565,-0.01226953,-0.024420055,0.0136143,-0.0007809776,-0.005093462,0.047578644,0.008520838,-0.0012339447,-0.017184483,-0.0023578086,-0.0035582827,0.0067416965,-0.0059265043,-0.028133046,0.01537559,0.007812751,0.004897102,-0.016494248,0.03365493,-0.025752923,-0.0052600703,-0.013578597,0.020088231,-0.01518518,0.02258736,0.030251354,-0.03936722,0.00037970388,-0.0058521256,-0.008782651,0.006402529,-0.010567742,-0.011638798,-0.008770751,0.023444204,-0.01968361,-0.015482695,0.00086056296,0.013114474,-0.00022797109,0.00680715,-0.016589452,0.020302443,-0.017017875,0.03075118,0.009211073,-0.019933524,0.02841866,-0.0067654974,-0.003698115,0.017113078,-0.017160682,-0.009008762,0.044532087,-0.023110988,-0.0056349393,0.03929582,-0.012947865,-0.003326221,0.021873323,0.008336378,-0.008854055,-0.030441763,0.0025630943,-0.036273062,-0.04186635,-0.020909375,-0.02549111,0.029465914,0.017386792,0.018755363,-0.0037427424,0.0013685703,0.020100132,0.007907956,-0.0037486926,-0.010175022,-0.04398466,-0.032607675,0.031988844,0.0062002186,0.005477256,0.024289148,0.011037817,0.009466936,0.015351788,-0.045793552,0.023075284,0.0016988122,-0.010294029,0.03296469,0.02082607,-0.02161151,-0.021540107,-0.035154406,-0.019874021,-0.0040878598,0.035773236,-0.029275503,-0.027323803,-0.00034641934,-0.007783,0.02760942,-0.008984962,0.040985703,0.008169769,-0.02839486,0.0053642006,0.009722799,0.011085419,-0.003894475,0.024848476,-0.005331474,0.011127071,-0.034202356,-0.015518397,-0.009074216,-0.015399391,0.012156474,-0.027395207,-0.028728075,0.0066702925,0.0011365084,-0.0311558,-0.023015782,-0.007336727,-0.0045698346,-0.038486578,0.003153662,-0.004052158,-0.0148876645,0.001197499,0.033583526,0.02102838,0.005718244,0.021171188,0.0311558,-0.0044270274,-0.0012882411,-0.005932455,-0.018077029,0.010401134,0.020885574,-0.0016809613,0.0028323454,-0.0015976571,-0.024610464,0.0043109963,0.047721453,-0.01929089,0.007051112,-0.0043318225,0.017898519,0.024253447,-0.017113078,-0.03915301,0.008205472,-0.026157543,0.017541502,-0.0044686794,0.017362991,0.011722102,-0.012233828,-0.0009884945,-0.0233609,0.0023935104,0.0036326617,-0.0052035423,-0.0016006322,-0.014364038,-0.0011841109,0.015256584,-0.020647561,-0.015625503,0.0031179602,0.0009014713,0.021909025,-0.01322158,0.012519443,-0.004843549,0.003272668,-0.03405955,-0.021302095,-0.004316947,-0.027704623,-0.008401832,-0.024872277,0.00089031446,-0.0010881622,0.0022893802,0.021397298,-0.048316482,-0.019993028,0.00573907,0.004656114,-0.011008065,0.0053433743,0.020885574,0.039605234,0.04979216,-0.024277247,-0.005730144,0.009478837,0.0085386885,0.028061641,0.0031090346,0.012483741,-0.017077377,0.02123069,-0.031631824,-0.058646213,-0.012983567,0.01303117,0.013650001,-0.003233991,-0.004123562,0.005191642,0.019017177,-0.037082303,0.025467308,-0.005447505,-0.0052630454,0.0063430257,-0.0042871954,-0.0103475815,-0.0029796155,0.01441164,-0.007051112,-0.00053850265,-0.004245543,-0.0101809725,-0.0059503056,0.01186491,0.0049149524,0.0052035423,-0.014673454,0.008270925,-0.0005295772,0.039771844,-0.031988844,-0.036630083,0.02120689,-0.0132453805,0.034963995,-0.013019268,0.030870186,-0.0013849336,-0.04460349,0.067024246,-0.0061883177,-0.02179002,-0.0034601027,-0.024027335,-0.021064082,0.0050101574,-0.00066420285,-0.021147387,-0.04805467,0.0046828906,0.065405756,0.004052158,0.00041057108,0.027990237,0.016375242,0.01245994,0.021373497,0.0054980824,-0.018386444,0.0015292285,0.030298956,0.038105756,0.009187272,0.010645097,-0.023503708,0.0025735071,0.002743091,-0.02199233,-0.0006794505,-0.0019308742,0.020968877,0.018303141,0.013150175,0.009907259,0.023789322,-0.002981103,0.0026106967,-0.014959068,-0.0036921646,-0.042889804,-0.0070213606,-0.029227901,0.05974107,-0.02084987,0.010145271,0.062025987,-0.012686051,-0.007842503,0.0068785534,0.002423262,0.01965981,0.014102224,0.0027698672,0.039843246]},{"id":"class-CategoryChannel","type":"class","source":"main","text":"Class: CategoryChannel","meta":{"url":"/docs/classes/CategoryChannel"},"embedding":[0.0039052747,-0.005364893,-0.05191011,-0.02307116,0.03579423,0.04515275,-0.01778402,0.02120511,-0.012320169,-0.0020887034,0.018900823,-0.0012369648,-0.011443691,0.05196666,0.048375927,-0.0039406163,-0.025304766,0.00016599626,-0.023862818,0.07385033,0.010461188,0.01929665,0.035850774,0.04184475,-0.027665602,-0.0044919495,-0.02229364,0.03336271,0.008828394,-0.0028997988,0.10336785,-0.037320994,-0.0010452352,0.0112881875,0.007881233,0.020766871,0.0018943233,0.0139388265,0.020356907,-0.0025446133,-0.015988654,0.018292943,-0.02606815,-0.0007920992,0.035765953,0.01998935,-0.034748107,0.05312587,0.02038518,-0.0060752644,-0.057027612,0.0016654847,0.018208122,0.006198961,0.003226711,0.016158294,0.0148435775,-0.0051846495,-0.023622494,-0.034635015,-0.02411728,-0.06197547,0.030818094,-0.016059337,-0.000010140074,-0.03760373,-0.056999337,-0.002480998,-0.033899903,-0.009556437,0.005651162,-0.016667217,0.004127928,-0.010758059,0.00083495124,0.014476023,-0.044954836,0.028216934,0.033560622,-0.012157597,-0.04297569,0.051938385,-0.02120511,0.019268377,0.011083204,-0.012270691,-0.05598149,0.025149262,0.0033875164,-0.016214842,0.0074005835,-0.0022283038,-0.048743483,0.007831754,0.026039876,-0.03616178,0.021459572,-0.036048688,-0.007033028,-0.017642653,0.059883233,-0.0073157633,-0.0052977437,0.023311485,0.004530825,-0.03808438,-0.027397003,0.028697584,-0.070231326,-0.0641808,-0.038791217,0.014631527,-0.014433612,0.009938128,0.005972773,-0.026082287,0.10568627,0.006319123,0.019310787,0.0015806643,0.001869584,-0.020031761,0.015154586,-0.054794006,0.033419255,0.016002791,0.0011998558,-0.009273701,-0.039611146,-0.07673423,0.011302324,0.0064816955,-0.0344371,-0.011676948,-0.023961775,-0.018717045,-0.04727326,-0.0067821015,-0.030648453,-0.024668612,0.022717742,0.0033415721,0.084933534,0.004177407,-0.004219817,-0.027354592,-0.017981933,-0.014228629,0.034719836,-0.016879268,-0.011917273,-0.0052588675,-0.018292943,0.013627818,-0.024484834,-0.02137475,0.010998384,-0.006972947,0.008482045,-0.051853564,0.047216713,-0.029376147,-0.0110761365,0.0057571875,-0.031638026,-0.044219725,0.0013809828,0.017812293,-0.055840123,-0.0016690189,0.0036402107,0.0064569563,-0.02980025,-0.03129874,-0.032288317,-0.030931188,-0.031129103,-0.050609533,-0.01899978,-0.008178105,0.07311522,0.054143716,0.0031153841,-0.040996548,0.02034277,0.061523095,0.0009065185,-0.019692479,0.020102445,-0.0064781616,-0.047555994,0.0057006404,0.02082342,0.037632003,0.026054014,0.008248788,-0.0039547533,0.013380425,0.014518432,-0.034776382,0.003933548,-0.015522141,0.043145332,-0.027029447,0.0010602556,-0.0028821279,-0.037547182,0.0071885325,-0.05663178,0.00060964696,0.031129103,-0.009485753,-0.008941488,0.0019526373,-0.0688742,-0.018377762,-0.04198612,-0.009443343,-0.041307557,-0.049167585,-0.005442645,-0.006704349,0.030082984,0.0055981493,-0.018335352,0.04110964,0.0035394863,-0.046311963,0.03426746,-0.014970808,0.007612635,0.019480428,0.013217852,-0.048375927,-0.018010207,0.011691084,-0.021530256,0.02523408,0.004714603,-0.048121464,-0.035850774,0.027142541,-0.012624109,0.008729437,-0.025516817,-0.010687375,0.014574979,-0.020766871,-0.022929793,0.02818866,0.08662994,0.030818094,-0.045661673,-0.0026099957,0.02611056,0.011514375,0.0146032525,-0.0032761896,-0.0048807096,-0.023820408,0.016059337,-0.021544393,-0.013309741,-0.038536754,-0.04110964,-0.009761419,0.0080226,-0.020795146,-0.0082134465,0.040911727,0.018816002,-0.018151576,0.05123155,-0.01522527,0.013960031,-0.010150179,0.012723067,0.013903485,0.006350931,-0.027905926,-0.028655173,-0.013154237,0.018504994,0.033277888,0.015705919,0.036981713,-0.0077257287,-0.005442645,0.033815082,-0.022816699,-0.0031595614,0.015154586,-0.04020489,-0.06661232,-0.03457847,0.061070718,0.046679515,0.03248623,0.044870015,0.04150547,-0.00687399,0.041364104,-0.0027213225,-0.024668612,0.019593522,0.024187963,0.08097525,-0.0507509,0.007336968,-0.033899903,0.0094786845,-0.0105035985,-0.00587735,-0.011175093,-0.052249394,-0.013719707,-0.035285305,-0.006357999,0.06548138,0.051146727,-0.028202796,-0.025757141,0.02208159,-0.033899903,-0.008178105,-0.052927956,-0.029602334,-0.008884941,0.06559448,-0.018095028,0.009506958,-0.046255413,0.015522141,-0.0124332635,0.036840346,-0.0020727995,0.016384482,0.05541602,-0.04549203,0.008538592,0.019353198,-0.02042759,-0.009952266,0.036359698,0.017034773,0.04289087,0.0070613017,-0.0023060557,0.027312182,0.026365021,-0.025827825,-0.021304067,-0.0102915475,-0.02441415,-0.012609973,-0.068026,0.023042887,-0.034493648,-0.02523408,0.04416318,0.016299661,-0.011429555,-0.005651162,0.034295734,-0.0019968145,0.018759456,-0.057875816,-0.03296688,0.019141147,-0.05742344,0.012913913,-0.0034511317,0.044700373,-0.031807665,-0.022123998,-0.025262356,0.023608357,0.007004755,-0.002233605,0.016836857,0.015691781,-0.0014366462,0.029687155,-0.0072380113,0.04492656,-0.010093633,-0.022095725,0.03045054,-0.041901298,0.015069765,0.0051917178,-0.00591976,-0.005442645,-0.001166281,0.01222828,0.021106154,0.020074172,-0.027679738,0.039695967,0.022222957,0.0015780136,0.013507656,0.008050874,0.046114046,0.0021523188,0.010461188,-0.030478813,-0.018448446,-0.0054532476,0.01470221,0.0019579385,-0.016271388,0.038282294,0.024484834,-0.02319839,-0.008015532,-0.0679129,-0.0016743202,0.037801646,0.0042268853,0.019395608,-0.044983108,0.0096907355,0.015592825,-0.021233384,0.029517515,0.06457663,0.011380076,-0.034210913,-0.009697804,0.01587556,0.026025739,0.005403769,0.006697281,0.054624364,-0.008425497,0.0012996966,-0.029630609,0.021714034,0.032542776,-0.050241977,0.0008689678,0.020314496,-0.021445435,0.014108467,-0.016158294,-0.0009789693,-0.034295734,-0.02615297,-0.0362466,-0.044785194,-0.013917621,-0.042523317,0.023834545,-0.024668612,-0.01123164,-0.003820454,0.0669516,0.0015250009,0.018024344,0.016455166,0.048602115,-0.02355181,0.036670703,-0.0029740168,-0.0048948466,-0.004092586,-0.029093413,0.019508703,-0.035426673,0.031977307,0.04761254,0.042495042,0.023254938,-0.030761547,0.009422137,-0.0104753245,-0.056094587,-0.009591779,0.0039229454,0.019749027,-0.018448446,-0.022647059,-0.011577991,-0.028782403,0.06644268,0.005559273,-0.0037108944,0.0064958325,0.030280897,-0.0036402107,0.011556786,0.015946243,-0.0167379,-0.039158773,-0.06033561,-0.029743701,0.018900823,0.05174047,-0.04263641,0.025078578,-0.0446721,0.03214695,-0.0059303627,0.03135529,0.01205864,0.011061999,-0.029036865,0.0038628643,-0.018929096,-0.04532239,0.032853786,-0.04294742,-0.020908238,-0.0046615903,-0.017939523,-0.035426673,0.0037002917,-0.024103142,0.042240582,-0.010319821,0.01192434,-0.0016009859,-0.026661893,-0.046170596,0.038791217,0.027071858,-0.056801423,-0.040063523,-0.0027213225,-0.004601509,-0.0034864736,-0.0018483788,0.0108358115,-0.0372079,0.023297349,-0.004145599,0.040063523,0.014143809,-0.010772197,-0.026789123,0.008750643,-0.021332342,0.034550194,0.04297569,0.010468257,-0.0069446736,0.012122255,0.031694572,0.038932584,-0.0133662885,-0.07006168,0.008644617,-0.04238195,0.012242417,0.02042759,-0.014348792,-0.033447526,-0.02225123,0.007252148,-0.039356686,-0.014433612,0.0047640814,-0.00033132985,-0.016172431,-0.02676085,-0.0008124208,-0.012397922,0.00014578513,0.0035801295,-0.0035730612,0.020060034,-0.011217504,0.03522876,0.041562017,0.018886685,-0.033560622,-0.011740563,0.02980025,-0.012086913,-0.017416464,-0.030846369,0.04351289,-0.01696409,-0.0235094,-0.022364324,0.016059337,-0.017246824,-0.03921532,0.01786884,-0.00011033284,0.0056370255,-0.009224223,-0.021968495,-0.05043989,-0.007831754,0.0044601415,-0.009853308,-0.012044503,-0.014688074,0.01214346,0.03669898,-0.051712196,0.021431299,0.012093982,0.023919364,0.012214144,-0.0065241056,-0.032118674,0.026972901,-0.011394213,0.009655394,-0.013740912,-0.043173604,0.040996548,0.011203367,-0.014419476,-0.018490857,0.02086583,-0.0014127905,-0.03856503,-0.008941488,-0.014016578,0.026478115,-0.022491554,0.055755306,0.0052093887,-0.047414627,0.01994694,-0.037405815,0.050609533,0.014532569,0.03842366,-0.007598498,-0.0070188916,-0.029460967,-0.02611056,-0.014801167,0.018024344,-0.013811596,0.021572666,0.026633618,-0.010701513,0.0035447876,-0.02177058,-0.012949254,0.041279282,0.0018289408,-0.040996548,-0.008100352,0.011726426,0.007690387,-0.004884244,0.0044566076,-0.0016107048,-0.024301058,-0.037943013,0.053041052,-0.041533742,-0.002770801,-0.02623779,-0.0008539475,0.028344166,-0.0011212202,0.017642653,-0.009005103,-0.017246824,0.002420917,-0.051712196,0.0042162826,-0.002062197,0.011309393,0.010185521,-0.0071107806,0.041392375,-0.0054779868,0.01297046,0.016115883,-0.01929665,0.0045732358,-0.034804653,0.033758536,-0.038140927,-0.011825384,0.0050256113,-0.026619483,-0.020158991,-0.015041492,0.00009349024,0.058017183,0.014327587,0.030761547,-0.0242021,-0.021897811,-0.022731878,0.012150529,0.002806143,0.007619703,-0.0048771757,-0.051853564,-0.020766871,-0.016327934,-0.029489242,-0.008453771,0.023212528,-0.013550065,-0.038197473,0.0030111258,0.0014180918,-0.004601509,-0.009316112,-0.01635621,-0.0112881875,0.006965879,0.008496181,0.033108246,-0.03500257,0.0071355198,0.040713813,-0.011373008,-0.0040607788,0.030393992,-0.014214492,-0.030478813,-0.0133380145,0.011486102,-0.04662297,0.03460674,-0.026661893,0.016016927,0.0181233,-0.001248451,0.032118674,0.032599322,-0.02758078,0.022958066,-0.013656091,0.027015312,0.021049606,-0.01214346,0.021063743,0.020724462,0.027792832,-0.023283212,0.035059117,-0.0031966704,-0.0055274656,-0.016723763,-0.011705221,-0.0044389367,0.016780311,0.011676948,-0.039130498,0.0020074171,-0.009273701,-0.004969064,0.013797458,-0.034776382,-0.012461537,0.00031940197,-0.034408826,0.026661893,0.005499192,-0.0051987865,-0.04766909,-0.018646361,-0.028245207,-0.04229713,0.0032549845,-0.0029104014,-0.024470698,-0.0032779567,-0.008524454,-0.020583095,0.0018183383,-0.010807538,-0.016271388,-0.040402804,-0.024923073,-0.0018660497,-0.0053931666,-0.020625504,-0.031157376,-0.012348443,-0.0025481475,0.005039748,0.0027230897,-0.025050305,-0.016935816,-0.0395546,-0.021431299,-0.034889475,0.044389363,0.019324925,-0.02160094,-0.014468954,-0.0018925561,-0.05318242,-0.012355511,-0.012723067,-0.0064286827,0.012298964,-0.030167805,0.025417859,0.02355181,0.03525703,-0.018335352,-0.004378855,0.024442425,0.018010207,0.010828743,0.017289234,0.0014772894,0.03500257,-0.00060125324,-0.010948906,0.011365939,0.023820408,0.0008088866,-0.012956323,0.047527723,0.011132683,0.010143111,-0.019876257,0.014744621,0.04085518,-0.017642653,0.009909855,0.037971284,0.0061106062,0.060448702,-0.03339098,0.0330517,0.0067290883,0.012214144,0.010390504,-0.07243666,0.019452155,-0.0005447063,-0.027849378,0.048715208,-0.01153558,0.0008614576,-0.02710013,-0.028033156,-0.011825384,-0.021275794,0.002786705,-0.05233421,0.04639678,0.030761547,0.036953438,0.002367904,-0.07102299,-0.011387144,0.035115663,-0.005364893,0.022618786,0.018307079,0.021261659,-0.018929096,-0.0139105525,-0.045265842,0.0018395433,-0.018250532,-0.012185871,0.029149959,0.037971284,0.0039441506,0.0023908762,0.034295734,0.019706616,0.02086583,-0.015833149,-0.0066937464,-0.01261704,0.034182638,-0.0014198589,0.0059303627,-0.011295255,-0.0007421789,-0.0062943837,0.040826906,-0.022025041,0.011606264,-0.0059515676,-0.018547403,0.032853786,-0.018250532,-0.0061176745,0.01856154,0.0042410223,0.0385933,-0.0058314055,-0.029545788,-0.025304766,-0.01547973,0.042466767,0.037575457,-0.013952963,-0.054115444,0.0074571306,-0.043399792,0.009902786,0.038480207,0.01470221,-0.009521095,0.0018642826,0.023834545,0.0074217888,-0.006594789,-0.02940442,-0.036501065,-0.014504296,0.033560622,0.003647279,0.019197693,-0.0053330855,-0.009450411,-0.0035818967,-0.028683446,-0.04450246,0.01799607,-0.0001497611,-0.020498274,-0.012906844,-0.03867812,-0.03013953,0.01579074,-0.014815304,0.026661893,0.0367838,-0.02359422,0.0063862726,-0.006898729,-0.01613002,0.019932805,-0.00014887755,0.0035059117,-0.022647059,-0.0029528118,-0.00020122767,0.009379728,0.0023626029,-0.006923469,-0.009726077,0.006700815,0.014433612,-0.037829917,-0.009422137,0.010630829,-0.04710362,0.050496437,0.017232686,0.029432693,0.016879268,0.008149831,-0.027665602,0.062088564,0.041929573,-0.003016427,0.010510666,-0.0013774487,-0.017699199,-0.024640338,0.020130718,0.04518102,-0.03766028,-0.0051175,0.03214695,-0.007485404,-0.050637804,0.017642653,0.049987514,0.013620749,0.019876257,-0.016709628,0.00041703385,0.013719707,-0.009634188,-0.029828522,0.007944848,0.05360652,0.038876038,-0.0117688365,0.0028697583,0.015465594,-0.018575678,0.013825732,0.014871851,0.011577991,-0.0040784497,-0.026972901,0.009860377,0.0027796365,-0.01791125,0.0016663683,0.06746052,-0.0055451365,0.0248948,0.03621833,0.01053894,-0.00031962286,-0.01661067,0.0031012474,0.0018183383,0.012164665,0.021827128,-0.010807538,-0.018052617,-0.0039300136,-0.014857714,-0.0082134465,0.008015532,-0.054115444,0.041618563,0.0094786845,-0.018985642,-0.020272085,-0.019466292,-0.010659102,0.0038982062,-0.017430602,0.041279282,0.018872548,0.012892707,0.018377762,0.024908938,0.028739993,0.005280073,-0.0036437449,-0.04362598,-0.0446721,0.0025463803,0.01183952,-0.0037533047,0.009641257,-0.012673588,0.015635235,0.013373356,-0.01965007,0.0028591559,-0.0013253194,0.0023749724,-0.011959682,-0.010567213,0.0036790867,-0.009316112,0.041901298,0.02059723,0.041533742,-0.012249486,-0.014928398,-0.016186567,-0.008446703,0.034663286,0.019593522,0.019664206,-0.00077619543,0.022548102,0.013239058,-0.017600242,0.003873467,-0.0059338966,0.00067547115,-0.0070365625,0.038282294,0.041873027,0.035850774,-0.009909855,0.039158773,-0.011804178,0.0009727845,-0.024385877,0.01652585,-0.0035412535,0.008715301,-0.03005471,0.0063297255,-0.036020413,0.002597626,0.014136741,0.018490857,-0.012659451,0.013422835,-0.0040113,-0.038536754,0.01747301,-0.008291198,-0.010616692,-0.042919144,0.04142065,-0.044728648,0.0059444993,-0.03313652,0.014256903,0.018462583,0.00088045385,-0.001183952,-0.016384482,0.014348792,-0.004195078,0.017374054,-0.051146727,-0.031044282,-0.020908238,0.0011433089,-0.0077964123,-0.0020303894,-0.021784717,0.0076479767,0.0029740168,0.02940442,-0.026902217,-0.01921183,0.0023643698,-0.024131415,0.010249137,-0.033447526,0.0070931097,-0.01868877,-0.011577991,-0.0062449053,0.018674634,-0.002539312,0.011457828,0.0036101702,0.024682749,-0.020130718,-0.015635235,-0.007640908,0.00648523,0.021728171,-0.025559226,0.00997347,0.018533267,-0.018321216,0.003972424,-0.019254241,-0.0039406163,-0.0011760001,0.015833149,0.0038275225,0.023608357,0.01439827,-0.0038487276,-0.023707313,0.11054931,0.018010207,0.003516514,0.029885069,0.008376019,0.016794447,-0.033871632,0.0074571306,-0.025827825,0.012779613,0.0054461793,0.03873467,0.007732797,0.016158294,0.010333957,0.013684365,-0.022449143,-0.027736286,0.029036865,-0.014885988,0.0034900077,-0.017529558,0.0123413745,-0.003873467,-0.020879965,-0.020130718,-0.012595836,0.0032602858,-0.011599195,0.012906844,0.008821326,0.0020286222,-0.021318205,0.01214346,-0.0110761365,0.019070463,-0.020978922,-0.029489242,-0.0034069545,0.002062197,0.007655045,-0.008920283,-0.009605915,-0.012023298,-0.017981933,0.03248623,-0.039356686,-0.03873467,0.012454469,-0.024442425,0.004007766,0.00819931,0.028471395,-0.02285911,-0.013762116,-0.0170065,0.0058526103,0.026379157,0.004530825,0.008418429,-0.0136985015,0.02684567,0.010913564,0.013952963,0.0014587349,-0.004887778,0.033108246,-0.039102223,0.009506958,0.019551111,0.011698153,0.017967798,-0.007612635,-0.02923478,-0.007845891,0.000336852,-0.034861203,-0.038876038,-0.011365939,0.022406735,0.017812293,-0.0048453677,-0.016681354,-0.009457479,-0.027043585,0.04580304,0.030987736,-0.024753433,-0.008269994,-0.023226665,0.02688808,0.02233605,0.028047293,0.014200356,0.0016345606,0.0064816955,0.0056299567,0.010821675,0.023127707,0.00014302405,-0.009330248,0.002496902,-0.026774986,0.0019385006,-0.033108246,-0.0080013955,-0.021968495,0.012242417,-0.023523536,-0.011394213,-0.0066478024,-0.0031736982,0.011867793,0.013924689,0.009697804,-0.016016927,-0.0042480906,-0.05496365,-0.014306381,-0.015380774,0.0109277,-0.0026276666,0.043230154,0.02424451,-0.032457955,-0.0024774638,0.019678343,0.007782276,0.022406735,0.012298964,-0.044050083,-0.012984596,0.003983027,0.013769185,0.03669898,0.019452155,-0.036670703,0.0014013044,-0.001221061,0.027920062,-0.0011017822,-0.014242766,0.040317982,-0.0007814967,0.019070463,0.025559226,0.000062731786,-0.0060257856,-0.025347175,0.010044154,-0.012390853,0.009210086,0.0150839025,-0.028485533,-0.007442994,0.014320518,0.042438496,-0.0020533616,0.022887383,-0.005976307,0.025530953,-0.030422265,-0.03271242,-0.012708929,-0.03669898,0.03118565,-0.02380627,0.019084599,-0.0075348825,-0.002770801,-0.0049337223,0.022109862,-0.00040024647,0.0037851122,-0.0044601415,-0.014645663,0.028782403,-0.026873944,-0.038367115,-0.010468257,-0.034861203,-0.0064039435,-0.009273701,0.013451109,-0.02059723,0.02047,0.003739168,-0.013903485,0.010510666,0.0047464105,0.034069546,-0.014532569,-0.006259042,0.00011060895,-0.0025057374,-0.022760153,0.013345083,0.02099306,0.012016229,-0.00941507,-0.0062943837,0.028980318,0.010609624,0.0052270596,0.01266652,-0.031892486,0.02606815,0.025841963,-0.0035642257,0.0150556285,-0.002367904,0.022661194,0.008658754,-0.00056635315,-0.0358225,0.004597975,0.019720754,0.003760373,-0.036642432,-0.002539312,0.0036331422,-0.008828394,0.04167511,-0.046849158,-0.0025958589,0.019324925,-0.008262925,-0.048517294,0.0061176745,-0.047160167,-0.002556983,0.021897811,0.005004406,-0.0030111258,0.0052588675,-0.012150529,-0.020667914,-0.0059657046,-0.02147371,-0.0036031017,0.022647059,-0.010687375,-0.045124475,-0.024569655,0.009726077,0.024781706,-0.022166409,-0.025191672,0.0073228315,-0.034013,0.036416244,0.039695967,0.021275794,-0.041929573,-0.00717793,-0.0075348825,-0.022109862,-0.0032037387,0.024145553,0.0108358115,-0.040148344,0.026336748,0.004848902,-0.036727253,0.021403026,0.007619703,-0.05052471,0.018179849,0.00793778,0.028231071,-0.0028927305,0.0132744,-0.005576944,-0.03095946,-0.043032236,0.015112176,-0.01049653,0.018674634,0.014066056,-0.0068174433,0.01110441,-0.0022177012,-0.0059409654,-0.015861424,0.03404127,-0.010298615,0.0026471047,0.0033186,-0.023212528,0.013804527,-0.0061742216,0.031694572,-0.029376147,-0.018660497,0.025912646,-0.008008463,-0.020399317,-0.017430602,0.024173826,0.003207273,-0.012913913,-0.023905229,-0.016002791,-0.021657486,0.001834242,0.0024880664,0.0017882977,-0.014829441,0.013260263,-0.03599214,-0.021728171,0.006697281,0.00036910147,0.006340328,-0.005152842,0.03322134,0.000108731416,0.013641954,0.027439414,0.026251927,-0.0068845926,0.0050927605,0.028160388,-0.0017193811,0.0032620528,0.010630829,-0.026562935,0.00012590534,0.028344166,0.025530953,-0.0026135298,-0.00819931,0.00542144,-0.0018377763,0.053323787,-0.035200484,0.0024916006,-0.01721855,-0.020074172,-0.01747301,-0.02307116,0.0057183118,0.018660497,-0.013380425,0.009266634,0.062032018,-0.0019809108,-0.0033645441,0.023099434,-0.012998733,-0.010164317,0.029630609,-0.022915656,0.0037073602,0.023565946,0.03621833,0.020752735,-0.0024474233,0.021501983,-0.02428692,0.025813688,-0.00007830429,-0.061523095,0.035398398,-0.030393992,0.018844275,0.03316479,-0.018307079,0.008347745,0.039413232,-0.033645444,0.0027142542,0.0074005835,-0.0043576504,0.0027160214,0.005036214,-0.04427627,-0.009316112,0.02103547,0.0024509574,0.008439634,0.011825384,-0.028202796,0.028782403,-0.0127937505,0.0035659927,-0.016497577,0.0032214096,0.0011194531]},{"id":"class-Channel","type":"class","source":"main","text":"Class: Channel\nDescription: Base class for all channel types.\nProperties: client: Client, icon: string | null, id: string, lastPinTimestamp: string | null, name: string | null, type: ChannelType\nMethods: bulkDeleteMessages(messageIds: string[]) -> Promise — Bulk delete messages. Requires Manage Messages permission.; createDM(client: Client, data: APIChannelPartial) -> DMChannel — Create a DM channel from API data (type DM or GroupDM).; from(client: Client, data: APIChannelPartial | APIChannel) -> GuildChannel | TextChannel | null — Create the appropriate channel subclass from API data.; fromOrCreate(client: Client, data: APIChannelPartial | APIChannel) -> DMChannel | GuildChannel | TextChannel | null — Create a channel from API data, including DM and GroupDM.\nUsed by ChannelManager.fetch() for GET /channels/{id}.; isDM() -> boolean — Whether this channel is a DM or Group DM.; isSendable() -> boolean — Whether this channel has a send method (TextChannel, DMChannel).; isVoice() -> boolean — Whether this channel is voice-based (VoiceChannel).; sendTyping() -> Promise — Send a typing indicator to the channel. Lasts ~10 seconds.","meta":{"url":"/docs/classes/Channel"},"embedding":[-0.01317084,0.019229427,0.009683431,-0.0050793635,0.029342342,0.034748115,0.004698554,-0.011372735,-0.0003267657,0.014087073,-0.0036248444,-0.013067764,-0.017259527,0.01651509,0.0500721,0.0040944135,-0.043543942,-0.003607665,0.03591631,0.00979796,-0.0036792457,0.03575597,0.01864533,0.034289997,-0.0126096485,-0.0038653554,-0.0034330082,0.031587113,-0.0054658987,-0.004953381,0.08502637,-0.021336762,0.030258574,0.009311211,0.02476118,0.006545335,-0.006047134,0.038733725,0.00024426897,-0.010708466,-0.0130105,-0.019183615,-0.009769328,0.004483812,-0.02535673,-0.0024136996,-0.019824978,0.030304385,0.017603114,0.010645475,-0.05181294,0.012907424,0.020363264,0.052042,0.010822995,0.0022762648,-0.022848545,-0.0045496663,-0.026868515,0.0013364109,0.017797815,-0.01644637,-0.04782733,0.003063652,0.02306615,0.02854064,-0.04975142,0.029182002,0.014522283,0.04301711,0.025219297,-0.042994205,-0.010868806,-0.016549448,-0.02153146,-0.009775055,-0.012873065,0.0339006,0.006997725,0.009357023,-0.040863965,0.053599596,-0.039443806,0.012987594,-0.008435064,0.0055861543,-0.01798106,-0.015587403,0.00029956503,-0.020328905,0.027647313,-0.043154545,-0.058684684,0.03426709,0.022321712,-0.07746745,0.025333825,0.0008210301,-0.04029132,0.023753325,0.06587711,-0.0031667282,-0.06958785,0.032778215,0.017637473,-0.043269075,-0.04901843,0.016938847,-0.061479192,-0.015243816,-0.047369216,0.003985611,0.0121171735,0.030877031,-0.0029176276,-0.01801542,0.038458854,0.017752003,0.022104107,0.01727098,-0.04668204,0.015381251,0.036603484,-0.01880567,0.001632039,-0.025654506,0.004266207,-0.013617503,-0.044826668,-0.028952943,0.03958124,0.014671171,0.0008811579,-0.0020958816,-0.003533221,0.024784086,-0.01273563,-0.0041974895,-0.05859306,-0.017259527,0.018152853,-0.03181617,0.057493582,0.010616843,0.010101462,0.013159388,-0.067114025,-0.007455841,-0.015621762,-0.0013299686,-0.0077421637,0.021668896,-0.017832173,0.0026284417,0.0015805009,-0.0063563623,0.0068889223,0.029502682,-0.012964688,-0.03683254,0.06482344,-0.010244624,-0.002386499,0.0025654507,-0.026960138,-0.03454196,0.009597534,-0.05437839,-0.032640778,0.015953897,0.042123783,0.027899276,-0.050759275,-0.00774789,-0.02330666,-0.04782733,-0.012987594,-0.04920168,-0.0579517,-0.05098833,0.05712709,0.018381912,-0.0081831,-0.10829867,-0.02476118,0.023638796,-0.015266722,0.006568241,0.063174225,-0.025058955,-0.01759166,0.02282564,0.03699288,0.02184069,0.028586451,0.016079878,0.01076573,0.02897585,0.012346231,-0.042513184,0.038504668,-0.008967624,0.05117158,-0.030693784,0.0014566663,-0.03848176,0.012472213,0.0114414515,-0.031724546,-0.016938847,0.012941782,0.0059440574,-0.007822334,0.0022147056,-0.07536011,0.0057608113,-0.047094345,0.01549578,-0.07192424,0.011613245,-0.0034244186,0.0027916455,0.032549154,-0.022459146,-0.015598856,0.0023478456,0.01113795,-0.018714046,0.038435947,-0.0067514875,0.022218635,0.0062361066,-0.004420821,-0.041574046,-0.024234347,-0.0143963015,0.0068545635,0.03367154,0.029090378,-0.04597196,-0.022298805,-0.00981514,-0.015564498,0.04127627,0.008566773,0.01651509,0.010525219,-0.0630826,0.007976948,0.03520623,0.06413627,0.007862419,-0.0032698044,0.007329859,0.0061960216,0.02314632,0.027601501,0.020008225,0.031174807,0.015667574,-0.020374717,-0.030304385,0.013182294,-0.009253947,-0.025975188,0.0020228694,0.039924826,-0.0014831512,-0.019114899,0.0016850086,0.032228474,-0.020981722,0.062624484,-0.04203216,0.0007601866,-0.0019770577,-0.02066104,0.023638796,0.007994127,-0.019538656,-0.015553045,-0.0055260267,0.032228474,0.03946671,-0.007873872,0.03662639,0.026021,0.004629837,-0.009580355,-0.021027533,0.007936863,0.020844286,-0.018874386,-0.09803686,0.033121802,0.012632554,0.027693124,-0.006596873,0.057585206,0.07430644,0.014820059,0.0421925,0.010502313,-0.048880998,0.017866531,0.034198374,0.030212762,-0.017797815,0.037084505,-0.08786669,0.051400635,0.019607373,-0.028334487,-0.027143383,-0.056485727,-0.0010751415,-0.012449307,0.0043091555,0.016297484,0.034450337,-0.012701271,0.00069218496,-0.042055067,-0.031999417,-0.018049778,-0.014728435,-0.03209104,-0.033098895,0.033213425,-0.0052998317,0.03378607,-0.052179433,0.05918861,0.03465649,0.025769036,0.01167051,-0.020214377,0.024234347,-0.027830558,0.031174807,0.04095559,0.0097177895,-0.007140886,0.043910436,0.017316792,0.000034761357,-0.04869775,0.0047815875,-0.017752003,0.030418916,-0.024921522,0.004329198,-0.027441159,-0.034129657,-0.003252625,-0.003644887,0.026822703,-0.03532076,-0.0042833863,0.018828575,-0.015117834,0.008160194,-0.008509508,0.03181617,-0.008961898,-0.0006220359,-0.031610016,0.018439177,-0.019676091,-0.041917633,0.002564019,-0.024074005,0.01585082,0.0083835265,0.002153146,-0.015278175,0.0047300495,0.0047386396,-0.01848499,0.0045410767,0.038023643,0.025333825,0.03497717,-0.0169503,0.0020157113,0.0041287723,0.0052740625,-0.004798767,-0.014224508,0.05071346,0.023844948,0.0010092872,-0.0021660307,0.014258866,0.002430879,0.059005365,-0.017545851,-0.008400706,0.013056312,0.02503605,0.053874463,0.020328905,-0.021783425,0.034725208,-0.015117834,-0.0016434918,0.0044122315,0.018759858,0.017683284,-0.0104965875,0.040520377,0.004558256,0.031197712,0.053507973,0.0441624,-0.05460745,-0.033327952,-0.028242864,0.031403866,-0.0000037467998,-0.022882903,-0.052774984,-0.016492182,-0.0053628227,-0.026272964,0.0035532636,0.027280819,-0.014716983,-0.051858753,-0.040360037,-0.012701271,0.0018568021,0.048010577,0.0044580433,0.045170255,-0.03126643,-0.024577934,-0.025288014,-0.04979723,0.05744777,-0.04308583,0.03300727,-0.031724546,0.018507894,0.013594598,0.012346231,-0.01557595,-0.037863303,-0.0016950299,-0.020157112,-0.050621837,-0.02771603,-0.03717613,0.06312841,-0.05772264,-0.046659134,0.012621101,0.053599596,-0.038665008,0.00015819324,-0.0022676752,0.013376993,0.0048188097,0.029731741,-0.013457163,0.007289774,-0.009208135,0.015049117,-0.004847442,0.0042747967,-0.0021703255,0.037519716,0.049293302,0.01644637,-0.029365247,-0.007850966,0.004518171,0.011527348,0.02271111,0.0067743934,0.025562884,0.007106527,-0.023822041,-0.016400559,-0.03383188,0.0879125,-0.012666913,-0.022802733,0.01076573,0.012655459,-0.0220812,-0.016457824,0.005128038,-0.009420014,-0.029754646,-0.046201017,-0.032274287,-0.010204538,0.02448631,-0.05121739,0.035504006,-0.049934667,0.018507894,0.008303356,0.068900675,-0.00079168205,0.021554368,-0.0044580433,-0.012162985,-0.01798106,-0.058730494,0.043154545,-0.034038033,-0.009551723,0.022527864,-0.009116512,-0.036534768,0.011876662,-0.036214083,0.024303064,0.011968286,0.024990238,0.01908054,0.010645475,-0.012552383,0.017912343,-0.026639456,-0.051034145,-0.005820939,0.021416932,0.001265546,-0.01113795,0.013216652,0.044643424,-0.013789297,0.0138007505,-0.010215991,-0.0052167983,0.003518905,-0.027418254,-0.00490757,0.0068488372,-0.0015604583,0.0094085615,0.008744293,0.010748551,-0.028265769,0.031197712,0.015530139,0.015953897,0.020134207,-0.038619194,0.025517073,-0.061433382,0.037748773,0.038413044,-0.02377623,-0.022802733,0.007083622,0.013583145,-0.042558994,-0.024738275,0.008360621,0.02164599,-0.025517073,-0.008801557,-0.009981207,0.01533544,-0.033854786,-0.010158727,-0.0024108365,0.014842965,0.003014977,0.0050822264,0.020180019,-0.0074386615,-0.046384264,-0.0102503495,-0.0034473243,-0.040428754,0.000013231237,-0.050255347,0.038779534,0.011538802,-0.0060700397,0.014911682,-0.0037565527,-0.0063105505,-0.010301888,0.037794586,0.019504298,-0.01328537,0.0085266875,-0.004787314,-0.04427693,0.013892373,0.001809559,0.01525527,-0.03252625,-0.009626167,0.018782765,0.037451,-0.035687253,-0.0055288896,0.013067764,0.011086412,-0.0011216688,-0.03516042,-0.043543942,0.01959592,0.0039455257,0.048789375,0.0041058664,-0.03289274,0.019893695,-0.005328464,-0.012231702,0.020042583,0.04505573,0.026364587,-0.04171148,-0.0041201827,0.006734308,0.019332504,0.023008885,0.006064313,0.006092945,-0.020363264,0.016904488,-0.02618134,0.014980399,-0.026364587,0.029731741,0.012964688,-0.005886793,-0.02590647,0.02373042,-0.014258866,-0.006923281,-0.008612584,0.019149257,0.030235669,0.0056663244,-0.020271642,-0.007954042,-0.0402226,0.007129433,-0.020535057,-0.021932313,-0.004266207,-0.018507894,0.019447032,0.020168565,-0.010822995,0.006963366,-0.05909699,-0.045628373,0.029044567,-0.02168035,0.03481683,-0.023524266,0.010032744,0.005694957,0.02886132,0.0021345352,-0.020809928,-0.030029517,-0.004681375,-0.01806123,-0.012460761,0.016308937,0.0100041125,0.0068545635,0.016629618,0.015644668,-0.018427724,0.0025210707,-0.0031610017,0.008354894,0.040726528,-0.0037193308,0.0066770436,-0.04448308,-0.02373042,0.03055635,-0.028838415,0.0027300862,0.04952236,0.020683946,0.036488954,-0.005757948,-0.0031810442,-0.026708174,-0.017144999,0.0030836945,0.016114237,0.030464727,0.022195728,0.020477794,-0.026479116,-0.0319307,-0.034908455,-0.038183983,0.007713531,0.018553706,-0.0103477,-0.025791941,0.01643492,0.025517073,-0.022619488,-0.062395424,-0.005027825,-0.027349537,-0.007999854,0.0017580208,0.008074298,-0.0413908,-0.00032408143,0.0024036784,-0.0056863674,0.004847442,0.011991192,-0.018748404,-0.008784378,0.0072325096,-0.004735776,-0.0056749145,0.03378607,-0.03442743,0.0031552752,0.0073985765,0.019435579,0.010021292,-0.009483005,-0.019011822,0.021600178,-0.0033528379,0.0240511,-0.009729243,-0.0025797668,-0.0010565305,0.027441159,0.021394026,-0.046796568,0.004532487,-0.026272964,-0.03083122,-0.009042068,-0.0034616406,0.017374057,-0.013594598,0.0067400346,-0.06807607,0.028380297,0.00026323786,0.008274724,-0.00051144377,-0.019332504,-0.0048159463,0.052545927,-0.042123783,0.02046634,-0.006562514,-0.003507452,-0.056210857,-0.06491506,-0.03919184,-0.0335112,0.019515749,0.020878645,-0.044780858,0.009345571,-0.027257914,-0.0029519862,0.017763454,-0.019000368,-0.022504957,-0.042879675,-0.013044858,-0.035572723,-0.030052422,0.0050306884,0.0029262172,0.017958155,0.012002644,0.019698996,-0.008349167,-0.029319435,-0.037382282,-0.022218635,-0.03181617,0.017099187,0.012266061,0.023707513,-0.014923135,-0.018610971,0.028723884,-0.08685883,-0.0019412674,0.017064828,0.0073184064,0.021657443,-0.040612,0.015862273,0.03662639,0.01703047,-0.037313562,-0.00006299098,0.015209458,0.027212102,0.0023650248,0.05066765,-0.009053521,0.00056369766,-0.018187214,-0.0059154253,-0.0015776376,0.03165583,0.007106527,-0.045834526,0.058776308,0.04549094,-0.021520007,-0.0056147864,-0.011533075,0.041344985,-0.017877985,0.025013143,0.020718304,-0.0036420238,0.017087733,-0.038710818,0.043200355,0.019057633,-0.017752003,0.0075360113,-0.07416901,0.031884886,-0.0024552164,-0.018691141,0.022035388,0.009294032,-0.020764116,-0.0016506499,0.013079218,-0.012483667,-0.014339036,-0.03399222,-0.052500114,0.020008225,0.023547173,0.00034143974,0.0057407687,-0.08099494,0.034564868,-0.015564498,-0.020420529,0.016858676,0.033488292,0.013651863,-0.0013994018,0.006035681,-0.027120478,-0.0132051995,-0.025104767,0.006545335,0.05538625,0.015346892,0.028769696,0.014465019,0.03422128,0.00650525,0.053049855,-0.0103477,-0.0059669632,0.009047795,0.0027186333,-0.022401882,0.010341973,0.0038052276,0.007192424,-0.01683577,0.003733647,-0.04746084,0.025173485,0.0005128754,-0.015289628,0.031289335,-0.011017694,0.013766391,-0.0043091555,0.020317454,-0.008331988,-0.022768375,-0.012437855,-0.013113576,-0.033442482,0.03836723,0.018908747,-0.00091623235,-0.022378976,0.020443436,-0.01415579,-0.011521623,0.00059447734,0.013491522,0.016171502,0.021703254,-0.0055346163,0.034771018,0.007604729,-0.043933343,-0.02590647,0.033969317,0.017122092,-0.0102503495,-0.0057436316,-0.018633876,0.014694077,0.02913619,-0.00952309,-0.02929653,0.0104965875,0.020512152,0.012861612,-0.03772587,-0.012483667,-0.026708174,0.024417592,-0.007873872,0.030212762,-0.010582484,0.004469496,0.005236841,0.01790089,-0.032938555,-0.015049117,-0.030258574,0.009139418,-0.013720579,0.021382574,-0.031426772,-0.005849571,-0.0093283905,0.014132884,0.0134113515,-0.048560318,0.02503605,-0.00883019,0.035733063,0.03875663,-0.016583806,0.026593644,0.0019469938,0.025379637,0.013216652,0.00060521445,0.008251818,0.040680718,0.051309012,-0.012689819,0.009752149,-0.0012791463,0.0056920936,0.010857354,-0.01841627,0.03165583,0.01880567,-0.000828904,0.013468616,0.025333825,-0.0102102645,0.06372396,0.044070777,-0.0025998093,-0.0068144784,0.022619488,0.03286984,-0.0055890176,0.008618311,-0.013548787,0.03067088,0.025104767,0.016079878,0.014098526,0.014648265,0.002911901,-0.020214377,-0.0022376112,0.061754063,0.01031334,0.025219297,-0.03651186,0.039283462,0.017889436,0.0134113515,-0.0064079002,0.035343666,0.03603084,0.003189634,-0.0010329088,0.012002644,0.0068144784,-0.0041058664,0.04235284,-0.013720579,0.042329937,0.016549448,-0.008005581,-0.0016878719,-0.0017895164,0.007049263,-0.0068373843,-0.017488586,-0.0024666693,0.025837753,-0.005405771,-0.008709934,-0.0240511,-0.015014758,0.03612246,-0.023363926,-0.022814186,-0.00721533,0.008601132,-0.01766038,-0.0056777773,0.0018324647,0.011143676,0.008824463,-0.012987594,0.014064167,-0.049980476,0.00979796,0.038069457,-0.0012698409,0.038000736,-0.0015618899,0.036374427,-0.01514074,-0.03442743,-0.0021932314,0.0075016525,0.016893035,0.017339697,0.0005479499,0.0068946485,-0.023192132,0.032801118,-0.0027172016,-0.0019827841,-0.009706337,-0.006986272,-0.027532782,-0.0075875493,0.006974819,0.014968947,0.005772264,0.0055747014,-0.008835916,0.0003348185,0.015839368,-0.0047042808,0.013228105,0.009935395,-0.0107027395,0.026021,0.035114605,0.022218635,-0.0009978344,0.0347023,-0.0163662,-0.03699288,-0.025127674,-0.012460761,-0.01415579,0.025081862,-0.038275607,-0.027441159,-0.029342342,-0.018874386,-0.0018152854,-0.013949638,-0.019492844,-0.014499377,-0.0011746385,-0.02961721,-0.017099187,0.031220619,-0.024646651,-0.02421144,0.021668896,-0.040841058,0.004669922,-0.013812203,0.0167556,0.001239777,-0.023100508,-0.0055117104,-0.023329567,0.032388814,0.022023937,0.008492329,-0.0015618899,-0.029594306,0.011510169,0.0063449093,-0.029479777,-0.008349167,0.015072023,-0.018313196,0.007994127,0.031312242,-0.046315547,-0.06312841,0.0072439625,0.017396962,0.026914326,-0.027120478,0.0132051995,0.010433597,-0.024257252,-0.00072833314,0.056394104,0.0075875493,0.039993543,0.008349167,0.035297852,-0.03793202,-0.026066812,0.015553045,-0.012907424,-0.006642685,-0.03910022,-0.00091623235,0.02716629,0.002453785,0.015346892,-0.020283094,-0.03236591,0.03761134,0.014339036,-0.0018811396,0.026364587,0.0030350199,-0.029250719,-0.056806408,0.042284124,0.008744293,0.002694296,0.0147857005,0.023043245,0.0073126797,-0.012563837,0.021714708,-0.038000736,0.0071981507,-0.002867521,0.014339036,0.013548787,0.023203585,0.005365686,0.0011911021,-0.013273916,-0.03339667,0.023547173,-0.030968655,0.023799136,0.03575597,-0.011613245,0.0025597243,-0.026021,-0.015782103,0.007896778,-0.024623746,0.04088687,-0.0022819913,0.011699142,0.026960138,-0.015885178,-0.008498055,-0.039924826,0.0058552977,-0.028678073,-0.04897262,0.020191472,-0.010805815,0.0009777917,-0.048285447,0.0029806185,-0.031678736,0.0049447916,0.013754939,-0.018714046,-0.03958124,0.0061960216,-0.020431982,0.020729758,0.013422804,0.028723884,-0.014648265,-0.0048932536,0.0060185012,0.01809559,0.0623038,-0.006568241,-0.0016019751,-0.018141402,0.028380297,0.0013142208,-0.015530139,0.015873726,0.011309744,0.009202409,-0.03319052,0.0111322235,0.057539392,-0.015438516,0.025288014,0.0009198114,-0.03454196,-0.029548494,0.014339036,-0.0122202495,-0.04077234,0.004369283,0.04127627,0.0030693784,-0.028563544,-0.004200353,0.02350136,-0.031312242,0.033579916,0.023867853,-0.043475226,0.015106381,-0.026089717,0.027303725,0.0035790328,0.0077765225,0.027761841,-0.0052482937,0.031060278,-0.01628603,-0.0034387347,-0.013789297,-0.014522283,-0.008664123,0.038344324,0.023375379,-0.01908054,-0.028334487,-0.0068030255,-0.005302695,0.016240219,-0.01088026,-0.007919684,-0.02984627,0.00043234715,-0.004397915,0.02590647,0.0063105505,-0.026043905,-0.008062845,-0.0059154253,-0.012082814,-0.040909775,0.014694077,0.039352182,0.033098895,0.003264078,-0.03406094,0.013594598,-0.0066140527,-0.016641071,0.038229797,0.023547173,-0.017534398,0.018278835,-0.0005246862,-0.013228105,-0.00089976884,0.0026069675,-0.0062246537,-0.023249397,-0.0128158005,0.001753726,-0.024852803,0.0057149995,0.039993543,-0.0019527202,0.016331842,0.01880567,0.01506057,-0.019424126,-0.0048588947,0.031312242,-0.03000661,0.007518832,0.002827436,-0.016938847,-0.0059039723,-0.02787637,0.022333164,0.001139564,0.013239558,-0.0072611417,0.006596873,-0.02224154,-0.034885548,-0.039031498,-0.011842304,0.019504298,0.0045868885,-0.00605286,-0.01293033,0.009064974,-0.024257252,0.030968655,-0.005769401,0.0052855154,0.014190149,-0.0053513697,0.008767199,-0.020649588,-0.038413044,-0.034175467,-0.014934588,-0.014029808,-0.0021345352,0.0036735192,-0.016469277,0.01435049,-0.009477279,-0.018988917,0.022012483,-0.011149403,0.01157316,0.008761472,-0.0065510613,-0.0013213789,0.01042787,-0.048193824,0.034198374,0.023524266,0.026937231,-0.01806123,0.031472582,0.011407093,-0.0027673081,0.016709788,-0.019275239,0.0032297191,-0.039764486,0.0021331036,0.019985318,-0.028174145,-0.021668896,0.03809236,0.010376331,-0.030327292,-0.007112254,-0.00356758,0.020729758,-0.015896631,-0.005179576,0.0013879489,-0.019916601,0.008326261,0.01774055,-0.04975142,0.010044198,0.0032554881,-0.015014758,-0.022997433,0.031197712,-0.02657074,-0.017614568,0.0005762243,-0.015518686,0.017946701,0.004838852,-0.018370459,-0.012506572,-0.020168565,0.005820939,0.022585128,-0.001106637,-0.011424272,-0.039168935,0.008778651,0.008240365,0.0425819,-0.037038695,-0.0065510613,-0.013388446,-0.010301888,0.036763825,0.033098895,0.024005288,0.00021438405,0.0012347663,-0.0034444612,-0.0058008963,-0.02432597,0.021256592,0.024715368,-0.009860951,0.019664638,0.009551723,-0.018233024,0.014957493,0.011321196,-0.0063620885,-0.015507233,-0.014545189,0.022608034,-0.021978125,0.013113576,0.0048159463,0.0022190004,-0.020569418,-0.024463404,-0.0063620885,-0.005110859,0.027601501,0.011911021,-0.0056376923,0.0011882388,-0.0025697455,-0.00899053,-0.0004062202,0.029502682,-0.0006581841,-0.010834448,0.02014566,-0.014339036,0.028265769,0.004300566,0.009070701,-0.017809266,0.020832833,0.0073642177,-0.019183615,-0.004214669,0.037084505,0.010044198,-0.014854417,-0.019286692,-0.005442993,0.009992659,-0.0067400346,-0.0011739228,0.008234639,-0.031174807,-0.032274287,0.0132051995,-0.012586743,0.0038281335,0.012781442,0.0069175544,-0.012357684,0.007163792,-0.024623746,0.010634022,0.04723178,-0.0037021514,0.01659526,0.0034501876,0.016812865,-0.012472213,0.039924826,0.022149919,-0.021222232,0.0072955005,0.031403866,0.039375085,-0.01423596,-0.040428754,0.014934588,-0.0072840475,0.042238314,0.00067643716,-0.025769036,-0.002864658,0.021336762,-0.017614568,-0.040268414,-0.034244183,-0.0023836358,-0.024692463,-0.00005135912,0.0335112,-0.0029949346,-0.011544528,0.0128158005,-0.03300727,0.02673108,0.017877985,0.014201602,-0.036695108,0.029892081,-0.00080599816,0.014144338,-0.0014788563,0.027945088,0.012884518,0.020993175,-0.013228105,-0.04581162,0.046956908,-0.010708466,-0.00016857244,0.02755569,-0.015117834,0.014591001,0.05268336,-0.039810296,-0.0014201602,-0.011286838,-0.01751149,0.02022583,0.02058087,-0.044643424,0.021955218,0.016492182,0.018908747,0.016789958,-0.0006270465,-0.008778651,0.010817269,-0.0062303804,0.00826327,-0.011252479,-0.008446517,-0.0005379286]},{"id":"class-ChannelManager","type":"class","source":"main","text":"Class: ChannelManager\nDescription: Manages channels with fetch and send.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: fetch(channelId: string) -> Promise — Fetch a channel by ID from the API (or return from cache if present).; fetchMessage(channelId: string, messageId: string) -> Promise — Fetch a message by ID from the API.; resolve(channelId: string) -> Promise — Get a channel from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.channels.get(id) ?? (await client.channels.fetch(id))`.; send(channelId: string, payload: MessageSendOptions) -> Promise — Send a message to a channel by ID. Works even when the channel is not cached.\nSkips the fetch when you only need to send.; set(key: string, value: Channel) -> this","meta":{"url":"/docs/classes/ChannelManager"},"embedding":[-0.020950638,-0.009077522,-0.026411293,-0.009496317,0.023082687,0.052213427,0.00008260328,-0.0077721863,-0.00043783136,-0.0037066096,0.03550513,-0.017752565,-0.030022722,0.02780365,0.04716613,0.0117480215,-0.019590912,-0.022843374,0.015935974,0.013521102,-0.0073153186,0.036723442,0.029500587,0.029348297,-0.045817282,0.0040166266,-0.05051649,0.08136593,-0.013477591,-0.027238006,0.06496221,-0.011399932,0.0056129433,0.002232668,0.03372117,0.030349055,0.009300517,0.029718142,-0.020972393,0.032263547,-0.00686389,-0.002869019,0.0047780727,-0.037267335,0.030305544,0.0029478832,-0.030414322,-0.0058957664,0.016577763,0.03709329,-0.028913185,0.010698314,-0.03768069,0.07792854,0.011998211,-0.033742927,-0.011312909,-0.00503642,-0.024583822,0.0027643202,0.000064374464,-0.012172256,-0.062743135,0.0042994493,-0.01150871,0.030196765,-0.015674906,0.03639711,-0.0075002415,0.032328814,-0.020950638,-0.02123346,-0.005096248,-0.03428682,0.0012822204,0.01738272,-0.009148228,0.053257696,0.043881036,-0.008044131,-0.027325027,-0.033068504,-0.029174253,-0.022299485,-0.02538878,0.0013549656,-0.013640758,-0.0023468847,0.027303271,-0.016327575,-0.022234218,-0.0032116696,-0.06265611,0.02177735,0.012324545,-0.03520055,0.011715388,-0.00992599,0.009044888,0.014935216,0.066006474,-0.014445715,-0.031284545,0.026933426,0.028238762,-0.040617697,-0.04681804,0.019188434,-0.019449502,-0.040465407,-0.053562276,-0.035983752,0.0035624786,0.023191465,-0.027085716,-0.03452613,0.0134340795,0.0033639588,0.009322273,0.014652393,-0.03056661,0.02923952,0.058653083,0.007886403,0.021200826,-0.010344786,0.0051832707,0.008653288,-0.068138525,0.018524889,0.03946465,0.022245096,0.02049377,0.009403856,-0.0032415837,0.00065606716,-0.0311105,-0.0099151125,-0.008968744,-0.0309147,0.0038208263,-0.029609365,0.047644753,0.014108503,0.033177283,-0.0092842,-0.016773563,0.010975698,0.011280276,-0.021244338,-0.0244968,0.010845164,-0.036310088,0.02043938,-0.004476214,0.010524269,-0.014293426,0.011932944,-0.02780365,-0.066354565,0.0318937,-0.022386508,-0.02562809,-0.008332393,0.0050255423,-0.022408262,-0.0099912565,-0.0122592775,-0.020058658,0.017948367,0.03526582,-0.0047835116,-0.035700932,0.02356131,0.021407505,-0.015033116,-0.016588641,-0.06705074,-0.0307189,0.011650121,0.049950846,0.04751422,-0.018339967,-0.06705074,-0.02884792,0.016730053,-0.012868434,0.022016661,0.045860793,-0.018503133,-0.03530933,0.040226094,0.013749536,0.03757191,0.0034890536,0.01362988,0.021690328,0.01491346,0.01091587,-0.04405508,0.005651016,-0.0041553187,0.07044461,-0.021973152,0.00020072935,-0.04009556,-0.022495285,0.022299485,-0.029326541,-0.011606609,0.0044027884,0.017545888,0.003733804,-0.024931911,-0.060611088,-0.016175285,-0.027781894,0.0038072292,-0.092852876,0.016033873,-0.032524616,0.011182376,0.07192399,-0.05512868,-0.014706782,0.004829742,0.013260035,-0.055694323,0.03319904,0.012814045,0.038246337,-0.0033476423,-0.042836767,-0.041901276,-0.0013168934,0.013488469,-0.011280276,0.058957662,0.011057281,-0.02997921,-0.008337832,-0.026389537,-0.024518555,0.019384235,-0.0062221,0.0048215836,-0.01461976,-0.04651346,0.03744138,0.028782653,0.062090468,-0.010981137,-0.014554493,-0.01491346,0.046731018,0.025954425,0.007728675,0.017524133,-0.0049249227,0.047296662,-0.0009008176,0.02084186,-0.008044131,0.01906878,-0.051038627,-0.027673116,0.022299485,0.01664303,-0.0025046128,0.06787746,0.054650053,0.019721447,0.027477317,-0.04261921,0.009066644,0.042488676,-0.01590334,-0.008919794,0.010279519,0.008898038,-0.0091101555,-0.015446472,0.027107472,0.022451773,0.039007783,0.009838968,0.017012876,0.023278486,0.009441928,0.01570754,-0.014554493,-0.0025372463,-0.0144565925,-0.09581164,0.03161088,0.064875185,0.05961033,0.0125529785,0.08650024,0.055781346,0.019982513,0.053127162,-0.03757191,-0.065701894,0.0024733392,0.043598212,0.016316697,-0.01901439,0.024866644,-0.06587594,0.0027425648,0.033373084,-0.035135284,-0.02064606,-0.03896427,0.03413453,0.011356421,-0.05042947,0.026650604,0.042858522,0.0012026764,0.0068258177,-0.035004754,0.028217006,-0.018372599,-0.051430225,-0.014097625,-0.063656874,-0.0054660933,0.038268093,0.057173703,-0.038637936,0.001516093,0.00998038,0.0138691915,-0.014315181,0.0017173323,-0.010312152,-0.032807436,0.0049222033,0.09102541,0.016914975,-0.025954425,0.05860957,0.021124683,0.031175768,-0.02301742,0.000060762697,0.007886403,0.0019783995,-0.025345268,-0.0076634083,-0.04029136,-0.021026783,-0.02103766,0.021951396,-0.0056129433,-0.04503408,-0.045904305,-0.0046992083,-0.012748779,0.01654513,-0.01951477,0.0120417215,-0.028565096,0.017426232,0.0026405854,0.0023849572,-0.0011700431,-0.027629606,0.03580971,-0.010703753,0.015489983,0.0023128917,0.0028418247,-0.043184854,0.0134340795,-0.02893494,0.013368813,0.035896733,0.060045443,0.009012255,-0.0021415665,0.0016439072,0.009866162,-0.009044888,-0.024866644,0.009920551,-0.009893357,0.059871398,0.0037745957,0.008881722,-0.013923581,0.016207919,-0.0018573839,0.029913943,-0.01101377,-0.0024679003,0.0036902928,0.02222334,0.06944386,0.03955167,-0.02183174,0.018883856,-0.021494528,0.005302926,0.018633667,0.023648331,0.023278486,-0.031284545,0.04607835,0.01678444,0.040900517,0.043902792,0.018731568,-0.005699966,0.0010687436,0.0143804485,0.03187195,0.011867677,0.00839222,-0.06069811,-0.0060480554,0.007130396,-0.011519588,-0.0042151464,0.07061866,-0.0045414804,-0.05156076,-0.018775078,-0.045860793,0.011758899,0.03393873,0.026868159,0.020026024,0.0031871947,0.0022489845,-0.009974941,-0.032328814,0.008511877,-0.01767642,-0.0006734037,-0.048079863,0.029500587,-0.02306093,0.052779075,-0.008397659,-0.01372778,-0.021864373,0.026889915,-0.020080414,-0.056477524,-0.02301742,0.04908062,-0.062743135,-0.0027874357,0.0013570052,0.021298727,0.027825406,-0.020461136,-0.016751807,-0.0009647247,-0.011024647,-0.015348572,0.022158073,0.05556379,-0.008582582,0.024823133,-0.016131774,0.031480346,0.015218039,0.007913598,0.04351119,0.04503408,-0.043380655,-0.05230045,0.00084166956,-0.032437593,0.030436078,-0.020667816,0.03507002,0.02014568,-0.013347058,-0.009904235,-0.050298937,0.08114837,0.014859071,-0.004715525,0.017600276,0.016012117,-0.039268848,0.012128744,-0.0096975565,-0.007995181,0.021113805,-0.016458107,-0.011617487,-0.0041716355,0.036484133,-0.02682465,0.042706233,-0.01969969,-0.015772806,0.010546025,0.0036359038,-0.0012998967,0.0059936666,-0.012455078,-0.013901825,0.011182376,-0.0075274357,0.059697352,-0.018535767,-0.016751807,-0.0010313512,-0.0068095014,-0.03017501,-0.0119547,-0.01733921,0.021581551,-0.015794562,-0.024366267,-0.023387264,0.0030702583,0.0005972591,0.040682964,-0.016708298,0.015152772,-0.016294941,0.044903547,-0.0050663343,-0.027912429,0.02227773,0.01555525,0.018655423,-0.0075002415,-0.023039175,-0.014489226,0.0052322205,-0.027586095,-0.0077721863,0.0010021171,-0.040530674,0.011541343,-0.011432565,0.01471766,-0.015631394,0.056999657,0.002820069,0.027890673,0.021603305,0.001076222,0.031371567,-0.056085926,0.041313875,0.020461136,0.0013196128,-0.027390294,0.018927367,-0.039834496,-0.0124442,-0.0059882277,0.03254637,0.019590912,-0.03892076,0.012215766,-0.008283443,-0.019493014,-0.033329573,-0.022147195,-0.00022622419,-0.0074240966,-0.024475044,0.01985198,0.032676905,0.015022239,-0.024953667,-0.046252396,-0.013325302,-0.011682754,0.020123925,-0.034700174,0.029522343,0.02889143,-0.0032660586,0.023583066,-0.01600124,-0.009365784,0.0017513254,0.06439656,-0.0052485373,-0.015468228,0.00022775389,0.009077522,-0.05003787,-0.0120417215,0.00212389,0.017643787,-0.017904855,-0.027477317,0.024301,0.02064606,-0.004865095,-0.020559037,0.0039703962,0.012030844,-0.004672014,-0.04087876,-0.028499829,0.011617487,-0.00087770226,0.01150871,0.016349329,-0.060088955,-0.012901068,0.0047699143,0.00172821,-0.0120417215,0.03724558,0.02340902,-0.025497558,-0.022886885,0.02834754,0.025758624,0.03600551,-0.001007556,0.012618245,-0.0028309468,0.037941758,-0.042205855,0.06400496,0.0133579355,0.034482617,0.013999726,-0.003442823,-0.0045550778,0.0066952845,-0.0057108435,-0.03250286,0.02978341,0.051082138,0.013880069,-0.0016615835,0.0239094,0.0042151464,-0.023931155,0.01960179,-0.00002602598,-0.01259649,-0.0035080896,-0.05438899,-0.017589398,-0.008413976,-0.058217973,0.027542584,-0.030022722,-0.039965026,0.029000208,-0.002133408,0.026433047,-0.048863064,0.021527162,-0.018144166,0.04503408,-0.011780655,-0.030066231,-0.0052077454,0.024126954,0.008326954,0.020852737,0.007250052,0.021059416,0.020374116,0.0014209123,0.0013685629,-0.0069400347,0.019134047,0.0050037866,-0.0015976765,0.0121505,-0.029805165,0.032959726,-0.049254667,-0.021897007,0.045991328,-0.037267335,-0.011726266,0.02538878,-0.000750568,0.027499072,-0.01289019,0.009958624,0.022821618,-0.03620131,-0.028086472,0.002874458,0.012030844,0.021124683,0.024409778,-0.034634907,-0.009686679,-0.0032769365,-0.026280759,0.016479863,0.01535945,-0.01832909,-0.059088197,-0.00084778835,0.024823133,-0.0075491914,-0.06735532,-0.0313063,-0.028086472,-0.026280759,0.017447988,-0.0006737436,0.0011917987,0.015348572,0.018046265,-0.046252396,0.006439656,-0.00003841222,-0.026694115,0.010997453,-0.0121831335,0.0050744927,-0.0044082273,0.044685993,-0.019482136,0.024605578,0.02148365,0.028782653,0.015761929,-0.005131601,-0.010801652,0.003165439,-0.006194906,-0.0083813425,0.0023047333,-0.011312909,-0.004041102,-0.008647849,0.010910431,-0.0047535975,0.026128469,-0.036440622,-0.0009837608,-0.021179073,-0.020058658,0.00016240211,-0.0088218935,0.0044163857,-0.058957662,0.047731776,0.0027398453,-0.035896733,-0.045469195,-0.052039385,-0.015315939,0.0071575907,-0.058217973,0.03535284,-0.04405508,-0.024257489,-0.0182747,-0.042358145,-0.038246337,-0.043184854,0.011476076,-0.0021075732,-0.017252186,0.034395594,-0.01590334,-0.005199587,0.010110913,-0.021266093,0.0010884596,-0.017447988,-0.03802878,-0.0059991055,-0.0022313083,0.0049765925,-0.017937489,-0.0035842343,0.004242341,0.015544373,-0.00246926,-0.023191465,-0.04573026,-0.057217214,-0.019144924,-0.008968744,0.012835801,-0.003486334,-0.022386508,-0.008865405,0.00859346,-0.06465763,-0.0011374097,0.021733839,-0.003788193,-0.0006193546,-0.029652877,0.009387539,0.028086472,0.028238762,-0.020461136,0.016730053,0.0088218935,0.004103649,0.0049765925,0.013640758,0.014543615,-0.0017404476,0.015772806,0.006347195,0.030675389,0.013347058,0.019634424,-0.06448358,0.04751422,0.022756353,-0.032916214,0.018383477,-0.02202754,0.035548642,-0.021962274,-0.008713116,0.042532187,-0.0026745785,0.039725717,-0.039595183,0.042249367,0.012911946,-0.006439656,-0.0137930475,-0.05769584,0.01965618,0.003570637,-0.041661963,0.013183891,0.005240379,-0.005868572,0.027934184,-0.012922823,-0.017121654,-0.04603484,0.0070814462,-0.04725315,0.0014549054,0.013140379,0.017263064,-0.009218933,-0.039094806,0.05051649,0.0244968,-0.0060208607,0.040226094,0.019873736,0.04207532,-0.008185542,0.026237248,-0.033177283,-0.008256248,-0.010366541,0.0119655775,0.052430984,0.030784167,0.030697145,0.013140379,0.049211156,0.027499072,0.014989605,-0.013009846,-0.015772806,0.001703735,-0.02010217,-0.015827196,-0.004647539,0.042358145,0.013934459,-0.02562809,0.003225267,-0.06435305,0.020363238,0.02706396,-0.00039635974,0.012868434,-0.018437866,-0.0032089502,0.011476076,0.037180312,-0.0037011707,0.004508847,-0.036027264,-0.026759382,-0.048950087,0.030109743,0.020733083,-0.0041525993,-0.018372599,0.0059229606,0.0052485373,-0.010110913,-0.0029750776,0.034069262,0.036745198,-0.03324255,0.028565096,0.00034095097,-0.0067333565,-0.027172739,-0.00780482,0.009148228,0.016240552,-0.008843649,0.02049377,0.03409102,0.018361721,-0.0095507065,-0.00083283137,-0.016980242,-0.0010850603,0.012879312,-0.0061024446,-0.0049765925,-0.019677935,-0.024627334,0.0060262997,-0.0046910504,0.038485646,0.017643787,-0.016425474,0.007239174,0.0018859381,-0.024083443,-0.0048215836,-0.021005027,0.029457076,0.022136318,0.0072228573,0.008647849,0.0012189932,-0.010986576,0.01240069,-0.02029797,-0.0029206886,0.03134981,-0.017556764,-0.000077674275,0.05451952,-0.018209433,0.021712083,-0.023735354,0.012911946,0.018111533,-0.018883856,0.0010497074,0.022691086,0.019199312,-0.014391326,0.0151854055,-0.0067496733,-0.02084186,0.014739416,-0.015272427,0.03126279,0.01965618,0.0088218935,0.020689571,0.029065475,-0.01417377,0.029500587,0.063047715,0.01560964,0.0025943548,0.0073751467,0.03352537,0.004835181,0.035853222,0.022386508,0.0005102367,0.012030844,-0.013890947,0.0104318075,-0.013390569,-0.009855284,-0.0015636834,0.0034020313,0.030784167,0.036853977,-0.00065810676,-0.024670845,-0.035853222,0.0029315664,-0.0050309813,-0.004076455,0.032959726,0.0061459555,-0.010540586,-0.031393323,-0.016566886,0.010437246,-0.020069536,0.028913185,-0.0073261964,0.0649187,0.040617697,0.012237522,-0.01689322,-0.0024475043,0.013053357,0.008142032,-0.017110776,-0.0072935633,0.034482617,0.00044870915,-0.027020449,0.00050853705,-0.015968606,0.016479863,-0.015283305,-0.0046040276,0.010257763,-0.022778109,-0.027738383,0.0059936666,0.009964063,0.019775836,0.00419611,-0.00666809,0.02480138,-0.026084958,-0.02869563,-0.0008158348,0.016708298,0.014489226,-0.009017694,0.06269962,-0.0039649573,-0.040900517,0.007696042,-0.04409859,-0.02202754,0.018198555,-0.0047971085,0.023670087,-0.025171224,0.038311604,-0.0029451638,0.0005941997,0.011323787,0.015794562,-0.017589398,0.021451017,0.004258658,-0.0065756286,-0.01017618,-0.01061673,-0.0038181068,-0.01985198,0.024192221,-0.010535147,0.010970259,0.00212389,-0.0039187265,0.03393873,0.010709192,0.011943822,-0.0021755595,0.06169887,0.015870707,-0.0073914635,-0.03313377,-0.017480621,-0.013967092,-0.00028044323,-0.0142390365,-0.0028608607,-0.030588366,-0.033220794,-0.0017064544,0.034504373,-0.0034836147,0.005126162,0.010676558,-0.046252396,0.027934184,0.0246926,-0.025345268,-0.013553736,0.049124133,-0.01452186,-0.013890947,-0.0048079863,0.0035679175,0.01308599,-0.04251043,-0.01190031,-0.012520345,0.037593666,-0.009664923,0.013303546,-0.024583822,-0.023147954,0.0038344236,0.003151842,-0.04183601,0.014793805,0.015141894,-0.020733083,0.014130259,0.0371368,0.0023224098,-0.050647024,-0.008332393,0.016468985,0.025345268,-0.026650604,0.006445095,-0.0037773151,-0.0054606544,0.001150327,0.02054816,0.018905612,0.003497212,-0.013706025,0.0181768,-0.019275457,-0.0004109768,0.0030838556,-0.0026310673,-0.004756317,-0.07636214,0.003377556,0.0061405166,0.0022530637,0.007146713,-0.039290603,0.009964063,0.052735563,0.019003512,0.021472773,0.005493288,0.023213219,-0.054301966,-0.0313063,0.029174253,0.008555388,-0.030087987,0.017752565,0.024344511,-0.0076579694,-0.0117480215,-0.008876283,-0.008256248,-0.028630363,-0.017719932,0.014859071,0.0022992943,0.014946094,0.01516365,-0.016523374,0.00027279477,-0.0042885714,0.0033802756,-0.045643236,0.026128469,0.015098383,0.0017050947,-0.015033116,-0.043489434,-0.015272427,-0.010681997,-0.035853222,-0.0011088555,0.015870707,0.0038235458,0.046165373,-0.033590637,-0.008386781,-0.014021481,-0.0077558695,-0.024170466,-0.021396628,0.01999339,-0.003165439,-0.0029941138,-0.033851705,-0.0069074016,-0.019580035,-0.016947608,0.013890947,-0.005868572,-0.024322756,-0.0056618936,-0.018764202,-0.010143546,-0.00028520226,0.013020723,-0.015033116,0.0061513945,-0.0071575907,-0.00046638557,0.04529515,-0.0114543205,0.010192496,0.0044626165,0.026150225,0.008343271,0.012531223,-0.019231945,-0.009175423,0.017545888,-0.007304441,0.02183174,0.003502651,-0.037419625,-0.0048161447,0.005468813,-0.04203181,-0.005971911,0.008413976,0.0094800005,-0.020330604,-0.019057902,-0.011737144,0.03916007,-0.026715871,-0.010660241,-0.027477317,-0.017491499,0.038594425,-0.006178589,-0.011932944,-0.0050037866,0.022103684,-0.008473804,0.007810259,0.032481104,-0.012139622,0.0054987264,0.044229124,0.014956972,0.011693632,0.0056673326,-0.032220036,-0.014739416,0.010486197,0.01308599,-0.0318937,-0.015468228,-0.01471766,-0.0011816007,0.03278568,0.0029669192,0.019982513,-0.042162344,-0.034265064,0.0010626249,0.010877797,-0.016556008,-0.024018176,-0.011215009,-0.018307334,-0.03250286,-0.031154012,0.011057281,0.031371567,0.030849434,-0.02070045,-0.023844132,-0.00987704,-0.017959243,0.014434837,-0.0015405681,0.026781138,-0.011867677,0.02035236,0.01150871,-0.007875525,0.016371084,0.0061350777,-0.0134340795,-0.011835043,0.0076470915,-0.005694527,-0.010556903,-0.0009246128,0.026193736,-0.0017159726,0.028391052,0.022799864,0.0032035112,-0.014032358,0.01975408,0.030610122,-0.051952362,-0.028978452,0.0067931847,-0.03145859,0.036723442,-0.015326817,0.043163102,-0.015283305,0.025519313,-0.033547126,0.010165302,-0.03670169,-0.036310088,-0.015022239,0.015696662,0.010562342,0.010676558,0.028282274,-0.01580544,0.017263064,-0.026628848,0.038442135,-0.044729505,0.0030240277,0.009295078,0.00007733434,0.020178314,-0.030762412,-0.022266852,-0.028652119,-0.018100655,0.00037902326,-0.013009846,0.017458865,-0.045251638,-0.0003446902,0.013140379,-0.0073316353,-0.009251567,0.00809852,0.006009983,0.026476558,-0.0019933563,-0.014848193,0.004968434,-0.07984304,0.053257696,0.013227401,0.02997921,-0.026063202,0.004321205,0.000568025,-0.01872069,0.0028608607,-0.005379071,-0.008636971,-0.04398981,0.026237248,0.00666809,-0.006923718,0.018307334,0.019318968,-0.00079951814,0.008995938,-0.003546162,-0.0043375217,0.019384235,-0.0099912565,-0.012857556,0.025062446,-0.036592912,-0.010687436,0.020210948,-0.038398623,-0.0022217901,0.043010812,-0.0016711017,-0.027390294,-0.010007573,-0.016142651,-0.031589124,0.0015596042,0.012172256,0.0073370743,0.0032878143,-0.02192964,-0.0066898456,0.022321241,-0.007032496,0.005308365,-0.026585337,-0.017447988,-0.03441735,0.007043374,0.01427167,0.023082687,-0.01353198,-0.0064777285,0.0070814462,-0.018318212,0.006336317,0.031980723,0.0034509813,-0.015598762,-0.016381962,0.0034509813,0.0050663343,0.005754355,-0.005596627,0.018133288,-0.004647539,0.0030349055,0.023670087,-0.015033116,0.007674286,0.004497969,0.005131601,0.0019022549,0.006553873,-0.0052512567,-0.009692118,0.009229811,-0.011432565,0.00016529154,0.004919484,-0.03382995,-0.015838074,-0.034482617,0.0043184855,0.014772049,-0.0017050947,0.006891085,0.023778865,-0.0054715322,-0.0075546303,0.029413564,-0.010839725,-0.013564614,0.00047352412,-0.009028572,0.044860035,-0.009670362,-0.0033449228,0.0055531156,0.016033873,-0.009387539,-0.030936455,-0.013619003,0.0107907755,0.010132669,-0.005748916,-0.009654045,-0.007935354,-0.0072881244,-0.025758624,-0.019449502,-0.0039432016,-0.0082344925,-0.015305061,0.021418383,-0.022430018,-0.011008331,0.017371843,0.023974666,-0.022430018,-0.01975408,-0.044642482,0.010540586,-0.006673529,-0.0018777798,0.030109743,0.0033122892,0.015000483,-0.014859071,0.03402575,-0.0048922896,-0.03546162,-0.022691086,0.02958761,0.025910914,-0.0049711536,-0.043380655,-0.015729295,0.0038833737,0.060915668,-0.0046285028,-0.00913735,0.009855284,-0.008854527,-0.00036780554,-0.01936248,-0.026433047,-0.008272565,-0.010953942,-0.009055766,0.05077756,-0.0017309295,0.01625143,-0.0009817212,-0.04681804,0.0043592774,-0.0028445441,-0.009447367,0.0049657146,0.003867057,0.02222334,0.023213219,0.022049295,0.030740656,0.0045550778,0.011084476,-0.0009443288,-0.00553136,0.035135284,0.019057902,0.0004330723,0.030087987,0.0026691395,0.010730947,0.027085716,-0.021962274,0.022299485,-0.017980998,-0.0071793464,-0.017687298,-0.010584097,-0.042358145,0.035722688,-0.019743202,0.00785377,-0.020287093,0.0026405854,-0.0121505,0.0064233392,0.010730947,0.019340724,-0.009594217,-0.008865405,0.006499484]},{"id":"class-Client","type":"class","source":"main","text":"Class: Client\nDescription: Main Fluxer bot client. Connects to the gateway, emits events, and provides REST access.\nProperties: channels: ChannelManager, events: ClientEventMethods, guilds: GuildManager, readyAt: Date | null, rest: REST, Routes: { readonly channel: (id: Snowflake) => `/channels/${string}`; readonly channelMessages: (id: Snowflake) => `/channels/${string}/messages`; ... 55 more ...; reado..., user: ClientUser | null, users: UsersManager, ws: WebSocketManager\nMethods: assertEmojiInGuild(emojiId: string, guildId: string) -> Promise — Asserts that a custom emoji (by id) belongs to the given guild.\nUsed when reacting in guild channels to reject emojis from other servers.; assertReady() -> void — Throws if the client is not ready. Use before accessing client.user or other post-ready state.; destroy() -> Promise — Disconnect from the gateway and clear cached data.; fetchInstance() -> Promise — Fetch instance info (API URL, gateway URL, features). GET /instance.\nDoes not require authentication.; fetchMessage(channelId: string, messageId: string) -> Promise — Fetch a message by channel and message ID. Use when you have IDs (e.g. from a DB).; getOrCreateUser(data: APIUserPartial) -> User — Get or create a User from API data. Caches in client.users.\nUpdates existing user's username, avatar, etc. when fresh data is provided.; handleDispatch(payload: GatewayReceivePayload) -> Promise; isReady() -> boolean — Returns true if the client has received Ready and `user` is set.; login(token: string) -> Promise — Connect to the Fluxer gateway and authenticate.; resolveEmoji(emoji: string | { name: string; id?: string; animated?: boolean; }, guildId: string | null) -> Promise — Resolve an emoji argument to the API format (unicode or \"name:id\").\nSupports: <:name:id>, :name:, name:id, { name, id }, unicode.\nWhen id is missing (e.g. :name:), fetches guild emojis if guildId provided.\nWhen reacting in a guild channel, custom emojis must be from that guild.; sendToChannel(channelId: string, payload: string | { content?: string; embeds?: APIEmbed[]; }) -> Promise — Send a message to any channel by ID. Shorthand for client.channels.send().\nWorks even when the channel is not cached.; sendToGateway(shardId: number, payload: GatewaySendPayload) -> void — Send a payload to the gateway (e.g. Voice State Update).","meta":{"url":"/docs/classes/Client"},"embedding":[-0.013568682,0.0051912684,-0.021182928,0.006163362,0.052046165,0.0037229722,-0.04375871,0.013510646,0.030271275,0.029505208,0.0043062284,-0.018722227,-0.003308019,0.036724813,0.029598065,0.019801686,-0.068063945,-0.022215959,-0.023399882,0.03435697,0.012756186,-0.0033805633,0.016621344,0.039394446,-0.026603438,0.031826627,-0.016470453,0.042458713,-0.01037093,-0.03960337,0.06049612,-0.023957022,0.050142605,-0.01353386,0.008281655,0.014671355,-0.0183508,0.036933742,-0.027578432,0.0084093325,-0.03526232,-0.04136765,0.016574915,0.009755754,-0.024258805,0.008606653,-0.05473901,0.018838298,-0.010150395,0.048053328,-0.03888373,0.017166877,0.020045435,0.06992108,0.014787425,-0.035006966,-0.030921273,-0.0024665054,-0.0311302,0.014195464,0.029040925,0.00041676688,0.0005117999,0.024514161,-0.00030795045,0.04717119,-0.014195464,0.030224847,0.009465577,0.064674675,0.032174837,-0.0016380497,0.0021429579,-0.0393248,-0.027183792,-0.0116128875,-0.005078099,0.039487302,-0.01160128,-0.04944618,-0.009308881,0.01866419,-0.036074817,-0.06490681,0.005464035,0.0073472844,-0.0511176,-0.01214101,-0.015402601,-0.01620349,0.01076557,-0.016458845,-0.07507462,0.0052551073,0.05473901,-0.0015234298,0.030921273,-0.0100227175,-0.0071441606,0.05557472,0.09243882,-0.05297473,-0.068899654,-0.02567487,0.05970684,-0.018826691,-0.033753403,0.016099026,-0.053764015,-0.011241461,-0.09192811,0.008188798,-0.007718711,0.031153414,-0.0029714135,-0.014845461,0.05083903,-0.01464814,0.02428202,-0.0036359192,-0.029551636,0.023748094,0.04454799,-0.002511483,0.019349009,-0.0019470884,0.043201566,-0.003255787,-0.09137097,-0.01890794,0.039765872,-0.030619489,0.04048551,0.003662035,-0.030456988,0.005081001,-0.010893249,-0.021507926,-0.04104265,-0.014996353,0.0019891642,-0.04299264,0.057199713,-0.015379387,-0.0007566368,0.026603438,-0.057896137,0.023307025,-0.03379983,0.026998078,-0.010312894,0.018397229,-0.032708764,-0.008554421,0.010939677,-0.0032209659,0.02372488,0.027764145,-0.020207934,-0.041785505,0.006906215,-0.03586589,-0.026858794,-0.0006902588,-0.048935466,-0.049864035,-0.0007617149,-0.000113894515,-0.03180341,0.0040334617,0.038976587,0.003662035,-0.028112357,-0.00015134549,0.0018716423,-0.03157127,-0.006337468,0.014265107,-0.057478283,0.015379387,0.045360487,0.005780328,-0.023527559,-0.07679247,-0.037374813,0.0038970786,0.006784341,0.023910593,0.0064477352,0.007033893,-0.03704981,0.025907012,0.0039754263,0.00054190576,0.035169464,0.0062097902,0.061888974,-0.017282948,0.030085562,0.0014109862,-0.007068714,-0.0098602185,0.03184984,-0.026765937,0.02333024,-0.02165882,0.022390066,-0.010968694,-0.015901705,0.015669564,0.03677124,0.016168669,-0.019488294,-0.011142801,-0.06499967,0.046521194,-0.053206876,0.055203293,-0.06374611,0.0012724266,-0.048703324,0.042690855,0.014253499,-0.075028196,-0.018141873,0.017584732,0.0398123,-0.031060558,0.0011969806,-0.0025579112,0.003052663,0.024815947,-0.03674803,-0.05631757,0.02057936,-0.035123035,0.039789084,0.022854349,0.013150826,-0.006093719,-0.039626587,-0.02344631,0.027949858,-0.022482922,0.007823175,-0.0070513035,-0.010132984,-0.018257944,0.03626053,0.023771308,0.07433177,0.027090935,0.027415933,0.00018154205,0.026905222,-0.014276714,0.022007031,-0.012152617,0.024862375,0.011670923,0.022819528,-0.0253963,0.022877563,0.037839096,-0.02189096,0.009668701,0.017015986,0.044222992,-0.029830206,-0.0027929547,0.0067146984,0.015054388,0.04666048,-0.031106986,-0.01994097,-0.023817737,-0.00070948305,0.015936527,0.018594548,0.003952212,-0.010695928,-0.020776682,0.025930226,0.028344499,0.0059602377,0.054321155,0.04995689,-0.023109704,-0.011311104,0.023016848,-0.022007031,0.032058768,0.01001111,-0.06272468,0.035401605,0.043921206,0.06871394,0.038953375,0.017851695,0.045151558,0.0067901444,0.020207934,-0.04283014,-0.014624926,-0.0007348735,0.016876701,0.02762486,0.013011541,0.04533727,-0.04016051,0.006970054,-0.0084093325,-0.04693905,-0.026092725,-0.0391623,-0.012106189,0.006575413,0.04231943,0.060913976,0.012593687,-0.020649003,-0.056410428,0.013835644,-0.03491411,-0.044222992,-0.03308019,0.008484779,-0.016470453,-0.016075812,0.03240698,0.03888373,-0.07224249,0.042806927,-0.0022865955,0.033289116,-0.00062678254,-0.023643631,0.029923063,0.023492739,0.028669499,0.023434702,-0.042806927,-0.056364,0.025999868,0.03498375,0.03797838,-0.0076664793,0.020474896,0.001977557,0.023585595,-0.019279366,0.02488559,-0.022192745,-0.021554355,0.022633815,-0.03725874,-0.012837435,-0.028367713,-0.030712346,0.03340519,-0.030758774,-0.005426312,-0.04164622,0.026092725,-0.01194369,0.0009822495,0.0016815764,0.01640081,0.008780759,-0.026533794,0.025744513,0.0009807986,-0.018640976,-0.0014262205,0.011311104,-0.010957087,-0.040833723,-0.02138025,-0.02388738,0.022552565,0.03013199,0.031431984,0.008444154,-0.005339259,-0.020730253,-0.012570472,-0.029133782,0.00035655513,-0.011769583,0.05418187,0.030689131,-0.009390132,-0.055667575,-0.0101736095,-0.012210652,0.00504618,0.058453277,-0.0045935037,0.017329376,0.026603438,0.048935466,0.03352126,-0.009424953,0.008490582,-0.026092725,-0.010202627,0.016215097,0.015901705,0.011409764,0.0020863733,0.017828481,-0.0098312,0.019035619,0.045708697,0.00380132,-0.048889037,0.018176693,-0.038140878,0.008827187,0.039719444,-0.0057484084,-0.034031972,-0.029830206,0.022738278,0.0062213973,-0.009349506,0.047635473,-0.06499967,-0.01520528,-0.04250514,-0.009239239,-0.016830273,0.06639252,0.00024229789,0.044733703,-0.020254362,-0.009802182,-0.00011063002,-0.041344434,0.019244546,-0.03312662,-0.0035575712,0.014857068,0.024444519,-0.012593687,0.018455263,-0.01751509,-0.0014566891,-0.0016815764,-0.022622207,-0.043364067,-0.034728397,0.0077883536,0.026998078,-0.076978184,-0.011508424,-0.002774093,0.046080124,0.02829807,-0.018768655,-0.0050113588,0.0027769948,-0.050653316,0.018884726,0.0011853735,0.01823473,-0.035123035,-0.0011331416,0.009935664,0.04283014,-0.0065812166,-0.0092102215,0.030921273,0.038698018,-0.011624495,0.005670061,0.009384328,0.009935664,0.08770313,0.035796247,0.046428338,0.051581882,-0.045987267,-0.043085497,-0.025698084,0.045430128,-0.007579426,-0.019708829,-0.026185581,0.0038506503,0.000988053,-0.0065057706,0.0480069,-0.01055084,0.03101413,-0.04478013,-0.03168734,-0.05000332,0.0033283315,-0.03168734,0.00879817,0.0012187439,-0.022157924,-0.0011549048,-0.004236586,0.008328083,0.02750879,-0.01759634,-0.0198249,-0.013870466,0.0015350368,0.028437356,0.0010308542,0.022947205,0.003676544,-0.0004933011,-0.032337338,-0.00044433368,-0.02806593,0.000804516,0.024165949,0.01500796,-0.0063897,-0.016099026,-0.009465577,0.0046225213,0.015704384,-0.07577105,-0.018141873,0.010005306,0.026371295,-0.021310607,0.01297672,0.015518672,-0.018582942,0.039348017,-0.040531937,-0.037676595,0.011595477,-0.038674805,-0.013882073,0.0032412782,-0.010423162,0.0106494995,0.00537408,0.033056974,-0.008426744,0.027671289,-0.0042307824,0.0011418469,0.015994562,-0.021798104,0.014485641,-0.019360617,0.018339192,0.02460702,-0.01194369,-0.006795948,0.003029449,-0.0028335794,-0.015274923,0.007364695,0.019441865,-0.007341481,-0.02138025,0.006476753,-0.018594548,-0.00048278217,-0.047519404,-0.0014276714,-0.026324866,0.0090593295,-0.0124195805,0.00026932062,0.019685615,0.0018092543,-0.025535585,0.01325529,-0.023713274,0.011520031,-0.016307954,-0.0476819,-0.0006532612,0.034101613,-0.029017711,-0.011049944,-0.04041587,-0.027717717,-0.023980236,0.06490681,0.00090970524,0.005110019,0.0067611267,-0.0022227566,-0.024328448,-0.006708895,-0.010283876,0.0014523364,-0.029598065,0.0013181295,0.028646285,-0.036515888,-0.048981894,0.010516019,-0.007631658,-0.018594548,0.010846821,-0.014137428,-0.006871394,0.029783778,0.016540095,0.050189033,-0.014485641,-0.022471314,-0.038999803,0.023214169,-0.027253434,0.003928998,0.007591033,0.012918685,-0.01512403,0.0012259983,0.010127181,-0.0044948435,0.009459774,0.03073556,0.009744147,-0.015158852,-0.021240965,-0.026023082,0.026649866,-0.037235525,0.010539233,-0.008693706,-0.026162367,-0.038419448,0.017050806,-0.0023794523,-0.021043643,-0.023434702,0.009790575,0.013719574,0.010974498,0.021229357,0.031896267,-0.001255016,-0.0368641,-0.00899549,0.013777609,0.0025288935,-0.019325795,0.009744147,0.03496054,-0.056503285,0.040462296,-0.021705247,-0.014775818,0.028808784,-0.011688334,0.021751676,-0.022575779,0.024932018,-0.0019891642,0.05418187,0.0029511012,0.0008719822,-0.0045470754,0.038187306,0.024815947,0.018745441,0.048331898,0.03570339,0.03263912,0.0037926147,-0.019999007,-0.011549049,-0.00750398,-0.03136234,0.012930292,0.016052598,-0.016783845,0.01230351,-0.03797838,-0.011247264,0.06142469,-0.043874778,-0.00085747335,-0.0017178485,0.03526232,0.017132057,0.0018339193,0.033823043,0.0026043395,-0.016574915,-0.02500166,0.001495863,0.0035981962,0.033219475,0.0032906083,-0.02829807,0.0116128875,-0.018223122,-0.0035082411,-0.0030787792,0.021983817,-0.046706907,-0.007591033,-0.014276714,0.034287326,-0.021449892,-0.047635473,0.012907078,-0.018141873,-0.037281953,0.0052144825,-0.0009002745,-0.01946508,0.0007994379,0.006883001,-0.025373086,0.0067727338,0.02583737,-0.018408835,-0.01112539,-0.009105758,-0.025628442,0.02472309,0.03574982,-0.015379387,-0.0016540095,0.0085196,0.035726607,0.015727598,-0.024073092,-0.03809445,0.014566891,-0.015982956,0.024699876,-0.034217685,-0.022424886,-0.018896334,-0.027183792,-0.019697223,-0.019174904,-0.007428534,-0.035540894,-0.0017657276,0.020057041,-0.032894477,0.02957485,-0.023957022,0.0072312136,-0.032755192,0.004387478,-0.020161506,-0.012013332,-0.014810639,-0.0055975164,-0.00602988,0.010388341,-0.008241029,0.031942695,-0.00008387932,0.024142735,-0.007033893,-0.01887312,-0.027578432,-0.03001592,-0.022007031,-0.02829807,-0.0113053,-0.009337899,-0.022900777,0.03853552,0.016273132,-0.04248193,-0.044756915,-0.047914043,-0.008467368,-0.015518672,0.015100816,-0.0034066793,0.012071367,-0.010556643,0.008403529,0.008345493,-0.030898059,-0.005942827,-0.033335544,-0.060403265,-0.020451682,-0.00038412193,-0.010684321,-0.025071302,-0.03742124,0.011351729,0.014938317,-0.10910659,-0.0054205083,0.007887014,-0.017967766,-0.019105261,-0.0074227303,0.0035082411,0.038187306,0.014485641,-0.01620349,0.033242688,-0.017793661,-0.009227632,0.015274923,0.010875838,0.005580106,0.00010020178,0.014833854,0.005934122,0.0022575778,-0.004625423,-0.011334318,-0.016934736,0.03804802,0.026765937,0.010446376,0.00788121,-0.0029365923,0.029621279,-0.004222077,0.019035619,-0.014218678,0.011920475,-0.016690986,0.009871826,0.054367583,0.018327586,-0.023515953,0.036283746,-0.059660412,0.000025911908,0.00011507336,-0.02046329,0.0025201882,0.016586524,-0.0028553428,-0.0032006535,0.026789151,-0.0049272073,-0.016052598,-0.03312662,-0.037490882,0.010539233,0.01902401,-0.0072428207,0.030712346,-0.03196591,0.044571202,-0.029528422,-0.026742723,0.004677655,0.021577569,0.034658752,-0.024328448,0.014857068,-0.038512304,-0.020091863,-0.019198118,0.01620349,0.0253963,0.0050171623,0.0022633814,0.014833854,0.018223122,-0.018826691,0.055760432,0.00927406,0.013290112,0.014949924,-0.023980236,-0.02057936,0.007451748,0.026719509,-0.002955454,0.007991478,0.0052173845,-0.014091,0.023423096,0.027717717,-0.023063276,0.016876701,-0.025257016,0.027369505,0.022401672,0.015611528,-0.012907078,-0.043874778,0.011502621,0.01643563,-0.019801686,0.048610467,-0.031919483,0.009999503,-0.005156447,-0.023237383,0.023423096,0.010730749,0.019198118,-0.02320256,-0.03988194,-0.002750879,-0.01230351,-0.0074227303,0.01990615,-0.026882008,0.012860649,0.04009087,-0.0008415136,-0.0122570805,0.01751509,0.019256152,0.0022387165,0.0053769816,-0.011850833,-0.030712346,-0.027996287,0.025976654,-0.005260911,-0.012941899,0.010202627,-0.018304372,-0.008966473,-0.010440572,-0.004422299,-0.01138655,0.015774028,-0.011595477,0.0018672897,-0.011641906,0.0074923728,-0.014357964,-0.003902882,0.008177191,-0.007416927,-0.0018368211,-0.009796379,0.006476753,0.047821186,-0.036074817,-0.027857002,0.024165949,0.0008690804,-0.017120449,0.0368641,0.030967701,0.030898059,-0.02595344,0.007068714,-0.029435566,0.017584732,0.056039,0.03001592,-0.0040537743,-0.04907475,-0.035169464,-0.009268257,-0.039998014,0.0048952876,-0.042342644,-0.020277577,0.0028364812,-0.0007167375,0.026487365,-0.0021632703,-0.0095410235,0.04972475,0.0335909,0.009796379,0.008676295,0.0054814457,0.024792733,0.004355558,-0.008809777,0.04433906,0.042064074,-0.0041495324,0.03542482,-0.0082526365,-0.036631957,0.00023359257,-0.0073356773,0.018733835,0.038419448,0.02165882,-0.036678385,-0.014799032,0.020416861,0.01866419,-0.021623997,-0.029644493,0.06866751,0.038628377,0.00035637376,-0.02829807,0.0012151166,0.027183792,-0.03363733,0.03442661,-0.027648075,0.049399752,0.024932018,0.024839161,-0.020753467,-0.0039493106,-0.00045158813,-0.0008741585,-0.039278373,-0.0103361085,0.0020457485,0.0046979673,-0.008803973,-0.023295417,-0.0035952944,0.025024874,-0.004355558,-0.0026638259,-0.03284805,-0.034728397,-0.044176564,0.010603071,-0.015959742,-0.010028521,0.004007346,0.0019282269,0.027694503,-0.028762355,0.010899052,0.017294556,0.011717351,0.059660412,0.00006814628,0.023074884,0.0009953075,-0.03837302,-0.012466009,0.016586524,0.005211581,0.049864035,-0.031640913,0.019720437,-0.018130265,0.016702594,0.008908438,-0.010777177,0.008148173,0.009047722,-0.0042598,0.012512437,0.012825828,0.00093727204,0.020509718,-0.0025695183,-0.00796246,-0.05195331,0.019604364,0.009088347,0.0027915037,0.015216887,0.0007987125,-0.009308881,0.009198614,0.006499967,0.024490947,0.012001725,-0.00038920005,-0.009616469,-0.026487365,-0.010283876,-0.017213305,0.008502189,-0.030549847,-0.02623201,-0.008049513,-0.005878988,-0.014439213,-0.011316908,-0.007631658,-0.03586589,0.0077129076,-0.01862937,0.029714135,0.001992066,-0.02049811,-0.027160577,0.021693641,-0.008972276,-0.03786231,0.0075968364,0.022726672,0.007968264,-0.009906647,-0.0090593295,-0.026092725,-0.018107051,-0.014996353,-0.0072950525,-0.008554421,-0.0340784,0.034519468,0.007672283,-0.013661538,-0.0059138094,0.02957485,-0.014613319,0.014462427,0.030921273,-0.038465876,-0.057153285,0.025419515,-0.010539233,0.029969491,0.007213803,-0.017468661,0.015263316,-0.015774028,-0.00040842427,0.03786231,0.017062414,0.021333821,-0.017979374,0.039069444,-0.05752471,-0.021043643,-0.02488559,-0.01353386,0.0063200574,-0.05942827,0.013673145,0.016110633,-0.001274603,-0.013731181,0.0050490815,-0.035935532,0.0114678,0.03753731,-0.0060995226,-0.012175831,-0.013789216,-0.02528023,-0.022355244,0.040973008,-0.00061336183,-0.012756186,0.0185133,0.02667308,0.01317404,0.0011607084,0.03263912,0.019813294,-0.024374876,-0.036051605,0.026208796,-0.0119320825,-0.014764211,0.04426942,-0.011044141,-0.013998143,-0.006819162,-0.0143463565,-0.029017711,0.006116933,0.027415933,0.0011636101,0.015483851,-0.041506935,-0.032337338,0.013069577,-0.019732043,0.01520528,0.037490882,-0.0032499835,0.026742723,-0.03514625,0.006145951,-0.028715927,0.008885223,-0.013673145,-0.024305234,0.029203424,-0.0061401473,-0.0076896935,-0.031037344,0.0012898372,-0.0036039997,-0.02046329,0.014044572,-0.005121626,-0.055667575,-0.03259269,-0.017735625,0.007364695,0.011659316,0.024421304,-0.017979374,0.023376668,-0.0020486503,0.030201633,0.07637461,-0.0017120449,-0.02511773,-0.021182928,0.025883798,0.00066994637,0.008989687,0.000053274704,0.03985873,-0.00050128094,0.0006753872,-0.00037360302,0.060124695,-0.008873616,0.0035140447,0.0038506503,0.00070839486,-0.0052260896,0.006325861,0.0012767792,-0.020393647,-0.0128954705,0.01341779,0.012361545,0.003496634,0.009390132,0.025628442,-0.029644493,0.013882073,0.011195033,-0.0035865891,-0.016772237,0.012431188,0.018014194,0.0040363637,0.01659813,0.020242754,-0.003511143,0.016110633,-0.037653383,0.004068283,0.004224979,-0.024165949,-0.0037200705,0.015599921,0.004300425,-0.009517809,-0.026301652,-0.014903496,-0.028692713,0.034240898,0.0060530943,0.008217815,-0.01445082,-0.015356173,0.0059486306,0.024862375,-0.0025680673,-0.036005177,0.027462361,-0.008455761,-0.031942695,-0.041112293,0.013011541,0.034380183,0.022842743,-0.0008088687,-0.024862375,0.030062348,0.00815978,-0.027601646,0.006476753,-0.004500647,-0.0083571,0.017944552,-0.0029481994,-0.008084334,0.00069098425,0.00010391968,0.013998143,-0.0050606886,-0.041948,-0.013568682,-0.016969558,0.02252935,0.023492739,-0.023295417,0.0023243185,-0.030874845,0.023515953,-0.012965113,-0.008177191,0.017805267,-0.00435846,-0.025349872,-0.0016685184,-0.022993634,0.0112994965,-0.015147245,0.025373086,0.013557075,0.014578498,-0.02384095,-0.03419447,-0.03085163,-0.015182066,-0.028089143,0.003548866,0.01205976,0.033823043,-0.0022909483,-0.00046246976,-0.0140213575,0.0060124695,-0.0043149334,-0.035169464,-0.023388274,0.008647278,-0.011409764,0.021043643,0.01194369,-0.03542482,-0.035053395,-0.029505208,-0.00899549,-0.0007950853,0.01784009,0.005588811,-0.048471183,-0.017410627,-0.0069526434,-0.028344499,-0.012187438,-0.013777609,-0.007614247,-0.0006597902,-0.0030903863,-0.00453837,-0.040856935,0.008136566,-0.006262022,0.016377596,0.011473603,-0.020149898,0.004454219,-0.0136963595,0.01568117,-0.038071238,0.016737416,-0.037839096,0.021403464,0.0022836938,-0.0044252006,-0.01168253,0.03029449,0.02651058,0.0012332527,0.036214102,0.0066740736,0.003081681,0.02229721,0.013974929,0.0015945232,-0.013870466,0.00583256,-0.002380903,-0.039394446,0.021519534,0.024212377,-0.018223122,-0.015390994,0.022784706,-0.026719509,0.029156996,0.0022851448,-0.018455263,-0.010521822,0.025930226,-0.015797243,-0.0071267495,-0.013023148,-0.0084151365,-0.006436128,0.019813294,-0.0042162733,-0.024374876,0.036051605,0.00140083,0.012570472,0.012477616,-0.017642768,-0.019917756,0.0060879155,0.020207934,-0.009639683,-0.00091333245,-0.0056439447,-0.0038477485,-0.024815947,0.0025129337,-0.029133782,0.006314254,-0.035564106,-0.018826691,0.010986106,-0.017282948,-0.008873616,0.02030079,0.022622207,0.009430756,0.0017309064,-0.04171586,0.021182928,0.013266897,0.024374876,-0.03920873,0.017248128,-0.009512005,-0.03229091,0.004384576,-0.015240101,0.021438284,0.00061191095,-0.0080901375,0.039510515,0.009082544,-0.010463786,0.011067355,0.020254362,-0.008264244,-0.033289116,-0.0117753865,0.010237448,0.015216887,0.00044687276,0.005321848,-0.04104265,0.015240101,-0.0033283315,0.0044426117,0.0052551073,0.0014871577,0.0013456963,0.013394576,-0.036794458,0.0040102475,0.013348147,-0.0069236257,0.010614678,-0.0046428335,-0.00509551,-0.03630696,0.031176629,-0.013324933,-0.01676063,0.020683825,-0.0067611267,0.02762486,-0.017375804,0.007486569,0.0031629305,0.015251709,0.02790343,0.017793661,-0.0066508595,0.023063276,-0.015994562,0.017967766,0.043944422,-0.004695066,-0.009216025,0.0073704985,0.036956955,-0.022041854,0.015913313,0.0018672897,-0.012291902,0.042690855,0.016609738,-0.031385556,0.019047225,0.0058905953,-0.02141507,-0.020254362,-0.031269483,0.005220286,-0.039696228,-0.02428202,0.020254362,0.0027334683,-0.029505208,-0.016412416,-0.053485446,0.05441401,0.025164159,0.02472309,-0.016493667,-0.015054388,0.012640115,-0.012825828,-0.00090099993,0.033173047,-0.0043932814,-0.010243252,-0.027462361,-0.0055830074,0.018292764,0.00014989461,0.032453407,0.030596275,-0.015193673,0.020521324,0.0101736095,-0.02460702,-0.025326658,0.0010119927,-0.019766865,-0.012640115,-0.011711548,-0.04092658,-0.0074053197,-0.02472309,-0.017747233,-0.01612224,0.009929861,-0.014032965,0.003662035,0.01009236,0.009999503,-0.020625789,-0.0055336775,0.00286695]},{"id":"class-ClientUser","type":"class","source":"main","text":"Class: ClientUser\nProperties: client: Client\nMethods: fetchGuilds() -> Promise — Fetch guilds the bot is a member of.; leaveGuild(guildId: string) -> Promise — Leave a guild. Requires the bot to be a member.","meta":{"url":"/docs/classes/ClientUser"},"embedding":[-0.05399631,0.0021292185,0.051841844,0.0051954053,0.0057003587,0.020613303,-0.052874193,0.033573765,0.015126148,0.013364423,0.040957298,-0.051168572,0.010935038,0.006261417,0.038174447,-0.026661519,-0.08177994,-0.037097216,0.002242833,0.012848249,0.05736266,0.06355675,0.024237745,0.027447002,-0.032608744,0.052649766,-0.0012427454,0.03191303,-0.029309716,-0.029175064,0.05202138,-0.014621195,0.018795474,-0.036895234,0.002576663,0.007697728,0.031598836,0.043695267,-0.015328129,0.015081263,-0.049597606,-0.044907153,0.026818616,-0.027357232,-0.016326815,0.03321469,-0.015507668,0.014935388,0.012724816,0.0422814,-0.04973226,-0.02381134,-0.0011936529,0.09704075,0.0032541417,-0.023025857,0.0015288854,-0.033798188,-0.050360646,-0.0030802134,-0.00063960714,0.008500042,0.017101076,0.025157882,0.031868145,0.03097045,-0.01419479,0.007967036,0.01799877,0.021780306,-0.0068785823,-0.033394225,-0.024686592,-0.010834048,-0.010087839,0.005220653,0.025763825,-0.00015534318,0.01561988,-0.028030504,-0.013734722,-0.004468834,-0.046814755,-0.019973697,0.023654243,-0.023878668,-0.04306688,0.0016972031,0.029085293,-0.015900409,0.020400101,-0.07666309,-0.07554097,-0.01951363,0.023856224,-0.03761339,0.03860085,-0.04486227,-0.0154066775,0.05152765,0.06791057,-0.03458367,-0.069391765,-0.018739367,0.046276137,0.005122468,-0.058933627,0.013353202,-0.054175846,0.0052711484,-0.09125062,0.060235284,-0.016293151,0.029736122,-0.016360477,-0.042169187,0.026930828,-0.0044800555,0.0075574634,-0.024753919,-0.036985002,0.027357232,0.055926353,-0.035683345,0.028412024,-0.0035486976,0.014980272,-0.031823263,-0.033843074,0.003077408,0.008471989,0.041473474,0.020456208,0.022386251,-0.03990251,0.0061997008,-0.023115627,-0.014071357,-0.037299197,-0.024709035,-0.0058069597,-0.032339435,0.0039105806,0.0268635,-0.051482763,0.0016424999,-0.00876374,0.027491886,-0.046724986,0.0046904525,-0.04207942,0.011294115,-0.032743398,-0.013745943,-0.019031119,0.03907214,0.0046231253,0.015182254,-0.057003584,0.010020512,0.03936389,-0.034695882,0.012073987,-0.000084378,-0.057093352,-0.022767771,-0.004019987,0.037366524,-0.014508983,0.013835712,0.0365586,0.02991566,-0.053951424,0.012960461,-0.0137122795,-0.031037778,-0.02610046,0.005610589,-0.02924239,-0.034426574,0.029736122,0.006250196,-0.006048215,-0.07563074,-0.06678845,0.036536157,-0.008118522,-0.012612605,-0.013229769,0.0055292356,0.007675286,0.012646267,-0.0030830186,-0.012152536,0.038915046,0.015900409,0.026908385,-0.00097273587,0.010912595,-0.030454278,-0.006087489,0.0041013407,0.04183255,-0.02762654,0.0072825444,-0.03058893,0.008556148,-0.04685964,0.031823263,0.0089264475,-0.012511614,0.01343175,-0.0625244,0.0055516777,-0.044929598,0.012926797,-0.06791057,0.04151836,-0.037927583,0.004076093,-0.031217318,0.035369154,0.025853595,-0.045759965,0.006547557,0.0070637316,0.052515112,-0.049642492,0.011137019,0.0056358366,-0.0061884797,0.024911014,-0.032047685,-0.037703156,0.0015358988,-0.0004951345,0.052245803,0.06961619,0.012309632,-0.035638463,-0.033932842,-0.038421314,0.012376959,-0.017606027,0.034897864,-0.022902424,-0.0033579376,0.0049485397,0.052604884,0.023205396,0.032833166,0.026504422,0.00072236336,-0.0140937995,-0.000053475927,0.026526865,0.0045950725,0.011602698,0.015373014,-0.0063399654,0.016427804,0.006525115,0.010491801,-0.0018795474,-0.013409308,0.02219549,-0.0034505122,0.032541417,-0.0220945,-0.0030184968,-0.038331546,0.009566055,0.04088997,-0.056420084,0.008533706,-0.0012406415,0.0005410712,0.043223977,-0.001018322,0.0003052511,-0.016035063,0.011277284,-0.016562458,-0.009364073,0.031015337,0.045580424,0.0014601558,-0.0065587787,0.0015962126,0.04055334,0.01875059,0.027267462,0.008791793,-0.033304457,0.03056649,0.008236345,0.051392995,-0.022554567,0.04295467,0.07441885,-0.02675129,0.0009755412,-0.04544577,-0.050136223,0.02228526,0.012163757,0.07096273,-0.0073610926,-0.010435696,-0.043493286,0.015462783,0.0029876386,-0.015081263,0.021656873,-0.026975712,-0.03018497,-0.025786268,0.018896464,0.020927496,0.03626685,0.013992809,-0.022004731,0.003495397,0.011484875,-0.040441126,-0.049328297,-0.018122202,-0.037186984,-0.015137369,0.054355387,0.056420084,-0.068494074,-0.0076079587,0.037119657,0.05067484,0.013016567,-0.018683262,0.034920305,0.050315764,0.0007097395,0.0140937995,-0.016371699,-0.024282629,0.025831152,0.016629785,0.0061267633,0.018312963,0.060325053,-0.03085824,0.04241605,-0.000819146,0.044727616,-0.0217242,-0.0459395,-0.04124905,-0.046545446,0.006356797,-0.017763125,-0.029758563,0.04753291,-0.017202066,-0.0030325234,-0.0312622,0.025876036,0.020994823,0.052874193,-0.028748658,0.022072056,0.0074508623,-0.022128163,0.0045024976,-0.0109799225,-0.023856224,-0.017650913,-0.005924782,-0.009364073,-0.037972465,-0.011535371,0.01152415,0.024462167,-0.007961426,-0.00072446733,-0.0010092047,-0.011726131,-0.007394756,-0.024821246,-0.042528264,0.0020675021,-0.01647269,0.020557199,0.02942193,-0.0041237827,-0.006278249,-0.03229455,-0.014868061,-0.013644952,0.0543105,-0.0010688172,-0.013207327,-0.023003414,0.06001086,0.014026472,0.005122468,0.008584201,0.0013773995,0.025651613,0.02715525,0.005411413,-0.012354517,0.017909,0.032092568,0.023788897,0.030903123,-0.005694748,0.031598836,-0.059517127,0.0055488725,-0.041765224,0.038713064,0.018268079,-0.032586303,-0.006166037,0.04192232,-0.0063231336,0.04466029,-0.016405363,0.07845847,0.03094801,-0.020119572,-0.04905899,-0.049373183,-0.00014631364,0.011226788,0.009678266,-0.001638292,-0.034224592,0.008578591,-0.008471989,-0.015081263,0.020523535,-0.0024518273,-0.016180938,-0.01457631,0.05175207,0.027200136,0.0005736827,0.036513712,-0.0472636,0.022027172,-0.01553011,-0.021656873,-0.039004814,0.017965106,0.045109134,-0.049103875,0.0017911806,-0.016169718,0.00035434376,0.014183569,-0.018167088,0.009599717,-0.018896464,-0.0122086415,0.06333233,-0.012534056,0.02933216,-0.024058206,0.025786268,0.00962216,-0.0005701761,0.015563774,0.02419286,0.029601468,0.0066541587,-0.03038695,0.010912595,-0.004278074,0.020792844,0.01305023,0.043560613,0.05098903,0.011972997,-0.018526165,0.0035010076,-0.013891818,0.009824141,0.0287711,0.019311648,-0.0032120622,0.027177693,-0.031845704,-0.0038937489,0.055971235,-0.009706319,0.044548076,-0.0008051195,0.028883312,-0.079490826,0.007153501,-0.009594107,0.010143945,-0.049014106,-0.027379675,0.007058121,-0.006642937,-0.0038236163,-0.034089938,-0.06059436,0.0049793976,-0.004931708,-0.022139383,-0.010076618,-0.03076847,-0.024731476,0.021578325,0.0067832023,-0.044929598,-0.015485225,-0.033124916,0.019008676,-0.019883927,0.026594192,-0.018470058,-0.048026644,0.0056919428,0.03106022,-0.0011417549,0.0046090987,-0.016730776,0.040620666,0.027334789,-0.0048531597,0.010127113,0.017471375,-0.01419479,-0.0051701576,-0.02372157,0.006822476,0.012197421,-0.050315764,-0.020905055,-0.004098535,-0.0013360215,0.0063792397,-0.03229455,0.025314977,-0.004552993,0.037186984,0.013611289,0.0032569468,0.05296396,-0.006895414,0.0057564643,-0.014430435,0.011501707,-0.010390811,0.0040396242,-0.03047672,0.011069692,-0.012433065,-0.00097483984,-0.003029718,0.019446302,-0.011692467,-0.01438555,0.0052795643,0.01457631,0.009610939,-0.0188628,-0.0070637316,0.008163407,0.020029802,-0.031351972,0.019210657,0.029489256,0.0028978693,-0.026796173,0.014901725,-0.020804064,0.00012097832,0.025651613,-0.049777146,-0.0015246776,0.042214073,-0.0075181895,-0.003896554,-0.030903123,-0.009571665,-0.010037344,0.06409537,0.015182254,-0.039745413,0.0057368274,-0.02037766,0.012275969,-0.010446916,0.011658804,0.021028487,-0.042236514,0.004199526,0.021847634,-0.004496887,-0.026930828,0.003554308,-0.014307002,-0.046141483,0.01915455,-0.0042416053,-0.016753219,0.014430435,0.017819231,0.031643722,-0.009723151,-0.0543105,-0.014430435,-0.017965106,-0.026841057,-0.00790532,-0.010491801,0.027289905,0.021376343,-0.001181029,0.025045669,0.03314736,0.02372157,0.01647269,-0.0021081788,-0.027424559,-0.04335863,-0.031351972,-0.007753834,-0.012163757,-0.002990444,-0.017291835,-0.040261585,-0.053771883,0.0064802305,-0.0075406316,-0.0041237827,0.0033663535,0.009627771,-0.006642937,-0.001733672,-0.025314977,-0.0019580955,-0.008466379,-0.035862885,-0.008264397,0.0048082746,-0.016079947,-0.011782237,0.0105366865,0.018941348,-0.039094586,0.011108967,-0.04241605,-0.012433065,0.02134268,-0.017044969,0.046141483,-0.04466029,0.01789778,0.007327429,0.04324642,-0.011080913,0.0049737873,-0.016068727,0.06238975,-0.011097745,0.014172348,0.0022512488,0.024305072,0.019715609,0.015922852,0.022217933,-0.014419214,-0.033394225,-0.04288734,0.01095748,0.010564739,-0.04030647,0.004895239,-0.03954343,-0.017920222,0.03673814,-0.02829981,0.025876036,0.0077313916,0.0038067847,0.03294538,0.009863416,0.0099644065,0.012679931,-0.036132194,-0.019367753,-0.0035683345,0.0056554736,0.012489171,0.017505039,0.0075574634,-0.0018542997,-0.008814235,0.025427189,-0.006732707,0.008864731,-0.01685421,0.007574295,-0.005125273,-0.017190844,-0.020557199,-0.05175207,0.047398254,-0.03678302,0.012433065,0.0071422798,-0.0060369936,-0.029848333,-0.038645737,0.035750672,-0.045266233,0.011058471,0.023788897,0.0072152177,0.0099419635,-0.016349256,-0.001371789,-0.004179889,0.015855525,-0.024641708,0.008471989,0.0067888126,0.025472075,0.016551238,-0.009650213,0.013701058,0.0015176643,-0.021275353,0.041585688,-0.035458922,-0.037590947,-0.013285874,0.0072152177,-0.006115542,-0.049687374,0.0014243883,0.0054478818,0.027850963,0.028165156,-0.020512313,0.0064633987,-0.021769086,0.005666695,-0.016932758,-0.0037843422,0.00036679226,-0.03936389,-0.01523836,-0.005419829,-0.0543105,0.024147974,0.0010996754,0.015743313,0.02334005,0.037882697,-0.0053553074,0.013072672,-0.015496447,-0.028928196,-0.005686332,-0.030409392,-0.017213287,0.015900409,-0.0009741385,0.010082228,0.027469443,-0.043493286,-0.033865515,-0.02522521,-0.0014489347,-0.02980345,0.008864731,0.017089855,0.039565872,-0.025045669,-0.015384235,-0.012623825,0.0025317783,-0.0074564726,-0.009824141,-0.028075388,-0.0201869,-0.0089264475,-0.021870077,0.023497147,-0.023654243,0.01848128,-0.008084859,-0.0792664,-0.014531425,0.025045669,0.00226247,-0.020826505,0.04562531,0.017224507,0.046276137,-0.044323653,-0.016248265,0.04248338,-0.039184354,-0.005896729,-0.0075125787,0.0300952,0.01836907,-0.023968436,-0.01076111,0.043942135,-0.008370999,0.007002015,-0.0037029888,-0.06212044,0.00022494956,0.048251066,0.020882612,0.0071703326,-0.0320028,0.021780306,-0.0011670025,-0.009779257,0.0051926,-0.013106336,-0.009173313,-0.01542912,0.0150476,0.013577625,-0.007961426,0.010295431,-0.06732707,0.0010323484,0.03085824,-0.018851578,0.018021211,0.021589547,0.025068112,0.000071140516,0.026459537,-0.021971067,-0.0051785735,-0.004070482,0.0156311,0.025808709,0.014082578,-0.012702374,-0.01028982,-0.016281929,0.023609359,-0.030611373,-0.036715694,0.0058518443,0.010082228,-0.012085209,-0.025000785,-0.016281929,-0.03702989,-0.041451033,-0.011310947,0.013701058,0.01124362,-0.012522834,0.0039386335,0.020534756,0.014273338,0.04295467,0.015417899,-0.0012932408,0.017684577,0.010026122,-0.019827822,-0.025045669,0.033506438,0.010564739,0.017808009,-0.013992809,-0.024798803,-0.02124169,0.026122902,0.009874636,-0.04694941,0.0071310587,0.02247602,0.038174447,0.017067412,0.006076268,-0.01647269,-0.005714385,0.0039189965,0.011501707,-0.028187599,-0.027963176,-0.0052795643,0.0061379843,-0.0034028222,-0.023788897,-0.040710434,0.014295781,0.01076672,-0.00046392556,-0.013992809,0.0025948975,-0.022161826,-0.046141483,-0.0040620663,-0.026145345,0.013768385,0.050629955,-0.012298411,-0.0070805633,0.0306787,0.007439641,0.019771716,0.012915576,-0.034897864,0.0011165072,0.0047970535,0.0057424377,0.028187599,-0.028748658,0.05992109,-0.02105093,-0.006065047,0.0110023655,-0.0055853412,-0.015799418,0.013510298,0.016338035,-0.013970367,0.0026061186,0.015967736,-0.0056695,0.018155865,-0.043583054,0.016607344,0.0182793,-0.010009291,0.0025542206,0.019165773,-0.0056610843,-0.0018879632,0.0036160245,-0.011602698,-0.0049737873,0.008034363,0.012320854,0.037927583,0.00428649,-0.00040080646,0.00020127988,0.0024125532,0.014980272,0.0114456015,0.009358463,-0.06310791,-0.016427804,0.02029911,-0.006469009,-0.013656174,-0.06382606,-0.020231783,-0.011075303,0.031800818,0.018874021,0.033753302,0.0021853244,0.054534923,0.03936389,-0.021454893,-0.011602698,0.026706403,0.042438496,-0.0007917944,-0.03543648,0.019850263,0.056913815,0.004064872,0.024462167,0.007585516,-0.012466729,-0.016326815,0.037209425,0.017359162,0.0076472326,-0.0074340305,-0.006929077,-0.05018111,0.011613919,0.013173663,-0.005677916,0.005085999,0.019356532,0.026437096,-0.014980272,-0.00264399,0.0137122795,-0.007114227,0.00036959755,0.05323327,-0.027289905,0.011670025,-0.019771716,-0.009487506,0.016169718,0.01829052,0.019839043,0.035391595,-0.022408692,-0.019726831,0.00790532,-0.012994125,-0.02601069,0.026459537,0.013218548,0.010620845,0.0015934072,0.0015176643,-0.008875952,-0.023878668,-0.034134824,0.01771824,0.012354517,-0.009672656,-0.007114227,0.026841057,0.008432715,-0.006620495,0.0060033305,0.027604098,-0.0020885419,0.035144728,0.026257556,0.051886726,0.0077370023,-0.028793544,0.010906985,0.010110281,0.0016831767,0.0236318,-0.015103705,0.012107651,-0.011546592,0.0046904525,-0.014677301,-0.012982903,0.01514859,0.0005768387,-0.0048643807,0.016068727,0.021668095,0.006648548,0.018167088,0.020254226,-0.04391969,-0.03543648,0.012275969,0.0035767504,0.034606114,-0.005402997,0.0058237915,-0.013768385,-0.0031026558,0.031284645,0.0030661868,0.02942193,-0.013588847,-0.020882612,-0.031105105,-0.0014980272,-0.011479265,0.032990262,-0.05076461,-0.032249667,-0.010054176,0.03696256,-0.011782237,-0.02522521,0.008230734,-0.03173349,-0.015204696,-0.034157265,0.0050074505,0.017381605,-0.037680715,-0.018716926,0.011411938,-0.0028529845,-0.016831767,0.009829752,0.019031119,0.008275619,-0.045849733,-0.030521603,-0.034381688,-0.014239674,0.009616549,0.0035122286,0.005975277,0.005181379,0.020153236,-0.0047661955,0.012421844,0.007344261,0.028075388,-0.021466114,-0.009465064,0.032855608,-0.02066941,-0.033775747,-0.019962477,0.00380959,0.013308317,-0.01848128,-0.021634432,0.0017897779,-0.011894449,-0.009970017,0.021567104,0.020209342,0.015754534,-0.048071526,0.02296975,-0.037748042,0.0048868232,-0.021264132,-0.003515034,-0.029197505,-0.04268536,0.010143945,0.0101551665,0.0127809215,-0.008421494,-0.030050315,-0.023609359,-0.0048643807,0.007686507,0.012242305,-0.0035795558,-0.021926181,0.00036784424,0.0007356885,0.05736266,0.004536161,-0.03191303,-0.014845618,0.03887016,0.0076360116,-0.012792143,-0.0033551322,0.008471989,0.0022372224,-0.011512929,-0.012186199,0.00028736735,0.010800384,0.016450247,-0.018245636,-0.008730076,0.0045221345,0.011782237,-0.037142098,-0.029130178,0.028703773,0.004561409,0.001586394,-0.035975095,-0.030140083,0.04183255,0.0013037606,0.0060538254,0.017785568,0.01991759,0.018492501,-0.017875336,0.00006044533,-0.039992277,0.008976943,0.006755149,-0.0048868232,0.018155865,-0.011512929,0.005790128,-0.022846319,0.013207327,0.013757165,-0.007097395,0.032047685,-0.022363808,-0.036042422,-0.03474077,0.0062277536,-0.048340835,-0.010312263,0.02829981,0.0038460589,-0.020321554,0.005142105,-0.010216882,0.03752362,0.028412024,-0.0040508453,0.0037731212,0.027581656,-0.017953886,-0.0074733044,0.012646267,-0.008146576,-0.023542032,0.0048840176,-0.016876651,0.06580099,-0.0019819406,0.011726131,-0.019659504,-0.044458307,0.018301742,-0.008993774,0.009403347,-0.012545277,-0.022509683,0.0068561397,0.01085649,-0.012433065,0.014969052,-0.0064633987,0.008657139,0.03543648,0.003125098,0.006923467,0.012612605,0.00028508806,-0.018548608,-0.017056191,0.028030504,0.005515209,-0.007927762,0.023945995,-0.035862885,0.010676951,-0.03417971,-0.015765755,-0.008135354,0.02257701,0.034897864,-0.028344696,0.014621195,0.010127113,-0.0036272458,0.0499118,0.02886087,0.0036609094,0.013701058,0.020321554,-0.009083544,0.024080647,0.026347326,-0.032810725,0.033124916,-0.0133307595,-0.019603398,-0.023070741,0.038645737,0.027267462,0.0029595857,0.020366438,-0.006895414,0.012646267,-0.020130793,-0.02991566,0.04306688,0.0082475655,-0.04941807,0.017033748,-0.003458928,0.013151221,-0.0004579643,0.012522834,-0.00481108,-0.010244936,-0.047981758,-0.01228719,-0.023676686,0.0108957635,-0.008140964,-0.00742842,0.022678,-0.018997455,0.015350572,-0.026526865,0.016977642,-0.004067677,-0.03961076,0.01800999,0.012534056,-0.010357147,0.032092568,-0.017213287,0.038353987,0.00043867793,-0.012466729,-0.029848333,0.00048531595,-0.008068027,-0.015934072,-0.035099845,0.03525694,0.016798103,0.03114999,-0.018571049,-0.010676951,0.016506353,0.018200751,0.018324183,-0.035571136,-0.02144367,0.014699743,-0.042214073,0.004474445,0.010632066,-0.02094994,-0.031082664,-0.023564475,-0.00089769426,-0.017875336,-0.00004900499,-0.023003414,-0.04313421,0.008601033,-0.008539316,0.0061099315,0.014890503,-0.021365123,-0.007013236,0.032631185,-0.0116363615,0.0017280615,-0.03763583,0.03543648,-0.028254926,0.04342596,-0.021297796,0.0046259305,-0.0071759433,-0.031396855,0.009739983,-0.009313578,-0.0016495131,0.0045389663,0.03983518,-0.01952485,0.02038888,-0.016079947,0.012702374,0.018986233,0.008466379,-0.003638467,0.0014854034,0.028973082,0.010604013,-0.012253527,0.02372157,0.0008443936,0.012747258,-0.024776362,-0.06862873,-0.012904354,-0.0059472243,-0.011064081,-0.03238432,0.017437711,0.0103459265,0.0019342506,-0.0038320322,-0.004466029,-0.012320854,-0.0038993594,-0.0027730337,-0.027312348,-0.022072056,-0.0036328563,0.009414569,0.015114927,-0.013364423,-0.029309716,0.043583054,0.0024953096,-0.0028417634,0.02285754,-0.02522521,-0.023138069,-0.0069683515,0.0320028,0.018189529,0.013757165,0.023833781,-0.025741382,0.00742842,-0.013420529,-0.022217933,-0.0065307254,-0.020074688,0.00097133324,0.015586216,-0.008342946,-0.014486541,0.030072758,0.01495783,-0.011108967,0.029399486,-0.015373014,-0.003057771,-0.022442356,0.0072601023,-0.0045894617,-0.01400403,-0.034808096,-0.028591562,-0.025920922,0.0018430785,0.008258787,-0.016607344,-0.012960461,0.029848333,-0.0025387916,0.0025429996,-0.009442621,0.031172432,-0.03144174,-0.027559213,0.033035148,0.0028080998,0.010660119,-0.004064872,0.011737352,-0.00007740859,0.037703156,-0.021510998,0.00026562632,0.008230734,-0.01457631,0.021309016,-0.02648198,-0.052829307,0.0046932576,-0.009610939,-0.025202766,0.025741382,-0.0063175233,0.023676686,-0.03781537,0.02219549,0.01836907,-0.005397387,0.031553954,-0.012332074,0.026504422,-0.021376343,0.013229769,0.023586916,0.0058911187,0.004836328,0.024417283,-0.005975277,0.027648984,-0.037927583,0.03505496,0.040912416,-0.00025598312,0.010660119,-0.012881912,0.0415408,-0.009122818,0.0006525816,0.010435696,0.0025864816,0.02142123,0.034224592,-0.038241774,-0.019872706,-0.017022528,-0.012870691,-0.031800818,0.003551503,-0.008219513,-0.02190374,-0.01447532,0.035167173,0.009706319,-0.005829402,0.00024581392,-0.035324268,0.05170719,0.007136669,0.008281229,0.009414569,-0.01076111,-0.021398786,0.020108351,-0.027761195,0.059023395,0.014587532,-0.014789512,-0.008174628,0.007198386,0.035750672,-0.014015252,0.049597606,0.017493816,0.0063175233,0.011748574,-0.00015262555,-0.010828436,-0.036715694,-0.0035486976,-0.005868676,-0.010115892,-0.00038888396,-0.03458367,0.013588847,-0.016214602,-0.028883312,-0.016326815,0.02904041,-0.008039974,0.022689221,0.01572087,0.010272988,-0.010884543,-0.008561759,0.012444287]},{"id":"class-Collection","type":"class","source":"main","text":"Class: Collection\nDescription: Extended Map with utility methods for key-value collections.\nSimilar to discord.js Collection.\nMethods: clone() -> Collection — Creates an identical shallow copy of this collection.; concat(collections: ReadonlyCollection[]) -> Collection — Combines this collection with others into a new collection.; every(fn: (value: V, key: K) => boolean) -> boolean — Tests whether all elements pass the test implemented by the provided function.; filter(fn: (value: V, key: K) => boolean) -> Collection — Creates a new collection with all elements that pass the test implemented by the provided function.; find(fn: (value: V, key: K) => boolean) -> V | undefined — Searches for a single item where the given function returns a truthy value.; findKey(fn: (value: V, key: K) => boolean) -> K | undefined — Returns the key of the first item where the given function returns a truthy value.; first() -> V | undefined — Obtains the first value(s) in this collection.; first(amount: number) -> V[]; first(amount: number) -> V | V[] | undefined; last() -> V | undefined — Obtains the last value(s) in this collection.; last(amount: number) -> V[]; last(amount: number) -> V | V[] | undefined; map(fn: (value: V, key: K) => T) -> T[] — Creates a new array with the results of calling the provided function on every element.; partition(fn: (value: V, key: K) => boolean) -> [Collection, Collection] — Partitions the collection into two collections: one that passes the predicate and one that fails.; random() -> V | undefined — Returns a random value from this collection.; random(amount: number) -> V[]; random(amount: number) -> V | V[] | undefined; reduce(fn: (accumulator: T, value: V, key: K) => T, initialValue: T) -> T — Applies a function against an accumulator and each element to reduce the collection to a single value.; some(fn: (value: V, key: K) => boolean) -> boolean — Tests whether at least one element passes the test implemented by the provided function.; sort(compareFn: (a: V, b: V, aKey: K, bKey: K) => number) -> this — Sorts the collection in place and returns it.; tap(fn: (collection: this) => void) -> this — Invokes the given function and returns this collection (for chaining).; toJSON() -> V[] — Returns an array of the values in this collection.; toString() -> string — Returns a string representation of the collection (array of values).","meta":{"url":"/docs/classes/Collection"},"embedding":[-0.025356648,-0.019071978,0.032912783,0.006805366,0.034704946,0.012169738,0.01977431,-0.020331334,-0.02306801,0.01724349,0.041655622,-0.03480182,0.050180495,0.015330237,0.034753382,0.0069082943,-0.051488288,-0.0043805004,0.04858208,0.05265077,-0.0002872149,-0.0389916,0.009305914,0.0002720784,-0.012157629,-0.008331125,-0.047734436,0.05265077,-0.024787517,-0.076239474,0.08553933,-0.0073805526,0.008573309,0.01903565,-0.010147504,0.03882207,0.061369386,-0.0048285406,-0.008197923,0.020428207,-0.027608959,-0.035334624,0.00990532,-0.0016635003,-0.00030821678,-0.02142116,0.0011178298,-0.03434167,-0.061369386,0.03313075,-0.024896499,0.023649253,-0.010880109,0.05851162,0.011770135,-0.035891645,-0.04812193,0.004162535,-0.01214552,-0.013925571,0.021396942,-0.014179864,-0.023479724,0.030951096,-0.01933838,0.029546428,-0.002281069,0.039693933,-0.0036721125,0.020173915,0.008113159,0.02383089,-0.06088502,-0.020173915,0.023164885,0.041582968,-0.0067084925,0.019265724,-0.030830003,0.010395742,-0.007186806,-0.0024036746,0.051003918,0.0053371266,-0.005866904,-0.041486092,-0.0596741,0.009790282,0.0027018636,-0.031290155,-0.015112272,-0.014179864,-0.048170365,0.036376014,0.006593455,-0.031580772,-0.00861569,-0.015693514,-0.036497105,0.044004805,0.072461404,-0.0088033825,-0.00039430556,0.027512085,0.043375127,0.011497678,-0.033905737,-0.019665329,-0.060061593,-0.0029531294,-0.06931302,-0.015838824,-0.002247769,-0.007792265,-0.009184822,-0.015136491,0.022813719,0.009984029,-0.05037424,-0.061950628,-0.02862613,-0.047952402,0.07289734,-0.020355552,0.00689013,-0.027463648,0.051149227,-0.036279142,-0.029788613,-0.00014067476,0.025695706,0.010970929,-0.020876247,-0.005506655,-0.0148579795,0.015669296,-0.053813253,0.043084506,-0.028359728,0.009838719,0.0077559375,-0.002889556,0.08224563,0.000827966,0.017630985,0.014022444,-0.034535415,0.046111804,-0.027173027,0.010868,0.011788298,0.009796336,0.013598623,0.004870923,-0.0011715643,-0.026349602,0.009548098,0.061708443,0.0052281437,0.0028063054,-0.00045447313,-0.0075985184,-0.030999532,-0.016214209,-0.02802067,-0.041316565,-0.031265933,-0.0071746963,-0.055266354,-0.014664232,0.019968059,-0.053425755,-0.025066027,0.012545124,-0.027003499,-0.010208049,-0.014870089,-0.0486063,-0.021227414,-0.006112115,0.011231276,0.024484787,-0.056913204,-0.031096406,-0.01604468,0.010970929,0.02114265,0.006623728,-0.02202662,-0.0059274496,-0.029037843,0.04664461,-0.010147504,0.040735323,0.050277367,-0.010371523,0.011104129,0.009578371,-0.0075743,-0.037368968,-0.0067690387,0.004577275,0.01574195,-0.02144538,-0.018393863,0.0148579795,-0.0025807717,0.0061423876,-0.022389896,-0.0699427,0.023818782,-0.008367452,-0.037223656,0.018757138,0.0064239264,-0.0145915765,-0.003575239,0.019423144,-0.0023734018,0.08069566,-0.023249649,0.0058245216,0.071202055,-0.007828593,-0.012054701,-0.018115351,0.023334414,-0.07619104,0.023612926,0.0041262074,0.0140951,-0.0070536043,-0.00982661,-0.008125268,-0.013961899,-0.04335091,-0.046983667,0.048969574,0.009760009,0.011770135,0.0025005483,-0.021530144,-0.010952764,0.0644209,0.010262541,0.019604782,-0.040129863,-0.033784647,-0.00735028,0.0123574305,0.07086299,-0.012236339,-0.02714881,-0.03284013,-0.010129339,0.0030817895,0.014506812,0.046596173,0.030539382,0.03702991,-0.04487667,-0.028141763,-0.015269691,-0.03870098,-0.05981941,0.01378026,0.046305552,-0.0064118174,0.03686038,0.016843887,0.08021129,0.050422676,0.04032361,-0.057736628,-0.02787536,-0.002350697,-0.008331125,0.010825618,0.02354027,-0.010486561,0.018054806,-0.01364706,0.029425338,-0.00501926,0.03465651,0.015003289,0.049986746,-0.010565271,-0.023419177,0.015875151,0.020416098,-0.0185755,0.013126365,-0.06267718,0.024085183,0.06538964,0.038773634,0.008888147,0.06800523,-0.029715959,0.027003499,-0.047516473,-0.002057049,0.030515164,0.04722585,0.009106113,-0.015996244,-0.04378684,-0.002738191,-0.015972024,0.042357955,0.030369854,-0.06805366,-0.010208049,-0.015402893,0.007768047,0.021554362,-0.02456955,0.047903966,0.01572984,-0.0057034297,-0.055217918,0.03191983,0.044319645,-0.041437656,0.0024854117,-0.036279142,-0.032791693,-0.01843019,0.024097294,0.028844096,-0.038458794,0.0031604993,-0.01379237,-0.0025262802,-0.035116658,0.020525081,0.001867843,0.0077317194,0.023964092,0.005303826,-0.0495266,-0.02743943,0.0410986,0.024024637,0.031508118,0.024496896,0.021481708,-0.048678953,-0.006121197,-0.016105225,0.0027487867,-0.060013156,0.022607863,0.0029561566,-0.005110079,-0.0054975734,-0.008633854,-0.007852811,0.021275852,0.0010625817,0.009699463,-0.010468396,-0.013295894,-0.018127462,0.03313075,-0.051052354,-0.008912366,-0.0062120156,-0.013974008,0.026276948,0.00944517,0.012175793,-0.05056799,-0.015463439,-0.00090667576,-0.013877135,0.04930863,0.041752495,0.031532336,0.010244377,0.011098075,-0.0051252157,-0.006508691,0.05623509,0.041365,-0.022813719,0.017304037,-0.007961794,0.02007704,0.034075268,0.02188131,-0.024557441,0.007241297,0.026034763,0.0029243699,-0.019084087,0.015245473,0.016480612,0.02429104,0.0401783,-0.024012528,-0.019326271,0.024920719,0.020864138,0.026301166,0.04107438,0.054927297,0.06630994,0.007089932,0.026616005,0.05008362,0.035964303,-0.022680517,0.049405504,0.00000494301,-0.0037538495,-0.0063209985,0.000027907905,-0.019677438,0.012284775,-0.000025519177,-0.06703649,-0.037514277,0.013235347,0.061563134,0.06446934,-0.035746336,-0.08302062,-0.011334204,-0.02683397,0.022995356,0.049986746,0.024351586,0.039887678,-0.030418292,0.022874264,0.0333245,-0.027657395,0.038894724,0.007846757,0.026083201,-0.032258887,0.041631404,-0.046257116,-0.0036478941,0.017861059,-0.035286188,-0.00078407023,0.00040565795,-0.011309986,0.04078376,-0.002483898,0.02683397,-0.050616425,-0.015632967,0.0016302001,-0.022087166,0.016093116,-0.06495371,-0.02008915,0.018345427,-0.04197046,-0.017291926,0.053086698,0.020779375,-0.014228301,0.0032210452,0.048460986,0.012581451,0.006974895,0.0050949426,0.04829146,0.0065571275,0.0046892846,-0.012333212,0.04870317,-0.013683387,0.034293234,0.0007659064,-0.0020827812,-0.039960336,-0.01846652,-0.014409939,-0.005839658,0.042067334,0.017267708,0.018805576,0.05550854,0.0068416935,-0.05923817,-0.003575239,-0.011067802,-0.01139475,-0.00615147,0.044150114,-0.020900466,-0.049986746,0.0042291353,-0.00995981,0.020137588,-0.06674587,0.014748996,0.020815702,-0.0022659327,0.043714184,0.02098523,-0.025501959,-0.00078255654,0.024242602,-0.027415212,0.0056035286,0.007307898,-0.021627018,-0.0008953234,-0.010268595,-0.018684484,0.012654106,0.020367661,-0.031871393,0.031701867,-0.029958142,-0.0061696335,-0.044586048,-0.00066865445,-0.0021978184,-0.0012646538,-0.0007500131,-0.015330237,0.015184927,-0.0022840963,-0.022208259,0.0010966387,0.011400805,0.0097176265,-0.04344778,-0.00015978458,-0.028916752,0.019447362,-0.015209146,0.0077317194,0.012496687,0.0366182,0.014773214,0.001483376,0.039040036,0.014034554,0.013126365,0.008948693,0.03313075,0.002885015,-0.012956836,0.025090247,-0.055217918,0.020597735,0.034995567,0.02697928,0.0056822384,0.012569342,-0.043496218,0.014627905,0.022559425,0.025017591,0.010462342,-0.014131428,0.010032466,0.0002563743,0.022002403,-0.000034719324,-0.0057851668,-0.011449241,-0.04318138,-0.0006906024,-0.031193279,-0.0048648682,-0.00915455,-0.012115247,-0.03116906,-0.016141554,0.017328255,-0.023467615,-0.014409939,-0.0053250175,0.023189103,-0.023625035,0.06393654,0.033518244,0.018260662,0.009190877,-0.01378026,0.023976201,0.03526197,-0.0028063054,0.017316146,0.010286759,-0.0074592624,0.019822748,0.025211338,-0.014773214,-0.036036957,0.020646174,0.03734475,-0.00058426854,-0.030539382,-0.051778905,0.00027983586,0.0062786164,-0.03584321,-0.0009952242,0.016153663,0.033227623,0.0084219435,0.011812517,-0.049429722,-0.008748892,0.012981054,-0.0023915656,-0.0059546954,-0.03281591,-0.03189561,-0.008210032,-0.035601027,-0.013925571,-0.013429094,0.048775826,0.0060576233,-0.008597527,-0.0091969315,-0.033348717,-0.030248763,-0.0058214944,0.007913358,0.009245369,0.011382641,0.009638917,0.017049743,-0.012103138,0.027851142,0.05860849,-0.0036902763,0.0010830159,0.03104797,0.036061175,-0.023358632,0.028262855,-0.010916437,-0.009275641,0.015330237,-0.046983667,-0.009130331,0.025017591,-0.032428417,-0.026858188,-0.02714881,0.019180961,-0.031435464,-0.00029289108,-0.007901248,-0.0088154925,0.013501749,0.0031877449,-0.007507699,-0.010492615,0.014482594,0.000055768505,-0.0035691843,-0.018393863,0.033978395,0.022692626,0.036400232,0.026858188,-0.024920719,0.015814606,0.026955063,0.001117073,-0.016759122,0.0007863407,-0.006314944,-0.008367452,0.023879327,-0.00621807,0.0045137014,-0.032888565,-0.009469388,0.011988101,-0.038119737,0.007925467,0.016020462,0.020440316,0.011818572,-0.018066915,0.015257582,0.017630985,0.008258469,-0.021953966,0.037853334,0.025235556,0.010904328,-0.003472311,-0.032040924,0.0030212435,0.026737098,-0.027366774,-0.016311083,-0.015342346,0.0033693828,-0.0027639233,0.002031317,0.014216192,-0.03550415,-0.03550415,-0.0017679421,-0.041171253,0.02323754,-0.005797276,0.007320007,-0.011733808,-0.0024521116,0.008821547,-0.012908399,0.013223238,0.017134508,-0.051488288,-0.02456955,-0.040396266,0.016420064,0.0003549507,0.017013416,-0.022317242,-0.0051464066,0.010129339,0.014979071,0.01574195,0.0018421109,0.0027639233,0.0034511199,0.018490737,0.0065147453,0.006690329,-0.0023749154,-0.02172389,-0.009923483,0.037829116,0.0033663556,-0.0069930586,-0.02218404,0.029812831,-0.015402893,-0.043617312,-0.007320007,-0.014361503,0.008464325,-0.02369769,0.04497354,0.008573309,-0.024339477,-0.019435253,-0.008839711,-0.014906416,0.022898482,-0.0075500812,0.045385253,-0.016214209,0.022523098,0.02188131,-0.013041601,-0.04344778,-0.02610742,-0.017328255,0.020403989,0.028311292,0.025526177,-0.026083201,0.015342346,0.03911269,0.01665014,-0.0055883923,-0.012242394,-0.03928222,0.02472697,0.00007133071,-0.0053583174,-0.0050707245,-0.016274754,0.02323754,-0.002933452,0.015463439,-0.0075500812,-0.015657187,-0.06330686,-0.015487657,-0.03179874,-0.012520905,-0.011576388,-0.048194587,0.011055693,-0.014942744,-0.086120576,0.019156743,0.028601913,-0.0023037738,0.018369645,-0.013743933,0.0046680938,0.009657081,-0.008028395,-0.025308212,-0.017800514,0.014276737,0.0022492826,-0.012411922,-0.008082886,-0.019907512,0.006956731,-0.012278721,-0.015959915,-0.014652123,0.0031211444,0.0366182,-0.03179874,0.034269016,-0.012908399,0.040202517,0.007392662,-0.023891436,0.0037417405,0.0039960337,-0.0099961385,-0.010692417,-0.0036478941,0.01979853,0.014264628,-0.018987214,0.00990532,-0.0046741483,0.020730937,-0.03281591,0.026301166,-0.015160709,-0.04511885,0.007913358,0.03775646,-0.0205493,-0.009790282,0.030394074,0.0035146931,0.006865912,-0.018163789,-0.025405085,-0.007870975,-0.012030482,0.058269434,0.03044251,-0.012060756,0.058463182,-0.011425023,0.028456602,0.012327158,0.03567368,0.029619085,-0.013852916,0.00674482,-0.035019785,-0.029037843,-0.0013637978,0.056089777,0.03986346,0.04436808,0.0023219376,-0.0028184145,0.026034763,-0.01709818,0.027681613,0.012908399,-0.02202662,-0.0072231335,-0.02413362,0.043472,-0.028844096,0.030999532,0.022862155,0.021651236,0.008306906,-0.037223656,0.0185755,-0.0101111755,-0.015911479,0.016226318,-0.015620858,0.021396942,-0.015197037,0.012193956,0.0035994574,-0.016831778,0.0016014407,0.03298544,0.0007061173,0.006926458,0.0140951,-0.0048921136,-0.024521114,-0.0227895,0.01692865,0.022414114,0.01708607,-0.01184279,0.014422048,0.025671488,-0.009802391,-0.0056035286,-0.021505926,-0.027608959,0.0020691582,0.059383478,0.026882406,-0.0044107735,-0.016081007,0.02037977,0.05066486,-0.0281902,-0.00089078245,-0.009535989,-0.0019465527,0.0066358373,0.010583434,-0.025211338,0.0052281437,-0.0103896875,-0.005991023,-0.00097478996,0.023431288,0.052263275,0.005004124,0.014107209,0.0071746963,0.023879327,0.028383946,-0.04138922,0.0024324341,0.031847175,-0.011449241,0.023467615,-0.002138786,0.0065995096,0.0009725195,-0.013961899,0.035310406,0.015075944,-0.0026413177,0.008876038,0.05604134,-0.021820765,0.014373612,-0.035189312,-0.015826715,-0.010995147,0.0012949267,0.0014720237,0.01470056,0.028674567,-0.050422676,0.04274545,0.003411765,-0.045506343,-0.0019071978,-0.024472678,0.026543349,0.031411245,0.0011609688,-0.016577484,0.05187578,-0.0077135554,0.04151031,0.0356979,0.014567358,0.038434576,0.020864138,0.029449556,0.028359728,-0.0035722118,-0.034075268,0.030757349,0.009620753,-0.047952402,-0.0389916,-0.013610732,0.0014909443,0.016577484,0.015536094,-0.016238427,0.007307898,-0.041001726,-0.02743943,-0.024182057,-0.004937523,0.011679316,-0.010759017,0.029933924,0.036957256,-0.022523098,-0.0281902,-0.00509797,0.047419596,-0.042333737,0.032476854,0.0069204033,0.067181796,-0.0012200011,-0.010964873,0.0014432644,-0.011691425,0.030926878,0.016068898,-0.021990294,0.01753411,0.0027230547,-0.0029818886,-0.020730937,-0.015850933,-0.039693933,-0.009699463,-0.026761316,-0.0006667624,0.032888565,0.00207824,-0.03506822,-0.0065147453,-0.024387913,0.020924684,0.019762201,-0.010692417,0.041897807,-0.018212225,0.0073805526,0.007828593,0.013138474,-0.009215095,0.0073805526,-0.00008164244,0.02473908,0.024400022,-0.038652543,-0.018648157,0.0049314685,0.027948016,-0.004995042,0.026301166,-0.020658283,0.015669296,0.0067872023,0.022353569,0.013574405,-0.042551704,-0.014349393,0.027245684,-0.020186024,0.043738402,0.0020222352,0.01259356,-0.01843019,-0.020561408,-0.019980168,0.010105121,-0.012557233,0.025913673,0.0038537504,0.0075440267,-0.03497135,0.0085369805,-0.0000050908275,0.03480182,-0.015754059,-0.0044925106,-0.041631404,-0.018321209,-0.0162021,-0.007967848,-0.020222351,-0.024993373,-0.015923588,0.0029364792,0.008306906,-0.014216192,0.002765437,-0.012520905,0.009348297,-0.013865026,-0.002639804,0.023637144,-0.0302972,0.018188007,0.002273501,-0.013501749,0.00002363894,-0.027318338,-0.010323087,0.009499662,-0.041025944,0.016093116,-0.015475548,0.015184927,0.022523098,-0.010583434,-0.005067697,-0.015536094,-0.005016233,-0.0059456136,-0.0026806726,-0.01214552,0.021336397,0.0059698317,-0.02460588,0.02473908,-0.0076348456,-0.053813253,-0.0044047185,0.00966919,-0.011364477,-0.029183153,0.02802067,-0.004304818,-0.029425338,0.012460359,0.048921138,-0.00749559,-0.020416098,-0.025211338,-0.026664441,-0.0293769,0.026616005,-0.013501749,0.001160212,0.020198133,-0.057833504,-0.00054491364,-0.00044009346,-0.025719924,0.0247633,-0.038846288,-0.016734904,0.007792265,0.024460569,-0.0074108257,0.007828593,0.012084974,0.0030696802,0.002872906,0.046257116,0.018200116,-0.015536094,-0.009178768,0.022874264,-0.01799426,-0.049114883,-0.008476434,0.009360406,-0.02593789,-0.016226318,-0.005706457,-0.008300851,-0.0008120727,-0.034608074,0.013283784,-0.02322543,-0.026858188,0.017643094,-0.025259776,0.02369769,-0.0075319177,0.031314373,-0.002583799,0.011140457,-0.05158516,0.025841016,-0.0062120156,0.0034420379,-0.0028880425,0.0012903858,0.024048856,-0.021239523,-0.012557233,-0.015596639,-0.0030545439,0.013041601,-0.022692626,-0.0038719142,-0.027851142,-0.0216028,-0.056331962,-0.0025641215,0.0019026569,0.020040713,-0.0011534005,0.015051726,-0.033687774,0.01724349,-0.0037508223,-0.04182515,-0.008222141,-0.004592411,-0.0011420482,0.015608749,-0.01919307,0.00040868524,0.05715539,0.014216192,-0.01753411,-0.018212225,0.039693933,-0.013513858,-0.018502846,0.03102375,-0.027366774,-0.014022444,-0.022244586,0.0027291093,0.022426223,-0.02430315,0.034147922,-0.01146135,0.020767264,0.011497678,0.02444846,-0.019144634,0.0006353542,-0.002010126,0.031193279,0.04124391,-0.00982661,-0.015160709,0.025719924,-0.019616893,-0.0038265048,-0.007834648,-0.01950791,-0.009548098,0.04182515,-0.0031453627,-0.004831568,0.061224077,0.016238427,-0.009378569,-0.02579258,-0.025017591,-0.01243614,-0.00042647062,-0.030369854,0.020621955,0.02115476,-0.010595543,0.0053250175,-0.016795449,0.0024733027,0.027681613,0.027003499,0.008252415,-0.015051726,0.034559634,-0.0056035286,-0.0040868525,0.004822486,0.0041110707,-0.0054794094,-0.00370844,0.003747795,-0.016734904,-0.005709484,0.015197037,0.02625273,0.0070293862,-0.010080903,0.02487228,-0.006081842,0.0013660683,-0.0074592624,0.015027508,0.013320112,-0.017461454,-0.027948016,0.0101111755,-0.013283784,0.012424031,0.014930634,-0.02234146,-0.01783684,-0.02400042,0.017352473,-0.025259776,0.04322982,0.0075924634,0.016432174,0.021215305,0.010934601,-0.002040399,-0.037126783,0.021069994,0.006714547,-0.060497526,-0.03237998,-0.031314373,-0.018369645,0.009039512,-0.004559111,0.0023098285,-0.0020434263,0.034680728,0.0046741483,-0.016286863,0.007586409,-0.010371523,-0.03133859,-0.018926667,-0.00840378,-0.00058578217,-0.030926878,0.001453103,-0.009372515,0.0151243815,0.035455715,-0.006436036,-0.032016706,0.0040293336,-0.005409782,0.009184822,-0.01289629,-0.017073961,0.0076530096,-0.03521353,0.016638031,0.0046680938,0.011649043,-0.00054491364,-0.03342137,-0.018115351,0.001660473,-0.010553162,0.0057397573,0.011128347,0.009281696,0.037102565,0.012545124,0.007229188,-0.01933838,0.037247878,-0.021675454,-0.0028365783,0.033469807,0.024424242,-0.00577003,-0.010964873,0.0006731954,-0.0031544445,-0.000010459551,-0.016880214,0.041316565,-0.019314162,0.01993173,0.017170835,0.038725197,0.0184423,-0.01784895,0.0004976121,0.044949323,-0.006847748,-0.006914349,-0.0020676446,0.025308212,-0.0017845922,0.025090247,0.024097294,-0.05386169,0.0045833294,0.033518244,-0.024327368,-0.039960336,0.02202662,-0.00412318,0.0024218385,0.024993373,0.016904432,0.021191087,-0.00059183675,-0.004780104,0.00936646,0.051924217,0.0005959993,0.011776189,-0.031241717,-0.015342346,0.000858239,0.01740091,-0.00055475236,-0.0008877552,0.0028320374,0.025405085,-0.008524871,-0.016456392,-0.035625245,0.03850723,-0.012375595,-0.008863929,-0.010619761,-0.009408843,-0.006051569,-0.019871185,0.014010335,-0.027802706,0.0043229815,0.008912366,0.022414114,-0.022087166,0.015632967,-0.01041996,-0.0010936115,0.0059274496,-0.029449556,0.027681613,-0.021554362,-0.012847853,-0.00040490113,0.023794563,0.028650349,0.008791273,-0.002376429,-0.05129454,0.000240481,-0.03613383,-0.0075924634,-0.0030030797,0.025889453,0.015511875,0.02966752,0.021844983,-0.011582443,0.005046506,0.0031665538,-0.0011412913,0.005116134,0.0020827812,0.015766168,0.0038749415,0.017824732,-0.004135289,0.016589593,-0.003087844,-0.007386607,0.021130541,-0.030660475,-0.03521353,0.030006578,0.015632967,0.0053250175,0.012333212,-0.015705623,0.024896499,-0.032888565,0.027173027,0.005818467,-0.02114265,0.0031847176,0.043472,-0.023588708,0.02833551,-0.055702284,0.023673471,-0.012242394,-0.01650483,0.023394959,-0.006314944,0.014422048,0.008603581,-0.035358842,0.017182944,-0.045361035,-0.01740091,0.007186806,0.0106318705,-0.002411243,0.0389916,-0.0016544184,0.020331334,0.044222772,-0.02460588,-0.03325184,0.024400022,-0.0036509214,-0.000019062518,0.019846966,0.013610732,0.012266612,0.00183757,0.0058638765,0.033954177,0.037708025,-0.015281801,0.016068898,0.0029001515,0.018999323,0.015608749,-0.03102375,0.011527951,0.027948016,-0.013029491,0.033590898,0.02775427,0.012175793,-0.0020721855,0.013114255,0.021009449,0.006569237,0.023891436,-0.015536094,0.0140708815,-0.0061393604,-0.009760009,-0.022983247,-0.009535989,0.004831568,0.0281902,-0.027197246,0.022523098,-0.00915455,-0.02023446,-0.010601598,-0.0020676446,-0.047177415,-0.0052584168,0.023285978,-0.010002193,0.02668866,0.0045046196,-0.01753411,0.005800303,0.022898482,-0.025598833,-0.0067690387]},{"id":"class-DMChannel","type":"class","source":"main","text":"Class: DMChannel\nDescription: DM channel (direct message between bot and a user).\nProperties: lastMessageId: string | null, messages: MessageManager, nicks: Record, ownerId: string | null, recipients: User[]\nMethods: addRecipient(userId: string) -> Promise — Add a recipient to this Group DM. Requires Group DM (type GroupDM).\nPUT /channels/{id}/recipients/{userId}.; createMessageCollector(options: MessageCollectorOptions) -> MessageCollector — Create a message collector for this DM channel.; fetchMessage(messageId: string) -> Promise — Fetch a message by ID from this DM channel.; fetchPinnedMessages() -> Promise — Fetch pinned messages in this DM channel.; removeRecipient(userId: string, options: { silent?: boolean; }) -> Promise — Remove a recipient from this Group DM. Requires Group DM (type GroupDM).\nDELETE /channels/{id}/recipients/{userId}.; send(options: MessageSendOptions) -> Promise — Send a message to this DM channel.","meta":{"url":"/docs/classes/DMChannel"},"embedding":[0.022557158,-0.0063871914,0.00020676485,0.032645643,0.039917216,0.038213965,0.013920802,0.01746924,-0.03736234,0.0075936606,0.0003592795,-0.023561638,0.007943045,0.03362829,0.038781714,-0.0040179254,-0.03362829,0.019281674,0.07092512,0.015209158,-0.0028414812,0.07188593,0.031138921,0.021279719,-0.023736332,0.034654606,-0.0032372687,0.025177544,-0.02899894,-0.017960563,0.039895378,-0.009553491,-0.010148537,-0.0051315897,0.009100383,0.044393707,-0.00023474293,0.061972134,-0.035593577,0.014586817,-0.016290067,0.002906991,-0.02222961,-0.0041926177,-0.01570048,0.022688176,-0.020526359,-0.017753117,0.050617125,-0.010306852,-0.054460358,0.0037886417,0.033409923,0.0696586,0.008024933,-0.034217875,0.007206062,0.0015094517,0.009171352,-0.005748472,0.0094825225,-0.03360645,-0.039021917,-0.026706101,0.013626008,-0.0067693307,-0.03229626,0.058609303,0.009111301,0.027645074,0.032318097,-0.0036003015,-0.012217551,-0.03177218,-0.037711725,0.021061353,-0.00008444604,0.014040902,-0.009657214,-0.02380184,-0.013746109,0.019019635,-0.06677617,0.0062889266,-0.05079182,-0.032514624,-0.012763464,-0.027077323,0.020002281,-0.028103642,0.014008148,-0.038541514,-0.036685407,0.01158429,0.026509574,-0.036685407,-0.016486596,-0.009034873,-0.026880795,0.046511855,0.012479589,-0.06415579,-0.060661938,0.010323229,0.013178359,-0.046162467,-0.044415545,-0.016475677,-0.04203536,0.01613721,0.007686466,-0.004225373,0.0027746067,0.007986719,0.0003957875,-0.009957467,0.047079604,-0.021072272,0.0046566445,0.026138352,-0.07494304,0.012523262,0.05336853,0.006294386,-0.028671391,-0.02836568,0.0039879,-0.03869437,-0.022753686,0.035506234,0.03443624,-0.0027241097,-0.0036876476,0.0020908497,0.017873216,0.009231402,-0.008969364,0.017742198,-0.043978814,-0.016388332,0.013582335,-0.04279964,0.014106412,-0.0048859282,0.035309702,0.0053172004,-0.06725658,-0.014641408,0.0007608673,-0.02740487,-0.008106819,0.017905973,-0.007402591,0.038082946,-0.012872647,-0.008074065,-0.006196121,0.036292348,-0.011660718,-0.06175377,0.027252017,-0.028038131,-0.006703821,-0.005186181,-0.01868117,-0.014128248,0.030549334,-0.04323637,-0.034720115,0.03413053,0.018943207,0.013494989,-0.07376387,0.022382464,-0.036379695,-0.028627718,0.006856677,-0.056250956,-0.026946304,-0.015089056,0.04729797,0.015536706,0.010083027,-0.083459295,-0.03576827,-0.0047903936,-0.008745539,-0.014008148,0.029544855,-0.00044048417,-0.004438279,0.052014664,0.005115212,-0.013440398,-0.0040752464,-0.010678073,0.04729797,0.018255357,0.030636681,-0.07887362,0.028474864,0.011660718,0.026160188,-0.029457508,-0.0094825225,-0.001950277,0.013189277,0.017447405,-0.025985496,-0.05437301,0.022076754,-0.017425569,0.035440724,-0.029610364,-0.057386458,-0.011442353,-0.057211764,0.0039087427,-0.06467986,0.014575898,-0.008554469,0.024129389,0.052407723,-0.0116498,-0.0018015155,-0.00823238,0.0019680192,-0.040615987,0.0031553817,0.03653255,0.015493033,-0.003411961,-0.034589097,-0.07328346,0.0020144219,-0.008701866,-0.018812189,0.03528787,0.029195469,-0.030178113,-0.0042526685,-0.016846899,0.034654606,0.06629577,0.011103886,0.0033983132,0.012414079,-0.035528067,-0.007320704,0.04142394,0.092849016,0.032383606,-0.02184747,-0.0040343027,0.008527174,0.005374521,-0.008374318,0.040244766,0.022131344,0.024587957,0.004083435,0.008892936,-0.009575328,0.017065264,-0.014281104,-0.0024784487,0.024129389,0.00070149923,0.022644503,0.024915505,0.02893343,-0.037820905,0.04293066,0.013222031,-0.0276014,0.014139167,-0.00016462713,-0.00084684876,0.015372932,-0.020297075,-0.001104793,0.021694614,0.013429479,0.009728184,-0.0069713187,0.029260978,0.035506234,0.0020744724,-0.018812189,0.028977104,-0.019325348,0.00031253565,0.011131182,-0.057342783,0.03838866,-0.013462233,0.04502697,-0.015067221,0.06957125,0.051883645,-0.017141692,0.02740487,0.021039518,-0.06568435,0.018910453,0.022360628,0.016388332,-0.0075499876,0.034283385,-0.07044471,0.03609582,0.0264659,-0.050573453,0.019030554,-0.03489481,0.020559113,0.0050578914,-0.01969657,0.020548195,0.009744561,-0.004481952,0.0012562841,-0.058041554,-0.0388909,-0.044677585,-0.02786344,-0.0062452536,-0.028671391,0.037755396,0.015984356,0.014423042,-0.042210054,0.0036876476,0.04424085,0.02266634,-0.013473152,-0.03760254,-0.0036821885,-0.0019543713,0.03354094,0.04686124,0.016246393,0.012108368,0.013353051,-0.03603031,0.0041352967,-0.032536462,0.024806323,-0.01190092,0.011758983,-0.011191232,0.030178113,-0.014324778,-0.036794588,-0.02343062,0.026815284,0.009793693,-0.023037562,-0.0034665526,0.017884135,-0.03343176,0.0062288763,-0.04463391,0.024587957,0.0010979691,-0.0148379365,-0.080795236,0.00021802432,-0.0037395095,-0.03646704,0.012119286,-0.0638064,-0.020297075,0.024981014,0.021814715,0.0074135093,0.015984356,-0.0113222515,-0.0014111871,0.051184878,0.021694614,0.011529699,-0.0017987859,-0.0028223742,0.017840462,0.01576599,-0.011758983,-0.008527174,0.008745539,0.04007007,0.03159749,-0.015962519,-0.013243868,0.011376843,-0.0036357858,0.036052145,0.01468508,0.004705777,0.006736576,0.011365925,0.027317526,0.0068457588,-0.013265705,0.035178684,-0.00024378463,0.019969527,0.00017895736,0.0058085225,-0.008456204,-0.01215204,0.03520052,0.03046199,0.020166054,0.035091337,0.04249393,-0.033475433,-0.027754257,0.001519005,0.025439583,-0.002235517,-0.02899894,-0.032864008,0.0037504276,-0.010983786,-0.008909313,0.018910453,0.046773892,0.014619571,-0.018648414,-0.053412203,-0.08127564,-0.00481223,0.0730651,-0.013265705,0.02026432,-0.049656317,-0.0071132565,-0.0018369999,-0.07040104,0.034654606,0.009515277,0.0027200154,-0.03183769,0.018910453,0.00019089923,0.0054400307,0.018146174,-0.011344088,0.012861729,-0.02032983,-0.02799446,-0.05476607,0.004970545,0.035222355,-0.08542459,-0.057692166,0.0059886742,0.06930921,-0.040310275,-0.014554061,-0.0096845105,-0.045157988,0.037384175,0.024806323,-0.006032347,0.0008700501,-0.035921127,0.009258698,-0.0024961908,0.030636681,0.010568891,0.04103088,0.027885275,0.05039876,-0.0049787336,-0.04489595,0.0045228954,-0.01728363,0.017567506,0.00085981423,0.03432706,0.022950215,-0.0014603194,0.007402591,0.019216165,0.06411211,0.012272142,-0.019860344,0.0021072272,0.006338059,-0.011038377,0.0072661126,-0.023954697,-0.007997637,0.0055055404,-0.03262381,0.016060783,-0.041554958,0.033759307,-0.04007007,0.042886987,-0.017567506,0.004768557,0.015089056,0.06053092,-0.00016360353,-0.026880795,-0.012839892,-0.013571417,0.014466715,0.011682555,0.016956082,-0.03489481,-0.006496374,0.06310763,-0.028038131,-0.063282326,-0.022819197,-0.043716777,0.027535891,0.03932763,0.0031226268,0.013647844,0.005229854,-0.01811342,0.018844943,-0.021388901,-0.0181025,0.01633374,0.053630568,-0.0054482194,0.012676118,0.02463163,0.034589097,0.0067857085,-0.023583476,-0.04290882,-0.008521714,0.015110893,-0.015514869,0.04646818,-0.002159089,-0.018823108,-0.009324207,0.01861566,0.00009195235,-0.020886661,0.06297661,0.026051005,0.004610242,-0.015351095,-0.03343176,0.014423042,-0.04843347,0.005715717,0.018331785,-0.014226513,-0.025352236,0.038017437,-0.03236177,-0.026160188,-0.0017469241,0.007162389,0.01456498,-0.0445684,0.007566365,0.014979874,0.015252831,-0.011824492,0.008205084,-0.0005319247,-0.005819441,-0.01456498,-0.046817567,0.044350035,-0.000086493215,-0.036860097,0.011944594,-0.02799446,-0.017108938,-0.00039715227,-0.03882539,0.029217305,-0.00557378,0.0010693086,0.028693229,-0.021792877,-0.010295934,-0.017654851,0.033016864,0.028889757,-0.036794588,0.030047094,-0.005511,-0.026596919,0.0067911674,-0.01133317,0.00085571985,-0.018506477,-0.007877536,0.04247209,0.026815284,-0.052276704,0.0050224066,0.056818705,0.030636681,0.02026432,-0.032885846,-0.03469828,0.020471767,0.02279736,-0.0006765919,-0.009067628,-0.056512993,0.0010345066,0.0084998775,0.009362421,0.012992748,0.036183164,0.034196038,-0.023692658,-0.003551169,0.0030816833,0.019412694,-0.0050196773,0.029981585,0.02038442,-0.035615414,0.025461419,-0.008680029,-0.008505337,-0.019467285,0.02912996,0.008920231,0.0018233521,-0.028715065,-0.00607602,0.00968997,-0.020286156,0.0020062332,0.027230179,-0.011376843,0.010295934,-0.017949644,-0.022557158,-0.023015724,0.0039305794,-0.03183769,-0.057124417,-0.01158429,-0.035069503,-0.0057648495,0.0159516,-0.01588609,0.007462641,-0.050922837,-0.02007871,0.042450257,-0.022491647,0.014728754,-0.008270593,0.01716353,-0.002805997,0.038541514,0.027754257,0.001212611,-0.04148945,0.003805019,-0.024085715,0.008265135,-0.0016896032,-0.0066000978,0.0055382955,0.0109564895,0.033846654,-0.03306054,0.004724884,-0.006654689,0.009220484,-0.004547462,-0.014794263,-0.004784934,-0.040222928,-0.023911024,0.036881935,-0.03456726,0.02006779,0.0077083027,0.019292593,-0.007222439,-0.012643363,-0.019270757,0.004547462,-0.027339362,0.026924467,-0.008117738,0.033977672,0.026203861,0.01006665,-0.02469714,-0.013811619,-0.038454168,-0.03723132,0.022906542,0.027950786,-0.004105272,-0.022447975,-0.0056611258,0.018157093,-0.0041380264,-0.038410492,0.013287541,-0.019412694,0.002677707,0.008527174,-0.0065946383,-0.013265705,0.0062288763,0.017512914,-0.017796788,0.03546256,0.011617045,-0.04242842,0.0071460116,-0.005349955,0.0031253563,-0.0076318746,0.027055487,-0.0038650695,0.0043099895,0.0051452373,-0.010410576,0.025941823,-0.020974007,-0.030178113,-0.010907358,0.0017128044,0.026706101,-0.0021058624,-0.009253238,0.017327303,0.028715065,0.020111464,-0.071711235,-0.022557158,-0.01728363,0.009018496,-0.015864255,0.0033409924,0.004443738,-0.055246476,0.0051452373,-0.0552028,0.03653255,-0.012490507,0.014586817,0.026291208,-0.03336625,-0.014597734,0.014772427,-0.03233993,0.046773892,-0.008259675,0.0011041106,-0.019205246,-0.04325821,-0.02823466,-0.0019680192,-0.008816508,0.0002731275,-0.010961949,0.02843119,-0.00462116,0.002482543,0.015110893,-0.028125478,-0.032252587,-0.031881366,0.0019393587,-0.024151227,0.0019843965,0.0013975393,-0.011726228,-0.00848896,0.015733235,0.007085961,-0.029304652,-0.050573453,-0.02633488,-0.016825063,-0.040004563,0.0026135622,0.00013767263,0.03179402,-0.04895755,-0.007009533,0.02740487,-0.07489937,0.0054591377,0.031007903,-0.012796219,-0.007571824,-0.033912163,0.0284967,-0.01399723,-0.0123048965,-0.062059477,-0.04550737,-0.01411733,0.017185366,-0.05799788,0.032885846,0.0032836713,-0.04799674,-0.014401206,0.02843119,-0.021607267,-0.010170374,-0.0042199134,-0.055814225,0.01741465,0.015143648,-0.018626578,0.0031007903,0.016388332,0.024522446,-0.028081805,0.036576223,0.02044993,-0.012894483,0.025046524,-0.010088487,0.03893457,0.027011814,0.0009505724,-0.03520052,-0.033737473,0.031575654,0.010661696,-0.04943795,0.0017223579,-0.0018369999,-0.009313289,-0.01050884,0.02709916,-0.026509574,0.0049869223,-0.0020267048,-0.009029414,-0.0065564243,0.005590157,0.011638882,-0.003641245,-0.043782286,0.054285668,0.024151227,-0.023780005,0.028103642,0.024544284,0.005628371,0.017971482,-0.0027800659,-0.023408784,-0.014630489,-0.037733562,0.0059450013,0.046555527,-0.0017974211,0.027252017,-0.0059613786,0.014947119,-0.0084835,0.016180884,-0.0062725493,0.020471767,0.002969771,0.008756457,-0.01734914,0.020460848,-0.028409353,0.012905402,-0.017108938,0.002482543,-0.023954697,0.027492218,-0.0036330563,0.0025876313,0.015263749,-0.03627051,-0.00083593046,-0.016552106,0.009586246,0.0018738491,-0.021236045,-0.026400391,0.031619325,-0.030330969,0.021388901,0.03980803,-0.032754827,-0.0137788635,-0.0021099567,-0.011071132,-0.00004930284,0.016442923,-0.0006144942,0.03153198,0.006862136,0.0116498,0.0029916074,0.017447405,-0.020875743,-0.014794263,0.0095207365,0.026793448,-0.021432575,-0.026378553,-0.024194898,0.0066328524,0.04076884,0.024151227,-0.0066765253,0.039349467,0.0036330563,0.0077083027,-0.021115946,-0.0143466145,-0.04812776,0.026924467,0.0042199134,0.023823677,-0.028278334,0.012206632,0.025417745,0.02323409,-0.023889188,0.011802656,-0.0056229117,0.02266634,-0.011529699,0.027492218,-0.0054482194,-0.009766397,-0.016442923,0.0029861485,-0.0058030635,-0.037689887,0.032536462,-0.0002727863,0.056076262,0.01544936,-0.015241913,0.018419132,-0.004468304,0.014401206,-0.010072109,0.008439827,0.019314429,0.04312719,0.04046313,-0.0026927197,-0.01418284,-0.00026084442,-0.01716353,-0.015776908,-0.035680924,0.013505907,0.008374318,0.012959993,-0.0018834026,0.044939622,-0.0053390367,0.043454736,0.028955268,0.024675302,-0.021050435,0.012785301,0.011846329,0.020144219,-0.0061251526,-0.02589815,-0.0019298053,0.04096537,-0.0051234006,0.025221217,-0.027928948,-0.01919433,0.022022162,0.032318097,0.031684835,0.020810233,0.024522446,-0.01215204,-0.0029779596,0.020417176,0.022120425,-0.015875172,0.057692166,0.020439012,0.0060432656,0.021552676,-0.0146741625,-0.009215024,0.0024170333,0.025374072,-0.027252017,0.04349841,0.013211113,0.00075336103,-0.0016213639,-0.012785301,0.016814144,0.0043946058,-0.029872403,-0.004653915,0.021094108,-0.0050497022,-0.036619898,-0.004735802,0.0036985658,0.046992257,-0.04406616,0.00696586,-0.00084684876,-0.00032703648,-0.03836682,-0.005672044,0.030593008,0.011638882,-0.0060705612,-0.024020206,0.018670252,-0.035440724,0.00060084637,0.03838866,-0.015176403,0.00968997,-0.006059643,0.012457753,-0.028016295,-0.057080746,-0.009515277,-0.015427523,0.01760026,0.027710583,-0.00893115,0.004427361,-0.0063326,0.019554632,-0.008794671,0.022360628,0.017709443,-0.016224558,-0.01133317,-0.01133317,0.013418561,-0.009122219,0.011540617,0.016038947,0.0010031166,-0.007238817,-0.0030816833,-0.021694614,0.02323409,-0.00045276724,-0.0070368284,0.013811619,0.03323523,0.021268802,-0.017381895,0.02539591,-0.028627718,-0.04223189,-0.015427523,-0.009389717,-0.018593824,0.036379695,-0.032449115,-0.044153508,-0.040856186,0.021738287,-0.010716287,-0.012021021,0.005046973,-0.0069058095,0.014728754,-0.050355088,0.02229512,0.04369494,-0.031663,-0.013374887,0.03633602,-0.03233993,-0.0048831985,-0.025308562,0.011278579,-0.022054916,-0.04400065,-0.015383851,-0.029260978,-0.016825063,0.042646784,-0.013353051,0.015656807,-0.0015940682,0.020428093,-0.0066819848,-0.032121565,-0.04065966,0.02222961,-0.022131344,-0.016988836,0.024828158,-0.04756001,-0.035637252,-0.0029861485,0.023212254,-0.027077323,-0.026378553,0.009591705,0.012479589,-0.020460848,-0.008243298,0.0552028,0.017338222,0.03919661,-0.011507862,0.022491647,-0.04812776,-0.036052145,-0.00040568216,-0.029217305,-0.010159455,-0.06402477,0.008286972,0.00696586,-0.0061306115,0.033584617,-0.0029479344,-0.008401613,0.06533496,0.012621527,0.0016541188,0.022054916,-0.0035757353,-0.0030216328,-0.03886906,0.04489595,0.0151654845,-0.024653466,0.04843347,0.031422798,0.028955268,-0.01968565,0.008538092,-0.018451886,-0.02399837,0.006103316,0.026837122,0.025810804,0.029981585,-0.019150656,-0.015711399,-0.011365925,-0.0016582131,0.008281512,-0.04400065,0.024893668,0.0135277435,-0.013833455,0.011311334,-0.014029984,-0.0325583,0.004894117,-0.029151795,0.021792877,-0.008319726,-0.00874008,0.020722887,0.000058941627,-0.009034873,-0.05223303,-0.006894891,-0.0069276458,-0.0035757353,0.016541187,-0.02563611,0.026291208,-0.01697792,0.012392242,-0.016486596,0.0044300905,-0.0016322822,-0.046948586,-0.045813084,-0.0056884214,-0.016453842,0.015755072,0.008456204,0.037340503,-0.02912996,-0.008860181,0.015536706,0.012075613,0.052451394,-0.0014016336,-0.00033539577,0.0029779596,0.017185366,-0.005325389,-0.01234857,0.02139982,-0.009695428,0.0020594597,-0.0018056098,0.02786344,0.033453595,-0.040179253,0.0075499876,0.014608652,-0.026989978,-0.008478041,-0.02083207,-0.012992748,-0.032405443,0.018135255,0.02583264,0.007762894,0.0039360384,0.010175833,0.0075063147,-0.035156846,0.03310421,0.007882995,-0.017272713,-0.0016554835,-0.008068605,0.019849425,0.035506234,0.008882017,0.007326163,0.0018888616,0.03133545,-0.015460278,-0.008112279,0.00033710175,-0.007364377,-0.007140552,0.027492218,0.031379122,-0.0079703415,-0.013636926,0.007184225,0.017567506,0.03760254,-0.041838832,-0.027819766,-0.017829545,-0.01741465,-0.016748635,0.015274667,-0.0075936606,-0.04756001,0.00033795476,0.006938564,-0.01702159,-0.0012863093,0.0070368284,0.010224965,0.0330387,0.029588526,-0.010972867,-0.010159455,0.0066765253,-0.00033113084,0.046992257,0.020111464,-0.007921209,0.019904016,0.022251446,-0.020657377,-0.012588772,0.013058257,-0.010421494,-0.035855617,0.005753931,0.017960563,-0.046206143,0.023692658,-0.008647274,0.005792145,0.0136150895,-0.008303349,-0.0026490467,-0.026247535,0.028693229,0.0049678152,-0.03183769,-0.0053335777,0.00070695835,-0.0045965943,0.01760026,-0.022164099,0.017545668,-0.0005537613,0.007861159,-0.015755072,0.0012248941,-0.029217305,-0.01988218,-0.017895054,-0.0037258614,0.032034222,0.0014343885,-0.018266276,-0.013178359,0.012643363,-0.008259675,0.04369494,-0.01323295,-0.020198809,-0.020056872,0.004506518,-0.0032427278,-0.03830131,-0.053455878,-0.015372932,-0.011453271,-0.02696814,0.0036275971,0.017556587,-0.04096537,0.004198077,0.0026313043,-0.021345228,0.011180314,0.004348203,0.0021126864,0.010983786,-0.005216206,-0.010394199,0.003824126,-0.026989978,0.013789782,0.0017373706,0.011245823,0.023736332,0.016202722,-0.010077569,-0.03982987,0.03533154,-0.0049623563,0.009231402,-0.014947119,-0.010634401,-0.0016036218,-0.011726228,-0.018539231,0.035986636,0.02406388,0.008712784,-0.0076646293,0.0041352967,0.020733805,-0.003128086,-0.009793693,0.023452455,-0.03233993,-0.032318097,0.010989244,-0.06769331,-0.030090768,0.008920231,-0.008314267,-0.007981259,0.01956555,-0.011617045,0.0077847303,0.015940683,-0.01848464,0.016104456,-0.0026040087,-0.02766691,-0.02386735,-0.010557973,-0.020755641,0.010568891,-0.004468304,-0.022164099,-0.021410739,-0.002204127,0.024435101,0.033191558,-0.034916647,-0.0036548928,-0.022622667,0.0029233682,0.025723457,0.019008718,0.029785056,-0.017960563,0.037777234,-0.021301556,0.0036303266,-0.008816508,0.0325583,0.03404318,-0.012217551,0.009558951,0.022469811,-0.013145604,0.023517966,0.01228306,-0.026422227,-0.015252831,-0.008226921,0.022196854,-0.04007007,-0.029239142,0.024391428,-0.017545668,0.0011498309,-0.007124175,-0.00015464713,-0.025723457,0.01488161,-0.0065455064,0.00506608,0.03046199,-0.014990793,0.017556587,-0.021803796,0.017076183,0.0041816994,-0.006578261,0.026924467,-0.013505907,0.029916076,-0.013953556,-0.009504359,-0.030112604,0.03672908,0.03456726,0.0020144219,-0.008314267,0.03533154,0.018288111,-0.008456204,-0.016355576,0.035309702,-0.037908252,-0.00816687,-0.005972297,-0.018561069,-0.010940112,-0.015853336,0.0024470584,-0.020526359,0.0042963414,0.022469811,0.01126766,0.022338793,0.01158429,-0.0015913387,0.013112849,0.020995844,-0.003564817,0.02279736,-0.0056775035,0.019641979,0.017818626,0.048651837,0.02799446,-0.010809093,0.017611178,0.0049104947,0.036183164,0.024675302,-0.01576599,-0.013080094,-0.0025849016,0.03939314,-0.009635379,-0.03019995,0.000016014892,-0.0040697875,0.0026695183,-0.034021348,-0.027623238,-0.01570048,-0.0044355495,0.009329666,0.015667725,0.022218691,-0.021345228,0.0056392895,-0.0012624256,0.018528314,0.0018369999,0.00240475,-0.03006893,0.037580706,-0.004544732,0.026007332,-0.024042042,0.026138352,0.015558543,0.010388739,-0.020690132,0.00607602,0.041751485,0.02120329,0.01848464,0.040790677,-0.0053827097,0.015045384,0.048040412,-0.010694451,-0.009346044,-0.016846899,-0.0053990874,0.00013025162,-0.0130364215,-0.012512344,0.02786344,0.010197669,-0.0048367963,0.016071701,0.028278334,-0.021192374,-0.0076537114,0.016737716,0.0037668052,-0.018266276,-0.00886564,0.015536706]},{"id":"class-EmbedBuilder","type":"class","source":"main","text":"Class: EmbedBuilder\nDescription: Builder for creating rich embeds. Use `toJSON()` when passing to `reply`, `send`, or `edit`.\nEmbeds must have at least one of: title, description, fields, or image/thumbnail.\nA description-only embed (no title) is valid.\nProperties: data: Partial\nMethods: addFields(fields: EmbedFieldData[]) -> this — Add one or more fields. Max 25 fields.; from(data: APIEmbed) -> EmbedBuilder — Create an EmbedBuilder from an existing API embed.; setAudio(input: string | EmbedMediaOptions | null) -> this — Set the embed audio. Supported by Fluxer.; setAuthor(options: EmbedAuthorOptions | null) -> this — Set the embed author (name, optional icon URL and link).; setColor(color: string | number | [number, number, number] | null) -> this — Set the embed color. Number (hex), hex string, or `[r,g,b]` array.; setDescription(description: string | null) -> this — Set the embed description. Max 4096 characters.; setFooter(options: EmbedFooterOptions | null) -> this — Set the embed footer (text, optional icon URL).; setImage(input: string | EmbedMediaOptions | null) -> this — Set the embed image (URL string or full media options).; setThumbnail(input: string | EmbedMediaOptions | null) -> this — Set the embed thumbnail (URL string or full media options).; setTimestamp(timestamp: number | Date | null) -> this — Set the embed timestamp. Omit for current time.; setTitle(title: string | null) -> this — Set the embed title. Max 256 characters.; setURL(url: string | null) -> this — Set the embed URL (title becomes a link).; setVideo(input: string | EmbedMediaOptions | null) -> this — Set the embed video. Supported by Fluxer.\nEmbed stays type 'rich'; this adds the .video field.\nInclude a title (e.g. setTitle) when using video.; spliceFields(index: number, deleteCount: number, fields: EmbedFieldData[]) -> this; toJSON() -> APIEmbed — Convert to API embed format for `reply`, `send`, or `edit`.","meta":{"url":"/docs/classes/EmbedBuilder"},"embedding":[-0.037929356,-0.0043839943,-0.029399484,0.00023183314,0.03416182,-0.02671141,0.012456153,0.0021602483,-0.025377957,-0.0001881784,0.017959297,-0.014530415,-0.010630591,-0.03737904,0.006767808,0.012752476,-0.013641445,0.0060058343,0.036849894,0.016139027,-0.010106734,-0.0414429,-0.01080521,0.006963593,0.021070689,-0.022054905,-0.011165031,0.0820815,0.014699742,-0.015895618,0.02395984,-0.0078049386,0.03301886,0.02421383,-0.021419927,-0.020700285,0.0559204,0.021578671,-0.01971607,0.019737234,0.03265904,-0.023451857,-0.05634372,-0.009672833,-0.012699561,0.050078604,-0.03536828,0.01233974,-0.006661978,0.04286102,-0.022774547,0.01721849,0.00008325819,0.03534711,-0.021631585,-0.007021799,-0.041802723,0.037738863,-0.04550676,0.01226566,0.025039302,-0.001814979,0.022689883,0.030859934,-0.033103522,-0.0084557915,-0.05541242,0.062820494,0.02014997,0.04732703,0.040130615,-0.033145856,-0.0067307674,0.028150694,0.042204875,-0.001045068,-0.01847786,0.0077996473,-0.012032834,-0.037061553,0.013482701,0.030605942,-0.05875664,-0.016932748,-0.040998418,0.02332486,-0.012593731,0.0037675365,-0.024467822,-0.030288454,-0.055962734,-0.041527566,-0.06624938,-0.044194475,0.04364416,0.03270137,0.0057148025,-0.004923726,0.012509068,0.030732939,0.05613206,-0.034796797,-0.09558536,-0.01786405,0.019387998,-0.03716738,-0.033230517,0.009810411,-0.0013222095,-0.03337868,-0.05473511,0.0044104517,0.007968974,-0.016414182,0.007720275,-0.01197992,-0.01127086,0.038522,-0.0665457,-0.03177007,-0.033188187,-0.048300665,0.06315915,0.026415087,0.03020379,0.0010119963,0.005773009,-0.000021662012,-0.0492743,-0.016530596,0.024975805,0.024975805,0.027261725,0.02249939,-0.017483063,-0.023494188,-0.028235357,0.0042596445,0.026796075,-0.0617622,0.016498847,0.014837321,0.055285424,-0.024044503,-0.024192665,0.018509611,-0.009635792,-0.031473745,0.0017871987,0.015313555,-0.027685044,0.02442549,-0.054862104,0.02760038,-0.013323956,-0.055497084,0.0061963275,0.028298855,-0.009715164,-0.018065127,0.01226566,0.0029764597,-0.03166424,-0.003928927,-0.036109086,-0.012932386,0.008106553,-0.037463706,-0.032976527,0.016932748,0.0116518475,-0.01718674,-0.038924154,0.04326317,-0.027642712,-0.033569172,-0.01080521,-0.06400579,-0.0011085658,0.019091673,-0.024742978,0.03936864,-0.059349284,-0.012297409,-0.01215983,0.028955,-0.03329402,0.03009796,0.0075403643,-0.025081633,-0.037484873,-0.014964316,-0.0148479035,0.03441581,0.04724237,-0.011112116,0.028976165,0.0046591517,0.041739225,-0.010493012,0.049909275,0.017419565,-0.0003078982,0.005402605,0.013207544,-0.0057994663,0.0045982995,0.04123124,-0.054396454,0.0021298223,0.02927249,-0.012043417,-0.0074662836,-0.0037066843,-0.00044679968,0.05879897,-0.014890236,-0.012974719,-0.055327754,0.024361992,-0.058036994,0.062820494,0.04800434,-0.039283976,-0.037209716,0.004799376,-0.024234995,-0.0015054272,-0.018763602,0.04364416,-0.010418932,-0.012953552,-0.02817186,-0.0015623106,-0.019282168,0.01915517,-0.02999213,0.038246844,0.014456334,-0.0033151146,-0.019017594,-0.03625725,0.006508525,0.0070482567,-0.008725657,0.004182918,0.0051803626,-0.074038446,0.022774547,0.040807925,0.03515662,0.018139206,0.025399122,-0.0039421553,0.016615259,-0.030224957,-0.050967574,0.05156022,-0.004389286,-0.03875483,0.021462258,-0.022880375,-0.021568088,-0.010799918,0.0279602,-0.025970602,0.033802,-0.00079901406,0.025420288,-0.033209354,-0.0039712586,0.0054105422,-0.0024565714,0.0020663245,-0.016858667,-0.01526064,0.020298133,0.0043734116,-0.022266565,0.023473023,-0.019419746,-0.015874451,0.003648478,0.032468546,-0.0059952512,-0.018668355,0.043284338,0.008805029,0.027727375,0.013874271,0.04097725,-0.0044871783,0.0693396,-0.03744254,-0.01903876,-0.011609515,0.084706075,0.003762245,0.06675736,0.020837864,0.0056565963,-0.011694179,0.022054905,0.010995704,0.02927249,0.010328976,-0.0017726471,-0.026944235,0.04863932,-0.055116095,0.0078102304,-0.0025412352,-0.044660125,-0.04114658,-0.055962734,0.035495274,0.03936864,0.008445208,0.01023373,0.0062598255,0.01611786,0.003791348,-0.03244738,-0.07242983,-0.028425852,-0.045379765,-0.020520374,0.01429759,0.0000041262206,-0.003230451,0.02578011,-0.013144046,-0.0062968656,0.03494496,0.04161223,-0.06193153,0.023557685,-0.013006467,-0.0019261001,0.03009796,0.012688979,-0.034034826,0.013069965,0.024192665,-0.02942065,-0.011260278,-0.020552123,0.041739225,-0.020012392,-0.010265479,-0.04385582,-0.0007513907,-0.040638596,-0.037971687,0.04660739,-0.040702093,0.02143051,-0.07966858,-0.034966126,-0.0020120868,0.001163465,0.02249939,0.014551581,0.03708272,-0.0251028,-0.0034923793,0.0038204514,0.028785672,-0.023261363,-0.01754656,-0.007783773,0.034860294,0.019345665,0.037357878,-0.0022766609,-0.03562227,0.010201981,-0.029187825,-0.018890597,-0.0148479035,0.010784044,0.01811804,-0.009498213,-0.040871423,-0.028828004,-0.02870101,0.024340825,0.031008095,-0.05266085,0.04838533,0.012614897,-0.013461535,-0.013218126,-0.02817186,0.076070376,0.03441581,-0.012646646,-0.00065581326,0.003823097,0.0022316833,-0.022880375,-0.027113562,0.026499752,0.018446112,0.021494007,-0.017408982,0.079710916,-0.0042993305,0.021843245,0.0043125595,0.061127223,-0.01989598,0.03761187,0.033463344,0.009662249,-0.008212383,0.0015530505,-0.06015359,-0.01658351,0.03265904,-0.043601826,-0.040913753,-0.01658351,-0.008180634,0.03763303,-0.010371309,0.035431776,-0.031050427,-0.034923792,-0.007995432,-0.04453313,-0.0049343086,0.1090469,0.035474107,0.024383157,-0.0064979424,-0.009387093,-0.012773642,-0.028404685,-0.0007222876,-0.015810953,0.027219392,0.018054543,0.004735878,-0.063243814,-0.0041696895,-0.009397675,-0.0010834313,0.01971607,-0.028341187,-0.010239021,0.009635792,-0.013948351,0.024467822,-0.01790638,0.029208992,0.03805635,0.01565221,0.027642712,0.027769707,0.024869975,0.02467948,-0.008254715,-0.0043125595,-0.010074985,-0.017154992,-0.026266925,0.030119127,0.0022263918,-0.030267287,0.0027542172,0.008508706,-0.0025372666,0.027325222,-0.026266925,-0.004656506,0.0042702276,-0.046903715,0.008963774,0.038966488,-0.024383157,0.015197142,-0.059814934,-0.02984397,-0.053253494,0.034987293,0.024764145,-0.039029986,0.014361087,-0.031410247,-0.0024459884,-0.029081995,0.007302248,-0.0069688843,0.021631585,-0.013630862,-0.06341314,-0.011598933,0.039305143,-0.012466736,0.0065455656,-0.015927367,-0.027663877,0.034987293,0.02520863,-0.0060640406,-0.010540636,-0.022880375,-0.025695445,0.028044865,-0.017557144,-0.0007857854,0.003629958,0.02489114,0.02588594,0.038416173,-0.054650445,0.031431414,-0.022922708,-0.02489114,0.004881394,-0.0013982746,0.028087197,0.006661978,0.019768983,-0.00026953497,-0.027790872,-0.0270289,0.0036220206,-0.024933472,-0.02916666,-0.000099298,0.0148479035,0.019906562,-0.033103522,0.01437167,-0.052576184,0.035389446,-0.01843553,-0.03369617,-0.033802,0.03066944,-0.00033137918,0.005836507,-0.034394644,0.028976165,-0.008053638,0.005577224,-0.012128081,0.0337385,0.040680926,-0.022478223,0.046946045,-0.064175114,-0.00052650267,0.08055755,0.01187409,0.007820813,0.0011971982,0.013387454,0.008963774,-0.008916151,0.016520012,0.034754466,-0.02260522,0.014350505,0.004323142,0.003886595,0.01711266,-0.0012104269,-0.044660125,0.010418932,-0.020499209,0.059857264,-0.0231767,0.0061116638,0.008672742,0.015038397,-0.01861544,-0.026203427,-0.017303152,-0.04567609,-0.016244855,-0.0015332075,-0.002367939,0.010366017,0.008572204,0.015271222,-0.020922527,0.01119678,0.02129293,0.04389815,0.0019247773,0.0067360587,0.014784406,-0.026859572,-0.0013063351,0.008429334,-0.028150694,0.032426212,0.02656325,-0.016594093,-0.012678395,0.017483063,-0.0057994663,0.00086846476,0.041273575,-0.0048231874,-0.041379403,0.004532156,0.03651124,0.025653115,-0.015250056,-0.046522725,-0.0025253608,0.016202524,0.00247906,-0.014752657,0.015736872,-0.0013546199,0.013874271,-0.007228167,-0.022224233,0.03581276,-0.0151336435,0.03445814,0.0044157435,-0.019536158,0.037315544,0.01754656,0.0048761023,-0.0067889737,0.0032251594,-0.0131863775,-0.004233187,-0.022457058,0.04034227,-0.00010822738,-0.016922165,-0.0029314822,0.032002896,0.013757858,0.049697615,0.018139206,-0.021843245,-0.009953281,-0.027473385,0.00043489382,-0.020837864,0.010069693,-0.014742074,-0.03532595,0.01950441,-0.035452943,0.022372393,-0.00902198,-0.028002532,0.01262548,-0.018922346,0.009064312,-0.018848266,0.004481887,-0.008942608,0.0064344443,0.021451676,0.036341913,-0.033251684,-0.0006224108,0.0011052587,0.020329881,-0.008836778,-0.02848935,-0.002817715,-0.020234635,0.014773823,-0.06938194,0.028193027,0.0027224685,0.028108362,0.009360635,-0.02395984,-0.0006832628,-0.040807925,-0.042607028,0.007688526,-0.05515843,-0.016414182,0.03155841,0.021197684,0.0028282981,-0.030457782,0.03577043,-0.006328615,-0.03030962,-0.008461082,0.06629171,-0.009260097,0.0051697795,-0.0022224232,-0.053761475,-0.005159197,0.013461535,-0.04508344,-0.01515481,-0.004973995,0.009783953,-0.01544055,0.028298855,0.0178958,-0.038881823,-0.034119487,0.014318755,0.0061592874,-0.009016689,-0.02061562,-0.011239111,-0.0131334625,0.011577766,0.009101353,0.010201981,-0.012604315,-0.01801221,-0.03098693,-0.0107417125,-0.024848808,-0.031854734,0.023049703,0.05905296,-0.023367193,0.0028865044,0.018139206,0.024933472,0.00024671544,-0.0019763692,-0.040172946,0.042734023,-0.011842341,-0.0108475415,-0.015482882,0.017853467,-0.01726082,0.005693637,0.05062892,0.025589615,0.01468916,-0.012064584,0.0139377685,0.0034262359,-0.0032198678,0.010921623,-0.023197865,0.0042569987,-0.04275519,0.0070376736,-0.031833567,0.0010179492,0.016964497,-0.020351047,-0.029801637,0.009773371,-0.000079785656,0.024510153,-0.012688979,-0.0117047625,-0.014318755,-0.0434325,0.005296775,0.0045665507,0.0038627833,-0.006947718,-0.028933834,-0.018774185,-0.03776003,-0.005450228,0.09922591,-0.03488146,-0.011217946,-0.011260278,-0.017514812,0.024234995,-0.04478712,0.0105618015,0.0023044413,-0.0032701371,-0.013112297,0.003362738,-0.046776716,-0.035262447,-0.0434325,-0.044067476,0.011800009,-0.017377233,-0.0022277148,-0.015588711,0.004603591,0.035685766,-0.02906083,-0.082843475,-0.0111861965,0.035685766,-0.008090679,0.0016681403,-0.022880375,0.01091104,-0.0054713944,-0.0048893313,-0.03822568,0.0318124,-0.0011370076,0.03327285,0.0048549366,-0.036574736,-0.0010159649,0.025864772,0.023240197,0.008244132,-0.03780236,0.007402786,0.024827642,0.018636607,0.024721812,0.015736872,0.017737053,0.02228773,0.028806837,0.02770621,-0.0041617523,0.033928994,0.044871785,-0.03833151,0.009969155,0.03754837,0.00060058344,0.020086473,-0.012075166,0.0026100245,-0.044236805,0.019779567,-0.036574736,-0.0045559676,0.0018467279,0.011905839,0.00010153035,0.02285921,0.005352336,-0.019070508,0.02264755,0.037209716,0.0056248475,-0.0096305,-0.0013718172,0.030817602,0.05139089,-0.055581745,0.01176826,0.01847786,-0.00044084675,-0.007699109,0.01041364,0.01947266,-0.01215983,0.046268735,-0.0251028,0.0061010807,0.0003196387,-0.005444937,-0.03651124,0.024764145,-0.014308172,0.0008704491,0.014234091,-0.027939035,0.005773009,0.025526118,0.014731491,0.0064503187,0.0038204514,0.021631585,-0.04279752,0.024192665,0.019853648,-0.021885578,-0.005556058,-0.01950441,0.018001629,0.011927005,0.05253385,0.04796201,-0.034288816,0.030838767,-0.017991045,-0.010694089,-0.00023778605,-0.0001499805,-0.005979377,0.05769834,-0.017027995,0.048808645,0.017017413,0.007307539,0.000075279626,-0.04978228,-0.0013757858,-0.0014273778,0.016625842,-0.015302971,0.00050665956,0.021472842,-0.006672561,0.004042694,0.010392474,-0.0036775812,-0.01726082,0.009397675,-0.03790819,0.0020583873,0.009799828,0.033886664,0.02999213,-0.010551219,-0.03854317,-0.0010642497,0.017599475,0.03847967,0.007947809,-0.010180815,-0.003944801,-0.016202524,0.025716612,-0.015525213,-0.03744254,0.014234091,0.013376871,0.0059635025,0.023388358,-0.041569896,-0.0037384334,0.016784586,-0.02713473,0.031135092,-0.04576075,-0.020774366,0.02734639,-0.030119127,0.039093483,-0.017641807,-0.047200035,0.01911284,0.00040347566,-0.02863751,-0.003066415,0.02186441,0.019134006,-0.025335625,-0.006661978,-0.010963955,-0.009979739,-0.005841798,0.06658804,0.029335987,-0.022330062,-0.008048347,-0.021091854,0.00058570114,-0.021314098,-0.02535679,0.0006872315,-0.008540455,0.0045877164,0.030267287,0.018065127,-0.011524851,0.026901904,0.01583212,0.029801637,0.024848808,0.0104824295,-0.018340284,0.001836145,0.016160192,0.014403419,0.0034844421,0.0047120666,0.011408439,0.005947628,0.024171498,0.03898765,-0.005198883,0.016139027,0.02307087,-0.03511429,-0.020742618,0.0049475376,-0.00205045,0.009963864,0.004952829,-0.009545837,0.041527566,-0.015885035,-0.0049052057,-0.037019223,0.0046432773,-0.009175433,0.0034474018,0.03301886,0.004992515,0.021123603,0.0051750713,-0.024234995,0.0025491724,0.014318755,-0.005384085,0.0065402742,-0.007783773,0.018033378,-0.013736692,0.008328795,-0.016424766,0.00045176042,-0.008281172,0.02870101,-0.024192665,-0.008429334,0.014001266,0.0058576725,-0.029970964,0.014540997,-0.015937949,-0.025631947,-0.008609245,-0.026097598,0.04732703,-0.014318755,-0.03462747,-0.02624576,-0.010477138,0.040850256,0.03359034,0.009265388,-0.0000018577035,-0.018287368,-0.03177007,0.011927005,0.03646891,0.026224595,-0.017408982,0.011143865,0.0077361492,-0.00024456577,0.024446655,-0.00452951,0.021546923,0.006804848,-0.01929275,0.003793994,0.014361087,-0.0070694224,0.013419203,0.01778997,0.008498123,-0.014488082,0.0023811678,0.010572385,0.0071805436,0.027113562,-0.0019009656,0.0472847,-0.028658677,0.020403963,0.0019327145,0.028341187,-0.01872127,0.0520682,-0.03900882,-0.00041339718,0.032997694,-0.0035214825,-0.03259554,-0.045845415,0.003309823,-0.03801402,0.017091492,0.012075166,-0.011683596,-0.013027634,0.02431966,0.013747275,0.020732034,0.03443698,-0.02321903,-0.017916964,0.018266203,-0.017715888,-0.023388358,-0.0145621635,0.054396454,0.009408258,-0.010000904,0.008720365,-0.013715526,0.030034462,-0.017239654,0.0052438607,0.03202406,-0.008868527,0.024129167,-0.004585071,-0.031748902,-0.00934476,0.027198227,-0.053549815,0.018022794,-0.003526774,-0.011006286,-0.07670535,0.025420288,-0.0067201843,-0.005751843,0.0058100494,-0.01632952,0.02817186,-0.005413188,-0.014265841,0.019514993,-0.017398398,0.027219392,0.012022251,0.010868708,-0.032786034,0.030246122,0.00035254512,-0.012403239,-0.0017647098,-0.0549891,0.014361087,-0.029145492,0.026584415,0.007741441,0.0073974943,-0.040448103,0.014022432,0.01322871,-0.030923432,-0.0015041042,0.00233619,-0.036680568,-0.00798485,0.037040386,-0.0049687033,0.0043019764,-0.009884492,0.0074609923,-0.005251798,0.006180453,0.024975805,-0.009567003,0.015948532,-0.011778843,-0.0093659265,0.017377233,0.0016258084,-0.0063497806,-0.016456515,-0.0018163018,-0.008148885,0.008371128,-0.025229795,0.0017660328,0.0060852063,0.039241645,0.03979196,-0.022266565,0.000113684226,0.007402786,0.00641857,0.02613993,-0.013662611,0.008265298,0.010180815,0.014826737,0.036341913,-0.04779268,0.0048761023,-0.046226405,-0.021462258,0.0075932792,-0.013630862,-0.011038035,-0.030436615,0.0022713696,-0.008286464,0.008117137,-0.012794808,-0.031748902,-0.020393379,-0.0048126047,-0.01790638,-0.00095908146,-0.01754656,0.02713473,0.006746642,0.019726653,-0.00007081494,0.016890416,0.020742618,-0.023240197,0.03306119,-0.012995885,0.03519895,-0.0024473113,0.026161097,0.014604496,0.03723088,0.008476957,0.004365474,-0.0075932792,0.026986567,0.0027118854,0.007640903,-0.0049343086,0.012964135,-0.006905386,0.022033738,0.014435168,-0.012434987,0.0036008547,0.02937832,0.0053867307,-0.028214192,-0.011683596,0.026838407,-0.0015332075,0.03716738,-0.0034315272,0.004619465,-0.010694089,0.027113562,-0.0019208087,0.005688345,0.021367012,0.015673375,0.020552123,0.00738162,0.0035532315,0.021652753,0.018954094,-0.0023335444,0.003495025,0.008408168,-0.0058788387,0.0042278958,-0.012815974,-0.029293654,-0.039749626,0.012392655,-0.018880015,0.010228438,-0.0063921125,0.0049475376,0.012434987,-0.030965764,0.0068313056,0.00274628,-0.0251028,0.00299498,-0.024023337,-0.03270137,-0.00035221438,0.005926462,0.02453132,-0.01858369,0.012540816,-0.00641857,-0.0030505403,-0.025335625,0.02942065,-0.01708091,0.010784044,0.0033918412,0.018573109,-0.0061857444,0.0068313056,-0.029801637,-0.00017395754,-0.011757677,0.01732432,0.00016180366,-0.037569534,-0.0065243994,0.04525277,0.042607028,0.031071594,-0.047454026,-0.007503324,0.0052941297,-0.029230157,0.018562526,-0.013863687,0.0037807652,-0.010318394,-0.034331147,0.038373843,0.026097598,0.0015464361,0.04732703,0.0102760615,-0.027536882,0.0059423363,-0.00053245557,-0.0022078718,-0.039326306,0.026182262,0.0009941375,0.0077149835,0.00040215277,0.011598933,0.0070376736,0.020012392,-0.015091312,-0.029505314,-0.004296685,-0.007958392,0.004849645,0.020097056,-0.0038495546,-0.022668717,-0.006868346,-0.003823097,0.010424223,-0.01312288,0.01903876,0.0066461037,0.015302971,-0.0032992403,-0.02182208,-0.018604858,0.0025412352,0.00563543,-0.012487902,-0.0318124,-0.01744073,0.01664701,-0.013355705,-0.01780055,0.01098512,0.03240505,0.016202524,0.018562526,-0.01921867,0.036574736,0.008318213,-0.0030769978,0.0064873593,-0.026944235,0.009831577,-0.0006286944,0.016266022,0.015588711,-0.021345846,0.009688707,-0.02999213,0.013726109,0.0099903215,-0.021282349,0.010598842,0.029251322,0.0015398219,0.04207788,0.014667993,0.006386821,-0.014244675,0.04275519,-0.00020024959,0.00067929423,0.0030267288,0.04190855,0.024721812,-0.008831487,-0.019747818,-0.026118765,0.034352314,-0.001650943,-0.032574374,0.008566912,-0.02307087,0.03505079,-0.016318936,0.014424585,0.036680568,-0.01601203,0.007783773,-0.01793813,-0.000085159816,-0.037484873,0.03629958,-0.023727013,0.013271041,-0.011101533,0.03712505,0.014128262,-0.04775035,-0.0044025145,-0.024234995,0.018372033,-0.02197024,-0.029335987,0.0015914137,0.03160074,0.02453132,0.012900637,0.0056142644,-0.008932025,-0.027685044,0.0019710776,-0.031833567,0.022351228,0.037527204,0.01544055,-0.0006485375,-0.011842341,0.021123603,-0.023197865,-0.018742437,0.029103162,-0.025060467,-0.01233974,-0.022922708,-0.037209716,0.021218851,-0.008720365,0.012678395,0.027536882,0.017525395,-0.015514631,0.0067413505,-0.012477319,-0.019885397,0.026753742,-0.000789754,-0.019567907,-0.01658351,0.007053548,-0.008789155,-0.020626204,0.010932205,0.009180725,-0.022033738,-0.005106282,-0.022266565,0.0018917054,-0.0037569536,-0.0010649111,0.02781204,-0.020890778,0.0130805485,-0.01091104,-0.0030108544,-0.01997006,-0.04478712,-0.00549256,-0.017250238,0.007947809,-0.0032410338,0.001896997,0.014540997,-0.0018440821,0.023473023,-0.0017501583,0.026626747,0.009662249,-0.02328253,0.024954638,-0.049655285,-0.0060640406,-0.007244041,0.01668934,0.037061553,-0.0076726517,0.024171498,0.01294297,-0.03519895,0.03437348,-0.013260459,-0.0061592874,0.01390602,0.0038310343,-0.025907105,0.012382072,-0.0068948036,-0.011016869,-0.009498213,0.026626747,0.054142464,-0.01429759,-0.013112297,0.04307268,-0.0065561486,0.022118403,0.02806603,0.017483063,-0.047369365,-0.044956446,0.015101895,0.0038680746,-0.0057042195,0.024488987,-0.010921623,0.0026417733,0.023981005,-0.0046009454,-0.0050083897,-0.013831939,0.037040386,0.02567428,0.010302519,0.041887388,0.02264755,-0.016318936,0.0017276695,-0.017144408,-0.013789607,-0.004764981,-0.020414544,-0.034246482,-0.0041458774,-0.0076091536,-0.02884917,0.0046432773,0.006318032,-0.050163265,0.010000904,0.004026819,-0.022372393,-0.04410981,-0.0034923793,0.0013043508]},{"id":"class-FluxerAPIError","type":"class","source":"main","text":"Class: FluxerAPIError\nProperties: code: string, errors: { path: string; message: string; code?: string; }[] | undefined, isRetryable: boolean, statusCode: number","meta":{"url":"/docs/classes/FluxerAPIError"},"embedding":[-0.050595745,0.019687835,-0.023142869,0.0024682994,0.029748425,0.020765338,-0.059028372,-0.0073375544,0.05232912,-0.00011528979,-0.008526321,-0.025742928,0.029139401,0.011255211,-0.019699547,0.048815526,-0.01089214,0.0051444867,0.02368162,0.05120477,-0.004942455,-0.06600871,0.03298093,0.026984397,-0.025157329,0.026117712,0.010048877,0.026234832,0.006623124,-0.010997548,0.050220963,-0.02604744,0.009457422,0.044037037,0.020941017,0.023880724,0.03450349,0.04794884,-0.029162826,-0.03604947,0.0050156545,-0.028015053,-0.009158767,-0.005282102,-0.01527242,0.03782969,-0.031177286,-0.03457376,-0.014405733,0.040617142,-0.025532113,0.00018656816,-0.024688851,0.035065662,-0.011553867,0.0091821905,-0.06408794,0.057201304,-0.02906913,0.00028968847,0.045723565,0.00665826,0.018329246,-0.0342224,-0.031950276,0.057529237,0.011483595,0.043966766,0.004254376,0.062214028,0.025625808,0.02527445,0.036517948,-0.043919917,0.0010174781,0.020765338,0.00018473816,0.019219356,0.036307134,-0.027663693,0.006435732,0.027804237,-0.0092173265,-0.073270135,0.00012453127,0.011946218,-0.0504552,-0.040687412,-0.005422646,-0.021222105,-0.012508393,0.019488731,-0.04724612,0.059684243,0.010318253,-0.011419179,-0.013187688,-0.013363367,-0.0016674929,0.029139401,0.066524036,0.0021740359,0.0066524036,0.013386792,-0.03848556,-0.03883692,-0.030099785,0.024079828,-0.016267939,-0.053968795,-0.013948966,-0.007612786,-0.037080124,0.0028665066,0.0061429325,-0.04483345,-0.017040929,0.016010275,0.013866982,0.03522963,-0.020929305,-0.027195213,0.05143901,0.039984696,-0.03925855,-0.0000813891,0.069990784,0.0097033745,-0.054858908,0.013656166,0.038883768,-0.031294405,0.019149084,0.006997907,-0.015647203,-0.0060843728,-0.0028284427,-0.022686101,-0.016279649,-0.02740603,0.028624075,-0.007366834,0.04499742,-0.019816667,0.023236565,-0.012883176,-0.0062073483,0.007823601,0.0058267093,0.022241047,-0.003176874,0.030521415,-0.024384338,0.011120523,-0.016666146,-0.043638833,0.03593235,0.020905882,-0.03729094,-0.005311382,-0.010347533,0.02178428,-0.0071560186,-0.028905163,0.020917593,-0.009398863,0.00028108747,-0.046192043,-0.033262018,-0.0055719735,-0.0026015232,-0.014628261,-0.03611974,-0.002698147,0.008186673,-0.032161094,0.05546793,-0.0029031066,0.0013922615,0.010312397,-0.014347173,0.007770898,0.027616845,-0.03429267,-0.008251089,-0.009802925,-0.017275168,0.0427253,0.013269671,0.0055631897,-0.007852881,0.009053359,-0.025180753,-0.023904148,-0.000052063402,0.0049834466,0.005847205,0.016642721,-0.0046847914,0.014768804,-0.017181473,0.0054753497,0.05453097,-0.009551118,-0.0013585895,0.012976872,-0.02705467,-0.034198977,-0.019910363,-0.0336368,0.053359773,0.05097053,-0.022170775,0.029443914,-0.033004355,0.011290347,0.041811764,0.04659025,-0.012988584,-0.021233818,-0.03628371,0.025133906,-0.0011543619,-0.010019598,-0.008836688,0.04790199,0.04410731,-0.0157409,-0.028272716,0.0011382579,-0.011940362,0.006792947,-0.046168618,-0.04317035,0.04368568,-0.024337491,0.019488731,-0.009469135,-0.01757968,0.02065993,-0.004020137,-0.035206206,-0.020519385,0.016361633,-0.015893154,0.029209673,-0.0038971608,-0.008983088,0.04251448,0.014312037,0.04794884,-0.004406632,0.029982664,-0.026258254,0.013047144,-0.028366411,0.024899665,0.004807767,0.010300685,-0.021749144,0.03368365,0.01640848,-0.045301933,0.010183565,-0.037923384,-0.042420786,0.04434155,0.00846776,-0.009978605,-0.034901697,0.0022809077,-0.009838061,0.04317035,-0.038017083,0.0028430826,0.00023735056,0.033472832,0.00534359,-0.004854615,0.04286584,0.044669487,-0.019886939,-0.012930024,0.017462559,0.01692381,0.011858378,0.04340459,-0.011003404,-0.021339225,-0.015588643,-0.01959414,0.0056363894,0.019137373,-0.047503784,0.009135343,0.053781405,0.0427253,-0.04150725,0.026797006,0.051907487,-0.017158048,-0.044083886,-0.03267642,-0.028319564,-0.0015591572,0.03907116,0.010107437,0.012988584,0.05068944,-0.005835493,0.030334024,-0.008087121,-0.079454064,-0.040687412,-0.03604947,-0.027218638,0.027452877,-0.045301933,0.06488436,-0.026539342,-0.0032588579,-0.06952231,0.03232506,-0.00651186,-0.05551478,-0.046262313,-0.030568263,0.009147055,0.04919031,0.04197573,-0.008034417,-0.056545433,-0.0029953385,0.027663693,-0.0022765158,-0.008748848,-0.035815228,0.032652996,0.017521119,-0.0024609794,0.025883472,-0.05860674,-0.03209082,0.01480394,0.048159655,0.007770898,-0.024688851,-0.056545433,0.01432375,-0.013199399,-0.051954336,0.032770116,-0.040874805,-0.01811843,-0.005782789,-0.011290347,-0.0131408395,-0.035815228,-0.03515936,0.033894464,-0.029935816,0.046496555,-0.04178834,0.004374424,-0.01763824,0.014991332,0.019172508,-0.06202664,0.03143495,-0.02728891,0.011629994,0.010488076,-0.0050215106,-0.03281696,-0.021093274,0.0035575135,-0.04801911,-0.0064005964,0.007214579,0.01959414,0.02557896,0.018493215,-0.077767536,-0.013386792,0.007167731,-0.011366475,-0.02480597,-0.01698237,-0.015412963,0.02445461,0.034386367,0.029209673,-0.016033698,-0.051813792,0.05706076,0.0019983563,0.015424675,0.0426316,0.00665826,-0.026351951,0.028225867,0.0028240508,0.013550759,0.056217495,0.021936536,-0.010488076,0.025906896,-0.015893154,0.034433216,-0.025368145,0.0130354315,-0.0036336412,0.029162826,0.039563064,0.019664412,-0.052657053,0.061464462,-0.039094582,-0.03984415,0.029818697,0.00878984,-0.012520105,-0.05696706,0.014897636,-0.017556256,-0.054671515,0.024688851,-0.042537905,-0.019687835,-0.037361212,0.028624075,-0.03698643,0.045208238,0.021104984,0.02942049,-0.0067402436,0.025485264,-0.06802317,-0.0013000296,0.015916578,-0.011887658,0.021186968,0.031083591,-0.0038913048,-0.013866982,-0.024126675,0.005399222,0.0023028678,0.011061964,0.016010275,-0.060480654,-0.033121474,-0.00025766352,-0.031575494,-0.043802798,-0.02244015,0.021116696,0.010119149,0.06132392,-0.004345144,-0.017860767,-0.004854615,-0.03291066,-0.052610207,0.050267812,-0.009785358,0.0056744535,-0.005375798,0.017567968,-0.0034140416,-0.037642296,0.033472832,0.013187688,-0.00011666228,0.009527694,0.011442603,-0.007981713,-0.04445867,0.06783578,0.043709103,-0.020413978,0.008163249,-0.011384043,-0.02663304,0.008397489,0.08933897,0.0067812353,0.015530083,-0.06924122,-0.005976037,-0.026703311,0.006558708,0.03640083,-0.011946218,-0.015541796,-0.033660226,-0.054437276,-0.046285737,0.0193599,-0.040710837,-0.015295844,-0.05701391,-0.008959663,-0.0044329837,0.030334024,0.0059116213,-0.003967433,-0.0258132,-0.009545262,-0.008579024,0.06390055,0.0111263795,0.0036160734,-0.0068515074,-0.026797006,0.014370597,-0.034245826,0.01823555,-0.027804237,-0.020987865,0.03759545,-0.012039914,0.0112669235,0.03918828,-0.0313881,-0.024501458,-0.014253478,-0.0074605304,0.0058120694,0.014721957,0.006945203,0.015764322,-0.002717179,-0.006008245,-0.012543528,0.04427128,-0.03204397,0.0028972507,-0.017052641,-0.052610207,-0.0065352838,0.0314818,-0.0119930655,0.028600652,-0.028975435,0.027640268,-0.01887971,0.03166919,-0.026609614,0.03387104,0.013503911,-0.027429454,0.002743531,-0.026726734,0.049471397,0.017029217,0.056639127,-0.018715741,-0.031762887,-0.00069393474,0.0044505517,0.008901103,0.049471397,0.0039645047,0.0020657002,-0.0077299057,-0.013386792,-0.0022062438,0.00991419,0.013632743,-0.009264175,0.011981354,-0.034316096,0.06455643,0.005361158,0.021233818,-0.010611053,-0.025602385,0.033262018,0.016994081,-0.0047374954,-0.054015644,0.007946577,0.066805124,-0.037853114,0.025742928,-0.0012736777,-0.025110481,-0.015026468,0.02238159,0.025672656,-0.003264714,0.009978605,-0.039727032,0.0003676463,0.00079568254,0.027874509,0.010886284,0.002742067,0.054249883,0.007653778,-0.02853038,0.0074605304,-0.02368162,0.018856285,-0.013749862,-0.0033320577,0.019664412,-0.032652996,-0.0029880186,-0.0058120694,0.025532113,-0.031997126,-0.05855989,0.021034714,-0.01278948,-0.014675109,0.026726734,0.014276901,-0.009469135,-0.008965519,-0.010652044,-0.022721238,-0.004368568,-0.023435669,-0.0131759755,-0.026258254,-0.05884098,-0.013269671,-0.0051444867,0.059871633,0.014194918,0.016865248,0.024735698,0.011436746,0.04731639,-0.019851804,0.031762887,-0.03855583,-0.019793244,0.018083295,0.0005105691,0.04495057,-0.0034930976,0.014464294,-0.03600262,-0.019020252,-0.017626528,-0.030146632,0.010148429,0.01207505,-0.013269671,-0.039118007,0.014897636,0.02728891,-0.024196947,0.0039264406,-0.003803465,-0.017907614,-0.011659275,-0.006558708,0.008579024,0.0005812069,0.036799036,-0.024946515,0.008116401,-0.0157409,0.008813264,0.0050185826,-0.0019954282,0.027921356,0.025625808,0.0014200774,0.00016616369,-0.011436746,-0.004930743,0.0008183745,-0.049518242,-0.01187009,-0.0008264265,-0.048440743,0.016279649,-0.047129,0.029654728,0.031950276,-0.04024236,-0.014827364,-0.0120282015,-0.013925542,0.0639474,-0.0150850285,0.046965033,0.012836328,0.013749862,0.014757093,-0.021514904,-0.022568982,0.01059934,0.004353928,0.024056403,0.042936113,0.011934506,0.019453596,-0.008983088,-0.01639677,0.006710964,0.02848353,-0.0052879583,0.04103877,-0.0028416188,-0.014932772,-0.0014515533,-0.01716976,0.019886939,-0.035651263,0.030685384,-0.001607469,0.014358886,-0.010880427,0.0014647293,0.01408951,0.021339225,-0.04736324,-0.01568234,-0.0151553,-0.008824975,0.022920342,0.0454659,-0.027031247,-0.009381294,-0.0035077375,0.017708512,-0.033613376,-0.026445648,-0.0061019408,-0.016666146,0.009504271,0.027499724,-0.013726438,0.0033613378,0.010546637,-0.024501458,-0.0025136834,-0.0073961145,-0.013398503,-0.024829393,-0.0003645353,0.008895247,0.0043802797,-0.014944484,0.0014354493,0.0061839246,0.0046320874,0.0054899896,-0.0022501638,-0.033191748,-0.0027962348,0.011887658,-0.009076783,-0.01169441,-0.027546573,0.04427128,0.00049885706,-0.028858315,0.02995924,-0.03019348,-0.011243499,0.0014581413,0.00534359,0.00044798318,-0.006675828,0.0025473554,-0.016689569,0.012684072,0.024688851,-0.004289512,-0.03604947,-0.008157393,-0.028998857,0.0054724216,-0.03853241,-0.0073141307,0.0034169697,-0.021104984,-0.0033847617,-0.011032684,-0.014897636,-0.014358886,-0.035018817,-0.017544543,0.016830113,-0.0019178365,0.037361212,-0.06572762,-0.0060433806,0.0012026738,-0.028319564,-0.04759748,0.007888017,-0.0013585895,0.0336368,0.028319564,-0.014944484,0.002253092,0.024267219,-0.007565938,0.012590377,0.038696375,0.03593235,-0.028975435,-0.019348187,0.03237191,0.0024068116,0.026305104,0.008180817,0.019640988,-0.0019851804,0.00072394666,0.025133906,-0.0019222285,0.056451734,0.013656166,0.052422814,-0.017860767,0.0029426345,0.043709103,0.0029104266,0.029561033,-0.01924278,0.018750878,-0.029467337,0.036752187,0.016209379,0.0007060127,-0.048768677,-0.013761574,-0.040546868,0.023353685,0.010950699,0.007934866,0.012086761,0.020308571,-0.008356497,0.0056656697,0.00867272,0.017790494,-0.021468056,-0.033707075,0.0025912751,-0.010253837,-0.03302778,0.0033642657,0.068210565,-0.042163122,0.05143901,-0.015541796,-0.06760154,-0.0034726015,0.022182487,-0.0028430826,-0.02114012,0.036658492,-0.016748128,-0.040336054,0.016057122,0.023693332,-0.030052936,0.022955477,0.0025707793,0.0035194494,0.042842418,-0.009199759,0.015869731,0.05204803,-0.020741913,0.02534472,-0.03759545,0.015260708,-0.0073551224,0.06418164,-0.016689569,0.013339943,0.004725783,-0.008959663,0.026609614,0.008842544,-0.00017805868,0.017427424,-0.021233818,-0.019875227,0.007554226,0.024243794,0.02338882,0.009843918,0.010247981,-0.0039879284,-0.012039914,0.028881738,-0.00018016317,0.013304807,0.038930617,0.011922793,0.007618642,0.032489028,0.011020971,-0.040827956,0.0006997907,-0.002128652,-0.0012751416,0.03843871,0.051485855,0.027851084,0.0015547652,0.03984415,-0.08423255,0.008655152,0.008795695,0.036752187,0.010107437,-0.04492715,0.021737432,-0.014604837,0.021690585,0.030732231,0.0012692857,-0.017614815,0.006546996,-0.0062483405,0.0102245575,-0.0062659085,0.0050156545,0.04729297,0.010318253,-0.004362712,-0.0024155956,-0.008040274,0.017767072,0.023435669,-0.01509674,0.03096647,-0.044083886,0.017474271,0.011548011,-0.045091115,0.056264345,0.0059116213,-0.014019238,0.020250011,0.0022062438,-0.006441588,0.039516214,-0.004904391,0.05359401,-0.013093992,0.0071208826,-0.03848556,0.014312037,0.044013616,0.06108968,0.017064352,-0.04984618,-0.008567312,-0.0336368,-0.028085323,-0.0040464886,-0.0028708987,0.016068835,0.012402985,-0.03876665,0.024876243,-0.03262957,-0.029584458,0.003949865,0.0041431123,0.025414992,0.033496257,-0.0041489685,0.013878695,-0.034152128,0.00982635,0.043638833,0.023154581,0.046496555,0.02101129,-0.0035926492,-0.004796055,0.028015053,0.004421272,0.0313881,0.07809547,0.016958944,0.015764322,0.0058062132,0.0002177696,0.021386072,-0.03066196,-0.011278635,0.039281975,0.0041079763,-0.027991628,-0.021948248,0.019453596,-0.018856285,-0.031247558,-0.0020378842,-0.03677561,0.03558099,-0.004974663,0.015120164,-0.011887658,0.006611412,0.014101222,-0.02019145,-0.043896496,-0.07106829,0.009820494,0.0060785166,0.010142573,-0.008865967,-0.0044798316,0.05209488,0.009369583,0.0045296075,-0.017122913,-0.011471882,-0.023423957,0.0029294586,0.0024595154,-0.017462559,-0.0034667456,-0.007448818,0.022627542,0.011858378,-0.039633334,-0.02017974,0.042701874,0.01397239,0.010950699,0.008725424,-0.019640988,-0.012824616,0.03042772,0.0020305642,-0.0062659085,0.027663693,-0.009961038,0.011348907,0.019945499,0.00057352096,-0.009972749,0.0252276,0.008543888,-0.014007526,-0.01640848,0.009996174,0.013995814,0.031692613,-0.0055221976,0.0066992515,-0.0011990138,0.010447085,0.014581413,0.0061195088,-0.007688914,0.017872479,0.018844573,0.02782766,-0.017837344,-0.00962139,0.011184939,0.017872479,-0.024899665,0.0023760677,-0.032067396,-0.00030249843,-0.003135882,-0.021877976,-0.04415416,-0.02114012,-0.013293095,-0.028225867,0.018680606,0.01550666,-0.009053359,0.0030421864,0.027921356,-0.0044124876,0.012988584,-0.0130002955,-0.04317035,-0.0063069,0.01759139,-0.007437106,-0.01598685,0.04352171,0.005044935,0.006019957,-0.0006503808,-0.005569046,-0.006406452,-0.018247262,-0.0483002,0.007905586,-0.035487294,0.009820494,0.030919623,-0.002664475,-0.045489322,0.006476724,-0.012285865,-0.016888672,0.050174113,0.029537609,-0.04504427,-0.03843871,-0.026539342,0.015752612,0.005425574,-0.013679591,-0.0051649823,0.0014017774,-0.005012727,0.0018036447,0.008994799,0.001083358,-0.006002389,0.0062366286,0.02705467,-0.033730496,0.0030714662,0.010792588,-0.0115772905,0.023669908,0.0081749605,0.010165997,0.015553507,-0.008508752,-0.0040406324,0.020308571,-0.0067695235,0.006927635,0.007858737,0.007448818,0.020004058,0.01042366,-0.028624075,-0.043545134,0.04848759,0.021093274,0.010575917,0.003244218,-0.013831846,0.013585894,0.012836328,0.01408951,0.028413258,-0.022475285,0.003253002,0.031083591,0.024993362,0.009439855,0.0071560186,0.022920342,-0.012531817,0.022182487,-0.013410215,-0.007150163,0.017462559,0.017146336,0.020273434,0.0022838358,-0.024688851,-0.0061312206,-0.019231068,0.005501702,0.0061663566,0.016467042,-0.02078876,0.009469135,-0.016830113,-0.02794478,-0.04499742,0.0022311318,-0.009018224,-0.0115772905,0.004722855,0.0001578372,0.0049190307,-0.02724206,0.009750222,0.0038825208,-0.015319267,-0.0012326858,-0.031528644,-0.03883692,-0.01201649,0.022100503,0.022686101,-0.014557989,0.010271405,0.0020876601,0.0003824693,0.009732654,0.016666146,0.036635067,0.010470509,-0.009838061,-0.028600652,-0.00012562927,-0.037501756,0.0067753796,0.0039996407,0.0110912435,0.03623686,-0.007062323,-0.014464294,0.046145193,0.0020012844,0.0065177158,0.0009713622,-0.015612067,-0.017017504,0.015073316,0.009609678,-0.01106782,-0.018926557,0.005331878,0.012250729,0.04476318,0.005246966,-0.003841529,-0.014312037,0.005785717,-0.003220794,0.00031439343,-0.036635067,0.009311023,0.012414697,0.024993362,0.011079531,-0.033589955,0.0058062132,-0.00011583878,-0.001660173,-0.010962412,0.03084935,-0.00025272253,-0.011436746,0.0009713622,-0.00055595295,0.0056422455,0.0030011944,-0.015424675,-0.007197011,0.00846776,-0.024595154,-0.01800131,-0.0065177158,-0.016631009,-0.030404296,-0.015553507,0.0010262621,-0.002193068,0.026000591,-0.01941846,0.02207708,-0.019090524,0.010927276,-0.00528503,0.022639254,-0.026703311,-0.03368365,0.025719505,0.013714727,-0.0029133547,-0.009996174,-0.0029880186,-0.012461545,-0.010078157,-0.023189718,-0.044786606,0.029256523,-0.02848353,0.023283413,-0.008192529,0.008444336,-0.006025813,0.013644455,0.0019236924,0.027335757,0.0129066,0.0006394008,-0.029654728,0.00041284724,-0.027218638,0.015729187,0.026211407,-0.0015664771,0.00324129,-0.00766549,-0.007981713,0.014136358,0.013574183,-0.035323326,0.012157033,-0.028553803,-0.008813264,-0.018610334,-0.0036629213,-0.013761574,-0.0055719735,-0.010177709,-0.0023541076,-0.00088279037,0.025742928,-0.0009918582,0.01189937,-0.012473257,-0.019863516,-0.015424675,-0.00010010081,0.027921356,-0.014054374,-0.0010489541,0.0016909168,0.0038620248,-0.0023731396,-0.038321592,-0.012590377,-0.008028561,0.02362306,-0.01140161,-0.0036599932,-0.023880724,-0.018598622,-0.023060886,-0.023810452,-0.022065368,-0.0086961435,0.01533098,0.0072672823,-0.033707075,-0.034901697,-0.006107797,0.024712274,-0.009422286,0.028553803,-0.003823961,0.004274872,-0.015904866,-0.0024199875,-0.02604744,-0.005027367,-0.033191748,-0.009849774,-0.004834119,0.0022399158,-0.0038210328,0.012648936,-0.01823555,-0.014253478,0.04120274,-0.014651685,0.002742067,-0.000037034555,-0.006476724,0.026281679,0.009978605,0.038321592,-0.035862077,-0.0213158,0.037150394,0.024314066,0.0033818337,0.017333727,-0.016631009,-0.0131759755,0.0072087226,0.022182487,-0.035862077,-0.004222168,0.049705636,-0.030451143,-0.042163122,-0.0016865248,0.011331339,0.00043480718,0.019500444,-0.025742928,-0.043966766,-0.0046203756,0.013948966,-0.0033730497,0.031458374,0.036541373,-0.017603103,0.026750159,0.02114012,-0.025953744,0.020413978,-0.0027962348,-0.023107734,-0.009422286,-0.007618642,-0.036260284,-0.019746395,-0.02740603,0.006429876,0.000527771,-0.016373346,0.010066445,0.00654114,0.013468775,0.018387806,0.0004282192,0.0027933067,0.009838061,-0.007999281,0.0045442474,-0.041882034,0.007536658,-0.027874509,-0.03775942,0.009100207,-0.032840386,-0.0022940838,-0.019746395,-0.040757686,0.048112806,0.02101129,-0.007823601,0.007770898,0.0023936355,0.008157393,-0.0051152064,-0.0056685973,0.01764995,0.006927635,0.015424675,-0.0106754685,-0.0004809231,0.029912392,-0.0007685986,-0.040617142,-0.029256523,0.027616845,-0.009674094,-0.00651186,-0.017790494,0.011934506,0.0028108747,-0.024969937,-0.022510422,-0.039024312,-0.042233393,-0.021491481,0.039563064,-0.0053084544,-0.0286475,0.02853038,0.022721238,-0.006693396,0.004743351,-0.014663396,-0.026773583,-0.0020832682,0.022205912,-0.0030861064,-0.0039791446,0.01230929,0.018762589,0.04600465,0.021339225,0.015131876,0.0037214812,0.017076064,0.034316096,-0.029490761,0.0067988033,-0.018903133,-0.008754704,0.014358886,0.008286225,-0.008221809,0.017064352,-0.030029513,-0.020753626,0.0067051076,-0.01569405,-0.014054374,-0.0505489,0.003985001,0.0036599932,0.0044329837,-0.016783265,-0.004236808,0.0061487886,0.036096316,0.030521415,0.036143165,-0.0056246775,-0.00214622,0.031762887,0.008778128,0.015623779,0.029748425,-0.0036775612,-0.003780041,-0.008971375,-0.004673079,0.030380871,-0.0120633375,0.014440869,0.026070863,-0.014276901,-0.0046291593,0.015389539,-0.001108978,-0.017076064,-0.06450958,0.007478098,-0.013948966,0.00985563,-0.009603823,-0.02995924,-0.035674687,-0.047339816,-0.0009552582,0.0040464886,0.02101129,-0.0014288614,0.0060492367,-0.00008317335,-0.010874572,-0.02290863,0.023306837]},{"id":"class-FluxerError","type":"class","source":"main","text":"Class: FluxerError\nProperties: code: string","meta":{"url":"/docs/classes/FluxerError"},"embedding":[-0.026621552,0.0016783152,-0.042671647,0.005266438,0.03174009,0.012629162,-0.044832237,-0.0052889436,0.0047745174,-0.009221088,-0.002374398,-0.022081742,0.028241996,-0.0023534996,0.0048163147,0.048073124,-0.004880618,-0.010307814,0.0019258829,0.07063071,-0.01912379,-0.075620644,0.04650412,0.045449547,-0.036447093,0.004880618,-0.0019033767,0.023303503,0.029810995,0.014892637,0.07371727,-0.032151632,0.02736747,0.011921826,0.0026718008,0.012506985,0.034569435,0.048536107,-0.013439382,-0.016821735,-0.01378662,-0.015072686,-0.010307814,0.0040093088,0.0052696527,0.023856511,-0.027033094,0.00041716744,-0.019419586,0.050105106,-0.025862774,-0.041642796,-0.011947547,0.027058816,-0.036318485,-0.0006751843,-0.0456296,0.055197924,-0.030196814,-0.025296906,0.025772749,-0.016603103,0.013426522,0.002448347,-0.020654209,0.028396323,-0.017541932,0.05252291,0.018262127,0.06625809,0.010725785,0.00985126,0.014686867,-0.03799037,-0.014108137,0.012262633,0.0016083855,0.03145716,0.029322289,-0.026955929,0.036781467,0.023740767,-0.023136316,-0.040896878,-0.008224388,0.04133414,-0.05494071,-0.038273305,-0.002985279,-0.06157681,-0.011947547,0.005967343,-0.042825975,0.039353598,0.014583981,0.0029917094,-0.013297915,-0.044806518,0.0053371713,0.03991947,0.049256302,0.0016542015,0.01912379,-0.01831357,-0.04917914,-0.024962528,-0.039662257,0.003446655,-0.04447214,-0.025528397,-0.010410699,0.00090828363,-0.010243511,0.040639665,0.0055043595,-0.044832237,0.006349948,0.0061473926,-0.000257414,0.03541824,-0.025901357,-0.032357402,0.012487695,0.012191899,-0.041437026,0.010770797,0.03940504,0.0033019728,-0.046941385,-0.0112337805,0.03662714,-0.040279567,-0.012699896,-0.0046716323,-0.011452412,-0.011336666,-0.01082224,-0.011838231,-0.030428305,-0.021220079,-0.01927812,0.030196814,0.043391846,-0.01871225,-0.004346901,-0.0028293438,0.0145196775,0.020358413,0.000017683398,0.04208006,-0.0037488805,0.014841194,-0.027650405,0.031791534,0.0063531627,-0.06661818,0.042748813,0.01887944,-0.06198835,-0.036344208,-0.0056008147,0.011651752,0.011638891,-0.030582635,0.005768003,-0.018274989,-0.010552166,-0.03703868,-0.038016092,0.024911085,0.0022538295,-0.003912854,-0.04012524,0.0088224085,-0.0018197824,-0.02043558,0.037527386,-0.020615628,-0.01162603,0.020294111,-0.0025882064,0.008719523,0.052625794,-0.044369254,-0.015201292,-0.014005251,-0.019831128,0.026955929,0.012031142,-0.0014082416,-0.016474497,0.023496414,-0.010005589,-0.0024676379,0.019959735,0.015021243,0.027676126,0.0073884455,-0.02476962,-0.001629284,-0.017233275,0.046684172,0.045166615,-0.009999158,0.0024869288,0.0017297579,-0.047532976,-0.03228024,-0.0025383714,-0.021567315,0.05488927,0.049487796,-0.026235733,0.0051603373,-0.03783604,0.036781467,0.05375753,0.053448875,-0.0025817761,-0.04153991,-0.04033101,0.013825202,-0.015072686,-0.014468235,0.004703784,0.02736747,0.02816483,-0.010976568,-0.01495694,0.004173282,-0.009921994,-0.0027457494,-0.021760225,-0.059673432,0.04645268,0.00010690418,0.001909807,0.0051217554,-0.010880113,0.04310891,-0.040048074,-0.05591812,0.0024531696,0.0033437698,-0.02458957,0.021065751,0.011658182,0.0052278554,0.063891724,0.01436535,0.055866677,0.021631619,0.02754752,-0.027264586,-0.0047359355,-0.010783657,0.025296906,0.0107450755,0.01908521,-0.03680719,0.026724437,-0.0271617,-0.048356056,0.0017635172,-0.036086995,-0.04624691,0.057770055,-0.006616806,-0.029605225,-0.01516271,0.013683735,-0.026222872,0.03405501,-0.02754752,0.012577719,0.0025624852,0.011458842,0.06656674,0.006099165,0.03876201,0.02659583,-0.010365686,-0.01750335,0.020538464,-0.01318217,0.032434568,-0.007401306,-0.016268726,-0.023136316,-0.026004242,-0.00075877854,0.007980036,0.019162374,-0.043057468,-0.019059489,0.058181595,0.03937932,-0.038324747,0.03325765,0.049436353,-0.03523819,-0.035315353,-0.024911085,-0.028267717,0.005330741,0.027264586,0.0057712183,0.010057031,0.044034876,-0.027984781,0.00481953,-0.042002894,-0.061216712,-0.023663603,-0.056381106,-0.027496077,0.024293775,0.008134363,0.077009596,-0.014249604,0.01945817,-0.068984546,0.034312222,-0.046992827,-0.04236299,-0.018609365,-0.021631619,0.021747366,0.061319597,0.048510384,-0.0126677435,-0.045449547,0.0014628994,0.012924957,0.029991044,-0.026441503,-0.006713261,0.044806518,0.006443187,0.004247231,0.024550987,-0.053397432,-0.004787378,0.0043276097,0.057152744,-0.0026300037,0.0021396913,-0.041462746,0.021361545,-0.018969463,-0.07736969,0.036164157,-0.054632057,-0.020345554,0.0020191225,-0.03505814,0.006912601,-0.029090798,-0.010076322,0.029991044,-0.003719944,0.047610138,-0.0017619096,0.0114781335,-0.045526713,0.021168636,0.005237501,-0.065280676,0.04745581,-0.045218058,0.006436757,-0.021528734,-0.021991717,-0.0048548966,-0.02855065,-0.02618429,-0.018416455,0.0065235663,0.016204424,0.0012900843,0.025875635,0.04040817,-0.07479756,-0.012674174,0.0145196775,-0.009954146,-0.0010553774,0.0065782242,-0.02302057,0.02855065,0.04169424,0.021490151,-0.011278793,-0.04367478,0.034929536,0.014108137,0.044780795,0.0468385,0.023972258,-0.0057422817,0.046401236,0.007208396,0.01791489,0.048484664,0.023560718,-0.017297579,-0.0004653949,-0.003665286,0.020950004,-0.016705988,0.016603103,-0.024293775,0.04650412,0.040716827,0.0071376627,-0.065280676,0.058644578,-0.036447093,-0.027933339,0.026415782,0.01970252,-0.00031187086,-0.039482206,0.0030929872,0.0040671816,-0.016796013,0.035315353,-0.046529844,-0.01851934,-0.036781467,0.016988924,-0.02280194,0.031508602,0.0318687,0.047558695,-0.0059351916,0.005060667,-0.04012524,0.0009114988,0.03310332,-0.028139109,0.0546835,0.08045625,-0.019586775,-0.0055429414,-0.047198597,0.017554792,0.0109894285,0.013735178,0.0046234047,-0.0633773,-0.020242669,-0.010372117,-0.04210578,-0.04650412,0.00629529,0.014802612,0.017387604,0.049127694,0.021130053,-0.031354275,0.0051024645,-0.04272309,-0.03932788,0.013207891,-0.036987238,-0.003912854,-0.0038260445,0.032974716,-0.01770912,-0.018442176,0.0334377,0.029759552,0.008198666,0.008751675,0.003758526,-0.0039032083,-0.04231155,0.061422482,0.00807006,-0.002670193,0.037270173,-0.012211191,-0.02970811,-0.008610208,0.12932673,-0.006378884,-0.028010502,-0.05766717,-0.000538138,-0.04033101,-0.004581608,0.020834258,-0.014944079,0.003781032,-0.035366796,-0.053500317,-0.034209337,0.019741103,-0.055558022,-0.009272531,-0.05260007,-0.023097733,-0.0046941387,0.03582978,0.007439888,0.021387266,-0.034492273,-0.035341077,-0.02340639,0.08380002,0.020962864,-0.013105006,-0.021091472,-0.0248082,0.010558597,-0.04665845,-0.004880618,-0.025901357,-0.006790425,0.03716729,0.00089220784,-0.004089688,-0.007922162,-0.022403259,-0.020628488,-0.003620274,-0.036344208,0.0064303265,0.0042633065,0.023059152,-0.010757936,0.0016091892,-0.016783152,-0.030454027,0.021927414,-0.017541932,0.0151498495,-0.008906002,-0.018815136,-0.026338618,0.028241996,0.0026396492,0.04917914,-0.03364347,0.038710568,-0.02852493,0.033669192,-0.017001783,0.045526713,0.022467561,-0.045115173,-0.011716056,-0.031379994,0.035161026,0.024782479,0.042543042,-0.012166178,-0.022004578,-0.008809548,0.006655388,-0.030634077,0.04979645,0.01867367,0.009066761,0.002813268,-0.032563176,0.005153907,0.01199899,0.014532538,-0.022866242,0.007266269,-0.024460962,0.052420024,-0.00092757464,-0.005468993,-0.019818267,-0.005182843,0.033772077,-0.023149176,0.0016751001,-0.040022355,0.0135036865,0.05828448,-0.031071339,0.02479534,0.0061763288,-0.036678582,-0.015059825,0.0014902282,0.03148288,-0.0031910497,-0.0074849003,-0.01475117,0.017194694,0.015304178,0.022596167,0.0046137595,0.013619432,0.036344208,0.0123526575,-0.01675743,-0.01219833,-0.029476618,0.058335923,0.004314749,0.004289028,0.012172609,-0.024859643,0.0212458,-0.030273978,0.045192335,-0.026068544,-0.049256302,0.0074270274,-0.013124296,-0.028859306,0.014043833,0.009716224,-0.0016389295,0.0068225767,-0.02006262,-0.028473487,-0.016178701,-0.0059191156,0.017606234,-0.017850587,-0.032331683,0.005645827,-0.013079285,0.025837053,-0.017554792,0.01101515,0.016808875,0.018146383,0.019200956,-0.01989543,0.02914224,-0.03426078,-0.031148503,0.018776555,-0.023329224,0.046375517,-0.0055654477,0.029733831,-0.026119987,0.0039257146,0.00012629564,-0.02303343,0.0125262765,0.02615857,-0.004899909,-0.03405501,-0.006745413,0.027033094,-0.010520015,0.0073434333,-0.000019253303,-0.0016445561,-0.01338794,-0.005980204,0.011092314,-0.014892637,0.024846783,-0.040665384,0.005986634,-0.030556912,-0.00025500264,-0.013812342,-0.008121503,0.028499208,0.032768946,-0.015381342,-0.0059384066,-0.00845588,-0.0071376627,0.0029611655,-0.05231714,-0.019509612,-0.014789752,-0.033334814,0.030145371,-0.04313463,0.026492946,0.011889674,-0.0035109583,-0.030196814,-0.018840857,-0.008340133,0.07510622,-0.020319832,0.044009157,0.027058816,-0.0009854476,-0.003700653,-0.04550099,-0.02659583,0.015239874,0.015754301,-0.007793556,0.04012524,0.0007342629,0.0148669155,0.009092482,0.0049642124,-0.03125139,0.026467225,-0.011497424,0.050285153,-0.0013166094,-0.014776891,0.006848298,-0.034492273,-0.011317375,-0.045449547,0.05254863,-0.018763693,0.0046169744,0.01417244,0.00006892507,0.014185301,0.023805069,-0.045346662,-0.013362219,-0.023264922,-0.007992896,0.004703784,0.037938926,-0.00747847,-0.006771134,-0.019226678,-0.0032296316,-0.0377846,-0.028370602,-0.027521798,-0.0029386594,-0.0024853214,0.0088931415,-0.010918695,-0.015844325,0.014892637,0.0076842406,0.00983197,-0.013162878,-0.013336497,0.0032875044,0.006951183,0.0010175993,-0.012854223,-0.0010593963,-0.003581692,0.009484732,0.002932229,-0.019728241,-0.008642359,-0.021734504,0.013285055,0.0065396423,-0.0023647526,-0.006314581,-0.0016228537,0.029965322,0.006925462,-0.014532538,0.004861327,-0.025772749,-0.016500218,-0.012635592,0.0030479748,-0.003258568,-0.014391071,-0.0019081994,-0.031045618,0.030917011,-0.012661314,-0.004980288,-0.060084973,-0.013799481,-0.011696764,0.015689997,-0.008365855,0.0035752617,-0.00055059674,-0.025296906,-0.0012249772,-0.039868027,0.009201798,-0.029476618,-0.030711241,-0.020229807,0.019265259,-0.0006289663,0.018969463,-0.05885035,0.004070397,0.01476403,-0.007227687,-0.057975825,-0.012500555,-0.0042408006,0.028473487,0.012802781,0.007992896,0.031508602,0.026119987,0.00945901,0.0020432363,0.021335823,0.034183618,-0.011799649,0.012024711,0.033000436,-0.007182675,0.041256975,-0.012584149,-0.00443371,0.008976736,-0.021335823,-0.009741945,0.0057905093,0.04758442,0.0123526575,0.036858633,-0.026724437,0.004629835,0.041874286,0.021605898,0.052677236,-0.011523145,0.025901357,-0.021335823,0.034209337,0.0020030467,-0.0033534153,-0.053243104,-0.009150355,-0.038890615,0.015844325,-0.006931892,-0.016204424,0.026621552,0.0018937312,0.0071891053,-0.0016895684,0.012770629,0.008037908,-0.017644817,-0.0440606,-0.0023952967,0.0018712251,-0.03973942,0.028036224,0.033411976,-0.06157681,0.044806518,-0.013593711,-0.05962199,-0.0056393966,0.021528734,0.0040253843,-0.013902366,0.027393192,-0.045423828,-0.041205533,-0.003858196,0.009015318,-0.024268053,0.031765815,0.002586599,0.007182675,0.05260007,-0.01495694,0.015702859,0.05115968,-0.01713039,0.02636434,-0.043263238,0.00043404705,0.017001783,0.035315353,-0.016191563,0.01869939,0.013111436,-0.010294953,0.045218058,-0.006160253,0.017246136,0.034132175,-0.02226179,-0.018776555,0.004571962,0.012371949,0.029553782,-0.012802781,-0.008320843,0.0071312324,-0.010873683,0.016564522,0.0036556406,-0.011317375,0.022338955,-0.0046234047,0.0188923,0.016937481,0.012262633,-0.031405717,-0.015227013,-0.0027875467,0.005063882,0.014738309,0.036164157,-0.0026605476,0.022338955,0.030839847,-0.0665153,0.008764535,0.0020882485,0.038864896,0.009182506,-0.030145371,0.00027308794,-0.0072984206,0.01436535,0.01868653,0.015522809,-0.02599138,-0.0003166936,-0.00012508995,-0.013323637,0.007034777,-0.005671548,0.069241755,-0.011979698,-0.02303343,-0.0010819024,-0.046401236,0.029039355,0.0228148,-0.013207891,0.025039691,-0.049770728,0.020319832,0.018133521,-0.03068552,0.04586109,0.003781032,-0.0050027943,0.015522809,0.011722486,-0.02325206,0.030556912,-0.00206735,0.032588895,-0.0064882,0.02067993,-0.035726894,0.021541594,0.042825975,0.05612389,-0.0020930714,-0.056021005,-0.017606234,-0.0131564485,-0.012487695,0.0037520956,0.0022956266,0.009812678,-0.021605898,-0.031405717,0.036447093,-0.03696152,-0.021528734,0.008783827,0.005253577,0.018467898,0.026647273,-0.005829091,0.02186311,-0.023560718,0.004195788,0.03582978,0.004247231,0.053500317,0.030865569,-0.0030945947,-0.028113388,0.052214254,-0.0035688314,0.031945862,0.081382215,-0.013349358,0.04310891,0.004996364,-0.0070733596,0.028653536,-0.05278012,-0.02361216,0.060187858,-0.019792546,-0.018004915,-0.036549978,0.022956267,0.01338794,-0.036755748,0.024422381,-0.049693566,0.0012732047,-0.009825539,0.0154970875,0.0049127694,0.008237248,0.014532538,0.004957782,-0.025914216,-0.051005352,0.00707979,-0.007581355,0.01751621,0.005719776,-0.006439972,0.019625356,-0.0037360198,0.014108137,-0.02361216,-0.0073691546,-0.022917684,0.0021589822,0.002294019,-0.042825975,0.025103996,-0.0050060092,0.009754806,-0.00009519898,-0.036755748,-0.023239201,0.032717504,0.01633303,-0.006423896,-0.0076327976,-0.0025142578,-0.0014202984,0.008237248,0.0052889436,-0.009896273,0.024692455,-0.019946873,0.0047069993,0.010937986,-0.0043436857,0.00077806955,0.038530517,0.011716056,-0.00009354116,0.007105511,0.009278961,0.024332356,0.026544388,-0.004385483,0.0030962024,0.010044171,0.00031870307,0.0043790527,-0.009278961,-0.01830071,0.012732047,0.009420428,0.023084873,0.012449113,-0.0036363497,-0.000641827,0.015278456,-0.017631955,0.0032730363,-0.012564858,0.011510285,-0.0015151458,-0.023599299,-0.03696152,-0.015175571,-0.018223546,0.0019210601,0.0026685856,-0.00043243947,-0.009201798,0.005970558,0.02615857,-0.02341925,0.017361881,-0.018776555,-0.05002794,0.0005425588,0.01966394,-0.0023534996,-0.022660471,0.044214927,0.004748796,0.011838231,0.012828502,0.009246809,-0.0040125237,-0.011600309,-0.0574614,-0.0050928188,-0.043006025,0.0051796283,0.014686867,-0.006931892,-0.015651416,0.026621552,-0.020036899,-0.018069219,0.042388715,0.03716729,-0.040793993,-0.033746354,-0.0020319833,0.008590916,0.016577382,-0.01417244,-0.0017136821,0.004173282,-0.010339965,-0.0048066694,-0.015265595,-0.006629667,0.019329563,0.00015272025,0.016435916,-0.027521798,0.023637882,-0.00038180064,-0.0074270274,0.01750335,0.007992896,0.016114399,0.0056779785,-0.0018615796,-0.009722654,0.020036899,-0.03544396,0.0042825975,0.01868653,0.01199256,0.0016268727,0.0026846614,-0.01356799,-0.0103271045,0.060959496,-0.004385483,0.004661987,0.0069769043,-0.0057037,0.031302832,-0.010880113,0.026827322,0.026930207,-0.010802949,-0.009986297,0.028756421,0.019934013,-0.002943482,0.01752907,0.030248256,-0.014005251,0.015509948,-0.012912096,-0.008153655,0.023534996,0.008925294,0.025155438,-0.009336835,-0.023856511,-0.008449449,-0.0070733596,0.012706325,-0.005841952,0.02497539,-0.0072148265,0.011503855,-0.008918863,-0.031508602,-0.06044507,0.0072726994,-0.03053119,0.0000057207303,0.0016976063,-0.018763693,-0.01475117,-0.02006262,0.014982661,0.0012281924,-0.014468235,-0.0027875467,-0.050310876,-0.016628824,0.0032987576,0.00235993,0.020692792,-0.008918863,-0.0074527487,-0.007420597,-0.0006635293,0.000043580534,0.018274989,0.0084751705,0.012449113,0.0010674342,-0.01891802,0.007960744,-0.021104332,0.007729253,0.032228798,0.03426078,0.021232938,0.0017603019,-0.0073112813,0.06497202,0.012905666,0.022506144,-0.014699727,0.003446655,-0.02161876,0.016320169,0.019046627,-0.032151632,-0.0038421203,0.0070154862,0.0145196775,0.025451234,0.01630731,0.00629529,-0.011355957,-0.00767138,-0.005848382,-0.0096969325,-0.021425849,-0.014609702,0.041411303,0.02520688,0.008931723,-0.04601542,0.0074334578,0.0030608354,-0.00216702,-0.0032135558,0.03819614,-0.005038161,0.014313907,-0.011536006,-0.026621552,0.02537407,0.00924038,-0.020757094,-0.0049352758,0.0037649563,-0.015072686,-0.014699727,-0.006275999,-0.0173233,-0.02950234,-0.019715382,0.012867084,-0.010571457,0.037938926,-0.045912534,0.007394876,-0.0074270274,0.0020159073,-0.016937481,0.023509275,-0.035752617,-0.013683735,0.007163384,0.025142577,-0.009272531,0.014918358,-0.0029450897,-0.0031637207,0.012031142,-0.021580176,-0.03737306,0.025309766,-0.02713598,0.007497761,-0.01219833,0.010764367,0.018750833,0.022621889,-0.0066875396,0.022737635,0.006616806,0.0048516816,0.00049593893,0.014712588,-0.019651078,-0.0040093088,0.029605225,0.0031765813,0.0044112043,-0.02146443,-0.006912601,0.0072598387,0.010352826,-0.027624683,0.011497424,-0.012378379,0.015419924,-0.009028179,-0.016358752,-0.013760899,-0.042002894,-0.016088678,-0.0039385753,0.0076842406,-0.00028976658,-0.012269063,0.025271185,-0.0046877083,-0.025078274,-0.0043533314,0.0025335487,-0.005700485,-0.025541257,0.008777396,-0.0005180432,-0.016847456,0.006536427,-0.037681714,-0.03246029,-0.011529576,0.01851934,-0.02439666,0.0020351985,-0.022506144,-0.012539137,-0.014005251,-0.013490826,-0.015368481,-0.015960071,0.014082415,-0.0012635592,-0.029605225,-0.022004578,-0.025168298,0.017168973,-0.0036106284,0.027187422,-0.005906255,-0.0028856092,0.0056329663,-0.004784163,-0.009857691,-0.017374743,-0.019239537,0.0028454196,0.0021509442,-0.012744907,-0.009600478,-0.0017233276,-0.013490826,-0.013529408,0.03089129,-0.006337087,0.013992391,0.013220752,-0.0055558025,0.013310776,0.012532706,0.018056357,-0.037681714,-0.01475117,0.008307982,0.043623336,0.014326768,-0.0060477224,0.006414251,-0.022981988,0.01711753,0.034209337,-0.030994175,-0.0050060092,0.058233038,-0.013902366,-0.021695923,0.005867673,0.003604198,-0.01986971,0.02458957,0.0031315691,-0.031560045,-0.00036331345,0.015239874,0.020178365,0.016461637,0.03467232,-0.011285223,0.016088678,0.021400128,-0.021708783,0.025065413,0.0027152055,-0.037141565,-0.02439666,-0.010339965,-0.036292765,-0.017683398,-0.025862774,0.023316365,-0.0074527487,-0.0006816146,0.012275494,0.008481601,0.023084873,0.0080186175,0.009806248,0.011542437,-0.009690503,-0.014262465,-0.015677137,-0.04328896,0.031302832,-0.027856175,-0.011343096,0.010545736,-0.038479075,-0.023689324,-0.020962864,-0.02537407,0.021014309,0.021747366,-0.021708783,0.018982325,0.008886712,0.026441503,0.003562401,-0.009124634,0.012539137,-0.024988249,0.006713261,-0.016873177,-0.015857186,0.016191563,-0.005571878,-0.036369927,-0.0062277713,-0.0020818182,-0.015214153,-0.0019966164,-0.020654209,0.03109706,0.003758526,-0.014609702,-0.029476618,-0.011851092,-0.04650412,0.0045687472,0.042131502,-0.0078064166,-0.023072012,0.016628824,0.02636434,-0.0060091405,-0.0018422886,0.008185806,-0.014339629,-0.0018406811,0.008185806,-0.0039675115,0.006931892,0.005980204,0.012146887,0.02561842,0.004922415,0.013850924,0.017271858,0.040793993,0.045938253,-0.028910749,0.003996448,-0.013799481,-0.015329899,0.021541594,0.004800239,-0.0054175504,0.013606572,0.0085073225,-0.02030697,-0.003996448,-0.0050124396,-0.014776891,-0.016461637,-0.011561727,0.009291822,0.021104332,-0.013966669,0.020448439,-0.006144177,0.026287176,0.016281588,-0.0031106705,-0.0032891121,-0.0070926505,0.040768273,0.028987912,0.010140625,0.026145708,-0.0074720397,-0.019020906,-0.0143782105,0.009497592,0.010635761,-0.030556912,0.025232602,0.00688688,-0.027624683,-0.002448347,0.012777059,-0.021348685,0.013838063,-0.0412827,0.008758105,-0.03467232,-0.008217958,-0.028782142,-0.042594485,-0.03348914,-0.052059926,0.0029579503,0.0015698035,-0.0021268306,-0.005015655,-0.01615298,-0.0034177187,-0.015985793,-0.0038935628,0.018146383]},{"id":"class-Guild","type":"class","source":"main","text":"Class: Guild\nDescription: Represents a Fluxer guild (server).\nProperties: afkChannelId: string | null, afkTimeout: number, banner: string | null, bannerHeight: number | null, bannerWidth: number | null, channels: Collection, client: Client, defaultMessageNotifications: DefaultMessageNotifications, emojis: Collection, explicitContentFilter: GuildExplicitContentFilter, features: GuildFeature[], icon: string | null, id: string, members: GuildMemberManager, mfaLevel: GuildMFALevel, name: string, nsfwLevel: number, ownerId: string, roles: Collection, rulesChannelId: string | null, splash: string | null, splashHeight: number | null, splashWidth: number | null, systemChannelId: string | null, vanityURLCode: string | null, verificationLevel: GuildVerificationLevel\nMethods: addRoleToMember(userId: string, roleId: string) -> Promise — Add a role to a member by user ID. Does not require fetching the member first.; ban(userId: string, options: { reason?: string; delete_message_days?: number; ban_duration_seconds?: number; }) -> Promise — Ban a user from this guild.; bannerURL(options: { size?: number; }) -> string | null — Get the guild banner URL, or null if no banner.; createChannel(data: { type: 0 | 2 | 4 | 5; name: string; parent_id?: string | null; topic?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; permission_overwrites?: Array<{ id: string; type: number; allow: string; deny: string; }>; }) -> Promise — Create a channel in this guild.; createEmojisBulk(emojis: { name: string; image: string; }[]) -> Promise — Bulk create emojis. POST /guilds/{id}/emojis/bulk.; createRole(options: RESTCreateRoleBody & { permissions?: string | PermissionResolvable; }) -> Promise — Create a role in this guild.\nRequires Manage Roles permission.; createStickersBulk(stickers: { name: string; image: string; description?: string; tags?: string[]; }[]) -> Promise — Bulk create stickers. POST /guilds/{id}/stickers/bulk.; delete() -> Promise — Delete this guild. POST /guilds/{id}/delete.\nMust be the guild owner.; edit(options: { name?: string; icon?: string | null; system_channel_id?: string | null; system_channel_flags?: number; afk_channel_id?: string | null; afk_timeout?: number; default_message_notifications?: DefaultMessageNotifications; ... 7 more ...; features?: GuildFeature[]; }) -> Promise — Edit this guild. PATCH /guilds/{id}.\nRequires guild owner or Administrator.; fetchAuditLogs(options: { limit?: number; before?: string; after?: string; userId?: string; actionType?: number; }) -> Promise — Fetch guild audit logs. Requires View Audit Log permission.; fetchBans() -> Promise — Fetch guild bans. Requires Ban Members permission.; fetchChannels() -> Promise — Fetch all channels in this guild.; fetchEmoji(emojiId: string) -> Promise — Fetch a single emoji by ID.; fetchEmojis() -> Promise — Fetch all emojis in this guild.; fetchMember(userId: string) -> Promise — Fetch a guild member by user ID.; fetchRole(roleId: string) -> Promise — Fetch a role by ID.; fetchRoles() -> Promise — Fetch all roles in this guild.; fetchVanityURL() -> Promise — Fetch vanity URL for this guild. GET /guilds/{id}/vanity-url.\nRequires Manage Guild permission.; fetchWebhooks() -> Promise — Fetch all webhooks in this guild. Returned webhooks do not include the token (cannot send).; iconURL(options: { size?: number; }) -> string | null — Get the guild icon URL, or null if no icon.; kick(userId: string) -> Promise — Kick a member from this guild.; removeRoleFromMember(userId: string, roleId: string) -> Promise — Remove a role from a member by user ID. Does not require fetching the member first.; resetRoleHoistPositions() -> Promise — Reset role hoist positions. DELETE /guilds/{id}/roles/hoist-positions.; resolveRoleId(arg: string) -> Promise — Resolve a role ID from an argument (role mention, raw ID, or name).\nFetches guild roles if name is provided.; setChannelPositions(updates: { id: string; position?: number; parent_id?: string | null; lock_permissions?: boolean; }[]) -> Promise — Update channel positions.; setDetachedBanner(enabled: boolean) -> Promise — Set detached banner feature. PATCH /guilds/{id}/detached-banner.; setDisallowUnclaimedAccounts(enabled: boolean) -> Promise — Set disallow unclaimed accounts. PATCH /guilds/{id}/disallow-unclaimed-accounts.; setRoleHoistPositions(updates: { id: string; hoist_position?: number; }[]) -> Promise — Update role hoist positions. PATCH /guilds/{id}/roles/hoist-positions.; setRolePositions(updates: { id: string; position?: number; }[]) -> Promise — Update role positions. PATCH /guilds/{id}/roles.; setTextChannelFlexibleNames(enabled: boolean) -> Promise — Set text channel flexible names feature. PATCH /guilds/{id}/text-channel-flexible-names.; splashURL(options: { size?: number; }) -> string | null — Get the guild splash (invite background) URL, or null if no splash.; transferOwnership(newOwnerId: string, password: string) -> Promise — Transfer guild ownership to another user. POST /guilds/{id}/transfer-ownership.\nMust be the guild owner.; unban(userId: string) -> Promise — Remove a ban (unban a user).","meta":{"url":"/docs/classes/Guild"},"embedding":[-0.03591699,0.026400737,-0.00625675,-0.0025429754,-0.010484114,0.00803012,-0.059645183,0.0029051425,0.030721765,0.042036366,0.05130285,-0.0045395778,0.006743802,0.009010469,0.03414362,0.0034780535,-0.08756952,0.0015485768,-0.01978182,0.035717174,0.0268753,0.000042270723,-0.0058539947,0.05225198,-0.04283563,0.02637576,0.018370617,0.032145455,-0.016072728,-0.066139214,0.062242795,-0.029348029,0.008217447,-0.030272178,0.00043163457,0.029123234,0.013362719,0.022591738,0.005591736,-0.038189903,0.011439486,-0.03736566,0.03017227,-0.023490911,-0.03736566,0.059395414,-0.05519927,0.0024290176,0.016097706,0.027999267,-0.020256383,-0.0063941237,-0.017259138,0.08077576,0.0053169886,-0.012632141,-0.028423877,0.010758862,-0.05544904,0.018632876,-0.0008609275,-0.036541417,0.0047955927,-0.024365107,0.011096052,0.01742149,-0.080825716,0.03726575,0.033069607,0.048905056,0.029073281,-0.024402574,0.015598165,-0.010927457,-0.023490911,-0.014261893,0.029897522,0.04480882,-0.010658954,-0.036066853,-0.004514601,0.048580352,-0.03751552,-0.042635817,0.01538586,-0.008173738,-0.035367496,-0.027374841,0.008061341,-0.020256383,-0.024377596,-0.000100103316,-0.10880001,-0.021630121,0.023653261,-0.051352806,0.024664832,-0.0059414147,-0.026775392,0.071334444,0.09526245,-0.045533154,-0.08467218,-0.03794013,0.036291648,0.02324114,-0.045158498,0.04478384,-0.0034593206,-0.0064440775,-0.084872,0.026725437,-0.010427916,0.031820755,-0.014536641,-0.005835262,0.021267954,-0.010746374,0.028448854,-0.04098733,-0.06299211,-0.03769036,0.045583107,-0.01926979,0.031945642,0.0020481178,-0.011926539,-0.00782406,-0.06329183,-0.0204562,0.029597798,-0.0046550967,0.04743141,-0.0043865936,-0.052451793,0.014611571,-0.01200147,-0.030971536,-0.039538663,-0.0054168967,0.027999267,-0.021792471,0.018945089,-0.0039307624,-0.0897675,0.022267036,-0.01496125,0.00029543162,-0.050903216,0.008198715,-0.07712912,0.011764188,-0.0036903585,0.009297705,-0.005048485,-0.04598274,-0.024564924,0.03129624,-0.03998825,-0.016672177,-0.017396512,-0.01683453,-0.004973554,-0.022441875,-0.00011376263,-0.06239266,0.0039338847,0.004280441,-0.07543068,0.016871994,0.04293554,-0.0019716255,-0.024140313,-0.017284116,-0.03624169,-0.025339212,-0.010746374,-0.035542335,-0.025551517,-0.01009697,0.02180496,0.019332232,-0.05020386,-0.05544904,-0.0818248,0.024277687,-0.01504867,0.008192471,0.03364408,0.046806984,-0.008848119,0.021779982,0.032744907,0.0043772273,0.03084665,-0.015685584,0.037015982,0.016459873,0.025751334,-0.031471077,0.014299358,0.00008429753,0.065639675,-0.035792105,0.013812306,-0.018220754,0.004661341,-0.018657852,-0.008785675,0.00879192,0.03017227,-0.04141194,-0.02400294,-0.001865473,-0.049479526,0.04268577,-0.06983582,0.007099725,-0.014324335,0.01031552,-0.05509936,0.043085404,0.0063660243,-0.034867954,0.012282462,0.026250875,0.03339431,-0.007249587,0.025489075,0.03017227,-0.0067687794,0.010178146,-0.030022409,-0.03129624,0.0032345273,-0.041361988,0.013250322,0.06299211,0.0044833794,-0.005760331,-0.011027365,-0.028298993,-0.0052389354,-0.028274015,0.021105602,-0.0022276402,0.004773738,-0.01742149,0.03356915,0.022029754,0.07762866,0.02620092,-0.026175942,-0.013874749,0.011220938,-0.030971536,-0.012201287,0.034643162,0.0061224983,0.016722132,0.028249038,0.023690727,-0.013512582,-0.0015634069,-0.01352507,0.025251793,0.028274015,0.005067218,0.0015938476,-0.0204562,0.016297521,0.02754968,0.061893117,-0.017396512,0.009216529,0.012569698,0.021879891,0.023715705,0.02255427,-0.034967862,0.01648485,-0.0064877872,0.008086318,0.016160147,-0.017608818,0.0461326,0.020493666,-0.005395042,0.015623142,0.04503361,-0.041611757,-0.0140371,0.0014876953,-0.04151185,0.048030857,0.015610653,0.051028103,-0.006793756,0.031645916,0.04116217,0.007262076,0.039538663,-0.032769885,-0.022591738,0.02434013,0.0004987604,-0.007998899,0.014986227,0.01919486,-0.04370983,0.04166171,0.023728192,-0.045333337,-0.013962168,-0.023928009,0.0024415061,0.011732967,0.014186962,0.050903216,0.050153907,0.02645069,-0.049654365,-0.023428468,0.00041875578,0.0038776863,-0.059445366,0.017309092,-0.010234344,0.005957025,0.047381453,0.03509275,-0.06439082,0.013375208,0.054549865,0.014736457,0.0004429523,-0.014024611,0.041037284,0.03649146,-0.008735722,0.01792103,-0.03659137,-0.016921949,-0.00803012,0.0048611574,-0.0056479345,-0.0051327827,0.03389385,-0.020693481,0.026900278,-0.02932305,0.033444263,-0.030122316,-0.012507255,-0.036066853,-0.042485952,0.025139395,-0.0028801656,-0.013262811,0.036841143,-0.027224978,-0.0042898073,-0.040337928,-0.012195042,0.018145824,0.021342885,0.0057696975,-0.00035572777,0.026026081,-0.041461896,0.017970985,0.011670524,-0.021093115,-0.0050047752,0.000164107,-0.022829019,-0.02442755,-0.0018920111,-0.0017265383,0.020393757,0.029672729,-0.021592656,0.034468323,-0.01504867,-0.01564812,-0.029697707,-0.009185309,0.0018233242,-0.009965841,0.015610653,0.0028645548,0.025926173,-0.02612599,-0.013824794,0.004227365,-0.013687421,0.034168597,0.03644151,0.01504867,0.012863178,0.04353499,0.033344354,-0.048080813,-0.002318182,-0.035292566,0.034393393,0.031396147,0.013812306,0.005373187,0.0054075303,0.005466851,0.027349865,0.023203675,0.0189326,0.051852345,-0.041911483,0.048405513,-0.035867035,0.010708908,0.046282463,0.010309275,-0.021405328,-0.001543113,-0.056747846,-0.0013120754,-0.011302113,0.030496972,-0.042236183,0.023503399,-0.075280815,-0.09026704,-0.010577778,0.061493486,0.004230487,0.009029202,-0.04343508,-0.013699909,-0.0044396697,-0.018033426,0.03162094,-0.010852526,-0.032994676,-0.012463545,0.0014041782,-0.015585676,0.0046956846,0.0329697,-0.05240184,0.007917724,0.00659394,-0.009241506,-0.030022409,0.018620387,0.030247202,-0.03719082,-0.040262997,0.019244812,0.012288706,-0.009666116,-0.014723968,0.0038402206,0.020368781,0.0120576685,0.024552435,0.018158311,0.010352985,-0.06394123,0.017309092,-0.0045083566,0.021829937,-0.0034218552,0.032744907,0.0363416,0.014761434,-0.0439596,-0.016584758,0.00023611113,-0.033294402,0.026525622,0.018720295,0.018957578,-0.00032723832,-0.03339431,-0.038589533,0.03212048,0.027624613,0.016160147,-0.023865566,-0.024327641,-0.0064440775,-0.008548394,0.019669423,0.03516768,-0.01254472,0.014499174,-0.023016347,-0.018058404,-0.045583107,0.017096788,-0.010690175,0.00012566576,-0.07682939,-0.0059601474,-0.0014283748,0.033369333,-0.0005733012,-0.00071184576,-0.026750416,-0.0039057855,0.048730213,-0.012800735,0.0027053263,-0.0015704317,-0.001956015,-0.0009225896,0.0145116635,-0.052301932,0.006643894,-0.014324335,0.0053669424,-0.0012035813,0.022816531,0.019557027,-0.024914602,0.004726906,0.013462627,-0.008585859,-0.06873683,-0.009054178,0.035817083,0.01818329,-0.025002021,0.044259325,0.0036747477,-0.017883563,0.015011204,-0.04183655,-0.0070310384,0.020143988,-0.03431846,0.004467769,0.010034528,-0.019919194,0.01928228,-0.00659394,0.010352985,-0.022779064,0.030322133,0.008211204,0.01538586,0.029572822,-0.029722683,0.0143493125,-0.037140865,-0.015398349,0.021580167,0.0008086318,-0.025976127,0.006350414,-0.015910378,0.024577413,-0.00048158865,0.01579798,-0.00064472,-0.057197433,-0.0014955006,0.018907623,0.04623251,-0.030347109,-0.017009368,-0.0021214879,0.011614326,0.013162903,0.013225345,0.01529844,0.008985492,-0.029198166,0.011464464,-0.0029972454,-0.024452528,-0.02375317,-0.08192471,0.021667587,0.016522314,-0.055798717,0.000021001208,-0.031121397,-0.0049111117,-0.013762352,0.03406869,0.020668505,0.031546008,0.023503399,-0.004342884,0.011408266,-0.0026241508,-0.022679158,-0.009385125,-0.038439672,0.0068499544,0.0032345273,-0.008823141,-0.04083747,-0.0034468323,-0.010059505,-0.048030857,0.024240222,-0.02240441,-0.016847016,0.01885767,0.034218553,0.022379432,-0.015548211,-0.028124154,0.0073682284,-0.008042608,-0.014274381,-0.005569881,0.024689808,0.0016375575,0.025976127,-0.0042679524,0.021954823,0.034118645,0.028473832,0.008392287,-0.030571904,-0.028673647,-0.00027513778,-0.028498808,-0.01386226,-0.0280742,0.0011169423,-0.02173003,-0.034718093,-0.029098257,0.015885402,0.009135354,0.010871259,-0.007880257,0.053201105,-0.0067750234,0.023790635,-0.034368414,0.0009873738,-0.010234344,-0.006693848,-0.031970616,-0.026500644,-0.016609736,-0.017009368,-0.014324335,0.01742149,-0.023278605,0.031246284,-0.027349865,-0.028423877,0.04183655,-0.03746557,0.021068137,-0.025876218,-0.009416346,0.027175024,0.028323969,0.022741599,-0.0073932055,-0.0037215797,0.04370983,0.0007910699,0.0115456395,0.012269974,0.013125437,0.014898808,0.023528377,0.009772269,-0.012707071,-0.016634712,-0.035367496,0.011583105,0.045458224,0.00030206612,-0.00048041786,-0.029348029,-0.0033281913,0.048730213,-0.03212048,0.029547844,-0.013450139,0.030796697,-0.0047862264,-0.0085671265,0.011601837,0.012525988,-0.014786411,-0.021954823,0.039164007,0.0032470159,0.018820204,0.013362719,-0.04927971,-0.0023759415,0.018120846,-0.008086318,-0.027574658,-0.006194307,-0.013899726,-0.011551883,0.025051976,0.008754455,-0.016859505,-0.06449073,0.011864096,-0.058346376,-0.0028395778,-0.00701855,0.0063941237,0.0090791555,-0.040862445,0.017046833,-0.03371901,0.015960332,0.024027918,-0.016010286,-0.020281361,-0.000057222802,0.0044146925,-0.009166576,0.0351427,-0.00015757003,-0.008623324,-0.021093115,0.0053232326,0.023003858,-0.023890544,-0.020318827,0.022079708,-0.00722461,0.015161066,-0.010796328,-0.008642058,-0.01411203,-0.002892654,0.019656934,-0.03729073,-0.04715666,-0.022978881,-0.012269974,-0.009066667,-0.030621856,0.052202024,0.003393756,0.009260239,-0.03779027,-0.007449404,-0.0032688708,-0.04118715,-0.0034780535,-0.026076036,-0.012825713,0.030996513,0.009878421,0.017721213,0.027025163,0.017371535,-0.029697707,-0.011146006,-0.031895686,-0.0044865017,-0.018045915,-0.027000185,-0.007262076,-0.017209183,-0.0047862264,0.006625161,0.02450248,-0.028323969,0.00147989,-0.0442843,0.0106027555,-0.023415979,-0.0019716255,0.013112948,0.0056479345,0.0014236915,-0.022779064,-0.0041930215,0.0012902205,-0.04151185,-0.030946558,-0.032919746,-0.059045736,0.01310046,0.007836548,-0.0043460056,-0.022129662,-0.009141599,-0.004021304,-0.105203316,-0.011146006,0.041287057,-0.02104316,-0.019831773,0.014586594,0.0034686872,0.04648228,-0.004558311,-0.005741598,0.035392474,-0.030996513,0.005573003,-0.0072995415,0.053051244,0.018832693,0.019482095,0.0069748396,0.022117173,0.018395593,0.01698439,-0.0011067953,-0.02205473,0.01818329,0.026026081,-0.010671442,0.030621856,-0.027924336,0.032994676,-0.01767126,0.020206429,0.013974656,-0.020531131,-0.02450248,-0.021917356,0.010871259,0.005185859,0.019881727,0.010765106,-0.033244446,0.033419285,-0.008379798,-0.00811754,-0.004274197,0.006981084,-0.021168046,0.021605143,0.015535722,0.004973554,0.010559046,0.007867769,0.01564812,0.02114307,0.028373923,-0.022841508,-0.020643529,-0.03804004,0.017608818,-0.044509094,-0.024827182,0.033594124,0.04328522,0.020606061,-0.030996513,0.023278605,-0.021505237,-0.043559965,-0.018782739,0.008261157,-0.017533885,0.0036903585,0.011951516,-0.009416346,0.0019903583,0.0035873281,0.024964556,-0.002967585,0.0005100781,-0.016110195,-0.0028458221,-0.011314602,0.015435814,0.03769036,-0.0006837466,0.014474197,0.00621304,-0.021392839,-0.0013003674,-0.007861525,-0.017284116,0.04775611,0.033519194,0.037090912,-0.004708173,0.010352985,-0.0018045915,0.0047924705,-0.011383289,0.026550598,-0.03399376,-0.0025710745,0.0039619836,0.0016235079,-0.035392474,0.0026382003,-0.0058633615,0.018820204,0.012607164,0.0002484045,-0.028099176,0.0030175392,0.014898808,-0.0076367315,-0.007961433,-0.03983839,-0.00014781338,0.042635817,0.016010286,0.008798164,0.010303031,0.0006400368,0.014886319,-0.0031190084,0.030896604,0.0026928377,0.0133252535,-0.012613407,0.0043865936,-0.009747292,0.022841508,-0.022754088,-0.00085936644,0.00060881546,0.021205511,-0.00482057,-0.0054918276,0.014087053,-0.0061006434,-0.043210287,0.004564555,-0.016160147,0.0008437558,-0.028698625,0.03771534,-0.005757209,0.030247202,-0.004948577,0.017758679,-0.017059322,-0.019919194,0.019844262,0.0031642795,-0.017783657,0.037890177,-0.012494767,0.0048549133,-0.03921396,0.00088356296,-0.04158678,0.012813224,0.01377484,0.01162057,0.023216164,-0.048130766,-0.019069973,0.012813224,-0.017021855,-0.024027918,-0.025726356,-0.037215795,-0.030721765,0.0031190084,0.042061344,0.03386887,0.004920478,0.040737562,0.01622259,-0.011851608,0.022766577,0.05764702,-0.0043709828,0.01808338,-0.022616714,-0.013412673,0.06269238,-0.0029020205,0.017533885,-0.027699543,0.007555556,-0.030921582,0.011558128,0.052451793,0.0059382925,0.007817815,-0.037215795,-0.04021304,0.016547292,-0.0068999087,-0.0077990824,-0.00006122303,0.062792294,0.002700643,0.00048002758,0.0060600555,-0.027424796,-0.004180533,-0.03286979,0.038264833,-0.01928228,0.029048303,0.005441874,0.03017227,-0.0072745644,0.009522499,0.035617266,-0.002363453,-0.021592656,-0.052301932,0.019719377,-0.01951956,-0.014586594,0.01238237,-0.004445914,0.022192104,-0.005257668,-0.0125572095,-0.059845,0.0025117542,-0.023515888,0.01767126,0.0053169886,0.014324335,-0.016659688,0.012369881,0.012244997,-0.014087053,0.018670341,0.016809551,0.012744538,0.019032508,0.035217635,0.034293484,-0.037965108,-0.0143368235,-0.0038558312,0.020730948,0.01208889,0.053800557,0.0283989,0.0028348947,-0.016359964,0.012326172,-0.02560147,-0.023728192,0.023615796,0.025139395,0.018070891,0.007674197,0.0086483015,0.016959414,0.002297888,0.04368485,-0.02249183,-0.014186962,0.002010652,0.0037809003,0.0002464532,0.008236181,0.020418735,0.008492195,0.037240773,-0.00764922,0.0046707075,0.02450248,-0.012725804,-0.01809587,-0.053151153,0.0101843905,0.013874749,0.016522314,-0.02662553,-0.016334988,-0.030871628,0.022966392,-0.025126908,-0.042460978,0.011764188,-0.019094951,0.0062380168,0.008579615,0.027749497,0.017471444,-0.0023572086,-0.045458224,0.006000735,-0.018620387,-0.0021043161,-0.015835447,0.02366575,0.032495137,-0.02680037,-0.008273646,-0.014424244,0.010546558,0.022341967,0.001003765,0.03501782,-0.023865566,0.033169515,0.019644447,0.005635446,-0.0050921952,0.014599083,-0.014611571,0.014386778,0.013537559,-0.017708724,-0.03739064,-0.019344721,0.00091400376,-0.005804041,-0.015573188,0.010964923,0.0083236005,-0.018570432,-0.018720295,0.03399376,0.0037871446,0.025314236,-0.011121029,0.01885767,-0.039763454,-0.008336089,-0.009154087,-0.022129662,-0.0038558312,-0.03779027,0.017783657,0.022079708,-0.015872912,-0.0051546376,0.02316621,-0.03846465,0.025564006,0.007212122,-0.00010927457,-0.00313618,-0.02442755,-0.02882351,0.0059414147,0.08682021,0.00008190714,-0.0055792476,0.0025710745,0.027274933,0.008304868,-0.008941782,0.013562536,-0.0021168045,0.014499174,-0.01824573,0.01809587,-0.0010045455,0.0110336095,0.01538586,-0.010577778,-0.026500644,0.018945089,0.026675483,0.002964463,0.016422408,0.026076036,0.0076304874,0.0098472,0.005042241,-0.016971903,0.02797429,-0.0042086323,0.03119633,0.011639303,-0.0024680442,0.025176862,-0.017858587,0.0031408635,-0.035592288,0.0061849407,0.013013041,-0.011139762,0.01614766,-0.001695317,0.018870158,-0.022516806,0.01496125,-0.010658954,-0.010740129,-0.0121326,0.0014650598,-0.049354643,-0.0032626265,-0.020143988,-0.03254509,0.012488523,0.019619469,-0.022441875,-0.027799452,-0.009572453,-0.018120846,0.034368414,0.004951699,-0.019719377,-0.011951516,0.04236107,-0.01572305,0.0024774107,0.004040037,0.00917282,0.0015103307,-0.009678605,0.011683012,0.042136274,-0.00046910014,0.011614326,0.011014877,0.013425162,-0.000034733705,0.011046099,0.0036716256,0.00306281,-0.024315154,0.0029379248,0.0115456395,-0.0067687794,0.010702664,0.02999743,-0.030022409,0.0586461,0.026550598,-0.031720847,0.002936364,0.0014939395,-0.0067000925,-0.015285952,-0.0018045915,0.02492709,0.0003258724,0.012332416,-0.03506777,0.0033281913,0.01123967,-0.01758384,0.012051424,0.0101843905,0.03366906,0.011308357,0.0033750231,0.018657852,-0.0012028008,0.019119928,0.017733702,0.011083564,0.0044303034,-0.012669606,0.010877503,0.021655098,-0.016871994,-0.0110336095,0.04608265,0.0053638206,-0.02612599,-0.02180496,0.037315704,0.04608265,0.035692196,0.017721213,-0.010421672,0.004233609,-0.026675483,-0.010633977,0.009859689,0.008204959,-0.007024794,0.005373187,0.02874858,-0.03349422,-0.008155005,0.006500276,0.017121764,-0.007293297,-0.0360169,-0.014761434,-0.038514603,0.017221672,0.016197614,0.0069373744,0.0041961437,-0.034768045,-0.0045083566,-0.0048455466,-0.003874564,-0.005548026,-0.02450248,-0.021580167,-0.00655023,-0.02442755,0.006309826,-0.029772637,0.036391556,0.011158495,0.0153608825,-0.022716623,-0.014536641,-0.025626449,-0.010640221,-0.0064690546,-0.0060132234,0.0073682284,0.0073744725,0.0020200184,0.024477504,0.008935538,0.01757135,0.010477871,-0.054449957,0.0010693298,0.021193022,-0.011258403,-0.012788247,-0.0022604226,-0.029747661,-0.042460978,-0.024964556,-0.008635813,-0.01563563,0.0070310384,0.0040712585,-0.020019101,0.016597247,-0.005035997,0.00033114097,-0.0031158864,-0.0069685956,-0.01953205,-0.0046082647,-0.023515888,0.031795777,-0.04520845,0.038139947,0.01179541,0.0052857674,0.0040275487,-0.0028052344,-0.00591956,0.004751883,0.0049829204,-0.011164739,-0.0009826906,-0.019794308,0.047281545,-0.0046519744,-0.0018779616,-0.022304501,0.020231407,0.04445914,0.03169587,0.013200369,-0.009859689,-0.0057072546,0.020231407,-0.015161066,0.019482095,0.006119376,0.019107439,-0.010977412,-0.050553538,-0.0046082647,0.009784757,-0.031845734,-0.016859505,0.03726575,0.013962168,0.014211939,-0.019419653,-0.00059086323,-0.0027365475,-0.011127274,-0.027574658,-0.03669128,0.001768687,-0.014524152,-0.006425345,0.009272728,-0.017458955,-0.027649589,0.021118091,-0.016709642,-0.00053856755,0.0036404042,-0.041736644,-0.031246284,0.0038308543,0.0017905419,0.009122865,-0.00044217176,0.012157577,-0.016722132,-0.022591738,0.024015428,-0.042136274,0.027025163,0.008529661,-0.016971903,-0.0036622593,0.024977045,-0.027924336,0.031221306,0.0002552342,0.0009257117,0.014786411,-0.016946925,-0.024465015,-0.010121947,0.029397981,-0.023503399,-0.00212461,-0.0068499544,-0.031096421,0.021005696,-0.013162903,0.00040587698,-0.016285034,-0.015485768,0.009741047,0.024752252,0.013475115,0.013737375,0.015460791,-0.030022409,-0.022117173,0.007530579,0.010746374,0.038589533,-0.025464097,-0.024102848,-0.03524261,0.032994676,-0.010471626,0.011932783,-0.013000552,-0.0021136825,-0.009054178,-0.008448485,-0.023940498,0.010334252,0.0034468323,-0.011583105,0.002297888,-0.0026709829,0.008011387,-0.018158311,0.024789717,0.0018451792,-0.0015376493,-0.002987879,-0.027849406,0.029797615,-0.020531131,-0.018120846,0.0129880635,-0.0022151517,-0.0062505053,0.0204562,-0.0054356293,0.038989168,-0.011008632,0.031221306,0.0012496328,-0.036616348,-0.008979248,-0.00072940777,0.0153608825,-0.015373372,-0.020056566,0.0006419881,-0.013150414,0.015485768,0.019332232,-0.005950781,-0.0032220387,0.026750416,-0.034768045,-0.01564812,0.0073494953,-0.0005608127,-0.021367863,0.005682278,0.021018183,-0.002962902,-0.01428687,0.011464464,-0.032570068,0.047106706,0.009241506,0.02874858,-0.015061158,-0.027175024,0.0103592295,0.03399376,-0.0028083564,0.056897707,0.0005288109,-0.007580533,-0.01123967,0.0007715565,0.029847568,-0.0143493125,0.022679158,0.038164925,0.014911296,0.010402939,-0.0024774107,-0.027000185,-0.039188985,-0.0018248854,-0.0136749325,0.007318274,-0.022691645,-0.03534252,0.0072308546,-0.022841508,-0.014761434,0.012170065,0.04236107,-0.0040462813,0.013300276,0.0062005515,0.015485768,-0.016247569,0.0021776862,-0.02173003]},{"id":"class-GuildBan","type":"class","source":"main","text":"Class: GuildBan\nDescription: Represents a ban in a guild.\nProperties: client: Client, expiresAt: string | null, guildId: string, reason: string | null, user: User\nMethods: unban() -> Promise — Remove this ban (unban the user).\nRequires Ban Members permission.","meta":{"url":"/docs/classes/GuildBan"},"embedding":[-0.016625462,0.02133718,0.003732545,0.0023470898,-0.027919553,0.014415749,-0.07763226,-0.0010858579,0.03116982,-0.02264664,0.018484429,-0.034022573,0.021009814,0.01084981,0.061357547,-0.005711349,-0.033812124,0.030187726,0.0065414533,0.06879341,0.0317544,0.04929181,0.01747895,0.055090845,-0.010294459,0.0381614,0.00942928,0.014520974,-0.016941136,-0.021898378,0.089090034,-0.015643368,0.003378874,-0.024879737,0.017174968,0.02817677,0.024716053,0.015128938,-0.0059247212,-0.0025955364,-0.008341961,-0.053968452,-0.010399683,-0.022249125,0.01362072,0.066548616,-0.01296599,0.012708775,-0.010767968,0.0444281,-0.026165813,-0.031356886,0.011919592,0.037319604,-0.01070951,-0.03388227,-0.010002169,0.053781386,-0.010592595,0.00011719007,-0.0016324404,0.011346703,-0.02817677,0.03984499,-0.013725945,0.010627669,-0.039657924,0.033835504,0.0008702939,0.031777784,0.02745189,-0.0057055033,0.012837383,0.050554503,-0.06781131,0.01096088,0.016496856,0.008154895,-0.009493584,0.0014373368,-0.009692341,0.019641897,-0.047023635,0.03378874,0.053220186,0.021079965,-0.044100735,-0.021454096,0.044451483,-0.017467258,0.011475311,-0.015386153,-0.06575359,0.0117091425,0.028246919,-0.034911133,-0.0028746736,-0.000022835167,-0.005030313,0.06332173,0.06958844,0.039564393,-0.029369313,-0.012229419,0.0222842,0.009031765,-0.07445215,0.02862105,-0.06523916,0.007248795,-0.02862105,0.05307989,-0.012498327,0.039377328,-0.057662997,-0.019852346,0.040944003,0.0016002884,0.003732545,-0.03437332,-0.017654324,-0.0046620276,0.035939995,-0.04232361,0.0009908635,0.008295194,-0.00065107626,0.009873561,-0.020963049,-0.05134953,0.033952422,0.0111421,-0.0019729584,-0.001955421,-0.040242504,0.0122177275,-0.0014512205,-0.039494243,-0.035074815,-0.017899849,0.008032133,-0.011662376,0.038184784,0.028059853,-0.039774843,0.059159525,-0.008084745,0.0134570375,-0.029018564,0.0038728444,-0.04845001,0.03313401,-0.0017873541,-0.009861869,0.0038962276,-0.043095257,-0.025440933,0.033110626,-0.041551966,-0.012229419,0.05106893,-0.038441997,0.04760822,-0.024739437,-0.024856353,-0.009166218,0.0019276534,0.020273244,-0.018519502,-0.0134570375,0.032222066,0.035448946,-0.04849678,-0.023207836,-0.0022725558,-0.045176364,-0.03846538,0.011568843,-0.048964445,-0.04061664,0.003963454,-0.016952828,-0.04157535,-0.093345776,-0.03131012,0.028083237,-4.0246982e-7,0.004273282,-0.012790617,-0.04770175,0.013129673,0.029509611,0.020507077,0.044334568,0.062900834,-0.014018235,0.011083642,-0.0038406923,-0.0067402106,-0.030561857,-0.011814367,-0.008195816,0.0033847198,-0.01696452,0.017245118,-0.02192176,0.04407735,-0.04363307,0.020623991,0.022272509,-0.012404793,-0.020565534,-0.01710482,-0.0006006562,0.0126737,-0.004922166,-0.03212853,0.002195099,-0.013492113,0.0010807428,-0.0051355376,0.018016763,-0.0028805193,-0.0051706126,-0.0008330269,-0.008768704,0.025838448,-0.0018998858,-0.012825691,0.008529026,-0.030211108,0.0030719694,-0.028200151,-0.038933046,0.015923966,0.019910805,0.034069337,0.082262136,-0.0039225337,-0.055231143,-0.026376262,-0.017443875,0.012790617,0.000025461211,0.014626198,-0.032666344,0.03713254,-0.013936394,0.03292356,0.044802234,0.044474866,0.062152576,-0.01325828,-0.022272509,-0.021430712,0.011083642,0.0030602778,0.034981284,0.0378808,-0.037974335,0.014392367,-0.030819071,0.009552042,-0.021676237,-0.025604615,0.033461373,0.05256546,-0.018659802,0.00093021337,0.006576528,0.0144040575,-0.011457773,0.043305706,-0.066735685,-0.011714988,0.03895643,0.020179711,0.022985697,-0.019887421,-0.028574284,-0.011773447,0.019712046,0.022120517,0.04040619,-0.01449759,0.038512148,-0.019431448,0.004740946,0.0059510274,0.0314738,-0.0041797487,-0.011405161,0.004884168,-0.0018560423,0.043212175,-0.017198352,0.07389095,-0.00848226,0.07650986,0.03984499,-0.0036711642,-0.004206055,-0.01718666,-0.045199748,0.026165813,0.044615164,0.031801168,0.02024986,-0.031123053,-0.024996653,0.010382146,-0.020775983,-0.033157393,-0.015234162,-0.026095664,-0.014193609,-0.055605274,0.022903856,0.02068245,0.05831773,0.0128724575,-0.026446411,-0.0071844915,0.028714582,-0.01995757,-0.038021103,-0.021734694,-0.0048724767,0.03334446,0.04632214,-0.0012298108,-0.052752525,-0.016917752,0.036150444,0.042884808,-0.008464722,0.0076580015,0.052331626,0.007850913,-0.017958306,0.029112097,-0.018028455,-0.007769072,0.003288264,0.04290819,-0.032876793,0.005182304,0.0442878,-0.007850913,0.00086371735,0.007377403,0.029743444,-0.029088715,-0.04587786,0.0014461054,-0.04929181,0.0021015662,-0.02380411,0.0016192873,0.02286878,0.002924363,0.016683921,-0.021489171,0.034864366,-0.0054950546,0.030024042,-0.024575755,0.021793153,0.014953563,-0.023757342,-0.03474745,-0.039517626,-0.068278976,-0.024084708,0.0035688626,0.0071611083,-0.032596197,0.016157798,0.057335634,-0.02112673,-0.013702561,-0.0016982057,0.022529723,-0.0015082171,0.0049543176,-0.016625462,-0.011183021,0.00098721,-0.023640426,0.00027073373,0.05336049,0.02462252,0.00017921039,-0.0350982,0.0036302435,-0.009815102,0.011457773,0.015199087,-0.0004994508,0.005375216,0.0575227,-0.0023061691,0.011942975,-0.027498655,-0.0048257103,0.04660274,0.03109967,0.019770505,0.014450824,-0.006167322,0.006956505,0.033975806,0.009604654,0.0028849037,0.041809183,-0.064771496,-0.012954298,-0.027288208,0.002279863,0.036314126,-0.0057639615,0.0043375855,0.037693735,-0.04262759,0.01529262,0.008868082,0.018776719,-0.00538983,-0.010358762,-0.03261958,-0.042276844,0.051536597,0.0023193222,-0.016882678,-0.028106619,0.017607559,-0.005801959,-0.005074157,-0.04989977,0.049853005,0.0023397824,-0.023488436,0.010697819,0.049198277,0.032502662,-0.038278315,0.042183314,-0.035706162,0.029112097,-0.015269237,-0.008032133,-0.009838486,0.0064362288,0.021664545,-0.07809992,-0.007079267,-0.020565534,0.017163277,-0.006781131,0.0039868373,0.002522464,0.029182248,0.0011348164,0.02876135,-0.009879407,0.04660274,-0.032900177,0.010259383,0.028808115,0.011381778,-0.04989977,0.031988233,0.06388293,0.007313099,0.002652533,0.025908597,0.017806316,-0.03030464,0.063602336,0.049198277,0.058224194,0.04318879,-0.033321075,-0.03226883,0.017385418,0.028901648,0.022903856,0.0043755835,0.0041739033,0.03341461,-0.019256074,0.008435493,-0.024599139,-0.010224309,0.034537002,-0.0016704381,0.0017668939,-0.08352483,0.016473472,-0.00037066042,-0.005042005,-0.0824492,-0.016111033,-0.030491706,-0.00455388,0.0065706824,-0.009394205,-0.008143203,0.027077759,0.026563328,-0.0506948,0.008236736,-0.025066802,-0.023406593,-0.010300305,0.016064266,-0.044638548,0.015082171,-0.04283804,0.019864038,0.03264296,0.03357829,-0.019384682,-0.029392697,-0.009417588,0.0088563915,0.009815102,-0.0077983006,0.0015213701,0.033180777,0.02417824,-0.017022977,0.013386888,0.05303312,-0.003732545,-0.022903856,-0.022599874,0.0032824182,0.023640426,-0.052331626,-0.01944314,0.003051509,0.005091694,0.010651053,-0.008295194,-0.004556803,-0.011866979,0.064397365,-0.03159072,0.011381778,0.025043419,-0.03750667,0.007470936,-0.038699213,-0.021933451,0.0011881595,0.027522039,0.0006985734,-0.03299371,-0.004206055,0.011598073,0.012521709,0.006781131,-0.002282786,-0.004650336,-0.014006543,0.010890731,0.023044154,-0.0410843,-0.015199087,0.004621107,0.049011208,-0.010656898,0.027849404,0.031637486,0.017081436,0.028831499,0.042697743,-0.031286735,0.004206055,0.016122723,-0.041832563,-0.015760284,-0.010224309,-0.034022573,-0.019127466,-0.016251331,-0.026329495,-0.026469795,0.048309714,-0.023944408,-0.017385418,-0.022541415,-0.021781461,0.025604615,-0.009522812,-0.009709878,0.013725945,-0.026960842,0.014988638,0.029252397,0.0022594028,-0.0208929,0.042767894,-0.010048935,-0.01980558,0.017221734,0.021255339,-0.03446685,-0.016298098,0.016391631,0.022751864,-0.024599139,-0.018285671,-0.0015959041,-0.043586306,0.006430383,-0.004062833,0.003732545,0.008669325,0.048169415,0.0033116473,0.004919243,0.020787675,0.011510385,0.021664545,-0.02118519,-0.025464317,-0.016870987,-0.007529394,0.009996323,-0.072768554,-0.0073890947,-0.010797198,-0.031941466,-0.029018564,0.006599911,0.01623964,0.04508283,-0.04377337,0.030678773,-0.024458839,0.004083293,-0.057475932,-0.012416485,-0.020588918,-0.030959371,-0.012229419,-0.03357829,-0.027077759,-0.0030310487,0.0037266992,0.005813651,-0.037810653,0.02679716,-0.023932716,-0.029556379,0.05920629,0.0041300594,0.017362034,-0.012007278,0.027732488,0.024154857,0.017385418,-0.0068805097,-0.028340451,0.011703297,0.032245446,0.0038991503,-0.0119955875,0.040265888,0.004062833,0.004615261,0.027522039,0.01689437,0.0028366758,-0.04360969,-0.026119046,-0.028714582,0.029836977,-0.012404793,0.007020809,0.016508548,0.0065414533,0.032315597,0.01110118,0.027709104,0.032736495,-0.011650685,0.032385748,0.0017902771,0.022377733,0.012568476,-0.031006137,-0.01008401,0.0037266992,0.022634948,0.011001801,-0.01515232,-0.026820542,0.010440604,0.026259346,-0.037226073,-0.001221042,-0.01958344,0.01733865,0.011942975,-0.0002630611,-0.023874259,-0.034443468,-0.05148983,0.0050829253,-0.05452965,0.011942975,-0.015327695,-0.006839589,-0.018554578,-0.0102476925,0.008195816,-0.013199822,0.018285671,0.035238497,-0.02316107,-0.014649581,0.00015007272,0.0029711293,-0.011790984,-0.0057698074,0.008909003,-0.0021161805,-0.014100076,0.018800102,0.0053489096,0.0006762863,0.017642632,-0.004235284,0.017584175,0.015970733,-0.022225741,-0.012977682,-0.0057522696,0.03533203,-0.00615563,-0.0513963,-0.013901318,0.001117279,0.00426159,-0.015701827,-0.021898378,0.01981727,-0.016952828,0.007254641,-0.04204301,0.0052904515,0.013129673,-0.018624727,-0.0020825672,0.0020328779,-0.027638955,0.029532995,-0.043352474,0.021571012,0.029369313,0.0253474,-0.0028805193,-0.02243619,-0.021383947,-0.0070558838,0.019641897,-0.019256074,-0.005658737,0.010966726,-0.025885215,0.006313467,0.030889222,-0.006547299,-0.0042820503,-0.014076693,0.01637994,-0.00681036,0.02972006,0.020530459,0.0033408762,0.0059247212,0.0066875983,-0.005837034,-0.016555313,-0.02665686,-0.06472473,-0.005535975,-0.014778189,0.0039020733,-0.022026984,0.022541415,-0.006196551,-0.009055149,-0.0070266547,-0.065379456,0.025885215,0.031731017,0.023488436,-0.005804882,-0.00990279,0.009645575,0.025464317,-0.018402588,-0.032198682,0.019489907,-0.02948623,0.0030632005,0.03516835,0.028317068,-0.006576528,-0.015386153,-0.00021812151,0.0010705126,0.0065648365,-0.006757748,-0.020951357,-0.041318133,0.010919959,0.030351408,0.015982425,0.03561263,-0.004264513,0.025277251,0.0013481883,0.016204566,-0.025136951,-0.04929181,-0.009546196,-0.009815102,-0.009096069,0.01172668,-0.0004592609,0.019185925,-0.05340725,0.018554578,0.01515232,-0.03051509,0.009575425,0.0041855946,0.001431491,0.031731017,0.03904996,-0.02352351,-0.01733865,-0.033975806,0.025277251,0.023009079,0.01739711,-0.044521634,-0.023254603,-0.03713254,0.017701091,-0.052518692,-0.010879039,0.029462846,0.017782932,-0.017034668,0.011036876,-0.0022418653,-0.0043931208,-0.03254943,-0.0253474,-0.006751902,-0.01398316,-0.0043112794,0.020846132,0.0067635938,0.012626934,0.0034314862,0.03837185,-0.011019338,0.02176977,-0.018309055,0.003647781,-0.009189602,0.03126335,0.008710246,0.02302077,0.02417824,-0.014906797,-0.029649911,0.021652853,-0.013702561,-0.0076696933,0.017899849,0.04674304,0.0066174488,-0.004141751,-0.0077223056,-0.009996323,-0.0066174488,0.002282786,0.00877455,0.007564469,-0.00022159246,-0.000784799,-0.014146843,-0.0027343743,-0.014906797,-0.056166474,0.036898706,0.02133718,-0.0054365965,-0.020436926,0.0020971817,0.011592227,-0.0023558585,-0.027147908,-0.011422698,0.0160175,0.032970328,0.02097474,0.003907919,0.0089323865,-0.005983179,-0.0003142119,0.016730687,-0.00020953549,-0.0056382767,0.03563601,0.0128023075,0.011884517,-0.021664545,0.0034811755,-0.044965915,0.004436964,-0.0032911869,0.002293016,0.0068278974,0.01325828,0.009306518,0.01878841,-0.018928709,0.007751534,0.0057639615,0.016368248,-0.017350342,0.009218831,0.021372255,0.012615242,0.023207836,-0.02679716,0.012124195,0.022658331,-0.02417824,-0.024786204,-0.015900584,-0.0055885874,-0.0020679526,0.02403794,0.00010449372,0.03954101,-0.05490378,0.03699224,-0.011983896,0.0035747082,0.012065737,-0.030468324,-0.059580423,-0.0040277583,-0.031660866,-0.030117575,-0.060796347,0.0038903817,0.015491378,0.006634986,0.021115039,0.03853553,-0.021161806,0.034233022,0.003820232,-0.061217245,0.0012999604,0.041247983,0.0043317396,-0.030865839,-0.05831773,-0.043282323,0.04604154,0.018309055,0.0058808774,-0.027545422,0.016929444,0.0013174978,0.02380411,0.043025106,0.055044077,-0.026539944,0.025955364,-0.056166474,0.007085113,0.031918082,0.017291885,-0.016122723,0.021255339,0.021173498,-0.018659802,-0.0008871006,-0.0110485675,-0.0047906353,-0.004124214,0.05256546,-0.031123053,-0.01646178,0.005503823,0.04042957,0.031333502,-0.0022681714,0.034396704,-0.008406265,-0.030959371,-0.020530459,0.005477517,-0.0125801675,-0.03591661,0.01296599,0.022810321,0.042861424,-0.017139893,-0.021500863,-0.014228684,0.001657285,-0.029977277,0.015678443,0.019057317,0.01784139,-0.016929444,0.0031596564,-0.0028849037,0.0036273205,0.009961247,0.023032462,0.010481524,0.017221734,0.009487738,-0.0034490237,-0.02462252,0.01296599,-0.0122878775,0.011785138,0.027755871,0.047374386,-0.018671494,0.011598073,0.028597666,0.005991948,-0.028059853,-0.01551476,0.017969998,-0.031356886,-0.018121988,0.022927238,0.030959371,0.0024859277,0.005986102,0.018110298,-0.047374386,-0.025627999,0.02817677,0.018952092,0.025791682,-0.0126503175,-0.004764329,-0.006950659,0.027545422,0.007856759,0.021454096,-0.01718666,-0.006523916,-0.012755541,-0.037389755,0.020144636,0.002976975,0.028270302,0.0046415674,-0.027989704,-0.010639361,0.032736495,-0.024435455,-0.025160335,0.0012700006,-0.025861831,-0.023757342,-0.0058165737,-0.007617081,0.016333172,-0.014018235,-0.015561527,-0.000109974164,-0.010469832,0.012498327,0.019267766,0.023874259,0.050507735,-0.044685315,-0.023546893,-0.020775983,-0.0075995433,0.012790617,0.01981727,0.0036068603,0.006003639,-0.024926502,0.021360563,0.009522812,0.0077164597,-0.008260119,-0.007710614,0.010142468,0.029182248,-0.024154857,-0.049104743,-0.00151114,0.0026715319,0.0060620974,-0.041996248,-0.024739437,0.008447185,0.0023383212,-0.005053696,0.012545093,0.0057084262,0.00021282375,-0.017362034,0.027007608,-0.021781461,-0.00881547,0.002455237,0.018145371,-0.029626528,-0.03205838,0.022634948,0.025066802,-0.0032181144,-0.0109784175,-0.016111033,-0.03247928,0.006751902,-0.023488436,0.022997389,-0.008768704,-0.032245446,0.0013554955,-0.008026287,0.06855957,-0.013842861,-0.019548364,0.01856627,-0.0012765771,0.003978069,0.0031216587,-0.027147908,-0.01827398,0.0008396034,0.006822052,-0.008207507,-0.01369087,0.00067774777,0.008078899,0.007979521,-0.027755871,0.019209309,0.018192139,-0.006634986,0.01565506,0.037179306,0.016952828,-0.004743869,0.0046620276,-0.045901243,0.031356886,0.007850913,0.027007608,0.015923966,0.034537002,0.038769364,-0.017934922,-0.02293893,-0.027802637,0.0037822344,0.027288208,-0.02899518,0.01637994,-0.009242214,0.03131012,-0.013433655,0.038418617,0.027498655,0.010814735,0.027872788,-0.018870251,-0.024692671,0.018589653,-0.048543546,-0.039494243,0.0137493275,0.022307582,-0.0020226478,-0.023733959,0.011679914,-0.0076580015,0.03947086,-0.003375951,-0.0070675756,-0.016917752,0.060843114,0.0054921317,-0.014906797,0.017619248,-0.0027489888,-0.04807588,-0.014906797,-0.02782602,0.0284106,0.022950621,0.006494687,0.000111526955,-0.0083478065,-0.0007018617,0.010995955,0.018765027,-0.02476282,-0.008727783,0.000585311,0.024856353,-0.035355415,0.019653589,0.03888628,-0.008768704,0.05200426,-0.015362769,-0.0046094153,-0.010855655,0.018145371,-0.00008494682,0.014883414,-0.006132247,-0.0042528217,0.010119084,0.00811982,-0.034045953,-0.012638626,-0.009458508,-0.017818006,-0.007874296,0.018402588,0.014041618,-0.00852318,0.008809624,0.015573218,0.013585646,0.01966528,-0.0018852714,-0.03205838,-0.00038436154,0.0065297615,-0.029065331,-0.004878322,0.010808889,-0.045924626,0.01806353,-0.031286735,0.016625462,-0.031871315,0.043095257,0.045386814,0.025604615,0.0016865141,0.011568843,-0.0044808076,-0.00340518,-0.009750799,0.007763226,-0.014661273,-0.035215117,0.01274385,-0.01660208,-0.008178278,-0.014661273,0.010148314,-0.010808889,-0.0030105885,-0.04674304,0.0011048567,-0.019501599,-0.009072686,0.017818006,0.009698187,0.015865508,-0.00090683013,-0.00018542155,-0.0039546858,-0.016391631,-0.023090921,-0.031006137,0.015748592,-0.039143495,-0.0108322725,0.0043668146,-0.0043405085,0.038021103,0.0020664912,-0.012416485,-0.024716053,0.002503465,-0.0072195665,0.00031110633,-0.025581233,0.030702155,0.014216992,0.017081436,-0.037179306,0.011346703,0.012322952,0.0135271875,0.01208912,-0.013153056,0.010317842,0.019560056,-0.041996248,0.010504907,0.011177175,0.003411026,-0.0011903516,-0.031941466,-0.04360969,-0.003226883,-0.0122878775,-0.020226477,-0.05223809,-0.0075352397,-0.037039004,-0.0064362288,-0.022307582,-0.00006617631,-0.027919553,-0.0014994484,-0.015982425,-0.010662744,-0.042580828,0.05976749,-0.001806353,0.027428506,-0.00818997,-0.014287142,-0.015105554,-0.012825691,0.016590388,-0.014953563,-0.036103677,0.010808889,0.028737966,0.0029199785,-0.030468324,-0.010528291,0.00888562,-0.0034256403,0.00059956015,0.014041618,-0.0068571265,0.0034256403,-0.011136254,-0.033695206,-0.002947746,0.0028951338,0.02438869,-0.020366777,-0.050507735,-0.013609028,-0.019501599,-0.0021614856,-0.038395233,0.0039868373,0.01987573,0.012989374,-0.014556048,-0.00050858484,-0.012346336,0.022763556,-0.043796755,-0.0034227176,0.008113974,-0.007079267,-0.011259016,0.0016455934,0.005652891,-0.022471266,0.0016923599,0.013468729,-0.002506388,0.00048118262,-0.014298833,-0.026563328,0.011206403,0.006348542,0.012755541,0.0058165737,0.020004338,-0.040032055,-0.00906684,-0.006839589,-0.03708577,0.012708775,-0.0034168717,-0.01456774,0.010089856,0.023733959,-0.031614102,0.01725681,-0.006453766,-0.006348542,0.03750667,0.000103306294,-0.00039897603,-0.036314126,0.017210044,-0.008622559,0.012732158,-0.034490235,0.0031362732,0.011405161,-0.014754806,0.022342658,0.001543292,-0.009394205,-0.015888892,-0.008897312,-0.013071215,-0.006775285,0.017537408,-0.022670023,0.00081183587,0.017373726,0.008359497,0.01981727,-0.010949189,-0.028200151,-0.00038911123,0.074124776,0.0027884478,0.03584646,-0.00710265,-0.020904591,0.008172432,-0.039657924,-0.026843926,0.020144636,-0.0284106,-0.030842455,-0.013386888,0.006348542,0.030982755,-0.017408801,0.014076693,0.008581638,0.0062725465,-0.008663479,-0.026259346,0.015935658,0.010919959,0.022295892,0.017946614,0.0014994484,0.015701827,0.04391367,0.03044494,0.022097135,-0.022518031,0.048262946,0.026025513,-0.0102476925,0.03420964,-0.026235962,0.046555974,-0.03271311,-0.0005476786,-0.008581638,-0.020495385,0.015432919,0.026095664,-0.025160335,-0.036524575,0.016344864,-0.00016770147,-0.016356556,0.0053226035,-0.000024228111,-0.015748592,0.015012021,0.059112757,0.020425234,0.029065331,0.018168755,-0.024552371,0.010469832,-0.0031567335,0.008511488,-0.026259346,-0.011083642,0.025815064,0.053547554,-0.011954666,0.031286735,0.0013518418,-0.03226883,-0.025440933,-0.038418617,-0.0013321122,-0.0055944333,0.019033933,0.029953893,-0.0013028833,-0.004208978,0.013679178,-0.025440933,-0.05018037,-0.035729546,-0.002053338,0.0065531447,0.005860417,-0.031123053,-0.0014358753,-0.027171291,-0.036080293,-0.021103349,0.026750393,-0.021945143,-0.0037822344,-0.0026744548,0.017619248,0.012825691,-0.03030464,-0.014135151]},{"id":"class-GuildChannel","type":"class","source":"main","text":"Class: GuildChannel\nProperties: guildId: string, name: string | null, parentId: string | null, permissionOverwrites: APIChannelOverwrite[], position: number\nMethods: createInvite(options: { max_uses?: number; max_age?: number; unique?: boolean; temporary?: boolean; }) -> Promise — Create an invite for this channel.; createWebhook(options: { name: string; avatar?: string | null; }) -> Promise — Create a webhook in this channel.; delete(options: { silent?: boolean; }) -> Promise — Delete this channel. Requires Manage Channel permission.; deletePermission(overwriteId: string) -> Promise — Remove a permission overwrite. DELETE /channels/{id}/permissions/{overwriteId}.; edit(options: { name?: string | null; topic?: string | null; parent_id?: string | null; bitrate?: number | null; user_limit?: number | null; nsfw?: boolean; rate_limit_per_user?: number; rtc_region?: string | null; permission_overwrites?: Array<{ id: string; type: number; allow?: string; deny?: string; }>; }) -> Promise — Edit this channel. PATCH /channels/{id}.\nRequires Manage Channel permission.; editPermission(overwriteId: string, options: { type: 0 | 1; allow?: string; deny?: string; }) -> Promise — Set or update a permission overwrite. PUT /channels/{id}/permissions/{overwriteId}.; fetchInvites() -> Promise — Fetch invites for this channel.\nRequires Manage Channel permission.; fetchWebhooks() -> Promise — Fetch all webhooks in this channel.","meta":{"url":"/docs/classes/GuildChannel"},"embedding":[-0.028924007,0.0032528262,-0.0075852424,-0.0064156866,0.0069611045,-0.004638862,-0.030903256,0.0019806535,0.021108227,0.030206019,0.060502004,0.0033203005,-0.0068374015,0.015935194,0.049661126,-0.020489713,-0.05357464,-0.005375457,0.01634004,0.022019131,-0.021456845,0.046872187,0.011245726,0.042846218,-0.06176153,-0.011796767,0.0110714175,0.038033046,-0.034209497,0.013371169,0.06086187,-0.017385893,-0.024718106,0.0051055597,-0.0252579,0.03623373,0.0064550466,-0.0075290133,-0.030206019,-0.024223294,-0.02849667,0.024290768,0.017880704,-0.007849516,0.0015898645,0.028789058,-0.061356682,0.03654861,0.024448209,-0.0021591794,-0.028361721,0.022142835,0.0003630261,0.09158519,0.015440382,-0.010464148,-0.009513884,-0.00027411457,-0.05906255,0.021029508,-0.00036618896,-0.04509536,-0.0022477396,-0.010244857,0.010059302,0.020748364,-0.05685839,0.033534754,0.022705121,0.060232107,0.04475799,-0.011673064,-0.0025654312,-0.033017453,-0.019353895,0.023975888,-0.015923947,0.044690516,0.017948179,-0.01789195,-0.021940412,0.00856362,-0.071972646,-0.014799375,-0.00011078797,0.03531158,-0.028451687,-0.04178912,0.015575331,-0.016295057,-0.03713339,0.00029238887,-0.08650213,0.0064494237,0.015800245,-0.043453485,0.027237149,-0.009176512,-0.015159239,0.06751934,0.055868767,-0.033242367,-0.089740895,0.0062076407,0.026697353,-0.014675672,-0.03423199,0.008760421,-0.010756537,-0.041474238,-0.06207641,0.0017332475,-0.02820428,0.006151412,0.008237494,-0.030295985,0.0188141,-0.040237207,0.03717837,-0.013719786,-0.07435674,-0.034951717,0.06823906,-0.017217206,-0.00019961163,0.0020354765,-0.006691207,0.0038207355,-0.03405206,0.007894499,0.049616143,0.022862561,0.024673123,-0.00785514,-0.018240567,0.024268277,-0.040214717,0.015800245,-0.022806332,-0.034591854,0.025662746,-0.029508784,0.034321956,0.006741813,-0.04957116,-0.026809812,-0.020017393,0.0024909284,-0.04619744,0.019713758,-0.057263236,0.015013044,-0.0038151126,-0.017071012,-0.0151030095,0.003505855,-0.013686049,0.024695614,-0.027956875,-0.027462063,0.025617763,-0.012010436,-0.014315809,-0.02246896,-0.015136747,-0.043723382,0.028249264,0.01891531,-0.0436784,0.024853054,0.02415582,-0.009626341,-0.04988604,0.01626132,0.013933455,-0.0033287348,-0.026292507,-0.070758104,-0.0022449282,-0.025302883,0.028069332,0.029261379,-0.022401486,-0.056003716,-0.070128344,0.04754693,0.005693149,-0.014776884,0.0154628735,0.007146659,-0.021861691,0.013607329,0.010312331,0.015901456,0.034209497,-0.014574461,0.029531276,-0.0053529656,0.050785698,-0.059467398,0.0030728946,-0.026382472,0.06994841,-0.027821926,0.0038910212,-0.032612607,0.0048075477,0.003373718,-0.04140676,-0.012055418,0.028114315,-0.035648953,0.040956933,0.008670455,-0.03205032,-0.0028760943,-0.033962093,0.000820938,-0.043430995,-0.0083836885,-0.06589995,0.006601241,0.011875487,-0.009598227,0.033354823,0.036728542,0.0012117269,-0.027507046,0.017846968,0.013449889,-0.031982843,0.02160304,-0.03438943,-0.03580639,-0.00092988095,-0.025212917,0.040821984,0.029396327,0.00073729793,-0.046962153,-0.02160304,-0.017453367,-0.031577997,-0.00012414227,0.019466352,0.0032556376,0.008344329,-0.025505306,0.024673123,0.03825796,0.081509024,-0.00012291227,-0.010942091,0.013483626,0.007298476,-0.0078832535,0.004234016,0.016823607,0.011144514,0.026832303,0.053484675,0.0074727847,-0.012404036,-0.009795027,-0.017981917,-0.016857343,0.031825405,0.010346068,-0.030093562,-0.0073603275,0.061536614,-0.032612607,0.06320098,-0.03983236,-0.024223294,0.012257841,-0.0041524842,0.013820997,0.029801173,-0.03144305,-0.035716426,-0.014923078,0.0025330998,0.028249264,0.013663557,0.0591975,-0.020950787,0.006550635,0.011897978,0.024718106,-0.033557247,0.009969336,-0.0076920767,-0.040327173,0.018409254,0.057353202,0.05514904,-0.014034666,0.09221495,0.05222515,-0.012426527,0.023413602,-0.016834851,-0.053214774,0.00432117,0.017194714,0.030790798,-0.028001858,0.03378216,-0.07066814,0.029643733,0.06846398,-0.046827205,-0.017397137,-0.03846038,0.0055413316,0.006477538,-0.0019426992,0.03330984,0.03807803,0.0023320825,-0.004832851,-0.054159418,-0.020152342,-0.0039444384,-0.030385952,0.0076976996,-0.03254513,0.038640313,0.028316738,0.017318418,-0.061221734,0.001765579,0.0715678,0.028721584,0.022603909,-0.00062027207,0.054699212,0.005305171,-0.013090025,0.05033587,0.0029295117,-0.014282072,0.005257377,0.01860043,-0.0064944066,-0.03501919,0.020748364,-0.03162298,0.056633476,-0.001577213,0.00005078148,-0.070758104,-0.046287406,-0.017475858,-0.021827955,0.054159418,-0.035356563,-0.051955253,0.010379805,-0.038550347,0.000016132784,-0.045275293,0.020354765,0.043251064,0.0074446704,-0.02284007,-0.0021493393,0.0018499219,-0.030385952,0.015833981,-0.0025935455,0.00669683,-0.019376386,-0.025595272,-0.015372908,-0.024178311,0.034187008,-0.012921339,0.01107704,0.03807803,-0.0020354765,0.031645473,-0.0009038752,-0.004911571,0.006977973,0.002018608,0.011122023,0.011324446,0.0090865465,0.014169615,0.0078832535,0.007596488,-0.016351286,0.015237959,-0.012032927,0.02694476,-0.0047400733,0.019713758,0.008737929,0.034726802,0.050470818,-0.033399805,0.006938613,-0.037403286,-0.017487103,0.010593474,0.015350416,0.031667963,-0.004189033,0.015204222,0.051955253,0.018195584,0.022513943,0.061086785,-0.062211357,0.003348415,-0.034029566,0.040642053,0.018769117,0.01310127,0.017588316,-0.00022509023,0.0062638693,-0.019500088,-0.013461134,0.032027826,0.008557998,-0.00924961,-0.074311756,-0.060007192,-0.009575736,0.074311756,0.019983655,0.04417321,-0.040349666,0.023031246,-0.0069161216,-0.0013375386,0.000057063273,-0.021108227,-0.006786796,0.011886733,0.030633358,0.019736249,0.0066574696,0.019882444,-0.071972646,-0.0278894,0.006443801,-0.011594344,-0.034007076,0.027349606,0.022660138,-0.052135184,-0.008231872,-0.016688658,0.050470818,-0.03328735,-0.004155296,-0.04109188,0.021265667,0.02818179,0.06428057,-0.008659209,0.022671383,-0.051055595,0.019668775,-0.018836591,0.0042143357,0.019803723,0.0073659504,0.05330474,0.0436784,-0.017464612,-0.027484555,-0.01003681,0.005622863,0.03252264,0.0017276247,0.03146554,0.033377316,-0.00068915216,0.0048440965,-0.022986263,0.044330653,0.010076171,-0.0061008064,-0.015822737,0.018105619,0.0049143825,-0.01294383,0.0053838915,-0.009294593,-0.0059771035,-0.033062436,-0.034929223,-0.017273435,0.011369429,0.005909629,-0.008501769,-0.06828405,0.010520376,0.014012175,0.02649493,-0.011301954,-0.035828885,-0.05298986,-0.004613559,0.030430935,-0.044195704,0.012145384,-0.020028638,0.011571852,-0.005563823,0.014574461,-0.04876147,-0.0016713961,-0.012055418,0.0005984835,-0.019117733,0.03544653,-0.022041623,0.013955946,-0.019668775,0.006247001,-0.01844299,-0.045185328,0.027237149,-0.0008167208,-0.0010999725,-0.012876356,-0.013764769,0.009952468,-0.0031741061,0.0040540844,-0.02252519,0.0063763265,0.0037757524,-0.018904066,-0.0013740872,0.039360043,-0.03544653,0.02555029,0.0050858795,0.021737989,0.011296332,0.022435224,0.012887602,0.04385833,0.023818448,-0.045477714,-0.014304563,-0.020984525,0.0018189962,0.042576317,0.00023229452,-0.034142025,-0.003154426,-0.032725062,0.011127646,0.003373718,0.001137224,0.0004059004,-0.03744827,-0.014979307,-0.00033368176,0.019218946,-0.010745292,-0.02431326,0.0019216135,0.0061851493,-0.00077525224,0.0136185745,0.01310127,0.007022956,-0.04606249,-0.0037560724,-0.01634004,-0.030948238,-0.02123193,-0.0647304,0.05146044,0.024425717,-0.030520901,-0.010644079,-0.027169675,0.015035535,0.00669683,0.034771785,0.0139447,0.0041018785,0.03825796,-0.0038347926,-0.032927487,-0.0007309722,0.001176584,0.008035071,-0.028114315,0.0063032294,-0.0072478703,0.045500208,-0.03846038,-0.018139357,-0.009283347,0.0062582465,0.0046051247,-0.023571042,-0.041901574,0.02849667,-0.011909224,-0.009513884,-0.011127646,-0.0085242605,0.000027587172,-0.0106328335,-0.019623792,0.007107299,0.02928387,0.0065843724,0.023481077,-0.0062132636,0.0011590127,0.04554519,-0.0013958757,0.011616835,-0.0141808605,-0.041901574,0.011909224,0.008333083,0.049931023,-0.014833112,0.026472438,-0.007961974,-0.03373718,-0.0069104987,0.02354855,-0.0066687153,-0.0027355228,0.015226713,0.0376282,0.0044870446,0.003101009,-0.024335751,-0.012426527,-0.024875546,-0.0029463803,-0.01223535,-0.019859953,-0.0002964303,-0.00952513,0.005909629,0.021456845,-0.017959425,0.038977686,-0.025280392,-0.036188748,0.054429315,-0.040327173,-0.006314475,-0.02431326,-0.0046922793,0.026989743,0.030116053,0.037223354,-0.00092496094,-0.033534754,0.018802853,-0.014675672,-0.0059827263,-0.0046838447,0.024425717,0.0060108406,0.0020931107,0.008372443,-0.0154628735,0.0024796827,-0.041609187,0.018712888,0.030723324,0.0015870531,0.010121154,-0.021670515,-0.027619503,0.033984583,-0.029643733,0.04786181,-0.0035564608,0.048671503,0.003674541,0.009688193,0.0010599097,0.011808013,-0.023863431,0.0008877095,0.042958673,0.020253552,0.024425717,0.02633749,-0.06176153,-0.0094464095,-0.00948577,-0.0043296046,-0.010295462,0.0025007683,0.015114255,-0.01991618,0.048851434,-0.009502638,-0.023661008,-0.03160049,0.016722394,-0.032949977,-0.014293318,0.009283347,0.015946439,0.0032106547,-0.022345258,-0.0055413316,-0.022244046,0.045837577,0.008990958,-0.022041623,-0.006404441,-0.027619503,0.014439512,0.029351344,0.036166254,-0.02339111,-0.011886733,-0.008271231,-0.0061739036,0.020253552,0.000027872708,-0.023953397,0.02160304,-0.016171355,0.01103768,-0.019578809,-0.013303693,0.002270231,0.0334223,0.031533014,-0.031240627,0.0011428469,-0.020478467,-0.018015653,0.0145407235,-0.009378935,0.021816708,-0.031712946,0.0062526236,-0.052764945,0.036323696,-0.032747556,-0.018667905,-0.02354855,-0.041609187,-0.02070338,0.027214658,-0.00079141796,0.024043363,0.0098681245,0.0058983834,-0.075346366,-0.035536494,-0.027124692,-0.011228858,0.01789195,0.018038144,-0.015788998,-0.020478467,-0.008546752,0.0032500147,0.013753523,-0.034097042,-0.02865411,-0.04943621,0.002329271,-0.02757452,0.012876356,0.0049931025,0.002413614,-0.02773196,0.0040568956,-0.010818388,-0.01084088,-0.023323637,-0.048986383,-0.043430995,-0.05906255,0.0091034155,0.0077764196,0.0139447,-0.029936122,-0.01199919,-0.03128561,-0.08245366,0.004456119,0.030385952,-0.033692196,0.0013438642,-0.046152458,0.0042846217,0.024965512,-0.004658542,-0.022907544,0.023661008,-0.013404906,0.02665237,-0.0025879226,0.040934443,-0.018229323,0.011228858,-0.0025949513,0.029508784,0.023166195,0.038640313,0.0025977627,-0.041429255,0.024830563,0.036143765,0.0114312805,0.020276044,-0.026697353,0.031173153,-0.024110837,-0.025235409,0.017903196,0.0021352821,0.008074432,-0.0052348855,0.011358183,0.0061345436,0.007062316,-0.020872068,-0.03731332,0.04334103,0.006320098,-0.015339171,0.016598692,-0.003446815,0.010537245,-0.009502638,0.01084088,0.019781232,-0.023930905,0.009924353,-0.023863431,0.0019173963,0.023008754,0.0012440585,0.02757452,-0.02044473,0.039247584,0.01199919,-0.0027945628,0.033534754,0.03193786,0.015327925,-0.040934443,-0.00054822915,-0.0360538,-0.026764829,-0.026000118,-0.00082304655,0.026472438,0.0068823844,0.039180107,0.01797067,0.008293723,0.0029913632,0.0031431804,-0.015552839,0.0011386297,0.02415582,0.0058927606,0.00577468,0.0014464814,0.011875487,0.041069392,-0.0067249443,0.03380465,-0.013314939,-0.0035592723,0.0034046436,-0.02075961,0.020084867,-0.0040568956,0.020410992,-0.0052686227,0.048221674,0.0012039955,-0.006634978,-0.018409254,-0.003995044,-0.030138545,0.01728468,0.026899777,-0.022873806,-0.03636868,0.025370358,0.008726683,-0.0048047365,0.027192166,0.014045912,0.013236219,-0.0024515684,0.032095302,-0.018904066,-0.01923019,-0.037898097,-0.020883312,0.015361662,0.010593474,0.035514,-0.010700309,0.011442526,0.008378066,0.00917089,-0.00693299,0.015833981,0.009766913,0.008839141,0.0010943497,-0.003798244,-0.013843489,-0.05811791,0.035221614,0.001899122,0.048221674,-0.014585706,-0.014619444,0.033557247,0.0023911225,-0.045950036,-0.011318823,-0.01834178,0.0070004645,-0.028091824,0.038505364,0.00073167507,0.023818448,0.005153354,0.027394589,-0.007146659,-0.014574461,0.0033568493,-0.038190484,0.01954507,0.026832303,-0.015384153,0.03310742,0.015384153,0.051325493,-0.022513943,-0.020984525,0.0015884588,-0.0031965976,0.07129791,-0.011661818,-0.03022851,0.030138545,-0.016936064,-0.020321026,0.011515623,0.004307113,-0.0075177676,0.040214717,0.01215663,0.04136178,-0.014169615,0.04259881,0.04554519,-0.0045770104,0.0050661997,0.056003716,-0.0026413398,-0.020332273,0.0058927606,-0.016092634,0.02215408,0.0068880073,0.0010233611,0.0022660138,0.041811608,-0.027597012,-0.01317999,0.039539974,0.02555029,0.033399805,-0.024245786,-0.051055595,0.009598227,-0.030835781,0.012752653,-0.0138997175,0.041271813,0.0148218665,0.02152432,0.015766507,0.00020277449,-0.0043802103,-0.01844299,0.0066855843,-0.0068767616,0.03022851,0.03877526,0.0032949976,-0.013573592,0.016722394,0.017318418,-0.009856879,-0.034974206,-0.025482815,0.023323637,-0.013067533,-0.022795087,-0.0042621302,-0.0056678457,0.033579737,-0.029531276,-0.0043296046,-0.036953457,0.00058618345,-0.028159298,0.012561476,0.034142025,0.016092634,-0.021872938,-0.023908414,-0.0019328592,-0.047322016,-0.011105155,0.012212859,-0.0038263584,0.038212977,0.009693815,0.05083068,0.009272101,-0.017397137,-0.0064494237,0.0074727847,0.029238887,0.023571042,0.020433484,-0.00023739025,-0.03744827,0.02770947,-0.0161826,0.001873819,0.005988349,0.011954207,-0.0026272826,0.00095377816,0.016846098,-0.008136283,0.007916991,0.016924817,-0.030880764,-0.016598692,0.0031375575,0.017801983,0.007838271,-0.016688658,0.009120284,-0.0165762,0.054159418,0.019871198,0.00024600024,0.030880764,-0.015406645,-0.034906734,-0.012201613,0.017239697,-0.012955076,0.025617763,-0.026719844,-0.0044589303,-0.034321956,0.016295057,-0.009969336,-0.004756942,0.020332273,-0.014968061,-0.031398065,-0.007838271,0.021175701,0.011583097,-0.00037356897,-0.042014033,0.023278654,-0.025325375,0.004090633,-0.0080406945,-0.007894499,0.008681701,-0.019500088,0.0009917325,-0.03007107,-0.016767377,0.028429195,0.01952258,0.0065393895,-0.008614226,0.004875022,0.027079709,-0.034794275,-0.011200743,0.021344388,-0.016250074,0.039472498,0.030385952,-0.024875546,-0.026922269,-0.0012032926,-0.0036126894,-0.006151412,-0.04039465,0.022705121,0.018791609,-0.017993161,-0.035851374,0.030588375,0.0124152815,-0.0010866183,-0.013337431,0.02268263,-0.010565359,-0.02160304,-0.0010774811,0.003980987,-0.01270767,-0.046557307,0.015215468,0.0045517078,-0.0012574127,0.0154628735,-0.0203885,-0.011751784,0.03252264,0.0051561655,-0.004815982,0.0026047912,-0.01003681,-0.019455105,-0.0018021276,0.06877886,0.02991363,-0.018611677,0.035064172,0.035963833,0.02239024,0.00090036093,0.021175701,-0.018645413,0.017914442,-0.017768247,0.00038762612,0.0030251003,0.023323637,0.013742277,0.0011597155,-0.0148218665,-0.017262189,0.0070904302,-0.012640196,0.0058534006,0.04154171,0.00522364,-0.0039388156,-0.010542868,-0.010216742,0.016137617,-0.015530348,0.013731032,0.013269956,0.013359922,0.027394589,-0.0054598,0.010391051,-0.052270133,0.020163586,-0.00071726646,-0.01378726,0.026135067,0.013888472,0.0012693614,-0.031847894,0.024875546,-0.014889341,0.003961307,0.012516493,-0.031712946,-0.054789178,-0.02725964,-0.022480207,-0.019747496,0.010166137,0.018094374,-0.03713339,0.001216647,0.000120012985,-0.010548491,0.038212977,-0.0042930557,0.015822737,-0.03007107,0.039989803,-0.010745292,0.026629878,-0.007961974,0.022851314,0.022930035,-0.0072085103,0.012887602,0.018353024,-0.027641995,0.025977626,-0.0036042552,0.010385428,-0.0026582084,0.0025822998,0.017408384,-0.022963772,-0.024583157,0.019342648,0.012494002,-0.045162834,-0.0021479337,0.01302255,-0.022963772,0.046557307,0.020017393,-0.022356503,-0.019680021,-0.0138997175,0.0010767783,0.016834851,-0.01812811,0.02602261,0.005769057,0.020410992,-0.022334011,0.0028592257,-0.028924007,-0.013146253,-0.002413614,0.024403226,0.025482815,-0.0014970873,-0.015429136,-0.017914442,0.009766913,0.040304683,-0.017700773,0.0039528725,0.0029660603,-0.009142775,-0.024043363,0.006235755,-0.012280333,-0.011436903,-0.013011305,-0.014585706,-0.015384153,-0.024133328,0.035356563,0.017790738,0.027012235,0.025797695,-0.021614285,-0.0015982988,0.00075697794,-0.010419165,0.029036464,-0.0014408586,-0.013967192,0.004546085,0.008737929,-0.0055919373,-0.0021085737,0.021625532,0.007838271,-0.028744075,0.003955684,-0.02541534,-0.044668023,0.0066574696,-0.0015111445,0.023188688,-0.006202018,0.005299548,-0.016002668,-0.014720655,0.018701643,0.0019497278,-0.018083127,-0.011200743,-0.0252579,-0.028519161,0.021052,-0.012336561,0.04925628,-0.026832303,-0.0058140405,-0.02005113,0.009345198,-0.02399838,-0.017487103,-0.0032303347,0.000117289404,0.0015997045,-0.00019082591,-0.018780362,0.011397543,0.013967192,0.0033399805,-0.0032359576,-0.018555447,-0.025460323,0.0027762887,-0.017464612,0.005226451,-0.032455165,-0.020399747,-0.053439688,-0.042441368,-0.030273493,0.0008856009,0.007607734,0.019376386,0.0014007958,-0.0045826333,0.0025851112,-0.0031375575,0.0003303432,-0.020242307,-0.005780303,-0.013359922,-0.019949919,0.02384094,-0.037920587,0.033557247,-0.0026047912,0.041721642,0.006589995,-0.028924007,0.0050661997,0.038640313,0.018420499,-0.0010071953,0.0030138546,-0.02833923,0.034029566,-0.013326185,-0.00037848897,0.00011623512,0.04507287,0.023346128,-0.005802795,-0.016058898,0.003486175,0.02586517,-0.00022386023,-0.042373896,0.011065794,-0.003817924,0.010526,0.0023011568,-0.05173034,-0.008417426,-0.017194714,-0.009558867,-0.0049031368,0.009187758,-0.0021296593,0.013562346,-0.011054548,-0.0034046436,0.007298476,-0.008917861,-0.031330593,-0.00071621215,0.032770045,-0.038505364,0.0022674196,-0.004073764,0.00677555,-0.008676077,0.010211119,0.0042536957,0.012100401,-0.028271755,-0.039607447,-0.011138892,-0.025640255,0.010244857,0.018836591,0.015631558,-0.019702513,-0.008687323,0.005409194,-0.013371169,-0.011515623,0.028564144,0.016137617,-0.006078315,0.0027313058,0.027304623,0.0054232515,0.023188688,-0.006044578,0.0029154546,0.0059771035,0.0057634343,-0.0010177383,0.00046072333,0.04397079,-0.032185268,0.008237494,-0.024583157,-0.058027945,0.0069104987,0.021816708,-0.00086873234,-0.012775145,-0.008754797,0.028924007,-0.006769927,0.01565405,0.0040934444,0.03513165,-0.0323652,-0.0076302253,-0.002280071,-0.017205961,0.030858273,-0.011341315,-0.032117795,-0.025482815,0.058972586,0.032432675,-0.013213728,-0.007798911,0.029846156,-0.026517421,0.011875487,-0.028361721,0.0244707,-0.007866385,-0.024875546,0.009384559,-0.014372038,0.005999595,-0.027282132,0.004745696,0.013112516,0.011015189,0.03625622,-0.0051983367,-0.011785521,0.00047688908,-0.0049284394,-0.0052433196,0.039742395,-0.012730162,0.007838271,-0.0073153446,0.00932833,-0.010615965,0.048266657,-0.008299346,-0.012583967,-0.009497016,0.03081329,0.021648023,-0.01347238,-0.015878964,0.012572722,-0.006826156,0.028631618,0.0058534006,-0.0017712018,-0.0066237324,0.01231407,-0.0070735617,-0.0141808605,-0.012662687,0.0019848705,-0.009615095,-0.0044027017,0.024920529,-0.0014408586,-0.021861691,0.021378124,-0.020782102,0.005988349,0.025617763,0.018296797,-0.025167935,-0.01068344,0.016981047,0.021254422,0.017172223,0.040687036,-0.021501828,0.0018485162,0.013483626,0.00085045805,0.027979366,0.0023967454,0.025212917,0.020725872,0.0058927606,-0.0025288826,0.042238947,-0.014450758,-0.011144514,-0.006438178,-0.018566694,0.009052809,-0.038010553,-0.040214717,0.016744886,-0.005153354,0.0034833637,-0.013877226,0.035693936,0.017509595,0.016767377,-0.019983655,0.0009629153,-0.026629878,-0.006471915,-0.025077969]},{"id":"class-GuildEmoji","type":"class","source":"main","text":"Class: GuildEmoji\nDescription: Represents a custom emoji in a guild.\nProperties: animated: boolean, client: Client, guildId: string, id: string, identifier: string, name: string, url: string\nMethods: delete() -> Promise — Delete this emoji. Requires Manage Emojis and Stickers permission.; edit(options: { name: string; }) -> Promise — Edit this emoji's name.\nRequires Manage Emojis and Stickers permission.","meta":{"url":"/docs/classes/GuildEmoji"},"embedding":[0.022349562,0.019494772,-0.03992263,0.0049014636,-0.011202551,0.030236337,-0.004293293,-0.0057317964,0.034235265,-0.002768702,0.048387025,-0.04254415,0.018917149,-0.035012834,0.022082968,0.003340771,-0.06411614,-0.016606659,0.019128203,0.021660859,0.0003929502,0.03259126,0.0387896,0.042788528,0.010552726,0.048164863,-0.02326043,0.024882216,0.014074004,-0.020905506,-0.00805895,-0.017362012,0.08459954,-0.054074388,-0.03634581,0.04365496,-0.020472288,0.030502932,-0.024793351,-0.007292489,-0.030258553,-0.05376336,-0.0027728677,0.012674379,-0.00972517,0.027103843,-0.023149349,0.03254683,0.022693915,-0.008225572,-0.007953423,0.033168882,-0.019816909,0.046476427,-0.025948597,-0.045543343,-0.041455552,0.023149349,-0.0516306,0.028525684,0.0013774084,-0.022349562,-0.0025951376,0.006520474,0.018694988,0.03063623,-0.0958854,0.060294945,0.015518061,0.012663271,0.02979201,-0.01861723,-0.031191636,0.008936493,-0.016873254,-0.04038917,-0.0017939634,0.020383423,0.0211721,-0.040055927,-0.044588044,0.044032637,-0.029903093,-0.030547364,0.028103575,-0.018506149,-0.050964113,-0.037745435,-0.0056651477,0.0039711576,-0.0053180186,-0.028747847,-0.08202245,-0.009525224,0.022538401,-0.016073467,0.010347226,0.012541082,-0.010063968,0.051230706,0.05922856,0.0008997587,-0.07664611,0.00012600787,-0.0011170616,0.006709312,-0.06540468,0.070514426,-0.008325545,0.0018050715,-0.076024055,0.028103575,-0.0015676352,0.003090838,-0.00343519,-0.024126863,0.01909488,-0.017828552,0.024193512,-0.044121504,-0.06025051,-0.028947793,0.059628457,-0.065982305,0.0045460034,0.011230322,-0.00040926525,0.00285479,-0.029414335,-0.024793351,-0.019006014,0.010919294,0.007886774,-0.0062538786,-0.033813156,0.009358602,-0.0005120155,-0.017450877,-0.031969205,0.002599303,0.024704486,-0.014240626,0.018406175,0.027570385,-0.034235265,0.01820623,-0.021916345,-0.013885166,-0.06780404,0.020427857,-0.01260773,0.022949401,-0.013296435,-0.023860268,-0.020383423,-0.013140921,-0.013585246,-0.015684683,-0.043877125,-0.01141916,-0.0039850427,-0.031324934,0.008158923,-0.023726972,-0.014607194,-0.014329491,0.037545487,0.01320757,-0.005198606,-0.0029575403,0.0700701,-0.018595014,-0.04580994,0.012629947,-0.04289961,-0.004543226,0.022560617,-0.006387176,-0.087709814,0.013407516,0.025526488,0.01136362,-0.060694836,-0.023904702,-0.007131421,0.05038649,0.0062816488,0.006298311,0.012330027,0.0057595666,-0.02765925,0.031658176,0.024482325,-0.009347494,0.047542807,-0.0009330831,0.047542807,-0.00095113384,0.0066426634,-0.06313863,0.013252002,0.030236337,0.03243575,0.0035823728,0.018806068,-0.02474892,-0.021871913,-0.0626943,0.011408052,0.008325545,0.037900947,-0.026726168,-0.018983798,-0.017350903,-0.04709848,0.02260505,-0.011996783,0.030302987,-0.03972268,0.047142915,-0.047187347,0.024237946,0.016406711,-0.03270234,-0.0056651477,-0.024215728,-0.0071536372,-0.030236337,0.0000028611034,0.03694565,-0.052208222,-0.017273147,-0.021149885,-0.05625158,-0.00053909153,-0.025193244,0.00086574006,0.041899875,0.01659555,0.010352779,-0.025748651,-0.02801471,0.033879805,-0.024437891,0.010702685,0.012152297,0.017506417,0.022993835,0.015418088,-0.0056762556,0.030747311,0.018906042,-0.016995443,-0.029214388,-0.004532118,-0.0009157267,-0.028947793,0.040411387,0.025348758,0.011180336,0.01237446,-0.007736814,0.0064038383,-0.0023604783,0.00805895,0.018295094,0.038567435,0.0018134026,-0.017995175,-0.00082130753,0.023571458,-0.004334949,0.038678516,0.008042288,-0.004107232,0.051008545,-0.019294826,0.054652013,0.030258553,-0.01986134,-0.032324664,-0.030103039,0.02283832,0.0028825605,-0.031391583,0.07491325,0.05865094,-0.01909488,0.004110009,0.034346346,0.022238482,-0.021327615,0.009453021,-0.016262306,0.015007087,0.021160992,0.02164975,0.021094345,0.04896465,0.029458767,0.009269737,-0.052030493,-0.03314667,-0.0046404223,-0.018928258,0.03390202,-0.008447735,0.024215728,-0.003110277,-0.035234995,0.028881144,0.0051680584,-0.019117096,0.00886429,-0.031258285,0.0030630676,-0.0064093927,0.039944846,0.047853835,0.00094905106,0.025259893,-0.009008695,-0.009802927,-0.0055596204,-0.073313676,-0.025148813,0.0042127594,-0.019761369,0.027748115,0.024526756,0.022038534,-0.039700467,0.010713794,0.0904202,0.07869001,0.00444603,0.008036734,0.037456624,0.044365883,-0.027570385,0.017528633,-0.03967825,0.005848432,0.018595014,0.043032907,-0.04829816,-0.011385836,0.04269966,-0.010480523,-0.01141916,-0.01879496,0.01606236,-0.027770331,-0.04281074,0.02837017,-0.06602674,0.0012573018,-0.00016965937,-0.0066148927,0.061005864,0.0059150807,0.010336117,-0.019383691,0.051008545,0.02152756,0.0091642095,-0.0058373236,0.043699395,0.0461654,-0.058073316,-0.013951815,-0.0030019728,-0.020738883,-0.05371893,-0.011674647,0.0016939902,-0.00603727,0.006964799,-0.0060817027,-0.0045598885,0.0040100357,0.0014787702,-0.004437699,0.010397212,0.018095149,-0.03359099,-0.0034157508,-0.00823668,-0.016995443,0.023038266,0.046787456,0.0036406904,-0.04900908,-0.019650286,-0.018828284,0.026281841,-0.0007393851,0.007125867,0.014240626,0.009486346,0.008797641,0.005115295,-0.011396944,0.00019387163,0.011485809,-0.0009830698,0.0014746046,0.019761369,0.030058607,-0.01243,0.009008695,0.02670395,0.029436551,0.0193948,0.018172905,-0.054429848,-0.010702685,-0.068781555,0.011385836,0.02688168,-0.031658176,-0.044343665,0.0033685411,-0.043277286,0.029014442,-0.019583637,0.016384495,0.010741564,-0.01558471,-0.05549623,-0.02414908,0.013785193,0.035368294,-0.008703222,0.06478263,-0.022882754,-0.018961582,-0.037034515,-0.0047487267,-0.005959513,-0.06873713,0.0003644856,0.0046848548,0.026037462,0.049942166,0.0070758807,0.018450608,-0.037456624,-0.0037989814,-0.0056623705,-0.037190028,0.009008695,-0.005598499,0.02450454,-0.021838589,-0.0048292605,-0.015118169,-0.00886429,-0.011058146,-0.03854522,-0.008964263,0.020139044,0.010552726,0.08775425,-0.01320757,0.004334949,-0.06367181,0.00092752906,0.013540814,0.020672234,-0.054429848,0.00838664,0.06340522,0.02932547,0.0027187155,0.011830161,-0.0052319304,-0.033035588,0.057184666,0.04205539,0.026815033,0.057273533,-0.0022618936,-0.051052976,-0.02939212,0.051586166,0.011385836,-0.043921556,0.020616693,-0.021805264,-0.012407784,0.0068315016,-0.004340503,-0.009030912,0.012829893,-0.02897001,-0.021505345,-0.07971196,0.011024822,-0.023038266,0.02968093,-0.03230245,-0.04580994,0.020416748,0.010352779,0.032857858,0.008953155,-0.0145516535,0.022038534,0.024593405,-0.012696596,0.0013232563,-0.020894397,-0.013329759,0.034790672,-0.0024743364,-0.037101164,0.019039338,0.0023368734,-0.00975294,-0.015540278,0.0002346593,0.0479427,-0.028392388,-0.0042294213,0.011219214,0.0062316624,-0.025881948,0.0065593524,0.0330578,0.0004002399,-0.041611064,0.020450072,0.016973227,0.0056679244,-0.013418624,0.002924216,0.013252002,0.021860804,-0.044121504,0.013796301,0.0170732,0.04216647,0.00010700256,-0.023215996,0.025304327,-0.06496036,0.03641246,0.020239018,0.01820623,0.017995175,-0.037923165,0.028592333,-0.03585705,-0.002768702,0.010924849,-0.023704754,0.012618839,0.027126059,0.007298043,0.0026978876,-0.0003717753,-0.0061594597,-0.012474433,-0.03836749,-0.00045300354,0.027059412,0.031547096,-0.042033173,0.00059636787,-0.0058151074,0.02028345,0.022527292,0.0134741645,0.014085112,0.04514345,0.0075313137,0.023327079,-0.03308002,-0.016839929,-0.003676792,-0.051319573,0.0045043477,-0.009180872,-0.026837248,0.017162064,-0.0323691,-0.029969743,-0.029991958,0.057628993,0.0053263498,0.005881756,-0.0045709964,-0.019228177,-0.010436091,-0.013185353,-0.011485809,0.00097543286,-0.003185257,-0.010519401,0.008020071,-0.0012114807,-0.04365496,0.022382887,0.0050375382,-0.028770063,0.011308079,-0.015018195,-0.007686828,0.026015246,-0.010852645,0.021205425,-0.008147815,-0.032813422,-0.027614817,-0.045721073,0.0027089957,0.001996687,-0.014596086,-0.013285327,-0.009541886,0.00441826,0.029169956,-0.0147516,0.00031970593,0.028903361,-0.0032130273,-0.025904166,-0.0077812467,0.0058317697,-0.003840637,-0.04758724,-0.017573066,-0.013052056,0.0020175145,-0.037567705,0.023393728,-0.025482057,0.028459035,-0.021494236,0.036501322,0.016806604,0.027081627,-0.0133853,0.031413797,-0.02450454,0.0025895834,-0.01785077,0.006098365,-0.0045737736,-0.010547172,-0.009858468,-0.0021160992,-0.02260505,0.005623492,-0.0068315016,-0.017584173,0.047142915,-0.031902555,0.025171028,-0.0066704336,0.016506685,0.010302793,0.047276214,0.013996247,0.05598499,0.016551118,0.018117364,-0.00036032006,-0.020561153,0.02599303,0.02152756,-0.00841441,0.013096488,-0.026792815,-0.030614013,-0.02790363,-0.0702034,-0.0049903286,-0.018550582,0.015640251,-0.001973082,-0.023060484,0.0052235993,0.07242502,-0.03890068,0.023571458,0.038100895,0.00841441,-0.002343816,0.015684683,0.014185085,-0.012929866,-0.020194585,-0.0063094194,0.025304327,0.013707436,0.017684147,0.017062092,0.011130349,0.010524956,0.011119241,-0.038945112,0.0009830698,0.019472556,0.007136975,-0.009963995,-0.013551922,0.034990616,0.015095952,-0.027459303,-0.025748651,-0.024104647,0.0073258136,-0.0062261084,-0.0277259,-0.029103307,-0.022116292,0.01641782,-0.006848164,0.017828552,0.04323285,-0.04972,-0.020216802,-0.023815837,0.021338722,0.004362719,0.038989544,-0.015429196,-0.03901176,-0.0155513855,0.029947525,0.018906042,-0.023949133,0.0161179,0.043521665,0.019883558,0.025570922,-0.026192976,0.0029464322,-0.006609339,0.05194163,-0.0094085885,-0.037523273,-0.04865362,0.0000069751263,-0.009808481,-0.0020702782,-0.022393996,0.0038878464,0.010308347,0.005542958,-0.038389705,-0.01682882,-0.031569313,-0.014207302,-0.01510706,-0.020261234,-0.03194699,0.025482057,0.016373387,0.019728044,0.018850502,0.05847321,-0.039122842,-0.04705405,0.0034740684,0.023060484,-0.0074257865,-0.011008159,-0.036967866,0.00066162815,-0.038767383,-0.0062427707,0.017406443,-0.034301914,0.017573066,-0.02326043,0.018472824,0.011069254,-0.015773548,0.011463593,0.007636841,-0.049275678,0.026037462,-0.0034990618,-0.005209714,-0.047498375,-0.011147011,-0.024837784,-0.009569656,-0.009936225,0.010363888,-0.0059872833,-0.031969205,-0.007536868,0.000965019,-0.054118823,-0.023993567,0.04989773,-0.02134983,-0.0017675816,0.00954744,-0.001921707,0.023571458,0.00919198,-0.017028768,0.023238214,-0.032346882,0.018761637,0.0016578888,0.02354924,-0.016462252,-0.003965603,-0.01121366,-0.007053664,0.0111136865,0.015751332,-0.014162869,-0.030902825,-0.009341939,0.027192708,0.010863754,0.0028714524,-0.017395336,0.033502128,-0.0051375115,-0.014396139,-0.014251734,0.00336021,-0.031902555,-0.011474701,-0.009886238,0.010658253,-0.018928258,0.0092919525,-0.031813692,0.046476427,-0.006103919,-0.0053374576,-0.027970279,-0.024082432,-0.029836444,0.0092419665,0.0460321,-0.0397449,-0.030547364,-0.005645708,-0.0028797833,0.045721073,0.043699395,-0.036656838,-0.023327079,-0.03021412,0.029947525,-0.05318574,-0.0113191875,0.013252002,0.024260161,0.039456088,0.016506685,-0.006848164,-0.023038266,-0.050830815,-0.010419428,0.018628338,-0.012096756,0.009375264,0.00007940579,-0.027437087,-0.0069870153,-0.030147472,0.0023507585,-0.0077756927,-0.008597694,0.02783698,0.0037323325,-0.025237678,-0.0064871493,0.028214656,0.032924503,-0.005865094,0.031502664,-0.03587927,-0.014607194,0.008075613,-0.017539741,0.011974567,-0.0074146786,-0.0019175414,0.011630215,0.018861609,-0.0019814132,0.0006647523,-0.01576244,0.025704218,0.007859004,0.018539473,0.00090461853,-0.0035768186,-0.037723217,0.00029731612,-0.03407975,0.017828552,0.015651358,-0.0035657105,0.0075590843,0.00090461853,0.019816909,-0.009980657,0.0013544979,-0.026903898,-0.0030825068,0.03712338,0.00024021337,0.02147202,0.00019664866,0.0100361975,0.016262306,0.0029214388,-0.02801471,-0.005595722,-0.018872717,0.0035462712,0.01963918,-0.026992762,0.0050542005,-0.0134741645,-0.0170732,0.017617498,-0.0065815686,0.00031623465,-0.015806872,-0.0068148393,0.036012568,-0.027437087,-0.021727508,-0.012174513,-0.015451413,-0.017050983,-0.018295094,-0.014185085,0.0023799173,0.011024822,0.012641055,-0.0077257063,-0.015706899,0.023949133,-0.022105183,-0.011313633,0.00336021,0.039411653,0.05336347,-0.0016578888,0.0069814613,-0.03354656,-0.006709312,0.0424775,-0.0074813273,0.0029630943,-0.046431992,-0.031013906,-0.01826177,-0.038100895,-0.00336021,-0.0461654,-0.030436283,0.022571726,0.0026090227,0.018283986,0.027392656,-0.0002435111,0.011002605,0.034546293,-0.020894397,0.0026215194,0.06273873,-0.027370438,-0.011430268,-0.028747847,-0.00014917876,0.058517642,0.021871913,0.031924773,-0.046609726,0.017295362,0.015817981,-0.031191636,0.009436359,0.00024906517,0.011019267,0.0141406525,-0.020372314,0.006637109,0.011441377,0.012318919,-0.0076423953,0.036879,0.007953423,0.012341135,-0.01038055,-0.018272879,0.023926917,-0.0070758807,0.040855713,-0.006931475,0.001637061,-0.0075090975,0.021960778,0.014440572,0.018850502,0.012741028,-0.006015054,-0.053496767,-0.012829893,-0.009275291,0.013896273,-0.006198338,0.013429732,0.006687096,0.0018106257,-0.025326543,0.007570192,-0.014185085,0.006048378,-0.045476694,0.016973227,-0.0025812523,0.0056762556,-0.0036490215,-0.004362719,0.01308538,-0.020594478,0.006626001,-0.005345789,0.0042266445,0.03623473,0.004929234,0.029192172,-0.016962118,-0.026948329,-0.015662467,0.011707972,0.04634313,0.04900908,0.0068315016,-0.0034018655,-0.036723487,0.006137243,-0.033857588,-0.0032324665,-0.0004904935,0.0040739076,-0.008325545,0.005479086,0.0016051251,-0.011052592,0.015840197,0.012063432,-0.018072931,-0.054163255,0.007464665,0.0076090707,0.02136094,0.01861723,0.015495845,-0.016395604,0.026437355,0.030791743,0.015095952,0.011607998,-0.0113191875,0.023949133,-0.006548244,0.00904202,0.015840197,0.008775425,0.0009087841,-0.045410044,0.0005196523,0.019350367,-0.016440036,-0.004168327,-0.000014286534,-0.004543226,0.023149349,0.02670395,-0.0038961775,-0.008186693,-0.004845923,-0.0341464,0.030369634,-0.011785729,-0.015595818,-0.015029304,0.0230827,0.016962118,-0.00469874,-0.0026479012,-0.012163405,0.014029572,0.028792279,0.000029657846,-0.0011510802,-0.0069148126,0.024082432,0.029969743,0.007975639,0.03230245,0.031213852,-0.013052056,0.02379362,0.0055013024,-0.014018463,-0.049586702,-0.01742866,-0.0063149733,0.023460375,-0.027970279,-0.007597963,0.01796185,0.0045737736,-0.01831731,0.033213317,0.013896273,0.010824875,-0.015395871,0.00242435,-0.027770331,-0.013418624,-0.01374076,0.017484201,0.00042488606,-0.06647106,-0.00080603384,0.003024189,-0.019794691,0.009175317,-0.014862682,-0.06655993,-0.012185621,-0.026903898,0.02605968,-0.019350367,-0.017884094,0.01963918,-0.0024548974,0.060828134,0.0049181255,-0.019483665,-0.015429196,0.0590064,0.00093100034,0.020394532,0.019605855,-0.009714062,-0.008886506,0.009714062,-0.0070758807,0.022371778,-0.0100750765,0.023815837,-0.010391658,-0.027503736,0.00059949205,0.011396944,-0.0047542807,0.008392194,0.04272188,-0.0003669155,0.012174513,-0.013318651,-0.028814496,0.034746237,0.017028768,-0.011563566,0.010730456,-0.0000032570476,0.046831887,0.010275023,0.0029936417,-0.016973227,0.005876202,-0.008186693,-0.010958172,0.030769527,-0.030725095,0.0037906503,-0.029836444,-0.01819512,0.012863218,-0.004365496,-0.008697668,-0.024015782,-0.05976175,-0.025548704,-0.013185353,0.015307006,0.019383691,0.00788122,-0.004854254,0.01068047,-0.010225036,-0.014851573,0.03534608,-0.010213928,-0.005448539,0.0022785557,0.0885096,-0.04252193,0.00050194876,-0.007681274,0.04896465,0.0054846406,-0.029725363,-0.004179435,0.07109205,0.0031463786,0.012318919,0.0010816545,-0.023415944,0.0031352704,0.011008159,0.006442717,-0.013774084,-0.01469606,0.049097944,0.009808481,-0.011035929,0.021749724,0.033857588,-0.026970547,0.068070635,0.010897078,-0.021905238,0.018395068,0.025171028,-0.0040877927,0.002935324,0.005692918,0.015606926,0.014540546,0.004023921,-0.04187766,0.017517526,-0.0033491019,0.0021758054,-0.009108669,0.01921707,-0.0026104113,0.009019803,0.034923967,-0.0012267544,-0.017995175,0.006442717,-0.0056512626,-0.0019744704,0.030325202,-0.0019855788,-0.0012732696,0.0010531899,-0.0032324665,-0.03634581,0.015140384,-0.025904166,-0.02605968,-0.04478799,-0.0058928644,0.023815837,-0.012218946,0.019783584,-0.015929062,0.025504272,0.0053041335,-0.014729383,0.02177194,0.008203356,-0.01055828,0.023682538,-0.009064236,-0.005798445,-0.014662735,0.017017659,0.012952083,0.012618839,-0.05642931,0.004957004,-0.0055762827,-0.010547172,0.03485732,-0.012707704,0.036901217,0.012263378,0.011696864,0.0030436283,-0.032991152,-0.0060872566,-0.022460643,-0.017384227,-0.044765774,-0.03288007,0.021605318,-0.022227373,0.0003188381,-0.000897676,0.0033268856,-0.019439232,-0.022682806,0.003851745,-0.014062895,-0.04218869,0.02843682,0.0014662734,0.00343519,-0.012141189,-0.0050736396,0.0045543346,0.015018195,-0.0148848975,-0.017695256,-0.033946455,0.021783048,-0.019705826,0.023771403,0.019039338,-0.025415407,-0.021216534,-0.011485809,-0.010574942,-0.0125632975,-0.004790382,-0.017395336,-0.017406443,0.0034907307,-0.027392656,-0.021105452,-0.019739151,0.013674111,-0.021438695,-0.03312445,-0.024437891,-0.01932815,-0.03663462,0.0277259,0.030836176,0.054207686,0.010441645,-0.015951278,-0.0019328151,0.025748651,-0.0077479226,0.00034174864,-0.012407784,-0.021394264,0.034479644,0.007953423,-0.0061483514,-0.01998353,0.01588463,0.0277259,0.013318651,0.011985675,-0.0048042675,-0.014107328,-0.0068259477,-0.0016814936,0.0049181255,0.0014003189,0.0033907574,0.007764585,-0.03641246,0.0016842706,-0.04358831,-0.009508561,0.031013906,0.043699395,0.006264987,-0.0033074464,-0.027281573,-0.0039794883,-0.015095952,0.003346325,-0.008158923,-0.01320757,0.00016367139,-0.014707168,0.0012087036,0.0032796762,0.010935957,-0.016995443,0.019794691,-0.02932547,0.0025895834,-0.023149349,0.012685487,-0.0073924623,-0.0073424755,0.01987245,0.017395336,0.008381086,0.038811814,-0.03294672,-0.03836749,-0.0062483246,-0.015273682,0.008258897,-0.0033074464,0.0020772207,-0.0071480833,0.031680394,-0.0024590627,-0.007192516,0.0049125715,-0.002341039,0.029814228,-0.019561421,0.020572262,-0.016939903,0.041655496,-0.031813692,0.009347494,-0.011830161,0.0012232831,0.029192172,-0.020383423,0.015862413,-0.024526756,0.016728848,0.0063149733,-0.018228445,-0.0015023749,-0.021982994,0.018483933,-0.027414871,-0.030147472,0.014707168,-0.028747847,0.0145516535,-0.012652163,-0.020961046,-0.012385568,0.028503468,0.014029572,-0.0032657909,-0.03294672,-0.018417284,0.004770943,-0.008419964,-0.057140235,-0.017384227,-0.02153867,-0.011763512,0.0012170348,0.011830161,-0.005617938,-0.0295032,0.031569313,0.00459599,0.012230054,-0.022716131,-0.023282645,0.02141648,-0.0005331904,-0.018517258,-0.004179435,-0.0028797833,0.019472556,-0.0018397844,0.02242732,-0.005765121,-0.01641782,0.012663271,0.010363888,-0.022416212,-0.028347954,-0.006209446,0.04692075,-0.0076701655,0.0038211977,-0.011485809,-0.034213047,0.056784775,0.03261348,-0.04709848,0.01945034,0.038278624,-0.015340331,-0.01404068,0.0135630295,0.016262306,-0.020605586,-0.015595818,0.017384227,0.01815069,-0.02486,0.023304863,-0.03574597,0.035190564,0.0014468343,0.0069092587,-0.04949784,-0.00292977,-0.03359099,0.018161796,0.009503007,0.033768725,-0.027459303,-0.02081664,-0.029880876,-0.0060817027,-0.001680105,-0.010058414,0.014185085,0.017561957,0.017506417,0.024104647,0.026926113,-0.03354656,-0.032146934,-0.034568507,-0.03354656,-0.0016009596,-0.02379362,-0.044876855,-0.00069391116,-0.016373387,-0.021127667,0.0054929717,-0.032080285,-0.0071480833,0.011974567,0.021605318,0.02022791,-0.012085648,-0.012285595,-0.007986748]},{"id":"class-GuildManager","type":"class","source":"main","text":"Class: GuildManager\nDescription: Manages guilds with fetch.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: create(options: { name: string; icon?: string | null; empty_features?: boolean; }) -> Promise — Create a guild. POST /guilds.; fetch(guildId: string) -> Promise — Fetch a guild by ID from the API (or return from cache if present).; resolve(guildId: string) -> Promise — Get a guild from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `client.guilds.get(id) ?? (await client.guilds.fetch(id))`.; set(key: string, value: Guild) -> this","meta":{"url":"/docs/classes/GuildManager"},"embedding":[-0.042317893,0.015786514,0.0066271415,-0.009855164,0.0011869826,0.019014535,-0.04078943,-0.010488221,0.006296355,0.012330362,0.039397843,-0.051055226,0.002304101,-0.002207146,0.04562576,-0.0043971827,-0.061594777,-0.02575574,0.023679769,-0.004796408,0.017611543,0.022858506,0.012900683,0.024706349,-0.056256562,0.049138945,-0.03104833,0.087966464,-0.013813199,-0.028470473,0.032736484,-0.009792428,0.000076547905,-0.014976655,0.003698538,0.030044563,0.048819564,0.022288183,-0.0029856355,0.02669107,-0.016938563,-0.03857658,0.034036815,-0.033215553,0.037184995,0.005469388,-0.02543636,-0.01810202,0.013322722,0.029086422,-0.037321873,-0.027261391,-0.057442833,0.09262029,0.0027760423,-0.071860574,-0.0435726,0.0143378945,-0.036797173,0.031344898,-0.002748952,0.014292269,0.010488221,0.027945777,0.0041861637,0.04500981,-0.029428614,0.042682897,0.01723513,0.03946628,-0.009222107,-0.04129131,-0.02198021,-0.008634675,0.016208552,0.026280437,0.009809539,0.04015067,0.022607563,-0.0033363837,-0.024820413,-0.02598387,-0.012524271,-0.046812028,0.027831713,0.0007706476,-0.017474666,0.003632951,0.013482412,-0.017007003,-0.018695155,-0.032759294,-0.079480074,0.035268713,-0.02098785,-0.028538913,0.03193803,-0.004702305,-0.0043715183,0.06675049,0.078385055,-0.009666958,-0.009860868,-0.0026092231,0.013288503,-0.0044684727,-0.107311785,0.017908111,-0.011691601,-0.0020745462,-0.08746458,0.018524058,0.010585176,0.023291951,-0.031093955,-0.02605231,-0.014600243,-0.017805453,-0.015010875,-0.017771233,-0.04396042,0.016014641,0.0510096,-0.017908111,0.034356195,-0.0071974634,-0.006307761,-0.00015888814,-0.05251525,0.002383946,0.01714388,0.019025942,0.01018595,0.0010665022,-0.023348982,-0.003478964,-0.046812028,-0.020679876,-0.047952674,-0.05269775,-0.00426886,-0.045032624,0.020223618,0.03946628,-0.027238578,-0.0018449917,-0.013778979,0.027307017,-0.025048543,0.013459599,-0.06670486,0.006923709,-0.037002493,-0.016037455,0.02431853,-0.010334235,-0.020383308,0.006427529,-0.05069022,-0.012661148,0.036135603,-0.037093744,-0.010722053,-0.0047707437,0.002959971,0.0069065993,-0.025253858,0.010528144,-0.027375456,0.024683535,0.04596795,0.014588837,-0.05123773,0.032348663,0.021740675,0.0038325638,-0.050507717,-0.00990079,-0.05005146,-0.02137567,0.044393864,-0.005580601,-0.057169076,-0.032668043,-0.04927582,0.027945777,-0.020850971,0.0057859165,0.031344898,-0.02201443,-0.014588837,0.026234811,-0.0007906089,0.030683324,0.037344683,-0.007260199,0.03786938,0.010334235,0.0067526125,-0.025573239,-0.02265319,-0.008668894,0.059860997,-0.012900683,0.011748633,-0.025550425,0.004043583,-0.00022099978,0.015718075,-0.002587836,-0.018216085,-0.005058756,-0.02431853,-0.0002894384,-0.03216616,0.003852525,-0.032918986,0.025801366,-0.03848533,0.042888213,-0.017771233,0.009507268,0.055070292,-0.035451215,0.027466707,-0.012284736,-0.010054776,-0.037641253,0.029017983,0.0132999085,0.019812986,-0.023428828,-0.074050605,-0.07660565,-0.020862378,0.009541487,-0.00040920603,0.075784385,0.028972358,-0.0050017238,-0.011417846,-0.05853785,-0.009501564,-0.0191286,0.004656679,-0.021501139,-0.020246431,-0.009929306,0.06834739,0.02075972,0.027786087,-0.009632738,-0.0044684727,-0.016265584,0.02986206,0.038918775,-0.045831077,0.030934265,-0.0021814816,0.027763275,-0.022208339,0.007830521,0.01255849,0.02012096,-0.049640827,0.005315401,-0.011942542,0.002383946,-0.01880922,0.05237837,0.023063822,0.02764921,0.031709902,-0.06419545,-0.011377924,0.031823967,-0.0071632443,0.027307017,0.01108706,-0.020645656,-0.017862486,-0.023885084,0.046059202,0.028584538,0.03572497,0.022037242,0.027945777,0.0059769745,0.0110015115,0.05648469,-0.0037413123,-0.021455513,-0.0032479838,-0.035382777,0.031002704,0.030158628,0.039990976,-0.013676321,0.080118835,0.06091039,-0.00046338662,0.010476815,-0.060499758,-0.057716586,0.00020406833,0.020782534,0.013106,-0.007876147,-0.023656957,-0.039968167,0.019037347,-0.0056205234,-0.029747995,-0.0010486796,-0.02021221,0.035154648,0.010533847,-0.005711775,0.0074712182,0.04895644,0.046697963,0.013026155,-0.017064035,0.032029282,-0.012706774,-0.06647673,-0.037595626,-0.06091039,-0.035542466,0.053747144,0.044393864,-0.023497267,-0.018911878,0.05830972,0.036569048,-0.0048734015,0.0014714308,0.0058229878,0.028607352,-0.012193484,0.03476683,0.008047244,-0.02233381,0.024683535,0.033215553,0.005563491,0.0015911984,0.045192316,-0.005386691,-0.0050188336,-0.010984401,0.043618225,-0.032987423,-0.014086953,-0.027603585,-0.040903494,0.0009795281,-0.025208233,-0.036819987,0.025778554,-0.043207593,0.030249879,-0.029360177,0.027147327,-0.04350416,0.045169502,0.006815348,0.030090189,0.008035837,-0.02986206,-0.001703837,0.026919197,-0.031071141,-0.011372221,-0.012957715,-0.049138945,-0.0056262263,-0.003786938,0.057716586,0.018660937,0.016527932,-0.007157541,0.01493103,-0.01323147,0.018364368,-0.041154437,-0.026417315,-0.008452172,-0.029360177,0.025481986,0.024866039,0.034424637,0.019778768,-0.012444426,-0.03303305,-0.011047137,0.027968591,-0.01076768,0.008474985,0.025367923,0.057579707,0.010596583,-0.012467239,-0.0023725396,-0.0067012836,0.012010981,0.040173482,0.042454768,0.018877657,-0.03912409,0.03786938,0.03978566,0.04254602,-0.005446575,0.02447822,-0.014109766,0.0038981508,-0.019527825,0.012216297,0.031504586,0.004819221,-0.014554617,0.03193803,-0.0137333535,0.02748952,0.0016967079,0.06506234,0.006404716,-0.058994107,-0.016493712,-0.07026367,0.016892938,0.045671385,0.027307017,-0.0045882403,0.013014748,0.0049874657,-0.01746326,0.016870124,-0.002837352,-0.0007253783,-0.02591543,-0.009438829,0.03129927,-0.015022282,0.045123875,0.027717648,-0.06218791,0.0013652083,0.012182077,0.0007720734,-0.011491988,0.018432807,0.036888428,-0.01489681,0.024683535,-0.02098785,0.00072181376,0.0013887341,-0.053747144,0.013185845,0.0072487923,-0.018775,0.0006808219,0.018216085,0.059860997,-0.02293835,0.023383202,0.005512162,0.03225741,-0.03469839,-0.003290758,0.038530953,0.027717648,-0.042888213,0.00988368,-0.0194822,-0.012068014,0.043298844,0.021934584,0.02271022,0.010454002,-0.0034561513,-0.026029496,-0.0059769745,0.08344951,0.00579162,0.015615416,0.013710541,-0.022402247,-0.048910815,0.023702582,0.033215553,-0.010454002,0.004964653,0.019664703,-0.0011356537,-0.070309296,-0.0038240089,-0.00042025602,0.036911238,-0.03166428,-0.044872936,0.0022285332,-0.023907898,-0.010670724,-0.013436786,-0.010630802,0.0011021473,0.029223299,-0.002442404,0.053975273,-0.012866464,-0.028926732,0.0026092231,0.009935009,-0.041382562,0.01106995,-0.004066396,0.009581409,-0.020018302,-0.0022413654,-0.028128281,-0.015398694,0.0052441107,0.023953523,-0.01489681,0.0066784704,-0.011554724,0.053519014,-0.006501671,-0.020885192,0.027854526,0.01964189,-0.00089825713,-0.042728525,-0.014086953,-0.013322722,0.0221399,-0.06652236,-0.0064446386,0.009746803,-0.009102339,0.009090933,-0.03579341,0.017280756,-0.027831713,0.023520079,0.003165287,0.024364155,0.028789854,-0.00908523,0.033763062,-0.055663425,0.009843757,0.01928829,0.023029601,0.017121065,0.00823545,-0.013334128,0.010146028,0.0027104553,0.021158947,0.01342538,-0.036249667,0.031071141,0.011400737,0.011286672,-0.023120854,-0.038530953,-0.006051116,-0.006878083,-0.012695367,0.03248554,0.02630325,0.019402355,-0.015524165,-0.023406014,0.02012096,0.019835798,-0.0016853015,-0.03166428,0.025732929,0.03992254,-0.03597591,0.02518542,-0.0010287183,0.026668256,0.00501313,0.076240644,-0.001191973,0.014839779,0.017543105,0.008805771,-0.0031852482,-0.02185474,-0.004254602,0.03424213,-0.03748156,0.0017366305,0.0068210512,0.016573558,-0.024774788,-0.015421507,-0.002361133,-0.025367923,0.032576792,-0.008440766,-0.012045201,0.013254283,0.01103573,0.010168841,-0.0064731548,-0.08262825,-0.0030455193,-0.018398587,-0.006746909,0.010009151,-0.0026063714,0.010311422,0.00002517437,-0.03319274,0.028402036,0.0146800885,0.05173961,-0.016584964,-0.021774894,0.00084336364,-0.0003247271,-0.028059842,0.02534511,-0.0044542146,-0.002200017,-0.00016476959,-0.009666958,-0.0069636316,0.0177142,0.013756166,0.009336171,0.019630482,0.04129131,0.010083293,0.004642421,-0.0077620824,0.015752293,-0.01659637,0.023018196,-0.009427423,-0.019630482,0.0009731119,-0.039238155,-0.025299484,-0.022425061,-0.059997875,0.03232585,-0.031071141,-0.023474453,0.022926943,-0.01640246,0.045899514,-0.060956016,0.0031766936,-0.0033021644,0.045534506,-0.0065929224,0.008446469,0.013334128,0.044393864,-0.010146028,0.03556528,0.02764921,0.028493287,0.018638123,0.022801474,0.0034418933,-0.009501564,-0.008839991,-0.037983444,-0.016368242,0.0073514506,-0.037915006,0.022208339,-0.04348135,-0.0077677853,0.05292588,-0.050918348,0.010157434,0.016870124,0.010704944,0.020850971,-0.0031396225,0.013836011,0.03447026,-0.03374025,-0.018227492,0.0064731548,-0.003034113,0.0019904238,0.0009873699,-0.027033262,0.00018695868,0.033306804,-0.007465515,0.0026006682,0.0071746507,0.011161202,-0.04808955,0.0011983891,0.028265158,-0.023474453,-0.06173165,0.009176481,-0.06916865,-0.0092677325,0.014816965,-0.0011078505,0.007779192,-0.013505225,0.04001379,-0.053884022,0.003216616,0.011668788,-0.03572497,-0.0043173376,-0.029725183,0.011794259,-0.0044371053,0.0064731548,-0.02717014,0.002060288,-0.0014671533,0.044736058,0.006341981,-0.013048967,0.009290545,0.010904556,0.009113746,0.014315082,-0.020965036,0.0014785598,-0.0052441107,0.009347578,-0.020474559,-0.006946522,-0.035063397,-0.021991616,0.018957503,0.010322828,-0.04510106,0.0041804602,-0.018090613,0.006142368,-0.036774363,0.019322509,-0.0057716584,-0.047085784,-0.04389198,-0.011092762,-0.03866783,0.03748156,0.0063876063,0.00092748617,0.0035416996,-0.007180354,0.000011345175,-0.017132472,-0.023029601,-0.02255053,0.0046481243,-0.019904237,0.000066478155,0.021044882,-0.033648998,-0.015318849,0.009467345,-0.034196507,0.0074198893,-0.024090402,-0.013596476,-0.00804154,0.0116459755,-0.0020702688,0.008948352,0.0012490052,0.009929306,0.010277202,0.023793833,-0.02582418,-0.012216297,-0.028265158,-0.010117512,0.006849567,-0.016539337,0.007978804,-0.032759294,0.0034390416,-0.030204253,-0.06939678,-0.0074997344,0.04325322,-0.0006148784,-0.015946204,0.0145089915,0.014600243,0.02575574,-0.0278089,-0.021090508,0.006718393,-0.027238578,-0.004716563,0.01643668,0.029428614,0.02931455,-0.013790386,0.008121385,0.023291951,0.022322403,0.011862697,0.008988274,-0.04904769,-0.012934903,0.034036815,-0.026987636,0.030090189,-0.037048116,0.03752719,0.011166905,0.0011613182,0.0016211403,-0.010123216,0.008765849,-0.034515887,0.015775107,0.01138933,0.010972995,0.019972676,-0.033854313,0.011748633,0.010106105,-0.041085996,0.01973314,0.0040008086,0.008144198,0.051465858,0.022573344,-0.020269243,-0.02060003,0.016014641,-0.008606159,0.014794152,0.0040920605,-0.0068039414,-0.0255048,-0.015136345,0.05306276,-0.017794047,-0.021900365,0.031322084,0.00031314243,0.023679769,-0.020622844,0.0023625589,-0.03611279,0.0038496736,-0.0033449384,0.00972399,0.016071673,0.037892193,0.024888853,-0.011931136,0.034105256,0.03348931,-0.008309592,-0.014839779,-0.015079314,0.000053334017,-0.01259271,-0.0011827053,0.0020959333,0.036318105,0.009079526,0.01525041,0.002653423,-0.04220383,0.013881638,0.023086634,-0.020075334,0.013436786,0.0026063714,0.0136421025,0.024888853,-0.00154985,-0.036774363,-0.0026120748,-0.032668043,-0.0009025346,-0.022208339,-0.005044498,0.016493712,0.0081898235,0.0061366647,-0.023406014,-0.025573239,0.012467239,-0.01989283,-0.00086688943,0.0027674874,-0.010585176,0.03389994,-0.01207942,-0.002084527,-0.008805771,0.007283012,0.015626824,0.0066727675,-0.0027817455,0.013881638,0.043139156,0.038850334,0.0014593113,0.0006612171,0.0019048755,-0.015353068,0.015273223,0.022219745,-0.012991935,0.037983444,-0.00097097317,-0.012672555,0.026942011,0.041222874,0.0184214,-0.0315274,0.00084265077,0.008303888,-0.021067694,0.0026519974,-0.017987955,0.008914133,0.021398481,-0.0011306633,0.040219106,0.0005058043,-0.00043166245,0.0055549364,-0.026942011,0.017999362,0.011919729,-0.030135814,-0.00052362686,0.026189186,0.0021757784,0.0070491796,-0.024181653,0.011851291,-0.018273117,-0.01223911,0.023291951,-0.015934797,0.012102232,-0.028219532,-0.0023383202,-0.00013892687,-0.009444532,0.0032936095,-0.046812028,-0.012296142,-0.007802005,0.009119448,0.012204891,0.0354284,0.0001933748,0.05465966,0.036774363,-0.00905101,0.0019718884,0.036318105,0.012798025,0.00055748975,0.012250517,0.009997744,0.028151093,0.010071887,-0.012501458,-0.03255398,0.0017209466,-0.007653721,0.0055549364,0.031573027,0.005657594,0.02701045,-0.0015142049,-0.039511908,0.0025350812,0.004708008,0.011520504,-0.017417634,0.031709902,-0.005988381,-0.044576366,-0.01973314,-0.01339116,0.0025536167,-0.0011791408,0.027877338,-0.021888958,0.03809751,0.018558277,0.024706349,0.022219745,-0.0059997872,0.045808263,0.02518542,-0.04927582,-0.023234919,0.048910815,-0.020303464,-0.020018302,0.004006512,-0.0025564684,0.0063191676,-0.019048754,0.001177002,-0.023497267,-0.026508566,-0.03175553,0.008412249,-0.0015027984,0.029542679,0.014531804,0.004246047,0.03848533,0.0029628228,-0.029428614,-0.0004341576,0.0108304145,0.011851291,0.029337363,0.06177728,-0.0030398162,-0.014965249,-0.001147773,-0.022196932,-0.0018549723,0.029565493,0.0092278095,0.02915486,-0.0063762,-0.002522249,-0.025732929,-0.0040606926,0.016733248,0.011577536,-0.013288503,0.038074695,0.000068527756,0.0038268606,-0.022185525,0.009068119,-0.042431958,-0.027626397,0.029497053,0.0054095043,0.022607563,0.00056390587,-0.0027503779,0.0046680854,0.0036728736,-0.006490264,0.011058544,0.047268286,0.007898959,0.0061994,-0.03216616,-0.015558384,0.007859037,-0.015067907,-0.026326064,-0.00011023255,-0.034949332,-0.0017437595,-0.017896704,0.014372114,-0.0014429146,-0.014098359,0.00908523,-0.025002915,0.0030968485,0.038143136,-0.027763275,-0.019003129,0.032736484,-0.003567364,-0.022755848,-0.007864741,-0.0014785598,0.01864953,-0.057123452,-0.025641676,-0.008007321,0.016334021,0.011235343,-0.0009374668,-0.0045882403,-0.009165075,0.0040321765,0.009512971,-0.0063647935,0.02591543,0.005512162,-0.014258049,0.010106105,0.038051885,0.012683962,-0.027375456,-0.038873147,0.007955992,0.020497372,-0.026645444,-0.0036700221,-0.0039352216,0.008109978,-0.0030597774,0.0069636316,0.011320892,-0.0040008086,-0.039101277,0.04190726,-0.031732716,0.018877657,-0.0093589835,0.017052628,-0.0010800472,-0.077974424,0.010362751,0.0255048,0.008737333,-0.0114349555,-0.03143615,-0.0097411,0.00669558,-0.012341768,0.036728736,-0.008948352,0.00057816395,-0.011400737,-0.009872274,0.056986574,0.0012853632,-0.033010237,-0.008737333,0.031732716,0.008452172,-0.017976549,-0.034264944,0.009621332,-0.029405802,-0.022310996,-0.018729374,-0.01493103,-0.00031492466,0.008897023,-0.027900152,-0.023885084,0.010727757,0.004123428,-0.02701045,0.029246112,0.01255849,0.021056289,0.0041490924,0.00010060836,-0.031185206,0.016288396,-0.021444106,-0.0004109883,-0.0083609205,0.0040008086,0.029907685,-0.037595626,-0.007950288,-0.0109615885,-0.033375245,-0.0027746165,-0.024501033,0.03501777,-0.007334341,0.003136771,-0.03198366,-0.0019562044,-0.005221298,-0.01941376,-0.0029656743,0.006068226,-0.014543211,-0.0143378945,-0.020542998,-0.037413124,-0.00577451,-0.011377924,-0.0018107723,0.0020289205,-0.028447662,-0.0065415935,0.06912302,0.0056062653,0.0024680684,-0.014520398,0.023189291,-0.020474559,-0.00905101,-0.024660723,-0.0040778024,0.010944479,-0.009336171,-0.0036785768,0.03992254,-0.017029814,-0.025231045,0.0018464174,-0.032896172,0.007459812,0.010408376,0.020691281,-0.014600243,-0.024546659,-0.018273117,0.03786938,-0.02732983,0.021033475,0.0031567323,-0.032918986,0.05064459,-0.016482305,-0.004716563,0.0017794046,0.07176932,-0.018569684,-0.02678232,0.027466707,-0.0071176183,0.015980422,0.028242346,-0.019208444,0.02268741,-0.0032308742,-0.00671269,-0.0013616438,0.03761844,0.016117299,-0.019778768,0.0054750913,0.011885511,0.0023896492,0.028584538,0.02159239,0.002880126,-0.018957503,-0.013026155,-0.010071887,0.007151838,-0.003866783,-0.02316648,0.012090826,-0.0146800885,-0.023725394,-0.06141227,0.024888853,0.041930072,0.02207146,0.0047564856,-0.009672661,0.004688047,-0.036956865,-0.04078943,0.02931455,0.01627699,-0.03620404,0.019014535,-0.003986551,-0.021615203,0.00054216234,0.012615522,0.003399119,-0.008948352,-0.012900683,-0.016459493,-0.011241047,0.02463791,0.00937039,-0.016984189,0.034515887,0.0056718523,-0.0021087655,-0.021638017,-0.0080985725,-0.0008711668,-0.07897819,-0.019505013,-0.014292269,-0.022755848,0.03456151,-0.014566024,0.036158413,0.008663191,-0.008252559,-0.042272266,-0.024774788,-0.011395033,-0.029839247,-0.0014856888,0.024592284,0.009820945,0.023189291,0.0052982913,-0.023029601,0.01076768,0.01730357,0.016858717,-0.042135388,-0.030067375,-0.0011741504,-0.019653296,-0.0014008534,0.009877977,-0.012855058,-0.019619077,-0.021170352,-0.006564406,0.0023055268,0.02021221,-0.049777705,-0.03579341,0.008452172,-0.0037897897,-0.02255053,0.002610649,-0.013961483,0.011714414,-0.008303888,-0.03866783,0.0036358028,-0.06232479,0.05853785,0.005825839,0.024843225,-0.04275134,-0.0009880828,-0.03588466,-0.00044770277,-0.0047336724,-0.0061081485,-0.011007215,-0.017212318,0.058446597,-0.0062393225,0.004234641,0.002472346,-0.0011078505,0.014657275,0.03193803,0.0038439701,0.010722053,0.015558384,0.022447873,-0.004052138,0.055709053,0.0012347471,-0.0057345876,0.001755166,-0.03784657,-0.015467132,0.02502573,-0.0016439531,-0.0061822906,-0.0044684727,0.0435726,-0.036774363,-0.02098785,-0.0069008963,-0.0032622418,-0.014976655,-0.02114754,-0.034105256,0.005315401,0.0038867444,-0.015033687,-0.0123988,-0.011896917,-0.027603585,0.008383733,-0.013790386,0.011497691,0.008868507,-0.008018727,-0.003618693,0.00054430106,-0.006438935,0.036181226,-0.00063697837,0.036158413,-0.038371265,0.0029941904,0.0045796856,-0.008640378,-0.008332404,-0.011149795,0.0210791,-0.0031396225,0.009079526,-0.021010661,0.009250623,-0.0024281458,-0.0001710966,0.011828478,-0.00078704435,-0.022082867,-0.022425061,0.010761976,-0.023999149,0.007100509,-0.025299484,-0.008817178,-0.01663059,-0.0072430894,0.02685076,0.019676108,-0.0064674513,-0.0016981338,0.04350416,-0.010083293,-0.0012996212,0.031823967,-0.0123988,-0.0045682793,0.026554191,-0.007511141,0.046720777,-0.016026048,-0.005609117,0.0010401247,0.026873572,-0.017383415,0.017531699,-0.0143378945,-0.022447873,0.010111809,-0.0067240964,-0.020189399,0.010191654,0.0040692473,-0.015889172,-0.001994701,-0.0060796323,0.020645656,-0.02995331,0.031253647,-0.013322722,-0.015261817,0.008822882,0.0070320703,-0.007180354,-0.01973314,-0.04594514,0.05014271,-0.020257838,0.00093817967,0.041245688,0.0008583346,0.00013464945,-0.025550425,0.01358507,0.012524271,-0.009638442,-0.028151093,0.0008298185,0.0075510633,-0.014873997,-0.025002915,-0.0042574536,-0.0032308742,0.038051885,0.036249667,-0.008149901,0.015113533,0.0007977379,-0.018375775,-0.006245026,0.0069636316,-0.020155178,0.007784895,-0.0016567854,0.032782108,0.003151029,0.018717967,-0.0055007557,-0.02518542,0.026280437,-0.0070434767,0.023839459,0.003034113,0.0011727246,-0.016813092,0.038987212,0.0051785237,0.02630325,0.005532123,-0.013699134,-0.0011242472,0.026942011,0.045215126,0.014429146,0.01569526,0.03620404,0.007009257,0.007864741,0.009969229,0.0022256817,-0.014782746,-0.055435296,-0.020702688,-0.022025835,-0.03066051,-0.025938245,0.021478327,-0.028470473,-0.013140218,-0.032759294,0.01675606,-0.0033449384,0.01746326,0.015273223,0.00772216,0.0088742105,-0.015239004,-0.0035645124]},{"id":"class-GuildMember","type":"class","source":"main","text":"Class: GuildMember\nDescription: Represents a member of a guild.\nProperties: accentColor: number | null, avatar: string | null, banner: string | null, client: Client, communicationDisabledUntil: Date | null, deaf: boolean, displayName: string, guild: Guild, id: string, joinedAt: Date, mute: boolean, nick: string | null, permissions: { has(permission: PermissionResolvable): boolean; }, profileFlags: number | null, roles: GuildMemberRoleManager, user: User\nMethods: addRole(roleId: string) -> Promise — Add a role to this member.\nPrefer member.roles.add(roleId) for Discord.js parity.; avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the guild-specific avatar URL for this member.\nReturns null if the member has no guild avatar (use displayAvatarURL for fallback).; bannerURL(options: { size?: number; extension?: string; }) -> string | null — Get the guild-specific banner URL for this member.\nReturns null if the member has no guild banner.; displayAvatarURL(options: { size?: number; extension?: string; }) -> string — Get the avatar URL to display for this member.\nUses guild-specific avatar if set, otherwise falls back to the user's avatar.; edit(options: { nick?: string | null; roles?: string[]; avatar?: string | null; banner?: string | null; bio?: string | null; pronouns?: string | null; accent_color?: number | null; profile_flags?: number | null; ... 5 more ...; connection_id?: string | null; }) -> Promise — Edit this guild member. PATCH /guilds/{id}/members/{userId} or /members/@me for the bot.\nFor @me: nick, avatar, banner, bio, pronouns, accent_color, profile_flags, mute, deaf,\ncommunication_disabled_until, timeout_reason, channel_id, connection_id.\nFor other members: same plus roles (array of role IDs).; permissionsIn(channel: GuildChannel) -> { has(permission: PermissionResolvable): boolean; } — Compute the member's effective permissions in a guild channel.\nApplies role permissions and channel overwrites.; removeRole(roleId: string) -> Promise — Remove a role from this member.\nPrefer member.roles.remove(roleId) for Discord.js parity.","meta":{"url":"/docs/classes/GuildMember"},"embedding":[-0.0074089505,0.038620517,0.0034007828,0.036947343,0.017671464,0.013809413,-0.026495736,-0.01832469,0.025853971,0.03529709,0.018519511,-0.03788707,0.01829031,0.01591807,0.022335723,0.0014439719,-0.046046656,0.0011610507,0.0014196191,0.04173766,0.01107618,0.020479187,0.011322573,0.045886215,-0.038162112,0.022507625,0.0051856926,0.05129538,-0.01212478,-0.039629005,0.06999826,-0.021671038,-0.0059305984,-0.0050624963,-0.018737253,-0.0051513123,0.029612882,0.008297108,-0.016445234,-0.010732378,-0.018152788,-0.013626051,-0.003905027,-0.019287338,-0.018657032,0.044465166,-0.016697356,0.0134426905,-0.0038649167,0.03548045,-0.059271604,0.020135384,0.008090827,0.1200101,-0.023493193,0.00043261854,-0.043754637,-0.010228134,-0.025235126,0.008010605,-0.005371919,-0.025395568,-0.008056446,0.014428258,-0.018152788,-0.002695987,-0.067522876,0.013144728,0.02447876,0.02309209,0.060463455,-0.017316202,0.00041793528,-0.0006664761,-0.030758891,-0.006217101,0.013316629,0.02194608,0.0090935845,-0.012892606,0.011838277,0.037359904,-0.040064488,-0.019161277,0.041072976,-0.016353553,-0.02933784,-0.039651923,0.00074418983,-0.036122214,-0.016605675,-0.049645126,-0.105707906,-0.030346328,0.013557291,-0.011419984,0.019035216,0.013935474,-0.03685566,0.0562003,0.06284715,0.0145887,-0.06486413,-0.033234272,0.045679934,-0.0022203932,-0.0657351,0.044396404,-0.060509294,0.013603131,-0.05244139,0.06999826,0.006858866,0.01604413,-0.043158714,0.0045353323,-0.0023808344,0.014393878,-0.0006793687,-0.049874328,-0.070364974,-0.011712216,0.04288367,-0.03401356,0.0024782452,-0.02697706,-0.006234291,-0.01588369,-0.044923566,-0.008228348,-0.0086409105,-0.016949479,0.013843793,-0.026449896,-0.045634095,-0.0073631103,-0.00005394302,-0.055512693,-0.03752035,-0.05734631,-0.0026114688,0.0052916985,0.03435736,0.013671892,-0.022312803,0.026426977,-0.03275295,0.033853117,-0.061838668,0.018622652,-0.051799625,0.02075423,-0.00978692,-0.021877319,-0.038643435,-0.02073131,-0.0027833702,0.022553464,-0.05147874,-0.01580347,0.009615019,-0.028489793,-0.0010965877,-0.02070839,0.018118408,-0.057208788,0.004062603,0.032202862,-0.04396092,-0.0017505293,0.032317463,-0.009425927,-0.021395994,-0.021751259,-0.01722452,-0.007540742,-0.0126634035,-0.03419692,-0.038414236,-0.024524601,0.02319523,0.01228522,-0.040431213,-0.060142573,-0.05647534,0.009345707,-0.0014912448,-0.0034408933,0.008841462,0.014382418,0.0023034788,0.033303034,0.018106949,-0.0051914225,0.055375174,-0.027022902,0.06578094,0.015643029,-0.006910437,-0.039789446,0.0011703621,0.0075063617,0.04613834,-0.03671814,0.03772663,-0.018084029,0.015104404,-0.030919334,-0.03387604,0.00089102227,0.0022819913,-0.044602685,0.005704262,-0.010268244,-0.005598256,0.02571645,-0.07059418,0.016135812,-0.035090808,0.023011869,-0.069356486,0.045817453,0.026266536,-0.012961366,0.011505934,-0.0003070947,0.026312375,-0.020651089,0.016869258,0.0364431,-0.017213061,-0.019734282,-0.026220694,-0.034678243,-0.00018058601,-0.022221122,0.010285434,0.07884545,0.033188432,-0.0061368803,-0.024868404,-0.021659577,0.018473672,0.027572986,0.03048385,-0.009901521,0.0013472773,-0.007431871,0.024501681,0.018210089,0.0633514,0.04891168,-0.02805431,0.013362469,-0.029567042,0.02306917,-0.0009361464,0.08728007,0.009632209,0.025028845,-0.01715576,0.016422315,0.009317056,-0.018634113,-0.008342949,0.025899813,0.03768079,0.008245538,0.0005536658,0.0029767593,0.025028845,-0.014176136,0.027435465,-0.028145991,-0.005824593,0.023080628,0.0064291125,0.026060253,0.022278422,-0.01704116,0.012972826,0.0048476197,0.04302119,0.009179535,-0.029475361,0.04510693,0.017671464,-0.013614591,0.008818543,0.033188432,-0.020857371,0.00084733067,0.04290659,-0.021338696,0.031377736,-0.0014282143,0.05514597,-0.009076394,0.04276907,0.0413251,0.015333606,0.018530972,-0.007454791,-0.009666589,-0.0016903639,0.016834877,-0.0052888333,0.016697356,-0.012388362,-0.06105938,0.031171456,0.019321717,-0.017660005,0.009827031,-0.061701145,-0.0028335082,-0.011952878,0.015631568,0.031331897,0.056933746,0.027343784,-0.009798381,-0.0013587374,0.0077584838,-0.0063832724,-0.034907445,-0.027870947,-0.0087039415,0.03046093,0.0114314435,0.05271643,-0.04056873,0.0047874544,0.043754637,0.049553446,0.038826797,-0.012388362,0.057896394,0.021304315,0.00028757672,0.016342094,-0.044373482,-0.02325253,0.02194608,-0.0015628703,-0.004128499,-0.0105146365,0.028329352,-0.011746597,0.012995746,-0.010726647,0.033761438,-0.034930367,-0.019734282,-0.02333275,-0.026656179,0.020536488,-0.010291165,-0.00039967077,0.037061945,-0.032363307,-0.0005296712,-0.06623934,0.013259329,0.010337004,0.010571936,-0.008617991,0.019791583,0.011551775,-0.04274615,-0.025968572,0.03793291,-0.010205214,-0.020078084,-0.0041256337,-0.025280967,-0.055741895,0.0040826583,-0.024730882,0.025258048,0.025189286,0.025601849,0.05363324,-0.03050677,-0.006835946,-0.046115417,-0.045473654,-0.0043233205,-0.03055261,0.00095548533,0.031033935,0.038551755,-0.044419322,-0.018565351,-0.011769516,-0.016536916,0.03057553,0.050745297,0.016101431,-0.03680982,0.01822155,0.020696929,0.0001923147,-0.013694813,-0.019940563,-0.028879436,0.013202028,0.040820856,0.012090399,0.012709244,0.027733427,0.03162986,0.016949479,-0.0005733628,0.038345475,-0.05147874,0.023493193,-0.018920615,0.038574677,0.037657868,-0.021774178,-0.014978343,-0.0099359015,-0.049324244,0.018714333,-0.029727483,-0.0058131325,-0.010577667,0.008360138,-0.030162968,-0.067293674,0.012858225,0.0538166,0.0050796866,0.011918497,-0.035136648,-0.0039594625,-0.0014232004,-0.00095047156,0.03786415,0.01343123,-0.04762815,-0.007557932,0.0039451374,0.016365014,0.007666803,0.04031661,-0.0685772,0.032111183,-0.011872658,-0.007672533,0.041668903,0.020433348,0.05610862,-0.035778414,0.003916487,0.015127324,0.05244139,-0.016238952,-0.055558536,-0.021315774,0.015115864,0.011225162,0.039468564,-0.047398947,0.008967523,-0.06972321,-0.021201173,0.0013035857,0.010016122,-0.004128499,0.03515957,0.06793544,-0.001780612,-0.0062056407,0.03671814,-0.016433775,-0.026495736,0.016491076,0.035709653,0.038391314,0.043754637,-0.013729192,-0.043410834,-0.0012283789,0.028145991,0.024089117,0.0035526291,0.008039256,0.011952878,-0.0056842067,-0.00730008,0.011746597,-0.009597829,0.03499913,-0.005518035,0.018714333,-0.05624614,0.022805586,-0.01968844,0.0018808879,-0.058446478,-0.005346134,0.035961773,-0.010703728,0.015138784,-0.010033312,-0.042356506,-0.01463454,0.06353476,-0.036007617,0.0085435,-0.008354409,-0.018806014,0.0073115397,-0.0036557699,-0.044946488,0.024639202,-0.014943962,-0.005380514,0.027664667,0.030300489,0.018817473,-0.024960084,-0.0055466853,0.013041587,0.0027160423,-0.03568673,0.018634113,0.014370957,0.00734592,-0.019161277,0.054045804,0.0072370493,-0.024937164,-0.0061311503,-0.01580347,-0.017373502,0.011735136,-0.054687567,-0.0000463328,0.0010006095,-0.0019997864,0.0068875165,0.0072255894,0.031286057,-0.010130723,0.017866286,0.01338539,0.007815784,0.020502107,-0.03419692,0.0011768084,-0.049645126,-0.04056873,-0.0008065041,0.0061827204,0.0098213,-0.012915526,-0.023974515,0.011952878,0.008256998,0.0064061927,0.0049478956,-0.026656179,-0.0067729154,0.027687587,0.04501525,-0.015070023,-0.0067786453,-0.0077298335,0.022713905,0.00243527,-0.011133481,0.03332595,-0.006348892,-0.008715401,0.044533923,-0.01457724,0.020525029,-0.016662976,-0.06330556,0.024845483,-0.007557932,-0.041943945,0.0036099295,-0.016250413,-0.0043347804,-0.016468154,0.037268225,0.019356098,0.020444807,0.01840491,-0.0055438206,-0.014863742,-0.0073688403,-0.017545404,0.021395994,-0.035503373,-0.006618204,0.02304625,0.0053633237,-0.039789446,0.011735136,-0.0036930153,-0.040935457,0.04173766,-0.01699532,-0.010405765,0.008915953,0.019356098,0.02926908,-0.021361616,-0.005320349,-0.021533517,-0.010915739,-0.0072714295,-0.016708817,0.020444807,0.010239594,0.02695414,-0.007454791,0.021820018,0.014015695,0.023561953,0.014118835,-0.026106093,-0.017522484,0.002544141,-0.033486396,-0.006314512,-0.03676398,0.013373929,-0.010228134,-0.01837053,-0.021464756,0.032523748,-0.0069161667,0.031308975,-0.017029699,0.031446498,0.011437174,0.0013658999,-0.02807723,0.017831907,-0.01598683,0.0024510275,-0.012468582,-0.025189286,-0.028398113,-0.00611396,-0.028833596,0.010165103,-0.046642583,0.022198202,-0.02789387,-0.016846338,0.044350564,-0.04162306,0.029796245,-0.021659577,-0.0129269855,0.013270789,0.0316757,0.02309209,0.0009089287,-0.0067786453,0.029842084,-0.021373075,-0.0042574247,0.030667212,0.04033953,0.033807278,0.0027289349,0.01834761,-0.028650235,-0.020272907,-0.027091661,-0.017384963,0.01942486,0.0053891093,0.0026530118,-0.014932502,-0.009162345,0.03176738,-0.009087854,0.01583785,0.009236836,0.033303034,-0.023768235,0.00307417,0.014302197,0.02551017,-0.039491482,-0.021636657,0.030942254,0.0068015656,-0.009637939,0.025853971,-0.051707942,-0.0023994572,0.011058991,-0.010503176,-0.0060566594,0.006835946,-0.012583183,0.010279704,0.040522892,0.0065207933,-0.022851428,-0.055696055,0.019241497,-0.047078066,0.009764,0.010566207,-0.0008029228,-0.01105326,-0.013075967,0.009311326,-0.0021874455,-0.0020914671,0.018794553,-0.0046957736,-0.0023378592,-0.024066197,0.013259329,-0.021533517,0.03208826,-0.008984714,-0.033303034,-0.004134229,-0.0011510232,0.025831051,-0.02327545,0.016112892,0.02826059,-0.0020255717,0.035915934,-0.013316629,0.006956277,-0.00729435,0.006595284,0.010818329,-0.04040829,-0.048682477,0.01102461,-0.0036557699,-0.012078939,-0.002558466,0.04173766,-0.032477904,0.0072370493,-0.025876893,-0.021189714,-0.019264419,-0.033188432,-0.023584872,-0.0044579767,-0.008898763,0.049507607,0.0007885977,0.03781831,0.024043277,0.03781831,-0.028398113,-0.0045926324,0.013889634,-0.017682925,0.007798594,-0.011190781,-0.0110418005,0.009334247,-0.019275878,0.0027360974,0.036030535,-0.0047215587,0.0034838684,-0.029039878,0.0036156597,-0.009007634,0.009609289,0.014508479,0.003059845,-0.025601849,-0.012525883,-0.01698386,-0.019906184,-0.033257194,-0.026014414,-0.031538177,-0.055512693,0.028833596,-0.039881125,0.01602121,-0.035893016,-0.023630714,0.010136453,-0.08375037,0.001472622,0.041921023,-0.027779268,0.0007130327,0.028466873,0.02184294,0.04639046,0.005042441,-0.012743624,0.022668066,-0.023470271,0.014050075,0.0069161667,0.04260863,-0.005592526,-0.0032603967,0.006566634,0.02821475,-0.003936542,0.004641338,-0.0005837485,-0.051570423,0.0019625411,0.029796245,-0.0011452931,0.019711362,-0.043319155,0.033646837,0.0070135775,-0.0009841355,-0.0013916851,-0.0171443,0.011929958,-0.021567896,0.03302799,0.01834761,-0.01212478,0.024639202,-0.041072976,0.039606083,0.016158732,-0.011179321,-0.008623721,0.031194376,-0.021017812,0.00606812,0.05047025,-0.025601849,0.010617777,-0.012331061,0.011047531,0.03499913,0.020421887,-0.008165317,-0.023791155,-0.04402968,0.028604394,-0.029567042,-0.00018604746,0.051524583,0.033463474,0.013373929,0.0022977488,0.025372649,-0.030300489,-0.028008468,-0.035709653,0.022335723,0.008268458,-0.008176777,-0.0052229376,-0.019814502,-0.015665948,-0.02207214,0.036053456,-0.003283317,0.0038591865,-0.026449896,0.0020685468,-0.024341239,0.02695414,0.036832742,0.002326399,0.007941845,0.0014146053,-0.03064429,0.013534371,-0.015024183,-0.004036818,0.05262475,0.02071985,0.026129015,-0.02309209,0.0028678884,-0.00972389,0.014153216,-0.009764,0.04150846,-0.017350582,-0.002514058,-0.018508052,-0.015299225,-0.028604394,-0.0059019485,-0.044167202,0.03192782,0.017029699,-0.008027796,-0.015425286,0.0014826496,0.029979605,-0.01715576,-0.012594643,-0.04061457,-0.007999145,0.05102034,0.009615019,0.04008741,0.0107782185,-0.024822563,0.014302197,0.020307286,0.019264419,0.015115864,0.01583785,-0.0026014412,-0.0025885487,-0.0074376008,0.01824447,-0.024753803,-0.0056612864,0.02210652,0.0021587953,0.0010249622,0.0018665628,0.0037159354,0.009569178,-0.05225803,-0.02070839,-0.022794127,0.031033935,-0.023607794,0.029567042,-0.007724103,0.027664667,0.04022493,0.0013315197,-0.0079246545,0.01706408,0.03135482,-0.010881359,0.00011585439,-0.0026472816,-0.014932502,0.011505934,-0.0074032205,0.022988949,-0.03545753,0.007586582,0.015379446,0.014348038,0.024180798,-0.06261795,-0.05262475,0.01100169,-0.024753803,-0.04061457,-0.023493193,-0.03055261,-0.009001904,0.009861411,0.026885381,0.036786903,0.018049648,0.0466655,0.026289456,-0.019997863,0.027183343,0.058813203,-0.0024109173,-0.0030913602,-0.049278405,-0.010016122,0.07934969,0.005856108,0.016880719,-0.05775887,0.00089102227,0.007208399,0.016857797,0.019699901,0.02089175,0.005884758,0.0054406794,-0.053495716,0.0413251,-0.019436318,0.020135384,0.009529068,0.04758231,-0.0034609484,0.0019625411,0.0015886555,-0.027550066,0.0014769196,-0.0073974906,0.05115786,-0.021453295,0.024616282,-0.014806441,0.043296233,0.00305698,0.00020520731,0.015734708,0.0026386867,-0.02697706,-0.0014468369,-0.012858225,-0.012938446,-0.017877746,0.013603131,-0.014370957,0.0269083,0.006950547,0.013786493,-0.037199464,0.012331061,-0.05477925,0.007219859,-0.0068072956,0.007449061,-0.019356098,-0.0000049998016,0.027962629,-0.017889207,0.018874774,-0.007913195,-0.002684527,0.044121362,0.038689278,0.014164676,-0.04641338,-0.01945924,-0.005586796,-0.022221122,0.033738516,0.040935457,-0.0003344915,-0.008108016,0.003048385,0.028306432,0.0042631547,-0.020043705,0.016055591,0.00034845847,-0.016296253,0.000074535375,0.020479187,-0.0030999554,0.014061535,0.033440553,-0.035182487,-0.01966552,0.0029122964,-0.022931648,0.01095585,0.011402793,0.038872637,0.024134958,0.0007244928,-0.004735884,0.010033312,0.015127324,0.0019868938,-0.007196939,-0.047032226,0.023160849,0.005750102,0.037749548,-0.021567896,-0.040935457,-0.01960822,0.04297535,-0.02807723,-0.0024725152,-0.009941631,-0.032363307,0.012812385,-0.0054550045,0.009517608,0.010176564,0.013247868,-0.03204242,0.043387916,-0.02443292,-0.01570033,-0.0033377523,0.040843774,0.029131558,-0.03199658,-0.024226638,-0.031056855,0.012365441,0.032982152,0.005993629,0.01942486,-0.011144942,-0.022920188,0.03937688,-0.00041041462,0.006320242,0.0077527533,-0.01095585,0.024226638,0.021407455,-0.026426977,-0.034953285,0.007088068,-0.018760175,-0.0034895986,-0.010846979,0.004500952,0.025326807,-0.010147913,-0.02184294,0.032546666,0.013969854,0.02068547,-0.027756346,0.014187596,-0.03399064,0.012938446,0.0057787523,-0.0038419964,0.002379402,-0.038437154,-0.0034609484,0.0148752015,-0.016055591,0.013843793,0.0010249622,-0.03460948,0.026220694,-0.01457724,0.006452033,0.0109787695,-0.014978343,-0.011207972,-0.00857215,0.060325935,0.011546045,-0.0027876678,0.009517608,0.03660354,0.007792864,0.027687587,-0.011374143,-0.010623507,0.034747005,0.0028865112,0.009586369,-0.012067479,0.0024510275,0.00090606365,-0.020880291,-0.02060525,0.02327545,0.026610337,0.013167648,0.0067557255,0.034678243,0.021567896,0.0073058098,-0.014405338,-0.027366703,0.03043801,-0.017923586,0.0035927393,0.010686537,-0.009317056,0.04020201,0.004647068,-0.0003985964,-0.040706255,0.01099023,0.010594857,-0.0153909065,0.015608648,-0.016376475,0.02821475,-0.00090248237,-0.0018207224,0.0023006138,-0.015425286,-0.011735136,-0.016685897,-0.03561797,-0.007070878,-0.014279277,-0.03525125,0.018794553,0.024616282,-0.020307286,-0.012949906,0.0022289883,0.0010543286,0.054366685,-0.009345707,-0.00552663,-0.017430803,0.06225123,-0.018588273,-0.008715401,0.019356098,0.010657887,-0.0051971525,-0.0068531362,-0.0055552805,0.06724783,-0.022977488,0.010629237,0.005712857,0.0019782986,-0.008434629,0.00734592,0.008182507,-0.018084029,0.006199911,0.013167648,0.026518658,-0.016869258,0.0031085506,0.019917643,-0.034540724,0.027572986,-0.0030999554,-0.028650235,0.02457044,0.009488958,0.009998932,0.012078939,-0.02076569,0.02686246,0.004286075,0.005572471,-0.025189286,0.013522911,-0.0059134085,0.011614805,0.0030025446,0.011591885,0.028810676,0.0018737253,-0.005890488,0.018026728,0.01105326,0.026679099,0.03433444,0.010044772,0.021212634,0.0035526291,-0.008102287,0.00030494595,-0.0018594002,-0.04368588,0.026449896,-0.0018020998,-0.007832974,-0.031148534,0.044167202,0.041027136,0.009523338,0.0069734673,0.010835519,0.0038334015,-0.0056956667,-0.03263835,0.0117580565,0.006343162,-0.038987238,0.010136453,0.018817473,-0.019126896,-0.020674009,0.018897695,0.02086883,-0.023905756,-0.04758231,-0.00027540038,-0.04650506,0.016468154,0.026724938,0.0005468614,0.015241925,-0.02810015,-0.000915375,0.009414467,-0.032157023,-0.0023579143,-0.03321135,-0.01827885,-0.017969428,-0.051707942,-0.015081484,-0.027183343,0.024547521,-0.0002693122,-0.022954568,-0.022931648,-0.015562807,-0.013270789,-0.0047731292,-0.0047215587,0.010480256,0.035847172,0.011803897,-0.03674106,-0.0037445857,0.017407883,0.01463454,0.012949906,-0.025464328,0.0003677974,0.0025226532,-0.037497427,0.0029509743,0.021728339,-0.024822563,-0.02681662,-0.016101431,-0.013270789,0.009597829,-0.01338539,-0.009517608,-0.043204553,0.017648544,-0.008887303,0.02058233,-0.0062858616,-0.0048046443,-0.01816425,-0.0128009245,-0.004280345,0.010824058,-0.030300489,0.05111202,-0.03055261,0.011614805,-0.005987899,0.008595071,-0.006583824,-0.010079153,-0.0018407776,-0.03520541,0.0024223772,-0.014955423,0.052991472,0.013293709,-0.026541578,-0.029062798,0.015310685,0.057529673,0.026541578,0.02567061,0.004274615,0.0062572113,0.018530972,-0.016342094,0.023516113,0.007540742,0.023516113,0.0034895986,-0.06394732,-0.007890275,0.0048046443,-0.01835907,-0.025808131,0.0033635376,-0.0028678884,0.025326807,-0.01212478,0.018519511,0.0021960405,-0.002001219,-0.008847193,-0.021487676,0.002544141,-0.017854827,-0.0042287745,0.00024370606,-0.017889207,-0.023699474,0.019413399,-0.0067958357,-0.012342521,0.00861226,-0.019390479,-0.01101315,-0.009861411,-0.00152276,-0.015539887,-0.01586077,0.0073917606,-0.010285434,-0.03884972,0.018393451,-0.036993183,0.003286182,0.0041915295,-0.0020656819,0.005268778,0.03662646,-0.020066625,0.037428666,0.01213624,0.014244896,0.008434629,0.009225376,-0.021636657,-0.025143446,0.0070078475,-0.017373502,0.011964338,-0.017522484,-0.0040941187,-0.0026687693,-0.029016959,-0.0013673324,-0.01814133,-0.025303887,0.011597615,0.03536585,0.008108016,0.020066625,0.03197366,-0.042952433,-0.00979265,0.009878601,0.013098887,0.018233009,-0.013018667,-0.022771206,-0.014061535,0.03896432,-0.00426029,0.014726221,-0.026610337,0.008784162,-0.00038749442,-0.016640056,-0.029910846,-0.014554319,0.011127751,-0.005709992,0.018118408,-0.0039623273,0.008858653,-0.03784123,-0.00031282476,0.025258048,0.008795622,-0.019058136,-0.027527146,0.032225784,-0.022977488,-0.00364431,-0.004627013,-0.0033778627,0.0070651476,0.033234272,0.004684313,0.01228522,-0.021522056,0.04506109,-0.0010700863,-0.013775033,0.007850165,0.008004876,0.034838684,-0.020078084,-0.03046093,0.008726861,-0.0007513524,0.012823845,0.01570033,-0.017407883,0.0006729224,0.01832469,-0.010732378,-0.011488744,0.013729192,-0.011505934,-0.019711362,0.01715576,0.019711362,-0.0033205622,-0.031308975,0.017877746,-0.02201484,0.0344032,0.016685897,0.0055667404,-0.025074685,-0.009529068,-0.0219117,0.021671038,-0.014726221,0.025922732,-0.0095462585,-0.013557291,-0.032982152,-0.017728765,0.023951596,-0.013328089,0.038712196,0.04425888,0.012514423,0.037222385,-0.0035297088,-0.009890061,-0.040935457,-0.019825961,-0.016617136,0.005263048,-0.03311967,-0.022427404,-0.005033846,-0.005334674,-0.024914244,0.0030999554,0.010337004,-0.002584251,0.008875843,-0.017728765,0.0020513567,-0.015688868,-0.0066755046,-0.016903639]},{"id":"class-GuildMemberManager","type":"class","source":"main","text":"Class: GuildMemberManager\nDescription: Manages guild members with a Collection-like API.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProvides guild.members.me for Discord.js parity.\nProperties: me: GuildMember | null\nMethods: fetch(options: { limit?: number; after?: string; }) -> Promise — Fetch guild members with pagination. GET /guilds/{id}/members.; fetchMe() -> Promise — Fetch the current bot user as a GuildMember in this guild.\nCaches the result in guild.members.; resolve(userId: string) -> Promise — Get a guild member from cache or fetch from the API if not present.\nConvenience helper to avoid repeating `guild.members.get(userId) ?? (await guild.fetchMember(userId))`.","meta":{"url":"/docs/classes/GuildMemberManager"},"embedding":[-0.008696421,-0.0004970963,0.022156712,0.0033842344,-0.0029022463,0.022463297,-0.025470197,-0.0009484995,0.012841224,0.028158717,0.047591534,-0.056128766,-0.0040946878,0.014126525,0.044926595,-0.007293202,-0.018913979,-0.00015016066,0.0002336242,0.021979837,0.02495136,0.056317434,0.037356287,0.0035758505,-0.028111551,0.006615176,-0.051270563,0.064760335,-0.038865633,-0.06584518,0.038629796,-0.011579506,-0.00027618508,0.02173221,-0.019079063,0.029337892,0.04462001,-0.0034255055,-0.014503862,0.0060668592,-0.041624904,-0.019515358,-0.005459584,-0.005344614,0.0035876422,-0.0143151935,0.01469253,-0.008000707,0.029762397,0.037261955,-0.039242968,0.0046459525,-0.029526561,0.096032076,0.0043098875,-0.038158126,-0.036955368,-0.0030024762,-0.018336182,-0.000070105685,-0.0012595071,0.023265138,-0.015954249,0.023489181,-0.0070750546,0.03495077,-0.008490065,0.040492896,-0.0043098875,0.024739107,0.028111551,0.001986911,-0.02321797,-0.03266317,0.0018763634,-0.010541831,0.026555037,0.02341843,0.012994517,-0.0007907847,-0.0020709275,-0.01117269,-0.012876599,-0.027474795,0.010618478,-0.018171098,-0.021036496,-0.0036407053,0.029267142,0.001217499,-0.030776488,-0.033441424,-0.08438182,0.0063852365,0.00310418,-0.02436177,0.020022403,0.0029361476,-0.017286716,0.05924179,0.064571664,-0.008395731,-0.011090148,-0.0070750546,0.045327514,-0.026389953,-0.057260774,0.00848417,-0.07457107,0.03320559,-0.044242673,0.040044807,0.044266257,0.014350569,-0.029880313,0.011644361,0.0032191498,0.018524852,-0.01184482,-0.009144508,-0.053298745,0.019008312,0.0565061,-0.030634986,0.024055185,-0.021378456,-0.0088379225,-0.031153824,-0.047497198,0.015211367,-0.008773068,0.0021711574,0.010459289,0.001994281,-0.035941277,-0.013348269,-0.021979837,-0.014197276,-0.0070219915,-0.0303284,-0.0078061437,-0.024385355,0.03575261,0.031389657,-0.0043541063,-0.000120220655,-0.040563647,-0.0005044661,-0.045539767,-0.011302399,-0.053110074,-0.017888097,-0.022085963,-0.023477389,-0.027191794,-0.010070161,-0.017098049,0.014209067,-0.045917105,-0.024338188,0.01057131,-0.0519309,-0.029078474,-0.005757326,0.039808974,0.015494369,-0.02549378,0.0040003536,-0.030634986,0.006874595,0.042851247,-0.01992807,-0.022628382,-0.007593892,0.0024467898,-0.010860208,-0.039761808,-0.036389362,-0.051270563,-0.024408938,0.022144921,-0.026177702,-0.021460999,-0.03528094,-0.054430753,0.014503862,-0.009333177,0.02495136,0.026272036,0.01696834,0.0025897648,0.08829668,-0.021826543,0.007641059,0.051695064,-0.010305996,0.043511584,-0.002915512,0.01067154,-0.044289842,-0.0022168504,0.010553623,0.058345616,-0.0149637405,0.01723955,-0.0006415453,0.00095365837,-0.030941572,-0.0258947,-0.0042509288,0.00862567,-0.020152114,0.0010759978,0.0043069394,-0.016673544,0.0017893992,-0.06711868,0.011974529,-0.031861328,0.051364895,-0.019444609,0.048817877,0.06556217,0.022722717,0.01374919,-0.036059193,0.026720123,-0.077778436,-0.0073403693,0.022758093,0.003693768,-0.01811214,-0.062496316,-0.03313484,0.0130416835,0.009415719,-0.011950946,0.0690997,0.021649666,-0.011367254,-0.016355168,-0.017333884,-0.013536938,0.026649373,0.018678144,-0.026696539,-0.01764047,-0.025706032,0.04160132,-0.0009625022,0.03153116,0.009852014,0.026272036,-0.00670951,0.011479276,0.036861036,-0.06726018,0.08466482,0.016991923,0.03301692,-0.044101175,0.04943105,-0.011337775,0.023760391,-0.050798893,0.018041389,-0.00017844245,-0.002386357,-0.013584104,0.06730735,0.05414775,0.030988738,0.04084665,-0.036861036,-0.02931431,0.03997406,-0.0050822473,0.027451212,0.0143151935,-0.004421909,-0.011815341,-0.046058606,0.04924238,0.023394847,0.033229172,0.034243263,0.046648193,0.028889807,-0.0077118096,0.044454925,-0.0011069513,-0.0031778787,0.0118742995,-0.05065739,0.052166734,0.017322091,0.07211839,-0.008537233,0.059524793,0.057779614,-0.0031955664,0.0031395555,-0.026272036,-0.03167266,-0.0054654796,-0.0011644361,-0.011833029,-0.017286716,-0.05509109,-0.037521373,0.00046982785,-0.0050321324,-0.03502152,0.0057602734,-0.026555037,0.01751076,0.019267732,-0.0070219915,0.03990331,0.050798893,0.019114438,0.004539827,-0.012068864,0.005020341,-0.014114734,-0.054666586,-0.04226166,-0.068533696,-0.02945581,0.009521844,0.04193149,-0.0046371087,-0.030068982,0.023489181,0.049949884,0.018395143,0.011160899,-0.0047904016,0.014433111,0.013631272,0.039808974,0.010270621,-0.059147455,0.03308767,0.016260834,0.0034343493,0.002233064,0.039266553,-0.0037468309,0.014338777,-0.02483344,0.02556453,-0.031955663,-0.011998113,0.012287011,-0.024173103,0.009368551,-0.026696539,0.0063970285,0.017204175,-0.057402276,0.036507282,-0.04186074,0.011090148,-0.018713519,0.008495961,-0.00043997995,-0.013336478,0.03884205,-0.0153528685,-0.006626968,0.025635282,-0.0098755965,-0.02313543,0.011502859,0.010730499,-0.02025824,0.012841224,0.0061081303,0.05013855,0.0040003536,0.0013862685,0.039502386,-0.05004422,0.030068982,-0.034314014,-0.030210482,0.00494959,-0.035870526,0.01718059,0.026272036,0.05452509,-0.0023952008,-0.036813866,-0.03174341,-0.00048641,0.030045398,-0.017215965,-0.0024718472,-0.01965686,0.05556276,0.024597606,-0.008248335,-0.01274689,-0.015930664,-0.008154,0.015600495,0.037898708,0.034785684,-0.027639879,0.016249042,0.01669713,0.041153233,-0.022321798,0.03388951,-0.025257945,0.00093228585,0.019008312,0.049478214,0.0073580565,-0.012900183,-0.047049113,0.007817935,0.012098343,0.03709687,-0.0092270505,0.06589234,0.013985025,-0.039478805,-0.023654265,-0.10197512,0.015753789,0.027639879,0.016095748,0.0038205294,0.007151701,0.0147043215,0.0031985142,-0.008908673,0.027050292,0.029432226,-0.007794352,-0.04259183,0.01449207,0.0057927007,0.0005980632,0.045068096,-0.059902128,0.0065385294,0.012829432,-0.013124227,0.009173987,0.048346207,0.04495018,-0.03254525,0.0015461942,-0.010724603,0.041011732,0.013914274,-0.07749543,-0.029078474,0.011467484,-0.018336182,0.033441424,0.018595602,0.022852426,-0.035611108,0.018866813,0.01703909,0.02636637,-0.021496374,0.00069423974,0.058487117,0.02032899,-0.029219976,0.0102647245,-0.016661754,-0.0047491305,0.029809562,0.014527446,0.021991627,0.011491068,-0.031696245,-0.012935558,0.018159308,0.031554744,-0.00310418,0.011237545,0.018666353,-0.0065326337,-0.032498084,0.0101114325,0.050563056,-0.010830729,0.031248158,0.01063027,-0.026531454,-0.07961795,-0.0040652086,-0.007918165,0.023029303,-0.050421555,-0.017274925,0.051364895,-0.025352279,-0.011886092,-0.020116739,-0.007487766,0.012369554,0.060751136,-0.020564824,0.04414834,0.00085342844,-0.0081363125,0.009822534,0.020741701,-0.04094098,0.0006747096,-0.000118838805,0.02931431,0.024008019,0.007865102,-0.026932374,-0.036908202,0.009244738,0.004383586,-0.015034491,0.0004860415,0.029361477,0.06792052,-0.016649961,-0.014834031,0.052166734,0.023772184,-0.01772301,-0.02749838,-0.012593597,-0.017557926,0.0035227875,-0.06608101,0.009374447,0.025140027,-0.016520252,-0.0001614918,-0.011396734,0.0037232474,-0.04025706,0.030422734,0.024125936,0.006762573,0.0032751607,-0.012381345,0.04322858,-0.046954777,-0.027427629,0.0078002475,0.028701138,0.002290549,0.0045486703,-0.022510465,0.01656742,0.0045840456,0.041766405,0.016249042,-0.029738812,0.002729792,0.011331879,-0.00845469,-0.023029303,-0.018241849,-0.006845115,0.006615176,-0.028111551,-0.0025573375,0.020576617,-0.006526738,-0.0054684277,0.025305111,-0.031625494,0.045162432,-0.00082394906,-0.034455515,0.02047049,0.027451212,-0.039408054,0.017392842,-0.04044573,0.027097458,0.011585401,0.064713165,-0.00063307,0.009769471,0.027852131,-0.0017392843,0.019196982,0.0012219208,0.0071281176,0.019244147,-0.03825246,-0.010653853,0.015341077,0.032828253,-0.004530983,-0.00885561,0.0039590825,-0.023996226,0.037662875,0.017157007,-0.018642768,-0.0013096221,0.003897176,0.017381052,0.010276517,-0.06263781,-0.018206473,-0.0027902247,-0.02756913,-0.010423914,0.015341077,0.011632569,0.020045988,-0.033724427,0.042025823,0.00033624933,0.045869935,0.008207063,-0.012970934,-0.02844172,-0.0058988268,-0.04221449,-0.0065856967,0.018878603,0.017098049,-0.0053858855,-0.003549319,0.009321384,0.029998232,0.025729615,0.006626968,0.0032840045,0.031059489,0.021626083,0.004651848,-0.010742291,-0.0037114557,-0.03629503,0.010022994,0.0045427745,-0.033913095,-0.0076646423,-0.028701138,-0.024927776,-0.040139142,-0.049619716,0.03080007,-0.016756088,-0.022251047,0.037544955,-0.02120158,0.028488886,-0.042072993,0.023100054,-0.016249042,0.03386593,-0.030021815,0.027427629,-0.006556217,0.03756854,-0.012428513,0.025399446,0.043322917,0.01851306,0.028630387,0.0034756206,0.038276047,-0.0151642,-0.018737102,-0.017593302,-0.03174341,0.018501267,-0.018501267,0.014291611,-0.01204528,-0.003410766,0.05589293,-0.026720123,0.016166499,0.026272036,0.008071458,0.02354814,-0.0027180002,-0.022357173,0.03488002,-0.026012618,-0.018359767,0.018572018,0.016461294,-0.0040003536,0.016991923,-0.024974942,-0.0035345794,0.02133129,-0.0059106187,0.018772477,0.0022581215,0.03113024,0.008006603,0.0153528685,0.01247568,-0.018666353,-0.059996463,0.00058737694,-0.07155239,0.012805848,0.01818289,0.0038735922,0.0065915924,-0.008018395,0.036483698,-0.005318083,0.0048935795,0.01436236,-0.026578622,0.012970934,-0.025989033,-0.0065208417,0.006043276,0.011703319,-0.03388951,-0.029361477,0.012699723,0.039007135,-0.0023509816,0.00016213667,0.016355168,0.011703319,0.02287601,0.014338777,-0.039502386,-0.009793054,-0.01167384,-0.0049938094,0.010653853,-0.025257945,-0.031295326,0.005819232,0.021236956,-0.001510819,-0.015175992,0.011756382,-0.034691352,0.0075172456,-0.03221508,0.04891221,-0.008171688,-0.03959672,-0.023489181,-0.017616887,-0.028111551,0.01361948,-0.008619775,0.03160191,0.0015683038,0.031248158,-0.016060375,-0.024196686,0.004239137,-0.04313425,0.0030142681,-0.027427629,0.0011725429,0.022758093,-0.0055657094,-0.00595189,0.03716762,-0.025069276,0.019079063,-0.0066387593,-0.0053298743,0.014834031,0.011738694,0.020081364,0.009109133,-0.020340782,0.006485467,0.0060049524,0.011149107,-0.03341784,-0.018465891,-0.028960556,0.0019500619,-0.00034914658,-0.012723306,0.013985025,-0.04716703,0.010182182,0.008690526,-0.052496906,-0.015376451,0.04919521,-0.023265138,0.0074818702,0.02502211,0.022144921,0.017274925,-0.013536938,-0.03396026,0.005707211,-0.027687047,0.02120158,-0.004719651,0.017357467,0.025234362,-0.043181416,0.023394847,0.040540062,0.017852722,0.0018306704,0.020435115,-0.025210777,-0.0034431932,0.022227462,-0.010205766,0.025823949,-0.026625788,0.042945582,-0.001992807,-0.025446612,0.017050881,-0.021177996,0.0139260655,-0.027144626,0.024338188,0.014279818,-0.0069335536,0.029738812,-0.035233773,0.026814457,0.030351983,-0.027592713,0.010164495,-0.0033930782,0.03436118,0.019161606,0.025611697,-0.023642475,-0.009757679,-0.021319497,-0.011833029,0.029573727,0.011508755,-0.012487471,-0.012605389,-0.040351395,0.04862921,-0.0075054537,-0.01321856,0.032899003,0.0025131183,0.020364365,-0.010459289,0.008289605,-0.011060668,-0.018595602,0.0021107246,0.0108366255,0.044714347,0.024338188,0.035917692,0.0016641117,0.006680031,0.019338483,-0.003994458,-0.009368551,-0.016850421,-0.02133129,-0.0054625315,0.00083426683,-0.0025499675,0.030823654,0.028559636,-0.0057307943,0.005819232,-0.05641177,-0.009433406,-0.001218973,-0.021307707,0.03582336,0.015411827,0.0012595071,0.0018188786,0.015588704,-0.022628382,-0.01992807,-0.011962738,0.041577738,-0.00261777,0.021744002,-0.00555097,0.005494959,-0.0024261542,-0.0027990683,-0.04228524,-0.00062791107,-0.014562821,0.004047521,0.0035198396,-0.013760981,0.030375568,-0.027616296,-0.011650257,-0.024196686,0.010642061,0.04233241,0.01629621,0.01932669,0.0034962562,0.027592713,0.025729615,-0.013230352,0.0044897115,0.0057691173,-0.014586404,0.014716113,0.022781676,-0.009604387,0.019880904,-0.021295914,0.007540829,0.04815754,0.022699133,0.024526855,-0.017404635,0.012027592,-0.00838394,-0.016815046,0.0013295207,-0.029550144,0.018076764,-0.00088069687,0.03544602,0.017864512,-0.0007027151,0.014951949,0.011007606,-0.022027003,0.038724132,0.035705443,-0.01590708,-0.013914274,0.025941867,-0.015187784,0.03414893,-0.008749484,0.009132716,-0.021555332,-0.0018793114,0.0068686986,0.011048877,-0.0011931785,-0.023276929,-0.030163316,0.0064088204,-0.037144035,-0.018807853,-0.04775662,0.009014798,0.01157361,-0.0066387593,0.039337303,0.026342787,0.025470197,0.050940394,0.057543777,-0.012251636,0.03348859,0.030682154,0.007440599,-0.01254643,-0.014598195,0.02422027,0.046058606,0.0064382995,-0.0053239786,-0.051836565,0.0147043215,0.016661754,0.0046577444,0.025257945,0.011379046,-0.0016420023,0.009386239,-0.01972761,-0.011838924,0.0030010024,-0.00083352986,-0.0076882257,0.03778079,0.019114438,-0.0116679445,-0.022156712,-0.02106008,-0.0022817052,0.005391781,0.015529744,-0.032380167,0.059854962,-0.0072283475,0.009586699,0.014716113,-0.02361889,0.03818171,-0.00047830318,-0.0069630328,-0.013312894,0.021095455,-0.009916868,-0.008395731,0.029550144,-0.02462119,0.038393963,-0.026625788,0.0027356877,-0.034667768,-0.008124521,-0.04414834,-0.007057367,-0.01047108,0.019550733,-0.013525146,-0.0000037914415,0.03763929,0.023394847,-0.019621484,-0.02778138,0.006455987,-0.0066918223,0.0227463,0.036318615,-0.008130417,-0.0060609635,-0.010948647,-0.028536053,0.03386593,0.04072873,0.006125818,0.026389953,0.0042126053,0.033111256,-0.011508755,-0.0063380697,0.025140027,0.001843936,-0.038417548,0.024691941,0.0071340133,-0.01022935,-0.024243854,0.004395378,-0.031837747,-0.014480278,0.023300514,-0.01120217,-0.0064913626,-0.00066476036,0.019161606,0.00017927156,-0.006467779,-0.010164495,-0.011827133,0.040610813,0.003749779,0.010176287,-0.025800366,0.0009300749,-0.0010376747,0.013784565,-0.021177996,-0.036955368,-0.015270326,0.0409174,-0.020623785,0.018642768,0.008944049,-0.0057661696,0.035540357,-0.023430223,0.017770179,0.028819056,0.0044012736,-0.013136018,0.036530863,-0.007841519,-0.0216025,-0.015671246,0.015694829,-0.00031008638,-0.0776841,-0.014385944,-0.02730971,0.03756854,0.021472791,-0.016095748,-0.008195272,0.02067095,-0.010117328,0.012463888,-0.009173987,0.017569719,-0.0004628265,-0.011579506,-0.0010413596,0.030163316,-0.007876894,-0.014904781,-0.0009956665,0.01610754,0.014668946,-0.018913979,0.0003795472,-0.0005892194,0.00932728,0.006762573,0.019279523,0.009362656,0.0020694535,-0.052638404,0.009091445,-0.018289017,0.028795471,-0.014716113,0.006998408,-0.0154825775,-0.041955072,0.0005796386,0.01374919,-0.02361889,0.022958552,-0.02509286,-0.0020001768,0.009091445,-0.015140616,0.039667472,0.023725016,0.0141854845,2.8500585e-7,-0.020918578,0.05862862,0.021696834,-0.019704027,-0.0033635988,0.044360593,-0.014067567,-0.0030835446,-0.010011202,0.028465303,-0.022522258,-0.02314722,0.0028314958,-0.0043069394,-0.0126525555,-0.005869347,-0.047049113,-0.046601027,0.019350274,0.006568009,-0.0034903602,0.00592241,0.005005601,0.020305406,0.020812452,-0.013006309,-0.022581216,0.03436118,-0.0013553151,-0.030965155,0.0097282,0.008466482,0.040115558,-0.036955368,-0.008596191,-0.019633276,-0.029644478,0.0018233005,-0.011956843,0.02227463,-0.030399151,0.032238666,-0.022687342,0.003354755,-0.0005405784,-0.0035640588,-0.017157007,0.0071163257,-0.0097458875,-0.011184482,0.001892577,-0.026932374,0.009286009,0.010984022,0.0032663168,0.023642475,0.0068922825,0.010370851,0.07537291,0.0071222214,-0.034856435,0.0150934495,0.05655327,-0.025540946,-0.013442604,-0.0043511586,-0.016213667,-0.0023730912,-0.018418726,0.022133129,0.017133424,-0.0050291847,-0.02018749,-0.0075467248,-0.005058664,0.02938506,0.012864808,-0.0012034962,-0.01772301,-0.02643712,0.013029892,0.04629444,-0.0024924828,0.014751488,-0.019951655,-0.028795471,0.031766996,-0.009050174,-0.0033016922,0.021578915,0.055751428,0.0016773775,0.009268321,0.011113731,-0.0020163904,0.013124227,0.023465598,-0.02065916,0.024691941,0.0024040446,-0.005497907,-0.015317493,0.02381935,0.022380756,-0.02294676,-0.0103001,0.024385355,0.03636578,0.03999764,0.017829137,-0.0058663995,0.008920465,0.0040563648,-0.009657449,0.003310536,-0.012110135,-0.031106656,0.011084252,0.010612582,-0.026743706,-0.019373858,0.026319202,0.058251284,0.0102647245,-0.008920465,0.006373445,-0.017416425,-0.030139733,-0.033771593,0.006402924,0.018796062,-0.059477624,0.0108896885,0.00049267436,-0.023453806,0.001557986,0.011296504,-0.0067802607,-0.008289605,-0.03912505,-0.020423325,-0.049383882,0.023442013,-0.00056968926,-0.008873298,0.011915571,-0.0027474796,-0.025069276,-0.01838335,-0.005707211,-0.0026634634,-0.07211839,-0.0204587,-0.003997406,-0.03938447,0.015683038,-0.027592713,0.02702671,-0.0033812865,-0.027404044,-0.02314722,-0.0130181005,-0.020564824,-0.05084606,-0.0048788395,0.04862921,-0.0055981367,0.014256235,-0.00093228585,-0.04862921,0.0238901,-0.0010737869,0.038393963,-0.003982666,-0.0067271977,0.0074700783,-0.01772301,-0.0087082125,-0.0027784328,-0.031153824,-0.038134545,-0.0103177875,0.0108896885,0.012204469,0.00047830318,-0.015058074,-0.05273274,0.002429102,-0.007139909,-0.007487766,-0.0060196924,-0.0013663699,0.006986616,-0.012015801,-0.007016096,0.023064679,-0.06145864,0.04603502,-0.032097165,0.017970638,-0.02161429,-0.013607688,-0.029149225,-0.028111551,-0.014385944,-0.009073758,0.005562762,-0.027639879,0.05131773,-0.014515653,-0.00476387,-0.0012639291,0.021543542,0.029054891,0.0477802,0.009952243,0.016520252,-0.010783562,0.0012226579,0.002679677,0.051081892,-0.0061435057,0.029149225,-0.010323684,-0.05556276,-0.01207476,0.017392842,-0.009398031,-0.010972231,-0.021460999,0.013961441,-0.005406521,-0.031979248,0.007894582,0.014586404,-0.013253936,-0.0053740935,-0.023253346,0.026224868,0.007428807,-0.014527446,0.017958846,-0.023159012,-0.011620777,0.030682154,-0.002141678,0.0031719827,0.009168091,0.0058634514,0.008195272,-0.024597606,-0.010258829,0.023725016,-0.0150934495,0.003988562,-0.02483344,0.0075172456,0.01751076,-0.006084547,-0.012440304,-0.0024718472,0.009887389,0.014409528,0.01623725,-0.040021226,0.00005550417,0.0021210425,0.01670892,0.0073698484,0.011343671,-0.01120217,-0.024456104,-0.017145215,-0.023524556,0.0019338483,-0.0057219504,-0.002485113,-0.017864512,-0.036648784,0.0056659393,-0.0183126,-0.015576912,0.018171098,0.04400684,-0.005503803,0.024456104,0.013902483,-0.022569424,-0.021284122,0.0076587466,-0.008407523,0.030705737,0.0033429633,-0.006845115,0.01690938,0.013265727,-0.0032957962,0.009822534,-0.04999705,-0.011184482,0.002340664,-0.010877896,-0.030139733,-0.0087082125,0.011255233,-0.01784093,-0.03535169,-0.006851011,0.016260834,-0.009050174,0.029833147,0.0047373385,0.0008165792,0.0036908202,-0.00670951,-0.0025602854,0.0023789871,-0.02153175,0.03374801,0.009492365,0.011526443,0.034526266,-0.005934202,0.012994517,-0.02025824,0.016874004,0.015046283,0.0015786216,-0.010895584,0.0028034903,0.018831437,-0.013006309,-0.007641059,-0.018041389,0.0050468724,0.024243854,0.029267142,-0.02032899,0.008478274,0.0034461413,-0.010895584,-0.033582926,0.03339426,-0.014173693,-0.008419315,0.0068686986,0.050798893,0.029974647,-0.008560816,0.011691527,-0.045917105,0.008437002,-0.0005685838,-0.013808148,-0.02778138,-0.000008636541,-0.012216261,0.027073875,0.0032692647,0.024715524,-0.00022275368,-0.017428217,-0.02113083,-0.003216202,0.04145982,-0.012511055,0.019963445,0.036483698,-0.009315489,0.015871705,-0.009309593,0.0056394082,-0.025328696,-0.044926595,-0.01765226,-0.037615705,-0.009162196,-0.018489476,0.022911385,0.0032840045,-0.027404044,-0.023041094,0.028536053,0.004035729,0.021354873,0.001170332,0.0021018807,0.01718059,-0.02436177,-0.004813985]},{"id":"class-GuildMemberRoleManager","type":"class","source":"main","text":"Class: GuildMemberRoleManager\nDescription: Manages a guild member's roles with add/remove/set and a cache of Role objects.\nDiscord.js parity: member.roles.add(), member.roles.remove(), member.roles.set(), member.roles.cache\nProperties: cache: Collection, roleIds: readonly string[]\nMethods: add(roleOrId: RoleResolvable) -> Promise — Add a role to this member.\nDiscord.js parity: member.roles.add(roleId)\nRequires Manage Roles permission.; has(roleOrId: RoleResolvable) -> boolean — Check if the member has a role. Discord.js parity: member.roles.cache.has(roleId); remove(roleOrId: RoleResolvable) -> Promise — Remove a role from this member.\nDiscord.js parity: member.roles.remove(roleId)\nRequires Manage Roles permission.; set(roleIds: string[]) -> Promise — Replace all roles for this member. PATCH /guilds/{id}/members/{userId}\nDiscord.js parity: member.roles.set(roleIds)\nRequires Manage Roles permission.","meta":{"url":"/docs/classes/GuildMemberRoleManager"},"embedding":[-0.017766263,0.038399834,-0.024372093,-0.005265916,-0.003291887,0.042612568,0.0033966538,-0.0006475561,0.032091763,0.0011255551,0.04259051,-0.042789016,0.0042678737,0.02966558,0.00918089,-0.011800064,-0.05152327,-0.00063652796,-0.025629297,0.040539283,0.03215793,0.013200632,0.0031374935,0.026776219,-0.044950522,0.010388467,-0.0122411875,0.047597267,-0.02624687,-0.037583753,0.06934468,-0.015715038,-0.020247586,0.011866232,-0.01431447,-0.006291529,0.026313039,0.02022553,0.0022276756,0.02909212,-0.0072013475,-0.018295612,-0.04433295,-0.041928824,-0.00817182,0.020060109,-0.0013240608,0.012627171,-0.010250616,-0.00039390984,-0.021659182,0.004091424,-0.016520089,0.07163852,-0.004554604,-0.0028562772,-0.032929897,0.009401453,-0.028033422,0.017766263,0.01929917,-0.037539642,-0.024063308,0.026952669,-0.0012330791,-0.0028948754,-0.06153678,-0.0014184889,0.015130549,0.029533243,0.016178219,-0.0049791858,-0.006688541,-0.022056194,-0.0071903192,-0.011436136,0.050729245,0.014645313,0.02549696,-0.0025929813,0.009186405,0.023666296,-0.02792314,-0.01086819,0.030459603,-0.022960497,-0.044112388,-0.02300461,0.013244744,-0.037010293,-0.022111334,-0.009462107,-0.10031157,0.014744566,-0.028430434,-0.038730677,0.014623256,0.02202311,-0.006936673,0.05893415,0.0487883,0.0016073451,-0.04936176,0.0017052195,0.027107062,-0.0031430076,-0.06175734,0.041752376,-0.024350038,-0.026070422,-0.059242938,0.0064790067,0.027901085,0.0021808061,-0.025849858,0.021416564,0.0069091027,0.012891845,-0.000132251,-0.013465307,-0.05761078,-0.026864445,0.030349324,-0.053773,-0.028518658,0.00042458173,-0.041399475,-0.053817112,-0.041421533,0.034407664,-0.0322241,-0.01703841,0.030569885,-0.040649567,-0.036304496,0.00083675684,-0.017225888,-0.03191531,0.00020884459,-0.04016433,-0.010167905,0.017060466,-0.00014853469,0.042039104,-0.030503716,0.011943429,0.0033883827,-0.00843098,-0.07388825,0.029797917,-0.05972817,-0.004874419,0.0065176054,-0.02838632,-0.016872989,-0.05783134,-0.025916027,0.018394865,-0.008574345,-0.028981838,-0.019431507,-0.054567024,0.013509419,-0.044862296,0.016310556,-0.053155426,-0.015042325,0.04512697,-0.026974725,0.013112407,0.033944484,-0.0032119332,-0.012825677,-0.0011972378,-0.0053679263,-0.021184973,-0.04159798,0.002952773,-0.04298752,-0.0010483585,0.024350038,-0.00441951,-0.04009816,-0.031187458,-0.05094981,0.020313755,-0.02115189,-0.0016969484,0.021196002,0.05227318,0.0056408714,0.059507612,0.006859476,0.015626814,0.040848073,-0.015979713,0.03319457,0.034738507,-0.025607241,-0.03864245,-0.03678973,0.0084364945,0.06308071,-0.025011724,0.012538946,-0.011866232,-0.029819975,-0.040803958,-0.037274968,0.009842576,-0.0076645273,-0.021648154,0.0010297486,0.026643882,-0.0130021265,0.034495886,-0.052626077,0.008761823,-0.01159053,0.031496245,-0.041509755,0.027239399,0.01727,-0.016299527,0.02468088,0.015494476,-0.009798464,-0.019729266,0.022067223,0.047244366,-0.011667727,-0.040340777,-0.04045106,-0.032113817,0.005894518,0.034694392,-0.028187815,0.04398005,0.039546754,0.001655593,-0.009837062,-0.0077582663,-0.041686207,-0.020027025,0.045391645,-0.007879576,0.014700453,0.006159192,0.035311967,0.0067657377,0.03714263,0.0372088,0.009903231,-0.007846491,-0.016431864,-0.0044718934,0.03970115,0.06634503,-0.022298813,0.05730199,-0.016498033,0.0043257712,0.011744923,0.011711839,-0.04543576,0.020655626,0.017192803,-0.008094623,-0.029930254,-0.008585374,0.035091404,0.0059882565,0.012770536,-0.044421174,-0.0060985377,0.032246154,0.0064293803,0.043031633,0.0057346104,0.026357152,0.018858045,-0.02271788,0.05430235,0.039414417,0.015759151,0.052934866,0.019310197,0.030040536,-0.013685868,0.04230378,-0.017876545,-0.018097106,0.015097464,-0.018758792,0.027614355,-0.021945912,0.02085413,-0.031650636,0.060081072,0.066477366,0.01808608,0.06753606,-0.04993522,-0.025122005,0.01541728,-0.005081196,-0.030437548,-0.02079899,-0.023114892,-0.04512697,-0.003432495,0.034738507,0.0072068614,0.0037081975,-0.042965464,0.018119164,-0.0021394507,0.00002101154,0.06330127,0.05562572,0.046494458,-0.03390037,-0.018648513,-0.023953026,0.013575587,-0.07843182,-0.021714322,-0.02318106,0.010438094,0.043803602,0.059992846,0.0039011892,0.0035675894,0.022739936,0.017214859,0.029445019,0.009500706,0.04005405,0.03240055,-0.016487004,0.025232285,-0.011744923,-0.04045106,0.017567758,-0.0038515627,0.02468088,-0.040406946,0.009202947,0.018902158,0.013994655,-0.012902874,0.02428387,-0.03866451,-0.016409809,-0.05893415,-0.00958893,0.015031296,-0.013796149,0.018527202,0.022519374,-0.036061876,0.021692267,-0.06484521,0.015373167,0.0009380775,0.01506438,-0.0186044,-0.0062198467,0.020115249,-0.017689068,-0.008381354,0.031893257,-0.048170727,0.0004107966,-0.0013605915,-0.0056270864,-0.035554584,-0.008712197,-0.018119164,0.0073281704,0.013134464,0.037914596,0.046318006,0.0018389352,0.013939515,-0.039436474,-0.047773715,0.00091671053,-0.042149387,-0.0005510602,0.035003178,0.044840243,-0.02346779,-0.0053954963,-0.053287763,-0.029114176,0.059992846,0.048082504,0.021482732,-0.026798276,0.030349324,0.04393594,-0.023269285,-0.0017245186,-0.036547113,-0.03899535,-0.0011793171,0.018935243,0.008739767,-0.008998927,0.037076462,0.033591583,0.035620753,0.02364424,0.053464215,-0.0268865,0.023401622,-0.027790803,0.043671265,0.025166117,-0.029908199,-0.0053844685,-0.018527202,-0.038796846,0.057434328,-0.006131622,-0.007609387,0.005356898,-0.012594087,-0.009357341,-0.0840341,0.04241406,0.034584112,0.015461392,-0.014281386,0.010035568,0.016740652,-0.015659899,0.0035841316,0.015031296,0.022376008,-0.024063308,-0.031584468,0.008188362,0.034694392,0.009919773,0.021945912,-0.07005047,0.051832054,0.0028783332,0.0155716725,0.03802488,-0.009539304,0.03581926,-0.0368559,-0.013454278,0.039833486,0.034385607,-0.01878085,-0.015891487,0.014413723,0.04512697,0.013774093,0.0005445123,-0.020015996,0.023600128,-0.028055478,-0.020170389,-0.02717323,-0.010890245,-0.011188004,0.032929897,0.06391885,0.012715396,-0.020776935,-0.006622372,-0.024041252,-0.020313755,-0.0012117121,0.011270715,0.051214483,0.023533959,-0.0034876356,-0.028783333,0.01755673,0.031606525,-0.011568474,-0.0004807561,-0.0078023784,0.022045165,-0.054214124,0.020214502,0.014810734,-0.008287615,0.053552438,-0.011066696,0.045259308,-0.040031992,-0.0058448915,-0.014512976,0.035488416,-0.05633152,-0.019894687,0.040826015,-0.015031296,0.016244387,0.013178576,-0.009666127,0.00042492637,0.06466876,-0.02097544,0.0049157743,-0.020137304,-0.01854926,0.02196797,-0.0053183,-0.04896475,-0.0019188889,-0.0025102706,-0.022894328,-0.016012797,0.011888289,0.015406251,-0.0136196995,0.020920299,-0.00278873,-0.006594802,0.011744923,0.00027087764,0.025122005,0.011436136,-0.009136778,0.045920994,0.039657038,-0.026092477,-0.015152605,0.0014501947,-0.015152605,0.022673767,-0.026842387,0.017247943,0.026114533,-0.03478262,0.011110808,-0.014932043,0.0019561087,-0.012704368,0.016001768,0.03094484,0.024526488,0.0041107233,-0.03731908,0.013542503,-0.051655605,-0.011513333,-0.014479891,-0.0034407661,-0.015097464,0.001157261,-0.010796507,0.0131454915,-0.0047475956,0.020313755,-0.004744839,-0.053067204,-0.023247229,0.012891845,0.012814648,-0.020060109,0.001313722,0.0011669105,0.02984203,-0.009296685,0.0006727139,0.023975084,0.0072454596,-0.023269285,0.017303085,-0.023070779,-0.005806293,-0.012119878,-0.07172674,-0.0072399457,0.008943787,-0.03998788,0.008419952,-0.030746333,0.01164567,-0.003076839,0.022607598,0.0014308955,0.0084364945,0.04433295,-0.010156877,-0.013222688,-0.012274272,0.007046954,0.016950184,-0.017402338,-0.003203662,0.005993771,0.008116679,-0.02891567,-0.0077582663,-0.005340356,-0.01639878,0.04400211,0.004551847,-0.003970115,0.014612229,0.0062805014,0.002102231,-0.025519017,-0.035378136,-0.037980765,-0.015560645,0.003523477,-0.028496603,0.034275327,0.004987457,0.033503357,-0.0028673052,0.025099948,-0.017082522,0.017071495,0.007173777,-0.022221616,-0.0030244556,-0.022519374,-0.026379207,0.008353784,-0.008144249,0.012792593,-0.013542503,-0.008816963,-0.017777292,0.025099948,0.025629297,0.03176092,0.0015191203,0.05778723,-0.0026646638,-0.019740293,-0.005624329,0.029797917,-0.02909212,0.017975798,0.008596402,-0.024019195,-0.03054783,-0.013829233,-0.044663794,-0.016354667,-0.028474547,0.019508703,-0.02086516,-0.015318027,0.04728848,-0.031849142,0.025651354,-0.047641378,-0.028077535,-0.015351111,0.034385607,0.0143806385,0.018405894,-0.013465307,0.022982555,0.033348966,0.035378136,0.011044639,0.02364424,0.017953742,0.013134464,0.020071136,-0.0055002635,-0.010272672,-0.0010159634,-0.030216986,0.02179152,0.0031237085,-0.015152605,0.0019450806,-0.015362139,0.06956524,-0.029158289,0.018383838,-0.021758435,0.021008525,-0.01552756,-0.0010518047,-0.0023503632,-0.016244387,-0.049097087,-0.0107909925,0.03414299,0.005326571,0.010002484,0.04746493,-0.04600922,0.00057104864,0.009379396,-0.006076481,-0.004309229,-0.014104936,-0.013057266,-0.0038598338,0.032356437,0.005894518,-0.01014585,-0.057699002,-0.0050839526,-0.036833845,0.0048440914,-0.013542503,0.028695108,0.0041796486,-0.029599411,0.040605452,0.0114802485,-0.0054837214,0.040892184,-0.011347911,-0.0045876885,-0.031474188,0.01385129,-0.0029858572,0.025563128,-0.009688183,-0.022585543,0.0040252553,0.0071903192,0.019056551,0.021438621,0.021196002,0.02439415,0.0023779334,0.023975084,-0.011292771,0.02230984,-0.00053520733,0.0038239926,0.00056139904,-0.05156738,-0.016288498,-0.01269334,0.0036640852,0.0033167002,-0.009004441,0.047376703,-0.02624687,0.0050867097,0.0037936654,0.00950622,-0.0068980744,-0.054964036,-0.0097708935,-0.0056105442,-0.051832054,0.049405873,0.0024992425,0.041928824,0.014623256,0.001383337,-0.019155804,-0.02329134,-0.010939872,-0.0041741347,0.009076124,0.0056684418,-0.0047089974,0.01680682,-0.018637484,-0.018968327,0.034032706,-0.004094181,0.051214483,-0.012219131,0.011143892,-0.0108626755,0.025651354,0.0076700416,-0.012186047,-0.024350038,-0.030613998,0.012891845,-0.008293129,-0.032356437,0.010906788,-0.018681597,-0.04109069,0.0019588657,0.0026880987,0.0053293277,-0.035466358,-0.014943072,0.012594087,-0.056463856,-0.024195645,0.01663037,-0.026732108,-0.015891487,0.018207388,0.026379207,0.043252196,0.028033422,-0.010879218,0.013421194,-0.06281604,0.008530233,-0.0089493,0.05615507,0.008480607,-0.037738148,0.032775503,0.0131454915,0.009699211,-0.0035069347,0.02329134,-0.029687637,-0.0146012,-0.0015094707,-0.005254888,0.026996782,-0.055316932,0.032576997,0.0071462067,-0.00011493345,0.0040335264,-0.034319438,0.0036971695,-0.05575806,0.050729245,0.03054783,0.029070063,0.03581926,-0.033547472,-0.00056002056,0.025452849,0.0026109018,-0.022563485,0.0120537095,-0.016266443,0.025474904,0.022761991,-0.033988595,-0.002002978,0.0014529518,0.009473136,0.01755673,0.026511544,-0.008442008,-0.013013154,-0.007840977,0.038929183,-0.01089576,-0.01069174,0.05156738,0.031209514,0.0009553089,-0.0037412818,0.01831767,-0.018207388,-0.025364622,-0.0072068614,0.006263959,0.016509062,-0.01210885,0.008993413,-0.04433295,0.009566874,0.0052218037,-0.0035758605,-0.016365696,-0.0074384515,-0.02115189,-0.015406251,-0.009566874,0.019100664,0.045876883,0.0035786175,-0.009225003,-0.022331897,-0.045215197,0.016354667,0.020302726,0.00020195202,0.03632655,0.01709355,0.018968327,-0.015516533,0.036767676,0.009026498,-0.0029003895,-0.014656341,0.013884374,0.004890961,-0.035201684,-0.020379923,-0.008601916,-0.02450443,0.0067657377,-0.031628583,0.027239399,0.011176976,-0.015130549,-0.0025378407,-0.005662928,0.02474705,-0.011524362,-0.00057001476,-0.02318106,0.0012358361,0.033657752,0.034275327,0.009511733,0.014987184,0.013222688,0.020611513,0.01953076,0.0245706,0.033084292,-0.0021780492,-0.005001242,0.007388825,0.012152962,0.03436355,0.0016032096,-0.0073281704,0.020192446,0.019685153,0.0006713354,0.008833505,0.005006756,0.013895402,-0.0368559,0.0022511103,-0.039546754,0.036128044,-0.010421552,0.045920994,0.008094623,0.037164688,0.027680524,0.009169863,-0.024526488,0.020666653,0.021515816,-0.006826392,-0.008701169,0.0044002105,-0.02104161,0.047156144,-0.02567341,0.0242177,-0.01141408,-0.035554584,-0.013310913,0.023533959,-0.0117669795,-0.019795435,-0.039502643,-0.0011868989,0.00064617756,-0.02375452,-0.013123435,-0.043274254,0.0067767655,-0.016001768,0.0005324503,0.04051723,0.012064738,0.025474904,0.013862317,-0.022673767,0.024791162,0.055008147,-0.022806104,-0.015869431,-0.007896117,0.0012530675,0.05077336,0.016619341,0.009748838,-0.065859795,-0.008883132,-0.010482206,0.017247943,0.0094841635,0.0015632327,-0.0012916658,0.0006416974,-0.04351687,0.0066389143,-0.01298007,0.008133221,0.016674483,0.04433295,-0.004094181,-0.015306999,0.005616058,-0.05822835,-0.001703841,0.03290784,0.026202759,-0.022739936,0.03813516,0.028518658,0.06171323,0.0117669795,-0.01210885,0.036436833,0.0043891827,-0.03087867,-0.04027461,0.018152248,-0.007747238,-0.003432495,0.019652069,-0.0019492161,0.009197433,0.0025116492,-0.011369968,-0.048744187,0.009456594,-0.055934507,0.0041272654,-0.013068295,-0.020931328,-0.013465307,-0.007179291,0.03703235,-0.021857688,0.020203473,-0.021427592,0.012549974,0.019431507,-0.011899317,0.030922784,-0.0441565,-0.011899317,-0.00097185106,-0.0338342,0.026313039,0.040715735,0.011303799,0.0016707567,-0.004182406,0.030261097,0.0048496057,-0.033525415,0.028673053,0.012141935,-0.003981143,-0.0027060192,0.025276398,-0.014887931,-0.023070779,0.013465307,-0.016089993,-0.014126992,-0.00073681475,-0.028650995,0.007510134,0.021229086,0.049847,0.011176976,0.022012081,-0.009076124,0.009952857,0.033018123,0.0078023784,-0.01739131,-0.04263462,0.02219956,0.0065451753,0.00072716514,-0.017402338,-0.015858402,-0.023864802,0.04305369,-0.014336526,-0.009037525,0.025916027,-0.008827992,0.030569885,-0.0060489113,-0.0056270864,0.04195088,0.004444323,-0.015814291,0.019288141,-0.012208103,-0.02838632,-0.007074524,0.038046934,0.017766263,-0.033348966,-0.0063246135,-0.039833486,0.016189246,0.007410881,0.00660583,0.0106751975,-0.0021449649,-0.01269334,0.017501589,0.012781564,0.037848428,0.024107419,0.002568168,0.024724994,0.02318106,-0.017314112,-0.01611205,-0.030988952,-0.0143806385,0.014744566,0.0055967593,-0.006467979,0.017424393,-0.017258972,0.0029307168,0.009401453,0.010548375,0.0093407985,-0.02120703,0.016244387,-0.042347893,-0.0025392193,-0.0033608126,-0.001997464,-0.003173335,-0.03279756,0.02318106,0.0031898771,-0.009826034,0.00007017488,0.0026715565,-0.008282101,0.05006756,-0.018207388,0.021184973,0.02219956,-0.0061261076,-0.01790963,-0.0017465749,0.07163852,0.013586615,0.0036530572,0.00083193206,0.048700076,-0.00799537,0.022353953,-0.022188531,0.0035731033,-0.002969315,-0.020765906,-0.0014763864,-0.014788678,0.010752395,-0.010416037,-0.026842387,-0.019960856,0.034584112,0.0114802485,0.005461665,0.009831549,0.0058338633,0.0005103941,-0.005464422,-0.0014929286,-0.025298454,0.013024182,-0.04433295,0.004138293,0.013255772,-0.0015811534,0.04561221,-0.020368895,-0.012075766,-0.008695655,0.015692983,0.028650995,-0.0019602443,0.022045165,-0.02862894,0.03928208,0.010879218,-0.0016294013,0.001302694,0.0038984322,-0.012505862,-0.04109069,-0.044178557,-0.002966558,0.011121836,-0.030966897,0.020015996,0.037539642,-0.013939515,-0.0005221115,-0.00058104284,0.006015827,0.025276398,0.00245513,0.00025778176,0.002322793,0.069477014,-0.031606525,0.012825677,-0.01112735,-0.02745996,-0.0007554246,0.005494749,0.012616143,0.027261456,-0.018902158,0.009004441,0.020545345,-0.011292771,0.04104658,0.039480586,0.03129774,0.0035593184,0.0066389143,-0.0029417449,0.05231729,0.0009049932,0.043141916,0.023886858,-0.03343719,0.026732108,0.014766621,-0.011667727,0.016817847,0.034981124,0.009004441,0.018251501,-0.021747407,0.001421246,0.021747407,0.01807505,-0.0020815532,0.008464064,0.01901244,-0.005362412,-0.020611513,-0.006291529,0.019486647,0.021240115,0.0029334738,0.026070422,0.022420121,0.060522195,0.026754163,0.013917458,0.027945198,-0.00087949075,-0.0010028676,0.016872989,-0.03237849,-0.041311253,0.026158646,0.008607429,-0.008899674,-0.031628583,0.029687637,0.040826015,0.0014184889,-0.0036144587,-0.011744923,-0.023379566,-0.021240115,-0.019685153,0.009655098,-0.003625487,-0.033569526,0.012373525,-0.010184447,-0.01246175,-0.011325856,0.0045959596,0.02282816,-0.0065727457,-0.016255414,-0.014138021,-0.050685134,0.038840957,0.014535031,0.016012797,0.0077748084,0.0036006738,-0.003931517,0.023820689,0.006964243,0.010046597,-0.01506438,-0.0063246135,-0.022409093,-0.040296666,-0.0065617175,-0.0124286655,0.033040177,0.006131622,-0.0056381146,-0.03240055,-0.016784763,-0.018405894,-0.017589815,0.011546417,0.021637127,0.02966558,0.024658825,-0.014590172,-0.009202947,-0.0029196886,0.03628244,0.006721625,-0.02028067,0.0029858572,0.015461392,-0.02318106,-0.0057511525,0.0026012524,-0.017225888,-0.009914259,-0.03934825,0.025849858,-0.021339368,0.0059551722,-0.018813934,-0.0022704094,0.0048303064,-0.011226603,0.012858761,0.02880539,-0.010416037,-0.0062970435,-0.015152605,-0.0020732821,0.006980785,-0.017644955,0.050332233,-0.019861603,-0.006368726,-0.023092834,0.020181417,-0.03923797,-0.05302309,-0.04098041,-0.0072178897,0.0054120384,-0.019905714,0.042325836,0.009109208,-0.02155993,-0.006958729,0.016520089,0.027217343,0.057390217,0.015439335,0.015373167,0.008480607,0.014821762,0.0025902244,0.02706295,0.010300242,-0.009633043,0.013343997,-0.05337599,-0.00527143,0.016895045,-0.01141408,-0.0081056515,0.0039590867,0.047156144,0.015957655,-0.021372452,0.023798633,-0.0009525519,0.0074770497,0.0017286541,-0.012219131,0.017920658,-0.018714681,-0.0062860153,0.0047117546,-0.019751322,-0.017545702,0.0059276023,0.011028097,0.00018868384,0.012009597,-0.006721625,-0.0057566664,-0.010239588,-0.019541787,-0.0055112913,-0.0322241,0.014987184,-0.017512618,0.00094979483,0.037297025,-0.045215197,-0.009638556,0.03436355,0.030393435,-0.021835633,0.03910563,-0.03125363,0.048214838,-0.026268927,0.022585543,-0.0094124805,0.019718237,-0.035311967,-0.019420478,0.019376365,0.0020470906,0.018041966,-0.0042899298,-0.00068787753,0.00352072,-0.021284226,-0.0041879197,-0.011733895,-0.043538928,-0.022464233,0.01912272,-0.0002641574,0.015306999,0.032025594,-0.053773,-0.013079323,0.026048364,-0.0074660215,0.03112129,-0.018185332,-0.033040177,-0.011965485,0.0242177,-0.0000192884,-0.012792593,-0.06365418,-0.020413008,0.009313228,-0.03528991,0.000850542,0.011601558,0.007852005,-0.004866148,-0.027746692,-0.0069973273,-0.012252215,-0.039789375,0.01680682,0.010950901,0.016740652,-0.023578072,-0.044752017,0.028584827,-0.00637424,-0.023070779,0.010526318,-0.028496603,-0.0067877937,0.03244466,-0.0053155427,0.010140335,-0.010575945,0.06859476,-0.00032239952,0.01298007,-0.0039590867,-0.0018926972,0.02891567,-0.005480964,-0.055890396,-0.017942714,-0.025607241,-0.0065341475,0.021868717,-0.018692624,0.014369611,0.017170748,0.0017451963,-0.040892184,0.012549974,-0.03912769,0.014512976,0.009219489,0.015957655,-0.009963886,-0.0123845525,0.012803621,-0.028562771,0.0022414606,0.017314112,0.007399853,-0.019751322,0.0009870146,-0.023070779,0.034848787,0.007289572,0.0060930233,-0.020832075,-0.001284084,-0.0053238138,0.008684627,0.019188888,0.0048082503,0.021240115,0.054434687,0.022232644,0.03467234,0.0035786175,-0.0012992476,-0.01298007,-0.01164567,-0.017115606,0.0055995164,-0.006357698,-0.026930613,-0.0051446073,-0.0031512787,-0.023269285,0.0013874725,0.014887931,-0.0035620753,0.0076700416,-0.042392004,0.022111334,-0.01883599,-0.026930613,-0.007874061]},{"id":"class-GuildSticker","type":"class","source":"main","text":"Class: GuildSticker\nDescription: Represents a custom sticker in a guild.\nProperties: animated: boolean, client: Client, description: string, guildId: string, id: string, name: string, tags: string[], url: string\nMethods: delete() -> Promise — Delete this sticker. Requires Manage Emojis and Stickers permission.; edit(options: { name?: string; description?: string; }) -> Promise — Edit this sticker's name and/or description.\nRequires Manage Emojis and Stickers permission.","meta":{"url":"/docs/classes/GuildSticker"},"embedding":[0.012129856,0.0007949037,-0.04339511,-0.004682863,-0.040417466,0.039563414,-0.026498714,0.007513355,0.0038403517,0.00082231424,0.05392073,-0.04150234,0.016227001,-0.03520082,0.0030382345,-0.0047232574,-0.048473258,-0.0074441074,0.023705732,0.026891118,0.023578778,0.010958419,0.029430194,0.044780057,0.002915609,0.04535712,-0.0026660291,0.026037065,0.0010365488,0.010450603,-0.0041548507,-0.021524435,0.07100178,-0.019054607,-0.049027238,0.045864936,0.0025809126,0.015799975,-0.016192377,-0.034993075,-0.030538153,0.004330855,0.014865133,0.015696103,-0.000521881,0.055721164,-0.033954363,0.04607268,0.0059783687,0.006388083,-0.029868761,-0.0064284774,-0.032592498,0.05299743,0.0021106065,-0.015823057,-0.04801161,0.023821145,-0.026960365,0.02488294,-0.002482812,-0.025967818,-0.0025361902,-0.019977907,0.02903779,0.026567962,-0.08226605,0.059691355,0.001966341,0.041894745,0.041156106,-0.02037031,-0.03926334,0.016873311,-0.03824771,-0.030930556,-0.012556883,0.037832223,0.045957267,0.0073517775,-0.046765152,0.028806966,-0.026891118,-0.015776891,0.028299151,-0.032384753,-0.04655741,-0.061076306,0.0062553585,-0.021512894,-0.020035613,-0.03365429,-0.06550815,0.0036470357,0.049904376,-0.0019923088,-0.003603756,0.0049742796,-0.027606675,0.02940711,0.046649743,-0.03033041,-0.07072479,-0.010646805,-0.008101959,0.021812966,-0.06389237,0.08055794,-0.0014563617,-0.007778804,-0.06296907,0.0362857,-0.028229903,0.016896393,0.0076980153,-0.039863486,-0.003078629,-0.018835323,0.02340566,-0.0455187,-0.07095562,-0.040048145,0.06878586,-0.06550815,0.0063996245,0.027260438,-0.018639123,-0.029337863,-0.027975995,-0.03291565,-0.041109942,-0.024075052,0.021743719,-0.015534526,-0.04120227,-0.017450374,-0.020335685,-0.028460728,-0.022620855,-0.0025823552,0.020035613,-0.06010684,0.0065323487,0.010029349,-0.018731453,0.012279892,-0.019654753,0.017346501,-0.06786256,0.02323254,-0.027768252,0.05733694,-0.0040048147,-0.019943284,-0.026521798,-0.011114226,0.013976457,-0.024813693,-0.047411464,-0.01870837,-0.011085372,-0.023982722,0.045380205,-0.030907473,-0.022147663,-0.029568689,0.05484403,-0.013757173,-0.026106313,0.027121942,0.074971974,-0.025690828,-0.03815538,-0.010710282,-0.030907473,-0.009302249,0.0020485723,-0.015465278,-0.051473986,-0.007478731,0.020139486,-0.00087424985,-0.033261888,-0.05041219,-0.0206473,0.064077035,0.020970454,0.002070212,0.017369585,0.018304426,-0.022620855,0.012453011,0.017854318,-0.0132031925,0.02525226,-0.015188288,0.02940711,-0.0054157325,-0.002676128,-0.055536505,0.01502671,0.00059401384,0.0059956806,0.0017672542,-0.003880746,-0.03252325,-0.019377762,-0.027652841,0.024075052,0.0006041124,0.032684825,-0.018985359,-0.036747348,0.0022447736,-0.045472533,0.043810595,0.00396442,-0.0026443894,-0.0073864013,0.034993075,-0.024859857,0.031184463,0.0025376328,-0.035431646,-0.013468641,-0.014888215,0.0016806949,-0.0022375602,0.0028146228,0.009042571,-0.070216976,0.0005244056,-0.02073963,-0.06790873,-0.02350953,-0.02571391,0.014080328,0.030191915,0.022413112,-0.01750808,-0.020127945,-0.029153204,0.039332587,-0.014703555,0.032754075,0.016203918,0.005482095,0.0188007,0.019781707,-0.006693926,0.05392073,0.037393656,-0.015696103,-0.026152477,-0.018939195,0.013861044,-0.012683836,0.03757832,0.05142782,0.0034941141,0.010831465,-0.0234172,-0.018731453,-0.01852371,0.014495812,0.03785531,0.05327442,0.0012781937,-0.0050752657,0.002070212,-0.011720141,-0.027168108,0.048473258,-0.008909847,0.004642469,0.020024072,-0.018812241,0.07543363,0.012926202,0.022101497,-0.012418387,-0.019770166,0.009723505,0.030999804,-0.044041418,0.07861901,0.04856559,-0.023798062,-0.0072594476,0.04544945,0.023890393,0.007484502,0.03199235,0.011010354,0.0031421059,0.0034537197,0.000025990359,0.0028752144,0.049165733,0.02589857,0.0041433093,-0.049165733,-0.008344325,0.0057042637,0.00025300588,0.0048588673,0.015326783,-0.003058432,-0.0046338127,-0.03143837,0.024190465,-0.021882214,-0.010883401,0.012118314,-0.041917827,0.0069478336,0.0064169364,0.033146475,0.012372223,0.005972598,0.03954033,0.0016648256,0.015199829,-0.013064697,-0.034254435,-0.06758557,0.004359708,-0.00023930064,0.011495087,0.04360285,0.017473456,-0.034785334,0.0117086,0.08471279,0.061537955,0.013330147,0.012545341,0.019643212,0.044387657,-0.00033956527,-0.0022707414,-0.060522325,-0.022967093,0.024282794,0.037370574,-0.019758623,0.0097292755,0.03492383,-0.013491724,-0.01151817,-0.013595595,0.045934185,-0.0362857,-0.03942492,-0.0076980153,-0.050827675,0.018604498,-0.016827146,0.0019764395,0.046626657,0.023463367,0.017311879,-0.048334762,0.03097672,0.0066073667,0.01548836,-0.0234172,0.006809339,0.03686276,-0.06453868,0.007669162,0.0023356609,-0.026775705,-0.0339082,0.0047521107,-0.01668865,-0.00073864014,0.022297699,-0.0049800505,-0.025483085,0.013399394,-0.0023919246,-0.00060771906,0.03501616,0.024675198,-0.015349865,-0.002091852,0.023728814,-0.03088439,0.012637671,0.031415287,-0.01760041,-0.03550089,-0.0004825686,-0.013768714,0.0041894745,-0.0031651885,0.034600675,0.01696564,0.025206095,0.011737454,0.02101662,-0.034139022,0.00080572366,0.008679022,0.022828598,-0.005107004,0.025875488,0.026891118,-0.02047418,-0.011754765,0.014230364,0.021859132,0.0117086,0.015465278,-0.026037065,-0.029014708,-0.07081712,0.033308055,0.0468344,0.003955764,-0.011310427,0.01456506,-0.038178463,0.026429467,-0.013537888,0.002406351,-0.00557731,-0.037624482,-0.063523054,-0.004656895,0.054059226,0.0449878,-0.015338324,0.039794236,-0.024467455,-0.021420565,-0.046049595,-0.0050666095,-0.011177703,-0.036747348,-0.030653566,0.007380631,0.029199367,0.023013256,-0.006693926,0.03335422,-0.066246785,0.015973093,-0.020139486,-0.032938734,0.0152575355,-0.028137572,0.028645389,-0.008979094,0.0037364804,-0.02543692,0.0038836314,0.004108686,-0.04563411,-0.0020687694,0.01696564,0.0022779547,0.07220207,-0.031761527,-0.012118314,-0.05862956,0.009152213,0.043649014,0.016642485,-0.03981732,0.009688881,0.04706523,0.031553783,0.00939458,-0.014253447,-0.02193992,-0.029614853,0.042356394,0.015465278,0.03965574,0.054243885,-0.011829783,-0.047965445,-0.031484537,0.04930423,0.013560971,-0.047965445,-0.0012507832,-0.036401108,-0.013076238,-0.009896624,0.014807426,-0.010087054,0.001146912,-0.032730993,-0.0071440353,-0.061630286,0.001415246,-0.014599684,0.048796415,-0.03310031,-0.035362396,0.041987076,0.024490537,0.043718264,0.020197192,-0.015442195,0.041525424,-0.0015479705,-0.03540856,0.0005756199,-0.012776166,-0.04009431,0.018027436,-0.016123129,-0.042541057,0.052489616,-0.029499441,0.002243331,-0.028368399,0.0070920996,0.04468773,-0.018985359,-0.0022519869,0.017208006,-0.024675198,-0.025644662,0.0080154,0.010802612,-0.027306603,-0.05826024,0.015234453,0.039032515,0.00783651,-0.010664117,0.0031392206,0.02737585,0.018916111,-0.03882477,-0.0018163045,0.020716548,0.04958122,0.039401837,-0.026660293,0.0083847195,-0.0547517,0.03882477,0.019146938,0.032500166,0.026152477,-0.040071227,0.027237356,-0.02792983,0.023151752,-0.0003206304,-0.022886302,0.006036075,0.03088439,0.0031738444,-0.0005460455,-0.019654753,0.0015566264,-0.009284938,-0.01456506,-0.0010329421,0.010802612,0.06269208,-0.017842775,0.00022451342,-0.001931717,0.029822595,0.024467455,-0.00008579298,0.012279892,0.040532876,0.004405873,0.021766802,-0.028368399,-0.022828598,0.0073229247,-0.060291503,0.009786982,-0.0010163515,-0.022932468,0.028160656,-0.024467455,-0.024305876,-0.025852405,0.05115083,-0.0052772374,-0.022516983,-0.0036297238,-0.007224824,0.0009723505,-0.0067170085,-0.02314021,0.010825695,-0.024305876,-0.004959853,-0.0069478336,-0.003095941,-0.0492119,0.014045704,0.011581646,-0.027999077,-0.011420069,-0.0019187331,0.0035085406,0.037462905,0.0061803404,0.016192377,-0.024998352,-0.028576141,-0.010733364,-0.03097672,-0.0010935336,0.006324606,0.008788664,-0.0188007,0.004385676,0.011356592,0.028806966,-0.011668206,-0.0065496606,0.019700918,0.01161627,-0.014345776,-0.00437702,0.012049067,-0.00082592084,-0.040763702,-0.017946647,-0.0008244782,0.008557838,-0.024559785,0.004146195,-0.016446285,0.033261888,-0.022343865,0.041894745,-0.006157258,0.041917827,-0.034900747,0.04210249,-0.0034854582,0.0017787955,-0.002436647,-0.024005804,0.012603047,-0.0055542276,-0.01667711,-0.012660754,-0.037762977,-0.0089387,0.010710282,-0.0020904094,0.027860582,-0.01990866,0.034900747,-0.000054460284,0.024282794,-0.019031525,0.050319858,-0.0018667976,0.030515071,0.0077845748,0.022274617,-0.0026934398,-0.025852405,0.019758623,0.01889303,0.013006991,0.015961552,-0.025136847,-0.010687199,-0.016804064,-0.055675,-0.0018624696,-0.025598498,0.0109872725,0.026937282,-0.018315967,-0.009036801,0.03125371,-0.015915386,0.008996406,0.04044055,0.009711964,0.006295753,0.00940035,0.021224363,-0.0058571855,-0.02479061,0.0030064962,0.043210447,0.01878916,0.02719119,0.0057475436,-0.003263289,0.012545341,-0.0025188783,-0.050550684,-0.024629032,0.015592231,0.016215459,0.0055340305,-0.0032315506,0.026406385,0.019943284,-0.035731718,-0.0013265227,-0.042079404,0.0086963335,-0.004146195,-0.026337137,-0.03316956,-0.031900022,0.026152477,-0.0029213794,0.0012471766,0.038940184,-0.030214999,-0.022944009,-0.010485227,0.025690828,-0.012464552,0.033215724,-0.00839049,-0.041525424,-0.010635264,0.033538878,-0.0003076465,-0.0107853,0.015095958,0.036701184,0.024929104,0.03907868,-0.013480183,0.012453011,-0.026937282,0.05078151,0.0012969482,-0.011119996,-0.028622305,-0.011218097,-0.018685287,-0.01760041,-0.0287608,-0.01593847,0.01907769,0.0068728155,-0.017104136,-0.029499441,-0.0037999572,-0.015153664,0.0057735112,-0.024028886,-0.028137572,0.02165139,0.019839412,0.026429467,0.032384753,0.045033965,-0.020139486,-0.027445098,-0.012799249,0.03780914,-0.011720141,-0.015349865,-0.022736266,-0.02746818,-0.025829323,0.0034335225,0.008788664,-0.035154656,0.01641166,-0.02479061,0.017588869,0.024490537,0.0014664604,0.016527073,0.018015895,-0.034577593,0.018096684,-0.0071382644,0.0045501385,-0.03993273,-0.007513355,-0.021986086,-0.035985623,0.011777848,-0.027491262,-0.0029661017,-0.04311812,0.003817269,0.0008619873,-0.0501352,-0.029914925,0.05345908,-0.017773528,-0.013399394,0.024352042,0.02885313,0.02525226,0.0031190235,-0.00654389,0.010179385,-0.017381126,0.010883401,0.019435469,0.024559785,-0.0038778607,-0.003929796,-0.0141495755,0.012660754,0.0046770927,0.03300798,-0.006803568,-0.05576733,0.0050752657,0.032661743,0.0059148916,0.002608323,-0.017034888,0.0241443,-0.012291433,0.0026487175,0.004313543,-0.01096996,-0.031299874,-0.008725187,-0.0039990437,0.018858407,0.00598991,0.022136122,-0.011108455,0.04865792,0.00036246746,-0.016665569,-0.016919475,-0.0023746127,-0.041156106,-0.003107482,0.055813495,-0.021524435,-0.006139946,0.013618678,-0.015499902,0.047503795,0.033954363,-0.014969004,-0.039332587,-0.039563414,0.03411594,-0.056875292,0.011143079,0.008857911,0.016388578,0.028276067,0.027329685,0.0031478766,-0.02211304,-0.0241443,0.0050723804,0.027306603,-0.018985359,0.034139022,0.0058860388,-0.027214272,-0.0010127448,-0.023174834,0.014438107,-0.0055628833,-0.020543428,-0.009631175,0.030030338,-0.007767263,0.014969004,0.018846864,0.039563414,-0.010190926,0.027422015,-0.040971447,-0.0011497972,0.013410935,-0.003364275,0.03335422,0.017565785,-0.002012506,0.0017759101,0.014495812,-0.013849502,0.0023587435,-0.025206095,0.029176285,0.0084597375,0.009440744,0.009383038,-0.0094061205,-0.014680473,-0.03963266,-0.01705797,0.02903779,0.031969268,0.0034046695,0.0053234026,0.002683341,-0.0028001964,-0.016157754,0.0038114986,-0.044826224,-0.0076056854,0.018489085,-0.003566247,0.01935468,-0.003511426,0.00977544,0.021812966,0.005430159,-0.013560971,0.019308515,0.01833905,0.0078018866,0.0178774,-0.008742498,0.010208238,-0.023913475,0.0073171537,0.041133024,-0.0025390754,0.010000495,-0.0051733665,0.010606411,0.039309505,-0.044756975,-0.03954033,-0.0028290495,-0.017150301,-0.015546067,-0.015003628,-0.000031760985,0.002339989,0.025159929,0.0073690894,0.021709096,-0.012129856,0.013422476,-0.0002558912,-0.0086097745,-0.00004258091,0.014288071,0.053043596,0.008967553,0.019158479,-0.035454728,-0.0003148598,0.00931379,0.019366222,-0.013318605,-0.056090485,-0.0339082,-0.0026112082,-0.018962277,-0.005900465,-0.021028161,-0.03097672,-0.007778804,0.011021896,0.022563148,0.010087054,-0.004140424,-0.0036672328,0.031830773,-0.015003628,0.018662205,0.051750977,-0.020531887,-0.00331811,-0.00930802,-0.012487635,0.075802945,0.045587946,0.029661018,-0.03723208,-0.0059206625,0.0019201759,-0.004607845,0.009758129,0.015776891,-0.006440019,0.020901207,-0.028991625,-0.005842759,0.020554971,0.018766075,-0.010883401,0.0658313,0.018062059,0.013630219,0.013249357,-0.015176747,0.031369124,-0.010814154,0.03785531,-0.012845414,-0.005909121,-0.0030613171,-0.03725516,0.027352767,0.024744445,0.029291699,-0.008684793,-0.026706457,-0.022159204,-0.019054607,0.010306338,-0.006786256,0.0025318621,-0.011875949,-0.011910573,-0.015546067,-0.008690563,-0.031022886,-0.0005391929,-0.04083295,0.010104367,0.0036932006,0.030353494,-0.0013835076,-0.017854318,0.027583594,-0.026198642,0.031969268,0.018073602,0.01686177,0.03501616,-0.004544368,-0.000008064225,-0.040140476,-0.020428017,-0.0051877927,0.0062091937,0.041963995,0.0658313,-0.0043625934,0.00433374,-0.027491262,0.022436194,-0.021316692,-0.010283256,-0.0024900252,0.014992086,-0.026683375,-0.0043193134,-0.025506167,-0.01788894,0.024998352,0.017923564,-0.014992086,-0.041871663,0.008811746,0.0043827905,0.022055333,0.01815439,-0.005640787,0.00086920056,0.023082504,0.019112313,0.015130581,0.009463827,-0.010283256,0.014138034,-0.010762217,0.0015912502,0.008500132,-0.0011454693,-0.016919475,-0.033423465,0.008234683,-0.0034883434,-0.01567302,-0.029222451,0.0051647103,0.008425114,0.011143079,-0.003955764,0.002713637,-0.041802414,-0.008113501,-0.014172657,0.024236629,-0.013076238,-0.0001271341,0.007161347,0.006111093,0.0103525035,0.015326783,-0.020024072,-0.013976457,0.024375124,0.04865792,0.015915386,-0.0061803404,0.005297435,0.009440744,0.029199367,0.019781707,0.011125767,0.017150301,-0.015950011,0.009660028,0.030445823,-0.01318011,-0.015453736,-0.02497527,-0.007270989,0.015950011,-0.053043596,0.0136763835,-0.008702104,-0.026960365,-0.02432896,0.012418387,0.008713645,0.037693728,0.0056927227,0.0287608,-0.0043799053,-0.017588869,-0.01889303,0.001001925,0.0073979427,-0.051381655,-0.010646805,0.007501814,-0.01484205,0.011829783,-0.017923564,-0.057937086,-0.018315967,-0.031184463,0.01271846,-0.026567962,-0.03741674,0.005594622,-0.0073402366,0.06920135,0.011443151,-0.019273892,-0.011581646,0.06730858,-0.012983909,0.018189013,0.027652841,-0.0013560972,0.016873311,0.025159929,0.003372931,-0.0061630285,-0.009031029,0.01732342,-0.0054503563,-0.023336412,0.02035877,0.028252985,-0.024513619,0.02571391,0.039678823,0.0030468905,0.004783849,0.010427522,-0.04422608,0.03291565,0.00940035,-0.02525226,-0.013687925,0.021085868,0.026198642,0.010612181,0.014668931,-0.055675,-0.0070920996,0.0075883735,-0.0022462162,0.021305151,-0.017288797,0.019123854,-0.0077557215,-0.011171932,0.035039242,0.014865133,-0.00350277,-0.011454693,-0.043995254,0.00005545211,-0.015880764,0.0021308037,0.006867045,0.018212097,0.0017860088,0.002318349,-0.026752623,-0.015442195,0.014530436,-0.04893491,-0.030930556,-0.013307064,0.06223043,-0.049627386,0.0060129925,-0.0037162832,0.05456704,0.010767988,-0.024490537,-0.02155906,0.055259515,0.008350096,0.024675198,-0.014911298,0.0007472961,-0.013537888,0.025921652,0.012302975,-0.016550155,-0.018408297,0.024859857,0.03178461,-0.018581416,0.016007718,0.035085406,-0.025113765,0.059876017,0.01732342,0.0049944767,-0.0070863287,0.021709096,0.0056292457,-0.018996902,0.02267856,0.008500132,0.02377498,-0.0025679285,-0.018685287,0.01244147,-0.0008980537,-0.030284246,0.0023659568,0.01742729,-0.00006293589,-0.0011115669,0.013226275,0.017865859,-0.012187562,0.03972499,-0.024375124,-0.03328497,0.026013982,0.016100047,0.016884852,0.009862,0.0019071919,-0.062091935,0.01105652,-0.022401571,-0.015823057,-0.039032515,0.0068728155,0.011789389,-0.0076287678,0.023359494,0.0053147464,0.0064111655,0.0053955354,-0.007778804,0.042956542,0.0032488625,-0.007594144,0.021812966,-0.009359956,-0.004682863,-0.021547519,0.029384028,-0.0012608818,0.02996109,-0.035824046,-0.0014520338,-0.028806966,-0.009873541,0.0296841,-0.013064697,0.013053156,0.024813693,0.014761262,-0.008719416,-0.042610303,-0.00010567459,0.0015941354,-0.009862,-0.034577593,-0.028368399,0.03520082,-0.013053156,0.0069824574,0.0031882708,0.00783074,-0.010410209,-0.030191915,-0.00047138802,-0.020970454,-0.034485262,0.018073602,0.013768714,-0.008552068,-0.0155806905,0.017034888,-0.0024914679,0.006463101,-0.017254172,0.00446935,-0.036701184,0.012603047,0.0023500875,0.020220274,0.008632856,-0.022089956,-0.015061334,-0.017658116,-0.021328233,-0.0074729607,-0.01761195,-0.0065669725,-0.029430194,-0.009937018,-0.024675198,-0.008575151,-0.022724725,0.006711238,-0.029707182,-0.026775705,-0.010687199,-0.005407077,-0.0116220405,0.034323685,0.019920202,0.05761393,0.01004666,-0.011085372,-0.010975731,0.020878125,-0.024352042,0.011691288,-0.023440283,-0.032384753,0.03187694,0.011812472,-0.008338555,-0.012487635,0.01918156,0.003234436,0.016515533,0.019250808,-0.0063361474,-0.034762252,0.0062553585,-0.014911298,0.0032402065,0.033515796,0.015315241,-0.010612181,-0.040417466,0.0010314994,-0.03501616,0.010900713,0.030030338,0.050458353,0.02663721,0.006405395,-0.03485458,-0.0014772803,-0.015442195,-0.0034768023,0.009233002,-0.04304887,-0.0006939178,-0.033331137,-0.012314516,-0.0010314994,0.022101497,0.0042644925,0.002953118,-0.011558564,-0.003834581,-0.03963266,0.020728089,0.005407077,-0.002272184,0.019273892,0.012118314,-0.0059322035,0.03935567,-0.029199367,-0.060337666,-0.0051012333,-0.009106048,0.030676648,-0.020289522,-0.02728352,-0.01853525,0.042056322,-0.01041598,-0.0063765417,-0.0036932006,-0.02018565,0.02166293,-0.022274617,0.009025259,-0.014288071,0.034693003,-0.013353229,0.0141495755,-0.015534526,-0.009348414,0.041594673,-0.005372453,0.02267856,0.009694652,0.018408297,0.0045472533,-0.021512894,-0.00802117,-0.015984634,0.0042731487,-0.035547055,-0.009798523,0.021535976,-0.00033127,0.010340962,-0.009561927,-0.030745896,-0.007247906,0.038963266,0.0022692988,0.007842281,-0.03910176,-0.01151817,-0.004985821,-0.0045674504,-0.053505246,-0.008327014,-0.0073575485,-0.0044001024,-0.010248632,0.021120492,-0.00959078,-0.030861309,0.024859857,0.008032711,0.017254172,-0.02617556,-0.015615314,0.035824046,-0.009267625,-0.021686012,0.0024640574,0.0013784583,0.024098134,0.010629493,0.015707644,0.00006866144,-0.022055333,0.014449648,-0.013872585,-0.004720372,-0.033677373,-0.011408527,0.03033041,0.0018956506,0.009054112,-0.00820006,-0.01723109,0.03787839,0.038478535,-0.016019259,0.0068785865,0.023094045,-0.01824672,-0.00028690833,0.036724266,0.024490537,-0.006803568,-0.004027897,0.031669196,0.016815605,-0.019493176,0.034139022,-0.025967818,0.02534459,0.011875949,0.011968278,-0.023624944,-0.008586692,-0.022655478,0.036170285,-0.010104367,0.022609312,-0.039771155,-0.01641166,-0.027814418,-0.0013597037,0.011223868,-0.0007509027,0.013376311,0.024028886,0.022263076,0.017034888,0.023440283,-0.023013256,-0.028576141,-0.036331862,-0.011737454,-0.0034248666,-0.010918025,-0.03344655,-0.0141495755,-0.009844688,0.009631175,0.015234453,-0.02285168,0.011818242,-0.0046107303,0.017796611,0.014438107,-0.0080154,-0.0023573008,-0.004498203]},{"id":"class-HTTPError","type":"class","source":"main","text":"Class: HTTPError\nProperties: body: string | null, isRetryable: boolean, statusCode: number","meta":{"url":"/docs/classes/HTTPError"},"embedding":[-0.028445205,0.012388804,-0.012111601,0.013081809,0.0042140055,0.033562783,-0.025758477,-0.0021229952,0.023050426,-0.015470012,-0.009574136,-0.006615536,0.03729435,0.015320749,-0.0019417477,-0.0001875779,-0.033776015,0.025225395,0.05808451,0.042113405,-0.0017818235,-0.020214433,0.00848665,-0.0020603582,-0.0031851593,0.041025918,0.021547137,-0.0029479382,-0.030151064,-0.007740337,0.028722407,-0.038765654,-0.017986154,0.028914316,0.011983662,0.03656936,0.013582905,-0.012580713,-0.019958554,-0.026781993,0.012079617,-0.056336004,-0.0072445716,-0.023284981,-0.05215665,0.022346757,0.0031611708,-0.033967923,0.021152657,0.05236988,-0.02354086,0.0063223415,0.017591674,0.027784184,0.0030438928,-0.00953149,-0.03787008,0.06947112,-0.022090878,-0.016482865,0.033413522,-0.005405442,-0.009750052,-0.025737153,-0.013657536,0.036846563,0.0009335582,0.002809337,0.0049256687,0.046783194,-0.009131678,0.045930263,0.055397782,-0.024585698,-0.0014779672,0.02867976,0.057060994,-0.008438673,0.054800734,-0.05386251,-0.043840587,0.024948193,-0.029554013,-0.034778208,0.012346157,-0.017517043,-0.07744601,-0.025566567,-0.0010348436,-0.013359011,0.012836591,0.00047810707,-0.0339466,0.03189957,-0.0020150463,-0.05663453,-0.009723399,-0.0032038172,0.013625552,0.0028306604,0.050791964,0.008838484,-0.048190527,0.04413911,-0.02603568,-0.015864491,0.00045944922,0.0027213788,0.0019204245,-0.049896386,-0.006135763,0.0309187,-0.062818274,-0.0009488843,-0.00050009665,-0.057956573,-0.018828424,-0.041942816,-0.002801341,-0.012506082,0.03288044,-0.034501005,0.019841276,0.0017445077,-0.036014955,-0.0060717934,0.025971709,0.004440565,-0.03044959,0.051005196,0.05279635,0.012047632,-0.006476935,-0.025182748,0.026078325,0.014041355,0.0076123974,-0.0022749235,-0.021131333,-0.010293795,0.049214043,-0.030598853,0.03511938,-0.01854056,0.053180166,-0.0025494602,0.0037582214,0.02729375,-0.010432396,0.022879839,-0.015565967,0.034351744,-0.01934018,0.009291602,-0.0032091478,0.0015406043,0.02631288,0.00011153055,-0.03769949,-0.009350242,-0.016344264,-0.0002202291,0.016344264,-0.04878758,-0.012068955,-0.0017844888,0.013849446,-0.04190017,-0.04004505,-0.012506082,0.049640507,0.009835346,-0.022325434,-0.001124801,0.007596405,0.0028653108,0.08290476,-0.036867887,0.05168754,-0.018242033,0.012378142,0.024521729,0.024415113,-0.012612698,0.007063324,-0.016781392,-0.008907785,0.070537284,0.031387813,-0.011866384,0.005714629,0.020150464,-0.017357118,-0.021184642,0.0041020587,-0.00388083,-0.028253296,0.024351142,-0.027933447,0.011216026,-0.028018741,-0.0093289185,0.03769949,-0.019372165,-0.024116587,0.016429558,-0.007596405,-0.06469472,-0.020832807,0.0010515024,0.041750908,0.030620176,-0.0048377104,0.035993632,-0.0190843,0.004800395,0.03946932,-0.012623359,-0.01255939,0.0044805463,-0.08115626,0.021461843,0.030236358,0.0024814922,0.012015647,0.039682552,0.01689867,0.028978286,-0.026888609,0.000023468061,0.000007980598,-0.010229825,-0.022837192,-0.0062050633,0.009718068,-0.015491336,0.03411719,0.0108215455,0.0035476545,-0.0049150074,0.017527705,-0.022581313,-0.022218818,0.062050633,0.027890801,0.030620176,-0.012975193,-0.033051025,0.025566567,0.0008009543,0.011919692,0.009355572,-0.0023508875,-0.047849357,-0.015821846,0.0020776833,0.028061386,-0.016600143,0.0013540259,-0.008225441,0.024969516,0.021621767,-0.01795417,0.0104110725,-0.041601647,-0.04290236,0.03755023,-0.0034570305,0.013838784,-0.031131934,-0.0049549886,-0.007921585,0.07919452,-0.031217227,0.013337688,0.01710124,-0.0022242807,-0.018999008,-0.043371476,0.02808271,0.042667806,-0.021035379,-0.02492687,0.0078096376,-0.000023030767,0.023284981,0.024692314,0.011727783,0.0072712256,0.012378142,0.0006583551,-0.01729315,0.010069901,-0.043925878,0.008907785,0.018529898,0.0036462743,-0.03268853,0.03334955,-0.019158933,0.031878248,-0.009003739,-0.009376896,-0.037656847,-0.012132925,0.07279755,0.024329819,0.031259872,-0.0046991096,-0.007830961,0.002039035,0.00986733,-0.08998408,0.01841262,-0.007676367,-0.009579467,0.029255489,-0.033839986,0.010283134,-0.040684745,0.009456858,-0.050066974,0.012218217,0.07505781,-0.048574347,-0.023754092,-0.014777007,0.01170646,-0.0038515106,0.016994623,-0.027634922,-0.038232572,0.042006787,0.01440385,0.012751299,0.016205665,-0.038701683,0.024756284,-0.017836891,-0.012111601,0.040812686,-0.032176774,-0.037784785,0.011877046,0.03906418,-0.038829625,-0.045844972,-0.028978286,-0.020299727,-0.030705469,-0.005741283,-0.012143587,-0.03985314,-0.015075532,-0.07429018,0.0002697057,0.003840849,-0.022133525,-0.0075537586,0.046527315,-0.051730186,0.04051416,-0.039106827,-0.015619275,0.029426074,0.0588095,0.0061197705,-0.0348635,0.03656936,0.00802287,-0.0004271312,0.058766857,-0.024329819,-0.030236358,0.007836292,0.0058212453,-0.051133133,0.023626152,-0.019819954,0.04066342,0.026248911,0.02142986,-0.062647685,0.021685738,0.024756284,0.003302437,-0.022773223,-0.012452774,-0.016365588,-0.02782683,0.033882633,0.035417907,-0.0035236657,-0.026270235,0.026526114,0.027976094,-0.025694506,-0.011429258,0.016600143,-0.056037482,0.041921493,0.011578521,-0.01170646,0.021984262,0.031323843,0.014979578,0.010992131,-0.019510766,0.032070156,-0.041580323,0.015875153,-0.0038168603,0.013103132,0.018519236,0.021792354,0.0050136275,0.047039073,-0.03270985,0.03433042,0.016685437,-0.032923087,-0.010171186,-0.041409735,0.008651906,0.00049176725,-0.005042947,-0.013668198,-0.04597291,-0.01689867,-0.030428266,0.047508184,-0.036292158,-0.0009722066,0.026739346,0.054033097,0.007228579,0.0148836225,-0.06077124,0.010283134,0.004440565,0.002137655,0.017858215,-0.019244226,0.017090578,0.024415113,0.008795837,0.027379043,-0.029319458,0.024095263,-0.02018245,-0.041665614,-0.0023189026,-0.030833408,0.02033171,-0.054630145,-0.018199388,0.014414512,-0.028978286,0.02058759,-0.05616542,-0.010746914,-0.004432569,0.013433643,-0.018401958,0.019553414,0.013988047,-0.0028519835,-0.004190017,0.033967923,-0.029554013,-0.014808992,0.047252305,0.02946872,0.0017644983,-0.004643136,0.0118344,-0.0066635134,-0.014094663,0.024372466,-0.0057839295,-0.0033957262,-0.019542752,0.031323843,-0.04379794,-0.0069620386,0.06200799,0.008977085,0.021941615,-0.015374058,0.018913716,-0.015960447,-0.005184213,-0.020640898,-0.008145479,-0.05335075,-0.0017898197,0.012111601,-0.04326486,0.019564075,-0.032326035,-0.0029346112,-0.06622999,-0.0336694,0.010197841,0.054758087,0.031089287,-0.0023855376,-0.039618585,-0.0071326243,-0.028295942,-0.0036382782,0.029809892,-0.0013686856,-0.015203471,-0.042198695,-0.013572244,-0.0045685046,0.009440865,-0.044608224,0.0052721715,-0.002196294,-0.01118404,0.006583551,0.03584437,-0.03893624,-0.0023735433,0.019510766,0.02887167,0.020193111,0.034543652,-0.00559202,-0.008459996,-0.002160311,0.028765054,-0.0039154803,0.031750306,-0.047508184,-0.013124456,-0.0070046852,-0.069087304,0.0054694116,0.0009675421,-0.009259618,0.028615791,-0.020065172,0.014627744,0.005144232,-0.010437727,0.0018484585,0.022282789,0.027570952,-0.00065868825,0.029617984,0.0063703186,0.031281196,-0.014307896,0.05262576,-0.017591674,-0.042710453,-0.008012208,0.00888113,-0.0046138167,0.033882633,0.016749406,0.00463514,0.009478181,-0.016951978,0.018380634,0.0257798,-0.016056402,-0.0039288076,0.04610085,-0.021387212,0.035801724,0.011407934,0.026120972,0.004960319,-0.07514311,0.03868036,0.0327525,0.009755383,-0.029084902,0.0055173887,0.036612008,-0.03313632,0.033413522,0.027613599,0.026014356,0.002985254,0.0357804,0.0207795,-0.007201925,0.039703876,-0.016024416,0.0011841063,-0.015384719,0.034351744,0.010245818,-0.013433643,0.036078926,0.02157912,-0.040684745,0.015224795,0.0070100157,-0.0015219464,0.019233564,0.0069353846,-0.009984608,-0.0071912636,-0.03168634,-0.0014606421,0.03682524,-0.031153256,-0.047380242,0.01032578,-0.0188071,0.011823738,-0.017783584,-0.004195348,-0.025993032,-0.015533982,-0.013039162,0.010938823,0.016856022,-0.06533442,-0.017943509,-0.02111001,-0.060515363,-0.01656816,-0.012442112,0.05096255,0.01598177,0.011962339,0.0017098575,-0.019713337,0.046740547,0.008310733,0.015043547,-0.01644022,0.0013180429,0.009515497,0.030961348,0.031814277,0.004445896,0.021611106,-0.04136709,-0.0099472925,-0.013657536,-0.02032105,0.0044272384,0.011653151,-0.03592966,-0.017751599,0.03262456,-0.0017844888,-0.01322041,-0.04524792,0.014808992,-0.04477881,-0.01966003,-0.017794246,0.00007588076,-0.015757876,0.0315584,-0.043968525,-0.003603628,-0.021035379,-0.0036516052,-0.0059865,0.0073085413,0.043371476,0.011791753,0.036995824,-0.0031691669,0.0019377497,-0.0005407441,0.0013673529,-0.024052616,-0.04253987,0.01243145,-0.035737753,-0.0020496966,-0.046783194,-0.010938823,0.019969216,-0.023882031,0.015533982,-0.005959846,-0.0024988174,0.026206264,-0.013881431,-0.00516289,-0.013945401,0.02795477,0.01854056,0.009925969,-0.030001802,0.021120671,0.006892738,0.022346757,0.037315674,0.019521428,0.015747214,0.011983662,-0.03170766,0.035673782,0.012836591,0.019638706,0.021397874,0.037912723,-0.00083160645,-0.024159234,0.004978977,0.021408536,-0.030876055,0.026781993,0.018274019,0.052327234,-0.0026520782,0.0009622113,0.04900081,0.00954215,-0.05676247,0.00089157803,0.016909331,0.048446406,-0.0022962466,0.03057753,-0.021024717,0.00051508954,0.033520136,0.043755293,-0.010906838,0.0017951505,-0.0032118133,-0.009776707,0.0061037783,0.05236988,0.01684536,0.00677546,-0.0085612815,-0.013359011,-0.010080563,-0.008017539,0.0056666518,-0.03439439,-0.013263057,0.0065142503,0.0020550275,-0.038914915,-0.005306822,0.0032651215,-0.006844761,0.014958254,0.041004594,-0.047508184,0.010101886,-0.00822011,-0.03170766,-0.0043552723,-0.04985374,0.004059412,-0.033008378,-0.013796138,0.043350153,-0.030705469,-0.009115686,0.0052508484,0.020811485,0.016536174,-0.032070156,-0.009909977,-0.012527404,-0.01558729,0.019126948,-0.0053041563,-0.037251703,-0.0061304322,-0.045333214,0.019510766,-0.01953209,-0.0116424905,0.00008466827,-0.0015339408,0.0030465582,-0.013988047,-0.026291557,-0.0052082017,-0.022133525,-0.023029102,-0.011088086,-0.00041713592,0.05420368,-0.059022736,-0.0116424905,-0.011759768,-0.03196354,-0.03592966,0.02407394,0.04367,0.04426705,0.013828122,-0.025438627,-0.035268642,0.0073085413,-0.001234749,-0.00039747855,0.01940415,0.06887407,-0.02236808,-0.025395982,0.031089287,-0.0028972956,0.034031894,-0.02703787,0.0038754994,-0.007404496,0.031345166,0.026462143,0.0014273245,0.033818662,0.014979578,0.056336004,-0.004091397,0.009248956,0.041686937,-0.014158633,0.022730576,-0.010085894,-0.0012174238,-0.011354626,0.03868036,-0.009019732,-0.0073831724,-0.02631288,-0.034287773,-0.0297246,0.024628345,-0.014766345,-0.0017111902,0.030897377,0.009968616,-0.020768838,-0.015000901,0.01065096,0.00266274,-0.022858515,-0.034948792,0.026654053,-0.0041260472,-0.009984608,-0.0336694,0.04925669,-0.024095263,0.01545935,-0.02426585,-0.06767997,-0.012761961,-0.01301784,-0.042070758,-0.015139502,0.03196354,-0.008961093,-0.04108989,-0.0045205276,0.029703276,0.016653452,-0.009398219,0.024223203,-0.016813377,0.039810494,-0.021227287,0.013774814,0.009179655,0.00834805,0.01710124,0.012783283,0.013902754,-0.043968525,0.04260384,-0.0064502805,-0.004701775,-0.019702675,0.009771376,0.019105624,0.021984262,-0.013167102,-0.011365288,0.033584107,-0.02157912,-0.0043979185,0.050749317,0.030620176,0.019308196,-0.02722978,-0.006802114,-0.033157643,-0.025417304,0.014531789,0.02347689,0.036995824,0.026995225,-0.042198695,0.014158633,0.013476289,0.010315118,0.032453973,-0.037742138,0.006386311,0.04546115,0.022922486,0.032859117,-0.025395982,0.056336004,-0.025332011,0.0053654606,0.018924378,0.00061237684,0.014702375,-0.007596405,-0.0070046852,-0.0248629,0.037379645,0.018711144,-0.024585698,0.0039154803,0.000853596,0.009334249,0.03993843,0.0051975404,0.009350242,0.017922185,-0.0043232874,0.011098747,0.011471904,-0.029831216,-0.016088387,0.008950431,0.0025068137,0.008236102,-0.025182748,0.026739346,0.007409827,-0.046015557,-0.0016911996,0.04452293,0.0057785986,-0.0012387472,-0.022218818,-0.0077243443,-0.026163617,-0.025417304,0.05569631,-0.019755984,0.004597824,-0.010459051,-0.0015206137,-0.0022189498,0.055824246,0.043094274,-0.03328558,0.04767877,-0.06537706,-0.03571643,0.0036516052,0.017357118,0.02899961,-0.00010278469,-0.021333903,0.005432096,-0.026120972,-0.03196354,0.0064182957,0.011557197,-0.0028519835,0.017079918,0.008875799,0.043435443,-0.024905547,0.011173379,-0.010427065,0.058510978,0.039298736,0.00032051498,0.008017539,0.010443058,0.013689522,-0.014830315,0.028125357,0.061538875,0.009232963,-0.01743175,-0.027272427,0.018828424,-0.0036356128,-0.008795837,-0.024457758,-0.0007762993,0.011322642,-0.033584107,-0.0072232485,0.017858215,-0.01637625,-0.013881431,-0.015576628,-0.013529597,0.013508274,-0.01565126,0.005306822,-0.022282789,0.0058372375,0.0069620386,0.010032586,-0.044864103,-0.06320209,0.01328438,0.012932546,0.007703021,0.02170706,0.016749406,0.051218428,0.014179956,-0.0057999217,0.034671593,0.010315118,-0.0044378997,-0.009153002,0.031153256,-0.025097456,-0.01854056,-0.002568118,0.03369072,0.0036489398,-0.030684145,-0.0026813976,0.018050125,-0.027379043,0.01743175,0.016919993,-0.01617368,0.005149563,0.015736552,-0.014254588,0.018231371,-0.009558143,0.0025521256,0.011578521,-0.0131351175,-0.006834099,0.0052188635,0.033370875,0.0047310945,-0.029703276,-0.030300327,0.009776707,0.011791753,0.036398776,0.01960672,0.054502208,-0.010421734,0.030769438,0.01723984,-0.00029602658,0.028786376,0.023690121,0.023007778,0.023690121,-0.012602036,0.010698937,0.034245126,0.027464336,-0.01867916,-0.022858515,-0.0008322728,-0.014819654,-0.009137009,0.005602682,-0.047465537,-0.04326486,-0.016632129,-0.035140704,0.04708172,-0.0020736854,-0.021493828,-0.0318356,0.04499204,0.01433988,0.00664219,-0.0055493736,-0.046143495,-0.0148836225,0.011578521,-0.01822071,0.024713637,-0.008539959,-0.0032437982,0.016546836,-0.0045418506,-0.0012167575,-0.017133225,-0.026099648,-0.03392528,0.01809277,-0.03151575,0.00565599,0.01255939,0.024223203,-0.05808451,0.003926142,-0.012740637,-0.036334805,0.0128259305,0.035012763,0.003958127,0.0039687883,-0.07492987,-0.0048430413,-0.015395381,-0.01992657,-0.010379088,-0.01131198,-0.020011863,0.0188071,0.006194402,-0.0059865,-0.030151064,0.047465537,0.013902754,-0.023882031,0.0102031715,0.062647685,-0.024884224,-0.0018537893,0.010059239,-0.018860407,-0.009702075,-0.022943808,0.030151064,0.018732468,0.0032304712,0.0048563685,-0.043115597,0.023711445,0.027762862,0.039810494,-0.017858215,-0.061410937,0.049896386,-0.005077597,0.017996816,0.021419197,-0.022645283,0.02189897,0.05335075,0.01585383,0.007703021,-0.015299426,0.049640507,-0.000536746,-0.016909331,0.001333369,-0.030534882,0.00848132,-0.028295942,0.024500405,-0.00069233903,-0.010016593,-0.015374058,0.0077776527,0.029383428,-0.019628044,-0.010581659,-0.02202691,-0.020544944,0.030982671,0.0190843,0.037976693,0.007740337,0.023839384,0.017932847,0.007505781,-0.033370875,-0.012250203,0.0049043456,-0.014702375,-0.007836292,0.0069567077,0.005336141,-0.008065516,0.0116424905,0.026334204,-0.008939769,-0.013902754,-0.008523966,-0.040492836,-0.008907785,0.021120671,0.021611106,-0.032901764,-0.010240487,0.008310733,0.009584798,0.026120972,-0.006812776,0.033733368,0.019564075,0.0008282747,-0.014041355,-0.014702375,-0.04347809,0.029362105,0.0053041563,0.00072365755,0.047209658,-0.01301784,-0.022602636,0.021685738,-0.005405442,-0.015491336,0.011461243,-0.010336442,-0.01762366,0.008966424,-0.017485058,-0.01808211,-0.042241342,0.041537676,0.010341773,0.050024327,-0.020342372,0.0037475599,-0.025374658,0.030428266,-0.0076283896,0.023199687,-0.017303811,-0.022794547,-0.005911869,0.013913415,0.02618494,-0.029426074,0.017325135,0.007084647,0.000026903934,-0.009131678,-0.036270835,-0.03563114,-0.020598251,-0.002554791,0.00644495,0.01874313,-0.012463435,0.00037748803,0.013508274,-0.01038975,-0.016450882,-0.015608613,-0.015256779,-0.011749106,-0.008534628,-0.0058052526,0.010171186,-0.014414512,0.004011435,-0.018039463,0.012591374,-0.010480373,-0.015171487,-0.013870769,0.032368682,-0.0066528516,-0.028914316,0.011599843,-0.002985254,0.030641498,-0.0028386565,0.007964231,-0.02571583,-0.004539185,-0.012239541,-0.010597651,0.025758477,0.0042593176,0.023157042,-0.026696699,-0.0038035333,-0.024287174,0.04190017,-0.016994623,0.008209448,0.026355527,-0.015331411,-0.018849745,-0.0025694508,-0.004741756,0.023967324,-0.0030225695,-0.034607623,0.036142897,0.012879238,0.00053174834,0.025395982,-0.00015609279,-0.00907837,-0.012196895,-0.021014055,0.0013520268,-0.008955762,-0.0055813584,-0.00940355,0.016280295,0.022687929,0.014872962,-0.016109709,0.050493438,0.013327027,-0.026824638,0.000284532,-0.021184642,-0.013433643,0.02584377,0.04806259,-0.0058585606,-0.017378442,0.027443012,-0.017357118,0.012932546,-0.043968525,0.005405442,-0.021035379,0.018103432,-0.018529898,-0.022730576,-0.017474396,-0.020225095,-0.0007629723,-0.021408536,-0.00743115,0.013476289,-0.010491035,0.013604228,-0.040812686,-0.0069353846,0.023562182,0.025054809,0.009392888,-0.00016550501,0.023114394,-0.004952323,-0.0075910743,-0.009344911,-0.0011827736,0.01243145,-0.05228459,-0.0064556114,0.013241733,-0.025182748,-0.047892,-0.0006870082,-0.016418897,0.0013673529,0.032070156,-0.009099694,0.014190618,-0.01671742,0.012292849,0.037571553,-0.03196354,0.02722978,-0.01118404,-0.008646575,0.03262456,-0.0010495033,-0.0058052526,-0.0063809804,-0.022090878,0.00081894576,0.009003739,0.015470012,0.01834865,-0.016546836,0.05045079,-0.026462143,-0.020214433,0.009019732,0.016941316,-0.016290957,-0.01131198,-0.04032225,-0.049384627,-0.004315291,0.009248956,-0.023135718,0.02426585,0.021067362,-0.010533681,0.01940415,0.03776346,-0.030279003,0.027315073,-0.004603155,-0.018060787,0.017207857,0.0012527405,-0.047124363,-0.007089978,0.016482865,0.013636214,0.0058319066,0.011013455,0.015374058,0.0044112457,-0.006546235,-0.0067328135,0.0083533805,0.03392528,-0.006786122,-0.02177103,0.010187179,-0.02473496,-0.025950385,-0.03953329,-0.033456165,0.022240141,-0.010901508,0.010251149,-0.025801122,-0.0336694,0.006535574,0.00624771,0.0035423236,-0.013124456,-0.0040727393,-0.008364041,0.0026027681,0.018508574,0.010283134,0.0058585606,-0.0074418113,-0.006023816,0.027549628,0.04300898,-0.022197494,-0.045162626,-0.026462143,0.017751599,-0.022666607,-0.024031295,-0.021355227,0.017538367,-0.011813076,-0.024670992,-0.017527705,-0.059406552,-0.022410728,-0.021461843,0.008678559,-0.0025201407,-0.022943808,0.015054209,0.029745923,-0.02821065,0.019180257,-0.023860708,-0.015971107,0.027379043,0.025374658,-0.004011435,-0.014670391,-0.011152056,0.026163617,0.036803916,0.03959726,-0.013849446,0.017133225,0.0131351175,0.023946,0.008491981,-0.026547436,0.0035236657,-0.0024721634,0.049555216,0.0037475599,-0.01492627,0.01427591,-0.01656816,0.00017991486,0.028615791,-0.019436136,0.010618974,-0.057316873,0.026888609,0.020843469,0.010592321,-0.019329518,0.010592321,0.0089451,0.011759768,0.026270235,0.028423881,0.005885215,0.0030998662,0.020939425,0.0086625675,0.03230471,0.020214433,-0.014084001,0.03044959,-0.0038035333,-0.0067168213,0.031665016,-0.017453074,-0.0092276335,0.013540259,0.007916254,0.02262396,0.024287174,-0.0012034305,-0.027336396,-0.04742289,-0.0069407155,-0.0072125867,0.017506381,0.025054809,-0.012282187,-0.030790761,-0.024116587,-0.021685738,-0.019414812,0.02899961,-0.003899488,-0.010213833,-0.010443058,0.007969562,-0.018977685,0.021749707]},{"id":"class-Invite","type":"class","source":"main","text":"Class: Invite\nDescription: Represents an invite to a guild or channel.\nProperties: channel: APIChannelPartial, client: Client, code: string, createdAt: string | null, expiresAt: string | null, guild: APIGuildPartial, inviter: User | null, maxAge: number | null, maxUses: number | null, memberCount: number | null, presenceCount: number | null, temporary: boolean | null, type: number, url: string, uses: number | null\nMethods: delete() -> Promise — Delete this invite.\nRequires Manage Guild or Create Instant Invite permission.; getGuild() -> Guild | null — Resolve the guild from cache if available.","meta":{"url":"/docs/classes/Invite"},"embedding":[-0.02987698,-0.00685572,-0.028661188,0.011375543,0.017189959,-0.013981616,-0.070335865,0.010474955,0.015231181,0.017448878,0.037261795,-0.045524683,0.0058481884,-0.010165378,0.05227909,-0.011752663,-0.04372351,0.029111482,0.011223569,0.023730474,-0.02035327,0.047551006,0.032871433,0.03669893,-0.030417332,-0.025914397,-0.0036839645,0.01765151,-0.0068163197,0.011583803,0.050883178,-0.016446974,0.008291031,0.011454344,-0.01337372,0.049397208,0.036181092,0.02924657,-0.04169719,0.003233671,-0.030710025,0.015073579,0.011673862,-0.0053725657,-0.02078105,0.053990204,-0.046965625,0.02022944,0.00999089,-0.0018968618,-0.03712671,-0.027963232,0.00014133239,0.057952788,-0.004016056,-0.047596034,-0.0118877515,0.025576677,-0.05205394,0.017842885,-0.023167606,-0.033321727,-0.0039288118,0.025441589,0.021265116,0.016323144,-0.05146856,0.07402827,0.029989554,0.044894274,0.0046014376,-0.010722617,-0.020871108,0.018687185,-0.005594898,0.018822273,-0.04845159,0.044849243,0.03627115,-0.013576352,-0.023437783,0.013486294,-0.07857624,-0.034177285,0.017662767,-0.0036558213,-0.015613931,-0.013249889,-0.007435473,0.0011700598,-0.00423276,0.011094109,-0.057502493,-0.0039879126,0.03852262,-0.029314114,0.024901237,0.009028387,-0.022908688,0.05160365,0.06493234,-0.008566836,-0.075334124,0.019463941,0.022964975,-0.01823689,-0.034605063,0.031813245,-0.007204698,-0.02251468,-0.06704872,0.035753313,-0.008837012,0.017527679,-0.015445071,0.0046295812,0.024360884,-0.042935494,0.017786598,-0.0050967606,-0.06132999,-0.016919782,0.06619316,-0.014206763,-0.025599191,-0.0366539,-0.005167119,-0.005476696,-0.04421883,0.021163799,0.015073579,0.028255925,0.011420571,0.035483137,-0.029426688,-0.008110913,-0.036000974,0.014994777,-0.039941043,-0.047460947,0.009844544,-0.0319033,0.047010653,0.03179073,-0.04926212,-0.02501381,-0.027197734,0.03305155,-0.0058144163,0.013317433,-0.032691315,0.037509456,0.001612614,-0.010559385,-0.01845078,-0.009715085,-0.021512777,-0.008904556,-0.05362997,-0.01921628,0.021186315,-0.05295453,0.007835109,-0.01671715,-0.035190444,-0.029516745,0.019790404,0.0009814993,-0.025193928,0.064346954,0.02708516,-0.012090383,-0.053179674,0.032150965,0.037892208,0.010356753,-0.0020220997,-0.05844811,-0.014848432,-0.035415594,0.032331083,0.005476696,-0.0052628065,-0.112483345,-0.025914397,0.050207738,0.017257502,-0.020589676,0.022188218,-0.021704152,-0.024788663,-0.027873175,0.016773436,0.042575262,0.044151288,0.0006891603,0.04854165,-0.010829561,0.022874916,-0.04050391,-0.001088444,-0.034312375,0.045412112,-0.013508808,0.023100061,-0.047415916,0.019227536,-0.005240292,-0.037059166,0.015433813,0.023482813,-0.017583966,0.0030366676,-0.004156773,-0.018507067,0.013272404,-0.021377688,0.0014521969,-0.02717522,0.011313627,-0.07799085,0.020116867,0.02645475,-0.008775096,-0.0027284978,-0.004198988,-0.016492004,-0.040999234,0.012990971,-0.00049074966,-0.026094515,0.019418912,-0.027017616,-0.0699306,-0.028728733,0.02111877,0.027242763,0.044241346,0.007643734,-0.05912355,-0.021895526,-0.031182833,-0.012754566,0.0067487755,0.018417008,-0.032331083,0.02848107,-0.004902572,0.026004456,0.053044587,0.07961191,0.011673862,-0.007863252,0.020747278,0.005586455,0.012675765,-0.0057806442,0.0136213815,0.026342176,-0.011853979,0.04151707,-0.029764408,-0.00033684072,0.0064054267,-0.0009892387,0.010125978,0.021433976,-0.00579753,-0.03275886,0.0017364448,0.017572708,-0.05205394,0.065022394,-0.061600167,-0.018000487,0.033681963,0.00008253917,0.006444827,0.026769955,-0.03440243,-0.0366539,-0.013351206,0.0016140211,-0.0014029461,-0.007908282,0.07038089,0.0046774247,0.000019315574,0.021017455,0.013643896,-0.012293016,-0.010238551,0.013632639,-0.026477264,0.0064560845,0.0108239325,0.04388111,-0.028728733,0.08105285,0.05633173,-0.0020615004,-0.015073579,-0.039580807,-0.049802475,0.017426362,0.052414175,0.04367848,0.009985261,0.01392533,-0.06790428,0.037081677,0.03861268,-0.051738735,0.0024245495,-0.037667062,0.017752826,-0.016435716,0.024113223,0.0028030777,0.07474874,0.009118445,0.02429334,-0.018642155,-0.0012143856,-0.0020530575,-0.021006197,-0.026814984,-0.052234057,0.0107395025,0.0317457,0.02280737,-0.07267739,-0.012214215,0.04777615,0.05335979,0.0009019944,-0.0022880544,0.050613,0.01075076,0.027242763,0.05277441,-0.0090903025,0.028841306,0.029809438,0.015332498,0.009169104,-0.049082004,0.013835271,-0.026117029,0.0155126145,-0.026252117,0.018912332,-0.037531972,-0.026049485,0.01286714,-0.021006197,0.06187034,-0.017685281,-0.04194485,0.028233409,-0.048811827,-0.023392754,-0.024113223,0.025981942,-0.014859689,0.01972286,-0.017527679,-0.012687023,-0.0012854475,-0.055476174,0.010519984,0.019081192,-0.03804981,-0.046650417,-0.0027777487,-0.023122577,-0.015433813,0.02176044,0.043025553,-0.004215874,0.013171088,-0.0060508205,0.028233409,0.0018011745,-0.007958939,-0.024023164,-0.007823852,-0.0011278448,-0.013193603,0.024270825,0.047731124,0.0037149223,-0.0075030173,-0.027940718,0.03593343,-0.0037599516,0.0006360397,-0.007165297,0.019655315,-0.024743633,0.048406564,0.011831464,-0.00791391,-0.013992874,-0.0170999,0.0005660331,0.035843372,0.004114558,-0.007925168,-0.03395214,0.026139544,0.017156187,0.032916464,0.014206763,0.046155095,-0.03786969,-0.023325209,-0.03242114,0.029561775,0.037689574,0.0058256737,0.020161897,0.00774505,-0.025193928,0.03309658,-0.018934846,0.07582945,0.024541002,-0.045051876,-0.06340134,-0.0725423,-0.0005509061,0.050297797,0.0075367894,0.050477915,-0.0048856856,0.048136387,-0.039648354,-0.0022585038,0.014533226,-0.020679735,-0.005949504,-0.009315449,0.0368115,0.029359143,0.00643357,0.04714574,-0.076459855,0.022739828,-0.00040878216,-0.033659447,-0.0034081598,0.018946104,0.031858273,-0.02992201,0.028998908,-0.040864144,0.04376854,-0.023077548,0.021141285,-0.033749506,0.002451286,0.0047899983,0.050387856,-0.020713506,0.012259244,-0.027377851,0.010497469,-0.003377202,-0.028458556,-0.017809112,-0.0003470427,0.0657879,0.018248148,-0.04629018,-0.008020855,0.0051924484,0.006501114,0.012833368,0.037014134,0.05651185,0.053900145,0.0134525215,-0.0033715735,-0.0037402513,0.03579834,0.008561207,-0.00036902967,-0.036158577,-0.014127962,0.0039175544,-0.016683377,0.010064062,-0.00914096,0.016840981,-0.010756388,-0.010857705,-0.052594293,0.04588492,0.0015788419,-0.032173477,-0.026072,-0.0035685769,0.006174651,0.0073454147,0.026184574,-0.03775712,-0.01930634,0.0006515186,0.008065884,-0.040278763,0.040436365,-0.007851995,-0.0006300593,-0.006669974,0.009698198,-0.03593343,0.02467609,-0.04372351,0.0107395025,-0.019137478,0.028075807,-0.0407966,-0.010339867,0.00677129,0.016604576,-0.02742288,-0.03361442,0.031385466,0.012495648,0.018529583,-0.015816564,0.015073579,0.03194833,0.018585868,0.0064785993,-0.014116704,0.028255925,0.023370238,-0.02357287,-0.004325633,0.026769955,-0.013238632,-0.0071765543,-0.021974329,0.013666411,0.0059438758,0.01121794,0.01654829,0.05853817,0.021073742,-0.019576514,0.005341608,-0.040639,0.016784694,0.025981942,0.0002121305,-0.040323794,-0.0041201864,-0.03564074,-0.01714493,-0.022334563,-0.026184574,-0.012506905,-0.008246002,-0.0268375,0.007469245,0.013272404,-0.020961167,-0.035010327,0.025148898,0.004373477,-0.01943017,0.0398735,0.04228257,-0.007058352,-0.04559223,-0.0019855134,-0.015073579,0.0035545053,0.0068951207,-0.05151359,0.010587528,0.031498037,0.0023401196,-0.03847759,-0.010559385,-0.017809112,-0.00196722,0.036631387,0.006754404,-0.0011721705,0.030619966,-0.011060337,-0.04608755,-0.010762017,-0.0036501926,0.02785066,-0.013497551,0.004626767,0.005586455,0.045479655,-0.03577583,-0.00187294,0.0068163197,0.017381333,-0.0010406004,-0.015309983,-0.03271383,0.014679572,0.007863252,0.0127095375,-0.008578094,-0.01765151,-0.026364692,-0.020803565,-0.0056117843,0.01887856,0.01282211,-0.014105448,0.025576677,-0.008386718,0.005752501,0.025756795,0.020308241,0.036496297,-0.030439848,-0.050252765,-0.01595165,0.008003969,0.040481396,-0.022312049,0.005651185,-0.005155862,0.010525613,-0.013824014,-0.005518911,-0.000797864,0.00086962956,0.009934602,0.027062645,0.01578279,0.0042215027,-0.027625512,0.014296822,-0.022210732,0.0040864144,-0.006844463,-0.023325209,0.014488197,-0.002351377,-0.013508808,0.0046830536,-0.045344565,0.034582548,-0.030439848,-0.022570968,0.06443702,-0.04266532,-0.0028452927,-0.02809832,-0.017043613,0.036879048,0.032060906,0.008330432,0.018101804,-0.036046002,0.037261795,-0.038837824,0.005099575,0.028616158,0.03347933,0.008195343,0.005938247,0.007199069,0.0012249394,-0.030327275,-0.014308079,0.004806884,-0.014589513,0.012180442,0.012495648,-0.0056596277,-0.019857949,0.045997493,-0.021107513,0.053269733,-0.000944913,0.024113223,0.01088022,-0.002704576,0.022582224,0.010998421,-0.0155126145,0.011099737,0.00952371,0.036721446,0.0047337115,0.004525451,-0.041584615,-0.018383237,0.019542743,-0.0052290345,-0.0008710367,0.02679247,-0.013396235,-0.009968375,0.019869205,-0.0073904437,-0.012101641,-0.024203282,0.02751294,-0.053855117,-0.0029916381,-0.018079288,0.0035376193,-0.02505884,0.0019615917,-0.0050601745,-0.010007775,0.023325209,0.011212311,-0.017291274,0.016582062,-0.020488359,0.025419075,0.028165866,0.03564074,-0.007553675,-0.037667062,-0.021422718,-0.0015915065,0.002511794,0.002344341,-0.015298725,0.024023164,0.001764588,0.017167443,-0.023978135,-0.004728083,0.0142743075,0.021445233,0.03568577,-0.0070358375,-0.015839078,-0.005217777,-0.02645475,0.0048744283,-0.005344422,0.013430007,-0.013081029,0.0065067424,-0.044151288,0.02400065,0.006360397,-0.011730148,-0.005561126,-0.02688253,-0.042777892,0.018585868,-0.012923427,-0.003956955,0.023077548,0.014825917,-0.041787248,-0.04036882,-0.0077056494,-0.008482406,-0.0046239523,-0.014702086,-0.009101559,-0.004863171,-0.020634705,-0.029471716,0.0074973884,-0.05358494,-0.04629018,-0.025329016,0.0028818792,-0.00774505,0.016615834,-0.013058514,-0.008538692,-0.04602001,0.021996843,-0.011628833,-0.003166127,-0.015467585,-0.025779309,-0.031250376,-0.022661027,0.011127881,-0.0114768585,0.0030366676,-0.06218555,-0.024586031,-0.011763921,-0.07056101,0.0019221909,0.044286378,0.0068951207,0.0014521969,-0.023820532,0.010756388,-0.006174651,-0.0007007694,-0.023888076,0.01269828,-0.015794048,0.030394819,-0.013553837,0.027152704,-0.025509132,0.005645556,-0.0031013973,0.010238551,0.003529176,0.03483021,0.012405589,-0.01866467,0.027040131,0.035438105,0.011032194,-0.00668686,-0.016458232,0.03305155,-0.023843046,0.008640009,0.007964568,-0.013722698,-0.02564422,-0.007925168,0.011324884,0.010165378,0.0044719786,-0.009765742,-0.079206645,0.027783116,0.010384897,-0.020848595,0.015163638,-0.0002379872,0.017460134,0.007266613,0.030192187,0.009895202,-0.0044607213,-0.0010610044,0.0007144893,0.015670218,0.019081192,-0.018248148,0.018799758,-0.024766149,0.04334076,-0.0058819605,-0.018225634,0.053179674,0.014150477,0.009534967,-0.02111877,0.008690666,-0.029359143,-0.014229278,0.00025311427,-0.021231344,0.015298725,-0.010497469,0.026297146,0.003931626,0.0026229604,-0.0069570364,-0.0007802744,-0.036293667,0.001764588,0.020938653,0.017167443,-0.009900831,0.0021290444,0.021197572,0.038004782,-0.027783116,0.009895202,-0.035505652,0.008476777,0.010193521,-0.00013667115,0.01604171,0.005645556,0.02429334,0.028571129,0.020578418,-0.0069345217,-0.03780215,-0.0054119662,0.004947601,-0.023077548,0.023865562,0.01789917,-0.0036192348,-0.015771534,0.012326787,-0.023910591,0.016559547,0.02568925,0.014375623,0.024608545,0.00032751824,0.023077548,-0.023798017,0.013553837,-0.022525938,-0.012833368,0.009805144,0.01481466,0.022469651,-0.0003327951,0.02568925,0.0015239625,0.029359143,-0.029696863,0.012124156,0.026567323,0.02751294,0.006326625,-0.016795952,0.0017125229,-0.07425342,0.03284892,0.01248439,0.037644546,-0.013317433,0.0031013973,0.017415104,0.01909245,-0.02890885,-0.0071090106,-0.008037741,-0.0022782043,-0.047505975,0.03284892,0.006906378,0.013171088,-0.0025934097,-0.00045908842,-0.015231181,-0.011865237,-0.017178701,-0.020465845,0.0118877515,0.0058256737,0.0023415268,0.035032842,-0.00018486663,0.038072325,-0.027355338,-0.011043451,0.014499454,0.022469651,0.044579066,0.0061915372,-0.048721768,0.0019714418,-0.027017616,0.0067656613,-0.024405913,0.0028523286,-0.0015844706,0.02463106,0.010019033,0.043700993,-0.01739259,0.018642155,0.036293667,0.00846552,0.0136213815,0.04854165,-0.003762766,-0.015692733,-0.016829723,-0.010052805,0.014488197,0.022312049,0.0061352504,-0.02205313,0.04583989,-0.005496396,-0.024495972,0.028773762,0.009247905,0.009771371,0.016604576,-0.023640415,0.0039372547,-0.012405589,0.023437783,-0.009709456,0.011240454,0.013520066,-0.0010230108,0.01621057,0.01832695,-0.017280018,-0.011060337,0.0013044443,-0.014319337,-0.0056821425,0.016097996,0.0013769134,0.021782953,0.035910916,0.035348047,-0.004744969,-0.08024232,-0.017257502,0.01075076,-0.010868962,-0.024856208,-0.0048322133,-0.006990808,0.05376506,-0.02496878,0.007897024,-0.016143026,0.01282211,-0.032938976,0.006033934,0.027445396,0.0027341265,-0.022086902,-0.009777,-0.007519903,-0.03406471,-0.011268598,-0.0037261797,0.034695122,0.0137001835,0.0046211383,0.029494232,0.026995102,-0.05011768,-0.0071033817,-0.018079288,0.042755377,0.052144,-0.01028358,0.016120512,-0.045637257,0.023707958,-0.026522294,0.0055076536,-0.00006741212,0.0037346226,0.006416684,-0.0059607616,0.040076133,-0.03699162,-0.0026145172,0.021411462,-0.018011745,-0.04550217,0.011212311,0.01705487,0.02535153,-0.017212473,0.0012931869,0.004215874,0.031070258,-0.010947763,0.01015975,0.0043143756,-0.0021374875,-0.03131792,-0.037689574,-0.007165297,0.009478681,0.016334401,-0.018777244,-0.020657219,-0.023888076,0.02992201,-0.033659447,0.0013459558,0.007199069,-0.01604171,0.0026454749,-0.030372305,0.0027228692,0.027377851,-0.00008143982,-0.029201541,0.018934846,-0.014488197,-0.005552683,0.006906378,0.024023164,0.0351229,-0.018788502,-0.009900831,-0.020882366,0.015174895,0.016323144,0.032691315,0.014566998,-0.00888767,0.019554,0.01685224,-0.02052213,-0.024158252,0.03179073,-0.012281758,0.026927559,0.046830535,-0.038117353,-0.028931364,-0.0007120268,-0.0053190934,-0.0021782953,-0.0317457,0.010120349,0.012732052,-0.021951813,-0.032781374,0.026364692,0.013767727,0.00045803303,-0.026589837,0.03771209,-0.010773275,-0.014566998,0.013497551,0.018090546,-0.004184916,-0.06975048,0.04561474,-0.01705487,0.00774505,0.00618028,-0.034357402,-0.018844787,0.025599191,-0.019205023,-0.018574612,0.0000022014476,0.0054372954,-0.030034583,0.000329629,0.050207738,0.020893624,0.0031407978,0.030124642,0.021107513,0.032150965,0.028436042,0.027197734,-0.0052487347,0.015028549,-0.0057750153,-0.011330513,0.0051192753,0.010660701,0.0057862727,0.004871614,-0.013407492,-0.016435716,0.018056775,-0.022424622,-0.009219762,0.038027294,0.0118877515,0.014364366,-0.011381171,-0.014589513,0.048496623,0.0070189517,0.027873175,-0.0023696702,0.016278114,0.04858668,-0.024923751,0.016582062,-0.04719077,0.014792145,-0.019317595,-0.004047014,0.0220081,-0.004525451,0.0010321573,-0.04858668,0.031182833,-0.016435716,0.0029128368,0.016345657,-0.03309658,-0.048361532,-0.008611865,-0.021940555,-0.03969338,0.012011582,0.0036389353,-0.026049485,-0.003571391,-0.0037177366,0.018439524,0.05070306,0.0020600932,0.0136213815,-0.029741893,0.028300954,-0.002720055,0.0030985828,0.010187893,0.032398626,-0.004207431,-0.025171412,-0.0042383885,0.0351229,-0.0010870369,0.011696377,-0.015906623,0.010458069,-0.020837337,-0.007199069,0.013643896,-0.018000487,-0.007728164,0.02251468,0.027490424,-0.060879696,-0.0057384293,0.033029035,-0.019621544,0.038319986,0.010277952,-0.012405589,-0.000856965,-0.00009401638,-0.010396154,-0.00010861574,0.0014254607,0.0005621634,0.02742288,0.020657219,0.012551934,0.017685281,-0.030890143,-0.0051699337,-0.011606318,0.034515005,0.033884592,0.014375623,-0.008662524,0.008206601,-0.0017730311,0.03025973,-0.018979875,-0.0017547379,0.011842722,-0.01214667,-0.0038668963,-0.0118877515,-0.0023302694,-0.025283987,-0.009726342,-0.007249727,-0.0030676252,-0.056872085,0.023752987,0.006912007,0.017516421,0.028210895,0.00062091264,0.001898269,-0.0031407978,-0.005760944,0.031137804,0.0053472365,-0.017809112,0.019418912,-0.0062196804,-0.014792145,0.0056877714,0.015400042,-0.008133428,-0.006214052,-0.005769387,-0.0069570364,-0.03453752,0.0023724844,-0.013261147,0.009163475,0.020038066,-0.008155943,0.004331262,-0.03188079,-0.0061633936,-0.0052487347,-0.018754728,-0.0203983,-0.042575262,-0.041156836,0.026342176,-0.022458393,0.031813245,-0.03338927,-0.028976394,-0.03949075,0.012743309,-0.003911926,-0.034582548,-0.029539261,-0.0005445738,0.009067788,-0.00007317271,-0.009112817,-0.020083096,-0.0003686779,0.010294838,-0.011353028,-0.026364692,-0.004882871,-0.013058514,-0.03525799,0.006326625,-0.033591904,-0.007666249,-0.022075644,-0.028008262,-0.033456814,0.007351043,0.0053810086,-0.014882204,-0.0075480468,0.0020220997,-0.014870946,-0.010362382,0.0029944526,0.0034166027,-0.01604171,-0.029696863,-0.026995102,0.012349302,-0.030957686,0.028413527,0.01337372,0.056646936,0.01663835,-0.0309802,0.011403685,0.017538937,-0.019351369,-0.0022585038,-0.0047674836,-0.015006035,0.044511523,-0.0038106097,0.0071090106,-0.03329921,0.04592995,0.010581899,-0.009658798,-0.0104130395,-0.00037043684,0.02463106,-0.0054457383,-0.0058763316,0.016300628,0.008459891,-0.0050939466,-0.01806803,-0.06592298,0.005527354,-0.023662928,0.0039259973,-0.016480746,-0.008116542,0.010351124,0.001955963,-0.0047505978,-0.008876413,-0.009197247,-0.017370077,-0.03136295,0.002660954,0.03546062,-0.014488197,0.016311886,-0.017617738,0.01248439,0.00008838771,-0.0057018427,0.002410478,-0.010013404,-0.018991133,-0.043318246,-0.008611865,-0.0134525215,0.029156512,0.0368115,0.016525775,-0.0052796924,-0.013959102,0.025081353,-0.012619479,-0.007474874,0.0049588582,-0.005181191,-0.00026982438,-0.014409396,0.0063885404,-0.0024498787,0.033344243,0.00076057407,-0.015467585,0.016874753,0.00067438505,0.0031379836,0.0032533712,0.05637676,-0.021490263,0.011662604,-0.055070907,-0.022323305,0.0058425595,-0.012112898,0.011899008,0.013047257,-0.0005582937,0.027873175,-0.008910185,0.0006578508,-0.024248311,0.05619664,-0.038590163,-0.017493907,0.014904719,-0.014353109,0.018079288,-0.02679247,-0.0035742056,-0.028998908,0.039805956,0.023257665,-0.005938247,-0.03093517,0.021692894,-0.024923751,0.010069691,-0.03314161,0.025779309,-0.0154901,-0.02035327,0.022300791,-0.017246244,0.01515238,-0.021028712,0.022143189,0.010671958,0.0036164206,0.031588096,-0.010700102,0.0033293583,0.008775096,0.010829561,0.01493849,0.017066129,0.0010560793,0.013733955,0.023392754,0.0005192448,-0.030529907,0.042980526,-0.009022758,0.031835757,-0.00080912135,0.017628996,0.039896015,-0.011527517,-0.012079126,-0.025216442,-0.011527517,0.038252443,-0.008499292,-0.0118089495,-0.011786435,0.00016956369,-0.0042637177,-0.025981942,-0.017212473,-0.015231181,-0.000081175975,-0.0090115005,0.022931201,0.022131931,-0.020465845,0.017685281,-0.033591904,0.023055034,0.031678155,0.03305155,-0.053089615,-0.02996704,-0.018214377,0.024608545,-0.0005874924,0.03318664,-0.0002685931,-0.013238632,-0.023910591,0.0021318588,0.013914073,0.0019587772,0.019745374,0.00029427392,0.00029216317,0.018732214,0.035528164,-0.00677129,-0.039130516,-0.0053528654,-0.022188218,-0.0026032599,-0.021918042,-0.03444746,-0.009534967,-0.009292934,-0.017133672,0.000006348744,0.027445396,0.0030929542,0.01375647,0.0054316665,-0.008223487,-0.023100061,-0.020094352,-0.011043451]},{"id":"class-LinkChannel","type":"class","source":"main","text":"Class: LinkChannel\nProperties: url: string | null","meta":{"url":"/docs/classes/LinkChannel"},"embedding":[-0.03139103,-0.04305497,-0.020942079,-0.0029463605,0.030131852,0.023084886,0.013265526,-0.01779414,-0.028055318,0.04301079,0.0082730055,0.015342061,0.021151941,-0.006737694,-0.0046694432,-0.061147336,0.001030674,0.0035483348,0.020422945,0.043629333,-0.011144809,-0.01971604,0.0043215128,0.0595568,-0.030176034,-0.006980693,0.020467127,0.029159857,-0.013022527,0.012370849,0.09225119,-0.034572102,0.02096417,0.07877579,-0.0071408516,0.036295187,0.03943208,0.01832432,0.013917205,0.008018961,0.0045534666,0.009311273,0.00075177755,0.0052714176,-0.007002784,0.018843453,-0.03934372,0.050587934,0.06954184,0.024962606,-0.043496788,-0.010968083,-0.026376417,0.006008698,-0.032716475,0.014359021,0.023394158,0.003012633,-0.045418687,-0.050587934,-0.02454288,-0.020975215,-0.0070469654,-0.025713693,0.0070911474,0.0058209263,-0.063798234,0.030220216,-0.00869273,0.0202904,0.011045401,-0.03689164,0.011663943,0.029535402,-0.025691602,0.022289619,-0.0535481,0.043077063,0.026067145,-0.032053754,-0.0314573,0.021174032,-0.042546883,-0.030065581,0.020025311,-0.016303012,-0.03441747,-0.015640287,0.019484086,0.016369283,-0.004456819,-0.01973813,-0.03804036,-0.012536529,0.002388568,-0.0053321673,0.02701705,0.008852889,-0.01779414,0.027503047,0.03278275,-0.046788316,-0.06720021,-0.0028331452,-0.008582276,-0.033511747,0.00020261407,0.0012474399,-0.046611592,-0.06066134,-0.008394504,0.023394158,-0.026862415,0.022300664,0.03494765,-0.035897553,0.045065235,-0.005475757,0.03525692,0.022731435,-0.03859263,-0.016104193,0.04966012,0.017252916,-0.05513864,-0.025978781,0.0068315803,0.00031462134,-0.049969394,-0.05376901,0.06516787,0.034284923,-0.06954184,0.0047329543,0.0061467653,0.011321535,-0.02816577,-0.038504265,-0.032053754,0.015297879,0.017838322,-0.03894608,0.05986607,-0.0063234917,0.004694295,0.023615066,-0.025338149,0.006737694,0.045551233,0.017893549,-0.016104193,0.002137285,0.0020406377,0.03638355,-0.030551579,-0.016755873,-0.01959454,-0.0059037665,-0.04267943,-0.04630232,0.06887912,-0.011222127,0.03479301,-0.015375198,-0.027591411,-0.025006786,0.036825366,-0.0023816645,-0.059203345,0.012183077,0.017672641,-0.004108889,-0.026796142,0.014093931,0.009421727,-0.013398071,-0.0066051497,-0.07117656,0.027326321,0.07484364,0.052045926,0.022488436,0.018998088,-0.051118113,-0.030419033,0.028077409,-0.04351888,0.025073059,0.048202127,-0.008670639,-0.03315829,0.0278565,0.018357456,0.025713693,0.0040011965,0.036560275,-0.014723519,0.009885633,-0.009962952,-0.041000526,-0.034395378,0.027061231,0.025603238,0.0096647255,0.011133764,-0.0025694363,-0.013066709,-0.02235589,-0.056199,0.023372067,0.041884158,-0.01186276,0.014778746,0.011465126,-0.020135766,-0.026045054,-0.0033384722,0.01904227,0.004354649,-0.037576452,-0.027878592,-0.0074556456,-0.0042994223,-0.0018846215,0.05107393,0.047848675,-0.0026757482,-0.015684469,0.0021193363,0.03859263,0.01652392,0.02756932,-0.015021745,-0.052531924,-0.004385024,0.015132199,-0.0025970498,-0.004379501,-0.013353889,-0.05982189,-0.013806751,-0.042966608,-0.009289182,0.03883563,0.02589042,0.0010265319,0.00092643296,-0.039586715,-0.0086872075,0.036825366,0.053415556,0.069365114,-0.013729433,-0.00793612,0.016026877,-0.008521526,-0.04267943,0.017805185,0.021372851,-0.06742112,0.061854243,-0.046169773,0.018302228,-0.035875462,0.006649331,-0.0075108726,0.019230042,-0.0069420342,-0.0040011965,-0.019903813,0.040647075,-0.04630232,0.06715603,-0.039564624,-0.014635156,0.008648548,-0.020080538,0.0024355107,-0.018390592,0.005630393,-0.020334583,-0.016512875,-0.04550705,0.025161423,0.009029615,0.022952342,0.017440688,-0.006080493,0.011233172,0.0071739876,0.018622546,0.019561404,-0.0005139563,-0.06198679,-0.017904595,0.09525553,0.04656741,-0.03030858,0.052752834,-0.006334537,0.022665162,0.022278573,0.0523552,0.00086292194,0.0166896,0.03262811,0.055580456,-0.009946384,0.031854935,-0.044490874,0.025404422,0.0023002047,-0.056596633,-0.021030443,-0.034395378,-0.03563246,-0.017639505,0.0025860043,0.014800836,0.0055641206,-0.014359021,0.016722737,-0.038658902,-0.0069917385,-0.04656741,0.0040260484,-0.0000774041,-0.022841888,0.0103826765,0.015640287,0.0058485395,-0.043761875,0.054741006,-0.0047108633,-0.014811882,0.007135329,0.017341278,0.06799549,-0.043386333,-0.0042635244,-0.0015353106,-0.04108889,-0.01791564,0.0689233,-0.0061467653,0.031103848,-0.053636465,-0.0044982396,0.0061964695,-0.007162942,-0.066360764,-0.008361368,-0.024962606,-0.044026967,-0.03689164,-0.067465305,0.0131661175,-0.029137766,-0.045860503,-0.014922336,0.010874197,0.011520353,-0.026597325,0.0040205256,-0.043253787,0.00053017924,-0.0152316075,-0.05155993,0.02843086,-0.03315829,0.013530616,-0.004443012,0.033843108,0.0057436083,-0.006174379,-0.009587408,0.030750396,0.021858849,-0.016755873,0.026354326,0.03247348,0.018125502,-0.04073544,-0.035190646,-0.0020406377,-0.009581885,-0.02067699,0.0031258482,-0.0028331452,-0.024896333,0.0007455645,0.020654898,-0.017319188,-0.012536529,0.025492784,0.03421865,0.011122718,-0.022521572,0.01945095,-0.020544445,0.022587843,0.010830015,-0.017109325,0.016203603,0.003343995,-0.021891983,-0.037465997,-0.00054674735,0.012658029,-0.0024576017,-0.026155509,0.029204039,0.04709759,0.06587477,0.024719607,0.012889982,0.022090802,-0.016060013,0.06304715,0.015364152,0.04855558,0.020710126,-0.012205168,0.021671075,0.014027659,0.017992958,0.04859976,0.0017465539,-0.0073396685,-0.053680647,-0.012017396,0.023482522,0.028497133,0.020047402,0.02343834,-0.039741352,0.0013868881,-0.034682557,-0.022709344,0.011465126,-0.03253975,0.010244609,-0.038460083,0.0010769266,-0.007985825,0.0021262397,0.05178084,-0.030286489,0.009764134,-0.022090802,-0.07749453,-0.026707778,-0.028452951,0.065963134,-0.0039956737,0.020467127,0.02122926,-0.011271832,-0.039034445,-0.0011073014,-0.001362036,0.019660814,-0.009841452,0.014038704,-0.013188208,-0.007135329,-0.015540878,-0.009957429,0.0010569068,-0.017871458,0.07086729,0.029027313,0.034682557,-0.0056607677,-0.02836459,-0.009841452,0.004407115,-0.027878592,0.005677336,-0.00607497,0.00085601857,0.017595323,-0.0013288998,-0.02262098,-0.020091584,0.100734055,0.03455001,0.021505395,0.02315116,-0.0026785096,0.005646961,0.0072016013,-0.012050532,-0.009372022,-0.04212716,-0.007532963,-0.03808454,0.03667073,0.046744134,0.01983754,-0.014635156,-0.07351819,-0.013696297,-0.005837494,0.03667073,-0.0017244632,-0.02026831,-0.058717348,0.017275006,-0.011597671,0.012006351,-0.0012308718,-0.027966954,-0.029866762,-0.01613733,-0.00392664,-0.025956692,-0.016170466,-0.013983477,0.020765353,-0.013541661,0.005986607,-0.0032832453,-0.014138113,-0.015673423,0.039851807,-0.031125939,-0.04139816,0.0018942863,0.0067542624,-0.0224553,-0.031479392,0.01666751,-0.0110785365,-0.009454863,0.03090503,-0.0062958784,-0.036471914,0.031854935,-0.00017034079,-0.04228179,0.014414248,-0.011663943,0.016612282,-0.028607588,-0.0031451778,-0.012658029,0.029093586,0.029071495,0.018600455,0.0501903,-0.044181604,-0.01378466,0.00081805,0.029535402,0.005387394,0.01666751,-0.027127504,-0.029358674,0.018070275,-0.024101064,-0.037951995,0.012613848,0.0039542536,-0.004721909,-0.024631243,-0.01613733,-0.011929032,-0.0002851094,-0.023747612,-0.007720735,-0.011929032,-0.020732217,0.034329105,0.04550705,0.03284902,-0.048025403,-0.010089973,0.00895782,-0.007223692,-0.012050532,-0.030993395,0.012348758,-0.004777136,-0.009018569,0.018169684,0.039741352,-0.02756932,-0.006997261,0.046611592,0.004061946,0.0101452,0.002519732,0.010123109,-0.022996524,0.0055392683,0.01585015,-0.008582276,0.020301446,-0.011652898,0.0038686516,0.033423383,-0.0034240743,0.017252916,0.034262832,0.034815103,-0.013508525,0.013497479,-0.06817221,0.018070275,-0.008157028,0.018224912,-0.0027613502,-0.02893895,0.056419905,0.024918424,-0.01738546,0.024763787,0.010592539,-0.031479392,-0.03117012,0.019185862,-0.025735782,0.030463215,-0.007367282,0.0027144072,-0.053371377,-0.02869595,-0.016976781,-0.018269092,0.06578641,0.016612282,0.015596106,-0.01110615,0.008676162,-0.000050437786,0.00051706284,0.012205168,-0.005826449,-0.0023305796,0.014005568,0.014811882,0.012437121,-0.0044678645,-0.02423361,-0.012613848,0.016501829,0.02509515,0.0008332374,-0.0037333453,-0.006362151,0.009233955,0.0025045446,0.007914029,-0.0015629241,-0.029314494,-0.05597809,0.050278664,0.000107951535,-0.0010106541,-0.026906596,0.008543617,-0.013596888,0.0050449865,-0.024741698,-0.021527486,0.01940677,0.014414248,-0.049527574,-0.019682905,-0.002001979,0.02125135,0.018434774,-0.0077814846,0.017418597,-0.05902662,0.03443956,-0.028850587,-0.016910508,0.012889982,-0.020621764,0.013210299,-0.034903467,-0.03477092,-0.0069033755,-0.015596106,0.004092321,-0.0025059253,-0.009349932,0.04385024,-0.024719607,0.020058447,-0.001797639,0.0035593803,-0.026111327,0.024211518,-0.004462342,0.027215866,-0.012105759,0.0011542444,0.016656464,-0.040293623,-0.0131661175,0.01544147,0.009465909,-0.03090503,-0.002196654,-0.04055871,-0.0076489397,0.010200428,-0.011431989,0.0011563153,-0.009377545,0.005100214,0.010575971,0.019970084,-0.030485306,0.0032722,0.0014635156,-0.025492784,0.021704212,0.0073065325,-0.019439906,-0.008267483,0.008637503,0.032363024,-0.028784314,0.04460133,-0.03163403,0.020588627,0.011431989,-0.0028276225,-0.020754308,0.019086452,0.008863934,0.024344062,0.007593713,0.008085233,0.011763352,-0.011050924,0.02106358,0.013066709,0.009112456,0.0053735874,0.0125144385,0.008157028,0.008615413,-0.0137957055,-0.012061577,-0.006914421,-0.000983731,0.0045866026,-0.009697862,0.009620544,-0.017407551,0.016347192,0.033821017,-0.04577214,-0.014436338,-0.008543617,-0.045418687,0.03479301,0.018644636,0.0026964585,0.01392825,-0.008869457,-0.0021510918,-0.029933035,0.029314494,0.03828336,-0.017838322,-0.016104193,-0.018998088,0.012845801,0.009051706,-0.001423476,-0.041530706,-0.016755873,-0.016512875,-0.017705778,-0.001683043,0.0024631242,0.0046004094,-0.027922772,0.019528268,-0.01337598,-0.013221345,-0.018191775,-0.024056882,-0.003603562,-0.02290816,-0.014856064,0.004605932,-0.03499183,0.0338652,0.02204662,0.004674966,-0.033975653,-0.0060528796,-0.008996479,-0.008333755,0.009576363,-0.026972868,0.023570884,-0.0028207193,0.02922613,-0.048334673,0.018655682,0.043121245,0.016247785,-0.0066051497,0.044269964,-0.026972868,0.023769703,-0.0124702575,0.08169178,0.01421543,0.008902593,0.022797707,-0.0054094847,0.04051453,0.049527574,0.007814621,0.034837194,0.037267182,0.029424947,-0.034307014,0.02082058,0.052266836,-0.0034931079,0.025536966,-0.014027659,0.0019550358,-0.0055696433,-0.022709344,-0.026332235,0.004227627,0.017440688,-0.013541661,0.006356628,0.039895985,0.0079029845,0.0048296014,-0.029800491,-0.00021711116,-0.020025311,-0.040072713,-0.02219021,-0.027237957,0.045418687,0.010443427,-0.0053901556,0.015684469,-0.046788316,0.014016613,0.016358238,-0.005809881,-0.0071187606,0.03806245,-0.0062572192,-0.03446165,-0.01325448,-0.035367373,-0.0145136565,-0.0041392636,0.007168465,0.036030095,0.003921117,0.032937385,0.03302575,0.07166256,-0.0025376808,0.031236393,-0.0111669,0.0085988445,-0.0025183514,-0.015805969,0.009725475,-0.025404422,-0.010332972,0.046434864,-0.005677336,-0.00091607793,-0.018556273,0.0110785365,-0.015054881,-0.019771267,0.04630232,-0.010603584,0.0063787187,-0.0024506983,0.060528796,0.018235957,-0.0019978369,0.0027213106,0.019318406,-0.05023448,0.016579146,0.011586625,-0.013221345,-0.015021745,0.040492438,-0.023327885,0.012216213,0.04546287,0.0018998089,0.013188208,-0.019660814,0.02509515,-0.005503371,0.0044540577,-0.0103605855,-0.031832844,0.005638677,0.04073544,0.009846974,0.022665162,-0.0010672618,-0.019439906,-0.00509193,-0.016755873,-0.05160411,0.016093148,-0.008935729,-0.028651768,-0.029469129,-0.027723955,-0.03916699,-0.0019426098,-0.009581885,-0.005749131,0.02370343,-0.012492348,-0.025448604,0.0009381687,-0.039807625,0.0066935127,-0.0032583931,0.009692339,0.002706123,-0.007914029,-0.033202473,0.039321627,-0.023924338,0.0067487396,0.010680903,-0.04495478,0.025073059,-0.007963734,-0.015408333,0.0224553,-0.015110108,0.021582713,-0.033821017,-0.026994959,0.009029615,0.0062572192,-0.04020526,0.035146464,0.012050532,-0.019130634,0.04798122,-0.02370343,-0.025050968,-0.020235173,0.002256023,0.06702349,0.0042635244,0.016656464,0.033821017,-0.044225782,0.009151114,0.016987827,0.053857375,0.010344017,0.024189427,-0.0022090802,0.027525138,-0.01851209,-0.0075108726,-0.0007897461,0.042900335,0.024852151,0.01748487,-0.007715212,0.016888417,0.0017727868,-0.021074625,0.016601237,0.03229675,0.0010230802,0.0066051497,0.0031589845,-0.039100718,-0.014005568,0.0018777181,0.013442253,0.026310144,-0.028718041,0.007798053,0.04022735,0.00578779,-0.03229675,-0.04992521,0.012370849,-0.015916422,0.0021579952,0.020411901,-0.017937731,-0.057303537,0.009300227,0.031324755,0.03455001,-0.013762569,-0.01849,-0.015861195,-0.012912073,-0.0028096738,-0.010200428,-0.03368847,-0.0027075037,-0.019241087,-0.021538531,0.015076972,-0.025073059,0.017738914,0.007720735,-0.016943645,0.000046036883,0.0100347465,-0.03368847,-0.018302228,-0.027348412,0.0010037508,0.00081390794,0.008239869,0.0050532706,0.0009768276,-0.004912442,0.010813447,-0.027414685,0.0053680646,0.006726649,-0.003943208,-0.016358238,-0.006522309,-0.0012605564,-0.014182295,0.00779253,0.016534965,0.048909035,-0.022013484,-0.0018666727,-0.006063925,0.00062475546,0.021328669,0.035676643,0.008123892,0.0019191384,-0.0010196285,0.01642451,0.001478703,-0.0055558365,0.01294521,0.017540095,0.013696297,0.024675425,0.020997306,0.019417815,0.021483304,0.052929558,-0.045727957,0.0035234827,0.01844582,-0.005086407,-0.007372805,0.022433208,-0.031302664,-0.019318406,-0.006025266,0.014922336,-0.005843017,0.036781184,-0.032208387,0.024631243,-0.0075274403,-0.03775318,0.03887981,-0.016037922,-0.01224935,-0.017076189,0.061058976,-0.018368501,0.023813883,-0.030419033,0.005530984,0.03477092,-0.010542835,0.0058761532,-0.008052097,0.002545965,0.002779299,0.020975215,-0.021262396,-0.024476608,0.024631243,-0.012039486,-0.011117196,-0.025603238,-0.015308925,-0.022709344,0.046169773,0.03633937,0.00096233055,-0.021284487,-0.0030457692,-0.026729869,-0.01000161,-0.028718041,-0.005622109,-0.004177923,0.0041889683,0.020710126,-0.026884506,-0.022819798,0.030396942,-0.02564742,0.03547783,-0.016435556,-0.008631981,0.040161077,0.003399222,0.007770439,-0.02843086,-0.0070966696,-0.014082885,0.018556273,0.020378765,0.0145357475,0.027679773,0.0056055407,0.017186644,-0.014204385,0.009526658,0.020157857,0.04687668,-0.015331016,0.04086798,0.0489974,0.016004786,0.0015822536,-0.013055664,0.061677516,-0.004122696,0.0055779275,-0.052487742,0.017164553,-0.0031175644,0.016766919,0.0024783118,-0.0040895594,0.011398854,-0.0042441953,0.027436774,0.0010741652,0.036538184,0.0015408334,0.005553075,0.0028303838,0.024852151,0.011641853,-0.04336424,-0.0056607677,0.01462411,0.034064014,-0.0131440265,-0.002940838,0.029358674,0.009973996,-0.019704994,0.020179946,-0.04166325,-0.014955472,0.0016540487,-0.00096094987,-0.015529833,-0.0056248703,0.03667073,-0.037885725,0.01570656,-0.03751018,-0.01877718,0.010299836,-0.036759093,-0.01517638,0.0043408424,-0.012503393,0.037951995,-0.009841452,0.01599374,-0.015540878,-0.016004786,0.023372067,0.023040706,-0.010940469,-0.0011528637,0.006649331,-0.06649331,0.023813883,-0.007538486,0.016700646,0.05708263,0.030286489,0.048423037,-0.012646983,0.008245392,0.01985963,-0.0112884,0.0051305885,-0.033511747,0.0069862157,0.00012477851,0.0103826765,0.0051609636,-0.046744134,-0.040691257,0.03479301,0.0021538532,0.00062717166,-0.050985567,-0.023062797,-0.019925904,0.040337805,-0.024675425,0.01599374,-0.01392825,-0.0032722,-0.00071035733,0.0056331544,0.01930736,-0.0012936925,0.017606368,0.019461995,-0.010498653,-0.014723519,0.016700646,0.016347192,0.01685528,-0.0148892,-0.01640242,0.016225694,-0.02644269,-0.029447038,-0.032053754,0.00662724,-0.01615942,-0.006097061,-0.01755114,0.0018915249,-0.005456428,-0.0071960785,0.022665162,-0.030242307,-0.014281703,-0.038150813,-0.050322846,-0.016291967,-0.0059424257,-0.014999654,0.030706214,0.005881676,-0.023305796,-0.0046694432,0.00076627464,0.0056524836,0.014403203,0.03826127,-0.009178728,-0.014027659,-0.027966954,-0.010636721,0.0205334,0.010178337,-0.025757873,-0.03114803,-0.007405941,0.00965368,0.015750742,-0.01572865,0.0074335546,0.019870676,0.045948867,-0.010791357,0.014347975,0.011597671,0.0032280183,0.01462411,-0.015916422,-0.001139057,0.007334146,-0.01904227,0.037134636,0.031832844,0.012779528,0.00910141,0.013773615,-0.01392825,0.034638375,-0.031678207,-0.0060694474,-0.034815103,0.0030485305,0.004534137,-0.009973996,-0.011409899,0.0026536575,0.026265962,-0.016082102,0.012569666,-0.0023388637,-0.000038464743,0.003114803,-0.032915294,0.0319433,-0.014414248,-0.0297784,-0.012956255,-0.00971443,-0.0059589935,-0.015772833,0.0166896,-0.01558506,0.01515429,-0.012912073,0.0019218997,0.024852151,-0.0037361067,0.00035517866,-0.029822582,0.0039625373,-0.015220562,-0.008140461,-0.055492092,-0.005274179,0.03804036,0.02427779,0.016612282,0.01392825,0.024034793,0.018744044,0.012072623,0.008924684,-0.014900246,-0.021019397,0.043474697,-0.034064014,0.0035510962,-0.02178153,0.01224935,0.016976781,-0.007891939,-0.019395724,0.008123892,0.013707343,-0.00724026,-0.022609934,0.012746392,0.023791794,-0.029137766,-0.0040094806,-0.016093148,0.0050726,0.0039100717,0.036184732,-0.010211472,0.004401592,-0.02012472,0.002378903,0.006654854,0.008460777,-0.010200428,0.057259355,-0.01224935,-0.010355063,-0.013994522,-0.041199345,0.016060013,0.012735347,-0.02204662,-0.01041029,0.0016388613,-0.02237798,0.023372067,-0.012326667,0.012525484,-0.012602802,-0.016744828,-0.0032473477,-0.012613848,0.06481441,-0.0093830675,-0.03393147,0.0070690564,0.020047402,-0.012901028,0.021240305,0.006080493,-0.008355846,0.009344409,0.009565317,-0.020886853,0.031589847,0.009780702,-0.011282877,0.027525138,-0.026928687,0.03496974,0.03340129,-0.023084886,-0.0145357475,0.009256045,-0.0540341,-0.033180382,0.010498653,-0.03388729,0.018865544,-0.029712128,-0.015839104,0.020787444,0.00009448995,0.008681685,0.0130888,-0.007212647,-0.020334583,-0.0015656855,0.004260763,0.025006786,-0.005056032,0.004431967,-0.0039956737,-0.021405986,0.024984697,0.0038189474,0.010178337,0.004917965,0.02122926,-0.009206342,-0.033423383,-0.015805969,0.0029933036,-0.0131440265,-0.025249785,0.0066935127,-0.009272614,-0.012326667,-0.009405158,-0.016601237,-0.037333455,-0.027679773,-0.00046010996,0.012790574,0.012923119,0.0076710307,-0.0042027747,0.0078090983,0.00023281634,0.00607497,-0.017584277,-0.005859585,0.010813447,0.0028524748,0.026729869,0.010178337,-0.0020005982,0.04024944,0.051339023,0.028187862,-0.022952342,0.013541661,0.012017396,-0.006041834,0.04495478,0.0037747656,0.0039045492,0.011840669,0.0010603585,-0.022930251,-0.021041488,-0.045551233,-0.02135076,0.0090130465,0.013917205,0.02204662,0.016291967,-0.003683641,0.008554663,-0.012646983,0.00991877,0.021295533,-0.0086651165,0.013972431,0.0047688517,0.050587934,0.010487608,-0.026265962,-0.0054288143,-0.00056262506,-0.00750535,-0.002137285,-0.04270152,0.030573668,-0.024012702,0.013022527,0.03114803,-0.015088017,-0.0041392636,0.00750535,-0.0013958625,-0.014756655,-0.0057933126,0.0005615896,-0.006649331,0.000009319557,-0.031103848,0.0030650985,-0.0034019833,-0.02043399,-0.015640287,0.011509308,0.014734564,0.013729433,-0.0035731872,0.0152316075,-0.03558828,-0.011630807,0.018423729]},{"id":"class-LiveKitRtcConnection","type":"class","source":"main","text":"Class: LiveKitRtcConnection\nDescription: Voice connection using LiveKit RTC. Used when Fluxer routes voice to LiveKit.\n\nSupports both audio playback ({@link play}) and video streaming ({@link playVideo}) to voice channels.\nVideo uses node-webcodecs for decoding (no ffmpeg subprocess). Audio uses prism-media WebM demuxer.\nProperties: audioSource: AudioSource | null, audioTrack: LocalAudioTrack | null, channel: VoiceChannel, client: Client, currentStream: { destroy?: () => void; } | null, currentVideoStream: { destroy?: () => void; } | null, guildId: string, lastServerEndpoint: string | null, lastServerToken: string | null, playing: boolean, playingVideo: boolean, room: Room | null, videoSource: VideoSource | null, videoTrack: LocalVideoTrack | null\nMethods: audioDebug(msg: string, data: object) -> void; connect(server: GatewayVoiceServerUpdateDispatchData, _state: GatewayVoiceStateUpdateDispatchData) -> Promise — Connect to the LiveKit room using voice server and state from the gateway.\nCalled internally by VoiceManager; typically not used directly.; debug(msg: string, data: string | object) -> void; destroy() -> void — Disconnect from the room and remove all event listeners.; disconnect() -> void — Disconnect from the LiveKit room and stop all playback.; emitDisconnect(source: string) -> void; getVolume() -> number — Get current volume (0-200).; isConnected() -> boolean — Returns true if the LiveKit room is connected and not destroyed.; isSameServer(endpoint: string | null, token: string) -> boolean — Returns true if we're already connected to the given server (skip migration).; play(urlOrStream: string | NodeJS.ReadableStream) -> Promise — Play audio from a WebM/Opus URL or readable stream. Publishes to the LiveKit room as an audio track.; playOpus(_stream: NodeJS.ReadableStream) -> void; playVideo(urlOrBuffer: string | ArrayBuffer | Uint8Array, options: VideoPlayOptions) -> Promise — Play video from an MP4 URL or buffer. Streams decoded frames to the LiveKit room as a video track.\nUses node-webcodecs for decoding (no ffmpeg). Supports H.264 (avc1) and H.265 (hvc1/hev1) codecs.; playVideoFFmpeg(url: string, options: VideoPlayOptions) -> Promise — FFmpeg-based video playback. Bypasses node-webcodecs to avoid libc++abi crashes on macOS.\nRequires ffmpeg and ffprobe in PATH. URL input only.; setVolume(volumePercent: number) -> void — Set playback volume (0-200, 100 = normal). Affects current and future playback.; stop() -> void — Stop playback and clear both audio and video tracks.; stopVideo() -> void","meta":{"url":"/docs/classes/LiveKitRtcConnection"},"embedding":[-0.061690714,-0.008560401,-0.011933385,-0.027798042,0.0069146175,0.021110227,-0.021540575,-0.0097991,0.016934706,0.0019103884,0.014980702,0.0014160718,-0.002371266,0.030729048,0.01710917,0.0010104413,-0.053409457,0.04724504,-0.0041551674,0.021168383,-0.017353421,-0.020424,0.0118228905,0.013143007,-0.009688606,-0.015050488,0.003500925,0.05401427,-0.014527094,-0.04950145,0.053874698,-0.029123973,-0.0022476867,-0.044104673,-0.0125730885,-0.0020223365,0.027472373,0.004853026,-0.044546653,-0.0012517842,0.025820775,-0.059969332,-0.05364208,0.023541102,-0.01496907,0.0087116035,-0.02375046,0.012759184,-0.036474753,-0.014585248,-0.043243982,0.010078244,-0.05531694,0.011386729,0.013270948,0.009607189,-0.006053925,-0.0179466,-0.014189795,-0.011125032,0.01709754,-0.010432988,-0.007943959,-0.013352364,-0.01484113,0.022831613,-0.057643134,0.01556225,-0.009572296,0.055409987,0.034823153,0.018970128,-0.023285221,0.0046669305,-0.025495106,0.031054715,-0.023227066,0.022145385,-0.006507533,-0.076810986,0.015190059,0.017074278,-0.050664548,-0.030822096,-0.0040417654,-0.008374305,-0.0805329,-0.0014822229,-0.0049867826,0.038289186,-0.024029603,-0.0360793,-0.06638963,0.0025922547,0.024192438,0.002336373,0.051222835,-0.042104147,0.039126616,0.034264866,0.05447951,-0.009217551,-0.050618023,-0.040685166,0.05652656,0.012375362,-0.0016646839,0.0467798,-0.054246888,-0.026332539,-0.03340417,0.00783928,-0.010781918,0.028077185,0.020749668,-0.008554585,0.053083792,-0.02910071,-0.016911445,-0.026053395,-0.050059736,-0.018179221,0.015259845,-0.0029688075,0.07304255,-0.017900078,0.061690714,0.023355007,-0.040661905,-0.012189266,0.07495003,0.024983345,0.027588684,0.0062865443,-0.009857255,0.034939464,-0.022947922,0.008257995,-0.006908802,-0.030077713,0.010089875,-0.03945228,0.06848321,0.007321702,0.012096219,0.04466296,-0.01294528,0.03910335,-0.0515485,-0.008833729,-0.024913559,-0.0050449376,-0.04866402,-0.007321702,-0.07220512,-0.0054956377,0.0179466,0.053874698,-0.051036738,0.019540045,0.008211471,0.021773193,0.034102034,0.0032799363,-0.040150143,-0.004931535,0.008740681,0.033427436,-0.05354903,0.024541367,0.030007927,0.017539518,-0.030240547,0.0064435625,-0.007199576,-0.052618552,0.03703304,-0.006740153,-0.011945016,-0.035823416,0.004399418,-0.013724556,-0.024611153,-0.024378533,-0.041173667,0.011334389,-0.031403646,0.03372984,0.025355535,-0.016527621,0.0042249532,0.0515485,-0.017748876,0.060620666,0.030124238,0.046616968,0.020563573,-0.0387079,0.022226801,-0.035102297,-0.0022942107,-0.024006343,0.02742585,-0.097886324,-0.020935763,-0.0015178429,0.022226801,0.037242398,-0.018202484,-0.0001526566,0.04096431,0.04461644,0.010555114,-0.026518634,-0.0676923,0.06518001,-0.019516783,0.0054520215,-0.02054031,0.025378797,-0.036800418,0.016667193,0.013805972,-0.038870733,0.011921754,-0.0040504886,-0.0041348133,-0.03524187,0.0027841658,-0.03752154,-0.0049286275,-0.018481627,-0.046942633,-0.016562514,0.027449112,-0.07629923,-0.008234734,-0.0037800684,0.012770816,0.023413163,-0.012212529,-0.044337295,0.017632565,0.004789056,0.021191645,-0.0030851173,0.0032275969,-0.06364472,0.014061854,0.009328046,0.045733012,0.022354743,0.021040441,0.023541102,-0.00084615377,0.010194554,0.0043499866,0.021528943,-0.036660846,-0.0036521277,0.0031432721,-0.0772297,-0.018981759,-0.045081675,-0.037707634,-0.048384875,0.0006251652,0.039242923,-0.013049959,0.040545594,-0.03221781,0.0017213849,0.013282578,-0.009845624,-0.0091245035,-0.00087232346,0.042848527,0.01816759,0.03028707,0.006780861,-0.038172875,-0.006804123,-0.01948189,0.0050885538,-0.0052920957,0.05554956,-0.012189266,0.015143535,0.010752841,0.011159925,-0.0058561983,0.00034602164,0.049734067,-0.04308115,0.060481094,0.029356593,0.06987893,-0.035637323,0.007112344,0.016562514,0.0095374035,0.0031432721,0.0044284957,-0.025332274,0.024843773,0.076810986,0.0456167,0.0012932195,0.02505313,-0.024843773,0.009072164,0.04308115,-0.019214379,-0.007821834,-0.015853025,0.020028546,0.04501189,-0.00040490346,-0.011386729,-0.006280729,0.010973829,-0.029217022,0.037451755,-0.0020601372,0.043197457,-0.0017461008,-0.0026853024,-0.0025791698,-0.03940576,0.012491672,0.010293417,-0.050571498,-0.00914195,0.003794607,0.0027972506,-0.02589056,-0.024890296,-0.0024773986,-0.01876077,-0.0007647369,0.024471581,0.0074496423,-0.030915143,0.039173137,0.031450167,0.03910335,-0.005984139,-0.045733012,0.0026038855,0.029891618,-0.037102826,0.009147765,-0.012863863,-0.03707956,0.015538989,-0.040848,0.019644724,-0.031450167,-0.033427436,0.02313402,-0.06345862,0.02505313,-0.041731954,-0.019900605,0.013270948,0.007513613,-0.04996669,0.022854874,-0.03147343,-0.06420301,0.07620618,0.011415807,0.016108906,0.022843244,-0.003966164,-0.0446397,-0.005277557,-0.016981231,-0.012259052,0.053735126,0.017562779,0.015957704,0.038056564,-0.011532117,0.005152524,-0.025867298,-0.021994183,0.025960347,-0.0051350775,0.042127408,0.005108908,0.00017500989,-0.04596563,-0.035311654,0.00054992724,-0.0144456765,0.03621887,0.013724556,0.016957968,0.009176843,0.049361877,0.04666349,-0.038033303,0.05364208,0.029472902,-0.0046669305,0.025518369,0.03942902,0.04782659,0.0025602693,0.042173933,-0.026076656,0.015387786,-0.009101242,0.05592175,-0.026332539,0.020470524,-0.039219663,0.031775836,0.024611153,0.016178692,-0.002144462,-0.036009513,-0.011008722,0.0076880776,0.034381177,0.033148292,-0.017911708,0.007833465,-0.056340463,-0.03265979,0.020121595,0.1116574,0.023890032,0.024913559,-0.005812582,-0.030124238,-0.012352101,-0.053455982,0.015341262,-0.008478984,-0.0022287865,-0.013154638,0.027891088,-0.004536082,0.025937084,0.024680939,-0.043895315,-0.013561722,-0.009293153,-0.03386941,0.021563835,-0.00073057093,0.024425058,-0.012991804,-0.050245833,0.033543743,0.012363731,-0.00647264,-0.032357384,-0.029961403,0.025192702,-0.008577848,0.015038856,-0.0008854083,0.021273062,0.027728256,0.0057515195,-0.023087494,0.0046029603,0.019691247,-0.028333066,0.014317736,0.031147763,-0.03182236,-0.00042925583,0.03691673,-0.03168279,-0.007286809,-0.014561987,0.023482949,0.035544273,-0.03905683,-0.008874438,0.029752046,0.046035416,0.004754163,0.02768173,-0.031799097,-0.019586569,0.009397832,-0.024122652,-0.0076415534,-0.010659792,0.02993814,0.004896642,-0.055735655,0.0112994965,0.044197723,-0.025913822,0.018214114,-0.0072751776,0.007286809,0.0643891,0.02029606,0.048850115,0.045197986,-0.032962196,-0.030636,0.011125032,0.014631772,-0.03138038,0.0009166666,-0.023610888,0.005053661,0.006257467,-0.027449112,-0.026402324,-0.013945544,-0.00448665,-0.020156488,0.004890827,0.00085633085,0.017469732,0.0017606395,0.014945809,0.0069262483,0.0021153844,0.013503567,-0.030961668,0.016667193,-0.00871742,-0.025309011,-0.0014618688,-0.021889504,0.031496692,0.0012830425,-0.0066994443,0.026890825,-0.02017975,0.0042772926,0.03861485,-0.014666665,0.019202746,0.0057137185,0.030682525,0.013038328,-0.024029603,-0.0049635204,0.031008191,0.018411841,-0.047384612,-0.007263547,-0.02910071,0.034102034,0.0047163623,0.014387522,-0.013445413,-0.04547713,-0.015108642,-0.004559344,-0.009089611,0.00064770016,-0.03135712,-0.02433201,-0.0182839,-0.0025777158,0.0026707638,-0.012991804,0.047082204,0.0076066605,-0.016899813,0.010502774,0.027960874,0.0069262483,-0.030449905,-0.0049722437,0.0036230502,0.0077229706,0.010386465,-0.019993654,-0.06564525,0.0044517573,-0.0140037,-0.020156488,-0.010159661,-0.013701294,-0.029868355,-0.019493522,0.041173667,0.041731954,0.023366638,-0.011607718,0.019842451,-0.017399946,-0.00016992135,-0.00542876,-0.010194554,-0.004570975,-0.002097938,-0.0066587357,0.050524976,-0.020935763,0.020493787,0.025448583,-0.006065556,0.034148555,-0.018807294,-0.0072809933,0.009549034,0.040429287,0.0064028543,-0.007525244,-0.044593174,-0.015713453,0.0006019032,-0.03717261,0.012014802,0.026751254,-0.013619877,-0.04964102,-0.011654242,-0.033125028,-0.0032973827,0.025797512,0.028588947,-0.027472373,-0.032845885,-0.0013477397,-0.0015062118,0.02910071,0.0039370866,0.015632037,-0.01388739,0.011607718,-0.060853284,0.035451226,-0.0066529205,-0.0031258257,-0.034288127,0.0429881,0.020005286,0.031031454,0.0012808617,0.02114512,-0.008595294,-0.030636,0.015306369,0.005094369,-0.017481362,0.0006295268,-0.023657413,0.030729048,0.0008883161,0.009403647,-0.03359027,-0.040150143,0.04026645,0.022622256,0.0077578635,-0.0123869935,-0.0018391487,0.01009569,0.02791435,0.0033787997,0.007432196,0.008822098,0.039847735,0.0031054716,-0.005838752,0.00006810484,0.0102876015,0.008048638,-0.022459421,0.02423896,-0.018609567,0.0109621985,-0.020924132,0.003192704,0.012317208,-0.0123869935,0.0031171024,-0.06285381,0.0011354744,0.0077636787,-0.02315728,0.0035619875,-0.040033832,0.014352629,0.012456779,-0.011043615,0.018144328,0.007007665,0.029961403,-0.041499335,0.044034887,0.015469203,-0.011130847,0.001458234,-0.047919635,0.0217383,-0.012759184,-0.011258788,-0.01388739,-0.0263558,-0.01401533,0.00854877,-0.0045418977,0.023006078,-0.021086967,-0.030612739,-0.00777531,-0.037963517,0.025029868,-0.017260375,0.013212793,-0.01708591,-0.03382289,0.030705785,-0.0018871265,-0.026076656,0.046361085,-0.0145968795,-0.012328838,0.00433254,0.0071065286,-0.026123181,0.009357123,-0.011142478,0.038033303,0.014061854,-0.009531587,0.014620141,-0.00943854,-0.038149614,0.006100449,-0.044104673,0.0045680674,-0.0076531847,-0.01886545,-0.00448665,-0.014201426,0.019807559,0.021261431,-0.0076764463,-0.038056564,0.01543431,0.01592281,-0.04417446,0.0052746492,-0.010636531,0.0068680933,-0.044383816,0.011136663,-0.011526301,-0.011439068,0.0017315621,-0.018121066,-0.02221517,0.017190589,-0.028077185,-0.0015745439,0.02493682,-0.004887919,0.004559344,-0.0032305045,-0.014096747,-0.03372984,0.01211948,-0.004274385,-0.010054982,-0.010142215,-0.02991488,0.03535818,0.014538724,-0.031287335,-0.026611682,-0.015062119,0.021994183,-0.018784031,-0.010770287,-0.026332539,0.021994183,-0.050385404,0.032962196,0.009636266,-0.006379592,-0.016434574,-0.058480565,-0.019388843,-0.046523917,-0.025564892,-0.0045535285,-0.02707692,-0.008636002,0.034590535,0.0018420564,-0.079137184,-0.018923603,-0.035683844,-0.011002907,0.0046814694,0.002869944,0.0032159658,0.02029606,0.011758921,-0.032380648,0.04238329,0.0020179749,0.027053658,-0.022133755,-0.008205656,-0.014480569,0.013026698,0.012166005,0.05675918,0.0050565684,0.005321173,0.030333595,-0.035962988,0.055735655,0.039824475,0.015469203,0.020959025,-0.014631772,0.007228654,0.019388843,0.0019336503,0.023308484,-0.0027754426,0.011933385,0.0019743587,0.020912502,0.0007836372,-0.019039914,-0.015131905,-0.01626011,0.028891353,-0.029891618,-0.033520482,-0.0038789317,0.044220984,-0.021761563,-0.022994447,0.02826328,-0.017516255,-0.014340998,-0.020633359,-0.021424264,-0.004890827,-0.018702615,-0.0018333332,0.0332646,-0.038452018,0.024076128,-0.016690455,0.014178164,0.016771872,0.03693999,0.018004756,-0.022622256,0.0018362409,-0.025215963,-0.044593174,-0.011468146,0.016318263,-0.0024308746,-0.0027056567,0.011677504,0.019644724,-0.016353156,-0.0067575993,0.030356856,0.027821302,0.031077977,0.01128205,-0.008426645,0.002144462,-0.042011097,0.010450435,-0.015748346,0.018249007,-0.017167326,0.005661379,0.009490879,0.0019641817,-0.0039138244,0.043639436,-0.043243982,0.0156087745,0.004003965,-0.015655298,-0.0022971185,-0.0017577318,0.004443034,0.015934441,-0.029123973,0.043988366,-0.01686492,0.0024570443,-0.019516783,0.0036317734,0.016155431,0.029310068,0.036963254,0.042546123,-0.026425585,-0.017027754,-0.02623949,0.001539651,0.05531694,-0.030333595,-0.008502246,0.02482051,-0.013329103,-0.040336236,-0.0077113393,-0.011979909,0.028751781,0.0036201423,-0.011741474,-0.0217383,-0.0059085377,-0.006507533,-0.028961139,0.010130583,0.021342847,0.0039865184,-0.021784825,0.020365845,-0.03252022,-0.013491936,-0.0043906947,0.0049431664,0.060481094,0.021703407,-0.00997938,-0.011718212,0.032985456,0.021936027,0.036149085,-0.030915143,0.010339941,0.024401795,0.010485328,-0.016248478,-0.017120803,0.044011626,0.020319322,0.0027100183,0.015829762,0.012375362,0.029612474,-0.00096246356,0.0023014802,0.011159925,-0.023820246,0.048059206,0.041150406,0.017027754,-0.05294422,0.026030133,-0.013282578,-0.023843508,-0.008659264,-0.031868882,0.004661115,0.0049722437,0.007443827,0.017969863,0.015376155,-0.0014502378,0.022250064,0.01851652,-0.017306898,0.023575995,0.001846418,0.02458789,0.016492728,-0.025239225,-0.010235262,0.048617493,-0.007455458,0.01057256,0.004201691,-0.020272797,-0.009560665,0.03370658,0.002349458,0.06583134,-0.025611417,-0.02765847,-0.06755273,0.006745968,-0.004841395,-0.014771344,0.044895582,0.033287864,0.04394184,0.031892147,0.016353156,0.00006088091,-0.0003921821,-0.020028546,0.015352893,0.02910071,0.011886861,-0.004640761,0.00041362672,-0.041871525,0.0145968795,0.023459686,0.023529472,-0.018016387,-0.034148555,-0.04675654,-0.018621199,-0.017876815,-0.021424264,0.008537139,0.0037422676,0.020133225,-0.00070222036,0.0033671686,-0.010049166,-0.031287335,0.014480569,-0.0018595029,0.004399418,-0.009246629,-0.0041987835,0.010904043,0.010188738,0.0046785614,-0.0019627279,0.022645516,0.02017975,0.020993918,-0.004777425,0.0035648951,0.017830292,0.025332274,0.031008191,0.009380385,0.009205921,-0.003451493,0.030729048,-0.0065831346,0.00400978,0.0013775441,0.015445941,-0.0031432721,0.01627174,0.010956382,-0.0006622389,0.02600687,-0.0038498542,-0.024355272,-0.0049373507,0.0033497221,-0.022517577,0.0008759581,0.008891884,-0.04631456,0.040150143,0.025029868,0.027844565,-0.009031456,0.0067634145,0.019749403,0.030194024,-0.005745704,-0.00035292754,0.012642874,-0.016306633,-0.005664287,0.02019138,-0.03940576,-0.012875495,-0.033450697,-0.016167061,0.008042823,-0.01744647,-0.033055242,-0.0025893468,0.009485064,-0.0044546654,-0.009746761,-0.008409198,-0.0050333063,-0.027495636,0.03335765,-0.028309803,-0.0033090138,0.011607718,0.01709754,0.0026823946,0.006908802,0.028077185,-0.021214906,0.0111482935,-0.0049431664,-0.0017620934,0.024145914,-0.009485064,0.0019103884,0.03026381,-0.027867828,0.01032831,-0.0065598725,0.038149614,-0.019028282,0.029519426,0.008990747,-0.044895582,0.0012685037,-0.0150853805,-0.012666137,0.0013710017,0.004402326,-0.009107057,0.009607189,0.00012803164,0.027611945,-0.014910916,0.055596083,-0.0078509115,0.020458894,-0.060015853,0.021819718,0.00986307,0.018853817,0.03524187,-0.024425058,0.013049959,-0.01032831,0.011729843,-0.03372984,-0.0030909327,-0.023657413,-0.0014444223,-0.0040853815,0.000678595,0.0018536873,-0.008618556,-0.007100713,0.024029603,0.046616968,0.026216228,0.02682104,-0.026914086,0.022971185,0.009444355,0.0010249801,0.028193494,-0.011543747,0.028100446,-0.027123444,0.014236319,0.02826328,-0.010450435,-0.01115411,-0.028193494,0.02505313,-0.008984932,-0.004707639,0.000061062645,0.0115611935,-0.0009072164,0.0133988885,0.021842979,-0.035125557,-0.022424528,0.010752841,-0.007193761,0.039940786,0.013503567,0.018702615,-0.0031432721,-0.019667987,0.02577425,-0.043034624,-0.007589214,-0.015980966,-0.0017955324,0.036009513,0.015318,0.009333861,-0.040871263,-0.0067634145,-0.015469203,0.0029382762,-0.0052979114,0.009892148,-0.044918843,-0.005893999,0.008176578,-0.0014109832,0.0062167584,0.026402324,-0.0016283372,0.0027768963,-0.022540838,0.019493522,0.0268443,-0.020365845,-0.013224424,-0.06210943,0.0012503304,0.011689135,-0.010054982,-0.013689663,0.04142955,0.013782711,0.026983872,-0.032706313,0.04012688,-0.0005713719,-0.007205392,0.03168279,-0.008909331,-0.035427965,-0.022063969,0.0046029603,-0.05164155,0.006461009,-0.015527357,-0.007420565,0.015469203,-0.030938406,0.032357384,-0.03561406,0.03954533,0.022261694,-0.014527094,-0.0011274781,-0.010310863,0.0040214113,0.016923076,0.009973565,-0.0036404966,-0.0053182654,0.009868886,0.021086967,0.04140629,-0.032613266,0.0011376552,-0.004902458,-0.024029603,0.03086862,0.016167061,-0.00057864125,-0.00605974,-0.010078244,-0.0050071366,-0.0026707638,0.04140629,-0.0242157,-0.028821567,-0.0032741209,0.023727199,0.012282315,-0.011130847,0.013992068,0.012735923,-0.04617499,-0.017725613,0.020749668,0.015015595,0.027402587,-0.0354047,-0.0069611412,0.028588947,0.032938935,0.019819189,-0.0063098064,0.0034253234,0.005585778,-0.02257573,-0.009839809,-0.012549827,0.011369282,0.028100446,0.009205921,-0.027030397,-0.0187724,-0.034823153,0.029310068,0.011572825,0.018609567,0.016178692,0.035195343,-0.012061326,0.031240812,0.03300872,0.01495744,0.013840865,-0.051362406,-0.00926989,-0.008583663,0.008944224,0.018109435,-0.019493522,0.009118688,-0.008118424,0.006391223,0.004821041,-0.03370658,-0.024867034,-0.009647897,0.012096219,-0.006385408,-0.020586833,-0.03168279,0.0029208297,0.040661905,-0.0034253234,-0.035474487,0.0057718735,-0.06662225,-0.019854082,0.050618023,-0.014213057,0.014910916,0.011090139,-0.033683315,-0.029054187,-0.029310068,0.0028670365,0.011159925,-0.014364259,0.0022883953,-0.016236847,-0.03217129,-0.007158868,0.0071763145,-0.0032508587,0.006513349,0.018795663,0.00055029074,0.031077977,0.020098332,-0.017841922,0.02255247,0.022901399,-0.01852815,-0.004969336,-0.009647897,-0.01199154,-0.03847528,0.010822627,0.02304097,0.00041071896,-0.007135606,0.0446397,-0.0062400205,0.007693893,-0.025099654,-0.0179466,0.027100183,-0.011444883,-0.010473697,0.048152257,0.025448583,-0.003556172,-0.00047505283,0.028891353,0.0076299226,-0.0019409197,-0.008647634,-0.05150198,0.049827117,0.031008191,-0.01780703,-0.02600687,-0.02542532,-0.030240547,0.012968542,0.03133386,0.013666401,0.015853025,0.0012248876,-0.0103980955,0.006839016,0.016434574,-0.033148292,0.0024773986,0.000026192422,0.0020237905,0.0026387784,0.0015876287,-0.0080370065,0.0020775837,0.012061326,0.02292466,-0.012189266,-0.004166798,-0.011171556,-0.0059899543,0.05545651,-0.024494844,-0.005018768,-0.017853554,0.020249536,-0.033078507,0.00029713518,-0.029845094,-0.0027405496,0.026634943,-0.004364525,-0.011287865,0.042499598,0.01181126,-0.004230769,0.029868355,0.006804123,0.019156223,0.023168912,0.010514406,-0.026099918,0.040289715,-0.0019481891,-0.0010475151,0.03182236,-0.024285486,-0.015329631,-0.029775308,-0.0067983074,0.045174725,-0.009758391,0.03552101,0.01342215,0.0021052072,-0.023575995,-0.0036550353,0.0179466,-0.018132698,-0.0055305306,-0.020714775,-0.014585248,-0.037684374,0.010002643,0.00884536,-0.0034631242,-0.00006088091,0.025122916,-0.00789162,-0.018074542,0.0116367955,0.0036666663,0.044593174,0.0017141156,0.022866506,0.002016521,-0.0048704725,-0.024308747,0.019842451,-0.010188738,-0.009031456,-0.044197723,-0.008182394,0.019667987,0.0074147494,0.016225217,-0.052292883,-0.0065366104,0.0036724817,0.008118424,-0.0045418977,0.01935395,-0.024122652,0.0062051276,-0.0015018502,-0.013899021,-0.0024890297,0.04764049,0.049315352,0.0018435103,-0.003774253,0.037614588,0.0010337033,-0.006065556,0.0034107848,-0.0011500131,0.019319057,0.019086437,-0.011689135,0.0038992858,-0.017853554,0.010642346,-0.016213585,-0.0022040706,0.013352364,-0.03966164,-0.009118688,0.0100259045,-0.046244774,-0.011910123,0.055875227,-0.002026698,-0.013096483,-0.011846153,0.0115611935,0.010281786,-0.008287073,-0.017039385,-0.011508854,0.0021488236,0.032683052,0.003387523,0.0199355,-0.046849586,0.01413164,0.0023887125,0.0016283372,0.034450963,-0.0011318397,-0.005018768,0.00067168905,0.0046756538,-0.021749932,-0.004274385,-0.01912133,-0.02409939,-0.039568592,-0.035451226,0.010171291,0.00023298306,0.0027056567,0.028402852,0.008473169,-0.0174581,0.008182394,0.0034398623,-0.010671424,-0.011648426]},{"id":"class-Message","type":"class","source":"main","text":"Class: Message\nDescription: Represents a message in a channel.\nProperties: attachments: Collection, author: User, call: APIMessageCall | null, channel: Channel | null, channelId: string, client: Client, content: string, createdAt: Date, editedAt: Date | null, embeds: APIEmbed[], flags: number, guild: Guild | null, guildId: string | null, id: string, mentionEveryone: boolean, mentionRoles: string[], mentions: User[], messageReference: APIMessageReference | null, messageSnapshots: APIMessageSnapshot[], nonce: string | null, pinned: boolean, reactions: APIMessageReaction[], referencedMessage: Message | null, stickers: APIMessageSticker[], tts: boolean, type: MessageType, webhookId: string | null\nMethods: createReactionCollector(options: ReactionCollectorOptions) -> ReactionCollector — Create a reaction collector for this message.\nCollects reactions matching the filter until time expires or max is reached.; delete() -> Promise — Delete this message.; deleteAttachment(attachmentId: string) -> Promise — Delete a specific attachment from this message.\nDELETE /channels/{id}/messages/{id}/attachments/{attachmentId}.; edit(options: MessageEditOptions) -> Promise — Edit this message. Only the author (or admins) can edit.; fetch() -> Promise — Re-fetch this message from the API to get the latest content, embeds, reactions, etc.\nUse when you have a stale Message (e.g. from an old event or cache) and need fresh data.; fetchReactionUsers(emoji: string | { name: string; id?: string; animated?: boolean; }, options: { limit?: number; after?: string; }) -> Promise — Fetch users who reacted with the given emoji.; formatEmoji(emoji: string | { name: string; id: string; }) -> string — Format emoji for reaction API: unicode string or \"name:id\" for custom.\nFor string resolution (e.g. :name:), use client.resolveEmoji; Message methods resolve automatically when guildId is available.; pin() -> Promise — Pin this message to the channel. Requires Manage Messages permission.; react(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise — Add a reaction to this message (as the bot).; removeAllReactions() -> Promise — Remove all reactions from this message.\nRequires moderator permissions.; removeReaction(emoji: string | { name: string; id?: string; animated?: boolean; }, userId: string) -> Promise — Remove the bot's reaction, or a specific user's reaction if userId is provided.; removeReactionEmoji(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise — Remove all reactions of a specific emoji from this message.; reply(options: MessageSendOptions) -> Promise — Reply to this message (shows as a reply in the client).; resolveChannel() -> Promise — Resolve the channel (from cache or API). Use when you need the channel and it may not be cached.; resolveEmojiForReaction(emoji: string | { name: string; id?: string; animated?: boolean; }) -> Promise; resolveGuild() -> Promise — Resolve the guild (from cache or API). Returns null for DMs.; send(options: MessageSendOptions) -> Promise — Send a message to this channel without replying. Use when you want a standalone message.; sendTo(channelId: string, options: MessageSendOptions) -> Promise — Send a message to a specific channel. Use for logging, forwarding, or sending to another channel in the guild.; unpin() -> Promise — Unpin this message from the channel. Requires Manage Messages permission.","meta":{"url":"/docs/classes/Message"},"embedding":[0.016005406,0.022233646,-0.014548232,0.0150300395,0.0014020888,0.009307108,-0.016886761,-0.035042673,-0.012867782,0.03266889,0.01478326,-0.045054864,0.007491517,0.042305037,0.041247413,0.007421009,0.001681919,-0.0008872306,0.021105513,0.03259838,0.0028467765,0.01848495,0.016769247,0.030177593,-0.0022415794,-0.010159085,0.010682022,0.06665394,-0.033397477,-0.03316245,0.034220073,-0.022057377,0.034290582,-0.009424622,0.0040248544,0.038145043,-0.026017597,0.006375134,-0.0243489,0.0048973956,-0.010294226,-0.0019610147,-0.0019007889,0.012656257,-0.04131792,-0.0066042864,-0.02040043,0.002561805,0.009271854,0.0243489,-0.043127634,0.035912275,0.030530134,0.10435242,-0.006198863,-0.0562657,-0.030530134,0.019342802,-0.025383022,0.007996827,-0.005006096,-0.01848495,-0.019695345,-0.043033622,-0.0260411,0.009395244,-0.034455102,0.05316333,0.010652644,0.04105939,0.05400943,-0.007685415,-0.008096714,-0.021093762,-0.014606989,-0.014994785,0.013725635,0.021892857,-0.013161567,-0.056970783,-0.010482248,0.03386753,-0.040354304,-0.0028232737,-0.041364927,0.0067981845,-0.014771509,-0.016099418,0.0040219165,0.007908692,-0.010153209,0.012656257,-0.082964875,-0.00852564,0.047170117,-0.042187523,-0.028320871,0.005631858,-0.028015336,0.037345946,0.046841078,-0.06618388,-0.06594885,0.016228681,0.028438386,-0.008202476,-0.04613599,0.022409918,-0.03208132,0.0042657577,-0.044232268,-0.00864903,-0.0028981888,0.0136668775,-0.0071507264,-0.026769686,0.015993655,-0.0031552506,0.003149375,-0.019977378,-0.04063634,-0.018661221,0.06388061,-0.008678408,0.037486963,-0.037157923,0.03570075,-0.009736034,-0.017556591,0.025265507,0.040847864,0.0352542,0.019906871,-0.028532397,-0.012186201,0.009277729,0.014336707,-0.011087446,-0.029731039,0.0019007889,0.03485465,-0.028602906,-0.007879313,0.017356817,-0.021540314,0.0073269974,-0.051706158,0.005893327,-0.0068216873,-0.01142236,-0.005003158,0.0218341,-0.034713633,0.015147554,0.013220324,-0.0056876773,0.019859865,0.029543018,0.0035841768,-0.030201096,0.007844059,-0.03476064,-0.026276128,-0.031634767,-0.0072271107,-0.02225715,0.0021005627,-0.009548012,-0.03198731,0.0226802,0.0545735,-0.0060989764,-0.035066176,-0.0034108437,-0.041881986,-0.019331051,-0.01612292,-0.018966759,-0.0148655195,-0.009107335,0.041270915,0.021728337,-0.06308151,-0.08790047,-0.019624837,0.019378057,-0.013326087,0.01754484,0.021822348,0.021951614,-0.02930799,0.024372403,0.010100327,0.00907208,0.018590713,-0.041012384,0.048838817,0.0019992068,-0.0084903855,-0.056500725,0.02653466,0.020741219,0.06496173,-0.012691511,0.010969931,-0.029166972,-0.0028629347,-0.010276599,-0.008748917,-0.0335855,0.047828194,-0.03668787,0.018790487,-0.010399988,-0.057910897,-0.0015893767,-0.06947427,-0.0043685827,-0.070790425,0.019495571,-0.07041439,0.023632064,0.095468365,-0.018167663,-0.019354554,0.021317039,0.026652174,-0.026652174,-0.00075576187,0.019131279,-0.023232516,0.0034989791,-0.02907296,-0.03990775,0.017204048,-0.050013956,0.02292698,0.04467882,0.037439957,-0.04141193,0.026981212,-0.009512758,0.0045507294,0.04477283,0.025053984,0.015558853,0.005590728,-0.030953186,0.048744805,0.031893298,0.103412315,-0.0068921954,-0.0040571704,-0.0022151386,0.022738958,-0.031728778,-0.019190034,0.020447435,0.025524039,0.013843148,0.028908443,0.016745744,-0.043315656,-0.015500096,-0.03652335,0.018966759,0.05424446,0.025053984,0.0037898263,0.008355245,0.054714516,0.00048988644,0.052270222,0.0048210113,-0.009924057,0.027991833,-0.012338969,0.013854899,0.017556591,0.021904608,-0.0030406746,-0.012738517,0.033891033,0.0019874554,-0.024748446,0.033397477,0.03668787,-0.036546852,0.0026044038,0.02385534,-0.0097066555,-0.017368568,-0.020294666,-0.05734683,0.034807645,0.009900554,0.057628863,0.012926539,0.036734875,0.041364927,-0.006104852,-0.02275071,0.034079056,-0.05903903,0.028626408,0.011016937,0.016369699,-0.030530134,0.052881297,-0.0638336,0.030248102,-0.0064456426,-0.06359857,-0.04249306,-0.045242887,0.015406084,0.008437505,-0.011804281,0.02907296,0.038333066,0.017474331,-0.037439957,-0.0067100488,-0.0020256473,-0.048744805,-0.036217812,0.025547542,-0.038544588,0.042916108,0.05006096,0.038497582,-0.059603095,0.0019477945,0.03365601,0.044302776,-0.00869016,0.002599997,0.013702132,0.021211276,0.03492516,0.039155662,-0.031540755,-0.0061694845,0.004826887,-0.0004597735,0.002388472,-0.029213978,0.015265067,-0.011486992,0.0031229344,-0.023044493,0.018872747,-0.021058507,-0.031564258,0.048885822,0.0086137755,0.014677498,-0.0072858674,-0.024842458,0.018508453,-0.019742351,-0.042610575,-0.008590273,0.0019272295,0.033538494,0.016369699,-0.05466751,-0.011892416,0.027709799,-0.049261864,0.013079307,-0.034173068,-0.004926774,-0.0032316349,-0.010764281,0.004474345,-0.01604066,-0.013819645,0.0005280785,0.023526302,0.016733993,0.022656698,0.012150947,0.0036517472,0.015770378,-0.025806073,-0.018038398,-0.0042011254,0.0025294886,0.0722476,0.052881297,-0.014042922,-0.05039,0.0041364925,0.042187523,0.032880414,-0.004110052,0.031023694,0.021093762,0.004189374,0.03586527,0.012997047,-0.006439767,0.042281535,-0.018708227,0.039343685,0.020282915,-0.010188463,0.038615096,0.002968697,0.054526493,0.031305727,0.021951614,0.0453369,0.02302099,-0.05734683,0.011910043,0.004110052,0.025594547,0.0022327658,-0.02930799,-0.091143854,-0.012703262,-0.023067996,-0.040048767,-0.008596148,0.058568973,-0.04510187,0.011334225,-0.044584807,-0.06848715,-0.02418438,0.083622955,-0.0031699399,0.032950923,-0.05645372,0.018872747,0.013290833,-0.048885822,0.0285559,-0.0062047387,0.005787564,0.0050560394,0.027263246,-0.042211026,0.027263246,0.0017759302,-0.024301894,0.013478855,-0.006592535,-0.05847496,-0.031117706,0.007074342,0.0125975,-0.07102545,-0.054996546,0.018191166,0.0369699,0.02283297,-0.03158776,0.0062693716,0.032057818,0.024818955,0.06538478,-0.0021064384,-0.0022768336,-0.060966257,-0.019695345,-0.01334959,0.028814431,0.008425754,-0.0038397696,0.035818264,0.05029599,-0.0065161507,-0.050437003,0.009512758,-0.02669918,0.026229123,0.004718187,0.033397477,-0.0034872277,-0.006880444,-0.030600643,-0.04747565,0.019342802,-0.009077956,-0.039155662,0.025571045,0.017074782,-0.023655567,0.011857161,-0.0017142354,-0.010282475,0.004668243,-0.01814416,-0.036170807,-0.07248263,0.023091499,-0.029707538,0.017168794,-0.004759317,-0.013055804,0.023244267,0.024912966,0.015323824,-0.00034023973,-0.0041981875,0.0038838375,0.058239933,0.005258751,0.024419408,-0.008337618,-0.009841797,0.040025264,-0.0008035019,-0.034502108,-0.004718187,-0.023538053,-0.009736034,0.04575995,-0.0072271107,0.020705964,0.018085403,-0.016475461,0.012021681,-0.020717716,-0.053022314,-0.014818515,0.026558163,-0.006880444,-0.0122449575,0.036993403,0.014548232,-0.000047831865,0.00047629888,-0.06759405,-0.012691511,0.0063633826,-0.03595928,-0.0012177387,-0.0031405615,0.008713663,-0.016922016,0.0130087985,0.018778736,-0.0344316,0.07036738,0.0007054512,0.02418438,-0.002738076,-0.019542577,0.042516563,-0.04301012,0.019154781,0.009818294,-0.028508894,-0.03015409,0.033961542,-0.01427795,0.0049914066,-0.0021225964,0.0047211247,0.00970078,-0.050719038,0.0078088045,0.013514109,0.011545749,-0.04660605,0.023126753,-0.008584397,-0.01200993,-0.016534219,-0.041952495,0.0026132173,0.013948911,-0.03661736,-0.009571515,-0.019977378,-0.03299793,-0.0030230475,-0.03990775,0.024912966,-0.023984605,-0.014324956,0.014630492,-0.0243489,-0.009201346,-0.02032992,0.03299793,0.019754102,-0.0030935558,0.01629919,0.013196821,-0.026135111,-0.003951408,-0.016005406,0.0076795393,-0.03335047,-0.0044155885,0.04293961,0.023667319,-0.053962424,0.00594327,0.001527682,0.023115002,0.017909132,-0.046418026,-0.05029599,0.031775784,-0.004068922,0.025970591,-0.011398857,-0.034713633,-0.009565639,0.0067335516,0.004909147,-0.01587614,0.027545279,0.0054908413,-0.02796833,0.009971062,0.0009797729,0.0026558163,0.01705128,0.02283297,0.0032375106,-0.026581666,0.022022123,0.002795364,0.027827313,0.007238862,0.013831397,-0.008396375,0.010405864,-0.028532397,0.0068393145,0.00030773977,-0.0027821437,0.010640892,0.036311824,0.0019698283,0.021716585,-0.024795452,0.0072094835,0.020459186,-0.0017318624,-0.021599071,-0.033726517,-0.018708227,-0.027709799,-0.00005008116,0.010611514,-0.036499847,0.0055260956,-0.029966068,-0.009671401,0.0537744,-0.021540314,0.0050149094,-0.025853079,0.02510099,0.012668008,0.025242005,0.008678408,0.0022136697,-0.03436109,-0.0037868884,0.036076795,0.011369479,0.00613423,-0.00017324134,0.019072521,0.002542709,0.026393643,-0.03236335,-0.0017759302,-0.014054674,-0.00048180736,0.0038662103,0.021305287,-0.005749372,-0.053633384,-0.003872086,0.028038839,-0.01612292,0.014336707,0.011204959,0.023714323,-0.011857161,-0.0098300455,-0.032551374,-0.013114561,-0.02418438,0.015840886,0.018097155,0.028038839,0.03031861,0.026628671,-0.04613599,-0.00898982,-0.016005406,-0.039249673,0.0029995446,0.04301012,-0.0123272175,-0.021986868,-0.008126092,0.029096464,-0.0061929873,-0.06947427,-0.008707787,-0.020940993,0.000938643,-0.026934206,-0.005655361,0.024630932,0.0077206693,0.03382053,-0.019683594,0.020705964,0.02377308,-0.03997826,-0.0038045156,-0.012609251,-0.00007551192,0.0056671123,0.06500874,-0.022386415,0.028861437,-0.013878402,0.026863698,0.010088576,-0.012914788,-0.019178284,0.009277729,-0.005590728,0.017991392,-0.003974911,-0.018238172,-0.0035900525,0.0054291463,0.037745494,-0.04016628,-0.025665056,-0.04695859,-0.016651733,-0.0037457584,-0.008983945,0.022186643,-0.014630492,0.0078910645,-0.05057802,0.039108656,-0.0025706186,-0.022210144,-0.009771288,-0.035160188,-0.039367188,-0.010964056,0.005825756,0.04764017,-0.0054644006,0.017074782,-0.00426282,-0.005910954,-0.021035004,0.008108465,0.002444291,-0.007844059,-0.0034960413,-0.004383272,-0.0011868913,0.0024163814,0.0075150197,-0.017497834,0.010217842,-0.034149565,-0.0135023575,-0.012280212,-0.014936028,-0.007750048,-0.01571162,-0.016780999,-0.0026249688,0.019601334,-0.03619431,-0.043221645,-0.016169926,-0.021093762,-0.021822348,-0.016028909,0.024489915,-0.024654435,-0.022456923,0.008995696,0.00029598837,-0.09020374,0.028931946,0.033115443,-0.029449007,-0.02024766,-0.01436021,-0.010417615,0.022374664,-0.011445863,-0.034807645,0.021129016,-0.015582356,0.02653466,-0.0076325336,0.025077486,0.0039984137,0.008631403,-0.027944827,-0.0009364396,-0.007180105,0.019848114,0.0041364925,-0.028320871,0.0344316,0.029660532,-0.0040718596,-0.0036223687,0.034149565,0.023009239,-0.033044934,0.00018315658,0.010576259,-0.017533088,0.01881399,-0.013972414,0.029895559,0.021176022,0.0067923088,0.0124094775,-0.022562686,0.051189095,-0.0063810097,-0.019742351,-0.019013764,0.01461874,-0.034619622,0.015594107,0.051048078,-0.005373327,0.008243606,-0.008184849,-0.019601334,-0.005220559,0.01326733,0.026299631,0.0048562656,-0.06778207,0.01117558,-0.018990261,-0.020059638,0.026863698,0.028814431,0.028931946,-0.019378057,0.026581666,-0.01881399,-0.05645372,-0.026581666,0.02302099,0.015688118,-0.007138975,0.008831177,0.019342802,0.0024075678,-0.001761241,0.027686296,0.018038398,0.012879534,0.000646327,-0.019272294,-0.012374223,-0.016639981,0.0041129896,-0.0036399958,-0.012738517,0.026417146,-0.021105513,0.015276819,0.014031171,0.0026146863,0.032222338,-0.026675677,0.0039455323,-0.00051816326,-0.00050898246,0.014853769,-0.005631858,-0.020929242,0.03570075,-0.044749327,0.027075224,0.010523378,-0.021563817,-0.04585396,-0.017533088,-0.020600203,-0.0024957033,0.021481557,0.02116427,0.02510099,-0.005399768,-0.0016745743,0.0023811273,0.021058507,-0.007003834,0.0048180735,0.04065984,0.038779616,-0.0044684694,-0.01427795,-0.021610823,-0.0062282416,0.00453604,-0.011704394,-0.001564405,0.015547101,-0.024912966,0.0074268845,-0.00045610117,-0.0319168,-0.027192738,-0.003263951,-0.008596148,0.020388678,-0.030013073,0.0061283545,0.052223217,0.014172187,-0.031352732,-0.0053527625,-0.021305287,0.020118395,0.0032257591,0.028156353,-0.034995668,-0.012444732,-0.014924277,0.030530134,-0.022633195,-0.060919255,0.04275159,-0.006610162,0.030765163,0.012033433,-0.020846982,0.03015409,-0.0034578491,-0.012903037,-0.014900774,-0.0034931034,0.01334959,0.030671151,0.017709358,-0.04192899,-0.03259838,-0.037510466,-0.006263496,-0.020341672,-0.020059638,0.0032933296,0.00873129,0.017615348,0.04159995,0.0068334388,0.009929933,0.04007227,0.048838817,0.025735565,-0.006880444,0.022691952,-0.008549143,0.020447435,0.01243298,0.014971282,0.018014895,-0.009271854,0.008043833,-0.014242696,-0.024654435,-0.02620562,0.010211966,0.035395212,0.025477033,0.03175228,-0.020588452,-0.010012192,-0.026981212,0.011816032,-0.014724503,0.0072329864,0.058098916,0.019871617,0.018661221,-0.028532397,0.021422802,0.0033873408,-0.031540755,0.023690822,-0.004615362,0.05617169,0.0067511788,0.023690822,0.0073211216,0.020259412,0.023056244,-0.007297619,-0.024008108,-0.028861437,0.011945297,0.007356376,-0.028109347,-0.00062429305,-0.011093321,0.037980523,-0.042540066,0.0064221397,0.024301894,-0.01427795,-0.026346637,-0.012221456,0.011639761,0.008954566,-0.01579388,-0.010505751,0.058098916,-0.033138946,0.010640892,0.018120658,0.028250363,0.01696902,0.01188654,0.009524509,-0.044420287,-0.03403205,-0.014054674,-0.009377616,0.029213978,0.028955448,0.009712531,-0.007661912,-0.035042673,0.034337588,-0.028273866,0.004456718,0.022527432,-0.022210144,-0.015641112,-0.001975704,-0.011857161,0.014089928,0.026487654,0.010558632,-0.016839756,-0.018966759,0.0063281283,-0.011957048,-0.0029187538,0.009342362,0.0036458715,-0.0019859865,-0.0009239538,0.034243576,0.0045242887,0.007949822,-0.009066205,-0.008102589,-0.028931946,-0.024031611,-0.00055708975,0.008760668,-0.032386854,-0.029354995,-0.04940288,-0.023984605,-0.014983034,0.011251965,0.012668008,-0.019307548,0.010253096,-0.009477504,0.02015365,0.030459628,-0.027075224,-0.02897895,0.033726517,-0.020517943,-0.022315906,-0.013901905,0.032645386,-0.000900451,-0.023831837,-0.015923146,-0.0063281283,0.0352542,0.021704834,0.0016363823,0.0045095994,-0.018637719,0.026769686,-0.027662793,-0.027874319,0.01142236,0.02679319,-0.023491047,0.0030230475,0.0065866592,-0.027897822,-0.03635883,0.00056957564,0.008267109,-0.008701911,-0.015993655,0.009265978,0.025712062,-0.013948911,-0.014959531,0.06608987,-0.0067805573,-0.0037780749,0.022962233,0.03175228,-0.031047197,-0.005202932,0.004671181,-0.01914303,0.011880664,-0.06905122,-0.0074092573,-0.00008694199,-0.0019037267,-0.0007844059,-0.013937159,-0.03979024,0.032903917,0.03563024,-0.017497834,0.019354554,-0.0018816928,-0.04272809,-0.017063031,0.04907384,-0.0041805604,-0.008002703,0.03929668,0.0010914112,0.014571735,-0.0044214637,0.04183498,-0.016440207,-0.006040219,-0.0012801681,-0.0013697725,0.023761328,0.010693774,0.010640892,-0.0116867665,-0.022539183,0.008043833,0.020529695,-0.016181676,0.009753661,0.043903228,0.0033726515,0.005182367,-0.016828004,-0.024207883,0.029613527,-0.009512758,0.005655361,0.032574877,-0.000059675072,0.020529695,-0.009019199,-0.0021754778,-0.03266889,0.007567901,-0.0040424815,-0.016440207,0.005652423,-0.043057125,-0.005784626,-0.007703042,-0.016064163,0.0023018054,-0.003601804,-0.0010649705,-0.035982784,-0.046653055,-0.014418967,-0.02679319,-0.007926319,0.02242167,0.011263716,-0.031846292,0.008202476,0.006140106,-0.021963365,0.05020198,-0.021634325,0.0011420891,-0.02747477,0.060590215,-0.005764061,0.0048738928,0.003187567,-0.0010201683,0.005341011,-0.028696917,-0.007961573,0.045148876,-0.02653466,-0.000061694845,0.029801548,0.007591404,-0.025571045,0.025006978,-0.015182808,-0.015229814,0.008002703,0.023291273,0.012291963,-0.03687589,0.010458745,0.0144307185,-0.021963365,0.0403308,0.034314085,-0.02653466,-0.010852417,0.0017891505,0.016158175,-0.0027307314,0.021481557,0.008719538,0.0025691497,0.031681772,-0.0156058585,0.000023961837,0.002934912,-0.023209013,-0.0058580725,0.024278391,0.01746258,-0.015676366,-0.04712311,0.00567005,0.009553888,0.01839094,-0.0016114106,-0.011616258,0.010846541,-0.018473199,0.01411343,0.009495131,-0.02083523,-0.036335327,0.011892416,-0.021763591,-0.03175228,-0.04568944,0.0017186421,0.04399724,0.026511157,0.021375796,-0.009336486,0.0013940097,-0.010541005,-0.0049032713,0.024748446,0.023479296,0.004970842,0.024207883,0.044490796,-0.000889434,0.000023284754,0.010811287,-0.027310252,0.008231855,-0.026746184,-0.0060519706,-0.03299793,0.02470144,0.021704834,0.004321577,0.0079733245,-0.010746654,-0.0018199979,-0.026769686,0.002403161,0.011046316,-0.04143543,-0.020846982,-0.012691511,-0.027404264,0.03873261,-0.020670712,0.01562936,-0.0025970591,-0.016898513,-0.011410609,-0.016028909,-0.022468675,-0.03821555,-0.020012632,0.01411343,-0.0015908456,0.0043979613,-0.012668008,0.0017920884,-0.0022783026,-0.012750268,0.011281343,-0.030718157,-0.009312984,0.018496701,-0.0066042864,-0.0018802239,-0.007468014,-0.038826622,-0.039672725,-0.017309811,-0.010811287,0.015417836,-0.0015203373,-0.014701,-0.006686546,0.0034314087,-0.0193193,-0.00676293,0.007291743,-0.0105938865,0.0065043992,-0.022280652,-0.010981683,0.004771068,-0.047076106,0.047381643,0.0044625937,0.021975117,0.007744172,-0.0035518603,0.016686987,-0.008343494,0.0034196572,-0.05081305,0.0027718614,-0.04063634,0.020717716,0.009653774,-0.0008174567,-0.011486992,0.015735123,0.035113182,-0.02486596,0.026652174,0.017239302,-0.005282254,0.011099196,0.0015027102,0.015817383,-0.020776473,0.00970078,0.020365175,-0.06942727,-0.009718407,0.0036164932,-0.0062282416,-0.016181676,0.022116134,-0.008725414,0.01629919,-0.016733993,-0.0018346872,0.0018949131,0.013702132,0.0035048549,-0.015805632,0.0122449575,0.0006419202,0.005811067,-0.0019272295,-0.004967904,-0.021375796,-0.01075253,-0.0032992053,0.0013022019,-0.010805411,-0.024066865,-0.019589582,-0.009342362,0.03492516,0.0078029293,0.0064632697,-0.032222338,0.028861437,-0.022891726,0.00978304,-0.016158175,0.025853079,0.00571118,0.004086549,-0.0011582472,0.027874319,-0.016698739,0.0025691497,0.0019992068,-0.009759537,-0.0051529887,-0.011475241,0.024031611,-0.019683594,0.031023694,-0.04073035,0.009683153,0.011105072,-0.03840357,0.009882927,-0.03805103,0.016922016,-0.025759067,-0.003263951,0.038662102,0.0026044038,0.013737385,-0.009753661,0.010687898,-0.0135846175,-0.020341672,0.0037986399,-0.015934898,0.03332697,-0.007838183,-0.014489475,-0.019824611,0.01796789,0.015323824,-0.005540785,-0.034149565,0.015594107,0.022868223,0.023820085,-0.032809906,0.028955448,-0.0019786418,-0.0058375075,-0.006939201,-0.004926774,0.0097477855,-0.028179856,0.019448565,-0.0008233324,-0.02007139,0.011075694,0.009982813,0.009295356,0.019436814,-0.020200655,0.01553535,0.01914303,-0.011028688,-0.0034284708,0.031728778,0.022327658,-0.018320432,0.029331492,-0.0014953655,-0.024207883,-0.002720449,0.008719538,0.012668008,0.021810597,-0.0006599145,-0.016252184,0.0034490356,0.02108201,0.011874788,-0.0066042864,-0.0018905064,-0.0032140077,-0.009794791,-0.027944827,-0.013984165,0.012209704,-0.024419408,0.011904167,0.02284472,0.037157923,-0.014736255,0.0057376204,-0.039343685,0.019953875,-0.00990643,0.026111608,-0.02907296,0.012938291,-0.009019199,0.00793807,0.0009929932,0.03847408,-0.0033197703,-0.019096024,-0.011692642,0.0073681273,0.036546852,-0.011704394,0.0043333285,0.018943256,-0.010905298,0.02091749,0.0352542,-0.0024927654,-0.0047886954,0.010570384,-0.036993403,-0.009218972,-0.024959972,-0.039320182,0.0035107306,-0.01129897,-0.020012632,0.02747477,0.013196821,-0.015617609,-0.010423491,0.02083523,-0.012021681,-0.015041791,0.007961573,0.015241564]},{"id":"class-MessageCollector","type":"class","source":"main","text":"Class: MessageCollector\nDescription: Collects messages in a channel. Use channel.createMessageCollector().\nProperties: channelId: string, client: Client, collected: Collection, options: Required\nMethods: emit(event: K, args: MessageCollectorEvents[K]) -> boolean; on(event: K, listener: (...args: MessageCollectorEvents[K]) => void) -> this; stop(reason: MessageCollectorEndReason) -> void","meta":{"url":"/docs/classes/MessageCollector"},"embedding":[0.013435822,-0.017026912,0.00040658464,0.006499761,-0.0002375531,0.04546476,-0.009050441,-0.0008733005,-0.033494465,0.0027814165,0.0054313834,-0.008709231,0.021043114,0.034881677,0.031122778,-0.003991032,-0.02414197,-0.015181025,0.054906756,0.03490405,-0.009878294,0.035329163,0.06452774,0.019566406,-0.041347876,-0.022329643,-0.024209091,0.055980727,-0.029757941,-0.03729811,0.05101361,-0.031480767,-0.016568236,0.015773946,-0.006868938,0.054190777,0.014487418,0.032174375,-0.028460225,0.05656246,-0.021468228,-0.013066645,0.014588104,0.003812037,-0.015270522,0.004701419,-0.013983995,0.0067962212,0.015002029,0.045062024,-0.028415477,-0.00394069,0.026826896,0.026558403,-0.012305915,-0.07092682,-0.022497451,0.019387411,0.013089019,-0.0070199654,0.004947537,-0.008653296,0.007624074,-0.024343338,0.007355581,0.015594951,-0.028370729,0.0587999,-0.03230862,0.037119117,0.016053626,-0.00031918468,-0.041325502,-0.031346522,-0.060947843,0.009688111,-0.00809953,-0.00019525153,0.0012711451,-0.02134517,-0.043630064,-0.011136853,-0.03801409,0.022553386,-0.030608168,-0.046851974,-0.002373084,0.011450095,0.015729196,-0.023425987,0.004007813,0.01755271,-0.031257026,0.017507961,0.058262914,-0.023761604,0.005604785,0.004449707,-0.0052495915,0.019488094,0.029825063,-0.036895372,-0.05150585,0.029109083,0.012540846,-0.033293094,-0.0404529,0.022363205,-0.058755152,-0.029825063,-0.023403613,-0.014632852,-0.021110239,0.02960132,-0.00063312537,-0.008250557,0.039759293,-0.015594951,0.015494266,-0.0005226518,-0.044883028,-0.006924874,0.011030575,0.022117086,-0.0024569877,-0.052848313,-0.0029310454,0.016803168,0.003742117,0.05002914,0.059292138,0.03107803,-0.00394908,0.0018374969,0.04810494,-0.013726689,-0.013939246,0.014554542,-0.027319131,-0.023649732,0.0071709924,-0.010549526,0.022933751,0.012552033,0.021468228,0.02002508,-0.066004455,0.006438231,0.042891707,-0.03718624,0.005436977,0.030048808,-0.010616649,0.03459081,-0.00221926,0.041191254,-0.0033198004,0.038953815,-0.0021101849,-0.025081692,0.017340153,0.007025559,-0.031413645,0.027923241,-0.06940536,-0.026401782,0.0005261478,0.001571801,-0.017541522,0.0207075,0.007232522,-0.01915248,-0.017810015,-0.02405247,-0.015236961,-0.04192961,-0.014442669,-0.033449717,-0.0033309874,-0.00036638067,0.04436842,-0.0021954873,0.013536506,-0.046807226,-0.012742216,0.03749948,-0.0000073142846,-0.0029422324,0.0020710295,-0.03291273,-0.051371604,0.025260689,-0.012842901,0.06296153,0.007512202,-0.0020528503,0.022228958,0.040430523,-0.00035589267,-0.07481997,-0.021792658,-0.016847916,0.022352017,-0.025551556,0.035127796,0.0154718915,0.03575428,0.02812461,0.0025087285,-0.066899434,0.06399076,-0.0033589555,0.003437266,-0.037208613,-0.04161637,0.01831344,-0.033807706,0.020081017,-0.0477022,-0.059963368,-0.01086836,0.01106973,0.059068393,-0.03881957,-0.010734114,0.021233298,0.01508034,-0.05624922,0.0057110633,-0.0051964526,-0.012552033,-0.025820049,-0.030384423,-0.059739623,0.026312284,-0.032621864,-0.04819444,0.07012134,0.021568913,-0.034120947,-0.004186808,-0.011450095,0.025954293,0.03358396,-0.024499958,0.00457836,-0.022564573,0.012428975,-0.0021996824,0.023202244,0.043451067,-0.0109578585,-0.02812461,0.021636037,0.012015048,0.03470268,0.015326458,-0.018347,-0.024231466,-0.012462536,0.055846483,-0.025394933,-0.03239812,-0.020383071,-0.011394159,-0.020439006,0.036089893,-0.027587624,0.028079862,0.066899434,0.006069054,-0.03801409,0.053832784,-0.008888227,-0.028616847,0.016064813,-0.011869615,0.006298391,0.019577593,-0.021322794,-0.0054481644,0.009928636,0.0011452892,0.01859312,0.013100206,0.037790347,0.0394908,0.011657058,0.013570068,0.019118918,0.019476907,-0.02852735,-0.013312763,-0.040587146,-0.012305915,0.040520024,0.06452774,0.03613464,0.025059318,-0.020696312,-0.007383549,0.009967791,0.0022821878,-0.062066562,-0.00068661413,-0.008351241,0.024074845,-0.040878013,0.035172544,-0.0303173,0.01990202,-0.014610478,-0.07034509,-0.008703638,0.009251811,0.011198383,-0.023515485,0.02234083,0.04304833,-0.023067998,0.0018221145,-0.03830496,0.00422876,0.018402938,-0.045755632,-0.014957281,-0.00831768,-0.033718206,0.023470737,0.0386182,0.019700652,-0.043518193,0.008138685,0.012563221,0.056293968,-0.011450095,0.009022473,-0.031861134,-0.00038595826,0.027431004,0.027453378,-0.010460028,-0.0042371503,0.022933751,0.02050613,0.011433314,0.010163567,0.03295748,-0.007691197,-0.008373616,-0.0063207657,0.0151698375,-0.008250557,-0.054996256,0.020204075,-0.027363881,-0.00089217885,0.007254896,0.022307267,0.017619833,-0.013256826,0.045957,-0.001592777,-0.013491758,0.0038903472,-0.027744245,-0.12681805,-0.04591225,0.040587146,-0.004279102,0.028639222,-0.060858343,0.018693805,-0.007859005,0.056070223,0.016266182,0.006298391,0.011947925,0.028572097,0.025864797,-0.025394933,0.005551646,-0.015348832,-0.008949757,0.014364359,0.033897202,-0.02796799,0.012876462,-0.0104712155,0.03928943,0.02226252,0.0014795066,-0.020539692,0.024477584,0.057144195,0.043831434,-0.03036205,0.015975315,0.02669265,0.06036611,-0.003851192,0.021602474,0.03593327,0.06385651,0.016366867,0.030451547,-0.024768451,0.020774622,0.023940599,-0.023202244,0.056383464,-0.013055458,0.022631697,0.03067529,-0.018581932,-0.011746556,-0.06305104,0.0065556965,-0.0048216814,-0.041347876,-0.024925072,-0.060052868,-0.01332395,0.009369276,0.0032862388,-0.016836729,0.034971174,-0.02218421,-0.034210443,-0.028393103,-0.0533853,-0.0069919974,0.031861134,0.03230862,0.056875702,-0.051908586,0.05262457,-0.041840114,-0.029780315,0.06340902,-0.05105836,0.05083462,0.010001353,0.054638263,-0.039446052,0.012093359,0.0065053543,0.029578945,-0.017228281,-0.021199737,-0.08027931,-0.044055175,-0.009699299,0.015527828,-0.04922366,-0.04213098,0.028214108,0.04703097,-0.0032722547,-0.040027786,-0.027363881,0.020170514,0.0010963451,0.02537256,-0.010253065,0.0041057006,-0.055309497,-0.011791305,0.023649732,0.02074106,0.033248346,-0.010918703,0.038953815,0.019723026,0.0027184885,-0.016769607,0.04204148,-0.018816862,-0.0049727084,-0.030183055,0.034881677,0.020192888,0.019980332,-0.021367544,-0.03286798,0.033539213,-0.0057502184,-0.019074168,0.010113225,-0.0032191155,-0.014263675,0.0017731705,-0.0022206584,-0.009302153,-0.008250557,-0.013279201,-0.025775298,-0.012820526,0.034277566,-0.028169358,0.004477675,-0.0025101271,0.009598614,-0.017664582,0.026245162,0.019208414,-0.05580173,0.004256728,-0.0049978797,0.009106377,0.021870967,0.008200214,-0.03962505,0.0013872123,0.026871644,-0.026737398,-0.045755632,-0.008977724,-0.028572097,0.016299743,0.042757463,0.008586173,-0.00529434,0.008647703,-0.007886973,0.020349508,-0.02868397,-0.009632176,0.0073388005,0.01803376,-0.00450844,-0.020729873,-0.005372651,0.0029226549,0.011075323,-0.017731706,-0.035978023,-0.01156756,0.001564809,-0.01663536,-0.027363881,0.011377378,-0.0062648295,-0.0023311318,-0.0005313918,0.014979655,-0.010666991,0.04436842,0.0014130827,0.030384423,-0.0086029535,-0.05038713,0.055712234,-0.04423417,0.021647224,-0.0056411433,-0.009458774,0.0024164342,0.019566406,-0.027050639,0.00039504786,0.012317102,-0.001890636,0.002279391,-0.03331547,-0.023873476,-0.012798152,-0.0017619833,-0.028258856,0.0036526194,0.010644617,-0.02246389,-0.017608646,-0.028594472,0.018772114,0.009274186,-0.026245162,-0.004357413,-0.013939246,-0.0018458873,0.008882633,-0.017239468,-0.00038036465,0.0062368615,-0.01051037,0.0025087285,0.013480571,0.006231268,-0.004002219,0.03027255,-0.0046426863,-0.0248132,0.0048300717,0.016691295,-0.030652916,-0.00036183588,0.024522332,0.02358261,0.01021391,-0.03470268,0.045778006,0.026066165,-0.06023186,0.0041252784,0.027498128,0.03881957,0.001753593,-0.03246524,-0.0101803485,0.015606138,0.035217293,0.020103391,-0.014274862,-0.018839238,0.0023716856,0.006936061,0.00047860222,0.004144856,0.009469961,0.047925945,-0.02074106,0.010342563,-0.036291264,-0.003353362,0.013234452,0.027900865,0.00044713824,-0.029444698,0.012697467,-0.010655804,0.030071182,-0.012082172,0.019320287,-0.02369448,0.028102236,-0.019297913,0.0028974838,0.031861134,0.00740033,0.017698143,0.032666612,-0.0022486264,-0.00726049,0.016612986,0.0117353685,0.010409686,-0.0010341164,0.032219123,-0.03235337,0.0007663229,-0.026334658,0.0030541045,-0.0016025658,-0.030183055,0.010739708,-0.013547694,-0.012395413,0.03557528,0.019443346,0.031726886,0.0020458584,0.009772016,-0.009967791,0.0432497,-0.007635261,0.013167329,-0.023448363,0.000040815783,0.0034652338,0.0035127795,0.04855243,0.030921409,-0.02939995,-0.025931919,0.027431004,-0.009805577,-0.034456562,-0.010527151,-0.000039919934,0.017485587,-0.03566478,0.028325979,-0.038551077,-0.023761604,-0.018693805,-0.04284696,-0.034478936,-0.04535289,0.016076,0.030764788,0.00893857,-0.01122635,0.0197454,0.0038567858,-0.01164587,0.014823034,0.019096542,-0.0077415393,0.003644229,-0.0063207657,-0.00023615471,-0.028482601,-0.02142348,0.035418663,0.030026434,0.020774622,-0.039871164,-0.015539015,0.014375546,0.034411814,-0.04546476,-0.0135924425,0.010890735,0.0022080727,-0.028460225,0.015024404,0.000491887,-0.010275439,0.036313638,0.0063319528,0.02772187,0.0035910897,-0.05177434,0.013872122,-0.00529434,0.0026136085,-0.0019269944,0.0238511,-0.027632372,-0.000007483622,0.015897006,0.007791882,0.030899035,-0.007154212,0.007920534,0.018414125,0.0005002774,-0.016087187,0.021680785,-0.0070814947,-0.0117241815,0.023761604,0.049760647,-0.0431602,0.013872122,-0.027923241,0.014442669,0.0038288177,-0.01001254,0.007954096,-0.03593327,0.0051209386,-0.034859303,0.068465635,0.016769607,-0.005397822,0.010102037,-0.039468426,-0.030227803,-0.03338259,0.007277271,0.050118636,-0.01009085,0.020069828,0.013995182,-0.028214108,-0.017854765,-0.0031967412,-0.014733537,-0.014409108,0.0053894315,0.00578378,0.016948601,-0.015807508,0.0038707696,0.009251811,-0.010845986,-0.052982558,-0.027878491,0.0058956523,0.02613329,0.006606039,-0.018883986,-0.03785747,0.0060578664,-0.029690817,-0.04635974,-0.026558403,-0.018089695,-0.016299743,-0.01691504,-0.04891042,0.019051794,-0.010627836,-0.030988531,-0.014442669,-0.01037053,-0.05105836,0.000059781578,0.013480571,-0.00058767735,-0.018223941,-0.0072716773,-0.019331474,0.008821104,0.0047517614,-0.026782146,-0.032979853,0.0048804143,0.020081017,-0.031413645,-0.0057669994,0.008228183,-0.007484234,0.007942909,0.018246315,0.014744724,0.009895074,0.013368699,-0.027073013,0.07311951,0.003630245,-0.001445945,-0.018168006,0.047657453,0.018201567,-0.012831713,0.0023367256,0.021278046,0.008625328,0.020192888,0.012596782,0.03235337,0.013547694,-0.0012543643,-0.019778961,-0.055712234,0.00889382,-0.007775101,-0.05799442,-0.023045624,0.021445854,-0.012026235,0.00007503287,0.026043791,-0.020729873,-0.0037337265,-0.0156397,-0.039983038,-0.03937893,-0.003378533,0.07916059,0.021949278,-0.024276216,0.016982162,0.017765267,-0.025708176,0.024276216,0.02812461,-0.003353362,0.0015004827,-0.033740584,-0.04738896,-0.035776652,0.0012298924,0.0025199158,0.01058868,0.003895941,0.03546341,0.021994026,0.012697467,0.0039854385,0.008216995,0.032577112,-0.015181025,0.011992673,-0.0019787352,-0.020796997,0.0059739626,0.0055572395,0.015572577,-0.035351537,0.016769607,-0.00606346,-0.021524165,-0.005302731,0.019991519,0.034523685,-0.03906569,0.0076967906,-0.031547893,0.045308143,0.02588717,-0.040788516,0.014409108,0.014767098,-0.026558403,0.016724858,0.020036267,0.013860935,-0.027945615,0.008630921,-0.0066451943,0.0026611541,0.010845986,0.049492154,-0.009626582,-0.0067906277,0.0049503343,-0.014129428,0.033606336,0.0051489067,0.021647224,0.018716179,0.028057488,-0.04152687,-0.01114804,-0.018414125,0.011903176,0.008513456,-0.010890735,0.007254896,0.042309973,-0.014711162,-0.014297236,-0.024186717,-0.0023073591,-0.03470268,-0.011120073,0.011802492,0.029198581,-0.013715502,-0.0051097516,-0.0017172345,0.008530237,0.024947446,0.01778764,-0.02441046,-0.013547694,0.004715403,0.014107054,-0.00879873,-0.042824585,0.021613661,0.017586272,-0.019219602,-0.03239812,0.02014814,0.0012026236,0.002894687,0.00995101,-0.03286798,0.040945135,-0.036045145,0.013760251,0.0023395224,0.015594951,0.023493111,0.057233695,0.0047209966,0.006550103,-0.005227217,-0.030787162,-0.03801409,-0.0151698375,-0.013368699,0.042712715,-0.009620989,-0.008731606,0.027274383,-0.0064326376,-0.002635983,0.014397921,0.04667298,0.06721267,-0.019566406,-0.00031236748,-0.03418807,0.007847818,0.01994677,0.0066451943,0.02628991,-0.012563221,0.0027772214,0.01099142,-0.051371604,-0.018671429,-0.016702482,0.013782625,0.020405445,0.0002548583,-0.0007579325,0.0015969722,-0.019096542,0.023157496,0.005115345,0.018369375,0.029109083,0.034411814,-0.00837921,-0.022956125,0.016959788,-0.007831037,-0.042667963,0.035776652,-0.021613661,0.04448029,-0.019174853,-0.017485587,-0.0073891426,-0.0011949324,0.02369448,0.0030009653,-0.016870292,0.021322794,0.021680785,0.00001390752,-0.018984672,-0.034053825,-0.021199737,0.02796799,-0.019778961,-0.008972131,0.025618678,-0.030473921,-0.025685802,-0.017586272,0.045129146,0.0061977063,0.029265704,-0.016892666,0.048373435,-0.046493985,-0.019711839,0.019532844,0.032152,0.021244485,-0.015281709,0.010314594,0.012272353,-0.044010427,-0.004337835,-0.020774622,0.0059348075,0.027833743,0.01515865,0.005134923,0.005025848,0.037588976,0.012194043,0.040699016,0.028930089,0.00009002197,-0.028236482,0.014453857,0.021524165,0.025820049,0.03143602,-0.01184724,0.0010718732,-0.049134165,-0.034053825,-0.025148816,-0.0074618594,0.03264424,-0.016769607,-0.022654071,-0.0110976985,0.026715023,-0.00275205,-0.008491081,-0.027341506,-0.03383008,-0.03239812,-0.032733735,-0.015539015,0.037678476,-0.019219602,-0.020383071,-0.0587999,-0.008110717,0.004270712,0.034971174,-0.030473921,0.0076688225,0.018604307,-0.06551222,0.012865275,0.0017284218,-0.038439203,0.014095866,0.032800857,-0.004955928,-0.002363295,-0.012719842,0.0014214731,-0.025797673,-0.022217771,-0.011891989,-0.03011593,0.018145632,-0.0076016993,-0.0020486552,-0.008832291,0.029511822,-0.007775101,-0.0074227042,-0.06519897,0.03470268,0.00816106,-0.023403613,-0.016736045,0.014733537,-0.013715502,-0.047567956,0.0073667686,0.0057502184,-0.0012816332,-0.022598136,0.0008306493,-0.018358188,-0.045621384,0.007886973,0.024074845,-0.022475077,0.02904196,0.0056411433,0.0030764788,-0.027386256,0.014453857,0.0019074169,-0.0016962586,0.028482601,-0.08233776,0.0019759384,0.010946671,0.03705199,0.009190281,-0.02050613,-0.041146506,0.014677601,0.050297633,-0.015818695,0.013737876,-0.012999522,-0.019320287,-0.0035491379,0.055667486,0.023828726,-0.047567956,0.00802122,0.030294927,0.01268628,0.007103869,0.025059318,0.018973485,-0.022866627,-0.014677601,-0.00036917746,0.04060952,0.000020735642,0.02389585,-0.0027338709,0.006208894,-0.013167329,0.006477386,-0.06023186,0.031928256,-0.0248132,0.011780117,-0.008714826,-0.057502184,-0.027990364,-0.00040169025,0.004813291,0.013066645,0.038215462,0.029914562,0.00522442,-0.0039295023,0.009788796,-0.059336886,0.037275735,-0.009565053,-0.010778863,0.0034316722,-0.009290966,-0.010241877,-0.008642109,0.0060970215,-0.026222786,-0.026916392,0.0059348075,-0.016020063,-0.014901345,-0.019969145,-0.041280754,-0.007204554,-0.022810692,0.016702482,-0.021602474,-0.022687633,-0.006829783,-0.0021129816,0.02995931,-0.0042483374,-0.0077695074,-0.025797673,0.022486264,0.01599769,0.010023727,0.049850143,0.017239468,0.026312284,-0.019286726,0.025663426,0.039356556,-0.018056134,0.021099051,0.0068633445,-0.0020108984,-0.036537383,0.009402838,0.0070814947,-0.036246516,-0.017989011,-0.0061641447,-0.0011844443,-0.011399752,-0.0010061484,0.0238511,-0.011813679,0.05405653,-0.0095538655,-0.023761604,-0.0238511,0.032487616,0.00117955,0.006466199,0.023000874,-0.02541731,-0.004030187,0.020573253,-0.018682618,-0.0006789229,0.007014372,-0.010202723,0.02445521,0.005062206,-0.00020906072,-0.0053614634,-0.016165499,-0.011388565,0.033606336,0.026782146,-0.019051794,-0.039199933,-0.0009683916,0.009005693,0.006371108,-0.018414125,-0.0035211698,-0.03183876,0.006628413,0.006024305,-0.030406797,-0.022508638,0.018850425,0.03072004,0.011164822,0.012294728,0.012719842,0.000070793976,0.028974837,-0.011533999,0.04396568,0.031771637,0.01994677,0.022497451,0.0026443733,-0.00083274685,0.0060019307,0.029735567,-0.040676642,-0.007803069,-0.0042371503,0.024768451,0.013558881,0.027811369,0.0012620555,-0.0029534197,0.002894687,-0.0034540466,0.020752247,-0.0477917,0.009358089,0.039155185,-0.05038713,-0.016467553,-0.0018696601,-0.011746556,0.04049765,0.004589547,0.02262051,-0.007842224,0.01113126,-0.019566406,0.025663426,0.0023059607,-0.036246516,-0.04783645,-0.00002715954,-0.0017591865,0.01990202,0.011903176,-0.007970877,-0.00012428276,-0.020550879,0.04224285,-0.0031212275,-0.026424157,0.03235337,-0.01058868,0.018995859,-0.01735134,-0.0025045334,0.004340632,-0.01994677,-0.011187196,-0.00045692702,-0.004743371,-0.032375745,-0.042757463,-0.002615007,-0.014979655,-0.0112711,-0.006734692,-0.0030652916,0.01874974,0.027319131,-0.033785332,-0.012227605,-0.020528505,0.039915916,0.005369854,-0.00036952706,0.007663229,-0.029578945,-0.009151126,-0.023470737,0.011914363,-0.018358188,0.013357512,-0.048373435,0.03051867,-0.039020937,-0.008373616,0.014084679,0.02358261,0.020685125,-0.017921887,-0.013995182,-0.0028723124,-0.0077974754,-0.008015626,-0.019644715,0.009727267,-0.005990743,-0.020550879,0.020271199,-0.061216336,-0.009688111,0.029422324,0.0019060185,-0.011522812,-0.0022066743,-0.03347209,0.015684448,0.032621864,0.01679198,0.016411616,-0.0066731623,-0.012462536,-0.022217771,0.01946572,0.0019088152,0.010801237,0.006578071,0.009945417,-0.00754017,-0.03454606,0.036761124,0.03358396,-0.025976669,0.016221434,0.005299934,-0.017776454,0.018179193,0.005772593,0.004200792,-0.0002541591,-0.009492336,0.02074106,0.0067962212,-0.0028275638,0.020953618,-0.020975992,0.026558403,0.02173672,0.025820049,-0.0051964526,-0.015292897,0.016389241,-0.03953555,0.013245639,-0.015527828,0.019812524,-0.012921211,0.00040658464,-0.028751092,0.011041762,0.010303407,0.010465622,-0.008138685,-0.024030097,-0.008071561,-0.02329174,0.03924468,0.0126639055,-0.01009085,0.008015626,-0.0037253362,0.021826219,0.015304084,-0.039155185,0.014442669,-0.014017556,0.015371207,-0.006969623,-0.017944261,-0.008742793,0.046493985,-0.006885719,-0.004351819,0.011142447,0.0012865275,0.022687633,0.015002029,-0.03454606,0.004813291,-0.0312794,-0.007914941,-0.014722349,-0.0032023347,-0.0058788713,-0.035284415,0.0030065589,-0.02541731,-0.041996732,0.007937315,0.024343338,0.013983995,-0.0013893099,-0.01120957,0.012182856,-0.010829206,-0.009632176,0.0021171768,-0.0045280172,0.029019585,-0.012943585,0.0065053543,0.008916195,-0.016747233,-0.016467553,0.012115733,0.014644039,-0.0051684845,0.006231268,-0.025215939,-0.0057949675,0.04895517,-0.012428975,-0.025708176,-0.018760927,-0.023470737,0.011416533,-0.016165499,-0.022956125,-0.025999043,-0.029578945,-0.008994506,-0.0035295603,0.054548766,0.030093556,0.019286726,-0.0238511,0.009039254,0.00853583,-0.035015922,-0.0002730375,0.035217293,0.033449717,0.021691972,0.010722927,0.019991519,0.0031743667,0.023604983,-0.01156756,0.02173672,0.022251332,-0.018201567,0.04025153,0.020964805,-0.010398499,0.012261166,0.034971174,-0.0064829797,0.015102714,-0.0027492533,0.015885819,-0.041661117,-0.005481726,-0.015013217,0.02014814,-0.0025338999,-0.021971652,0.0082785245,-0.009660143,0.0008089741,-0.015516641,0.016467553,0.000966294,-0.025283063,-0.00069115893,-0.017049287]},{"id":"class-MessageFlagsBitField","type":"class","source":"main","text":"Class: MessageFlagsBitField\nProperties: Flags: { readonly SuppressEmbeds: number; readonly SuppressNotifications: number; readonly VoiceMessage: number; readonly CompactAttachments: number; }","meta":{"url":"/docs/classes/MessageFlagsBitField"},"embedding":[-0.013432574,0.0014380866,-0.028267244,0.03169737,0.00049370655,0.009921077,0.0057930322,-0.026439512,0.007899305,-0.02761627,0.018828137,0.0010296637,0.024085995,0.037856575,0.02956919,0.0058869226,-0.0037243157,0.029644301,0.026790036,0.012712749,-0.009101101,0.051426854,0.013657911,0.020142602,-0.018352427,-0.008118383,-0.01095387,-0.014471627,0.034176074,0.013319906,0.03730575,-0.026764998,0.03753109,-0.008099604,-0.007943121,-0.0055082315,0.015372974,0.030345349,-0.008375016,0.009482922,0.0038432435,-0.0035490538,-0.03567832,-0.0048885555,0.0048697777,0.049824458,0.013507687,0.008713021,-0.02287168,0.039609194,-0.031897668,0.02626425,0.042488497,0.021932777,0.006503469,0.039709345,0.0072858883,0.008450128,0.025838614,-0.003558443,0.03277398,-0.025838614,-0.04499224,-0.00018015204,0.0037055376,0.0224836,-0.04526765,0.050825957,0.042087898,0.022408487,0.035503056,-0.0038307249,-0.006309429,0.04661967,0.01743856,0.016124096,0.009539256,-0.0034176074,0.008349978,-0.04681997,-0.010140154,0.027841607,-0.03324969,0.010302897,-0.002782283,0.018928288,-0.040936176,0.006096611,-0.050475433,-0.02781657,-0.04644441,-0.0071231453,-0.054831944,-0.031947743,-0.03645448,-0.03500231,-0.027290784,0.00012724093,-0.029243702,-0.029669339,0.09288882,0.008199754,-0.053229548,0.018915769,-0.00024039832,-0.01822724,0.008518981,-0.0032047892,-0.03209797,0.026439512,-0.06519743,0.0036085176,0.02724071,0.02520016,0.030620761,-0.020668387,-0.012068035,0.0067663617,0.018915769,-0.0020702814,-0.030069938,-0.020305345,0.018389983,0.026990335,0.030796023,0.0035052383,-0.00065214647,-0.03199782,-0.015372974,0.0009342086,0.008180976,0.016499657,0.06039025,-0.0011321607,-0.02781657,0.0043314733,0.0003501326,0.02946904,-0.08267355,-0.030570686,0.005505102,-0.009720777,0.024949785,0.014546739,0.028767992,0.024561705,-0.050876033,0.0061717234,0.02413607,0.044341266,0.00055708253,0.01569846,-0.023923252,0.0061310376,-0.010002448,-0.01725078,0.044441413,0.0036022584,-0.017288337,-0.021469586,-0.009201251,-0.029118516,-0.017150631,-0.011235541,0.0060496656,0.008493944,0.045818474,-0.026714923,-0.014772076,0.0075174845,0.025262754,-0.015748534,-0.007104367,-0.06339474,-0.03082106,0.02394829,0.026038913,0.0049980944,-0.055783365,-0.028642805,0.022859162,0.04591862,-0.0014490405,-0.075913444,-0.022471081,-0.012812898,0.00726711,0.009194992,0.022020409,-0.030170087,-0.0030561297,0.026314326,0.03703034,0.07045529,0.00031081605,0.0030545648,-0.004062321,-0.0053173215,-0.021657366,-0.08042018,-0.029418964,-0.0055426583,0.034751933,-0.01773901,-0.016912775,-0.04729568,0.011310653,0.02180759,-0.00038240742,0.022796568,0.04449149,-0.0024208052,-0.015873723,0.0063438555,-0.014772076,-0.0064784316,-0.02811702,-0.034251187,-0.04681997,-0.012212,-0.0031468903,-0.026714923,0.06284392,-0.010772348,0.0017009795,0.03935882,-0.023510134,0.006534766,-0.03480201,0.0011431145,-0.03139692,-0.015335417,0.0038119466,-0.0343263,-0.03314954,-0.006716287,-0.03450156,0.046068847,0.033600215,-0.038131986,0.0016149133,0.0006674036,0.019842153,0.014233772,-0.026139064,0.017826641,0.017501155,0.008281126,-0.01735093,-0.013094569,0.020142602,0.012343447,-0.0033331062,-0.012299631,-0.0033956997,0.020906243,-0.0047258125,0.046744857,0.0007683357,0.012268335,-0.0057273093,-0.08402557,-0.03224819,-0.06174227,-0.0008575315,0.001735406,0.08011974,0.0048635183,-0.030195124,-0.01871547,-0.00639706,-0.00018474874,0.03294924,0.035928693,-0.0032423455,-0.036654778,-0.014884744,-0.021194173,0.019792078,0.013920804,0.009739555,-0.002353517,-0.026589736,0.018915769,-0.012493671,-0.016562251,0.036429442,0.01598639,0.033274725,-0.009482922,0.00084736006,-0.020067489,0.0521279,-0.026389437,-0.023009386,0.022934273,0.009864742,-0.06464661,0.04867274,0.021469586,0.028617768,-0.010528234,0.0019106679,-0.04243842,0.003286161,0.05518247,0.05097618,-0.019416517,-0.013194718,-0.053279623,0.010509456,-0.008994692,-0.07280881,-0.048197027,-0.069954544,0.0013762756,0.025112528,0.026965298,0.036654778,-0.009176213,0.0045787175,0.033224653,0.010108857,-0.052077826,0.0021094023,0.018202202,0.025938764,0.048096877,0.011072798,0.0069040675,-0.02734086,0.008443869,0.008068307,0.033274725,0.008944618,-0.033675324,-0.034301262,0.016587289,-0.064796835,0.016925294,0.057535984,-0.009777111,-0.0071481825,-0.018339908,-0.011104095,-0.02926874,-0.07305918,0.021369435,0.015548236,-0.027015373,-0.02673996,0.008944618,-0.009194992,-0.052678727,-0.011949107,-0.041612186,0.021569734,-0.05573329,-0.018051978,0.05523254,-0.033500064,0.040861063,-0.029494077,-0.017889235,-0.02906844,-0.0006490168,-0.06114137,-0.009157435,0.005379915,-0.030670835,0.010490677,-0.0047258125,0.019616816,-0.0040247645,0.027741458,-0.04301428,0.013144644,-0.03440141,0.00011217936,-0.039734382,0.028943254,0.031346846,-0.02075602,0.001420091,0.0096519245,-0.006281262,-0.03662974,0.030495573,-0.040134978,0.024286294,0.057636134,0.024436519,0.015585792,0.010647162,-0.0035615726,0.058487404,-0.014146141,0.048848,0.0051921345,-0.012725267,-0.011811402,-0.006860252,0.016987888,0.07110626,0.02714056,-0.008124642,-0.027015373,0.0050325207,0.059839427,0.005498843,0.07516233,-0.0087067615,0.02839243,-0.006447135,0.030195124,0.0024004623,0.0012135323,-0.009520478,0.008030752,-0.01638699,-0.004760239,0.0003209875,-0.0063219476,0.014621851,0.02666485,0.011454619,-0.008644168,-0.057886507,0.024060957,-0.05147693,-0.05728561,-0.0035521835,0.024912229,0.037631236,0.04962416,-0.06985439,0.004991835,-0.02481208,-0.0014560822,-0.00006943971,-0.020192677,0.015635867,-0.0059870724,0.0137580605,0.015072525,0.009051026,-0.008080826,-0.013207237,0.049574085,-0.040861063,-0.07100611,-0.028717916,-0.08718029,0.0128567135,-0.07145679,0.008512721,0.032824054,0.012550005,0.029218666,-0.0070229955,-0.0061498154,0.014083547,0.026289288,0.042914134,-0.008155938,-0.018064497,-0.043314733,-0.019116068,0.042763907,0.040861063,0.0006204585,-0.0003245084,0.028142057,0.06740072,0.021970334,-0.0298446,0.052879024,-0.04817199,0.00070808944,-0.02084365,0.020806093,0.0043439916,-0.008750577,-0.03277398,-0.0416873,0.06549788,0.07416083,0.00784923,-0.0072608506,-0.02626425,-0.020029934,-0.024686893,-0.00012724093,-0.0132698305,-0.0008277996,-0.008988433,-0.024186146,-0.020480607,0.06920342,-0.063244514,-0.005339229,0.0065911,0.02510001,-0.038732883,0.07896801,0.060640622,-0.025125047,0.0061341673,-0.05202775,-0.0034551634,0.025375422,0.018077014,-0.04176241,-0.005505102,0.009808408,-0.018890731,0.00061380793,0.057936583,-0.022984348,-0.04061069,-0.01231215,-0.0034176074,0.013820654,-0.0009475097,0.0025037418,-0.024261257,-0.04469179,-0.0060527953,-0.012744045,-0.006415838,0.005736698,-0.025813576,0.012618858,-0.034351334,-0.014847188,0.000034744306,-0.016537214,0.004991835,0.015072525,0.0016305618,-0.01007756,0.0075300033,0.006087222,-0.0053955633,-0.04313947,0.006872771,-0.015347936,0.040936176,0.019554222,0.017200705,-0.0073797787,-0.004782147,0.014709482,-0.018740507,0.033575177,0.0042782687,0.014947338,0.013620355,0.0005003571,0.026439512,0.0073985565,-0.059288602,-0.014809632,-0.0006732718,0.0036241661,-0.011179207,-0.0056928825,0.021945296,0.029343853,0.010121375,0.007974417,0.032298267,-0.037455976,0.023522653,-0.022358414,0.006365763,-0.017488636,-0.01803946,0.02393577,0.02520016,0.022258263,-0.018077014,0.020367939,0.0061623342,-0.019278811,0.01231215,0.045442913,0.006697509,-0.021144098,0.02394829,-0.007811674,-0.0015538847,0.014371477,0.008093345,-0.012199481,0.004196897,0.011035241,0.007242073,-0.023785546,0.014221253,0.013257313,0.00630004,-0.040009793,0.016099058,0.031171585,0.014797113,0.000108169465,-0.043439917,-0.012437337,0.023021905,-0.012787861,0.037330788,-0.04043543,-0.04827214,-0.02568839,-0.016211728,0.008775614,-0.017476117,0.021356916,0.01618669,-0.02819213,0.00882569,-0.028091982,0.020730982,-0.032398418,0.04641937,-0.02501238,-0.043289695,0.024874674,-0.005680364,0.0037650017,0.0008575315,-0.004544291,-0.009752074,-0.008068307,-0.025938764,0.010090079,0.022395968,-0.0039621713,-0.031922705,0.055683214,-0.0054206005,0.035027348,0.0133449435,0.039734382,0.004090488,0.027441008,-0.0025757242,-0.012531227,0.0005062253,0.013006938,-0.015598311,0.008975914,0.0030874265,-0.02295931,-0.02859273,-0.023409985,0.033099465,-0.033850588,0.031446997,-0.017288337,0.014421552,0.013332425,-0.008224792,0.01075357,0.013632873,-0.038682807,-0.008925839,-0.021043949,0.009176213,0.01792679,0.01347013,0.00852524,-0.0017338411,-0.014947338,-0.016224246,-0.01996734,-0.002461491,0.00552388,0.0168627,-0.00038807996,0.020117564,-0.044666752,-0.031021358,-0.023122054,-0.017037962,-0.005730439,0.000010091986,0.021544697,-0.0031453255,0.020931281,0.011679955,0.0052077826,-0.028742954,0.007091848,0.03287413,0.040685803,-0.023535172,-0.009251325,-0.03500231,-0.006312559,0.008944618,-0.05893808,0.01579861,0.017012924,-0.00049135933,-0.017338412,-0.0022267653,0.020230234,0.0063219476,-0.007298407,0.0075300033,-0.002588243,-0.0033080687,0.013144644,-0.0164621,-0.016161652,0.002305007,0.051827453,0.030295275,0.013420056,-0.0021453938,-0.0070730704,0.03915852,0.024574224,-0.017238261,0.0013175941,0.06574826,-0.016925294,0.019554222,-0.0018793711,0.03149707,0.0008645733,-0.015009931,-0.0025475572,0.041587148,-0.0065159877,0.01783916,-0.0037180565,-0.017263299,0.020931281,0.017751528,0.043489993,-0.031547144,-0.018264795,-0.007936861,-0.009545515,0.0020483737,-0.040785953,0.03858266,-0.0046507004,0.0089133205,-0.005098244,0.0023034425,0.029969787,-0.0040372834,-0.009514218,0.014696964,-0.0010766089,-0.009645665,-0.015135119,0.07015484,-0.024449037,-0.025074974,-0.0378065,0.00055317045,-0.03450156,-0.03632929,-0.010672199,0.02646455,-0.041987747,0.028567692,-0.042763907,-0.013820654,0.044766903,-0.016637363,-0.0020812352,-0.056033738,-0.056935087,-0.019141106,0.010509456,-0.02335991,-0.02819213,-0.015623348,-0.031547144,-0.045618173,-0.013457611,-0.0335251,-0.016349433,-0.0011071232,-0.0024755746,0.010559531,-0.02334739,-0.007930602,0.017200705,0.0062687434,0.027541159,-0.06880282,0.018815618,0.036429442,-0.011767586,-0.03450156,0.021194173,-0.019153623,0.022233225,-0.00091856025,-0.031547144,-0.005398693,0.014847188,0.024398962,-0.020180158,0.033875626,-0.007648931,0.027090484,0.019153623,0.030220162,-0.014358958,0.020568239,0.016286839,-0.0209438,0.044641715,0.0152352685,0.007980676,-0.026890185,0.023660358,0.034301262,-0.018778063,0.021582253,0.012531227,-0.013257313,0.020305345,0.013432574,-0.010108857,0.004422234,-0.0051358,-0.028041907,0.02064335,0.010346713,-0.0069228457,-0.018189684,0.026339363,0.0057992917,-0.0054299897,0.020430531,-0.022558713,-0.0036898893,-0.017100556,0.004719553,-0.022934273,-0.008687983,0.0012855149,0.04867274,0.007611375,-0.039909642,-0.012180704,-0.01772649,-0.01996734,-0.019792078,0.03207293,0.024173627,0.028993329,0.047245607,-0.04837229,-0.0016227376,-0.00785549,-0.014596814,-0.009927336,0.016912775,-0.009439106,0.013119606,0.0207435,-0.009845964,0.012819157,-0.0040560616,-0.017263299,-0.039984755,0.0048103137,-0.01851517,-0.017088037,0.038232137,-0.02453667,-0.00823105,0.040084906,-0.00949544,0.020705944,0.05147693,-0.019429035,0.051927604,-0.0024208052,-0.021732477,0.006622397,-0.0059150895,-0.028742954,-0.035928693,0.020305345,-0.02229582,-0.0064596534,0.01871547,-0.0113356905,-0.010340453,-0.056935087,-0.014371477,-0.029093478,0.0021594772,0.010584568,-0.0014513878,-0.016812626,0.00027345555,-0.040760916,0.012474893,0.057786357,-0.035878617,-0.0066787307,0.038908146,0.016649881,-0.045668248,-0.021294324,-0.000576643,0.0075613,-0.00581807,-0.024987342,-0.025913727,0.0451675,0.023910733,-0.0075550405,-0.018565245,-0.021094024,-0.007861749,0.036404405,-0.010816164,-0.01937896,0.00008313205,-0.008412572,-0.02005497,0.009201251,-0.054331195,0.012524968,-0.0032767719,0.0151226,0.0222833,0.027691383,0.002995101,-0.0018386852,0.007348482,-0.023134572,0.0052797655,-0.039233632,-0.0047132936,0.007386038,-0.008406313,-0.008256088,-0.047971692,0.031446997,-0.018077014,-0.020705944,-0.0040591913,0.05663464,-0.04005987,0.035803504,0.0021344398,-0.028717916,-0.0067413244,-0.025162604,-0.041136477,0.00013574974,0.02548809,0.07921839,0.009601849,-0.0098584825,0.024499113,0.0072733695,-0.033675324,0.028893178,-0.013808135,-0.023084499,-0.016587289,-0.014183696,-0.010327934,-0.0007683357,0.034151036,-0.022796568,0.043189544,0.026714923,0.024048438,0.011417062,0.0094891805,0.03547802,0.013157163,0.031171585,0.016549733,0.0060747033,-0.0070981076,0.008769355,-0.01871547,0.040861063,-0.0064283567,0.021356916,0.02714056,-0.0043565105,-0.021845147,-0.00348959,-0.0093264375,-0.004547421,0.016424546,0.018590283,0.00008166501,0.025713427,0.004215675,0.026439512,-0.02180759,-0.0020311605,-0.021131579,0.01696285,-0.028167093,-0.007611375,-0.0012886445,0.028667843,-0.008932099,0.0042970465,-0.010133894,0.020205196,-0.025325347,-0.011805142,0.018452575,-0.004572458,0.004741461,0.017701454,0.015548236,0.00044050204,0.012831676,-0.036779966,0.05057558,-0.004077969,-0.013933322,-0.016637363,0.013632873,-0.0020327254,0.016812626,0.0032016598,0.017325893,0.0021000134,-0.0011110354,-0.01956674,0.005195264,-0.017375967,-0.022370933,-0.007586337,-0.0048259622,-0.006212409,0.0009412504,0.004660089,0.00011599366,0.011667436,-0.016937813,0.0112418,0.012099331,0.013057013,0.030871134,0.02307198,0.033775475,-0.030971285,0.019754522,-0.012262075,0.012668933,0.020906243,-0.0023488228,0.0054206005,-0.00097645924,0.03798176,0.0038244654,-0.019691927,0.005930738,0.0298446,-0.0492486,0.017864197,-0.034276225,0.0004706252,-0.051977675,-0.023034424,-0.0033831808,-0.011817661,-0.018690431,0.014696964,-0.015398012,-0.016787589,0.04296421,0.019942302,0.027215673,0.036779966,0.009626887,-0.04178745,0.05302925,-0.0304455,-0.007498706,-0.015135119,0.05050047,0.0109225735,0.0024051568,0.029444002,-0.030345349,-0.00020714551,-0.0060715736,-0.015723499,-0.015660904,0.022421006,-0.03470186,-0.016812626,-0.0028151446,0.019141106,0.0100212265,-0.01522275,0.023497615,0.0036585925,-0.008606612,-0.07551285,-0.0037149268,-0.018202202,0.017288337,0.008187235,0.0008489249,0.025262754,-0.017964346,0.000421724,0.022633824,-0.0039402633,0.0072858883,0.020342901,0.014684445,-0.023597766,0.04043543,-0.004572458,0.0014584295,0.018189684,-0.026489588,0.031722408,0.00785549,0.019441554,-0.015297862,0.004522383,-0.030094976,0.009507959,0.012981901,-0.0131822,0.026314326,-0.037055377,-0.014646889,-0.054331195,0.0604904,0.004390937,-0.0071106264,0.008656687,-0.011054019,-0.013319906,0.017826641,0.0018684173,-0.02578854,0.03965927,-0.0028511358,0.0017870456,0.002384814,-0.006853993,0.0122808525,-0.012055516,-0.004174989,0.019867191,0.027265746,-0.013157163,0.0022502379,0.0034582932,0.025713427,-0.022333376,-0.032573678,-0.018252278,-0.003053,0.001347326,0.019716965,0.006803918,-0.0072858883,0.017851679,0.036479518,-0.0056741047,-0.058487404,0.023535172,-0.03885807,0.0015734452,0.02926874,-0.019829635,-0.033600215,-0.022070482,-0.018152127,0.012812898,0.009608109,-0.032423455,-0.047445904,-0.006447135,0.013107087,-0.034852084,0.044791937,-0.02229582,-0.012449856,-0.029519115,0.003702408,0.006735065,0.048772886,0.000494489,-0.019629335,-0.010872498,-0.01977956,0.006622397,0.00013359809,0.012468633,0.03632929,0.024373924,0.036504555,-0.023397466,-0.006534766,0.044366304,-0.021306843,-0.015423048,0.035703357,0.005348618,-0.014183696,0.0029340722,-0.036880113,-0.04591862,0.008487685,0.0205432,-0.00958933,-0.0020921892,-0.009507959,0.038257174,-0.049574085,0.028993329,-0.00071591366,-0.037481014,0.003470812,0.004544291,-0.003896448,0.02335991,0.013482649,-0.014096065,-0.00037927774,0.021945296,0.016199209,0.007586337,-0.0051326705,-0.005201523,0.025563203,0.0014623416,-0.0040341537,-0.019641854,-0.021081505,-0.00054534624,-0.027165597,-0.018940806,0.030595724,-0.045192536,-0.010935091,-0.02103143,-0.0020123823,-0.008569056,0.008412572,-0.038307246,0.018440057,-0.024561705,0.011398284,-0.009977411,-0.009157435,-0.0029105998,0.0077177836,-0.004149952,-0.0039590416,-0.0016352563,0.026088988,0.014396515,0.014146141,0.02346006,0.00049370655,0.011999182,-0.009363994,0.013933322,0.0000933035,0.0005844672,0.0054925834,-0.019904746,-0.002801061,0.013482649,0.01996734,0.027290784,0.01696285,0.0094891805,0.022032926,-0.008637909,0.008800652,0.0038839292,-0.034726895,-0.0012714313,-0.018790582,-0.003896448,0.0020655869,-0.024098514,0.0063313367,0.004412845,0.026489588,-0.004766498,-0.006735065,-0.0022502379,0.016324395,0.005958905,-0.032598715,-0.014045991,-0.022759011,0.013207237,0.028567692,0.014784595,-0.0042501013,-0.007648931,0.006174853,0.015172674,-0.034526598,0.014709482,0.016587289,-0.014984894,0.019466592,0.009933596,-0.062192943,-0.04767124,-0.019403998,0.0010891276,0.015648386,0.026239213,-0.0022142464,-0.030295275,-0.0032799016,-0.015272824,0.008011973,0.010709755,0.015836166,-0.010672199,-0.034476522,-0.008700502,-0.008349978,0.0072232946,0.007817933,0.04777139,0.034025848,0.011285615,-0.03264879,-0.008831949,0.010071301,-0.019729484,0.01114791,-0.018452575,-0.012042997,-0.022859162,0.017037962,-0.04243842,-0.005351748,-0.00494489,0.013733023,-0.035528094,0.0058024214,0.008850727,-0.0047445903,-0.01124806,0.0032204378,0.029218666,-0.04323962,0.0100212265,0.042288195,-0.03743094,-0.0070042172,-0.009451625,0.019303849,-0.0089571355,0.051527005,-0.04584351,0.0242237,0.003761872,-0.027891682,0.020593274,-0.017889235,0.00842509,0.00084970734,0.032223154,0.0027713291,-0.015285343,-0.022045445,-0.028217169,0.0044816975,-0.048797924,-0.028467543,0.013883248,-0.013257313,0.012587561,-0.011079057,0.022608787,0.016537214,-0.026439512,0.015197712,-0.0143339215,-0.0072858883,-0.02606395,0.011010204,-0.005370526,0.009989929,-0.027641308,0.0013825349,-0.013395018,0.04644441,-0.018051978,0.018402502,0.01745108,-0.02560076,-0.0022956182,0.0037837797,0.0090322485,-0.022608787,-0.022533676,0.007442372,0.007886786,-0.005511361,-0.0059651644,0.027165597,-0.02956919,-0.032173082,-0.0058744038,0.019040955,0.036379367,0.023635322,0.016987888,-0.010190229,0.03277398,0.004419104,-0.013082051,-0.011617362,-0.018652875,-0.004212545,0.00029399403,-0.003924615,-0.015823647,0.0343263,-0.0003689107,-0.045217574,-0.005514491,0.018377464,0.0029638042,0.008900802,-0.0026774388,0.010809905,-0.02936889,-0.021594772,0.019842153,0.017288337,0.009946113,-0.0027713291,-0.0006016804,-0.035152532,0.0038463732,0.005514491,0.008969654,-0.005311062,0.011992923,-0.01095387,0.01803946,0.03159722,-0.01250619,-0.043690294,0.026589736,-0.0066787307,-0.011329431,0.043865554,-0.021557216,-0.010384269,0.012024219,0.030320311,0.03227323,-0.023147091,0.014959857,-0.01270023,-0.034551635,0.042313233,-0.0074298535,-0.011054019,0.0025272144,0.009144916,-0.003693019,-0.011054019,-0.024636818,0.0037962983,-0.045392837,0.03400081,0.047546055,-0.01996734,-0.0042907875,0.030946247,-0.007423594,0.019466592,0.005379915,-0.0011039936,0.0054425085,0.01230589,0.027165597,0.040911138,-0.0044253636,0.028342355,-0.03915852,0.017200705,-0.022270782,-0.008381275,0.03480201,0.036880113,0.024474075,0.020718463,0.029744452,0.010678458,0.034927197,-0.0416873,0.014096065,-0.010960129,-0.0038056874,0.0015249351,0.027290784,-0.023885695,0.038106948,-0.013945841,-0.026815074,0.066699676,0.011573546,-0.033975776,-0.000051835275,0.0048103137,0.002489658,-0.012337187,-0.018214721,0.021256767]},{"id":"class-MessageManager","type":"class","source":"main","text":"Class: MessageManager\nDescription: Manages messages for a channel. Access via channel.messages.\nMethods: fetch(messageId: string) -> Promise — Fetch a message by ID from this channel.","meta":{"url":"/docs/classes/MessageManager"},"embedding":[-0.010040068,-0.021975668,-0.0232463,0.0024592439,0.032682296,0.020517567,-0.003077635,-0.012175146,-0.009519318,-0.008035179,0.02391286,-0.007816464,-0.021319523,-0.010904514,0.049867064,0.010618102,-0.028766254,-0.032703128,-0.0067957933,0.03849387,0.03586929,0.043201458,0.020996658,0.039639525,-0.016986879,0.0032807277,-0.04890888,0.0174868,-0.0035332916,-0.020267608,0.07490474,-0.0061084027,0.019517727,-0.04653426,0.050741922,0.031932417,-0.021069562,0.00822265,-0.05536619,0.0122168055,-0.02476689,0.026204161,0.00410091,-0.030724276,-0.009081888,-0.009290188,-0.0057074246,0.03720241,0.04757576,0.032224037,-0.027537283,-0.00984739,0.010081729,0.061323572,0.03551518,-0.03224487,-0.034577828,0.0151017625,-0.006254213,0.008529892,0.0050721094,-0.021027902,-0.032598976,0.0037337807,0.010831609,0.028391315,-0.01654945,0.013779056,0.02395452,-0.0017458159,0.002659733,0.014466447,0.011373189,-0.038952135,-0.0040201936,0.010237954,0.0027912224,0.018934486,0.0471175,0.000081041784,0.0041477773,-0.00025288944,-0.06065701,0.0045956224,-0.041993316,-0.021996498,-0.026516613,-0.014685162,0.028891234,-0.014653917,-0.015372553,-0.003814497,-0.06969724,0.0028276748,0.022038158,-0.04790904,-0.029078705,-0.009946333,-0.019288596,0.021996498,0.054532986,-0.031765778,-0.027828904,0.0069936784,0.004363889,-0.024329461,-0.012091825,0.006649983,-0.08848591,-0.02318381,-0.05694927,-0.032494828,0.031599138,0.048658922,-0.024329461,-0.0187366,0.040201932,-0.026495783,0.02297551,0.05090856,-0.06482302,0.015247573,0.049992044,0.018351246,0.014893463,-0.02468357,-0.00020911384,0.012508426,-0.07323834,0.028495464,0.04578438,0.01636198,0.00412174,0.02418365,-0.028224673,0.026120842,0.012498011,-0.028662104,0.014456032,-0.011591905,-0.006925981,-0.0166536,-0.0027651847,0.0011371888,0.03220321,-0.025704242,-0.03699411,-0.009795316,0.027016534,-0.039743673,-0.028037203,-0.021204958,-0.031911585,-0.007040546,-0.003741592,-0.0059001027,-0.001417743,-0.008946492,-0.020194702,-0.011008664,0.016705675,-0.043451417,0.0030125412,-0.01162315,0.012123071,-0.009040228,-0.005749085,-0.067697555,-0.004160796,-0.010576442,0.014403957,-0.004845583,-0.024287801,0.012935441,0.027224833,0.0098161455,0.007852917,-0.028849574,-0.0355985,0.0085351,0.052158363,0.013466607,0.012591746,-0.055532828,-0.013758226,0.051158525,-0.053991407,-0.0076446165,0.019559387,-0.016622353,-0.02332962,0.044951178,0.027037363,0.045076158,0.006790586,0.01657028,0.0071603185,-0.0017080614,-0.0070665833,-0.03232819,-0.026037522,0.0075300513,0.03943122,0.012956271,-0.0052699945,-0.0112377945,0.006629153,0.023496259,0.010935759,-0.0123522,0.015455873,-0.0058896877,0.0053533143,-0.03553601,-0.050325323,-0.009113133,-0.027620604,0.03318222,-0.0761962,-0.005790745,-0.029078705,0.02374622,0.086402915,-0.04615932,0.0056449347,0.020080136,0.015320478,-0.018528301,0.0012133485,0.0039837407,0.042909835,-0.03732739,-0.041243434,-0.03553601,0.02320464,0.04582604,-0.0035254804,0.067864195,0.014497693,-0.042659875,0.01116489,-0.020434247,0.010633724,0.006295873,0.012550086,-0.009972371,-0.009993201,-0.0141331665,0.033640478,0.05832405,0.053366505,-0.019986402,-0.004395134,-0.021725709,0.024350291,0.028162183,-0.0072228084,0.025350131,0.018434566,-0.006124025,0.0255376,0.021319523,-0.053991407,0.027995544,-0.053033225,-0.025204321,0.053658124,-0.0063531552,-0.03553601,0.03776482,-0.005493917,-0.030807596,0.03584846,0.01742431,-0.016122434,0.0019176635,-0.004022797,0.004077476,0.027391473,0.025641752,-0.014528938,-0.0017458159,0.009998408,-0.021350767,0.014820557,0.041826677,0.045326117,0.0027495623,-0.007826879,0.016622353,-0.025662582,-0.00435087,-0.0042805686,-0.10523325,0.03793146,0.050242003,0.07003052,0.03591095,0.060823653,0.07490474,0.013612417,0.017018124,-0.015778739,-0.051366825,-0.0061292327,0.022746379,0.020767527,-0.0141331665,0.02487104,-0.072738424,-0.003278124,-0.002835486,-0.042534895,0.021767369,-0.04686754,0.003153144,-0.0012790933,-0.022079818,0.041972484,-0.0024917908,-0.0004611896,0.0314325,-0.019653121,0.013487437,-0.079487346,-0.051533464,-0.011362774,-0.038952135,0.0004305955,0.062115114,0.03147416,-0.018830337,0.00594697,0.021579899,0.021684049,0.025141831,-0.01734099,-0.0019397954,0.009508903,0.008175782,0.073946565,0.0021793407,-0.012445936,0.020080136,-0.013091666,-0.041493393,-0.043868016,-0.009566186,0.024954362,-0.008321592,-0.01902822,0.001838249,-0.0016117226,-0.08940244,-0.0033484253,-0.0069207735,0.009628676,0.006441683,-0.022725549,-0.031286687,-0.010024446,-0.0055095395,0.00083254976,0.025287641,0.020600887,0.010175464,-0.011800205,0.012654236,0.022038158,-0.020954998,0.0066343606,-0.050450303,0.0020348323,-0.016788995,0.017601365,-0.042743195,-0.015403798,-0.028203843,0.014643502,0.08202861,0.050533623,0.02216314,0.0022665663,0.0016364582,0.009946333,-0.0054262197,-0.0127688,-0.015976623,0.00006761619,0.05540785,0.01971561,-0.0045747925,-0.03711909,0.007165526,-0.028412145,0.018476225,-0.024287801,-0.037139922,0.0072488463,-0.014070677,0.040181104,0.07157194,-0.023496259,0.03776482,-0.004991393,-0.02326713,-0.041597545,0.01777842,-0.03639004,-0.03353633,-0.002890165,0.016309904,0.002028323,0.04453458,0.0048820353,-0.016164094,0.025725072,0.015351723,0.0155391935,-0.013050006,-0.01802838,-0.063948154,-0.000935398,0.0029917113,-0.0026011486,-0.020028062,0.07398822,0.0048169415,-0.02239227,-0.02474606,-0.07594624,-0.014883048,0.016476544,0.028724594,0.029495304,-0.005702217,0.013529097,-0.029391155,-0.013997772,-0.004593019,-0.006087573,0.016643183,-0.04749244,0.025204321,0.0136332465,0.018184606,-0.0026974874,0.0025139228,0.021194544,-0.0005936555,-0.01732016,-0.043243118,-0.027578942,0.010987834,-0.08290347,-0.017413896,0.019726027,0.02330879,0.0232463,-0.016039114,-0.03657751,-0.010326481,0.016736919,0.010862854,-0.026266653,0.04907552,-0.024412781,-0.0172785,-0.019840593,0.010383763,-0.016736919,0.017518045,0.029474474,0.03430704,0.009316226,-0.036369212,-0.009560978,-0.019132372,-0.0028979762,0.0066864355,0.0073009213,0.01779925,-0.011300284,-0.029141195,-0.04570106,0.06569788,0.010243162,-0.013299966,0.029974395,0.032057397,-0.052200023,-0.000504477,-0.0060927803,-0.006748926,-0.027662264,0.0021142468,0.024308631,-0.011925185,0.03549435,-0.06732262,0.0033015579,-0.033244707,-0.0111024,0.01796589,0.019090712,-0.020392587,-0.021434087,-0.027474793,0.01149817,0.0013396305,-0.00006887738,0.05803243,-0.016351564,-0.026308313,0.03653585,-0.00878506,-0.026724912,-0.015268403,-0.025329301,0.027849734,0.01807004,-0.0021259636,0.029703606,-0.029120365,0.0004855998,0.031036727,-0.01149817,0.015310063,-0.0008227857,0.05919891,0.019621877,-0.048617262,0.022496419,0.016768165,0.027703924,0.00049926946,-0.039951973,-0.0131437415,0.014174827,-0.012893781,-0.019080296,0.02360041,-0.015841229,0.02466274,-0.028078863,0.024996022,-0.045534417,0.08182031,-0.009264151,0.042597387,0.009987993,-0.0034187266,0.018465811,-0.029203685,0.022100648,-0.012758385,-0.011925185,0.002542564,0.04457624,-0.0065093804,0.02487104,0.0039837407,0.03755652,0.016809825,-0.038118932,0.014299807,0.0031869926,-0.03357799,-0.03732739,-0.011779375,0.03576514,0.02341294,-0.008540307,0.0074883914,0.011591905,0.040451895,-0.042826515,-0.0021181523,-0.021725709,-0.02464191,0.040035293,-0.019913496,0.027349813,0.01779925,-0.00474664,0.04449292,-0.019455237,-0.016414054,-0.026058352,0.045117818,0.0044367937,-0.04770074,-0.013612417,-0.0007700597,-0.03447368,-0.01648696,-0.016986879,0.009045435,-0.009909881,-0.019132372,0.012456351,0.029307835,-0.031661626,-0.0051918817,0.03743154,0.027204003,-0.008300762,-0.04599268,-0.03524439,0.0035072542,-0.018767847,0.024225311,-0.013737396,-0.062073454,-0.0174868,-0.0077748043,-0.008467402,0.01166481,0.051700104,0.055907767,-0.01877826,-0.012977101,0.017559705,0.0047752815,0.014362297,0.013768641,-0.0003550867,-0.01237303,0.0024436214,-0.029016215,0.08956908,0.016132848,0.03524439,-0.0019879648,0.00428838,0.015903719,-0.008217442,-0.00039544486,-0.012831291,0.020902922,0.04707584,0.0064677205,-0.010789949,0.024433611,0.0024436214,-0.029641114,0.030661786,-0.00828514,-0.007321751,-0.0073009213,-0.05103354,-0.0052908245,0.01779925,-0.01782008,0.00905585,-0.020111382,-0.030016055,0.03797312,-0.019174032,0.018580375,-0.024954362,0.061323572,-0.0045982264,0.026016692,-0.0127167255,-0.005561615,-0.004264946,0.008837135,-0.0011469529,0.028099693,0.039493714,0.0042597386,0.03374463,-0.009930711,0.0005116373,-0.003236464,0.003968118,0.00010805572,0.009279773,0.023038,-0.030474316,0.013477022,-0.0145914275,-0.01717435,0.07336332,-0.021309108,0.005178863,0.0013695736,0.03607759,0.04595102,0.0023694145,-0.030182695,0.015164252,-0.020757113,-0.028849574,-0.029891076,0.013029176,0.041180946,0.012904196,0.009383923,-0.012935441,-0.01886158,-0.010331688,-0.005999045,0.009909881,-0.02353792,-0.027683094,0.00049568934,0.040389404,0.026683252,-0.06186515,-0.023496259,-0.02230895,-0.0079258215,0.00145029,-0.0058271973,-0.009274566,-0.007701899,0.03420289,-0.027724754,0.02474606,0.0018864184,-0.0054366346,0.022642229,0.028245503,-0.0176951,0.0063479478,0.051908404,-0.0042727576,0.026516613,0.012810461,0.021684049,0.0062125525,-0.017643025,-0.0064781355,0.008561137,-0.018674111,0.0037728369,0.0023668108,-0.0112586245,0.01143568,0.019194862,-0.01650779,-0.050242003,0.0019241729,-0.026808232,0.0030411826,-0.0030802388,-0.01189394,0.01777842,-0.02391286,0.0032208415,-0.03661917,0.008462194,-0.005660557,-0.030307675,-0.000173475,-0.029641114,-0.04582604,0.036848303,-0.02466274,0.008227857,-0.021559069,-0.026683252,-0.032578148,-0.021017488,-0.01636198,-0.013237476,0.027766414,-0.017080614,-0.01224805,0.030745106,0.0040514385,0.0058480273,0.026829062,-0.006514588,0.03597344,0.014716407,0.022517249,0.020267608,0.004085287,0.014008187,-0.015299648,-0.014789312,0.0062021376,0.021454917,-0.010081729,-0.021954838,-0.0127688,-0.04432628,-0.010935759,-0.0341404,-0.026662422,0.0067957933,-0.037098262,-0.017455555,0.0018252303,-0.0429515,-0.009196453,0.00060537236,0.0045982264,0.013039591,-0.023038,0.006165685,0.017205594,0.009269358,-0.009290188,0.019038636,-0.042034976,0.00410091,-0.008977737,0.024954362,0.009784901,-0.0022327176,0.0127167255,0.0063219103,0.038181424,0.013352041,-0.0062906654,-0.063114956,0.057907447,-0.0012484991,-0.025204321,-0.022558909,-0.03374463,0.07173858,-0.022642229,-0.0071915635,0.013216646,0.0015700626,0.011519,-0.025912542,0.05111686,0.004129551,0.012675066,-0.027974714,-0.051783424,0.030286845,0.0056553497,-0.04824232,0.01187311,0.019923912,-0.0067749633,0.020080136,-0.005009619,-0.02243393,-0.039681185,0.014560183,-0.009691166,-0.014539353,0.024891872,0.016882729,-0.02332962,-0.036973283,0.017038954,0.0041686073,-0.028703764,0.03614008,0.02355875,0.0234546,0.019215692,0.03541103,-0.009378715,-0.020975828,-0.01170647,0.01838249,0.031953245,-0.014174827,0.027599772,0.02476689,0.03639004,0.02353792,-0.014008187,-0.0026310915,0.01231054,0.012987516,-0.0029083912,-0.037139922,0.0004855998,0.04765908,0.05678263,-0.03686913,0.00051944854,-0.026579103,0.003499443,0.0037546107,-0.015497533,0.020673793,-0.00453834,-0.03409874,0.026162501,0.02216314,-0.0032937466,-0.0036608756,-0.006285458,-0.012810461,-0.0709887,0.010097351,0.02305883,-0.013851962,-0.02389203,-0.0065406254,0.0013825924,-0.011331529,-0.0017210802,0.03426538,0.017476385,-0.031307515,0.025329301,-0.018142946,0.015153837,-0.021215374,0.0006691643,0.03451534,0.00636357,0.0001975597,-0.0009100114,0.026454123,0.004465435,0.00013710382,-0.008045594,0.012445936,0.02466274,-0.016372394,0.014841388,-0.0060459124,-0.017872155,-0.029078705,0.013799886,-0.022579739,0.028516294,-0.013737396,-0.026704082,0.0051840707,0.005046072,-0.020559227,0.008076839,-0.0164453,0.020746697,0.0004686754,0.04661758,-0.004067061,-0.01890324,-0.015257988,0.015653757,-0.015882889,-0.026766572,0.05944887,-0.025683412,0.0049861856,0.052325003,-0.01667443,0.06040705,0.013258306,0.012977101,0.0066343606,0.0043456624,0.021236204,0.022100648,0.00598863,-0.019632291,-0.022517249,-0.021892348,-0.018653281,0.0008143235,-0.031682458,0.05732421,-0.0028120524,0.025933372,0.038473044,0.02362124,-0.0053637293,0.015174668,0.0462843,0.02293385,0.007597749,-0.0012003297,0.0026115635,-0.003541103,0.019788517,0.030995065,-0.020444661,-0.000014259612,-0.006535418,0.02289219,-0.02226729,0.017643025,-0.0009406055,0.017028539,0.012050165,0.052949905,0.037535693,-0.006077158,-0.019778103,0.03651502,-0.013029176,-0.001176245,0.027266493,0.034557,0.0026284878,-0.0070769987,-0.012508426,0.015757909,-0.014164412,0.0064468905,-0.0036817056,0.02310049,0.008790268,0.029745266,-0.011060739,-0.009961956,-0.0066447756,0.006019875,-0.010842024,-0.030620126,0.028807914,-0.014435202,-0.03276562,0.0054158047,0.00052172685,0.024371121,-0.017955475,0.013789471,0.029953565,-0.013726981,-0.03241151,-0.016872315,0.04745078,-0.010086936,-0.026120842,0.025829222,0.029307835,-0.015726663,-0.027266493,0.026808232,0.014174827,0.010618102,-0.0072592613,0.05690761,-0.013945697,-0.0018174191,0.040889323,-0.021913178,0.027308153,0.040076952,-0.0022340193,0.01671609,-0.013539512,0.027453963,-0.0041998522,-0.014310222,0.010810779,0.014737237,-0.010904514,-0.022704719,0.031036727,-0.0034864242,0.009852598,-0.019434407,-0.007628994,-0.007082206,-0.00112417,-0.03236985,0.019798933,-0.0028016374,-0.0021493975,0.040639363,0.030849256,-0.007394656,-0.0016716089,0.016059944,0.015893303,-0.034494508,-0.009399545,0.014487278,-0.007123866,0.017705515,-0.051200185,0.007207186,-0.045451097,0.0054574646,0.00046737352,0.011060739,-0.00069520186,-0.025829222,0.008191405,-0.037952293,0.0055095395,0.040243596,-0.022642229,-0.038348064,0.03605676,-0.040576875,-0.025641752,-0.007155111,-0.00021269401,0.010649347,-0.013299966,0.016966049,0.008477817,0.009555771,-0.0060927803,-0.017393066,-0.012091825,0.013185401,0.014633087,-0.012612576,-0.03447368,0.03489028,0.021413257,-0.00818099,0.031161707,0.03813976,-0.022642229,-0.030724276,0.023475429,0.025766732,-0.0040826835,-0.015008028,0.0010499631,-0.00474664,-0.031765778,0.0022223026,0.031703286,0.020257192,0.022746379,0.009779694,0.032182377,-0.049867064,0.0006060233,0.001775759,-0.029557794,-0.032036565,-0.040576875,0.0051007504,0.0067541334,0.010029653,0.013758226,0.005790745,-0.01648696,0.027516453,0.0022105856,0.0024761683,0.032224037,0.010217124,-0.040451895,-0.025683412,0.040410236,0.03374463,-0.022121478,0.019215692,0.039285414,0.005178863,-0.015174668,-0.015466288,-0.018653281,-0.011019079,0.0046815462,0.0049210917,-0.006316703,-0.0012055372,0.014581013,-0.010331688,0.013799886,0.010602479,0.01233137,-0.018465811,0.00032498082,0.015487118,0.00022864199,-0.01170647,-0.052116703,-0.029057875,-0.021892348,-0.011800205,0.018247096,0.024308631,0.0069728484,-0.0031062763,-0.021538239,-0.0374732,-0.02316298,0.0031271065,-0.018590791,-0.010524366,0.00584282,-0.0040306086,0.012945856,-0.009331848,-0.0150809325,-0.00834763,-0.007217601,0.03549435,-0.01746597,-0.046992518,-0.008477817,-0.017913815,0.02218397,0.012164731,0.013872792,-0.022100648,-0.0039368733,-0.010154634,0.0038379307,0.05994879,-0.013091666,-0.002584224,0.020392587,0.03951454,-0.01168564,-0.003038579,0.0046633203,0.005441842,0.02226729,0.0054262197,0.018465811,0.026474953,-0.028370485,-0.021434087,0.0019215691,-0.03674415,-0.0012439427,0.014351882,0.017601365,-0.029953565,-0.005108562,-0.008394497,0.02335045,0.00042994457,0.018122116,-0.0077643893,0.010331688,0.043201458,-0.008404912,-0.021079978,0.01875743,-0.014841388,0.0075404663,0.013560342,0.009071473,-0.026120842,0.0064781355,0.0496171,-0.02378788,-0.0034421603,0.032140717,-0.026162501,-0.01667443,0.010180671,0.03878549,-0.005210108,-0.008186197,0.021454917,0.008394497,0.029224515,0.0013487437,-0.009415168,-0.016799409,-0.009665128,-0.026391633,0.02372539,-0.013289551,-0.045534417,-0.0021064356,-0.019090712,-0.027370643,-0.038868815,0.0044211713,0.015028858,-0.00287975,-0.0025855259,-0.021371597,-0.0064260606,0.009967163,0.003879591,0.0077175214,-0.01892407,-0.00582199,0.0429515,0.00441336,0.0024748666,0.024975192,0.014695577,-0.018653281,0.0068062083,0.013581172,-0.025225151,-0.0018968335,-0.020777943,-0.043159798,-0.018101286,0.005728255,0.021704879,0.007660239,-0.010170256,0.018486641,0.05849069,-0.03507775,-0.0044289823,-0.0014646106,-0.018809507,0.021538239,0.028495464,0.031786606,-0.006243798,-0.0036738943,-0.0022210006,-0.02391286,-0.018392906,-0.041930825,-0.021517409,0.023517089,-0.007587334,0.010279614,0.011196135,-0.025350131,0.00058877346,-0.0151017625,0.0333072,-0.028599614,0.0222048,0.006769756,-0.006535418,-0.011862695,-0.008139329,-0.022683889,-0.04757576,-0.0031479364,-0.019226106,-0.004728414,0.013976942,-0.055699468,0.019319842,0.031307515,-0.0009698977,-0.033244707,-0.00066330587,0.020684207,0.018486641,0.013039591,-0.019507311,-0.013039591,-0.06290665,0.039035454,-0.007009301,0.015799569,-0.010185879,-0.0060927803,0.011946015,-0.01178979,-0.009170415,-0.03236985,-0.018528301,-0.043868016,0.010821194,-0.0011970751,-0.027370643,-0.01164398,0.0062125525,0.012445936,0.004022797,-0.014830973,0.0053793523,0.0255376,0.0040201936,0.010737875,0.028162183,-0.028120523,-0.004014986,0.00559286,-0.053158205,-0.028016374,0.038598023,0.02237144,-0.0060354974,-0.016913975,-0.015195498,-0.014403957,-0.0042154747,0.01715352,0.02332962,-0.010566026,-0.01765344,-0.02414199,0.01742431,0.0046424903,0.014008187,-0.017768005,-0.014976783,-0.021725709,0.028974555,0.0048846393,0.031057557,-0.00594697,-0.014258147,-0.0060146675,0.0127688,-0.0023316601,0.019423991,-0.009977578,-0.0072123935,-0.0038483457,0.027099853,-0.0062906654,0.012664651,-0.021059148,0.0058896877,0.004757055,-0.029245345,0.018309586,0.009123548,0.0059938375,-0.01648696,0.018330416,0.002122058,0.011414849,0.010123389,-0.030807596,0.008878795,-0.011060739,-0.008207027,0.0033692555,-0.014268562,-0.013018761,-0.040160272,0.039868653,0.016893145,-0.012518841,0.009222491,0.026641592,0.010472291,0.00033181568,0.01892407,0.0059001027,-0.018694941,-0.010649347,-0.008962115,0.048408963,-0.0057751224,-0.00818099,-0.00032563176,0.017205594,-0.0005409295,0.007967481,-0.038348064,-0.0021285673,0.019538557,-0.027079023,-0.042743195,-0.00024719373,-0.031453326,-0.027995544,-0.016539034,-0.00088657765,-0.0011515095,-0.026391633,0.020330098,0.0010174161,-0.016872315,-0.009441205,0.025850052,0.028745424,0.0011417454,-0.051325165,0.0022561513,0.025058512,-0.011029494,0.018747015,0.011487755,0.032744788,-0.023038,0.018653281,-0.0036608756,-0.039222922,-0.005241353,0.007983104,0.015632927,-0.01744514,-0.039181262,-0.045659397,-0.0079154065,0.013570757,-0.008160159,-0.030932575,-0.0007973991,0.0072488463,-0.005400182,-0.03634838,-0.043534737,-0.0244961,-0.013560342,0.0024319047,0.055074565,-0.00830597,0.006936396,0.0008501251,-0.031557478,0.016830655,-0.0008058613,-0.0136332465,-0.003876987,0.03345301,0.013862377,0.033119727,-0.0035905743,0.039889485,-0.0065770783,-0.012956271,-0.011019079,0.011508585,0.04678422,0.021413257,0.021350767,0.038952135,-0.0023251506,0.018632451,0.02368373,-0.042909835,0.017559705,-0.0058167824,-0.012810461,-0.0048950543,0.0013318192,-0.03614008,0.03549435,0.008253895,-0.026974874,0.0029760888,0.0013487437,0.004022797,-0.011352359,0.013081251,0.0064364756,-0.010852439,0.006056328,0.015882889]},{"id":"class-MessagePayload","type":"class","source":"main","text":"Class: MessagePayload\nDescription: Builder for message payloads. Use with `channel.send()` or `message.reply()`.\nProperties: ContentMaxLength: 2000, data: MessagePayloadData\nMethods: addEmbed(embed: APIEmbed | EmbedBuilder) -> this — Add one embed. Max 10 total.; create(contentOrOptions: string | MessagePayloadData) -> MessagePayload — Create a MessagePayload from a string or options object.; setAttachments(attachments: (AttachmentBuilder | { id: number; filename: string; description?: string | null; })[] | null) -> this — Set attachment metadata (for files sent with the request).; setContent(content: string | null) -> this — Set message text. Max 2000 characters.; setEmbeds(embeds: (APIEmbed | EmbedBuilder)[] | null) -> this — Set embeds. Max 10. Replaces existing.; setFlags(flags: number) -> this — Set message flags (e.g. ephemeral, suppress embeds).; setReply(reference: APIMessageReference | { channel_id: string; message_id: string; guild_id?: string | null; } | null) -> this — Set reply reference (creates a reply to another message).; setTTS(tts: boolean) -> this — Enable text-to-speech.; toJSON() -> MessagePayloadData — Get the payload as a plain object.","meta":{"url":"/docs/classes/MessagePayload"},"embedding":[0.016884089,0.0035678905,0.013011402,0.0058704987,0.005232735,0.015664909,-0.0070948,-0.013369985,-0.003368109,-0.0148965195,-0.0026560677,-0.00025661022,-0.00823714,-0.057086248,0.010414245,-0.015132159,0.011085305,0.019086806,0.03915715,0.014824803,0.0032656572,-0.021330504,-0.03298954,0.039874315,-0.004049415,-0.054258574,0.010757458,0.056102708,-0.039833333,-0.06229081,0.045980453,-0.02078751,0.0381941,-0.03335837,0.031022461,-0.0043106675,0.025100738,0.040960304,-0.029977452,-0.01085991,-0.028789008,-0.0024153057,-0.013288023,0.0139334705,-0.042947873,0.016812371,0.0018531004,0.032600224,-0.007043574,0.029752057,-0.03973088,0.03411651,0.011853695,0.10056687,-0.010685743,-0.016771391,-0.042456105,0.009471687,-0.010240076,0.00825763,-0.030940501,-0.021822274,-0.03462877,0.01771395,-0.005578511,-0.005219929,-0.07155247,0.035407405,-0.044054355,0.07806841,0.047660664,0.01414862,-0.04132913,0.02833822,-0.016269377,-0.012294238,-0.03800969,0.032641202,0.018656507,-0.049832646,-0.033747684,0.022949245,-0.026207218,-0.03294856,-0.042988855,0.011915166,0.014865783,0.007402156,0.028215278,-0.011833205,-0.012949931,-0.047660664,-0.028420182,0.005634859,0.0143637685,-0.026330162,-0.025203189,-0.015941529,0.01239669,0.034710735,0.06729046,-0.0078734355,-0.07060991,0.0017775419,0.0009937843,-0.059831962,-0.021945216,0.005409465,-0.000058989935,-0.013574888,-0.04475103,0.01873847,0.0131343445,0.0059114797,-0.0211256,0.0029557399,-0.00039540065,0.01929171,0.0148760285,-0.03298954,-0.027477624,-0.034198474,0.054791324,-0.036985166,0.037825275,-0.058233712,-0.0005407544,0.024096707,-0.009036265,0.07056893,0.029813528,0.019681027,0.03292807,0.004802437,-0.03911617,-0.013216306,-0.028768519,0.009087492,-0.031760115,-0.06880675,0.044546124,-0.011392661,0.032313358,0.0012870531,-0.02524417,0.02735468,-0.028112825,0.018912638,-0.025039267,0.009650977,-0.011659036,0.026514575,-0.043029834,0.020971922,-0.01673041,-0.019926911,0.02210914,-0.0064391075,-0.0087955035,-0.0031503986,-0.019486368,-0.017119728,-0.02673997,-0.0033143219,-0.031104423,-0.021269033,0.05368484,-0.054422498,-0.021002658,-0.04270199,0.02528515,-0.044669066,-0.006147119,0.01212007,-0.028256258,-0.00010797479,-0.032231394,-0.039505485,-0.028133316,-0.02319513,0.030510202,0.016832862,-0.056553498,-0.0371286,-0.034321416,0.0030530693,-0.011546339,0.043193758,0.042988855,-0.029608624,-0.0443822,-0.011474622,0.026268689,0.018717978,0.009072123,-0.0075148535,0.024158178,0.0023756055,0.024117198,-0.036964677,0.037333503,0.0073355623,0.0484393,-0.005583633,0.013964206,-0.020838734,-0.030776577,0.036903206,-0.042087276,-0.040386572,0.0071152905,-0.04475103,-0.012458161,-0.014005187,-0.012949931,0.023891803,-0.024137689,0.029772548,-0.042661007,0.0047460883,-0.07470799,0.03462877,0.07507682,-0.039566956,-0.061143346,-0.02366641,-0.03546888,-0.011618055,-0.047291838,0.026125258,-0.008570109,-0.0057168207,-0.0065825405,-0.005358239,-0.017570516,0.013359739,-0.027088305,0.026022805,0.03821459,-0.014455976,-0.007289459,-0.015695645,0.01834915,0.01805204,-0.045201816,-0.00015703969,-0.030756086,-0.022990227,0.036882717,0.051717762,0.09999314,-0.010071031,0.03194453,-0.0030556305,0.011413151,-0.0029813529,-0.0013741372,0.043398663,0.030120885,-0.0034475094,0.039341565,0.022928756,-0.024527006,0.00014695457,-0.02327709,-0.00028174298,0.03874734,0.019732254,0.03409602,0.017252915,0.021105109,-0.0143432785,0.021576388,0.011228738,0.00951779,0.04397239,-0.030305298,-0.044013374,-0.015316572,-0.0065825405,-0.031124914,-0.032743655,-0.01081893,0.029075874,-0.023154149,0.007023084,0.04290689,0.03087903,-0.015480495,0.013492927,0.028707048,-0.025510546,0.030223336,-0.040386572,0.027047325,0.024875343,0.04897205,0.009328254,0.06024177,0.03507956,-0.009481931,-0.010199095,0.017037766,-0.0386244,0.0051584574,-0.017211935,0.01342121,-0.04397239,-0.00392135,-0.061676096,0.035714764,0.014804312,-0.037845764,-0.023748372,-0.0680691,0.042579047,-0.00012222202,0.023625428,-0.0135851335,0.056471534,0.013410965,0.021248542,-0.030448731,-0.078642145,-0.025653977,-0.0049766055,-0.01834915,0.016382072,0.013667095,0.04434122,0.00032944718,-0.008564986,0.00032624556,0.034710735,0.011771734,0.011956147,-0.0008324224,0.034669753,0.0048997663,0.03147325,0.028932441,-0.017457819,0.033686213,-0.010357896,-0.004561675,-0.0033194444,-0.021514917,0.051389918,-0.026350651,-0.015234611,-0.031268347,0.011167266,-0.034772206,-0.04548868,0.047086935,-0.024588477,0.030653635,-0.053275034,-0.012263503,-0.00567584,-0.0142408265,0.0025139158,-0.00993272,0.032641202,-0.013329004,0.0026304547,-0.025981825,0.0133392485,-0.021064129,-0.018554054,-0.001150664,0.042210218,0.006418617,0.03141178,-0.00036306423,-0.052537378,0.02673997,0.014742841,-0.029588135,-0.003598626,0.054955248,0.04733282,-0.0023576764,0.036964677,0.0050867414,-0.0055016717,-0.006393004,0.04290689,-0.01702752,0.037272032,0.010470593,0.020500643,-0.071511485,0.023830332,0.021514917,0.061143346,-0.0058500087,-0.0132777775,-0.004144183,0.0021169141,-0.006085648,0.012355709,0.012980667,0.023604939,0.003913666,-0.05360288,0.03442387,-0.022539437,0.03774331,0.024055727,0.06929853,0.024383573,0.00993272,0.034690242,0.015316572,-0.007852945,0.025653977,0.0023064504,-0.010260567,0.0027380295,-0.03042824,-0.044792008,-0.04548868,-0.0045770425,0.018338906,0.012068844,0.042988855,-0.035182014,-0.050201476,-0.026985854,-0.06835597,0.0026458227,0.08581378,0.009358989,0.049709704,-0.052865226,-0.04839832,-0.020531379,-0.032333847,0.016597223,-0.0221911,-0.02430161,-0.012980667,0.034198474,-0.019906422,-0.014476466,0.00041140878,-0.0033015152,0.029096365,-0.016207904,0.0024255507,0.000938076,-0.025940843,0.016248886,-0.04905401,0.0011244105,-0.016166924,0.035202503,0.031657666,0.004930502,0.021965707,0.010081275,0.040468536,-0.036124572,-0.018359397,-0.02274434,-0.050939128,-0.016648449,-0.0155727025,0.013861754,0.020265004,0.005476059,0.01340072,0.021965707,-0.0016610029,-0.020131815,0.0076634088,-0.030243827,-0.0011935657,0.02268287,-0.0071511487,0.03239532,-0.011136531,-0.002248821,-0.07114266,0.06589712,0.022375515,-0.02012157,0.019558085,-0.015460005,-0.046308298,-0.021002658,-0.00046551623,-0.0057578017,0.007996378,-0.029588135,-0.018533565,-0.040816873,0.04901303,-0.0153677985,0.01314459,-0.061471194,-0.02372788,-0.012222522,0.03966941,0.0029378107,-0.037435956,0.014763331,-0.028071845,0.050816186,-0.04585751,0.0057987827,0.038829304,-0.018492583,0.009820023,-0.0027662036,-0.024629459,0.021760803,-0.02270336,-0.026166238,0.0044797133,-0.0022155242,0.035591822,0.011525849,-0.009154085,-0.028625086,-0.0105628,-0.03096099,0.010260567,-0.013042138,-0.0059627057,-0.0043875063,0.011781978,0.012181541,-0.014927255,-0.021842765,-0.055324074,-0.020387946,0.01261184,-0.022129629,-0.03813263,0.01596202,-0.0013075435,0.01621815,-0.019691272,0.029670095,0.010655006,0.03854244,-0.02727272,0.020603094,0.017826647,-0.035673782,0.03303052,-0.013759302,0.024322102,0.0150604425,-0.016443545,-0.010460348,0.009389725,0.0132777775,-0.013298268,-0.027743999,0.018922882,0.034157492,-0.021740312,0.023625428,-0.019793725,-0.022559928,-0.005307013,-0.01290895,-0.008549619,0.036800753,-0.015255101,-0.0046385136,0.023522977,0.0054914267,0.004717914,-0.0049407473,-0.01133119,-0.0403251,-0.0054658134,-0.042415123,-0.00042773705,-0.010245198,-0.017918853,0.017509045,-0.009369235,-0.008170546,-0.03958745,0.03858342,0.019875687,0.015880058,0.024834363,-0.012540123,-0.008677684,-0.02936274,-0.01728365,-0.010982853,-0.028604595,0.019783478,0.012253257,0.007858068,-0.032702673,0.026350651,0.009184821,-0.010798439,0.01365685,-0.041349623,-0.009645855,0.02575643,0.020510888,0.030756086,-0.031124914,-0.04848028,-0.02577692,-0.0057629244,-0.003639607,-0.0018466971,0.024957305,0.00033168832,0.017140217,0.013820773,0.00015143685,-0.0019747622,-0.027621057,0.02264189,-0.0058500087,0.0006928316,0.040898833,0.000097809636,0.03555084,-0.0015956897,0.023543468,-0.008170546,0.009763675,-0.008923568,0.019783478,-0.011085305,-0.0283792,0.01570589,0.013052383,0.028645575,0.0335018,-0.012786008,0.004343964,0.007227988,-0.01212007,0.005368484,0.022355024,-0.009205312,-0.017037766,-0.011822959,0.051922668,-0.008913323,0.010363019,-0.040017746,-0.032805126,0.034915637,-0.015900549,-0.009364111,-0.030530693,-0.02571545,0.0038829304,0.026883401,0.03358376,-0.014988726,-0.030325789,-0.016310357,-0.0144457305,0.022826303,0.011310699,0.011546339,0.021699332,-0.024055727,0.0034218964,-0.021289524,-0.013984696,0.010798439,0.031083934,0.013984696,0.009707326,-0.036206532,-0.075281724,-0.032682184,0.022416495,-0.044546124,-0.009548525,0.027784979,0.05151286,0.0020464784,0.00035121822,0.010265689,-0.0262482,-0.040939815,0.0044643455,0.050283436,0.0200601,0.016607467,0.018134002,-0.018963862,-0.04532476,-0.0046794945,-0.052250516,0.0012377481,0.008723787,-0.03237483,-0.069995195,0.023113169,0.0073765432,-0.01209958,-0.049217936,-0.007965642,-0.024096707,-0.017119728,-0.015296082,-0.011361926,-0.008160301,0.005855131,0.003368109,0.010127379,-0.0019120103,-0.011976638,-0.0128269885,0.025838392,-0.023481995,-0.015664909,0.029424211,0.052947186,-0.016382072,0.03147325,0.019547839,0.0082217725,0.00004678374,-0.0056194915,-0.0136875855,-0.0031836955,-0.017201688,0.008672561,0.0061932225,0.007868312,-0.011669282,0.01751929,0.04327572,-0.028420182,0.0029301269,-0.034464847,0.0052506644,-0.0075353435,0.022436986,0.00020202251,-0.0014625022,0.0030223336,-0.039505485,0.02524417,-0.013318758,0.012365955,0.004756334,-0.01085991,-0.03249777,-0.0025228802,-0.0052916454,0.034915637,-0.024813872,-0.035202503,-0.02421965,-0.038255572,-0.0505703,-0.01570589,0.039771862,-0.022252573,-0.02727272,0.0066901147,-0.023318073,-0.003383477,0.03346082,-0.027764488,-0.0048869597,-0.02522368,-0.05880744,0.005225051,-0.020326475,0.011997128,-0.006254694,-0.0050560054,0.007007716,-0.00043510078,-0.036780264,-0.010788194,-0.017662723,-0.02630967,-0.035120543,0.010460348,-0.0051482124,-0.020685056,0.00451301,0.021822274,-0.0008599564,-0.05409465,0.025367113,0.029444702,-0.018717978,-0.0062188357,-0.026658008,0.008047604,0.008938936,0.016566487,-0.05102109,0.057168208,-0.015142404,0.044710048,-0.0017250354,-0.00087020156,0.011925411,0.02270336,-0.018687243,-0.009820023,-0.02833822,0.0070538195,0.009220679,-0.02477289,0.03874734,0.003734375,0.005178948,0.010931627,0.026330162,0.049709704,-0.0142408265,0.009661223,0.01984495,-0.01777542,0.02940372,0.007986132,0.020193286,0.016925069,-0.017119728,0.016412808,-0.055938784,0.022908265,0.0012793692,-0.020418681,0.0149989715,0.005527285,0.01135168,0.015316572,0.031145405,-0.009758552,0.01704801,0.028174296,-0.03257973,0.0012012495,-0.01314459,0.057864882,0.010214463,-0.04327572,0.009948088,0.0051840707,0.0030735596,0.01391298,0.014210091,0.0061676097,0.009154085,-0.0051943157,-0.049340878,0.015890304,-0.037825275,-0.0068642832,0.02035721,0.008759645,-0.008477902,0.027477624,0.026391633,-0.029444702,-0.0047460883,0.0007081994,0.010475716,-0.010747214,-0.008426676,0.0152038755,-0.027067816,0.017334877,0.004495081,-0.03497711,0.011361926,-0.014066658,-0.001653319,0.010921382,0.02313366,0.029383231,-0.012540123,0.0044054356,-0.016433299,-0.026002314,-0.030489711,0.004082712,-0.012150805,0.019967893,-0.03608359,-0.010122256,0.02165835,-0.021228053,-0.031001972,-0.022047669,0.0066388887,-0.02059285,0.026371142,0.003923911,0.027580075,0.009896862,-0.017560272,0.0002550094,0.051471878,-0.031206876,-0.021986196,0.0074789952,0.02008059,-0.016925069,-0.0020272688,-0.00041172892,0.0443822,-0.0023423086,-0.012294238,0.005563143,0.03596065,-0.021514917,0.013011402,0.0021604563,-0.0028020618,-0.020685056,0.028010374,-0.016955804,-0.0032195537,0.0056092464,0.024035236,0.014128129,0.019926911,-0.039464507,-0.016822616,-0.0031503986,0.021699332,0.028645575,-0.0069667352,0.032006003,0.029424211,0.0143022975,0.03141178,0.010532064,-0.057004288,0.029834019,0.011710262,0.0026714357,0.0028660945,-0.03860391,0.011085305,-0.021269033,0.008626457,-0.015070687,0.004187725,-0.027108796,0.041370112,0.026535066,-0.033010032,-0.04063246,-0.042865913,-0.027600566,-0.021863254,-0.0072331103,0.03143227,-0.0061881,0.027989883,0.019783478,-0.0074994857,0.0018569423,0.06425789,0.015244856,0.03714909,0.007248478,0.025408093,0.0075865695,-0.005639982,0.015736625,0.017652478,0.024875343,-0.0069462447,0.02321562,0.005266032,0.011218493,0.022047669,-0.0138515085,0.022764832,0.003998189,0.008129565,-0.022949245,-0.018656507,-0.0031094179,0.011730753,0.0077043897,0.018851167,0.052373458,0.010076153,0.016935313,-0.025428584,0.048234396,0.030018432,-0.01521412,0.05729115,-0.0017596129,0.06647085,0.019465879,-0.00022011169,-0.012519633,0.018431112,-0.027088305,0.014414995,0.008564986,-0.0039674533,0.0031299083,0.026698988,-0.03444436,0.0040903958,0.0044771517,0.020387946,-0.042661007,0.0017839452,0.029875,0.023297582,-0.023994256,0.004692301,-0.0040391698,-0.019885931,0.009184821,0.004287616,0.075445645,-0.046103396,-0.017570516,-0.016802127,-0.011546339,0.015931284,0.035182014,0.04059148,-0.019957647,-0.02780547,-0.012519633,-0.016064472,0.010808685,0.02424014,-0.0011071218,0.011044324,0.00029262848,0.03450583,-0.016207904,-0.036964677,0.055733882,-0.0020541623,-0.0143022975,0.0015803219,-0.0020029363,0.0058500087,0.015931284,0.026104767,0.0004978526,-0.011894676,0.027498113,-0.011290209,0.024998285,0.024465535,0.01777542,0.027662037,-0.015255101,0.040570986,-0.02078751,0.026903892,0.0147121055,0.016925069,-0.0053428714,0.002819991,0.00097457453,0.03655487,-0.03854244,-0.04165698,-0.0017532096,-0.05098011,-0.037579387,0.016269377,0.0015675154,-0.0017083869,-0.00016872562,0.025879372,-0.008564986,0.034854166,-0.015111668,-0.014394504,0.019394161,-0.011208247,-0.011536093,-0.00835496,0.009896862,0.015388289,-0.014005187,-0.008718664,-0.010229831,0.02577692,-0.005122599,0.016576732,0.018492583,0.0020861786,-0.015347308,-0.009246292,-0.035366427,-0.008944059,0.031001972,-0.016402563,0.021576388,0.021002658,-0.029670095,-0.02114609,0.03647291,0.01722218,0.018656507,-0.01647428,-0.0273137,0.0065261917,-0.0051328447,-0.02477289,0.042456105,-0.008534251,0.02424014,0.027190758,0.02165835,-0.035755742,0.0045360615,-0.01986544,-0.01909705,-0.01188443,-0.0638071,-0.017160708,-0.0034577546,0.0055170394,0.0064134942,-0.022621399,-0.04634928,0.027252229,0.005424833,-0.009072123,0.043726508,0.0036037487,-0.027170267,0.01109555,0.034649264,0.008621335,-0.030715106,0.02012157,0.014179355,0.013841264,-0.0015009217,0.013288023,-0.017509045,0.017345121,0.0036575359,0.008775013,0.031616684,0.006725973,0.009620242,-0.011556584,-0.012314729,-0.016996784,0.034895148,-0.02221159,-0.010614026,0.017908607,0.01907656,-0.01135168,-0.08208454,-0.02366641,0.01156683,-0.023031207,-0.010931627,-0.002735468,0.0070896777,0.028215278,-0.00482805,0.03397308,-0.018892147,0.0034475094,-0.05454544,-0.048562244,0.0032067471,-0.005307013,0.0132777775,-0.00049369055,-0.02268287,0.012786008,-0.009415338,-0.022887774,0.008734032,-0.016330848,0.0037241299,-0.010624271,0.018318415,-0.0044156807,0.0061881,-0.021002658,0.046841048,-0.0024076218,-0.0013229114,0.015890304,-0.062126886,0.03721056,-0.013595379,0.007227988,-0.009072123,0.008836484,0.0273137,0.03503858,0.01081893,0.0006268781,0.045570645,0.061553154,-0.018338906,0.005829518,0.010491083,-0.015009216,-0.012949931,0.0050867414,-0.021043638,-0.030674126,-0.011505358,0.03194453,-0.0014817119,-0.039464507,-0.0073816655,0.053848766,-0.01805204,0.03546888,-0.00097457453,0.002260347,0.0030146497,0.019711763,0.016863598,0.0028148685,-0.007888803,0.0142818075,0.0077402475,0.03868587,-0.0050022183,-0.009369235,0.0006569734,-0.0071050455,0.019250728,0.01135168,0.01986544,0.009379479,-0.036206532,-0.019660536,-0.0045155715,0.024998285,0.011126286,-0.011874186,-0.041062757,-0.046062414,-0.0005810949,-0.019752743,0.0134826815,-0.022047669,0.009466563,0.021166582,-0.032292865,-0.0390547,0.026371142,0.037435956,0.045775548,0.024117198,-0.011781978,0.00094447925,-0.009020898,-0.012079089,0.034751713,0.00567584,0.012017618,0.023010716,0.010311793,-0.0043772613,0.02323611,-0.0008055288,-0.014476466,-0.023010716,-0.0034756837,-0.008539373,-0.012253257,0.0141896,0.035243485,0.030325789,-0.0019158522,-0.00541971,-0.008124443,-0.023113169,-0.000113657676,0.01156683,-0.030366769,-0.012437671,0.003229799,-0.028604595,0.011812714,-0.0070128385,0.022396004,0.005634859,0.008554741,-0.021535408,0.028666066,-0.013841264,-0.022293553,-0.0042850543,0.010501329,0.0050303927,0.011628301,0.0060702804,-0.018666752,-0.0047921916,-0.021330504,-0.0067464635,0.023400035,-0.011597565,-0.013329004,-0.025182698,0.0040109954,0.0012665627,-0.04483299,-0.037456445,0.0058653764,0.0023602378,0.002252663,-0.002819991,-0.0074636275,0.006941122,0.0070640645,-0.010675497,-0.0025139158,0.0014868345,0.015142404,-0.008416431,-0.038501456,-0.022969736,0.0033296896,-0.015644418,0.024117198,0.009251415,0.021699332,0.004653882,0.019855196,-0.0023756055,0.04376749,-0.0038317044,-0.022477966,-0.0010840701,-0.018625772,-0.01905607,0.000047984347,-0.018656507,0.019926911,0.001034765,-0.0024934253,-0.08298611,0.01933269,0.0017749807,0.013595379,0.0029583012,-0.00041172892,-0.0024127443,-0.027559584,0.013810528,0.058069788,-0.028092336,0.0014343278,0.030223336,-0.034608282,-0.009866127,0.035448387,-0.022396004,-0.0030377014,0.007924661,0.018687243,0.031186385,-0.011546339,-0.013011402,0.0015662347,0.0025062317,0.027784979,-0.016699674,-0.0072843363,0.00289683,-0.0147735765,-0.03622702,-0.0059729507,0.025408093,-0.05671742,0.036759775,-0.01913803,-0.0146506345,-0.013431456,0.029875,-0.008109075,-0.019342935,0.010614026,-0.0019939719,0.012437671,0.012990912,0.004384945,0.0041749184,0.017119728,0.00038515544,0.06798714,-0.017621743,-0.02784645,-0.0031478372,-0.009763675,-0.027887432,-0.010403999,0.034669753,0.003598626,-0.011597565,-0.008339592,0.0135441525,-0.012857725,0.0031811344,0.015337063,-0.018574545,0.011648791,-0.027108796,-0.028993912,0.025981825,-0.0038829304,0.006710605,0.007146026,0.014537937,0.0037241299,0.008605967,0.0053531164,-0.016720165,0.016300112,-0.023563957,-0.010716478,-0.01367734,0.016638203,-0.010972608,-0.037353996,0.033378858,0.0070691872,0.0016392318,0.010055663,-0.0034987354,0.008949181,-0.026555555,-0.012038109,0.022006687,0.015388289,0.012171296,-0.0047230367,0.01621815,-0.007197252,-0.0039700144,-0.0005042559,0.019834705,-0.006879651,0.006556927,-0.021350995,0.010583291,0.004664127,0.0123762,0.0026202097,0.0015316572,0.030756086,-0.025449075,0.005225051,-0.028440671,-0.0061419965,-0.008313979,0.0046205847,0.010911137,0.005476059,0.015787851,0.015316572,-0.015798097,0.009220679,0.027703017,-0.02268287,-0.0034142125,0.023113169,-0.025121227,-0.015746871,-0.0008010465,-0.0028789009,-0.0140564125,0.03622702,0.022539437,-0.006101016,-0.023686899,0.021166582,-0.02266238,0.009830268,0.028317729,0.019322446,-0.04384945,0.010890646,0.0012409497,-0.008815994,0.0026714357,0.028666066,-0.037374485,-0.004484836,0.014230581,0.0044566616,0.035817213,0.0152858365,-0.022826303,0.02678095,-0.00039347966,0.038562927,0.03145276,-0.01933269,0.010398877,0.009031143,-0.01986544,0.0069257542,-0.010368141,-0.020111326,-0.018717978,0.018093022,-0.015152649,-0.0041595506,-0.01544976,-0.04798851,0.00861109,0.01085991,-0.018431112,-0.030182356,0.022334533,0.00012598393]},{"id":"class-MessageReaction","type":"class","source":"main","text":"Class: MessageReaction\nDescription: Represents a reaction added to or removed from a message.\nProperties: channelId: string, client: Client, emoji: GatewayReactionEmoji, emojiIdentifier: string, guild: Guild | null, guildId: string | null, messageId: string\nMethods: fetchMessage() -> Promise — Fetch the message this reaction belongs to.\nUse when you need to edit, delete, or otherwise interact with the message.","meta":{"url":"/docs/classes/MessageReaction"},"embedding":[0.015889147,0.019585347,-0.017951356,0.03856217,0.033243254,0.048861947,-0.011730924,-0.0046061627,-0.012102798,-0.007499452,-0.0019678315,-0.056705102,0.010339215,0.020712236,0.01810912,0.021140454,0.019810725,-0.0011487234,-0.027811643,0.07798078,-0.013995972,0.005623181,0.028623004,0.059409637,-0.000696911,0.0021354563,0.0130268475,0.044669915,-0.044286773,-0.03071902,0.034054615,-0.018188003,0.03378416,-0.016970962,-0.019427583,0.012395789,-0.03856217,0.028307475,-0.048501343,0.03603794,-0.046563093,0.0026298794,-0.019585347,0.03644362,-0.064863786,0.007905133,-0.047870282,0.012057723,0.012745125,0.013240957,-0.05436117,-0.0016776574,-0.0026214276,0.055037305,-0.0069923517,-0.04512067,-0.026459375,0.027901795,-0.014356578,0.0237323,-0.037390206,-0.020306556,-0.01658782,-0.02537756,-0.019236011,-0.018785255,-0.054947153,0.02887092,0.014491804,0.012159143,0.021027766,-0.023168856,-0.0022735004,0.0047667446,-0.03276996,-0.00476111,-0.012147874,-0.0025974812,0.011843613,-0.04620249,-0.012328176,0.020915076,-0.03908054,-0.023980217,0.008412234,0.01008003,-0.013184612,-0.029975273,-0.008513654,0.013477603,0.015675038,0.0052992,-0.08659022,0.008755934,0.017849937,-0.034865975,-0.022785714,0.013793132,-0.005149887,0.02537756,0.050033912,-0.0640975,-0.034077153,-0.007155751,0.011911226,-0.013274763,-0.027698955,0.046292637,-0.03358132,-0.014288964,-0.031282466,-0.01823308,0.0037750811,0.02488173,-0.018266886,-0.040117282,0.022301152,-0.018469727,-0.01330857,-0.01708365,-0.05445132,-0.011911226,0.050214216,-0.032589655,0.007984015,-0.02846524,0.03991444,-0.015224283,-0.014446729,0.0057471385,0.0175006,0.008508019,-0.03849456,-0.023078706,-0.027698955,0.010136375,0.04462484,-0.05386534,-0.04104133,-0.008981313,0.015167939,-0.026391761,-0.007398032,0.0178274,-0.02293221,0.015066518,-0.047149073,-0.0141312,0.0060344953,-0.020870002,-0.016137064,0.0050428323,-0.045300975,-0.00614155,0.02099396,0.011753462,0.024115445,0.0017001951,0.0023523828,-0.03092186,0.029975273,-0.05458655,-0.011082962,-0.012632436,-0.024453511,-0.0044314945,0.007657217,0.017838668,-0.00018611291,0.003783533,0.041086406,-0.010333581,-0.031778295,-0.011775999,-0.039711602,-0.012091529,-0.010525152,-0.009088367,-0.021895472,0.011353416,0.03910308,-0.009048926,-0.074374735,-0.08523795,-0.011144942,-0.005538664,-0.024633814,0.01638498,0.010333581,-0.0088460855,-0.031597994,0.040680725,0.04584188,0.022289883,0.01646386,-0.030471103,0.03450537,0.015190477,-0.012654974,-0.044354387,-0.0074374736,0.0013733971,0.03646616,-0.013443797,0.0065697683,-0.023213932,-0.018740179,-0.028217323,0.010671647,-0.0010839272,0.036421083,-0.03867486,0.0055189435,0.012316907,-0.057651687,-0.001977692,-0.061663415,0.0045441836,-0.071084216,0.003597596,-0.044422,0.00476111,0.08465197,-0.016711777,-0.037345134,0.04248375,0.022503993,0.0005412593,-0.0046343347,0.019359969,-0.030042885,-0.0076515824,-0.016858272,-0.07423951,0.013883283,-0.002721439,0.025738167,0.02476904,0.034077153,-0.05977024,0.0053245546,-0.028352551,0.018537339,0.035474494,0.0044399463,0.019630423,0.01647513,0.025197258,0.019405045,0.030673943,0.041807614,0.03211636,0.0064852512,-0.005904903,0.012756394,-0.029299138,0.0075388937,0.027158046,0.03799873,0.009432069,0.035564646,-0.014153738,-0.028690618,0.011753462,-0.047915358,0.009567295,0.051115725,0.01320715,-0.023980217,0.030696481,0.029051222,-0.024746502,0.04660817,-0.003760995,-0.002645374,0.022492724,-0.013263495,0.0088348165,0.018007701,0.016159602,0.0048850677,0.013973435,0.038629785,-0.010153278,-0.04349795,0.03173322,0.034370143,-0.03155292,-0.0069867177,0.03184591,-0.010012417,-0.017185071,-0.005161156,-0.054721773,-0.00721773,0.0358351,0.043520488,0.0017185071,0.06103236,0.04043281,0.008062897,-0.0008958775,-0.0075839693,-0.03430253,0.029637204,0.024295747,0.053910412,-0.034550443,0.019123321,-0.025152182,0.029254062,-0.03274742,-0.023912605,-0.015370779,-0.05291875,-0.014007241,-0.027315812,0.028397625,0.0073754946,0.036781687,0.0255804,-0.0040680724,0.00012325359,-0.016847005,-0.051025577,-0.04013982,0.026481913,-0.05016914,0.054631624,0.06504408,0.06508916,-0.043565564,0.047239225,0.036398545,0.06080698,0.008502385,-0.0053076516,0.042303447,0.041334324,0.027405962,0.079423204,-0.026256535,0.0047047655,-0.01433404,0.012102798,-0.026481913,-0.023619613,-0.018559877,0.020092446,-0.02713551,-0.026121309,0.009809577,-0.04403886,-0.087176204,0.050394516,-0.03166561,-0.0047808303,-0.008023457,0.009325014,0.015291896,0.008896796,-0.0062317015,0.0017720344,0.037232444,0.020227674,0.034234915,-0.0474646,0.0025087388,0.046518017,-0.053775188,-0.014525611,-0.036285855,-0.015032711,-0.010316677,-0.034144763,0.0041018794,-0.009279938,-0.012745125,-0.004194848,0.00885172,0.0071219443,0.028037021,-0.007668486,0.029389288,0.0067218984,-0.046022184,-0.05476685,-0.021117916,-0.027924333,0.06599067,0.051250953,-0.027811643,-0.052332766,-0.0036764783,-0.0056992457,0.038449485,-0.0015184842,0.01535951,0.03621824,0.017354105,0.0058203866,0.026391761,0.011573159,0.0099391695,-0.028104635,0.028194785,-0.030358415,0.019427583,0.018886674,0.005842924,0.040996253,0.010981542,0.014457998,0.061798643,-0.014469267,-0.04032012,0.033017874,0.019371238,0.011218189,0.013894552,-0.0058710966,-0.036781687,-0.0016706144,-0.021478523,0.003921577,-0.005141435,0.027991945,0.0017973895,-0.0019974124,-0.029299138,-0.06919104,-0.025039494,0.06233955,-0.023687227,0.07374368,-0.0386974,0.011629504,0.0034454658,-0.035068814,0.006676823,-0.009454606,0.007448742,0.0028510315,0.037345134,-0.0019410679,0.008817914,0.0073135155,-0.043588102,0.0047442066,-0.014345309,-0.03775081,-0.0037018333,0.0015184842,0.0057076975,-0.043452874,-0.028938534,0.027270736,0.015179208,0.018075313,-0.01515667,-0.0040286314,0.019371238,0.023574537,0.06901074,-0.01781613,-0.013218419,-0.04624756,-0.035429418,-0.003746909,-0.0066711884,-0.008936237,0.008209393,0.0292766,0.035902712,-0.010632207,-0.024656352,0.03153038,-0.011499912,0.034888513,0.040387735,0.014672107,0.05968009,0.0011874603,-0.040680725,-0.06261,0.060942207,-0.03263473,-0.02783418,0.020971421,0.048095662,0.004538549,0.01238452,-0.035677336,-0.0094151655,-0.003859598,-0.004437129,0.008254468,-0.051476333,0.03603794,-0.04768998,-0.020182598,-0.00050921337,-0.03295026,0.00017818947,-0.0021101013,0.030020347,0.008322082,0.0046061627,0.01166331,0.028487777,-0.015539812,0.0077755405,-0.0030876785,-0.031350076,0.029547054,-0.024092907,-0.051656634,-0.02794687,-0.010880122,-0.0044681183,0.037728276,0.005831655,0.030538717,0.005490771,-0.011133673,0.014446729,0.0069754487,-0.035767484,-0.011009715,0.022503993,-0.0007169837,-0.013421259,0.06675696,0.017725978,0.0066204784,-0.0083333505,-0.05305398,-0.02056574,0.014097393,-0.059229333,-0.0025636745,-0.016328635,0.026684754,0.0011698526,0.006795146,0.03193606,-0.02537756,0.062159248,0.0024594374,0.030651405,0.01946139,-0.017106188,0.002790461,-0.027608803,0.0020143157,-0.013657906,0.0004356134,-0.019123321,0.036781687,0.0077642715,0.00037222583,-0.0019143042,-0.009854652,-0.0094208,-0.0528286,-0.009313745,0.030133037,0.018300692,-0.05679525,-0.0050231116,-0.0057471385,0.006665554,-0.004510377,-0.025670553,0.012745125,0.040275045,-0.022909673,0.025602939,0.0011761914,-0.028420163,0.007279709,-0.033017874,0.043993782,-0.028284937,-0.016137064,0.009539123,-0.029817507,-0.036308393,-0.019607885,0.038629785,0.010046223,-0.011483008,0.016565282,0.049177475,-0.009539123,-0.0036821128,0.0006307062,-0.008085435,0.00043420476,-0.0053583616,0.031485304,0.03141769,-0.0565248,0.024295747,0.011674579,0.041289248,0.008778472,-0.044579767,-0.042731665,0.041401934,-0.026684754,0.025309948,-0.019224742,-0.013883283,-0.03051618,-0.013725519,0.014277696,0.009685619,0.01913459,0.0006979674,-0.029118836,0.024904268,0.0077360994,-0.017725978,0.0047047655,0.027067896,-0.0064739827,-0.025850855,0.026436837,-0.0029693549,0.039553836,-0.013083192,-0.004473753,-0.036511235,0.012677511,-0.0368493,0.039779212,-0.015911685,0.009967341,0.0057443213,0.04320496,-0.006023227,0.0053865337,-0.004115965,0.036308393,0.017455526,0.030133037,-0.024859192,0.013691712,-0.0077755405,-0.013579023,0.0049047885,0.03360386,-0.05057482,-0.022909673,-0.0011043521,-0.019979758,0.05949979,0.0033299597,-0.017016038,-0.0178274,0.03376162,-0.0021706717,0.042957045,-0.011640773,0.013748057,-0.017523138,-0.007814982,0.022966016,0.0006595827,0.037119754,0.010975908,0.025242334,-0.008812279,0.01627229,-0.046698317,-0.004600528,-0.013545217,-0.011922495,-0.0024073187,0.036173165,-0.001929799,-0.0230449,-0.010023686,0.034077153,-0.02722566,0.008062897,0.008744665,0.020881271,0.0159793,0.006626113,-0.020768581,-0.019934682,-0.038021266,0.02109538,-0.002012907,0.029592128,0.022560336,0.016103256,-0.0006888115,0.01218168,-0.0099053625,-0.013398721,-0.017511869,0.036421083,-0.024430973,-0.008941871,-0.0049554985,0.03624078,-0.00373564,-0.037367668,-0.0076234103,0.014401653,0.0051048114,-0.024723966,-0.0093588205,-0.0069416417,0.004978036,0.023304084,-0.00802909,0.0049949395,0.026256535,-0.02578324,-0.0055865566,-0.021839127,0.025648015,0.0062317015,0.05548806,-0.027991945,0.031800833,-0.007747368,0.026639678,-0.0048681647,-0.0071726544,-0.006479617,0.010147643,-0.015269359,0.027090434,0.008609439,0.005651353,-0.02190674,0.019236011,0.017883742,-0.027000282,-0.03563226,-0.03624078,0.01140976,-0.0103842905,-0.020599548,0.022695564,-0.015641233,0.005780945,-0.05990547,0.017883742,-0.021501059,-0.02077985,-0.01504398,-0.007781175,-0.05539791,-0.0016748401,-0.015956761,0.025039494,-0.0023340709,0.024385897,-0.0017776688,-0.0011346373,-0.025107108,0.0036567578,0.009065829,-0.013252226,-0.0015283445,0.015472199,-0.022177193,-0.015325703,0.028758232,0.003997642,0.006575403,0.0014522794,-0.00030496457,-0.0054654162,-0.018807793,0.0003792689,-0.0050822734,-0.015675038,-0.0073247845,0.010626572,-0.023574537,-0.022774445,-0.0072740745,-0.029547054,0.007882595,-0.015911685,0.013455066,-0.00977577,-0.02887092,0.02210958,0.000020358852,-0.053955488,0.033648934,0.046743393,-0.023709765,0.012159143,0.023416772,-0.00020319234,0.03040349,0.008440405,-0.066396356,0.029637204,-0.034077153,0.0376832,0.0029918926,0.01748933,0.00012501435,0.010339215,-0.023213932,-0.015731383,-0.00009719426,0.035474494,-0.015066518,-0.046427865,0.019033171,0.013860746,0.03182337,0.00844604,0.016768122,0.028825844,-0.0017283674,0.0319586,0.016035644,-0.002870752,0.006907835,-0.038336795,0.03581256,0.030741557,-0.008502385,-0.025016956,-0.042551365,0.04268659,-0.005738687,-0.020588279,-0.009499682,0.031350076,-0.016396249,-0.017996432,0.02672983,0.0027890524,0.0064007347,-0.005037198,-0.0028693434,0.012057723,0.010311043,0.0020692516,0.005040015,-0.024611276,0.025129646,-0.009618006,-0.026639678,0.012114067,0.01391709,0.028149711,-0.015246821,0.013894552,-0.037705738,-0.025918469,-0.023799915,0.008367158,0.026955206,-0.0013522679,-0.00034827943,0.010322312,0.009708157,-0.011336513,0.037660662,0.0046822275,0.03121485,-0.014649569,0.0028876555,-0.024723966,-0.0014762258,-0.009246131,0.0043836017,0.0040286314,0.033243254,-0.008045994,0.011342147,0.01152245,-0.0109082945,0.022064505,-0.026684754,-0.012035185,0.03509135,0.003544069,-0.0020946066,-0.022751907,-0.03633093,0.012339445,-0.04832104,0.0035891444,-0.0034651866,-0.028577928,-0.04976346,0.008840451,-0.034640595,-0.0034116593,0.03092186,0.008215028,0.02293221,-0.020926345,-0.006693726,-0.015798997,-0.00736986,-0.0056344494,0.0064120037,0.022966016,0.0528286,-0.0014466449,0.0028932898,-0.030471103,-0.03441522,0.023822453,-0.011032253,0.0020607999,0.02702282,-0.027901795,0.01852607,0.007645948,-0.025963543,0.0053470926,-0.018773986,-0.013860746,0.03031334,-0.030966936,0.010322312,0.026481913,0.022154655,-0.025828317,-0.0011149168,0.0007004325,0.018368306,0.009798308,0.01617087,-0.034550443,-0.023574537,-0.00644581,0.014153738,-0.00609084,-0.05089035,0.052242618,-0.0007747368,0.019010633,0.0052992,-0.009048926,0.04881687,0.013725519,-0.0064120037,-0.005473868,0.02089254,0.0074149356,0.03646616,0.0028792038,-0.03633093,-0.029794969,-0.044782605,-0.009139077,-0.014424191,-0.039891902,0.016238485,-0.00957293,0.00081276934,0.024498587,0.0011733741,-0.0068120495,0.019472659,0.04002713,0.013657906,0.0046568727,0.008874258,0.0010867445,0.0001621665,0.0030369684,-0.0024171788,0.020306556,-0.024656352,0.048997175,-0.0178274,-0.028780768,0.008778472,-0.028848382,0.04034266,0.011775999,0.017128726,0.015956761,-0.030065423,-0.023011092,0.02528741,-0.028983608,-0.01014201,0.051250953,0.020836195,0.0489521,-0.0130268475,0.03292772,0.010068761,-0.017973894,0.04309227,-0.018334499,0.04291197,0.013195881,0.02783418,-0.015753921,0.021151723,0.0038793185,0.000943066,-0.039779212,-0.026481913,0.013139537,0.02774403,-0.028442701,-0.0057865796,-0.002882021,0.050935425,-0.01576519,0.012722587,0.03387431,-0.033423554,-0.05332443,-0.013533948,0.02138837,-0.024904268,-0.04554889,-0.0013339559,0.04665324,-0.032274127,0.008688321,0.01925855,-0.005826021,0.044872757,0.0027890524,0.007758637,-0.03950876,-0.037593048,-0.028532853,-0.0140410485,0.039959516,0.01627229,-0.00035320956,-0.003645489,-0.035451956,0.038539637,-0.02427321,0.013646637,0.003721554,-0.036826763,-0.006817684,-0.005572471,0.0119901085,-0.0025932554,0.026076233,-0.010502614,-0.030110499,-0.024926806,0.01781613,-0.021286951,0.02517472,0.017061112,0.024656352,-0.0015339789,0.0044934736,0.03376162,0.0056598047,-0.010147643,0.00447657,-0.0024678889,-0.022143386,-0.024115445,-0.00931938,0.02508457,-0.025264872,-0.03757051,-0.04832104,-0.0035018104,-0.010666013,0.014976367,0.017568214,0.0014762258,0.026504451,-0.021005228,-0.016137064,0.039779212,-0.0111055,-0.03867486,0.04032012,-0.030628867,-0.021005228,-0.0331531,0.02846524,0.009516586,-0.020791119,0.010463173,-0.018007701,0.011719655,0.005341458,0.015889147,0.00068986794,0.0009078507,-0.0002944,-0.008355889,-0.015573619,0.0059725167,-0.0083333505,-0.021861665,0.00455827,0.032815035,-0.009888459,-0.026459375,0.012677511,-0.010389925,0.00056485354,-0.016948424,-0.021501059,0.027293274,-0.005690794,0.0075050867,0.032702345,-0.0012656383,0.008558729,0.019607885,0.046427865,-0.03328833,-0.024904268,-0.006614844,-0.0046794103,-0.0088911615,-0.043137345,-0.013669175,0.0070825033,-0.0039920076,0.00952222,-0.022154655,-0.04403886,-0.0021255962,0.01781613,-0.016756853,0.01791755,-0.016869541,0.013759326,-0.022177193,0.04872672,0.014007241,0.00023189282,0.036533773,0.01842465,0.016418787,-0.004084976,0.057922143,-0.023687227,-0.021839127,0.011071693,-0.00024298564,0.007206461,-0.0067613395,-0.017940087,0.008947506,-0.0033017874,0.027518652,0.016001837,-0.017804861,-0.015990568,0.018379575,0.0061077434,0.012305638,-0.05557821,-0.037502896,0.031305,0.008733396,0.0019326162,0.025850855,0.005826021,0.043114807,-0.009550392,0.0029299138,-0.021816589,0.025467712,-0.00609084,0.00086981815,0.017782323,-0.038832627,0.01494256,-0.021760244,-0.017478062,0.0061978945,0.015089056,0.0047667446,-0.053820264,-0.04329511,-0.03400954,-0.010722358,-0.015945492,0.005372448,0.021140454,-0.023281546,0.021253144,0.007730465,-0.0029299138,0.021410909,-0.0109308325,0.00079023157,-0.019788187,0.06017592,-0.022684295,0.014908753,0.0011240727,0.011674579,0.035136428,-0.012531016,-0.008423503,0.06878536,0.0036314027,-0.013849477,0.02099396,-0.011094231,-0.0127902,0.014311502,-0.019303624,-0.010998446,0.014525611,0.016125795,0.013421259,-0.01218168,0.011753462,0.0311247,-0.001460731,0.07090391,0.021162992,-0.021951815,0.00711631,-0.011821075,0.021005228,0.008384061,0.0068514906,-0.0021509512,0.027991945,0.01596803,-0.016734315,-0.003358132,0.01130834,-0.022267345,-0.023551999,0.0010458947,0.034618057,-0.0014064995,-0.016396249,0.0030848612,0.0036539405,0.0051865107,0.008237565,0.015055249,-0.015911685,-0.005842924,0.006152819,-0.0009909588,-0.011821075,-0.054496396,0.0003852555,-0.048456267,-0.040297583,-0.03337848,-0.0008106564,0.045932032,0.004099062,0.00450756,-0.044106472,-0.0104293665,0.041740004,0.0052569415,0.025242334,0.041807614,0.01044627,0.033423554,0.020712236,0.021884203,-0.0026115675,0.009499682,-0.046157412,0.011539353,-0.029051222,0.023281546,-0.0061866255,0.0041046967,0.030966936,-0.035902712,0.021940546,0.015269359,0.030426027,0.01115621,0.01351141,0.011708386,-0.0227181,0.0062993146,-0.03644362,-0.04347541,0.023551999,-0.026684754,0.014818602,0.0018114755,0.0045413664,-0.018413382,-0.018266886,-0.018458458,-0.035564646,-0.044354387,0.03247697,0.018988095,0.004073707,-0.016317366,-0.023754839,-0.005510492,-0.012068991,0.011037887,-0.0156525,0.0003813818,0.0073022465,-0.03358132,-0.00024615502,0.00915598,-0.02508457,-0.012260563,-0.030065423,0.009122174,0.01812039,-0.024498587,-0.0175006,-0.008023457,0.0007993875,-0.03288265,0.010874487,0.0066204784,0.010113837,-0.0034060248,-0.017354105,0.002620019,-0.012452134,-0.047915358,0.04482768,0.029524516,0.022368765,-0.00017968612,-0.01340999,0.021467254,-0.018064046,0.0011459062,-0.0376832,-0.015134132,-0.047374453,0.008153048,0.017883742,-0.027270736,-0.015911685,0.007865692,0.024498587,-0.041401934,0.026143845,0.011246362,0.008479847,0.020622086,0.026233997,0.025309948,-0.02159121,-0.016632896,0.016655432,-0.056569874,-0.006073937,0.00080220477,0.014615762,-0.007347322,0.0065472303,0.0078206165,-0.0022904037,0.0047132173,-0.0013741014,0.004597711,0.01667797,0.02201943,-0.017793592,0.0024073187,-0.010705454,0.0030876785,0.01739918,0.013083192,-0.01913459,0.009561661,-0.0033919387,-0.000075888995,-0.018909212,-0.0076008723,0.0013283215,-0.0009325014,0.031305,0.00010546985,0.017342836,-0.0065303273,-0.003963835,-0.012452134,0.023461848,-0.018897943,0.025760703,0.018830331,0.0048822504,0.009313745,-0.016452594,-0.008739031,0.011015349,-0.013319839,-0.019224742,0.022267345,-0.009330649,0.03427999,-0.013432528,0.0074656457,-0.057246007,0.008733396,-0.013680443,-0.020543203,0.005287931,-0.034347605,0.022898404,-0.012102798,-0.002681998,0.021050304,0.02528741,0.0057978486,-0.025512788,-0.006564134,-0.013725519,-0.015720114,0.007747368,0.008592536,0.012869083,0.000023704306,-0.0093813585,-0.021365833,0.013376183,0.022571605,-0.028577928,-0.04841119,0.017748516,0.022188462,0.0011705569,-0.022402572,0.009099636,-0.02621146,-0.012835276,0.029592128,0.009832115,0.0044653015,-0.022447648,0.022075774,-0.0030482372,-0.044196624,0.0002658756,0.012902889,0.015021442,0.008062897,-0.004662507,0.020182598,0.020757312,0.009037657,0.010959004,0.03932846,-0.0002732708,-0.045503814,0.02578324,0.016001837,-0.011499912,-0.008581267,0.02436336,0.004259644,-0.0045639044,0.00839533,-0.03603794,0.022943478,0.0067106294,0.018492263,-0.028532853,-0.01966423,0.010570227,-0.01863876,-0.034437757,-0.0036370372,-0.014773527,-0.008068532,0.029299138,0.013150806,0.022436379,-0.00041906218,0.019157128,-0.03775081,0.024295747,-0.01638498,-0.0023115329,-0.035136428,0.011212555,-0.0063331216,0.0024847924,-0.012857814,0.04863657,-0.017895011,-0.022639219,-0.019709304,-0.009488413,0.008226297,-0.0033271424,0.002743977,0.03040349,-0.002474932,0.014210082,0.02702282,-0.004099062,-0.0019805091,-0.0015889148,-0.042528827,0.0023199846,-0.024025293,-0.043565564,-0.038224105,0.019236011,-0.040184893,0.007961477,-0.036083017,-0.029592128,-0.0038567807,0.00931938,-0.003946932,-0.012745125,0.017185071,0.025107108]},{"id":"class-PermissionsBitField","type":"class","source":"main","text":"Class: PermissionsBitField\nProperties: Flags: Record","meta":{"url":"/docs/classes/PermissionsBitField"},"embedding":[-0.001795852,0.02318356,0.008712955,0.026264505,-0.005028385,0.011799362,-0.010941723,-0.031399414,0.004599566,-0.019479873,0.040336337,0.008183076,0.03434925,0.026198953,0.024297945,-0.008155762,0.006435022,0.00415709,0.037124287,0.00242679,-0.030918697,0.0141046075,0.015371947,-0.0066808425,-0.020594256,-0.0005380727,-0.01206157,-0.050824657,0.017644417,0.0105647985,0.01370037,-0.016366152,0.011111066,0.003321302,-0.0146399485,-0.029148793,0.024276095,-0.0009894257,-0.014825679,-0.013154103,-0.019097485,-0.010067696,-0.039527863,-0.0018873516,0.015262693,0.03561659,0.009718086,0.027247785,-0.01036268,0.02133718,-0.008991551,0.029542105,0.009832801,0.013263357,0.042215493,0.062842526,-0.0038156733,0.01699982,0.01855122,-0.021959923,0.02348947,-0.0060580983,-0.017720893,-0.0076859733,0.0024445436,0.037430197,-0.05807908,0.07346195,0.06314844,0.023074307,0.021599388,0.021457357,0.0027723038,0.0489455,0.032579347,0.011777511,0.043460984,0.018048653,0.0016852329,-0.02100942,-0.007866241,-0.0032557498,-0.033300422,-0.00023523612,0.042237345,0.039615266,-0.030809445,-0.002156388,-0.0023503127,-0.03620656,-0.030263178,-0.008226777,-0.03194568,0.0025797447,-0.008674716,-0.031443115,-0.06091967,0.004820804,-0.03878494,-0.020047989,0.05318453,0.067562275,-0.009958442,0.0031983918,-0.00037931398,0.012017868,-0.0050720866,0.02316171,0.012706164,-0.025281224,-0.05283492,0.022615444,0.013514639,0.028973987,0.021064045,-0.020801838,-0.0044247606,-0.013383536,-0.0016428973,0.0058505167,-0.045755304,-0.03000097,-0.0019119337,-0.0068720356,-0.014880306,0.00040116464,-0.028952137,-0.062187005,0.031552367,-0.025565283,0.02279025,-0.022145653,0.06231811,-0.03450221,-0.019818557,-0.0117665855,-0.0005633376,0.02971691,-0.061138175,-0.036621723,-0.008838596,0.007183408,0.031246457,-0.004299119,0.022549892,0.024166841,-0.06174999,-0.017928474,0.040030427,0.028536975,0.003414167,-0.0015227186,-0.010586649,0.007942718,-0.0005008583,-0.055675507,0.036578022,0.02515012,-0.035966203,0.014552546,0.014869381,-0.0023066113,-0.011974167,-0.0031874664,0.0039467774,0.008794894,0.029935418,-0.03225159,-0.03852273,-0.00012751915,0.016682986,-0.01990596,-0.029476553,-0.05641843,-0.03524513,0.023576872,0.02041945,0.0005128079,-0.056942847,-0.04212809,-0.0036135544,0.02164309,0.0045804465,-0.049469918,0.015229917,0.014181085,0.022528041,0.011395125,0.0075821825,0.007440153,0.031880125,0.04955732,0.026657818,0.021697715,-0.019796707,-0.016704837,-0.022243982,-0.017808296,-0.036075454,-0.09902724,-0.043155074,0.0051540267,0.01451977,0.0004861774,0.0007217549,-0.061444085,0.0023516784,-0.011635481,-0.04466277,0.00055446074,0.020179093,0.0035889726,-0.021654014,-0.0101550985,0.005271474,0.013689444,0.033147465,-0.025652686,-0.04145072,-0.013481863,0.009843727,-0.041996986,0.001910568,0.004288194,0.0014913082,0.05519479,-0.020594256,0.032426395,0.012640612,-0.02381723,-0.06896071,0.007959107,-0.011285871,-0.036665425,-0.03520143,0.012039719,-0.023380216,0.030197626,-0.0066152904,-0.029192494,0.0033158392,0.008636477,-0.0072981236,0.03271045,-0.026832623,0.01650818,0.010728679,0.008183076,0.025565283,-0.010827007,-0.029498404,0.03939676,-0.014432367,-0.014814754,-0.032207888,-0.0020962986,0.0011546713,0.059914537,0.020222794,-0.0023462158,-0.028515125,-0.08049787,-0.030525386,-0.054451868,-0.021806968,0.0030754819,0.06922292,-0.008303255,-0.028187364,-0.05060615,-0.0065169623,0.023707977,0.04212809,-0.018693248,-0.008303255,-0.05781687,0.017382208,-0.014913082,-0.0220364,-0.0013151371,0.022571743,0.013175954,-0.023270963,0.039047148,0.007767913,-0.014814754,0.022112878,-0.011624556,0.039243802,-0.023402067,-0.009335699,-0.009810951,0.06651344,0.00267261,-0.020714436,0.020026138,0.032491945,-0.08626644,0.052616414,0.033060063,0.002906139,0.021304403,0.0026780728,-0.01288097,0.023292813,0.026351908,0.029236196,-0.013339834,-0.02547788,-0.04328618,0.039265655,-0.025543433,-0.06572682,-0.03714614,-0.07049026,-0.031923827,0.038457178,-0.012782642,0.011864914,-0.017557014,-0.0044083726,0.01370037,-0.027335187,-0.029301748,0.015066037,0.03201123,-0.0066152904,0.06437207,0.045449395,-0.013307058,-0.01271709,0.027357038,-0.018441966,0.045056082,-0.0071233185,-0.0067136185,0.014814754,0.050125435,-0.044203904,0.006637141,0.05349044,0.0053889216,-0.007287198,-0.0016879642,0.010013069,-0.01646448,-0.036927633,0.025980446,0.021424582,-0.0152408425,-0.008592776,0.018420115,-0.054670375,-0.04492498,-0.03649062,-0.06362915,0.019742081,-0.082726635,-0.034436654,0.048377384,-0.033081915,0.039418608,-0.022396937,-0.05121797,0.00068795466,0.0013779579,-0.04142887,-0.02545603,0.016726688,-0.023926483,-0.00040082322,0.019993363,0.024494601,-0.016377077,0.040576693,-0.0037938226,0.028231066,-0.01955635,0.007511168,-0.049076606,0.0066808425,0.043766893,-0.0325575,-0.03196753,0.0228121,-0.0021085897,-0.015546751,0.037058737,-0.040817052,0.0048972815,0.024407199,0.038719386,0.08246443,0.009958442,-0.026592266,0.03393409,0.026002297,0.07044656,0.008472597,-0.0489455,-0.036665425,-0.007407377,0.026810773,0.04531829,0.018649546,-0.05423336,-0.031727172,0.024713108,0.0749915,0.0085436115,0.0441165,0.020758137,0.03321302,-0.025281224,0.058647197,-0.006555201,-0.0015131589,0.008303255,-0.000092011804,-0.0041625528,-0.018201608,0.013492788,-0.0022355968,-0.025521582,0.0015568602,0.0054544737,-0.034065194,-0.041669227,0.021577537,-0.025521582,-0.0033076452,0.0012850926,-0.007751525,0.026963726,0.018791577,-0.04053299,-0.0065606637,-0.043111373,0.0032776005,-0.009761787,-0.006844722,0.01845289,0.028012559,0.012192674,0.004755252,-0.03301636,-0.0018040459,-0.042630658,0.036752827,-0.016377077,-0.0034278238,0.015000485,-0.07796319,0.016672062,-0.047066342,0.02248434,0.042892866,-0.003927658,-0.02082369,-0.010308053,-0.019796707,0.011012738,0.05248531,0.062230706,-0.021817895,-0.0015896362,-0.04343913,-0.010493784,0.025587134,0.0027682066,-0.02908324,0.026920024,0.031530518,0.022702847,0.00014151723,-0.012039719,0.026963726,-0.038631983,-0.00017890235,-0.03133386,0.022101952,-0.011001812,-0.015852662,-0.0065114996,-0.013907951,0.08919443,0.09902724,0.0358788,-0.020102616,-0.037058737,-0.039353058,-0.021096822,-0.006096337,-0.008532686,-0.028187364,0.01288097,0.012520433,-0.03788906,0.05344674,-0.030241327,0.00452582,-0.022418788,0.005484518,-0.010548411,0.0024814168,0.039680816,0.0016019272,-0.020004287,-0.043788742,-0.007729674,0.018398264,0.055019986,-0.042040687,-0.0057904273,-0.017906625,-0.030787595,-0.0028405872,0.052004594,-0.031464964,-0.010887097,-0.0023066113,0.0018996426,0.015022336,-0.007101468,0.0027067517,-0.01955635,-0.03983377,0.023686126,0.0011696937,-0.040336337,-0.0016319719,-0.013733146,0.003397779,0.0057849647,-0.005230504,-0.012924671,0.002922527,0.03168347,0.0023475813,-0.0033021825,-0.013110402,0.0037228079,0.0038784938,0.015513975,-0.030132074,-0.018802501,-0.003780166,-0.0056320103,0.017404059,0.02543418,0.002299783,-0.011941391,0.0069430503,-0.021774193,0.017174626,0.017185552,0.032120485,-0.007735137,-0.017983101,0.013307058,0.005653861,-0.04951362,-0.0053643393,-0.012870044,0.008341493,0.003954971,0.010515635,-0.003971359,0.06174999,-0.009887428,-0.025412329,0.041057408,-0.016125795,0.056025118,-0.022659145,-0.004891819,-0.021315329,-0.037779808,0.037277244,0.014563471,0.01191954,-0.03032873,0.023707977,0.012323778,0.013317984,0.003108258,0.073505655,0.0408389,-0.0057685766,-0.010138711,-0.02447275,-0.0050065345,0.009821876,0.0057904273,0.024691258,0.031049801,-0.0036381364,0.039374907,-0.040008575,0.015863586,0.023096157,0.018507518,-0.026264505,0.0019774856,0.014290338,0.010493784,0.022243982,-0.006642604,-0.019949662,0.017010747,-0.031443115,0.018802501,-0.03292896,-0.012214525,0.009472265,0.0035643906,-0.0051840716,-0.0048672366,-0.014159234,0.027269635,-0.02442905,0.033846688,-0.018463816,0.021697715,-0.02442905,0.0064514102,-0.011985092,-0.01763349,-0.0037364645,0.01124217,0.013416312,-0.02021187,0.029279897,0.013929802,-0.020058915,-0.008445284,0.04955732,0.030394282,-0.0013021633,-0.02805626,0.060570057,0.001393663,0.024385348,-0.01069044,0.025718238,-0.04175663,0.03286341,0.023139859,-0.016497256,-0.0146727245,0.0080082705,-0.015754333,0.002775035,-0.00054831523,-0.0028597065,-0.010220651,-0.046935238,0.0053588767,-0.04442241,0.023423918,0.018398264,0.019512648,-0.0152408425,-0.02246249,0.016868718,0.02009169,-0.05086836,-0.019938735,-0.018299935,0.009816414,0.011548079,0.030219477,0.0060253222,-0.0031901977,-0.010695903,-0.010237039,-0.0014325845,-0.0033103765,0.0063093808,0.042390298,0.009729011,0.009920204,-0.023445768,-0.048464786,-0.024997165,-0.030700192,-0.0053261006,0.04304582,0.014039055,-0.008844059,0.015371947,0.017578864,0.008237703,-0.030896846,0.00091226544,0.024822362,0.030481685,-0.012509508,-0.00051349076,-0.02836217,-0.0061673517,0.012826343,-0.042827312,-0.016398927,0.011493452,0.0032147798,-0.0025592598,0.0066262158,0.011963242,-0.008046509,-0.004927326,-0.005296056,0.0019788514,0.021413656,0.0117665855,-0.00419806,-0.0061837398,0.01140605,0.035114028,0.029476553,0.012596911,-0.009576056,0.0041707465,0.007964569,0.033540778,0.029432852,0.02770665,0.035594743,0.0008603701,-0.0007654563,-0.0058013527,-0.0023748947,-0.009663459,-0.021610312,-0.012443956,0.027619246,0.0013410848,0.029651359,-0.011220319,-0.006762782,-0.0012762157,0.019654678,0.023249112,-0.018562144,-0.029891716,0.007855316,-0.03749575,0.02164309,-0.05611252,0.040554844,-0.0014940395,0.0049655647,-0.016366152,-0.037583154,0.0456679,0.016224122,-0.040620394,-0.00888776,-0.018583994,0.0035889726,-0.05030024,0.0782254,-0.021435507,-0.04461907,-0.053577844,-0.01050471,-0.01517529,-0.032513797,0.00062615826,-0.000079166,-0.034458507,0.034524057,-0.017043522,-0.019742081,0.0653335,0.008488985,0.017393133,-0.055063687,-0.06437207,-0.0391127,-0.00063981494,-0.017480535,-0.012968373,-0.023096157,-0.022025475,-0.043963548,-0.006391321,-0.0022205743,-0.024079438,0.0018586726,-0.024560153,0.04955732,-0.008898686,0.0046432675,0.020965718,0.0029279897,0.020922016,-0.05349044,-0.01709815,0.021916222,-0.021468284,-0.046498224,0.007341825,0.016256899,0.036774676,-0.013066701,-0.03061279,0.014039055,-0.017076299,0.021763267,0.019130262,0.0146399485,0.001885986,0.04304582,0.0064787236,0.062449213,-0.010985424,-0.016551882,-0.010368143,-0.04527459,0.0424777,0.03434925,0.024079438,-0.010368143,0.009149968,0.03035058,-0.0440728,0.024188692,0.042499553,0.036425065,0.02250619,-0.00088495214,-0.02606785,-0.01824531,0.008374269,-0.012542284,0.02868993,0.008964237,-0.0014639948,-0.029891716,0.038916044,0.012553209,-0.027204083,0.021621238,-0.027007427,-0.013175954,-0.008904148,0.007341825,-0.02215658,0.030831296,-0.006882961,0.026351908,-0.0014298533,-0.015754333,0.001996605,-0.02543418,-0.013416312,-0.014781978,0.008297792,0.004741595,0.010581187,0.037605003,-0.037583154,0.011149304,-0.017021671,-0.00075657945,-0.006254754,0.037605003,-0.016737614,0.0101550985,0.03710244,-0.020288346,0.008046509,0.009199132,-0.020922016,-0.051436476,-0.005845054,0.008357882,0.0023707976,0.045449395,-0.030765744,0.005320638,0.01887898,-0.027684798,0.023926483,0.036621723,-0.03939676,0.059608627,0.013831474,-0.020779988,0.00045237713,-0.0035097639,-0.008434359,-0.02442905,0.011613631,-0.030197626,0.015656006,0.014268488,-0.01402813,-0.012848194,-0.03581325,0.01222545,-0.020834614,0.021479208,-0.02348947,-0.0067573194,-0.010149636,-0.022080101,-0.024166841,0.026133401,-0.0074674664,-0.007729674,0.021927146,0.039943025,0.022112878,-0.009166356,-0.018157907,-0.0068064835,-0.013951653,-0.0110182,-0.027794052,0.0012591449,0.018037727,0.06415357,0.0017439566,0.005653861,-0.02578379,-0.00913358,0.06393506,0.017884774,-0.0047170133,0.022593593,-0.041581824,-0.01066859,0.00066678686,-0.046454523,-0.018037727,-0.0069375876,0.03030688,0.027357038,0.045143485,-0.006762782,0.013307058,-0.016617434,-0.0055637266,0.002865169,-0.0015049649,-0.039680816,-0.004400179,-0.0018204339,-0.0039822846,-0.063803956,0.025084568,-0.01709815,0.01857307,-0.016409853,0.049120307,-0.039593413,0.02316171,-0.0011539885,-0.010023994,-0.0047252076,-0.011176618,-0.010635814,0.0056320103,0.026679669,0.05768577,0.026504863,-0.028165514,0.016857792,0.033387825,-0.03332227,0.014301264,-0.014443292,-0.03909085,-0.018321786,-0.0140718315,-0.004416567,-0.029760612,0.015929138,-0.031923827,0.049819525,0.042586956,0.020954791,-0.020801838,0.029782463,0.019807633,0.0055473386,0.04610491,0.036075454,0.0093794,0.0111656925,0.016672062,-0.008259553,0.0039495085,-0.0069211996,-0.014727351,0.041931435,-0.0049655647,-0.026876323,0.021162374,-0.03740835,-0.02041945,0.027204083,-0.016442629,-0.006866573,0.029848015,-0.0028050798,0.008423434,-0.038697537,-0.025346776,-0.022746548,-0.0038429867,-0.029214345,0.0014803829,0.005910606,0.0062984554,-0.019436171,0.00059918634,-0.017240178,-0.0036954945,-0.0037446585,-0.038304225,0.039047148,-0.03847903,0.0034851818,-0.0062602167,0.024887912,0.02009169,-0.012203599,-0.0455805,0.028121812,0.04044559,-0.008319642,-0.013394461,-0.0060362476,-0.020878315,0.015000485,0.016693912,0.0260897,0.010329904,0.0075002424,-0.018671397,0.0039795535,-0.010247964,-0.0037747032,-0.013547415,-0.011832138,0.0030153925,0.0024322527,0.012826343,0.0009860115,-0.0036791065,-0.014476068,0.00028491224,0.01003492,0.011362349,0.026635967,0.028646229,0.0260897,0.013405386,-0.00029293555,-0.0117338095,0.020528704,0.0067409314,0.018868053,-0.010264352,-0.014694575,-0.0070031397,0.018037727,-0.026504863,-0.023052456,0.04140702,-0.04044559,0.03194568,-0.0040396424,-0.0015787109,-0.030743893,-0.01578711,0.00092045945,0.00921552,-0.037910912,0.008609164,0.020878315,-0.019621901,0.013317984,-0.017371282,0.053796347,-0.0016210466,0.03129016,-0.020004287,0.030940548,-0.026941875,-0.005686637,-0.028821034,0.016093018,0.0016510913,0.005107594,0.02156661,-0.030918697,0.012105271,0.008920536,0.0021673134,-0.020441301,0.027881455,-0.042434,0.011722884,-0.016595583,0.000022170749,0.01566693,-0.008696566,0.0071233185,0.028602527,-0.01271709,-0.06970364,0.005992546,-0.0054599363,0.012006943,0.0033021825,0.004042374,0.028602527,-0.011722884,0.001902374,0.00032980854,-0.019512648,-0.026461162,0.008631014,0.02086739,-0.005164952,0.015950989,0.0025674538,0.012312853,0.02205825,0.03885049,0.002041672,0.011220319,-0.007112393,0.0005107594,-0.01419201,0.011832138,0.018955456,0.0056483983,-0.00009226787,0.029935418,-0.031552367,-0.015961913,-0.035376236,0.045056082,0.02093294,0.011996018,0.0071069305,-0.012269151,-0.024101289,0.012148973,-0.005910606,-0.02672337,0.047197446,0.011274946,0.0031246457,-0.024210542,0.00074838544,-0.009248296,-0.013602042,0.0006165986,0.008450747,0.01988411,0.019742081,0.014399592,-0.0015322783,0.015142514,-0.03168347,0.0087020295,-0.02234231,-0.008106599,-0.0017221059,0.015765259,-0.01648633,-0.0012181748,0.016082093,0.053359337,-0.004763446,-0.077526174,-0.0069539757,-0.011722884,0.01353649,0.021599388,0.008237703,-0.034414805,0.0074019143,0.0012045181,0.024013886,-0.009745399,-0.038326073,-0.034065194,0.0046596555,-0.016672062,-0.02283395,0.012006943,-0.024560153,-0.011438826,-0.022396937,-0.00407515,0.0039850157,0.03382484,-0.012105271,0.0073363623,-0.009259221,-0.031421263,0.009089879,-0.021752343,-0.006014397,0.03426185,0.020801838,0.0070413784,-0.021162374,0.0008719783,0.035441786,0.0097891,0.035114028,0.0005858711,-0.0024404468,0.020353898,-0.024691258,0.015940063,-0.0070577664,-0.005522757,0.024101289,0.0015595915,0.014454218,-0.027641097,0.038063865,-0.03882864,-0.00636947,0.005320638,-0.033540778,0.0015950989,0.010728679,-0.00039877472,0.038347926,0.010073159,-0.013121327,-0.010373605,0.013656668,0.010898022,0.014377741,-0.0034005104,-0.017786445,0.016388003,-0.007489317,-0.0091772815,-0.011296797,-0.0031983918,-0.016245972,-0.0034742565,-0.010903484,0.020583332,-0.023533171,0.0096197575,0.0011464773,-0.03889419,0.020222794,-0.0020553286,-0.013427237,0.004173478,-0.02805626,0.035114028,0.007735137,-0.009565131,-0.017480535,-0.01878065,0.021675864,0.009925667,0.023598723,0.02742259,-0.014902157,0.036446918,0.02138088,0.017622566,0.001554129,-0.022145653,0.01335076,0.007259885,-0.0125859855,0.016049316,-0.026351908,0.0038702998,0.018813428,0.0029088703,0.0033404212,0.026592266,-0.013394461,0.00023813816,0.0049464456,-0.006653529,-0.008226777,-0.023139859,0.006435022,-0.013143178,0.001554129,-0.018299935,-0.013547415,0.0132524315,0.019731155,0.027051128,-0.010805156,-0.016114868,0.018004952,0.027160382,-0.0020512317,-0.0046268795,-0.023380216,-0.045755304,0.01568878,0.014781978,-0.022123802,0.012214525,0.008625552,0.0149240075,0.0092701465,-0.027575545,0.0021195149,0.00849991,-0.0001072902,0.030175775,0.014836605,-0.06275512,-0.04337358,-0.030241327,-0.010182412,-0.011635481,0.028864734,-0.006833797,-0.023402067,-0.0125859855,-0.0058013527,0.05279122,0.017349431,0.04164738,-0.022440638,-0.021992698,-0.013361685,0.005779502,0.013296133,-0.010368143,0.04271806,0.010821545,-0.028733632,-0.03266675,-0.016377077,0.008226777,-0.015186216,0.016311524,-0.027160382,-0.0035261519,-0.006746394,0.0088604465,-0.030678341,-0.02381723,-0.00708508,0.006254754,-0.0120506445,-0.011657332,-0.008647403,-0.0077023613,0.0047497894,-0.010750529,0.031508666,0.0053943843,0.029432852,0.017600715,-0.0063803955,-0.014246637,-0.03102795,0.007888092,0.0074019143,0.020157242,-0.043985397,0.0056156223,-0.005894218,-0.026679669,-0.016038392,0.010903484,-0.009690772,0.02670152,0.0065989024,-0.0117338095,0.006555201,-0.014650874,-0.037058737,-0.0070359157,-0.041887734,-0.0045777154,-0.016530031,0.019152112,0.019458022,-0.00012401963,0.0031983918,0.008106599,-0.023576872,0.0013383535,0.002439081,-0.013121327,-0.025106419,-0.0011512572,-0.0059706955,0.0013274282,-0.013307058,-0.021402732,0.0026056925,0.009865577,-0.023904633,0.019840408,0.03301636,-0.008652865,-0.0009853287,-0.013022999,-0.018278085,-0.014836605,-0.025171971,0.016355226,0.01650818,-0.0059379195,-0.009690772,0.016540958,-0.021632163,-0.05244161,-0.021697715,-0.003651793,0.025346776,0.0277285,0.025324926,0.0125859855,0.047809266,-0.0010809253,0.023292813,0.014344965,-0.016595583,0.0014080026,0.0123347035,-0.011788436,-0.03362818,0.03686208,-0.021763267,-0.06677565,-0.011460676,0.016956119,0.0015568602,-0.0034524058,-0.016355226,0.029520255,-0.013995354,-0.020277422,0.0260897,0.008931462,-0.0054626674,-0.012312853,-0.0082923295,-0.009860115,0.0025606253,0.022396937,-0.023729827,-0.007511168,0.0099966815,-0.015098813,-0.017414983,0.034065194,0.0097126225,-0.030263178,0.00055616786,-0.015819885,0.0078116143,0.048377384,-0.017622566,-0.040685948,0.015164365,-0.0076805106,0.031661622,-0.02009169,0.04531829,0.005148564,-0.05847239,0.06258032,0.012520433,0.00079754944,-0.0036818378,-0.0024363496,-0.012520433,-0.0046132226,-0.009614294,-0.0040724184,-0.027859604,0.028733632,0.053053427,-0.010799694,0.01337261,0.03032873,0.021675864,0.028099962,0.028995838,0.001672942,0.024975315,-0.010827007,0.024210542,0.051786087,-0.002434984,0.015513975,-0.031180905,0.02100942,-0.00015278398,-0.018223459,0.02166494,0.003151959,0.026330058,-0.00079345243,0.017152775,-0.018835278,0.021828819,-0.020157242,-0.0012987492,-0.006418634,0.0024008423,0.0018054115,-0.005845054,-0.0069211996,0.05392745,-0.008925999,-0.004228105,0.040991858,0.0069375876,-0.009559668,0.0077897636,-0.00022584715,-0.001926956,-0.021140523,0.014224786,0.01878065]},{"id":"class-RateLimitError","type":"class","source":"main","text":"Class: RateLimitError\nProperties: global: boolean, retryAfter: number","meta":{"url":"/docs/classes/RateLimitError"},"embedding":[0.0029281797,0.025792131,0.0016874768,-0.016397806,-0.039678346,0.058442846,-0.019018074,0.009961849,-0.0046790503,-0.035935104,0.007444218,-0.01511786,-0.036949404,0.021143269,-0.011978368,-0.031877916,-0.014163937,0.025864583,0.03354426,0.04520868,0.01329454,-0.00078411825,0.004286614,0.017677754,-0.01295644,-0.0045583006,0.032385066,0.012159493,0.010094673,-0.017170604,0.024777835,-0.01903015,-0.04617468,0.007794392,-0.0070276316,0.0010520316,0.018523002,0.029245572,-0.015890658,-0.047744423,0.018390177,-0.058104746,-0.03279561,-0.019066375,-0.06592932,-0.0021991536,-0.0010686347,-0.019090524,-0.0053793984,0.011936106,-0.03477591,0.02301489,-0.011797244,0.05380606,0.051680863,0.00037187128,-0.035717756,0.068827316,0.041296393,0.005334117,0.015951034,0.021433068,-0.032699015,0.011386695,-0.036055855,0.054675456,-0.01907845,-0.032264315,-0.002298772,0.036249053,-0.042697087,0.025574783,0.036007553,-0.0069551817,-0.006260871,0.036780354,0.00943055,0.06708852,0.046875026,0.018184902,-0.022531891,-0.021807393,-0.046778426,0.012497592,0.014659012,-0.011199533,-0.08737447,-0.04250389,0.021674568,-0.02291829,0.021976443,-0.012135343,-0.030284021,0.042890288,0.008005704,-0.058587745,0.011767057,-0.023413364,0.009804874,0.02639588,0.043952886,0.010619935,-0.008355878,0.025405733,-0.017689828,0.00856719,-0.04602978,0.04093414,-0.007993629,-0.03750485,-0.029921772,-0.0022731128,-0.06670213,-0.0012437217,0.014719387,-0.06481843,-0.021203645,0.032457516,0.0052133673,0.021505518,-0.03054967,-0.050714865,0.043252535,-0.014550337,0.012231943,-0.009394325,0.038688198,0.031781316,-0.01046296,0.04240729,0.046971627,0.018679976,0.0011584422,-0.024632934,0.0038700274,0.0039937957,-0.016542707,-0.013982813,-0.022060966,-0.004597544,0.0065687825,0.024681235,0.0386399,0.03470346,0.028110527,0.028279575,-0.002790827,-0.0029628954,0.028352026,0.03434121,-0.027289428,0.01701363,-0.058056448,0.012274205,-0.028714275,0.0008490212,0.012594192,0.039943993,-0.06404563,-0.014767686,-0.043832134,0.0013161715,0.025164234,-0.047140677,-0.013451515,0.010589747,-0.0036073967,-0.041030742,-0.0753961,-0.03880895,0.055786353,-0.008162678,-0.023196014,-0.042383138,0.0383018,-0.027458478,0.005651085,0.006435958,0.016373657,0.031032668,0.012256092,0.03463101,-0.0031062856,-0.0030398732,-0.022085117,-0.029076524,-0.040499445,-0.0009893927,0.008923401,-0.021795318,0.031733017,-0.0047092377,-0.00849474,-0.015999332,-0.039219495,-0.0047001815,0.006749907,0.022217942,-0.04552263,0.011392732,-0.03400311,-0.0025508371,0.037166752,-0.00856719,0.015697459,0.008168716,0.003547022,-0.06250004,-0.032240164,-0.0048209312,0.04148959,0.03707015,-0.028327875,0.008023816,-0.011851582,0.0036134343,0.025985332,0.007371768,0.006345396,-0.013330765,-0.05404756,-0.042721238,-0.025140084,0.008229091,0.007903066,0.008633602,0.011205571,0.046464477,-0.0014044697,0.025767982,-0.0015938958,-0.03453441,0.007456293,-0.047285575,0.034655157,0.013161715,-0.004060208,0.006761982,0.005512223,-0.044967182,0.0035440032,0.0140190385,0.03006667,0.029390473,-0.0012633435,-0.009907511,0.009847136,0.018993925,0.00033375967,0.014296763,-0.00082789,0.0005305439,0.008458516,-0.039364398,0.0075891176,-0.01698948,0.0191992,0.03330276,-0.0061159716,-0.044001184,0.012461367,-0.017098155,-0.025164234,-0.008621527,-0.031757165,-0.020249723,0.06322453,-0.011259908,0.020648196,-0.043349136,-0.008319653,-0.0013259824,0.06491503,-0.06317624,0.039654195,0.02087762,0.043373287,-0.011585932,-0.029825171,0.043856286,0.00031583587,-0.027844876,0.00607069,0.020334246,0.04863797,0.015492184,0.018088302,0.009279613,0.035138156,0.0061703087,0.0025870618,-0.011320283,0.035717756,-0.04668183,-0.01223798,0.025381584,-0.008802651,-0.025212534,0.007915142,-0.0379154,0.051777463,-0.00278328,0.0006573311,-0.04610223,-0.020032372,0.055061854,0.024089562,0.0008241166,0.028376175,0.024125786,-0.013463589,0.015564634,-0.040571894,-0.009841099,-0.0046820687,-0.03083947,0.06105104,-0.052453663,0.047406327,0.01043881,0.0020919882,-0.03380991,0.013113416,0.03774635,-0.02642003,-0.039774947,-0.018426402,-0.006774057,0.058780946,0.022857916,-0.012992666,-0.03059797,0.020503296,0.02457256,-0.0050594117,0.012751167,-0.04214164,0.034075562,-0.014405437,0.023570338,0.04148959,-0.02272509,-0.009798837,0.05815305,0.025019335,-0.010970108,-0.00611899,-0.037335802,0.06399733,-0.015407659,-0.009062263,-0.006846507,-0.051391065,0.000056271238,-0.028207125,0.016120082,0.027506778,-0.027047928,-0.010408622,0.03511401,-0.02656493,0.05742855,-0.019537298,-0.01718268,-0.010185236,0.01869205,-0.03047722,-0.062258538,0.01715853,-0.0038247462,-0.028182976,0.009038114,-0.009273576,-0.028955774,0.014936736,0.026927179,-0.050908066,0.05617275,0.011163308,0.039581746,0.03769805,0.009979961,0.0074985554,-0.005020168,0.015323135,0.033834063,-0.028545225,0.012074968,-0.048106674,-0.060085043,0.009315838,0.03376161,-0.00093430065,-0.044073634,0.04223824,0.010481073,0.022302466,0.015347284,0.020165198,0.009339988,0.020116897,-0.035548706,-0.03023572,0.03504156,0.023787687,-0.0058020223,-0.017979627,0.03393066,0.071000814,-0.04658523,0.004694144,0.0051680864,0.01747248,-0.01235873,0.06051974,0.006774057,0.018076228,-0.028279575,-0.025598932,0.0023666937,-0.018462626,0.05317816,-0.0067378324,0.005433736,0.011585932,0.000693556,0.009822987,-0.01682043,-0.025067635,-0.0734641,0.030936068,0.009255463,0.054240756,0.003136473,0.052260462,0.05322646,0.013089266,-0.04578828,-0.0077883545,-0.025816282,0.025671382,0.0132341655,0.017122304,0.014972961,0.023666937,0.02301489,0.0148642855,-0.014791836,0.029583672,-0.012437217,-0.051439364,-0.015661234,-0.031829618,0.025647232,-0.05255026,-0.008108341,0.02627513,0.003616453,0.012932291,-0.027941477,-0.02719283,-0.011199533,-0.028424475,-0.019537298,0.05718705,0.025381584,0.020153122,0.0036073967,0.02685473,-0.009267538,-0.030042522,0.02627513,0.049000222,-0.02615438,0.017967552,0.022990739,0.014381287,-0.009587524,0.05709045,-0.021107044,-0.021964367,-0.0025976275,0.024294836,-0.04132054,-0.009913549,0.041199792,0.03021157,-0.007456293,-0.027410178,0.027724126,-0.009798837,0.007033669,0.03347181,-0.0121111935,-0.04989377,0.012328543,-0.018559227,-0.05312986,0.026057782,-0.016977405,-0.016808355,-0.062644936,-0.027458478,0.019090524,-0.01660308,0.01334284,-0.0032542038,-0.06592932,-0.012992666,0.0029689327,-0.042866137,0.008802651,-0.01324624,-0.005479017,-0.039074596,0.0024632935,-0.017074006,0.03347181,-0.009792799,0.020128973,0.029801022,-0.027410178,-0.03535551,0.021107044,0.01312549,0.0083498405,0.022193791,0.0056842915,0.0032028854,0.017895103,0.007184606,-0.028496925,-0.03001837,0.010420698,-0.0023817874,0.004177939,-0.0046911254,0.0051801614,-0.009466775,-0.066798724,0.03436536,0.010058449,-0.026130231,0.01329454,-0.04516038,-0.0003375331,0.021891918,0.017508704,0.0186196,0.033665013,-0.022471515,-0.038591597,0.008253241,-0.013053041,0.029414622,-0.009853174,0.022374917,-0.0072268685,-0.040088896,0.0036798466,-0.0019984073,-0.0038670085,0.028931623,-0.002546309,-0.03006667,-0.005980128,0.0086034145,-0.020020297,0.040740944,0.018679976,-0.015540484,0.03504156,-0.02670983,0.017375879,0.01562501,0.012437217,-0.0017569079,-0.02644418,0.027458478,0.0044767945,-0.007033669,-0.026806429,0.00669557,0.05317816,-0.03784295,0.023002815,-0.005300911,0.03303711,-0.028835025,0.031201718,-0.012044781,0.02291829,0.0022655658,0.0023666937,-0.028762573,-0.015866509,0.00030621365,0.024149936,-0.009853174,-0.0034685347,0.027772427,-0.022048892,-0.018221127,0.013451515,0.018945625,0.044387583,-0.004636788,0.03905045,-0.0095996,-0.050666567,0.0025070652,-0.019066375,-0.028931623,-0.07008312,0.059408844,-0.025647232,0.0056208977,0.0033900472,0.0015682365,-0.002387825,-0.010227498,0.024113711,-0.0041869953,-0.007975517,-0.041030742,-0.013874139,-0.04559508,-0.058056448,-0.01535936,0.007939291,0.050908066,0.03023572,-0.020370472,-0.008247203,-0.017726053,0.024801984,-0.020394621,0.033568412,-0.02111912,-0.01874035,0.01742418,-0.008850952,0.02651663,-0.014151863,0.018559227,-0.014900511,0.020962145,0.002526687,-0.016083857,0.031032668,-0.0072751683,-0.026878878,-0.023570338,0.0019048263,0.0012573061,-0.017532853,-0.04141714,0.01776228,0.003169679,-0.008035892,-0.026106082,0.021662492,-0.006058615,0.028810874,-0.036683753,0.04107904,-0.018824875,-0.01336699,-0.019730497,-0.009750537,0.033423513,0.040740944,-0.0040300204,0.0010656159,-0.048154972,-0.001094294,-0.025043484,-0.031757165,-0.048251573,-0.012871916,-0.036925253,-0.009376213,-0.04907267,-0.031467367,0.036466405,-0.043011036,0.011048596,0.015854433,0.000801476,0.01735173,-0.020913845,-0.0057265535,0.015178235,-0.011561782,-0.0073898807,-0.017581154,-0.009587524,0.0077098673,0.017858878,0.025043484,0.020672346,0.00052752515,-0.01526276,0.020430846,-0.037432402,0.035935104,0.01519031,0.027965626,0.0053793984,0.018064152,0.009563375,0.028086375,-0.034244608,0.015806133,-0.031733017,0.029197274,-0.0038579523,0.018704126,0.022990739,-0.0035379657,0.007975517,0.03125002,-0.027313579,0.0044043446,-0.011948181,0.062644936,0.03847085,0.04909682,-0.018993925,-0.022471515,0.051149566,0.004866212,-0.0072812056,0.0066533075,-0.019790873,0.0020482165,-0.02651663,0.034486108,-0.021324394,0.020551596,0.017496629,0.022471515,-0.00052186503,-0.022857916,0.02260434,-0.009822987,-0.006834432,0.008060041,-0.0076011927,-0.0024029186,0.0019440699,0.0076374174,0.0018459607,0.04919342,0.020141046,-0.047889322,0.024222387,0.0058110785,-0.063127935,-0.029559523,-0.04163449,0.03327861,-0.017834729,0.01869205,0.010625972,0.0062246462,-0.03303711,-0.0031757166,0.02274924,0.010499185,-0.0008603415,-0.017206829,0.0007780808,0.019923698,0.03832595,0.014067338,-0.034824207,0.010656159,-0.05626935,0.008096267,0.008150604,0.014236388,-0.013910363,-0.024946885,-0.027869027,-0.03347181,0.007317431,-0.018172827,-0.0065687825,0.0052526114,0.0031153418,-0.004220201,0.014695236,-0.04970057,-0.0043711383,0.0112417955,-0.010161086,-0.033834063,0.008959627,0.028569374,0.023968812,-0.009533187,-0.013572264,-0.011990444,0.012195718,-0.00647822,-0.007407993,0.039605897,0.028134676,-0.035766054,-0.0123647675,0.027265279,0.0012988137,0.00381569,-0.010106748,0.036224905,0.0015954052,0.00655067,0.021107044,-0.04168279,0.013644714,0.02095007,0.03504156,-0.011845544,0.004510001,0.0049446994,0.0039273836,0.05013527,-0.020611972,-0.00928565,0.027313579,0.044073634,-0.018124526,-0.014188088,-0.040523592,-0.036104154,-0.03364086,-0.022205867,-0.014912586,0.06066464,0.034969106,-0.023244314,-0.02082932,0.0052465736,0.021336468,-0.0119723305,-0.01708608,-0.029197274,0.010161086,0.0015025788,-0.027168678,-0.019090524,0.048686273,-0.011036521,0.029728571,-0.012328543,-0.047430474,0.022109266,0.03798785,-0.039702494,-0.03047722,0.031443216,-0.0042896327,-0.0023817874,-0.009925623,-0.003405141,0.027941477,-0.014139787,0.016832506,-0.0024180124,0.04566753,-0.032240164,0.02620268,0.031491518,-0.02668568,0.0025855526,-0.006122009,0.033495963,-0.021469293,0.015226535,-0.019476924,-0.001969729,-0.0014180541,-0.017689828,0.027265279,0.021638343,-0.011857619,0.014453737,0.02702378,-0.009503,0.006822357,0.025357433,0.028134676,-0.005777872,0.008555115,-0.009635825,0.029100673,-0.023642788,-0.029801022,0.017387955,0.028883323,0.033012964,-0.013693014,0.02683058,0.0191509,0.01706193,0.014248462,-0.03033232,0.031105118,0.03429291,0.03296466,0.029004073,0.028231276,0.051101264,-0.042672936,0.039195348,0.0005939375,0.00058714533,0.01053541,-0.02123987,0.024391435,-0.025309132,0.02087762,0.02313564,-0.0041205827,0.021650419,0.009690162,0.010426735,0.023280539,0.01776228,0.024379361,0.014960886,-0.025647232,0.0070397067,0.001790114,-0.009774687,-0.015685383,0.017979627,0.004718294,0.016627232,-0.04115149,0.04542603,-0.0114651825,0.0023410344,-0.0097807245,0.016699681,0.026878878,0.035162307,-0.02625098,-0.024729535,-0.011616119,-0.03405141,0.054965254,-0.016011408,0.008555115,-0.038760647,-0.00040903955,-0.003710034,0.04965227,0.037021853,-0.03487251,0.012763241,-0.047841024,-0.028979924,0.005675235,0.036635455,0.008398141,0.03059797,-0.025260834,-0.0037583339,0.00876039,-0.031950366,0.031733017,0.000427152,0.029511223,-0.006749907,-0.0007169512,0.047092374,-0.028134676,-0.024198236,-0.005349211,0.025381584,0.030936068,-0.03038062,0.03001837,-0.01070446,0.016409881,-0.016421957,0.023220165,0.06027824,0.020454995,-0.013620564,-0.047358025,0.00021017992,0.0376739,-0.0074261054,-0.048154972,-0.01740003,-0.027530927,-0.027917327,0.020201422,0.0031576043,-0.027748277,-0.0052405363,-0.023280539,-0.020515371,0.018897325,-0.007758167,0.029535372,-0.043663085,0.005850322,0.007317431,0.024488036,-0.008138529,-0.014803911,-0.01579406,0.01336699,-0.0042051077,-0.0011629703,0.01927165,0.062355135,0.036369804,-0.004298689,0.044484183,-0.010982184,-0.004597544,0.008217016,0.027772427,0.020744795,-0.029293872,-0.03813275,-0.017315505,0.015516334,0.008138529,0.018897325,0.029052373,-0.018583376,0.027555078,-0.021879843,-0.0036073967,-0.016301207,0.018921476,-0.035814356,-0.0037824837,-0.0064299204,-0.014876361,0.013886213,0.012654566,0.003930402,0.009092451,0.04264879,-0.016120082,-0.04156204,-0.008476628,0.01677213,0.012702866,0.054916956,0.0019123731,0.042697087,-0.0026127212,0.026106082,-0.035572857,-0.005768816,0.016337432,0.05341966,0.02620268,-0.02284584,0.0078004296,-0.027579227,0.0089113265,0.026299281,-0.055303354,0.0068404693,0.014284687,-0.005068468,-0.010305986,-0.016264983,-0.03871235,-0.016421957,0.0073596933,-0.029366322,0.040402845,-0.021179494,0.032771464,-0.026927179,0.031757165,0.046488628,0.023099415,0.014743536,-0.03376161,0.014852211,0.045305282,0.0008127963,-0.0106803095,0.017967552,-0.018317727,0.010088636,-0.022060966,-0.014079413,-0.02442766,-0.0063152085,-0.009961849,0.0028693143,-0.013898289,0.004715275,0.009400363,-0.019187124,-0.020672346,-0.0043952884,0.026347581,-0.031877916,-0.006755945,0.019645974,0.024222387,0.00013923948,-0.029173123,0.007878916,-0.0004252653,0.00535223,-0.0005169596,-0.021469293,-0.03064627,0.028134676,-0.002627815,0.029221423,-0.011773094,0.04511208,-0.011127084,-0.024053337,-0.006846507,0.03013912,0.013934514,0.039992295,-0.02625098,0.016180458,-0.011036521,-0.036538854,0.012594192,0.002054254,0.015371434,-0.0028979923,-0.002677624,0.020696495,-0.004214164,0.022519816,-0.03673205,-0.040475294,0.055351656,-0.018510927,-0.026009481,0.008923401,-0.040716793,-0.005771835,-0.0057325913,-0.005346192,0.010656159,-0.01878865,0.010970108,0.0064902953,-0.023099415,-0.0010158067,0.021662492,0.012099118,0.00066072715,0.025454033,0.009967886,-0.010064486,0.025985332,-0.008114379,0.047406327,-0.009267538,-0.020937994,-0.022169642,-0.0062548337,0.015830284,-0.013753389,0.023679012,-0.0038821022,0.034824207,-0.010312023,0.008289466,-0.046367876,0.014163937,0.024753684,0.014369212,0.036055855,0.028714275,-0.03064627,0.009684124,0.0013380575,0.04520868,-0.037166752,-0.008730202,-0.027120378,-0.00069393334,0.0034775909,0.009877324,0.03832595,-0.008331728,0.0040420955,0.005113749,-0.025454033,0.034969106,-0.007311393,0.015419735,0.00376739,0.020696495,-0.001842942,0.018112453,-0.010263723,0.027216978,0.028158827,0.0021508536,-0.00054412824,-0.029390473,-0.010951996,-0.0019138824,-0.019162975,-0.013596415,-0.016337432,-0.006345396,0.006097859,0.004425476,-0.013572264,0.012654566,-0.04240729,0.017726053,0.00280743,0.031950366,0.01168857,-0.007975517,-0.011785169,0.039291948,-0.012032705,-0.0048752683,-0.015842358,0.021674568,-0.03050137,0.0066774576,0.04945907,-0.033665013,-0.0053160046,-0.012340617,0.007673642,-0.00015669157,-0.051874064,-0.015806133,-0.012702866,-0.023691088,-0.01334284,0.014236388,0.009792799,-0.0023651845,-0.0086879395,-0.023509962,-0.040257946,-0.013934514,-0.011827432,-0.0043258574,-0.0016995518,-0.0109036965,0.020177271,0.0052495925,-0.008826802,-0.017363803,0.032191865,0.005560523,0.012165531,0.0046730125,0.004902437,-0.020008223,-0.023232238,0.003230054,0.0010973128,0.007848729,-0.0058684344,0.0027289428,-0.002574987,0.028786724,-0.015806133,-0.01509371,0.025140084,0.01694118,0.022688866,-0.028496925,-0.012594192,-0.0067982073,0.028158827,-0.012980591,0.020382546,-0.019018074,0.0038488961,0.0042654825,-0.0085188905,-0.0031877917,0.02029802,-0.0070819687,-0.047092374,0.017436255,-0.001531257,0.0026247962,0.0019667104,-0.02454841,-0.014381287,0.012739091,-0.014369212,-0.0038428586,0.013789614,-0.013717164,0.018655825,0.025115933,0.022302466,-0.0036073967,-0.0063936957,0.029728571,-0.002677624,0.03042892,0.012473443,0.0064902953,-0.034824207,-0.009243388,0.050666567,-0.028883323,-0.0018127545,0.007969479,0.0065144454,0.029414622,-0.048927773,-0.01701363,-0.003124398,0.007836655,-0.031443216,-0.025792131,-0.0026519648,-0.012050819,-0.029293872,-0.013016815,-0.0062789833,0.0066291573,0.012968516,-0.013089266,-0.021928143,-0.035790205,0.01696533,0.01869205,-0.00035357015,0.027530927,0.016808355,0.017267205,-0.02658908,-0.004096433,-0.010692384,0.032216016,-0.047188975,0.013825838,-0.0023259406,-0.04569168,-0.039412696,0.014598637,-0.02320809,-0.018752426,0.015866509,-0.04199674,0.017858878,0.00211161,-0.02457256,-0.012509667,-0.025623083,0.03750485,-0.010716534,-0.03296466,0.019162975,-0.017846802,0.03076702,-0.003779465,-0.0017387954,0.02102252,-0.0043952884,0.026106082,-0.011072746,-0.009762612,0.05317816,-0.007208756,-0.036080007,0.00972035,-0.006188421,-0.0114108445,0.01026976,-0.02423446,-0.03330276,-0.036659602,0.034486108,0.0109036965,0.025284983,0.035258908,-0.021034595,0.039557595,-0.013886213,-0.018040003,-0.0010105239,-0.02107082,0.0020859507,-0.006206534,-0.0041960515,-0.027506778,-0.0008746805,0.0027998833,0.026299281,-0.014815986,0.007921179,-0.011024446,-0.00947885,0.008162678,0.021759093,-0.0038639898,0.03045307,0.0021644381,-0.03025987,0.013946588,-0.004588488,-0.007323468,-0.027965626,-0.036997702,0.020153122,-0.05680065,-0.007232906,-0.011217645,-0.043566484,0.02445181,-0.0017176642,-0.021034595,-0.029487072,-0.005629954,0.016349507,0.01509371,-0.015745759,-0.0093339505,0.009146788,0.012068931,-0.009062263,0.013379064,0.05284006,0.006460108,-0.03477591,0.013475665,-0.0008361915,0.00477565,-0.013354915,0.035814356,0.01041466,-0.005092618,-0.00832569,-0.02707208,-0.02642003,-0.001360698,-0.010040336,0.0131496405,-0.0039092707,0.011525557,-0.018341877,0.016301207,-0.028762573,0.0154801095,-0.036152456,-0.006755945,0.00611899,-0.0002486689,-0.009484887,-0.014031113,-0.019706348,-0.003556078,0.02078102,0.023147713,0.0054578856,0.032843914,0.016337432,-0.013572264,0.009617712,-0.006472183,0.023992961,-0.027530927,0.01878865,0.0118032815,0.00091392413,0.0032511852,-0.005325061,0.0032028854,-0.01701363,-0.009388288,-0.0055061853,-0.0053914734,0.018752426,0.010577672,-0.024367286,-0.005092618,0.022616416,0.023159789,0.014840136,0.020841395,-0.01648233,0.002937236,0.00415077,0.031370766,0.028955774,0.032167714,0.040499445,-0.0011667438,0.019488998,-0.030984368,0.005817116,-0.00012103269,0.0016995518,0.014284687,0.023884287,0.00775213,-0.025115933,0.011115008,0.018329801,0.012129306,-0.066315725,0.018172827,-0.014043188,0.02087762,-0.004340951,-0.012763241,-0.028062226,-0.040064745,0.009515075,-0.021131195,0.028714275,-0.02447596,0.024560485,0.006900844,-0.012714941,0.0023093377,0.025019335]},{"id":"class-RateLimitManager","type":"class","source":"main","text":"Class: RateLimitManager\nProperties: buckets: Map, globalResetAt: number\nMethods: getBucket(route: string) -> RateLimitState | undefined; getGlobalReset() -> number; getWaitTime(route: string) -> number — Returns ms to wait before we can send again (0 if no wait).; setBucket(route: string, limit: number, remaining: number, resetAt: number) -> void; setGlobalReset(resetAt: number) -> void; updateFromHeaders(route: string, headers: Headers) -> void — Parse rate limit headers and update state.","meta":{"url":"/docs/classes/RateLimitManager"},"embedding":[-0.022900827,-0.0024833635,0.025185054,-0.020593174,-0.033197414,-0.008018218,-0.017781818,0.01925778,0.006571542,-0.012030256,0.03774244,-0.003824614,-0.030081496,0.02149515,0.015954439,-0.035704207,-0.04263888,0.048449013,0.00949418,0.03659447,-0.010923285,-0.014443335,0.02682501,0.051447794,-0.027691845,-0.0014056774,0.0013968919,0.00010588338,-0.009710888,-0.02809012,0.037461303,-0.016259002,-0.024833634,0.056929935,0.03448595,-0.0073973774,0.021085162,0.060818974,-0.0032945564,0.017535826,0.0064075463,-0.048449013,-0.026005032,0.004079393,-0.068737626,0.021120302,-0.027527848,0.018027812,-0.030479772,0.038562417,0.0011267383,0.022303415,-0.011813547,0.0049052285,0.071080424,0.03188545,0.019117212,0.018531514,0.024622783,-0.001883022,0.024411932,-0.011526555,-0.08771427,0.03954639,-0.038632702,0.06878448,-0.015626447,0.0025858607,-0.007901078,0.020452606,-0.003315056,0.043880563,0.024716495,-0.052572336,-0.026309595,-0.021448294,0.004770518,0.07796824,0.031206038,0.031206038,-0.030198636,-0.025630185,-0.005731064,-0.0038041144,-0.0021773358,-0.028910099,-0.031908877,-0.060584694,0.034767088,-0.033408266,-0.010249731,-0.014431621,-0.0044952394,0.009295042,0.022842258,-0.046035934,-0.010419584,0.0033970538,-0.022151133,0.0066886814,0.06400518,-0.027738702,-0.0020045545,0.018144952,0.021776285,0.005555354,-0.0689719,0.043505717,-0.029566081,-0.015872441,-0.054868273,0.005162936,-0.023509955,0.0042258175,-0.013494503,-0.016950127,-0.033993967,0.026684443,0.007467661,-0.01330708,0.0073270933,-0.036008768,0.033853397,-0.019175783,0.004096964,0.0005648334,0.0320963,0.009869027,0.006032699,0.010325872,0.04999526,-0.0128033785,-0.0052068634,-0.05327517,-0.0152047435,0.03589163,0.016914984,0.02567704,0.0006497597,0.014677615,0.013435933,0.020675171,0.028113548,0.0021187658,0.012065398,0.0024291864,-0.032166585,0.020476034,0.0024072225,0.01277995,-0.012651097,0.01949206,-0.06016299,-0.008644916,0.015837299,-0.026918722,0.010999425,0.034087677,0.004820302,-0.020066045,0.010437155,-0.0089143375,0.0025272907,-0.040788073,0.056227095,0.0026283239,0.003499551,-0.0035961913,-0.04540338,-0.06742566,0.05618024,-0.008779626,-0.018929789,-0.022736832,0.0332677,-0.016200433,-0.0657857,0.029097522,0.0004066947,0.008896766,0.044278838,0.024318218,-0.018320663,0.0067589656,-0.03729731,0.017688107,-0.01519303,0.03378311,0.04331829,-0.056273952,0.014865039,0.058757316,-0.0022285844,0.023697378,-0.03666475,-0.018484658,0.027879268,-0.01878922,0.014736185,0.028792959,-0.046059363,-0.022104276,0.06484859,-0.032260295,-0.007122099,0.00354055,0.024669638,0.03415796,-0.01513446,0.0144081935,0.023193678,0.036149338,-0.014443335,0.005107295,-0.04231089,-0.0009693317,-0.049479846,0.03357226,-0.003001707,0.0255599,-0.04664506,-0.007678513,-9.895109e-7,0.009751887,0.004577237,0.0062494073,-0.0077897958,0.024201078,0.040647503,0.013670213,0.0089143375,0.0046035936,-0.030667195,-0.026965579,-0.036852177,0.010314158,-0.04680906,-0.022244845,0.023357673,-0.036641326,0.0042785304,0.0040413225,-0.0124871,-0.010390298,0.019210925,-0.013635071,-0.018531514,0.017863818,0.015521022,0.010753432,0.020335466,-0.015333598,-0.0075438023,-0.040061805,-0.0008726914,0.04437255,0.047957025,0.052431766,0.0019152354,-0.024716495,-0.03568078,-0.022490839,0.005107295,-0.007994791,-0.010050593,-0.010355157,0.018836077,0.004638735,-0.02682501,-0.027129574,-0.030362632,-0.001639957,0.021249156,-0.022162847,0.010308301,-0.005590496,0.058288757,-0.02408394,-0.022221416,0.034345385,-0.0018098097,-0.031744882,0.045122243,-0.010050593,0.03324427,-0.00992174,0.047371328,0.07318894,0.06110011,0.034813944,0.024201078,0.03062034,0.00013937804,-0.0408115,0.020862596,0.017852103,-0.014349624,-0.0038773268,0.020604888,-0.0103961555,0.085465185,0.015837299,-0.0473479,-0.017160978,0.010448868,0.05374373,0.023228819,-0.033642545,-0.021600576,-0.015111032,-0.04301373,0.034907654,-0.030924903,-0.00025075235,-0.031721454,-0.028113548,0.019820051,-0.025185054,0.0051248656,0.0015111032,0.013166511,-0.05182264,0.012287963,0.020159757,0.0040852497,-0.015567877,-0.013471075,0.025161626,-0.023064824,0.03324427,0.036313333,-0.023263961,0.015895868,0.013857637,-0.043294866,0.017383544,0.013834208,0.026684443,-0.011251276,0.055664826,0.03521222,0.005288861,-0.015064176,0.03441567,0.0190235,0.04596565,0.015731873,-0.014244198,0.019691197,-0.012533957,0.025161626,0.004205318,-0.045778226,0.012815093,-0.023135107,0.01519303,0.05261919,-0.0030251348,-0.07056501,0.024529072,-0.047066767,0.04043665,-0.0522912,-0.040178947,-0.037180167,0.018262092,-0.055758536,-0.06456745,-0.029987784,-0.015837299,0.033993967,0.0144081935,-0.026684443,0.008580489,0.00468852,-0.021401439,0.031018615,0.032166585,-0.011157565,0.020440891,0.032963134,0.01577873,0.0019562345,0.017980957,0.081576146,0.02042918,0.0058423467,0.011801833,-0.0007745868,-0.021647433,0.018484658,0.040319514,-0.012428531,-0.044513118,0.012744809,0.01324851,0.0034380527,0.00013873744,0.005979986,0.012112253,-0.009183759,0.025138197,-0.049479846,0.024857063,0.045051962,0.009330184,-0.018086383,0.026801582,0.045122243,-0.05126037,0.024810206,-0.017301546,0.01772325,-0.0010872036,0.09052563,-0.013201654,0.010419584,-0.019667769,-0.06110011,0.0048935143,-0.024318218,-0.0021041234,-0.010694862,0.006102983,-0.00044988998,0.0045538093,0.033173986,-0.026543874,-0.04345886,-0.0538843,0.02694215,-0.00811193,0.04425541,0.026871866,0.028558679,0.021869998,0.014876752,-0.023369387,0.005069224,0.0038978262,0.03106547,-0.0045860223,-0.022643121,0.05903845,-0.032658573,0.024318218,0.016575279,-0.0072450954,0.038656127,0.008281782,-0.015884155,0.013904492,-0.03450938,0.0451691,-0.063958324,-0.019714626,0.053603165,0.0069053904,-0.040342942,-0.02532562,0.0044864537,0.041561194,0.0068058213,-0.027598133,0.033642545,0.04619993,0.017617824,-0.0067472514,0.0019020572,0.021061733,-0.016071578,0.011175135,0.055805393,0.011456271,0.009705031,-0.0032916279,0.0008060681,-0.033525407,0.03680532,0.01769982,0.008006504,-0.022842258,-0.024857063,-0.045543946,0.008088502,0.06236522,0.03706303,0.002777677,-0.0031452032,-0.016095007,-0.031440318,0.017149264,0.022994539,-0.010478154,-0.0283244,-0.0018054169,-0.032190014,-0.027832413,0.024833634,-0.05411858,0.0141622,-0.09624205,0.010823716,0.050510675,0.02390823,-0.002705929,-0.030409487,-0.03539964,-0.009306756,-0.0069053904,-0.061053254,0.028441539,-0.032166585,-0.039593246,0.008047503,0.019738054,-0.013377363,-0.021225728,-0.0055348547,0.00016994421,0.0033501978,-0.016177004,-0.021799713,0.0144081935,-0.010911571,0.031440318,-0.015228172,-0.009986167,0.0060268417,-0.00036111998,0.032494575,-0.041772045,-0.017301546,0.01731326,-0.017676393,0.023017967,0.021542005,-0.030690623,-0.002000162,-0.06527029,0.014759612,0.0025360764,-0.009312613,-0.011766692,-0.02888667,-0.011069709,0.026005032,0.06227151,0.03774244,0.03495451,-0.026005032,-0.05561797,0.019433491,-0.017945815,0.03495451,-0.023744235,0.024177652,-0.0098046,-0.013834208,0.0071630976,0.02464621,-0.005376716,0.020604888,-0.004126249,-0.02820726,-0.008533633,-0.008100216,0.0009883669,-0.01949206,-0.010044737,0.019164069,0.06934675,-0.007438376,0.014865039,-0.0031159183,0.016586993,-0.019538917,-0.035118505,0.03186202,0.004779303,-0.005411858,-0.035774488,0.0059653437,0.018695509,-0.027223285,0.03900755,0.007649228,0.00007911511,-0.0046621636,0.05299404,-0.01330708,0.022725118,0.045707945,0.024013655,-0.061756093,0.024224507,-0.01828552,0.0005952165,-0.03303342,0.0014291054,0.02670787,0.0022710476,-0.008873339,0.012393389,-0.002480435,-0.023181964,-0.02476335,0.0079303635,-0.052010063,0.02093288,-0.004606522,0.04205318,-0.006466116,-0.078343086,0.041326914,-0.03689903,-0.028136976,0.0063489764,-0.021506865,0.008334495,-0.010437155,0.040788073,0.0066769677,-0.046738774,-0.013810781,0.0085453475,-0.060209848,-0.02705929,-0.0033209128,-0.050276395,0.024552498,0.008879196,-0.031112326,-0.0011216134,-0.010021308,0.023217104,0.008873339,0.008674201,-0.03942925,-0.007983076,0.04423198,-0.00059777894,0.02841811,-0.01731326,0.03706303,-0.009060762,-0.022771973,-0.012651097,-0.017875532,0.027949553,-0.016727561,-0.034134533,0.0077722245,-0.013002516,0.006993245,-0.001752704,-0.0239668,0.022268273,0.043130867,0.018355804,-0.02155372,0.000053216238,-0.0032886993,0.04514567,0.0030719908,0.021951996,-0.014583903,0.0113215605,-0.01760611,0.034298528,-0.0070811,0.03406425,0.011175135,-0.008129501,-0.0013017158,0.0144667635,0.008328639,-0.012241107,-0.04746504,-0.009927597,-0.042592026,0.001853737,-0.02511477,-0.024786778,0.021178873,-0.039241828,-0.01666899,-0.0007346861,0.006337262,-0.019445203,-0.022279987,0.003766044,0.016083293,-0.018695509,0.0013544287,0.029331801,0.0030807762,0.036852177,0.02196371,-0.042709164,-0.016001295,-0.004791017,-0.044911392,0.029542653,0.017278118,0.0092599,-0.016106721,0.058897883,0.022139419,-0.005110223,0.0052127205,0.0058364896,-0.02211599,-0.005824776,-0.034439098,0.04561423,0.032143157,0.013658498,0.0115031265,-0.013353935,-0.037086457,0.02390823,-0.005370859,0.003244772,0.0070811,0.024411932,0.050604388,0.0050077257,-0.014794755,-0.019128926,0.044583403,0.03565735,-0.012276249,-0.01566159,-0.03350198,0.0046035936,-0.013435933,-0.0011391843,-0.00848092,0.010513295,-0.019784909,0.00957032,-0.027598133,0.010320015,0.029167807,-0.042170323,-0.009769458,-0.015544449,-0.036735035,0.0007775153,-0.022057422,0.007479375,0.02167086,0.04310744,0.049151853,-0.014349624,0.008000648,0.0046943766,-0.038866982,-0.0010315622,-0.016024722,0.06311492,-0.037320737,-0.04460683,-0.020558031,-0.029776933,-0.03783615,0.02317025,0.022268273,0.022619693,-0.012112253,-0.014665901,-0.023744235,-0.004820302,0.046387356,-0.011104851,0.020007474,-0.014806469,-0.053181462,0.007116242,0.015825585,0.014829896,0.010314158,-0.016059864,-0.014080202,0.01052501,0.0041877474,-0.015403882,-0.004120392,-0.015860727,0.007209954,0.013213367,-0.007555516,-0.011462128,-0.0044893823,0.010975998,0.052010063,-0.04542681,-0.007127956,0.024435358,-0.0022432269,0.0036225477,-0.016376141,-0.008644916,0.014525333,0.025021058,-0.0071923826,0.037203595,0.018203523,-0.035282504,-0.028675819,0.038913835,0.0046563065,-0.00022256559,0.0103961555,0.038562417,-0.00028406398,0.029027238,0.016680704,-0.018367518,0.03448595,0.027504422,0.0057339924,-0.012428531,0.02499763,0.038164143,0.008240784,0.023240533,0.020979736,-0.051916353,0.003440981,0.017500684,0.012381675,0.00031298285,0.01690327,0.0059067737,-0.0020806955,-0.02797298,-0.005473356,0.020276897,0.031791735,-0.047652464,-0.02199885,0.0066476827,-0.013810781,-0.0083579235,-0.005526069,-0.033314556,-0.024458786,-0.013096227,-0.013646785,-0.0012050755,0.012686239,-0.005810133,0.004498168,0.00084560283,-0.011508984,0.015509307,0.03828128,-0.0261456,-0.01023216,0.032916278,-0.0097753145,-0.0050077257,-0.0010937927,-0.03657104,0.028254116,-0.013084514,-0.006542257,0.002540469,0.013002516,0.017160978,-0.00517465,0.006067841,-0.0035844774,0.02379109,-0.008990479,0.051307224,-0.060444128,0.015884155,-0.014033346,0.023217104,-0.013857637,0.0036166909,0.02499763,0.017582681,-0.00756723,-0.006559828,0.0042785304,0.012065398,0.0060619838,0.024318218,-0.017348401,0.01254567,-0.0057984195,0.0022373698,0.019831765,-0.04976098,-0.04540338,0.01015602,-0.005944844,-0.024857063,0.0048876572,0.02223313,0.04015552,0.011175135,0.03003464,0.016422998,-0.0067413948,-0.00228569,0.020569745,-0.007924506,0.026403308,0.030878047,-0.017324975,0.011526555,-0.024622783,-0.016200433,-0.023650521,0.00641926,0.019574057,-0.028277544,0.010197018,0.04643421,0.03774244,0.03392368,-0.008797198,0.009705031,0.005892131,-0.0030924904,0.044091415,-0.004779303,-0.00908419,-0.015708445,0.006969817,-0.0047295187,0.030901475,-0.026801582,0.014935322,0.027106145,0.012885376,0.0017775962,-0.01566159,-0.017770106,0.0061849807,0.0002771088,0.021987136,0.0283244,-0.037391018,-0.0025302193,0.039616674,-0.027715273,0.046246786,-0.029566081,-0.028394684,-0.02161229,-0.009189616,0.010296587,0.0364539,-0.015638161,-0.04275602,-0.014033346,-0.03244772,-0.041818902,0.017114121,0.012475387,0.021424867,0.018062955,-0.0067179664,0.012510529,0.037883006,0.008188071,0.026239311,0.008275926,-0.030784335,0.016235573,0.00859806,0.004659235,-0.008082645,-0.017160978,-0.00058277044,0.058148187,0.015157888,-0.04584851,0.0010674363,-0.012428531,0.033150557,-0.0067648226,0.021284299,0.06423946,0.03750816,-0.0077429395,-0.04062408,-0.007947934,0.020276897,-0.004310744,-0.011040425,0.020768883,0.0261456,-0.05468085,0.0035200506,-0.015767016,0.016832987,0.000112838556,-0.008047503,-0.011391844,0.06006928,-0.0063196914,-0.010671434,-0.05037011,-0.0012943946,-0.022572836,0.007086957,0.0107065765,-0.009031477,0.02258455,-0.028816387,-0.015614733,-0.016598707,0.013143084,0.031721454,0.022479124,-0.009213044,0.020394037,0.00853949,-0.02137801,-0.009019763,0.0021348726,0.019351492,-0.01616529,-0.04748847,0.009306756,0.029612938,0.001995769,0.022713404,0.008147072,0.001071829,0.029612938,-0.011251276,-0.03118261,-0.036008768,0.027082717,-0.04929242,-0.011098995,0.009552749,0.006389975,-0.008334495,0.0111341365,-0.0026663942,0.011544126,0.041490912,0.012533957,-0.03256486,-0.0441617,0.010946712,0.011708122,0.02281883,-0.023006253,0.008258355,-0.0043371003,0.005312289,-0.018508086,-0.010343443,0.006829249,0.05182264,0.035118505,-0.010853001,0.0005293254,-0.025723897,0.04128006,0.02408394,-0.0055817105,-0.0018669153,0.0104547255,0.00015594234,-0.02031204,-0.0077722245,-0.0113801295,0.01342422,0.007561373,-0.05974129,0.04151434,-0.0097753145,0.029050667,-0.03256486,0.028628962,-0.016528424,0.027199857,0.0031393461,0.00082437124,0.0003913201,0.0261456,0.00070723146,-0.038257852,0.0023589025,0.007860079,0.0045625945,-0.046059363,0.008926052,-0.038702983,0.030456344,-0.014642473,-0.003971039,-0.029800361,-0.0033033418,-0.002653216,0.0056900647,-0.00466802,-0.0123113915,-0.00071308843,0.008082645,-0.0028669962,0.038328137,-0.00028516215,-0.009751887,-0.027082717,0.018660368,0.0030719908,0.0010147233,-0.01058358,-0.017980957,-0.027223285,0.03233058,0.018203523,0.015825585,-0.03448595,0.033408266,-0.012569099,-0.014525333,-0.029870644,0.01593101,-0.0056285667,0.019011786,-0.0027088574,-0.023029681,0.001432766,-0.0035698349,0.021799713,-0.0016253145,-0.011872117,0.0030397773,0.004861301,0.03497794,-0.029519225,0.00018962003,-0.011485556,-0.011948258,0.04711362,-0.015368739,-0.015649876,0.004849587,-0.023755947,-0.016235573,0.019046929,-0.01675099,0.007016673,-0.025958177,-0.0038509704,-0.029800361,-0.015977867,-0.013260224,0.019292923,0.025958177,-0.019175783,0.02116716,0.01628243,-0.012065398,0.042240605,0.011561696,0.025044486,-0.04322458,-0.036032196,-0.03279914,-0.01581387,0.021916853,-0.0073329504,-0.010683148,0.0038597558,0.006946389,-0.0030719908,-0.015626447,-0.059553865,0.008926052,0.009816314,0.019749768,0.029050667,0.029894073,0.022022279,0.004536238,-0.034111105,0.029987784,0.0020806955,-0.01566159,-0.017641252,-0.009517607,-0.0034146246,0.005039939,-0.00945318,0.014993892,0.0067765363,-0.004832016,-0.010249731,0.016387856,0.005569997,0.022631407,-0.06662911,-0.0028889598,0.002717643,0.028558679,-0.016352713,-0.0051775784,-0.01040787,0.020066045,-0.023427956,0.009183759,-0.030011212,-0.0014539976,-0.029800361,-0.025630185,-0.04470054,0.020183185,0.039476108,-0.00931847,-0.017266404,-0.02161229,0.00027491243,-0.023896515,0.0110111395,-0.027035862,-0.0066769677,0.027199857,-0.013810781,0.021237442,0.012768236,0.012943946,-0.017711535,0.02876953,0.015228172,0.01663385,0.004463026,-0.006442688,0.0025858607,0.00051944173,-0.032845996,0.008603917,-0.010120877,-0.022373699,-0.0068233926,-0.036641326,0.006331405,0.0051717213,-0.050838664,-0.015052462,-0.011186849,0.0028699248,-0.014091916,-0.028043265,0.007122099,0.017746678,-0.0016502067,-0.013670213,0.005406001,-0.03380654,-0.020335466,0.00038948978,-0.005956558,-0.03668818,0.020710314,0.0042785304,0.020148043,-0.022666547,-0.019468632,0.01840266,0.007034244,0.022104276,-0.0057486347,-0.010507438,-0.0119365435,0.038562417,-0.020370608,0.02114373,0.0023471883,0.030995186,0.012651097,-0.020148043,-0.00986317,0.008691772,0.015439023,-0.0016736346,0.037320737,-0.004351743,-0.008920195,0.0027161788,-0.008703486,0.02408394,0.029425513,-0.002095338,-0.04779303,0.030760907,0.0013368578,-0.008246641,0.028136976,-0.050979234,0.02126087,0.0070752427,0.01840266,-0.01046644,-0.01289709,-0.044114843,-0.0065364,0.0036020484,0.001030098,-0.008328639,-0.0018127381,0.015755301,0.013096227,0.040085234,-0.0135413585,0.010612864,-0.037391018,0.02637988,0.02830097,-0.0006285281,0.0066476827,-0.012006828,-0.03406425,0.0090373345,-0.068737626,0.00052053994,0.0034966224,-0.020066045,-0.00012766405,-0.03141689,0.022069136,-0.011163421,0.038585845,0.018882932,-0.0026693228,-0.030948332,-0.012100539,0.0050897235,0.010671434,-0.011585125,0.046293642,0.039827526,0.010771003,-0.00466802,0.013916207,-0.0021700144,-0.028910099,0.02064003,-0.014349624,0.0010052058,-0.047535323,-0.0046211644,-0.009289185,-0.018929789,-0.013763924,0.017395258,-0.027434137,-0.0016443497,-0.004176033,-0.022619693,0.0033326268,-0.01857837,-0.017266404,-0.044817682,0.014396479,0.04472397,0.020253468,-0.00061901053,0.01186626,0.024903918,0.0190235,-0.05322832,0.021706002,-0.010413727,0.0027381424,-0.03233058,-0.019632628,0.04413827,0.053603165,0.005476285,-0.00059228804,0.017336687,-0.018976646,-0.010062307,0.01748897,-0.0027893912,-0.02544276,-0.019000072,0.007573087,-0.003807043,0.010759289,0.00811193,0.0033121274,0.008533633,-0.011251276,-0.028113548,-0.00021689163,0.0050457963,-0.01566159,0.00022714135,0.031791735,-0.013400791,0.022713404,-0.0073505216,0.006126411,-0.010431298,0.031604312,-0.0023720807,-0.0342751,0.00022183347,0.026309595,0.030526627,-0.0033355553,0.018601798,-0.00077239046,0.016259002,-0.017945815,0.0072626667,-0.039874382,-0.063677184,0.024669638,-0.03155746,-0.0061146966,0.0055787824,-0.014384765,0.016481567,0.022889113,-0.02231513,-0.00671211,0.014232484,-0.016528424,0.002795248,0.0043839565,0.006887819,-0.029495798,-0.00593313,0.0065539707,-0.0017570967,0.035844773,-0.013447647,-0.0064016893,0.00005193502,0.027106145,-0.009611319,-0.015462452,0.028628962,-0.017395258,-0.010560151,-0.01898836,-0.027808985,-0.008803055,-0.019339778,0.008644916,0.008580489,-0.020534605,0.007578944,-0.021331154,0.0072626667,-0.008381352,0.0061439816,-0.031580884,-0.008275926,0.034579664,-0.0016355643,0.03563392,-0.010238017,0.0038333994,-0.025021058,0.022631407,-0.012416817,-0.017910672,-0.0025887892,0.004020823,0.005824776,-0.016645564,-0.008176357,0.008639059,-0.019351492,0.004477668,0.0067823934,-0.016528424,-0.009992024,-0.011854546,-0.014209055,0.011139994,-0.00992174,-0.030760907,-0.016739275,0.029425513,0.013904492,-0.020382322,0.0028596749,0.038937263,0.0010557222,0.0016370284,0.022385413,0.01816838,-0.01710241,0.04020237,0.040178947,0.04919871,-0.020030903,0.008568775,-0.04732447,-0.009652318,0.011397701,-0.04687934,0.0068702484,0.018964931,-0.0072802375,0.017746678,0.023826232,0.0005044332,-0.005649066,0.0059682718,0.0009188152,-0.015333598,0.0049432986,-0.0024247936,0.0043634567,-0.022959398,-0.027387282,-0.01003888,0.024669638,0.03760187,-0.028371256,0.030760907,-0.0023647593,0.0034263385,0.0074852323,-0.031510603,0.015052462,-0.007537945]},{"id":"class-ReactionCollector","type":"class","source":"main","text":"Class: ReactionCollector\nDescription: Collects reactions on a message. Use message.createReactionCollector().\nProperties: channelId: string, client: Client, collected: Collection, messageId: string, options: Required\nMethods: emit(event: K, args: ReactionCollectorEvents[K]) -> boolean; on(event: K, listener: (...args: ReactionCollectorEvents[K]) => void) -> this; stop(reason: ReactionCollectorEndReason) -> void","meta":{"url":"/docs/classes/ReactionCollector"},"embedding":[0.029393725,0.0003589386,-0.011216971,0.026188876,-0.0060449666,0.031043984,-0.0111033665,-0.00089463714,-0.038458187,-0.011617577,0.010170612,-0.04675731,0.044102546,0.015294782,0.02415595,0.0051899417,0.016095994,-0.003931321,0.02602146,0.07404636,-0.017949546,0.011067491,0.067875825,0.015019739,-0.023964616,-0.021740355,-0.0027593987,0.07705987,-0.054625932,-0.037788518,0.059074454,-0.017279875,-0.012388893,0.03864952,-0.037334096,0.043982964,0.0035994758,0.028963223,-0.04326546,0.07313752,-0.023749365,-0.0223024,0.010344008,0.039941028,-0.04044328,-0.0015060098,-0.04058678,-0.003411131,0.0093036285,0.041495617,-0.03812335,0.00062445225,0.012048079,0.04206962,-0.0013991317,-0.0822259,-0.037047096,0.04058678,-0.006140634,0.0111751165,-0.0043528546,-0.011677369,0.0026921327,-0.03331608,-0.010469572,-0.01003907,-0.045202717,0.058835283,-0.002645794,0.041232534,0.03018298,-0.0059403307,-0.020317307,-0.0067146365,-0.033794414,0.026571546,-0.0076832664,-0.02944156,0.0041794577,-0.031235317,-0.024478827,0.00047160906,-0.03145057,-0.0118208695,-0.0151991155,-0.038816936,0.007181014,-0.026667213,0.009638463,-0.0021450364,-0.0025635802,0.037645016,-0.053908426,0.018164797,0.036879677,-0.02630846,-0.0121796215,0.022625277,0.0016098984,0.025232205,0.008574166,-0.07686854,-0.018152839,0.0055935374,0.009357441,0.011258826,-0.03960619,0.039080024,-0.046350725,-0.023964616,-0.01641887,-0.02870014,-0.021752313,0.03745368,0.0063140304,-0.04754656,0.006006102,0.0057250797,-0.046470307,0.0068700956,-0.053238757,0.002535179,0.019803096,0.000260095,-0.009554755,-0.042093538,0.025901875,-0.0032885575,0.02341453,0.027886968,0.047857482,0.0038386437,-0.02475387,-0.019540012,0.024969121,-0.0028012532,0.013381439,-0.009722172,-0.032765992,-0.022876402,0.025590956,0.00051159493,0.0033184534,0.016084036,-0.0049119093,0.0032676305,-0.063570805,-0.0106668845,0.03695143,-0.03841035,-0.0019895774,0.03501417,-0.032526825,0.03283774,0.022936195,0.012723728,-0.0034260792,0.03353133,0.013202064,-0.040562864,0.030637398,-0.017590793,-0.054960765,0.0023139487,-0.05433893,-0.007970268,-0.0068521583,0.0075337864,-0.030900482,0.03568384,0.03310083,-0.013046605,-0.033459578,0.008807356,-0.031378817,-0.03223982,-0.01842788,0.0016637112,0.012580227,0.0016412892,0.042284872,-0.009698255,-0.02870014,-0.0614183,-0.0038266852,-0.0022795682,-0.020125972,-0.004056884,0.0093036285,-0.034464084,-0.025088705,0.04847932,0.0027265132,0.034631502,0.004212343,-0.043528546,0.029034974,0.03085265,-0.027671717,-0.053095255,-0.030398231,-0.004914899,0.0279348,-0.013716275,0.018762715,-0.012771562,0.002571054,0.009680318,0.024921287,-0.056300107,0.06744532,-0.02891539,0.020723892,0.003010525,-0.063953474,0.016885249,-0.04058678,0.01812892,-0.034727167,-0.023892866,-0.04541797,0.0014200589,0.07729904,-0.045465805,-0.008107789,0.039964944,0.0310679,-0.020102056,-0.00036435723,-0.017040707,-0.049603406,-0.020915227,-0.023366697,-0.05371709,0.025830125,-0.026858546,-0.006200426,0.03841035,0.03740585,-0.041017283,0.027839135,-0.01627537,0.018248504,0.0480249,-0.0026652263,0.0224459,-0.0064934064,0.0056622983,0.02556704,0.021668606,0.022613317,0.0044335737,0.0055217873,0.0051630354,0.0039373003,0.009877631,0.0017249979,-0.0066249487,-0.0056832256,-0.0021226145,0.04429388,-0.02616496,-0.027910884,-0.010284216,-0.036999263,-0.0049836594,0.05156458,-0.014529445,0.019145384,0.055343434,0.010152674,-0.04749873,0.039343107,-0.018344171,-0.011641494,0.036544845,0.016036203,0.004110697,-0.007898517,0.013716275,-0.012024162,0.02846097,0.019707428,0.0154143665,-0.014134819,0.013871734,0.026954213,-0.011097387,0.016681956,0.018679008,0.014397903,-0.039414857,-0.007874601,-0.031904988,-0.017351625,0.0026517732,0.033650912,-0.0050583994,0.03245507,-0.025064789,-0.018607257,0.009506921,0.022386108,-0.047474813,0.027623884,-0.003174953,0.03931919,-0.037716765,0.020998934,-0.0019596813,0.02468212,-0.03554034,-0.044724382,-0.016287329,0.0009835777,0.02013793,-0.010188549,0.016789582,0.02683463,-0.021393562,0.026667213,-0.033029076,0.012089933,0.00721091,-0.032287657,-0.04979474,0.0035277253,-0.047737896,0.05084708,0.06414481,0.039964944,-0.039510526,0.0013258866,0.029178474,0.07935588,-0.013034646,0.011402326,-0.036903594,0.006325989,0.068497665,0.052282088,-0.015629617,-0.0076832664,-0.0056622983,0.014445736,0.025590956,0.023498239,0.030661315,-0.016478663,-0.034488,-0.00988959,0.020102056,-0.053860594,-0.06821066,0.051421084,-0.029250225,-0.018475715,-0.022111066,0.018822508,0.012388893,-0.0015224527,0.042619705,0.022350233,-0.014170693,0.019193217,0.014553362,-0.11910558,-0.055343434,0.06720616,-0.03989319,0.027002048,-0.032431155,0.015474158,-0.0020344213,0.01278352,0.007157097,0.005856622,0.0064455727,0.036999263,0.021309853,-0.029537227,0.013536898,-0.017901711,-0.011258826,0.014660988,0.006030019,-0.051755916,-0.0016397944,-0.033483494,0.05099058,0.047618315,-0.033196494,-0.03018298,-0.002765378,0.038482103,0.037381932,-0.019133426,0.048120566,0.04163912,0.06801933,-0.014278319,0.024215743,0.038912605,0.060844295,0.028389221,0.043432876,-0.029776394,0.029345892,0.045752805,-0.014027193,0.061896633,0.0017668523,0.036401343,0.014553362,-0.006266197,-0.022565484,-0.038984355,0.030541731,-0.00031241297,-0.02704988,-0.04369596,-0.050129578,-0.01226931,-0.020125972,-0.0050494308,-0.011025636,0.029824227,-0.02096306,-0.006367843,-0.016980916,-0.049986076,-0.0038027684,0.043432876,0.035659924,0.04510705,-0.040562864,0.05017741,-0.020102056,-0.042858873,0.0444613,-0.01969547,0.044413466,0.03389008,0.04479613,-0.067301825,0.008622,0.013919568,-0.015498075,-0.008490458,-0.0076234746,-0.06409698,-0.0025546113,-0.008651896,0.014517487,-0.038769104,-0.04214137,0.03652093,0.04288279,-0.009082398,-0.016239496,-0.0021898805,0.026141044,0.0072527644,0.034488,-0.019599803,-0.01211983,-0.0631403,-0.008089852,0.02117831,-0.0069837,0.011109346,-0.015892701,0.018164797,0.023306904,-0.005814768,-0.022864444,0.056778442,-0.007641412,-0.011994266,-0.023306904,0.031713653,0.038314685,0.021130478,-0.03310083,-0.0077550164,0.052903924,-0.030063394,-0.025064789,0.008239332,0.0073245144,0.008065935,0.019013843,-0.0054231305,-0.012131788,-0.015450241,-0.0111033665,0.0035695797,-0.023318863,0.021967564,-0.012986813,-0.0076234746,0.020173807,-0.019755263,0.0072946185,0.018774673,0.023868948,-0.023223195,0.022338275,0.0068641165,0.020711934,0.02482562,0.013620608,-0.028724056,-0.017088542,0.012149725,-0.026930297,-0.049172904,-0.02817397,-0.026786797,-0.009548775,0.04230879,-0.005617454,-0.0042721354,0.02318732,-0.024072241,0.027408633,-0.0072826603,-0.008478499,-0.01553395,0.014397903,-0.01851159,0.00014733111,0.02563879,0.008197477,0.00017498489,-0.0043438855,-0.05773511,0.00475645,-0.009423212,-0.049316406,-0.008185519,0.0067146365,0.0019267958,-0.02891539,0.0045172824,0.027528217,0.0068641165,0.04496355,-0.010547301,0.041686952,0.0022347244,-0.05343009,0.03967794,-0.06309247,0.013656483,-0.016550414,-0.0023871937,-0.006565157,0.020532558,-0.03525334,-0.0034440167,0.009154148,-0.001378952,-0.01828438,-0.043456793,-0.013620608,0.008699729,0.0012489045,-0.03998886,0.016095994,-0.008663855,-0.031904988,-0.019444345,-0.053573593,0.007617495,0.024562536,-0.018033253,-0.0026517732,-0.00091107993,-0.026619378,0.0028580555,-0.004801294,0.017064624,-0.005596527,-0.0023901835,0.007408223,0.013716275,0.0035546317,-0.011623556,0.011384388,0.003390204,-0.014182652,0.028508805,0.045704972,-0.031139651,0.010726677,0.021943647,0.030756982,0.0028789826,-0.015653534,0.051468916,0.01946826,-0.07074584,-0.011575723,0.002757904,0.051995084,-0.003160005,-0.028508805,-0.054291096,0.03372266,0.0005642866,0.016909165,-0.018188713,-0.022936195,-0.006481448,0.010720697,0.012962896,0.00817954,-0.005955279,0.03300516,-0.028891472,0.008077893,-0.027839135,-0.009249816,0.001397637,0.021070685,-0.0041794577,-0.013560816,0.031617988,0.016215578,0.01486428,-0.0054889014,-0.015175198,-0.03188107,0.027193382,-0.02704988,0.025088705,0.022218691,0.0008505406,0.02630846,0.0376211,0.0066189696,0.017172249,0.008592104,0.025590956,0.036401343,0.018499631,0.0043678023,-0.008849209,0.00042414918,-0.02401245,0.002988103,-0.0045800637,-0.05008174,-0.009387337,0.0045382096,-0.014362028,0.03597084,0.020090098,0.011509951,0.0009596609,0.015581784,-0.008107789,0.01754296,-0.020066181,0.015043656,-0.019444345,-0.017184207,0.0044784173,0.010918011,0.028891472,0.02616496,-0.010086903,-0.020424932,0.032981243,-0.023689574,-0.012125809,0.0010919506,-0.022649193,0.010051028,0.0033334016,0.01948022,-0.028030468,-0.015211074,-0.015426325,-0.031043984,-0.017411418,-0.030278647,0.007832746,0.02385699,-0.0141946105,-0.019611761,0.0057191006,0.0058087884,0.017315751,0.002965681,0.02281661,-0.013740191,-0.0024948195,-0.0309244,0.0010829818,-0.00721091,-0.005862601,0.02147727,0.043767713,0.010367925,-0.0055337455,-0.020185765,0.032598574,0.014481612,-0.03195282,0.007390286,0.013811942,0.011336555,-0.049842574,0.014314194,0.029250225,0.010708739,0.0451788,-0.00044507638,0.013094438,0.01650258,-0.043743797,-0.003375256,-0.021919731,0.0379081,0.013237939,0.03604259,-0.046781227,0.02743255,0.009237858,0.011462118,0.0121078715,0.0032736096,-0.008047997,0.008125727,-0.020353181,-0.0020912236,0.028484888,-0.00003012954,-0.037884183,0.010660905,0.036664426,-0.025519207,0.005106233,-0.025925793,0.014541403,0.010714718,-0.02333082,0.0048132525,-0.040778115,0.0070793675,-0.044700466,0.071032844,0.021836022,-0.013249897,0.004577074,-0.031928904,-0.055008598,-0.03625784,0.026260627,0.02683463,-0.0039731753,0.011856745,0.019456303,-0.012986813,-0.020998934,0.020090098,-0.009764026,-0.018140879,0.028365305,0.0006005355,0.009339504,-0.017758211,0.012448685,0.021967564,-0.010284216,-0.023534114,-0.02704988,0.010971824,0.016442789,-0.009201982,-0.022266524,-0.02348628,-0.012628061,-0.009925465,-0.034583665,-0.012819395,-0.008520354,-0.015115406,0.0133336065,-0.03613826,0.029752478,-0.03032648,-0.013871734,0.01576116,-0.01553395,-0.05783078,0.00468171,0.031546235,-0.02468212,-0.014254402,0.0060330085,-0.010218445,0.010015152,-0.013847817,-0.03989319,-0.01389565,-0.02282857,0.019205175,-0.018989924,0.006756491,0.00914219,0.010995741,-0.00022010914,0.0055397246,-0.0075098695,-0.002503788,0.0066608237,-0.030111229,0.057878613,-0.0035067983,0.011366451,-0.006810304,0.04690081,0.0029940822,-0.008926939,0.0277913,0.033698745,-0.02831747,0.03998886,0.0066847405,0.03575559,0.024347285,0.008849209,-0.007922434,-0.023055779,0.036616594,-0.017794086,-0.030828733,-0.024586452,0.053477924,-0.027504299,-0.0025994552,0.04221312,-0.014254402,0.035349004,-0.00022066968,-0.040467195,-0.037071012,-0.012819395,0.06696699,0.03695143,-0.027217299,0.014362028,0.009913506,-0.037286263,0.0044634696,0.017112458,0.00958465,-0.011904579,-0.01389565,-0.029011058,-0.052951757,-0.0012578733,0.0075038904,0.014876239,0.014063068,0.011850766,0.0009536817,0.0064993855,0.008496437,0.029895978,0.033770498,-0.011808911,-0.0044634696,-0.0010448644,-0.0005399961,0.011659431,-0.024777787,-0.008885085,-0.01872684,0.014039151,0.0019297854,-0.010654926,0.0008497932,0.020592349,0.017853878,-0.0618488,-0.008592104,-0.018607257,0.011832828,0.020556474,-0.0380516,-0.006696699,0.035229422,-0.018009337,0.010266279,0.016024245,0.0014723769,-0.023259072,0.003784831,-0.034464084,0.010816365,0.01963568,0.032359406,-0.0046428456,-0.01606012,-0.007617495,-0.026332377,0.010589155,0.028939307,0.03245507,0.01895405,0.0480249,-0.019743305,0.0015269371,-0.02824572,0.0003193264,0.015665492,0.003076296,0.02282857,0.033961833,-0.01754296,0.005850643,0.012927021,-0.005082316,-0.004920878,-0.030063394,0.026212793,0.034129247,0.0037100909,0.003375256,0.01865509,0.02378524,-0.0111033665,0.03195282,0.0012645999,0.0018221599,0.011193054,0.0011524899,-0.032072406,-0.031713653,0.0039373003,0.014098943,-0.0150556145,-0.033363912,0.024634285,0.0077251205,0.015713327,-0.0007141402,-0.031498402,0.044413466,0.00416451,-0.025184372,0.010128757,0.019300843,0.022601359,0.07012401,0.015079531,-0.0022347244,0.003961217,-0.045609303,-0.013776067,-0.030087313,-0.017949546,0.007772954,-0.009692276,-0.03893652,0.022063231,-0.0050583994,-0.012568269,-0.011701286,0.034009665,0.054291096,-0.0054799328,0.0010306638,-0.025136538,0.010140716,0.012376935,0.0068401997,0.024490785,-0.002237714,0.01345319,-0.0048640757,-0.03530117,-0.0141946105,-0.023474323,0.03099615,0.010349988,-0.0023961626,-0.012424768,0.013381439,-0.017255958,0.00076496333,-0.014314194,-0.0012952433,0.043145876,0.01412286,0.017136374,-0.022984028,0.033052992,-0.0057878615,-0.024729952,0.033029076,-0.025901875,0.03896044,-0.0064096977,-0.0064993855,-0.029513309,0.018081088,0.02578229,0.0015770128,-0.025901875,0.000414433,0.015139324,0.0076952246,-0.011031616,-0.037286263,-0.024777787,0.041495617,-0.022541568,0.013680399,0.036281757,-0.02578229,-0.035205502,-0.028724056,0.025973625,-0.004044926,0.008077893,-0.016478663,0.04869457,-0.043887295,-0.0022631255,0.020412974,0.025351789,0.018942092,0.000033212564,-0.0100211315,-0.017949546,-0.03128315,-0.037214514,-0.023091653,0.017351625,0.009614547,0.015545908,0.0034171103,-0.011545827,0.021130478,0.011635515,0.05878745,0.029178474,-0.038553853,-0.019061675,0.015557867,0.003946269,0.007551724,0.008974773,-0.0014267856,0.002222766,-0.03314866,-0.021800147,-0.019611761,0.0015052625,0.029417641,0.0057131215,-0.031091817,-0.0223024,0.014003276,-0.00071862456,-0.005381276,-0.030374313,-0.004792325,-0.019013843,-0.034201,-0.0056742565,0.004340896,-0.023474323,-0.030374313,-0.07519437,-0.023904825,0.009578671,0.022780735,-0.019229094,0.027982635,0.028341386,-0.046278972,0.011497993,0.020257514,-0.032646406,0.0068043247,0.028771888,0.00021768009,-0.024143992,-0.01909755,0.01665804,-0.029465476,-0.0310679,-0.0039283317,-0.020652141,0.008753543,-0.007276681,0.003240724,-0.0013535403,0.01842788,-0.004717585,-0.012998771,-0.049986076,0.02288836,0.002355803,-0.019217135,-0.026762879,0.021441394,0.0036473093,-0.036233924,-0.015820952,0.00035576214,-0.0149838645,-0.003091244,-0.013190106,-0.011085428,-0.01939651,0.026619378,0.02208715,-0.024993038,0.006302072,0.0034171103,0.012472602,-0.031474486,-0.0073245144,0.010152674,0.0011121304,0.038027685,-0.041663036,-0.008903022,0.0039193626,0.040897697,0.014660988,-0.03204849,-0.04348071,0.017949546,0.04764223,-0.01665804,0.010690802,-0.017662544,-0.016382996,-0.0024111106,0.061513964,0.0047624293,-0.03278991,0.0313549,0.010242362,-0.0032526825,0.02341453,0.047737896,0.006792366,-0.02683463,-0.016072078,-0.012735686,0.03025473,0.0012892641,-0.017148333,0.007336473,0.009638463,0.003085265,0.01352494,-0.060413793,0.021190269,0.015557867,0.011264805,0.011330576,-0.03582734,-0.0190258,0.017375542,0.0053125154,-0.018451797,0.027623884,0.045226634,0.01226931,-0.011456138,0.020927185,-0.052138586,0.0066548446,-0.022182815,0.003405152,-0.0035486526,-0.02824572,-0.009483004,-0.016490621,-0.0050942744,-0.012060038,-0.0012361987,-0.01606012,-0.038912605,0.004107707,-0.027097715,-0.027360799,-0.03774068,-0.009148169,0.012747645,-0.022481775,-0.0056832256,-0.0027848103,-0.003530715,0.010320092,0.014266361,-0.0054171514,-0.026356295,0.033244327,-0.005826726,0.00060427247,0.028389221,0.007928413,0.023474323,-0.026284544,-0.0017877795,0.031187484,-0.00847252,0.004355844,0.016705872,0.002237714,-0.027743468,0.026356295,0.018619215,-0.018140879,0.002333381,0.002728008,0.005925383,-0.023749365,0.0027444507,0.025662707,-0.0077071832,0.052377753,0.012131788,-0.023809157,-0.0133336065,0.035396837,-0.0011980813,-0.004080801,0.024993038,-0.01977918,0.0075337864,0.008352936,-0.011689328,-0.0005284114,0.007850684,-0.020233598,0.017052665,-0.0007780428,0.017399458,0.0018968998,-0.034894586,-0.009148169,0.011420264,0.005506839,-0.028604472,-0.032144155,-0.007904497,0.009847735,0.0000069543185,-0.020054221,-0.023725448,-0.03470325,-0.013106396,-0.026954213,-0.04020411,-0.018176755,0.004780367,0.043169793,0.00416152,0.011581702,0.020783683,-0.014649029,0.045609303,-0.012795478,0.05166025,0.03731018,0.046470307,0.027623884,0.01791367,0.0059941434,0.0011263309,0.035516422,-0.06481448,-0.010212466,-0.00047983046,0.034344498,-0.0011726697,0.027863052,0.02103481,-0.005438078,0.017423376,0.02081956,0.01591662,-0.029680727,0.011862724,0.041519534,-0.025208289,-0.012376935,-0.018296339,-0.0029641862,0.048192315,-0.025208289,0.017782127,0.00084231916,-0.0028520762,-0.014649029,0.010816365,-0.00423626,-0.03367483,-0.051612414,0.019743305,0.010965845,0.007982226,-0.0012429253,-0.017531002,0.012915063,-0.01812892,0.029895978,-0.0006072621,-0.01472078,0.02200344,-0.015211074,0.010308133,-0.005124171,-0.010690802,0.018846424,-0.03664051,-0.006065894,0.0052437545,-0.013225981,-0.016741747,-0.03896044,-0.014134819,-0.034583665,0.0139674,0.0028311491,-0.008287165,0.02281661,0.018762715,-0.01635908,0.00071899826,-0.0019462282,0.04479613,0.015844868,0.0019955565,0.002571054,-0.026284544,0.0052646818,-0.028054386,0.0068043247,-0.029848143,-0.006071873,-0.054912932,0.025303956,-0.015306741,-0.008209435,0.004415636,0.035492506,0.020161847,-0.017638627,-0.0006659329,0.008077893,-0.010720697,0.02771955,-0.005892497,0.02311557,-0.0021973543,-0.029537227,0.016933082,-0.070411004,-0.010864198,0.015820952,0.011850766,0.008364894,-0.0032616511,-0.001575518,0.015665492,0.00996134,0.0027265132,0.01641887,0.0044365632,0.004224302,-0.033937912,0.012903104,-0.020233598,0.012317142,0.004735523,0.009423212,-0.011527889,-0.0483119,0.025303956,0.012927021,-0.02810222,0.020125972,0.0039044146,-0.012472602,0.00035277253,-0.00542612,0.020424932,0.00044582377,-0.009853714,0.0029043942,0.010140716,-0.0048790234,0.033698745,0.0035486526,0.02980031,0.010338029,-0.005085306,-0.0074440986,-0.009046523,0.005781882,-0.033029076,0.019133426,-0.00758162,0.019827012,-0.009201982,0.008998689,-0.041184697,0.019241052,0.0075995577,-0.002630846,-0.00029615703,-0.04015628,-0.007904497,-0.038912605,0.022410026,0.014362028,0.015629617,0.0042691454,-0.0066847405,0.011868703,-0.007007617,-0.03589909,0.015450241,0.0090883775,-0.0077789333,0.005234786,-0.019372594,-0.016430829,0.029489392,0.017973462,-0.011737161,-0.0279348,-0.00025075252,0.024873454,0.017949546,-0.016885249,0.019827012,-0.027910884,-0.008191498,-0.0052796295,-0.0033872144,0.008897043,-0.031163568,0.0067026783,-0.021226143,-0.06304464,-0.00083633995,0.02355803,0.01664608,0.0061197067,0.0039193626,0.016095994,-0.012113851,0.012616103,-0.00446048,0.019408468,0.016072078,-0.0080838725,0.02303186,-0.0042093536,-0.008394791,-0.003991113,-0.014995823,0.0064993855,0.014589237,0.013835859,-0.019587845,0.011013678,0.016825456,0.008358915,-0.0073185354,-0.034798916,-0.015354575,0.010176591,-0.0077251205,-0.008346957,-0.022338275,-0.012747645,0.0053782864,0.013560816,0.062183633,0.0031629945,0.015701368,-0.015258907,-0.0062841345,-0.022780735,-0.02371349,0.003784831,0.010104841,0.020484723,0.01687329,-0.0015874765,0.0052198377,0.00654124,0.010786469,-0.017973462,0.031115733,-0.0009088377,-0.024287492,0.01932476,0.0072348267,-0.007760996,0.016705872,0.022577442,0.02311557,0.010200508,0.0056832256,0.006810304,-0.04637464,-0.03403358,-0.029967729,-0.023103612,0.0028924358,-0.04020411,0.022756819,-0.030972233,0.00021487733,-0.0279348,0.0073484313,-0.022218691,-0.010086903,0.016382996,0.008424686]},{"id":"class-RequestManager","type":"class","source":"main","text":"Class: RequestManager\nProperties: baseUrl: string, options: RestOptions, rateLimiter: RateLimitManager, token: string | null\nMethods: buildHeaders(_route: string, options: RequestOptions, body: string | FormData | undefined) -> Record; getRouteHash(route: string) -> string — Hash route for rate limit bucket (use path without ids for grouping).; request(method: string, route: string, options: RequestOptions) -> Promise; setToken(token: string | null) -> void; waitForRateLimit(routeHash: string) -> Promise","meta":{"url":"/docs/classes/RequestManager"},"embedding":[-0.023651648,0.020703632,0.0075219446,-0.03215814,0.0066667944,-0.0048917956,-0.026239602,0.016697928,0.013041037,-0.008197063,-0.001070344,-0.00454861,-0.024259256,-0.007195637,-0.018261954,-0.017913142,-0.017620591,0.024416784,0.012129628,0.017654346,0.014458786,0.008855304,-0.0068749557,0.009215366,-0.025902044,0.042667486,-0.008860929,0.017721858,-0.012894762,-0.04115972,0.018689528,-0.013929944,0.029142613,0.05490963,0.04932865,-0.02497938,0.01636037,0.009997379,-0.0041463524,0.01299603,-0.010666871,-0.04644815,-0.01573026,0.020838656,-0.05004878,-0.014053715,0.01858826,0.022503948,-0.017091747,-0.00877654,-0.036298867,0.016742937,-0.027117256,0.047573347,0.03386844,0.0009725925,-0.03245069,0.03580378,-0.0032518203,0.027049745,0.042667486,-0.015752763,-0.054819617,-0.007972023,-0.014470038,0.05108396,-0.016225345,0.014863857,0.015325189,0.035533734,0.01744056,-0.010081768,0.0074544325,-0.00057666365,-0.002542946,-0.028017415,0.016315361,0.044377785,0.049733724,0.015719008,-0.035983812,-0.027927399,-0.035826284,-0.056394894,-0.0050774533,-0.034363527,-0.076558426,-0.044782855,0.021997608,-0.038391735,-0.011882084,-0.018003158,-0.050903928,0.032225654,0.021615041,-0.022796499,-0.028197447,0.025519477,-0.02855751,0.013749911,0.06310107,-0.031955604,-0.013558628,0.055764783,0.010188662,-0.007403799,-0.054639585,0.03449855,-0.016405378,-0.025519477,-0.014087471,-0.006351739,-0.025902044,0.023224074,-0.005114022,-0.043860193,-0.031595543,-0.002146314,0.02217764,-0.0034909248,-0.008619012,-0.028084926,0.051489033,-0.00022275392,-0.0069143376,-0.011229469,0.0015485529,-0.021581285,-0.045187928,0.013896188,0.027162265,0.037919153,0.013479864,-0.06301105,0.0050183805,0.012455935,0.019150859,0.0021505335,0.0045176675,-0.0059860502,0.012422179,0.003454356,0.02479935,-0.022965278,-0.008152055,0.009862355,0.005173095,0.0076232124,-0.005170282,-0.0008389753,-0.023966704,0.013547377,-0.028512502,0.016270354,0.010711879,-0.05607984,-0.007280027,0.047123265,-0.03677145,-0.010976301,0.0110606905,0.022132631,0.016484141,-0.031775575,0.023449114,0.0004683634,0.013693652,-0.005144965,-0.06179584,-0.044332776,0.055134673,-0.017856883,-0.03769411,0.0031252357,0.024754342,-0.004658317,-0.0273648,-0.009648567,0.010953796,-0.0033080804,0.06472135,0.015707755,-0.012500943,-0.016349118,-0.036951482,0.010875032,-0.060220562,0.05837524,0.031888094,0.008000153,-0.01020554,0.098477274,-0.011758313,-0.008258949,-0.014154983,-0.04241994,-0.00020007415,-0.012433431,0.0015654309,0.04190235,-0.030267809,-0.007364417,0.037199024,-0.019702205,0.00031030833,0.006717428,0.0015443334,0.007904512,-0.038504254,0.030335322,0.018475741,0.019229623,0.016889213,-0.0026006124,-0.024304263,0.028602516,0.0036400135,0.036613923,0.010965048,0.014548802,-0.022222647,-0.008157681,0.043860193,-0.028377477,0.019623442,0.031370502,0.008534622,0.007679472,0.0054515814,0.020118529,-0.007848252,0.021828828,-0.08029409,0.00034881118,-0.022143884,0.0057666367,-0.021277482,-0.008731532,0.020141033,-0.043702666,0.021648798,-0.016484141,-0.014098723,0.028062422,0.035826284,-0.006818696,-0.01602281,-0.01721552,0.011555777,0.014638818,0.045570493,-0.023944201,-0.014177487,-0.052074134,0.009564178,0.044445295,0.0021786634,0.024551807,0.011994604,0.008725906,0.0006054968,-0.0020352008,0.012759739,0.033553384,0.0071393773,-0.019589687,-0.0069818497,0.024754342,-0.0040563364,0.0074881883,-0.016011558,0.017834378,0.021131206,-0.0125346985,-0.011724557,-0.007797618,0.032675732,-0.025902044,-0.01459381,0.028017415,0.008984701,-0.018543253,0.025114406,0.016045315,0.018768292,0.010801895,0.08659519,0.06800693,0.0070493617,0.044602823,0.02308905,-0.008377095,-0.010166158,-0.09982751,0.024529302,0.03380093,0.054414544,-0.021390002,0.038886823,0.02057986,0.07088743,0.012118376,0.015719008,-0.04406273,0.012017108,0.023336593,0.020309813,-0.032225654,0.006064814,-0.023156563,-0.005597857,0.000041909207,-0.06913213,-0.024304263,-0.022616467,-0.008022658,0.03618635,-0.0632811,0.03488112,0.008793417,0.012725982,-0.027094753,-0.0060479357,0.054594576,0.028152438,-0.042397436,-0.015043889,-0.04338761,-0.04246495,0.03215814,0.03681646,-0.049058605,0.019578435,0.008213941,-0.011848329,0.030762896,-0.002542946,0.015381448,0.009845477,0.080654144,0.050183803,-0.049238637,-0.007960771,0.014031211,0.00029466106,0.033890944,-0.012208392,-0.022942774,-0.030267809,-0.017361796,-0.027612343,-0.0066892984,-0.0553147,0.0031618045,-0.0053671915,0.006323609,0.0010295556,-0.033890944,-0.060625635,0.019375898,-0.07106747,0.035286188,-0.05279426,-0.016967976,-0.012219643,0.025902044,-0.036838964,-0.0319106,-0.021705057,-0.04235243,0.016799197,0.0022982156,-0.017834378,0.012861006,-0.02371916,-0.045592997,0.040507104,0.010762513,0.04707826,0.028692532,0.064496316,-0.003988825,0.0062054633,0.034003466,0.0536044,0.004320758,-0.017913142,0.0032490075,-0.010762513,-0.007566952,0.007589456,0.03580378,-0.031302992,-0.060220562,0.0018059418,0.037266538,0.022706483,0.008073291,-0.004753959,0.025834532,0.020096024,0.032990787,-0.04372517,0.03067288,0.01972471,-0.014177487,-0.0039156866,-0.0004564082,0.024641823,-0.029907746,0.026059572,-0.03911186,0.031077951,0.035533734,0.06427127,-0.005974798,0.029615195,-0.06422626,-0.027544832,0.028917572,-0.061480783,0.040147044,-0.059950516,-0.0065936567,-0.022020113,0.0012981965,0.056754954,-0.002375573,-0.07349789,-0.049553692,0.016461637,0.0030942927,0.07682848,0.03985449,0.025384452,0.014301258,-0.023291586,-0.033553384,-0.0066499165,0.01675419,0.016112827,-0.010064891,-0.011713305,0.0536044,-0.004697699,-0.009153481,0.017136756,-0.015077645,0.037829135,0.03209063,-0.030087778,0.014830101,-0.0069931014,0.01652915,-0.018678276,-0.03447605,0.069942266,0.01756433,-0.030560361,0.0028467493,0.044917878,0.008247697,-0.013007281,-0.010329312,0.016664173,0.013311085,-0.019657198,-0.014740085,-0.021817576,-0.028580014,0.00050247094,0.013412353,0.027634848,-0.020118529,-0.027229777,-0.024664326,0.028399982,-0.022999035,0.032653227,-0.007364417,0.00075528875,0.011437631,-0.02639713,-0.0014353299,-0.012095871,0.08641516,0.0018143808,0.017598087,-0.027207272,-0.011960848,0.0070268577,0.005234981,0.015516472,-0.009744209,-0.03312581,0.008073291,-0.03170806,-0.019679703,0.007319409,-0.030312818,0.027837383,-0.07430804,0.018340718,0.03688397,0.01550522,0.040102035,-0.00592979,-0.02125498,0.00044339808,-0.0019494045,-0.044242762,0.031550534,-0.015797772,-0.01801441,0.0053981342,0.045750525,-0.044625327,0.008619012,-0.01585403,-0.029412659,-0.013772416,-0.0075444486,0.011589533,-0.011111324,-0.01083565,0.019994758,-0.009867981,0.01983723,0.017339291,-0.005153404,-0.013389849,-0.043882698,0.019477166,0.0058397744,-0.011645793,-0.007746984,0.011139454,-0.041024696,0.01978097,-0.028940076,-0.014267502,0.0039606947,0.007229393,0.0036231356,-0.010486839,-0.010115525,-0.021412507,0.040799655,0.005150591,0.017001733,0.005496589,-0.059275396,0.025204422,-0.030987935,0.011645793,-0.010807521,0.017238025,-0.010323686,-0.027207272,-0.015133904,0.03404847,0.0071393773,0.011268851,0.0015190165,-0.024641823,0.015617739,-0.008157681,0.032923274,-0.011578281,-0.024191743,0.03404847,0.027589839,-0.0037891022,0.003803167,0.0024065159,0.035286188,-0.02252645,-0.031595543,0.0032912022,0.023246577,0.0023797925,-0.04305005,-0.017181763,0.031212974,0.006419251,0.037041496,-0.005111209,0.006424877,0.0057413196,0.04680821,0.030807905,0.010211166,0.030627873,0.0069987276,-0.035646252,0.0065992824,0.018093174,-0.006436129,-0.02115371,0.018678276,0.044557817,-0.014582558,-0.0049171126,-0.00082561356,-0.0062954794,0.015032637,0.0026287423,-0.012613462,-0.014683826,0.00031030833,0.015628992,0.051038954,-0.010633115,-0.08074416,0.042554963,-0.014458786,-0.06089568,-0.00678494,-0.028737541,0.04196986,0.031798076,0.016855456,0.020422332,-0.012253399,-0.00089382863,0.011415128,-0.034341022,-0.04145227,-0.020827403,-0.02320157,0.039134365,0.04707826,0.014368771,0.01277099,0.012219643,0.036906473,0.031100456,0.0095360475,-0.044220258,-0.022650223,0.045908052,0.006076066,0.022256404,-0.028242454,0.0035303067,-0.015775267,-0.014166235,0.008107047,-0.017519323,-0.0022686792,-0.056889977,-0.020838656,0.018295709,-0.025924547,0.00009326831,0.02639713,-0.041137215,0.020456089,0.017451812,0.014278755,-0.003339023,0.0007106325,-0.033485875,0.04833848,-0.04343262,0.033733416,0.007218141,0.026082074,-0.019240875,0.017181763,0.018892065,0.027319793,0.01818319,-0.022042617,0.0015752764,0.010858155,0.005997302,-0.022121381,-0.046583172,0.027072249,-0.011043812,-0.014503794,-0.03204562,-0.04640314,0.024281759,-0.04703325,0.022132631,0.008855304,0.024439286,0.011803321,-0.006008554,-0.0045654885,0.01282725,-0.059410423,0.006970598,0.047213282,-0.00038467685,0.04685322,0.0005306009,-0.004368579,-0.0053249965,-0.017541828,-0.0138399275,-0.014616313,-0.019522175,0.028242454,-0.015156409,0.026262106,0.028647525,-0.0031477397,-0.043567643,-0.014121227,-0.010036761,0.014301258,-0.015944047,0.02862502,0.021142459,0.011713305,0.009080343,-0.030717889,-0.019769717,0.03512866,-0.042397436,0.009845477,0.037064,0.03112296,0.04320758,0.031280488,-0.024866862,-0.044850368,0.0598605,0.031302992,-0.033823434,-0.010818773,-0.021772569,-0.00618296,0.006762436,0.01693422,0.03152803,-0.001908616,0.0003401964,-0.003369966,-0.033710912,0.013333589,0.008528996,-0.013862432,-0.0032208774,-0.010740009,-0.052209157,-0.01208462,-0.026959728,0.005552849,-0.0050549493,0.035376206,0.025744516,-0.02439428,-0.016979229,-0.019049592,-0.06445131,-0.0026695307,-0.020568607,0.056844972,0.0028580013,-0.023989208,0.0098004695,-0.024124231,-0.014368771,0.02531694,0.025519477,0.02439428,-0.00037026027,-0.008405224,-0.031257983,-0.0062954794,0.06971723,-0.017170511,0.007741358,0.005417825,-0.013086045,-0.0066949246,0.044827864,0.0057413196,0.018250702,-0.012714731,0.01385118,0.030582864,-0.04235243,-0.014154983,0.0044585946,-0.026104579,-0.009040961,0.019915994,-0.016900465,-0.009204115,-0.011482639,-0.020647371,0.0100592645,-0.04892358,-0.0037244032,0.016281607,0.014076219,0.007364417,-0.0018748601,0.025046894,0.010565603,-0.004756772,0.0048833564,0.045975566,0.04343262,-0.0165404,-0.036501404,0.02803992,0.0150551405,0.00869215,-0.0055922307,0.0433426,0.024664326,0.029142613,0.010807521,-0.0025148161,0.05490963,0.034070976,-0.005963546,0.015606487,-0.010087394,0.04320758,-0.039179374,0.03870679,0.025969556,-0.059095368,0.009761088,-0.019072095,0.034566063,0.017316788,-0.013288581,0.014256251,0.0018523561,0.019488418,0.009266,0.0036203226,0.033305842,-0.041474774,-0.04698824,0.03956194,-0.028129933,-0.012838502,-0.011280104,-0.01550522,-0.038211703,-0.0028369038,-0.02057986,-0.012309659,0.04937366,-0.013007281,0.024146736,-0.043905202,-0.016945472,-0.0075444486,0.03665893,-0.010683749,-0.0059466683,0.05175908,-0.040912177,-0.007195637,0.0025274747,-0.027859887,0.038009167,0.0017665599,0.0113194855,0.007313783,0.030942928,-0.005189973,0.0063123573,-0.0010436205,0.03148302,0.022616467,-0.038346726,0.061480783,-0.062695995,0.04941867,0.006447381,-0.0042701242,-0.022593964,-0.0009402431,0.007589456,0.0116232885,0.011280104,0.0075219446,-0.0015851218,0.017294284,-0.015032637,0.02684721,-0.00056927954,0.007178759,0.0020070707,0.027409809,0.0028861312,-0.027184768,-0.02479935,-0.0122759035,0.03625386,0.019645946,0.02087241,0.007201263,0.025091901,-0.00056927954,0.04829347,0.007775114,-0.026127083,-0.011403875,0.016664173,-0.015493968,0.0030549108,0.025496973,0.0011420753,-0.011071942,0.006858078,0.006531771,0.010762513,0.03182058,0.0433426,-0.03294578,-0.00860776,0.028805053,0.011533273,0.015156409,-0.023156563,-0.0032096256,0.011432005,-0.0069424678,0.0069987276,0.016495394,0.0050352584,-0.022031365,0.02434927,-0.03983199,0.009569803,-0.0085402485,0.017800622,0.05112897,0.023561632,-0.026014563,-0.025519477,-0.01219714,0.013344841,-0.020962426,-0.00039909343,0.01236592,-0.030290313,0.0381892,0.022638971,-0.038639277,0.051804088,-0.022211395,-0.00044480458,-0.014177487,-0.016450386,-0.0017960963,0.026892217,0.00013836412,-0.029255131,-0.009614811,-0.0065486487,-0.010616237,-0.012984778,0.0051590297,0.014076219,0.026554657,0.0028158063,0.0021533465,0.025091901,0.02502439,0.058105193,-0.0058172704,-0.0165404,0.04178983,0.04133975,0.013524872,0.0007021935,-0.028535005,-0.013266077,0.06301105,0.017665599,-0.053199332,0.009046587,0.004216677,0.044377785,0.00937852,0.02371916,0.039719466,0.012062116,-0.006987476,-0.0053053056,0.015460212,-0.0016807636,-0.0004363656,-0.008574004,0.047168273,0.041429766,-0.035038646,0.0032011864,-0.01431251,0.003865053,-0.02713976,-0.011499518,-0.0058341483,0.045705516,-0.008658394,-0.015583984,-0.056259867,-0.010875032,-0.0011863799,-0.0036484525,0.015775267,-0.004739894,0.015156409,0.0062786015,-0.032293163,0.025586989,0.023786673,0.006931216,0.004658317,-0.00518716,-0.014526298,0.00074403675,-0.018734537,0.001053466,-0.000051556894,0.02303279,-0.02993025,-0.04178983,0.00852337,0.026149588,-0.018216945,0.027229777,0.025902044,0.022706483,-0.020219797,0.016619164,-0.02662217,-0.00700998,0.024506798,-0.022661475,0.021367498,-0.000104784005,-0.007251897,0.016349118,0.011927092,0.042960037,0.031145463,0.035623748,-0.0041716695,-0.027859887,-0.016630417,-0.006064814,0.034588568,0.04109221,0.0071843853,0.028917572,-0.0026456204,-0.007268775,0.00963169,-0.023359098,0.024529302,0.01630411,0.023381602,0.0048045926,-0.0020436398,-0.019645946,0.044580318,0.05594481,0.008770914,-0.010301182,0.00937852,-0.023179065,-0.025091901,0.00190299,-0.014695077,0.018914567,-0.023156563,-0.02993025,0.04019205,-0.010379946,0.02446179,-0.042487454,-0.006362991,-0.014154983,0.016990481,0.0028973832,0.004613309,-0.0070887436,0.037604097,-0.0063179834,-0.024844358,-0.021333743,0.012208392,0.01704674,-0.02885006,0.022301411,-0.025767019,0.0025992058,-0.0006673827,0.02479935,-0.0016329427,-0.0049424293,0.018993331,0.021131206,-0.022627719,0.029907746,0.0010710473,-0.022942774,-0.0037665982,0.03841424,-0.009738583,-0.0010168971,-0.012185887,0.016394125,-0.0054487684,-0.043950208,-0.025564484,0.004222303,-0.0290751,0.04082216,-0.013997455,0.022278909,-0.011268851,0.017631844,0.035263687,-0.011049438,-0.024821853,0.024214247,-0.025767019,-0.016157834,-0.032810755,-0.025384452,-0.008303957,-0.0022897767,0.02160379,0.01248969,-0.010965048,0.010655619,0.010762513,0.017924394,-0.012410927,0.022954026,-0.0005460724,-0.047348306,0.040012017,0.02446179,0.0113644935,0.0102336705,-0.004306693,-0.018453237,0.015246425,0.00032648304,0.002512003,0.015347692,0.009344764,-0.017755615,0.0013727408,-0.022143884,-0.004728642,-0.006537397,-0.006036684,0.023786673,0.025519477,0.011460135,0.033823434,0.0057610106,0.019634694,0.001741243,-0.017350543,-0.02468683,0.0010808927,0.005395321,0.00022961058,0.004815845,0.01704674,0.03101044,-0.001684983,-0.0011512176,-0.04327509,-0.014121227,0.005952294,0.0027342297,0.023764169,-0.007302531,0.025226925,-0.0018875186,0.0066611683,0.002375573,-0.0018664212,0.011403875,-0.014515046,-0.008810296,-0.013333589,0.011139454,0.029097604,0.0025471656,0.016967976,0.015966551,0.0094516575,0.013761164,0.0040563364,0.01637162,-0.0290751,-0.022638971,-0.019454662,0.03636638,-0.009232244,0.006486763,-0.0017145195,-0.003049285,-0.021333743,0.0018903316,-0.006739932,0.0066274125,-0.028197447,-0.013266077,-0.02713976,-0.0141437305,0.02479935,0.014672574,-0.009682324,-0.017238025,-0.016450386,-0.013052289,0.044197753,-0.050858922,-0.019150859,0.020816151,-0.03148302,0.038976837,0.017125504,0.011690801,-0.0050155674,0.02930014,-0.005274363,0.017339291,-0.000010762997,-0.005550036,0.013929944,0.004835536,-0.029097604,0.0045598624,0.017170511,0.013614888,0.0044529685,-0.016641669,0.011657045,0.02269523,-0.0044614077,-0.00992424,-0.0031618045,-0.011848329,0.005851026,-0.036456395,0.006447381,-0.012680975,0.007859504,-0.008140803,0.017834378,-0.019679703,-0.0073981727,0.018273205,-0.032675732,-0.016810449,0.016202843,0.01145451,0.029165115,-0.019645946,-0.023471618,0.026914721,0.016664173,0.0071618813,0.010357441,0.03323833,0.008472736,0.01277099,-0.03996701,-0.006852452,0.022425184,-0.0021238101,-0.013693652,-0.008129551,0.013266077,-0.022447687,-0.010565603,0.019634694,0.0047849016,-0.014447534,-0.012095871,0.005890408,0.0020506722,0.02188509,0.034611072,-0.0032715113,-0.03584879,0.024416784,-0.014852606,-0.02349412,0.039809484,-0.02434927,0.031933103,0.0010604985,-0.0028917573,-0.00863589,0.023066547,-0.042960037,-0.01687796,0.0007215328,0.013052289,-0.0053165574,-0.00030608886,0.015876535,0.022762742,0.017699355,-0.028422486,0.025496973,-0.04019205,0.023809176,0.024124231,0.003381218,-0.015010133,-0.0054262644,-0.02405672,-0.0070268577,-0.07286778,0.013671148,-0.007769488,-0.00018882219,0.011291356,-0.020073522,0.005153404,-0.01641663,0.020276057,0.011645793,-0.01784563,-0.0132323215,0.0035190547,-0.016956724,0.017024236,0.013783668,-0.0014711956,0.037581593,-0.004194173,-0.0075557004,0.040169545,0.02001726,0.024529302,0.014166235,-0.009401024,0.020647371,-0.0780887,0.0013882122,0.01675419,-0.01185958,-0.030762896,0.020039765,-0.0015443334,0.005552849,0.0110156825,-0.0066386643,0.015482716,0.0007897479,-0.0063798693,-0.021232475,-0.0068412,0.03164055,0.013693652,-0.0003783476,0.00797765,0.020512348,0.0032490075,0.0071450034,0.010194289,-0.004700512,-0.00877654,0.005896034,0.003850988,0.0045345454,0.050543867,-0.0020492657,-0.020276057,0.036793955,-0.023516625,-0.0083208345,-0.006498015,-0.03506115,-0.022267656,0.01017741,0.0018889251,0.01807067,0.0062617236,0.02160379,-0.0075725783,0.01442503,-0.022548955,-0.023854185,0.023359098,-0.01994975,0.0082702,0.0028073674,0.015640244,-0.016900465,0.04100219,0.028715037,0.0070943693,-0.019342143,0.02405672,0.00888906,-0.014053715,0.0011477013,0.033778425,0.012140879,0.01282725,0.020107277,-0.013603636,-0.012005856,0.011690801,0.027162265,-0.0008544467,-0.032068126,-0.011927092,-0.011837076,-0.017586835,-0.013063542,-0.035376206,0.014908865,0.017260527,0.00031083578,-0.021412507,0.03717652,-0.011460135,0.0031646176,0.011302607,-0.017226772,-0.008827173,0.020174788,-0.008905937,-0.016045315,0.013412353,-0.020141033,-0.010728757,-0.03773912,0.020647371,-0.017935647,-0.012343415,-0.0008424915,-0.0020211358,-0.0104080755,-0.03506115,-0.011690801,-0.030290313,-0.013052289,0.013142305,0.008995953,0.008900311,-0.03665893,0.007645716,0.0066555426,-0.0022518013,-0.0051815338,-0.049058605,-0.001973315,-0.002990212,0.00769635,0.040619627,-0.010846903,0.021108702,0.0066386643,0.033373356,0.0060873176,-0.009069091,0.011533273,0.0023305651,0.003001464,-0.014109975,0.01875704,0.010301182,-0.012377171,-0.006419251,0.008416477,-0.048608527,-0.019994758,0.018959576,-0.0066836723,0.011460135,-0.005645678,-0.029907746,-0.0039353776,0.033395857,0.048833568,-0.037064,0.01715926,0.03287827,-0.020467341,0.0404621,0.047888402,0.05855527,-0.018768292,-0.0138399275,0.0151001485,0.026037067,-0.004613309,-0.012692226,-0.029097604,0.015797772,0.010678123,-0.014335015,0.0113644935,0.04003452,0.002808774,-0.00047082477,0.032968283,-0.018880812,0.02292027,-0.017766867,-0.0017060805,-0.043365106,-0.029435163,-0.005687873,-0.021615041,-0.0049705594,-0.015111401,-0.0013207004,0.025046894,0.045885548,0.021221222,0.05580979,0.010143654,-0.0034599819,-0.038301717,-0.02342661,-0.011094446,-0.018689528]},{"id":"class-REST","type":"class","source":"main","text":"Class: REST\nDescription: HTTP client for the Fluxer API. Used by Client internally.\nProperties: requestManager: RequestManager, Routes: { readonly channel: (id: Snowflake) => `/channels/${string}`; readonly channelMessages: (id: Snowflake) => `/channels/${string}/messages`; ... 55 more ...; reado..., token: string | null\nMethods: delete(route: string, options: { auth?: boolean; }) -> Promise — Send a DELETE request.; get(route: string, options: { auth?: boolean; }) -> Promise — Send a GET request.; patch(route: string, options: { body?: unknown; auth?: boolean; }) -> Promise — Send a PATCH request.; post(route: string, options: { body?: unknown; auth?: boolean; files?: Array<{ name: string; data: Blob | ArrayBuffer | Uint8Array; filename?: string; }>; }) -> Promise — Send a POST request.; put(route: string, options: { body?: unknown; auth?: boolean; }) -> Promise — Send a PUT request.; setToken(token: string | null) -> this — Set the bot token for authenticated requests.","meta":{"url":"/docs/classes/REST"},"embedding":[-0.042837195,-0.008948088,-0.045882385,-0.024111545,0.06281273,0.0034087952,-0.05349536,0.059222136,0.03245173,0.018464308,-0.0020822058,-0.0026844263,-0.015032787,0.006635788,0.0106752105,0.05058652,-0.01410105,-0.037951253,-0.0007002234,0.046177812,0.0053773746,-0.0047353846,-0.005388737,0.00827201,-0.029156562,0.0018464307,-0.018873364,0.0397011,0.008754922,-0.056722354,0.052768152,-0.007862954,0.02742944,0.033292565,0.06299454,-0.000823082,0.011391058,0.037360396,-0.012476191,-0.0133624775,-0.021611761,-0.019339232,0.014635094,0.013248851,-0.013532917,0.024702404,-0.021339059,0.0021802087,-0.011623992,0.024066094,-0.041269146,0.0069653047,-0.040405586,0.06976668,0.05208639,-0.025611416,-0.022918466,0.00007465616,-0.035337843,0.023725215,0.025088733,-0.017827999,-0.025929568,-0.0063289963,-0.032678984,0.065630674,-0.005062061,0.037269495,0.012487553,0.1126266,0.023213895,-0.022963917,-0.01264663,-0.038178507,0.0041984995,-0.009101483,-0.009328736,0.025565965,0.016305404,-0.04488247,-0.016884899,-0.003226993,-0.012180761,-0.057813168,-0.030270102,-0.0022725302,-0.039042067,-0.055404287,0.02404337,-0.030451905,0.008112933,-0.005306358,-0.082220145,0.015021425,0.014510105,-0.02370249,0.011748981,-0.0052751107,-0.009629847,0.039064795,0.069039464,-0.026588602,-0.047041375,0.018702922,0.025952294,-0.01354428,-0.03699679,-0.0028903743,-0.01015821,-0.010993364,-0.040132884,-0.02456605,0.014328303,0.03472426,0.03738312,-0.015282765,0.0119535085,0.0037326308,0.003334938,-0.00068317936,-0.023475237,-0.020339144,0.060676556,-0.011243343,-0.015657732,-0.017453032,0.0207482,-0.032610808,-0.062130976,-0.025179634,0.0319745,-0.008391318,-0.015919074,-0.037724,-0.029520167,0.011067222,0.0072664153,-0.018237054,0.008521988,-0.022770753,0.010805881,-0.009146933,0.034178853,0.00077479077,-0.0263159,-0.012680719,-0.009544627,0.027315812,-0.035905976,0.0244297,-0.029611068,0.0012030207,0.008181108,0.021679938,-0.016566744,-0.049359355,0.051041026,0.03704224,-0.036087777,-0.006351722,0.012237575,0.0042553125,-0.008760604,-0.036155954,-0.00784591,-0.010300243,-0.0072380085,-0.0030764376,-0.029951947,0.020680025,0.039837454,0.009726429,0.003579235,0.0054256655,-0.037905805,-0.025497789,-0.00724369,0.031406365,-0.0037581967,-0.010260474,0.045018822,0.01903244,-0.015453205,-0.030792784,-0.03558782,-0.00069205643,-0.040837366,0.062949084,0.02152086,0.012828433,-0.056358747,0.07962946,-0.015510018,0.014191951,-0.018225692,0.0020651617,0.030247377,-0.007828866,0.006476711,0.013839709,-0.020009628,0.008158383,0.039496575,-0.027293088,-0.009669616,-0.0031360916,-0.020350508,0.00048894907,-0.0033065313,0.012476191,0.01637358,0.07081204,-0.009544627,-0.0047524287,-0.043518953,0.053858966,0.006175601,0.07962946,-0.056676902,0.00334346,-0.013816983,0.004775154,0.025429612,-0.039019343,-0.002683006,0.058540378,0.03433793,-0.04197363,-0.021748114,-0.038973894,0.016669009,0.06031295,-0.06363084,-0.02674768,-0.0015012902,-0.018362043,-0.009459407,0.00437178,0.009254879,-0.021191344,-0.023452511,-0.03724677,-0.012612542,-0.0038945486,0.0033747072,0.005465435,-0.028179374,-0.060540203,0.021225432,0.039837454,0.08740151,-0.000428585,0.026656779,-0.030383728,0.028065747,0.009805968,0.019134704,0.0001594322,-0.0056216717,0.017737098,0.023543412,0.0091582965,0.039337497,0.026520427,-0.034837887,-0.021191344,-0.028497528,0.022395784,-0.00021926365,0.03299714,-0.01765756,0.0263159,0.029997397,-0.035474196,-0.034656085,-0.0022142965,0.01949831,-0.024270622,0.012828433,0.023111632,0.029588344,-0.029247463,-0.013612456,0.009306011,0.014646457,0.013396565,0.04401891,0.014930523,0.0037951253,0.027406713,0.010180935,0.036201406,0.027111284,-0.087946914,0.00981733,0.03856484,0.049313903,-0.01702125,0.041473676,0.04817764,0.026179548,0.017771186,-0.028065747,-0.018271143,0.003241196,0.015555469,0.03497424,-0.03381525,0.045314252,-0.05417712,0.022509411,0.023259345,-0.0414964,-0.030815508,-0.023997918,-0.0028747506,0.006005161,-0.014328303,0.070675686,-0.005172847,0.0018577934,-0.06576702,0.01590771,-0.0034144765,-0.030770058,-0.07872044,-0.0340425,-0.028065747,-0.029224738,0.046155088,0.02902021,-0.050041113,0.014862347,0.022486687,0.047086824,-0.0067607774,-0.015635008,0.024384249,0.017430305,0.039246596,0.04758678,-0.04808674,-0.026429527,0.029383816,0.010124122,0.053949866,-0.016305404,-0.009720747,-0.0082208775,0.0301792,-0.038905717,0.04474612,-0.025565965,-0.006249458,-0.027543066,0.0131238615,-0.01032865,-0.04465522,-0.024293348,0.012737531,-0.03879209,-0.0051415996,-0.07181195,0.03192905,-0.0018166038,-0.00037283698,-0.007936812,-0.018112065,-0.025929568,-0.049813863,0.024725128,-0.008431087,0.0046984563,0.025088733,-0.021929916,-0.042450864,-0.033406194,0.0018208647,0.0007428333,-0.0004775864,0.055086132,0.02949744,-0.017623471,-0.033156216,-0.0023293435,-0.0033150534,-0.02310027,-0.007453899,-0.012135311,0.02902021,0.001663208,0.026474977,-0.013657906,-0.0059483475,0.014714633,0.044382513,0.021316333,0.015566831,0.007601613,0.011192211,0.043223523,0.01838477,-0.027156735,0.059131235,0.0034996965,-0.008544713,0.008249285,-0.00835723,0.00054753775,0.009482132,0.032815337,-0.016521294,0.03622413,0.08249284,0.00013510902,-0.05031382,0.036360484,-0.047950387,0.0053376053,0.011061541,-0.024111545,-0.009646891,-0.024816029,0.02027097,0.017691648,0.0044200714,0.052495446,-0.0339516,-0.045746032,-0.0169758,0.027702143,-0.00835723,0.06467621,0.036814988,0.032724433,0.012669356,0.00415873,-0.046950474,-0.015271403,0.010646804,-0.011669442,-0.0007197529,0.028815683,0.014532831,-0.0017583702,-0.0033491412,0.0045194943,-0.002255486,0.034928787,0.017043976,-0.07035753,-0.037451297,0.0023293435,0.011851245,-0.045791484,-0.002631874,0.033497095,0.05417712,0.06831226,0.0074652615,0.03613323,-0.0044030272,-0.04161003,-0.0058176774,0.024066094,-0.004488247,0.0005894375,0.0046927747,-0.0060449303,-0.008556076,0.0030111026,0.010476364,0.029770145,0.02558869,-0.030588256,-0.050359268,-0.0066073816,-0.0018876203,0.044337064,0.04256449,0.07353908,0.025225084,-0.05717686,-0.024679678,0.00484333,0.06976668,0.0069368985,0.0026375554,-0.023884293,-0.00029560647,0.0039371587,0.000021549089,0.018168878,-0.009680978,-0.0077834157,-0.05576789,-0.04042831,-0.007448218,0.019089254,-0.06803955,0.030201925,-0.04313262,-0.011862608,0.020736838,0.057495013,0.034201577,0.02708856,-0.014498742,-0.0013812722,-0.019998265,0.027224911,0.062267326,0.014601006,-0.004474044,-0.00081598037,0.020282332,-0.037792176,0.0113740135,-0.044132534,-0.019986903,0.0013926349,0.0028364018,0.0116126295,0.0028946353,-0.017566659,0.004337692,-0.021679938,-0.008913999,-0.0027398192,0.011203574,0.027588516,-0.021236794,0.02091864,0.012328476,0.0038604606,0.038587563,-0.015271403,-0.00037958357,-0.019214243,-0.018441582,-0.03211085,-0.0009288967,-0.033678897,0.01260118,-0.008289054,0.051495533,-0.003922955,0.032156304,0.0021830492,0.014214676,0.03899662,-0.008203834,-0.011589903,-0.014532831,0.027247638,0.041541852,-0.01281707,-0.023861567,-0.010862694,-0.0066471505,-0.022191256,0.010408188,0.011476277,0.021043628,-0.039746553,-0.0021887305,-0.005093308,0.045405153,-0.034610633,-0.01598725,0.020043716,0.014941886,-0.0030707563,0.0395193,-0.0024699562,0.035133317,-0.055449735,-0.033156216,-0.014396478,0.036883164,-0.0050649014,-0.045723308,0.016316766,0.05504068,-0.008834461,0.005306358,-0.026020471,-0.028724782,-0.012339839,0.051586434,0.056904156,0.033383466,0.009453725,-0.023657039,-0.032951687,0.01170353,0.012328476,-0.0044087083,0.010527496,0.017100789,-0.0034428833,-0.01260118,-0.022577588,-0.0032383555,-0.014373753,0.0003579235,0.0133511145,-0.024656951,-0.038087606,0.05576789,0.031451818,0.038973894,-0.006113106,-0.043791655,0.008556076,0.01937332,-0.032156304,-0.0058460836,0.006158557,0.008834461,-0.0074879867,-0.0062380955,-0.00059831457,-0.009544627,-0.0032042675,0.016396305,-0.00088415627,-0.0340425,-0.015589557,-0.0005691978,0.02331616,0.004346214,0.038723912,0.045246076,-0.024202446,0.017180327,0.03283806,0.017180327,-0.041632753,-0.035246942,0.04401891,0.00398829,0.027361263,-0.013453378,0.013828346,-0.027861219,-0.031474542,0.0034400425,-0.0031105257,-0.003309372,-0.02275939,-0.015316853,0.011771706,-0.02379339,0.02220262,0.015964525,-0.027202185,-0.0040536257,0.016918987,0.03299714,-0.0061187875,0.009226472,-0.00780046,0.060722005,-0.024838755,0.009709385,0.027906671,0.041019168,0.015328216,0.003763878,0.038496662,0.013623819,0.03299714,-0.0018379088,-0.008936725,0.020691387,0.0022966757,-0.020066442,-0.01264663,0.033542544,-0.025338711,0.012521641,-0.02940654,-0.033224393,0.06831226,-0.0642217,-0.022702577,0.0053432863,0.0008031974,0.06381264,-0.003965565,0.015419117,0.0067891837,-0.028815683,0.010260474,0.0036701362,0.006164238,0.05344991,-0.0060449303,-0.024884205,-0.00093883905,-0.02408882,-0.009555989,-0.0006544177,-0.009663935,-0.018634748,-0.013282939,0.004346214,0.040746465,0.010959277,-0.031656343,-0.008504944,-0.004797879,-0.00050741335,0.017328043,0.043178074,-0.0135897305,0.011249024,-0.008902637,-0.02091864,0.0114876395,-0.0077266027,-0.024588777,-0.013907884,0.01663492,-0.025747767,0.02858843,0.016793998,-0.022100355,-0.008476538,0.025475062,0.0017342246,-0.025656866,-0.008902637,-0.032860786,0.0036843396,-0.03486061,0.010078671,-0.005363171,-0.008982175,-0.004556423,-0.013385203,-0.015612282,-0.019225605,0.02529326,-0.017134877,-0.011413783,-0.005598946,-0.031769972,-0.0052751107,-0.007897043,0.0063289963,-0.01118653,0.022907104,-0.019486947,-0.03013375,-0.0244297,-0.042791743,-0.019191517,0.005246704,-0.02563414,0.04179183,0.0022057747,-0.03183815,-0.0068516782,-0.019748287,-0.037996706,-0.0062380955,0.0073061846,0.0013010235,-0.002521088,-0.00002685314,-0.008209515,0.03254263,0.053813513,-0.040064707,-0.012839795,0.0023605907,-0.018089341,-0.016487205,0.02190719,-0.0009615643,0.007806141,-0.032179028,-0.0028236187,0.0263159,-0.025475062,-0.020770926,-0.044223435,-0.035178766,-0.010766111,-0.019986903,0.0030537124,-0.030270102,-0.01744167,0.00582904,0.00095162203,-0.054813426,0.02897476,-0.0015680458,-0.007959537,-0.009499176,-0.010533177,0.031951774,0.04465522,0.03883754,-0.022486687,0.0414964,0.0073800418,-0.016907625,-0.008328823,0.03226993,-0.0050137695,-0.002031074,0.00019067948,0.042291787,0.0033917513,0.012487553,0.014351028,-0.0012413696,0.040587388,0.018623386,0.023611588,-0.00065938884,0.001482826,0.02931564,0.019998265,0.016066788,0.02858843,-0.03124729,0.0072664153,-0.0001945854,0.07672062,0.03486061,-0.01371472,0.0133624775,-0.02756579,0.028429352,-0.0019316507,-0.012237575,0.0064710295,-0.0017881972,-0.0056046275,0.0037212681,-0.022043543,0.004192818,-0.0226344,-0.010857013,-0.03665591,-0.025020557,-0.0051700063,-0.0062210513,0.030429179,-0.026497701,0.06949397,-0.04024651,-0.027679417,-0.002940086,0.039587475,0.0226344,-0.011584222,0.016157689,-0.03729222,-0.03356527,-0.007470943,-0.012362564,0.0063176337,0.028361177,0.01410105,0.015657732,0.034951515,0.0049796817,-0.0028520254,0.04538243,-0.0056301933,0.03558782,-0.048904847,0.021850377,-0.014180589,0.03642866,0.013521555,0.011714893,-0.009788924,-0.034610633,0.038155783,0.021714026,0.0039485213,0.023566138,-0.0011270329,0.03776945,-0.012180761,0.027952122,-0.002661701,-0.025020557,0.03472426,0.02031642,-0.010169572,0.03863301,-0.0000037561106,0.026884032,0.027952122,-0.012248938,0.049223002,0.016146326,0.039155696,-0.016180415,-0.011601266,-0.013907884,-0.02267985,0.0319745,0.0037297902,-0.024793305,-0.0017924581,0.038133055,-0.043655306,-0.022963917,0.03342892,0.027247638,0.018146154,0.006306271,0.010538858,-0.029861046,-0.03313349,0.0025054645,0.01787345,-0.023429787,0.02275939,-0.048995752,0.015532744,-0.017907538,0.006158557,-0.0039797686,0.005172847,-0.008544713,0.0013819824,-0.013487467,0.024952382,-0.011885333,-0.0029429265,0.020043716,0.009362824,-0.041564576,-0.011180849,0.0074823056,0.06031295,-0.019293781,-0.030883685,0.022691214,0.01825978,0.0044257524,0.02563414,0.0036076417,0.039587475,-0.009658253,-0.0064483043,-0.006357403,-0.022975279,0.013305664,0.03433793,-0.010300243,-0.052404545,-0.0131238615,0.012805708,-0.04076919,0.0014799853,0.0029017369,-0.00394284,0.026634054,-0.00036751074,0.013623819,0.027452165,0.0023179809,0.017032614,0.03149727,0.032201752,0.058131322,0.018350681,0.005113193,0.013407928,-0.006493755,0.028861133,0.044382513,0.035519645,-0.01702125,0.030770058,0.010413869,0.0208391,0.018941538,0.016998526,0.0378149,0.025838668,0.0060506114,-0.0055961055,0.011214936,0.009925275,-0.018964265,-0.009112846,0.015316853,0.040996443,-0.007448218,-0.016475843,0.006380128,-0.0039030705,-0.029520167,0.02511146,0.0011802954,0.040132884,0.015237315,0.013476104,-0.03265626,-0.012726169,0.042587217,-0.011385377,-0.046018735,-0.016475843,0.02486148,0.019816464,-0.0072720964,-0.0053177206,-0.0026688026,0.0026659619,0.00089125795,-0.009538946,-0.013748808,0.006124469,-0.011748981,0.019248331,-0.025066007,0.008533351,-0.027406713,-0.014328303,0.028656606,0.010669529,-0.013487467,0.00801635,0.029065661,0.03326984,-0.0037695593,0.058676727,0.027974846,-0.03086096,0.009652572,-0.0008813156,-0.004437115,0.017407581,-0.009141252,0.024816029,-0.004877418,0.038428485,0.021486772,0.025906844,0.010982002,-0.0132034,-0.022111718,0.0004530857,0.031792697,0.019350594,0.0058176774,-0.0021447004,-0.000065601555,-0.014441929,-0.0022228186,-0.0025707998,-0.0036559328,-0.008323141,0.035087865,0.014419204,0.0066244253,0.0052069346,0.01157286,0.035565097,-0.010578628,0.0015552628,-0.007402767,0.012703444,-0.03211085,-0.017827999,-0.000023746165,-0.012692081,-0.019043803,-0.02704311,0.0029514486,0.007919768,0.008845824,-0.029383816,0.015589557,-0.03090641,0.031133663,-0.009459407,0.0029088387,-0.0121921245,0.022827566,-0.023520688,-0.020589123,-0.014816897,0.011050178,0.007857273,0.009595758,0.045314252,-0.019691475,-0.014396478,-0.02053231,-0.003596279,-0.023657039,-0.006453986,0.025315985,0.0048973025,-0.005769386,0.022907104,-0.0032696028,-0.018782461,0.010703617,0.042587217,-0.04179183,-0.033383466,-0.011771706,0.0053347647,-0.0022441235,-0.038519386,-0.021804927,0.01985055,-0.035633273,0.017078064,0.008817417,0.004902984,0.0036303669,-0.005422825,0.044996098,-0.02048686,-0.020930003,-0.014112412,0.0052495445,-0.015453205,-0.03138364,-0.0009416797,0.018577933,0.0011753242,-0.032906238,-0.003326416,-0.019771012,0.022873016,0.030406453,-0.017089427,-0.02636135,0.016828086,-0.020191431,-0.046995923,0.04115552,0.022304883,0.014430567,0.016828086,0.0244297,0.009896869,0.0042496314,0.00514444,0.0029713332,0.0033065313,-0.00930033,0.017805275,0.01286252,-0.020725476,0.03454246,0.014055599,-0.040655565,0.014191951,-0.030156475,-0.012669356,0.004689934,0.02237306,-0.00093599834,0.0006039959,-0.0244297,0.0062210513,0.028315727,0.0082265595,0.02636135,0.014794172,0.0059937984,0.0069709863,-0.03972383,-0.020327782,-0.040496487,-0.0035934383,0.0024926816,-0.025702316,0.017055338,-0.0141692255,0.008056119,-0.032951687,0.014680545,0.0075448,0.014430567,0.03279261,-0.03647411,-0.04449614,-0.011760344,-0.010283199,0.03865574,0.022600312,0.010226386,-0.009056033,0.0021986729,0.0014139399,0.039405674,0.025088733,-0.01337384,-0.014032873,-0.021998093,0.021884466,0.0017612108,0.0022824726,-0.0068914476,-0.0043973457,0.009913913,0.013635181,0.007862954,0.017293954,-0.014646457,0.0061699194,-0.002729877,-0.008896955,-0.0036417295,0.0208391,0.016907625,-0.013987423,-0.018407494,-0.0063914913,0.04522335,0.0111353975,-0.0034343612,0.011601266,-0.011714893,0.017203053,-0.017066702,-0.001041813,-0.005482479,0.003317894,0.01779391,0.012169399,0.025066007,-0.015737271,-0.013419291,0.002546654,-0.026543152,-0.01041955,0.025747767,-0.001881939,0.0036672954,-0.00064838125,0.012203487,0.011794431,-0.028474802,-0.015169139,-0.018873364,0.034201577,0.017123515,-0.0245206,-0.025475062,-0.049450256,-0.0037581967,0.012805708,0.008482219,-0.010919508,0.019396044,0.015328216,-0.018612022,-0.03086096,-0.00014265454,0.013521555,0.0529045,-0.009652572,-0.018725649,0.013896522,0.0067607774,-0.018589297,0.00797658,0.016214503,-0.010925189,-0.010783155,-0.02057776,-0.013782895,0.0061358316,-0.01577136,-0.01011276,-0.004900143,0.0071811955,-0.018714286,-0.011169486,0.024793305,0.006630107,-0.02125952,-0.0015240156,-0.006482392,0.0091582965,-0.01654402,0.022475323,-0.0015424798,-0.012089861,-0.008771966,0.0013897943,-0.006323315,0.022702577,-0.0027185143,0.0032298334,0.029202012,0.03361072,-0.0152259525,0.008192471,-0.020191431,-0.019714199,-0.013169312,0.007107338,-0.00068317936,0.009095802,0.009646891,-0.0021106123,0.03313349,-0.033042587,0.013680631,-0.04358713,0.016953075,0.008465175,0.005130237,-0.008703791,-0.003823532,-0.026202273,-0.024929656,-0.04740498,0.0207482,-0.023202533,0.016100876,-0.0072152833,-0.0067664585,-0.0073061846,-0.019998265,-0.011339925,0.019430133,-0.0141465,-0.013282939,0.0065392056,-0.003724109,0.01671446,0.0007833127,0.008737879,0.0127716195,0.043223523,-0.01663492,0.009448044,0.022929829,0.00071868766,0.018168878,-0.011748981,0.014135137,-0.06553977,0.004658687,-0.021998093,0.0263159,-0.020691387,0.021611761,0.008760604,-0.000098180404,0.03351982,-0.012385289,0.020020992,0.025020557,0.010027539,0.0044513186,-0.0075675254,0.0030593937,-0.02147541,-0.040041983,0.0432008,0.016248591,-0.009823011,-0.0013358216,0.021895828,-0.016816724,0.020032354,0.025066007,-0.004377461,-0.0058034738,0.04813219,-0.0070618875,-0.00882878,-0.017157603,-0.01264663,-0.020464133,0.043655306,-0.036269583,-0.020952728,0.039746553,0.024316072,-0.0026105691,0.009061714,0.019964177,-0.004797879,0.02674768,0.018986989,-0.033338018,0.01371472,-0.020032354,0.018362043,-0.027020384,-0.012146674,-0.017055338,0.017771186,-0.0034315207,-0.014305578,-0.017987076,0.010947914,-0.0063119526,0.033587996,-0.0016319607,0.0070902943,0.0074823056,-0.0043234886,0.039542023,0.0071471073,0.0029741738,-0.04088282,0.014601006,-0.007766372,-0.02945199,-0.0003604091,-0.023611588,0.0056046275,0.008334504,-0.022293521,0.037087694,0.0026588603,-0.01860066,0.020736838,0.044382513,-0.0031588168,-0.00793113,0.0002828235,-0.0035763944,-0.0035394658,0.017350769,-0.014282852,-0.029906496,-0.00025725752,-0.023157082,-0.012521641,-0.018362043,0.027270362,-0.030497355,-0.011589903,-0.046495967,0.010805881,-0.013396565,-0.02511146,-0.01590771,-0.02413427,-0.023202533,0.0010439436,0.02597502,-0.035269666,-0.020759564,0.00023417713,-0.0031531355,0.008993538,-0.003190064,0.007317547,0.013896522,0.013305664,0.019248331,0.010703617,0.002079365,0.05031382,-0.013237488,0.04324625,0.029792871,0.005042176,-0.015055512,0.022486687,0.04624599,-0.032088127,0.013691994,-0.012328476,-0.010822925,0.009271923,0.013601093,-0.0338607,0.0025182476,0.012782983,-0.008913999,-0.012021685,-0.03372435,-0.009368505,-0.029974673,-0.0106752105,0.02331616,-0.027270362,-0.0034741305,0.006255139,-0.014964611,0.017680285,0.04445069,0.033883426,-0.037519474,-0.0056728036,0.03820123,0.03256536,0.00035348497,0.0021120326,-0.01637358,0.0052864733,0.00082663284,-0.0077777347,0.021509498,-0.0032298334,0.01833932,0.039746553,-0.0077095586,-0.020214155,0.022645762,-0.041632753,-0.030406453,-0.031065488,-0.033747073,0.0038434167,-0.007664108,-0.015657732,0.0009778981,-0.022782115,-0.0014508684,0.0045961924,0.0263159,0.018362043,-0.007982262,-0.013794258,-0.016066788,-0.026247723,0.017078064,0.0065732934]},{"id":"class-Role","type":"class","source":"main","text":"Class: Role\nDescription: Represents a role in a guild.\nProperties: client: Client, color: number, guildId: string, hoist: boolean, hoistPosition: number | null, id: string, mentionable: boolean, name: string, permissions: string, position: number, unicodeEmoji: string | null\nMethods: delete() -> Promise — Delete this role.\nRequires Manage Roles permission.; edit(options: RESTUpdateRoleBody & { permissions?: string | PermissionResolvable; }) -> Promise — Edit this role.\nRequires Manage Roles permission.; has(permission: PermissionResolvable) -> boolean — Check if this role has a permission. Administrator grants all permissions.; toString() -> string — Returns a mention string (e.g. `<@&123456>`).","meta":{"url":"/docs/classes/Role"},"embedding":[-0.019354675,0.05292724,-0.0025941916,0.026165502,-0.0022387442,0.03428346,-0.035246607,-0.0062375255,0.04843255,0.027472632,0.045497246,-0.042080365,0.016121252,-0.0033796153,0.04820323,-0.0020280557,-0.04783632,0.009075371,0.010892738,0.09888313,0.03462744,-0.028206458,0.022186788,0.017783828,-0.017749429,0.05237687,0.008335811,0.037998457,-0.011018864,-0.042424347,0.08351863,-0.016568428,0.00409051,-0.0019635593,0.004405826,-0.021774009,0.030797783,0.009602808,-0.0213383,0.020042637,-0.023425119,-0.023023808,0.0057215537,-0.026280163,-0.014103229,0.057605382,0.00896071,0.023872295,0.014091763,0.021774009,-0.021934533,0.008502069,0.0070917457,0.097965844,-0.0047641397,-0.0039901817,-0.034122933,0.011144991,-0.027862476,0.014000035,-0.015502086,-0.06856692,0.0043771607,0.027793681,-0.0029410392,0.02310407,-0.09062758,0.029765839,0.003508608,0.062145937,0.027495563,-0.032104913,-0.022175321,0.025844453,-0.016235912,-0.052881375,0.047377676,0.021349765,0.016568428,-0.016923875,-0.057284337,0.040406324,-0.026303096,-0.017187594,0.042309687,0.004981994,-0.037677407,-0.07728111,-0.0076191835,-0.03520074,-0.0043083644,-0.04751527,-0.062237665,0.009780532,0.013002489,-0.046185207,-0.0020280557,0.020764997,-0.023803499,0.057100877,0.055954274,0.023287527,-0.05888958,0.000963864,0.0016568428,0.05356934,-0.061457973,0.051459588,-0.010325169,-0.0128992945,-0.0994335,0.0243768,-0.012830499,0.023964023,-0.027495563,0.02078793,0.001261981,-0.037677407,0.011901749,-0.037104104,-0.04756113,-0.050679896,0.016511098,-0.046941966,-0.04487808,0.0034742102,-0.005463568,-0.013059819,-0.030201549,0.009849329,-0.03451278,0.0050335913,0.014103229,-0.028435778,-0.024606122,0.022473438,0.007240804,-0.05150545,0.004520486,-0.029834636,0.010353834,0.015582348,-0.009591342,0.02188867,-0.025752725,0.040314596,-0.008708457,0.004299765,-0.058614396,0.02637189,-0.0033910812,0.015972193,-0.017646234,0.018047547,-0.03740222,-0.044167187,0.005661357,0.016201515,-0.059302356,-0.018953364,0.029605314,-0.018918965,0.006031137,-0.021315368,-0.013896841,-0.055633225,0.017244924,0.017623303,-0.034031205,0.013185945,0.039190926,-0.003024168,-0.034122933,0.001944927,-0.019985307,0.005704355,0.022049194,-0.017887022,-0.020134365,-0.009923858,0.04524499,0.00089076796,-0.02637189,-0.05535804,-0.034466915,0.014068831,-0.05567909,0.028435778,0.033870682,0.042516075,0.0011007398,0.045726568,0.030728986,0.0015049177,0.007269469,0.008318611,0.017990217,0.02270276,-0.008519268,-0.050450575,-0.014000035,0.019205617,0.053661067,-0.042103298,-0.010829675,-0.022198252,-0.021430029,-0.034673303,-0.026899328,-0.0033996808,0.025339948,-0.027816612,-0.03471917,-0.006323521,-0.046575055,0.046919037,-0.0068853567,0.021877203,-0.017267857,0.01664869,-0.046850238,0.017451312,0.0011186555,-0.046460394,0.016522564,0.0128992945,-0.0035286737,0.014573337,0.031485744,-0.015937796,-0.008886181,0.000022069888,-0.01786409,-0.042607803,-0.015846066,-0.0176577,0.013449664,0.051459588,0.019366141,-0.015043444,-0.025271151,-0.046460394,0.014516006,-0.0028435779,0.051230267,0.0011107726,0.040727373,0.015788738,0.039007466,0.016075388,0.045864157,0.03719583,-0.002191447,-0.03189852,-0.025821522,0.005704355,0.0286651,0.052468598,0.01023344,-0.0037837932,-0.02637189,-0.0115807,0.00926456,-0.024720782,-0.027472632,0.017371051,0.04320404,-0.026004978,-0.023436585,-0.018769907,-0.0037465284,0.0059164767,0.04907465,-0.037815,-0.0113972435,0.03054553,0.027541427,0.02634896,-0.008989375,-0.00055287813,0.02634896,0.0042424346,0.024651986,0.012819032,-0.029765839,0.05810989,0.012715838,-0.0019836249,-0.0091212345,0.022416107,0.010130246,0.001225433,0.023184333,-0.053523473,0.016545495,-0.014825589,0.057742976,-0.018632315,0.049166378,0.03604923,0.01792142,0.033710156,-0.025041832,-0.01795582,0.005136786,0.009717469,0.012165468,-0.022794487,-0.024399733,-0.07480444,0.010537291,0.047056627,0.00058727624,-0.00560116,-0.04013114,-0.024216276,-0.03141695,-0.0065471088,0.03627855,0.08085851,0.046712644,-0.037860863,-0.015811669,0.031783864,-0.021407096,-0.042149164,-0.036530804,0.00518265,0.021498825,0.041598793,0.04719422,-0.05907304,0.0255922,0.07108945,0.04178225,0.013185945,-0.04212623,0.115210764,0.04577243,-0.018930431,0.025706861,-0.025844453,-0.019801851,0.019882113,-0.026096707,-0.009969722,-0.022095058,0.0015307163,-0.0046953433,0.028940285,-0.0045462847,0.023058206,-0.03694358,0.0052285143,-0.059348222,-0.009912391,0.017050002,-0.022507835,-0.006375118,0.051413722,-0.02110898,-0.021430029,-0.039878886,0.021934533,0.013048354,0.033136856,-0.02426214,0.034535713,0.018265402,-0.012750236,0.0033280181,0.01571994,-0.050542302,-0.043754406,0.0030700322,-0.0064783124,-0.037425153,-0.01323181,-0.010170377,-0.007945966,0.0019492267,0.01091567,-0.00095454784,-0.008777253,0.009006574,-0.039443176,-0.013988568,-0.015272765,-0.020638872,-0.016373504,0.046941966,0.03749395,0.019996773,0.014928784,-0.015834602,0.015742872,0.022771556,0.06031137,0.030063957,-0.021693747,0.017302254,0.023986956,-0.016602825,0.025638064,-0.016063921,-0.025775658,0.0025425942,0.013564325,-0.011305516,-0.0059738066,0.031692132,0.03033914,0.03283874,0.04756113,0.049670883,-0.05301897,0.039167993,-0.042355552,0.01847179,0.0084906025,-0.036255617,-0.022989409,-0.007028682,-0.021556154,0.034558643,-0.007321066,0.008226884,-0.04058978,-0.03591164,-0.030155685,-0.016350573,0.04320404,0.049349837,0.021005785,0.025615133,-0.0031330953,-0.012956625,-0.023849363,-0.0027160181,0.00511672,-0.005996739,-0.0061228652,0.009109769,0.012692906,0.051872365,-0.0025712594,0.0402458,-0.07283229,0.023195798,-0.0077567757,-0.0040331795,0.04125481,-0.030728986,0.050129525,-0.0014547538,-0.0201229,0.008335811,0.048111502,-0.023665907,-0.009562677,-0.012303061,0.013518461,0.03031621,0.044052526,-0.046391595,0.008450471,-0.033503767,-0.03462744,-0.033457905,-0.04595589,-0.006627371,0.043158174,0.056183595,-0.018494722,0.021258038,0.00068939565,-0.01139151,-0.011357113,0.022450507,0.008261282,0.033343244,0.02678467,-0.009597075,-0.06416396,0.007945966,0.06902556,0.022473438,0.010411164,0.000013447962,0.021498825,-0.01714173,0.0035172077,0.0069828182,-0.009574143,0.018288333,-0.031187627,0.015192503,-0.058155753,-0.009367755,-0.024606122,0.0026873532,-0.06315495,-0.017428381,-0.006352186,0.0057014883,0.023413653,0.030407937,-0.02435387,-0.0017686366,0.04554311,-0.038663488,0.029903432,0.0019463602,-0.044488233,-0.015582348,-0.037425153,-0.046368666,0.009407885,-0.008880448,-0.022897681,0.022186788,0.02701399,0.05026712,-0.01670602,-0.0033824816,0.016086854,-0.008582331,0.004030313,0.019389072,-0.0009287492,0.023986956,-0.02646362,0.036439076,0.02156762,-0.0017098732,0.014951716,0.020432483,0.011718293,0.036966514,-0.03561352,-0.0025397278,0.0055409637,0.016786283,0.0015479154,-0.010485694,0.01636204,-0.008731389,0.026945194,0.01395417,0.034145866,0.024743713,-0.048157368,0.0018331332,-0.025385812,-0.00044538398,-0.003987315,-0.019538132,-0.016843613,0.018712576,-0.007888636,0.0031502945,-0.0012340326,-0.011517637,-0.022117991,-0.046575055,-0.0065184436,0.012979557,0.030063957,-0.005598294,-0.022152388,0.0064955116,0.019217083,0.021705214,0.025271151,0.033274446,0.000035002773,0.025546337,0.0094594825,0.017325185,-0.009935323,0.0017213392,-0.0659068,0.0030700322,-0.006856692,-0.011901749,-0.0077567757,-0.0028034467,-0.007561853,-0.03396241,0.03419173,0.02556927,-0.0005313793,0.026876397,-0.023081139,-0.031806793,-0.0255922,0.021842806,0.01989358,-0.016946808,-0.010411164,0.024720782,0.004855868,-0.057192605,0.015708474,-0.014103229,-0.0073096002,0.033687226,-0.010858339,-0.005841947,0.022347312,0.004176505,0.033572566,-0.036140956,-0.017531576,-0.0015608147,-0.018781373,-0.0012777469,-0.0077051786,0.00134081,-0.010227707,0.0016941074,0.0009867961,0.014756793,-0.008559398,-0.011007398,-0.000053612694,-0.03043087,-0.016981205,-0.03515488,-0.015330095,0.016717486,-0.047331814,0.010990199,-0.00046509123,0.0035831374,-0.04487808,0.017749429,0.006713366,0.022129457,-0.029353062,0.020707669,0.0042854324,-0.01499758,-0.023665907,0.020719133,-0.007951698,-0.005810416,0.013667519,-0.008060626,-0.005036458,-0.015398892,-0.06306322,0.008582331,-0.041873977,0.014642132,-0.01780676,-0.035498857,0.07237364,0.010732213,0.03265528,-0.0148141235,-0.026004978,0.009344823,0.024491461,0.039672498,-0.012601178,-0.012142536,0.034421053,0.008565132,-0.0036433341,0.026738806,0.033503767,0.008484869,0.013610189,0.024422664,0.0016926741,-0.00044645893,-0.02481251,-0.011041797,0.009608542,0.009402153,-0.02921547,0.0050192587,-0.012199867,0.032104913,-0.02889442,0.008880448,-0.011695361,0.02556927,-0.012371857,-0.005454968,0.009958255,0.002642922,-0.031118833,-0.030522598,0.019205617,-0.009407885,-0.010789543,0.024285072,-0.011810021,0.0027661822,0.020042637,0.01017611,-0.017554507,-0.004440224,-0.03043087,-0.018494722,0.04508447,0.013140081,-0.0072924015,-0.053431746,0.014756793,-0.029192537,-0.010755145,0.0024293673,0.015880466,-0.015203969,-0.0146192005,0.0487536,0.0098722605,-0.0014791192,0.043181106,-0.008484869,-0.024170412,0.003204758,0.03054553,0.0065012444,0.02944479,-0.014435744,-0.038686417,0.017382516,-0.009602808,0.024651986,0.0015751473,-0.012142536,-0.00047118257,-0.004491821,0.024835441,0.0073554646,0.010629019,0.0067936284,0.013243276,-0.013828044,-0.036783054,-0.019285878,-0.020650338,-0.004807137,0.009172832,-0.0013744915,0.036095094,-0.014699463,0.0074070618,-0.011970545,-0.014986114,0.0032534888,-0.051643044,-0.046506256,-0.020593008,-0.043639746,0.04788218,-0.019526666,0.032678213,0.0073096002,0.029926363,-0.034214664,-0.028275253,-0.00031603273,0.0052915774,0.012887829,-0.019778918,0.019182684,-0.0027661822,-0.01632764,-0.00091584993,0.0010692083,-0.011764157,0.03758568,-0.018460324,-0.005773151,-0.026876397,0.009098303,0.0039156526,0.003737929,-0.053661067,0.00038447065,0.023895226,0.012692906,-0.028435778,0.0048501347,-0.034466915,-0.016556961,0.025064763,0.0058648796,-0.0026558214,-0.029192537,-0.010313703,0.004497554,-0.053431746,-0.01621298,0.03143988,-0.00390132,0.017795295,0.0032305566,0.04480928,0.030041024,0.024743713,-0.009390687,0.023448052,-0.043295767,0.039443176,0.010336635,0.032907534,0.00031674936,-0.014298151,-0.012452119,0.004248168,0.0041363738,0.018208072,-0.030499665,-0.027220378,-0.0065069776,0.0036290016,0.009751867,0.011294049,-0.030407937,0.051046807,0.0014877187,-0.001927728,0.0030127019,-0.018185139,-0.01201641,-0.014527473,0.028756827,0.01760037,-0.010485694,0.038227778,-0.03075192,0.030270346,0.02481251,-0.014538938,0.003024168,0.0201229,-0.021980397,0.020925522,0.01055449,0.0023620042,0.020421017,0.009465216,0.012475051,0.024514394,0.017795295,-0.006323521,-0.01621298,-0.02018023,0.029375995,-0.04038339,-0.060770012,0.027770748,0.020111434,-0.003984449,0.015341561,0.0062088603,-0.03508608,-0.025890319,0.004434491,-0.003153161,0.007785441,0.014252287,-0.0062031276,-0.029834636,0.015995126,-0.0035172077,-0.019744521,-0.0231614,0.007739577,0.004959062,0.011500438,-0.019033626,0.020615939,0.019010695,0.019159753,0.014000035,-0.015112241,-0.017737964,0.010732213,-0.003603203,-0.02067327,0.028389914,0.020524211,0.023470983,-0.019492269,0.0329534,0.0034025472,-0.025683928,-0.005030725,0.021980397,0.0033796153,-0.028733896,-0.0020581542,-0.009356288,-0.023321925,0.0004801404,-0.019068025,0.041529994,0.018804306,-0.010376766,0.019354675,-0.012933693,0.016591359,-0.0032018917,-0.007865704,-0.042837124,-0.014137627,0.050221253,0.029054945,0.016121252,0.0070114834,-0.0137477815,0.021372698,0.01809341,0.009694536,0.0038726549,0.024422664,-0.016224446,0.015100774,-0.012314526,0.019778918,-0.015742872,-0.01760037,0.0037149969,0.022232652,-0.009889459,-0.013690451,-0.006902556,0.02602791,-0.03563645,-0.02515649,-0.008593797,0.026280163,0.0005768851,0.020604473,-0.017818226,0.018116344,0.00890338,0.012337459,0.0029697043,0.014630667,0.016511098,-0.0023089738,0.027403835,-0.009235895,-0.028940285,0.030706055,0.005850547,0.032494757,-0.01505491,0.010250639,-0.0056126267,0.043387495,-0.016671622,-0.050221253,-0.042974718,-0.007865704,-0.0021470159,-0.017760895,-0.031279355,-0.040039413,0.017749429,0.027816612,0.0023147068,0.046139345,0.01945787,0.022576632,0.034902625,0.00237777,0.00738413,0.050909217,-0.011339913,-0.0021126177,-0.018953364,-0.0043542287,0.057513654,0.03141695,0.0062891226,-0.06086174,-0.01752011,0.013163013,0.0065471088,0.034879692,0.03983302,-0.0046122144,0.012761702,-0.038801078,0.046781443,-0.00536324,0.028298186,-0.020501278,0.04930397,0.015089308,-0.016488165,0.016935341,-0.019090956,-0.008553666,0.009614274,0.028389914,-0.027747815,-0.0062317927,0.016373504,0.01760037,-0.013736316,-0.015479154,0.03859469,-0.0036863317,-0.036003366,-0.020638872,0.01841446,-0.024720782,-0.016981205,0.0050937883,-0.009877994,0.0038325237,0.012635576,-0.018127808,-0.0016926741,0.0144013455,-0.029628247,0.005245713,-0.0030700322,0.01042263,-0.0022573767,-0.010932869,0.015536484,-0.039190926,0.039741293,0.002721751,-0.0019176952,0.006868158,-0.004279699,0.025890319,-0.016637223,-0.023688838,0.017932886,-0.008289947,0.031394016,0.054715943,0.007894369,0.0047240085,-0.020203162,0.0033738823,-0.029742908,-0.004938997,0.027197447,-0.0064955116,0.0022559434,-0.015972193,0.035659384,0.015135173,0.016522564,0.041759316,-0.041277744,-0.039489042,0.007773975,-0.021303901,0.02469785,0.024995966,0.021498825,-0.012750236,0.015043444,-0.01754304,0.0075159892,0.01566261,-0.0073554646,-0.015146638,-0.022679826,0.031004172,0.0073669306,0.010686349,-0.02513356,-0.027793681,-0.013988568,0.046827305,-0.028688032,0.0019936576,0.0043714275,-0.041736383,0.0046810107,0.012417721,-0.008909113,0.02602791,-0.028986149,-0.022370243,0.026738806,-0.027495563,-0.005830481,-0.008261282,0.035131946,0.039122127,-0.0085422,-0.005452102,-0.043914933,0.026578281,-0.008576598,0.014745327,0.03233423,-0.005664224,0.0066961674,0.02327606,-0.00719494,0.02156762,0.0026142572,-0.00024329503,0.021739611,0.033778954,-0.037608612,-0.014057364,-0.024881307,-0.026670009,-0.0010211942,-0.006002472,-0.0023003742,-0.006977085,-0.04114015,0.020684736,0.018941898,0.0076478487,0.0070000174,-0.020421017,0.025225287,-0.013197412,-0.040108208,0.002114051,0.009081104,-0.013816578,-0.020948455,0.015593814,0.0019750253,-0.0133120725,0.0003622552,-0.00816382,-0.01719906,0.018460324,0.004133507,0.02154469,0.00058620126,-0.024629053,-0.01273877,-0.0048988657,0.061595567,0.026257232,-0.0255922,-0.0031904255,0.032265436,0.004093376,0.020283425,-0.026004978,-0.0055667623,0.030637259,0.0007596251,-0.008662593,-0.01334647,0.006071268,0.006048336,-0.0003755128,-0.027770748,-0.011597899,0.026853465,0.010760878,0.0071261437,0.030683123,0.0012282995,-0.018185139,0.0036318682,-0.035980433,0.019354675,-0.026968125,0.024995966,0.0141834915,0.0078370385,0.05700915,0.009350555,-0.0041793715,-0.0493957,0.021556154,0.041759316,-0.0054664346,0.019538132,-0.020627405,0.013977103,-0.024629053,0.011970545,0.006724832,-0.003995915,-0.003855456,-0.024422664,-0.045038603,-0.014779725,-0.01262411,-0.031806793,0.0067706965,0.021533223,-0.002422201,-0.009746134,-0.010084382,-0.024995966,0.035934567,-0.013449664,0.019870646,-0.03439812,0.06618198,-0.016224446,0.01879284,0.0028851423,0.019882113,-0.0051654507,0.0034828095,0.022209719,0.060907602,-0.0068738908,0.012348925,-0.0002608524,-0.0015335828,0.01456187,0.00628339,0.019228548,-0.009172832,0.0017944352,0.006914022,0.023620041,-0.011196588,0.02032929,0.06132038,-0.026922261,0.049487427,0.012383323,-0.033182718,0.015731407,0.0065471088,0.024537325,-0.00329362,-0.009906658,0.028619235,0.0048272028,0.013392335,-0.022565166,-0.0020137231,-0.0078141065,0.003995915,-0.0038669219,0.011643764,0.026738806,0.027197447,0.018150741,0.007521722,0.0176577,0.0052485797,0.023069672,0.008095024,0.021842806,-0.01748571,-0.0036777323,0.02128097,-0.010302236,-0.06916315,0.02556927,0.007527455,-0.0037895262,-0.040956695,0.0141605595,0.004311231,0.0013687585,0.012257197,-0.009350555,0.0076535814,-0.01334647,-0.01395417,0.044052526,0.02822939,-0.013013955,0.0353154,-0.028160594,-0.006369385,-0.002276009,0.013461131,0.018918965,-0.031118833,-0.008811652,0.0070516146,-0.034145866,0.0010369599,0.019813316,-0.006059802,0.013335004,-0.0095569445,0.00700575,0.0011544869,-0.026417756,0.01256678,-0.029605314,-0.016316175,-0.015834602,-0.044167187,0.00499346,-0.0329534,0.009298958,0.004182238,0.004918931,-0.03749395,0.004658079,-0.004646613,-0.00897791,-0.027793681,-0.0057932166,0.035498857,0.034489848,-0.01334647,0.0051224534,0.00878872,-0.0037637276,0.017909953,-0.018081944,0.01919415,0.018185139,-0.028917352,0.017244924,0.011936148,-0.0021900136,0.0048988657,-0.03547593,-0.014344016,-0.0035602055,0.011798555,-0.02758729,-0.012108138,-0.0070401486,-0.017508643,0.004990594,0.027633157,0.018884568,-0.009281759,-0.0039156526,0.0055352305,-0.00081265555,-0.0005614776,0.037172902,-0.0037522616,-0.0028880087,-0.021475893,0.0051625846,0.007722378,-0.0030442337,-0.010858339,-0.033343244,-0.0035372733,-0.028275253,0.034375187,0.022163855,-0.03671426,-0.038250707,0.031990252,0.017153196,-0.007963165,-0.008995108,0.019148286,0.022794487,0.0061629964,-0.004815737,-0.0006618055,0.008014762,-0.02536288,0.0049791276,-0.050909217,-0.0053603738,-0.008072092,-0.03254062,0.0016310442,-0.023058206,-0.02206066,0.015868999,-0.028160594,0.018345663,-0.02162495,0.0030270345,-0.00926456,-0.0026228565,0.007544654,-0.02845871,-0.015536484,-0.034443982,-0.0042854324,-0.016591359,0.004480355,-0.002118351,0.0028306786,0.014126161,-0.013369403,-0.01372485,0.00998692,0.036118027,-0.0032792874,-0.015651144,0.02845871,-0.026440687,0.004552018,-0.005991006,-0.05292724,0.006535643,0.020054104,0.0056068935,0.00028700932,0.03584284,-0.014000035,0.050450575,-0.017187594,-0.004930397,0.0015894797,0.008324345,-0.019274414,-0.03143988,0.012532381,0.0038669219,0.015639678,-0.028527508,0.0097747985,0.0010154612,-0.014882919,-0.0035888704,-0.007246537,-0.04322697,-0.012222799,0.024881307,-0.0013178779,0.008307146,0.04962502,-0.030614326,0.012211332,0.023895226,0.01163803,0.0001877564,-0.0032764208,-0.020581542,-0.02040955,0.018208072,0.011798555,-0.02078793,-0.039649565,-0.0046122144,0.0030786316,-0.034008276,-0.044029593,-0.008605263,0.012039342,0.0028966083,0.0065299096,-0.021613484,-0.02359711,-0.0408879,0.0054320362,0.023688838,0.0053603738,-0.02046688,-0.027541427,0.017772362,-0.021120446,-0.012383323,-0.02067327,-0.026165502,-0.009832129,0.016774816,0.006575774,0.009877994,-0.009562677,0.034008276,0.015043444,-0.00689109,0.00823835,0.00329362,0.04870774,-0.014894386,-0.012658508,0.009832129,-0.030866578,0.011259651,0.0164767,-0.022771556,0.015857533,0.023574177,-0.0020825195,-0.0012397656,0.0025769924,-0.030086888,0.01011878,0.008547933,0.039328516,0.0012526648,-0.012337459,0.014194957,-0.018334197,0.006329254,0.028733896,0.018586451,-0.0084676705,0.027954206,-0.0076478487,0.033939477,-0.004895999,0.024835441,0.00036798822,-0.00237777,-0.031050036,-0.01632764,0.021395631,0.02435387,0.009929591,0.032104913,0.011208054,0.042263824,-0.0016453767,-0.03483383,-0.010095848,0.0043484955,-0.033434972,-0.021991864,-0.0035602055,-0.04884533,-0.021407096,-0.009482414,-0.030912444,0.00079903967,0.0017758029,0.014263754,-0.010778077,-0.035338335,-0.0065929727,-0.019240014,0.008009029,-0.018425927]},{"id":"class-SnowflakeUtil","type":"class","source":"main","text":"Class: SnowflakeUtil\nDescription: Utilities for Fluxer snowflake IDs.\nFluxer uses Twitter Snowflakes with a custom epoch.\nProperties: EPOCH: 1420070400000n\nMethods: dateFromSnowflake(snowflake: string) -> Date — Converts a snowflake to a Date.; deconstruct(snowflake: string) -> { timestamp: number; date: Date; workerId: number; processId: number; increment: number; } — Deconstructs a snowflake into its components.; isValid(snowflake: string) -> boolean — Checks if a string is a valid snowflake format (numeric string, 0 or positive).; snowflakeFromTimestamp(timestamp: number) -> string — Converts a Unix timestamp (ms) to a snowflake string.\nUseful for pagination (before/after).; timestampFromSnowflake(snowflake: string) -> number — Converts a snowflake to a Unix timestamp in milliseconds.","meta":{"url":"/docs/classes/SnowflakeUtil"},"embedding":[-0.03381073,-0.027494172,-0.01782347,-0.019439334,0.04739868,-0.021581579,-0.04450971,-0.0050250925,0.042697985,-0.009597253,0.048647303,0.018239679,-0.027983828,-0.014322432,0.010613289,0.06576077,-0.05116903,0.002096339,-0.03283142,0.049455233,-0.025755893,-0.041375913,0.0017627608,0.0027191197,-0.0040519014,0.017040022,-0.011304928,0.06972698,0.020075887,-0.039392807,0.035965215,-0.017590884,-0.011151911,0.02344227,0.045342125,-0.02054106,0.0066470774,0.0074121645,-0.046811093,-0.0085261315,-0.038633842,-0.01606071,-0.026637275,-0.00051222584,0.0010634712,0.022279339,-0.045758333,-0.018533472,-0.010588806,0.05273593,0.0024697015,0.024029858,-0.0127065675,0.014677432,-0.012186308,-0.015216053,-0.040249705,0.034790043,-0.041204534,-0.004002936,0.020749163,0.0024421583,0.021912096,0.05415593,0.047055922,0.07261595,0.0053586704,0.040445566,-0.02088382,0.05616352,0.009603374,0.016746229,0.037287287,-0.08152769,0.0023809513,0.043848675,-0.028473483,0.01325743,0.032243833,-0.021924337,0.024886755,0.040788326,-0.031460386,-0.016293297,-0.014824329,-0.011047859,-0.015020191,-0.012755533,-0.02396865,0.0005822313,0.01325743,0.014383638,-0.069580086,-0.0058513866,0.009034149,-0.032904867,-0.0057473346,-0.014285708,-0.0070020775,0.019867783,0.026759688,0.002905801,-0.01843554,-0.021091923,0.037776943,-0.00036858075,-0.044558678,-0.030579004,-0.051805582,0.0017061444,-0.074868366,-0.052980755,-0.022230372,0.018668126,0.0037611686,0.015999503,-0.052882824,0.037874874,0.0059034126,0.024299169,-0.016195364,-0.048010748,0.0011751739,-0.011029497,-0.019353645,-0.027028998,0.024862273,-0.03266004,-0.03562246,0.002755844,0.01273105,-0.052540064,-0.010778548,-0.028130725,-0.011812946,-0.032855902,-0.019696403,-0.030750383,0.0020489034,-0.013906225,-0.020712439,0.037238322,0.081870444,0.01062553,-0.034741078,-0.007118371,0.029207967,0.04661523,-0.020075887,0.019010887,-0.007963027,-0.020430887,-0.0052699205,0.00921777,0.020945026,-0.0240421,0.035597976,0.008844407,0.02098175,-0.03317418,-0.010968289,0.013906225,-0.03307625,0.023197442,-0.011543635,-0.0032103057,-0.0005432119,-0.041229017,-0.07418285,0.0021606062,0.01281674,-0.06179456,0.013330879,-0.056849036,-0.042697985,0.015056916,-0.005318886,0.002264658,-0.050018337,-0.053323515,0.033345558,-0.0034796165,-0.0137348445,-0.07961803,0.011023376,-0.03880522,-0.036552805,0.0412535,0.039490737,0.036112115,-0.015754675,0.039074533,0.007314233,0.054106966,0.03816867,0.014910019,0.026074171,-0.026980033,0.023674857,0.02879176,-0.027175896,0.020381922,0.014457087,0.0007639395,-0.007418285,0.03381073,0.0059431973,-0.021116406,-0.015154846,-0.045856263,0.020222783,0.056653176,0.0011254433,0.02159382,-0.01782347,0.06767043,-0.018276403,0.017921401,-0.03221935,0.008183372,-0.03870729,0.023270892,0.008336389,-0.019561749,0.007932424,-0.052246273,0.0047619026,-0.053519376,-0.013392085,0.02800831,-0.009334063,-0.014334673,-0.022267098,-0.0007964557,-0.051511787,0.0061574215,-0.049357302,0.0056861276,-0.013465534,0.013845017,-0.02509486,-0.040445566,-0.014910019,0.0509242,-0.00491798,0.020026922,-0.036920045,-0.035842802,0.013061568,0.023307616,0.02440934,-0.017052263,0.014077604,-0.027690034,0.011959842,-0.075162165,0.021716233,0.055429034,0.0165014,-0.01483657,-0.011598721,-0.054204896,-0.04186557,0.029110037,-0.02344227,-0.028938657,0.028473483,0.04379971,-0.0030251546,0.0013916936,-0.01009915,0.048010748,0.025168307,-0.0091014765,-0.028718311,0.022842443,0.0019004765,0.021091923,-0.01290243,-0.015815882,0.008330269,-0.015742434,0.010044064,-0.0054994463,-0.021618303,0.031754177,0.01967192,0.019818818,0.020051405,-0.013477775,-0.024727616,-0.0009877275,0.037703495,-0.033957627,-0.008477165,0.009015787,0.028595898,0.016085193,0.014346914,-0.017505195,-0.01588933,-0.047790404,-0.0040519014,-0.029452795,-0.0150936395,0.012431136,0.023944167,-0.018655885,0.0068796636,-0.009401391,-0.02054106,-0.025339687,-0.04284488,-0.05880766,-0.018545713,-0.022622097,0.041106604,0.043432467,0.04284488,-0.008134407,0.021434681,-0.07570078,0.015411916,-0.021508131,-0.03496142,-0.044093505,-0.047619026,-0.012559671,-0.018019333,0.01992899,0.016036227,-0.021373475,0.027739,0.024727616,0.012529068,-0.047104888,0.009946133,0.009291219,-0.013171741,0.0055331104,-0.007999752,-0.080156654,-0.049259372,-0.016697261,0.010962169,0.0056647053,-0.019353645,-0.012161826,0.025339687,0.022316063,-0.071685605,0.062284216,-0.07335044,-0.0030175038,0.006591991,-0.017003298,0.026196584,-0.03310073,0.022303822,-0.009664581,0.013722603,-0.007057164,0.023895202,0.021361234,-0.028865209,-0.0028828485,-0.010111392,0.011298807,-0.014775363,-0.053862136,-0.03327211,-0.015668985,0.030603487,-0.03836453,-0.013318637,-0.01623209,-0.029012104,-0.009976736,0.028032793,0.056898,0.044069022,0.036210045,-0.026025204,-0.034398317,0.034814525,-0.037874874,0.005548412,0.029183485,-0.01281674,0.03361487,0.030652452,-0.012841223,-0.016672779,-0.03711591,-0.010466392,-0.0021453043,-0.001334312,0.03643039,0.015142605,-0.021471405,0.012939154,0.0405435,-0.004061083,-0.023221925,0.0024023736,0.0078957,-0.014383638,0.058513865,-0.005689188,0.0007926303,-0.03133797,-0.021728475,0.020957267,-0.019745369,0.06257801,-0.0344228,0.03221935,0.005784059,-0.032194868,0.010037944,-0.032072455,-0.013269672,0.0010588806,-0.024286928,-0.005689188,-0.004501773,0.029820038,-0.041620743,-0.009670702,-0.016697261,0.008415959,-0.014775363,0.09009667,-0.013661397,0.0036387546,-0.020149335,0.027494172,0.033492457,0.013906225,0.030383142,0.013845017,0.059884902,0.04073936,0.0076692337,-0.082360104,-0.007081647,0.002852245,-0.014444846,0.022169165,-0.048867647,0.02054106,0.02458072,0.039270394,-0.016550366,-0.0073693194,-0.019635197,0.0034857371,-0.029061072,0.10023254,-0.021214336,0.031191073,-0.005126084,-0.03256211,0.030652452,0.019157782,0.004501773,-0.019059852,-0.003458194,0.032488663,0.010956048,0.00877708,0.034300387,0.043016262,0.05356834,-0.0131594995,0.0040580225,-0.006292077,-0.026710723,0.09964495,0.05924835,0.0108948415,0.01701554,0.0028109301,-0.0023733003,-0.039466254,0.07873665,0.034716595,0.010594927,-0.010637772,-0.009603374,-0.037605565,-0.020785889,0.04091074,-0.012425016,-0.043652814,0.01483657,-0.012351567,-0.0036662978,-0.00029283713,-0.059297316,0.025388652,-0.007216302,-0.0004521665,0.05082627,-0.0031200254,0.00948096,0.007173457,-0.03931936,-0.05900352,-0.02940383,0.058220074,0.047080405,-0.027102448,-0.011684411,0.02668624,0.016207606,-0.05038558,0.0027160593,-0.010056306,-0.034104526,0.01781123,-0.015216053,-0.015130363,-0.003406168,0.028375553,0.016966572,-0.035793837,-0.0795201,-0.024103306,0.030334176,0.026441412,-0.048402473,0.020590026,0.0054382393,-0.012174067,-0.010539841,-0.035867285,-0.0055086277,-0.021606062,-0.015313985,0.046517298,0.019329162,-0.0036479356,0.0058422056,0.011745618,0.010674496,0.00055162783,0.00027504883,-0.047961783,0.019243471,0.011041738,-0.036283493,0.0062186285,-0.011066221,0.012529068,0.02274451,0.008807683,0.0072285435,0.012076136,-0.01281674,0.004468109,0.026074171,0.014799846,0.04776592,-0.0075345784,-0.00047970965,0.011555877,0.012645361,-0.0330028,0.017713297,0.00022321419,0.0038376772,-0.0421104,0.018153988,-0.026025204,0.01992899,-0.009756392,-0.007999752,0.013330879,0.0210552,0.008134407,0.002993021,-0.02387072,0.04458316,-0.007057164,0.007852854,0.02371158,-0.0024115548,-0.014555018,-0.0088750115,0.013098292,0.03447177,-0.016072951,0.007742682,0.010129754,-0.015509847,0.038119704,-0.004510954,0.014322432,0.026759688,-0.010888721,-0.027836932,-0.0030236244,-0.02913452,0.026392447,0.0004758842,0.012296481,0.021801924,-0.02291589,0.043310054,-0.0057197916,0.0075345784,-0.0187783,-0.012106739,0.0013289565,0.029207967,0.002151425,0.030823832,-0.009395271,0.004872075,-0.025315205,-0.024801066,-0.011916998,-0.023258649,0.025829343,0.029526243,-0.020039164,-0.027739,-0.029893486,0.004872075,-0.028375553,-0.014689674,-0.0028415336,-0.015191571,0.007932424,0.047814887,0.008464924,0.017358297,0.007100009,-0.008770959,0.015668985,0.03275797,0.06492836,0.0014712627,0.03246418,-0.00047894457,-0.0449504,0.025682446,-0.031289004,-0.0006828403,-0.014591742,0.0039845738,0.019390369,-0.020736922,0.004795566,-0.017517436,0.0006859006,-0.0172114,0.011959842,-0.0013526741,-0.0063410425,-0.005425998,-0.025070377,0.020381922,0.03212142,0.015840365,0.017701056,-0.005254619,0.038437977,0.015730193,0.03099521,0.014163294,0.00081252254,0.0009081585,-0.04698247,-0.021655027,0.008036476,-0.033223145,-0.02132451,0.027616587,-0.050434545,0.0047680233,-0.014273466,-0.0146407075,0.026196584,-0.037164874,-0.0062369904,-0.0389766,0.0032409092,0.019267956,0.0013105943,0.02142244,0.035597976,-0.010503117,0.0023840116,-0.005756516,-0.014799846,0.029256932,-0.02317296,-0.029869003,-0.01781123,0.009095356,-0.03168073,-0.040788326,-0.011531394,-0.008948459,0.011929239,0.010698979,0.032782454,-0.039735567,0.023454512,0.0036724184,-0.01334312,-0.014555018,-0.046296954,0.042428672,0.01606071,-0.0035224613,0.0060778526,-0.020504337,0.034790043,-0.023944167,-0.025878308,0.004685394,0.01606071,-0.019696403,0.019561749,0.012241394,0.00210705,-0.0033419007,0.024788825,0.005202593,0.008067079,0.012345446,-0.009132081,0.010190961,-0.0044313846,0.04029867,0.0069041466,-0.0064818184,-0.0070877676,-0.014946743,-0.029159002,-0.00605643,0.021875372,-0.03711591,0.00447729,-0.0072285435,-0.010992772,0.03148487,0.008893373,0.008813804,0.007259147,0.0032990559,-0.013649155,-0.020687956,-0.020381922,-0.0045599197,-0.021312268,0.008458803,-0.021397958,0.023736063,0.011360014,0.003917246,0.011139669,0.0040457807,-0.027739,-0.034373835,-0.035451077,-0.02553555,-0.018398816,0.017541919,-0.042159364,0.0041498328,0.02274451,-0.033296593,-0.04389764,-0.00834251,-0.021361234,0.030015899,-0.02238951,0.024127789,0.0071673365,-0.043848675,-0.022854684,-0.015265019,0.0130370855,0.0027543139,0.0003266922,-0.041914534,-0.011647687,0.024592962,-0.017064504,-0.0044313846,-0.01404088,-0.018019333,-0.0023472875,-0.114775315,-0.003914186,-0.0043854797,-0.015167088,0.01658709,-0.003960091,-0.030750383,0.02099399,0.009738029,0.0033143575,0.0038315565,-0.019476058,-0.01211898,0.0010611758,0.011231479,-0.024103306,0.050434545,0.028669346,-0.020749163,-0.014958984,-0.014261224,0.018925196,-0.023907444,0.015387433,-0.0015347649,0.028987622,-0.016342262,0.03028521,0.0210552,-0.0038284962,-0.015546571,-0.01746847,0.0062981974,-0.023332098,0.052540064,0.029207967,0.007865096,-0.001869873,-0.0047710836,-0.046664197,0.027690034,-0.0344228,-0.010496995,0.016709503,0.037238322,0.0042355224,-0.009560529,-0.017358297,0.012571912,-0.0028032793,0.012780016,0.0075713024,-0.025608998,0.010478633,-0.0043242727,0.00623393,-0.040959705,0.0058605676,-0.020969508,-0.021189854,0.002255477,0.024507271,0.035034873,-0.016281055,-0.00037106726,-0.014579501,-0.043016262,-0.01887623,0.02185089,-0.014787605,-0.0003234406,-0.013232947,0.019769853,0.04220833,0.008666907,0.02440934,0.049749028,-0.0644387,-0.024813307,-0.055526964,0.018802783,-0.02132451,0.020773647,-0.027714517,-0.024788825,0.017505195,-0.024727616,0.023258649,0.008960701,-0.019769853,0.021569338,-0.011837428,-0.006068671,0.013171741,-0.009823719,0.024299169,-0.05400903,0.033761766,-0.021667268,0.0055698347,0.027175896,-0.028546931,-0.017419504,-0.005875869,-0.04328557,0.018863989,0.0057381536,0.030823832,-0.043065228,0.029942451,0.01597502,-0.023527961,-0.024898997,0.05655524,-0.011623204,-0.003213366,0.06267594,0.0023411666,-0.041424878,0.000086933025,0.0026380206,0.004847592,-0.009689064,0.0026043567,-0.02229158,-0.011047859,0.0076937163,0.0046486696,-0.013918466,0.034790043,-0.027494172,-0.0012623938,-0.025927274,-0.026759688,0.007950786,0.0032470298,0.0029884304,-0.007644751,0.012939154,0.005070998,-0.011170273,-0.008385356,0.03310073,-0.007277509,0.024531756,-0.006775612,-0.033125214,0.043824192,-0.010050185,0.01633002,-0.03177866,0.027494172,-0.030113831,0.074574575,-0.011959842,0.02764107,-0.03241521,-0.015216053,-0.019549508,0.025315205,0.0110172555,0.026465895,-0.018153988,-0.04803523,-0.041302465,-0.01527726,-0.055869725,0.030407624,-0.01246174,0.017933642,0.0010642363,-0.017664332,0.032341763,0.013881741,-0.003142978,0.0025615117,0.00031904134,0.022303822,0.04213488,0.014799846,-0.0023457573,0.0028308225,0.043163158,-0.0007559061,0.039294876,0.051511787,-0.014077604,0.0069286292,-0.021961061,0.052784894,-0.01000122,0.028106242,0.027567621,0.0021131707,-0.003589789,0.015460881,-0.008703631,0.016464675,-0.010154237,-0.007877338,0.054106966,0.024152271,0.008391476,0.024213478,0.006212508,0.020565543,-0.04308971,0.02879176,-0.014053121,0.011965963,-0.012057774,0.007620268,0.02388296,0.028032793,0.0149712255,-0.029305898,-0.03501039,-0.003090952,-0.00518117,-0.0029272235,-0.004091686,-0.006132939,-0.017443987,-0.008568976,-0.0054106964,-0.022756752,0.02913452,-0.0003098603,-0.028497966,-0.0032470298,-0.04326109,-0.011604842,-0.0013366073,-0.004232462,0.017297091,-0.0013304866,-0.02098175,0.00798751,0.013514499,0.0345697,0.01701554,-0.01799485,0.016170882,0.004670092,-0.006898026,0.009756392,0.0068245777,0.027420724,0.029012104,0.019953473,0.018215194,-0.020418646,0.04047005,-0.0061941454,-0.006873543,0.01763985,-0.016207606,0.017872436,0.0042691864,0.0137348445,-0.0008714343,0.03239073,0.013991914,-0.010943807,0.023050547,0.0073203538,-0.0051383255,-0.0017382781,0.0161464,-0.006653198,0.013906225,0.012406654,0.00022971742,-0.008483286,-0.04668868,0.003819315,-0.038217634,0.031289004,-0.007767165,-0.021006234,-0.012633119,-0.011066221,-0.011317169,0.017958125,-0.0066654393,-0.023062788,-0.012302602,-0.009156563,0.022879167,-0.025853826,0.004951644,0.0048843166,-0.018288644,-0.008746477,-0.0359897,0.0032531505,-0.027151413,-0.052344203,0.013710362,-0.0056249206,-0.024898997,-0.0009418223,0.015313985,-0.014799846,-0.024788825,0.003274573,-0.00728363,-0.021875372,-0.020137094,-0.013269672,0.035695907,-0.004774144,-0.00042079794,0.0073509575,0.01027053,0.020638991,-0.019427093,-0.024091065,0.034692112,-0.0077365614,0.012988119,-0.009346304,0.0150936395,0.033419006,0.007155095,-0.013135016,0.020675715,-0.020247266,-0.020479852,0.008030355,0.004495652,-0.0054015154,-0.007357078,-0.0035071597,-0.020088129,0.023846237,0.005817723,0.0082139755,0.006567508,-0.00077388564,-0.032194868,-0.013000361,-0.02678417,0.0005818488,-0.0045691007,-0.0061145765,0.010986651,0.008366994,0.0147631215,-0.0031858229,0.050336614,0.02957521,0.026735205,-0.020638991,0.014469328,-0.009352425,-0.008550614,0.0029409952,0.025951756,-0.017603125,0.0062278095,0.02202227,-0.027885897,-0.011274325,0.017272608,0.02035744,-0.025486583,0.0091014765,-0.043040745,-0.010044064,0.012657602,0.01150691,-0.008673028,-0.025878308,-0.03552453,-0.008801563,0.004933282,-0.008850528,0.005080179,-0.013086051,-0.02098175,0.002123882,0.01009915,-0.04764351,-0.015766917,-0.023295375,0.005101601,0.033027284,0.009707426,0.023062788,-0.00081481785,-0.033296593,-0.018717092,0.015840365,0.005119963,0.017860195,-0.011023376,-0.0020948087,-0.013893982,-0.01325743,-0.005318886,-0.030652452,0.0146407075,-0.01202105,-0.009425874,-0.031558316,0.042722467,0.05317662,0.02194882,0.001966274,-0.0048200493,0.008568976,0.0021988605,0.020920543,0.016476918,-0.014077604,0.0127065675,0.0069714743,0.018215194,0.01456726,0.003029745,0.04389764,-0.010570444,-0.011653808,0.018007092,0.052442133,-0.011109065,-0.0069225086,0.0093279425,0.007620268,0.023527961,-0.010301134,0.015815882,0.007767165,-0.01193536,-0.02835107,-0.010827513,0.011953722,-0.024911238,0.037091427,0.008140528,0.011084583,0.009168805,-0.0013802173,-0.023111753,-0.00904027,-0.020492094,-0.048304543,0.016746229,-0.027469689,0.012161826,-0.0044528074,-0.0078100096,0.06483042,-0.0045691007,-0.04073936,-0.0006866657,0.021801924,0.0149712255,-0.004468109,0.017395021,-0.004660911,0.0008943869,0.013171741,0.014542777,0.010552082,0.014114328,0.015693467,-0.008611821,-0.042600054,0.027004516,0.016770711,0.0008890313,-0.026221067,0.0044038417,-0.014285708,0.019121058,-0.05307869,0.020590026,-0.008617942,-0.0018239678,0.022401752,0.0039539705,-0.031313486,0.022536408,0.009511564,-0.020908302,-0.023050547,-0.01053372,0.035842802,-0.056506276,0.016195364,-0.00088520587,-0.03785039,0.013208465,-0.002657913,-0.008183372,-0.049283855,0.00058070116,0.015167088,-0.008636304,0.018986402,-0.0045415573,-0.007559061,0.011861911,0.01395519,0.0020152396,0.0065430254,0.013808293,0.008103803,-0.013649155,-0.0070449226,0.030089349,0.0031858229,-0.013232947,-0.010105271,-0.0032011247,-0.030921763,-0.011794584,0.034006596,-0.002527848,-0.011549756,0.046639714,-0.011396739,0.002423796,-0.026465895,0.0137348445,0.011451825,-0.016293297,-0.03493694,-0.02256089,-0.02658831,0.010368461,0.034177974,-0.0052607395,-0.015693467,-0.035867285,-0.013306396,-0.018362092,0.012473981,0.010570444,0.011066221,0.016550366,0.041204534,0.008611821,-0.032782454,-0.013832776,-0.01492226,-0.0058850506,0.0054290583,0.009891047,0.026343482,-0.010417427,-0.012853464,-0.0012126631,0.011751738,0.011721135,0.00040434857,-0.012767775,0.018692609,-0.026441412,0.037532117,-0.01009303,0.013490017,0.038854185,0.00948096,-0.0433835,0.071685605,0.00054282934,-0.01202105,-0.021214336,-0.000023143886,0.020847095,-0.05307869,0.013832776,0.027004516,0.008036476,-0.007155095,0.035500046,0.013747086,-0.019855542,0.021801924,-0.024274684,-0.02800831,0.06762146,-0.009089235,0.012406654,0.021189854,0.004853713,-0.02414003,0.027690034,-0.008477165,0.021202095,0.010741823,-0.015656743,0.039001085,0.0389766,0.044387296,0.015754675,0.017456228,-0.03905005,-0.005272981,0.023099512,-0.00028920296,-0.011151911,-0.010172599,0.008042596,-0.006469577,-0.016011745,-0.030652452,-0.0010190961,0.0060778526,-0.014151053,0.0043701776,0.000089563015,-0.0103378575,-0.011029497,-0.00022914361,-0.03537763,0.013796052,-0.009370788,-0.0009158093,-0.0029562968,0.025045894,-0.019549508,-0.004110048,0.036577288,-0.005958499,0.004960825,0.005119963,0.010552082,0.012449498,0.020847095,-0.006068671,-0.0039539705,0.017762264,-0.01588933,0.024286928,-0.025315205,0.0085444935,0.020075887,0.0172114,-0.0033235387,-0.030334176,-0.0105826855,-0.015228295,0.007399923,0.01633002,0.017492954,0.019378128,0.03266004,-0.06478146,-0.015032433,-0.014958984,-0.009113718,0.0052393167,-0.0074427677,-0.011427342,-0.040249705,0.023919685,0.0078957,0.008960701,0.0010504647,0.009199408,-0.0026303697,0.022487441,-0.02658831,0.01018484,0.03415349,0.02274451,0.019806577,0.028032793,0.023062788,0.013086051,0.0026716844,0.015044674,-0.039392807,0.01781123,-0.002096339,0.0051689288,-0.022634339,-0.0004678508,-0.05126696,-0.0059738006,0.012486222,0.020137094,-0.01834985,0.0048292303,0.004997549,-0.03616108,-0.0013993444,-0.027053483,-0.03150935,-0.026147619,-0.019243471,0.0114885485,-0.015203812,-0.01334312,0.0088750115,0.0022172227,0.009150443,0.008979063,0.022499682,0.0007589665,-0.008434321,0.038119704,0.02290365,0.006151301,-0.0011415101,-0.027371759,-0.014089845,0.016782952,-0.003142978,0.014334673,0.0049455236,-0.009272857,0.03537763,-0.02079813,-0.0030863616,-0.014506052,0.0076508718,-0.0012937624,-0.028130725,-0.008036476,-0.009462598,-0.02563348,0.001193536,0.041424878,-0.044730056,0.01825192,-0.0031307368,0.018802783,-0.0010428138,0.0073938025,0.013122775,-0.0059615592,-0.0013802173,0.038413495,0.010747944]},{"id":"class-TextChannel","type":"class","source":"main","text":"Class: TextChannel\nProperties: lastMessageId: string | null, messages: MessageManager, nsfw: boolean, rateLimitPerUser: number, topic: string | null\nMethods: createMessageCollector(options: MessageCollectorOptions) -> MessageCollector — Create a message collector for this channel.\nCollects messages matching the filter until time expires or max is reached.; fetchMessage(messageId: string) -> Promise — Fetch a message by ID from this channel.; fetchPinnedMessages() -> Promise — Fetch pinned messages in this channel.; send(options: MessageSendOptions) -> Promise — Send a message to this channel.","meta":{"url":"/docs/classes/TextChannel"},"embedding":[-0.009464992,-0.005217953,-0.0025394228,0.0005589143,0.0034578166,0.031932283,0.009976,-0.040426362,-0.009334401,0.019770307,0.029706562,0.008198829,-0.020417584,0.04469611,0.09134541,-0.013876689,-0.006188867,-0.0031909572,0.03979044,0.016329525,-0.0102542145,0.031523477,0.038586736,0.0036764143,-0.0454683,-0.010787933,0.00045529337,0.057187404,-0.032704473,-0.016704263,0.03329497,-0.014455831,-0.014739724,0.021768915,0.008414588,0.043129023,0.01838491,0.006830465,-0.042833775,0.028911661,-0.010521074,-0.015205308,0.0076991776,-0.025323255,-0.0061548,-0.020122334,-0.0028474466,0.0050902013,0.017033579,0.055870138,-0.055643026,0.018839138,0.015012261,0.042379543,0.0032108296,-0.05696029,-0.03206855,0.030774,-0.007988749,-0.0066544516,0.023460917,0.006830465,-0.019917931,-0.03804166,-0.0007835446,0.024573777,-0.006262679,0.0770372,-0.024119548,0.047285214,0.04226599,-0.016761042,-0.024732757,-0.029570293,-0.020633342,0.019361502,-0.0023364392,0.01058353,0.010225825,-0.015000905,-0.033045143,0.0041732267,-0.04973805,0.022302633,-0.07026919,-0.029865542,-0.025868328,-0.025822906,0.027389996,-0.016749686,-0.0062513235,-0.00032878356,-0.05568845,0.02350634,0.027526263,-0.03785997,-0.0103848055,-0.017839836,-0.029229622,0.030615019,0.06713501,-0.038745716,-0.050283127,0.017442385,-0.020145046,0.0029780373,-0.036224745,-0.017306115,-0.06722586,-0.023142956,-0.040608052,-0.034793925,0.0010035617,0.021678068,-0.022404835,-0.037201338,0.031523477,0.0032562525,0.031137383,0.048193675,-0.039154522,0.018055594,0.03658813,0.03565696,0.013297548,-0.053235613,0.019634038,0.00024130904,-0.0042413613,0.047875714,0.053008497,0.019213878,0.0044088583,0.001859499,-0.014149226,0.018600669,-0.00018665964,-0.009277623,-0.012729761,-0.002051127,0.0020170596,-0.015795806,0.01092988,-0.0039234012,0.03801895,-0.019134387,-0.042720217,0.01514853,0.0040312805,-0.027389996,-0.027003901,0.033885468,-0.021984672,0.033567507,-0.011719102,0.010231503,0.021076215,0.04608151,-0.015568691,-0.049601782,0.024732757,-0.013138567,-0.034634944,-0.010112268,0.007279016,-0.008590601,0.023869723,-0.045082208,-0.017646788,0.020315383,0.042220566,-0.007301728,-0.0369288,-0.008715515,-0.02180298,-0.01689731,-0.015375644,-0.051373273,-0.024369374,0.005640954,0.022756862,0.025527658,-0.008318065,-0.06926989,-0.009277623,0.013592796,-0.008283997,-0.014535321,0.042379543,-0.048829593,-0.04955636,0.027730666,-0.00096523616,0.036542706,0.0035884073,-0.011855371,0.028139472,0.015352933,-0.006603351,-0.050283127,-0.0045138984,0.032908875,0.029297756,-0.014796502,0.016386304,0.007807057,0.027162882,0.027231015,-0.025436811,-0.06899735,0.047285214,0.020099623,0.019088965,-0.029411314,-0.062093075,-0.0028403492,-0.057687055,0.015659537,-0.03947248,-0.0068134316,-0.025981886,0.039994843,0.051691234,-0.031023825,0.017237982,0.017669499,0.0047268183,-0.026890343,0.007767312,0.017181203,0.028162183,-0.018680159,-0.026299845,-0.066953324,0.016545283,-0.015171241,-0.039858576,0.072404064,0.008119339,-0.008454333,-0.03742845,0.005550108,0.008374843,0.05368984,-0.008096628,-0.0136495745,-0.0056523094,-0.028707258,0.026640518,0.04733064,0.08521332,0.002809121,-0.0023406977,-0.015954785,0.04026738,-0.016181901,-0.022961264,0.012479936,0.020621987,-0.039972134,0.03817793,0.0011802851,-0.040176537,-0.03976773,-0.0068985997,-0.020497074,0.06658994,-0.01405838,0.0121392645,0.035134595,0.053417303,-0.009845409,0.057732478,-0.00036764142,-0.02570935,0.020065555,-0.00994761,-0.020417584,0.020247247,0.010549463,-0.014989549,-0.0016962606,0.013229413,-0.012423157,-0.0103109935,0.014501254,0.052508846,0.005019228,0.025913753,0.016386304,0.004817664,-0.019213878,-0.023256514,-0.05591556,0.037042357,0.038881984,0.073039986,0.020883167,0.046467602,0.0134451715,-0.001865177,-0.03125094,0.028048627,-0.048557058,0.025641214,0.018725581,0.014296851,-0.049692627,0.06500014,-0.07431183,0.02082639,0.009487703,-0.09175421,-0.00994761,-0.01657935,0.0036366691,0.0062286123,-0.00096736534,0.02188247,0.009464992,0.0028062821,-0.01705629,0.009271945,0.026799498,-0.054598298,-0.02130333,-0.007897903,-0.0065465723,0.038268775,0.039881285,0.012729761,-0.05237258,-0.008494078,0.033522084,0.028003205,-0.018532533,0.0010205953,-0.017465096,-0.017794412,0.015137174,0.043015465,0.00907322,-0.009027797,0.05146412,0.006268357,0.015716316,0.003366971,0.040199246,0.01437634,0.014853281,-0.0081647625,0.03790539,-0.007755956,-0.061275464,0.0355434,-0.0007409607,0.01286603,-0.012695694,-0.019350145,0.0013981729,-0.0026884666,0.007869514,-0.012718406,0.009351435,0.0012647433,-0.027866935,-0.08044392,-0.006966734,-0.006444371,-0.02555037,0.025822906,-0.03095569,0.022609238,-0.012332311,0.041084994,0.004238522,0.011066149,-0.0005266215,0.016034275,0.05823213,0.018895917,0.001122087,0.012582137,-0.0026260102,0.01397889,0.039926708,0.01989522,0.01806695,-0.024460219,0.046444893,0.01207113,0.0070235124,-0.041879892,0.024437508,0.030819422,0.03824606,-0.015841229,-0.0016863244,0.026390692,0.028616413,0.017680855,0.026231712,0.0032590914,0.059958197,0.0022427547,0.023551762,-0.013785844,0.025936464,0.027299149,-0.027526263,0.048239097,0.03899554,0.02146231,0.05259969,-0.0023463755,-0.026640518,-0.016215967,0.008681447,0.023120245,-0.0120257065,0.0034918836,-0.055052526,0.01790797,-0.018316776,0.0024428992,-0.018441688,0.06895193,-0.03138721,-0.03458952,-0.015602758,-0.05178208,-0.017385606,0.037973527,0.031228228,0.042811062,-0.040471785,0.015103106,-0.0012108036,-0.042038873,0.046967257,-0.004479831,0.048375364,-0.023551762,0.0561881,-0.015818518,0.035066463,0.0053485436,0.015409711,-0.011049115,-0.019645395,-0.07581078,-0.030069945,-0.013172635,0.038223352,-0.052327156,-0.025345966,0.005618242,0.058640935,-0.03093298,-0.040176537,-0.00864738,-0.00761401,0.01705629,0.012968232,-0.011497666,0.0073755397,-0.051373273,0.015568691,0.020485718,0.03895012,0.023937857,0.012616204,0.032295667,0.058413822,0.016545283,-0.05259969,-0.006188867,-0.00400573,0.014421764,-0.009538804,0.018612023,0.021530444,-0.007284694,-0.014137871,-0.027072035,0.05364442,0.014603456,-0.0032562525,0.017499164,-0.006359203,-0.043015465,0.027117457,-0.013797199,-0.009175422,0.010651665,-0.013388393,-0.020304026,-0.05132785,0.016931377,-0.055597603,0.045263898,-0.023177024,0.024755469,0.0062513235,0.020088268,-0.0042697503,-0.01602292,0.009890832,-0.029252334,0.049510937,0.022064162,0.03597492,-0.041084994,-0.030842135,0.041607358,-0.024096837,-0.041539222,-0.004124965,-0.037201338,0.027299149,0.055597603,-0.007330117,0.024164971,0.015670894,-0.026209,0.020519786,-0.056097254,-0.007012157,0.01761272,0.040471785,0.0074209627,-0.029502159,0.008925595,0.00013192152,0.01183266,-0.013604152,-0.031637035,-0.014682945,-0.017487807,-0.021655357,-0.0088177165,0.01886185,-0.0139675345,0.018214574,-0.010475651,0.018010171,-0.027094746,0.06622656,0.00011994479,0.018225929,-0.014853281,-0.032454647,0.03820064,-0.042038873,0.041312106,0.0223367,0.0041079316,-0.0014975355,0.01912303,-0.0023591507,-0.0056863767,-0.002241335,0.015659537,0.0069497004,-0.021587223,0.00085167895,-0.0059106518,0.016204612,-0.00005691167,-0.00631378,0.017635433,-0.018884562,-0.0035543402,0.0007665111,0.030592307,-0.003318709,-0.031069249,-0.018101016,-0.009680751,0.016988156,0.0013073272,-0.01949777,0.043992057,0.0022995332,-0.013570085,0.03631559,0.0024315433,-0.014682945,-0.019384213,0.030910268,0.005019228,-0.027185593,0.020326737,0.001621029,-0.05464372,0.0016338042,0.0026487214,0.0081647625,-0.007869514,-0.018986763,0.054416608,0.0012789379,-0.055597603,0.020258604,0.019270657,0.010072523,0.016942734,-0.027276438,-0.034453254,0.013536017,-0.0047154627,0.00036622194,-0.015125819,-0.048193675,0.028820816,0.003355615,-0.00025816518,-0.010356416,0.049420092,0.02714017,-0.030637732,-0.0014734046,-0.023642607,0.022143653,0.021723492,0.017726278,-0.02809405,-0.026209,0.021291973,-0.024800891,0.043923922,0.01663613,0.017998815,0.029456737,0.006058276,-0.009453637,0.008550856,0.031773303,-0.013785844,0.018237285,0.047557753,0.024846314,-0.0012540972,0.010163369,-0.0032136687,0.011122927,-0.003523112,0.0112989405,-0.048239097,-0.0092094885,-0.057914168,0.009374146,-0.01610241,-0.027253726,0.022745507,-0.0355434,-0.008301031,0.038654868,-0.019531837,0.023233801,-0.010271248,0.014240072,-0.010117946,0.037678275,-0.011787237,-0.019588616,-0.031069249,0.0005418807,0.009697785,0.0041476763,0.045672704,0.013592796,-0.006671485,-0.023483628,-0.0012406124,-0.01491006,0.003196635,-0.028661836,0.04013111,0.009453637,-0.025845617,0.035884075,-0.030864846,-0.013388393,0.023756165,-0.018725581,0.012445869,-0.009527449,0.0071370695,0.020315383,0.0000371057,-0.02019047,0.0022739829,-0.017362894,0.011469277,-0.001082342,0.022404835,0.018259997,-0.004360596,-0.009748885,-0.031682458,-0.024869025,-0.013036366,0.014739724,0.008068238,-0.0066147065,-0.03549798,-0.016829176,0.031682458,0.04651303,-0.07231322,0.009345757,-0.010129302,-0.0015330222,-0.0017203914,-0.003029138,0.010504041,-0.022268565,0.03329497,-0.021473665,0.048329942,0.00044251818,-0.03377191,0.00030979823,0.006802076,0.0004918446,-0.021485021,0.045263898,-0.032931585,0.01886185,0.010299638,-0.008005782,0.032931585,-0.031773303,-0.015988853,0.016045632,0.014069736,0.0050078724,0.022166364,-0.012434512,0.00034936582,0.013944823,0.035111886,-0.05259969,0.010146336,-0.0401084,0.0020326737,-0.0066147065,0.028048627,-0.0060980213,-0.010129302,0.0065238606,-0.043469694,0.05337188,0.00005256456,0.0011561542,0.01132733,-0.027571687,-0.017374251,-0.013592796,-0.02888895,0.04955636,-0.033522084,-0.003278964,-0.010725477,-0.010867423,-0.023392782,0.015057684,0.009022119,-0.012105197,0.006847499,0.0035827295,0.014546677,-0.006989445,0.0020724188,0.008692803,0.018646091,-0.0063819145,-0.01294552,0.009022119,0.012207398,0.010606242,-0.021825694,-0.0462632,0.008090951,-0.009016441,-0.012684339,-0.030887557,-0.0042044553,-0.009782952,-0.029479448,-0.010083878,0.007489097,-0.0043038176,-0.009771597,-0.00952177,0.0023364392,-0.0577779,0.01785119,0.03000181,0.007659433,0.0042413613,-0.04499136,0.006126411,0.0069269887,-0.026890343,-0.028139472,-0.03327226,0.0064046257,0.00583684,-0.03138721,0.00036036666,0.016204612,-0.019213878,0.0005599789,0.042084295,-0.0020128014,-0.01626139,0.032409225,-0.048239097,0.061275464,0.022268565,-0.040857878,-0.013252124,0.031591613,0.04451442,-0.025209697,-0.008113662,0.016409015,0.012831963,0.036202032,0.017022224,0.033635642,0.009584228,0.0034237495,-0.015807161,-0.039745018,0.019634038,0.018055594,-0.05269054,0.007040546,0.0033499373,-0.021473665,0.0152734425,0.039154522,-0.03343124,-0.0072733383,-0.008363487,-0.040199246,-0.013763132,-0.009976,0.03488477,0.011719102,-0.053916957,0.019611327,-0.005354222,-0.016034275,0.02122384,0.043515116,0.01910032,-0.00021558124,0.017419674,-0.040153824,-0.043288004,-0.026935767,0.009351435,0.021598577,-0.0040142466,0.023029398,0.014285495,0.0051611746,0.01029396,0.009243555,0.023188379,-0.016965445,0.016147833,-0.012286888,-0.030546885,-0.0008169021,0.010702766,-0.0020908718,-0.005368416,-0.000028699806,-0.008034172,0.009243555,0.026913054,-0.019622684,0.050964467,-0.024323951,-0.011809948,-0.021837048,0.029434025,-0.006467082,0.0033357425,-0.0067055523,-0.004051153,-0.045877106,-0.0004897154,0.03343124,-0.027730666,-0.03804166,-0.019350145,0.007937648,0.026890343,0.027526263,0.044877805,-0.00053868693,-0.0017814285,0.019645395,0.012525358,0.021257907,0.014137871,-0.020213181,0.029456737,0.026890343,-0.02589104,-0.0134451715,0.008301031,0.017839836,-0.009022119,-0.01586394,-0.028843528,0.04453713,-0.027821513,-0.0040823813,-0.005005033,-0.020463007,-0.045831684,-0.0027055002,-0.0077446005,0.0137063535,0.001474824,0.0018850494,0.015489201,0.0058936183,0.004811986,0.019940643,-0.008420266,0.010992336,0.028957084,0.034135293,-0.01711307,-0.017010868,-0.013308903,0.01610241,-0.01838491,-0.035429843,0.04465069,-0.02811676,-0.0032221854,0.012252822,-0.027526263,0.03461223,-0.016125122,0.016613418,-0.011202417,0.012650272,0.020497074,0.062002227,0.037337605,-0.0177717,0.0017033579,-0.021098927,-0.0013825588,-0.0103109935,0.0001944667,0.04199345,-0.004366274,-0.013933468,0.032091264,0.013558729,0.006506827,0.02952487,0.051872928,0.04592253,-0.017044935,0.0022214625,-0.0021320363,0.014274139,-0.022359412,-0.00037438388,0.030615019,0.018362198,-0.014841925,0.04029009,-0.024437508,0.0040227636,-0.004042636,0.016726974,0.032704473,0.035157308,0.01689731,-0.020497074,-0.02825303,0.034839347,0.018475756,0.00891424,0.046217777,0.021712136,0.0029468092,0.003682092,-0.0046899123,0.013490595,-0.028979795,0.01665884,-0.03835962,0.05364442,-0.003965985,-0.016761042,-0.030637732,-0.021700779,0.026163578,0.014047025,-0.013751776,0.012718406,0.027231015,0.0026458825,-0.027571687,-0.009368468,-0.021507733,0.03265905,-0.043356135,0.00591633,0.023869723,-0.009714818,-0.03404445,-0.0057147657,0.04024467,-0.0018225929,0.028434722,-0.008777971,0.058186706,-0.02069012,-0.032250244,0.030274348,0.04165278,-0.0046757176,-0.0010362094,0.020815033,-0.026095442,-0.024414796,-0.00899373,0.010464296,0.008000105,0.009623972,0.02249568,-0.005831162,-0.0053229933,0.029729273,-0.018316776,0.026776787,0.029979099,-0.0002673917,-0.036065765,0.006120733,-0.00081903127,0.018816426,0.015398355,0.014558032,-0.013115856,-0.037201338,0.0070575797,-0.037950814,-0.015375644,0.0004066767,0.000729605,0.005337188,-0.0019460864,0.020304026,-0.0017842674,0.026549673,-0.02058792,-0.034407828,-0.028593702,-0.026595095,-0.023756165,0.043197155,-0.03404445,-0.031023825,-0.027548974,0.0026998222,0.016590705,0.031773303,0.0058652293,-0.014342274,-0.002244174,-0.032704473,0.020292671,0.011225129,-0.045354743,0.010276926,0.025164274,-0.034294274,-0.016454438,0.0011597029,0.002021318,-0.0012810671,-0.03774641,-0.007943326,0.0043435628,0.019327434,-0.00064976007,-0.001920536,-0.018600669,0.0006039823,0.011628257,-0.03917723,-0.032409225,0.004579194,0.0038126828,-0.028502855,-0.0015131496,0.022268565,-0.022756862,-0.04574084,-0.0007104422,0.008431622,-0.0000017576969,-0.029638428,0.027208304,-0.01578445,-0.028525567,0.0073471502,0.04260666,0.002711178,0.029456737,0.018691514,0.0102542145,-0.037928104,-0.0020766773,0.0010546624,-0.027912358,-0.003517434,-0.069996655,-0.008902884,0.0121392645,0.019236589,0.005944719,-0.012286888,-0.022109585,0.027753377,0.018475756,-0.014183293,-0.0013144246,0.007210882,-0.01840762,-0.012514003,0.04596795,0.023869723,-0.033817332,0.016874598,0.0011043437,-0.0067452975,-0.012729761,-0.005314477,0.011054792,-0.0054251947,-0.0035855684,-0.0017530392,0.01975895,0.01975895,0.032636337,-0.0035429844,-0.015205308,-0.009181099,0.012570782,-0.05855009,0.03681524,0.022768218,0.003594085,-0.0028786748,-0.063228644,-0.020780966,-0.007369862,-0.0014705657,0.0043918244,0.020213181,0.009799986,0.009970321,-0.01875965,-0.0043946635,-0.048239097,0.005337188,-0.012854675,-0.009743207,0.008017138,-0.03031977,0.016295457,-0.025845617,-0.0020908718,0.0034492998,-0.021291973,0.011605545,-0.019088965,-0.018112373,-0.01894134,-0.015216664,0.016318168,-0.0065636057,0.0100271,-0.030047234,-0.009765918,0.0084884,-0.011412498,0.05805044,-0.015829872,-0.00796036,-0.012968232,0.021496376,-0.0098624425,0.011866727,0.011787237,0.0081647625,0.010674376,-0.0037104813,0.028275741,0.036088478,-0.043356135,0.010634631,0.01018608,-0.017374251,-0.015205308,0.0075174863,-0.013433816,-0.036610838,-0.009300334,0.004008569,0.021019436,0.01100937,0.0031682458,0.009493382,-0.000065384105,0.04210701,-0.005709088,-0.0027168558,-0.0028446077,0.020883167,-0.008681447,0.015114463,0.051963773,0.0054024835,0.0027892485,0.029320467,-0.030569596,0.011957573,0.011111571,-0.026799498,0.0118213035,0.029002508,0.032113973,-0.028048627,-0.0200542,0.011230807,0.01719256,0.040335514,-0.021814337,-0.037496585,-0.007193848,-0.0120257065,0.0021135833,0.0037814546,-0.008528145,-0.035566114,-0.0066998745,-0.001865177,-0.033749197,-0.032590915,-0.0007778668,0.032568205,0.03867758,-0.006643096,-0.010521074,-0.009374146,-0.004017086,-0.013501951,0.033135988,0.02122384,-0.0152734425,0.0105153965,-0.012956876,0.0019801536,-0.008641702,-0.0033840043,-0.017442385,-0.029865542,-0.0077900235,0.016988156,0.004275428,0.021008082,0.006688519,-0.014308207,0.010759545,0.0018453044,0.010935558,-0.05446203,0.00070299,0.01657935,-0.06772551,-0.0034152325,0.0062513235,-0.00824993,0.015829872,0.017306115,-0.005763028,-0.022824995,0.015852584,-0.0062059006,0.016465792,-0.037632853,-0.034316983,-0.029252334,0.006921311,0.012877386,-0.003477689,0.008953985,-0.04231141,0.018850494,-0.012968232,0.021428242,-0.028684547,-0.011923505,0.01806695,0.009879475,0.0035770517,-0.021644002,-0.045241185,-0.035566114,0.003108628,-0.01912303,0.006716908,0.011452243,-0.03947248,-0.03250007,-0.001740264,-0.017442385,-0.008539501,-0.026277134,-0.018089661,0.00070476433,0.012650272,-0.010986659,-0.007284694,-0.036202032,0.028003205,-0.0005653019,0.0030774,0.0060242093,-0.032091264,-0.011497666,-0.007097325,0.009930576,-0.033817332,0.0086303465,-0.04122126,0.0103848055,-0.020201825,-0.00970914,0.0026586577,0.025209697,0.02287042,-0.005950397,-0.011139961,0.0069951233,0.0067509753,0.0039546294,0.0007044095,0.01397889,-0.012230109,-0.025845617,0.012502647,-0.057687055,-0.0153302215,0.03268176,0.00037083522,-0.042197853,-0.006643096,-0.02527783,-0.0035827295,-0.0019035025,0.0041874214,0.036224745,0.016840532,-0.02857099,-0.043833077,0.012218754,-0.0075458754,0.006915633,-0.008193152,0.0015954786,-0.036361013,0.00832942,0.02188247,0.050146855,-0.01342246,-0.003071722,0.001416626,-0.02557308,0.009953288,0.022484325,0.0067282636,-0.012411801,-0.0007672208,0.019952,-0.000790642,-0.0063819145,0.021961961,-0.013513306,0.004369113,0.008976696,0.032727182,-0.010282604,-0.0060185315,0.00796036,0.018339487,-0.010140657,0.010532429,0.008102306,-0.029729273,-0.014875992,-0.018316776,-0.00530596,0.004406019,-0.031773303,-0.022109585,-0.055007104,0.015034973,-0.023960568,0.009385502,0.036065765,-0.013717709,0.010430228,0.0032676084,0.036088478,0.0010127883,-0.033363104,0.02201874,-0.0065863174,0.018180506,0.010333705,-0.0022824996,-0.010941235,0.025595792,0.0024358018,-0.009215166,-0.006353525,0.014399053,0.012741117,0.023937857,-0.03663355,0.002854544,-0.008959662,-0.005672182,-0.031432632,0.0053570606,-0.0141719375,-0.019690817,0.01262756,-0.026935767,-0.026890343,0.012718406,0.016681552,0.0015017939,0.034067158,-0.04099415,0.01564818,0.008005782,-0.021019436,0.019929288,0.0002185976,0.02527783,0.020621987,0.022279922,-0.007727567,-0.033885468,-0.0077957013,0.021337397,0.0060469205,-0.0051895636,-0.024437508,-0.032250244,-0.017862547,0.03016079,-0.004102254,0.00038219092,-0.01626139,-0.0115033435,0.00482902,-0.017442385,-0.048375364,-0.012854675,-0.00047019776,0.0015713477,0.01743103,0.02384701,0.0008509692,0.018101016,-0.023279225,0.016942734,-0.0075912983,0.011809948,0.011015048,0.04451442,0.0030121047,0.03913181,0.0047438517,0.030569596,0.017317472,0.0073755397,-0.01785119,0.023324648,0.049147554,0.01167368,0.010083878,0.051872928,0.015591403,0.02555037,0.03345395,-0.035679672,0.0040284414,-0.015898008,0.020724189,-0.017442385,-0.0054081613,-0.043197155,0.016761042,-0.014364985,-0.018180506,0.02350634,0.0139675345,0.0038240384,-0.010152013,0.033204123,-0.014478542,-0.007120036,-0.013240769,0.013956179]},{"id":"class-User","type":"class","source":"main","text":"Class: User\nDescription: Represents a user (or bot) on Fluxer.\nProperties: avatar: string | null, avatarColor: number | null, banner: string | null, bot: boolean, client: Client, discriminator: string, flags: number | null, globalName: string | null, id: string, system: boolean, username: string\nMethods: avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this user's avatar.\nAuto-detects animated avatars (hash starting with `a_`) and uses gif extension.; bannerURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this user's banner.\nReturns null if the user has no banner (only available when fetched from profile/member context).; createDM() -> Promise — Create or get a DM channel with this user.\nReturns the DM channel; use {@link DMChannel.send} to send messages.; displayAvatarURL(options: { size?: number; extension?: string; }) -> string — Get the avatar URL, or the default avatar if none set (Fluxer: fluxerstatic.com).; send(options: MessageSendOptions) -> Promise — Send a DM to this user.\nConvenience method that creates the DM channel and sends the message.; toString() -> string — Returns a mention string (e.g. `<@123456>`).","meta":{"url":"/docs/classes/User"},"embedding":[-0.0027152696,-0.005020308,-0.029123524,0.02285818,0.05650285,-0.0006433166,-0.012553639,0.02207788,0.023431929,0.048240855,-0.026231827,-0.028802224,-0.001331816,0.013230663,0.006035845,0.020046808,-0.057558548,0.015502711,0.02150413,0.029307123,0.005746101,0.009105405,0.05737495,0.031831622,-0.007688243,0.06306654,-0.012645438,0.048378557,-0.024969578,-0.05742085,0.053014454,-0.009610304,0.008135768,-0.010229954,0.019541908,0.010574203,0.030133324,0.04365086,-0.030362822,0.012829038,-0.008669355,-0.058109347,0.030385774,0.0088816425,-0.008434118,0.031074272,-0.021550031,0.011010253,0.0065292693,0.037844516,-0.053840652,0.018428834,0.023982728,0.051958755,-0.014997812,0.013586388,-0.018440308,-0.029123524,-0.047965456,0.019266509,0.020471381,-0.018107533,-0.0024456072,0.006414519,-0.007137444,0.03437907,-0.030293973,0.040598515,-0.013907688,0.03265782,0.07077774,-0.025015477,0.01607646,-0.02386798,-0.02414338,-0.0008921805,0.014986336,0.00863493,-0.030385774,-0.012484789,-0.012301189,0.027608825,-0.04755236,-0.008646404,-0.028802224,0.0114635145,-0.04172306,-0.017258385,-0.01170449,-0.04631306,0.028733375,-0.041264065,-0.049571957,-0.0049256394,0.05608975,0.0065350067,0.011193853,-0.019174708,-0.018440308,0.039129715,0.046749108,-0.0038527278,-0.03550362,-0.00086349295,0.03254307,-0.062148545,-0.040300164,0.01834851,-0.04433936,-0.0020052544,-0.044224612,0.018784558,0.011113527,0.023099154,0.010447978,-0.025130227,0.01605351,0.039313316,0.011738915,-0.018578008,-0.06526974,-0.01635186,0.07513823,0.010287329,0.009076717,-0.03708717,0.010884028,-0.002402576,-0.096757114,-0.038441215,0.019415682,-0.031189023,-0.013907688,-0.04378856,-0.038464166,-0.021205781,0.00018897874,-0.012874939,-0.04365086,-0.020643506,0.026828526,-0.039680514,0.033185672,-0.007212031,0.005031783,0.013058539,-0.061138745,0.06751884,-0.0065694316,-0.0013648066,-0.006712869,-0.0077628307,-0.029031724,0.013207713,-0.0058866697,0.012702813,0.020448431,0.0037867466,-0.042595163,-0.049480155,0.039978866,-0.022548355,-0.0041711587,-0.01126844,-0.037729766,-0.029766124,0.0069595813,-0.04470656,-0.030936573,0.02322538,0.010700428,0.012840513,-0.036628168,-0.049021155,-0.025107278,-0.01690266,-0.013115914,-0.020356633,-0.015571561,-0.0022892605,0.039290365,0.016340386,0.022777855,-0.093498215,-0.043490212,-0.0095586665,0.0136781875,-0.011744652,0.017487884,0.0009832631,0.00068132754,0.031739824,0.012978214,-0.024235178,0.024556478,0.030248074,0.050627656,-0.013976538,-0.0010922756,-0.015387962,0.018337034,0.028595675,0.0077972556,-0.052142352,0.02400568,-0.00897918,0.01113074,0.012381514,-0.018979633,-0.0108496025,0.01651251,0.013551963,-0.012955263,-0.024740078,-0.06728934,0.04257221,-0.027310476,0.06572874,-0.054804552,-0.00024993962,-0.048791658,0.06724344,0.04330661,-0.047460556,-0.038808417,-0.02244508,0.0075218556,-0.021354957,-0.019163232,0.020333681,0.01745346,0.029972672,-0.027608825,-0.054253753,0.004291646,-0.03561837,0.00936933,0.03385122,0.029077625,0.005361689,-0.04218206,-0.02150413,0.025841678,0.05315215,0.003872809,0.0054907827,-0.0013461597,-0.03258897,0.03141852,0.035824917,0.08964262,-0.0028572725,-0.031716872,-0.004475246,0.030110374,0.027494075,-0.026920326,0.041057512,0.04367381,0.0068735187,0.0065464815,-0.03343812,0.009834066,0.024395829,-0.016271535,-0.0072062938,0.025818728,0.0015362143,-0.0070341686,0.018635383,-0.008583292,-0.024831878,0.0035830655,0.03573312,-0.031602122,0.01710921,0.028251424,0.021022182,0.019117333,0.03373647,0.023569629,0.027953075,0.04583111,0.015319112,-0.030867722,0.028228475,0.038923167,-0.027976025,-0.0058866697,0.03708717,-0.008508705,0.061138745,0.036788817,-0.055538952,0.024441728,0.03720192,0.061735444,0.00095816166,0.01736166,0.050765354,0.014194562,0.014148663,0.018761609,-0.02136643,-0.0019120201,0.059761748,0.049112957,0.011119265,0.052876752,-0.04424756,0.0039732154,-0.013150338,-0.042755812,0.0046617147,-0.049526054,0.008531655,-0.013196238,0.020379582,0.00918573,0.030752972,-0.020827107,-0.013609338,-0.033300422,-0.04569341,-0.027264576,-0.043995112,-0.020264832,-0.012048739,0.014343738,0.00060960883,0.052968554,-0.026828526,-0.0046272897,-0.02324833,0.041241113,0.0012185004,-0.029169424,0.030959522,-0.00021192872,0.014091288,0.03486102,-0.061735444,-0.01749936,0.017992783,-0.009403754,0.015778111,-0.0019234952,-0.0133683635,-0.019622233,-0.010815178,-0.035480667,0.03323157,-0.014010962,-0.030339872,-0.015628936,-0.0029304256,-0.010775016,-0.026484277,-0.04392626,0.005192433,0.0013103004,0.008789842,-0.010838128,-0.0052641514,-0.03447087,-0.030592322,0.008388218,0.01710921,0.01644366,-0.03564132,-0.01175039,-0.040782113,0.0025890446,-0.0022390573,-0.005315789,-0.022812279,-0.008210355,-0.03304797,-0.028274374,0.07646933,0.040621463,0.041149314,-0.011876615,-0.060725644,-0.01697151,-0.03180867,-0.017487884,-0.018187858,-0.005123583,0.038188767,0.019174708,-0.010975827,-0.017625585,-0.019541908,0.00008400051,0.047139257,0.041378815,-0.004432215,-0.0021601669,-0.0062079695,0.028480925,0.012909364,-0.0048424457,0.018841933,-0.0051035015,0.0031986535,0.00047155036,0.006076007,0.015158461,0.03334632,0.028825175,-0.020563181,0.022984404,0.04424756,0.01062584,-0.016409235,0.060817447,-0.039978866,0.037867468,0.05677825,-0.03382827,-0.005238333,-0.014183087,-0.035090517,0.0066841817,-0.0011812068,0.020459907,-0.012163489,-0.022112306,-0.035549518,-0.024189278,-0.04323776,0.047185156,0.013735563,-0.010287329,-0.04470656,0.01106189,0.005089158,-0.04273286,0.05700775,0.0029490723,0.0012909364,0.049985055,-0.003927315,-0.014699462,0.00803823,0.025405627,0.023420455,0.028113725,-0.048149057,-0.01761411,-0.033070922,-0.0040736212,0.020735307,-0.060817447,-0.0028027662,0.020000907,0.08266582,0.013448688,-0.017763285,-0.015663361,-0.0075046434,-0.025222028,0.027080975,0.0049084267,-0.04750646,-0.027953075,0.017786235,0.022548355,-0.016478086,0.019174708,0.052968554,0.038533017,0.040965714,-0.016202686,-0.022307381,0.000092517104,-0.06531564,0.038372368,0.023845028,0.04599176,0.03499872,-0.039565764,-0.01113074,-0.013276563,0.07160394,0.026828526,-0.03453972,0.0019521826,0.0028687473,-0.010889765,-0.03357582,0.043880362,-0.009570141,0.032129973,-0.038716614,0.012576588,-0.03341517,0.022410655,-0.052188255,0.014424062,-0.026300676,0.0025173258,0.019828781,0.035939667,0.0038010904,-0.016248586,-0.038533017,-0.025451528,0.0025259322,-0.014940437,0.0064604194,-0.00831363,0.03467742,0.0044953274,0.00918573,-0.026599027,0.0053817704,-0.023213904,0.0052211205,0.011687277,-0.015915811,-0.009352117,-0.0053674267,-0.0038240403,0.0029921036,-0.015284686,-0.07715783,-0.01582401,0.013563438,0.012507739,-0.0034998718,0.028389124,-0.01085534,-0.029857924,0.018669808,-0.051637456,-0.01122254,-0.011256965,-0.0091914665,-0.0005461378,0.007659556,0.006896469,0.006454682,0.018497683,0.037913367,-0.017992783,0.041080464,0.0066956566,-0.028435025,0.03426432,-0.020287782,-0.010166841,-0.064030446,0.020046808,0.03584787,-0.00037508874,0.0031154598,-0.007045644,-0.038142867,-0.03479217,-0.0055797137,0.024372878,0.027517026,0.00014953346,-0.011595477,0.0018388671,0.008893117,-0.031234922,0.00072686886,-0.011073365,0.003362172,-0.021791006,0.02145823,0.010207003,-0.0047334335,-0.006035845,0.03336927,0.0051809577,0.016661685,-0.014802737,-0.04750646,0.0037207655,0.01795836,-0.0101725785,0.02400568,-0.03382827,-0.024304029,-0.04470656,0.031234922,0.031234922,-0.015066662,-0.014240462,-0.008198881,-0.03265782,0.0037982217,-0.0022433605,0.014309312,-0.018245233,-0.0017743203,-0.006041582,-0.01701741,-0.039519865,-0.025428578,0.028825175,-0.024877777,0.0011324381,-0.02338603,-0.059761748,0.023982728,0.015410911,0.047965456,-0.012381514,-0.016501036,0.0040133777,0.04502786,-0.00831363,-0.014033913,0.024349928,0.019014059,-0.015055187,-0.027494075,-0.012209389,0.026071176,-0.0051780893,0.035044618,-0.0020583263,-0.021377906,-0.023707328,-0.027585875,-0.021022182,-0.020689407,0.04479836,0.0078087305,0.009398017,-0.039542817,0.006030107,-0.0014573237,-0.04238861,-0.020230407,0.016133836,0.010161104,0.011991364,0.009943078,-0.031326722,-0.0029490723,-0.050076857,0.013081488,-0.040024765,0.0052354643,-0.037178967,-0.0062251817,0.0085144425,-0.020597607,0.0027855537,-0.013506063,-0.0043490212,0.02187133,-0.014447012,0.03378237,0.010390603,0.027448175,0.019909108,0.0006372205,0.012174964,0.0056055323,-0.03222177,0.025038429,-0.036215067,-0.007085806,0.010522566,0.03334632,0.006431732,-0.0022806542,-0.0040391963,-0.032910272,-0.00068527204,-0.03490692,0.014527337,0.017533785,-0.012553639,0.021446755,-0.021664781,0.021194305,0.036903568,-0.025703978,0.005949782,0.0010987303,0.007315306,0.011274178,-0.048332658,0.025612177,0.02414338,-0.005439145,0.0052698893,0.0000051715897,-0.006816144,0.004825233,0.005338739,-0.019702557,-0.0032302097,-0.016363336,-0.018394409,0.0033105346,0.035044618,-0.03417252,-0.0130011635,-0.006575169,0.014137187,-0.020620557,-0.03460857,0.009644729,-0.03398892,0.024028629,-0.0058551137,0.014687987,-0.012392989,-0.018141959,0.010574203,0.011274178,0.023982728,0.014171612,-0.049617857,0.017487884,-0.00018987522,-0.04564751,0.025703978,0.029146474,-0.014619137,-0.031349674,0.011784814,-0.0124503635,0.030431673,-0.018543584,-0.040369015,-0.012255289,-0.0035457718,0.013288038,-0.029421873,-0.03203817,-0.0053444766,0.024189278,-0.021940181,-0.016397761,-0.025658077,0.013884738,-0.0068792566,-0.0089447545,-0.015043711,0.026576076,-0.00838248,0.007177606,-0.020184508,-0.0066210693,-0.04615241,-0.00014845768,0.006902206,-0.030867722,0.0052412017,0.03529707,-0.021917231,0.06568284,0.0038871528,-0.014424062,-0.03199227,-0.04367381,0.0015089612,-0.01786656,-0.011842189,-0.024166329,-0.029284174,0.010683215,-0.04454591,0.03284142,0.009030817,-0.027998975,-0.03295617,-0.02386798,-0.03235947,-0.0130011635,-0.014114237,0.039703466,0.028779274,-0.03359877,0.008640667,-0.025612177,-0.023982728,-0.04500491,-0.03274962,-0.01800426,-0.03362172,0.0059383074,-0.015651885,-0.023374554,-0.028251424,-0.0070226938,0.027058026,-0.06453534,-0.000579487,-0.0032416845,-0.019496007,0.006053057,0.0071603935,0.04346726,0.018669808,0.03313977,-0.010551253,0.0015204361,0.0041396026,-0.0069136815,-0.016730536,0.026851475,-0.025244977,-0.040713266,-0.021802481,0.041149314,-0.027539976,-0.04507376,-0.017487884,-0.045119658,0.036674067,0.03412662,0.013196238,-0.006179282,0.0035371657,0.013115914,-0.01821081,0.018910782,-0.013873262,0.011331553,0.014768312,0.0094955545,0.049985055,0.020046808,-0.012679864,-0.013253613,-0.047414657,0.008279205,0.022456555,-0.019323884,0.00013976179,0.018750133,0.012863464,-0.013150338,0.032336522,-0.025864627,0.003020791,-0.031005422,-0.036605217,-0.000393377,0.0142289875,-0.01667316,-0.0050260457,-0.060496148,0.019932058,-0.014492912,-0.040506713,0.026438376,0.027517026,0.006649757,0.0074702185,0.02425813,-0.014837162,-0.0088816425,-0.01662726,0.025405627,-0.0053760326,0.018382933,0.0048338394,0.027287526,0.049434256,0.021320531,0.027654726,0.04417871,0.0035572469,0.020104183,-0.03281847,-0.008296418,0.038487114,-0.0066382815,-0.0015304767,0.0077398806,0.0026363789,-0.029513674,0.02269753,-0.00004643785,0.0069825314,0.05558485,-0.010677478,0.013643763,-0.03196932,-0.010034879,0.0006608877,-0.043031212,0.021538556,0.05411605,-0.02304178,0.047460556,-0.032566022,-0.025818728,0.011411877,-0.022272956,-0.009908654,-0.0046617147,-0.007303831,-0.0040592775,-0.006644019,0.0022749167,-0.02285818,0.0071833436,0.040414914,-0.029169424,0.040391963,0.028894024,-0.0008018149,0.0016753485,0.0118307145,-0.012530689,0.009403754,0.027379327,0.005020308,-0.023546679,-0.0115897395,0.030569373,-0.018141959,-0.031211972,-0.0031584909,-0.043490212,0.037913367,-0.0074128434,-0.013942112,0.00051637454,0.03215292,-0.009346379,-0.00218742,0.0033564344,0.0029189505,-0.0028328882,0.03398892,0.015009287,-0.0038699403,-0.038211714,0.029077625,-0.0001740971,0.025933476,0.013815887,-0.03584787,0.013919163,0.023076205,0.009593092,0.050260454,0.01724691,0.003215866,-0.020150082,-0.0155830365,-0.04392626,0.04523441,0.048194956,0.028251424,0.025244977,-0.059073247,-0.008984917,-0.002782685,-0.029513674,0.040414914,-0.020930381,0.014642087,-0.0019177577,-0.019105857,0.019507483,0.0033334845,-0.015410911,0.030798873,0.027035076,0.038372368,-0.01722396,0.018405885,0.014447012,0.02219263,-0.008348055,0.0035945405,0.026874427,0.050719455,0.0064374693,-0.004985883,-0.024510577,0.0066612316,0.007516118,-0.0017269859,0.060037147,0.017304284,0.01747641,-0.01630596,0.010103729,0.029743174,-0.012392989,-0.0117102275,0.029421873,-0.0031154598,-0.012829038,0.0070743314,-0.008531655,0.017522309,-0.012496264,0.076836534,-0.026599027,0.02198608,-0.017292809,-0.0076710307,0.01706331,-0.027539976,0.016661685,0.026667876,0.0023136449,-0.0039932965,-0.0070399065,-0.0034654469,0.0010643053,-0.014561762,-0.0036519156,0.025061378,-0.015181411,-0.014171612,-0.015227311,0.018945208,-0.015479761,0.0060932194,-0.010132416,-0.027264576,0.03467742,0.01103894,0.024556478,-0.031211972,0.009220154,0.010390603,0.016156785,0.009317691,0.024487628,-0.0069825314,-0.02386798,-0.04684091,-0.019232083,-0.0002558564,0.02212378,0.020987757,-0.032680772,0.00067415566,0.0008312196,0.0070226938,-0.010103729,0.025635127,-0.006305507,-0.00069029233,-0.024556478,0.0021960263,0.016007612,0.0038756777,0.008112818,0.03557247,-0.0056485636,-0.020310732,-0.003227341,-0.013976538,0.019714033,0.028939925,-0.012588064,0.05636515,0.006322719,0.01704036,-0.0030867723,0.008973442,-0.034929868,-0.015869912,-0.028205525,0.0025044165,-0.008445593,0.047873657,-0.03261192,-0.047093358,-0.013253613,0.0052899704,-0.0063341944,-0.018578008,-0.018910782,-0.019691082,0.009702104,-0.026782626,0.03405777,-0.0041281274,-0.00003014426,-0.02375323,0.03669702,-0.011056153,-0.0077628307,-0.009088192,0.026025277,0.016133836,-0.01694856,-0.010034879,-0.018451784,-0.017522309,0.037133068,-0.005430539,0.016822334,-0.007292356,0.01694856,0.011079103,0.010476666,-0.03265782,0.014779787,0.0029103444,0.005545289,0.019037008,-0.040552612,-0.019105857,0.012174964,-0.00037437154,0.012783139,-0.020574657,0.010252903,0.020459907,0.007825943,0.009162779,0.029054673,0.02262868,0.03424137,0.0019019796,0.021905756,-0.04704746,-0.010201266,-0.0031527535,-0.04560161,-0.009111142,-0.05563075,-0.0023853634,0.04479836,0.008261993,-0.004985883,-0.00062036666,-0.012519214,0.041470613,0.011865139,-0.00561127,-0.013035588,-0.017832134,-0.0029949723,0.00021927989,0.041309964,-0.006598119,-0.005158008,0.011865139,0.003967478,0.0010234256,0.0056084013,0.013322463,0.005318658,0.028641574,-0.0072521935,-0.0002522705,-0.006644019,0.0059153573,0.032405373,0.010654528,0.009443916,-0.018715708,-0.011670064,-0.013884738,0.02352373,-0.0016724798,0.0025302353,0.022571305,-0.03320862,-0.012232339,-0.0036174906,-0.02219263,0.03203817,-0.024418779,-0.008560343,0.021332007,0.0010112334,-0.021263156,-0.052463654,-0.016202686,-0.000110626075,-0.030890673,0.021836905,-0.006397307,0.019243557,-0.042939413,0.0036547843,-0.025681026,-0.013574913,0.020333681,-0.012025789,-0.050535854,-0.020127133,-0.03231357,0.036536366,0.02299588,0.04502786,-0.0042285337,-0.011606952,0.015548611,0.026943276,0.038372368,-0.0010721943,0.010889765,0.0027009258,0.03396597,-0.009082454,-0.0065464815,0.037018318,0.016064987,-0.013529013,0.00822183,0.00063076586,0.061230544,-0.024304029,0.005043258,0.0018302609,-0.007154656,-0.0114635145,0.015433861,0.00046724724,-0.04541801,-0.014871587,0.04555571,0.002521629,-0.011343027,0.0010040617,-0.0013052801,-0.01782066,-0.003976084,0.010453716,-0.0060587944,-0.0091283545,0.009983242,0.041355863,0.030110374,0.027953075,0.043260712,-0.008830004,0.024785979,-0.023822078,-0.014871587,0.014447012,0.01149794,0.0026191664,0.018979633,0.028733375,0.003600278,-0.032566022,0.0070915436,-0.016432185,0.03157917,0.0009509898,-0.021469707,0.007384156,-0.016914135,0.005278495,0.024326978,0.03412662,-0.028526824,0.01775181,0.026392477,-0.010901241,-0.048699856,0.031166073,0.0120143145,-0.0025244977,0.009564404,0.0015146986,0.0018603827,-0.0034998718,-0.03382827,0.0075562806,0.010384866,-0.019507483,0.0038068278,0.0067415563,-0.021768056,-0.043995112,0.019461583,-0.008003806,-0.038028117,-0.051866952,0.0117733395,-0.029720224,-0.011979889,0.013012638,-0.023064729,0.026782626,-0.03467742,0.01743051,-0.0058235573,-0.024602378,0.009042292,0.009122617,-0.013689663,0.025153177,-0.004647371,0.015594511,-0.027333425,-0.008594767,0.026369527,-0.009489817,-0.009168517,-0.0066210693,-0.019415682,0.019564858,-0.041768964,0.0046272897,0.0131847635,0.0030925097,-0.039749365,-0.009943078,0.0073095686,-0.0031211972,-0.006976794,-0.02361553,-0.026415426,-0.021515606,-0.029651374,0.01161269,0.017797709,-0.04261811,-0.008158717,-0.02414338,-0.03284142,-0.0029720224,-0.0012557942,-0.028894024,-0.031556223,0.0036605217,-0.023684379,0.004524015,0.0016868236,-0.003884284,-0.03293322,0.048653957,-0.0018833327,0.026851475,-0.04300826,0.015697787,-0.019541908,0.021653306,0.027976025,0.031074272,0.0069653187,-0.030982472,0.023845028,-0.025979377,0.0043547587,-0.017992783,0.017797709,0.017155109,-0.007607918,-0.015043711,0.04296236,0.027517026,-0.025818728,0.04553276,-0.00090939295,0.012163489,0.017648535,-0.018050158,0.009461129,-0.015112561,-0.00012658349,-0.01642071,-0.039175615,0.0017671484,0.014768312,0.0041396026,-0.03389712,0.030454623,-0.02203198,0.025244977,0.011188115,-0.006632544,0.0055739763,0.019736983,-0.013827363,-0.009036554,-0.024671229,0.006121907,0.026713775,0.027195726,-0.0017327234,-0.03444792,0.027035076,0.0064374693,0.01860096,0.027448175,-0.006689919,-0.021412332,0.0034138095,0.019541908,0.006827619,0.019186184,-0.001738461,0.015032236,-0.031349674,-0.006689919,-0.023317179,-0.028641574,-0.0067989314,-0.026736727,-0.0065005817,0.025543327,-0.0057747886,0.021045132,0.020333681,-0.004770727,0.0016954298,-0.029123524,0.04661141,-0.005860851,-0.0065866443,0.012209389,0.01570926,-0.014102763,-0.026874427,0.01609941,-0.040988665,-0.011469252,-0.006971056,-0.00815298,0.023546679,-0.008847217,0.0103561785,0.00405354,0.019656658,-0.0049112956,-0.025910527,-0.008256255,0.01717806,-0.006644019,-0.005545289,0.0021601669,-0.029192373,-0.011549577,-0.0085775545,0.0011532365,-0.010866815,0.010316016,0.011492202,0.0012715723,-0.035549518,0.01690266,0.01621416,-0.018623909,0.022559829,-0.010184053,0.00023147206,-0.025405627,0.018451784,-0.00874968,-0.023145054,0.01170449,0.012645438,0.03362172,-0.028182575,0.0060071573,-0.0066268067,0.038533017,0.020299258,0.03759207,0.003396597,0.022594254,0.019955007,0.019151758,0.037936315,-0.0144125875,0.024602378,0.025703978,0.03300207,0.00085560395,0.01720101,0.009587354,-0.013747037,0.03364467,-0.016248586,-0.013735563,0.028343225,0.007653818,-0.010189791,-0.0058551137,-0.030959522,-0.0033478283,-0.02301883,-0.00067487283,0.012163489,-0.007458743,-0.036536366,-0.0030351349,-0.021354957,0.048653957,0.026782626,0.005370295,0.0041051777,0.025290877,0.001278027,-0.00039660433,-0.010797965,0.010780753,0.013999487,-0.038670715,-0.02260573,-0.009174255,0.018623909,0.030179223,0.04195256,0.007825943,-0.038028117,0.013666713,0.0062423944,-0.007011219,-0.013919163,-0.018417358,-0.027494075,0.007498906,-0.0068333563,-0.025979377,0.0031068535,-0.01809606,-0.012347089,0.014607662,0.03304797,-0.0045957332,-0.00045541365,-0.009145567,-0.0017958359,-0.024900727,0.013196238,-0.009139829]},{"id":"class-UserFlagsBitField","type":"class","source":"main","text":"Class: UserFlagsBitField\nProperties: Flags: { readonly Staff: number; readonly CtpMember: number; readonly Partner: number; readonly BugHunter: number; readonly FriendlyBot: number; readonly FriendlyBotManualApproval: number; ... 24 more ...; readonly StaffHidden: number; }","meta":{"url":"/docs/classes/UserFlagsBitField"},"embedding":[-0.018862741,0.02020317,-0.009016804,0.028687948,0.015946962,-0.007206534,-0.015366569,-0.022510918,0.020230807,0.009735385,0.0403787,0.0038520065,0.04054453,0.030733138,0.037310917,0.010253592,-0.015615309,0.018696913,-0.006491408,0.019816242,0.0038554613,0.056436215,0.018655458,0.024030993,-0.022884028,0.033414,-0.007524368,-0.04344649,0.0047605964,0.022289816,0.037808392,-0.03346927,0.029185427,0.012706439,-0.006180484,-0.034491867,0.019871516,0.043805778,0.013501024,0.00811167,-0.039881222,-0.027388975,-0.04557459,-0.006118299,-0.017259752,0.014316336,-0.0010044582,0.028964326,-0.0062323045,0.039964136,-0.0013594301,0.02357497,0.02346442,0.055358343,0.01052306,0.04305956,0.013770492,-0.012153685,0.011642387,0.012823899,0.038554613,-0.0014224786,-0.02866031,0.0013309288,-0.005081885,0.024086269,-0.06776768,0.034685332,0.0307055,0.036205407,0.035652652,0.025813626,-0.016057512,0.046403725,0.079762444,-0.0007950161,0.03023566,0.001574486,0.016928101,0.004802053,-0.02866031,0.03979831,-0.03310998,-0.008236039,0.0030919693,-0.00847096,-0.058813058,-0.03349691,-0.025799807,-0.068652086,-0.038001858,0.011103452,-0.047923796,-0.0013982956,-0.0035583558,-0.03833351,-0.044662546,-0.021073757,-0.052318193,-0.035016984,0.09446571,0.016112788,-0.008581511,0.030677864,0.021488324,0.011075814,-0.00082351756,-0.008381137,-0.011939493,0.016292432,-0.10800819,0.03797422,-0.006118299,0.03374565,0.012077682,-0.025606344,-0.0017049016,0.026753308,0.021350134,-0.013590846,-0.016651724,0.0062357592,0.028826136,-0.018848922,0.007938934,-0.0011055087,-0.022082534,-0.0578181,-0.017328847,-0.04701175,0.0010113677,-0.01873837,0.038416423,-0.0026687668,-0.044358533,0.007330904,0.0026825857,0.03313762,-0.08186291,-0.060747698,-0.0013577028,0.004815872,0.031838648,0.02528851,-0.0048953304,0.049554422,-0.058094475,0.031838648,-0.012830809,0.037725482,-0.028964326,-0.0030556947,-0.03181101,0.0017161294,0.0058591957,-0.018918015,0.053561892,0.009977215,-0.03230849,-0.016154245,0.0066986913,-0.0340773,-0.030208023,0.017853964,0.049305685,0.0100394,0.019346401,-0.02407245,-0.059918568,-0.0059732012,0.036758162,-0.025937995,-0.011898036,-0.041318383,-0.042866096,0.011739119,-0.006007748,0.012906813,-0.0681546,-0.052870948,0.010571426,0.024210637,0.0005717552,-0.071747504,-0.024335008,-0.02877086,0.01753613,-0.028743224,0.026172915,-0.033027068,0.05381063,0.053782992,0.031285893,0.039356105,0.016651724,-0.010198317,0.011656206,-0.023975717,-0.014813815,-0.065888315,-0.037891306,0.005296077,0.03930083,-0.023450602,0.0038416423,-0.05201418,0.0049402416,0.009030623,-0.04305956,0.003969467,0.03170046,-0.0013119278,-0.038140047,0.005510269,-0.0010882351,0.00347717,-0.021267222,-0.012519885,-0.03493407,-0.0014198876,-0.020935569,0.018696913,0.042285703,-0.0022041078,-0.034795884,0.054805588,0.017715774,-0.0024165728,-0.0018914561,-0.014620352,-0.047868524,0.023740796,-0.02140541,-0.039494295,-0.055828184,-0.001762768,-0.025813626,0.04112492,0.003786367,-0.021806156,-0.016043693,0.009065171,0.028715586,0.03324817,-0.015408026,0.01719066,0.016002238,0.017867783,-0.010329596,-0.00250985,0.037449103,0.010419418,0.020161713,-0.029655268,-0.027789723,0.033718012,-0.024597567,0.054860864,0.023685522,0.0032491588,-0.0073585417,-0.0672702,-0.006301399,-0.041871138,-0.0336351,-0.0049575153,0.06533556,0.019097662,-0.027900273,-0.012816991,-0.01016377,0.04488365,0.028964326,-0.0026134914,0.0016453078,-0.036813438,0.013632303,0.013494114,-0.007897477,-0.016402984,0.004197478,0.02032754,0.02212399,0.04120783,-0.0055620903,0.0072549,0.016872825,0.014606533,0.053976458,0.00471914,0.03457478,0.03059495,0.06942594,-0.009493555,-0.0077454695,0.04692884,0.017093927,-0.04245153,0.048310727,-0.019456951,-0.0026601302,-0.009065171,0.013687578,-0.03664761,0.031120067,0.039494295,0.070918374,-0.04764742,-0.04701175,-0.010875441,0.0062944894,-0.03637123,-0.0708631,-0.03521045,-0.06959177,-0.025205595,0.030650226,0.02067301,0.04753687,0.004014378,-0.012754805,-0.000015910578,-0.0031956108,-0.025744531,0.01936022,-0.0068368795,0.025578706,0.05165489,0.03930083,-0.013597756,-0.022635289,-0.00022995443,-0.025412878,0.03012511,0.0019363674,-0.030926604,-0.018296167,0.06257179,-0.047702696,-0.019733328,0.03203211,-0.01608515,-0.042866096,0.0013412929,0.007932024,0.005188981,-0.044330895,-0.001211741,0.008312043,-0.017273571,-0.017232114,0.024265913,-0.014136692,-0.049139857,-0.058702506,-0.06008439,0.025537249,-0.03919028,-0.046127345,0.07860166,-0.03230849,0.03327581,-0.009707747,-0.050273005,-0.016002238,-0.006280671,-0.011773666,-0.027084962,0.0004966152,-0.046127345,-0.0124577,-0.0079527525,0.02673949,-0.015076374,0.033800926,-0.011124181,0.017632863,-0.02115667,-0.0037449105,-0.0014155692,0.027416613,0.019443132,0.004145657,-0.0065121367,0.0056795506,-0.035735566,-0.016292432,0.04112492,-0.06351147,-0.0043011196,0.050245367,0.010502332,0.03736619,0.0034892615,-0.010419418,0.022151629,0.024335008,0.07804891,0.0047951434,-0.03639887,-0.037034538,-0.01848963,0.007068346,0.04714994,0.018959472,-0.006325582,-0.039881222,0.026103823,0.046293173,0.004871147,0.0466801,0.008719699,0.03686871,0.00033467545,0.058702506,-0.0215436,0.0024839395,0.008415684,0.0075865528,-0.016237158,-0.039991774,-0.009210268,0.015408026,-0.020590097,0.020465728,-0.000964729,-0.025468154,-0.05698897,0.0008014937,-0.03905209,-0.029904008,0.0069681588,-0.015463302,0.031424083,-0.014551257,-0.050825756,0.014523619,-0.033552185,0.009500464,0.0020538277,0.011511108,0.030816052,0.001910457,0.009120446,0.019415494,-0.023077492,0.0051578884,-0.0073585417,0.04621026,-0.032336127,-0.020880293,0.010025581,-0.062074307,0.035155173,-0.054252833,0.01898711,0.05925526,0.039356105,0.0055966373,-0.012512975,-0.012789353,0.041097283,0.0016029874,0.06450643,0.0023146586,-0.031755734,-0.060139667,0.020507185,0.03664761,0.01656881,-0.0007112393,-0.013307559,0.048808206,0.027402794,0.015297475,-0.026435474,0.014413068,-0.04944387,0.010295048,-0.028522123,0.04789616,-0.010246683,0.0020970115,0.010391781,-0.0005717552,0.05721007,0.09761641,0.026642757,-0.009707747,0.00393492,-0.04460727,-0.01850345,0.050466467,-0.016859006,0.017508492,-0.006056114,0.018600183,-0.045270577,0.013162462,-0.04170531,0.026863858,-0.042562082,-0.009818298,0.0049160584,0.036233045,0.05201418,-0.0057244617,-0.029047238,-0.073626876,-0.008415684,-0.038996816,0.038969178,-0.03601194,-0.025924176,0.0021764701,-0.0249154,0.0064568613,0.03396675,-0.03241904,-0.038830988,-0.025136502,-0.002824229,-0.012720258,-0.024832487,0.0020106437,-0.021833794,-0.035238087,0.012810081,-0.020175532,0.000015816115,-0.0047571417,-0.04344649,0.014178148,-0.03192156,-0.027858816,0.016997194,0.0003780753,0.006978523,0.008920073,-0.023188043,-0.019788604,0.011214003,0.023270955,-0.003124789,-0.032363765,0.0215436,-0.009403733,0.021958165,0.029682906,-0.015007279,0.014019231,0.0038865537,-0.005613911,-0.02043809,0.021695606,-0.0023526605,0.010944535,-0.004522221,-0.025661618,-0.00049531966,-0.011739119,-0.067822956,-0.013362835,-0.008643695,0.010599064,0.005710643,0.0104056,0.013501024,0.019277306,0.009065171,-0.012450791,0.06378785,-0.05331315,0.018448174,-0.0010657794,-0.0050335187,-0.02455611,-0.011144908,0.029240703,0.022193085,-0.008367318,-0.029240703,0.012934451,0.016195701,-0.011711482,0.0037690934,0.049526785,0.029295977,-0.027306063,0.019747147,-0.012664983,0.0018171797,0.04549168,0.0021108305,0.00068835187,0.01113109,-0.0012687439,0.023243317,-0.030042196,-0.0026100366,-0.011303825,-0.012084591,-0.027264606,0.009175722,0.004073108,-0.009334638,0.004618953,-0.03244668,-0.023312412,0.015408026,-0.014772358,0.0109652635,-0.017163021,-0.03120298,-0.013715216,-0.0043805777,-0.007793836,-0.024528472,-0.008173854,0.0054480843,-0.036067218,0.017923059,-0.007051072,0.05165489,-0.009362276,0.050162453,-0.03521045,-0.018296167,0.02043809,0.0014233423,-0.029351253,-0.005112977,0.00096904737,-0.024335008,-0.011027448,-0.034049664,0.021004664,0.026352562,-0.0015978054,-0.026449293,0.0733505,0.026131459,0.04004705,-0.016168064,0.026435474,-0.0049575153,0.022842571,0.0042769364,-0.015242199,-0.025012132,0.011234731,-0.023768434,-0.008415684,-0.006902519,-0.020216988,-0.036094856,-0.041760586,0.00810476,-0.03045676,0.027513346,-0.002611764,-0.018904196,0.018779827,-0.03686871,-0.00013581346,0.026297286,-0.044579633,-0.0073585417,-0.025219414,0.009818298,0.0076971035,0.0430872,0.009085899,0.0032387946,-0.011766757,-0.0074069076,-0.017715774,-0.016402984,-0.011877308,0.05284331,0.0015140285,0.023865167,-0.01318319,-0.027278425,-0.012374787,-0.02432119,-0.010536878,0.021571236,0.010861622,0.0092033595,0.032944158,0.019277306,0.014744721,-0.029489443,-0.014592714,0.027955549,0.010495422,-0.030346211,-0.009224087,-0.0500519,-0.008533144,0.019429313,-0.03264014,0.010840894,-0.010979082,-0.014399249,0.008650605,0.01632007,0.009030623,0.019415494,-0.020659192,0.021792337,-0.012278055,0.014965823,0.0041214745,-0.00980448,-0.03244668,-0.000082643244,0.04198169,0.017563768,-0.004498038,-0.0003208566,0.026311105,0.01572586,0.012913723,-0.007448364,0.032197937,0.037863668,-0.005043883,-0.0005847104,-0.00980448,0.018945653,0.0094313705,0.013203918,-0.00021851069,0.024100088,-0.013715216,0.03733855,-0.004090382,-0.026145278,0.00003163223,0.0015537578,0.002544397,-0.0129551785,-0.03485116,0.007434545,-0.024652842,0.02770681,-0.03725564,0.027775904,-0.01947077,0.012043134,0.0032647052,-0.043584675,0.031396445,-0.037780758,-0.011960221,0.008498597,-0.020797381,0.049968988,-0.03504462,0.06942594,-0.007427636,-0.03725564,-0.015919324,0.019401675,-0.015573853,-0.036592335,-0.023215681,0.0001846113,-0.021363953,0.013894862,-0.054169923,-0.0044807647,0.03360746,0.0031679731,0.0026566754,-0.059365813,-0.030346211,-0.030926604,0.005997384,-0.008629876,-0.017895421,-0.012499156,-0.016637905,-0.050659932,0.03457478,-0.006674508,-0.006263397,0.004981698,-0.023796072,-0.0006715101,-0.016831368,0.005572454,0.014661808,-0.0041214745,0.023851348,-0.05649149,-0.013383564,0.0370069,-0.028881412,-0.02745807,0.037062176,0.005710643,0.04825545,0.0002977532,-0.019042386,0.014143601,0.0011461015,0.0017593133,-0.00093536393,0.020410452,-0.013846495,0.0215436,-0.005465358,0.02998692,-0.0077109225,-0.03012511,-0.0096870195,-0.04897403,0.019802423,0.025979452,0.009272453,-0.02528851,0.017011013,0.027236968,-0.01583641,0.008194583,0.025537249,-0.017812507,0.025095046,0.01959514,0.0031887013,-0.0060768425,0.0018603636,-0.010149951,0.028273383,-0.0054584485,-0.012568251,-0.01669318,0.032391403,0.018199435,-0.024984494,0.013245375,-0.018296167,-0.01596078,-0.0114489235,-0.02527469,-0.009452098,0.016430622,0.01801979,0.007938934,-0.0017636317,-0.034989346,-0.027181692,-0.030263297,-0.020479547,-0.011310735,0.03521045,-0.00022077785,0.017950695,0.039245553,-0.0319492,-0.010253592,0.014468344,0.005710643,0.0069094286,0.030318573,-0.035127535,0.0012894721,0.05732062,0.00044868104,0.005112977,-0.013894862,-0.032004476,-0.026200553,-0.028259564,-0.0013663395,0.013722125,0.0418435,-0.02057628,-0.012022406,-0.0010528242,-0.022303635,0.011379829,0.046790652,-0.023008397,0.066606894,0.011870398,-0.012588979,-0.0019225485,0.0011815123,-0.016250977,-0.016375346,0.03711745,-0.037034538,-0.00075528695,0.005962837,-0.0043633045,-0.004010923,-0.033690374,0.00067626033,-0.03338636,0.01415051,-0.026587483,-0.003017693,-0.010177588,-0.007717832,-0.0024321189,-0.009652472,0.020382814,-0.05698897,0.0073378133,0.028356295,0.019208211,-0.029213065,0.0040661986,-0.009859755,0.021709425,-0.007247991,-0.013058821,-0.0104539655,0.036426507,0.067712404,0.021598874,0.016720818,0.0089753475,-0.0151869245,0.03338636,0.015435664,-0.027872635,0.022897847,-0.026172915,0.02226218,-0.014468344,-0.035265725,-0.0003703022,-0.019456951,0.042534444,-0.009161903,0.017259752,0.022441825,0.014454525,-0.02745807,-0.010543788,0.017619044,-0.008650605,-0.013058821,0.0051993453,-0.027002048,0.00008129375,-0.03977067,0.012775534,-0.03471297,-0.031866286,-0.016582629,0.069094285,-0.02794173,0.013901771,0.027375156,-0.023312412,0.027914092,-0.0040972913,-0.006038841,0.01463417,0.02034136,0.04958206,0.027126417,-0.04112492,0.031838648,0.020286083,-0.024487015,0.049416233,-0.011980949,-0.020299902,-0.018904196,0.012789353,0.015283656,0.0017860873,0.0030919693,-0.01620952,0.06406422,0.028204288,0.019318763,-0.022441825,0.028632673,0.035735566,0.014330155,0.011220912,0.04692884,0.008671333,-0.0033579823,0.0026635847,0.010799437,0.022801114,0.014827634,-0.009362276,0.014413068,-0.016914282,-0.028093737,0.022234542,-0.01753613,0.003776003,0.007552006,0.028093737,-0.011994768,0.030263297,-0.0020417362,0.042258065,-0.004194023,-0.0024165728,-0.033414,0.02769299,0.0017351303,-0.008643695,-0.007399998,0.015283656,0.0013197009,0.0045671323,-0.02383753,-0.010854713,-0.00943828,-0.009769932,-0.0021229219,-0.025841264,-0.0015857139,0.005209709,0.0021125579,0.008415684,0.04424798,-0.002065919,0.027872635,0.012879175,0.009590287,-0.015062555,-0.03203211,-0.0003912464,0.033358723,0.029130151,0.022151629,-0.011697663,-0.025095046,-0.0056691864,-0.022911666,-0.034795884,-0.015753498,-0.023685522,-0.0100394,-0.01607133,0.02068683,0.009258634,-0.005068066,-0.0066503254,0.008277495,0.019277306,-0.004726049,0.013293741,0.015311294,0.021488324,0.024238275,0.004404761,0.012050044,-0.0151731055,0.016720818,0.0060906615,0.010219045,-0.0029831459,-0.029931646,0.014799996,0.009631744,0.00013419407,-0.01730121,0.02792791,-0.05505433,0.004767506,-0.011179456,0.02346442,-0.021502143,-0.015421845,0.001566713,0.006460316,-0.008374227,-0.005855741,0.00019335604,-0.015200743,0.017218295,0.010557607,0.04065508,0.0011512835,0.02382371,-0.03313762,0.03288888,-0.030512037,-0.0016997195,-0.04220279,0.054501574,0.013521752,0.005734826,0.016375346,-0.014482163,-0.013376654,0.017798688,-0.017688138,-0.0044462173,0.01864164,-0.024984494,-0.015767317,-0.003955648,0.008118579,-0.0028363205,-0.0024165728,0.010992901,0.022787295,-0.010101585,-0.04220279,-0.0159746,-0.018116523,0.021612693,0.014813815,-0.006557048,0.013963955,0.013266103,0.015905505,-0.0176605,-0.008940801,-0.012153685,-0.015684403,0.005344443,-0.02285639,0.020949388,0.0042769364,-0.0191253,-0.0014362975,-0.010502332,0.026200553,0.0124577,0.024279732,0.0057244617,0.00064991816,-0.010136132,0.020769743,0.0057762824,0.013501024,0.012865356,-0.046431363,-0.014454525,-0.041428935,0.08224984,0.0076487376,-0.011573293,0.00193464,-0.016679361,-0.03360746,0.027844997,-0.0056173657,-0.0044738553,0.0035376274,0.0055793636,-0.007476002,-0.024030993,0.018890379,-0.0020400088,0.010011762,-0.013307559,0.01004631,0.042755544,-0.00919645,0.015546215,-0.00065898674,0.010536878,-0.037310917,-0.0060526594,-0.008761155,0.016720818,-0.0066814176,0.020106437,-0.0032128843,0.012561342,0.014454525,0.041290745,-0.006905974,-0.050355915,0.0051095225,-0.010433237,0.011967131,0.016748454,-0.013190099,-0.027900273,-0.030042196,-0.002679131,0.017853964,0.014717083,-0.03327581,-0.023975717,-0.020755924,-0.0018707279,-0.0290196,0.0052304375,0.010702705,0.0089477105,-0.015338932,0.0044462173,0.015062555,0.03443659,-0.0016021238,0.022884028,-0.014440706,-0.011234731,0.016651724,-0.027762085,0.009376095,0.052815672,0.030926604,0.01522838,-0.034491867,-0.005765918,0.040599804,0.005721007,0.0053478978,0.01730121,-0.0049644248,0.033662736,-0.00956265,-0.038361147,-0.023796072,0.0005341852,0.032723054,-0.00032798195,-0.010599064,0.00069957966,0.010972173,-0.015007279,0.0001620477,0.01572586,-0.025329966,-0.0026566754,-0.0030107836,-0.003952193,0.01717684,0.0224971,0.009852845,-0.008616057,0.008878616,0.0072272625,0.0092309965,-0.0021488324,-0.002872595,0.03374565,-0.0010718252,0.0079527525,-0.0074552735,-0.020852655,-0.012989726,-0.013266103,0.0051060678,0.023616428,-0.055579446,0.008318952,0.008166945,-0.0119464025,-0.001064052,0.013542481,-0.0037932764,0.0074414546,-0.03518281,0.030373849,-0.0019190938,0.007780017,0.0019052749,-0.019277306,0.005696824,0.00550336,0.009756113,0.02575835,-0.00008895889,0.0071167117,0.02479103,-0.012001677,0.0089891665,-0.023270955,0.014060687,-0.009009895,0.016472079,-0.005140615,-0.03725564,-0.027292244,-0.010550697,-0.0047951434,0.00798039,0.024998313,0.012243507,-0.0067263287,-0.010626702,-0.008664424,0.007386179,-0.023326231,0.017011013,-0.0092033595,0.0031645184,0.0069370666,0.0051060678,0.00021354452,-0.0073032663,0.050355915,0.011994768,-0.007752379,0.015794953,0.026394017,-0.013321378,-0.0111932745,-0.039853584,-0.0029226884,0.0074690925,0.00847096,0.015946962,0.008270586,0.018862741,0.0072549,-0.0014587531,-0.0099703055,0.00411111,0.0023647519,-0.019387856,0.016043693,0.017605225,-0.046652462,-0.043197747,-0.044579633,-0.008809522,-0.0026618575,0.013072639,0.014219604,-0.03012511,-0.0024338462,0.0009897756,0.04026815,0.010896169,0.019912973,-0.045823332,-0.024390284,0.001402614,0.010447056,0.030180385,-0.004694957,0.012312602,0.027914092,-0.005403173,-0.021571236,-0.010543788,-0.0023923898,-0.009210268,0.000045693996,-0.03327581,-0.008864797,-0.010274321,-0.0043391213,-0.026877677,-0.010060128,0.000050174327,0.00907899,-0.021626512,-0.010585245,-0.011511108,-0.008926982,-0.001910457,-0.02164033,0.004556768,-0.0076487376,-0.0031213344,0.014247242,-0.041898776,0.007234172,-0.030650226,0.019498408,-0.01583641,0.045740418,-0.040323425,0.013127915,-0.00058255123,-0.014772358,0.007026889,-0.0070718005,0.0099288495,0.009769932,0.020106437,-0.0087058805,-0.0013879315,0.000033872395,-0.023174224,-0.012644255,-0.032087386,-0.037421465,0.00038930314,0.02528851,0.002587581,-0.0011918765,0.011718391,0.010391781,0.008484779,0.03346927,0.0016245794,0.001085644,-0.022884028,-0.010909988,-0.008629876,-0.01052306,-0.015946962,-0.0022611106,-0.008899344,0.039383743,-0.02926834,0.042064603,0.02625583,-0.008236039,0.014730902,-0.016513534,-0.008388046,0.0026514933,-0.007766198,0.030650226,0.028231926,-0.013114096,-0.0070614363,0.010778708,-0.0058937427,-0.04388869,-0.018116523,0.012229688,0.020866474,0.014357793,0.03327581,0.006021567,0.021806156,-0.012789353,-0.0023250228,0.0151731055,0.002394117,-0.017591406,0.0073930887,0.011518017,-0.022566194,0.004100746,-0.035735566,-0.044165067,-0.013742854,-0.016859006,0.01669318,0.018185616,-0.021225765,0.026186734,-0.03131353,-0.010944535,0.0061839386,0.021322496,-0.0035082623,-0.010937626,-0.017978333,-0.0134526575,0.01633389,-0.0008727472,-0.008298224,-0.0065501384,0.004560223,0.0021263766,0.017923059,0.02020317,-0.012132957,-0.01088926,0.029240703,0.009355366,0.009161903,0.03860989,0.017121565,-0.01742558,0.008719699,0.0052338922,0.012948269,-0.005755554,0.021322496,-0.003148972,-0.035597377,0.05649149,-0.009763023,-0.014882909,-0.025440516,0.0018690005,-0.012063863,-0.01511783,-0.008139307,-0.004874602,-0.030014558,0.028010825,0.06450643,-0.01705247,-0.025316147,0.024473196,0.014143601,0.023312412,0.012257326,-0.008609148,0.034878798,-0.0060664783,0.0092171775,0.051295597,-0.018779827,0.02298076,-0.027029686,-0.0044565815,-0.025343785,-0.027430432,0.022994578,0.028466847,0.042783182,0.0056795506,0.0129689975,0.0064154044,0.014495982,-0.01897329,-0.008312043,-0.014005412,-0.016140426,0.0056277295,0.011483471,-0.02636638,0.025551068,-0.02346442,-0.020590097,0.04245153,0.007524368,-0.057044245,0.0074207266,0.012810081,0.015366569,-0.014551257,-0.013404292,0.023961898]},{"id":"class-UsersManager","type":"class","source":"main","text":"Class: UsersManager\nDescription: Manages users with fetch and profile helpers.\nExtends Collection so you can use .get(), .set(), .filter(), etc.\nProperties: maxSize: number\nMethods: fetch(userId: string) -> Promise — Fetch a user by ID from the API.\nUpdates cache if user already exists.; fetchWithProfile(userId: string, options: { guildId?: string | null; }) -> Promise — Fetch a user with full profile and optional guild context.\nReturns user, global profile, server profile (when guildId), and member (when guildId).\nIdeal for userinfo commands.; set(key: string, value: User) -> this","meta":{"url":"/docs/classes/UsersManager"},"embedding":[-0.019310933,0.017848661,-0.015169687,0.0010639152,0.014689704,0.016564986,-0.019456044,0.0043254257,0.009605236,0.0062621003,0.0058323485,-0.05121304,0.0048695924,-0.016520336,0.03667961,-0.0022896852,-0.044314686,-0.016977994,-0.013707414,0.008801544,0.033174623,0.029781254,0.057017483,-0.0032482552,-0.01695567,0.06572415,-0.06134849,0.0858611,-0.02069507,-0.040206928,0.012256304,-0.0036054517,0.0009739185,0.017368678,0.036925185,-0.01900955,0.056258444,0.018607702,0.000964849,0.04301985,-0.018864438,-0.047908977,0.0006638133,-0.014265534,0.01186562,-0.010062894,-0.015828269,-0.00934292,0.032705802,0.057821177,-0.010766124,-0.039068364,-0.029133836,0.07902972,0.013450679,0.0021027152,-0.0035496398,-0.022447566,-0.029111512,0.010581945,-0.0021752706,-0.0006931146,-0.0143548325,0.013383705,0.004690994,-0.008070407,-0.007813673,-0.0018669096,-0.0004918428,0.010319629,-0.001864119,-0.033665765,-0.020326711,0.009923364,0.034424808,0.01228979,0.030384025,0.043555643,0.005876998,-0.0135288155,-0.009264783,-0.0037533534,-0.031321663,-0.0055281734,-0.013260919,0.015046901,-0.040765047,-0.021498762,0.037416328,-0.0123679275,0.0038007936,0.0055811945,-0.06590275,0.0077020484,0.00038928833,-0.010682407,0.02411076,-0.031232364,-0.014299021,0.03156724,0.05237393,0.0054165493,-0.0063737244,-0.01845143,0.025494898,-0.033643443,-0.07224298,0.010208005,-0.015906405,-0.013618115,-0.064027466,-0.009075022,0.025584197,0.030160775,-0.017770523,-0.027727375,0.009878715,-0.0012369322,0.013461841,-0.025160026,-0.032549527,0.019110011,0.041925933,-0.0050454,0.041278515,-0.0046323915,-0.0141873965,0.009895458,-0.07652934,0.010403347,0.0045151864,-0.0035328963,0.024311684,-0.009510356,-0.024802828,-0.007395083,-0.0075569376,-0.0057151434,-0.012993021,-0.044225387,-0.018585378,-0.045765795,0.0008636899,0.019143498,-0.04250638,-0.030875169,-0.025539547,0.06773338,-0.03203606,0.01158656,-0.041836634,-0.034692705,-0.06143779,0.005743049,0.026320914,0.0018836532,-0.002803155,-0.010671244,-0.0403632,-0.06849242,0.040809695,-0.039447885,-0.012088868,-0.029156161,0.0141873965,-0.012390252,-0.029513357,-0.0075792624,-0.036143817,0.0031450032,0.021342488,-0.014310183,-0.070010506,-0.0015766874,-0.008511322,-0.03308532,-0.036456365,-0.0045849513,-0.057821177,-0.016129652,0.057776526,0.006619297,-0.027303204,-0.047864325,-0.06795663,0.0068481257,-0.034670383,0.005536545,0.021286676,-0.028330144,0.016598472,0.061928935,-0.022347104,0.027459478,0.024825154,-0.013428355,0.036791235,-0.014790166,-0.023374043,-0.017435651,-0.01826167,0.007138348,0.05866952,-0.030584946,0.0072220657,-0.034424808,0.02097413,0.020728556,-0.04011763,-0.012189329,-0.008974561,0.03830932,-0.025003752,0.028932912,-0.053892016,0.034179237,-0.037103783,0.029558007,-0.017201241,0.036367066,-0.027593426,0.033844363,0.07983341,-0.0606341,0.032259304,-0.023530317,-0.008025758,-0.057285383,-0.0038984644,0.016620798,0.011966081,-0.04728388,-0.05938391,-0.038666517,-0.01560502,-0.0149352765,-0.015560371,0.07331457,-0.0028798964,-0.0013513467,-0.017435651,-0.027839,0.010057312,0.03895674,0.02321777,0.0035356868,-0.022637326,0.0068704505,0.059964355,0.01840678,0.02929011,0.0006861381,-0.00031551192,-0.041189216,0.024400983,0.022949873,-0.010593108,0.022994522,0.016464524,0.028017597,-0.013249756,0.017737037,0.005910485,0.043533318,-0.047775026,-0.019913703,0.02723623,0.020058814,0.008025758,0.0506326,0.009610817,0.048846617,0.0119549185,-0.017324029,-0.0054416647,0.045810446,0.00985639,0.02013695,-0.038465593,0.020628095,-0.0074899634,-0.009934527,0.06179499,0.03455876,0.027772024,0.036099166,0.02625394,0.022815924,0.00032022104,0.044024464,0.007227647,-0.0071495106,0.0025492106,-0.042394754,0.07201973,0.046167642,0.04176966,-0.019377908,0.066349246,0.04105527,0.020069975,0.007417408,-0.043711916,-0.045185354,0.03415691,0.0044621653,0.036612637,-0.019534182,-0.027057631,-0.04147944,-0.051480938,-0.025003752,-0.014611567,-0.00046568093,-0.04732853,-0.01616314,-0.0067309206,-0.038130723,-0.0036640542,0.066126,0.04360029,-0.010654501,-0.034223884,-0.0031087254,-0.027124606,-0.08278028,-0.044002138,-0.059919707,-0.027548777,0.07152859,0.07152859,-0.027437152,-0.045051403,0.010157774,0.01340603,0.007835997,0.0056649125,0.038599543,-0.018350968,-0.027660402,0.045296974,-0.02924546,-0.045207676,0.0114135435,-0.011452612,0.016319413,-0.024400983,0.032482553,-0.035608023,-0.009928945,-0.020728556,0.035005253,-0.0041217124,-0.008628527,0.009499193,-0.034982927,0.009560587,-0.02462423,-0.04453793,0.011084253,-0.007841579,0.0138525255,-0.05139164,0.0035384775,-0.014488781,0.03699216,0.012535363,0.0074118264,0.011452612,-0.043890513,-0.013093483,-0.011798645,-0.0026454863,0.0077522793,-0.0146004055,-0.021108078,-0.01971278,-0.027481802,0.012602338,0.047015984,0.042729627,0.021945257,0.056124493,-0.015727807,0.013461841,-0.034782004,-0.010470321,-0.019444883,-0.017859822,0.014321346,0.030584946,0.038041424,0.012624662,-0.019277446,-0.007060211,-0.018741652,0.05255253,0.013517654,0.011731671,-0.018306319,0.049739607,0.020393685,0.01210003,0.0031003535,-0.017949121,-0.00094950077,-0.025293974,0.014968764,0.01793796,-0.029401733,0.03283975,0.013952986,0.01771471,0.0139195,0.059562508,-0.01210003,0.009722441,-0.0076741427,0.029401733,0.030875169,-0.0701891,-0.026990658,-0.0003721959,-0.002582698,0.015850592,-0.024311684,0.06969796,-0.0050565624,-0.05639239,-0.007166254,-0.042528704,0.032571852,0.028374793,0.015314798,-0.023307068,-0.024847478,0.03121004,0.014656217,0.0023524736,0.0165315,0.006044434,-0.006010947,-0.0122004915,0.00289664,0.0043282164,0.023865188,0.025227,-0.020215087,0.00934292,0.016844045,-0.015727807,0.02219083,0.019456044,0.034134585,-0.03895674,-0.010660082,-0.003041751,-0.007808091,0.013238594,-0.05130234,0.026053017,0.013216269,-0.029089186,-0.0043058917,0.05357947,0.041568737,-0.019110011,0.02676741,0.011190295,-0.004978426,0.0506326,-0.005196092,0.036791235,0.0024696786,-0.03911301,-0.045029078,-0.017357515,0.0040072976,0.036925185,-0.009928945,0.052909724,0.031544913,-0.0164422,0.018384455,0.021096915,0.05858022,0.02634324,0.023619616,0.003638939,0.01723473,-0.078538574,-0.0009739185,0.055097554,-0.009097347,0.01620779,0.01724589,0.032170005,-0.05456176,-0.000624745,-0.029089186,0.036835887,-0.024691205,-0.035161525,0.05223998,-0.033063,-0.0054779425,-0.0022059672,-0.015906405,-0.013238594,0.01336138,-0.039135337,0.044091437,-0.037126105,-0.018004933,0.005703981,0.014979927,-0.034112263,0.011832133,-0.0038482337,0.048087575,-0.011028441,-0.016297089,-0.020762045,-0.02634324,0.015325961,0.018897925,-0.02420006,-0.01579478,-0.015482234,0.049203813,-0.012390252,-0.038197696,0.025628846,0.0081318,-0.0013227431,-0.043176122,-0.01900955,-0.021922933,0.033732742,-0.036143817,-0.012725124,-0.0044091437,-0.007863903,0.01601803,-0.011631209,0.013439517,-0.0010555434,0.035630345,0.007685305,-0.0010360093,0.015828269,-0.012970696,0.0009013629,-0.02933476,0.013339055,0.009733603,0.0035384775,-0.016040353,-0.005377481,-0.07880647,0.01620779,-0.016553823,0.040296227,0.002466888,-0.039135337,0.0380191,0.015627345,-0.033040673,-0.021041105,-0.0071718353,-0.00023946814,0.0005807931,-0.013461841,0.0010290327,0.028330144,0.012434902,-0.0015780828,-0.01588408,0.00789181,0.036456365,-0.008031339,0.0059551345,0.005383062,0.032013733,-0.046748087,-0.0021948048,-0.0067978953,0.0302724,-0.011028441,0.07760093,0.005246323,-0.019980676,0.017770523,0.0053970153,0.017915634,-0.002415262,0.008075989,0.02728088,-0.018652353,0.0038984644,0.021978745,-0.01036986,-0.018038422,0.0004426585,0.028151546,-0.003948695,0.013071158,0.0011225177,-0.040876668,0.029200811,-0.007774604,0.013707414,-0.031076092,-0.047239233,-0.0039263703,-0.008628527,-0.00047684333,-0.025584197,0.0017748199,0.025427923,-0.022815924,-0.030205425,0.0043617035,0.053668767,0.024869803,-0.007925296,-0.035563372,-0.0074397326,-0.0046630884,-0.042216156,0.023619616,-0.0011846086,-0.0034547595,0.004264033,0.023329394,-0.018105395,-0.0010171727,0.0018208647,-0.024222385,0.009884296,0.058133725,0.02195642,0.0150134135,0.03690286,-0.009147578,-0.0066695274,-0.016877532,-0.008237843,-0.017435651,-0.017826336,-0.055945896,-0.05929461,-0.0073002027,-0.042818926,0.015058063,-0.01727938,-0.02536095,0.027303204,-0.0009815926,0.024222385,-0.040407848,0.04107759,-0.010542877,0.019980676,0.002023183,-0.005943972,-0.02411076,0.0326165,0.02415541,0.033710416,0.0068090577,0.020639258,0.020717395,-0.0014399482,0.013182782,-0.0126135,0.0327951,-0.015214337,-0.015348285,0.03158956,-0.020538796,0.0055979383,-0.020494146,-0.011463773,0.032862075,-0.029937528,0.0037449817,0.01466738,0.009610817,0.007434151,0.008198775,0.015069226,0.03817537,-0.047551777,-0.032393254,-0.017837498,-0.018205857,-0.0044175154,0.021822471,-0.009917783,0.00836621,0.015906405,-0.027124606,0.020482985,-0.018663514,0.019076522,-0.06143779,-0.0048807547,-0.0020566701,-0.01714543,-0.08318213,0.0042863577,-0.045609523,0.0034129005,0.018618865,0.010074057,-0.01654266,-0.020482985,0.057865825,-0.020628095,0.0016199418,0.01097821,-0.036724262,0.032906722,-0.018228183,-0.0008811311,0.008243425,0.024088437,-0.00009069441,-0.03391134,0.023061497,-0.0034156912,0.0066416217,-0.00425287,0.012903722,-0.006250938,0.03714843,0.0040240414,-0.024088437,-0.002471074,0.010861005,0.0017887729,-0.02873199,0.013004184,-0.004400772,-0.011095415,0.011843295,0.0277497,-0.01892025,-0.0019324886,-0.028553393,0.0056844465,0.0012557688,0.023865188,0.026544161,-0.052865077,-0.017859822,0.011100996,-0.051838137,0.024423309,0.0050398186,0.051123742,-0.010453577,-0.019288609,-0.02041601,0.001784587,-0.0040659,-0.0037952124,0.016832883,-0.021230865,-0.03250488,0.01667661,-0.013796713,0.023865188,0.008042501,-0.017536113,0.009225715,-0.031790484,-0.01943372,0.004794246,0.022302454,0.04420306,0.03980508,-0.05643704,0.0064127925,-0.004615648,0.027459478,-0.014656217,-0.024601907,-0.057955123,0.0016297088,-0.01620779,-0.012167004,-0.0013311149,-0.037527952,0.0019366746,-0.008656433,-0.059562508,0.0015557581,0.050945144,-0.027035307,-0.008165288,0.025249325,0.04357797,0.0032956954,-0.026410213,-0.020762045,0.015995704,-0.039492533,-0.033375543,0.0003559756,-0.014656217,0.023083821,-0.027660402,-0.0046937848,0.025427923,-0.0047830837,-0.023016848,-0.014142747,-0.07309133,-0.002877106,0.027258554,-0.034581084,0.015046901,-0.018752813,0.042774275,-0.021041105,-0.02821852,-0.0053188787,-0.030897494,0.030852845,-0.015270148,0.04460491,0.014968764,-0.00896898,0.010727056,-0.0251377,0.0034240629,0.023932163,-0.018339805,0.011653534,0.0033933662,0.010782868,0.03895674,0.018897925,-0.03326392,-0.014834816,0.0055616605,-0.028798964,0.006624878,0.0033766227,-0.02238059,-0.02625394,-0.034536432,0.03732703,-0.018228183,-0.010319629,0.036835887,0.0049309856,0.029491033,-0.028106896,0.01625244,-0.0065299976,0.007512288,0.02415541,0.019578831,0.04130084,0.032705802,0.005025866,-0.0054500364,0.020661583,0.05371342,-0.011396799,0.0054249214,-0.021532249,-0.006602553,-0.03817537,0.008622945,0.00012793145,0.050677247,-0.0066918526,-0.001287163,0.004724481,-0.040095303,0.014779003,0.04420306,-0.024601907,0.022615,-0.005268648,0.010397766,-0.0041691526,0.0054500364,-0.036634963,0.0046491353,0.008282493,0.0017929588,-0.006301169,0.009940107,-0.0022506167,-0.000328244,0.01597338,-0.0213983,-0.0074118264,0.009649886,-0.02092948,-0.008293656,0.01821702,-0.018909087,0.023240095,-0.029982178,-0.0009836856,-0.040340874,0.038041424,0.0017524951,0.031366315,-0.010760543,0.03312997,0.02172201,0.05858022,0.0043254257,0.023552641,-0.021844795,-0.0069820746,0.023396367,0.021264352,0.0164422,0.03638939,-0.01121262,0.0277497,0.026923683,0.020907154,0.01597338,-0.0139195,0.0075681,-0.028598042,-0.00019917889,0.0043840283,-0.0032873238,0.026745085,0.00014223326,0.00064253504,0.026611136,-0.005938391,0.002397123,0.017324029,-0.0019422558,0.013160457,0.0015892452,-0.012222816,-0.010676825,0.05433851,0.007685305,0.0011553073,-0.019936027,0.0029217554,-0.00040986898,-0.0013415797,0.039626483,-0.007623912,0.009275946,-0.007138348,0.003962648,-0.030986793,-0.013941824,0.014700866,-0.054159913,-0.006418374,-0.0068090577,-0.004704947,0.035920568,0.034223884,0.013238594,0.075770296,0.027950622,0.011184714,0.0041551995,0.015627345,0.024512608,-0.0071550915,0.0021292258,0.015024576,0.03596522,0.025338624,-0.035340123,-0.039961353,-0.03402296,-0.00161157,0.015951054,0.01083868,0.020829018,0.022949873,0.014656217,-0.030160775,0.005321669,-0.0027836207,-0.030808194,-0.015939891,0.042216156,0.014276696,-0.011497261,-0.011441449,-0.021074591,0.04625694,-0.01317162,0.016899858,-0.05849092,0.029870553,0.012401414,0.0105484575,0.01864119,-0.0059830407,0.020962967,0.035072226,-0.0053886436,-0.015281311,0.012747449,-0.017725874,-0.012814423,0.005988622,-0.011843295,0.020516472,0.0017524951,-0.000006954692,0.010894492,-0.011698184,-0.013339055,0.012914885,-0.005162605,0.024222385,0.00523237,-0.010487065,0.023753565,0.0058658356,-0.0201816,-0.015348285,-0.009493612,-0.009867552,0.00971686,0.06474186,-0.010353116,-0.012434902,0.007199741,-0.046792734,-0.015158525,0.01083868,0.019333258,0.021264352,-0.008410861,0.004568208,0.019322095,0.0065244166,0.022626163,0.000939036,-0.033509493,0.02050531,-0.013908337,-0.0053188787,-0.022045719,0.011290757,-0.028709665,-0.039626483,0.028285494,0.003817537,-0.005871417,0.03429086,0.006083502,0.015158525,0.0014469248,0.013707414,0.017826336,0.042394754,-0.038331646,0.0020120207,-0.04643554,0.009733603,0.019790916,0.021521086,-0.01962348,0.025338624,-0.023507992,-0.00001031758,-0.0046798317,0.016230114,0.006312331,-0.032683477,-0.009510356,-0.017737037,0.020114625,0.015850592,-0.02676741,0.009867552,0.02013695,-0.0065244166,-0.03830932,-0.0005766072,-0.00705463,0.011809808,-0.04746248,-0.0066918526,-0.0054081776,0.04719458,0.021554574,-0.013495329,0.0116200475,0.008533646,0.026320914,-0.014779003,0.0037226568,-0.012669312,-0.00053509703,-0.0036054517,-0.0025240954,0.026700435,-0.016754746,-0.011698184,-0.03493828,0.008488997,0.015571533,-0.005759793,0.01205538,-0.011279594,0.0033096485,0.00789181,0.028039921,0.016129652,-0.011687022,-0.024825154,0.015437584,-0.027615752,-0.008388535,0.009370826,-0.016587311,-0.017837498,-0.059875056,0.0047579682,0.010927979,-0.0063904678,0.00093833834,-0.01677707,0.013562303,0.008622945,0.009381988,0.05447246,-0.012513039,0.029870553,-0.020427173,-0.011039603,0.040095303,-0.0073839207,-0.020829018,0.0058825794,0.030450998,-0.021309001,0.005787699,-0.010916817,0.016743584,-0.015526883,-0.013819038,-0.017681224,-0.021543412,0.0003437667,0.011391219,-0.015247824,-0.0354071,0.019746266,0.016933344,-0.03942556,0.049918205,-0.0127809355,0.020817855,-0.008338305,-0.008885262,-0.021844795,0.009242458,-0.020404847,-0.011943757,0.00640163,0.020862505,0.0060555963,-0.02728088,-0.011675859,-0.038465593,-0.010224748,0.010520552,-0.017413327,0.032303955,0.003962648,0.00037917242,-0.03761725,0.003811956,0.001583664,-0.029513357,-0.0017399375,0.008193194,-0.005943972,-0.009917783,-0.0053105066,-0.021766659,0.035987545,0.019880215,0.00026475792,0.016408712,-0.010749381,-0.01695567,0.05929461,-0.012233979,0.0139195,-0.004877964,0.05268648,-0.026030691,0.006217451,0.012178167,-0.012914885,-0.00850574,0.008288074,0.022637326,0.02411076,-0.0019952771,-0.002284104,-0.0036277766,-0.023999138,0.034536432,0.045430925,0.016743584,-0.018060746,0.016375225,0.001812493,0.02069507,-0.03714843,-0.012713961,-0.021387137,-0.018775139,0.028620366,0.010810774,0.022023395,-0.021108078,0.07161789,0.008645271,-0.009582912,0.024735855,0.018306319,0.0026706017,0.030584946,-0.0007084629,-0.012077705,-0.014767841,-0.01023033,-0.017536113,0.009867552,0.030651921,-0.016710097,-0.016654285,0.01560502,0.010403347,0.020125788,0.006859288,-0.016174302,-0.03172351,-0.010872168,-0.0045961137,0.02163271,-0.0036221952,-0.04241708,0.0030110546,0.0083550485,-0.019132335,-0.03967113,-0.00020615538,0.03471503,0.0034408064,-0.008321561,0.0028380374,-0.011441449,-0.022905223,-0.03312997,-0.008779219,0.0251377,-0.05246323,0.017056132,-0.013986474,-0.031076092,-0.0076797237,0.0057067717,-0.004247289,-0.011608885,-0.025204675,-0.015113875,-0.038934413,0.0024487493,-0.010085219,0.019534182,0.014957601,0.0045486735,-0.0024864222,0.0027445524,-0.0075234505,0.026566487,-0.036612637,0.002369217,-0.00034830143,-0.0116200475,0.037103783,-0.01205538,0.027213905,0.021320164,-0.018585378,-0.002994311,-0.025070727,-0.03203606,-0.02821852,0.0026092085,0.028999887,-0.0005996296,0.027392503,-0.020036489,-0.022001069,0.010029407,0.0022729416,0.0007876461,-0.03185746,0.0064965105,-0.017446814,-0.02971428,0.009917783,0.03330857,-0.0058658356,-0.0072164848,0.0033766227,-0.015292473,-0.029781254,0.011340988,-0.007953202,-0.030116126,0.032125358,0.009164321,-0.01256885,-0.00882945,-0.01999184,-0.0012501876,0.030562622,-0.04255103,0.018228183,-0.045296974,0.033174623,-0.02364194,-0.0084331855,-0.02135365,0.006128152,-0.019322095,-0.037416328,-0.008427604,-0.025718145,0.008237843,-0.015125037,0.032951374,-0.0035719646,0.0034045288,-0.0006666039,0.02471353,0.013729739,0.023418693,0.021855958,0.03078587,0.022135017,0.023887513,-0.0150134135,0.03984973,0.0068034763,-0.008260168,-0.008226681,-0.042260807,0.007908553,0.035541046,0.014566918,-0.010676825,-0.014399482,0.017201241,-0.006479767,-0.0032901142,-0.0003364414,-0.014031123,-0.003251046,-0.0012906513,-0.034692705,0.009409894,0.021230865,0.012133517,-0.02191177,-0.041412465,-0.010386603,0.005330041,0.0088741,0.023463342,0.04134549,0.013662765,0.0088741,0.009700117,-0.013584628,0.041836634,-0.0063569807,0.00108624,-0.0060723396,0.0000030331394,0.026566487,0.0015501768,-0.008025758,0.002606418,-0.016576149,-0.015895242,0.01676591,-0.020025326,0.016453361,0.0077801854,0.023485668,-0.009287108,-0.018395618,-0.003153375,-0.017681224,-0.0189649,-0.005011913,0.022123856,-0.029022213,-0.029825903,-0.02826317,-0.015325961,0.012088868,0.014488781,-0.012267466,0.0275711,0.02462423,0.0024752598,0.014912952,0.015348285,-0.031232364,0.002144574,0.00084345805,0.023976812,0.030607272,0.029736605,-0.01648685,0.04011763,0.01387485,-0.02587442,-0.0046882033,-0.021186216,-0.015683157,0.011988406,-0.005854673,-0.05420456,0.00836621,-0.015805943,-0.013093483,-0.005433293,0.0056928187,0.03685821,-0.020962967,0.022414077,0.010007082,-0.009130835,0.008996886,0.015069226,-0.0066974335,-0.026521837,-0.026990658,0.033107646,0.004827733,0.0012599546,0.05630309,0.009114091,0.018350968,0.007283459,0.0012173981,0.019679293,0.0076741427,-0.0006547439,-0.002411076,-0.007863903,0.00048068038,0.0072890404,0.0035887081,0.013651602,0.035116877,0.009488031,-0.036612637,0.028017597,-0.010141031,0.00028743153,-0.035764296,-0.0074397326,-0.010336372,0.010358698,-0.0065132543,0.054070614,-0.008120638,-0.005634216,-0.009303851,-0.022157343,0.018752813,0.0010492646,0.011112158,0.012635824,0.022123856,0.00046637858,0.02172201,0.012970696,0.0033152297,0.0048361053,-0.033174623,-0.0021222492,0.026499512,0.02186712,0.030071476,0.045386273,0.013562303,-0.022302454,-0.0006181173,-0.021041105,-0.001036707,0.004760759,-0.04107759,-0.017681224,-0.021041105,-0.022670813,-0.013372542,0.0036026612,-0.017491464,-0.0032315117,-0.0129483715,0.037126105,-0.024825154,0.0146004055,-0.014265534,-0.005960716,0.014779003,-0.022414077,-0.009035954]},{"id":"class-VoiceChannel","type":"class","source":"main","text":"Class: VoiceChannel\nProperties: bitrate: number | null, rtcRegion: string | null, userLimit: number | null","meta":{"url":"/docs/classes/VoiceChannel"},"embedding":[-0.021789547,-0.034361396,0.054063916,-0.014845216,-0.040572785,0.037814926,0.02395111,0.00734186,0.02188893,-0.0063169813,0.0102612125,0.04924388,-0.016261412,0.033367574,0.03505707,-0.032522824,-0.057095073,0.03272159,-0.014124695,0.0036026048,-0.020845417,0.023888996,0.03411294,0.030634563,-0.030013425,0.0039566536,-0.020783303,0.033765104,-0.0112364,-0.033516645,0.02068392,-0.04857305,0.043902088,-0.030982401,-0.029268058,-0.03304458,0.05031224,0.016186876,-0.02503189,-0.023019401,-0.0009550008,-0.015491201,-0.035703056,0.040051028,-0.022621874,0.007068559,-0.014882484,0.018832928,-0.036498114,0.010410286,-0.043430023,0.016857706,-0.008851227,0.0065157455,0.03249798,0.019193187,0.030634563,0.019329838,0.0037144097,-0.03505707,0.020398196,-0.052722257,0.009068626,-0.02118083,0.006751778,0.021404441,-0.0421629,-0.0031476207,0.010814026,-0.0020342295,-0.011727099,-0.014335882,-0.012205376,0.024857972,-0.03997649,0.0026833194,-0.06996507,0.032249525,0.02292002,-0.040697012,-0.034038402,0.01691982,-0.07006445,0.0145594925,0.02444802,-0.0005462139,-0.052175656,-0.032398596,0.044225078,0.0010419602,-0.014112272,-0.023243012,-0.062163565,-0.0068884287,0.03195138,-0.057890132,0.03423717,0.0059070294,0.0021770913,-0.004512573,0.04087093,-0.013329637,-0.033690564,-0.010391652,-0.0060250456,0.0077145435,-0.0012539239,0.041492067,-0.06136851,-0.026385974,-0.050784305,0.052573185,-0.014311037,-0.0016025379,0.003153832,-0.029218366,0.01588873,-0.010192887,0.01231097,-0.012050091,-0.029069293,-0.032696743,0.03495769,0.033317883,0.04641149,-0.03505707,-0.0044131908,0.0029861245,-0.040175255,-0.0035591251,0.061964802,0.022149809,0.02377719,-0.00014771456,0.0052455165,-0.0011312489,-0.013130873,0.004394557,-0.014733411,-0.034883153,-0.008341894,0.03923112,0.07851194,0.0016817332,0.013826548,0.038013693,-0.066933915,0.03706956,-0.010981733,0.024013223,-0.04561643,-0.024112606,-0.053865153,0.004077776,-0.010453765,0.0064225746,-0.0025590917,0.03756647,-0.04198898,-0.03751678,0.026783504,0.0057331105,0.025715144,-0.033914175,0.013665052,-0.02032366,-0.0054908665,0.017851528,-0.06375368,0.010727067,0.02099449,0.0061182166,-0.059529938,-0.05048616,-0.024112606,-0.048076138,0.027727634,-0.01951618,-0.0050374353,-0.0070375022,0.02077088,0.015963266,-0.0029240106,-0.035529137,0.007869828,-0.002017148,-0.035479445,0.00054155535,0.033914175,-0.042088363,-0.0012810987,0.03577759,0.025441844,0.025938755,-0.024361061,0.0013043914,0.00048526464,0.0150315575,-0.022982134,-0.04623757,-0.006034363,-0.0037330438,0.022820638,-0.06241202,-0.006230022,-0.05381546,0.010031391,0.027553715,-0.0382373,0.015304859,0.057641678,0.028721455,0.0021755386,-0.0055529806,-0.070561364,0.028174853,-0.029069293,0.023404509,-0.03483346,-0.03075879,-0.06549287,-0.019851595,-0.004332443,-0.0022795792,0.036995023,0.03026188,-0.014186809,0.032150142,0.021255368,-0.01795091,0.021951044,-0.021242945,-0.048448823,-0.04911965,0.004087093,0.0005846468,0.015329705,0.013379329,-0.034485623,-0.040622473,-0.027677942,-0.036249656,0.006459843,0.03264705,0.0057144766,0.02328028,0.012404141,-0.018969577,-0.0075841043,0.00922391,0.0035001168,0.02175228,-0.00021118717,0.0063138753,0.01705647,0.013267524,-0.0004014109,0.04735562,0.027156185,0.00926739,-0.0026848721,-0.082338154,-0.052672565,-0.011565603,-0.004450459,-0.045492202,0.020360928,-0.011981767,0.029938888,-0.020721188,-0.0004406203,-0.025715144,0.03523099,-0.010602838,0.02668412,0.040150408,0.03411294,-0.010404074,-0.02685804,0.025255501,-0.063008316,0.041839905,-0.048672434,0.008602772,0.021590782,-0.013938353,0.04405116,0.02618721,0.046486024,0.022137385,0.03075879,0.031106628,0.02341693,-0.07493418,0.016721055,0.03985226,0.059877776,-0.037218634,0.020149741,-0.007472299,0.022000734,0.041665986,0.045194056,-0.033069428,-0.027528869,0.08551838,0.04238651,-0.01602538,0.020845417,-0.03366572,0.015478778,0.055405576,-0.045467358,-0.043256104,-0.045864884,-0.007087193,0.030783636,0.003163149,0.015304859,0.012161897,-0.039603807,-0.042088363,0.01759065,0.013590516,0.037044715,-0.012907263,-0.0006475371,-0.014584338,0.0066399733,-0.00090686255,-0.02444802,-0.037442245,0.036249656,0.019627985,0.02049758,-0.026609585,0.0000033301287,0.033168808,-0.030386107,0.011795425,0.065393485,-0.012404141,-0.019950977,0.043454867,0.039131742,0.034137785,-0.003366572,-0.035106763,0.026783504,0.026038136,-0.035156455,-0.0022531808,-0.03093271,-0.026112674,0.011031425,-0.047827683,0.050660077,-0.02202558,-0.059033025,0.03679626,-0.038162764,0.021516247,-0.011043847,-0.010795391,0.0038355319,-0.019466488,-0.049840175,0.017938487,-0.020373352,-0.045939423,0.02735495,-0.054014225,-0.0010908749,0.008043746,0.013988045,-0.024882818,0.0015839038,0.046709634,-0.03287066,0.020621806,0.0113668395,-0.005916347,0.008845015,-0.02041062,0.024659209,-0.00028514152,-0.014422841,0.026385974,-0.019329838,-0.019528603,-0.0116898315,0.036150277,-0.00413989,-0.020783303,0.009764302,0.028398464,-0.0062952414,0.009286025,0.0070250793,0.020646652,0.040274635,0.016969511,-0.031851996,0.039777726,0.021106295,0.022274036,-0.019665252,0.046436332,0.039181434,0.00041266906,0.01087614,-0.035603672,0.008248722,0.04231197,0.06797743,-0.0026584738,-0.030609718,0.0032050759,0.015789347,0.037889462,-0.02041062,0.009360561,-0.032622207,0.013329637,0.0039690766,0.019553447,0.01334206,-0.012286125,-0.025590917,-0.02601329,-0.006183436,0.018124828,0.045144364,0.011205343,-0.0063014524,-0.033740256,-0.023044247,-0.00259636,-0.015590583,0.037641007,-0.023292704,0.026236901,-0.006133745,0.021528669,0.01065253,0.009994122,0.021913774,-0.032398596,0.026783504,-0.01150349,-0.053865153,-0.0023339288,-0.04097031,0.056001868,-0.031976223,-0.042585272,0.048871197,0.04777799,-0.05147998,-0.00009496629,-0.020659074,-0.018013023,0.015453932,0.019466488,0.008751845,0.00072712055,-0.00027601855,0.011286091,-0.00967113,-0.037417397,0.03701987,0.020249123,0.0326719,0.020857839,0.0063853064,-0.020137317,0.043678477,-0.03962865,-0.0033945232,-0.037243478,0.034038402,0.016099917,0.026485356,0.01454707,-0.006751778,0.07766719,0.07329437,0.0073294374,-0.023963533,-0.012932109,0.032075606,-0.017826682,-0.004938053,-0.012994222,0.025889063,-0.0060281516,-0.039827418,0.033417266,0.057144765,-0.02802578,0.0023680914,-0.03831184,0.015913574,-0.008931975,0.044026315,0.06653638,0.003326198,-0.05466021,-0.038113073,-0.008497179,-0.0022438637,0.0061896476,-0.030237034,-0.03329304,-0.010087294,0.0020777092,0.013354483,-0.01920561,-0.043976624,0.01387624,0.002178644,-0.00049846387,0.0048324596,0.023205744,-0.0089878775,-0.0036243447,0.027330104,-0.0720024,0.0237275,-0.030162498,0.014720988,-0.02708165,-0.013466288,0.00095189514,-0.007136884,0.032199834,0.024187142,0.006571648,0.018932309,-0.014224078,-0.03841122,-0.0042051096,-0.01101279,0.023429353,-0.015839038,0.0025094005,0.010230156,0.0010520538,0.019640407,-0.0029643846,0.004590215,-0.03205076,0.03701987,-0.0070375022,0.045517046,-0.005537452,0.045715813,-0.019814325,-0.011578026,0.0007542954,-0.013068759,-0.03438624,0.0019596927,-0.022547336,-0.034137785,-0.041690834,-0.04511952,0.016621673,-0.005292102,0.005202037,-0.010565571,0.027379796,0.0042827516,0.031355083,0.025665453,-0.009584171,-0.008143129,0.006571648,0.014137118,0.009565537,-0.010577993,-0.009254968,0.03401356,0.008422641,-0.022038003,-0.018062714,0.011081115,-0.021690166,-0.023454199,0.022944866,0.031678077,0.040721856,0.026808348,0.005326265,-0.031355083,0.015466355,0.0032081816,0.0036460846,-0.013702321,0.010174253,0.02350389,0.036050893,-0.025864217,0.020522425,0.0061679077,0.014199232,-0.014832794,0.0059349807,-0.03401356,-0.004431825,0.017640341,0.024857972,-0.0047330773,-0.0427095,0.0035063282,-0.008683519,-0.0061088996,-0.029914042,0.010112138,0.021901352,-0.049219035,0.02919352,-0.017801836,0.0329452,-0.019478912,0.038932975,-0.053020403,-0.04777799,0.042287126,0.0022345467,0.012907263,0.018596895,0.0212181,0.005506395,-0.012453832,-0.048597895,0.014696143,-0.005301419,-0.014484956,-0.0491445,0.053467624,0.012292336,-0.010758123,0.007813926,0.0072238436,-0.026137518,-0.0054008015,-0.010838871,-0.0064349975,-0.02959105,-0.01759065,-0.02090753,0.01857205,0.0075282017,-0.017938487,-0.016596828,-0.04427477,0.027802171,0.028945066,0.016944665,-0.03734286,0.013515979,0.01652229,0.024112606,0.0027128235,0.009136951,-0.010397863,0.008435064,-0.043802705,-0.016062649,-0.017342193,0.015068826,-0.004664752,-0.014944598,0.020472733,-0.0068697943,-0.017118584,-0.025168542,0.0061896476,0.01580177,-0.017839106,0.028945066,-0.061219435,-0.03870937,-0.037790082,-0.002799783,0.01459676,-0.022534914,0.008994089,0.015317282,-0.013901086,0.021615628,-0.0028432626,0.0404734,-0.020783303,0.045243748,0.027280414,-0.01911865,0.022187077,-0.016000533,-0.0016662047,-0.0018323594,-0.00045265487,-0.0096276505,-0.00028145348,0.03388933,0.006183436,0.023441777,0.0063231923,0.016547136,0.008608983,0.04723139,-0.033789948,0.010379229,0.0022687092,0.016634095,-0.0329452,0.010863717,0.009900952,0.028845683,0.019727366,0.034734078,-0.014646452,0.010472399,0.042634964,0.008472333,-0.0008517365,0.024361061,-0.03093271,0.041268457,0.0068697943,-0.00855308,-0.004394557,0.0038790114,-0.036845952,0.03026188,-0.027603406,0.0036833528,0.004512573,-0.026361128,0.026634429,0.007627584,0.011397896,0.0059101353,0.026758658,0.015168209,0.01624899,-0.0023758558,-0.01710616,-0.009652496,-0.026361128,0.008360527,-0.032920353,-0.0011855986,0.007863617,-0.008074803,0.026485356,-0.04079639,-0.027827015,-0.0013067207,-0.046709634,-0.0063014524,0.0063231923,0.019690098,-0.03433655,0.011205343,-0.017640341,-0.049045116,0.041889597,0.03003827,-0.069617234,-0.022882752,-0.032522824,-0.017180698,0.013677475,0.0020373352,-0.06191511,-0.045467358,-0.037715543,-0.007416397,0.007056136,-0.0123296045,0.0027951244,-0.008876073,0.013814126,-0.022497645,-0.018982,-0.024249258,-0.009602805,-0.011335782,-0.038759056,0.0063853064,-0.01164014,-0.0001820713,0.010466188,0.012248856,0.015143363,-0.032572515,0.028870529,-0.0023339288,-0.0030761897,-0.003720621,-0.021342328,0.007602738,-0.0011902571,-0.009335715,-0.039554115,0.018037869,0.021367174,-0.0036057103,-0.04141753,-0.0043169144,-0.01208736,0.004167841,0.014770679,0.06012623,0.016957087,0.0032827184,0.024423176,0.0065343794,0.081244946,0.046163034,0.03719379,0.009571748,0.03329304,0.026261747,-0.019764636,0.018323593,0.05962932,0.005382167,0.03853545,0.022584604,0.010751911,-0.011143229,-0.060623143,-0.036995023,-0.032249525,0.0332185,-0.031131474,0.0003839414,0.053169478,0.012627751,0.008062381,-0.034808617,0.0031988646,-0.014472533,-0.0025435633,0.012192953,0.010335749,0.0096276505,0.0074101854,-0.016944665,0.051181834,-0.047082316,0.010435131,-0.0017764568,-0.01289484,0.03756647,0.051678743,0.014807948,-0.021702588,-0.006236233,-0.043355484,-0.013068759,0.010112138,0.0009045333,0.016944665,-0.0017686926,0.013801703,0.0003519139,0.04181506,0.0008633829,0.03344211,-0.009609017,0.023466622,-0.027553715,0.01060905,0.00016761041,-0.021392018,0.015640274,-0.020460311,0.0073977625,0.0060840542,-0.002493872,-0.020534847,0.03577759,-0.023466622,0.039007515,-0.012515945,-0.0078822505,-0.009596594,-0.0023960427,0.0028650025,-0.024833128,-0.008099649,-0.027056804,-0.016683787,0.05157936,-0.0077580228,-0.0039597596,-0.03689564,0.034883153,-0.052722257,0.006652396,0.046510868,0.0396535,-0.0006886876,0.02252249,0.002422441,0.012944532,0.016981933,-0.05182782,-0.0011087327,0.054113608,0.014447687,-0.037318017,0.00037986517,-0.021131141,0.022932442,0.036920488,-0.018112406,-0.032249525,0.015180631,0.007888462,-0.017044047,0.015652696,-0.01664652,0.01127988,-0.009385406,0.038336683,0.009236333,0.032696743,0.01643533,-0.005158557,-0.011397896,-0.037616163,-0.012037669,-0.044796526,0.04002618,0.0008579479,0.000031712043,-0.016087493,0.005599566,-0.009074837,-0.000636279,-0.024733745,0.006136851,0.032001067,-0.012484889,0.009006511,0.032299213,-0.026733812,0.036870796,-0.01320541,0.02126779,0.006217599,-0.028845683,-0.008608983,0.055008046,0.013963199,-0.0013525296,0.032920353,-0.025690299,-0.04579035,-0.018099982,0.0010675822,0.043405175,0.0140750045,-0.019218033,0.026485356,0.00922391,-0.017031625,0.041641142,0.0167459,-0.018770812,0.0025932542,-0.017752146,0.041740526,-0.013913508,0.015056403,-0.018932309,0.03048549,0.019329838,-0.006441209,0.020124895,0.012994222,-0.007994056,-0.0060467855,-0.010857506,0.048150677,0.011087326,-0.00049147604,-0.039057206,0.0013890215,0.017131006,-0.025864217,0.0069691767,0.024025647,0.007962999,0.0006587953,0.023342393,-0.017093739,0.0097891465,-0.040572785,0.010242578,0.0036554015,0.0044131908,0.03172777,0.009341927,-0.063654296,-0.008602772,-0.0015613876,0.0023913842,-0.008745634,-0.00792573,-0.03751678,0.02892022,-0.023329971,-0.004242378,-0.022137385,0.017131006,0.03868452,0.027653096,0.032224678,-0.014099849,-0.008571715,-0.0016040908,0.024895241,-0.0051647685,0.027031958,-0.021093871,0.016621673,0.0070002335,-0.029292904,0.011310937,-0.0040156622,0.028373618,0.014634029,-0.018050293,-0.006987811,-0.023454199,-0.000044280398,0.0027625146,-0.034808617,-0.018298747,0.008329471,0.040125564,-0.0072859577,0.0052113542,0.021690166,0.03567821,-0.0045746868,-0.008770479,-0.016137185,0.0012096678,0.038609985,0.04256043,-0.024187142,0.009640073,0.0108947735,0.024870396,-0.0040933043,-0.013950776,-0.01826148,0.041914444,0.0039380197,0.014745834,0.016211722,-0.017553382,0.031628385,0.0032671897,-0.012677442,-0.025379729,0.015739655,-0.031280547,-0.053070094,0.024100183,-0.02909414,-0.014870062,-0.017478844,-0.04695809,-0.0011242612,-0.009211488,-0.01655956,-0.01790122,-0.0050343294,-0.014037736,0.023168474,0.015988111,-0.017528536,-0.03401356,0.036423575,-0.033243347,-0.0024100184,-0.010683587,0.015764501,0.021640474,-0.017963333,-0.007615161,-0.013242678,-0.015627852,0.0044256137,0.034932844,0.019143496,0.027901553,-0.04087093,0.00014150317,-0.034361396,-0.014584338,0.024771014,-0.008944398,-0.0069940225,-0.01903169,-0.004323126,-0.04606365,-0.005742428,-0.023392085,-0.01275819,0.008298414,-0.007956787,-0.014422841,-0.027901553,0.022758523,0.008726999,-0.016485022,0.03885844,0.011006579,0.005624411,-0.022497645,0.003568442,0.032796126,0.010553148,-0.0100997165,0.0008633829,0.012447621,0.005326265,0.004394557,0.034808617,-0.020311236,-0.0056337286,0.0037765235,0.012391718,0.0145594925,0.0046305894,0.036100585,0.00975809,-0.019242879,0.053020403,0.026137518,0.00016644578,0.01342902,0.012143263,0.020572115,-0.006236233,0.023118785,0.0026103356,0.026261747,0.0007822466,0.017205544,-0.00926739,-0.001694156,-0.015590583,-0.005009484,0.0050156955,-0.01468372,0.029690431,-0.021056604,0.0016677575,-0.0012104441,0.010416497,0.010323326,-0.020919953,-0.028323928,-0.007403974,-0.0043883454,0.015143363,0.009447521,-0.002767173,0.0067890463,0.010466188,0.028845683,-0.06986569,0.021242945,-0.010627684,-0.00604368,0.0063853064,-0.0030715312,0.0032889296,-0.023628118,-0.014112272,-0.011932075,-0.037790082,0.018907463,-0.01839813,-0.02341693,-0.0045187846,-0.007994056,0.035653364,0.004714443,0.028795993,-0.0032206045,-0.008944398,0.01655956,0.039777726,-0.013963199,-0.0005271915,0.008938187,-0.03639873,0.00017624813,-0.007975422,0.033342727,0.008882284,0.003661613,0.0054008015,-0.022100117,-0.00827978,0.0022516279,-0.003630556,-0.008888495,-0.011025213,-0.0041895807,-0.024783436,-0.020932376,-0.0072549004,-0.06017592,-0.013901086,0.0034411086,-0.006366672,0.009658707,-0.045591585,-0.0037237268,-0.04897058,0.047305927,0.016994357,-0.0016770746,0.0069443313,-0.019975822,-0.010366806,0.02515612,0.014174386,-0.0032112873,-0.03689564,0.013988045,0.018994423,0.017876374,-0.02578968,-0.011509701,-0.016845282,-0.01490733,0.01655956,-0.012571848,-0.02668412,-0.006214493,0.000024299627,-0.015739655,-0.013416597,0.018472666,-0.026038136,0.002535799,0.011925864,0.04584004,0.006509534,-0.041665986,-0.020460311,0.003813792,-0.045715813,0.008186609,0.024323793,0.008174186,0.02216223,-0.00091928535,-0.014149541,0.0047951913,0.03500738,0.012807881,0.014099849,-0.01588873,-0.0058480212,-0.024211988,-0.017441576,0.026236901,0.022795793,0.010255001,0.011025213,-0.043256104,-0.02193862,0.009987911,-0.008354316,-0.0044908333,0.016298681,-0.019466488,0.024075339,-0.024559826,0.008354316,0.014472533,0.016075071,-0.02601329,-0.03689564,-0.0056834198,-0.0010023627,0.006056103,0.018050293,-0.00543807,0.013478711,-0.004633695,-0.018249057,0.015366972,0.030783636,-0.00003571548,-0.018783236,-0.012422775,0.010758123,-0.03195138,0.019801904,0.016385641,0.0006851937,0.021826815,-0.0030435799,0.0081928205,-0.026634429,0.011180498,0.050287392,-0.011087326,0.029640742,-0.018273901,-0.020932376,-0.020659074,-0.022994557,-0.0028122056,-0.011292302,0.01790122,-0.005730005,-0.032398596,-0.009907163,0.003689564,0.02852269,0.017255234,0.026708966,0.022174653,0.016733479,0.019168342,0.009913375,-0.029441977,0.0010411838,0.027851861,0.0012430539,-0.0052796793,-0.010795391,0.024224412,0.010428919,0.0064846887,0.031181166,-0.020311236,-0.01795091,0.022447955,-0.0110500585,-0.02802578,0.00476724,-0.006751778,0.0076710638,-0.0076524294,0.0070623476,0.009292236,-0.00019692039,-0.026112674,-0.030609718,-0.01781426,0.021628052,0.013168141,0.01853478,-0.04539282,0.04472199,0.036845952,-0.0112364,-0.017404309,0.011137018,-0.03003827,0.008584137,0.01454707,0.010975522,0.0028013356,0.039777726,-0.0116960425,-0.0074101854,0.00066811236,-0.017180698,-0.010130773,0.013130873,0.0030497913,-0.018348439,-0.013292369,0.009956854,0.022795793,-0.01777699,-0.008081015,0.010130773,-0.025640607,-0.004242378,-0.015404241,0.032622207,-0.034659542,-0.031007247,-0.022770947,-0.015106094,-0.01867143,0.023839306,0.000054592274,-0.021230523,-0.009099683,0.0050529637,-0.018348439,0.04638664,0.022435531,0.0038044748,0.017391885,0.0073977625,0.021988312,-0.006509534,-0.00003991302,-0.03172777,0.020857839,-0.003456637,-0.018236633,0.03478377,-0.019665252,0.01616203,-0.032348905,0.004754817,0.040299483,-0.022410685,-0.008043746,0.0026833194,0.00953448,-0.0351813,-0.008969244,0.044076007,-0.0039411252,-0.009341927,0.012074937,0.012503523,-0.017913641,0.029640742,0.0046989145,-0.013242678,0.011621506,0.036845952,-0.015764501,0.0037547837,0.006857372,-0.0031414093,-0.0025280346,-0.0042548003,0.019752212,-0.0143979965,0.013404174,0.015776925,0.019640407,-0.01275819,0.023019401,-0.02852269,-0.002818417,-0.0031771248,0.008919553,-0.016050225,0.0142365005,0.021416863,0.011447587,-0.010255001,-0.019416798,0.005434964,-0.011708465,0.021565937,-0.009242545,-0.0354546,-0.002493872,0.07533171,0.024112606,0.018149674,-0.008397796,0.03841122,-0.03383964,0.0013238019,-0.008776691,-0.033690564,0.014870062,-0.0023696444,-0.019777058,0.015242745,-0.05157936,0.010087294,-0.028795993,-0.009727033,0.03612543,-0.020311236,-0.018696276,0.015143363,-0.0212181,-0.017453998,0.06052376,-0.025938755,0.014795525,0.008472333,0.041492067,0.024050493,0.006441209,0.024783436,-0.0063325097,0.02193862,0.028497845,-0.019714944,0.027504023,0.0009945984,0.037790082,0.020832993,0.019491334,0.0064660544,0.028671764,-0.00087658205,-0.007900885,-0.02323059,-0.017404309,0.00845991,0.025814526,-0.013155718,-0.008857438,-0.025938755,0.006602705,0.015155786,0.019888863,-0.0065281685,-0.0044597764,0.00667103,0.0010031391,-0.025938755,0.018099982,0.015627852]},{"id":"class-VoiceConnection","type":"class","source":"main","text":"Class: VoiceConnection\nDescription: Voice connection using Discord's UDP-based protocol. Emits `ready`, `error`, `disconnect`.\nProperties: audioPacketQueue: Buffer[], channel: VoiceChannel, client: Client, currentStream: { destroy?: () => void; } | null, guildId: string, heartbeatInterval: NodeJS.Timeout | null, pacingInterval: NodeJS.Timeout | null, playing: boolean, remoteUdpAddress: string, remoteUdpPort: number, secretKey: Uint8Array | null, sequence: number, sessionId: string | null, ssrc: number, timestamp: number, udpSocket: dgram.Socket | null, voiceWs: VoiceWebSocket | null\nMethods: connect(server: GatewayVoiceServerUpdateDispatchData, state: GatewayVoiceStateUpdateDispatchData) -> Promise — Called when we have both server update and state update.; destroy() -> void — Disconnect and remove all listeners.; disconnect() -> void — Disconnect from voice (closes WebSocket and UDP).; getWebSocketConstructor() -> Promise VoiceWebSocket>; play(urlOrStream: string | NodeJS.ReadableStream) -> Promise — Play a direct WebM/Opus URL or stream. Fetches the URL (if string), demuxes with prism-media WebmDemuxer,\nand sends Opus packets to the voice connection. No FFmpeg or encoding; input must be WebM with Opus.; playOpus(stream: NodeJS.ReadableStream) -> void — Play a stream of raw Opus packets\nUses the same queue and 20ms pacing as play(). Use this for local files (MP3 → PCM → Opus) or other Opus sources.; sendAudioFrame(opusPayload: Buffer) -> void; sendVoiceOp(op: number, d: unknown) -> void; setupUDP(remoteAddress: string, remotePort: number, onReady: () => void) -> void; stop() -> void — Stop playback and clear the queue.","meta":{"url":"/docs/classes/VoiceConnection"},"embedding":[-0.034173597,-0.025018707,0.015397919,-0.0031098672,-0.00735536,0.044050626,-0.013452796,-0.0046880958,0.00710494,0.022421326,0.043794382,0.017785644,0.015071791,0.025507899,0.02518177,-0.028163515,-0.06620406,0.05036354,0.032216825,-0.019637588,-0.03547811,0.01136208,0.0073378887,0.026882296,-0.018333074,-0.0065458626,-0.0032409008,0.053671416,-0.022339795,-0.066157475,0.039787665,-0.023131821,0.005293763,-0.0029759216,0.006394446,0.007815434,-0.009830441,0.0024910967,-0.055861134,0.0051132273,0.017296452,-0.04822041,-0.008473515,-0.024133502,-0.0122647565,0.0070758215,-0.06079965,0.007500953,-0.016679138,-0.0010730206,-0.018461196,0.03790078,-0.015409566,0.03995073,0.026090272,0.009475195,-0.00089248526,-0.0032176059,-0.028885657,-0.031145262,-0.0035029682,-0.023201706,-0.032985557,-0.0032409008,0.009585845,0.01676067,-0.031424798,0.02809363,-0.011338785,0.049012437,0.032915674,0.017366337,-0.0364332,0.010674881,-0.016795613,0.027697619,-0.032682724,0.03848315,-0.036130365,-0.034732673,-0.034220185,0.009341249,-0.055069108,-0.023073584,-0.0032962263,0.018589318,-0.112467706,0.031308327,0.028559528,0.038553033,-0.013406206,-0.03692239,-0.07626745,-0.039927434,0.008380335,0.010174041,0.056140672,-0.0077979625,0.012078398,0.017249862,0.051994182,-0.013382912,-0.057398595,-0.060147393,0.022130141,0.004970546,0.0075533665,0.014046815,-0.04999082,0.0041901674,-0.05064308,0.042117152,0.0004953803,0.008601637,0.0046473294,-0.015083438,0.05488275,-0.03815702,0.019462876,-0.023842314,-0.060240574,-0.026462989,0.0066565135,0.008601637,0.05888947,-0.02441304,0.024645988,0.0013110653,-0.021978725,-0.0053345286,0.055814546,0.021699185,0.0264164,-0.035501406,-0.015432862,0.012276405,-0.04253646,0.002549334,-0.03128503,0.00367768,0.03885587,-0.032612838,0.044959128,0.013080078,0.027627734,0.060054213,-0.038366675,0.008112444,-0.059215598,0.034639493,-0.045331847,0.00042549564,-0.026835708,-0.0035903242,-0.031727634,0.01266077,0.0066739847,0.07156189,-0.035547994,-0.032216825,0.015281444,0.019870536,0.01407011,-0.028792478,0.0057975147,-0.00860746,0.028978838,0.016364656,-0.02832658,0.005998433,0.038925752,0.0019975363,-0.022234967,0.031634454,-0.010570054,-0.08204459,-0.007436892,0.0054597384,-0.022479564,-0.059634905,0.032682724,-0.0005663569,-0.0033340803,-0.030586183,-0.05059649,-0.019241575,0.007687312,0.022689218,0.03491903,-0.020138428,0.018204952,0.02204861,-0.0076348986,0.038692802,0.022782398,-0.00016160826,0.030027106,-0.0017107181,0.0036893275,-0.060193982,-0.021140108,-0.014943669,-0.0093121305,-0.049851052,-0.0025624374,-0.03433666,0.032123648,-0.0076116035,0.021338115,-0.001796618,0.031005492,0.010628291,0.008659873,-0.016096765,-0.09979529,-0.01202016,-0.026579464,0.018566024,-0.015130028,-0.025274951,-0.03412701,-0.0034796735,0.01471072,-0.005785867,0.021338115,0.0036602088,0.018833915,-0.04759145,0.02923508,-0.016923733,-0.019194985,-0.054836158,-0.031121965,-0.033824172,0.0040620454,-0.06303596,0.028699297,0.023877257,0.03885587,0.03265943,-0.04759145,-0.063548446,0.015782284,0.01990548,0.04703237,0.01867085,-0.027115246,-0.057258826,0.032869082,0.012521001,0.0382502,0.035128687,0.0015956996,0.0027851947,0.0029569943,-0.01907851,0.017727407,0.008240566,0.0065458626,0.008991825,-0.0009914886,-0.021244936,-0.014827195,0.005031695,-0.047335207,-0.0382502,0.057072468,0.0027313253,-0.00488319,0.018857209,-0.01111166,0.019206632,0.05628044,-0.012951956,-0.035454813,-0.014536008,0.004848248,0.02081398,0.04849995,0.0027225898,-0.013382912,-0.023329828,-0.02431986,0.036689445,0.009294659,0.07510271,-0.028000452,0.019462876,-0.008933588,0.040556394,-0.02427327,0.0065283915,0.03580424,-0.021093518,0.07417092,0.033218507,0.06802107,-0.0073029464,0.010290516,-0.012288052,0.06769493,0.009160713,-0.0025202155,0.008741406,0.001003864,0.050084002,0.040812638,0.00010082318,0.018041888,-0.012124987,0.014734015,0.021536121,-0.039694484,0.015456156,-0.00042039988,0.013173257,0.012788892,0.00965573,-0.02126823,-0.018833915,0.003782507,-0.02272416,0.017704112,0.012288052,0.0382502,0.009929445,-0.008193975,-0.009189832,-0.030399825,0.016189946,0.023737488,-0.054463442,-0.0048220414,0.03147139,0.03743488,0.010441932,-0.062290523,0.031774223,0.0053345286,0.0150484955,0.017494459,-0.01202016,-0.028792478,0.037015572,0.011461084,0.03429007,-0.020697506,0.009172361,0.010430285,0.0245994,-0.031937286,-0.00068683515,-0.029537914,-0.021151755,0.044749472,-0.029747568,0.043072242,-0.009702319,-0.021466237,0.018507786,-0.016283125,-0.0027022066,-0.052693028,0.020010306,-0.018519433,0.008351216,-0.060892828,-0.0012499162,-0.023155116,-0.055395238,0.03333498,0.035850827,-0.03920529,0.01798365,-0.03314862,-0.008741406,-0.049944233,0.013289732,-0.025624374,0.074729994,0.023795726,0.050922617,0.025577784,0.00004035657,-0.02377243,-0.02532154,-0.036153663,0.039018933,0.008042559,-0.014990258,0.046985783,-0.010738942,-0.055535007,-0.01599194,-0.017669171,-0.009923621,0.029817453,-0.016248181,0.0084618665,-0.004073693,0.053718004,0.02404032,-0.03929847,0.036596265,-0.03366111,0.028023746,0.064247295,0.0131150205,0.02932826,0.018996978,0.04335178,-0.02618345,0.027045362,0.008683168,0.046613064,-0.019160043,-0.0063187378,-0.0646666,0.040463217,0.060287163,0.024855642,0.013010194,-0.0332418,-0.0016655843,0.020161724,0.0751493,0.017773997,0.0060508465,0.040090498,-0.035874125,-0.047661334,-0.008572518,0.08404794,0.037551355,0.037015572,-0.05628044,-0.026230041,0.0043561435,-0.02541472,0.0037883306,-0.02176907,-0.00765237,-0.030819133,0.0138371615,-0.01602688,0.027557848,0.025577784,-0.04882608,0.011431965,0.010447755,0.011146602,0.0014937845,-0.02636981,0.010488522,-0.0047579804,-0.023073584,0.01366245,0.014629188,-0.037458174,-0.065225676,-0.020511147,-0.026462989,-0.018600965,0.023784077,-0.027744208,0.0065749814,0.013464443,0.008240566,-0.010389519,0.03953142,0.030027106,-0.023760783,-0.0013511033,0.0034796735,-0.0064526834,0.0024736256,0.054137312,0.022712512,0.02090716,0.008945236,0.028582824,0.012847129,-0.04034674,-0.007378655,0.010337105,0.013429501,0.006720574,-0.00082114467,-0.046846014,0.0074077733,-0.021617653,-0.022968756,0.009661553,-0.010261397,0.0036019715,0.0048511596,-0.05884288,-0.021070223,0.05073626,-0.023970436,0.018566024,-0.020779038,-0.008042559,0.03442984,0.063082546,0.02190884,0.023213353,-0.024645988,-0.008927764,-0.0020368465,0.010966067,0.0066739847,0.0010417182,-0.026975477,0.009713967,0.025065295,0.011292196,-0.000625686,-0.0207208,0.0005787323,-0.032542955,-0.0064177406,0.0066739847,0.028047042,0.0024357715,-0.0006831953,0.005209319,-0.031681042,0.014011873,0.0057276296,-0.0031855756,-0.002234853,-0.021932134,-0.017750703,-0.033684403,0.031005492,-0.014920373,-0.034546316,-0.0022727072,-0.009521784,-0.019590998,0.015316387,-0.007186472,-0.02618345,0.03647979,0.012905367,0.0054568266,0.024785757,-0.00076363544,0.013487739,-0.0065283915,-0.0036369138,-0.022386385,-0.0066565135,0.053065747,0.029025426,0.0025784525,-0.014862137,-0.02048785,-0.04717214,0.018437902,-0.017296452,-0.0030166877,-0.0010526376,-0.014058463,-0.01407011,-0.019649236,0.008269684,-0.018962037,0.029072016,-0.021279877,0.00043896298,-0.0015796844,-0.013860457,-0.008444396,-0.009411134,0.007827082,-0.0069302283,-0.024669284,0.020103486,-0.017051855,-0.017179977,0.01580558,0.009515961,-0.025484605,-0.008630754,0.010075037,-0.035711057,0.014419534,0.047568154,0.024576103,0.03228671,-0.0031156908,0.024086911,-0.025834028,-0.019975364,0.024878938,0.008939412,0.005471386,-0.0015127116,-0.028769182,0.040230267,-0.010768061,0.0108204745,0.016096765,-0.019113453,0.028745888,-0.025857322,-0.003698063,0.027045362,0.00047936506,0.038063843,-0.031005492,-0.027557848,0.0068079303,0.008409454,-0.030190172,0.0056548333,0.011239782,-0.029770862,-0.0040212795,-0.0122647565,-0.028186811,0.035687763,0.008735582,0.03419689,-0.034080416,-0.029141901,0.00502296,-0.013930341,-0.009690672,-0.009277188,0.011874568,0.005119051,-0.012800539,-0.07002442,0.035082098,-0.017669171,0.026695939,-0.044143807,0.012917014,0.008176505,0.025740847,0.029887337,0.012905367,0.019160043,-0.047987465,-0.027744208,-0.026020387,-0.022526154,-0.012066751,-0.01024975,0.05488275,0.011298019,0.013417854,-0.04859313,-0.038692802,0.002737149,-0.017016914,0.018635908,-0.012322994,-0.000397105,0.016329715,0.02222332,-0.015945349,0.004455147,0.0017587638,0.054044135,-0.026882296,-0.004513384,-0.024645988,0.04134842,0.032869082,0.006493449,0.045564797,-0.030260056,-0.00985956,-0.03338157,0.022200026,0.026742527,0.0031156908,0.006871991,-0.034173597,0.0001087398,0.017727407,-0.002217382,-0.0027910185,-0.039647896,-0.0033806702,-0.004865719,0.01026722,0.023294885,0.017226567,0.011903686,-0.0032874907,0.033311684,0.03543152,0.0012062383,0.008595812,-0.063315496,0.022642627,-0.036293432,-0.024296565,-0.034895737,-0.034010533,-0.016376304,0.0040678694,-0.018927094,-0.03529175,-0.007576661,-0.037854187,0.021594359,-0.05096921,0.010278868,-0.0032729313,-0.010261397,-0.017436221,-0.042792704,0.010791356,-0.011618324,0.020744095,0.034732673,-0.0029147724,-0.011694033,-0.023166763,-0.0264164,-0.018030241,0.013266437,-0.033940647,0.038366675,-0.014233175,0.014512713,0.017506106,0.013010194,-0.029933928,0.02012678,0.00547721,0.009772204,-0.016341362,-0.018076831,0.0036689444,-0.016644195,0.01366245,-0.027091952,-0.0105234645,-0.024506219,0.018065182,0.0049821935,-0.031774223,0.019392991,-0.021932134,0.0075242477,-0.05902924,0.003112779,-0.0051918477,-0.03161116,-0.003634002,0.0155376885,0.0014471947,0.020324787,-0.023923846,-0.0069942893,-0.0074893055,0.030539595,0.001693247,0.018076831,-0.024902232,-0.022095198,0.024576103,0.0010002241,-0.009824618,0.00058018824,-0.053298697,0.031215146,0.010803003,-0.020301493,-0.026812412,-0.030516298,-0.0037708594,-0.036759328,-0.0327992,-0.009504313,-0.0011618324,-0.035944007,0.008601637,-0.008613284,0.019742414,-0.008869528,-0.038366675,-0.01635301,-0.057398595,-0.003555382,-0.023655955,-0.014419534,-0.009201479,0.007186472,0.004009632,-0.10855416,-0.003363199,0.0038989813,-0.0070117605,-0.008636579,-0.0030574535,0.017680818,0.05488275,0.022363089,-0.023923846,0.031657748,-0.01530474,0.010948596,-0.043095537,0.02436645,-0.016795613,-0.015456156,0.021023633,0.023784077,-0.007838729,0.025880618,0.0077571967,-0.022013666,0.046123873,0.031121965,0.020872217,0.010220631,0.012742302,-0.00056016917,0.010960244,0.013778924,0.008490985,-0.013709039,0.015514393,0.01798365,0.018845562,-0.0023498714,-0.006889462,-0.02090716,-0.033777583,0.01375563,-0.02751126,-0.038180318,-0.02522836,0.011199016,-0.01004592,-0.020755742,0.022363089,-0.021943782,-0.016318066,-0.025857322,-0.027255015,-0.009294659,-0.02026655,0.027814092,0.026975477,-0.036945686,0.045005716,-0.016318066,-0.01115825,0.028047042,0.033265095,0.01716833,-0.02613686,0.0054830336,-0.017296452,-0.013615861,0.004801658,0.01854273,-0.01461754,0.021419646,0.0005914717,0.045564797,-0.050410133,-0.008659873,0.02946803,0.033125326,0.010977714,0.014349649,-0.005159817,0.010762237,-0.021419646,-0.0020310227,-0.0028973012,0.033078738,-0.014105053,0.0025857321,0.005156905,0.010383695,0.023108525,0.03037653,-0.04076605,0.0014122524,-0.019800652,-0.022619333,-0.019695826,-0.012847129,-0.0071922955,0.013743982,-0.019579351,0.032170236,-0.033591226,-0.0111815445,-0.03939165,0.008304627,0.012975251,-0.0071922955,0.020685857,0.0021358498,-0.014046815,-0.010593349,-0.04181432,-0.007477658,0.02841976,-0.05478957,-0.024622694,0.020709153,0.010581701,-0.04335178,0.0073437123,-0.044563115,0.007838729,-0.008793819,-0.0052500847,-0.0473585,0.038553033,-0.01061082,-0.028606119,-0.0127539495,-0.004734685,-0.014116701,-0.0017325571,0.009772204,-0.015001906,-0.014955316,0.02532154,-0.0019873448,0.018880505,-0.008141562,0.018006947,-0.011793035,0.014536008,-0.000023226637,-0.010896183,-0.017587638,0.015025201,0.013126668,0.032636132,0.013918694,0.041022293,0.046939194,-0.027255015,-0.005517976,-0.018193305,-0.002277075,0.051994182,-0.0110010095,-0.0087588765,0.01621324,-0.023434654,0.043514844,0.031028787,0.034523018,-0.05082944,-0.00055834925,-0.024529513,-0.006790459,-0.010599173,-0.027161837,-0.00543062,-0.002782283,0.022887224,-0.004446411,0.02222332,-0.005069549,0.040882524,0.021792365,0.0011865832,0.012835481,0.0069244048,0.014477771,-0.0131150205,0.011961923,0.0034767615,0.0746834,-0.0036136191,0.019649236,-0.0014981523,-0.025764143,-0.024529513,0.029677683,0.016562663,0.044749472,-0.023923846,-0.040789343,-0.05669975,-0.0010817562,0.01416329,-0.009591669,0.021116814,0.0216293,-0.006079965,-0.0032263417,0.015735695,-0.008578341,0.012847129,-0.02923508,0.042699523,0.033311684,0.0029700978,0.0017019826,0.009772204,-0.024389744,0.010704,-0.014722368,0.008525928,-0.0346162,-0.016644195,-0.014477771,-0.011565911,0.0049909293,-0.014139995,-0.007850376,0.041697845,0.007233062,-0.0140817575,0.021664243,-0.009020944,-0.049711283,0.022095198,0.0044114687,-0.032542955,-0.0007337889,-0.0029628181,0.03671274,-0.015246502,0.022782398,0.00355247,0.024902232,0.025042001,0.028349875,-0.0145709505,0.01694703,-0.011414493,0.03470938,-0.014803899,0.010744765,0.039018933,0.020348081,0.031308327,-0.003992161,0.012684065,0.0070699975,0.017843882,-0.009096652,0.008258036,-0.004717214,0.035128687,0.014536008,0.007169001,-0.021990372,0.005721806,-0.012451116,-0.023492891,0.009690672,0.017960357,-0.053298697,0.028349875,0.0137206875,0.037038866,0.0068428726,0.017051855,0.036596265,0.0013205288,0.020185018,-0.030353235,0.002674544,-0.04030015,-0.009277188,0.03501221,-0.043281898,-0.013511034,-0.030260056,0.0030079521,0.015491098,-0.025205066,-0.03515198,-0.032240123,-0.0043299366,0.018426254,-0.008368688,0.013639155,-0.036689445,-0.022165082,0.043747794,-0.018996978,-0.002591556,0.010837945,0.022980403,-0.0016379216,-0.031774223,0.015584278,-0.019462876,-0.009661553,0.014431181,-0.020569384,0.016644195,-0.0051947595,-0.008840409,0.029677683,-0.026486285,-0.0026570729,0.0029555385,0.025577784,-0.003997985,0.034895737,-0.024692578,-0.021873897,-0.017447868,0.008671521,-0.027837388,-0.038226906,0.008205623,-0.010651587,-0.0048395125,0.0024546986,0.05013059,0.0004968362,0.075242475,0.0022188378,0.008852056,-0.05502252,0.023492891,-0.0029409793,0.01621324,0.028000452,-0.039904136,0.023644308,-0.0093121305,-0.017179977,-0.015712399,-0.024110205,-0.0050287833,-0.009743086,-0.0076581934,0.0123928785,0.009125771,-0.016248181,0.009929445,0.029910631,0.05059649,0.01835637,0.0010242469,0.014384591,0.020848922,0.014396239,-0.022526154,-0.0069302283,-0.0182166,-0.008555046,-0.01120484,0.025694259,-0.010447755,-0.0138488095,-0.0013751262,-0.02048785,0.0048133056,0.00200336,0.010896183,-0.003133162,-0.0047579804,0.0091083,0.011210663,0.025251655,-0.022665923,-0.047428384,-0.008741406,-0.002237765,0.0437245,0.035641175,0.012847129,0.012672418,-0.011950276,0.0055005047,-0.058050852,0.017937062,-0.0027429727,-0.0025129358,-0.01561922,0.009178185,0.0021868073,-0.01780894,-0.0014617541,-0.014407886,0.025717553,0.0050084004,0.023516186,-0.01762258,-0.005814986,-0.002528951,0.036316726,0.015188265,0.022200026,-0.026486285,0.005928548,-0.018461196,0.026230041,0.02946803,-0.014384591,-0.011024305,-0.04153478,0.0056315386,0.0014726735,0.030050403,-0.019008625,0.049524926,0.0064002695,0.001796618,-0.0010904918,0.032869082,-0.009807146,-0.0013299923,0.023807373,-0.018414607,-0.03242648,-0.008723934,-0.008042559,-0.038949046,0.0031593689,0.019882184,-0.0093121305,-0.0047579804,-0.009807146,0.04635682,-0.039321765,0.05227372,0.0060275514,0.005660657,-0.0026075712,0.010238102,0.010540935,0.012474411,-0.0025609813,0.0003992889,-0.03538493,0.00017725951,-0.01757599,0.02381902,-0.039787665,-0.033591226,-0.00019782453,-0.005366559,0.018298132,-0.007203943,-0.0050637256,-0.014873784,0.03060948,0.0053083217,-0.007867848,0.014605893,0.0110534225,-0.0048220414,0.009626611,0.010634115,0.025507899,-0.03123844,0.020033602,0.0019130924,-0.018006947,0.004548326,0.01521156,0.012602533,0.0382502,-0.023993732,-0.016655842,0.041325126,0.017051855,0.0067962827,0.012684065,0.014349649,-0.022153435,-0.004219286,-0.0070525263,0.010208983,-0.0019422111,0.042210333,0.019789005,-0.021780718,-0.041907497,-0.030982196,-0.005451003,0.030632773,-0.017972004,0.010337105,0.018798972,-0.013813867,0.025391424,0.0034185243,0.02951462,0.028000452,-0.0068195774,-0.023283238,-0.0039572185,-0.018006947,-0.0043357606,-0.026090272,0.02186225,-0.026230041,-0.023690898,-0.033707697,-0.01853108,-0.02363266,-0.027674323,0.007017584,-0.021524474,0.0028157693,-0.03247307,-0.029864043,0.01516497,-0.016702432,-0.017937062,-0.022922168,-0.030889018,-0.008135739,0.03228671,-0.053065747,-0.0033923176,-0.018449549,-0.0182166,-0.011676561,-0.043375075,0.011035952,0.0076290746,0.0076348986,-0.002278531,-0.014139995,-0.022735808,-0.021757422,0.008817114,-0.006184792,-0.0052588205,0.007669841,-0.027441375,0.014139995,0.022782398,0.0023091054,0.031168556,0.01420988,-0.012241462,-0.014594246,-0.032240123,-0.00946937,-0.02613686,0.023923846,0.03424348,-0.00055616535,-0.012218167,0.0387161,0.008263861,-0.017680818,-0.00041312023,-0.0016248182,0.042233627,-0.022549449,0.01266077,0.028163515,-0.006266324,-0.020406319,-0.023970436,0.03501221,0.02381902,0.006708927,0.011950276,-0.046426706,0.012124987,0.0055325353,-0.03524516,-0.026695939,0.0040824288,-0.026975477,0.0093645435,0.017249862,0.018251542,-0.01721492,-0.0035233514,-0.0033399041,0.019987011,-0.0057975147,-0.02148953,-0.0013285364,0.008025087,-0.008391982,-0.018624261,0.022141788,-0.0028128573,-0.0117872115,0.003654385,0.017692465,-0.032356594,-0.028186811,-0.014268117,0.026206745,0.016772317,0.014466124,-0.047940873,0.018600965,0.0048511596,-0.07221414,0.017005267,-0.025531193,0.0073437123,0.030958902,-0.013580918,-0.0040503982,0.030958902,-0.0032001347,-0.01215993,0.026882296,-0.013010194,0.016120061,-0.004932692,0.031005492,-0.028186811,0.011327138,-0.03624684,-0.014652482,0.057817906,-0.014501066,-0.00013030577,-0.028699297,0.0029147724,0.031937286,0.015654163,0.033917353,0.00075489987,-0.018100126,-0.019101806,-0.004650241,0.014594246,-0.005247173,-0.020522794,0.0063595036,-0.026859002,-0.022013666,0.023096878,0.011682385,-0.009888679,0.045238666,0.019113453,-0.002571173,-0.01475731,-0.010488522,0.016457837,0.032007173,0.018111773,0.00543062,-0.012602533,0.00063223776,-0.019229928,0.006662337,0.01031381,0.0058033383,-0.017016914,-0.005934372,0.030027106,0.014966964,-0.0058120736,-0.02172248,0.0019989924,-0.008467691,-0.00054997765,0.016877145,0.014407886,-0.014512713,0.014244822,0.01812342,-0.020010306,-0.0061323782,0.023353122,0.0069826418,-0.0028987573,0.009923621,0.012369584,0.0072621806,0.01854273,-0.00765237,-0.028769182,0.014873784,0.010581701,-0.0029700978,0.036409903,-0.031774223,0.010546759,-0.015467804,-0.0013511033,0.0058790464,-0.021373058,-0.014221528,0.000396741,-0.041651253,-0.0063129137,0.022596039,-0.012998546,0.017878825,0.014116701,-0.018239895,-0.008397806,0.0067788116,-0.014233175,0.0058120736,-0.0078037865,-0.015316387,-0.012427821,-0.00031611888,-0.02655617,0.031657748,0.0062605003,-0.0031244264,0.020208312,0.015922055,0.016073471,-0.014407886,0.00435032,-0.01215993,-0.01712174,-0.01921828,-0.025298245,-0.021827307,-0.028815772,0.013231494,-0.002610483,0.025973797,0.028443055,0.010086685,-0.0062779714,0.015863817,-0.0071631772,-0.017156683,-0.014547655]},{"id":"class-VoiceManager","type":"class","source":"main","text":"Class: VoiceManager\nDescription: Manages voice connections. Use `getVoiceManager(client)` to obtain an instance.\nProperties: client: Client, connectionIds: Map, connections: Collection, pending: Map void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData | undefined; state?: GatewayVoiceStateUpdateDispatchData | undefined; }>, shardId: number, voiceStates: VoiceStateMap\nMethods: getConnection(channelOrGuildId: string) -> VoiceConnection | LiveKitRtcConnection | undefined — Get the active voice connection for a channel or guild.; getVoiceChannelId(guildId: string, userId: string) -> string | null — Get the voice channel ID the user is currently in, or null if not in voice.; handleVoiceServerUpdate(data: GatewayVoiceServerUpdateDispatchData) -> void; handleVoiceStatesSync(data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }) -> void; handleVoiceStateUpdate(data: GatewayVoiceStateUpdateDispatchData) -> void; join(channel: VoiceChannel) -> Promise — Join a voice channel. Resolves when the connection is ready.\nSupports multiple connections per guild (Fluxer multi-channel).; leave(guildId: string) -> void — Leave all voice channels in a guild.\nWith multi-channel support, disconnects from every channel in the guild.; leaveChannel(channelId: string) -> void — Leave a specific voice channel by channel ID.; registerConnection(channelId: string, conn: VoiceConnection | LiveKitRtcConnection) -> void; storeConnectionId(channelId: string, connectionId: string | null | undefined) -> void; tryCompletePending(channelId: string, pending: { channel: VoiceChannel; resolve: (c: VoiceConnection | LiveKitRtcConnection) => void; reject: (e: Error) => void; server?: GatewayVoiceServerUpdateDispatchData; state?: GatewayVoiceStateUpdateDispatchData; }) -> void; updateVoiceState(channelId: string, partial: { self_stream?: boolean; self_video?: boolean; self_mute?: boolean; self_deaf?: boolean; }) -> void — Update voice state (e.g. self_stream, self_video) while in a channel.\nSends a VoiceStateUpdate to the gateway so the server and clients see the change.\nRequires connection_id (from VoiceServerUpdate); without it, the gateway would treat\nthe update as a new join and trigger a new VoiceServerUpdate, causing connection loops.; uploadStreamPreview(channelId: string, conn: VoiceConnection | LiveKitRtcConnection) -> Promise — Upload a placeholder stream preview so the preview URL returns 200 instead of 404.","meta":{"url":"/docs/classes/VoiceManager"},"embedding":[-0.040698268,0.0027246997,0.0115052685,-0.002071125,-0.00786056,0.021208791,-0.017110702,-0.03217236,-0.009626978,0.024588536,0.022433508,0.0008265364,-0.00256425,0.03587006,0.006995015,-0.014213776,-0.09646997,0.039897494,0.018747583,0.0047045597,-0.043689404,0.035163492,0.023081195,0.048941553,-0.035563882,0.034221403,-0.013083269,0.031748418,-0.02798006,-0.06038794,0.08752012,-0.022916328,0.016133284,-0.010445418,-0.01041009,0.048564717,-0.007842896,0.0008361045,-0.052144658,0.011617142,-0.00030341907,-0.011022448,-0.010145127,0.011646582,-0.0052639255,0.0114169475,-0.040015254,0.015250075,-0.02203312,-0.0040715933,-0.050872836,-0.0029469738,-0.032337222,0.03657663,0.042299822,-0.010822253,0.010003814,-0.025954567,-0.02892215,-0.018936,0.002277207,-0.014178447,-0.023328492,0.026661135,-0.0021329497,0.03820173,-0.033962328,0.034056537,-0.008060753,0.019077314,0.008508246,0.005102004,-0.024659194,-0.0008751129,-0.039120268,0.02724994,-0.013766283,0.05007206,-0.0035122277,-0.036859255,-0.05073152,-0.01022756,-0.039120268,-0.013177478,0.005628985,0.016604329,-0.079229735,-0.0021152855,0.03229012,0.022610148,-0.00029035495,0.0001481215,-0.06359105,-0.010298217,0.032007493,-0.010180456,0.06712388,-0.014484627,-0.020337358,0.0054847277,0.067924656,-0.010610283,-0.061801076,-0.040227223,0.0610003,-0.0010583787,-0.020561105,0.013801612,-0.06919648,0.00158536,-0.064438924,0.026072329,-0.011522933,0.026425611,-0.015579806,-0.0389554,0.042441133,-0.02245706,0.011157873,-0.02124412,-0.04912997,-0.014048911,0.03681215,0.0025156734,0.058456656,0.010339432,0.028827941,0.019371716,-0.05219176,-0.0032119367,0.03177197,0.0053699105,0.019748552,-0.012918403,-0.027697433,0.021903582,-0.026849553,0.00965053,-0.04766973,-0.025295105,0.0035505,-0.009980261,0.039497104,0.0043395,0.032478537,0.045785554,-0.034574687,0.048423402,-0.046562776,0.0055023916,-0.05492382,0.0043689404,-0.04246469,-0.01689873,-0.021138133,0.018488508,-0.008584791,0.068395704,-0.052474387,-0.048423402,0.018158777,0.002866013,0.042182058,-0.0071657686,-0.019689672,-0.024894716,-0.019701447,0.034786656,-0.036411762,-0.023163626,0.03657663,-0.01483791,-0.037824895,0.011193202,0.014731925,-0.083657555,-0.0076250373,-0.006794821,-0.036341105,-0.04197009,0.043194804,0.008908634,-0.016062627,-0.044254657,-0.040651165,0.011181425,-0.012941956,0.04387782,0.027720986,-0.03365615,-0.006329664,0.042606,0.015485597,0.06773624,0.02009006,0.014720149,0.022115553,-0.023446254,0.008337492,-0.05553618,-0.0032914253,-0.059916895,-0.0018223545,-0.060340837,-0.006836037,-0.048988655,0.027509015,0.043524537,0.009968485,-0.006135358,0.033821017,-0.006694724,0.008943963,0.008172627,-0.0893572,0.030688567,-0.03304379,-0.023834866,-0.05417015,-0.003267873,-0.011087216,0.02451788,0.036859255,-0.026731791,0.006500418,0.017322673,0.028780837,-0.06368525,0.04703382,-0.02339915,-0.012718209,-0.015815329,-0.031748418,-0.020525776,-0.0060470374,-0.08332782,0.022197984,0.03587006,0.05647827,0.0032708172,0.00008767689,-0.023929074,0.021797597,0.013000836,0.039355792,0.008561239,-0.0043689404,-0.058880597,0.038625672,0.02251594,0.043783613,0.03398588,0.0048841457,0.025224447,0.006470978,0.036553074,0.009208925,0.0134247765,0.042323373,-0.005949884,-0.010945903,0.0039744405,-0.016592553,0.013730955,-0.03198394,-0.024235254,0.048140775,0.024894716,-0.019984074,0.008508246,-0.014331537,-0.0044572614,0.050354686,-0.027838746,-0.03219591,-0.019230403,0.012812418,0.014366866,0.034904417,0.021456089,-0.03577585,-0.0064886417,-0.010309992,0.054970924,0.0066476194,0.04321836,-0.022009566,0.03134803,-0.0035976046,0.042888626,0.004148138,0.023375597,0.007318858,-0.045714896,0.078428954,0.053086746,0.060670566,-0.012824194,0.0076485896,0.06439182,0.03881409,0.010292328,-0.051579405,-0.0035769963,0.00006371065,0.05671379,0.0020240205,-0.0013196614,0.014649493,-0.04164036,-0.01083403,0.0023405037,-0.0069184704,-0.0032884814,-0.047080927,0.010451306,0.014390418,-0.0051520523,0.000079672805,0.023587568,-0.0075720446,-0.030947642,-0.0033944664,0.013083269,-0.014449298,-0.054641195,-0.023022313,-0.04597397,-0.044984777,0.037094776,0.051155463,-0.07937104,0.0004633167,0.029134119,0.008090194,0.021185238,-0.051909134,0.028710179,0.0019062593,0.0016604328,-0.005417015,-0.002863069,-0.029887792,0.045149643,0.031183165,0.02977003,-0.018865343,-0.015544478,-0.027720986,0.017440433,-0.013130373,0.020584656,-0.02534221,-0.045903314,-0.020466896,-0.0058880597,0.02188003,-0.017487537,-0.035563882,0.007501388,-0.053604897,-0.0060588135,-0.04178167,0.0096740825,-0.020160716,0.016945835,-0.033067342,0.03177197,-0.018217657,-0.034315612,0.06019952,-0.009850724,0.0012026362,0.0384137,-0.011964537,-0.049930748,-0.025248,-0.005664313,-0.020678865,0.051767822,0.028568866,0.050967045,0.028898597,0.0018120504,-0.019383492,-0.012600448,-0.053604897,0.010362986,-0.019913418,0.021762269,0.03879054,-0.01504988,-0.021456089,-0.01138162,-0.019948747,-0.0043718843,0.02494182,0.012906627,0.014249104,0.017499313,0.087567225,0.06133003,-0.061801076,0.025177343,0.0015632799,-0.0001687297,0.007995985,0.028027164,0.04637436,0.011399284,0.045879763,-0.022645477,0.02491827,0.04126352,0.04847051,-0.042982835,-0.0038861195,-0.034692448,0.046656985,0.041805223,0.0028365727,-0.01724024,0.019548358,0.0008567127,0.012777089,0.017746612,0.019972298,-0.00025171455,0.018182328,-0.037000567,-0.067170985,0.015108761,0.05869218,0.02266903,0.012635776,-0.028592417,0.0034268508,-0.000054418553,-0.023834866,0.003164832,-0.025507074,-0.0115641495,-0.03019397,0.036411762,0.019548358,0.03881409,0.00057445385,-0.047952358,-0.017016493,0.012364926,-0.030617911,0.00033764343,0.010304105,0.051202565,-0.03914382,-0.028686628,0.023434477,0.031088956,-0.051202565,-0.04927128,-0.036058478,-0.003365026,-0.009703523,0.03311445,-0.006600515,0.015956642,-0.023375597,0.007224649,-0.041569702,0.029793583,0.01830009,-0.017675955,0.0006543106,0.040698268,0.013730955,0.012953731,0.007630925,0.0061530224,0.024706298,0.0008971931,0.015191194,0.042370476,-0.051720716,0.007489612,0.034786656,0.031112507,0.042346925,0.012871299,-0.018676925,-0.017887926,0.010039141,-0.013071492,0.014461075,-0.010839918,0.03914382,-0.014802583,-0.049506806,-0.02282212,0.020254925,-0.026684687,-0.014720149,-0.015591582,0.016757417,0.057608776,0.030311732,0.04705737,-0.004819377,-0.029251881,-0.030735672,-0.006900806,-0.027226388,0.02215088,-0.023705328,-0.012341374,0.016368806,0.00094356155,0.005949884,-0.009703523,-0.0031736642,0.010739821,-0.03462179,-0.0027188116,0.025012478,0.01683985,-0.0042894515,0.016180389,0.0055818805,0.0059322203,0.020855507,-0.0058380114,0.015497373,-0.012930179,-0.028686628,0.02093794,-0.021927135,0.02482406,0.0040922016,-0.026260747,0.017016493,0.0001379094,-0.021915358,0.028451104,-0.0112638585,-0.006170687,-0.0137545075,0.0037065337,0.014873239,0.04281797,0.016427686,0.02309297,0.014567059,-0.018806463,-0.016533671,-0.034763105,0.021279449,0.0057702987,0.01031588,0.0071775448,0.0043866043,-0.02278679,0.01356609,-0.018252986,0.019218627,-0.014661268,-0.044348866,-0.02251594,-0.027179284,-0.009450336,-0.051155463,0.004554414,0.01526185,0.009214814,0.013577865,-0.0011893881,0.011952762,-0.016121507,-0.0045720786,-0.010080358,-0.010451306,-0.0017943862,-0.01049841,-0.053887524,0.02278679,0.0022080224,-0.021232344,-0.0021859421,-0.020266702,-0.03323221,0.013554313,0.06816018,0.014437523,0.008472918,0.024211701,0.019607238,-0.021138133,-0.011210865,-0.009185373,0.010109798,0.018382523,-0.009091164,-0.002762972,0.047481313,-0.03153645,-0.003450403,0.0040922016,-0.011358067,0.018747583,-0.0108458055,-0.0038095745,0.033420626,-0.003945,0.011617142,-0.014614164,-0.04479636,-0.0041775783,0.014849687,-0.03650597,0.0106043955,0.03250209,0.015344284,-0.023069417,0.015591582,0.002974942,0.036317553,0.03810752,0.013271687,-0.018606268,-0.028380448,0.0006429025,-0.017452208,-0.006211903,-0.006606403,0.024141045,-0.008343381,-0.029982,-0.034339163,0.03219591,0.0016854571,0.0014087183,-0.023705328,0.06344973,-0.019312836,0.0067418283,0.010527851,0.032784715,-0.008784985,-0.027414806,-0.01726379,-0.011575925,-0.0076485896,-0.029510954,-0.03742451,0.026025224,-0.02357579,0.025389314,-0.042959284,-0.039850388,0.02418815,0.0025613059,-0.004233515,-0.032690506,0.011952762,0.010156903,0.037165433,-0.013212806,-0.014932119,0.0066358433,0.04385427,0.0005229333,0.021491418,-0.003556388,0.051767822,0.022445284,-0.014979224,0.028356895,0.001682513,0.0018326585,-0.037141882,0.01687518,0.001666321,0.00813141,0.026237193,-0.050260477,-0.004321836,0.02136188,0.0064886417,0.019995851,-0.03565809,0.023363821,0.009362015,-0.013342343,0.024800507,0.00038934796,-0.011558261,-0.042558897,0.017887926,0.023717105,0.0075720446,0.007666254,-0.057090625,-0.0140253585,-0.018523837,-0.032643404,-0.0140253585,0.013636746,-0.004554414,-0.017004717,0.014472851,0.014366866,-0.023328492,-0.04385427,0.022044895,-0.035304807,0.0020122444,0.009568097,0.009049947,-0.031088956,-0.019018432,0.034268506,-0.032572746,-0.0067771566,0.038861193,-0.0176053,-0.00767803,0.016050851,0.00084052054,-0.026237193,0.004424877,-0.029157672,0.022798568,-0.021091029,0.00572025,-0.009097052,-0.019666119,-0.015956642,0.025200896,-0.044348866,0.0036034926,-0.042558897,-0.038484357,-0.00989194,-0.014484627,-0.015038105,-0.0050077946,-0.01626282,-0.033915225,0.030641463,-0.00013928942,-0.048070118,0.02494182,-0.037071224,0.007601485,-0.034880865,0.010769261,0.015379612,-0.029605165,-0.011081329,-0.025883911,-0.018653372,0.021762269,-0.012247164,0.0046721753,0.0048929774,0.013895821,-0.0072599775,-0.006512194,-0.027414806,-0.024659194,0.03440982,0.029228328,-0.038460806,-0.010374761,-0.03544612,0.037730686,0.005205045,-0.026048776,-0.022044895,-0.04385427,0.01231782,-0.04503188,0.0038184067,-0.0058762836,-0.01556803,-0.021550298,0.021173462,-0.0054523433,0.002068181,-0.037754238,-0.040250774,-0.01905376,-0.04173457,0.0032060484,-0.047716837,0.0013660298,-0.03820173,0.0027114514,0.011840888,-0.08252704,-0.005796795,0.011952762,-0.017051822,0.01162303,-0.0044454853,0.009038172,0.027603224,0.00042651632,-0.014472851,0.03198394,-0.0039037836,-0.0015868321,-0.022833895,0.019548358,-0.018182328,-0.02724994,0.02670824,0.03923803,0.0029646382,0.012965508,0.033302866,-0.051202565,0.048234984,0.024164597,-0.018182328,0.011346291,-0.026449164,0.01872403,0.037000567,-0.026449164,-0.0111755375,0.0023964404,0.010951791,0.0029528618,0.026119433,-0.0024950653,0.005010739,-0.013554313,-0.047198687,0.0009001371,-0.013024388,-0.03007621,0.010133351,0.0032884814,-0.010945903,-0.009886052,0.031960387,-0.012694657,0.0047781602,-0.008784985,-0.0063826567,0.0067359405,-0.009962597,0.023340268,0.02388197,-0.04093379,0.06952621,-0.0029793582,0.010563179,0.03987394,0.046256598,0.021043925,-0.019948747,-0.009079388,-0.028074268,-0.018924223,-0.0023037035,0.011575925,0.013507209,-0.00411281,0.020867284,0.0057526343,-0.0022139105,0.007960657,0.04609173,0.0023169515,0.019725,0.013707403,0.012906627,-0.013919373,-0.019077314,0.014378642,0.015379612,0.013789835,-0.012447358,-0.010015589,0.0025362817,0.02215088,-0.007101,0.01572112,-0.032996688,0.001077515,0.009520993,0.0035769963,-0.037754238,-0.0035328357,-0.017393328,-0.02082018,-0.009520993,0.02892215,0.0022168544,0.034456924,-0.032337222,-0.011316851,0.00073490344,0.01899488,0.018158777,0.01805279,0.0008125522,-0.019371716,0.004698672,-0.011681911,0.02066709,-0.06335552,-0.02776809,0.01941882,-0.009880165,-0.027909404,0.01572112,-0.0057467464,0.035399016,0.010362986,-0.02063176,0.00013349335,0.0099154925,0.026873104,-0.009144157,-0.00015925361,0.001953364,0.0118644405,-0.013177478,0.0063473284,0.0024700412,-0.029016359,0.029251881,0.0023360876,0.036270447,-0.0028336288,0.01335412,-0.016404135,0.014437523,-0.014614164,-0.012541567,0.009261918,-0.00615891,0.004625071,-0.015874209,-0.015238298,0.022351075,0.016274597,0.0015051352,0.013907597,0.025883911,0.0012387006,0.04964812,-0.001672209,0.012753537,-0.005729082,-0.032996688,0.024564985,0.035563882,0.00012456927,-0.005043123,-0.025200896,-0.015085209,0.016274597,-0.0090146195,-0.029228328,-0.015332508,-0.0072482014,-0.017840821,0.015191194,0.042794418,0.0037212537,0.037754238,0.03304379,-0.026331402,0.014307985,0.023811314,0.024847612,-0.0018002742,-0.008449365,-0.014496403,0.052521493,0.00376247,0.0039891605,0.0063767685,-0.018064568,-0.013483657,0.016663209,0.002654043,0.04312415,0.010092135,-0.032243013,-0.06453314,0.029204777,0.023917299,0.01729912,0.011711351,0.04411334,0.0136956265,0.001575056,-0.0059616603,-0.017322673,0.01945415,-0.03532836,0.0080548655,0.020619985,0.017346224,0.01726379,0.010027366,-0.00752494,0.0033296978,-0.0019298116,0.014979224,-0.012035194,-0.05007206,0.008796761,-0.023905523,0.012788866,-0.021644507,-0.03963842,0.028898597,0.015485597,0.0064886417,-0.005711418,-0.043406777,-0.058456656,0.009874276,-0.0048723696,-0.0015147034,-0.022881,-0.00044822856,0.022139104,0.0034768994,0.016804522,0.020372687,0.009479776,0.03829594,0.009067612,0.025695493,-0.010675052,-0.01878291,0.024423672,-0.000394868,0.008920411,0.032101702,0.011193202,0.043642297,-0.014849687,0.0133658955,-0.018205881,-0.003547556,-0.0106515,0.00046736473,-0.0144139705,-0.0012644609,0.02788585,-0.0064238734,-0.020867284,-0.023929074,-0.028827941,-0.026496269,0.03956776,0.025789702,-0.03217236,0.018688701,0.0029661101,0.027532566,0.026307851,0.013471881,0.034032986,0.009827171,-0.00016182964,-0.029157672,-0.010421866,-0.010445418,-0.026472716,0.016722089,-0.05647827,-0.008190291,-0.022881,-0.010922351,-0.0022875112,-0.011640694,-0.020431567,-0.0079665445,-0.0021005652,-0.02066709,0.0013461576,0.04175812,-0.010233448,-0.013189253,0.028733732,-0.0142962085,-0.020360911,0.0074425074,0.013954702,0.0013682379,-0.046868954,0.01225894,-0.046986718,-0.0005328694,0.011234418,-0.003844903,0.016922284,-0.016368806,0.0047869924,0.032996688,-0.014696597,0.021385433,0.017652404,0.018323641,0.0046132947,0.038625672,0.005949884,-0.03914382,-0.004710448,0.00085229665,-0.018182328,-0.016533671,0.011393395,-0.0139664775,-0.007831119,-0.010610283,0.045102537,0.0057850187,0.04272376,-0.026048776,0.02136188,-0.032031044,0.0053551905,0.011087216,0.009750627,0.007566157,-0.041687462,0.029911343,0.0021344216,-0.008243283,0.009632866,-0.018488508,-0.03577585,0.014402194,0.016333478,0.025624836,0.013836941,-0.0013093572,-0.029793583,-0.008390485,0.060435046,0.010056806,0.018276537,0.0041922983,0.050354686,0.01138162,-0.0038095745,0.006317888,-0.0118055595,-0.030876985,-0.024682747,0.02536576,-0.0036241007,-0.016215716,0.013848716,-0.028757283,0.023163626,0.01572112,-0.00004328644,-0.010257,0.0029381418,0.017287344,0.012659328,0.015685791,-0.03601137,-0.024470776,0.014943896,-0.01268288,0.05341648,0.026590478,0.015850658,0.017475761,-0.019242179,-0.008696664,-0.06288448,0.019124418,-0.020843731,0.0038920075,0.016969388,0.020643538,0.02136188,-0.047457762,-0.007407179,-0.0018326585,-0.014991,0.006323776,-0.011522933,-0.046562776,-0.014531732,-0.0087143285,-0.0108752465,0.0066829477,0.017087149,-0.028757283,-0.0048605935,-0.021138133,0.008896858,0.032690506,-0.026001671,-0.021067478,-0.04861182,0.0011864441,0.005037235,0.018688701,0.0032119367,0.02536576,0.006417985,0.005885116,-0.028380448,0.031253822,-0.025483523,-0.013153926,0.003161888,-0.018229432,-0.005196213,-0.006417985,0.0056554815,-0.03742451,0.0033826903,-0.029440299,0.020337358,-0.015462045,-0.01689873,0.030476596,-0.05374621,0.045714896,0.0052904217,0.010257,0.018029239,-0.00012337325,-0.0015956642,0.012883075,0.012529791,0.0043689404,0.012812418,0.018158777,-0.0029337257,0.024447223,-0.02030203,-0.012977283,-0.009827171,-0.0020976213,0.028545313,-0.006794821,-0.031936835,-0.013036164,0.01377806,0.012518015,0.017381553,0.015756447,0.0031883842,-0.0006322304,0.01787615,0.007825231,-0.012294268,-0.048423402,0.0075602685,-0.028521761,-0.031819075,-0.035493225,0.02946385,0.030759225,0.005090228,-0.030994747,-0.02597812,-0.00068779895,0.00667706,0.011375732,0.016003747,-0.030123314,-0.026778895,0.008149074,-0.0072423136,-0.004822321,0.015391388,0.03662373,0.005702586,-0.020172492,-0.033185106,-0.037919104,0.013401224,0.013801612,-0.012447358,0.004854705,0.018335419,0.023387372,0.024082163,0.011693686,0.017369777,0.011216754,-0.0040038805,-0.025507074,-0.026284298,-0.030335283,0.01678097,-0.04239403,0.05059021,-0.009797731,-0.009968485,-0.030900538,-0.037518717,-0.039921045,-0.029298985,-0.0027055633,-0.0063649924,-0.023257837,-0.009102941,-0.015426717,0.01645124,-0.019795656,-0.015579806,0.01608618,-0.057655882,-0.004728112,0.039426446,-0.040863134,0.013389448,-0.000062744635,-0.0054111267,-0.023175403,-0.0431477,0.0004246763,-0.0011731959,0.02418815,0.01268288,-0.02903991,-0.037094776,-0.0053463583,-0.01325991,-0.009827171,-0.009238366,0.004663343,-0.0029072296,0.00090160914,0.0022197985,-0.021385433,0.022539493,0.018535612,-0.0022301027,-0.02461209,-0.00767803,0.006730052,-0.023163626,0.01241203,0.006317888,0.0070892237,-0.013471881,0.029558059,-0.0044219326,-0.010492522,-0.008531799,0.004595631,0.027603224,-0.009344351,-0.004934194,0.022810344,-0.005001907,-0.017558195,-0.00022853032,0.014790806,0.012294268,0.0009339935,0.016910508,-0.05793851,0.023022313,0.02651982,-0.0036034926,-0.037377402,-0.007083336,-0.02861597,0.018523837,0.0005453815,0.013012612,-0.0017973302,-0.015603358,-0.008184403,-0.012553344,0.01225894,-0.020549329,0.010021478,-0.013707403,0.0021123413,-0.024729852,0.022433508,0.002969054,0.028215582,0.004736944,0.007978321,-0.021632731,-0.009838948,-0.008531799,0.014637716,0.030476596,-0.0061412463,-0.026048776,-0.009833059,0.012459135,-0.03144224,0.0015205914,-0.023846641,-0.0013123013,0.007000903,0.013142149,-0.017016493,0.035917163,0.0072423136,-0.003859623,0.020561105,-0.020290254,-0.029134119,0.01298906,0.005001907,-0.033373524,0.03271406,-0.02239818,-0.017699508,0.013719179,-0.017016493,0.022574821,0.00256425,-0.014461075,0.022433508,0.033962328,0.02576615,0.0051844367,-0.0035858285,-0.042794418,-0.014013582,0.030123314,0.015850658,0.01414312,-0.016427686,0.0014985112,-0.016168611,0.024541432,0.010080358,-0.010492522,0.004910642,0.0060823658,-0.0030823993,-0.017887926,-0.029487403,0.018111672,0.023799537,0.009603425,-0.0025613059,-0.01556803,0.00002272423,-0.020537551,0.028262686,-0.00496069,-0.006182463,-0.0194777,-0.0063708806,0.021091029,0.013672074,0.008302164,-0.011958649,0.0019298116,0.0051285,0.01483791,0.0003242113,0.012671105,-0.021161687,0.027344149,0.014425746,-0.009179485,-0.018629821,0.021173462,0.025224447,0.0023154796,0.0022330466,-0.006235455,-0.0020490447,0.0051756045,0.0049518584,-0.024447223,0.003741862,0.02798006,-0.007984209,0.034975074,-0.01766418,-0.0048782574,-0.007566157,-0.022327522,0.0030853434,-0.022881,-0.014932119,-0.018017463,-0.04983654,-0.0041834665,0.045479372,0.0034003544,0.013766283,0.009897828,0.018429628,0.026001671,0.008119634,0.010828142,-0.010298217,-0.0031942723,-0.018205881,0.022374626,0.018194104,-0.013789835,0.05440567,-0.0043041715,-0.0032796492,0.023929074,0.00030746713,0.0069479104,-0.007301194,-0.014096015,-0.0038242948,-0.0062825596,-0.003735974,-0.022080224,-0.015591582,-0.02776809,0.0140253585,0.009350238,0.0463037,0.01830009,-0.00096196175,-0.021927135,0.024211701,-0.02245706,-0.018653372,-0.020890836]},{"id":"class-Webhook","type":"class","source":"main","text":"Class: Webhook\nDescription: Represents a Discord/Fluxer webhook. Supports creating, fetching, sending, and deleting.\nThe token is only available when the webhook was created; fetched webhooks cannot send messages.\nProperties: avatar: string | null, channelId: string, client: Client, guildId: string, id: string, name: string, token: string | null, user: User\nMethods: avatarURL(options: { size?: number; extension?: string; }) -> string | null — Get the URL for this webhook's avatar.\nReturns null if the webhook has no custom avatar.; delete() -> Promise — Delete this webhook. Requires bot token with Manage Webhooks permission.; edit(options: APIWebhookUpdateRequest | APIWebhookTokenUpdateRequest) -> Promise — Edit this webhook. With token: name and avatar only. Without token (bot auth): name, avatar, and channel_id.; fetch(client: Client, webhookId: string) -> Promise — Fetch a webhook by ID using bot auth.; fromToken(client: Client, webhookId: string, token: string, options: { channelId?: string; guildId?: string; name?: string; }) -> Webhook — Create a Webhook instance from an ID and token (e.g. from a stored webhook URL).; send(options: string | WebhookSendOptions, wait: boolean) -> Promise — Send a message via this webhook. Requires the webhook token (only present when created, not when fetched).","meta":{"url":"/docs/classes/Webhook"},"embedding":[-0.04749759,0.019452902,-0.025163168,-0.035253767,0.060290273,-0.01303545,0.019136252,0.0066813277,0.04192454,0.04272672,0.04336002,-0.014766473,-0.007868768,-0.024360986,0.01545255,0.009256752,-0.05868591,0.024297656,-0.012560474,0.015800865,-0.015357554,0.015399775,0.029364066,0.03202393,-0.01309878,0.04580879,-0.015653094,0.04580879,-0.033923835,-0.02619756,0.042684503,-0.0040979865,-0.0006323117,0.0020226056,-0.010259479,0.04173455,0.004351307,0.03276278,-0.01311989,0.008977044,-0.038504712,-0.038378052,-0.0132993255,0.0332272,0.00052016455,0.048257552,-0.06919871,0.0068449304,-0.041164577,0.048004232,-0.05167738,0.009710618,-0.0032245587,0.06995867,-0.021585016,-0.014006511,-0.038694702,0.0033406639,-0.08705781,0.008897882,0.000532039,0.013088224,-0.009568126,-0.035844848,0.009341192,0.048130892,-0.044964384,0.01780632,0.006248572,0.04690651,0.088071086,0.012644914,0.0011122352,0.004588795,-0.034303814,-0.018977925,-0.01810186,0.025120948,-0.012761019,-0.038462494,-0.030862879,0.003791891,-0.11053217,-0.029068526,-0.011821622,-0.01805964,-0.029258516,-0.059234772,0.045133267,-0.038546935,-0.006053304,-0.024698747,-0.060670257,0.018967371,0.02583869,-0.0064543947,-0.0032826113,-0.033269424,-0.015114789,0.031622842,0.048806414,0.011811067,-0.072322994,0.01068168,0.011314982,-0.03554931,-0.024002116,-0.01595919,-0.005029467,-0.009288418,-0.07004312,-0.022946613,-0.009900609,0.03316387,0.0125076985,-0.04686429,0.01087167,0.012518254,-0.010850561,-0.013278215,-0.04863753,-0.038441382,0.059994735,-0.019590117,0.02600757,0.004061044,-0.021247255,0.04703317,-0.060121395,0.0011406018,0.044077765,0.022059992,0.018809047,-0.007314629,-0.055730507,-0.028414113,-0.0146714775,0.011768848,-0.011800513,-0.015758645,0.024170997,-0.04270561,0.02151113,-0.030229578,-0.009378135,0.003308999,-0.020086203,0.028540775,-0.05653269,-0.013721526,-0.027274173,0.0122016035,0.04348668,-0.00021967635,-0.034852676,0.034134936,-0.016845811,0.065314464,-0.048215333,-0.019706223,-0.0066760504,0.017078022,-0.008961212,-0.0059846966,-0.010987776,-0.039328005,0.011642187,-0.0146714775,-0.038694702,0.009082595,0.050241895,-0.02602868,-0.013478761,0.00220468,-0.023073275,-0.017954089,0.038378052,-0.03660481,-0.034493804,-0.027063072,0.046230987,0.011979948,0.0068449304,-0.01638139,-0.05826371,-0.014017067,-0.008982322,0.028224124,0.0017363008,-0.0059846966,-0.020698395,0.042410072,0.0020212864,-0.0009393968,0.039876867,0.021891112,0.018830156,0.017500224,0.0073410165,-0.044246644,-0.0141542815,0.017215237,-0.0068343757,-0.025690919,0.019400127,-0.0038050846,0.016244177,-0.0005739292,0.0004558449,-0.04127013,0.012074943,-0.024867628,0.024930958,0.027316391,-0.08266692,0.03115842,-0.0130565595,0.055772725,-0.0317495,0.007910987,-0.039982416,0.039095793,0.002963322,-0.04796201,-0.020128423,0.0025991737,0.009642011,-0.028034134,-0.024614306,0.025015397,-0.0060110837,0.004554491,-0.0022389835,-0.04703317,0.0022125961,-0.020529514,0.005288065,0.023242155,0.009578681,0.002153224,-0.045175485,-0.057165988,-0.011494417,0.025585368,-0.009583958,0.005301259,-0.021542797,-0.039602436,0.03276278,0.018091304,0.08731113,0.01892515,-0.025754249,0.024234327,0.027126402,-0.0037760583,-0.028139684,0.013067115,0.02104671,0.0097053405,0.04673763,0.0071246387,-0.021458356,0.040721267,-0.013278215,0.00028679968,0.038546935,0.012497144,-0.00075006613,0.021416135,0.006290792,0.029152965,0.04707539,-0.004372417,-0.06708771,0.029870708,-0.0105866855,0.010227814,0.008977044,0.019664003,0.010924445,0.024698747,-0.011853288,0.039771315,-0.0001341642,0.043951105,0.039623544,0.006860763,0.010560297,0.032952774,-0.006438562,0.03548598,-0.000052156644,-0.07418068,0.028730765,0.081062555,0.08372242,0.007789605,0.06219018,0.017816873,0.0031401184,0.0035517642,-0.034430474,-0.035844848,-0.0043565845,0.015906416,0.02127892,-0.030883988,-0.0020714228,-0.05665935,-0.0030556782,0.03620372,-0.05349284,-0.009647288,-0.043001153,0.040151298,0.051888477,0.0357393,0.016508052,-0.01869294,0.004256312,-0.03666814,-0.025690919,0.01780632,-0.028984085,-0.046357647,-0.025247607,0.0069663133,0.011146101,0.028266344,0.053408403,-0.036499258,0.025289828,-0.0031374798,0.01286657,-0.012169939,0.0031190084,0.017859094,-0.00060163613,0.02537427,0.023221044,-0.020635065,-0.009103705,-0.0013550007,-0.05133962,0.024128776,-0.004596711,0.030292908,-0.045851007,-0.0020714228,-0.033353865,0.010591962,-0.043908883,-0.05290176,-0.025184277,-0.025437599,-0.009066762,-0.009167035,-0.039707985,-0.010074766,-0.0269153,0.017225793,-0.032741673,0.030081807,-0.009969217,-0.01574809,0.04690651,-0.017056912,0.003652037,-0.046568748,0.023474365,0.0100694895,0.029005196,-0.019252356,-0.010734456,-0.027464163,0.004084793,0.014629258,0.019326242,0.0022178737,0.071563035,-0.0006682647,0.0023722406,-0.051255178,-0.023326594,-0.015610875,-0.006839653,0.009077317,-0.026830861,0.024170997,0.019695668,-0.00039878185,-0.018735161,-0.002886798,0.01835518,0.0091248145,-0.0116844075,-0.00011453846,0.012908789,-0.005105991,0.027949693,0.0028393003,-0.0332272,0.014998684,0.015230894,-0.0027838866,0.019125696,0.053661723,0.020212863,0.018809047,0.0050109955,0.060332496,0.019790662,0.030947318,-0.0032430298,-0.017204683,0.05281732,-0.0632879,0.045006607,0.048679754,-0.028688544,0.022249982,-0.037681423,0.0025912574,-0.020698395,-0.02092005,0.0027231951,-0.00032753547,-0.024740968,-0.04741315,-0.048004232,-0.05281732,0.067003265,0.023706576,0.035401538,-0.0624435,0.0013200372,-0.0047207326,-0.028772986,0.023748795,-0.018080749,0.014017067,0.030482898,0.03231947,-0.0010337323,0.03103176,0.02680975,-0.003641482,0.00006403104,-0.004010908,0.0072935186,-0.04677985,0.026957521,0.0018550447,-0.017753543,-0.035697076,-0.03141174,0.004586156,0.033543855,0.0028023578,-0.029131856,-0.024234327,-0.033797175,0.03601373,0.00529862,-0.0036493982,-0.023748795,0.029300736,0.025754249,-0.0037048121,0.0029131856,0.016529161,0.039496884,0.03244613,0.013974846,0.0020674646,0.05121296,-0.02666198,0.038251393,0.028646324,0.033586074,0.017225793,-0.05763041,-0.05247956,-0.022608854,0.07696721,0.03187616,-0.013341545,0.0023986283,0.00077315525,-0.040657938,-0.0047207326,-0.018027974,-0.0067816004,-0.010692235,-0.020350078,-0.064807825,-0.040109076,0.0040663215,-0.049186394,-0.023664355,-0.058728132,-0.014101507,0.0039159125,0.026999742,0.008934825,0.0066338303,-0.008892604,-0.012908789,0.038124733,-0.029638497,-0.008929547,-0.0042272857,0.028224124,-0.00057920674,0.011504971,-0.021310585,0.02590202,-0.0029131856,-0.0017468558,-0.011378312,0.006211629,0.008887327,-0.017268013,-0.01587475,0.00794793,-0.032868333,-0.034831565,0.0034435752,0.02623978,-0.018787935,-0.011209431,0.004113819,-0.028266344,-0.019748442,0.011209431,-0.040657938,-0.027400833,0.02655643,-0.025500929,-0.02640866,0.034282707,-0.013869297,0.003662592,-0.021500576,0.03126397,-0.015062014,0.027611932,0.004261589,0.016275842,0.039475776,-0.029976256,-0.020592844,-0.028371895,0.023896566,0.033607185,0.008470404,0.025310937,0.0032430298,-0.0073410165,-0.0077737723,-0.0029342957,0.024044335,0.020075649,-0.012655469,0.0007612808,-0.0032878888,0.0028234678,-0.027105292,0.005095436,0.0027311114,-0.023052163,0.010665848,-0.0072987964,-0.0049371105,0.027717482,-0.019980652,0.000726977,-0.003736477,0.013067115,-0.00780016,-0.041565668,0.01044947,0.029701827,-0.015969746,0.029722936,-0.0012085498,-0.019336797,-0.0021835698,0.034409367,0.04762425,0.0130248945,-0.013932627,-0.005478055,-0.023854345,-0.008934825,0.01015393,0.00955757,-0.029828487,0.0047022616,-0.029047415,0.006406897,-0.03723811,-0.028941864,-0.011061661,0.006280237,0.014998684,-0.011716072,-0.035127107,0.022144431,0.010264757,0.03690035,-0.010296422,-0.0041613164,0.032805003,0.013943181,-0.020012317,0.011547192,0.007314629,0.008713169,0.008507346,-0.00056304433,-0.001352362,0.007657667,0.012676579,0.050284114,-0.017584663,-0.043528903,-0.024762077,0.006248572,0.024276545,-0.008539011,0.031073978,-0.008649839,-0.017890759,-0.010977221,0.04791979,-0.012771574,-0.025395378,-0.0036493982,-0.0071774134,0.010233092,0.0056786006,-0.00445158,-0.0083015235,0.0161914,-0.022672184,0.019431792,-0.01551588,-0.0064438395,-0.008787055,0.0058422037,0.041502338,-0.009019265,0.027084181,-0.031179529,-0.008502069,0.0044964384,0.011884953,0.010755565,0.03736477,0.010760843,0.00008740876,0.049355272,-0.0025279273,0.019526787,-0.0032588625,0.016180845,-0.017352453,-0.00921981,-0.009230365,0.030609557,0.024297656,0.0039132736,-0.010370308,-0.028097464,-0.00028613998,-0.047877572,0.02655643,0.054463904,-0.025226498,-0.014798138,-0.003533293,-0.015336445,0.060839135,-0.029680716,0.03521155,0.02138447,0.037618093,0.03681591,-0.018840712,-0.02174334,0.0269153,0.003694257,-0.02049785,0.0319606,0.013827076,0.04842643,0.023685465,-0.0052009863,0.0099164415,-0.038694702,-0.023178823,-0.027210841,-0.0260709,-0.0114416415,0.016645266,0.0013233357,0.016508052,0.013320436,-0.043866664,0.025078727,-0.01810186,0.02155335,-0.021183925,0.02592313,0.002551676,-0.034050494,0.0069082608,0.0002021946,0.04762425,-0.008697337,-0.039116904,-0.013721526,0.00071840105,-0.025648698,0.012381039,0.024656527,-0.023664355,-0.009415078,-0.012433814,-0.013890406,0.009420356,-0.048679754,-0.019041257,0.01049169,-0.030166248,0.013837631,0.009726451,-0.006987423,0.012708244,0.016835257,0.0019737887,-0.007573227,-0.02073006,-0.0061641317,0.043908883,-0.010243647,0.014988128,0.009963939,-0.00070718635,0.004533381,-0.04694873,0.0088820495,-0.03709034,-0.011061661,-0.018407956,-0.03641482,-0.018027974,0.017215237,0.00205559,0.04661097,0.030546227,0.0013002466,-0.023305485,-0.031073978,-0.018260185,0.0095206285,0.033691622,-0.035359316,-0.014502598,-0.021500576,-0.05784151,0.024002116,0.06691883,-0.04198787,0.016940808,0.0054622227,-0.016465832,-0.03601373,-0.000041972697,0.016866922,0.016909143,-0.03263612,-0.0018009503,-0.030630669,-0.045597687,-0.0057999836,-0.060079176,-0.024424316,-0.031116199,-0.016592491,0.011874397,-0.04749759,-0.02149002,0.0044199144,-0.010354475,-0.06877651,-0.01871405,0.03618261,-0.01898848,0.007837103,-0.02638755,-0.008554844,0.024909846,-0.03276278,0.00822236,0.02685197,0.0010165804,0.0016650545,-0.019685112,0.038948026,0.0017956728,-0.013679306,-0.00015288287,0.016265286,0.011779402,-0.005063771,-0.005810539,-0.012349374,0.030440677,0.045259926,0.020212863,0.0015753368,-0.009467853,0.04211453,-0.013795411,0.008137921,0.008623451,0.0040214625,-0.019896213,0.00896649,0.027168622,-0.0014552734,0.005884424,0.0018590029,-0.017669104,0.038082514,-0.0006636469,-0.039686877,-0.0024210578,-0.0016096405,0.013425985,-0.015357554,0.029554056,0.0029765156,-0.0011168531,-0.0021571822,0.005947754,-0.0029342957,-0.014850914,-0.016729707,0.023009943,-0.014492042,0.016993582,-0.019452902,-0.027020851,0.022672184,0.04855309,0.00896649,-0.011272761,0.019347351,-0.02609201,-0.040974587,-0.011663297,0.010697513,0.0021716955,0.009457298,0.00510863,0.04732871,0.024192106,0.02678864,0.016508052,0.023432145,-0.024234327,0.03155951,-0.032783892,0.0124760335,-0.01816519,0.017964644,0.026957521,0.008670949,-0.015410329,-0.0016650545,-0.013858741,0.021405581,-0.041101247,0.0030292908,-0.0045307423,0.023052163,-0.029089635,0.03288944,-0.022376642,-0.029342955,-0.014945908,0.035359316,-0.024656527,0.012106608,-0.016866922,-0.012676579,-0.033501633,0.019262912,0.008528456,0.016413055,0.019083476,-0.0011095965,-0.0376392,-0.0021782923,0.008259303,-0.0057472084,0.011051106,-0.045724347,0.0041745105,0.05817927,0.017289123,0.010686958,0.012528809,0.02155335,0.06818543,0.010734456,0.028582994,-0.043951105,-0.010328087,0.016603047,-0.011483862,0.0062432946,0.026176449,-0.026957521,0.021162815,-0.0014974935,-0.006148299,-0.019938434,0.03136952,0.021996662,-0.0024039058,-0.035105996,0.017278567,-0.007900433,0.004375056,-0.0057999836,0.02566981,0.032952774,0.007240744,0.0075151743,0.030356238,0.00049113826,-0.009610346,0.007235466,-0.034472696,-0.04219897,0.030778438,0.008285691,0.027126402,-0.008560121,-0.011188321,-0.023516584,0.034557134,0.0062432946,0.022059992,0.05839037,-0.05708155,-0.006860763,0.013689861,-0.028540775,0.014703143,-0.0060058064,-0.004488522,-0.007246021,0.02638755,0.00822236,-0.0054622227,0.032403912,0.0359504,0.024002116,0.03185505,0.018175745,0.03139063,-0.01602252,-0.018766826,0.008327911,-0.012212158,0.019030701,0.037681423,-0.007240744,0.01299323,-0.0089717675,0.017162463,0.00926203,0.04737093,0.020381743,0.006955758,-0.005148211,-0.011557747,-0.0072935186,0.014935354,-0.024234327,0.012402149,0.028055243,0.025332049,-0.0046917065,0.017816873,-0.00794793,-0.016275842,-0.03704812,0.055097204,0.00330636,0.033944946,0.014059287,-0.0071985237,-0.025099838,0.013584311,0.017848538,0.018640166,-0.027084181,-0.028097464,0.0105866855,-0.013447096,-0.0051983474,0.0018880292,0.020297304,0.022735514,-0.040974587,-0.014893133,0.020466184,0.023411034,-0.01587475,0.0076629445,-0.008918992,-0.025944239,-0.019210137,0.020065093,0.015674205,-0.029258516,-0.027970804,-0.004243118,-0.0050109955,0.03671036,0.033586074,0.05345062,-0.012666024,-0.024297656,-0.014998684,0.0011815026,0.03198171,0.006127189,-0.017774655,0.012560474,-0.010665848,0.023917675,-0.0050796033,0.011716072,0.023242155,0.0013266341,0.019410681,0.025543148,0.030398458,0.0020714228,0.033311643,0.006169409,-0.017373564,-0.03736477,-0.006428007,0.014597593,-0.00659161,0.014143727,-0.013088224,0.0096736755,0.034430474,0.0116527425,-0.018555725,0.03713256,-0.00041197563,-0.0077684945,-0.004665319,0.0015093678,-0.011029996,0.018809047,-0.0015120066,-0.055603847,-0.007752662,-0.0016294313,0.0016399863,-0.010027269,0.02092005,-0.024213215,-0.010248925,-0.0033987164,0.011156656,0.004116458,0.00008559461,-0.02191222,0.03282611,-0.016740263,-0.02030786,-0.037871413,0.009742283,0.030081807,-0.0035016278,-0.0006032854,-0.0028234678,-0.03605595,0.00464157,0.0015766561,-0.003198171,-0.010338642,0.03698479,0.029258516,-0.036098167,-0.009383413,0.02661976,-0.0031506736,0.0068924283,0.049355272,-0.04580879,-0.056068268,0.004330197,0.0064174524,-0.023537695,-0.0843135,-0.0119588375,0.030314017,0.004406721,-0.0029527668,0.028266344,0.0060058064,0.01309878,0.016803592,0.006797433,-0.02613423,-0.012898235,-0.023178823,0.003910635,-0.026176449,-0.044753283,-0.0036256495,0.024783187,0.0011333453,0.011040551,0.017246902,-0.03548598,0.029131856,0.0053830603,-0.00801126,0.0031110921,-0.006322457,-0.0078054373,-0.002663823,0.037744753,-0.0060849693,0.005805261,0.011336092,0.016560826,0.0067921556,0.004718094,0.003641482,-0.004119097,-0.0007507258,-0.021996662,-0.007119361,-0.011462752,-0.0015806142,0.01871405,-0.030461788,-0.0054991655,-0.014597593,-0.007615447,0.009731729,-0.013964292,0.04217786,0.012666024,0.017500224,-0.061008018,-0.015906416,-0.0006999298,0.02666198,0.016782481,-0.035422646,0.0010159207,0.024339877,-0.010095877,-0.027527492,-0.044711065,-0.0077843275,-0.0045043547,-0.01320433,0.030039588,-0.012106608,0.02573314,-0.03179172,0.001964553,0.008122088,0.0025569536,0.040847927,0.011547192,-0.04198787,-0.01303545,-0.028794095,0.05336618,0.02602868,0.044499964,0.0024580003,0.010729178,0.0040452112,-0.007794882,0.048130892,-0.031116199,-0.0006583694,0.02191222,0.04614655,-0.017014692,0.016930252,-0.00032506164,0.0138165215,0.004158678,0.017384117,0.007689332,0.054759443,-0.020276194,0.006290792,-0.0067499354,-0.0068924283,-0.0069979783,-0.0040003527,-0.011526082,-0.023706576,-0.023664355,0.016940808,-0.015241449,-0.0011095965,0.012064388,0.029448505,-0.019357907,0.07076085,0.010792508,0.0021347527,0.0020384383,-0.023537695,0.04067905,0.043275584,0.043275584,0.029722936,-0.019347351,0.014196502,-0.04253673,-0.020888384,-0.00784238,-0.0034224652,0.016286395,-0.0074782316,0.021405581,-0.0069715907,-0.017669104,-0.0083015235,-0.010248925,0.015536989,0.04198787,0.008174863,0.018682385,-0.008375408,-0.020392299,0.011642187,0.018830156,-0.010433638,0.009019265,-0.014544818,-0.034472696,-0.0092461975,0.024170997,-0.0050584935,-0.00096908276,0.010053657,-0.011515527,-0.0103017,0.022819953,-0.025120948,0.015378664,0.025416488,-0.016307507,-0.011557747,-0.006063859,-0.026873082,-0.00890316,0.028941864,-0.020402854,-0.015051459,-0.00090839143,-0.016402502,-0.009272585,-0.014323162,0.008359576,-0.0025490373,0.03073622,-0.028266344,-0.009467853,-0.008734279,0.0026400744,0.023389924,-0.030018477,-0.011642187,0.0015951274,-0.015864195,0.0357393,-0.018555725,0.0043671397,0.014449823,-0.0069768685,-0.028772986,-0.0050479383,-0.030356238,-0.017605774,-0.01339432,0.02130003,0.022566633,0.013531536,-0.029575165,-0.016434167,0.0045729624,-0.00640162,-0.0073304614,-0.015040903,-0.014460377,0.015199229,-0.029722936,0.0040452112,-0.011694962,-0.032150593,-0.034451585,-0.04758203,-0.028709654,-0.012011613,0.0034198265,0.0010370307,-0.016814146,-0.007953208,-0.024424316,3.6334418e-7,0.004192982,-0.016793037,-0.026830861,-0.008649839,0.0017217876,0.028435225,-0.015758645,0.016909143,0.013953737,0.025015397,-0.0059635863,-0.003813001,0.011821622,0.0008740876,0.028561885,-0.015304779,0.017711323,-0.035295986,0.029638497,0.005514998,0.031010648,-0.054548346,0.027210841,0.033121653,-0.016961917,0.061134677,-0.0045175487,0.020972826,0.019094031,-0.01560032,0.0012811156,-0.011705517,-0.0023788377,-0.0031110921,-0.027231952,0.012275488,-0.023178823,-0.010312255,0.004121735,0.01837629,0.002757499,-0.0108611155,-0.010095877,-0.011842732,-0.009393968,0.0037971684,-0.011621078,-0.0050030793,0.030567339,-0.00013787494,-0.0053909766,0.024002116,0.008544289,-0.029237406,0.06459672,-0.015294224,0.027738594,0.016328616,0.023136605,-0.012391593,0.014238722,-0.0038314722,0.001422289,0.028984085,-0.0072671315,-0.02106782,0.024255436,0.021247255,-0.020719504,0.009747561,-0.0315384,-0.006686605,0.0058633136,0.035823736,0.015653094,-0.01545255,-0.021120595,0.009467853,0.015737535,-0.021785561,0.039138015,0.009256752,0.008312078,-0.030546227,0.013172665,-0.019938434,-0.016265286,0.005926644,-0.024572087,0.011082771,-0.0032694174,-0.031073978,0.037744753,-0.019146806,0.021658901,-0.02149002,0.020487294,-0.0042695054,-0.033121653,0.004644209,-0.015252004,0.011642187,0.0047867014,-0.018608501,0.004815728,0.03202393,0.008132643,0.033522744,0.03660481,0.00905093,0.0057524857,-0.0035728742,-0.05936143,-0.009230365,-0.0035174605,-0.024867628,0.012486589,-0.011779402,0.016529161,-0.02089894,0.024698747,-0.028772986,-0.038631372,0.011114436,0.0053804214,0.01080834,0.0075151743,-0.009288418,-0.0006939926,0.022967724,0.010211982,0.010882226,0.006728825,0.021975553,0.012433814,0.01856628,0.012845459,-0.011811067,0.011325536,0.038272504,0.029152965,-0.028582994,0.016835257,0.0059371986,-0.03120064,0.021806672,-0.0036916183,-0.003747032,0.0073726815,0.008634007,-0.030841768,0.015083124,-0.015653094,0.003554403,-0.023706576,-0.007251299,0.013436541,-0.033776063,-0.018830156,0.0033353863,-0.020466184,0.040066857,0.024065446,-0.0051244623,0.010781953,-0.01570587,0.005794706,0.0020001763,0.010000882,0.040531278,-0.010945556,-0.039032463,0.005525553,0.01309878,0.039074685,-0.0070454758,0.032678343,-0.009942829,-0.017331343,0.028287454,0.011842732,-0.014861468,-0.019748442,-0.031686172,-0.038019184,0.008048203,-0.034177154,-0.008839829,-0.000885962,-0.018798491,0.00095127115,-0.026957521,0.026282,0.013953737,-0.009700064,-0.029385176,-0.013436541,0.00085759535,0.0034805178,-0.009293695]},{"id":"class-WebSocketManager","type":"class","source":"main","text":"Class: WebSocketManager\nProperties: gatewayUrl: string | null, options: WebSocketManagerOptions, shardCount: number, shards: Map\nMethods: connect() -> Promise; destroy() -> void; getShardCount() -> number; send(shardId: number, payload: GatewaySendPayload) -> void","meta":{"url":"/docs/classes/WebSocketManager"},"embedding":[-0.029590653,0.002466771,0.020995375,-0.0105453795,0.005050124,0.024270272,-0.0036458399,-0.047650278,0.020285284,0.020211095,0.02825526,0.022892483,0.0063060313,-0.0057231206,0.004159861,-0.033130508,-0.06236082,0.05082979,0.009183489,0.04290221,-0.021451104,0.056213763,0.039129186,0.044513162,-0.050787397,0.058503013,0.007805701,0.018430568,-0.033109315,-0.0066822735,0.07211132,-0.013332752,0.03279136,0.021853842,0.016363885,0.03794217,0.0023011714,0.023528386,-0.023040859,0.031286392,-0.03548335,-0.026856273,-0.020285284,0.022998467,-0.022595728,-0.012400094,-0.038705252,-0.0024098048,0.009300071,-0.0045016585,0.0017262098,0.011350856,0.011255471,0.036140446,0.028785177,-0.012601464,0.018578945,0.011658208,0.011043503,-0.0022508292,0.010842134,-0.010518884,-0.017487314,0.015198065,0.014064039,0.016544059,-0.02121794,0.06414135,-0.011742996,0.048922084,0.007477151,-0.0037067805,-0.005264741,0.020295883,-0.024630615,0.023591975,0.0018732622,0.014593958,0.022744106,0.028721588,-0.056213763,-0.012421291,-0.06537075,-0.043538112,-0.008669468,-0.04926123,-0.04283862,-0.014201818,0.023973517,0.012686251,-0.001047914,-0.0039346456,-0.05460281,0.029866211,0.003306692,-0.0305869,0.025584469,0.031455968,-0.020020325,-0.011764193,0.0416516,-0.061343376,-0.05159287,0.0047719167,0.012633259,-0.010990512,-0.023825139,0.0010267172,-0.052610315,-0.013693096,-0.07083952,-0.005479358,0.00027439845,0.034190346,0.019712972,-0.031625543,0.016289698,0.008213738,0.013131383,0.02141931,-0.004419521,0.020603234,0.054899566,-0.01835638,-0.009035111,0.009872383,0.008293225,0.009570329,-0.04849815,-0.0074294587,0.0145833595,-0.038874827,0.017349534,-0.021281531,0.009141096,0.03181631,-0.016438074,0.00002970442,-0.022171794,-0.0114038475,0.0030973742,-0.030714082,0.05909652,-0.020083914,0.040846124,0.016109524,-0.00008064698,0.041227665,-0.016226107,0.0021130503,-0.010269823,0.011043503,0.035038218,-0.02467301,0.015346442,0.06503161,0.0024058304,0.058545403,-0.019628184,-0.058757372,0.06032593,0.012135136,-0.020942383,-0.02159948,0.0043188366,0.008748956,0.0025595068,-0.0004073749,-0.031731524,-0.03703071,0.044046834,-0.071051486,0.013205571,-0.016618246,0.04438598,-0.03397838,-0.021366317,-0.014848319,0.009093403,-0.005264741,0.06469246,0.022595728,0.024164287,-0.018907495,-0.037115496,0.009713408,-0.008494595,0.044894703,0.036416005,-0.028806373,-0.0015937302,0.073976636,0.020921186,0.02505455,0.042033143,0.015378238,-0.0069737285,0.0066610766,-0.023062056,-0.019617585,-0.03279136,-0.035907283,0.0017036883,-0.014138227,0.012251718,0.0027926709,0.007943479,-0.018918093,0.01841997,0.037327465,0.032155458,-0.015420631,0.0075778356,-0.0069101383,-0.028149275,0.0065074,0.027894914,0.016236706,-0.012400094,-0.0032907943,-0.03118041,0.02062443,0.021376915,-0.010365208,0.032600593,0.024376255,0.031561952,-0.02174786,0.024312664,0.028615603,-0.041206468,-0.017307142,-0.046887197,-0.02395232,-0.030629294,-0.009459047,-0.0048832,0.008616476,0.022404958,-0.029272702,-0.009146395,-0.031074425,0.0034285733,-0.010810339,0.030883655,0.012961809,-0.016713632,-0.02134512,-0.014233613,0.035780102,0.01834578,0.0032060074,0.00079818984,-0.0110117085,0.009533235,-0.0034868643,-0.040379796,0.012177529,0.04379247,-0.0031450668,0.0024773693,-0.025690453,0.00709561,0.017519109,-0.007196294,-0.028742785,0.049981922,0.014117031,0.001282403,-0.012781636,0.029336292,0.06515879,0.003325239,-0.008351517,-0.03414795,0.013512923,-0.030480918,0.009358362,-0.018377576,0.003977039,-0.020899989,-0.0076838196,-0.0044142217,0.06342065,0.038684055,0.042329896,0.021111956,0.07206893,0.004636788,0.0572736,0.0017619793,0.0351442,0.0035796,-0.04561539,0.022298973,0.05846062,0.07804641,-0.011075298,0.011880775,0.021313325,0.038111743,0.0027502775,-0.04258426,-0.03662797,0.0025012158,0.012071545,0.021334521,-0.029993393,0.012219923,-0.033660427,-0.05740078,-0.01979776,-0.06138577,-0.0060569695,-0.05265271,0.02088939,0.013110186,0.018653134,0.003118571,-0.02433386,-0.025584469,-0.0025634812,-0.027534569,0.014042842,-0.037200283,-0.04680241,0.03098964,-0.07804641,-0.0081342505,0.021567686,0.005166706,-0.031773917,0.034699067,0.014689343,-0.0047878143,0.014360794,0.033512052,0.025923617,0.0006776334,0.010979913,0.012569669,0.0065815886,-0.027131831,0.007021421,0.0151874665,0.008489296,-0.02628396,0.0057761124,0.029845014,-0.027428586,-0.019882545,-0.014434982,-0.09580928,-0.023337614,0.0005627073,-0.056044187,0.0351442,-0.025987208,-0.05129612,-0.0063484246,-0.022362564,0.032642983,-0.019935537,0.015049688,-0.010831536,0.04216032,0.015272253,-0.0029966896,0.026262766,-0.039256368,0.025075747,0.040189024,-0.03442351,0.004504308,-0.012156332,-0.007588434,0.032812558,-0.00572842,0.0002611505,0.0047745663,0.046378475,0.0442588,-0.036034465,0.019055871,-0.0012949886,-0.018992282,-0.049176443,0.06795676,-0.0032166059,0.0017142866,0.037920974,0.034699067,-0.048201393,-0.032960936,0.013163177,-0.036013268,-0.0023634369,-0.049388412,0.0015963797,-0.011806586,0.010651363,0.033300083,-0.060029175,-0.031625543,0.00032043515,-0.029972196,-0.0068571465,0.03997706,0.01633209,-0.04237229,0.023825139,0.015505417,0.020274686,0.05023628,0.0195328,-0.020158103,0.020359471,-0.04387726,-0.006782958,0.015632598,0.008166045,0.029209113,-0.046039328,0.027576962,0.04612411,0.0030761773,0.038959615,0.0044884104,-0.043834865,-0.03677635,-0.032706574,0.0115204295,0.06342065,0.039680302,0.06350544,-0.013777883,-0.028657997,-0.029187916,-0.05871498,0.002877458,-0.00618415,0.016904403,-0.04705677,0.03346966,0.011562823,0.0026601914,0.0116370125,-0.029654244,-0.011340258,-0.030798867,-0.040379796,-0.02329522,0.02740739,0.040167827,-0.057188813,0.00006470802,6.391108e-7,0.018070223,0.0047613187,0.0069419337,-0.0018639886,-0.03476266,-0.059478063,0.018843904,-0.015802173,0.057315994,0.01015324,-0.019151257,-0.008950325,0.063547835,0.00045374277,0.0023488642,0.005929789,0.019024078,0.010677859,-0.008303824,0.00021362343,0.047565494,0.045403425,-0.011181282,0.0032033578,-0.0072651836,-0.033109315,-0.0048858495,-0.006867745,0.081649855,0.021525294,-0.0015301399,-0.018557748,0.023189237,-0.014000449,0.02740739,-0.0042287502,-0.007948779,-0.02219299,-0.01679842,-0.07639306,-0.030311342,0.021016572,-0.008515792,-0.020115709,-0.076138705,-0.02838244,0.00761493,0.006555093,-0.01119188,-0.054009303,-0.009856486,-0.039150383,-0.03607686,-0.045106668,0.009353063,0.008404509,-0.021684268,0.0047851647,-0.012007955,-0.00036233183,0.05218638,-0.007413561,-0.032113068,-0.020571439,0.010375806,0.011626414,-0.000973063,-0.020857595,0.028340045,-0.0114038475,-0.021546489,0.03501702,0.022447351,-0.033808805,-0.024948567,-0.021981023,0.004541402,-0.0031026732,0.0060357726,-0.015569008,-0.047438312,0.032918543,-0.0260296,0.0015539862,0.01926784,0.007705016,-0.0067776586,-0.03794217,0.010524183,0.03325769,0.035313774,0.017211756,0.027979702,0.0397015,-0.022701712,0.008595279,-0.02662311,0.006820052,-0.008483997,-0.0016016789,0.008812546,-0.015314647,-0.015727984,-0.013025398,0.027301405,0.019363225,-0.013194973,-0.035949677,0.024482239,-0.035059415,0.014339597,-0.01893929,-0.033342477,0.0005302498,0.02433386,-0.02141931,-0.015113278,-0.0059986785,-0.010232728,-0.031265195,0.007153901,-0.014042842,-0.0032378025,-0.027937308,-0.026156781,-0.04283862,0.011954963,-0.018144412,0.028212866,0.015600803,-0.015282852,0.030141769,0.05108415,0.0065232976,-0.005707223,0.025669256,0.01529345,-0.005770813,-0.029166719,0.027153028,0.021546489,0.019289037,0.02141931,0.040337402,0.012548472,-0.030035784,-0.025881223,0.033427265,0.019193651,0.0011969536,-0.0064915027,0.014445581,0.0023568128,-0.0076308274,0.040846124,-0.024842583,-0.068762235,-0.0011731073,0.028806373,-0.054645203,0.027619356,0.023507189,-0.02552088,-0.029929802,0.019299636,0.015357041,-0.00559594,-0.0072651836,-0.0030735277,-0.051338512,-0.020041522,-0.03734866,0.0049971323,0.057824716,-0.010502987,-0.0043506315,-0.008833743,-0.04216032,0.011372053,0.030078178,0.030290145,-0.02850962,0.016692435,0.024439845,0.0043585803,0.012877022,0.026962258,0.027195422,0.020518448,-0.043538112,0.005166706,-0.0023978816,0.004758669,-0.03879004,-0.0012704798,0.038832434,-0.036034465,0.016756026,-0.018102018,-0.04964277,0.02037007,-0.033215296,-0.0091146,-0.0027237816,0.0006359023,0.009453747,0.02649593,-0.0028986547,-0.007699717,0.004536103,0.026453536,-0.0010710979,0.029654244,0.041821174,0.044894703,0.05863019,-0.01809142,-0.025393698,-0.019882545,0.011446241,-0.032261442,-0.027428586,0.025860026,0.0031212205,0.019829553,-0.019384421,0.019628184,0.05629855,-0.021641875,0.019119462,0.0068889414,0.034932233,0.027937308,0.0075142453,-0.0016559956,0.025605666,-0.016257903,-0.028361242,0.03961671,0.020603234,0.04224511,-0.025096944,-0.010524183,-0.022595728,0.0014731736,-0.02329522,-0.0240795,0.012792234,-0.0286368,-0.014286605,0.02395232,0.02297727,0.01522986,0.01574918,0.0049547385,-0.04146083,-0.046675228,-0.02609319,-0.022447351,-0.019755365,-0.013258563,-0.011700602,-0.015017892,0.0020507849,0.0012022528,-0.047438312,0.0045970436,0.0001821595,0.00689954,0.034995824,0.031943493,-0.018886298,-0.010677859,0.03391479,0.04447077,0.01906647,0.0023024962,-0.015357041,0.02467301,0.023655565,0.0035531041,0.026177978,0.009035111,-0.0038472088,0.005707223,-0.02825526,0.0116370125,-0.01412763,-0.039955862,0.032897346,0.0052038003,-0.012527275,0.042117927,-0.042796224,0.0036140447,-0.02096358,0.020984776,0.0023091203,-0.048243787,-0.008727759,-0.021504097,-0.03168913,0.0035557537,-0.039341155,-0.0033941285,-0.0071750977,-0.011700602,0.013035997,-0.02329522,-0.0462089,-0.0110117085,0.029378686,0.029209113,0.02232017,-0.02759816,-0.05218638,0.034020774,0.01900288,-0.04290221,-0.031455968,0.007699717,-0.0077421106,-0.035970874,-0.000096627344,-0.02850962,-0.005211749,-0.02369796,0.01060897,0.00086840405,0.00819784,0.0073711677,-0.007334073,-0.0010704355,-0.0384085,0.016003542,-0.03571651,-0.0305869,-0.02552088,-0.023867533,0.006729966,-0.043919653,0.00025833532,0.020062717,-0.020465456,-0.0015844565,-0.02121794,0.003762422,0.0050792694,0.0028191668,-0.015452426,0.03363923,0.013481129,-0.034529496,0.02545729,0.024482239,-0.028170472,0.007328774,0.015113278,0.0019275788,0.034847446,0.00956503,0.02643234,-0.021249736,0.032685377,0.020126307,-0.0201793,0.035907283,0.022489745,0.031138016,-0.009543833,-0.000031753716,0.02291368,-0.020094512,-0.017455518,-0.0041042194,0.009814092,0.02193863,0.022277778,0.0052965363,-0.0022879236,0.015145073,0.029527063,-0.041439634,0.0305869,-0.006502101,-0.034084365,-0.0011532353,-0.021164948,-0.040506978,-0.026792683,-0.037475843,-0.012304709,0.003910799,-0.0020799304,0.00270126,0.010492388,0.002401856,0.06630341,0.0069419337,-0.014265408,0.00852639,0.047438312,-0.027216619,-0.015961148,-0.0040909713,-0.028106881,-0.017932445,-0.003494813,-0.0036458399,0.065625116,0.00917819,0.0056224363,0.071560204,0.010132044,0.021567686,0.040189024,-0.04349572,0.031540755,0.038874827,0.0027688246,-0.043071784,-0.01705278,0.02129213,0.028361242,-0.01834578,-0.027555766,0.008743657,0.02010511,0.029060734,-0.026347551,-0.01575978,-0.0041307155,-0.009268276,-0.0068518473,0.0331729,-0.006613384,0.017232953,-0.004027381,-0.030883655,-0.0067140684,-0.0027052343,-0.004869952,0.023464795,-0.011795987,0.011181282,-0.009156993,0.027767735,0.026771488,-0.009353063,0.018992282,-0.014339597,0.00030934,-0.020062717,0.034275133,-0.015886959,-0.020295883,0.0036140447,0.025245322,-0.016999789,0.0046553346,0.010312215,0.0020613833,0.03715789,-0.012781636,-0.010449994,0.024884976,0.02759816,-0.0035848992,0.014848319,0.0041413135,0.0137248915,0.017646288,0.0035133602,-0.013279759,-0.009066907,-0.0004461252,-0.010979913,0.018208003,-0.008081258,-0.0038498584,0.0052673905,-0.0060039777,-0.021769056,0.009692211,0.028467227,-0.017338935,0.011223676,0.0037995162,-0.010328113,0.004302939,0.0070055234,-0.050490644,-0.03834491,0.04283862,-0.0036855838,0.03611925,-0.03376641,-0.019924939,-0.005511153,0.0061735515,0.020158103,0.034317527,-0.0129830055,-0.011213077,-0.015410032,-0.007848094,-0.031286392,-0.00036200063,-0.035695314,0.009082804,-0.014201818,-0.027089437,0.015696188,0.010238027,0.015219262,0.04544582,0.0066557773,-0.0227865,-0.008001771,-0.013237366,0.027025847,0.0022534789,-0.0013685147,0.014276006,0.0748669,0.019214848,0.014360794,-0.01803843,-0.036818743,0.018430568,-0.023125647,-0.0057390183,0.008717161,0.01522986,-0.011234274,-0.018218601,0.0019156557,0.004854054,-0.0041386643,-0.031116819,0.043834865,-0.017423723,0.0017778769,-0.012792234,0.0143289985,-0.01964938,-0.016575852,0.023380008,-0.03262179,0.011107094,0.020497251,0.00012121887,-0.034868643,0.0009531911,0.0065444945,0.0032139563,-0.0110647,-0.029823817,0.01901348,-0.012728645,-0.023634369,-0.011764193,0.015049688,0.020730415,0.0074559543,0.014911909,-0.031455968,-0.014159424,-0.05396691,0.01958579,0.016194312,-0.019882545,-0.0045652487,-0.030184163,0.027810127,-0.0005001107,-0.017360132,0.0004120117,-0.0037571227,0.032812558,-0.012792234,0.014350195,-0.023485992,-0.021917433,0.0008478697,0.008314422,0.020454857,0.01080504,-0.027047044,0.027153028,-0.0065074,0.01295121,-0.008998018,-0.017095173,0.004218152,-0.0020136905,-0.0039664404,-0.0117535945,0.011181282,0.006178851,0.039998256,0.022616925,-0.032833755,-0.009220583,0.045021884,0.018769717,0.019638782,0.018981684,-0.00299404,-0.007296979,0.032431018,0.001490396,0.026071994,0.010714954,-0.018197404,-0.019840151,0.014498573,-0.021016572,-0.02643234,0.030820064,-0.016893804,-0.021578284,-0.020846996,-0.00057297444,0.02069862,0.0075778356,-0.044046834,-0.015145073,0.014604556,-0.021875039,0.0033305383,-0.0052011507,-0.038281318,-0.02257453,0.039659105,0.0016983891,-0.022701712,0.008208439,0.0045652487,0.012029151,-0.053670153,0.0028933554,-0.008833743,-0.03202828,-0.0007471852,-0.034995824,-0.000025771431,-0.033427265,0.0011068675,0.042986996,-0.008346218,-0.039786287,-0.01639568,-0.019045275,-0.0067776586,0.04447077,0.020571439,-0.034995824,-0.0031795115,0.019501004,-0.009962469,-0.048159,-0.0017672784,0.0019818954,-0.013502326,0.015516016,-0.00003024262,0.03272777,0.008642972,0.009612723,0.036225233,-0.033342477,-0.027513374,-0.008860239,-0.009941272,-0.016300296,-0.064226136,0.009575629,-0.012569669,0.012018553,0.014170023,0.006825351,-0.017148165,-0.00638022,-0.013173776,0.011085897,0.008738358,0.005654231,0.01770988,-0.031010835,0.046844803,-0.0020123657,-0.005474059,-0.018462364,0.027195422,0.009119899,-0.014721138,-0.019289037,-0.011435643,-0.021122554,-0.008335619,-0.013152579,-0.013650702,-0.021769056,0.018197404,-0.015780976,-0.008499894,0.0020150153,-0.010730851,-0.021588882,-0.0072651836,-0.011901971,0.009077505,0.01314198,-0.039044403,-0.032431018,0.024312664,0.012866423,0.019140659,0.0305869,0.04313537,0.0015659094,-0.006162953,0.01282403,-0.044428375,-0.0069419337,-0.012877022,0.013714293,-0.01203975,-0.005648932,0.048201393,-0.020444259,-0.028170472,-0.000510709,-0.009935973,-0.0061470554,0.0076626227,-0.048625328,0.00043917002,0.0038498584,0.02257453,-0.0035107106,0.0109163225,-0.022871286,0.01998853,0.022426154,0.010582474,0.06329347,-0.01998853,-0.026220372,0.0058873952,0.006729966,0.020677423,0.041376043,-0.0032907943,0.039086796,0.031095622,0.009194087,0.019691775,0.043389734,-0.021790253,-0.02687747,0.0025621564,0.028912358,-0.00053389295,0.0072492864,-0.0029516465,-0.052313562,-0.029060734,-0.012007955,0.010206232,-0.016257903,0.00092801993,0.032770164,-0.029039538,0.029103128,0.0037253276,0.028318848,-0.0011797312,-0.055408288,0.012781636,-0.019617585,-0.01164761,0.0069737285,0.00950144,0.027153028,-0.017943043,-0.017042182,-0.013110186,0.011721799,-0.0007405612,-0.010884528,0.014530367,0.02291368,-0.008425705,-0.027682947,0.022934876,0.023231631,-0.00735527,0.015855163,0.0036140447,0.008939726,-0.0036882334,-0.026220372,0.015410032,-0.027301405,0.0076626227,-0.0085051935,-0.058163863,-0.0031980586,0.05383973,0.03662797,0.024164287,-0.006470306,-0.009098702,0.032812558,0.020942383,0.008309123,-0.027110634,0.025096944,0.00014249842,0.017593296,-0.010582474,0.005908592,0.041821174,0.014742335,0.014032244,0.0057973093,0.008738358,-0.014138227,0.016480468,-0.018430568,-0.033300083,-0.024037106,0.018409371,0.010296318,0.021398112,-0.015388835,0.021567686,0.027153028,-0.058206256,-0.005349528,-0.0019183053,-0.005063372,0.012325906,-0.02564806,0.0338512,0.013650702,0.013809678,-0.048074212,-0.031667933,-0.058079075,-0.0110329045,-0.0013168476,0.017784068,-0.0029516465,0.008468099,-0.006809454,0.010990512,-0.027047044,-0.0022004868,0.011531028,-0.0077739055,0.017413124,0.033808805,-0.015314647,0.022850089,-0.0074559543,-0.010497687,-0.024588222,-0.022108203,0.0016069781,0.0030231855,0.02609319,-0.0019792458,-0.012198726,-0.047226343,-0.01379908,-0.005479358,-0.013523522,-0.022256581,-0.009236481,-0.02096358,-0.020592635,-0.015240459,0.008060061,-0.008536988,0.025542075,0.009591526,0.028170472,0.01782646,-0.0013923611,-0.0019077068,0.024185484,0.010794441,0.0059774816,-0.044809915,-0.006809454,-0.0104764905,-0.011213077,-0.015092081,0.014265408,0.01658645,-0.001575183,0.043580506,0.0020322378,0.018303389,-0.021875039,0.008870837,0.01276044,0.025944814,0.0023806593,0.022510942,-0.029103128,0.0020521097,0.0067405645,-0.00279797,-0.024588222,-0.01705278,0.0011697953,0.0013009501,0.006560392,0.012781636,-0.033512052,0.014731737,-0.020603234,0.017232953,-0.008065361,-0.031561952,0.01568559,-0.03391479,0.006136457,-0.01782646,0.028149275,-0.023570778,-0.00032772153,-0.002584678,0.023062056,-0.0121245375,-0.008282627,-0.00015425599,-0.00950674,0.03800576,-0.0028271156,-0.055408288,0.069737285,0.03098964,-0.007334073,0.012198726,-0.008902633,-0.0008935752,0.007477151,0.021832645,0.004854054,0.027153028,-0.013332752,0.016607648,0.012961809,-0.01979776,-0.019373823,-0.014466777,-0.0034842147,-0.05252553,0.03467787,-0.050745003,-0.015325245,-0.0038896024,0.0065815886,0.037412252,0.0098034935,-0.024503436,0.040697746,0.016077729,-0.00038518457,0.013714293,0.027619356,-0.014371392,0.003441821,-0.007890488,-0.011859578,0.001064474,-0.028615603,-0.007037319,-0.019702373,0.043962047,0.008113054,-0.036945924,-0.023210434,0.002322368,-0.0260296,0.0017633041,-0.04086732,0.007832197,0.006215945,-0.02257453,0.00043155244,-0.01874852,-0.014519769,0.018695528,0.028170472,-0.0031821611,0.0005577393,-0.026008405,0.028594406,0.02505455,0.0010240676,-0.03495343,-0.023782747,-0.005866199,-0.012050348,0.002160743,0.011340258,0.049303625,0.014180621,0.02662311,-0.0013532796,-0.021164948,-0.01711637,0.019628184,0.012993604,-0.015664393,-0.0072598844,-0.014731737,-0.020836398,0.0130995875,0.0036723358,-0.03467787,0.013767284,-0.008706562,-0.0033808805,0.030968443,-0.0044142217,-0.042011946,0.0017818513,-0.007863992,0.008499894,0.00032225673,-0.014742335,-0.005317733,-0.05909652,0.044089224,0.04485231,0.00833032,-0.014021645,-0.025160534,0.00741886,-0.009156993,-0.0064862035,0.041757584,-0.026008405,0.0055747433,-0.047735065,0.009051009,-0.019946136,0.023549581,0.019405618,0.015176868,-0.0068041547,0.040400993,0.009342465,0.0061735515,-0.008595279,-0.032685377,-0.013756687,-0.03378761,-0.039680302,-0.033724017,-0.007440057,-0.0015076183,0.023973517,-0.016003542,0.032431018,0.046039328,0.01698919,0.00036465022,-0.0035557537,-0.012527275,0.0013214845,0.0032404521]},{"id":"class-WebSocketShard","type":"class","source":"main","text":"Class: WebSocketShard\nProperties: destroying: boolean, heartbeatAt: number, heartbeatInterval: number | null, id: number, lastHeartbeatAck: boolean, options: WebSocketShardOptions, reconnectDelayMs: number, reconnectTimeout: number | null, seq: number | null, sessionId: string | null, status: number, url: string, ws: WebSocketLike | null, WS: WebSocketConstructor\nMethods: connect() -> void; debug(message: string) -> void; destroy() -> void; handleHello(data: GatewayHelloData) -> void; handlePayload(payload: GatewayReceivePayload) -> void; scheduleReconnect() -> void; send(payload: GatewaySendPayload) -> void; startHeartbeat(interval: number) -> void; stopHeartbeat() -> void","meta":{"url":"/docs/classes/WebSocketShard"},"embedding":[-0.017448658,-0.0056210626,0.02577168,0.011335581,0.011907307,0.022583203,-0.0012767646,-0.022473255,0.0420439,0.0063989405,0.036260664,0.017712532,0.013160707,0.021560691,0.017272742,-0.0061735483,-0.050751735,0.050311945,0.012907829,0.018537138,-0.016096305,0.0042577144,0.026431363,0.031422976,-0.014150235,0.021582682,0.037602022,0.009554432,-0.026717227,-0.029685806,0.07155379,-0.025133984,0.0382837,0.02248425,0.00094486075,0.021846555,-0.017866459,0.018592112,-0.017745515,0.0057172664,-0.02742089,-0.037558045,-0.031598892,0.037887886,-0.035095222,-0.039998878,-0.064825006,-0.014831909,-0.0040735523,-0.005329702,0.014908872,0.01648112,0.013688455,0.06201035,-0.011445528,-0.0015213976,0.019086875,0.030565387,0.016338188,0.0060526063,-0.004821195,0.00063082343,-0.0076248543,-0.012204166,-0.025903616,0.038217727,-0.0261455,0.06135067,-0.025441837,0.044286825,0.036590505,0.02524393,-0.0061955377,0.0012259139,-0.01782248,-0.0022800348,-0.030125597,-0.001222478,0.01947169,0.015139761,-0.0449685,-0.008548413,-0.05488576,-0.033973757,0.010285582,-0.03595281,-0.07291714,-0.033533968,0.011291602,0.043891016,-0.0012836363,0.0074489387,-0.025573773,-0.0108683035,-0.0062615066,-0.050092053,0.021450745,0.013193692,-0.014172224,-0.02702508,0.02032928,-0.049124513,-0.08699041,0.0015983608,-0.009142129,-0.016997874,-0.010016211,-0.0018910959,-0.052466914,-0.008207576,-0.090948515,-0.007025641,-0.0113795595,0.028410416,0.0034413547,-0.03641459,0.000041895986,0.0058492036,0.011731391,-0.0060471087,-0.007899723,0.005678785,0.044836562,-0.011786365,-0.028212512,-0.0026153745,0.037118252,0.012369086,-0.016184263,-0.0014485575,0.030543396,-0.020857029,-0.006228522,-0.06561663,-0.0003662624,0.052554872,-0.034017734,-0.00006996265,-0.026893143,-0.017679548,-0.002484812,-0.041845992,0.06517684,-0.008636371,0.019515669,0.041648086,-0.011033225,0.02825649,-0.014480077,-0.006607841,0.021945508,0.032302555,0.049872156,-0.0044143894,-0.009065166,0.031005176,0.012281128,0.037118252,-0.02355074,-0.07212552,0.05910774,0.022913044,-0.03212664,-0.015425625,-0.04283552,-0.009356527,0.02484812,0.008867261,-0.039251234,-0.0100711845,0.023001004,-0.058008265,0.02702508,-0.026079532,-0.02081305,-0.020835038,-0.010527466,-0.011599454,0.014271177,-0.0049064043,0.06741977,0.028146543,-0.011544481,-0.018108342,-0.030873239,-0.017998395,-0.0112806065,0.046485774,0.012072228,-0.036656473,-0.03425962,0.054665864,0.004997111,0.011874323,0.04208788,0.014370129,0.02076907,0.028586334,-0.040614583,-0.047189437,-0.029641828,-0.008718831,0.01499683,-0.013391597,0.034413546,0.032742348,0.0063824486,-0.015425625,0.011198146,0.015062799,0.0384816,-0.024188435,0.0013990811,0.0039526103,-0.010884796,0.017657558,0.028036596,0.012413065,0.0017467899,-0.03131303,-0.06073496,0.01947169,0.04934441,0.012028249,0.018471168,0.0071135988,0.047453314,-0.018559126,-0.0052115084,0.012687934,-0.048596766,-0.017855464,-0.021263834,-0.027992617,-0.046002008,-0.021934513,-0.011654428,-0.0063549615,0.00075451424,-0.042241804,-0.0462219,-0.05026797,-0.00092493277,-0.004156013,0.042923477,0.023594718,-0.008394486,-0.0026785943,-0.008559408,0.018581117,0.023001004,-0.022407288,0.0048266924,0.008768308,-0.011187151,-0.03386381,-0.008834276,-0.006223025,0.036568515,-0.011423538,0.014798924,-0.016799968,0.006937683,0.015887404,-0.005107058,-0.03384182,0.03768998,0.009994222,0.022979014,-0.04327531,0.02788267,0.06434124,0.009570925,-0.025507804,-0.009504955,0.014315156,0.002497181,0.0052417438,-0.013710445,0.009735845,-0.019163838,-0.020714097,-0.0025466573,0.05655696,-0.0053187073,0.05783235,-0.010873801,0.062186267,-0.018625095,0.05774439,0.0036502548,0.020450223,0.025859637,-0.054577906,0.026673248,0.06711192,0.04241772,0.0043951487,0.019581638,-0.016195256,0.04382505,-0.016327195,-0.030257534,-0.022627182,0.039273225,0.0047387346,0.028036596,-0.009554432,0.003795935,-0.013633482,-0.0010568697,0.0042384737,-0.07476425,-0.031093134,-0.033577945,-0.040284738,0.038789455,0.036018778,0.0018003893,-0.04930043,-0.010346053,-0.05185121,-0.025353879,0.012358092,-0.03342402,-0.022671161,0.033577945,-0.02009839,0.012929819,0.0248921,-0.0021412263,-0.045342322,0.029751776,-0.0018484913,-0.016931904,-0.022209382,-0.026541311,0.024276393,-0.014205208,0.029355966,0.016470125,-0.03560098,-0.03256643,0.007130091,-0.00032090908,0.031840775,-0.015777458,-0.010532964,-0.016338188,-0.024760162,-0.008476947,-0.005546848,-0.10572545,-0.03252245,0.0064978935,-0.03377585,0.02918005,-0.018691063,-0.027179006,0.022440271,-0.016525099,0.021813571,-0.0038426628,0.046045985,0.026827173,0.047321375,-0.031137113,0.01198427,-0.0030647847,-0.05475382,0.014930861,0.043605153,-0.01740468,-0.0017096826,-0.01752562,-0.0026978352,0.026915131,0.0033478993,-0.016382167,-0.009395008,0.039559085,0.033929776,-0.025551783,-0.005057582,0.00000154882,-0.001675324,-0.060295172,0.08633073,-0.0072290436,0.015546567,0.06007528,0.02612351,-0.050707757,-0.028102564,0.041230287,-0.027266964,-0.019042896,-0.010802335,0.005599073,-0.0110387225,0.016239235,0.008779302,-0.050751735,-0.018460175,-0.0163162,0.020296296,0.0014375628,0.013908351,0.012610971,-0.051983148,0.019086875,0.022099433,0.026387384,0.036524538,0.019977449,-0.047761165,0.012621965,-0.044704627,0.0006390695,0.027948638,-0.00015684689,0.011346575,-0.064561136,0.00019464131,0.035557,0.051807232,0.012940813,-0.039822962,-0.04499049,-0.038921393,-0.0071905623,0.025221942,0.07318101,0.031796798,0.07155379,-0.021076923,-0.0269811,-0.0248921,-0.07388467,-0.010258095,-0.022385297,-0.0066023436,-0.018713053,0.052598853,-0.026233457,0.016129289,0.012995787,-0.049168494,-0.029795755,-0.011335581,-0.009873279,-0.030917218,0.0024985555,0.04969624,-0.0029108583,-0.042241804,-0.029663818,0.026277436,0.008125115,0.0012355343,-0.007218049,-0.059899364,-0.048816662,0.04327531,-0.024650214,0.021263834,0.024606235,-0.013523534,-0.0041340236,0.04499049,0.024584247,0.009070664,0.014260182,-0.004227479,0.013908351,0.012797881,0.015898399,0.056688897,0.0650449,-0.019999439,0.010807833,-0.019108864,-0.017701536,0.0015901148,0.0035650455,0.07784279,0.029465912,-0.026607279,-0.034435537,0.023902573,-0.014699972,0.032830305,0.00422473,-0.009026684,-0.029905703,-0.012171181,-0.05281875,-0.029026123,0.04417688,-0.018888969,0.008652863,-0.048728704,-0.00951595,0.007751294,0.028344449,-0.020318286,-0.028190522,-0.0054836283,-0.05000409,-0.0506198,-0.011995265,0.0054836283,0.020846033,-0.018460175,-0.009664379,-0.004656274,0.008454958,0.035073232,-0.014666988,-0.03170884,-0.006673809,0.0009867782,0.0014403114,0.018965932,-0.022209382,-0.0122481445,-0.031972714,-0.023440793,0.024936078,0.02918005,-0.023374824,-0.020955982,-0.035666946,-0.000028131082,-0.0015777457,0.017019862,-0.023946552,-0.0265633,0.022561213,-0.019548655,0.0023515008,0.021989487,0.009939248,-0.010560451,-0.0063109826,0.022429276,0.02524393,-0.001583243,0.015062799,0.029004132,0.018075358,-0.03608475,0.011786365,-0.01478793,0.012665944,0.019064885,0.0023982285,-0.014447093,-0.01325966,-0.023748646,-0.03390779,0.033468,0.006976165,-0.00945548,-0.05405016,0.017349705,-0.0046507763,-0.0014416857,-0.024210425,-0.022803098,-0.005610068,-0.020571165,-0.01627222,-0.013897356,0.015898399,-0.015447615,-0.019570643,0.007086112,0.003683239,-0.006404438,-0.04279154,-0.04591405,-0.058140203,0.025375867,-0.05018001,0.014568035,0.019460697,-0.015920388,0.033028208,0.014655993,0.00932904,0.03549103,0.04965226,0.02997167,0.009884275,-0.05303864,0.030609366,0.0048514307,0.01288584,-0.0057062716,0.02658529,0.003603527,-0.028432406,0.007899723,0.0044666147,0.007861242,0.035447054,-0.026761206,0.019647606,0.026255447,-0.00054114754,0.048464827,-0.007481923,-0.060339153,0.0039773486,0.036106735,-0.03654653,0.029949682,0.014403114,-0.037953854,-0.02568372,0.012116207,0.008361503,0.015843425,-0.0169429,0.00445562,-0.051719274,-0.024056498,-0.01865808,-0.004342924,0.0048789172,-0.0031527427,-0.020703102,-0.017184785,-0.04081249,0.02742089,0.029751776,0.009878777,-0.010906786,0.013776413,0.0022346815,0.012918823,0.02786068,-0.00985129,0.020626139,0.035864852,-0.049388386,-0.004513342,-0.006404438,0.0010932898,-0.012962802,-0.0034193653,0.037602022,-0.018372215,0.022220377,-0.024518277,-0.024870109,0.022583203,-0.003342402,-0.0075973677,0.018669074,-0.003526564,0.019570643,0.044066932,0.0021989488,0.0116654225,0.022759119,0.019592633,0.0018278761,0.019790538,0.030653344,0.013996309,0.06135067,-0.020780064,0.008476947,-0.03469941,-0.007426949,-0.029311987,-0.0064704064,0.05699675,-0.00020804117,0.025573773,-0.03474339,0.018317243,0.036326632,-0.009158622,0.014853898,0.015502588,0.035381082,0.01995546,0.0041725053,0.016975883,0.0007325248,-0.0045710644,0.0069321855,0.03859155,0.015392641,0.032874282,-0.005486377,-0.058536015,-0.0030290517,-0.0067067933,-0.010335059,-0.009785322,0.00089401007,-0.020043418,-0.011324585,0.049828175,0.002244302,-0.0029823242,0.030719314,0.017833473,-0.03938317,-0.020648127,-0.04153814,-0.0071630753,-0.03256643,0.0050108545,-0.006866217,-0.02357273,0.016184263,0.019878495,-0.030939208,-0.003666747,-0.018185306,-0.0067342804,0.042659603,0.0147109665,-0.0040543117,-0.012775891,0.0066903015,0.03375386,0.027047068,0.005827214,-0.011225633,0.034457527,-0.008812287,-0.0048981584,0.025881626,0.017888447,-0.0043264315,-0.016591068,0.0036172706,0.009406003,0.01114867,-0.04626588,0.041362226,0.00033963448,0.012336102,0.011077204,-0.005162032,0.0051043094,-0.043385256,0.02051619,-0.006701296,-0.02076907,0.001294631,0.010379038,-0.008042655,-0.02658529,-0.03384182,-0.01712981,-0.005684282,0.00095585553,0.03390779,0.0037602023,-0.048552785,-0.012171181,0.028784238,0.03258842,0.0073829703,-0.029861722,-0.03894338,0.047805145,0.03907532,-0.0382837,-0.034589462,0.012358092,-0.023022993,-0.03434758,-0.030279523,-0.029839734,0.006294491,-0.0051675295,0.015546567,-0.004950383,0.0006531565,0.0136994505,-0.018372215,-0.0011970527,-0.04591405,0.005750251,-0.022187391,-0.03173083,-0.004612295,-0.019570643,-0.004661771,-0.07282918,0.018471168,0.027530838,-0.014666988,-0.002428464,-0.02056017,-0.0033204125,0.0073389914,0.010532964,-0.022957025,0.01928478,0.0060745957,0.0026662252,-0.009823803,0.016821958,-0.015535573,0.034193654,0.0136004975,-0.006772762,0.004821195,0.009878777,0.036964327,0.013149713,0.05361037,0.0064264275,0.015612535,0.0074489387,0.035710927,0.006332972,0.012501023,-0.013589503,0.000833539,-0.029883713,0.00066827424,0.017008867,-0.007866739,0.0039828457,0.03779993,0.0075204046,-0.005370932,0.020241322,-0.028058585,-0.017998395,0.038085792,-0.0068112435,-0.023264877,-0.05141142,-0.02079106,-0.029597849,-0.007245536,-0.028454395,-0.0257277,-0.021890534,-0.001907588,0.037492074,0.0019254545,-0.002039525,0.054182097,-0.0030153084,-0.019317765,0.027244974,0.057216644,-0.012171181,-0.04325332,0.013820392,-0.040878456,-0.024232414,-0.014161229,0.014260182,0.0462219,0.0011551352,0.008064644,0.061746478,-0.021505717,0.0010190753,0.045562215,-0.029531881,0.016415153,0.045474257,-0.016832951,-0.012182176,-0.034963284,0.016404158,0.026805185,-0.024232414,-0.008938726,0.021450745,0.041670077,0.03984495,-0.025969584,-0.027508847,0.0035183178,-0.005909675,-0.0049778703,0.02271514,-0.005115304,-0.0015365154,-0.024188435,0.0071960595,0.016283214,0.008312026,-0.0036859878,0.029070102,0.00014499317,-0.008465952,-0.01740468,0.017668553,0.042373743,-0.018339232,0.007251033,-0.002252548,-0.010274588,0.003089523,0.025177963,-0.04149416,-0.023198908,0.014919867,0.021010954,-0.045254365,0.007619357,-0.026189478,-0.014370129,0.036128726,0.009532442,-0.02915806,0.05233498,0.012050238,-0.008801292,0.005260985,0.0097578345,0.019229807,0.035205167,-0.001374343,-0.0020780065,0.0048981584,0.008592392,0.012072228,0.030455438,-0.022781108,-0.015370651,0.0071520805,-0.014974841,-0.032368526,0.002208569,0.006552867,-0.014941856,0.0099282535,0.023352835,-0.005871193,0.0060086274,-0.009834798,-0.045518238,-0.02737691,0.009169616,0.013270656,0.052598853,-0.017899442,-0.025199952,0.027552826,0.008597889,0.011874323,0.032302555,0.0033973758,-0.018273264,-0.0033616428,-0.009510453,-0.022000482,-0.012534007,0.0018539886,0.0041312748,-0.028168533,-0.007701818,0.0076523414,-0.0027706753,0.020714097,0.019779542,0.008828779,-0.0044226353,-0.007982183,0.00084178505,0.03944914,0.015084788,0.019317765,0.00021525646,0.08316424,0.044440754,0.02167064,0.0040625576,-0.040878456,-0.0016203503,-0.01177537,0.017415674,-0.0035815376,-0.011423538,-0.01627222,-0.03980097,0.015491594,0.019636612,0.012105213,-0.03386381,0.011313591,0.016909916,0.016470125,-0.004950383,0.03432559,-0.018625095,-0.024232414,0.051103566,0.0073884674,0.0057392563,0.012413065,-0.01947169,-0.03131303,0.019317765,-0.0098293,-0.0032571927,0.008636371,-0.015029814,0.020208338,-0.02264917,-0.021725614,-0.027464869,0.0040570605,0.029268008,-0.0103405565,-0.011467517,-0.036964327,-0.0027019582,-0.06772762,0.0010108292,0.039031338,-0.031203082,-0.010043698,-0.023484772,0.046177924,-0.0037492076,-0.0047442317,0.0027157017,-0.0068057464,0.03733815,-0.0066518197,-0.017701536,-0.013325629,-0.021362787,-0.019350749,0.011896312,0.012534007,-0.0015736227,-0.0073389914,-0.0036639983,0.008114121,0.018954938,-0.003185727,-0.0038041812,0.0042742067,-0.0040543117,0.00078406266,0.019449702,0.0032929257,0.0202853,0.045518238,0.040130813,-0.029905703,-0.009818306,0.017558604,0.006833233,-0.004461117,0.03214863,0.010137154,-0.011033225,0.0265633,0.009400506,-0.0026057542,0.0015255207,-0.021890534,0.004461117,-0.011995265,-0.023001004,-0.015722483,0.02056017,0.0020670118,-0.042131856,-0.02248425,0.017074836,0.010137154,-0.020439228,-0.05879989,-0.023396814,0.027970627,-0.00784475,-0.005843706,-0.006327475,-0.05361037,-0.025595762,0.017184785,-0.010675896,-0.019482685,0.0024958067,0.013413587,-0.007306007,-0.04197793,0.0010754233,0.00782276,-0.03344601,-0.0122481445,-0.019548655,0.00034753696,-0.04356117,0.014205208,0.047673207,-0.0016217247,-0.035710927,-0.0053324504,-0.017976405,-0.020318286,0.04334128,0.011511496,-0.019669596,-0.010192127,0.0124900285,-0.026739215,-0.025221942,-0.008713334,-0.00009251046,-0.009713856,0.0148099195,0.033819832,0.011687412,0.009647887,0.02918005,0.01627222,-0.023088962,-0.02484812,0.026475342,0.020670118,-0.0102690905,-0.04032872,-0.0015653766,-0.022143412,0.016492115,-0.005871193,-0.0108957905,-0.0079491995,-0.0020065408,-0.0042467196,0.0008307903,0.0012939438,-0.017030858,0.014897877,-0.028168533,0.051499378,-0.008790297,0.0027541833,-0.024298383,0.004609546,0.0034578468,-0.01884499,-0.0015640022,-0.0120062595,-0.007426949,0.0035567994,-0.012468039,-0.004848682,-0.009136632,-0.0038893905,0.022671161,-0.0022635427,0.0051592835,-0.00011484353,-0.005263733,0.0011730017,-0.017019862,0.018987922,-0.026211469,-0.022209382,-0.038921393,0.015084788,0.020780064,0.026673248,0.023836603,0.043934993,-0.02104394,0.022803098,0.013347618,-0.06394543,0.0049311426,-0.021747602,0.021241844,-0.0027074555,0.00832302,0.013798403,-0.01305076,-0.029333975,-0.0045985514,0.016821958,-0.012962802,-0.0038206733,-0.022935035,0.0069871596,-0.004549075,0.015843425,0.01091778,0.022759119,-0.02662927,0.011577465,0.019251795,0.00033396532,0.041692067,-0.0082625495,-0.014161229,0.0065473695,-0.0049393885,-0.0010767977,0.028146543,-0.005684282,0.02311095,0.033665903,0.006360459,0.0021494722,0.031071145,-0.016536094,-0.041010395,0.027222985,0.03258842,-0.014183219,0.0019666848,-0.019592633,-0.030059628,-0.0031637375,0.0046425303,0.0177785,-0.016404158,-0.02079106,0.033380043,-0.020461217,0.046045985,0.017723527,0.017283736,-0.0015049055,-0.03685438,0.025969584,0.010197625,0.0010307572,0.009609406,0.00022779734,0.013897356,-0.022869065,-0.031884756,-0.03977898,-0.01838321,0.009460976,-0.011973276,0.019185828,0.012523013,-0.03342402,-0.025903616,0.03804181,0.000073742085,-0.015304683,0.028476385,0.005766743,0.0154366195,-0.0019433209,-0.017019862,0.0140842665,-0.04019678,0.018394206,-0.013193692,-0.0403727,0.033358052,0.024716184,0.025793668,0.03980097,-0.00545889,0.014337146,0.023594718,0.021219855,0.017657558,0.0016052325,0.035227157,0.014128245,0.011544481,0.015711488,0.031774808,0.023836603,0.025463825,0.04065856,0.009235584,-0.00353481,-0.0064649093,0.02120886,-0.003018057,-0.030697323,-0.01014265,0.019482685,-0.008218571,0.013270656,-0.018042374,0.034391556,0.017140806,-0.05827214,0.00824056,0.011291602,-0.009988724,0.015975362,-0.0351392,0.0053681834,0.015227719,0.021549698,-0.038393643,-0.042681593,-0.06332972,-0.008564905,-0.004543578,-0.0048871636,0.012116207,-0.0068112435,0.00057207025,0.028740259,-0.021076923,-0.002003792,0.01219317,0.012501023,0.0011214638,0.048508808,-0.027596805,0.015315678,-0.011060712,-0.010488985,-0.018273264,-0.03562297,0.014601019,0.006712291,0.017459653,0.005538602,0.007212552,-0.05699675,-0.0008720206,-0.005153786,-0.015458609,-0.020208338,-0.015821436,-0.009010192,-0.015799446,-0.019064885,0.02528791,-0.0019020906,0.01930677,-0.003735464,0.03390779,-0.0038014324,0.009010192,0.0033643914,0.026893143,-0.000054716027,0.004400646,-0.050751735,0.009554432,-0.018042374,-0.00041814384,-0.025397858,0.030455438,-0.0011358944,-0.017162794,0.070806146,0.018295253,-0.009510453,-0.022055455,-0.012962802,0.0016574576,0.018350227,0.005467136,0.03219261,-0.047541272,-0.0019144597,0.0007531399,-0.025661731,-0.020076402,-0.0031637375,-0.0015681253,0.0067782593,0.021934513,0.016536094,-0.033533968,0.01583243,-0.034611452,0.012369086,-0.021505717,-0.027618796,0.00046143564,-0.0025232937,0.007245536,-0.023748646,0.0028476384,-0.010818828,-0.009466474,-0.0050960635,0.039273225,-0.030609366,-0.0092026,0.010785843,-0.005137294,0.03940516,-0.018691063,-0.03296224,0.031950723,0.02568372,-0.010846314,0.033336062,0.0007290889,0.0035760403,-0.007657839,0.019526664,-0.0060416115,0.010983748,-0.029663818,-0.00057962915,-0.00032571927,-0.02528791,0.0006236081,-0.022352314,-0.006712291,-0.060295172,-0.0015186489,-0.05018001,-0.004112034,-0.0026868405,0.009933751,0.02790466,-0.013369608,-0.013963324,0.06847526,0.021307813,0.01988949,0.020494202,0.010120661,0.008306528,0.0070311385,0.012105213,-0.003149994,0.0027830445,-0.0027981622,-0.018460175,-0.0006115826,0.052862726,0.014095261,-0.048464827,0.017217768,0.026893143,-0.02528791,0.017888447,-0.040130813,0.0044143894,-0.016107298,-0.0046782633,-0.0014265679,-0.021780586,-0.017228764,0.016239235,0.01566751,-0.0017014366,0.012599976,-0.01886698,0.013479555,0.027003089,0.0036777416,-0.015931383,-0.033709884,0.006904699,-0.005101561,-0.0034001244,-0.0048349383,0.032346535,0.017767506,0.01325966,0.005766743,-0.039669033,-0.0023460034,0.0184052,0.003892139,-0.009807311,0.016657036,-0.008015168,-0.011918302,0.005948156,-0.0056622927,-0.019317765,0.02871827,-0.03135701,0.0039828457,0.0118633285,-0.0006356336,-0.019680591,-0.034501504,-0.014535051,-0.0019419466,0.017052848,-0.006492396,0.0030592873,-0.046485774,0.028894186,0.035205167,0.019438706,-0.030345492,-0.0080206655,-0.004892661,-0.025859637,0.009362024,0.032280568,-0.0257277,-0.0042879498,-0.011220136,0.005959151,-0.02317692,-0.008163597,0.029224029,-0.00508232,0.004463866,0.0248921,0.024562256,0.01175338,-0.017536616,-0.021472733,-0.013743429,-0.015887404,-0.029355966,-0.026849164,-0.0073554832,-0.0071355887,0.03685438,-0.005799727,0.031994704,0.030059628,0.002172836,0.0059976326,-0.0060800933,-0.014952851,0.012577986,-0.0076468443]},{"id":"interface-APIApplicationCommandInteraction","type":"interface","source":"main","text":"Interface: APIApplicationCommandInteraction\nDescription: Minimal application command interaction (slash command) payload from the gateway.\nProperties: application_id: string, channel_id: string, data: { id?: string; name: string; type?: number; options?: Array<{ name: string; type: number; value?: APIApplicationCommandOptionValue; }>; }, guild_id: string, id: string, member: APIGuildMember & { guild_id?: Snowflake; }, token: string, type: number, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIApplicationCommandInteraction"},"embedding":[-0.010168191,0.0053321,0.011313736,0.00556239,0.04371968,-0.041523065,-0.008136915,0.023040814,0.0250839,0.0315084,-0.014148075,-0.04889235,0.011118876,0.011868794,0.0006284999,-0.008408539,-0.016202971,0.034555316,-0.008438064,0.010740964,-0.004608753,-0.016781649,0.008863214,0.04315281,-0.06452845,-0.009223412,-0.008898644,0.03287833,-0.015895918,-0.018907404,0.08384919,-0.035594575,0.016486404,-0.037720326,0.01089449,0.013274155,0.010168191,0.005066381,0.01394731,-0.017738238,-0.030540003,-0.009595418,0.014478749,0.04142859,-0.0023914736,0.025060281,-0.037862044,-0.03353968,0.009707611,0.02737499,-0.042892996,-0.015140094,0.034437217,0.08219583,0.043436244,0.018659398,-0.012211277,-0.029429886,-0.01767919,0.0426568,-0.031862695,-0.022828238,-0.02964246,0.04832548,0.038783204,0.028036335,0.004431607,0.058245666,0.042137172,0.023820257,0.008319966,-0.014998377,-0.04275128,0.022473946,0.010067808,-0.0007624667,-0.0660401,0.011166114,0.035074946,-0.036492113,-0.017513853,0.018494062,-0.040625524,-0.10931101,-0.014608655,0.0051992405,-0.01900188,-0.0075641423,0.009825708,-0.019438842,-0.033563297,0.01723042,-0.050451234,-0.0067728893,-0.0113668805,-0.020336382,0.019568749,0.003909026,-0.007753098,0.034153786,0.050356757,-0.054986175,-0.050073322,-0.042373367,0.056450583,-0.047994807,-0.005264194,0.04542028,-0.01815158,-0.005975731,-0.039420933,0.018328726,-0.023832066,0.03533476,-0.0112310685,-0.0014370985,0.049837127,-0.021588216,0.01723042,-0.036374018,-0.012719097,-0.012695476,-0.010546103,-0.033185385,-0.039208356,0.0059403023,0.0020253714,-0.034697033,-0.0344136,-0.019698655,0.015399909,0.0068142232,0.0103512425,-0.0006196426,0.003117773,-0.026075918,-0.012636428,0.004378463,-0.042538702,-0.027918238,-0.000065599444,-0.026075918,0.04634144,0.030114852,-0.043790538,0.00498076,-0.05522237,0.050451234,-0.024753228,0.035476476,0.012482901,0.014679514,-0.014679514,-0.013144247,0.03349244,-0.037295178,0.013604827,0.026170397,-0.016025824,-0.054513786,-0.018269677,-0.054608263,-0.021588216,0.01046934,-0.063347474,-0.011290117,0.03335072,0.0427749,-0.05201012,0.0076940493,-0.019793134,-0.051962882,-0.030799817,-0.0068024136,-0.04879787,-0.025863344,-0.04216079,-0.04870339,-0.03663383,-0.010050094,0.045703717,0.0029583413,-0.023796638,-0.051821165,-0.034295503,0.02184803,-0.010634676,-0.0015396955,-0.021021347,-0.010835442,-0.022958146,0.04504237,0.0010968301,0.039231975,0.047640514,-0.0034543506,0.05763156,-0.0067728893,0.038358055,-0.0075641423,0.057678796,-0.03389397,0.028603204,-0.012919862,-0.0033539678,-0.026666407,-0.0032092985,-0.029571604,-0.024021022,0.00023102816,-0.0070799426,-0.019639608,-0.005394101,0.018187009,-0.04917578,-0.0000147045175,0.008951787,0.011833365,-0.016155733,-0.014207124,-0.02228499,0.024209978,0.031815454,-0.05994627,-0.012412042,0.03682279,-0.005910778,-0.07822776,0.004030076,0.0010842823,-0.013285964,0.021741742,-0.0011684267,-0.050262276,-0.033043668,0.005704107,0.007806242,0.022922717,0.004334177,-0.015163713,0.00014402354,-0.015140094,0.029996755,-0.0035635908,0.0032594898,0.0006598695,0.009170268,-0.027941858,-0.030398285,0.0028786254,0.012187658,0.03755499,0.018954642,0.0070917523,-0.0075523322,-0.042916615,0.038688727,0.03932645,0.062875085,0.026619166,0.033445198,-0.014006359,0.012884432,0.04173564,-0.020360002,-0.0065189796,0.033327103,0.04686107,-0.0036403541,0.019108169,0.025036661,0.039775223,0.035618193,0.008278632,-0.033657774,-0.0045703715,0.024257218,-0.0362323,0.017502043,-0.0034248263,-0.06594562,0.01858854,0.0012710239,0.05290766,0.017927194,0.044829793,0.033964828,-0.013404061,0.057300888,0.006855557,-0.006459931,0.027445849,0.05805671,-0.048231002,0.012919862,0.056922976,0.0034307311,-0.034177404,0.062024783,0.005772013,0.0019471318,0.0020002758,0.002747242,-0.039727986,0.047120884,-0.036988124,0.029500745,-0.009223412,-0.0118274605,-0.038759585,0.011467263,-0.004573324,-0.05715917,-0.015907727,-0.060229704,-0.01621478,0.007386996,0.025886962,0.0019057977,0.02739861,0.03618506,-0.01347492,-0.0019781324,-0.0641033,-0.024021022,-0.042892996,-0.0023088052,-0.034531698,-0.008260917,0.033256244,0.033563297,-0.01994666,-0.011071636,0.029406266,0.05711193,0.0361142,-0.04360158,0.010835442,0.006601648,0.03531114,0.002387045,0.011443644,-0.040578287,-0.00017733072,-0.005627344,0.013203296,-0.018789306,0.033043668,0.024174549,0.032264225,-0.031012392,-0.020135617,-0.031272206,-0.041263252,0.020324573,-0.033728633,0.0036285443,-0.052765943,-0.041097917,0.029831417,-0.060749333,-0.015659723,0.017750047,0.008101486,0.007570047,0.004703231,0.026501069,-0.057489842,0.005311433,-0.03847615,0.06542599,0.024564272,-0.025792485,-0.008945882,0.01209318,-0.00008317567,-0.038783204,0.032264225,0.016297448,-0.044475503,0.048514437,0.010333528,-0.012990721,-0.007977483,0.01019181,-0.013061578,-0.02418636,0.052340794,-0.030965153,0.027752902,0.051207058,0.008827785,-0.0150101865,0.0073633767,-0.030705338,0.019450651,0.017903574,0.0010739488,0.038688727,-0.009737135,0.02416274,0.0031295826,0.004561514,0.012223087,-0.028225292,-0.05252975,0.010723249,-0.018765686,0.048514437,0.05805671,0.043837775,0.010404386,0.022556614,0.027233273,0.04175926,-0.06887443,-0.030020373,-0.033964828,0.03767309,0.03398845,0.03115411,0.0464123,-0.012400233,-0.011520407,-0.05309662,0.015069235,0.022532996,0.013923691,0.039657127,-0.055411328,-0.028201673,0.020489909,0.050120562,-0.02130478,0.046648495,-0.031059632,-0.008467588,0.021611834,-0.0052996236,0.0063300235,0.01046934,-0.02458789,-0.008993122,0.01621478,-0.021257542,0.022922717,0.026784504,-0.07071676,0.048986826,-0.005237622,-0.062402695,-0.026784504,0.01578963,0.05205736,-0.00579268,-0.054655503,0.030705338,-0.00950094,0.0006646672,0.036444876,0.0131678665,0.01952151,0.008402634,0.036988124,-0.009111219,0.031319447,-0.0053557195,-0.013699305,-0.050356757,0.05059295,-0.003787976,0.002700003,0.021009538,0.014148075,-0.044286545,-0.014112646,0.024304457,0.009683992,0.034767892,0.016462786,0.00045024656,0.03108325,0.009802089,0.011567646,0.051254295,0.06934683,-0.002016514,0.019391602,-0.040153135,0.024753228,-0.025225617,-0.029406266,0.00950094,-0.011744793,0.019816753,0.0058960156,-0.0047061834,-0.009300175,-0.0066666016,-0.012955291,-0.01810434,-0.029973134,0.007522808,-0.004334177,0.000013828013,-0.029453507,0.014029978,-0.049270257,-0.030610861,-0.024103692,-0.030894294,-0.029075595,-0.0006251784,-0.010864966,-0.026690025,0.018423203,-0.067693464,0.017998053,0.01997028,-0.0003509709,-0.033657774,0.010504769,0.0038499772,0.0062001166,0.0029184835,-0.022662902,0.014289793,-0.067457266,-0.03155564,0.02284005,-0.0038145478,-0.01488028,-0.013852832,0.04879787,0.0037348322,-0.020289144,-0.037318796,-0.026855363,0.031413924,-0.0027649568,0.0129789105,-0.027020698,0.01390007,0.028957497,-0.017041463,0.034082927,0.015305431,0.003979884,0.029571604,0.007853481,-0.015860489,-0.0021065634,-0.0069323205,-0.0037997856,-0.004667802,0.028744921,0.010286288,-0.023111673,0.009430082,0.012896243,0.0017301277,-0.023194341,0.02687898,-0.05238803,-0.030965153,0.017584711,0.036326777,-0.015364479,-0.021895269,-0.024965802,-0.0025405716,0.03198079,-0.002821053,-0.029146453,0.0024948088,-0.009199792,-0.03899578,0.04593991,0.023572253,0.009430082,-0.007162611,-0.008993122,0.030705338,0.05758432,-0.03814548,-0.009187982,0.003855882,0.0029849133,-0.028697683,0.016840698,-0.011095257,0.0037732138,0.015978586,0.007953864,-0.047309842,0.024422554,0.038617868,0.009855233,-0.0157542,-0.008786451,0.014585036,-0.025060281,-0.019734085,0.0125183305,0.0129789105,0.005154954,0.0172068,0.026099538,-0.0015426481,0.014431509,0.010197716,0.018470442,-0.017383946,-0.015435338,-0.02739861,0.0019973232,-0.014159885,0.01717137,0.020076567,-0.010522484,-0.036350396,-0.026808122,-0.012766335,-0.0080365315,0.01343949,0.03807462,-0.024705987,-0.020230094,0.004053695,-0.0036521638,-0.010032379,-0.004679612,-0.015482577,-0.034626175,-0.014419699,0.0023161864,-0.01811615,0.004723898,0.009790279,0.005704107,-0.015140094,0.008928168,0.024942184,-0.0069854646,0.032264225,0.016793458,-0.02789462,-0.009908376,-0.0062414506,0.00232652,-0.02510752,-0.018753877,0.03157926,-0.035547335,0.028201673,0.013959119,-0.027776523,0.01000876,-0.026831742,0.0012245231,-0.012600998,0.0054561025,-0.0023442346,-0.0002238316,0.029666081,0.022166893,-0.03531114,0.032311466,0.009672182,0.016876128,0.03486237,0.026146777,0.033610538,0.031862695,0.0032181558,0.008491207,-0.039680745,0.0010636152,0.0028594346,-0.0077412883,-0.017738238,0.012600998,0.0004336391,-0.02320615,0.012010511,-0.018269677,0.042562325,-0.0025390952,0.026690025,-0.03391759,0.021930698,0.012211277,0.019214457,-0.01439608,0.005721822,0.021623645,0.023713969,0.016628122,-0.017714618,0.002482999,0.009223412,-0.013781973,0.017088702,0.003348063,0.0065248846,-0.034012068,0.00250219,0.00927065,0.018068912,0.008691973,-0.030516382,0.030091232,-0.040153135,-0.017466614,0.003300824,0.029925896,-0.013203296,0.005910778,0.0069972742,-0.0037259748,0.006082019,-0.0038115955,-0.024174549,-0.002801862,-0.014726753,0.027941858,-0.016876128,0.014289793,0.013640257,-0.008987216,0.015081045,0.005650963,-0.012660047,0.009205697,-0.008999026,0.017218608,0.012412042,0.026382972,0.010144572,0.0061942115,0.022438517,0.00091820775,-0.0315084,0.024540652,-0.048042044,-0.03519304,-0.017360326,0.015482577,-0.0056184866,-0.008184154,-0.012648238,0.0066606966,-0.020891441,0.0111365905,-0.005284861,-0.03068172,0.000097522665,0.02320615,-0.03531114,0.049978845,-0.015187333,-0.021470118,-0.0074991887,0.07988112,-0.016415546,-0.03016209,-0.010711439,-0.068968914,0.046719354,0.047427937,0.003997599,0.012305755,-0.041003436,0.021552786,0.016887937,-0.07605476,-0.017466614,-0.034626175,0.02829615,-0.01346311,0.002826958,-0.025036661,-0.033303484,-0.011792031,0.012412042,-0.03897216,-0.029618843,-0.005506294,-0.014750373,-0.05385244,-0.038358055,0.0126128085,-0.0028254816,-0.044404645,-0.0077767177,0.0025450003,-0.0022984718,-0.09244669,-0.011514502,0.04133411,-0.022166893,-0.015222763,0.050923623,0.0053202906,0.030776197,-0.029784178,-0.0022645188,0.021352021,-0.017950814,0.002050467,-0.0033510153,0.030847056,-0.00011726708,0.039727986,-0.018340535,0.022816429,-0.0009610181,-0.015860489,0.015931347,0.0043666535,0.032358702,0.00034285168,-0.00019135479,0.0038027382,0.014514177,0.052293554,-0.018895593,0.01112478,-0.004836091,-0.028768541,-0.00879826,0.016344689,0.03446084,0.0036639736,-0.017147752,0.004611706,-0.022592044,-0.012494711,-0.025910582,-0.00976666,0.01045753,-0.0005011761,-0.03157926,-0.019438842,0.0013485253,0.022131464,0.00765862,-0.0050161895,0.013392252,-0.00029395195,-0.014762182,-0.017336708,0.00082446786,-0.029288169,0.045585617,-0.018364154,-0.01183927,0.0003120356,0.025768865,-0.0071448963,-0.021233924,0.021682693,-0.04220803,-0.0013020245,0.010380766,-0.016179351,0.014915708,0.03190993,0.015057426,0.030847056,0.04797119,0.0029701511,0.028012717,-0.0043135094,0.005810395,0.016970605,-0.013451301,0.0020519432,-0.027658425,0.063253,0.034295503,0.0122467065,0.00061115436,-0.025698006,0.036350396,-0.009660372,-0.049459215,0.016994225,-0.013215105,-0.0065248846,0.0073102326,-0.0068024136,0.033634156,0.010900395,0.026713645,-0.019167216,-0.02370216,0.026288494,-0.006070209,-0.030067613,-0.03198079,-0.027823761,0.040176757,-0.031012392,0.05064019,0.003625592,-0.0011558789,-0.016108492,0.034933228,-0.03472065,0.025154758,-0.01209318,-0.020088378,0.03774395,0.016132113,0.026524689,-0.0023368534,0.005196288,0.011874699,0.0009610181,0.028886639,-0.011130685,0.011650315,0.02232042,0.005999351,-0.015919536,0.032594897,-0.016061254,-0.031130489,-0.002813672,0.014927519,0.02180079,0.011561741,0.031744596,-0.02553267,-0.060229704,-0.023619492,-0.030280188,-0.0024372363,-0.0005465698,-0.028012717,0.0069441306,0.007227564,0.00037311416,0.01440789,-0.0033628251,-0.033516057,-0.0038854063,-0.018907404,-0.01486847,-0.0063536433,-0.050073322,0.0064953603,-0.041641165,-0.0066370773,0.027989097,0.065378755,-0.0006351429,-0.0021346116,-0.006743365,0.027918238,-0.039302833,0.0023117578,-0.019580558,-0.015281811,-0.031886313,0.003342158,-0.013581208,0.0185413,0.0064776456,-0.0044197976,-0.002801862,0.0151991425,0.034697033,-0.027351372,0.0102567645,0.0066606966,0.009199792,0.023347868,0.00087096874,-0.008308156,0.028886639,0.004304652,0.009058075,-0.025485432,-0.003808643,-0.04690831,-0.00696775,0.033610538,0.023536824,0.018175198,-0.00042515085,-0.016781649,-0.00090565986,0.01808072,-0.004006456,-0.004239699,0.016911555,0.034082927,0.0021626598,-0.029453507,0.03807462,0.010924015,-0.04643592,-0.006554409,-0.0180571,0.02087963,0.020608006,0.031130489,-0.004499513,-0.0076999543,0.034130163,-0.019604178,-0.041050676,-0.027115176,-0.006902796,-0.01046934,-0.0039503598,-0.011573551,0.05205736,-0.018871974,-0.024540652,0.020584388,-0.03892492,0.008544351,-0.01909636,0.013781973,-0.015364479,-0.0020932774,-0.020466289,-0.030020373,0.024398934,-0.009099409,0.0008274203,-0.013841022,0.010463434,0.020230094,0.0013883832,0.011957368,-0.012813574,-0.036350396,-0.035476476,-0.025579909,0.027351372,0.028555965,0.0063359286,0.008060152,0.004540847,0.0072157546,0.013108818,0.005600772,0.016391927,-0.01045753,0.032665756,-0.007386996,0.0012097608,0.01907274,0.03897216,0.008957692,0.023088053,-0.037531372,-0.015116475,0.014313412,0.002116897,-0.013545779,0.0070445132,0.0049423785,0.047711372,0.016439166,-0.0059875413,0.022107843,-0.010746868,0.019403413,-0.029618843,-0.0029199596,-0.0025878106,-0.008290442,-0.017053273,0.007203945,-0.018978262,0.009170268,-0.0111484,0.004635325,-0.007906625,-0.002468237,-0.010032379,-0.022910906,0.02834339,0.035429236,0.0042456035,-0.039350074,-0.00036960814,-0.0048980922,-0.031413924,-0.008632924,0.03951541,-0.009908376,-0.060229704,0.035594575,0.0034130164,-0.011567646,-0.009624943,0.010309908,0.023997404,-0.0021552786,0.030941533,-0.0014658847,-0.014077217,0.008715592,0.013640257,0.004726851,0.011703458,0.01667536,-0.0095658945,-0.03528752,0.012063655,-0.017797288,0.040294852,-0.014443319,-0.0052258126,-0.001616459,-0.023135291,-0.011526312,0.0074047106,-0.0032033934,-0.011396404,-0.036964506,0.036799166,-0.029429886,-0.0027354325,-0.00021829577,0.00477409,0.004647135,-0.029382648,0.040578287,0.0056184866,-0.040223993,-0.06405606,-0.01488028,-0.028603204,0.006270975,0.012813574,0.031744596,-0.0077826222,-0.021174874,0.03016209,-0.03287833,0.045325805,-0.017112322,0.00015500291,0.039727986,0.047026407,0.046672117,0.030280188,0.006855557,-0.017313087,-0.0152936205,-0.007150801,0.016521834,0.053332813,0.033114526,0.022155084,-0.0057513462,0.027658425,0.024540652,0.020348191,-0.020537147,-0.0017817954,0.031933554,0.0012902147,-0.004402083,-0.023395106,-0.02881578,0.038877685,-0.026382972,-0.002739861,0.019934852,0.017065082,-0.036374018,-0.0039267405,0.004679612,-0.023938354,0.005459055,-0.006642982,-0.020171046,-0.0023088052,0.0061056386,0.040743623,-0.048608914,-0.029831417,-0.012742716,-0.006690221,-0.028201673,0.019403413,-0.023430536,0.0053409575,0.008863214,-0.02602868,0.01904912,0.0102567645,-0.016226592,0.019568749,0.0031000583,0.030894294,0.06736279,-0.005736584,-0.010180001,-0.039208356,0.0031561546,-0.002016514,0.012990721,0.013829213,0.0015884108,-0.0071212766,0.019651417,0.0068201283,0.04504237,0.056828495,-0.0015042664,0.03620868,0.004771137,0.009335604,0.03013847,0.020537147,-0.041050676,0.006465836,-0.003415969,0.02134021,-0.0029745798,0.0010931396,0.037885666,-0.019580558,0.03627954,0.0033539678,0.018435013,-0.0068614623,0.006324119,0.0157542,-0.04419207,-0.0132623445,0.023643112,0.0051254295,-0.004496561,0.020159235,0.015529816,-0.02881578,-0.011945558,-0.009713516,0.020501718,0.0025686198,-0.02178898,-0.02697346,-0.010752774,0.0020918013,0.009725326,0.01766738,0.01069963,-0.018718448,-0.019816753,0.022934526,0.0011898319,-0.006684316,-0.019757705,0.03446084,-0.012341185,-0.0044197976,-0.007056323,0.026335733,0.014289793,0.042373367,0.020714294,-0.018529491,-0.0020858964,0.035452858,-0.009719421,0.0072334693,0.03438998,-0.01577782,-0.035618193,0.039161116,-0.018812925,0.006826033,-0.0020327524,-0.009518655,-0.017726429,0.020194665,-0.008739212,-0.022462137,-0.00073552574,-0.021021347,-0.015718771,-0.010859061,0.012282136,0.01809253,0.0021021347,-0.013498539,-0.040790863,-0.0094714165,-0.036870025,-0.020029329,-0.011325547,0.015718771,-0.023277009,0.00062960706,0.018801115,-0.00452018,0.012849003,-0.016049445,-0.031839073,-0.02881578,-0.017915385,0.0075523322,-0.002333901,-0.009134838,-0.017490234,0.0066311723,-0.0037554991,-0.040790863,0.020395432,0.022214131,0.017442994,-0.0015736487,-0.016805269,0.013085199,-0.014195315,-0.049506456,-0.08498293,-0.00013350548,-0.025249237,0.011496788,0.031059632,0.032311466,0.005642106,-0.023347868,0.007829862,0.008331776,0.003442541,-0.0065248846,0.002462332,-0.00085251604,-0.025603529,0.038428914,-0.020135617,-0.00047681847,0.004939426,0.005376387,0.011154305,-0.031886313,0.0016489357,0.0072216596,-0.005134287,-0.011095257,0.0060347803,-0.004236746,-0.0017906528,-0.004588086,-0.024800466,-0.027705664,0.039539028,0.033185385,-0.008420349,0.016073063,0.016262019,0.002605525,0.007528713,-0.012211277,0.027682044,0.019757705,-0.004493608,0.03490961,-0.013203296,-0.00879826,0.005934397,-0.006406787,-0.005898968,0.014939329,0.000946994,0.016297448,0.03668107,-0.011573551,-0.016002206,-0.0025641911,-0.008804166,-0.027304132,-0.028059956,-0.021422878,-0.023465965,-0.0058960156,-0.01719499,-0.008331776,-0.0062473556,-0.012636428,0.00016856566,-0.017407564,-0.03951541,0.002454951,-0.0022910908,0.008745117,0.03984608,0.024729608,0.014325222,-0.0071921353,0.020041138,-0.006347738,-0.022521185,0.010244954,0.00053291477,-0.023135291,0.0061942115,0.01117202,-0.007014989,-0.017419375,0.030705338,-0.00250219,-0.012175848,-0.014159885,0.02737499,0.018281486,-0.016179351,-0.025839724,-0.008686068,-0.0070445132,-0.010593342,0.014785802,0.00021903387,0.01808072,-0.029146453,-0.0027782426,0.042042695,0.007014989,0.020820582,0.0012909528,0.028201673,-0.020289144,-0.018068912,0.0010924014,0.010327622,-0.000568344,-0.008804166,0.007883005,-0.024115501,-0.024942184,0.020501718,-0.007133086,-0.005910778,0.03715346,0.000034967918,-0.018175198,-0.01717137,0.01394731,-0.01348673,-0.01488028,0.028839398,-0.024517031,0.035878006,-0.036326777,-0.009601323,-0.002333901,0.007977483,0.017927194,0.027563946,0.0032594898,0.021600025,0.026642786,0.014159885,-0.009447796,0.023773018,0.010711439,-0.008314061,0.01947427,-0.007227564,0.030209329,0.05862358,0.019769514,-0.0021006586,0.0007698478,0.035523716,-0.01630926,0.030445525,-0.010900395,-0.0141835045,0.00453199,0.01949789,-0.009111219,-0.00006029429,0.009666277,-0.01811615,-0.020749724,-0.015364479,-0.009648562,-0.020773342,0.0061233533,0.034082927,-0.0139355,0.006129258,0.001481385,-0.0501678,0.015470766,0.049978845,0.015187333,0.0007860862,0.0043459865,0.0029804846,-0.006235546,-0.025627147,0.03748413,-0.01204594,-0.014809421,-0.023879306,-0.00046390158,0.025603529,0.002043086,0.04549114,-0.00765862,-0.00049416407,0.0147385625,0.023643112,-0.011603075,-0.030799817,-0.017903574,-0.016982414,0.022202322,0.003956265,-0.014159885,-0.013793783,-0.008869119,-0.024032833,0.036515735,0.014502368,-0.0102154305,0.005515151,0.020513529,0.001035567,-0.038806826,-0.006879177,0.02510752]},{"id":"interface-APIApplicationCommandOptionValue","type":"interface","source":"main","text":"Interface: APIApplicationCommandOptionValue\nDescription: Application command option value (string, number, or boolean).","meta":{"url":"/docs/typedefs/APIApplicationCommandOptionValue"},"embedding":[-0.010135305,0.0029120299,-0.031009931,0.0084340805,0.014086355,-0.034711618,-0.024404528,-0.0011463866,0.03322651,0.04195983,0.025645813,-0.026909262,-0.011088434,0.02529116,-0.0025920114,-0.027840225,-0.046282157,0.027197417,-0.01728931,-0.004120065,0.005630109,-0.036418382,-0.042292316,-0.0020420228,-0.016857078,-0.021146158,-0.00035465255,-0.012989149,-0.023540063,-0.041804668,0.0019381207,-0.045971837,0.024338031,-0.0025573773,-0.048543066,0.0016070193,0.053064886,-0.011121682,0.021966292,-0.053729862,-0.039255604,0.010573079,0.03905611,0.060069274,-0.015094899,0.04459756,-0.02291942,-0.051291626,-0.008267838,-0.026621107,-0.0384798,-0.034423463,-0.003319326,0.0011650891,0.05177927,0.011625954,-0.01556038,-0.02084692,-0.008134843,0.00758624,-0.039255604,-0.03834681,-0.0011533134,0.026798433,0.02307458,0.023517897,-0.051069967,0.058163017,0.021600557,0.034401298,0.019228818,-0.009027015,-0.021833297,0.06871393,0.013687371,0.022221198,-0.03400231,-0.0032029557,0.022808593,-0.048986383,-0.051557615,0.015671209,-0.03821381,-0.072349116,-0.00091226056,0.027108753,-0.013365968,-0.010622952,-0.018497346,-0.016203187,-0.018419767,0.01827569,0.024515357,-0.0071761725,-0.030256296,0.01540522,-0.011614871,0.00037162323,-0.034379132,-0.028837685,-0.021135075,-0.02058093,-0.018497346,0.0351106,0.018364351,0.022963753,0.019594554,0.036617875,-0.002644655,0.00067051494,-0.051380288,0.013177559,-0.03675087,0.019982455,0.013388134,-0.016890328,0.028483033,-0.0015238976,-0.0032666824,-0.049030714,0.013975527,-0.03218472,0.010113139,-0.04668114,-0.0318079,0.010151929,-0.042380977,0.009071347,-0.0021223738,-0.006832603,0.02460402,0.03901178,-0.004688063,-0.0080683455,-0.0073368745,-0.037504505,-0.012978067,0.05590211,0.00019100672,0.027640732,0.018397601,-0.00016849459,0.05053799,-0.00031136,-0.020558765,0.008173632,-0.048410073,0.025823139,0.019960288,0.014939738,-0.017355809,0.047346115,0.018608175,-0.023806052,0.028217044,-0.039765418,0.036462717,0.0053170174,-0.021279152,-0.009038098,-0.0047296244,0.0034661745,0.008461788,0.005430617,-0.046016168,0.014995153,0.027153086,0.03233988,-0.04195983,0.02360656,0.028483033,-0.027020091,-0.02571231,-0.04164951,-0.017455555,-0.029436162,0.029391829,0.01092219,-0.06503441,0.009193259,0.047035795,0.009575618,-0.008960518,0.0027236207,0.010789195,-0.009553453,-0.011282384,-0.01383145,0.011060726,-0.01984946,0.015349805,0.027884556,0.031054264,-0.027574236,-0.01616994,0.0071207583,0.0368617,-0.014075273,-0.0072980844,-0.05630109,0.047168788,-0.0056578163,0.0553258,-0.023362737,-0.0005991689,-0.0007716464,0.004934658,-0.030189797,-0.037083358,-0.019727549,0.011371047,-0.004325099,-0.047390446,0.0072371284,-0.010850151,-0.014784578,0.0610889,0.0042447476,-0.007154007,-0.026931427,0.011515125,0.016535675,0.029037178,-0.00019308476,-0.050759647,0.0064280774,-0.042159323,-0.02084692,0.018264607,-0.0058074356,-0.029081509,-0.03570908,0.013465714,-0.05062665,-0.039721087,0.0044830297,0.009935813,0.027175251,0.017444473,-0.02042577,0.017688295,0.010855692,0.032295547,0.009376126,-0.000076497934,0.020381438,0.0309656,-0.01997137,-0.01249042,-0.0025199726,-0.027330412,0.02897068,0.017145233,-0.04406558,-0.004524591,-0.04499654,0.032406375,0.0014421613,0.057897028,0.012966984,0.0035049645,-0.012157933,-0.005380744,0.0047961217,-0.019406144,0.04085154,0.016923577,0.015782038,-0.048099753,-0.0023592706,0.007403372,0.040053573,0.05568045,0.019262066,0.0021126764,-0.05062665,0.03444563,0.03158624,0.022941587,0.05452783,-0.08923945,-0.02100208,0.038834453,0.017843457,0.029702151,-0.009813901,0.05510414,0.01011868,0.011614871,0.0077580246,-0.019805128,0.014884324,0.051912267,-0.06840361,-0.010822444,0.017610716,0.020592013,-0.043289777,0.08649089,0.017566385,0.0141639365,0.010024476,0.0014199956,-0.043201115,0.0032251216,-0.016845996,0.033470333,0.011681369,-0.03322651,-0.027153086,0.03996491,-0.013299471,-0.022176867,-0.024737015,-0.07332441,-0.008273379,0.034822445,0.037105523,-0.012501502,0.019893792,0.036994692,-0.0018577698,0.007990765,-0.018796586,0.022420691,0.004410991,0.004580005,-0.010611869,0.05200093,-0.0027347037,0.011692451,0.01456292,-0.009021474,0.006583238,0.028992845,0.018198108,-0.040762875,0.008605866,0.005968137,-0.008157008,-0.042513974,-0.027263915,-0.016890328,0.0013521129,-0.008655739,-0.04885339,-0.04089587,0.0134324655,0.06250751,0.026421614,-0.02184438,-0.0043971376,0.011980606,-0.0327167,-0.042070657,-0.05541446,0.03632972,-0.029281002,-0.040519055,0.029347498,-0.026665438,0.0016624338,0.011947358,-0.015582547,0.0120914355,-0.024315866,-0.035576083,-0.020525517,0.0045079663,-0.012401756,0.0071207583,-0.025667978,0.012423922,-0.0018563844,0.031032098,0.007996307,-0.006721774,0.015272225,-0.0075363666,-0.01057862,0.056389757,0.007442162,-0.035864238,-0.010356963,0.026266454,-0.033625495,-0.018464098,0.087776504,0.006128839,0.0022262759,0.052444246,0.031697072,-0.015128148,-0.017677212,-0.000607481,0.069955215,-0.008262296,0.05200093,0.043201115,-0.06490142,0.0043666596,-0.007763566,-0.014463174,0.05505981,-0.020758256,-0.038524132,0.029790813,0.026377283,0.048011087,0.036573544,0.05740938,-0.00954237,0.047567774,0.04342277,0.036041565,-0.03191873,-0.042292316,0.004663127,0.047080126,-0.007403372,-0.010284924,0.05204526,-0.008943894,-0.034622956,-0.008966059,0.015006236,-0.011891943,0.008533827,0.045883175,-0.038546298,-0.00070549536,0.03865713,0.031630576,-0.034379132,0.033315174,-0.0443759,0.033315174,-0.0075474493,0.036728702,0.045705847,-0.05231125,0.0044082203,0.03065528,-0.00900485,-0.035686914,0.023517897,0.0070875096,-0.010417919,0.032894023,-0.030899104,-0.037305016,-0.0045994003,-0.052532908,0.044087745,0.020636344,-0.018486263,0.029192338,-0.01946156,0.014230434,0.035930738,-0.015094899,-0.01889633,0.0102627585,0.020858003,-0.022110369,0.01889633,-0.0036878323,0.011393213,-0.053020556,0.00916001,-0.04433157,-0.0033664284,0.036263224,-0.01490649,-0.004255831,-0.026000464,0.08148142,-0.010534289,-0.013665206,-0.013997693,0.00044643274,0.044043414,-0.011448627,0.010584162,0.045617186,0.07394505,-0.00021750176,0.046769805,0.010096515,-0.0029452785,0.010301548,-0.03302702,-0.0007252367,-0.008079428,0.02533549,0.035354424,-0.010196261,-0.014418842,0.009824984,-0.015937198,0.010822444,-0.032406375,0.010157471,-0.03107643,0.06964489,-0.02549065,0.07434404,-0.02996814,-0.052843228,0.007248211,-0.042181488,-0.023717389,-0.004222582,-0.02142323,-0.06676334,-0.0005513739,-0.0018148236,-0.01456292,0.017732628,0.037504505,-0.028460868,-0.0180097,0.022442857,0.012058186,0.0066663595,-0.021234822,-0.039144773,-0.04668114,-0.0018189796,0.0025809284,-0.017311478,-0.011171555,-0.03816948,0.040762875,-0.00728146,0.0012392058,0.028084049,0.022276614,0.046503816,0.028150545,-0.020303858,-0.051557615,0.037637502,0.014518589,-0.037969988,0.029546991,-0.010861234,0.007874395,0.024249367,0.0076970686,-0.03460079,0.02571231,0.011321174,-0.017865622,0.042979456,0.040053573,-0.0066275694,-0.0024049876,0.009570077,-0.012545833,0.019516973,-0.038878784,0.04805542,-0.03954376,-0.00900485,-0.019217735,0.005064882,0.00034062576,0.002655738,0.010977604,-0.015715541,0.040519055,-0.019472642,0.07873286,0.0131886415,-0.009586702,0.034977607,-0.00017239092,0.020713925,0.02229878,0.01751097,-0.029458327,0.02560148,-0.00053578854,0.009791736,-0.010927731,0.029281002,0.01605911,-0.004519049,0.0007127685,0.026111294,-0.01390903,-0.012556917,0.028483033,-0.024692684,0.013099979,-0.016912494,0.018497346,-0.024958674,0.0140420245,-0.0021930272,-0.031830065,0.006162088,-0.003299931,0.04668114,0.046548147,0.02034819,0.0016070193,0.015194645,-0.008362042,-0.006500116,0.0073867477,-0.03874579,-0.02549065,-0.030101135,0.03007897,0.011758949,-0.015150313,0.024515357,0.0070764264,-0.07425538,0.02360656,-0.029724317,-0.009453707,0.007392289,0.030256296,-0.0040452555,-0.03081044,0.005450012,-0.0026959134,-0.03417964,0.03023413,-0.0007661049,-0.01624752,-0.024005543,0.015238977,-0.02549065,0.015992614,0.016036944,-0.038900953,0.034135308,-0.021378899,-0.015992614,-0.012966984,0.010379128,-0.036728702,-0.013842532,0.006915725,-0.0057963524,0.021888712,0.0009067191,-0.034379132,0.013088896,0.0062784585,0.014496422,0.003881783,-0.020337107,-0.008411915,-0.01935073,-0.0023855926,-0.0076582786,-0.0068436856,0.020292776,-0.040718544,-0.000038725182,0.041361354,0.005297622,0.0015377513,0.0016832142,-0.011470794,0.007431079,0.010755947,-0.03329301,0.014053107,-0.023008084,0.012933735,0.00066081743,0.01532764,0.004208728,-0.0040036947,-0.012556917,-0.000013160934,0.004017548,-0.026665438,0.024382362,0.012590165,0.025956133,-0.015105982,0.022099286,0.012833989,0.012047104,-0.0011734013,-0.017976452,0.004255831,0.0045966296,0.0124571705,0.028217044,0.0016762874,-0.004962365,0.033559,-0.023806052,-0.0059792204,-0.016114525,-0.017533135,-0.05514847,-0.028327873,0.009874857,-0.022985918,0.03537659,0.022852924,-0.012656663,0.013853615,-0.05989195,0.0112380525,-0.02268668,0.008833065,0.0018148236,-0.003790349,0.032472875,0.026931427,-0.021511894,-0.031741403,-0.013321636,0.0071041337,0.0128229065,0.029524824,-0.026177792,0.014839993,-0.007963058,0.04322328,-0.000029092591,-0.025800973,-0.02628862,0.043090284,0.0012696838,0.028682524,0.02897068,0.014341262,0.031697072,-0.0014934198,0.039410762,0.02628862,0.0014518589,0.0077081514,-0.02084692,0.012401756,-0.018109446,-0.0137982005,-0.031408917,0.018885247,0.0048681605,0.005474949,0.014784578,0.02744124,0.0013999077,-0.015737707,0.030522285,-0.031009931,-0.038634963,0.016469177,-0.053729862,0.00027672597,-0.012479337,0.043821756,-0.012102518,-0.023628727,0.013532211,-0.04459756,0.032051723,0.019805128,-0.014130687,0.021090744,-0.06077858,-0.037770495,0.022210116,-0.05736505,-0.047789432,-0.04116186,-0.027906721,-0.00080420234,-0.014097439,-0.007525284,-0.01122697,-0.034379132,0.0027540987,-0.033426,0.009110137,-0.0077857315,0.004225353,-0.013465714,-0.0192399,0.008290003,-0.020514432,-0.058694996,0.05062665,-0.0025338263,0.034955442,-0.06618703,0.009514662,0.026864931,0.0014352346,-0.022719929,0.025933968,0.041583013,0.032406375,-0.029502658,0.005430617,0.014197185,0.0054389294,0.03296052,-0.00498176,-0.0067661055,-0.01961672,0.011614871,0.010379128,0.015294391,0.0004211499,-0.014540754,0.039166942,-0.029857311,0.08263405,-0.009448165,0.047656436,-0.0046132538,0.013521128,0.041051034,-0.026554609,-0.024847845,0.007464328,0.012446088,0.0049762186,0.026598942,-0.020913417,-0.012157933,-0.03754884,-0.028261375,-0.025645813,-0.006189795,-0.053020556,0.00047206195,0.019838376,-0.013277304,-0.030034637,-0.0064336187,0.0060346345,0.0054250755,-0.007154007,0.0059958445,0.012612331,-0.016391598,-0.028194878,0.0020877398,0.0027153085,-0.014319097,0.004879243,-0.022697764,-0.018065114,0.020858003,0.024072042,-0.03566475,-0.0114818765,0.014119605,-0.0128229065,0.01892958,0.015427385,0.007719234,-0.0043528057,0.009741862,0.0226091,0.026532443,0.04027523,-0.0033082434,-0.013742786,0.007403372,-0.013321636,0.014463174,-0.014086355,0.04426507,-0.02080259,0.025845304,-0.034024477,0.0061565465,0.03985408,-0.014884324,-0.021667054,-0.008489495,-0.0654334,0.035265762,0.007115217,0.0043278695,0.005089818,0.021833297,0.017278228,0.021600557,0.026798433,-0.04805542,-0.008650198,0.06170954,0.015216811,-0.0025393676,-0.012689912,-0.014175019,0.018785503,-0.020680677,0.013498963,-0.011548374,0.008506119,-0.04911938,-0.018264607,-0.026488112,0.023916882,0.0085837,0.007846688,0.044553228,0.029945975,-0.003130917,0.01789887,-0.011936274,0.010307089,-0.03448996,-0.034622956,-0.0014449321,0.0030228589,0.008040639,-0.029458327,-0.029524824,0.033470333,-0.012290928,-0.010600787,-0.00862249,0.031032098,-0.006090049,-0.008705611,-0.009065806,-0.014285848,-0.054705154,-0.05505981,-0.001590395,0.0011075966,0.015294391,-0.019284232,0.015449552,0.0017400141,-0.002655738,0.004402679,0.007093051,-0.02854953,0.021079661,-0.014208267,-0.0017621799,0.0032140387,-0.06920158,0.0072038798,-0.030367125,-0.03548742,0.023628727,0.048764724,-0.041250523,-0.020869086,0.008833065,-0.013410299,0.0030561076,-0.036662206,0.013277304,0.008600324,-0.0023703536,0.029635653,-0.013443548,0.033448167,-0.03395798,-0.016413763,-0.002536597,0.008306627,0.0070819682,-0.021777883,0.038812287,-0.010334797,0.017732628,-0.021190489,0.0048570773,0.0043278695,0.05120296,0.017799124,0.04000924,-0.018109446,-0.014030942,-0.036883865,0.022420691,0.053596865,0.019938122,0.016469177,-0.029347498,0.016114525,-0.0154828,0.019051492,-0.009636574,0.021933043,0.0012537522,-0.0010972063,-0.004757331,-0.017721545,-0.011171555,-0.0017607944,-0.012257678,0.0016887557,0.00866128,0.024471026,-0.0091045955,0.032362044,-0.015870702,-0.004311245,0.03307135,-0.015471717,-0.026953593,-0.042779963,-0.02460402,0.017012239,0.027485572,0.012257678,0.004169938,-0.0146515835,-0.0023648122,-0.0016181022,0.028638193,0.022897255,0.008578159,0.006755023,-0.036928196,-0.0028870935,-0.0030893562,-0.013277304,-0.014518589,0.0093484195,-0.011260218,0.019683216,0.032672364,-0.0041366895,-0.0034634038,0.010207344,0.007974141,0.0006130225,0.0052837688,0.0052837688,0.038679294,0.03158624,-0.005702148,0.038723625,-0.0035021938,-0.016646504,0.013133227,0.014629417,0.012944818,0.0044276156,0.01383145,-0.012346342,-0.027529905,0.038945284,-0.0043057036,-0.0015335951,0.04947403,0.033470333,-0.03085477,0.013266222,0.027042257,-0.0077691074,0.01981621,0.01356546,-0.023251908,-0.0023745096,0.0081902575,0.04138352,0.017632881,0.013742786,-0.00973078,-0.006971139,-0.01682383,-0.0015973218,-0.026177792,-0.011293467,0.026776267,0.017765876,-0.02184438,-0.024338031,0.017621798,-0.028305706,-0.011559457,-0.016591089,0.004394367,0.02544632,0.014208267,-0.029303167,-0.013055647,-0.0014698686,-0.0041976455,-0.04000924,0.03564258,0.018342186,0.004879243,0.03238421,-0.003061649,0.0054056807,-0.0054056807,0.011648119,0.030056803,0.024360197,-0.0076859854,0.024847845,-0.0069434317,-0.0037293932,0.017965369,0.012545833,0.023916882,0.009830525,-0.014274765,-0.009442624,-0.02854953,0.0051978766,0.035553917,-0.026465947,-0.013299471,0.016158856,-0.015992614,-0.037061192,-0.0073978305,-0.005768645,0.01766613,0.0063782046,-0.00091641664,-0.00827892,0.020337107,0.009054723,0.01517248,0.0006407297,-0.032517206,0.048676062,0.034933276,-0.013033481,-0.024892176,0.0025629187,0.0017303166,-0.028815519,0.036617875,0.018597092,0.03069961,0.0036961446,0.029591322,-0.02571231,0.03276103,0.0024146852,0.012612331,-0.017987534,0.027529905,-0.0084950365,0.00490418,0.0039759874,-0.03123159,0.016701918,0.007342416,0.0014643271,0.033559,0.0018037406,-0.027175251,-0.02073609,0.038368974,-0.0024922653,0.058960985,-0.029480493,-0.008040639,-0.0012073426,0.030056803,0.010894483,-0.0009136459,-0.014186102,-0.010855692,0.00429185,0.045018706,-0.012013855,-0.018696839,0.021944126,0.02755207,0.0052865394,-0.009304088,-0.033426,0.030566616,0.007392289,0.03632972,-0.008533827,-0.013764952,-0.01966105,-0.021788966,-0.004311245,-0.009664282,-0.008816441,0.044353735,0.016845996,0.036396217,-0.019528056,-0.0012274303,-0.026864931,0.0036878323,-0.012623414,-0.0027831912,-0.020326024,0.047035795,-0.015105982,-0.019295314,0.0056550456,-0.040652048,-0.0013638884,-0.024958674,0.029214503,0.034512125,0.027263915,-0.0097751105,0.0053281,-0.0025546066,0.040940203,0.04133919,-0.011836529,0.031187259,0.0056661284,0.013155393,-0.0058573084,0.03069961,-0.03280536,0.015870702,-0.018364351,0.006882476,-0.0015142001,0.0021680908,-0.0073368745,-0.012856155,-0.0066885254,-0.013399216,0.028460868,-0.025667978,-0.025978299,-0.015504966,-0.009232049,0.025690144,0.015471717,-0.01414177,0.0034634038,0.03712769,0.025512818,-0.02249827,-0.012512585,-0.0043361816,-0.013853615,0.0018397601,-0.008539368,0.0014878783,-0.0067162327,0.04537336,-0.019738631,0.0133105535,0.0056467336,-0.052843228,0.011947358,0.010279383,-0.023407068,-0.00870007,-0.0028621568,0.024249367,0.0049983845,0.0050842767,0.010046641,0.0036490422,-0.025845304,0.03123159,0.013764952,-0.031940896,0.01241284,0.004771185,0.015161396,0.021190489,0.010977604,-0.010257216,-0.02518033,-0.0013057032,-0.020891251,0.015593629,0.014851076,-0.01390903,-0.021234822,0.010999771,0.013277304,0.023407068,-0.009736321,0.018065114,0.0069600563,-0.018796586,0.016291851,0.007913185,-0.02034819,-0.047833763,-0.00050600327,-0.046991464,-0.021489728,-0.034246136,-0.048232745,0.021190489,-0.048720393,-0.0013181715,0.024249367,-0.010994229,0.000965597,0.022110369,0.014518589,-0.0033525748,-0.021434313,-0.03149758,-0.024227202,-0.01624752,-0.03069961,0.0027915034,-0.02276426,-0.018175943,0.012180098,0.011947358,0.0089217285,0.014019858,-0.022786425,0.026000464,-0.019073658,-0.017721545,-0.0610889,0.009547912,-0.027485572,0.00490418,0.022941587,0.01847518,0.029990306,-0.026842766,-0.014629417,0.0044220737,0.03107643,0.04610483,0.00006203822,0.0009759872,-0.028261375,0.009813901,0.03065528,-0.019528056,0.008217964,0.017632881,0.009786193,-0.024249367,-0.0035631498,-0.0043583475,-0.030189797,0.007486494,-0.0120914355,-0.006189795,-0.0017067654,-0.0033387213,0.0072149625,-0.0010126992,0.032628033,0.001360425,-0.024537522,0.00012078621,0.028749023,-0.01874117,-0.004818287,-0.029037178,0.030167632,0.026111294,0.0065666134,0.04289079,-0.03280536,-0.008362042,0.022465022,0.008611407,-0.01697899,0.016236437,0.016901411,-0.032007392,0.031519745,0.011559457,0.019716466,0.0034550915,-0.02885985,-0.022365276,-0.015737707,-0.015660126,-0.0087998165,-0.008639114,-0.0056245676,-0.02000462,0.0022830758,0.019627802,0.008184716,-0.008062804,-0.0034356965,-0.009254215,0.035864238,0.004951282,0.03269453,-0.010822444,0.019683216,0.015105982,0.0076582786,-0.01789887,-0.015438468,0.013033481,0.027330412,0.0020641887,-0.0030394832,0.017278228,-0.004782268,-0.020514432,-0.0021362274,-0.015183562,-0.017034406,0.013022399,0.03333734,-0.008040639,0.014695914,-0.031408917,0.0040840455,0.027485572,0.012102518,0.023141079,0.007979683,-0.025113834,-0.02739691,-0.04490788,0.022808593,-0.026820598,0.026399449,-0.018464098,0.051601946,-0.004710229,-0.015205728,0.028039716,0.0007113831,-0.03905611,0.00781898,0.0023661975,-0.023163244,-0.02126807,0.0062729167,-0.007009929,0.019029325,-0.007492035,0.006300624,-0.02533549,-0.018131612,0.013543294,-0.0030228589,0.0016499655,0.029613487,-0.024737015,-0.01877442,-0.029502658,-0.01997137,0.008533827,0.0011754793,-0.009858233,0.035354424,-0.010700532,0.016236437,-0.018730087,0.027618567,-0.008821982,-0.0008727778,-0.014108522,-0.018519513,0.018175943,-0.042425312,0.061221898,0.04583884,-0.004488571,0.003621335,0.024803512,0.037039027,-0.0027624108,0.028217044,0.0044470103,-0.045439858,0.028926348,0.0052449787,0.0014781808,-0.01456292,0.016857078,0.0018065114,0.036617875,-0.013576543,-0.027751561,-0.023695223,0.01383145,0.037836995,0.014330179,0.022431774,-0.0012073426,0.00084784126,0.001260679,0.040408224,0.0034855695,0.0008686217,0.0035021938,-0.018608175,0.00065562234,-0.009426,0.026222123,-0.007464328,0.024471026,-0.03132025,-0.006771647,0.017799124,0.00724267,0.025512818,-0.037571006,-0.010013393,0.023872549,-0.013753869,-0.0118476115,0.040097903,0.013332719,-0.01693466,0.028882017,0.030433621,-0.010833527,0.016923577,-0.035553917,-0.0068880175,0.055192802,-0.01249042,0.03322651,0.008273379,0.018042948,0.0077358587,-0.014629417,0.021279152,0.044486728]},{"id":"interface-APIAttachmentPayload","type":"interface","source":"main","text":"Interface: APIAttachmentPayload\nDescription: API format for an attachment in a message payload.\nProperties: description: string | null, filename: string, id: number","meta":{"url":"/docs/typedefs/APIAttachmentPayload"},"embedding":[-0.01973963,0.024615318,0.020312078,0.011202239,-0.010985104,-0.052033663,-0.040663637,0.013057765,0.029905539,0.005660339,0.0013546321,-0.03369555,0.05227054,-0.045716982,-0.005788646,-0.0062673325,0.019068481,0.039577957,-0.0047917953,0.038334362,-0.013748652,0.015199515,0.022858491,0.042992912,0.010165909,-0.028405327,-0.009025945,0.024082348,-0.004619073,-0.030418769,0.05807399,-0.02562204,0.06735162,0.053691793,-0.0017013093,0.020331819,0.034879927,0.047493547,-0.01865395,-0.02724069,-0.046072297,0.008942052,0.03559055,0.008690372,-0.016749077,0.04903324,0.0112614585,0.031070177,-0.0023884953,0.03154393,-0.0025242053,0.027536783,-0.0010159741,0.026174748,-0.0052458066,-0.00829558,0.0022157733,0.041374262,-0.01814072,0.023213804,-0.051915225,0.004332849,-0.009672418,0.0023588857,-0.020548955,0.00611435,-0.03259013,0.051915225,0.036005083,0.01757814,0.07931383,0.049230635,-0.03243221,0.050336055,0.010175779,-0.018357856,-0.051125642,-0.0024230396,0.022720315,-0.03359685,-0.024812715,0.04267708,-0.04958595,-0.04623021,-0.010165909,0.019423796,-0.009756312,-0.0512046,-0.04275604,0.029135693,-0.04161114,0.0119128665,-0.053297002,-0.031208355,-0.00212201,-0.023332242,-0.010402785,0.01704517,-0.00083770056,0.02724069,0.02451662,-0.017676838,-0.026352406,0.0017864365,-0.0032940507,-0.020943748,-0.02558256,-0.002321874,0.001955457,0.006287072,-0.0148442015,0.030675385,0.021002965,0.025148287,-0.028425066,0.00030688956,0.0042070085,0.04267708,0.040782075,-0.00032724606,-0.019107962,-0.0043353164,0.05866618,0.021733332,-0.0095786555,-0.011073932,0.015238994,0.022680834,-0.070549436,0.014044747,0.031859763,0.004809067,-0.0061192852,0.013097244,-0.0014582651,-0.025128549,-0.00017503499,0.015811443,-0.035787947,-0.043427184,0.046072297,-0.01814072,0.025385164,0.014617195,-0.018417075,0.03639988,-0.03610378,0.034386434,0.025306204,-0.023648076,-0.018752648,0.016956342,-0.057995033,0.0064104446,0.019867938,-0.036005083,0.005813321,-0.011330548,-0.0059268237,0.00008235127,0.021535937,-0.04512479,-0.004841144,-0.0137585215,-0.013610475,-0.0074418406,0.043545622,-0.0288396,-0.030221373,0.0053593093,-0.010708749,-0.046111774,-0.06344317,0.012633363,-0.02283875,0.013235422,0.060047954,-0.02021338,-0.027438086,0.016127277,0.059337325,0.02984632,-0.032372992,-0.052349497,-0.016650377,0.000115893214,-0.009519436,0.051678352,0.04220333,0.006005782,0.0048806234,-0.008507781,0.0070223734,-0.014557977,-0.004216878,-0.024832454,-0.007012503,-0.005438268,-0.025029851,-0.020015985,0.024931151,-0.019956766,0.05598159,0.020884529,-0.017133998,0.016729336,-0.011014713,0.0071260063,-0.03517602,-0.06747005,0.0004737511,0.0005638132,0.008399213,0.015505479,-0.00041638283,-0.030339811,0.029155433,0.027793398,-0.02343094,-0.017795276,-0.035353675,0.019433666,0.096171476,-0.02937257,-0.027260428,0.009583591,-0.05550784,0.0153870415,-0.021989947,-0.050336055,-0.024792975,0.048717406,-0.021970209,-0.023549378,0.002276226,0.018347986,-0.013018286,-0.0141927935,-0.009272691,0.006094611,0.006178504,-0.008744656,-0.006148895,0.012643233,-0.005640599,0.0077478047,0.0062525277,0.0032915832,0.031030698,0.017972933,0.054718252,-0.023312503,0.01492316,0.0075306688,0.009317106,-0.023036148,-0.046664484,0.012880108,0.03286648,0.0072247046,0.0056356643,-0.032945443,-0.029096214,0.008734786,-0.028582985,0.03896603,0.026589282,0.05712649,-0.02931335,0.0075454735,0.02609579,-0.007915592,0.04540115,0.02343094,-0.02613527,0.049270116,-0.051678352,-0.037426338,-0.03466279,0.009055555,-0.012988676,-0.038492277,-0.033853464,0.055863153,-0.022187343,0.006331486,0.016304934,-0.008719982,0.026905116,0.0111528905,0.032136116,0.030695124,0.055665754,-0.050336055,-0.0063759005,0.036419615,0.039005507,-0.023884952,0.07552382,0.018505903,0.011083802,-0.06316681,0.05002022,-0.05756076,-0.038729154,-0.012426097,-0.0065338174,0.01014617,-0.00072049646,-0.038492277,0.03896603,-0.012149742,-0.06778589,-0.024891673,-0.066956826,0.011794428,-0.008344929,0.0014706025,-0.041255824,0.06747005,0.0099586435,0.006040327,-0.015199515,-0.050770327,-0.023233544,-0.007728065,-0.016689857,0.0024538827,-0.0047029667,0.06024535,0.016768815,-0.020864788,0.012514926,-0.014163184,0.039025247,0.004142855,-0.011863518,0.041334786,0.0058330605,0.052546892,-0.0122385705,0.0053543746,-0.014222403,-0.004387133,-0.0048066,-0.027615743,-0.031583406,0.009746443,0.006617711,-0.01707478,-0.0140842255,0.005433333,-0.019473145,-0.01760775,-0.011014713,-0.03045825,0.018446684,-0.065851405,-0.06683838,-0.011399636,-0.057955552,-0.0136499535,-0.016206237,0.04267708,-0.042440202,-0.009346714,-0.008423887,-0.012909718,-0.0061636996,-0.048717406,0.012692582,0.01596936,-0.0609165,0.012337268,-0.023865212,0.010777838,-0.026490582,-0.005176718,-0.02718147,-0.011705601,0.034860186,0.06466702,-0.040288582,0.032807264,0.023549378,-0.034958884,-0.043979894,0.04315083,-0.02824741,0.02082531,0.028346108,0.029254131,-0.041216347,0.0056554037,-0.02345068,0.0053691794,0.019265879,-0.018091371,-0.0019616256,-0.048638448,0.012722191,-0.016314805,0.013018286,0.03424826,-0.0051421737,-0.024299484,0.015071208,-0.029609444,0.053415436,-0.013531516,0.021733332,0.043743018,0.015900271,0.033912685,0.018713169,-0.016443111,-0.021437237,0.016452981,0.020173902,0.032234814,-0.0059959125,0.026411625,-0.0022416818,0.004631411,-0.005270481,-0.016719466,0.022187343,-0.0384528,-0.020904267,-0.01981859,0.00957372,0.0131071145,0.027438086,-0.058152948,0.01766697,-0.033498153,-0.002284862,-0.021772811,-0.051994186,0.04259812,0.020864788,-0.034919403,0.00020896249,0.019117832,-0.018229548,0.004611671,0.005102694,-0.013038025,0.037248682,0.007881047,-0.05436294,0.03639988,-0.03448513,0.01712413,0.013600605,0.007575083,-0.06849652,-0.008418952,0.019502753,-0.008991402,0.0043698605,-0.0137585215,0.03353763,0.024220526,-0.029668663,-0.0074319704,-0.025246987,-0.024082348,-0.03736712,0.013057765,-0.0004345803,0.02459558,0.029412048,-0.007086527,-0.006331486,-0.03300466,0.029589705,-0.059100453,0.01173521,0.024615318,-0.018841477,0.028938297,-0.019897547,-0.037031546,-0.018703299,0.1075415,0.06269307,0.027832877,0.029747622,-0.01811111,-0.029017255,0.008073509,0.038156703,-0.0036419616,-0.018871086,-0.0017790342,0.0050336057,-0.05606055,0.01643324,0.015347562,0.011103542,-0.017617619,0.04488792,-0.05325752,0.04998074,-0.028582985,-0.012070783,-0.012366878,-0.005971238,0.009756312,0.034741748,0.015268603,-0.0042489553,-0.014656675,-0.040900514,0.021022705,-0.035787947,0.0154956095,-0.005275416,-0.0044389493,-0.015939752,0.007900787,0.036498576,0.031859763,-0.018229548,-0.013659824,-0.035097063,-0.044808958,0.01601871,-0.017676838,0.032905962,0.026372146,-0.0034248258,0.03786061,-0.0023058355,0.0050336057,-0.002832637,-0.049151678,0.02459558,0.015811443,-0.055073567,-0.0065338174,0.026411625,0.023727035,-0.00081919465,0.030714864,-0.01121211,0.043861456,0.015722616,0.03253091,-0.027122252,0.01122198,0.019532364,-0.0055665756,-0.0061439597,0.019798849,0.0026525126,-0.031247834,0.016689857,-0.016443111,-0.010234998,-0.019966636,-0.0043920674,-0.035097063,0.002118309,0.054047108,-0.0042119436,-0.030576685,0.026885375,-0.0031830154,0.021160884,0.012110263,-0.011379897,0.0047128364,0.012386617,0.017390614,-0.018555252,-0.0033261275,0.012978806,-0.0031558734,0.015525219,-0.0045179077,-0.023292763,0.024240265,0.019581713,0.0052606114,0.011606902,-0.030695124,-0.0014002799,0.023904692,0.019887676,-0.008068574,0.029352829,-0.0053691794,-0.0032693762,-0.0069483495,0.022483438,0.015308083,0.01706491,0.017291915,0.012376748,0.035965607,-0.011458855,0.0019048742,0.015071208,0.02135828,-0.006726279,-0.03945952,-0.031010957,-0.016936602,0.012189222,0.044808958,-0.034524612,-0.052546892,-0.0011448985,0.013018286,-0.0006168634,0.01702543,0.0074517103,-0.03675519,0.0047498485,0.024773235,-0.019828457,-0.0010677906,-0.019996244,-0.008270904,-0.030102935,-0.035432637,0.018782258,-0.00081425975,0.03936082,0.033261277,0.0016297532,-0.018456554,0.0244574,0.015021858,0.014715894,0.027299907,-0.0019986376,0.008912443,-0.017183349,0.029214652,0.06731214,-0.014607326,0.04907272,-0.010156039,-0.014636936,0.011360157,0.00077848166,0.02880012,-0.013788131,-0.025918134,0.03341919,0.036557794,0.020884529,-0.017282046,0.0021281787,0.039005507,-0.009953708,0.011340417,-0.013985528,0.022601876,0.027359126,0.0013608007,-0.0016914395,-0.021496456,0.016946472,-0.017420223,-0.012031305,0.013709173,0.027813138,0.010925885,0.021614894,0.011616772,0.0063068117,-0.0426376,0.019443534,0.019601453,-0.0072691184,0.014538237,-0.023075627,-0.012011564,-0.026470844,-0.058705658,0.008078444,0.021042446,0.021516196,0.03195846,0.023805993,-0.004189736,-0.0012670375,-0.006597971,-0.015021858,-0.013047895,0.025266726,0.04275604,0.020025855,0.025207506,0.015564698,0.0061192852,-0.003577808,0.003513654,-0.016186496,0.005433333,0.01920666,-0.016778685,0.023608597,0.013946048,0.0051471083,-0.0075454735,-0.019779108,0.0077922186,-0.013413078,0.01757814,-0.00173462,0.020193642,-0.028109232,0.02347042,-0.025878655,0.033379715,0.046190735,-0.0073678168,0.0053691794,0.008882834,-0.0026500453,-0.00333353,0.0052507413,0.018574992,0.0038344231,0.0021886313,0.017242566,-0.0119128665,0.015357432,0.025385164,0.023766514,0.04204541,0.018397335,0.008369603,-0.031050438,0.039696395,0.02396391,0.023273023,0.027122252,0.0041650617,0.024654798,-0.02668798,-0.01650233,-0.0012041174,0.013038025,-0.0074221008,0.012208961,-0.000022149252,-0.003802346,0.002159022,-0.0014002799,0.030793821,0.012603753,0.021160884,-0.026056312,0.0013817741,-0.024023129,0.006296942,-0.0046560853,0.02459558,0.003952861,-0.02238474,-0.018081501,0.0042538904,0.06229827,-0.013580865,0.005482682,0.00067361485,-0.034564093,0.017341265,0.033202056,-0.040209625,-0.0060107172,-0.040821552,-0.031642627,0.019946896,0.03728816,-0.02929361,-0.014794853,-0.0063166814,0.003360672,-0.00027743433,-0.04046624,-0.0125642745,-0.028602723,-0.018930305,-0.032254554,0.025148287,-0.00006762365,-0.053573355,0.018959913,0.026944594,-0.009509566,-0.05108616,0.021772811,0.018634211,-0.0015187177,-0.020410776,0.003089252,-0.00173462,0.04093999,0.0048608836,-0.04370354,0.01764723,-0.018466424,0.032767784,-0.00037998788,0.01225831,-0.019364577,0.021930728,-0.012139873,0.015002118,-0.0094700875,-0.014528368,0.0151699055,0.01819994,0.042361245,0.016058188,0.022187343,-0.016926732,0.023884952,0.05594211,-0.015011989,0.020963486,-0.0010684074,-0.036893368,0.024694277,0.03663675,0.0276947,-0.024220526,0.00075257337,-0.004991659,-0.018456554,0.0032224946,-0.0068595214,0.029550226,0.023944171,0.01489355,0.028069753,0.0136499535,0.036005083,0.003002891,0.025760217,0.0154956095,-0.04113739,0.020963486,-0.022819012,0.027457824,-0.02662876,-0.048875324,-0.026194489,-0.015683135,-0.030537207,0.010156039,0.0052556763,0.008315319,0.0016285195,0.03262961,-0.017755797,0.0080044195,0.00043118754,0.0015532621,-0.015298213,0.013679563,0.004024417,0.01918692,0.026549801,0.0028153646,0.015801573,-0.01859473,-0.013126854,-0.014567846,-0.008083378,0.034544352,-0.0062821372,0.05436294,0.004313109,-0.022700574,0.04366406,0.0042612925,0.017351134,0.014163184,-0.00072296395,0.014725763,0.0030201634,-0.0005940395,-0.010156039,-0.05017814,0.0042612925,0.0553894,0.0056208596,0.0043476536,-0.029727882,0.022542657,-0.0071506808,-0.015377171,-0.028977776,-0.04836209,-0.014064486,0.0075948224,0.0045475173,0.002172593,0.055823673,0.007032243,-0.03371529,-0.019088222,0.042361245,-0.016344413,-0.034425914,0.013955918,0.024299484,0.0072740535,0.0075602783,-0.016206237,0.017143868,0.0032940507,-0.0025735542,0.0017247502,0.05013866,-0.030813562,-0.031761065,-0.010777838,-0.016867513,-0.034702267,-0.009021011,-0.022266302,-0.00026540548,-0.012011564,0.016077928,0.03963718,-0.009953708,-0.08266957,-0.04255864,0.0151699055,0.030932,0.008591674,-0.019325098,0.014706024,0.008887768,-0.008902573,0.041374262,0.014557977,-0.063285254,0.009869815,-0.018012412,-0.0055270963,0.0044093397,0.00013601838,0.020588433,-0.049862303,-0.023292763,-0.01226818,0.05740284,-0.059929516,0.022483438,0.009790856,-0.0040219496,-0.02392443,-0.052586373,-0.05057293,-0.0038492277,0.007782349,0.019591583,0.02297693,0.025898393,0.032353252,-0.02609579,-0.03365607,0.042795517,0.02933309,-0.010442264,0.032827005,-0.023786254,-0.0016865046,0.0069335448,0.021674113,-0.02568126,0.0297871,-0.0032002875,0.023490159,-0.00039170828,0.036084045,-0.00012900156,0.023904692,0.04646709,0.0015618982,0.011962215,0.0015532621,0.012435967,-0.023825733,0.023746774,-0.023253284,0.0068792608,0.030991219,0.024042869,0.020144291,-0.014725763,0.028681682,-0.008162336,0.00613409,0.016541809,0.008803875,0.024891673,0.020391038,0.02400339,-0.02933309,0.008152467,-0.0105014825,-0.009134513,-0.03411008,-0.019167181,-0.035965607,-0.000266485,-0.014094096,0.0022145398,0.011646382,0.042361245,-0.03367581,0.040900514,0.029806841,0.0041848016,-0.025977353,0.008423887,0.004046624,0.03628144,-0.005640599,-0.016620768,0.060482226,0.0045376476,0.0012843097,-0.0129985465,0.01967054,0.006366031,0.0055122916,0.0056159245,0.0063216165,0.009006206,-0.004591931,-0.040782075,0.023115106,0.0778531,-0.015120557,-0.010817317,0.007999485,0.0043747956,0.0036419616,-0.02406261,0.021160884,-0.014479019,-0.014479019,0.0018049424,-0.030517468,0.02238474,0.0029091279,0.021772811,0.01806176,-0.01967054,0.01657142,0.00691874,-0.02133854,0.020371297,0.016739206,0.038867332,-0.0033754767,-0.014222403,-0.013403209,0.014212533,0.023569118,0.04157166,0.009830335,0.0069138054,0.0426376,0.0019591583,-0.02609579,-0.008729851,-0.010560702,-0.028543504,-0.022996668,0.007229639,-0.008986467,-0.0022786935,-0.012159612,0.025483862,-0.0006390705,0.038709413,0.019710021,-0.05108616,0.011814169,0.007145746,-0.033892944,-0.004868286,0.016798425,-0.013570995,-0.012110263,-0.02183203,-0.002859779,0.025404904,-0.0018752648,0.0012263245,0.030655645,-0.002199735,-0.0077626095,0.0028449742,-0.016147017,-0.039814834,0.0046560853,0.010708749,0.037623733,0.0069878288,-0.03476149,-0.028425066,-0.006380835,0.0040589613,0.021575416,-0.0045105056,-0.0017864365,0.0042612925,-0.001783969,-0.024714015,0.031030698,0.014587587,-0.0022416818,0.014873811,0.027438086,-0.022759793,-0.02984632,-0.012376748,-0.017953193,0.00505828,-0.050967723,0.0054086586,-0.013363729,-0.0065288823,-0.016482592,0.0244574,-0.02183203,0.03993327,0.010629791,-0.015781835,0.012189222,0.0119128665,0.002009741,-0.046269692,0.0028178322,-0.0106594,0.0027808202,0.009183862,0.041926973,-0.01384735,0.03772243,0.020450257,-0.040782075,0.012830759,0.026312927,0.016235845,0.03734738,-0.015120557,-0.0048263394,-0.01873291,0.004216878,0.04634865,0.012653102,0.012218831,0.013807871,0.021239841,0.0031780803,-0.007910657,-0.017361004,-0.037584256,0.03095174,-0.004046624,-0.04322979,-0.01657142,-0.016897123,-0.0012682712,-0.0057837116,0.019631062,-0.006597971,-0.02289797,-0.013442688,-0.033241536,0.0039775353,-0.0013348925,0.026451103,-0.0056850133,-0.00748132,-0.014113835,-0.024082348,-0.023194065,-0.010994974,0.0009777285,0.023904692,-0.013018286,-0.002325575,0.055626277,0.006820042,-0.010225128,0.042479683,0.007427036,-0.008803875,0.03638014,-0.048954282,-0.002461285,0.0134328175,0.01874278,0.0050829547,-0.016650377,0.056178987,0.05219158,0.029451527,-0.000118823315,0.027655222,0.045480106,-0.007027308,-0.013116984,0.012110263,0.01175495,0.0044858307,0.0052408716,0.00022685152,-0.023865212,-0.0024674537,0.016818164,-0.01604832,-0.020864788,-0.013561126,0.056376383,-0.034307476,0.017686708,-0.016383892,-0.02127932,-0.024102088,0.014469149,0.010945625,-0.0036444291,0.008665698,0.020608174,0.026510322,0.054560337,0.029017255,-0.019976506,-0.03716972,-0.014123705,-0.03249143,0.005156978,0.0109357545,-0.011143021,-0.00072419766,-0.0013879427,0.020687131,0.033873204,0.003622222,0.013462427,-0.007964941,-0.03369555,-0.013462427,-0.019413926,-0.0033162578,-0.034800965,0.0042267484,-0.014311232,-0.0186046,0.036518317,0.01594962,-0.026352406,0.018880956,0.018436814,-0.0031682106,0.014232273,0.021516196,0.009657614,0.008019225,0.028267149,0.015920011,0.0015137829,0.027635481,-0.02396391,0.031622887,-0.022009687,-0.0072888583,0.0055172266,-0.00746158,0.007920526,-0.014942899,-0.024200786,-0.004295837,-0.00063968735,0.0027265362,0.00426376,0.0067164088,-0.0063759005,0.024200786,0.00030226307,-0.019344836,-0.0037159852,-0.025720738,-0.030596426,0.037505295,-0.0027857553,0.013225552,0.025029851,-0.025819436,-0.0096872235,-0.003224962,0.004305707,-0.03193872,-0.008976596,0.02191099,-0.007037178,0.004828807,-0.013492037,-0.00693848,-0.03142549,-0.037505295,-0.017232697,-0.0038072811,0.023055887,-0.024042869,-0.03251117,-0.0015076142,0.0043920674,-0.051954705,-0.037268423,-0.0038665,-0.02283875,0.037248682,0.03144523,-0.02767496,0.031010957,-0.008418952,-0.014015137,-0.042479683,0.016275324,0.0051964577,0.0047671204,-0.022029426,-0.01173521,0.004209476,-0.032807264,0.0055172266,0.02767496,0.030793821,-0.010373175,-0.0014126173,0.025483862,0.015594307,-0.04001223,0.009929034,-0.016916862,-0.015150166,-0.010471874,0.012139873,-0.0008858159,-0.0009925333,-0.0076343017,-0.030556947,-0.03462331,-0.0028992582,0.016443111,0.0069335448,-0.0068101725,0.009287496,-0.015623917,-0.0053297,0.019779108,0.033833724,-0.0058379956,0.0018222146,-0.003748062,0.028642202,0.026845897,-0.02137802,0.007969876,-0.017469572,0.0036542988,0.0019295488,0.008315319,0.0015298213,-0.012337268,-0.019986374,-0.000785884,-0.00909997,0.012366878,-0.016551679,0.014636936,-0.0022910307,-0.018249288,-0.0033779442,-0.015160035,0.025464123,0.021121403,-0.00017195068,-0.02076609,0.02343094,0.019601453,-0.012208961,-0.030102935,-0.0016038449,-0.007955071,-0.010363306,0.022207083,-0.019078352,0.0017815016,-0.001761762,0.049506992,0.02937257,0.011300938,0.0105014825,-0.013413078,-0.009933969,-0.001874031,-0.015130426,0.017361004,-0.029510746,0.0067953677,-0.012830759,0.010156039,-0.025878655,-0.013728912,0.014814592,-0.034919403,-0.0038442928,-0.023253284,0.015317952,0.039676655,0.04417729,-0.000013262564,-0.009929034,0.014044747,-0.03991353,-0.016778685,0.027971055,0.0067509534,0.025918134,-0.014942899,0.006129155,-0.03351789,0.0080044195,0.03728816,-0.01545613,0.014597456,0.025306204,0.0024193383,0.01659116,-0.025246987,-0.01543639,0.010471874,-0.04220333,0.03422852,-0.011468725,0.012001695,-0.038669936,-0.006454859,-0.009218407,0.0111528905,-0.029885799,0.025325945,0.009800727,0.043466665,-0.038571235,-0.008803875,0.046625007,0.01657142,-0.016275324,-0.0017407886,-0.011567423,-0.04165062,0.028819859,-0.0082758395,0.032116376,0.03351789,0.038768634,0.029648924,-0.02181229,0.038867332,-0.02181229,-0.03790009,-0.010304087,0.018249288,-0.0030719799,0.022246562,-0.018505903,-0.012722191,0.0041996064,-0.028109232,0.0015002119,-0.02293745,0.041255824,0.03195846,0.0073974263,0.0012867771,-0.011133151,-0.05065189,0.049309596,0.04958595,0.03424826,-0.016235845,0.016127277,-0.0053000906,-0.0071605504,-0.02982658,0.018880956,-0.03414956,-0.027990796,0.009183862,-0.02242422,0.02662876,0.008078444,0.02607605,0.0014385255,-0.009065425,0.012495185,0.018269027,-0.029135693,0.03841332,-0.019798849,-0.013817741,0.029905539,-0.013580865,-0.020726612,-0.01439019,0.03882785,-0.010007992,0.008917377,-0.018229548,-0.060482226,0.00983527,0.011488465,-0.014212533,-0.021614894,0.028879078,0.0077774143]},{"id":"interface-APIBan","type":"interface","source":"main","text":"Interface: APIBan\nProperties: expires_at: string | null, reason: string | null, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIBan"},"embedding":[-0.049154554,-0.008573469,0.02598625,-0.009577029,-0.023380978,-0.025587484,-0.031449344,0.0063038254,0.027621191,-0.018343234,-0.0122819925,-0.008706391,0.016774755,-0.005067651,-0.006380256,-0.013411829,-0.014834095,0.07555286,-0.00014777188,0.039610755,0.05021793,0.0085203,0.008354147,0.050138175,-0.002098506,0.018609079,0.013577982,-0.017638749,0.007682891,-0.031874694,0.06194165,-0.022397356,0.032300044,0.033496343,0.031236669,-0.0057521993,0.051361058,0.017120354,0.006945174,-0.027302178,-0.007390463,-0.03716499,-0.018409695,0.005280326,-0.035995275,0.06300502,-0.0018858308,0.030359384,-0.026517939,0.04989892,-0.008852605,-0.01223547,-0.029083332,0.023793038,0.02477666,-0.010347977,-0.012913371,0.039424665,-0.03304441,0.031449344,0.010613821,-0.012394976,-0.012242116,0.02085546,-0.04880896,0.016163314,-0.030492306,0.0548702,0.014209361,0.015006893,0.049526736,0.01278045,-0.0023709962,0.041046314,-0.006788991,0.010208409,0.017997637,0.018516034,0.0017678626,-0.018396404,-0.046788543,0.051228136,-0.059868068,-0.033097576,0.031210085,0.0051640193,-0.0741173,-0.023128428,-0.0033629264,0.029269423,-0.017266568,0.033443175,-0.04030195,-0.014887263,0.039982937,-0.027328761,-0.0010027303,0.004333257,-0.02689012,0.038892977,0.03511799,-0.03607503,-0.028498476,0.016123438,0.002892715,-0.0014729418,0.00009917227,0.0236867,-0.08544226,-0.037616923,-0.02024402,0.01250796,-0.035516758,-0.0058319527,-0.06635466,-0.023819622,0.006865421,0.04689488,0.04864945,-0.03150251,-0.019552825,0.004938052,0.03769668,-0.009650137,-0.022623323,-0.0015560181,-0.017678626,-0.02857823,-0.046442945,-0.0732666,0.058166664,-0.00040375057,0.036340874,0.0055627855,-0.03421412,0.007317356,-0.0047287,-0.017798254,-0.03216712,-0.03413437,0.00082287024,-0.0042202733,0.031396177,0.0018858308,-0.065982476,0.015020185,-0.039079066,0.0059316442,0.017014015,0.006004751,-0.00996915,0.030651812,-0.005207219,0.026571106,0.012062671,-0.04391743,-0.00809495,0.019991469,-0.019473072,-0.034001447,0.024218388,-0.034958486,0.0023826268,-0.032113954,0.022144804,0.026983164,0.02900358,-0.0078955665,-0.04888871,-0.016123438,0.008460485,-0.0067590834,-0.075925045,-0.013338722,-0.0063005025,-0.03588894,0.00087562366,-0.03027963,-0.007603138,-0.008261102,0.029163085,0.032778565,-0.05064328,-0.07464899,-0.03498507,-0.02591979,-0.024843121,0.035038237,0.010254932,-0.035676263,0.03655355,0.037085235,0.0006002259,0.02677049,0.025893204,-0.043412324,-0.013484936,-0.05138764,0.00045858088,0.0026218863,0.0049712826,-0.0056192772,0.045246646,0.013823887,0.008513654,0.014395452,0.023474025,-0.0016897708,-0.02152007,0.017359613,0.017306443,0.007902212,-0.015817717,-0.015498704,0.00731071,-0.02152007,0.015631627,-0.021865668,0.02036365,0.010620467,-0.022503695,0.036181368,0.0548702,-0.03806886,0.012262054,0.02544127,0.03027963,0.037616923,-0.027328761,0.014328991,-0.03280515,0.06008074,-0.055614565,-0.014461913,0.02622551,0.027568022,0.01187658,0.004997867,0.00050801126,-0.04133874,-0.021546656,-0.004329934,-0.048303854,0.036234535,0.00017290244,-0.007530031,0.04333257,-0.016336113,0.0047885147,0.034373626,0.05518921,0.0012311899,0.04218944,-0.0054431558,0.030891072,-0.02857823,-0.009929273,0.02423168,-0.026212217,0.003735108,0.059814896,-0.023341103,-0.00064508704,-0.009371,0.017572287,-0.016827924,0.03886639,0.0012162363,0.012248762,0.017931176,0.04181726,0.0026866859,0.04062096,-0.039850015,-0.014581542,0.015259445,0.065663464,0.02646477,-0.08320917,-0.003665324,-0.03113033,-0.0031236669,0.014342283,0.018728709,0.019991469,0.033097576,-0.010228348,0.015751256,0.04181726,0.015445536,0.010706867,0.034612887,0.031688605,-0.03384194,0.04205652,0.014528374,0.05705012,-0.034187537,0.065291286,0.02924284,-0.012182301,-0.029083332,0.010367916,-0.07215006,0.019300275,0.012328515,0.03860055,0.02544127,0.02847189,0.025760282,0.015817717,-0.03360268,-0.053647317,-0.035702847,-0.0461771,-0.027621191,0.012773803,-0.012926664,-0.04333257,-0.00026044404,-0.02211822,-0.050244514,-0.04604418,-0.014009979,0.011637321,-0.05651843,0.030226462,-0.018582495,0.038175195,0.0033978184,-0.0058153374,-0.04870262,-0.03764351,-0.031874694,0.024816537,0.01027487,0.017372904,0.03216712,-0.0010741758,0.034772392,0.010986003,-0.049048215,-0.044582035,-0.014475205,0.04923431,0.010647052,-0.021799207,-0.001364112,-0.030864486,0.02695658,-0.01070022,0.0006409332,-0.02043011,-0.015033478,-0.017598873,-0.030864486,0.04718731,-0.04660245,-0.07124619,0.04466179,-0.029588437,0.019619286,0.02254357,-0.008919066,-0.02005793,-0.033974864,-0.037244745,-0.0071644955,0.009869458,-0.03759034,-0.022477109,-0.01576455,-0.026198925,-0.019699039,-0.00029699758,0.03899931,-0.03245955,0.0023028736,0.07044866,-0.028179463,0.04133874,0.012129132,0.0068188985,-0.016721588,0.020018052,0.0021998591,-0.0044861175,0.0058319527,-0.017838132,0.03522433,0.02918967,-0.012587713,-0.025467854,-0.025481146,0.0357826,-0.015658211,0.02380633,0.019752208,-0.005190604,-0.023128428,0.013877057,-0.008693098,0.018702125,-0.0056658,-0.04139191,0.04128557,0.014315699,-0.009503922,0.0369789,-0.0074236933,0.024577277,-0.021613117,0.037723262,0.012056025,0.064653255,-0.043944012,0.011617382,-0.00207026,0.003532402,0.024072174,0.009889397,-0.007942089,0.00628721,-0.053806823,-0.019380027,-0.007649661,0.032991238,-0.028684566,-0.049526736,-0.05630576,0.0028594844,0.04923431,-0.00085734687,-0.03304441,-0.0366333,0.0020553065,0.042216025,0.026159048,-0.07278808,0.022437233,0.004383103,-0.029907448,0.0037749847,0.019499656,-0.044316195,-0.021825792,0.038042273,-0.024843121,0.023075258,0.0022364126,-0.040594377,-0.033443175,-0.009071927,0.05003184,-0.06709902,-0.009503922,-0.01278045,0.024630446,-0.026664153,0.032007616,0.017931176,-0.0069385283,0.00039274295,0.040886804,0.05837934,0.03171519,-0.025215302,0.021759331,-0.016841216,-0.0049579903,0.015605043,0.020084513,0.031236669,-0.024324724,-0.01739949,-0.018010931,0.026677445,-0.0690131,-0.0030306214,-0.0077626444,-0.0036620009,0.015232861,-0.01157086,0.014249238,0.04224261,0.10782632,0.05518921,-0.0020735832,-0.04646953,0.033336837,0.0005620108,0.028684566,-0.030784734,-0.015751256,0.023115136,-0.007589846,-0.017904593,-0.06385573,0.012547837,0.009929273,0.03716499,-0.082996495,0.011052464,-0.0039610756,0.0018941384,0.0040375055,0.007603138,-0.02187896,-0.008307625,-0.03136959,-0.027993372,-0.016934263,-0.03432046,-0.014727757,-0.06337721,0.028126294,-0.023646822,0.06327087,-0.04030195,0.04476813,0.028206047,0.009550446,0.02501592,0.014780926,-0.005007836,0.0022679816,-0.004791838,-0.034905314,-0.028019957,-0.013730842,0.027966788,-0.012713989,0.0093577085,0.037005484,0.006117735,-0.012614298,-0.009390939,-0.015259445,0.019566117,-0.037537172,-0.0012087594,0.0047619306,0.010347977,0.0054930015,-0.035942107,-0.007875628,-0.0030189909,0.020469988,-0.022477109,0.0042834114,-0.0048184223,0.00020156374,0.024005713,-0.023048675,-0.006513178,0.03487873,0.05045719,-0.038547378,-0.04296039,-0.012295284,-0.020376941,0.00097116135,0.033762187,-0.0113781225,-0.030226462,0.00032918964,0.019087598,-0.00672253,-0.02054974,-0.014594835,0.013690965,0.06252651,-0.039610755,0.04888871,0.029987203,0.012694051,0.019925008,0.024869705,-0.0037118467,-0.021254227,-0.007397109,-0.0112385545,-0.020948507,0.06103778,-0.0077825827,-0.016030394,-0.01564492,0.0040840283,-0.013797303,0.055455055,-0.011291724,-0.0043000267,-0.03769668,-0.017253274,-0.0026949935,0.023181597,0.015299322,0.035197746,-0.00961026,0.02574699,0.025055796,-0.004200335,0.0036221244,0.023527194,0.026983164,0.042588208,0.004941375,0.032300044,-0.04181726,-0.0015435567,0.029934034,0.020283896,-0.029880865,-0.036713056,-0.000019328209,-0.0013699273,-0.02985428,-0.02187896,0.0023178272,0.004775223,0.018024223,0.011943041,-0.0051307892,0.05149398,0.00042368885,0.014541666,-0.01934015,-0.04593784,-0.004316642,-0.00097365363,0.01951295,-0.023553777,-0.016349405,-0.00882602,-0.0060944734,-0.00092463865,0.005792076,0.03777643,-0.03336342,-0.032246877,0.022078343,-0.012089255,0.030120123,-0.04973941,0.003294804,-0.028126294,-0.034905314,0.018569203,-0.026198925,0.013026356,-0.019792086,-0.021001676,-0.0075832,-0.0028827458,0.028259216,-0.018290067,0.017519118,0.028365554,0.020695955,-0.00640684,-0.014169484,0.038760055,0.020337066,0.000549134,-0.013591274,-0.019486364,0.014342283,-0.0026418245,-0.012321869,-0.019074306,-0.017878009,0.0005761338,-0.026478061,0.03934491,0.029694773,-0.0052271574,-0.012182301,-0.019100891,-0.009304539,0.020709246,-0.0084538385,0.0029109917,-0.017319735,-0.01879517,0.0029325916,-0.018835047,0.014581542,0.013591274,-0.027647775,0.0009977458,-0.011338246,0.04575175,0.0386803,-0.01928698,0.0016183252,0.0045160246,0.032406382,0.003259912,-0.009630199,0.006945174,-0.00061019504,0.00500119,-0.015897471,-0.00048599605,-0.05758181,0.03684598,0.034905314,0.017239982,-0.012095901,-0.031103747,-0.04338574,0.006788991,-0.047639243,0.056890614,-0.018077392,0.02767436,-0.023965836,0.028206047,-0.008227872,0.008061719,0.025893204,0.011198678,-0.056837443,0.026358431,0.03769668,0.023739869,0.04585809,0.023394272,0.009949211,0.031236669,-0.01199621,-0.0140897315,-0.023474025,0.0089390045,-0.01564492,-0.003221697,0.01027487,-0.0038912913,-0.010873019,-0.00040188135,0.029960617,0.018037515,-0.015671503,-0.010879666,-0.0060446276,0.0044462406,-0.008081657,-0.0009977458,0.008772852,-0.009975796,-0.00785569,0.01027487,-0.017200107,0.0060014282,0.02169287,-0.005865183,0.023181597,0.011225263,-0.04920772,-0.0036420627,-0.021812499,0.040328532,-0.0132058,-0.010288162,-0.004821745,0.00095703837,-0.0055461703,-0.008772852,0.037005484,0.023553777,-0.0055561396,-0.016336113,-0.0226632,0.002399242,0.03735108,-0.010613821,-0.029880865,-0.02048328,-0.0066892994,0.00016189483,0.02574699,0.005659154,-0.030864486,-0.0084538385,0.0070315734,-0.022251142,-0.01758558,-0.031263255,-0.04224261,0.009663429,-0.015777841,-0.0036420627,0.017811548,-0.05074962,0.029296007,0.004911468,-0.005257065,-0.07528702,0.019326858,0.047905087,0.0369789,-0.009623553,-0.04389084,-0.020297188,0.012095901,-0.018436281,0.0010874681,0.05923004,-0.0028877303,-0.018808462,-0.023859499,0.0048782374,-0.01722669,-0.006785668,0.020523157,0.04944698,0.014275822,-0.03899931,0.032246877,-0.01462142,0.062473338,-0.0019157382,-0.0018426311,0.0066195154,0.008852605,0.0224904,-0.04389084,0.0036221244,-0.009231432,-0.027966788,-0.00972989,0.01896797,0.016867802,0.006463332,0.0016166638,0.006925236,-0.03650038,0.007902212,-0.024736783,-0.0018143852,0.014661296,-0.03899931,0.032539304,0.026571106,0.0010143609,-0.047001217,0.0041770735,-0.03806886,-0.019167352,0.02895041,-0.0019772146,-0.032193705,0.01825019,-0.037856184,0.020961799,-0.03142276,-0.046336606,0.02199859,0.02405888,-0.02653123,-0.017426074,0.053408056,0.007330648,-0.0062240725,-0.012826973,-0.032060787,0.017146938,-0.03969051,0.022942336,0.024962751,0.031263255,0.0113781225,0.027488269,-0.0025803482,0.010859727,0.0065464084,-0.0274351,0.025348224,0.00964349,0.046203684,0.024032297,0.0037882768,-0.0027581314,-0.02217139,0.020868754,0.024882998,-0.02005793,0.036021862,-0.0014845725,0.008653222,0.003861384,-0.0025089027,-0.0011206985,0.020390235,0.044449117,-0.0044196565,0.019659163,0.026252095,0.0055561396,-0.017426074,0.0054431558,-0.02961502,-0.038387872,0.022556862,0.019433195,-0.0037118467,0.07044866,-0.0067657297,-0.0000025766617,0.0016058638,0.034772392,0.016960846,0.03479898,0.0072309566,-0.008666514,-0.0038082153,0.032486137,-0.035463586,0.003871353,-0.00836744,0.020775707,0.0029807757,0.004070736,0.040036105,-0.018821755,-0.009211495,-0.012920018,-0.04133874,-0.0090785725,-0.0029508683,-0.0075765536,0.011663905,0.00402089,0.031901278,-0.030837903,-0.020044636,0.0255609,0.025614068,0.011816765,0.002367673,0.0032765272,0.0128402645,0.041551415,-0.026597692,0.010281516,-0.019167352,-0.0021217673,-0.028392138,-0.042029936,-0.015498704,0.009377647,-0.028073125,0.022796122,-0.027249008,-0.01202944,-0.02683695,0.050350852,-0.024683615,0.024258263,0.019871838,-0.002766439,-0.010573945,-0.033097576,-0.05106863,-0.004206981,-0.02140044,0.01583101,0.014554959,0.020682663,0.016296236,0.0011439599,-0.039477833,0.037085235,0.004060767,-0.021413734,0.006742468,0.013624504,0.019353442,-0.030864486,-0.03735108,-0.042747714,0.029907448,-0.011590798,-0.006380256,-0.0042368886,0.026677445,-0.028498476,0.047001217,0.062367,0.06061243,-0.006872067,0.00809495,-0.0018160468,0.014687881,0.0008739621,0.0015585104,-0.025295056,0.029056748,0.032991238,-0.023035381,-0.012315223,-0.009909335,-0.007942089,-0.039238572,-0.008121534,0.017811548,-0.0058186604,-0.01308617,0.008427255,-0.0016008792,-0.02380633,-0.004682177,0.01758558,-0.032432966,-0.027209133,-0.015126523,0.0013167586,-0.0068188985,-0.011982918,0.029136501,0.04405035,-0.021825792,0.010334685,-0.018582495,-0.01172372,-0.01148446,0.022158097,0.00052753417,0.025188718,-0.0076297224,-0.017878009,0.04878237,0.019871838,0.012966541,0.017173521,0.03790935,0.0048250686,-0.0047154077,-0.0060280124,-0.035623096,-0.0043764566,-0.017612165,-0.004070736,-0.0049081445,0.05747547,-0.0054996475,0.03293807,0.046256855,0.02738193,-0.010228348,0.012581067,0.03195445,-0.049819164,-0.0059482595,0.017000724,-0.019167352,-0.009583676,0.0030090217,-0.0032084046,-0.003798246,-0.011477814,0.023460733,0.011311661,-0.023354394,0.009377647,0.01903443,0.011717074,0.026597692,-0.0028478538,0.033390004,-0.00044445792,-0.030997409,0.019792086,-0.041258987,0.0050211283,-0.0021417057,-0.00988275,-0.004874914,-0.018263482,-0.009783058,-0.02102826,0.012800388,-0.027155964,0.0064899162,-0.03705865,-0.026637567,-0.0073040635,0.0067092376,0.043598413,0.029880865,-0.027594605,-0.0058884444,0.003298127,0.006729176,0.01825019,0.013278907,0.019167352,-0.03227346,0.010381208,0.0004490271,0.032964654,-0.013371953,0.030066956,0.035383835,0.012262054,0.021746038,0.002136721,-0.031263255,-0.06678001,0.00719108,-0.003990983,0.01504677,0.0070448657,0.008287687,-0.051148385,-0.006878713,0.005642539,-0.0032732042,-0.0067690527,-0.019778794,0.020921921,0.015897471,0.01988513,0.028817488,-0.010760035,-0.04694805,-0.0005528724,0.021506779,-0.029774526,-0.008161411,0.006788991,-0.014953724,0.0029708066,-0.033948276,0.038387872,0.00226632,-0.0030871134,0.000023118562,-0.0014696188,0.03360268,-0.0066959453,0.02102826,0.011836704,-0.024524108,0.004868268,-0.006865421,-0.0449808,0.049819164,-0.00029699758,0.0070049893,0.012820327,-0.026092587,0.00022534432,0.03769668,0.014594835,-0.004977929,-0.008287687,0.011032525,0.00069036364,-0.006745791,-0.016096853,-0.0034127722,0.008600053,0.0044960864,0.026305262,0.013690965,-0.012753866,0.01673488,0.030306214,0.018502742,-0.00273487,0.010294808,-0.012926664,0.006127704,0.0050875894,0.0009994073,0.015910763,-0.0017612164,0.016163314,-0.035862353,0.01922052,-0.023699991,-0.012155716,0.025840037,0.017452657,0.003221697,0.0037218158,0.019499656,-0.005144081,0.03304441,0.010022318,-0.015365782,0.0011464522,-0.025308348,-0.019087598,-0.01148446,-0.026478061,-0.02580016,0.026092587,0.038972728,0.00092463865,-0.01187658,0.0027398546,0.0055694315,0.02985428,-0.0005296111,0.0004976267,-0.016336113,0.03051889,0.0004760269,-0.0047851917,0.03596869,0.027222425,-0.024311433,-0.010986003,-0.007769291,0.005921675,0.022330895,0.010042257,-0.010793266,-0.003934491,0.016482327,0.025029212,0.0153391985,-0.02815288,0.00236435,0.01175695,0.024151927,-0.019699039,0.0021350596,0.024976043,0.0007497631,0.025308348,0.017426074,0.009384293,-0.005051036,0.008207933,-0.0040109213,-0.015857594,0.008327563,0.027049625,0.004934729,-0.0039444603,0.005144081,0.006788991,0.006782345,-0.0056259236,-0.010839788,0.007131265,-0.0074436315,-0.029880865,-0.018077392,0.013877057,-0.01070022,0.030066956,-0.024643738,-0.02387279,-0.00625398,0.013877057,0.0055827238,0.006745791,-0.012468083,0.0021516748,0.015671503,-0.00855353,0.010088779,0.0068255444,0.03317733,0.013877057,0.0011871596,-0.017306443,0.011810119,0.01266082,0.039079066,0.028498476,-0.01661525,0.010201763,-0.046336606,-0.008114887,-0.009397585,-0.00032129738,0.015365782,-0.0008328394,0.0070249275,-0.011969626,-0.039717093,-0.0035789248,-0.01301971,-0.027116086,0.018037515,0.021174474,0.00038028153,-0.0055129398,-0.013823887,-0.015259445,0.0029325916,0.025893204,-0.02054974,-0.0010974372,-0.01576455,0.005051036,0.015897471,-0.0034460027,0.013690965,0.016455743,-0.020695955,0.00539331,0.02465703,-0.02012439,-0.01290008,-0.011530983,0.014169484,-0.019433195,-0.02695658,-0.016176607,0.0045758397,0.016389282,-0.027647775,-0.015325906,0.004987898,0.026677445,0.018715417,-0.016056977,0.003977691,0.014116316,-0.007981966,-0.018103976,-0.020031344,-0.027461683,0.009291247,0.016695002,0.026491353,-0.010906249,-0.014328991,-0.022636617,-0.022184681,-0.008699745,0.0012386668,-0.017027307,0.021958714,0.000025364217,-0.000084737774,-0.02767436,0.01407644,0.030572059,0.048250683,-0.0065032085,-0.021427026,0.05651843,-0.028285801,0.0037783077,0.024417771,-0.0033380035,0.005984813,0.0040175673,0.0008361624,-0.0053368183,0.013225739,0.03160885,-0.003200097,-0.015870886,0.028737735,-0.009802997,-0.012494667,0.015737964,-0.02494946,-0.033576097,0.027966788,0.005659154,-0.013391891,-0.02924284,0.019313566,-0.011936395,0.0104011465,-0.015977224,-0.0018426311,0.0039411373,0.018170437,-0.006656069,-0.014953724,-0.026132464,0.040594377,-0.05609308,-0.01042773,-0.0056923847,-0.008819374,0.045113724,-0.026876828,0.0030173294,-0.027461683,-0.014634712,-0.0059083826,-0.017505826,0.0178913,-0.026092587,-0.041498248,0.011039171,-0.009955858,0.03740425,0.040328532,-0.019007845,-0.01770521,-0.030385967,-0.0055195857,-0.027023042,-0.0068853595,-0.015060062,-0.043704752,-0.004599101,0.0034991715,0.009018757,-0.013179216,0.00049264217,0.03378877,-0.0044994093,-0.00480513,0.004316642,-0.012966541,0.028711151,0.008460485,0.02804654,-0.00020519833,-0.020164266,0.026717322,-0.024191802,0.02847189,-0.038627133,-0.0019506303,0.008181348,0.0034160952,-0.009277956,-0.018954676,0.021679576,-0.019845255,0.00035535864,0.037297912,0.01576455,0.0018243544,-0.0029292684,-0.013544751,-0.0016050331,0.03764351,0.024085466,-0.0059316442,-0.006237365,-0.0052171885,-0.007815814,-0.011750304,-0.008340855,0.03934491,-0.010627113,-0.033416588,0.019419903,-0.024856413,0.008626637,-0.017093768,0.019380027,0.011903165,0.0029392375,-0.017359613,-0.0017512473,0.008972235,0.00539331,-0.00016812555,0.009763121,0.0199383,0.008626637,0.028498476,-0.008693098,0.0021201058,0.01105911,0.05011159,0.009749828,0.03370902,0.048543114,-0.0012785435,0.032884903,-0.021174474,0.031901278,-0.006539762,-0.03487873,-0.026557814,-0.019845255,-0.022929044,-0.02895041,-0.03354951,0.0050178054,-0.025427978,-0.032060787,-0.00096617674,-0.012773803,-0.0015302645,0.045592245,0.01981867,0.02653123,0.022344187,-0.009138388,0.040222194,0.043412324,0.026823658,-0.009683368,-0.012607651,0.021360565,0.015950639,-0.022264434,0.009603614,0.0064965626,-0.022689784,-0.036606718,-0.011198678,0.009131741,0.0005046882,0.0037583695,-0.010733451,-0.0011697136,-0.02314172,0.022025175,-0.009364354,-0.023832913,-0.016482327,-0.017319735,-0.0034559718,0.030066956,-0.014860679,0.009523861,-0.028844073,0.0049513443,0.024005713,0.012773803,-0.019114183,0.007749352,0.0017246628,0.007151203,-0.029083332,-0.024763368,0.012162362]},{"id":"interface-APIChannel","type":"interface","source":"main","text":"Interface: APIChannel\nDescription: Channel from GET /channels/{id} or GET /guilds/{id}/channels\nProperties: bitrate: number | null, guild_id: string | null, icon: string | null, last_message_id: string | null, last_pin_timestamp: string | null, name: string | null, nicks: Record, nsfw: boolean, owner_id: string | null, parent_id: string | null, permission_overwrites: APIChannelOverwrite[], position: number, rate_limit_per_user: number, recipients: APIUserPartial[], rtc_region: string | null, topic: string | null, url: string | null, user_limit: number | null","meta":{"url":"/docs/typedefs/APIChannel"},"embedding":[-0.018136604,-0.020851089,-0.01388471,0.027577246,0.024046013,-0.008515796,-0.0020163457,-0.0012153626,0.044080354,0.006221696,0.018677097,0.016743327,-0.021055276,0.020082384,0.05140706,-0.021439627,-0.019854175,-0.00040762316,-0.028514102,0.013464326,-0.00094811793,0.028898455,0.0047263266,0.056884073,-0.027601268,-0.005849355,0.00503561,0.012071051,-0.033222415,0.0041407906,0.050878577,-0.023985958,0.037306152,0.022160286,0.0010712306,-0.024046013,0.025151024,0.023553561,-0.0074408115,-0.022520617,-0.010809896,0.049533345,0.009392599,0.0145693375,-0.047491476,0.02570353,-0.021343539,0.03490395,0.020226516,-0.0065519977,-0.04261501,0.02558342,-0.023997968,0.025199069,0.020779021,0.017343877,-0.005416959,0.022208331,-0.01411292,-0.009170395,-0.019649988,-0.042254683,0.0076570096,-0.016599195,0.004399027,0.019373735,-0.06317784,0.058853876,0.04235077,-0.0019953265,0.047707673,-0.013536392,-0.023577584,0.002887143,0.0068402616,0.022016155,-0.046650704,-0.0090082465,0.020346627,-0.047515497,-0.03259784,0.042783163,-0.063754365,-0.05818126,0.02171588,0.014196997,-0.00107048,-0.0025042924,-0.001216864,0.018196657,-0.035432436,-0.019169549,-0.08100215,-0.009722901,0.01858101,-0.048188113,0.022676758,0.015674349,-0.004891478,0.007302685,0.057989087,-0.026640387,-0.070192255,-0.015133854,-0.0017130682,-0.010990061,0.0068642837,0.032189466,-0.035264283,-0.04033292,-0.03968433,0.027072784,-0.04175022,0.008095411,-0.0081314435,0.000365397,0.04480101,0.00068312534,0.04645853,0.012227193,-0.0506864,-0.011320363,0.062216956,0.0136925345,0.0053809257,-0.016803382,-0.015518206,-0.0065700146,-0.035312325,-0.029114652,0.04006868,0.0045281453,0.002570353,0.012635567,-0.011638654,0.004420046,-0.019013405,-0.02906661,-0.02450243,-0.05597124,-0.0026874603,-0.028538125,0.06034324,-0.027192893,-0.022820892,0.014293085,-0.046002112,-0.006383844,0.013548403,0.012827743,-0.035744723,0.018076548,-0.03970835,-0.02038266,-0.007506872,-0.013464326,-0.003215944,0.0012206174,-0.025078958,-0.04621831,0.026784519,-0.024118079,-0.0138727,-0.0045581725,-0.043647956,-0.012071051,0.022820892,0.010773863,-0.059622582,0.034591667,-0.018172637,-0.00015492307,-0.077927336,-0.009068302,-0.019613955,-0.03764246,-0.004411038,-0.048428334,-0.024514442,-0.0037864663,0.023913892,0.025199069,-0.009993148,-0.07499666,-0.0126475785,0.035672657,-0.026640387,-0.016983548,0.017524041,-0.028898455,-0.052319895,0.011224275,0.0333185,0.022244364,0.0038945652,-0.015229942,0.03925193,-0.013812644,0.03490395,-0.051695324,0.03994857,0.0023646648,0.058998007,-0.037426263,0.00094886863,-0.020094395,0.020418692,0.014028843,-0.059814755,0.004570184,0.028970521,-0.00053298794,-0.00061068404,-0.02906661,-0.03334252,-0.009800972,-0.041053582,0.036225162,-0.050974663,-0.034471557,-0.035408415,0.031204566,0.034303404,-0.0026213997,0.011218269,0.031660985,0.014172974,-0.0008392683,0.009674856,0.016575174,-0.019770099,0.034831885,-0.038891602,-0.04636244,-0.02378177,-0.0021079297,0.0074348063,0.03905976,-0.022388496,-0.062409133,-0.016707294,-0.044128396,-0.016875448,0.03641734,0.0029742226,-0.026448213,0.022184309,-0.013848677,-0.026159948,0.038050834,0.05236794,0.011128187,-0.007626982,0.0021799956,0.04126978,-0.0077170646,0.028994543,0.027337026,0.023625627,-0.024478408,0.050157916,-0.0160587,-0.03937204,0.0006643582,-0.012227193,-0.009080312,-0.008329625,0.016839415,-0.012959864,0.012371325,0.024670584,-0.031036412,0.085278064,-0.015398096,-0.001607972,0.015097821,0.01954189,-0.0049545355,-0.009560753,-0.03848323,-0.035120152,0.0063658273,-0.0041407906,0.046002112,0.0068823,0.00015942719,0.053761214,0.004936519,0.05395339,0.02160778,0.0030613025,0.049076926,0.025751574,-0.042783163,-0.0032850073,0.039468132,0.07000008,0.007747092,0.07120118,0.028393993,0.001389522,-0.015842503,0.022184309,-0.070288345,0.004738338,-0.006768196,0.04235077,0.00941662,0.031180544,-0.05659581,0.06961573,0.04657864,-0.07043248,-0.0056481706,-0.056691896,-0.00422787,0.030700104,0.027577246,-0.011848846,0.03862736,-0.0253432,-0.012803721,-0.0149056455,-0.018857263,0.010521632,-0.009314527,0.030748148,-0.033510678,0.020863099,0.016178811,0.029595092,-0.07062465,0.024646562,0.014461238,0.007891224,-0.021271473,-0.028706279,0.033582743,0.027913554,-0.0063658273,0.065724164,-0.0019833157,-0.030003466,0.026232013,0.024214167,0.021391582,-0.05164728,-0.009236455,0.011770776,0.027601268,-0.0071885805,0.015434129,-0.031660985,-0.028706279,-0.019698033,-0.03425536,0.02426221,-0.009458659,-0.0650996,0.029883357,-0.03658549,-0.006467921,-0.007675026,0.01822068,0.038339097,-0.01774024,-0.038891602,0.018184647,-0.037354194,-0.07706255,0.04261501,-0.00092184386,-0.026207991,-0.016863437,0.03101239,0.00820351,0.0034171282,-0.005567096,-0.021343539,-0.0034921968,0.023265298,-0.0006076813,0.00947067,-0.02726496,0.021055276,-0.01279171,-0.022232352,0.024358299,-0.050974663,0.014701459,0.012191161,-0.01291182,-0.017848339,-0.040380966,0.02292899,0.011236286,0.0001011551,0.006966377,-0.0024547472,0.00043840133,0.035576567,0.02945096,-0.03305426,0.013500359,-0.042302724,0.015482173,0.016587185,0.009674856,0.050013784,-0.026015816,0.006407866,-0.0138727,0.021655824,0.034447536,0.059430405,-0.024538463,-0.038315076,-0.045401562,0.038987692,0.055298623,0.038074855,-0.015157877,-0.023733728,0.006660097,-0.006798223,0.009200422,0.0045461617,-0.007891224,-0.033222415,-0.05179141,-0.020190483,0.017103657,0.041822284,-0.010329456,0.03221349,-0.010689786,0.034303404,-0.015482173,-0.026736476,0.043816112,-0.018809218,0.0032429688,-0.018196657,-0.018737152,-0.0044740955,0.017584097,0.03463971,-0.054241654,0.00820351,-0.025006892,-0.0311325,-0.01931368,0.00070977473,0.07936866,-0.022400506,-0.036057007,-0.006503954,0.06399459,-0.058853876,0.024298243,-0.009614802,0.011170225,0.011062127,0.052512072,0.012587523,-0.015362063,-0.034567643,-0.0051977583,-0.03985248,0.008659927,-0.011038105,0.002855614,0.031901203,-0.0008617889,-0.027673334,-0.019734066,0.010509621,0.009236455,0.017884372,0.022016155,-0.0010847431,0.010449566,-0.03629723,-0.019121505,-0.0014150453,0.09916278,0.03101239,-0.009722901,-0.020250538,0.004843434,0.006996405,0.0042729117,0.0044770986,-0.011704715,-0.003948615,-0.04343176,-0.054241654,-0.0019352717,0.035048082,-0.010509621,0.018136604,-0.04151,0.028802367,0.011104166,0.030363796,-0.016443053,-0.030604016,-0.021872023,-0.04561776,-0.018292746,-0.00941662,0.013007908,-0.013380249,-0.008461746,-0.022640726,-0.0051707337,-0.04403231,-0.010942017,-0.04066923,0.0463144,0.0020073375,0.014977711,0.0253432,0.026568322,0.0079632895,0.022028165,-0.026015816,-0.04744343,0.0013730068,0.011494523,0.017247789,0.00018110329,0.0136084575,0.046650704,-0.014677436,0.007218608,-0.0149056455,0.001180831,0.014857601,-0.025655486,-0.041606087,0.0080473665,-0.02062288,0.035912875,0.006900317,0.029907377,-0.014100908,0.0027219919,0.026808541,0.020082384,0.008473758,-0.033510678,0.021908056,-0.014269062,0.020526791,0.04499319,0.023493506,-0.051695324,0.010948022,-0.0054589976,-0.03689778,-0.011752759,0.011008077,-0.00049620424,-0.0231572,-0.034231335,-0.0034591667,0.020334614,-0.011368407,-0.03065206,0.013428293,0.011338379,0.006852273,0.024886783,0.0542897,-0.008888137,-0.043143496,0.030988367,0.021799957,0.012371325,-0.016743327,-0.05717234,0.034567643,0.030628039,0.0001920821,-0.032429688,-0.021908056,-0.025391243,0.0011845845,0.037570395,0.014425205,0.019349713,0.013416282,0.0013527384,-0.036249183,0.013656502,0.02364965,0.005705223,-0.023793781,0.00590941,0.0131039955,0.033222415,-0.04237479,0.0037354196,0.026520278,0.033967096,-0.00063470606,-0.013584436,-0.0424949,0.012695622,0.00093010144,0.01025739,-0.026496256,-0.045089275,0.0040717274,0.01080389,-0.028033663,0.0063898494,0.014581349,0.03053195,-0.030339774,0.019145526,0.0075368998,0.035864834,-0.014064875,0.009194417,-0.025175046,-0.04451275,0.017283821,-0.017656162,0.010167307,0.0077891303,0.0132721495,0.012383336,-0.012875787,-0.021427616,-0.002334637,0.002951702,-0.014377161,-0.0047023045,0.043888178,0.013908733,0.0061796573,-0.0073267072,0.028273882,-0.048284203,-0.011638654,-0.033006214,-0.02016646,0.004257898,-0.0150737995,-0.007651004,0.015133854,-0.021091308,0.025895705,-0.034471557,-0.025006892,0.04309545,-0.040380966,0.002270078,-0.030315753,0.011092154,0.023457473,0.021403594,0.026448213,-0.01544614,-0.011116176,0.011494523,-0.024934826,-0.0020824063,0.00814946,0.0074408115,-0.009122351,-0.011194248,0.04309545,-0.010707802,0.00832362,-0.022400506,0.010815902,0.022628715,-0.020899132,0.026352124,-0.04028488,-0.04840431,0.007506872,-0.031685006,0.03500004,0.0010021675,0.02039467,-0.004570184,0.00034193802,0.03584081,0.01116422,-0.0069483607,0.015025755,0.013212095,0.012527468,0.018905306,0.01169871,0.0013707548,-0.008954197,0.008161471,-0.002510298,-0.033943072,0.0011372911,0.029114652,-0.0011155212,0.018989384,0.003540241,-0.016346965,-0.055442754,0.026616365,-0.028538125,0.015025755,0.005750264,0.026159948,-0.02471863,0.0055941213,0.0075248885,0.011812814,0.018412856,0.0030012475,-0.012149122,0.012275238,0.030868258,-0.001764115,-0.015265975,0.02450243,-0.023133177,0.000020784651,-0.0072726575,0.0010201839,0.011452484,0.009086318,-0.010143286,0.052944466,-0.006143624,0.0131039955,-0.0067862123,-0.0016019664,0.0011005074,0.020010319,0.022712791,-0.015061788,0.025271134,-0.0055310633,-0.02099522,0.00037440524,-0.0055430746,-0.02486276,-0.012743666,0.0074047786,-0.06341805,0.023745738,-0.014689447,-0.0013542398,0.019277647,-0.041630108,-0.034783844,0.017572086,-0.028778344,0.0022340452,0.012299259,0.030507928,-0.016851427,-0.0035702684,-0.013800634,-0.022676758,0.050254006,0.009752928,-0.03872345,-0.008119433,-0.009098329,-0.01954189,0.023697693,-0.040597163,-0.048692577,-0.039924547,0.008059378,-0.026159948,0.004278917,-0.018280735,0.002193508,0.013500359,0.013452315,0.009254472,-0.0076570096,0.002073398,-0.024346288,-0.00107048,-0.058229305,0.023265298,0.013680523,-0.003444153,-0.004456079,-0.002510298,-0.0013422287,-0.07153749,0.01007122,0.033102304,-0.012707633,-0.0021604777,-0.03644136,0.009362571,0.03101239,-0.028874433,-0.022953013,0.019662,-0.0028526115,0.012683611,-0.029114652,0.04585798,0.0039996617,0.023469485,0.0078792125,0.041341845,0.022292407,0.0031618946,0.036249183,0.003753436,0.076582104,0.02836997,0.018965362,0.0058913934,0.012755677,0.047611587,-0.043888178,0.012611545,0.030796193,0.001135039,0.019085472,0.0022730809,0.017896382,-0.008545823,-0.012575512,-0.04393622,-0.04420046,0.027433114,-0.0325498,-0.029859334,0.0074648336,0.017463988,0.012839754,-0.02642419,-0.002325629,-0.026640387,0.008948191,-0.026472233,-0.0057562697,0.0070624654,0.036873754,0.0027730386,0.009692873,-0.069135286,0.0028421017,-0.03226153,-0.03197327,0.03629723,0.028153773,0.03151685,-0.024178134,0.0029336857,-0.031805117,0.0041948403,-0.026880607,-0.011002072,0.009885049,-0.0038585323,0.025439288,-0.009380587,0.020803044,0.0013609959,0.057460602,-0.007050454,0.017488008,0.021355549,-0.0013227109,-0.025871685,-0.0047863815,0.038795516,-0.0029502008,-0.006888306,-0.0060325223,-0.040861405,0.023265298,0.01628691,-0.016995559,0.00953673,0.015253964,0.019649988,-0.0003986149,0.011776781,0.0007401776,0.018124592,-0.010449566,-0.034303404,-0.032934148,0.0650996,0.0032189467,-0.01629892,-0.053184688,0.014929667,-0.036489405,0.015422118,0.046722773,0.010936012,0.021331528,0.0010922499,0.006167646,0.011620638,-0.028201817,-0.02861019,-0.016334953,0.029042587,0.0027054767,-0.017163713,0.01116422,-0.027649311,-0.028946498,0.013920744,-0.03538439,0.002282089,0.027817465,0.0080053285,-0.010215351,0.013620469,-0.018388834,-0.056499723,-0.006059547,0.008774032,0.027216915,0.0053478954,-0.0015156375,-0.0035222245,-0.004966547,-0.06442698,-0.002498287,0.005329879,0.014064875,-0.028105728,0.004684288,-0.0038675405,0.021091308,-0.016082723,0.021379571,0.0062337066,-0.040861405,0.023793781,-0.043503825,0.0050866567,0.012053033,-0.021103319,0.01568636,-0.010653753,0.042422835,0.020502768,0.011086149,-0.007687037,0.04838029,0.0403089,0.012971875,-0.0000013312969,-0.0013324698,-0.016082723,-0.016635228,-0.019181559,0.033582743,-0.0055040387,0.028273882,0.022388496,-0.013776612,-0.033462632,0.029523026,0.057364512,0.0001714382,0.0068943114,-0.00645591,0.014581349,-0.029835312,0.0011538062,-0.023301331,0.036729623,0.0073267072,-0.001555424,-0.0034351447,0.020118417,-0.040380966,-0.0105997035,0.037282128,0.02969118,0.029667158,-0.018316768,-0.03475982,-0.0025523365,-0.0013519877,0.0019307676,0.009278494,0.04244686,0.02909063,0.01943379,-0.006900317,-0.012443392,-0.020454725,-0.03101239,-0.009891055,0.01774024,0.026039837,0.020658912,0.0074167894,-0.020803044,0.003336054,0.01568636,-0.016118756,-0.017824316,-0.020839076,0.012695622,0.0072065974,0.006966377,-0.029426938,-0.032309577,0.033558723,-0.026808541,0.0047893845,-0.02316921,-0.005489025,-0.029667158,0.0075128777,0.020779021,0.03315035,-0.012383336,-0.021799957,0.034303404,-0.016971536,0.004912497,0.0048794667,0.030964347,0.03905976,-0.000022813854,0.012010995,0.0007142789,-0.05227185,-0.009518714,-0.0047863815,-0.003612307,0.007813153,0.017319854,0.021535715,-0.019337703,0.021848,0.006443899,0.004807401,-0.015253964,-0.0074768444,-0.00340812,0.013248128,-0.005468006,0.030748148,0.003885557,-0.013296172,0.002385684,-0.006419877,-0.007638993,0.000008427637,-0.022304418,-0.0011470501,0.023373397,0.026039837,0.020094395,-0.008239543,0.013091985,0.021679847,-0.0030177627,-0.0043329666,-0.0333185,-0.003251977,0.0025883694,0.036129072,-0.030243685,0.0072966795,-0.034783844,-0.010359484,-0.0093445545,0.01799247,-0.018328778,-0.0017971451,-0.015434129,-0.036609516,0.015674349,0.019625966,-0.016875448,-0.04576189,0.04309545,-0.045161344,0.0068042288,-0.025751574,0.021751912,0.010527638,-0.037306152,-0.022004144,-0.0124794245,-0.023241276,-0.0028841402,0.0355045,0.008978219,-0.013716557,0.004987566,-0.00083026005,-0.030555973,-0.028153773,0.021920066,-0.014076887,0.026376145,0.008936181,-0.011746753,-0.052319895,0.014425205,-0.004804398,0.0031588918,-0.010323451,0.0013076972,0.0023646648,-0.023481496,-0.019121505,0.03437547,0.0015884541,0.02111533,-0.017163713,0.013380249,-0.023745738,-0.019181559,0.023277309,-0.015434129,-0.015866525,-0.024406342,0.033414587,0.01628691,-0.0149897225,0.006756185,-0.020526791,0.020178473,0.016611207,0.007110509,-0.017175723,0.025607442,-0.0069243386,0.004897483,-0.035864834,0.03524026,0.029474983,0.018088559,0.016575174,0.00034362706,0.04345578,0.0057682805,0.037258107,-0.021631803,-0.012719644,0.0052277856,0.02015445,0.015157877,0.020214505,0.010251384,0.011464495,0.0072426302,0.013380249,0.024886783,-0.013584436,0.012827743,0.023709705,0.0090082465,0.021127341,-0.014377161,-0.006539987,0.024178134,0.005260816,0.015241953,0.01847291,0.0011432966,-0.004678283,-0.011650666,0.00042714103,-0.04151,0.0064859376,0.00054612494,0.010353478,-0.0009511207,-0.0068342565,0.037834637,-0.034831885,-0.029474983,-0.007530894,-0.029979445,0.011320363,-0.009524719,-0.039516173,-0.018160624,-0.0011598117,-0.027841488,0.028802367,0.019445801,-0.00681624,-0.011032099,0.0121851545,0.017848339,0.033222415,0.005558088,0.0006230704,-0.025006892,0.029643137,-0.018196657,0.024790695,0.0069483607,0.028081708,0.038819537,-0.020682935,-0.004723324,0.008900148,0.008828081,-0.014545315,-0.005903404,0.0064018606,-0.0056721927,-0.013836667,-0.005176739,-0.032501753,-0.007164559,0.011050115,0.0018421864,-0.042807188,-0.040837385,0.009494692,-0.044440683,0.04775572,0.022544637,-0.016755339,-0.011356396,-0.030507928,-0.008533812,0.010557665,-0.013091985,0.037089955,-0.012047028,0.01751203,0.011314358,0.021139352,-0.016683273,-0.0029742226,-0.034087203,0.023625627,0.024958849,-0.020178473,-0.014545315,0.014617382,-0.0014293084,0.023493506,-0.015662339,-0.01315204,-0.014124931,0.008762021,-0.0025087968,0.009476676,-0.016575174,-0.03886758,-0.0049905684,-0.03221349,-0.008299598,-0.00019189442,0.04717919,0.0077290754,0.051695324,0.011908902,-0.038387142,0.018605031,-0.0025388242,-0.0008377669,0.01080389,0.011482512,-0.015398096,-0.016827404,0.04451275,-0.008780038,0.010407527,-0.01193893,0.0030658066,-0.027000718,-0.010695791,-0.004627236,-0.008551829,-0.023037089,0.013932754,-0.025919728,0.009290505,0.001108765,0.011998984,-0.012719644,0.01255149,-0.021763923,-0.036849733,-0.010701797,-0.0124794245,-0.031324677,0.0347358,-0.016803382,0.008299598,-0.017043602,0.017668175,0.0132721495,0.029138675,-0.009026263,-0.03598494,-0.021920066,0.0069783884,0.0017941424,-0.02885041,0.0003301147,0.016695283,0.038819537,-0.02642419,0.044104375,-0.023037089,0.001264908,0.028658235,-0.021343539,0.0015584267,-0.028273882,-0.038339097,-0.035624612,-0.031709027,0.005389934,0.010401522,0.03305426,-0.0018391836,0.034951996,-0.0030988369,-0.004305942,0.008960202,-0.017596109,0.011920913,-0.02570353,-0.010047197,-0.030579994,-0.006479932,-0.04393622,0.025679508,0.034687754,0.021127341,-0.0039996617,-0.023685683,0.045641784,0.009380587,-0.017439965,0.007074476,-0.012203171,-0.014221018,0.041221734,-0.007626982,0.0035072106,-0.021535715,0.0122692315,0.0275292,0.0030748148,-0.015350052,-0.0038645377,-0.017175723,-0.018785197,-0.034351446,0.02172789,0.047347344,0.010815902,-0.008125438,-0.054337744,0.0092604775,0.009116345,-0.023241276,-0.018617043,0.0042999364,-0.012959864,-0.007386762,-0.0068042288,-0.021067286,-0.010942017,-0.007759103,-0.02812975,-0.028033663,-0.027721377,-0.0077050533,0.027961597,0.013920744,0.00024603773,-0.039155845,-0.012827743,0.0006144375,0.034351446,-0.012371325,-0.02256866,-0.0020328609,-0.012971875,0.023733728,0.02630408,0.024694607,-0.038555294,-0.007819158,-0.015770437,-0.014833579,-0.0104315495,0.016731316,0.0016334953,-0.024466397,0.017488008,0.020370647,-0.028874433,0.043239582,0.01520592,0.009746923,-0.008095411,-0.019698033,0.018761175,-0.0013249629,0.015542228,-0.014233029,0.0018872276,-0.0038525267,-0.03389503,0.024190145,-0.000102937986,0.029114652,-0.013668513,0.0008745506,0.04501721,0.007542905,0.016683273,0.011980968,0.029378895,-0.038939647,-0.039420087,0.036657557,0.008768027,0.009855022,-0.0050175935,-0.0015223937,-0.016575174,0.031036412,0.014449228,-0.01181882,-0.005056629,0.05467405,-0.024394331,0.0012776697,-0.004362994,0.017067624,-0.012323281,-0.0242502,0.009590779,-0.02750518,-0.007903235,-0.01820867,-0.00748285,-0.003384098,-0.01183083,0.007987312,-0.015422118,0.011278325,0.010911989,-0.0033871008,0.026856586,0.048596486,-0.01580647,0.0032669907,-0.015001733,-0.005906407,-0.019217592,0.054962315,0.019181559,0.017584097,0.020863099,0.04826018,0.0253432,-0.009788961,-0.029883357,-0.000047997062,0.0047893845,0.026688432,-0.012839754,-0.012455402,-0.01556625,-0.027673334,-0.021079296,-0.024190145,-0.03656147,-0.0024082046,-0.023913892,0.00082650664,0.04175022,-0.0047293296,-0.007278663,0.0049995766,-0.03668158,0.0325498,0.06452306,0.017836329,-0.029667158,0.015506195,-0.00046617675,0.0116026215,0.01104411,0.02921074,-0.014449228,0.017163713,0.01882123,-0.03149283,0.041317824,-0.021427616,0.03137272,0.013656502,0.0029622116,0.012719644,0.048164092,-0.021031253,-0.01085794,-0.024430364,-0.034087203,0.018100569,0.021427616,-0.022604693,0.019181559,0.0056481706,-0.0043569887,0.023817804,0.053376865,-0.022616705,0.02402199,0.02147566,0.008395686,-0.03937204,-0.0015509197,0.00844373]},{"id":"interface-APIChannelOverwrite","type":"interface","source":"main","text":"Interface: APIChannelOverwrite\nDescription: Permission overwrite from GET /channels/{id} or GET /guilds/{id}/channels\nProperties: allow: string, deny: string, id: string, type: OverwriteType","meta":{"url":"/docs/typedefs/APIChannelOverwrite"},"embedding":[0.021269493,0.0002472564,-0.049365655,0.026517205,-0.02215185,-0.009346038,-0.014965271,0.00770903,0.0032449907,-0.02387013,0.043491002,0.0067918412,-0.005456693,0.043119483,0.010176152,-0.017623957,0.033576075,0.021014072,0.027701423,0.03229898,-0.036060613,0.04358388,0.0066525214,0.066641316,-0.049597856,-0.015557379,0.01530196,0.02211702,-0.019121645,-0.001912745,0.046463158,-0.02248854,0.013966812,0.014431211,0.000033288004,-0.018401826,0.026517205,0.00078585086,0.0070066256,-0.03090578,-0.0065190066,0.007947034,0.024171988,0.010971435,-0.033692177,0.082198694,-0.011760915,0.02303421,-0.016253978,-0.027724644,0.01152291,0.020572893,-0.058514323,0.020398743,0.035712313,-0.0026253078,0.014036472,0.0006534245,-0.049179897,-0.0016892528,-0.028490903,-0.039520387,-0.0058485297,0.0067047663,-0.0062751966,0.0072504357,-0.056656726,0.03750025,0.06747723,0.04353744,0.03006986,0.00588336,-0.021397201,-0.020201374,-0.027887182,0.009131253,-0.034458436,0.013084453,0.048622616,-0.03222932,-0.034272674,0.018808175,-0.06311188,-0.012109214,0.014965271,0.037755672,0.0126781035,-0.01098885,0.028792761,-0.013525632,-0.018065136,0.0030679384,-0.059257362,-0.031161198,-0.009798827,-0.026215345,0.013548852,0.00750005,-0.018947495,0.0611614,0.054938447,-0.05377745,-0.055867247,-0.008481094,0.016068218,0.0033146506,-0.00279075,0.01575475,0.0047426787,-0.07583642,-0.03889345,-0.019481555,-0.026726184,0.0022842644,-0.007471025,-0.044071503,0.03647857,-0.029187502,0.06037192,-0.047275856,-0.06924195,-0.044373363,0.06766299,-0.0041621793,-0.034040473,-0.006118462,-0.019609265,-0.014164181,-0.031741697,-0.058096364,0.042353224,0.008759733,-0.0027805914,-0.02234922,-0.03828973,0.0319739,-0.0022537883,0.0023829495,-0.053545248,-0.047136538,-0.031393398,-0.014338331,0.03780211,-0.005973337,-0.042144243,0.020897973,-0.0130960625,-0.041285105,0.00377905,0.035735533,-0.0312773,0.01474468,-0.0064957864,0.00012897968,-0.0107160155,-0.026424326,0.017635567,0.024102328,-0.023092259,-0.012329804,0.041912045,-0.027631763,-0.021687452,-0.04706688,-0.0439554,-0.027794303,0.05967532,0.05159477,-0.026354665,0.032879476,-0.047600936,0.024009448,-0.04676502,-0.0022247634,-0.018483095,-0.026563644,-0.017473027,-0.033738617,0.009142863,0.012202094,0.044071503,0.048018895,-0.027167365,-0.03784855,-0.042933725,0.041052908,-0.004286987,0.0002530614,-0.019829854,-0.005288348,-0.017264048,0.011668035,0.028165823,0.027863963,-0.012283363,-0.025216887,0.028351583,-0.02216346,0.024915027,-0.046138078,0.024357747,-0.01115139,0.047252636,-0.0016224954,-0.024775708,0.0030969635,0.011772525,-0.042306785,-0.06506235,-0.019272575,0.01576636,0.009055788,0.0070008207,0.008156015,0.0024351943,-0.053916767,-0.01518586,-0.021548131,-0.042562205,-0.021211442,-0.02331285,0.0038371,0.020735433,-0.014779511,0.0072039957,0.017194387,0.009984586,0.010924996,0.017565906,0.017310487,-0.0073200953,0.04472166,-0.025170447,-0.046556037,0.002972156,0.006675741,0.013873932,0.011627399,0.0006084358,-0.062833235,-0.03810397,-0.0041331546,-0.021153392,-0.00048072592,0.009473748,0.031811357,0.02347539,-0.011401005,-0.02403267,0.01509298,0.017066678,0.034481656,-0.017194387,-0.006884721,0.01482595,-0.01562704,0.056842484,0.008370799,-0.021652622,-0.012260144,0.057353325,0.018703686,-0.037012633,0.027980063,-0.014071302,-0.003253698,0.028839203,0.0024482554,-0.0062635867,-0.016416518,0.008115379,0.017565906,0.058792964,-0.021223051,-0.026099246,-0.012805813,0.06552675,0.02369598,-0.006913746,-0.016404908,-0.04739196,-0.018912666,-0.028351583,0.031788137,0.0026078927,0.001877915,-0.03926497,0.01517425,0.032577615,0.002959095,-0.027260244,0.03970615,0.040309865,-0.02259303,-0.027004825,0.055170648,0.028792761,-0.002935875,0.10012451,0.031184418,0.044117942,0.011813159,0.005540865,-0.020340694,0.028049722,-0.0065248115,0.021141782,0.01156935,0.013328263,-0.049922936,0.028676663,0.014059692,-0.054984886,0.006861501,-0.01544128,-0.03747703,0.029582242,0.009438918,0.006170707,0.019922733,-0.020921193,-0.005990752,-0.064783715,-0.0473223,0.006890526,0.0036252178,0.033181336,-0.0016050804,0.06654843,0.014222232,-0.0048616813,-0.031439837,0.011319735,0.006066217,-0.006089437,0.015719919,-0.028607002,0.06701283,0.024102328,-0.027097704,0.05981464,-0.004194107,-0.012631663,0.017031848,-0.012654883,-0.032833036,-0.017066678,-0.0043450366,-0.0011784134,0.0710531,0.012051164,-0.006727986,-0.06329764,-0.020781873,-0.0593038,-0.006722181,0.034226235,-0.01613788,-0.041447647,0.025286546,0.004130252,0.011900234,-0.022326,0.027562104,0.035665873,-0.03687331,-0.02321997,-0.009601457,-0.015406449,-0.041795947,0.033645734,-0.020143323,-0.021281103,-0.006646716,0.011993114,0.026447546,-0.027747864,-0.03687331,-0.023823688,-0.021095343,0.011197831,0.02292972,0.0071691656,-0.0049168286,-0.009822047,0.03896311,-0.028746322,0.040867146,-0.047159757,-0.014106131,-0.0053899353,0.018239286,0.010158736,-0.004504674,0.0111223655,0.021048902,0.020607723,0.014593751,-0.0011268941,0.004890706,0.027167365,0.027701423,-0.054984886,-0.005346398,-0.035549775,-0.0041447645,0.02321997,0.0029271673,0.047229417,-0.02301099,-0.0064261267,-0.008486899,0.03109154,0.024125548,0.086378284,-0.0076742,-0.013084453,-0.06060412,0.014036472,0.014419601,0.02176872,0.014547311,-0.03106832,0.0058543347,0.029024962,-0.03647857,-0.00029188226,-0.0009469394,0.03076646,-0.070913784,-0.026981605,0.020654162,0.040727828,-0.039125647,0.028932082,0.013955202,0.032368638,-0.014721461,-0.008765538,-0.0035352404,-0.025077567,-0.027585324,0.007807715,0.011401005,0.0070530656,-0.0074071703,0.008289529,-0.056192327,-0.020712214,0.018738516,-0.04565046,-0.033297434,0.00079020456,0.078344174,-0.0093170125,-0.050991055,-0.03102188,0.05131613,-0.03199712,0.041819166,-0.021199832,-0.018866224,0.011789939,0.04504674,0.019620875,0.028328363,-0.025611626,-0.0069601857,-0.058421444,-0.027469223,0.0131773325,0.019783413,0.033390317,0.0012800008,-0.034086917,-0.03088256,0.0082488945,-0.009496967,0.026052807,0.008597193,-0.0009991843,-0.01632364,-0.008063135,0.0046062614,0.010466401,0.10634746,0.0054073506,-0.011000461,-0.0637156,-0.0001901135,0.017240828,-0.002684809,-0.001532518,-0.0107972855,0.0048819985,-0.046138078,0.0046207737,-0.029628681,0.049551416,-0.018227676,0.023963008,-0.05317373,0.017647177,-0.01484917,0.010704406,-0.023893349,-0.0004897962,-0.036362473,-0.019853074,-0.0062577818,-0.03756991,-0.020735433,-0.011877014,-0.0036223151,-0.05094461,-0.0045191864,-0.049365655,0.0064783716,-0.013862322,0.039473947,-0.013363092,0.010745041,-0.008939688,0.017113118,0.008608804,0.017101508,-0.027097704,-0.036037393,-0.006913746,0.019551214,0.020398743,-0.0054450827,-0.03260084,0.04590588,0.0015934705,-0.0015847629,-0.005909482,0.026261786,0.01553416,0.012968353,-0.010837921,0.0033843105,-0.024566727,0.047113318,-0.012724543,0.006507396,-0.013409533,0.012085994,0.027840743,0.026865505,0.00562794,-0.03297236,-0.0073259003,0.008666853,-0.033483196,0.049969375,0.021118563,-0.056192327,-0.00082140643,-0.01519747,-0.0064261267,-0.013862322,0.0034858978,-0.025425866,-0.02916428,-0.018041916,0.0035468503,0.019098425,0.03552655,-0.03873091,0.006861501,0.032949135,0.010402546,0.050573092,0.020526454,0.008707489,-0.00382549,0.04609164,0.0008540595,-0.03622315,-0.020224594,-0.039868686,0.064133555,0.02951258,0.004130252,-0.019144865,-0.006037192,-0.0028647638,-0.0117783295,0.034737073,0.0049690735,0.03199712,0.008573974,-0.0058543347,-0.011853795,0.026052807,0.036641113,0.013188942,-0.003854515,-0.006942771,0.004295694,0.03027884,0.00065886666,-0.004844266,-0.0070066256,0.03067358,0.023092259,-0.014872391,-0.011813159,0.022395661,-0.0020839924,-0.0084985085,-0.033576075,0.0036716578,-0.005024221,0.017205996,0.011133975,0.025588406,0.032020338,0.025193667,0.016428128,-0.0016007266,0.02338251,0.03065036,-0.020712214,-0.033065237,-0.0019911125,-0.034574535,0.028862422,-0.008928078,0.009102228,-0.033552855,0.027678203,-0.0018648538,-0.033042017,-0.012341414,-0.0012749215,-0.010837921,-0.0016137878,-0.017763276,0.01598695,-0.028885642,0.016346859,0.0006149664,-0.0052970555,-0.04736874,0.0028241288,-0.020410353,0.0026078927,0.008852613,-0.0067512062,0.0020056248,0.008208259,-0.0067047663,0.008562364,-0.036432132,-0.028398022,0.015719919,-0.02247693,-0.0020578697,-0.013061233,0.026795845,0.018076746,-0.011517105,0.012306584,-0.028351583,-0.021281103,-0.008463679,-0.03889345,0.007018236,-0.012039554,-0.016927358,-0.00370939,0.0047426787,0.019493164,0.004136057,0.021130173,-0.0017269852,0.00073251745,0.019214524,0.012608443,0.021664232,0.0070124306,-0.03849871,0.0038574175,-0.024891807,0.026726184,0.004316012,-0.0056424527,-0.025588406,-0.0052506155,0.029141061,0.014257061,-0.044071503,0.025658065,0.048018895,0.024543507,0.007929619,0.017658787,0.0015833117,0.0070008207,-0.0054450827,-0.0066525214,-0.012852253,-0.0127593735,0.03782533,0.011192026,0.027863963,-0.0063680764,-0.018169627,-0.034504876,0.01518586,-0.026749404,0.004908121,0.016265588,0.036757212,-0.03685009,0.0047426787,0.005555378,0.013305043,0.032531176,-0.011911844,-0.016822867,0.00729107,-0.016695159,0.025286546,0.02144364,0.04458234,-0.0303485,0.00379066,-0.026493985,0.018587586,-0.011133975,0.0004197735,-0.026192125,0.033668954,0.008521729,0.013827492,-0.02280201,-0.004321817,0.016741598,0.028908862,0.015859239,-0.013931981,0.01502332,0.0027820426,-0.033297434,0.008591388,-0.017751666,0.017287267,-0.021234661,0.006600276,-0.040379528,0.01583602,0.014477651,-0.017902596,0.0043798666,-0.066130474,-0.048343975,0.009868487,-0.01563865,0.020723823,0.003866125,0.021919651,-0.050526652,0.0022015434,-0.038800567,-0.020793483,0.025309766,0.047786698,-0.029141061,-0.018587586,-0.018401826,0.0006363723,0.0066176914,-0.04353744,-0.020480013,-0.05368457,0.01630042,-0.038429048,-0.004435014,-0.0073259003,-0.021246271,-0.0063274414,-0.0054073506,0.024264868,-0.0066699362,-0.056238767,-0.012155654,-0.010402546,-0.050665975,0.01148808,0.023986228,0.0033117482,-0.0053667156,0.0296519,-0.009943952,-0.073467985,0.021106953,0.025007907,-0.030116301,0.0027065778,-0.027028045,0.012782593,0.020236203,-0.00806894,-0.03887023,0.040727828,0.0014889805,-0.008231479,-0.011377785,0.054566927,-0.011319735,0.005555378,-0.00039655354,0.019620875,0.03787177,0.037407372,-0.009659507,-0.006687351,0.0072098006,0.0006247623,0.020178154,0.024845367,-0.017949037,0.025379427,-0.02254659,-0.018227676,0.019400284,-0.025681287,0.0046410915,0.018123185,0.004048982,0.014384771,-0.0010797286,-0.03065036,-0.03055748,-0.025611626,-0.024961468,-0.006832476,0.013897152,-0.013560462,0.01538323,-0.010553476,-0.017867766,0.011946674,0.0007307034,-0.01115139,-0.023254799,0.04544148,0.025425866,0.004368257,0.025425866,-0.018146407,0.012875473,-0.017531076,-0.0144892605,0.040704608,0.019597653,0.0300002,-0.010489621,-0.001989661,-0.03770923,-0.004812339,-0.03088256,-0.00199982,-0.011801549,0.013723002,0.025867047,0.029117841,0.043165922,-0.00007056694,0.02969834,0.006333247,0.01483756,0.033367097,0.03030206,0.03780211,0.011319735,0.03928819,0.040658165,0.005334788,0.029582242,-0.05229137,0.018819785,-0.032763377,-0.049644295,0.008394019,-0.019504774,0.019330624,-0.01122105,0.019458335,0.0037703426,0.007331705,-0.017345317,-0.031439837,-0.008382409,0.010454792,0.0056395503,-0.0032914307,-0.028978521,-0.00030911583,0.0008025402,-0.0008272114,0.043096263,0.0063158316,0.048297536,0.004832656,0.013003183,-0.033831496,-0.01482595,-0.024055889,-0.0029271673,0.02286006,0.007935424,0.024566727,0.03552655,-0.027771084,-0.03083612,-0.0048645837,-0.032693718,0.014442821,0.033552855,0.016660329,0.0015238104,-0.015580599,-0.032786597,-0.050573092,0.0055727926,0.014431211,0.018041916,-0.0044379164,-0.033158116,0.03016274,0.019040374,-0.061997317,-0.0073433155,0.0032682107,-0.0027733352,-0.010942411,0.02299938,0.008185039,0.029233942,0.016462957,-0.0031346958,-0.013107672,-0.035108592,0.008928078,-0.032113217,-0.013479192,-0.017728446,-0.021188222,0.028653443,0.007505855,0.073514424,0.0055902074,-0.005218688,-0.026076026,0.006507396,0.017298877,0.041215446,-0.0028937887,0.006246172,-0.00019446724,0.01124427,0.010118102,0.025611626,-0.014454431,0.025518747,-0.020096883,-0.0049168286,-0.033274215,0.023603098,0.028885642,0.003645535,0.004913926,-0.013641732,0.02265108,-0.023963008,-0.0032014532,-0.050851732,0.02265108,-0.0011116561,0.025704507,0.028142603,0.023487,-0.049133454,-0.0013300689,0.0609292,0.025054347,0.028839203,-0.0312773,-0.05275577,0.011017876,0.0018169626,-0.0025658067,-0.026029585,0.0055844025,0.017600738,0.021095343,0.0010775517,-0.011830575,0.01520908,-0.012527173,0.0039561023,-0.0016486178,0.020398743,0.03729127,0.009572432,-0.012527173,-0.00016136064,0.012921913,-0.009044178,-0.021478472,-0.021594571,0.020654162,0.0466257,0.020363914,-0.0121904835,-0.012109214,0.03264728,-0.03585163,-0.012585224,-0.0001629026,0.008504313,-0.016950577,0.016869308,0.010344496,0.02292972,-0.020259423,-0.024589948,-0.008428849,0.01519747,0.0038719298,0.007947034,0.0031579158,0.033088457,-0.011900234,0.033506416,-0.0145705305,-0.041865606,-0.011470665,-0.00013814068,-0.0033843105,0.054195408,-0.0026078927,0.008028304,-0.032740157,0.0011261685,-0.001327892,-0.0011493885,0.00074666715,-0.01516264,0.0111223655,0.008376604,0.0046614087,0.029117841,0.0025658067,0.00025233577,-0.025193667,0.019388674,-0.018668855,0.026911944,-0.0047484837,0.007848349,0.04495386,0.017623957,0.071517505,0.010524451,-0.02144364,0.035990953,-0.027028045,-0.027237024,-0.013038013,0.035317574,-0.024055889,0.012724543,-0.004832656,0.0046527013,-0.0037297076,-0.0026398203,-0.019353844,0.017902596,0.019028764,0.03780211,-0.06380848,-0.008957103,-0.0048007285,0.006002362,-0.017310487,-0.020433573,0.01541806,-0.020700602,0.00038748325,0.002269752,-0.024450628,-0.013630122,-0.031393398,0.01475629,-0.020096883,-0.018854614,0.0045830416,0.016625497,-0.011023681,-0.00045859438,0.03027884,0.010820506,-0.019795025,-0.022395661,0.034969274,-0.025704507,0.044396583,0.0055466704,-0.018018696,-0.026865505,0.012631663,0.009258963,-0.0008054427,-0.0028923375,0.009584042,0.014593751,-0.047647376,-0.021838382,0.040588506,0.011261685,-0.018250896,-0.018982325,0.012898693,-0.01544128,-0.012585224,-0.017449807,-0.009264768,-0.025936706,0.017380146,0.035967734,0.0003468483,-0.04527894,-0.017008627,-0.019272575,0.029373262,0.019249355,0.03002342,-0.017623957,-0.015847629,-0.039497167,0.0036803652,-0.036037393,0.05126969,-0.0061358768,0.0078425445,-0.004054787,0.010454792,0.034504876,0.0051519307,0.018250896,-0.036432132,-0.010971435,0.002912655,0.01551094,0.011540324,0.016579058,0.0133398725,0.022024142,0.007024041,0.0022944233,0.0018851713,0.009578237,0.009758192,0.024682827,-0.01138359,-0.0028386412,0.029559022,-0.022244731,0.024775708,0.00033741517,0.013908762,0.016695159,-0.0035410454,0.0098917065,0.004060592,-0.0053899353,-0.03613027,-0.004995196,0.035062153,0.007941229,0.01578958,0.017623957,0.005903677,-0.058467884,-0.0071865804,0.0035120205,-0.026192125,0.008376604,-0.020596113,-0.041912045,-0.015905678,-0.009079008,-0.033924375,-0.004394379,0.009555018,-0.013154113,0.0015194567,0.013885542,-0.0015310667,0.02246532,-0.016404908,0.010756651,-0.016033389,0.040983245,-0.018320557,0.02370759,0.002152201,0.036037393,0.026168905,0.00588336,0.014187401,-0.008608804,0.026215345,-0.0064203218,-0.018506316,-0.012306584,0.017519467,-0.027422784,0.012236924,-0.008765538,-0.024334528,0.015905678,0.0012234021,-0.036664333,-0.0023887544,0.019481555,-0.017298877,0.050712414,0.0072852653,-0.02180355,-0.03552655,-0.014338331,0.0043392316,0.01504654,-0.0064609563,0.019168084,0.010472206,0.003276918,0.008684268,0.014419601,-0.021362372,0.028189043,-0.02320836,0.018668855,-0.01527874,0.0022146045,0.001158096,0.0025832215,0.0122717535,0.01551094,0.0024134256,0.01544128,-0.0080050845,-0.016706768,-0.001204536,0.028560562,-0.014709851,-0.02180355,-0.00565116,-0.027237024,0.023452168,0.041726284,0.013212163,0.020259423,0.03687331,0.0121904835,-0.02225634,0.011598375,0.018843004,0.016091438,0.026633305,0.0028908863,-0.0027225413,0.0014657605,0.034760293,-0.012178874,-0.019632485,0.0032188683,0.021106953,-0.017995477,0.023254799,-0.013281822,-0.017345317,-0.0315095,-0.0053028604,-0.0058049923,-0.014500871,0.016184319,0.014616971,0.010234201,0.024450628,-0.01072182,-0.01458214,0.0024380968,-0.019063596,-0.048622616,0.021815162,-0.0073084855,0.009049983,0.011795744,0.013154113,0.008208259,0.009102228,-0.04637028,-0.020363914,-0.00556989,0.0021681646,0.022012532,-0.024845367,-0.0070472606,0.034620974,0.021629402,-0.034063697,0.016068218,-0.008115379,-0.027678203,0.0448842,-0.032925915,0.014524091,-0.0149768805,-0.030627139,-0.029303601,-0.02304582,-0.007517465,-0.010373522,0.014082911,0.01466341,0.048622616,0.0012517015,-0.0036049003,0.027329903,0.0094795525,-0.003082451,-0.012701323,-0.017438198,-0.012945133,-0.0014156925,-0.034133356,0.014384771,0.027306683,0.009734972,-0.0069659906,-0.017078288,0.03822007,0.03006986,-0.014512481,-0.009299598,-0.022569811,-0.0013141051,0.020491622,0.0027834938,-0.02248854,-0.014280281,0.026076026,0.034481656,0.0008250345,0.0048413635,0.00765098,0.024822148,0.0018764638,-0.043816082,0.02301099,0.0051751505,0.021710671,0.0027167364,-0.042144243,-0.0065886662,0.009148668,-0.011900234,-0.013154113,0.034667414,0.017438198,-0.0128406435,0.032995578,-0.022244731,-0.03060392,-0.025007907,-0.02320836,-0.0091544725,-0.020096883,-0.03866125,0.030952219,0.0033088457,-0.010855336,-0.06645555,0.004301499,-0.01506976,-0.0019403187,-0.012144044,-0.044094723,-0.0011994565,0.009816242,-0.0025788678,0.034272674,0.009351843,-0.028885642,-0.020352304,-0.028142603,-0.035921294,-0.014616971,0.0050300257,0.043189142,-0.016973797,0.0028517025,0.0016747403,-0.029396482,0.032089997,0.0126781035,0.003300138,-0.0042434493,-0.009084813,0.000115737035,0.020073663,0.010553476,-0.0296519,0.009717558,-0.0026935164,-0.035781972,0.03803431,0.029001743,0.018784955,-0.007819325,-0.020944413,0.03153272,0.033018798,0.017426588,0.014140962,0.00375583,-0.011801549,-0.015870849,0.028072944,-0.002989571,0.042051364,0.0076974197,-0.040286645,-0.0035207279,0.03729127,0.021548131,-0.040147327,-0.0072852653,0.014140962,-0.023777248,0.013653342,-0.00733751,0.04321236,-0.009096423,-0.012399464,0.010327081,-0.029187502,0.0047949236,-0.016404908,-0.006931161,0.0029170087,0.009613067,0.018761735,-0.02194287,-0.021420421,0.0095608225,0.013711392,0.019713754,0.03552655,-0.017914206,0.018483095,-0.020677382,-0.006722181,0.005392838,0.03053426,0.017983867,0.013792662,0.02254659,0.051362574,0.028839203,-0.0093170125,-0.016497789,0.038429048,-0.025100786,-0.006124267,0.008463679,-0.017716836,-0.035433672,-0.025727727,-0.013850711,-0.033970814,0.0021318835,0.011830575,-0.003317553,0.016021779,0.03083612,-0.003900955,0.017147947,0.042655084,-0.012631663,0.018912666,0.03148628,-0.014245451,-0.050851732,0.0105476715,0.021908041,0.01544128,0.024613168,0.034179796,-0.0064493464,0.03659467,-0.022233121,0.01467502,0.006861501,0.002147847,0.017705226,0.03777889,-0.012573614,-0.0028212264,0.06144004,-0.02296455,0.015685089,-0.033668954,-0.042678304,0.036014173,0.019191304,0.00056852645,0.020990852,0.0018590488,-0.008440459,-0.0029170087,0.049690735,-0.0094795525,0.028932082,-0.014396381,0.028723102,-0.040495627,-0.0034191406,0.003668755]},{"id":"interface-APIChannelPartial","type":"interface","source":"main","text":"Interface: APIChannelPartial\nDescription: Minimal channel (id, type required)\nProperties: icon: string | null, id: string, name: string | null, parent_id: string | null, type: number","meta":{"url":"/docs/typedefs/APIChannelPartial"},"embedding":[-0.015134748,-0.019190906,-0.023348186,0.02366279,0.04948287,-0.035820026,0.014887558,-0.008769615,0.023438072,0.028988604,0.0031235781,0.0033202064,0.012898805,-0.0013602453,0.030898705,-0.0032555999,-0.025820082,-0.0025280758,0.016696537,0.034381833,-0.018067315,0.019876294,0.033303186,0.053797454,0.0028960514,0.0016586987,-0.0031235781,-0.01805608,0.005870754,0.015584184,0.09653879,-0.023707734,0.047280636,0.035168346,-0.002940995,0.012954985,0.040741347,0.02103359,-0.0143369995,-0.0006481706,-0.014932502,0.034247,0.027348163,0.02152797,0.0020758312,0.022078529,-0.00856175,0.06683109,0.023730205,0.0009367926,-0.03312341,0.0019283601,0.013089815,0.016730245,-0.01923585,0.024381887,-0.031820048,-0.008320179,-0.01611227,-0.009640397,-0.023820093,-0.04137056,-0.00921905,0.023303242,-0.0018103833,0.057572715,-0.05721317,0.025775138,0.015741486,-0.008730289,0.019056074,-0.009365117,-0.027348163,0.006056146,0.016651593,0.048539057,-0.045842443,-0.003443801,0.024763908,-0.0026558843,-0.035280704,0.053527795,-0.040336855,-0.041730106,0.0013370713,0.0033145885,-0.04402223,-0.0058314283,-0.04588739,0.0008384785,-0.0061347974,-0.012157236,-0.07613441,-0.026651539,0.0016938108,-0.03244926,0.030089721,0.02032573,-0.025640307,0.036202047,0.039572816,-0.021685272,-0.072763644,0.007837036,0.00733142,-0.022932457,0.004480312,0.016977435,-0.04188741,-0.01857293,-0.00938197,0.00064465933,-0.016404403,0.03397734,-0.009224668,-0.018865064,0.062022127,-0.011101062,0.029100962,-0.018157203,-0.02265156,-0.03660654,0.031932406,0.024381887,-0.008432537,-0.018696526,-0.03649418,-0.00063693465,-0.06660637,-0.052404206,0.035325646,0.049392987,-0.009713429,0.006213449,0.017707767,-0.0044381777,-0.0005084241,-0.024606606,-0.06310078,-0.06242662,-0.008235909,-0.0018117877,0.094381504,-0.003988742,-0.0022359428,0.049213212,-0.029393096,0.04530312,0.0045786262,-0.002497177,0.020258315,0.010207809,-0.01674148,-0.02026955,-0.021662802,-0.009387588,-0.0063538975,-0.012988692,-0.018808885,-0.07662879,0.034022283,-0.06543784,-0.0032977345,-0.008977478,-0.04292111,0.0030533539,0.000081416336,0.020213371,-0.05626935,0.018629111,-0.0017963384,-0.016954962,-0.052179486,-0.005345476,0.002609536,-0.02590997,-0.010179719,-0.0475503,-0.049617704,0.027752655,0.07029174,0.046201993,0.017595408,-0.035752613,-0.0026474572,0.02957287,-0.022179652,-0.0065673795,0.025572892,-0.04442672,-0.04065146,0.0022879087,-0.008056135,0.028471753,0.045775026,-0.004120764,0.026808841,-0.0026432439,0.0077022044,-0.027393106,0.018157203,0.007533666,0.05411206,-0.0124156615,-0.008499953,-0.004412897,-0.00047647208,-0.018898772,-0.023235826,0.0029578488,0.01898866,-0.046246935,-0.023999868,-0.017101029,-0.018460572,-0.018842593,-0.003463464,0.02152797,-0.001838473,-0.051145785,-0.008129168,0.0059381695,0.058516532,-0.04166269,-0.00045294693,0.03474138,-0.008679727,-0.019910002,-0.02617963,0.020056069,-0.016415639,0.052763753,-0.045864914,-0.0058426643,-0.013786441,0.0036432382,-0.015966203,0.017505521,-0.015505532,-0.051640164,-0.02995489,-0.021516735,-0.015370701,0.012707795,0.0049578375,-0.0023103806,0.021617858,-0.007129174,-0.019797644,-0.0073988354,0.060044613,0.0035421152,-0.0062583922,0.03312341,0.0021249882,0.008758378,0.039797533,0.037055977,0.033842508,-0.00949433,0.024202114,-0.051145785,-0.016011147,-0.010516795,0.0055477223,-0.02240437,0.02640435,0.017381927,0.012134764,-0.00015914589,0.030876234,-0.038269453,0.07155017,-0.002144651,-0.029258266,0.0033876216,-0.0027738612,0.012999929,-0.069033325,-0.01635946,-0.041842464,0.0046853675,-0.017089793,0.07033669,-0.0049999724,0.037550353,0.03651665,-0.02390998,0.02894366,0.00166853,0.009977473,0.03397734,0.04357279,-0.08377482,-0.011190949,0.048269395,0.0548761,-0.0038145857,0.06543784,0.0074213073,0.019786408,-0.02768524,0.0018525178,-0.06647154,0.017134737,-0.0138313845,0.04287617,0.00757861,0.013056108,-0.055685084,0.04062899,-0.010567357,-0.05186488,-0.0384717,-0.045482896,-0.013112287,-0.014460594,0.0015898788,0.0012535043,0.04199977,-0.028516697,-0.03564025,-0.0438874,-0.034898683,-0.016438112,-0.0009241522,-0.0012127742,-0.023550432,0.02640435,0.0043398635,0.007780856,-0.08337033,0.041954823,0.020415617,0.004387616,-0.016831368,-0.03613463,0.0377526,-0.027909959,0.03444925,0.04489863,0.006426931,-0.013988687,0.027887486,0.026584122,-0.0030365,-0.033864982,0.0045842445,0.0140336305,-0.016426876,-0.045482896,-0.01534823,-0.025572892,-0.06516818,-0.027954902,-0.0012457797,0.020348202,-0.062921,-0.08013439,0.028898716,-0.024247058,0.0074774865,0.012247123,0.011752744,-0.012539256,-0.037213277,0.0008813153,-0.038269453,-0.038269453,-0.04732558,0.027393106,-0.016674066,0.009129163,-0.002565997,0.018865064,-0.00024771632,-0.0077977097,0.0042359317,-0.035820026,-0.04004472,0.052089598,-0.009432532,0.019078545,0.021921227,-0.00038693607,-0.013685318,-0.010617919,0.0351234,-0.043999758,0.03399981,0.0193145,0.00962916,-0.015550476,0.008876355,0.026763897,0.023820093,-0.0145392455,0.006572997,0.013808913,-0.0008967647,0.014314528,-0.0066797384,-0.0049634557,0.018527988,-0.03323577,-0.00019153686,0.013617902,-0.013269589,0.031415556,-0.022561673,0.036404293,-0.03208971,0.022033585,0.055280592,0.02694367,-0.032157127,-0.0034241383,-0.03173016,0.035887443,0.03665148,0.008157258,-0.001567407,-0.01742687,-0.041280672,-0.011786452,-0.008005573,0.020235844,0.022572909,-0.019247085,-0.05874125,0.0035870587,0.031325668,0.03033691,0.0067808614,0.046741314,-0.035370592,0.01094376,-0.0051095225,-0.019426858,0.043145828,0.006719064,-0.014797671,0.0056965975,-0.013269589,-0.0051348032,-0.0033033525,0.007438161,-0.031999823,-0.03647171,-0.009483093,-0.0797299,-0.00089255127,-0.020651571,0.069752425,-0.0001873234,-0.044966042,0.030853761,0.027977373,-0.040471688,0.03274139,0.0040168315,0.018011136,0.006213449,0.06328055,0.0029522309,-0.013674081,-0.02667401,0.022415606,-0.042246956,-0.00817973,0.01761788,-0.02669648,0.06125809,0.037909903,-0.031752635,-0.023100996,-0.009471858,-0.026651539,-0.0018960569,-0.0012633357,0.02314594,-0.01447183,-0.011337016,-0.030673988,0.0020407191,0.08368493,0.012067349,0.012674088,-0.025865026,0.0058426643,-0.008039282,-0.007825799,0.010359493,-0.009325791,0.004935366,-0.033415545,-0.05537048,0.009449386,0.01679766,0.0011271005,0.015011153,-0.031752635,0.0076010814,0.016044855,0.026381876,-0.023100996,0.016415639,-0.028786357,-0.020943705,-0.032516673,-0.015820138,0.009820171,-0.025640307,-0.034269474,-0.051100843,0.017247096,-0.053662624,-0.013438128,-0.017348219,0.03986495,-0.013853856,0.022011114,0.03260656,0.019415623,0.01359543,0.002245774,-0.034202058,-0.07590969,-0.034179587,0.010601065,0.01830327,-0.004278066,-0.0006225387,0.030112194,-0.019213377,0.02820209,-0.001573025,0.0015294859,0.021842577,0.0035870587,-0.0059100795,-0.0026938054,-0.021516735,0.026336933,-0.001991562,0.04139303,0.0035224524,0.013775204,0.0042836843,0.059190683,-0.0024255484,-0.011438139,0.01682013,-0.02642682,0.011286454,0.024426831,0.018381922,-0.014528009,0.006842659,-0.015370701,-0.06692098,-0.00013114394,0.019089783,-0.024044812,-0.016719008,-0.01698867,0.018404393,-0.010146012,-0.015483061,-0.022988636,-0.0029887476,0.026224574,0.01742687,0.035055988,0.0340897,0.008763997,-0.058606416,0.003971888,0.036426764,-0.022235831,-0.00006324579,-0.03546048,0.013752733,0.031864993,-0.0041376175,-0.0014311719,-0.00058040407,-0.017101029,-0.000894658,0.031348143,0.008758378,-0.000842692,-0.009146017,0.013067343,-0.0664266,0.025865026,0.04289864,0.018887537,-0.020808874,-0.022685267,0.01157297,0.04139303,-0.026876256,0.0020772356,0.019977417,0.032651506,0.020640336,-0.015269578,-0.036269464,0.010213426,-0.022741448,0.048673887,0.008966243,-0.025572892,-0.0044466048,-0.00028879757,-0.003039309,0.025550421,0.013145994,0.02793243,-0.021516735,0.0076853507,-0.02453919,0.03397734,0.0015898788,0.007235915,-0.010499942,-0.03422453,0.038404282,-0.014426886,-0.00273594,0.004738738,0.017853834,0.0024044812,0.01110668,-0.03460655,0.0031966115,0.027595352,-0.016202157,0.019629104,0.014921266,0.011999934,-0.000091818314,-0.026988614,0.014831379,-0.026808841,0.019078545,0.00040975897,-0.00692131,-0.0015365083,0.017707767,-0.012494313,-0.00018697228,-0.0022865043,0.018011136,-0.022089766,-0.008174112,0.02705603,-0.05424689,0.0014943738,-0.007353892,0.03564025,0.014752727,-0.014292056,0.0012071562,-0.020640336,-0.00333706,-0.016438112,-0.040314384,-0.03083129,0.015112276,-0.004109528,0.0029887476,0.0060505285,0.012640379,-0.011280837,0.0007830013,-0.024179641,0.0022921222,-0.012292067,-0.000053458272,0.023887508,-0.014516774,-0.021101007,-0.0021516734,-0.026898727,0.044089645,0.018370684,0.011365105,-0.02453919,0.022662796,0.013337005,0.049887363,-0.03258409,0.00033830572,0.034808796,0.015640363,0.017247096,0.0188763,-0.010028034,-0.009898822,-0.0038173946,0.00473312,0.03170769,0.023865037,0.045775026,-0.016336989,0.038202036,0.0106740985,-0.01408981,-0.04894355,0.011117916,-0.009932529,-0.026112216,0.007028051,0.026763897,-0.034359362,0.015134748,-0.019123489,-0.0062921,0.009303319,-0.000735951,-0.017876307,0.033820037,0.008348268,0.024134697,-0.007426925,0.022325719,0.0066572665,0.005575812,-0.0013763969,-0.0029690848,-0.0027556028,0.022280775,0.02196617,0.04790985,-0.00020733733,0.0179999,-0.018831357,0.0047612097,0.0007654452,0.013797676,0.020292023,0.0045982893,0.018224617,-0.010556121,-0.02642682,-0.00790445,0.0053707566,-0.012280831,-0.003662901,0.00517132,-0.05622441,0.028831301,-0.0015828564,0.026808841,0.0034213294,-0.03914585,-0.018483045,0.026112216,-0.024629077,-0.012640379,-0.033550378,0.041123368,-0.03865147,-0.026831312,0.0036600921,-0.053617682,0.039055962,0.030291967,-0.013101052,-0.0075168125,-0.0038482933,0.009758373,0.014314528,-0.04647165,-0.02667401,-0.038269453,-0.029123435,-0.0033623409,0.017887542,-0.007859507,-0.0009683935,-0.0032331282,0.029640285,-0.008067371,-0.0049803094,0.0068145692,-0.025145927,-0.00965725,-0.057572715,0.012033641,-0.0046713226,-0.023572903,0.00059269334,0.0030617807,0.0054943515,-0.07321308,0.00492413,0.029213322,0.00091712974,0.0027850969,-0.04844917,0.004657278,0.03559531,0.0069381637,-0.018775176,-0.011584206,0.031145895,0.017393162,-0.022842571,0.05635924,0.001573025,0.043011,-0.004848288,0.040426742,-0.00019662813,-0.017415633,0.019730227,0.011410049,0.055055875,-0.008572986,-0.024202114,-0.021808868,0.00082022016,0.025213344,-0.021550443,0.025999857,0.008162877,0.0076010814,0.021561678,0.028134676,0.03937057,-0.018617874,-0.016011147,-0.016842604,-0.0128201535,-0.0042499765,-0.030763876,-0.01603362,0.020168427,0.01679766,-0.0025547612,-0.008028045,0.026988614,-0.018258326,0.0064606383,-0.04166269,-0.039258208,0.020898761,0.009269612,0.012348247,-0.0025182446,-0.047730073,-0.0007865125,-0.004803344,-0.029280737,0.006617941,0.03786496,0.017449342,-0.02566278,0.020741459,-0.024718964,0.003867956,-0.018292034,-0.007999956,0.02590997,0.013606667,0.03271892,-0.012887569,0.039437983,-0.0188763,0.0457975,-0.019494275,0.0001971548,-0.0026460527,-0.025550421,-0.04705592,-0.011056119,0.051685106,0.0019817306,-0.022449315,0.008089843,-0.03550542,0.03952787,0.040359326,0.009910057,0.025078513,0.005598284,0.0020884715,0.0072977124,0.012056113,0.025505478,0.007960631,-0.004811771,-0.02919085,-0.011898811,0.0414155,-0.0047949175,-0.012471841,-0.066336714,0.01780889,-0.005030871,0.0035421152,0.030134665,0.017988665,0.04590986,-0.0036376202,0.013853856,-0.003985933,-0.006640413,-0.02741558,-0.0044831214,0.052898582,-0.005752777,0.018359449,0.029280737,-0.02076393,0.0056937886,0.027977373,-0.026381876,-0.03222454,0.029730173,0.022044823,0.0039803153,0.004202224,-0.060044613,-0.012190944,-0.0017022378,-0.01110668,0.018629111,0.05339296,-0.008505571,0.005893226,-0.03550542,-0.08871861,-0.027393106,0.006112326,0.02705603,-0.021168422,-0.011146006,-0.00070751016,0.015494296,-0.022247069,0.031123424,0.013977451,-0.048853662,0.010078596,0.0076235533,-0.0054887338,0.004174134,-0.012741502,0.015325758,-0.011235893,0.019842587,0.029303208,0.01923585,-0.014561717,0.038449224,0.051280614,0.014325763,-0.008308942,-0.019662812,-0.010117922,-0.008303325,-0.0006611621,0.0438874,-0.009426914,0.04253909,0.01578643,-0.021157186,-0.028336922,0.040179554,0.026134687,0.0079831015,0.008044899,-0.03737058,0.011190949,0.0011664261,0.022876278,-0.027527938,0.01515722,-0.014258348,0.0092977015,-0.0062527745,0.036022272,-0.058426645,-0.032898694,0.018022371,0.010263988,0.009707811,0.0048848046,-0.005261207,0.031393085,-0.011101062,0.0070673767,0.0063876053,0.008814558,0.02869647,0.008477481,0.020741459,-0.010016799,-0.0234156,-0.017775182,0.015179691,0.00070435007,0.009595453,0.017820125,0.013719025,-0.02120213,0.001200836,0.014561717,-0.004792108,-0.03961776,0.007915687,-0.020752694,-0.0020336965,0.007690969,-0.027370635,-0.014415651,0.012123529,-0.008679727,0.013820148,-0.00086656824,-0.01635946,-0.010713424,0.00068679394,0.004278066,0.008117933,-0.0061067077,-0.015887553,0.0046657044,-0.017269567,0.0021699318,0.00067555805,0.036831256,0.020370673,0.0035280704,0.0073201843,0.0107358955,-0.021572914,0.0023019535,-0.036269464,0.007758384,0.014584189,-0.008898827,0.012089821,-0.031235782,0.025235815,0.0063426616,0.004286493,-0.006505582,0.005955023,0.0007872147,-0.019595398,-0.0024957727,0.009769609,0.010814547,-0.015280814,0.026291989,-0.02002236,-0.016696537,-0.0011558925,0.009005568,0.00984826,0.024336943,0.038853716,0.040246967,-0.02043809,0.0193145,0.00886512,-0.013820148,-0.0032050384,-0.025820082,0.01573025,0.0058482825,0.0030056015,-0.031775106,0.004367953,-0.01622463,0.007820182,0.0021586958,0.008499953,-0.05146039,0.010870727,-0.011685329,-0.015325758,0.037393052,-0.00015730251,0.016370695,-0.019921238,0.03312341,-0.02719086,0.02932568,-0.016617885,0.009067366,0.004424133,-0.009404442,-0.013325769,0.0037471703,0.003783687,-0.025550421,0.03460655,0.01091567,-0.020640336,0.0269212,0.007151646,-0.026741425,-0.015449353,0.019426858,-0.0064999643,0.04103348,0.02566278,-0.027999844,-0.085257955,0.017685296,-0.0045505366,-0.007747148,0.012539256,0.02169651,-0.007561756,-0.025842553,-0.0007039989,0.038179565,-0.008314561,0.027235804,-0.0042050327,0.030404326,-0.045100875,0.0037612151,0.0022345383,-0.0011481678,0.015359466,-0.05020197,0.047505356,-0.013157231,-0.02026955,0.00418537,0.0072752405,0.0016432493,0.042246956,0.027550409,-0.023640318,0.018853828,-0.00755052,-0.0029718936,-0.03361779,0.027999844,-0.0017415634,0.011808923,0.025438061,0.019741464,0.048718832,0.0088538835,0.017674059,-0.025842553,-0.0036207666,0.0034129026,0.038269453,0.018280799,0.034291945,0.004525256,0.023325713,0.007365128,-0.00062604994,0.0041291905,-0.017876307,0.02995489,0.030291967,0.026539179,0.0015589801,-0.017763946,-0.011348252,0.018966187,0.013381949,-0.01855046,0.034831267,0.0018202147,-0.024426831,0.014685312,0.0064999643,-0.033011053,0.01630328,-0.017393162,-0.014078574,0.0049550286,-0.013808913,0.023078524,-0.035303175,-0.006752772,-0.030426798,-0.02171898,-0.020213371,-0.021370668,-0.029842531,0.021303253,0.010949378,-0.03507846,0.032022294,-0.003353914,-0.020235844,0.009589835,-0.007241533,0.0010098258,0.05083118,-0.008264,-0.01980888,-0.03865147,0.034561608,-0.018539224,0.013337005,0.06781985,0.03912338,0.02957287,-0.014617897,0.005654463,0.046112105,-0.00366571,0.00075772055,-0.010117922,-0.0024775143,-0.011988698,0.016235866,0.0058539,-0.04467391,0.010623537,-0.012999929,0.03211218,-0.039055962,-0.049033437,0.0054269363,-0.0015884744,0.03247173,0.03564025,-0.007971866,0.012943748,-0.017876307,-0.011050501,0.009455004,-0.010898816,0.019516746,0.012179708,0.0037078448,0.03159533,0.021438085,-0.005272443,0.0139325075,-0.02705603,-0.00095294416,0.020662807,-0.041932352,-0.02202235,-0.006853895,-0.019932475,0.0050673876,0.006286482,-0.016292045,-0.00044065766,0.010747132,-0.0033623409,0.0034100935,-0.00487076,-0.018674053,0.010758367,-0.017145973,-0.007915687,0.0063538975,0.009584216,-0.018067315,0.04352785,-0.009207814,-0.003466273,0.0234156,0.01534823,0.0075954637,-0.010129157,-0.0158089,-0.011719036,-0.023460545,0.03364026,-0.015224635,0.007921305,-0.035932384,-0.012662851,-0.025460534,-0.018943716,-0.022662796,0.012471841,-0.055010933,0.00536233,-0.0111797135,0.009550509,0.02615716,0.006528054,-0.008971861,0.014685312,-0.0062359204,-0.0132246455,-0.019190906,-0.010089831,-0.022550438,0.01999989,-0.016011147,0.0020631908,0.012292067,0.018910008,0.007567374,-0.007825799,-0.0038707652,-0.031011064,-0.02982006,0.02314594,0.017022377,-0.02453919,0.010612301,0.019853823,0.011887575,-0.030898705,0.02590997,-0.02095494,0.012426898,0.026112216,-0.007876361,0.0016151596,-0.0158089,-0.038044732,-0.013685318,-0.037797544,-0.016943727,0.033280715,0.019887531,-0.0059381695,0.028763887,-0.022887513,-0.01529205,0.01901113,-0.020921232,0.017853834,-0.011595441,0.013145994,-0.013370712,0.00009532953,-0.045505367,0.011089826,0.036381822,0.009955001,0.01573025,0.0026657155,0.05865136,0.009724665,-0.014752727,-0.018943716,-0.022718975,-0.011629149,0.035258234,-0.01138196,-0.005977495,-0.020584157,0.018651582,0.02125831,-0.013449363,0.0021825721,0.0044578407,-0.01901113,0.0070842304,-0.029100962,-0.012797682,0.039235737,-0.01422464,0.006213449,-0.0050786235,-0.016719008,-0.022168417,0.011853867,-0.013370712,-0.012988692,-0.017078558,-0.025640307,-0.012797682,-0.013696553,0.00053089595,0.0025505477,-0.02246055,-0.027977373,-0.008539279,-0.024336943,0.018179676,0.010550504,-0.013561723,-0.03838181,-0.008730289,-0.017853834,0.027393106,-0.009039276,-0.023370657,-0.0117078,-0.0052921055,0.016438112,0.0349661,0.041617747,-0.04341549,-0.019033603,-0.0053117685,-0.005994349,-0.00058812875,0.0073201843,0.008264,-0.027887486,-0.0018426864,0.023235826,0.011808923,0.05685362,0.007865125,0.0012766783,-0.0058314283,-0.008797704,0.021415612,-0.0063426616,0.013999922,0.01698867,-0.016595414,-0.014528009,-0.01244937,0.017786419,-0.009651632,0.026291989,-0.027460523,0.036426764,0.052673865,0.009870732,-0.004030877,0.010353875,0.035258234,-0.03937057,-0.05348285,0.0316178,-0.0031320052,0.009202196,-0.0064606383,0.0044494136,-0.00817973,0.0045730085,0.031415556,-0.009584216,-0.04240426,0.042741336,-0.019876294,-0.006056146,0.003449419,-0.00013035392,0.012370718,-0.00817973,0.014393179,-0.02831445,-0.016044855,-0.012101057,-0.017786419,0.0038595293,0.006505582,0.007898833,-0.0023483017,-0.008662874,0.026291989,-0.0066460306,0.020696515,0.041954823,0.0016306089,0.007780856,-0.007926922,-0.010263988,0.014078574,0.048628945,0.007544902,0.019415623,0.02070775,0.035348117,0.03460655,0.009421296,-0.00053932285,-0.004421324,0.0048679505,0.02856164,-0.023707734,0.0029999835,-0.016561706,-0.0038089678,-0.0022275157,-0.007342656,-0.038426753,-0.011370724,-0.025190871,0.018730234,0.04656154,-0.010353875,-0.023572903,0.0019353826,-0.023797622,0.032359373,0.06894344,0.0071965894,-0.021370668,0.0045701996,-0.0003728912,-0.014696548,0.015438117,0.0033202064,-0.016752716,-0.014011159,-0.0090561295,-0.043460432,0.032381844,-0.00072050164,0.034044754,0.025370646,-0.00073033303,0.012235887,0.0583817,-0.025999857,-0.008140405,-0.0030842526,-0.048404228,0.015528004,0.024269529,-0.02579761,0.00853366,0.0024157169,0.016696537,0.04166269,0.026044799,-0.029168379,0.007943776,-0.010454998,0.031011064,-0.041100897,-0.0041432357,0.020887526]},{"id":"interface-APIConnectedAccount","type":"interface","source":"main","text":"Interface: APIConnectedAccount\nDescription: Connected account from profile response.\nProperties: name: string | null, type: string | null","meta":{"url":"/docs/typedefs/APIConnectedAccount"},"embedding":[0.0019808812,-0.02084902,-0.0011474531,0.011708648,0.06195265,-0.031155769,0.009914218,0.004486072,0.04075596,0.00366456,-0.0014369449,-0.015005911,0.02682671,-0.011641356,0.0027435133,0.01807887,-0.015454518,0.08689521,0.0029439847,0.02875572,0.00916841,-0.021454638,0.054460913,0.02494256,-0.026467824,0.010121699,-0.069668695,-0.030079111,-0.008512321,-0.033892274,0.06998272,-0.021779878,0.03575399,0.06127974,0.046161678,-0.0041355975,-0.005156179,0.00437392,0.005156179,0.020456487,-0.044008363,0.018605983,0.0051169256,0.027880937,-0.048225272,0.028935164,0.00055164663,0.01593677,0.003115016,0.04295414,-0.02559304,-0.009448789,-0.001502834,-0.012605862,-0.012538571,-0.03236701,0.0077665118,0.030123973,-0.0457355,0.0236416,-0.03436331,0.0068861204,-0.000111538466,0.018415324,0.00658331,0.002516406,-0.016475098,0.042124216,0.0071328543,-0.016441453,0.042886846,0.027544482,-0.02065836,0.038176473,0.013873178,-0.0151180625,-0.04488315,0.0060057286,-0.011293686,-0.038580216,-0.017091934,0.010704889,-0.032097843,-0.04867388,0.030168833,-0.014523658,-0.039724167,-0.041630745,-0.021454638,0.016362946,-0.003978585,0.023843471,-0.0071048164,-0.032052983,0.014142342,-0.035350244,0.017305022,-0.012460064,-0.03602316,0.039656874,0.03736898,0.015992846,-0.005072065,-0.018448971,-0.016710619,0.02063593,-0.0007668379,-0.042909276,-0.013256342,0.021510715,-0.012594647,0.015633961,0.03678579,0.026669698,-0.020759298,-0.014276924,0.028284684,0.01142266,-0.009745991,-0.019234033,0.0074861324,0.004864584,0.062894724,0.019850869,-0.035978295,0.00008696145,-0.04378406,0.0048421538,-0.079538055,-0.04429996,-0.031133339,-0.003050529,-0.04362705,0.050827194,-0.03434088,-0.0036281105,-0.0025935103,-0.013211481,0.004345882,-0.01626201,-0.023933193,-0.048135553,0.056389924,0.0025065925,-0.020882664,0.034520324,0.008125397,0.033309083,-0.0063646142,0.01314419,-0.01751811,0.023215422,-0.04073353,0.019884514,0.007446879,-0.017484466,0.020804157,0.0031542692,-0.025772482,-0.03799703,0.0550441,-0.07585947,0.009359067,0.019110667,-0.017675122,0.007816981,0.021084538,0.03252402,-0.044860717,0.014736746,-0.03683065,0.01216847,-0.096271105,0.011030129,-0.034767058,-0.028307114,0.0023607954,0.009269346,-0.010704889,0.0139180375,0.024875268,0.0088880295,-0.014860113,-0.07765391,0.0051730014,0.013850747,-0.024471521,0.029742656,0.043200873,-0.023080839,0.0040711104,0.034228727,0.0060786274,-0.01312176,0.004769255,-0.027118305,0.0261538,0.018819071,-0.07330241,-0.009246916,0.00860765,-0.04934679,0.017047074,0.0030785669,-0.0387148,0.02035555,0.027903367,-0.012953533,-0.052845925,-0.02678185,0.04629626,0.009577763,-0.0043991543,0.029854808,-0.015275074,-0.025884634,0.033219364,0.035574548,0.033466097,-0.006129096,-0.029540783,0.026736988,0.06908551,-0.01803401,0.020063957,0.00034188773,0.00089581247,0.0030252947,0.0032664211,-0.024673395,-0.022116335,0.043851353,-0.02028826,-0.04665515,0.0020902292,0.008338486,0.032277286,0.02812767,0.009774029,0.026714558,-0.0523076,-0.041630745,0.029697796,0.07298839,0.019626563,0.012931102,0.025525749,-0.026961291,-0.015970416,0.021858385,-0.008927283,0.0041524204,0.016463883,-0.0005088888,0.00483935,-0.029832378,0.013155405,0.006437513,0.042640112,-0.033914704,0.05006456,-0.03371283,-0.022890182,-0.018830286,-0.02812767,-0.016901275,0.039253127,0.00642069,-0.03499136,0.031155769,-0.020209754,0.00015850204,0.038602646,0.014938619,-0.055851594,0.011686217,-0.0045309328,0.01468067,-0.029069746,0.035327815,-0.0127292285,-0.0084226,0.009202055,0.015656391,-0.0121909,0.0055038496,0.0126955835,-0.016665757,0.019469552,0.010172168,0.011652571,0.026019217,0.048404716,-0.033309083,0.034587614,0.0041524204,0.034856778,0.004948698,0.07998666,0.0037122245,0.051006638,-0.047866385,0.03505865,-0.01184323,-0.0032720286,0.0028304309,0.02035555,0.043873783,0.03501379,-0.026041647,-0.0022037828,-0.015095632,0.027185595,-0.021813525,-0.06468916,-0.0057702097,0.000060675873,-0.043851353,-0.035911005,0.017372314,-0.027275316,-0.02035555,-0.042101786,-0.04378406,-0.027185595,0.021589221,0.0018911597,-0.01586948,0.0055150646,0.0336904,0.03122306,-0.060831133,0.020220969,0.030437997,0.0058150706,0.0143329995,0.0061459183,0.022531295,-0.0022598587,0.037795156,0.030213693,-0.0074412716,-0.03375769,0.016598465,0.023753751,-0.0010759563,-0.0011103028,0.039051257,-0.030684732,-0.012482495,-0.004718787,0.00492066,-0.008467461,0.002746317,-0.0017874192,0.017809706,-0.013289988,-0.02877815,-0.043425176,0.029159468,-0.02115183,-0.014747961,-0.0025332286,0.029159468,-0.034049284,0.0013374102,-0.009796459,-0.017675122,0.0058150706,-0.08003152,0.042886846,-0.028621139,-0.014613379,-0.0058599315,-0.029518353,0.02628838,-0.05432633,-0.022654662,-0.0023607954,0.004721591,0.104884356,0.0472832,0.02561547,-0.04167561,0.048987903,-0.017058289,-0.04997484,0.01833682,-0.049077626,0.008030069,0.056345064,0.020804157,-0.023237852,-0.037727863,0.00018137049,-0.027544482,0.0029159468,-0.0062973234,0.013704949,-0.056703947,0.004783274,0.010789003,0.036292322,-0.034251157,0.02749962,-0.014860113,0.013704949,0.007839411,0.0535637,-0.014299354,0.029473493,-0.027723923,0.017327452,0.02498742,0.03375769,-0.044838287,-0.028598707,-0.019211603,-0.0104805855,-0.0086693335,-0.020456487,-0.018538691,0.0012490907,-0.04181019,-0.0031710921,-0.020591069,0.055717014,0.0023439724,-0.044501834,-0.02678185,0.0172153,0.031088477,0.0047916854,-0.019447122,0.037660573,-0.054640356,0.034004424,-0.008983359,-0.048987903,0.003129035,0.0096730925,0.0114955595,0.0029495922,-0.000044663575,-0.009622624,-0.017484466,0.021555575,-0.07801279,-0.014826467,0.020344336,-0.054819796,0.055268407,0.01077218,0.02743233,-0.01314419,-0.009325421,-0.016463883,0.024897698,0.022161195,0.031671666,-0.016149858,-0.03750356,-0.012594647,0.036606345,0.008086145,-0.033555817,-0.02682671,0.0014467582,0.009549726,-0.015499379,0.0026173426,0.023551878,0.028935164,-0.0057057226,-0.0036533447,0.0006343586,0.016250795,0.007093601,0.0073066894,-0.026759418,0.00059615687,0.055717014,-0.017383529,-0.007884271,0.032950196,0.080883875,0.032838047,0.027813645,-0.009207662,0.04620654,0.003145858,-0.0051786094,0.026490254,-0.009499257,0.026467824,-0.022576157,-0.022721954,-0.065182626,0.023237852,-0.03447546,-0.005330014,-0.027768785,0.019839652,0.055178683,0.023462156,-0.0033981993,0.014602164,-0.021140613,-0.062580705,-0.024000484,0.023260282,0.04804583,-0.07805765,-0.031380072,-0.056031037,0.028508987,-0.024067776,0.00024060065,0.010060016,0.02561547,0.029159468,-0.017338667,0.0336904,0.019581703,-0.0037570852,0.0002521663,-0.008742233,-0.047507502,0.014086266,-0.008944105,0.03241187,-0.022206055,0.020086387,0.01589191,-0.014770391,0.019996665,0.016643327,-0.052173015,0.00858522,0.005355248,-0.012381558,-0.008781485,0.02147707,0.020142462,-0.01279652,0.04003819,0.008108575,-0.034789488,0.014860113,0.012089964,0.018314388,-0.031469792,0.021813525,-0.012628293,0.0074132336,0.012830165,0.019615348,-0.0023397668,0.04243824,-0.0324343,-0.015824618,-0.031312782,0.009370282,-0.022116335,-0.0080805365,0.034699764,0.006846867,0.015196568,-0.014579734,0.0056131976,0.0015070398,0.046071958,-0.025144434,-0.019424692,0.034071717,-0.005728153,-0.011574065,0.012269407,0.019974235,0.019323755,-0.000018126097,-0.0077945497,-0.0011411445,0.034654904,0.02749962,0.0048085083,0.030191263,-0.018067654,0.016306872,0.029608075,0.013671304,-0.022318207,-0.013660089,0.027925797,-0.017585402,-0.0022135961,0.023394864,0.018235883,0.0033449272,0.027185595,0.031985693,0.03234458,-0.027387468,-0.030101541,0.047686942,0.006426298,-0.009611409,0.0023187385,-0.028015519,0.013716165,-0.026916431,0.026894001,0.0021827542,0.0010920782,-0.008590828,0.038423207,-0.008411385,0.010127307,0.0027785609,-0.005430951,-0.023753751,0.00060982537,-0.043828923,0.043357883,0.003911294,0.0010023566,-0.04992998,0.01374981,0.0008993172,0.002705662,0.016789123,0.011013307,0.0016332106,0.004797293,-0.004923464,0.011159103,0.031043617,0.031267922,0.012045103,-0.019222818,0.0075590312,0.0029580037,0.004197281,0.027185595,0.031626806,-0.01156285,0.007637537,-0.017125579,-0.015174138,0.031178199,-0.010155345,-0.062894724,0.025862204,-0.011203964,0.008960929,-0.020624716,-0.0035888574,0.0344306,-0.0073347273,0.03640447,0.0051898244,0.008344093,0.02091631,-0.013570367,-0.025862204,-0.019772362,0.02752205,-0.0064599435,-0.025525749,0.012897457,-0.010194599,0.04369434,0.038288623,0.008467461,-0.002038359,-0.008220727,0.007149677,-0.026108937,-0.015028341,-0.029159468,0.011966596,-0.0031682882,-0.0029636112,0.033309083,0.0019107863,-0.017641477,0.044501834,-0.024157496,0.0069253733,0.007917916,-0.016688187,0.031110909,0.032052983,-0.020434057,-0.01751811,-0.008131005,0.01407505,0.03315207,0.0073235123,0.030886605,0.017506896,-0.06809857,-0.01044694,-0.015230214,-0.01281895,0.04246067,0.038221333,0.033421237,0.014647025,-0.012605862,-0.052845925,-0.003294459,-0.016407808,0.026019217,-0.005714134,0.049122486,-0.065362066,-0.0014411506,0.011574065,-0.026714558,0.040935405,-0.0016528371,0.003499136,0.017955502,0.03187354,0.027028583,0.030415567,0.02927162,-0.0015294701,0.025705192,-0.039163407,-0.041496165,-0.025705192,0.020187324,0.041585885,0.025772482,-0.004814116,-0.015252644,0.0028065988,0.0020089191,0.020669576,0.011428268,-0.013458216,-0.0051421598,-0.017047074,0.021118183,-0.031985693,0.018191021,-0.020860234,-0.00639826,0.003210345,0.0046178503,0.0019808812,-0.01498348,0.0023579914,0.014411506,-0.023507016,0.02280046,-0.012919887,0.028060379,0.0044271923,-0.017899428,0.01996302,0.053159952,-0.006392652,0.0026986527,0.02617623,-0.032008123,0.026108937,0.012605862,0.0031654844,-0.013906823,-0.012280622,0.0037374585,0.03373526,-0.030325845,-0.03250159,-0.013009609,-0.008332878,-0.0010717507,0.0054197353,-0.0066618165,0.011832015,-0.048314992,0.016205935,0.0020187323,0.03236701,-0.015353581,-0.007301082,-0.008349701,-0.0016528371,0.014770391,-0.029585645,-0.045488767,0.027387468,-0.000018126097,0.014613379,-0.057242278,0.010626383,-0.00718893,-0.00949365,0.04010548,-0.0005569038,-0.0021140613,-0.012807735,-0.010104877,-0.049795397,0.01440029,-0.010996483,0.03384741,-0.02052378,0.0040795216,-0.0104693705,0.00014246783,-0.013559152,0.021398563,0.015566669,-0.03176139,0.00609545,-0.016351731,0.07487254,-0.025189294,-0.0135367215,-0.027051013,0.039791457,0.057376858,-0.02875572,0.017181655,-0.022564942,0.00037781138,-0.008349701,0.032972626,0.02005274,-0.010721711,-0.01649753,-0.028643569,-0.013009609,0.009443182,-0.015376011,0.01970507,0.02280046,0.007071171,0.04674487,-0.020770513,0.037840016,-0.036920372,0.040845685,-0.02431451,-0.031985693,0.05302537,-0.004864584,0.005358052,0.01593677,-0.039185837,0.009224486,-0.009140371,-0.014030189,0.042684972,0.025144434,-0.011506774,0.01805644,0.036449336,0.01654239,-0.018762995,0.018953653,0.028710859,0.025974356,-0.012347912,0.0013128769,-0.01216847,-0.020624716,0.01807887,0.027836075,0.010559091,-0.018807856,0.018202236,-0.023462156,0.015903125,0.0060618045,0.069758415,0.01905459,-0.024628535,-0.0024042542,-0.02810524,0.017854566,0.014860113,0.0046178503,0.009431966,-0.027140735,0.028867872,0.019839652,0.0029552,0.012762874,-0.021791093,-0.0030981933,-0.010553484,-0.023529448,0.04925707,0.0013920842,0.01186566,0.008013246,-0.016104998,-0.031424932,-0.0068524745,0.050378587,0.011282471,0.05692825,-0.021813525,-0.0064767664,-0.014691886,0.004264572,-0.0007535199,0.002691643,0.034206297,0.003064548,0.02749962,0.013671304,-0.021578006,0.026041647,-0.0021897638,0.0046150465,0.027993089,0.009628232,0.011411445,-0.041608315,-0.015589099,-0.009605802,-0.051141217,-0.04062138,-0.018258313,0.0052262736,-0.025077142,0.020983601,0.015499379,-0.028531417,0.00809736,-0.008338486,0.030998757,0.037211966,0.0112768635,-0.027006153,-0.021723803,-0.023013549,-0.02033312,0.027611772,-0.0056664697,-0.024538813,0.024090206,0.012875026,-0.04488315,-0.000017918002,-0.010979661,0.042999,-0.034610044,-0.02433694,-0.011686217,0.08554939,-0.0118880905,0.045399047,-0.00031262313,0.0017201281,-0.008231942,-0.044075657,-0.04555606,0.036292322,-0.02028826,0.019693855,-0.023215422,-0.007054348,0.00609545,-0.028419266,-0.060831133,0.056703947,0.03875966,-0.00090001815,0.029652935,-0.0065328423,0.00036449335,0.009600194,0.0045617744,0.00858522,0.021723803,0.03124549,-0.0012511935,-0.025234153,-0.01000394,-0.046161678,0.00937589,0.06639386,0.028935164,-0.0053692674,-0.010172168,0.0050888876,0.014131126,0.014041405,-0.021073323,-0.008377739,0.04008305,0.007951562,0.02117426,-0.013671304,0.0040907366,0.03999333,0.0020145266,0.0045281285,0.011764724,-0.012269407,-0.0018224667,-0.0025234155,-0.020366766,0.0044776606,-0.018067654,0.013233912,-0.020277044,-0.01626201,-0.025413597,-0.0046683187,0.025234153,0.024695825,-0.023596738,0.0071048164,-0.023237852,0.0362026,0.021398563,-0.0018280742,-0.01623958,0.00981889,-0.02035555,0.016161073,-0.0017159225,-0.030931465,0.022991119,0.0013766633,0.049660817,-0.008613258,0.012101179,0.00069744396,0.012998393,-0.025122002,-0.00037115236,-0.019929374,0.015667606,-0.036965232,-0.0001107499,0.042595252,0.016104998,0.0069870567,-0.020815372,0.0139180375,0.0057758177,0.0075926767,-0.0076655755,-0.029473493,-0.005523476,-0.0036757751,0.0011011905,0.01123761,0.009931042,0.02494256,0.010413295,-0.021039678,0.01372738,0.01651996,-0.02682671,0.029159468,0.00459542,0.02070322,0.022766815,-0.012931102,-0.018762995,0.014501227,-0.015667606,0.008321663,-0.00001616563,0.0070207026,0.009645054,0.034789488,-0.039230697,-0.0098917885,-0.02568276,0.02931648,0.0066506015,0.0048449575,0.0022332226,-0.01754054,0.010474978,-0.03687551,0.015566669,0.010626383,0.025503319,-0.035282955,0.01691249,-0.019906944,0.008198297,0.0004731404,0.021432208,0.00949365,-0.0281501,0.0067571457,-0.037279256,0.012314267,-0.0073347273,0.0073347273,0.025862204,-0.014119911,0.034587614,-0.025727622,-0.033331513,-0.0449953,0.0052150586,0.00029299656,0.019974235,0.0033309083,-0.001202828,-0.026535114,-0.011753508,0.007945955,-0.013559152,0.014916189,0.02286775,-0.011775939,0.007138462,0.026736988,0.031581946,-0.0076319296,-0.013884393,-0.017002212,-0.009185232,-0.024920128,-0.008613258,0.018549908,-0.030953895,0.020804157,-0.023865903,0.016643327,-0.0068861204,-0.017742414,0.014736746,-0.009274954,0.0064767664,-0.026422963,0.0096843075,0.011540419,0.030482858,-0.0065160193,0.044187807,-0.023843471,0.032322146,-0.0022304188,-0.0031206238,-0.0011201161,0.01719287,-0.00003708457,0.023798611,0.03992604,-0.008063714,0.008074929,0.0236416,0.031492226,0.0071833227,-0.012056318,-0.042931706,0.031110909,0.014490012,-0.013043254,-0.0011081999,0.0009469817,0.026467824,0.019144312,0.00642069,-0.0058262856,-0.017787274,-0.014747961,0.011349762,0.032120276,0.0010885734,0.008304841,-0.01931254,-0.0037711042,-0.0080805365,0.003813161,-0.020277044,0.009218877,-0.030168833,-0.014848898,-0.0062973234,0.003555212,0.019951804,-0.02678185,0.0024084598,-0.023260282,-0.019839652,0.00303651,-0.009202055,-0.019211603,0.017944288,-0.0119105205,-0.038266193,0.0096955225,0.0022444378,-0.019604133,0.0026467824,-0.017439604,0.030819314,0.01996302,0.0005043326,-0.017675122,-0.0021140613,0.065451786,-0.009532902,-0.003145858,0.053473976,0.049122486,0.013895608,0.021735018,0.020321906,0.030236125,0.014781606,-0.037840016,0.004073914,-0.025301445,-0.015263859,-0.010160953,-0.0088880295,-0.041922342,-0.009117941,-0.017002212,-0.014523658,-0.038894244,-0.019974235,0.01654239,-0.023462156,0.0071945377,0.0021252765,0.019480767,-0.029854808,0.00874784,0.031649236,-0.024426661,0.026602406,0.004990755,0.018247098,-0.018819071,0.009544118,-0.0019584508,-0.016643327,-0.0045701857,-0.009465612,-0.0018196629,0.005439362,-0.00858522,-0.021320056,0.013884393,0.020759298,0.010615167,0.02245279,-0.00366456,-0.019940589,0.02089388,0.0032215603,0.022464005,0.0036477372,-0.036471765,0.025391167,-0.042729836,-0.023551878,-0.009465612,-0.0051982356,-0.038826954,-0.00015815155,-0.045488767,-0.0057589947,-0.008136612,0.042684972,0.015746113,0.007228183,0.020490132,-0.014501227,0.021230334,0.0020047133,-0.030191263,0.0077328663,-0.012852596,-0.029765086,-0.009202055,-0.051724408,0.02996696,0.03570913,-0.013704949,-0.0064319056,-0.007901094,0.027342608,0.009106725,0.010553484,0.012000242,0.0032187565,0.031155769,-0.01654239,-0.0042449455,-0.009897396,-0.0072674365,0.013794671,-0.0113105085,0.024583673,0.0686369,-0.01309933,-0.03447546,0.016463883,-0.0076487525,-0.04741778,-0.04297657,0.015398442,0.003210345,-0.01437786,-0.024135066,-0.017989147,-0.013648873,-0.032950196,-0.0018939634,0.01617229,0.009729168,0.009942257,-0.026400533,0.004825331,0.019278893,-0.025144434,-0.014478797,-0.020557424,0.002174343,-0.015858265,0.006381437,-0.037548423,0.0018196629,-0.003841199,-0.03732412,-0.021118183,-0.02182474,0.009297384,-0.00044335006,-0.017742414,-0.016934922,0.0064487285,-0.02619866,-0.037638143,-0.0020495742,0.0002248293,-0.01309933,0.007043133,0.054146886,-0.009196447,-0.015566669,-0.01619472,-0.0042701797,-0.023417296,0.034587614,0.027073443,-0.002805197,-0.01658725,0.04068867,0.012460064,-0.031492226,0.00041075595,-0.00027319478,0.0010626382,0.014736746,-0.0022093903,-0.017114364,0.019693855,0.00077454833,0.0105142305,-0.02494256,0.0046290653,-0.019559273,0.014893758,-0.008944105,-0.07155284,-0.019525629,0.0013268959,0.0046094386,-0.008013246,-0.04124943,-0.01247128,-0.011989027,-0.040374648,0.0010584326,-0.033398803,0.018976083,-0.005764602,0.010037586,-0.0055795517,0.009774029,-0.0034935283,-0.022430358,0.03938771,-0.0063646142,-0.0143329995,0.024493951,-0.011411445,0.031043617,0.019491982,0.00732912,-0.03176139,-0.021791093,0.0024967794,0.014198418,-0.024561243,0.016688187,-0.024404231,0.040195204,0.00029334705,0.012347912,0.026041647,0.0023033174,0.00004670071,-0.0019304128,-0.019592918,-0.017125579,-0.01314419,-0.014490012,0.0056160013,0.0034374525,-0.011024522,-0.008344093,-0.02680428,-0.039118547,0.00017436099,-0.031963263,-0.0066337786,0.070924796,0.029809948,-0.029697796,0.01656482,0.016901275,0.0033196933,-0.024404231,0.060427386,0.013256342,-0.0067963987,0.015275074,0.006616956,-0.0013009608,-0.01091237,0.015230214,-0.025189294,0.004466445,0.062221818,-0.01407505,0.012392773,-0.020389197,0.013435785,0.01751811,-0.026916431,0.026535114,-0.031380072,0.026064077,-0.03999333,0.00732912,-0.0063477918,0.007121639,-0.01584705,0.009129156,-0.016452668,-0.008063714,0.012123609,0.00051449635,0.035529688,0.008405777,0.055941317,-0.016643327,0.017966717,0.02286775,0.014669455,0.0374587,0.028957594,0.06374708,0.035327815,0.02433694,-0.027051013,-0.019155527,0.0073066894,-0.02810524,0.0020425646,0.001654239,-0.00008003958,-0.016015276,-0.03678579,0.0012497916,-0.003459883,-0.019884514,-0.01840411,-0.026759418,-0.0046795337,0.0023397668,0.0063253613,-0.016183505,-0.02147707,-0.015600315,0.014478797,0.060382526,-0.0066674245,0.030236125,-0.0066786394,-0.02317056,-0.0010437126,-0.01440029,-0.00025461963,0.01747325,-0.03178382,-0.023439726,-0.016205935,0.022273347,-0.03236701,0.04239338,-0.00021238746,-0.020546209,-0.0018280742,0.0061515262,0.015633961,0.009762814,0.0028360386,-0.019794792,-0.015555454,0.0012105384,-0.01768634,-0.0036954016,0.0077721193,-0.017047074,0.03245673,-0.024224788,-0.017619047,-0.009207662,-0.02070322,0.032950196,-0.0135142915,0.031357642,0.0021154631]},{"id":"interface-APIEmbed","type":"interface","source":"main","text":"Interface: APIEmbed\nProperties: audio: APIEmbedMedia | null, author: APIEmbedAuthor | null, children: APIEmbedChild[] | null, color: number | null, description: string | null, fields: APIEmbedField[] | null, footer: APIEmbedFooter | null, image: APIEmbedMedia | null, nsfw: boolean | null, provider: APIEmbedAuthor | null, thumbnail: APIEmbedMedia | null, timestamp: string | null, title: string | null, type: EmbedType, url: string | null, video: APIEmbedMedia | null","meta":{"url":"/docs/typedefs/APIEmbed"},"embedding":[-0.021645669,-0.003366206,-0.004460301,-0.008162195,-0.001947302,-0.055400975,0.040232845,-0.042072915,0.027178306,-0.011966661,0.029416228,-0.024803624,0.0038448723,-0.01254479,0.004802205,-0.01375078,0.0015276918,-0.0038728465,0.010089293,0.021508906,-0.008746541,0.0007483048,-0.004702742,0.027725354,0.001599181,-0.031977404,-0.0041246125,0.033568814,0.0043888115,0.020054258,0.020029392,-0.02195649,0.056395605,0.017679576,-0.03642838,-0.030883309,0.030584918,0.0002603137,-0.012917777,0.002907743,0.007770559,-0.035931062,-0.033792607,0.017729307,-0.05624641,0.04204805,-0.019096926,0.02465443,0.009082229,0.04416164,-0.040133383,0.040406905,-0.02465443,0.030758979,-0.0075467667,0.030908175,-0.019793168,-0.0011896725,-0.03555808,-0.030560054,0.016336823,-0.00014288115,0.020116422,0.0130545385,-0.024256576,-0.008553831,-0.04356486,0.045852512,0.008603563,-0.0020623063,0.073553,-0.012209102,-0.034289923,0.0071426975,0.022652732,0.015304892,-0.040481504,-0.0070743165,-0.022553269,-0.04940832,-0.015628148,0.04488275,-0.053361982,-0.022018654,-0.009318454,0.03655271,-0.02225488,0.012196669,-0.050925132,0.011867197,-0.08698053,-0.018674206,-0.07320488,-0.034215324,-0.016436286,0.008653294,-0.010194973,0.017903367,0.014223231,0.034215324,0.03535915,-0.013091837,-0.070867494,-0.01293021,-0.0045286817,-0.036527842,0.011251769,-0.006300369,-0.042520497,-0.030236797,-0.048314225,-0.009225207,-0.021135919,-0.003907037,0.0072297277,-0.020825097,0.017418485,0.018835835,0.0007405342,-0.02487822,-0.061120108,-0.010903648,0.046250366,0.012638037,0.048040703,-0.010369034,-0.015727611,0.0010490254,-0.089864954,-0.072757296,0.009144394,-0.017418485,-0.004488275,0.002073185,-0.020253183,0.009679008,-0.0004646794,0.019768301,-0.003310258,-0.023336543,0.021123488,-0.024281442,0.055997755,-0.01765471,-0.013626452,0.004643686,0.004656119,0.011208254,0.015205429,0.019842898,0.010679856,0.011823682,-0.039685797,0.023473304,-0.038119253,-0.04557899,0.0030849117,-0.021111054,0.007360273,-0.026780454,0.026830185,-0.015043802,-0.0077829915,0.022913823,-0.03956147,0.043017812,0.028073475,-0.025487432,-0.03175361,0.03222606,-0.024070082,-0.040133383,-0.051919766,-0.016038433,-0.038467374,-0.033021767,0.06848038,-0.060026012,0.029739482,0.019109357,0.020912128,0.06420346,-0.028769717,-0.022230014,0.00089361425,0.023709528,-0.037796,0.020091556,0.016896304,-0.014049171,-0.03182821,-0.018276354,0.0069872863,0.035334285,0.045181137,-0.011649622,0.02750156,0.012781015,0.03849224,-0.036378648,0.054207418,0.003935011,0.058583796,-0.00867816,-0.0133404955,-0.01555355,-0.0041525867,-0.0020187912,-0.051372718,0.021931624,0.05808648,0.0043701623,0.004603279,-0.037124623,-0.027029112,0.028894046,-0.016137896,0.0021773106,-0.015503819,0.015727611,-0.021098621,0.07350327,0.04953265,-0.029664885,0.02556203,0.009424133,-0.032151464,-0.00044991536,-0.018972596,-0.0069748536,-0.013688616,0.061269302,-0.03346935,-0.003170388,0.016958468,-0.008497883,-0.01434756,0.009647925,-0.0002985837,-0.00069313386,-0.023721961,-0.042296704,-0.013887542,0.029590288,0.0058341357,-0.0011492657,0.024293875,-0.05395876,-0.019494778,0.029640019,0.067386284,0.0015898563,0.027203172,0.033742875,0.03642838,-0.033693142,-0.013377794,0.0622142,0.010518229,0.0099028,0.006688897,-0.030734114,-0.04008365,-0.037572205,0.026059346,-0.029192435,0.008653294,0.031952538,0.008790056,0.0028859854,0.01675954,-0.020128855,0.007720827,0.009107095,-0.020116422,-0.005675616,0.009641709,0.015677879,-0.034513712,0.010586609,-0.032872573,-0.023261944,-0.01774174,0.057887554,-0.018189324,-0.02311275,0.010020913,0.03612999,0.022690032,0.0042085345,0.004102855,0.011369881,0.08916871,-0.067585215,-0.0049576163,0.025164178,0.057788093,-0.0018618258,0.044559494,0.008354905,0.03617972,-0.05147218,0.04197345,-0.026308004,0.00076967385,0.011662055,0.033867203,0.020514276,0.010139025,-0.029540556,0.0032480936,-0.0036335133,-0.048015837,-0.0022985314,-0.06281098,0.022963556,0.061169837,0.01662278,-0.02298842,-0.017244425,0.009405484,0.015665445,-0.020240752,-0.06783387,-0.013415093,-0.028471326,-0.005349253,-0.014272963,0.019258553,-0.005035322,0.0025642845,-0.017120095,-0.011202037,0.0037609504,0.054804195,-0.046722814,0.0020218994,0.011115007,-0.009853069,0.024903087,0.0022721114,-0.05584856,-0.004463409,0.019320717,0.008721675,-0.019855332,-0.061418496,-0.009958748,-0.021011591,0.0051410017,-0.022142984,-0.006968637,-0.024865787,0.0031159942,0.007901104,-0.029490825,0.01443459,-0.070867494,-0.08837301,0.002197514,-0.03431479,0.019855332,0.010860133,0.037050024,-0.039188482,-0.036378648,-0.04871208,0.0385917,0.0051130275,-0.039586335,0.053859297,0.038691167,0.019967228,0.019382881,-0.016660077,0.018450415,0.000067749555,-0.021720266,-0.014832443,-0.029863812,0.020949427,0.013526988,0.045703318,-0.038939822,-0.00077433616,-0.028993508,-0.010350384,0.02190676,-0.045355197,0.05012943,0.025164178,-0.0150811,-0.044385433,-0.05460527,0.06649112,0.0059584645,-0.004799097,0.016635211,-0.0075156842,-0.0046623354,0.006076577,0.0023731287,0.0105057955,0.047443923,-0.013725915,-0.020066692,0.051621377,0.0028315915,0.058882184,-0.0128431795,0.0060144123,-0.014086469,0.04416164,0.014832443,0.021844594,0.0021648777,0.0047555817,-0.050775938,0.009399268,0.045031942,-0.012917777,-0.027228037,-0.022006223,0.027601024,0.018027697,-0.033046633,0.03389207,-0.008752758,-0.017679576,-0.025810689,-0.028421596,0.044559494,0.06216447,-0.018761236,0.015764909,0.008709243,-0.0046001705,-0.029416228,-0.039238214,0.0434654,-0.035259686,-0.0031626173,0.005380335,-0.010605259,-0.026308004,-0.010194973,0.009007632,0.004077989,-0.042595096,-0.06604353,-0.004640578,0.01954451,-0.03655271,0.06296018,0.016386554,-0.0036894614,-0.009455216,0.028421596,0.001000848,-0.0018571635,0.008019216,0.019880198,0.005647642,0.037696533,0.014359993,-0.020302916,0.004954508,0.0059740054,0.027874548,-0.016560614,0.026830185,-0.00056725077,-0.011326366,0.021944057,-0.026855052,-0.046847146,0.013713482,-0.05107433,-0.014086469,-0.0002043657,0.0039039287,-0.0026808428,-0.05515232,-0.043838385,-0.017231992,0.09076013,0.03493643,0.00042932338,0.01378808,-0.029416228,0.001975276,-0.003655271,-0.000820571,-0.013626452,-0.012700201,-0.017729307,-0.058583796,-0.01555355,0.012302348,-0.00026614164,0.033444487,-0.035433747,-0.002584488,0.0039723096,0.038343046,-0.03737328,0.0023140723,-0.043763787,-0.076735824,-0.0034874268,-0.011276634,-0.020725634,-0.040108517,0.021024024,-0.006900256,0.0047928807,-0.008050299,0.040232845,-0.035433747,0.014596217,-0.004799097,-0.010275787,0.03351908,-0.010350384,0.0148200095,-0.013004807,-0.025885286,-0.07345354,0.0035371582,-0.023933321,-0.014198365,0.0052218153,0.0036677036,0.010300653,-0.045355197,0.018450415,-0.0022705572,-0.00069080264,0.008895735,-0.035856467,-0.024952818,0.010922297,-0.008634645,0.000016730984,-0.01744335,0.045181137,-0.018537445,-0.015006503,-0.008112463,0.03324556,0.020738067,-0.033842336,0.041525867,-0.027824817,0.016137896,0.074597366,0.032499585,-0.0128431795,-0.010884998,0.011966661,-0.0047213915,-0.0035122926,0.036527842,0.015155698,-0.027402097,0.022006223,0.025835553,0.0065707844,0.030013006,-0.011313934,-0.028670253,-0.015230295,-0.01628709,0.054804195,-0.005296413,0.0039723096,-0.008908168,0.015640581,0.0060703605,-0.0084543675,-0.0014499862,-0.010512012,0.0003121822,0.029490825,0.0032076866,0.014049171,0.019681271,-0.012731283,-0.0055823694,0.015777342,0.036925696,0.011941794,0.01235208,-0.00951738,0.009274939,0.002904635,0.045181137,-0.007273243,-0.020887261,0.015864372,0.014882174,0.0072545935,-0.025611762,0.029242167,0.04533033,0.04381352,0.015690312,-0.007988134,-0.048836406,0.0014546486,-0.008914385,-0.019171523,-0.031554684,-0.037920326,-0.00839842,-0.011537726,-0.020551573,0.0028906479,0.0026248947,-0.0065459185,-0.021844594,-0.00726081,-0.006577001,0.018922865,-0.047767177,0.01765471,-0.023734394,-0.03841764,0.010518229,0.016946035,0.033618547,0.022876525,-0.0007735591,0.018437982,0.021123488,-0.009641709,-0.005175192,0.008298957,-0.025226342,-0.018661775,0.012215318,0.02586042,0.04746879,0.018276354,0.01516813,-0.022975989,-0.025450135,0.00063757435,-0.02904324,0.018462848,-0.038641434,-0.028620522,0.0013326508,-0.010922297,0.023137616,-0.041401535,-0.024517667,0.036577575,-0.036502976,-0.0019970336,0.0050726207,0.022453807,0.008671943,-0.015690312,0.007329191,0.008566264,-0.014583784,0.0013567396,-0.04799097,0.001849393,-0.0080627315,0.013626452,0.0049576163,0.00092003413,0.0519695,-0.06987286,0.016088165,0.005560612,0.00070750935,0.024679294,-0.06191581,-0.0116371885,-0.042470764,-0.04356486,0.0010777765,-0.046200633,-0.011158522,0.03476237,0.0075716325,-0.0074846023,-0.015354624,0.023038153,0.035110492,0.0016675619,-0.006465105,0.08543885,-0.010014696,-0.027874548,0.024766324,-0.04204805,-0.008373554,-0.025835553,-0.028645387,-0.020999158,-0.028123206,0.010642557,0.0043452964,0.027551293,0.015715178,0.00386663,-0.010791752,0.008858437,-0.022478672,0.0022192716,0.011662055,-0.005604127,-0.0003854197,0.004708959,0.018375818,0.026855052,0.003941227,-0.027849682,-0.022391642,0.006844308,-0.014770278,-0.009299804,-0.00019513816,0.020651037,-0.011966661,-0.0045597637,-0.024070082,-0.0006822551,-0.0038075738,0.003490535,-0.034463983,0.04214751,0.003966093,0.008230575,-0.0044292184,0.021583503,-0.0008734108,0.017381186,0.048836406,0.018077428,0.01632439,0.013987006,-0.017629843,0.019731002,0.023560334,-0.0026031372,-0.03217633,0.008155978,-0.038541973,0.009554679,-0.033693142,-0.02470416,0.024480369,-0.00200325,-0.044310834,0.022540838,0.019370448,0.02727777,0.008790056,-0.0027771976,-0.009399268,-0.042097777,0.0088460045,-0.0038635219,0.025512299,0.05022889,-0.030062737,-0.013999439,0.0014709667,-0.015727611,0.04756825,-0.041128013,-0.017144961,-0.025375536,-0.017430916,0.013987006,-0.014981637,-0.007932186,-0.0059864386,-0.02190676,0.0058217025,0.002878215,-0.04125234,0.009020065,-0.02586042,-0.04179939,-0.049383454,-0.013004807,0.030535188,-0.03707489,0.019793168,0.011718002,-0.008864653,-0.079570524,-0.018810969,0.04975644,0.0008182398,0.012153154,-0.03222606,0.027178306,-0.0038448723,-0.008342472,-0.02615881,0.012979941,0.015951402,0.0037423011,-0.037522472,0.008578697,-0.0044913827,0.022540838,-0.0044416515,0.03182821,-0.0016022892,0.010493362,0.02457983,0.021247815,0.051919766,0.026556661,0.015018936,0.000674873,0.023423573,0.03346935,-0.019320717,-0.0020809555,0.03655271,-0.023398707,0.042445898,0.03831818,0.0041246125,-0.0018587176,-0.02586042,-0.010244705,-0.042520497,0.035757,-0.019519644,-0.02349817,0.01898503,0.010648774,0.013079405,0.016859004,0.026133943,-0.021222949,0.001821419,0.0076027145,-0.015292459,0.0067945765,-0.005280872,0.006831875,0.026109077,-0.05142245,-0.0015238066,-0.0273275,-0.026656125,-0.018525012,0.0062817195,0.018152025,-0.02775022,0.017207125,0.00617604,-0.005047755,-0.0007708394,-0.042893484,-0.019445047,0.0041401535,0.01644872,0.041277207,0.022304611,-0.0076959613,0.024343606,-0.0022239338,-0.005355469,0.02615881,-0.024281442,-0.00053578004,-0.01649845,0.026929649,0.011823682,-0.012613171,0.0026497606,-0.0080627315,0.02482849,-0.0006371858,0.015951402,0.05550044,-0.025935017,0.019594241,-0.010431198,-0.022428941,0.0122464,0.03433965,0.013216166,0.02874485,-0.021036457,0.040357172,-0.00659565,-0.017157394,-0.0414264,-0.027352367,-0.020340215,-0.00906358,0.02234191,-0.0039287945,0.047269862,-0.0076400135,-0.007677312,-0.00278186,0.004307998,-0.008858437,-0.02491552,0.009318454,-0.014832443,0.011823682,-0.0011616985,-0.005060188,0.013949707,-0.017393619,-0.032698512,0.0007525786,-0.011444479,0.022739762,-0.02302572,-0.0074783857,-0.0012541682,-0.013154002,0.030485457,-0.00041572488,-0.019880198,0.018848266,0.01028822,0.0070308014,-0.010599042,-0.041227475,-0.017642276,0.035632674,-0.0054052006,-0.0031097776,-0.028123206,-0.022155417,0.034513712,-0.041724794,0.04587738,-0.020986725,-0.04291835,0.015640581,-0.030584918,-0.025686359,-0.014583784,0.03272338,0.014509187,-0.024903087,-0.009610627,-0.0066329488,0.055749096,-0.0099028,0.032599047,0.042246975,-0.026183674,0.020514276,-0.018612042,-0.019917496,-0.021247815,-0.022615435,0.013850244,0.006620516,0.033792607,0.026680991,-0.007192429,-0.0014523175,0.03011247,0.021769997,0.012700201,0.015702745,-0.0066578146,0.0022612326,0.026059346,-0.010132808,-0.004827071,0.039934456,-0.004991807,0.004155695,-0.028595656,0.0112144705,-0.00035006367,0.008317606,0.012582089,0.03334502,-0.015367057,0.0016224927,-0.0020762933,-0.011413396,-0.0028968642,0.01907206,-0.0074100047,0.0018043238,0.0029310547,0.027128575,-0.01235208,-0.008435719,-0.041650195,-0.012805881,0.005877651,0.014322693,0.024629563,-0.019594241,-0.010698506,-0.0077270437,0.01907206,-0.011015544,0.023833858,-0.03625432,-0.0019224362,-0.01782877,0.0072670267,-0.0008555385,-0.0010925406,-0.022006223,0.03921335,-0.022317044,-0.0024803623,-0.013377794,-0.0056538587,-0.0068194424,0.0058030533,0.0052777636,0.0358316,0.011630972,-0.042520497,0.07932186,-0.019469911,0.0008671944,-0.0064215898,0.03140549,0.0023063018,0.0036614873,0.016635211,-0.006688897,-0.029167568,-0.0076959613,-0.017368753,0.0367765,0.009940099,0.0133404955,0.00031898145,-0.0040717726,-0.0004339857,0.022018654,-0.016809274,0.022963556,-0.019581808,-0.005952248,-0.013564288,-0.009436566,-0.0061449576,0.02213055,0.0063096937,0.010841483,-0.023572767,0.01310427,0.01366375,-0.036229454,0.0024290767,0.017120095,0.026755588,0.002531648,-0.01366375,0.018699072,0.026929649,-0.021944057,0.05082567,-0.006744845,-0.005840352,0.020166153,-0.0042924564,-0.05301386,-0.01235208,-0.019432614,-0.019221254,-0.011506643,0.015914105,-0.025313372,-0.020153722,0.019755868,0.007745693,0.000059104812,0.0433908,-0.018922865,-0.035110492,0.014223231,-0.004438543,-0.007801641,-0.017716873,0.042893484,-0.008068948,-0.015304892,0.012420461,-0.019308284,0.01945748,-0.008821138,0.01177395,0.013253465,-0.01293021,0.02496525,0.0027430071,-0.03329529,-0.043664325,-0.013365361,-0.03148009,0.019643972,-0.0044571925,0.0055388543,-0.06669004,-0.010692289,0.0002711925,-0.0046250364,-0.010810401,0.004258266,0.015391923,0.017505515,0.003754734,0.033494215,-0.03170388,-0.0020327782,-0.0041929935,0.006340776,-0.007838939,0.00043864804,-0.006340776,-0.0028859854,0.01808986,-0.048438556,0.022155417,-0.031902805,0.012289915,0.0047307163,-0.007372706,0.0053896597,-0.006800793,0.00019125288,-0.011208254,0.0016675619,0.0009744281,-0.0087714065,-0.019233687,0.044833016,0.0033475568,0.0188607,-0.013154002,0.005364794,-0.0038075738,0.018239055,0.038865227,-0.011202037,0.01777904,-0.02993841,0.009287372,0.012302348,-0.0053523607,-0.005604127,-0.020153722,0.013564288,0.0076959613,0.02750156,-0.020091556,0.013937274,-0.011388531,0.017841203,0.035856467,-0.02045211,-0.007465953,0.008622212,0.020116422,0.017679576,-0.008124896,-0.0016660078,0.0061791483,0.018326085,0.03493643,-0.019992093,0.027526427,-0.013352928,-0.023000853,0.003266743,0.00021369036,0.03272338,-0.028993508,-0.02482849,-0.028471326,-0.0007821067,-0.020091556,-0.02349817,-0.022615435,0.013116703,-0.019830465,-0.0179158,0.041824255,-0.017692009,0.017132528,0.007360273,0.0038759548,0.0009821986,0.029515691,-0.0076151476,-0.010561744,-0.028993508,0.054058224,0.00090293895,0.02213055,0.03175361,0.04239617,0.026954515,0.0007471392,0.013377794,0.024107382,-0.005159651,0.021210518,0.017580112,0.019096926,0.0034781022,0.02341114,-0.008814922,-0.023684664,0.006048603,0.02615881,-0.023945754,-0.027402097,-0.008690593,0.017841203,-0.009169259,0.024107382,0.0132658975,-0.017940667,-0.014297828,0.0036677036,-0.021682967,0.0025658384,-0.00043903658,0.040133383,0.021533772,0.019382881,0.0076959613,0.016635211,-0.020501843,0.014782711,-0.0121345045,0.010331735,-0.021919193,0.005495339,-0.0044851666,-0.0060113044,-0.045007076,0.014049171,-0.039287943,0.013415093,0.022677599,0.01898503,0.0179158,-0.025151744,-0.028670253,-0.0037298682,-0.0054642567,-0.025213908,-0.01649845,-0.02517661,0.018748805,-0.015876805,0.017381186,-0.026805319,0.0032387688,0.029068107,0.04073016,0.0026528686,-0.013328062,0.022926256,0.014148633,-0.0002583711,0.034638043,-0.02500255,0.024990117,-0.014546486,0.007826507,-0.008497883,-0.0071426975,-0.01490704,0.0015976268,-0.017853636,0.028073475,0.03046059,0.041451268,-0.021260248,0.011295284,0.00934332,-0.024206845,0.013638885,-0.034016397,0.0042955647,-0.010157675,-0.0011508197,0.034463983,-0.0062319883,0.001042809,0.035931062,0.010170108,-0.023784125,0.002631111,-0.00055248674,-0.04682228,0.01112744,0.010816618,-0.027899414,-0.041898854,0.008429502,0.036627304,0.009809554,-0.023846291,-0.0047307163,-0.03448885,0.03230066,0.0022565702,-0.010051995,0.0070432345,-0.007950836,-0.037472744,-0.017418485,-0.00017775153,-0.04132694,0.011699353,0.032201197,0.021484042,0.041724794,-0.015180564,-0.03433965,0.00386663,-0.021944057,-0.008180845,-0.012868045,-0.03329529,-0.0010466942,0.017244425,-0.021148352,-0.00155722,0.02775022,0.039710663,0.0048488285,-0.00043903658,0.021670533,0.028844314,-0.021633236,0.022018654,0.008497883,-0.007994351,0.027849682,-0.0037485175,0.019594241,0.03033626,-0.02556203,0.020016959,-0.027974011,0.0070494507,0.016175196,-0.0015766463,-0.018413115,0.007919754,0.019345583,0.05147218,0.0025394186,0.011251769,-0.04321674,0.017729307,0.0056818323,0.019954795,-0.0034998597,0.022068387,-0.0048332876,-0.01020119,-0.01628709,-0.043689188,0.022279747,0.0018338518,-0.036677036,-0.0029248383,-0.020091556,-0.005716023,0.02650693,-0.011226904,0.009927666,-0.0060299537,0.0003009149,-0.05072621,-0.003002544,-0.001126731,0.012196669,-0.018935297,0.00008057098,0.0011578132,0.036677036,0.03540888,-0.06514836,0.0017747956,-0.026954515,0.0053772265,-0.0462255,0.0014663044,-0.012793448,-0.023398707,0.031131966,0.0064215898,0.01426053,0.012955075,-0.039039288,0.020825097,0.007702178,0.0122401845,0.016299523,0.002281436,0.0032107949,-0.03406613,0.008671943,0.009038714,-0.017604977,0.031679016,-0.03381747,-0.021297548,-0.04025771,-0.011643405,0.032797974,-0.010549311,0.024679294,0.021446742,0.03759707,-0.04304268,-0.022055954,0.010916081,-0.024517667,0.007988134,0.015578416,-0.027775085,-0.029789213,0.00038114592,0.023709528,-0.01641142,-0.017542813,0.013402659,-0.0128431795,-0.0037858163,0.0245674,0.0036739202,-0.010263354,-0.0004945961,0.030385993,-0.032599047,0.0034563446,-0.016274659,-0.0026653016,-0.0017188475,-0.023746828,-0.008218143,-0.0048208544,-0.0017033065,0.0273275,-0.028123206,0.00027060971,0.026109077,0.001781012,-0.008504099,0.0023125182,0.0035122926,0.014645949,0.024331173,-0.045380063,0.035160225,0.030783845,0.041749656,0.039760396,-0.01046228,0.009299804,0.011034193,-0.021247815,0.0046343612,-0.012035041,-0.0014041399,0.008473017,-0.0155286845,-0.022379208,0.007957052,-0.01679684,0.00792597,-0.01777904,0.018487712,0.06261206,0.024020351,-0.0066578146,0.011736652,-0.03453858,0.031430356,0.06360669,0.02745183,-0.02444307,0.0014080253,0.011761517,0.0045659803,-0.018562311,0.018164458,-0.0035682407,0.017505515,0.018437982,-0.03926308,0.006148066,0.0016256009,0.048960738,0.002491241,0.0040966384,0.009169259,0.018612042,-0.044857882,0.004851937,-0.012308565,-0.010232272,-0.0032885005,-0.013216166,-0.057290774,0.028272402,-0.01812716,-0.01620006,0.010232272,0.0052901963,-0.050775938,0.038890094,0.012756149,-0.0036832448,-0.04162533,-0.030236797,0.0033972883]},{"id":"interface-APIEmbedAuthor","type":"interface","source":"main","text":"Interface: APIEmbedAuthor\nProperties: icon_url: string, name: string, proxy_icon_url: string, url: string","meta":{"url":"/docs/typedefs/APIEmbedAuthor"},"embedding":[-0.00096552115,-0.038863607,-0.013131088,-0.002562769,0.011227632,-0.056894023,0.05888024,-0.004135189,0.00072276156,0.0026248381,0.010416594,-0.034847036,0.02729942,-0.042836037,0.006030369,-0.018957319,-0.02020422,0.024143547,-0.0009958661,-0.00051896763,0.018736627,0.0014841439,-0.005517264,0.066604406,-0.016849723,0.07075339,-0.01657386,-0.023635957,0.03502359,-0.0021779398,0.028535288,-0.014951785,0.04482225,0.026681487,-0.01988422,0.0018524213,0.025048377,0.030256674,0.012071773,-0.017622141,0.0058041615,-0.005073124,-0.012104876,0.04201948,-0.0616168,0.04219603,-0.015017992,0.0045351908,0.05773265,0.031669095,-0.03411876,-0.008739346,-0.033081513,-0.009202796,-0.050758827,0.016242824,-0.017842831,0.021086982,-0.05742368,0.007365547,0.025732517,0.025313206,-0.032794617,-0.004788985,-0.01494075,0.0019834563,-0.03268427,0.045859497,-0.023481475,-0.039746366,0.0406512,-0.013682814,0.003558635,0.003597256,-0.023569752,0.0076027894,-0.04484432,-0.0016731102,-0.0049489858,-0.054069184,-0.023613889,0.013561434,-0.03833395,-0.057291266,0.015933858,0.012546258,-0.03714222,0.0055034705,-0.045373976,-0.022311814,-0.031647027,-0.026306314,-0.054996084,-0.059895415,0.004044154,0.00205656,0.002187595,-0.0137269525,-0.026504936,0.039746366,0.06576578,-0.0369436,-0.06898787,-0.0027407007,-0.0152276475,-0.01952008,0.016728343,-0.012954535,-0.008148999,-0.017831797,-0.06713407,0.0072938227,-0.008744863,0.005881403,0.018063521,-0.024717342,0.028336667,0.014686956,-0.006217956,-0.04126913,-0.025423551,-0.03506773,0.07084167,0.014278678,0.0049407096,-0.0037186358,-0.044976734,-0.01949801,-0.06841407,-0.09825143,-0.0023503543,0.0011317288,-0.027895285,0.00014275919,0.008783484,-0.015547649,-0.0028662186,-0.0002129319,-0.041291203,0.004907606,-0.011464874,-0.021362845,0.031227713,-0.02941805,-0.028358735,0.0160111,0.002322768,0.013296606,-0.0075420993,0.07097408,0.020193186,0.020491118,-0.027144937,-0.0018938008,-0.046300877,-0.016430411,0.022753196,-0.030433226,-0.012833156,-0.013395917,0.013991781,-0.024298029,-0.0070676147,0.015194545,-0.056011263,0.05857127,0.028380804,-0.0098207295,-0.03528842,0.019089732,-0.0059751966,-0.017611105,-0.033081513,0.0069352007,0.014841439,-0.010013834,0.05376022,-0.014002816,-0.0091807265,0.06408854,0.016143514,0.030433226,0.008987622,-0.059851278,-0.019431803,0.022223538,-0.025710449,0.0073103746,0.035244282,0.0032772548,-0.003583463,0.009611074,-0.019553183,0.004595881,0.030102191,0.0053214007,0.00998073,-0.0015696615,-0.0121490145,-0.051729865,0.0049186405,0.028204253,0.046389155,0.019564217,-0.0045158803,-0.008722794,-0.0012296601,-0.021969745,-0.0028234597,0.057511955,0.048905026,-0.038885675,0.017202828,-0.018151797,-0.03248565,-0.025798725,0.010096593,0.016540756,-0.0052469177,0.020491118,-0.029131152,0.061219558,0.05389263,-0.06417681,0.041666377,0.02427596,-0.020215254,0.009318658,-0.020976637,0.010306248,-0.014841439,0.061219558,-0.032132544,-0.012888328,0.003597256,-0.00061931286,-0.014775232,-0.0100083165,0.0034565658,-0.009313141,-0.010791768,-0.011177977,-0.030653918,0.014874543,-0.0072938227,-0.00312553,0.028535288,-0.022135261,-0.025887001,0.0100469375,0.062014043,0.008651069,0.0542016,0.009473142,0.037318774,-0.022355953,-0.053098146,-0.0022331125,0.03802498,-0.02334906,0.03824567,-0.011238666,0.0064883023,-0.010692457,0.0369436,-0.014841439,-0.008606931,0.045153286,-0.014532473,-0.019630425,0.0406512,-0.012612465,0.02941805,0.030764263,-0.025820794,-0.0062841633,-0.0018593179,0.02522493,-0.06929683,0.0212525,-0.020093875,-0.033522893,-0.021418018,0.061793353,-0.022775264,-0.011354528,0.009616591,0.019553183,0.022124227,0.0020924222,0.041732583,0.0215725,0.064132676,-0.026218038,0.0123366015,0.006444164,0.025533896,-0.019873183,0.036789116,0.012182118,0.06117542,-0.041644305,-0.00059069204,-0.024430444,-0.015481442,-0.0010317283,0.046345014,0.031007022,0.029462188,-0.017555933,0.023437336,-0.030477365,-0.041865,-0.013837297,-0.021241466,0.031382196,0.03107323,-0.0057379543,-0.0271008,0.023481475,0.010863492,0.0061572664,-0.03996706,-0.040077403,-0.00979866,-0.049213994,-0.0011275908,0.029859431,0.029285636,0.037053943,0.03643601,-0.025644243,0.019166974,0.024298029,0.021086982,-0.009688315,-0.019806977,0.014653852,-0.0028993222,0.04647743,0.016518688,-0.046609845,-0.013572468,-0.0031807024,0.00782348,-0.013120053,-0.025158722,0.0059255413,-0.03780429,0.006173818,-0.014929716,0.023613889,-0.047316052,-0.0029351844,-0.038709123,-0.031271853,-0.0036993253,-0.05812989,-0.100370064,0.020027667,-0.022841472,0.031713232,0.021120086,0.0019613872,-0.06488302,-0.01800835,-0.011509012,0.017048344,-0.0019420768,-0.041533962,0.03224289,0.0360167,0.00711727,0.016033169,0.0120166,0.048198815,0.0020744912,-0.022124227,-0.028667703,-0.04952296,0.04524156,0.002042767,-0.036259457,-0.03619325,0.013782125,-0.05649678,0.0070455456,-0.013760055,-0.015779374,0.036502216,0.011862117,0.0017406967,-0.02683597,-0.049831927,0.071503736,0.007012442,0.0072331326,0.004124155,-0.0018938008,0.015933858,0.0067034755,-0.0034179448,0.037671875,0.021848364,-0.03500152,-0.027762871,0.022091124,-0.005815196,0.043829143,-0.004971055,0.0023862165,-0.03224289,0.03945947,-0.010813837,0.005431746,0.0043503623,0.008695208,-0.07997826,0.012215222,0.052391935,-0.02066767,0.012325567,-0.049567096,-0.012855224,0.027189076,-0.056673333,0.029572533,-0.013153157,-0.045197424,-0.017390415,-0.012060738,0.017853865,0.02941805,0.02522493,-0.0123366015,-0.03151461,0.038179465,-0.018880077,0.011994531,0.04413811,-0.033743586,0.00082758954,-0.01542627,-0.02098767,0.0002651735,-0.038444296,0.030764263,-0.026747694,-0.020358704,-0.0016055238,-0.043718796,-0.023834579,-0.005602781,0.080463775,0.009544866,0.009831764,0.006604165,0.01713662,-0.0070234765,0.010670388,0.018560074,0.0056220917,-0.029815294,0.03738498,0.050758827,-0.043145,-0.02966081,0.05000848,0.023415267,-0.017313173,0.011128321,-0.0035558764,-0.016320067,-0.0017255242,-0.03992292,-0.02266492,-0.0057379543,-0.079889975,-0.02473941,-0.008391758,0.01588972,0.005815196,-0.02220147,-0.056629196,0.021749053,0.087967254,0.022587677,0.0063338187,-0.00560554,-0.028579427,0.014664887,0.013715917,0.010217972,-0.009164175,-0.015680064,-0.055525742,-0.054245736,-0.044336732,0.0005124159,0.0024262166,0.02824839,-0.043498106,-0.032287028,-0.0038731191,0.024584927,-0.020877326,-0.0074593406,-0.034229103,-0.06364715,-0.005881403,0.0074427887,-0.048242953,-0.031382196,0.0015986272,0.0010344869,0.0628968,-0.025533896,0.052259523,-0.02451872,0.00065069227,0.013793159,0.006946235,0.01691593,-0.00034327726,0.015591787,0.003357255,-0.055614017,-0.039944988,0.0056303674,-0.0033241515,-0.023018025,-0.0139145395,-0.012215222,-0.0043365695,-0.026902178,0.0156028215,-0.01691593,-0.013053846,0.025269069,-0.046653982,-0.00560554,0.007553134,0.011806944,0.0038979468,-0.053583667,0.011189011,-0.029572533,0.02752011,-0.00852969,0.018405592,0.008833139,-0.0012772465,0.057158854,-0.032154612,0.034648415,0.023966994,0.017942142,0.008860726,-0.010913148,-0.014057988,-0.011464874,0.003169668,0.01026211,0.017898003,-0.0020882844,0.02893253,0.019288354,0.004333811,0.019674562,-0.0042758794,-0.0039227745,0.022995954,-0.0038041533,0.08121412,-0.011299356,0.014543507,-0.006427612,-0.0027751836,0.004482777,-0.01915594,-0.026593212,0.0034344967,-0.016684206,0.022753196,0.003566911,0.0013641434,-0.0026427694,-0.008601414,0.023635957,0.031492542,0.0029434601,0.015271786,0.0013117294,-0.011343494,-0.0008255206,-0.0052248486,0.05954231,-0.0048772614,-0.003580704,0.028888393,0.00976004,0.012115912,-0.037870497,0.007972446,0.043542244,0.031095298,0.017224897,-0.023172507,-0.04385121,0.009280037,-0.015260751,-0.00019965599,-0.0021117327,-0.033875998,-0.014212471,0.013020743,-0.0026634592,0.023326991,-0.055172637,-0.021020776,-0.019222148,-0.008314516,-0.02006077,0.039944988,-0.046653982,-0.010245559,-0.00038276016,-0.03197806,0.00502071,0.017125586,0.040276024,0.02919736,-0.021793192,-0.012833156,0.030543571,0.006482785,0.013693849,0.017313173,-0.027365629,-0.004460708,0.016463514,0.0021462156,0.018891111,0.030653918,-0.02113112,0.008634518,-0.02637252,0.012281429,-0.021760087,0.0038565674,-0.013131088,-0.0016524205,-0.00859038,0.0057765753,0.023459405,-0.0056000226,0.000062629566,0.031691164,-0.037627738,0.021660777,-0.0026607004,0.018504903,0.012424878,-0.032309096,-0.0035172557,0.0004044844,-0.0092965895,-0.004311742,-0.04691881,0.0069352007,-0.018273177,0.036082905,0.008937967,0.020027667,0.021164224,-0.04504294,0.017787658,-0.0271008,-0.014841439,0.042372584,-0.030278744,0.001480006,-0.01518351,-0.019111801,0.010880044,-0.040011197,0.0066869236,0.018173866,-0.018858008,0.0038703606,-0.005815196,0.03319186,0.026438728,-0.012005566,0.010096593,0.06916442,-0.011398667,-0.009732453,0.0062676114,-0.02593114,0.018317316,0.0027958734,-0.009302107,-0.008237274,-0.014609714,0.021296637,0.001242074,-0.022223538,0.006019335,-0.016783517,-0.052656766,0.008744863,-0.027034592,-0.0019434561,0.024298029,0.008971071,0.008292448,-0.007591755,0.009417969,-0.00025465622,0.015834548,-0.006587613,-0.041379478,0.0298815,-0.016187651,0.0076689967,0.010140731,0.031492542,-0.016562825,-0.011255218,-0.030278744,-0.028778048,-0.007315892,0.0094841765,-0.021550432,0.032419443,0.032309096,-0.0003665532,-0.004863468,0.018869042,0.010035903,0.02381251,0.001195867,0.011486943,0.0030924263,0.0056303674,-0.01752283,0.02088836,0.032088406,-0.009158658,-0.013804194,0.0046731224,-0.03522221,0.03674498,-0.02286354,-0.0060138176,0.0551285,-0.03689946,-0.03219875,0.02661528,0.0008006929,0.015735237,-0.017566968,0.006902097,-0.019575251,0.0015806961,0.0054758843,-0.0063007153,0.012535223,0.045131218,0.00625106,-0.025246998,-0.005613816,-0.01342902,0.031713232,-0.035840146,-0.023172507,-0.013142122,-0.02661528,0.014411093,-0.004788985,-0.010455214,-0.017589036,-0.028689772,0.029815294,-0.01869249,-0.0030234605,-0.006609682,0.011354528,-0.017445588,-0.024938032,0.006758648,0.0063724397,-0.046786398,0.023878718,0.021583537,-0.0068469243,-0.051729865,-0.054157462,0.050758827,0.01837249,-0.020071806,-0.011365564,0.038488433,-0.019233182,-0.0109848725,-0.015900753,0.002484148,-0.0018827663,-0.007448306,-0.02705666,0.03923878,-0.008308999,0.011564185,0.011696599,0.05323056,0.03200013,0.0152276475,0.017754555,0.02476148,0.02752011,0.0099696955,-0.011442805,-0.017721452,0.0041379477,0.014808336,-0.00227863,-0.016099375,0.0006972442,-0.01659593,0.010582112,0.04396156,0.009125554,-0.01657386,0.0015406959,-0.01854904,-0.0067255446,0.008822105,-0.018162832,-0.004893813,0.000023965615,-0.023437336,0.012071773,0.007161408,0.004504846,-0.041445684,-0.011398667,0.0034344967,-0.015139372,0.011928325,0.030146329,0.01352833,0.011762806,-0.020435944,0.00073241675,-0.027939424,-0.0489933,-0.02088836,0.018846974,0.0028579426,-0.0063338187,0.026306314,0.0018344902,-0.009875902,-0.01167453,-0.028601496,-0.0031669093,0.017787658,0.025401482,0.051067792,0.039437402,0.003544842,0.004562777,-0.008695208,-0.018968353,0.060071968,-0.013241433,0.022951817,-0.015139372,0.05000848,0.050847102,-0.019718701,-0.0126014305,-0.019067664,0.010096593,0.027012523,0.013517296,0.042328447,-0.0028800117,0.027873216,-0.0011062113,0.0019806977,0.014124195,0.008027619,0.03663463,0.028424943,-0.005051055,0.010780733,0.006902097,0.009666246,-0.008077274,-0.008921416,-0.01740145,0.0094069345,0.020358704,0.00572692,0.06664854,-0.00358898,0.0032193235,-0.025776656,-0.0025641483,-0.00079172733,-0.020965602,0.047227778,-0.00029327706,0.023746302,0.016893862,0.013384881,0.0036744976,-0.012171084,-0.015569719,0.0073765814,-0.03343462,0.022841472,0.0102345245,-0.027829079,-0.017291104,-0.0013234536,-0.011575219,0.00076896866,-0.02846908,0.020855257,-0.003296565,0.013219364,-0.0070455456,-0.074549265,-0.027144937,0.02254354,0.014046953,-0.017555933,-0.03175737,-0.034626346,0.016562825,-0.05879196,0.03288289,-0.007939342,-0.029285636,0.030477365,0.0048303646,-0.070488565,0.003506221,0.0032386337,0.036546353,-0.035597384,-0.015205579,-0.0008013826,0.053186424,0.004016568,0.0074262368,0.028314598,-0.02381251,-0.0119614275,-0.05464298,-0.0012248325,-0.004038637,0.0035420833,-0.0016096617,0.016827654,0.028005632,0.0126014305,-0.023437336,0.012546258,0.009787626,0.007911757,0.0023144921,0.028093906,-0.011884186,-0.015900753,0.021925606,-0.02264285,-0.0073765814,0.030698055,-0.02893253,0.017456623,-0.0203256,0.0039172573,-0.02161664,-0.0014386266,0.016121445,-0.01167453,-0.00979866,-0.023547681,0.041688446,0.015172475,-0.0048000193,0.005500712,-0.0064772675,0.0035641524,-0.01284419,0.0016234549,-0.01250212,-0.015569719,-0.02198078,-0.025511827,0.008055205,-0.008281413,0.006946235,0.0017544898,-0.023569752,0.006444164,0.054951947,0.020965602,0.045638807,-0.06519199,0.017842831,-0.027696664,-0.021870434,0.01952008,0.0012317292,0.0069572697,0.03623739,-0.039856713,-0.012766948,-0.0040717404,0.008154516,0.011034528,0.018317316,-0.011564185,0.033015307,0.006444164,-0.008766932,0.05649678,-0.0064772675,0.01984008,-0.0157242,0.036568426,-0.0007751756,0.024143547,0.010951769,-0.0035089797,-0.008121412,-0.012888328,0.00729934,0.027277352,0.0069186487,-0.023371128,-0.012546258,0.008651069,-0.0019365596,-0.0029848397,-0.009958661,-0.0049517443,-0.016099375,0.012822121,0.0052579525,-0.039216712,0.004306224,0.023702165,0.0011041424,-0.00064862333,-0.033522893,0.013881436,-0.0057986444,-0.02139595,0.00994211,0.03592842,0.026659418,0.033346344,-0.0005003469,0.0015931099,0.021704916,-0.032772545,0.0320222,-0.004452432,0.025754588,-0.0058041615,-0.005892438,-0.0745934,-0.0021406983,-0.021638708,0.015779374,-0.018096626,0.009120037,-0.015459373,0.014333852,-0.020546291,0.022598712,0.0048358818,0.03197806,0.017357312,-0.01891318,0.01167453,0.00572692,0.0032662202,-0.0028041494,0.0075200303,0.042460863,-0.008397276,0.012811086,-0.0024648376,0.007674514,-0.019067664,0.023613889,0.019486975,-0.010885561,0.050273307,-0.019762838,-0.023282854,-0.04274776,-0.015161441,-0.028601496,0.038466364,0.04126913,0.026085623,-0.06651613,-0.02941805,0.0014524197,-0.0022510437,0.003986223,-0.004976572,0.015073164,0.009340728,-0.0065324404,0.005597264,-0.015017992,0.0048496746,-0.0066648545,0.015349028,-0.02615183,-0.019111801,-0.0070234765,-0.011062114,0.027983561,-0.06329405,0.03621532,-0.019729735,0.004135189,0.0033379446,0.009451073,0.03299324,0.002082767,0.012579361,0.0048220884,-0.008297965,0.006819338,0.0121490145,-0.013230398,0.035133936,-0.0249601,0.0043558795,-0.017346278,0.0026165624,0.012347636,0.039636023,0.042769827,-0.024871824,-0.01952008,-0.008386241,-0.010449697,0.005073124,-0.015536615,0.0011937979,0.0016827654,0.007922791,-0.0037931188,0.0060083,-0.016033169,0.019486975,-0.0010200042,-0.004921399,0.030322881,-0.022775264,0.007878653,0.0031889784,0.012921432,-0.009853833,-0.0032469097,-0.0127890175,0.0015806961,0.012557292,0.042637415,-0.039282918,0.005682782,0.016077306,-0.007983481,0.011133838,-0.004135189,0.039658092,-0.034891177,0.0031420817,-0.05230366,-0.023989063,-0.042240173,-0.017015241,-0.013053846,0.014091091,-0.029925639,-0.0051503656,0.01518351,-0.007277271,0.0013379365,0.0010055213,-0.0045876047,0.0064938194,0.043277416,-0.0061351974,-0.012612465,0.008148999,0.04788985,-0.016706275,0.020435944,0.04396156,0.06598648,0.026990455,0.0040358785,0.016066272,0.030631848,0.019211112,0.02917529,-0.0024938032,0.0123366015,0.014179368,0.010995907,-0.01131039,-0.022477333,-0.018306281,-0.0013172467,0.006571061,-0.008209689,-0.016463514,0.012623499,-0.029594602,0.01740145,0.03310358,0.0024648376,0.012667637,0.02590907,-0.01564696,-0.01272281,-0.004733812,0.013042811,0.022565609,0.007547617,0.018416626,-0.022731127,-0.0018551799,0.021539398,-0.008077274,-0.023702165,-0.024849756,-0.013109019,-0.0063227843,-0.00081241707,-0.028689772,0.006024852,-0.0064110607,-0.011497977,0.010300731,0.008259344,0.019718701,-0.019906288,-0.021627674,-0.035862215,0.007961412,-0.010841424,-0.020336634,-0.0092193475,0.0006103473,-0.01389247,0.007911757,0.00058896793,0.015569719,0.0360167,0.021451121,0.006902097,-0.0056110574,0.017555933,0.03038909,0.011343494,0.00057517475,-0.040960167,0.022124227,-0.020513186,0.010791768,-0.008662104,-0.024805618,-0.008910381,0.021649742,-0.018129729,0.010753147,-0.00026672523,0.057070576,-0.018681455,0.020689739,0.006984856,-0.030035984,0.016540756,-0.014576611,-0.028888393,0.02359182,-0.008253827,0.024253892,-0.044336732,-0.0067089926,0.03802498,0.013241433,-0.02286354,-0.009324175,-0.004471742,-0.056011263,-0.028557356,0.023834579,-0.014742129,-0.028888393,0.011166941,0.012987639,0.016320067,-0.046521567,-0.007470375,0.0051889867,0.01272281,0.028226322,-0.002772425,0.021362845,0.0010544871,-0.01659593,-0.023900786,-0.01296557,-0.016971104,0.0019765596,0.024651134,0.02115319,0.044226386,0.0074317544,-0.026902178,-0.0071448567,-0.0068689934,0.00723865,-0.030653918,-0.012855224,0.005842782,-0.012822121,-0.013605572,-0.020248357,0.036502216,0.0038400155,0.019486975,-0.00893245,0.010824871,0.025887001,-0.056143675,0.013760055,0.025357343,-0.0127890175,0.025732517,-0.008562793,0.015315924,-0.0043503623,-0.017511794,0.0013703504,-0.020921465,-0.011205562,0.013903504,-0.011895221,-0.015746271,0.024849756,0.027873216,0.043564316,-0.016099375,0.0009648315,-0.01764421,-0.0099696955,0.0007613824,0.030653918,-0.006046921,-0.017611105,-0.00041586376,-0.014057988,-0.011062114,-0.05323056,-0.0042400174,0.017489726,-0.008000032,-0.034449793,-0.018504903,-0.020358704,0.05323056,-0.015713166,-0.026482865,-0.009473142,0.0249601,-0.03550911,-0.009307624,0.010526939,0.028557356,-0.031249782,0.006973821,0.01949801,0.03976844,0.027696664,-0.035818078,-0.013660745,-0.021329742,0.025313206,-0.017302139,-0.028579427,-0.012215222,-0.025754588,0.023635957,0.011122804,0.0063669225,0.045682944,-0.020248357,0.022951817,0.016849723,-0.0035365662,-0.0037517394,0.004198638,-0.0036386354,-0.0357298,-0.01250212,-0.0050427793,-0.022013882,0.006240025,-0.017070414,-0.008148999,-0.048198815,0.013296606,0.05724713,0.0068855453,0.014024884,0.007691066,0.04409397,-0.035398763,-0.007315892,0.0036220837,-0.011939359,0.010620733,-0.0041020857,-0.025754588,-0.02897667,-0.012590396,0.013749021,-0.010256593,-0.031713232,-0.010151765,-0.000818624,0.02254354,0.021627674,0.009307624,-0.018339384,0.0054869186,0.032331165,-0.0071889944,-0.00019103526,-0.023040093,0.013042811,-0.00015758685,-0.005028986,-0.003470359,0.024849756,-0.006604165,-0.0024758722,-0.02683597,0.04550639,0.014212471,-0.0178649,-0.004720019,0.013142122,-0.007994515,0.036347732,0.016364204,0.0008400034,0.02829253,0.03901809,0.056629196,0.040253956,-0.002532424,0.0039972574,0.02308423,-0.017809728,0.0040800166,-0.029594602,0.0016593171,0.0022372503,-0.0068358895,-0.013252468,-0.0006782786,-0.0044689835,0.001851042,-0.0035089797,0.028336667,0.045859497,0.020171117,0.0011682806,-0.029506326,-0.040033266,0.043277416,0.045462254,0.043145,-0.018394558,0.0044800183,0.027586319,-0.009715902,-0.013826263,-0.0023158714,-0.017920073,-0.003776567,-0.008380723,-0.018858008,0.001881387,0.022510435,0.043564316,0.011784876,-0.0026662177,0.0209325,0.034648415,-0.030874608,-0.012590396,-0.035133936,-0.024452513,0.0015337993,0.010256593,-0.038400155,0.016849723,-0.025820794,-0.011542115,0.011497977,0.02966081,-0.058438856,0.009263486,0.019486975,0.03385393,-0.030013915,-0.01655179,-0.0006500026]},{"id":"interface-APIEmbedChild","type":"interface","source":"main","text":"Interface: APIEmbedChild\nDescription: Nested embed from unfurlers (subset of APIEmbed)\nProperties: audio: APIEmbedMedia | null, author: APIEmbedAuthor | null, color: number | null, description: string | null, fields: APIEmbedField[] | null, footer: APIEmbedFooter | null, image: APIEmbedMedia | null, nsfw: boolean | null, provider: APIEmbedAuthor | null, thumbnail: APIEmbedMedia | null, timestamp: string | null, title: string | null, type: EmbedType, url: string | null, video: APIEmbedMedia | null","meta":{"url":"/docs/typedefs/APIEmbedChild"},"embedding":[-0.031665936,-0.00046718452,-0.0058238707,0.0011629085,0.008494829,-0.04621784,0.029725684,-0.025795426,0.020932354,0.006716263,0.019303039,-0.030820185,-0.008171454,-0.019788101,0.0026849506,-0.0032026626,0.019526914,-0.004732478,0.0081776725,0.032835066,0.007145358,-0.029029183,0.0016168782,0.016790658,-0.0091167055,-0.036242947,-0.0064302003,0.033481818,-0.0042225397,0.021442292,0.02778543,-0.018979663,0.045993965,0.015335468,-0.039004076,-0.022350231,0.03537232,-0.00041004963,-0.02241242,0.022499481,0.011734804,-0.042884585,-0.026591428,0.016554344,-0.06631688,0.049675472,-0.022934794,0.034501694,0.007848078,0.05606836,-0.017611535,0.015944906,-0.030272935,0.033581316,-0.039501578,0.020472165,-0.021641294,0.0078791715,-0.029551558,-0.045446716,0.009788332,0.00069067127,0.02466361,0.024128798,-0.011765898,-0.009576894,-0.044998962,0.0512426,0.014564341,0.02115623,0.074276894,-0.007916484,-0.034501694,-0.005335698,0.05567036,0.003230647,-0.03004906,-0.010739802,-0.033879817,-0.04586959,0.007512265,0.034750443,-0.0516406,-0.024452174,-0.011100491,0.0251238,-0.009104268,0.008544579,-0.046914343,-0.0039520236,-0.073381394,-0.03226294,-0.07029689,-0.03723795,-0.010857959,0.01411659,-0.027860055,0.020621415,0.010963677,0.03335744,0.04487459,-0.034849945,-0.086565174,-0.02547205,-0.0028015524,-0.0362927,-0.005817652,0.00001226748,-0.040869705,-0.024688486,-0.048755094,-0.011971117,-0.02808393,0.0073381397,0.0038929451,-0.013146464,0.015036968,0.023432296,-0.017512035,-0.029103808,-0.06910288,-0.04004883,0.050197847,0.017760785,0.048804846,-0.0140668405,-0.01667872,0.019452289,-0.08447567,-0.077212155,0.023084046,-0.0090420805,-0.026268052,0.0015663507,-0.014900154,0.014676279,-0.008631642,0.00552537,0.0013385885,-0.027312804,0.009676394,-0.024738235,0.06333187,-0.030322684,-0.012580556,0.024091486,0.008109266,0.019924914,0.016517032,0.019402537,-0.0007769566,0.0043375865,-0.04019808,0.024153672,-0.049426723,-0.03562107,0.00057018275,-0.029203307,0.013121588,-0.030621186,-0.0008511931,-0.01055324,-0.023307921,0.007375452,-0.041168205,0.011343023,0.02788493,-0.017375221,-0.035745446,0.036218073,-0.032735564,-0.040372204,-0.047760095,-0.0015663507,-0.053282354,-0.03236244,0.035844944,-0.072187394,0.023482047,0.009788332,0.052187853,0.062436372,-0.022822857,-0.0182956,0.003426538,0.03442707,-0.023046734,0.022847733,0.0139922155,-0.009539581,-0.034153443,-0.013059401,-0.0067038257,0.026939679,0.048954096,-0.0008737361,0.050769974,0.0015717922,0.044426836,-0.035347443,0.046143215,0.018009536,0.060346868,0.0025139346,0.0041261488,-0.005711933,-0.0027720132,0.0009164901,-0.053680357,0.03427782,0.057710115,0.0185941,0.009122924,-0.026442178,-0.021778105,0.022847733,-0.009769675,-0.016268281,0.00023203756,0.024875049,-0.00037157105,0.07651565,0.054227605,-0.02305917,0.005531589,0.0018018864,-0.04868047,-0.019166226,-0.04266071,0.027536679,-0.004325149,0.059401616,-0.017362785,-0.0128728375,0.008345579,0.019203538,-0.017300596,0.015186218,-0.0067597944,-0.0044588526,-0.029253058,-0.026790427,-0.0035104912,0.0047013843,0.0059171524,0.0023895593,0.023183545,-0.049426723,-0.014663842,0.02803418,0.06537163,0.01366884,0.026243176,0.033034064,0.03144206,-0.025546676,0.00002514226,0.07223714,0.02044729,-0.0032648502,0.007157795,-0.028457057,-0.031143561,-0.004586337,0.025185987,-0.0387802,0.03487482,0.032835066,0.021479605,0.0131713385,0.011075616,-0.017474722,0.0015453624,0.010932584,-0.037461825,-0.00985052,0.03146694,-0.004306493,-0.017524472,-0.005696386,-0.03315844,-0.0063027157,-0.024750674,0.035422068,-0.03044706,-0.024091486,0.0043935557,0.027088929,0.02989981,0.013233526,-0.011492273,0.0038773983,0.10706221,-0.048406847,-0.013432526,0.018531911,0.06552088,0.009894051,0.07129189,-0.0013245963,0.010161458,-0.049725223,0.032785315,0.0038649607,0.011828085,-0.005267292,0.054376855,0.021691043,0.0127609,-0.029949559,-0.016964784,0.007331921,-0.070545636,0.0026414192,-0.052486353,0.029725684,0.04069558,0.026914803,-0.01618122,-0.012524587,0.0073070456,0.022922358,-0.017263284,-0.059849367,-0.008320704,-0.035994194,-0.009881613,-0.010515927,0.016255844,0.0035540226,0.0032586313,-0.026591428,-0.00039236504,-0.0070272014,0.051441602,-0.058754865,0.0044526337,0.01120621,0.004309602,0.0255218,-0.010099269,-0.039725453,0.008911487,0.013046963,-0.021280605,0.0013106042,-0.056914113,0.002582341,-0.026268052,0.015820531,-0.032486815,-0.010882834,-0.024688486,-0.00095380266,0.00054608507,-0.037436947,0.022574106,-0.09318193,-0.06691388,-0.012101712,-0.022375107,0.008171454,0.007170233,0.054128107,-0.043232836,-0.023419859,-0.039501578,0.03211369,-0.0019697929,-0.040372204,0.02577055,0.020472165,0.03547182,0.026690928,-0.026964553,0.01914135,0.0099811135,-0.035297696,-0.002733146,-0.00793514,0.021293042,0.006019762,0.029576434,-0.045844715,-0.008874174,-0.02286017,-0.0017599097,0.0047977753,-0.06114287,0.045894466,0.0096079875,-0.02351936,-0.032984316,-0.05089435,0.052784853,-0.010012208,0.011952461,0.014514592,-0.00708317,0.007916484,0.018345349,-0.012139024,0.0071329204,0.029626183,-0.0131713385,-0.00587984,0.073530644,-0.00073498,0.043183085,-0.013569339,-0.0132459635,-0.017648848,0.040173203,0.005537808,0.027263055,0.009968676,0.001494835,-0.0781574,0.006386669,0.04437709,0.00045396964,-0.04390446,-0.013930027,0.029352559,0.034849945,-0.044302464,0.035098694,-0.002908826,-0.006038418,-0.029029183,-0.012151461,0.041193083,0.0757694,-0.020322915,0.020671166,-0.012226087,0.0076552965,0.008233641,-0.050769974,0.027387429,-0.010124145,-0.0001717933,0.002064629,-0.017798098,-0.05049635,-0.017711034,-0.008208767,-0.006125481,-0.058605615,-0.07925191,0.0052144323,0.009968676,-0.012344243,0.046615843,0.02145473,0.000052227886,0.017611535,0.021442292,0.029526683,0.016691158,0.026516803,0.02130548,-0.006312044,0.02411636,0.019278163,-0.016342908,0.006647857,0.014328028,0.024725799,-0.020559229,0.026666053,-0.02391736,-0.0131713385,0.029999308,-0.015832968,-0.032884814,0.015335468,-0.042685583,-0.015148905,0.006828201,0.0066229817,-0.009060737,-0.04370546,-0.046939217,-0.034775317,0.09527144,0.017487159,0.01019877,0.019340351,-0.036964323,0.004060852,-0.0015679054,0.010323145,-0.013681277,0.008768455,-0.020770665,-0.053680357,-0.0059917774,0.009010986,-0.0031700141,0.025845176,-0.042387083,0.0026647397,0.022499481,0.02848193,-0.0378847,0.0022714029,-0.051789854,-0.06616763,-0.0030876154,-0.019763226,0.0016666283,-0.033581316,0.03144206,-0.010982335,0.012344243,-0.026641177,0.038680702,-0.019974664,0.0022947232,0.0017210424,-0.0115171475,0.013345464,-0.01160421,0.026591428,-0.0058269803,-0.02195223,-0.08367967,-0.0014225419,-0.0074873897,-0.010111707,0.011529585,0.010173895,0.020571666,-0.049526222,0.023332795,-0.002647638,0.018929912,0.012748463,-0.03999908,-0.019377664,0.019713476,0.0033892253,0.012474837,-0.024551673,0.05965037,-0.006828201,-0.016591657,0.0010797326,0.039352328,0.025335237,-0.028382432,0.04532234,-0.018071722,0.009775895,0.069351636,0.036541447,-0.018171223,-0.007984891,0.014663842,0.006902826,-0.012250962,0.053182855,0.01532303,-0.03487482,0.020832853,0.013357901,0.012362899,0.027088929,-0.0066913883,-0.039625954,-0.007928922,-0.024501923,0.04029758,-0.0027844508,-0.0009164901,0.00062148756,0.029078932,0.010018426,-0.0019215975,-0.0008177672,-0.008196329,-0.0035260383,0.01667872,0.007829422,0.010584333,0.029775433,-0.013482276,0.0010983889,0.018718474,0.030571435,0.028929682,-0.0024595205,0.0019620196,0.005948246,0.00031482484,0.026666053,-0.014763341,-0.018606536,0.012325587,0.022686046,-0.008936361,-0.010316927,0.026690928,0.030272935,0.033233065,0.023382546,-0.01381809,-0.058555864,-0.0029632403,-0.0073381397,-0.015658844,-0.036839947,-0.02226317,-0.014688716,-0.012350461,0.0067784507,0.007263514,0.009091831,0.0022076606,0.0136190895,-0.008302048,-0.010634083,0.028133681,-0.06119262,0.017449846,-0.009085611,-0.035944447,0.020559229,0.02210148,0.023419859,0.031068936,-0.007617984,0.000737312,0.0091913305,-0.015248405,-0.00028936678,0.009925145,-0.027710805,-0.014676279,0.0021532464,0.022723358,0.042113457,0.025434738,0.0033674599,-0.0068095447,-0.022275606,0.007400327,-0.011423866,0.018220974,-0.029800309,-0.028755557,0.015285717,-0.021479605,0.014775779,-0.043730337,-0.01517378,0.044252712,-0.032014187,0.0009716816,0.003983117,0.029302808,0.009129143,-0.027561555,0.019502038,0.0019076053,-0.007139139,-0.0036659604,-0.023705922,0.002235645,0.01085174,-0.0046858373,0.010024644,-0.01175346,0.031989314,-0.06850588,0.02537255,0.008923924,0.012145243,0.013432526,-0.071441144,0.0018547458,-0.024787987,-0.04345671,-0.0006619095,-0.039053828,-0.020322915,0.026566552,-0.00091804477,0.0011123811,-0.013333026,0.020161226,0.04089458,-0.012275836,-0.0132459635,0.08537117,-0.018469725,-0.016815534,0.024128798,-0.023842735,-0.0015243741,-0.026218303,-0.023457171,-0.02788493,-0.02069604,0.0006051633,0.0128728375,0.035795197,0.00889283,0.0036690698,-0.0013564675,-0.006240528,-0.009925145,0.002974123,-0.011112928,-0.010254739,0.0013113815,0.0046267593,0.01613147,0.018009536,-0.005416542,-0.023805423,-0.006184559,0.01271115,-0.008724923,0.004029758,0.0060011055,0.01667872,-0.009968676,0.000049507176,-0.024539236,-0.011660179,-0.01396734,0.0155717805,-0.031392314,0.028954556,-0.0006871732,0.013059401,-0.016367782,0.016616533,0.0069214823,-0.0022185436,0.04666559,0.03191469,0.020870166,0.010447521,-0.0002695445,0.028606307,0.019613976,0.0030674045,-0.030372435,0.008326923,-0.03582007,0.0067908885,-0.036367323,-0.018469725,0.009154018,-0.000027935846,-0.045496464,0.02251192,0.032735564,0.0155717805,0.011349241,-0.0054787295,-0.0057243705,-0.03674045,0.00899233,-0.015584218,0.008787111,0.039053828,-0.021467168,-0.030670935,-0.013581777,-0.015012092,0.058008615,-0.045894466,-0.03300919,-0.0017723473,-0.019601539,0.016989658,-0.018979663,-0.002577677,-0.0031389203,-0.012773338,-0.001904496,-0.0035167101,-0.031392314,0.0055689015,-0.027536679,-0.046168093,-0.0521381,-0.023718359,0.030571435,-0.032486815,0.01813391,0.020969667,-0.007829422,-0.09357993,-0.0021392542,0.048357096,-0.0018531912,0.003759242,-0.02376811,0.011262178,-0.015671281,0.0010167676,-0.014626529,0.0072883894,-0.0036255384,0.014377778,-0.031392314,0.024352673,-0.009241081,0.022499481,0.0016697376,0.036342446,-0.016952345,0.016740909,0.009253519,0.011150241,0.042685583,0.0037094916,0.018905038,0.0033985535,0.011311929,0.041491583,-0.015285717,-0.0030114357,0.045844715,-0.032138564,0.035645947,0.04833222,0.00044619618,0.0018967225,-0.029402308,-0.019402537,-0.029551558,0.036815073,-0.032039065,-0.021666167,0.014638966,0.009359237,0.01813391,0.0052299793,0.03161619,-0.016753346,0.00040577425,0.0059202616,-0.014265841,0.0052393074,-0.007219983,0.007972453,0.016641408,-0.0512426,-0.005882949,-0.008233641,-0.014626529,-0.006741138,0.0102049885,0.023830296,-0.026342677,0.014402653,0.0011947796,0.0005495831,-0.0054538543,-0.033531565,-0.016840408,0.016218532,0.019775664,0.04392934,0.016616533,0.007823203,0.026019301,0.011685054,-0.013295714,0.01727572,-0.016927471,-0.0027844508,-0.026491927,0.024775548,0.010609209,-0.017972223,-0.0065172627,-0.023643734,0.022288043,0.004835088,0.025360113,0.047760095,-0.012549462,0.026491927,-0.0030114357,-0.028979432,0.018183662,0.014079277,0.011330585,0.033183314,-0.020260727,0.039352328,-0.0013121589,-0.022524357,-0.050172973,-0.04221296,-0.01983785,-0.018233411,0.039277703,-0.010385333,0.033183314,-0.008861736,-0.014900154,-0.0122323055,0.012555681,-0.00502476,-0.030272935,0.01090149,-0.0011450296,0.00814036,0.016342908,0.0041261488,0.010124145,-0.0074873897,-0.01955179,-0.0023227078,-0.004754244,0.015758343,-0.027287928,-0.017661285,-0.006877951,-0.026566552,0.021914918,0.0030829513,-0.0071329204,0.03517332,0.0094463,0.0185941,-0.012114149,-0.028656056,-0.0151240295,0.034228068,-0.015036968,0.022275606,-0.019987103,-0.010528364,0.03507382,-0.023867609,0.038805075,-0.009178893,-0.034377318,0.01416634,-0.014427529,-0.030919686,-0.007170233,0.042188082,-0.00040033282,-0.021989543,-0.0006362571,-0.022151232,0.06940138,-0.019327912,0.03611857,0.038382202,-0.026491927,0.008861736,-0.0057368083,-0.028929682,-0.007530921,-0.023432296,0.01195868,0.009185112,0.036093697,0.03693945,-0.008482392,0.004477509,0.030969435,0.016927471,0.04169058,0.016454846,-0.021342792,0.0047760094,0.017449846,0.002070848,-0.00024311474,0.04054633,-0.005923371,0.013333026,-0.016939908,0.012630306,0.002974123,0.010360458,0.032685816,0.010814427,-0.017064285,0.00683442,-0.0041572424,-0.011790773,-0.008382891,0.025136238,-0.011896492,0.012375337,0.0063991062,0.012530806,-0.011560679,-0.012400212,-0.03532257,-0.010777115,0.005354354,0.011535804,0.03723795,-0.015683718,-0.005699496,-0.014813092,0.011697492,0.006915264,0.019203538,-0.021006979,-0.00074780616,-0.01507428,0.005767902,-0.0034451943,0.006728701,-0.0119338045,0.02748693,-0.014427529,0.0011870062,-0.0010556349,-0.0011061623,-0.0042878366,0.005155354,-0.006296497,0.024501923,-0.0013704597,-0.032138564,0.06537163,-0.017810535,-0.014987217,-0.014278278,0.006053965,0.012244743,0.009247299,0.009035861,0.0005526925,-0.038009074,-0.008886611,-0.015235968,0.033183314,0.027113803,0.010913928,-0.021094041,-0.008358017,-0.0019184882,0.036516573,-0.010907709,-0.0018034411,-0.007325702,-0.0113678975,-0.004732478,-0.0025885599,0.00763664,0.021865169,-0.0011240413,0.003370569,-0.022524357,0.0019386992,0.0127982125,-0.02039754,0.0053636823,0.015633969,0.027362553,0.017512035,-0.0021765667,0.03221319,0.02350692,-0.026840178,0.044128336,-0.009085611,0.0037903355,0.022586545,-0.0007960016,-0.041267708,-0.019775664,0.0018531912,0.0031715687,-0.0063338093,0.030845061,-0.020322915,-0.013681277,0.023034295,0.0015492492,0.0019682383,0.035347443,-0.0063275904,-0.0382827,0.028208306,-0.011498491,-0.0003295944,-0.021827856,0.03671557,-0.02305917,-0.007661515,0.014514592,-0.023755671,0.0051024943,-0.010024644,0.01672847,0.015534468,-0.010478615,0.021790544,0.0040079923,-0.020260727,-0.043829836,0.0043438054,-0.037362322,0.032611188,-0.0029865606,0.0076490776,-0.0765654,-0.0023289265,-0.008606767,-0.006392888,0.007593109,0.0057305894,0.01894235,0.017748348,0.008351798,0.035496697,-0.033854943,0.007512265,-0.0073132645,-0.0044495245,-0.0043375865,0.0028295368,-0.011597992,-0.023283046,-0.003849414,-0.03783495,0.027511803,-0.0249248,0.010366676,-0.012033305,-0.010391552,-0.0030378653,-0.006486169,-0.0053978856,-0.021902481,0.00065802276,-0.0057243705,0.0010214318,-0.0245268,0.045595966,0.002251192,0.016753346,-0.016342908,0.0055036047,-0.0077299215,0.013780777,0.028282931,-0.008053297,0.026964553,-0.03211369,0.019427413,0.0028310914,0.0053170417,-0.00024700147,-0.0077547967,0.025459612,0.009209987,0.0071826703,-0.006386669,0.027263055,0.0010696271,0.013457402,0.029601308,-0.020708479,-0.007058295,0.00763664,0.013842965,0.021293042,-0.0054880576,-0.010578115,0.0022200982,0.024128798,0.027362553,-0.011747242,0.024501923,0.0010237638,-0.0109947715,-0.0061627934,0.008519704,0.01411659,-0.031516686,-0.01391759,-0.03470069,-0.0033519128,-0.02049704,-0.023444735,-0.016902596,0.008171454,-0.012935026,-0.016081719,0.03823295,-0.0042225397,0.012250962,0.014365341,0.0021967778,-0.01532303,0.030397309,-0.0063275904,-0.005923371,-0.02125573,0.04285971,0.009104268,0.018917475,0.04174033,0.04487459,0.026914803,0.0071018264,-0.0020506368,0.028009305,-0.0028621852,0.021516917,0.007418983,0.025994426,0.0062467465,0.017039409,-0.010310708,-0.015596656,0.005108713,0.035645947,-0.029551558,-0.038158324,-0.007698828,0.005015432,0.01985029,0.003678398,0.0139922155,-0.015012092,-0.015509593,0.019278163,-0.024700923,0.0031575765,-0.0061068246,0.022598982,0.018556787,0.014788217,0.016355345,0.01281065,-0.010497271,0.024228297,-0.00017237631,0.00026041066,-0.020608978,0.011025866,-0.0051677916,-0.023979547,-0.053033605,0.014303153,-0.037461825,0.002129926,0.016243408,0.0188926,0.02290992,-0.020521915,-0.005512933,0.012935026,-0.007114264,-0.02196467,-0.015347905,-0.01080199,0.017711034,-0.034327567,0.011641523,-0.042163208,0.008314485,0.020173665,0.033432066,-0.0114860535,-0.0053947764,0.01085174,0.015099155,-0.00042481918,0.028755557,-0.025994426,0.011896492,-0.010459959,-0.0039955545,-0.01844485,-0.0037312573,-0.011100491,-0.006567013,-0.013146464,0.024203423,0.035048943,0.039451826,-0.014701154,0.021591542,0.0066105444,-0.01758666,0.019626414,-0.033083815,0.013519589,-0.0127982125,-0.0017023862,0.031665936,-0.0026072161,0.001215768,0.038755327,0.0251238,-0.022723358,0.0023740125,0.015982218,-0.02818343,0.0065297005,0.023705922,-0.022847733,-0.032312687,0.0014178779,0.041317455,0.013855402,-0.012487275,-0.01537278,-0.029327683,0.023270609,-0.011498491,-0.006355575,0.008917705,0.0025559112,-0.032611188,-0.008445079,-0.011703711,-0.040969204,0.02310892,0.016939908,0.025297925,0.04636709,-0.012847963,-0.031790312,0.009321924,-0.012431306,-0.0020630744,-0.0188926,-0.041168205,0.011461179,0.016803095,-0.027760554,-0.01884285,0.020571666,0.028730681,0.007344358,0.009831863,0.019327912,0.03753645,-0.008351798,0.016716033,0.0034731787,0.0059016054,0.028108805,-0.013009651,0.018905038,0.03241219,-0.004461962,0.009384112,-0.03703895,0.021293042,0.0063617937,-0.007195108,-0.00638045,0.0047822283,0.003980008,0.049600847,-0.0032493032,0.011498491,-0.030621186,0.009900269,0.01727572,0.02295967,-0.0057212613,0.015161342,0.0061161527,-0.010882834,-0.013407651,-0.058108114,0.024153672,0.0060664024,-0.03783495,0.008650298,-0.0057150424,-0.010982335,0.028954556,0.00031929457,0.019576663,-0.008202547,0.0026756225,-0.062237374,-0.0057492456,0.0017070503,0.026268052,-0.024004422,0.002632091,-0.00005334532,0.04778497,0.027014304,-0.054327108,-0.009595551,-0.039650828,0.014974779,-0.05228735,0.0068095447,-0.013046963,-0.005873621,0.047262594,0.01366884,0.0052517448,0.0052921665,-0.041839834,0.00969505,0.0062032156,0.01517378,0.02547205,0.00492526,-0.0006603548,-0.03290969,0.0068406384,0.010117927,-0.029651059,0.021044292,-0.03295944,-0.014614091,-0.031516686,-0.0253228,0.018071722,-0.011112928,0.024278048,0.026566552,0.028282931,-0.030372435,-0.029004307,-0.002712935,-0.025198424,0.01552203,0.02376811,-0.032586314,-0.034750443,-0.0031187092,0.02009904,-0.027263055,-0.0041945553,0.012219868,-0.019153789,-0.0016153235,0.03457632,-0.0010634083,-0.0032617408,-0.011380335,0.03892945,-0.0370887,0.008214985,-0.021367667,-0.0072137644,0.00041160433,-0.028755557,-0.0045583528,-0.005603105,-0.009744801,0.026690928,-0.021094041,0.009110487,0.02300942,0.013009651,-0.008451298,0.012823088,0.0012437524,0.030994311,0.007798328,-0.04109358,0.024377547,0.023332795,0.031143561,0.04853122,-0.026442178,0.024427298,0.0055533545,-0.012350461,0.00552537,-0.008867955,0.014912592,-0.008625424,-0.0038929451,-0.022885045,0.0023242624,-0.0134698395,0.0023942236,-0.011915148,0.024713362,0.06850588,0.0033798972,-0.016653845,0.03176544,-0.023133796,0.033556443,0.059700117,0.017250847,-0.026193427,0.0006677396,0.019502038,0.008463736,-0.02014879,0.012984776,-0.003793445,0.007418983,0.031690814,-0.035546444,0.008426423,0.0049905567,0.05646636,0.008762236,0.0052517448,0.012592994,0.008320704,-0.028506806,-0.005195776,-0.016803095,-0.018245848,-0.011716148,-0.011529585,-0.051889353,0.02241242,-0.025434738,-0.031790312,0.0005352022,0.006915264,-0.044750214,0.02577055,0.0012390884,0.000036097972,-0.038257826,-0.021168666,0.0016324251]},{"id":"interface-APIEmbedField","type":"interface","source":"main","text":"Interface: APIEmbedField\nProperties: inline: boolean, name: string, value: string","meta":{"url":"/docs/typedefs/APIEmbedField"},"embedding":[-0.021145742,0.017305098,-0.028105523,0.023909675,0.003313388,-0.027350714,0.019958029,-0.020357635,-0.009351858,0.010828175,0.035387207,0.012631945,0.03414399,-0.008269595,-0.011433131,-0.0007010424,-0.016394889,0.036763623,0.023776473,0.02001353,0.013242452,-0.009313007,-0.015839882,0.017571501,-0.0015581804,-0.029104535,-0.007081881,0.0016178436,0.016761193,-0.001777408,0.0057887165,-0.022166954,0.06540195,0.00611062,-0.027350714,0.015184974,0.04773055,-0.008080893,-0.009934614,-0.018115409,-0.025485894,0.013353453,-0.016694592,0.025974298,-0.010961376,0.05812027,-0.01911442,0.03993826,0.017571501,0.010639472,-0.004675929,-0.017293999,-0.036186416,-0.031191358,-0.0090355035,0.030725153,-0.031102557,0.04186968,0.024109477,-0.012654145,0.017937806,-0.013364553,0.006632326,0.044045307,-0.05328061,0.012842848,-0.07206203,0.042424686,0.025330491,0.0055861394,0.061539106,-0.0003029988,-0.014074962,0.03558701,0.03207937,-0.009396258,0.0032051618,0.023021664,0.006460274,-0.008358396,-0.022721961,0.02870493,-0.05146019,-0.033833187,0.009634911,0.02690671,-0.035853412,-0.0016455939,-0.061450306,0.022067053,-0.06566835,-0.01911442,-0.041980684,-0.05505663,-0.002958184,0.005561164,-0.015151674,-0.005982969,-0.045910127,0.012276741,0.05754306,-0.024819884,-0.074504055,0.015051773,-0.017538201,-0.0056943656,0.0074426355,0.0011655134,-0.006349273,-0.03294518,-0.07556967,-0.009834713,-0.00036769174,0.03629742,0.004712004,-0.037829235,0.007464836,0.032589976,-0.0062882225,-0.01305375,0.0019258722,-0.026484905,0.025663495,-0.025019687,-0.024642283,0.010223217,-0.04084847,0.01217684,-0.08857902,-0.04870736,-0.01835961,0.008119743,-0.022144755,0.0142414635,-0.024220478,0.005994069,0.0013105088,0.049240164,-0.0076923883,-0.021678548,-0.02952634,-0.03578681,0.06251592,-0.011743935,-0.009490609,0.045643725,-0.0090965545,0.017993307,0.06855439,0.017837904,0.005899718,0.016905494,-0.033522386,0.0038073438,-0.040471066,-0.059674285,0.013286852,-0.013420055,0.016861094,-0.030547552,-0.0006091195,-0.018515013,-0.008358396,0.030192347,-0.03303398,0.05319181,0.012498744,-0.01922542,-0.03294518,0.02874933,-0.010112216,-0.030525351,-0.055145435,0.006698927,-0.017871205,-0.0017718578,0.04861856,-0.030614153,-0.023776473,0.037784833,0.014219264,0.054568227,-0.027239714,-0.019014519,0.05576704,0.02175625,-0.019769328,0.014252564,0.012321142,-0.00698198,-0.007958791,0.005064433,-0.004842431,-0.0077145887,-0.004614878,-0.005982969,0.013309053,0.02011343,-0.0005810223,-0.047641747,0.055012234,0.022200255,0.007420435,-0.0047536297,-0.011161178,-0.0030303348,-0.030369949,-0.03307838,-0.04710894,0.012332242,0.029703941,-0.004403976,0.004267999,-0.029215535,-0.0039793956,0.017693603,0.026551506,-0.009385158,0.010583972,-0.006443624,-0.034898803,0.027284114,0.06535755,-0.032523375,-0.008025392,0.022955064,-0.022455558,-0.015096174,-0.022411158,-0.033677787,-0.033522386,0.010284268,0.00866365,-0.03572021,0.0010933626,0.03674142,-0.034832202,0.035231806,-0.02515289,-0.010162167,-0.023421269,-0.005905268,-0.007420435,0.015950883,-0.02513069,0.0020077357,0.044000905,-0.021600848,0.010756023,0.009174256,-0.0006947986,0.025286091,-0.0026321178,0.0037157678,0.01913662,-0.036008812,-0.014174863,0.05141579,0.0054862383,0.018692615,-0.014296965,-0.01912552,-0.026618106,-0.02690671,0.024642283,-0.030702952,0.06895399,0.031524364,-0.0013202215,-0.029415337,0.05310301,0.025508093,-0.008358396,0.00062438217,0.007364935,-0.024642283,0.025286091,0.033322584,-0.04790815,0.05736546,-0.050172575,-0.033566784,-0.0031885116,0.0174605,-0.011621834,-0.029304337,-0.022477759,0.00003841685,0.025952099,0.026751308,0.04697574,0.046620537,0.08880102,-0.013619857,-0.0027223062,-0.012010338,0.013819659,-0.006787728,0.07219523,-0.021556448,0.02079054,-0.03398859,0.03321158,-0.0023643272,-0.0029165584,0.015817681,0.009185355,0.038650643,0.016805593,-0.04415631,-0.013697557,-0.0045177517,-0.03909465,-0.022411158,-0.050350178,0.020723939,0.043090694,0.007947692,-0.019447424,-0.023954075,0.01222124,0.048174553,-0.024997488,-0.08946703,-0.028571729,-0.059496682,-0.0021950502,0.022999464,0.015295976,0.0034438146,0.013420055,-0.008613699,-0.030591952,0.0021284495,0.04777495,-0.040337864,-0.014896371,0.015595679,-0.014063861,0.03387759,0.025707895,-0.006626776,0.01045632,0.049506567,-0.0087025,-0.027594917,-0.010722723,0.027950121,-0.012887248,-0.002654318,0.0049978322,0.009313007,-0.04959537,-0.027039912,-0.024620082,-0.044822317,0.028238725,-0.06846559,-0.04151448,-0.00052899047,-0.02002463,0.02692891,0.015473578,0.03845084,-0.0435791,-0.01908112,-0.0067211273,0.011138978,-0.00043498626,-0.014607768,0.015573479,-0.0070041805,0.01990253,0.028949132,0.004767505,0.009890214,-0.008313996,-0.021900551,0.0056249895,-0.048352156,0.03045875,0.0067211273,-0.013275753,-0.035054203,-0.031857368,0.00052413414,-0.023221467,0.023110466,-0.031701963,0.031035956,0.014185963,0.002780582,-0.035298407,-0.043357097,0.075747274,-0.008819051,-0.006626776,0.017882306,0.0051948596,-0.024953086,0.008091993,-0.06291553,0.0060995203,0.009634911,0.007881091,-0.024953086,0.006843229,-0.030059146,0.0782781,0.0060717696,-0.013542156,-0.035831213,0.03667482,0.04613213,0.0076868385,-0.007309434,-0.00045441146,-0.060251493,0.032745376,-0.0010142742,-0.02259986,-0.02515289,-0.00038711695,-0.004195848,0.03192397,-0.016006384,0.028949132,-0.0024115026,-0.043734502,-0.032634374,-0.04182528,0.03392199,0.034410395,0.0024961412,0.0022602635,-0.011399831,0.047641747,-0.015939783,-0.012820647,0.027950121,-0.046576135,-0.0002731672,0.003307838,0.0130981505,-0.028549528,-0.0004655116,-0.034965403,-0.015895383,-0.041336875,-0.052215,-0.020379834,0.019724926,0.0074703856,0.03651942,0.055500638,0.042158283,0.035165206,-0.00080684054,0.008996653,0.048130155,-0.00016901678,-0.020479735,0.012765147,0.06775518,0.020368734,0.007220633,0.009240856,0.011144528,0.018836917,-0.0011918762,-0.018037707,-0.009079904,0.021134643,0.008508247,-0.019325322,-0.010528471,-0.009091005,-0.04870736,-0.018936818,-0.07241723,0.010151067,-0.0031829616,-0.026196301,-0.041536678,0.01041747,0.096171506,0.05319181,0.018803617,-0.010739373,-0.036919024,0.043334898,-0.01393066,0.03141336,-0.009174256,0.011072378,-0.02348787,-0.050350178,-0.007475936,0.032589976,-0.016805593,0.044422712,-0.02351007,0.005464038,0.011988138,0.054168623,0.017194098,0.008469397,-0.04422291,-0.093862675,-0.00240179,-0.013653157,-0.02963734,-0.025441492,-0.010817074,-0.0043901005,0.017849006,-0.017593702,0.04428951,-0.020701738,0.0035131904,0.027506117,0.002691781,0.030813955,-0.017260699,0.005225385,-0.018981218,-0.040426664,-0.00955721,0.00096640486,-0.00784224,-0.031679764,-0.011477532,-0.0063714734,0.03134676,-0.02868273,0.020679537,-0.014585568,0.032834176,0.013864059,-0.007109632,-0.03050315,0.012865048,0.0147520695,0.011422032,-0.0350098,0.032612175,-0.036275215,-0.025974298,0.014119362,0.05665505,-0.0052475855,-0.009684862,0.02080164,-0.034543596,0.026817909,0.055456236,0.02344347,0.01476317,0.0021145742,-0.01221014,-0.0078921905,-0.056122243,0.03565361,-0.011066827,-0.00565829,0.00780339,0.019058919,-0.0056888154,0.04539952,0.0012903898,-0.04626533,0.022522159,0.0002599858,0.075747274,-0.014962972,-0.0074592857,-0.009473959,0.012665246,0.0031940618,-0.009718162,0.018048808,0.00477583,-0.021378845,0.027661517,0.037118826,-0.011089028,0.026329502,-0.013242452,-0.0032273622,0.019303123,0.018503912,0.000093917486,0.0031191357,0.0071484824,0.017027596,-0.019525124,0.03814004,0.02351007,-0.01481867,0.0034216144,0.026640305,-0.0016955445,0.017194098,-0.0031940618,0.053502616,0.03838424,0.030547552,-0.01993583,0.004165323,-0.00304421,-0.012920548,-0.002052136,-0.007548087,-0.03931665,-0.0017926706,-0.017516002,-0.007647988,0.024131678,-0.014740969,-0.0070319306,-0.023687672,0.014851971,-0.021911653,0.0066489764,-0.037673835,-0.005214285,0.017271798,-0.02959294,0.04424511,0.018803617,0.023843074,0.0062937723,-0.022388957,-0.0138529595,0.016394889,-0.018126508,0.0046537286,0.047242142,-0.009296357,-0.03742963,0.018737016,-0.015462478,0.039671857,0.03034775,0.0173828,-0.037007824,0.017160797,0.016228387,0.0073427344,0.027128711,-0.0099956645,-0.007992092,-0.0045899027,-0.008308445,0.0061328206,-0.014507866,-0.011377631,0.024930887,-0.0041403477,-0.010805974,0.009140955,0.0072872336,-0.010195468,-0.045443922,-0.020746138,0.0121990405,-0.008147494,-0.04697574,-0.012509843,0.006771078,0.008613699,-0.004376225,-0.022799661,-0.007886641,0.0076313377,-0.049861774,0.018836917,0.017127497,-0.007992092,0.03649722,-0.051770996,0.008319546,-0.03665262,-0.044800114,-0.020402035,-0.017593702,-0.014863071,0.010867025,-0.0061272704,-0.012809548,-0.0057887165,0.022244656,0.008491597,-0.01649479,-0.023643272,0.052747805,-0.000063175336,-0.0139972605,0.022055954,-0.02170075,0.022710862,-0.01818201,-0.035254005,-0.0047314293,-0.024198279,0.012532044,0.030103546,0.019058919,0.04009366,-0.013386754,-0.038983647,0.032745376,-0.015451377,0.0068931794,-0.0032717625,0.0028999082,-0.015862083,0.024775485,0.015451377,0.039449852,0.02183395,-0.03043655,-0.014008361,0.02175625,0.011566333,0.013764158,-0.0021575873,0.05328061,-0.010595072,-0.0056111147,-0.027128711,-0.035076402,-0.00697088,0.012476543,0.015473578,0.06287112,-0.008391696,-0.02089044,-0.008502698,0.0149962725,0.022710862,0.03751843,0.07055241,0.006643426,-0.004523302,0.004784155,-0.021567548,0.02442028,0.0011800823,-0.0120769385,0.015096174,0.004889606,-0.019891428,0.02430928,-0.02173405,-0.021212343,0.037474032,-0.032678775,-0.028838132,0.013131451,0.017516002,0.031635363,-0.014430166,0.0061161704,0.005464038,-0.04093727,0.018881317,-0.0019036719,0.024287079,0.05754306,-0.022888463,-0.021301145,-0.006360373,-0.0173828,0.053547017,-0.027350714,-0.032101568,-0.018015508,-0.033699986,0.005555614,-0.043357097,-0.00696533,-0.032634374,-0.037052225,0.010756023,-0.008058692,-0.005328061,-0.0174383,0.019769328,-0.022566559,-0.04861856,-0.015329276,-0.0059496686,-0.041225873,0.04440051,0.023021664,-0.01990253,-0.047419745,-0.005755416,0.016783392,0.010639472,-0.0019355847,-0.0174383,0.03916125,0.014596668,-0.024176078,-0.025707895,0.0049145813,0.038539644,0.011100127,-0.030813955,-0.019991329,-0.030081347,0.051637795,-0.007564737,0.05310301,-0.0011447007,0.0005550064,0.047552947,0.017971106,0.041492276,-0.023843074,0.02435368,-0.005910818,0.029082334,0.016239487,-0.004989507,0.014585568,-0.0064824745,0.004165323,-0.003391089,0.05052778,-0.0037740434,-0.0054612625,-0.017638102,-0.033344783,0.02273306,0.009168705,-0.016006384,0.0014194289,0.0350098,-0.018082108,0.041381277,0.009313007,0.007570287,-0.02868273,-0.009701512,-0.004795255,0.0021825626,0.044111907,0.004459476,0.021667449,-0.0017357825,-0.03398859,0.021978253,-0.016872194,-0.05314741,-0.014474566,0.018548314,-0.013686458,0.0056222146,0.058653075,-0.023399068,0.026307302,0.011177829,-0.024531282,-0.044977717,0.028727131,-0.004587128,0.018781416,0.018703716,-0.019813728,0.032567773,0.016128486,-0.045443922,-0.0008193282,0.02090154,0.01900342,0.0077256886,0.024065077,0.035276204,-0.017482702,0.013719758,-0.03851744,0.0062382715,-0.020413134,-0.005316961,0.048130155,-0.0042208233,0.012110239,0.02263316,0.034965403,0.009929064,-0.0036158666,-0.0011523319,0.0043706754,0.0015401427,0.009296357,-0.0059496686,-0.0052697854,-0.022144755,-0.005408537,-0.00784224,-0.016128486,0.014230364,-0.0035076402,0.03929445,-0.025019687,-0.021478746,-0.02430928,0.002086824,-0.004603778,-0.020213332,0.020635137,-0.04275769,0.007392685,0.01040082,0.018004406,0.028172124,-0.010012315,-0.0695756,0.018981218,-0.0087080505,0.010572871,-0.021134643,-0.007992092,-0.015939783,-0.038983647,-0.0031829616,-0.017915606,-0.023687672,0.003210712,-0.026329502,0.024975287,0.0047480795,-0.043290496,-0.01657249,0.03911685,-0.031058157,-0.024398081,-0.031879567,-0.015462478,0.023887474,-0.03816224,0.029370937,-0.022522159,-0.029104535,-0.010295369,0.0105451215,-0.046798136,-0.0065657254,0.0028444077,0.031058157,-0.014896371,-0.0114442315,-0.0064991247,0.028549528,-0.02692891,0.010556221,0.022155855,-0.017971106,0.011194479,-0.04508872,-0.018104307,0.028061122,0.01388626,-0.009884664,-0.015784381,0.030747354,0.012332242,-0.022910664,-0.016949894,0.03378879,0.0003833013,0.030591952,0.01564008,-0.024287079,-0.0048923814,-0.0019716602,0.017105296,-0.017904505,0.012543144,0.0017371699,0.00960716,0.008547098,-0.0035409406,-0.015451377,0.0086914,0.069042794,-0.0023060516,-0.022011554,0.009951265,0.02870493,0.00782559,0.014663269,0.0021423246,-0.017760204,-0.012232341,-0.0036075416,0.009396258,-0.036630422,-0.006343723,-0.064069934,0.027705919,-0.0043179495,-0.02003573,0.02519729,-0.005916368,0.0070763314,0.0031274608,0.0077867396,0.017793505,0.045643725,-0.04100387,0.026418304,0.01305375,0.015451377,0.03749623,0.011999238,-0.00780339,0.022355657,-0.023621071,-0.0061994214,0.013486655,0.020668438,0.007653538,0.015284875,0.014030561,0.050794184,0.007570287,-0.021256745,0.051637795,0.018870218,0.029814942,-0.016061885,0.009862463,-0.01218794,-0.011599633,0.021190144,0.022233555,0.00049430254,-0.018026607,-0.027306315,0.02684011,0.014252564,-0.017638102,0.010289818,-0.009207556,0.0109946765,-0.0077256886,0.008325095,0.0053447112,-0.0008998041,0.011510832,0.0086581,-0.014308064,-0.0042985245,0.025552494,-0.018670416,0.03372219,0.008652549,-0.017627003,0.005480688,0.010478521,0.024708884,0.026285103,0.011921537,0.013297953,0.0029026833,-0.0031579863,0.0066600763,-0.029326538,0.063137524,-0.021911653,0.0037768185,0.004001596,-0.019092219,-0.032323573,-0.015928684,0.026751308,0.012476543,-0.0045538275,0.0097903125,0.03143556,0.00039891084,0.030081347,-0.00303311,-0.007997642,0.048174553,0.0005223997,-0.028083323,0.02430928,-0.012509843,-0.0059885187,-0.025974298,0.01829301,0.029970344,0.028438527,0.04102607,-0.045554925,0.007070781,-0.018004406,-0.006365923,0.0260631,-0.004598228,0.013986161,-0.012476543,-0.02690671,-0.02781692,0.008580399,-0.06331513,0.04697574,-0.006704477,0.021911653,-0.03219037,-0.0031163609,-0.0011370693,-0.011677334,-0.0065823756,-0.00873025,0.028238725,-0.02261096,0.0148741705,0.012387742,-0.017149698,0.010606172,0.0027958446,0.012565345,0.0013223027,0.01391956,-0.010228768,0.024930887,0.00037081365,-0.03838424,0.037074424,-0.034343794,0.017449401,0.024864286,0.024597883,0.006870979,-0.00782559,-0.0033466886,-0.018581614,-0.008042042,-0.028616128,-0.021001441,-0.035032004,0.043956507,0.022311257,0.005855317,-0.012964949,0.01914772,-0.016405988,0.049950574,0.011533032,0.011799436,0.012143539,-0.0044178506,-0.004795255,0.007364935,-0.01990253,-0.0037490681,-0.0052864356,0.0435791,-0.0037213177,0.02259986,0.0015609554,0.008846802,-0.02258876,-0.0014582792,0.023177067,-0.022344558,-0.0038017938,0.0085859485,0.004251349,0.00016893007,0.0006628857,-0.022932863,0.0020313233,0.028371926,0.048174553,-0.0260187,-0.0013875159,-0.011610733,0.008608149,0.008252945,0.014130462,-0.0081974445,-0.0128539475,0.013209152,-0.036341816,0.018725915,-0.027483916,-0.041936282,-0.007154032,0.02430928,-0.04515532,0.0040404466,0.019691626,-0.00055327197,-0.0027514442,0.013864059,0.001169676,0.005047783,0.007620238,-0.022366757,-0.011943737,-0.0063104224,0.045133118,-0.023865275,0.0007492586,0.043334898,0.082451746,0.017749105,-0.0040404466,0.00047140854,0.02442028,0.043956507,0.0047175544,0.013597656,0.012387742,0.0052836607,0.01213244,-0.0038545192,-0.025707895,0.0010496558,-0.009640461,-0.011183378,-0.016195087,-0.023621071,0.0044872267,-0.0073760347,0.029881543,0.002312989,-0.031080358,-0.0011752261,0.01650589,0.022266855,0.0046648285,0.007420435,0.00020344452,0.025596894,0.012565345,0.035831213,-0.0032523375,-0.011266629,-0.009840263,0.0032384621,-0.008541549,-0.03212377,-0.015173875,0.024664484,-0.023976276,-0.031146958,0.018803617,0.015307076,-0.001866209,-0.0010052553,0.038539644,0.007980992,-0.027639318,-0.027417315,-0.021711849,0.01478537,-0.016983194,0.008352846,0.00082140946,-0.018725915,-0.036119815,-0.004082072,0.0026446055,0.019092219,0.011138978,0.024020676,-0.013209152,0.012742947,0.025774496,0.016050784,0.007492586,-0.033389185,-0.005994069,0.034343794,-0.015973084,0.017804604,-0.01660579,-0.0035964414,0.008042042,0.009634911,-0.004184748,0.012376642,0.040382262,0.0610063,-0.011033527,0.026396103,0.02266646,-0.010090016,0.01562898,-0.03219037,-0.023709873,0.015995285,-0.013420055,0.018814716,-0.022821862,-0.0014943547,0.05137139,0.037141025,-0.011644034,-0.0007111019,-0.0013361778,-0.022022653,-0.010139966,0.012365542,-0.024797685,-0.008469397,0.011127878,0.006599026,-0.010051166,0.020402035,-0.0069375797,-0.030836154,-0.0018759215,0.004240249,-0.004906256,0.030702952,0.002829145,-0.017338399,-0.002485041,-0.004761955,-0.021278944,0.010156617,0.0108115245,0.004698129,0.0173717,-0.026396103,-0.036275215,0.017194098,-0.021423247,0.002269976,-0.020468635,-0.03216817,-0.00062472903,-0.014296965,-0.018481713,-0.03920565,0.03398859,0.05763186,0.00059142866,-0.004623203,0.0009095167,0.0260187,-0.018925717,0.011150078,0.008241844,-0.028416326,0.023598872,-0.023998477,-0.0014999048,0.010356419,-0.019458523,0.009468409,-0.04238029,-0.009407358,0.011188929,-0.004625978,-0.0053696865,0.008302895,-0.0006216071,0.02783912,0.0014027787,-0.0068654288,-0.044911116,0.011943737,-0.0016664066,0.004867406,0.017005395,-0.0051393593,0.0013188339,-0.0173828,0.019203221,-0.05394662,0.03223477,-0.006704477,-0.010184367,-0.002713981,0.0039488706,-0.023110466,0.019747127,-0.016727893,0.022033753,-0.006854329,0.02515289,-0.022477759,-0.005064433,-0.014130462,0.03807344,-0.013431154,0.00961271,-0.0002138509,0.03920565,0.006526875,-0.021323346,-0.025441492,-0.04768615,-0.008202994,-0.0029443088,-0.011150078,-0.032323573,-0.0016192311,0.05026138,0.013109251,0.016738992,0.023154866,-0.016195087,0.015873183,0.0069209295,0.03734083,0.02172295,0.0036658172,-0.01047297,-0.031635363,-0.003130236,0.027328514,-0.016672391,0.026595905,-0.036386218,-0.004087622,-0.026262902,0.0038905947,-0.0018828592,0.01912552,0.027306315,0.013075951,0.019802628,-0.015240476,-0.0133423535,0.0060162693,-0.02177845,0.0076923883,0.014507866,-0.009018853,-0.025086287,-0.006887629,0.001155107,-0.023776473,0.006277122,-0.02697331,-0.009007754,0.01827081,0.02877153,0.004148673,-0.012409942,-0.015906483,0.0016983196,-0.022977265,0.0077867396,-0.005916368,-0.0030081347,-0.005921918,-0.0105451215,-0.010145517,0.012498744,-0.0021908877,-0.007109632,-0.00076244003,0.02513069,0.0434459,-0.012276741,-0.019303123,0.014918571,-0.024020676,0.0009719549,0.021312244,-0.05026138,0.02089044,0.041447878,0.05119379,0.06504675,0.005289211,0.019613925,0.013442255,-0.02945974,0.015329276,-0.006815478,0.011921537,0.001395841,-0.001048962,-0.015839882,-0.019613925,0.00021541186,-0.003041435,-0.0080753425,0.014119362,0.051504593,0.029171135,0.008408346,0.0025724545,0.00393777,0.0435125,0.05567824,0.028172124,-0.03749623,-0.04289089,0.00432905,0.035387207,0.018792516,0.022178056,-0.020668438,0.011172279,0.004065422,-0.03665262,0.016794493,-0.0007860278,0.06491355,0.010173267,0.0021922751,0.023643272,0.020812739,-0.014419066,0.02426488,-0.020168932,0.013198052,-0.012321142,0.008302895,-0.055456236,-0.0059885187,-0.015551278,-0.009712611,0.016639091,-0.015529078,-0.051770996,0.037030026,0.03234577,0.022222456,-0.012931649,-0.0022463882,0.012820647]},{"id":"interface-APIEmbedFooter","type":"interface","source":"main","text":"Interface: APIEmbedFooter\nProperties: icon_url: string, proxy_icon_url: string, text: string","meta":{"url":"/docs/typedefs/APIEmbedFooter"},"embedding":[-0.019553674,-0.016019223,0.0059487545,0.010287974,0.017607007,-0.030102655,0.0599008,-0.015747342,0.039324854,0.015442836,-0.0038498337,-0.02575256,0.005538214,-0.062858865,0.026296321,-0.024077773,-0.027231593,-0.0003847115,-0.003020597,0.034213495,0.023773268,0.008439183,-0.0041924035,0.048938565,0.023381758,0.039585862,-0.0027011367,-0.012158514,0.024752038,0.012919781,0.04223942,-0.037563067,0.06477291,0.010233598,0.0018963694,-0.010298849,0.034431,0.026644329,0.014648943,-0.027318595,0.008667563,-0.006155384,0.011440748,0.0368018,-0.040129624,0.025143547,0.010842611,0.048634056,0.04323994,0.04828605,-0.0015374866,-0.006041194,-0.01538846,0.012473896,-0.05485469,0.025491554,-0.04885156,0.01842265,-0.035127014,0.0011514156,0.034148242,0.021587344,-0.021511218,-0.008673001,-0.02483904,0.0206847,-0.03347398,0.023033751,-0.028210364,-0.037410814,0.07686617,-0.0023993491,-0.014398813,0.011973635,-0.024208276,0.0035262955,0.0001721346,-0.0050352346,-0.003047785,-0.06303287,0.0047334465,0.003915085,-0.028732374,-0.05381067,0.014257435,0.010010655,-0.037606567,0.01566034,-0.0642944,-0.0131046595,-0.027818855,-0.043805454,-0.062684864,-0.04276143,-0.029058632,0.008634938,-0.006280449,-0.0131046595,-0.021000082,0.0070689037,0.07556114,-0.04911257,-0.08025925,-0.006867712,0.008575124,-0.012582649,0.0059215664,-0.03395249,-0.017791888,-0.0054321806,-0.057682253,-0.0052908026,-0.005413149,0.031081425,0.024447532,-0.021543844,0.013681048,0.003020597,0.011680004,-0.051548623,-0.016987119,-0.04332694,0.027383845,0.02988515,-0.0252523,0.00963546,-0.053288657,0.0034501688,-0.0829128,-0.068209484,0.00053900393,-0.0021179523,-0.03714981,0.008167302,0.0062206355,0.016291104,-0.0010079985,0.036127534,-0.05150512,0.017226374,-0.010396726,-0.020695575,0.013126411,-0.023207754,-0.040173125,0.0184444,-0.00895032,0.0006294043,-0.015769092,0.022294234,0.023381758,0.022576991,-0.040368877,0.0013342556,-0.035235766,-0.029624144,0.017433004,-0.033691484,0.032429956,-0.033669733,-0.025513304,-0.026861833,-0.01239777,0.031429432,-0.040129624,0.030450663,0.026339823,-0.020989206,-0.05020009,0.0109513635,0.0076398537,-0.027470848,-0.027818855,-0.014594567,0.008923132,0.020989206,0.026144069,-0.0017509131,-0.0019480267,0.022642242,0.029667646,0.030102655,0.026231071,-0.042522173,-0.011462499,0.009559333,0.0010861643,0.013180787,0.033778485,0.020673824,-0.015334084,0.0082434295,-0.010075906,-0.006807898,-0.0028737811,0.02851487,0.008830692,-0.018585779,-0.0149752,-0.02710109,0.0016340043,0.03034191,0.03449625,0.02093483,-0.007922609,-0.0066828327,-0.025970064,-0.030189656,-0.0017250844,0.049069066,0.04689402,-0.033669733,-0.0048530744,-0.03179919,-0.026644329,-0.019423172,0.04004262,0.016432483,-0.004004806,0.011310246,0.0034501688,0.05006959,0.068644494,-0.05598572,0.039672863,0.027840605,-0.039281353,0.036649548,-0.057595253,0.026405074,-0.017161123,0.04911257,-0.0101357205,-0.006867712,-0.0028737811,-0.00931464,-0.019825555,-0.021891851,0.017226374,-0.0392161,-0.0207717,-0.012898031,-0.033343475,-0.0017617883,-0.027492598,-0.0029091258,0.013050284,0.0010052797,0.0035833905,0.033691484,0.044436216,-0.003689424,0.011440748,-0.009330953,0.03767182,-0.015508087,-0.034518,0.019553674,0.026535576,-0.019390546,0.029210886,-0.018955538,-0.006497954,0.014616318,0.07155906,-0.026274571,0.00085574517,0.041282397,-0.024882542,-0.029297886,0.063206874,-0.017269876,0.017520007,0.035562024,-0.01561684,0.01769401,-0.024099523,0.009434268,-0.06546892,0.00321907,0.0036839864,-0.047720537,-0.02847137,0.03040716,-0.043087687,-0.027862355,-0.017596133,0.027296843,0.052636143,0.009504957,0.02253349,0.020304067,0.07590915,-0.027449097,-0.0023775985,0.006394639,0.033299975,-0.015442836,0.03860709,-0.019205667,0.01771576,-0.032321204,-0.026144069,-0.04228292,-0.0027976546,0.013876801,0.045588993,0.04841655,0.012136764,-0.046198003,-0.005214676,-0.030124405,-0.045371488,-0.00700909,-0.006737209,0.021228462,0.06246736,-0.0030940047,-0.027253343,-0.024317028,0.0040510255,0.0004876864,-0.011538626,-0.036606047,0.0064218272,-0.043370444,0.007618103,0.059291787,0.0069438387,0.031581685,0.032930218,-0.009613709,0.03821558,0.0064218272,0.023425259,0.009695273,-0.03860709,-0.0032707273,-0.00096585695,0.053636666,-0.0068894625,-0.036823552,0.016704364,-0.010722984,0.01960805,-0.03858534,-0.043979455,-0.0015714717,-0.011854008,-0.00963546,-0.031864442,0.022185482,-0.01678049,-0.027492598,-0.018477026,-0.038889844,0.012550022,-0.04928657,-0.09291802,0.017171998,-0.03177744,0.021271963,-0.0051766126,-0.01977118,-0.034061242,-0.0367148,-0.016465109,0.022044104,0.034322247,-0.008939444,0.02997215,0.0368888,0.021717846,0.03308247,-0.020293191,0.04419696,0.011038365,-0.023077251,-0.038454834,-0.04545849,0.038911596,-0.009162387,-0.048503555,-0.010614231,0.02842787,-0.026644329,0.0066937082,-0.009265701,-0.01605185,0.03773707,0.0150078265,0.000052634445,-0.015932221,-0.038889844,0.090742975,0.012908906,-0.001189479,-0.0021016395,0.0038933347,0.0019548237,0.0074277865,-0.007792107,0.015366709,0.009184137,-0.041760907,-0.021772223,0.0063293874,-0.0050488287,0.034365747,-0.010603355,0.0137898,-0.04402296,0.042391673,0.025687309,-0.011941009,0.023099001,0.012452146,-0.07773619,0.009983467,0.046111003,0.0004883661,0.025643807,-0.030494163,-0.015627716,0.020902205,-0.02438228,0.015736466,0.0018025704,-0.07921522,-0.0459805,-0.004483316,-0.0031456621,0.05093961,0.04741603,-0.012376019,0.0013696001,0.024556285,-0.023882018,0.005992255,0.043783702,-0.038389586,-0.0053669293,0.00105014,-0.03636679,-0.032799713,-0.023273006,0.015964847,-0.020391067,-0.032386456,-0.005627935,-0.056246724,0.00045132232,-0.0037791447,0.086262375,0.03641029,0.01333304,0.012919781,0.011941009,0.017476505,-0.023838518,0.054463185,0.010271661,-0.0051195174,0.04367495,0.015953971,-0.02436053,-0.017259,0.05650773,0.022446489,-0.008395683,0.00025624776,0.010978552,0.00666652,0.0020010434,-0.028993381,-0.044414464,0.013626671,-0.052766647,-0.030646417,0.0036377667,-0.0014450471,-0.011386372,-0.030494163,-0.04367495,-0.0059596295,0.093005024,0.031124927,0.010309724,0.0049373573,-0.025078295,0.020206189,0.007563727,0.010103094,-0.008624063,-0.03819383,-0.024164775,-0.032799713,-0.025382802,-0.006155384,-0.002846593,0.031342432,-0.028710624,-0.03234295,0.008934007,0.06764397,-0.022207232,-0.029776398,-0.024534533,-0.08517485,-0.010831735,0.028841127,-0.024991294,-0.0029036882,0.0003395113,-0.0097714,0.062380355,-0.04876456,0.0504611,-0.025643807,-0.031364184,-0.00264812,0.010054156,0.034256995,-0.0028003734,0.020336693,0.0035235765,-0.073386095,-0.057290744,0.007879109,0.000559395,-0.003988493,-0.026426824,-0.021130584,-0.010065031,-0.0079824235,0.010217285,-0.0299069,-0.013855051,0.025839562,-0.047155026,0.011011177,0.021761348,-0.006639332,0.0058726277,-0.05433268,0.016443357,-0.026622579,0.01906429,0.0013505684,0.017443879,-0.009075385,-0.007862796,0.04454497,-0.011538626,0.012049762,0.014344437,0.035605524,0.0020350285,-0.016704364,0.0052636145,-0.0052228323,-0.024643285,-0.00022311228,0.037476066,-0.023120753,0.059509292,0.007552852,0.017052371,0.028667124,-0.006133633,-0.0052201133,0.010119407,-0.0062913243,0.06538192,-0.012745777,0.036693048,-0.011157992,-0.0137898,0.015094828,0.013539669,-0.017737512,-0.0004118996,-0.0008938085,0.025078295,0.0039776177,-0.0030287534,0.029102134,0.018640155,0.018694531,0.03082042,0.013452668,0.022750994,-0.0023694423,0.0023667233,-0.011527751,-0.012756652,0.058726277,-0.009613709,0.019966934,0.022598742,0.014833823,-0.014300936,-0.0038389585,-0.005954192,0.03036366,0.03221245,0.006443578,-0.021706972,-0.017574383,0.034278747,-0.019205667,0.006394639,-0.008803504,-0.029624144,-0.021772223,-0.003800895,-0.011179743,0.026361573,-0.046502512,-0.02344701,-0.023360008,0.0025448054,-0.007193969,0.00010747792,-0.040890887,-0.0066937082,-0.0074712876,-0.017422128,0.009613709,-0.004328344,0.04458847,0.027840605,-0.033756733,-0.017302502,0.032429956,0.014203059,0.0012594883,0.030646417,-0.020565072,-0.0034556063,0.017259,-0.001716928,0.014822947,0.0029281573,0.010451103,0.017759262,-0.017443879,0.021348089,-0.0112232445,0.040651634,0.008140114,-0.0017563507,0.004529536,0.025382802,0.027514348,0.0050760168,-0.00534246,0.04506698,-0.029254386,0.008129239,-0.019575426,0.01910779,0.0035127015,-0.023751516,-0.020195315,0.0077268556,-0.0031266306,-0.0065033915,-0.030994425,0.0074386615,-0.028232114,0.01748738,0.010059594,0.022424737,0.013322164,-0.029319638,0.023186004,-0.046633013,-0.0072592204,0.043957707,-0.06342438,-0.0011949167,-0.023055501,-0.053158157,-0.008498997,-0.0598573,0.01842265,0.01746563,0.0058019385,0.0104076015,-0.0061281957,0.04867756,0.033408727,-0.02442578,0.008656688,0.04872106,-0.007552852,-0.021511218,0.022337737,-0.015605965,0.01746563,-0.0027636695,-0.020782577,-0.0019684178,-0.02714459,0.0063728886,-0.015518962,-0.009374454,0.0015007827,0.00758004,-0.046241507,0.011397248,-0.0074984757,-0.0020391068,0.012789278,0.017791888,0.006394639,-0.013072034,0.017084997,-0.020238815,0.01422481,-0.01216939,-0.02807986,0.05006959,-0.0031538187,0.020130062,-0.008819817,0.034713756,0.008221678,-0.009445143,-0.005285365,-0.009243951,-0.012441271,0.009102573,-0.010304286,0.031603437,0.008852443,-0.013942054,-0.0058019385,0.006998215,-0.014387938,0.021043582,0.023403509,0.011277621,-0.014931699,0.0042359047,-0.0035725152,0.0031646937,0.019705929,-0.022903249,-0.00235177,0.0045213797,-0.0252958,0.032125447,-0.0005529378,0.01495345,0.02897163,-0.030233158,-0.015257956,0.001362803,0.005483838,0.031103177,0.0048857,0.014007305,-0.034626752,-0.009961717,-0.020336693,0.009167824,0.01680224,0.030450663,0.010097657,0.00021478592,-0.00006771534,-0.01239777,0.04406646,-0.0437402,-0.011941009,-0.019901684,-0.030689918,0.0019317139,0.021097958,0.00018844746,-0.0120280115,0.01796589,0.026339823,-0.032277703,0.003292478,0.0070580286,0.021456841,-0.03910735,-0.027296843,-0.009918216,-0.0010399445,-0.040281877,0.010875236,0.053158157,0.00012540507,-0.053158157,-0.03495301,0.038998596,0.030450663,-0.020619448,0.0023340976,0.009113448,-0.004083651,-0.009396205,0.0026956992,-0.0218701,0.03540977,-0.003363167,-0.014909949,0.04750303,-0.024730287,0.038911596,0.021978853,0.07499563,0.0017577101,0.0008278774,0.021413341,0.016965369,0.018999038,-0.009923654,-0.015649466,-0.002732403,-0.019738555,0.041565154,-0.019357922,-0.008324994,0.012104138,-0.0019548237,0.006699146,0.06490341,0.021913601,-0.008955757,-0.0065577677,-0.047068022,0.015834345,0.013594045,-0.006878587,-0.01883591,0.027971108,-0.020358443,0.016997995,0.018194271,0.0025448054,-0.03906385,0.013006783,0.0024822727,-0.025013044,0.0018895724,0.032843214,-0.0093200775,0.0037220498,-0.013931178,-0.0030097216,-0.030037403,-0.037062805,-0.017781012,0.015192705,-0.019510174,-0.0029607832,0.025904814,-0.014453189,-0.02718809,-0.001056937,-0.017204624,0.00881438,0.02799286,0.012234641,0.03499651,0.039716363,0.015692966,-0.0076126656,-0.008276055,-0.02164172,0.06416389,-0.004641007,0.03954236,-0.010271661,0.01915129,0.03825908,-0.014855573,0.000057562287,-0.01887941,0.018226895,0.030472413,-0.006405514,0.058117263,-0.011201493,0.027014088,0.016378107,-0.0006239667,0.017150247,0.03817208,0.013159036,0.039346606,-0.024882542,0.013952929,0.004070057,0.002207673,-0.018846786,-0.0043881577,-0.012669651,-0.011930134,0.009445143,-0.007264658,0.019640677,-0.018477026,-0.02136984,0.007025403,0.02089133,-0.018281272,-0.0070417156,0.051157113,-0.0045675994,0.01960805,0.01794414,0.007308159,0.024491033,0.005100486,-0.023425259,-0.003433856,-0.023316506,-0.014137807,-0.011658253,-0.013952929,-0.004548568,0.0046355696,0.00004919345,-0.015344959,-0.013963804,0.0075963526,-0.014137807,0.010440227,-0.004586631,-0.08708889,-0.014311811,0.0077757942,-0.010918737,-0.0031375056,-0.02673133,0.00023976498,0.0075147883,-0.041043144,0.030211408,-0.022598742,-0.053071152,0.02136984,-0.01929267,-0.06999302,-0.0021451404,0.0038117704,0.019879932,-0.025208797,-0.013865926,0.020923955,0.07303809,-0.0013328962,0.03493126,0.020108312,-0.059465792,-0.0018542279,-0.057769258,-0.025339302,0.017248126,0.03321297,0.011168868,0.013550545,0.04426221,0.020619448,-0.024034273,0.031472933,0.022381237,0.0018691813,-0.0038824594,0.034061242,-0.011571252,-0.00062022835,0.026818333,-0.017128497,-0.0075419764,0.05089611,-0.0106740445,0.007253783,-0.013463543,-0.0041842475,-0.015464586,0.01262615,0.024295278,-0.027927607,-0.002920001,-0.014148682,0.040716887,0.02440403,0.030581165,0.016497733,-0.0112232445,0.0038443962,0.012049762,0.0029934088,-0.020369317,-0.02396902,-0.008210803,-0.032081947,0.01079911,0.0031728502,0.0063565755,-0.014235685,-0.021195836,-0.009124324,0.057986762,0.034365747,0.00815099,-0.061031826,0.023207754,-0.018901162,0.014692444,0.021978853,0.0069873394,0.02710109,0.026753081,-0.0095973965,-0.020695575,-0.0017114903,-0.009401642,0.020630324,0.03678005,-0.0076235407,0.027253343,0.012463021,-0.0013315368,0.052984152,-0.0040102433,0.006068382,-0.024273528,0.02479554,0.008417433,0.018324774,0.0136484215,-0.01719375,0.0002292296,0.0054947133,0.011054678,0.016704364,-0.005258177,-0.032364704,0.00073203933,0.013082909,0.00038811,-0.009472331,-0.010320599,-0.012789278,-0.01262615,0.01262615,-0.0041924035,-0.013039408,0.023816768,0.014279186,0.037802324,-0.014420563,-0.040542882,0.03036366,0.00895032,-0.0059976927,-0.0029526267,0.019890808,0.023207754,0.01931442,0.014605443,0.004083651,0.037389062,-0.020075686,0.027405595,-0.0029798148,0.02164172,-0.029558893,-0.0149752,-0.05394117,0.005152143,0.02897163,-0.002022794,-0.0141921835,0.010576167,-0.013496169,-0.021435091,-0.0036567983,0.037845824,-0.0055735586,0.01912954,0.013517919,-0.019988684,0.019488424,0.004056463,0.008613187,-0.020662948,-0.004499629,0.024012523,-0.015149204,0.0048884186,0.0033359788,0.00036601967,-0.042435173,0.02159822,0.018759783,-0.026579078,0.059161287,-0.010706671,0.007319034,-0.03812858,-0.033734985,-0.04554549,0.036671296,0.022196358,0.018335648,-0.04698102,-0.036975805,0.01426831,0.005361492,-0.020010436,-0.0007558289,0.034605004,-0.002036388,0.005785626,0.021217586,-0.021728722,0.026274571,0.0016571141,0.036627796,-0.02716634,-0.016987119,-0.0063565755,-0.015605965,0.025448054,-0.05615972,0.014681569,-0.021826599,0.0026386043,-0.0027527942,0.016040973,0.0076452913,0.013822425,0.02349051,-0.011130804,-0.007933485,-0.009662648,0.0039259605,-0.02486079,0.03812858,-0.02041282,0.010837173,0.00066101045,0.007868233,0.014996951,0.015779968,0.013626671,-0.0033359788,0.02390377,-0.01862928,-0.010054156,0.01765051,-0.03310422,0.0017726636,0.004910169,0.013604921,0.005736687,0.009483206,-0.007933485,0.014627193,0.0029444704,0.017574383,0.021989727,-0.025861312,-0.0034692003,0.007933485,-0.0018188833,-0.023425259,0.0048258863,-0.021924477,-0.0012227844,0.0026182132,0.027753603,-0.02945014,-0.007781232,0.022859747,-0.009271139,0.012560898,0.002365364,-0.019575426,-0.02399077,-0.00771598,-0.052244637,-0.022131106,-0.041108392,-0.029798148,0.0012390972,0.0062858867,-0.029210886,0.0035915468,-0.015790842,-0.020293191,-0.006508829,0.016269354,-0.020608572,0.0014001867,0.05694274,-0.011043803,-0.010902424,0.0019575425,0.051983632,-0.023229506,0.0074658496,0.048155546,0.07016703,0.01356142,0.011353747,0.0022593304,0.03858534,0.021435091,0.013289539,-0.009733337,0.026361573,-0.017824512,0.0064109517,-0.013637546,-0.017748386,-0.0019072446,-0.012430395,-0.004872106,-0.0047524786,-0.013278664,0.022642242,-0.01995606,0.027362095,-0.0028574683,-0.0024319747,-0.00006376457,0.006133633,-0.019651553,-0.025034795,0.0070145275,0.0009515832,0.021413341,0.0070689037,0.025904814,-0.0122998925,-0.01586697,0.012985032,-0.0068296487,0.000292272,-0.023816768,-0.031994946,-0.0004897255,-0.013365665,-0.026818333,-0.0072592204,-0.006508829,-0.020401943,0.004700821,-0.006052069,0.00815099,-0.018303024,-0.011593002,-0.009205888,0.021532968,0.0039613047,-0.01401818,0.00815099,-0.011875758,-0.010326037,0.0018351962,-0.029624144,0.01634548,0.039585862,0.022968499,0.017607007,-0.00979315,0.02942839,0.03499651,0.013876801,-0.0014273748,-0.030602915,0.0077540437,-0.025491554,0.012789278,-0.0050325156,-0.014420563,-0.011603877,0.031385932,-0.0027745448,0.0055599646,0.01748738,0.072342075,-0.021630846,0.015682092,0.00028054713,-0.035736028,0.01198451,-0.03266921,-0.024273528,0.028645372,-0.0040673385,0.015573339,-0.04872106,-0.016258478,0.020140938,0.0054756817,-0.010179222,0.005141268,-0.011386372,-0.054463185,-0.012376019,0.020380193,-0.020717325,-0.016280228,0.036519043,-0.0007469928,0.010722984,-0.04178266,-0.034343995,-0.02164172,0.0011296652,0.025861312,-0.010336912,0.02399077,0.018248647,-0.01426831,-0.029080382,-0.018292148,-0.012604399,0.01262615,0.02942839,0.033669733,0.024208276,0.008803504,-0.0054784003,0.0030314722,-0.009847526,-0.0122998925,-0.02573081,-0.010369538,-0.0012594883,-0.0040646195,-0.0021492187,-0.008047675,0.038476586,0.009401642,-0.0077649187,0.01495345,0.021902727,0.020423694,-0.03819383,0.0066882703,0.011973635,-0.027666602,-0.0017971328,-0.0026467608,-0.013430917,-0.008455496,-0.014300936,0.017139373,-0.0098692775,-0.00895032,-0.004159778,-0.04732903,-0.005758438,0.020760827,0.03395249,0.018683657,-0.0065523298,-0.01538846,-0.012713151,-0.0074549746,-0.016497733,0.033887237,-0.005323428,0.0017794606,0.0025081015,-0.012811028,-0.013550545,-0.060944825,0.011386372,0.016943619,-0.0112123685,-0.02157647,0.033452228,-0.03495301,0.033734985,-0.016639112,-0.014616318,-0.012778403,0.036562543,-0.04178266,-0.0061010076,-0.011582127,0.026600828,-0.015518962,0.020380193,0.03084217,0.019727679,0.02673133,-0.014714195,-0.011092741,-0.04197841,0.022859747,-0.0025815093,-0.012104138,-0.01104924,-0.017563507,0.020510696,0.017759262,0.0045268172,0.012691401,-0.021195836,0.022381237,0.016443357,-0.014812072,0.02436053,-0.0007048513,-0.0063620135,-0.013311289,-0.0016176915,-0.015073078,-0.034409247,0.016443357,-0.01837915,-0.014050806,-0.039303105,0.03862884,0.059074286,0.022707494,-0.0023979896,-0.015214456,0.00035208577,-0.023403509,-0.0014409688,0.024251778,-0.03588828,-0.0008645813,-0.0039096475,-0.01653036,-0.027775355,0.006079257,-0.005943317,-0.0036622358,-0.014844698,-0.005171175,-0.016008347,0.012778403,0.015225331,0.009689836,-0.018553153,-0.0028520308,0.023555763,-0.009287452,0.014116057,0.0066284565,0.0056333723,-0.0050678602,-0.012528272,-0.024251778,0.034844257,-0.003202757,0.0005097767,-0.01790064,0.0032054759,0.008346744,-0.0058291266,-0.01630198,-0.0021750473,-0.0075147883,0.03860709,0.025687309,0.0028547496,0.022794496,0.0391726,0.06151034,0.022207232,-0.017770136,-0.0048068543,0.004673633,-0.0160736,-0.0014695163,-0.011875758,0.02022794,-0.002066295,-0.00379002,-0.019814681,-0.0045540053,-0.013463543,-0.017226374,-0.018085519,0.033974238,0.04867756,-0.0038362397,-0.008961195,-0.0070960918,-0.030711668,0.053593166,0.03234295,0.019814681,-0.015051328,-0.018912036,0.000027804072,0.013278664,-0.022131106,0.017933264,-0.02159822,0.010565292,0.0032652898,-0.012506522,-0.01636723,0.02346876,0.04052113,0.040260125,-0.012223766,-0.0069003375,0.009309202,-0.027840605,-0.029167384,-0.0117778815,-0.011875758,0.027536098,0.0024754757,-0.03179919,0.025774311,-0.022946749,-0.03825908,0.0061771343,0.0010195534,-0.030711668,0.005244583,0.019531924,0.00094682525,-0.03036366,-0.0061010076,0.00881438]},{"id":"interface-APIEmbedMedia","type":"interface","source":"main","text":"Interface: APIEmbedMedia\nProperties: content_hash: string | null, content_type: string | null, description: string | null, duration: number | null, flags: number | null, height: number | null, placeholder: string | null, proxy_url: string | null, url: string, width: number | null","meta":{"url":"/docs/typedefs/APIEmbedMedia"},"embedding":[-0.0347664,-0.024392018,-0.0073864716,0.0038209718,0.007586406,-0.059713792,0.039231606,-0.033833373,0.03965369,-0.010229985,0.024347588,-0.031767383,0.018993784,-0.032633767,-0.016028088,-0.017760854,-0.016250238,0.035144053,0.01372884,0.016028088,0.0029184893,0.0015522698,-0.01733877,0.048961755,-0.0034933013,0.0029379274,-0.012151578,-0.0058147637,0.035010766,0.037743203,0.013095714,-0.02605814,0.06886635,0.011785032,-0.0034460945,-0.0193159,0.014228676,-0.014328645,-0.03823193,-0.019793522,0.015261672,-0.013984312,-0.031567447,0.008563864,-0.027657615,0.02781312,-0.004853967,0.028568428,0.004476313,0.06495652,-0.030923214,0.0026408024,-0.04458541,0.027213316,-0.0046318173,0.0027657615,-0.007025479,-0.006697808,-0.018060757,-0.015439392,0.03472197,-0.017416522,-0.0074975463,-0.006103558,-0.021159742,0.0074808854,-0.019815737,0.039720334,-0.0019021552,0.00754753,0.056425977,0.011851677,-0.010874219,-0.0075586373,0.005975822,0.0012252935,-0.0362548,-0.015783723,0.003859848,-0.026902307,-0.031411942,0.037076756,-0.040053558,-0.027968625,0.007364257,0.04414111,-0.04602938,-0.0041514193,-0.029434811,0.031478588,-0.09703491,0.015828153,-0.05202742,-0.019749092,-0.039120533,-0.054515492,-0.004415222,0.0056203827,-0.032456044,0.062201865,0.049850352,-0.0066478243,-0.088815376,-0.008202871,0.007780787,-0.044207755,-0.028923867,0.010435474,-0.02596928,-0.006892189,-0.023125766,-0.026857877,-0.043052576,0.008730476,0.01417314,-0.039209392,0.0015120052,0.032811485,-0.0020784864,-0.007053247,-0.07019925,-0.027479896,0.06411235,-0.012873565,0.008919303,-0.007364257,0.010130018,0.0027532657,-0.08526099,-0.04758443,-0.018316228,0.010635409,0.003348904,-0.0024561407,0.025147326,0.014950663,0.016494602,0.039853625,-0.0054565477,-0.00649232,0.024414232,-0.019837953,0.040853295,0.033100277,-0.012784705,0.0133067565,-0.012906888,0.026435792,0.012162686,0.0012697234,0.016483495,-0.0009371933,-0.0347664,0.014795158,-0.035899363,-0.04549622,-0.010107803,-0.038787305,-0.01302907,-0.017183265,0.013873238,-0.021070883,-0.0075364225,0.012451481,-0.014772943,0.053093735,0.0366991,-0.013651088,-0.03358901,0.0011760041,-0.013673303,-0.036899034,-0.028901653,-0.020360004,-0.014828481,-0.010702053,0.07601957,-0.06380134,0.029168231,0.017194374,0.03856516,0.038520727,0.002585265,-0.03605487,0.00046824955,0.028146345,-0.0514054,0.029279307,0.03543285,-0.018016327,-0.018982677,0.008069581,0.009163667,0.040586717,0.03832079,-0.011807247,0.0069477265,0.0043735686,0.037832063,-0.0077308035,0.030301195,0.019660233,0.049672633,0.0010614581,-0.02512511,-0.024991821,-0.0019993456,-0.029412597,-0.05975822,0.048384167,0.031434156,-0.008674939,0.008075135,-0.039231606,0.0018480064,0.036588028,0.0022284375,-0.00017112456,-0.02785755,-0.0070754625,-0.05731458,0.058292035,0.043674596,-0.03318914,0.000029959814,-0.008808228,-0.0509611,0.027790906,-0.035455063,-0.0050816704,-0.010535441,0.05562624,-0.0514054,-0.008619402,0.003543285,0.020015672,-0.020248929,-0.00006586386,0.0036626903,-0.012562555,-0.0006726965,-0.029146018,-0.036987897,0.04476313,-0.004409668,0.011540668,0.02596928,-0.027235532,-0.019693555,0.028790578,0.0433858,-0.03916496,0.0077974484,0.002163181,0.06286831,-0.0366991,-0.017061083,0.04722899,-0.0089581795,0.05242729,0.01632799,-0.016205808,-0.03780985,-0.019382546,0.041342027,0.019115966,-0.015861476,0.03212282,-0.0057203504,-0.023214625,0.022970261,-0.01724991,0.02790198,0.02085984,-0.04736228,0.013406724,0.01760535,0.00979124,-0.03987584,0.009824563,-0.042275053,-0.06455665,-0.041275382,0.053760186,-0.016028088,-0.0052094064,0.031545233,0.038209718,0.03665467,0.0073253806,0.0064312285,0.0046984623,0.07179873,-0.052382857,-0.02323684,0.031834025,0.010929757,-0.009458016,0.0600248,0.005684251,0.024902962,-0.05016136,0.03647695,-0.04396339,0.007208752,0.021848405,0.039720334,-0.000295563,0.036210373,-0.018760527,0.014584116,-0.0034099952,-0.058158744,0.0056287134,-0.03701011,0.03736555,0.06548968,-0.005434333,-0.05211628,-0.02745768,0.017527597,-0.004098659,-0.0442744,-0.07899637,0.0038903935,-0.045851663,-0.00004132762,-0.014561901,0.0077030347,-0.011218551,0.022625929,-0.020837625,0.013628873,-0.018460626,0.057581156,-0.03529956,-0.019104859,0.0146063315,-0.013362294,0.020271145,0.04660697,-0.050516803,-0.0032572674,0.025835989,-0.00041965433,0.00027109185,-0.06513424,-0.0087637985,-0.031700738,-0.02794641,-0.019382546,-0.018205153,-0.03678796,0.008352822,0.0049456037,-0.0375877,0.019660233,-0.06069125,-0.09961185,0.00090178824,-0.034255456,0.02865729,0.008247301,0.011740603,-0.024280943,-0.04289707,-0.02574713,0.026902307,0.0060591283,-0.017994111,0.042763785,0.033522364,-0.027368821,0.008597187,-0.029945755,0.00016461627,-0.0049344962,0.004193072,0.00027491004,-0.026080353,0.025680484,-0.0051816376,0.03834301,-0.0035904916,-0.0077530183,-0.042786,-0.0044179987,0.016294667,-0.036121514,0.02485853,0.037787635,0.0150062,-0.061091118,-0.03732112,0.034833044,0.009802348,0.005234398,0.011451808,-0.011312964,-0.002568604,0.010735376,-0.005428779,0.00044846436,0.021715116,-0.013229004,-0.029923541,0.02785755,-0.011640635,0.05491536,0.012884673,0.004820645,0.0004744975,0.04069779,-0.016050303,0.011462916,0.016627891,0.0032045068,-0.043408018,0.033278,-0.0025574963,-0.001716105,0.031523015,-0.045474008,0.04638482,-0.0054565477,-0.02372557,0.019204827,-0.014828481,-0.032411616,-0.041741896,-0.009624628,0.06060239,0.059180632,0.003007349,0.02319241,0.007230967,0.010018944,-0.0054121176,-0.023303485,0.042097334,-0.03616594,0.010496565,-0.00946357,-0.022437101,-0.029945755,-0.027013382,0.014461934,0.036210373,-0.0094802305,-0.042008474,0.026746802,0.0096135205,-0.018827172,0.048695177,0.00048456364,-0.004720677,-0.01949362,0.009291404,0.0087027075,0.003562723,-0.011651742,0.031167578,0.022903616,0.032233894,0.033278,-0.002879613,-0.010285523,0.028190775,0.0069866027,-0.018860495,0.0375877,0.021159742,0.017683102,0.02579156,-0.027590971,-0.047806576,0.015506037,-0.058380894,0.0054204483,-0.007914077,-0.012495911,-0.0028226874,-0.05193856,-0.009208098,-0.021770652,0.10467686,0.05149426,0.0031295314,0.02552498,-0.048606314,-0.018693883,-0.0033294659,-0.0033461272,-0.009263635,-0.029768037,-0.010352167,-0.05091667,-0.017494274,0.01254034,0.012129364,0.06886635,-0.027835336,-0.0075641912,-0.016294667,0.037476625,-0.029590316,0.0041430886,-0.039898053,-0.06593398,-0.025813775,-0.0042236177,-0.002185396,-0.022992475,0.010752037,-0.027324392,0.033766728,-0.01390656,0.04072001,-0.02781312,0.021315247,-0.037387766,0.0009378875,0.04634039,-0.017705318,-0.008341715,0.0033877802,-0.012029396,-0.06628942,0.017594242,-0.012484803,-0.02125971,0.010068927,-0.0015550466,0.011090815,-0.033522364,0.0053510265,-0.008152887,0.0022103877,0.01010225,-0.04445212,-0.017971896,-0.02305912,-0.013073499,0.009569091,-0.031745166,0.03365565,-0.024680812,0.0035321773,0.0020312797,0.0043569077,0.0007358703,-0.05136097,0.040031344,-0.014028742,0.0078752,0.025502766,0.027924195,-0.027590971,-0.00066610146,0.013784378,-0.012429265,-0.01491734,0.033122495,0.025014035,-0.0044346596,0.028612858,0.018216262,-0.009874546,0.019338116,-0.020715443,-0.018782742,0.006236848,-0.0033294659,0.06744459,0.0031045396,0.021137526,-0.01839398,0.016116947,-0.0173832,-0.007803002,-0.004853967,-0.002032668,-0.020260036,0.018582808,0.03812086,0.018205153,0.020060102,0.020182284,0.0013828807,0.043941174,0.006253509,0.01848284,0.015517144,-0.00882489,-0.0005244811,-0.00050747284,0.05593725,0.009857885,-0.008741584,0.017694209,0.0216929,-0.0064589973,-0.00695328,0.028190775,0.03010126,0.034388747,0.022148307,-0.02816856,-0.053093735,-0.0029740268,-0.013117929,-0.008974841,-0.003371119,-0.038009785,-0.019171504,0.008480558,-0.042430557,0.015283887,-0.007253182,-0.00019854614,0.0088970885,-0.0072587356,-0.010113357,0.028568428,-0.05598168,0.0054593245,-0.036210373,-0.053804614,-0.00462071,0.008669385,0.024547523,0.0032211682,-0.022948045,-0.011518452,0.02279254,0.020759873,-0.014706299,0.01377327,-0.03823193,-0.0007275397,0.020404434,0.010546548,0.02160404,0.0013766328,0.020337788,-0.011773924,-0.01051878,0.020593261,-0.033389073,0.008513881,-0.010141126,-0.016216915,0.027391037,-0.008458343,0.010940864,-0.026524654,-0.03225611,0.04607381,-0.0181274,-0.008380591,0.017227696,0.045007493,-0.0036765747,-0.02305912,0.0072587356,-0.0015855922,-0.033011418,-0.043630168,-0.030034615,-0.013473368,-0.007758572,0.004098659,0.017594242,0.010552103,0.033344645,-0.05624826,0.01580594,0.016405743,-0.024081009,0.033700082,-0.03396666,0.014350859,-0.032145035,-0.040342353,0.013917668,-0.03929825,0.011251873,0.020448864,0.024547523,0.01897157,-0.025369475,0.016650107,0.026635727,-0.012495911,-0.005070563,0.07459781,0.0055454075,-0.0002990341,0.02865729,-0.01084645,0.011146353,0.0033211354,-0.031323083,-0.009035932,0.0024214298,0.02565827,0.0030017954,0.012162686,0.012740275,0.019837953,-0.027924195,-0.022381565,-0.019460298,-0.02081541,0.014028742,0.009824563,0.00924142,0.010346614,0.021393,0.02130414,0.035677213,-0.029923541,-0.036632456,0.01280692,-0.007397579,0.0023783883,0.009730149,0.019771308,0.019882383,-0.020293359,-0.010496565,0.006253509,0.00754753,0.021381892,-0.03138973,0.024658596,0.010813128,0.009607967,0.0087637985,0.009491338,0.015961444,0.025280615,0.02816856,0.018227369,0.017283233,-0.016716752,-0.009074808,0.0013565006,0.02790198,-0.017216587,-0.045540653,0.004767884,-0.023903288,0.021592934,-0.0062257405,-0.02601371,0.019682448,-0.00026987697,-0.030523345,0.006109112,-0.0062868316,0.03503298,0.0045707263,-0.004362461,-0.009874546,-0.031323083,-0.0002632819,-0.023836644,0.026613513,0.027257746,-0.012018289,-0.002578323,-0.023392344,-0.027257746,0.03616594,-0.031367514,-0.033300214,-0.026613513,-0.030745493,0.00818621,-0.013606658,-0.0056092753,-0.0027241085,-0.024769671,0.0015717079,0.0069199577,-0.041475315,-0.013129037,-0.0051677534,-0.030612204,-0.053182594,0.0077974484,0.04634039,-0.06420121,0.0022617597,-0.0046734707,-0.021293031,-0.06304603,-0.0020507178,0.07450895,-0.017883036,-0.010241093,-0.017749747,0.008769352,-0.003987584,-0.008552756,-0.026458008,0.027702045,0.035832718,-0.000025252153,-0.033766728,0.008197318,-0.015561574,0.033700082,-0.01724991,0.052738298,0.014906233,0.034655325,0.048561886,0.02952367,0.028212989,0.018160723,0.013151252,0.0042930394,0.0033294659,0.024325373,-0.032456044,-0.00580921,0.041830756,-0.034077737,0.014350859,0.005731458,-0.0038015337,-0.012862457,0.005359357,-0.01518392,-0.020404434,0.034166597,0.0058147637,0.0010100862,0.031212008,0.00032732345,0.03265598,0.0149950925,0.01641685,-0.01628356,0.0014717405,0.0049539343,-0.020348895,0.019338116,0.013817701,-0.00096079666,0.03396666,-0.047184557,0.0025977609,-0.040564504,-0.017716425,-0.023592278,0.020804303,0.017683102,-0.034033306,0.03050113,0.018938247,-0.006703362,-0.009080362,-0.026569083,-0.0013627484,-0.016627891,0.01932701,0.0328337,0.032633767,-0.0049594883,0.021848405,-0.024480877,0.010113357,0.027968625,-0.017883036,0.021170849,0.004773438,0.043674596,0.019138182,-0.017094405,-0.012329298,-0.037920922,0.027080027,0.0079862755,-0.0083139455,0.02776869,-0.009246974,0.024503093,-0.0023256277,-0.010007836,-0.010602086,0.02218163,-0.012606985,0.04267492,-0.009069255,0.017638672,-0.017883036,-0.0018896593,-0.06122441,-0.007186537,-0.022692574,-0.02485853,0.016128056,0.0026477447,0.036143728,-0.008891535,-0.032722626,-0.007519761,0.01839398,0.0069866027,-0.029412597,0.01522835,-0.018382873,0.0068533127,-0.022370458,0.010302184,0.028546214,-0.016361313,-0.0073253806,-0.024192084,-0.02310355,0.026391363,-0.008908195,-0.01962691,-0.045540653,-0.017005546,0.030701064,0.006869974,0.0041653034,0.007614175,0.0133067565,0.014772943,-0.008869319,-0.0438301,-0.03138973,0.020615475,0.00038841454,0.0020743213,-0.020837625,-0.020426648,0.053804614,-0.06948837,0.054959793,-0.014339752,-0.044518765,-0.00095871405,-0.040209062,-0.030256765,-0.01082979,0.015394961,0.0094080325,-0.01848284,0.004470759,0.030478915,0.04682912,0.0035044088,0.03278927,0.03516627,-0.013295649,0.022970261,-0.012862457,0.0031239777,-0.0058203177,0.01102417,0.018860495,0.02794641,0.011918322,0.0018605023,-0.042141765,-0.011274088,0.023747783,0.014928448,0.0019840728,0.011196336,-0.020837625,-0.010702053,0.01695001,0.0014370297,-0.035388418,0.033811156,0.00846945,0.019082643,-0.014239784,0.0153838545,0.0046706935,-0.008641616,0.020304466,0.037743203,0.006420121,0.0020076763,0.007975168,-0.007925184,-0.014361966,0.00946357,-0.013484476,0.008591632,-0.01852727,0.003054556,0.009380263,-0.009824563,-0.028412923,0.00005072125,0.022148307,0.016905578,0.026635727,0.008930411,-0.006142434,0.005212183,0.026102569,-0.008158442,0.031123148,-0.038276363,0.015239458,-0.025813775,0.0017410968,0.013917668,0.007058801,-0.017738638,0.02045997,-0.02534726,0.010268861,0.008885981,0.0052288445,0.003498855,-0.0052427286,0.00008881642,0.02508068,0.011773924,-0.035832718,0.056114968,-0.0129179945,0.013151252,0.010229985,0.006297939,0.004073667,0.0022992475,0.026124785,-0.013373401,0.001252368,-0.023525635,-0.016994439,0.010885326,0.008686046,0.006464551,-0.0006692254,-0.0056509282,-0.009596859,-0.0077530183,-0.010313292,0.009341387,-0.032811485,0.005662036,0.00091081305,-0.017238803,0.008636063,0.022637036,0.014306429,0.013551121,-0.010379937,0.021726223,-0.008280624,-0.0031961761,-0.0035488387,0.001102417,0.01487291,0.0038459636,-0.004376346,0.010363275,0.02839071,-0.030589988,0.031123148,-0.0038987242,0.0029490348,0.013739948,-0.007142107,-0.058869623,-0.006886635,-0.012906888,-0.029434811,-0.018027434,0.02248153,-0.026613513,-0.019138182,0.011740603,0.008924857,0.01020777,0.041875184,0.017283233,-0.028190775,0.0304567,-0.010368829,-0.006931065,-0.012729168,0.052560575,0.015250565,-0.008619402,0.005725904,-0.035366204,-0.012207116,-0.042052906,0.01258477,0.02816856,-0.015161705,0.037609912,-0.011013063,-0.048695177,-0.058558613,-0.013451153,-0.03261155,0.026146999,-0.0031017626,0.01817183,-0.032056175,-0.021559611,0.007997382,-0.004559619,0.008280624,-0.011651742,-0.0012218223,-0.0037626575,0.0029101588,0.026502438,-0.02561384,0.020826519,0.023525635,0.015783723,0.002764373,-0.015572681,0.0123959435,-0.0057092425,0.019638019,-0.05233843,0.0028337948,-0.039009456,0.008391698,0.009124791,-0.002885167,0.012629201,-0.0013821865,-0.007275397,-0.02328127,0.0063701374,0.007358703,-0.008102904,-0.025680484,0.02983468,0.015439392,0.027235532,-0.016994439,0.023392344,0.011168567,0.02601371,0.03409995,-0.0151283825,0.014417504,-0.016605677,-0.01386213,-0.00081431685,0.0048789587,0.0033738958,-0.0023506195,0.0035099625,0.003671021,0.018382873,-0.014139817,0.027057812,-0.00933028,0.004004245,0.042186193,-0.045762803,-0.008963733,-0.021293031,0.008064028,-0.02952367,0.028768362,-0.020382218,0.02133746,0.00025234796,0.020037888,-0.028568428,0.026569083,-0.006192418,-0.0011128302,0.02248153,0.007103231,0.022614822,-0.03032341,-0.0052010757,-0.005428779,0.008030705,-0.015950335,-0.03050113,-0.025302831,0.028990513,-0.038187504,-0.0012037727,0.03638809,0.0067144693,0.005512085,0.0099300835,0.01097974,-0.001843841,0.011596205,-0.022359349,-0.01258477,-0.019227041,0.042763785,-0.033944447,0.005825871,0.03274484,0.047539998,0.024947392,-0.00946357,-0.012606985,0.049494915,-0.0054121176,0.006020252,0.01289578,0.0028990512,0.0072365208,0.027102241,-0.0059091775,-0.02314798,-0.0062479554,0.0049789264,-0.027257746,-0.04538515,-0.021137526,0.030812139,-0.024369802,0.025813775,0.026924523,-0.012706953,0.005892516,0.018693883,-0.01038549,0.005070563,0.010118911,0.006464551,0.017138835,0.031078719,0.010346614,-0.017405415,-0.018338444,-0.012196009,-0.0045068585,0.01906043,-0.02345899,0.03252269,-0.00042069567,-0.0059258384,-0.049894784,0.0070643546,-0.011896107,-0.0045901644,-0.008658278,-0.0014356413,0.029034942,-0.010590979,-0.02574713,-0.027924195,-0.005048348,-0.020715443,-0.00873603,-0.04009799,0.007314273,-0.005959161,0.018316228,-0.032233894,-0.001060764,0.029568102,0.031434156,-0.0036543596,-0.0042125103,0.03696568,0.0064423364,0.0021256933,0.023547849,-0.022503747,0.015028415,-0.008308392,-0.00791963,-0.0038515173,-0.0016300221,-0.005556515,-0.003918162,-0.01632799,-0.012029396,0.03934268,0.036899034,-0.005759226,-0.010913095,0.025880419,0.004309701,0.016672323,-0.0366991,-0.015439392,-0.010296631,0.008402806,0.04225284,-0.008802675,0.00846945,0.01813851,0.008552756,-0.017805284,-0.003918162,-0.010146679,-0.038476296,-0.009335834,0.026924523,-0.026346933,-0.053049307,-0.0057981024,0.02790198,-0.011440701,-0.0036849051,-0.019249257,-0.011407378,0.016605677,-0.006808883,-0.020026779,-0.007880754,-0.0066700396,-0.049361624,-0.029612532,-0.011474023,-0.026258074,0.01641685,0.021048667,0.0055870605,0.04507414,-0.0028226874,-0.029279307,0.0034516482,-0.0036932358,-0.010546548,0.010718714,-0.016650107,-0.0035988223,0.0080473665,-0.03812086,-0.019415868,0.027879765,0.047095697,0.0144730415,0.0108408965,0.028013054,0.021204172,-0.018671667,0.025369475,0.0055676224,-0.009274743,0.00088790385,0.01184057,0.0150062,0.038920596,-0.041608606,-0.014406396,-0.007897415,0.012484803,0.030856568,-0.007947399,-0.018260691,0.018671667,0.021803975,0.010135572,-0.0020951477,0.010752037,-0.029701391,0.013173467,-0.0058647473,0.0044790898,-0.016772289,0.00008226474,0.003940377,-0.012329298,-0.04009799,-0.0048789587,0.006464551,-0.002968473,-0.029412597,0.014284214,0.012340406,0.02319241,0.011196336,-0.016383527,-0.0062812776,-0.005220514,-0.023259055,-0.024769671,-0.023392344,-0.006420121,0.004767884,-0.007114338,-0.0046373713,-0.016827825,0.026258074,0.027235532,-0.04651811,0.0044346596,-0.017705318,0.012118257,-0.045851663,-0.008191763,-0.0048012068,-0.015195027,0.013262327,0.021759545,-0.000006633029,-0.008730476,-0.043941174,0.009019271,0.009874546,0.00042694362,0.010291076,-0.0027268855,-0.010657623,-0.030767709,-0.00411532,0.0051233233,-0.021781761,0.02552498,-0.035410635,-0.02283697,-0.033744514,-0.012951317,0.024836317,-0.0052510593,0.040409,0.0029184893,0.025147326,-0.036610242,-0.0064145676,0.012262654,-0.025813775,0.032722626,0.007292058,-0.02516954,-0.026302503,0.005164976,-0.002649133,-0.033766728,-0.00640346,-0.007886308,-0.01267363,-0.037743203,0.025147326,0.0075419764,0.0032489367,0.010118911,0.011018616,-0.029345952,-0.016361313,-0.013395616,-0.001939643,-0.025325045,-0.011762817,-0.012162686,0.008202871,-0.010857558,0.013151252,-0.035410635,-0.0021048668,0.03454425,-0.011851677,-0.005659259,-0.010435474,-0.0010524334,0.0096024135,0.05509308,-0.032989204,0.031567447,0.026680158,0.035277344,0.03969812,-0.026080353,-0.010291076,-0.006175757,-0.022359349,0.002808803,0.00021190982,-0.005848086,0.014684084,-0.005231621,-0.02085984,0.008747137,-0.018216262,0.00759196,-0.048961755,0.015628219,0.05531523,0.0049456037,0.005403787,0.004198626,-0.02516954,0.042275053,0.067533456,0.028190775,-0.042008474,-0.0009837059,0.01928258,0.0022603713,0.0069421725,0.0068588667,-0.024525307,0.0042458326,0.0076419436,-0.077485755,0.0039542615,0.01505063,0.06331261,0.01285135,-0.001098946,-0.003951485,0.024591953,-0.03854294,0.019138182,-0.019182611,-0.01403985,0.01082979,-0.00046026605,-0.048428595,0.011685065,-0.009035932,-0.024503093,0.008774906,0.0068366514,-0.044385474,0.034522034,0.015972551,-0.019515835,-0.037254475,-0.04625153,-0.0050622323]},{"id":"interface-APIEmoji","type":"interface","source":"main","text":"Interface: APIEmoji\nProperties: animated: boolean, id: string, name: string","meta":{"url":"/docs/typedefs/APIEmoji"},"embedding":[-0.0011318211,-0.004777981,-0.044193376,0.024279222,-0.029328546,0.0045833224,0.017519264,-0.02630839,0.04065413,-0.02831396,-0.002105851,-0.0153131345,0.014003614,-0.034448653,-0.0037545492,-0.0005430529,-0.04098446,0.01702377,0.016575465,0.00885991,-0.010777001,0.007302643,0.015147969,0.05969527,0.04426416,0.036548607,-0.059648078,-0.009095861,0.012635105,-0.02654434,-0.0036542707,-0.035368856,0.09579557,-0.018120935,0.0009651817,0.021789953,-0.03005999,-0.007733251,-0.024987072,-0.033363286,-0.04284846,-0.042966437,0.0023757184,0.012233991,-0.039096862,0.05096513,-0.020185495,0.020102913,0.011549737,0.03942719,0.0026087186,0.05200331,-0.017035566,0.019996736,-0.028195987,-0.035321668,-0.027464543,0.007249554,-0.05271116,0.014428323,0.03067346,-0.018840581,-0.0036070808,0.0027237441,-0.025553351,0.02232084,-0.08163859,0.048322495,0.030343128,-0.046293326,0.0778162,0.031121762,-0.03921484,0.030413914,0.003559891,-0.018392278,-0.04711915,0.02025628,0.019937748,-0.023087677,-0.029800445,0.044948414,-0.03338688,-0.07540952,-0.001223989,-0.0067776544,-0.045325935,-0.031971183,-0.05714701,0.004084879,-0.001075783,0.017802404,-0.122127555,-0.054504376,-0.0029626433,-0.020810762,0.010912673,-0.0018492556,-0.013307562,0.03211275,0.05879866,-0.0077391495,-0.08531941,0.020456837,-0.023146663,0.027110618,-0.00806358,0.027582517,-0.04520796,-0.009007379,-0.055306606,0.017283315,0.011219407,0.0058397544,0.0015218754,-0.0211057,0.030248748,0.004494841,0.020598408,-0.057524532,-0.0029906621,-0.00923743,0.053702146,0.0018212366,-0.010057355,0.010948065,-0.020315267,0.0012475839,-0.06625467,-0.041527145,-0.005881046,-0.011024749,-0.0038282836,0.009868596,-0.017377693,-0.012104219,-0.027535327,0.018781595,-0.02935214,0.034448653,0.017389491,-0.01664625,0.02279274,-0.0063706413,-0.01477045,0.0173541,-0.005763071,0.012021637,-0.0020955282,0.0050227786,0.027417352,0.019182708,-0.033740804,-0.019194506,-0.004951994,-0.021624789,-0.013590702,-0.01724792,-0.016327718,-0.011832876,-0.012269383,-0.062715426,0.011567433,-0.008718341,-0.025860084,0.039922684,0.021353446,0.0029051304,-0.013366549,0.015879413,0.023123069,-0.034967743,-0.07437134,-0.020091115,-0.05087075,-0.014664273,0.07054895,0.0064532235,-0.07418258,0.061724436,0.050493233,0.07413539,-0.039922684,-0.027558923,0.04398102,0.011921357,-0.020362457,0.017472073,0.019949546,-0.021211876,-0.004760285,0.047567457,0.043249577,-0.005332463,0.021070307,-0.022592181,0.04763824,-0.023052284,-0.0090250755,-0.0403238,0.042541727,0.04055975,0.05809081,-0.0069900095,-0.016905794,-0.021164685,-0.038530584,-0.04702477,0.0002324473,-0.023594968,0.05724139,-0.028125202,-0.0039492077,-0.045892213,-0.04983257,-0.020150103,0.019796178,0.056014456,0.006995908,0.033717208,-0.048228115,0.018510252,0.055165034,-0.03138131,0.015914805,0.0001719852,-0.002551206,0.0021530408,-0.024019677,0.02405507,-0.043863047,0.012387359,-0.011478952,-0.018604632,0.021388838,-0.022863524,-0.0048399176,0.005665742,-0.00040480116,0.034023944,-0.004763234,-0.012670497,-0.004751437,0.022202864,-0.0005161399,0.033835184,0.020515826,0.016433895,-0.019961342,-0.008960189,0.023193853,-0.011585129,0.020869749,0.023052284,0.012741283,-0.034118325,-0.041833878,0.03900248,0.011077837,0.013567107,0.01692939,-0.018439468,-0.019159114,-0.013862044,0.019395065,-0.04473606,0.0035716882,0.057996433,-0.007444212,-0.009721126,0.046411302,-0.001697363,0.015124374,0.050493233,-0.004188107,0.0013493373,0.0056716404,0.026851073,-0.04107884,0.036265466,-0.03690253,-0.018144531,0.015985591,0.0076388707,-0.02883305,0.032655437,0.04379226,0.0036955618,0.0082877325,0.010393583,0.049974144,0.005825008,0.027228594,-0.036289062,0.020338863,0.054645944,0.06063907,0.0073970226,0.07102086,0.011496648,0.036784556,-0.076778024,0.0065063126,-0.0164103,-0.030555483,0.043863047,-0.027322972,0.06554682,0.019064734,-0.0055772606,0.038648557,-0.009756519,-0.022061296,-0.034873363,-0.050304472,-0.017011972,0.035132907,0.03713848,0.009361303,0.002198756,-0.02460955,-0.01444012,0.00675406,-0.024232032,-0.053041488,-0.031452093,0.020374255,-0.009278721,0.04530234,0.016823212,0.01415698,-0.038884506,0.01116042,0.04251813,0.05851552,-0.011119129,-0.027653303,0.03860137,-0.016422099,0.008783227,0.06054469,-0.02331183,-0.015183362,0.020881547,0.030791434,-0.039568763,-0.04242375,-0.0020409648,0.008482391,0.02227365,-0.011744395,0.011762092,-0.03961595,-0.045986593,-0.007161073,-0.029824039,-0.018109137,-0.0036601694,-0.04530234,0.049313482,-0.0029419975,0.02564773,0.028573506,0.049077533,-0.012587915,-0.041291196,-0.002231199,0.02949371,0.03529807,-0.056958254,0.013543512,-0.0123519655,0.004468297,-0.03239589,0.025671326,0.0138266515,-0.05308868,-0.0028343454,-0.004052436,0.0023875157,0.031121762,0.015891211,-0.023665752,-0.024821907,0.006582996,-0.0149238175,0.00482812,0.0003517125,-0.026615124,0.054976277,0.07465448,-0.01415698,-0.069180444,-0.016304122,0.00120703,-0.0031587763,-0.02025628,0.0063588438,0.009715228,-0.020857953,-0.005659843,-0.0262612,0.020987725,0.00736163,-0.009160746,-0.01983157,-0.015737843,-0.0018758,0.05903461,-0.022191068,0.032136347,-0.023252841,0.01940686,0.05289992,0.03520369,-0.02306408,0.0010580869,-0.08376214,-0.0023565474,0.027653303,-0.01847486,-0.035793565,-0.0412676,-0.05002133,-0.013602499,0.017755214,0.022214662,-0.0052557793,-0.031475686,-0.027842062,0.016516477,0.02935214,0.021530408,0.0037516,0.053041488,-0.040111445,0.029116191,-0.016681643,-0.026190415,0.0033357386,-0.06257386,0.0005987223,0.018168125,0.015525489,0.0025069653,-0.006653781,-0.024302818,-0.021164685,-0.057005443,-0.028762266,-0.047827,0.024751121,-0.039804712,0.04084289,0.010004266,-0.012623308,0.011821079,-0.001385467,-0.011561534,-0.01669344,-0.006382439,-0.016304122,0.00062784733,0.049124725,0.05068199,-0.012764878,-0.027558923,0.023465196,0.030602673,-0.0022724904,-0.0069074268,-0.0037663467,0.054551568,-0.010157634,-0.011360977,-0.018061949,0.040205825,-0.042376563,0.017283315,-0.014428323,-0.031239737,0.03466101,-0.002011471,-0.055212226,0.0014732109,0.079467855,0.03685534,-0.016846808,0.00037272676,-0.00895429,-0.0053531085,0.003919714,0.008877607,-0.011738497,0.019796178,-0.037586786,-0.034354273,-0.06276262,0.010399482,-0.027464543,0.05733577,-0.037940707,-0.026166819,0.02274555,0.027653303,0.00033696563,0.030295938,-0.01749567,-0.04188107,-0.00033493794,0.04801576,-0.027393758,-0.020362457,-0.01097166,-0.010594141,0.005084716,-0.024137652,0.018734405,-0.0011450932,0.0019259392,0.004978538,-0.013496322,0.057288583,-0.018085543,0.009555962,-0.020739976,0.004580373,-0.070124246,-0.020315267,-0.012210396,0.024680337,-0.02208489,-0.005143703,0.0032413588,-0.0072377566,0.011915459,-0.013154195,-0.004627563,0.010493862,-0.021093901,0.009597253,0.008370315,0.033717208,-0.008264137,-0.027299378,0.050068524,-0.044004615,0.0068897307,0.0021323953,-0.0015336729,0.002119123,-0.0365722,0.0370441,-0.043060817,0.011939053,0.013107005,0.00956776,-0.008045884,0.029069,-0.007951505,-0.015938401,-0.01448731,0.02958809,-0.015985591,-0.011136825,0.019890558,0.026567934,-0.011944952,-0.0054179947,0.008635758,-0.014381133,-0.0073498324,0.015643464,0.030649863,-0.011927256,0.009007379,0.004577424,0.023736538,0.009107658,-0.038955294,-0.021919725,-0.0036218276,-0.0046629556,0.040677726,-0.0054356907,0.025907274,-0.01960742,-0.028384747,-0.01669344,0.013012625,0.004860563,-0.015961995,-0.021778155,-0.015029995,-0.022438815,-0.0065770973,0.016068174,-0.01847486,-0.00064775563,-0.0023078828,0.01899395,-0.025034262,-0.020091115,0.0061641852,0.050398853,0.017554656,-0.015631666,-0.036595795,-0.01205113,0.0057778177,-0.035321668,0.02996561,-0.0041527143,-0.062196337,-0.04551469,-0.013732271,-0.0036218276,-0.0017460276,-0.022250054,-0.029234165,-0.034071133,0.017212529,-0.0032000674,0.017637238,0.0021589396,0.014746855,0.0037398024,-0.02348879,-0.0141923735,-0.016186148,-0.0012652802,-0.016162554,-0.010788799,-0.013909234,0.0076388707,-0.0028195987,-0.007857124,0.02602525,0.012233991,-0.0035480934,0.0058633494,0.015077185,0.03159366,0.031050978,0.021093901,-0.016115364,0.0056391973,-0.0006569724,0.022261852,0.031145358,0.0024155348,-0.011319686,-0.0010448147,-0.0053531085,0.0075739846,-0.025624136,-0.02358317,0.03138131,-0.017884986,0.01003376,0.024125855,0.02996561,0.0045066387,-0.0058309063,-0.005031627,0.03647782,0.035769973,-0.00632935,-0.022828132,-0.008818619,0.028573506,0.03789352,-0.0150064,0.0164103,-0.008818619,-0.040017065,-0.005199741,-0.037633974,-0.0046157655,0.006630186,-0.006264464,-0.012481738,-0.036454227,-0.00482812,0.029753255,-0.021837143,0.027204998,0.022155674,0.0035834857,-0.017377693,-0.0038341824,0.024892692,0.017318707,0.013295764,0.02593087,0.016988376,0.014145183,0.016941188,0.0239135,0.0023403259,0.010605938,0.005963628,-0.016150756,0.005152551,-0.011290193,0.013673284,0.016587263,-0.011337382,0.025340995,0.01885238,-0.04622254,0.008977885,0.0010256438,0.020386053,0.010458469,0.00952057,-0.027511733,-0.0048546647,-0.0045213858,0.014782247,0.0257893,0.008022289,-0.03551043,0.009673937,0.02151861,0.017825998,0.03595873,0.041385572,-0.008983784,-0.003913815,-0.021046711,0.013968221,0.009662139,0.014251361,-0.010198925,0.03149928,0.019701798,-0.01533673,-0.019111924,-0.010051456,-0.002026218,0.013260372,-0.013000827,-0.015419312,-0.028054416,0.020268077,-0.01992595,0.0067009707,-0.018215315,-0.027936442,0.023842715,0.0068425406,-0.02944652,0.00047374272,-0.022969702,0.018840581,0.012646903,-0.014711463,-0.02090514,0.013248575,0.018581036,0.0057453746,-0.032183535,0.03192399,-0.015737843,-0.035416048,0.034236297,-0.010010165,-0.0010285932,0.03900248,-0.034731794,-0.015785033,-0.033882376,-0.013755866,0.049549434,-0.026615124,-0.0008022289,-0.013154195,-0.005302969,0.02517583,-0.0300128,-0.0018905468,-0.0077568456,-0.032702625,0.033646423,-0.0074914023,-0.0023845665,-0.015088982,-0.00054673967,-0.013980019,-0.02644996,-0.00032627417,0.0071256803,-0.060072787,0.035793565,0.00464231,0.009579557,-0.06870855,-0.049030345,0.03201837,-0.012186801,-0.0039787013,-0.021636585,0.006771756,0.043084413,0.0011170743,-0.007686061,0.031782422,-0.009526468,0.0004789041,-0.04431135,-0.0024229083,-0.010588242,0.026992643,-0.0077155544,0.025860084,0.017884986,-0.023252841,0.035345264,0.0015262995,0.047048368,-0.011419965,0.021483218,-0.02039785,0.011083736,0.039380003,-0.00361003,-0.0013028847,-0.029375736,0.012257586,-0.0023005095,0.029328546,-0.015549084,-0.008423404,-0.021754561,-0.027275784,-0.012871055,0.04322598,-0.014109791,0.0066183885,-0.007980998,-0.00288301,0.020102913,-0.0057512736,0.047331505,-0.042730488,0.001327217,-0.024019677,0.0009762418,0.049360674,0.036383443,-0.023559576,0.017979365,-0.04393383,-0.010411279,-0.032325108,-0.052144878,0.037586786,0.034778982,-0.008075378,0.0025497312,0.060261548,-0.009856798,-0.0159502,0.000082766725,0.02574211,-0.010104545,0.0028137,0.0017843695,0.008789126,0.009526468,-0.026001655,0.039922684,-0.008777328,-0.008234644,0.03010718,-0.023559576,-0.0032325105,0.0018138632,0.057996433,0.015891211,0.013354752,0.039804712,-0.017365897,0.0018463063,0.007821732,0.012222193,0.0168822,-0.016563667,-0.01533673,0.028431937,0.015513691,0.026096035,0.02536459,0.019170912,0.010228419,-0.00853548,0.042470943,0.0152777415,-0.018451264,-0.05138984,-0.023288233,-0.009231531,-0.0075149974,0.032938577,-0.010623635,0.03456663,-0.02640277,-0.016115364,-0.009886292,0.00900148,-0.028172392,-0.016056376,0.053466197,0.004816323,0.020716382,0.0078040357,-0.022875322,-0.006063907,0.003904967,-0.021436028,-0.01205113,-0.026992643,0.01467607,0.0019185658,-0.005945932,-0.027912848,-0.0123519655,-0.053183056,-0.02199051,-0.01833329,0.023170259,-0.031263333,-0.013248575,0.00900148,-0.025671326,-0.024538767,0.008812721,-0.014841235,-0.014711463,-0.030413914,-0.037822735,0.003394726,-0.022662967,0.023146663,-0.012458143,-0.045656264,0.024161248,-0.014381133,-0.03131052,0.03128693,0.018227113,0.036029518,-0.02602525,-0.028597102,-0.013401941,0.043697882,0.039828304,-0.0090427715,0.029894825,-0.041479953,-0.007526795,-0.027039833,-0.036642984,0.003671967,-0.00923743,0.008323125,0.020657394,0.0009209411,0.01786139,-0.024892692,-0.030083584,0.01795577,0.056391973,0.01626873,0.024774717,0.015372122,-0.023123069,-0.009437988,-0.010063254,-0.007196465,0.026072439,0.0010544001,0.02883305,-0.024255628,-0.000098619596,0.007520896,-0.02039785,0.011077837,-0.0023373766,-0.0033416373,-0.013531714,0.024114057,0.028549911,0.007609377,0.0123283705,-0.019194506,0.012092421,0.006122894,-0.01026971,-0.01181518,-0.011071939,0.030508293,-0.008989682,0.006016717,0.00834672,0.009839102,-0.0201619,0.01116042,-0.003132232,0.01771982,-0.023665752,0.0039492077,-0.042730488,-0.010847786,-0.024208438,0.0033740804,0.010181229,-0.0025733262,-0.0019746039,0.010334596,-0.0041999044,0.036878936,0.0022061295,0.009184341,-0.019678203,0.014746855,-0.00052240735,0.029611684,0.007821732,-0.004459449,0.042140614,-0.0018905468,0.023276435,0.0031853206,0.038860913,0.0003264585,-0.0015292489,-0.010517457,-0.018722607,-0.013189587,-0.01744848,-0.009856798,0.027747683,0.025718516,0.0036513214,0.004052436,-0.017755214,-0.0010374412,-0.006205477,0.010912673,0.0025394084,-0.022214662,0.0014267582,0.012953637,-0.018097341,0.008500087,0.009325911,0.0027266934,0.04336755,-0.031121762,-0.0030039344,0.001566116,-0.02460955,0.032679033,0.02405507,0.008334923,0.012552523,0.0011495174,0.022898916,0.010092747,-0.038955294,0.0492191,-0.013968221,0.0023241043,0.0010101596,0.0023801425,-0.02053942,-0.029611684,0.0042411955,0.00628216,-0.00417336,-0.009266924,-0.008924796,-0.016351312,0.026921859,0.011620522,0.028998217,-0.0014621507,0.013260372,-0.049171913,0.021070307,-0.006022616,-0.028431937,-0.048369683,0.03338688,0.0065476038,-0.008930695,0.025671326,-0.013791258,0.023123069,-0.0074383137,0.010116342,0.012753081,-0.012753081,0.048416875,0.0021264965,-0.02963528,-0.014204171,0.020610204,0.00045494048,0.02939933,0.011537939,0.003132232,-0.061252538,-0.0053855516,-0.022887118,0.0065476038,0.015844021,-0.005134855,0.019866964,-0.012918245,0.018451264,0.047756214,-0.012015738,-0.000026751717,0.0031912194,-0.018168125,-0.018097341,-0.0020321165,-0.0011355078,-0.028455531,0.0010190076,-0.042636108,0.017660834,0.0022724904,-0.01945405,0.0057217795,0.028054416,-0.012175003,0.011048344,0.0012851884,0.008358518,-0.004252993,-0.0071669715,0.007249554,-0.013048017,0.045656264,-0.0005965103,-0.010664926,-0.011195812,0.042706892,0.0019923002,0.009231531,0.022674764,-0.008010492,-0.036029518,0.0105115585,-0.014050803,0.020338863,-0.012186801,-0.016681643,-0.0004210227,0.0017327555,-0.007868921,0.011337382,-0.00085974165,0.002334427,0.02930495,-0.00019465848,0.021129293,-0.03718567,-0.01889957,0.01856924,0.016280528,0.012753081,0.008429302,-0.020515826,0.0034124223,0.0048871078,0.006854338,-0.0065535023,0.01790858,-0.024633147,-0.012918245,0.008948391,-0.011844674,0.014357538,-0.033410475,-0.0145462975,-0.02944652,-0.0021441928,-0.021412434,-0.024798311,-0.04084289,-0.017106352,-0.019029342,0.0141805755,0.02517583,-0.015808629,0.00013880477,0.009968874,-0.013048017,0.004300183,0.037869923,0.006063907,-0.02522302,-0.010198925,0.07356911,-0.028762266,0.0059665777,0.024633147,0.071870275,0.013567107,-0.029776849,0.015431109,0.055920076,0.005285273,0.0010529255,0.013059814,-0.012151409,0.02006752,0.020480432,-0.0048723607,0.00426774,-0.007060794,0.025246616,-0.006199578,0.004418158,0.0033711311,0.026379174,-0.027346568,0.02930495,0.017283315,-0.023512386,-0.017472073,0.013142398,0.008848113,0.0023609714,0.006494515,0.03239589,0.016941188,-0.005217437,0.00007774358,0.02030347,-0.018592834,-0.01940686,-0.0126587,0.0159502,-0.026520744,-0.016846808,0.018451264,-0.0052026906,-0.02902181,-0.010847786,0.0010897926,0.01477045,0.023394411,-0.004096676,0.0314049,-0.0074737063,-0.0015823375,-0.021341648,0.015737843,-0.038742937,-0.017943973,-0.011779788,-0.03020156,-0.014074398,-0.012599713,0.0013987392,-0.0026337884,0.021730965,0.01294184,0.0013780936,-0.0031027384,0.0239135,0.0009025075,0.015879413,0.008730138,-0.024703931,0.0039580557,-0.004459449,0.011720801,0.0025954465,-0.054221235,0.005665742,0.044334944,-0.02583649,0.02925776,-0.028903836,0.042447347,-0.0025644782,0.012682295,0.013956424,-0.020291673,0.008222846,-0.036737364,-0.042990033,-0.011148622,-0.009343607,0.0422114,-0.0015307235,-0.034330677,0.04181028,0.009721126,0.0012579068,-0.024774717,0.00015180044,-0.03501493,-0.037681162,0.021459624,-0.023465196,-0.013378347,-0.0094143925,0.0014105367,-0.008370315,-0.011950851,-0.0049490444,-0.023559576,-0.019300684,0.03409473,-0.011773889,0.0089071,0.017932177,-0.03671377,-0.026190415,-0.00064111955,-0.0006083078,-0.004356221,0.030036394,-0.014687868,0.02602525,-0.022002308,-0.012859258,-0.0506348,-0.026567934,0.013248575,-0.013968221,-0.018805189,-0.012646903,-0.038318228,-0.048275303,-0.015360325,0.030909408,0.04055975,0.019949546,-0.029281355,0.032041967,-0.0052203867,-0.024444386,0.0074560097,0.0060462104,-0.038530584,0.014215969,0.00361003,-0.013968221,-0.008871708,0.004577424,0.017106352,-0.0058780964,0.008901202,0.012481738,-0.031664446,-0.01771982,0.009243329,-0.00036590634,0.0041674613,-0.0014982804,0.02963528,-0.017684428,-0.0076978584,-0.019902356,-0.006895629,0.034826174,-0.004055385,-0.0079220105,0.006978212,0.027606113,-0.04346193,-0.0069664144,0.028337557,-0.024845501,-0.037398025,0.014664273,-0.01786139,0.044382136,-0.0047425884,0.0017519264,-0.02232084,0.011461256,-0.041220408,-0.0119685475,0.011077837,0.004196955,-0.028125202,0.018026555,0.023807323,0.019678203,0.017943973,0.009856798,-0.009113557,-0.021742763,0.0013567107,0.024279222,-0.023760132,0.00008143029,-0.033174526,0.0029906621,0.020150103,0.023453398,-0.006529907,-0.011986244,0.030815028,0.01724792,-0.03362283,0.023406208,-0.011042445,0.02020909,-0.026072439,0.010948065,0.015018197,-0.018746203,0.032608245,-0.033504855,0.010853685,-0.07418258,0.012871055,0.0295409,0.009373101,-0.0038607267,0.0006326401,0.004019993,-0.010995255,-0.02279274,0.019701798,-0.01795577,0.0030319535,-0.003315093,0.00042692144,-0.010098646,0.010193027,0.021872535,-0.00006156812,-0.021506814,0.0013235302,0.0036277263,0.024467982,0.0007557763,0.0043326262,-0.005367855,0.009579557,0.028290367,-0.011125027,0.0076801623,-0.032513864,0.013744069,0.0034212703,-0.004120271,-0.031853206,0.017129947,0.016705237,0.020987725,-0.04013504,0.003347536,0.014015411,0.023288233,0.010116342,0.0031528776,-0.014251361,0.00328265,-0.024821907,0.015348527,-0.0058456534,0.026638718,0.024656741,0.04211702,-0.013378347,0.0012276757,-0.0152777415,-0.03933281,0.02883305,-0.0056863874,-0.02987123,0.02255679,0.017790606,-0.010075051,-0.02987123,-0.0037633975,-0.021966916,-0.032419488,-0.002245946,0.030815028,0.022250054,-0.03072065,-0.00806358,-0.015678857,0.049030345,0.04973819,0.028667886,-0.022946106,-0.0076978584,-0.033174526,-0.006718667,0.017743416,0.014050803,-0.02217927,-0.004412259,-0.03414192,-0.009992469,-0.009213835,-0.004450601,0.017696226,-0.014227766,-0.014404728,0.016162554,0.031688042,-0.03418911,-0.017519264,-0.00919024,-0.013555309,-0.0026795035,-0.0089071,-0.036194682,-0.007957403,-0.003427169,-0.021282662,0.023748334,-0.04284846,-0.003872524,0.022969702,0.019442253,0.037067696,-0.001725382,0.0043827654,0.017165339]},{"id":"interface-APIEmojiWithUser","type":"interface","source":"main","text":"Interface: APIEmojiWithUser\nProperties: user: APIUserPartial","meta":{"url":"/docs/typedefs/APIEmojiWithUser"},"embedding":[-0.0023535634,-0.012847248,-0.014716392,0.05318337,0.0060248733,-0.02821161,0.0048036994,0.041918665,0.029831534,-0.03185021,-0.035189748,-0.02472254,-0.0075077275,-0.010186833,-0.013046623,-0.039052643,-0.008604292,0.02741411,-0.032722477,0.028660204,0.01248588,0.026840905,0.050516725,0.035015292,0.03885327,0.020809801,-0.038155455,0.00047273762,-0.017632257,-0.028410986,-0.025893873,-0.031277005,0.075064816,-0.005031112,0.021918826,0.0023893889,0.013121389,0.055226967,-0.0060279886,0.003432994,-0.03688444,-0.062853076,-0.0154266665,0.017121358,-0.056074314,0.035688184,0.020224135,0.06330167,0.026865827,0.0071276682,-0.0019485824,0.009931384,0.016186785,0.019264642,-0.022442186,-0.047127344,-0.0017881475,-0.003211812,-0.068286054,0.03227388,-0.019389251,-0.037532408,0.027763015,-0.0046572834,-0.04316476,-0.0026510688,-0.013931352,0.042292494,0.011993673,-0.03668506,0.0537815,0.0009719548,-0.06474714,0.043413978,0.050167818,-0.022467108,-0.017482724,0.0127350995,-0.011756915,-0.0424171,-0.0005560703,0.050616413,-0.04745133,-0.037308108,-0.021258395,-0.010355056,-0.07665981,-0.014342563,-0.04381273,-0.025445277,0.024012268,0.00818685,-0.07705857,-0.04770055,0.018404836,-0.0071276682,-0.004872235,-0.0012437594,-0.01013699,0.03197482,0.03521467,-0.0094454065,-0.08937,0.011003027,0.009894001,-0.008355073,0.015314518,0.0076634893,-0.06659136,0.0070030587,-0.042716164,0.045158513,0.013644749,-0.036834594,-0.013034163,-0.008024857,0.015326979,-0.0024439055,0.017221045,-0.033245835,-0.029557394,-0.014130727,0.04665383,-0.0028442137,0.0036572914,-0.021993592,-0.03823022,-0.024336252,-0.06394964,-0.024111954,0.011339473,-0.020772418,-0.0014049731,0.02366336,-0.0043395287,-0.020199213,-0.02092195,0.013619828,-0.047251955,-0.007202434,-0.008747593,-0.010697733,-0.01130832,-0.013495218,-0.057121035,-0.0067725307,-0.05343259,0.022604179,-0.018566828,0.01702167,-0.0017663409,0.001716497,-0.025133753,0.011059101,-0.0009524845,-0.016161863,-0.03314615,-0.019576166,-0.026292622,-0.031526227,0.0016697685,-0.06738886,0.010766268,-0.038255144,0.000070384944,0.001962601,0.022068357,-0.009962536,-0.030529348,-0.012622951,-0.008610522,-0.018766204,-0.08264108,-0.019015422,-0.06659136,-0.058068067,0.030778568,-0.015700808,-0.09365656,0.0008816128,0.04513359,0.059214476,-0.014267798,-0.06016151,0.0126790255,-0.012629181,0.00039719304,0.03314615,0.04196851,-0.032149274,0.012230431,0.04159468,0.025644653,-0.012566877,0.029607238,-0.036610298,0.046230156,-0.049245708,-0.017196123,-0.011800528,0.027837781,0.04732672,0.055575874,0.010847264,0.021993592,-0.03264771,-0.017245967,-0.01715874,-0.037981,-0.008355073,0.009526403,0.014679009,-0.019202337,-0.03264771,-0.025470199,0.010323904,-0.0067413785,0.029682003,-0.007563802,0.025844028,-0.041818976,0.044061948,0.09330766,-0.024161799,0.020498278,-0.0073768874,0.017619796,-0.012068438,-0.025968637,0.050815787,-0.028410986,0.04017413,-0.038554206,-0.023613516,0.015962487,-0.032423414,0.026566764,0.009638552,0.008280307,0.007750716,-0.04147007,-0.0043177223,-0.008112084,0.06275339,0.0038815886,0.016610458,0.017756866,0.002671318,-0.002289701,0.036585376,0.06320198,0.023601055,0.033270758,0.025270823,0.016884599,0.035837717,-0.01976308,0.06439824,-0.0024127532,0.023189845,0.041445147,-0.024211643,-0.0021526306,0.013171233,0.011489004,-0.049893677,0.00050389,0.025968637,-0.000991425,0.021644685,-0.005538896,0.017071513,0.016473386,0.041644525,-0.016398622,0.000802953,0.04316476,0.031301927,-0.04279093,0.0003773334,-0.05188743,0.01988769,0.017719483,0.058167756,0.0065606944,0.06389979,0.02679106,-0.023887657,-0.018217921,0.028660204,0.030903177,0.031301927,0.06399948,-0.027937468,0.02574434,0.035264514,0.05826744,-0.030878255,0.048846956,0.02144531,0.0014073096,-0.043314293,0.013046623,-0.056921657,0.016610458,-0.0051245694,0.04535789,0.009968767,0.010298982,-0.0062647467,0.0017476494,-0.025358051,-0.01469147,0.0018146271,-0.047276877,-0.02599356,0.010436052,-0.0010895551,-0.02093441,0.031152396,-0.020361206,-0.018616673,-0.019725697,-0.057918534,-0.0120248245,-0.008728902,0.012710177,-0.042840775,0.027139967,-0.010174372,0.028959267,-0.032174196,-0.019027883,-0.013532601,0.03040474,0.0027507567,0.001016347,0.07337012,0.011887754,0.015189908,0.041794054,-0.030604115,-0.018230382,-0.017495185,-0.0017710137,-0.021706989,-0.038055766,0.020111987,-0.026467076,-0.00054516696,-0.025370512,0.02002476,-0.016498309,-0.022255272,0.022778632,-0.030230286,0.020323824,-0.03511498,-0.04132054,0.051937275,0.013769359,-0.023289531,0.006330167,0.016274013,0.006566925,-0.027189812,0.00585042,0.01675999,0.0029968605,-0.079849824,-0.04156976,-0.013221077,0.013383069,0.017869014,-0.0026744332,0.025968637,-0.04665383,-0.015588659,-0.016361238,0.02689075,0.049046334,-0.0030077638,0.0054111714,-0.041719288,0.01248588,-0.04887188,0.004510867,0.012404884,-0.025569886,0.044136714,0.07242309,-0.02913372,-0.0021354968,-0.032149274,0.025968637,0.0007920497,0.008031088,0.032174196,-0.0008878433,-0.026242778,-0.012535724,-0.026940592,0.047625784,-0.0075575714,-0.023488907,0.021931287,-0.01612448,0.008460991,0.024660237,0.0072398167,0.009968767,-0.04513359,0.024859613,0.014728853,0.042367257,-0.017856553,0.007358196,-0.06080948,0.027638406,0.019015422,-0.01951386,-0.04054796,-0.006149483,-0.042666323,0.036759827,-0.004542019,0.04976907,0.012809865,-0.025470199,-0.03705889,0.00715259,0.02158238,0.0014664991,-0.039052643,0.0025015373,-0.019538783,0.06943246,0.03369443,-0.049121097,0.04017413,-0.025470199,-0.016049715,0.017719483,-0.018890813,-0.0016136941,-0.04069749,0.013208616,-0.023426602,-0.018616673,-0.012386193,-0.04054796,0.00058254984,0.0032398491,0.052036963,-0.017146278,-0.01533944,0.0037195962,0.055974625,-0.009115191,0.015389284,0.027588563,0.008018627,-0.0074267313,0.07062871,0.038554206,-0.016884599,-0.010984335,0.028660204,-0.0034205331,0.0049719224,-0.00988154,-0.0074828058,0.026342466,-0.010055994,-0.015002994,-0.03219912,0.022703866,-0.04251679,0.0005439987,0.005760078,-0.013171233,0.03511498,-0.00046767536,-0.012323888,0.017233506,0.083538264,0.051688056,-0.019401712,-0.018006084,0.016809832,0.009333258,-0.0020186752,0.013457835,-0.013931352,0.043413978,-0.023837814,0.019389251,-0.09181234,0.012946936,-0.031775445,0.06988105,-0.01742042,-0.011862832,0.007700872,-0.002495307,0.020049682,0.0038037077,-0.025445277,-0.046205234,-0.011021717,-0.011364394,-0.007900247,-0.049295552,-0.02651692,-0.025495121,0.0097507,-0.014641626,0.029457705,0.00741427,0.031277005,0.010554432,0.0015700808,0.031949896,-0.017383037,0.0040871943,-0.015102682,-0.004538904,-0.08054764,-0.004261648,-0.012797404,0.014055961,-0.0049937293,0.020124448,-0.0058659962,-0.022018515,0.0039843917,-0.036560453,-0.021806678,0.02796239,-0.011906446,-0.008816129,-0.012629181,0.017295811,0.002241415,-0.0070217503,0.03219912,-0.005962569,-0.023476446,0.019189876,-0.0143799465,0.0022741249,-0.0017211699,0.05383134,-0.045008983,0.0124422675,0.025108831,0.01872882,-0.022055896,0.00383486,-0.008604292,-0.044410855,-0.025196059,0.021096403,-0.009862849,-0.041918665,0.019164953,0.03197482,-0.036211547,-0.005108993,0.025407894,-0.021918826,0.015152525,-0.002609013,0.06998074,0.009277184,-0.0030264554,0.008436069,0.042167883,0.007837943,0.02130824,-0.02340168,-0.012529493,-0.016361238,0.05313353,0.010753808,-0.025794184,-0.03040474,-0.02443594,-0.01624909,0.034915607,0.024336252,-0.023862736,-0.014504556,0.0080933925,-0.026491998,0.0043083765,0.04249187,-0.012242892,-0.0092647225,-0.010753808,0.008479682,-0.015376823,-0.022816015,0.0035326818,0.045756638,0.033719353,0.022030974,-0.012685256,-0.03628631,0.017333193,-0.019912612,0.020946871,-0.013831664,-0.027463952,-0.019700775,0.019314487,-0.017707022,-0.027663328,0.0069532148,-0.012847248,-0.019925073,-0.013146311,-0.01613694,0.024485784,0.004641707,0.03860405,-0.01285971,-0.0149656115,-0.00083488424,-0.010679041,-0.0390028,-0.0028551172,0.01144539,-0.010006149,0.025943715,-0.026616607,0.0027460838,0.035812795,-0.0345667,-0.0037195962,-0.010591814,-0.013594906,0.02247957,0.017968703,0.019140033,-0.00558874,-0.021108864,-0.0026199166,-0.018043468,0.01613694,-0.016859677,-0.022604179,0.022853399,-0.009208648,0.009557555,-0.011414238,-0.0038847039,0.05198712,-0.011351933,-0.0024641545,-0.011750684,0.05263509,-0.005408056,-0.026616607,-0.0027414109,0.026467076,-0.0062772078,0.016049715,-0.01430518,0.023775509,0.0129593965,0.03623647,-0.012099591,0.009576247,0.012641642,-0.01052951,0.0012873728,-0.054778375,0.006133907,-0.004242956,0.017719483,-0.017046591,-0.032946773,-0.020722574,0.026666451,-0.035414044,-0.005953223,-0.017133817,-0.014105805,-0.030903177,-0.0006631566,0.010404901,0.032174196,-0.01403104,0.01911511,-0.007894017,0.02210574,-0.01611202,0.007894017,0.021383004,-0.02522098,-0.013993656,-0.018504523,0.0063145906,-0.01857929,0.017669639,0.0028333105,0.00053504243,0.016199246,0.014865924,-0.03155115,-0.0053114835,-0.012068438,0.020523198,0.008791206,0.022654023,-0.04027382,-0.0018691438,0.01416811,0.030329973,0.0038628972,0.011931368,-0.04196851,0.04044827,-0.0049314243,-0.005149491,0.034915607,0.036759827,0.02249203,-0.026641529,-0.008012396,-0.03209943,0.009794313,0.011127636,-0.03715858,0.013819203,0.022467108,-0.0036604065,-0.028834658,-0.007451653,-0.014703931,-0.0158628,-0.03389381,0.008884664,-0.026990436,0.025308207,-0.0023286417,0.032597866,-0.021569919,-0.018554367,-0.0058473046,0.008342612,-0.0045856326,-0.01378182,0.0025264593,0.0029329981,-0.00069002557,0.0045575956,-0.07955076,-0.0028847118,0.004214919,0.039750457,-0.023376757,0.002749199,-0.016411083,-0.0028083886,0.042267572,-0.031924974,0.030728724,-0.015638502,-0.039426472,-0.0027896971,-0.01638616,0.025295746,0.039850146,-0.04276601,-0.012510803,-0.01675999,-0.011987442,-0.01027406,-0.0023161806,0.023052773,0.0042055734,-0.053083684,-0.017495185,-0.03003091,-0.0055202045,-0.0060373344,-0.020984255,-0.020087065,-0.024361175,-0.0044952906,-0.007295891,-0.023601055,0.013619828,0.033594742,0.011501465,-0.06943246,0.0029034032,0.04874727,-0.028635282,0.01430518,-0.0061183306,-0.009171265,0.03314615,-0.004510867,-0.0024127532,0.02965708,-0.047526095,-0.0077943294,-0.042741086,-0.0053737885,-0.00435199,0.011432929,-0.026666451,0.0426414,-0.0046354765,-0.04834852,-0.00023928934,0.02716489,0.041918665,-0.007844173,-0.0061183306,-0.03237357,0.03576295,0.026417231,-0.037108734,-0.024099493,0.007115207,0.00025330792,-0.0061868657,0.032523103,0.02806208,0.007732025,-0.019339407,-0.02223035,-0.03770686,0.006647921,-0.01053574,0.007501497,0.0074080396,-0.032149274,0.042741086,-0.013956274,0.027837781,-0.059862446,0.011420469,-0.032548025,-0.03641092,0.03808069,0.014180571,-0.0053644427,0.0051712976,-0.03603709,-0.00034851744,-0.041694365,-0.036834594,0.008566909,0.02599356,0.017046591,-0.003975046,0.03690936,-0.0080373185,0.008697749,0.000048067173,-0.0042834543,-0.0022305115,-0.021657147,0.014890846,-0.003613678,0.017046591,0.0049345396,-0.013582445,0.018429758,0.0045482498,-0.017183661,-0.044061948,-0.010946952,0.026491998,0.04849805,0.011495234,-0.027887626,0.027090123,-0.02599356,-0.005629238,0.04692797,-0.005099647,0.048572816,-0.010641659,-0.0056728516,-0.002985957,-0.0067912224,0.012355041,0.01285971,0.028809736,-0.015650963,-0.0063862414,0.03304646,-0.005096532,-0.03857913,-0.017756866,-0.04615539,-0.018429758,0.03237357,-0.0090404255,0.010124529,0.04072241,-0.040323664,-0.026591685,-0.027488874,0.011121405,-0.0036074475,0.032572944,0.034118105,0.0062740925,0.017657178,0.039949834,-0.04122085,0.017146278,0.010897108,-0.01859175,0.013632288,-0.018703898,0.042367257,0.018230382,0.004978153,-0.0038878191,0.022865858,-0.007563802,0.0049937293,-0.03145146,0.027663328,0.009202418,0.017856553,-0.020884566,-0.029009111,0.005943877,0.016984286,0.007096516,0.01652323,-0.004629246,-0.0355885,0.0107413465,-0.030055832,0.04618031,0.0058597657,-0.06370042,0.007551341,-0.026766138,-0.015825417,0.006579386,0.01520237,-0.0016635379,-0.0003699347,-0.020710113,-0.022030974,0.05876588,0.02144531,0.011545078,0.030080754,-0.030903177,-0.011065331,-0.029009111,-0.036759827,0.018379914,-0.02534559,0.006915832,0.013233538,0.021893904,0.02454809,0.011974981,-0.016211707,0.041245773,0.021258395,0.021569919,0.0013925121,-0.0006339513,0.018031007,-0.025158675,0.01053574,-0.009351949,0.01104664,-0.0143799465,0.012504572,-0.04196851,-0.006189981,-0.003445455,0.01611202,0.021769295,0.015800495,0.006784992,0.007881557,0.018317608,0.010323904,0.008934507,-0.019974917,-0.032572944,0.005900264,0.03431748,0.0010264715,-0.0022071472,-0.025507582,0.024946839,-0.02171945,-0.0010101164,-0.008460991,0.010105837,-0.03209943,0.0065544643,-0.005781885,-0.016485848,-0.011476543,0.0014407983,-0.021482693,-0.009202418,-0.008199311,-0.0077071027,0.004510867,0.015326979,-0.0039220867,0.02689075,-0.0327474,0.016074637,-0.013295842,-0.013956274,-0.0026105708,0.001507776,0.0029766115,0.021906365,0.0004797469,-0.0049314243,0.02275371,0.012099591,0.005314599,-0.016274013,0.032672632,-0.0030981058,0.017221045,0.014517017,-0.022130663,-0.03860405,-0.01794378,0.005875342,0.025108831,0.03603709,-0.0077257943,0.0005992942,0.007314583,-0.0007161157,0.014118266,0.019326946,0.009520172,-0.018354991,-0.017333193,0.019252181,-0.006903371,-0.0061962116,0.013719515,0.02237988,0.01910265,-0.007869096,-0.00871021,-0.008404916,-0.01675999,0.05577525,0.025432816,-0.00038025394,-0.00031619682,0.004912733,0.018778665,0.02067273,-0.019451557,0.029358018,-0.03264771,0.017981162,0.013295842,0.015638502,-0.019414173,-0.011775605,-0.0113830855,0.014093344,0.013208616,0.0022242812,0.0055575874,-0.019638471,-0.0029516895,0.004028005,0.011669688,0.00096183026,0.003744518,-0.04069749,0.0017647833,-0.018429758,-0.010429822,-0.007084055,0.020386128,-0.029283252,-0.021245934,0.028759893,0.006485929,0.048846956,0.024635315,0.0026728755,0.056074314,0.022816015,0.038130533,0.0029220947,-0.0016853446,-0.044385932,0.038928036,0.014616705,0.011158789,0.011800528,-0.01638616,-0.062205106,0.0010132317,-0.0013325438,-0.017046591,0.019812925,-0.016996747,0.008436069,0.008355073,0.009894001,0.027015358,0.0015140064,-0.012193047,-0.009738239,-0.010080916,-0.034790996,-0.0051339148,-0.011806758,-0.057918534,-0.009688395,-0.037756704,0.006180635,-0.0022196083,-0.049694303,0.020959333,-0.0015116701,0.0006997607,-0.0051339148,-0.005009305,0.022791093,-0.022678945,0.009669703,0.004937655,0.00071183225,0.05343259,-0.010679041,0.008180619,-0.0039220867,-0.0036292542,-0.013009241,0.0028987306,0.027189812,0.023015391,-0.012006134,-0.0025794185,-0.019202337,-0.0042055734,-0.006152598,-0.015513893,0.006342628,-0.0038442058,0.021706989,0.016585536,-0.0004400276,0.0014532593,0.014629166,0.0039719306,0.015164986,-0.026292622,-0.00792517,0.005376904,-0.0012445382,0.027364265,0.019439096,-0.0069905976,0.0011214863,-0.0044174097,-0.0009431388,-0.02731442,0.009121422,-0.005199335,-0.010130759,0.009165035,-0.021731911,0.019675853,-0.030130597,0.009432945,0.0124422675,-0.04224265,-0.012598029,-0.0054921675,-0.02950755,-0.015788034,0.0048161605,-0.0061962116,0.041644525,0.031177318,0.0005439987,0.018367453,-0.012112051,0.0002840709,0.05432978,0.015875261,-0.023426602,-0.004034235,0.0662923,-0.013059084,-0.0034298787,0.038529284,0.04710242,-0.018217921,-0.009339488,-0.013993656,0.046205234,0.00079127087,0.0065046204,-0.009931384,-0.003626139,0.024523167,0.0223425,0.0023488908,-0.012392423,0.010772498,0.027812859,0.015788034,0.0021479577,0.0053488663,0.010865956,-0.006666613,0.0040871943,0.050915476,0.018031007,0.0015833206,-0.004700897,0.01014322,0.0058192676,-0.006591847,0.025445277,-0.0053924797,0.0036323695,0.026840905,0.039700612,0.0119126765,0.020174291,-0.03302154,0.021844061,0.0076385676,-0.0032460797,-0.012847248,0.00017046202,-0.03406826,0.022915702,-0.0032928083,-0.010093376,0.026043404,0.011881524,0.030753646,0.0073644263,0.006735148,-0.0059874905,0.017245967,0.010417362,-0.00585042,-0.016735068,0.0028115038,0.01131455,-0.025108831,0.00949525,0.009588707,0.035713106,0.024535628,-0.0028987306,-0.0006818481,0.010423591,-0.025171136,0.000076761455,0.017906398,-0.025943715,-0.015314518,-0.0071401293,-0.021544997,-0.011756915,-0.029308174,-0.016560614,-0.005286562,-0.03521467,0.02599356,0.010523279,-0.028111922,-0.003314615,0.01728335,-0.012454728,-0.039825223,-0.015675886,-0.005404941,-0.00011331684,-0.024136877,-0.009208648,0.025420355,-0.0068846797,-0.034766074,0.018417297,-0.024872074,0.038703736,0.015887722,-0.0057663084,-0.0070653637,-0.014579321,0.030080754,-0.018678976,-0.00532706,-0.011794297,-0.018492062,-0.014915767,-0.022006053,-0.02079734,-0.012897092,0.007071594,-0.0071401293,-0.027239656,0.006679074,0.041918665,0.0013099583,-0.020087065,-0.009015503,-0.027015358,-0.0031370462,0.027364265,-0.0013831664,0.002691567,0.0035638341,-0.017059052,-0.019638471,0.0033862654,-0.008959429,-0.019962456,0.011744454,-0.008130776,-0.013769359,-0.024560548,-0.0067663006,-0.008753823,0.03499037,0.014878385,-0.019812925,0.050666258,-0.0031043363,-0.012946936,-0.016934443,0.002404965,-0.0045357887,0.013034163,-0.025158675,-0.010610506,0.004560711,0.0171712,0.040248897,0.008772515,0.008024857,0.02586895,-0.016348777,-0.005722695,0.00025583906,-0.0028395408,0.026716296,-0.0096260905,-0.0060279886,-0.0424171,0.0043613357,-0.005962569,-0.015974948,0.016161863,0.012971858,0.01130832,-0.0010879975,0.0029158643,-0.03170068,-0.042068195,0.0055825096,-0.016635379,-0.033445213,-0.023700744,0.025158675,0.04540773,0.022865858,-0.008124545,-0.021407926,0.008672827,-0.043488745,-0.012411115,0.038554206,0.000013069403,-0.013171233,-0.00050350063,0.025108831,0.023563672,0.035414044,-0.022641562,0.009158804,-0.008317689,-0.005342636,0.003915856,-0.019962456,-0.0037663246,-0.043762885,0.00047468464,0.025794184,0.0020186752,0.015812956,0.0064547765,0.019052805,-0.00029731067,-0.02468516,0.033370446,-0.018379914,0.026990436,0.0046448223,0.035414044,-0.0013465623,-0.01585034,0.03690936,0.00040381294,0.01910265,-0.06858511,-0.002372255,0.043314293,0.002573188,0.016747529,-0.003457916,0.013233538,-0.011065331,-0.03222404,0.03339537,-0.010473436,-0.012672795,-0.008105854,-0.000338977,-0.0044298708,-0.0015046607,0.012305196,-0.0041027707,-0.03446701,0.002573188,0.001491421,0.046903048,-0.03641092,0.014753775,0.001872259,-0.00015566463,0.048647583,-0.02078488,0.027115045,-0.027638406,0.014816079,0.014018578,-0.008778745,-0.017121358,0.0055700485,0.027264576,0.015950026,0.011800528,0.022143124,0.04239218,0.00936441,0.031177318,0.0034921835,-0.013158772,0.037781626,-0.007619876,0.008249154,0.013993656,0.032797243,0.03379412,0.038429596,0.014654087,0.028037157,0.0065606944,-0.027339343,0.023364298,-0.017183661,-0.031576067,0.008959429,-0.007875326,-0.007819251,-0.039551083,-0.003928317,-0.010978105,-0.01715874,-0.0032990389,0.034591623,-0.00036078368,-0.047401488,0.0009509269,-0.033195995,0.046977814,0.047526095,0.00988154,-0.011258476,0.012971858,-0.0043488746,-0.0060653714,-0.009943845,-0.007476575,-0.000532706,-0.03688444,-0.024909455,0.021133786,-0.0038940494,-0.007975013,0.018292688,-0.0070030587,-0.049121097,0.012660334,0.010068455,0.004224265,-0.001179897,-0.0054579,-0.05642322,-0.027115045,0.0073021217,0.023426602,-0.01844222,-0.017731944,-0.0077444855,0.026491998,-0.0020700768,-0.012080899,0.0074703447,-0.0077133332,0.014990533,-0.02741411,-0.01365721,0.0113270115]},{"id":"interface-APIErrorBody","type":"interface","source":"main","text":"Interface: APIErrorBody\nProperties: code: string, errors: { path: string; message: string; code?: string; }[], message: string","meta":{"url":"/docs/typedefs/APIErrorBody"},"embedding":[-0.0037164525,0.01809109,0.009607697,0.05178617,0.031912092,-0.0041962694,-0.02121416,-0.0068934658,0.03302504,-0.0025637562,-0.010300451,-0.0020484496,0.017137134,-0.011958517,0.006706082,0.010749037,0.026347348,0.027142312,0.01342352,0.044699643,0.02332649,-0.06450558,0.05187702,0.02382618,0.03245721,-0.011742741,0.010561653,-0.023939747,0.0014444196,0.0055760983,0.060417198,-0.032161936,0.05846386,0.009198859,0.017159848,0.037408695,0.022020478,0.010726324,0.026233783,-0.036727298,-0.012128866,-0.012480921,-0.023667188,-0.0046221428,-0.11138569,0.021305012,0.024848277,0.012287859,0.0120153,0.00741587,-0.00040422456,-0.007262556,0.009323782,0.051695317,-0.0047811354,0.028368827,-0.080223136,0.036295746,-0.020918887,0.009505488,0.045290183,0.008392539,-0.049605697,-0.017614111,-0.033683725,-0.007728177,-0.0089092655,0.040293273,0.014502399,0.030685578,0.052740127,0.028754951,0.002782371,0.015785696,-0.008125659,-0.011924447,0.0009553753,0.011055666,0.030117746,-0.08113167,-0.006104181,0.032479923,-0.043654833,-0.054284625,-0.005050855,0.0046221428,-0.04195134,0.00426157,-0.04631228,-0.011373651,-0.020680398,0.009443026,-0.047334377,0.003429698,-0.007909883,-0.046062436,-0.048379183,0.002339463,0.006615229,-0.0071035633,0.062279683,-0.015388215,-0.0218842,0.01647845,-0.015501781,-0.040315986,0.02231575,-0.03799924,-0.061507434,-0.041701496,-0.009238607,0.03711342,-0.026869753,-0.015535851,0.005048016,-0.017773105,0.004145165,-0.012355998,0.030594723,-0.017750392,0.0064789494,-0.0091591105,0.0113793295,-0.0146046085,-0.014343406,0.016637443,0.0051161554,-0.010141458,-0.050695933,0.0052439175,0.038339935,0.018193299,-0.03345659,0.040293273,-0.001604122,-0.0022273164,-0.023371916,0.049060583,-0.008074554,-0.0053347703,0.03640931,0.019272178,0.036795437,-0.02114602,-0.007830387,-0.017091706,0.021202803,0.009528201,-0.001943401,0.016660156,0.0070183887,0.03654559,-0.0298679,0.00929539,0.0012449691,-0.0557837,0.039998002,0.010107389,-0.020657685,-0.036068615,-0.011731384,-0.028777665,0.0027837905,0.0109193865,-0.006882109,0.016660156,0.037499547,-0.0143320495,-0.020725824,-0.016058255,-0.009425991,-0.020930244,-0.04869717,0.022974435,-0.021793347,-0.014036777,0.083085,-0.04281444,-0.028050842,-0.003744844,0.010828533,0.018908765,0.008846804,-0.008511784,-0.039112184,-0.0076600374,0.0172507,0.044676926,0.01708035,-0.028550534,-0.044086386,0.014797671,0.019453883,-0.004048634,0.021305012,-0.033206746,-0.022099975,-0.027142312,0.015535851,0.006206391,0.040702112,-0.009579306,0.06432387,0.0030889995,-0.041587926,-0.012333285,-0.038408075,-0.018976906,-0.024348585,-0.00049543235,0.039929863,-0.025461534,-0.01882927,-0.02037377,0.008631028,-0.0124468515,0.024076026,0.031503253,0.0023352043,0.0048066876,-0.017784461,0.050923068,0.05637424,-0.0511502,0.029459063,0.013082822,0.018942835,0.0072114514,-0.011055666,-0.012617201,-0.012492278,0.050923068,-0.015479067,0.014104918,0.015058873,-0.036136754,0.021759277,0.0042303395,-0.0034495723,0.0146046085,-0.024212306,-0.024416724,-0.03014046,0.046176,0.020612258,0.01970373,0.021134663,0.019306248,-0.0033757542,0.02174792,0.037408695,-0.0052467566,0.022940364,-0.0042473744,-0.0029271678,-0.006325635,0.027187739,-0.0018752612,-0.027528437,-0.009318103,0.019090472,-0.01198123,-0.033343025,0.003722131,-0.034387834,-0.07658902,0.04481321,0.0317531,-0.011038631,0.008818412,0.033002328,-0.010152815,0.05228586,-0.014207127,-0.021418577,-0.0067685433,0.022088619,0.045721736,-0.04090653,-0.0046562124,-0.0069445707,-0.002688679,-0.017580042,0.020987026,-0.01919268,0.024121452,-0.008579924,0.015206509,0.018817913,-0.0032366356,0.03225279,0.048878875,0.004778296,-0.029368209,0.001714849,0.035932332,0.03427427,-0.019533379,0.09008068,0.02291765,0.0018653242,-0.060598902,0.0022812602,-0.058918126,-0.030413019,0.03163953,0.01275348,0.038680635,0.020998383,-0.03057201,0.024007887,-0.042314753,-0.057282772,0.012390068,-0.042269327,-0.03647745,0.031435113,-0.060417198,-0.023576334,-0.02473471,0.007313661,-0.018465858,0.0007104983,-0.03302504,-0.033683725,-0.005326253,0.027369445,0.01120898,0.0023735329,0.044040956,-0.027437584,-0.03856707,0.010885317,0.0039180326,0.036909003,-0.02164571,-0.020078497,0.023246992,-0.00071333745,0.017784461,0.035591636,-0.009329461,-0.012617201,0.01617182,0.064551,-0.020748537,-0.03195752,-0.0042275004,-0.031866666,0.019215394,-0.0449722,0.020589545,-0.017296126,-0.0005181456,-0.033706438,0.030254025,-0.024689283,-0.024689283,-0.029527202,0.04638042,-0.0511502,-0.0040145637,-0.0093976,0.012265146,0.009255642,0.016217249,-0.010232311,-0.022065906,0.045426466,-0.035932332,0.038907766,0.0060019717,-0.048969727,-0.025893085,-0.020260204,0.0044006887,-0.06028092,-0.0062915655,0.005380197,-0.019328961,0.032298215,0.0683214,-0.047697786,0.0030293774,0.05923611,0.015024804,-0.019067759,0.016944071,0.0034211806,0.025438821,0.04456336,0.011447469,-0.061053168,-0.020805322,0.028573247,0.008449323,0.015433641,0.014502399,0.019930862,-0.043677546,0.02446215,0.012060726,0.012764837,0.018011592,0.013468946,-0.035319075,0.043586694,0.0055164765,0.01070361,-0.027414871,0.03148054,-0.04306429,0.021906912,0.020226134,0.0061268946,-0.060689755,0.034773957,-0.047061816,-0.020282917,0.01926082,0.008977405,-0.029277356,-0.0822219,0.0070865285,-0.017307483,-0.024348585,0.0014820384,-0.014650035,-0.03352473,-0.045699023,0.0004705898,0.030685578,-0.015354145,0.0036568304,0.029618055,-0.0056669516,0.01429798,-0.05900898,0.01278755,0.03902133,-0.028028129,0.014513755,0.015660774,0.014888524,-0.00095466553,-0.03372915,0.010186885,-0.008398217,0.0107092885,0.00007253151,-0.046698406,-0.012287859,-0.036727298,0.016398953,-0.03547807,-0.0069388924,0.011799525,-0.0127194105,-0.014525112,-0.0107092885,0.011600783,0.0255751,0.0071773813,0.003174174,0.024757423,-0.024053313,-0.027732857,-0.0131168915,-0.007654359,0.006177999,-0.055647418,0.00781903,0.023212923,-0.040293273,-0.0031457827,-0.02684704,-0.022395248,-0.028754951,-0.008318721,0.011822238,-0.037703965,-0.008472036,0.0137869315,-0.026688049,0.025983937,0.06332449,-0.005107638,-0.008875196,-0.022792729,0.03084457,-0.036636442,-0.011118127,0.021236872,-0.010255025,-0.013798289,-0.031934805,-0.057146493,-0.03554621,0.043609407,-0.030049607,0.04869717,-0.06078061,0.0014706817,0.0027937277,0.041042812,0.002000184,0.00865942,-0.060462624,-0.053012684,-0.0329569,0.028300688,0.007262556,-0.000926274,-0.021997765,-0.06318821,0.002413281,-0.024007887,0.015547208,-0.035250936,0.01936303,0.01946524,0.0029129721,0.03561435,-0.0032508313,0.00022819701,-0.027346732,-0.032866046,-0.006325635,0.007847422,0.008142694,0.010590045,-0.006785578,0.009425991,0.017091706,0.019964932,-0.009874578,-0.0059508667,-0.014559181,0.01050487,-0.03275248,0.0017176882,0.015444998,-0.005306379,0.043087002,-0.0036994177,0.030254025,-0.049832832,0.01613775,0.0054682107,0.0384535,0.008205155,-0.039998002,0.023110714,-0.029913327,0.026506342,0.014695461,0.023780754,-0.033842716,-0.017307483,0.009073936,0.00627453,-0.023417342,0.05987208,-0.028096268,0.0011157875,0.04077025,0.010215276,0.009352174,0.012094796,0.004312675,-0.0019462401,0.032230075,-0.013412164,0.05628339,-0.016716938,0.011890377,0.003023699,-0.03491024,0.01157807,-0.005110477,0.0048947018,-0.016864575,-0.006859396,0.069729626,-0.022838155,0.020623615,0.0348421,0.0068991445,0.019476596,0.012231075,0.06064433,0.012935186,0.032298215,-0.020294273,0.0141617,-0.009783724,0.035796054,0.016205892,0.0017176882,0.04251917,0.009584984,-0.020725824,0.021986408,-0.004190591,0.021270942,0.03007232,-0.0028065038,-0.022043193,0.01422984,0.0066436203,-0.0042104656,0.068139695,-0.03014046,-0.046970963,-0.02185013,-0.028754951,-0.029572628,-0.006785578,-0.0038555712,-0.025711378,-0.0015459193,-0.0023777916,-0.017727679,-0.0077849603,-0.009670159,0.0031543002,-0.00036767044,-0.038907766,-0.0014174477,-0.026120218,0.017262056,0.025257114,0.017829888,-0.0041366476,-0.009232929,0.049060583,-0.019010976,0.0103742685,-0.053512376,-0.012038013,0.0037192919,-0.0038640886,0.041133665,-0.03647745,0.0406794,-0.033842716,-0.026438203,-0.0005309218,-0.034773957,0.020010358,-0.016149107,-0.010828533,-0.008278973,0.023917034,0.02446215,-0.0037902705,-0.030458445,0.012390068,-0.014434259,-0.027596578,-0.00094685785,0.04329142,-0.0025027143,0.015354145,-0.03245721,0.00045781358,-0.0031656567,0.002443092,-0.035114657,0.0008318721,0.016319457,0.012072083,-0.01268534,0.00748401,0.047243524,0.003316132,0.0083016865,-0.025870372,-0.034705818,-0.0083641475,-0.023553621,0.0008886552,-0.041996766,-0.027982702,0.013673366,-0.0034211806,0.0052666306,-0.009249964,0.016092325,0.027096886,0.009164789,0.025393393,0.0020285756,0.013173674,0.0015217866,-0.0022571275,-0.023917034,0.0064392015,0.025143549,0.0097042285,0.01345759,-0.013026039,0.016921358,-0.018443145,-0.032298215,0.020498693,0.0077168206,0.039680015,0.043314133,0.008801377,-0.026233783,0.024984555,-0.0341607,0.0056896647,-0.025870372,0.03661373,-0.002034254,0.023417342,-0.0013876365,0.004551164,0.019022333,0.01016985,-0.05900898,0.008182442,0.01788667,-0.004236018,0.017023567,0.034751244,-0.0069616055,-0.014082204,-0.010010857,0.036045898,-0.026665336,0.009857543,-0.010317486,0.0018255761,0.021441292,0.023099357,0.0022258968,-0.0026929376,-0.024280446,-0.018375006,0.018102447,-0.01060708,-0.033252172,-0.027937276,-0.020146636,-0.0056328815,0.0070922067,-0.015376858,-0.027664717,0.0052978615,-0.05460261,-0.008443644,0.03765854,-0.0050451765,-0.023576334,0.0012449691,-0.045244757,-0.0037931097,-0.019272178,0.024553005,-0.009374887,-0.010243667,0.0034808028,-0.029481776,-0.011799525,-0.009034188,0.013207745,0.028868519,0.007904205,0.013253171,-0.0019008137,0.01254906,0.026778901,-0.051695317,-0.059917506,-0.022270324,-0.011197624,-0.0065130196,-0.005496602,0.009692872,-0.011328225,0.017443763,0.024757423,0.013264528,-0.008358469,0.0056811473,-0.014138987,-0.01960152,0.003466607,-0.0018227369,0.0372497,-0.04590344,0.01745512,0.013945925,-0.016932715,-0.043109715,-0.00714899,0.024484864,0.042473745,-0.0016921358,-0.03434241,-0.0056641125,0.02114602,-0.019885436,0.009323782,0.018897409,0.037953813,0.020566832,-0.048152052,0.035500783,-0.017477833,0.017829888,-0.01919268,0.013968638,0.03434241,0.027210452,0.048424613,0.015092943,0.06873024,-0.019771868,0.015195153,-0.020828035,0.027278593,0.045653597,0.000056428187,0.02167978,-0.007926918,0.0021790508,-0.008966048,0.010964813,-0.034614965,-0.005718056,-0.021838773,-0.056964785,-0.043950103,0.019590164,-0.008193798,0.0025112317,0.046562128,-0.02818712,0.023099357,-0.013775575,0.0144569725,-0.003245153,-0.004335388,-0.045562744,-0.016455736,0.021395864,0.0019150093,0.00044929612,0.04574445,-0.050468802,0.035387214,-0.049287714,-0.046743833,0.0021350437,-0.0053716796,-0.025915798,-0.020316986,0.0441091,-0.0116518885,-0.015501781,-0.014911237,-0.019351674,0.0085515315,-0.027846422,0.014286623,0.016205892,0.044018243,-0.008273295,0.0028164408,0.024371298,0.02530254,0.048333757,-0.026052078,0.000011911138,-0.008403896,0.0652324,-0.0045625204,0.0023706937,0.02600665,0.008398217,0.017148491,-0.039362032,0.010414017,-0.0017545972,0.019794581,-0.015649417,0.015149726,0.048333757,0.04299615,0.0520133,-0.015762983,-0.007535115,-0.013582513,0.016274031,0.047561508,0.014127631,-0.0022982953,-0.024825564,-0.003318971,-0.009942718,0.06014464,-0.02174792,0.064051315,-0.03836265,0.024166878,0.00082974276,0.00808591,0.005405749,-0.018477215,0.049605697,-0.061098594,-0.0076373243,0.014309336,-0.0014188673,0.0077679255,-0.032638915,0.0011335323,0.014116274,0.043177854,-0.007342052,-0.015797053,-0.015581277,-0.0048805056,-0.035091944,-0.017909383,-0.017500546,0.011038631,0.020600902,-0.0034438937,-0.029322783,-0.0049316105,-0.052376714,-0.009000118,0.01697814,-0.0028235386,-0.013605226,-0.038953193,0.011021596,-0.0030151815,-0.05473889,0.054057494,-0.010476478,-0.018840626,0.019692373,-0.018942835,0.0037249702,-0.014241196,-0.031366974,0.044472508,-0.029527202,0.029118363,-0.018533997,0.049060583,0.0085515315,0.05242214,0.035727914,-0.007943953,-0.02775557,-0.044313516,-0.019113185,-0.00926132,0.0076997858,0.033047754,-0.016239962,0.012151579,0.038203657,-0.051195625,-0.016467093,0.028777665,0.024484864,-0.013514373,0.032093797,0.0004006756,0.018477215,-0.04919686,-0.018034307,0.023939747,-0.0029243287,0.0046704086,0.027619291,0.00048088172,-0.021202803,0.0058316225,0.018886052,0.05074136,0.06037177,-0.0007424388,0.009142076,0.0050764075,-0.008648063,0.016626086,0.00600765,-0.012026656,0.00479817,0.02550696,-0.022588309,-0.053557802,-0.009602019,-0.018886052,-0.010777429,0.0063880966,0.009817795,0.011430434,-0.024984555,0.017193917,-0.010890995,-0.0039606197,0.0004251633,0.014786314,-0.018817913,-0.02973162,0.008477714,-0.0024374137,0.031139841,0.017829888,0.05551114,0.04678926,-0.014888524,0.02097567,-0.018704347,0.008619672,0.012628557,0.0030691256,0.026460916,-0.016239962,-0.004389332,-0.028936658,0.044790495,0.020759894,0.0038981584,-0.008744595,0.01617182,-0.02775557,-0.006836683,0.006904823,-0.012923829,-0.012378711,0.011186267,-0.007007032,0.025007268,0.03647745,-0.009885934,-0.00050217536,0.00959634,0.016012829,0.00042871226,0.027573863,0.024189591,-0.033910856,0.024007887,-0.007410192,-0.0018170585,0.015342789,0.037408695,0.028868519,-0.014366119,0.0023905677,0.031139841,0.01594469,-0.013809646,0.020214777,0.007682751,0.0271196,0.023917034,-0.0116518885,0.013650653,0.013718792,0.009306747,-0.020214777,-0.0093692085,-0.0015416606,0.0015473389,-0.049514845,-0.042133044,-0.017398335,-0.012299215,-0.022463387,0.011129484,-0.030935422,-0.0053177355,-0.019010976,0.010260703,0.010856925,-0.005658434,-0.0031401045,-0.02319021,-0.02332649,0.02375804,-0.014286623,0.017670894,0.00818812,0.028005416,0.012128866,-0.024189591,0.004514255,-0.022792729,0.0067231166,-0.05137733,-0.016024185,-0.0146046085,0.012901116,0.033820003,0.02332649,-0.047606934,0.00644488,0.0068934658,-0.018329578,0.021804703,0.020123923,-0.009374887,-0.023065288,-0.03990715,0.008051841,-0.006518698,-0.0006430684,-0.008772986,-0.003906676,0.0058997623,0.014138987,0.021543501,-0.02691518,-0.016455736,0.0036568304,0.02852782,-0.0341607,0.032002944,0.013241814,-0.04856089,0.005624364,-0.028028129,-0.0024587074,-0.016115038,-0.019340318,0.011396364,0.034546826,-0.0021023937,-0.009284033,0.026710762,0.0052694697,0.009942718,0.011135162,-0.02077125,-0.024575718,0.045653597,0.016228605,-0.002681581,0.029527202,0.004960002,0.032093797,0.024348585,0.03098085,-0.0012776193,-0.012605844,0.0034893204,-0.003949263,0.013014682,-0.01342352,-0.003483642,0.027074173,-0.008091589,0.03681815,0.0078531,-0.012537704,0.0051303515,0.0067685433,0.018647565,-0.011992587,-0.0057748393,-0.013128248,0.007995058,0.01419577,-0.0010937841,0.065096125,-0.041837774,0.009437348,-0.0062234257,0.0058259442,-0.031571392,0.018749774,-0.020884817,-0.034932952,-0.019840008,-0.017568685,-0.0070922067,0.007506723,-0.0021719527,-0.014797671,-0.02621107,-0.0016197374,-0.019135898,-0.024575718,0.00010522614,0.027528437,-0.021077879,-0.026688049,-0.026688049,-0.00061538664,0.010050605,-0.006047398,0.0060417196,0.06364248,-0.0028987762,-0.0071433117,0.000037507885,0.017545972,-0.024757423,0.00036057257,0.020294273,0.069547914,0.040997386,0.0023607565,0.007370444,0.032366358,-0.0031826918,-0.0076032546,0.0102493465,0.012810263,0.002859028,-0.0076997858,-0.005286505,-0.030390305,-0.009562271,0.001406091,-0.023508195,-0.00039819136,0.005252435,0.04413181,-0.030185886,0.016853219,-0.011572392,-0.0026971963,-0.025120836,-0.03527365,0.042973436,-0.006728795,-0.0007899946,0.026097504,0.023371916,0.007501045,0.02446215,0.0070865285,-0.008091589,-0.021770634,-0.045994297,0.0055874554,-0.02121416,0.010635471,-0.011697315,0.009993822,0.01798888,-0.0045681987,-0.012764837,-0.0016126395,-0.00013512599,-0.006762865,-0.016955428,-0.005814587,-0.03127612,-0.019828651,0.033070467,-0.056737654,0.0013422101,0.0008950433,0.008199477,-0.0218842,-0.014070847,-0.018375006,-0.026665336,0.023258349,0.0030861604,0.029072937,0.0067231166,0.012276502,-0.019181324,0.005564742,0.034069847,-0.03443326,0.018931478,-0.024711996,0.017511902,-0.006155286,0.01161214,-0.028641386,0.025847659,-0.0033587192,-0.017296126,0.029322783,-0.015831122,-0.00644488,0.00086310285,-0.02923193,0.00036376662,-0.005820266,-0.043268707,0.008744595,0.002856189,-0.012458208,0.00973262,0.007393157,-0.013514373,0.015785696,-0.030549297,-0.003500677,-0.0019760511,0.0105843665,-0.054284625,-0.0148544535,-0.006910501,0.0017758908,-0.024984555,0.021906912,0.02027156,-0.007614611,-0.060326345,-0.022929007,-0.0061155376,0.03752226,0.03268434,-0.027142312,0.0038555712,-0.009034188,0.007943953,0.000013253082,-0.022190828,-0.013207745,0.019908149,0.008261939,0.0042729266,0.01634217,-0.0013053011,0.0007665716,-0.00063419604,-0.030867282,-0.016285388,0.024689283,0.00016236411,0.002524008,-0.03077643,-0.008335756,-0.008642385,0.018783843,0.014502399,-0.00021027484,-0.004480185,0.016228605,0.0157062,-0.011299833,-0.00047129957,-0.015286005,-0.043836538,-0.0022372534,0.029322783,-0.01124305,-0.0072114514,0.0001607671,0.030344877,-0.004605108,0.026052078,0.0032281182,-0.02241796,-0.03245721,0.016989497,0.03134426,0.023917034,0.048742596,-0.0094316695,-0.009670159,0.0055902945,0.022077262,-0.041338082,0.007239843,-0.017898027,-0.033115894,-0.004483024,0.032797907,-0.03443326,-0.00029775628,0.02332649,-0.023917034,-0.04111095,0.019510666,0.014366119,0.016535234,-0.007245521,-0.009284033,-0.012424138,-0.02020342,0.0014387413,-0.015251935,-0.014070847,-0.00058202655,-0.027006034,0.009925682,0.028959371,0.015694844,0.04140622,0.0059962934,-0.020044427,-0.018477215,0.0053546443,-0.031934805,-0.03372915,-0.02845968,-0.0011385008,0.02950449,0.016705582,0.012912473,0.009726942,0.015558564,0.02768743,-0.024507578,-0.0025637562,-0.010720646,-0.025484247,-0.00096105365,-0.027778283,0.0036255997,-0.0031656567,-0.019851364,0.012185649,-0.023371916,0.0089717265,-0.03949831,0.005252435,0.026052078,0.0511502,0.037272412,0.0065698023,0.03395628,-0.017773105,-0.038317222,0.017364265,0.006302922,-0.009999501,-0.007171703,0.0074953665,-0.0068877875,0.036045898,0.013173674,-0.05024167,-0.0024785814,0.017466476,0.0079666665,-0.00016121072,-0.0105843665,0.052149583,-0.013843715,-0.014774958,0.01483174,-0.027800996,-0.037635826,-0.022735946,0.031775814,0.013957282,-0.009511166,-0.0034069847,0.019124541,0.0022741624,0.010794464,-0.022383891,0.0070354235,0.023803467,-0.013798289,0.013707436,-0.008772986,-0.009471417,-0.00023653702,0.05446633,-0.0028718044,0.011021596,0.007654359,0.019374387,0.0667769,-0.028936658,0.0025098121,0.003137265,0.003296258,0.007892848,0.011498574,-0.0375904,-0.014774958,0.002829217,-0.007932596,0.014218483,-0.020021714,-0.0012400005,-0.040497694,0.012344642,0.03238907,0.03600047,-0.006927536,0.018102447,-0.027233165,0.031912092,0.046925537,0.032411784,-0.0071660248,-0.0040117246,0.0033757542,-0.018545354,0.007268234,0.025007268,0.0007495367,-0.008931979,-0.007512402,-0.021736564,0.0410201,-0.023258349,0.042269327,0.012878403,-0.016603373,0.00091633695,0.05010539,-0.012390068,-0.008596959,-0.027074173,0.011924447,-0.022531526,-0.0020115406,-0.01332131,-0.020555476,-0.0018908766,-0.00781903,0.027937276,-0.02161164,0.00848907,0.005030981,-0.013605226,0.012708053,-0.0046334993,-0.01016985,0.018284151]},{"id":"interface-APIGatewayBotResponse","type":"interface","source":"main","text":"Interface: APIGatewayBotResponse\nDescription: Response from GET /gateway/bot\nurl: WebSocket URL, session_start_limit: rate limit info in ms\nProperties: session_start_limit: { total: number; remaining: number; reset_after: number; max_concurrency: number; }, shards: number, url: string","meta":{"url":"/docs/typedefs/APIGatewayBotResponse"},"embedding":[-0.040820524,-0.020061765,0.037591126,-0.007852782,-0.01793594,-0.018993044,-0.012952442,0.053017892,0.021629998,0.029506013,0.01296406,-0.031271726,-0.017413193,-0.022036577,-0.015206052,-0.013904999,-0.018354135,0.06821232,-0.038195185,0.037149698,0.034872856,-0.01564748,-0.01763391,0.06955984,-0.023012366,0.03543045,0.037056763,-0.0019675517,-0.035314284,-0.027438268,0.03905481,-0.03113233,0.0308303,0.0036243605,0.00863109,0.013695901,-0.00708609,0.022059811,0.0200153,-0.022559322,-0.052599695,-0.008613665,-0.00060333405,0.04230744,-0.06904872,-0.018319285,-0.01658842,-0.03868308,-0.0083755255,0.017029848,-0.047906615,0.013045375,-0.015206052,0.03861338,0.028646389,-0.0005521487,0.03491932,0.019190526,0.032828342,0.003458825,-0.0013518749,0.0041180635,-0.0053842664,-0.0028010383,-0.005413308,0.0146019915,0.0083000185,0.040379096,-0.0069699246,0.024394736,0.023384096,0.03935684,-0.038473982,-0.0081141535,-0.03138789,0.029993908,-0.017889472,0.008027029,-0.007968946,-0.031945486,-0.015577781,-0.02363966,-0.044003457,-0.07076796,0.007266146,-0.03491932,0.0012407918,-0.034710225,-0.0044752723,0.024627065,-0.027879698,-0.04179631,-0.040820524,0.0025643513,0.0056224056,-0.039217442,0.018539999,0.024325036,0.00032798576,-0.002857669,0.047627818,-0.092235334,-0.05970902,-0.003377509,0.0026805168,-0.011564266,0.032619245,-0.03045857,-0.034872856,-0.010425845,-0.048696537,-0.018911729,-0.009920525,0.002385747,-0.0008959257,-0.03220105,0.023953307,-0.0010694477,0.027949397,0.010681409,-0.006859567,0.042330675,0.024441201,-0.0306212,-0.02081684,-0.008514924,0.012057969,-0.012580713,-0.030853532,0.004968975,-0.010257405,-0.008718214,0.025858419,-0.008317443,-0.013568119,-0.022617405,-0.010634943,-0.020282479,-0.012638796,-0.0049980166,-0.021327969,-0.074020594,0.045374207,0.023767442,-0.026903909,0.010896315,-0.040541727,0.013881766,-0.0127433445,0.03703353,-0.026671577,0.033525337,-0.04846421,-0.017238947,0.0012553125,-0.0035837027,-0.0024961042,0.05738571,-0.046721727,-0.029947441,0.016007593,-0.016507104,-0.018783946,-0.033827364,-0.028646389,0.022849735,0.021211803,0.018191503,-0.036336537,-0.024069471,0.037428495,-0.0245806,-0.036011275,-0.032154582,-0.0068944166,-0.017750073,-0.06258992,0.008607857,0.024092706,0.003377509,0.030133307,0.003804417,-0.006853759,-0.022361841,-0.0104200365,-0.013045375,-0.009142217,0.019051127,0.025904885,-0.031085862,0.0050386745,-0.010722067,0.018795563,0.02035218,0.012917593,-0.035500146,0.026532179,-0.041285183,0.003569182,0.020410262,0.007643684,-0.011854679,0.052971426,-0.011041522,-0.0141373295,0.004858618,0.022024961,-0.030597968,-0.00597671,0.049439996,0.043864056,0.0025062687,0.016205074,-0.010658176,-0.03182932,-0.009153834,-0.014834322,0.01836575,-0.00037499645,-0.011012481,-0.0458621,0.039078042,0.0040135146,-0.008677556,0.007428778,0.030597968,0.02555639,-0.009624304,-0.020526428,0.001719248,-0.04449135,0.043701425,-0.03884571,-0.07481052,-0.011209962,0.017947555,0.04425902,0.018969811,0.018458683,-0.04781368,0.0011050234,-0.021943646,0.015566165,0.017436428,0.009264191,-0.037614357,0.00097433734,-0.03649917,0.005215827,0.044607516,-0.01772684,-0.016100526,0.027229171,-0.022059811,0.026903909,-0.046837892,-0.0153454505,0.015333833,0.026113983,-0.026439246,0.044653982,-0.0146019915,-0.02326793,0.0337809,-0.011424867,-0.015995976,0.00953718,0.0026747084,-0.021734547,-0.0028082987,-0.004812152,0.00752171,0.06542435,-0.020375412,-0.053575486,-0.0115178,0.02571902,-0.011779172,-0.03731233,0.013812067,-0.0018223448,0.005593364,0.004301024,0.061892927,0.0047221235,0.019016277,0.020526428,0.019364772,0.045443907,0.03484962,-0.004277791,0.07337007,0.061474733,-0.026276615,0.024069471,0.009043477,0.08475428,0.016936917,0.05896556,0.0061161085,0.051995635,-0.015601014,-0.005111278,-0.020340562,0.009264191,0.041354883,0.039217442,-0.019922366,0.01776169,-0.012847894,-0.016774284,-0.013138307,-0.07885308,0.02269872,-0.06407684,-0.020282479,0.060870674,0.0148807885,0.012429698,-0.047627818,-0.027020073,-0.022536088,0.024510901,-0.0044404226,-0.0026311465,-0.033664733,0.031713154,-0.0012429699,-0.0007263968,-0.00816062,0.012882743,-0.046489395,0.017959172,-0.034501124,0.0023087875,0.0019414143,-0.025207892,0.022559322,0.018725863,0.036661804,0.015659096,0.0008857612,-0.07234781,-0.032944508,0.025138194,0.044886313,0.0012306273,0.005697913,0.01601921,0.014021165,0.0016858504,0.010489736,-0.022524472,-0.020735525,0.01903951,-0.03814872,0.024510901,-0.015717179,-0.045978267,0.04288827,-0.06519203,0.01198827,0.019457705,0.03543045,-0.023999773,0.013939849,-0.030179773,-0.044839848,0.006058026,-0.02948278,0.034361728,0.0006396358,-0.020991089,-0.044468116,-0.005419116,0.03696383,-0.021420902,0.022826502,-0.030714134,-0.008421992,0.009223533,0.060591877,-0.05557353,-0.012511014,0.024046239,-0.0154383825,-0.055387665,0.062404055,-0.04223774,0.018505149,0.007806315,-0.008828571,-0.029808043,-0.055294733,0.033571802,-0.012534247,0.017111164,-0.032549545,0.004664041,0.00554109,0.021606766,-0.003740526,-0.008195469,-0.003290385,0.0013308199,-0.03038887,-0.0011950516,0.018307667,0.036313307,-0.021653231,0.023349246,-0.0277403,0.0007115131,-0.025695788,0.029575713,-0.0019893325,-0.006272932,-0.041517515,-0.0034472083,0.052832026,0.02843729,0.019469323,-0.048510674,0.035802178,-0.017773308,0.032921277,0.0012429699,0.016565187,-0.036243606,-0.018040488,-0.017808156,0.012348383,0.045722704,-0.026648344,0.0367315,0.024348268,-0.0008342128,0.0042458456,-0.036011275,-0.0058373115,-0.0010135431,-0.042330675,-0.02085169,0.019399622,-0.03273541,0.002321856,0.02488263,-0.031109096,0.017029848,-0.049718793,-0.056363456,-0.055805862,-0.0027531201,0.045420673,-0.056549318,-0.02843729,0.008439417,0.032781877,-0.007144172,0.023256315,-0.018319285,-0.0459318,-0.038288116,0.02783323,0.004820864,0.035732478,-0.016356088,-0.0045856293,-0.040820524,0.04177308,-0.010600093,0.0021534162,0.017750073,-0.019631954,0.0067956764,0.0109021235,0.042725638,0.018377367,0.0089505445,0.002404624,0.00903186,-0.020944623,-0.060127214,0.026880674,0.03475669,0.08024706,0.023535112,-0.018145036,-0.04660556,0.010019266,0.0014941775,0.0075042853,0.034640525,-0.010478119,-0.0042894077,0.0035604697,-0.06509909,-0.0521815,0.0126504125,0.0062206574,-0.042865034,-0.04328323,-0.008195469,0.0024786794,-0.00816062,-0.035848644,-0.012476165,-0.011070563,-0.012150901,-0.04486308,-0.0024365694,-0.014253495,0.008143195,0.00007001688,-0.031085862,0.0214906,-0.028948419,0.0049602627,-0.012383232,0.0034181671,-0.008538158,0.011564266,-0.0047017946,0.015531315,-0.017169246,0.0054452536,-0.004678562,-0.064309165,-0.021641616,0.027345337,0.005308759,0.00077685615,0.0006185808,0.013091841,0.0033136182,0.017831389,0.013451954,-0.00769015,-0.035755713,-0.032619245,-0.0040309397,-0.008323251,-0.0026340506,0.02911105,-0.03603451,-0.010390995,0.02948278,-0.0137656005,0.011413251,0.04479338,0.015937893,0.0008080756,0.016995,0.0068653757,0.012917593,-0.013266089,0.016332855,-0.015786879,0.0041500092,0.019899134,0.020445112,-0.0011188181,0.028228194,-0.020770375,-0.03468699,0.03452436,0.0010701738,0.032712176,-0.008997011,-0.030783832,-0.021653231,0.054923005,-0.0017482893,0.030365637,0.014299962,-0.011918571,-0.036847666,0.014346427,0.0015086982,0.007695958,-0.011093796,-0.066074885,-0.010501353,0.057106912,-0.029436314,0.020445112,0.011291278,0.0034268794,0.008886654,0.02518466,-0.022582555,0.010303872,0.01010639,0.0013388064,0.008352293,-0.019283457,0.017099548,-0.0077830823,0.000989584,0.06807293,0.016867217,-0.010669792,-0.03264248,-0.023999773,0.024789698,0.012905977,0.0046814657,0.020967856,0.019062743,-0.008090921,0.027205938,0.020328946,-0.01417218,-0.06547082,-0.018423833,0.010449078,-0.03724263,0.0020169218,0.0015014379,-0.036754735,0.003290385,0.022489622,0.0014360949,-0.018168269,-0.03180609,0.024743231,-0.011570075,-0.051670372,-0.027902931,-0.0022260195,0.02669481,-0.002985451,-0.016460638,-0.024836164,-0.0429115,0.024766464,-0.0066969357,0.05194917,-0.015194435,-0.014381277,0.014660074,-0.007132556,0.0018034679,-0.016100526,0.033897065,-0.014381277,-0.039101277,-0.032828342,-0.047070224,0.020096615,-0.023023983,-0.013591353,0.0024975562,-0.023163382,0.0064355633,-0.018818796,-0.027600901,0.0077714655,-0.01621669,-0.0013671216,-0.009746278,0.023221465,0.008265168,0.0019486747,-0.01232515,0.033897065,-0.025695788,0.011233195,-0.012998909,0.0115875,0.0077656573,0.026439246,0.060127214,0.005346513,0.026508946,0.02145575,-0.011413251,-0.036011275,-0.0011028453,0.024348268,-0.0013627654,0.016170224,-0.024487667,0.015624247,0.024394736,-0.020630976,0.071418494,0.006725977,0.04274887,0.026160449,0.018993044,0.012127669,-0.0034181671,-0.00012868948,-0.0061219167,0.008549774,0.0231053,0.06212526,-0.015903044,0.014543909,-0.010286447,-0.021316351,0.01470654,-0.027136238,0.007475244,0.014555525,0.02804233,0.01779654,-0.0039496236,-0.013591353,-0.020468345,0.03347887,-0.06017368,0.012673645,-0.021734547,0.00889827,-0.017285412,-0.009618496,0.01655357,-0.001460054,0.004820864,-0.0065168794,-0.03340917,0.015508082,-0.007330037,-0.0033978382,0.047627818,0.0055585145,-0.0026267902,0.013184774,0.026555412,0.030644434,-0.02427857,-0.008340676,0.00382765,0.018086953,-0.014299962,0.020294096,-0.02246639,-0.03552338,-0.0037201971,-0.012046353,-0.019864284,-0.00015001673,0.009699811,-0.04562977,0.010518777,0.00069554034,0.010269022,-0.023291163,-0.027763532,0.0061799996,-0.021316351,0.010489736,0.018214736,0.00061168347,0.028088795,-0.037614357,-0.012255451,-0.0034907705,-0.06802646,-0.0097695105,-0.0038595956,0.03264248,0.028530223,0.0029999716,-0.033571802,-0.031155562,0.0027444076,0.010100582,0.038427517,-0.011732706,-0.022361841,0.03024947,0.033455636,-0.029691877,-0.041935712,-0.0122903,-0.005840216,-0.041192252,0.016483871,-0.026416013,-0.0058315033,-0.016541954,0.00013431624,-0.0041151596,0.019922366,0.018296052,-0.010896315,0.003243919,-0.057943303,0.009339699,-0.010559435,-0.04042556,-0.0059592854,-0.007364887,0.010013458,-0.05464421,0.03266571,0.02609075,-0.022141127,0.015670713,-0.043956988,0.013602969,0.014195412,-0.014985337,-0.031550523,0.062311124,0.00024539942,-0.04307413,-0.011906954,0.0063426313,-0.04372466,-0.0029404368,0.028367592,0.043538794,0.01759906,-0.02367451,0.04990466,-0.009159642,0.042586237,0.020619359,0.016843984,0.017250562,0.029459547,0.032456614,-0.044444885,0.0019399623,0.018679397,-0.004513026,0.0021635806,-0.0184703,-0.003984473,-0.0009772414,0.028785788,-0.002363966,0.008032838,-0.013753984,-0.035988044,0.020654209,0.04358526,-0.0057734204,0.0070802816,-0.0064123305,-0.0043707234,-0.019318307,0.0028228194,-0.028576689,0.009810168,-0.0039292946,-0.031689923,-0.013614586,0.037451725,0.03038887,0.025974585,-0.014021165,-0.032549545,0.017866239,0.016785901,-0.019016277,-0.029506013,0.041122552,-0.022861352,-0.025951352,0.0033629886,0.007028007,0.03949624,-0.03536075,0.034477893,0.03821842,-0.008590432,0.01655357,0.06500616,-0.00852654,0.03875278,0.054923005,0.021699699,-0.0040338435,-0.012127669,0.010693026,0.024603833,-0.00087414467,-0.018528381,0.020294096,0.037823457,0.01406763,-0.00691765,-0.020665826,-0.00936874,0.020433495,0.030063607,-0.0045188344,0.017982405,0.035732478,0.02495233,0.0028896146,0.0034936746,0.027717065,-0.011761747,0.002771997,0.026903909,0.022234058,-0.03529105,0.00051294285,0.06937398,-0.0056543513,0.00970562,0.012011503,-0.010263214,-0.005439445,0.00027044758,0.0024452817,0.03612744,0.047906615,-0.041958943,-0.003502387,-0.0031509865,0.004074502,-0.011192537,-0.0040251315,0.00408031,-0.01866778,0.0033920298,0.006981541,-0.035848644,0.0050764284,0.011024097,-0.023116916,-0.021629998,0.018296052,-0.0036388813,-0.04086699,0.005137415,-0.0055352817,-0.023930073,-0.013312556,-0.0009598167,0.0069524995,-0.0016829463,-0.01121577,-0.00614515,-0.024929097,-0.016088909,-0.023198232,0.010083158,-0.02005015,0.024929097,0.01866778,-0.06342631,-0.02534729,0.037776988,0.00993795,0.029877743,-0.028762555,-0.0024554462,-0.009165451,0.04177308,0.016344473,0.05692105,0.019155676,0.014613608,-0.047023755,-0.043840826,-0.04841774,0.014729774,-0.012104435,0.03347887,-0.01252263,0.0073358454,0.023930073,-0.018307667,-0.00069554034,0.026253382,0.032526314,-0.009380356,0.029622179,-0.012720112,0.043631725,0.009432631,-0.018516766,0.0033833175,0.03122526,-0.0018223448,0.014613608,0.008921503,-0.049439996,-0.0078179315,0.004205188,0.044212554,0.02918075,0.02024763,-0.010582669,-0.028158493,0.013788833,0.022408307,-0.025672555,0.0010723519,0.022791652,0.012720112,-0.019794585,-0.015531315,0.019155676,-0.0035778945,-0.02578872,-0.004089022,-0.0015304792,-0.018284434,-0.007910864,0.0032293983,-0.029691877,-0.0066678943,-0.011541033,-0.017111164,-0.01802887,-0.033525337,0.0067143603,-0.016681353,0.0015014379,0.0005753818,0.035407215,0.045048945,0.016332855,0.040053833,-0.013126691,-0.018342517,-0.03505872,0.017517744,0.02078199,-0.04267917,-0.027438268,-0.04734902,0.06667894,0.01900466,0.019933984,0.017320262,0.014369661,0.044003457,0.02804233,0.0037231012,0.0033223305,-0.03317684,-0.002339281,0.020119848,0.005994135,0.0072371047,-0.029064585,-0.007498477,0.003029013,0.02058451,0.008689173,0.024743231,0.022303758,-0.028460525,-0.00083566486,-0.0016713297,0.010936973,-0.0038421708,0.032944508,0.01662327,-0.032224283,-0.009641728,0.03898511,0.011209962,-0.008189661,-0.00036592103,-0.0070163906,0.016936917,-0.0047221235,0.0058547365,0.013753984,0.016239924,-0.012673645,-0.014160563,0.008962161,0.0009837758,-0.0143231945,0.03213135,-0.021420902,-0.0038799245,-0.0115352245,-0.018342517,-0.00004714682,-0.0009975705,0.015101503,-0.031782854,-0.0053407047,-0.022071427,0.016704585,0.03287481,-0.018563231,-0.022989133,0.019933984,0.00903186,-0.016460638,-0.006150958,0.0014709445,-0.008619473,-0.039984133,0.016193457,0.009647537,-0.05143804,-0.017506126,0.01712278,0.026532179,-0.010907931,0.010390995,-0.005840216,0.0017119877,-0.024812931,-0.009810168,-0.000064843895,-0.0097869355,0.031202028,0.022814885,-0.036592104,0.0077656573,0.033014208,-0.009513946,-0.0034443042,-0.013916615,0.009845018,0.0027385994,0.0018659069,-0.0034065505,0.004690178,0.007643684,0.008927312,0.05701398,-0.03424556,-0.024394736,0.010489736,-0.026439246,-0.008015413,-0.037660826,0.0018005638,-0.0073590786,-0.037079997,-0.016077291,0.0013649436,0.0061974246,-0.017099548,-0.0019893325,0.004594342,0.0036417854,-0.0020648402,0.025161427,-0.021130487,0.03326977,0.0039234865,-0.018481916,0.02323308,-0.004812152,0.03324654,0.04156398,0.0023930073,-0.0072777625,0.007800507,0.0130221415,0.0246503,0.004658233,-0.01541515,0.037358794,-0.00091915875,-0.005677584,0.054040145,0.0013482447,-0.003821842,-0.003270056,0.018818796,-0.00029531424,0.009798552,-0.0031887405,-0.0066214283,0.043399397,0.00896797,0.049811725,0.04772075,0.006261315,-0.030807065,-0.046652026,0.030969698,-0.037591126,-0.009328082,0.0054423492,0.019155676,0.007881823,0.0050706198,0.037776988,0.0111634955,-0.010727875,0.022222443,-0.007475244,0.016867217,-0.00007605204,-0.04832481,0.008712405,-0.010989247,0.0014063275,0.003351372,0.017436428,-0.014660074,0.00095763855,0.013823683,0.010663984,0.04214481,0.017715225,-0.009461672,-0.0005525117,0.023407329,-0.00528843,0.027531201,0.019457705,0.004562396,0.015856577,0.032712176,0.01937639,0.013405488,0.015554548,-0.026857441,-0.018609699,0.021571916,-0.0023799387,-0.003287481,0.007422969,-0.024859397,-0.0017497414,-0.01296406,-0.009432631,-0.01541515,-0.009757894,0.018423833,-0.0051490315,0.01470654,0.0070570484,0.014718157,-0.008573007,-0.039891202,0.021920413,-0.025091728,-0.008921503,0.02639278,-0.00752171,0.014114097,0.0014121357,0.004989304,-0.020596126,-0.0069931573,-0.02219921,-0.010112199,-0.020735525,-0.012139285,-0.03519812,-0.025068494,0.008073496,0.025324058,-0.011378402,0.034570824,0.0010890507,0.017819773,0.039728567,0.02363966,-0.00219117,-0.023546727,0.00567468,0.021932028,-0.03738203,0.01252263,0.030690901,0.008927312,0.029738344,-0.013939849,-0.015089886,0.042586237,0.03038887,-0.008119962,-0.0038595956,0.010814999,-0.008102537,0.0043968605,0.031759623,-0.0063484395,0.037010297,0.016983382,-0.0055556106,-0.022419924,-0.026230149,-0.0005289156,0.009426823,-0.010652368,-0.04435195,-0.049811725,0.01900466,-0.011407442,0.019701652,-0.013544886,0.031527292,-0.007852782,-0.06500616,-0.039078042,-0.0031074246,0.016263157,0.030505035,-0.02262902,0.023430562,0.01594951,-0.018284434,-0.020503193,-0.011076371,-0.052832026,-0.044746913,-0.019724885,0.032967743,-0.0064529884,0.009821785,0.0039031575,-0.0115875,0.03333947,0.00096635096,0.005593364,-0.01726218,0.02081684,0.052274432,0.0073590786,0.014381277,0.013928232,-0.032456614,-0.014799473,-0.0520421,0.012104435,0.006232274,-0.027182706,0.013219623,-0.014195412,-0.018807178,-0.017355112,-0.0037782798,-0.015298984,-0.01504342,-0.03522135,-0.027647367,-0.024534134,-0.018923344,-0.0020140177,0.0058779693,0.038590148,0.01877233,0.002318952,-0.008456841,0.008317443,-0.027229171,0.038450748,0.0009227889,0.031039396,-0.059894882,0.015868194,-0.027391803,-0.030505035,-0.01749451,-0.007149981,0.018818796,-0.008363909,0.048092477,-0.023372479,-0.032224283,-0.017029848,-0.0029404368,0.03234045,0.019945601,0.03831135,-0.0020111136,-0.044979244,0.0070105824,-0.01017609,0.004254558,-0.024998795,-0.017099548,-0.01091374,-0.0077191913,0.02918075,-0.010170281,-0.025742253,0.004103543,-0.023128532,-0.010797574,-0.026718043,-0.011599116,0.023209848,-0.02017793,0.017111164,-0.04042556,-0.0025483787,0.007876014,-0.011262236,0.017982405,-0.008439417,-0.035337515,0.03145759,0.0016553571,0.004385244,0.013138307,-0.02427857,-0.01900466,0.047163155,0.0034559208,-0.0215603,-0.013289322,-0.0045856293,-0.058686763,0.0044200937,-0.0013141212,-0.014125713,0.006813101,0.022524472,0.0015696851,-0.019132443,-0.0052710054,0.014241879,0.00009120799,-0.016065676,-0.05050872,-0.0058315033,-0.00068464986,-0.0034762498,0.009606879,-0.023953307,0.036847666,-0.0056543513,-0.00769015,0.068862855,0.017668758,-0.003415263,0.013510036,0.016681353,-0.017924322,-0.00040331177,0.0069931573,-0.009914718,-0.0051867855,-0.0043184487,-0.001140599,-0.016332855,0.0103271045,0.033664733,0.016193457,0.014021165,0.02699684,-0.023209848,-0.0025730638,-0.03491932,0.03529105,-0.024371503,-0.02115372,0.028646389,-0.013719134,0.016239924,0.0075739846,0.018876879,0.017157631,0.0015667808,-0.015775261,0.010594285,0.02038703,-0.010617518,0.0059012026,0.012336766,-0.012023119,-0.001719248,0.0138585325,0.0044810805,0.024836164,0.025114961,0.044839848,0.021955261,0.008230319,0.021374434,0.016437406,-0.022210825,-0.043259997,0.0075797928,0.018145036,-0.02262902,-0.0016727819,0.017134398,-0.028321126,-0.012185751,-0.040913455,-0.0097695105,-0.025370525,-0.03408293,-0.01729703,-0.03738203,0.004873139,0.016065676,0.0062438906,-0.008236127,0.011099605,-0.017680375,0.010971823,0.07485699,0.027252404,-0.014276728,-0.013231239,0.005262293,-0.012871127,0.000077549485,0.029622179,-0.008363909,-0.039124507,-0.033455636,0.012778195,0.002896875,0.011204153,0.086705856,0.0034762498,-0.0027168184,0.02571902,0.005099661,0.005430733,-0.029947441,-0.031480826,-0.029970674,-0.015089886,-0.0018499341,-0.0141373295,-0.01161654,0.008346484,0.011070563,0.025114961,0.0122903,0.037103232,0.014567141,0.014114097,-0.015357067,-0.023418946,0.007004774,0.03622037]},{"id":"interface-APIGuild","type":"interface","source":"main","text":"Interface: APIGuild\nDescription: Guild from GET /guilds/{id} or gateway GUILD_CREATE\nProperties: afk_channel_id: string | null, afk_timeout: number, banner: string | null, banner_height: number | null, banner_width: number | null, default_message_notifications: DefaultMessageNotifications, disabled_operations: number, embed_splash: string | null, embed_splash_height: number | null, embed_splash_width: number | null, explicit_content_filter: GuildExplicitContentFilter, features: GuildFeature[], icon: string | null, id: string, message_history_cutoff: string | null, mfa_level: GuildMFALevel, name: string, nsfw_level: number, owner_id: string, permissions: string | null, rules_channel_id: string | null, splash: string | null, splash_card_alignment: number, splash_height: number | null, splash_width: number | null, system_channel_flags: number, system_channel_id: string | null, vanity_url_code: string | null, verification_level: GuildVerificationLevel","meta":{"url":"/docs/typedefs/APIGuild"},"embedding":[-0.03745258,0.011186976,0.036818203,0.013395092,0.00022702577,-0.024472272,-0.04567507,-0.028351726,0.03930691,0.03615943,0.024630867,-0.036720607,-0.0008074569,0.004663273,0.037891764,-0.013224299,-0.040429268,0.029693674,-0.014163663,0.016932959,0.0088507645,0.028937303,-0.014724842,0.045333482,-0.03459789,0.013797677,0.013053505,0.023301117,-0.004455881,-0.022081163,0.038184553,-0.020788012,0.025228644,-0.014822438,0.00581003,-0.009430243,0.036013033,0.010442805,-0.009930423,-0.017738128,-0.0063742585,-0.012968108,0.008997159,-0.025985016,-0.039794892,0.05401955,-0.016932959,0.0151762245,0.0030010862,0.0025558032,-0.044991896,0.016798763,-0.049237333,0.072221264,0.016200986,0.016774364,-0.028376125,-0.010607498,-0.02505785,0.05099407,-0.02608261,-0.011644458,-0.0011978421,0.007362421,0.019080076,0.012467927,-0.04108804,0.063193604,0.017396541,0.01476144,0.021471186,-0.039087318,-0.003827605,-0.018311506,-0.009308247,0.011510264,-0.02532624,0.014749241,0.018604295,-0.051677242,-0.030645238,0.026326602,-0.071586885,-0.0632912,0.04250319,-0.005245801,-0.034939475,0.0009386019,-0.017457537,0.012553324,-0.044113528,-0.0130779045,-0.095156394,-0.0067097456,-0.0033365735,-0.054653928,0.04701702,-0.0027342213,-0.030035261,0.052409213,0.095156394,-0.028083336,-0.060460906,-0.033670723,0.007697908,-0.008594574,-0.017823525,0.011821352,-0.009442442,-0.00448028,-0.08339604,0.015212824,-0.018640893,0.0037056096,-0.010168315,-0.009796228,-0.001663712,-0.017335543,0.04116124,-0.03794056,-0.06890299,-0.007984597,0.047358606,0.000098358774,0.016823161,0.0056331363,-0.01372448,-0.015469014,-0.08354244,-0.010284211,0.011479765,-0.019641256,0.026497396,0.016993957,-0.014541849,0.0004803568,-0.0422836,-0.02054402,-0.053141184,-0.036476616,-0.016420577,-0.029108096,0.04516269,0.024777262,-0.07470997,0.0014929184,-0.04301557,0.017835723,0.0026564493,0.049920507,-0.03772097,0.021666378,-0.014322257,-0.025838621,-0.00090657815,-0.021605382,-0.023837896,-0.01214464,-0.023191322,-0.010601399,0.019165473,-0.040990446,-0.009521739,0.0060540205,-0.03664741,-0.003769657,0.028571317,0.0001963363,-0.061095282,0.03084043,0.013224299,-0.0066670473,-0.06831741,-0.012736317,-0.018396903,-0.0109185865,-0.030694036,-0.014639445,-0.028107734,-0.019092277,0.026302204,-0.029937666,-0.023935493,-0.06465755,-0.03830655,0.05118926,-0.037574574,-0.016237585,0.014480851,-0.021751776,-0.05904576,0.0064230566,0.018579897,0.03059644,0.024069687,-0.016993957,0.05748422,-0.005486742,0.043893937,-0.018396903,0.033402335,-0.042625185,0.075929925,-0.007197727,0.008527476,-0.026985377,0.04884695,0.010778291,-0.016993957,0.011150377,0.014468651,-0.022825334,-0.02744896,-0.00063132605,-0.046236247,0.030206054,-0.04884695,0.0075820126,-0.0006057833,-0.021544384,-0.022276355,0.027107373,0.04299117,-0.029669276,0.013151102,0.029059298,-0.0057276827,-0.01870189,-0.007569813,0.023825698,-0.028058937,0.039209314,-0.031913992,-0.041820016,-0.025375038,-0.02032443,0.0026716988,0.07090371,0.023972092,-0.018287107,-0.008033396,-0.032597166,-0.0100585185,0.005364747,0.0058161295,-0.04508949,0.011376069,0.007203827,-0.011333371,0.033329137,0.04662663,0.01951926,-0.026424197,0.0007239663,0.02742456,-0.014834638,-0.023569506,0.017628333,0.009723031,-0.021251595,0.016237585,-0.0017552085,-0.027936941,0.005724633,0.0064291563,0.022752138,-0.014944433,0.026399799,-0.023252318,0.016847562,0.0092960475,-0.018055316,0.06397437,-0.039136115,0.00065496267,0.006252263,0.01265092,0.009399744,0.016701167,-0.05031089,-0.019958444,-0.029498482,0.0064718546,0.04774899,-0.006813442,0.03481748,0.04147843,-0.009131354,0.047187813,0.047992982,-0.0020144486,0.03010846,0.041746818,-0.006148567,0.018409101,0.014688243,0.05377556,0.025716625,0.07553954,0.052945994,0.026229005,-0.014615046,-0.024203882,-0.045431077,-0.004059396,-0.00094622665,0.04960332,0.02927889,-0.008204189,-0.013944072,0.05114046,-0.026155809,-0.028449321,0.022020165,-0.055581093,0.008490878,0.04079525,0.0211174,-0.009546138,0.035403058,0.019165473,-0.006386458,-0.015542211,-0.03462229,0.014297858,-0.050213296,0.046504635,-0.04274718,-0.0026442497,0.021605382,0.047919784,-0.06656068,-0.0023834847,0.025960617,0.027546557,0.011241874,-0.018299306,0.056361865,0.06734145,0.029864468,0.018604295,-0.017774725,-0.016701167,0.004980461,0.033060748,-0.006642648,-0.037867364,0.012175138,0.022093363,0.02453327,-0.007600312,0.04396713,-0.03532986,-0.034988273,-0.041649222,-0.06987895,0.048383366,0.008222489,-0.04457711,0.049139738,-0.027278166,0.007594212,-0.003772707,0.029327689,-0.012821714,0.013065705,-0.016213186,0.019409465,-0.02874211,-0.048700552,0.036330223,0.04567507,-0.025009053,-0.028376125,-0.009967023,-0.0028912905,-0.0049133636,0.012943709,0.015883798,-0.01716475,0.03750138,-0.019860847,0.028376125,-0.024582068,0.019982843,-0.025106648,-0.010241512,0.030986825,-0.05987533,0.01398067,0.036476616,-0.00897276,-0.019287469,-0.049627718,0.00553249,-0.015578809,0.027790546,-0.022971729,0.00422104,0.0024993801,0.03237757,0.015688606,-0.023398712,-0.006618249,-0.027546557,-0.002349936,0.030938027,0.007362421,0.047870986,-0.0066365483,-0.0129193105,-0.0036598612,0.020873409,0.0043582846,0.017237946,-0.04713901,-0.02321572,-0.06460875,0.013382893,0.06490154,0.014871236,0.022800935,-0.013870874,-0.014493051,0.019421663,-0.0071855276,0.010772192,0.0023118122,-0.051872432,-0.06636549,-0.0711477,-0.0014098091,0.042186,-0.006176016,0.009052057,-0.015737403,0.010162215,-0.030669637,-0.038477343,0.032499567,-0.030157257,-0.0060570706,-0.02028783,0.0015577284,-0.015810601,0.0028562166,0.05645946,-0.07461237,0.023288917,-0.038428545,-0.021483386,0.021153998,0.0012664645,0.042649582,-0.002084596,-0.025789822,0.0068195416,0.03828215,-0.031084422,0.012053143,0.0005996835,0.012028744,-0.019702254,0.055044312,0.00022130723,0.003245077,-0.06719505,-0.016444977,0.018872684,0.029059298,-0.02530184,-0.0016926859,0.026716987,-0.016200986,-0.016713366,0.00553249,0.0051726038,0.013346294,0.036476616,0.053531572,-0.009979222,-0.0028668912,-0.031987187,-0.03586664,0.04355235,0.0764667,0.0040502464,-0.0067402446,-0.036183827,0.0030422597,0.012345932,-0.0014708068,0.03193839,-0.012858313,-0.007765006,-0.04804178,-0.03454909,-0.055825084,-0.008423781,0.004095995,0.0039922986,-0.03725739,-0.002131869,-0.0047608693,0.047505,-0.042405594,-0.04618745,-0.049408127,-0.042356793,-0.0036232627,-0.016432777,-0.010985684,-0.0061821155,-0.0052884994,-0.018299306,0.014480851,-0.051921234,0.035378657,-0.011430967,0.0136512825,-0.012955909,0.012455728,0.006807342,-0.0027357463,0.010717294,-0.0011391318,-0.014529649,-0.08461599,-0.010881987,0.025765423,0.01029031,-0.011815252,0.035012674,0.03059644,-0.005087207,-0.004434532,-0.025033452,-0.0005253426,0.022727739,-0.057581816,-0.0067707435,-0.0023514607,0.01637178,0.014676044,-0.009027658,0.03357313,-0.029059298,-0.006514553,0.025716625,0.009363145,0.029156895,-0.030498844,-0.0022752138,-0.0069537363,0.0016530374,0.037525777,0.006496254,-0.02559463,0.014200262,-0.00922895,-0.011205276,-0.0042362893,0.01505423,-0.00316883,-0.019982843,-0.005669735,0.014017269,0.04694382,-0.01293151,-0.022886332,0.0024155085,0.009881625,0.00017746515,0.018518899,0.038062558,0.012242236,-0.04904214,0.034988273,0.03084043,0.021032002,-0.017176948,-0.05699624,0.03269476,0.040551264,-0.02608261,-0.015444615,-0.015090828,0.012504526,0.01134557,0.056605853,-0.0051085562,0.022203159,0.012449628,-0.01240083,-0.0058191796,-0.016176587,0.005523341,-0.0043704845,-0.024374677,0.03401231,0.018579897,0.009784029,-0.03513467,0.00060197094,0.02134919,-0.0059991227,0.039355706,-0.008350584,-0.001422771,0.011022282,0.002792169,0.0063986573,-0.02822973,-0.03769657,-0.044991896,-0.0079296995,-0.02505785,0.01897028,0.019580258,-0.012724117,-0.0109185865,-0.0035988635,0.013285296,0.037232988,0.022154361,0.0044894298,-0.044943098,-0.030523242,-0.011961646,-0.031474806,-0.018030917,-0.0034982173,-0.0000075830135,-0.016469376,-0.009631535,-0.010265911,0.008838565,0.01767713,0.006697546,0.0017872322,0.046382643,-0.0047364705,0.009674233,-0.03474428,0.0368914,-0.008472579,-0.015505612,-0.01003412,-0.024923654,-0.002191342,-0.01502983,-0.006435256,0.023386514,-0.0069232373,0.03513467,-0.012638721,-0.009405843,0.034915075,-0.032597166,0.014810239,-0.04377194,0.007606412,0.03381712,0.04355235,0.021007603,-0.012516726,-0.016835362,0.023410913,-0.037842967,-0.00026476808,0.017396541,0.02291073,-0.04618745,0.019141074,0.0063620587,-0.030523242,0.0004323211,-0.052604407,-0.0027448959,0.0065389522,-0.0012466402,0.014163663,-0.037379384,-0.009058157,0.01688416,-0.025789822,0.04274718,0.0051116063,0.03613503,-0.02400869,0.01609119,0.01794552,0.027595354,-0.013639083,0.012626521,0.036208227,0.009997521,0.03640342,0.0016072891,-0.023020528,0.004263738,0.025838621,0.0040014484,-0.025106648,-0.001739959,0.014688243,0.010491602,0.025521433,0.019482661,-0.028400524,-0.059582543,0.02691218,-0.039794892,0.0017857073,-0.0015028305,0.03186519,-0.011967747,-0.020165836,0.016823161,-0.0048706653,0.009387544,0.0052397014,-0.022788737,0.0016042392,-0.010040219,0.010265911,0.007826003,0.0068195416,-0.006886639,-0.021751776,-0.020690415,0.023606105,0.011912849,0.021861572,-0.014737042,0.025155446,0.017847924,-0.001134557,-0.012992508,-0.0045290785,0.009521739,0.025375038,0.00659385,0.0038886026,-0.031596802,-0.020629417,0.01135167,0.003406721,-0.025009053,0.02766855,-0.012217836,0.008381083,-0.040453665,0.017347742,-0.010747792,-0.0448455,0.0097718295,0.0048676156,-0.0447967,0.03725739,0.031913992,-0.0044741803,0.02664379,0.049139738,-0.019982843,0.0057581817,-0.014163663,-0.013541487,0.021080801,0.017872322,-0.012870512,-0.020104839,-0.012217836,-0.020788012,0.026351001,-0.057142634,-0.029913265,-0.05348277,0.02693658,-0.0069842353,0.0015127426,-0.015347018,0.004699872,0.027766148,0.005065858,0.000025137719,0.0237281,-0.0011071081,0.014078266,-0.019360665,-0.046870623,0.02847372,-0.0078016045,-0.0018802538,-0.010455004,0.0067646434,-0.009960922,-0.09730351,0.005663635,0.04374754,-0.0053403475,-0.0028287678,-0.0115834605,0.014358856,0.00553249,-0.03801376,-0.024716264,0.028376125,-0.0034738183,-0.005254951,-0.009674233,0.054507535,-0.0016515123,0.0018787287,-0.008911762,0.04294237,0.031328414,0.0071550286,0.037745368,-0.004672423,0.029620478,0.013004707,-0.007338022,0.015627608,-0.031182017,0.024386875,-0.0017186098,-0.005352547,-0.0050811074,-0.015725205,-0.009570537,-0.008521377,0.018531097,-0.0065023536,-0.0001544957,-0.0063437596,-0.016652368,0.017433139,-0.0055538393,-0.03381712,0.023288917,0.00042202775,0.003242027,0.006514553,0.012455728,-0.018396903,0.026180208,-0.012504526,0.019177673,0.029718073,0.026180208,-0.000037122813,0.011504164,-0.06358399,-0.009552238,-0.050359692,-0.033402335,0.029449685,0.027009776,0.016957358,-0.0139684705,0.007051333,-0.025155446,-0.0010758467,-0.026546193,-0.025789822,-0.014395454,0.0017460588,0.016579172,0.010070718,0.0036354621,0.0023240119,0.060021725,-0.01607899,-0.00063971325,0.010479403,0.0061912653,-0.027546557,0.0029446634,0.035012674,0.0070269336,0.0053006993,0.023349915,-0.034671087,0.015639808,-0.01711595,-0.013504888,0.019226471,0.020495223,0.01634738,0.029742472,-0.007935799,-0.009710832,0.02608261,-0.014956633,0.004163092,-0.033060748,0.028888505,-0.00764911,-0.014053867,-0.051042866,-0.019568058,-0.028400524,0.008039495,0.037745368,-0.0044101328,0.015761802,0.014407654,0.018567696,0.0032877754,0.0010781342,-0.022752138,-0.010137816,0.02162978,0.02214216,0.007850402,-0.0013266997,-0.017445339,0.003748308,0.007490516,-0.020568421,0.013883074,-0.006563351,0.02265454,-0.008808066,-0.014883436,0.0020144486,-0.04008768,-0.0008417681,-0.009125254,0.018604295,-0.025692226,-0.0059167757,-0.003455519,-0.021068601,-0.057337828,-0.016005794,-0.0056361863,-0.012821714,-0.03584224,-0.003242027,0.01080879,0.024350276,0.007594212,0.008289586,-0.0029324638,-0.028790908,0.0027875942,-0.047090214,-0.024813859,0.0123154335,0.0005581289,0.0115529625,-0.035403058,0.02188597,-0.03381712,0.046285044,0.005328148,0.014529649,0.024460074,-0.010076818,-0.033109546,-0.02004384,-0.028668914,0.005913726,-0.01977545,-0.0018650043,-0.0054196445,0.018909283,0.012821714,-0.02400869,-0.009832827,0.0474318,0.024130685,-0.016652368,0.001584415,0.03374392,0.016920758,-0.011711556,-0.016396178,-0.032231178,0.04723661,-0.0021196697,0.018531097,-0.020214634,0.010192714,-0.014419854,0.0119982455,0.03401231,0.015481213,0.012211737,-0.01818951,-0.03903852,0.025155446,0.026229005,0.0008623548,-0.013992869,0.019995041,0.01345609,-0.0024078838,-0.027278166,-0.02822973,-0.009704732,-0.033963513,0.013797677,-0.0110771805,0.021190597,-0.011559062,0.0075027156,0.03247517,0.007228226,0.028961701,0.014810239,-0.039746094,-0.024435673,0.00040830328,0.0005668973,0.008405481,-0.018262709,-0.007783305,0.0105038015,-0.00922285,0.011796953,-0.049554523,-0.014700443,-0.025497034,0.017469738,0.02004384,0.025667828,-0.0009386019,-0.024874857,0.033133943,-0.015810601,0.028839707,0.030694036,0.03872133,0.031596802,0.019982843,0.014968833,-0.021410188,-0.02217876,-0.0077589056,0.0041234437,0.023862295,0.047895383,0.0035988635,0.013492689,-0.0051634545,-0.00090886554,-0.012858313,-0.015932595,-0.010125617,-0.010705094,0.011113779,0.0050231596,-0.010997883,0.0062888614,-0.0013205999,0.0016820113,-0.018860485,-0.022471549,0.009052057,0.020775812,-0.018384703,-0.028156532,0.0019199022,0.003928251,0.036842603,-0.021202797,0.016786564,0.005145155,-0.013004707,0.0035012672,-0.030645238,0.02030003,0.004175292,0.02139799,-0.040844053,0.0021547433,-0.0051512546,0.016164387,-0.027619753,0.010473303,-0.016847562,-0.011912849,0.0131877,-0.001973275,-0.002083071,0.04535788,-0.007783305,-0.056020275,0.040258475,-0.012455728,-0.00050056225,-0.010357407,0.013102303,0.020385427,-0.04167362,-0.005407445,-0.039233714,-0.029425284,-0.0062095644,0.008198089,0.03032805,-0.01477364,0.03664741,0.01372448,0.009125254,-0.040429268,0.012577723,-0.017250147,0.036842603,0.028546918,-0.007807704,-0.03562265,-0.005505041,-0.0040502464,0.0030117608,-0.015444615,0.022068964,-0.004571777,-0.025375038,-0.012809514,0.052409213,0.011388268,0.014200262,-0.013224299,0.03830655,-0.014114865,-0.00047692566,-0.010192714,-0.01451745,-0.0105587,-0.05070128,0.021178396,0.029864468,-0.008509178,-0.0047578197,0.008478679,-0.0036842604,-0.014590647,-0.005358647,0.0030178607,0.0040227976,-0.018262709,0.008625073,-0.0063193603,0.057972204,-0.0030925828,-0.0091374535,0.0028241929,0.017298944,0.037525777,0.014663844,0.031157618,-0.012272735,0.005694134,-0.002086121,-0.0006496254,0.014005069,0.0040014484,0.009631535,-0.010692894,-0.003723909,0.013151102,0.032841153,-0.012419129,0.013541487,0.015383617,0.028986102,0.03245077,-0.0018284057,-0.017982118,0.03245077,0.012589923,0.018909283,0.025716625,-0.023435311,0.008155391,-0.0028135183,0.019751051,-0.031035623,0.014395454,0.008368882,-0.0066304486,0.023874495,-0.004016698,0.034207504,-0.016066791,-0.020531822,0.001291626,-0.02298393,-0.0063681584,-0.0021562683,-0.052799597,-0.006734145,-0.013931872,-0.029864468,0.022251956,-0.014139264,-0.017640531,0.010461103,-0.009979222,0.022093363,0.051823635,-0.0065267524,-0.009942623,-0.018421302,0.014139264,-0.0184701,0.0040197475,0.0051543047,0.03925811,0.016810963,0.0042301896,-0.00422409,0.03720859,0.02031223,-0.017347742,-0.00012771391,0.017774725,0.012419129,0.007051333,-0.016518174,-0.023349915,-0.028693313,0.034646686,0.0047669695,-0.03296315,-0.0077223075,0.030669637,-0.050018106,0.061632063,0.015139626,0.0010743218,-0.0040532965,0.015212824,-0.012870512,-0.013785478,-0.00066334987,0.040258475,0.0030620839,0.011821352,-0.008496978,0.021190597,-0.02744896,-0.0018253558,-0.008948361,0.023130324,0.022081163,-0.007978498,-0.01504203,0.0136512825,-0.0049713114,0.02769295,0.016749965,0.0080882935,-0.009155753,-0.0062949616,0.0053403475,-0.011156477,-0.017262345,-0.021666378,0.034890678,-0.029888866,-0.0014410703,-0.028205331,0.041356433,0.014407654,0.021666378,-0.026570592,-0.018848285,0.005465393,-0.009106955,-0.020568421,0.018799488,0.015993593,-0.008295686,0.0077162073,0.03874573,-0.025814222,-0.008564075,0.0048066177,0.007606412,0.0051726038,-0.04433312,-0.013675681,-0.010881987,0.0027113473,-0.010137816,-0.033963513,0.020690415,-0.008289586,-0.00013648233,-0.007624711,-0.0112662725,-0.013114503,-0.054458737,-0.02212996,-0.008411581,-0.038257748,0.00738682,-0.040038884,0.01108938,0.03462229,0.013297496,-0.0022858884,-0.019494861,0.0051573543,-0.033109546,0.0078931,0.002877566,0.009558338,-0.0008097443,-0.00026248067,-0.0032389772,0.005642286,-0.0049255635,0.015652006,-0.010698995,-0.017579533,0.009363145,-0.03408551,-0.017274546,-0.008381083,-0.04013648,-0.041283235,-0.0048706653,-0.018543297,0.029669276,0.03088923,0.0012329158,-0.010509902,-0.006880539,-0.0066853464,-0.003138331,-0.017396541,-0.022886332,-0.03032805,-0.025155446,-0.04774899,-0.016810963,-0.03740378,0.027082974,0.0057642814,0.013090104,-0.013163301,-0.027131772,0.016420577,0.031840794,-0.0237403,-0.013553686,-0.002319437,-0.017957719,0.04382074,-0.0015722153,0.0030666587,-0.021288194,0.015090828,0.012980308,-0.013370693,0.01371228,-0.0054745423,0.003109357,-0.0017689329,0.007179428,0.022593543,0.037062194,0.021544384,-0.011382168,-0.06377918,-0.0071123303,-0.010326909,-0.017652731,-0.01213244,0.0157862,0.0037635574,0.0059259254,0.003455519,-0.028132133,-0.011095479,-0.035525054,-0.032328773,-0.043576747,-0.0052092024,-0.00017708392,0.020910008,-0.009289948,-0.00037284836,-0.024411274,0.0032145781,-0.033036347,0.009631535,-0.019799849,-0.02718057,-0.029425284,0.014859037,0.01426126,0.017847924,0.010497702,-0.006642648,-0.01951926,-0.031206418,-0.0050262096,-0.015456814,0.0023682353,-0.014395454,-0.023349915,0.001225291,-0.00048226296,-0.029132497,0.019909644,-0.0056178872,0.004879815,0.006041821,-0.016652368,-0.009204551,0.0053098486,0.008045595,-0.028376125,-0.0050323093,-0.005437944,-0.04413793,0.012352032,0.0028394423,0.0263754,-0.0126021225,-0.019433863,0.047895383,0.04294237,0.01712815,0.0075515136,0.020373227,-0.016993957,-0.002137969,0.000029378965,-0.0036110631,0.017335543,-0.0056270366,-0.00075332145,-0.038379744,0.032426372,0.023105925,0.013297496,-0.0027342213,0.03325594,0.0032389772,0.01160176,-0.023032727,0.032816757,-0.0038062558,-0.011821352,0.016701167,0.0018421302,0.01265092,-0.024325877,0.017274546,-0.007283124,-0.007100131,-0.01950706,-0.015359217,0.025253043,-0.00013857913,-0.009698632,0.04079525,0.0012230036,-0.017067153,0.02298393,-0.0032603263,0.004385734,-0.024216082,0.050945267,0.009186252,0.028424922,0.0117420545,0.030035261,0.0045748265,-0.02876651,-0.012846113,0.005694134,0.00055507896,-0.0028241929,0.026716987,-0.007051333,-0.0046236245,-0.008393282,-0.02927889,0.0030132858,-0.0063742585,-0.0052671502,-0.037598975,-0.0003720859,0.01871409,0.0068500405,-0.016444977,0.031060023,-0.043576747,0.06148567,0.048895746,0.036476616,-0.042771578,0.0028196182,-0.019873047,0.0002746802,-0.009820628,0.039965685,-0.0082163885,-0.0071428292,-0.022727739,-0.016701167,0.05031089,-0.012065343,0.05572749,0.022215357,0.004721221,0.023093725,0.0146028465,-0.021214996,-0.017494136,-0.033890314,-0.0124435285,0.0030514093,0.016505973,-0.027278166,0.008826366,-0.009265549,-0.009631535,0.0033030247,0.041722417,-0.029742472,0.0342807,0.033939112,0.0055812886,-0.017091552,-0.011711556,-0.0062827617]},{"id":"interface-APIGuildAuditLog","type":"interface","source":"main","text":"Interface: APIGuildAuditLog\nDescription: Response from GET /guilds/{id}/audit-logs\nProperties: audit_log_entries: APIGuildAuditLogEntry[], users: { id: Snowflake; username?: string; discriminator?: string; avatar?: string | null; }[], webhooks: { id: Snowflake; name?: string; avatar?: string | null; }[]","meta":{"url":"/docs/typedefs/APIGuildAuditLog"},"embedding":[-0.033107203,0.038304128,0.0026985155,-0.027794274,0.0097906375,-0.005979945,-0.04364026,-0.008149197,0.04751475,-0.012887913,0.030995952,-0.053454097,0.06069267,-0.00094977306,0.017539626,0.0068209656,-0.046470728,0.016646404,-0.030833548,0.04612272,0.04087939,0.012412301,0.021124113,-0.0039846967,-0.048535578,0.01316632,-0.041737814,0.004176101,-0.01401314,0.007957793,0.010596857,-0.033200007,0.061527893,0.035775267,-0.0073545785,0.025103008,0.0039353953,-0.008903216,0.036981698,-0.02765507,-0.029603919,-0.02804948,-0.017365621,0.014361149,-0.029186308,0.024151785,-0.012470302,0.021889731,-0.003996297,0.02266695,-0.051737256,0.028188683,-0.016669605,0.027515868,0.0039005945,-0.0031668767,-0.0006655661,0.037376106,-0.040461782,0.03162237,-0.012911113,0.01890846,0.019824881,-0.032480787,0.04899959,-0.004991021,-0.042549834,0.051273245,0.06672482,-0.0029218209,0.06273432,0.0018980961,-0.0700657,0.0073603787,-0.020950109,0.00036577138,0.0015761883,-0.031923976,-0.0071805744,-0.061249487,-0.0020880506,0.055263743,-0.0536861,-0.0907142,0.050902035,-0.013920338,-0.025845427,-0.029418314,0.0012107794,0.026054231,0.010127046,0.029580718,-0.063708745,-0.017388823,0.034754444,-0.057862204,0.022597348,-0.012284698,0.008798813,0.044382676,0.042665835,-0.046470728,-0.01769043,-0.042225026,0.0134679265,0.04326905,0.00658896,-0.0064961575,-0.0058726426,-0.0247318,-0.05224767,-0.010776661,-0.019047663,-0.009222223,-0.027794274,0.012447102,-0.050948437,0.01693641,0.04029938,-0.04317625,-0.03129756,-0.009222223,0.005260728,-0.034313634,0.017191617,0.016518801,-0.0059973453,-0.036100075,-0.02800308,0.034731243,0.015115167,0.000012279986,-0.0016298395,-0.025311815,-0.03916255,0.008816214,-0.022086935,-0.013943538,-0.031088755,-0.01484836,0.0029551717,0.0026695149,-0.0073139775,0.010678059,-0.063569546,-0.0054173316,0.0020822505,0.0206253,-0.0016921911,0.0077025867,-0.03180797,0.035264857,-0.0065657594,0.004152901,0.0151847685,-0.010886864,-0.004161601,-0.019906083,-0.025613422,0.00007390648,0.025868628,-0.010852063,-0.024406992,0.005939344,-0.025195811,-0.017968835,0.017992036,-0.0069833696,-0.048489176,-0.00495042,-0.013212721,0.00044842338,-0.05647017,-0.007215375,-0.025219012,-0.010817262,-0.022748152,-0.02800308,-0.033594415,-0.036378484,-0.012354299,-0.033269607,-0.0056261364,-0.037631314,-0.029047105,0.024987007,-0.049695607,-0.006130749,0.035311256,-0.009007619,-0.030091131,0.01197149,-0.012551504,0.0371905,-0.021796929,-0.06440476,0.021657726,0.017562827,0.030346336,0.005165025,-0.003178477,-0.02313096,0.032016777,-0.045913912,-0.011716284,0.0164724,0.0033147805,-0.058001406,0.001234705,-0.019627675,0.03459204,-0.0017429423,-0.016542,-0.0009272975,-0.04663313,0.029000703,-0.03087995,-0.015300771,0.034731243,-0.004408107,-0.043895464,0.029812723,0.043524258,-0.021240115,0.028235085,0.025451018,0.007545983,-0.012481903,-0.019964084,0.0133867245,-0.054799728,0.020126488,-0.04029938,-0.020358494,0.008584208,-0.025172612,0.04654033,0.03746891,0.018119639,-0.0045125093,0.003952796,-0.018038439,-0.007580784,0.02103131,0.02180853,-0.007574984,0.016019989,-0.006635361,-0.013073517,0.06936968,0.0024795602,0.033710416,0.00078084395,-0.010347451,-0.010979666,-0.0021054512,-0.029163107,0.022643749,-0.013711533,-0.03046234,0.05062363,0.003752691,-0.036076877,0.01563718,-0.02021929,0.0038222927,0.031181557,0.0076909866,-0.061667096,0.012307899,-0.03340881,0.02306136,0.05804781,-0.0152659705,-0.0014703356,0.0008743712,0.02723746,0.010057444,0.0027072157,-0.038072124,-0.0134679265,0.009726836,0.026889453,0.06839526,-0.0058146412,0.030949552,0.014523553,-0.025381416,0.049231596,0.052850883,0.00032807045,-0.0011832287,0.012586306,0.0025738124,-0.004657513,0.0035786869,0.043547455,-0.0046343124,0.08078436,0.010231448,0.00987184,-0.015451575,-0.016112791,-0.059207838,0.002797118,0.012307899,0.03387282,0.035334457,-0.036332082,-0.003912195,0.025775826,0.012621107,-0.026007831,0.010927465,-0.03997457,-0.008120197,0.004205102,0.020010486,0.012389101,0.003543886,0.03220238,-0.032759193,0.020868907,-0.0146395555,-0.030392738,-0.016298395,0.008050595,-0.036610488,0.004295004,-0.0043182047,0.04992761,-0.006559959,-0.003741091,0.028791899,0.044313077,-0.0029044205,0.0036134876,0.011472679,0.028722297,0.0042283027,0.0047619157,-0.031459965,-0.027840676,0.010040044,-0.0032451788,0.017064014,-0.00034855222,0.027353464,-0.020752903,0.0453803,-0.024244588,0.028304687,-0.03582167,0.020312093,-0.044637885,-0.051319644,0.0075981845,-0.014059541,0.007551783,0.06885927,-0.030392738,-0.03162237,0.0025071108,-0.0046372125,0.017064014,0.0033031802,-0.018873658,-0.004376206,0.032295182,-0.06955529,0.05818701,0.016170792,-0.013746333,-0.02969672,-0.035125654,0.038512934,-0.03925535,0.000025398273,0.004483509,0.014627955,-0.01485996,0.020938508,0.03756171,-0.017075615,0.008265201,-0.0076329852,-0.032968,0.04282824,-0.04904599,0.008549407,0.013920338,-0.0005118624,-0.037306506,-0.06069267,0.0050055212,-0.042317826,0.037329707,0.015161568,0.0075923842,-0.0077721886,0.030671144,0.01071866,-0.0062177507,-0.011060868,-0.015544377,-0.0038019922,-0.0043501058,0.05851182,0.036053676,-0.0371905,0.02389658,0.026703848,0.0101734465,-0.0781395,0.057119787,-0.07507702,0.01156548,-0.01977848,0.0012020791,0.01569518,0.0035351857,0.028304687,-0.017156817,0.013792735,-0.014465551,-0.00165014,0.02721426,0.019627675,-0.03097275,-0.06338394,-0.06361594,0.0058755428,0.039394557,-0.032828797,0.002762317,-0.06542559,0.01523117,-0.03127436,-0.04282824,0.0069949697,-0.008421805,-0.026193436,0.0020488997,0.01443075,0.007986794,-0.023641374,0.045635507,-0.04456828,0.046656333,-0.0066469614,0.029859124,-0.0009722486,-0.01028365,0.028281486,-0.019546473,-0.053732503,-0.03596087,0.030207133,-0.020799305,-0.0073545785,-0.01690161,-0.00043066044,0.00001784223,0.060739074,0.03995137,-0.01981328,-0.055588547,-0.002637614,-0.015416774,0.0066933623,-0.03835053,-0.014523553,0.004660413,-0.005808841,-0.026541444,0.006293153,0.0012876312,-0.012412301,0.006803565,0.0127603095,-0.009129422,0.012412301,-0.040693786,-0.035566464,0.06876647,0.05939344,0.010098045,0.007163174,-0.012655907,0.00659476,-0.024638997,0.016553601,0.018247243,-0.011200071,-0.02228414,-0.025265412,-0.04250343,-0.080737956,0.0063801548,0.006797765,0.021669326,-0.06626081,-0.013873937,0.037260104,0.011246473,0.0046923137,-0.07099372,-0.052108463,-0.009645634,0.012145495,0.020451296,0.01773683,-0.019314468,-0.003378582,0.0023766076,0.013433126,-0.05554215,-0.014129143,-0.024453394,0.0031465765,0.010121246,-0.004045598,0.025891827,-0.037654515,0.014616354,0.020184489,-0.024012582,-0.08282601,0.012157095,0.010991267,-0.0066875624,0.011072469,0.051226843,0.020729704,0.0021156014,-0.027260661,0.008996018,-0.014233545,0.019558074,-0.04867478,0.0038802943,0.036332082,-0.039371356,-0.00453281,-0.005243327,-0.025613422,-0.015033965,-0.030276734,0.031111956,0.026611045,0.02017289,-0.033037603,0.000659041,-0.020892108,0.009309226,0.0031349761,0.030183932,-0.023641374,0.004161601,0.004457408,0.0205557,0.00078084395,0.0288151,-0.02226094,-0.028699096,0.011571281,0.036424883,-0.0073255775,0.018421248,0.016832009,0.0076793865,0.0049562203,-0.005124424,0.011890288,0.004643013,0.009297625,-0.028119082,0.047978763,0.000012971018,0.044011466,-0.013641931,-0.060182262,0.018711254,0.057073385,-0.00905402,-0.020428095,0.02187813,0.038211327,-0.0061945505,-0.025891827,0.004071699,0.03545046,-0.037399307,-0.030323137,0.0017965935,-0.0022649548,-0.003543886,-0.001153503,-0.03872174,0.031993575,0.016309995,0.046192322,-0.015358773,-0.014291547,0.040554583,0.019534875,0.007957793,0.015544377,-0.019824881,-0.0052665276,-0.008427604,-0.0054985336,-0.028559893,-0.041807413,-0.019337669,-0.023246964,-0.029766323,0.005643537,-0.013873937,-0.010591057,0.012389101,-0.013549129,0.045148294,0.025288614,0.019964084,0.020416496,-0.029580718,-0.040206574,-0.054799728,0.010654858,-0.019639276,-0.008033195,0.015381973,-0.024569396,-0.012783511,0.008943817,0.0076329852,0.0013275072,0.0036424883,0.007998394,0.044591483,0.022608949,0.03220238,-0.0153471725,0.047561154,-0.032851998,0.010150246,-0.011205872,-0.06505438,-0.0021939033,-0.0049591204,-0.024987007,0.0062699523,-0.009036619,0.0037207904,0.008166598,0.004645913,0.016391197,-0.005837842,0.0006760789,-0.056238163,0.033571213,0.00085987087,0.034012027,-0.019697279,0.004643013,-0.0024520096,0.019674078,0.019175265,0.030671144,-0.006809365,0.044313077,-0.014511952,0.021994134,0.017180016,0.0021736028,-0.016542,-0.026889453,0.005562335,0.022342142,0.0095876325,-0.008804614,0.0034800845,-0.025172612,-0.0038454933,-0.035659265,0.061435092,0.0075285826,0.04210902,0.009576032,0.009953042,0.022806153,0.02429099,-0.009436829,0.010805662,-0.00453571,-0.009941441,0.0121338945,-0.016333196,-0.0048344173,0.005916144,-0.0068731667,-0.009837039,-0.034522437,0.006472957,0.06523998,0.020010486,0.010196648,-0.0028362689,-0.042712238,-0.030415937,0.03250399,-0.04867478,0.015497976,-0.015764782,0.026518244,-0.038512934,-0.07025131,0.014732357,-0.0030363738,0.021483721,0.014500352,-0.011797486,-0.041436207,0.013154719,0.0076909866,-0.012783511,0.01729602,0.011820687,-0.013096718,-0.042758636,-0.012783511,0.0077141873,0.0061887503,-0.0133055225,0.020532498,-0.008874215,0.024940604,-0.01440755,-0.011229073,-0.005649337,0.0058407416,0.0036047874,-0.008630609,-0.027724672,-0.026286237,-0.031877574,0.028536692,-0.008822014,-0.028211884,0.005434732,0.006049547,-0.024940604,-0.036494486,0.005315829,-0.06537919,0.013920338,0.024499794,-0.019036062,0.016286796,0.019650877,-0.006356954,0.050345223,0.0411346,-0.022794554,0.0046749134,-0.030230334,0.004324005,0.019882882,-0.028559893,-0.007853391,-0.03092635,-0.0132243205,0.015405173,0.06101748,-0.041900218,0.011055068,-0.054567724,0.04707394,0.00031846398,0.007186374,0.009268625,-0.008282601,-0.016344797,0.0025361115,-0.009135222,0.015602378,-0.02965032,-0.0067745643,-0.000054557575,-0.045937113,-0.008259401,0.029580718,0.00034547088,0.00015180056,0.019558074,-0.022191338,-0.07651546,0.008508806,0.034452837,-0.009964642,-0.015138367,0.02353697,0.0069485684,0.034406435,-0.06691042,-0.010196648,0.02106611,-0.064822376,-0.005312929,-0.020544099,0.046888337,-0.0010657759,0.004283404,0.02347897,0.05025242,0.057490993,-0.01279511,0.038396932,0.0006420031,0.011855488,0.030949552,0.014732357,-0.008433404,0.018293643,0.058558222,-0.06347674,-0.00094034785,-0.013456327,-0.009767437,-0.034522437,0.009170023,-0.030531941,0.004495109,0.015602378,-0.01980168,-0.032225583,-0.01770203,-0.010376452,-0.026587846,-0.007122573,0.0147207575,0.014894761,-0.011089869,0.040716987,-0.009251225,0.028606294,0.016588403,0.027075058,0.021576524,0.005846542,0.002266405,0.035195254,-0.022968557,-0.029882325,-0.032318383,-0.032828797,-0.016112791,0.024082184,-0.009175823,-0.01980168,0.0077141873,-0.019952483,-0.050902035,-0.0012397801,0.010904265,-0.011002867,0.017470025,0.022759752,-0.026239837,0.0039266953,0.014987564,0.030995952,-0.0007801189,-0.028374288,-0.0019517473,-0.004790916,0.011060868,-0.008294201,0.034916848,0.0073661786,0.00028601944,0.0057363394,0.0050548227,0.01895486,-0.0127603095,-0.039440956,0.00782439,0.02920951,0.002266405,0.003010273,0.00988344,0.0061075483,0.032341585,0.0037584912,-0.016182393,-0.029163107,0.003250979,0.0070993723,0.0206601,0.01072446,-0.0148019595,-0.015115167,0.022608949,0.04241063,-0.006055347,0.009274425,0.010318451,0.029534318,-0.018653253,0.005072223,0.00022566173,0.002228704,0.037584912,-0.013456327,0.029163107,0.008514606,0.0011781536,0.026680648,-0.0072617764,0.012818311,0.03913935,0.0013637581,0.009332427,-0.05521734,-0.02512621,0.038860943,-0.023722576,-0.029023904,0.012969115,0.03744571,-0.037747316,-0.0029493715,0.019836482,-0.025172612,-0.022400143,0.0117916865,-0.010596857,-0.017574426,-0.009303425,0.0060669472,-0.01073026,0.013920338,-0.0060785473,0.020915307,-0.028931102,-0.015845984,-0.006304753,-0.014279947,-0.025659822,0.007168974,-0.02269015,0.0066179605,-0.015915586,-0.000011815521,-0.057862204,0.03872174,0.03779372,0.03788652,0.022898955,0.023409368,-0.04656353,-0.021750528,-0.02387338,-0.011878688,-0.04157541,0.005478233,0.010266249,0.011339275,0.03575207,0.0026927153,-0.006548359,0.030137531,0.038164925,0.0063395537,0.030415937,0.025497418,-0.0009207723,0.0071167727,-0.029835925,-0.0013478077,0.025683023,0.029395113,0.003987597,-0.027121458,-0.0041123,0.006809365,-0.015149968,0.05735179,0.013839136,-0.013955139,-0.009947241,-0.02389658,0.0025781626,0.00068622915,-0.012934314,0.009170023,0.02101971,0.0060437466,-0.007928792,-0.019674078,0.013920338,-0.0018386446,-0.040160175,0.013978339,-0.0022649548,0.0059248437,0.020787705,-0.014743958,0.003337981,-0.0009765987,0.01068386,0.018734455,-0.024546195,-0.038095325,0.0026216635,0.006467157,0.03999777,0.011664083,-0.005979945,0.06394075,-0.033988826,0.023606572,-0.047213145,-0.044034667,-0.022713352,0.026982255,0.025195811,0.013723133,-0.028235085,-0.013409926,0.008195599,0.01975528,0.030160733,-0.008775613,0.023757376,0.0077315876,-0.0015964888,0.035589665,-0.023258565,-0.013734734,0.01153648,0.0010955016,0.026541444,0.021193715,-0.012389101,0.03426723,-0.001896646,0.022748152,0.004976521,0.0091642225,-0.007493782,-0.028119082,-0.0048953188,0.017272819,-0.028165484,0.012191895,0.00020862381,0.033733618,-0.030601542,-0.038211327,0.027910277,0.028791899,-0.03953376,0.0019067962,-0.0029682221,-0.0037700916,0.010776661,-0.004857618,0.033640817,0.012180296,-0.033200007,0.018815657,-0.046192322,0.021727327,-0.006809365,0.0206601,-0.0040165973,-0.02758547,-0.02020769,-0.02020769,-0.01154228,0.005020022,0.0044371076,-0.010434453,0.006049547,0.033153605,0.014198745,0.029441515,-0.006554159,-0.032921597,-0.007389379,-0.0052143265,-0.0017559926,-0.03050874,0.040902592,0.028699096,-0.05684138,0.00078084395,-0.0045009092,-0.027446266,-0.0028261186,0.0060437466,0.006919568,0.0120526925,0.0328752,0.013212721,0.012075893,0.018746056,0.036772892,0.012574705,0.005863942,0.0046894136,0.0022417544,-0.03953376,-0.022782953,-0.01485996,0.004231203,-0.0014565603,0.017968835,0.007371979,0.008294201,-0.011403076,0.0125979055,-0.020022085,-0.025474219,-0.02351377,0.027330263,-0.015312372,-0.018363245,-0.012203496,-0.00025719998,0.007093572,-0.02431419,0.021344518,0.0035960872,-0.030694345,0.005945144,-0.012226697,-0.012319499,-0.012644307,0.003213278,-0.010272049,0.013154719,-0.016646404,-0.00076489354,0.018050037,0.05804781,-0.0035235854,-0.010753461,0.002556412,-0.004445808,0.013792735,0.011768485,0.014732357,0.02352537,0.013665131,-0.011704684,0.013943538,-0.00032970175,-0.022782953,0.015323971,-0.025195811,-0.024662198,0.04370986,0.03206318,-0.011014467,-0.012238297,0.0206253,0.005930644,0.00535353,0.000069782946,-0.02804948,0.042294625,-0.0069775693,0.023154162,0.016379597,-0.0037613914,0.01566038,0.0046343124,0.015196369,-0.029905526,-0.016008388,0.013456327,0.026959054,0.020787705,-0.001191204,0.035705667,0.010933265,-0.017191617,-0.002924721,-0.023618173,0.013293923,0.0036714892,-0.016588403,0.0016718906,0.01856045,-0.030555142,-0.010446054,0.009094621,0.009854439,0.007522783,-0.017238019,0.0055884356,0.06885927,-0.0086596105,-0.008410204,-0.0069543687,0.038164925,-0.010689659,-0.013212721,0.029232709,-0.030137531,0.0058175414,0.020822505,0.017145216,0.044730686,0.016982812,0.00453571,0.020752903,0.028652696,0.015196369,0.0056261364,-0.0048083165,0.008242,-0.017597627,0.044939492,-0.019036062,-0.023757376,0.0042631035,0.022144938,-0.036355283,0.04904599,0.015277571,-0.01607799,0.0061539495,0.012447102,0.01445395,-0.041436207,0.0056406367,0.06055347,0.0040252977,0.018444447,-0.00536513,-0.0055739353,-0.01485996,-0.028629495,-0.011797486,0.032851998,0.010747661,0.019070862,0.0024940604,0.008938017,0.013804335,0.01357233,0.007980994,0.010504055,0.0037178902,0.01939567,-0.029139906,0.0038831942,-0.008555207,-0.0027101159,0.014256746,-0.0016994412,-0.012029492,-0.004979421,0.0328752,0.029093506,-0.0029551717,0.0030421738,0.023722576,0.0033234807,0.005692838,-0.023444168,0.0022562547,0.019244866,-0.025868628,-0.014929562,0.032411188,-0.016553601,0.04029938,0.029789522,-0.0047967164,-0.025613422,-0.02099651,0.013769534,-0.015950387,0.00006121867,-0.00048032415,0.0005807391,-0.0024433092,0.012586306,0.009268625,-0.01361873,0.0097500365,-0.007244376,-0.0059509445,-0.027562268,-0.031158356,-0.001980748,0.047097143,0.0015573378,0.019732079,0.016588403,-0.018734455,-0.0030624743,0.007511182,0.008984418,-0.04408107,0.02637904,0.038536135,0.004788016,-0.019082462,0.003674389,0.0017690429,0.014674356,0.0045154095,0.0029986727,0.03846653,-0.017806431,-0.017632429,-0.019279668,-0.032666393,0.0033988825,0.003915095,-0.022864155,-0.018432848,-0.022562547,0.007615585,0.012191895,0.016321596,-0.0095470315,-0.0035380858,-0.0060959477,-0.009210624,-0.00701237,0.0073835794,0.0056957384,0.0066991625,-0.04213222,0.006304753,0.0068325656,0.014732357,0.0014246596,0.032457586,-0.022539347,-0.051041238,0.042596232,-0.014279947,0.008839414,0.023583373,0.014314747,-0.027121458,0.045542706,0.0075923842,0.014929562,-0.031552766,-0.010875264,0.052897282,0.011681483,-0.0038193928,0.012853112,-0.005191126,-0.024058985,0.001321707,0.04626192,0.048396375,0.02714466,0.01357233,-0.06677122,0.004573411,-0.01443075,0.0009359977,0.0013724583,0.0125979055,-0.0032741795,-0.01073026,-0.0023867579,-0.022701751,-0.026263038,-0.024476593,-0.017133616,-0.024615798,-0.015289171,0.00032082028,0.00658316,-0.006304753,-0.008746612,0.0074763815,0.0086596105,-0.015718382,-0.014082742,0.006675962,-0.0018922959,-0.022829354,-0.0011440777,-0.01030685,0.021704126,0.030021528,-0.02637904,-0.018711254,-0.006664362,0.0053796307,-0.018421248,-0.018316844,-0.03918575,0.0012013542,0.033640817,0.008096997,-0.005153425,0.012586306,0.0055739353,-0.010347451,0.0038164926,-0.040902592,-0.01975528,-0.028072681,0.00015479125,-0.024360592,0.025010208,-0.017180016,-0.022516146,-0.026866252,0.031135155,0.008682811,-0.030555142,0.007893992,0.039023347,0.038211327,-0.0013492578,-0.012075893,0.026216635,-0.037051298,-0.0535005,0.006965969,-0.0045937113,-0.0064845574,-0.013549129,-0.01523117,-0.01774843,0.037051298,0.02103131,-0.0017182917,0.020265691,0.037051298,-0.0032016777,0.011733685,-0.036007274,0.022736551,-0.019244866,-0.025335014,0.023734177,-0.0064845574,0.009599233,-0.05447492,0.007905592,0.030833548,-0.008143398,0.0043849065,-0.019337669,0.03860574,0.0056406367,0.029186308,0.04238743,0.025497418,-0.012180296,0.034452837,0.00044697334,-0.028119082,-0.0048112166,0.024615798,0.030624744,0.029534318,0.02925591,0.012864713,0.011084069,-0.026123835,-0.010382252,-0.01734242,-0.024801401,-0.025636623,0.00784179,-0.0246854,0.0013122818,0.0000936179,-0.022864155,-0.04612272,0.0127603095,-0.029487915,-0.023455769,-0.001483386,0.011675684,0.02723746,0.012400701,0.03953376,-0.02760867,0.009581832,0.03496325,0.028791899,-0.0009606483,-0.031135155,0.019500073,-0.0061249486,-0.0034974848,0.027028656,0.00008790838,-0.042619433,-0.007499582,0.013015516,0.020950109,-0.022388544,0.03412803,-0.016530402,-0.023629773,0.007864991,0.01940727,0.027887076,-0.019592876,-0.019592876,-0.008926417,0.0060321465,-0.03206318,0.014291547,-0.010074845,0.0048924186,-0.008752412,0.004489309,0.008764013,0.0019256467,0.004645913,0.007737388,-0.02142572,-0.020033685,0.021622924,-0.01357233]},{"id":"interface-APIGuildAuditLogEntry","type":"interface","source":"main","text":"Interface: APIGuildAuditLogEntry\nDescription: Audit log entry from GET /guilds/{id}/audit-logs\nProperties: action_type: number, changes: { key: string; old_value?: string | number | boolean | null; new_value?: string | number | boolean | null; }[], id: string, reason: string | null, target_id: string | null, user_id: string | null","meta":{"url":"/docs/typedefs/APIGuildAuditLogEntry"},"embedding":[-0.032944333,0.029680165,-0.009160211,-0.015521018,-0.011143573,0.024946038,-0.054604586,-0.019455316,0.03862961,-0.021973697,0.05304816,-0.05239965,0.05862535,0.028534463,0.039991483,-0.0035235737,-0.044033863,0.007819956,-0.023713868,0.0368354,0.035905864,0.017747572,0.033355057,0.016720762,-0.034111653,-0.006058169,-0.013348508,0.0045828074,-0.030415144,0.013661955,0.028858718,-0.036705695,0.065542795,0.025032505,-0.01869872,0.02725906,0.0071174027,-0.040250886,0.04565514,-0.040121183,-0.014688763,-0.018374465,-0.007144424,0.008398212,-0.02217906,-0.0024373187,-0.01572638,0.023000507,-0.020038975,0.024989272,-0.035451908,-0.008452253,-0.01623438,0.029182972,0.0067715305,-0.010776083,-0.00862519,0.030890718,-0.036921866,0.020601017,-0.02652408,0.0052610417,0.0061608497,-0.046476588,0.040856164,0.017553018,-0.072071135,0.05624748,0.08543045,0.0043098927,0.058365945,0.0067066797,-0.065542795,0.022125017,-0.018536592,0.014829273,0.00015199465,-0.045611907,0.0100357,-0.052010544,-0.013035061,0.051707905,-0.07142262,-0.064375475,0.07073088,-0.0051745735,-0.031993184,-0.05092969,-0.008889998,-0.003637063,-0.00862519,0.023130208,-0.04405548,-0.010894977,0.038435057,-0.022741102,-0.012418976,-0.023324762,-0.008954849,0.034025185,0.023324762,-0.049675904,0.0023413931,-0.017001783,-0.016537018,0.03363608,0.0021535952,-0.00065931905,-0.0067337006,-0.0440771,-0.049805608,-0.010900381,-0.052442882,0.003947808,-0.037354205,0.00084306364,-0.008884594,0.017877273,0.042369355,-0.03625174,-0.057068925,-0.009111573,0.000998436,-0.021789953,0.008744083,0.0062365094,-0.013586295,-0.033376675,-0.017369274,0.029961186,0.03752714,0.01848255,-0.0123000825,0.0013787603,-0.03389548,0.010278892,0.00072214345,-0.00027544808,-0.04889769,-0.045914546,-0.025421612,0.0061608497,0.00659319,0.019725528,-0.059100926,0.046908926,-0.013942976,0.02710774,0.019412082,0.01297021,-0.046779227,0.034630463,-0.00016305648,-0.007982084,0.0317554,-0.01963906,-0.0021698081,-0.029982803,-0.020157868,0.017952932,0.038024332,-0.019314805,-0.009014296,0.011802891,-0.009695232,-0.00833336,0.017498976,-0.012159572,-0.030998802,0.0037370417,-0.007955062,-0.015175146,-0.050972927,0.029982803,-0.020449698,-0.013078296,-0.03102042,-0.0368354,-0.0401428,-0.023605783,-0.0133377,-0.03138791,-0.027194208,-0.02695642,-0.003337127,0.023778718,-0.038067568,0.0027588718,0.023605783,-0.041547906,-0.020017358,-0.004423382,-0.010678806,0.022741102,-0.009019701,-0.046001013,0.02775625,0.01869872,0.032122888,0.0024062442,-0.020114634,-0.040553525,0.038283736,-0.0617382,-0.01694774,0.010203232,0.0061608497,-0.059792668,0.002214393,-0.012743232,0.006722892,-0.013867317,-0.05058382,-0.0018847337,-0.02898842,0.051967308,-0.020741528,-0.018817613,0.028058888,-0.008630594,-0.006652637,0.0032803824,0.052356414,-0.013921359,0.018720336,0.020968506,0.018979741,0.011662381,-0.022351995,0.012613529,-0.06087352,0.015920933,-0.031690545,-0.036619227,-0.00044314886,0.00306151,0.01108953,0.022157442,0.015380507,0.011100338,0.0099384235,-0.008122594,-0.018320423,0.01725038,0.0113057,0.0039424035,0.028383143,0.003231744,-0.00097209023,0.057933606,0.005636637,0.03702995,-0.0077821263,-0.015683146,-0.01876357,0.015466976,-0.019412082,0.017455742,-0.02544323,-0.020763146,0.0534805,-0.0058149775,-0.032836247,-0.0257891,-0.019249953,0.01471038,0.026783485,0.006522935,-0.063899904,-0.020168677,-0.014872508,0.007290339,0.06701275,-0.03406842,0.004952999,-0.005139446,0.042996246,0.010138381,0.01725038,-0.035905864,-0.0015239997,-0.018342039,0.03357123,0.07760509,-0.006755318,0.009754679,0.008944041,-0.028664164,0.05451812,0.04703863,-0.0027534675,-0.0065499563,0.023930037,-0.015888508,-0.020093018,0.004236935,0.031085271,-0.027086122,0.06632101,0.02587557,0.008960254,-0.02535676,-0.03638144,-0.0699959,0.010678806,0.024167825,0.049675904,0.046303652,-0.036359824,-0.023022123,0.03718127,0.0036884036,-0.02174672,-0.008122594,-0.028837102,0.014991402,0.0039451057,0.023649016,-0.0102086365,0.014256422,0.020384846,-0.036143653,0.033700928,0.018093443,-0.017434124,-0.015250806,0.008095573,-0.02399489,0.026415994,0.014623912,0.051967308,-0.018752763,0.016850464,0.024902804,0.062948756,0.026070122,-0.013035061,0.014256422,0.03984016,0.0043261056,0.0015280528,-0.050324414,-0.022697868,0.022805953,0.011143573,0.0022387123,0.0028615526,0.0042612543,-0.019001357,0.031236589,-0.012689189,0.014580678,-0.018612253,0.0004526063,-0.055815138,-0.043061096,-0.006928254,-0.01660187,0.01891489,0.08089088,-0.015250806,-0.023670634,-0.0052637435,-0.023800336,0.005896041,-0.0045584883,-0.030566461,0.023821954,0.015034636,-0.05542603,0.050237946,-0.004642254,-0.028793866,-0.03441429,-0.04131012,0.021843996,-0.02101174,-0.013856508,0.012040678,0.005928467,-0.016623486,0.023324762,0.028685782,0.0012699998,-0.0014942763,-0.0145050185,-0.015780423,0.048162714,-0.02674025,-0.008209062,0.008317147,0.003850531,-0.024794718,-0.04412033,-0.018450124,-0.004677382,0.059792668,0.020482123,0.025551314,0.00092750514,0.035257354,0.0091061685,-0.00862519,-0.01855821,-0.023757102,-0.004658467,-0.0011180051,0.050194714,0.033074036,-0.017423315,0.02717259,0.04081293,0.0156182945,-0.042455822,0.07211437,-0.07163879,0.008868381,0.026178207,-0.006317573,0.0071930625,0.013413359,0.0078794025,-0.01326204,0.0011727231,-0.017304422,-0.020903656,0.010613956,0.02246008,-0.011629955,-0.058971222,-0.04094263,0.020341612,0.04260714,-0.039732076,0.025097357,-0.06662364,-0.0025589145,-0.045914546,-0.0075281262,0.008641402,-0.0068255733,-0.019995742,0.010862551,0.017747572,0.013910551,0.006571573,0.015575061,-0.073108755,0.05542603,0.0005674467,-0.0077659134,0.0037343397,-0.016061444,0.028275058,-0.02137923,-0.049589437,-0.0114678275,0.012559487,-0.027237441,0.0046611694,-0.038521525,-0.010565317,0.020190295,0.043082714,0.013035061,-0.00840902,-0.07414637,-0.014753615,-0.04044544,-0.0075335302,-0.041223653,-0.017607061,0.026610548,-0.023281528,-0.031604078,0.030177357,0.00026497734,-0.033355057,-0.013715997,-0.004734127,-0.03361446,0.023951655,-0.02892357,-0.014126721,0.05732833,0.03514927,0.0019036486,0.02725906,-0.0048827436,-0.013467401,-0.02950723,0.017952932,0.009516892,-0.008506296,0.002425159,-0.0072362963,-0.0032911908,-0.08171233,0.024232676,0.01608306,0.035559993,-0.06852595,-0.015466976,0.026588932,-0.0017536805,0.0032911908,-0.047298033,-0.032555226,0.0036613822,-0.006225701,0.010813912,0.020525359,0.001369303,-0.020741528,0.011500253,-0.010624764,-0.04377446,0.0070255306,-0.017131487,0.015899315,0.014829273,0.0074308496,0.042931397,-0.0048449137,-0.0052394243,0.020049782,-0.012429785,-0.08006943,0.00823068,0.0012112284,0.007679445,0.028556079,0.056723054,0.028945185,-0.020471316,-0.026826719,0.01695855,-0.001487521,0.019628251,-0.02442723,0.011673189,0.039710462,0.0011274626,-0.004569297,-0.014440168,-0.0036667865,-0.014191572,-0.011889359,0.025335144,0.020406464,0.010776083,-0.036122035,-0.0035803185,-0.020093018,-0.0038451268,0.013661955,0.03238229,-0.011024679,-0.0033722545,-0.0064364667,0.026048506,-0.0060311477,0.013197189,-0.033960335,-0.022957273,0.008484679,0.02572425,0.0013280954,0.027713016,0.00045665947,0.011846125,-0.00280751,0.0074308496,0.0026656485,0.01253787,-0.000893053,-0.022805953,0.049632672,0.01754221,0.026070122,0.00061946263,-0.06333786,0.026697015,0.030977186,-0.0024292122,-0.020384846,0.03897548,0.029917952,-0.008998083,0.0034019782,0.014007827,0.022741102,-0.014342891,-0.022049358,0.011705615,0.009711445,-0.011910977,0.0139537845,-0.03512765,0.03320374,0.018385272,0.05188084,-0.011759657,0.00854953,0.014818465,0.015304848,0.0037937865,-0.0027142868,-0.027302293,-0.012667572,-0.012483828,-0.0030804249,-0.017671911,-0.033960335,-0.004893552,-0.02442723,-0.03847829,0.0052205096,-0.015747996,0.0025778292,0.021638634,0.0049692118,0.048638288,0.015650721,0.020449698,0.020817187,-0.040856164,-0.04803301,-0.042088334,-0.02217906,-0.013510636,-0.041483056,0.010051913,-0.022524932,-0.014677955,0.01811506,0.018298805,-0.0125811035,0.00663102,-0.006966084,0.048811223,0.02399489,0.021725101,-0.02544323,0.029463993,-0.028837102,0.016277613,-0.01398621,-0.05356697,0.008095573,0.00011661367,-0.039191652,0.01928238,-0.00014887031,0.012148764,0.0073011476,0.012656763,0.019520167,-0.0023440954,-0.01471038,-0.045482203,0.01355387,-0.0004130877,0.025205443,-0.03906195,0.005442084,-0.0023535527,0.011208423,0.018287996,0.0031452759,0.0019684995,0.03893225,-0.03415489,0.04284493,0.030544845,0.0015429145,-0.019044591,-0.017661102,0.0055339565,0.014332082,0.013661955,0.0063878284,0.010241061,-0.023432847,-0.012775657,-0.0058311904,0.044487823,0.011008466,0.043061096,0.013932168,0.020449698,0.01891489,0.034630463,-0.028080504,0.001464553,-0.0076416153,0.026653782,0.013110721,-0.02609174,0.0074092327,0.00854953,-0.009441232,-0.0037532547,-0.011651572,-0.011500253,0.07073088,0.023930037,0.01979038,-0.0062202965,-0.036619227,-0.03361446,0.018612253,-0.02341123,0.014483402,-0.02130357,0.029809866,-0.04833565,-0.043925777,0.012667572,-0.011683998,0.016990975,0.008327955,-0.015348082,-0.042001866,0.014937359,0.019077018,-0.035387058,0.016753187,0.008436041,-0.02492442,-0.03318212,0.0055988072,0.0045611905,-0.004658467,0.0025575634,0.0349331,-0.0045368713,0.016039826,0.014051061,0.003866744,-0.01833123,0.004190999,-0.0060257437,-0.017617868,-0.016407317,-0.021476507,-0.027215825,0.0054258713,-0.009370977,-0.017055826,0.002318425,0.0038802545,-0.03748391,-0.04608748,0.0076632327,-0.06238671,0.0063445945,0.009035913,-0.028512845,0.025140591,-0.0029074887,-0.014007827,0.058452412,0.03724612,-0.019952506,0.0048557227,-0.031712163,0.004334212,0.019098634,-0.013456593,-0.015099486,-0.02144408,-0.025205443,0.0054501905,0.064116076,-0.03653276,0.032274205,-0.05183761,0.045957778,0.010878764,-0.012440593,-0.006944467,-0.0153264655,-0.011694807,-0.0020252443,0.0047476375,0.011856934,-0.03984016,-0.024729868,-0.0025264889,-0.01572638,-0.010949019,0.039667226,-0.012051487,0.012699997,0.018244762,-0.020817187,-0.07587573,0.009073743,0.056333948,0.0009781701,-0.0023224782,0.003847829,0.01449421,0.042218033,-0.064116076,-0.021995315,0.0032371483,-0.053307563,0.013489018,-0.009608764,0.04349344,0.010100551,0.0010578828,0.0010551807,0.055771902,0.05724186,-0.008673828,0.05218348,-0.015661528,0.013099913,0.019898465,0.030371908,-0.008517105,0.009754679,0.055555735,-0.04885446,0.028685782,-0.037570376,-0.039191652,-0.03625174,0.013856508,-0.0084306365,-0.00081266474,0.029896334,-0.016093869,-0.03450076,-0.0040964247,-0.011327317,-0.020060591,0.021562975,0.02529191,-0.015272423,0.004296382,0.032425527,-0.0012416274,0.01594255,0.011284083,0.046995394,0.01646136,0.007906424,0.0103545515,0.018569017,-0.023216676,-0.02427591,-0.031128505,-0.052875225,0.0028048079,0.008138807,0.0043558287,-0.0175314,-0.00072146795,-0.03117174,-0.052140243,0.01811506,0.028015655,-0.035451908,0.023735484,0.03478178,-0.03406842,0.013618721,0.013272849,0.05015148,-0.013964593,-0.025118973,0.0076416153,-0.00014659039,0.02130357,0.012073104,0.03022059,0.027713016,0.0023049144,-0.0002702127,0.005469105,0.032447144,-0.021281954,-0.038737696,0.025399994,0.006993105,0.015380507,0.0038316164,0.011392168,-0.00051340414,0.033657696,-0.008376594,-0.038607992,-0.003147978,-0.015445359,0.023865188,0.014018635,0.011921785,-0.015391316,0.009392594,0.02470825,0.017012592,-0.0042153182,0.003169595,0.013737614,0.025810719,-0.014894125,0.00920885,-0.005896041,-0.010154594,0.024319144,0.00052759034,0.030307058,0.001977957,-0.01674238,0.0008754892,-0.011057104,-0.0007552445,0.035343822,0.017498976,-0.0032992973,-0.04375284,-0.03893225,0.024383996,0.008900806,-0.033679314,0.018817613,0.055598967,-0.05789037,-0.011694807,0.035776164,-0.021400847,-0.041785695,0.0020630741,-0.013888934,-0.005077297,-0.012224423,0.0125702955,-0.013370125,0.016645104,-0.019444507,0.005079999,-0.015553444,-0.028058888,0.014418551,-0.027734634,-0.014148338,-0.0133917425,-0.006890424,0.008490084,-0.027345527,0.002550808,-0.037591994,0.020525359,0.043601524,0.029723398,0.032511994,0.020125443,-0.026415994,-0.022784336,-0.016126296,-0.015683146,-0.05283199,-0.009322339,0.012083912,0.02760493,0.021854805,-0.01608306,-0.017336847,0.013564678,0.042671993,0.0020698295,0.010370764,0.019152677,-0.019012166,-0.00858736,-0.032728165,-0.013175572,0.04239097,0.017996166,0.02797242,-0.025918804,0.0037262333,0.004604425,-0.0147860395,0.078253604,0.029615313,0.0016631592,-0.03179863,-0.035257354,0.0018860848,-0.0068796156,-0.008192849,0.008684637,0.012397359,-0.0005610291,-0.019174295,-0.0073443814,0.017261188,0.0032479567,-0.018601444,0.014429359,0.005966297,-0.008695445,0.02920459,0.001530755,0.009198041,0.010576125,0.013586295,0.0107706785,-0.04734127,-0.035106037,0.013316083,0.006079786,0.03690025,0.01083553,0.0042639566,0.06057088,-0.013607913,0.040337354,-0.042931397,-0.02905327,-0.019509358,0.02319506,0.013380934,-0.0024413718,-0.02282757,-0.015834466,0.028318292,0.024751484,0.012094721,-0.01138136,0.023778718,0.045179565,-0.015456167,0.03694348,-0.028296676,-0.009052126,0.0030128718,0.0084306365,0.0034884461,0.047730375,-0.015110295,0.02115225,0.0038424248,0.017001783,-0.009025104,-0.013326891,-0.0023157229,-0.0401428,-0.012991827,0.010446424,-0.016191145,-0.005804169,0.009381785,0.032836247,-0.041202035,-0.028275058,0.009019701,0.0019712017,-0.017088251,0.020136252,-0.0019752549,0.00059784565,-0.0012044732,-0.0041801906,0.05451812,-0.014656338,-0.02145489,-0.006544552,-0.029399144,0.022719486,-0.00040363023,0.022006124,-0.0012585158,-0.037656844,-0.020028166,-0.0054258713,-0.008009105,-0.0031587866,-0.023346378,-0.0051799775,-0.0029912547,0.022395229,0.005460999,0.0256594,0.0028669569,-0.036446292,0.00005032712,-0.014148338,0.010051913,-0.010613956,0.03566808,0.031539228,-0.031971566,-0.012786466,-0.0073389774,-0.025313526,0.005582595,0.013726806,0.01826638,0.031712163,0.03951591,0.015564253,-0.000042558502,0.007014722,0.018212337,0.016915316,0.039256502,0.009397998,-0.019012166,-0.036986716,-0.017315231,-0.023886804,0.029680165,0.0015375103,-0.0013368774,-0.004869233,-0.0014848189,-0.024621783,0.024470463,-0.021022549,0.0029912547,-0.019974124,0.03071778,-0.017596252,-0.0120190615,0.0064256582,0.013834891,0.0032641697,-0.022805953,0.029118123,-0.0041369568,-0.014472593,0.0028129143,-0.011424594,-0.028231824,-0.016872082,0.012699997,-0.024102975,0.0044341907,-0.018385272,-0.0031560846,0.012429785,0.045395736,-0.011003062,0.002125223,0.02760493,-0.014948167,0.017217955,0.024297528,0.0025008186,0.016407317,0.0053502116,-0.0032560632,0.028880335,0.0125702955,0.00016643414,-0.0051313397,-0.03305242,-0.011008466,0.03564646,0.029118123,-0.018028593,0.0042558503,0.037267737,-0.008652211,-0.010095147,-0.009695232,-0.030393526,0.041266885,-0.0054528927,0.025097357,0.0029912547,-0.00049584033,0.048724756,0.008560339,0.016472166,-0.026026888,-0.020136252,0.028361527,0.031949952,0.01934723,0.0010740955,0.034738548,0.0075767646,-0.013586295,-0.021368422,-0.019466124,-0.0052745524,0.009008892,-0.0102897,-0.006614807,0.0038910632,-0.037505526,-0.0061446372,-0.0004988802,0.0033965737,0.01646136,-0.018968932,-0.0063445945,0.07276288,-0.01159753,-0.017639486,-0.017142294,0.035343822,-0.028966803,-0.026351145,0.014894125,0.00069579773,0.006609403,-0.0019793082,0.011175998,0.03951591,0.008165828,-0.004825999,0.02905327,0.025486464,0.0026413293,0.0047098077,-0.0016428933,-0.0059176586,-0.019995742,0.026459228,-0.0153264655,-0.020060591,-0.000005472863,0.022892421,-0.030544845,0.04042382,0.013110721,-0.022438463,0.018741954,0.029766632,0.011240849,-0.03389548,-0.0018847337,0.039321356,0.011921785,0.013564678,-0.0031641908,0.001977957,-0.016472166,-0.028534463,-0.01723957,0.015974976,0.014731997,0.01202987,0.022633016,-0.008030722,0.022222294,0.014310465,0.0026251166,0.015380507,-0.01725038,0.025464846,-0.0236274,-0.000711335,-0.007911828,-0.0013902445,0.0076416153,-0.030782633,0.0052367225,-0.016580252,0.020298379,0.024081357,0.000118471384,-0.0028885738,0.026243059,0.013726806,0.0075281262,-0.009068338,0.009300722,0.02550808,-0.033419907,-0.008998083,0.019185103,-0.0111868065,0.040899396,0.022784336,0.001592904,-0.030696165,-0.03145276,0.027194208,-0.0027102334,-0.029442377,0.028815484,0.028231824,0.009003487,0.019682294,0.021390038,-0.013067487,-0.0016253295,-0.011327317,-0.010441019,-0.049286798,-0.013867317,-0.022849187,0.055555735,0.0013625476,0.016299231,0.001973904,0.005352914,0.013921359,-0.00009212564,0.01782323,-0.0440771,0.023216676,0.030307058,0.004526063,-0.014569869,0.012386551,-0.007901019,-0.011651572,0.017271997,-0.004701701,0.032771397,-0.025962038,-0.023238294,-0.009824934,-0.024038123,-0.014537444,-0.011143573,-0.030371908,-0.024967656,-0.0065661687,-0.0022360103,-0.003485744,0.004739531,-0.003655978,-0.009597955,-0.016093869,-0.0022022335,-0.013791657,0.018352848,-0.0043936586,-0.0041423608,-0.030371908,0.005933871,-0.0040288717,0.014180764,0.014569869,0.023303144,-0.021065783,-0.03949429,0.036727313,-0.011273274,-0.0028885738,0.017271997,0.010154594,-0.02544323,0.041915394,0.012991827,0.026178207,-0.022351995,-0.0022643826,0.03891063,-0.00268051,-0.0037370417,0.012808083,-0.011078721,-0.045482203,-0.012083912,0.050194714,0.048076246,0.018882465,0.006393233,-0.06290552,-0.0059014456,-0.00590685,0.011284083,0.010630168,0.011024679,-0.0038127014,-0.010397785,0.000086805834,-0.014634721,-0.024881186,-0.022308761,-0.003931595,-0.030307058,-0.0024265102,-0.026502462,-0.004482829,-0.0064256582,0.010559913,-0.027345527,0.018169103,0.004534169,-0.003701914,-0.008673828,-0.0024373187,-0.004488233,0.0014915742,-0.0071498286,0.004993531,0.039451055,-0.0131323375,-0.039018717,-0.008052339,-0.0002453869,-0.028361527,-0.024340762,-0.018504167,-0.0045152544,0.047643907,-0.008938637,-0.019271571,0.02369225,-0.012473019,-0.0031749993,0.018720336,-0.03770008,-0.026718633,-0.01812587,-0.009965445,-0.043147568,0.027496846,-0.010516679,-0.013272849,-0.020990124,0.0111868065,0.000011547371,-0.039364588,0.0059014456,0.003850531,0.05732833,0.0076848497,-0.011392168,0.009295317,-0.047514204,-0.04811948,0.035603225,-0.007166041,-0.0029885527,-0.01362953,-0.021206293,-0.021952081,0.04074808,0.035257354,-0.017650295,0.02267625,0.027885951,-0.005544765,-0.00811719,-0.022914039,0.017282804,-0.0026048506,-0.01025187,0.025551314,0.00006848203,-0.016893698,-0.05270229,0.010154594,0.028945185,-0.012818892,-0.010495062,-0.015521018,0.034241356,0.0058095735,0.011586721,0.022200676,0.019811995,0.005298871,0.02942076,-0.007220084,-0.032209355,-0.015812848,0.019358039,0.0011429997,0.033463143,0.019098634,0.019358039,0.031323057,-0.020449698,-0.0076145944,-0.014213189,-0.024297528,-0.017607061,0.02101174,-0.017401699,0.011543487,0.016915316,-0.018774379,-0.0440771,0.019239144,-0.042455822,-0.030307058,-0.0014686061,0.0013969997,0.019163486,0.027821101,0.053134628,-0.0030534037,0.036273353,0.033938717,0.023584165,-0.028729016,-0.0035749143,0.011057104,0.010441019,-0.017596252,0.05940356,-0.010003274,-0.025335144,-0.018460933,0.010462636,0.028534463,-0.0052583395,0.045266032,-0.002272489,-0.02341123,0.007792935,0.026329527,0.02950723,-0.011208423,-0.0071336157,-0.004245042,0.014299657,-0.018968932,0.01007353,-0.015715571,-0.012224423,-0.025227059,0.0028939783,-0.007819956,0.0053231902,0.0049827225,0.021541357,-0.021487314,-0.015953358,0.0031506803,-0.001487521]},{"id":"interface-APIGuildFeatureToggle","type":"interface","source":"main","text":"Interface: APIGuildFeatureToggle\nDescription: Request body for guild feature toggles (text-channel-flexible-names, etc.)\nProperties: enabled: boolean","meta":{"url":"/docs/typedefs/APIGuildFeatureToggle"},"embedding":[0.031987663,0.039009936,-0.030486349,0.025110679,-0.0036231296,-0.0056329523,-0.033440545,0.0052122213,0.03329526,-0.014201941,0.009855396,-0.008093774,-0.007548943,0.009607196,0.032375097,-0.012210279,-0.01227687,0.024892746,-0.02330668,0.0119923465,-0.011847058,0.011138777,-0.038549855,0.011041919,-0.06450805,-0.008384352,-0.0031872643,0.019371787,0.005962878,-0.013342318,0.027411077,-0.04603221,0.04455511,0.0043283836,-0.028694458,0.02721736,0.0086083375,0.020994173,0.011544374,-0.02064306,-0.028500741,-0.026999427,-0.016683951,0.0228466,-0.017180353,0.074629806,-0.006695374,0.020437235,-0.0015073671,0.009334779,-0.013923472,-0.0039924043,-0.046686005,0.048405252,0.03356162,0.016248086,-0.05714677,0.01843952,-0.016090691,0.028500741,-0.04353809,-0.02690257,0.018318446,0.009813021,0.011114563,0.022640776,-0.07874631,0.031697087,0.03821085,0.004988235,0.028694458,-0.018173158,-0.01682924,0.044627752,0.021696402,0.0105878925,-0.0017646487,0.025522329,-0.012282924,-0.036854822,-0.052400682,0.037460193,-0.0976338,-0.048114676,0.014770987,0.024081552,-0.03191502,0.0028921473,-0.029202968,-0.010164134,-0.004143746,-0.052206963,-0.069399424,-0.019020673,-0.001118418,-0.04818732,0.024868531,0.017107708,-0.020897314,0.064362764,0.08620445,0.012083152,-0.072353624,-0.0340217,0.033004683,-0.011986293,0.028670244,0.008753626,0.013027526,0.0017828097,-0.07608269,0.013572358,0.0020113364,0.02680571,-0.022907138,-0.028113306,0.045402624,-0.0016874642,0.052110106,-0.027072072,-0.02027984,-0.026660422,0.039470017,-0.052739687,-0.020776242,-0.016005939,-0.031648654,-0.03387641,-0.04482147,0.04036596,0.00155731,0.010769502,0.03310154,0.06876984,-0.055693887,0.009607196,-0.009667732,0.016720273,-0.061069556,-0.003444546,-0.0022746716,-0.016417589,0.07608269,0.047896743,-0.059568245,-0.000743468,0.003438492,0.01645391,0.0016768703,0.0571952,-0.057631064,0.036176812,0.015412678,-0.01875431,-0.010708965,-0.049640205,0.023633579,0.003444546,-0.039373156,-0.02069149,0.0024517418,-0.03627367,-0.010006739,-0.0024229868,0.017361963,-0.0056692744,0.03145494,-0.0061626495,-0.054241,0.026151912,0.019165961,0.009268189,-0.053030267,0.013427069,0.02782273,0.029614618,0.0033900626,-0.044385605,-0.03290782,-0.027338434,0.033949055,-0.010884522,-0.03356162,-0.028912392,-0.03453021,0.0005372644,-0.00894129,0.009843289,0.01728932,-0.019843973,-0.035377726,0.033634264,0.013463392,0.00021755425,0.023112962,-0.015872758,0.02772587,-0.0021641918,0.0055149053,-0.04031753,-0.010521302,-0.014855739,0.06053683,-0.0114898905,-0.026563562,-0.013681324,-0.003326499,-0.010466819,-0.042448428,0.04579006,0.002380611,0.014492518,-0.04022067,-0.000015417974,-0.06513763,0.004516048,-0.030195773,0.018100513,0.027604796,-0.0020264704,-0.011435408,-0.00092924037,0.0509478,-0.01204683,0.0030616503,0.01043655,-0.022398628,0.00066968874,-0.007022273,0.010188349,0.00071849657,-0.006177784,-0.008898915,-0.012083152,-0.0103820665,-0.005448315,0.026248772,0.011102455,0.0034869215,-0.036491603,-0.053901996,-0.030583208,-0.040462818,-0.028936606,-0.006386636,-0.013669217,0.0084751565,0.011925756,0.0032235864,-0.014516733,0.033271044,0.05365985,-0.013584466,-0.041600913,0.023209821,-0.018681666,0.008789948,0.013935579,0.024941174,-0.038549855,0.041528266,0.008039291,-0.030413706,-0.0070041115,-0.00089216157,0.02473535,0.02460217,-0.0054997713,-0.036007307,0.035523012,-0.0048096515,0.009262135,0.060633693,0.009383209,0.005118389,0.039300513,0.023003997,0.048913762,0.012252655,-0.00622924,-0.03162444,-0.022168588,-0.014722558,0.015206853,-0.012991204,-0.016163334,-0.007930325,-0.002071873,0.032205597,0.04031753,0.011465676,0.032254025,0.06857613,0.011919702,0.0025410336,0.036757965,0.008456996,-0.014444089,0.08567172,0.024178412,0.047509305,-0.027992232,-0.042303137,-0.05002764,0.013475499,0.035740945,0.028791318,0.024360022,0.022616562,-0.020558309,0.047388233,-0.011169046,-0.038186636,-0.020400913,-0.0424,-0.01756779,0.040148027,0.038961507,0.0036352368,0.009891719,0.028113306,0.03973638,-0.0022095945,-0.034457564,0.026442489,-0.035184007,0.02804066,0.0040014847,-0.0074823527,0.02391205,0.019347573,-0.033343688,0.02782273,0.031067504,0.00859623,-0.008553854,-0.015921187,0.041528266,0.012337406,-0.01163518,0.015896972,0.0054150196,-0.024142088,0.023742545,0.01811262,0.019747116,-0.028355453,0.035644088,-0.015206853,0.055693887,0.020521987,0.026515134,0.01365711,0.008638606,-0.062425584,-0.115649566,0.02915454,-0.025764477,-0.0034173043,0.029445115,-0.011520159,0.026854139,0.0093468875,0.058841802,-0.0003666262,-0.026950998,-0.006477441,0.010376013,0.03610417,-0.010563677,0.043780237,0.036709536,-0.010388121,-0.027580582,0.02330668,0.031551797,-0.013596573,0.0016360079,0.015461107,-0.03227824,0.027386863,-0.013330211,0.025183322,-0.02143004,-0.020558309,-0.019710792,0.0016980582,0.01645391,-0.03971216,-0.02845231,0.02593398,-0.004458538,-0.03365848,-0.033077326,0.030728497,0.0017343803,0.018282123,0.021526897,0.017713077,-0.03489343,0.015182638,-0.014262478,-0.046564933,-0.0043041687,-0.045814276,0.0036201025,0.025304396,0.017495144,0.032835178,-0.012064991,0.016417589,0.004434323,0.028742889,0.014613591,-0.002114249,-0.008245117,-0.008565962,-0.043925527,0.020388806,0.010981382,0.024360022,-0.0007351442,0.026950998,0.0039712163,0.045814276,-0.009528497,-0.0046734437,0.0113567095,-0.006556139,-0.057970073,-0.054725297,0.0045009134,0.021127354,-0.025110679,0.04017224,-0.02455374,0.062231865,-0.046104852,0.012180011,0.0059083947,-0.030510563,0.007797144,-0.012821701,0.0016541689,0.013209137,0.0068103937,0.027023641,-0.05099623,0.003959109,-0.009710108,-0.06412061,0.033513192,-0.019105425,0.046564933,-0.0018539405,0.020376697,0.015097886,0.024747457,-0.018778525,0.023161393,0.012010507,0.0001841644,0.014879953,0.026103482,-0.021708509,-0.005717704,0.010606053,-0.0005875856,0.010406282,0.049398057,-0.039930094,0.014323015,0.0509478,0.0031842375,-0.027943803,0.013523929,0.042811647,0.053320844,0.015533752,0.009510336,0.010152027,0.03494186,-0.03038949,-0.03407013,0.06087584,0.0755984,0.04571742,-0.003175157,-0.04252107,-0.026563562,0.01862113,-0.0045705307,-0.0024910907,-0.012579554,0.046104852,-0.03755705,-0.02156322,-0.03380377,0.01880274,-0.012107367,0.01078161,-0.006792233,-0.020582523,0.0023140204,0.024214733,0.036709536,0.0073491717,-0.039131008,-0.060197826,-0.012204225,-0.05167424,-0.043610733,-0.00818458,-0.0024411478,-0.047509305,-0.0084448885,-0.06412061,0.01613912,0.008808109,0.022955567,-0.03474814,0.04373181,0.0019462592,-0.008148258,0.018572701,0.005829697,0.0064471727,-0.03825928,-0.015449,0.010303369,-0.011641233,-0.035232436,0.010733181,0.04368338,0.0008997287,-0.019783437,-0.011066133,0.022108052,0.03586202,-0.021720616,-0.008450942,-0.0104547115,-0.007845573,0.0018055111,0.0007960594,0.018984351,-0.05075408,-0.0024804967,0.02845231,-0.008856539,0.021127354,-0.036079954,-0.0036352368,-0.011314334,0.02721736,0.037532836,-0.009540604,-0.01250691,0.021672186,-0.00040748855,-0.011810736,-0.028888177,0.02675728,-0.01632073,-0.028573385,-0.014504625,0.030728497,0.029905196,-0.0028331238,-0.01096322,0.03903415,0.037072755,0.012410051,0.011308281,0.026878353,-0.0075428896,-0.023343002,0.009425585,0.00265,0.03145494,0.0050760135,-0.04506362,0.02212016,0.053175554,-0.028258594,-0.04022067,0.0024971443,0.011804682,-0.010309422,0.027483722,0.020655168,0.009250028,0.029808337,0.021938547,0.005181953,-0.03760548,0.005348429,-0.004852027,-0.026611991,0.019686578,-0.007942433,-0.028742889,-0.0262972,-0.019892404,0.015073671,0.009352941,0.031479154,-0.009044203,-0.009431639,0.029784122,-0.013814505,0.014892061,-0.018003654,-0.011017703,-0.053756706,-0.031358078,-0.009788806,0.013862935,0.022265447,-0.0066408906,-0.0006825528,-0.006044603,0.0001833131,-0.010448657,-0.0057661333,0.008729411,0.0002213378,-0.0071978294,0.018427411,-0.02956619,-0.011465676,-0.014746772,0.006002227,-0.021224214,-0.05646876,-0.022882923,0.012028669,0.012676413,0.010727127,-0.016344944,0.03329526,-0.017495144,0.0026666475,-0.032883607,0.0014793689,-0.046952367,-0.009395316,-0.002571302,-0.0031812105,0.01944443,0.029735692,0.016429696,-0.00020204169,-0.008251171,0.0188996,-0.0386225,-0.045911133,0.00012627605,0.02992941,-0.013463392,-0.015557966,0.0043677324,0.018475842,0.022689205,0.013681324,0.020231409,-0.008814163,0.023548828,-0.034869216,0.0080756135,0.013984009,0.038792003,-0.029638834,-0.019202283,-0.01613912,-0.0059537976,-0.01475888,-0.046419643,-0.004797544,0.03310154,-0.003420331,0.02900925,-0.03094643,-0.040123813,0.010309422,-0.049567558,0.015267389,0.0071736146,0.017834151,-0.033077326,0.004743061,0.021720616,-0.028863963,-0.028500741,-0.015436892,0.001181225,0.024021015,-0.01521896,-0.003614049,0.01645391,0.011514106,0.029299827,-0.0048974296,-0.021212107,-0.0011585236,0.009407423,-0.016974527,-0.006646944,0.01517053,-0.0027392916,-0.07433923,0.011005596,-0.02767744,-0.006937521,0.022192802,0.0058024554,-0.017991547,-0.0029405768,0.03871936,0.018778525,0.016381267,0.0054967445,0.028718673,0.041552484,-0.022217019,0.028331239,0.02041302,0.019965047,-0.04932541,-0.01337864,-0.021236321,0.049083263,0.0151099935,0.005790348,0.0102186175,0.033174183,0.034336492,0.0055209594,-0.035426155,-0.002006796,-0.0025924898,0.024129981,0.01728932,0.023161393,-0.023028212,0.017131925,-0.0025667618,0.0071736146,-0.035498798,0.022338092,-0.00046424184,0.0074460306,-0.035789374,0.025716046,0.014359336,-0.022834493,0.0021747858,-0.042496856,-0.027459508,0.030825356,-0.020170873,0.007875842,0.00668932,0.010842146,-0.019989261,0.011986293,-0.033682693,-0.00061369216,0.03457864,0.03709697,-0.006368475,-0.024335807,-0.0071130777,-0.0033022843,0.061989717,-0.029178753,-0.025401255,-0.048429467,0.04123769,-0.031285435,-0.0033204453,-0.010442603,-0.020122442,-0.03145494,0.0043465444,-0.025691831,0.032956254,0.0011426327,0.036757965,-0.01089663,-0.033125754,0.014553054,-0.0015285551,-0.007094917,0.015836436,0.055936035,-0.009425585,-0.070997596,0.0028316104,0.015267389,-0.019008566,-0.0038259279,0.017483037,0.011047972,0.0688667,-0.017652541,-0.020618845,0.036297884,-0.0074097086,0.03857407,0.0162723,0.009734322,0.010769502,0.021066818,-0.009147115,0.036201026,0.0050548255,-0.016078582,0.030147342,-0.010733181,0.012482695,-0.002046145,0.0325446,-0.007361279,-0.011072187,0.02634563,-0.029687263,0.027386863,0.0063745286,-0.0013408909,0.0104849795,0.014807309,0.0020491718,-0.003444546,-0.019662363,-0.003096459,0.024033124,-0.0001866237,-0.013172815,-0.015824327,0.023742545,-0.015315819,0.03094643,-0.015327926,-0.012749057,-0.0228466,-0.003067704,0.010823986,0.04615328,0.047049228,0.044119243,-0.006792233,-0.0032720158,0.0027544259,0.021260535,-0.024021015,-0.049034834,0.017035065,0.02905768,0.0032932037,-0.023657795,0.009183438,-0.045257337,0.012555339,-0.026176127,-0.018282123,-0.024481095,0.02762901,-0.00951639,-0.0018130782,0.008638606,-0.019299142,0.00386225,-0.0039924043,-0.0117259845,-0.011913649,0.015158423,0.018887492,0.021212107,0.024989605,-0.0036988005,0.021442147,0.020546202,-0.03356162,0.006961736,-0.015449,-0.0432233,0.018330554,0.0223502,0.033222616,0.009643517,0.018245801,-0.023439862,-0.00737944,-0.012331353,-0.017749399,-0.032714106,0.006265562,-0.008923129,0.0080756135,-0.057582635,-0.0040620216,-0.012579554,0.013875042,0.04206099,-0.0052818386,-0.011768361,-0.018318446,-0.011308281,-0.023500398,0.010242832,-0.0076881777,-0.032568816,0.03825928,0.014310908,0.014843632,0.014625699,0.021224214,-0.016623415,-0.012761164,-0.039421584,0.016768703,0.0019220444,0.003232667,-0.032496173,-0.0055905767,-0.0010926898,-0.042787433,-0.008723358,-0.013269674,-0.01494049,-0.015981724,-0.03973638,0.0021626784,-0.019117532,-0.05167424,-0.015691146,0.01696242,0.0003987864,-0.042375784,0.016659737,0.018173158,-0.027435293,0.016720273,-0.015436892,-0.03213295,-0.049567558,0.0035474584,-0.012785379,-0.011895488,0.030873785,0.018366875,0.040777612,-0.008862592,0.02721736,-0.026079267,0.028258594,-0.026418274,0.036515817,0.042303137,-0.0025213591,0.008263278,-0.03423963,-0.027362648,0.007803198,-0.004240605,0.017846258,-0.04983392,0.0069859507,-0.009280297,-0.01475888,-0.039009936,0.043053795,0.048913762,0.002427527,0.0046189604,0.05157738,0.0022595373,-0.0124948025,-0.0131001705,-0.02772587,0.022132266,0.005720731,0.03084957,-0.021502683,-0.0014680182,-0.016018046,-0.01411719,0.056759335,0.030292632,-0.010309422,-0.011744145,-0.015557966,0.02951776,-0.002913335,-0.0033779552,0.007815305,0.026224555,0.043925527,-0.009734322,-0.0038531695,-0.04496676,-0.032205597,0.00040673185,-0.013548143,-0.000011102361,0.02896082,0.0042345515,0.042278923,-0.0006205025,0.010109651,0.053998854,0.047025014,-0.04988235,-0.023100855,-0.0054937177,0.030292632,0.021236321,0.0004021916,-0.017870473,-0.038307708,-0.0103820665,-0.0059689316,0.0032266132,-0.008826271,-0.02059463,0.030680068,-0.002636379,0.0116230715,-0.0010942032,-0.0032447742,0.010491033,-0.011120616,0.01563061,0.0046401485,-0.026418274,0.042811647,0.009867504,0.037314903,0.022447057,-0.015788006,-0.0055542546,-0.015739577,0.0026696743,0.025619188,-0.007851628,0.011108509,-0.023294574,-0.00460988,-0.016986635,-0.002323101,0.0085780695,-0.00026598372,0.021478469,0.02583712,-0.017834151,0.014516733,-0.014649914,-0.030510563,0.020570416,-0.016671844,0.029638834,0.0071372925,0.018548485,-0.011768361,0.040801827,-0.037629694,0.030970644,0.0073552253,0.0043283836,0.051189948,-0.016526556,-0.0006927684,-0.016211763,0.003962136,-0.007942433,0.03462707,-0.018463735,-0.030752711,0.011671501,0.04072918,-0.023754653,-0.02381519,0.04055968,-0.003250828,0.0223502,0.036757965,0.0033355795,0.033222616,0.03770234,-0.07070702,0.014056653,-0.0116957165,-0.011090348,-0.019299142,0.020497771,0.008777841,-0.026079267,0.016308622,-0.025207538,-0.010951113,0.009365048,0.0035050826,0.012216333,-0.004319303,0.034723926,0.013039634,-0.002503198,-0.007670017,0.028064875,-0.010109651,0.048744258,0.016163334,0.009728269,-0.019880297,-0.0123918895,-0.012761164,0.0089776125,-0.0231735,-0.0041588806,0.012410051,-0.025691831,0.0012970016,0.0047854367,-0.0046673897,0.0062595084,-0.028016446,0.0031418616,-0.032036092,0.029420901,-0.0029012277,0.018052084,-0.017688863,-0.033343688,0.030922214,0.006477441,-0.0034415189,-0.012724842,0.04983392,0.010581838,-0.008142204,0.024541631,0.015049457,0.004107424,-0.008305654,0.0019598799,-0.032036092,0.06993215,-0.0007854654,-0.000085082625,-0.021454254,0.008154311,0.008995773,0.009788806,-0.006211079,0.012652198,0.00288458,0.00067612075,-0.009903826,0.0012417618,-0.01452884,-0.010660537,0.012210279,-0.012180011,-0.00368972,0.034094345,-0.015061564,0.00051040115,0.001758595,0.0035141632,0.014250371,-0.0104547115,-0.0034748141,0.053756706,-0.00018870465,0.028718673,0.008650714,-0.024033124,0.012979097,-0.011278012,0.03213295,0.0013424043,0.0021778126,0.016260194,-0.005581496,0.03387641,0.029541975,0.0028104226,-0.04215785,-0.01319703,-0.022616562,0.0019432324,-0.008935236,-0.022071728,-0.028428096,0.02381519,-0.035740945,-0.0048822956,-0.01273695,-0.028331239,-0.012603769,0.038477212,-0.004398001,0.011350656,0.03310154,-0.016429696,-0.008214848,0.0051758992,0.03591045,-0.03750862,-0.00311462,-0.0038077668,0.046758648,0.039009936,-0.006889092,0.017022958,0.040244885,0.028500741,-0.011393032,-0.0109874355,0.011380925,0.017022958,-0.0074641914,0.005584523,-0.037460193,-0.021878012,-0.016683951,-0.006265562,-0.0048278123,0.005660194,0.015896972,-0.047388233,0.050076067,-0.029663049,-0.016574984,0.0043525985,0.035934664,0.010254939,0.0041619074,0.00737944,0.027750084,0.021781152,-0.022495488,-0.0011327955,-0.0047642486,-0.02501382,-0.011169046,-0.011647287,0.011278012,-0.015715363,0.0008149771,0.0056329523,-0.012882238,0.0064471727,-0.018221587,0.038331922,-0.0038440889,-0.00956482,-0.0067135347,-0.0070283264,0.002866419,-0.0012932181,-0.030365275,0.013741861,-0.03903415,0.011350656,-0.03130965,0.0019144773,-0.010442603,0.0019901483,0.00009875071,-0.01245848,-0.0030026268,0.005275785,0.008160365,0.013911365,0.012234494,0.002208081,0.016708165,0.011804682,-0.004410108,-0.0061263274,-0.015267389,0.0060506565,-0.04736402,-0.03654003,0.013172815,-0.0077487146,-0.0007415762,0.01245848,-0.016744489,-0.005239463,0.0066287834,0.00992804,-0.027968017,-0.025594974,-0.005215248,-0.030776925,-0.009970416,0.0025728154,-0.052303825,0.029445115,-0.022241233,0.02100628,0.042448428,-0.005154711,-0.004513021,0.0036533978,0.015255282,-0.037339117,0.013753968,-0.0048217587,-0.016163334,-0.010902683,0.008862592,-0.0045705307,0.011253797,0.0151099935,0.004755168,-0.034845002,-0.045087833,0.026636207,-0.029832551,-0.0038350085,0.0035474584,-0.01944443,-0.009903826,-0.023972586,0.00691936,0.01696242,0.03641896,0.0021339233,-0.013184922,0.01586065,-0.020703597,-0.0018781553,0.0072099366,0.0027741003,-0.015933294,-0.041794628,-0.03825928,-0.008348029,-0.026781496,0.012313192,0.0019190176,0.03503872,-0.048986405,-0.023439862,-0.021345288,0.02639406,0.013039634,-0.033125754,-0.0012432752,-0.013911365,0.057582635,-0.004836893,-0.011447515,0.004164934,0.012355568,0.017131925,-0.0075973724,0.0040438604,0.0020945745,-0.012567447,0.0067559103,-0.021660078,0.034505993,0.004888349,0.023803083,-0.013572358,-0.044143457,-0.018064192,-0.019202283,-0.013705539,-0.012991204,0.01004306,-0.015800113,0.006592461,0.017337749,-0.0058569387,0.00042451455,-0.031527583,-0.042690575,-0.031793945,0.007343118,0.00038743572,0.011671501,-0.031939235,0.0012765705,-0.05690462,0.009770645,0.004888349,0.019989261,-0.021587435,-0.019226499,-0.01475888,0.03586202,0.0038713305,0.020618845,0.0012871644,0.008923129,-0.056614045,-0.020437235,0.013875042,-0.025231753,-0.027798513,-0.014553054,-0.014008223,0.0015512564,0.012155796,-0.028936606,0.031043287,0.0011759279,-0.0059901197,-0.010158081,0.01944443,-0.0028285836,0.0073915473,0.013741861,-0.021914333,0.02143004,0.010127813,-0.00009950742,0.028089091,-0.015642717,-0.012016562,-0.030050484,-0.012724842,0.008898915,0.02248338,0.02174483,-0.017640432,0.025401255,-0.015182638,-0.025909765,0.024105767,-0.0030737577,-0.022725526,0.0062776697,-0.00032784478,-0.03387641,0.03806556,0.009395316,-0.039978523,0.008614391,0.0037563106,0.017349856,-0.0030540833,-0.007022273,0.0016920045,-0.008620445,-0.0022020272,-0.012349514,-0.004927698,-0.0005035908,0.007452084,0.014831524,0.0059961732,0.01843952,-0.027532151,-0.030631637,-0.0061293542,0.007228098,0.014250371,0.02946933,0.04571742,0.0030011134,0.0062050256,-0.0033355795,-0.025812905,-0.045305766,0.02988098,0.023040319,0.018996459,0.016308622,0.060343117,0.032835178,-0.02542547,-0.0025122785,0.01756779,-0.009207652,0.0051849796,0.008220902,-0.013862935,0.011744145,0.0010457737,-0.035159793,-0.031358078,-0.0077245,-0.0069798967,-0.02992941,0.011393032,0.015061564,0.01494049,0.015969617,0.022229126,-0.037000112,0.036176812,0.053030267,0.041915704,-0.03387641,-0.034820788,-0.012664305,0.025812905,-0.011956025,0.063733175,-0.0050396915,-0.0066287834,-0.032157164,-0.004621987,0.0317213,0.0102186175,0.01829423,0.007930325,0.001309109,0.017313534,0.027580582,-0.0030450027,0.002370017,-0.014092974,0.0047158194,0.0036806394,0.028742889,-0.008680982,-0.017749399,-0.010727127,-0.034772355,0.020376697,0.026733065,-0.048017815,0.016817132,0.013354425,0.019165961,-0.010442603,0.0053454023,0.001999229]},{"id":"interface-APIGuildMember","type":"interface","source":"main","text":"Interface: APIGuildMember\nDescription: Guild member from GET /guilds/{guild_id}/members or GET /guilds/{guild_id}/members/{user_id}\nProperties: accent_color: number | null, avatar: string | null, banner: string | null, communication_disabled_until: string | null, deaf: boolean, joined_at: string, mute: boolean, nick: string | null, premium_since: string | null, profile_flags: number | null, roles: string[], user: APIUserPartial","meta":{"url":"/docs/typedefs/APIGuildMember"},"embedding":[-0.012133103,0.004431744,0.0059882733,0.031238977,0.0041095996,-0.02627735,-0.031624347,0.012765349,0.036465544,-0.008496183,0.009146493,-0.04886961,0.031166721,0.0012253531,0.02938439,0.009116386,-0.03094995,0.028613651,-0.044775065,0.026421864,0.034394186,0.0367064,0.011874183,0.040560093,-0.03463504,0.031696603,-0.0011967515,0.006683744,-0.011934398,-0.03215423,0.015342505,-0.02112304,0.037380796,0.020930355,-0.006762022,-0.014788536,0.029697502,0.02354364,-0.005765482,-0.028974934,-0.025723383,-0.0019810377,0.009598098,0.01566766,-0.030179212,0.057323646,0.0015730885,0.0015045952,-0.0004685395,0.02943256,-0.044293355,0.008098771,-0.009549926,0.06830666,-0.006936643,0.0018244815,-0.031190807,-0.004808081,-0.021929907,0.01341566,-0.034418274,-0.009056172,0.016113242,0.0069486853,-0.009905188,-0.005172375,-0.032250572,0.040222894,0.057468157,-0.019364795,0.059057806,-0.0230258,-0.025024902,0.0024476955,-0.006183969,0.009580034,-0.011482793,-0.015330462,-0.002730701,-0.027216688,-0.005617958,0.047279965,-0.0553968,-0.06618713,0.034129247,-0.015222077,0.002778872,-0.009977445,-0.005112161,0.0017040537,-0.028517308,-0.016775595,-0.101737425,-0.039066788,0.012861691,-0.028228281,0.022218933,0.014764451,-0.03463504,0.029023105,0.06979997,-0.002208345,-0.046388797,-0.036200605,0.0347073,-0.014379082,-0.007177498,0.014294783,-0.049110465,0.010796354,-0.05592668,0.050435174,-0.002324257,0.022459788,-0.050965056,0.03726037,-0.0016814735,0.013499959,0.026036495,-0.03745305,-0.060936477,-0.00835167,0.04311316,-0.024880389,0.0100737875,0.004591311,-0.031913374,-0.022447746,-0.076447584,-0.02324257,-0.009272942,-0.019653821,0.038223792,0.020159617,-0.036947258,-0.015920559,-0.0010785817,-0.044341523,-0.06344138,-0.06137002,-0.021086913,-0.013150718,0.02042456,0.0064609526,-0.039355814,0.00040606756,-0.043016817,0.04990529,0.002596725,0.024121692,-0.03241917,0.026470035,-0.019798335,-0.041138146,-0.023507511,-0.0018094281,-0.0036218667,-0.012054825,-0.04169211,-0.006828258,0.029312132,-0.04942358,-0.0183532,-0.01164537,-0.00943552,-0.017943745,0.01631797,0.021833565,-0.04448604,0.02921579,-0.011753756,-0.015559275,-0.046629652,-0.03639329,-0.039837524,-0.025097158,-0.013873286,-0.02883042,-0.036417373,-0.021448195,0.021628838,0.021568622,-0.024735875,-0.066861525,-0.020846056,-0.0021737223,-0.023664067,-0.011892248,0.01064582,-0.018497713,-0.017064624,0.019882634,0.011681499,0.019015552,0.038271964,-0.025723383,0.05120591,-0.017907618,0.0039530434,-0.013006205,0.03658597,-0.010681948,0.061321847,-0.034610957,0.01740182,-0.0018591045,0.03981344,-0.0014428758,-0.023627939,0.023796538,0.023049885,-0.011934398,-0.021833565,-0.020569073,-0.0036519738,0.014619938,-0.04361896,0.013512001,-0.003907883,0.014607895,-0.0550596,0.047930274,0.061659046,0.010742161,0.014957136,0.019641778,0.0068583647,-0.017811276,-0.0010891191,0.021327768,-0.023182357,0.01311459,-0.0390427,-0.017088708,-0.024205992,0.0012200844,0.012801478,0.06430846,0.027481629,-0.012596751,-0.03355119,-0.046894595,0.016775595,0.031046294,0.005560755,-0.026542293,0.030275555,0.008460054,-0.0073220115,0.037164025,0.04942358,0.036176518,-0.019677907,0.027216688,0.00248834,0.04077686,-0.0183532,0.057853527,0.011308173,0.0062321397,0.0053590382,0.0137649,-0.0024597384,-0.0017507195,0.0035435888,0.032780454,-0.007514696,0.035092667,-0.02142411,0.038151536,0.012030739,-0.0092247715,0.057805356,0.007496632,0.00032797764,0.01398167,0.032467343,0.018497713,0.015342505,-0.031311233,-0.01653474,-0.0049315193,0.013343403,0.043691214,-0.011524943,0.0037362732,0.029408475,-0.012596751,0.027433459,0.057275474,-0.002818011,0.026494121,0.074713424,-0.025771555,0.022002164,-0.023146227,0.05380715,-0.013740814,0.06141819,0.029697502,0.007153413,-0.011362365,-0.013644473,-0.041619856,-0.001183956,-0.009887124,0.026349608,0.03779025,-0.02639778,-0.03567072,0.042438764,-0.006617509,-0.027216688,0.034008816,-0.07847077,-0.018834911,0.0037212197,0.035815235,0.007605017,0.05067603,0.010880654,-0.0062321397,-0.0032906902,-0.016582912,-0.0011305162,-0.051061396,-0.005684193,-0.05294007,0.023700196,-0.009303049,0.04376347,-0.04894187,-0.026759062,0.03839239,0.03769391,0.026181009,-0.013319317,0.039307643,0.032611854,0.0027909148,0.02964933,-0.026470035,-0.032973137,0.010097873,0.023880837,-0.01588443,-0.037549395,0.0206052,-0.027553886,0.0033087544,-0.00036956288,0.050435174,-0.03160026,-0.009640248,-0.027505714,-0.06377857,0.03323808,-0.005461402,-0.022929458,0.053469952,-0.04024698,-0.0047207708,-0.023579767,0.024952644,-0.006304397,-0.0069787926,-0.004353466,0.017847404,-0.008779189,-0.09224771,-0.01077829,0.02354364,-0.007677274,-0.028107854,-0.00891768,0.0025154362,-0.042125653,-0.009399392,0.006081605,-0.007653188,0.038223792,0.027120346,0.059395004,-0.058190726,0.0021571633,-0.057949867,-0.04773759,0.008532312,-0.053373612,0.014547681,0.0393799,0.004353466,-0.027842913,-0.061948072,0.018858997,-0.03292497,0.007032985,0.010019595,0.010404964,-0.039139044,0.03340668,-0.0053861346,0.002410062,-0.027409373,-0.023748366,-0.0048261452,0.008231242,0.010868611,0.034201503,-0.030420069,0.0045160432,-0.011765799,0.01848567,0.0019750162,0.043570787,-0.046894595,0.011290109,-0.033189908,0.028541394,0.03605609,-0.020400474,0.017100751,-0.0006977287,-0.026542293,0.024121692,-0.02943256,-0.0032184336,0.021110997,-0.019701991,-0.02839688,-0.06459749,0.01743795,0.027313031,-0.0121933175,0.006370632,-0.020846056,0.042390592,-0.0048050703,-0.012825564,0.036899086,0.011247959,-0.04043966,-0.023483425,-0.030347811,0.011910312,-0.010061745,0.06739141,-0.06252613,0.037404884,-0.026421864,-0.021496367,0.04573849,0.01891921,0.08685254,-0.014993264,-0.00030125774,-0.00471776,0.062381614,-0.021568622,-0.013861243,-0.007894044,0.0023001714,-0.010730119,0.048291557,-0.004211963,-0.008261349,-0.053229097,-0.011518922,0.009206707,0.013367488,-0.015571318,0.014270697,0.027433459,-0.020075317,-0.018690398,0.0348759,0.0028992998,-0.00029937606,-0.0038506796,0.041258574,-0.003630899,0.02644595,-0.04785802,-0.048845526,0.05766084,0.07163047,0.03133532,-0.0030799415,-0.009483691,0.010326686,0.013728772,-0.0011267528,0.034081075,-0.012307724,0.040198807,-0.017088708,-0.0058407495,-0.06898106,0.0068101934,-0.0018470618,-0.0034291823,-0.049712606,0.0014850256,0.014728323,0.022833114,-0.027385287,-0.05033883,-0.034008816,-0.024687704,0.0077495305,-0.014595852,0.008279413,-0.01471628,-0.024519105,-0.013006205,0.027433459,-0.028878592,0.02683132,-0.024470935,0.034370102,0.012765349,0.013343403,0.02427825,-0.02103874,0.0008271886,0.0017296446,0.0014120162,-0.06787312,0.0029760725,0.025891982,0.00010236365,-0.0044076582,0.03969301,0.015053478,-0.017197093,0.00029636535,-0.0044738934,-0.0117838625,0.019063724,-0.057275474,-0.022845158,-0.0038416476,0.005377102,0.022483874,-0.006292354,0.049760778,-0.02644595,-0.003025749,0.019473178,0.0028601608,0.01878674,-0.021171212,0.025482528,-0.024169864,-0.016245713,0.027361201,0.02856548,-0.011880205,0.0035736957,-0.03176886,-0.013126633,-0.0014948103,0.03164843,-0.010597648,-0.028204197,-0.012801478,0.03533352,0.016643126,-0.009850996,-0.019425008,0.0070088995,0.016040986,-0.019834463,0.014848751,0.035453953,-0.00649106,-0.031214891,0.066861525,0.0094415415,0.039885696,-0.022881286,-0.03215423,0.009429499,0.029071277,-0.023471383,-0.027337115,-0.02112304,-0.016679253,0.008706932,0.032081973,0.018618142,0.016197542,0.011494836,-0.017016452,-0.017895574,-0.02410965,0.0056330115,0.0072557763,-0.020436602,0.02367611,0.025048988,0.0017296446,-0.019533394,0.008646717,0.03925947,0.007592974,0.038753673,-0.005813653,-0.035116754,0.007201584,0.0036158455,0.031214891,-0.02834871,-0.020376388,-0.028637737,0.006774065,-0.03285271,-0.007785659,-0.006617509,0.0043895943,0.009471648,-0.013295231,0.027674314,0.025771555,0.0153786335,0.013186847,-0.039933868,-0.024952644,0.0034893963,-0.026783148,-0.026518207,-0.031094464,-0.0049586156,-0.013403617,-0.023435254,-0.010254429,0.013018248,0.0020803907,-0.0037001448,-0.0029113425,0.04007838,0.016462484,0.02055703,-0.04147534,0.03465913,-0.035453953,0.0092307925,-0.045377202,-0.029938357,0.010513349,-0.02025596,-0.03533352,0.0074002896,-0.04116223,0.019978976,-0.012259552,0.002610273,0.04393207,-0.03340668,0.003371979,-0.04410067,0.0048893695,0.029191704,0.024061479,0.0040734713,0.002047273,-0.002008134,0.02839688,-0.049279064,0.014644023,0.035598464,0.04164394,-0.010447114,0.012036761,0.03834422,-0.008983916,-0.012741264,-0.022845158,-0.011272044,-0.0046033533,-0.009893145,0.01107936,-0.025024902,-0.016305927,0.022736773,-0.019834463,0.019834463,0.011410536,0.02349547,-0.0253621,0.010230344,0.021616794,0.0457144,-0.02791517,-0.004431744,0.024639532,0.013813071,-0.026855405,0.0015760992,-0.009140472,0.0039108936,0.02237549,0.0018274923,-0.014704238,-0.007069113,0.023278698,0.022821072,0.029769758,0.0065271882,-0.036104262,-0.036080174,0.032660026,-0.0622371,0.020135531,0.008773167,0.0231101,-0.028059684,-0.0073039476,0.012801478,0.009489712,-0.0042601344,0.011247959,0.00029410733,0.020834014,-0.008478119,0.0092307925,-0.0021692063,0.023001714,0.014306826,-0.030612752,-0.024519105,-0.0017778157,-0.0010612702,-0.0030182223,0.0031070379,0.04267962,0.030347811,0.017678805,-0.019714035,-0.0039741183,-0.004753888,0.003085963,-0.004747867,-0.009158536,-0.029793844,0.014945093,-0.011832033,-0.00913445,-0.027120346,0.0039440114,-0.028709993,0.0074544824,-0.026999919,-0.012181275,0.002181249,-0.04665374,0.012428151,0.013487916,-0.036296945,0.041041803,0.025554784,0.014005756,0.040800948,0.04496775,-0.016089158,0.029119447,0.019220281,-0.024218036,0.01943705,0.00018892114,-0.026036495,-0.017076666,-0.0134758735,-0.0025696286,0.04556989,-0.03942807,-0.021327768,-0.03745305,0.016040986,-0.0043143267,-0.00095589587,-0.008953809,0.008688867,-0.005955156,-0.0033478935,-0.0052175354,0.0126328785,-0.0034291823,-0.005112161,-0.013487916,-0.034008816,0.021652922,-0.026518207,-0.008098771,-0.009513798,-0.01363243,-0.0033478935,-0.07293109,0.014367039,0.045256775,-0.02462749,0.0006457942,0.024928559,0.014860793,0.038416475,-0.05419252,0.0014827676,0.019208238,-0.030853609,0.0021993131,-0.01766676,0.041764367,-0.0025485537,-0.000069387126,0.006436867,0.048990037,0.024928559,0.004744856,0.028324625,-0.005608926,0.024169864,0.01493305,-0.0069547067,0.008195113,-0.021436153,0.06532005,-0.01341566,-0.01147075,-0.00046402347,-0.03302131,0.01073614,-0.0014097582,0.006436867,0.00536807,-0.00580161,0.009357242,-0.040704604,0.020761756,0.0014451339,-0.003561653,0.02137594,-0.004561204,0.0098750815,-0.003402086,0.03458687,-0.029456645,0.01653474,-0.017281393,0.022989672,0.030468239,0.032274656,-0.030227384,-0.00007630232,-0.053855322,0.015306376,-0.047809847,-0.026855405,0.033141736,0.024687704,0.008682846,-0.0075809313,0.013487916,-0.016631082,-0.0092247715,-0.013379531,0.001973511,-0.0014165323,0.0009882608,-0.0050308723,-0.02601241,-0.001869642,0.0025048987,0.04956809,0.0024868345,-0.0061659045,0.0028872571,-0.0057082786,-0.040150635,0.024952644,0.056456562,-0.007839851,0.012102996,0.0030573613,-0.026325522,0.023868795,0.0015640564,-0.0039530434,0.032250572,0.036561888,0.033334423,0.009977445,-0.004224006,-0.016631082,0.03292497,0.005834728,0.0018937276,-0.017799232,0.022315275,-0.013283189,0.011826012,-0.040969547,-0.02017166,-0.06305601,0.017160965,0.02055703,-0.015499061,0.008803274,-0.0066897655,0.032322828,0.0031100486,-0.006557295,-0.02683132,-0.008255327,0.048460156,-0.006358589,0.019714035,0.021062827,-0.017847404,0.009363263,0.0032395085,-0.0038356262,0.03502041,-0.000068728536,0.02073767,0.00008199441,-0.011880205,0.01566766,-0.043185417,-0.017040538,0.022038292,-0.0024823186,-0.007406311,-0.00022824836,-0.0057082786,-0.01800396,-0.051254082,-0.006418803,0.010868611,0.014583809,-0.034683213,0.0026750031,-0.007942215,0.019653821,0.0227729,0.004428733,-0.008508226,0.005244632,0.0075869528,-0.017112793,-0.025506614,0.006683744,-0.012379981,-0.0073220115,-0.027626142,0.024507063,-0.019015552,0.04773759,-0.0019795324,0.023387084,0.018834911,-0.032973137,-0.051398594,-0.007948237,-0.010886676,-0.01064582,-0.02921579,-0.0014436286,-0.007394268,0.005006787,0.022459788,-0.0128496485,-0.0074544824,0.056890104,0.028059684,-0.015920559,0.036248773,0.037549395,0.0046545356,-0.0016573879,-0.028902678,-0.00818307,0.05419252,0.010007552,0.027240774,-0.0694146,0.0030543506,-0.007045028,0.0044227117,0.04410067,0.021773351,0.008779189,-0.0002052918,-0.041379,0.042390592,0.008508226,0.01723322,0.0010642809,0.018810825,0.0043775514,0.0016016901,-0.016956238,-0.037549395,-0.013487916,-0.017389778,0.013307274,0.0013743825,0.01268105,-0.04082503,0.031407576,0.030829523,-0.004440776,0.021821521,-0.00059724675,-0.029143533,-0.022267105,-0.00081589853,-0.007309969,0.00367907,0.005759461,-0.013174804,0.060213912,-0.01748612,0.024266206,-0.048965953,-0.015438847,-0.030058784,0.013138675,0.017016452,0.027891085,-0.021821521,-0.0019403934,0.032130145,0.010766247,0.023013758,0.00022900103,0.026253266,0.033117652,0.023856752,0.01575196,-0.034056988,-0.041306745,-0.0115670925,-0.020099403,0.024242122,0.048315644,-0.009616162,0.01783536,-0.00038104117,0.009321113,0.008273391,-0.009411435,0.009411435,-0.019557478,-0.005377102,0.0160169,-0.003968097,-0.009363263,0.005073022,0.005190439,-0.02025596,-0.035116754,0.012036761,-0.0061147227,-0.010880654,-0.0034111182,0.018076217,0.027192602,0.0039108936,-0.026686806,0.017642677,-0.0035857384,0.0025545752,0.00074853416,-0.052265674,0.016438399,0.0145356385,0.029914271,-0.023700196,-0.03172069,-0.017967831,0.037814338,-0.032057885,0.0064248242,-0.020665415,-0.018666312,0.016992366,-0.021520453,0.015980773,0.017028494,0.0061056907,-0.04947175,0.03160026,-0.023567725,-0.016546782,-0.011362365,0.04345036,0.012072889,-0.048821438,-0.017594505,-0.018979425,0.016522698,0.02397718,-0.001387178,0.03181703,-0.003630899,0.009616162,0.031431664,0.01160322,-0.013825114,-0.0024356528,-0.008863488,0.027409373,-0.0020352302,-0.009555948,-0.040897287,-0.003381011,-0.0077615734,0.007900065,-0.0011523437,0.0075207176,0.012151168,-0.0036399309,-0.013873286,0.050579686,0.0026509175,0.015294334,-0.04475098,0.007900065,-0.036200605,-0.0062261187,0.007478568,-0.009453584,-0.018256858,-0.04523269,0.018895125,0.013439745,-0.0320338,0.011597199,0.007219648,-0.017413864,-0.019075768,-0.0013924467,0.008514247,0.027048089,-0.007936194,-0.0038356262,-0.018365243,0.049616262,0.00036448234,0.021929907,-0.008104793,0.011530964,0.016823767,0.045208603,0.01925641,0.010037659,0.0105013065,-0.007123306,-0.0030438132,-0.00536807,-0.005913006,0.0055667763,-0.016896024,-0.010477221,0.041258574,0.024350505,-0.015210034,-0.013090504,0.033213995,0.026421864,0.036152434,0.0024115671,-0.008953809,0.046027515,0.011067317,0.015739916,0.011524943,-0.015691746,0.0065512736,0.0026464015,0.0012148157,-0.0147524085,-0.0035767064,0.0017100751,-0.015161863,0.024374591,-0.015258205,0.05679376,-0.016089158,-0.027577972,-0.0055216155,-0.022170762,-0.008574461,0.011597199,-0.041788455,0.0021887757,-0.01891921,-0.0579017,0.025338015,0.014523596,0.0061147227,0.0022670538,-0.012994162,0.008255327,0.058576092,0.016679253,-0.009838954,-0.014210483,0.037356712,-0.015438847,-0.0062321397,0.035550293,0.030974036,0.0035315459,0.004428733,-0.009182622,0.05375898,0.007647167,-0.01289782,-0.0052506533,0.026494121,0.005792578,0.012548579,0.015523147,-0.029769758,0.0009017033,0.005220546,0.017726976,-0.03639329,-0.010025617,0.007032985,-0.05457789,0.02432642,-0.00031047798,-0.02622918,0.023098057,-0.00023596326,0.0056239795,-0.01743795,-0.0348759,0.037380796,-0.0012102997,0.009863039,0.006418803,0.026494121,-0.01051937,0.017498164,-0.023254612,0.021267554,0.040054295,-0.016462484,-0.0016829788,0.028228281,0.004383573,0.043209504,0.019629735,0.0044738934,0.019834463,0.019918762,0.01723322,-0.007665231,-0.0064067603,-0.023531597,0.038320135,-0.026855405,-0.004627439,-0.02596424,0.050001632,0.03502041,0.025313929,0.022411618,0.0043233586,0.0060394555,0.00083170464,-0.019858548,0.0059973057,0.012584708,-0.04361896,-0.009814868,0.04306499,-0.03147983,-0.0013931994,0.00033588073,-0.0003396441,-0.010404964,-0.030155128,-0.00086858566,-0.028734079,-0.00086858566,0.013078461,-0.013969627,0.014547681,-0.0050670006,0.0044949683,-0.0047237813,-0.039187215,-0.025940154,-0.034996327,-0.011217852,-0.020641329,-0.04942358,-0.0024010297,-0.0322024,0.011061296,0.029480731,-0.02709626,-0.0014594347,-0.015438847,0.006280311,-0.027553886,-0.0051482893,0.029504817,-0.0041065887,-0.012717178,-0.006972771,-0.0035164924,0.021400025,-0.016053028,0.019364795,-0.013403617,0.009164558,-0.0030919844,-0.04275188,-0.013837157,0.0066114874,-0.011380429,-0.016667211,-0.022881286,-0.028300539,0.016089158,0.015185948,0.0060695624,-0.004853241,0.011314194,-0.007827808,0.0018320082,-0.002644896,-0.008213177,-0.022002164,-0.004519054,-0.024832217,-0.0013661031,-0.021628838,0.03540578,-0.007020942,0.012018696,-0.026253266,-0.015643574,0.025627041,-0.0009144988,-0.022688601,-0.014463382,0.012945991,0.0034050967,0.059154145,0.0057745143,0.0006081605,-0.026566379,0.0054674232,0.057949867,0.026205095,0.013620387,0.0073220115,-0.015739916,-0.009345199,0.001770289,0.03323808,0.048990037,0.029312132,-0.024254164,-0.058527924,-0.006605466,0.0006450415,-0.009766697,-0.011380429,0.007743509,0.00010302224,0.0033900433,-0.006870407,-0.025627041,-0.012169232,-0.01748612,-0.017558377,-0.038681418,-0.030636838,0.0034081074,0.03432193,0.012656964,-0.01645044,-0.035429865,0.012813521,-0.023218485,-0.0040283105,0.016293885,-0.03446644,-0.023218485,0.016161414,0.013668558,0.0033388615,0.012596751,-0.010206258,-0.012560622,-0.021869693,0.006695787,-0.021195296,-0.012644921,-0.0076953378,-0.0147524085,-0.0021993131,0.027337115,-0.019701991,0.03745305,0.010892697,0.010091851,0.013957585,0.000939337,-0.010898718,-0.0049104444,0.017076666,-0.025891982,0.0007078898,-0.016811725,-0.005605915,-0.00856844,-0.015101649,0.019340709,-0.023820624,-0.022652473,0.050387003,0.050242487,0.015462932,0.020003062,0.028758164,-0.031841118,-0.026686806,0.016655168,0.016173456,0.005301835,-0.01865427,-0.0050489367,0.001597174,0.039717097,-0.0005114419,0.005527637,-0.018967383,0.031383492,-0.0051181824,0.0032876795,-0.018292986,0.0047388347,-0.011103446,-0.0139094135,0.025891982,-0.0090260655,0.014656066,-0.028734079,-0.0012584707,0.018329116,0.008724996,-0.020665415,-0.011055274,0.03497224,-0.0023167303,0.017221179,0.047159534,0.033310335,-0.0041095996,0.04643697,-0.005431295,-0.011813969,-0.023941051,0.04544946,0.017726976,0.024350505,0.034610957,0.0074243755,0.030925864,-0.016582912,-0.030660924,-0.007725445,0.016739467,-0.010019595,0.010910761,-0.027048089,-0.006557295,-0.0052837706,-0.0066897655,-0.02687949,0.009303049,-0.008929723,-0.02103874,0.005443338,0.025121244,0.015282291,-0.03446644,0.014294783,-0.03133532,0.047255877,0.050579686,0.015438847,-0.012958034,0.003293701,-0.02579564,0.01987059,-0.034081075,0.031046294,-0.0035315459,-0.03752531,-0.034948155,-0.009959381,0.025193501,-0.012693092,0.055252284,0.011886226,-0.0035255246,0.029167619,0.018774698,-0.01670334,-0.038536903,-0.020207789,-0.017534291,-0.003697134,0.007755552,-0.0062261187,0.004648514,-0.0022730753,-0.020111447,0.018810825,0.0347073,-0.016161414,0.025313929,-0.0013457809,0.0050368938,-0.020653373,-0.0069848136,-0.0049887225]},{"id":"interface-APIGuildPartial","type":"interface","source":"main","text":"Interface: APIGuildPartial\nProperties: banner: string | null, features: string[], icon: string | null, id: string, name: string, splash: string | null","meta":{"url":"/docs/typedefs/APIGuildPartial"},"embedding":[0.011389888,-0.015150643,0.02184706,0.010421298,0.00023766301,-0.037547767,-0.02953598,-0.004941597,0.020746935,0.03463004,0.007085048,-0.03176015,0.013285213,-0.016155105,0.05491062,0.009859278,-0.060315583,0.02178727,-0.007228543,0.0071687535,0.028364109,0.030205624,0.008340626,0.05835449,-0.018367315,0.04613353,0.0011113362,0.023855986,0.023054807,-0.003820545,0.046492267,-0.028914172,0.04613353,-0.016143149,-0.001015673,0.0045380183,0.037571684,0.020280577,-0.027479226,-0.016824748,-0.007963953,-0.0063077854,-0.014385339,-0.009829383,-0.03338642,0.053236514,-0.011736667,0.031090507,0.028938087,0.05735003,-0.059358954,-0.006146354,-0.020125125,0.04907517,0.005904207,-0.014684286,-0.035849746,0.00401785,-0.014409254,0.03592149,-0.005282397,-0.0053511546,0.016179021,0.0039700186,0.016549716,0.019694641,-0.05677605,0.035132274,0.038313072,-0.027335731,0.04642052,-0.011617088,-0.004149387,0.00888471,-0.0004644892,0.009763615,-0.018690178,-0.010630562,0.042928815,-0.04285707,-0.030755686,0.039389282,-0.09174091,-0.075239025,0.029607728,-0.0004196471,-0.044268098,-0.0032854294,-0.013273255,0.0041972185,-0.030468697,-0.008597721,-0.09843733,-0.03010996,-0.010427278,-0.02207426,0.0635203,-0.020232745,-0.017649842,0.06595971,0.089158006,-0.01658559,-0.090066805,-0.027120488,0.019168494,-0.009105931,-0.0017309042,0.030970927,0.0027981456,0.008227026,-0.09317586,0.06906876,0.000063059175,0.03130575,-0.00752749,-0.024190806,0.01681279,0.004224124,0.038910966,-0.04178086,-0.041637365,-0.0037936398,0.005195702,0.025494216,0.0027652613,0.018367315,-0.03573017,-0.031138338,-0.062754996,-0.019718556,-0.011234435,0.007629132,0.0032704822,-0.0137754865,-0.0077008796,-0.020077292,-0.047281485,-0.024633247,-0.087292574,-0.039915428,-0.00008020192,-0.0028863351,0.012238897,0.0004431892,-0.057302196,-0.003357177,-0.01522239,0.020137083,-0.0086634895,0.021954682,-0.01573658,0.0022764828,-0.014158139,-0.04132646,-0.020077292,-0.029009834,-0.013058013,-0.04115905,-0.061941855,-0.01737481,0.033075515,-0.061080888,-0.0038863134,0.0070252586,-0.01046913,-0.03056436,0.022660196,0.027742298,-0.07423457,0.024083186,0.023891859,-0.007551406,-0.038910966,-0.0044005024,0.005533512,-0.0031927559,-0.0043825656,-0.047185823,-0.0150071485,0.0034827348,0.053953987,0.017123695,-0.013679823,-0.08863186,-0.025613794,0.039389282,-0.019909883,-0.0055394913,0.004454313,0.0042928816,-0.0330516,0.025374636,0.011916035,0.013285213,0.0419961,-0.026666088,0.038289156,-0.013787444,-0.0070551536,0.003940124,0.005010355,0.008759152,0.05529327,-0.014971275,-0.0010470625,-0.01472016,-0.0014312096,-0.026259521,-0.00019618409,0.022432996,0.027359646,-0.04376587,-0.016023569,-0.01505498,-0.05156241,0.0061194487,-0.004397513,0.036041074,0.016669296,0.007497595,-0.012448161,0.050988432,0.030755686,-0.045009486,0.06399861,0.031138338,0.006373554,0.009954941,-0.0058533857,0.0388153,-0.02145245,0.043335382,-0.020950219,0.0046336814,-0.023353754,-0.021249166,0.025709458,0.03039695,0.004005892,-0.017590052,-0.0054587754,-0.025972532,-0.036949873,0.0031718295,0.025494216,-0.026618257,0.042187426,0.015605043,0.01573658,-0.0056799967,0.036328062,0.026522594,-0.045918286,0.026881332,0.036997702,0.022050343,-0.033362504,0.012878644,0.030827433,0.0045529655,0.01619098,-0.010612625,-0.027742298,-0.0065170485,0.03570625,-0.0028325245,-0.007611195,0.053332176,-0.009058099,-0.0013654412,0.021954682,-0.018164031,0.030038213,-0.021177419,0.0032585242,0.018116198,0.014744075,0.041517783,-0.008418352,-0.011748624,-0.041350376,-0.02405927,-0.027742298,0.036423724,-0.03752385,0.020101208,0.07012105,-0.015377843,0.038504396,0.044172436,0.025900783,0.012938434,0.038910966,-0.018666262,0.017398726,0.010295741,0.035227936,0.0005388523,0.07275178,0.019503314,0.020878471,-0.05591508,-0.019610936,-0.039771933,0.0035843768,-0.007993848,0.028675014,0.02371249,-0.006804038,-0.015461548,0.047688056,-0.06060257,-0.036638968,-0.019395694,-0.057015207,-0.01472016,0.040991638,0.011300203,-0.02428647,0.05055795,0.027527057,-0.017506346,-0.03819349,-0.023975564,0.0018146094,-0.050079633,0.03293202,-0.010218015,0.017733546,0.025900783,0.04182869,-0.055723757,-0.008059616,0.030253455,0.003656124,0.016800832,-0.019276114,0.048142456,0.017625926,0.012412287,0.025111564,-0.055771586,-0.033242926,-0.0052375547,0.03996326,-0.03192756,-0.024441922,-0.007198648,-0.025542047,0.028459772,-0.010971362,0.025805121,-0.023365712,-0.019013042,-0.057828344,-0.07031238,0.03561059,-0.017960746,-0.05495845,0.056489058,-0.026522594,0.0117187295,0.02932074,-0.00041628396,-0.032955937,-0.005267449,-0.0007212101,-0.0048040813,0.006696417,-0.04668359,0.046277024,0.029846886,-0.03130575,-0.03453438,0.019216325,-0.0047054286,-0.029009834,0.013058013,-0.017446557,-0.054145314,0.02953598,-0.02659434,0.00007347561,-0.025948616,0.017362852,-0.045176897,0.0002602709,0.024095142,-0.028364109,0.033577748,0.033984315,-0.00077576796,-0.03147316,-0.030038213,0.014122264,-0.010140289,0.005904207,0.0016860621,0.0044453447,0.00679208,0.018355357,0.021380702,-0.01505498,-0.008460205,-0.03879139,0.021930765,0.029512066,0.0098951515,0.04249833,-0.023509206,-0.00786829,-0.019945756,0.045583468,0.031497076,0.015939863,-0.040393744,0.004149387,-0.097385034,0.0017847146,0.09441948,0.0042151553,0.009787531,-0.041135132,-0.039532777,0.019276114,-0.01578441,0.024142975,0.0044722497,-0.056728218,-0.039030544,-0.049553484,0.0043586497,0.04080031,0.0106604565,-0.007999826,-0.04137429,0.014014644,0.00030941033,-0.016095316,0.032740697,-0.0035574716,-0.018738009,0.0015664833,0.023186343,-0.013942896,-0.013727655,0.06356813,-0.04754456,0.003763745,-0.044794247,-0.039604522,0.021021966,-0.026833499,0.061080888,-0.00039946818,-0.0027921668,0.042259175,-0.0033183137,-0.028459772,-0.020507777,0.021906849,0.019921841,-0.038910966,0.03276461,0.021332871,-0.013859191,-0.04041766,0.03922187,0.023114596,0.01381136,-0.025542047,0.021237208,0.03726078,-0.03202322,-0.042737488,0.0004984944,-0.00067487324,0.019551145,0.010391404,0.024752827,0.0042211344,0.018761925,-0.0429049,-0.060937393,0.053666998,0.07691313,0.016250769,-0.01256774,-0.059024133,-0.011270309,0.011706771,0.00086171523,0.02898592,-0.012149214,-0.0082629,-0.05586725,-0.019766388,-0.044794247,-0.009703825,-0.0036860188,0.026426932,-0.046564013,-0.0050462284,-0.028101034,0.06237234,-0.029727308,-0.024489753,-0.03482137,-0.021177419,-0.021703565,-0.008221048,-0.052662537,0.0034079978,-0.0058623543,-0.010774056,0.023557037,-0.07241697,0.012687318,-0.01619098,-0.0066127116,-0.00611347,0.024991984,0.022648238,-0.030014297,0.025996447,-0.020280577,-0.027287899,-0.08705342,-0.0037159135,0.00005899536,-0.005647112,-0.05347567,0.015389801,0.011204541,-0.009082016,0.016717127,-0.011581214,-0.028340193,0.022325376,-0.04240267,-0.007928079,0.009416836,0.02348529,0.027311815,-0.030683938,0.03553884,-0.023102637,-0.0001344328,0.010612625,0.014301633,0.019551145,-0.011078983,0.019694641,-0.04347888,0.0024498722,-0.014983233,0.014457086,-0.021595944,0.021045882,-0.0024139986,-0.017028032,-0.004896755,0.018068368,-0.020459944,0.012161171,-0.0049954075,0.010062562,0.029153328,-0.01482778,-0.020615397,-0.009799489,0.034558292,-0.0009611152,0.043502793,0.026474763,0.003333261,-0.018104242,0.024382133,0.00033893136,-0.014552749,-0.010038646,-0.04512907,-0.0007623153,0.051945064,-0.013739613,-0.007856332,-0.0009984836,0.006367575,0.021045882,0.035227936,0.01805641,0.011927993,-0.009518478,-0.0016113253,-0.0026411985,-0.025661627,0.036543302,0.0039251763,-0.020005545,0.0055215545,0.0015074412,-0.010122351,-0.06710766,-0.015186517,0.024298428,-0.004239071,0.028053204,0.00515086,-0.046444435,-0.005880291,-0.026857415,0.028172782,-0.015760496,-0.024657164,-0.05581942,-0.022660196,-0.03293202,0.012830813,-0.0013773992,-0.01918045,0.0012563255,-0.0059729647,-0.0036351976,0.03879139,0.020292535,-0.014289675,-0.025709458,-0.013763528,-0.0015560201,-0.034056064,-0.006349638,-0.006684459,-0.012017677,-0.017398726,-0.023987522,-0.020149041,0.026833499,0.009416836,-0.005751744,0.0017129674,0.028053204,-0.020842597,0.01046913,-0.05620207,0.018558642,-0.014217928,0.0022226723,0.016657338,-0.0042360816,0.0049774707,-0.0020986092,0.013823317,0.035514925,-0.01335696,0.02151224,-0.0055215545,0.0027607772,0.032334127,-0.04357454,0.004035787,-0.03221455,0.025231142,0.021667691,0.019347861,0.014959317,-0.0013968307,-0.019575061,0.010654477,-0.03589758,-0.008992331,0.026905246,0.03407998,-0.033242926,0.011527403,0.008944499,-0.0081373425,-0.016705168,-0.055101946,-0.0070491745,0.029296825,-0.023114596,0.022887396,-0.014062475,-0.016059443,-0.013285213,-0.0072763744,0.035132274,0.01472016,0.029512066,-0.025302889,-0.01828361,0.018773884,0.029918633,-0.012214982,-0.0016666305,0.050127465,0.0061822277,0.006696417,0.010176162,-0.035777997,0.009925046,0.03683029,-0.008866773,-0.005138902,0.009494563,0.022947187,0.0111327935,0.024657164,-0.0023676618,-0.01863039,-0.068829596,0.025422469,-0.031210085,0.007521511,0.0070312377,0.045272563,-0.020866513,-0.0060357437,-0.0000122731835,-0.030349119,0.0025873878,-0.00008225719,-0.042426582,0.010218015,-0.014098349,0.019443525,0.009297257,0.014289675,-0.0015605043,-0.017398726,-0.0059580174,0.016477969,-0.00554846,0.02093826,-0.0003742445,0.025207227,0.026259521,-0.006236038,-0.011635024,-0.0047472813,-0.0017802304,0.015138686,0.0077606686,0.0079221,-0.021189377,0.0065230276,-0.02416689,0.014863654,-0.016561674,0.0075573847,-0.008711321,0.007874269,-0.012890602,0.0055544386,0.004056713,-0.011748624,0.028196698,-0.012209003,-0.02944032,0.01482778,0.030970927,0.007814479,0.018140115,0.06567272,-0.014504917,0.0032914085,0.017111737,-0.0054767122,0.017924873,0.017063905,-0.0012383887,-0.030205624,0.004561934,-0.013333044,0.03202322,-0.040226333,-0.003928166,-0.032525454,-0.0027039773,0.009859278,0.016167063,-0.0020134093,-0.000040708197,0.025900783,0.021069797,-0.025302889,-0.009996794,-0.008860795,0.0010291256,-0.02099805,-0.029368572,0.0392697,-0.019718556,-0.026953079,-0.009805468,0.017159568,0.0010814414,-0.06634236,-0.032501537,0.04890776,-0.00068458903,-0.009590225,0.023401586,0.012531866,0.02671392,-0.020579524,-0.002626251,0.040274166,-0.00021748408,-0.01375157,0.014170096,0.05299736,-0.015856158,0.01482778,-0.005082102,0.03592149,0.0016053463,-0.019335903,0.030277371,-0.003644166,0.03424739,-0.0033661453,-0.030516528,-0.0005343681,-0.030827433,0.05027096,0.005162818,-0.00549166,0.0039490922,-0.023760322,-0.01352437,0.027718382,0.026666088,-0.0073062694,-0.0004499155,0.019850092,-0.01171275,0.0009872731,0.0030462719,-0.031999305,0.01578441,0.00045589445,0.009070057,0.008496079,0.034677874,-0.019192409,0.022552576,-0.016860621,-0.0044154497,0.024418006,0.009285299,-0.0012069993,0.009476625,-0.04845336,-0.0061284173,-0.044124603,-0.026355183,0.007342143,0.040991638,-0.025829036,-0.030181708,0.031520993,-0.025039816,-0.019826178,-0.026929162,-0.014971275,0.0016457043,0.0042689657,0.020364283,0.012119318,0.0012383887,-0.0029909667,0.03333859,-0.027861878,0.019288072,0.010768077,-0.006971448,-0.01840319,0.0051807547,0.054814957,0.014672328,0.002892314,-0.003769724,-0.03384082,0.008519995,0.020687144,0.014277717,0.01867822,0.001273515,0.03044478,0.0067442483,0.015341969,0.003662103,0.02563771,0.006487154,-0.008113426,-0.024704995,0.012268793,-0.009070057,-0.024537586,-0.03967627,-0.029464234,-0.019108703,0.0053900178,0.018606473,-0.0076709846,0.0070252586,0.018355357,-0.0015201464,-0.014588622,0.0015814306,-0.03508444,-0.012639487,0.056967374,-0.012143235,0.028698929,-0.00040544712,-0.0005717365,-0.009632078,0.020746935,0.010146268,0.018068368,0.015150643,0.035562757,0.015951822,0.0054079546,-0.022157965,-0.0120116975,-0.019431567,-0.023975564,0.015341969,0.002370651,-0.008830899,-0.007198648,-0.013787444,-0.058019668,-0.009392921,0.0018639357,-0.00026064456,-0.051753737,0.00031165243,0.039987177,0.008597721,-0.003934145,0.0040955762,-0.014504917,-0.014600581,-0.002303388,0.010989298,-0.009859278,0.011043109,-0.009996794,0.008836878,-0.04936216,0.015090854,-0.009374984,0.049314328,0.005171786,0.004421429,0.017924873,-0.044555087,-0.016764957,-0.026666088,0.0020806724,0.004807071,-0.017853126,0.0020358304,-0.016944326,0.0039072395,0.0077845845,-0.0037786923,-0.009650015,0.049314328,0.005880291,-0.008203111,0.011820371,0.034343053,0.0020612408,-0.00065693643,-0.018558642,-0.02649868,0.027837962,-0.0045439973,0.017183485,-0.015318054,0.011168667,-0.010505004,-0.012376414,0.010702309,-0.0021150513,0.00679208,0.00083555735,-0.01772159,0.05591508,-0.0054647545,0.0066426066,-0.006923617,-0.0068159956,0.00060723646,-0.0062181014,-0.007085048,-0.051514577,-0.004271955,-0.063328974,0.022146007,0.003706945,-0.001403557,0.0019192409,-0.0025993458,0.04584654,0.033888653,0.031712316,0.03781084,-0.053332176,-0.004014861,-0.034964863,-0.027120488,0.005201681,-0.0005896733,0.0136559075,0.0030642087,-0.0020388197,0.0010186625,-0.040154584,-0.01641818,-0.017458515,0.026905246,0.0063077854,0.019252198,0.0031150295,-0.0053302282,0.04340713,-0.010965383,0.030038213,0.043096226,0.036423724,0.018833673,0.009548373,-0.012424245,-0.032286298,-0.0059520383,0.0053182705,-0.011862224,0.008627616,0.04120688,-0.027837962,0.00097382045,0.01817599,0.004833976,-0.016489927,-0.0062240805,-0.010851783,-0.0065290066,0.0073062694,0.0013684307,-0.01913262,0.016023569,0.004062692,-0.006271912,-0.0036202504,-0.052519042,0.03814566,0.026307352,-0.0068458905,-0.012214982,-0.0018250726,0.008980373,0.027287899,-0.012101382,0.02189489,0.015102812,-0.03515619,-0.0071926694,-0.029679477,0.013500455,-0.013572202,0.003162861,-0.041852605,0.0032645033,-0.018738009,0.026737835,-0.01737481,-0.0020911356,-0.027383562,-0.013907023,0.006361596,0.027192235,0.0032914085,0.023473334,-0.0031389454,-0.040537238,0.031449243,-0.00044431025,-0.009171699,-0.0056351544,0.023568995,0.04398111,-0.028364109,0.015186517,-0.031377498,0.016286643,-0.0104870675,0.012687318,0.043502793,0.007114943,0.025326805,0.0007174732,0.0047682077,-0.031497076,-0.01234054,-0.009237468,0.03864789,0.022480829,0.0022570512,-0.021548113,-0.013416749,-0.020149041,0.009195616,-0.011688835,0.0043347343,-0.005443828,-0.008256922,-0.012238897,0.0259247,-0.012029635,0.01958702,-0.018893462,0.04142212,-0.039389282,0.0011419782,0.002297409,-0.030707855,-0.0023527143,-0.05581942,0.02700091,0.0034498505,-0.002666609,0.01578441,0.012854729,0.004113513,-0.0050671548,0.01635839,0.0051418915,0.00020664724,-0.016884537,-0.0010022204,-0.012914518,0.053906158,-0.0003600445,0.0044064815,-0.011001256,0.004167324,0.022719987,-0.0014782938,0.0057427753,-0.0028698929,0.009279321,-0.0032854294,-0.012035614,0.010277804,-0.015306096,0.012238897,-0.00003244044,0.0015410727,0.0069295955,0.015150643,-0.03247762,0.014612539,0.015617001,0.036184568,0.015401759,-0.010445215,-0.018797798,0.02886634,-0.007838395,0.019909883,0.016681252,0.0022779775,0.006083575,0.0056530912,0.040537238,-0.024944153,0.009554352,0.0013983254,-0.017171526,0.024704995,-0.021261124,0.035873663,-0.030683938,-0.013153676,0.006989385,-0.038934883,-0.024095142,0.004062692,-0.036423724,0.02704874,-0.03283636,-0.035801914,0.01754222,-0.024441922,-0.00048093128,-0.0021524196,-0.0243343,0.028364109,0.0433593,0.0032166718,-0.022719987,-0.029679477,0.029296825,-0.025398552,0.018415146,0.042474415,0.046181362,0.009195616,-0.012155193,0.0057009226,0.047688056,0.006265933,-0.019335903,-0.0036740608,0.020591483,0.0033990294,0.0051478706,0.006768164,-0.016597548,-0.02484849,0.006666522,0.022600407,-0.019120662,-0.025948616,0.044961657,-0.053619165,0.048859928,0.019802261,-0.004209176,0.00084527314,0.012125297,0.014194013,-0.016992157,0.004669555,0.028914172,0.012866687,0.007653048,-0.0079221,0.0013564728,-0.01052892,-0.01222694,-0.018606473,0.013631991,-0.014744075,-0.013464581,-0.008238984,0.02953598,-0.002100104,0.02716832,0.014397296,-0.02234929,0.008089511,0.01895325,0.011916035,-0.017697673,-0.0048190285,-0.019850092,0.03606499,-0.028555434,0.0032525454,-0.016406221,0.02451367,0.029822972,0.018068368,-0.00028287878,0.015019107,0.020782808,-0.010893635,-0.0029730296,0.011790477,0.00798189,0.0037338503,0.013416749,0.026139941,-0.018427104,-0.015856158,-0.009093973,0.012603614,0.018594515,-0.030827433,-0.018427104,0.005428881,-0.020818682,-0.0051837442,0.0004738313,0.037332524,0.005258481,0.0012600623,-0.027120488,-0.022552576,-0.021607902,-0.0383609,-0.01913262,-0.0074198693,-0.041637365,0.020077292,-0.033816904,0.00026942615,0.017350895,0.01188614,-0.0026172826,-0.02853152,0.0032674926,-0.03147316,-0.03661505,0.007772627,0.000080996004,0.004295871,0.011186603,0.009829383,-0.000042997013,-0.000057360492,0.0027712404,-0.03606499,-0.0080177635,0.011371951,-0.030731771,-0.017590052,0.00854989,-0.034056064,-0.030349119,-0.022564534,-0.02054365,0.005452797,0.01064252,0.011324119,-0.004594818,0.0041643344,-0.0068638274,0.003865387,-0.020352324,-0.010325636,-0.03164057,0.0018295568,-0.032166716,-0.0019775357,-0.030133877,0.014791907,0.0135961175,0.010786015,-0.009357047,-0.025876869,0.002230146,0.029057667,-0.033242926,-0.022540618,0.006762185,-0.024968069,0.04749673,0.005025302,-0.009512499,-0.029703392,0.0054737227,0.017219357,-0.026020363,0.019288072,0.0061822277,-0.011862224,0.0040686713,-0.0043676184,0.02750314,0.033027686,0.021835102,-0.010212036,-0.032405876,-0.034438714,-0.010325636,0.02468108,-0.0024244618,-0.0047682077,-0.011652961,0.020842597,0.002189788,-0.036399808,0.021536155,0.0052704387,-0.0072703953,-0.03266895,-0.00333924,-0.015437633,0.017793337,-0.017924873,-0.024142975,-0.0316884,0.013823317,-0.015617001,0.008848837,-0.011055067,-0.035634503,-0.015174559,0.018522767,0.028053204,0.0084303105,0.013954855,-0.003180798,-0.025350722,-0.018821714,0.011067024,-0.0071926694,-0.029057667,-0.0234255,-0.03379299,-0.019216325,0.038313072,-0.008143322,0.019718556,0.009123868,0.013153676,-0.0044005024,0.012214982,0.017745504,0.006804038,0.010576751,-0.021906849,0.0006688943,-0.044865992,-0.030133877,0.018259695,-0.0041852607,0.015999652,-0.013787444,0.002666609,0.044052858,0.054145314,0.018104242,0.007449764,0.009931025,-0.03264503,-0.0022107144,0.021643776,-0.015234348,0.006576838,-0.033506,0.002835514,-0.02405927,0.029703392,0.02230146,0.022971101,-0.02280369,0.030062128,0.00786829,0.0124840345,-0.006361596,0.020184914,-0.009022226,-0.0040208395,-0.0027488193,0.0111327935,-0.004337724,-0.015102812,0.020651272,0.012125297,0.0069834064,-0.030277371,0.018008579,0.014600581,0.0041165026,-0.008340626,0.031281833,0.0048698494,-0.014851696,0.019957714,-0.003384082,-0.0068578483,-0.00181162,0.02841194,-0.0052704387,0.007826437,0.0064991117,0.017231315,0.028196698,-0.017888999,0.0044154497,0.009978857,0.013141718,-0.001080694,0.0028250508,-0.0011599151,0.011324119,0.019455483,-0.027120488,0.015987696,0.011844288,-0.013165634,-0.0388153,0.017458515,0.03769126,0.017877042,-0.025039816,0.030516528,-0.03752385,0.045272563,0.035132274,0.033888653,-0.023054807,-0.02178727,-0.021930765,-0.0017084832,-0.015258264,0.012543824,-0.01794879,0.0015022096,-0.025876869,-0.030229539,0.049266495,-0.0026695984,0.03606499,0.01578441,0.005156839,0.015365886,0.017984662,-0.028388025,-0.025207227,-0.008651531,-0.010122351,0.008454226,0.0017862094,-0.022038387,-0.0038833239,-0.027144404,-0.00043534185,0.0144212125,0.051801566,-0.038217407,0.027096573,0.013835276,0.020364283,-0.0014693254,0.014672328,-0.0039759977]},{"id":"interface-APIInstance","type":"interface","source":"main","text":"Interface: APIInstance\nDescription: Response from GET /instance (unauthenticated).\nInstance info and API/gateway endpoints.\nProperties: api_code_version: string, captcha: Record, endpoints: { api: string; gateway: string; }, features: { voice_enabled?: boolean; }, push: Record","meta":{"url":"/docs/typedefs/APIInstance"},"embedding":[-0.04166125,0.002673996,0.023661736,-0.030702904,0.019781163,0.0067116837,-0.010671577,0.023405472,0.03555972,-0.03084934,-0.0054364637,-0.036243092,0.007840467,-0.025894897,0.024943057,-0.011684432,-0.0067726993,0.07590304,-0.025260337,0.026993172,0.016010417,-0.028628383,-0.030361217,0.050715923,-0.023722751,-0.01542467,-0.021318749,-0.0014620794,0.00689473,-0.020122848,0.05798895,-0.018109344,0.057403203,0.056866266,0.0510088,-0.012764403,0.00426497,-0.010439719,-0.0039965026,0.013020666,-0.019537102,-0.012544747,-0.021477388,-0.0034016033,-0.08122358,0.012282382,-0.0034626187,-0.01642532,-0.014301988,0.017743252,-0.037634242,-0.0133379465,-0.016217869,0.054035157,-0.0110681765,-0.011946797,-0.004838514,0.040050447,0.030361217,0.010171252,0.0066689732,-0.0073828525,-0.007895381,0.029873095,-0.0077062333,0.023539705,0.004094127,0.07717216,-0.026016928,-0.018768309,0.034607884,-0.0030263592,-0.055109028,-0.0016931748,0.029360566,0.016083635,-0.041319568,0.055694774,-0.014460628,-0.03236252,-0.014851126,-0.014741299,-0.043808993,-0.095086254,0.040001635,-0.013972506,-0.03292386,-0.011458674,-0.017084286,0.023759361,-0.041441597,-0.0032551666,-0.025260337,0.007944193,0.015522295,-0.030946964,0.010512938,0.019024573,-0.008822814,0.04249106,0.07331599,-0.045224547,-0.018316796,0.014082333,0.02977547,-0.008066224,-0.016193463,0.00058650965,-0.018951355,-0.026724705,-0.067068025,-0.0058818758,0.005225961,0.014448425,-0.0362675,0.022856334,0.031581525,-0.053107724,0.0021141805,-0.0081211375,-0.036975276,0.017865282,0.025650835,-0.013728444,0.00185334,0.002463493,-0.0023734954,0.026553862,-0.06682397,-0.020342505,-0.0040270104,-0.015595512,0.016132448,0.00093963573,-0.00029192012,-0.0053113825,-0.0037890507,-0.017633423,-0.038366426,0.00021488829,-0.024906449,-0.029970719,0.04356493,-0.0048720725,-0.008414011,0.01586398,-0.042588685,-0.016705992,0.024821028,0.03128865,-0.0033832989,0.03948911,-0.030678498,-0.039928418,-0.010549547,-0.014350801,0.000099149875,0.02638302,-0.023698345,-0.0033985528,0.0013705563,-0.02662708,-0.005945942,0.012081031,-0.02618777,0.05344941,0.015717544,-0.015412467,-0.037658647,-0.0004366408,0.00049880013,-0.032386925,-0.06833714,0.014570456,-0.03431501,-0.015766356,-0.0056134085,-0.029751064,-0.03739018,-0.0051679965,0.011208512,-0.0069252374,0.011495284,-0.020391315,-0.0016336848,-0.013032869,-0.018109344,0.040929068,0.024955261,-0.025968116,-0.002646539,0.010445821,0.010622765,0.04080704,-0.027261639,-0.049056306,0.03726815,-0.043076806,-0.0017953755,0.0326798,-0.00032757592,-0.032020833,0.033265546,0.0037097307,0.004240564,-0.03475432,0.0179385,0.01151969,-0.018621871,-0.010445821,0.022465836,-0.010744796,-0.03690206,-0.033216733,-0.026016928,0.030190375,0.012459326,0.0024131555,0.00083819777,0.037878305,0.01582737,0.04746991,0.033826888,-0.027945012,0.01690124,0.056719832,-0.005268672,-0.035291255,0.009799059,-0.021038078,-0.044541176,0.054864965,-0.05081355,-0.014350801,-0.0038927766,0.031752367,0.012349498,0.013874881,0.013618616,-0.040148072,0.0052229105,-0.042100564,-0.046542477,0.026065739,0.04559064,-0.00052091817,0.044736423,-0.0227221,0.008389605,0.028506352,0.0050368137,-0.0019723198,0.025284743,-0.021367561,0.022807522,-0.043662556,0.023137005,0.0051954533,0.009683129,-0.0061564445,0.015998214,-0.03809796,-0.030946964,0.02184348,-0.025260337,-0.021135703,0.012801012,-0.0035449895,-0.048421748,0.002730435,-0.032777425,0.006119835,0.06833714,-0.0006612534,-0.015522295,-0.02279532,0.017609019,-0.03656037,-0.017438175,-0.011354948,-0.037365776,-0.011696635,-0.0050947783,0.052521978,-0.017840875,0.0124532245,0.020977063,-0.017767658,0.017328348,0.026846735,0.04041654,0.054035157,0.031752367,-0.04439474,0.021318749,0.017511394,0.075463735,-0.008182153,0.092840895,-0.028408727,0.053644657,-0.017877486,-0.04061179,-0.023149207,-0.032386925,0.037170526,0.048739027,0.0013858102,0.037121713,-0.03236252,0.02857957,-0.0047530923,-0.022941755,0.016754804,-0.032582175,-0.043735772,0.022148557,-0.011330543,-0.04815328,-0.013240322,-0.015766356,-0.01347218,-0.00036323175,0.013264728,-0.0043351375,-0.023759361,-0.03260658,-0.013203713,0.027041985,0.0017496139,-0.01259356,-0.049910523,-0.0021355357,-0.0024878993,0.024772216,0.0096953325,-0.04029451,0.021697044,-0.003822609,0.048690215,-0.0030889,0.01008583,-0.018926948,-0.006308983,0.029897502,0.014802313,-0.014436222,0.0071570957,-0.027286045,0.022868538,-0.0013934372,-0.02228279,-0.018780513,0.0048171584,0.020159457,-0.03177677,-0.013606413,-0.018951355,-0.05823301,0.06550603,-0.058769945,-0.0056408653,0.015449076,0.04029451,-0.028042635,0.012178656,-0.023625128,-0.005491378,0.024662387,-0.036413934,0.07092419,0.0121542495,-0.0050642705,-0.03770746,0.002710605,0.01957371,-0.038537268,0.009591606,0.013935897,0.004030061,0.045224547,0.029458191,-0.0026831483,-0.015351452,0.040270105,-0.018658482,-0.03475432,0.011531893,-0.048202094,0.024052234,0.031361867,0.003471771,0.0033039788,-0.07775791,0.039196234,-0.01479011,0.010311587,-0.023405472,0.03211846,-0.014460628,0.0041398886,-0.00080006325,0.009439068,0.021147905,-0.02235601,-0.029799877,0.04017248,0.029555814,0.05320535,-0.026968766,0.0054029054,-0.02128214,0.044126272,-0.02838432,0.05608527,-0.048250906,0.015778558,-0.06301661,0.023612924,0.044736423,-0.0075109843,0.017450377,-0.086055994,0.01466808,0.0035877002,-0.0007489629,-0.00081379164,0.0034809234,-0.04439474,-0.015497888,0.012465428,0.02882363,0.0064554196,-0.019976411,0.008816712,-0.009402459,0.016132448,-0.0131426975,-0.01419216,0.004631062,0.011971204,-0.014594861,-0.03638953,0.02052555,-0.030068344,-0.020891642,0.00243146,-0.069655076,0.0028783972,-0.021660434,-0.06931339,0.0036304109,-0.036243092,0.05169217,-0.032338113,-0.040758226,-0.010110237,0.014619268,-0.001761817,0.019463884,-0.023295645,-0.03714612,0.0069252374,0.032142863,0.020159457,-0.013752851,-0.01466808,-0.023759361,-0.027920606,-0.005073423,-0.002654166,-0.01191629,0.021587215,-0.008401808,-0.01466808,0.00038363374,0.023124801,0.029043287,0.017731048,0.012617966,0.0072242124,0.0042039547,-0.07277906,-0.0034961773,0.010262775,0.10582495,0.007785553,0.0059611956,-0.042930372,-0.001905203,0.021184515,-0.0067116837,0.035779376,-0.01191629,0.033924513,-0.029995125,-0.069459826,-0.04849497,-0.03231371,-0.0017160556,-0.006644567,-0.015497888,0.007889279,0.015485685,0.0374634,-0.006553044,-0.013484383,-0.021709247,-0.036853246,-0.060771246,-0.007529289,0.033826888,-0.025919303,0.00801131,-0.053986344,0.03192321,-0.0066018566,0.009268225,0.0057659466,0.0108790295,0.03536447,0.014655877,0.008517737,0.012148147,-0.005866622,-0.0040483656,-0.002925684,-0.02383258,-0.012367803,-0.00044121695,0.012739996,0.020366909,0.014741299,0.033021484,0.001257678,0.04834853,0.018145952,-0.014143349,0.0031941514,-0.012465428,-0.026016928,0.019659132,-0.00936585,0.020452332,-0.0036578677,0.019524898,-0.018438825,-0.015131797,-0.004353442,0.041441597,0.029873095,-0.020903844,0.017889688,-0.005073423,0.02650505,0.070436075,0.04866581,-0.030800527,0.020037428,0.04576148,-0.014009114,-0.030483248,0.03145949,0.0003418764,-0.011483081,0.031703554,-0.0007222687,-0.015485685,-0.007108283,-0.039830793,-0.011910188,0.024125453,0.0003432111,0.017560206,-0.005305281,-0.030068344,0.014424019,0.002706029,0.023734955,0.033338763,0.00769403,-0.03411976,-0.02064758,0.07092419,0.027505701,-0.0115685025,0.014924345,-0.01677921,0.022770913,-0.00039278605,0.019024573,-0.00080769014,0.009707536,-0.04078263,-0.015363654,0.0075231874,0.010061424,0.020318098,-0.051399294,0.06462742,0.008932641,0.003993452,-0.013374556,-0.019085588,-0.0013278456,0.027310451,0.017584613,0.018072734,0.003862269,-0.0054578194,-0.012959652,0.03328995,0.010116338,-0.032826237,-0.025479993,0.0025641683,-0.003590751,0.007944193,-0.0039354875,-0.031068996,-0.0072120093,0.0067177853,-0.0122518735,0.0029653439,-0.016693788,-0.0211235,-0.029238535,-0.027164016,-0.006388303,-0.0028646686,0.004084975,0.029043287,0.0035053294,-0.011025466,-0.010030917,0.012367803,-0.023222426,0.015046375,-0.021953307,-0.010659374,0.0013186934,0.013032869,0.009616013,0.008414011,0.060429562,-0.02694436,0.018194765,0.0024040032,-0.023930203,0.00816995,-0.029726658,-0.03922064,0.007126588,-0.016730398,0.031435087,-0.04117313,-0.005799505,0.027066391,-0.027847387,0.019061182,-0.005747642,0.03399773,0.03248455,-0.0064554196,-0.02474781,0.01630329,0.0070411665,0.0010952248,-0.023771564,0.03199643,-0.0004267258,0.020415721,0.037414588,0.018670684,0.045737077,0.037341367,0.018487638,0.003990401,-0.016632773,0.0068886285,-0.010573952,-0.0007848094,-0.048250906,-0.014753502,0.01765783,-0.014179958,0.011226817,0.018597465,0.0025443383,0.016169056,0.008285879,0.04620079,0.0070167603,0.018609669,-0.025602024,0.009853972,0.0069130342,-0.014631471,-0.013106088,-0.0005716372,-0.020659784,0.008883829,0.0044693714,-0.02984869,0.0067726993,0.002658742,0.01889034,0.0075353906,0.024027828,-0.039562326,-0.06238205,0.0058879773,-0.03328995,0.0030705954,-0.00928653,0.019512696,-0.00673609,0.008548245,0.014314191,-0.0061076325,0.0066506686,0.026871141,-0.027188422,-0.022978365,0.016132448,0.018670684,0.013935897,0.016254477,-0.001841137,-0.017108692,-0.014497237,0.017084286,0.002112655,-0.013996911,-0.0072608218,0.02933616,0.0067299884,-0.0011364102,-0.0033466897,-0.026090145,0.0011013263,-0.0018762207,-0.0004850717,0.0148145165,-0.04878784,-0.031703554,-0.007291329,-0.01347218,-0.007724538,-0.038439643,-0.022905147,0.007816061,-0.03726815,0.054230407,0.037048496,-0.010274977,0.021343155,-0.01630329,-0.037975926,0.017450377,-0.031532712,-0.007993005,0.0059398403,0.019524898,-0.0060283123,-0.008627565,-0.011891884,-0.02275871,0.03209405,-0.0024146808,-0.0045730975,-0.018194765,-0.011123091,0.0127522,0.038122363,-0.037536617,-0.041246347,-0.036926463,-0.011910188,-0.018109344,0.019378461,-0.01331354,-0.017877486,-0.013813865,0.033582825,0.026724705,0.04097788,0.019634726,-0.008505534,-0.010250572,-0.018865934,0.016376508,-0.014533847,-0.05667102,-0.007645218,0.007608609,0.0006997693,-0.07975921,0.009573302,0.011910188,-0.020696392,0.038708113,-0.013093885,0.032630987,0.014289785,-0.022368211,-0.006540841,0.026919954,-0.0006421861,0.0041307365,-0.017999517,-0.005799505,-0.014045724,-0.016291087,-0.027115203,0.019036775,0.042417843,0.014118942,0.008426214,0.02080622,0.07370649,0.0014323343,-0.016108042,-0.013484383,0.016291087,0.059599753,-0.04766516,-0.024576966,0.014960954,-0.0326798,0.0057964544,0.038537268,-0.006553044,-0.00892654,-0.008237067,-0.012215265,-0.008047919,0.0041917516,-0.009750246,-0.018646277,0.04934918,-0.00041757352,0.015156203,-0.0016870733,0.031142212,0.0022529901,0.01614465,-0.015961604,-0.012691184,0.008774001,-0.0147168925,-0.018475436,0.05515784,-0.021160109,0.0322893,-0.046518072,-0.044223893,0.030800527,0.009530591,-0.010494633,0.00009690947,0.050130177,-0.020037428,0.01526603,0.008352996,-0.0008442993,0.0051405397,0.020745205,0.02467459,0.012654575,-0.025553212,0.00125539,0.047177035,-0.019085588,0.013093885,-0.015949402,0.012617966,0.01024447,-0.035828188,0.03839083,0.028994475,0.007364548,-0.0028677194,0.006424912,0.009652622,-0.01932965,-0.015534498,-0.0025412876,-0.006620161,-0.022417024,0.041124318,-0.017828673,0.037927117,-0.0035358372,-0.016974458,-0.0007348531,0.022575663,0.045737077,0.0020516398,-0.008761798,-0.006388303,0.0054944283,0.00793199,0.00042138697,0.031117806,0.01016515,0.050423052,0.027554514,-0.009158398,0.005747642,0.0023689193,-0.018768309,0.010982756,0.053644657,-0.0054395148,-0.010830217,-0.017767658,-0.013252525,-0.00037734155,-0.0011280205,0.015449076,0.03443704,-0.018475436,0.03934267,-0.02439392,-0.031630337,-0.03470551,-0.02984869,-0.020549955,0.0023384118,0.008444519,0.00064485555,-0.011232918,-0.012654575,-0.02567524,-0.041636847,-0.03829321,0.0059703477,-0.0019463883,0.023466488,-0.039830793,-0.007895381,0.01378946,-0.029799877,0.07712335,-0.026919954,0.010525141,0.008505534,-0.013167104,-0.011141395,0.014936548,-0.0015833472,0.037658647,-0.002770095,-0.00051290996,0.0071937046,0.062284425,-0.023747157,0.050325427,0.008237067,0.009396357,-0.032557767,-0.024442732,-0.01980557,0.011794259,-0.031874396,0.022380415,0.0060954294,0.020342505,0.028237885,-0.018267984,-0.00074171735,0.044834048,0.030483248,-0.011629518,0.044785235,-0.016596165,-0.0007970125,-0.012495935,-0.0017084286,0.041466005,0.03104459,-0.016266681,-0.0022606172,0.018878136,0.023112599,-0.007993005,-0.0016519894,0.042783935,0.04859259,0.0063822013,-0.027408076,0.030312406,0.020916048,0.0023506146,0.00816995,0.0055890023,0.0077184364,0.05628052,-0.034022138,-0.045297764,-0.007169299,-0.006089328,-0.03719493,0.0049727475,-0.0031422884,-0.010335993,-0.017621221,0.014472831,0.006119835,-0.009262124,-0.0065347394,-0.0016870733,-0.058574695,-0.02288074,-0.0075536952,0.0047836,0.022624476,0.0104824295,-0.014875532,0.0410511,-0.005049017,0.012123742,-0.0031361869,-0.021318749,-0.029140912,-0.006620161,0.017425971,0.024113249,-0.0215262,-0.04539539,0.037927117,0.0056835758,0.049202744,0.0059733987,0.01897576,-0.008352996,0.012532544,0.0110742785,-0.00021908309,-0.016522946,0.0027289097,-0.0031178822,0.018280186,0.059795003,0.017047677,0.032753017,-0.01331354,0.015778558,0.014533847,0.008517737,0.024796622,-0.013167104,0.013716241,-0.03177677,-0.0010883606,0.009896683,0.019427273,-0.017914094,-0.004435813,-0.0334852,0.032630987,0.004762245,-0.039733168,-0.017609019,-0.026822329,0.012093234,0.005555444,-0.021233328,0.011653923,-0.020952657,0.021575013,0.0065774503,-0.041514814,0.003209405,-0.01203832,0.0015261454,-0.03180118,0.009817363,-0.0021309596,-0.024601372,0.013032869,0.002288074,-0.0028997525,-0.039562326,0.008285879,-0.0063822013,-0.008719088,0.06833714,-0.01769444,-0.05188742,0.015876183,-0.015180608,-0.011788158,0.011086482,0.0121542495,0.013411164,-0.015595512,0.020903844,-0.004268021,-0.033265546,-0.02407664,0.036023438,0.027237233,0.013643023,-0.0061564445,0.0069984556,-0.04595673,-0.030361217,0.01582737,0.0036334617,-0.0013606413,0.03077612,0.0060435664,-0.027286045,-0.024186468,0.016193463,-0.016449727,-0.010110237,-0.012001711,-0.028237885,-0.021892292,-0.010476328,0.015241624,-0.013264728,0.0032582174,-0.009530591,0.029482597,-0.029140912,0.009738043,0.0049483413,-0.0047530923,-0.01203832,-0.060429562,0.015790762,-0.006675075,-0.029824283,0.02307599,0.01705988,-0.00040231968,-0.03280183,0.0000947644,0.002777722,0.008499432,0.0021675688,0.02713961,-0.024650184,0.03538888,0.04288156,0.015754152,-0.011354948,0.015119594,0.01570534,0.043931022,0.031337462,-0.012245772,0.002387224,-0.0048568184,0.010744796,0.00944517,-0.028555164,0.000019472463,-0.00070892164,0.007895381,-0.0033619434,0.005595104,-0.016254477,0.019122198,0.013582008,0.010030917,-0.004978849,0.0038287106,-0.024637982,0.017413769,0.011580706,0.027115203,0.036804434,-0.02052555,0.020952657,-0.012764403,-0.0051679965,-0.022087542,0.031947616,-0.015278233,-0.0151073905,0.005707982,-0.010958349,0.027481295,-0.015998214,0.014265379,-0.026675893,-0.014680283,-0.00641881,-0.009616013,-0.044858456,0.0016779209,0.013301337,-0.016352102,0.04590792,0.007077776,-0.012801012,0.0050246106,-0.031313054,0.013801662,0.05520665,-0.0011333594,-0.030702904,-0.0346811,0.028750414,0.00093734765,0.024125453,0.02984869,0.034461446,-0.0024482391,0.008950946,0.027237233,0.0095000835,0.022209572,-0.011989508,-0.023185818,-0.026090145,0.010250572,0.0022621425,-0.002634336,-0.0038500659,-0.0070289634,0.0050673215,0.025211526,0.001391149,0.0062601706,0.039733168,-0.035340067,0.028433133,0.011190208,-0.019781163,-0.015095187,-0.044858456,0.010037018,-0.017011069,-0.02263668,0.019109994,0.014729096,0.014680283,-0.021343155,0.018390015,-0.013008464,-0.007218111,0.0061167846,0.01191629,-0.0004431237,-0.026895547,-0.03997723,-0.018475436,0.00868858,0.0049117324,-0.007919787,0.00048163958,-0.0026724704,0.006882527,0.019244228,0.023942407,0.00255044,-0.06662872,-0.0047530923,-0.009860074,-0.0150097655,-0.012556951,0.023124801,-0.022563461,-0.0076025072,-0.003862269,-0.0010120914,0.021587215,0.021855684,-0.017999517,-0.0048171584,0.015607716,-0.005235113,-0.020989265,0.025992522,-0.01662057,0.03436382,0.007877076,0.004020909,-0.008664174,-0.027774168,0.000110113564,0.036999684,-0.016278883,-0.033826888,-0.037634242,-0.007498781,-0.0016428372,0.025577618,-0.0021492643,0.020720799,-0.020464534,-0.052033857,-0.047177035,-0.020891642,0.022514649,0.030043937,-0.02694436,-0.010781405,0.041734472,-0.023979016,-0.012996261,-0.0179385,-0.0019723198,-0.0506183,0.008664174,-0.0072364155,0.010836319,-0.021160109,-0.0053266366,-0.0017557155,-0.023088193,-0.038708113,0.012886433,-0.014143349,0.037561025,0.021709247,-0.021233328,0.012337295,-0.015046375,-0.02458917,-0.022575663,-0.03424179,0.0033314358,0.024247484,0.027261639,0.019317446,0.006565247,-0.02770095,-0.02244143,-0.025138307,-0.036438342,0.023063786,-0.0044937776,0.015229421,-0.0052717226,-0.016376508,-0.012227468,-0.0063944045,0.014582658,0.009249921,0.0014208939,-0.028481945,0.047811594,0.0023963763,-0.0063822013,-0.0145216435,-0.001969269,-0.021745855,0.025602024,0.0022102795,-0.005244266,-0.01203832,0.004905631,-0.0054364637,0.0027639933,0.03575497,0.017914094,-0.030043937,-0.018817121,0.016986663,0.009585505,0.044126272,0.020598767,0.022990568,-0.020562159,0.029726658,-0.0095000835,0.038122363,0.015449076,0.0070289634,-0.03231371,0.0025717951,0.036121063,-0.041075505,-0.04539539,0.0267003,-0.024296295,-0.013643023,-0.014057927,-0.00038077365,0.04109991,-0.02004963,-0.015815169,-0.023820376,0.000079796584,-0.033656046,-0.011904087,0.025016276,-0.012007813,-0.034900755,0.015449076,0.01538806,0.022966161,0.0009472627,-0.023271238,-0.024503747,-0.022612274,-0.004094127,-0.041636847,-0.0051466413,-0.005177149,-0.023564111,0.016803617,-0.014216566,-0.016278883,0.017157504,0.0108729275,0.021355357,-0.006437115,-0.010555648,0.017889688,-0.02833551,-0.011721041,-0.03809796,0.043931022,0.022294994,-0.010262775,-0.021709247,0.0032338114,0.009164499,-0.0039629443,-0.009243819,0.054864965,0.008664174,0.0009259073,-0.0022148557,0.03399773,-0.017206317,-0.0001628346,0.038708113,0.029262941,0.012923042,0.02024488,0.030214781,-0.033607233,-0.0096953325,0.0124471225,-0.034461446,-0.0107631,0.043589335,-0.008340793,0.032508954,-0.025016276,0.043442897,0.0071937046,-0.0062479675,0.0410511,-0.021697044,0.0071631973,-0.028628383,0.001391149,0.03487635,-0.031313054,0.008865524,0.0012264077,0.022539055,-0.017316144,0.004606656,0.02530915,0.017120896,0.0011890358,0.014863329,0.010848522,0.01147698,-0.0051374887,0.023869189,0.028164666,0.005686627,0.03555972,0.012849824,0.009280428,-0.043906614,0.008182153,0.004771397,-0.011086482,0.035852596,-0.034290604,-0.035120413,-0.01287423,-0.025284743,0.017792065,-0.021208921,-0.0053388393,-0.011415964,-0.042759527,0.012410514,0.031947616,-0.00733404,-0.019232025,0.027090797,-0.053498223,0.03443704,0.06638466,0.041832097,0.016571758,0.021416374,-0.027969418,-0.014363004,0.014094536,0.01725513,0.00832859,-0.048812248,-0.030312406,0.0007257008,0.01980557,0.03128865,0.049837302,-0.0046890266,-0.02638302,0.016986663,0.029262941,-0.015815169,-0.006504232,0.003395502,-0.0131426975,-0.013838272,0.017609019,-0.0038348122,-0.007620812,0.0069618467,0.0012584408,0.02587049,-0.0008839593,0.00013728444,-0.008786204,-0.018341202,-0.014777907,-0.03211846,-0.016071431,0.02140417]},{"id":"interface-APIInvite","type":"interface","source":"main","text":"Interface: APIInvite\nProperties: channel: APIChannelPartial, code: string, created_at: string, expires_at: string | null, guild: APIGuildPartial, inviter: APIUserPartial | null, max_age: number, max_uses: number, member_count: number, presence_count: number, temporary: boolean, type: number, uses: number","meta":{"url":"/docs/typedefs/APIInvite"},"embedding":[-0.015174037,-0.014781059,-0.006984874,0.0063256845,-0.0089561045,-0.02664647,-0.040438745,0.015769843,0.026291523,0.014603584,0.024504105,-0.029866358,0.0029124771,-0.010458296,0.022767395,-0.010502664,-0.03356796,0.032629885,-0.0014720844,0.010648447,-0.021943407,0.039095014,0.013817628,0.051923856,-0.040210564,-0.015757166,0.0038822463,0.010648447,0.0036382193,-0.014388081,0.04010915,-0.031742513,0.041250054,0.025632333,-0.01612479,0.014045808,0.018241804,0.034201797,-0.04003309,-0.031311505,-0.026874652,0.019737657,0.0014546539,0.0037618175,-0.06394139,0.046371453,-0.036889262,0.03339049,-0.0046618646,0.016720597,-0.03612866,0.004211841,-0.03151433,0.05238022,0.022019466,-0.022374416,-0.004687218,0.0019126005,-0.04738559,0.01887564,0.0024656225,-0.026798591,0.015845904,0.012524602,-0.008791307,0.021005329,-0.05334365,0.058312923,0.044419236,0.025708394,0.02007993,0.0010291914,-0.018051652,0.002069475,0.013995102,0.021258865,-0.05724808,0.02490976,0.03805552,-0.01817842,-0.03658502,0.033745434,-0.08990332,-0.05461132,-0.00078556064,-0.0019094313,-0.02383224,-0.023489967,-0.02634223,0.015883934,-0.021157451,0.032832712,-0.069721974,-0.029866358,0.053140823,-0.039120365,0.022412445,-0.0016218282,-0.029333936,0.040362686,0.061862405,-0.022678657,-0.10339135,0.019167205,0.012537279,-0.0117766755,-0.0090194885,0.029384643,-0.029080402,-0.02773667,-0.05334365,0.030145247,-0.043024797,0.0058503076,-0.017012162,0.010920997,0.041224703,-0.008385652,0.04682781,-0.022146234,-0.056487475,-0.018558722,0.04784195,0.0078025227,-0.003650896,-0.037345625,-0.041047227,-0.041224703,-0.04482489,0.016314942,0.004490729,0.0080116885,0.048754677,0.0463461,-0.010236453,-0.01129496,-0.035824418,0.018051652,-0.039652787,-0.052583046,-0.002321425,-0.010344205,0.032579176,0.020650381,-0.049109623,-0.021296894,-0.030525548,0.01593464,0.0133359125,0.00789126,-0.036382195,0.04099652,-0.007840553,0.00568551,-0.009304714,-0.008689893,-0.0001221125,-0.011269607,-0.031159384,-0.031032616,0.01898973,-0.06728804,-0.024212541,-0.004348116,-0.010825921,-0.0121443,0.029080402,0.011415388,-0.04150359,0.06389068,0.004421007,-0.041402176,-0.07007692,-2.4449733e-7,0.011687938,-0.0194968,0.017886857,-0.062825836,-0.011396374,-0.023211079,0.019484123,0.04320227,-0.014400757,-0.08924413,-0.031007264,0.0073081306,-0.004367131,-0.011960488,0.011928796,-0.03922178,0.003299117,-0.017138928,0.010401251,0.035241287,0.04834902,-0.033136953,0.025746424,-0.042492375,0.031083325,-0.019192558,0.011586525,-0.04548408,0.06718663,-0.005210133,0.004316424,-0.03944996,0.020878563,-0.0028063094,-0.055067685,0.008715247,0.04325298,-0.0060309507,0.018305188,-0.0032056263,-0.03128615,0.0059358752,-0.028902927,-0.0149585325,-0.023578703,0.010477311,-0.07322075,0.022196941,0.0360526,-0.0055872654,-0.0018206943,0.03473422,-0.0017208651,-0.023654765,-0.0031422426,0.00093807746,-0.034911696,0.046320744,-0.04753771,-0.055625457,-0.0055175438,0.015528985,0.033745434,0.030221308,-0.007593357,-0.03906966,-0.004592143,-0.004088243,-0.023768855,0.017265696,0.007986335,-0.015921963,0.01763332,-0.011288621,-0.0060911654,0.04239096,0.08579606,-0.025328092,0.011250592,0.036458254,0.02019402,0.00080695265,-0.0024339308,0.033415843,0.014603584,0.00046349267,0.04981952,-0.020954622,-0.027990203,0.009659663,-0.014007779,-0.00003510858,0.017189637,0.03339049,-0.0052006254,0.006328854,0.014565554,-0.035773713,0.059276354,-0.03369473,-0.004842508,0.022361739,0.023604058,0.034151092,-0.027457781,-0.019750334,-0.05025053,3.7138835e-7,0.0029299075,0.03217352,0.014603584,0.04784195,0.021639166,0.0054097916,0.050529417,0.0054066223,-0.0011519971,0.023122342,0.045458727,-0.011561171,0.015744489,0.0452559,0.026798591,-0.028674746,0.07895063,0.047284175,0.004595312,-0.030195953,-0.022146234,-0.065665424,0.0071116416,0.023413906,0.044495296,0.0097484,0.020003868,-0.028750807,0.06581754,0.039906323,-0.07093894,-0.008778631,-0.048678614,0.0016907579,0.019344678,0.026012635,-0.023058958,0.03759916,-0.008981458,-0.0025812977,-0.034708865,-0.035444118,0.02534077,-0.03678785,0.014400757,-0.04490095,0.0218927,0.007758154,0.011339328,-0.07083753,-0.022615273,0.02994242,0.03597654,0.006157718,-0.00916527,0.042695202,-0.012226699,0.039475314,0.038968246,-0.024428045,-0.017417816,0.012074579,0.006468298,0.033213012,-0.0481969,-0.0004353662,-0.027609902,0.034911696,0.0011012902,0.018634783,-0.022158911,-0.035900477,0.008442697,-0.027609902,0.06378927,-0.043683987,-0.06323149,0.03465816,-0.057856563,0.0028459243,-0.010268145,0.014362726,0.009691355,-0.009761076,-0.014565554,-0.0441657,-0.014831766,-0.06941773,-0.00272708,0.024060419,-0.012214023,-0.027660608,0.004338608,0.020219373,-0.03782734,0.028776161,0.017595291,-0.018508015,0.03303554,-0.008100426,0.025416829,-0.010293499,-0.010420266,-0.021956084,-0.001473669,0.017772766,-0.028066264,0.028674746,0.04107258,-0.024757639,-0.029181816,-0.027254954,0.06084827,-0.0145021705,0.020586997,-0.0017842487,0.017658675,-0.012125285,0.01636565,0.019306649,0.00978643,-0.008537773,-0.042872675,0.0018111868,0.017316403,-0.0067440164,0.019813718,-0.01044562,0.030322721,-0.027381722,0.029029695,0.016150145,0.05496627,-0.034151092,-0.03744704,-0.02994242,0.015731813,0.04452065,-0.0014673306,0.0005930329,-0.010515342,-0.02564501,0.010692815,-0.031235445,0.046016503,0.0021629657,-0.060594734,-0.048298314,-0.047487002,0.027711315,0.05704525,0.012137962,0.031818572,-0.036559667,0.06348503,-0.016454386,-0.032122817,0.04221349,-0.024656225,-0.027584549,-0.016074084,0.022133557,-0.0062527936,-0.008670879,0.044546004,-0.04827296,0.016238881,-0.020586997,-0.05202527,-0.013513386,-0.007720124,0.054560613,-0.011453419,-0.008651863,-0.020878563,0.06728804,-0.039475314,0.026164755,-0.019192558,0.008170147,-0.011377359,0.032503117,0.023236433,0.000099779674,-0.019433416,0.03797946,-0.014844443,-0.016657213,0.0033276398,-0.02862404,0.035114523,0.023185726,-0.031387564,-0.024313955,0.023020929,-0.0016107361,0.0022215957,0.019813718,0.021094067,0.01751923,0.029967772,0.006240117,0.020979976,0.04583903,0.033872202,0.0031438272,-0.061355338,-0.0015774596,0.01953483,-0.0045319283,0.014983886,-0.014464141,0.029156461,-0.0023578703,-0.0022501182,-0.04429247,0.01983907,0.005653818,-0.00823987,-0.047816597,0.007529973,0.00057599857,0.01647974,0.015097977,-0.014337373,-0.04452065,-0.017468523,-0.00043497005,-0.04289803,0.00048726154,-0.013006317,0.0027936327,-0.03701603,0.016162822,-0.021550428,0.025708394,-0.044064287,0.019674273,-0.021372955,0.031488977,-0.007637725,0.027990203,0.028750807,-0.012613339,-0.027254954,-0.06673027,-0.0033339781,-0.0015814211,0.021664519,-0.01593464,0.004034367,0.014882472,-0.00022402145,0.008132118,-0.01666989,0.029156461,0.011066779,-0.023527997,-0.0020298602,0.03039878,-0.010477311,0.0032579177,-0.005707694,0.026114048,0.0033086247,0.006490482,0.0035051138,0.023718148,0.0033625006,-0.007225732,0.0053559155,-0.029790299,0.016999485,0.030956557,0.021258865,-0.059124235,-0.009317392,-0.037294917,-0.022881484,-0.034835633,-0.0084997425,-0.011415388,-0.02359138,-0.032477763,0.011085794,0.011504126,-0.012353466,-0.005767909,0.012930257,0.012442203,-0.027254954,0.017734734,0.040210564,-0.027838083,-0.033542607,0.003489268,0.0036730804,-0.015541662,0.0035209598,-0.021372955,0.02068841,0.057349492,0.012752783,-0.051492848,-0.011814705,0.016733274,0.00057164097,0.023147695,0.007827876,0.011060441,0.02649435,-0.013221822,-0.037649866,0.02023205,0.0071496717,0.016099438,-0.027939497,0.011453419,0.004579466,0.025226679,-0.028471919,0.002974276,0.014362726,0.035165228,-0.0015370527,-0.0031454118,-0.043683987,0.008303253,-0.0042181793,0.0031723499,-0.020637704,-0.029131109,-0.035368055,-0.0009974996,-0.020434877,0.001983907,0.009456835,-0.01052168,0.014666968,0.00031533348,-0.008322269,0.050529417,0.009273022,0.02951141,-0.03009454,-0.065513305,0.011624555,0.017924886,0.015579692,-0.013031671,0.010965365,-0.00061482104,-0.012626016,-0.0055207126,-0.008062395,0.019864425,-0.024935113,0.014400757,0.01427399,-0.004265717,0.023084313,-0.019192558,0.025987282,-0.018153068,-0.00823987,-0.017430494,-0.006870784,0.01647974,-0.00017559242,-0.01612479,-0.0015592369,-0.017937563,0.024884406,-0.041224703,-0.026367582,0.031438272,-0.021005329,-0.036458254,-0.013209145,-0.017607968,0.04251773,0.012854197,0.010806906,0.016961455,-0.031843927,0.007669417,-0.041883893,0.015465601,-0.0018270327,0.04203601,-0.022196941,0.0116499085,0.016796658,-0.006598234,-0.023844915,-0.013842981,-0.0015624061,0.0036065276,-0.004126273,0.015554339,-0.03186928,-0.02289416,0.008892721,-0.02394633,0.04834902,0.008081411,0.014476817,-0.00237847,-0.0022738872,0.04495166,0.018698165,-0.013285206,0.02332517,0.025011174,0.027812729,0.008632848,0.008075072,-0.02509991,-0.020409523,0.014578231,0.00089291664,-0.007865907,-0.011878089,0.0069405055,0.00073168456,0.047512356,-0.014033132,-0.0028253247,-0.03082979,0.03972885,-0.05283658,0.021943407,-0.008594818,0.03075373,-0.023046281,0.0064334366,-0.008493404,-0.0056601567,0.026950713,0.0067440164,-0.013881011,0.04165571,0.0010474143,0.0076060337,0.045585494,0.035342705,-0.004614327,-0.007175025,-0.022298355,-0.006598234,0.004877369,0.008632848,-0.0137922745,0.033491902,0.0016828349,0.00754265,-0.0389936,-0.00676937,0.021689873,-0.006528512,0.03833441,0.0017525569,-0.0044875597,-0.0136148,-0.02854798,0.011599202,-0.004741094,0.008797646,-0.0044812215,0.008708908,-0.03818229,0.034860987,0.0036572346,-0.011180869,0.004012183,-0.008341284,-0.033542607,0.019344678,0.0071306564,-0.0030899511,0.014781059,0.023895623,-0.018343218,-0.009970242,0.0051942873,-0.015237421,0.01879958,0.004633342,-0.021436337,-0.026925359,-0.011770337,-0.01972498,0.023756178,-0.058008682,-0.056639597,-0.036914617,0.0053083776,-0.014540201,0.020548968,-0.030779082,-0.005593604,-0.034404624,0.002990122,-0.035900477,0.005086535,-0.0034068692,-0.004173811,-0.02208285,-0.051847797,0.020472907,0.0017382955,-0.032198876,-0.026722532,-0.01585858,0.004104089,-0.08341283,-0.0015798366,0.061304633,0.004598481,-0.01256897,-0.02432663,0.009627971,-0.0039709834,-0.01751923,-0.012632354,0.024998497,-0.020675736,0.027356368,-0.037218858,0.025252031,-0.028902927,0.0154782785,0.015655752,0.048780028,-0.0014364312,-0.002947338,0.038511883,0.0030424134,0.07256156,0.0063732225,0.010204761,-0.017975593,0.009583603,0.035063814,-0.06231877,-0.0029726916,0.017836148,0.0042593786,-0.009659663,0.0035558208,0.024542134,-0.0011369436,0.0059770746,-0.023527997,-0.073017925,0.02027008,0.0010767292,0.0064809746,0.016099438,-0.014717675,0.026697177,-0.000609275,0.009558249,0.00032008725,0.0005763947,0.0015608214,0.004440022,0.025150618,0.0078025227,-0.006788385,0.034277856,-0.048171546,0.0441657,-0.009450497,-0.023211079,0.06581754,0.028776161,0.014071162,-0.046168625,0.014641615,0.005349577,0.014628938,-0.0002713611,-0.014210606,0.014717675,-0.01879958,0.0148951495,0.012600662,0.006173564,-0.009843475,0.015706459,-0.014654292,-0.0033783466,0.01957286,-0.0013373942,-0.0039773216,0.0024878068,0.049844872,0.015693782,-0.028319798,0.013766921,-0.024618195,0.012645031,0.0016115283,0.0027841253,0.030601608,-0.0015806289,0.021144774,0.020954622,0.009450497,0.009247669,-0.023794208,0.017050192,-0.009811783,-0.021575782,0.042644493,0.028674746,0.00792929,-0.024592843,0.0048013087,-0.00568551,-0.007022904,0.032579176,0.032097463,0.047360238,-0.013424649,0.022399768,-0.022070175,0.02332517,-0.022311032,-0.009666001,0.016036054,-0.0036604037,0.025594303,0.00059144833,0.0026240817,-0.011459758,0.017620644,-0.023540674,0.012543617,0.041985307,0.050909717,-0.013969748,-0.0074602515,-0.029764945,-0.05481415,0.037041385,-0.00050825736,0.02262795,-0.0015037762,0.0019712304,0.02553092,-0.029409997,-0.046371453,-0.01582055,0.007701109,0.011123824,-0.03430321,0.017582614,0.0038854156,0.0133992955,-0.01953483,0.010933673,-0.018596752,-0.015136007,-0.016340295,-0.03326372,0.019103821,0.019509476,-0.016505092,0.026519705,-0.022387093,0.027559195,-0.01744317,0.02317305,0.0065031587,0.049261745,0.057197373,0.014704999,-0.044064287,-0.0150219165,-0.011599202,-0.009222316,-0.002150289,0.033796143,0.006103842,-0.0033276398,0.010166732,0.0053464076,-0.044013582,0.02019402,0.037776634,0.0073081306,0.0051942873,0.027812729,0.003913938,-0.012125285,-0.005973906,-0.029156461,0.014185253,-0.0100272875,0.018038977,-0.010230116,0.048551846,-0.020941947,0.0067059863,0.043151565,0.033517256,0.022995574,-0.010616755,-0.014337373,0.0061640562,-0.0040438743,0.009095549,-0.0149585325,-0.0009135163,0.025847837,0.0068897987,0.0033213014,-0.008030704,0.001106044,-0.041706417,-0.021246187,0.01144708,0.012309098,0.014679645,-0.010920997,0.021994114,0.032325644,0.004135781,-0.0054763444,-0.06444846,-0.026139403,-0.01013504,-0.007758154,-0.0022580412,-0.0143754035,-0.002096413,0.05400284,-0.02104336,0.026088696,-0.03473422,0.008842014,-0.027407074,-0.0000124477,0.025885867,0.0033783466,-0.02444072,-0.029739592,0.031767868,-0.024846377,0.0047062333,0.008398329,0.0331116,0.010426604,0.01048365,0.023122342,0.013728891,-0.036154013,-0.0016622352,-0.012505587,0.0287001,0.039779555,0.009501204,-0.0011409051,-0.020954622,0.02185467,-0.009678678,0.0017525569,0.019813718,-0.005470006,0.018495338,-0.007941967,0.0054224683,-0.03222423,0.00607215,0.00079784123,0.009900521,-0.03780199,-0.0032959478,0.013297882,-0.019433416,-0.0072193937,0.020815179,0.010832259,0.028116971,-0.025911221,0.016238881,0.008265223,-0.0116182165,-0.023350524,-0.046320744,-0.0049565984,-0.010052641,0.0057869237,-0.041883893,-0.022830777,-0.030626962,-0.0021217666,-0.017722059,0.014248637,0.011611878,-0.010680139,-0.0060594734,-0.011706953,0.0257591,0.025746424,0.013437326,-0.030500194,0.013779597,-0.013196468,-0.009742062,0.005891507,0.020308109,0.0165558,-0.018774226,0.0025464366,-0.01636565,0.014248637,0.01593464,0.040514804,0.04114864,0.006293993,0.04386146,0.004490729,-0.04135147,-0.044317823,0.025328092,-0.0128161665,0.028877575,0.028218385,-0.02413648,-0.039855614,0.00018302018,-0.0031343198,-0.014058486,-0.008449036,0.019585537,0.013310559,-0.012074579,-0.03833441,0.04305015,0.013893688,0.0008144794,-0.0316411,0.020029223,-0.005137242,-0.019737657,0.010965365,-0.035114523,0.004810816,-0.06652744,0.03833441,-0.0065475274,-0.020625027,0.013272529,-0.010052641,-0.0042879013,0.004424176,-0.0010402836,-0.020941947,-0.0054097916,0.005745725,-0.029790299,-0.039120365,0.046193976,0.03339049,0.014717675,0.033821497,0.009773754,0.021474369,0.034480687,0.04135147,0.009456835,-0.00023650011,-0.004630173,0.008271562,0.01732908,0.010496327,-0.0008548865,0.007631387,0.0019442923,-0.0045699584,0.022450475,-0.015212067,-0.0028189863,0.018305188,0.01365283,0.012245714,-0.013754244,-0.0045160824,0.030221308,-0.009799107,0.028776161,0.024478752,0.009038503,0.0018634782,-0.019458769,0.0345821,-0.041883893,0.01891367,-0.019091144,0.016974133,0.017227666,-0.000161034,0.009520219,-0.041326117,0.0121062705,-0.019078467,-0.017151605,0.0005573796,-0.026063342,-0.03775128,-0.005197456,-0.027762022,-0.046903875,0.020751795,0.01957286,-0.007529973,0.0039202766,-0.0064080833,0.023959005,0.063637145,0.0020678905,0.0025559443,-0.032274935,0.004978783,0.0015695367,0.006680633,0.012511925,0.038892183,0.009735723,-0.021334924,0.004316424,0.027356368,0.0054319757,0.008506081,-0.007903936,0.004981952,0.0029600149,-0.011415388,0.006978536,-0.0218927,-0.011212561,0.009190624,0.021068713,-0.0404641,-0.012188669,0.019763011,-0.025302738,0.030373428,0.039526023,0.0015750828,-0.008227193,-0.0027651102,0.0043195933,-0.015136007,-0.008144794,0.01608676,0.0012217192,0.013247175,0.027052127,0.022653304,-0.0060055973,-0.0143754035,-0.01519939,0.022006791,0.021474369,-0.016834687,-0.017557262,-0.0022453645,-0.000802595,0.02664647,-0.018368572,0.01519939,0.022260325,-0.008645525,0.017303726,-0.01090832,-0.007086288,-0.004421007,-0.009925874,-0.0072320704,0.0066235876,-0.025987282,0.032756653,-0.011510464,0.019636244,0.027356368,-0.0019538,0.02289416,0.029257877,-0.0027825406,0.0058693225,-0.00676937,-0.024973143,-0.001527545,0.015414895,-0.0063066697,0.015883934,0.0017905871,0.013754244,-0.019002408,-0.014730352,-0.009596279,-0.022868808,0.0024814685,-0.013057024,-0.0014419772,0.0010355298,-0.009330068,-0.0030883665,-0.02994242,0.016581153,0.0026779578,-0.0040945816,-0.022805424,-0.018584076,-0.0209673,0.03364402,-0.0020663058,0.029790299,-0.012283744,-0.014286666,-0.017734734,0.014159899,-0.0025702056,-0.032629885,-0.013285206,0.011453419,-0.009691355,-0.01682201,0.0022802255,-0.009646986,-0.005438314,0.0031707652,-0.010103348,-0.021512398,-0.0006690933,0.0054288064,-0.03612866,-0.0032214723,-0.021436337,-0.032832712,-0.038740065,-0.028167678,-0.028598687,0.012771798,0.009811783,0.015440248,0.0009301545,-0.012911242,-0.0064714667,0.0010624678,-0.0095392335,0.0014855535,-0.005295701,-0.019826394,-0.025264708,0.0011052517,-0.030373428,0.020789824,0.005038997,0.049185686,0.0018745704,-0.038816124,0.04041339,0.011668923,-0.020510938,0.007663079,0.01133299,-0.0071243183,0.031970695,-0.01717696,0.010591402,-0.009254008,0.03399897,0.016581153,-0.029536763,0.0037396331,-0.015731813,-0.014045808,0.0023372706,-0.019965839,0.021841994,0.02509991,-0.0009974996,-0.019192558,-0.070330456,0.01964892,-0.020625027,0.009247669,-0.0058851684,-0.004484391,-0.007682094,0.024009712,0.0022421954,-0.032122817,-0.010198424,-0.009317392,-0.037903402,-0.026240816,0.020941947,0.0019949991,0.051087193,-0.0067757084,0.0011686353,-0.013741568,-0.0077391393,-0.003489268,-0.00939979,0.0018032638,-0.03709209,0.0057425555,-0.00028621661,0.038892183,0.036077954,0.0084046675,-0.045230545,0.0019284465,0.0014625769,-0.0102111,-0.015072623,-0.0011313976,-0.00901315,-0.02343926,-0.010585063,-0.0018206943,0.002799971,0.03658502,0.012778137,-0.009488527,-0.0060055973,-0.0058503076,-0.000092351904,0.008455374,0.052887287,-0.03841047,0.021905378,-0.026114048,-0.024047744,0.024630873,-0.025809808,0.02034614,-0.034632806,-0.0020314448,0.056639597,0.018317863,0.016264236,0.0019490462,0.037878048,-0.02715354,-0.025809808,0.022298355,0.00012894603,0.006316177,-0.026747884,0.0045889737,-0.015883934,0.02119548,0.03620472,-0.013221822,-0.029739592,0.038232997,-0.013297882,0.03592583,-0.007384191,0.03460745,-0.0204222,-0.010692815,0.026976066,-0.023058958,0.009406128,-0.029156461,0.018824933,0.03465816,0.0075109582,0.012042887,0.0047220793,0.005251332,0.019306649,0.008296915,0.019902455,0.027660608,0.019319326,0.000019968315,0.0057267095,-0.0015402219,-0.01191612,0.043379746,0.0008231947,0.046624985,0.016162822,0.022425123,0.015528985,0.004189657,0.0062749777,-0.013386619,-0.013018995,0.011783014,-0.030018479,-0.018254481,-0.01102241,-0.016745951,-0.016289588,-0.026164755,-0.023680119,-0.010705492,-0.026063342,0.0034322226,0.037294917,0.015402218,-0.020333463,0.01798827,-0.025695717,0.03369473,0.056031115,0.04586438,-0.024377339,-0.017341757,-0.020561645,0.00016519355,0.0037808325,0.018495338,-0.010280822,-0.0065031587,-0.021208158,0.014781059,0.014793735,0.0045192516,0.032122817,-0.0074665896,-0.0073524993,0.0058661536,0.03967814,-0.010318852,-0.017899532,0.0040470436,-0.034632806,-0.0026716194,-0.019230587,-0.020244727,-0.0067059863,-0.025163295,0.0051816106,0.03237635,0.021423662,-0.010990718,0.010787891,0.015009239,-0.012023872,-0.04517984,-0.032350995,0.003701603]},{"id":"interface-APIMessage","type":"interface","source":"main","text":"Interface: APIMessage\nDescription: Message from GET /channels/{id}/messages, POST /channels/{id}/messages, PATCH, or gateway MESSAGE_CREATE\nProperties: attachments: APIMessageAttachment[] | null, author: APIUserPartial, call: APIMessageCall | null, channel_id: string, content: string, edited_timestamp: string | null, embeds: APIEmbed[] | null, flags: number, guild_id: string | null, id: string, member: APIGuildMember | null, mention_everyone: boolean, mention_roles: string[] | null, mentions: APIUserPartial[] | null, message_reference: APIMessageReference | null, message_snapshots: APIMessageSnapshot[] | null, nonce: string | null, pinned: boolean, reactions: APIMessageReaction[] | null, referenced_message: APIMessage | null, stickers: APIMessageSticker[] | null, timestamp: string, tts: boolean, type: MessageType, webhook_id: string | null","meta":{"url":"/docs/typedefs/APIMessage"},"embedding":[0.008714562,0.010373084,0.01972644,0.034576945,-0.022258177,-0.049321964,-0.0057696616,-0.010396526,0.012881378,0.005221705,-0.013432264,-0.034319084,0.009288891,0.02076961,0.012377375,0.008187118,-0.0011742975,0.0075190207,0.01009178,0.044399142,0.014241014,0.012037465,-0.03989828,0.039382555,-0.01725331,-0.031998325,-0.038069803,0.0029361101,-0.017030612,0.006264874,0.04339114,-0.023172414,0.012166397,0.0025288055,0.011908535,0.053119566,-0.012588353,0.028739888,-0.016620377,-0.03767129,-0.0017947779,0.059589557,0.012939983,0.006253153,-0.079890326,0.030685576,0.003917744,0.04754037,0.004518445,0.021894826,-0.037014913,0.039851397,0.03242028,0.06324651,0.018226152,-0.015413114,0.0013530428,-0.0084918635,-0.025551777,0.024239026,-0.040742192,-0.025551777,-0.016479725,-0.012096071,-0.0138542205,-0.012506306,-0.017511172,0.060761657,0.024473445,0.019034902,0.031271625,0.009939407,-0.016796192,-0.008843494,-0.015741302,-0.009124798,-0.031881116,-0.006985715,0.012506306,-0.059683327,-0.0041345824,0.044422586,-0.048290513,-0.0448211,-0.04578222,0.02112124,-0.00077724876,-0.026466016,-0.026934855,0.039030924,-0.05935514,0.008198839,-0.06394977,-0.015987443,0.016128095,-0.047352836,-0.033498615,0.0015574277,-0.01877704,0.019046623,0.045383707,-0.035819374,-0.081296846,0.023172414,0.014639528,-0.0053447755,0.008896238,0.026372248,-0.043414578,0.00868526,-0.028458586,-0.016843075,-0.014112082,0.0054151015,-0.011275601,-0.0025507824,0.0044950033,-0.0018358014,0.03225619,-0.025012612,-0.057198476,0.021168124,0.054432318,-0.008263304,0.029021192,-0.030638691,0.018472293,0.015553765,-0.04378965,0.013795615,0.023535766,0.0072084144,0.031506047,-0.025973734,-0.019691277,0.02475475,-0.018097222,0.000121880075,-0.032349955,-0.036335096,0.04742316,-0.018390248,-0.0049433312,-0.0031002043,0.0047440743,-0.00030657736,-0.034319084,0.018284759,0.017347079,0.010572341,-0.0153193455,0.027145833,-0.036335096,0.013830778,-0.0010307153,0.0022738737,-0.0007087542,-0.02639569,0.011006018,-0.007524881,-0.008532887,-0.0626839,-0.014381666,-0.009851499,-0.030357387,-0.006581341,0.019433416,-0.017698709,-0.034225315,-0.004802679,-0.039007485,-0.032748472,-0.08350039,-0.007806185,-0.015553765,-0.027778767,-0.0044803517,-0.033193868,-0.035678722,-0.005362357,0.040203027,0.019773325,-0.050025225,-0.10305102,-0.026114386,0.026934855,-0.018237874,0.026606668,0.017276753,-0.03520988,-0.01888253,-0.0036042072,0.000027654232,0.022504319,0.028411701,-0.021988593,0.038304225,0.00010448172,0.004626864,-0.02487196,0.03352206,-0.021074357,0.07974967,0.007120507,-0.015190414,-0.0058341273,0.024942286,0.026301922,-0.044867985,-0.0029317148,0.044633564,-0.03474104,-0.0007552719,-0.023043483,-0.027872534,-0.018413689,-0.033451732,0.0028013187,-0.06587201,-0.0019383602,-0.07131056,0.0039060228,0.069575846,-0.004073047,-0.036077235,0.024778191,-0.019867092,0.0014519388,-0.03743687,-0.013678405,-0.031576373,0.017980013,-0.024801634,-0.07688975,-0.049134426,0.008081629,0.0044539794,0.035514627,0.017522894,-0.018988019,0.035842814,-0.019163834,0.0077241384,0.04303951,-0.005760871,-0.029068077,0.028435143,-0.066387735,0.016151536,0.041093823,0.08795437,0.014487155,-0.0035573232,0.03624133,0.023629533,-0.024332793,0.00668683,0.041445453,0.03999205,0.006581341,0.06929454,0.022105804,-0.05537,0.01513181,-0.009200984,0.011785464,0.033990897,0.048384283,-0.01653833,0.031928,-0.011896814,-0.0070384596,0.07234201,0.029513475,0.006710272,0.015190414,-0.029349381,-0.018495737,0.031998325,-0.0003937523,-0.008773168,-0.022269897,-0.002991785,0.04798577,-0.016350793,0.0342722,0.049275078,-0.00997457,-0.002583015,0.016456282,-0.012799331,0.033897128,0.04015614,-0.04303951,0.023524044,0.022609808,0.02569243,0.021379102,0.0185309,0.026606668,0.026090944,-0.017522894,0.050259642,-0.0533071,0.021297054,0.00457705,0.025903407,-0.025833081,0.013268171,-0.05021276,0.033545498,0.0016394748,-0.06929454,-0.02371158,-0.055791955,0.015917117,0.025926849,-0.01021485,-0.0058370573,0.020500027,0.0020394537,-0.014252734,0.023969444,-0.040414006,-0.011551044,-0.0185309,0.017054053,-0.017077494,0.015764743,0.037460312,0.013772174,-0.058229923,0.019269323,0.0016072419,0.047141857,0.0049931454,-0.019785047,0.02040626,0.043672442,0.051103555,0.045008637,-0.035936583,-0.018390248,-0.0021171055,-0.022187851,-0.020394538,-0.07431113,-0.00090691226,0.00833363,0.003744859,0.0028482028,-0.005127937,0.011369369,-0.011451416,0.008960703,-0.008902099,0.043813094,-0.007401811,0.0026445503,0.039241903,-0.054291666,-0.032560933,0.0017332427,0.030779343,-0.0009457381,0.004533096,-0.027849093,-0.014112082,-0.055932608,-0.04965015,0.028739888,-0.037694734,-0.012014024,-0.009704987,-0.016456282,0.023559207,-0.017686987,-0.004831982,-0.0061769662,0.01020899,0.035045788,0.03776506,0.011047041,0.027169276,0.03110753,-0.0003336822,-0.014041756,0.01794485,-0.0022841296,0.04814986,0.05340087,-0.008427398,-0.037272777,-0.017382242,0.015495161,0.033826802,-0.0123539325,-0.02745058,-0.008861075,-0.033733036,0.004659097,0.022867668,-0.023641255,0.021390824,-0.020593794,-0.008058187,0.010830203,-0.0052158446,0.054619856,-0.0057432894,0.0053359848,-0.009892523,0.02698174,0.033803362,0.023043483,-0.032795355,0.007905814,-0.016866518,0.021789337,0.03673361,0.0074428343,-0.04587599,-0.024496887,0.02075789,0.0025771547,-0.016596934,0.035584953,-0.04707153,0.02665355,-0.037507195,-0.059542675,0.021613522,0.060949195,-0.026466016,0.039499767,-0.049462616,0.019902255,-0.0066985507,-0.025036054,0.011052902,0.009247868,-0.025012612,-0.00785893,0.004497933,-0.005377008,0.002968343,-0.0045477473,-0.028927425,0.032842238,-0.035397418,-0.046157293,-0.058417458,-0.0075190207,0.008585632,-0.04575878,-0.040554658,0.0064992937,0.07895265,-0.00018002721,-0.0050400295,-0.019339649,-0.013830778,0.017640103,0.047610696,-0.02569243,-0.027778767,-0.049275078,-0.026489457,-0.03155293,0.0342722,-0.012377375,-0.041937735,0.03401434,0.04564157,0.009200984,-0.027731882,0.023125531,-0.020101514,0.016092932,0.0021097797,-0.000028112083,-0.027263043,-0.00739009,-0.036639843,-0.009535032,0.09704987,0.0002833185,-0.008556329,0.008064047,0.010812622,-0.029747896,0.0022240595,-0.012271886,-0.010918111,-0.018085502,-0.03980451,-0.018741878,-0.042101827,0.021613522,-0.019304486,-0.0029522267,0.003744859,-0.0004736016,-0.019878814,0.050072107,-0.017030612,-0.045383707,-0.040273353,0.0014885669,-0.020628957,0.0047206325,0.0032936006,0.0012944378,-0.015377951,-0.0075190207,-0.008896238,-0.025973734,0.028200723,-0.011410393,0.006030454,0.01572958,0.024239026,0.047094975,0.0026826437,0.0025844802,0.0069974363,-0.031013763,-0.040203027,-0.0018680342,-0.0003576736,0.019984303,0.01772215,0.024965728,0.008579771,-0.023981163,0.025176706,-0.051713046,-0.019808488,0.03687426,0.000857098,-0.014815343,-0.014932552,-0.006780598,0.025176706,-0.0015413114,0.006036314,-0.013221286,0.02217613,0.014041756,0.03638198,-0.018988019,0.0006417247,0.038163573,0.014053478,0.036077235,0.01843713,-0.025387684,-0.023957722,0.022680134,0.023922559,-0.011111507,-0.008544608,-0.0012915075,0.004322118,-0.048524935,0.0062824553,0.0027309926,0.034530062,-0.008110931,-0.003815185,-0.0013918686,0.02289111,-0.0076127886,0.020570353,0.00018442259,0.015120088,-0.03298289,0.009810476,0.016843075,-0.015424835,0.0051484485,-0.037249334,0.03811669,0.024004607,-0.0035719743,-0.012834494,-0.018366804,-0.021390824,0.0038913717,0.030896554,0.027052065,-0.020394538,0.0046297945,-0.020019466,-0.0060245935,-0.007694836,-0.0146043645,-0.006610643,-0.035678722,0.016491445,0.018929413,0.04257067,-0.04904066,-0.0019046623,0.034553505,0.04611041,-0.010478573,-0.028903984,-0.011041181,0.0026225734,0.0005461253,0.025973734,-0.041117262,-0.014217571,-0.023570929,0.016526608,0.040882844,-0.007700696,0.03242028,0.001038041,0.008866936,-0.00079629535,0.017335357,0.028599238,-0.02239883,0.028364817,-0.019445136,-0.046766784,-0.0048876563,0.004732353,0.049228195,-0.009968709,0.013643242,0.0066692485,-0.021332217,0.004788028,-0.0015838,-0.004158024,0.0051220767,0.0067044115,0.016104652,0.010384805,0.04707153,-0.007987861,0.041820522,-0.004163885,0.00043917118,-0.0033287636,-0.028153839,-0.0070325993,-0.025293915,-0.039241903,0.025879966,-0.0051689604,0.005435613,-0.0641373,-0.006593062,0.053072684,-0.013080635,0.004682539,-0.025879966,0.025153264,0.010273456,0.0541979,0.015565487,0.0020628958,-0.042430017,0.0017903826,0.0068978076,0.011322485,0.011597929,0.0145692015,0.01959751,-0.00017105333,0.037155565,-0.027239602,0.0065754806,-0.016397677,0.0058722203,0.017569777,0.014182408,-0.01044341,-0.05152551,-0.013209566,0.0138893835,-0.007026739,0.028575795,0.0018021036,0.030826228,-0.016819634,0.014487155,-0.0076245097,0.008269165,-0.02475475,0.028997751,0.011357648,0.03134195,0.03016985,-0.0011794255,-0.007706557,-0.021519754,-0.015166973,-0.029771337,-0.0008754121,0.0010211921,0.008280885,0.014698133,0.014065199,0.017651824,-0.00832777,-0.040648423,-0.011416253,-0.0048407726,0.018730156,-0.010548899,0.0007757836,-0.0016087071,0.0066340854,0.012834494,0.024285909,0.04306295,0.019433416,-0.0030445294,0.030943437,-0.0022035479,-0.022000315,0.028224165,0.02239883,-0.002956622,0.026676994,-0.027849093,0.021988593,0.000006289735,0.030005757,-0.012541469,0.040437445,-0.01220156,0.008603213,-0.010033175,0.020382818,0.010009733,0.015049762,0.026255038,-0.025200147,0.006370363,-0.019409973,0.0013933338,-0.011873372,-0.014967715,0.014862226,-0.016479725,0.006511015,-0.02698174,0.022562923,-0.020863378,-0.003952907,0.0036921147,-0.006546178,-0.035608396,0.00974015,0.012881378,0.025036054,-0.0011882163,0.023535766,-0.012998587,-0.011937837,-0.010502015,-0.0013413219,0.032678146,0.022246456,-0.025997175,-0.014932552,0.0066692485,-0.0027954583,0.021261891,-0.0506816,-0.0075893467,-0.027802208,-0.009335776,-0.0009691801,0.0011786929,-0.019175554,-0.01585851,-0.0022035479,0.010062478,0.012541469,-0.052510075,-0.020277329,-0.024590656,-0.012705563,-0.044891424,0.040765636,-0.0011845535,-0.03295945,0.001407985,0.012471143,0.0026723878,-0.07979656,0.03980451,0.028341375,-0.02663011,-0.012564911,-0.020839935,-0.009546754,-0.005913244,0.0012072629,-0.029513475,0.04904066,-0.014264456,0.007097065,-0.0096346615,0.04318016,0.017980013,0.0011896814,-0.020875098,-0.014522318,0.012529748,0.018273037,0.0049697035,-0.007987861,0.09011104,-0.012166397,-0.007958558,-0.003530951,0.043133277,0.056729633,-0.051103555,0.010900529,0.0021888965,-0.009710847,0.0065168752,0.004659097,0.021976873,-0.0016101722,0.0123890955,-0.02838826,-0.036546074,0.03626477,-0.033404846,-0.018015176,0.0015149391,0.0061535244,0.008749725,0.025176706,-0.009300613,-0.009294752,-0.0018006384,-0.0023720372,-0.004600492,-0.008948983,0.008732144,0.021648685,0.012693842,-0.05724536,-0.007894093,-0.023735022,-0.02571587,0.024215583,0.015928837,0.023981163,0.024356235,0.02205892,-0.015553765,0.00810507,-0.02381707,-0.010373084,0.0043602115,-0.033357963,0.01747601,0.023289625,0.02052347,0.0050751925,0.029255614,-0.006036314,0.020218723,0.007495579,0.008943122,-0.009488149,-0.015424835,0.053822827,0.014100362,-0.0073725083,-0.0028936216,0.0036686726,-0.007401811,-0.0024321072,0.022574645,0.02112124,0.0021918267,0.009576056,0.004193187,-0.00031243789,0.01466297,-0.0060245935,0.011931977,0.010613364,-0.05363529,0.043977186,-0.0025537126,-0.03312354,-0.052978914,-0.027989745,-0.03687426,-0.000014639802,0.03474104,0.028927425,0.06334028,-0.014451992,0.0013120193,0.0066985507,0.011052902,-0.0161867,-0.022785623,0.007671394,0.008357072,-0.006651667,-0.011820627,-0.029185288,-0.009535032,0.00892554,-0.018401967,0.006651667,0.015506881,-0.00011455445,-0.017065775,-0.0013501126,-0.02545801,-0.03392057,0.006007012,-0.029091518,-0.00026592016,-0.028857099,-0.0038737901,0.026536342,0.0011860186,-0.03814013,-0.005951337,-0.0089900065,0.008614934,-0.009822197,0.024004607,-0.0091541,-0.015424835,-0.026348805,0.021883104,0.0030298783,-0.05668275,0.023301346,-0.0483374,-0.008943122,0.006721993,-0.034576945,0.012787609,-0.027263043,-0.00044576425,0.0024965727,0.043344256,-0.007360787,0.051853698,0.005116216,-0.020980587,-0.033381406,-0.04777479,-0.014487155,-0.017054053,0.0014753807,0.030709017,0.0045008636,0.023875674,0.026489457,-0.0366164,-0.031154415,0.044188164,0.066200204,-0.015331066,0.019409973,-0.0131040765,-0.028224165,-0.017077494,0.008966564,0.01676103,0.03401434,-0.029982315,0.009177542,-0.002723667,-0.015694417,-0.034436293,0.019890536,0.03931223,0.017464288,0.026090944,-0.016796192,0.0031851814,-0.021402543,0.033967454,-0.014967715,0.010162106,-0.0002692167,0.049697034,0.016620377,-0.036217887,0.0091716815,0.010126943,0.0034811366,-0.01220156,-0.0029287846,0.03931223,0.023090368,-0.0002809377,0.023781907,-0.01349087,-0.008743865,-0.006071477,-0.02545801,-0.04378965,0.025950292,0.0073842295,0.0029302498,0.0027368532,0.0020819425,0.049275078,-0.028013187,0.026184712,-0.025293915,-0.01184407,-0.006370363,-0.00634106,0.0049140286,0.02663011,-0.041843966,-0.026606668,0.06840375,-0.009915965,-0.004591701,0.0028071792,0.020089792,0.020312492,0.026231596,0.03462383,-0.01220156,-0.032936007,0.019773325,-0.046626132,0.036171004,0.04273476,0.00299325,0.0009970175,-0.011691696,0.025786197,0.007425253,-0.0044774218,0.024918843,-0.0032203444,-0.008814191,-0.011281461,0.0034020199,0.020558631,0.03204521,0.0069388314,0.0041345824,-0.0075893467,-0.0016761029,-0.019562347,-0.020359375,0.021425987,0.014756737,0.019785047,0.00857391,0.0068099005,0.0042781644,-0.027192717,0.0031588092,-0.0032115537,-0.019538905,0.015975721,0.0017771964,0.01725331,-0.056307677,-0.0045711896,-0.041117262,-0.021425987,0.0065872013,0.035045788,-0.0024452934,-0.020980587,0.0024145257,-0.008614934,-0.0015207996,0.06324651,-0.0058546388,-0.06418419,0.04575878,-0.033357963,-0.033639267,0.004272304,0.04458668,0.003847418,-0.024028048,-0.004861284,0.009816336,-0.0026328294,0.01196714,0.023828791,0.026466016,0.003697975,0.015448277,-0.0062238504,-0.04200806,-0.0024218513,0.0070384596,-0.010595783,0.031177856,0.010783319,-0.024965728,-0.042148713,0.012307049,0.019034902,-0.018062059,-0.0032349958,-0.012916541,-0.0031998327,-0.013256449,-0.011205275,0.06755984,-0.011047041,0.01876532,-0.0023192926,0.031974886,-0.02803663,-0.008005442,0.0047850977,-0.027872534,0.0031031345,-0.045125846,0.019796766,0.006581341,-0.021672128,-0.034108106,0.012764168,-0.023735022,0.023453718,0.014557481,-0.03884339,0.038421433,0.0033639267,-0.019421695,-0.03155293,0.036475748,0.0028819006,0.0054942183,0.018589504,-0.014674691,0.039921723,0.011404532,0.030732458,-0.0401327,0.014112082,0.02442656,-0.007665533,0.02665355,0.0041257916,0.0152841825,-0.013654964,-0.0019661975,0.021156402,0.04775135,-0.010625086,0.02475475,0.018519178,0.017933128,0.008192978,-0.020359375,-0.016936844,0.02242227,-0.017417405,0.04165643,0.033803362,-0.003577835,0.0029698082,-0.027427137,0.00038459527,-0.012600074,0.014135525,-0.0026225734,-0.026278479,-0.0024614097,-0.03910125,0.042664435,-0.001525195,-0.031506047,0.008017163,-0.04479766,-0.0074545555,0.013045472,-0.051478628,-0.0057286383,-0.032209303,-0.011070483,0.029747896,0.0069036684,-0.01700717,0.009007588,-0.0042283502,0.007184972,0.036124118,-0.011287322,0.009136518,-0.011468997,0.02838826,0.0028804354,0.010232432,0.02346544,0.025504893,0.03814013,-0.009658103,-0.005998221,0.04739972,0.003038669,-0.019679558,0.015002878,0.019316206,-0.029396266,0.012377375,-0.013514312,-0.027614674,0.019339649,0.033592384,0.0022387109,-0.04306295,-0.010812622,0.037858825,-0.05879253,0.043578673,0.026559783,-0.044914868,-0.0145692015,-0.03591314,0.025973734,-0.009605358,-0.010771598,0.00880247,-0.01749945,0.038913716,0.0124242585,0.001197007,0.02195343,-0.0017698709,-0.012764168,-0.0024365026,0.03600691,-0.014862226,-0.04667302,0.007560044,-0.0033815082,0.029958872,-0.000642091,0.004286955,-0.0020878029,-0.018401967,0.019210717,-0.00007540815,-0.005268589,-0.03610068,0.0038591388,-0.03413155,-0.019093508,-0.029958872,0.016292188,0.02052347,0.023770185,0.008808331,-0.011627231,0.010970855,0.009499869,-0.0067044115,0.024825076,0.029419707,-0.025528336,0.020371096,0.029208729,0.00010860238,0.0483374,-0.014627807,-0.025739314,-0.0064231073,-0.021179846,0.0017098007,0.012025745,-0.00007888782,-0.019034902,-0.008931401,-0.00938852,-0.011234578,-0.009874942,-0.008192978,-0.012248443,-0.02827105,-0.05551065,-0.013256449,-0.027685,-0.0138542205,0.028528912,0.0038591388,0.011099786,0.018859087,-0.017991733,-0.00030566167,0.0002633562,-0.012588353,-0.040906288,-0.019058345,0.016479725,-0.024239026,-0.004916959,0.010449271,-0.007571765,-0.034459736,-0.029982315,0.010941552,-0.004117001,0.013701848,-0.008761447,-0.016796192,0.0021845012,-0.009839779,-0.040273353,-0.05269761,-0.00072010886,-0.015647534,0.025622103,0.006141803,0.010250013,0.025856523,-0.0017947779,-0.020793052,-0.027989745,0.0068040397,0.0029478313,0.0052597984,-0.033264194,-0.014522318,-0.01619842,-0.016772749,0.041117262,0.003495788,0.036780495,-0.00077505107,-0.010537178,0.03743687,0.012869657,0.0029053425,-0.000827063,0.008726284,-0.0113166245,0.010308619,-0.0059865,0.023781907,-0.016280467,0.00281597,0.018226152,-0.029888548,0.007888232,0.015588928,-0.0028189002,-0.0020467795,-0.011527603,0.013631522,0.008632516,0.022457434,0.007794464,-0.07037288,-0.018753598,0.0031793208,-0.0027676208,-0.004002721,0.007571765,-0.012635237,-0.0114572765,-0.026676994,-0.004295746,0.003003506,-0.012131234,-0.018566063,0.013654964,-0.0037770919,0.015342788,0.0051220767,-0.005652452,0.0067688767,-0.0016761029,-0.02407493,-0.0059044533,0.010167967,-0.01395971,-0.012564911,-0.012131234,0.005034169,0.044164725,0.017651824,0.032490607,-0.038304225,0.018167548,-0.016362514,0.018964576,-0.015975721,0.022351945,-0.008673539,-0.007466276,-0.0069681336,0.037858825,-0.0062707346,0.0032349958,-0.0037419288,-0.0023075717,-0.011222856,0.0072728796,0.020277329,-0.024731308,0.016643818,-0.015530324,0.009224426,0.01548344,-0.020207003,0.015881954,-0.019433416,0.04132824,-0.009904244,-0.011685836,0.04763414,0.022234734,0.033053216,-0.005857569,0.0030709016,-0.02135566,-0.026911413,0.012646957,-0.010314479,0.019081786,-0.023043483,-0.0015149391,-0.03321731,0.025997175,0.015811628,-0.018097222,-0.019281043,0.036124118,-0.0085270265,-0.00527738,0.0029712731,0.033756476,-0.021578358,-0.009804616,0.021449428,-0.031857673,0.0065403176,-0.01548344,-0.003967558,-0.0013237403,-0.00071314955,0.0012292397,0.0042752344,0.0056055677,0.016866518,-0.011474858,0.025973734,0.047938887,0.0015808697,0.0019749883,0.0032760191,0.022117525,-0.03438941,0.045243055,0.013385381,0.01714782,0.027497463,0.03600691,0.006382084,-0.008855214,-0.008187118,-0.02829449,-0.01912867,-0.006546178,0.0089196805,-0.020207003,0.009253728,-0.014487155,-0.015553765,-0.043344256,-0.01785108,-0.0016438701,-0.030310502,0.031412277,0.030076083,0.01688996,0.004386584,-0.0021185705,-0.038187016,0.032490607,0.031834234,0.018929413,-0.042289365,0.026184712,-0.0047206325,0.0060831984,-0.030568365,0.04343802,-0.021578358,-0.012834494,-0.019187275,-0.010525457,0.03295945,0.009019309,0.03122474,0.03239684,0.014545759,0.033990897,0.027567789,-0.030732458,-0.0058282665,-0.0050605414,-0.05527623,0.0123890955,0.0015999164,-0.013268171,0.01349087,-0.0013120193,0.00014559679,0.020582074,0.01656177,-0.021683848,0.014405107,0.022621527,0.009031029,-0.031740464,0.013221286,0.021918267]},{"id":"interface-APIMessageAttachment","type":"interface","source":"main","text":"Interface: APIMessageAttachment\nProperties: content_hash: string | null, content_type: string | null, description: string | null, duration: number | null, expired: boolean | null, expires_at: string | null, filename: string, flags: number | null, height: number | null, id: string, nsfw: boolean | null, placeholder: string | null, proxy_url: string | null, size: number, title: string | null, url: string | null, waveform: string | null, width: number | null","meta":{"url":"/docs/typedefs/APIMessageAttachment"},"embedding":[0.0065785996,0.019956311,0.03253773,0.037094973,-0.0014218412,-0.077816136,-0.002803868,-0.023790766,0.033027757,-0.006952245,0.00573943,-0.036923464,0.016685387,-0.00086213957,-0.014443518,-0.014786536,-0.010106787,0.04160321,0.004058028,0.01633012,0.021585647,0.017971706,-0.021916416,0.030136602,0.012109769,-0.025432352,-0.033248268,-0.0049278247,0.039790116,-0.0013873862,0.0093778735,-0.037560496,0.030136602,0.027661972,0.007276887,0.05566696,-0.010296673,0.023741763,-0.036604945,-0.056107983,0.009383999,0.015264312,0.0048726965,-0.0029187177,-0.06061622,0.028348008,0.02406028,0.053461842,-0.013990244,0.05811709,0.004875759,0.059538167,0.008771466,0.05890113,-0.027710974,-0.0017089659,0.00043642946,0.013561471,-0.045425415,0.0017503118,-0.006088574,-0.00592319,-0.04797355,0.002554261,-0.03613942,0.0016017726,-0.0062355814,0.032954253,0.016648635,0.038810063,0.07340591,0.047018,-0.005203464,0.017236667,-0.014455768,-0.024807569,-0.040696666,-0.04397984,-0.0068542394,-0.027441459,-0.026216393,0.05360885,-0.051746752,-0.023239486,-0.035257373,0.053951867,-0.06340937,-0.03258673,-0.046576977,0.050325677,-0.07129879,0.038222034,-0.05473591,-0.035281874,-0.025530357,-0.04101518,-0.043881834,0.015619581,-0.03966761,0.018118713,0.045033395,0.0024501302,-0.06840764,0.018853752,-0.0019432596,-0.033958804,-0.031827193,0.016293366,-0.04341631,0.028274503,-0.017934954,-0.02180616,-0.041333698,0.032072205,-0.0030090662,-0.043881834,-0.014700782,0.034546837,0.0394961,-0.02557936,-0.046405468,-0.0089797275,0.03871206,-0.012079142,0.02616739,-0.016795643,0.026608415,0.008348819,-0.07198483,-0.013169451,0.009855649,0.04023114,0.014811037,-0.040574156,0.014075998,0.019245774,0.0059446287,0.013745231,-0.042852778,-0.023717262,0.07673808,-0.00030837188,0.005123835,0.01280193,0.0065602236,0.05015417,-0.026730921,0.05414788,-0.0029125924,-0.0008981259,-0.024354296,0.013806484,-0.035159368,0.021340635,-0.0064193415,-0.013757481,0.012997941,-0.01766544,-0.017346922,-0.023435496,-0.011582991,-0.062282313,-0.015325565,-0.026877929,-0.0033964931,-0.0013789639,0.03856505,-0.008379445,-0.030259108,0.016624134,-0.013818734,-0.039079577,-0.031655684,-0.024354296,-0.009249242,0.023815267,0.07869819,-0.03633543,-0.015460322,-0.010014907,0.064242415,0.04155421,-0.019858306,-0.06973071,-0.014370014,-0.00826919,0.002537416,0.039594106,-0.008330443,-0.02898504,0.009102234,0.0048359446,0.014039246,0.017420426,0.050472684,-0.027637469,-0.008942976,0.015350066,-0.030063098,-0.019233523,0.007748537,0.016146358,0.07306288,0.009016479,-0.033836298,-0.01731017,0.0076872837,0.032219213,-0.024146033,-0.006658229,0.045253906,-0.017800197,0.016967151,-0.0070686257,-0.018130964,-0.031092154,0.012244526,-0.010774448,-0.03817303,0.0075831534,-0.0620373,0.023239486,0.06448743,-0.015754338,-0.024378797,0.03290525,-0.06943669,0.024746316,-0.050913706,-0.03346878,-0.037903514,0.022124676,-0.03160668,-0.04077017,-0.049370125,-0.01711416,0.0019340715,-0.014921294,0.014823288,-0.0207036,0.027049439,-0.014014745,-0.0022296186,0.049321122,0.005231028,-0.006505096,0.0022985286,-0.010694819,0.018081961,0.010400803,0.04250976,-0.02954857,-0.010621315,0.0045021144,0.02878903,-0.026191892,-0.04228925,0.03332177,0.038418043,0.013046944,0.05101171,-0.010327299,-0.053951867,-0.005099334,0.011852506,0.030822638,0.02500358,0.024905574,-0.017885951,0.01804521,-0.0049370127,0.01840048,0.06664354,0.039618608,-0.0098372735,0.06061622,-0.03682546,-0.011356354,0.00029956672,0.006057947,-0.021744907,-0.05694103,-0.04209324,0.01750618,-0.018878253,-0.0015328628,0.04471488,0.02500358,0.029426064,-0.007932297,-0.005013579,0.008612208,0.054588903,-0.063458376,-0.0062539577,0.035649396,-0.013708479,-0.0046215584,0.017812448,-0.018155465,0.018866003,-0.02594688,0.05115872,-0.05115872,0.025873376,0.015754338,0.032243714,0.0021055806,0.017530682,-0.034448832,0.025677366,-0.018951757,-0.08982178,-0.03783001,-0.06796661,0.016121857,0.03851605,-0.017138662,-0.029107548,0.010100662,0.015252061,-0.022051172,0.010400803,-0.05512793,0.005910939,-0.015362317,0.023239486,-0.0065785996,0.011674871,0.031288162,0.027955987,-0.030136602,0.03611492,-0.045278408,0.06600651,-0.017542932,-0.008495826,0.029254556,-0.0008774529,0.051844757,0.027490461,-0.054098878,-0.01176675,0.028691025,-0.003733386,-0.035453387,-0.07198483,-0.009285994,-0.010529435,-0.026461408,-0.014137251,-0.02856852,-0.012066891,0.02499133,-0.012238401,-0.043342806,0.046968997,-0.051991764,-0.046944495,0.023484498,-0.055519953,0.0153378155,0.018559737,0.014615027,-0.0133042075,0.0012151115,-0.04248526,-0.020029815,-0.0077546625,-0.03437533,0.011380855,0.013598223,-0.019527538,0.003506749,-0.053706855,0.018155465,-0.014921294,-0.007760788,0.002979971,-0.020532092,0.04023114,0.037388988,0.00549748,0.034840852,0.016097356,-0.045008894,-0.026755422,0.028078493,-0.040892676,0.02876453,0.05699003,0.0055464823,-0.04397984,-0.0065908507,-0.014737533,0.033199266,-0.010112912,0.0029585324,0.0034608091,-0.04077017,0.010817325,0.00864896,-0.005987506,0.03648244,-0.01840048,-0.0063458374,0.005368848,0.00097469246,0.06321336,0.0016829332,0.013769732,-0.004581744,0.03219471,0.008330443,0.03417932,-0.0007782992,0.0120485155,0.0017533745,0.042534262,0.01203014,0.017591935,0.027563965,-0.014700782,0.020213574,0.0044653625,-0.00456643,0.020752603,-0.049517132,-0.0004823694,-0.05233478,-0.023055727,0.045229405,0.044347357,-0.0058803125,0.03893257,-0.037879013,-0.0017258105,0.032513227,-0.046356466,0.00639484,0.0011017929,-0.022982221,-0.006848114,-0.010590688,-0.027857982,0.0070502497,0.0050625815,0.016036103,0.025775371,-0.02462381,-0.035796404,-0.017322421,-0.031508677,0.014578275,0.017261168,0.002157646,-0.030994149,0.0037119475,0.015729837,-0.024599308,-0.014884542,-0.007877169,0.027931485,0.024489053,-0.008673461,-0.020458588,-0.028299004,0.012458912,0.005886438,-0.008906224,0.012103643,-0.00695837,0.030528624,0.029818086,0.016317867,-0.04268127,0.07041674,-0.031508677,0.02726995,0.009941404,-0.011215472,-0.013573722,-0.018179966,-0.024954576,-0.049933653,0.11731224,0.035820905,0.008018051,0.04473938,-0.009463628,-0.04812056,-0.0013108196,0.0021316134,-0.0129856905,-0.029867088,-0.0118892575,0.011999513,-0.054686908,-0.004912511,-0.010596814,0.07061275,-0.025358848,0.01729792,-0.038859066,0.060959242,-0.018155465,-0.024023527,-0.014039246,0.004857383,-0.0030519436,0.025162838,-0.0048298193,0.0074790227,0.0019019137,-0.034130316,0.0111113405,-0.0078832945,0.046282962,0.0021943978,0.0025006642,-0.028151996,-0.008844971,0.059636172,-0.003298488,-0.005711866,-0.022222681,-0.03239072,-0.042754773,-0.014051497,-0.020715851,0.033003256,0.015570578,0.006076323,0.0143210115,-0.04194623,0.01335321,-0.01786145,-0.039814617,0.026216393,-0.0021898039,-0.021659153,-0.026363403,0.0014700781,0.010547811,-0.009818897,0.025015831,-0.027588466,0.030528624,0.0069706207,0.013193952,-0.019882808,-0.012997941,0.034473334,0.02163465,-0.001848317,0.0011079183,-0.0097760195,-0.016489377,-0.0021178313,0.016807893,0.00028731607,-0.033223767,-0.0137819825,-0.0038344539,-0.019135518,0.037339985,0.0095187565,0.016771141,0.003687446,-0.0032096708,0.0319742,0.008171185,-0.016036103,0.026216393,0.008140557,0.027490461,-0.026240895,0.008563206,0.012765178,-0.0117545,0.0019386656,0.0065540983,-0.0056904275,0.027171945,0.006088574,0.024513554,0.009806646,0.0059538167,-0.0056352997,0.027122943,0.020262577,-0.016771141,0.027367955,-0.003917146,-0.011325727,-0.013671727,0.010229294,0.0075157746,-0.017395925,-0.014651779,0.0282255,0.021022119,-0.008495826,-0.007411644,0.0319497,0.048047055,0.01071932,-0.038883567,-0.02050759,-0.00408253,-0.011705497,0.018228969,-0.03366479,-0.022712708,-0.012691675,0.026485909,-0.004443924,-0.0017671564,0.0015320971,-0.01842498,0.0117545,0.0015382224,0.003469997,0.03912858,-0.026289897,0.024550306,-0.014994797,-0.0508157,-0.007711785,0.0049553886,0.018351477,-0.006915493,0.0006033446,0.018657742,0.0013391493,0.015680835,0.001607898,0.020740353,-0.0050350176,0.0085815815,-0.0044745505,0.039202083,0.052628797,-0.029107548,0.06360538,0.0020688288,-0.019319277,0.019307027,-0.015729837,-0.009690265,-0.009635137,-0.032488726,0.01786145,-0.0066704797,-0.004058028,-0.042338252,-0.005031955,0.046797488,-0.012838683,0.0031576054,-0.0046981247,0.019025262,0.001940197,0.022847464,0.002920249,-0.009114484,-0.024207287,-0.029671079,-0.0016737452,-0.013071445,-0.003224984,0.02837251,0.03420382,0.009880151,0.02481982,-0.049762145,0.01297344,-0.019221272,-0.007313639,0.028102994,0.0008927662,-0.0026767673,-0.048047055,-0.029303558,0.018020708,-0.007013498,0.030014096,0.03307676,0.008238563,0.010021033,-0.0027732411,-0.002045859,-0.0023245611,-0.022602452,0.02575087,0.056549005,0.03496336,0.03288075,0.0045541795,0.0038099526,0.0018100337,-0.009794395,-0.04101518,0.028740028,0.0023873458,0.0048910724,0.015350066,0.0153378155,0.03371379,0.0042509763,-0.023643756,-0.009763769,-0.022283934,0.03721748,0.008722464,0.011864756,0.01484779,0.031435173,0.0020642348,0.015031549,0.067280576,-0.0028620583,-0.027980488,0.024011277,-0.016391372,0.0037364487,0.02386427,0.016967151,0.0089797275,0.0029998783,-0.017885951,0.014945795,0.0024485989,0.029573072,-0.0076872837,0.032733742,0.022308435,0.013218453,-0.0022388066,0.039741114,0.031508677,0.013193952,0.02031158,-0.009818897,0.0037395114,-0.029622074,-0.021916416,-0.0040274016,0.0022770897,-0.0112522235,-0.012403784,0.007760788,0.0018636304,0.03141067,0.00038111012,-0.0062845843,0.012397659,0.014627278,-0.01825347,0.0070625003,0.02236969,0.030259108,-0.019784803,0.014125001,-0.00022969971,0.00078059616,-0.009114484,0.0027364893,0.03555139,-0.014517022,-0.008354944,0.012379283,-0.015595079,0.010272171,0.004214224,-0.037781008,-0.004832882,-0.025897877,-0.028960539,0.025554858,0.023558002,-0.042534262,-0.019294776,-0.009849524,0.0016660886,0.0060273204,-0.065467484,-0.013218453,-0.011723873,-0.01935603,-0.044102345,0.044322856,0.02312923,-0.054686908,0.021377387,0.00027563964,-0.0082814405,-0.07580703,0.0141617535,0.050521687,-0.010419179,-0.019307027,-0.014174004,-0.032268215,-0.00027123708,0.030381616,-0.03329727,0.02935256,0.005442352,0.020262577,-0.024317542,0.029818086,-0.00272577,0.0073687667,-0.007938422,0.01033955,-0.0021790846,0.004903323,0.02238194,0.01580334,0.062380318,0.014921294,0.0030458183,-0.0055342317,0.028960539,0.034056813,-0.020568844,0.015031549,0.014345513,0.0005218012,0.023631506,0.018155465,0.0070808767,-0.017763445,0.0012595201,-0.025236342,-0.03126366,0.034252822,-0.022810712,-0.005286156,0.026804425,0.0016461813,0.030577626,0.028519517,0.0014363888,-0.012777429,0.0031239162,-0.009371748,-0.023925522,0.009016479,0.0005627643,-0.0006569412,-0.006952245,-0.060812235,-0.012342531,-0.023251737,-0.016268864,-0.00093487784,0.0060916366,0.02616739,0.0046919994,0.03349328,-0.00031889978,-0.0083610695,-0.001067338,0.009390124,0.0034118064,-0.03523287,-0.00258795,0.03307676,0.022136927,0.017236667,0.018817,-0.0141617535,0.0064193415,0.011944385,-0.0117299985,0.025456853,-0.0059660673,0.04552342,0.012887686,-0.01542357,0.0028406198,0.001307757,0.012850934,0.02146314,0.017885951,0.029426064,-0.0030641942,0.017065158,-0.0138432365,-0.021022119,-0.0073258895,0.023790766,-0.021732656,0.046993498,-0.034840852,0.044886388,-0.029205553,-0.043195795,-0.06879966,-0.027857982,-0.023582503,-0.013438964,0.026118388,0.013953492,0.037952516,-0.011748374,-0.019049764,-0.00137437,0.029720081,0.001852911,-0.03535538,0.02429304,0.02481982,-0.00968414,-0.023962274,-0.01542357,0.030259108,0.013022442,-0.009488129,-0.0060610096,-0.0026691107,0.025726369,-0.021744907,-0.002212774,-0.041333698,-0.007209508,0.016281115,0.001580334,-0.002787023,-0.004799193,0.00064239354,0.031165658,-0.0027793664,-0.06796661,-0.020336082,0.0008008863,0.0043642945,0.02200217,-0.006701106,-0.016709888,0.0137819825,-0.029720081,0.039251085,0.009604511,-0.06610452,-0.0042509763,-0.044886388,-0.0066276025,-0.023288488,-0.022847464,0.017653188,-0.044322856,-0.010511059,0.020397335,0.0602242,-0.004241788,0.026828926,0.00059147674,-0.009236991,0.00761378,-0.043955337,-0.024587058,-0.006596976,0.015729837,0.035575893,0.045180403,-0.0011806565,0.012201649,-0.041897226,-0.0319497,0.04814506,0.027661972,-0.03268474,0.020740353,-0.012471163,-0.022394191,-0.025897877,0.008238563,-0.009757644,0.06664354,0.0006132982,-0.00012920609,-0.008636709,0.006676605,-0.0046644355,0.017224416,0.036261927,0.025285345,0.010137414,-0.015031549,0.0073993932,-0.0413582,0.028250001,-0.025554858,0.0022234933,0.011907633,0.03555139,0.024562556,-0.010302798,0.008471325,0.014382265,-0.0030672569,0.0053810985,0.007332015,0.022737209,0.022602452,0.010780573,-0.022847464,-0.010259921,-0.013953492,0.016060604,-0.05321683,-0.001944791,-0.021757158,-0.0072401348,-0.0023245611,-0.004676686,0.0031729187,0.045082398,-0.030749135,0.027490461,0.0050840206,-0.0027962113,-0.003733386,0.0031484175,0.0024914762,0.025554858,-0.017444927,-0.034669343,0.06791761,-0.02538335,-0.010468181,0.001658432,0.013451215,0.0022112427,0.013206203,0.0015726774,-0.0050013284,0.019552039,-0.00024424735,-0.049909152,0.032635733,0.03158218,-0.005770057,-0.02310473,-0.0058343727,0.004471488,0.0002212774,0.012440536,-0.0033842425,-0.014125001,0.011154218,-0.0005662098,-0.01563183,0.03417932,0.025113836,0.026387904,-0.0018222844,-0.0099169025,0.013132698,-0.009629012,-0.02557936,0.01579109,0.02518734,0.009083858,-0.013132698,-0.005178963,-0.008869472,-0.003488373,0.010749946,0.004425548,0.008949101,0.021916416,0.011160343,0.0020627035,-0.05694103,-0.012520166,-0.015374567,-0.021144625,-0.004143783,0.047189508,-0.033762794,-0.022320686,0.0022479945,0.032758243,0.011166469,0.046601478,0.030381616,-0.048414573,0.020985365,0.0051759,-0.016905898,-0.008655085,0.04772854,0.006737858,-0.027122943,-0.0068971165,0.011246098,0.010168041,-0.0023352804,-0.0023551877,0.015141805,-0.02387652,0.021965418,-0.00042341315,-0.019503037,-0.016207611,0.0033750546,-0.015068301,0.015154055,-0.00073121075,-0.016060604,-0.026877929,-0.010321174,0.0005160587,-0.004333668,0.0052340906,0.0025649802,0.0066521037,0.012899936,0.001653838,0.045204904,-0.00733814,0.013696228,0.007129879,0.028323507,-0.02388877,-0.01916002,0.006296835,-0.034252822,0.0008514203,-0.05542195,-0.0026859553,-0.0010504933,-0.00303663,-0.018902754,0.021548895,-0.018694494,0.020532092,-0.013157199,-0.026240895,0.013855487,0.0006152124,-0.018951757,-0.034056813,0.033762794,-0.0017472492,0.012556918,-0.008018051,-0.014688531,0.030063098,0.03442433,0.038246535,-0.03138617,0.02366826,0.017199915,-0.026363403,0.034301825,0.00771791,0.021071121,0.0014915168,-0.00019715892,0.01542357,0.016048353,0.006431592,0.020274827,0.011442108,0.011699372,0.008520328,-0.0068358635,-0.019074265,0.011564615,-0.005374973,-0.023043476,0.030014096,-0.004263227,0.029426064,-0.020862859,0.016599633,-0.00997203,-0.0012419098,-0.024146033,-0.026583914,0.017065158,-0.037315484,0.025775371,-0.0027732411,-0.017640937,0.014419016,-0.02295772,-0.01805746,-0.020078817,-0.017885951,0.0074055186,-0.042191245,0.00074269576,0.053069822,-0.0017043719,-0.017934954,0.006676605,0.0077546625,-0.0009716298,0.028666524,-0.026730921,0.0070686257,-0.008955226,0.03270924,-0.010253795,-0.020372834,0.03214571,0.0339098,0.033542283,-0.009659639,-0.008679586,0.04998266,-0.0053474093,-0.0030764448,0.033836298,0.007423895,-0.0026874866,0.027857982,-0.013512469,-0.025481354,0.000806246,0.0301121,-0.00522184,-0.027612967,-0.009022605,0.056205988,-0.034644842,0.01297344,0.02935256,-0.044469863,-0.007411644,-0.00218521,-0.0044929264,0.008520328,0.01729792,0.011564615,-0.0042080986,0.052236777,0.011013336,-0.014100499,-0.008410072,-0.01391674,0.00056812394,0.020385085,0.000112265734,-0.010707069,-0.030430619,0.0027043312,-0.0048635085,0.027735475,-0.0052922815,-0.006615352,-0.007785289,-0.03680096,0.011080714,-0.01824122,0.020091068,-0.029426064,0.0033383025,-0.049590636,-0.025077084,-0.029254556,-0.00054821663,-0.018167716,0.007975174,-0.014443518,-0.01711416,0.004443924,0.0338853,0.005004391,0.018375978,0.046576977,0.0062845843,0.0016201487,0.01750618,0.0013460403,0.012250652,-0.009739268,-0.016562881,-0.0020550468,-0.038222034,-0.009586135,-0.01938053,-0.013659476,-0.02913205,0.0014088249,0.017591935,0.0013866206,-0.010762197,-0.00630296,0.008109931,-0.0038283286,-0.03501236,-0.008146683,-0.032268215,-0.020213574,0.0583131,0.022479946,0.016072854,0.009347247,-0.03400781,0.008685712,-0.008538704,-0.0066704797,-0.03236622,-0.024195036,0.026265396,-0.027220948,-0.010786698,-0.0118892575,0.030700132,-0.038785562,-0.0071605057,-0.016146358,-0.0024700377,-0.012275153,-0.0151173035,-0.022920968,0.0007285309,-0.00038532127,-0.05120772,-0.0488556,-0.020973114,-0.03349328,0.034889854,0.01259367,-0.010217044,0.028323507,-0.03422832,-0.00995978,-0.035796404,0.0057853702,0.0037854512,0.0061804536,-0.02428079,0.007356516,0.0076872837,-0.017322421,0.003169856,0.02616739,0.02837251,-0.00029899247,0.0028911538,0.025652863,0.018118713,-0.004912511,0.032782745,-0.011668745,0.015754338,-0.010498809,0.02218593,0.0071727564,-0.007907796,-0.01731017,-0.016611883,-0.02859302,0.0035312502,0.043661322,0.0075525264,-0.0031285102,-0.013892239,-0.0069216182,-0.035281874,0.00931662,0.040868174,-0.021328384,-0.0061375764,-0.008728589,0.021904165,0.0092186155,-0.016477127,0.02277396,-0.011687121,-0.039324593,0.01729792,0.0020182948,0.0057669943,-0.024538055,0.007632156,0.00931662,0.0008353413,0.017898202,-0.021610148,0.00019735034,-0.0051759,-0.040500652,0.00067072315,-0.007442271,0.015815591,-0.0021132373,-0.003215796,0.0031177907,0.028299004,-0.00081773096,0.034742847,-0.026289897,0.022418693,0.0029738457,0.017653188,-0.010774448,-0.003926334,-0.00018730098,-0.029573072,0.010645816,0.042044237,0.0153378155,-0.029475067,-0.016440375,-0.006768485,0.011472735,-0.008146683,0.013487967,-0.033419777,-0.014590526,-0.030161103,0.022259433,-0.0069216182,-0.02444005,0.0072401348,-0.04160321,0.01280193,-0.012936688,0.007037999,0.029450566,0.017016156,0.024599308,0.009469753,0.0025940754,-0.018841501,-0.029303558,0.017126411,0.000047782327,0.023999026,-0.026951432,-0.010786698,-0.02444005,0.02088736,0.011668745,-0.02651041,0.015092802,-0.0015359254,-0.02104662,-0.00035814013,-0.0028926851,0.0062417067,0.0016829332,-0.017077409,0.024342045,-0.023190483,0.0150438,-0.011497237,0.001268708,-0.008275315,0.017395925,-0.021144625,0.020213574,0.008887848,0.03591891,-0.036555942,-0.004281603,0.035036862,-0.0009096109,-0.01183413,-0.004067216,-0.00013906404,-0.014615027,0.038295537,-0.008195686,0.012122019,0.041897226,0.026338901,0.022626953,-0.038001522,0.001802377,-0.012654923,-0.030161103,-0.009843399,0.008973602,-0.01411275,0.0394471,-0.014811037,-0.00040235734,0.00035641738,-0.016109606,0.015509325,-0.042975284,0.04963964,0.015239811,0.0216469,0.002837557,0.0021147686,-0.018192217,0.02651041,0.029940592,0.009757644,-0.020458588,0.019760301,-0.0137819825,-0.015913596,-0.010866328,0.018866003,-0.03702147,-0.0063642133,-0.0035955661,-0.034130316,0.0059721926,0.01335321,0.016795643,0.007803665,0.015129554,0.010266046,0.02032383,-0.020777104,0.009273743,-0.016562881,-0.03307676,0.020948613,-0.01841273,-0.029181052,-0.0036078168,-0.0029079984,-0.009825022,0.026240895,-0.006315211,-0.022320686,0.026044885,0.023080228,-0.011950511,-0.028078493,0.0041989107,0.017775696]},{"id":"interface-APIMessageCall","type":"interface","source":"main","text":"Interface: APIMessageCall\nDescription: Call metadata for call-type messages\nProperties: ended_timestamp: string | null, participants: string[]","meta":{"url":"/docs/typedefs/APIMessageCall"},"embedding":[0.015385768,0.009271338,0.041671176,-0.032588143,-0.04058564,-0.038769037,0.01696976,-0.030372769,0.040895794,0.0033230602,-0.0025075257,-0.045415156,0.030372769,-0.018254677,0.011763633,-0.007332886,-0.058042783,0.046256997,0.031347536,0.041205946,0.0323223,0.012461475,-0.011730402,0.03464844,-0.047541913,-0.04147179,-0.053257577,0.046256997,0.0029298314,0.0005614587,0.052770194,-0.021345124,0.019018982,0.016426994,0.0019370671,0.02263004,0.009587028,-0.026717404,-0.0347149,-0.046212688,0.008988878,0.04514931,-0.050421897,-0.0012530705,-0.083696805,-0.0097144125,0.011060252,0.081835896,-0.00066876586,0.0071722716,-0.0041372096,-0.008800571,0.025742639,0.05861878,-0.012882397,-0.022430656,0.019606054,-0.0258091,-0.011763633,-0.02174389,-0.014510696,0.0130042415,0.0052919732,-0.0350029,-0.026008483,0.040851485,-0.018276831,0.05671356,0.032300144,0.02527741,0.028755547,0.038370267,-0.066992894,0.017645448,-0.019849746,-0.022364195,-0.04727607,-0.011265174,0.020326052,0.017224528,0.032078605,0.041427482,-0.033075526,0.019628208,0.021843582,0.016836839,-0.049092676,-0.054985568,-0.03008477,0.045105003,-0.061321534,0.012472552,-0.017700834,-0.00016883569,0.058397245,-0.038547497,-0.015341461,-0.036465045,-0.0027553707,0.0059593543,0.019417748,0.0070282724,-0.033673678,-0.0012800704,-0.0064356597,-0.038082268,0.0063082757,0.0039682877,-0.032676756,0.0043725935,-0.02817955,-0.0023690648,-0.014189467,0.036753044,-0.034072444,-0.03198999,0.014521773,0.011099021,0.05618187,-0.025654024,-0.060789846,0.020248514,-0.018575907,0.009537183,-0.00427844,-0.031236766,-0.020558665,-0.0047187456,-0.0019952208,0.016449148,-0.0080030365,-0.0032621373,-0.015551921,-0.012239938,0.0013347624,-0.000020282348,-0.012827012,0.01456608,-0.05374496,-0.062960915,0.034449056,0.0340946,0.009005493,0.013292241,0.040275488,-0.00037038274,0.018498369,0.050599128,-0.005776586,0.0029852157,-0.0046273614,0.0049928976,-0.01919621,-0.003910134,0.019617131,-0.009780874,0.009548259,0.019384518,-0.023704495,-0.007886729,0.016814684,-0.058220014,-0.0054608956,0.012118093,-0.03280968,0.026916787,0.02984108,0.008257804,-0.032676756,0.025654024,-0.004480593,-0.065663666,-0.08139282,-0.00049015135,-0.020392513,0.007449193,0.009891642,-0.041804098,-0.02782509,-0.009587028,0.03719612,0.00671812,-0.04514931,-0.07226548,-0.058175705,-0.016892223,-0.006950734,0.05857447,0.048693907,-0.02930939,0.006657197,0.02948662,0.0052947425,0.0394558,0.0012779935,0.013259009,0.017124837,0.01799991,-0.029331544,-0.008684264,0.0054387418,-0.051529586,0.050864972,0.022607885,-0.0043393625,-0.0027235246,-0.0030406,-0.047541913,-0.036775198,-0.026008483,0.06787904,-0.05214989,0.010783331,0.015463307,-0.025210949,-0.004306132,-0.028622625,-0.011193174,-0.06282799,-0.018431908,0.010700254,-0.026185714,0.050466206,0.002715217,-0.018708829,0.024989411,-0.049535748,0.016150072,-0.06553075,0.017091606,-0.018963596,0.0028661394,0.0077704224,-0.018409753,0.0033424445,-0.005557818,-0.029907541,0.008761802,0.0041067484,-0.02492295,0.02598633,0.012572244,0.010827637,0.03405029,-0.040940102,0.017457142,0.039633032,-0.057511095,0.0030433692,0.031591225,0.023350036,0.019185133,-0.0020686048,0.03779427,0.008440573,-0.015407922,0.022220196,0.035290897,0.027802937,0.00028072935,0.023704495,-0.0051590507,-0.0563591,0.015474384,-0.018188216,-0.027160479,0.052371427,0.009587028,-0.020414665,0.006219661,-0.06247353,0.012029477,0.056403406,0.05826432,-0.001750145,0.05144097,0.008789494,-0.0009962257,0.019628208,-0.014244851,0.003602751,0.0030987535,-0.011830094,0.024900798,-0.028378934,0.013657777,0.018431908,0.017268836,0.044529006,0.01672607,0.023438651,0.008263343,0.027514938,-0.06597382,-0.008047344,0.020735895,0.020713741,-0.01198517,0.0033479831,0.010556255,-0.016238688,-0.0077981143,-0.003203984,-0.05790986,0.0152639225,0.0059316624,0.024524184,-0.014510696,0.015917458,-0.04277886,0.015075616,0.008302112,-0.026850326,-0.04342132,-0.034382597,-0.00735504,0.020746972,-0.01767868,-0.0350029,0.0030876766,-0.018830674,-0.009775335,-0.0009886104,0.029686004,-0.0056768944,0.006491044,-0.005787663,-0.013314394,-0.00031482533,0.01569592,0.0038436728,-0.017734064,0.04816222,0.00069680414,0.07363901,0.048428062,-0.042446554,-0.0018096832,-0.011071329,0.046079766,0.056447715,-0.06947411,-0.02372665,0.005915047,0.028977085,-0.036819506,-0.038060114,0.008241189,-0.009924873,0.028201703,-0.0019772209,-0.026916787,0.028600471,0.0129377805,0.02372665,-0.0272934,0.03108169,-0.042468708,0.008185805,0.03125892,-0.045991153,0.0026722942,-0.001417839,-0.03143615,-0.02237527,-0.018265754,-0.07031595,-0.0133919325,-0.012660859,-0.06145446,0.0029132161,-0.034581978,-0.0076818075,0.0073051937,-0.03493644,0.0474533,-0.028644778,-0.024391262,0.023593727,0.02054759,0.05356773,-0.02008236,-0.0013707622,-0.009974719,0.02216481,0.0533905,-0.026518019,0.019140827,-0.003167984,0.0018013755,0.04413024,0.0090996465,0.000102201404,-0.023172805,0.0064965826,0.024014648,0.008119344,0.0005867278,-0.0024521414,-0.021101432,0.01693653,0.025521101,0.01163071,0.015673768,-0.023549419,0.010462101,0.01856483,0.03345214,0.066461205,0.006939657,0.05534003,-0.028755547,0.038037963,0.013547009,0.039367184,-0.01626084,-0.029686004,0.047497608,0.011752556,0.010833176,0.022541424,0.017036222,0.0014413773,0.017955601,-0.029508773,-0.017866986,0.04045272,-0.03185707,0.022973422,-0.043089014,-0.0060147387,0.064777516,0.08081682,-0.024058955,0.024701413,-0.04825083,0.020935278,0.01782268,-0.07341748,0.03910134,-0.012838089,-0.025587562,-0.0018622982,0.012417168,-0.005748894,-0.009775335,0.005183974,0.0055273566,0.043266244,0.00350029,-0.05547295,-0.008534726,-0.000951226,0.036642276,-0.04260163,-0.02064728,0.025366025,0.048605293,0.0065685823,-0.017578987,-0.034138903,-0.034781363,0.03910134,0.050820667,0.00061891996,-0.011730402,-0.042933937,0.010705792,-0.019030057,0.015972842,0.03061646,0.0073771933,0.0180996,0.004073518,0.0011741479,-0.011326097,0.049934518,-0.03227799,0.0046855146,-0.014311313,0.020381436,-0.06548644,0.014699003,0.058884624,-0.021843582,0.051706817,0.0025019874,-0.012251015,-0.012273169,0.018930366,-0.012959935,-0.005336281,-0.030505693,-0.009609182,-0.03167984,0.013037473,-0.028733393,-0.028489701,0.011940863,-0.02301773,-0.0005753048,-0.03801581,0.024391262,-0.0063913525,0.03125892,0.018476214,0.014599311,-0.017335298,-0.028578317,-0.013325471,0.017412836,0.058042783,-0.01771191,0.017069452,-0.037439812,-0.010445486,-0.009382106,0.0350029,0.0027138325,0.014521773,-0.02319496,0.025631871,0.02096851,-0.013358702,0.0033507522,-0.03779427,-0.010860868,-0.032388758,-0.0010744561,-0.0044224393,0.04563669,-0.023350036,-0.004751976,-0.016925452,0.0037993654,0.0048433603,0.014123006,0.013325471,0.02117897,0.0033562907,0.018874982,-0.00048149755,-0.025831254,-0.016836839,0.017158067,-0.0053972034,-0.0119740935,-0.016980838,0.0011353788,-0.004447362,0.0059759696,-0.022774039,0.044994235,0.019295903,0.018132832,-0.008080575,-0.0007947652,-0.007836884,0.040740717,0.020625126,0.0015424538,-0.05795417,-0.026495866,0.0020270667,0.008806109,0.0258091,0.005455357,0.020924201,0.013724239,0.024391262,-0.006175353,0.008540264,0.0057212017,0.030239847,-0.00039703646,-0.020669434,-0.015850997,0.022319887,-0.002753986,-0.029708158,0.025188796,0.01746822,0.0066904277,0.042025633,-0.014078698,-0.0042895167,-0.0006777658,0.014687926,0.011819017,0.002951985,0.035468128,-0.00367752,0.008739648,0.003976595,-0.0007788422,-0.010351332,0.0033424445,0.019650362,-0.024524184,0.016770376,0.012239938,0.058131397,-0.003935057,-0.015684843,0.03114815,0.0364872,-0.02966385,0.019705746,-0.022342041,-0.0008778417,-0.0011118405,0.017423911,0.011940863,-0.008850417,0.0065076593,-0.027714321,-0.00038769035,-0.014588234,-0.011237482,0.021300815,-0.00076015,0.009132877,-0.03274322,0.018110678,0.023903878,0.0060756616,-0.02711617,-0.041183792,-0.0029409083,-0.00015429729,0.04319978,0.0040042875,0.000042749783,0.020713741,-0.018022062,0.01732422,0.021190047,0.0050648972,-0.004995667,-0.0038270575,0.0014143775,-0.018132832,0.011951939,-0.017745141,0.02379311,-0.021577736,0.0022306042,0.0077316533,0.0055135107,0.011763633,-0.017634373,-0.07434793,0.021799274,-0.00052995887,0.0129377805,-0.046965916,-0.0031236764,0.027249092,0.015551921,0.007753807,-0.038303807,-0.00058776623,-0.001852606,0.029220775,0.007216579,0.012472552,-0.0088725705,-0.010340256,0.020104514,0.009897181,-0.00795319,0.026429405,-0.02022636,-0.00975872,0.05157389,-0.02591987,0.03190138,-0.00795319,0.001110456,0.005012282,-0.0025933716,-0.041316714,-0.01611684,-0.009803027,0.0044667465,0.009924873,0.041781943,-0.007510116,0.015219616,0.006280584,0.020414665,-0.023128498,-0.011708248,-0.0005171512,0.048915446,0.015673768,0.025122335,0.025255257,0.008075036,0.021610968,-0.014411004,-0.032898296,-0.03856965,-0.014111929,-0.03376229,0.052947424,0.022231271,-0.0067125815,0.030771537,0.016039303,-0.0317463,-0.0031458302,-0.019794362,0.04023118,0.0051950505,0.0075599616,-0.0080971895,0.009210415,-0.002765063,-0.002708294,0.022474963,0.029464466,0.0039267493,0.03571182,0.015673768,0.003256599,0.08569064,0.05689079,0.0033895213,0.013990083,-0.0058818166,0.0022153733,0.0144220805,0.015773458,0.02319496,0.027448477,-0.03227799,-0.013923622,0.0024272185,0.034604132,0.05183974,-0.010334717,0.03198999,-0.049491443,-0.005494126,0.02361588,-0.009448567,0.0013596854,-0.028932776,0.044927772,0.0062528914,0.0042729015,-0.016737146,-0.000368652,0.037816424,0.012417168,0.020071283,-0.0029713695,-0.024878643,0.012084862,0.020026976,0.02973031,0.011586403,0.0104897935,-0.006042431,-0.0012655321,-0.0020353743,-0.0011450711,0.044218853,0.037905037,-0.0682335,-0.0200159,-0.023903878,-0.0013631469,0.01583992,-0.008363035,-0.026185714,-0.0622963,0.018863905,0.029708158,0.03227799,0.007061503,-0.013270087,0.0061365846,0.024657106,0.002453526,-0.04109518,-0.045902535,-0.0013188395,0.0018152216,0.00090622617,0.02973031,0.0012738397,-0.008102728,-0.005200589,-0.014067621,0.03221153,-0.068676576,0.006873196,0.019417748,-0.0047242837,0.024169724,0.016836839,-0.01845406,-0.01750145,0.020569742,-0.011497788,0.04503854,-0.00017368181,0.043177627,-0.026429405,-0.008961186,0.025122335,0.005613202,-0.00781473,0.0027373708,-0.0045941304,0.010284871,0.005006744,-0.022319887,0.070493184,-0.043089014,-0.021444814,-0.0072996556,0.0323223,0.054320958,-0.0492256,0.014111929,0.016714992,-0.0064688902,0.0070338105,0.012815936,0.03311983,-0.0037522886,-0.027869398,-0.0350029,-0.01945098,0.018753136,-0.045282234,0.0032012146,0.02159989,0.0057544326,0.03564536,0.022818346,0.0071113487,-0.0021489123,0.018764213,-0.013768545,-0.024346953,0.0037384427,-0.0037744425,0.0003215753,0.03245522,-0.022220196,0.034382597,-0.0032122915,-0.024214031,0.026030637,0.03690812,0.005433203,0.008878109,-0.023305729,-0.029508773,-0.01272732,0.0038132116,0.029021392,0.0020090668,-0.029508773,0.04384224,0.018365446,0.023837417,0.022087272,0.016814684,-0.0026750634,-0.01940667,-0.028489701,-0.009791951,-0.012195631,-0.018653445,0.04222502,0.009193799,0.02188789,0.0072885784,-0.013668854,0.016858991,0.035512436,-0.018409753,0.020259589,-0.0061033536,-0.007753807,0.007886729,0.006812273,0.008241189,-0.007870114,0.0018747598,-0.0020132207,-0.017767295,0.025609717,-0.026961094,-0.041272406,-0.023859572,-0.011719326,-0.04432962,-0.020237437,0.04344347,0.013668854,0.04370932,-0.004353209,-0.032831833,0.0050095133,0.015474384,-0.022297733,-0.014078698,0.043221936,-0.017490374,-0.0030627537,-0.03274322,-0.036974583,0.005314127,0.010273795,0.009454106,-0.028223857,0.03376229,-0.00035515206,-0.011326097,-0.0153968455,-0.024058955,-0.0049042827,0.00012894165,-0.02616356,0.027869398,-0.017789448,0.014123006,0.005297512,-0.0030876766,-0.0028439856,-0.019473132,-0.012705167,0.027935859,0.027891552,0.01106579,-0.0022721423,-0.024546338,-0.056536328,0.020049129,-0.031790607,-0.020658357,0.0029796772,-0.006302737,-0.016836839,-0.012483629,-0.032853987,-0.015363615,-0.04342132,0.009060877,-0.011171021,0.04461762,-0.0023842957,0.045370847,0.0034310597,-0.0086178025,-0.011874402,-0.021555584,-0.019506363,-0.009819643,-0.0057156635,0.058308627,0.010733484,-0.015352538,0.0052061277,-0.06725874,-0.01640484,0.040497027,0.058042783,0.012749474,0.0079088835,-0.011409173,-0.038746882,0.0004977667,-0.01421162,0.02503372,0.019240517,-0.027891552,0.0126830125,-0.0032898295,0.0038409038,-0.0021973734,0.02616356,0.070493184,0.015241769,0.028135242,0.0026750634,0.003425521,-0.0031458302,0.03863611,-0.023593727,-0.027670015,-0.017689757,0.047719143,-0.017401759,-0.014765464,0.03369583,-0.014200544,0.0058873547,0.00805842,-0.0008778417,-0.0032621373,0.034205366,-0.00046730533,-0.008141497,-0.024745721,-0.03376229,-0.03103738,-0.010329179,-0.03642074,0.009293491,-0.011215328,-0.018952519,0.0003973826,0.01509777,0.05507418,0.018852828,0.03708535,0.0051673586,-0.0030350615,-0.0012468399,-0.0053999727,0.010916253,-0.03564536,-0.02895493,-0.05954924,0.048428062,0.025055874,0.000482536,-0.026385097,-0.0039682877,0.0093267225,0.026983248,0.01750145,-0.000036086356,0.00039045955,0.050864972,-0.04288963,0.026074946,0.066992894,0.0068288883,0.009077492,-0.0076430384,-0.008473803,0.0087784175,0.0144220805,0.011796864,-0.005314127,-0.010750099,-0.003461521,0.04129456,0.0101021025,0.014843002,0.01845406,-0.023416497,-0.022508195,-0.015275,0.008579033,-0.043753624,0.031657685,0.027337708,-0.016183304,-0.0010349947,-0.0065630437,0.012505783,-0.04348778,-0.012505783,-0.022342041,0.004283978,0.03440475,0.0004631515,-0.009852873,-0.005937201,-0.025676178,0.0045664385,0.0016047611,0.0005500357,0.043354858,-0.0148762325,0.010484255,0.0047990526,-0.035224438,0.006911965,0.019351287,-0.0035307514,-0.028157396,0.011215328,-0.019594979,0.011409173,0.016703915,0.024346953,-0.025476795,-0.0056658173,0.009974719,0.01583992,0.031635534,0.007144579,0.0036581354,0.04971298,0.04076287,-0.022552501,0.026983248,-0.07638607,-0.021478046,0.0060978155,0.008811648,0.023239268,0.034914285,-0.03624351,-0.057112325,0.02485649,0.007216579,-0.03269891,0.0000014305817,0.027249092,0.0030738306,-0.02811309,0.001968913,0.061897535,-0.009664566,0.04497208,-0.015208539,0.008905801,-0.03981026,0.013292241,0.030417077,-0.03108169,0.012638705,0.008318727,-0.009426414,-0.04656715,-0.0054387418,0.0077759605,0.013524855,-0.035578895,-0.0044639776,0.0037799808,-0.021932196,0.026407251,-0.006175353,-0.0031015228,-0.02188789,0.043975163,0.022186965,-0.015574075,0.03644289,-0.02800232,-0.0010093795,-0.012173477,0.013380855,-0.033297062,0.019262671,-0.0047741295,0.0020589128,0.0018373753,-0.030417077,-0.03670874,-0.0075322697,0.016537763,-0.019007904,0.019428825,0.00071653485,0.017025145,0.012982088,0.009276876,0.012749474,-0.0144220805,-0.03185707,0.002075528,-0.006424583,0.0062251994,0.019572824,0.016748223,0.021843582,0.001527223,-0.012118093,-0.011475634,0.027913705,-0.0053584343,0.012971011,0.012649782,-0.020204205,0.0012101477,-0.019007904,0.002464603,-0.008828263,0.0039682877,-0.0106504075,-0.023926033,-0.019384518,-0.01750145,-0.011686095,-0.020636203,-0.006047969,-0.0042729015,-0.019594979,0.0044169007,-0.030129079,-0.002150297,-0.0002442103,-0.0032925988,-0.010766715,-0.033319216,0.031413995,-0.015374691,-0.0031735224,0.05826432,0.022319887,0.0075599616,-0.0038852112,0.022685423,0.039500106,-0.011148866,0.008285496,0.021134662,-0.00021426815,-0.005748894,-0.0022222965,-0.0038104423,-0.038370267,0.02301773,0.010229487,0.00975872,0.010722407,-0.010567331,0.02711617,-0.06894242,0.023505112,0.016426994,-0.036531508,-0.030572154,-0.0007490731,0.047143146,-0.008412881,-0.029353697,-0.001852606,-0.010788868,0.009570413,-0.0038436728,0.004200902,0.002050605,-0.005898432,0.009371029,0.013635623,0.022707578,-0.0054498184,-0.01640484,-0.021267585,-0.016216533,0.0037716732,-0.015452229,-0.0110380985,-0.0091218,-0.016925452,0.0089390315,0.021046048,0.026185714,0.0073938086,0.015275,-0.044440392,-0.032964755,-0.009575952,0.028556162,0.024634952,-0.020026976,-0.0016781454,0.028622625,0.0076984228,0.021433737,-0.040940102,0.0034282904,0.042756706,-0.026074946,0.010805484,0.009387645,0.013569162,0.03832596,0.013513777,0.0050925897,-0.011675018,-0.022175888,0.014123006,0.014278081,0.00016260495,0.0076208846,0.008235651,0.011364866,0.018686675,-0.00491536,0.002011836,0.007654115,-0.013945776,-0.04147179,-0.010406717,-0.01955067,0.0016753761,0.012771628,0.0093931835,-0.029442312,0.007997498,-0.040009644,0.013956852,0.026008483,-0.006596274,-0.046921607,-0.012561168,0.008108267,-0.029265083,0.0044362852,-0.008639956,0.00042230554,-0.023128498,-0.028090935,-0.007964267,-0.0098750265,0.016294071,0.016327303,-0.028445395,0.018343292,0.00031067152,-0.045769613,-0.04572531,0.008174728,-0.035379514,0.056979403,0.021555584,-0.013214703,0.020204205,-0.021201124,-0.011486711,-0.011796864,-0.0034061365,0.011918709,0.044218853,-0.022408502,0.018686675,0.0006068046,-0.021356199,0.0008709187,-0.0054608956,-0.0018955289,-0.002591987,0.009775335,0.037063196,0.0027913705,0.008673187,0.014787617,0.0077482685,0.033651523,-0.004300594,-0.010185179,-0.01562946,-0.017191298,-0.0024742952,-0.014111929,-0.025831254,-0.00022603731,0.027182631,-0.025676178,-0.002573987,0.0029298314,-0.000044913235,-0.022995576,-0.006684889,0.012749474,-0.031125996,0.0029713695,-0.0022596808,0.0057156635,-0.011929786,-0.009215954,0.0007947652,-0.008019651,-0.007903345,-0.015618383,-0.0011263789,0.009647951,-0.024014648,0.0058485856,0.017135913,0.022253426,-0.009974719,-0.009531644,0.005175666,0.0038021347,-0.039433647,-0.032122914,-0.005228281,0.009033185,0.0108110225,0.0076984228,0.0059704315,0.020713741,-0.023992494,0.019373441,-0.006812273,-0.014156236,0.0070559643,0.023084192,-0.002018759,0.009365491,-0.012107016,0.016770376,0.010899637,-0.010761176,0.018199293,-0.01835437,0.022796193,-0.014521773,-0.010312563,-0.013247933,0.026074946,-0.035224438,-0.00072830403,-0.046877302,0.042801015,0.009509491,0.014765464,-0.00063622755,-0.035889048,0.039721645,-0.035047207,0.04408593,0.025654024,0.01693653,0.011254097,-0.00625843,0.00862888,0.011940863,-0.051529586,0.040740717,-0.028334625,0.011054713,-0.013414086,0.032787528,-0.027426323,-0.0039405953,0.046124075,-0.017401759,-0.019849746,0.027492784,0.0011810709,0.00083630346,0.028866315,0.013569162,-0.00010142256,0.000117691714,0.0003293637,-0.0167593,0.005815355,-0.013569162,0.014123006,0.010301487,0.02266327,-0.024989411,0.010013488,0.016881146,0.017058374,-0.01788914,0.016991913,0.015607306,-0.011586403,-0.011531019,0.00505659,0.0036359816,-0.0057655093,0.028866315,0.0036249047,0.025742639,0.030572154,0.052194197,-0.016703915,-0.013679931,-0.021079278,-0.041959174,-0.015884228,-0.029176468,-0.027404169,-0.032831833,0.021799274,-0.0031319843,-0.008534726,-0.06358121,-0.018797444,-0.0051147435,-0.035756126,0.0071778097,0.027625706,-0.033917367,0.041493945,-0.0027207555,-0.0071390406,-0.021976504,0.022541424,0.0066738124,-0.0044362852,0.04034195,0.01767868,-0.003397829,-0.00562151,0.028689086,0.008196882,-0.027426323,0.020724818,0.0069673494,0.0246128,-0.012804858,0.04674438,0.018143909,0.007587654,0.0012440706,0.030328462,-0.022563579,-0.010733484,0.0036609045,-0.030417077,0.005687971,-0.022585731,0.016858991,-0.016604224,-0.028644778,0.0069064265,0.038702574,-0.0077981143,0.01456608,-0.015529768,0.007914421,-0.007360578,-0.023815265,0.012095938,0.012948858]},{"id":"interface-APIMessageReaction","type":"interface","source":"main","text":"Interface: APIMessageReaction\nProperties: count: number, emoji: APIReactionEmoji, me: boolean | null","meta":{"url":"/docs/typedefs/APIMessageReaction"},"embedding":[0.016669026,0.01852807,0.012096273,0.05963918,-0.011865452,-0.01845321,0.008328275,-0.004610183,0.03510976,0.019064574,-0.008727533,-0.035708647,0.010168605,0.017891753,0.0018528071,-0.0075484733,0.021697182,0.011522339,0.025627378,0.049233515,-0.023880625,0.013262855,0.031591296,0.047786202,0.030069126,-0.01046181,-0.043743715,0.016132522,-0.028047882,-0.035484064,0.0046444945,-0.029994264,0.045315795,0.0060075866,-0.0139241265,-0.008103692,-0.03169111,0.025515087,-0.0347105,-0.028621815,-0.02346889,-0.0066314274,-0.007710672,0.009706963,-0.09282751,0.02934547,0.012732591,0.04391839,0.007592142,0.02762367,-0.038728036,0.04164761,-0.018166244,0.044342604,-0.0037212102,-0.049508005,0.0029304922,0.0012476816,-0.042570896,-0.005221547,-0.02308211,-0.016207384,0.005461726,-0.01570831,-0.022383407,-0.0061885007,-0.045265887,0.02288248,0.049882308,0.012913504,0.04831023,0.040649466,-0.028272465,0.028097788,-0.017991569,0.00034818114,-0.00037566913,-0.02029978,-0.01367459,-0.001979135,-0.021647274,0.054748267,-0.027948067,-0.077006906,-0.006930871,0.0063881297,-0.035908274,-0.058092054,-0.062384076,0.007018209,-0.014198616,0.032888886,-0.07116775,-0.01790423,0.008122407,-0.05399966,-0.010767492,0.0139366025,-0.00003175252,0.040524695,0.022171302,-0.053500585,-0.054798175,0.012096273,-0.010923452,0.033562634,-0.012801213,-0.007018209,-0.047910973,0.01849064,-0.010505479,0.008690102,-0.0058890567,-0.0054897987,-0.015383913,-0.02797302,-0.0044417465,0.0042889053,-0.0017093237,-0.051554203,-0.050830547,-0.007330129,0.077006906,0.0035870844,-0.0065503283,-0.01665655,0.004039369,0.0019073932,-0.018765131,0.007723149,0.012470577,0.00478174,-0.005383746,0.008022592,-0.015633449,0.0006409964,0.03169111,0.01081116,-0.027798345,0.016032709,0.047436852,0.022932388,-0.004731832,0.0047661434,0.00060590537,-0.02295734,-0.051154945,0.014834934,0.01535896,-0.01782937,0.013562298,0.02154746,-0.049782492,-0.0045072497,0.0242175,-0.0017576714,0.012639014,0.0020555553,-0.02436722,-0.0016906084,0.013063226,-0.09182936,-0.012083796,-0.027399087,-0.027473947,0.038478497,-0.011179226,-0.0020290422,-0.03478536,0.021971673,0.03209037,-0.0054648453,-0.06318259,-0.048135553,-0.069520816,-0.021871857,0.015259146,0.018228628,-0.026825154,0.00917046,0.059140105,0.04316978,-0.071916364,-0.05399966,0.024853816,-0.030867642,-0.024192546,0.058241773,0.013375146,-0.040075533,0.027074689,0.055846225,0.009925307,-0.01834092,0.049308375,-0.06577777,0.024317313,-0.004173495,-0.048360135,-0.051254757,0.006331984,0.015458775,0.08224717,-0.021996627,-0.010000167,-0.03016894,-0.0036650645,-0.046713196,-0.012121227,0.007192884,0.06767425,-0.034735456,-0.0078167245,-0.024978586,-0.041547794,-0.040449835,-0.0336874,0.014485583,-0.05629539,0.041522842,-0.03496004,0.009451188,0.103607476,-0.018989714,0.009763109,0.059389643,0.015408867,0.023169447,-0.02605159,-0.0064006066,-0.018253582,0.03166616,-0.023456413,-0.045989543,0.01900219,-0.024766479,0.044617094,0.021709658,0.022533128,-0.028846398,0.02064913,-0.014360814,0.016856179,0.034186475,-0.002707469,0.027199458,0.018440733,0.023443937,-0.023094585,0.01391165,0.035708647,0.028047882,0.036157813,0.03428629,0.0032938793,-0.028971165,-0.033487774,0.07870375,0.044342604,0.0147226425,0.013637159,0.0028322372,-0.03099241,-0.015059517,-0.023656042,-0.018615408,0.019875567,0.039801043,-0.015733264,0.02264542,-0.0018917972,-0.0047755013,0.06273343,0.038403638,0.011010789,0.037355587,0.014298431,0.024454558,-0.016893608,0.013899173,-0.005661355,-0.028197603,0.01814129,0.015558589,-0.0018387707,0.008559096,0.045315795,-0.0026154525,0.004482296,-0.0011158952,0.04494149,0.0055708983,0.041098632,-0.054398917,0.00018500778,0.0436439,0.033961892,-0.022944864,0.003318833,0.02652571,0.021048388,-0.038029335,0.031291854,-0.036731746,0.01962603,0.024317313,0.011828021,0.0129509345,0.0077980096,0.006029421,0.025652332,-0.025527565,-0.038154103,-0.045615237,-0.064430274,-0.012707637,0.010093744,0.020736467,0.0070618778,0.017105713,-0.012988365,-0.00090690854,0.004588349,-0.004117349,-0.04658843,-0.03071792,0.055347152,-0.034835268,0.06088686,0.02096105,0.019987859,-0.00044097746,0.009968976,0.029744728,0.0673249,-0.010050075,0.0036057997,0.024067776,-0.005589613,0.047711343,0.06163547,-0.030368568,-0.035783507,0.005492918,0.03268926,-0.036931373,-0.047337037,0.0004000379,0.01821615,-0.0049376995,-0.024778957,0.0032876409,-0.020274825,-0.03408666,0.018253582,-0.03897757,-0.00022906653,-0.0268002,0.021722136,0.035134714,-0.033013653,0.006288315,0.0041235876,0.020025289,-0.0054367725,-0.020549316,-0.040424883,-0.03318833,0.050181754,-0.018877422,-0.018927328,-0.018877422,0.0007957869,-0.02260799,-0.015209238,0.0047068787,-0.038752988,-0.003534058,-0.0066813347,0.027748438,0.035958182,0.013961556,-0.028596861,-0.0047099977,-0.004079919,-0.020374639,-0.011017028,-0.009900353,-0.014211093,0.047262177,0.09532287,-0.014834934,-0.040150393,-0.019264203,0.01261406,0.045191027,-0.043943346,0.025627378,0.0016375821,-0.005751812,-0.012888551,-0.004157899,0.0066189505,0.038129147,0.0010737859,0.0046850443,-0.044093065,0.032314952,0.0563453,0.015446298,0.054798175,-0.025477657,0.036582023,0.051454388,0.014211093,-0.02797302,0.0022427076,-0.004316978,0.042446125,0.0026107735,-0.026425896,-0.03925206,-0.011497386,-0.046912827,0.013237901,-0.0009997048,0.018640362,-0.0028774657,0.032664303,-0.060437694,-0.025502611,0.0028072835,0.0666262,-0.027548809,0.05629539,-0.046064403,0.023443937,0.009058168,-0.03668184,-0.0051872362,0.024491988,-0.030742874,0.006943348,-0.00144965,-0.028472094,-0.0040767994,-0.03306356,-0.057143815,0.021971673,-0.023169447,-0.07885347,-0.008677625,-0.014760072,0.042321358,-0.030243801,-0.025777102,0.023319168,0.04481672,0.036182765,0.0021616083,0.0039083622,-0.011123081,-0.008166076,0.051454388,0.006266481,0.010330804,-0.029595006,-0.002127297,0.009214128,0.011622153,-0.0542991,-0.050630916,0.0329887,0.047112454,-0.0015151533,-0.043194734,0.040075533,-0.024454558,0.021485077,0.02797302,0.00474119,0.02597673,0.026425896,-0.041947056,0.0075484733,0.077855326,0.0064193215,-0.019888043,0.00039048534,0.018852469,0.02817265,0.023493843,-0.0072739837,-0.013512392,0.01453549,-0.0068934406,0.01457292,-0.034510873,-0.0016796913,-0.033512726,0.013275332,-0.028946212,-0.03897757,-0.03381217,0.040050577,0.021559937,0.028022928,-0.030518292,-0.009039453,0.002691873,-0.0071367384,-0.013599729,-0.015695835,-0.037081096,-0.02515326,-0.004956415,-0.021809474,0.010524194,-0.015895464,-0.0015806566,0.03361254,-0.003624515,0.034261335,0.015071993,-0.0015307493,-0.0250784,0.004713117,-0.030668013,-0.034810316,-0.004482296,0.028022928,0.00053689297,0.020087672,0.0066002356,0.0050437525,0.010717585,-0.034735456,-0.010848591,0.031241946,-0.01830349,0.02554004,-0.015221715,0.02264542,-0.033961892,-0.027174504,0.04351913,-0.021260494,0.030892596,0.006335103,0.009239082,0.003378098,0.0049345805,0.054049566,-0.008565334,0.0041017532,0.011697015,-0.0038272631,-0.010511717,0.038852803,0.020524362,-0.01625729,-0.026351035,0.0024220617,0.0025717835,-0.046338893,0.0009685128,0.012863597,0.017068284,0.00077044335,0.012339571,-0.004638256,0.034336198,-0.023481367,-0.019975381,-0.00802883,0.024741525,-0.005433653,0.009332658,0.013200471,-0.0088523,0.000266497,0.015284099,0.014011464,0.028522,-0.009650817,0.03166616,-0.008309559,0.005783004,-0.007298937,0.0340118,0.004157899,-0.0059888717,0.031117178,0.020187488,-0.030692967,0.017879277,-0.0121524185,0.002961684,-0.028272465,0.016619118,0.024167592,0.014547967,-0.024704095,-0.018602932,0.018640362,0.059689086,-0.01669398,-0.023493843,-0.049857356,-0.0061136396,-0.04097386,0.02358118,-0.009451188,-0.040899,-0.0035839654,-0.0064006066,0.010493002,0.015820602,0.021722136,-0.021559937,-0.0491337,0.012196087,-0.019052098,0.010624008,-0.0051061367,0.029395377,-0.0044573424,-0.026949922,0.020636654,0.007804248,0.006743719,0.0056831893,-0.007486089,-0.01649435,0.0037991903,-0.0048721964,0.022932388,0.0032564488,0.012065081,0.0018247343,0.029445285,-0.0055771368,0.03800438,0.011547293,0.012464339,0.029170794,0.017467542,-0.016756363,0.022183778,0.019388972,-0.015895464,-0.041472934,-0.018640362,-0.017430112,-0.02123554,-0.047586575,-0.01665655,0.05375012,-0.00035285993,0.00038502674,0.010012644,0.022820096,-0.0091829365,-0.0007419806,-0.02460428,0.015720788,0.0111605115,-0.008309559,0.020586746,0.007972685,0.018553024,0.018553024,0.00540558,0.0058329115,0.01966346,-0.019301634,0.0056395205,-0.017779462,-0.03403675,-0.020349687,0.034885176,-0.018740177,-0.05504771,-0.01398651,0.01187169,-0.015296576,0.01457292,0.00069753197,-0.011497386,-0.01570831,-0.014972178,0.0045353225,0.015521158,-0.010087505,0.0037586407,0.007005732,0.025278028,0.00478174,0.0127513055,0.009376327,-0.015096947,0.007036924,-0.023593659,0.020199964,-0.004847243,0.010393187,0.029445285,0.016282244,0.03960141,0.023593659,-0.014360814,0.006637666,-0.0072115995,0.03505985,-0.009469903,-0.0007840899,0.008166076,0.010355757,0.009276512,0.025477657,0.029520145,0.013212948,0.008939639,0.023119539,0.004148541,0.019376494,0.049582865,0.047985833,-0.027997974,0.015720788,-0.011541055,0.030119034,-0.011846736,-0.005985752,0.00033589927,0.02041207,-0.003537177,0.028072836,-0.020661607,0.004940819,-0.0032938793,0.0043356935,0.022121394,-0.015683357,-0.0501568,0.010979597,-0.035883322,0.029120887,-0.030742874,0.013387623,0.0033219522,0.00842185,-0.023880625,0.049258467,-0.007879109,0.005418057,-0.009694486,-0.01480998,-0.015733264,0.0012367644,0.0115535315,0.040050577,-0.017929183,0.014148708,0.013974033,-0.019151911,-0.00058290124,-0.0137244975,-0.002303532,0.013612206,-0.010929691,-0.007822963,-0.018752653,-0.026775246,0.030318663,-0.041697517,0.006606474,-0.009607148,-0.031591296,0.027923113,-0.020424547,-0.0069246325,-0.0340118,-0.032938793,-0.0012430027,0.015658403,-0.007972685,-0.03758017,0.02174709,0.0019775752,0.014385768,0.0068123415,0.005474203,-0.05819187,0.00013558789,0.049557913,0.020723991,-0.0687223,0.02079885,0.030119034,-0.017342774,-0.0026793962,-0.000619162,-0.017467542,0.024005393,-0.0016609761,-0.013512392,0.046239078,-0.0007037704,0.018228628,-0.02927061,0.024691617,-0.008945877,0.0013420375,-0.014872364,0.02605159,-0.0034030515,0.0022629823,0.00067257835,-0.02570224,0.06278334,-0.015246669,0.029046027,-0.013824312,0.057742704,0.036457255,-0.0042046867,0.010043836,0.01903962,0.016394535,-0.0015588221,0.013637159,0.020000335,0.018228628,-0.011453717,-0.029794635,-0.023493843,0.038328778,-0.017267913,0.018428257,-0.0129509345,-0.0059420834,-0.03139167,-0.02029978,-0.004756786,0.0022629823,0.007935255,-0.028522,-0.012221041,0.030643059,-0.006500421,-0.024117684,0.037829705,-0.052851792,0.014597874,-0.009020737,-0.045465514,0.018415779,0.041797332,0.0017576714,-0.0028977403,0.049283423,-0.005555302,-0.0042452365,0.014710166,0.0039520315,0.023456413,-0.014622828,-0.0061729043,0.0041048722,0.018365873,-0.011746922,0.024205022,0.00055053947,-0.0006558126,-0.013300286,-0.0018855587,0.014435676,-0.009351374,0.022283593,-0.005817315,0.0072552683,0.0419221,0.0013693304,-0.004837885,0.018415779,-0.0024314194,0.026276173,-0.05105513,-0.010817399,0.017979091,0.017068284,0.022233685,0.0057019047,-0.010586578,0.013998987,-0.0119527895,0.03922711,-0.008727533,-0.026600571,-0.05469836,-0.018041475,-0.049283423,0.007904063,0.029445285,0.023943009,0.04376867,-0.041423026,-0.010667677,-0.0067998646,0.025215644,-0.008278367,0.010399425,0.015508682,0.028397232,0.02844714,0.0089833075,-0.014972178,0.002953886,0.0017186813,-0.02339403,0.006381891,0.013499915,0.013050749,0.018315965,0.015645927,-0.044991396,0.011709492,-0.03765503,-0.00854038,-0.012021412,0.024629233,0.0027059093,0.030293709,-0.016606642,-0.028596861,-0.019538693,0.014086325,-0.015658403,0.009282751,-0.02961996,-0.04289529,-0.014884841,-0.014934748,0.032614395,-0.0010153009,-0.054748267,0.03668184,-0.00006404115,0.018977236,0.017954137,-0.012483054,0.0075796656,-0.013599729,-0.05250244,-0.010567863,0.05983881,-0.01480998,0.030692967,0.016294722,-0.046288986,-0.0009989251,-0.0481106,-0.03091755,-0.018565502,-0.0018528071,0.023656042,0.054498732,0.009157983,0.0018652839,-0.04067442,0.0013170838,0.011416286,0.046139263,-0.007617096,-0.0059171296,-0.010867306,-0.008471758,-0.005202832,0.03079278,0.0011275922,0.045041304,-0.007972685,0.048983976,-0.028422186,-0.017504971,0.0019292276,0.007036924,0.039526552,0.028047882,0.022171302,-0.0038896473,0.008914685,-0.014398245,0.005673832,-0.03381217,-0.022545606,0.0123582855,0.010418141,0.0099752145,-0.036781654,0.012601583,0.0055053947,-0.0027417801,0.030867642,-0.03251458,0.030568197,-0.0070805927,0.034585733,-0.017467542,0.00017779462,0.02762367,0.0095821945,-0.04756162,-0.034560777,-0.014647782,0.016294722,0.00791654,0.008278367,-0.0099876905,0.032938793,-0.017529925,0.049632773,0.007629573,-0.020237396,-0.018864945,-0.008084976,-0.008453042,0.018752653,-0.039052434,-0.02358118,0.04489158,-0.0076732417,0.0012570391,-0.013225424,0.024641711,-0.008534142,0.024192546,-0.0007205361,-0.029919405,-0.011840498,-0.024317313,-0.046363845,0.024342267,0.04137312,0.007829201,-0.010536671,-0.01104822,0.012738829,0.0069371094,0.033787217,0.025165737,-0.041672565,-0.02158489,-0.01665655,-0.013150563,0.013499915,0.018889898,0.0003310255,0.006225931,0.011347664,0.008060023,-0.005046872,-0.00059459824,0.04124835,0.026850106,-0.030193893,-0.016157476,0.006010706,0.02041207,0.00462266,-0.0030537006,0.036107905,-0.009101837,-0.0005427415,-0.0048160506,0.012383239,-0.013262855,-0.0336874,-0.026775246,0.0021304162,-0.013175517,0.034061708,-0.0034311244,-0.022994772,0.02632608,0.01653178,0.0005821214,0.023181923,0.020848759,-0.04516607,0.020224918,-0.023531275,-0.036806606,-0.03922711,0.045615237,0.0016625357,-0.021684706,0.029370423,-0.005870342,0.0029523266,0.01089226,0.008197268,0.024354745,0.0022785785,0.0099876905,-0.0059015336,-0.05230281,-0.0347105,-0.004051846,-0.027174504,0.002013446,0.0017202409,-0.0024111446,-0.062234357,0.0010262181,0.002139774,-0.026101498,-0.0019619793,-0.021796998,0.03306356,-0.019538693,0.04673815,0.053700212,-0.00454468,0.008677625,0.007049401,-0.0036276341,-0.018590456,-0.006107401,-0.0062508844,-0.028696675,-0.001277314,-0.007667003,-0.0006983118,-0.003036545,-0.027773391,0.014735119,0.0029492073,-0.009120552,-0.013100657,0.0059701563,-0.0035059853,0.036057997,-0.018403303,-0.011522339,-0.032963745,0.051154945,-0.017417634,0.010748777,0.032190185,0.00223335,0.016082615,0.00783544,0.026949922,-0.018939806,-0.0125579145,0.0093825655,-0.01391165,-0.0035153427,-0.0055927327,-0.035883322,0.012127465,0.0026388464,0.005218428,0.029370423,-0.0070805927,0.0062321695,0.031167084,0.025827007,0.03663193,-0.01782937,-0.030293709,0.03149148,0.023606135,0.014211093,0.03767998,-0.001735837,0.03139167,-0.025415273,0.005168521,-0.0021834427,0.0033936938,0.004345051,0.008016354,-0.003624515,-0.05038138,0.028022928,-0.020624176,-0.0016313436,0.0041641374,-0.010730062,-0.02762367,-0.037405495,-0.02308211,-0.017367728,-0.015571066,-0.008677625,0.0035153427,-0.005156044,-0.010143651,0.029669868,0.008471758,0.008958354,0.004822289,0.000050638326,-0.0103744725,-0.020287301,0.07391266,-0.0026700385,0.004385601,0.032739162,0.03169111,0.018428257,-0.019102005,0.015209238,0.050481196,0.0024782075,-0.031092225,0.021297924,0.0028961808,-0.0022894957,0.019151911,-0.0085965255,-0.016419489,0.008128645,0.028472094,0.0073488443,0.005049991,0.013275332,0.03211532,-0.01731782,0.032414768,0.024192546,-0.018078906,-0.027224412,-0.00948238,0.0036151572,0.0029086575,0.002609214,-0.008821108,0.015608496,0.0071866456,0.0080101155,0.031915694,0.0032689257,-0.019226773,-0.019364018,0.019426402,0.025827007,-0.009856684,-0.0147226425,0.0011260326,-0.0015151533,-0.004806693,0.016419489,-0.0032782832,0.012395716,-0.005520991,0.029694822,-0.0036120382,-0.013350192,-0.030268755,0.016232338,-0.058241773,-0.03216523,-0.023281738,-0.020374639,0.028347325,-0.031716064,-0.018378349,-0.0129509345,0.026725339,0.038503453,0.011073174,0.010206035,0.03381217,0.00053728285,0.035234526,0.03718091,-0.0071616923,0.006930871,-0.007180407,-0.037131004,0.0035902036,-0.027473947,0.012470577,0.020387117,-0.012046365,0.024616757,-0.018790085,0.011041982,0.019563647,-0.008215983,-0.007972685,-0.020012813,0.013687067,-0.043893438,-0.029445285,-0.006612712,0.0029710417,0.025103353,-0.0008141122,-0.033986844,0.034411058,-0.018278535,-0.00842185,-0.0033874554,-0.015146854,-0.026600571,-0.03174102,0.037131004,-0.019102005,0.00084842346,0.00053104444,-0.033986844,-0.013250378,-0.019301634,0.010143651,-0.029170794,-0.011191703,0.03525948,-0.027199458,-0.0014714844,0.02244579,-0.037205864,-0.03660698,-0.004176614,0.0034404818,0.013362669,0.0060606133,0.007049401,-0.0007903283,-0.04529084,-0.022558082,-0.017654695,0.001426256,0.0091891745,0.0038927665,-0.026750293,-0.018640362,-0.013774404,-0.00936385,0.013362669,-0.015845556,0.039875902,0.011391332,-0.023693472,0.03154139,-0.019888043,-0.010511717,-0.01935154,0.008022592,-0.018989714,-0.0070805927,0.0044136737,-0.018041475,0.0007645949,0.026201313,0.015159331,-0.020474454,0.013013318,0.0051466865,-0.007355083,0.003796071,-0.008839824,0.019239249,-0.027598716,0.01285112,0.025851961,-0.049657725,-0.0020898667,-0.017143145,0.0017186813,0.010599054,0.0071055465,-0.0020836282,0.013038272,-0.0061292355,-0.011472432,0.004238998,0.021634798,0.0049314615,-0.02308211,-0.012570391,0.0023549988,0.018715223,0.010162367,-0.016481873,-0.024205022,-0.020886188,-0.003964508,-0.0029382901,-0.0011774994,0.005062468,0.0014847411,-0.001246122,0.016594164,-0.031291854,0.02797302,0.0127450675,0.003424886,-0.007467374,0.028671723,-0.016993422,0.004713117,-0.0030022338,-0.02240836,-0.0077481023,0.0040861573,0.023493843,-0.009220366,-0.0030708562,0.015508682,0.0016578569,0.008496711,0.025727194,-0.029220702,0.009862923,-0.050331473,0.035633784,-0.0012663967,-0.021385262,0.037555214,-0.05325105,-0.0045353225,-0.050531104,-0.007723149,0.04289529,0.018041475,0.0028104028,-0.021385262,0.0037524023,-0.00091782573,-0.05365031,0.03660698,-0.009900353,-0.0088523,-0.0029414094,-0.0011041982,-0.0026622405,0.016120046,0.047037594,-0.032963745,-0.03403675,0.019176865,0.013949079,0.024778957,-0.0099876905,0.0063538183,0.009282751,0.011272803,0.018977236,-0.024467036,0.009763109,-0.012651491,0.027848253,-0.0063007916,-0.00018559264,-0.03436115,0.01049924,-0.01653178,0.038852803,-0.021734612,0.017292866,0.03695633,0.013587252,-0.02401787,0.022221208,-0.0023721545,-0.012913504,-0.015146854,0.023967963,0.010917214,0.03079278,0.018677793,0.0064193215,-0.0054991567,-0.005099898,-0.014984655,-0.023481367,0.012202325,0.003005353,-0.018702747,0.00724903,0.007005732,-0.018602932,-0.034535825,0.003920839,-0.0274989,-0.02617636,0.032215137,0.013150563,0.037829705,-0.03436115,0.0044854153,-0.016444443,0.000025441006,0.022395885,0.012595345,-0.00239087,0.0063694143,-0.013836788,0.005296408,-0.031017363,0.011909121,-0.033213284,-0.010237227,-0.0426208,0.011927836,0.007298937,-0.009569718,0.0055708983,-0.006612712,0.005078064,0.02522812,0.003456078,-0.0059763948,0.007592142,0.01308818,-0.030418476,-0.014834934,0.0033157137,-0.025627378,-0.02617636,0.0053993417,-0.040699374,0.0354092,-0.04643871,-0.011653346,0.0056395205,0.022558082,0.022433314,-0.02257056,0.0030786542,0.053201143]},{"id":"interface-APIMessageReference","type":"interface","source":"main","text":"Interface: APIMessageReference\nDescription: Reply/forward reference from GET /channels/{id}/messages (type 0 = reply)\nProperties: channel_id: string, guild_id: string | null, message_id: string, type: number","meta":{"url":"/docs/typedefs/APIMessageReference"},"embedding":[-0.00487784,-0.004088411,0.0060384395,0.044208024,-0.025461162,0.004733804,-0.014447936,0.045293834,0.018181795,0.003456868,-0.011135104,-0.018957375,0.008060485,0.03159932,0.003193725,-0.029649291,-0.010758393,-0.011201582,0.0135394,0.06820667,0.015744261,0.027544146,-0.006088298,0.05566444,-0.062711135,-0.025505481,-0.02100712,0.024707742,-0.01809316,-0.01768321,0.040042054,-0.034457885,0.045338154,0.034989707,-0.024641264,0.03275161,0.006154776,0.009644884,-0.026458336,-0.00787767,0.010597738,0.04555975,0.030158957,0.0005280172,-0.049016617,0.010664216,-0.023378178,0.04773137,0.035344258,0.010564499,-0.019411644,0.024619104,0.00061492366,0.07037829,0.004055172,-0.008564612,-0.0056589595,-0.0032214243,0.0042352173,0.0051437533,-0.042302314,-0.045692705,-0.029804407,0.0018073769,-0.038513057,0.024729902,-0.04737682,0.07148626,0.032840244,0.012597625,0.028762914,0.0068250983,-0.012697342,-0.024663424,-0.036607347,0.004573148,-0.0071464097,-0.010054832,0.03494539,-0.044917125,-0.0053127185,0.027189596,-0.059032667,-0.0360312,-0.004429112,0.005082815,0.025306046,-0.023422496,-0.008215602,0.014026906,-0.039731823,-0.031422045,-0.04325517,0.0009701667,0.022613678,-0.07423402,-0.034036852,-0.020586092,-0.004478971,0.017095985,0.06466116,-0.011046466,-0.07667156,0.009124137,0.012464669,-0.01578858,0.0015013,0.022669077,-0.051409833,-0.00043660964,-0.052074615,-0.00976122,-0.006271113,0.00599966,-0.026613452,0.030557826,-0.023577612,-0.05597467,0.010957829,0.005600791,-0.04360972,0.03040271,0.06483843,0.009694742,0.0063652904,-0.02293499,0.0067697,0.0038169585,-0.050922323,0.007982927,0.066345274,0.019888071,-0.016630637,0.028075973,0.0017408987,0.02590435,0.005866704,-0.029050987,-0.040751155,-0.07777953,0.005301639,-0.0071519497,-0.00675308,0.04052956,0.024286713,0.019611077,-0.043831315,-0.0008572922,0.052429166,-0.0014237422,-0.041925605,0.035189144,-0.051631425,-0.011445335,0.006121537,0.018469868,-0.000050507875,-0.013317806,-0.023533294,-0.01050356,-0.027100958,-0.058367886,-0.010653136,-0.0061326167,-0.030136798,0.0071353302,0.0002570838,0.01573318,-0.018525267,0.017417297,-0.05606331,0.008054946,-0.083540976,-0.042390954,-0.02176054,-0.043343805,0.0002809744,-0.030668624,-0.030225435,0.000115211624,0.046401806,0.00067274587,-0.019411644,-0.07972956,-0.0017630581,0.04578134,-0.049459804,-0.012653023,-0.0038778968,-0.03266297,-0.01052018,0.046490442,0.021749461,0.018248275,-0.0006537026,0.016320406,0.035543695,0.0002215941,-0.0042961556,-0.049770035,0.014736008,-0.011029846,0.07263855,-0.0037338606,-0.034613,-0.019478122,0.015367551,-0.01542295,-0.030934537,-0.0018890897,0.031843074,-0.03372662,0.0073403046,-0.02927258,-0.040352285,-0.016375804,-0.035233464,0.027898697,-0.061204292,-0.048617747,-0.048972297,-0.0043820236,0.066522546,0.012154437,0.015057319,0.027366871,-0.013594798,0.0044595813,-0.04245743,-0.015267834,0.00081366586,0.013162689,0.013727754,-0.073037416,-0.03117829,0.036518708,0.00789983,0.037050534,0.008935782,-0.059121307,-0.005110514,-0.021306273,0.0052545504,0.018979535,-0.021128997,-0.018868739,0.034059014,-0.017129224,0.014436856,0.026015148,0.05402464,0.045648385,0.011722328,0.008459355,0.010082532,-0.03202035,0.014060146,0.060317915,0.035964724,-0.02816461,0.0518087,-0.02814245,-0.01649768,0.03151068,-0.0041521196,0.014957602,0.009833238,0.048706383,-0.014215262,0.023644092,-0.02515093,-0.0007215658,0.07569654,0.014835726,-0.015500507,0.013262407,0.01049248,-0.015267834,0.01502408,-0.02597083,-0.008741887,-0.030757261,0.013871791,0.026369698,-0.015589145,0.024574786,0.030225435,0.0073458445,0.017184623,0.017871564,-0.023178743,0.0262589,0.039155677,-0.062267944,0.001614867,0.043033574,0.055354208,0.015855057,0.0562849,0.0151570365,0.053182583,-0.006664443,0.027610626,-0.0548667,0.008520293,0.011456415,-0.00527671,-0.028895872,0.023821367,-0.07844431,0.039155677,-0.0027145278,-0.072948776,-0.009905256,-0.06045087,0.0016037873,0.028098132,-0.0025275578,-0.0038834366,0.0072461274,0.009511927,0.02366625,0.029715769,0.008808366,-0.014215262,-0.0006595887,0.004958168,-0.031333406,0.029250422,0.025837872,0.052783716,-0.03044703,0.0255498,-0.004462351,0.025815712,-0.002707603,-0.03146636,0.027943017,0.023887845,-0.012121198,0.07777953,0.00976676,-0.023954323,-0.019389484,-0.015899377,-0.021383831,-0.055841714,-0.0030496889,-0.004168739,0.011866365,-0.038801126,-0.012143357,0.0035925943,-0.0624009,0.0041548894,-0.027876537,0.021948896,-0.007113171,-0.0034651777,0.030779421,-0.04290062,-0.035876084,0.01809316,0.030336233,0.0045759184,-0.010852572,-0.013317806,-0.015589145,-0.033084,-0.028253248,0.011611531,-0.010243188,-0.041216504,-0.01618745,-0.012353871,0.0010851186,-0.025616279,-0.020442056,-0.011977161,0.039000563,0.024109438,0.00751204,-0.013594798,-0.009894176,0.023511134,-0.0013565714,0.0062544937,0.009700282,-0.022979308,0.023865685,0.023001468,-0.023444656,-0.031820912,-0.028430523,0.01993239,0.03558801,-0.0020982192,-0.017550252,0.008115884,-0.0049830973,0.007318145,0.014292819,-0.022669077,0.013561559,-0.04325517,-0.008293159,-0.036984056,-0.0010449546,0.044629052,0.006503787,-0.005800226,-0.041881286,0.008054946,0.053138267,0.015910456,-0.05225189,0.0016065573,-0.011013227,0.039554548,0.012243074,0.02061933,-0.011689089,-0.022104012,0.022259127,0.026923684,0.0119217625,0.009511927,-0.0011654465,0.0142595805,-0.06492707,-0.06944759,0.033305593,0.06373046,-0.013882871,0.032086827,-0.015345392,0.048307516,-0.035432898,0.0010221028,0.0120104,0.011678009,-0.031355567,-0.021705143,0.01731758,0.01278598,0.0015580836,0.0240208,-0.016453363,0.019112492,-0.0064373086,-0.0798182,-0.00752312,-0.022447482,0.015899377,-0.03301752,-0.019311925,0.009201695,0.051631425,-0.049371164,0.020209381,-0.016796833,-0.020962803,0.029494176,0.035100505,-0.01994347,-0.009833238,-0.03416981,0.0038862065,-0.039931256,-0.012918936,0.01688547,-0.03228626,0.044185866,0.0060052,-0.017140305,0.007118711,0.0052240808,-0.004836291,0.04542679,0.028364046,0.009955115,-0.006237874,-0.0064483886,-0.032153305,-0.020109665,0.07760225,0.009938495,-0.029339058,-0.005501074,0.03607552,-0.03146636,-0.009844318,0.010475861,-0.008941322,-0.00032408137,-0.033239115,-0.005232391,0.0018115318,0.021405991,-0.0028364046,-0.037560202,0.035876084,-0.025261728,0.027699264,0.054733742,-0.0022076312,-0.037294287,-0.041216504,-0.0015719332,-0.042656865,-0.000884299,0.011334538,-0.009628264,-0.0049304687,-0.0133842835,0.006725381,-0.060052004,-0.029671451,-0.014702769,0.014314979,0.0037532502,0.018591745,0.027943017,0.0062821927,0.025328206,0.0044512716,-0.015500507,-0.031998187,0.0016120971,0.008586772,0.031001015,0.0062544937,0.021505708,0.0098609375,0.008791746,0.004722724,-0.032818086,-0.01311837,0.0316658,-0.00069144287,-0.009467608,0.005376427,-0.00055640895,0.018946296,-0.021572186,0.008509213,-0.051365513,0.021317353,0.007174109,0.047110908,-0.0041188803,-0.024596946,0.046667717,0.012941096,0.03869033,0.009079819,-0.009196156,-0.035100505,0.040640358,0.016818993,-0.015179196,-0.026879365,-0.011533973,0.013007574,-0.041947763,-0.005562012,-0.0062932726,0.028873712,-0.0035150365,-0.022713395,0.0034956469,0.035610173,0.008808366,0.00097224413,0.013838552,0.022259127,-0.05296099,0.038801126,0.0009784765,-0.008071565,0.013860711,-0.02373273,0.039665345,0.012907856,0.024198076,-0.008680949,-0.018780101,-0.030225435,0.0016799603,0.035765287,0.0006620124,0.012309552,-0.03188739,-0.02142815,-0.02295715,0.011822046,-0.027300393,0.014724928,0.004312775,0.022713395,0.009506387,0.0548667,-0.035122667,-0.020818766,0.026480496,0.05788038,-0.030513508,-0.01694087,-0.016409043,-0.0052850195,-0.013162689,0.01848095,-0.046933632,-0.0065370263,-0.010808253,0.023976482,0.043764837,-0.008060485,0.02969361,0.022680156,-0.009977275,0.01503516,0.030779421,0.010309665,-0.012486828,0.016674956,-0.020630412,-0.02590435,0.035831768,-0.03687326,0.034103334,-0.026480496,0.012442509,-0.005794686,-0.030269755,0.014802486,0.0068971165,-0.00063950673,-0.006049519,0.006154776,0.016054492,0.010581118,0.02623674,0.0010761163,0.019998867,-0.03862385,0.008869304,-0.013107291,-0.010708535,0.003226964,-0.005600791,-0.0047642733,0.0038862065,-0.002218711,0.0020608252,-0.07246127,-0.032773767,0.059653133,0.0011495195,-0.007705935,-0.011855285,0.00086837186,0.00059553416,0.0014957602,-0.0051797624,-0.011988241,-0.017938042,0.008780667,-0.015877217,0.01802668,0.02628106,-0.0058390046,0.0025427924,-0.004686715,0.01955568,-0.016375804,0.01992131,-0.012952175,-0.010575579,0.0073957033,0.025527641,0.008542453,-0.033903897,-0.045338154,0.013749914,-0.0051271333,0.0151348775,0.005850084,0.031555,0.008531373,0.008149123,0.0077225543,0.033682305,-0.011966081,0.025815712,-0.019444883,0.032818086,0.017428376,0.001183451,0.011788806,-0.027544146,-0.014137704,0.009849858,0.012941096,0.0067087617,0.014204182,0.0072295074,0.025040133,0.034834594,-0.0042546066,-0.03939943,-0.0142706605,0.00016957143,0.026059467,-0.011522894,0.03727213,-0.021505708,0.0008912238,0.016464442,0.042280156,0.023976482,0.018370152,-0.004996947,0.009052119,0.022414243,0.01612097,0.014713848,0.021871338,-0.001918174,0.023621932,-0.016475521,0.023577612,-0.016276088,0.034059014,-0.0018143017,0.03301752,-0.040596038,-0.000050767554,0.0031410963,0.008553532,-0.0022976538,-0.002746382,-0.005761447,-0.026125945,0.022248048,0.009467608,-0.01542295,0.011434256,-0.028740754,-0.00077211694,0.007406783,0.004808592,-0.023932163,0.0026148104,0.009229395,-0.013406443,0.0046063876,-0.029959522,-0.035344258,0.014414696,-0.020885244,0.0071408697,-0.026990162,0.052916672,-0.005706048,-0.0010442622,-0.020187223,-0.015334312,0.04021933,0.0116226105,-0.031532843,-0.011079705,0.011129564,0.0008489824,0.029604971,-0.0534485,-0.014459015,-0.044584733,-0.016464442,0.011057545,-0.016996268,-0.013040813,-0.015699942,-0.013594798,0.013284567,0.012896777,-0.04387563,-0.0217827,-0.0029887503,-0.014669529,-0.010353984,0.015001921,-0.017406216,-0.030801581,-0.02515093,0.025749234,0.0032048046,-0.067054376,0.044518255,0.041371617,-0.012099038,0.010858111,-0.010919049,0.01015455,0.01390503,-0.00263143,-0.04196992,0.027300393,0.0029139624,0.02028694,-0.028098132,0.010486941,0.0052351607,0.00023890614,-0.0009140757,0.03146636,0.0030718483,0.009888637,0.0047698133,-0.007323685,0.053670093,-0.012099038,0.018469868,0.007672696,0.025283888,0.06528162,-0.039377272,0.017450536,-0.0028447143,0.00027751198,0.035034027,0.0009293103,0.032530013,0.007589598,-0.0066921418,-0.019611077,-0.008415036,0.01242035,-0.030114638,-0.021317353,0.0051382133,0.025527641,0.011777727,-0.01311837,0.010259807,-0.010065912,0.004395873,-0.017073825,0.005944262,-0.004008083,0.0017478234,0.0032131146,0.040330127,-0.009667043,0.0017782927,-0.029050987,-0.040773313,0.01809316,0.02623674,-0.0037421705,-0.00070910115,0.024286713,-0.052739397,-0.002775466,-0.026059467,0.013849632,0.013461842,-0.009872017,0.035920404,0.0127749,0.042922776,-0.01728434,0.050878007,-0.021716222,0.030181117,-0.0032408137,0.024552627,-0.00034277837,0.005412436,0.011722328,-0.01049248,-0.0039997734,-0.013351045,-0.03558801,-0.0039970037,-0.009151837,0.01239819,0.017982362,0.00044699686,-0.006603504,0.028120292,0.018347992,0.013772073,-0.013284567,-0.0011287449,-0.018702542,-0.059165627,0.037249967,-0.0040053134,-0.027167438,-0.037759636,0.012099038,-0.024885017,-0.02406512,0.052783716,0.034745954,0.043631878,-0.023932163,0.012630864,-0.006802939,0.013816392,-0.0052794795,-0.011029846,0.03343855,0.00601628,-0.009129677,0.004476201,-0.011988241,-0.043897793,0.007589598,-0.041615374,0.004401413,0.021339511,0.0016093272,-0.017262181,0.0017090446,-0.024286713,-0.017971281,0.0065259463,-0.010819332,0.009041039,-0.010930129,-0.0046756356,-0.007262747,0.030868059,-0.04578134,-0.011822046,-0.021117918,0.019467043,-0.0035648951,-0.0046340865,-0.010758393,0.012907856,-0.012619784,0.024951495,-0.00054706045,-0.038025547,0.027167438,-0.030978855,0.003196495,0.005409666,-0.0016855001,0.053891685,-0.026347538,-0.0009798615,0.027632784,0.017982362,-0.017450536,0.06089406,0.01848095,0.019500282,-0.04990299,-0.031488523,0.0029028826,0.028053813,-0.024087278,0.04963708,-0.0034097792,0.031377725,-0.008719728,-0.029649291,-0.018115317,0.04212504,0.08606715,-0.0019666476,0.02326738,0.0032408137,-0.020109665,-0.015511587,0.0073458445,0.018115317,0.021860259,0.0032546634,0.0054539847,0.023045788,0.008559072,-0.016486602,0.000769347,0.03680678,0.036230635,0.046623398,-0.0157775,-0.002174392,-0.0133842835,0.02818677,-0.007473261,0.020131825,0.021217635,0.03228626,-0.010431542,-0.003229734,-0.005944262,0.0014860654,-0.017749688,-0.0051049744,-0.0021882418,0.035831768,0.026170263,-0.0014195872,0.014724928,-0.028829392,-0.022868512,-0.008437196,-0.04990299,-0.012841378,0.034878913,0.018957375,0.0017575183,-0.0065868846,-0.029405538,0.039931256,-0.008066026,0.02026478,-0.01917897,-0.03913352,-0.016597398,0.00027110655,0.0027726963,0.036208477,-0.05593035,-0.026990162,0.03944375,-0.016043413,0.00262312,0.008282079,0.0075286594,0.007284906,0.039310794,0.027499828,-0.0088360645,-0.0406182,0.0154451085,-0.06018496,0.037803955,0.039465908,-0.00826546,-0.0060218195,-0.030868059,-0.0072018085,0.0078056525,-0.013051893,-0.010243188,-0.05411328,-0.0133842835,-0.006093838,0.018248275,0.01952244,0.025594119,-0.022591518,-0.009301413,-0.01915681,-0.0039249854,-0.0064373086,0.0039305254,0.021538947,0.006919276,0.0067087617,0.016420122,0.02253612,0.005146523,-0.011777727,-0.008586772,-0.015112718,-0.0000056318227,-0.00073541544,-0.016974108,0.017849404,-0.038424417,-0.0099994335,-0.057392873,-0.015699942,0.007113171,0.029649291,-0.012287393,-0.0060993778,0.0037449403,-0.005176992,0.008531373,0.020807687,-0.008897003,-0.033216957,0.04839615,-0.04030797,-0.01994347,-0.0060772183,-0.000028240263,0.0055481624,-0.024951495,0.0016688806,-0.0097723,-0.026148105,0.0077447137,0.033992536,0.045315996,0.009866477,0.040839795,0.013450762,-0.008631091,-0.0033239115,0.014614131,-0.02256936,0.038069867,0.021893498,-0.0046645557,-0.043897793,-0.012963255,0.028452683,-0.014946522,-0.017716449,0.006919276,0.009617184,-0.024331033,-0.013827472,0.030557826,0.0026937532,0.015145957,-0.006647823,0.014492255,0.014891123,-0.02479638,0.008198982,-0.026524814,-0.02064149,-0.026657771,0.037737478,0.010486941,-0.028098132,-0.009567325,0.0071408697,0.00031005862,0.03904488,0.029095305,-0.030868059,0.050922323,0.0068583377,-0.030557826,-0.032552175,0.035233464,0.0035150365,0.008564612,0.034302767,-0.001218075,0.03798123,0.0020608252,0.044407457,-0.048662066,-0.019854832,0.013949349,-0.0018987844,0.027300393,0.0073901634,-0.0034873371,0.0028862632,0.013450762,0.03609768,0.043676198,-0.0055814013,0.013760994,0.008952402,0.020929564,0.024486149,-0.04196992,-0.0337931,0.04742114,0.0014168173,0.026945842,0.03800339,0.0027145278,0.017782927,-0.007207348,0.014680609,-0.023112265,0.0061880155,0.014226342,-0.009340191,0.0022200958,-0.015722102,0.03348287,-0.027920857,0.00060245895,0.01874686,-0.019965628,0.017406216,-0.011101864,-0.064882755,-0.0034097792,0.00044976678,-0.012087958,0.0145587325,0.01616529,-0.03348287,0.027477669,0.011711248,-0.0043903333,0.049725715,-0.013805313,0.016641717,-0.018569585,0.0136834355,-0.03157716,-0.002476314,0.040086374,0.02628106,0.021494629,0.0017422836,-0.025483321,0.031532843,-0.00243892,-0.026347538,-0.0054429052,0.009234934,-0.017816165,0.006814019,-0.010963368,-0.037781794,0.020852005,-0.0020871395,0.032951042,-0.018636065,-0.014159863,0.0053431876,-0.051409833,0.03722781,-0.0033211417,-0.02705664,-0.0050689653,-0.00979446,0.015168116,-0.029405538,-0.011567212,-0.013229168,-0.012564385,0.0022450252,0.019389484,0.000013784711,-0.0023585923,-0.0013766533,-0.036695983,0.004033013,0.04208072,-0.016841153,-0.029095305,0.0004466506,0.009439909,0.012110118,0.0068195583,0.015123798,-0.017129224,-0.01732866,0.008187902,0.016442282,0.0029084226,-0.03346071,-0.0002659129,-0.026613452,0.014104465,-0.0122209145,0.009390051,0.02217049,0.005409666,0.00018662379,-0.023001468,0.005761447,0.015301073,-0.014104465,0.026945842,0.028075973,-0.007323685,0.028585639,0.017727528,0.009063199,0.034613,-0.014946522,-0.015511587,0.0016231769,-0.025527641,0.01390503,0.016564159,0.018724702,-0.021849178,-0.025217408,-0.007927529,-0.0104370825,0.015201355,-0.01688547,0.010270887,-0.0074566416,-0.03682894,-0.049459804,-0.026081625,-0.034081172,0.038424417,0.0035205763,0.005971961,0.035964724,-0.033194795,-0.0021923967,0.0068306383,-0.027123118,-0.046313167,-0.02969361,0.028452683,0.0006173473,0.005794686,-0.0074566416,-0.02670209,-0.03372662,-0.019068172,0.034302767,-0.026923684,-0.007262747,-0.013849632,-0.023112265,0.00069040415,0.0013357969,-0.038247142,-0.03315048,-0.0010733465,0.012121198,0.025084453,-0.005717128,-0.019633237,0.008930243,-0.013783153,-0.0064317686,0.008282079,-0.010719615,0.030579986,0.01463629,-0.023090106,-0.01991023,-0.008221141,-0.01731758,0.02781006,-0.002740842,0.01391611,0.028497001,-0.0017215092,0.030136798,-0.0054318253,-0.00024011798,-0.02026478,-0.0056838887,-0.020209381,0.03377094,-0.0021993215,-0.010016054,-0.040042054,0.0052046916,0.010847031,0.004733804,-0.01913465,0.019012773,0.00826546,-0.015622384,-0.02366625,0.026746409,0.012930016,0.03228626,-0.016630637,-0.0496814,-0.0127749,-0.011478575,0.0025358675,0.016420122,-0.016951948,-0.0025053984,-0.0154340295,-0.025350366,-0.014625211,0.0034845672,-0.023799207,-0.032928884,0.00048092846,-0.037449405,0.004326625,0.010592198,-0.0021951667,0.018082079,-0.025394684,-0.0042656865,-0.017816165,0.02816461,0.0048002824,-0.010813792,-0.005700508,0.015145957,0.024885017,0.009716901,0.035543695,-0.03875681,-0.003235274,0.007024533,0.0323749,-0.028762914,0.015744261,0.017095985,0.0038640471,-0.0014902203,0.005321028,-0.022757715,-0.0020732898,-0.0180156,-0.023378178,-0.003077388,-0.013694515,0.017095985,0.009827699,0.0086864885,-0.017118145,0.023577612,0.009550706,0.0032463537,0.0013489542,-0.022824192,0.03505619,-0.014603051,0.014403617,0.043388125,0.027898697,0.023223061,-0.0065924246,0.007417863,-0.005550932,-0.045692705,0.023799207,0.016364725,0.01880226,-0.014968682,0.024331033,-0.020852005,0.013184849,0.010420463,0.000111143294,-0.030247595,0.03481243,-0.007262747,-0.0052739396,0.0072959857,0.03505619,-0.030358393,-0.015999094,0.009661503,-0.04108355,-0.004667326,-0.024397511,-0.0026951383,0.000826823,-0.025217408,-0.0037338606,0.012475748,0.010342904,0.013439682,0.003310062,0.017627811,0.033283435,0.0016744204,-0.004093951,0.009644884,0.019677557,-0.043321647,0.050966643,0.041859128,0.043498922,0.035211302,0.030890217,0.00675308,-0.018924136,-0.015101638,-0.032862406,-0.016287167,0.022458563,-0.0054318253,-0.006115997,-0.011744487,-0.012464669,-0.012852458,-0.037870433,-0.053492818,-0.00070009887,-0.0194892,0.0428563,0.02590435,-0.0030607686,0.0003735938,-0.013594798,-0.049725715,0.039687503,0.03377094,-0.009079819,-0.03202035,0.020109665,0.014314979,-0.008957942,-0.01542295,0.051631425,-0.0037975688,-0.009052119,-0.013561559,-0.001801837,0.015578065,0.037693158,0.0399091,0.023932163,0.00066962966,0.007074392,0.028607799,-0.034258448,0.01843663,-0.009185076,-0.042811982,0.0063652904,-0.011445335,-0.023932163,0.0036590726,0.0050191064,-0.0068250983,0.012209835,0.0007818117,-0.010104691,-0.006802939,0.030624306,-0.00112459,-0.028563479,0.013694515,0.030336233]},{"id":"interface-APIMessageSnapshot","type":"interface","source":"main","text":"Interface: APIMessageSnapshot\nDescription: Snapshot of a forwarded message\nProperties: attachments: APIMessageAttachment[] | null, content: string | null, edited_timestamp: string | null, embeds: APIEmbed[] | null, mention_roles: string[] | null, mentions: string[] | null, stickers: APIMessageSticker[] | null, timestamp: string, type: number","meta":{"url":"/docs/typedefs/APIMessageSnapshot"},"embedding":[0.022305707,0.00061698153,0.0010759643,-0.0049329926,-0.017775932,-0.024433328,0.010100481,-0.020818658,0.028070873,-0.010569473,-0.00017265475,-0.024067285,0.0328523,-0.0011410227,-0.0073837605,0.006182684,0.019457439,0.016746437,0.022580238,0.056553543,0.030312883,-0.005745149,0.026309295,0.027293032,-0.0045412127,-0.013269035,-0.031639785,0.0071206675,0.026194906,-0.012388246,0.012960187,-0.029580798,0.022328584,0.026949868,-0.004003588,0.0993805,0.0053133336,0.030198494,-0.039029267,-0.016551977,0.037107542,0.030610291,-0.015991475,0.021264773,-0.056050234,0.030953456,0.023838509,0.028231015,-0.01467601,0.07865335,-0.042140625,0.004695637,-0.0020075135,0.08391521,0.0050988556,-0.010289222,0.0016185935,0.017364133,-0.042255014,0.03790826,-0.001624313,-0.030518781,-0.015762698,0.016906582,-0.022397216,0.0019474596,-0.029008856,0.07160704,0.006594482,0.021413477,0.06456072,0.028985979,-0.02013233,-0.030495903,-0.010775371,-0.02420455,-0.0028539863,-0.017032407,0.030152738,-0.034430858,0.027498933,0.021379162,-0.042071994,-0.03266928,-0.025783109,0.012193786,-0.00554497,-0.035277333,-0.037107542,0.033813164,-0.068861715,0.012365368,-0.028345404,-0.030656047,0.013406301,-0.04266681,-0.04936996,-0.014504428,-0.03170842,0.04323875,0.050971396,-0.024868002,-0.105054155,-0.02304923,0.012170908,-0.020349666,0.017066725,-0.024181673,-0.067214526,0.022591677,-0.0225688,-0.042758323,0.00063342485,0.012422563,-0.014698888,-0.015316585,-0.032120217,0.0031942914,0.049552985,-0.008699225,-0.041248396,-0.0013719439,0.028368283,0.012239541,0.014813276,-0.024776492,0.006085454,-0.009482784,-0.028848713,0.016300324,0.042941343,-0.006348547,-0.01059807,-0.033309855,0.0272244,0.009465626,0.01720399,0.015797015,-0.038892,-0.05238981,0.04220926,0.0009908881,-0.0150878085,-0.026583826,0.023541098,0.047310974,-0.030610291,0.046807665,0.02518829,0.027430298,-0.0056221816,0.0116676,-0.05238981,-0.0005958912,-0.0076182564,0.03703891,-0.010678141,-0.04335314,-0.013783783,-0.016609171,-0.034202084,-0.05650779,-0.013577883,-0.02800224,-0.048775144,-0.018919814,0.0136122,-0.023609731,-0.023380956,-0.03401906,-0.055272397,-0.060305476,-0.040882356,-0.027819218,-0.01000897,-0.010775371,0.033538632,-0.020006502,-0.0076296953,-0.0098717045,0.04239228,0.025142534,-0.007909946,-0.0916021,-0.02964943,-0.027110012,-0.016677804,0.041179765,0.003411629,-0.0018716775,0.015488167,0.039944373,-0.01964046,0.010998429,-0.013303352,-0.007601098,-0.012617023,0.032120217,0.00044790143,-0.05463182,-0.011793427,-0.001409835,0.030175617,0.016380396,-0.018130535,0.008310305,0.026652459,0.018130535,-0.03703891,-0.006989121,0.071286745,-0.013200402,-0.0111585725,-0.005270438,-0.023518221,0.007601098,-0.03266928,-0.00096229103,-0.034568124,0.009391274,-0.051062908,0.0012318183,0.08039205,-0.004501177,-0.012491195,0.0311136,-0.05037658,0.0062455977,-0.070554666,-0.0544488,-0.057788935,0.022134123,-0.057788935,-0.05870404,-0.026858358,-0.00046398726,0.011696197,-0.0047099357,0.01573982,0.0039206566,0.017135357,-0.0096829645,0.031571154,0.04616709,-0.0052275425,-0.0049644494,0.02662958,-0.03985286,-0.0010902629,0.035940785,0.068221144,0.0049272734,-0.040584944,0.02459347,0.0010523718,-0.02731591,-0.04239228,0.029443532,0.02692699,0.0484091,0.05152046,-0.0068690134,-0.057880446,-0.0018645283,0.008973757,0.00709779,0.067351796,0.029169,-0.0018287819,0.024044408,-0.030312883,0.03463676,0.052206792,0.05357945,-0.01787888,0.04598407,-0.029031733,-0.03246338,0.019274417,0.011438823,0.0028897328,-0.04259818,-0.005808063,0.041477174,-0.02304923,0.005176068,0.05238981,0.006114051,0.038869124,0.01808478,-0.01886262,0.0014370022,0.074626885,-0.015259391,0.027064256,-0.0048643597,-0.0053905454,0.028231015,0.041179765,0.009539979,0.05454031,-0.057331383,0.058566775,-0.0075496235,0.016117303,-0.0009880284,-0.0029126105,-0.0037690923,0.009522821,-0.016940897,-0.013966803,-0.033424243,-0.0760453,-0.053808227,-0.040173147,0.035117187,0.07284243,-0.030678924,0.0027481774,0.005201805,-0.012742849,-0.0115875285,0.029809574,-0.007738364,-0.0029126105,-0.014126947,0.0007814146,0.029786697,0.017467083,0.044222493,0.012067959,-0.027773464,-0.0074695516,-0.013852416,0.04209487,0.0055478294,-0.012651339,-0.026904114,0.012891554,0.027567565,0.0050130645,-0.020189524,-0.009757317,-0.00875642,-0.014264213,-0.029397776,-0.066162154,0.04987327,-0.027270155,-0.0352087,-0.013898171,-0.015499606,0.037587974,0.034362227,0.03141101,0.009025232,0.023609731,-0.028551303,0.016689243,0.048683632,-0.05376247,-0.039143655,0.028276771,0.002507962,-0.010735336,0.017238308,-0.039532576,-0.013783783,0.011238644,-0.013108891,0.037404954,0.0072293365,0.011438823,0.0039235163,-0.031296622,0.012193786,-0.019411683,-0.025005268,-0.012765727,0.014767521,0.017409889,0.009402713,0.0019703372,0.034682512,0.05298463,0.002665246,-0.022088367,0.012067959,-0.015236513,0.029603675,0.03159403,0.0068175388,-0.045526516,-0.029191878,0.0060511376,0.04987327,-0.009305483,0.013108891,-0.0023292305,-0.037862506,-0.019446,0.011850622,0.029169,-0.019457439,0.0012775736,-0.0024050127,0.00350028,0.019171469,0.07247639,-0.013269035,0.00025129665,-0.034842655,0.017638667,-0.0038434446,0.04511472,-0.010226308,0.0071378257,0.0030884824,0.02304923,0.035437476,0.028459793,-0.016792193,-0.014367162,0.03772524,0.03374453,-0.010569473,0.017615788,-0.044794433,0.037976895,-0.02489088,-0.02596613,0.04520623,0.061815403,-0.0040379046,0.026332172,-0.081535935,0.027430298,-0.000885079,-0.033767406,0.008790736,0.037748117,-0.044314,-0.002965515,0.017238308,-0.028528426,-0.022248512,-0.02450196,-0.011736233,0.025028145,-0.035643373,-0.020738587,-0.006096893,-0.020441178,0.023861386,-0.025531454,-0.018977009,-0.019869236,0.036512725,0.022362899,-0.0007842743,-0.043215875,0.0068690134,0.015579677,0.027864974,0.009030951,-0.004521195,-0.0250739,-0.010043287,0.012868676,0.043810695,-0.0061998423,0.0013669394,0.01467601,0.06327957,0.010592351,-0.021768082,0.036192436,-0.03296669,0.027430298,0.02246585,-0.017249746,-0.004838622,0.009997532,-0.035071433,-0.034453735,0.071790054,0.023586854,0.0029397777,0.029420653,0.0069948407,-0.019331612,-0.00071814365,-0.022969158,-0.010569473,-0.0038377254,-0.031754173,-0.0029855329,-0.047860038,0.011827744,-0.021905348,0.025805986,0.0008128714,-0.010357855,-0.00035639084,0.060991805,-0.01623169,-0.042026237,0.004629864,-0.0004940142,-0.018977009,0.004140854,0.0014062604,0.026904114,-0.028734324,-0.011124256,-0.004704216,-0.024868002,0.018599527,0.011839182,-0.007177862,0.025691597,-0.015991475,0.046075583,-0.004481159,0.018965568,-0.013657955,-0.02683548,-0.045000333,-0.012102275,-0.035712007,0.028025117,-0.006182684,-0.00026899108,0.019503195,-0.020052258,0.0041236957,-0.032623526,-0.023884263,0.032188848,-0.0020847255,-0.0030598852,0.023746997,0.012456879,0.0024936635,-0.01982348,-0.000544774,-0.007017718,0.014058314,0.0036890206,0.027819218,-0.0071321065,0.010214869,0.060076702,0.012273857,0.03395043,-0.0019360209,-0.013852416,0.0108497245,0.017581472,0.0045669503,-0.0048414823,-0.02516541,-0.0020246718,-0.018508017,-0.0015285128,0.016712122,0.013429179,0.031159354,0.010655264,-0.0069605242,0.005710833,0.016666366,0.0024850843,0.032920934,-0.008773577,0.030061228,-0.042758323,0.00884221,-0.014367162,0.00085219234,0.014355724,-0.017730176,0.012033642,0.016494783,0.049232695,0.02498239,0.014607377,-0.0016500503,-0.0087049445,-0.0151106855,0.061037563,-0.01000897,-0.01352069,-0.019160029,0.012434001,-0.0038291463,0.014847592,0.017284062,-0.040607825,0.00466704,0.011804866,0.030312883,-0.041294154,-0.0023764155,0.016380396,0.040333293,-0.0313195,-0.038640346,-0.0038606029,0.0051846467,-0.010043287,0.037862506,-0.047402486,-0.015511044,-0.009294044,0.019182907,0.019205784,0.007280811,0.029146122,-0.008316024,-0.011095659,-0.01214803,0.0008300296,0.00456981,-0.03042727,0.03818279,-0.0031256585,-0.026217783,-0.01127296,-0.0043124366,0.023369517,-0.02946641,0.017970392,0.035895027,0.0030370075,0.014378601,-0.008807894,-0.0027395983,0.022728942,-0.0087507,0.020647077,-0.000845758,0.026904114,-0.009145339,0.044565655,0.025943251,0.0096829645,0.0012918721,-0.041843217,-0.0015928561,-0.014149825,-0.050422333,0.03166266,0.004052203,-0.004684198,-0.036398336,0.0150878085,0.041866094,-0.024547715,0.0033372766,-0.0074523934,0.016757876,0.0015113546,0.014172702,-0.009122462,-0.011358752,-0.023232251,-0.033035323,-0.009128181,0.0028840133,-0.007423796,0.014023998,0.034385104,-0.009534259,0.034110572,-0.0369474,0.025005268,-0.019308735,0.013211841,-0.0016114443,-0.009568576,-0.023952896,-0.044268247,-0.0027524668,-0.008767858,0.0054134233,0.01672356,0.015808454,-0.0021819556,-0.025051024,0.0040607825,0.02198542,0.038159914,-0.0145158665,0.011118537,0.025531454,0.031022089,0.012090837,0.016792193,0.008173039,-0.0020689971,-0.023884263,-0.03335561,0.004335314,-0.0101062,-0.02809375,0.017821686,0.024456205,0.021951102,-0.02839116,-0.013394862,0.008235953,0.0049215537,0.035437476,-0.018553771,0.009402713,-0.018039025,0.022088367,0.0076468536,-0.0036575638,0.059939437,-0.0030312883,-0.014836154,0.04365055,-0.008836491,-0.018656721,0.037885383,0.024959512,-0.0062170005,0.0074009188,-0.022889085,-0.019754848,-0.013726588,0.02071571,-0.008453291,0.031845685,-0.009276886,0.012685656,-0.014607377,0.0136350775,0.022900525,0.0038062686,0.012434001,-0.002127621,-0.03509431,-0.00026166308,-0.023838509,0.0023478186,-0.03063317,0.007738364,-0.023106424,0.005776606,0.00046505965,0.016105864,0.0054248623,0.0004950866,-0.023907142,-0.0043610516,-0.009763036,0.024868002,0.054769088,0.009477065,-0.015602555,0.02314074,-0.009173936,-0.030564535,-0.011307277,-0.007069193,0.037565097,-0.009843107,-0.0074009188,-0.00077641016,-0.02109319,0.018405067,0.038892,-0.0060225404,-0.0041065374,-0.019617582,-0.030930579,0.018462261,-0.0009923179,-0.03296669,-0.0029712345,-0.016460467,0.003325838,-0.019709093,-0.049141187,-0.039418187,-0.026881235,-0.021642255,-0.011444543,0.003217169,0.012983065,-0.04548076,-0.00845901,0.016734999,0.016002914,-0.08039205,0.03198295,0.04678479,-0.051886503,0.010998429,0.0058195014,-0.036398336,-0.022889085,0.013166086,-0.044657167,0.019789165,-0.0050902762,0.0073094084,-0.017215429,0.02225995,-0.010718178,0.010781091,-0.004383929,-0.00021894622,-0.018588088,-0.022694625,0.00059446134,0.023209373,0.06575036,-0.013303352,-0.0016843667,-0.0075610625,0.04284983,0.026675336,-0.046029825,0.014378601,-0.004286699,-0.02342671,0.0053991247,0.037885383,-0.0005043806,0.0016614891,-0.01468745,-0.027201522,-0.009928899,0.015865648,-0.010580911,0.017638667,-0.0042037675,0.0026566668,0.029786697,0.017238308,0.00554211,-0.023792753,0.007852753,-0.011152853,-0.022637432,0.011736233,-0.0026580966,0.020555565,-0.012045081,-0.04859212,-0.012571267,0.009745877,-0.01790176,-0.0043696305,0.049507227,0.02411304,0.028047996,0.01748996,0.0058566774,0.009803072,-0.017387012,0.028711447,-0.006348547,-0.022763258,0.010186273,0.019983625,0.022294266,0.016471906,0.031273745,0.014424357,-0.019045642,-0.007749803,-0.0059539075,0.03957833,-0.01099271,0.035254452,-0.015991475,-0.02955792,-0.0015242232,0.0076068174,0.002186245,0.015442411,0.021859592,0.0313195,0.0006291353,0.014961981,-0.013852416,-0.022786137,-0.0038949193,-0.015602555,-0.011621845,0.037244808,-0.018405067,0.052710097,-0.0074809906,-0.02206549,-0.080254786,-0.04891241,-0.016082985,0.009946057,0.03530021,0.02129909,0.059253104,-0.03598654,-0.013406301,-0.005035942,0.026034763,-0.028253894,-0.031090721,0.0026995623,0.019308735,-0.017958952,-0.014115508,-0.025394188,0.009894582,-0.005748009,-0.012422563,0.014847592,0.013211841,0.0066059204,-0.04218638,-0.028642815,-0.0018287819,-0.017409889,-0.0048586405,-0.013246157,-0.0010287792,-0.018141974,0.023094984,0.038960632,-0.015568239,-0.040882356,0.01662061,-0.003423068,0.00047113653,0.039486818,0.004432544,-0.012113714,-0.0066345176,-0.005902433,0.0350028,0.004544073,-0.042552423,0.012925871,0.007761242,0.004023606,0.007423796,-0.015980037,0.03170842,-0.0352087,-0.01575126,-0.017375574,0.06309655,-0.012262419,0.05152046,-0.0030684643,-0.017661544,-0.033081077,0.0013290483,-0.023701243,0.01720399,0.0037376357,0.051886503,0.030038351,-0.012605583,0.032440502,-0.013589323,-0.037931137,0.040676456,0.054037,0.011553212,0.04220926,-0.02498239,-0.032326113,6.339387e-7,-0.0063027916,0.010437926,0.054677576,-0.016712122,-0.012479756,0.007749803,-0.011170011,-0.0023349498,0.019777726,0.05005629,0.008316024,0.045000333,-0.026355049,0.011999326,-0.028757202,-0.001837361,-0.019995064,0.0011052763,-0.018988447,0.03733632,0.008882246,-0.03779387,0.026789725,0.016460467,-0.019434562,0.025805986,0.009402713,0.0330582,0.0058795554,-0.018393628,-0.012422563,-0.012296735,-0.004647022,-0.041202642,-0.025028145,-0.011318716,0.0012575557,0.0062055616,0.0052961754,0.006445777,-0.013886732,0.06428619,-0.03422496,0.013772343,0.0009465626,-0.014058314,-0.005699394,-0.0012175197,-0.004586968,0.018061902,-0.017958952,-0.037016034,0.07078344,-0.03857171,0.0172955,-0.01739845,0.024753613,0.013566445,-0.0046441625,-0.0061998423,-0.02302635,-0.006114051,0.037702363,-0.048775144,0.033195466,0.062044177,0.0052961754,0.0133719845,-0.00057515834,-0.0015485308,0.018885497,-0.013166086,0.013383424,-0.006863294,-0.030678924,0.004052203,0.0064114607,0.022671748,0.015007736,0.01730694,0.006840416,-0.029420653,-0.0034659635,-0.015728382,-0.025691597,0.025920374,-0.0038119878,0.010031848,0.015762698,0.025943251,0.0019403105,-0.009843107,-0.009173936,-0.012731411,-0.0010237747,0.0204183,-0.02216844,-0.00096086116,-0.032920934,-0.015259391,-0.012983065,-0.034659635,-0.014104069,0.049919024,-0.023930019,0.026789725,0.017478522,0.004918694,0.015007736,0.03395043,0.006016821,-0.06890747,-0.00094441784,-0.0022548782,-0.0136350775,0.008436132,0.050742622,0.0009022372,-0.067717835,0.00077926985,0.017352695,-0.0051732077,0.00427812,0.017146796,0.022683186,-0.0023935738,0.021173263,-0.009997532,-0.03433935,-0.022637432,-0.0107296165,-0.010701019,0.009768755,0.006943366,-0.002011803,-0.042163502,-0.0061026122,-0.008127284,-0.018530894,0.017409889,0.016792193,0.003168554,-0.0073780413,-0.012800043,0.048546366,-0.020578444,0.0153509015,-0.003463104,0.010003251,-0.0024765052,-0.0088250525,-0.005716552,-0.017020969,0.018496577,-0.008041493,-0.0017615788,-0.0018459401,0.005161769,-0.027498933,0.014721766,-0.03671862,0.020464055,0.009368396,-0.033264097,-0.004529774,0.005027363,-0.029786697,-0.0136122,0.038663223,-0.0033115393,0.01157037,0.015305146,-0.024250306,0.00071313913,0.0057079727,0.018828303,-0.013303352,-0.0032715036,0.02489088,0.00446972,0.019720532,-0.026194906,0.017455645,-0.0068918914,0.00019428127,-0.0034173485,0.02839116,-0.035895027,0.041202642,0.023060668,0.020818658,0.009580014,-0.025622964,-0.029695185,0.009002354,-0.012491195,0.041683074,0.011953571,-0.00007891001,-0.0010666703,-0.011232925,0.01002041,-0.0017244027,0.0056765163,-0.0071378257,-0.0050073448,0.0115875285,-0.029672308,0.039624084,-0.016872264,-0.011198608,0.00035656957,-0.028665692,-0.028642815,-0.018119097,-0.038914878,-0.002323511,-0.017432768,-0.018450823,0.016197374,-0.032028705,-0.00913962,0.036100928,-0.024227427,-0.0069376463,0.041019622,-0.009946057,0.002615201,-0.026995623,0.030290004,-0.0055735665,-0.021939663,0.040218905,0.03722193,0.008464729,-0.0042466633,0.01751284,0.048363347,-0.029420653,0.000037287882,-0.001380523,0.0153737785,-0.0049930466,0.0070920708,-0.005727991,-0.028528426,0.019205784,0.02946641,-0.011307277,-0.005433441,-0.007458113,0.048866656,-0.038320057,0.012479756,0.007349444,-0.030015472,0.0066059204,0.0009723,0.023952896,-0.014710327,0.009906021,0.0062341588,0.0017730177,0.039418187,0.015122125,-0.03616956,0.0006409316,-0.015385218,-0.034751147,-0.0050016255,0.022134123,-0.0063085114,-0.020349666,0.018988447,-0.014287091,0.02614915,-0.017169675,0.004175171,-0.013005942,-0.0056336205,0.0013226139,-0.0033372766,-0.012605583,-0.024822246,0.012365368,-0.025211167,-0.0061598066,-0.016929459,0.012914431,0.0019217223,0.0010909778,-0.015499606,-0.012708533,0.003723337,0.023907142,-0.014092631,0.011953571,0.05184075,-0.0038148477,0.0352087,0.013623639,-0.010163395,0.028276771,0.000031769545,-0.027270155,-0.0021504988,-0.029100368,-0.0009193954,0.015488167,-0.014023998,0.006760345,0.0029683746,0.000065594504,-0.007572501,0.0062970724,-0.02450196,-0.011850622,0.0077212057,-0.03706179,-0.025600087,0.0049901865,-0.00022681041,0.028231015,-0.00904239,0.0020103732,0.043421775,-0.028025117,-0.014664572,0.0076754508,-0.017775932,-0.02791073,-0.01624313,0.018267801,-0.029695185,-0.011061342,-0.0011031316,0.0039521134,-0.065292805,-0.028825834,-0.0136350775,0.013280474,-0.0065773237,-0.04959874,-0.012948748,0.0037004594,0.013040259,-0.054952107,-0.045435008,0.008115845,-0.028688569,0.03072468,0.017570034,-0.02266031,-0.0028454072,-0.030015472,-0.036123805,-0.029832453,0.017672982,0.0027553267,0.024868002,-0.028894467,-0.0027982222,0.0071435454,0.031067844,0.019514633,0.0047185146,0.030175617,0.016792193,-0.018141974,0.031845685,-0.0012010764,0.020555565,0.03790826,0.0175014,0.0019274418,-0.018050464,0.03433935,0.01778737,-0.0010273494,0.005379107,-0.022728942,-0.05179499,0.010089043,0.019446,-0.008064371,0.011707636,-0.0034488053,0.011639003,-0.01779881,0.008327464,0.015682627,-0.0451376,-0.010546595,-0.024616348,0.03733632,0.013783783,-0.019102836,-0.0028911626,-0.003297241,-0.03676438,-0.015591117,-0.0059825047,0.017444206,-0.013898171,0.014561622,0.007166423,0.0052332617,-0.017215429,-0.031159354,0.004023606,0.016780755,-0.00043932232,-0.039715596,0.012216664,0.018999886,0.0070634736,-0.042529546,0.021379162,0.013040259,0.03141101,0.026400805,-0.01583133,0.0025322696,-0.027864974,-0.0034402262,-0.0213906,0.007349444,-0.02245441,-0.015808454,0.015922843,0.022317145,0.00690333,-0.022088367,-0.025874618,-0.017043848,-0.022957718,0.0026781145,0.019914992,-0.0313195,-0.003119939,-0.01877111,0.029535042,0.008453291,-0.012960187,-0.009168217,-0.011781988,-0.0012282437,-0.012971626,0.00086935057,0.023472466,0.012090837,0.013795221,0.018130535,0.013131769,-0.002848267,-0.023586854,0.0025737353,0.017741615,0.031159354,-0.015293707,-0.016128741,-0.0289631,0.016803632,0.004421105,-0.047677018,0.0088708075,0.003954973,-0.012216664,0.033218343,0.016266007,0.008001457,-0.0006391443,0.005213244,0.02791073,-0.04385645,0.017936075,-0.016300324,-0.01322328,0.021710888,0.01215947,-0.015442411,0.018393628,0.00016353943,0.019491754,-0.010071884,-0.0250739,0.03587215,0.01215947,-0.0064800936,0.0118963765,0.0015113546,-0.0021462094,0.022671748,0.034270715,0.02381563,0.05238981,0.053716715,0.022397216,-0.03626107,0.009551418,-0.010066165,-0.0052103843,-0.01565975,0.01768442,-0.003383032,0.03239475,-0.018153412,-0.009311202,-0.026721092,-0.03587215,0.005482056,-0.061220583,0.019114275,0.030884823,0.0145158665,0.020978803,-0.027704831,-0.03351575,0.031159354,0.023586854,0.038869124,-0.019331612,0.020784343,0.003754794,0.01886262,-0.028459793,0.020864414,-0.030839069,-0.0034459457,0.004009308,-0.004200908,-0.0014505858,0.012708533,0.024273183,-0.004089379,0.015430973,-0.011461701,-0.0012418273,-0.018896936,-0.0008378938,-0.014504428,-0.044222493,-0.0015256531,-0.021024557,0.0027081415,0.0002629142,-0.0097287195,-0.0020332509,0.013875293,-0.009597173,-0.0073837605,0.0022520183,0.016700683,-0.023609731,-0.025508577,0.017169675,0.015190758]},{"id":"interface-APIMessageSticker","type":"interface","source":"main","text":"Interface: APIMessageSticker\nProperties: animated: boolean, description: string, id: string, name: string, tags: string[]","meta":{"url":"/docs/typedefs/APIMessageSticker"},"embedding":[0.006841959,-0.025188718,-0.038286854,0.013144996,-0.05867214,-0.014257986,-0.008165831,-0.017924994,0.005658675,-0.033764597,-0.0014805695,-0.028445678,0.017034603,-0.018147593,-0.0057231113,-0.00746289,-0.02811764,0.009747448,0.032499306,0.03517048,0.029523522,-0.021920042,-0.0093959775,0.05487626,0.0061448757,0.016155927,-0.045386557,-0.01126463,0.015171809,0.03395205,0.0115926685,-0.0277896,0.056610182,0.02950009,-0.020397004,0.053095475,-0.030132737,0.002738541,-0.010790144,-0.064811155,-0.007281297,0.047776554,0.0071699983,0.004030195,-0.023150189,0.075214684,-0.0026418865,0.08154115,0.000020994412,0.027695876,-0.015581858,0.021592004,-0.025423033,0.025329307,0.0067423754,-0.013414457,-0.013133281,-0.0037255872,-0.020607887,0.008470438,0.025259012,-0.0063850475,-0.037865087,-0.0242046,-0.0062678903,0.036576364,-0.062139984,0.04423842,0.020912495,0.020033818,0.06738861,0.023630533,-0.028844012,0.0064026206,-0.039856754,-0.025282444,-0.04234048,0.026618032,0.04836234,0.025961954,-0.044660185,0.042504497,-0.036060873,-0.0452694,-0.013543329,-0.022775289,-0.031351168,-0.04320744,-0.020385288,-0.010350806,-0.03805254,0.022166071,-0.07990096,-0.024251465,0.0074336007,-0.025305875,-0.011739114,-0.027508425,-0.033717737,0.024462346,0.03481901,-0.05028371,-0.09203841,0.025446463,-0.019014554,-0.000043453285,0.0063791894,0.030413913,-0.024813816,0.0061975964,-0.03153862,0.013566761,-0.048456065,0.02760215,0.025657346,-0.03001558,0.016999457,-0.0052779154,0.0531892,-0.055110574,-0.051033515,0.0018818316,0.044214986,-0.009612718,-0.0075156107,-0.0046481974,-0.01793671,-0.020572739,-0.050846066,-0.023806268,-0.015300682,-0.0066662235,0.00010599032,-0.009202669,-0.019799504,-0.0061155865,-0.022447249,0.008880488,-0.027859895,0.0027912615,0.031608913,-0.029570384,-0.012336615,0.0072754393,0.023056464,-0.0034414819,-0.010426958,0.039856754,-0.00006786858,0.02350166,-0.0016094419,0.06584214,-0.034045774,-0.0063791894,-0.02554019,0.0079432335,0.022025485,-0.03242901,-0.00062239566,-0.034772146,-0.025352739,-0.06307724,0.03001558,-0.022892445,-0.032522738,0.010731566,0.032897636,-0.0000011984549,-0.025915092,0.054595083,0.012664653,-0.054407634,-0.055672925,-0.03718558,-0.050143123,0.0025027627,0.034069207,-0.029593816,-0.03238215,0.008698895,0.04798744,0.061015278,-0.017655535,-0.070200376,0.0018701159,0.011914849,-0.006988405,0.0056674615,0.008107252,-0.014304849,-0.00096215046,0.0066662235,0.015452986,0.014960927,0.01012235,-0.029218914,0.012032007,-0.020830484,-0.032171264,-0.053282928,0.01940117,-0.0056762486,0.03826342,0.0005942048,-0.02811764,-0.011387644,-0.014281417,-0.002510085,-0.0023240987,0.005603025,0.0699192,-0.0145157315,-0.004818075,-0.01614421,-0.050377436,-0.008517302,0.009144091,-0.006847817,-0.027813032,0.006367474,-0.021287397,0.01473833,0.032874208,-0.03053107,-0.010690561,0.03622489,-0.03345999,0.052251946,-0.03622489,-0.008505586,-0.060265474,0.005371641,-0.014550879,-0.05970312,-0.0055093,-0.011434507,-0.0023929283,0.008517302,0.010163355,0.005444864,0.008001812,-0.0009899752,0.017315779,0.014726614,0.033905186,0.026172835,0.017432936,-0.005556163,-0.009132375,-0.025493326,0.046253517,0.0006762146,0.009319826,0.025071561,-0.0001889154,-0.018604504,-0.0012857962,0.038427442,0.034256656,0.018253034,0.03549852,-0.010813575,-0.038310282,-0.011364212,0.023513377,-0.0018906184,0.047097046,0.036927834,0.0031749501,0.023044748,-0.014820339,-0.025587052,0.05164273,0.053282928,0.012746663,0.014937496,0.0011517981,0.05571979,-0.01085458,0.05473567,-0.0144923,-0.025141856,-0.002366568,0.014937496,-0.050752338,0.045363124,0.041801557,-0.0126880845,-0.0022860228,0.012032007,0.04374636,0.04850293,0.041707832,-0.0115926685,-0.0022054773,0.024228033,-0.016847152,-0.0015303611,0.040067635,0.0064611994,0.03587342,-0.06518606,0.04972136,-0.018815387,0.0020224198,-0.008224409,0.015019505,0.021931758,0.030203031,-0.007837792,0.025282444,-0.022915876,-0.010731566,-0.030554501,-0.078260764,-0.0046071922,0.053236064,0.026336856,-0.042645086,-0.0002522533,-0.013285585,0.01047382,0.030601364,-0.055766653,-0.038661756,-0.06799783,0.03702156,0.008833625,0.026055679,0.026196267,0.008341567,-0.035100188,0.01148137,0.02331421,0.06738861,-0.012114016,-0.0076444834,0.0013495003,0.002038529,0.05384528,0.037865087,-0.055766653,-0.041262634,0.017140044,-0.0030900114,-0.018827103,-0.04990881,-0.0032013103,0.021556856,0.011762545,0.01362534,0.02811764,0.0038368863,-0.05379842,-0.029874992,-0.05590724,0.034045774,-0.02119367,-0.025868228,0.05473567,-0.011985144,0.030203031,0.0033536144,0.0192723,-0.04116891,-0.011475512,-0.04836234,0.0013253366,0.0072578657,-0.041239206,0.046253517,-0.02160372,-0.012078869,-0.010145782,0.013367594,-0.020678181,-0.029617246,-0.016437104,-0.01791328,-0.019412886,0.04613636,0.005579594,-0.018979406,0.049533907,0.013719065,0.0029816413,-0.0021659369,0.04376979,-0.012242889,0.052908026,0.0552043,-0.035779696,-0.068044685,-0.00027751524,0.009970047,-0.0077850716,-0.041754693,0.018768525,0.010878012,0.002439791,-0.007158282,0.007181714,-0.025751071,0.023161905,-0.010057914,0.016050486,-0.0154295545,0.02374769,0.058578417,-0.023115043,0.0053101336,-0.05178332,0.022072347,0.05229881,0.029593816,-0.0015215743,-0.018651368,-0.0289846,0.027016366,0.05300175,0.026711758,0.0018715804,-0.005061175,-0.040887732,-0.0030080017,0.01774926,-0.0005832213,-0.039434988,-0.014070535,-0.03552195,0.02032671,0.09944272,0.055954102,-0.025774503,0.04376979,-0.058719,0.01294583,-0.013601908,-0.023864847,-0.011645389,-0.016542545,-0.062514886,0.007281297,0.03036705,-0.0040155505,-0.01657769,0.012570928,-0.03807597,0.01715176,-0.028562834,-0.069684885,-0.004185428,-0.05609469,0.033670872,0.005441935,-0.021369405,0.014527447,0.013929947,0.02040872,-0.02160372,0.003951114,-0.01750323,0.01050311,0.042504497,-0.0073047285,-0.028305091,-0.012629506,0.05492312,0.04662842,0.026454013,0.025001267,-0.0289846,0.033014797,0.033834893,0.008072105,-0.03631862,0.019366024,-0.044730477,0.02220122,-0.02811764,0.03704499,0.026547737,0.0070352675,-0.026196267,-0.009144091,0.095646836,0.017186906,-0.026266562,-0.021369405,-0.019260583,-0.017866416,-0.008710611,0.007128993,-0.011194335,0.00014800203,-0.033998914,0.009237817,-0.035545383,-0.008933208,-0.0059662117,0.045363124,-0.018241318,-0.023817984,0.013496467,0.090679385,0.021076513,0.002955281,-0.022259798,0.0025715923,-0.036506068,0.01612078,-0.05098665,-0.008903919,-0.04306685,-0.015991908,-0.00583441,-0.027883327,0.050752338,-0.023255631,0.012383477,-0.033061657,-0.0018540069,0.059093904,-0.0014673893,0.017842986,-0.0128755355,-0.042153027,-0.05867214,-0.025352739,-0.013121565,-0.0043084426,-0.029382933,-0.00879262,0.016378526,-0.0086696055,0.0021161453,-0.0125006335,0.013765927,0.029195482,-0.021556856,0.004214717,-0.0021674014,0.028164502,0.033834893,-0.031772934,0.02811764,-0.02966411,0.034678422,0.0034414819,0.029382933,-0.0009035721,-0.026828915,0.043863516,-0.011557521,0.036998127,-0.008898062,-0.041567244,-0.023044748,0.04681587,0.002811764,-0.018358475,-0.034280088,0.0061624493,-0.015464702,-0.0038632464,0.012242889,0.01595676,0.04447273,0.012172595,0.03221813,-0.014914065,0.0147031825,0.0068595326,0.020631317,-0.017022887,0.015827889,-0.01579274,-0.00024511406,0.00952485,-0.03718558,0.019073132,-0.0036699376,0.0071524247,0.03315538,-0.010754997,0.031163717,-0.0038632464,-0.012442055,-0.005585452,0.014855486,0.02051416,-0.048737243,-0.009618576,-0.011932423,-0.012957546,-0.016050486,-0.03587342,-0.0049586627,-0.02117024,0.00043348028,0.008329851,0.0033829035,-0.039177243,-0.0068888217,0.039927047,0.016530829,-0.03976303,-0.015863035,-0.0023358143,0.014000242,-0.02228323,0.044730477,-0.034537833,-0.015839603,-0.021392837,0.0008537804,0.025961954,-0.0008435292,0.007831934,-0.016753428,-0.015663868,0.0068888217,-0.004290869,0.01025708,-0.033998914,0.017620387,0.011159188,-0.017772691,-0.00083034905,-0.0057846187,0.016659701,-0.016940877,-0.030226462,0.010532399,0.0072520077,0.0035937857,-0.022681562,0.02556362,0.01913171,-0.005687964,0.010333233,0.00083327794,0.055860378,-0.008482154,0.048971556,-0.0010492859,0.02453264,0.012910683,-0.015183525,0.033225678,0.0033184672,-0.0353345,-0.002999215,-0.004079987,-0.0086754635,-0.005582523,-0.010561688,0.02108823,-0.0036142883,0.018042153,0.01500779,0.028914306,-0.01145208,0.026875777,-0.0041619963,0.023982003,0.022540973,0.005503442,-0.000044528748,-0.009759164,0.021053083,0.010467962,-0.0011583882,0.0028805935,-0.019658916,-0.024954405,0.012852104,-0.030788815,-0.0066955127,0.00025646362,0.00092261005,0.020373574,-0.040583126,0.008657889,0.010438673,0.012594359,0.0152421035,0.014105682,-0.014504015,-0.028422248,0.018897397,0.019928377,0.026172835,0.008616885,0.024602935,0.023161905,0.02469666,0.0042996556,0.0013604837,0.0055385893,0.00947213,-0.0018144664,-0.042270184,-0.0022450178,0.005553234,0.0054331482,0.01337931,-0.0007637161,0.047893714,0.042645086,-0.04046597,0.002477867,-0.018768525,0.04016136,-0.012090585,-0.002987499,-0.017081466,0.0012440591,0.004920587,0.007931517,0.019600337,0.022330092,-0.02016269,0.030132737,0.03071852,-0.005242768,0.019494897,0.02141627,-0.012067153,-0.0036670088,-0.02184975,0.025141856,-0.021685729,0.027086658,-0.00007230773,0.04697989,0.0293595,0.019776072,0.005805121,0.015570143,0.0074804635,0.020771906,0.013953378,-0.0123131825,-0.009501419,0.009899752,-0.0416844,-0.006953258,-0.04273881,-0.012617791,0.016003624,0.0067540915,-0.00223916,0.019904945,-0.01614421,0.023607101,0.02678205,-0.009929041,-0.018534211,0.00234753,0.024790386,0.03378803,-0.0075390423,0.020127544,-0.0156873,-0.020397004,-0.00767963,0.015406123,0.013578476,0.047964007,-0.039364696,-0.038474303,-0.0039423276,0.0038896068,0.020631317,-0.037841655,0.0019711638,-0.045527145,-0.0072637233,0.056891356,-0.0093959775,-0.0011664426,-0.019096563,-0.018276466,0.023712542,-0.005995501,-0.013847938,-0.015628722,0.0050904644,-0.01851078,-0.053939003,0.033881754,-0.014562594,-0.053892143,0.0007461426,0.00052793795,0.014281417,-0.047776554,-0.025399601,0.026149405,0.0036728666,-0.025071561,0.014093967,0.017350927,0.023712542,0.015863035,0.00746289,0.018768525,0.009313968,-0.0012316112,0.00067694683,0.014023673,0.002331421,0.013004408,-0.018311612,0.04976822,-0.00042542574,0.01286382,0.021217102,-0.023431366,0.065748416,0.0033741167,-0.0020033817,-0.023009602,0.034373812,0.030788815,-0.020209553,0.023044748,-0.016940877,-0.017034603,-0.00502017,0.023361072,0.012746663,0.00439631,0.0095834285,-0.018674798,0.0018335044,0.034701854,-0.0064494833,0.0092202425,-0.003992119,0.0050904644,-0.008511444,-0.005181261,0.027367836,-0.022798719,0.0013751283,0.008154116,-0.021943474,0.037302736,0.03430352,-0.0076737725,-0.011944138,-0.06420194,0.0039101094,-0.029992148,0.0000629718,0.027156953,0.030320188,0.010965879,0.038497735,0.040419105,-0.013004408,0.004003835,0.009595145,0.01063784,-0.0092143845,0.011311492,0.018885681,0.0034121927,0.013016124,-0.01120605,0.044285282,-0.002868878,-0.027297541,-0.015675584,0.020068966,0.019963523,0.020045534,0.061155867,0.018100731,0.015827889,0.025305875,-0.020631317,0.017854702,0.009718159,0.023478229,0.037349597,0.008611027,-0.020350141,0.011862129,0.018171024,0.014562594,0.0059369225,0.0055678785,0.030460777,-0.010280512,0.04580832,-0.008341567,-0.014960927,-0.03924754,-0.039153814,-0.017924994,-0.0012418624,0.04323087,0.039388128,0.05679763,-0.021310827,-0.030085875,-0.01310985,0.04046597,-0.03718558,-0.0064143366,0.00819512,-0.011639531,0.0035644965,-0.012442055,-0.014351712,0.0035059182,0.011276345,-0.010344948,0.0037109426,0.0041209916,0.002141041,-0.021662299,0.015663868,-0.030835677,-0.010819433,-0.015839603,-0.00013701858,0.005553234,0.017924994,-0.020830484,0.009272963,0.019073132,-0.038357146,-0.059609395,0.006976689,-0.016296515,0.0053862855,-0.017280633,-0.0132387215,-0.0148906335,-0.0061917384,0.029546952,0.017702397,-0.050471164,0.012090585,0.013121565,-0.014175977,0.025094993,-0.01071985,0.015909897,-0.034397244,-0.020525876,0.009811885,0.034678422,0.0024266108,0.03667009,0.0076386253,-0.04925273,-0.020900778,-0.0329445,-0.020701611,0.0038691044,0.032686755,0.020561025,-0.00019660381,-0.010292227,0.009354973,-0.050189987,-0.052579984,0.020174406,0.06631076,-0.0023226342,0.021392837,-0.0051900474,-0.026149405,-0.004138565,0.0075214687,-0.010995168,0.047401655,0.0008244912,0.015160094,-0.018920828,-0.035240773,-0.016261369,0.006139018,0.021861464,0.020525876,-0.0086696055,-0.010942448,0.01970578,-0.025188718,0.032335285,0.006139018,-0.012196026,0.025235582,0.023220483,-0.0002465785,0.007099704,0.0010104777,0.04046597,-0.009800169,0.016179359,0.0072637233,-0.0018496135,0.014293133,-0.03142146,0.025282444,0.010274654,0.014047104,0.007960807,-0.034280088,-0.028258227,-0.038685184,0.014023673,0.011862129,-0.006941542,-0.015394407,-0.000021932583,-0.002407573,0.027484993,-0.025423033,-0.014164261,-0.008370856,0.013836222,0.014960927,0.054079592,-0.0038544596,-0.02220122,0.068044685,-0.008118968,0.014468868,0.028281659,0.040442538,-0.011973429,-0.005497584,-0.011463796,-0.040044203,-0.0039686877,0.010655413,-0.041942146,0.034936167,0.06602959,-0.0039774743,-0.005052388,-0.018897397,0.009489703,0.004135636,-0.0020121685,0.005131469,-0.026641464,-0.011006884,-0.0038720332,-0.020221269,-0.0062503167,0.033131953,0.007550758,0.030741952,-0.004990881,-0.0067833806,-0.008939066,-0.0050406726,0.032827344,0.002830802,0.011247056,0.017362643,0.000438972,0.0061683073,-0.020725043,-0.018381907,0.022857297,-0.023056464,-0.0036377197,-0.006057008,-0.006174165,-0.031304304,-0.02399372,-0.016155927,-0.025001267,0.007345733,0.000013649228,-0.011247056,-0.0018715804,0.01680029,-0.0062210276,0.007849508,-0.02374769,0.00789637,-0.049815085,0.02162715,-0.02040872,-0.010034483,0.010631982,0.021685729,0.0004876653,0.018463917,0.013965094,-0.00947213,0.02333764,0.025961954,0.014035388,0.0126880845,0.0009584893,0.0116043845,-0.015160094,-0.02746156,-0.018171024,0.006631077,-0.00214397,0.010485536,0.021931758,0.003403406,-0.026618032,0.005465366,0.0026360287,-0.009021076,-0.008476296,0.011334923,0.00047924466,-0.026946072,0.003248173,0.03273362,-0.0026872847,0.038497735,-0.004027266,0.022376955,0.0064084786,-0.013262154,-0.0046686996,-0.03514705,0.022787003,-0.033670872,0.0016694849,-0.0011312957,-0.0103156585,0.0044050966,0.03242901,-0.035920285,0.0076972037,-0.016624555,-0.003183737,0.0052984175,-0.04477734,-0.007345733,-0.0086696055,0.045363124,-0.007580047,-0.0150898,0.0043084426,0.03360058,-0.0119617125,0.013098134,0.020150974,-0.025680777,0.0050406726,0.041004892,-0.004003835,0.015195241,-0.006800954,-0.01373078,-0.013590192,0.014714898,0.014175977,0.044707045,-0.03774793,0.02982813,0.021662299,0.021533426,0.024392052,-0.010749139,-0.02643058,0.026172835,-0.0043523763,0.0014842306,-0.0041532097,-0.0026667824,0.0046013347,-0.0004924248,0.029265776,-0.0385446,0.018335044,-0.00884534,-0.016647985,0.010005194,-0.04133293,0.03547509,0.006443626,-0.0010097454,0.015593574,0.009694728,-0.026969502,-0.008962497,-0.03859146,0.018979406,-0.041731264,0.010661271,0.019787788,0.0014168654,-0.0126880845,-0.0033799745,-0.029992148,-0.00035842668,0.003842744,-0.04749538,-0.039364696,-0.023548523,0.053236064,-0.026946072,0.011809409,0.035428226,0.07657371,0.032639895,-0.012078869,-0.0012777416,0.038497735,-0.010713992,-0.005761187,0.009149948,0.010198502,0.002249411,0.029172052,-0.0034649132,-0.014246271,0.016062202,0.00776164,0.006759949,-0.011393501,-0.0084997285,0.02982813,-0.04456646,0.0504243,0.03409264,-0.017526662,-0.032686755,-0.01639024,0.028562834,-0.025493326,0.030460777,0.007550758,0.010995168,0.0070469836,0.019366024,0.0024705448,0.009911468,-0.026828915,-0.0027502566,0.013344163,-0.003801739,-0.034725286,-0.017210338,0.015452986,-0.031655777,0.025118424,-0.0007153889,-0.01970578,0.01047382,-0.010344948,0.0607341,0.014550879,0.0090386495,-0.03889607,0.016097348,-0.05145528,-0.012723232,-0.010538257,-0.022212936,0.003620146,-0.004235219,0.0087399,-0.0025584123,0.0051226825,0.019565191,0.010426958,0.01886225,0.026360286,-0.006467057,0.020748476,-0.0005817569,-0.00055173546,0.008329851,0.011270487,0.0035059182,0.017878132,-0.044168126,0.010339091,0.034537833,-0.016355094,0.006549067,-0.028070776,0.022025485,0.015570143,0.016331661,-0.008763331,-0.03601401,-0.0036435775,-0.032171264,-0.02982813,-0.018311612,-0.011475512,0.037138715,0.0132387215,-0.019155141,0.036154598,0.008189263,0.016976025,-0.037771363,-0.005023099,-0.038568027,-0.02556362,0.012992692,-0.008165831,-0.020373574,0.0022479468,0.01983465,-0.036107734,-0.03036705,-0.00428794,0.0048005013,-0.026454013,0.02640715,-0.0027341475,0.018089015,0.008581738,-0.033366267,-0.030859109,0.019284014,-0.0072285766,0.035779696,0.0056967507,0.004633553,0.0012418624,-0.03430352,-0.018053867,-0.021509994,-0.02467323,0.020525876,0.0002685454,-0.02162715,-0.008962497,-0.016858868,-0.0047038468,-0.005582523,0.01484377,0.05951567,0.014129113,-0.013414457,0.021158524,-0.0049791653,-0.02296274,0.03203068,-0.0051256116,-0.027977051,0.006554925,0.0049410895,0.008827767,-0.014433721,-0.0012916541,-0.021287397,-0.004879582,0.008704753,0.015324114,-0.040348813,-0.0035322784,-0.012184311,0.0070118364,0.013355879,0.01278181,-0.0007593227,-0.033928618,0.0011949997,-0.018581074,0.015699016,0.03514705,0.0072227186,0.0013209432,0.028492542,-0.0015376834,-0.011170904,0.01579274,0.024462346,0.0033213962,-0.024462346,0.024368621,-0.031023128,0.025633914,-0.017643819,0.0115985265,0.012840388,-0.037982244,-0.014820339,-0.0019067274,-0.029992148,0.019682348,-0.00029069537,0.022107493,0.037466753,-0.0036670088,0.025985384,-0.0009921719,-0.008177547,-0.04391038,0.017315779,0.008745758,0.022751857,-0.023302494,-0.039364696,-0.014761761,0.051033515,0.011446223,-0.01945975,-0.0029816413,-0.007726493,0.011610242,-0.01004034,0.009647865,-0.012078869,0.0049615917,-0.010005194,0.018499063,0.01983465,-0.024157738,0.059562534,-0.017971858,0.025493326,-0.04632381,0.03596715,0.026688326,-0.010485536,-0.0036875112,-0.010479678,0.00022534384,-0.0042205746,-0.030554501,0.016237937,0.004926445,-0.00023248309,-0.017058035,-0.0048620086,-0.02982813,0.03538136,0.020432152,0.0043875235,-0.024907542,0.002086856,-0.015265535,0.007211003,0.009114802,0.023161905,-0.0017456368,0.0067716646,-0.005541518,-0.0026477443,-0.0047155623,-0.03631862,0.0036523642,-0.0061975964,0.01940117,-0.033975482,0.021615434,0.025094993,0.024720091,-0.019822937,0.0007282029,0.01983465,0.030882541,0.0043758075,0.0050377436,-0.0014168654,-0.0076737725,0.012723232,-0.0018935472,0.018721662,0.012547497,0.02220122,0.028234797,-0.0061214445,-0.0050494596,-0.0031515188,-0.028609699,0.0000034609318,0.016647985,-0.0069005373,0.021861464,0.0143399965,-0.009811885,-0.014035388,0.011703967,0.0042440062,-0.029617246,0.019342592,0.03976303,0.013332447,-0.006654508,0.003292107,-0.028164502,0.017995289,0.03189009,0.014011957,0.0054038586,0.017292349,-0.016495682,0.011580952,-0.017409505,0.011042031,-0.043512046,-0.0060042874,-0.029453227,-0.007738209,-0.00091528776,0.011024457,0.01025708,-0.0026726401,0.021556856,-0.0023782838,0.017514946,-0.042270184,-0.010409384,-0.014820339,-0.0062327436,0.0008032565,0.0027019293,-0.030132737,-0.018194456,0.0012360045,0.012114016,0.050189987,-0.03805254,-0.00583441,0.007234434,0.025868228,0.038685184,-0.01706975,0.025165288,0.028305091]},{"id":"interface-APIProfileResponse","type":"interface","source":"main","text":"Interface: APIProfileResponse\nDescription: Full profile response from GET /users/{id}/profile.\nOptionally use ?guild_id=GUILD_ID for server-specific profile.\nProperties: connected_accounts: APIConnectedAccount[] | null, mutual_guild_ids: string[] | null, mutual_guilds: { id: Snowflake; }[] | null, user_profile: APIUserProfile | null","meta":{"url":"/docs/typedefs/APIProfileResponse"},"embedding":[-0.0074085873,-0.0023693999,0.020854235,0.025695605,0.03361998,-0.045037646,-0.015145402,0.0082115745,0.040489335,0.025132928,0.0073616975,-0.03451089,0.028485548,-0.009249011,-0.016399704,-0.00038684078,0.0021334856,0.039481204,-0.041263018,0.04620989,0.0049204975,0.0015561549,0.024875036,0.018357353,-0.030783148,0.042177368,-0.029868798,0.012636799,0.008739085,-0.008662889,0.016927214,-0.021076962,0.037629057,0.010632261,0.044873532,-0.028602773,0.020080553,0.034112323,0.0005667071,0.008809419,-0.005342506,-0.00957724,-0.0016836366,0.023632456,-0.031158267,0.036269255,0.0057967505,-0.0023811222,0.012097566,0.028274544,-0.031931948,-0.01043884,0.019177925,0.03992666,0.011165632,-0.017407835,-0.012226514,-0.012343737,-0.0606285,0.03854341,-0.024218578,-0.0074261706,0.027078854,0.002016261,0.02719608,-0.02911856,-0.0013026571,0.02163964,0.014711672,0.02216715,0.04721802,-0.010632261,-0.018216684,0.027266415,0.02131141,0.007971264,-0.016458318,-0.032283623,-0.017782953,-0.07333563,-0.020326724,0.034979783,-0.02457025,-0.076758586,-0.004621575,-0.007848179,-0.013422203,-0.017020995,-0.004735869,0.06259787,-0.012695411,-0.006968995,-0.039621875,-0.027735312,0.019213092,-0.09987526,0.023948962,-0.0026404813,-0.032541517,0.053595033,0.06020649,-0.0041673305,-0.018275296,-0.05167255,0.029728128,0.01647004,-0.0014418612,-0.0052106283,-0.000785404,0.013469093,-0.025179818,0.025297042,0.0017202692,-0.0047856895,-0.028274544,0.013656652,-0.009583102,-0.0047768974,0.030478364,-0.015731525,-0.03633959,0.007918513,0.04965629,0.0062363422,0.007215167,-0.0056209136,-0.0065997383,-0.028884111,-0.059409365,-0.00022584028,-0.05336058,0.0012960632,0.0068224645,0.034721892,-0.039973546,0.0045571015,0.0031035182,-0.0438654,-0.006048783,-0.044568747,-0.017126497,-0.024335802,0.0045102118,0.014746839,-0.08810592,-0.0009832203,-0.02039706,0.028040096,-0.018568357,-0.008528081,-0.019705435,0.010374366,-0.0629261,-0.0023298366,0.025789386,-0.040020436,0.0013707938,-0.030572144,-0.017513337,-0.004993763,0.030900372,-0.04320894,-0.037816618,0.008147101,-0.0022756201,-0.002121763,0.048718493,0.03275252,-0.042177368,0.010761207,-0.020479117,-0.007010024,-0.1028762,-0.0057586525,-0.024406137,-0.042013254,-0.031486496,-0.0023869835,-0.042552486,-0.046889793,0.029376455,-0.0026888365,-0.026469288,-0.07225717,-0.038379293,0.034698445,-0.029564014,-0.010825681,0.036175475,0.008680473,0.008135379,0.025367377,0.021545859,0.001767159,-0.011915868,-0.052375898,0.03734772,-0.0047651753,-0.048015147,0.009893746,0.024828145,0.000016553378,0.063582554,-0.014406889,-0.014934399,-0.019623378,0.048343375,-0.014242774,-0.044943865,-0.013246366,0.006435624,0.0202095,-0.02264777,0.03476878,-0.026070725,-0.030970708,-0.03371376,0.0064297626,0.040020436,0.014957843,-0.03012669,0.06123807,0.04051278,-0.009981665,0.01398488,-0.0008125122,0.0000049482696,-0.025554936,-0.0060605058,-0.008387412,-0.004841371,0.027735312,-0.021862365,-0.04079412,-0.029845353,-0.014547558,0.03012669,0.05823712,0.003777559,-0.041309908,-0.013035363,-0.024148243,0.022155426,0.0479917,0.018064292,-0.018087737,0.008633583,-0.037699394,-0.02811043,0.04229459,0.004208359,0.019271705,0.0048911916,-0.0040764813,0.013586317,-0.04290416,0.01130044,0.0045219343,0.030501809,-0.023573844,0.008463607,0.040161107,-0.031580273,0.024335802,-0.03854341,0.003759975,0.016610708,0.008985257,-0.046702232,0.05186011,-0.021956146,0.020795623,0.037183605,-0.016434873,-0.04372473,0.008744946,0.015731525,0.00023683008,-0.0040588975,-0.0034815671,-0.015637746,-0.01996333,0.0068459096,0.033596534,0.010263003,0.007379281,0.020502562,-0.025578381,0.036597483,0.022272652,0.03992666,0.020174334,0.0351439,-0.008352244,0.019189646,0.00078979996,0.03605825,0.020139165,0.06588016,0.017818121,0.024968814,-0.046796013,0.014324832,-0.029798463,0.017982235,-0.017923623,0.0043226527,-0.011657975,0.0109897945,-0.010304032,-0.007719232,-0.006968995,-0.032189842,0.031767834,-0.06283232,-0.04564721,0.015965974,0.008229159,-0.008909061,0.021194186,0.00818813,-0.046772566,-0.037816618,-0.049796958,-0.036738154,-0.019975051,-0.028016651,-0.054954834,-0.0067228237,0.03730083,0.034792226,-0.043959178,-0.04712424,0.023151835,0.021498969,0.018955199,-0.003337967,0.036363035,0.034252994,-0.007725093,0.021006627,-0.0031914364,-0.042482153,-0.016481763,-0.01695066,0.011616946,-0.024101352,0.050265856,-0.03844963,0.0013253692,0.019658545,0.03270563,0.01775951,0.0115290275,0.040395554,-0.051719442,0.029821908,0.009460015,-0.018650414,0.05200078,-0.023233892,-0.023245614,-0.012238235,0.02360901,-0.0036574039,0.015344684,-0.004621575,0.017900178,-0.008633583,-0.0702878,0.011276995,0.004281624,-0.017267166,-0.028086985,-0.0018814529,0.026211394,-0.062457204,-0.0007839387,-0.0010586836,-0.00392702,0.052422788,0.04281038,0.036456812,-0.042833824,0.04170847,-0.02370279,-0.02331595,-0.011124603,-0.04529554,-0.011224244,0.064567246,0.003918228,0.0007491377,-0.08374517,0.026117614,-0.03936398,0.021991313,0.0015664122,0.0056912485,-0.057955783,0.010878432,0.008991118,0.034675002,-0.007689926,-0.018580081,-0.016962383,-0.011083575,-0.0012755488,0.0004340969,-0.035331458,0.017548505,-0.024968814,0.009108342,-0.0206784,0.050640974,-0.07375764,-0.032400846,-0.015766693,-0.0041057873,0.036363035,-0.034370217,0.008451885,-0.0036339588,-0.006459069,-0.012683689,-0.03591758,0.023327671,-0.014031771,-0.018509746,-0.040207997,-0.05003141,0.013480815,0.053266805,-0.018462855,0.009536211,-0.025461158,0.057486884,-0.013433926,-0.037136715,0.028907556,0.010567787,0.023691067,-0.021475526,-0.036034804,-0.025250154,-0.026305173,0.034721892,-0.040958233,0.0028192487,0.036222365,-0.013879378,0.055001725,0.038660634,0.03779317,-0.014406889,-0.031908505,-0.0300798,0.023421451,-0.0031621302,0.0057733054,0.02843866,-0.008850448,-0.039082643,0.03547213,0.008270187,0.0002511168,-0.03404199,0.0031035182,-0.021733418,0.014664782,-0.011019101,-0.0091552315,0.025203263,-0.0073148077,-0.012460962,-0.021299688,0.001108504,0.040043883,0.026211394,0.0339951,-0.013164309,0.011218383,-0.044404633,-0.023866905,0.050218966,0.06541126,-0.0033027998,-0.0074496157,-0.027031966,0.022999443,-0.018837973,-0.012965027,0.067943305,-0.010890154,0.027407084,0.008024015,-0.029845353,-0.06414524,0.035987914,-0.024898479,0.00948346,-0.022389876,-0.017079607,0.040114217,0.0117986435,-0.0065176813,-0.04951562,-0.035659686,-0.045623768,-0.0032734936,-0.014348276,0.055658184,-0.050312746,-0.025883164,-0.021745142,0.024664031,-0.057862002,-0.007349975,-0.0005571826,0.016153533,-0.01752506,0.0037218772,0.0076254522,0.030478364,0.02843866,0.016153533,-0.0081588235,-0.09302935,0.007250334,0.011757615,0.003997355,-0.005149085,0.035589352,0.023761403,-0.0038801304,0.010860848,-0.004601061,-0.026844407,0.016130088,-0.01738439,-0.024312356,-0.017536782,-0.008657028,0.038777858,-0.006248065,0.020619785,0.008024015,0.011065991,0.034932896,-0.010954628,0.012824358,-0.023069778,0.0030419752,-0.0010198529,-0.019306872,0.016317647,-0.0010410999,-0.039106086,0.015579133,-0.038777858,0.0031533386,-0.014020048,0.027946316,0.0045365873,-0.03453433,0.02452336,0.03371376,0.029821908,-0.022331264,0.009084897,0.023632456,0.01867386,-0.013093974,-0.031158267,0.04018455,0.0026360855,-0.03458122,0.046514675,0.011945174,0.054204598,-0.01924826,-0.03308075,-0.0017114774,0.028790332,-0.010409534,-0.015297795,-0.007273779,0.011359052,-0.0043021385,0.0321664,0.018169794,0.018896585,0.001288004,-0.0023430244,0.01570808,-0.008627722,0.034979783,0.017103052,0.0018228407,0.04161469,0.010602954,-0.0030419752,-0.03380754,0.009137648,0.027477417,0.0065059587,0.031181712,0.008686334,-0.033408977,0.0060839504,-0.02581283,0.011441109,-0.046092667,-0.0015165918,-0.012566464,0.022014758,-0.009823412,0.010022693,0.0064473464,0.00450142,-0.020455671,0.0040676896,-0.011452831,0.05167255,0.0066524893,-0.009448293,-0.06714618,-0.0049380814,-0.03012669,0.003625167,0.01140008,0.00972377,-0.012871248,0.025414268,-0.01819324,0.014066937,-0.010051999,-0.00876253,-0.009606546,-0.033221416,0.03505012,0.010163362,0.004258179,-0.0114469705,0.01958821,-0.021815475,-0.014981288,-0.016094921,-0.03200228,-0.00073192036,-0.022694658,-0.052844796,-0.002685906,-0.014524113,-0.004363681,-0.017736064,-0.004756383,0.027946316,-0.013773876,0.011915868,-0.023784846,0.040489335,0.025390822,0.0064532077,-0.006617322,0.03610514,-0.010837403,0.023691067,0.003572416,0.021346578,-0.017536782,0.028133875,0.02356212,-0.0034258855,0.009706187,0.009571379,0.0030243916,-0.033408977,-0.012824358,0.001374457,0.011235966,-0.006248065,-0.02581283,-0.009079036,-0.005870016,-0.015379852,0.05870602,-0.008311216,0.027805647,-0.013668374,0.004864816,0.023597287,0.025062595,-0.009125926,0.005749861,-0.021967867,0.009852718,0.013773876,-0.013832489,0.019295149,-0.020432226,-0.021850644,-0.0071506933,-0.034979783,0.0108549865,0.042153925,-0.0006593877,0.015473631,0.014934399,-0.032822855,-0.04965629,0.00799471,-0.042997938,0.01727889,-0.0018360284,0.026469288,-0.040536225,-0.02916545,0.04463908,-0.0004941744,0.029775018,-0.0086687505,-0.0140903825,0.008985257,0.021229353,0.003587069,0.023866905,0.026820961,0.020666676,-0.010544342,-0.0032910772,-0.0055710934,-0.022178872,0.009969942,0.010526759,-0.0043167914,0.034675002,0.028040096,-0.023960683,-0.0050582364,0.026891295,-0.0010689407,-0.024148243,-0.0074203094,-0.029470235,-0.003759975,-0.0146296155,0.039528094,-0.0083463825,-0.008944227,-0.02820421,0.006986579,-0.000929004,-0.0040911343,0.013035363,-0.027688421,-0.002077804,0.035706576,-0.039129533,-0.009706187,0.028602773,0.01311742,0.035190787,0.047897924,-0.02581283,0.018826252,0.022038203,-0.021721696,0.046467785,-0.008498775,-0.0072327503,0.0024001712,-0.0004685316,0.00995822,0.04424052,-0.03394821,-0.026211394,-0.014383444,0.026023835,-0.018310463,0.036714707,-0.011763477,0.045764435,-0.01915448,-0.0099113295,0.018251851,0.02921234,-0.016059754,0.027383639,-0.03544868,-0.022858774,-0.0023679344,-0.026211394,-0.024124797,-0.011124603,0.013785599,-0.015954252,-0.06728685,0.038519964,0.027266415,-0.06644283,0.0038127261,0.00971791,-0.00022052856,-0.004416432,-0.06930311,-0.037769727,0.03983288,-0.039668765,0.0051109875,-0.013070529,0.012144456,0.02092457,-0.011130464,-0.017736064,0.022659492,0.0028470897,-0.024640586,-0.007484783,-0.011898285,0.030103246,0.021287965,-0.013644929,-0.002763567,-0.01240235,0.053688813,-0.057439994,-0.012894693,0.0143599985,-0.0074144485,-0.01163453,-0.008440163,0.00020807346,0.006681795,0.00972377,-0.031111376,0.0031972977,0.009202122,0.012062399,0.032307066,0.0019664406,0.010245419,0.04166158,-0.033362087,0.022284374,-0.025015704,0.053641923,-0.024617141,-0.0034170935,-0.0020089345,0.00995822,-0.012179623,0.024406137,-0.041450575,0.013093974,-0.03922331,-0.029775018,0.010409534,0.021803753,0.02303461,-0.030876927,0.014617893,-0.0036310283,-0.022870496,0.0035138037,-0.002269759,0.0071565546,-0.0230815,-0.003950465,-0.020654954,-0.040348668,0.008780113,0.015121958,0.009981665,-0.0048472323,0.011329746,-0.019529598,-0.003563624,-0.0018961059,0.08229159,-0.027266415,-0.015344684,0.007226889,-0.022671215,0.014254496,0.00847533,-0.011939313,-0.021756863,-0.011224244,0.028133875,0.014981288,-0.015590856,-0.0020426365,0.014031771,0.005612122,0.0017041509,-0.02035017,0.047569692,0.0030478365,-0.0022756201,-0.003935812,-0.02581283,-0.043560617,0.037183605,0.057158656,-0.024875036,0.040114217,-0.027360193,-0.015508799,0.004281624,0.009612408,-0.0073441137,-0.01130044,0.023597287,-0.00289691,0.02183892,0.020021942,-0.0038684078,0.032307066,0.016774824,0.025062595,0.01747817,0.019494431,0.0068400484,-0.025976945,-0.015555688,0.029142005,-0.05162566,0.014770284,0.021979589,0.0038654772,-0.022155426,0.02399585,-0.0008432836,-0.041309908,0.0012000856,0.012859525,0.01350426,0.011482138,-0.019131035,-0.0259535,-0.018709026,-0.021815475,-0.0124726845,0.025883164,-0.012191346,-0.026258284,0.0009634387,-0.020737011,-0.03706638,0.017888455,0.024546806,0.0259535,-0.025578381,-0.0026551345,0.0052311425,0.050172076,0.0071858605,0.051719442,-0.003935812,0.008457746,-0.03706638,-0.047147688,-0.024007574,-0.009917191,-0.07272607,0.038074512,-0.010761207,0.0038244487,0.032494627,-0.004870677,-0.04740558,0.07277296,0.020514283,-0.010597093,0.013140864,-0.0014902162,0.0023093224,0.00007963022,-0.022565713,-0.011265272,0.06081606,-0.013773876,-0.0006374081,-0.035730023,-0.009067314,-0.037699394,0.01757195,0.03444055,0.021627916,0.007144832,0.009653436,-0.022905663,0.013715264,0.02030328,-0.02264777,-0.0013773877,0.038566854,0.013187754,0.024921924,-0.015403297,-0.008006432,0.032822855,-0.039621875,-0.0010198529,-0.016341092,0.0019605793,0.012214791,-0.008563248,0.02796976,-0.009506905,-0.008410856,-0.0069807176,-0.022014758,-0.02179203,-0.027782202,0.0017349223,0.01532124,-0.01043884,-0.01699755,0.029986022,-0.027078854,-0.00018719284,-0.0007839387,-0.015743248,-0.027758757,0.014254496,0.0023049263,0.039129533,-0.020854235,-0.03596447,0.025976945,0.0033203834,0.03256496,0.003519665,-0.018134627,0.009114203,0.028016651,0.0135511495,-0.017630562,-0.015450186,0.011962758,-0.038144846,0.027360193,0.0075316727,0.01671621,0.0046039913,-0.009753076,0.037769727,0.0030859343,0.0039563263,-0.021581026,-0.034229547,-0.022764994,-0.0036456813,-0.0033408976,0.0032647017,-0.0225071,0.015297795,-0.0055916077,-0.020619785,0.016305925,0.033502758,-0.024781255,0.003179714,0.016622432,-0.00761373,0.016587263,0.01297675,-0.0036368894,0.015473631,-0.027360193,0.010896015,-0.046772566,0.013902823,0.03549557,0.0500783,-0.010397811,0.005981379,-0.019928161,0.0028866527,-0.0037277385,0.00050113467,0.013961435,-0.04740558,-0.008674611,-0.0070979423,0.014383444,0.008598415,-0.0075140893,-0.038074512,0.03155683,-0.017349223,-0.005483175,-0.018744195,0.034839116,0.02064323,-0.055001725,-0.009952358,-0.018744195,0.0015869264,0.018415965,0.0019166203,0.040254887,-0.023913793,0.01584875,-0.019131035,0.011335608,-0.044217072,0.0024001712,-0.0045248647,0.032541517,-0.0005209163,0.0011165632,-0.023421451,-0.030994153,0.031392716,-0.001463108,0.0047182855,0.024312356,-0.012660244,-0.017607117,-0.009084897,0.036761597,0.012285125,-0.018017402,-0.02911856,-0.0056619425,-0.017642284,-0.009753076,-0.004727077,-0.029024782,-0.0069162445,-0.017103052,0.0206784,0.0027020243,-0.04970318,-0.02145208,0.005612122,0.013750431,-0.038379293,0.004946873,0.011851395,0.017876733,0.0014543162,0.026586512,-0.010667427,0.050547197,0.018709026,0.005861224,-0.016739655,0.033737205,0.012296848,0.031205157,0.031838167,-0.0014088918,0.021557583,0.009465877,-0.009700325,-0.005061167,-0.009987526,0.0033115915,0.008791836,-0.0219327,0.035167344,0.01724372,-0.011974481,0.010655705,-0.004035453,0.018709026,0.0127423005,-0.00032914436,-0.021534137,0.04093479,0.005491967,0.016387982,0.033362087,-0.015344684,-0.02705541,-0.017900178,0.0054480075,-0.009987526,0.0042699017,0.0016367468,-0.014946121,0.012144456,0.015051623,0.017982235,-0.035941027,-0.00799471,-0.0008711244,-0.04428741,0.015930807,0.019822659,-0.022448488,0.005799681,-0.00056597445,-0.043607507,0.009700325,0.0029525915,0.002375261,0.0058436403,-0.007889207,0.03136927,0.05443905,0.010204391,0.0045277956,0.00032969384,0.037324276,-0.028415214,0.007982987,0.039903212,0.011722448,0.018310463,0.008363967,0.018122904,0.03455778,0.03361998,-0.03390132,-0.0033262447,0.0027987345,-0.006042922,0.025203263,0.002567216,-0.013973158,-0.008088489,0.005204767,0.0036574039,-0.049843848,-0.019553043,0.0033819263,-0.02331595,0.03784006,0.003376065,-0.0017774162,-0.013680097,0.0146296155,0.012332016,-0.0362927,0.001391308,0.03720705,-0.015028179,-0.004448669,0.026938185,-0.017618839,-0.024218578,0.018591803,-0.031111376,0.021264521,0.044615638,0.0023899141,-0.011441109,0.019142758,0.013515983,0.016985826,0.015672913,-0.0026360855,0.0008974999,0.0122030685,0.011470416,0.022905663,-0.022296095,-0.04142713,0.04749936,0.0032266038,-0.010157501,-0.021030072,0.01747817,0.005837779,0.00032731274,-0.01943582,0.0000054576926,0.000751702,-0.001408159,-0.009307624,-0.00852222,-0.0032910772,-0.0422477,-0.002567216,0.034182657,-0.02447647,0.0036749875,-0.0013656652,-0.0068224645,-0.00497911,-0.01421933,0.010509174,-0.02112385,0.013773876,-0.029259231,-0.032775965,-0.001072604,-0.01130044,-0.012859525,0.0030859343,0.00493222,0.012953305,-0.019752325,0.000010531887,-0.037863508,-0.024171688,0.016727934,-0.002096853,0.013644929,0.045623768,-0.050218966,-0.0050113467,0.0015048692,-0.002489555,-0.036198918,-0.0184863,0.03505012,-0.0073441137,0.012601632,-0.017888455,-0.007402726,0.026375508,-0.008657028,0.007883347,0.005474383,0.003874269,0.00035149028,-0.02030328,-0.010872571,0.028977891,-0.0037189466,0.0020851304,-0.01924826,-0.017513337,-0.014805452,0.018521467,0.013715264,-0.014336553,0.027360193,-0.016176978,-0.013082252,-0.036808487,-0.011194938,0.010362644,0.002652204,-0.05181322,0.006113257,-0.0010982469,-0.011148048,-0.014371721,-0.0097765215,-0.026258284,0.01455928,0.045412764,-0.0113942195,-0.007162416,-0.025554936,0.015051623,-0.0059784483,0.03204917,0.010896015,0.004085273,-0.03540179,0.02935301,0.030197026,-0.01704444,0.023550399,0.015965974,-0.020842513,0.020948015,0.013304979,0.041638136,0.037183605,0.025015704,-0.013633207,-0.05870602,0.010204391,-0.00885631,0.009934775,0.006933828,-0.025179818,0.0028719997,-0.011083575,-0.00909662,-0.020057108,-0.039387424,-0.017513337,-0.018216684,-0.04721802,-0.025320487,0.016305925,0.029798463,-0.0062715095,-0.036949158,-0.0020426365,-0.0078599015,-0.0043548895,-0.016493484,0.053501252,-0.009876163,-0.030384585,0.017747786,0.02183892,0.03448744,0.000055040557,0.007771983,0.017947068,-0.014301387,0.007502367,-0.020150889,-0.024406137,0.010708456,-0.018298741,0.008586694,0.028274544,-0.02571905,0.030665925,0.0179119,0.015532244,-0.024781255,-0.015028179,-0.00005243048,-0.013621485,-0.0010821285,-0.0063945954,0.0010073979,-0.03413577,-0.027383639,-0.023222169,-0.016622432,0.022202317,0.0016133019,-0.011200799,0.07005335,0.010942905,0.013410481,-0.0020821998,0.037511833,-0.026797516,-0.024664031,0.025883164,0.012132734,-0.017103052,0.029001337,0.011763477,-0.00061982445,0.008721502,0.004366612,0.0039211586,-0.024195133,0.041309908,-0.0039592567,0.0030976569,-0.036761597,0.0230815,-0.016259035,-0.039129533,0.018427689,-0.03294008,0.013656652,-0.04946873,0.0014191489,0.0048501627,-0.0052692406,-0.005084612,0.014195885,0.0020646162,-0.008117795,0.0351439,0.021287965,0.040161107,-0.009840995,0.05387637,0.0037716976,0.016223868,-0.022378152,0.030337695,0.046655342,0.037042934,0.046444338,-0.008914921,-0.0023957754,-0.023151835,-0.00075536524,0.013222922,-0.0028221793,-0.0037980732,0.004343167,-0.019517876,-0.010937044,-0.033151083,-0.01920137,-0.032283623,-0.019810937,-0.020795623,-0.028040096,-0.00613084,0.023714513,-0.0006319132,-0.02140519,-0.009278318,-0.011558333,0.03547213,0.04740558,0.03247118,0.0041263015,-0.021534137,-0.0321664,-0.008563248,-0.019810937,-0.0024880895,0.0062128976,-0.03945776,-0.0059784483,-0.005239934,0.023151835,-0.02457025,0.053173024,-0.0020294487,-0.024945369,0.015790137,-0.001233055,0.0051608076,0.014910954,-0.014102105,-0.02457025,-0.016938938,-0.014852341,-0.013703542,0.015204015,0.007349975,-0.016024586,0.031134821,0.03298697,-0.04229459,-0.0005982112,-0.016294202,-0.020150889,-0.0058582933,0.018955199,-0.000365777]},{"id":"interface-APIReactionEmoji","type":"interface","source":"main","text":"Interface: APIReactionEmoji\nProperties: animated: boolean | null, id: string | null, name: string","meta":{"url":"/docs/typedefs/APIReactionEmoji"},"embedding":[0.014155989,0.003508383,-0.039675955,0.025764879,-0.016960245,0.00047643288,0.009478144,-0.01705821,0.031177461,-0.013947812,-0.0018812402,-0.024613786,0.029022224,-0.020156363,-0.00049633207,0.006814712,-0.016311225,0.009306705,0.010598622,0.026842497,-0.013935566,-0.0038573842,0.028973242,0.04621514,0.038426895,0.03352863,-0.050550103,0.010476166,0.0006708328,-0.026573092,0.014670306,-0.02929163,0.09247926,-0.004282921,-0.011370099,0.011014976,-0.04239449,-0.0009008217,-0.04741521,-0.010114918,-0.053146183,-0.03908816,0.007084117,0.04312923,-0.06152222,0.037692156,-0.031936694,0.01889506,0.0078004883,0.023487184,-0.016556138,0.03774114,-0.018686883,0.031716272,-0.008400526,-0.033798035,-0.022874901,0.011217029,-0.046778437,0.016274488,0.016531646,-0.02293613,-0.006924923,-0.0072433106,-0.025568947,0.0048370375,-0.07827429,0.0429333,0.04606819,-0.033430666,0.07357195,0.021246228,-0.028973242,0.022091178,0.00936181,-0.00087709574,-0.031201953,-0.015490766,0.01446213,-0.029512051,-0.029144682,0.057358693,-0.03152034,-0.084935926,-0.004797239,-0.014633569,-0.0361492,-0.059709862,-0.053733975,0.0046594753,-0.0062361048,0.030614162,-0.124709845,-0.033332698,0.001122009,-0.021858511,-0.0032757153,0.01511115,-0.006980029,0.048566304,0.035365477,-0.030320264,-0.066665396,0.022336092,-0.016115295,0.03573285,-0.010280236,0.020915596,-0.040876027,-0.005048275,-0.040998485,-0.001009502,-0.0014756026,0.000088637564,-0.017817441,-0.03867181,0.016433682,0.0071208538,-0.008602579,-0.055595316,-0.022629987,-0.025911827,0.07009418,0.0022210574,-0.0073902584,-0.0017266386,-0.008100507,0.0040043322,-0.0533911,-0.020756401,0.0010523618,-0.010935378,-0.01824604,0.00028949516,-0.01621326,-0.0007339745,-0.002605265,0.011780329,-0.030001879,0.038990196,0.01372739,0.012919176,0.01156603,-0.008988318,-0.017082702,0.015723433,-0.0038298315,0.0072371876,0.013678407,-0.0014342734,0.012239542,0.030075353,-0.05015824,-0.013262055,0.014853991,-0.024626032,-0.004053315,-0.007224942,-0.010770062,-0.019017518,0.013482477,-0.07905801,-0.007892331,-0.02064619,-0.026744531,0.036443096,0.010721079,0.012166068,-0.021515632,0.015686696,0.033455156,-0.018025618,-0.07533533,-0.018344006,-0.056525987,0.0017082702,0.063530505,0.02047475,-0.046533525,0.061228324,0.04364355,0.057407673,-0.06010172,-0.04222305,0.03668801,-0.002133807,-0.042663895,0.026793513,0.01858892,-0.029193664,-0.009459776,0.062012047,0.03154483,-0.012674263,0.028899768,-0.042516947,0.036981907,-0.020144118,-0.023193289,-0.038059525,0.028556889,0.03024679,0.061473235,-0.017462317,-0.023719853,-0.005795261,-0.041806698,-0.045210995,-0.00021085504,-0.012808965,0.0652449,-0.028850786,0.002994065,-0.021687072,-0.05295025,-0.026083264,-0.0023481061,0.04621514,-0.0050329682,0.0471703,-0.049643923,0.016372453,0.08111528,-0.04366804,0.0019011394,0.026254704,0.016115295,0.02112377,-0.028067064,0.028630363,-0.04917859,0.016164277,-0.011878295,-0.020633945,0.014756026,-0.026083264,0.017462317,-0.0025914887,0.003056824,0.0035206284,0.0043839477,-0.013176335,0.004077806,0.017450072,0.014805009,0.04219856,0.037937067,0.019201202,-0.013262055,-0.009355688,0.02875282,0.0073657674,0.034312353,0.025299544,0.002228711,-0.04276186,-0.034949128,0.049105115,0.015037676,0.016262243,0.01722965,-0.020242084,-0.01307837,-0.0070779943,0.00350226,-0.024760734,0.025960809,0.053538047,-0.008914844,-0.015527503,0.035243023,-0.0049196957,0.017952144,0.038892232,-0.009196494,0.024087222,0.01923794,0.032034658,-0.048713252,0.03169178,-0.024454592,-0.021821775,0.027920116,-0.007745383,-0.028997734,0.020940086,0.036394116,-0.01446213,0.009986339,0.003979841,0.03551243,-0.0017557221,0.032402027,-0.043031264,0.01606631,0.043349653,0.044990573,-0.009227108,0.06176713,0.004641107,0.04014129,-0.066028625,0.026426144,-0.0069126775,-0.0046625366,0.030565178,-0.009839391,0.055399384,0.01923794,-0.0010906295,0.03703089,-0.007341276,-0.016078558,-0.041953646,-0.068673685,-0.021503387,0.038035035,0.034581758,0.0018950165,0.011743592,-0.0044910973,-0.02027882,0.0071024853,-0.02892426,-0.04609268,-0.04237,0.0519706,-0.02285041,0.051872633,0.03553692,0.014976447,-0.044157866,0.012686509,0.031055005,0.083515435,-0.017548038,-0.026597584,0.03480218,-0.008767895,0.028140537,0.06460813,-0.030001879,-0.034753196,0.0033124522,0.047660127,-0.038059525,-0.025324034,-0.0180746,0.017266387,0.00797805,-0.017915407,0.016017329,-0.056770902,-0.050599087,0.014707043,-0.027846642,-0.017621512,-0.009502635,-0.033675577,0.042492457,0.00009466473,0.01951959,0.03208364,0.031226445,0.0014985632,-0.020486997,-0.005841182,0.022972867,0.04055764,-0.06372644,0.005112565,-0.009674075,0.002045026,-0.025470981,-0.010629237,0.004965617,-0.045798786,-0.0076780315,-0.0002762928,0.0060524195,0.031250935,0.02008289,-0.033993963,-0.024638277,-0.0058013834,-0.033259224,-0.012772228,-0.008363789,-0.02471175,0.047709107,0.07494347,-0.022189144,-0.06906555,-0.016360208,0.012447718,0.007341276,-0.015294835,0.018650146,0.029438578,-0.006606536,-0.003811463,-0.01852769,0.020119626,0.018907307,-0.0056972955,-0.01640919,-0.017658249,0.014315181,0.0556443,-0.012245664,0.05530142,-0.031250935,0.028311977,0.05637904,0.0046288613,-0.033479646,0.015662204,-0.055693284,0.0033063295,0.02728334,-0.028630363,-0.042541437,-0.031201953,-0.05990579,-0.02652411,0.023621887,0.030834584,-0.012821211,-0.0074882237,-0.035365477,-0.008908721,0.014756026,0.03744724,-0.007347399,0.053880922,-0.03284287,0.03779012,-0.016825544,-0.023254517,-0.0030399861,-0.033675577,0.00458294,0.035145056,0.019470606,-0.0111129405,-0.009759795,-0.025691405,-0.033675577,-0.03943104,-0.033577614,-0.061081376,0.032402027,-0.029536543,0.04555387,0.00021372511,-0.027503762,0.030173317,0.0142294625,-0.010433306,0.003612471,-0.0026221029,0.0065146936,-0.006496325,0.043104738,0.020903349,-0.0142294625,-0.04014129,0.008816878,0.021564616,-0.015380555,-0.024148451,-0.010598622,0.051480774,-0.007586189,-0.014278444,-0.031593814,0.033430666,-0.04072908,0.024417855,0.0010630768,-0.01753579,0.05304822,-0.005103381,-0.0632856,0.0025088305,0.09047097,0.013188581,-0.029536543,0.0069983974,0.018821586,0.016225506,0.014327427,-0.006275903,-0.01279672,0.016837789,-0.01647042,-0.021601353,-0.043912955,0.00594527,-0.030467214,0.04824792,-0.034875654,-0.020217592,0.0020067582,0.02818952,0.01714393,0.038941212,-0.013433494,-0.026646566,0.0053176796,0.02929163,-0.0070718713,-0.021858511,-0.012723246,-0.016666349,0.0017572528,-0.038647316,0.005332987,-0.0062054903,0.003964534,0.015784662,-0.003141013,0.052656356,0.007965805,-0.0016899017,-0.021491142,0.015417292,-0.07058401,-0.03210813,-0.016641859,0.012221173,-0.013200826,0.023940274,0.01165175,0.0047268267,0.015943855,-0.025397507,-0.008014787,0.011259888,-0.031226445,0.01623775,0.0074943467,0.042541437,-0.025324034,-0.019507343,0.0604446,-0.03764317,0.024479084,0.0019669598,0.009974094,0.011100695,-0.030197809,0.031030513,-0.043741513,0.0068698176,0.018197058,0.010739448,-0.011504802,0.02747927,0.0074576098,-0.019923696,-0.01141296,0.017388843,-0.014327427,-0.02507912,0.0029006917,0.031985674,-0.00019028614,-0.026254704,0.014584586,-0.010819045,0.0060677268,0.0000728043,0.017572528,-0.010059813,0.017364353,-0.0012391082,0.02349943,0.020486997,-0.03903918,-0.014413147,-0.0061901836,0.0049472484,0.032548975,-0.0028440556,0.01647042,-0.014547849,-0.032524485,-0.021148263,0.016335716,0.009539372,-0.0018031741,-0.004619677,0.02053598,-0.020621698,0.0014465192,0.00778212,-0.0058136294,0.0041359733,0.0050390908,0.020780893,-0.009312828,-0.020633945,-0.009674075,0.033896,0.032010168,-0.009955726,-0.03392049,-0.042467963,0.009582233,-0.04609268,0.026769023,-0.019103236,-0.060003757,-0.04001883,-0.0075249607,0.0035543041,0.005201346,-0.012184436,-0.036394116,-0.047488686,0.0223116,-0.0026986382,0.0132743,-0.002752213,0.0073535214,-0.002254733,-0.028238501,0.005017661,-0.00391249,0.00073359185,-0.0086821765,-0.023830064,-0.01982573,0.0064044823,-0.008180104,0.012955913,0.015356063,0.011645627,0.008994441,0.008614825,0.0135437045,0.04327618,0.024025993,0.021160508,0.0054401364,0.003943104,-0.016935755,0.018441971,0.032646943,-0.008939335,-0.0097291805,-0.0069861514,-0.011719101,-0.0031058067,-0.008418894,-0.025128104,0.031618305,-0.015870381,-0.0074025043,0.02728334,0.00888423,0.00042056205,-0.006539185,-0.01965429,0.033626594,0.024650523,-0.008265823,-0.01409476,-0.011498679,0.029340612,0.022617742,-0.011725224,0.017266387,0.009074037,-0.050403155,0.003949227,-0.0302223,-0.010335341,-0.0034165403,0.020633945,-0.024760734,-0.035806324,-0.006119771,0.016556138,-0.016592875,0.028507907,0.006392237,-0.0020542103,-0.0066616414,-0.0041359733,0.024344381,0.0060952795,0.016433682,0.027087409,0.011823189,0.020621698,0.0180746,0.013617179,-0.0056911726,0.007873963,0.0042278157,-0.014327427,0.0009934296,0.011302749,0.0019547143,0.035659377,-0.0064779567,0.050746035,0.0030216177,-0.03321024,0.0022960622,0.00094674295,0.022874901,-0.0030920303,0.01429069,-0.0017113317,0.010947624,-0.005143179,0.016078558,0.020156363,0.001517697,-0.024919927,0.007965805,0.011682364,0.02799359,0.03095704,0.043472107,-0.024479084,0.015907118,-0.0047115195,0.02347494,0.004576817,0.021025807,-0.0064106053,0.021674827,-0.0021185,-0.0075616976,-0.010114918,-0.007886208,-0.0043074125,-0.0011013445,0.000092607836,-0.00045079354,-0.030001879,0.015172378,-0.014364164,0.0024935235,-0.02460154,-0.020021662,0.01796439,0.008124999,-0.036761485,0.015723433,-0.023732098,0.0125089465,0.0079841735,-0.019972678,-0.028067064,0.01364167,0.017609265,0.008725036,-0.01640919,0.02321778,-0.00030920302,-0.027748676,0.032720417,-0.0027093533,0.001960837,0.039896376,-0.0072371876,-0.01982573,-0.03242652,-0.02092784,0.038794264,-0.01511115,-0.0061350777,-0.014168234,-0.011584398,0.026769023,-0.025470981,-0.00020989834,-0.021711564,-0.03225508,0.02304634,0.0030874382,-0.0055595315,-0.0114741875,0.00077721704,-0.0107761845,-0.00838828,-0.0014304466,0.012882439,-0.06294271,0.033896,0.020511487,-0.0045125275,-0.06519592,-0.031226445,0.033234734,-0.024197433,-0.0042278157,-0.0135804415,0.0039737183,0.03810851,0.004530896,-0.017572528,0.034214385,-0.0062146746,0.0059636384,-0.036002252,0.010286358,-0.019935941,0.021919739,-0.009147512,0.01519687,0.0051186876,-0.017205158,0.023438202,-0.006459588,0.04016578,-0.007304539,0.034508284,-0.017621512,0.023903538,0.037520718,-0.0006272076,0.015086658,-0.018307269,0.0047635636,0.010947624,0.019433869,-0.00016837788,-0.0007622926,-0.009588355,-0.022262618,-0.019984925,0.04866427,-0.017903162,0.023548413,-0.014645815,-0.0030522319,0.0018368497,-0.015441783,0.04753767,-0.031055005,0.011945645,-0.019617554,0.010531272,0.045602854,0.020609453,-0.017413335,0.042174067,-0.051823653,0.012490578,-0.029732473,-0.054860577,0.019617554,0.03352863,-0.0062054903,-0.01184768,0.056428023,-0.0051615476,-0.032548975,-0.0024445408,0.03298982,-0.009796532,-0.0020419646,0.0015100435,0.0036155325,0.010310849,-0.015968347,0.04528447,-0.008039279,-0.0027506824,0.029952895,-0.019862467,0.003774726,-0.0016378576,0.0392596,0.001835319,0.018478708,0.044182356,-0.021785038,0.0069616605,0.014498867,0.017817441,0.017339861,-0.037814613,-0.0032481626,0.025446491,0.013947812,0.033381682,0.011210905,0.002185851,0.012576298,-0.015943855,0.049472485,0.002280755,-0.01835625,-0.052264497,-0.028826294,-0.015282589,-0.009110774,0.044892605,-0.00130799,0.04751318,-0.017719477,-0.023156552,-0.010365955,0.0128334565,-0.016727578,-0.0054891193,0.044378288,0.014400901,0.03132441,0.019899204,-0.036957417,-0.017694985,0.0030859075,-0.019127728,-0.007916822,-0.0023634133,0.016335716,0.011063958,0.018441971,-0.033896,-0.00072172884,-0.051480774,-0.0142539535,-0.01647042,0.012447718,-0.02293613,0.0037777876,-0.0025210762,-0.02561793,-0.007304539,0.011547661,-0.005562593,-0.0014465192,-0.032695923,-0.03835342,0.0097169345,-0.022262618,0.03281838,-0.015380555,-0.053929906,0.038279947,-0.0075310837,-0.012759983,0.028556889,0.01409476,0.044427272,-0.01156603,-0.044647694,-0.02457705,0.05030519,0.026230214,0.009643461,0.040508658,-0.04185568,-0.009416916,-0.046729457,-0.035316497,-0.0022776935,-0.014364164,0.0119334,0.0063738683,-0.012747737,0.011070081,-0.033993963,-0.021331947,0.02053598,0.039186127,0.007892331,0.024368873,0.014437638,-0.014841746,0.0021582984,0.00029944477,0.002285347,0.028605873,-0.0039829025,0.040631115,-0.037300292,-0.000862554,0.0040043322,-0.025715895,0.015037676,-0.008051524,0.0049686786,-0.012080348,0.029879421,0.018490953,-0.002343514,-0.0005858785,-0.026866987,0.036051236,-0.004803362,0.013617179,-0.02265448,-0.0011319586,0.015490766,-0.012894684,0.024160696,-0.0039002441,0.013433494,-0.008394403,0.017523546,-0.02129521,0.02496891,-0.0006428974,0.009894497,-0.049007148,-0.024736242,-0.026793513,0.01344574,0.015319326,-0.00888423,-0.0031226445,0.01971552,-0.003774726,0.049129605,-0.000072182454,0.0073106615,-0.029585525,0.014058023,-0.006826958,0.015000939,-0.018503198,-0.017854178,0.047978513,-0.012931421,0.028532399,0.0028624241,0.033626594,0.011302749,-0.0052197147,-0.02282592,-0.032867365,-0.01675207,-0.033626594,-0.015037676,0.03225508,0.033136766,-0.002689454,0.0076474175,-0.025936317,0.00317775,-0.014315181,0.012141576,-0.0060983407,-0.051676705,-0.0044604833,0.0077576283,-0.024295399,0.00704738,0.0104271835,0.011621135,0.026842497,-0.024160696,0.00045155888,0.0058871033,-0.01753579,0.031250935,0.03041823,-0.0067351153,-0.0034257246,0.0067657297,0.026132248,0.015037676,-0.034410316,0.05402787,-0.019188955,-0.0019118544,0.0015253506,-0.0051309336,-0.022189144,-0.032720417,-0.009331197,0.0026435328,0.0005698061,-0.018429724,-0.006318763,-0.00912302,0.027258849,0.009863882,0.018197058,0.0071943277,0.015062167,-0.046729457,0.026254704,-0.014523358,-0.03612471,-0.048615288,0.043790497,0.006980029,-0.015576486,0.036516573,-0.011076204,0.009514881,0.0039675953,0.0036002253,0.014878483,-0.008376035,0.048419356,-0.013139598,-0.039577987,-0.0201931,0.01593161,-0.01035371,0.026450636,0.0052135917,0.00521053,-0.057946485,-0.019495098,-0.018086847,-0.011841558,0.023083078,-0.0048339763,0.029095698,-0.012711,0.026646566,0.039602477,-0.021025807,-0.0056513743,0.009435285,-0.0046319226,-0.015368309,-0.004488036,-0.012759983,-0.021785038,0.0014824908,-0.034557264,0.0049625556,0.00024778338,-0.01141296,0.0037930945,0.013739635,-0.0059850686,0.0031058067,0.009741426,-0.0073657674,0.0050268453,-0.013874338,0.0067657297,-0.022642234,0.048174445,-0.0076045576,0.0017603142,0.00020798495,0.019642046,0.0059483317,0.021344192,0.042125087,-0.015735678,-0.034704212,0.0047207037,-0.017841933,0.0058932262,-0.0076474175,-0.024797471,0.008057647,0.009178125,0.0013409003,0.013323283,0.0013324814,0.004481913,0.03810851,0.01686228,0.031765252,-0.023144307,-0.020242084,0.0265486,0.016788807,0.0013998325,0.014058023,-0.009870006,0.0107516935,-0.0023128998,0.013421249,-0.007745383,0.014498867,-0.01759702,-0.0035879796,-0.0035879796,-0.017780704,0.013690653,-0.030295774,-0.025960809,-0.024503574,0.001072261,-0.023511676,-0.042835336,-0.046533525,-0.012772228,-0.014670306,-0.012527315,0.020670682,-0.0012980404,-0.0022057502,0.025397507,-0.011584398,0.0057126023,0.034655232,0.00592384,-0.023670869,-0.014388655,0.06980029,-0.032499995,0.006649396,0.028311977,0.06284475,0.03213262,-0.029610017,0.010200638,0.054615665,0.0058166906,-0.017792951,0.016311225,-0.0045431415,0.015723433,0.034018457,-0.002589958,0.0043135355,0.000592384,0.030663144,-0.003281838,0.0019837976,0.0073902584,0.02313206,-0.012202805,0.038769774,0.033944983,-0.028899768,-0.010806799,0.006107525,0.012233418,-0.009686321,0.013800864,0.026793513,0.0156009765,-0.0039033056,-0.0009191902,0.013788618,-0.019495098,-0.024528066,-0.027185375,0.011712978,-0.010451674,-0.011376223,0.0011067019,0.0041237273,-0.023168797,-0.009882251,0.0098149,0.022054441,0.0030491704,-0.00559933,0.025470981,-0.0053636013,-0.023266762,-0.027430288,0.017033719,-0.049496975,-0.033822525,-0.0044604833,-0.032646943,0.002302185,-0.021172754,-0.009110774,-0.009190371,0.0086454395,0.030565178,0.0018904244,0.0008089792,0.020854367,0.0035818568,0.010978239,0.028311977,-0.01429069,0.0007775997,-0.004377825,0.001171757,-0.0006972375,-0.05069705,0.019580817,0.031006023,-0.015858136,0.03284287,-0.031422377,0.03504709,-0.00014599127,0.010072059,0.024956664,-0.009723058,0.017192913,-0.02765071,-0.03681047,-0.017646002,-0.01852769,0.044304814,-0.0048003006,-0.026818005,0.0344593,0.006324886,-0.006165692,-0.023830064,-0.007151468,-0.04104747,-0.044084392,0.03409193,-0.013984549,-0.029805947,-0.0132743,-0.012576298,-0.00782498,-0.020621698,0.005871796,-0.018882815,-0.008192349,0.031373393,-0.01474378,-0.0021506448,0.020609453,-0.03166729,-0.02200546,-0.01437641,0.008173981,0.008498491,0.03485116,-0.003229794,0.020609453,-0.018086847,-0.015417292,-0.027773168,-0.03058967,0.009116897,-0.006003437,-0.016629612,-0.006361623,-0.03058967,-0.033087786,-0.015809152,0.028605873,0.03259796,0.020719664,-0.02129521,0.04881122,-0.010629237,-0.03039374,-0.009049546,-0.004331904,-0.047317248,0.022250373,0.01675207,-0.012227296,-0.016054066,0.010206762,0.022887146,-0.023707606,0.02239732,0.01279672,-0.026132248,0.00896995,0.014707043,0.004766625,0.009349565,0.0012574766,0.027577236,-0.029340612,-0.0020205346,-0.013127352,-0.0023511676,0.030369248,-0.0004014282,-0.00025467156,0.0024215803,0.019397132,-0.03977392,-0.015429537,0.03482667,-0.0065820445,-0.04014129,0.0024935235,-0.023389218,0.033969473,-0.010035322,0.010384323,-0.026058774,0.011749715,-0.03906367,-0.011033344,0.012049734,0.0022409565,-0.027160883,0.02324227,0.010770062,0.015674451,0.02931612,0.006612659,-0.016164277,-0.030099843,0.008088262,0.0014541727,-0.008486246,0.019666538,-0.018148074,-0.008516859,0.00814949,0.02561793,-0.0044176234,-0.024491329,0.029046716,0.01629898,-0.012502823,0.02310757,-0.019225692,0.016347962,-0.045945734,0.013151844,0.009086283,-0.027748676,0.01858892,-0.04457422,0.015882626,-0.076363966,0.002795073,0.038206473,0.029267138,0.004699274,-0.012735491,-0.0070657483,-0.020511487,-0.032695923,0.023768835,0.0025210762,-0.009833269,0.004074745,-0.008406648,-0.017866425,0.011014976,0.03521853,-0.0035114442,-0.034900144,0.005541163,0.0027414982,0.021405421,-0.008474,0.015037676,-0.0048431605,0.0037349276,0.027307833,-0.013862092,-0.00048906123,-0.031079497,0.022299355,0.0015138703,-0.019360395,-0.03739826,0.014474375,0.006924923,0.026205722,-0.032671433,0.00977204,0.01519687,0.02228711,0.005336048,0.02581386,-0.005106442,0.004974801,-0.0070657483,0.019213447,-0.001934815,0.023548413,0.019286921,0.034679722,-0.008504614,-0.0010959869,-0.019923696,-0.027381307,0.024148451,0.004371702,-0.019078745,0.0039369813,0.014682552,-0.003906367,-0.0142294625,0.0035941026,-0.021846265,-0.024503574,-0.0010370547,0.03127543,0.028091554,-0.032402027,-0.010041445,-0.015747925,0.04290881,0.036443096,0.030197809,-0.0361492,-0.015147887,-0.03213262,0.00029485265,0.0031379515,0.012894684,-0.013213072,-0.0035328742,-0.029193664,-0.003266531,-0.005884042,-0.00916588,0.0196298,-0.013506968,-0.0035573656,0.016960245,0.022862656,-0.015588731,-0.0010753224,0.001489379,-0.019213447,-0.012735491,-0.022972867,-0.043594565,-0.02635267,0.0021429912,-0.034998108,0.03776563,-0.04844385,-0.0054064607,0.016152032,0.0034196018,0.022629987,-0.0030491704,0.006937169,0.01593161]},{"id":"interface-APIRole","type":"interface","source":"main","text":"Interface: APIRole\nDescription: Role from GET /guilds/{id}/roles\npermissions is bitfield as string (e.g. \"8933636165185\")\nProperties: color: number, hoist: boolean, hoist_position: number | null, id: string, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/APIRole"},"embedding":[-0.038213514,0.019660747,0.01854098,0.050354145,-0.009129046,-0.010578849,-0.038779292,0.0042786878,0.059925202,0.000077858786,0.024847036,-0.039557237,0.019778619,-0.0048798257,0.026803682,-0.0054485495,0.004143137,0.030504804,-0.0136022195,0.06369705,0.01929535,-0.021640968,-0.005828681,0.033003654,-0.048845407,0.022925751,0.009076005,0.049599774,-0.010425618,-0.026709385,0.05459747,-0.028194549,0.008021066,0.0128832115,-0.006370884,-0.055681877,0.024422703,0.020002572,0.00068733055,0.006306055,-0.02423411,-0.0068305773,-0.0030042164,-0.04330551,-0.034936722,0.060349535,0.0104491925,0.028076679,0.0073551,0.014309441,-0.0062530134,0.024257684,-0.037907053,0.08448935,0.008545589,0.016431104,-0.048656814,0.016902585,-0.03253217,0.023715481,-0.043706264,-0.045875076,0.011244816,-0.00009056667,-0.003592094,0.015476355,-0.09156156,0.040123012,0.029443974,0.018057713,0.042951897,-0.005896456,-0.028501011,-0.0012287967,0.007773539,-0.03637474,-0.002576937,0.045144282,-0.00018444842,-0.037129108,-0.04870396,0.03717626,-0.046322983,-0.0685533,0.049081147,-0.0055222185,0.02428126,-0.04622869,-0.036987666,0.010278281,-0.05313588,-0.04290475,-0.083829276,-0.023656547,-0.0065182215,-0.0624712,0.008651672,0.029184658,-0.018375963,0.06794038,0.0397694,0.0044378126,-0.08340494,-0.01676114,-0.017774824,0.03835496,-0.0006928557,0.02913751,0.0048827725,-0.044437062,-0.09269311,0.022913964,0.0018505619,0.008510227,-0.011574852,0.050259847,0.020497626,-0.019271776,0.038001347,-0.038850013,-0.05785069,-0.047761,0.022784308,0.010431511,-0.047030207,-0.009547485,-0.033003654,-0.027652346,-0.023892287,-0.015747458,-0.032791488,-0.021923855,0.048986852,-0.009565166,-0.008115362,-0.012388157,0.0041873385,-0.040594492,-0.010584743,-0.041301712,-0.012918573,0.012529601,0.009741971,0.026002163,-0.04941118,0.010673146,-0.032084264,-0.009989498,-0.007549586,0.042456843,-0.012529601,0.009093685,-0.029750437,-0.008032854,-0.03708196,-0.070957854,-0.007856048,0.0196136,-0.027275162,-0.0031176666,0.025412813,-0.03557322,-0.021582032,-0.014038339,-0.00008715948,-0.02645007,0.028194549,0.012329222,-0.026921552,0.048609667,-0.019637173,0.0016339755,-0.05681343,0.0032767912,-0.058227874,0.012953933,0.02332651,0.0038278343,-0.027133718,-0.012977508,0.025672127,0.004408345,-0.013413628,-0.055116102,-0.029561844,0.023149705,-0.05167429,-0.0027935235,0.0050743115,0.029326104,0.00009669039,0.04243327,0.037694886,-0.004517375,0.009317638,-0.017821973,0.0013127793,-0.0044378126,0.0063355225,-0.05073133,-0.00031806534,0.015570652,0.09175015,-0.0024517,-0.032084264,-0.018682426,-0.009777332,-0.03206069,-0.03981655,-0.0051745013,0.039321493,-0.01217599,-0.007408141,-0.01803414,-0.0020141068,0.021499522,-0.005672503,0.022831455,0.010407938,0.01272998,-0.01795163,0.008339316,0.032202136,-0.024104454,0.002518002,0.03373445,-0.008710607,0.0012884685,0.005218703,0.007844261,-0.028170975,0.024776313,-0.048020314,-0.024823463,-0.02463487,-0.0029732755,-0.015653161,0.0238805,0.004971175,-0.022583928,-0.025177073,-0.043423377,-0.0060408474,0.010266493,0.043894857,-0.013637581,0.042834025,0.042480417,0.005837521,0.0026727065,0.03946294,0.029066788,-0.020992681,-0.007973919,-0.0026491324,-0.01854098,0.0046087243,0.050825626,-0.023031835,0.010985502,-0.013012869,-0.014226932,-0.007531905,-0.024540573,-0.019625386,-0.010502234,0.0016796502,0.0020509413,-0.047006633,-0.017433,-0.002283735,0.0053896145,0.04926974,-0.0043435167,-0.031542063,0.040429473,0.048656814,0.0033239394,-0.03041051,-0.0077558584,0.01541742,0.018847443,-0.0032090158,0.043187637,-0.013896896,0.021770624,0.037412,-0.0055899937,0.021805985,0.018988887,0.019354286,0.016160002,0.052805845,-0.025059203,0.004470227,-0.009199768,0.07199511,-0.027605198,0.056719135,0.021004468,0.014792709,0.01795163,0.00064349757,-0.044932116,-0.0073433127,-0.013861534,0.0018667692,-0.017126538,-0.0060997824,-0.049364034,0.05238151,0.052805845,-0.025813572,0.01494594,-0.06977915,-0.03321582,0.0041991253,0.003353407,-0.002042101,0.059170835,0.011350899,-0.017892694,0.008604524,-0.01973147,0.015865328,-0.041065972,-0.018352387,-0.0035862005,0.015158107,-0.008421825,0.03333369,-0.028618881,0.0012413204,0.052475806,0.03463026,-0.012411731,-0.027534476,0.10627176,0.042173952,-0.009582846,0.013519711,-0.01304823,-0.031023433,0.005572313,-0.012352795,-0.018988887,-0.044059876,-0.0019625386,0.020214736,0.057190616,0.011916677,0.033027228,-0.024611296,0.003615668,-0.05879365,-0.037506294,0.029090364,-0.034653835,-0.041843917,0.05803928,-0.0397694,-0.012081695,-0.021794198,0.011675042,-0.00883437,0.0068070036,-0.02463487,0.03229643,0.010130943,-0.048421074,0.028831048,0.03316867,-0.04021731,-0.049929813,0.023974797,0.027558051,-0.042716157,-0.006282481,-0.020980893,-0.022124235,0.014568755,0.03491315,0.0038985566,-0.031872097,0.0042492202,-0.04571006,-0.029443974,-0.0061587174,-0.023538677,-0.001772473,0.030339787,0.0085868435,0.0059288703,-0.0010357843,-0.008256807,-0.02364476,0.020698005,0.03165993,0.0043140487,-0.03041051,-0.012052227,0.015700309,0.020120442,0.020839449,-0.060585275,-0.046322983,-0.010679039,0.021511309,0.0060025393,-0.028878197,0.023432594,0.008138937,0.015228828,0.022878604,0.07166508,-0.062424053,0.045380022,-0.04344695,-0.013672942,0.043093342,0.0002766266,0.0072608036,-0.017209047,-0.03842568,0.022784308,-0.00085603225,-0.006046741,-0.03519604,-0.022136021,-0.023385445,-0.030929137,0.05238151,0.04519143,-0.007272591,0.0229729,-0.040240884,0.015488143,-0.011610214,-0.021770624,0.008781329,0.009783226,-0.04646443,0.0007392671,-0.0180695,0.002693334,-0.007349206,0.041985363,-0.087601125,0.027958808,-0.024941333,-0.02032082,0.059972353,-0.013672942,0.062612645,0.010861738,-0.022631077,0.0061940784,0.042551138,-0.05091992,0.016713994,-0.0040400005,0.010514021,0.038378533,0.035691094,-0.015747458,0.013448988,-0.04601652,-0.049788367,-0.038850013,-0.03281506,-0.018929953,0.022937538,0.056766283,-0.040594492,0.011179987,0.009464976,0.0044466527,-0.011952037,0.006258907,0.013248609,-0.020910172,0.032202136,-0.055681877,-0.07223085,0.04827963,0.085573755,0.04391843,-0.011439302,-0.062424053,0.031306323,0.0039781188,0.0072254427,0.005755012,-0.0111092655,0.009871628,-0.03333369,-0.016867224,-0.06096246,-0.010761548,0.0046882867,0.02656794,-0.068270415,-0.017209047,-0.019083183,0.01439195,0.006488754,0.02866603,-0.020792302,-0.02522422,0.04460208,0.0022085926,0.0078089,-0.0046823933,-0.038001347,-0.03408806,-0.03397019,-0.044107024,0.031306323,0.005186288,0.0183406,0.005681343,0.033828743,0.053277325,0.011315539,-0.008050534,0.003267951,-0.013342906,-0.028760325,0.018364176,-0.032367155,0.0098068,-0.010407938,0.029113937,0.004266901,-0.00077941664,0.018847443,0.014910579,0.019743256,0.016666844,-0.028335994,-0.004426026,-0.013071804,-0.012069907,0.023927648,-0.022489632,0.03724698,-0.010567063,-0.0007109046,0.0343238,0.028053105,0.012052227,-0.017256195,0.011893102,-0.016336808,0.011280177,0.019719683,0.0075967335,-0.05469177,0.021452375,0.0010630417,-0.006665559,-0.0065653697,0.003907397,-0.024564147,-0.034017336,-0.008097682,0.02277252,0.028453864,0.020698005,-0.039792977,-0.0056165145,0.020132229,0.0036952305,0.00059413945,0.014132636,-0.012028653,-0.0064003514,0.03538463,0.03191925,0.014109062,-0.015924262,-0.040123012,0.01676114,0.023951223,-0.0054603363,-0.02925538,0.0034093952,0.00091423065,-0.004051788,-0.005469177,0.016690418,0.0050477907,0.021393439,-0.024917757,-0.033427987,-0.021888494,0.03036336,0.024493426,-0.035007447,0.018375963,0.014215144,0.00073300523,-0.038072072,0.0142033575,0.016325021,-0.0027169078,0.04057092,-0.0051008323,-0.015653161,0.013342906,0.0028612989,0.013873321,-0.036751926,-0.020037932,-0.027393032,-0.01672578,-0.019425007,0.005189235,-0.0076851365,-0.01115052,-0.00948855,0.0063178423,0.008392357,0.0019433848,-0.01914212,-0.02463487,-0.005852255,-0.031612784,-0.026591515,-0.032602895,0.028501011,-0.047265947,0.008875625,-0.012706406,-0.019590026,-0.013460776,0.013060017,0.03427665,0.009459083,-0.0053159455,0.024941333,0.0026535527,0.011627894,-0.035526074,0.04559219,-0.022925751,-0.008710607,-0.0074199284,-0.011062117,0.019271776,-0.018599916,-0.043234784,-0.00412251,-0.028642455,0.013625794,-0.005946551,-0.012246713,0.04057092,-0.0082627,0.02186492,-0.017845547,-0.014769135,0.009889309,-0.0003103301,0.05172144,-0.021428801,0.0067598554,0.018140223,-0.010714401,-0.004075362,0.030669823,0.042834025,-0.026968699,0.019625386,0.031636357,-0.002768476,-0.008910987,-0.014486246,-0.0071900813,0.007066318,-0.0040812553,-0.01739764,-0.0007993072,-0.04424847,0.02265465,-0.035856113,0.008274487,0.019743256,0.025601406,-0.039439365,0.016230725,0.03165993,0.0134843495,-0.023904074,-0.015629588,0.028972492,0.0037571122,-0.0130010815,0.014780922,0.016666844,0.0018711892,0.02439913,0.010331322,-0.029090364,-0.022513205,-0.00080225396,0.011881315,0.045757208,0.009647675,-0.015311337,-0.05271155,0.015476355,-0.03755344,-0.00049394974,0.0075142244,0.025766423,-0.018434897,-0.026308626,0.0189771,0.04424847,0.0287839,0.005027164,-0.016065707,-0.0059406576,-0.005419082,0.034818854,0.024422703,0.038024925,-0.0015779871,-0.021853132,0.0011197669,-0.0044289725,0.0045468425,0.021475948,-0.0033976082,0.018635277,0.027605198,0.030976286,-0.013767238,0.008899199,0.0072843777,0.006388564,0.0116809355,-0.017880907,-0.04769028,0.002155551,-0.029491121,0.016218938,-0.016030345,0.030457657,0.008374677,0.007195975,-0.0054573896,0.007531905,0.0022778413,-0.045851503,-0.03724698,0.002061255,-0.039439365,0.04512071,0.0017223782,0.041914638,-0.0049240272,0.040311605,-0.031707082,-0.0062765875,-0.0026240852,0.0007532642,0.022666438,0.017102964,0.011563065,0.008121256,0.009111365,-0.021593818,0.034253076,-0.025789997,0.020273672,-0.028571734,0.0006516011,-0.03781276,-0.0005657769,-0.017303344,-0.004649979,-0.01902425,-0.0029467547,0.02609646,-0.0032885782,0.010956034,0.039392218,-0.021900281,-0.0397694,0.033192243,0.01838775,-0.012836063,-0.016089281,0.0018166743,-0.00038013136,-0.06657308,-0.019672535,0.027982382,-0.013814386,-0.013354693,-0.008156617,0.06888334,0.05855791,-0.017138325,-0.0047030207,0.020804089,-0.054220285,0.015217042,0.006559476,0.048892554,-0.014333015,0.017091177,-0.0070781047,0.032485023,0.014639477,-0.0020391543,-0.0062412266,0.006070315,0.016702205,-0.01172219,0.018434897,-0.0021290302,-0.016572548,0.0624712,-0.020426903,-0.009541592,0.0058110002,-0.004744275,-0.006087995,-0.014333015,0.009358893,0.0047649024,-0.01138626,0.0064239255,-0.0060408474,0.012765341,0.0066950265,-0.008757755,0.004169658,0.0018122542,-0.0050625247,0.008910987,0.0023397233,0.00947087,0.04080666,-0.01229386,0.0027743697,0.03142419,0.020002572,-0.0029069735,0.010007179,0.0039869593,0.016277874,-0.03356943,-0.047808148,0.03851998,-0.0016649164,-0.002213013,0.009948244,0.035549648,-0.021699902,-0.015924262,-0.00446728,-0.000073162395,-0.0020229472,0.019036036,-0.0036009343,-0.027345885,0.0263322,-0.018599916,0.0025312623,-0.0028509852,-0.013083591,-0.015346698,0.005383721,-0.0025990377,0.042999044,0.043635543,0.005728491,0.033239394,0.015217042,-0.019342499,0.013649368,-0.02289039,-0.02384514,0.035526074,0.03828424,0.014733774,-0.010967821,0.013531498,0.016867224,0.009989498,0.027180865,0.011610214,-0.008032854,0.008881519,0.0058345743,-0.004711861,-0.03451239,-0.010101475,-0.0043965583,0.013531498,0.013614007,-0.0055428455,0.036492612,-0.029302528,0.008386464,0.006653772,-0.0009532751,-0.027982382,-0.0024192857,0.049694072,0.019578239,0.032909356,0.00636499,-0.029821157,0.0030351575,-0.015511717,0.01506381,0.013979404,0.016431104,0.012470666,-0.0034801173,-0.008728287,-0.007826581,-0.041749623,-0.01902425,0.011073904,0.0030940925,-0.015205255,-0.028854622,0.013472563,-0.015947837,-0.061386794,-0.016808288,0.020674432,0.027958808,-0.0024885344,0.027746642,-0.015653161,0.04186749,0.003353407,0.023892287,-0.0036598693,0.005301212,-0.013071804,-0.02416339,-0.002513582,0.00080962083,-0.019861126,0.02008508,-0.016713994,0.03340441,0.011663255,0.039015032,-0.026685812,0.043517675,0.0028878197,-0.020686219,-0.05294729,0.002030314,-0.020745153,-0.014050126,-0.01660791,-0.00007403721,0.022289252,0.0061351433,-0.0026255585,0.002659446,-0.014097274,0.030221917,0.024658443,0.000019614336,0.0142033575,0.038637847,-0.021346292,-0.011845954,-0.011144626,-0.010967821,0.049835514,0.0005963495,0.018564554,-0.063885644,-0.013401841,-0.01909497,-0.0014092855,0.061386794,0.016336808,0.031212026,0.0036362954,-0.046134394,0.036044702,-0.004974122,0.01138626,-0.004266901,0.036869794,0.01778661,-0.015723884,0.01272998,-0.045097135,-0.008080001,0.010614211,-0.010384364,0.022324614,0.005578207,0.0024708537,0.022348188,0.0021054563,-0.005419082,0.04653515,-0.01996721,-0.048986852,-0.031164877,0.01194025,0.008368784,0.020745153,-0.007349206,0.00636499,0.006871832,0.021263782,-0.007909089,0.00055214815,0.006641985,-0.021334505,0.011026756,0.028878197,0.03262647,-0.011062117,-0.031141303,0.05412599,-0.0021334505,0.039038606,0.0063237357,0.009795013,-0.0010755655,0.00915262,0.03467741,-0.007089892,-0.017102964,0.02439913,-0.016560761,0.03748272,0.050872773,0.018246306,0.0012892052,-0.006836471,0.0017651061,-0.012411731,-0.008256807,0.034182355,-0.020120442,0.031329896,0.010525808,0.0079857055,-0.003447703,0.008156617,0.026237903,-0.018706,-0.01949573,0.020367969,0.000006480558,0.008781329,0.008492547,0.013555071,-0.01272998,0.010920673,-0.043423377,0.021275569,0.0018726626,-0.02621433,0.009559272,-0.029208234,0.04344695,0.01257675,0.007496544,-0.02384514,0.00001801434,-0.016419318,0.044272043,-0.03293293,0.022359975,0.012671045,-0.04396558,0.011963824,0.025129924,0.0016236618,0.033640154,0.01237637,-0.057662096,0.01766874,-0.02866603,-0.026638662,-0.023267575,0.025601406,0.019554663,-0.019825766,0.01727977,-0.031023433,0.013036443,-0.010761548,0.011280177,0.041726045,0.0020332607,0.0046676593,0.013236823,-0.00081625103,-0.018175583,0.01205812,-0.0074552894,0.038378533,0.020580135,-0.018552767,-0.041490305,-0.0015529398,-0.021110551,-0.005419082,0.017656954,0.014380163,0.006288375,-0.041443158,0.01249424,0.025648553,0.005274691,0.019707896,-0.02300826,0.017362278,0.0021363972,-0.035950407,-0.016195364,-0.0065535824,-0.004434866,0.0073727802,0.011303751,0.0030130567,-0.036115427,0.002827411,0.00434941,0.017857334,0.0043877177,0.01526419,0.0024369662,0.02470559,-0.02372727,-0.0002799417,-0.024446277,0.036586907,0.02309077,-0.017491937,0.009205662,0.035926834,0.012600323,0.036987666,-0.014604117,-0.011745764,0.026968699,0.0040075863,0.002366244,0.003724698,0.0042580604,-0.0026299786,-0.01249424,-0.00901707,0.024823463,0.021157699,0.018352387,0.011728084,0.025907867,0.003135347,0.012953933,0.02320864,-0.03111773,0.016478252,-0.015582439,0.013060017,0.021157699,-0.00937068,0.00044974845,0.020367969,0.0054397094,-0.044130597,0.009936457,0.046275835,0.00323259,0.022324614,0.0070781047,0.021086976,-0.018446684,-0.008268594,-0.0005779323,-0.0024148654,0.003412342,-0.01194025,-0.030174768,-0.005018323,0.0031324003,-0.044979263,0.035926834,0.008392357,-0.0048503582,-0.004207966,0.00059377105,0.006453393,0.031377044,-0.008769542,-0.009618208,-0.037577014,0.046370134,-0.016431104,0.01684365,0.013555071,0.04460208,0.022949325,0.0077558584,0.031848524,0.056011915,0.022501418,-0.003256164,-0.0033298328,0.013225035,0.034300227,-0.0045468425,0.032885782,0.00018914482,-0.0002210066,0.0038720358,0.009712503,-0.0073374193,0.011297857,0.04354125,-0.038166367,0.036233295,0.0073609934,-0.044625655,-0.018328814,0.013932256,0.029302528,-0.02550711,-0.041136697,0.03708196,-0.008958135,0.009553378,0.0046529258,0.01850562,-0.014769135,0.00947087,-0.021593818,0.01933071,0.017433,-0.0015603066,0.026638662,0.0071900813,0.007048637,0.013684729,0.018753147,0.023856927,0.022666438,-0.008274487,0.01917748,0.024799887,-0.022289252,-0.049128294,0.01649004,-0.0041726045,0.0005131037,-0.008003386,0.023149705,0.015723884,0.021853132,0.031400617,-0.00634731,0.022831455,0.01150413,-0.014297654,0.039085753,0.040948104,-0.0047560623,0.022253891,0.018517407,-0.026190756,-0.0070839985,-0.0122231385,0.03168351,-0.02953827,-0.013531498,-0.0058404678,-0.014757347,0.0039692787,-0.0025710436,-0.0085279085,0.016383957,-0.030080473,0.011616107,0.0076792426,-0.015900688,0.011233029,-0.036186147,-0.030693397,-0.02403373,-0.032838635,0.006989702,-0.027699495,-0.015240615,0.010997289,-0.0039928528,-0.009859841,-0.0077558584,0.026402922,-0.030669823,-0.0062412266,0.0011403941,0.015110958,0.014309441,-0.0034211823,-0.011627894,0.005333626,-0.0251535,0.0062058656,-0.018729573,0.020556562,0.02913751,-0.022725372,0.003653976,0.005345413,-0.029396825,-0.02423411,-0.025530683,-0.012317435,0.018717786,0.019130332,-0.013932256,0.025294943,0.0039957995,-0.02040333,-0.0013658208,0.014792709,-0.0013584539,-0.015936049,-0.028430289,-0.02384514,-0.013826173,0.0029924293,0.008038747,-0.0077028167,0.013991191,-0.02186492,-0.019189266,0.019566452,0.009865735,-0.034135208,-0.018800296,-0.0048975064,-0.0076792426,0.029962601,0.016348595,-0.03420593,-0.025719276,0.016879011,0.031329896,0.014769135,0.00032782645,0.013012869,-0.0019109704,0.006706814,-0.016124642,0.023974797,0.026591515,-0.009954138,-0.0066773463,-0.033993762,0.0033593003,-0.005162714,-0.02384514,0.033640154,-0.022748947,-0.008386464,-0.005142087,-0.011138733,-0.01803414,-0.026072886,-0.0068187905,-0.03842568,-0.03420593,0.008740075,-0.01858813,0.024186963,-0.027605198,0.000081127844,-0.021004468,-0.0075024376,-0.027039422,-0.018364176,0.022595715,-0.026025739,-0.0044289725,0.0154645685,0.019908275,-0.010472766,0.005009483,-0.006895406,-0.0134843495,0.00034863793,-0.0129421465,-0.016183577,-0.0053660404,0.014321228,-0.01953109,0.0022616342,0.020474052,-0.03503102,0.04653515,-0.017409427,0.013555071,0.008687033,0.02004972,-0.022501418,-0.013649368,0.014486246,-0.002799417,0.0037423784,-0.021947429,0.005068418,0.0028524585,0.0015219988,0.0016295554,-0.050118405,-0.029585417,0.028854622,0.047100928,0.006488754,0.0064239255,0.06105676,-0.018729573,0.005634195,0.015676735,0.008633992,0.019790405,-0.015393847,-0.015936049,-0.024104454,0.013908682,0.0343238,0.006388564,-0.025672127,0.02953827,-0.012069907,-0.012270287,-0.015429208,0.0110797975,0.0060997824,-0.002709541,0.02435198,-0.027393032,-0.020957319,-0.03969868,-0.010749761,0.042362545,0.0085279085,-0.028713178,-0.037624165,0.01748015,-0.010631891,-0.015122745,0.0051951287,-0.009022963,-0.019872913,0.010213451,-0.0045733633,-0.014604117,-0.000017335205,0.04262186,0.0183406,0.014957727,0.016065707,0.02004972,0.028076679,-0.026072886,0.003206069,0.013496136,-0.007850154,-0.0116220005,0.01261211,-0.028642455,0.0069838087,0.0007867835,-0.012859638,-0.00992467,-0.016560761,-0.02550711,-0.003627455,0.017527297,0.011733977,0.016831864,-0.03479528,0.019507516,-0.011297857,0.048609667,0.04745454,0.037223406,-0.014521607,0.022277465,-0.019472156,0.027228015,-0.023078984,-0.0017488989,-0.0064710733,-0.0072136554,-0.022041725,-0.0066243047,0.029962601,0.035243187,0.019201053,0.025719276,0.0013687676,0.023267575,0.0011868054,-0.033781596,-0.016195364,-0.0074022477,-0.00945319,0.0072784843,-0.0017827866,-0.030669823,-0.013991191,0.009677143,-0.010920673,0.02446985,-0.015582439,-0.01172219,0.009600527,-0.008038747,-0.0042492202,-0.028571734,-0.0047236476,0.0015765138]},{"id":"interface-APISticker","type":"interface","source":"main","text":"Interface: APISticker\nProperties: animated: boolean, description: string, id: string, name: string, tags: string[]","meta":{"url":"/docs/typedefs/APISticker"},"embedding":[-0.0042302674,-0.03275864,-0.049426123,-0.013324766,-0.05297632,0.008385612,-0.015399557,-0.024966648,0.002877331,-0.046175618,0.024459476,-0.024736116,0.03013057,-0.044815477,0.00013066498,0.007820808,-0.028147994,0.0080398135,0.024044517,0.008933126,0.031444605,-0.021059126,0.022949489,0.038706373,0.0178432,0.03683906,-0.026142363,-0.017831672,0.008535458,0.03697738,0.015676197,-0.027179757,0.081147365,0.035087015,-0.014143156,0.032505054,-0.0068698623,-0.009175185,0.009255871,-0.045945086,-0.019307079,0.030107517,0.014189263,0.008506642,-0.014258422,0.075614594,-0.01699023,0.06773039,-0.008454772,0.027825247,-0.027686927,0.0026151007,-0.04490769,0.021646982,0.019364713,-0.007797755,-0.022488425,0.0024349974,-0.01780862,0.016333213,0.04038926,-0.012183632,-0.015042232,-0.013924151,-0.0028168163,0.044008613,-0.06662383,0.049426123,0.012414164,-0.006379981,0.081562325,0.01596436,-0.032666426,0.018880595,-0.021059126,-0.042187408,-0.043017324,0.026096255,0.056849264,0.025081914,-0.053160746,0.03421099,-0.03898301,-0.046014246,0.022476899,-0.049426123,-0.027733035,-0.055512175,-0.023813985,-0.009417244,-0.031467658,0.013705145,-0.08308384,-0.022142626,0.013520719,-0.021151338,-0.0019422346,-0.023387501,-0.054728366,0.0098610185,0.04068895,-0.048734527,-0.07985639,0.01637932,-0.025404658,0.02016005,0.0034147596,0.029807825,-0.005293598,0.000004567308,-0.04520738,0.019364713,-0.028954856,0.012368058,0.015849095,-0.03262032,0.015952835,0.0049391543,0.042394888,-0.062289827,-0.041242227,-0.017243816,0.062428143,-0.006172502,-0.0117283305,0.012978968,-0.029646453,-0.03404962,-0.073447585,-0.04184161,-0.028032726,-0.023076283,0.0076190922,-0.006431851,-0.027295023,-0.029116228,-0.027179757,0.0099301785,-0.011941573,0.016241,0.011319135,-0.050855424,0.017336028,-0.0015661787,-0.0014148919,-0.010126131,0.0009999338,0.036032196,0.010633302,0.027779141,0.010143421,0.07589123,-0.012022259,-0.00815508,-0.008961943,0.0031006592,0.022246366,-0.030084465,-0.008662251,-0.030937433,0.0025084794,-0.045783713,0.026972279,0.002462373,-0.03550197,0.02131271,0.0485501,-0.019479979,-0.030799113,0.048872847,0.03312749,-0.062013187,-0.054590046,-0.02155477,-0.041657183,-0.005806532,0.028516844,-0.029531186,-0.018742274,0.017001756,0.024182837,0.061690442,-0.020678746,-0.045507073,0.005613461,0.018684642,-0.011987679,0.008558512,0.012241265,0.00012346085,-0.021681562,0.006933259,0.008287636,0.00890431,0.006898679,-0.03421099,0.013186447,-0.02805578,-0.0074404296,-0.045945086,0.022822697,-0.003169819,0.011492034,-0.008437482,-0.029139282,-0.023007123,-0.038706373,-0.0134515595,-0.0028427513,-0.00237016,0.06371912,-0.006016893,-0.020010203,0.0014746862,-0.049748868,0.019307079,0.02026379,0.007780465,0.015768409,0.0160681,-0.023168495,0.027871354,0.029254548,-0.028655164,-0.0041178833,0.03418794,-0.019226393,0.038637213,-0.0065010106,-0.020113943,-0.077089995,0.041449707,-0.011578484,-0.031098805,0.009319268,-0.0028427513,-0.01036819,-0.0057114377,-0.005550065,0.0024566096,0.00059902377,-0.014731013,-0.012391111,-0.00068295194,0.0356864,0.04440052,0.0158952,0.009561326,-0.007849624,-0.02223484,0.04513822,-0.003495446,0.01029903,0.0057258457,0.0019667286,-0.02455169,-0.00079245475,0.029577293,0.02260369,0.026972279,0.013128814,-0.036055252,-0.032159254,-0.012540957,0.026718693,0.0030804877,0.046383098,0.051224276,0.009175185,-0.00039442634,0.009492167,-0.027225863,0.0485501,0.019583719,-0.018431056,-0.007763175,0.004276374,0.06325806,-0.03697738,0.06501011,-0.019491505,-0.025957936,0.004501143,0.027709981,-0.048181247,0.042279623,0.023456661,-0.009025339,0.019237919,0.02791746,0.05624988,0.04389335,0.026764799,-0.005333941,0.0027274853,0.016563745,0.01409705,-0.012264318,0.06003061,0.0023917726,0.033242755,-0.08395986,0.042210463,0.0007838098,-0.0011245654,-0.0021987017,0.0021900567,0.04433136,0.031744298,0.009728462,0.020332947,-0.017474348,-0.0077747013,-0.012955915,-0.061690442,-0.011468981,0.05975397,0.021128284,-0.052838,-0.0020949622,-0.021427976,-0.00029933176,0.023168495,-0.039766822,-0.021082178,-0.09013812,0.02066722,0.0038009011,0.024666956,0.02877043,0.009227055,-0.03983598,0.009492167,0.015722303,0.06003061,-0.009999339,-0.0007657994,0.013267133,-0.009624723,0.040158726,0.030545529,-0.058370776,-0.046705842,0.022949489,0.01310576,-0.0016238118,-0.033519395,-0.009763042,-0.0008997964,0.010068498,0.010650592,0.042371836,-0.039536286,-0.06869862,-0.04112696,-0.03932881,0.011566957,-0.026119309,-0.044216093,0.04947223,0.0034234044,0.04168024,-0.0015632971,0.021001492,-0.032090094,-0.021577822,-0.026465107,0.013762778,0.017013283,-0.054405622,0.067269325,-0.0046798056,-0.016056575,-0.0079476,0.009169422,-0.0042072143,-0.031605978,0.0012801746,-0.016183367,-0.025174126,0.049564444,0.0053137694,-0.008304926,0.029070122,0.011941573,-0.0016872082,-0.014696433,0.035294496,-0.024436424,0.04045842,0.049887188,-0.029047068,-0.08419039,0.0037547946,0.015537877,-0.04405472,-0.01841953,0.023860091,0.019998677,0.015284291,-0.0064087976,-0.0017217881,-0.018880595,0.017047863,-0.010483456,0.010114605,-0.013255606,0.020183101,0.06371912,-0.026833959,0.0073424536,-0.03796867,0.02376788,0.03204399,0.016794277,0.0010892651,-0.026995331,-0.040942535,0.01603352,0.066024445,0.026073202,0.0025200062,-0.0071926075,-0.053022426,-0.034372363,0.021716142,0.0065989867,-0.025012754,-0.04446968,-0.017624194,0.035847772,0.09059919,0.041956875,-0.020436687,0.027594715,-0.037300125,0.013728198,-0.035455868,-0.008575801,-0.010932994,-0.041011695,-0.05482058,0.015019178,0.029231494,-0.013002021,-0.024205891,0.012241265,-0.043386176,-0.0043051904,-0.025151072,-0.06473347,0.015768409,-0.06330416,0.036447156,0.0058295853,0.0017102615,0.0058901003,-0.0022145507,0.009814912,-0.009353847,0.007221424,0.0008954739,-0.009780332,0.025450764,0.009140605,-0.015157498,-0.010777385,0.051500913,0.05039436,0.016321687,0.021831408,-0.021105232,0.024159783,0.014431321,-0.0047691367,-0.04511517,0.002138187,-0.04375503,0.003429168,-0.041080855,0.023364447,0.029508132,-0.019998677,-0.030291943,0.02056348,0.08644961,0.024205891,-0.019260973,-0.025220232,-0.017750986,0.0039939717,-0.010869597,0.035248388,-0.010564142,0.0032908483,-0.03112186,-0.014731013,-0.03303528,-0.005290716,0.00015497893,0.06786871,-0.039490182,-0.024874434,0.030637741,0.0692519,0.0012009292,0.03262032,-0.024205891,-0.0070081814,-0.037230965,0.018004572,-0.0642724,-0.0178432,-0.035225336,-0.02441337,-0.0033772981,-0.027525555,0.05389845,-0.033888247,0.018361896,-0.0381992,-0.0071349745,0.056710944,0.001355818,0.018408004,-0.01399331,-0.036147464,-0.060952738,-0.01760114,-0.0178432,-0.014362162,-0.039490182,-0.011221159,0.021969728,0.0059707863,0.006506774,0.0028427513,0.025658244,0.015388031,-0.021105232,-0.014154683,0.008408666,0.04682111,0.04126528,-0.039720714,0.033288863,-0.0328278,0.019837303,0.0134285055,0.03506396,0.0165868,-0.033542447,0.042187408,-0.02877043,0.0331736,0.0080686305,-0.015572457,-0.039167438,0.02761777,-0.00888702,-0.033542447,-0.03268948,0.022188732,-0.01705939,0.022961017,0.013267133,0.010610249,0.019180287,0.019722037,0.026188469,-0.018142892,0.0051379884,0.0055097216,0.018846015,-0.008610381,0.012540957,-0.012218212,0.007521116,0.009036866,-0.044700213,0.009209765,-0.005028486,0.0049881423,0.038821638,-0.015699249,0.04011262,0.0026280682,-0.010489219,-0.00005074412,0.012206685,0.003112186,-0.03884469,-0.019111127,-0.015699249,-0.0012189394,-0.0025243287,-0.009192475,0.002605015,-0.011394058,0.011566957,0.009048392,-0.0063915076,-0.03303528,0.003527144,0.027295023,0.0023197313,-0.037254017,-0.016425425,-0.0057200827,0.023203075,-0.019410819,0.04654447,-0.027202811,-0.03704654,-0.01655222,0.0038412444,-0.0018514624,0.0021670035,-0.011054023,-0.03441847,-0.014546587,0.010529563,0.003852771,0.00013552778,-0.018569376,0.0033081383,0.013682092,-0.00946335,-0.0043801134,0.0029234376,0.0011152,-0.0050313673,-0.02761777,0.0021583585,0.009693882,0.006933259,-0.024897488,0.029600346,0.0011159204,-0.014857806,0.02202736,-0.0009624723,0.061367694,-0.010108841,0.039605446,-0.013705145,0.022937963,0.012172105,-0.01777404,0.043939456,0.0023442253,-0.027179757,-0.01317492,-0.0075729857,0.0022649798,0.010679408,-0.017820146,0.0032620318,-0.007872677,0.011226922,0.026649533,0.02621152,-0.020367527,0.013820411,-0.027456395,0.02570435,0.029946145,0.003429168,-0.0152727645,-0.02188904,0.004253321,0.019491505,-0.01592978,0.011474744,-0.013774305,-0.02016005,0.010518036,-0.019111127,-0.013071181,-0.00088682893,-0.012425691,0.029646453,-0.022788117,-0.011930046,0.0043080724,0.0040227883,0.018661588,0.026442055,-0.0038729424,-0.008564275,0.0151690245,0.033381075,0.021162864,0.021739194,0.0221311,0.027686927,0.010650592,0.011238449,0.011192342,-0.01045464,0.007705542,0.0013723875,-0.03439542,-0.024966648,0.0043051904,0.0078092813,0.024528636,-0.002197261,0.019710511,0.029946145,-0.05532775,0.019871883,-0.018788382,0.023652613,-0.022557585,0.000869539,-0.029508132,-0.0006336036,-0.010062735,-0.0008709798,0.0029998014,0.00660475,-0.03142155,0.018938228,0.047950715,-0.0055270116,0.002129542,0.009682356,-0.017589614,-0.019560665,-0.006789176,0.01655222,-0.022511479,0.013566826,-0.00660475,0.045022957,0.026142363,0.014615747,-0.00029176744,0.0063338745,-0.015480244,0.019456925,0.013324766,0.010085788,0.0013839141,-0.0070831045,-0.042026035,-0.004345534,-0.014546587,-0.039559342,0.015376504,0.006414561,-0.001613726,-0.0012830563,0.0021842935,0.002537296,0.030545529,-0.019560665,-0.012252791,0.024851382,0.014085523,0.018269684,0.0134746125,0.02798662,-0.021232024,-0.01756656,0.0015157498,0.017013283,0.0060802894,0.0478124,-0.022937963,-0.050763212,0.007924547,-0.0067200162,0.023929251,-0.02948508,-0.0020445331,-0.046221726,-0.012783015,0.04034315,-0.010224107,0.0034320494,0.0013457322,-0.015814515,0.023813985,0.0037634396,0.004976616,0.003593422,0.0056365146,-0.0152036045,-0.060814418,0.024321157,-0.01252943,-0.05883184,0.00658746,-0.0008205509,-0.005008314,-0.04068895,-0.03670074,0.03983598,0.0044982615,-0.028332418,0.0116649335,0.04181856,0.04255626,-0.0072848205,0.001489815,0.007745885,0.015388031,-0.014304529,-0.015537877,0.0026597662,-0.0080628665,0.028862642,-0.01042006,0.061413802,0.011509324,0.014996125,0.042464048,-0.009520983,0.04984108,-0.00024548086,-0.0016886491,-0.014454375,0.0067488328,0.031306285,-0.014754066,0.013947204,-0.0075556957,-0.025980989,-0.0032072805,0.03783035,0.000061055034,0.0056768577,0.022546059,-0.0056538046,0.011739857,0.03582472,0.004725912,0.0134515595,-0.0014588372,0.011474744,0.0013478935,-0.009618959,0.054082874,-0.031260177,0.019860357,0.018511742,-0.009267398,0.04410083,0.027248917,-0.009866782,-0.019191813,-0.064549044,0.019745091,-0.04020483,-0.0018341725,0.020033255,0.020448213,0.0060111294,0.011365242,0.042302676,-0.010932994,-0.011480508,0.028171046,0.004668279,-0.013947204,0.040827267,0.02281117,-0.011330662,0.011895467,-0.008212713,0.038637213,0.00028456328,-0.0367699,-0.0021857342,0.0028153756,0.023272235,0.027733035,0.050717104,0.017993046,0.013094234,0.038614158,-0.033496343,0.01991799,0.01763572,0.030660795,0.037023485,0.023191549,-0.015122918,0.01688649,0.0073078736,0.016425425,0.02955424,0.014915439,0.024367264,-0.0007838098,0.03647021,0.0054117455,0.0073078736,-0.016021995,-0.04446968,-0.0002802408,0.007901494,0.039098278,0.021508662,0.048411783,-0.003965155,-0.03006141,-0.0135437725,0.035248388,-0.03561724,-0.0060111294,0.012045312,-0.022142626,0.013393926,-0.0010201054,-0.0029133519,0.0016367793,-0.004336889,-0.0066162767,0.0051120534,0.0045213145,0.008910073,-0.025035806,0.008414429,-0.02277659,-0.02009089,-0.008973469,0.014523534,-0.0020243616,0.023998411,-0.015872149,0.009296214,0.013601406,-0.05297632,-0.05624988,0.016079627,-0.016690537,-0.014293002,-0.02992309,-0.010731278,0.0017750986,-0.016805803,0.027848301,0.007048525,-0.034718163,0.006939022,0.01845411,-0.017140076,0.03199788,-0.0069678384,0.038660266,-0.032873906,-0.016563745,0.0046711606,0.035110068,0.003236097,0.026787853,0.020540427,-0.03647021,-0.021543242,-0.016713591,-0.0076248557,0.009146369,0.021266604,-0.00030437467,-0.0040199067,-0.013843464,0.020863172,-0.039882086,-0.052653573,0.006858336,0.051869765,0.016563745,0.02577351,-0.0019335896,-0.015445664,0.007918784,0.011025207,-0.018811435,0.045161277,0.00881786,0.016736645,-0.014869332,-0.017186182,-0.023099335,0.0081435535,0.021612402,0.025473818,-0.023168495,0.0059131533,0.023180021,0.0026179822,0.014938492,0.019468453,-0.014500481,0.031513765,0.010310557,0.004103475,0.009250108,-0.017209236,0.024874434,-0.0152612375,0.021289658,0.006472194,-0.00730211,0.0067257797,-0.039236598,0.02192362,0.026810905,0.011509324,0.014373688,-0.03013057,-0.022303998,-0.043224804,0.00817237,0.0064606676,-0.009129079,-0.021439504,-0.0064491406,0.0044204565,0.015215131,-0.01950303,-0.01246027,-0.025589084,0.024182837,0.007941837,0.050440464,0.013416979,-0.019768143,0.056941476,0.010777385,0.03898301,0.03704654,0.03674685,-0.0026439172,-0.02152019,-0.021646982,-0.04052758,-0.006881389,-0.008270346,-0.011203869,0.021762248,0.06588613,-0.0033052568,0.004841178,-0.020505847,0.008178133,0.0046279356,-0.01770488,0.0037029248,-0.02890875,-0.004607764,-0.004691332,-0.039559342,-0.011526614,0.033565503,0.008431719,0.043086484,-0.010587196,0.006979365,-0.00089403306,-0.026004042,0.0146388,-0.0061609754,0.016125733,0.011906993,-0.01249485,0.019387765,-0.00297963,-0.028217152,0.039305754,-0.022753537,-0.012955915,0.00039514675,-0.015341924,-0.027387235,-0.020425161,-0.007953364,-0.02798662,0.004846941,-0.03169819,-0.024597796,0.0034752742,0.0032159255,-0.016782751,0.019157233,-0.03697738,-0.0002634912,-0.035455868,0.014500481,-0.019111127,-0.0074807727,-0.0073827966,0.017497402,-0.002702991,0.016609851,0.010523799,-0.01845411,0.029323708,0.01317492,0.018131364,0.004250439,-0.0073655066,0.021474082,-0.014120103,-0.024782222,-0.020551953,-0.007976417,0.004674042,0.01634474,0.01409705,0.0073827966,-0.016874963,-0.0019508795,-0.01324408,-0.0038153094,-0.018938228,0.0077919913,-0.013612932,-0.034718163,0.0011281674,0.017117023,-0.014246896,0.022246366,0.0077285953,0.029231494,0.008771754,-0.005417509,-0.0078092813,-0.02206194,0.021024546,-0.03377298,0.004492498,-0.0007845302,-0.009106025,0.010811964,0.026257629,-0.018258158,-0.0076824888,-0.006495247,0.0012419927,-0.01835037,-0.039351862,-0.010535326,-0.012759962,0.047720183,0.0014494718,-0.002868686,-0.002802408,0.050624892,-0.021174392,0.026234575,0.021105232,-0.017658774,-0.0050976453,0.031029647,0.007296347,-0.00033409172,-0.016632905,-0.0046855686,-0.013555299,0.0049823793,0.018984335,0.035386708,-0.029369814,0.028516844,0.021393396,0.012414164,0.027295023,-0.0072098975,-0.018534796,0.03312749,0.01582604,-0.017347556,-0.010627539,0.0039738,-0.011613064,0.0065355906,0.02505886,-0.05025604,0.010074262,-0.0099647585,-0.004336889,-0.0037980196,-0.0152958175,0.028931802,0.000028366278,-0.0007902935,0.00079677725,0.014915439,-0.014926966,-0.011895467,-0.03448763,0.013128814,-0.03469511,0.00207335,0.017612668,0.008587328,-0.0058267037,0.0016598325,-0.02267285,0.004607764,-0.0057604257,-0.04310954,-0.047858503,-0.026695639,0.039951246,-0.032412842,-0.000025259495,0.02448253,0.075752914,0.023156969,-0.0134746125,0.004411812,0.021796828,-0.00015416848,-0.005815177,-0.007826571,0.010587196,0.014477428,0.038498893,0.0041409363,0.0006926775,-0.0010186646,0.007567222,0.000869539,-0.015019178,-0.014304529,0.030176677,-0.032205362,0.0585552,0.035801664,0.0062358985,-0.033934355,-0.0065586437,0.022430792,-0.026419,0.026764799,0.016183367,0.024044517,-0.0056019346,0.012356531,-0.004253321,-0.00799947,-0.035986092,0.00052806304,0.0135437725,-0.019606771,-0.015710775,0.005374284,0.015618563,-0.028516844,0.026603427,-0.0037202148,-0.023952305,0.019445399,0.011007917,0.062289827,0.014385215,-0.005688384,-0.042740688,0.0017880661,-0.040942535,-0.01586062,-0.007722832,-0.0062013185,-0.01753198,-0.0011930047,0.0025156836,0.004714385,0.0011951658,0.012967441,0.01699023,0.023110863,0.017520454,-0.0038815874,0.00078020775,0.0029940382,-0.017497402,0.012068366,0.01896128,0.011399821,0.010806201,-0.039351862,0.0038210726,0.026119309,-0.014973072,0.019088075,-0.018696168,0.032735586,0.0062128454,0.019260973,0.0017693354,-0.03783035,0.010010865,-0.010690935,-0.0431787,-0.007936074,-0.0047201486,0.038936906,0.0009300537,-0.01828121,0.038798586,0.013416979,0.0016540692,-0.041242227,0.0017563679,-0.043317016,-0.028609058,0.0022145507,-0.005823822,-0.030522475,-0.0050486573,0.025934882,-0.018142892,-0.034925643,-0.011180816,0.004898811,-0.028747376,0.023433607,-0.0006303617,0.005400219,0.002462373,-0.023087809,-0.019272499,0.0046221726,0.004659634,0.020759434,0.018085258,0.0016511875,0.014880859,-0.0342571,-0.018938228,-0.018119838,-0.03176735,0.010322084,-0.013059654,-0.010823491,-0.0038412444,-0.014719487,-0.009019576,-0.014650327,0.020240735,0.045945086,0.013520719,-0.019145707,0.03398046,-0.0013025075,-0.030176677,0.038360573,-0.024367264,-0.042187408,0.021070652,-0.005431917,0.014523534,-0.009065682,0.0009790418,-0.008961943,0.00056300306,0.017220762,0.009140605,-0.05873963,0.0035588422,0.0005226599,0.012229738,0.040827267,0.0221311,-0.007895731,-0.02002173,0.0098206755,-0.0069044423,0.0151690245,0.0417494,0.010886887,0.0010251483,0.029784773,0.00439164,-0.016944123,0.0117456205,0.0219582,-0.0037922561,-0.047950715,0.022269418,-0.042348783,0.02512802,-0.015837569,0.020551953,0.012725382,-0.02274201,-0.029139282,-0.01838495,-0.031006593,0.024205891,0.0075153527,0.015088338,0.0054693785,0.01688649,0.0064433776,-0.011555431,-0.024828328,-0.051362593,0.0012045312,0.0029349641,0.01716313,-0.026833959,-0.05897016,-0.0076133288,0.039029118,-0.0032332153,-0.0006505333,-0.002702991,0.0043974034,0.0077285953,-0.014269949,0.0025747574,-0.009993575,0.014558114,-0.010644829,0.013935677,0.023076283,-0.0239062,0.05841688,-0.017647248,0.019664405,-0.04168024,0.033242755,0.03803783,-0.00399109,-0.013716672,0.011128946,0.005763307,-0.025865722,-0.020955386,0.023318341,0.01103097,-0.004302309,-0.001730433,-0.0037000433,-0.016321687,0.028609058,0.0066854362,-0.0005957819,-0.032505054,0.0013464526,-0.017174656,0.0076190922,-0.014269949,0.025727404,-0.002106489,0.0023831276,-0.013197973,0.006529827,-0.014212316,-0.0399743,-0.0017044981,-0.011503561,0.014823226,-0.047858503,0.0048527047,0.030591635,0.015733829,-0.034234047,0.00590739,0.020217681,0.0339113,0.0037720846,0.000045228455,-0.0069102054,-0.013854991,0.0072502405,-0.008881257,0.021151338,0.009774569,0.011434401,0.045230437,-0.006034183,0.009503693,-0.0016886491,-0.01920334,0.014915439,0.010010865,-0.0076997783,0.0008054222,0.011359478,-0.0135322455,-0.0014494718,0.022419265,-0.0019825776,-0.027456395,0.00296234,0.045576233,0.017543508,-0.012736909,0.018327316,-0.0176703,0.03119102,0.0439164,0.030937433,-0.0023917726,0.0065413537,-0.0075845122,0.015180551,0.0015460072,0.00944606,-0.03540976,-0.0040256702,-0.030245837,-0.011595774,-0.0047518467,-0.0014206553,0.0164139,-0.007446193,0.013647512,-0.0038239544,0.022926437,-0.030384157,-0.0040227883,-0.017289922,0.0135322455,-0.009618959,-0.0036222385,-0.040665895,-0.015088338,0.008650724,0.025312446,0.05311464,-0.029093174,-0.0034061146,0.010869597,0.018627008,0.03319665,-0.00881786,0.004120765,0.02145103]},{"id":"interface-APIStickerWithUser","type":"interface","source":"main","text":"Interface: APIStickerWithUser\nProperties: user: APIUserPartial","meta":{"url":"/docs/typedefs/APIStickerWithUser"},"embedding":[0.003105288,-0.021647587,-0.015319831,0.0242749,-0.02273305,-0.02473129,-0.016763004,0.042629097,-0.002844715,-0.05126346,-0.013025557,-0.024768293,-0.00045176232,-0.019723358,-0.015541857,-0.033229973,-0.0003810299,0.010194719,-0.017096043,0.021598248,0.027407942,0.007074012,0.039471384,0.020179745,0.012951548,0.010583265,-0.017330404,0.00050572713,-0.018415868,-0.0018687233,-0.0348335,-0.024077544,0.05955245,0.011335688,0.010780622,0.018329524,0.024644945,0.050375354,0.004761236,-0.0077955984,-0.02629781,-0.004872249,-0.0047026454,0.02306609,-0.02814803,0.05447051,0.025113668,0.08585026,0.00705551,0.0042770947,-0.016257277,-0.034414113,-0.007715422,0.01441939,0.036116317,-0.017971814,0.0031731292,-0.018156836,-0.04482469,0.031700455,-0.018329524,-0.038632616,0.027457282,-0.025483713,-0.0027013228,-0.007955951,-0.013198244,0.049857292,0.008640532,-0.004810575,0.053434387,-0.0051220288,-0.061032627,0.049092535,0.032613233,-0.02114186,-0.015356835,0.017441418,0.022905737,0.002243393,-0.0064511043,0.028296048,-0.0485498,-0.022202654,-0.011107494,-0.051411476,-0.083629996,-0.03397006,-0.034488123,-0.02886345,0.011539212,0.020204416,-0.038311914,-0.026939219,0.0348335,0.007357713,-0.015073135,-0.026396489,-0.031231733,0.025829086,0.02883878,-0.044528656,-0.08461678,0.0056740115,0.012630843,-0.0012990094,0.028468736,0.030466974,-0.038879313,0.010836128,-0.020241419,0.029677548,-0.001002974,-0.032489885,-0.003237887,-0.03214451,0.0016852431,-0.018366529,0.013272253,-0.042357728,-0.044479314,-0.02306609,0.05451985,-0.01955067,-0.0116317235,-0.02762997,-0.039249357,-0.044627335,-0.07075246,-0.034981515,-0.0054242318,-0.045762137,0.01104582,0.003743614,0.005078857,-0.040754203,-0.032292526,0.010324234,-0.032193847,-0.0033303981,-0.0058590337,-0.028518075,-0.017638775,-0.019439656,-0.039446715,-0.023571817,-0.030368296,0.036165655,-0.01691102,0.020845825,-0.003163878,0.031157725,-0.0025409705,0.016429964,-0.018872255,0.014012341,0.0037281956,-0.025829086,-0.03009693,-0.036387682,0.011415864,-0.058615007,0.03202116,-0.03473482,-0.0332053,-0.0071541886,0.036757726,-0.031281073,-0.046329536,0.020895164,0.0119647635,-0.03142909,-0.045737468,-0.032514554,-0.043393854,-0.03453746,0.017725118,-0.045120727,-0.050918087,-0.02878944,0.029085476,0.04748901,0.0013969169,-0.07183792,-0.0105462605,0.011940094,0.010891635,0.011237009,0.032933936,-0.0122669665,0.010139212,0.021080187,-0.016269611,-0.023855519,0.008227317,-0.04336918,0.01898327,-0.05767756,-0.007326876,-0.02016741,0.023892522,0.013568289,0.012618508,0.0048753326,0.014838774,-0.016207937,-0.028123362,0.009275775,-0.025903096,0.01152071,0.0069321617,0.017749788,-0.02753129,0.000910463,-0.023880187,0.029381512,0.013346261,-0.0086467005,0.011748904,0.017293401,-0.021437896,0.04623086,0.06290752,-0.04026081,0.012593838,-0.0011432825,0.011107494,0.017700449,-0.012303971,0.026396489,-0.059256416,0.051115442,-0.035400897,-0.011138331,0.01057093,-0.019254634,0.02214098,0.01026256,-0.0012488993,-0.018477542,-0.044503987,-0.0038731296,-0.0016127761,0.037078433,0.022992082,0.025878426,0.022720715,-0.0029403097,-0.008054629,0.017527761,0.08066964,0.0468476,0.021573579,0.016269611,-0.00401498,0.0526943,0.0030944948,0.05945377,0.015406175,0.028468736,0.045170065,-0.023103094,-0.020759482,-0.0039008828,0.0122361295,-0.010829961,0.031700455,0.02748195,0.020993842,0.022239657,-0.035326887,0.013247583,0.039890766,0.015356835,-0.02050045,0.00040396495,0.04285112,0.057825577,-0.06345025,0.033254642,-0.052200906,0.009682824,0.0052268747,0.06675598,-0.0066052894,0.07765995,0.005442734,-0.036905743,-0.028000014,0.031083714,0.028542744,0.046502225,0.06611457,0.0011548464,0.02437358,0.00992952,0.0133215925,-0.038780633,0.03014627,-0.003413658,-0.001479406,-0.056740116,0.02762997,-0.04179033,0.03318063,-0.03917535,0.056098703,-0.0052207075,0.013851989,0.0014901989,-0.021129526,-0.024250232,-0.008288991,0.0019041859,-0.05195421,-0.018156836,0.019155957,-0.014912782,-0.06147668,0.036017638,-0.015159478,0.0035616758,-0.010651106,-0.069716334,0.007635246,-0.05826963,0.02627314,-0.034907505,0.009923353,0.0049616764,0.00705551,-0.039446715,-0.028740102,-0.02219032,0.0410009,0.013333927,0.029208824,0.027185915,0.012513663,0.029825564,-0.0004251654,-0.06473307,-0.03658504,-0.00852952,-0.005803527,-0.020562124,-0.015714545,0.00023898689,-0.035943627,-0.0073700473,-0.0315031,0.048377115,-0.011366525,-0.029726885,-0.002141631,-0.015825558,0.045046717,-0.063302234,-0.030886358,0.047094297,0.017873136,-0.009281943,-0.016713664,-0.0032748913,0.001251983,-0.010324234,-0.0065189456,-0.017873136,0.00050842535,-0.06848285,-0.0026735696,-0.0043973587,0.0049246717,0.019760361,-0.0038854643,0.022214988,-0.023608822,-0.014801769,0.0031700456,0.002917182,0.058121614,-0.0059916326,0.035302218,-0.01570221,0.010540093,-0.028419396,-0.0080114575,0.04166698,-0.02940618,0.025878426,0.053582404,-0.04748901,0.0021030847,-0.013605293,0.035548914,-0.021277543,0.0058682845,0.05402646,0.008708375,-0.00496476,-0.008375335,-0.0071233516,0.0138643235,0.0015973576,-0.020007057,0.046378877,-0.021573579,0.00020121154,0.029430851,0.0039070505,-0.0056832624,-0.072923385,0.024644945,-0.0034938343,0.032835256,-0.0030790763,-0.013617627,-0.0332053,0.049117204,0.04667491,0.016306616,-0.01213745,0.018169172,-0.054125134,0.02432424,0.0073700473,0.035573583,0.0018286352,-0.031799134,-0.04233306,0.015221152,0.062562145,0.013124235,-0.048327778,-0.014123355,-0.012377979,0.052792978,0.0043973587,-0.03332865,0.029677548,-0.006099562,-0.04230839,0.012088112,-0.020401772,-0.011101327,-0.044405308,0.038780633,-0.048327778,0.0044528656,-0.007758594,-0.057973597,-0.013210579,-0.010398243,0.057924256,0.0006934475,-0.0032039662,-0.0046810596,0.06231545,-0.0065867873,0.01726873,0.03643702,0.017836131,-0.02149957,0.058664344,0.0028246709,-0.015714545,0.0069876686,0.041642312,0.010533926,0.012963883,0.0076784175,-0.011440534,0.013457275,0.0028570497,-0.025533052,-0.0602432,-0.0028077106,-0.04087755,-0.034068737,-0.027185915,0.019266969,0.04472601,-0.0004012667,0.0069136596,0.022054635,0.09418859,0.058565665,-0.01945199,-0.04995597,0.00066261046,0.01883525,-0.016207937,0.019994723,-0.013247583,0.013124235,-0.025557721,0.030417636,-0.06261148,-0.0055383286,-0.008159475,0.08234718,-0.015147144,-0.007931281,0.014160359,0.039224688,0.03843526,-0.00017808378,-0.016220272,-0.016109258,-0.052990332,-0.03140442,-0.00883789,-0.04105024,-0.038089886,-0.0384846,0.0065621175,-0.012624675,0.058565665,-0.0069568316,0.044528656,-0.014666086,0.011582384,0.035080194,-0.0009297361,0.005763439,-0.002359032,-0.034315433,-0.06571986,-0.013580623,-0.026100453,-0.011594719,-0.0256564,0.014814104,0.005377976,-0.009843176,0.007074012,-0.02337446,-0.0001940805,0.020081067,-0.01076212,-0.025237016,-0.016503973,0.023645826,0.04299914,-0.028937459,0.008689872,-0.003527755,-0.018045824,0.038657285,0.008073132,0.0052083726,-0.013827319,0.046921607,-0.029134816,0.028715432,0.010379741,0.0026334815,-0.035548914,-0.0009975776,-0.0034414113,-0.04803174,-0.037522484,0.014308377,-0.025311025,-0.019513665,0.016763004,0.015097804,-0.014678421,0.01893393,0.03599297,-0.024077544,0.036757726,-0.0035740105,0.062414125,0.014123355,-0.005467403,-0.0050850245,0.029258164,0.011193838,0.0038638785,-0.0040057288,-0.023880187,-0.022535693,0.046995617,0.010866965,-0.017441418,-0.020278424,-0.017860802,-0.012328641,0.030294288,0.013099565,-0.0410009,-0.016577981,0.013925998,-0.0020845826,0.016442299,0.012143618,-0.005112778,-0.008301325,0.0067101354,0.006229078,-0.013025557,-0.039397374,0.0066731307,0.03920002,0.027605299,0.010305732,0.021018513,-0.01795948,0.035030853,-0.008208814,0.02047578,-0.033032615,-0.0048136585,0.0031885477,0.02121587,-0.009948023,-0.03224319,0.018847587,-0.013210579,-0.015356835,-0.012926878,-0.003641852,0.021622917,-0.019970054,0.02888812,-0.003796037,-0.0047951564,-0.0034599134,-0.0014678421,-0.03347667,-0.007296039,-0.00009651023,-0.0041753324,0.037547152,-0.02755596,-0.0099418545,0.030491645,-0.030244948,-0.005044936,0.0087638805,-0.030837018,0.03453746,-0.011995601,0.026544506,-0.0059546283,-0.013173575,0.011422032,-0.04751368,0.023226442,-0.015973575,-0.034192085,0.013642297,-0.010330401,-0.0011748904,0.022066971,0.0016066086,0.028345387,-0.007228197,-0.0056955973,0.009343617,0.05762822,-0.04480002,-0.002348239,-0.020488115,0.018872255,-0.010022031,0.015159478,-0.011452869,-0.0005808923,-0.0069136596,0.02686521,-0.021326883,0.014259038,0.008862559,0.015122474,0.0056925137,-0.036066975,-0.0010153089,-0.019945383,0.014616747,0.008424673,-0.029578868,-0.01985904,0.014222033,-0.014407055,-0.0052083726,-0.018514546,-0.022387676,-0.024879307,0.003071367,0.025261685,0.027950674,-0.013481945,0.021561245,0.010385908,0.021339217,-0.014333046,-0.005553747,0.009392956,-0.022535693,-0.015171813,-0.035400897,-0.020562124,-0.011755072,0.020352433,0.010614102,0.012877539,0.013370931,0.03007226,-0.044676673,-0.0064696064,-0.021955958,0.026371818,-0.008720709,0.01919296,-0.032983277,-0.0008742295,0.018711902,0.030664332,0.007826435,0.01249516,-0.032884598,0.045589447,0.012149786,-0.0055568307,0.013716306,0.026100453,0.02240001,-0.031873144,-0.007986788,-0.0454661,-0.006333924,0.013309257,-0.027136577,0.017527761,0.014493399,0.013938333,-0.014530404,0.001468613,-0.02339913,-0.014456394,-0.008239651,0.035746273,-0.010472252,0.009553309,-0.019032609,0.025311025,-0.013000887,-0.04608284,0.0010577098,0.008128638,0.014320712,-0.010046701,0.023917193,0.004921588,0.011477538,0.0015295162,-0.08091634,0.0067101354,0.01221146,0.0404335,0.008905731,-0.010953309,-0.019279305,0.012340975,0.024644945,-0.010342736,0.032169178,-0.008967405,-0.026371818,-0.027753318,0.010638772,0.025051994,0.016503973,-0.041938346,-0.016664324,-0.031108385,-0.0040519843,0.0047519845,0.013296923,0.020253753,0.010083705,-0.039372705,-0.008689872,-0.041321605,0.0019781948,-0.0033242307,-0.016849346,-0.008424673,-0.05373042,0.012624675,-0.028542744,-0.029652877,-0.0041722488,0.030639661,0.0035123364,-0.05580267,0.00719736,0.057480205,-0.012575337,0.0056000026,0.02824671,0.022622038,0.020229084,0.005843615,0.0067718094,0.011927759,-0.012501327,-0.020031728,-0.022794724,0.0048629977,-0.0014817187,0.01575155,-0.037473146,0.060489897,-0.007622911,-0.028049352,-0.006142734,0.00850485,0.043418523,0.0006475774,-0.026125122,-0.024928646,0.024620276,0.019180626,-0.06098329,0.00076707086,0.012593838,-0.001975111,-0.0033612351,0.03796654,0.04487403,0.011483706,0.015295161,-0.009639652,-0.020821156,0.007992955,-0.0026365651,0.003145376,0.0070061707,-0.023263447,0.038879313,-0.0013568288,0.022153314,-0.04800707,0.01964935,0.0082519865,-0.056197383,0.04161764,0.013555953,0.011804411,-0.018169172,-0.05072073,0.023485474,-0.0549639,-0.011792076,-0.009812339,0.030639661,0.02619913,0.0013421812,0.022609701,-0.004227755,0.02365816,0.02881411,-0.02088283,-0.0018949348,0.0002634638,0.022313667,0.009170929,0.020722477,0.0113603575,-0.010367406,0.022634372,-0.017293401,-0.041543633,-0.008134806,0.017811462,0.032613233,0.042456407,0.011138331,-0.044602662,0.022597367,-0.03335332,0.00053849147,0.05891104,0.01731807,0.05126346,0.02026609,-0.005698681,-0.014530404,-0.019526001,0.005763439,0.0070370077,0.018650228,0.0028678428,-0.0014724677,0.03017094,-0.013309257,-0.030417636,0.019414987,-0.048253767,-0.007542735,0.04625553,-0.005387227,0.032218516,0.03332865,-0.019303974,-0.028962128,-0.04292513,0.011668728,-0.019057278,0.048253767,0.008905731,-0.014160359,0.015270492,0.041444954,-0.017083708,0.0048136585,0.015184148,-0.008689872,0.02401587,-0.0008356832,0.039471384,0.0025317192,0.019772697,0.01767578,0.010342736,0.03076301,0.051707514,-0.029899573,0.027926004,0.0054334826,0.031996492,-0.015825558,-0.05116478,-0.022301331,0.022387676,-0.0018949348,0.0064079324,-0.0038977992,-0.011008816,0.024928646,-0.02235067,0.037596494,0.025187677,-0.038213234,-0.0077832635,-0.005014099,-0.0069876686,0.0029295168,-0.017947145,0.0048352447,0.006278417,-0.013210579,-0.021918952,0.051608834,-0.0007508814,0.027358603,0.019488996,-0.02242468,-0.02681587,-0.01985904,-0.013099565,0.020340098,-0.007881942,-0.0070925145,-0.02306609,0.017836131,0.03078768,-0.0015595822,-0.029677548,0.01893393,0.008578858,0.020068731,0.00800529,-0.0014053971,0.013518949,-0.01631895,0.026840542,-0.02149957,0.025261685,0.00063986814,0.0045977994,-0.026421158,-0.023189439,-0.017725118,0.027728647,0.02624847,0.033081952,-0.02116653,0.03140442,0.0141356895,-0.0019041859,0.0036264334,-0.01767578,-0.02473129,0.020660803,0.040680196,0.013851989,0.009806172,-0.019945383,0.024854638,-0.016306616,0.005254628,-0.026125122,-0.018354194,-0.0256564,-0.05239826,0.0088563915,-0.010607935,0.023892522,0.004872249,-0.008726876,-0.016516307,-0.013740975,-0.0025903096,0.011230842,0.008017625,-0.021351552,0.0053409715,-0.021228204,-0.011724235,-0.030861689,-0.023497809,-0.00964582,0.0109964805,0.0056555094,0.046600904,0.004418945,-0.015221152,0.022844063,0.012248464,0.0149497865,0.013087231,0.03890398,-0.010472252,0.002801543,0.0039132177,-0.03409341,-0.038731296,-0.014049346,-0.0028477986,0.027432611,0.05126346,-0.017281065,0.009725995,-0.001417732,0.012106613,0.02473129,-0.008387669,0.00055699365,-0.013839654,-0.0256564,-0.004792073,-0.021154195,-0.01280353,0.020463446,0.029258164,0.02634715,0.0006371699,-0.0010307274,-0.010114542,-0.016590316,0.04282645,-0.00022395384,0.0051220288,0.018711902,0.009010577,0.01767578,0.0056647602,-0.02886345,0.02309076,-0.025927765,0.021709261,0.0049000024,0.0037528651,-0.0256564,-0.0057449364,-0.02116653,-0.012174455,0.023238778,-0.0175771,-0.004196918,0.00000493573,-0.021154195,-0.02473129,0.01667666,-0.016047584,0.0020151993,-0.025952434,-0.0017268731,-0.019723358,0.008850224,0.01736741,0.0040519843,-0.03466081,0.013333927,0.0070370077,0.011755072,0.06211809,0.04344319,0.015763884,0.05777624,0.036807064,0.018637894,-0.00914626,0.015813224,-0.033748034,0.026939219,0.0128282,0.0033273143,0.00928811,-0.009269608,-0.022979746,0.011866085,-0.010392075,-0.026075782,-0.006303087,-0.006167404,-0.017453752,-0.006475774,-0.0031253318,-0.00043595835,-0.0061704875,0.014986791,-0.0059515447,0.013037891,-0.0045792973,-0.006537448,-0.028000014,-0.043196496,0.009103088,-0.03350134,0.011921591,-0.0002359032,-0.03843526,0.02309076,-0.0031947151,-0.0056431745,-0.016874017,-0.005791192,0.016837012,-0.03007226,-0.0052916324,-0.004415861,-0.00024014329,0.06340091,-0.006463439,0.024891641,-0.007326876,0.012532164,-0.03643702,0.015504853,0.03224319,0.016084589,0.0058806194,0.024595607,0.0046070507,-0.023929527,-0.0048506632,-0.004233923,0.008079299,0.0028801775,0.039570063,0.029751556,-0.01696036,0.017996484,0.015110139,0.01598591,0.006340091,0.0016420713,-0.010589432,0.0067903115,0.011730402,-0.006340091,0.014061681,0.004958593,-0.014641416,-0.0021709262,0.008930401,-0.05525994,-0.0040828213,0.001964318,0.00013520106,0.0026288559,-0.013469609,0.024607942,-0.014061681,0.028024683,0.030442305,-0.029233495,-0.013580623,-0.0056955973,-0.020623798,0.0012820491,0.0026874463,-0.009035246,0.033575345,0.045885485,0.0007643726,0.010564763,-0.018391198,0.004258592,0.022103975,-0.01472776,-0.03643702,-0.007394717,0.036140986,-0.019748027,-0.0070925145,0.044577993,0.04615685,-0.015196483,-0.00084262155,-0.02442292,0.021548908,0.0011656393,0.016244942,-0.019069612,0.0036881075,0.016898686,0.023781508,0.009516304,-0.022683712,0.016158598,0.010533926,0.031774465,-0.013296923,0.0072775367,-0.0006907492,-0.0013575997,0.022868734,0.06789078,0.04499738,-0.013876659,-0.010176216,0.032514554,-0.005276214,0.02178327,0.006179739,0.006062558,-0.008881061,0.032218516,0.014259038,0.0062074917,0.020130405,-0.018847587,0.008757713,0.020093402,-0.0039995615,-0.034315433,0.026421158,-0.039274026,0.053681083,-0.008332162,-0.027753318,0.015862562,0.032317195,0.054174475,0.009300445,0.0038885481,-0.020993842,0.00802996,0.022572698,-0.0044528656,-0.0030852437,0.008140973,0.0045577115,-0.027679307,0.012624675,0.01793481,0.013333927,0.029850233,0.009053749,0.027087238,0.0043233503,-0.0301216,-0.005948461,0.007012338,-0.02026609,-0.010299564,0.0061088135,-0.024657281,0.0033365653,-0.016923357,-0.009966524,-0.01893393,-0.034142748,0.023510143,0.010453749,-0.042530417,0.016133929,0.016763004,-0.0058497824,-0.049413238,-0.008060797,0.018674899,0.0009690533,-0.01636829,-0.002937226,0.017823797,-0.009405291,-0.027087238,0.018391198,-0.00881322,0.0384846,-0.0009752207,-0.008770049,-0.016590316,-0.0077832635,0.020944504,-0.0066792984,-0.019896045,-0.017552432,-0.011200005,-0.018711902,-0.03910134,-0.030392965,0.000087114575,0.016133929,-0.017466087,-0.017860802,0.009812339,0.041124247,-0.0053656413,-0.0044436143,-0.00959648,-0.034241427,0.007333043,0.003620266,0.009392956,0.0060348045,-0.014888112,-0.014826438,-0.0014192738,-0.005852866,-0.0067656417,-0.015171813,0.021376222,0.009861679,-0.0029017634,0.0067101354,-0.005516743,-0.014530404,0.04304848,0.014690756,-0.014000007,0.05580267,0.0010068286,-0.009392956,0.005760355,-0.023140099,-0.0032563892,0.013543619,-0.03404407,-0.0013121151,-0.010885468,0.009232603,0.024250232,0.010170049,0.023559483,0.01964935,-0.02458327,0.011206172,-0.0037466977,-0.0066422937,0.071689904,0.0116008865,-0.028000014,-0.041370943,0.012007935,0.0007219717,-0.0016174016,0.01705904,0.02755596,0.01691102,0.014123355,-0.00012566085,-0.01040441,-0.032095168,-0.0023204857,0.0135312835,-0.05249694,-0.019266969,0.0018132167,0.024336575,0.011033486,0.0018471375,0.00705551,-0.009047581,-0.030442305,-0.0044127773,0.019402653,0.009608815,0.0068211486,0.0031268736,0.01798415,0.03836125,0.025187677,-0.01639296,-0.010022031,-0.033451997,-0.0015318289,-0.0075304,0.012501327,-0.022930408,-0.07104849,-0.012106613,0.035721604,-0.009707494,0.014542738,0.008523352,0.0033550677,-0.0023821597,-0.006068725,0.011372693,-0.015517188,0.03340266,0.013185909,0.040211473,-0.0026828207,-0.01919296,0.04312249,0.004841412,0.024435254,-0.038805306,-0.0066669635,0.05072073,-0.007326876,-0.005337888,-0.002618063,0.0133215925,-0.022979746,-0.022511024,0.024805298,0.007992955,-0.015480183,-0.0070493426,-0.012088112,-0.011983265,0.0068396507,-0.0035863454,-0.010903969,-0.053335708,-0.0040889885,-0.005976214,0.03850927,-0.046625573,0.02083349,-0.005883703,0.015541857,0.0237075,-0.015603531,0.032909267,-0.03451279,0.013975337,0.010355071,0.00926344,-0.031897813,-0.0025317192,0.030837018,0.011693398,0.013568289,0.022979746,0.040285483,0.0077215894,0.030417636,-0.0058405316,0.007289871,0.014320712,0.006093395,-0.0076599154,0.030318957,0.029899573,0.019488996,0.036066975,0.031749796,0.031577107,0.016516307,-0.011551547,0.002556389,-0.007314541,-0.014333046,0.0016837012,-0.013185909,-0.008091634,-0.027827326,0.008307493,0.0069321617,-0.018785913,-0.004455949,0.0513128,-0.0069444967,-0.021437896,0.010139212,-0.027037898,0.033131294,0.05777624,0.0071850256,-0.0033766537,0.012815865,0.005390311,0.023522478,-0.021092521,-0.0035339224,-0.017515427,-0.032267857,-0.028370058,0.02627314,0.006241413,-0.009466965,0.024126884,-0.015381505,-0.022881068,0.012439653,0.0026442744,0.010126877,0.008073132,-0.012427319,-0.033155963,-0.036338344,0.010669609,0.024225563,-0.021635253,0.0001398266,0.033131294,0.027259925,0.0026612347,-0.010392075,-0.008221149,-0.011496041,0.0034537462,-0.02888812,-0.010163882,0.008406172]},{"id":"interface-APIUser","type":"interface","source":"main","text":"Interface: APIUser","meta":{"url":"/docs/typedefs/APIUser"},"embedding":[-0.03773489,-0.010362077,-0.026103148,0.02875169,0.027304549,-0.04286814,-0.025406884,0.049721584,0.067933716,-0.026690196,-0.030990664,-0.0183077,0.013133489,0.04387841,0.013597665,-0.03830828,-0.01811657,0.018922053,-0.02214399,0.023673045,0.024628703,0.03822637,0.04363267,0.024014352,0.004631534,0.017543172,-0.030226136,-0.013440664,-0.03175519,-0.023017734,0.0014113039,-0.028833603,0.047455307,0.037707582,0.062308982,-0.0159049,0.023591131,0.04832905,0.003935268,-0.013065226,-0.043141186,-0.0010145346,0.026335238,0.0008362018,-0.067933716,0.04338693,0.023836872,0.04068378,0.015986813,0.0058773044,-0.027277244,0.0010768232,-0.0064370474,0.009761376,0.0118501745,-0.0078295795,0.020232672,-0.01662847,-0.047264174,0.029270478,-0.0067851804,-0.017242823,0.018826487,-0.027987164,-0.02869708,-0.007911493,0.007884189,0.03830828,-0.008205017,-0.012553266,0.04224014,-0.023181563,-0.05119603,0.007802275,0.03981003,-0.009365461,-0.00063184433,0.03511365,0.008205017,-0.024710618,-0.0055598887,0.028806299,-0.03991925,-0.05936009,0.0033004375,-0.008027538,-0.06635006,0.00015145492,-0.022457993,-0.031591363,-0.018212134,0.03912742,-0.055073276,0.0033584596,0.016901515,-0.027591247,-0.006669136,-0.014635239,-0.00124577,-0.0050342763,0.0660224,-0.025038272,-0.009986639,-0.008348366,0.025529753,-0.026881328,0.015099416,0.020027887,-0.06531248,0.022362426,-0.043496147,0.012341657,0.00735175,-0.04890245,-0.022376077,0.0036929403,0.053134654,-0.009433722,0.028915517,-0.04729148,-0.008232322,-0.0060479576,0.047619134,-0.040083077,0.020137105,-0.030417267,-0.018416919,0.0043960325,-0.08273278,-0.01740665,0.036342356,-0.036833838,0.013427012,0.025365926,0.00026963244,-0.013536231,-0.018143874,0.03175519,-0.019945974,-0.024710618,-0.012737572,-0.006860268,0.009658984,-0.02869708,-0.033093113,-0.03366651,-0.03434912,0.03762567,0.023427304,0.020096147,-0.0030990664,0.01963197,-0.04830175,-0.017911784,-0.023359042,-0.014471411,0.006672549,0.009536114,-0.00083108223,-0.018089265,0.03727071,-0.049967326,-0.0093722865,-0.0069899647,-0.036151223,0.0107306875,0.017980047,-0.020041538,-0.060889143,0.027918901,-0.02142042,-0.022826603,-0.058377128,-0.0270042,-0.046363126,-0.062254373,-0.014212018,-0.0075224033,-0.037898716,-0.0087852385,0.048001397,0.024942705,0.003638331,-0.083060436,0.006679375,0.010300641,0.001967634,0.0040990952,-0.0007257037,-0.03391225,-0.024819836,0.0408203,-0.020997198,0.006604288,0.039564293,-0.0021946032,0.02041015,-0.05485484,0.015468027,0.01482637,0.030471876,-0.00080889725,0.045762423,-0.021161025,-0.00447112,0.005809043,0.013037922,0.013133489,-0.047045738,0.006559918,0.008327887,0.029516218,-0.026744805,-0.04778296,-0.020969894,-0.008109451,0.021939205,0.0022065488,-0.023536522,-0.010949125,-0.024833487,0.039209332,0.090705715,-0.028860908,0.038390197,0.0139799295,0.04032882,-0.017611435,-0.03467678,-0.014280279,-0.035605133,0.060070008,-0.020328237,-0.041120652,0.01524959,-0.0023652567,-0.00011711092,0.00032850786,-0.011659043,-0.01656021,-0.07536056,0.008662368,-0.021229288,0.049967326,-0.0067920065,-0.0059455656,0.013536231,0.024396615,-0.010102684,0.048602097,0.040492646,0.012252917,0.045352858,0.0107306875,0.030826837,0.021283897,0.025652625,0.051032204,0.024082612,0.033229638,0.038554024,-0.047864877,0.0036144396,0.011119777,-0.009754551,-0.023850523,0.00086307974,0.038990896,-0.019072227,0.043605365,-0.012921878,0.027796032,0.015331505,0.020737804,-0.019372577,-0.0064404607,0.08289661,0.0564112,-0.055373628,-0.020628586,-0.047919486,-0.016177945,0.026813067,0.030799532,0.049912717,0.027140722,-0.0058431737,-0.007447316,-0.0044028587,0.01961832,-0.0029898481,0.0624182,0.04529825,-0.027140722,0.023208868,0.01765239,0.049257405,-0.012287047,0.049967326,0.03090875,0.053708047,-0.019249707,0.017980047,-0.020546673,0.0050172107,-0.026976895,0.07355846,-0.018375961,0.013208576,-0.003302144,-0.010403033,-0.03426721,-0.019959625,0.00086350634,-0.042349357,-0.027714118,0.007809101,-0.013665927,-0.05826791,0.04532555,-0.019741189,0.012949183,-0.017215518,-0.041994397,0.033448074,-0.036697313,0.01104469,-0.04584434,0.015386114,-0.0049523627,0.038144454,-0.031372927,-0.0384175,-0.059742354,0.07055496,0.0025342035,0.0055530625,0.025570711,0.018689964,0.028014468,0.022171294,-0.059851572,-0.046363126,-0.0101982495,0.019222403,-0.016573861,-0.017474912,0.029843872,-0.02869708,0.046144687,-0.0021519398,0.02376861,0.004068378,0.02244434,-0.0282056,-0.0033874707,0.042649705,-0.0468273,-0.04573512,0.041202564,-0.028478645,-0.017707,-0.017256476,0.0026246498,0.013365577,-0.00894224,-0.00855315,0.011037864,-0.02112007,-0.076507345,-0.011775087,-0.006665723,0.0061708284,0.031400234,-0.015085763,0.03576896,-0.018048307,-0.02724994,0.025161142,0.01735204,0.04297736,0.03271085,0.012007176,-0.055974327,0.008327887,-0.042403966,-0.029188564,0.014758109,-0.041038737,0.022703733,0.041857876,-0.011256301,-0.014894632,-0.042622402,0.052288212,-0.040410735,0.04136639,0.029133955,0.008716977,-0.044970594,0.012607875,0.0022713973,0.03727071,0.0071810964,-0.03565974,-0.012403091,0.0035086346,0.008102625,0.003522287,0.006624766,0.0014053311,-0.045543987,0.03331155,0.0056964117,0.027072461,-0.039455075,-0.023700349,-0.049776193,0.038908985,0.040410735,-0.029598132,-0.0155226365,-0.01071021,-0.021161025,0.008095799,-0.010990081,0.028833603,0.0043926192,-0.04286814,-0.02497001,0.008382496,0.025598016,-0.024942705,-0.020751458,-0.03732532,-0.0011706826,0.072848536,0.010996907,-0.0051093637,0.06924434,-0.009276721,-0.010614644,0.016573861,-0.014198366,0.006553092,-0.033420768,0.0016186478,-0.0018276983,-0.003785093,-0.016396381,-0.041530218,-0.020014234,0.0025171381,0.06351038,-0.025406884,-0.023304433,0.007153792,0.050813768,-0.0044199238,0.03456756,0.027154375,0.020928938,-0.027959859,0.08207747,0.022376077,-0.0048158397,0.011358692,0.039455075,-0.027017852,-0.0016706971,-0.011891131,-0.01656021,-0.012232438,-0.005727129,-0.03626044,-0.024983663,0.0016323001,-0.03871785,-0.047591828,-0.00008644663,-0.0017509043,0.022703733,-0.01914049,0.0033721118,0.05029498,0.08906744,0.04524364,-0.0027031503,-0.07006347,0.03156406,-0.002858445,-0.005969457,0.057940252,-0.01716091,0.013365577,-0.012007176,-0.019945974,-0.05646581,-0.0035154608,-0.030335354,0.06323734,-0.017597781,0.022799298,0.024792532,0.008990023,-0.011256301,-0.00036263856,-0.018348657,-0.047864877,-0.0324105,-0.026198715,-0.024178179,-0.017870827,-0.007611143,-0.038253672,0.020983547,-0.007338098,0.05239743,-0.00858728,0.030226136,0.0104917735,0.0139253205,0.0076316213,-0.02749568,-0.024355657,0.016396381,-0.02256721,-0.03792602,-0.0074746204,-0.020669544,0.011549824,0.021980163,0.009249416,0.0106214695,-0.010089031,0.0038499415,-0.0125123095,-0.017297432,0.0005345719,-0.025557058,-0.01878553,-0.018635355,0.0029079346,0.010259684,-0.0043823803,0.02634889,-0.017051691,-0.029598132,0.025775494,-0.004372141,-0.011017386,-0.00756336,0.026294282,-0.016136989,0.032000933,0.0207105,0.007160618,-0.022881212,-0.016997082,-0.022608167,-0.041912485,-0.015686464,0.03716149,-0.02916126,-0.038035236,0.007297141,0.014020886,-0.039536987,0.000046769706,0.021311201,-0.0070240954,0.040984128,-0.035086345,0.07470525,0.00022632911,-0.018881096,0.0069626602,0.018280396,0.024109917,0.036342356,-0.04218553,0.0054028877,-0.028123686,0.050731853,-0.022457993,-0.03170058,-0.0043823803,-0.003587135,-0.0032458282,0.051114116,0.01122217,-0.013993582,0.011829696,-0.017078996,-0.027372811,-0.014949241,0.017707,0.025106532,-0.026485413,0.011631738,-0.014430454,0.002976196,-0.01656021,-0.0048943404,0.024778878,0.016096031,0.0078295795,-0.013003792,-0.034403734,0.0061093927,0.017038038,0.011590782,-0.0018857204,-0.03265624,-0.02539323,0.016614819,-0.020519368,-0.015194981,-0.00044625872,-0.011686347,-0.025243055,-0.024109917,-0.002092211,0.029407,-0.005624737,0.025857408,-0.038581327,-0.021829987,-0.0032646002,-0.0104371635,-0.013959451,0.020219019,0.027577594,-0.0144031495,0.013720536,-0.02664924,-0.011351867,0.020355541,-0.034076076,-0.01585029,0.0062732203,0.01224609,0.016041422,0.020300932,0.01728378,0.0086009335,-0.032028235,-0.021556942,-0.027509334,0.014212018,-0.050513417,-0.0028089555,0.010798949,0.0007611143,0.03757106,-0.0058841305,-0.008996849,0.040001165,0.0010196542,0.0051912772,-0.005525758,0.048356358,-0.010307468,-0.0015930498,-0.010041248,0.0093722865,-0.010061726,0.023932438,-0.036697313,0.024205483,-0.011918436,0.04513442,-0.012553266,0.00078713894,0.035086345,0.017065343,0.012048133,-0.013508926,-0.008908109,-0.007269836,0.011672695,-0.011891131,-0.04073839,0.005518932,0.01717456,-0.021352157,-0.0064916564,-0.0052868435,-0.0057612597,-0.019126836,-0.004477946,0.027877945,0.02214399,-0.033994164,0.0031946322,-0.006153763,0.0027970097,-0.020765109,-0.012532788,-0.013270011,-0.018021002,-0.005454084,0.016573861,-0.014362193,-0.03981003,0.013379229,0.0068943985,-0.008566802,0.024628703,-0.0014326356,-0.036424268,0.021475028,-0.021925554,0.02677211,0.027522985,0.027714118,-0.013467969,-0.0015469734,0.016027771,0.039509684,0.0006792007,0.0069217035,-0.0219119,0.050076544,0.019522753,-0.011508867,0.025898365,0.033093113,0.010368902,-0.011420128,-0.028615167,-0.024833487,0.0006446433,0.02262182,-0.019454492,0.017092647,0.019031271,-0.0062868726,-0.035550524,0.0017338389,-0.012880921,-0.014689848,-0.012321178,0.0053482787,-0.032465108,0.024137221,-0.010150466,0.041120652,-0.015399766,-0.03787141,-0.004269749,0.010416686,-0.017242823,0.0046042297,0.0044130976,-0.041038737,0.0070855306,0.005174212,-0.045352858,0.018539788,-0.0027133897,0.051605597,0.010150466,-0.004617882,0.0058875433,0.0149901975,0.01656021,-0.008205017,0.05029498,-0.011085647,0.004331184,-0.008928588,-0.001191161,0.00924259,0.018498832,-0.042950056,-0.05646581,-0.03462217,-0.006720332,-0.011065168,-0.0058773044,0.017229171,-0.019522753,-0.057339553,-0.011017386,-0.030089613,-0.0039967033,0.040356126,-0.014389497,-0.0040717907,-0.026621936,-0.0021672987,0.010007117,-0.0066759624,-0.0003063229,0.024301048,-0.005307322,-0.05646581,0.01032112,-0.019263359,0.004918232,0.0056349766,-0.010648774,0.018102916,0.023918785,-0.011092473,0.012259742,0.0014036245,-0.027645856,-0.021939205,-0.050813768,-0.0016647242,-0.011051516,-0.0009232351,-0.0035905482,0.035550524,0.02166616,-0.020792414,0.015194981,-0.0022645711,0.055291712,0.011194865,-0.022457993,-0.027318202,0.042540487,0.036943056,-0.05690268,-0.026990548,-0.0035939612,-0.0062425025,-0.0023840284,0.034458343,0.03224667,0.014116452,-0.0015136959,-0.027563943,-0.04748261,-0.0024983662,0.0067988327,-0.007413185,0.025584362,-0.052834302,0.044014934,-0.0063653733,0.0130993575,-0.04224014,0.020396499,-0.015645506,-0.042403966,0.022307817,0.0139253205,-0.011693173,0.005969457,-0.022403382,0.025816452,-0.042485878,-0.026307933,0.0037646147,-0.010553208,-0.01452602,-0.017693348,0.02412357,0.006245916,0.0036656358,0.0021672987,-0.022294164,0.0084917145,-0.005921674,0.020778762,0.0016698438,0.037489146,0.07437759,-0.0046554254,-0.006129871,0.0045598596,0.010239206,-0.02965274,0.013420186,0.033966858,0.042513184,-0.005262952,-0.016997082,0.0059387395,-0.014498715,-0.004669078,0.00141813,-0.016232554,0.03912742,0.018580746,0.017133605,0.0034471992,0.011167561,0.004768057,-0.0006395237,0.035905484,0.002421572,0.013543056,0.041421,0.0033396876,-0.009952508,0.010771644,-0.05690268,0.0066315923,0.015645506,0.0144577585,0.021406766,0.06809755,-0.03677923,-0.004068378,-0.022758342,0.0064199823,-0.0018157525,0.032000933,0.005863652,0.0002286756,-0.012546441,0.020533022,-0.027277244,0.020451108,-0.018102916,-0.022430688,0.014212018,-0.014293931,0.041120652,-0.016887864,-0.0006454966,-0.005556476,-0.029079344,0.0081981905,-0.0011578836,-0.0064848303,0.002250919,0.006716919,0.019454492,-0.03391225,-0.007836405,-0.006716919,0.032519717,0.030635705,0.0038158107,-0.019754842,-0.024041656,0.010266511,-0.033884946,0.029816568,0.007303967,-0.016997082,-0.00447112,-0.03055379,-0.006276633,0.017242823,-0.021051807,0.004621295,-0.0006996791,-0.028096382,-0.0069797253,0.050131153,-0.009802333,0.0201098,0.03320233,-0.004416511,-0.0558105,-0.019918669,-0.023154259,0.009481505,-0.0048602098,-0.009829638,-0.0034471992,0.035495915,0.001478712,-0.039482377,-0.015167677,0.030690314,0.04753722,0.014334888,0.010573687,-0.016942473,0.024956359,-0.018498832,0.00088227825,0.021283897,0.03923664,-0.010792123,0.01860805,-0.02765951,-0.007877363,-0.02436931,0.045107115,0.044042237,0.023126952,-0.019823102,-0.017939089,-0.013775145,0.011338214,-0.008280105,-0.0039967033,-0.016177945,0.035550524,0.03978273,-0.009734072,0.0037646147,-0.007570186,0.0036553966,0.0044984245,-0.0046076425,0.01806196,0.009740898,-0.033584595,0.0028533253,0.006949008,0.0027441073,-0.013058401,0.019017618,-0.026731154,-0.029625436,-0.0017543173,-0.016792297,0.012676137,0.007454142,-0.0052015167,0.005082059,-0.031591363,0.0069899647,-0.039209332,-0.0011101005,0.0004573512,0.016068727,0.010655601,0.036833838,0.0009104361,0.0026297695,0.026635587,0.010348424,0.034239903,0.0033260353,0.02065589,-0.021051807,0.0021280483,0.034403734,-0.01104469,-0.024219135,0.012041306,0.012116394,0.024000699,0.010007117,-0.0063653733,0.016901515,0.01866266,-0.009822812,0.0183077,0.008020711,0.021652507,-0.019905016,-0.008949066,0.005573541,-0.010976429,-0.012908226,0.01836231,0.002180951,0.011372345,-0.0033175028,-0.014212018,0.009147024,-0.036642704,0.027304549,0.011788739,0.0076657524,0.009775029,0.008484889,0.008628238,0.014143757,-0.019468144,0.022785647,-0.029379696,0.035140954,0.0060377186,-0.0007385027,-0.030444572,0.009631679,-0.024451224,0.006563331,0.015058459,-0.024451224,0.003276546,-0.020041538,-0.033639204,-0.017720653,0.0040035294,0.01656021,0.021024503,-0.034922518,-0.011126604,-0.027932554,-0.005556476,0.015222286,0.04374189,-0.014061843,-0.002088798,0.030990664,-0.024232788,0.02484714,0.01813022,-0.0234,0.03385764,0.034731388,0.040410735,-0.0021178091,-0.003155382,-0.06476639,0.030471876,-0.0015793975,0.0010495186,0.009147024,-0.02472427,-0.021829987,-0.029188564,0.0024710617,-0.0054063005,0.013543056,-0.023782263,0.0039420943,-0.016177945,0.03049918,0.03415799,-0.0036212658,-0.00005850213,-0.0054404316,0.012519136,-0.04032882,0.00807532,-0.025065577,-0.03134562,-0.02484714,-0.031973626,0.018717268,0.019645624,-0.025284013,-0.009385939,-0.026034888,0.022881212,-0.010191423,0.0091333715,0.01908588,0.006198133,0.008846674,-0.0062902854,-0.031400234,0.08873978,-0.009508809,0.01687421,-0.0054131267,-0.00026963244,-0.0067373975,0.015932204,0.06192672,-0.0013498686,-0.0010341598,0.0013387762,-0.011106125,-0.010334772,-0.002360137,-0.0042049005,0.0058226953,0.023727654,0.0080138855,0.033393465,-0.008457584,0.013932146,-0.016532905,0.0071947486,0.024000699,0.013665927,-0.023113301,-0.0055359975,0.0051434943,0.033147722,0.024109917,-0.042076312,-0.008955892,-0.014198366,-0.010751166,-0.02875169,0.013317794,0.014212018,-0.02652637,-0.0022116685,-0.0013498686,0.041066043,-0.0057885647,0.015427071,-0.004129813,-0.03822637,-0.003407949,0.016055075,-0.010013944,0.0038021584,0.0031178382,-0.029079344,0.028069077,0.053926487,-0.0020239498,0.01806196,-0.004679317,0.00019230509,0.048574794,0.013406534,-0.021502333,0.0073176194,0.03527748,0.004989906,0.011843348,0.029516218,0.06045227,-0.014444106,0.020969894,-0.01782987,0.02226686,0.0056452155,0.020041538,-0.0046588387,0.007706709,0.039837338,0.0046042297,0.00080079125,-0.038199063,0.006819311,0.013263185,0.010505426,-0.021543289,0.013652274,0.02221225,-0.016000466,0.0112085175,0.050868377,0.0047407523,-0.030608399,-0.02472427,0.02118833,0.0026639001,-0.00018793209,0.023918785,-0.002257745,0.0068227244,0.025475144,0.015686464,-0.023263477,0.023290781,-0.03366651,0.017297432,0.027714118,-0.01332462,-0.036151223,0.0023004082,-0.009788681,0.049475845,-0.0020324823,-0.012396266,0.0074336636,0.0011809218,0.022198599,-0.00045052505,-0.00026344624,-0.0074200113,0.007850058,-0.0022236141,-0.002095624,-0.021748073,0.0058226953,0.014239322,-0.015959509,0.015986813,-0.0004206607,0.015235938,0.019195098,0.00073252985,0.002059787,0.0141028,-0.039482377,-0.019727537,0.006409743,-0.024710618,0.012164176,0.015331505,-0.02755029,-0.025324969,0.003382351,-0.012921878,-0.0031570885,-0.013584013,0.009686288,0.010717035,-0.038745154,0.008382496,0.0047851223,-0.005324387,-0.01848518,-0.011761434,-0.009693115,-0.008723804,0.011447432,-0.026935939,0.0021382875,-0.04136639,0.00846441,0.02136581,-0.034431037,0.006068436,0.01083308,-0.0012363842,-0.015386114,-0.0016937354,0.007406359,-0.021789031,-0.03830828,-0.011720478,-0.011317736,0.0100549,-0.040438037,-0.00014057576,-0.0054984535,0.018403266,-0.008423453,-0.030635705,0.00679542,0.015140372,0.011891131,0.012307526,0.0033379812,-0.022376077,0.021625202,0.031127186,0.01620525,0.04073839,-0.018375961,-0.001593903,-0.016546557,0.0006860268,-0.0018089263,-0.026963243,0.017939089,-0.0043960325,-0.008225496,0.0019420361,-0.014171061,-0.032601632,0.021993814,-0.022021119,-0.031318318,0.045898948,-0.008580455,-0.02293582,0.009604375,-0.010409859,0.01986406,0.032492414,-0.0020512543,0.024696965,0.0083074095,0.035741653,0.018580746,0.019126836,0.011781913,0.018239439,0.009706767,0.010846732,-0.0052049295,0.01908588,0.055537455,-0.0035564175,-0.006522374,-0.045025203,0.022840256,0.018102916,-0.010539556,0.013051574,-0.014840023,0.01806196,0.0072425315,0.03126371,-0.017365694,-0.054336052,-0.022253208,-0.021338506,-0.046718083,-0.010553208,-0.005911435,0.051223334,0.016109684,-0.0033226223,-0.024328353,0.009515636,-0.022826603,-0.01284679,0.053516917,-0.015959509,-0.029516218,0.011979871,0.006525787,0.049312018,0.009522461,-0.019358926,0.015563593,-0.0064438735,-0.016259858,-0.0016689906,-0.02466966,-0.006457526,-0.007112835,0.019031271,0.006454113,-0.0034216014,0.031181796,-0.002095624,0.0088535,-0.0012747812,-0.014252975,-0.0036042004,-0.002180951,0.023236172,-0.025406884,0.034239903,-0.00079225854,-0.008232322,0.017447608,0.0035973743,0.030417267,-0.046963826,-0.00408203,0.045352858,-0.007747666,0.014553324,0.008457584,0.034458343,-0.027782379,-0.03134562,0.014717152,0.0267175,-0.01194574,0.0011698293,0.0010145346,-0.0061913067,-0.0017329856,0.005082059,-0.017270127,-0.043496147,-0.0037407232,-0.00015966762,0.029816568,-0.026103148,0.040492646,-0.016027771,-0.012478179,0.03456756,-0.019522753,0.005454084,-0.033966858,0.019167794,0.0120890895,-0.017788913,-0.029816568,0.0061093927,0.021543289,0.011720478,0.01638273,0.03312042,0.04592625,0.0045598596,0.05048611,0.007795449,0.007447316,0.03230128,0.020969894,0.0073654023,0.022062076,0.038444806,0.028260209,0.046226602,0.0032594805,0.019823102,0.011447432,-0.005532584,0.004239031,-0.015208634,-0.029024735,-0.002785064,-0.02274469,-0.0052902563,-0.029215869,0.002723629,-0.02724994,-0.009515636,-0.014539672,0.040956825,0.020833371,0.009024153,-0.010089031,-0.03317503,0.00597287,0.057776425,0.008873979,0.0061947196,0.0070923567,0.010498599,-0.026922286,-0.025188446,0.0072015747,0.003969399,-0.035195563,-0.015263243,0.013631796,-0.0028089555,0.009877421,0.056520417,-0.0064029167,-0.044506416,0.007153792,0.023386346,-0.00011956406,0.007256184,-0.008566802,-0.010423511,-0.012703442,0.014635239,0.008498541,0.005515519,0.008703325,0.014375845,0.022116685,0.021447724,-0.013106184,0.016915169,-0.015317853,0.011754609,-0.016915169,-0.020928938,0.012580571]},{"id":"interface-APIUserPartial","type":"interface","source":"main","text":"Interface: APIUserPartial\nDescription: Partial user object returned by the API (messages, members, webhooks, etc.).\nProperties: avatar: string | null, avatar_color: number | null, banner: string | null, bot: boolean, discriminator: string, flags: number | null, global_name: string | null, id: string, public_flags: number | null, system: boolean, username: string","meta":{"url":"/docs/typedefs/APIUserPartial"},"embedding":[-0.011010307,-0.001480281,-0.014504459,0.06302095,0.0247402,-0.047506694,-0.009908702,0.013724156,0.036008697,0.009013649,-0.021217361,-0.02969742,-0.003993316,-0.025979506,-0.008921849,0.017086344,0.0008649316,0.03408089,-0.023432044,0.029444968,0.035274293,-0.004839601,0.0366513,0.03984136,-0.007917782,0.03201538,-0.038762707,-0.013104503,-0.024510698,-0.013311054,0.025704104,-0.014929036,0.036789,-0.0029146618,0.03961186,0.011377509,0.03961186,0.035503794,0.0051322146,0.022020614,-0.020127231,-0.0370644,-0.0055453163,0.007820244,-0.05388682,0.047368992,0.03426449,0.032107178,0.009002174,0.025543453,-0.026323756,-0.005224015,0.01996658,0.066050366,0.0029749058,0.006076037,-0.02205504,-0.015284762,-0.037729952,0.021561611,-0.021550138,-0.025497554,0.011497997,-0.010057878,-0.021687837,0.0033507135,-0.033116985,0.049893502,0.0063916007,-0.016684717,0.05200491,0.00558261,-0.03988726,0.016948644,0.055126123,0.021802587,0.011257021,0.024327097,0.010786544,-0.02103376,-0.015250336,0.058889937,-0.0368808,-0.022536991,-0.011738973,-0.02471725,-0.04727719,0.0068333903,-0.023432044,-0.011750448,0.0064661885,-0.006098987,-0.08459404,-0.038510256,0.010878344,-0.020333782,-0.030844925,-0.0036375897,-0.011589797,0.037248,0.0061104624,0.0042773234,-0.060909547,0.005619904,0.038303703,-0.053152416,0.025428703,0.0062481626,-0.057467032,0.006689952,-0.025566403,0.016994543,-0.0038584843,0.0025001257,-0.021641938,0.0040879855,0.025727054,0.021022284,0.021963239,-0.043674026,-0.040575765,-0.030661324,0.036100496,0.0000457433,0.022892717,-0.007980895,-0.045028083,-0.0071317414,-0.079958126,-0.010602943,0.007820244,0.012163549,-0.0037695528,-0.020563284,-0.02205504,-0.033575986,0.004231423,-0.017178144,-0.05916534,-0.071099386,-0.0093521625,-0.030661324,0.02949087,-0.0056141666,-0.03001872,-0.0015118374,-0.03460874,0.07197149,0.0024083254,-0.013345479,0.011429146,0.009908702,-0.017568296,-0.008422684,-0.014045456,0.00523549,0.00051243254,-0.027838463,-0.031235076,-0.051729508,0.02096491,-0.07596481,-0.0007939298,0.0038211904,0.013701205,-0.038625006,0.022250116,-0.00043533457,-0.051545907,-0.027563062,0.00017768392,-0.031074425,-0.06577496,-0.042664222,-0.037156202,-0.023454994,0.010872606,-0.030225271,-0.061184946,-0.02246814,0.03935941,0.025933605,-0.00866366,-0.057880133,-0.035503794,-0.0053617153,-0.010820969,0.018933827,0.016455216,-0.033323534,0.033553034,0.0053100777,-0.010872606,0.0056973607,0.027425362,-0.013724156,0.025795905,-0.04204457,-0.00074300927,0.030684274,0.029536769,0.009851327,0.04746079,0.0017083476,0.024418898,-0.01591589,0.025313953,-0.002937612,-0.034746442,-0.010264429,0.010080828,-0.0049285325,-0.021974714,-0.02728766,-0.014125782,0.002546026,0.0032044067,0.017671572,0.0005841516,0.0045469874,-0.011733235,0.0489296,0.07899422,-0.03254323,0.0028845398,0.009639039,0.018692851,0.00004269524,-0.043903526,-0.0010671794,-0.032818634,0.059762042,-0.041011814,0.01860105,-0.02124031,-0.028917117,0.014906085,0.041333117,-0.015147061,-0.026209006,-0.025612304,0.0077112312,0.0060932497,0.06178165,0.019209228,0.0182109,0.043146174,0.0003135915,-0.0024341443,0.025038552,0.075689405,0.018956777,0.008164495,0.041034766,0.0060129245,0.05250981,-0.012209449,0.05953254,-0.005272784,0.019989531,0.020253457,-0.019232178,0.0048654196,0.033438284,0.0047621443,0.017258469,0.033415336,0.03667425,0.010155416,0.023730395,-0.012140599,0.0058465363,0.048011594,0.0046617375,-0.02992692,0.010287379,0.04624444,0.025382802,-0.040828217,0.028113864,-0.015904414,0.04693294,0.016156865,0.04718539,-0.0126569765,0.05475892,0.05921124,-0.027563062,0.0040851166,0.044385478,0.045762487,0.05939484,0.07036498,-0.060404643,0.033484187,0.028940067,0.053565517,-0.028022064,0.04486743,-0.009277575,0.0010119557,-0.060175143,0.002105671,-0.038074203,0.024028746,-0.0046646064,0.05434582,0.0043863365,0.0075735305,-0.025405753,0.019427253,-0.038257804,-0.0374316,0.015089686,-0.06462746,-0.011853723,-0.017717471,-0.009684939,-0.04654279,0.034287438,-0.05145411,-0.021389486,-0.043696977,-0.029422019,-0.0001047098,-0.038625006,-0.04245767,-0.037041448,-0.0060875122,-0.02226159,0.03194653,-0.037385702,-0.025543453,-0.012725826,0.019978056,-0.015686389,-0.026254905,0.06875848,-0.013609405,0.024372999,0.011664385,-0.04179212,-0.034975942,-0.01368973,-0.014676584,-0.033300586,-0.03981841,0.006655527,-0.02717291,-0.015755238,-0.012404525,0.007825982,-0.0049256636,-0.011566847,-0.01067753,0.0024700037,0.041287217,-0.040874116,-0.06898798,0.045211684,-0.007934995,-0.0043490427,0.023913996,0.0039875787,-0.013609405,-0.02230749,-0.01355203,-0.006557989,-0.028733516,-0.06930928,-0.005160902,-0.030707223,-0.0075735305,-0.000067102126,0.0015433937,0.019025628,-0.04674934,-0.0056514605,-0.02983512,0.03708735,0.068115875,0.017384695,0.022100938,-0.029399069,0.0011955564,-0.011738973,-0.015192961,0.0040019224,-0.032451432,0.038349606,0.038349606,-0.025107402,-0.016133916,-0.02724176,0.01994363,-0.025658203,-0.014573309,0.013586455,0.0035285768,-0.036169346,-0.0246943,-0.0011654344,0.028618766,-0.018864976,-0.041149516,0.0048539448,0.008462846,-0.004128148,0.037844703,-0.019163327,0.03437924,-0.04651984,0.018245324,0.007120266,0.05641133,-0.018497774,0.0493427,-0.03249733,0.02740241,0.043605175,-0.03201538,-0.013942181,-0.030500673,-0.03713325,-0.0012687098,-0.0068907654,-0.008921849,0.004196998,-0.0495263,-0.035641495,-0.021538662,0.0093579,0.022766491,-0.03013347,-0.0059383367,-0.02717291,0.062286552,0.028572865,-0.050536104,0.059762042,0.02508445,-0.02235339,-0.009765265,-0.012725826,-0.050352503,-0.01950758,0.041172467,-0.026599158,0.0061276746,-0.028894167,-0.012117649,0.017981397,0.010161154,0.06265375,-0.038280755,-0.043352727,0.017637147,0.045418233,-0.011463571,-0.018073197,-0.0007161146,0.023454994,-0.030110521,0.05388682,0.03217603,-0.032635033,-0.00050382625,0.030248223,-0.015594588,0.0031871942,-0.0013268022,0.0114520965,0.051500008,-0.01500936,-0.033048134,-0.013402854,0.00067810353,-0.016960118,-0.00736698,0.023305818,0.028022064,0.0022605842,-0.033162884,-0.030385923,0.040552814,0.04498218,0.026254905,0.016351942,-0.014883135,0.016283091,-0.023007467,-0.029353168,0.03961186,-0.00993739,0.03458579,-0.00810712,-0.012025849,-0.066279866,0.01243895,-0.025566403,0.0375234,-0.032749783,0.0033363698,-0.015284762,0.01700602,-0.02749421,-0.04383468,-0.030317072,-0.03178588,-0.033598937,-0.045510035,0.014986411,-0.032566182,-0.006098987,-0.05622773,0.03444809,-0.015089686,0.023363195,0.011607009,0.019817404,0.013861856,0.020540332,0.018463349,-0.017889597,0.0021874306,-0.01642079,-0.033002235,-0.10281642,-0.018807601,0.016799469,0.0030494935,0.009581664,0.021423912,-0.027838463,-0.0039072535,0.015043786,-0.013815956,-0.024304148,0.0024685694,-0.0083882585,-0.011486521,-0.012048799,0.0063686506,0.0047478005,0.0057948986,0.050260704,0.010809493,-0.008921849,0.027815513,0.010109516,0.007206329,-0.001118817,0.035434943,-0.036123447,0.011125058,0.020907534,0.004727719,-0.018658426,0.0004120259,-0.028940067,-0.033644836,-0.013242204,0.038831558,-0.003499889,-0.011698809,0.0025488946,0.031166226,-0.03942826,0.010390654,0.033461235,-0.0018245324,0.032566182,-0.023799246,0.017315844,0.031464577,0.009369375,0.0043232236,0.02978922,0.013104503,0.03173998,-0.007699756,-0.0151814865,-0.014171682,0.054254018,0.010769331,-0.0187617,-0.023799246,-0.013827431,-0.0057862923,0.04399533,0.036054596,-0.0025890574,-0.029169569,0.00078173756,-0.038762707,0.0031585065,0.04684114,0.013861856,-0.028641716,-0.009610351,0.00027880777,-0.0074300924,-0.031694077,0.016810942,0.03401204,-0.0015419594,0.010339017,0.0066268393,-0.07013548,0.0053014713,-0.006844865,0.04160852,-0.0089906985,-0.00009538632,-0.019576428,0.008233346,-0.009036599,-0.013609405,-0.004859682,-0.016110966,-0.010396392,-0.028504016,-0.016225716,0.040162664,-0.00061463215,0.0062998002,-0.03426449,-0.012576651,-0.00076093903,-0.018061724,-0.036307048,0.0036146396,0.013379904,0.002636392,0.02214684,-0.026828658,0.002267756,0.020414108,-0.028182713,0.0063342256,-0.002267756,0.036100496,0.011830773,-0.035618544,0.012634026,-0.016386366,-0.040415112,-0.0029634307,-0.024189398,0.012106174,-0.014366758,-0.037385702,0.01707487,-0.008996436,0.004977301,-0.023707446,0.027631912,0.048516497,-0.03495299,0.0030753124,-0.008795623,0.035641495,0.0139192315,-0.011509472,-0.020586234,0.014837235,-0.0124160005,0.005376059,-0.027677812,-0.0006644769,-0.021814063,0.03938236,-0.0057317857,0.004432237,0.018922351,-0.009415275,0.0014974936,-0.028917117,0.017246995,0.0068161776,-0.0014243402,-0.004756407,-0.023156643,-0.0056858854,0.0024154973,-0.022743542,0.01953053,-0.0034195639,0.01239305,-0.04131017,0.010057878,0.026438506,0.0489296,-0.03185473,0.0038097154,0.011716022,0.01707487,-0.012140599,0.014860185,0.009661989,-0.015043786,-0.007183379,-0.009616089,0.00202678,-0.016248666,0.043398626,-0.00041704622,0.021423912,-0.0059498115,-0.02972037,-0.055814624,0.025887705,-0.033920236,0.0129553275,-0.0056715417,0.031166226,-0.037156202,0.0000018546095,0.021722263,0.008675135,0.014068407,-0.008049745,-0.033139933,0.062837355,0.013253679,-0.0247861,0.02490085,0.021102611,0.025130352,-0.02244519,0.012725826,-0.022020614,0.0014702403,0.003611771,0.0032675194,0.017671572,0.016374892,0.008141546,-0.031418677,-0.0036031646,-0.008342358,-0.02740241,-0.0020525989,0.013471705,-0.026668008,-0.013448754,-0.018578101,0.012163549,0.005137952,-0.029077768,-0.009851327,0.005797767,0.0010894123,-0.008789886,0.0051838523,-0.010798018,0.008141546,-0.0058866986,-0.050077103,0.006644052,0.026920458,0.035641495,0.0047076377,0.03453989,-0.027884362,0.0009431054,0.043719925,-0.030982625,0.038372554,-0.031694077,-0.01596179,0.0024800445,-0.019060053,0.025772953,0.02737946,-0.024074648,-0.02714996,0.0030581,-0.011784873,0.0075276303,0.012748777,0.030707223,0.016455216,-0.027746662,0.0050834455,-0.015147061,-0.0025029944,-0.0026091386,-0.022571417,0.00687929,-0.037248,0.0063743885,-0.0092202,-0.03974956,0.005835061,0.021527188,0.0116930725,-0.06292915,0.028504016,0.0369726,-0.017487971,0.017017493,0.0070686284,0.027127009,0.019427253,-0.0102529535,-0.008772673,0.02335172,-0.006540776,-0.0064891386,-0.025910655,0.017660096,-0.003861353,0.0062022624,-0.030431824,0.050214805,-0.03447104,-0.025153302,0.008175971,-0.015238862,0.049204998,-0.014447084,-0.008652185,-0.034516938,0.014068407,0.035457894,-0.046129685,-0.020023955,0.013334004,-0.032703884,-0.015537213,0.022892717,0.048608296,-0.019415779,-0.017889597,-0.020379683,-0.026094256,-0.0044264994,-0.016340466,-0.0044264994,0.012886477,-0.008244821,0.013276628,-0.0020812866,0.03483824,-0.022777967,0.04424778,-0.027586011,-0.03226783,0.00047549725,0.0005959852,0.000082476894,0.0013081552,-0.05429992,-0.019002676,-0.04463793,-0.02990397,0.010557042,0.033874337,0.0040277415,-0.008399734,0.029422019,0.012530751,0.0048797633,-0.0067358525,-0.008411209,0.017143719,-0.022709116,0.028504016,0.0059383367,0.017591245,0.008198921,0.010298854,0.022938618,0.0018675638,0.0035285768,-0.051132806,-0.024372999,-0.0039187283,0.050719704,-0.008916111,-0.02717291,0.02124031,-0.017637147,0.009541501,0.046496887,0.02237634,0.03465464,0.009317738,0.023592696,-0.0248779,-0.016845368,0.0093464255,0.0034080888,0.03901516,0.0047678817,-0.014355283,0.040483963,-0.021159986,-0.024602499,-0.015204436,-0.044087127,-0.016386366,-0.0043461737,0.003190063,0.011888148,0.057421133,-0.0131963035,-0.02705816,0.0069137155,0.015663438,-0.008428422,0.03467759,0.058063734,-0.010407867,0.014550359,0.033690736,-0.04640509,0.02694341,0.028641716,0.008227608,0.011876673,0.009484126,0.05521792,-0.008772673,0.0072981296,-0.005717442,-0.025015602,0.02244519,-0.0044437116,0.0003582366,0.0074071423,0.021733738,0.0044064177,-0.037638154,-0.03148753,0.0079694195,0.026002456,0.029077768,0.0036490648,0.009782477,0.020907534,0.011411933,-0.01751092,0.022709116,0.016581442,-0.043283876,0.0017972791,0.0009861368,-0.016592918,0.0123242,0.005390403,0.013540555,-0.022973042,0.0055309725,-0.021228835,0.07862702,0.0022620186,0.045555934,0.014481508,-0.039221708,-0.023110744,-0.032635033,-0.012186499,-0.000506695,-0.018922351,0.04640509,-0.0022921406,0.012266825,0.027907312,-0.0014056931,-0.0029060554,0.05232621,0.017591245,0.021309162,0.008382522,-0.0060301367,0.035733294,-0.021504236,-0.0030581,-0.016524067,0.017901072,-0.01841745,-0.0053272904,-0.015594588,0.017705997,-0.028022064,0.014297908,0.015365087,0.02444185,0.019002676,0.0057489984,0.0076366435,0.023959897,-0.0008742551,-0.004251505,-0.013471705,-0.01352908,0.024602499,-0.0034826766,-0.019668229,-0.021687837,0.01051688,-0.020632133,0.030408872,-0.011509472,-0.003032281,-0.0069366656,0.01355203,0.022158315,-0.01964528,0.00555966,-0.0002836488,-0.024143498,0.015789663,-0.03426449,-0.018842027,0.021400962,0.003499889,-0.010224266,0.01480281,-0.022571417,0.0059039113,-0.01500936,-0.010120991,0.007498943,-0.0028730647,-0.01612244,0.023638595,-0.016524067,-0.0002836488,0.015996214,-0.0011561109,0.017935498,0.005473597,0.012588126,-0.010258691,0.031189175,-0.0048453384,-0.024418898,-0.025038552,0.0011475047,-0.023397619,0.026645057,0.021114085,-0.033461235,0.017361745,0.0063514384,-0.0059670242,0.01174471,0.023168119,0.002395416,-0.019243652,-0.02082721,0.0064202882,-0.010304592,0.0011424843,0.008451371,0.003344976,0.005135083,-0.03173998,0.0050002513,-0.0065063513,0.0053445026,0.035389043,0.026759809,0.00984559,-0.025268052,-0.0055653974,0.02216979,-0.0023265656,-0.0063112755,-0.00042421813,-0.047139492,0.019519053,0.017671572,0.0368349,-0.043352727,-0.019450204,-0.014148733,0.0065120887,0.011899623,0.0017356008,-0.014619209,-0.025612304,0.0028027801,0.00032632163,0.02200914,0.011320134,0.012634026,-0.02226159,0.015479838,-0.025543453,0.000014679991,-0.001642366,0.029284319,-0.0097136265,-0.03699555,-0.010453767,0.0106144175,0.025382802,0.017522397,0.004174048,0.05145411,0.014125782,0.015537213,0.0009122662,-0.009771002,-0.041264266,0.039451208,0.011176695,0.012519276,0.011830773,-0.0373398,-0.06173575,0.017522397,-0.0059383367,-0.009042337,0.00915135,0.010597206,-0.008835786,-0.007825982,-0.008256296,0.031464577,0.00864071,0.0008649316,-0.02983512,0.034746442,-0.045555934,0.004079379,0.015066735,-0.048241094,0.0030552312,-0.039152857,0.017981397,-0.0037724215,-0.030569524,0.009765265,-0.0020325177,0.008525959,-0.0049027135,0.016053589,0.007906307,0.006523564,-0.0011503734,0.0015390906,-0.027999112,0.027723713,-0.001137464,0.020310832,-0.016351942,-0.019140378,0.011773397,0.03288748,0.022192739,0.023959897,0.007171904,0.0016438004,-0.003502758,-0.012381575,0.013793006,0.021228835,0.009759527,0.007148954,0.023822196,0.029444968,-0.022089465,0.015996214,0.03215308,0.037936505,-0.004696163,-0.004816651,-0.030982625,0.0247861,0.00262922,0.00938085,0.011325871,0.0066497894,0.009191512,-0.004799438,-0.023099268,-0.020345258,0.008198921,0.012209449,-0.010023453,0.017407645,-0.021389486,0.028871216,-0.020873109,-0.0014243402,0.0047449316,-0.041356068,0.0040822476,0.023913996,-0.02710406,-0.0058866986,-0.021699313,-0.025359852,0.051362306,0.03190063,0.014091357,-0.004592887,-0.010625893,0.00736698,0.06577496,0.0042400295,-0.033208784,-0.014137257,0.04433958,-0.0042830613,0.0028974493,0.07169609,0.023845145,0.0019923549,-0.014366758,0.007676806,0.04000201,-0.014596259,0.0014745435,-0.009059549,0.005499416,0.021928813,0.010321804,-0.009581664,-0.031143276,-0.003898647,0.017568296,0.009002174,-0.044913333,-0.0119340485,0.014642159,-0.01619129,0.016524067,0.03518249,0.014974936,-0.0008584769,-0.013391379,0.031510476,0.0030667062,-0.017063394,0.060312845,-0.013655305,0.014274958,0.015124111,0.00077600003,0.01352908,0.025497554,-0.01973708,-0.00033994825,0.028963016,-0.026231956,-0.038808607,0.0075505804,-0.026277857,0.020976385,0.014011032,-0.015560163,0.016294565,0.042319972,0.013896281,0.018050248,0.008290721,-0.014561834,0.02490085,0.027723713,0.002768355,-0.007384192,0.01818795,0.0025818856,-0.0060243993,0.0043748613,0.030454773,0.023156643,0.00493427,-0.017935498,-0.011182433,-0.0030150684,-0.028618766,-0.00013474215,0.041172467,-0.033231735,-0.014768384,0.0060473494,-0.023982847,-0.036789,-0.021768164,-0.009036599,-0.011750448,-0.02978922,-0.0042428984,-0.0012500628,-0.022755018,-0.015238862,0.015307711,-0.024350049,-0.006523564,-0.0248779,-0.023638595,-0.011148008,-0.011991424,-0.029146617,0.020574758,-0.04147082,-0.023913996,0.01739617,-0.03513659,0.014997886,0.008789886,0.006001449,-0.00038405546,-0.00875546,0.028963016,-0.008141546,-0.023214018,-0.0070456783,0.0021085397,-0.0054276967,-0.04482153,-0.023214018,-0.0039215973,0.027631912,-0.016317517,-0.019978056,-0.008721035,0.031533428,-0.013861856,-0.017786322,-0.030431824,-0.027815513,0.01002919,-0.000012225855,0.004475268,0.0063112755,0.0061907875,-0.0110332575,-0.002237634,-0.0026493014,0.023386145,-0.018428925,0.043972377,-0.017579772,0.012794677,0.012519276,0.03217603,0.0024398817,0.0063457005,-0.03208423,-0.0018905139,0.05664083,-0.0036519335,-0.019232178,-0.044913333,-0.0012156378,-0.0083882585,0.006776015,-0.006121937,0.00016593993,-0.02462545,0.023936946,0.039910212,-0.021963239,0.028710566,0.014515934,-0.010838182,0.012565176,-0.028320415,-0.012622551,0.0489296,-0.003431039,-0.021573087,-0.036697198,0.013907757,-0.011434884,0.0036002959,-0.018991202,-0.0104308175,-0.010884082,0.00014406562,-0.0048654196,-0.021710787,-0.019140378,-0.0022204216,-0.0061104624,-0.021802587,-0.0123242,0.026392607,0.040644616,0.018773176,-0.023386145,-0.016386366,0.01116522,-0.020723933,-0.0022419372,0.038441405,-0.009208725,-0.021274736,0.017568296,0.015629014,0.043123223,0.0499394,-0.03993316,0.015124111,-0.02237634,0.0028845398,-0.021802587,-0.02490085,-0.022250116,-0.0375234,-0.02235339,0.037156202,-0.012852052,0.019335452,0.028274514,-0.0070571536,-0.021446861,-0.012886477,0.015686389,-0.019461678,0.017637147,0.018945301,0.02114851,-0.009157087,-0.014079882,0.015927365,-0.011308658,0.013058603,-0.023913996,-0.010769331,0.06357176,0.014550359,0.026828658,-0.006317013,0.031877678,-0.03890041,-0.0371103,0.0067702774,0.018199423,-0.02751716,0.0022290277,0.021676363,0.0030609686,-0.0036002959,-0.0029218337,-0.0030753124,-0.030799024,0.02694341,0.013070078,0.008962011,-0.04411008,0.035228394,0.0023036157,-0.0016438004,0.02091901,-0.020046907,0.014366758,-0.041631468,-0.019266604,0.026828658,-0.005714573,-0.013391379,0.001661013,0.019679705,-0.0021644805,-0.0010126728,0.01755682,0.06320456,0.0014243402,0.041195415,0.012576651,0.002335172,0.03649065,0.027448311,0.033025183,0.0056084287,0.053519618,0.0011353124,0.01111932,0.0008828614,0.0075391056,-0.010579993,-0.008795623,0.004297405,-0.008692347,-0.023913996,0.008841523,-0.011377509,0.002708111,-0.017832221,-0.01764862,0.006862078,-0.02724176,0.031464577,0.04704769,-0.011388984,-0.03653655,-0.003861353,-0.021561611,0.02962857,0.055263825,0.0064776638,0.008049745,0.020219032,-0.03249733,0.0016509723,-0.021791114,-0.013907757,-0.0025919261,-0.033002235,-0.021733738,-0.014722484,0.016673243,0.020666558,0.038739756,0.0055539226,-0.028022064,-0.0055510537,-0.013976607,0.0002173087,-0.00493427,0.013276628,-0.05911944,-0.008313671,-0.014286432,0.01735027,0.0021028023,-0.0042887987,0.018038772,0.04709359,0.024005797,-0.01621424,0.0109701445,-0.025130352,0.0008462847,-0.008376784,0.0003074954,0.010034928]},{"id":"interface-APIUserProfile","type":"interface","source":"main","text":"Interface: APIUserProfile\nDescription: User profile sub-object from GET /users/{id}/profile.\nProperties: accent_color: number | null, banner: string | null, banner_color: number | null, bio: string | null, pronouns: string | null, theme: string | null","meta":{"url":"/docs/typedefs/APIUserProfile"},"embedding":[0.004952037,0.002629071,-0.009549336,0.03606891,-0.0015133608,-0.03721323,0.017427966,0.0053239404,0.06783518,0.010745148,-0.023641614,-0.033436976,0.04236266,-0.0058875172,0.005847466,-0.0024331065,-0.0022943579,0.028813932,-0.024213772,0.033620067,0.03789982,0.0075181704,0.016317977,0.0397765,0.009383409,0.055110365,-0.03650375,0.015780147,-0.0135716135,-0.014990568,0.0064253467,-0.015242319,0.007283585,0.011763591,0.039639182,-0.047054365,0.048244454,0.015436852,0.022577398,0.021204216,-0.007483841,-0.03959341,0.013045227,0.026891477,-0.041332774,0.06637046,0.026250659,0.019430524,0.034169342,0.034466863,-0.025701387,-0.014143772,0.015368193,0.026159113,-0.019945467,0.0026219191,-0.020483296,-0.027852705,-0.039273,0.023984909,0.00041266976,-0.023412751,-0.022108227,-0.010876744,-0.028630842,-0.041378547,-0.034512635,0.03185782,-0.006024835,-0.024808818,0.08605273,0.00931475,-0.028081568,-0.00046487927,0.027738273,0.007895796,-0.00733508,0.010779478,-0.013605943,-0.057627864,-0.0016778565,0.0347415,-0.04266018,-0.027806932,-0.0073922956,-0.006602716,-0.034375317,-0.029271659,-0.029981136,0.016306534,-0.021845033,-0.013743262,-0.06577541,-0.0236645,0.024282431,-0.016878692,-0.032201115,-0.0028693778,-0.009743869,0.028676614,0.03197225,-0.024785932,-0.04746632,-0.008393574,0.024534183,-0.031949364,0.027326318,-0.0013259787,-0.028287545,-0.01507067,-0.05570541,0.04336966,0.020242989,0.036343545,-0.029203,0.0053925994,-0.00046666726,-0.0031411534,0.021089785,-0.031743385,-0.057261683,-0.0021270015,0.041882046,0.015310978,0.018526511,-0.01945341,-0.024648614,0.0022528765,-0.118551366,-0.064127594,-0.007260699,-0.040188454,0.0038906818,-0.013125329,-0.033139456,0.018183216,0.006333801,-0.036183342,-0.034329545,-0.07566232,0.010584943,-0.0067858067,0.010773756,-0.026777046,-0.058131363,-0.012770591,-0.0047517815,0.096763544,0.026296431,0.02118133,0.010630716,0.0026376534,-0.05552232,-0.019911136,-0.011466068,-0.018034454,0.03844909,-0.024808818,-0.052318227,-0.037144568,0.07168009,-0.061793182,-0.0196365,-0.030576183,0.023424193,-0.007232091,0.010665045,0.010533449,-0.04199648,0.010584943,-0.030667728,-0.036961477,-0.064676866,-0.011254369,-0.04538366,-0.021867922,0.012255648,-0.023756046,-0.033620067,0.030667728,0.046596635,0.055293456,-0.014178103,-0.025518296,-0.02099824,-0.0037247557,0.008004506,0.0030667728,0.000092618255,-0.0024860313,0.028722387,0.027051682,0.017828478,-0.026090454,0.0027249076,-0.03460418,0.05671241,-0.016855806,-0.048656408,0.012988011,0.019270318,0.00668854,0.02977516,-0.014635829,0.011586222,-0.025152113,0.013926352,0.012667602,-0.031377204,-0.01456717,0.009869744,-0.001438265,-0.015459739,0.021410193,0.00064761256,-0.006991784,-0.000106832835,0.023893364,0.017679716,0.011500398,-0.030301545,0.02712034,0.11699509,-0.0046087415,0.028607955,0.009383409,-0.0057444773,0.0062422557,-0.012186989,-0.0004977784,0.0041052415,0.025220772,-0.023550069,-0.0016235014,-0.023572955,-0.010956847,-0.0031497357,0.030576183,-0.006648489,-0.054606862,-0.018286204,-0.01507067,0.016443852,0.052455544,0.024373978,0.025724273,0.032269772,0.0068373014,-0.010390409,0.014075113,0.033894707,-0.004502892,-0.03297925,0.0018866946,0.013285534,-0.0021069758,0.01898424,0.034398206,0.01891558,-0.02309234,0.0011629134,0.009555057,-0.0036532357,0.02200524,0.017508069,-0.0061392672,0.013960682,0.024831705,-0.024190886,0.016420966,-0.0082448125,0.014200989,0.038586408,0.040325772,-0.011540449,0.0012058252,0.03751075,-0.016272204,-0.03448975,0.040806387,-0.012862137,0.0050693294,0.0137203755,0.036984365,-0.012907909,-0.0016163494,0.023595842,0.009749591,0.0067343125,0.035656955,0.024076454,0.031743385,0.060008045,-0.034146454,0.032887705,-0.004271168,0.051906273,0.0058875172,0.055385,-0.005472702,0.079644546,-0.03970784,0.029477637,-0.031422976,0.016455296,-0.016775705,0.043392546,0.03277327,-0.013731819,-0.008239091,0.0039850883,-0.04696282,-0.027921364,-0.0051007983,-0.07268709,-0.03021,0.023824705,-0.004028,-0.04476573,0.014086557,-0.013834807,-0.009572222,-0.022154,-0.033688728,-0.0060362783,-0.019510625,-0.01118571,-0.042499978,0.048107136,0.019625057,0.038998365,-0.034283772,-0.043163683,0.014040784,0.03600025,-0.0081017725,0.0062479773,0.051402774,-0.009412017,0.017805591,0.006213648,-0.057856727,-0.05268441,-0.037236113,-0.017611057,-0.011082722,-0.0286995,0.0029952528,-0.035336547,0.010567779,0.007398017,0.025083454,-0.0071805967,0.01592891,-0.009875466,-0.026548183,-0.015105,-0.01104267,-0.0458185,0.0518605,-0.009766756,0.013926352,-0.019201659,0.0025060568,-0.012747705,-0.05350832,0.0075582215,0.013869137,0.0038391876,-0.055476546,-0.016855806,-0.042911932,0.01970516,-0.016123444,0.009589386,0.023824705,-0.03970784,-0.030736387,-0.023939136,-0.025564069,0.0800565,0.042911932,0.042294,-0.04764941,0.03998248,-0.06829291,0.006991784,-0.0021455965,-0.05016691,0.0347415,0.05886373,0.019487739,0.0286995,-0.04506325,0.056620862,-0.005678679,-0.0034443978,-0.0037676676,-0.0012079709,-0.031377204,-0.022760488,0.009703819,0.006053443,0.014040784,-0.035840046,-0.03336832,-0.0037276165,0.013010898,0.025449637,-0.054332227,0.035016138,-0.048244454,0.019213103,0.039273,0.021490296,-0.036847048,0.0102645345,-0.061518546,0.009371966,0.060145363,-0.029248772,-0.000030261852,-0.014132329,-0.043918934,-0.0028593652,-0.022428637,0.006505449,0.0034157897,-0.031400092,-0.0061907615,0.00014366557,0.0049005426,0.05282173,-0.034032024,-0.025632728,-0.026387978,0.025907364,0.01535675,-0.024145113,0.04449109,0.0049692015,0.012610386,-0.0022385726,-0.031812046,-0.009017227,0.005773085,0.050578862,-0.019739488,-0.0012952251,-0.03229266,-0.037144568,0.061335456,0.0015305256,0.08243668,0.014361193,0.01485325,0.0063109146,0.028241772,-0.008891352,0.0038849602,0.046848387,0.028241772,-0.042705953,0.06669086,0.044788614,-0.018331977,-0.043095022,0.0050006704,-0.0014246762,-0.015711488,0.027486524,0.009137381,0.051128138,-0.039135683,-0.017736932,-0.027166113,-0.014647272,0.032155342,-0.03938743,0.012404409,-0.0086796535,0.035336547,-0.038266,0.0043569915,0.053966045,0.089989185,0.03938743,-0.023332648,-0.013972125,0.019533511,0.024396865,-0.0020254431,0.03744209,-0.009944125,0.01456717,0.016306534,-0.017267762,-0.021856477,0.013091,-0.023321204,0.015482625,-0.018434966,-0.01467016,0.025266545,0.027074568,-0.03394048,-0.020689273,-0.030507524,-0.044353772,-0.019750932,-0.005438372,0.007850023,-0.03664107,-0.0145099545,-0.033116568,0.009583665,-0.033711612,0.03847198,-0.010602108,0.018824033,-0.0028236052,-0.010665045,0.0021126976,0.018675273,0.0062594204,-0.031308547,-0.00018487891,-0.097679004,0.013926352,-0.025655614,-0.0059905057,-0.04103525,0.009291864,-0.01978526,-0.010607829,0.026342206,-0.011626272,-0.03883816,0.02492325,-0.012392966,-0.03556541,-0.02650241,0.015116443,0.04053175,-0.008296307,0.046322,-0.009412017,-0.008147545,0.017988682,-0.008067443,0.014681603,-0.0050950767,0.0047374773,-0.016855806,0.026319318,0.029408978,0.018766819,-0.013697489,0.020128557,-0.0357485,-0.008553779,-0.013399966,0.051952045,0.0008689666,0.010487677,0.029180113,0.043735843,-0.013113886,-0.008725426,0.025724273,-0.0000620882,0.0016692742,-0.0307135,-0.0065111704,0.02272616,0.008313471,-0.035290774,0.032338433,0.030324433,-0.00068408775,-0.009194597,-0.017759819,-0.022932136,0.024602842,-0.03192648,0.014590057,0.0078843525,0.003229838,0.011282978,0.014098,0.019590728,-0.010453347,0.016752819,-0.028997023,-0.009360523,0.0023201052,0.047924045,0.014990568,0.012038227,0.010487677,-0.0011314446,-0.038952593,-0.029294545,0.009526449,0.043506976,0.022119671,0.033848934,-0.0037905541,-0.04948032,0.0043999036,-0.0057072868,0.038746614,-0.019796705,0.013777591,-0.023355534,0.02089525,0.0015648551,-0.021341534,0.012598943,-0.01733642,-0.021112671,-0.008399296,-0.018389193,0.04401048,-0.028470637,-0.016455296,-0.057810955,-0.01650107,0.013296978,-0.024854591,-0.019934023,-0.016192103,0.0009826833,0.01705034,0.007483841,0.011368801,0.00013284819,0.017027454,-0.03588582,-0.033093683,0.030805046,0.024236659,0.018286204,-0.009469233,0.011151381,-0.026891477,-0.027051682,0.0029351762,-0.014281091,0.019464852,-0.042889047,-0.046047363,0.012896466,-0.008519449,-0.002377321,-0.001755098,0.00989263,0.018640943,-0.033780273,0.029454751,-0.0114145735,0.04469707,0.030690614,-0.013193989,-0.004079494,-0.007375131,0.009240369,0.036366433,-0.029546296,-0.01575726,-0.0028436307,0.024145113,0.030988136,-0.012461625,0.0011271534,0.009291864,0.029386092,-0.029500524,-0.015906023,0.025152113,-0.0050578862,-0.022039568,-0.028653728,-0.024122227,-0.0041739005,-0.01822899,0.006082051,0.016878692,0.017794147,-0.010790921,0.0037562244,0.00949212,0.049892273,-0.012736262,0.000758826,0.0031640397,-0.009000063,0.014086557,0.014956239,0.015333864,-0.007832858,-0.012507398,0.0018523651,-0.030072682,-0.009120216,0.0156085,0.0070432783,0.008330637,0.006768642,-0.021044012,-0.0367555,0.01888125,-0.029317431,0.018686716,0.004823301,0.01204967,-0.025335204,-0.003567412,0.027852705,0.020769374,0.018801147,-0.017759819,-0.021375865,-0.0034672841,0.0034529802,0.00023780363,0.039936706,0.029019909,0.024168,-0.025518296,0.0007724148,-0.013354193,-0.01923599,0.023893364,-0.026639728,0.021753488,0.0236645,0.029683614,0.0030410255,0.0070661646,-0.0014482777,-0.006516892,-0.029088568,-0.011248648,-0.025838705,0.0076898183,-0.016798591,0.018480739,-0.017897137,-0.0055442215,-0.031079682,0.0058388836,0.0062308125,-0.022955023,0.014395523,-0.012816364,0.0017593892,0.0032470028,-0.034558408,0.0076039946,0.010802364,0.02448841,0.00819904,0.0008260547,-0.046413545,0.010951125,0.024877477,-0.01664983,0.018091671,-0.0012573196,-0.02934032,-0.0056357672,-0.015276648,0.005813136,0.036412206,-0.016718488,-0.007466676,-0.046230454,0.002740642,0.005369713,-0.0011500398,0.021890808,0.025838705,-0.040897932,0.014750262,-0.0016306534,0.0034386762,-0.014281091,-0.011878023,-0.029180113,-0.021192772,0.0023472826,-0.0053954604,-0.046093136,0.025998909,-0.004445676,0.004002253,-0.040783502,0.027669614,0.027532296,-0.019430524,0.009286142,-0.00008783536,0.04185916,-0.00920604,-0.03208668,-0.0034186507,0.026662614,-0.0045286394,-0.02099824,-0.0032212557,0.0053525483,-0.030164227,0.010762312,-0.032018024,0.0347415,0.0008196179,-0.033025023,-0.006619881,-0.039501864,0.07186318,0.0005428359,-0.013045227,-0.007426625,0.0059218467,0.056483544,-0.040371545,-0.010853858,-0.006728591,-0.040188454,0.020185772,0.0043970426,0.037625182,0.0045400825,0.008010227,-0.03719034,-0.010127216,0.006574108,0.013628829,-0.0058503267,0.021730602,-0.011900909,0.040188454,-0.028081568,0.024694387,-0.054789957,0.014990568,-0.04549809,-0.0176225,0.0076726535,-0.00073808525,-0.053142138,-0.0077241478,-0.03467284,-0.028722387,-0.045086138,-0.015310978,0.00848512,0.009503563,0.004265446,-0.0007752756,0.016878692,-0.008136102,-0.010893909,0.003118267,-0.004096659,-0.010607829,-0.002952341,0.020300204,0.0031154063,-0.014761705,0.0011393118,0.019716602,0.0111227725,0.007655489,0.023572955,-0.0266855,-0.00043341052,0.019693715,0.04085216,0.003161179,0.00045987288,0.02190225,-0.021776374,0.023183886,0.019831033,0.013892023,0.01690158,-0.0019710881,0.025175,-0.010642159,-0.008038836,-0.012381523,0.0236645,0.044582635,0.022634614,-0.012392966,0.03405491,-0.029683614,-0.022634614,-0.015288091,-0.035016138,-0.031033909,0.025518296,-0.0015362472,-0.023687387,0.029363206,-0.010871023,-0.0021198494,0.009343358,0.0007184173,-0.043735843,0.0043999036,0.03721323,0.027715387,0.011878023,0.011305864,-0.03998248,0.02290925,-0.0013510106,0.021925136,0.008353523,0.0042740284,0.006854466,-0.003733338,-0.024991909,-0.017679716,-0.027738273,0.021249989,-0.00052853196,-0.004703148,-0.00056178874,-0.008387852,-0.022531625,-0.033391204,-0.017954353,0.010928239,0.023962023,0.034215115,-0.026845705,-0.00024102202,-0.012450182,-0.0018523651,0.00021938725,0.015253762,-0.0005589279,-0.026342206,0.008250535,-0.013239762,-0.03719034,0.026273545,-0.0013517259,0.013022341,-0.025815818,-0.016672716,0.010905352,0.064905725,-0.0021370142,0.0045400825,0.013193989,-0.02934032,-0.022291318,-0.031674728,-0.011935239,0.008210483,-0.010081443,0.034352433,-0.0032384205,0.0397765,0.053966045,-0.01935042,-0.023035126,0.06975764,0.0034787273,0.019178772,-0.0062022046,0.0021684829,-0.0030753552,-0.00019739488,-0.022531625,-0.036160454,0.057444774,0.0058159973,0.0036189063,-0.038952593,0.0065455,0.011923796,0.010636438,0.010281699,0.039250113,0.017233431,-0.013262648,-0.0081704315,0.012267091,0.017645387,0.005272446,-0.006528335,0.015322421,-0.0009905504,-0.008405017,-0.024785932,-0.016283648,0.036778387,-0.032567296,0.025518296,-0.0086796535,-0.0022485852,-0.043003477,0.021867922,0.0029037073,0.003078216,0.0018323394,0.004142432,-0.027669614,0.016775705,-0.025884477,-0.012827807,0.027738273,0.004196787,-0.01255317,0.028104454,-0.002603324,-0.021055454,-0.013193989,-0.0020125697,0.0081761535,0.024648614,-0.0057673636,0.032201115,0.008782642,-0.014143772,0.04153875,0.011797921,0.035267886,-0.015986126,0.0068659093,-0.013789034,0.0060362783,0.014235319,-0.042133797,-0.04915991,-0.00058610545,-0.019682273,0.0020783679,-0.0053554093,0.021158444,-0.00445998,0.0026676918,0.010390409,0.014899023,-0.0076039946,0.0071176593,-0.014200989,-0.010144381,0.0071004946,-0.019030012,-0.0076726535,-0.0020340255,0.015207989,-0.0057273125,-0.018537955,0.022302762,0.01733642,-0.022142557,0.03851775,0.02193658,0.015276648,-0.006276585,-0.0067514773,0.034855932,-0.0064997273,-0.02190225,0.007329358,-0.03448975,0.029798046,0.014178103,0.044353772,-0.015413966,0.002714895,-0.0035845768,0.012701932,0.023000795,0.0021227102,-0.016958795,-0.070032276,-0.01136308,-0.016947353,0.023641614,-0.006207926,0.012782034,-0.051402774,0.05021268,-0.038494863,-0.0003048535,0.0048204404,0.01737075,0.0034901705,-0.013949239,-0.011717819,-0.008610995,0.041836273,0.032635953,0.015310978,0.04746632,-0.009509284,0.0102645345,0.013251205,0.011923796,-0.07067309,0.0017422244,0.009371966,0.029889591,0.0031983694,-0.03847198,-0.014624386,-0.005020696,0.011179988,0.0017636804,-0.0009855441,0.0018967075,-0.029431865,-0.028653728,0.019682273,0.03412357,-0.0087483125,-0.015093557,-0.0057959715,-0.016443852,-0.028997023,-0.0068487446,0.014326864,-0.03442109,0.0025704247,-0.0297065,0.006488284,-0.000054221015,-0.01388058,-0.008359244,0.0017879972,-0.007151989,-0.010722262,0.020838033,0.003567412,0.023710273,-0.00078743394,-0.004477145,-0.010338915,0.028218886,-0.0027392118,0.0064997273,-0.001398929,0.008960011,0.01535675,0.037487864,0.032178227,-0.014647272,0.016134886,-0.012324307,0.002909429,-0.023355534,-0.013926352,-0.0038792386,0.017817033,-0.002322966,0.005595716,0.035245,-0.023046568,0.018263318,0.007918682,0.027784046,-0.0019553537,0.00086753623,-0.008639602,0.009732426,0.0029466194,0.0015991847,-0.012598943,-0.022096785,-0.019041454,0.0038763778,-0.002923733,-0.020975353,0.024145113,0.027280545,-0.014956239,0.018000126,0.0011514702,0.029981136,-0.015974682,-0.006265142,-0.012415852,-0.03959341,0.004700287,0.027211886,-0.015551284,0.015745819,-0.025838705,-0.041492976,0.05845177,0.0028493523,0.00047381927,-0.008965733,0.011912352,0.02348141,0.03883816,0.011591943,-0.005246699,0.00028929795,0.062800184,-0.009537892,0.016272204,0.050487317,0.034283772,0.012106886,-0.0095436135,0.006448233,0.020437524,0.00074309163,-0.015196546,-0.007832858,0.015505511,-0.019327534,0.018858364,0.009812528,-0.018640943,0.0056271846,0.0033213836,0.006642767,-0.043758728,-0.022749046,0.0027163252,-0.03448975,0.0050550257,0.015322421,-0.001032032,-0.024213772,0.0028336179,0.028791046,-0.011448904,-0.013136772,0.08641891,0.007970177,0.0047346167,-0.0041367104,0.0009412017,-0.025289431,0.041332774,-0.02474016,-0.0021270015,0.028539296,-0.011231483,-0.01765683,-0.0010084304,0.0020039873,0.014578613,0.0011786477,-0.013983568,0.007283585,0.025289431,0.054973047,0.014052227,-0.0075696646,-0.027074568,0.014132329,-0.001301662,-0.014361193,-0.010739426,0.0012015341,-0.011323028,-0.005793111,-0.008427903,0.021398751,0.016260762,0.032635953,-0.009652324,-0.0073636877,0.005641489,-0.021284318,0.00068551814,0.029111454,-0.02118133,-0.007174875,-0.00891996,-0.0062308125,0.012232762,-0.029569183,-0.010127216,-0.009886909,-0.047924045,-0.013617386,-0.009537892,0.019052899,0.0017579588,0.010676488,0.016180659,-0.0091087725,0.011551892,-0.03870084,-0.020311648,-0.011088443,-0.03467284,-0.006820136,-0.03151452,-0.014761705,0.06399027,-0.05771941,0.011157102,-0.006659932,0.008771199,-0.019133,-0.038243115,0.017279204,-0.0006923125,-0.010745148,-0.035428092,-0.005449815,0.0013367067,-0.04801559,-0.018892694,-0.01567716,0.03991382,0.014246762,-0.034352433,-0.0013481498,0.037098795,-0.015253762,-0.00798162,-0.011740705,-0.011340193,0.010007063,0.020620614,0.008405017,0.032750387,0.015894579,-0.00417104,0.008639602,-0.026365092,-0.0002458496,-0.022771932,0.034855932,-0.019247431,0.002593311,-0.009125938,0.015139329,-0.014761705,0.001963936,-0.0119924545,0.0018352004,0.0669655,0.0064139036,-0.00005784171,-0.036709726,-0.01683292,-0.016466739,0.018045899,-0.01790858,-0.000884701,-0.026891477,0.023412751,0.00884558,-0.018457852,0.051723182,0.01769116,-0.030621955,0.00060398545,0.0055356394,0.0074895625,0.055247683,0.013525841,-0.007272142,-0.027372092,0.018801147,-0.008296307,0.0069460114,0.006631324,0.005735895,-0.01388058,0.0013245483,-0.0054326504,-0.035634067,0.0026276407,0.013388523,-0.016455296,-0.033642955,-0.02007134,-0.005401182,0.042385545,0.003678983,-0.02208534,-0.060648866,-0.0076039946,-0.020952467,-0.0078099715,0.033597182,-0.013125329,-0.011603386,0.036869932,0.010808085,0.0012122621,0.015768705,-0.03506191,0.006780085,-0.021444524,-0.004954898,0.0075067272,-0.008799807,0.015127886,-0.048336,0.0027477941,0.045360774,0.0020325952,0.027875591,0.016489625,0.02272616,-0.017714046,-0.012358637,0.021021126,0.010928239,-0.012885023,0.002548969,0.009217483,-0.023824705,-0.0042482815,0.01985392,-0.0028135923,0.0006933853,-0.027738273,0.007151989,0.041767616,-0.00938913,0.019396193,0.025953136,0.020105671,-0.022199772,0.0057387557,0.006894517,0.023618728,0.002690578,0.0025947415,-0.014876137,0.014120886,0.007941568,-0.004834744,0.002693439,-0.012015341,0.037281886,-0.0135716135,0.008490841,-0.012896466,0.043163683,-0.013411409,-0.018217545,0.03991382,-0.01805734,-0.017359307,-0.038746614,-0.005973341,0.022108227,-0.013651716,-0.020620614,0.00073737005,0.013617386,-0.017450852,-0.0074323467,0.015814478,0.013869137,0.0054069036,0.036366433,0.014464182,-0.012782034,0.015940353,-0.0001864881,0.023893364,0.034718614,0.05300482,0.0049835057,0.0008224787,-0.008336358,0.02373316,0.01237008,0.009280421,-0.0062193694,-0.023149557,-0.04286616,-0.01737075,-0.03737343,0.008015949,0.00031164792,-0.034901705,-0.02290925,0.0009941264,0.0000636527,0.067423224,-0.007312193,-0.006740034,0.008141824,0.017313534,0.0028107315,0.06939145,0.00492629,0.013159659,0.019876806,-0.03410068,-0.020254431,-0.01794291,-0.0033814602,0.021341534,-0.029637842,-0.03538232,-0.01844641,0.018045899,0.022462966,0.033505637,0.018560842,-0.044216454,0.016169216,-0.009377687,-0.04584139,-0.002980949,0.0039965315,-0.022565955,-0.00040873614,0.022760488,-0.01007,0.0111227725,-0.022279875,-0.012175546,0.04343832,0.019384751,-0.021272875,0.0067228694,-0.012072557,-0.013033784,0.009743869,0.03208668,-0.008839858]},{"id":"interface-APIVanityURL","type":"interface","source":"main","text":"Interface: APIVanityURL\nDescription: Response from GET /guilds/{id}/vanity-url\nProperties: code: string | null, uses: number","meta":{"url":"/docs/typedefs/APIVanityURL"},"embedding":[-0.06881055,-0.00583793,0.0015942631,0.0039124913,0.014257487,-0.020788575,-0.04837934,0.025434272,0.076401405,0.022008533,0.0064817965,-0.02507691,0.00956866,-0.04697454,0.016919214,-0.012273516,-0.026937656,0.020689992,-0.013776897,0.018767634,-0.005572989,-0.023240814,-0.011583438,0.05545263,-0.027455213,0.016056618,-0.017818779,0.012304323,-0.0049322033,-0.048896898,0.027874188,-0.025360337,0.052593738,0.03056056,0.002273558,0.02893395,0.070880786,-0.0009226702,0.019913655,0.004192835,-0.0011229158,0.008274765,0.025680728,0.0028234632,-0.022131762,0.022760224,-0.0072951014,0.005834849,-0.013370246,-0.0066050244,-0.017190315,-0.008163859,-0.06343781,0.043622736,-0.02967332,-0.017646259,-0.0034965964,0.022563059,-0.03223646,-0.004266772,-0.036031887,-0.017042441,0.006648154,-0.018213108,0.035243228,0.010609937,-0.025754666,0.06565592,0.057769317,0.010690034,0.026567971,0.03376449,-0.009057263,0.024670258,-0.014738076,0.036648028,-0.039605502,0.020049207,-0.00029959824,-0.06230411,-0.0011414,0.020566765,-0.046678793,-0.06920488,0.008490413,0.011725151,-0.010308028,-0.026050413,-0.009463916,0.066148825,-0.027775606,-0.0036629543,-0.07147228,0.0068268348,-0.016142877,-0.0097103715,-0.028638203,0.031078119,-0.0016373929,0.07871809,0.050424926,-0.020825543,-0.022846485,-0.0007305114,0.008681417,0.0009889052,-0.0032593824,0.00020159342,0.01101659,-0.013210049,-0.09123806,0.0025061509,-0.011059719,-0.0011275368,-0.005459003,0.024460772,-0.012704814,0.0006993193,0.014799691,-0.054417513,-0.059938133,0.0014409982,0.06649386,-0.020850189,-0.044312812,-0.0047350386,0.001760621,-0.03977802,-0.036376927,-0.009648758,0.050572798,-0.008958681,-0.012926624,0.043006595,-0.005733186,-0.025730021,0.000759393,-0.030831663,-0.05658633,0.0076586246,-0.014220519,-0.016906891,0.04569297,-0.005172498,-0.038570385,-0.017621614,-0.01730122,-0.004725796,-0.017831102,-0.004661102,-0.065212294,0.035046063,-0.023068294,-0.034306694,-0.010295705,-0.037436686,-0.008946357,0.00922362,-0.05017847,-0.017239606,0.027874188,-0.047738552,0.025730021,-0.04320376,-0.01303753,0.004987656,0.03191607,-0.0010743947,-0.036450863,0.036031887,0.0077325613,-0.023770694,-0.033049766,-0.024152702,-0.0009280614,-0.004266772,-0.023253135,0.014799691,0.011417081,0.0038570384,0.037190232,0.02186066,0.013394891,-0.025052266,-0.03051127,0.017486062,-0.02449774,0.0113677895,0.0036075017,-0.010055411,-0.028342456,0.00329327,0.014614848,0.051854372,0.024583999,-0.0035027578,0.0018961718,-0.021934597,-0.004272933,0.012174933,-0.01699315,0.0028819963,0.06861339,-0.019482357,0.0036321473,-0.020492828,0.027159465,-0.056832783,0.016648112,0.07452834,0.00072820083,0.010221768,0.01940842,0.011256884,0.0018915508,-0.02208247,0.044460688,0.03854574,0.035810076,0.018767634,-0.022686288,0.04460856,0.0039217332,-0.02208247,0.04948839,0.021700462,0.009987635,-0.0466295,-0.012667845,0.03585937,0.011953123,0.028613558,-0.059790257,-0.067233235,-0.023573529,0.02747986,0.0424151,0.051361457,0.008139214,-0.01861976,0.014565557,-0.013394891,-0.01857047,0.029278988,0.023647467,-0.03147245,0.0015881017,-0.0077941753,-0.007258133,0.05106571,0.0021980805,0.018508855,-0.0069993543,-0.011145978,0.008878582,-0.012889656,-0.059593093,0.009205136,0.015181698,-0.027011592,0.029254343,0.0029436105,-0.038225345,0.013616702,-0.008884744,0.024337543,-0.017104056,0.0009673403,-0.027553795,0.016795985,-0.025052266,-0.026001122,0.08374579,-0.017313544,0.015304926,-0.017954329,0.03534181,0.02651868,-0.0020656104,-0.026025768,0.0011683562,0.021121291,-0.018669052,0.07398613,0.0070055155,0.02607506,0.022932744,0.0149968555,0.018348658,0.022587705,-0.017794132,0.07354251,0.04438675,-0.031053472,0.010351158,0.043105178,0.0634871,-0.022649318,0.102230005,0.032063942,0.023635143,-0.0076894313,0.026395451,-0.021478653,-0.009266751,0.009112716,0.044657853,0.038176056,-0.03943298,-0.046383046,0.059543803,0.0061798873,-0.05495972,0.03662338,-0.037831016,-0.018360982,-0.039260462,0.012224224,0.0034873544,-0.0048675085,0.02406644,0.010874877,-0.026494034,0.0041835927,-0.03324693,-0.04044345,0.0019161964,-0.033789136,0.00037199474,0.009962989,0.03943298,-0.025409628,0.030634498,0.028441038,0.007633979,-0.005345017,-0.0032408983,0.03758456,0.016635789,0.028268518,0.015871774,-0.05466397,0.0056561683,-0.017917361,0.016980827,0.009544014,-0.028342456,0.008656772,0.019630231,0.0057485895,-0.027110174,0.012575424,0.020554442,-0.021688139,-0.04837934,-0.077436514,0.046777375,-0.024263605,-0.055551212,0.019248225,-0.03196536,-0.035588264,-0.0034164982,0.007178035,-0.020431213,0.030043002,-0.002444537,-0.037658498,0.03512,-0.06176191,-0.04369667,0.0161552,0.0012538456,-0.06669103,-0.00015817478,0.01861976,-0.037658498,0.006660477,0.027948126,0.007424491,0.019728813,0.03775708,-0.057374988,-0.0063277613,0.0339863,-0.021552589,-0.00063693506,0.015576027,-0.06501513,-0.001373993,-0.0032593824,-0.0012638578,-0.024165023,-0.055354048,0.00010108553,-0.009507045,0.03982731,0.002906642,-0.008145375,0.023376364,0.045052182,0.03196536,-0.026247578,-0.038348574,0.019593263,0.000579557,-0.029796546,-0.02550821,0.029278988,0.0030961053,-0.0032254946,0.0057485895,0.022846485,-0.016980827,0.056093417,-0.033394806,0.04017235,-0.04130605,0.0323104,0.026740491,-0.026740491,0.045323282,-0.0034842736,-0.03179284,0.017091732,-0.016204491,0.0052033053,0.00016202565,-0.027331986,-0.046604853,-0.04882296,0.009722695,0.041034948,-0.022797192,-0.004926042,-0.023302427,0.057177823,-0.01536654,0.007621656,0.042513683,-0.008397993,-0.030585207,-0.03253221,-0.034134176,-0.023105262,-0.002059449,0.07216235,-0.03622905,0.060578916,-0.027233403,0.0050030597,0.017769488,-0.026986947,0.055206176,0.0009450052,-0.011614245,-0.041897543,0.021983888,-0.030314105,0.019297516,-0.01203322,-0.013764575,-0.0073813614,0.04253833,0.0328526,-0.025311045,-0.049340516,-0.0052033053,-0.02098574,-0.03613047,-0.013530442,0.00017088267,0.044411395,0.0028635121,0.008484253,0.015773192,-0.007923565,-0.009593305,-0.023364041,0.0068206736,-0.022378217,-0.016574174,-0.037683144,-0.026025768,0.027208757,0.10124418,0.018471887,0.008927873,-0.017116379,-0.010893361,-0.0028157614,0.0011013509,0.0067282524,-0.013222371,0.0051509333,0.036721963,-0.014762723,-0.003051435,0.0325815,-0.012051705,0.004882912,-0.04865044,0.00952553,0.0040141544,0.06112112,-0.013801544,0.017362835,-0.015243312,-0.030585207,0.0078249825,-0.02160188,0.0007824982,-0.017596968,-0.035982594,-0.04271085,0.020295663,-0.0426862,-0.008176182,0.0019839718,0.017535353,-0.014540912,-0.012778751,0.023031326,-0.017362835,0.008268603,-0.003989509,-0.021626526,-0.054466806,-0.020406568,0.017338188,-0.046383046,-0.014454653,0.04096101,0.018582793,-0.019790428,0.010043087,0.011121333,0.0026309192,0.027060883,0.00012428706,-0.004999979,0.00014999167,-0.0017452175,0.018200785,-0.047344223,-0.004158947,-0.018040588,0.0025877894,0.020776251,0.011484856,0.035834722,-0.013111467,-0.02278487,-0.0045255506,-0.014848982,0.008816969,0.045520447,-0.030240167,0.022452153,0.024214314,0.007763368,-0.023166876,0.05229799,0.0015572947,-0.018336337,-0.010850231,-0.00829941,0.049414456,-0.0030129263,-0.013357922,0.016882244,0.0144916205,0.00040126138,0.019038737,0.014701108,0.005902624,-0.002216565,0.035711493,0.04303124,0.051213585,-0.0011421702,-0.021330778,0.030067649,0.03393701,-0.025680728,0.03376449,0.02792348,-0.026148995,0.02173743,0.02475652,-0.010400449,0.027997417,-0.0171287,0.028810723,-0.009377656,0.0038385543,0.009698049,-0.010018442,-0.018779958,0.0061614034,0.024374511,0.022193374,0.018336337,-0.0056623295,0.025656084,0.02463329,0.0015958034,0.025384981,-0.019925978,0.009494723,-0.008934035,0.002116442,-0.021256842,-0.03243363,-0.03903865,0.011145978,-0.017276576,0.019839719,-0.01110901,-0.02765238,0.02932828,-0.0037492139,0.008749193,0.0036290665,-0.00658654,0.0018484211,-0.03359197,-0.07004283,-0.049069416,-0.003428821,-0.0015619157,0.0026247578,-0.039260462,-0.037510622,0.012365936,0.020813221,-0.02607506,0.03894007,-0.021564912,-0.0151200835,0.024128055,-0.010991944,0.052100826,-0.0145778805,-0.0021010386,-0.033961654,-0.0024753439,0.0004921421,-0.04130605,0.021725109,0.00039355963,-0.0064078593,-0.027455213,-0.010702358,0.010110863,0.012926624,-0.036721963,0.045298636,-0.047566034,0.013875481,-0.016635789,0.009950667,0.012279677,0.0018869297,-0.034035593,-0.0010304947,0.021133613,0.01756,-0.029007887,0.01940842,0.02305597,0.047319576,-0.012643199,0.024226638,0.014885951,0.013431859,0.006913095,-0.034676377,-0.021552589,-0.01009854,0.00838567,-0.013900126,-0.02910647,-0.008502737,0.01536654,-0.0009827438,0.01576087,-0.0018869297,0.014011031,-0.0111583015,-0.027874188,0.054811843,-0.0046333754,0.012840364,-0.0061521614,-0.0076031717,0.0042944984,0.026420098,-0.011657375,0.0334441,-0.009463916,-0.0035551297,0.012667845,-0.028638203,0.0008394912,0.04473179,0.038521092,-0.0132346945,0.0024306737,-0.024768842,-0.04904477,0.02765238,-0.06314206,0.016808309,-0.028391747,0.03376449,-0.020123143,-0.03245827,0.0029359087,-0.0021072,0.012014736,0.0073998454,-0.04500289,-0.0060474174,0.02348727,0.020837866,-0.011737473,0.02393089,0.024596322,0.0072827786,-0.010646905,0.026370807,-0.04066526,-0.004904477,0.022760224,0.027750961,-0.01756,0.026222933,-0.015329571,0.00036929912,-0.022415185,0.013320954,-0.024583999,-0.01756,-0.034651734,0.013197726,-0.0016743614,-0.018853894,-0.034306694,-0.015921066,0.02590254,0.008182344,0.0062661474,-0.019543972,-0.0079297265,-0.028169936,0.051262874,0.00006166217,-0.04004912,0.0220455,0.012427551,-0.0189648,0.01668508,0.032162525,0.03196536,-0.007147228,-0.016524883,-0.019925978,0.008853937,0.014158905,-0.022895776,-0.00061845087,-0.05343169,-0.01080094,0.03775708,-0.051262874,-0.06728253,-0.012988239,0.013875481,-0.008971003,0.005668491,-0.000047630536,0.0015703876,-0.010431256,0.03359197,-0.023166876,0.039851956,-0.0095008835,0.011934638,-0.016943859,-0.030264813,0.03270473,-0.0019439227,-0.031225992,0.012840364,0.0053850664,0.011213754,-0.08630894,0.00049714826,0.029747255,-0.007652463,0.0031238315,0.0031053473,0.0028681334,-0.0013046771,-0.051460043,-0.012446035,0.013074498,-0.0139494175,0.01743677,-0.021922274,0.04029558,-0.0069439015,0.023869276,-0.024300575,0.052445866,0.013616702,0.0019916736,0.044362105,0.020653024,0.014553235,0.021675818,0.008083761,0.008946357,0.020246372,0.057128534,-0.059938133,0.0005352719,0.021638848,-0.02278487,-0.03433134,-0.024485417,-0.010770133,-0.010197123,0.009802793,0.0018345579,0.0053635016,-0.0018099123,-0.019901333,-0.03349339,0.008040631,-0.005431277,-0.002963635,0.013333277,0.018422596,-0.041281402,0.027874188,-0.007954372,-0.0019331403,0.012828042,-0.02173743,-0.029476153,0.0075538806,-0.007011677,0.004722716,-0.04293266,-0.041503213,0.020542119,0.004091172,0.025754666,-0.034405276,0.021638848,-0.017523032,-0.014146582,-0.0059827226,0.031644966,-0.0048613474,-0.020036884,0.029821193,0.027258048,0.00460873,0.018866217,0.027948126,0.0020702316,0.0070979367,0.011256884,-0.025384981,0.03797889,-0.024004828,0.036426216,0.048625797,0.032655437,0.018582793,0.007578526,0.00741833,-0.014109613,-0.041084237,0.0039402177,-0.006783705,-0.0021703544,0.037559915,0.001703628,0.0020255614,0.04231652,0.008595157,-0.018829249,0.0010528298,0.021897627,-0.0047412,-0.01483666,-0.02405412,-0.005834849,-0.022735579,-0.005671572,0.017313544,-0.020110821,-0.0019593262,-0.017412126,0.016192168,-0.026296869,0.016537206,0.0069377404,0.0057023787,0.01940842,-0.00073821313,-0.001159114,0.008102246,0.0012099455,0.014799691,-0.010893361,-0.017954329,0.021897627,0.013456505,-0.0051386105,-0.021047354,-0.050252404,0.0017313544,-0.029969066,-0.010622259,0.0033117542,-0.0039124913,0.0065495716,-0.028046709,-0.00041204385,-0.025705375,-0.046530917,-0.0367959,0.015551382,-0.0076647857,0.037116293,-0.036943775,-0.0053049685,0.03854574,-0.0034965964,0.02502762,0.0043561123,-0.034282047,0.00012679012,-0.037116293,-0.021971565,0.021848336,0.004670344,0.033296224,-0.020776251,-0.027331986,-0.0046826666,0.03455315,-0.022020856,0.046678793,0.012279677,-0.007362877,0.005606877,-0.021145936,-0.008003663,-0.0038323929,-0.020702315,0.04973485,0.007695593,0.0073443926,0.048083592,-0.03169426,0.027060883,0.0031330737,0.006176807,-0.003736891,0.06812047,0.008588997,0.0015580648,-0.014393038,-0.021626526,-0.021392392,0.041158173,-0.011127494,0.018151494,-0.025458919,0.0020794736,-0.03179284,0.011133656,0.05382602,0.02792348,0.0144916205,-0.0053665824,-0.0064078593,-0.003367207,0.0075600417,-0.0025800876,0.027159465,0.043105178,0.0022658561,-0.0048767505,-0.009852084,0.00052256405,0.0026031928,-0.046925247,0.018052911,0.0063647297,0.02089948,-0.035711493,0.0032809472,-0.01629075,0.026469389,0.00329327,0.016832953,-0.034972124,-0.04197148,-0.009771986,-0.020073852,0.043573443,0.0012684789,-0.00087029824,0.03573614,-0.041725025,0.014442329,-0.017276576,-0.008268603,0.0038570384,-0.000110808985,0.006734414,-0.00005294956,-0.046678793,-0.0049722525,0.0040850104,0.030609852,0.018151494,0.009383817,0.02792348,-0.010049249,0.035095353,0.0084719295,0.0062076137,0.0011475614,0.0013847754,-0.0014933702,0.016142877,0.033887718,0.019470034,-0.0035089192,-0.009882891,-0.0027680104,-0.010954975,0.034282047,0.0077263997,-0.0070548067,0.0028003578,0.0069254176,-0.0009165087,0.01251381,-0.0108440695,0.0027603088,-0.026740491,-0.0037153263,-0.014824336,0.01260007,0.01629075,-0.00465494,0.034010947,0.051952954,0.029969066,-0.012020898,0.01641398,0.035662204,-0.030930245,-0.009895214,-0.01769555,0.000970421,0.010918006,0.014232841,-0.044115648,-0.023105262,0.010418933,0.0021087404,0.0077263997,0.015107761,-0.02893395,0.014134259,0.0036629543,-0.0064386665,0.011540309,0.011620407,0.03095489,-0.043253053,0.0152926035,-0.015995003,-0.001430986,-0.0050554313,0.009808954,0.013752252,-0.042908013,0.027405921,0.014442329,-0.01044974,0.02098574,0.009038779,0.039531562,0.010018442,0.0088724205,0.030363396,0.026420098,-0.039408337,-0.0021256842,0.0059704,0.025286399,0.028022062,0.03657409,-0.040640615,-0.042119354,0.021823691,-0.01167586,-0.024768842,-0.012593908,0.004100414,-0.0006326991,0.0040942524,0.009537852,0.009845923,0.040468097,-0.042908013,0.030807016,-0.009765824,-0.0010251035,0.026025768,-0.035662204,-0.01874299,-0.00039509998,0.011595761,0.02590254,-0.055255465,-0.006133677,-0.004158947,0.002159572,-0.01185454,-0.0022658561,-0.005335775,-0.008311733,0.021170583,0.034479212,-0.0037245683,0.046604853,0.027381277,0.0220455,0.0044639367,-0.0009057263,0.035908658,0.035440393,0.013665993,-0.02432522,0.014121937,-0.0071164207,0.0015133946,0.008743031,-0.035686847,-0.00024048728,-0.017584644,-0.0041158176,0.036302987,0.02713482,0.03292654,0.012778751,0.0008525842,0.01202706,0.01944539,-0.0031669613,-0.03191607,0.04004912,0.02893395,0.028884659,0.028441038,-0.029205052,0.015933389,-0.016709726,-0.008373347,-0.004035719,-0.025039943,0.015304926,0.0171287,0.02520014,-0.002902021,0.042735495,-0.03955621,0.024731873,-0.014565557,-0.013370246,-0.0045255506,-0.007011677,-0.007270456,0.010240252,0.0016096666,-0.01668508,0.017227285,0.011860701,-0.0015788596,-0.0013493473,-0.02502762,0.025730021,0.011343144,-0.017449094,-0.019235902,0.012316645,0.033025123,-0.03494748,0.012741782,0.039975185,0.02747986,0.0044670175,0.014245165,-0.010301867,0.011509501,0.026937656,-0.013012884,-0.006641993,-0.014935242,0.0020779332,-0.014306779,0.01988901,0.006734414,-0.021614203,-0.0038755226,0.00021083553,-0.011552631,-0.0152926035,-0.0040665264,-0.033739846,0.012526133,0.0067282524,0.0067159296,-0.030856308,0.016179845,-0.02765238,-0.016512562,-0.0072273263,0.010998105,-0.010727003,0.017017797,0.024115732,0.009328364,0.0062723085,0.012452196,-0.021983888,0.016869923,0.0047011506,0.007301263,-0.010505193,0.006028933,0.0024583999,0.0051170457,-0.003924814,-0.0031068877,-0.00086644734,-0.006752898,-0.012051705,-0.023856955,0.020381922,-0.012304323,0.007942049,-0.027874188,-0.026198287,-0.005289565,0.014651817,0.012865011,0.008046793,0.008786161,0.00034831182,0.014479298,-0.005834849,-0.00038970876,0.029870484,0.011583438,-0.007997502,-0.014171228,0.017498385,-0.0040018316,0.007307424,-0.007011677,-0.027381277,-0.024275929,-0.03275402,-0.0012438333,0.0042390455,-0.012242708,-0.011035074,-0.0022350491,0.021269165,0.012082512,0.026296869,0.011860701,0.0068206736,-0.012458358,-0.03516929,-0.015181698,-0.013468828,-0.025187816,0.052938778,-0.0049691717,-0.0001341068,0.040887073,-0.0117682805,-0.010123186,0.012754105,-0.011343144,0.0060350946,-0.016894568,0.029796546,-0.017449094,-0.020566765,-0.029057179,-0.0025847086,0.011250722,-0.005659249,0.007905081,0.0042390455,0.026444742,0.0067775436,-0.01742445,0.002344414,0.009913698,-0.030092293,-0.024386834,-0.01848421,0.011380112,-0.0039402177,0.013629024,0.0010266438,0.021688139,0.008478091,-0.007516912,-0.004232884,-0.024128055,0.012563101,-0.05382602,-0.002778793,-0.022661641,-0.018595116,-0.0362537,0.02937757,-0.0025461998,0.03689448,-0.0052033053,-0.022439832,0.045988716,0.004781249,0.004947607,0.023166876,0.003367207,0.0069377404,0.033049766,0.012002414,-0.015995003,-0.035317164,0.017596968,0.041725025,0.0062692277,-0.009679564,-0.0022812595,-0.0071595507,-0.012230386,-0.008114568,0.0606775,0.02937757,0.016968505,-0.029451508,-0.04105959,0.024559354,-0.0283671,0.015908744,0.002757228,-0.014602526,0.042119354,-0.015107761,0.0145778805,-0.021872982,-0.03758456,0.00043977017,-0.03056056,-0.02235357,-0.015452799,-0.020874834,0.053875312,0.012174933,-0.02814529,-0.014405361,0.018052911,-0.038052827,-0.0027295016,0.009531691,-0.0063955365,-0.036993064,0.01598268,0.015489768,0.02146633,0.012298161,0.009032617,-0.027824897,-0.024177346,0.007917403,-0.02612435,0.018373305,-0.0011691262,-0.01435607,0.0034041754,-0.0019685684,-0.025606792,0.019433066,0.008638288,-0.0060782246,0.010911846,-0.023524238,-0.026567971,0.0017698631,-0.015341895,-0.022316603,0.032113235,-0.017633937,-0.007412168,0.0036968421,-0.0034534666,0.0058194455,-0.02747986,-0.023142232,0.043277696,0.026099704,0.046999186,-0.011170624,0.023918567,-0.03640157,-0.013727606,0.04298195,0.007030161,-0.0014009491,-0.025680728,-0.012926624,-0.019174287,-0.0017221122,0.010400449,0.0295008,0.013000561,0.012914302,-0.02115826,-0.0010027684,-0.02932828,0.020517474,0.0033487228,-0.014910596,-0.019334484,-0.0025184737,0.014109613,-0.023031326,-0.0029975227,0.0010058491,-0.045939423,0.021971565,0.011145978,0.023647467,-0.0003666035,-0.016007327,0.051509332,0.022365894,0.010258737,-0.0035335647,0.0161552,0.016340042,-0.011201431,0.01773252,0.007898919,0.0015865613,0.024337543,0.032063942,0.0050831577,-0.025532855,0.009470077,0.0106345825,-0.012261192,0.0034534666,0.020677669,-0.011004266,0.0023706,-0.0025800876,-0.033049766,0.016130554,-0.042217936,-0.006475635,-0.012612393,0.00838567,0.026198287,0.03600724,-0.0026986946,0.028958596,-0.026494034,0.05377673,0.038718257,0.014442329,0.0231792,-0.018915508,-0.029771902,0.0070178383,-0.015157052,0.0010458982,-0.013998709,-0.045421865,0.0033949332,-0.023462623,0.009100392,0.010166315,0.07635211,0.005338856,-0.0342574,-0.006703607,-0.007911242,0.0058163647,-0.0145778805,-0.037781727,-0.012815719,0.026715845,-0.0011113632,0.010221768,-0.022020856,-0.016487915,-0.015255635,0.012667845,0.0052125473,0.033000477,-0.00047750876,0.014553235,0.007467621,-0.02208247,-0.002330551,0.03689448]},{"id":"interface-APIWebhook","type":"interface","source":"main","text":"Interface: APIWebhook\nDescription: Webhook from GET /channels/{id}/webhooks (includes token) or GET /webhooks/{id} (no token)\nProperties: avatar: string | null, channel_id: string, guild_id: string, id: string, name: string, token: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/APIWebhook"},"embedding":[-0.03994716,0.008520348,-0.027873099,0.002360222,0.006845179,-0.039369147,0.03350338,0.006320685,0.052106854,0.009654967,0.025132885,0.013679654,-0.012427292,-0.032732695,0.0058604153,-0.0020765672,-0.039476186,0.024041083,-0.042773005,0.001672493,-0.0033663937,0.0097727105,0.008531052,0.04076066,-0.0065882844,0.04427156,-0.052963167,0.020316105,-0.021771844,0.0140328845,0.008327677,-0.017372519,0.028793639,0.0243622,0.0051271943,0.018111091,0.01166731,0.0073750247,0.0062671653,0.0032459742,-0.01673028,0.007717551,-0.002111355,0.03806326,-0.014760754,0.034638,-0.03894099,0.035494313,-0.02335603,0.010827051,-0.043672137,-0.026845518,0.010297204,0.051978406,-0.0082581015,-0.023377437,-0.00952652,-0.013133752,-0.051079273,0.00025538966,-0.024212345,-0.03695005,0.013733174,-0.039711673,0.0069361627,-0.0060423827,-0.054418907,0.00993327,0.018111091,-0.011517456,0.09505112,0.014621602,-0.021525653,0.018143203,0.0039551114,0.023784187,-0.059685253,-0.0017219987,-0.0021715648,-0.046241086,-0.04812498,0.007310801,-0.09530801,-0.04803935,-0.011271264,0.0047900197,0.0036072328,-0.028815046,-0.0032325943,0.0025301473,-0.02213578,-0.007615864,-0.08563164,-0.02498303,0.019117264,-0.018956704,0.0023053642,-0.019845132,-0.03399576,0.024212345,0.04146712,-0.008386549,-0.076040894,0.0055928165,0.014867793,-0.04769682,0.043607913,0.0023909959,-0.008841467,-0.037892,-0.05621717,-0.0227352,-0.0419595,0.030784573,0.0018785441,0.0072679855,0.03472363,0.011378304,0.0038855355,-0.040525172,-0.03821312,-0.003353014,0.04739711,-0.028108586,-0.0019588238,0.018496433,-0.056859408,0.03448814,-0.05673096,0.00050509284,0.021065382,0.020401739,0.020508777,0.030335007,-0.00024418396,-0.034959115,-0.012266732,0.004522421,-0.034852076,-0.010971554,0.008755835,-0.037592288,0.027337901,-0.022820832,-0.024833174,0.005014803,-0.017533079,0.035173196,-0.0035403331,-0.04240907,-0.037292577,0.009473,0.01572411,0.0024966975,-0.0043672137,0.006459837,-0.030998653,0.01093409,-0.027081005,-0.035001934,0.009654967,-0.03206905,0.004278906,-0.004645516,-0.02817281,-0.022007331,0.024747543,0.013636839,-0.029885441,0.019663164,0.0024752896,-0.0219217,-0.05921428,-0.005913935,-0.024640504,-0.027016781,0.003754412,-0.05591746,-0.051635876,-0.0047953716,0.045127872,0.036222182,0.0014450339,-0.04095333,-0.04037532,0.024854584,-0.012619963,0.013957957,0.025689492,-0.025989203,-0.00081283157,0.018004052,-0.00058905204,0.013968661,0.02213578,-0.012459404,0.0046294606,-0.027316492,0.030977245,-0.014375411,0.038726907,-0.02333462,0.031191325,-0.017715044,-0.018004052,0.008429364,0.0057961917,0.00065327575,-0.02416953,-0.016794505,0.012769818,-0.01675169,0.04525632,-0.027081005,-0.068676576,0.013583318,0.0012470108,0.03859846,-0.016259307,-0.030634718,-0.04427156,0.018357283,0.013197976,-0.021290166,-0.0043591857,0.016623242,0.004701712,-0.031212732,-0.011817166,0.005929991,-0.031062877,0.024405017,-0.0019481197,-0.025346965,-0.027487757,0.012941081,0.03919788,0.05099364,0.007856702,-0.024041083,-0.016280714,-0.03536587,-0.028258441,0.03361042,-0.015831148,0.00025438616,0.030977245,-0.03472363,0.0057961917,0.00668462,0.056474067,0.04701177,-0.01696577,0.036286406,0.02693115,0.02765902,-0.025132885,0.022200001,0.007856702,0.010955498,0.078053236,-0.021771844,-0.023591517,0.060841277,0.007246577,-0.011335488,0.018346578,0.035194602,-0.016441274,0.018614177,0.012780522,-0.01818602,0.059856515,0.00058202754,-0.039583225,0.011057185,0.0071502416,0.0029489396,-0.03001389,-0.0062671653,-0.025475413,0.04125304,-0.013883029,0.0893138,0.004013983,0.024704728,0.0303136,0.027573388,0.036564708,0.029264612,-0.02124735,0.06049875,0.007155594,-0.042451885,0.0051218425,0.07372884,0.058400776,0.009248217,0.0941948,-0.0039390554,0.007792479,0.006160126,-0.023377437,-0.04598419,-0.003323578,0.0009245541,0.011292673,-0.008632739,-0.019160079,-0.04380058,0.023805596,0.032197498,-0.026331728,0.014343299,-0.049495086,0.0016484091,0.033546194,0.022007331,0.0010155378,-0.0013781341,-0.019877244,0.01903163,-0.030591903,-0.026288914,-0.011785055,-0.045427583,0.0008703653,-0.01602382,0.016494794,0.018014755,0.01336924,-0.040097013,0.001651085,-0.0033663937,-0.0023950099,-0.012127581,-0.023891227,0.005667744,-0.006647156,0.023034912,0.04148853,0.006706028,-0.019727388,-0.014343299,-0.029500099,-0.0070217946,-0.014964129,0.015477919,-0.012256028,0.009922566,0.0038293398,-0.013925845,-0.034959115,-0.03778496,-0.05343414,-0.03806326,0.018357283,-0.007348265,-0.035151787,0.013818806,-0.011121409,0.015734814,-0.0051432503,0.017982645,0.0124701075,-0.036008105,0.033717457,-0.020958344,-0.023934042,-0.060798462,0.045427583,-0.013626134,-0.0016296771,-0.022007331,-0.0013453533,0.0065133567,-0.01956683,0.04313694,0.005887175,-0.013240792,0.05099364,-0.005440285,0.016013116,-0.026438769,-0.006668564,0.0026104269,-0.024212345,0.04268737,-0.04350087,0.01572411,0.006722084,-0.035772618,-0.024233753,-0.010586211,0.029714178,-0.021493541,0.023463069,0.00075329083,0.0007994516,-0.03461659,0.003569769,0.03536587,-0.022521121,-0.021065382,0.005164658,-0.0027669724,-0.021129606,0.025454005,0.049495086,-0.0016992529,-0.010538043,0.02243549,-0.0025395132,0.027209453,0.027123822,-0.025068661,-0.0053519774,-0.068077154,0.04555603,0.06850531,-0.023505885,0.021514948,-0.022200001,0.0048836796,-0.033118036,-0.0018544602,-0.00026876963,0.016676761,-0.0141292205,-0.04825343,-0.032968182,0.0026907066,0.045299135,-0.02939306,0.031105693,-0.04037532,0.051378984,0.0017969264,-0.032133274,0.049709167,-0.03172652,-0.017629413,0.0038346918,0.010645083,-0.022563936,-0.0064170207,0.0341028,-0.0641381,-0.060798462,-0.013412056,0.0006408993,-0.03718554,0.012480811,0.03380309,0.0060102707,-0.045770112,-0.024041083,0.069575705,-0.02817281,0.01044706,-0.008001206,-0.03318226,-0.009103714,0.075184576,0.05459017,-0.0076372717,-0.017543782,0.028065769,-0.007096722,-0.012812634,0.029136164,0.020872712,0.02156847,0.015113984,-0.004212006,-0.020476665,0.032540023,0.012694891,0.0051753623,0.019877244,0.0041049668,-0.0021782548,-0.076040894,-0.022713792,0.03662893,0.120826244,0.020936936,-0.012309548,0.0051031103,0.009890454,-0.024148121,0.0034466735,-0.017190551,-0.00811895,-0.022670977,-0.0140328845,-0.05159306,0.0038828596,0.009521168,-0.008076134,-0.02498303,-0.050222956,0.008648795,0.011057185,0.04208795,-0.018475026,-0.02222141,-0.013519095,-0.03472363,0.0124058835,-0.040503766,-0.016922953,-0.017533079,0.017747156,-0.035258826,-0.00069107406,-0.040204056,0.015531438,-0.005640984,0.04178824,-0.05326288,0.038448606,0.031705115,-0.000065979846,-0.0013594022,0.018881775,-0.024619097,-0.066664234,0.0064705405,0.011089297,-0.017715044,0.006620396,-0.0021086792,-0.014364707,-0.021493541,0.010372132,-0.035901066,-0.023527293,0.028194217,-0.0063635013,-0.034466736,0.019930763,-0.023891227,0.03461659,0.005408173,0.027487757,0.0048408634,0.0023160682,0.039604634,0.033845905,-0.0021876208,-0.032989588,0.0036982163,-0.029414468,0.057929803,0.007610512,0.022649568,-0.007053906,0.014461043,0.006647156,-0.017500967,-0.006074494,0.02703819,-0.008573867,-0.009301737,0.018228834,0.023998266,-0.019363454,0.012009838,-0.01080029,0.0074071367,-0.011710127,0.017575894,0.011710127,0.022756608,0.029542916,-0.026460176,0.040418133,0.008391901,0.0046562203,-0.027637612,-0.019887948,0.01006707,0.037014276,0.00088976626,-0.016227195,-0.007969094,-0.026160466,0.018881775,0.017575894,0.03532305,0.00086501334,-0.016633946,-0.009681727,-0.02836548,0.0026866926,0.022863647,-0.015221024,-0.011710127,0.0044314372,-0.018282354,0.02416953,-0.023398845,-0.016516203,0.008156413,0.051892772,0.004945227,0.014889201,-0.042023726,0.028108586,0.019170783,0.013540503,-0.017211959,-0.0037570882,0.017586598,0.026802702,-0.005434933,-0.0065561724,-0.0002493687,0.012823338,0.0019922736,0.014653714,0.015916781,0.047782455,-0.015873965,0.0114960475,-0.008456124,-0.029542916,-0.000709806,-0.00711813,-0.012994601,0.013594023,-0.0030265432,-0.016152268,-0.041295856,-0.007840646,0.024768952,-0.022456897,-0.025539637,0.032989588,-0.005903231,0.025218517,0.019770205,-0.0045705885,0.00963356,0.012887562,-0.010115237,0.015146096,-0.02335603,0.010489875,-0.0057159117,0.01177435,0.027487757,0.00028666528,0.00944624,-0.031705115,-0.016922953,0.03204764,-0.01588467,-0.01962035,0.021332981,0.0056088725,0.0009171951,0.0063474453,0.0020056535,0.009349905,-0.0057640797,0.021332981,-0.029328836,0.0019815697,-0.01182787,0.02723086,-0.003928351,0.014750049,0.020819193,-0.03172652,0.0024605717,-0.034059983,0.014150628,0.05202122,-0.0074499524,0.007096722,-0.013112345,-0.026096242,0.021076087,-0.02146143,0.053947933,-0.0003836699,0.044014663,0.006791659,-0.0051352223,-0.009558632,0.022563936,-0.001415598,-0.005239586,0.019887948,0.023934042,0.0131230485,0.02671707,0.0114318235,-0.0067434916,-0.025625268,0.002836548,-0.009965382,-0.023377437,0.04444282,0.042751595,0.015435102,-0.015927484,-0.00019869216,-0.04279441,0.037313987,-0.016366348,-0.0015721434,-0.0065026525,0.065208495,-0.032582838,-0.015199616,0.0024873314,0.015210319,0.032411575,-0.008680907,-0.01875333,0.0008121626,0.014364707,0.0028659839,0.010088477,0.004284258,0.018314466,-0.0062457575,0.0037008924,-0.04598419,-0.020241179,-0.010901978,-0.015606366,0.035387274,-0.019213598,0.0009667009,-0.009205401,-0.0036821605,0.012834041,0.011281968,0.0022558584,0.015467214,0.017897012,0.01992006,0.0115602715,-0.012427292,-0.007647976,-0.019705981,0.012095469,0.0035992048,-0.059984963,0.013476279,-0.025454005,0.0060637905,0.018721217,-0.02671707,-0.02406249,0.0089431545,0.016205788,-0.003968491,0.017693637,0.041445713,-0.053648222,-0.01986654,-0.009344553,0.003518925,0.06490878,0.02427657,-0.049495086,-0.035515722,-0.030484863,-0.0055392967,0.06204012,-0.039369147,-0.012534331,-0.0000146970315,0.0044234092,-0.036200777,0.015456511,-0.0053921174,0.002860632,0.0017728425,0.000295864,-0.02866519,-0.021322278,0.00010879566,-0.014996241,-0.00857922,-0.049195375,0.0006592967,0.034745038,-0.029007718,-0.0019240358,0.0064330767,-0.023912635,-0.054119196,0.0057533756,0.03748525,-0.02917898,-0.0019936117,-0.034830667,-0.008509644,0.04966635,-0.0470974,-0.013454871,0.028729415,0.0055553527,0.009735247,-0.025946386,0.034959115,-0.016312826,0.01001355,0.011795758,0.025132885,0.022007331,-0.011217745,0.008391901,0.02284224,0.0454704,0.0016939008,-0.0023909959,0.011977726,0.0042039785,0.07175931,-0.033310708,-0.021429317,0.012234621,-0.02170762,-0.009745951,0.01001355,0.02979981,-0.019213598,0.02939306,-0.016976472,-0.015681293,0.0055981684,-0.030078113,-0.023955451,0.017939828,-0.012020541,0.026695663,-0.022713792,0.020219771,-0.009783415,0.030977245,-0.02089412,0.0035858247,0.015306655,-0.0018638262,-0.01659113,0.030656127,-0.022371266,-0.028386887,-0.016762393,-0.030848797,0.01959894,0.02114031,0.011474639,-0.024597688,0.013133752,-0.020005692,-0.006636452,-0.030056706,-0.011635199,0.010992962,-0.010918034,0.022050146,0.051250536,0.03996857,0.017308295,0.040803477,-0.016173676,0.011228449,0.025753716,-0.0055446485,0.019213598,-0.0015346796,0.026310321,0.017736454,0.010484524,0.02262816,-0.02170762,-0.017554486,0.0066792676,-0.041038964,-0.015039057,0.015274543,0.016205788,0.008734427,0.041124593,0.008980618,0.0044341134,-0.020797784,0.020401739,-0.035794023,0.032925364,-0.0032245663,-0.023741372,-0.03320367,-0.00048033998,-0.016922953,0.0057533756,0.038020447,0.027915914,0.0036125847,0.0017608006,0.0037570882,-0.02335603,-0.023784187,-0.05202122,0.0049024113,0.047611192,0.03337493,0.03266847,-0.001893262,-0.008514996,0.034702223,0.023120543,0.005234234,-0.0036313166,0.011271264,0.014846385,-0.019320639,0.02241408,0.0059835105,-0.05703067,0.006898699,0.007824591,0.003794552,-0.023891227,-0.011549567,0.034530956,-0.023998266,-0.08430435,0.0018531221,0.022200001,-0.006839827,-0.037228353,0.010848458,0.027980138,-0.002817816,-0.029714178,0.003580473,0.014750049,-0.03913366,-0.009183994,-0.02979981,-0.036500487,0.022992095,-0.0041076425,0.02130087,-0.010061718,0.01588467,0.00987975,0.048210613,-0.009665671,0.020712152,0.06341023,0.02170762,-0.0075355843,-0.01239518,-0.02068004,0.006722084,-0.015938189,0.025924979,-0.020690745,0.030998653,0.014568082,-0.034017168,0.014043589,0.049195375,0.033696048,-0.0011078593,0.043565094,0.003318226,0.003029219,0.00020688737,-0.010329316,-0.044100292,0.02170762,0.029457284,-0.029521508,-0.00519677,0.0087986505,-0.027701834,-0.0132514965,0.044913795,-0.005204798,0.0014503859,-0.04782527,-0.0072893933,0.011549567,0.01320868,-0.007969094,-0.0077121994,0.02027329,0.02765902,0.024897398,0.0076533277,-0.016312826,-0.027637612,-0.04206654,-0.005432257,0.010436356,0.01188139,0.0370785,-0.013743878,-0.0038908876,0.0017500966,-0.010869866,0.02530415,-0.020808488,-0.035258826,-0.003807932,0.009376665,0.018089684,0.0028151402,0.0055392967,0.025775123,-0.049495086,0.009360609,-0.024661912,0.016216492,-0.008771891,0.007835295,0.021258054,0.012716298,-0.032090455,0.008322325,-0.019160079,-0.01228814,-0.0023240962,0.022927871,0.005437609,0.0034600534,0.017736454,0.047782455,-0.013690358,-0.023056319,-0.010302557,-0.01382951,0.016312826,0.0018464322,0.0024190939,0.008343733,-0.02105468,0.0013226074,0.021943107,0.0063153333,0.030142337,-0.019984284,0.0208406,0.03853424,0.0018303762,0.009810175,0.020862008,-0.016013116,0.003995251,-0.011892093,-0.024297977,0.031084284,-0.007075314,0.012020541,0.019673869,0.03256143,0.038641278,0.0062082936,0.0052609937,0.030570494,-0.0070217946,0.01096085,-0.014632306,0.02211437,0.0050442386,0.022264225,-0.028001545,-0.04649798,-0.0006606347,-0.01689084,0.013390647,-0.01843221,-0.0057640797,-0.016569722,-0.024019675,-0.013775989,0.025689492,0.008766539,0.021771844,-0.032968182,0.036393445,-0.02324899,-0.027466347,-0.048638772,0.013840213,0.023099134,-0.026288914,-0.006722084,0.0036179367,-0.031876378,0.009687079,0.012598555,0.03883395,-0.009992142,0.042987082,0.0074446006,-0.025689492,-0.036714565,0.05244938,0.0021167072,0.016441274,0.016270012,-0.014011477,-0.035879657,-0.0051512783,-0.007792479,-0.022692384,-0.050736744,-0.014964129,0.021943107,0.00790487,-0.02213578,0.007177002,0.009440888,0.029821219,-0.010200869,0.009708487,-0.031919193,-0.005694504,0.020016395,-0.00007162451,-0.0113997115,-0.037977632,0.023291806,0.010580859,-0.03637204,-0.011110705,0.025175702,-0.019909356,0.03861987,0.023741372,-0.026567215,0.016409162,0.0028740119,-0.0024940216,-0.017575894,0.030399231,-0.0017755185,0.023270398,0.0002595709,-0.0016270011,0.0235487,0.007803183,0.044185925,-0.011817166,-0.0098690465,0.0012677497,-0.011292673,-0.029114757,0.012587851,0.007995854,-0.004966635,0.008070782,0.010334669,0.019438382,-0.0019240358,-0.03245439,0.042965673,0.0098369345,0.012737706,-0.04281582,-0.01034002,0.023505885,0.022585345,0.015039057,0.02386982,-0.0020511453,-0.008306269,-0.02181466,-0.0032887901,-0.04679769,0.017393926,0.011817166,0.0019722036,0.019363454,0.00468298,0.050351404,-0.028964901,-0.012609258,-0.014375411,-0.017008584,0.0125022195,0.048296243,-0.048510324,-0.019641757,-0.037528064,-0.00018263623,0.04487098,0.028622376,0.017629413,-0.0048917076,0.007556992,-0.010827051,0.04649798,-0.002376278,-0.0010690575,0.024533464,0.028815046,-0.0324758,0.03543009,0.01781138,0.03134118,0.03954041,0.0039229994,0.022050146,0.01837869,0.02262816,0.0045331246,-0.01745815,0.0041317265,-0.007530232,-0.0016751689,-0.0026345109,-0.015659885,-0.0162379,0.007369673,-0.02528274,-0.030698942,-0.009087658,0.017789973,-0.02186818,0.07411418,0.026652846,0.00963356,-0.002150157,-0.0403325,0.033310708,0.018036164,0.005178038,0.042152174,-0.029992482,0.004308342,-0.009745951,0.0019895977,-0.023120543,-0.014043589,0.00418257,-0.0029623194,0.021878883,-0.00041109876,-0.027016781,-0.009060898,-0.0064812447,0.015627773,0.025475413,0.012127581,-0.0058764713,0.025368372,0.022071555,0.009178641,0.0005766756,-0.025561044,0.015659885,-0.018956704,-0.005833655,0.040182646,0.02324899,-0.00418257,0.012170397,0.03543009,-0.000046829802,-0.013454871,0.03318226,0.0057908394,0.014204148,0.019224303,-0.00711813,-0.0076212157,0.027295085,-0.019010223,0.02622469,0.013808101,-0.03954041,-0.011110705,-0.0022264225,0.0026826786,-0.012577147,-0.0140328845,-0.014857089,-0.026973967,0.017447446,-0.015831148,-0.009644263,0.019524014,-0.010125942,-0.030955838,-0.025539637,-0.02027329,-0.024126714,-0.027209453,0.034787852,-0.02928602,-0.0029864034,0.02335603,0.0071716495,0.015456511,0.025967794,-0.024683319,-0.05488988,0.005140574,0.03348197,0.0069736266,-0.02054089,-0.015392287,0.0029703474,0.014043589,-0.010564803,0.0046267845,-0.0011025073,-0.00084561243,-0.00033332783,-0.017757861,-0.00057834806,-0.015071169,-0.024875991,-0.037977632,-0.032411575,-0.027295085,-0.018796144,0.028258441,0.015071169,0.03543009,-0.017083513,-0.010125942,0.004498337,0.009735247,0.0014677797,-0.017608006,-0.014471747,-0.016773097,0.008734427,-0.017233368,0.01997358,0.0074713603,0.028558152,0.0037115964,-0.026053427,0.054932695,0.010190165,0.015756221,0.009408777,0.012074061,-0.012138285,0.042344846,0.0026599327,0.014482451,-0.038641278,-0.00095399,0.045127872,0.0020283994,0.045598846,-0.003564417,-0.010329316,-0.003323578,-0.040996145,0.005742672,0.042473294,-0.0018798821,-0.025839347,-0.030934429,0.0041022906,-0.025454005,-0.017757861,-0.0026612708,0.002598385,0.0072144656,-0.018710513,-0.023955451,-0.041124593,-0.018335875,-0.03307522,-0.025154294,-0.036200777,0.011688719,-0.0055553527,0.019823724,0.0010717334,0.0089913225,-0.03894099,0.026545808,-0.024704728,0.036436263,-0.0053680334,-0.01903163,-0.0056838,0.0141292205,0.014814273,0.05090801,0.052791905,-0.043158345,-0.020144843,0.016344938,0.032711286,-0.009098361,-0.0010737404,-0.0053519774,-0.02186818,0.02241408,0.056773774,-0.001890586,0.017083513,-0.014546675,0.0151568,-0.001661789,-0.013048121,0.045085058,-0.007284041,0.01699788,-0.0074660084,-0.0010302557,-0.009071602,-0.01926712,0.0115281595,0.015895372,0.017062103,-0.034145616,0.0022103668,0.06863376,0.021065382,0.03104147,-0.006882643,0.0027990842,-0.025732307,-0.04671206,0.019641757,-0.002115369,-0.017393926,-0.0037249762,-0.019363454,-0.023891227,0.039989974,0.03981871,0.024811767,0.02969277,0.026652846,-0.011688719,0.021472134,-0.045770112,0.013230088,-0.027551979,-0.0011265912,0.03645767,-0.017533079,0.014482451,-0.023206174,-0.0069843307,-0.016548313,-0.030142337,0.015274543,0.007717551,-0.0008208595,-0.007401785,0.017779268,0.044742532,0.06349586,-0.006411669,0.0066953236,-0.022756608,-0.0075195283,-0.00017996025,0.011142817,0.025582451,0.010757474,0.031876378,0.04380058,0.0034359696,-0.0027402125,0.007294745,0.0058229514,-0.042473294,0.0055714087,0.0032486503,0.00059708,-0.0031871025,0.005009451,-0.040503766,-0.013519095,-0.009114417,0.0048301597,-0.02062652,0.0008783933,0.06002778,-0.01504976,-0.010029606,-0.011217745,-0.026438769,0.04200232,0.053220063,0.009376665,0.00809219,-0.008375845,0.0034948413,0.0051593063,0.010034958,0.03635063,-0.012887562,-0.040696435,-0.008595276,0.008370493,0.021493541,0.011046481,0.040503766,-0.0047900197,-0.011271264,0.024490649,0.023719965,0.0027803523,-0.0235487,-0.032732695,-0.035301644,0.039005212,-0.021825364,0.012823338,-0.003518925,0.009301737,0.005255642,0.0025435272,0.029971074,0.00041711974,0.008333029,-0.009398072,0.0054911287,-0.021504246,-0.0060156225,-0.0019815697]},{"id":"interface-APIWebhookTokenUpdateRequest","type":"interface","source":"main","text":"Interface: APIWebhookTokenUpdateRequest\nDescription: Request body for PATCH /webhooks/{id}/{token} (token auth). All fields optional.\nProperties: avatar: string | null, name: string","meta":{"url":"/docs/typedefs/APIWebhookTokenUpdateRequest"},"embedding":[0.020868355,0.020988865,-0.0288622,-0.009645839,0.0049886215,-0.033481758,0.055796236,-0.015857138,0.03830217,0.0087520555,-0.0019419722,0.009214011,-0.022133712,-0.03675562,-0.024965702,0.015334927,0.01307536,0.040370926,-0.03743851,-0.024784938,-0.019643167,-0.007642357,0.008993076,0.0048656007,0.0045894315,0.03189504,-0.03970812,-0.0035676048,-0.012643532,-0.039688036,-0.008350355,-0.016650496,0.020044869,0.025005873,-0.005829682,0.029525006,0.0020486738,-0.01918121,0.0037684552,-0.0060807453,0.0008448269,-0.03755902,0.029364325,0.037498765,-0.030910874,0.02611055,-0.020436527,0.007988824,-0.045191336,0.0068138493,-0.02104912,-0.01435076,0.030669853,0.04073246,-0.0028093946,-0.007742782,0.0033441589,0.002543268,-0.01754428,0.04197773,-0.025427658,-0.0027340758,0.0074013365,-0.053506542,0.012764041,0.005995384,-0.0475212,-0.011348046,0.021832436,0.028520754,0.08395546,0.021752097,-0.036675278,0.050975826,-0.010574773,0.009655882,-0.034024056,-0.006592914,0.0005234663,-0.04724001,-0.030047217,-0.0044588787,-0.075921446,-0.06708403,-0.02380077,0.002651225,-0.02842033,-0.028360074,0.00078519946,-0.0139390165,-0.02412213,0.017313303,-0.06290634,-0.016439604,-0.021450821,-0.018769467,-0.022153797,-0.001158028,-0.011187366,0.025568254,0.008244908,-0.011739705,-0.07250699,0.006427212,-0.0016833773,-0.049047664,0.052020248,-0.008736991,0.011749747,-0.010514517,-0.06764641,-0.017453898,0.011910427,0.030167727,-0.023278559,-0.038804293,-0.0032613082,0.0010287305,-0.007903462,-0.0922305,0.0007469124,-0.011107026,0.040491436,-0.04117433,-0.015134077,0.014772546,-0.06314736,0.041114073,-0.08074185,-0.005538449,0.019040616,0.0038839444,0.013838591,0.035269327,-0.00912865,-0.06921304,0.010218264,0.046436608,-0.014893056,-0.012211703,0.03085062,-0.040913224,-0.0027993522,-0.036976553,-0.030750193,0.026050294,0.018689128,0.05921069,0.0010814538,-0.0029223731,-0.027737437,0.030248068,0.010876048,0.030689938,0.002982628,-0.03420482,-0.02104912,0.014802673,-0.03424499,-0.024825107,0.0025859487,-0.022414902,0.0031483297,-0.022676008,-0.0069494233,-0.028078884,0.019673295,0.010906176,-0.03878421,0.0070548696,0.044628955,-0.061299536,-0.030388663,-0.004129986,-0.029042965,0.0036178175,0.05169889,-0.04619559,-0.026733186,-0.024021706,0.050694637,0.033542015,-0.021511076,0.015234501,-0.04884681,-0.003974327,-0.042981982,0.05752355,0.0024779916,-0.0031433085,0.011709577,0.037257746,0.023318728,-0.03711715,0.002260822,-0.06800794,-0.011026686,-0.04002948,0.016319094,0.017745132,0.031995464,-0.0339638,0.0018553555,-0.009314436,-0.013567443,0.013456975,-0.0029449686,-0.030227983,-0.021691842,-0.022475157,0.025929784,-0.02116963,0.02687378,-0.043785382,-0.050292935,0.0037282852,0.031433083,0.0024742256,-0.03165402,-0.024584087,0.0020624823,0.039246164,0.07989828,-0.03185487,-0.0012076129,0.0132862525,-0.016288966,0.0060054264,-0.037398342,-0.0017624621,-0.04069229,0.038121402,-0.01080575,-0.027255397,-0.021470906,-0.036072727,0.021229886,0.032276656,0.0029273944,0.016419519,-0.013808464,-0.040009394,-0.017032113,0.03767953,0.009957158,0.005488237,0.017634664,-0.044347763,0.0066230414,-0.03448601,0.03639409,0.031272404,-0.021772182,0.0075670383,0.01068524,0.0144110145,-0.00326884,0.04772205,-0.015435352,0.018588703,0.06495501,-0.0045618145,-0.013567443,0.04023033,-0.011408302,-0.01949253,0.024102045,0.012181575,0.022455072,-0.0027993522,-0.010002349,0.03627358,0.017484026,0.0074364855,-0.025608424,0.017253049,0.0074565704,-0.019311763,-0.017423771,0.012121321,0.0023750558,0.01849832,-0.016710753,0.037358172,-0.017373558,0.013165742,0.060496137,0.038583357,0.050574128,0.029986963,-0.0059903627,0.03145317,0.012904637,-0.018638916,-0.0017398664,0.049047664,0.02922373,-0.009008139,0.07254716,-0.010158008,0.015997732,-0.014842844,0.00669836,-0.019633126,0.002495566,0.02599004,0.010544645,-0.0056539383,-0.021752097,-0.044548616,0.0347672,0.005357684,-0.05189974,-0.012462766,-0.027998542,0.005879895,0.005945171,0.0034194777,-0.0016130796,0.008711886,-0.008350355,0.009234096,-0.039205994,-0.016007775,0.005975299,-0.055033006,-0.008511035,0.031834785,0.027596842,0.02157133,-0.021470906,-0.027395992,0.028761774,-0.015455437,0.0013243572,0.013537316,-0.012593319,0.016459689,-0.000016240636,0.0390654,0.013798421,-0.00033014783,0.017704962,-0.03440567,-0.054430455,-0.013246083,-0.0020310995,0.03109164,-0.047199838,0.0070347846,0.012583276,-0.004082284,-0.014300548,-0.016128285,-0.048404943,-0.035510346,-0.004780239,-0.050373275,0.000103171194,0.00881231,0.0068138493,0.027416077,-0.014953311,0.023539664,0.0066782753,-0.008315206,0.037840214,-0.01439093,-0.019281637,-0.06599943,0.0049559833,-0.037177406,-0.0047425795,-0.020085039,-0.027697267,-0.029444667,-0.018207086,0.0083704395,0.008350355,-0.048445113,0.07318988,0.031352744,0.0011379429,0.01861883,-0.0039492208,0.019472444,-0.007556996,0.019472444,-0.054591134,-0.027134886,0.012101236,-0.021671757,-0.03432533,-0.0259097,0.0339638,0.0095855845,0.007823123,0.01554582,0.0077026123,-0.009721158,-0.0047701965,0.0017524196,-0.02623106,-0.0038739017,0.0055836407,0.0053627053,0.0007720186,0.031111725,0.04249994,0.0068439767,0.03384329,0.00035023285,0.005970278,0.0406722,0.047882732,0.0039693057,0.040953394,-0.040491436,0.02092861,0.06853015,-0.043705042,0.050333105,0.00032324358,-0.0010714113,-0.016750922,-0.015475522,-0.0005149929,0.017293219,-0.03173436,-0.030127557,-0.005533428,-0.0056539383,0.033421505,-0.03836242,0.019161126,-0.025226807,0.019010488,0.01455161,-0.011940556,0.03671545,-0.04812375,-0.036072727,0.015144119,0.04691865,-0.045271676,-0.0008316461,0.039688036,-0.030710023,-0.04559304,0.02436315,-0.0060455967,0.0020122698,0.00789342,0.034305245,0.03763936,-0.019271594,0.005764406,0.03344159,-0.012512979,0.014280462,0.015796883,-0.045633208,0.012191618,0.067124195,0.032397166,-0.027637012,-0.0296656,0.031051468,-0.013677911,-0.033481758,0.034626607,0.034144565,-0.0216115,0.01629901,0.0036479451,-0.040350843,0.016570156,0.0031910103,0.021993117,0.03510865,-0.0025784168,0.004622069,-0.011568982,-0.023097795,0.03950727,0.10163029,0.03643426,-0.006015469,0.04233926,-0.015877223,0.0102383485,0.0009998583,-0.071462564,-0.0055284067,-0.015073821,-0.030067302,-0.0581261,0.000073632065,0.012834339,-0.029324155,-0.027958373,-0.0263114,0.019723507,0.02351958,0.027777608,0.03225657,0.008325248,0.013055275,-0.01479263,-0.0013670379,-0.01598769,-0.012593319,0.00061165215,0.0009866775,-0.06599943,0.033582184,-0.026170805,0.03440567,-0.0033190525,0.029203646,-0.05218093,0.046436608,0.02599004,-0.019020531,-0.009098522,-0.000009061804,-0.051457867,-0.07286852,-0.00053601945,0.0052120676,-0.012081151,-0.010142944,-0.005377769,-0.0038287104,-0.008621503,-0.005207046,-0.012211703,-0.005402875,0.023459325,0.039828632,-0.037016727,-0.013095445,-0.025467828,0.004489006,0.011338004,0.011448472,0.016158413,0.0104743475,0.043343514,0.03324074,0.026331484,0.009851711,-0.00534262,0.0054982794,0.022274308,0.027516503,0.013145657,0.005458109,0.030067302,0.010122859,-0.0056639807,-0.01813679,0.02594987,-0.027436161,-0.023820855,0.03643426,0.017162666,-0.029766027,0.017293219,-0.00330901,-0.01873934,0.019281637,0.022334563,0.0013808464,0.019663252,0.058286782,-0.00003795366,0.03524924,0.007120146,0.02088844,-0.0010519539,-0.017795343,-0.016017819,0.026753271,-0.005377769,0.0014461228,0.013758251,-0.011147196,-0.0042881556,0.006693339,0.018106662,0.028058799,0.027375907,0.011438429,-0.0042002834,-0.015455437,-0.0015779308,-0.009615712,-0.022214051,0.012774085,-0.00017966694,0.008315206,-0.00865163,0.0066531687,0.0067887427,0.040451266,0.011277749,0.012543106,-0.007546953,0.021852521,0.03695647,0.033300992,0.0045316867,0.0012025917,0.02347941,0.014953311,0.00006213809,0.013336466,-0.016208626,0.0057945335,0.04306232,0.01016805,-0.000507461,0.0616209,-0.01941219,0.04125467,0.014722333,-0.01949253,-0.006135979,0.027697267,-0.016168457,0.016650496,-0.020316016,0.006477425,-0.045231506,-0.014913141,0.060455967,-0.00569913,-0.037257746,-0.0087872045,-0.0050438554,0.036213323,0.0467178,0.009198948,0.016399434,-0.014210165,-0.008576311,0.0061158943,-0.011739705,-0.0016996964,-0.023700345,-0.029725857,0.019924358,0.019482488,-0.0013984208,0.014802673,-0.024965702,0.008034015,0.0074766553,0.014963353,0.029484836,0.0021189714,-0.002957522,0.0036303706,-0.0015038672,0.03145317,-0.011317919,0.005965256,-0.060897835,0.029464751,0.006176149,0.016158413,0.032537762,-0.015857138,0.033019803,-0.02647208,0.0014862928,-0.028139139,0.017494068,0.0522211,-0.0045341975,-0.01467212,-0.0070900186,-0.040551692,0.0078080585,-0.035148818,0.03209589,0.0042404537,0.03532958,0.0053677266,-0.012533064,-0.019884188,0.02056708,-0.007556996,0.007024742,0.06399093,-0.00594015,0.004840494,0.01542531,0.031433083,-0.0030554365,0.000017015402,-0.004599474,0.00046132822,-0.037016727,0.035409924,0.035550516,0.03631375,0.015033651,0.015405225,-0.009625754,0.026090465,-0.025728934,0.013587528,0.0047978135,0.06170124,-0.028319905,0.03332108,-0.010394007,0.0292639,0.04237943,-0.036454346,-0.008475886,-0.00015306995,0.013487103,-0.019321807,0.031151894,0.01845815,0.00845078,-0.00081658235,-0.008706864,0.00865163,-0.032517675,-0.00490326,0.0034069247,0.0040170075,-0.01291468,-0.004253007,0.0038739017,0.013607614,0.0071352096,-0.018528448,-0.01945236,0.01710241,0.0045065805,0.028440414,0.017333388,-0.024302896,-0.023037538,-0.010494432,-0.0052371738,0.0020059932,-0.036012474,-0.0047450904,0.005975299,0.0096759675,-0.004273092,-0.039085485,-0.045994736,0.0072506987,0.010695282,-0.010785665,0.02005491,0.0034772223,-0.051297188,-0.017052198,-0.00015087315,0.0025307147,0.024584087,0.04193756,-0.042821303,-0.0339638,-0.033341162,0.004084795,0.06511569,-0.031714275,-0.0021980563,-0.004963515,0.017132537,-0.008601418,0.031352744,0.0053124926,-0.016017819,-0.006055639,-0.008219802,-0.0140293995,-0.017032113,-0.015686415,-0.0055233855,0.022234138,-0.04615542,0.019301722,0.02056708,-0.036012474,0.033059973,0.03117198,0.01139826,-0.036333833,0.019010488,0.050533958,-0.010795708,0.014230249,-0.045151167,-0.011257664,0.01734343,-0.0002317625,-0.043022152,0.028801944,0.028761774,0.032839037,-0.055153515,0.013667868,-0.023298644,0.0036127963,-0.0064071272,0.0024265237,0.0045618145,-0.006562786,0.02133031,0.03388346,0.048364773,0.003416967,0.004875643,0.017785301,-0.0026210975,0.030448917,-0.033019803,0.019382061,0.0064523183,-0.0237606,0.004285645,0.02558834,0.027335737,-0.02193286,0.0138486335,-0.022073457,0.0049258554,0.011579025,-0.040491436,0.010775623,0.02582936,-0.021390565,0.029886536,-0.033783033,0.014641993,-0.022113627,0.038543187,0.0037408383,-0.007637336,0.0008686779,-0.018448107,-0.03432533,0.011769832,-0.018709213,-0.012743956,-0.03703681,-0.013708038,0.0040647094,0.023178134,0.011990768,-0.0015176757,0.0035098605,-0.020316016,-0.0033466695,-0.020115165,-0.015565905,-0.0106751975,-0.028319905,-0.007983803,0.025266979,0.03201555,-0.01726309,0.021671757,-0.0053928327,-0.014541567,0.03950727,-0.000564264,0.03699664,-0.030910874,0.06158073,0.013175785,0.0064372546,0.03832225,0.007351124,-0.04386572,-0.000289507,-0.010614943,-0.005433003,0.007521847,0.006000405,-0.020476697,0.0151541615,0.003580158,0.007873335,-0.025066128,-0.012292043,-0.018478235,0.006828913,-0.01220166,0.0132862525,-0.03412448,-0.0036102857,-0.022997368,-0.011890342,0.037960723,0.005729257,0.00924916,-0.005538449,0.016791092,0.014380887,-0.00577947,-0.046034906,-0.022053372,0.0750377,0.012452723,0.05430994,0.0115087265,0.018889979,0.06744556,0.014963353,-0.0060355538,-0.016971856,0.024322981,0.024302896,-0.027757524,0.029464751,0.0065678074,-0.0074063577,0.0010827091,-0.0050940677,-0.04615542,-0.023579834,-0.0117999595,0.024664426,-0.013125572,-0.06310719,-0.01431059,0.034546267,-0.011789917,-0.049047664,0.024784938,0.031051468,-0.0034822435,-0.032557845,-0.0014046973,0.007587123,-0.033742864,0.017092368,-0.0120711075,-0.058367122,-0.026331484,0.008666694,0.02440332,-0.026853696,-0.00007939867,-0.016610326,0.061500385,-0.012030938,0.02108929,0.04189739,0.003921604,-0.011568982,-0.050333105,-0.020667505,-0.004117433,-0.0023110346,0.0025809275,-0.021470906,0.03581162,0.0068389555,-0.020305974,0.008079207,0.043825552,0.0077478033,-0.021310225,0.07278818,0.009540393,0.012573234,-0.009625754,-0.013025147,-0.044548616,0.017745132,0.027978458,-0.0056338534,0.002324843,0.009771371,-0.028641265,-0.0056338534,0.04555287,-0.00816959,-0.0024779916,-0.015314842,-0.005970278,0.037779957,0.003560073,-0.007963718,-0.019512614,0.03277878,0.023278559,-0.0009157522,0.0038211786,-0.013215955,-0.013999271,-0.03711715,0.007331039,-0.006848998,0.008576311,0.0013770805,-0.013256125,-0.03281895,0.000023497925,-0.03324074,0.010896133,-0.021410652,-0.017323345,-0.013527273,0.017082324,0.024483662,0.017152622,0.016640455,0.039406843,-0.027938288,-0.0040446245,0.0005353918,0.01633918,0.004220369,0.011850173,-0.004388581,-0.004963515,-0.048525453,0.0008454546,-0.0021679287,0.03161385,-0.009003119,0.017484026,0.0053325775,0.0060305325,0.008310185,0.03874404,-0.007506783,-0.006341851,-0.026291315,-0.014280462,0.013517231,0.013547358,-0.0102383485,0.010876048,-0.02355975,0.015445394,0.022816604,0.0033466695,0.054591134,-0.015575947,0.042861473,0.04113416,0.0087872045,0.0077026123,0.0122518735,-0.0020185462,-0.004971047,-0.031915125,-0.012482851,0.018679086,0.022093542,0.01463195,0.029002795,0.022997368,0.018076533,0.02586953,0.0021817372,0.046597287,0.0019256531,0.0022922049,0.0060907877,0.014662078,0.024282811,0.018056449,-0.004659729,-0.05430994,-0.008511035,-0.027898118,0.018307513,-0.018026322,0.028520754,-0.02137048,-0.015806925,0.024945617,0.040391013,0.009133671,0.01918121,-0.01829747,0.023338815,-0.019392105,-0.02691395,-0.026090465,0.004895728,-0.0038688804,0.009133671,0.014963353,0.004388581,0.013798421,-0.0018729299,0.018769467,0.02647208,0.01479263,0.05242195,0.031151894,-0.03695647,-0.039185908,0.04229909,0.00022752583,-0.00035337114,0.018588703,-0.0052873865,-0.010584815,0.0005645779,-0.017283175,-0.022575583,-0.03828208,-0.016991943,0.03679579,0.0052020247,0.009595627,0.013266168,0.0034395629,0.0073611666,0.0011592833,0.02647208,-0.016720794,0.014250334,0.009916987,-0.02137048,-0.00980652,-0.028179308,0.022555498,-0.015616117,-0.033220652,-0.029745942,0.049328852,-0.05788508,0.034345414,0.014852886,-0.025186637,-0.017564366,-0.007722697,0.017996194,-0.009716137,0.032839037,0.0055183643,0.028440414,0.010027455,0.006191213,0.017072283,0.0045065805,0.04209824,-0.010544645,-0.008495972,0.03189504,-0.026853696,-0.03456635,0.012834339,-0.002997692,-0.008621503,-0.0068590404,0.009193926,0.012653574,0.016128285,-0.020486739,0.031754445,0.0061259368,0.0025043532,-0.00007598578,-0.0037985828,0.04193756,0.013005062,0.01781543,0.030047217,0.019572869,0.037619278,-0.008104313,-0.0025043532,-0.0017109942,-0.0027516503,-0.018016279,-0.019803848,0.035992388,-0.008742013,0.035369754,-0.014340717,0.010886091,-0.028761774,-0.007446528,-0.011338004,0.026974207,-0.012412554,-0.004293177,-0.025427658,0.036253493,0.002503098,0.0074415067,0.019382061,0.0122518735,-0.009625754,-0.011056813,0.054109093,-0.023620006,-0.013878762,0.05716202,0.0526228,-0.030589513,0.022475157,0.0347672,0.041535858,0.014993481,0.038121402,0.014330675,0.042861473,0.0028470543,-0.007125167,-0.0038362422,-0.021852521,0.00026973578,-0.015575947,-0.0063569145,-0.0018879935,-0.015053736,0.027757524,-0.026210975,-0.002678842,-0.0032085849,0.05680049,-0.008435716,0.057644058,0.014370845,0.01339672,-0.013165742,-0.01793594,0.029424582,0.020396356,-0.0015879733,0.054229602,0.0006085139,0.0034822435,-0.02412213,-0.0013783358,-0.009670946,0.004692367,-0.0030830533,-0.02092861,0.021109374,0.00046007292,-0.02368026,-0.008039037,-0.0024729704,-0.009183884,0.046075076,0.009229075,0.0010550922,-0.003512371,0.0233589,0.00322867,0.0050890464,-0.017243005,0.005809597,0.009756307,-0.015857138,0.061058518,-0.025407573,-0.0036404133,-0.0074866978,0.0029324156,0.002889735,-0.019402146,0.047802392,0.019361977,0.010745496,0.03085062,-0.011066856,0.0073009115,0.03930642,-0.015324884,0.032196317,0.0035299454,-0.023881111,-0.0038814335,-0.013025147,-0.023700345,-0.040049568,-0.021129461,-0.003492286,0.004564325,-0.0006238915,-0.017413728,-0.009068395,-0.002435311,0.008671715,-0.0331604,-0.01048439,0.010092732,-0.03173436,-0.039647866,0.037980806,-0.03145317,0.00028872243,0.020436527,0.006989593,0.017775258,0.01781543,-0.02659259,-0.03193521,-0.0016695688,0.055033006,0.0095655,-0.008721928,-0.023338815,0.018709213,-0.003479733,-0.0046019843,-0.01877951,-0.008511035,0.024644341,0.010845921,0.000705487,-0.014119782,0.014662078,-0.0412145,-0.00010960468,-0.034988135,-0.025146468,-0.022535414,0.02311788,0.01192047,0.012824297,0.014913141,-0.01905066,0.012452723,-0.009234096,0.008922778,-0.01204098,-0.02934424,0.011247621,0.034626607,0.007662442,0.002786799,0.011729662,0.03281895,-0.021189716,-0.02339907,0.034385584,0.026130635,0.019392105,0.008129419,0.0043182834,-0.03755902,0.012472808,0.011267707,0.0045542824,-0.05680049,-0.0036127963,0.030649768,-0.010695282,0.046396438,0.00058529055,0.019793805,0.026773356,-0.0026838633,0.0016130796,0.0056790444,-0.0060305325,0.00052095565,-0.012271958,0.0011649323,-0.028721604,-0.0068590404,0.008084228,0.0010381454,-0.0009195182,-0.021149546,0.007501762,-0.025889615,-0.008822353,0.0028721604,-0.016821219,-0.024463577,0.016690666,0.0075369105,-0.012643532,-0.0014084633,0.008340312,-0.024925532,0.014451185,0.00033579674,0.017976109,-0.006130958,0.009394777,-0.0057593845,0.020587165,-0.0017888237,0.03340142,0.026331484,-0.04691865,-0.05354671,0.01155894,0.044669125,0.010554687,0.00024839543,-0.0039416887,0.011317919,0.016921645,0.054149263,0.01918121,0.0057192147,0.010835879,0.012964892,-0.023017453,-0.008300142,0.04205807,-0.0031106703,-0.03259802,0.015997732,-0.0003061399,-0.0104743475,-0.0044488357,0.022917029,0.0002928022,0.029886536,-0.018879935,0.009183884,0.060616646,0.0518194,0.03157368,0.009133671,-0.013145657,-0.043825552,-0.023378985,0.022173882,-0.022615753,0.006959466,0.018759426,-0.002786799,-0.009741244,-0.0054430454,0.030750193,0.011629237,0.022736263,0.010544645,-0.006402106,-0.001722292,-0.044428103,0.030308323,-0.028540839,-0.016429562,0.050011747,-0.016178498,0.031232234,0.0045316867,-0.014943268,0.0020675035,-0.024865277,0.0080992915,-0.017735088,0.0027039482,0.013406763,-0.018528448,0.031031383,0.029002795,0.0027014376,0.04756137,-0.013477061,-0.0059903627,-0.0024491192,-0.0012094959,0.012733914,-0.0010827091,0.028038714,0.03639409,0.01044422,-0.020526908,0.013768294,0.0011988257,-0.043584533,-0.0064171697,0.01331638,-0.024784938,0.04019016,-0.0039040293,-0.034345414,0.012854424,-0.021671757,-0.011860215,-0.027476333,0.000749423,0.053345863,-0.018277384,-0.0068640616,0.00896797,-0.027596842,0.022414902,0.06732505,0.001929419,0.0027591821,-0.011498684,0.0011329217,0.00097161374,0.02137048,0.036655195,-0.02096878,-0.044709295,0.004481474,0.0011291557,0.02898271,0.028842114,0.034024056,-0.021892691,0.0020336101,0.016650496,0.044066574,-0.016098158,0.0030604578,-0.021470906,-0.038161572,0.045954566,-0.022053372,0.017192792,-0.013507188,0.0076674633,0.01562616,0.037418425,0.032879207,0.0001967706,0.00073498685,-0.030569429,0.012523022,0.0012779105,0.021912776,-0.02436315]},{"id":"interface-APIWebhookUpdateRequest","type":"interface","source":"main","text":"Interface: APIWebhookUpdateRequest\nDescription: Request body for PATCH /webhooks/{id} (bot auth). All fields optional.\nProperties: avatar: string | null, channel_id: string, name: string","meta":{"url":"/docs/typedefs/APIWebhookUpdateRequest"},"embedding":[0.014780663,0.011666275,-0.029399011,-0.0026401286,0.009581562,-0.034451015,0.057296626,-0.00083249016,0.008080163,0.02603101,0.008110597,0.008222187,-0.033740893,-0.017134206,-0.022947054,0.032990195,-0.0014240463,0.03363945,-0.043459408,-0.026051298,-0.006315005,-0.0036951657,0.0001418657,0.01276189,-0.0030560568,0.020096425,-0.040639214,0.0016675164,-0.019548617,-0.042566683,-0.008577248,-0.0134517215,0.014445892,0.03558721,-0.008972887,0.028871493,-0.00007481632,-0.0032132978,0.001124781,0.010874997,0.00093647215,-0.024935395,0.03461333,0.023981802,-0.044149242,0.020583365,-0.030880122,0.014151698,-0.025807828,0.012883625,-0.039178394,0.0041491357,0.0380422,0.054618455,0.029114963,0.0053664865,-0.00033318627,-0.018879075,-0.019122545,0.039929092,-0.01669799,-0.030007686,-0.024428165,-0.043215938,0.014445892,0.015237169,-0.040842105,-0.013025649,0.01621105,0.020796401,0.066020966,0.024265852,-0.03658138,0.028830916,-0.015298037,0.013685048,-0.03436986,-0.0072381627,-0.006396162,-0.047233194,-0.038366824,-0.0032995269,-0.086918816,-0.06581808,-0.03704803,0.02745125,-0.011696708,-0.020552931,-0.012082202,-0.019609485,-0.023393417,0.00037091144,-0.067076005,-0.014932832,-0.014171988,-0.007228018,-0.019670352,-0.007126572,-0.017590713,0.03585097,0.020755824,-0.019923968,-0.086918816,-0.0066599213,-0.00577227,-0.06451957,0.059569012,-0.018564593,-0.0008838471,-0.01763129,-0.046746254,-0.030109134,-0.009804742,0.01521688,-0.02505713,-0.039178394,0.02943959,-0.014811097,0.004483907,-0.07620613,0.0120619135,-0.00018799187,0.047233194,-0.047070883,-0.00802944,0.011017021,-0.057053156,0.036682826,-0.066913694,-0.00010493307,0.03234094,0.012295239,0.018321123,0.034714773,-0.013715481,-0.040821817,0.015379193,0.048531704,-0.019061677,-0.009185923,0.023413707,-0.053806886,0.010022852,-0.026639685,-0.022764452,0.016099459,-0.00049962086,0.03735237,0.007004837,-0.0010271394,-0.043418832,0.032685857,-0.008988104,0.030697519,-0.010601093,-0.024651345,-0.008927236,0.0115546845,-0.030758386,-0.030758386,0.022947054,-0.032056894,-0.009500405,-0.043905772,-0.0004967677,-0.015957434,0.02432672,0.0003354054,-0.029885951,0.015744397,0.036114726,-0.042607263,-0.020776113,0.0044027506,0.006832379,0.0013936126,0.04565064,-0.047233194,-0.023900647,-0.022926766,0.057580672,0.027613565,-0.01409083,0.00013116634,-0.05611985,-0.0020365256,-0.008308416,0.03779873,0.0018425105,-0.019538473,-0.0017182394,0.008369284,0.0062338486,-0.03574952,-0.002695924,-0.0579053,0.0059396555,-0.052183755,0.02627448,-0.017570423,0.029987399,-0.010271394,0.017702304,-0.009748948,-0.018787773,0.021141319,0.010342406,-0.023961514,-0.033497423,-0.01313724,0.03136706,-0.0174284,0.036500223,-0.02554407,-0.05400978,-0.028891783,0.009774309,0.019629775,-0.055998117,-0.038894344,-0.008709127,0.038671162,0.069754176,-0.03363945,-0.019710932,0.017722592,0.022561561,-0.013096661,-0.033091642,-0.00993155,-0.0371089,0.032848172,-0.020776113,-0.021039871,-0.030048266,-0.030190289,0.029459879,0.057540096,0.006208487,0.006583837,-0.008962742,-0.022906477,-0.033761185,0.035384316,0.012112636,0.0016510314,0.01864575,-0.057986457,0.003355322,-0.029541036,0.0357901,0.037900176,-0.004521949,-0.020289173,0.008866369,0.0043266662,0.012112636,0.031083014,-0.004585353,0.00321837,0.05616043,0.0019236673,-0.015561796,0.051169295,-0.00032747994,-0.016079169,0.034937955,0.011777865,0.022074621,0.0044534733,-0.011057599,0.019852955,0.032016315,0.0069135358,-0.0309207,0.0058179204,0.008491019,-0.014719795,-0.025909275,0.0035607498,-0.0073801866,0.023393417,-0.029885951,0.057540096,0.00075323554,0.016992182,0.036885716,0.023900647,0.04662452,0.034248125,-0.012132926,0.05522713,-0.002769472,-0.0365408,-0.009743875,0.058716867,0.028932361,-0.009170706,0.10112124,0.014324157,0.007943211,0.0020276492,0.01778346,-0.021668836,-0.018828353,0.041085575,0.020583365,-0.019670352,-0.016109603,-0.046218738,0.022703584,0.032280073,-0.044798493,-0.011402516,-0.04003054,0.0055237273,0.0020010197,0.003801684,-0.0006543258,0.015531362,-0.026639685,0.021506524,-0.044717338,-0.04100442,-0.024387587,-0.048044764,0.0023991948,0.033740893,0.028628023,0.011879311,-0.012579287,-0.03950302,0.03507998,-0.024935395,0.024955682,-0.000864826,-0.038123354,0.02578754,-0.016728424,0.026822288,0.0045574554,0.017641436,0.00001119471,-0.02651795,-0.045569483,0.006299788,-0.0076388735,0.03680456,-0.045204278,0.01422271,0.010996732,-0.005280257,-0.011950323,-0.024651345,-0.044392712,-0.033903208,-0.002594478,-0.021729704,-0.006086752,0.00937867,-0.023981802,0.014232855,-0.016769001,0.018473292,0.011108322,-0.0062642824,0.039137814,-0.035384316,-0.013715481,-0.02477308,0.03266557,-0.057499517,-0.01888922,-0.019193558,-0.018980522,-0.018280545,-0.043053627,0.022602139,-0.021080451,-0.03755526,0.054780766,0.043499988,0.0009903653,0.0057773422,0.0028683818,0.01937616,-0.0027111408,0.033822052,-0.028303396,0.0030662012,-0.0045929616,-0.0055085104,-0.034430727,-0.033720605,0.021425366,0.0018247575,0.02578754,-0.0011025898,0.012670589,-0.020755824,-0.010956153,0.0035353885,-0.031042434,0.004065443,0.0042860876,0.0042632623,-0.0021684053,0.015774831,0.02601072,-0.0017753027,0.030190289,0.0050596124,0.0016916099,0.03581039,0.04889691,-0.0016535677,0.031488795,-0.047557823,0.035729233,0.082779825,-0.039178394,0.026639685,0.021323921,0.0016954141,-0.00968808,0.0022457577,-0.0054019922,0.013390854,-0.02576725,-0.03856972,-0.028546866,-0.0053360523,0.018676184,-0.023718044,0.017225508,-0.040618923,0.015206736,0.0076743797,0.0009979737,0.048937485,-0.043175362,-0.023900647,0.016393652,0.045488328,-0.033761185,0.0018868931,0.042931892,-0.037190054,-0.056079276,0.029480169,-0.01928486,-0.032401808,-0.0023763694,0.030129422,0.024874527,-0.011463383,-0.0032437316,0.045041963,-0.012325672,0.018422568,-0.00036679022,-0.02870918,0.025138285,0.07673365,0.012427119,-0.0015052031,-0.045285434,0.032198917,-0.027857035,-0.023657177,0.0466651,0.033091642,0.00026328373,0.028242528,-0.0050215703,-0.040537767,0.011564828,-0.008536669,0.016464664,0.03163082,0.00729903,-0.0046081785,-0.010956153,-0.011047455,0.029703349,0.083510235,0.021547101,0.0004805998,0.037859596,-0.004306377,-0.0016700525,0.0068881745,-0.052630115,-0.005554161,-0.006487463,-0.045082543,-0.035952415,-0.0014265825,0.017073339,-0.017489268,-0.036013283,-0.025828118,0.021587681,0.010195309,0.0371089,0.04100442,-0.00918085,0.0030712737,-0.012082202,0.002248294,-0.009485188,-0.0033147437,0.0042277565,0.010844563,-0.047517244,0.029885951,-0.024894815,0.013390854,-0.015440061,0.034653906,-0.058108192,0.036155306,0.0113010695,0.0047603473,-0.0068628127,0.0036444427,-0.043621723,-0.08265809,-0.015957434,-0.0026908517,-0.0044052866,-0.014658928,-0.003355322,0.00004707722,0.0027212854,-0.0046918713,-0.010530081,-0.0070809214,0.023210814,0.040821817,-0.043175362,-0.0066345595,-0.02430643,0.027126625,-0.0007221678,0.029987399,0.010185164,0.03652051,0.033253953,0.027917903,0.03163082,0.010935864,-0.0055998117,0.002749183,0.03380176,0.04540717,0.0064418125,0.009515622,0.033091642,0.006340367,-0.0027086046,-0.026903443,0.017935628,-0.017884906,-0.014232855,0.012843046,0.020542787,-0.021303631,0.006380945,-0.0026249117,-0.016292205,0.027552698,0.027552698,0.0011279512,0.030940989,0.05717489,-0.020877559,0.026213612,-0.0071722227,-0.0037763224,0.0022749235,-0.04763898,0.007872199,0.022460114,-0.003910738,-0.00084960915,0.01729652,-0.019934112,-0.009008393,0.017813893,0.0096627185,0.021242764,0.033477135,0.0031017074,-0.0061577642,-0.011453238,-0.008080163,-0.0014443356,-0.03978707,0.023778912,-0.014232855,0.021019584,-0.012640155,-0.00847073,0.022176066,0.02820195,0.012112636,0.0012389076,-0.011960467,0.026071588,0.034937955,0.027857035,0.0012300311,-0.010854708,0.005102727,0.014800952,0.0046487567,-0.0013885403,0.010266322,-0.005346197,0.026396215,0.018442858,-0.007304102,0.059893638,-0.019254426,0.01753999,0.034268413,-0.030575784,0.00432413,0.013989385,-0.007091066,0.023778912,-0.015450206,-0.0023446674,-0.04808534,-0.02720778,0.053157635,-0.016566109,-0.0342887,0.0043672444,0.0069845477,0.022054331,0.027836746,-0.011798155,0.013715481,-0.02771501,-0.0066447044,-0.0050088894,-0.010448924,0.0019667817,-0.013340131,-0.01630235,0.008445368,0.023677465,0.0041085575,0.0052193897,-0.035952415,0.011047455,-0.00021303631,-0.009343164,0.01665741,-0.005701258,0.0121836485,-0.010377912,-0.00020622043,0.016779145,-0.031427927,0.007192512,-0.051128715,0.025442623,-0.001521688,-0.007948283,0.03388292,-0.008972887,0.022115199,-0.023880357,0.0018957696,-0.02501655,0.024367297,0.05912265,0.002802442,-0.015298037,-0.001866604,-0.02578754,0.015176302,-0.021810861,0.038914632,0.011595262,0.025686093,0.006299788,-0.015663242,-0.010530081,-0.0022926766,0.011088033,-0.0014405313,0.052833006,-0.0064773187,0.016728424,0.026294768,0.029967109,-0.003821973,-0.02074568,0.004346955,0.01948775,-0.027654143,0.021567391,0.024002092,0.034511883,0.0059041493,0.010976443,-0.008171464,0.040091407,-0.033680025,0.018635605,0.0120619135,0.061151568,-0.027126625,0.029074386,0.0053512696,0.021202186,0.05177797,-0.04743609,-0.015003843,-0.016586399,0.008288127,-0.023494862,0.033274245,0.008597537,-0.012802469,0.0012084738,-0.009571417,0.0061273305,-0.02209491,-0.0031752556,0.0011095641,0.017225508,-0.018666038,0.0072381627,-0.012508275,0.0054070647,-0.006056318,-0.011392371,-0.018960232,0.01975151,0.013593746,0.009647502,0.014070542,-0.015571941,-0.018392134,0.002728894,-0.01690088,0.00214558,-0.047273774,0.013390854,-0.0035582138,0.028404843,0.0011190746,-0.057012577,-0.02048192,0.0023091615,-0.0019528329,-0.0079026325,0.0013796638,0.0039563887,-0.045772374,-0.029561326,-0.0059498,-0.0143343005,0.032949615,0.0367234,-0.033010483,-0.021810861,-0.02822224,0.004103485,0.041126154,-0.035161138,-0.016403796,-0.02072539,0.0023104295,-0.014618349,0.028506288,0.0036241536,-0.004552383,0.0002992653,-0.016748711,-0.020816691,-0.013177818,-0.022703584,-0.01984281,0.011443093,-0.055754647,0.013228541,0.028932361,-0.028810626,0.041876853,0.024975972,0.0039183465,-0.03702774,0.019497896,0.042282637,-0.019812377,-0.00121101,-0.060745783,-0.023109369,0.032320652,0.009054043,-0.030535206,0.032543834,0.046989724,0.024935395,-0.040152274,0.021851439,-0.040842105,0.013208251,0.0091605615,0.011402516,-0.012751745,-0.010976443,0.030940989,0.015998013,0.045528904,0.007816404,0.008141031,0.010154731,0.005929511,0.03680456,-0.036256753,0.004346955,0.00398175,-0.013857505,0.011503961,0.0054222816,0.0183617,-0.026112165,0.025584647,-0.027775878,-0.011209768,0.0071214996,-0.03946244,0.0074968496,0.015744397,-0.024265852,0.063708,-0.024590477,0.002837948,-0.026842576,0.015419772,0.0026680261,-0.017053049,-0.00045206814,-0.010342406,-0.034897376,0.009439537,-0.025483202,-0.01692117,-0.02578754,-0.032990195,0.013898084,0.023697754,0.025604937,-0.0142024215,0.010986587,-0.0253006,-0.0020213088,-0.03163082,-0.008130886,0.003890449,-0.03404523,-0.01397924,0.023433995,0.048978064,-0.003966533,0.027430963,-0.008359139,-0.008501164,0.053806886,0.004912516,0.024468742,-0.017763171,0.057296626,0.020999294,-0.006066463,0.030981567,0.0018602635,-0.0342887,-0.002680707,-0.012782179,-0.0095359115,-0.0026071586,0.011290925,-0.008420006,0.021648549,0.009475044,0.018473292,-0.03459304,0.0019046462,-0.02406296,0.011493817,-0.013887939,0.012802469,-0.032929327,0.007938139,-0.022135489,-0.014638638,0.035140846,0.024204984,0.017925484,-0.0029317855,0.009911261,0.0036723404,-0.018371847,-0.035891548,-0.014922687,0.061192147,0.0028810627,0.053563416,0.016312495,0.0101699475,0.043784037,0.006086752,-0.023515152,-0.013573457,0.015257458,0.024651345,-0.029378723,0.03550605,0.0104286345,-0.023373127,-0.000587752,-0.0077606086,-0.028120793,-0.034714773,-0.01263001,0.029094674,-0.037717573,-0.069754176,-0.016342929,0.03412639,-0.009764165,-0.06354569,0.029683061,0.02209491,-0.001988339,-0.036378488,0.001729652,-0.0042176116,-0.03633791,0.011189479,-0.021648549,-0.048694015,-0.016992182,0.007978717,0.034998823,-0.023616597,0.0047704917,-0.01360389,0.052143175,-0.010007635,0.023413707,0.055308286,0.0018970377,-0.015044422,-0.03946244,-0.022683296,-0.00020273322,-0.0069946926,0.00008924066,-0.03921897,0.0389755,0.013948807,-0.0054070647,-0.0056099566,0.048694015,0.026375925,-0.022622429,0.059244387,0.0039868224,0.023291972,-0.008541741,-0.008009151,-0.042647842,0.009317802,0.035526343,-0.028506288,0.0058737155,0.015156012,-0.032543834,-0.018422568,0.032726437,-0.008531597,0.011432949,-0.027796168,0.0028988156,0.01411112,0.01386765,-0.014851674,-0.007344681,0.025848407,0.023291972,-0.0003179694,-0.005173739,-0.015612518,-0.010448924,-0.029317856,0.012011191,0.000045531757,-0.00085024314,0.010540226,-0.012843046,-0.015886422,-0.0048820823,-0.021080451,0.017438544,-0.02552378,-0.012924204,-0.019670352,0.007988862,0.044352133,0.016231338,0.016687844,0.060421158,-0.02554407,0.005280257,-0.012244516,0.014324157,-0.009297513,0.025665805,0.01913269,-0.0072888853,-0.040395744,0.0053309803,-0.019923968,0.009769237,-0.01572411,0.014263289,-0.0045168772,0.0017841791,0.013563313,0.025239732,-0.009008393,-0.025970142,-0.008323633,-0.0116865635,0.008267838,-0.0017334563,-0.014019819,-0.0058027036,-0.045244858,0.02306879,0.02357602,-0.0059802337,0.06374858,-0.0197718,0.03749439,0.03558721,-0.0013631788,0.004757811,0.012203937,-0.006208487,-0.008587392,-0.017154496,-0.023413707,0.024265852,0.03161053,0.017682014,0.018929798,0.026801998,0.015409627,0.035668366,0.009236646,0.03848856,-0.009094622,-0.01012937,-0.0041263103,0.019893534,0.007821476,0.02554407,-0.007278741,-0.04638105,-0.014953121,-0.03432928,0.010398201,-0.013644469,0.021100739,-0.013279264,-0.017418254,0.019954402,0.05449672,0.010672105,0.019873245,-0.0333554,0.036398776,-0.009272152,-0.03824509,-0.02769472,0.010398201,0.0043672444,-0.0041085575,0.014516903,0.0056150286,-0.018737052,-0.0060055954,0.018858787,0.017611003,-0.0017626219,0.05469961,0.01035255,-0.038062487,-0.034106098,0.050195415,-0.0025729206,0.011574973,0.018300833,-0.0040121838,-0.0031524303,-0.013786493,-0.009880827,-0.009794598,-0.0309207,-0.0166777,0.041673962,-0.001175504,-0.022663007,0.013096661,0.016383506,0.024225272,-0.0034288703,0.027897613,-0.021181896,0.0030459121,0.00926708,-0.014537193,-0.00802944,-0.02870918,0.023636887,-0.002268583,-0.014029963,-0.024935395,0.043499988,-0.05636332,0.05425325,0.01287348,-0.041126154,-0.008511308,-0.011909745,-0.00017372605,-0.024022382,0.02503684,0.016424086,0.013715481,0.015429916,0.014608204,0.034897376,0.025117997,0.046259314,-0.01035255,-0.013400999,0.026294768,-0.008800428,-0.014151698,0.022054331,0.021141319,-0.013187963,-0.022926766,0.015257458,0.0075475723,0.0022051795,-0.028587446,0.031306192,-0.0012262269,-0.0052193897,-0.008592465,-0.003768714,0.042160902,0.0034161895,0.018960232,0.041998588,0.016251627,0.019203702,-0.014070542,0.010088791,-0.0111793345,0.008414934,-0.011828588,-0.022865899,0.034714773,-0.006538186,0.030555494,-0.015145868,0.0076895966,-0.031752557,-0.00802944,0.0035759667,0.010773551,-0.025462912,-0.0075019216,-0.026294768,0.021790572,0.015622663,0.021973174,0.0071367165,0.00027723252,-0.01572411,-0.0066294875,0.06326164,-0.015429916,-0.007882344,0.06265297,0.043053627,-0.038874056,0.019934112,0.034430727,0.042850733,0.025909275,0.04443329,0.019437028,0.028039638,0.013522734,0.001004314,0.0055440166,-0.011828588,-0.01900081,-0.017012471,-0.01459806,-0.01605888,-0.01641394,0.025320888,-0.01716464,0.0045929616,-0.0012078398,0.030859832,0.0004945486,0.0642761,0.0052143172,0.01116919,-0.012011191,-0.030393181,0.032198917,0.025848407,-0.0024600623,0.059325542,-0.0055998117,0.016992182,-0.011635841,-0.008004079,0.004362172,-0.009480116,-0.018128376,-0.01645452,0.017083483,-0.010885142,-0.02503684,-0.011088033,-0.0023281826,-0.0031321412,0.039624754,0.013269119,-0.00038264113,-0.0011615552,0.020979004,0.010306899,-0.00235608,-0.03138735,-0.006933825,-0.006107041,-0.021526814,0.052346066,-0.02452961,-0.0032462678,-0.017773315,0.00698962,-0.017124062,-0.01924428,0.04443329,-0.0014278506,0.022805031,0.01690088,-0.016758857,-0.0064113787,0.04544775,-0.006071535,0.0356075,-0.0061476193,-0.022602139,-0.016373362,-0.020958716,-0.027593276,-0.044798493,-0.022439826,-0.011940178,-0.0058027036,-0.0022368813,-0.029845374,-0.006315005,-0.014790807,0.008577248,-0.02672084,-0.002506981,0.0011019557,-0.024428165,-0.031854,0.045123123,-0.02868889,0.009475044,0.010976443,0.010509792,0.007314247,0.016241483,-0.03554663,-0.03461333,-0.013553168,0.048491124,0.012072058,-0.011361937,-0.029662771,0.007953356,0.013756059,-0.0050063534,-0.011331503,-0.0016484953,0.007978717,0.01855445,-0.0044357204,-0.0031093159,-0.017306665,-0.059853062,-0.019873245,-0.033132218,-0.0324221,-0.028343976,0.023149947,0.01165613,0.020076137,0.015612518,-0.0120619135,0.01879792,0.010763407,0.008085235,-0.0027872252,-0.028891783,0.014770518,0.02406296,-0.0025323424,0.008678693,0.007522211,0.041673962,-0.0075171385,-0.02747154,0.045285434,0.012853191,0.015419772,0.011524251,-0.0021696733,-0.037616126,0.014506759,0.003162575,0.008932308,-0.04784187,-0.014151698,0.028546866,-0.0040223286,0.02868889,-0.00049962086,0.0064113787,0.017063195,-0.01300536,0.022196356,-0.009343164,-0.0041440637,0.012396685,-0.02025874,-0.008795356,-0.015531362,0.0025767249,-0.0095409835,0.0014430674,-0.013969095,-0.016647266,0.005171203,-0.030230869,-0.003717991,-0.0051838835,-0.018341413,-0.026294768,0.0021151463,-0.007370042,-0.010022852,0.007831621,0.008359139,-0.03290904,0.006451957,0.011514106,0.023758622,-0.0010423562,-0.01373577,-0.0030636652,0.017854473,0.011382226,0.044311553,0.044839073,-0.05250838,-0.04711146,0.0055034384,0.031752557,-0.002539951,-0.0042429734,-0.0029850446,0.00031448217,0.015369048,0.060624048,0.01669799,0.017560279,0.0010854708,0.011331503,-0.01422271,-0.0057469085,0.037129186,-0.005620101,-0.02603101,0.007385259,-0.011331503,-0.0137053365,-0.008795356,0.026213612,0.0015191518,0.034308992,-0.030312024,0.010996732,0.04954616,0.039665334,0.020370329,0.00023649567,-0.00021018315,-0.050235994,-0.032198917,0.0069744033,-0.017884906,-0.0060968967,0.013390854,-0.00608168,-0.010382984,0.0009098426,0.03165111,0.020197872,0.03871174,0.014922687,-0.012051769,-0.00512048,-0.042931892,0.03905666,-0.033984363,-0.01409083,0.050479464,-0.0140806865,0.029399011,-0.0005341759,-0.008967814,0.0072685964,-0.029561326,0.020715246,-0.01289377,0.005310691,-0.0018285618,-0.0016104531,0.028039638,0.030636651,-0.009419248,0.03755526,-0.024590477,0.0052346066,0.0040908046,0.0145879155,0.023900647,-0.0048288233,0.029906241,0.029581614,0.0024347007,-0.01617047,0.016109603,-0.0000034178538,-0.050641775,0.005970089,0.005391848,-0.024407875,0.01605888,-0.0020656914,-0.0357901,0.013796638,-0.042728998,0.0041947863,-0.04589411,0.00012696584,0.042526107,-0.00091554894,-0.009652574,0.017195074,-0.03970591,0.026923733,0.060705207,-0.007999007,0.005090046,-0.012670589,-0.008374356,0.0031093159,0.026375925,0.040050827,-0.005105263,-0.052589536,0.008059874,-0.009825032,0.03286846,0.029155541,0.040882684,0.0016535677,0.01909211,0.0166777,0.03773786,-0.017611003,0.0018780166,-0.014516903,-0.041065287,0.055754647,-0.014821241,-0.008115669,-0.0063555837,0.02477308,0.0013733234,0.019203702,0.03307135,-0.007385259,0.011727142,-0.036601666,0.019812377,-0.022257224,0.02528031,-0.016231338]},{"id":"interface-AttachmentData","type":"interface","source":"main","text":"Interface: AttachmentData\nDescription: File handling for multipart requests. Matches fluxer_api parseMultipartMessageData exactly:\n- payload_json: JSON string with content, embeds, attachments metadata\n- files[N]: File parts where N is 0-based index (fluxer API expects files[0], files[1], etc.)","meta":{"url":"/docs/typedefs/AttachmentData"},"embedding":[-0.0050366935,0.026240831,0.031516284,-0.011113697,0.037746776,-0.011801552,-0.035632048,0.050298717,0.020988118,0.002393282,0.015257884,-0.025695095,0.015417057,-0.031516284,-0.043317836,0.047706466,0.040634632,0.016667703,-0.0029532304,0.017520417,0.01954419,-0.013302328,0.026695611,-0.025490444,-0.009379846,-0.035927653,-0.014189149,0.050753497,0.03556383,-0.0474336,0.044727657,-0.023671322,0.04675143,0.04393179,0.021909047,0.042590186,-0.0021332044,0.07253748,-0.040930238,-0.0110625345,-0.016372096,0.0068444456,-0.018566411,0.02095401,0.0054971585,-0.0024927652,0.03526822,0.04040724,-0.039156597,0.023443932,-0.006463567,0.0036979334,0.0034108532,0.036973648,0.016394835,0.012995351,-0.03670078,0.031425327,-0.027286826,0.01999897,-0.024831012,-0.007464084,0.013836695,-0.0071741613,-0.015905946,0.025808789,-0.045750912,0.04390905,0.028423777,0.041066673,0.05880311,0.02001034,-0.007066151,-0.017816024,0.022284241,-0.048934374,-0.009760725,-0.01533747,-0.012824808,-0.050480627,0.011972095,0.050344195,-0.05211784,-0.06394213,-0.048479594,0.028537473,-0.014541605,0.002875065,-0.07212818,-0.002386176,-0.015098711,0.015428427,-0.09514007,-0.004658657,0.009834627,-0.05252714,-0.024262536,-0.024671838,-0.011557108,0.016679073,0.01699742,-0.0072423783,-0.021215508,-0.0474336,0.041748844,-0.02765065,0.020362794,0.006901293,-0.041930757,-0.02812817,-0.021499746,-0.025786052,0.027536955,0.023603104,0.020817574,0.011102327,-0.010260983,0.05211784,0.036109567,0.007850647,-0.011642379,0.002039406,0.0046529723,0.012222224,0.009976746,-0.002023773,-0.00020855946,0.0056705438,-0.068035156,0.009357108,0.056802075,-0.017918348,0.016815506,-0.03283515,-0.016565377,-0.012006204,0.010187082,0.0135410875,-0.023830494,-0.038747292,0.021749875,-0.018339021,0.07199174,0.0014567185,-0.0071002594,0.022920934,-0.013575196,0.056665644,0.022579849,0.010488374,-0.030515768,0.016406205,0.00020269706,0.012631526,0.013268219,-0.03947494,0.009482172,-0.007788115,0.0073390193,-0.0033568481,0.0057614995,-0.045955565,-0.004215246,-0.02626357,0.0032346258,0.020419642,0.003732042,-0.04697882,-0.0077142133,0.030424811,-0.02113592,-0.034244966,-0.028173648,-0.0027855302,-0.029879075,-0.031743675,0.0052953498,-0.028878558,-0.043317836,-0.025035663,0.022795869,-0.006577262,-0.017565895,-0.044977784,-0.02298915,-0.020578815,0.007003619,0.06598864,-0.011636694,0.0044369516,-0.034199487,0.041748844,-0.0029162795,0.014382431,-0.009328684,-0.00060400524,0.008845479,0.0072708023,0.02535401,0.03067494,0.0068444456,0.048525073,0.028059952,-0.012290441,-0.0060599493,0.017167961,-0.035450134,0.052618098,-0.00038869516,-0.028901296,-0.00870336,0.066898204,0.0039082696,0.032152977,-0.022716282,-0.00076104666,0.01764548,0.03417675,-0.027059436,0.026763828,0.007526616,0.025786052,0.0683535,0.0004593993,-0.044500265,0.01347287,-0.05461913,-0.0534367,-0.046046518,-0.021909047,-0.025399487,0.028264605,-0.03529096,-0.028310083,-0.031106982,0.005366409,-0.026354527,-0.042203624,0.024921969,0.050025847,-0.031470805,-0.022670805,-0.024376232,0.005161758,-0.033449102,-0.0026533597,-0.0146552995,0.006349872,0.055437736,0.011454782,0.068398975,-0.029014992,0.03326719,-0.029833596,0.013234111,-0.014371062,-0.013916281,0.035859436,0.0103121465,0.0409075,0.014018607,-0.034540575,-0.015689924,0.041339543,-0.011801552,-0.0052385023,-0.003288631,0.02999277,-0.05457365,0.029196903,-0.011130751,0.026923003,0.0209199,0.027013958,-0.031175198,0.028901296,0.0209199,-0.021408789,0.0012243543,0.002317959,-0.0019583981,-0.03908838,-0.046887863,0.018498193,-0.0024487085,0.02044238,0.02787804,0.00662274,0.0040219645,0.011432043,0.0058496133,-0.0016059434,0.066625334,-0.060121972,0.0062134378,-0.0043545226,0.017349873,-0.012335919,0.010624808,0.036928173,0.0028196387,-0.038679074,0.03131163,-0.027809823,0.006185014,-0.025808789,-0.0064919908,-0.0012279071,0.022375198,-0.010738503,0.009919899,-0.016303878,-0.061850138,-0.00018280042,-0.064533345,-0.010516797,-0.00037732563,0.026331788,0.0012499356,0.054982953,0.01721344,-0.011801552,0.04511422,-0.080950916,0.023398453,-0.013359175,-0.06044032,-0.0068615,-0.015041863,0.029583467,0.015928686,0.02162481,-0.00064557506,-0.043590706,0.051481146,-0.047660988,0.0030669256,0.030493028,-0.008225841,0.040498197,-0.0011014213,-0.03906564,-0.022125069,-0.0006377585,-0.02787804,-0.00964703,0.00063207373,0.038133338,-0.009965376,-0.012267702,-0.04907081,0.028446516,-0.0077028438,0.016701812,0.0065658926,0.011699227,-0.0041868226,-0.07199174,-0.017793285,-0.023989668,-0.052800007,0.016826876,0.006594316,0.03674626,-0.025490444,-0.013120416,-0.033426363,-0.0149054285,-0.015428427,-0.07681242,0.0061281663,0.010317831,-0.034699745,0.025672356,0.000311418,0.008004135,0.005244187,-0.02234109,0.0054147295,-0.02162481,0.033176232,0.084452726,-0.0024970288,-0.022397937,-0.027150393,-0.031789154,-0.06908115,0.0012947031,-0.038724553,0.016190184,0.009078555,0.006662533,-0.0246491,0.0026888894,-0.005704652,0.013836695,0.055665124,-0.004658657,-0.004147029,-0.05898502,0.020590184,0.012119899,-0.00041463185,0.019680623,-0.033380885,-0.0006260337,0.040998455,0.020772096,0.027536955,-0.061031535,0.034790702,-0.012381397,0.014768994,0.052845486,0.028310083,0.0044767447,-0.011204653,0.0032516802,-0.025626877,0.013723,-0.018339021,0.033562794,-0.033358146,0.028924035,0.013597935,-0.014973646,0.071536966,-0.0016201553,0.022466153,-0.020510597,0.002777003,-0.0012364343,0.034722485,0.023125585,0.01208579,-0.023534888,0.02232972,-0.016667703,-0.049843937,0.010323516,0.015496643,0.00023520675,0.05507391,0.05652921,-0.07408373,-0.023557626,-0.011903878,-0.005818347,0.018532302,-0.00488889,-0.053345744,-0.013586566,-0.037291996,-0.0062134378,-0.006446513,0.0103974175,-0.0028978041,0.014621191,0.08436177,-0.009806203,0.021840831,0.03670078,-0.0007518089,-0.012949873,-0.016485792,-0.036541607,0.013677522,-0.0070832055,-0.031766415,0.025058402,0.0023051684,0.021829462,-0.0032147293,0.051981404,-0.03836073,-0.053345744,-0.0017807496,-0.03911112,0.026559178,0.029447034,0.025740573,0.030402072,-0.07003619,-0.015883207,-0.012858917,0.13188633,0.030925069,0.025263052,0.023330236,-0.021567963,-0.023534888,-0.005289665,0.048979852,-0.009936953,0.03840621,-0.03720104,-0.00025066218,-0.06994523,0.004499484,-0.029424295,0.026854785,-0.008157624,0.052845486,-0.04181706,0.02414884,-0.014541605,-0.022795869,-0.01881654,-0.034108534,-0.0064976756,0.07003619,0.040611893,0.0040020677,0.019714732,-0.031220676,0.025467705,-0.030629462,0.010909046,0.005596642,0.016804136,-0.021249617,0.010010854,0.009038761,0.012642896,-0.016519899,-0.0187938,-0.02533127,-0.063623786,-0.008868218,-0.018486824,0.07112766,0.013575196,-0.015758142,0.014064085,-0.0067819133,0.023205172,-0.008583981,-0.015246514,-0.012904394,-0.0062248074,-0.02512662,0.010079072,-0.018327652,0.017145222,0.031925585,0.053391222,-0.009692508,0.015155558,-0.009442379,-0.0028054267,-0.028173648,-0.021022225,0.010863568,-0.008987598,0.030106464,0.06248683,0.015928686,-0.044136442,0.0056250654,-0.016679073,0.0017310081,-0.03131163,0.007532301,0.000078120975,-0.027832562,0.010437211,0.018475454,-0.028537473,0.004215246,-0.033062536,0.01347287,0.008709045,0.002430233,0.0084475465,-0.002573773,-0.005738761,-0.02276176,-0.0069410866,-0.023148324,-0.012199485,-0.022420675,-0.013768477,-0.022261502,0.009692508,0.021738505,-0.0057359184,-0.017020158,-0.022454783,-0.005508528,-0.022841347,0.03392662,-0.0005485789,0.023284758,-0.034108534,-0.022352459,0.0037604657,-0.0012520674,0.0129839815,-0.013723,0.013893542,-0.008890958,-0.01955556,0.0023648583,-0.026468221,0.020749357,0.0072196396,0.031448066,-0.028310083,-0.020783465,0.047706466,-0.019453233,0.051617578,-0.040339023,-0.04948011,0.0014766152,0.015633078,-0.016781397,-0.0038798456,0.0076062027,0.006690957,0.013995868,0.009737986,-0.0029702848,0.03069768,-0.024285275,0.012370028,-0.013518348,-0.010135919,-0.018884758,-0.014018607,-0.011136436,0.016508529,0.016849615,0.034290444,-0.027559694,0.0046700267,0.0071627917,0.009914214,-0.038519904,-0.00018688633,0.016667703,0.021215508,0.065715775,-0.0110625345,0.049616545,0.006372611,-0.03749665,0.017099744,-0.022966413,0.013688891,-0.01138088,-0.029719902,-0.00053116935,-0.011494575,0.02090853,-0.030311115,0.018850649,0.028241865,-0.018327652,0.02674109,0.011170545,0.000024426683,0.0124837225,0.0060087866,-0.028423777,0.013438762,0.013575196,0.011250131,0.0012705429,0.043840833,0.020067187,0.025399487,0.024762794,-0.018304912,0.0018105946,-0.044136442,0.022682175,0.01765685,0.0227845,0.006935402,-0.016815506,-0.004155556,-0.035927653,-0.020135405,0.032607757,-0.008589665,0.00086905697,0.015314731,0.03354006,0.008561241,0.017338505,-0.007418606,-0.0028850134,-0.03922481,0.04998037,0.036132306,0.028378299,0.026104396,-0.005539794,0.021499746,-0.010715764,-0.012915764,-0.01068734,0.010488374,-0.012620157,-0.044932306,0.019373646,0.0031777783,0.04486409,-0.0446367,-0.015451165,-0.00883411,-0.009959691,0.014996385,-0.01127287,0.025990702,-0.0022000005,0.025990702,-0.002536822,0.01254057,-0.007248063,-0.0138480645,-0.0139049115,0.014234628,-0.017452199,-0.04436383,0.047615513,0.0101188645,0.018964345,-0.010079072,0.0035956078,0.029151427,-0.019714732,0.007014988,-0.034722485,0.00837933,0.009556074,0.008873903,-0.048934374,0.03788321,0.016508529,0.0068615,0.04670595,0.0043545226,0.009135402,-0.027923519,-0.018896127,0.005193024,-0.02765065,-0.0009095609,0.0009045867,0.005906461,-0.0011568477,0.03185737,-0.03861086,0.009277521,0.011687857,0.004058915,-0.01955556,0.023171064,-0.005073644,0.02603618,-0.024035146,0.007856332,-0.023330236,0.0016229977,-0.025740573,-0.0003577843,0.06357831,-0.017872872,0.018020675,0.012927134,-0.0063612415,0.022261502,0.03974781,-0.018270804,-0.0047837216,-0.020340055,-0.005380621,0.011562793,0.012847547,-0.018509563,0.026354527,-0.022068221,-0.010454265,0.015508013,-0.03954316,0.005860983,-0.024444448,-0.0091979345,-0.009806203,0.022136437,-0.03206202,-0.04322688,0.01974884,0.022284241,0.0140981935,-0.07617572,0.013268219,0.0034108532,-0.025990702,-0.010152973,-0.007981396,0.026218092,0.0822243,0.044272874,-0.042681143,0.027491476,-0.04693334,0.040952977,0.0020678297,0.049616545,-0.006872869,0.022181915,0.03115246,0.012961242,-0.02908321,-0.029537989,0.016087858,0.02510388,0.081815,-0.009550389,0.01836176,-0.0039679594,-0.008663568,0.05784807,0.008225841,0.04629665,-0.017702328,0.0065033603,0.021295093,0.060258407,0.048525073,0.0077824304,-0.007350389,-0.0007169898,-0.030583985,0.0020507756,-0.029174166,-0.015758142,0.0190553,-0.016781397,0.03840621,0.0034080108,0.01207442,-0.007350389,-0.005832559,-0.002084884,-0.059894584,0.0069922493,-0.04072559,0.041271325,0.024421709,-0.028491994,0.011113697,-0.0043232567,-0.0021047806,-0.02351215,-0.011744705,0.009743671,0.001655685,0.035200007,-0.029947292,0.0135410875,-0.015974162,-0.021715766,-0.020521967,0.0015490958,-0.02439897,0.014837212,0.02694574,0.025376748,0.011102327,0.031402588,-0.02835556,0.0039395355,-0.017736437,0.02533127,0.030515768,0.036223263,-0.022034112,0.017850133,-0.0006860789,0.017077005,0.004189665,0.014564344,0.052890964,0.02417158,0.02351215,0.0012030364,-0.0012975454,-0.021272356,0.0010246772,-0.012040312,0.013200002,0.041453235,-0.019385016,0.03601861,-0.02553592,-0.0028764862,-0.01255194,-0.03840621,0.001647158,-0.030925069,-0.00061928306,0.008328167,0.011113697,0.0047382438,0.0028793286,0.0028565896,0.034222227,0.02417158,-0.010653231,0.0035984502,-0.025695095,-0.0111478055,0.00837933,-0.004800776,0.014109563,-0.019237213,-0.006560208,-0.0039679594,0.0162584,0.0055881147,-0.021340571,-0.00049066544,-0.0029475456,-0.024353493,0.04513696,-0.008345221,0.024217058,0.0009202198,0.01105685,0.023580365,0.0079757115,-0.051481146,0.0022923776,0.0055653756,-0.0022895352,0.03162998,-0.024467187,0.0018645998,0.012722483,-0.006003102,0.05784807,-0.00365814,-0.04270388,0.004965634,-0.025967963,-0.017247548,0.0042720935,0.026422743,-0.012097159,-0.062168486,-0.006509045,-0.015587599,0.04070285,0.0065374686,0.047342643,0.0053607244,-0.018691476,-0.0032488378,-0.016406205,-0.0042124037,0.0075436705,-0.0051134373,0.036837216,0.030174682,-0.008981913,0.027264087,-0.012210854,-0.033085275,0.028946774,0.012472354,-0.004093024,0.03606409,-0.021511115,-0.010386048,-0.012404136,0.008544187,0.024103364,0.03278967,0.019021193,0.022920934,-0.004741086,-0.019908013,0.009038761,0.015519382,0.033812925,0.004900259,0.0015178297,0.005656332,0.006315763,-0.02719587,0.026218092,-0.02926512,-0.0024785534,0.039861504,0.054437216,0.013131785,-0.031698197,0.0037832048,0.02093127,-0.0023065896,0.0060599493,0.010704394,0.030925069,0.009465118,0.022227393,-0.038042385,-0.017543156,-0.020658402,0.01000517,-0.028491994,0.028082691,0.0013572354,-0.014518865,0.027036697,0.005622223,0.004380104,0.026809307,-0.030538507,0.009237727,-0.000047831887,-0.008493025,-0.039020162,0.024376232,-0.021704396,-0.010152973,-0.01675866,-0.013438762,0.03695091,0.0071912156,-0.0027286827,0.0028466412,0.026559178,0.0008839795,0.00041747422,0.008493025,0.035654787,-0.017679589,0.00097635674,-0.03879277,0.014678039,0.042431016,-0.031766415,0.00365814,-0.001662791,0.0121767465,0.00811783,0.018987084,0.019441864,-0.00041711892,-0.02883308,0.038042385,0.002407494,0.017099744,0.032243934,-0.026081657,0.0018830752,-0.03044755,0.023625843,-0.004047546,-0.022886826,-0.023762278,-0.0002716247,0.012870287,-0.028719384,-0.0044056852,-0.022682175,0.012915764,0.015780881,0.00020358531,0.006656849,0.021647548,0.008441862,-0.009391216,-0.03351732,-0.0045705433,-0.023875972,-0.032857887,-0.00517597,-0.0012030364,0.01763411,-0.013313698,0.014518865,-0.0016087858,0.013359175,0.0019655041,0.02626357,-0.0353137,0.018952975,-0.01534884,-0.037724037,-0.013757108,0.008095092,-0.02392145,-0.002987339,0.0049627917,-0.0034819127,0.0071286834,-0.014018607,0.0005670544,0.013086307,0.008782947,0.01232455,0.017759176,0.001934238,-0.009209304,0.022966413,-0.0021772613,0.04302223,0.025467705,-0.045614477,-0.013870804,0.018873388,0.01699742,0.01953282,0.021863569,0.0026874682,0.018429978,0.009942637,-0.020419642,0.013882173,0.0027272615,-0.0025311373,-0.00092093035,0.020465119,-0.049707502,-0.009868735,-0.012392767,-0.014018607,-0.0012648581,-0.025285792,0.014916798,0.0017466411,-0.023171064,-0.039361246,0.024080625,-0.009294575,0.0162584,0.03231215,-0.0343814,0.010403102,0.010266668,-0.045728173,-0.024421709,0.03208476,0.0031323002,0.01766822,-0.0055653756,0.0073105954,-0.016917832,0.009988115,0.01929406,-0.0052640834,0.022602588,-0.005826874,0.04042998,0.028651167,-0.013188632,0.048843417,-0.021943156,0.0074697686,0.03786047,-0.016315248,0.0035643417,0.0072423783,0.017247548,0.023534888,0.0075379857,0.0020976746,-0.020044448,0.013427393,-0.005357882,-0.016588116,-0.0040987087,-0.006253231,0.0055369516,-0.030811375,-0.024512665,0.0017239021,-0.03276693,0.01699742,-0.045296133,0.013359175,-0.014064085,0.007350389,0.010010854,-0.021556593,0.000701712,-0.010982947,-0.0066113705,-0.01837313,-0.029719902,0.022204654,0.0051276493,0.019680623,0.04190802,0.01974884,-0.007668735,0.03133437,-0.011892509,0.0039338507,0.03999794,-0.019623775,0.009612922,-0.0019470288,-0.010465635,-0.003970802,-0.012358658,0.049389154,0.022147806,0.009629976,0.0016087858,0.036814477,0.02605892,0.0017366927,0.0010317831,-0.008038244,-0.009544704,-0.008180363,0.035904914,0.022932304,-0.02414884,-0.0063328175,0.020055817,0.0052100783,0.0066113705,-0.0010502585,0.031016026,-0.0154056875,-0.005221448,0.010982947,-0.033380885,-0.011216022,0.014109563,0.017872872,0.012006204,0.0071229986,0.022841347,0.0030726104,0.03399484,0.033153493,-0.03745117,-0.0012023258,-0.0006647611,-0.02949251,0.005229975,0.018282173,0.00032260988,-0.009260466,0.015917316,-0.011022741,0.029719902,0.0028651168,-0.004462533,-0.032903366,-0.033858404,-0.016087858,-0.020567445,0.009158141,-0.014985016,0.022602588,-0.0067534894,-0.012824808,0.0099938,0.017270287,0.009089924,0.025217576,-0.0016272613,-0.00046188637,0.009698193,0.0061679594,-0.02489923,0.0037007758,0.013165894,-0.008896642,-0.011096642,0.013825325,-0.025240313,-0.0042180885,-0.020806205,-0.014882689,-0.028401038,-0.00918088,-0.01815711,-0.015974162,0.01207442,-0.017361242,-0.0062646004,0.0019981915,0.0034506465,0.01184703,-0.03463153,-0.003535918,0.04022533,0.009038761,-0.004252197,-0.004547804,-0.020647032,0.03949768,0.009556074,0.00049599493,0.0004583334,-0.015837729,0.0042919903,0.028742123,-0.012506462,-0.016508529,-0.004311887,0.006486306,-0.011881139,-0.017486308,-0.000033464556,-0.011812922,-0.015644448,-0.021226877,-0.011824291,-0.00564212,0.028901296,-0.06380569,-0.002784109,-0.001079393,0.0321075,-0.024853751,-0.024808273,-0.009931268,-0.012506462,0.03747391,0.043295097,-0.027150393,0.034313183,-0.03806512,-0.0052640834,-0.0470243,0.004846254,0.02346667,-0.012142638,-0.031743675,-0.012688374,0.023136955,0.0014709305,-0.02533127,0.011216022,0.021192769,-0.018623259,-0.026786568,0.03877003,0.0055056857,-0.013074937,0.030379333,-0.015553491,0.005974678,0.016860984,0.035177268,0.02394419,0.03831525,0.0033540057,-0.003942378,-0.051026367,0.008936436,0.021431528,0.007896125,0.05580156,0.007873386,0.0040532304,0.00044021325,0.0021090442,-0.011073903,-0.029128687,0.01699742,-0.004010595,0.02137468,0.03861086,0.0058894064,0.0026064604,0.018714216,-0.0032602071,-0.013006721,-0.000083317194,0.013995868,-0.015144189,-0.030379333,0.0036609825,-0.011972095,0.00107584,0.015678555,0.019146256,-0.003928166,-0.010107495,0.011085273,-0.006906978,0.023625843,0.016565377,-0.03674626,-0.0139049115,-0.014757625,0.003189148,0.006412404,-0.04670595,0.020351425,0.007896125,-0.00836796,-0.0040844968,-0.016394835,-0.008998968,-0.007020673,0.022159176,0.03992972,0.0017366927,-0.011733335,0.002400388,-0.030356593,-0.005724549,0.0022852717,0.042612925,-0.01581499,-0.011631009,-0.011113697,-0.00042813315,-0.024421709,-0.004078812,0.019669253,-0.02045375,-0.0077540064,-0.015542122,-0.004417055,0.028446516,0.037996907,0.012256333,0.051481146,0.010744188,-0.018850649,-0.01186977,0.0070547815,0.0010943154,0.007879071,0.0021161502,0.0015732561,-0.02949251,0.0042038765,0.025763312,-0.037291996,-0.00026469643,0.022818608,-0.015996901,0.014996385,-0.011096642,-0.00010587857,-0.018498193,-0.024762794,0.011324033,-0.018555041,-0.024126101,-0.029469771,0.0053948327,-0.012415506,0.0058894064,-0.009692508,-0.011358141,0.02417158,0.014598452,0.0032687343,0.00014496126,0.058257375,0.033085275,-0.0074242908,-0.000622836,0.000015766314,-0.034085795,0.03465427,-0.0020365636,0.01079535,0.008544187,0.025854267,0.022159176,-0.026650133,0.017816024,-0.036837216,-0.0071002594,-0.00046828174,0.027696129,-0.0162584,0.045569,-0.035518352,-0.018191217,-0.023125585,-0.052618098,-0.0030754528,-0.040088896,0.024239797,0.0057614995,-0.007213955,-0.0059576235,-0.0040901816,-0.029333338,0.014837212,0.011767444,0.03206202,-0.06016745,-0.011130751,0.009237727,0.011665118,-0.009118347,-0.014814473,-0.034563314,-0.025945224,0.022670805,-0.0013451553,0.041726105,0.0135410875,0.017327135,0.0023662795,-0.0029333339,0.007071836,0.028514734,-0.034290444,0.032425843,-0.00061679597,-0.0027926362,0.0030385018,-0.01742946,-0.0007688632,-0.015667185,0.006179329,-0.024012407,-0.011574162,0.0116764875,-0.025626877,0.0044426364,-0.0039594322,-0.0048576235,-0.035450134,0.019612405,0.018941605]},{"id":"interface-AttachmentPayload","type":"interface","source":"main","text":"Interface: AttachmentPayload\nProperties: data: any, filename: string, name: string","meta":{"url":"/docs/typedefs/AttachmentPayload"},"embedding":[-0.008722711,0.02177439,0.017456219,0.004083373,-0.0073786797,-0.012857363,-0.0006696543,-0.008544587,0.029018128,-0.04024538,0.027441995,0.009311062,0.07004078,-0.061447613,-0.013375543,-0.0079886215,0.011507933,0.044434007,-0.011410775,0.019895986,0.016085198,-0.010881798,0.029147673,0.015189176,0.009489187,-0.010563333,-0.025434043,0.03251585,0.010649696,-0.020403372,0.045815825,-0.040526062,0.07958394,0.029730627,0.009294869,0.029493127,0.031414714,0.036898796,-0.04741355,-0.020727234,-0.03873402,0.005748569,0.004258799,0.013073271,-0.015156791,0.03258062,-0.0031036874,0.049097635,-0.008528394,0.037373796,0.016452242,0.012296,0.0035975785,0.04395901,-0.0009567454,-0.0013588753,-0.0032818122,0.050522633,-0.016171562,-0.0069792485,-0.027981767,-0.0067201583,-0.0011260988,0.022087459,-0.0013278384,-0.00051413255,-0.04568628,0.04525446,0.035452206,0.041562423,0.088781655,0.035171527,-0.024894273,0.04568628,-0.0039646234,-0.01664656,-0.025520407,-0.01926985,0.014973268,-0.05786353,-0.007432657,0.057258986,-0.042426057,-0.06421124,-0.02385791,0.005996864,-0.05661126,-0.02071644,-0.024440864,0.009597141,-0.023901092,-0.0037136294,-0.06257034,-0.017272696,-0.015642585,-0.0034086586,-0.019658487,-0.015448267,-0.02882381,0.030961307,0.005689194,-0.012749408,-0.04793173,-0.011961342,-0.0049739964,-0.03052949,0.014994859,0.0099965725,-0.0064394767,-0.018794851,-0.04199424,0.021137461,0.022087459,0.031652216,-0.006450272,-0.00950538,-0.02731245,0.03378971,0.046506733,-0.028499948,0.0070386236,0.0092840735,0.0039079473,-0.0022616435,0.007427259,0.0027744267,-0.024959045,0.018589739,-0.06421124,-0.018417012,0.041087423,-0.010207083,-0.008668734,-0.0012455232,-0.02608177,-0.023188593,-0.00084271864,0.008954813,-0.03974879,-0.023123821,0.020263031,-0.01763974,0.05410672,-0.0023223679,-0.0041994243,0.053243082,-0.023037458,0.08118167,-0.025131771,0.011497138,-0.012652249,0.026016997,-0.026945405,0.021644846,0.04225333,-0.033249937,0.0039997087,-0.005017178,-0.04072038,-0.019928372,0.024484046,-0.04251242,-0.00702243,-0.022692004,0.010671287,0.017067581,0.054840807,-0.029903354,-0.039403338,-0.00015687116,-0.004029396,-0.03828061,-0.024203364,0.0010377112,-0.03622948,0.013235203,0.052379448,-0.018201103,-0.027938584,0.011016741,0.035668116,0.010315037,-0.03158744,-0.044822644,0.0049362127,0.0052843653,0.0050846497,0.06110216,-0.00069765496,0.025261316,0.002106459,0.01934542,0.0024235751,-0.017110763,0.00919771,-0.0013217661,-0.00027764507,0.023210185,-0.021526096,-0.025563588,0.013645429,0.009661914,0.046636276,-0.015739745,-0.046118096,0.011367593,-0.049313545,0.0018082353,-0.037891977,-0.045599915,0.033573803,-0.0009911559,-0.005592035,0.008614757,-0.0046096505,-0.0046366393,0.033185165,0.036143117,0.005195303,-0.011821001,-0.005152121,0.028629493,0.07556804,-0.06598169,0.011853388,0.0036029762,-0.062268067,-0.018449398,-0.0022872826,-0.084636204,-0.046334006,0.05069536,0.0029741423,-0.022098254,-0.011227252,0.009942595,0.0024276234,-0.02061928,-0.002194172,0.024224956,-0.00047331234,-0.03894993,-0.014347132,0.021828368,0.005017178,0.024721546,-0.0011854736,0.014681791,0.03258062,0.011097707,0.051558997,-0.0082747005,0.017952807,-0.035732888,0.009796857,-0.03236471,-0.063736245,0.020770416,0.030356763,0.034243118,0.025995407,-0.02783063,-0.011605092,0.0295579,-0.003978118,-0.024721546,0.021882346,0.033163574,-0.013980088,-0.005214195,0.011713047,-0.021072688,0.028456766,0.0063639088,-0.04197265,0.013418725,-0.024289727,-0.035732888,-0.016301107,0.018168716,-0.01952894,-0.012922135,-0.06632715,0.05544535,-0.05492717,0.010196288,0.018643716,0.03504198,0.01622554,-0.00276633,0.030227218,-0.021126665,0.055877168,-0.06870215,0.0029957332,0.013720998,0.0061587957,-0.019874396,0.04076356,-0.025563588,0.016452242,-0.05363172,0.014811336,-0.043311283,-0.022260185,-0.01813633,0.004466611,0.026729496,-0.0055758418,-0.03659652,-0.0068065217,-0.029860172,-0.0650317,-0.014800541,-0.06507488,0.019377805,0.028003357,0.030745398,-0.041130606,0.04922718,0.0075891907,0.002262993,0.0021617857,-0.073711224,0.0025423248,0.020522121,-0.034178346,0.010714469,-0.005980671,0.06295898,0.006207375,-0.008296291,-0.006698567,-0.0019634196,0.048838545,-0.00086768303,-0.02236814,0.034351073,-0.03607834,0.03674766,-0.018838033,-0.019464169,-0.011389184,-0.002863489,0.0016206646,-0.021990301,-0.0057053873,0.03329312,-0.04225333,-0.010180095,-0.028974947,0.013278385,-0.060670342,0.02461359,-0.03296926,-0.010520151,0.005673001,-0.06481579,-0.03797834,-0.017974399,-0.017628945,0.021536892,0.021450529,0.028931765,-0.026254497,-0.0018689596,-0.035063572,-0.009095154,0.00253018,-0.05889989,0.05617944,0.020586893,-0.027549949,0.017510194,0.0019796127,-0.016398266,0.010336628,0.01328918,-0.011723842,-0.0048741386,0.043829463,0.074445315,-0.0053923195,0.017790876,0.009915607,-0.0121556595,-0.052293085,0.013084067,-0.025541998,0.017035196,0.016840879,0.025649952,-0.067233965,-0.010611912,-0.035624932,0.017197127,0.023490865,0.015145995,-0.008657939,-0.04272833,0.034113575,-0.00083597144,-0.012965317,0.00003643459,0.014206792,-0.023015866,0.010126118,-0.00027224736,0.09076802,-0.03407039,0.007097998,0.007934645,0.029363582,0.017574968,0.05989307,-0.01191816,-0.008161348,-0.009964186,-0.022929503,0.024117,-0.012339182,0.020036327,-0.032602213,0.018708488,-0.0067201583,0.011119298,0.075179406,-0.030961307,0.0073732818,-0.046334006,-0.008226121,0.02830563,0.019895986,-0.0039862143,0.025153363,-0.0560499,0.0014007076,0.0016449543,-0.03843175,0.021536892,0.009753675,-0.027226087,0.006131807,0.05095445,-0.016452242,-0.030831762,-0.0101423105,0.008755097,-0.015437472,-0.0043289694,-0.057561256,0.049659,-0.043980602,-0.0031360737,0.020910757,0.012976113,-0.049313545,-0.030939715,0.037740838,-0.014411905,-0.0009526971,-0.01317043,0.02437609,0.025930634,0.0050036837,-0.033832893,-0.0120585,-0.013224407,-0.019928372,0.0011476896,0.02284314,0.029471537,-0.02882381,0.0134511115,-0.014584633,-0.041087423,0.015178381,-0.034372665,-0.0120153185,-0.0071357824,0.009661914,0.011389184,-0.025261316,-0.0057377736,-0.010671287,0.13239521,0.07967031,0.014109633,0.027247677,-0.028715856,-0.02560677,-0.010655094,0.05859762,-0.008522996,-0.009645721,-0.006083227,0.029687446,-0.069608964,0.0005630494,-0.003092892,0.049486272,-0.041843105,0.04419651,-0.03271017,0.018244285,-0.007173566,-0.025520407,-0.003978118,-0.035689708,-0.013094862,0.035732888,0.017823262,0.0047958717,-0.017186332,-0.046593096,0.011961342,-0.026405632,0.030119263,-0.030637443,0.0032980053,-0.013472702,-0.0027798244,0.032623805,0.00023716221,-0.029018128,-0.029773809,-0.022929503,-0.048622638,-0.014649405,-0.035085164,0.061145343,-0.016160766,-0.03052949,-0.012004524,-0.021159051,0.00477698,0.014066451,-0.053199902,0.0035651922,0.021245414,-0.037157886,0.005635217,0.0021901238,0.025390862,-0.0127278175,0.0399647,-0.0053140526,0.002963347,0.005135928,0.0127278175,-0.027420403,-0.03081017,0.039576065,-0.013062476,0.013494293,0.031565852,0.0077025425,-0.0065636244,-0.004083373,-0.0042480035,0.005251979,-0.005100843,0.0430306,-0.033660166,0.011907364,0.06464306,0.023296548,-0.06032489,0.02383632,-0.024289727,0.01279259,0.015383494,-0.003055108,0.027226087,0.01716474,0.019539736,-0.03776243,-0.008269303,-0.011356797,-0.03629425,0.0003085133,-0.002350706,-0.035927206,0.023188593,0.014303951,0.01305168,0.039036293,-0.04298742,0.0025652652,-0.0045934576,0.02038178,-0.02170962,0.030227218,-0.008290893,0.007767315,-0.0042561,0.025801089,0.025671544,0.0038863565,0.019518146,-0.0027636313,0.016398266,-0.023555638,-0.00553266,0.033940848,0.03603516,0.015545426,-0.015383494,-0.014876109,0.031824943,0.0020875672,0.026621541,-0.04322492,-0.07112032,-0.00020814947,-0.0016773406,-0.0057053873,0.026189724,-0.027441995,-0.031501077,-0.004102265,0.015145995,-0.025282908,0.039705608,-0.03029199,-0.01825508,-0.027161313,-0.015599403,-0.011227252,-0.013235203,0.011853388,0.011076116,-0.025628362,-0.008576972,0.0039619245,0.0075783953,0.017045991,0.019442577,-0.021126665,0.0067741354,-0.026016997,0.047802184,0.05311354,-0.003589482,0.050349906,0.0018163319,-0.028348811,0.0067201583,0.006569022,0.01863292,-0.032213576,-0.012134069,0.01873008,0.017186332,0.029234037,-0.039381746,-0.010692878,0.039338563,-0.023793139,0.02759313,0.008755097,-0.006050841,0.00297954,-0.01988519,-0.014152815,-0.007173566,0.015815312,-0.024052229,-0.021439733,0.030486308,0.012641454,0.047888547,0.029924944,0.003149568,-0.012360773,-0.046809003,0.029730627,0.0038647656,-0.016614174,0.02532609,-0.018179512,-0.011939751,-0.0435056,-0.042339694,0.0006669554,-0.0058889096,-0.0025072396,0.015728949,0.0104337875,0.014703382,0.010844014,-0.007481236,-0.026427224,-0.004833656,0.025239727,0.06282943,0.024117,0.015782926,0.026491996,-0.013008499,-0.007994019,-0.01898917,-0.025434043,0.01366702,-0.0036164706,-0.010692878,0.012684636,-0.0028877787,0.028996537,-0.012047705,-0.017488604,0.021191439,-0.023274956,0.0043856455,0.005597433,0.016193151,-0.019215874,0.042534012,-0.010563333,0.036164705,0.026902223,-0.014735769,-0.01622554,0.0085122,0.013397134,0.00900879,0.029622672,0.025002226,0.0010039754,-0.0023695978,0.021526096,-0.016463038,-0.012242023,0.003338488,-0.018816443,0.024332909,0.0078104967,-0.0033681756,-0.0107198665,0.047629457,0.039705608,0.02024144,0.023123821,0.013105658,0.016117584,-0.018103944,-0.02655677,0.016689742,-0.014260769,-0.005381524,0.008641745,0.0033897664,-0.011702251,-0.0059914663,-0.0058349324,0.009014188,0.0078374855,0.0046150484,-0.030486308,0.0065150447,-0.0024087313,0.0075676,-0.009721288,0.002596302,-0.013224407,0.0028661878,-0.018147126,-0.013321566,0.033703346,-0.010061345,-0.0073301,-0.0053950185,-0.0248295,0.033897664,0.028003357,-0.028327221,-0.009640323,-0.025045408,-0.03679084,0.019723259,0.026902223,-0.018190308,0.017736899,-0.018967578,0.023965865,-0.013483498,-0.044822644,0.0014695285,-0.024980636,-0.022217004,-0.03206244,0.027787449,-0.015027245,-0.028521538,0.036164705,0.031004488,-0.01640906,-0.071465775,-0.003511215,0.02024144,-0.017391445,-0.010795435,-0.009985777,0.021795982,0.038388565,0.0061803865,-0.055747624,0.01586929,0.0033897664,0.018665306,-0.012717022,0.041648787,-0.0078050992,0.03556016,-0.0018838033,0.013807361,0.008684928,-0.0125874765,0.010174697,-0.003171159,0.04542719,0.007173566,0.016063606,-0.010606514,0.0049335137,0.061447613,-0.022324959,0.029968126,-0.0022494986,-0.0045151906,0.024592,0.060670342,0.017369855,-0.019097123,0.0011166527,0.005980671,-0.002561217,-0.016981218,-0.012263614,-0.002225209,0.029428355,0.00006709194,0.038107883,0.021169847,0.04244765,-0.0010606515,-0.00080021156,-0.007481236,-0.06278625,0.026405632,-0.03601357,0.014239178,-0.028759038,-0.014390314,0.008576972,-0.0052789673,-0.03478289,-0.017963603,-0.012198841,0.001350104,0.011475547,0.034243118,-0.04741355,0.017952807,-0.017402241,0.018330649,-0.014411905,0.007713338,0.026189724,0.025865862,0.032494258,0.006282943,0.017542582,-0.016970424,-0.023944274,-0.009845437,-0.010417595,0.028327221,0.0073408955,0.050263543,0.008166746,-0.024332909,0.037373796,-0.008290893,0.01563179,0.009240892,0.017726103,0.029968126,0.018999964,-0.012684636,-0.0018730079,-0.029277219,0.021029506,0.042685147,-0.012576682,0.02177439,-0.02196871,0.002615194,-0.012144864,-0.024117,0.00056169997,-0.056524895,-0.015977243,-0.032796532,0.012511909,0.015081222,0.029989718,-0.004984792,-0.02480791,-0.023318138,0.015718153,-0.004774281,-0.039403338,0.04987491,0.00032639323,0.01839542,-0.012371568,-0.0025288307,0.023253366,0.011238048,-0.010741457,0.006191182,0.029190855,0.0024397683,-0.021428937,-0.02336132,-0.0063099316,-0.017240308,0.0039457316,-0.020306213,-0.0024883477,0.009742879,-0.014357928,0.030918125,0.0054759844,-0.08191576,-0.007276123,0.020349395,0.022907913,-0.004391043,-0.0073786797,0.03376812,0.02759313,-0.0019202379,0.02808972,0.018784055,-0.064686246,-0.002078121,0.00039538278,-0.042274922,-0.023642002,-0.008733506,0.034243118,-0.06339079,-0.0008184289,0.00057856785,0.06347716,-0.016786901,-0.013688611,0.0065636244,-0.03104767,-0.00158423,-0.04225333,-0.052336268,-0.0024357198,-0.0032899086,0.01926985,0.0065042493,0.018740874,0.03674766,-0.040849924,-0.006736351,0.030723806,0.015728949,-0.033573803,0.027441995,-0.0047688833,0.007195157,-0.006649988,0.0032035452,0.020943142,0.051343087,0.025693133,-0.009888618,-0.0063693062,0.0058133416,-0.009904811,-0.009203108,0.039101064,0.001269813,-0.0047095083,-0.015480653,-0.00024880102,-0.021245414,-0.018827237,-0.016538605,-0.011713047,0.048795365,0.020101098,0.035473797,-0.016538605,0.03525789,0.024268137,-0.008469018,0.017240308,-0.0057593645,0.017056787,0.029622672,0.019053942,-0.03603516,0.01803917,-0.029169265,0.030874943,-0.036164705,0.014347132,-0.029946536,-0.021817574,-0.008155951,0.0104229925,0.013375543,0.03525789,-0.028219266,0.0016786901,0.019194283,0.0074380543,-0.019464169,0.0095701525,0.0026799666,0.024246546,0.010676685,-0.007616179,0.048277184,0.011173274,-0.0038242827,-0.0036164706,0.033660166,0.00626675,0.0036137716,-0.0004672399,0.016635764,-0.010401402,-0.01577213,-0.038712427,0.010649696,0.02213064,-0.015847698,0.009305664,0.0022859334,0.010331231,0.014152815,-0.01097356,0.022713594,-0.014930086,-0.00074286084,0.029903354,-0.028780628,0.04363515,0.008971007,0.03052949,0.0044207303,-0.03130676,0.006676976,0.018568147,-0.018643716,0.018719284,0.028845401,-0.00023378863,0.01352668,0.0095701525,-0.014444292,0.022864731,0.005308655,0.024851091,0.029385174,0.009159926,0.020705644,0.026146542,-0.044563554,0.002064627,0.0011901967,-0.030205626,-0.006417886,-0.01314884,-0.023987455,0.0014452388,-0.0043451623,0.021007916,0.008668734,0.008420439,0.014444292,-0.03283971,0.017823262,0.0073247026,-0.04348401,-0.006212773,0.0012428244,-0.0134511115,-0.026621541,0.008960211,-0.0056460123,0.01934542,-0.022195414,0.011464751,0.022778368,-0.00076512643,-0.010109925,0.004836355,-0.023231775,-0.021450529,-0.005346439,-0.00602925,0.015351108,0.021461325,-0.023793139,-0.018902807,-0.017682921,0.012447136,0.0072437366,-0.011745432,0.002558518,-0.0060076592,0.009607937,0.017682921,0.010833219,-0.0039403336,-0.007535213,-0.024592,0.041346513,-0.048536275,-0.0023048252,0.016020425,0.0151352,0.014714178,-0.03106926,0.006148,-0.0013190672,-0.0032008463,-0.019712463,-0.010396004,-0.016873265,0.018557353,0.015102813,-0.002844597,0.00366505,0.0033519825,-0.0070602144,-0.020889167,0.02308064,-0.011032934,-0.00955396,0.004140049,0.0067741354,-0.0045124916,0.020349395,0.008841461,-0.005516467,0.025045408,0.014832927,0.0025882055,0.027938584,0.001898647,0.030745398,0.0041886284,-0.007891463,0.0174994,0.0068065217,-0.0073193046,0.015307927,0.012328386,-0.0016530509,-0.009235495,-0.0039970097,-0.017153945,0.013602247,0.0054382,-0.052120358,-0.010827821,-0.009705096,0.010520151,0.0070062373,0.014325541,-0.011874978,-0.03005449,-0.0005593384,-0.062699884,-0.00020342648,0.0021860756,0.03620789,0.0013588753,-0.0034788288,-0.014519859,-0.009634925,-0.034178346,-0.026707904,0.0049227183,-0.00832328,-0.0054759844,0.008447427,0.04195106,-0.03225676,-0.024289727,0.04328969,-0.0031090851,-0.01023947,0.012717022,-0.031868123,-0.0077565196,-0.0008845509,0.010174697,0.0002830428,-0.0014195996,0.066111244,0.049443092,0.0007975127,0.006207375,0.051602177,0.03927379,0.012824976,0.01142157,0.01626872,-0.0108602075,0.0005802546,0.008647143,0.010741457,-0.036661297,-0.033185165,0.023167003,-0.015998835,-0.026384043,-0.005619024,0.06861578,-0.03795675,0.0030335172,-0.008101974,-0.016797697,-0.013602247,0.03378971,0.02759313,0.0042237137,0.011756228,0.025239727,0.025412453,0.045815825,0.027960176,-0.034394253,-0.04935673,-0.018060762,-0.0006342318,0.015307927,0.0041724355,-0.0047203037,-0.009796857,-0.01061731,-0.00031121215,0.014984063,0.00234126,-0.007270725,-0.0033061018,-0.021979505,0.001241475,-0.040353335,-0.0014587331,-0.052508995,0.0134511115,-0.0035948798,-0.01586929,0.03778402,0.00009673722,-0.010908787,0.01605281,0.018784055,0.02036019,0.012036909,0.033919256,-0.0038863565,0.009230097,0.03029199,0.021342574,0.0015896277,0.0071303844,-0.0141744055,0.022519277,-0.023059048,-0.02957949,-0.038712427,-0.006855101,-0.015815312,-0.0025220835,0.0027339438,-0.014984063,0.031177215,0.027916994,0.0041184584,-0.002523433,-0.008339473,0.005511069,0.014152815,-0.007994019,-0.010763048,0.009095154,-0.003130676,0.03471812,0.018103944,0.027636312,-0.000997903,-0.018805647,0.0070764073,0.020673256,-0.022260185,-0.048709,-0.003014625,0.0015693863,-0.008307087,-0.0094244145,-0.015912471,-0.0063639088,-0.023490865,-0.024548817,-0.019593714,0.0051602176,0.014347132,-0.042685147,-0.0039187428,-0.0011341954,0.018006785,-0.046247642,-0.041778333,-0.003227835,-0.007200555,0.015858494,0.036574934,-0.033141986,0.035624932,-0.030421535,-0.000983734,-0.033509027,-0.010611912,0.020532917,-0.015124404,-0.026643133,-0.0058295345,0.026470406,-0.0104337875,-0.022648823,0.03804311,0.03724425,-0.02357723,-0.01664656,0.0074434523,0.030982897,-0.036423795,0.053329445,-0.032623805,-0.0040698787,0.00046858934,0.010126118,-0.0014169008,0.007875269,-0.0055083707,-0.0019634196,-0.042555604,-0.001929684,0.022217004,0.009408222,0.01960451,-0.0072599296,-0.0052627744,-0.003934936,-0.009807653,0.042037424,0.012760203,0.0038431748,0.004574565,0.03620789,0.016722128,-0.02161246,0.01950735,0.013904519,-0.012965317,0.009435209,0.013429521,0.0092786765,-0.021644846,-0.028003357,-0.00059206213,-0.03005449,-0.005861921,-0.024246546,0.013030089,0.013720998,-0.019852804,-0.018406216,-0.004393742,0.01829826,0.02733404,-0.025714725,-0.032386303,0.00015282287,0.02705336,0.007465043,-0.016894855,-0.0033843687,-0.0029039718,-0.0081235645,0.01837383,-0.015286336,-0.019291442,0.0046096505,0.028154494,0.03622948,-0.004884934,0.00014017198,0.0053572343,-0.0035813854,-0.00248295,-0.024743136,-0.001669244,-0.009899413,-0.0013237902,-0.00837186,0.0050036837,-0.022713594,-0.02123462,0.02534768,-0.018827237,0.0037244249,-0.031457897,-0.0082747005,0.04551355,0.048579454,0.01305168,0.040137425,0.017337468,-0.03873402,0.00026735567,0.019712463,0.0022333055,0.022055073,-0.023922684,-0.004026697,-0.022281777,-0.0009999272,0.020068713,-0.031349942,0.012932931,-0.020446554,-0.0055488534,0.008366462,0.00595908,-0.0007550057,-0.022584049,-0.017045991,0.014066451,-0.025995407,0.012425546,-0.04197265,0.003511215,-0.008760495,0.018935192,-0.0021982205,0.025563588,0.027031768,0.025174953,-0.033163574,0.017628945,0.039813563,0.023296548,-0.009715891,-0.025757907,-0.007923849,-0.011173274,0.0047284,-0.018870419,0.004528685,0.027916994,0.04547037,0.031673804,-0.007459645,0.025865862,-0.00037885227,-0.023749957,-0.004507094,0.03730902,-0.0107198665,0.04074197,-0.019615306,-0.016549401,0.004029396,-0.023706775,-0.0038404758,-0.030313581,0.017294286,0.023015866,0.010951969,-0.002480251,-0.0089871995,-0.04102265,0.02534768,0.029449945,0.017726103,-0.012749408,-0.008668734,0.008911631,-0.0046906164,0.01735906,0.001936431,-0.030659035,-0.014638609,0.02125621,-0.018827237,0.029514719,0.0048444513,-0.005046866,-0.0037595101,-0.0012185347,0.012231227,0.03821584,-0.020165872,0.022713594,-0.025002226,-0.017769285,0.009305664,-0.020511325,-0.02582268,-0.0217528,0.033422664,-0.00043654037,0.0012785842,0.006930669,-0.055963535,0.027701085,0.004779679,-0.0014722274,-0.022087459,0.025520407,0.014962472]},{"id":"interface-AttachmentPayloadOptions","type":"interface","source":"main","text":"Interface: AttachmentPayloadOptions\nDescription: Builder for message attachment metadata (filename, description, spoiler).\nActual file data is passed separately when sending (e.g. FormData).\nProperties: description: string, name: string, spoiler: boolean","meta":{"url":"/docs/typedefs/AttachmentPayloadOptions"},"embedding":[0.010607848,0.023117354,-0.020843863,0.02201248,-0.051079154,-0.03344367,0.0013465646,-0.030235289,0.012323589,-0.009253316,-0.020790745,-0.01502203,0.00569966,-0.0331887,-0.020567646,-0.0012210711,0.016126905,0.029980319,0.0040078224,0.040689092,0.0066982955,0.012961016,0.041623984,0.007627877,-0.011356825,-0.03694952,0.0026453221,0.04963432,-0.0010424588,-0.018517256,0.033571158,-0.02568831,0.07967838,0.026771935,-0.0152663775,0.027048154,0.03686453,0.014809554,-0.011973004,-0.026708193,-0.041900203,0.0059599425,-0.0003039398,0.020727003,-0.01162242,0.07360157,0.029406633,0.03588714,0.0024700298,0.007303851,-0.004318568,0.010028852,-0.0031765113,0.07997584,-0.0016626222,-0.021300687,-0.039371744,0.018623494,0.0031074567,0.014076513,-0.034081098,-0.0060608685,-0.036375836,0.00746852,-0.026283242,-0.01100624,-0.07292165,0.07415401,0.010645031,0.050101765,0.07963588,-0.0050489535,-0.018262284,0.058048356,0.0072082374,-0.028599225,-0.024158483,0.009444544,0.014745812,-0.030596497,-0.03004406,0.05379884,-0.03038402,-0.047934514,-0.054308783,0.010533482,-0.030065307,0.0017994033,-0.03153139,0.0055243676,-0.027791819,-0.0106556555,-0.05571112,-0.033358682,0.023733532,0.006932019,-0.024370959,-0.013088502,0.0054234415,0.02698441,0.005022394,-0.024052246,-0.058770772,-0.02332983,0.021863747,-0.027961798,-0.019526515,0.023138601,0.023287334,0.01288665,-0.04665966,0.021746885,-0.013959652,0.024498446,-0.011590548,-0.052991435,0.02821677,0.035440944,0.028280511,-0.02611326,-0.018602245,-0.03469728,0.016434994,-0.0009900038,-0.019122811,0.0025324444,-0.013215987,0.012961016,-0.03153139,0.013460334,0.02689942,0.019080315,0.03852184,-0.024328465,0.0034952248,-0.0013625002,-0.009959797,0.0062308493,-0.013247859,-0.032083828,0.02821677,-0.007224173,0.035313457,-0.009864183,-0.032636262,0.016764332,-0.01002354,0.035674665,-0.021066964,0.0065920576,-0.014193375,0.046829637,-0.034824762,0.03694952,0.018400393,-0.026049517,0.0077075553,0.0016280948,-0.036120865,-0.020344546,0.02296862,-0.02013207,-0.0037475398,-0.04202769,-0.0065601864,-0.02383977,0.0628928,-0.008127195,-0.041432757,0.021566281,0.02689942,-0.046787143,-0.015223882,0.010405996,-0.018740354,0.009694203,0.027579343,-0.06255284,-0.0082121845,-0.00030211385,0.04759455,0.038033146,-0.03858558,-0.022246202,-0.02543334,0.013354097,0.012121737,0.03703451,0.010889378,0.0053623547,-0.025008388,0.009901366,0.019016573,-0.026325736,0.0036811412,-0.02243743,-0.011856142,0.009147078,-0.02153441,-0.024583437,0.054181296,0.019101564,0.024222227,-0.004958651,-0.024987139,0.022267452,0.008684943,-0.0071444944,-0.027451858,-0.03722574,0.028790453,-0.021863747,0.01816667,-0.0017409725,0.019632753,0.004963963,0.00766506,0.04742457,0.008052828,-0.020429537,-0.023521056,0.023096105,0.06590995,-0.037841916,-0.011208092,-0.011548053,-0.034994744,-0.0056252936,-0.050611705,-0.0015922396,-0.034059852,0.019409653,-0.0068789,-0.031892598,-0.014129632,0.0034739773,-0.0053278278,-0.04272886,0.014745812,-0.0257733,0.026198251,-0.015988795,0.004177803,0.03374114,-0.011739281,0.014671446,-0.0010683542,0.01367281,0.0132797295,0.018198542,0.04619221,-0.0071444944,0.018570375,-0.028577978,0.010427244,-0.009635772,-0.041900203,0.0018737699,0.04733958,-0.0064698844,0.025050882,-0.058813266,-0.015234506,0.011186845,-0.00421233,0.017051173,0.059195723,0.036375836,0.003882993,-0.015531972,0.028280511,0.008684943,0.004480581,0.050271746,-0.012472322,0.03911677,-0.018570375,-0.02917291,-0.028620474,0.005550927,0.0025244767,-0.02507213,-0.024413455,0.03773568,-0.0375657,-0.005051609,0.049761802,0.02330858,0.04315381,0.038564336,0.04436492,-0.028025541,0.062340364,-0.03248753,-0.01842164,0.028684216,0.014862673,-0.042898837,0.06421015,0.010788453,0.000005011023,-0.03012905,0.065230034,-0.026559459,-0.0048471014,-0.048316967,-0.0045443233,-0.0073144753,-0.016530607,-0.039626714,0.00039473997,-0.032848738,-0.052608978,-0.0014129633,-0.030617746,0.008111259,-0.005396882,0.01633938,-0.020769497,0.030107804,0.026559459,0.031913847,-0.022203708,-0.0864776,0.008121883,-0.015553219,-0.0079200305,-0.018177293,0.012036747,0.06879962,-0.0030862093,-0.0011560004,-0.022989867,-0.0035058486,0.01821979,0.0010265231,-0.01979211,0.043854978,-0.008615889,0.04674465,-0.002945444,0.0009641084,-0.0014461626,0.016466865,-0.02978909,-0.06149046,-0.041454006,0.0016772299,0.006480508,-0.006443325,-0.016838698,0.007526951,-0.05137662,-0.020557022,-0.011845519,-0.008419349,0.019059068,-0.04245264,-0.019409653,-0.008063452,-0.023457315,0.024392208,-0.011781776,0.013269106,-0.0054924963,0.00216858,-0.033953615,0.005566863,0.0011931837,-0.03091521,0.0060555567,0.054351278,-0.046404686,0.0035270962,0.028620474,-0.012493569,0.0070966873,-0.02218246,-0.018665988,-0.032551274,0.056561023,0.067142315,-0.03248753,0.014490841,0.0022190427,-0.010103218,-0.014639574,0.030617746,-0.04963432,0.013864038,0.011749905,0.0235848,-0.059620675,0.00805814,-0.064167656,0.05834582,0.047297087,0.024774663,-0.0006629905,-0.018357899,0.00915239,-0.022522422,-0.030766478,0.02942788,0.022288699,-0.04665966,0.022543669,-0.015946299,0.061915413,-0.031042697,0.046404686,-0.008116571,0.024647178,0.022267452,0.027770571,0.0012615743,-0.00226021,-0.011824272,0.022479927,0.024795912,-0.02507213,0.0331887,-0.034548543,0.025603319,0.011749905,-0.0020304706,0.041793965,-0.026346983,0.01903782,-0.06357272,-0.038415603,0.02271365,0.03928675,0.008005021,0.015903804,-0.027558096,0.009970421,0.014448346,-0.039265506,0.016233142,-0.026793182,-0.021258192,0.015085773,0.037841916,-0.05222652,0.010161649,-0.00078284007,-0.009115206,0.0039865747,-0.023691038,-0.03399611,0.0454273,-0.035950884,0.029767843,-0.013322225,0.010862819,-0.055541143,-0.007617253,0.049421843,0.0001180236,0.019409653,0.024880901,-0.0024182387,-0.018039186,-0.016211893,-0.052184027,-0.024328465,-0.017847957,-0.029130416,0.025794547,-0.0018830657,0.0131522445,0.01305663,0.021863747,0.0006500428,-0.03380488,0.034612287,-0.06748228,0.024222227,0.014448346,-0.022734897,0.03607837,-0.0375657,-0.003096833,-0.019760238,0.15043278,0.06157545,0.03004406,0.013322225,-0.0257733,-0.010602537,-0.03371989,0.05320391,-0.0074950797,0.012323589,-0.009598589,0.0108734425,-0.026092013,0.023648543,-0.0003970639,0.025029635,-0.035015993,-0.0036705174,-0.029682852,0.030256536,-0.018549126,-0.017359262,0.016913064,-0.06076804,0.013035383,-0.028981682,0.02838675,0.02243743,-0.024795912,-0.04636219,-0.0029799712,-0.03522847,0.03301872,-0.00991199,-0.027728075,-0.032785,0.01785858,0.039796695,0.007558822,-0.0022761456,-0.03291248,-0.031340163,-0.058770772,-0.017901076,-0.036290847,0.0085574575,-0.027558096,-0.00442215,0.016169399,-0.020142695,-0.029682852,0.038245622,-0.028854197,0.010995616,-0.0049480274,-0.010087282,0.011909261,0.047552057,0.008934602,-0.002262866,0.039265506,-0.0067036077,0.01445897,-0.0084671555,-0.000638423,-0.023754781,-0.037331976,0.03442106,-0.0074366485,-0.004868349,0.030851468,-0.014618327,-0.0058696405,0.01687057,-0.019112187,-0.0018299468,-0.018060433,0.008982409,-0.015903804,0.01210049,0.028365502,-0.011505558,-0.020971349,0.016413746,-0.011154973,0.013088502,0.03293373,-0.0053836023,-0.011611796,0.011027488,0.008111259,-0.022331193,-0.0018047153,-0.0033225883,-0.04840196,-0.00040967966,-0.016286261,-0.032954976,0.020503903,-0.0077075553,0.00540485,0.008993033,0.0060130614,-0.0012589184,0.0038086264,0.019845229,-0.0055403034,0.023436068,0.00057667226,0.023457315,-0.028344255,0.023074858,0.020790745,0.005747467,0.016774954,0.025752053,-0.018357899,-0.01861287,-0.005351731,0.03669455,0.033486165,-0.0005746803,-0.03765069,-0.004369031,0.02611326,0.016222518,0.063360244,-0.06408267,-0.055413656,-0.030490259,0.012227975,0.006443325,-0.010623784,-0.000589952,-0.02366979,-0.002513853,0.013577196,-0.024009751,0.030787725,-0.011261211,-0.0011931837,-0.016158774,-0.007372906,0.00226021,0.013779048,0.00060953957,0.014225246,-0.010862819,-0.013609067,0.009317058,-0.0009873479,0.019399028,-0.0011978316,-0.023478562,0.027919304,0.008738062,0.03563217,0.06561249,0.010560041,0.031573884,-0.0015616962,-0.022033727,0.03947798,0.004175147,0.022224955,-0.023436068,-0.009465791,0.0061564827,0.011813647,0.00943392,-0.011441815,0.0077978573,0.04340878,-0.0036466138,-0.00016433666,0.014841426,-0.014246494,-0.005848393,-0.013545324,0.007171054,-0.0029295085,0.012323589,-0.020344546,-0.00006000778,0.0021433483,0.005298612,0.019473396,-0.0030118427,-0.015446981,-0.019250296,-0.053076424,0.0095614055,-0.024370959,0.0052348697,0.018719107,-0.025327101,0.008700879,-0.021736262,-0.0576659,0.0039653275,0.016679341,-0.0124404505,0.04226141,0.037884414,-0.0042707613,0.019590257,-0.010804388,-0.018209165,-0.031233924,0.051589094,0.061532956,0.006857652,0.036397085,0.043302543,-0.02568831,-0.008525587,-0.0010232031,-0.040922817,0.0057846503,0.018729731,-0.040391628,-0.021385677,0.019303415,0.025093377,0.0032216625,-0.03588714,0.0077925455,-0.027430609,0.007627877,-0.03660956,0.011080607,-0.02061014,0.00522159,-0.007181678,0.01196238,-0.0021977953,-0.036800787,-0.017040549,0.0076916195,-0.0050303615,0.019420277,0.025114626,0.04576726,-0.02524211,0.014267742,0.015298248,-0.018485384,0.013502829,0.018071055,-0.0039600153,0.049846794,0.020036457,0.00056837243,0.011696786,0.020705754,0.0410503,0.03658831,0.044322427,0.012419203,0.017762966,-0.028407998,-0.020642012,0.0026280584,-0.021778757,-0.010597224,0.006735479,0.003787379,0.001767532,0.010299758,-0.0049480274,-0.0018246348,0.01869786,-0.004963963,0.0033783633,0.0018405706,0.028323008,0.04202769,-0.023181096,0.010544105,-0.009216133,-0.0150114065,-0.007463208,0.0019507923,0.0414965,-0.0026971132,0.002756872,-0.017401759,-0.05180157,-0.0040184464,0.0336349,-0.026623202,-0.030107804,-0.022862382,-0.0353772,0.038118135,0.030490259,0.0026373544,0.009672955,-0.0052242456,0.010390061,0.009492351,-0.044577397,-0.0032960288,-0.034378566,-0.0112930825,-0.0117924,0.03093646,-0.018857216,-0.065654986,0.024434702,0.027983047,-0.032360047,-0.06947955,-0.013439086,0.029236654,-0.025645815,-0.028153026,0.01162242,0.017454877,0.056221064,0.03911677,-0.04107155,0.015616962,-0.021406924,0.05231151,-0.010204145,0.013130996,0.0025191647,-0.0077288025,-0.010868131,0.01305663,-0.006294592,-0.0034553856,-0.011059359,-0.029321643,0.024710922,-0.013258482,0.012844155,-0.0064698844,0.023733532,0.045639776,-0.016180024,0.015181387,0.0017595642,-0.04419494,0.014023394,0.0091789495,0.030978953,-0.012302342,0.015733823,0.0026439943,0.016041914,0.019643376,-0.0062467847,0.0050330176,0.036567062,-0.0026293865,0.013970275,0.033528663,0.05188656,-0.0028817013,0.029364139,-0.011208092,-0.05205654,0.041092794,-0.013800295,0.028705463,-0.020567646,-0.038649324,0.003428826,-0.008111259,-0.028854197,-0.005298612,-0.0067142313,0.015627585,0.013980899,-0.0052242456,-0.020004585,0.020971349,-0.04315381,-0.006873588,0.0045549474,0.0146289505,0.002408943,0.044789873,0.012759164,-0.009109895,-0.018294156,-0.0080846995,-0.0139915235,-0.022862382,-0.0021911555,0.0550312,-0.017423006,0.044152446,0.026963163,-0.016679341,0.032168817,0.001278174,0.016796201,0.010878755,0.015988795,0.033677395,-0.00071444944,-0.0024700298,-0.03762944,-0.03669455,-0.014203999,0.0410503,-0.0029799712,0.033082463,-0.009795128,0.007426025,0.004860381,-0.0045018285,-0.03442106,-0.019537138,-0.0018113551,-0.03155264,0.022203708,0.011973004,0.042070184,0.007319787,-0.043642502,-0.0288117,0.03858558,-0.020344546,-0.051759075,0.00816969,0.028875444,0.015128268,0.012334213,0.0041538994,0.035419695,0.010161649,-0.028407998,0.015606338,0.0353772,-0.024753416,-0.03221131,-0.018442888,0.022819888,-0.04132652,-0.00036685253,0.0018591621,-0.003633334,0.0034660094,0.0034580417,0.031913847,0.021566281,-0.058133345,-0.013970275,0.025454586,0.021948738,0.022267452,0.010161649,0.0414965,0.020588893,-0.007925343,0.01833665,0.0010577305,-0.07228422,0.01563821,-0.0136621855,-0.049974278,-0.037778176,-0.0077288025,0.021863747,-0.04610722,-0.0009720762,-0.0065761223,0.017847957,-0.046702154,0.02288363,-0.015181387,-0.06140547,-0.028960435,-0.014097761,-0.06008812,-0.010310383,0.0336349,0.019133434,-0.020588893,0.0019733678,0.039223008,-0.03180761,-0.016519984,0.040179152,-0.019250296,0.0060714926,0.020461408,0.008286552,0.004804606,-0.012918521,0.0018073713,-0.012642303,0.06450762,0.024923397,0.01493704,-0.002156628,0.010140401,0.03563217,-0.0014461626,0.028046789,-0.02428597,-0.016350003,-0.014097761,0.04245264,-0.017911699,0.013630315,-0.003694421,-0.017391134,0.033316188,0.002940132,0.019197177,-0.02279864,0.01934591,-0.0027382802,-0.012982264,0.023606047,-0.008238744,0.029767843,0.018740354,0.0046558734,-0.02813178,0.006044933,0.008047516,-0.011271834,-0.021927489,-0.004610722,-0.0489119,0.00822812,-0.012546688,0.015616962,0.037523203,0.028004294,-0.020015208,0.017369887,0.027728075,0.0065920576,-0.027898056,0.015829438,0.0054765604,0.011983628,0.002654618,-0.004663841,0.051079154,-0.023627294,0.007479144,0.0060927398,0.002606811,-0.0064592604,0.0073941536,-0.0103263175,0.009109895,0.00057235634,-0.010352877,-0.041963946,0.026453221,0.044959854,-0.021927489,-0.007325099,0.0070913755,0.021746885,-0.013046007,0.0044380855,0.0065017557,-0.018134799,-0.011069982,0.024647178,-0.007712867,0.036057122,0.0011646323,0.002940132,0.010777828,-0.022819888,0.038564336,-0.0024129269,-0.006910771,0.03074523,0.03303997,0.016955558,-0.013215987,0.016764332,-0.01061316,0.033316188,0.00052753725,0.014427098,0.006390206,-0.005513744,-0.0014368667,0.015553219,-0.034527298,-0.044407416,0.0040078224,-0.017274272,-0.02847174,-0.005933383,0.0036997327,0.015701953,-0.011994252,0.043472525,0.0023465282,0.021693766,0.008435285,-0.03862808,0.006432701,-0.004812574,-0.033847377,0.00246339,-0.0041512437,-0.012366084,-0.024477199,-0.011271834,-0.0072772917,0.03518597,-0.022224955,-0.016137527,0.03316745,0.0066982955,-0.03178636,-0.0011214731,-0.009832311,-0.028790453,0.04270761,0.01895283,0.0375657,0.0012828219,-0.019048445,-0.0075057033,-0.006719543,0.01732739,0.028004294,-0.0059068236,-0.008461844,0.041199032,-0.0053012683,-0.018517256,0.023223592,-0.00943392,0.018995326,0.00041864347,0.019664623,-0.026155755,0.015128268,-0.025815794,0.009975733,-0.019654,-0.04500235,0.01165429,-0.008477779,0.010554729,-0.000883766,0.033613652,-0.03563217,0.026538212,0.020599516,-0.018432265,0.019452147,-0.01092125,-0.010846883,-0.021587528,0.030192794,0.012706045,0.002159284,0.007479144,0.007803169,-0.04500235,0.010044788,0.014129632,-0.02785556,0.029831585,0.026856925,0.011271834,0.05188656,-0.013109749,0.005157847,-0.0062255375,0.008690255,0.0009488367,0.003136672,-0.0025231487,0.013736553,0.013024759,0.027536847,0.003481945,-0.020078951,-0.009338306,0.02324484,-0.02392476,-0.06752477,-0.019271543,0.0067461026,0.012323589,0.003189791,0.04444991,-0.0027409361,-0.037969403,-0.039711703,-0.017401759,0.01533012,-0.030490259,0.006480508,-0.004137964,-0.014023394,0.00766506,-0.012068618,-0.00569966,-0.022394937,-0.0008930618,-0.037268233,-0.0032694694,0.033316188,0.013938405,0.0014196031,-0.007718179,0.050654203,-0.021449419,-0.019887723,0.014480217,-0.046319697,0.010586601,-0.0010856179,0.0015045934,-0.011452439,0.00509676,0.06051307,0.04865693,0.030235289,0.0010776501,0.05099416,0.03522847,-0.0008631824,0.0056837243,0.020673884,-0.0059386953,0.032700006,0.0005604046,-0.0035802152,-0.035802152,-0.013014135,0.0071391826,-0.0060289972,-0.026304489,0.0068098456,0.028174274,-0.009364866,0.027961798,-0.006034309,-0.013577196,-0.017911699,0.017061796,0.022692403,-0.00452042,0.015670082,0.028705463,0.014809554,0.052269015,0.037331976,0.00065070676,-0.0073835296,-0.018963454,0.013417839,0.0052720527,-0.018676613,-0.010315694,-0.010347566,-0.008164378,0.025199614,-0.00017330048,0.0083396705,-0.014108385,-0.03221131,-0.051419113,0.012281094,-0.027451858,0.016158774,-0.046404686,0.025900785,-0.0020729657,0.0054393774,0.034612287,0.0057102838,-0.011813647,0.01855975,0.013162868,0.00036784852,-0.021013845,0.0055934223,-0.00343945,0.01698743,0.015786942,0.03805439,0.009747322,0.013980899,-0.021300687,0.015925052,-0.00197204,-0.0017117572,-0.02262866,-0.0125148175,-0.0072613563,-0.011898638,-0.0032588458,0.018230412,0.011144349,0.02136443,-0.004902876,-0.014671446,-0.021566281,0.011611796,0.0022880975,-0.003343836,0.0019733678,-0.0046372814,-0.046829637,0.03588714,0.008865547,0.0075003915,0.019834604,-0.045044843,0.01384279,0.00775005,0.009986357,-0.003928144,-0.026963163,0.015277001,0.013215987,-0.0022947374,-0.0366733,0.014055266,-0.028025541,-0.036312092,-0.021927489,0.0035536557,0.012142985,-0.030872716,-0.011686162,-0.003782067,0.0062096016,-0.036482073,-0.035759658,0.017253025,-0.0046319696,0.02490215,0.03206258,-0.0027728076,0.019133434,-0.024710922,-0.013290353,-0.015404486,0.026538212,0.026283242,-0.015712576,-0.037310727,-0.021098835,0.021502538,0.008881483,-0.01516014,0.02541209,0.023521056,-0.008435285,0.008908043,0.015446981,0.060045626,-0.040412873,0.01415088,-0.029852832,-0.022246202,-0.023457315,0.037268233,0.0034049228,0.020323299,-0.0008439268,-0.020365793,-0.063657716,0.019069692,-0.0034978809,-0.018464137,0.018432265,-0.0015351367,-0.006932019,-0.0016002074,0.016307509,0.03520722,-0.014820178,-0.037438214,0.008020957,0.0074154013,0.030957706,0.004122028,0.0310002,-0.0011121774,0.012387332,-0.0004611386,0.032445036,0.026941916,-0.005619982,-0.017242402,-0.009221444,-0.0032296302,0.0013372687,-0.023074858,0.0051870625,-0.01721053,-0.012079242,-0.015213259,0.0070860637,-0.013800295,0.042410146,-0.011888014,-0.020673884,-0.009147078,0.00620429,-0.003824562,-0.0134072155,0.0025085409,-0.026049517,-0.017975442,-0.004921468,-0.018017936,-0.008414037,0.02454094,0.012599807,0.06578247,-0.00746852,-0.008939914,-0.0045868186,-0.0049081882,-0.015202635,0.0095614055,0.016434994,-0.0082493685,-0.011229339,0.009449855,0.010358189,-0.005619982,-0.019005949,0.04270761,-0.021715013,-0.0014421786,-0.014480217,-0.0065601864,0.04759455,0.0327425,0.016562479,0.018793473,0.011611796,-0.022479927,-0.008052828,0.0034978809,0.0038723692,0.008897419,-0.013269106,-0.0069585782,-0.040200397,0.018878464,0.023776028,-0.045342308,0.014597079,-0.01502203,-0.0051844064,0.017571738,-0.004517764,-0.014809554,-0.00090567756,-0.013343472,0.006337087,0.0077288025,-0.008387477,-0.035759658,0.010682215,-0.008270616,0.0026081388,-0.016413746,0.029236654,0.009773881,0.03862808,-0.03214757,0.01996209,0.012323589,-0.0006138555,-0.023436068,-0.013141621,0.009848247,-0.01881472,0.004451365,-0.024859654,0.033422425,0.019983336,0.01659435,0.028004294,-0.006777974,0.016466865,0.016764332,-0.020227684,-0.006283968,0.02027018,-0.029725347,-0.0036041187,0.0066079935,-0.022479927,0.008769933,-0.018326027,-0.019441525,-0.0023279367,0.033592403,0.036630806,0.008164378,-0.009678267,0.014522713,-0.052948937,0.017263649,0.036014628,0.013311601,-0.017253025,0.010437868,0.0032216625,-0.0050834804,-0.01909094,0.020578269,-0.024052246,0.017008677,0.006629241,-0.02611326,0.03903178,0.015351367,-0.0050781686,0.027664334,-0.0013166852,0.033528663,0.03223256,-0.023202343,0.026814431,-0.017476125,0.0031765113,0.013205363,-0.013003511,-0.0011739281,-0.019356534,0.025050882,-0.002799367,0.01415088,-0.0103635015,-0.030554002,0.02543334,0.0037555075,-0.019632753,-0.034527298,0.022118717,-0.004722272]},{"id":"interface-BitFieldResolvable","type":"interface","source":"main","text":"Interface: BitFieldResolvable\nDescription: Data structure that allows efficient storage of multiple flags (bits) in a single number.\n\nNote: JavaScript bitwise operations (|, &, ^, <<, >>) operate on 32-bit signed integers.\nFlags with values exceeding 2^30 may exhibit unexpected behavior. For permission-style\nbitfields with more than 30 bits, consider using BigInt-based implementations.","meta":{"url":"/docs/typedefs/BitFieldResolvable"},"embedding":[-0.011899819,0.008648721,-0.018846124,0.052791923,0.0030375854,-0.021989044,-0.028195169,0.009201009,-0.0034247565,0.047781475,0.039514232,0.015224936,0.027739674,0.025849368,0.029128935,0.028787313,-0.012321153,0.010897729,0.030427096,-0.02025816,-0.0019586305,0.020030413,0.040607423,0.0010028017,0.012321153,-0.011222269,-0.03926371,-0.008882161,0.010260035,-0.01211618,0.02924281,-0.02370854,0.05598039,0.0008946216,-0.013459891,-0.027033657,0.035095926,0.000738045,0.008836612,0.027967421,-0.030745944,0.010903423,-0.0175138,0.008409585,0.0014127477,0.024391782,0.015919566,0.005260973,-0.02471063,0.0352098,0.015316035,0.033570018,0.001607045,0.012708324,0.024369007,0.092647776,-0.015999278,0.046916034,0.04650609,0.02767135,0.033000648,-0.019506594,-0.033911638,-0.0074188826,-0.01860699,0.06053535,-0.033615567,0.048874665,0.036849584,0.020428972,0.013721801,0.01712663,0.020747818,0.034572106,0.06431596,0.005036072,0.024323458,0.015111062,-0.017354377,-0.026919782,-0.03725953,-0.0011906936,-0.018310918,-0.05329297,0.03844382,0.013585152,-0.014541693,-0.021863783,-0.064589255,-0.028536791,-0.026600935,-0.029174484,-0.0452307,0.01376735,-0.041677836,-0.057073582,-0.062129583,-0.001997063,-0.030404322,-0.023412468,0.05925996,0.028741764,-0.0010718377,0.013368792,0.044365257,-0.013346017,0.023412468,0.0021949187,0.023981836,0.035665296,-0.0502867,0.003510162,0.007635243,0.01032836,-0.0058645043,-0.009889945,-0.033797763,0.016181476,0.03589304,0.017377153,-0.0033108827,-0.00031084009,0.0062687565,-0.0022959819,0.0034048287,-0.030381547,-0.0090188105,-0.052746374,0.02553052,-0.033273943,0.042361077,0.03839827,0.027215853,0.00237,-0.039537005,0.013778738,-0.029971601,0.024733404,-0.022273729,-0.060444247,-0.010613045,-0.04065297,0.08882162,-0.012776648,0.020417584,0.06718558,-0.039491456,0.009702054,0.03903596,0.013459891,-0.01233254,-0.0030603602,-0.011694846,-0.041860033,-0.00010648986,-0.04240663,0.03377499,0.037715025,-0.000864018,-0.013346017,0.0025336936,0.005457405,-0.05921441,0.018299531,0.026168214,0.044114735,0.017320216,-0.0038147746,-0.026737584,0.007401801,0.008791063,-0.033979964,-0.026304863,-0.06695783,-0.02701088,0.008819531,-0.012355315,-0.026692035,-0.03129254,0.005235351,-0.019051097,0.005141405,-0.022706449,-0.03994695,0.0069918553,0.0024625224,0.009070054,-0.020975566,0.018800575,-0.029083386,-0.03960533,0.083720066,0.042634375,0.06317722,0.035847493,-0.010766774,0.012275603,-0.019381331,-0.010749693,-0.02653261,-0.009667891,-0.0056396034,0.034822628,0.03464043,-0.017058305,-0.027967421,0.009383206,0.014746666,-0.031269763,-0.009833008,0.0038745583,0.03839827,0.0041649365,-0.037669476,0.013232144,-0.029698305,0.054112863,-0.007891459,-0.026327638,0.019586306,0.011706234,0.0077491165,0.026874233,0.008984648,-0.032750126,0.027921872,0.021601873,-0.004987675,0.0072708465,-0.0055428105,-0.0039713513,0.0044809366,0.0056509906,-0.018185657,-0.039058737,0.020246774,-0.04331762,0.010647207,0.0039428826,-0.022717837,-0.0022404683,0.0054118554,-0.016272577,0.026122665,-0.05224533,0.001957207,-0.012537513,0.01276526,-0.023845188,-0.017969295,-0.011580972,-0.004145009,0.00764663,0.0059442157,-0.008734126,-0.015828468,0.005605441,0.056618087,0.002858234,0.016147314,-0.047599275,-0.11870212,0.0027116213,0.003191315,-0.0326818,-0.015156612,0.044296935,0.053611815,-0.04732598,-0.034344357,0.04308987,0.010738306,0.051516537,-0.008996036,0.009485693,-0.052791923,0.04728043,-0.0006387612,-0.04933016,-0.014086197,-0.0030859818,-0.01865254,0.028901188,0.019199135,0.0073961075,-0.056390338,-0.016204251,-0.011501261,0.05042335,0.02292281,0.053657368,0.017491026,0.061036393,-0.005184108,-0.036576286,0.01012908,0.046916034,-0.039491456,0.078891814,-0.018766413,0.035369225,-0.02814962,-0.01176317,-0.030745944,0.0147694405,0.009218089,-0.03181636,-0.029538881,0.008045189,0.00358418,0.012218666,-0.070100754,-0.046824936,-0.001802054,-0.07137614,-0.007316396,0.051470987,0.01891445,-0.041814484,0.000661536,0.017456863,0.024892827,-0.011945369,-0.04012915,0.054705005,0.0018134413,-0.029311134,0.03725953,0.016295351,-0.041723385,0.000018493383,0.032750126,-0.003883099,0.007589693,-0.02452843,-0.03063207,-0.035733618,0.02666926,-0.06117304,0.0028838557,0.046779383,0.0069576935,0.012218666,-0.0046318197,0.012161729,0.013607927,-0.015532396,0.027215853,0.035050377,-0.029311134,-0.020998342,-0.022592574,-0.026350413,-0.042429402,-0.019506594,-0.007902847,0.040926266,-0.08950486,-0.056117043,0.036143564,-0.06463481,0.03787445,0.020713657,0.017730162,-0.026259314,-0.029971601,-0.040926266,-0.022774773,-0.00003485163,-0.042930447,0.014222846,0.034663204,0.022114305,0.009314883,0.0062858374,-0.012321153,0.014678341,-0.008591783,0.028195169,0.006667315,0.009821621,0.049922302,-0.030267674,-0.042679925,-0.011444324,0.021727134,-0.008261549,0.03639409,-0.0704196,0.005921441,0.038329944,0.029903278,0.02972108,0.031474736,-0.003957117,-0.025120575,0.022250954,0.009901333,0.016898882,-0.0250978,-0.021431062,0.0053065224,0.045526773,0.031998556,0.02457398,-0.016238414,0.010203099,0.035505872,0.049740106,-0.029037837,-0.0047086845,-0.020861693,0.015042738,0.0011793062,0.054067314,-0.012696936,-0.018550053,-0.028286269,0.0142683955,-0.008882161,-0.031064792,0.033797763,-0.04160951,-0.057255782,0.0038204682,0.010504864,-0.02226234,-0.043636467,-0.0018476035,-0.046118915,-0.0052268105,0.013357405,0.019870989,0.01207063,-0.005494414,-0.012879134,0.0089789545,-0.0029237114,-0.0128108105,0.009702054,-0.03930926,0.036280215,0.04375034,0.014006485,-0.03593859,0.009502774,-0.029037837,0.012662774,0.039537005,-0.04705268,0.024687855,-0.002754324,-0.054067314,0.03386609,-0.014780828,0.03363834,0.054112863,-0.024983926,0.0045094052,0.0046204324,-0.040766843,0.011324756,0.009986738,0.058075674,0.0023657295,0.020292323,-0.02409571,0.008512071,0.020588394,0.019415494,-0.012537513,-0.03495928,0.031702485,0.03730508,-0.018903062,0.01333463,0.039764754,-0.040311348,-0.012230054,-0.021157764,-0.0036325764,-0.011108396,-0.0277169,-0.011626522,0.0024824503,0.07716093,0.038626015,0.035710845,-0.021305801,0.010664288,-0.07957506,-0.03063207,0.02767135,-0.009240865,0.03359279,0.0401747,-0.02867344,0.0007985405,0.052883025,-0.010692756,0.042543277,-0.04156396,0.00653636,-0.011148252,0.00051029725,0.010601657,0.0033507384,-0.0032197835,-0.071239494,-0.0030119638,0.036872357,0.0020468829,-0.028605115,0.010755387,-0.042110555,0.0025578917,-0.001444063,0.011364612,-0.0070658736,-0.015179386,-0.018811963,0.0039058737,-0.02113499,-0.028354593,0.005548504,-0.010499171,-0.05024115,-0.011273513,-0.02623654,-0.020406198,0.014063423,0.0082273865,-0.0069861617,0.026783133,0.015270486,-0.011979531,0.0121047925,0.037100106,-0.0066559277,-0.010083531,0.010601657,0.0007227432,-0.0063199997,0.008392504,-0.02653261,0.028787313,0.013049945,0.0074872067,0.010055062,0.02414126,-0.02061117,0.0064452607,0.0049335854,-0.042247206,0.023867963,0.020201225,0.019461043,0.0007042387,-0.02313917,0.0060068467,-0.027876323,-0.06846097,0.009024504,-0.01825398,0.0049051167,-0.02156771,-0.00832418,-0.0043329005,0.037464503,0.00082629727,-0.011751783,0.03272735,-0.0025436576,0.025416648,0.03188468,-0.011911207,-0.033091746,-0.031042017,0.041154016,0.026190989,-0.01311827,-0.023890737,0.00005778209,-0.00045727476,0.011877044,0.027398052,0.024961151,0.008990342,0.027056431,0.014985801,-0.026327638,0.033182845,0.014780828,0.007880071,-0.0019828286,-0.013027171,-0.0019244683,0.0399014,-0.052427527,0.020451747,0.020041801,0.0049819816,-0.0006633153,-0.012207279,-0.029060612,0.0048709544,-0.008198919,-0.0034617656,-0.0031827746,0.009776072,-0.027625801,0.02261535,0.016170088,-0.011569585,-0.046870485,0.019233296,0.010402378,-0.01951798,0.016022053,0.009445838,-0.034822628,0.0044894773,0.01185427,0.031087566,-0.03420771,0.038056646,0.0053036753,-0.008916324,0.023480792,0.017639061,-0.0225698,0.0011458558,-0.010840792,0.011148252,-0.03329672,-0.047735926,0.039855853,0.018413404,-0.013152432,-0.018071782,0.03655351,0.035847493,0.029447783,-0.0002594189,0.023059458,-0.027124755,0.012059242,0.030837044,-0.019984864,0.017240504,0.02352634,0.011495567,0.014575855,-0.031133115,-0.011091314,0.0015956576,-0.014382269,0.018276755,0.008489297,0.03826162,0.028491242,-0.0021835314,-0.016181476,-0.042953223,0.0037976934,0.008398198,-0.007105729,-0.027899098,0.003490234,0.0038916394,0.009206702,0.009565405,0.024482882,-0.014655567,-0.033661116,-0.0025023783,-0.014086197,0.022102918,-0.0047172247,0.033319492,-0.0012454954,0.0077718915,-0.036029693,-0.043590914,-0.040493548,-0.016955819,-0.016044827,0.030654846,0.039992504,-0.037100106,0.038193297,0.0099354945,0.0014084774,-0.0023728467,-0.013995098,-0.018356467,0.05306522,0.0030518197,-0.021556323,-0.040015277,0.0008533423,0.032659024,-0.01581708,-0.021932106,-0.006627459,-0.0068039633,0.017263278,0.011626522,0.017764322,-0.0014084774,-0.028741764,-0.015008575,-0.027466377,-0.009929801,-0.010800936,-0.013129657,0.023036683,0.04274825,0.023776863,-0.000067746056,-0.031656936,-0.016147314,-0.02034926,0.02357189,0.040038053,0.018903062,0.019973475,0.018379241,-0.0066787023,0.011956756,-0.0066046845,0.010197405,-0.0035870268,-0.013368792,-0.007236684,0.037760574,-0.028445693,-0.002626216,-0.014712503,-0.015224936,-0.0032254772,-0.011467098,0.009240865,-0.01647755,-0.005027531,0.00076722517,-0.041381765,-0.004341441,-0.026623711,0.012047855,-0.0250978,0.0063427743,0.00079569366,-0.0077149547,0.022729224,-0.026213763,-0.022205405,-0.010168936,-0.02039481,-0.0023173331,-0.032180756,0.05716468,-0.026282089,0.010499171,-0.01851589,-0.0061719636,-0.0427027,-0.03154306,0.02666926,0.027443603,0.0021735674,0.028217943,-0.024824504,-0.015976503,0.059988752,0.007817441,-0.008466522,-0.0145189185,-0.06486256,-0.012400864,-0.019039711,-0.022023207,0.006439567,-0.021510774,-0.013938162,-0.001370045,-0.01755935,0.0051898016,-0.046733834,-0.017866809,-0.023913512,0.03921816,-0.0048054773,0.01934717,0.008899243,0.010590269,0.017661836,-0.07907401,-0.0105618015,0.0048140176,-0.008329873,-0.058075674,-0.010214486,0.0024824503,0.04441081,0.0037549909,-0.05853117,0.01734299,-0.02192072,0.032750126,0.0079370085,0.009867171,-0.00163409,0.06053535,0.009764684,-0.002673189,-0.011159639,-0.024460107,0.035801943,-0.0138129005,0.040334124,-0.0056481436,0.030540971,-0.0011237927,-0.0069576935,0.030199349,-0.022068756,0.0032596395,0.024300683,0.015760142,0.020485908,0.014325333,-0.0453218,0.007128504,0.023241656,-0.0014369459,0.025029477,-0.0024852972,-0.027352503,-0.014131747,0.018846124,0.020838918,-0.013015783,0.030085476,-0.009331963,-0.029197259,0.0028895494,-0.023082232,-0.008119207,0.0059157475,-0.028605115,0.019210521,-0.023981836,0.033000648,-0.008722738,-0.038853765,0.006815351,-0.013983711,0.014245621,-0.014473368,0.008654414,0.08358342,-0.013642089,0.0028738917,-0.015031351,0.029356683,-0.014598629,0.0047172247,-0.01664836,0.006354162,0.05142544,0.027170304,0.008705657,-0.026919782,-0.0055798194,-0.005594054,-0.020930016,0.02609989,-0.010100612,0.015965115,-0.028354593,0.011461405,-0.015657656,-0.016591422,0.028650666,0.023549115,-0.009582486,0.037532825,0.015919566,0.0024283603,0.009719134,0.034594882,-0.01734299,-0.024164034,0.032317404,-0.032226305,0.021727134,0.046255566,-0.008295711,-0.003450378,-0.05015005,-0.021647422,-0.02557607,-0.008785369,-0.029447783,-0.024756178,0.029288359,-0.0019742881,-0.006411099,0.00295218,0.007208216,0.016933044,0.00077363057,0.025462197,0.011990918,-0.029379457,-0.01621564,-0.01812872,-0.024551205,-0.004367063,-0.043112647,-0.01285636,0.028764538,0.06026205,-0.01450753,-0.009485693,-0.017855423,-0.017969295,0.037441727,-0.006553441,0.0277169,0.035801943,-0.019278845,-0.00797117,0.009405982,-0.019984864,-0.007834522,-0.02457398,-0.002098126,0.009747603,-0.012161729,0.0034190628,0.0062687565,-0.022376215,-0.0066559277,-0.010277117,0.011968143,-0.0052638194,0.0032283242,-0.016545873,0.0075726123,-0.014712503,0.04256605,-0.010909117,-0.018903062,0.023389691,0.040311348,-0.025348322,0.03935481,0.02871899,0.009531243,0.0071398914,-0.012150342,-0.011301981,0.020554233,0.010362522,0.06267618,0.011427242,-0.044934627,0.0066787023,0.02461953,-0.01028281,-0.0058274954,0.008631639,-0.019939315,0.005204036,-0.03445823,0.0014056305,-0.034344357,0.033000648,0.006035315,0.021909332,0.0075270627,-0.006411099,-0.020337872,0.013027171,0.013243531,0.029425006,0.025803817,0.013084107,0.018538665,-0.025393872,0.01133045,-0.02178407,0.027352503,0.018413404,-0.0043556755,0.026828684,-0.013106882,-0.049740106,-0.008608865,-0.0175138,-0.0250067,0.020998342,0.009952576,0.012218666,0.03215798,-0.006354162,0.031133115,-0.021157764,-0.031087566,-0.02457398,0.008033801,-0.006234594,0.010356829,-0.0277169,0.019836828,0.013186594,-0.014837765,-0.024778953,-0.0040880716,-0.021932106,-0.009963963,0.012412252,-0.044000864,-0.017752936,-0.022478702,-0.005568432,0.00028130403,-0.014496143,-0.020030413,0.02710198,0.032841224,0.0022376215,-0.034321584,0.00569654,0.0011366035,-0.0018689549,-0.0009985315,0.05739243,-0.026874233,-0.015088287,-0.037396178,-0.018572828,-0.032818448,-0.00016493918,-0.027648576,-0.026122665,-0.0053719995,-0.010504864,0.013824288,-0.015054125,-0.020144287,-0.0250978,0.01812872,0.007521369,0.0061776573,0.029607205,-0.00056047295,0.017923746,0.011592359,0.0036126485,0.005961297,0.023412468,-0.013254918,0.007253765,-0.0018120179,-0.028263494,0.0014675495,0.0146441795,-0.012491963,0.00912699,0.044388033,-0.026077116,0.008364036,-0.0006074459,-0.0064167925,-0.020633945,-0.021624647,0.01076108,0.00975899,-0.015088287,-0.0030859818,-0.021317188,-0.001234108,0.04365924,0.012833585,0.036804035,-0.014234234,0.022626737,-0.031748034,0.034139384,-0.010931891,-0.014222846,-0.04122234,0.040151924,0.017741548,-0.02078198,0.022216791,-0.044501908,-0.012025081,-0.016431998,0.016352287,-0.0016127386,0.0021920719,-0.021157764,0.0040909187,-0.010647207,-0.0063769366,0.012309765,-0.014632792,0.014712503,0.026805907,0.0040880716,-0.06645679,0.01276526,-0.016056215,0.024892827,0.036599062,0.0013579458,0.021169152,0.0069519994,0.006314306,0.020201225,-0.014154522,-0.029561656,0.0022959819,-0.015486846,-0.044934627,0.03334227,-0.01350544,-0.009149766,0.021214701,-0.003769225,0.015680432,0.025166124,0.026190989,-0.013129657,0.009588179,0.037988324,0.010789549,-0.00605809,-0.023594664,0.037851673,-0.036416862,-0.003379207,-0.045503996,0.03477708,-0.005050306,-0.010487783,0.02357189,-0.004552108,-0.014359495,-0.0037094413,0.011000216,-0.012059242,0.020930016,-0.006348468,0.04047077,-0.017741548,0.0225698,0.012617225,0.0027443601,0.01176317,0.03163416,0.019278845,0.026737584,-0.002199189,-0.007948396,0.008791063,-0.00034393466,0.00075726124,0.0053634592,0.007293621,0.0022789007,0.03846659,-0.0150199635,-0.029926052,0.02025816,0.04796367,0.014735279,-0.04657441,0.0004818288,-0.025211675,-0.020417584,0.019597692,0.012013693,-0.054932754,-0.0063769366,-0.045435674,0.03243128,0.012025081,-0.039400358,0.02701088,-0.009981045,0.0001631599,-0.02087308,-0.026965331,-0.018162882,-0.0017536576,-0.009201009,-0.009331963,0.01581708,0.03507315,0.025758268,0.006388324,0.006980468,-0.0034133692,0.015885405,-0.0163409,0.008489297,0.03559697,0.028491242,0.0022917115,-0.011575279,0.02409571,0.0019130809,-0.014894702,-0.0051300176,-0.0028069909,0.014450594,0.02409571,-0.008580396,0.010539026,-0.021841008,0.0044040717,0.008944793,-0.0009074324,-0.0020326485,0.0022248107,0.031087566,-0.02152216,0.017582126,-0.012879134,-0.020167062,0.004993369,0.021487998,-0.015088287,0.0010576035,0.027170304,0.007589693,-0.021214701,0.009667891,0.0324996,-0.013425729,-0.00817045,-0.017741548,-0.0050189905,0.007777585,-0.015316035,-0.025484972,0.010743999,-0.016306737,0.011694846,0.005753477,0.02609989,-0.017240504,-0.026509836,0.026760358,-0.02192072,0.009075747,-0.00801672,0.026464287,-0.0031258375,-0.024824504,0.0138926115,0.0034247565,-0.00917254,0.011774558,-0.030404322,-0.00906436,0.011034378,0.022945585,-0.00096294587,-0.015885405,0.028422916,-0.004199099,0.032795675,0.017103855,0.007333477,0.025484972,-0.011922594,0.004845333,0.021510774,-0.038762663,-0.019574918,-0.012207279,-0.007942703,0.00019180629,0.018436179,-0.017798485,-0.011074234,0.01133045,0.003769225,0.0016924504,-0.017935134,-0.0047997837,-0.0654547,-0.030563746,-0.027648576,-0.024915602,0.04718933,0.00034749322,0.006724252,-0.00928072,-0.0025507747,-0.006758414,0.015133837,0.014826378,0.009047279,-0.026988106,0.00548018,0.00095369364,0.012491963,0.018299531,-0.009684972,0.015452684,0.006963387,0.02196627,-0.0044410806,-0.004731459,0.029743854,-0.011017296,0.013903999,0.02457398,-0.033319492,0.0026319097,-0.040675744,-0.017411314,0.040015277,0.021032503,-0.021374125,-0.019711567,-0.0028496934,0.0050987024,0.0138926115,-0.015725981,0.028901188,-0.032294627,-0.018925836,-0.014086197,0.022421764,0.0073790266,-0.020759206,0.036302987,0.008295711,-0.0022789007,-0.034344357,-0.028058521,-0.01965463,-0.013642089,-0.010732612,-0.03568807,-0.013277693,0.018925836,0.03450378,-0.032271855,-0.004768468,0.0025849368,0.027921872,-0.0011736125,-0.012025081,-0.019984864,-0.041154016,-0.016864719,-0.020668106,0.019187747,-0.0068438193,0.009189621,0.004771315,0.003023351,-0.004133621,-0.023867963,-0.013220756,0.02061117,-0.0048538735,-0.022808935,-0.009001729,-0.002666072,-0.009275027,0.0081875315,-0.004683063,-0.04627834,0.025849368,0.03646241,0.016420612,0.031224214,-0.034093834,-0.013049945,0.011512648,-0.04650609,0.0028397297,0.006815351,0.019768503,0.021453837,-0.0016497476,0.028058521,-0.04427416,0.026077116,-0.003641117,-0.010208792,0.006593297,-0.0029948826,-0.006576216,0.010106306,-0.01176317,-0.0027429368,0.009462918,-0.011683458,0.035483096,0.020372035,0.01407481,-0.008671495,0.010220179,0.006194738,0.000738045,0.005645297,-0.0027486305,-0.004842486,-0.031064792,-0.012514738,0.02824072,0.005978378,0.040038053,-0.029333908,0.0011052883,-0.01529326,0.0071341977,0.01590818,0.010112,0.03206688,0.022102918,0.05137989,-0.019984864,-0.011877044,-0.0019557837,0.0037464502,0.012321153,0.0020440358,0.0003192027,-0.024323458,0.04796367,-0.02239899,-0.030814268,0.0070146304,0.010140467,-0.0010341171,-0.035505872,0.025052251,0.036006916,0.016158702,-0.017286053,0.0018903062,0.0011857116,-0.012309765,0.019233296,-0.03215798,-0.0027443601,-0.013414342,0.013596539,-0.023594664,0.019586306,-0.001708108,-0.009138377,0.004105153,0.013664864,-0.0026390268,-0.02135135,-0.017593512,-0.0058218013,-0.007481513,0.06304057,-0.012583062,-0.017866809,0.0035044684,0.004082378,0.018049007,-0.02514335,0.015589332,0.017297441,-0.03812497,0.057711277,0.006815351,0.013266305,-0.011990918,0.00095725217,-0.01848173,-0.000055469027,-0.035665296,-0.012753873,-0.03306897,0.044547457,0.0705107,-0.023253044,0.04217888,0.009605261,0.025484972,0.03994695,0.021146378,0.0017636215,-0.020121513,0.0098956395,0.013152432,0.05848562,-0.023412468,0.026031567,-0.022102918,0.006912144,0.008244468,-0.01856144,0.014974413,0.02614544,0.02052007,-0.010613045,0.038580466,-0.034526557,0.016101765,-0.0057477835,0.00928072,-0.019267458,0.03735063,-0.008415279,0.00675272,-0.00917254,0.05142544,0.010499171,-0.009212396,0.063906014,-0.018276755,-0.022421764,-0.0023785403,-0.00095582876,0.02600879,-0.005773405,-0.021078052,0.046551637]},{"id":"interface-CacheSizeLimits","type":"interface","source":"main","text":"Interface: CacheSizeLimits\nDescription: Optional cache size limits. When exceeded, oldest entries are evicted (FIFO). Omit or use 0 for unbounded.\nProperties: channels: number, guilds: number, users: number","meta":{"url":"/docs/typedefs/CacheSizeLimits"},"embedding":[0.005448227,0.0044219405,0.057023235,-0.0014429056,-0.030095596,0.020261727,-0.019548938,-0.0030277092,0.017608562,-0.031732373,0.0064250138,-0.0091936765,-0.0057122232,0.002377618,0.06008559,-0.0038576482,-0.015496592,0.024261273,-0.009305875,0.0055373255,0.010678656,0.011688443,0.015892586,0.020538924,-0.039889865,-0.03629951,0.030385992,0.056125645,0.014044612,-0.033897143,0.025092863,-0.030702787,0.016988171,-0.0064877127,-0.017489765,-0.0019073744,0.067477494,0.04406101,0.0009891617,0.0068573076,0.02819482,-0.031151582,-0.009906467,-0.00594982,-0.0020954718,0.004101845,0.005708923,-0.0036629508,-0.060771983,-0.004322942,-0.012856627,0.00048921845,-0.06879748,-0.016182983,0.010249662,-0.014163409,0.018149756,0.036405113,0.022611296,0.008777882,0.00970847,-0.014638604,-0.023310887,0.0069431067,0.02081612,0.034504335,-0.02460447,0.028115623,-0.015971785,0.04311062,-0.053168885,-0.015192996,-0.010909653,-0.017951759,-0.0063029155,-0.004768436,-0.0025690154,0.013648616,0.007708696,-0.020565324,-0.008632684,0.053881675,-0.061299976,-0.026148848,0.07275742,0.006474513,-0.0017935259,0.020512525,-0.0075634983,0.032260366,-0.02159491,0.006797909,-0.06098318,-0.009167277,-0.0056297244,-0.0816805,0.07692856,-0.02603005,-0.009569871,0.039124273,0.044905797,-0.03862268,-0.024102876,-0.039045077,0.02599045,0.019139742,-0.03571872,-0.00669561,-0.022070104,-0.03416114,-0.051030513,0.00961607,-0.017832961,0.010817255,-0.025726454,0.0020987717,-0.035269927,0.027402831,0.05559765,0.01780656,0.019971332,-0.005880521,0.015430593,-0.016697776,-0.017912159,-0.017582163,0.021792907,-0.016116984,-0.04680657,-0.001039486,0.04920894,-0.017331367,0.05522806,0.0033824546,-0.003491353,-0.012203236,-0.050872117,-0.010104464,-0.031072382,-0.059927195,0.005161131,0.03949387,0.09324355,0.015866186,-0.010163863,0.03368595,-0.028670015,0.04324262,0.021885306,0.02156851,-0.01635458,0.033342753,-0.0065108123,-0.00818389,-0.00968867,-0.042899422,0.029910797,-0.026835239,-0.028643616,-0.06900867,0.0009215126,-0.044166606,0.030333193,-0.027957225,0.028221222,-0.0013092573,-0.0042833425,0.03051799,-0.058343217,0.033131555,0.05649524,-0.013034825,-0.026888039,-0.02674284,0.00048014356,0.015958585,-0.052535295,0.012427633,0.008989079,0.016578978,0.042292234,0.027402831,-0.0019189242,-0.041368242,-0.015047798,0.0062930156,0.00894948,-0.031732373,0.03402914,-0.049657732,-0.03041239,0.0055439253,0.034372337,0.02901321,0.001852925,-0.019047344,0.021027317,-0.00671541,0.0017737262,-0.022782894,-0.010606058,-0.0002415155,0.062039167,-0.03273556,0.034451537,-0.036246713,-0.011629044,0.006563612,-0.04915614,0.004765136,0.008249889,0.07312702,-0.015245795,-0.019548938,-0.023746481,0.0068045086,-0.011833641,-0.013952212,-0.024815667,0.017001372,-0.01638098,0.009391674,0.06467913,0.0021334214,-0.01041466,-0.0027653628,-0.052508894,0.0038345484,0.001264708,0.056125645,0.003357705,-0.010111064,-0.048971344,-0.05422487,-0.002526116,0.053274482,0.010579658,0.0669495,0.0067253094,-0.033289954,-0.03125718,-0.034451537,-0.05037052,-0.019548938,-0.02460447,-0.01335162,-0.02010333,-0.040602654,0.021687308,0.010870054,-0.013496819,-0.003940147,0.0077812956,-0.03059719,-0.006322715,-0.023627682,0.050898515,0.015813388,0.037672292,-0.024221674,0.0120844375,-0.06372874,-0.03783069,-0.007134504,0.018083757,-0.0046826373,0.006316115,0.005349228,-0.042213034,-0.018783348,0.025752854,-0.0149026,0.018796548,-0.052244898,0.002385868,0.05351208,0.032524362,0.019720536,-0.028115623,-0.02901321,-0.06789989,-0.0017968259,-0.00086788833,0.024710068,0.02742923,0.0149158,0.045882583,0.0107446555,0.08400367,0.016222581,-0.034583535,-0.0002192408,0.0023413186,0.0025228162,-0.017291768,0.04614658,-0.0071081044,-0.02540966,0.053855278,0.0094048735,0.0030739086,0.030280393,-0.0148234,-0.05586165,-0.030253993,0.036088314,0.03793629,0.06990626,-0.0057584224,-0.0015196296,0.0066362107,0.008335688,-0.042292234,-0.0036134515,-0.0670551,-0.018928546,0.0057881223,0.048100155,0.058554415,0.025964051,0.029989997,-0.01793856,0.026914438,-0.007979292,0.03270916,-0.039731465,0.0124672325,-0.013965412,-0.0062930156,-0.000019786843,0.022782894,-0.01937734,-0.0062006167,0.013807015,0.007220303,-0.024908066,-0.01119345,0.03360675,0.008626084,-0.0007717771,0.028854812,0.022070104,-0.0521657,0.016314982,0.049499337,0.019113343,-0.016829774,0.021014117,0.08975879,0.03323715,-0.020208929,-0.0008546885,-0.016922172,-0.060930382,-0.022254901,-0.01712017,0.046489775,-0.07064545,-0.08569325,0.07312702,-0.016011385,-0.0148762,0.013965412,-0.009939467,0.029989997,-0.026267648,-0.018321354,-0.000020070433,-0.008249889,-0.0017324768,0.026518444,0.006121418,-0.015390993,-0.037065104,-0.017212568,0.040972248,-0.0036662507,0.013609017,0.013272421,-0.010982253,0.025488857,-0.005586825,0.0013752566,0.028670015,0.018189356,-0.024551671,-0.007992493,0.047149766,-0.07069825,-0.057551228,0.0025145663,0.020010931,-0.006550412,-0.0106588565,0.007847294,0.030702787,0.055333655,0.056284044,0.0022159202,0.0011640594,0.05124171,0.020459725,0.002382568,0.015140196,-0.0371707,-0.02155531,0.009642471,0.02315249,0.06990626,-0.03656351,0.018466553,0.002382568,0.0024485672,0.0073523014,0.051268112,-0.015113797,-0.016710976,0.0011244599,0.011741242,0.01850615,-0.028511617,0.02453847,-0.005560425,-0.021885306,0.026927639,0.028115623,0.021462912,0.00821689,-0.009880067,-0.037698694,-0.057868022,0.020882118,0.013582617,0.02155531,0.0108304545,0.006936507,0.040681854,-0.017252168,-0.00668571,-0.025396459,-0.012249435,0.010441059,0.007385301,0.00668901,-0.013569417,0.019522538,0.030306792,-0.032445163,0.07043425,0.0010625857,-0.013965412,0.0019436739,-0.05871281,0.03878108,-0.01562859,-0.031705976,0.033263553,0.018321354,-0.02534366,0.025634056,0.0005725423,0.012163636,-0.0119986385,0.010223263,0.037434697,0.037038703,0.032973155,0.056336842,-0.009358674,0.0048839343,-0.0058508213,-0.027693229,0.009319074,0.030834785,-0.020644523,-0.046648175,0.007886894,-0.010144063,0.016037785,0.0014610554,0.026148848,-0.023178888,0.0010254612,-0.025660455,0.00819049,0.08347568,0.07687577,-0.018954946,-0.038332283,-0.012348434,-0.037857093,0.008256489,-0.003275206,-0.015232596,0.005738623,0.0063392147,0.015298595,-0.0062237163,0.034425136,-0.012130637,0.02758763,-0.05802642,-0.005831022,0.0068837074,-0.023244888,0.031151582,-0.010592857,-0.05422487,-0.0155493915,-0.00967547,-0.03941467,0.007022306,-0.02830042,-0.00052593043,-0.020486124,0.014361407,-0.055122457,-0.01045426,-0.019324541,0.036695506,-0.040602654,0.0128500275,-0.027244434,-0.01781976,0.029989997,-0.00085138856,-0.019086944,-0.0596632,-0.006751709,0.021291314,-0.002161471,-0.03051799,-0.01116705,0.0521921,0.0010964102,-0.036827505,0.002077322,0.023997277,0.04168504,-0.020274928,-0.0034088541,0.018202556,-0.03944107,0.006982706,-0.018202556,-0.02449887,0.021977704,0.022941291,-0.0036761507,0.0003087521,-0.021489311,-0.014361407,-0.009055078,-0.0062237163,0.05037052,-0.016644977,0.04015386,-0.010540058,0.005870621,0.025620855,0.0053888275,-0.03476833,0.018030958,0.01413701,-0.0020558725,-0.06642151,-0.01337142,0.011754442,-0.019641336,-0.027165234,-0.03178517,0.025462458,-0.020235328,0.019839333,0.022598097,0.0059960196,-0.010144063,0.021225315,0.0001414856,0.011299049,0.016064184,-0.025898052,0.034372337,0.01929814,-0.032128368,-0.012289035,0.0021053718,0.022202102,-0.034293137,0.031415578,-0.039124273,0.0039797467,0.002887461,0.017582163,-0.018756948,0.009437873,0.02530406,0.010751256,-0.015285394,-0.022637695,0.015245795,0.009860268,-0.007523899,-0.007160904,0.022558497,0.031521175,-0.015047798,0.015008198,-0.007141104,-0.0017242269,0.018994546,0.00669561,-0.023984078,-0.063464746,-0.064890325,-0.02753483,0.024974065,-0.009114478,0.01937734,-0.015562591,0.007075105,0.02152891,-0.009055078,0.034689132,-0.016961772,0.0132526215,-0.033976343,-0.048654545,-0.006392014,-0.0040424457,0.018321354,-0.010691856,0.0027307132,-0.009589671,-0.042899422,-0.009866867,-0.0055934247,0.0073985006,-0.028854812,0.0039005475,0.10132184,-0.0003768137,0.0033610049,-0.0036332512,-0.0013331821,-0.017344566,0.009167277,0.0033758546,0.0044120406,0.0019832733,-0.017212568,0.0001938724,-0.006540512,0.00031535202,0.0047123367,-0.031758774,-0.009866867,-0.009833868,0.000085850406,0.021396913,-0.038992275,-0.006474513,0.01120005,0.022901691,0.026465645,-0.011655443,0.016974973,-0.00898248,0.0017258768,0.013727816,0.031653173,0.050713718,-0.00057419227,0.013325221,-0.009629271,-0.0032917059,0.007847294,-0.018677749,-0.04084025,0.005860721,-0.024894865,0.03859628,-0.02748203,-0.04828495,-0.002296769,-0.030359592,0.046674572,0.049736932,-0.005642924,0.016684575,0.005745223,0.05356488,0.014942199,-0.028089223,0.015786989,0.009503872,0.006335915,0.008632684,0.007022306,-0.008243289,-0.023403285,0.023720082,-0.020459725,0.010196863,0.005273329,0.014968599,-0.02742923,0.0044780397,0.0033857545,-0.02307329,-0.010223263,0.02464407,-0.03949387,0.009068279,-0.024591269,-0.0016631776,-0.0037355497,-0.0025640656,-0.0054647266,0.016658176,0.02159491,0.0006488538,-0.01335822,-0.00887028,-0.008467686,0.037725095,0.033659548,0.03120438,0.007840695,0.010243062,0.003497953,0.021146117,0.018453352,0.059082408,-0.0097876685,0.008573284,-0.012909426,0.01417661,-0.017146569,0.0014643553,0.0144010065,0.015232596,0.021779707,0.015377793,0.020222127,-0.0058442215,-0.03513793,-0.01415021,-0.020644523,0.027270833,-0.022122903,0.010751256,-0.014559404,0.015958585,0.020367326,-0.050898515,0.015839787,0.0051116315,-0.011332048,0.020235328,-0.03265636,0.022611296,-0.03946747,0.032313164,0.0028198122,0.012176836,-0.067952685,-0.054805662,0.012315434,0.023165688,-0.035665922,-0.020710522,-0.039203472,-0.013463819,0.0033593548,-0.042952225,-0.0013645317,-0.051769704,-0.024168875,-0.0075502987,0.047862556,-0.003281806,-0.020288127,-0.010988852,-0.013543018,-0.0447738,0.044721,-0.021436512,0.016671376,-0.02296769,-0.047281764,-0.0036233512,0.036035515,0.0074644997,-0.020684121,0.0067220097,0.0015790288,-0.089442,0.015984986,0.028326819,0.020367326,-0.028749214,-0.0012284085,-0.028326819,0.022611296,0.030570788,-0.02761403,-0.00014127935,-0.0014420806,0.012282435,-0.019443339,0.017001372,-0.007992493,-0.0074776993,0.0672135,0.05124171,0.021660909,-0.010196863,0.027033236,-0.041104246,0.011417846,0.010678656,0.007741696,-0.007048705,0.022545297,0.016565777,0.0026449144,-0.003121758,0.023931278,-0.03194357,0.034557134,0.0041975435,-0.011952439,0.011483845,0.0007961143,-0.029382804,-0.019641336,-0.02526446,-0.026439244,0.02167411,0.014849801,-0.009424673,0.0021862206,0.004111745,0.04007466,-0.006253416,-0.0011599344,-0.017357767,0.015417392,0.042265832,-0.008837281,-0.008038692,0.009286075,0.0033181054,-0.01042126,0.0031019584,-0.009992266,0.038886677,0.04825855,0.0014726052,-0.038517084,-0.02306009,-0.006649411,-0.004243743,-0.006405214,0.0065108123,0.00671541,-0.0063194153,0.03431954,-0.036959503,0.0596632,0.021344114,0.009081478,0.0071939034,-0.00297491,0.0074249003,0.00008038486,0.018228956,0.021713708,0.027666828,-0.01267183,0.023271287,0.02603005,-0.016011385,0.039942663,-0.004758536,-0.041553043,0.038147487,0.014374607,0.016803375,0.018928546,0.0051479307,-0.004926834,0.005359128,-0.026597643,-0.032313164,-0.009385074,0.030069197,-0.007682297,0.023469284,-0.023139289,0.003138258,-0.0148234,-0.003567252,0.03117798,0.009378474,0.011840241,-0.010790855,-0.0029501603,0.022479298,0.06774149,-0.0068309084,0.012836828,0.015430593,0.0152721945,-0.0073985006,0.018374152,-0.00089841295,-0.0025904651,-0.014625403,-0.020921718,-0.0023512184,0.04905054,0.052324098,-0.0018232255,0.0123814335,0.006444813,-0.011668643,0.028221222,-0.0018941745,0.059135206,-0.018836146,-0.010388261,0.006916707,-0.04685937,0.0002536841,-0.028010024,0.0073787007,0.02896041,-0.0047981357,-0.045908984,0.020274928,0.04173784,-0.005732023,-0.004966433,0.0041216444,-0.00036175764,0.0077218963,-0.033263553,-0.014361407,0.03257716,-0.01858535,0.005477926,-0.0074579,0.027878026,-0.008296088,0.008487486,0.015430593,0.02605645,0.0048608347,0.038305886,0.017542563,-0.01933774,-0.042213034,0.033421952,-0.005507626,0.004633138,0.014612203,-0.038147487,0.02076332,-0.004322942,-0.027719628,0.044193007,0.021819307,-0.0036299513,-0.00520073,0.0076030977,0.021462912,-0.028590815,-0.005735323,0.006537212,0.027693229,0.009365275,0.012407834,-0.019918533,-0.010005466,-0.03336915,0.011978839,0.020050531,0.021330914,0.009286075,0.0018281754,-0.025277661,-0.016671376,0.0054647266,-0.03434594,0.010302462,0.040523455,-0.005289829,-0.026954038,-0.0043559414,-0.017186169,0.024432871,-0.0446418,0.029382804,0.0124672325,0.035296325,0.018096957,0.018387353,-0.008995679,-0.00088026316,0.014612203,0.04004826,-0.049525734,-0.014691402,-0.010012065,0.007134504,0.042081036,-0.03059719,-0.004313042,0.004313042,-0.024987264,0.013292221,-0.018479751,-0.012117437,-0.015760588,0.020552123,0.023271287,0.0030805087,0.022254901,-0.024195274,-0.0021301215,-0.0034715533,0.008375287,0.017991358,0.03268276,0.011417846,0.02163451,-0.011351847,-0.0042635426,-0.033765145,-0.023099689,-0.029250806,-0.042107433,0.030702787,-0.004808035,-0.006108218,0.012711429,0.014704603,0.0009916367,0.006982706,0.01042126,-0.008421487,0.027930824,0.0078076953,0.027006837,0.0004252818,-0.031758774,-0.014031411,-0.0009974116,-0.011556445,-0.0010271112,0.011371647,-0.016248982,0.004154644,0.02151571,-0.0061709173,0.014533005,0.0086392835,0.0031844573,0.030174794,-0.044193007,0.0062897154,-0.016130183,0.0042734426,-0.01572099,0.0010790855,-0.032207567,0.0053789276,0.01632818,-0.018822948,-0.023746481,-0.022571696,-0.000104876715,0.0007919894,0.01850615,0.00005254148,0.008388488,0.018770147,0.009609471,0.020288127,-0.0061544175,0.0023974178,-0.018743748,-0.020499324,0.01850615,0.008672283,-0.037593096,-0.014651803,-0.033580348,-0.0071279043,0.007728496,0.009299275,0.013180023,0.027059637,0.02758763,0.016869374,0.03257716,-0.0018001258,0.067952685,-0.01335162,0.0036299513,-0.0042074434,0.023627682,-0.012968826,-0.0031366078,-0.0034352539,0.025700055,0.013219622,0.011318848,-0.035190728,-0.023376886,-0.00820369,0.014572605,-0.027297232,0.0064382134,0.0018727249,-0.0036200513,-0.03051799,-0.015786989,0.013793815,-0.028670015,0.003422054,-0.039916262,0.039071474,0.011450846,-0.006923307,-0.024102876,-0.012427633,0.014585804,-0.0019964732,-0.003044209,0.0048806346,-0.023350487,0.013767415,-0.017687762,-0.009259676,0.06261996,-0.016631776,-0.029462004,0.02445927,0.016130183,0.0079396935,0.021291314,0.015324994,0.009352074,-0.0036695506,-0.03577152,0.01854575,-0.0025838653,0.0053723278,0.00223242,0.015813388,0.0037586496,0.022149302,0.00008435512,-0.020512525,0.022030504,-0.019364139,-0.012724629,-0.019892132,0.00089923793,-0.0020014232,0.013543018,0.007860495,-0.0007127904,0.035956316,-0.0020063731,0.009807468,-0.0296468,0.01778016,-0.008586485,-0.017410565,0.025488857,0.042952225,0.031653173,-0.012368234,-0.007279702,-0.030781986,-0.01117365,-0.0031679575,-0.035454724,0.036695506,0.009325675,-0.029462004,0.022215301,-0.020354126,-0.015747389,-0.0020212228,0.02018253,-0.015483392,-0.017397366,-0.006890307,0.048971344,0.039942663,0.01187984,0.017450165,-0.005821122,0.012744429,-0.016248982,0.0035276527,0.0050159325,-0.019826133,0.015060998,0.024353672,-0.0048707346,0.0056099244,-0.009642471,-0.017238969,-0.031732373,0.025739655,0.009253075,0.032313164,0.013754215,0.010289262,-0.01339122,-0.016724175,0.019152943,-0.004157944,-0.022558497,-0.014282208,-0.04849615,0.022439698,0.038939476,0.010625857,-0.018426953,0.044905797,-0.04023306,-0.0121900365,-0.020340927,-0.012335234,-0.014110611,-0.0038180486,0.035111528,-0.0026713142,-0.016130183,-0.01270483,-0.008296088,0.018426953,-0.004606738,-0.022716895,-0.00963587,0.019192543,0.02461767,0.013325221,-0.007075105,0.011708243,-0.019060545,-0.016565777,0.03482113,0.00822349,0.011219849,0.015536191,-0.022743294,-0.043876212,0.014638604,0.008461086,0.022426499,0.018360954,0.022624496,-0.032524362,-0.039097875,-0.013160223,0.020010931,-0.0074315,-0.017542563,0.0030838086,-0.021185715,-0.024327273,0.0034814533,-0.011312248,-0.0037718492,0.0018743748,0.0012836828,-0.008956079,-0.015126997,-0.018783348,-0.014546204,0.0223341,-0.001639253,0.026518444,-0.0008204515,0.027218034,-0.015351393,-0.030940384,0.026122449,-0.010665457,-0.031230781,-0.023786081,0.015866186,0.01788576,0.020367326,-0.024221674,0.018466553,-0.0059267203,0.048839346,0.0076294974,0.013008425,0.008025493,0.0017473266,0.015707789,0.03862268,-0.0009734869,-0.0048674345,-0.021370513,-0.01850615,0.031600375,0.002613565,0.00887028,-0.009266276,-0.028221222,0.018321354,-0.01037506,0.01628858,-0.015113797,0.007160904,-0.013701416,-0.04305782,-0.015496592,0.024960864,0.03569232,-0.028326819,-0.033633146,0.03410834,-0.02155531,0.026280846,0.014638604,0.02006373,0.024089675,-0.013067825,-0.039916262,-0.0023726681,-0.05728723,0.033342753,0.024314074,0.031045983,-0.0035276527,-0.01572099,-0.007814295,-0.026360046,-0.04551299,0.014308608,0.004408741,-0.003349455,0.047070567,0.0223077,-0.013094224,-0.0045902384,0.007147704,-0.009814068,0.009411474,-0.0029089109,0.004306442,-0.005600025,-0.008553485,-0.06980066,0.0056957235,-0.0074183005,0.016116984,-0.0063590147,-0.050898515,0.027693229,-0.044272207,0.007002506,-0.0144010065,0.020578524,-0.009292675,-0.019496137,0.017436966,-0.01562859,-0.028907612,0.03936187,-0.035296325,-0.013661817,0.044932198,-0.0019684236,0.01857215,0.012823627,-0.02901321,-0.0073919008,-0.03656351,0.001561704,0.0045737387,-0.006890307,-0.013701416,0.0099592665,0.03585072,-0.022202102,0.026624043,0.022030504,-0.0027406132,-0.024512071,-0.015153396,-0.02522486,0.00077590207,0.01412381,-0.010698456,-0.001118685,-0.011087851,0.019654537,-0.029330006,0.030913984,0.0069431067,0.004072145,0.009312475,0.008117891,-0.0001397325,-0.007273102,0.005814522,0.018440152,0.013279022,-0.014691402,-0.036009118,0.031494778,-0.007616298,0.024591269,-0.03870188,-0.005794722,0.017067371,0.015998185,0.011325448,-0.029330006,0.039810665,-0.029409206,-0.012097637,0.023456085,-0.0012746078,0.03199637,0.001785276,0.0031729073,0.02007693,0.030993184,-0.0070553054,-0.005672624,-0.003196007,0.02082932,-0.011840241,0.016486578,0.030016396,0.009226676,0.0035276527,-0.0018611749,-0.002456817,-0.01338462,0.027086036,-0.017304968,0.026412845,0.00045663136,0.034794733,-0.0068837074,-0.01866455,-0.007075105,0.00036608882,0.012150437,0.051083315,-0.008243289,0.036193915,0.026558043,-0.025858453,-0.010190263,-0.008434687,0.0020756721,-0.013899413,0.029857999,0.005441627,0.030887585,0.010599458,0.028881213,-0.04398181,-0.008474286,-0.023865279,0.026610842,-0.013265822,-0.0035210527,-0.018057358,0.007345701,-0.017661363,-0.024036877,-0.032445163,-0.0004698312,-0.01564179,-0.00074455247,0.017001372,-0.0019106743,0.003950047,0.010058265,-0.021687308,0.016737375,0.045248993,0.004768436,0.0021119716,0.010203463,0.029330006,0.013199823,-0.014849801,0.01116705,-0.009220076,0.009312475,0.007886894,0.0058376216,0.0012952326,0.020274928,0.020552123,0.03801549,0.018123357,-0.00596302,-0.0016004785,0.0042107436,-0.0029419104,-0.033738747,-0.012196636,0.010896454,0.04316342,-0.035322726,-0.0011599344,-0.023601282,-0.012803828,0.017727362,0.005048932,-0.013899413,0.0062930156,0.012011838,0.025581256,-0.039652266,0.0069893063,0.01858535]},{"id":"interface-CdnUrlOptions","type":"interface","source":"main","text":"Interface: CdnUrlOptions\nProperties: extension: string, size: number","meta":{"url":"/docs/typedefs/CdnUrlOptions"},"embedding":[-0.0067483843,-0.035213023,0.037011035,-0.017653212,-0.018949183,0.005105071,-0.005633383,-0.03663742,-0.025242226,0.029725581,0.0013039968,-0.021401018,0.0049328585,-0.0016418538,0.017232899,0.011412708,-0.041424338,0.045954395,0.030052492,0.014524204,0.0141155645,0.0011689999,0.01699939,0.033928726,-0.008347915,0.007793333,0.019264419,0.090601146,0.043759417,-0.021727929,0.028137727,-0.03458255,0.01369525,0.035353128,0.0055633304,0.0025729674,0.05814352,0.011377682,0.018248659,-0.0021074107,-0.024962015,-0.0013879138,-0.01991824,-0.015201378,-0.02162285,0.02393458,-0.015154676,0.026946835,-0.0027043158,0.011751295,-0.013858706,-0.0018841185,-0.02116751,0.0009318433,-0.061272524,0.00024153494,0.021249237,0.025172174,0.0010763264,-0.04838288,-0.03287794,-0.049970735,-0.0009230867,-0.0042907116,0.034816056,0.045674186,-0.04586099,0.049410313,0.0005549466,0.012445982,0.017840018,-0.016252164,-0.011669568,0.018505517,0.0077816574,0.019287769,-0.0043432508,-0.002492699,0.02911846,0.0027130723,-0.0134383915,0.044273138,-0.059264358,-0.08560407,0.02594275,-0.0027364232,-0.052072305,-0.03229417,-0.026036153,0.024098037,0.01440745,-0.019229392,-0.06785745,-0.0074080448,-0.041914705,0.0037186164,0.031523593,0.0046876753,-0.015248079,0.023362486,0.011161687,-0.008838282,-0.034816056,-0.018248659,0.013485093,-0.026923485,0.025102122,0.011418547,-0.001384995,-0.014675984,-0.03624046,0.03659072,0.006497363,0.005610032,0.03110328,-0.030939823,0.0004972993,0.043362454,0.021961438,-0.016789233,-0.034979515,-0.03056621,0.052305814,-0.0007676579,-0.045510728,0.007069458,-0.046631567,0.011336818,-0.054360688,0.012142422,0.008371266,0.032060664,0.007962626,-0.003377111,0.015598341,-0.03292464,-0.0402568,-0.010682995,-0.025545787,0.0050525316,0.063000485,-0.02535898,0.06393452,0.010776399,0.0072270758,0.036520667,-0.038178574,0.030379403,-0.018400438,0.0051488536,-0.04698183,-0.0050700447,-0.0068826512,-0.03000579,-0.0061354255,-0.0431523,-0.0015046678,0.03343836,-0.067297034,-0.014921168,0.04088727,0.0005166367,-0.003336247,0.0330881,0.03922936,0.014629283,0.05361346,-0.0036281322,-0.057209484,0.013800329,0.034535848,-0.05277283,0.0022825417,-0.0035318101,0.022451805,0.022253321,0.010046686,-0.035399828,0.016158761,0.04200811,0.06832447,0.024891963,0.015656719,-0.052212413,-0.006357258,-0.006637468,-0.0072737774,0.0097139375,0.046421412,0.007022756,-0.019953268,0.00062682334,-0.00054290635,0.0095329685,-0.038552187,0.023152329,-0.012130746,-0.02419144,0.0044775177,-0.015107974,0.0019541709,0.002050493,0.054921106,0.0027247476,-0.009567995,0.02622296,-0.03220077,-0.030075844,-0.043619312,-0.014477503,0.020140074,0.046304658,0.008709853,0.011943939,0.0074080448,-0.025312278,0.06472845,0.01280792,0.0057005165,-0.031149982,0.001865146,-0.01948625,0.03056621,-0.0489433,0.055481527,0.01931112,-0.038458783,0.0057997573,0.015493263,-0.014068863,-0.027530605,0.0075072856,-0.03687093,-0.044249784,-0.02248683,0.0115761645,-0.015306456,-0.009585507,0.0115353,-0.04667827,-0.014652633,-0.03631051,-0.040747166,0.048429582,-0.026106207,-0.013239909,-0.012165772,-0.04067711,-0.0346059,-0.0050291806,-0.024284843,0.02680673,0.022603584,-0.052352518,0.02995909,-0.032060664,-0.022148244,0.033298254,-0.0012784569,0.0051488536,0.025522435,-0.04434319,-0.022451805,0.010805587,0.033368308,-0.026293013,0.005537061,0.023058925,-0.02002332,-0.008774067,0.072994635,-0.04006999,0.017571485,-0.0042264964,-0.017267924,0.03890245,0.0073963692,0.008137757,-0.015131325,-0.0137769785,-0.005712192,-0.041097425,-0.035259724,0.032807887,0.000045743873,-0.02939867,0.023000548,-0.0046818373,0.024985367,-0.0055516553,0.0402568,-0.018283684,-0.026433118,-0.06556907,-0.03381197,0.042148214,-0.0023919987,-0.045674186,0.024915315,0.008528884,-0.007548149,0.040770516,0.03458255,-0.027600657,-0.05935776,0.039976586,0.031476893,0.031220034,0.024938665,-0.02004667,0.03799177,0.0061295875,-0.06421473,-0.008149433,-0.015598341,-0.022778716,0.0051722047,-0.028184429,-0.011260929,0.025452383,0.0346059,0.0032282495,-0.039065905,-0.028254481,0.031827156,-0.02479856,0.0029130136,-0.02136599,0.01702274,0.011914751,0.009235245,0.0032749511,0.036707472,-0.0008296835,-0.010140089,0.049503718,0.00011629798,-0.0036777526,-0.002739342,0.0075014476,0.0026751272,-0.012761218,-0.002437241,0.006228829,0.040163394,-0.022148244,-0.033368308,0.015411534,0.03224747,0.042872086,-0.044459943,0.0068184366,-0.061879646,0.007974301,-0.025218874,0.00093622156,0.029165162,-0.08219485,-0.051091574,0.0009719775,-0.044529997,0.050297644,0.010682995,0.012737867,-0.07392866,0.022661962,-0.036497317,-0.025475735,-0.00002367006,-0.023899555,-0.006088724,0.02995909,-0.015820174,-0.03222412,-0.02708694,0.026970185,-0.010315221,0.03862224,-0.0020154668,-0.009620534,0.06402792,0.04004664,-0.057442993,0.022860443,0.031570297,-0.0071336725,-0.012364254,0.014489178,0.008149433,-0.015411534,0.0012872134,0.033531763,0.00054874405,-0.01471101,0.015166352,0.040140044,0.034489147,-0.016742531,-0.01570342,-0.039369468,0.05562163,0.005948619,0.007040269,0.0038558026,-0.015411534,-0.038482137,0.03110328,0.019357821,0.043385804,-0.058517132,0.0068417876,-0.010577917,0.04378277,0.02538233,0.063093886,0.01712782,-0.009007575,-0.0022825417,0.03806182,0.043619312,-0.013636873,0.07266772,-0.050904766,-0.013380014,-0.010215979,-0.009042601,0.009906582,0.057489693,-0.029258566,-0.012049018,-0.0038382895,0.025032068,0.048849896,0.038832396,-0.016403943,-0.045674186,-0.009994146,0.05412718,-0.0067308713,0.004748971,-0.057162784,-0.016917663,-0.010741373,-0.015072948,0.0079276,-0.016707504,0.05300634,0.0144541515,0.03283124,-0.041914705,-0.046631567,0.019603005,-0.06785745,0.028417936,-0.0055458173,0.0057209483,0.014045512,0.0022372995,0.027834166,-0.03689428,0.005256851,-0.03511962,0.0071862116,0.03194391,0.027740764,-0.0014287777,0.0008362509,0.0120723685,-0.014325722,-0.017081117,0.03229417,0.003041443,-0.0004133823,0.0010500568,-0.030682964,-0.021984788,-0.0030589562,-0.050204244,0.007921763,0.0056596524,-0.018750701,-0.0069060023,-0.012877972,0.008371266,0.006380609,0.11441897,0.035703387,0.035306424,0.008826606,0.008633962,0.014162267,0.0066082794,-0.0073496676,-0.010939854,-0.0111792,0.019299444,-0.011360169,-0.032784536,-0.021938086,-0.0012405118,0.017653212,-0.06430813,0.0020213046,-0.015750121,0.042148214,-0.0029436615,-0.019451225,-0.04072381,-0.04779911,-0.015434885,-0.0007676579,0.043409158,0.0057238676,-0.01072386,-0.02391123,0.02594275,-0.016625777,0.020011645,0.0013616441,0.012877972,-0.0120723685,0.033648517,0.023012223,-0.017384678,0.018435465,-0.014208968,-0.055434823,-0.058750637,-0.01961468,-0.023082277,0.003254519,-0.04875649,-0.017069442,-0.014524204,-0.022440128,-0.021949762,0.017011065,0.001570342,0.038785696,-0.04093397,-0.0023963768,-0.0030881446,-0.0023379999,-0.018739026,-0.019836513,0.005359011,0.00785171,0.0124226315,0.010373597,0.005084639,-0.022977198,0.0037156977,0.013286611,0.010262681,-0.0038820722,0.023315784,0.01933447,-0.005770569,-0.045931045,-0.011710431,0.0053152284,-0.05968467,0.02767071,0.014500854,0.017034415,0.00029571613,0.009089303,0.006812599,-0.018388763,-0.021634527,-0.028324533,0.006789248,-0.016964363,0.06640971,0.028651444,0.00008815843,-0.041330934,0.0025277252,-0.01872735,-0.033835325,0.02289547,0.0048569688,0.011873887,0.041050725,-0.011348493,0.0036135379,0.020665467,-0.00950378,0.034792706,0.06570918,0.017092792,0.035213023,0.024378246,-0.020034995,-0.0009624912,0.016707504,0.061786246,0.014290696,0.0025364817,0.02540568,0.019929916,-0.026666624,-0.01382368,-0.0096789105,0.049410313,0.042171564,0.0060770484,0.007378856,-0.009083465,0.012562736,0.011932264,0.005688841,-0.0077174427,-0.051558588,0.014103889,0.013555145,-0.014033837,-0.01844714,-0.022732014,-0.04702853,0.015411534,-0.0007859007,-0.015995305,0.041868,-0.032434277,0.0026897215,-0.014185618,-0.048242774,-0.02652652,-0.008680664,0.02192641,0.00950378,0.020338556,-0.028020972,0.0017192034,0.013391689,0.020303529,0.013917083,-0.0026138313,-0.013088129,0.027740764,0.0058989986,0.052539323,-0.00039331522,-0.0008355212,-0.022802066,-0.006649143,-0.002551076,-0.0036631583,0.031827156,-0.013625198,0.014617607,-0.012819595,0.00464973,-0.005067126,-0.008931685,-0.004410384,0.008447155,-0.023514265,0.021517772,-0.024308193,-0.018260334,-0.014022161,-0.017594835,-0.020408608,-0.010180953,0.032177415,-0.0074138823,-0.038785696,-0.008464669,0.01872735,0.05562163,0.01931112,0.018061852,-0.005399875,-0.064961955,0.027880868,-0.020980703,-0.035586637,0.015913578,-0.053473357,0.06435483,-0.008301213,-0.02622296,-0.0026284256,-0.030332703,0.00040717976,0.053379953,0.0075598247,0.028744847,0.030122545,-0.023093952,0.038505487,-0.023222381,0.012889647,0.047775757,0.026316363,0.0020461148,0.0046176226,-0.025569137,0.024238141,0.0021993543,-0.062486768,0.027320448,-0.006024509,0.0050175055,-0.047705706,-0.025545787,0.017781641,-0.005461171,-0.018984208,0.001001166,-0.032107364,-0.008073542,0.026713327,0.005067126,0.0011835942,0.023887878,-0.019848188,0.020058347,0.008412129,-0.029795634,-0.03694098,0.018050177,0.021027405,0.06454164,0.01687096,0.030893123,0.0043636826,0.015026246,0.013356663,-0.008073542,-0.022673637,0.061179124,-0.022416778,0.0389258,0.0330881,0.02767071,-0.01900756,0.0021526527,-0.0073496676,0.023619344,0.031920556,0.011780484,0.0068768137,-0.011710431,-0.00041374716,-0.01023933,-0.017081117,-0.019065937,-0.0030064168,0.0062696924,-0.0010296248,0.017034415,0.017116144,-0.017314626,0.038995855,-0.021938086,-0.0009873015,0.009900743,-0.004194389,0.0026649113,-0.024915315,0.032154065,0.0151430005,-0.00097562606,-0.04495031,-0.0018899562,0.01209572,0.012796244,-0.013683575,0.012562736,-0.059778076,-0.012842946,0.026199609,-0.0547343,-0.02683008,-0.062440068,-0.026316363,-0.028161077,0.04200811,-0.03000579,-0.014594256,-0.020735519,0.024728509,-0.030099194,-0.014746036,-0.039556272,0.008949198,-0.010653807,-0.020712169,0.0033245715,-0.008937523,-0.03663742,0.023806151,0.011926427,-0.009544644,-0.0576765,0.011850536,0.014033837,-0.0006052968,0.0026838838,-0.031313438,-0.00950378,0.032177415,0.0021833007,-0.011114986,0.011762971,0.022545207,0.003555161,-0.032317523,0.044856906,-0.0024226466,0.02015175,-0.013450067,0.031570297,0.034512497,0.027133642,0.026036153,-0.016859286,0.053520057,0.029445373,-0.000020557378,0.0019702245,0.003161116,0.030379403,-0.048849896,0.013193208,0.041611142,-0.0077466313,0.03582014,0.0431523,-0.0061295875,-0.0033420848,-0.020011645,-0.031850506,0.008949198,0.04590769,-0.005458252,-0.028884953,0.010332733,-0.050297644,0.013204883,0.028464638,-0.0029071758,0.014769387,-0.0034033805,0.0020037915,0.0054086316,0.026923485,-0.0021132482,-0.013193208,0.0019862782,0.014477503,0.008108569,-0.0023525942,-0.014909493,-0.007022756,0.012434307,-0.022907145,-0.019731434,0.006637468,-0.016053682,0.0024182682,0.01915934,0.031313438,-0.017081117,0.029281916,0.021190861,0.0020796815,0.03661407,0.0288616,0.0040951483,-0.02058374,0.0021030323,-0.010052524,-0.016485672,0.021097457,0.0019468738,0.01903091,0.019287769,0.011768809,0.0067250333,-0.018949183,0.010665483,-0.026783379,-0.01755981,0.05099817,-0.0069410284,0.0037623993,0.016357243,-0.02035023,-0.004156444,0.01890248,-0.01712782,0.035656687,-0.0388791,0.028698146,-0.00006968757,-0.014886142,-0.008248674,-0.017699914,-0.017174521,-0.03173375,-0.0011544056,0.015633367,0.042475123,-0.0055428986,-0.024681807,0.010402786,0.064681746,-0.0179918,0.00698773,0.030893123,0.008587261,0.013566821,0.03196726,0.018517192,0.01933447,-0.013917083,-0.0038820722,-0.044249784,0.013905408,0.007600689,-0.05683587,-0.042802036,-0.027040238,-0.041751247,0.0034442446,0.0019760623,0.017606512,0.018785726,0.00030866853,0.021284264,-0.035936896,-0.05991818,-0.007548149,0.015014571,0.0070752953,0.031220034,-0.03862224,0.05683587,0.054080475,-0.030589562,0.03054286,0.009001737,-0.026923485,-0.00569176,-0.054921106,-0.038131874,0.00016865488,-0.023899555,0.009159355,-0.038598888,0.00922357,0.010852289,0.023712749,0.0019293607,-0.011506111,0.0016506104,0.019147664,0.020034995,-0.013088129,-0.05394037,0.010507865,0.008301213,0.018236984,0.007337992,0.025872698,-0.0045388136,-0.030612912,0.00008104373,0.015831849,0.017688239,-0.0052276626,0.042171564,0.01643897,0.0051079895,-0.017197872,-0.012224149,0.008785742,0.07556322,0.015178027,-0.026012802,-0.021844683,0.012924673,0.0023511348,-0.016427295,0.017186197,0.043105595,-0.013228234,0.0071511855,0.010070037,-0.011336818,-0.0055078724,-0.015084623,-0.043595962,0.048849896,-0.015516614,-0.028487988,0.019976618,-0.018960858,-0.009982471,-0.031920556,0.022556882,-0.007980139,-0.00021781928,0.013566821,-0.0018301198,-0.039532922,-0.003318734,0.008400454,0.02939867,-0.023164004,0.000848656,-0.038995855,-0.023689397,0.0061704516,0.011582002,0.020338556,0.04899,0.012189123,-0.010694671,0.031523593,-0.006228829,-0.0026444793,0.023654372,0.0048394552,0.00894336,-0.0050788014,-0.06272028,0.03824863,-0.013671899,0.00619964,0.014138916,0.012119071,-0.006637468,-0.008925847,-0.016217139,-0.01669583,-0.0081786215,-0.010128414,-0.015773471,-0.021179184,-0.021587824,0.0025525354,0.014512529,-0.0180385,-0.00057173,-0.014909493,0.022276673,0.01956798,0.009918257,-0.0044862744,-0.0010201385,0.0050145867,0.03575009,0.0015411535,0.014897817,-0.00024627807,0.007974301,0.020852273,-0.012259175,0.0015294781,-0.022778716,0.016205462,0.041938055,0.010215979,0.0077699823,0.018283684,0.049550418,0.024962015,0.007022756,0.022451805,0.0007410234,-0.027577307,0.0058814855,-0.04434319,0.0103677595,0.014489178,-0.003966719,-0.008867471,-0.02505542,-0.013134831,0.005633383,-0.00097635575,0.0033128962,-0.015820174,0.026783379,-0.0047752406,0.00993577,0.01453588,0.009702262,0.0086865015,-0.03458255,0.0038120197,0.026666624,-0.0017440136,-0.002537941,-0.027040238,0.009608858,0.026106207,-0.013660224,0.00264302,0.016579075,-0.009492104,0.004495031,-0.008225323,-0.017326301,0.014092214,-0.021879708,0.034162235,0.004121418,0.029585477,-0.0033304093,-0.031430192,0.025499085,0.0012894026,-0.029141812,0.010070037,0.005942781,0.012866297,0.0022212458,-0.020595415,-0.0026999374,0.032480977,-0.0021161672,0.04875649,-0.014022161,-0.0047810785,0.030659614,-0.042475123,-0.0055253855,-0.035049565,0.0223584,-0.002459132,-0.0032457625,0.019019235,0.036357213,0.020315206,0.00051882584,0.031220034,0.008225323,0.020361906,0.01771159,0.038131874,-0.0068417876,0.030729666,0.004264442,-0.014302371,0.0048628063,0.0063922843,0.017139494,0.014640958,0.0011361629,-0.018085202,0.00713951,-0.01697604,0.027320448,-0.026923485,-0.010204304,0.0073671807,-0.00034442445,-0.005160529,0.029211864,-0.0045446516,-0.003569755,0.005478684,-0.017629862,0.0074138823,-0.0029553368,0.002088438,0.0061879647,0.0124109555,0.022603584,-0.03782831,0.002197895,-0.013018076,0.0095329685,-0.010075875,0.026923485,0.0039754757,-0.03633386,0.01771159,0.002589021,0.015364833,-0.008318726,0.011114986,-0.027857516,0.01455923,-0.032480977,-0.028020972,-0.00047905647,-0.016158761,-0.017933423,0.010659645,-0.007880898,0.010642132,-0.01646232,-0.018026825,-0.013029752,0.0071161594,0.011856374,0.040163394,-0.00041484175,-0.029001707,0.02650317,-0.014804414,0.048429582,-0.010647969,0.04698183,0.052492622,-0.0039170985,0.033508413,-0.0050904765,-0.010251006,0.017326301,0.014500854,0.020490335,-0.016275514,-0.017244574,-0.0008479263,0.0028896627,0.0068359496,-0.02291882,-0.06225326,0.040186744,-0.0023336215,0.0070169186,-0.0085055325,0.000285865,-0.023304109,0.014220644,0.025755944,0.024121387,-0.0032282495,0.030753016,-0.009772314,-0.022708664,0.011506111,0.024891963,0.008272025,-0.018050177,0.018844103,-0.02883825,-0.03696433,-0.017933423,0.0006804572,0.0008508451,-0.016368918,-0.01427902,0.007180374,-0.030075844,0.021249237,0.019696409,-0.001755689,-0.024611754,-0.014967869,-0.028908303,0.01611206,0.0021307615,0.010070037,-0.005058369,0.010449488,0.00327787,-0.027927568,0.027437203,-0.027904218,-0.035890196,0.010414462,-0.0020110884,-0.0054261447,0.0070752953,0.009696424,0.0033800297,0.0028794468,0.08219485,0.014921168,-0.00051408267,-0.04579094,-0.0047635655,0.008131919,-0.010647969,-0.03168705,-0.055388123,-0.004559246,-0.011978965,0.005572087,-0.0055283043,-0.014827765,0.016182112,0.03717449,-0.022229971,0.005572087,-0.033485062,0.019206041,0.0037536428,-0.03829533,-0.04786916,0.013718601,-0.010227655,0.03397543,-0.00019939402,0.027156992,0.014746036,-0.019124314,-0.006228829,0.02317568,0.008096893,0.013800329,0.004200227,0.038458783,-0.015329807,0.005049613,-0.024705157,0.023841178,0.015668394,-0.02358432,-0.0025481572,0.00018507341,-0.004918264,0.008032679,0.004019258,-0.0047402144,-0.011506111,-0.012025667,-0.023012223,-0.025685892,0.00094278896,-0.0054670083,0.020140074,-0.00094643753,-0.0019351984,-0.0026284256,-0.008143595,-0.0097139375,0.0043374132,-0.024775209,0.006666656,0.014746036,-0.009246921,0.027553957,-0.02736715,-0.0016272595,0.04670162,0.03283124,-0.016684154,0.03051951,0.010052524,0.024424948,-0.008400454,0.06108572,-0.026689976,-0.0063922843,0.028744847,-0.021237561,0.0038412083,0.0029816066,0.030893123,0.029889038,-0.0019060099,0.0045796777,-0.008575585,-0.034675952,-0.0056392206,-0.047378793,-0.0061704516,0.013625198,-0.019381173,-0.01354347,-0.020081697,-0.014465827,-0.015691744,0.012165772,0.01440745,0.003651483,0.00017768507,-0.01669583,0.0031727913,-0.029748932,0.0064273104,0.026339713,0.0025321036,-0.015866876,0.016649127,-0.02907176,0.013193208,-0.006970217,-0.021295939,0.015014571,0.0029553368,0.01702274,0.020922326,0.0259661,0.020420283,-0.024308193,0.012644464,-0.021120807,0.03572674,0.030729666,0.0074489084,-0.057769906,0.017898396,-0.008558072,-0.038225275,-0.016555725,-0.009176868,-0.011751295,0.011243415,0.019801486,0.004597191,-0.0038324518,0.0039170985,0.016403943,-0.020186776,-0.034325693,0.022311699,-0.0015163432,-0.03107993,-0.016952688,0.013368339,-0.007910087,-0.011640379,0.044646747,-0.020245152,0.0040922295,-0.024775209,-0.005627545,0.030145897,0.023432538,-0.015072948,-0.007793333,0.04492696,-0.049457017,0.015213053,0.007478097,0.005084639,0.015901903,0.005058369,0.013882057,-0.036730826,0.011476923,-0.0027043158,-0.0070752953,0.009854042,-0.030659614,0.01542321,-0.028301181,0.009999985,-0.0107063465,0.0005498386,-0.012259175,0.06192635,-0.0006600252,-0.0134267155,-0.01499122,-0.017396353,-0.025592487,0.006065373,0.011727944,0.04677167,-0.019603005,0.0141272405,-0.039462868,0.017256249,0.018750701,0.033204854,-0.026246311,-0.026619924,-0.01697604,-0.0016841772,0.023257406,-0.0021920572,0.006158776,0.0019191448,0.054687597,0.026923485,0.015026246,-0.008890821,0.0016900148,-0.028347883,0.022860443,0.020723844,-0.0016943931,0.0073846937,-0.0077816574,-0.019731434,0.004927021,-0.012329228,-0.018377088,-0.007518961,0.027156992,0.026036153,-0.012177448,-0.0073263166,0.015843526,-0.022743689,0.017734941,0.03406883,0.04927021,0.018213632,0.014150591,0.020140074,0.029305266,-0.025242226,-0.0055516553,0.007653228,0.004786916,-0.018762376,-0.023642695,0.020980703,0.034956165,0.005417388,0.026152907,0.012119071,0.0055020344,0.041027375,-0.020338556,0.03488611,-0.028581392,0.00055640604,-0.019789811,-0.0067834104,-0.024261491,0.00370986,-0.00111792,-0.0014156429,-0.011669568,-0.0011784862,-0.012387604,0.028581392,0.010344409,0.007863386,-0.04810267,0.0024576727,-0.000056963207]},{"id":"interface-ClientEventMethods","type":"interface","source":"main","text":"Interface: ClientEventMethods\nDescription: Typed event handler methods. Use client.events.MessageReactionAdd((reaction, user, messageId, channelId, emoji, userId) => {...}) or client.on(Events.MessageReactionAdd, ...).","meta":{"url":"/docs/typedefs/ClientEventMethods"},"embedding":[0.0111767985,0.005842544,-0.007864534,0.031279396,-0.005135965,0.026654514,-0.028687675,0.009847424,0.0135730235,-0.012020225,0.0054990295,-0.023548916,0.04982361,0.039009873,-0.0036501938,0.00023477002,-0.0026573522,0.024487298,-0.0076411096,0.05666039,0.019951785,0.04153457,0.04385818,0.051745057,-0.0026838838,0.0078421915,-0.0045718187,0.03979186,-0.015952492,0.0013573023,0.049689554,-0.01962782,0.028106771,-0.009283278,-0.0036669506,0.030698493,0.0023040627,0.015237534,-0.034072198,0.041668624,-0.029894166,-0.045243412,0.015360418,0.0451317,-0.06926152,0.013718249,-0.048617117,0.020521518,-0.03682032,0.020052327,-0.016008347,-0.0040383935,0.03288805,0.05196848,0.0152933905,-0.038272575,-0.017013757,0.011104185,-0.01962782,0.018745296,0.01069085,-0.032552913,0.009383819,-0.016131232,-0.029268578,-0.0038680325,-0.012980949,0.005381732,0.01492474,0.03067615,0.035301033,-0.0039099245,-0.026967308,-0.005705697,-0.011484006,-0.009947965,-0.03342427,-0.020532688,0.0060771396,-0.004426593,0.032262463,0.03288805,-0.046650983,-0.042450607,-0.037714012,-0.008557149,-0.052013166,-0.012042567,-0.03152516,0.009830667,-0.014444378,0.01547213,-0.05451552,-0.000032269967,0.045265753,-0.02156044,-0.016969072,-0.0066077723,-0.010674094,0.015248706,0.04892991,-0.07569613,-0.02395108,0.008925799,0.021605125,0.003007849,-0.015583842,-0.0004922316,-0.038719423,-0.010942203,-0.041690964,-0.0028277133,-0.011651575,0.03454139,0.018566556,-0.050359827,0.0657761,-0.010651751,-0.039277982,0.0074902982,-0.03813852,0.04258466,0.038741764,-0.011037158,-0.026676856,-0.054604888,-0.01064058,-0.031100657,0.009350305,-0.005462723,0.05223659,-0.0056135342,-0.0011073465,-0.008590663,0.021448728,-0.0051722713,0.026565144,0.028799387,-0.044908274,-0.041422855,0.037758697,0.015226363,0.014969425,0.023414861,0.015036453,-0.011930855,-0.055319846,0.002921272,0.01962782,-0.044014577,-0.025358653,0.020342778,-0.024442613,0.00092302146,0.041422855,-0.01889052,-0.0035664097,0.019303855,0.00032448882,-0.029670741,0.034965895,-0.04475188,-0.01308149,0.03378175,-0.04901928,0.0030609122,-0.0014550504,0.037088428,0.014768343,0.032508228,0.035323374,-0.019270342,-0.011433736,0.041132405,-0.019058088,-0.05223659,0.00479245,0.03360301,-0.042137813,0.051566318,0.033491295,0.02237594,-0.051521633,-0.023817025,-0.02799506,-0.02256585,0.0066747996,0.035122294,-0.008741474,-0.06278221,-0.004245061,0.020186381,0.007825434,0.018387817,0.04247295,-0.011551034,0.017080784,-0.03463076,-0.028352538,-0.019147458,-0.004937676,-0.059252113,0.027146047,0.010975717,0.018611241,-0.03362535,-0.027704608,-0.006244708,0.034116883,-0.019058088,0.010059677,-0.008786159,0.015572671,-0.005501822,-0.062022574,-0.008529221,-0.050806675,0.015215192,-0.068099715,-0.011718602,-0.0333349,-0.018644754,0.07288099,-0.03076552,-0.066357,0.05067262,0.025783159,0.022800446,-0.011740944,-0.008853186,-0.068412505,-0.0061497525,0.0036250586,-0.021828549,0.060994823,0.0023417654,0.03344661,-0.011461664,0.02007467,-0.031547505,0.022688733,-0.0029324433,-0.0102384165,0.006970837,-0.0012784057,0.042204842,0.0140422145,0.05049388,0.018298447,0.018689439,0.032173093,-0.009294449,0.023057383,0.025313968,0.019739533,0.00444335,0.042696375,0.027659923,-0.011964369,0.017069614,0.036172386,-0.04421566,-0.00023546822,0.03315616,-0.060101125,-0.013226716,0.018119708,0.040506817,-0.0370214,0.0362841,0.025291625,-0.021817379,0.00068842596,-0.004398665,-0.027190732,-0.01713664,0.008635348,0.046785038,-0.024330901,0.024889462,-0.038741764,-0.017929796,0.050449196,-0.015505644,-0.02164981,0.0029128937,-0.020398634,-0.031748585,0.016008347,0.0041110064,-0.0060938965,-0.016365826,0.00861859,-0.051164154,0.018655926,0.035703197,0.039479066,-0.00414452,0.029134523,0.0042338897,0.0028737944,-0.021571612,-0.015304562,-0.06385465,0.03474247,0.00284447,0.026944965,-0.008093543,0.022331255,-0.02228657,0.019873587,0.030184617,-0.0072054323,-0.031055972,-0.035569143,0.014634289,0.01796331,0.065284565,-0.011484006,-0.02533631,0.00026444354,-0.009696612,0.013394284,-0.037423562,-0.020655572,-0.04799153,0.013271401,-0.037378877,0.04946613,0.08025399,0.05353245,-0.055677325,0.021080079,0.010897518,0.0887888,0.010478597,-0.03509995,-0.011081843,0.020253409,0.047678735,0.04745531,-0.039210957,-0.013383113,-0.03789275,0.04781279,-0.023571258,-0.000098184486,0.012087252,-0.014589604,0.016354656,-0.03371472,0.0070322785,-0.02920155,-0.04763405,0.013841133,-0.017181326,-0.023749998,0.0035245176,-0.00074986764,0.019180972,-0.0037367707,0.04745531,0.012031396,-0.00783102,0.025716132,0.021359358,-0.060726713,0.00384569,0.0069484944,-0.05286218,0.006909395,0.04642756,-0.024286216,0.02046566,-0.022498822,0.017929796,-0.029156866,0.003348571,0.017170154,0.014578433,-0.021057736,0.024375586,-0.005348218,-0.0022887022,0.016309971,-0.016276456,-0.059475537,-0.020968366,-0.010735535,0.043433674,0.07037864,-0.022219542,-0.062469423,0.009696612,-0.020420976,0.011707431,0.020119354,0.01100923,0.004418215,-0.011651575,0.0032592013,0.0126346415,0.031904984,0.013874646,-0.022711076,-0.013371942,-0.030698493,0.025827844,-0.006780926,0.028508935,0.05590075,-0.016902044,0.041757993,0.052191906,-0.032396518,-0.039590776,0.007875705,-0.0020904131,0.013896989,0.028196141,-0.037088428,-0.045645576,-0.02303504,-0.007378586,-0.02524694,-0.02294567,0.022063145,-0.032955077,0.018857006,-0.025269283,-0.03619473,-0.011338781,0.04394755,0.007467956,0.042539977,-0.019303855,0.036999058,0.0068479534,-0.009551386,0.03999294,-0.029179208,0.0466063,0.034854185,0.04200376,-0.043813497,-0.009288863,-0.04495296,0.017873941,0.0026559557,-0.011986711,-0.04099835,0.0017231596,-0.009540215,0.023169095,-0.054113355,-0.03297742,0.01566204,0.01390816,0.02946966,-0.015047624,-0.00034281658,0.046740353,-0.04093132,0.046919093,-0.025269283,0.011662746,-0.016689792,0.024666037,0.017952139,-0.031748585,0.0025205049,-0.0011464457,0.019326197,0.022990355,0.0005512295,-0.028888756,0.07560676,-0.010903103,0.03342427,0.029894166,0.03161453,0.048661802,0.0024995587,-0.019873587,-0.05858184,0.067831606,-0.011048329,-0.042160157,0.021013051,0.034384992,-0.019493766,-0.003164246,0.00207226,-0.009691027,0.053666506,-0.021772694,-0.006568673,-0.006484889,0.0096128285,-0.025179913,-0.019638991,0.007440028,-0.06890404,0.01878998,0.03335724,0.053040918,0.009607242,0.044461425,-0.016890874,0.018264933,-0.03299976,-0.025068201,-0.024464956,0.0036809146,0.006300564,-0.012265991,-0.037267167,-0.03655221,-0.008635348,-0.013528339,-0.00090556644,0.040685557,0.013036805,-0.005105244,-0.0084677795,0.0015974834,0.001057076,-0.01972836,-0.03831726,-0.01842133,-0.010260759,0.0018167185,0.040618528,-0.0037702844,-0.009372648,0.013394284,-0.052906863,-0.004437764,0.006071554,-0.040663213,-0.02229774,0.000033928194,0.0033401926,-0.037736356,-0.017125469,0.044550795,-0.012131937,0.038630053,-0.016298799,0.029022811,-0.0010773238,-0.040864296,0.038294915,-0.042227183,0.022398282,-0.016254114,0.0043344307,-0.017985653,0.0073618293,-0.0036781218,-0.0039657806,-0.014422036,-0.0008741474,-0.02754821,-0.03869708,-0.012265991,0.01658925,-0.0023264051,-0.0584031,0.042607006,-0.008316968,0.015796095,-0.01620943,-0.019661333,-0.03152516,-0.0031251467,-0.018868178,0.015226363,-0.01620943,-0.043791153,0.004655603,0.0048259636,0.015986005,0.016712135,-0.011193555,-0.032530572,-0.011389052,0.0040244292,-0.0021853684,0.028352538,0.040774927,0.00460254,0.02045449,0.03813852,-0.0148241995,0.01694673,-0.015148165,0.03270931,-0.013461311,-0.0013538114,0.0025651897,0.00837841,-0.004904162,-0.021862064,-0.005406867,0.045087013,-0.005504615,-0.035591483,-0.05380056,0.035569143,0.018633584,0.053487767,-0.008691204,-0.01576258,-0.04300917,-0.0076131816,0.001752484,-0.0074902982,-0.010919861,0.008143814,-0.04300917,0.029760111,0.0213817,-0.0043316376,0.0032089308,0.032106064,0.016700963,-0.0036557794,0.03020696,-0.0029743353,0.021895576,0.022454137,0.00056903367,-0.02763758,-0.025224598,-0.024018107,0.039479066,-0.022789273,-0.00879733,-0.0039825374,0.0054515516,-0.00788129,0.037267167,0.009450845,0.0207226,0.026051268,0.011495178,-0.006071554,0.019583136,0.015427445,-0.025805501,-0.020566203,0.037311852,-0.011484006,-0.009132466,-0.005401281,0.01832079,0.016511053,0.020744942,0.0022579813,0.037423562,0.006752998,-0.022666391,0.02442027,-0.009959136,0.03143579,-0.015974835,0.01972836,0.000113021255,0.027190732,0.04312088,0.05969896,0.005189028,0.015907807,0.045355123,-0.02625235,0.0036222658,-0.018097365,-0.004161277,-0.02542568,0.012388875,-0.013707078,-0.026274692,-0.03778104,0.019180972,-0.012601128,-0.016254114,-0.0068032686,0.008607419,0.028129114,0.01114887,-0.03342427,0.0061497525,-0.00939499,0.01271284,0.008534807,0.012958607,-0.0033401926,0.024554325,0.02082314,0.00076941727,-0.0049879462,0.0041780337,-0.005959842,0.007294802,0.0066301147,0.034608416,-0.02442027,0.059833016,-0.0135730235,-0.033938143,-0.0028123527,0.0014494648,0.0031111827,-0.017527632,0.005272812,0.011495178,0.0087805735,0.0074288566,-0.023973422,-0.013774105,0.009003998,0.0015639698,0.013852304,-0.029737769,0.029804796,0.038764108,0.04309854,-0.027503526,0.0399706,-0.020979537,0.06269284,0.013282572,-0.0043344307,-0.022364767,0.018276105,-0.023638286,-0.005591192,-0.03197201,0.0035719953,0.016477538,-0.029313263,0.035122294,-0.022320082,0.023057383,0.021415215,0.012277163,0.020488003,-0.028106771,-0.000018404136,-0.04153457,0.0050465954,-0.06903809,0.015159336,-0.03306679,0.0007261288,0.007211018,-0.0141986115,-0.033580665,0.00800976,0.020309264,0.018555384,-0.0018111329,0.011528691,-0.016712135,-0.02763758,-0.01823142,-0.021616297,-0.0177734,0.014153927,-0.010746706,-0.01832079,-0.023347834,0.009668685,0.042517636,0.0018641962,-0.03534572,-0.02560442,-0.013550681,-0.015863122,-0.0050549735,-0.0013014462,-0.0011652971,-0.028598305,-0.016566908,-0.007082549,-0.022577021,0.004610918,-0.006429033,-0.050627936,0.014053386,-0.028151456,0.02164981,-0.00999265,-0.030363357,-0.0112270685,0.01878998,-0.068769984,0.0022160893,0.034943555,-0.015360418,-0.016924387,-0.017527632,-0.010003821,0.05701787,0.011573376,-0.054917682,0.018197905,-0.03492121,0.025783159,-0.028017402,0.02690028,-0.02533631,0.0006158131,-0.022398282,-0.0126346415,-0.0057699312,-0.0038205548,0.004225511,-0.044260345,0.04267403,0.011830314,0.041936733,-0.019382054,0.020756112,0.01345014,0.027570553,0.019482594,-0.017471777,-0.007763993,-0.005035424,0.0020080255,0.06260347,0.03353598,0.014678974,-0.0019451875,-0.07953903,0.035591483,0.006071554,-0.009735712,-0.0013223923,0.019404396,0.005306326,-0.016555738,0.017058441,-0.024263874,0.017952139,0.0071775042,0.0065351594,0.0355468,0.009696612,0.03916627,0.040462133,-0.021973776,0.039769515,0.004655603,-0.010808148,-0.00709372,-0.00049956265,-0.019594306,-0.042271867,-0.023995765,-0.019292684,-0.014880056,-0.0046500172,0.028777044,0.02082314,0.0068870527,0.00075335865,-0.006780926,-0.0032145164,0.030743178,0.010735535,-0.00045138682,0.04111006,0.01390816,0.0008015345,0.0037870412,0.02156044,-0.014109242,0.0017203668,0.012187793,0.009808324,0.0017008171,-0.008210842,0.0108640045,0.017203668,0.031904984,-0.027615238,0.0009642153,0.02681091,0.027213074,-0.019828903,-0.055230476,-0.014846542,0.02007467,-0.021102421,0.009305621,-0.06162041,-0.0035803737,-0.026699198,-0.035881937,-0.0093000345,-0.0451317,0.014176269,0.024464956,0.039389696,-0.030497411,-0.01889052,-0.042182498,0.010473012,0.006836782,0.026274692,0.024643695,0.025649104,0.01308149,0.012902751,-0.041579254,-0.022722246,-0.011137699,-0.031391107,0.012668155,0.013070319,0.00014854221,0.012355361,0.0044796565,0.01666745,0.014600775,0.0031419036,0.020097012,0.023057383,-0.037714012,0.00069052057,-0.02486712,0.018466014,-0.00207226,0.0156061845,0.007719308,-0.016522223,0.02055503,-0.029268578,-0.019460252,-0.0045243413,-0.031100657,0.023995765,-0.008646519,-0.04267403,0.0060827252,0.0156061845,0.010283101,0.0057252464,-0.012813381,0.040707897,0.022778103,-0.013092661,-0.017851599,0.00944526,0.008305796,0.013003292,0.015125822,0.012444731,-0.030229302,-0.030273987,-0.00039308704,-0.0060101124,-0.01418744,0.016723305,0.017717544,-0.014064557,-0.01601952,-0.020800797,-0.0038847893,0.03472013,0.033737063,0.011277339,-0.007870119,0.0005089884,0.0039825374,-0.02690028,0.0029743353,0.019203315,0.043791153,-0.04946613,0.021258818,-0.012813381,-0.030005878,0.008735889,0.003421184,0.021404043,0.005577228,-0.00084203016,-0.04117709,-0.0070211072,0.0047002877,0.024978831,-0.0151369935,-0.019884758,0.018276105,0.009182737,0.031636875,-0.005189028,0.02246531,0.0010144857,0.0046891165,0.048885226,0.008512464,0.035412744,0.0026713163,0.04274106,-0.042338897,0.014746001,0.010014992,0.01566204,-0.03990357,-0.010149047,-0.012042567,0.039322667,-0.007138405,-0.0235936,0.032463543,0.053398397,-0.047410626,0.022610534,0.011422565,-0.035770223,-0.045846656,-0.019136287,0.011221483,-0.015025281,-0.017114298,-0.014589604,0.05666039,-0.013975187,0.030251645,0.014611946,0.012534101,0.02643109,0.010199317,0.029357947,-0.027570553,-0.044796564,-0.030519754,-0.010791391,0.032441203,0.05286218,0.005135965,-0.0008909042,-0.0064793034,0.006557502,0.03353598,0.009947965,-0.022711076,-0.031234711,-0.026386404,0.032307148,-0.00014697126,0.004418215,0.054381464,-0.0045718187,0.019002233,0.0037535275,-0.011707431,-0.010841662,0.002921272,0.022364767,0.019315027,-0.021538097,-0.007819849,0.016734477,0.026006583,-0.030095248,0.0022244677,0.020845482,-0.0048315492,-0.006741827,-0.020499175,0.000047084915,-0.020510346,-0.021973776,-0.053040918,-0.013371942,0.025827844,-0.01118797,0.008238769,-0.026743883,-0.00024663942,-0.01510348,-0.005591192,-0.011372294,-0.01299212,-0.019002233,0.005401281,-0.0057252464,-0.023839368,-0.022900986,0.019035745,0.009434089,-0.02946966,-0.009160395,-0.031927325,0.015259877,0.0062223654,-0.015650868,0.020767285,0.03150282,0.044238,-0.015248706,-0.060994823,-0.00091743586,0.028888756,-0.005244884,-0.0033150574,0.012601128,-0.013070319,-0.034228597,0.035435088,-0.0036725362,-0.0042646104,0.027436499,-0.021068906,0.03807149,-0.0017217632,0.015997177,0.022152515,-0.036172386,-0.011472835,0.019415567,0.024286216,-0.052013166,-0.013483654,-0.016287629,0.007121648,0.016656278,-0.055230476,-0.01971719,-0.016566908,0.037646987,0.023258464,-0.0046807383,-0.02837488,0.014768343,0.039076902,-0.022878643,0.023504231,-0.021314673,-0.024800092,-0.007752822,0.050717305,0.014008701,-0.02882173,0.02450964,0.030452726,0.017281866,0.018466014,0.040462133,-0.023347834,-0.012735182,-0.01980656,0.013282572,0.0035524457,-0.034139227,-0.0089369705,0.03315616,0.012701669,-0.0028821728,0.013896989,-0.03150282,-0.02643109,0.001116423,0.008540392,0.007121648,-0.0044210074,-0.03132408,0.018667096,-0.013126175,0.0348095,0.011143285,0.01603069,0.044729535,-0.0017301416,0.013371942,-0.02054386,0.012578785,-0.032463543,-0.012846895,0.013561852,-0.015784923,-0.013863475,-0.029000469,0.0045187557,-0.014611946,0.0011953197,0.020331606,-0.045556206,-0.028263168,-0.013785277,-0.032686967,-0.029447317,0.03206138,0.025872529,-0.018197905,0.01601952,0.012411217,0.0066357004,0.039210957,-0.0005987072,-0.017896283,-0.004599747,0.040976007,0.0049292976,-0.0019591514,0.01666745,0.055945434,0.011707431,-0.013159689,-0.0053677675,0.000004418302,0.002979921,-0.024464956,0.034094542,-0.0006402501,-0.011908513,0.01601952,-0.018343132,0.004429386,0.0063899336,-0.02938029,0.0057922737,-0.022577021,0.008875528,0.005501822,-0.022230713,0.010143461,0.04430503,-0.013796448,-0.0017720336,0.00046011433,0.027123705,-0.017360065,0.022778103,-0.011277339,0.0042338897,0.020097012,-0.0023110446,-0.007250117,-0.014891227,-0.020018812,-0.031480476,0.014701316,0.030877233,0.012455902,-0.03206138,0.01081932,-0.009579315,-0.015885465,-0.0068591246,0.019951785,-0.014768343,-0.008931384,0.011897341,-0.028844072,-0.013204373,-0.008322554,0.0058928146,-0.049332075,-0.008596248,-0.023370177,-0.0045801974,0.051923797,-0.0013063337,0.011053915,-0.010093191,0.0009691027,0.036775634,0.012869237,0.029894166,0.031145342,-0.01023283,0.020488003,-0.009389404,0.003890375,0.0033541566,0.019058088,-0.007367415,0.0075852536,-0.007523812,0.02634172,0.0016463575,0.007663452,0.0052392986,-0.01722601,-0.006713899,0.01823142,0.018376645,-0.010422741,0.031257052,0.0095849,-0.0123218475,0.0018278897,0.0021811794,-0.007858948,0.05241533,0.01575141,0.032396518,-0.0070322785,0.015874293,0.01086959,-0.024308559,-0.0033820847,-0.014466721,-0.028687675,0.051611003,0.020242237,0.01815322,-0.009126881,0.007736065,-0.017818084,-0.0063899336,0.0048287567,-0.019873587,-0.022878643,0.01547213,-0.021906748,-0.0029101009,0.0235936,-0.008713546,-0.005998941,-0.04910865,-0.00011441766,0.018209077,-0.0031670388,0.008512464,-0.037937436,-0.008149399,-0.03795978,-0.011785629,-0.008037687,0.007618767,0.0146678025,-0.00057915755,-0.02920155,-0.006669214,-0.024889462,0.03132408,-0.0065798443,0.0569285,0.009774811,-0.020041155,0.011964369,-0.040015284,0.005236506,-0.016321141,0.013975187,-0.045109358,0.016388169,-0.0047617294,-0.009875352,-0.00012349426,0.020420976,0.045846656,-0.033647694,0.0135730235,-0.0011066482,-0.0019465839,0.015907807,0.020420976,0.0046192966,-0.016790332,0.0065910155,0.010981302,-0.038853478,0.001189036,0.0072166035,-0.005959842,0.003689293,0.025894871,0.014790686,0.0072612884,-0.005337047,-0.013405455,0.012925093,0.0073171444,0.0023459548,-0.015181678,0.02377234,-0.007858948,0.002524694,0.0123218475,0.012936264,-0.01023283,0.037445907,0.000719845,0.03161453,-0.006032455,0.0034295623,-0.019706018,0.0028500557,0.038965188,-0.0059486707,0.012355361,-0.015226363,0.0030888403,0.005334254,0.0099256225,0.0022244677,-0.020532688,0.019951785,0.03822789,-0.017460605,-0.027146047,0.001216964,0.0018935206,0.002979921,-0.0069149807,0.03132408,-0.024643695,0.024107477,-0.019739533,0.047097832,-0.04763405,0.029760111,-0.01585195,-0.040663213,0.009545801,-0.043835837,0.040194023,-0.036596894,0.00012890532,0.014086899,0.014153927,-0.016086547,-0.0054599303,0.0015807266,-0.0058257873,-0.033022106,0.019650163,0.013237887,-0.0007156558,0.00091324665,0.012243649,-0.047678735,-0.003591545,0.0018641962,-0.018387817,-0.024219189,0.013249058,0.017270695,0.018309617,-0.0067641693,0.035971306,0.0064904746,-0.03291039,0.041132405,-0.0028737944,-0.017103126,-0.05187911,0.017628174,0.012232478,-0.048036214,-0.0030413626,0.039143927,0.014388522,0.023727655,0.020979537,-0.00027090192,0.04414863,0.020677915,-0.0022063146,0.013595366,0.0011303871,-0.017851599,0.030229302,0.01585195,0.0058369585,0.0076020104,0.010193732,0.027190732,0.009892109,-0.004569026,0.00028277133,0.0013154102,0.031212369,0.004245061,-0.044818904,-0.030408042,0.008819672,-0.010327786,-0.028218484,-0.0040244292,-0.01188617,-0.0383396,-0.0054543447,0.009908865,0.0072892164,-0.0011995089,0.011076258,0.0036166802,0.0052839834,0.0020373499,0.00015971343,-0.00040111635,0.008752645,-0.0037926268,0.008540392,-0.009260936,0.03878645,-0.013930502,0.017706372,-0.0109142745,0.013137346,0.01004292,-0.027414156,0.015684383,-0.003940645,0.014019872,0.023191437,0.045757286,-0.004555062,0.009523459,0.008099129,-0.01667862,-0.015539157,-0.03804915,-0.050806675,-0.020108182,0.0028430736,-0.027861005,0.031659216,-0.018778808,0.0019284306,-0.010936617,-0.019024575,-0.006412276,-0.017538805,-0.00027736026,0.010942203]},{"id":"interface-ClientEvents","type":"interface","source":"main","text":"Interface: ClientEvents\nDescription: Callback parameter types for client events. Use with client.on(Events.X, handler).\nProperties: [Events.ChannelCreate]: [channel: GuildChannel], [Events.ChannelDelete]: [channel: Channel], [Events.ChannelPinsUpdate]: [data: GatewayChannelPinsUpdateDispatchData], [Events.ChannelUpdate]: [oldChannel: Channel, newChannel: Channel], [Events.Debug]: [message: string], [Events.Error]: [error: Error], [Events.GuildBanAdd]: [ban: GuildBan], [Events.GuildBanRemove]: [ban: GuildBan], [Events.GuildCreate]: [guild: Guild], [Events.GuildDelete]: [guild: Guild], [Events.GuildEmojisUpdate]: [data: GatewayGuildEmojisUpdateDispatchData], [Events.GuildIntegrationsUpdate]: [data: GatewayGuildIntegrationsUpdateDispatchData], [Events.GuildMemberAdd]: [member: GuildMember], [Events.GuildMemberRemove]: [member: GuildMember], [Events.GuildMemberUpdate]: [oldMember: GuildMember, newMember: GuildMember], [Events.GuildRoleCreate]: [data: GatewayGuildRoleCreateDispatchData], [Events.GuildRoleDelete]: [data: GatewayGuildRoleDeleteDispatchData], [Events.GuildRoleUpdate]: [data: GatewayGuildRoleUpdateDispatchData], [Events.GuildScheduledEventCreate]: [data: GatewayGuildScheduledEventCreateDispatchData], [Events.GuildScheduledEventDelete]: [data: GatewayGuildScheduledEventDeleteDispatchData], [Events.GuildScheduledEventUpdate]: [data: GatewayGuildScheduledEventUpdateDispatchData], [Events.GuildStickersUpdate]: [data: GatewayGuildStickersUpdateDispatchData], [Events.GuildUpdate]: [oldGuild: Guild, newGuild: Guild], [Events.InteractionCreate]: [interaction: APIApplicationCommandInteraction], [Events.InviteCreate]: [invite: Invite], [Events.InviteDelete]: [data: GatewayInviteDeleteDispatchData], [Events.MessageCreate]: [message: Message], [Events.MessageDelete]: [message: PartialMessage], [Events.MessageDeleteBulk]: [data: GatewayMessageDeleteBulkDispatchData], [Events.MessageReactionAdd]: [reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string], [Events.MessageReactionRemove]: [reaction: MessageReaction, user: User, messageId: string, channelId: string, emoji: GatewayReactionEmoji, userId: string], [Events.MessageReactionRemoveAll]: [data: GatewayMessageReactionRemoveAllDispatchData], [Events.MessageReactionRemoveEmoji]: [data: GatewayMessageReactionRemoveEmojiDispatchData], [Events.MessageUpdate]: [oldMessage: Message | null, newMessage: Message], [Events.PresenceUpdate]: [data: GatewayPresenceUpdateDispatchData], [Events.Ready]: [], [Events.Resumed]: [], [Events.TypingStart]: [data: GatewayTypingStartDispatchData], [Events.UserUpdate]: [data: APIUserPartial], [Events.VoiceServerUpdate]: [data: GatewayVoiceServerUpdateDispatchData], [Events.VoiceStatesSync]: [data: { guildId: string; voiceStates: Array<{ user_id: string; channel_id: string | null; }>; }], [Events.VoiceStateUpdate]: [data: GatewayVoiceStateUpdateDispatchData], [Events.WebhooksUpdate]: [data: GatewayWebhooksUpdateDispatchData]","meta":{"url":"/docs/typedefs/ClientEvents"},"embedding":[0.0031044637,-0.009047294,0.0110292565,0.015659954,-0.014974832,0.010533766,-0.057060957,-0.0053127618,0.0401531,0.024395272,0.017421698,-0.034892336,0.02779642,0.023392057,0.017776495,0.00085181586,-0.061710007,0.03998182,-0.024431976,0.042967,0.008772021,0.028652823,0.030830534,0.048912887,-0.042795718,-0.019513771,0.0014390642,0.048668202,0.01050318,0.005841897,0.04497343,-0.036042362,0.009340918,-0.015341861,-0.0029821203,0.038391355,0.011848957,0.03129544,-0.011310646,0.017519575,-0.021838296,-0.03313059,-0.011439107,0.014436521,-0.053586405,0.030072005,-0.05534815,0.013482242,-0.026352767,0.034867868,-0.024884647,-0.014509927,0.039712664,0.083927564,0.024639959,0.0048386813,-0.029117728,-0.012650306,-0.0021608903,0.005126188,-0.0023352294,-0.03276356,0.00016000222,-0.012846056,0.009132934,0.037901983,-0.030072005,0.009493847,0.01962388,0.047151145,0.018853117,0.002526391,-0.033424214,0.018375978,0.008900482,0.024762303,-0.036605142,0.032543343,0.000498167,0.0067227692,0.014363114,0.02295162,-0.067239925,-0.045854304,-0.012491261,-0.010729516,-0.048937358,-0.049842697,-0.024737833,0.04127866,-0.0020094903,0.013567883,-0.056816272,0.012943931,0.02517827,-0.047689453,0.031417783,-0.034574244,-0.028603885,-0.005340289,0.084661625,-0.04590324,-0.0636675,-0.01061329,0.028921979,-0.023171838,-0.01858396,0.017005732,-0.03587108,-0.0043493076,-0.0721826,0.013983849,-0.049695887,0.05329278,-0.0015262339,-0.041963782,0.0442149,0.00004186438,-0.004765275,-0.0026609688,-0.03623811,0.022682466,0.03144225,-0.03183375,-0.0039669843,-0.046759643,0.009310332,-0.0022893506,-0.038831793,-0.037094515,0.068169735,0.014289708,0.015036003,0.008252062,-0.0019085569,-0.01849832,-0.016161563,0.027478326,-0.07404222,-0.041914847,0.014730144,-0.02813898,0.040104166,0.0011783198,-0.019954206,0.041303128,-0.02926454,0.016956795,-0.015806766,0.008643561,-0.049206514,0.05852908,0.0041229725,-0.00090075325,0.016540827,-0.0010911501,-0.012870525,0.031711407,0.0063373875,0.00778104,0.012264925,-0.042477626,-0.02063933,0.0299986,-0.070959166,-0.0202723,0.015170581,0.036727488,-0.03550405,0.007206026,0.025961269,0.0103319,-0.050601225,0.053390656,-0.011543099,-0.04039779,0.011384052,-0.027600668,-0.04930439,-0.024016008,0.015721126,0.03298378,-0.049695887,-0.07311241,-0.04208613,0.017360527,-0.013800334,0.009236926,-0.012589135,-0.035088085,-0.0050650164,0.008564037,0.03611577,0.062150445,0.056914147,-0.026719797,0.021997342,-0.038782854,0.01936696,-0.044141497,0.02667086,-0.06870805,0.052118286,-0.0063618566,0.020162191,-0.026719797,0.007860563,0.025325082,0.015243987,-0.0136412885,0.023893664,0.0016072863,0.005306645,-0.006416911,-0.06278663,0.022584591,-0.056865208,0.015305159,-0.03910095,-0.0255453,-0.0008044078,0.04144994,0.01406949,-0.012497378,-0.04059354,0.04308934,0.010919148,-0.02630383,0.010968085,0.0136412885,-0.05848014,0.015195049,0.025765518,-0.022621293,0.014436521,-0.0016118742,0.045315992,-0.00916352,0.016638702,-0.01711584,0.014681207,-0.0053800507,-0.0017540983,-0.007297783,0.024395272,0.02182606,0.040691413,0.040985037,-0.010062744,0.026254892,0.049182042,0.0025967385,0.00778104,0.031638,0.010643875,0.010301313,0.04074035,0.009707948,-0.0078055086,0.01979516,0.0803062,-0.069295295,-0.0024132235,0.03907648,-0.06205257,-0.02483571,0.04761605,0.022095216,-0.03662961,0.02323301,0.034280617,0.010240142,0.031931624,-0.042624436,-0.022401076,-0.028432604,0.01610039,0.029386884,-0.03183375,-0.009041177,-0.06239513,0.014791316,0.02489688,0.03369337,-0.004104621,0.050992727,-0.0068389955,-0.020211129,0.046392616,-0.0031717524,-0.009279747,-0.008392757,0.008992239,-0.026940014,0.05422259,0.05094379,0.060975946,-0.018473852,0.038807325,0.008037961,-0.005854131,0.00055628014,-0.024113882,-0.028212387,0.013176383,-0.025006989,0.007487416,0.013408836,0.026205955,-0.025447426,0.025227208,0.02870176,-0.027135765,-0.023135135,-0.034158275,0.008772021,0.017947776,0.056816272,0.01180002,-0.017433934,-0.011377935,-0.029876256,-0.008001258,-0.012699245,0.029900726,-0.03278803,-0.0005891599,-0.01999091,0.02238884,0.06459731,0.021605844,-0.054173656,0.0032879787,0.038195606,0.0352349,0.020480284,-0.041547816,-0.007206026,0.009506081,0.025080396,0.017641917,-0.017470635,-0.027674075,-0.017984478,0.06361856,-0.02297609,-0.014534395,0.03873392,-0.05074804,0.039883945,0.0061232867,0.018449383,-0.049867168,-0.053243846,0.0022633527,-0.026915547,0.0010055098,-0.00484174,-0.044532996,0.028995384,-0.01212423,0.031148627,-0.0103319,-0.00592142,0.025692113,0.01556208,-0.04096057,0.00242087,0.014301943,-0.026744265,0.019611645,0.018706305,-0.037070047,0.00044731802,0.009634542,-0.015219518,-0.049133107,0.026548516,0.013665757,-0.009126817,-0.009909815,0.017005732,0.043603186,0.01796001,0.021728186,0.0047989194,-0.037706234,0.011604271,-0.04252656,0.036213644,0.04074035,-0.01564772,-0.044117026,0.013959381,-0.022425544,-0.0048080953,0.027551731,0.042061657,0.028041106,-0.0061171697,0.024578787,0.021104235,0.006374091,0.0140450215,-0.042551033,-0.014020553,-0.024028242,0.039174356,0.056620523,0.028163448,0.026719797,0.00012263014,0.03518596,0.0039241645,0.03924776,-0.0503076,-0.022339903,-0.021985108,0.017287122,0.05715883,-0.0059611816,-0.027723012,-0.024652194,0.032151844,0.003211514,-0.03494127,0.013812569,-0.014118427,0.009848643,-0.047322422,-0.03555299,0.04798308,0.055886462,0.009585605,0.018106822,-0.07575503,0.055886462,-0.008423342,-0.022021811,0.03961479,-0.0555439,0.007946203,0.021899467,0.064059,-0.003144225,0.003823231,-0.009928166,0.001631755,0.0150482375,0.004670459,-0.012050824,0.02204628,-0.022584591,0.05050335,-0.038807325,-0.040642474,0.012485143,0.0247256,-0.039761603,-0.026450641,-0.0070836823,0.021715952,-0.010411423,0.026181486,-0.009377621,0.005276059,-0.026254892,0.012375034,-0.024138352,0.024958052,-0.03430509,-0.030659255,0.05167785,0.027918762,0.0019544356,0.017164778,0.055299215,-0.025325082,0.020088784,0.009102348,0.020896252,0.044361714,-0.02029677,-0.03222525,0.017739791,0.058969516,-0.001689868,-0.014375349,-0.011775551,0.05182466,-0.012931696,-0.027307045,0.021556906,-0.0129072275,0.045829836,-0.03758389,-0.027013421,-0.028090043,0.009824174,-0.0023673447,-0.02980285,-0.03256781,-0.010864093,0.045976646,0.029876256,0.047151145,0.0079095,0.0017479812,-0.033571027,-0.003388912,-0.01739723,-0.00042629027,-0.0202723,-0.010564351,-0.009463262,-0.020260066,-0.033571027,-0.022401076,-0.018791946,-0.004759158,-0.029729445,0.049500138,0.002662498,-0.0092858635,0.006423028,-0.011041491,-0.0013205439,-0.03667855,-0.040642474,-0.008937185,0.013433305,-0.011206655,0.003927223,0.020174425,-0.01612486,-0.0016837509,0.0010880915,0.01041754,0.028628353,-0.046245802,-0.020492518,0.021923935,0.0011026198,0.024309631,0.0010116269,0.034525305,0.00810525,0.0040832106,0.010105564,0.0052821757,-0.017262653,-0.06352069,0.015623251,-0.022034045,0.026401704,0.018571727,0.007181557,-0.025080396,-0.0027787243,0.029582633,-0.011965184,-0.0053769923,0.026450641,-0.028726228,-0.024199523,-0.0150482375,-0.017727558,-0.005817428,-0.045658555,0.02517827,-0.010705046,0.019501537,0.014962597,0.017042434,-0.014889191,-0.038782854,-0.011959067,0.014265239,-0.0119713005,-0.041547816,-0.015317393,-0.0360913,0.011598154,0.0596057,-0.033619963,-0.042648908,0.012050824,0.0024453385,0.0007535588,0.015060471,0.0120997615,0.015476439,0.017262653,0.020186659,0.0007134149,0.012381151,-0.01759298,0.028383667,-0.034158275,0.021972872,0.0039975704,0.013604585,-0.034158275,-0.011053725,0.0014382995,0.003936399,0.0022924093,0.0061508142,-0.014571098,0.045658555,0.01601475,0.03237206,-0.0082826475,0.012185402,-0.018632898,-0.03036563,-0.014828019,-0.01195295,-0.00048440337,-0.003483728,-0.025667643,0.013384367,0.019293552,0.02427293,0.022572355,0.055494964,0.022988323,-0.005768491,0.04494896,0.00976912,-0.016724342,0.0064413794,0.013213086,-0.02926454,-0.03313059,-0.0005260766,0.025643175,-0.005068075,0.003957809,-0.04365212,-0.008753669,0.00039379278,0.01733606,-0.01739723,0.027062358,-0.0013182501,-0.011286178,-0.009408207,0.0039822776,0.010148385,-0.020614862,-0.010154502,0.024370804,-0.0001506353,0.046955395,-0.05466303,-0.009316449,0.031075222,-0.017641917,0.001229551,-0.0045175296,-0.006187517,-0.008080781,0.021703718,0.010062744,0.020614862,0.008986122,0.00014031258,-0.0018183286,0.02539849,0.008772021,0.06640799,0.019232381,0.015965812,0.028285792,-0.01313968,-0.0162105,-0.016198264,-0.0006488023,0.012020239,-0.0018275044,-0.0023214659,-0.0510906,-0.042330813,0.013274258,-0.008307116,0.019477068,-0.0011301471,0.031344377,0.03592002,0.00065759575,-0.025300613,0.01711584,0.003676419,0.004655166,0.02537402,0.006270099,0.004230023,-0.0049610245,-0.011573685,-0.022878215,-0.015953578,-0.00086175627,-0.009414324,-0.02455432,0.009481613,0.036213644,0.007108151,0.028579416,-0.034133807,-0.032347593,-0.0011699087,-0.0449979,0.008368288,-0.025692113,0.0043401318,-0.029533695,0.014546629,0.0023061729,0.0011507926,0.005493218,0.024346335,0.009279747,-0.005930596,-0.0018183286,0.008258179,0.021324454,0.026744265,-0.050894853,-0.006998042,-0.020884017,0.0296071,-0.014399817,0.0004584054,-0.057060957,0.03518596,-0.035479583,-0.020113254,-0.04208613,-0.0034500835,0.03256781,-0.012350566,0.03680089,-0.018180229,0.054124717,0.0024071063,0.0067227692,0.014387583,-0.012020239,-0.010172853,-0.01277265,0.007885031,-0.06371644,0.017238185,-0.007487416,-0.009041177,0.011647091,-0.029778382,-0.027551731,0.02924007,0.017849902,0.010215674,0.009395973,0.031540126,-0.026817672,-0.033766776,-0.019354725,-0.031197565,0.015672188,0.0018611489,-0.011855075,-0.048472453,-0.030806066,0.011488045,0.06131851,0.0048356224,-0.023820259,-0.06665268,-0.008466163,-0.02906879,-0.019244615,-0.0019376135,0.014460989,-0.0019024397,0.023025027,-0.011530865,-0.03073266,-0.009212458,-0.06591862,-0.028212387,-0.02368568,-0.009787471,-0.008992239,-0.020516986,0.0056828507,-0.03278803,0.0088821305,-0.08862555,-0.027502794,0.058186516,-0.018070119,0.0049334974,-0.014791316,0.0030585849,0.060095076,0.0032421,-0.031222034,0.03391359,-0.023196308,0.016724342,-0.029949663,0.020247832,-0.016981263,0.039125416,-0.009903697,0.0064046765,-0.013751397,0.005343348,-0.008025726,-0.015684422,0.042991467,0.012601369,0.008496748,-0.021251047,-0.0073711895,0.029166665,0.0062364545,0.014815785,-0.00022709992,-0.026083611,-0.004493061,0.013677991,0.016589765,-0.0029117728,0.0045114127,-0.006514786,-0.07139961,0.013861506,-0.0033093886,-0.008735318,0.0013679521,0.019158974,0.018400446,0.0054779253,0.02399154,-0.000019880801,-0.0063679735,0.016699873,0.0062517473,0.026157018,0.0016149328,0.03146672,0.05666946,-0.027135765,0.021446796,0.0013503652,-0.016161563,-0.005893893,0.017862136,-0.027429389,-0.019293552,-0.019244615,-0.014779082,-0.0033858535,-0.014301943,0.019868568,-0.0077076335,0.012332214,0.02481124,-0.008845427,-0.0062548057,-0.011536982,0.018902054,-0.007383424,-0.0051537156,0.01528069,0.016173797,0.030072005,0.030120943,-0.0029117728,0.0054840427,0.010130033,-0.00048096245,-0.006089642,0.004994669,0.011665442,-0.008606858,-0.0069062845,-0.0385137,0.01333543,0.02334312,0.018180229,0.017629683,-0.03817114,-0.007891148,-0.010864093,-0.01860843,0.007401775,-0.016026985,0.0057042604,-0.025618706,-0.024175053,-0.006374091,-0.016026985,0.02278034,-0.007646462,0.011426873,0.011726614,-0.012613604,-0.0136412885,-0.010368602,-0.028775167,0.0010972673,0.06689737,0.013555648,0.02537402,0.00033472388,-0.015831236,-0.0182414,0.005003845,-0.009964869,-0.013751397,0.01897546,0.00021276281,-0.01705467,0.00061018765,0.03188269,-0.019379193,0.008778138,0.01733606,0.026891077,-0.010405306,0.033571027,-0.024358569,0.0275762,-0.05353747,0.004719396,-0.02574105,-0.019207913,-0.01618603,-0.03437849,0.019415896,-0.010111681,-0.033595495,0.025618706,0.006156931,-0.019036632,-0.011243357,-0.028799634,-0.042967,-0.021887233,-0.02072497,0.03775517,0.023856962,0.0020217246,-0.007946203,-0.0031350495,0.035797678,0.028848572,0.0106255235,0.019293552,-0.044728745,-0.02980285,0.013188617,0.000946632,0.00019202178,0.0120997615,0.0018366802,-0.0060590566,0.011102662,-0.0029469465,-0.008888247,0.044532996,0.035455115,-0.013188617,-0.000097157856,0.0389052,0.001767862,-0.03910095,0.016846685,-0.0051292465,0.040691413,-0.0129684,0.027649608,-0.019036632,-0.01005051,-0.031222034,0.010166736,0.06337388,0.021972872,0.0036213645,-0.05368428,-0.012008004,0.023453228,0.019856332,0.010117798,0.00393334,0.008631326,0.0129684,-0.012472909,-0.000016188993,0.009738534,-0.0052699414,-0.000106190244,0.013555648,0.026524048,0.030928409,0.014974832,0.0401531,-0.011561451,-0.010197322,0.024591021,0.03317953,-0.042110596,-0.027845357,0.009108465,0.028824104,0.0065576057,-0.025055926,0.0149993,0.053782154,-0.020884017,-0.0064842,-0.025055926,-0.007848329,-0.021397859,-0.012056941,0.0035418412,-0.002954593,-0.011836723,0.006881816,0.026377235,-0.030977346,0.0336689,0.015329627,-0.016504124,0.030243287,0.019415896,0.020149957,-0.016504124,-0.04458193,-0.031564593,0.0007929381,0.0010605643,0.04575643,0.016565295,0.032151844,-0.013078509,0.02029677,0.029289007,0.013567883,0.008423342,-0.010338017,0.0065086684,0.0000721157,-0.007640345,0.01435088,0.021312218,-0.013127446,0.015880173,-0.010594938,0.00231229,0.012723713,-0.0148524875,0.0037528835,-0.0035234897,-0.0028888334,0.014424286,0.021667015,0.03662961,0.0024973345,0.001767862,-0.0003599572,-0.019721754,0.021985108,0.0028720112,0.006949105,-0.006230337,-0.0025355667,-0.00019183062,-0.024419742,0.015403033,-0.04737136,0.015598782,0.0019896093,0.0042147296,-0.014534395,0.008056313,0.008294882,0.012375034,-0.020773908,-0.014399817,-0.009659011,-0.025447426,-0.004067918,-0.0013564824,-0.0015078823,-0.030585848,-0.029019853,-0.036140237,0.030610317,-0.009310332,0.010142267,0.029729445,-0.0015499379,0.006845113,0.007927852,-0.044386182,-0.0004121443,0.045071304,-0.001033037,0.0041596754,0.014693442,-0.011280061,-0.057843957,0.012466792,0.0020599568,0.021740422,0.012735947,0.015256221,-0.018375978,-0.009714065,-0.008612975,0.029117728,-0.023245245,0.0059336545,-0.020700501,-0.004285077,-0.040838223,-0.0017908014,0.021140939,0.020932954,0.019354725,-0.033595495,-0.010191205,-0.0055727414,0.015574314,-0.004052625,0.0057287295,-0.03369337,0.0044380063,0.037657294,-0.024126116,0.020957423,-0.018473852,-0.023122901,-0.016871154,0.052069347,0.010130033,-0.0010942087,0.0340604,0.032176312,0.017299356,0.000020048068,0.018033415,-0.01880418,-0.022963855,-0.00976912,0.03261675,-0.0019483186,-0.0048478567,0.026450641,0.0010307431,0.0035479583,-0.0070836823,0.023734618,-0.02664639,-0.011769434,0.029509226,0.013396601,-0.01536633,0.0036060715,-0.04034885,0.017862136,-0.011708262,0.011249475,0.03410934,0.021605844,0.030390099,-0.028799634,0.032176312,-0.034549773,0.03237206,-0.033448685,-0.03256781,0.018339274,-0.015195049,-0.013384367,-0.02664639,0.019636115,-0.036605142,-0.010368602,0.006276216,0.0125769,-0.034500837,-0.015672188,-0.043064874,-0.015182815,0.03550405,0.001171438,-0.015782297,-0.0073711895,-0.0067655896,0.018461619,0.047322422,-0.031589065,-0.026524048,-0.020370174,0.03924776,0.00162105,-0.011708262,0.011573685,0.0425755,0.011267826,-0.015941344,0.008093015,0.034500837,0.018694071,0.010252376,0.016712107,0.01102314,-0.019513771,-0.0017479812,-0.029753912,0.0058510727,-0.01694456,-0.0045725843,-0.00023054083,-0.057697143,0.004211671,0.040250976,-0.0385137,0.033203997,0.031173097,-0.011328998,0.007389541,-0.0061599896,0.024431976,-0.014644504,0.0102890795,-0.00047637458,-0.001569054,0.016112626,0.008998357,0.006355739,-0.009646776,-0.013384367,-0.012215988,0.020027613,0.017274886,0.0031717524,-0.02684214,0.00076273456,-0.007212143,0.017421698,-0.024028242,-0.00094204413,-0.012797119,-0.0028582476,0.0072304946,0.008129719,-0.019073335,-0.010998671,-0.024126116,-0.0514821,-0.020113254,-0.011225007,0.0255453,0.028897509,0.014766848,0.0074140094,-0.022902682,0.012992868,0.016271671,0.005493218,0.007316135,0.032445468,-0.024921348,0.039932884,0.00020683679,0.0024958053,0.013665757,0.0012746652,0.0077259853,-0.008129719,-0.0070469794,0.017849902,0.002243472,0.019526005,-0.0066126604,0.015195049,-0.027649608,0.025887862,-0.004095445,-0.04096057,0.031638,-0.027135765,-0.0059611816,-0.030218817,0.010674461,-0.012442323,0.012723713,-0.0018167994,0.04776286,-0.0013931853,0.007609759,-0.011176069,-0.015549845,-0.008612975,-0.035406176,0.016026985,0.0054167537,0.020871783,0.026230423,0.0012685481,0.0072182603,-0.010698929,-0.010234024,-0.0036947704,0.0024071063,-0.012442323,0.02833473,-0.02539849,0.007695399,-0.0060192947,-0.018204696,-0.051041663,-0.047175612,-0.02185053,0.026352767,0.020627096,0.016198264,-0.011353467,-0.022609059,-0.010142267,0.0062548057,-0.03237206,0.0025141567,-0.0008311704,-0.0045175296,-0.008374405,0.0006793882,-0.020908486,0.0046215216,-0.013225321,0.042918064,0.0022602943,-0.03224972,0.0013717753,-0.01584347,0.01061329,0.0055452143,0.009016708,-0.02334312,0.01860843,-0.02083508,-0.0030631726,-0.013396601,0.031368844,0.028359199,-0.005120071,0.0130418055,0.012650306,-0.016137093,0.019782927,-0.007799391,0.034158275,0.010350251,0.019158974,0.017152544,-0.039345633,0.020529222,-0.0048937355,-0.0007807038,-0.00328492,0.028628353,0.00011775552,0.020039847,-0.0034898452,-0.019489303,0.011261709,-0.008827075,-0.024688896,-0.022168623,0.0149993,-0.028554948,-0.009059528,-0.0072733145,0.014546629,-0.024113882,0.019073335,-0.0023918133,0.07555928,-0.02340429,0.00907788,-0.016479654,-0.0025921506,0.001715866,0.030879471,0.030487973,-0.013518944,-0.013482242,-0.008300999,0.0078116255,-0.012625838,-0.024395272,-0.031075222,0.033203997,-0.009267512,0.021055298,-0.002714494,-0.0040740347,-0.012050824,-0.0028857747,0.017507339,-0.045169182,0.019379193,-0.0073344866,0.06665268,-0.038048796,0.024297398,-0.010888562,-0.01361682,0.028236855,-0.015978048,0.03518596,-0.0075669386,-0.0126380725,0.020749439,0.021251047,-0.0039027543,-0.004288136,0.02379579,-0.0126380725,-0.046955395,0.020235596,0.013029572,0.0023964013,-0.015146112,-0.0021012477,-0.06293344,0.022070749,0.022890449,-0.027355982,-0.014289708,0.0045939945,0.0154519705,0.016736576,0.004104621,0.041033972,0.0005750139,-0.018290337,0.014950363,0.001940672,-0.02213192,-0.046930924,0.016320609,0.024064945,-0.023012793,0.005392285,0.012882759,0.0009496906,0.03354656,0.029729445,0.009750769,0.046539426,-0.007970672,-0.018926524,0.0011936127,-0.0048876186,-0.0018504438,0.05016079,0.028408136,0.025667643,0.015598782,0.00525159,0.0136412885,0.013249789,-0.030855004,-0.014901425,-0.0093531525,0.035895552,0.012699245,-0.025789987,-0.02379579,0.020676034,-0.028873041,-0.020431347,-0.016822217,-0.023734618,-0.016320609,-0.011273944,0.014106194,-0.008527335,-0.013359899,0.0005046665,-0.020773908,-0.021679249,0.023416525,0.017103607,0.005370875,0.0005627796,-0.015109409,-0.0067227692,0.02388143,0.026548516,-0.013837038,-0.006107994,-0.021838296,0.0052424143,0.03313059,-0.009310332,0.029093258,-0.013518944,-0.0084783975,0.01796001,0.04570749,-0.0015935227,-0.0073344866,-0.013396601,-0.0048509156,0.0028368374,-0.013323195,-0.038954135,-0.016283905,-0.0027970758,-0.019672817,0.009616191,0.0235144,-0.019880801,-0.0083438195,-0.015121643,-0.0041596754,-0.013971616,0.0006075114,-0.0072304946]},{"id":"interface-ClientOptions","type":"interface","source":"main","text":"Interface: ClientOptions\nProperties: cache: CacheSizeLimits, intents: number, presence: GatewayPresenceUpdateData, rest: Partial, suppressIntentWarning: boolean, WebSocket: new (url: string) => { send(data: string | ArrayBufferLike): void; close(code?: number): void; readyState: number; addEventListener?(type: string, listener: (e: unknown) => void): void; on?(event: string, cb: (data?: unknown) => void): void; }","meta":{"url":"/docs/typedefs/ClientOptions"},"embedding":[-0.052201327,-0.020439839,0.015521616,0.014620754,-0.015740745,0.000046246238,0.017408557,-0.0006958097,0.038883172,0.0018854198,0.014279887,-0.0037495354,0.023592856,0.017152907,0.027001524,0.011492083,-0.04647963,0.044580515,-0.0032991043,0.021060703,0.013659022,-0.009866878,-0.0038469261,0.037300576,-0.037471008,-0.009556446,0.009714706,0.04178054,-0.020999834,-0.01610596,0.016775519,-0.032674525,0.024895456,0.0067138597,0.026173705,-0.010627742,0.048743963,0.025443276,-0.028827598,-0.0040690983,-0.014389452,-0.028267602,0.0070669004,-0.0050977855,-0.030945841,-0.007310377,-0.011619908,0.009349491,-0.049474392,-0.011619908,-0.008625149,-0.010177311,-0.019867668,0.06836815,0.0018032466,-0.027561521,-0.027999777,0.017810294,0.017262472,0.039759684,0.033404954,-0.0014212931,-0.039345775,-0.038785778,0.007079074,-0.006835598,-0.025662405,0.035864063,-0.023678074,0.06388819,0.036862317,0.0039382298,-0.029801503,-0.022558082,0.005234741,0.011826863,0.019685062,-0.017822467,0.039272733,0.012490336,0.0017438992,0.025297191,-0.07060814,-0.08117501,0.012204251,-0.024834586,-0.060625605,-0.014876404,-0.014779014,0.024408503,-0.0043856176,0.011802515,-0.05585347,-0.019843321,-0.028340645,-0.02309373,0.059700396,0.0022993295,-0.028778903,0.03744666,0.06958554,-0.07377333,-0.06661513,0.023142425,0.0349632,-0.008065154,-0.017968554,0.004032577,-0.05400305,-0.0022262868,-0.06349863,0.0122590335,-0.004431269,0.033867557,-0.014462494,-0.023836333,-0.0073834197,-0.019344194,0.017359862,-0.010487743,-0.0006813533,0.010597307,0.037909266,-0.0053960443,-0.019721583,-0.02293547,-0.007632983,-0.018492028,-0.059651703,-0.014158148,0.039102297,0.022947645,0.035644934,-0.025321538,0.009562533,0.004461704,-0.03773883,0.029996283,-0.03827448,-0.044726603,0.008186892,-0.03786057,0.060674302,0.009465142,-0.013135548,0.033867557,-0.010597307,0.049303956,-0.027926736,0.014072932,-0.0038986648,0.055415213,-0.005943866,-0.0046534413,-0.016592912,-0.0033873646,0.032625828,0.022850255,-0.0411475,-0.047964837,0.039540555,-0.038664043,-0.0013064027,-0.035109285,-0.024165027,0.009690358,0.015594659,0.025370235,-0.04803788,0.02028158,0.044288345,-0.03569363,-0.0051769153,0.024201548,0.012392946,-0.026368488,0.02274069,0.00017033833,-0.02510241,0.035157982,0.027074568,0.042827487,0.005782563,-0.026977178,-0.04102576,-0.027853692,-0.003296061,0.026100663,0.0085277585,-0.01754247,-0.063839495,0.018321594,0.024505893,0.038858823,0.022959817,-0.02356851,0.001963028,-0.030215412,0.0027162828,-0.016860737,-0.018601593,-0.019344194,0.07450376,-0.03126236,0.0053290883,0.004364313,0.015387705,-0.013890325,-0.03489016,0.019064197,0.049961343,0.04107446,-0.014657275,-0.0004059207,-0.039077953,0.03106758,0.018297246,-0.032771915,0.012368598,0.025686754,-0.033648428,0.00095336203,0.060430825,-0.030069327,0.04097707,0.04112315,-0.019624192,-0.011638168,-0.01779812,0.018431159,-0.019831147,-0.0036886665,-0.057460416,-0.02395807,0.023982419,0.02500502,0.05195785,-0.011699038,0.008795583,-0.031189319,-0.007499071,-0.06656643,-0.062378637,-0.017712902,0.019977232,0.008856451,-0.0023038948,-0.04226749,-0.02838934,-0.01553379,0.014705971,-0.015205097,0.048403095,-0.009032972,-0.008491237,-0.04073359,0.01913724,0.0003758666,0.016702477,0.0047356146,0.01837029,-0.048013534,0.024298938,-0.015594659,-0.03498755,-0.05629173,0.022034608,0.041488368,-0.044288345,-0.044069216,0.03710579,0.017834641,0.034524944,-0.023824159,-0.034622334,0.0308728,0.0034269295,0.013671196,-0.030288456,0.03693536,-0.07464984,-0.03754405,0.0028562818,0.05716824,-0.017201602,0.014535537,0.027829345,0.016994648,0.016714651,0.02067114,0.011759907,0.003484755,0.01039644,-0.04560312,0.020914616,0.039564904,0.053467404,-0.02057375,0.053223927,-0.000632658,0.038104046,-0.012952941,-0.02860847,-0.048305705,-0.016483348,0.038931865,0.046041373,0.023422424,0.05799606,-0.009416447,-0.02124331,0.00032374743,-0.054636087,-0.0011861862,-0.059943873,-0.018431159,0.021060703,0.013330329,0.004811701,0.010706872,0.02427459,-0.009032972,0.0058890837,0.005971257,0.009586881,-0.05234741,0.021072876,-0.022192867,0.025638057,0.012965115,0.020452011,-0.034549292,0.010566873,-0.00038404588,0.024359807,0.004866483,-0.039053604,0.0022871557,-0.029825851,0.020719836,-0.019368542,-0.029363245,-0.04195097,0.021292005,0.050691772,-0.0004477682,-0.0062299506,-0.005319958,0.016081613,0.00018993056,0.017627686,-0.015472921,-0.03518233,-0.028121516,-0.024493719,-0.01419467,0.025345886,-0.07654896,-0.068124674,0.05619434,-0.020366795,0.023337206,0.023811985,0.0034056252,0.010755567,-0.0019158544,-0.046455283,-0.007359072,-0.007620809,-0.013926846,0.053370014,-0.0006961901,-0.03148149,-0.004711267,-0.00941036,0.007979937,-0.027756302,0.0032473656,0.0034725813,-0.007572114,0.044799645,0.05288306,-0.025078062,0.017104212,0.0119972965,-0.021474613,-0.030994536,0.021718089,-0.02386068,0.011705125,0.010183398,0.012252946,-0.043070965,-0.00915471,-0.01770073,0.024822412,0.04465356,0.01785899,0.004866483,-0.018005075,0.041829232,0.046236154,-0.0055238693,0.0075782007,-0.03710579,-0.06408297,0.040100552,0.021365048,0.041902278,-0.045091815,0.055415213,-0.011035564,0.02858412,0.0096112285,0.02067114,-0.053126536,-0.019185934,-0.06841685,0.046260502,0.03588841,0.006245168,0.029923242,-0.06656643,-0.018601593,0.011735559,0.01754247,0.0236659,-0.005864736,0.007572114,-0.039102297,-0.017615512,0.049036134,0.024664152,0.045043122,0.0076695043,-0.020342447,-0.0036977967,0.008132109,-0.008016458,-0.016020743,-0.05132481,-0.023751115,0.006439949,0.04609007,-0.029071074,0.019271152,-0.0208294,-0.03669188,-0.0044677905,-0.06836815,-0.0324067,0.007079074,-0.059700396,0.030629322,-0.034086686,-0.00063075585,-0.016471174,0.022655472,-0.008911233,0.0012911854,-0.004461704,-0.010767741,-0.057655197,0.008984277,0.011510343,0.055317823,0.041926626,0.04092837,0.0010682524,0.012252946,-0.026611963,-0.04699093,0.0004694528,0.015205097,-0.007438202,-0.039589252,0.0059134313,0.023434596,0.010883392,0.012435554,0.05707085,0.017323341,-0.004510399,-0.018443333,0.01175382,0.10128615,0.0054325657,-0.0046199635,-0.044410083,0.020951139,-0.009519924,0.0015011837,-0.01183295,-0.012770333,0.016544217,0.009032972,-0.027707607,-0.024055462,0.00031994312,-0.010487743,0.032747567,-0.046041373,-0.014401625,-0.0038469261,0.005113003,0.014705971,-0.0062816893,-0.036959708,-0.01789551,-0.023337206,-0.0013064027,-0.0020923747,-0.014925099,-0.007779069,-0.04854918,0.0003256496,-0.021669393,0.045822244,-0.027025873,-0.017262472,-0.014279887,0.020098971,-0.0016541174,-0.01419467,0.004839092,-0.016069438,-0.015059011,-0.057557806,0.011479909,-0.003926056,0.0126485955,-0.033088434,-0.029582374,0.011279041,-0.007858199,0.011845124,0.0034938853,-0.014401625,0.0077182,-0.011966862,0.0073347245,0.007785156,-0.030434541,0.014985968,-0.036570147,0.025784144,0.014681622,-0.0034147555,-0.021450264,0.017238125,-0.0015506399,-0.039564904,0.024213722,-0.017213777,0.038590997,0.0062695155,0.0044130087,-0.019368542,-0.0406362,-0.009732966,0.00013609946,-0.026003273,0.033429302,-0.023738943,-0.008399934,-0.009203405,-0.016166829,0.033161476,-0.03065367,-0.030629322,-0.0452866,-0.001873246,-0.016239872,0.050545685,0.028535426,-0.0125999,0.016678128,-0.004887787,-0.03591276,-0.0002847532,0.018905938,-0.015010316,-0.009927748,0.08414542,-0.01033557,-0.0062877764,0.009373839,0.01840681,0.027391087,0.0452866,0.009507751,0.004586485,0.005992561,-0.0043795304,-0.02089027,-0.00060108217,0.034305815,0.03333191,-0.03230931,0.03569363,0.019721583,-0.027926736,-0.024980672,-0.007706026,0.027025873,0.02644153,-0.012362511,0.0041543148,0.0007300486,0.021121573,0.021681568,0.056243032,-0.024396328,-0.046552673,-0.053223927,-0.00402649,-0.038420565,-0.033916254,0.024055462,-0.033356257,0.012100774,0.026733702,0.02118244,0.024566762,-0.005481261,0.014559885,-0.0049882215,-0.014693797,0.005633434,-0.013963368,0.019709408,0.011845124,0.0062877764,-0.01636161,-0.0478431,-0.014389452,0.01795638,-0.009276448,-0.018321594,-0.027171958,0.002230852,0.0045134425,0.008339064,-0.0113033885,0.0478431,-0.0009244492,-0.051276114,0.0049486565,-0.0009487968,0.015521616,-0.025881534,-0.016897257,0.04752658,-0.006360819,0.029850198,-0.026100663,-0.0075173317,0.0025275887,-0.0032869305,0.0036977967,0.0011732515,-0.03734927,-0.020610271,0.034744073,-0.009544272,0.014413799,0.0324067,0.0060077785,-0.008217326,0.0006311363,0.0069269016,0.06802729,0.060674302,0.007785156,0.010901653,0.0072677685,0.014985968,-0.008259934,-0.03581537,0.009319057,-0.019879842,0.033551037,-0.045189206,-0.015619007,0.035352763,-0.030069327,0.01862594,0.011601647,0.0026006317,0.033964947,0.018954633,0.034232773,0.038980562,-0.013999889,0.0017971597,0.057947367,0.035157982,0.035036243,0.022095477,-0.03165192,-0.028511079,0.006312124,-0.015923353,-0.008199066,-0.010646002,-0.012660769,-0.01445032,-0.0001449445,0.007998197,-0.020001581,-0.024091983,0.0075903744,-0.036448408,-0.029801503,-0.00889906,0.014693797,0.017018996,0.006293863,0.018613765,-0.019356368,0.013208591,0.008442542,-0.035036243,0.016325088,-0.015083359,0.012660769,0.029679764,0.04022229,0.0026204141,0.0226433,0.039102297,0.033112783,0.000067003544,0.02653892,-0.032114528,0.03990577,-0.019125067,-0.0037221445,-0.015059011,-0.014791187,-0.0098729655,-0.020342447,-0.0042334446,0.006366906,0.011686864,-0.058872577,-0.015217271,0.013999889,-0.0030358455,0.013987715,-0.025954576,0.007906894,-0.007438202,0.0198068,0.014535537,-0.03795796,-0.038907517,-0.032333657,-0.009361665,0.00017205026,-0.0020208536,0.009099928,-0.014705971,0.027147612,0.019392889,-0.004108663,-0.03479277,-0.050691772,0.006719947,0.041220542,0.007785156,-0.027537173,-0.027171958,0.007955589,0.022752862,-0.050545685,-0.038664043,-0.05151959,-0.034403205,-0.04002751,0.045943983,-0.014815534,-0.011315563,-0.010950348,0.03199279,-0.018382464,-0.0072129862,-0.01429206,-0.021730263,-0.02899803,-0.03165192,0.011534691,0.010086007,-0.035011895,0.0023556335,-0.009355578,-0.0037038836,-0.07538027,0.0025854143,0.049084827,0.009939921,-0.015205097,-0.017688556,-0.011011217,0.014973794,0.027658911,-0.013281634,0.0078095035,0.017298993,-0.00025812295,-0.027999777,0.038907517,-0.011175564,0.0043064877,0.017980726,0.007882547,0.02232678,0.02376329,0.03710579,-0.024347633,0.059846483,0.009891226,-0.00579778,0.0054234355,0.001795638,0.011035564,-0.0076634176,-0.007310377,0.031846706,-0.034427553,0.01527814,0.0064156014,0.0021897652,0.004047794,0.01840681,-0.01082861,-0.032017138,-0.0014136845,0.007365159,0.023361554,0.0072555947,0.0010598829,-0.0022597648,-0.007158204,0.03165192,-0.008734713,-0.019989407,-0.025978925,-0.016459,0.03479277,-0.007833851,0.005858649,0.039053604,0.0036217105,0.0463092,-0.008211239,-0.033356257,-0.022558082,0.025345886,0.0021167223,-0.018431159,0.02746413,-0.0068660327,0.00722516,0.00036806773,0.03230931,0.002369329,-0.019940712,0.04730745,0.00052081107,-0.0072068996,0.013330329,0.0066773384,0.0037008403,-0.0108712185,0.026417183,-0.0027741084,0.015472921,-0.0053260447,0.064472534,0.0068051633,0.018918112,0.007407767,0.0028517165,0.020500707,0.019319847,-0.0159477,0.013987715,0.0009594489,0.031238014,0.011193824,0.01460858,0.0018930285,0.0045712683,-0.016653782,-0.012137295,0.0039990987,0.04097707,0.00018469963,0.012575553,-0.03669188,-0.011345997,0.027098916,-0.028778903,0.036959708,0.0038317088,0.027196307,-0.009745141,-0.007505158,0.031213665,0.067929894,-0.003819535,0.007164291,0.07026727,0.0054264786,0.000077512974,-0.008472976,0.025857186,0.005380827,0.019563323,-0.037665788,-0.010877305,0.008113849,0.034305815,-0.043436177,-0.0031256275,-0.016264219,0.0017971597,0.010798175,0.0078034163,0.036253627,0.0034604073,0.0019599844,0.0080468925,-0.018954633,-0.027391087,0.00047211582,0.007042553,0.007979937,0.0050673513,-0.023276336,0.0068782065,0.016994648,-0.028170211,0.021450264,0.014401625,-0.014559885,0.03415973,-0.037909266,-0.04628485,-0.015192923,0.010280788,0.039759684,-0.030166717,0.02386068,0.014912926,0.011985122,0.018090291,0.04718571,-0.011309476,-0.012478162,0.009666011,-0.030191066,-0.03990577,0.0033660603,-0.007632983,0.0067625553,0.013415546,0.014438147,0.017238125,-0.01275816,0.012374684,0.06408297,-0.0062299506,-0.0015544442,0.027902387,-0.016385958,0.020184187,-0.008186892,0.0028060647,0.02354416,0.08575236,0.0048725703,-0.0054995217,0.016824214,-0.016081613,-0.0025778057,0.0024880238,0.016860737,0.03228496,-0.00797385,-0.039224036,-0.009124275,0.043728348,-0.013585979,-0.022813732,-0.005569521,-0.012965115,0.0063242977,-0.039370123,-0.032528438,-0.002118244,0.011394693,-0.010499917,0.030215412,-0.008290369,-0.0043704,0.03196844,0.015838135,0.002816717,-0.016897257,-0.007699939,0.026198054,-0.048062228,-0.01409728,0.007821677,0.0024241111,0.016459,-0.0028228038,0.012082513,0.03467103,-0.005307784,0.008138197,-0.019538976,-0.010232093,0.00024594914,0.024055462,0.012697291,0.012167729,0.0058921273,-0.043436177,0.042413577,-0.021170268,0.011297301,0.011729472,0.02870586,0.027902387,-0.014632927,-0.004139098,-0.012295554,-0.017201602,-0.007097335,-0.0047082235,-0.025175452,0.024591109,-0.019210283,0.029411942,0.019733757,0.0125999,0.037836224,0.00180629,0.007931242,-0.012539031,-0.016714651,0.030507585,0.00880167,0.018394636,0.010743394,0.021255484,-0.026514573,-0.014681622,0.0241772,0.025151106,-0.019149413,-0.0056943027,-0.0013391199,-0.0035030157,0.0058464753,0.035157982,0.03167627,0.03209018,-0.0006901032,-0.0013086853,-0.020756356,-0.018650288,-0.035864063,0.010286875,-0.02848673,-0.0016328131,0.0049303956,-0.005761259,-0.0052895234,-0.025151106,-0.034646682,-0.034111034,0.027123263,-0.011936427,-0.0023145468,0.011157303,-0.03559624,0.0007186356,0.00436127,0.015594659,-0.0030693235,0.011187738,0.03457364,0.024104157,-0.027196307,0.029752808,-0.033283215,0.0049030045,-0.018808547,0.010798175,0.015144228,-0.0032108442,0.025443276,0.023166774,-0.03742231,-0.00352432,0.03126236,-0.029752808,0.007499071,0.0019067241,-0.0056060427,-0.0359858,-0.01043296,-0.00094042736,0.014219018,0.013512936,-0.021803306,-0.0045712683,-0.0073955934,-0.0044586603,0.023629379,0.0057338676,-0.00030605737,-0.021194614,0.028340645,-0.041829232,0.0025215019,0.00021037877,0.010402527,0.015083359,-0.0627195,0.039004907,-0.02102418,0.027610216,-0.00087727566,0.008625149,-0.009678184,0.003746492,0.010554699,-0.024518067,-0.017311167,0.009605141,-0.0061021256,-0.03269887,0.046942238,0.012490336,-0.025638057,0.025759796,0.019465933,-0.0025017194,0.03659449,-0.0037251879,-0.012539031,-0.009812096,-0.0360345,0.01897898,-0.0120399045,-0.026587615,-0.0016175959,-0.02143809,0.017627686,0.003685623,0.004744745,-0.028267602,0.012119034,-0.00095488376,-0.0050430037,-0.0058464753,-0.0010674916,-0.009392099,0.008174717,-0.0159477,0.03238235,0.065689914,0.020330274,-0.0016769433,-0.03693536,0.021815479,-0.0024165027,0.018747678,-0.015302488,0.0018930285,0.053856965,-0.028973684,-0.0136468485,-0.029290203,-0.024091983,-0.021036355,-0.0069877706,0.025467625,-0.0030130197,-0.0324067,-0.011187738,-0.008570367,-0.008497324,-0.008168631,0.014998142,-0.001996506,0.003484755,-0.018638114,0.030848451,0.04124489,-0.004598659,-0.009471229,-0.026295444,0.038128395,0.011437301,0.028924989,-0.0030038892,0.016276393,0.025272842,0.007164291,-0.0138659775,0.021450264,-0.017347688,-0.016434653,0.008546019,0.0043308353,0.00799211,0.013159895,-0.015107706,-0.009659924,-0.023227641,0.00037567638,0.033891905,-0.0017210733,-0.0028288907,0.029606722,-0.025735449,0.024664152,0.01242338,-0.004063011,-0.01604509,-0.008040806,-0.011942514,-0.04258401,0.0005972779,0.009763401,0.0014517276,-0.0017469426,0.019745931,-0.02267982,-0.027585868,-0.023970244,-0.0103051355,-0.0069208145,0.011632082,-0.027269349,-0.021912869,-0.004403878,0.0011382519,0.02583284,-0.003679536,0.003996055,-0.028024126,-0.033964947,0.016069438,-0.0068051633,-0.007377333,-0.025735449,0.005858649,-0.023848508,-0.021827653,-0.0066651646,0.012100774,0.028048474,0.008497324,-0.04092837,-0.014158148,0.010810349,0.03467103,-0.0021304179,-0.039881423,0.0027162828,-0.010810349,0.002069549,-0.0051616984,-0.0047082235,0.013634674,0.031530187,0.018492028,-0.042340536,-0.018613765,-0.041804887,0.04236488,0.011151216,-0.011668603,0.02350764,-0.0051251766,0.015765093,0.0087408,-0.022290258,0.017457252,-0.027001524,-0.032869305,-0.032942347,0.008533846,0.0153390085,0.025224147,-0.012405119,0.010055573,-0.0029643243,0.009781661,-0.013159895,-0.019782452,0.00289889,0.0018260725,0.0031591053,0.01789551,0.01275816,0.0068599456,0.012277294,-0.004178663,-0.005268219,-0.0049395263,-0.017615512,-0.0035669282,-0.0140364105,0.054538697,0.0008734713,-0.015996395,0.002408894,-0.001064448,-0.012234686,-0.08414542,0.011096434,0.009580794,0.04609007,0.002798456,-0.020464186,-0.03715449,-0.01275816,0.0007502115,-0.029728461,-0.019149413,0.022058956,0.008826017,-0.012721638,0.006914728,0.0028973683,0.012514683,0.015083359,0.023970244,0.02022071,-0.034646682,-0.029679764,-0.011479909,0.0039382298,0.0044647474,0.021766784,-0.046844848,0.032479744,0.00562126,0.019271152,-0.01149817,0.024834586,0.003451277,-0.025078062,0.063644715,0.02303286,-0.01051209,-0.009379926,-0.02012332,0.013853803,0.014219018,0.0063547324,-0.0024728065,-0.04163445,0.023105904,-0.006902554,-0.007620809,0.0010598829,0.00033554083,-0.014535537,0.010676437,0.027050221,-0.011504257,-0.0359858,0.047794405,-0.022594603,-0.0036430147,0.00948949,-0.03993012,0.015838135,0.005189089,-0.009605141,-0.013719891,-0.01285555,0.0061508208,0.008923408,0.01141904,-0.002860847,-0.01834594,0.042608358,0.006750381,-0.012965115,0.014219018,-0.028730208,-0.041999668,0.03097019,-0.009343404,-0.032650176,0.004799527,0.0015962917,0.026465878,-0.0026675875,0.009239927,0.0058069103,0.036886666,-0.011668603,0.028364994,-0.0014471625,-0.012831203,0.0074686366,-0.013281634,0.021876348,-0.06982901,0.024627632,0.014547711,-0.015594659,0.004108663,-0.009051233,0.028681511,0.0015567268,-0.0043795304,0.06091778,0.010232093,-0.0064034276,0.0012927072,0.04701528,-0.016787693,-0.03128671,0.0058464753,0.001873246,0.0017423775,-0.017627686,0.010177311,0.005091699,0.034914505,0.013379024,-0.054490004,-0.023653725,0.0057521285,-0.009745141,-0.011954688,-0.0001389527,0.025905881,0.010518177,0.002720848,0.0071338564,-0.02053723,0.008959929,-0.025443276,0.019332021,0.0060199522,0.019429412,0.008083414,-0.009258187,-0.0082234135,-0.0018412898,-0.0025001976,0.025297191,-0.0061325603,0.015777266,0.009191232,-0.008661671,0.000263449,-0.008083414,0.043046616,-0.008777321,0.028364994,0.006488644,0.038250133,0.05186046,-0.016020743,-0.024749368,-0.0046017026,-0.0154364,0.017469427,-0.0051251766,-0.025491972,0.0000025798029,0.012940767,0.00048428963,0.0034817115,-0.034281466,-0.022521561,-0.056340422,-0.0054843044,0.03218757,-0.009495577,-0.019624192,0.0045043123,-0.030483237,0.024031114,0.02344677,0.05010743,-0.029022379,-0.017018996,-0.00066879904,-0.0064338623,0.006567774,0.013975541,-0.0062299506,-0.009994703,-0.05215263,-0.009629489,0.002201939,0.0128677245,0.033526693,0.027391087,0.021036355,0.000014182972,0.0036095367,-0.0023738942,-0.0034025817,-0.017652035,-0.022351127,-0.0119972965,-0.013756413,-0.039954465,-0.0025336756,-0.020500707,0.013926846,-0.001711943,0.0010682524,0.01563118,0.013963368,-0.016325088,-0.01610596,0.00043977913,-0.027439782,0.013305982]},{"id":"interface-CollectedReaction","type":"interface","source":"main","text":"Interface: CollectedReaction\nProperties: reaction: MessageReaction, user: User","meta":{"url":"/docs/typedefs/CollectedReaction"},"embedding":[0.01582886,-0.018599574,-0.03998312,0.056580886,-0.0019686648,-0.0039605293,-0.009989151,0.015404636,-0.001276815,-0.044782154,-0.020508582,-0.045232892,0.0156167485,0.036668867,0.011182281,-0.016173542,0.022616446,0.03422958,-0.025784869,0.064906284,0.010632115,0.01745947,0.059497423,0.01719433,-0.010625487,0.01410545,-0.008378426,0.04324434,-0.062891215,-0.035661336,0.037464287,-0.022033138,0.0018510089,0.0059192516,-0.013561913,0.012408554,-0.013986137,0.041626986,-0.038524847,0.01764507,-0.041626986,-0.03118047,0.0075299772,0.022006623,-0.084049396,0.00888882,-0.021211203,0.019037055,0.011566734,0.02449894,-0.026964743,-0.0058927373,0.02109189,0.025930695,-0.0021111777,-0.063739665,-0.012322383,0.020760465,-0.045710143,-0.0016115543,-0.024512196,-0.034839403,0.0055281697,-0.012991862,-0.01370774,-0.03139258,-0.01582886,0.028555583,0.038949072,-0.00016188042,0.025731841,-0.010791199,-0.040354315,0.013124432,-0.00051495165,-0.0015162696,0.0013315001,-0.03643024,-0.0020598066,-0.024167515,-0.020919548,0.022775529,-0.052100018,-0.06464114,-0.025864411,-0.0282109,-0.012342269,-0.012932206,-0.035025,-0.03547574,-0.022086166,0.0214896,-0.053558286,-0.0017780954,0.02056161,-0.045259405,-0.018931,0.0188382,-0.009531785,0.0376764,0.032532685,-0.08601143,0.00769569,-0.028555583,0.0038279593,0.031206982,0.0044510383,-0.0021260916,-0.044198845,-0.017751126,-0.023120211,-0.0037815599,0.004169327,-0.0038014452,-0.007682433,-0.028926779,0.0062075914,-0.025904182,-0.03475986,-0.0032363655,-0.04228984,-0.0042886403,0.0021227775,-0.011626391,-0.011911416,-0.019116597,-0.0026414576,-0.019315451,0.000044276316,0.01698222,0.024220543,-0.031631205,-0.017141303,0.0022321476,-0.010817714,-0.019620363,0.028423013,0.004195841,-0.036403727,0.00047103784,-0.0063434755,0.003362307,-0.0067710136,0.022656217,-0.029297974,-0.004871948,-0.06177763,0.035528764,0.030438077,-0.014304305,-0.0109966835,0.040805053,-0.053213608,0.00880265,0.020389268,-0.0023597463,0.04173304,0.018931,-0.021542627,-0.06071707,0.0564218,-0.063739665,-0.045020778,-0.029828254,-0.026871944,0.0058827945,0.013774025,0.005302801,-0.025572756,0.026898457,0.012189813,0.022934614,-0.053849943,-0.01914311,-0.055202156,-0.026235607,-0.04223681,-0.017393187,-0.0065821013,0.038524847,0.03285085,-0.01043326,-0.047645666,-0.11178304,-0.00032106802,-0.035979502,-0.04934256,0.0033308216,0.0068604983,-0.044410955,0.0103404615,0.057376307,0.0120108435,0.014184992,0.01224947,-0.060929183,0.03661584,-0.025493216,-0.033089478,-0.032400113,0.008716479,-0.011778846,0.044225357,-0.028900264,-0.037040062,-0.009757154,-0.00006659572,0.00446761,-0.012832778,0.0069930684,0.063845724,0.005687254,0.0009329615,-0.0070858677,-0.063739665,-0.0006694786,-0.049952384,0.0056010834,-0.057429332,-0.020455554,-0.05037661,0.03706658,0.118570626,-0.010247663,0.017764382,0.059868623,0.00470955,-0.0119445585,-0.02467128,0.0073377504,-0.054088566,-0.03290388,-0.0047725206,-0.07773906,0.021821026,0.0036025902,0.014635731,0.015444407,0.034680318,-0.033142503,-0.015895145,-0.024817107,0.024923164,0.06198974,-0.0048487484,0.00032438227,0.014582702,0.014688758,0.010844228,0.030835787,0.03311599,0.02201988,0.050827347,-0.013369687,0.0048089772,-0.021436572,-0.040009633,0.021741483,0.0054850844,0.00008751693,0.024843622,-0.02374329,-0.03051762,0.025943954,-0.039744493,-0.019554079,0.044808667,-0.0040930994,-0.040380828,0.06347453,0.0031733948,-0.0098499525,0.032400113,0.03462729,-0.021158176,0.027468508,0.041070193,0.024949677,-0.029801741,0.020680923,-0.013018376,0.034680318,0.03263874,0.0019703219,-0.032002404,0.016094001,0.01569629,0.0024641452,0.03582042,0.012561009,-0.007927687,0.013369687,0.040805053,-0.0017316958,0.0035363054,-0.0005717082,0.023411866,-0.0150599545,0.027044283,-0.0017532385,0.0107448,0.011831874,0.049687244,-0.043085255,0.043085255,-0.00309551,0.06708043,-0.022934614,0.024207287,0.007145524,-0.008544138,-0.061459463,-0.021635428,-0.01870563,-0.05456582,-0.0012063872,0.031153955,0.021714969,-0.031816807,0.04064597,0.05013798,-0.002924826,0.055255186,-0.024883393,-0.01967339,-0.036191616,0.053531773,-0.039161183,0.058277782,0.07015605,0.02648749,-0.03608556,-0.009525156,0.0052431445,0.09338232,0.0015676405,-0.013760768,0.026129551,0.015020183,0.04796383,0.058808062,-0.046134368,-0.029563114,-0.017711354,-0.0080470005,-0.017353415,0.00990298,0.015669776,-0.012653808,0.014768301,-0.013515513,0.044278387,-0.055785466,-0.02410123,0.034070496,-0.014450132,-0.002329918,0.0011773875,-0.006615244,0.043986734,0.015417893,0.016438682,0.011208795,0.0037119605,0.029404031,0.032479655,-0.078852646,-0.007702318,0.04125579,-0.06294425,-0.012428439,-0.03735823,0.004142813,0.011911416,-0.026010238,0.0132238595,-0.009445614,-0.018506775,0.020349499,0.022099422,0.025334131,0.044331416,-0.030676702,-0.013760768,-0.009014761,-0.016902678,-0.036165103,0.0070394683,-0.041573957,0.032612223,0.08219341,-0.042395893,-0.0310479,-0.024392884,0.045763172,0.02440614,0.013283516,0.05721722,0.042608004,0.013628198,0.006651701,-0.0067710136,0.025320875,0.02387586,-0.00027218284,0.028131358,-0.04642602,0.039505865,0.037835483,-0.009299787,0.04199818,-0.04510032,0.021025605,0.0040698997,-0.0018128951,-0.009134075,-0.01834769,0.023769805,0.027335938,0.0047725206,-0.006655015,-0.017804153,-0.0035860192,-0.02241759,0.004871948,0.016398912,0.021807767,-0.0156167485,0.010154864,-0.057005107,-0.04767218,0.011089482,0.033062965,0.016968962,0.008862305,-0.038259707,0.070209086,0.010738172,-0.038180165,0.015351608,0.0074703204,0.016531482,0.03656281,0.009008133,-0.035396196,-0.029404031,0.008199456,-0.0228153,0.01773787,-0.017883696,-0.058171723,-0.014980412,0.0026514004,0.02113166,-0.053478748,-0.029589629,0.020508582,0.08749621,0.0017399815,0.014330819,0.006336847,0.023451636,0.011599877,0.060664043,-0.013800539,-0.029669171,-0.059603482,-0.010539317,-0.0067146714,0.007609519,-0.008484481,-0.010956912,-0.0031104241,0.0036092189,-0.0014748415,-0.029828254,0.03184332,-0.026699603,-0.0013679569,0.010154864,0.04085808,0.051039457,0.004401325,-0.010665258,-0.008656822,0.04987284,0.01384031,-0.046266936,0.00032686794,0.032002404,0.024777336,0.0030325393,-0.008497738,-0.015364866,0.0014218135,-0.00902139,0.01989876,-0.02781319,0.016438682,-0.04324434,0.007092496,0.017751126,-0.020893035,0.00052240875,0.02489665,0.04700933,-0.014927384,0.009366072,-0.015815603,-0.014715272,0.022841815,-0.013681226,-0.017406443,-0.027044283,-0.0055480553,-0.009942751,-0.04931605,0.010797828,-0.011679418,0.0017747812,0.037702914,0.005975594,0.0070063258,-0.017181074,-0.016491711,0.01711479,-0.00444441,-0.021608913,-0.014914127,-0.013263631,0.0031286525,-0.013336544,0.021966852,0.013409457,-0.008762878,-0.016756851,-0.05424765,-0.011268452,0.015934916,-0.03680144,-0.0031535095,-0.021595657,0.007198552,-0.015855374,-0.008431453,0.03515757,-0.003254594,0.030385049,-0.002407803,0.027309423,0.0024194028,0.0027673992,0.035343166,-0.03523711,0.02042904,-0.0038710446,-0.015272066,-0.024087973,0.023557693,-0.0029944254,-0.024697796,-0.035343166,0.0022188907,-0.028635124,-0.032241028,0.014344077,0.03722566,0.02453871,-0.026765887,0.018082552,-0.009458871,-0.003987043,-0.029695684,0.0021244346,0.003546248,0.0005783367,-0.023279296,0.0030723102,0.026527261,0.011884903,-0.001837752,-0.009578184,0.04231635,0.01777764,-0.031206982,-0.008689965,0.0044278386,0.0066351295,-0.003266194,-0.0013919852,0.00006545645,-0.008577281,0.032665253,0.057535388,-0.0108972555,-0.005355829,-0.00045280947,0.009889724,0.014702016,0.015537206,0.027919246,-0.0034070495,-0.06681529,-0.013071404,0.03179029,0.08537509,0.0058131954,-0.037623372,-0.056846026,0.04324434,-0.020773722,0.0029811682,-0.023000898,-0.033672784,0.0016703822,0.0007030354,0.017896952,0.006128049,-0.0028784266,-0.0060783355,-0.0550961,0.011314851,-0.015285323,0.0001375414,-0.021237718,0.048175946,-0.021940337,-0.026832173,0.029191919,0.011725818,0.020614639,0.0003270751,-0.021913825,-0.03643024,0.021025605,-0.016266342,0.028661638,0.012938834,-0.025002705,0.0054320567,0.029642656,-0.024260314,0.03998312,0.0067014145,0.032400113,0.032559197,0.005133774,-0.012150043,-0.0033059649,-0.0012005873,-0.03356673,-0.009989151,0.017711354,-0.025148533,-0.014967156,0.0009901323,-0.003927387,0.032028917,0.026288634,-0.013986137,-0.0013447572,0.027468508,0.008133171,0.015205781,-0.015815603,0.029695684,-0.049103934,-0.030013852,0.00050045183,0.031896345,0.02095932,0.028396498,0.008312141,-0.0065721585,0.027733648,-0.00473275,0.004391382,-0.020057844,-0.028290443,0.0016968963,0.03491894,-0.000104347106,-0.031206982,0.016107257,-0.003466706,0.0010009037,0.0073112366,-0.031472124,-0.018016266,0.012030729,0.012488096,-0.029510086,0.016889421,-0.010592344,0.017949982,-0.030570647,0.027521536,-0.020535097,-0.010559202,-0.047354013,-0.024976192,-0.017366672,0.0003954315,-0.004590237,0.022497132,-0.025546243,0.021343773,-0.020627895,0.03576739,0.02701777,0.0065158163,0.013495628,0.007437178,0.033593245,-0.028635124,0.020097615,0.011792103,0.006452846,0.06379269,0.025678813,0.006784271,0.014397104,-0.016372398,0.036589324,-0.02175474,0.014131964,0.024339857,0.048918337,-0.021038862,0.021767998,0.0060219932,-0.0156167485,-0.006906898,0.014980412,-0.020720694,-0.0059855366,0.010526059,-0.0035230482,0.033884898,-0.0053492,-0.017141303,0.00017234102,0.0242338,-0.02834347,-0.022589931,0.015855374,-0.015112982,0.032559197,-0.04849411,-0.0045173233,-0.021701712,0.0103736045,-0.032453142,0.030199451,-0.0151262395,-0.011129254,0.013614941,0.0041726413,-0.057906583,-0.0026298577,0.022059651,0.041229278,-0.01711479,-0.005306115,0.01972642,0.011420907,0.0014450132,0.001422642,0.010366975,-0.01291232,0.033195533,0.013919852,-0.0031385953,0.004885205,0.01003555,-0.008212713,-0.018228378,-0.011427536,-0.01047966,-0.013999394,0.004112985,-0.008033743,-0.026288634,-0.0524447,-0.014635731,0.003532991,0.0024542024,-0.0013878423,-0.017499242,0.0046333224,-0.00107796,-0.010976798,0.03529014,-0.03091533,-0.018506775,0.02268273,-0.011341365,-0.06225488,0.0188382,0.02370352,-0.039824035,-0.011460679,0.015736062,0.010015665,0.022245249,-0.012627294,-0.034043983,0.014582702,-0.030597162,0.015219038,-0.013462486,0.009246759,0.005147031,0.0127002075,-0.016809879,0.022059651,-0.0054486278,-0.025015963,-0.011971073,-0.029589629,0.03436215,-0.012282613,0.02662006,-0.014344077,0.07429224,0.01954082,-0.014065679,0.01759204,0.03152515,0.001045646,0.026288634,-0.002924826,0.03696052,0.0076625473,0.029324489,-0.02794576,-0.01645194,0.016730336,-0.0014541274,-0.019739676,0.003665561,0.013827053,-0.0046399506,-0.022616446,0.030066881,-0.02453871,0.031949375,-0.024909906,-0.020972578,-0.014423618,-0.01224947,0.037968054,0.030491104,-0.01605423,0.007437178,-0.024604995,-0.050164495,0.0052464586,0.00049755187,0.00892859,0.010327204,0.01972642,-0.025334131,-0.03571436,-0.00910756,0.006717986,0.017353415,0.009028018,0.017181074,0.02715034,0.009644469,0.04255498,0.012846035,0.01980596,0.0016322684,-0.0173269,0.014688758,-0.01980596,0.031551667,-0.030703217,-0.025175046,0.009538413,0.030941842,0.011705933,0.0026265436,-0.00096278975,0.0073112366,0.03754383,-0.033407643,-0.024512196,0.005518227,-0.009830067,0.023106955,-0.009624584,-0.0018460376,0.01821512,-0.012766493,0.015762575,-0.0013588427,-0.01384031,-0.008782764,-0.03184332,-0.027176853,-0.0060816496,0.058808062,0.03656281,0.033195533,-0.03574088,-0.00029289688,-0.021635428,0.034998484,0.007198552,0.020137386,0.018824942,0.012839407,0.010625487,0.0032380228,-0.011135882,0.004464295,-0.0012917292,-0.0057767387,0.039479353,0.0069798115,-0.02042904,0.015311837,0.011043083,-0.017048504,-0.00349322,-0.036244642,-0.010585716,0.019355223,-0.012329012,-0.007815002,0.01658451,-0.028661638,-0.023292553,0.035581794,0.021290746,0.01087737,0.010870742,-0.021701712,-0.03926724,-0.029483572,-0.0061346777,0.010817714,-0.0020482067,-0.032267544,0.026514005,0.000730378,0.009982523,-0.005640854,-0.043164797,0.022231992,0.015736062,-0.023928888,-0.0050608604,0.059709538,-0.022510389,0.06273213,0.025718585,-0.018162092,-0.028263928,-0.061724603,-0.032718282,0.003678818,-0.010201263,0.013654712,-0.025466701,-0.0091274455,0.021330517,-0.023995174,-0.032347083,0.021688456,0.017101532,0.015749319,-0.003241337,-0.0024310027,-0.0034435063,0.005210002,-0.0019520936,-0.0077089467,0.03555528,-0.009690869,0.026739374,-0.013329916,-0.05610363,-0.015179267,0.00391413,0.023186497,-0.0031833376,0.008133171,-0.00066326436,-0.006575473,-0.017790897,0.01932871,-0.03892256,-0.024711052,0.022722501,0.021184688,0.017658327,-0.012295869,0.025320875,0.009724011,-0.028688153,0.021927081,-0.020641152,0.0011102739,-0.013641455,0.01967339,-0.032930393,0.018427232,0.010990054,0.024870135,-0.030040367,-0.028873751,0.018095808,0.016968962,0.011089482,-0.0014740129,-0.005564627,0.04920999,-0.032188002,0.03343416,0.0060054217,0.009962637,-0.026858686,0.0036721895,0.031631205,-0.00080370577,0.0035893333,-0.00963784,0.050084952,0.0016190114,0.01556372,0.011016569,0.043217827,0.0121765565,0.0045471517,0.010420004,-0.034309123,-0.037040062,-0.028184386,-0.032134973,0.019646877,0.0058165095,-0.011169024,0.017075019,-0.012985233,0.00072209234,-0.00014095922,0.042024698,0.011652905,-0.06045193,-0.021542627,-0.0072582085,-0.0022205478,0.01539138,-0.004331725,0.006761071,0.0016024401,-0.004401325,-0.019182881,-0.015709547,-0.0062871333,0.030172937,0.013157574,-0.0086037945,-0.030491104,0.019607106,0.009604698,-0.0010083608,-0.031074412,0.022231992,-0.033778843,0.0063501038,-0.019872246,0.018732144,-0.028582096,-0.0011003312,-0.058012642,-0.0014764986,0.014291048,-0.0022536903,0.0063534183,-0.024817107,0.022072908,-0.031869832,0.016889421,0.02383609,-0.004315154,-0.022536904,0.007940944,-0.0010680172,-0.031419095,0.0014259563,0.051012944,-0.014662244,-0.022894843,0.030146422,0.017525757,0.009187102,0.023266038,-0.006774328,0.008636937,0.026540518,0.008206084,-0.030941842,-0.003907501,-0.032081943,0.013409457,-0.000992618,-0.023623977,0.011566734,0.017883696,-0.008053629,-0.0038246452,0.0031054527,-0.024127744,0.014741786,-0.021781255,-0.0044874954,-0.03126001,0.022908099,0.020985834,-0.023014156,0.019235909,-0.00028916835,-0.015179267,-0.016226571,-0.009896352,-0.0005671511,-0.019050311,0.021078633,-0.009213616,0.011997587,0.0056441687,-0.0040467,0.008292255,-0.012454953,-0.020455554,0.0069731832,0.014967156,-0.009518527,0.022974385,-0.0050376607,-0.0024492312,-0.008769507,0.077473916,-0.013084661,-0.021781255,0.043960217,0.0065456447,-0.012189813,0.001111931,0.042926174,-0.005054232,-0.018732144,0.0017366672,-0.024114486,0.012773122,-0.014410361,-0.005362457,0.0076426617,-0.0027557993,0.0110629685,0.046134368,-0.025493216,-0.0034169923,0.01185176,0.02127749,0.017419701,-0.02357095,-0.009140703,0.026394691,0.0012353868,0.0035495623,0.023716776,0.0126339225,0.0156167485,-0.0018311234,-0.006048507,-0.028104844,0.0019885504,0.002169177,-0.012971977,-0.001515441,-0.038365763,0.026169322,-0.025493216,-0.0119445585,0.0041759554,0.0013836996,-0.013336544,-0.03741126,-0.014065679,-0.0115203345,-0.032426625,-0.018122321,0.016491711,0.03258571,-0.022112679,0.019249167,-0.013555285,0.011354622,0.00632359,0.017963238,0.0037815599,0.00243266,0.039691463,-0.009260016,0.01264718,0.031949375,0.028529068,0.016995477,0.000820277,-0.009929495,0.04740704,-0.013190717,-0.014834586,0.006313647,-0.008060257,-0.0076028905,0.028184386,0.00078837737,-0.016836392,0.031949375,0.029165404,0.0014160136,-0.009425729,0.011334737,0.012395297,-0.027362453,0.023385352,0.03656281,-0.014078937,-0.00862368,-0.014025908,0.031949375,0.0007863059,0.03656281,-0.022523647,0.00986321,0.008703222,0.01844049,0.0139463665,-0.0060915924,-0.016080743,-0.017539013,0.016425425,0.045736656,0.007072611,-0.03356673,0.0004942376,-0.0037583602,0.00880265,-0.012958719,-0.009233502,-0.010141606,-0.007868031,0.016611023,-0.006800842,-0.0028320272,-0.04205121,0.006393189,-0.01834769,-0.018732144,-0.0105061745,-0.022324791,0.053293146,-0.010705029,0.0055480553,-0.0049680616,-0.015166011,0.04793732,0.008968362,0.01976619,0.03669538,0.008378426,0.03099487,0.020150643,0.01565652,-0.0030093396,0.016955705,-0.065860786,-0.016823135,-0.004189213,0.03470683,0.0014897556,-0.0031551665,0.018851457,-0.015152753,0.0020796922,0.027256396,0.015537206,-0.019315451,-0.0073642647,0.023239525,-0.020389268,-0.005992165,-0.0120439865,-0.00039957432,0.03364627,-0.01954082,-0.0015129554,0.0031120812,0.004881891,0.013853567,0.020773722,-0.010552574,-0.03595299,-0.040539913,0.027839703,0.0060518216,-0.026500747,-0.028423013,-0.02113166,0.012859292,-0.042422406,0.008404939,-0.02648749,0.014662244,0.00782826,-0.011785475,-0.01932871,0.014211507,0.0038611018,-0.0014922413,-0.0094655,-0.01932871,0.0076028905,0.021927081,-0.0033192218,-0.015497435,0.0025503158,-0.024591738,0.00019885504,0.004460981,-0.013502257,-0.00013888782,-0.012627294,-0.016915934,0.005097317,0.01556372,0.014622473,-0.012686951,0.023146726,0.006946669,-0.031604692,0.026739374,-0.031233497,-0.010148235,-0.00097190397,-0.0073244935,-0.037862,0.02436637,0.00083229115,-0.0022818614,-0.006442903,0.024034945,0.031074412,-0.033487186,0.022258507,0.022921357,0.00994938,0.01745947,0.0017300388,0.029642656,0.005080746,-0.011069597,0.0038014452,-0.05212653,-0.015908403,0.043748107,0.011951188,0.009266645,-0.018360948,0.0010763028,0.021569142,0.019845732,0.0054022283,-0.004182584,-0.0074504353,0.022364562,-0.045816198,0.0035661336,-0.022430846,0.026646573,-0.0045802942,0.011255194,-0.04244892,-0.05117203,-0.023053927,0.015099726,0.0055944547,-0.0011343022,-0.016359141,0.0017250674,0.0069731832,0.013217231,0.016730336,-0.0016678965,-0.011493821,-0.011712561,0.0016703822,-0.006532388,0.02467128,-0.0010265891,0.006641758,-0.00036974606,0.0072979797,-0.015431151,0.0075896336,-0.0020316355,-0.02215245,-0.0009420757,0.025599271,0.0012619009,-0.025122019,0.020548353,-0.037252177,0.0097173825,0.0017515814,-0.015417893,0.0094655,-0.024817107,0.025572756,-0.060133763,0.003718589,0.037888512,0.023358837,0.02410123,-0.00658873,-0.0024939736,-0.011089482,-0.016160285,0.016690565,0.013150946,-0.017366672,-0.004205784,-0.0018162093,-0.018493518,0.02449894,0.03568785,-0.025453445,-0.040486883,-0.009438985,0.016624281,0.032877363,-0.027919246,0.039850548,-0.049687244,-0.0019404937,0.021993367,-0.013515513,0.0008617051,-0.029032834,0.0065721585,-0.013694483,-0.043323882,-0.037782457,0.022735758,0.010154864,0.02343838,0.038180165,0.042077724,0.007636033,-0.01193793,0.02099909,0.040089175,0.0080138575,-0.017075019,0.0052630296,-0.009140703,0.0033705928,0.025453445,0.02807833,0.015338351,0.03078276,-0.0010497889,-0.017101532,-0.00042463833,0.0025967152,-0.011971073,-0.02847604,-0.014914127,-0.0017084961,0.007198552,-0.015205781,0.008332026,-0.0063302186,-0.0006065078,0.006598673,0.045577575,0.051808365,-0.0048885196,0.021874053,-0.007543234,-0.012401925,0.0044377814,-0.05019101,-0.0097173825,0.010658629,0.029616142,0.018493518,-0.03780897,0.007927687,0.004620065,-0.021304002,-0.016518224,0.03627116,-0.005428742,-0.008126542,0.046107855,0.006519131,-0.03706658,0.020004816,0.035979502,0.023027413,0.016703822,0.023159983,0.005226573,-0.030066881,0.0009487042,-0.021025605,-0.033195533,0.003599276,-0.04634648,0.052895438,-0.01198433,-0.0046532075,-0.011765589,0.017658327,0.003718589,-0.0069532976,0.0017714669,0.027760163]},{"id":"interface-DispatchHandler","type":"interface","source":"main","text":"Interface: DispatchHandler","meta":{"url":"/docs/typedefs/DispatchHandler"},"embedding":[-0.009335297,-0.014914542,-0.008663595,0.015147582,0.010946013,0.020959867,-0.043153472,0.02832118,0.046882108,-0.025949659,0.00063143484,0.0077999765,-0.009163944,0.032049816,0.026593944,-0.038684595,-0.011830193,0.030212915,0.0031785932,0.07084408,0.004825293,0.036217116,0.052666977,-0.016436154,-0.0052571017,-0.016340196,-0.036409028,-0.010973429,0.028924342,-0.027251938,0.06042583,-0.025346497,0.05379105,-0.0031751662,0.055765033,0.014050924,-0.007834247,0.014434755,-0.021563029,0.025058623,-0.03248848,-0.027526103,-0.024140174,-0.0072447937,-0.04578545,0.021151781,0.054366797,0.04649828,-0.0066793296,0.028293764,-0.006199542,-0.021151781,-0.01269381,0.03679286,0.020178499,-0.009163944,-0.008183806,0.008423701,0.0026833839,0.00683012,-0.042385813,-0.017080441,0.01856093,-0.022371814,-0.03429796,-0.015298372,-0.038300764,0.008471679,-0.00094672386,-0.0045408476,0.029883917,-0.005202269,-0.0078068306,-0.019835792,0.033886716,0.008423701,-0.013173598,0.00582942,0.027046315,0.0033996382,0.0000055856976,0.029445253,-0.062235314,-0.06865076,-0.004263256,-0.030925741,-0.044113047,0.01180963,-0.03717669,-0.030459663,-0.017094148,0.06673161,-0.029692002,0.008348306,-0.0056135156,-0.047320772,0.028293764,-0.0056203697,-0.013865863,0.04148107,0.08850026,-0.03492854,-0.011782214,-0.0057129003,-0.001250875,-0.026744734,0.0035298665,0.0208502,-0.041672986,0.015997492,-0.0340238,-0.007950767,0.009959021,-0.040356997,-0.007943912,-0.016641777,0.086910106,-0.010815784,0.0049966457,0.0023081214,-0.023742635,0.022029107,-0.0170119,0.0053016534,-0.034818877,-0.046580527,-0.0031768796,-0.03525754,-0.048198096,-0.031693403,0.06009683,-0.02346847,-0.0052708103,-0.019287463,0.0013296972,-0.013290118,-0.026018199,0.015120165,0.009952167,-0.0111447815,-0.00097328355,-0.04710144,0.026004491,0.0025325934,-0.016641777,-0.0008704719,-0.0024452035,0.027197106,0.04172782,0.038903926,-0.026854401,0.072598726,0.0036806567,-0.016737735,0.00965744,0.0012371667,-0.024606252,0.0025908533,0.0077314354,0.015874118,0.002342392,-0.039726418,-0.015408038,0.019534212,-0.047622353,-0.03240623,0.030843493,-0.014818585,-0.06377064,0.026168989,0.0018728854,-0.01039083,-0.025812576,0.019040717,-0.033968966,-0.032433644,0.014421046,-0.018972175,-0.045675784,0.02416759,0.07714985,0.06048066,0.03555912,-0.03947967,0.0067273085,-0.00018484677,0.0069740564,0.020562328,-0.027896225,-0.019054424,-0.03355772,0.05327014,-0.0016595513,0.02500379,0.03701219,-0.011089949,0.016449863,-0.026347196,0.010617016,-0.027649477,0.011651986,0.00885551,0.037231524,0.0035607098,0.00044980092,0.01469521,-0.025867408,0.0060350434,0.03832818,-0.007930204,0.024455462,0.0037697603,0.021453362,-0.0240168,-0.07435338,-0.0034938823,0.016902234,0.044003382,-0.01554512,0.012618415,0.008691011,0.026333489,0.056148864,-0.05225573,0.019959167,0.016052324,0.0112544475,-0.02610045,-0.031665985,-0.017683603,-0.014791168,0.0073544593,0.027512396,-0.062399812,0.021809775,0.028458262,-0.012227731,-0.057848684,0.008053578,0.0008147823,-0.022796769,0.0037697603,-0.010281164,-0.019287463,-0.004684784,-0.01562737,-0.0013579704,-0.0068198387,0.0035367205,0.03117249,0.045977365,0.030733828,0.020740535,-0.022536311,-0.008108411,0.034599543,0.034133464,0.021384822,0.014941959,0.06952809,0.015915243,-0.06645744,0.013619116,0.03262556,-0.019835792,-0.07342122,0.029582337,0.027155982,-0.009102257,0.044442046,-0.0043660677,0.017066732,0.043290555,0.009568336,-0.0240168,-0.042084232,0.04233098,0.039150674,-0.050418828,-0.039424837,-0.067225106,-0.03547687,0.013625969,0.0058568367,-0.01416059,0.017944058,-0.017272355,0.058890507,0.045730617,0.020809077,-0.038657177,0.0029318454,-0.009561483,-0.031748235,0.01786181,0.07177623,-0.00018067005,-0.008972029,0.050363995,0.017053025,0.043263137,0.025757743,0.0022926996,-0.02154932,-0.0039890916,-0.07325672,0.036655776,0.022769352,0.019328589,-0.04087791,-0.042276148,-0.022536311,-0.05664236,0.00083106075,-0.013338097,-0.023907134,0.053297553,-0.0058465553,-0.009321589,0.00036219685,0.04117949,0.03207723,-0.031145073,-0.016943358,0.03676544,-0.05516187,-0.010377122,-0.04287931,-0.008732135,0.026497986,0.028814675,-0.02131628,-0.014859709,-0.029034007,0.037450854,-0.010000146,-0.061686985,0.00014254406,-0.0038588636,0.031282157,0.017423145,-0.02840343,-0.02486671,-0.020822784,0.027759144,-0.0005680343,-0.0063708946,0.032762643,-0.010747244,0.014215423,-0.032351397,-0.01786181,-0.024784459,0.014654086,-0.04866418,0.005555256,0.017258648,-0.006573091,-0.02278306,0.035586536,-0.030130666,0.019109257,0.023907134,0.01177536,-0.0124539165,0.017615061,-0.003882853,0.010445663,0.014229131,-0.02908884,0.04556612,0.057574518,-0.02178236,0.0016038616,-0.013728782,-0.037807267,-0.01277606,-0.022577437,0.056916524,-0.014763752,0.034352798,0.018752843,0.0075052497,-0.028033307,-0.0018009172,0.00632977,-0.011213323,0.019506795,-0.056148864,0.011069386,0.06377064,-0.03841043,-0.020301873,0.016285364,-0.00025338784,-0.043372806,0.009047424,0.024880417,0.038821675,-0.023660386,0.04455171,0.0016081454,0.017409438,-0.0022995537,-0.057848684,-0.0029318454,-0.0066142157,0.040302165,0.02455142,-0.024236131,0.044853292,-0.026004491,0.04800618,0.015723327,-0.0014453604,-0.029911334,-0.025730327,-0.06980225,0.021754943,0.004904115,0.013673948,0.026415737,-0.031665985,0.04211165,-0.012577291,0.0108294925,0.06294814,-0.011035116,0.040000584,-0.044085633,-0.041426238,0.02308464,-0.01092545,0.049815666,0.012974829,0.024428045,0.015572537,-0.0027759143,0.03070641,0.012344251,-0.045374203,-0.012467625,0.04710144,0.0051063113,-0.036984775,-0.0036566674,0.016984483,0.00030115244,-0.0018814531,-0.0094244005,-0.032543313,-0.02016479,-0.038766842,0.07534037,-0.017053025,-0.00059073855,0.009417546,0.041892316,0.0035195851,0.014325089,0.02655282,0.016545821,-0.03232398,0.023948258,-0.034736626,0.028348597,0.020247038,0.0071831066,0.0017992037,0.024606252,-0.022330688,0.014517004,0.0072927726,-0.00063271995,-0.05055591,-0.03147407,0.0006258659,0.019068133,-0.019671295,0.01893105,-0.007875372,0.0006040184,-0.005318789,-0.03676544,0.08011083,0.110872075,-0.0023595272,0.013845301,-0.00765604,0.00069869077,-0.01454442,0.012474479,0.024990084,-0.016669193,-0.004321516,0.008958321,-0.042413227,-0.022563728,-0.0056752027,-0.044880707,0.005260529,-0.05927434,-0.0011480633,-0.0059288046,0.033639967,-0.009732835,0.00388628,0.00016867535,-0.02294756,-0.09052908,-0.022508895,0.00823864,-0.023235431,0.0018934477,-0.06651228,-0.003379076,0.013646532,0.0381911,-0.012858309,0.025510995,-0.015174998,0.0029866782,-0.021028407,-0.05348947,0.0040439246,0.046854693,-0.015408038,-0.007285918,-0.022207314,-0.013269556,0.0009484374,-0.02032929,0.0008396284,0.042303562,0.005778014,-0.0002825178,-0.012412792,-0.044195298,0.00203053,-0.023043515,-0.018876217,0.0029129966,-0.01978096,0.011131073,-0.0013811031,0.02955492,-0.016957067,-0.0009672862,0.038108848,0.0017178112,-0.033831883,-0.020247038,0.028074432,0.000047362966,0.049541503,0.017491687,0.00008187448,-0.03237881,-0.012303126,-0.0056066616,-0.02917109,-0.01189188,-0.0069226506,-0.03117249,0.0022241585,0.040576328,-0.015915243,-0.040768243,-0.0050514787,-0.0054901415,0.0023989384,0.029280756,-0.027512396,0.08148165,0.0015001931,-0.021604152,-0.005113166,-0.035805866,0.04441463,-0.017368313,-0.018327888,-0.03731377,-0.0031049117,0.043153472,-0.040823076,-0.007518958,0.008732135,-0.02955492,-0.0048595634,0.01454442,0.011062533,-0.008375722,0.007978183,0.022179898,-0.022673395,-0.030020999,0.0024914688,0.009828793,-0.01854722,-0.017176399,-0.028101848,0.004448317,0.005239967,-0.03632678,0.027416438,0.01516129,0.0054901415,-0.021110658,-0.010644432,0.0022926996,0.004369495,0.013187307,0.018423846,-0.044633962,-0.023345096,-0.00009253048,-0.060754824,-0.0057129003,0.006024762,-0.016175698,-0.01639503,0.013454617,0.0145032955,0.024428045,-0.05949367,0.014037216,-0.016353905,-0.007985038,-0.0093147345,-0.03109024,0.021741236,0.00059073855,-0.032899726,0.006017908,-0.010699265,0.0027279356,0.01646357,-0.0057814415,0.009527212,-0.010699265,-0.020740535,-0.030295163,0.008615616,-0.0043592136,0.06958292,0.04534679,0.018341597,0.031803068,-0.0039034153,0.015915243,-0.037916932,0.00064043084,0.024208715,-0.0021162063,0.055682786,0.012179753,0.000049719067,0.021206614,-0.0143936295,0.0014513576,0.033091642,0.029445253,-0.038383015,0.018972175,-0.0006207253,0.007950767,0.02238552,0.042056814,-0.03432538,-0.016943358,0.023578137,0.061851483,0.04701919,0.0081152655,0.030898325,0.01162457,0.029719418,0.0117273815,0.0012825752,0.0034390495,-0.008053578,0.01624424,-0.04115207,-0.002095644,0.02346847,-0.032981973,0.011357259,-0.022974975,-0.004078195,0.008745844,0.002781055,-0.01839643,0.004067914,0.011480633,0.01716269,-0.0019054424,0.041645568,0.022865308,0.0011626283,-0.053818468,-0.009636878,-0.0015575964,-0.0011951854,-0.004181007,-0.011761651,-0.043838885,0.023756344,-0.008540221,0.044195298,0.002703946,-0.008958321,-0.0053599137,-0.03317389,-0.01015779,0.00550385,0.03147407,-0.006641632,0.012467625,0.034270547,-0.027238231,0.0092187775,0.01939713,-0.0067273085,-0.0069672023,0.001268867,0.001130928,0.00019041573,-0.0071693985,0.00053676247,0.024633668,-0.0071831066,0.006648486,0.035915535,0.006775287,-0.0480336,0.023838593,-0.012981683,-0.027416438,-0.0043489323,-0.0006862677,0.023194306,0.011131073,0.012179753,-0.0044106194,0.018135974,0.027306773,0.0012174612,0.032652978,-0.03980867,-0.00632977,-0.0089994455,0.010377122,-0.06212565,0.04117949,-0.00989048,0.010130374,0.024496587,0.003418487,0.008135828,-0.0020785087,0.022179898,0.005024062,0.0036703756,0.016490987,-0.010877471,0.010603307,-0.012440208,-0.010555329,0.028650178,0.019657586,0.035120457,-0.018464971,-0.013015954,0.0047670333,0.02631978,-0.035339788,-0.026525404,-0.011302426,-0.009993291,-0.002566864,-0.0220154,-0.01224144,-0.013632824,-0.03262556,-0.0065422473,0.005836274,-0.0037457708,0.024894126,-0.0013673948,0.0037423437,-0.0022755642,0.0023972248,0.004146736,-0.037478272,0.007662894,-0.004372922,0.012762352,-0.09387388,-0.008266056,0.012111211,-0.0067341626,0.000061365696,-0.009335297,0.010884326,0.041618153,-0.0090063,-0.017423145,-0.0046539404,-0.015380622,-0.025977075,-0.018835092,0.055682786,-0.015366914,0.03934259,0.02747127,-0.014873417,-0.023303973,-0.0050411974,-0.009054279,0.014832293,0.060590327,-0.007985038,0.0010906601,-0.056313362,0.0012414505,0.05741002,0.0003013666,0.004931532,-0.046827275,-0.009211923,-0.013653386,-0.010054979,0.0036703756,0.0037149272,0.026950357,0.00394454,-0.050912324,0.03130957,0.0062509477,-0.018177098,0.012529312,-0.06881526,0.009026862,0.0060830223,-0.00013911701,-0.0044860146,0.009876772,0.0067889956,-0.060699992,0.0048629907,-0.014571836,0.026031908,-0.0016741162,-0.012385376,0.033119056,-0.015970076,-0.018766552,-0.0014410765,-0.00406106,-0.0081152655,-0.006703319,0.04032958,-0.005274237,-0.008135828,-0.012440208,0.016943358,0.01089118,0.019698711,0.06026133,0.026223823,0.025826285,0.067225106,0.03646386,-0.012584145,-0.024345797,-0.0026662485,0.013358659,0.040905327,0.04978825,0.0052913725,0.027306773,0.01207694,-0.003372222,0.015106457,0.002124774,-0.0079096425,-0.008163244,0.01732719,-0.0014522144,0.018999591,0.017793268,0.0064325817,0.015805576,-0.026073033,0.021658985,0.021425946,-0.0037903225,0.041042406,-0.015558829,0.0013099917,-0.047923934,-0.05409263,0.02908884,-0.0037080732,-0.0021847475,0.02647057,0.04071341,-0.02308464,0.015983783,-0.0013399784,0.018273056,-0.0077931224,-0.01462667,0.0019551348,-0.008732135,0.00382802,-0.011206469,0.0029575482,0.03317389,-0.027676893,-0.007518958,-0.04309864,0.023509596,0.025223123,-0.008663595,0.022042817,-0.007923351,-0.012296272,-0.0034356224,-0.013070786,0.026415737,0.0034887416,-0.010980283,-0.001333981,-0.017382022,-0.057519685,0.017450562,0.032844894,0.0001321558,-0.006322916,-0.011802777,0.004026789,0.016340196,0.016066033,0.007340751,0.01976725,-0.006333197,-0.0027707738,-0.051378403,-0.0008370581,0.004623097,-0.016943358,0.022467772,0.00450315,-0.017642478,0.007991891,0.023989383,-0.007135128,0.022221023,0.003824593,-0.012337397,-0.025305372,-0.00047464707,-0.022508895,0.035805866,-0.020836493,-0.009170799,-0.005911669,-0.0011754797,-0.021754943,-0.06212565,0.0041844337,0.037533104,0.025099749,0.0029421265,0.0029626887,-0.024688503,-0.0055998075,0.009561483,0.005897961,0.009184507,0.03355772,0.0034818875,0.024359506,0.011631424,-0.04038441,0.020109957,0.035065625,0.04830776,-0.027389022,-0.005963075,-0.007327043,-0.0049623754,0.016847402,0.01909555,-0.014325089,-0.021042116,0.036847692,0.033365805,-0.00036476713,-0.01354372,0.04257773,0.0069877645,0.007327043,0.005634078,0.030185498,0.012810331,-0.020000292,0.028650178,-0.06311264,0.0129268505,0.00382802,0.0065319664,-0.06393513,-0.020891326,0.0027930497,-0.01265954,0.01769731,-0.025881117,0.036134865,0.026114156,-0.023372512,0.0050549055,-0.03756052,0.013996092,-0.026607653,0.018423846,0.020342996,-0.0024212142,0.009047424,-0.00078136846,0.006717027,0.005390757,0.03662836,0.001127501,0.04194715,-0.014763752,-0.007704019,0.038108848,0.031748235,-0.018259348,0.0150242075,0.010233185,0.013022808,-0.0011180766,-0.017135274,0.02131628,0.010383976,-0.0047224816,0.022536311,0.021234032,0.0029267047,-0.02977425,0.013070786,0.036600944,0.0024452035,0.0123579595,0.019479379,-0.016504696,0.017135274,0.0034681794,-0.024633668,0.007861664,-0.053160474,0.035997782,-0.011878172,0.008896634,0.038547512,0.031282157,-0.009849356,0.02977425,-0.004705346,0.03457213,0.0016629783,0.03100799,0.01354372,-0.03188532,-0.0030912033,0.02069941,-0.048225515,-0.013482033,0.022344397,-0.04096016,-0.020685703,-0.026374614,-0.0016269942,-0.00016664053,0.025908533,0.0019499941,0.023441054,-0.039068423,-0.015832992,-0.008800676,-0.037971765,0.009691711,-0.02078166,0.03457213,0.002921564,0.038026597,-0.03237881,-0.00980823,-0.0002857307,0.00016589087,-0.0057917223,0.007327043,0.0046779294,0.0037286356,-0.025072332,-0.040685993,0.02308464,0.024962667,0.025181998,0.034352798,0.00022661399,-0.013646532,-0.000041526266,0.03484629,-0.008766406,-0.0033293837,0.021261448,-0.021617861,0.0006648486,0.014174298,-0.00382802,-0.0040542055,-0.0010358273,-0.004948667,0.009184507,-0.028348597,0.003499023,-0.01569591,0.002004827,0.026347196,-0.022536311,0.022591144,0.029993583,0.011439509,-0.043372806,0.014119466,0.0074161463,-0.0074298545,0.0035607098,-0.0108294925,0.004489442,-0.00094929413,-0.022563728,-0.021453362,0.104456626,-0.03109024,0.022467772,0.0002004827,-0.0021590444,-0.0006061603,-0.013146182,0.030980574,-0.025826285,0.0075600827,-0.016833693,0.00021890312,-0.021768652,-0.026333489,0.02732048,0.02016479,0.010760952,0.0072242315,0.025908533,0.005568964,-0.0012423074,-0.008814385,0.011878172,-0.01762877,-0.002657681,-0.027813977,-0.013317535,0.020918742,0.011994692,0.031693403,-0.0018865936,0.017902933,0.007375022,-0.022070233,-0.016011199,-0.008759552,0.00037354897,-0.04830776,-0.0025463016,0.007697165,-0.0059082424,-0.000036251815,0.022275856,-0.015970076,-0.030843493,0.008314035,-0.0033465188,-0.012193461,-0.005455871,0.0053976113,0.026758444,0.032269146,0.0051234467,-0.019602753,0.01976725,-0.029993583,0.012645832,0.020534912,0.012460771,-0.007758852,-0.040274747,0.012803476,-0.015037916,0.0066930377,0.041426238,0.046580527,-0.011850755,-0.0075395205,-0.006555956,0.01771102,0.003985665,0.0017203814,0.018423846,-0.0012243153,0.0012388803,0.02238552,-0.0071556903,-0.037697602,0.0049795103,0.015668495,-0.0007963618,0.014832293,0.013550574,0.029034007,-0.046059616,0.039918333,0.004441463,-0.009280465,0.011172199,-0.036655776,0.026511695,0.030596744,0.009342151,-0.030514495,-0.00031571742,-0.020918742,0.016422447,-0.009993291,-0.01924634,-0.017642478,-0.0045511285,0.022988683,0.00020262461,-0.015832992,-0.0008850369,0.018876217,0.01716269,-0.0061138654,-0.0045271395,-0.018972175,-0.04433238,-0.043756634,0.021576736,-0.012549874,-0.013886426,-0.030185498,0.023276556,-0.04117949,-0.012961121,0.025744036,-0.016669193,0.013536866,0.009684857,0.014681502,-0.029527504,0.021234032,0.020685703,0.03679286,0.01946567,0.059055008,-0.055765033,-0.017560229,0.008930905,-0.007662894,-0.0028478825,0.0022138774,-0.009013154,-0.011487488,0.020137373,-0.014558128,0.036655776,-0.013427201,0.012070087,0.013859009,-0.008204369,0.029829085,0.013639677,-0.03424313,-0.010294872,-0.00027909077,0.015051625,0.0029918188,-0.010349705,-0.038218513,0.0015653073,-0.019287463,-0.008437409,-0.03262556,0.010144082,0.01039083,-0.016765151,-0.02139853,-0.024373213,0.007820539,-0.011549175,0.0043660677,-0.025744036,-0.0036635215,-0.0054387357,-0.016353905,-0.039068423,-0.0036635215,0.009335297,0.015408038,0.0021984556,-0.03627195,-0.02063087,0.0035846992,-0.024647377,0.0072242315,-0.00074367085,0.0037046461,0.028184097,0.032598145,0.0072996267,0.0535443,-0.045456454,-0.020905035,-0.006442863,-0.007964475,0.010116666,0.011220177,0.006144709,-0.031967565,-0.00965744,0.0038417284,-0.00927361,0.015174998,0.0073613133,0.0004810728,-0.010918597,-0.006970629,0.009492941,-0.005647786,0.034462463,-0.018793968,-0.025099749,-0.0028444554,0.017436855,0.016120866,0.00250175,0.042276148,0.02363297,0.008944613,0.012590999,0.037204105,0.027293064,0.02508604,-0.0072242315,0.0050549055,-0.036518697,-0.014407338,0.025127165,-0.012152336,-0.014996791,0.0090063,0.020713119,0.02308464,0.01224144,-0.036107447,0.0123579595,0.035010792,-0.01227571,-0.04285189,-0.0035470016,-0.03440763,-0.038657177,0.0013862436,-0.0021093523,-0.01065814,-0.0043112347,0.02748498,-0.014667794,-0.019191507,-0.0074161463,0.02678586,0.016765151,0.029582337,-0.044304963,0.008128974,0.0062509477,0.0677186,0.02238552,-0.00066913245,0.007916496,0.0009809944,-0.0021179197,-0.008026162,0.010445663,0.013591699,0.022289563,-0.008752698,0.026539112,-0.0055381204,-0.028513094,-0.02063087,0.00044851578,0.018588345,-0.0017563655,0.014887125,-0.015120165,0.021919442,-0.027128564,0.0047464706,-0.0074435626,-0.018286765,-0.010281164,-0.00194314,0.043263137,-0.02316689,-0.020342996,-0.0013005673,0.008629324,0.00027287923,0.0077245813,0.018615762,0.019479379,-0.02016479,-0.025579536,0.01607974,-0.009520358,0.009465525,0.0068335473,-0.021535613,0.046224114,-0.014105757,-0.001083806,-0.009499796,0.016436154,-0.021905733,0.014791168,-0.0074298545,0.015874118,-0.014037216,-0.0059253774,0.04477104,-0.008910342,-0.026196405,-0.023660386,0.009335297,-0.012481334,0.010178353,-0.009486088,0.037067022,0.00850595,0.014092049,0.013118765,0.013756198,0.020247038,-0.002556583,0.006408592,-0.024853,-0.017752143,0.025757743,0.010116666,-0.013646532,0.005952794,0.0044311816,0.0005024919,-0.0048698448,-0.014297673,-0.028430846,0.0056786295,0.028293764,0.036984775,0.016970774,-0.007594353,-0.0017769278,0.03070641,-0.02623753,-0.022906434,-0.01112422,-0.0075600827,-0.01739573,-0.0140098,0.024578836,-0.019685002,0.017806977,-0.006340051,-0.04150849,-0.02116549,0.0038383012,0.009259902,-0.0108294925,0.04287931,0.016120866,0.012940559,-0.0013793895,0.027361605,-0.03717669,0.004691638,-0.054668378,0.023907134,0.011960421,-0.015832992,0.031912733,0.0027142274,-0.014736336,0.011665694,0.040905327,-0.0147089185,0.017793268,-0.016600654,0.013475179,-0.005997346,-0.023153182,-0.004749898,-0.02610045,0.021878317,-0.021028407,0.011747943,0.00012198173,-0.002722795,0.01661436,-0.017176399,0.0064325817,-0.012481334,-0.013817885,0.022755643]},{"id":"interface-EmbedAuthorOptions","type":"interface","source":"main","text":"Interface: EmbedAuthorOptions\nDescription: Author field for an embed.\nProperties: iconURL: string, name: string, url: string","meta":{"url":"/docs/typedefs/EmbedAuthorOptions"},"embedding":[-0.0023585623,-0.03097244,-0.03189579,-0.003778718,0.0050106905,-0.07475137,0.051506985,-0.01359937,-0.025954222,0.03797787,0.014181484,-0.017453361,0.023324676,-0.010297383,0.0055401125,-0.0073416526,-0.024508975,0.015395892,0.011301027,0.009775488,-0.014934216,-0.020875785,0.00068435946,0.055481415,-0.032538123,0.024589267,-0.0153356735,0.019199701,0.027319178,-0.0035579163,0.04319682,-0.011752666,0.031353824,0.009860798,-0.03153448,0.009158247,0.07663822,0.016690591,0.011270917,-0.0011265898,-0.009554687,0.0096951965,-0.010548294,0.040045377,-0.033381183,0.040667634,0.008149586,-0.0030786765,0.052871943,0.014261775,-0.035910364,-0.017102085,-0.019310102,0.009624941,-0.049620137,0.0042679943,-0.018426895,0.026516262,-0.027439615,-0.005020727,0.0085510425,-0.017011758,-0.010949751,-0.009168284,0.01807562,0.017162304,-0.06090109,0.04817489,-0.029888505,-0.0048927623,0.035749782,-0.016590228,0.0081696585,0.04279536,-0.0075323447,0.021277243,-0.035107452,-0.009680142,0.0062727723,-0.02390679,0.0048325434,0.022883072,-0.06286823,-0.047371976,-0.01796522,0.025773566,-0.030450545,-0.042955942,-0.024488902,-0.05580258,-0.038479693,-0.04147055,-0.053393837,-0.092656374,-0.017182378,0.011441536,0.021056442,-0.030450545,-0.011732593,0.047050808,0.025131235,-0.031454187,-0.07422948,-0.0056404765,-0.016339317,-0.027258959,0.0113210995,0.007948857,0.023746205,-0.0026395826,-0.057528846,0.032397613,-0.00055859034,0.0055852765,0.012545545,-0.017383106,0.036291752,0.039965086,-0.014171447,-0.043397546,-0.014030937,-0.029948723,0.07382802,-0.0012376179,0.017644053,0.0005902679,-0.05447777,-0.0034174062,-0.052871943,-0.07683895,0.005670586,0.030671347,-0.04056727,-0.0035227889,-0.015676912,-0.027379395,-0.007823401,-0.00945934,-0.0115117915,-0.011531864,0.0028177293,-0.037094664,0.042835508,-0.03615124,0.008159622,0.04733183,-0.0008863427,0.020484366,0.003643226,0.06507625,0.0022055067,-0.017071977,-0.03125346,-0.007948857,-0.040868364,-0.03426439,0.034043588,-0.010548294,-0.026596554,-0.020163199,0.053955875,-0.025352037,0.011361245,0.008505879,-0.041510697,0.037014373,0.017393142,0.0058261505,-0.031594697,0.02908559,0.008224859,-0.04279536,-0.034705993,0.0254524,0.0041751573,-0.016971612,0.04412017,-0.030249815,0.0041626114,0.07238277,0.039945014,0.02691772,0.017714309,-0.03229725,-0.025813712,0.03657277,-0.012314706,-0.0015581566,0.04532454,-0.011802848,-0.009905961,-0.0014690832,-0.02216045,-0.0131376935,0.023625769,0.011953395,0.0016371935,-0.013258131,-0.019129446,-0.08647393,0.04532454,0.03530818,0.05279165,0.020042762,0.008214822,0.026094733,-0.01551633,-0.005319311,0.0016560118,0.044280753,0.0443209,-0.028925007,0.053674858,-0.023244385,-0.0016146116,0.0020875786,0.020675058,-0.00402712,-0.0025530183,-0.009333885,-0.010568366,0.067565285,0.0509048,-0.043598276,0.03350162,-0.018175984,-0.031494334,-0.028242528,-0.013990791,0.04020596,-0.02159841,0.024428684,-0.0027775834,-0.0077380915,-0.003108786,0.020915931,0.0021565792,0.010618549,-0.017102085,-0.018145876,-0.0008505879,-0.020153163,-0.014843888,0.016168697,-0.03049069,-0.00580106,0.018768134,-0.028362967,-0.029426828,0.0035855165,0.044080023,0.018687842,0.04147055,-0.005504985,0.022762636,-0.030791784,-0.05692666,0.012394997,0.0693317,-0.045846436,0.027640343,-0.050864656,0.01765409,-0.0039091916,0.0005378902,-0.042153027,0.00034907978,0.033260748,-0.0024526538,-0.025291817,0.023645842,-0.019982543,0.016439682,0.038981516,-0.01565684,-0.004880217,0.0001706194,0.02601444,-0.08125498,0.020434182,-0.011090261,0.0025894004,-0.011551937,0.058773365,-0.040868364,-0.005274147,0.0020900876,0.0027575106,0.018898608,0.01598804,0.026656773,-0.0007383053,0.07703968,-0.0073667434,-0.0070706685,0.010879496,0.05439748,0.01985207,0.05692666,-0.0034174062,0.052189466,-0.02334475,0.04034647,-0.013840244,-0.014934216,0.008907337,0.055601854,0.03665306,0.02916588,0.0004030256,0.00520891,-0.014181484,-0.045685854,0.00036507534,-0.024368465,0.0570471,0.025833786,0.0050282544,-0.017443325,0.031835575,0.0499413,0.033943225,-0.042112883,-0.060178466,-0.017925074,-0.030892149,-0.0066340836,0.03550891,0.04636833,0.019831996,0.005876333,-0.023364821,0.010066545,0.014422358,0.0018467042,-0.010869459,-0.014321993,0.012334779,0.0031388951,0.031353824,0.0131376935,-0.027780853,-0.009991271,0.0075473995,0.0033471512,-0.018376714,-0.031293605,0.00216787,-0.010538257,-0.027218813,-0.018276349,0.015165054,-0.05026247,-0.021297315,-0.03663299,-0.0292261,0.00594157,-0.07226233,-0.078003176,-0.0069000493,-0.01601815,0.017613944,0.03251805,0.0020712693,-0.039603774,-0.045926727,-0.010829314,0.014422358,-0.03488665,-0.043116525,-0.002930639,0.014944253,-0.007838456,0.022702416,0.039001588,0.04957999,0.0292261,-0.026395826,-0.044160314,-0.03217681,0.04060742,0.02089586,-0.04552527,-0.038078237,0.03251805,-0.042032592,0.021738918,-0.01799533,-0.020203345,0.0050633815,0.006619029,0.03243776,-0.016590228,-0.029888505,0.0280418,0.029487047,0.011030043,0.014572904,-0.009454322,0.0016259025,-0.0064735007,0.0133283865,0.04139026,0.014693341,-0.00066679565,-0.045685854,0.038620204,-0.00044223043,0.026456043,-0.0075473995,-0.015225273,-0.012144087,0.029185954,-0.009228502,0.045284398,-0.004511378,0.010181963,-0.077200264,0.012716164,0.039061807,-0.046167605,-0.006132262,-0.027921364,-0.037777144,0.039985158,-0.056725934,0.05214932,-0.032598343,-0.0029632575,-0.013278204,-0.0061673895,0.041912153,0.03285929,0.022622125,-0.0054497845,-0.056565348,0.03097244,-0.004147557,-0.0033019872,0.030049087,-0.024669558,0.020534547,0.01971156,0.00070317776,-0.0076578003,-0.025231598,0.026797283,-0.00029168391,-0.016720701,-0.011842994,-0.0127262,0.007582527,-0.007928784,0.049178533,0.019219773,0.02446883,0.00017108987,0.0072713974,-0.00084682426,0.0025103635,-0.005510003,-0.014101191,-0.020193309,0.034003444,0.023184165,-0.010036435,-0.03593044,0.042353757,0.009103047,-0.024789995,0.0088320635,0.0068649217,-0.011893176,-0.0014540285,-0.026656773,-0.010738986,-0.04299609,-0.09683153,-0.03316038,0.007878602,0.028583769,0.01982196,-0.014683305,-0.058612783,0.009609886,0.07515283,0.01664041,0.017413216,0.018778171,-0.029406756,0.025151307,-0.009419194,-0.0006987868,-0.005424693,0.0177946,-0.049058095,-0.04383915,-0.022642199,0.005555167,-0.0048927623,0.013067439,-0.02607466,-0.01911941,0.011441536,0.002409999,-0.02201994,-0.013850281,-0.023043655,-0.038660347,0.028684132,-0.008410533,-0.02615495,-0.041069094,0.0011523082,-0.009845743,0.03370235,-0.052069027,0.036131166,-0.017463397,-0.006659175,0.0042328667,0.02928632,0.017603908,-0.0043708677,0.03595051,-0.0013900463,-0.06872951,-0.044481482,0.011030043,-0.0008361605,-0.04082822,-0.030289963,-0.035047233,0.00085184246,-0.023224311,0.0035202797,0.006548774,-0.0009973708,0.055762436,-0.037716925,-0.002995876,0.008059258,0.028704206,0.01709205,-0.054839082,0.017192414,-0.017112123,0.024227954,0.0070405593,0.017754454,-0.016459754,0.002007287,0.050382905,-0.05006174,0.017674163,0.02719874,0.011180589,0.020956077,-0.012806492,-0.014040973,0.01965134,-0.007371762,-0.018366678,0.020404072,-0.0035177707,0.00977047,0.013348459,0.013268167,0.009353958,-0.019109374,-0.0035804983,0.015887678,0.010688804,0.07439006,0.010377674,0.025612984,0.007908711,0.011732593,-0.009198393,-0.018798243,-0.0056605497,-0.00062445446,-0.026275387,-0.0128466375,0.011963431,-0.009353958,0.0064584464,-0.01430192,0.01717234,0.042955942,0.024087446,0.038720567,0.0134187145,0.010151855,0.006699321,-0.0013059912,0.04042676,0.0018968863,-0.010498111,0.020875785,0.011642265,0.0016121024,-0.045966875,0.017975256,0.031614773,0.02252176,0.026676845,-0.0022983437,-0.06443392,0.010186982,-0.0038088271,-0.01072895,0.0044837776,-0.027640343,-0.022642199,0.00650361,0.0012438907,0.0058211326,-0.040647563,-0.0040647564,-0.02272249,0.017122159,0.0005121718,0.038479693,-0.06660178,0.010478038,-0.0018065583,-0.019239847,0.020614838,0.005444766,0.036873862,0.041089166,0.0018253766,-0.017503543,0.020524511,-0.03663299,0.024348393,0.00240749,-0.028704206,-0.003944319,0.0007019232,0.013940609,0.018727988,0.034946866,-0.045083668,0.0070455777,-0.02509109,-0.0023522896,-0.030631201,-0.006408264,-0.011280953,-0.017533652,0.020875785,0.007728055,0.010658694,0.015285491,0.0029030389,0.030169524,-0.040808145,0.0120838685,0.021417754,0.01199354,0.011893176,-0.038901225,0.02635568,0.009384067,-0.0043181763,0.00032210685,-0.051828153,0.0032919508,-0.009494468,0.023304602,0.0034098788,0.00031881363,0.019109374,-0.06575873,0.022080157,-0.027158594,0.0031514408,0.035749782,-0.018306458,0.016600264,0.017182378,-0.019611195,0.021638555,-0.024549121,0.013027294,0.014201556,-0.015546438,-0.0081696585,-0.002998385,0.0141915195,0.035187744,-0.013087512,0.011250844,0.089203835,-0.012555581,0.0012231906,0.01464316,-0.01458294,0.009755415,0.00329446,-0.023886716,0.00013666802,0.009790543,0.019079264,-0.018276349,-0.019109374,0.013017257,-0.018366678,-0.048576348,0.013749916,-0.010357602,0.00447625,0.009444286,-0.015646802,0.0070004137,0.01072895,0.021196952,0.015957933,0.005740841,0.0070355413,-0.03831911,0.023465186,-0.007843474,0.008134531,0.021297315,0.027439615,-0.009278685,-0.00032869325,0.004079811,-0.038499765,-0.019079264,0.014030937,-0.015104835,0.05018218,0.011491719,0.024227954,0.010809241,0.036612917,0.021899503,0.040507052,0.012736237,0.023967007,-0.007843474,0.024789995,-0.021758992,0.01852726,0.014723451,0.0074119074,-0.03671328,0.002122706,-0.025894003,0.01785482,-0.014452467,0.017031832,0.052751504,-0.034364756,-0.022963364,0.032558195,-0.0052189464,0.006438373,-0.02950712,-0.0076427455,-0.011160516,-0.018055547,0.024107518,-0.01922981,0.006478519,0.062346336,0.009915998,-0.031514406,-0.03340126,-0.009298758,0.03125346,-0.051506985,-0.009399122,-0.0039292644,-0.03805816,0.00080291484,0.0021477973,-0.015436037,-0.011812884,-0.03314031,0.029065518,-0.02258198,-0.020454256,-0.033461474,0.0109397145,-0.027740708,-0.008942464,0.013388605,0.009424212,-0.017975256,0.01461305,0.006438373,-0.014884033,-0.039322753,-0.044361044,0.038780786,0.012716164,-0.031935938,-0.004147557,0.026235241,-0.0022619616,0.0010732713,-0.024669558,-0.0058913874,-0.017674163,0.020123053,-0.03223703,0.021638555,0.00013917714,0.004980581,0.009705233,0.028282674,0.021156806,0.011371281,-0.013499006,0.011070188,0.04391944,0.0023999626,-0.010849386,-0.013830208,0.0016961576,0.008144568,0.0009070428,-0.014964325,0.006036916,-0.0056153857,0.015787313,0.061985023,-0.0019558503,-0.0028478384,-0.007933802,-0.025010796,0.006468483,0.017724345,-0.027078303,-0.013890427,0.012234415,-0.004566578,-0.010869459,0.022140376,0.0027700562,-0.026817355,-0.0043608313,-0.009634978,0.006915104,0.0030034033,0.008922391,0.026034513,-0.005299238,-0.004556542,0.009569741,-0.0049981447,-0.036271676,-0.019811923,0.02021338,-0.000053906635,-0.005600331,0.03432461,-0.0074771442,0.0014339557,-0.024187809,-0.023665914,-0.0057508773,0.026656773,0.016008114,0.049419407,0.040667634,-0.015807386,0.0013273186,0.00021327425,-0.018286385,0.042353757,-0.007948857,0.018587478,-0.017894965,0.06419304,0.038800858,-0.012475289,-0.011351208,-0.013268167,-0.019781815,0.015857568,0.015967969,0.038559984,-0.008014094,0.036813647,-0.002930639,0.004912835,0.015797349,-0.000029658451,0.022541834,0.02916588,-0.007989002,0.013378568,-0.00054855394,-0.0001933582,-0.009072938,-0.009173302,-0.011441536,-0.0109397145,0.023304602,0.014904107,0.048335474,-0.026837429,0.0050859638,-0.028623914,0.014141337,0.00005743507,0.0071609966,0.043799005,0.012244451,0.03452534,0.015666876,0.013719807,-0.0075022355,0.0062828087,-0.037797216,0.015978005,-0.017383106,0.016570155,-0.005535094,-0.032778997,-0.005595313,-0.010146836,-0.003979447,0.011772739,-0.0419523,0.017754454,-0.011471646,0.035247963,-0.005896406,-0.0805725,-0.025472473,0.012967074,0.0120838685,-0.018135838,-0.011551937,-0.018888572,0.026195096,-0.07238277,0.018758098,0.0254524,-0.037556343,0.032899436,0.007697946,-0.057087246,-0.0067093573,0.004247921,0.018968863,-0.029547267,-0.015596621,0.0048300344,0.052912086,0.0040346473,-0.0011322354,0.012154123,-0.0031163131,0.022361178,-0.04628804,-0.021277243,-0.0024263083,0.012475289,0.0054648393,0.012344816,0.052751504,0.0141915195,0.00034343428,0.034103807,0.035328254,-0.0056053493,0.002432581,0.040868364,-0.00026533825,-0.0139004635,0.0010406529,-0.026134878,0.0009772979,0.04781358,-0.035348326,0.013850281,-0.03370235,-0.01097986,-0.014723451,-0.015757203,0.011592083,-0.015345709,-0.023364821,-0.04319682,0.031333752,0.018296422,-0.007090742,-0.006016843,-0.0014904107,0.021016296,-0.0032216958,-0.011461609,-0.0048551257,-0.0147635965,-0.043036234,-0.013649552,0.009298758,-0.0045766146,0.0026094732,0.002835293,-0.0048425803,0.009343921,0.028081946,0.03460563,0.048215035,-0.033260748,0.029587412,-0.03229725,-0.03221696,-0.0048325434,0.021558262,0.009173302,0.03237754,-0.02195972,-0.01447254,0.00830515,0.000789742,0.004566578,0.010468002,0.009624941,-0.0012947002,0.013288241,-0.045685854,0.0369943,0.005861278,-0.009479413,-0.02077542,0.027299104,-0.013228022,0.030390326,0.0103676375,0.018898608,-0.0017312851,-0.015185127,-0.019972507,0.035067305,-0.005735823,-0.0008957519,-0.013659589,-0.0026897646,-0.0068849945,0.024448756,-0.007888638,-0.010628585,-0.00650361,-0.0017074486,-0.005765932,-0.03209652,0.010252219,0.018276349,0.01740318,0.01388039,-0.01880828,0.0015180109,-0.009479413,-0.0042253393,0.017332925,0.024810068,0.04034647,0.04179172,0.01894879,0.012415071,0.034906723,-0.016911393,0.03097244,-0.004340758,0.029045444,0.009394104,0.00394181,-0.05307267,0.0078033283,-0.008084348,0.015546438,-0.026676845,0.0070957597,-0.0017350487,0.015696986,-0.00858617,0.005364475,0.0075473995,0.025372108,0.0031690046,-0.01562673,0.0127563095,0.008746753,0.008290095,-0.012676018,0.004074793,0.04512381,0.02615495,0.00931883,-0.007843474,0.017684199,-0.0116121555,0.024448756,0.021136733,0.0007012959,0.011692448,-0.009082974,-0.018677806,-0.04299609,-0.0033923152,-0.03894137,0.041028947,0.013780026,0.028864788,-0.04901795,-0.01303733,0.0011146716,-0.0035328253,-0.008882245,-0.0036984265,0.04420046,0.017925074,-0.018958826,-0.0023610715,-0.024749849,-0.001326064,0.0023723624,0.0061874622,-0.034304537,0.0044210497,-0.0014515194,0.0009045337,0.008857154,-0.04524425,0.035288107,-0.03657277,0.0189789,0.008184713,0.039864723,0.0068297945,0.026275387,0.015064689,0.0019621232,-0.010799205,-0.009735342,0.038559984,-0.0110400785,0.031414043,-0.0202736,-0.0037912636,-0.010759058,0.025271744,0.0038690458,0.02992865,0.0405472,-0.026375752,-0.004636833,-0.000014290159,-0.002260707,0.0071760514,-0.014984398,-0.003916719,0.006528701,0.0012112723,-0.013167803,-0.003936792,0.0024175264,0.014703378,-0.010457966,-0.008601225,0.035569128,-0.031594697,0.014342066,0.00047735797,0.026656773,0.006202517,-0.0033170418,0.009529595,-0.002106397,0.03552898,0.02936661,-0.025693275,-0.0029130753,-0.0013624461,-0.010021381,0.024729777,-0.027580125,0.025633056,-0.027499832,-0.0051060366,-0.056766078,-0.024729777,-0.01954094,-0.008400496,-0.008731699,0.020675058,-0.007728055,-0.0008311423,0.007888638,-0.005439748,-0.002672201,0.0064132824,0.0014226647,0.02733925,0.028142165,-0.028684132,0.00599677,0.010166909,0.07394846,-0.024669558,0.03474614,0.06616018,0.056806225,0.034023516,0.007497217,0.020333817,0.029868431,0.015275455,0.030611128,-0.008621298,-0.0020938513,0.008219841,0.0020675056,-0.018517224,-0.029547267,-0.012625836,0.014221629,-0.0009007701,0.00343497,-0.023605697,0.0057308045,-0.036492478,0.0022331069,0.025231598,-0.004629306,0.015646802,0.03530818,-0.016008114,-0.000014584195,0.0014051009,0.0024990723,0.013187876,0.0015857568,0.006001788,-0.013569261,0.0033822788,0.010026399,-0.011220735,-0.04628804,-0.023685988,-0.0077330736,-0.00201356,-0.011582047,-0.010407783,-0.0069301585,0.0031263495,-0.024950579,-0.0054347296,0.0043432675,0.018477077,-0.021237098,-0.0034625703,-0.022080157,0.00066491385,-0.011893176,-0.018175984,-0.006669211,-0.014412321,-0.00782842,0.005971679,0.0147635965,0.02635568,0.019581085,0.017433288,0.023685988,0.008224859,0.008480788,0.045284398,0.025914077,-0.012997184,-0.02089586,0.016319243,-0.004930399,0.0047196336,-0.009971199,-0.007607618,-0.020855714,0.019370321,-0.031915866,0.022541834,0.00041651208,0.043357402,-0.028001655,0.015044617,-0.0060870983,-0.03950341,0.023164093,-0.0051486916,0.0044085043,0.015646802,-0.011110334,0.022842927,-0.036291752,-0.014914143,0.0332206,0.014542795,-0.00732158,-0.001878068,-0.006031898,-0.045204107,-0.040226035,0.025231598,-0.014462504,-0.009810615,-0.022883072,0.015275455,0.022481615,-0.01565684,-0.009800579,0.013749916,0.001799031,0.03888115,0.001635939,0.023886716,0.003505225,-0.018888572,-0.024689632,-0.0127563095,-0.0149542885,-0.0038790824,0.025010796,0.008345296,0.026998011,-0.0016698119,-0.02894508,0.0014741014,-0.015957933,0.006498592,-0.04034647,-0.021196952,-0.009961162,0.0024313265,-0.0025894004,-0.021578336,0.016449718,0.00096475234,0.02972792,-0.0016083388,-0.0060569886,0.034445047,-0.045605563,0.009885889,0.01737307,-0.00035221616,0.030872075,-0.0068197576,0.023645842,-0.00444865,-0.016389498,0.014372176,-0.020143125,-0.0011692448,0.0032417686,0.0017225032,-0.018657733,0.006614011,0.027359324,0.02762027,-0.027780853,-0.0060519706,-0.015395892,-0.011531864,0.0010807987,0.020634912,0.00091645203,-0.010091635,-0.020082908,-0.01773438,-0.008254969,-0.041229676,0.020002617,0.0044862865,-0.016881285,-0.012003576,-0.015546438,-0.018607551,0.020594766,-0.0066792476,-0.022863,0.0064183003,0.021156806,-0.013097548,0.02139768,0.00064295914,0.02908559,-0.019862106,0.0007426962,0.02024349,0.024147663,0.015817422,-0.05146684,-0.024769923,-0.013167803,0.015777277,-0.02446883,-0.031915866,-0.0016923939,-0.000056180514,0.031634845,0.030109307,0.00066993205,0.04789387,-0.0083653685,0.031915866,-0.0109397145,0.0023861625,0.022501688,-0.0030611127,-0.019340212,-0.020915931,-0.008104421,-0.007135906,-0.01464316,0.02342504,-0.014843888,-0.008907337,-0.044601917,0.0044561774,0.049339116,-0.003296969,0.009128138,0.03083193,0.036673136,-0.036512554,-0.016620336,-0.016088406,-0.024207883,0.014914143,-0.008992646,-0.025291817,-0.0332206,-0.026034513,0.0048325434,-0.016710665,-0.01593786,-0.036271676,-0.004426068,0.0078083468,0.0041902116,0.0052691284,-0.012505398,0.00585626,0.04327711,0.0068649217,0.016309207,-0.025572838,-0.022602053,0.0009879617,-0.020002617,0.014974361,-0.0033396238,0.009815634,-0.014452467,-0.010126763,0.045485124,0.000049358874,-0.010146836,-0.022501688,-0.00405472,-0.019350247,0.036331896,0.026676845,-0.024448756,0.008902318,0.038499765,0.045926727,0.061061673,0.010407783,0.00715096,0.016299171,-0.02489036,0.01405101,-0.011351208,-0.004428577,-0.00799402,0.014944253,-0.029888505,0.015827458,-0.0014828834,0.0061021526,0.023404967,0.012425107,0.055963162,0.013759953,-0.011873103,-0.009529595,-0.04399973,0.029446902,0.05740841,0.043879297,-0.019249883,0.021036368,0.04040669,0.0043307217,-0.0148539245,-0.0008073058,-0.011792812,-0.0028102018,-0.006794667,-0.024428684,-0.0003142659,0.012977111,0.03251805,0.018507186,0.014392248,0.025853857,0.022642199,-0.035428617,-0.006839831,-0.03595051,-0.028122092,0.0056555313,-0.004403486,-0.03480636,0.027138522,-0.038620204,-0.01765409,0.0014552831,0.031454187,-0.09643007,0.010327492,0.01922981,0.04998145,-0.028884862,0.017383106,-0.01066873]},{"id":"interface-EmbedFieldData","type":"interface","source":"main","text":"Interface: EmbedFieldData\nDescription: A single embed field (name, value, optional inline).\nProperties: inline: boolean, name: string, value: string","meta":{"url":"/docs/typedefs/EmbedFieldData"},"embedding":[-0.0089962315,0.037230007,-0.00811855,0.024636304,0.03467861,-0.018839527,0.0164208,-0.017063754,-0.02596303,0.024126025,0.03780152,0.022023672,0.013338711,-0.031004595,-0.020452011,-0.00014399455,-0.0075521395,0.04416981,0.02628961,0.03571958,0.01864562,-0.0134713845,-0.022962587,-0.010715874,0.008919689,-0.03300489,0.004735396,0.012328357,0.02851443,-0.00037377988,0.01771691,-0.018584387,0.057232972,-0.016880052,0.004220013,0.030963773,0.046823267,0.012114041,-0.014308243,0.003982733,-0.009588156,0.0076541957,-0.020768384,0.028616486,0.017359715,0.007592962,-0.019441657,0.023248343,0.0028652207,0.022207372,-0.0033780516,-0.029677868,-0.01813534,0.0015333905,-0.012828432,0.028432785,-0.038209744,0.054171294,0.035678755,-0.018696649,0.016267717,-0.021248046,0.0031407715,0.047721356,-0.017737323,-0.008715577,-0.073112875,0.05221182,-0.013838786,0.032372143,0.053477313,0.021105168,-0.0061743846,0.04241445,0.05462034,-0.013777552,0.0048680683,0.004253181,-0.0017209183,-0.014491944,0.0063989074,0.04363912,-0.06380537,-0.023329988,-0.0020857684,0.017451566,-0.016502446,-0.0064244214,-0.044659678,0.027697982,-0.068499945,-0.039658938,-0.063927844,-0.061805077,-0.012573292,0.009093184,-0.03731165,-0.00041555904,-0.040842786,0.034658197,0.027208114,-0.02286053,-0.08948265,0.002519506,-0.018308835,-0.023003409,0.016971903,-0.0016533062,0.0047864234,-0.04241445,-0.046986554,0.0030489212,0.0013675496,0.041495945,-0.004038864,-0.0063172625,-0.012910076,0.024248492,-0.00095677446,0.0015869698,-0.011215948,-0.008307354,0.02763675,-0.023472866,-0.018349659,0.016390184,-0.046170108,0.00037377988,-0.06829584,-0.046292573,-0.0031229118,0.015216541,-0.029902391,-0.010210697,-0.03314777,-0.004021004,-0.006633636,0.06649965,-0.000712478,-0.03986305,-0.018676236,-0.034801077,0.08923771,0.0058529084,0.014553177,0.05960067,-0.029494166,0.016063605,0.05955985,-0.006036609,0.0004936956,0.0095422305,-0.017155604,-0.0017834275,-0.020349955,-0.057804484,-0.004546592,-0.011838489,-0.0028703234,-0.047843825,0.0012941969,-0.025983442,-0.0053783483,0.008929895,-0.060417116,0.033351883,-0.0028932858,-0.03847509,-0.022084905,0.03663808,0.0012125522,-0.028943066,-0.06025383,0.0123793855,-0.01468585,-0.005536535,0.0035719578,-0.06013136,-0.010766902,0.028657308,-0.011215948,0.02130928,-0.03782193,0.008960512,0.027187703,0.01999276,-0.011909928,0.01030765,0.010379089,-0.006363188,-0.016716763,0.0069551123,0.018870143,-0.002957071,-0.0133489175,0.0003584715,0.006582608,0.024105614,0.023595333,-0.043312542,0.054171294,0.006388702,-0.010613818,-0.015461475,-0.0017464323,-0.0056896186,-0.024166847,-0.017492387,-0.05241593,-0.011930339,0.012930487,-0.007689915,0.015920727,-0.027228525,-0.004735396,0.020809207,0.036842193,-0.021901205,0.04416981,-0.0043756487,-0.020125432,0.056294058,0.07486824,-0.018615004,-0.0386792,0.01649224,-0.06462182,-0.046619155,-0.034617376,-0.032229267,-0.02920841,-0.018012874,0.016124839,-0.019962141,-0.024370959,0.054130472,-0.03690343,0.033923395,-0.03157611,-0.005403862,-0.018002668,-0.0079042325,-0.003770967,0.034984775,-0.03233132,-0.0006888776,0.037536174,-0.021186814,0.012358975,0.029779924,0.030331025,0.0023383568,-0.012889666,-0.007945055,0.0075572426,-0.047884647,-0.02094188,0.06253988,0.010960808,0.034535732,-0.015451269,-0.012838637,-0.020554066,0.00923096,0.003924051,-0.045394484,0.06466264,0.0017630163,-0.026677422,-0.032188445,0.052456755,0.011654789,-0.010797518,0.0030820894,0.011287387,-0.0015002224,0.02696318,0.008690063,-0.029677868,0.055477608,-0.0381281,-0.026167143,-0.014144953,0.034249973,-0.04241445,-0.030310614,-0.013910225,-0.003066781,0.008205297,0.03625027,0.02028872,0.016808614,0.09005416,-0.00074755977,0.010384192,-0.022411484,0.0032479302,0.024595482,0.07952199,-0.031984333,0.030024858,-0.010501556,0.024534248,0.0011232533,0.018421097,0.029943213,-0.0108995745,0.028555252,0.036372736,-0.04208787,-0.030433081,0.005110451,-0.018002668,0.012348769,-0.039536472,0.057763662,0.05568172,0.022452308,-0.015318597,-0.021799149,0.036148213,0.039944693,-0.007470495,-0.1189564,-0.04108772,-0.045312837,-0.037515763,0.03471943,-0.003969976,-0.0042276676,0.0031841453,0.010991425,-0.010675051,-0.004204705,0.04314925,-0.06547909,-0.014604205,0.0031611829,-0.002036016,0.018584387,0.027779628,-0.017380126,0.017900612,0.025024116,-0.017288277,-0.03039226,-0.016084015,0.044251457,-0.020452011,-0.031474054,-0.005761058,-0.009680006,-0.051027972,-0.01375714,-0.024228081,-0.03471943,0.017972052,-0.0563757,-0.037352473,-0.019809058,-0.014277626,0.025922209,0.008980922,0.04018963,-0.038189333,-0.011083275,-0.003071884,0.0055161235,-0.0067765145,-0.016359568,0.0012941969,-0.019145694,-0.016451418,0.02471795,0.011246565,-0.0034035656,0.0032224164,-0.0025692582,-0.007240869,-0.033596817,0.011348621,0.021452159,-0.017818967,-0.035474647,-0.016512651,0.026575368,-0.011756845,0.03608698,-0.03369887,0.023452455,0.029677868,-0.00738885,-0.006990832,-0.036393147,0.054171294,0.005980478,-0.019451862,0.004398611,0.004434331,-0.048701096,0.01649224,-0.0746233,0.023779035,-0.024126025,0.015777849,-0.017461771,0.024554659,-0.024370959,0.07221478,-0.0027453047,-0.009297296,-0.013777552,0.0076848124,0.049599186,0.0065775053,-0.002630492,0.0131550105,-0.05649817,0.026554955,0.021513393,-0.031841453,-0.02594262,0.0012284984,-0.013614262,0.039393593,-0.016859641,0.051803596,0.0031969023,-0.03212721,-0.034066275,-0.039087426,0.049680833,0.051558662,0.0142470095,-0.0039470135,-0.016390184,0.016982108,-0.0026611087,-0.03161693,0.011552732,-0.03145364,0.012777404,0.03073925,0.030555548,-0.053518135,-0.00075330044,-0.0439657,-0.012603909,-0.03618904,-0.0696838,0.0045950687,0.04931343,-0.0010467112,0.0006620879,0.045639418,0.033086535,0.0143184485,-0.0005469561,0.0035158272,0.051477015,0.009583053,-0.0266366,0.032065976,0.04637422,0.0051589278,-0.010185183,0.014604205,0.0038194435,0.005628385,0.0019696797,-0.014022486,-0.017461771,0.017012725,0.024840416,-0.016941287,0.0025756368,-0.0066030193,-0.035495058,-0.023554511,-0.02800415,0.028698131,0.010297445,-0.03727083,-0.028698131,-0.0020564273,0.083685875,0.037719876,-0.010210697,0.026779478,-0.047231488,0.031412818,-0.03420915,0.03982223,-0.006159076,0.017553622,-0.015318597,-0.059886426,-0.01443071,0.020809207,-0.005755955,0.053477313,-0.0012336011,0.010787313,0.027942916,0.050783034,0.01992132,-0.018033285,-0.020023376,-0.08842127,0.014542972,0.0028397066,0.016502446,-0.017206632,-0.006286646,-0.016298333,-0.0035489954,-0.018523153,0.0410469,-0.016757585,0.009511613,0.008700269,0.009093184,0.020747973,-0.0077766627,-0.00049847947,-0.025820153,-0.03145364,-0.01873747,0.016706558,-0.007669504,-0.006608122,-0.006291749,-0.011226154,0.04829287,-0.03967935,0.02661619,-0.021717504,0.051762775,0.019788647,0.00069461827,-0.030555548,0.018982405,0.016675942,0.007613373,-0.015767643,0.04176129,-0.022738064,-0.016553473,0.0048961337,0.04690491,0.0066948696,-0.015849287,0.026942769,-0.051150437,0.033392705,0.052905798,0.020492833,0.013216244,-0.014308243,-0.014634822,0.021860383,-0.05955985,0.030004447,0.0017234697,-0.022533951,0.0176965,0.019604946,-0.016716763,0.021003112,-0.0070979907,-0.061233565,0.025799742,0.007490906,0.058376,-0.019543713,0.020084608,-0.007245972,0.030780071,-0.025636453,-0.008664549,0.022350252,-0.017614854,-0.040107984,-0.00631216,0.041802112,0.00019693607,0.043230895,-0.014022486,-0.0114098545,-0.00049018743,0.006781617,0.009072773,0.021942027,0.0056181797,0.027983738,-0.02679989,0.030453492,0.009082979,-0.012563086,0.0068275426,0.023207521,-0.0021278663,0.011909928,-0.011001631,0.04037333,0.036148213,0.04984412,0.008613521,-0.006837748,-0.011879312,-0.0019416143,0.00029325136,0.0042812466,-0.039087426,0.010787313,-0.0160534,-0.007945055,0.030535137,-0.007939952,0.00207046,-0.011175126,0.025330285,-0.005980478,0.01778835,-0.044741325,0.012338563,0.016655529,-0.030555548,0.023615744,0.011011836,-0.0130325435,0.001539769,0.0045414893,-0.008628829,0.010363781,-0.028800186,-0.0010103538,0.02698359,-0.017829172,-0.035699166,0.0070877853,0.007960363,0.050987147,0.02267683,0.022554362,-0.035597112,0.028106207,0.02526905,0.0039954903,0.016696353,-0.022411484,-0.024799593,0.018931378,-0.024860827,0.00738885,0.008562493,-0.018870143,0.001930133,-0.003732696,0.008506362,0.032596666,-0.01554312,0.00824612,-0.04057744,0.0017413294,0.022125728,-0.0011672648,-0.034515318,-0.0061233565,0.0143184485,0.0073531307,-0.015257363,-0.0067612063,0.021554215,-0.006511169,-0.06298893,0.013961253,0.025575219,0.004916545,0.0266366,-0.048456162,0.0018063901,-0.014002075,-0.04637422,-0.0108995745,-0.014849139,-0.00643973,0.02284012,0.014736878,-0.004322069,-0.010858752,0.0090319505,0.019441657,-0.008297148,-0.024330135,0.05139537,0.0049037877,-0.008302251,0.006240721,-0.009572847,0.0071439156,-0.026412077,-0.021778738,0.010006585,-0.026167143,0.012420208,0.022942176,0.01656368,0.02816744,-0.022289017,-0.01158335,0.024003558,-0.012052807,-0.0010275758,-0.009042156,0.002291156,-0.017880201,0.024248492,-0.0007265107,0.05502856,0.024085201,-0.033025302,-0.017033137,0.0118691055,0.018890554,0.005260984,0.00044553797,0.044047344,0.010083127,-0.015451269,-0.008036905,-0.04192458,-0.008302251,-0.009593259,-0.01027193,0.04192458,-0.021350102,0.00375821,-0.0036255373,0.02818785,0.031045416,0.022697242,0.06886735,0.021758327,-0.0015729372,0.010695463,-0.014369477,-0.00096251507,0.00713371,-0.007817485,0.0012284984,0.0026151836,-0.025677275,0.018421097,-0.012114041,-0.007036757,0.03676055,-0.023799445,-0.023799445,0.010807724,0.014206187,0.031147473,-0.00904726,0.031882275,0.009373838,-0.060008895,-0.0073327194,-0.00726128,0.01220589,0.049109317,-0.031902686,-0.006358085,-0.024901649,-0.019860087,0.061274387,-0.022574775,-0.015614559,0.007950158,-0.048211228,0.008154269,-0.025207818,0.0123793855,-0.024370959,-0.03216803,0.0059243473,0.0025603285,-0.010425014,-0.029126765,0.0041460227,-0.04261856,-0.038944546,-0.0034239767,-0.012634525,-0.010200491,0.037760697,0.008735988,-0.016961697,-0.054416228,0.0018676238,0.017206632,-0.0048119375,-0.009802473,-0.009128904,0.05702886,0.02404438,-0.015298186,-0.040291686,-0.00083749654,0.016635118,0.024881238,-0.0057202354,-0.0129611045,-0.022921765,0.046659976,-0.021166403,0.031718988,-0.033780515,0.0052864975,0.031718988,0.014440916,0.02302382,-0.025513986,0.031310763,0.0022592633,0.021390926,0.014134748,0.0056743105,0.040944844,-0.017757734,0.0033066124,0.012593703,0.04514955,0.0009140385,0.001747708,-0.0012036222,-0.029841157,0.034943953,0.01271617,-0.020258104,-0.002278399,0.031004595,-0.009532025,0.027922506,0.013767347,0.0052916007,-0.03157611,-0.008067522,0.0035515467,0.0127671985,0.047353957,-0.014532766,0.026065087,-0.0022745717,-0.025656864,0.023615744,0.0017247454,-0.023738211,-0.025840564,0.02001317,-0.011940545,0.015216541,0.046986554,-0.026228378,0.046823267,-0.0018421097,-0.020105021,-0.036311503,0.022309428,-0.00923096,0.011716022,0.029167589,-0.039536472,0.051027972,-0.0028116412,-0.033923395,-0.009894324,0.026738657,0.049027674,-0.0029111458,0.0007622303,0.03143323,-0.0017043342,0.016859641,-0.050252344,-0.007363336,-0.032045566,0.03382134,0.037025895,-0.014879757,0.004704779,0.032065976,0.035148066,0.0019097218,-0.016012577,-0.009955557,0.017961845,0.009435072,0.0018637966,-0.026534544,-0.010047408,-0.015349214,-0.023044232,-0.003194351,-0.03969976,0.01090978,-0.006240721,0.025840564,-0.015481886,-0.0010747766,-0.014451121,0.00034635235,-0.001959474,-0.01271617,0.030290203,-0.03286201,0.019360011,-0.0077052237,0.011838489,0.027881684,0.011909928,-0.07180656,0.012052807,-0.0055416375,0.04055703,-0.009618772,-0.016522856,-0.015696203,-0.01691067,0.04625175,-0.012114041,0.0010888093,0.021268457,-0.019717207,0.015553325,0.009782062,-0.047272313,-0.013787758,0.0075776535,-0.028616486,-0.01357344,-0.055600077,0.0022171654,0.025901798,-0.039026193,0.03882208,0.008506362,-0.024493426,-0.008552288,0.0041077514,-0.04110813,-0.03431121,0.007036757,0.041128546,-0.021595037,0.0018931377,-0.0052660867,0.024248492,-0.045231193,0.015420653,0.016716763,-0.019543713,0.019013021,-0.052497577,-0.01975803,0.025371106,-0.00066272577,-0.011338415,-0.012491647,0.04604764,0.018125135,-0.008138961,-0.008419615,0.036005337,-0.027963327,0.026452899,0.015696203,-0.010251519,-0.006235618,-0.02953499,0.026901945,-0.014665439,0.025024116,0.01589011,-0.0024110717,-0.006118254,-0.010848546,-0.018033285,0.008363484,0.059519026,-0.017961845,-0.02369739,0.014308243,0.0021214879,0.00072395935,0.00045733817,0.010848546,-0.0052201613,-0.014614411,0.010491351,-0.00054376683,-0.028636897,-0.007317411,-0.05192606,0.032494612,0.009516717,-0.018849732,0.01008823,0.0068020285,0.0111649195,0.0069551123,-0.0044215736,0.016645323,0.047884647,-0.03126994,0.05274251,0.026718246,0.010787313,0.02406479,0.006689767,-0.0054855067,0.01846192,-0.022248195,-0.008889073,0.020676533,0.01999276,-0.0031739397,0.011266976,0.011522116,0.021227635,0.0056692073,-0.030473905,0.042373627,0.013257067,0.011032247,-0.00777156,0.009225857,-0.021105168,-0.026657011,0.018084312,0.019798853,-0.019237544,-0.01018008,-0.025983442,0.02904512,-0.0019581984,-0.027595926,0.0067356923,-0.015165512,0.01785979,-0.0023179455,0.01125677,0.011185331,0.0032683415,-0.018053696,0.007669504,-0.00824612,-0.012154862,0.03725042,-0.00999638,0.02130928,0.003406117,-0.025452752,-0.0049216477,0.026371256,0.008455335,0.013369328,0.0065570944,-0.009639184,0.012410003,0.00037186634,0.00035273086,0.0025399171,0.06858159,-0.03075966,0.017431155,0.0025399171,-0.0012444446,-0.01906405,-0.018706854,0.0414143,-0.00840941,0.0020181562,0.010338266,0.031821042,-0.0014823625,0.04208787,0.001306316,-0.00485276,0.044373922,-0.007174533,-0.015788054,0.035352178,-0.004212359,0.015920727,-0.03884249,0.042822674,0.02198285,0.008542082,0.028922653,-0.05033399,0.0044521904,-0.014604205,0.013797963,0.021390926,-0.002502922,-0.0044292277,-0.011134303,-0.022309428,-0.02596303,0.022125728,-0.061396856,0.043312542,0.004610377,0.023758624,-0.024962883,0.024432192,-0.003893434,-0.018359864,-0.0063989074,0.004776218,0.016686147,-0.009312605,0.0049777785,0.015706409,-0.017196426,0.016410595,-0.00036421214,0.0039980416,-0.005873319,0.020982701,-0.013001927,0.03361723,-0.0019939179,-0.03402545,0.035678755,-0.044414744,0.020768384,0.020441804,0.007888924,0.0041000973,0.016277922,-0.014798111,-0.023472866,0.0019492685,-0.010971013,-0.016941287,-0.0162371,0.040944844,0.029514577,0.0026942769,0.00030521106,0.020901056,-0.008889073,0.03504601,0.00083366944,0.0056641046,0.027963327,-0.0018803807,0.0002604021,0.012114041,-0.010333164,-0.0003957857,0.0009765478,0.032678314,-0.01364488,0.022717653,0.002612632,0.014838934,-0.023207521,0.0033857059,0.007419467,-0.038862903,-0.02216655,0.009139109,-0.013818375,0.00121319,0.0010728631,-0.0039776303,-0.0027861272,0.04829287,0.03663808,-0.028494019,-0.006358085,-0.011593555,-0.028371552,0.015257363,0.011246565,-0.022615597,-0.00904726,0.005276292,-0.036658496,0.020778589,-0.017288277,-0.005888628,-0.00008571104,0.040740732,-0.024820006,0.0039623217,0.030555548,-0.004605274,0.0021431746,0.027473459,0.00020634435,-0.009914734,0.008047111,-0.03878126,0.0026738658,-0.016655529,0.04947672,-0.034801077,0.00121319,0.038413856,0.05584501,0.018125135,-0.005424273,0.012083423,0.004431779,0.034413263,-0.0019250301,0.018472126,-0.004352686,-0.014736878,0.02216655,0.011348621,-0.033045713,0.012940694,0.0011340966,-0.0026355947,0.0028728747,-0.026840713,0.011940545,-0.0064652436,0.01839048,-0.010593407,-0.035984926,-0.0072051496,0.0060161976,0.02594262,0.01837007,0.014696055,0.017574033,0.021656271,0.018421097,0.032249678,0.00090702216,-0.01074649,-0.01158335,0.014645028,-0.007312308,-0.010266827,-0.006985729,0.025452752,-0.022329839,-0.03286201,0.005056872,0.019513097,-0.015788054,-0.011246565,0.022309428,0.007337822,-0.025656864,-0.006230515,-0.0235341,0.0072051496,-0.01452256,-0.00011305885,0.0056487964,-0.0062203095,-0.028208261,-0.0064091133,-0.008812531,0.03404586,0.0105117615,0.027187703,-0.013889814,0.011532322,0.004763461,0.010838341,0.010521968,-0.015614559,-0.0069091874,0.0053681424,-0.004204705,-0.0017464323,-0.024860827,0.018155752,-0.017298482,-0.00027682673,-0.004878274,-0.0038526119,0.032086387,0.065846495,-0.020809207,0.030780071,0.02884101,-0.0084145125,0.00096825574,-0.033066124,-0.011920134,-0.0022771233,-0.008195092,0.01554312,-0.018308835,0.005684516,0.018176163,0.04482297,-0.003957219,0.0057202354,-0.0027172393,-0.0317394,-0.0045414893,0.036883015,-0.011685405,0.0041766395,-0.0016724417,-0.0038832286,0.0058682165,0.017124986,-0.011307798,-0.016798409,-0.0064499355,-0.01280802,-0.00461548,0.029596223,-0.013553029,-0.019288573,-0.006756103,-0.008741091,-0.034617376,0.020411188,0.01771691,0.0030642296,0.023064643,-0.028963476,-0.030637193,-0.0043042093,-0.043190073,0.021942027,-0.013287684,-0.028044973,-0.010583201,-0.020605095,-0.01125677,-0.04088361,0.028800186,0.050374813,0.01468585,-0.004669059,-0.009338118,0.029637044,0.0010090781,0.014206187,-0.015114485,-0.02054386,0.035352178,-0.010210697,-0.015002224,0.020105021,-0.013308095,0.01236918,-0.051313728,-0.0054599927,0.028575663,-0.0029621737,0.0019671284,0.0011111341,-0.014491944,0.038699612,-0.0072357664,-0.019696796,-0.035066422,0.0015958998,-0.018431302,0.0065979166,0.007215355,0.02267683,0.0075062145,-0.016318744,0.01408372,-0.04041415,0.018910965,-0.006893879,-0.014910373,-0.004072032,0.03227009,-0.021248046,-0.012705965,-0.007848102,0.014716467,-0.00016759499,0.017492387,-0.020605095,0.02337081,-0.01924775,0.04367994,-0.015992166,0.022615597,-0.013838786,0.040434565,-0.016298333,-0.017278071,-0.02473836,-0.027902095,-0.012797815,0.0038066865,-0.012134451,-0.026718246,0.0041179573,0.050415635,0.023289166,-0.0011570592,0.0049216477,-0.025105761,-0.005276292,0.0132264495,0.036311503,0.049395077,0.003054024,-0.016022783,-0.02559563,-0.01718622,0.009776959,-0.009787165,0.024962883,-0.020002965,0.0017272969,-0.029249232,-0.000861097,-0.0076439898,0.012267124,0.023085054,0.025371106,0.0130325435,-0.01220589,-0.0022133382,-0.0001397688,-0.018788498,0.016247306,0.019717207,-0.0114098545,-0.025452752,-0.011287387,-0.009440174,-0.021676682,0.043924876,-0.03741371,-0.02070715,-0.0012151035,0.03353558,-0.00033742245,-0.0022082354,-0.008690063,-0.014165364,-0.014369477,0.011960956,-0.008077728,-0.0066540474,0.0021291422,-0.015583942,-0.0034673505,-0.028391963,0.016869847,-0.012889666,0.016533062,0.0101596685,0.038740434,-0.003079538,-0.016675942,0.0070214486,-0.009281988,0.010414809,0.00868496,-0.0379444,0.0025871182,0.03402545,0.011654789,0.07601126,0.009435072,0.02147257,0.005939656,-0.045761883,0.032515023,-0.0045950687,0.005209956,0.022289017,0.002315394,-0.02183997,-0.0051895445,-0.0048451056,-0.006939804,-0.014655233,0.0142470095,0.04121019,0.009006437,-0.008899278,0.012583498,0.009144212,0.03431121,0.06017218,0.011797667,-0.052864976,-0.03363764,0.0047736666,0.03782193,0.004947162,0.018941583,-0.022084905,0.011062864,0.008924792,-0.0410469,0.016635118,-0.011246565,0.049027674,0.024779182,0.010083127,0.030902538,0.030494316,-0.009220754,0.018778292,-0.015369625,0.011899723,-0.008460438,0.009674903,-0.04416981,-0.016726969,0.0080624195,-0.024166847,0.00085790775,-0.01742095,-0.049803298,0.030861717,0.024554659,0.015757438,-0.023840267,0.013389739,0.006266235]},{"id":"interface-EmbedFooterOptions","type":"interface","source":"main","text":"Interface: EmbedFooterOptions\nDescription: Footer field for an embed.\nProperties: iconURL: string, text: string","meta":{"url":"/docs/typedefs/EmbedFooterOptions"},"embedding":[-0.034380034,0.011995123,-0.021038827,0.009422602,0.012294252,-0.04255626,0.06325607,-0.010015877,0.015574714,0.043274175,0.0025513317,-0.0026473026,-0.0011560137,-0.055638224,0.032365892,-0.015405207,-0.021198362,-0.015664453,0.008096458,0.036593597,-0.015873844,-0.0023494186,-0.0041354755,0.025186766,0.0007827241,-0.0078621395,0.012015064,0.02769946,0.015106076,0.011715934,0.060863033,-0.03394131,0.044151623,-0.0030461429,-0.009587124,0.007388517,0.08343739,0.016551873,0.01167605,-0.007014604,-0.024608446,0.008784458,0.010998022,0.028915923,-0.017389437,0.021557318,0.02115848,0.052407615,0.028038474,0.02385065,-0.0070345458,-0.018944915,-0.01107779,0.012782832,-0.042596146,0.011955238,-0.046345245,0.036294468,-0.007911995,-0.0034748963,0.0043673012,0.0044146637,-0.0077624293,-0.009936109,0.0054890397,0.039943855,-0.06485143,0.043513477,-0.0290954,-0.004150432,0.061221987,-0.016113149,-0.007228981,0.049815156,0.0050378516,0.01652196,0.023092855,0.0011859267,0.0076627196,-0.053285066,0.025106998,0.004452055,-0.060583845,-0.030930066,-0.0044645187,0.019104451,-0.040522177,-0.030232096,-0.043473594,-0.029075459,-0.044151623,-0.054361936,-0.057911612,-0.066725984,-0.052806456,0.015494946,-0.0023992737,-0.029454356,0.00741843,0.00040663016,0.028955806,-0.027121142,-0.07681664,-0.020340856,0.005022895,-0.0060125175,0.0032879398,-0.0024079983,0.0073286905,-0.0011080282,-0.045068953,0.018356625,-0.0017673611,0.029913023,0.037630584,-0.015345381,0.036274526,0.02532636,0.009761617,-0.056675207,-0.017529031,-0.04937643,0.01988219,0.023491694,-0.009273037,0.015355352,-0.059028365,0.019224104,-0.052766573,-0.045228492,0.010519413,0.020201262,-0.051131327,0.020390712,-0.0049057356,0.0070195897,-0.005115127,0.013969382,-0.034080904,-0.009681849,0.0042302,-0.02355152,0.031827457,-0.020231174,-0.0106191235,0.0362147,-0.013929497,0.0014146367,-0.018067466,0.012842658,0.0052397647,-0.025765084,-0.037949655,-0.009332864,-0.031428616,-0.04885794,0.017539002,-0.016791178,0.019463407,-0.04825968,-0.00033402877,-0.03601528,0.020181319,0.029893082,-0.032126587,0.025904678,0.012822716,-0.008704689,-0.04050223,0.017090308,0.026463054,-0.04024299,-0.022494594,-0.0006487387,-0.002552578,0.01013553,0.014338309,-0.007622835,0.015305497,0.020998942,0.044789765,0.016372394,0.037072208,-0.01938364,-0.008221095,0.017090308,0.022594303,-0.0023219984,0.038906872,0.0024877663,-0.040781423,-0.0033652151,-0.009661906,-0.018097378,-0.014258541,0.038707454,0.004100577,-0.02899569,-0.023870593,-0.06301677,0.013141789,0.035756033,0.03354247,0.020300971,0.006351532,0.036454003,-0.047621533,-0.00023759042,0.0025102012,0.04127997,0.03356241,-0.018775407,0.027918821,-0.041399624,-0.00022684042,0.008246023,0.057034165,-0.0027769257,0.004850895,-0.0145676425,0.017100278,0.054601237,0.0679225,-0.046584547,0.029394532,-0.0014283468,-0.04590652,-0.004444577,-0.052607037,0.055279266,-0.035775974,0.0078023137,0.0061521116,-0.008689733,-0.009766602,0.01890503,-0.020739697,0.0028591864,0.0015953613,-0.042755682,-0.011047876,-0.025446013,-0.023132738,-0.010250196,-0.05372379,-0.016531931,-0.0040133307,-0.0104895,0.0061321696,0.029514182,0.027360445,0.011835586,0.0070893867,-0.024488796,0.029534126,-0.028517082,-0.02779917,0.03571615,0.052766573,-0.04710304,0.022414826,-0.044670116,-0.0067603434,0.018536104,0.042077653,-0.053843442,0.0018184625,0.02165703,-0.016242772,-0.028178068,0.04482965,-0.025465954,0.008001734,0.04135974,0.006321619,0.025206707,-0.031149428,0.0059526917,-0.080884814,-0.0035546643,0.015305497,-0.017259814,-0.014128918,0.029015632,-0.045946404,-0.023990246,-0.02127813,-0.00477362,0.04323429,0.016202888,-0.0020964043,-0.0020552739,0.09021768,-0.026921721,-0.026562765,0.00093540514,0.060703494,0.007807299,0.059546858,-0.022813667,0.020181319,-0.0151359895,-0.010928225,-0.046584547,-0.007233966,0.00447449,0.05164982,0.05196889,0.01107779,-0.03800948,-0.02008161,-0.04066177,-0.036194757,0.005828054,-0.016841032,0.04363313,0.058230687,0.009253095,-0.022195464,-0.029893082,0.03880716,0.031907223,-0.014467932,-0.051171213,-0.0047885766,-0.02405007,-0.0070195897,0.06608784,0.024409028,0.018974828,0.026502939,-0.00017496002,0.022355,-0.00063876767,0.0033402876,0.0042052725,-0.020600103,-0.01345089,0.0059526917,0.03288438,0.0049979677,-0.006700517,0.019682769,-0.0009584631,0.00860498,-0.03928577,-0.054162513,0.00063565176,0.02582491,-0.050054457,-0.029314762,0.0111176735,-0.012593383,-0.046066057,-0.011157557,-0.03432021,0.00781727,-0.06277747,-0.07007624,-0.008465386,-0.044949304,0.00856011,-0.008779473,-0.011925325,-0.0071940823,-0.055359036,-0.025286475,0.01157634,0.004170374,-0.016851002,-0.011317094,0.026343402,0.01108776,0.03810919,-0.0048658517,0.048818056,0.0467042,-0.026263634,-0.027918821,-0.039405424,0.03848809,-0.004923185,-0.054162513,-0.00890411,0.051410515,-0.019742595,0.030511284,-0.006600807,-0.029633835,0.0063664885,0.0145676425,0.01732961,-0.013460861,-0.01889506,0.05587753,0.03186734,0.0010295066,-0.004369794,0.003105969,-0.014757091,-0.010698891,0.0024715636,0.01574422,0.010015877,-0.012413905,-0.032704905,0.025166823,-0.0008307096,0.009562196,-0.013700165,-0.013191643,-0.020699812,0.04127997,0.020819465,0.019234074,0.0068002273,0.015285555,-0.08164261,0.004843417,0.036075108,-0.032026876,0.0040357653,-0.00038263743,-0.041080553,0.041479394,-0.035257485,0.035596497,-0.010539355,-0.052607037,-0.04255626,0.00003267842,0.01713019,0.04423139,0.050333645,-0.0038562873,-0.010778659,0.013829788,-0.01820706,-0.01057924,0.022355,-0.019732624,0.022195464,0.035137832,-0.0045991275,-0.022394883,-0.023730999,0.019493321,0.0054142573,-0.01869564,-0.0063664885,-0.015963584,0.033761833,-0.017499119,0.043473594,0.03432021,0.02897575,0.019064566,-0.013789903,0.019762537,-0.03539708,0.036374237,-0.0140690915,0.004591649,0.049057357,-0.011785731,-0.013411005,-0.014228628,0.04690362,0.023272332,-0.017190017,-0.0034474758,0.013101904,0.00761785,0.0121845715,-0.024708157,-0.029613893,-0.019682769,-0.08008713,-0.04127997,0.028477198,-0.007553038,-0.0005920286,-0.025386186,-0.05292611,-0.03441992,0.07095369,0.034360092,0.015255642,0.01871558,-0.03186734,0.019134363,-0.0055937353,0.0019418538,-0.005214837,-0.015345381,-0.013720106,-0.03156821,-0.006461213,0.003395128,-0.0040532146,-0.002854201,-0.010409732,-0.031189311,0.029274879,0.046066057,-0.021058768,-0.031508386,-0.011007993,-0.06628726,0.015205787,0.011705963,-0.0011896659,-0.018526133,-0.007727531,-0.009951065,0.02839743,-0.07785363,0.03591557,-0.014079063,-0.029354647,-0.012284282,0.027101198,0.037331454,-0.0042376784,0.0324656,-0.0055039963,-0.08100446,-0.06253816,0.01543512,0.00058704306,-0.020041725,-0.03188728,-0.03491847,0.016302597,-0.012822716,0.0010563036,-0.012114774,-0.0031882296,0.037630584,-0.044271275,-0.0010587964,0.034300268,0.016282655,0.014039179,-0.059427205,0.026004389,-0.021936217,0.014597556,0.017479176,0.011047876,-0.02602433,-0.0026373316,0.046265475,-0.019373668,-0.009761617,0.025585607,0.030152328,0.0061770394,-0.012084861,0.0063565173,0.0028990705,-0.048379328,-0.019812392,0.054960195,-0.025984446,0.033163574,-0.003941041,0.03194711,0.009906196,-0.01316173,-0.017977728,-0.012393963,0.007483241,0.06556935,-0.0100657325,0.060583845,0.0010394775,0.0021699406,0.0022023462,0.0099959355,0.0022497086,-0.0030511285,-0.010559297,-0.0029987807,0.004953098,0.0030685777,0.041678812,0.0055987206,0.014418077,0.03749099,0.036872786,0.045068953,0.007348633,0.014517787,0.0012787818,-0.011496572,0.03986409,-0.003848809,0.017259814,0.022374941,0.011386891,-0.02215558,-0.010479529,0.00029710488,0.022534477,0.03049134,0.015764164,-0.0055837645,-0.043553364,0.02720091,-0.008988864,-0.0048882863,-0.0070295604,-0.024987346,-0.022235347,-0.02058016,-0.01167605,0.010125558,-0.03463928,0.002470317,-0.026143983,0.030132385,0.010419703,-0.019872218,-0.0554388,0.016003467,-0.013331237,-0.0049356488,0.009018777,-0.017558945,0.045866635,0.037650526,-0.011037906,-0.023092855,0.026104098,-0.02592462,0.00935779,0.020151407,-0.020899232,-0.0021873899,0.0034250412,0.0075829513,0.021597203,0.010220283,-0.010629094,0.02167697,-0.009661906,0.016143061,-0.013740049,0.039126236,0.0060823145,-0.011257268,0.031189311,0.015514888,0.013171701,0.021936217,0.0017947814,0.03443986,-0.040741537,0.008769501,-0.0008961443,0.02482781,0.015574714,-0.016601728,0.013979353,0.021996044,-0.0020764624,-0.002002926,-0.034858644,0.00031938383,-0.028716503,0.0077524586,0.0022459696,0.0056685177,0.014408106,-0.04443081,0.025745142,-0.034679163,0.0075231255,0.033901427,-0.04215742,0.00727385,0.0052696774,-0.056715094,-0.0029190124,-0.052766573,0.018376566,0.026642533,0.008739588,-0.0003723548,0.005294605,0.03256531,0.04431116,-0.017299699,0.008914081,0.06776297,-0.010205327,-0.020739697,0.010928225,0.0014794483,0.00894898,-0.007024575,-0.028676618,0.0016227815,-0.00865982,0.0073087486,-0.025186766,-0.0016128105,0.013560571,0.0027320562,-0.040342696,0.016172975,0.010768688,-0.0026298533,-0.0082360525,0.0054391846,0.002804346,0.0066207494,0.021318015,-0.004290026,0.002794375,-0.0006487387,-0.020759638,0.028816212,-0.0055737933,0.017439293,-0.0044021998,0.040023625,0.001819709,-0.009796515,0.0077026035,-0.019852277,-0.022315115,0.01781819,-0.0028193025,0.041200206,-0.008958951,0.015674423,0.012114774,0.014507816,-0.008639879,0.04363313,0.03156821,0.018266886,-0.023790825,0.0145477,0.0018296799,-0.0031458528,0.0044470695,-0.012972281,-0.008475357,0.0019169262,-0.016990596,0.021397782,0.014707237,0.036075108,0.026383286,-0.014218657,-0.01890503,0.008644864,0.0004944997,0.019413551,0.01375999,0.0036518816,-0.01701054,-0.02285355,-0.009921153,0.0046464894,0.009023762,0.047222693,0.021517435,0.0021126072,-0.024708157,-0.0100507755,0.05340472,-0.055757876,-0.004170374,-0.017598828,-0.022933317,0.00082759367,0.03362224,-0.013909556,-0.00049044896,0.014667353,0.028915923,-0.041678812,-0.0055787787,-0.011526485,-0.00069797056,-0.04949608,-0.011037906,-0.0018072452,-0.012982252,-0.010738775,0.008879182,0.029354647,-0.011227354,-0.045388028,-0.023232449,0.023013085,0.023013085,-0.024588505,0.0046464894,-0.004070664,-0.0013248976,-0.0061072423,-0.0021799116,-0.025505837,0.01594364,0.020959059,-0.017479176,0.024109896,-0.0063365754,0.045946404,0.020879291,0.050812256,-0.011745847,-0.0008768255,-0.0069697346,0.016143061,0.039604843,-0.015963584,-0.0016963177,-0.0043149535,-0.018755466,0.036454003,-0.014986425,0.005907822,0.017678596,0.00806156,0.0044046924,0.079209685,0.007303763,-0.0013423469,-0.021876391,-0.06126187,0.04124009,0.028756386,-0.02295326,-0.032106645,0.038607743,0.0010307529,0.002702143,0.023830708,0.0013772454,-0.03067082,0.014288454,0.0010288834,-0.0056635323,-0.013530658,0.017648684,0.0008045357,-0.010698891,0.0076527484,-0.001703796,-0.011197441,-0.030610994,-0.007134256,0.009522312,-0.024987346,0.0017723467,0.03196705,-0.018416451,-0.023730999,-0.013101904,-0.013590484,0.004449562,0.025665374,-0.0012850136,0.030750588,0.044470694,-0.008340748,-0.0035895628,-0.006655648,-0.021597203,0.042994987,-0.0072439373,0.02265413,-0.02038074,0.022235347,0.02769946,-0.015145961,-0.0009852602,-0.023890534,0.00368678,0.0159237,-0.009367762,0.053843442,-0.020350827,0.027779227,0.012344108,-0.005728344,0.023491694,0.019752566,-0.009731703,0.03950513,-0.020560218,0.027559865,0.0047063157,-0.01751906,-0.010319993,-0.0005814344,-0.009532283,-0.026004389,0.011765789,-0.0022422303,0.013042078,-0.044949304,-0.016452163,0.0037839974,0.028477198,-0.015494946,0.014607526,0.03808925,0.01750909,0.034080904,0.0277194,0.01732961,0.026542822,0.018157205,-0.032764733,-0.0015043758,0.0031234182,-0.011985151,-0.034858644,-0.02355152,-0.0009696805,-0.0038413308,0.010260167,-0.00088305736,-0.02759975,0.009377733,-0.024169723,0.024608446,-0.015913729,-0.093966775,-0.013889614,-0.010828515,-0.015484975,-0.00007840484,-0.013022136,0.02305297,0.015305497,-0.05751277,0.025346301,0.0013136803,-0.06915891,0.021916276,-0.0162328,-0.058509875,-0.011297151,0.002874143,0.02552578,-0.017917901,-0.01424857,0.0153852645,0.06688552,-0.012623296,0.029374588,0.0024653317,-0.04993481,0.028118242,-0.048060257,-0.034200557,0.026243692,0.038328554,0.022335058,0.007293792,0.08004725,0.020330885,-0.009108515,0.03988403,0.03938548,-0.011307123,-0.00024709402,0.049535967,-0.0063864305,0.0111874705,0.009417617,-0.017180046,-0.00034898528,0.06915891,-0.02165703,0.011915354,-0.020360798,-0.0055339094,-0.006027474,0.0035820846,0.017419351,-0.028955806,-0.022474652,-0.031328905,0.02819801,0.013091933,0.037869886,0.0010027095,-0.014228628,0.020659927,0.024089955,-0.013201614,-0.015205787,-0.02275384,-0.03816902,-0.028038474,-0.0042750696,0.005304576,0.00093665154,-0.01593367,-0.010908282,-0.002592462,0.037750237,0.04323429,0.009133443,-0.031109544,0.02552578,-0.013420977,0.009218196,0.004018316,0.018915001,0.031029776,0.017180046,0.013401034,-0.0294743,0.013869672,-0.006835126,0.004227707,0.025485896,0.021198362,-0.0022584333,0.02008161,-0.040821306,0.038029425,0.0059626624,-0.014577613,-0.031129487,0.010599181,-0.002914027,0.019263986,0.02077958,0.006924865,0.0095522255,0.0010463326,-0.015046251,0.032824557,-0.016771235,-0.026642533,0.009133443,-0.009183298,-0.0033876498,0.015116048,-0.008919067,-0.023611346,-0.0052547213,-0.00024709402,-0.022275232,-0.0047387215,0.022594303,0.008520226,0.0524475,-0.009821443,-0.020021783,0.010160457,0.0012445064,0.007253908,-0.0032405774,0.005613677,0.036194757,0.018177148,0.016741322,0.007228981,0.038966697,-0.015913729,0.03908635,0.00028869184,0.02889598,-0.008375647,-0.01633251,-0.027819112,0.01147663,0.0372118,-0.002111361,-0.020460509,0.015784105,-0.00024989838,-0.009522312,0.008919067,0.028656676,-0.004137968,0.031508386,-0.0016925785,-0.025206707,0.025206707,-0.0006998401,0.008854255,-0.026662474,0.0013498252,0.040422466,0.015395236,0.0038064322,-0.011157557,0.005638605,-0.038228843,0.014657381,0.009911181,-0.010419703,0.021018885,-0.0025775055,0.010888341,-0.042436607,-0.016083235,-0.059148017,0.039445307,0.0037241713,0.016172975,-0.05017411,-0.017399408,0.022813667,0.003335302,-0.038428266,-0.0015617091,0.051131327,0.0036020265,0.0081164,0.018256916,-0.026343402,0.029534126,0.010449616,0.036254585,-0.04323429,0.00059296336,0.0070893867,-0.013331237,0.002804346,-0.03396125,0.019333784,-0.03950513,0.013710136,-0.0063166334,0.032226298,-0.0117558185,0.033103745,0.02582491,-0.0076826615,-0.0041354755,-0.028417371,0.03334305,-0.03264508,0.033901427,-0.011516514,0.0086797625,0.0034898527,0.02722085,0.014408106,0.009163356,0.01849622,-0.00046894894,0.040362637,-0.008350719,0.007154198,0.011037906,-0.038268726,-0.00048546345,0.0021387811,0.012423876,0.008211125,-0.00741843,0.009961037,0.016591758,-0.0054391846,0.021098653,0.019722654,-0.04231696,-0.006281735,0.003105969,0.016262714,-0.0145676425,0.0023232447,-0.004469504,-0.005618663,0.009322892,0.023810767,-0.010105616,-0.024468852,0.0051001706,-0.010220283,0.02474804,-0.021058768,-0.029653776,-0.02067987,-0.010649037,-0.056356136,-0.019224104,-0.01662167,-0.026582707,0.00021157232,0.014138889,-0.0015006367,0.008585038,-0.024169723,-0.003073563,-0.0108683985,0.0162328,-0.0024254476,0.00697472,0.04343371,-0.025645431,0.00970179,0.012832687,0.0724294,-0.03747105,0.026941663,0.060543958,0.0676832,0.009597095,0.014856801,0.005638605,0.025406128,0.017788278,0.022694014,-0.017548973,0.013550599,-0.024528679,-0.008385617,-0.013720106,-0.018456336,-0.0007085647,0.0068450966,-0.01850619,0.010310022,-0.016970655,0.025286475,-0.0257252,0.024309317,-0.02395036,-0.01582399,-0.0027669547,0.014846831,-0.017539002,-0.0050802287,0.01414886,-0.010070718,0.0050179097,0.003973447,0.01336115,-0.0026996504,-0.007936922,0.005204866,-0.009008805,-0.03096995,-0.017110249,-0.024389084,0.0066207494,-0.018436393,-0.02779917,-0.0051400545,0.0036718235,-0.035456903,-0.0008973907,-0.0073087486,0.0023382013,-0.02759975,0.00087246316,0.010080689,0.017947813,0.0020116507,-0.023471752,0.013720106,-0.026463054,-0.0026871867,-0.0037515915,-0.019642886,0.021218304,0.02492752,0.018476278,0.020600103,0.007832226,0.022933317,0.048299562,0.029434415,-0.0062268944,-0.0035696207,0.0050378516,-0.011317094,0.013520687,-0.00667559,-0.0016452163,-0.021736797,0.037949655,-0.0114367455,0.008714661,0.014527759,0.035775974,-0.025087055,0.020759638,-0.01336115,-0.04024299,0.025286475,-0.027440213,0.012025035,0.018157205,-0.00011622456,0.007827241,-0.03591557,-0.012772861,0.026283577,0.009093559,-0.0060623726,0.010200341,-0.01642225,-0.040781423,-0.018097378,0.019074539,-0.018276857,-0.0024079983,0.014896685,0.0028816212,0.016013438,-0.011725905,-0.038727395,-0.02542607,-0.0029738531,0.01789796,-0.006984691,0.01940358,0.0117558185,-0.019024683,-0.027858995,-0.015853902,-0.010828515,0.014208686,0.03126908,0.01969274,0.0013024629,0.0074732704,-0.0069597634,0.010240225,-0.01810735,-0.013680222,-0.024887634,-0.012723006,-0.006810198,0.003776519,0.00022948897,-0.009487414,0.03671325,0.005274663,0.00015322634,0.022893434,0.011356978,0.029534126,-0.034140732,0.0114367455,0.0006998401,-0.0111775,0.0039559975,0.0046365187,0.00033060124,-0.0065060826,-0.018027581,0.026961604,-0.0143881645,-0.0055937353,-0.0020802014,-0.029713603,-0.019134363,0.011107703,0.04471,0.015584685,-0.013301324,-0.029254938,-0.014826888,0.0063864305,-0.024349201,0.0385878,0.008824342,0.005778199,-0.0095522255,-0.029374588,-0.0006587097,-0.056156717,0.029554067,-0.00063128944,-0.032904327,-0.004060693,0.04263603,-0.01819709,0.00385878,-0.0059626624,-0.0036095048,0.01424857,0.044869535,-0.018924972,0.0057931556,-0.025585607,0.028337603,-0.013700165,0.014218657,0.018556045,0.0070694443,0.02512694,-0.02532636,-0.021776682,-0.041519277,0.013012165,-0.004743707,-0.02205587,-0.010698891,0.006401387,0.029274879,0.013600455,-0.0019842305,0.00065746333,-0.02879627,0.01840648,-0.008495298,-0.0069497926,0.040342696,0.0035297368,-0.017878016,-0.011446717,0.0029663749,-0.015654482,-0.027300619,0.04203777,-0.023691114,-0.017997669,-0.03226618,0.03701238,0.049456198,0.015345381,-0.014617497,0.007134256,-0.012952339,-0.023372043,0.0000063389903,-0.004691359,-0.046983387,0.0049306634,-0.0022060855,-0.02165703,-0.04530826,-0.00368678,-0.019752566,0.0017760857,0.0001869564,-0.025246592,-0.019443465,0.00010189124,0.0014657382,0.016412279,-0.01613309,-0.009477443,0.026203807,-0.0003153331,0.032006934,0.0056535616,-0.020400682,-0.0078023137,-0.022494594,-0.003936055,0.0069697346,-0.0020178827,-0.006605793,0.0015853902,0.01237402,-0.0075330962,0.0015554772,-0.024847751,-0.021617144,-0.016681496,0.030710705,0.033283222,-0.026064213,0.0063266046,0.027360445,0.05017411,0.038986642,0.00074595603,0.0044994173,-0.003083534,-0.02165703,0.0063565173,0.0006138402,0.016352452,-0.02215558,0.009188283,-0.033402875,0.008325792,-0.020021783,-0.01247373,0.00497304,0.01594364,0.05751277,-0.00994608,-0.015893787,0.006411358,-0.025346301,0.0372118,0.051490285,0.027858995,-0.015654482,-0.0014395643,0.008375647,0.028257836,-0.025246592,0.022933317,-0.023212506,0.0095522255,0.020400682,-0.021776682,-0.013640339,0.022075811,0.03850803,0.035895627,0.0029289834,0.0075181397,0.0033228383,-0.034100845,-0.019174248,-0.013929497,-0.009612052,0.030591052,0.0015043758,-0.032026876,0.043752782,-0.028417371,-0.048060257,-0.0046489825,-0.009412631,-0.06616761,0.010708862,0.01750909,0.015345381,-0.019244045,0.022414826,-0.005062779]},{"id":"interface-EmbedMediaOptions","type":"interface","source":"main","text":"Interface: EmbedMediaOptions\nDescription: Options for embed media (image, thumbnail, video, audio).\nProperties: content_type: string | null, description: string | null, duration: number | null, flags: number | null, height: number | null, placeholder: string | null, url: string, width: number | null","meta":{"url":"/docs/typedefs/EmbedMediaOptions"},"embedding":[-0.042224247,-0.01035306,-0.010033334,-0.008394099,-0.01195677,-0.05006009,0.03915893,-0.047136873,0.014463834,0.0003397098,0.012981925,-0.032175686,0.022756433,-0.035078604,-0.015103288,-0.020076817,-0.016818648,0.02411654,0.034835003,0.039118327,-0.008099747,-0.009759282,-0.025314247,0.04474146,-0.020218918,-0.009038628,0.00082532666,0.043685853,0.019092262,0.013844681,0.024948845,-0.024705244,0.0518465,0.015570191,-0.014524735,-0.015082988,0.0515217,-0.009926758,-0.018097555,-0.010018108,-0.0031439809,-0.017732153,-0.026451055,0.02047267,-0.007236992,0.05708393,0.008059147,0.0014704898,0.0021733814,0.038692024,-0.04474146,-0.026024751,-0.026633754,0.020005766,-0.00066165696,-0.0016671472,-0.00947508,-0.008419474,-0.011814669,-0.022492532,0.005077567,-0.020056516,0.008622475,-0.015113438,0.012342472,0.008734126,-0.057692938,0.041655842,-0.03284559,0.021944428,0.042549048,-0.016554747,-0.020289969,0.029658472,0.027019458,0.035383105,-0.02251283,-0.022756433,0.011784218,-0.036580812,-0.022634631,0.053592313,-0.06638139,0.0041031614,-0.011703018,0.043888856,-0.0341042,-0.017316,-0.026613455,0.01213947,-0.102474995,-0.013306728,-0.03926043,-0.02036102,-0.055622324,-0.03932133,0.019356163,-0.02588265,-0.0064199124,0.08932052,0.019193761,-0.004420351,-0.09135053,-0.01215977,0.0063031865,-0.050344292,-0.02395414,0.013398078,0.0010524342,-0.0027684285,-0.017488552,0.0022418944,-0.024421042,0.041777644,0.024867645,-0.04587827,0.027912663,0.04977589,-0.0029409796,-0.026796157,-0.062646165,-0.036154512,0.07454203,-0.015610791,0.020503119,-0.01567169,-0.016199494,0.015296139,-0.08729051,-0.04977589,-0.0059834598,0.010850413,-0.01867611,-0.0170724,0.006693964,0.009657782,0.023730839,0.025943551,-0.014575485,0.001903136,0.025050346,-0.022005329,0.055338122,0.023832338,0.0005690377,0.009825258,-0.022756433,0.02909007,0.0020363557,0.015316439,0.007937347,-0.0113173155,-0.029962974,0.025273647,-0.040255133,-0.055947125,-0.013174777,-0.016372046,-0.018747158,-0.030774979,0.054201316,-0.018158456,0.02399474,0.0032048812,-0.01568184,0.04794888,0.027993863,0.007582094,-0.033779398,0.011236115,0.019873817,-0.04307685,-0.0341651,0.0054099816,-0.004953229,-0.0001636697,0.053998314,-0.059316944,0.022533132,0.041980643,0.033413995,0.020848222,-0.008952352,0.004420351,-0.017387051,0.027384859,-0.06747759,0.010515462,0.04433546,-0.01904151,-0.021599326,0.004902479,0.014392784,0.014676985,0.011621818,0.005019204,0.006506188,-0.01722465,0.018168606,-0.051075097,0.04863908,0.027222458,0.038286023,0.0025527398,-0.0011266565,0.008150497,-0.0015960968,-0.00774957,-0.05509452,0.024502242,0.02228953,-0.0057804585,0.0116319675,-0.038732626,0.003258169,0.057205733,0.006968016,-0.017782904,-0.013976632,-0.013418378,-0.019711414,0.040904738,0.04774588,-0.019376462,0.014392784,-0.026471354,-0.061062757,0.007049216,-0.02728336,0.004356913,-0.025009746,0.020127567,-0.019264812,0.011713169,0.012251121,0.017559603,-0.016108144,-0.009500455,-0.011662418,-0.037108615,0.009023403,-0.016483696,-0.030571979,0.025131546,-0.012677424,0.01542809,0.024299242,-0.038367223,-0.047461677,0.01696075,0.029414872,-0.023568437,0.028501365,0.015945744,0.048760884,-0.0516029,-0.01215977,0.061265755,-0.0039585233,0.035017703,0.013408228,-0.044376057,-0.0034637076,-0.020371169,0.0122815715,0.010068859,-0.020117417,0.011591367,0.0075161187,-0.03966643,0.027973562,-0.017062249,0.012565773,0.038955927,-0.02051327,0.026674354,0.013377778,-0.012545473,-0.04258965,0.011104165,-0.033271894,-0.036986817,-0.030531378,0.06719339,-0.03250049,-0.01556004,0.038042422,0.0170521,0.004925316,0.010150059,-0.0054607317,-0.009784657,0.061184555,-0.052820906,-0.039849132,0.013103726,0.014402933,-0.02551725,0.06735579,0.012718024,-0.000024919189,-0.028379565,0.024563143,-0.028379565,0.018016355,0.026978858,0.053917114,0.0069324905,0.029800573,-0.017925004,-0.0014400396,-0.029820874,-0.033231292,0.024624044,-0.06357997,0.040681437,0.05290211,0.021436924,-0.041493442,-0.02397444,0.024481943,0.01553974,-0.03627631,-0.071659416,0.0069274153,-0.04299565,-0.03112008,-0.012809374,0.014494284,-0.04660907,0.0015301214,-0.0046893274,-0.013509729,0.005501332,0.035667308,-0.013560479,0.0024042951,0.016199494,-0.033332795,0.021680526,0.010992514,-0.027648762,-0.004821278,0.0343681,0.00044565104,-0.020695971,-0.080226064,0.016300995,-0.0094294045,-0.028257765,0.00117931,-0.012555623,-0.037636418,0.022918833,-0.003613421,-0.018402057,0.019802766,-0.07145642,-0.0857477,0.00054937194,-0.036235712,0.026613455,-0.021213623,0.010129759,-0.024400743,-0.043279853,-0.031140381,0.015651392,-0.013103726,-0.008942202,0.04295505,0.03243959,-0.028481066,0.012433822,-0.023142135,0.014900287,0.028196864,0.018584758,-0.02053357,-0.023263935,0.02909007,0.006191536,0.040072434,-0.013885281,-0.0024550455,-0.04137164,0.0073790927,0.019914417,-0.0141694825,0.01541794,0.019904265,0.03737252,-0.06634079,-0.027689362,0.010769213,0.035423707,-0.021680526,0.019985467,0.00064801786,-0.019589614,0.02064522,0.0013245827,-0.017610352,0.030937381,-0.008901602,-0.0687768,0.043929458,0.0048441156,0.019538864,-0.004255412,0.017874254,-0.0032708566,0.031383984,0.027648762,0.0075059687,-0.0007098698,0.0017952917,-0.045228664,0.021457225,0.007967796,-0.030734379,0.03268319,-0.014098432,0.024522543,0.00932283,-0.014352184,0.03089678,-0.019254662,0.0013004764,-0.053754713,-0.008094672,0.08436729,0.06370177,0.013337177,0.017701702,-0.016950598,-0.000904624,-0.012109021,-0.0171536,0.040072434,-0.04323925,0.03619511,0.044091858,-0.0016595346,-0.023304535,-0.011286866,0.0062778117,0.047258675,-0.018655809,-0.06508218,0.012210521,0.03792062,-0.039828833,0.027222458,0.01362138,0.014991637,0.0026999158,-0.007851071,0.02411654,-0.01545854,-0.023081234,0.019630214,0.025111247,0.026796157,0.0009388805,0.0002382092,-0.0052323556,0.014859687,0.0053034057,-0.023020335,0.013469129,0.031769685,0.017387051,0.021660225,-0.029922374,-0.041574642,0.0026643905,-0.040458135,-0.006328562,0.00016446268,0.011713169,0.019944865,-0.048801485,-0.009881083,-0.0076531447,0.086397305,0.03116068,0.021254225,0.019193761,-0.040194236,-0.00771912,-0.028359266,-0.037230417,-0.0059124096,-0.0132458275,-0.025172146,-0.047867678,-0.0010023183,0.009662856,0.01376348,0.030409576,-0.028602866,-0.035545506,-0.0017952917,0.048882686,-0.0069527905,-0.005475957,-0.026248053,-0.047542877,0.0053795315,-0.04120924,0.0026821531,-0.023507537,0.023507537,-0.027689362,0.0008183485,-0.036662012,0.026491655,-0.005455657,0.0072522173,-0.043117452,0.006039285,0.024806745,0.00075744814,-0.0036413337,-0.015316439,-0.033332795,-0.078723855,0.028135965,0.0007073322,-0.032155387,-0.02233013,-0.013124026,0.0033672822,-0.017508851,-0.008866076,0.010028258,0.007612544,0.023548137,-0.05501332,-0.0046157395,-0.013956332,0.012291722,0.0053795315,-0.022188028,0.03627631,-0.006633064,-0.008729051,-0.006572163,0.0014514584,0.0074399933,-0.04595947,0.04985709,-0.008302748,-0.001991949,0.041737042,0.006688889,-0.006856365,-0.007028916,-0.0011716974,0.0015834093,-0.050303694,0.009622256,0.033738796,-0.0047882902,0.0112970155,0.008937127,-0.022086529,-0.0034535576,-0.016514147,-0.01366198,0.019244513,0.014687136,0.059844747,0.012423673,0.01558034,-0.015793491,0.027384859,-0.034226,-0.0062118364,0.008282448,-0.021294825,0.0024829581,0.0064503625,0.038448423,0.007881521,0.021457225,0.020452369,0.01033276,0.061143957,0.030165976,0.02906977,0.026674354,-0.008150497,0.013590929,0.01716375,0.04977589,0.025273647,-0.019965166,-0.0014463834,0.016503995,-0.004161524,-0.020371169,0.025131546,0.029983275,0.031952385,0.01890956,-0.005831209,-0.07048201,0.0034662453,0.008891452,0.010337835,-0.014189783,-0.021233924,-0.034022998,-0.0028166415,-0.042061847,0.011662418,0.008140347,-0.013296577,-0.015996493,0.01376348,-0.013286428,0.035606407,-0.059519947,0.004973529,-0.02580145,-0.028399866,0.02064522,-0.0026136402,0.022005329,0.028684067,0.007998247,-0.016767899,0.0067650145,-0.020462519,-0.010155134,-0.014342033,-0.020990321,0.003242944,0.03800182,0.013103726,0.011104165,0.006333637,0.009718682,-0.0052425056,-0.0173972,0.021619625,-0.031729084,0.019051662,-0.027750261,-0.015204788,0.019792615,0.007582094,0.022106828,-0.012454122,-0.019944865,0.04118894,-0.024867645,0.0037301467,0.024563143,0.034205697,0.011500017,-0.021233924,0.023203036,0.0018790297,-0.0141694825,-0.036946215,-0.059316944,-0.032074187,-0.01020081,0.0005522267,0.018381758,-0.009190879,0.021802327,-0.07697805,0.029638173,0.0010898625,0.0020249367,0.020147868,-0.029638173,0.0171739,-0.022939134,-0.03219599,0.023121834,-0.052820906,-0.003263244,0.024542842,0.009216254,0.024786444,0.009936908,-0.00063247554,0.04299565,-0.0058464343,-0.025009746,0.09126933,0.011520317,-0.00024042952,0.04474146,-0.020746721,-0.0034611702,-0.00045421516,-0.042467847,-0.00342057,0.025050346,0.016179195,-0.012383072,0.0028115665,0.031099781,0.026654055,-0.020888822,-0.023791738,-0.012535323,-0.042346045,0.009297454,-0.012677424,-0.0017369288,0.01541794,0.024664644,0.049532287,0.017925004,-0.04315805,-0.052455507,0.031383984,-0.00391031,0.011510167,0.013530029,0.015610791,0.021518126,0.0068056146,0.009500455,0.0026212528,-0.013408228,0.02391354,-0.025009746,0.047867678,0.009865858,0.026735255,0.0128702745,0.0069933906,0.02947577,0.040072434,0.03112008,0.03292679,0.011114315,-0.0008005859,-0.0060545104,-0.0029587422,0.012504873,0.019518564,-0.054079514,0.00191963,-0.015235239,0.011560917,-0.013327028,-0.020097118,0.00856665,-0.012362772,-0.0170521,0.012352622,-0.0011716974,0.02559845,-0.006729489,-0.0038874727,-0.012829674,-0.048273683,0.010880863,-0.009647631,0.017722003,0.033941798,-0.013296577,-0.0077444953,-0.036966514,-0.035261307,0.03128248,-0.04604067,-0.016108144,-0.03083588,-0.042061847,-0.006724414,-0.00946493,-0.0005604736,-0.0034231073,-0.016189344,0.022695532,-0.00192978,-0.04003183,-0.040782936,-0.022736132,-0.03958523,-0.03609361,0.0040524113,0.035687607,-0.04644667,-0.008581875,-0.002536246,-0.021822628,-0.05708393,0.024461642,0.043279853,-0.0346523,-0.020269668,-0.026735255,0.009657782,-0.004435576,0.005288181,-0.019721566,0.0006730758,0.021782028,0.03580941,-0.033779398,0.0074450686,-0.0050217416,0.016666397,-0.0029714298,0.04648727,0.012342472,0.023466937,0.031201283,-0.008911752,0.031708784,-0.0051054796,-0.008267223,0.011713169,0.013824381,0.020158017,-0.014159332,-0.0125962235,0.05001949,-0.02057417,0.014108582,0.032947093,0.015184488,0.0027582785,0.00300188,-0.021132423,0.0025565461,0.0344493,-0.0031389059,-0.008551424,0.03735222,0.022573732,0.000027932487,0.02237073,0.0129311755,0.0008481643,0.026897656,0.010951914,-0.004356913,0.0014007081,0.019762166,0.005653583,0.016128443,-0.03753492,0.0031718935,-0.029699072,0.0035652083,-0.026390154,0.024644343,0.0041031614,-0.03751462,0.025334548,0.007049216,-0.0071710167,-0.02555785,-0.027729962,-0.01038351,-0.020208769,0.022005329,0.022106828,0.035038006,-0.02255343,0.0071811667,-0.0110229645,0.009058928,0.018554308,-0.017488552,0.019427214,0.000041313913,0.03960553,0.015742742,0.010850413,-0.0041488367,-0.021132423,-0.00069781655,-0.013651829,-0.021964729,0.0346523,-0.02555785,0.035220705,-0.008064222,-0.00025153116,-0.0006258146,0.009779582,-0.018462958,0.033880897,-0.007226842,0.034672603,-0.009028478,0.005369381,-0.04855788,-0.015986344,-0.009546131,-0.034997404,0.014626235,0.014646536,0.026187152,-0.020746721,-0.035850007,-0.003613421,0.04494446,0.007582094,-0.010840263,0.031911787,0.0007669638,0.016747598,0.009825258,0.0029232171,0.009708531,-0.03112008,-0.033576395,-0.012525173,0.0057398584,0.021152724,-0.037311617,-0.032317787,-0.03599211,-0.014352184,0.040052135,0.010962063,-0.018706558,0.0015821405,0.004821278,-0.003273394,-0.00681069,-0.0338403,-0.028765267,0.017823504,0.023385737,0.017376902,-0.00196023,0.002097256,0.04949169,-0.050425492,0.045715865,-0.0075668693,-0.052414905,0.037007116,-0.03651991,-0.02415714,-0.004861878,0.009170579,-0.00095093367,-0.015691992,-0.012474422,0.045594066,0.037555218,-0.0074399933,0.016808499,0.018635508,-0.024441343,0.02584205,-0.017640803,-0.011642118,0.0036159586,0.017965605,0.029577272,0.021599326,0.046568472,0.0010289622,-0.021254225,0.008581875,0.05010069,0.009764357,0.0017178975,0.030389277,0.0018282793,0.0001550263,0.0076176194,-0.0129311755,-0.021782028,0.06552878,-0.0061255605,0.010170359,-0.025273647,-0.0007352449,-0.0015491528,-0.005724633,0.006171236,0.024969146,-0.0068157646,-0.01558034,0.009013252,-0.009124903,-0.0026187152,0.016767899,-0.004496476,0.028054763,-0.014981487,0.004506626,-0.0000789405,-0.019772315,-0.04478206,0.0028267915,0.043361053,-0.010840263,0.01377363,0.003415495,0.0045117014,0.0054708817,0.003948373,-0.0049506915,0.035829708,-0.018655809,-0.002221594,-0.03960553,0.017295701,0.008632625,0.010119609,-0.019853516,0.013103726,0.00013916682,0.0062930365,0.01876746,-0.010413961,0.00858695,-0.0036946216,0.009348204,0.013428528,0.02241133,-0.057043333,0.044010658,-0.0047197775,-0.00057189236,0.009982583,0.012048121,-0.0064808126,0.005288181,0.028298365,-0.012921025,0.00024613892,-0.013347328,-0.025984151,0.008805176,-0.0086783,-0.009058928,0.011286866,-0.008272299,-0.021721127,0.007165942,-0.0072014667,-0.00433915,-0.023406036,-0.00948523,-0.011246266,-0.007922121,0.019792615,0.011144765,0.029739672,0.005841359,0.003922998,0.021173023,0.016717147,0.0023383198,-0.016798347,0.0011317316,0.017985905,-0.0006083692,0.0056282077,0.017914854,0.037494317,-0.026552554,0.027831461,-0.00088813016,0.015367189,-0.007967796,0.013164626,-0.04323925,0.003326682,0.007922121,-0.021903828,-0.017468251,0.022797033,-0.0122612715,-0.02212713,0.023223335,0.0019856053,0.026288653,0.036235712,-0.0026694655,-0.021883527,0.029638173,-0.009825258,-0.015164188,-0.023507537,0.028359266,0.020929422,-0.00069781655,0.0042528748,-0.038489025,0.0050953296,-0.029374272,0.006683814,0.025699949,-0.005110555,0.001757229,-0.009277154,-0.04604067,-0.054079514,-0.021619625,-0.036641713,0.03808302,-0.010606811,0.016443096,-0.03266289,-0.0075161187,0.02572025,0.0043797507,-0.0033723572,0.00078092015,0.010256635,-0.0071304166,-0.0035550583,0.013296577,-0.04457906,0.024542842,0.024887946,0.009221328,-0.012515022,0.0034763953,0.0025705025,-0.0014362334,0.012494722,-0.036702614,0.011266566,-0.038184524,0.025456348,0.0007777483,0.007176092,0.00095029926,0.02072642,0.00020744183,-0.020137718,0.011560917,0.009566431,0.012230821,-0.018046806,0.024624044,0.019274963,0.0060342103,-0.0029790422,0.033474896,0.006516338,0.013124026,0.027303658,-0.015894992,0.024908245,-0.019396763,-0.003326682,0.0029054545,-0.010586511,-0.009784657,-0.002588265,-0.013113877,-0.018026505,0.02746606,-0.018097555,0.023629338,-0.00776987,0.02228953,0.045391064,-0.018635508,-0.0072420673,-0.016737448,0.004623352,-0.0077444953,-0.0031617435,-0.0075059687,0.0138345305,0.02212713,-0.0025057958,-0.0055317823,0.0086986,-0.016940448,-0.014220233,0.04129044,-0.015336739,0.003844335,-0.03767702,-0.008703676,-0.008236773,0.014443534,0.0033926573,0.005684033,-0.017549451,0.04798948,-0.020909121,0.0033342943,0.018737009,0.0059834598,0.007988096,0.006749789,0.007226842,0.022959433,0.01358078,-0.03635751,0.0015948281,-0.030389277,0.054769717,-0.0345508,0.038346924,0.06012895,0.039280728,0.03611391,-0.0037326843,0.014179633,0.05010069,-0.017021649,0.0020350867,0.008013472,-0.016067544,-0.004265562,0.011804518,-0.008449924,-0.03599211,0.0011463223,0.012565773,-0.033474896,-0.029841173,-0.035626706,0.027344259,-0.048273683,0.024096241,0.0057652337,-0.022695532,-0.0068259146,0.014210083,-0.014778486,-0.001882836,0.026349554,0.021254225,0.0028800792,0.026511954,0.00682084,0.003623571,-0.02576085,-0.008779801,-0.005338931,-0.00389001,-0.008932052,0.03071408,-0.004255412,-0.024177441,-0.031729084,-0.007206542,0.0033342943,-0.02592325,-0.012342472,-0.0030221802,0.023466937,-0.019660665,-0.016879547,-0.013154477,0.003603271,-0.009190879,-0.0048923283,-0.03258169,0.0035220706,-0.007231917,0.01879791,-0.021477524,0.0051866802,0.026146552,0.019021211,0.011834969,-0.020970022,0.04116864,0.027932962,0.0171536,0.0059479345,-0.019132862,-0.00081517664,0.0012846169,-0.009662856,-0.017600203,0.019305412,-0.028602866,0.02063507,-0.0147581855,0.0034865453,0.036479313,0.040437836,-0.024421042,-0.014078132,0.007602394,-0.0037453717,0.023588737,-0.042386647,-0.008454999,-0.0040244986,-0.017965605,0.033880897,-0.011388366,0.0086986,0.02224893,-0.003534758,-0.014128882,0.0019830677,-0.0046893274,-0.031729084,-0.005369381,0.03816422,-0.0074196933,-0.02415714,-0.0129311755,0.025375148,-0.0063133365,-0.009327904,-0.024522543,0.0015453465,0.014007081,0.0066127637,-0.004684252,-0.0016811035,0.0021048684,-0.053998314,-0.02931337,-0.003362207,-0.010566211,0.014453684,0.034591403,0.006739639,0.017945305,-0.014027381,-0.028440466,0.01371273,-0.0043797507,-0.0038316473,0.006663514,-0.017762603,-0.026694655,0.041858844,-0.0132255275,-0.01553974,0.025740549,0.04323925,0.022492532,0.015823942,0.0122815715,0.007424768,-0.03227719,0.020188468,-0.019528713,-0.014453684,0.021964729,0.0025527398,0.01373303,0.033434294,-0.04798948,-0.004367063,-0.010769213,0.016382195,0.028338965,0.0026923032,-0.020036217,-0.015935592,0.03759582,0.014930737,-0.0053744563,0.008048997,-0.044010658,-0.0011368067,0.001840967,0.004506626,-0.00045072607,-0.0036337213,0.0051333923,0.003248019,-0.013479278,-0.014737885,0.021863228,0.011784218,-0.010444411,0.033962097,0.015296139,0.005988535,-0.022715833,-0.015255539,-0.021030923,-0.023751138,-0.015976192,-0.012362772,0.006968016,-0.0125962235,0.0075871693,-0.016788198,0.0044000507,0.0018384295,0.011601518,0.023345135,-0.045715865,0.0024753457,0.0022774194,0.004120924,-0.043442253,0.00045706984,-0.015986344,-0.015620941,0.0030932305,0.02239103,0.0056485077,-0.005184143,-0.030044176,0.009825258,-0.003316532,-0.006308262,0.035850007,-0.011743618,-0.009292379,-0.016666397,0.008470224,-0.01907196,-0.018432507,0.051156297,-0.022715833,-0.028602866,-0.02067567,-0.024441343,0.04291445,-0.009058928,0.028318664,0.008104823,0.03822512,-0.024218041,-0.010216035,0.0052171303,-0.035525206,0.027872063,0.010677862,-0.037474018,-0.038529623,-0.014473984,-0.013113877,-0.027263058,-0.006511263,-0.006216911,-0.014402933,-0.02913067,0.02596385,0.008251998,0.002097256,0.01202782,0.025943551,-0.026836757,-0.010515462,-0.017255101,-0.019609915,-0.019853516,-0.0074958187,0.00065721635,-0.0012611449,-0.016676547,0.017884403,-0.029983275,0.004496476,0.020452369,-0.006699039,-0.014047681,-0.016179195,0.0030627802,-0.008795026,0.068411395,-0.028399866,0.032053888,0.016646096,0.04283325,0.049004484,-0.009312679,-0.009678082,0.0062321364,-0.026187152,0.001579603,0.010175434,-0.018331006,0.0020097117,0.009165503,-0.030084776,0.040904738,-0.019417062,0.014220233,-0.024481943,0.00090335525,0.06439198,0.018067105,-0.020949721,0.024928546,-0.022106828,0.023751138,0.075760044,0.03548461,-0.04847668,0.008373799,0.012454122,0.02226923,-0.0035677457,0.003357132,-0.00048276217,0.009241628,-0.0007054291,-0.052252505,0.010165284,0.024542842,0.03956493,0.03578911,0.012352622,0.0025603524,0.005445507,-0.04612187,-0.0006965478,0.002070612,-0.0151337385,0.006521413,-0.02255343,-0.0516841,0.026593154,-0.025496949,-0.018270107,-0.0004770528,0.016240094,-0.05489152,0.028278064,0.007871371,0.005359231,-0.027100658,-0.038265724,-0.008449924]},{"id":"interface-EmbedType","type":"interface","source":"main","text":"Interface: EmbedType","meta":{"url":"/docs/typedefs/EmbedType"},"embedding":[-0.036069293,-0.013861736,-0.007907288,-0.008318412,0.0025249876,0.0020059433,0.03102617,0.0030371798,0.0002608069,-0.03801528,0.0038234547,-0.020172492,0.039851636,-0.0012804804,0.0068657734,-0.02831275,0.020241013,0.010559039,0.005940744,0.044648085,0.009455856,0.014649725,-0.011463512,0.034808513,0.00042375768,-0.00020352787,-0.020679545,0.04818375,0.01327931,0.004224301,0.01023014,-0.030943945,0.06934294,-0.0055912887,0.020282125,-0.0031399608,0.04982825,0.028532017,-0.01046311,-0.013731547,0.025750076,0.015732352,-0.009983465,0.021405865,-0.018020943,0.04664889,-0.0100930985,0.02976539,-0.010072542,0.020117676,-0.00630733,-0.023941131,-0.016828682,0.00083766546,-0.00005179201,0.017089061,-0.02410558,0.027038265,-0.028285343,0.015800873,-0.016143475,-0.008441749,0.015910504,0.031355068,-0.016897203,-0.014087855,-0.05043123,0.03450702,-0.018322434,-0.007407087,0.053062424,-0.02347519,-0.06753399,0.022584422,0.047334094,0.012724292,-0.03754934,0.031409886,0.005714626,-0.017568706,0.007372827,0.02244738,-0.04804671,-0.018349841,0.0007691448,0.009640861,-0.043496937,0.0141700795,-0.065067254,-0.008976211,-0.04675852,-0.011723891,-0.045744415,-0.02665455,-0.016280517,0.023653343,-0.041605767,-0.035219636,-0.047854852,0.031272843,0.06934294,-0.01582828,-0.04848524,-0.022694053,0.039550144,-0.035219636,-0.008099146,-0.0037480819,-0.05374763,0.0011057527,-0.028257934,-0.015252707,0.004762188,0.019761369,0.01463602,-0.027106786,0.045168843,0.030806905,0.0009592897,-0.019035049,-0.045251068,-0.00894195,0.019829888,-0.007331714,0.007187821,-0.020542504,-0.035411496,0.015979026,-0.068356246,-0.05903743,0.012463914,-0.025010053,-0.022063663,0.02960094,-0.0007871315,-0.008592495,-0.023105178,0.04917045,-0.035274453,-0.018678742,-0.036151517,-0.01861022,0.06605395,-0.012258352,0.0025986473,0.03659005,-0.0188706,0.014540091,0.010415145,0.020336943,-0.0019477007,0.012525583,-0.036096703,-0.0006693615,-0.059585594,-0.057667017,-0.04045462,-0.0009113252,0.016801273,0.0033986263,0.008654163,-0.06046266,0.02109067,0.024379663,-0.06292941,0.03549372,0.027490502,-0.015526789,-0.061997525,0.025750076,-0.023105178,-0.0049266377,-0.04530588,0.020008042,-0.01003143,-0.03467147,-0.014978624,-0.049006,0.012032234,0.032369174,0.026229722,0.0807996,-0.007982661,-0.03119062,0.01364247,0.032807708,-0.025078574,0.0015494241,0.023557415,-0.021049557,-0.049883064,0.02562674,-0.0141700795,0.025750076,0.02618861,0.01566383,0.023749273,0.00085822167,0.03864567,-0.034287754,0.033958856,0.013265606,0.07783951,-0.016773866,-0.009777903,-0.00784562,-0.009640861,-0.011532033,-0.032095093,0.030149106,0.026161201,-0.004405881,-0.0021121504,-0.03817973,-0.0057762945,0.034918144,0.0076880218,-0.001384118,-0.008955655,0.008921394,-0.008160815,0.02363964,0.07690763,-0.038070098,0.024050763,0.033712182,-0.03231436,-0.025585627,-0.023530006,-0.014814174,-0.02761384,0.01924061,0.015567902,-0.048430428,-0.00093959004,0.06501243,-0.03132766,-0.02410558,-0.0013815485,-0.010284957,-0.0480193,-0.0019973782,0.01201853,0.005118496,-0.029792797,-0.009819016,0.018747263,-0.038563445,-0.034260347,0.04467549,0.045114025,0.028614242,0.015211594,0.009798459,0.031409886,-0.013800068,0.002578091,0.0639161,0.03549372,0.005714626,0.004912934,-0.038810123,-0.00023425512,0.010380886,0.0037686382,-0.047635585,0.011305914,-0.016198292,0.014238601,-0.012059642,0.0057660164,-0.0049780286,0.025530811,0.007825064,-0.057502568,-0.048731916,0.014279713,0.015814576,-0.058653712,-0.0024170675,-0.04549774,-0.05711885,-0.016211996,0.035987068,-0.03346551,-0.031437293,-0.0028812953,0.013923405,0.020569913,-0.0111072045,0.0024273456,-0.0075578326,0.04453845,-0.044291776,-0.031053578,0.012463914,0.026380466,-0.002192662,0.07685281,0.01725351,0.029820206,-0.0027768011,0.032862525,0.011244246,-0.000148176,0.01324505,0.0055638803,0.021611426,0.025475994,-0.036699682,-0.03565817,-0.05328169,-0.03593225,0.0042174486,-0.04229097,0.04009831,0.057228483,0.027586432,-0.04119464,-0.006780123,0.016924612,0.033136606,0.015239002,-0.06643766,0.024955237,-0.053638,-0.039604962,0.001988813,0.023680752,0.015650127,-0.001981961,-0.0031074134,0.000148176,-0.021364752,0.06440945,-0.011991122,-0.006050377,-0.0029806502,-0.011956861,0.0417154,-0.0044195848,-0.02424262,0.019405061,-0.005423413,0.004936916,-0.0031348218,-0.021844396,0.024091875,-0.022255521,0.001981961,-0.00395707,0.0070370752,-0.026819,0.0030885702,0.012765406,-0.014608612,0.052459445,-0.058050733,-0.026380466,0.009510673,-0.01575976,0.03790565,0.0063484423,0.034972962,-0.04489476,-0.0005434548,-0.014992327,0.04166058,-0.005515916,-0.05585807,0.024503,0.060243394,0.017774267,0.012587251,0.00071818253,0.005964726,0.01463602,-0.015979026,0.0147730615,-0.016486079,0.027353462,0.004375046,0.049033407,-0.030203922,0.0029755111,-0.0152801145,0.027298644,0.02546229,-0.053638,0.019172091,0.051061623,-0.01606125,-0.031218028,-0.0377412,0.078661755,0.006519744,0.026311947,0.021679947,0.025667852,-0.027202716,0.00433736,-0.025325248,0.028052373,0.007297454,-0.016609415,-0.021446977,0.039714593,-0.0012599243,0.03722044,-0.0136630265,-0.005913336,-0.07027482,0.04330508,-0.016979428,-0.015033441,-0.015334931,-0.04456586,-0.069233306,0.028888324,0.027408278,-0.0463474,-0.013073748,-0.041879848,0.011011275,0.025750076,-0.015937913,0.053035017,0.028257934,-0.009688826,-0.07290602,-0.000039158505,0.06172344,0.022255521,0.011401843,-0.0142660085,0.031272843,0.04009831,-0.024571521,0.008366377,0.056296602,-0.04075611,0.017870197,0.029820206,-0.023735568,-0.02929945,-0.062107157,-0.029409083,0.018459475,-0.039906453,-0.046237763,-0.048814144,0.000046010577,-0.03261585,0.034479614,0.020624729,-0.015650127,0.0049677505,0.026407875,0.032177318,0.00374123,0.034479614,-0.0013198799,-0.013464317,0.045223657,-0.006225105,0.012477619,0.027559023,-0.0062799216,0.011353879,-0.027463093,-0.0496638,0.012025381,-0.013525985,0.0036213186,-0.020583617,-0.0065814126,0.021912917,-0.05827,-0.04807412,-0.023790386,0.0026466118,-0.023297036,-0.05456988,-0.023886314,0.026037864,0.14054964,0.021049557,-0.025147095,-0.0037378038,-0.0071946727,0.0074413475,-0.015677534,0.0061874185,-0.017390553,0.01321079,-0.01566383,-0.06172344,-0.033602547,0.021858102,-0.036014475,0.06550578,-0.023338148,-0.017431665,0.01704795,0.045388106,-0.0094421515,0.02178958,-0.014814174,-0.05089717,-0.03738489,-0.018295025,-0.016047547,-0.02718901,0.010113655,-0.018719854,0.0014012482,-0.03393145,0.07570166,-0.0017421386,-0.017390553,-0.0070987437,-0.0070644836,-0.0043784725,-0.05182905,-0.004344212,0.019035049,-0.030286146,-0.026298242,-0.016869795,-0.023009248,-0.016856091,-0.022995545,-0.0018020943,-0.011833523,-0.0374123,0.0040872595,-0.027887922,0.037028585,0.009325666,-0.022241818,0.005190443,-0.0024033634,-0.017431665,0.004909508,-0.030971354,0.04218134,-0.031629153,-0.038344182,0.023022953,0.028257934,-0.0082361875,-0.028066076,0.02092622,-0.01629422,0.034424797,0.056104746,0.009216033,0.010634412,-0.014745654,0.031053578,-0.023530006,-0.012326873,0.030779496,-0.008523975,-0.022502195,0.03916643,0.016897203,-0.013375239,0.011141465,-0.0002640188,-0.05478915,0.013416352,-0.007126152,0.120596424,-0.02992984,-0.021378456,0.005526194,0.021926623,-0.0077565424,-0.006190845,-0.014457867,0.025763782,-0.0029104166,0.008428046,0.001230803,-0.019884706,0.027860515,-0.007701726,-0.0001493537,0.017171286,0.028504608,0.014937512,0.003336958,0.0024136414,0.021584019,-0.021940326,0.039358288,0.016540896,-0.042263564,0.019994339,0.0009978326,-0.0068760514,0.006122324,-0.009010471,0.015088256,0.030450596,0.038563445,0.0005074814,-0.017925013,-0.00026830134,-0.018623924,0.007729134,0.0043784725,-0.03801528,-0.0099971695,-0.007503016,-0.014293416,-0.012827074,0.007770247,0.011607406,-0.015526789,0.0051527563,0.009339371,0.020117676,-0.046868153,0.008969359,-0.02665455,-0.020871403,0.026394172,0.0037583602,0.020336943,0.02195403,-0.010072542,-0.0023434078,-0.008729536,-0.012765406,-0.011100353,-0.0031348218,-0.0013918265,-0.033383284,-0.01559531,-0.020186197,0.024160396,-0.01158685,0.0051801642,0.017637227,0.018267617,0.023297036,-0.028367568,0.01347802,-0.018898007,-0.0023965114,0.018240208,-0.014896398,0.046018496,-0.03450702,-0.011573145,0.038727894,-0.011394992,-0.0023485469,0.024078172,0.0094901165,-0.0062730694,-0.032807708,0.0024479018,0.013793216,-0.022228112,-0.016609415,-0.04711483,0.009263998,0.024352254,0.037193034,0.007941549,-0.00033446663,0.036617458,-0.028148301,0.021186598,0.020706953,-0.013313571,-0.005039697,-0.03373959,-0.0008342395,-0.042619873,-0.016705345,0.015581606,-0.010134211,-0.022817392,-0.0041078157,0.0018055203,-0.01575976,-0.0040358687,0.010538483,0.0340959,-0.022584422,-0.0062490874,0.026010456,0.018993936,0.0007961248,0.002166967,-0.040673885,-0.015746055,-0.019980634,-0.021392161,-0.022077367,0.0044127326,-0.03387663,0.0057728686,0.0012505027,0.04473031,0.0025215615,0.0053788745,-0.021666244,0.0011066092,-0.011127761,0.031218028,0.028532017,-0.0037378038,0.032807708,0.056954402,0.020076564,-0.009819016,-0.013032636,-0.009209181,0.00887343,-0.019912114,0.00019528398,-0.013717843,0.028614242,0.010648116,-0.009010471,-0.00493349,-0.0058722235,-0.010689228,0.01384118,0.0010954746,0.040509433,-0.028504608,-0.018418362,-0.0065642823,-0.0056461054,0.020186197,0.012244648,0.037604157,0.009462708,0.02536636,0.049608983,0.0042105964,0.02188551,0.010853678,0.00374123,-0.023283333,0.010867382,-0.035438903,-0.0009310249,-0.0092502935,-0.0364256,0.045086615,-0.032095093,-0.03242399,0.014512683,0.020350646,0.01284763,0.004083833,0.009983465,-0.0158968,-0.015636422,-0.010901642,-0.04103019,0.0317936,0.03258844,-0.004124946,-0.030587638,0.00064752053,-0.020816587,0.033520322,-0.033629958,-0.054186165,-0.024256326,-0.0030782921,0.018363547,-0.02148809,-0.0023057214,-0.029792797,-0.013889145,-0.0029977805,0.019089865,-0.007304306,0.023420373,0.015307523,-0.022872208,-0.028586833,-0.002274887,0.028696466,-0.003950218,0.018596517,0.012923003,-0.005536472,-0.09132438,-0.0136150615,0.011908896,-0.0001860765,-0.00026102102,-0.018226504,0.033986263,0.025174502,0.028943142,-0.006327886,0.007941549,0.0036864134,0.021803284,-0.031903233,0.005707774,-0.017006837,0.045141432,0.0029035644,0.01122369,0.0046731113,0.0020333517,0.0088391695,0.04012572,0.05489878,-0.01029866,0.0014218044,-0.026462693,-0.000041005354,0.014430458,-0.01566383,-0.024311142,0.0021155765,-0.012991523,0.00276481,0.017006837,0.008023773,0.015143073,-0.01212131,0.0010123933,-0.019692848,0.008215631,-0.0053480403,-0.022502195,0.030916536,-0.0099971695,0.022885911,0.024886716,0.012957263,-0.014937512,-0.004642277,0.007276898,-0.02929945,0.01996693,-0.020186197,0.019322835,-0.001183695,0.0123131685,0.025311545,-0.023461485,-0.006132602,-0.024818195,-0.009538081,0.0009695678,-0.013546541,0.022543307,-0.020624729,0.012690033,-0.005043123,-0.050321598,-0.021830693,0.015074553,0.018089464,0.021638835,0.03201287,0.020145085,0.017363144,-0.0072494894,-0.005598141,0.008750092,0.0493349,0.039029386,0.018514292,0.015718646,0.0077565424,-0.016280517,-0.027408278,-0.013018932,0.011162021,-0.02181699,0.0066807675,0.038398996,-0.012210388,0.019843593,-0.0013678444,-0.0060743596,0.03393145,-0.009216033,-0.0007614362,0.0205288,0.0010201018,0.05536472,0.025517106,-0.014334529,-0.035685576,-0.059421144,0.02195403,-0.0053651705,0.049060818,0.021858102,0.045333292,-0.015348636,-0.019377653,-0.033081792,0.0038782712,-0.002761384,-0.004440141,0.016828682,-0.025078574,0.015252707,0.0038440109,0.0024907272,0.010168471,-0.006201123,-0.052569076,-0.00572833,-0.014389345,0.039084204,-0.011148317,-0.014348233,-0.0025147095,-0.006639655,0.052788343,0.00831156,-0.03294475,0.00042440006,-0.0031844992,-0.0040564253,-0.020117676,-0.054240983,-0.0031074134,0.033849224,-0.013005228,-0.0026825853,-0.051664602,-0.012045938,0.029107591,-0.03247881,0.009010471,0.0030800053,-0.05410394,0.024091875,-0.015403452,-0.040975373,0.010257548,0.030176513,0.0057009216,0.013450612,-0.000037525788,-0.014320825,0.04045462,-0.014663428,0.026997153,0.029463898,0.012703736,-0.0201999,0.0027699491,-0.009168069,0.026819,-0.0143619375,0.011271654,-0.0075509804,0.040317576,0.0050739576,-0.024119284,-0.007222081,0.03261585,0.041605767,0.014841583,0.02387261,-0.028669057,-0.004169484,0.023913722,0.004135224,0.022077367,0.065779865,-0.022132184,0.038453814,-0.023708161,-0.028559426,-0.00036144667,0.026572324,0.028723875,-0.017459072,-0.04409992,-0.01933654,-0.025777485,0.015814576,0.000043414282,-0.000690346,-0.017925013,0.026887521,-0.0076263533,0.0068486435,0.005933892,-0.019528398,-0.045168843,0.028943142,0.02801126,0.0080922935,0.007975808,-0.023064066,0.012950411,0.021666244,0.0047039455,0.0013978222,0.053062424,-0.0639161,-0.014320825,0.013073748,0.027038265,0.02155661,-0.0005704348,0.014814174,0.0165546,-0.027298644,-0.0094901165,0.0076469094,0.012114459,0.009873832,0.018322434,-0.014540091,0.01704795,0.024146693,-0.021899214,0.007955252,0.0016539183,0.0077359863,-0.0075167203,0.009510673,0.0077770986,-0.006845217,0.04426437,0.01741796,-0.022789983,-0.013039488,-0.021241415,0.037631564,0.01599273,-0.012696885,0.0016376446,0.011826672,-0.008051181,0.0065540043,-0.0106001515,0.031711377,-0.023022953,-0.0029138424,-0.017842788,0.010024577,0.0010663533,0.021446977,-0.009387335,0.017938718,0.0030012063,-0.037138216,0.029820206,-0.013930257,-0.0062696435,-0.011312767,0.015143073,-0.00049977284,0.03261585,0.031546928,0.016047547,-0.008229336,0.019720256,0.00079955085,0.047032606,0.021871805,-0.024544112,-0.05182905,-0.0014526388,-0.00864046,-0.009092696,0.016842386,0.0059167617,-0.016170884,0.0025215615,-0.00433736,-0.020268422,0.0010046847,0.0035082595,0.009695678,-0.039330877,0.026133792,-0.011737595,-0.0185417,0.000049597205,0.019953227,0.0075646844,-0.01212131,0.030478004,-0.03532927,-0.0037378038,-0.008153963,0.019747663,0.013697287,0.0044332887,0.019035049,0.008715833,-0.009661417,-0.044182144,0.015334931,-0.04774522,0.034479614,0.01718499,0.0020504817,-0.03582262,-0.01956951,0.0147730615,-0.01702054,0.009688826,-0.007838767,0.01360821,-0.017226102,0.025338953,0.0317936,-0.04549774,0.024927828,0.007126152,0.011573145,-0.025941934,0.006896608,-0.02069325,0.0001634861,-0.010250696,-0.017787972,0.018733557,-0.028148301,-0.005642679,0.0029155556,-0.013053192,0.0011066092,-0.011840376,-0.007783951,-0.015170482,-0.00093273795,0.00014453584,-0.005200721,-0.013690434,0.086336076,-0.022296634,0.0048855254,0.008489714,0.006924016,0.0058687977,0.0023262776,0.032259542,-0.022899617,0.028148301,-0.0059064836,0.011436104,0.007982661,-0.022351451,0.00851027,-0.013656174,0.02013138,-0.013525985,0.03664487,-0.0094901165,0.0008813474,-0.038124915,0.019322835,0.04420955,-0.014498979,-0.012799665,-0.0047553363,0.03469888,0.02202255,0.02490042,-0.03294475,0.014841583,-0.0040050345,0.0033506618,0.0011108917,-0.0051116436,-0.0005306071,-0.04599109,0.00748246,-0.00025995038,-0.009846424,-0.024489297,0.006139454,-0.025640443,-0.010106802,-0.007331714,-0.0106960805,-0.012210388,0.025846006,-0.019089865,-0.014293416,0.032533627,0.0024016504,0.0059681525,0.01718499,-0.020556208,0.00027001437,0.00870898,0.004255135,-0.009496968,-0.015403452,0.042263564,-0.012237796,0.01973396,0.03149211,0.07038446,0.0071809688,0.005930466,0.002177245,0.019610623,0.0059750043,-0.00038114635,-0.015526789,-0.008948803,-0.004854691,0.014320825,0.006338164,-0.035082594,0.01606125,0.018911712,-0.0030491708,-0.0005164747,-0.013018932,0.025722668,-0.027504206,0.021474386,0.024461888,-0.035575945,-0.010949607,-0.005810555,0.010086246,-0.013450612,0.020186197,0.0154719725,0.023954835,0.017774267,0.020282125,-0.015567902,-0.019418765,0.011703335,-0.016801273,-0.006146306,-0.0045874603,0.027997555,-0.0047107977,0.005940744,-0.022200705,-0.00022012273,0.0018003812,0.007852471,-0.007708578,-0.0027202715,0.017226102,-0.01718499,-0.0153760435,-0.021104373,0.009051584,-0.008667868,0.003837159,-0.021104373,0.007427643,-0.00009052226,0.0052623893,-0.020186197,0.029737981,0.00514933,0.029463898,-0.009654566,-0.004251709,0.021378456,-0.0045634783,-0.014101558,-0.013080601,0.003953644,0.020446574,0.0010380885,-0.0070850397,-0.01900764,0.002972085,0.0015057422,0.030806905,-0.012518731,0.011162021,0.02569526,0.009168069,0.0070439274,0.022625534,0.0043921764,-0.042373195,-0.003362653,-0.015513085,-0.015047144,0.013162825,-0.025023757,0.014718245,-0.019829888,0.014471571,0.039550144,0.010929051,-0.019377653,0.0022954433,-0.00731801,-0.004919786,0.0007211803,0.020186197,-0.014444162,-0.021049557,-0.007941549,-0.0056563835,0.009654566,-0.027970146,-0.004481253,-0.010819417,0.016266814,-0.0111072045,-0.036535233,0.017267214,0.006889756,-0.04056425,-0.0012462201,0.0022594698,-0.012135015,0.01704795,0.029107591,0.01261466,0.046566665,-0.028203117,-0.02927204,0.010613856,-0.05456988,0.0029189815,-0.01877467,-0.053829856,-0.011970566,0.013943961,-0.0076400572,-0.034315165,0.0006470923,0.032369174,0.026311947,-0.017431665,-0.008297856,0.055803254,-0.023625934,0.038810123,0.0001123097,-0.008825465,0.038426407,-0.0038611412,0.007222081,0.03453443,-0.009544932,0.018884303,-0.013183381,0.014910103,0.018500587,-0.0009001906,0.0047861706,0.018829487,0.017034244,0.020158788,0.006255939,-0.006804105,-0.015636422,0.036836725,-0.010374033,0.01592421,0.0038303067,-0.008633607,0.011347027,-0.033136606,0.028669057,-0.049746025,0.016211996,-0.0071193003,-0.034616653,-0.015513085,0.00093959004,-0.02427003,0.022817392,-0.01950099,0.02387261,-0.004546348,0.0038988276,-0.03294475,0.00963401,0.0022971563,0.014348233,-0.042921364,0.018418362,-0.010990719,0.051582377,0.0043270816,-0.02929945,-0.0076263533,-0.021131782,-0.015403452,-0.021200303,0.007222081,-0.012354281,0.017404256,0.0154719725,0.024818195,0.00014603473,0.013704139,-0.03957755,0.010559039,0.017856494,0.031738784,0.013018932,-0.007071336,0.009812163,-0.025078574,0.0010946181,-0.011477216,0.013114861,0.0065300222,-0.024722267,0.013546541,-0.032204725,-0.01728092,0.009798459,0.0016556312,-0.00673901,0.030615047,0.027791994,0.004436715,-0.0069377203,0.0066807675,-0.0012496462,0.007187821,-0.016253108,-0.025654148,-0.034178123,0.0018791801,0.004738206,-0.026860112,-0.014923807,-0.039742004,-0.0064512235,0.0051835906,0.023968538,0.028915733,-0.016965725,-0.00039506462,0.03324624,-0.04182503,-0.014142672,-0.008373229,-0.004052999,0.00095243764,-0.006382703,-0.043551754,0.0031947773,-0.0024204934,0.011497772,0.021200303,0.038426407,0.024064468,0.00986698,-0.0032033424,0.0031673692,0.024132987,-0.009613453,0.036041886,-0.04530588,0.0340959,0.022776278,0.059585594,0.06095601,-0.007838767,0.0047210758,0.0044024545,0.008962506,0.02115919,-0.016116068,-0.006605395,-0.004124946,-0.004847839,-0.02728494,-0.017623523,0.030066881,0.015252707,-0.016170884,0.012107607,0.03513741,-0.011703335,-0.014444162,0.005036271,-0.033766996,-0.0043236557,0.02728494,0.012827074,-0.060736742,0.0064957617,0.019925818,0.016965725,-0.029847614,0.024955237,-0.006780123,0.004440141,0.0019339966,-0.009291406,-0.011162021,0.033766996,0.043990284,0.0027099934,-0.0105042225,0.035438903,0.040070903,-0.03450702,0.029820206,-0.009092696,-0.010367181,0.0035425199,-0.012477619,-0.04253765,-0.008462306,0.006122324,-0.016444966,0.030560229,-0.0074756076,-0.04599109,0.028285343,0.0045532,-0.002269748,-0.025667852,-0.03691895,0.019035049]},{"id":"interface-FetchedUserWithProfile","type":"interface","source":"main","text":"Interface: FetchedUserWithProfile\nDescription: Result of {@link UsersManager.fetchWithProfile}.\nProperties: globalProfile: APIProfileResponse | null, member: GuildMember | null, memberData: (APIGuildMember & { user: { id: string; }; }) | null, serverProfile: APIProfileResponse | null, user: User, userData: APIUserPartial","meta":{"url":"/docs/typedefs/FetchedUserWithProfile"},"embedding":[-0.003192925,0.011167642,0.007066359,0.014849682,0.033199128,-0.01458234,-0.02972367,0.015202089,0.026782898,0.00682332,-0.012868915,-0.023501871,0.006969143,-0.04219157,-0.0045600194,-0.020986417,-0.022918578,-0.0030592533,-0.078939065,0.03186241,0.03441432,0.0018516533,0.05526707,0.026296819,-0.032518618,0.014339301,-0.04955565,0.015991965,-0.027609231,-0.0048304,-0.010031435,-0.015858294,0.029188983,0.016174246,0.034803186,-0.012279545,0.035119135,0.04418449,-0.025008712,0.014594492,-0.001693678,-0.017486656,-0.024814282,0.0373794,-0.018422356,0.006312938,0.0039676116,0.020147933,0.03035557,0.055315677,-0.03247001,-0.04457335,0.005504833,0.05760024,-0.031643678,-0.008530669,-0.021448191,-0.021423887,-0.043212336,0.029286198,-0.029942404,-0.0061458484,0.026272515,0.02392719,0.015177785,-0.032445706,-0.00039038138,0.010310929,0.023951493,0.018969193,0.039372317,-0.009934219,-0.011471441,0.02916468,0.038813327,-0.016320068,0.0107423235,0.0023833013,-0.02268769,-0.03944523,0.004605589,0.03716066,-0.036237113,-0.044937912,-0.01012865,-0.03166798,-0.0049853376,-0.04693083,0.039493836,0.013391449,-0.0044597657,0.002886088,-0.055801753,-0.017438048,0.020075021,-0.014363605,0.012820307,-0.0047240704,-0.015627408,0.044281706,0.0492154,-0.027123151,-0.02880012,-0.03254292,0.035994075,0.0014703859,-0.035192046,0.0013131701,-0.041608278,0.0015379812,0.0018410204,0.026953025,-0.011161566,0.037549525,-0.030744433,0.005614201,-0.015627408,-0.014788923,0.038181428,-0.005644581,-0.03951814,0.022529716,0.027512014,-0.0131241055,0.027949484,-0.003378242,-0.03650446,-0.016040575,-0.060662534,-0.04761134,-0.022724146,-0.017377289,-0.017438048,0.013075498,-0.038400162,0.0127838515,-0.0022146928,-0.025348967,-0.023659846,-0.048875142,-0.04731969,-0.016089182,-0.014120566,0.0015516521,-0.069509156,-0.0155058885,-0.008415225,0.045010824,0.018957041,0.021897813,-0.048097417,-0.007552437,-0.07028688,-0.017352985,0.016526653,0.010359537,0.019151473,-0.034074068,-0.0062005324,-0.026345428,0.008050667,-0.04992021,-0.03215406,0.012273469,-0.004304828,-0.011052199,0.012929674,0.010790931,-0.05497542,-0.012364609,-0.020913506,-0.011088654,-0.08331377,-0.008998519,-0.042531826,-0.025664918,-0.03127912,-0.023198072,-0.020476036,-0.05410048,0.03509483,0.016623868,-0.024656307,-0.07125904,-0.043212336,-0.0030987472,-0.009952447,-0.006829396,0.017960582,-0.0023817823,0.022772754,0.044281706,0.038351554,0.0073640817,0.011088654,-0.011131186,0.052885287,-0.0063493936,0.0010769665,-0.009849155,-0.005322554,-0.012297774,0.057308596,-0.006519521,-0.003113937,-0.03596977,0.058377966,0.0016678551,-0.065669134,-0.013403601,0.015943358,0.02792518,-0.034195587,0.0036607748,-0.04936122,-0.008099275,-0.05162148,0.039469533,0.03876472,0.013683096,-0.00038050793,0.06562053,0.049069572,-0.033685204,0.023939341,0.0062764823,-0.023210224,-0.04785438,-0.023100857,0.024789978,0.0056050867,-0.0046967287,-0.040222954,-0.040927768,-0.019005649,0.0049245777,0.008561049,0.074418545,0.003372166,-0.006088127,-0.05764885,-0.0049276156,0.071696505,0.026758594,0.008427377,-0.028873034,0.0037974843,0.0202573,0.01701273,0.041292325,0.025276056,0.027001632,-0.0002010768,-0.0046420447,0.02131452,-0.006069899,-0.0019929197,0.027439103,0.00676256,0.014728163,0.0117630875,0.029286198,-0.010359537,0.03259153,-0.042531826,-0.018118557,0.006969143,0.01764463,-0.017535264,0.045156647,-0.015311457,0.03159507,0.026150996,-0.014752467,-0.02581074,-0.0061276206,0.023586934,0.008427377,-0.03708775,-0.0035514073,-0.049628563,0.0032476087,0.028192524,0.04381993,-0.0076314243,0.027998092,-0.009861307,-0.017365137,0.023465415,0.043406766,0.022335283,0.0013655754,0.044937912,-0.019406663,0.043212336,0.009028899,0.036820408,-0.011161566,0.066203825,0.03825434,0.042653345,-0.041146502,0.0233682,-0.016696779,0.04323664,-0.05074654,0.023404656,-0.011708404,-0.016149942,0.0031990008,-0.06250963,-0.02225022,0.001338993,0.012091191,-0.075244874,-0.047635645,0.027025936,0.009879535,-0.027755054,0.06144026,0.027852269,-0.007327626,-0.010116498,-0.04007713,-0.0078926915,-0.044670567,-0.020075021,-0.046614878,-0.0055260994,0.086959355,0.04087916,-0.011787391,-0.055607323,-0.028970249,0.018665396,0.01975907,-0.017741846,0.057114165,0.029966708,-0.0039736875,0.034876097,-0.02107148,-0.03003962,0.0013450689,-0.0055352133,0.0030030506,-0.027244672,0.028873034,-0.04058751,-0.004581285,0.02200718,0.04306651,0.028143916,0.019479576,0.014035502,-0.04911818,0.027755054,-0.02368415,-0.027220368,0.027025936,0.010547892,0.0036790029,-0.021922117,0.035605215,0.0026901378,0.037112053,0.006282558,0.01583399,0.011119034,-0.064842805,-0.027876573,-0.0012394988,-0.02661277,-0.010037511,-0.015275001,-0.000121424564,-0.03421989,-0.015031962,0.011781315,0.017486656,0.056628086,0.014157021,0.056093402,-0.060808357,0.030817345,-0.0155058885,-0.0117570115,-0.023963645,-0.042118657,0.006999523,0.050260466,0.016502349,-0.00066000276,-0.060856964,-0.022165157,-0.023829974,0.060176454,-0.008026363,0.031303424,-0.06843978,0.027900876,0.007953451,0.0417541,-0.014801075,-0.018398052,0.0069205356,-0.016781842,0.0058238218,0.026782898,-0.041122198,-0.0026491252,-0.021715535,-0.00244558,0.011046123,0.065231666,-0.026588466,-0.006519521,-0.010341309,0.024012253,0.038108516,-0.048024505,0.0114228325,-0.02641834,-0.0073883855,0.0019108941,-0.060225062,0.050066035,0.01645374,-0.0007363322,-0.07966819,-0.03757383,0.00890738,0.0014286136,-0.0042744484,-0.00490635,-0.0076071206,0.023319593,0.0068901554,-0.028848728,0.019005649,0.0124679,0.016356524,0.005115971,-0.029286198,-0.006993447,-0.0088101635,0.026928721,-0.03198393,0.0039949534,0.009399533,-0.0049701473,0.048194632,0.0116476435,0.06834257,-0.022906426,-0.009770168,-0.023975797,0.036407243,-0.00978232,-0.030793041,0.02948063,0.015469432,-0.02386643,0.030671522,0.017061338,0.02093781,0.021338824,0.017438048,0.0008210161,-0.003183811,-0.004681539,-0.017766152,0.0049276156,-0.0042167264,-0.046590574,-0.014667404,0.006738256,0.030574305,0.006282558,0.039688267,0.01988059,0.04039308,-0.025859348,-0.01788767,0.022153005,0.0529825,0.0013587399,0.012364609,-0.02293073,0.03383103,-0.02816822,-0.024510482,0.068391174,-0.012832459,0.028265435,0.014776771,0.025057321,-0.06391925,0.007971679,-0.021193001,0.03596977,-0.036188506,-0.008646112,0.010061814,-0.0047605266,0.033053305,-0.02940772,-0.040101435,-0.051329836,-0.020099325,-0.028192524,0.050892368,-0.025227448,-0.022760602,-0.01701273,0.004748374,-0.036480155,0.012249165,-0.027536318,0.061294436,0.0100557385,-0.00079671224,-0.017839063,0.018057797,0.03558091,0.008111427,-0.0051402748,-0.06513445,-0.024230989,0.0155058885,0.013306385,-0.004757488,0.028508475,0.022286676,-0.010784855,-0.021533255,-0.0031017852,-0.025033018,0.01583399,-0.02087705,-0.008646112,-0.01258942,-0.011993974,0.008524593,-0.014946898,0.033296343,0.022396043,0.02299149,0.031108992,-0.011902835,0.025470488,-0.023854278,0.009010671,0.0017954506,0.0047088806,0.010645108,-0.006981295,-0.020184388,-0.022456804,-0.0473683,0.0059605315,-0.015542344,0.040344473,-0.017352985,-0.032931786,0.03577534,0.047465514,0.0039645736,-0.0027357077,0.010784855,0.04262904,0.031740893,-0.0070724348,0.015651712,0.016064879,0.0065620528,-0.011805619,0.047781467,0.006027367,0.058232144,-0.01663602,-0.028897338,-0.003639509,0.03414698,-0.0063372417,-0.026029477,-0.013245625,-0.0027767206,0.00392508,0.035726734,0.03421989,-0.007862312,0.0068476237,0.012115494,0.02773075,-0.012346381,0.014995506,0.019771222,-0.021897813,0.013330689,0.011483593,-0.013500816,-0.044549048,0.014509428,0.053857442,0.013768159,0.034973312,0.016368676,-0.042167265,0.01265018,-0.029359112,0.0023468453,-0.05439213,-0.029213287,0.01053574,0.0027934294,-0.02984519,0.0042896383,0.015554496,0.0107362475,-0.024826434,-0.020220844,0.001079245,0.049191095,0.03315052,0.00193216,-0.029432023,0.00969118,-0.009332698,-0.0064830654,0.013828919,-0.008403073,-0.025689222,0.008190414,0.0011726632,-0.0039524217,-0.008415225,-0.0133549925,-0.034074068,-0.020573251,0.040830553,0.00907143,0.0180821,0.0063372417,0.019989958,-0.013768159,-0.006537749,-0.0074066133,-0.009417761,-0.008524593,-0.04780577,-0.053565796,0.022043638,-0.012158026,0.0052526803,-0.021120088,0.0027767206,0.040903464,-0.026102388,0.0014855759,-0.024218837,0.040465992,0.008542821,-0.002635454,-0.01508057,0.023951493,0.0049185017,0.03837586,-0.004681539,0.027609231,0.0019989957,0.016089182,0.012425369,-0.014108414,0.012613724,-0.009527129,0.0066410406,-0.020646162,-0.01352512,0.012103342,0.00043784996,-0.006835472,-0.04343107,-0.020427428,0.023258831,-0.02436466,0.0243039,-0.003885586,0.018398052,-0.011070427,0.015226393,0.030452786,0.032251276,-0.029504934,-0.00825725,-0.004128625,0.0058997716,-0.0010951945,0.00017886152,0.013367145,-0.008858771,-0.0024850736,-0.008949911,-0.006610661,-0.0074491454,0.012710939,-0.0052952124,0.028071005,0.0074491454,-0.0037154588,-0.049166787,-0.0067139524,-0.037816867,0.004614703,0.0027888725,0.025494792,-0.020864898,-0.01676969,0.04437892,0.019297296,0.023708453,0.009697256,-0.015189937,0.031619374,-0.008737252,0.0028086195,0.011313465,0.036407243,0.018774763,-0.04255613,-0.0047422983,-0.013160562,0.009132191,-0.011538276,-0.0044172336,0.0015995004,0.033612292,0.004903312,-0.033636596,-0.0033660901,0.03701484,0.0009926624,-0.022651235,0.017182857,-0.014764619,-0.005085591,-0.010547892,0.0492154,-0.010359537,-0.005416732,-0.035726734,0.007552437,-0.00048873626,0.014764619,0.014497276,-0.053274147,0.011878531,0.04578855,-0.052690856,0.018592482,0.032226972,0.035532303,0.021837054,0.015651712,-0.034001157,0.026321124,0.037986994,-0.021630472,0.053808834,-0.003666851,-0.009636496,0.0069144596,-0.0063980017,0.02342896,0.055558715,-0.0008210161,0.008396997,-0.026880113,-0.01657526,-0.006373698,0.03788978,0.010784855,0.0498716,-0.011659796,-0.00014810188,-0.015226393,0.014132718,0.014448669,-0.01657526,-0.03876472,0.011811695,0.0045630573,-0.026272515,-0.01053574,0.006780788,0.017729694,0.00270229,-0.08297352,0.030501394,0.05366301,-0.056579478,-0.010523588,0.04095207,0.03346647,0.014801075,-0.054732382,-0.026637074,0.026977329,-0.06071114,-0.012066886,-0.01619855,0.014509428,0.036553066,0.0047878684,-0.025203144,0.012577268,-0.0049367296,-0.039785486,-0.02661277,-0.047757164,0.008889152,0.0055352133,-0.03971257,-0.028532779,0.0071818023,0.040903464,-0.033247735,0.0014187401,0.016818298,-0.008488137,0.023173768,-0.023987949,0.02916468,0.0038278643,-0.013707399,-0.0067018005,-0.030647218,0.018495267,0.017352985,0.022736298,0.006543825,-0.010365613,0.02661277,0.0049306536,0.031376336,-0.021958573,0.0068780035,-0.0053772377,-0.0117630875,0.025397575,-0.0038157122,-0.017960582,-0.007546361,-0.03596977,0.02074338,-0.033053305,-0.020342365,0.011890683,0.018750459,0.011921063,-0.027609231,0.012601572,0.008962063,0.019686159,0.003393432,0.02673429,-0.006987371,-0.021800598,-0.018981345,0.0042744484,-0.026199603,0.036820408,-0.009563585,0.01025017,-0.021581862,-0.016028421,-0.027439103,0.0018531723,0.039299406,0.04275056,-0.01850742,-0.011362073,-0.0036911548,-0.037792563,0.033320647,0.010402069,-0.01945527,0.019272992,-0.006094203,0.007272942,0.016988426,-0.009326622,-0.00007770603,0.024887193,0.012066886,-0.002146338,-0.017960582,0.043965753,0.017182857,-0.0070055993,-0.01607703,-0.033976853,-0.019601095,0.00088937086,0.027390495,-0.015809687,0.020111477,-0.03541078,0.020901354,-0.019345904,-0.013257777,-0.03562952,-0.0032779884,0.033612292,-0.0070724348,0.013658792,0.019588944,-0.006598509,0.042920686,0.020791987,0.019540336,0.012820307,0.010663336,0.025713526,-0.009095735,0.019151473,0.03327204,-0.016988426,0.007716488,0.019613247,0.015481584,0.015323609,0.017899822,-0.0018577294,-0.038691808,-0.024073012,0.02581074,0.04335816,0.032640137,-0.020123629,-0.008700796,0.01832514,-0.018203622,0.0040131817,0.031886715,-0.0054228078,-0.013743855,0.022505412,-0.034973312,-0.025713526,0.017717542,0.025227448,-0.0013435499,-0.028994553,0.013440057,0.018665396,0.060127847,0.018264381,0.049191095,0.015882598,-0.028970249,-0.00044202717,-0.021399584,-0.009642572,-0.00922333,-0.07752944,0.042386003,-0.015177785,-0.005501795,0.04649336,-0.0035301414,-0.017608175,0.06591218,0.018677548,-0.019345904,0.010900299,0.011434984,0.0035301414,-0.013282081,-0.015688168,0.017000578,0.05721138,-0.01657526,-0.042701952,-0.04044169,-0.0025397576,-0.026321124,-0.003906852,0.05390605,0.018616788,0.007193954,0.029529238,-0.01720716,0.012346381,0.018714003,-0.0405146,-0.031935323,0.00925371,0.015748927,-0.005261794,-0.015846143,0.007035979,0.020160085,-0.0037124206,0.00095089007,-0.037914082,0.01862894,-0.001954945,0.026977329,0.020779835,-0.011471441,0.030622914,0.031254817,-0.032518618,-0.0022086168,-0.017766152,-0.018470963,-0.000084921245,-0.003387356,-0.011538276,0.027366191,0.0061792666,-0.0031108991,0.00816611,0.0016040574,-0.02131452,0.016721083,-0.006464837,0.029577846,-0.016052727,-0.014120566,0.023829974,0.023514023,0.012844611,-0.013561576,-0.023599086,-0.0032567226,0.033296343,0.03764674,0.009922067,-0.03295609,0.010134726,-0.033806726,0.01352512,0.0025716564,0.0122187855,0.008846619,-0.008700796,0.014776771,0.009849155,0.015177785,0.013549424,-0.0071818023,-0.03103608,0.015335761,0.0088101635,-0.004089131,0.0047240704,0.010408145,-0.0126744835,-0.022955034,0.025324663,0.01115549,-0.010608653,-0.0023392504,0.009113963,0.007114967,0.02649125,0.02069477,0.022529716,0.0323971,-0.022614779,-0.002434947,-0.042045746,0.02673429,0.044670567,0.04765995,-0.018264381,0.028775817,-0.0131241055,0.017413745,0.0065681287,-0.0018698813,0.016745387,-0.041170806,-0.011131186,0.012297774,0.018543875,0.006227874,-0.002661277,-0.041924227,0.019491728,-0.024109468,-0.011793467,0.008469909,0.006580281,-0.011921063,-0.032980394,0.009758016,0.0054562255,0.010596501,0.026345428,0.00096608,0.03220267,-0.0010572197,0.015469432,-0.008378769,0.02099857,-0.035046224,0.018531723,0.00022500094,0.015311457,0.0076375003,-0.014594492,-0.0007727881,-0.019710463,0.018665396,-0.0028496322,0.0151656335,0.021496799,-0.028873034,0.0036972307,0.007716488,0.01396259,0.024546938,-0.0024820357,-0.044767782,-0.009217254,-0.031838108,0.0009873459,-0.007929147,-0.04841337,-0.02598087,-0.02581074,0.005191921,0.010335233,-0.03378242,-0.0061458484,0.0004982299,0.0066896486,-0.021083632,-0.008336238,0.015408672,0.010517512,0.020269452,0.014059806,-0.018495267,0.056579478,-0.009788396,0.0261753,-0.005292174,0.00037652056,-0.008980291,0.021278065,-0.00026696315,0.028629994,0.017741846,0.0014354491,-0.01576108,0.002225326,-0.021168696,0.022262372,0.017024882,-0.027512014,0.056579478,0.023100857,-0.02436466,0.029650757,-0.016247157,0.026637074,0.018859826,-0.01440006,-0.022736298,0.028071005,0.007491677,0.015068417,-0.0005149389,-0.005091667,-0.010402069,-0.029286198,0.016149942,-0.02605378,-0.005134199,0.017316528,-0.02605378,0.021934269,0.00816611,0.00907143,-0.04294499,0.007740792,-0.006829396,-0.03373381,0.004541791,0.021824902,-0.012042582,0.008652188,-0.027268976,-0.062363807,0.039275102,0.010244094,0.0051828064,-0.0017757036,-0.030841649,-0.00049747044,0.028848728,-0.0063372417,0.00080810464,-0.023453264,0.014910443,-0.03215406,0.0059362277,0.03609129,0.018106405,0.007570665,-0.0026141882,0.017559567,0.047562733,0.018592482,-0.02268769,-0.0064769895,-0.013780311,0.0009949409,0.014922595,0.0067078765,-0.024352508,0.002705328,0.018398052,-0.0012645622,-0.037233576,-0.024401115,-0.010292701,-0.009915991,0.017425897,0.01408411,0.008239022,0.004848628,0.0009653205,0.013342841,-0.030088227,-0.016490197,0.016781842,-0.005407618,0.01080916,0.0246077,-0.018057797,-0.03103608,0.006744332,-0.03577534,0.010298777,0.044646263,-0.025348967,-0.0016693741,0.03453584,0.0012478534,0.018543875,-0.0041833087,-0.001221271,-0.008706872,0.011058275,0.0110765025,-0.0071331947,-0.028873034,-0.036115594,0.033029,0.008870923,-0.013974742,-0.012091191,0.00386432,0.0152871525,-0.0073701576,-0.0037549525,0.009800548,-0.01265018,0.0032962165,-0.030063923,-0.006549901,0.011993974,-0.04294499,-0.009891687,0.019649703,-0.035556607,-0.035264958,-0.00028253283,-0.006088127,-0.011404605,-0.055364285,-0.015420824,0.0014073477,-0.003645585,-0.009357002,-0.011507897,-0.008591428,-0.019175777,-0.0051797684,-0.0028192524,-0.018495267,0.009502824,-0.022432499,0.0047028046,-0.0063554696,-0.0038187501,0.015384369,-0.0016040574,0.0032202667,0.022505412,-0.032445706,0.016587412,0.00007856046,-0.0024835547,-0.021423887,0.015250697,0.03528926,-0.0016086143,0.002181275,-0.007977755,-0.004107359,0.013172714,-0.022359587,-0.0108456155,0.03203254,0.028994553,-0.035726734,-0.036237113,-0.0186897,0.020791987,-0.029432023,-0.014849682,-0.0069326875,-0.029504934,-0.011131186,0.014740315,0.0064223055,-0.012188406,0.02561631,-0.016149942,0.0008787379,-0.049020965,-0.023915038,0.011222325,0.012036506,-0.061974943,0.013440057,-0.009101811,-0.012364609,-0.017936278,0.00969118,-0.00629471,-0.0012592458,-0.004869894,-0.028945945,-0.00006731041,0.012881067,0.0069205356,-0.0074126893,0.037816867,0.0029969746,-0.0023878582,-0.0044263476,0.013974742,0.029456327,-0.0035909011,0.0174502,0.032105453,0.004581285,0.050989583,0.003384318,0.035872556,0.019443119,0.01080916,-0.025008712,-0.043795627,0.0044081197,-0.0038278643,0.02673429,-0.001930641,-0.030890256,0.014059806,0.011143338,0.0011263338,-0.040247258,-0.025251752,-0.006288634,-0.0067261043,-0.048461977,-0.00623395,0.026272515,0.024048708,-0.0066410406,-0.022104397,-0.00023373516,0.009837003,0.00047316655,0.018045645,0.075244874,-0.019394511,-0.025130233,0.02649125,0.00063417986,0.028071005,-0.0054623014,0.0020400085,0.0045691333,-0.011835999,0.030452786,-0.012249165,-0.02605378,-0.00029335567,-0.0051736925,-0.0030865953,0.020852746,-0.012334229,0.03446293,0.0007602564,-0.0019078561,-0.0023848203,-0.03278596,-0.022772754,-0.012230937,0.0040496374,0.0020977303,0.004675463,-0.01882337,-0.025470488,-0.036310025,-0.026223907,0.026394036,0.01006789,-0.033101913,0.0461045,0.0124435965,0.017097794,-0.0059179994,0.015736775,-0.02972367,-0.028046701,0.022153005,0.013598032,-0.012224861,0.025835045,-0.0027873535,0.004581285,0.01657526,-0.0010838021,-0.013391449,-0.021885661,0.013063346,-0.008949911,-0.008390921,-0.023295287,0.015007658,-0.01495905,-0.032251276,-0.01156258,-0.019661855,0.024401115,-0.049312614,0.015530192,0.022918578,0.009764092,0.0020172237,0.026321124,-0.0010108904,-0.0051736925,0.03140064,0.029699365,0.0299181,-0.014630947,0.052739464,0.013111954,0.015858294,-0.0193216,-0.0136952475,0.038059905,0.041243717,0.03832725,-0.0057053403,0.011337769,-0.01545728,-0.0028663413,-0.015189937,0.010875995,0.007825856,0.017049186,-0.016538804,-0.0023574783,-0.023441112,-0.006009139,-0.0255434,-0.027852269,0.0012508914,-0.0074552214,-0.010377766,0.04569133,-0.016064879,-0.024522634,-0.0052557182,-0.04697944,0.040927768,0.040538903,0.0133549925,-0.001319246,-0.01308765,-0.018337293,0.010152954,-0.000039541304,0.012079038,-0.01613779,-0.062412415,-0.009915991,0.0063372417,0.043795627,-0.008214718,0.05215617,-0.0102866255,-0.019649703,0.00729117,-0.01764463,-0.009132191,-0.0022936806,-0.024777826,-0.035945468,-0.020087173,-0.014302845,-0.00092810515,-0.018981345,0.011580808,-0.022578323,0.0015919055,0.040150043,-0.04804881,-0.009296241,-0.03171659,-0.015493736,-0.0045478675,0.005325592,0.0037245727]},{"id":"interface-FluxerErrorOptions","type":"interface","source":"main","text":"Interface: FluxerErrorOptions\nProperties: cause: Error, code: string","meta":{"url":"/docs/typedefs/FluxerErrorOptions"},"embedding":[-0.045564063,-0.028065706,-0.021439759,0.024087697,0.020487966,-0.01705907,-0.046100974,0.012208582,0.0056192423,0.019023668,0.012416025,-0.00018341854,0.019829031,0.022037681,-0.013020047,0.030799063,-0.01986564,0.013312907,-0.01726651,0.055008784,-0.010835803,-0.060085017,0.037119947,0.065942205,-0.026235335,-0.019255515,0.013947436,0.021427557,0.009609454,0.007535032,0.060475495,-0.033288367,0.034606237,0.015765605,-0.0031695946,0.0019249414,0.04151284,0.03280027,-0.018218305,-0.02567402,-0.005381294,-0.02439276,-0.010140262,-0.006772377,-0.013898626,0.030994302,0.010982233,-0.001025771,0.0049114986,0.015875427,-0.018132888,-0.045954544,-0.020524573,0.0008419712,-0.013105465,-0.027772848,-0.041732486,0.047101576,-0.019499565,0.0049908147,0.008236675,-0.027089508,-0.0037492123,-0.0007489273,-0.0025533692,0.031116327,-0.01160456,0.037095543,-0.0028248744,0.07633872,0.032873485,-0.013434932,0.006314784,-0.017620383,-0.013544754,0.010628361,0.00791941,0.031140732,0.047589675,-0.023660611,0.034508616,0.03009132,-0.03643661,-0.04441703,-0.021427557,0.024868656,-0.05081113,-0.018376937,-0.024649011,-0.049761716,-0.04829742,0.010945626,-0.035094336,0.020048676,-0.011183574,-0.0069920216,0.0191823,-0.04593014,0.0070103253,0.02911512,0.038681865,-0.023843648,-0.0025350654,-0.0116716735,-0.03128716,-0.028016897,-0.027675226,0.0017403789,-0.030994302,-0.0057077105,0.009511834,0.02247697,-0.039121155,0.038486626,-0.010915119,-0.036949113,-0.0102073755,0.013898626,0.0110859545,0.013971841,-0.0077241706,-0.02867583,0.030823467,0.03221455,-0.030213343,0.02129333,0.008444117,0.011354408,-0.06677198,-0.029749649,0.03550922,-0.015570366,-0.014972445,-0.006747972,0.0057260143,-0.011073751,-0.013239692,0.010237882,-0.020256119,-0.01799866,-0.019157896,0.01666859,0.05256829,-0.016998056,-0.025356757,0.0034807578,0.011714382,0.018450152,0.015228696,0.055057596,-0.02497848,0.014337915,-0.004267818,0.0007767642,0.015899833,-0.042708684,0.044246197,0.03255622,-0.043758098,-0.030799063,0.0334592,0.011104258,0.014386726,-0.033434797,-0.023160309,-0.0015222596,0.0007508339,-0.017388536,-0.0349235,0.0418057,-0.014911432,-0.032336574,-0.04121998,0.020927256,0.000028814062,-0.009157962,0.018279316,-0.03265384,0.00713235,0.04597895,0.0007744762,0.023636205,0.05090875,-0.042074155,-0.026137715,0.0028767348,-0.0334592,0.008712571,0.03389849,-0.0145941675,-0.014154878,0.018254912,-0.007333691,-0.005625344,-0.011836407,0.025991285,0.025844855,-0.02882226,-0.0182061,-0.018437948,-0.010311097,0.013264097,0.082195915,-0.005561281,-0.017718002,0.006949313,-0.03699792,-0.010433122,0.010732082,-0.015472746,0.042318206,0.06496601,-0.00634529,-0.00870647,-0.022745425,0.02645498,0.048834328,0.035094336,0.01485042,-0.047760513,-0.007333691,0.010402615,0.02872464,-0.039926518,0.039462823,0.008193966,0.004999967,-0.014057258,-0.0329467,0.015448341,-0.035875294,0.0001204995,-0.015753403,-0.046247404,0.040780693,-0.0081573585,-0.007632652,-0.006363594,0.014801609,0.033922896,-0.02911512,-0.038730673,-0.009304392,-0.0060127727,-0.032483004,0.006766276,-0.0010539893,-0.00019180775,0.0010692424,0.028651426,0.049493264,0.016949246,0.045417633,-0.01794985,0.010994435,-0.045271207,0.0049450556,-0.022879653,-0.00079849985,-0.03721757,0.036949113,-0.05227543,-0.009664365,0.038681865,-0.017693598,-0.0649172,0.009273886,0.01888944,-0.047736105,-0.013166477,0.039169963,-0.018425746,0.052226618,-0.0062080123,-0.010237882,0.0108663095,0.009426417,0.06032907,-0.01160456,0.025112705,-0.004057325,-0.03546041,-0.022403756,0.053300437,-0.018035267,0.013142073,0.009652163,0.0029102918,0.003727858,0.0016610627,-0.004682702,-0.001032635,0.024636809,-0.024112104,-0.01598525,0.04490513,0.032727055,0.0039505535,0.028382972,0.04519799,-0.026821053,-0.046174187,-0.020256119,-0.021451961,0.00408173,-0.0011523718,0.005677204,0.0054240027,0.05227543,-0.024209723,0.0031009556,-0.055594504,-0.054227825,0.0048321825,-0.05247067,-0.021757023,0.050420653,-0.0028263996,0.04253785,-0.009127456,0.018157292,-0.038633056,0.016241502,-0.047321223,-0.020256119,-0.03511874,0.000033485325,0.012056052,0.04383131,0.06418505,-0.0029423232,-0.015021254,-0.0130566545,-0.022879653,0.015851023,-0.020744218,-0.028651426,0.040072948,0.0074191084,-0.016583173,0.03677828,-0.053154007,-0.02586926,0.0061225947,0.06311123,-0.021805834,-0.018084077,-0.031653237,0.048468255,0.013874221,-0.066527925,0.05144566,-0.04810218,-0.013654577,-0.025015086,-0.010628361,-0.01160456,-0.03411814,-0.024514785,0.033166345,-0.002891988,0.06496601,0.037900906,0.01579001,-0.03633899,-0.007974321,0.009267785,-0.03506993,0.023538586,-0.043294404,0.018877238,-0.018682,-0.040902715,0.015131077,-0.0418057,-0.0010204324,-0.035436004,-0.015802214,0.019902246,-0.024929669,0.047248006,0.03914556,-0.06760175,-0.022257326,0.01746175,-0.022464767,0.0053721424,0.0039047939,-0.03289789,0.025283542,0.049273618,0.022794235,-0.05198257,-0.029676434,0.023831446,0.008358699,0.011415421,0.041854512,0.029871674,-0.018840631,0.052373048,0.02586926,0.016534362,0.08034114,0.0069371103,-0.0285294,0.025259135,0.026088905,0.016949246,-0.028309757,-0.006595441,-0.03714435,0.05159209,0.05149447,0.01976802,-0.0732637,0.05159209,-0.043758098,-0.031116327,0.018474557,0.025210327,0.019731412,-0.041927725,0.007974321,0.0042769695,-0.018254912,0.0059395577,-0.036875896,-0.00546061,-0.06335528,-0.0025808248,0.010530741,0.055643313,0.034508616,0.048761114,-0.012367215,0.03309313,-0.039218776,-0.0010745809,0.02497848,-0.03707114,0.04461227,0.07355656,-0.006943212,-0.03270265,-0.016656388,0.010603956,0.030408584,0.026796648,-0.011171372,-0.060719546,-0.019096883,-0.00496641,-0.02400228,-0.017791217,-0.0016976702,0.018035267,0.013215287,0.05720523,0.009255582,-0.017217701,0.011238485,-0.039975327,-0.017718002,0.016217098,0.011897419,-0.009902313,-0.001578696,-0.006845592,0.015301911,-0.042318206,0.015411734,0.019499565,-0.00114322,-0.00531113,0.0014223517,-0.017498357,-0.040048543,0.05320282,0.01618049,-0.017840028,0.054667115,-0.030945493,-0.022245124,0.023880256,0.10718659,0.019780222,-0.00002719342,-0.074776806,0.009347101,0.01853557,-0.005390446,0.020280523,-0.01283701,0.016961448,-0.024490379,-0.047101576,-0.034435403,0.0007573165,-0.03338599,0.0077302717,-0.0481998,-0.025356757,-0.0044050957,0.04485632,0.0030551963,0.021586189,-0.0669184,-0.061695743,-0.032873485,0.05037184,-0.0005609328,-0.02281864,-0.0054972176,-0.047833726,0.008486826,-0.042659875,-0.002522863,-0.015301911,0.019316528,0.011165271,0.005198257,0.0069615156,0.016937044,-0.010707677,-0.018901642,-0.02621093,-0.03363004,0.005390446,-0.0060554813,0.03221455,-0.00046445694,-0.03419135,-0.004762018,-0.031189542,0.019926652,-0.0022193263,-0.008834597,0.0062476704,-0.028846666,-0.0021262823,0.015460543,-0.011494737,0.044002146,-0.021378746,0.033410393,-0.013166477,0.020671003,-0.0024115152,0.023123702,-0.00091442344,-0.03909675,0.013483741,-0.033581227,0.032068122,0.03158002,0.016058465,-0.0149602415,-0.03865746,-0.010512438,0.011336105,-0.022489173,0.03411814,-0.0059395577,0.0050091185,0.014118271,-0.011146966,0.02291626,-0.0024847302,-0.0048169293,-0.007077439,0.022501376,-0.025600806,0.073019646,0.008297687,-0.007358096,-0.027650822,-0.0064063026,0.02223292,-0.0098413015,0.0016458096,-0.025698425,0.0038529334,0.095813885,-0.017046867,-0.00027455582,-0.0041885017,-0.0065832385,0.006998123,0.006674757,0.031067517,0.004466108,-0.004999967,-0.009096949,0.017962052,-0.008517331,0.024771037,0.030140128,0.019707007,0.046174187,0.0066320486,-0.037608046,-0.013520349,-0.021903453,0.059206437,0.016705196,0.024636809,0.004710158,-0.011543547,0.02645498,-0.018974857,0.040072948,-0.03284908,-0.049346834,-0.012104861,-0.01293463,-0.027333558,0.004551525,0.027504392,0.0073458934,-0.0018364734,-0.016400134,-0.013154275,-0.0014841268,-0.0052135102,0.011909622,-0.02001207,-0.032580625,0.019523969,-0.042464633,0.01691264,0.0014780256,0.0024618506,-0.00033671223,0.0052196113,0.022391552,-0.0058724442,0.023977876,-0.0324586,-0.041390818,0.002104928,-0.0201585,0.0388527,-0.01741294,0.030506203,-0.019218909,-0.022598995,0.0031268857,-0.028700236,0.024404962,0.012452632,0.0026082804,-0.009792491,-0.0021293329,0.042415824,0.007205565,0.0045179687,0.024600202,-0.0065283272,-0.014691787,0.002394737,0.02021951,-0.01145813,0.019743614,-0.015533758,0.00634529,0.012348911,0.018254912,-0.01913349,-0.01765699,0.032629434,0.046686694,-0.006131747,-0.007583842,-0.009511834,-0.014386726,0.011165271,-0.062964804,-0.005567382,0.000053528853,-0.03531398,0.02616212,-0.05642427,0.01618049,0.02350198,-0.00742521,-0.016949246,-0.03236098,-0.0012522796,0.054081395,0.0056527993,0.034142543,0.045466445,0.00408173,-0.006015823,-0.03158002,-0.002818773,0.017913243,0.033800874,-0.018987061,0.02630855,-0.01273939,0.01775461,0.007608247,-0.00062690245,-0.037608046,0.002489306,-0.009682668,0.049151596,0.004829132,-0.018132888,-0.0026799699,-0.019902246,-0.02621093,-0.011567952,0.03895032,0.00070850656,0.021805834,0.012062153,-0.0011622864,0.026137715,0.0034899097,-0.05847429,0.032092527,-0.012348911,-0.00782179,0.016143883,0.030237747,-0.002704375,-0.007559437,-0.00035711323,-0.011824205,-0.041195575,0.010976132,-0.011702179,0.0056741536,0.020182904,0.0050884346,-0.010585653,-0.016680792,0.034215756,0.013495944,0.017876634,-0.012727188,-0.012702783,-0.001554291,-0.016339121,0.0062476704,-0.017547168,-0.01687603,-0.0075472347,0.007846195,-0.0048840432,-0.0049694604,-0.0074984245,-0.023477573,0.021171305,0.0060524307,0.0017480054,-0.009914516,0.0027409822,0.032434195,-0.011122562,-0.005967013,-0.0013125293,0.0057016094,0.00062118255,-0.012416025,0.011305599,0.024124306,0.00496641,-0.0131298695,-0.041683674,0.01794985,0.006147,-0.047101576,-0.0467111,-0.062135033,-0.0324586,0.011140865,0.0074191084,0.0070103253,-0.015057862,-0.007461817,0.031409185,-0.012220785,0.0005876257,-0.021744821,-0.027406773,-0.0001234548,0.032922294,-0.013898626,0.0042861216,-0.063208856,-0.0032092526,0.03158002,-0.008730875,-0.07126249,0.00087324006,-0.0036241368,0.03521636,-0.008401408,-0.02538116,0.034313377,0.05100637,0.012507543,-0.0018761315,0.012617365,0.045515254,-0.0027165774,-0.0016519108,0.029847268,-0.01460637,0.020683205,-0.005561281,0.0020378144,0.018901642,-0.0027577607,0.0016198794,0.005420952,0.061549313,-0.0132030845,0.026186524,-0.01986564,0.00048123536,0.04258666,0.019060275,0.035582434,-0.0073764,0.02405109,-0.024624607,0.05749809,-0.0040603755,0.0010959354,-0.011500838,-0.023343347,-0.037266377,0.0044386527,-0.013617969,-0.00012869804,0.0144477375,-0.01259296,0.0049206507,0.017351927,0.0074008047,0.024087697,-0.009188469,-0.055936173,0.01637573,-0.0016198794,-0.028846666,0.017876634,0.029822864,-0.03733959,0.040121756,-0.0070652366,-0.05974335,-0.0025930272,0.011891318,-0.01219638,-0.028700236,0.045173585,-0.04073188,-0.042464633,-0.013300705,-0.019743614,-0.03802293,0.02104928,0.003880389,0.0029224942,0.04412417,0.0067113647,0.013520349,0.04612538,-0.0059090513,0.037022326,-0.012226886,0.011848609,0.04175689,0.026577003,-0.007870601,0.018084077,0.034069326,0.012080456,0.04002414,-0.014167081,0.026772244,0.027138319,-0.019975461,-0.004603386,0.006339189,0.028090112,0.026577003,0.005585686,0.011543547,0.0045027155,-0.010927321,0.009914516,-0.0052531683,0.0061622527,-0.015484949,-0.017583774,0.031775262,0.0037736173,0.02887107,-0.034288973,0.027406773,-0.030432988,0.00058610045,0.0102805905,0.07585062,0.019048072,0.018486759,0.013801006,-0.070969634,-0.0004209856,0.0075899432,0.027724037,0.0069676167,-0.05061589,-0.007126249,0.000986113,-0.001070005,0.019841235,-0.011433725,-0.023343347,0.015765605,-0.0138620185,-0.033141937,0.010256185,0.018718606,0.04795575,-0.002031713,-0.028358566,-0.004170198,-0.024758834,0.012159772,0.028065706,-0.0048779417,0.041122362,-0.041537244,0.038779486,0.013617969,-0.036607444,0.041561652,0.013434932,-0.00223763,0.019804627,-0.021952264,-0.04058545,0.032922294,-0.011921824,0.0383646,-0.012355012,0.0103538055,-0.030823467,0.028944286,0.037900906,0.03353242,0.0053843446,-0.02882226,-0.000986113,-0.024893062,-0.010848005,0.0103294,0.015802214,0.022733223,-0.030066913,0.0011660996,0.032922294,-0.034142543,-0.017193295,0.027748441,-0.013825411,0.012629568,0.027065104,-0.010231781,0.0031604427,-0.01731532,0.007101844,0.04712598,0.032434195,0.012226886,0.03692471,-0.0075716395,-0.032287765,0.010695475,0.010146363,0.037364,0.07175059,-0.020329334,0.015057862,0.0123977205,-0.001691569,0.031604428,-0.03758364,-0.03265384,0.045466445,-0.0051524974,-0.024160912,-0.021854643,0.01455756,-0.02109809,-0.031628832,0.026284145,-0.019401945,-0.010963929,-0.017351927,0.03531398,-0.0055216225,-0.0073214886,0.026503788,0.028553806,-0.022843044,-0.04568609,0.0007908733,0.00973758,0.022928461,0.014118271,0.015765605,0.02252578,-0.0093287965,0.012946832,-0.034801476,-0.014325713,-0.020622194,0.018047469,0.024710024,-0.02911512,0.035924103,-0.028309757,0.031702045,0.014679585,-0.027943682,-0.02252578,0.020500168,0.0044569564,-0.015716795,-0.001163049,0.005552129,-0.012678378,0.010762588,-0.025259135,-0.014276903,0.03382528,-0.007962119,0.010414817,0.009859605,-0.009029836,0.020231714,0.018340329,-0.0142280925,0.0032458599,0.018328127,0.005399598,0.011031043,0.02547878,-0.0066625546,0.0056527993,0.008078042,0.021451961,0.008145156,0.0138620185,-0.023184715,0.0050548776,-0.013251894,0.01942635,0.0070713377,0.011146966,0.0011477959,0.021903453,-0.021378746,-0.016497754,-0.017144486,0.013361717,-0.024014482,-0.020768622,-0.031116327,0.024209723,-0.02979846,0.013813209,0.010067047,-0.018035267,0.009188469,-0.0022711868,0.009139658,-0.009469125,0.01647335,-0.010603956,-0.03424016,-0.011299497,0.003944452,-0.0028553805,-0.007779082,0.028187731,-0.0009128981,0.022660008,0.018108482,0.02331894,-0.021476367,-0.018755214,-0.069456525,-0.009554543,-0.018974857,0.014167081,0.000109727,0.0022086492,-0.021964466,0.010701576,-0.0063330876,-0.025844855,0.03389849,0.024917467,-0.024551392,-0.010756487,-0.0007908733,0.020121891,0.022782031,-0.0013094788,0.014167081,0.0051280926,-0.0046888036,-0.00845632,-0.009585049,-0.015411734,-0.010024338,0.005012169,0.001735803,-0.04510037,0.03289789,-0.0011897419,-0.013178679,0.010658868,-0.019999867,0.017718002,0.015057862,-0.0036729467,-0.023880256,0.04165927,-0.012348911,0.021500772,0.027333558,-0.0016290313,-0.0033526316,-0.006924908,-0.013373919,0.013654577,0.050127793,-0.0072970837,0.0138620185,0.034093734,0.005301978,0.028309757,-0.007705867,0.023245726,0.021610593,0.0038712372,-0.016400134,0.03531398,0.042367015,-0.0026525143,0.010518539,0.024673417,-0.00629648,0.020024272,0.007449615,-0.011250688,0.011653369,-0.015399531,0.008724774,0.007711968,0.00031478587,0.0236118,0.0025472678,0.02208649,0.015851023,0.025991285,-0.01661978,0.0045545762,-0.008285484,-0.0422938,-0.050713513,0.009310493,-0.020707611,-0.015777808,0.0127882,-0.035924103,-0.010219578,-0.014984647,0.010884613,-0.023794837,-0.0201585,0.02208649,-0.028651426,-0.020341536,0.007785183,0.004194603,0.006147,-0.03899913,-0.007846195,-0.019255515,-0.004835233,0.0051219915,0.036070533,0.016546564,0.0017876634,-0.0018502012,-0.025356757,0.012306202,-0.027357962,0.017156688,0.03353242,0.0427819,0.053788535,0.01254415,-0.004240362,0.03890151,0.011885216,-0.0075777406,-0.0065649347,0.025356757,-0.017876634,0.013288502,-0.004902347,-0.03929199,-0.013739994,0.006387999,0.01637573,0.0167296,-0.004307476,-0.0024710025,-0.04046343,-0.0084502185,0.012629568,-0.020744218,-0.022171909,-0.024624607,0.020121891,0.007364197,0.012995643,-0.029237146,-0.0016107275,-0.010963929,0.0151066715,0.0027028495,0.027846063,-0.019499565,-0.007272679,0.005512471,-0.011537446,0.0152531015,0.0064978213,-0.022330541,0.026357358,0.016070668,0.0017205499,0.0057229637,-0.010048743,-0.02645498,-0.031067517,-0.035826486,0.0003304203,-0.0024877808,0.05305639,-0.043660477,-0.0069798194,-0.005478914,-0.0052348645,-0.018303722,0.023782635,-0.02444157,-0.0501766,0.023550788,0.017827826,0.0062537715,0.009334898,0.018852834,0.0010394988,-0.0009487429,-0.010628361,-0.045368824,0.021769226,-0.023453169,0.015863225,-0.015728999,0.012171975,0.009578948,0.038974725,-0.005817533,0.01765699,-0.0007493086,-0.0069188066,-0.0067601744,0.0051616495,-0.019096883,-0.011842508,0.043928932,-0.015472746,-0.005665002,0.0021476366,-0.025893664,0.022794235,-0.003517365,-0.039706875,0.009615555,0.0012949883,0.03455743,-0.0021522127,-0.002184244,-0.010854107,-0.012434328,-0.0024511735,-0.0036759975,0.010890715,0.011641167,-0.0055643315,0.0177058,-0.04060986,-0.025503185,-0.0143745225,-0.005125042,0.013361717,-0.015301911,-0.008139055,0.008279383,-0.005881596,-0.007815689,-0.02591807,-0.037168756,0.010213477,0.036168154,-0.025259135,0.016644184,-0.03707114,-0.008773584,-0.012800403,-0.026650218,-0.039950922,-0.009609454,0.0023474523,-0.012287899,-0.0069188066,0.0004129777,-0.040902715,0.011226282,0.015631378,0.020817433,-0.001985954,-0.02286745,0.0021415355,-0.019096883,0.0005003017,-0.0048962454,-0.03231217,0.013776601,0.00486879,0.0037309085,-0.0025579452,0.024124306,0.0019020617,-0.0064124037,0.015131077,-0.013971841,0.013556956,0.017595978,-0.009133557,0.024941871,-0.00049877644,0.017718002,-0.052714717,-0.019206705,0.013410526,0.03497231,0.024929669,0.014020651,-0.011049347,-0.03958485,0.008895609,0.06457553,-0.044880725,0.0068150857,0.05842548,-0.026381765,-0.044831917,0.0025838753,-0.006955414,-0.012507543,0.0172055,0.01155575,-0.043318808,0.010640563,0.027455583,0.033166345,0.031360377,0.021171305,-0.022269528,0.035826486,0.012062153,-0.014276903,0.01962159,0.00078477204,-0.03777888,-0.0191823,-0.016631981,-0.03953604,-0.030384177,-0.014191486,0.0250883,-0.0072421725,0.0047193095,0.010317198,0.017107878,0.0022406806,0.024063293,-0.0037004023,0.005597888,-0.008108549,-0.010146363,-0.0025792995,-0.029456789,0.021744821,-0.018230507,-0.0138620185,0.013556956,-0.027455583,-0.004804727,-0.03550922,-0.020744218,0.03733959,0.03870627,-0.014179283,0.013910828,0.014337915,0.007840094,-0.009554543,0.0005708473,0.011513041,-0.007382501,0.018620986,0.00140176,-0.030164534,0.023013879,-0.0011714381,-0.044441435,-0.004658297,-0.0044172984,-0.026088905,-0.014984647,0.00076227373,0.046589073,-0.0035326183,-0.01687603,-0.019951057,-0.026918674,-0.05290996,-0.019109085,0.024404962,-0.0074984245,-0.011506939,0.018254912,0.023721624,-0.011037144,0.0008900185,0.032068122,-0.01986564,-0.009682668,0.000041183375,-0.004530171,-0.0064124037,-0.0070591355,0.002341351,0.037241973,0.023550788,0.024856454,0.029578814,0.046100974,0.04712598,-0.034850284,-0.0066564535,-0.01971921,-0.010927321,0.009157962,0.020719813,-0.0005449171,-0.005189105,0.010304995,-0.0065588336,0.010744285,-0.007004224,-0.025161516,-0.02857821,-0.011476434,0.008749179,0.020817433,-0.021635,0.02350198,-0.024075495,0.019267717,0.027113913,0.013239692,0.0031939994,0.010073148,0.0211469,0.03585089,-0.0041915523,0.01986564,-0.0029621522,0.002994184,-0.024356153,0.0048108282,0.024807645,-0.0156191755,0.03319075,0.018877238,-0.03382528,-0.017156688,0.029090716,-0.02320912,0.015289709,-0.030408584,-0.002257459,-0.028480591,-0.014813812,-0.012727188,-0.028602615,-0.024807645,-0.03516755,-0.004460007,0.0007931613,-0.002611331,0.008389206,-0.01879182,0.016778411,-0.008029233,-0.018755214,0.016973652]},{"id":"interface-GatewayAuthSessionChangeDispatchData","type":"interface","source":"main","text":"Interface: GatewayAuthSessionChangeDispatchData\nDescription: AUTH_SESSION_CHANGE — login/logout on another client","meta":{"url":"/docs/typedefs/GatewayAuthSessionChangeDispatchData"},"embedding":[0.016907018,0.013035555,0.016098421,-0.00029901223,0.018083157,0.030653156,-0.028398888,0.033716023,0.036509357,-0.02950152,0.008980322,-0.00034208377,-0.040527835,0.05567064,0.0028408077,0.009360117,0.028619414,0.032784913,-0.021734092,0.03881263,-0.031461753,0.04307614,0.020165905,0.028178362,-0.01228209,-0.0025467726,-0.0035437352,-0.034010056,-0.016980525,-0.055523623,0.043615203,-0.0276638,0.021807602,-0.0035866154,0.045746956,0.014027923,-0.055425614,0.022567192,-0.01400342,-0.044472806,-0.018168917,-0.04885883,0.002467138,0.042855613,-0.05968912,-0.024502924,0.023437046,-0.00021593201,0.014089181,0.013807397,-0.0029235051,-0.064001635,-0.017605351,0.041189414,0.003776513,0.021648332,0.04033181,-0.01193905,0.0101013305,0.013807397,-0.044717833,0.008429006,0.028570408,-0.0044197147,0.01190842,-0.028447894,-0.012122821,0.005598918,0.028276373,0.026953215,-0.012165701,0.011424488,-0.04126292,0.0024518238,-0.01634345,0.034990173,-0.019822866,-0.018168917,0.035553742,-0.017703362,0.005007785,0.012876286,-0.06904924,-0.006407514,-0.01566962,-0.015375584,-0.072969705,-0.012416856,0.010291228,-0.013623625,0.036019295,0.038004033,-0.022444678,-0.0050874194,0.01977386,-0.00258659,0.002356875,-0.020141402,-0.012447485,0.009249854,0.029893566,-0.115947835,-0.036288828,-0.007216111,0.029991578,-0.021489063,0.011638888,0.02614462,-0.06929427,-0.025287017,-0.06076725,-0.017801374,-0.020741725,-0.021819852,-0.03714643,-0.018585468,0.042267542,-0.07566503,0.014015672,0.00833712,-0.012594502,0.03677889,0.020582456,-0.035333216,-0.010891549,-0.06076725,-0.035235204,0.013084561,-0.0628745,-0.03528421,0.061845377,-0.024784707,0.015657367,-0.043786723,-0.0051793056,-0.007687792,-0.005733684,0.0027060416,-0.03119222,-0.013807397,-0.017201053,-0.041017894,0.026536666,0.024698947,-0.041115906,0.039327193,0.035088185,0.07360678,-0.0023660634,0.020227164,-0.059395086,0.015204064,0.00160341,0.036435846,-0.0020827486,0.04577146,0.034622632,-0.00053447,-0.008435131,0.023228772,-0.00820848,-0.04013579,0.0057888157,0.015473596,-0.06571684,-0.0318538,0.0041501825,0.0025253326,-0.06728502,-0.009329488,-0.021133771,-0.037783507,-0.018315936,0.024184385,-0.009611271,-0.02044769,0.007577529,-0.022175146,-0.02891345,0.011424488,0.025287017,0.021305291,0.02498073,-0.0746359,-0.011853289,0.0034212207,0.035161696,0.03579877,0.013868654,-0.0156206135,0.0034273465,0.03261339,-0.0035559868,0.0005765844,0.02271421,-0.057973918,0.017813625,-0.031412747,0.016380204,-0.027173743,-0.007951198,-0.0763021,0.026830701,-0.02624263,-0.0077858036,0.01644146,0.037097424,0.0041501825,0.0009862427,0.0036233698,0.031486258,0.039841752,-0.0025651497,-0.022603946,-0.06277649,0.045893975,0.008520892,-0.005231374,0.011957427,-0.0024518238,0.02565456,0.006095102,0.0040123537,-0.013623625,0.051407132,0.0101687135,0.00090201385,-0.015081549,-0.023400292,-0.016882515,-0.0058776387,0.019957632,-0.010573012,-0.06262947,0.024870466,-0.00044526407,0.031143215,-0.043811228,0.030408127,0.025875088,-0.007240614,-0.005865387,-0.023106256,0.02540953,-0.025679063,0.00850864,0.008373874,-0.008649532,-0.0394007,0.021146024,-0.029329998,0.041360933,0.014211696,-0.04057684,-0.005752061,0.0020168968,0.043639705,-0.021440057,0.020202661,0.03545573,0.05581766,-0.059983157,0.012790526,0.04760918,-0.032931928,-0.019810613,0.022738712,0.009188596,-0.045697954,0.029477017,-0.022922484,0.03175579,0.013954415,0.024515174,-0.025850585,-0.023571812,0.035333216,0.010995687,-0.01710304,0.026169121,-0.024968479,-0.023547309,-0.0027045102,0.0019372624,-0.036729883,0.022236403,-0.0031195285,0.027541285,0.034745146,0.030971695,-0.040111285,0.01202481,0.0042941375,-0.00475663,0.00004859906,0.0148487715,-0.038175553,0.0035314837,0.000801705,0.014763012,0.0059480844,0.028864443,-0.041042395,-0.016539473,0.0527793,-0.0009066082,0.043223158,0.027639298,0.04459532,-0.014101433,-0.0444483,-0.038567603,-0.04148345,0.028545905,-0.018671228,-0.013550117,0.024110876,-0.0018269992,0.017237807,-0.008245233,-0.011283596,0.016576227,0.0053814547,-0.023841344,0.011210088,0.0007706935,-0.03913117,-0.014125935,0.025752572,0.061159298,0.019136783,-0.065520816,0.025703566,-0.007099722,0.058512982,0.036509357,-0.0393762,0.02790883,0.003436535,-0.017887134,-0.023118509,-0.030898185,-0.0427331,-0.017323567,0.037072923,-0.044227775,-0.006548406,0.03562725,-0.042635087,-0.006824064,0.009347865,-0.0043155774,-0.011969678,-0.04425228,-0.0037703873,-0.022530438,0.018291432,-0.06262947,0.0013805865,0.028447894,-0.0068853213,0.012502616,0.012386228,-0.02874193,0.024919473,0.0043308917,-0.034157075,0.009452003,0.033078946,-0.031167718,-0.02396386,-0.0544945,-0.0569938,0.02555655,-0.019982133,0.030236607,-0.030849181,-0.03026111,0.015608362,-0.0004073611,0.009709284,0.027516782,0.019835116,0.02063146,0.015436842,-0.007840935,-0.03638684,0.018671228,-0.046384033,0.0014640497,0.0074060084,-0.012962046,0.0067321784,-0.005595855,-0.031216724,-0.014309707,0.09923684,0.0069772075,0.018585468,-0.045893975,0.0074060084,0.021268537,0.032931928,-0.010922178,-0.034475613,0.041017894,-0.008484137,0.03763649,0.043223158,0.016772252,0.07100947,-0.0155103505,0.016625233,0.016037162,0.0060828505,-0.029526023,-0.011289722,-0.010916052,0.04256158,0.033470992,0.020962251,0.0072957454,-0.006171674,0.017164297,0.044693332,-0.01399117,0.044350293,-0.00637076,0.03712193,-0.053024326,-0.0112713445,0.033716023,0.044227775,-0.02373108,0.017666608,0.020300671,-0.012643509,-0.022346666,0.0063095028,-0.043590702,-0.021011258,-0.0077551752,-0.0063156285,0.0133908475,-0.048001226,0.00039510964,-0.0034059063,-0.014285204,0.047903214,-0.02128079,-0.043443684,-0.0031424998,-0.0108302925,0.07056842,-0.07321473,0.0015352613,-0.0064994004,0.052681286,0.019749356,-0.022236403,-0.0026662243,-0.012582251,-0.0018285307,0.071891576,-0.022946987,-0.025581053,-0.0034641009,0.004006228,-0.008986447,0.017323567,-0.020276168,-0.015522602,0.020864239,0.02397611,-0.019651344,0.0041134283,0.023118509,-0.009347865,0.045477424,0.00913959,0.019994386,0.0561607,-0.013709386,0.0044411547,0.04515889,0.06566784,0.022861227,0.011951301,-0.02825187,-0.005304883,0.035749763,-0.0035131066,0.015902396,-0.013035555,0.0047933846,-0.0041134283,0.025899589,-0.087181404,0.004502412,0.023265526,0.0061563593,0.004983282,-0.0009219225,0.016943771,0.0096602775,0.025066491,-0.073655784,0.004490161,-0.039474208,-0.060032163,-0.010217719,-0.0058592614,-0.030016081,-0.05498456,-0.062335435,-0.01190842,-0.0030199853,0.014211696,-0.0045881723,0.049054854,-0.02069272,0.018671228,0.029942572,-0.005598918,-0.011075322,0.021219531,0.017005028,-0.069980346,-0.027712807,-0.011975803,0.042096023,-0.026218127,0.012447485,0.035088185,0.0007239848,-0.0070935963,-0.0027963961,0.002615687,-0.007767427,0.002612624,0.008888436,-0.013966667,-0.0059511475,0.017923888,-0.008275863,-0.011571505,0.018487455,-0.005142551,0.015632866,-0.0084228795,-0.012680262,-0.013709386,-0.0019464509,0.01810766,0.010548509,-0.002364532,0.005136425,-0.0368769,-0.0068056867,0.0030536768,-0.029452514,-0.015277573,-0.008018581,-0.05155415,-0.004444218,0.060963273,0.014236199,0.016404707,-0.03503918,0.008986447,-0.032221343,0.047315143,-0.03998877,0.062482454,0.026022105,-0.021685086,0.017801374,0.0011187115,0.023228772,-0.005032288,-0.0019341995,-0.0494469,-0.028374385,0.05248526,-0.059738126,-0.013782894,0.007442763,-0.00106358,-0.028986959,0.025066491,-0.023596315,-0.007173231,0.022677455,0.0009954312,0.020080145,0.02641415,0.017041784,0.011859415,-0.013954415,0.0014410781,0.016073918,0.007853187,-0.029133976,-0.026683683,0.024184385,0.04719263,0.023290029,0.00737538,0.0095500145,0.0077858036,0.018475205,0.02565456,0.02732076,0.018401695,-0.022824474,0.009482631,-0.030922689,-0.00578269,-0.021182777,0.010781286,-0.023841344,0.018328186,0.007828684,0.016331198,-0.021587076,0.06066924,-0.022995993,-0.020129152,-0.027688304,-0.0046769953,0.008980322,-0.015032544,-0.010726155,-0.0021057199,-0.039498713,-0.014223947,0.03695041,0.0021149085,-0.0046524927,-0.029182982,-0.012998801,-0.03888614,0.03663187,-0.021403303,0.060326196,-0.0014808954,-0.0013239236,-0.011265219,0.007736798,0.009464254,-0.01676,-0.014432222,0.080075555,-0.0006619618,0.04986345,-0.019038772,0.00034572094,0.045085378,-0.003117997,-0.0063646343,-0.0032405115,-0.0027872075,-0.017323567,0.009133465,0.015559357,0.02707573,-0.028055847,0.010468874,-0.030800175,0.009464254,-0.016073918,0.03562725,0.074880935,0.006079788,0.009850175,-0.0007297277,-0.025090994,-0.023118509,-0.005896016,0.018805994,0.024086373,0.034622632,0.008018581,0.007191608,0.03327497,0.02396386,0.07169555,-0.034475613,-0.015718626,0.017654356,0.0006202302,0.038739122,0.0118900435,-0.037611987,-0.0025957783,0.0059572733,0.035749763,0.011632763,0.008122719,-0.0067444295,-0.022628449,-0.012251462,0.020325175,-0.00951326,-0.0039357822,-0.03396105,-0.013733888,-0.019210292,0.0073324996,-0.021746345,-0.0067444295,-0.025262514,-0.022836724,0.014383216,0.005963399,0.017054034,-0.031535264,0.027443275,0.014040175,-0.026438653,-0.007007836,0.013599123,0.0138319,-0.0053447,0.005647924,0.009831798,0.0055039693,0.0077490495,-0.010903801,-0.013182573,-0.027222747,0.012226959,0.029477017,-0.0058531356,-0.024331402,0.009776667,0.009605146,0.0074733915,0.016220935,0.00035050666,0.030530643,-0.029697543,-0.0065606576,-0.01894076,0.026022105,0.007124225,0.005439649,0.021268537,-0.021354297,0.03445111,-0.011222339,0.007969576,-0.023608567,-0.006235994,-0.006297251,0.013035555,0.011338728,-0.020043392,-0.00019142909,-0.014775263,0.017838128,0.0073631285,0.00038075246,0.052436255,-0.033912044,0.004557544,-0.06066924,-0.030236607,-0.011914547,0.00833712,-0.011259093,-0.02607111,0.005537661,0.014505731,0.04368871,-0.03998877,0.015730876,-0.010836418,-0.020974502,-0.008545394,0.023424795,-0.017923888,-0.010205467,-0.054004442,0.0036019296,-0.025777075,0.017985146,-0.024539677,0.001263432,0.016000409,-0.005687741,0.004918962,0.001670793,-0.04474234,0.014763012,0.013194825,0.02648766,-0.09531637,0.03467164,0.035259705,-0.020594707,0.029207485,0.011510248,0.040380817,0.040258303,0.03467164,-0.08556421,0.035578243,-0.03511269,-0.010291228,-0.0037336329,0.0044993493,-0.017666608,0.022407923,0.052926313,0.0138319,-0.0014916154,-0.016710993,-0.007669415,-0.015547105,0.0427331,-0.003641747,0.0036264327,-0.029722046,0.0016600731,-0.019087777,-0.03327497,0.05356339,-0.03971924,-0.010597514,-0.019982133,0.008796549,0.037930526,0.004407463,0.009917558,-0.0061349194,-0.03067766,0.0067934357,-0.0064320173,0.024698947,0.015228567,-0.008055336,0.012606754,-0.02749228,0.018707981,-0.018487455,0.023081753,-0.013231578,-0.015828889,0.023584064,-0.032784913,0.007828684,-0.009862427,0.016171928,0.013513362,-0.022640701,-0.023988362,0.008974195,-0.0083126165,0.006229868,0.02456418,0.021219531,-0.008576023,0.003911279,-0.026855204,0.019626841,0.030138595,0.011516374,0.015939152,0.042218536,0.0023247148,0.0027014473,0.059297074,-0.0060675363,-0.013366344,-0.0036968784,0.06111029,0.021648332,0.008196228,0.014652748,0.022150643,0.01516731,-0.013305088,0.008796549,-0.015657367,-0.017874882,0.005620358,-0.019479824,-0.019577837,0.01366038,0.019332806,0.014089181,0.0109405555,-0.035749763,0.04006228,-0.01676,-0.015326578,0.012128947,-0.004321703,0.013929912,-0.021746345,-0.026855204,-0.016294444,0.005552975,0.005412083,0.008857807,0.022346666,0.0063217543,0.002364532,-0.016612982,0.0066586696,-0.034181576,-0.017005028,0.03714643,-0.030481637,0.0057673757,-0.0238781,-0.0022848975,-0.0037121929,0.0072467397,0.0031578143,-0.008012456,0.00055705867,-0.011056944,-0.035676256,-0.003393655,0.06311953,-0.017703362,0.0021608516,-0.013550117,-0.001695296,-0.0053998316,-0.003822456,0.014493479,0.00695883,-0.036166314,0.004000102,0.0034089691,-0.0038929018,-0.0057214326,-0.011216213,0.014934531,-0.024012865,-0.0018132164,-0.018413946,0.002664693,0.0046065496,0.012233084,-0.027810818,-0.035063684,-0.03253988,0.023032747,0.05005947,-0.022579445,0.012717017,-0.016907018,0.030065088,0.041189414,0.017764619,-0.046923097,0.037489474,-0.0019403253,-0.02808035,-0.04057684,0.023020497,-0.02749228,0.0014472039,-0.015326578,0.016784502,-0.009102836,-0.041434444,0.010922178,0.023008244,0.0066280407,-0.019896373,0.023510555,-0.011540877,-0.0058807014,0.0011493403,-0.039180174,-0.019541081,0.055376608,-0.0008139565,0.04910386,-0.00320682,-0.039180174,-0.011222339,0.012251462,0.047903214,0.023669824,-0.009519386,-0.03244187,-0.028300876,0.01961459,-0.022420175,-0.013966667,-0.015240818,0.0062053655,0.04057684,-0.009464254,-0.0039694738,0.030481637,0.0057489984,-0.0023920978,0.028962456,0.005752061,0.0007251334,0.003326272,0.017054034,-0.018830497,0.009121213,-0.02212614,0.010260599,-0.025875088,-0.010217719,0.010358611,-0.0078715645,0.014285204,-0.017544093,0.014309707,0.043468185,-0.003050614,-0.008318743,-0.059640117,-0.024233392,-0.04895684,0.007620409,0.006214554,-0.020141402,-0.021427806,-0.0019280738,0.020962251,-0.005026162,0.012049313,0.031731285,0.00015505755,0.03467164,0.0024426351,0.015204064,-0.0150692975,-0.01826693,0.0016432273,0.004303326,-0.018401695,0.008747543,-0.0050629163,0.031829298,0.0033293348,0.0062023024,0.011442865,-0.011314224,0.01391766,0.01869573,-0.0027933333,0.009255979,0.0029709795,0.0013736951,0.0037428215,-0.007908318,-0.004958779,-0.013709386,0.011338728,-0.024527427,-0.023473801,0.036435846,0.008263611,-0.011816535,0.03285842,0.055768654,0.0011654203,0.017813625,0.003500855,0.029967075,-0.012361725,0.035749763,0.0025329897,0.031804793,0.0006646418,-0.0071609793,-0.015044795,-0.051652163,0.021930117,-0.026610175,-0.014946783,-0.00737538,0.008588275,-0.0129497945,0.038837135,0.027565788,0.015632866,-0.009911433,-0.023081753,-0.0022527375,0.007693918,0.030285614,0.0048791445,-0.02170959,-0.020043392,0.025090994,0.0019939253,0.01575538,0.0005727558,0.022260906,0.03160877,0.029771052,-0.00016395902,0.0085944,0.006505526,-0.023596315,0.029011462,0.024919473,-0.014370965,0.020655964,0.016220935,0.0013116722,0.0110079385,0.0025574926,0.0110508185,0.03530871,-0.0022343602,-0.0014418439,0.004116491,0.01399117,0.016698742,-0.011124327,-0.010009444,-0.0007576763,0.012202456,-0.028815437,-0.03253988,-0.008980322,-0.00006862733,0.031731285,0.015008041,0.015792133,0.0163557,-0.0039909137,-0.06601088,-0.0028790934,-0.00947038,-0.010848669,0.009078333,-0.00593277,-0.019675847,-0.011430614,0.008545394,-0.005255877,0.0662069,-0.013697134,0.028692923,0.005644861,-0.0024441667,0.0044870977,-0.0125087425,0.04609,-0.021525819,-0.0025253326,0.005372266,0.02883994,-0.007056842,-0.023951607,0.007798055,0.021917865,0.0030812426,-0.016943771,0.01726231,-0.021685086,0.03143725,-0.020067895,-0.0024028178,-0.02396386,-0.011724649,-0.019271549,0.01156538,-0.005277317,0.024796959,0.05630772,0.0058776387,-0.002604967,0.028717427,-0.011332602,0.0012037061,-0.0069833333,0.036754385,-0.027786314,0.034647133,-0.00573981,-0.0025299268,-0.017115291,0.031241227,-0.031731285,-0.05248526,0.0036999413,-0.0035866154,-0.037930526,-0.02397611,-0.020349678,-0.014493479,0.02003114,0.032343857,-0.008974195,-0.014223947,-0.020239415,0.026781695,0.014934531,0.00024273209,-0.031829298,-0.01793614,0.016784502,-0.0071609793,0.015743129,0.0163557,0.0016784503,-0.027002221,0.019161286,-0.042463567,0.0110079385,0.009035453,0.000017156832,-0.03300544,-0.018291432,-0.024772456,0.007032339,0.00027029787,-0.02638965,0.016968274,0.014652748,-0.0017136732,0.003595804,-0.002802522,0.027565788,-0.016809005,0.036264326,0.0038622732,-0.0013782894,0.0056754895,-0.036754385,0.042120524,-0.009752164,0.003941908,0.010468874,0.0014701753,-0.003482478,-0.009501008,-0.015118304,-0.024098625,0.0017672733,0.028055847,0.014297456,0.009868552,-0.012184079,0.0011125859,0.011920672,0.024380408,0.006897573,-0.010138084,0.016220935,-0.050279997,-0.01110595,-0.003029174,0.008674035,0.007669415,-0.033470992,0.03253988,-0.013905409,-0.035259705,0.013256081,-0.016331198,0.0050812936,-0.0027749562,-0.029182982,0.0048362645,0.008833304,0.029403508,0.03511269,0.0031761914,0.040993392,-0.024172135,0.010327982,0.014236199,-0.0045085377,0.014407719,0.030775672,-0.005644861,0.0022205773,0.000002668043,0.017776871,0.009672529,-0.008367748,-0.004640241,0.0032680775,-0.0020184284,0.019626841,0.016735496,0.0007339391,0.009727661,-0.03288292,0.004413589,0.02800684,-0.0213788,-0.02690421,0.031706784,-0.018499708,0.0041808113,-0.025262514,0.029354502,0.015081549,-0.003085837,-0.0128395315,-0.036509357,0.005507032,0.0021011257,0.008159474,-0.021048011,0.0017642105,-0.024588684,-0.023927104,-0.0047260015,-0.010554634,0.04199801,0.021611579,0.023755584,-0.0042236913,0.016135175,0.024870466,-0.012410731,-0.024576431,-0.006554532,-0.015522602,0.011712397,0.03119222,0.017127544,0.0055652265,-0.016784502,-0.0053324485,0.0024992982,-0.017127544,0.0128395315,-0.0021011257,-0.004710687,-0.0087107895,-0.027345262,0.028594911,-0.022701958,0.015792133,-0.004036857,0.011406111,-0.035382222,0.0074305115,-0.026855204,0.036827892,0.043541696,-0.021195028,-0.02815386,0.00034495522,0.0049495907,0.013868654,0.0024074123,0.038102046,0.010413743,-0.028325379,0.017482836,0.010934429,0.040846374,0.030775672,0.00070216187,0.01119171,0.0010436714,-0.010162587,-0.018450702,-0.045795962,0.014983538,-0.002459481,0.030726666,0.0115225,0.00047742415,-0.055278596,0.02297149,0.056944795,0.0071977335,-0.044619825,-0.0049036476,0.018548712,-0.036827892,0.046947602,-0.016061665,-0.031535264,-0.011167208,-0.009145716,-0.02815386,-0.008845556,0.021917865,0.021244034,0.030800175,0.028986959,-0.045648947,0.021832105,0.019847367,0.032000817,0.025581053,-0.0027274815,-0.049397893,0.021342047,-0.012998801,-0.004817887,0.015632866,0.035823274,0.0034763522,0.022824474,-0.0055927923,-0.023657572,0.005546849,0.0038592105,-0.041949004,0.003571301,-0.04307614,0.00813497,-0.011504122,-0.03998877,-0.010487251,0.003617244,-0.006689298,-0.0045146635,-0.009525511,-0.0072528655,0.025262514,-0.013292836,-0.017090788,0.0150692975,0.012913041,-0.024845963,0.0019296053,0.0025850583,-0.014199444,-0.0004000868,0.020900993,-0.0033630263,0.030726666,-0.004474846,-0.015816636,-0.034769647,0.0132805845,0.012753772,-0.0005513158,-0.0041593714,-0.00076112204,0.01056076,0.00071709335,0.0014648153,0.041605964,-0.0082023535,0.013795146,-0.014089181,-0.03160877,0.014015672,-0.038445085,0.0138564035,0.03212333,0.012171827,0.0048822076,0.00695883,0.013256081,0.025899589,0.016073918,0.016490467,0.031020701,0.030579649,0.024074122,-0.0055499123,-0.014934531,-0.0053385743,0.058709003,0.027198246,-0.00036486384,-0.0008981853,0.029869063,0.0034273465,-0.0012159576,-0.004257383,-0.018928507,-0.025997601,-0.0048638303,0.0222119,-0.04158146,0.02572807,-0.029893566,-0.0151795605,-0.03636234,-0.009592894,-0.014015672,-0.03352,-0.011528625,0.014346462,-0.0163557,0.022946987,-0.006848567,-0.035161696,0.0015314327,0.00073547056,-0.024502924,-0.0017228618,0.024221139,0.017617602,0.01492228,-0.015216315,0.031388246,-0.009200848,-0.026855204,-0.06630491,-0.011216213,-0.0059572733,0.0019678911,0.014272952,0.010052324,-0.035186198,-0.016943771,0.026879707,-0.0011746088,-0.0013231578,-0.003932719,-0.0055407234,0.022616198,-0.0063156285,-0.005850073,-0.01809541,-0.0019678911,-0.025189005,0.0027382018,-0.0031455627,0.0008330994,0.02120728,0.013194825,-0.018928507,-0.0103892395,0.001414278,-0.0032711402]},{"id":"interface-GatewayCallCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallCreateDispatchData\nDescription: CALL_CREATE — call created\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallCreateDispatchData"},"embedding":[0.04288472,-0.0050236853,0.008819298,-0.01669309,0.004610705,-0.03306014,-0.007585792,-0.0030049735,0.011324348,-0.02956068,0.034320816,0.0068902466,0.028821662,-0.025539557,0.016290978,-0.017116938,-0.041254535,0.008390016,0.029278114,0.023018206,-0.040080804,0.01074835,0.021561908,0.00860194,-0.0059501734,-0.019801307,-0.007363,-0.010661406,-0.00038139525,-0.025583029,0.07824886,-0.020344703,0.039972123,-0.0073684338,0.026365517,0.020507721,-0.017388634,-0.03079962,-0.039667822,-0.0023488242,-0.0297563,0.01699739,0.006189267,0.0049747797,-0.037755072,-0.03286452,-0.005586099,0.042037025,0.0050780247,-0.00391516,-0.034299083,-0.022159642,0.010846161,0.043797623,0.012954533,-0.010770085,-0.00019545233,-0.012758911,-0.04247174,0.032842785,-0.020996775,-0.025496086,-0.015867129,-0.028691247,0.015030301,0.0041732723,-0.041363213,0.04392804,0.022540018,0.018584102,-0.006607681,0.00450746,-0.028604304,0.008286771,-0.015149848,0.0015024868,-0.044819206,0.0045509315,0.04081982,-0.0017904859,0.013367513,0.009628956,-0.06459878,-0.0068630767,0.01823633,-0.01219378,-0.030560525,-0.016736561,-0.0057219476,-0.0032331992,-0.009090995,0.012367667,-0.024496239,0.017008258,0.01829067,-0.011454763,0.0595126,-0.000842262,-0.022713903,-0.0050671566,0.037320357,-0.048383877,0.010579897,-0.004627007,0.011661253,-0.022235716,0.006075154,-0.0050236853,-0.0101397475,0.009590919,-0.04205876,-0.024431031,-0.009574617,-0.016149694,0.0016614296,-0.021051116,0.058730114,-0.08059632,0.01668222,-0.0061403615,-0.026061216,-0.009699598,0.0055317595,-0.01772554,0.0025295028,-0.014399963,0.013584871,-0.010069106,-0.07107604,-0.008161791,0.022952998,0.03590753,0.04308034,-0.016812636,-0.012628496,0.01172646,-0.04660154,0.030451847,-0.012226384,-0.036146626,0.012574157,-0.026908912,0.0662507,0.045992937,0.004928591,-0.012454609,-0.0073412643,0.046427656,0.030343167,0.053730883,-0.065381266,0.053556994,0.01626924,-0.017845087,0.005787155,0.0009910163,0.0030321432,-0.011856875,-0.015041169,-0.013052344,0.02934332,-0.034299083,-0.01446517,0.036342245,-0.06951106,0.012063365,-0.0027509364,-0.014117397,-0.061860066,0.023496393,0.035733644,-0.028799927,-0.07433641,0.034842476,-0.008254168,0.011856875,-0.02108372,-0.029430265,-0.016801769,-0.014073926,0.01999693,0.01891014,-0.007042397,-0.0700762,-0.027995702,0.0015378074,0.0000048422635,-0.0010161484,0.052383263,-0.052904923,-0.037581187,-0.016747428,0.016856108,0.043210756,0.0142695485,0.002041806,0.048166517,-0.009422466,0.0037956128,0.00067516806,0.037624657,-0.07890093,-0.020833759,-0.0037059528,0.0148672825,-0.02656114,-0.007786848,0.0015907884,-0.015106376,0.0005722627,0.040928498,-0.04638418,0.010449483,0.025778651,-0.04903595,0.030147545,-0.027430572,0.029886715,-0.0072162836,-0.028147852,-0.023496393,0.0066620205,0.03584232,-0.04081982,-0.0031435392,0.030908298,-0.018377613,-0.00043709323,-0.02277911,0.012802382,-0.02780008,0.01416087,0.031190863,-0.05560016,-0.0146064535,0.030973505,-0.0077705462,0.029473735,0.024604918,0.03214724,0.0030104073,-0.009857182,-0.03582059,-0.009156203,-0.012552421,0.019301385,0.037342094,-0.020344703,-0.018942744,0.013932643,0.039298315,0.019355724,0.004732969,0.01741037,-0.0014264114,-0.018149387,0.03699432,-0.027887022,0.04629724,0.020594664,0.07372781,-0.06951106,-0.026908912,0.0712934,-0.024300616,-0.028017437,0.03053879,0.029365057,-0.036972586,0.012921929,-0.003148973,-0.042189173,0.07981383,-0.0050888928,-0.04464532,-0.040841557,0.010020201,-0.0020295796,0.03462512,0.00777598,-0.05977343,0.006075154,-0.020866362,0.057947624,-0.019670893,0.031429958,-0.015986675,0.014356491,0.03012581,0.013476192,-0.028495625,0.008091149,-0.027169742,-0.06707666,0.013008872,0.06329463,0.018366745,-0.006395757,0.046688482,0.020725079,0.033820894,0.023822429,-0.009177939,-0.026995854,0.0022279187,0.030321432,0.059251774,-0.021431493,0.055208914,-0.033777423,-0.0167909,0.023518128,0.010873331,-0.037646394,-0.02273564,0.03229939,0.032212447,0.025343934,-0.0412328,0.041819666,-0.026778497,-0.018018972,-0.017225616,-0.027865287,-0.008895373,0.01390004,-0.0084389215,-0.028495625,0.00839545,0.049731497,0.014530377,-0.060382035,0.014921622,-0.0057110796,0.06446836,0.03579885,-0.053078808,0.0059501734,0.003043011,0.01172646,0.043732416,-0.023518128,-0.040928498,-0.026887177,0.0341904,-0.008612808,0.019540478,0.014432567,-0.015867129,0.04029816,-0.020627268,0.00018016934,-0.016280109,-0.023257298,-0.01374789,-0.03895054,-0.0068522086,-0.065294325,-0.020290364,0.008824732,-0.054382954,0.0028881435,0.01539981,-0.014486906,-0.0073956037,-0.0034125196,-0.02682197,0.0023895788,-0.021811869,-0.016453996,-0.008400884,-0.020953305,-0.05590446,0.0029913886,0.0052845147,-0.05316575,0.001732071,-0.010884198,0.024626654,0.0075477543,0.03053879,-0.001573128,0.004075461,-0.012052498,0.023061676,0.047731802,-0.025061369,0.042406533,-0.031234335,-0.0042792344,0.009683296,-0.0010854312,0.0011669404,0.0056187026,-0.007330396,0.0054312316,0.061207995,-0.0115417065,0.021018513,0.009395297,0.039341785,0.013052344,0.0061403615,-0.010797256,-0.009112732,-0.02051859,0.025778651,0.013628342,0.05668695,-0.0070097935,0.05994732,0.0068685105,0.03525546,0.040450312,0.024604918,-0.02588733,-0.037037794,0.010096276,-0.024952691,0.01136782,0.043775886,-0.00046154598,0.0022021076,0.025322199,-0.036668282,-0.0297563,0.0016165996,0.041558836,0.010612501,-0.028278267,-0.0046134223,0.011943818,0.06872858,0.017377766,0.037342094,0.0006184512,-0.020333834,-0.04160231,-0.0017130522,-0.0038173487,-0.06033856,0.025496086,0.017790746,0.017149542,-0.023996316,0.015975809,0.025126576,-0.027061062,0.018877536,0.0091670705,-0.048818592,-0.017964633,-0.026256839,0.045688637,-0.01947527,-0.00058890413,0.002841955,0.055469744,-0.038450617,0.01539981,-0.027104534,-0.018214595,0.02851736,0.079596475,-0.037798546,0.030821355,-0.036516134,-0.011672121,-0.008982317,0.037168205,0.0008307148,-0.03421214,0.024257146,0.039646085,-0.012378534,0.005031836,-0.024517976,-0.00966156,0.026430724,-0.023887636,0.02971283,0.009987597,0.030299695,0.044862676,0.04108065,0.059816904,-0.0008802996,0.004309121,-0.0154650165,-0.017214749,-0.0049557607,0.009770239,0.050774813,-0.0088682035,-0.027017592,0.013552267,-0.008096583,-0.010036503,-0.007661867,0.00860194,-0.048688177,-0.00715651,0.028430417,-0.027169742,0.04851429,0.0074879806,-0.0017578823,-0.015149848,-0.016866976,-0.056773894,0.014823811,0.03575538,-0.01823633,-0.016747428,-0.052731033,-0.0041379514,-0.0039504804,0.057599854,-0.029843245,0.015128112,-0.018627575,-0.00453463,-0.022583488,0.021420624,-0.016410524,-0.024365824,0.025365671,-0.08285684,-0.0014549397,-0.0018896555,0.06059939,-0.022866055,-0.020062137,0.022246584,0.026952384,-0.018888405,0.0045536486,0.017790746,0.017084334,0.028647775,-0.01534547,0.01416087,-0.010041936,0.022148773,0.012117704,-0.020388175,0.025061369,0.0033826327,0.012824118,0.0061729653,0.010340803,-0.045384336,-0.008553035,0.0046976483,0.007938999,0.031842936,0.0016913164,-0.025822122,0.009911521,-0.0051867035,0.012889326,-0.008987751,-0.003999386,-0.025452614,0.0049937987,0.045862522,-0.033560064,-0.01410653,0.0019725233,-0.030191017,-0.02893034,0.041884873,0.020355571,0.013584871,0.003988518,0.0060208146,-0.0054040616,0.011443895,0.025278728,-0.03690738,-0.017953765,-0.078031495,0.017160408,0.041515365,-0.049861908,0.047340557,0.029821508,-0.020322967,0.009906088,0.0135413995,-0.025235256,-0.0011947894,0.005034553,0.0075912257,-0.016758297,0.00834111,0.0051296474,0.0003443765,0.016834373,0.023778958,-0.012095969,0.03662481,-0.0332775,-0.037950695,0.034864213,0.03414693,0.011291744,0.037907224,-0.0038852731,-0.014508642,-0.0000016344297,0.024974426,0.024583181,-0.009835446,0.022409603,-0.012921929,0.004969346,0.006118626,-0.0098028425,-0.01622577,0.021464096,-0.0004292819,-0.027321892,0.028452154,-0.005993645,0.033407915,-0.028278267,-0.04231959,0.0036298775,0.0012864872,0.004515611,-0.03745077,-0.0032848218,-0.013313173,-0.0085476,-0.023887636,0.040537253,-0.013965247,-0.010291898,0.022496546,0.0079335645,-0.023365978,-0.005982777,0.000074164906,0.032168973,-0.010558162,0.009563749,0.024018051,0.02806091,0.035429344,-0.046123352,-0.0052736467,0.0350381,0.00088233734,0.048557762,-0.01988825,-0.036863904,0.041276272,-0.033494856,0.025409142,-0.013269702,0.0073412643,0.025017899,0.022952998,0.031234335,0.0038581034,-0.005550778,0.010715746,-0.011047217,0.0010575822,-0.020659871,0.004499309,0.043015134,0.014443435,0.0028039173,0.011998158,-0.007716207,-0.011585178,0.030864827,0.014291284,0.018105917,-0.009395297,-0.030930033,-0.019866515,0.039819974,-0.020116476,0.06959801,-0.015280263,0.02190968,0.015486753,0.000814413,0.008199828,-0.0012695062,0.0012212798,0.031560373,0.013084947,0.0471232,0.00093463913,-0.023387713,-0.018073313,-0.017008258,-0.022453075,0.01694305,-0.02656114,-0.011090688,0.013367513,-0.020268627,0.027408835,0.01077552,0.014291284,-0.009150769,-0.019236177,-0.023778958,-0.010520124,-0.0092051085,0.019670893,-0.039406992,0.008634544,-0.0019426366,0.003695085,0.044514906,0.037363827,-0.027995702,0.0027509364,0.02221398,0.030647468,0.02712627,0.007786848,-0.0057545514,-0.0076075275,-0.0073140943,0.01668222,0.033299234,0.0054203635,-0.036407452,0.012900193,-0.014041322,-0.007781414,0.026104689,0.0048932703,0.020790286,0.0019249762,-0.0042629326,-0.004007537,0.012487213,-0.021051116,0.015693244,-0.015562828,-0.0018190142,0.02934332,-0.011954687,0.003983084,-0.043602,0.0041162157,-0.026691554,0.040906765,-0.005145949,-0.0057328152,0.0015527507,0.026039481,-0.017388634,-0.009666994,0.0036054247,0.039146163,-0.045949467,-0.012443742,-0.02093157,-0.022909526,0.018160256,0.032929726,-0.049688023,-0.03725515,-0.0142695485,-0.0018108633,0.020344703,-0.021735793,0.008107451,-0.03421214,-0.033668745,-0.012095969,0.0032984067,-0.0031027845,-0.0030104073,0.0050753076,0.042276118,-0.017529918,-0.0035510852,-0.037624657,-0.041406687,-0.015019434,-0.0101397475,0.021355417,-0.032929726,-0.028191324,0.013041476,-0.025822122,0.018171122,-0.094420284,0.023648543,0.029843245,0.020377306,0.014758604,-0.03745077,0.013139287,0.0009190165,-0.022159642,-0.050600927,0.008574771,0.0028039173,0.026343782,0.014171737,0.009705031,0.017942898,0.0039178766,-0.0038716882,0.0046813465,0.025365671,0.028539097,-0.031864673,-0.018942744,0.034842476,-0.0032277652,-0.020812022,-0.005249194,-0.011563442,0.027713137,-0.020485986,0.053556994,-0.00609689,-0.008433488,0.030625733,-0.004866101,0.031190863,-0.009373561,0.0064066253,0.0033962177,-0.017236484,-0.000026405593,-0.014117397,0.0018652028,0.012432874,-0.034016516,0.023322506,0.008634544,0.029734565,-0.005251911,0.023105148,-0.022279188,-0.035972737,0.015334602,0.0017497314,-0.0018461839,0.026648082,-0.038450617,0.010558162,0.00906926,-0.052296318,0.042558685,0.029234642,0.010617935,-0.0037494244,0.006499002,-0.044254076,-0.014562981,0.014410831,0.03932005,0.010976575,-0.0014332038,0.062599085,-0.00026745215,0.03601621,-0.0067870016,0.027430572,-0.037363827,-0.01072118,0.027713137,0.04960108,0.0075314525,0.021474963,0.00048430063,0.032473274,0.023257298,-0.0007396962,-0.020344703,-0.004488441,-0.0008782619,0.023735486,-0.04768833,-0.015910601,0.007699905,0.036516134,-0.0009421108,0.020725079,-0.040624198,-0.018203726,-0.015921468,-0.015628036,-0.011661253,-0.0035809719,0.016866976,-0.0154106775,-0.0062707765,0.0061403615,0.012661099,0.008743223,-0.018551499,0.029517207,-0.0046786293,0.011639518,-0.024909219,0.01487815,-0.026278574,-0.033560064,0.034799006,0.0018013539,-0.0033744818,-0.039841708,-0.0053959107,0.0034369724,0.02588733,0.0071184724,-0.023213828,0.004162404,0.02345292,-0.042689096,-0.015736714,-0.0021491265,-0.044297546,-0.0051541,-0.026517667,0.040667668,0.028386947,0.019442666,-0.018008105,0.015562828,-0.03310361,-0.026735026,0.003561953,0.022692168,0.0073249624,-0.022235716,0.008373714,-0.0058414945,-0.017692937,-0.013345777,-0.00096656353,0.0041488195,-0.022300923,-0.0471232,-0.0059175696,-0.03440776,-0.0038227825,0.026387254,-0.052991863,0.047470972,0.024365824,0.011824272,-0.008400884,0.04660154,0.025517821,0.03482074,-0.034038253,-0.030147545,-0.00030396148,0.033234026,-0.01818199,-0.0032005955,-0.019768704,0.03306014,0.01493249,-0.017008258,-0.06290339,0.04164578,0.015845394,0.009112732,-0.013247966,-0.011715593,-0.030104073,0.033494856,0.018540632,0.009949559,0.025191784,-0.0030402942,0.03171252,-0.012965401,0.022648696,-0.027865287,-0.01762773,0.04638418,0.022974733,-0.0022578056,0.0031815767,-0.008319375,0.009628956,0.022561753,-0.03162558,-0.019725233,-0.014302152,0.008199828,-0.019486139,0.006422927,0.049253307,0.0010983368,0.013606607,0.011911214,-0.0055290423,0.009362693,0.011433028,-0.018062444,-0.01513898,-0.0027128987,-0.045905996,0.024844011,-0.03766813,-0.0031734258,-0.0009278467,-0.045688637,-0.01731256,-0.023952844,-0.004298253,0.04603641,0.0003231501,-0.019942591,-0.026865441,0.0026422574,-0.019670893,-0.028082645,0.019855646,-0.027691402,0.0062762103,-0.027734872,0.014769471,-0.011715593,0.0006415455,0.025017899,-0.0011302612,0.048905537,0.012574157,0.008563902,-0.008987751,-0.0008938845,0.011998158,0.010525558,0.01534547,0.03203856,0.020485986,0.034951154,-0.0097159,0.0043498757,0.001386336,0.0056187026,0.019257912,0.043384645,0.008830166,0.015258526,0.0043308567,0.01390004,0.01776901,0.019909987,0.0065098703,0.0022034661,-0.014073926,-0.010031069,-0.005982777,0.009373561,-0.027843552,0.009145335,0.049122892,0.020551192,0.008156356,-0.004825346,0.013965247,-0.002540371,0.011585178,0.029169435,-0.004607988,0.023061676,-0.01772554,-0.03440776,-0.019942591,-0.0341904,0.009547447,-0.030756148,-0.025800386,0.008373714,-0.01436736,-0.020420779,0.023387713,0.05968649,-0.00053694204,-0.021279342,0.02851736,-0.0073412643,-0.013639211,-0.0019344856,0.031799465,-0.02588733,0.012454609,0.018692782,-0.019573081,-0.010601633,0.013117551,0.017964633,0.002755012,0.0073956037,0.0033065577,0.009906088,-0.035733644,-0.015617168,0.026430724,0.032821048,0.012117704,0.04690584,-0.041363213,-0.012204648,0.021822736,0.00092309195,0.0028120682,0.020877229,0.045949467,-0.056817364,-0.007585792,0.008433488,0.012911061,0.013867436,0.04529739,0.00032009353,0.041363213,-0.026061216,0.01668222,-0.0066022472,0.029125962,0.06499002,-0.011867743,0.032060295,0.00082596013,0.020388175,-0.036798697,0.0054122126,-0.043232493,0.019355724,0.0073412643,-0.0070152273,0.015693244,-0.0042683664,0.0036543303,-0.012987137,0.05499156,0.013182758,0.009373561,0.026387254,-0.0008429412,-0.0011329782,0.012682836,0.025974274,-0.035516284,-0.011400424,-0.018508028,0.0338861,0.0037141037,-0.0053144014,0.0049639116,-0.010579897,0.0060805883,-0.020181684,0.01859497,-0.030212753,0.025017899,0.004292819,-0.0027903325,-0.019746969,-0.025170049,-0.025365671,0.015454149,-0.020833759,-0.01390004,0.020877229,-0.003488595,0.015432414,0.016910447,-0.023409449,-0.043623738,-0.0054203635,0.019899119,-0.036972586,-0.019225309,-0.0126067605,-0.03395131,-0.03608142,-0.00039531974,0.010547293,-0.017377766,-0.0041433857,-0.009004053,-0.031908143,-0.028343474,-0.03099524,0.013519663,-0.0024738049,0.004958478,-0.039624352,-0.029430265,-0.03132128,-0.0033201424,-0.0045889695,-0.009607221,0.011389555,-0.06377282,-0.02877819,-0.0010073181,0.003252218,0.0050916094,0.021018513,-0.0034994627,-0.013986983,-0.012758911,0.025996009,-0.010574464,-0.0020105608,-0.006960888,0.014791207,-0.01958395,-0.009150769,0.019518742,-0.06281644,-0.005645872,0.03399478,0.02014908,-0.010699444,0.009319222,0.0235616,-0.04686237,0.03058226,0.00082799786,0.016301844,-0.01374789,-0.040385105,0.04314555,0.008292205,-0.024996161,-0.005550778,0.012856722,0.028104382,0.009188807,-0.02956068,-0.024626654,-0.012280723,0.057425965,0.038102847,0.022583488,0.0052817976,-0.029691095,-0.020268627,-0.016312713,0.0029696526,-0.015877998,0.013704417,-0.031473428,-0.03384263,-0.002261881,0.011737328,0.020181684,0.00009152807,0.0031435392,-0.058730114,-0.037124734,-0.013921776,0.030603997,0.019833911,0.0015649771,0.003882556,-0.016671354,-0.012063365,0.027843552,-0.010020201,0.021605378,0.021974888,-0.027887022,-0.01240027,0.025604764,-0.029430265,0.004730252,0.022540018,-0.02345292,-0.017573388,0.014682529,0.029060755,0.0027577288,-0.0029017285,-0.003964065,-0.006004513,-0.0088682035,0.0412328,0.009900654,-0.004023839,0.029060755,-0.026213367,0.016660485,-0.06620722,-0.024670126,-0.0043906304,0.009846315,-0.0056404383,0.029995395,-0.013769625,-0.004591686,-0.010237559,-0.009732202,-0.022692168,-0.023996316,-0.031690788,-0.012411138,-0.011101556,-0.018116783,-0.0011676196,-0.04408019,-0.01240027,-0.010161484,-0.0055399104,0.0077216406,0.017149542,0.038841862,-0.02319209,0.013215362,-0.020159949,-0.029778037,-0.024452768,-0.00023077299,-0.016823504,0.015986675,0.03482074,-0.016573543,0.065294325,-0.024300616,-0.01151997,-0.020909833,0.00084022427,0.010715746,0.03525546,-0.003665198,-0.004540064,-0.05781721,-0.05394824,0.009123599,0.022072699,-0.03253848,0.025843859,-0.016138827,0.020649003,0.0016030148,0.024257146,0.011596045,-0.02397458,-0.009748504,0.010661406,0.008390016,-0.012280723,0.013943511,0.04655807,0.0058904,-0.015899733,0.011900347,-0.0047873086,-0.007352132,0.02723495,0.0128132505,-0.008536733,0.005988211,-0.027408835,0.029886715,-0.013813097,-0.019105762,0.012019894,0.012009026,0.0047791577,0.012693703,0.009552881,0.0068956804,0.02836521,0.026278574,-0.027061062,-0.017236484,-0.024778804,-0.03492942,0.01508464,-0.031473428,-0.0050970437,-0.01622577,0.039276578,-0.012215516,-0.025256991,-0.03249501,0.025909066,0.006830473,0.0007926772,-0.005765419,0.004309121,0.0036135756,0.03306014,0.005501873,-0.021246739,-0.034646854,0.015714979,0.012802382,-0.019225309,0.009400731,0.006297946,0.019366592,0.013845701,0.006412059,0.0061729653,-0.0011329782,-0.014541246,-0.031082185,0.015888864,0.030343167,0.009906088,0.018573236,0.021214135,-0.04025469,-0.009710466,0.030147545,0.014280416,-0.0147368675,-0.016823504,0.049079422,-0.026322046,0.0039205938,0.027452307,0.01596494,-0.010118011,-0.012965401,0.02438756,0.0128675895,-0.027148006,-0.004015688,-0.004233046,-0.0041515366,-0.001891014,-0.006499002,-0.022279188,0.025213521,0.0024140317,-0.002261881,0.022670433,0.04077635,0.011291744,-0.010666841,0.026430724,0.028865134,-0.010520124,-0.00031924446,0.0066891904,0.013378381,-0.0073195286,-0.0347338,0.016443128,-0.009710466,0.016095355,0.02040991,0.02185534,0.025800386,-0.0041488195,-0.00022584847,0.015530224,0.036255304,0.013682682,-0.026387254,0.005287232,-0.0018950895,0.00091765804,0.03466859,0.016008412,-0.010378841,0.004007537,0.011791668,-0.02997366,-0.021094587,-0.01818199,-0.010672274,-0.014997697,0.007466245,-0.022279188,-0.03729862,-0.011889479,0.018377613,0.009292051,-0.006939152,-0.027973967,-0.032168973,0.027408835,-0.009672428,0.024148466,-0.039146163,0.029017285,0.014410831,-0.03451644,-0.027582722,0.013356645,0.012367667,0.008080281,0.032929726,0.0071076043,-0.015225924,0.032625426,0.039667822,-0.013356645,-0.02806091,0.0019276931,-0.01818199,0.041254535,0.0023556165,0.08220477,0.020018665,-0.008357412,0.012367667,0.026322046,-0.0024167486,-0.011617782,-0.012454609,0.0026463328,0.016062751,-0.007879225,-0.00503727,-0.014378227,0.017421238,-0.008775827,-0.0008062621,0.024278881,0.0054285144,0.0077977157,-0.003676066,0.0065968134,-0.03560323,0.003673349,-0.00075871503]},{"id":"interface-GatewayCallDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallDeleteDispatchData\nDescription: CALL_DELETE — call ended\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallDeleteDispatchData"},"embedding":[0.04881123,0.019927105,0.0024004134,-0.015753949,-0.025310365,0.012248045,-0.029404355,0.030671004,0.031394806,-0.007667751,0.036732826,-0.04903742,-0.012915297,-0.0043201786,0.031078143,-0.009686474,-0.029969824,0.058446813,0.005264511,0.053425454,-0.036619734,0.030331723,0.022064576,0.03419953,-0.00911535,-0.024450853,0.027934138,-0.014826581,0.013514695,-0.035036422,0.06853477,-0.026938913,0.057180163,-0.021861007,0.01216888,-0.001052478,0.0064067566,-0.026825821,-0.03058053,-0.0032429611,-0.0286127,0.0038960772,-0.014091472,0.021589583,-0.013740881,-0.009375466,-0.010834374,0.020967567,0.010353726,-0.021148518,-0.010608187,-0.03419953,0.014442063,0.076677516,0.00032443748,-0.00017290963,0.012937916,-0.008374587,0.0071814484,-0.0029828458,-0.03112338,-0.002250564,0.004241013,-0.014577775,-0.008255838,0.0019494522,-0.022777066,0.060211074,0.016183706,0.024021097,-0.022403857,-0.003828221,-0.07631561,0.015606928,-0.0142271845,-0.018366413,0.005092043,-0.0059996196,0.046255313,-0.03919827,0.016364655,0.009358502,-0.052158803,0.0006495818,0.025197271,-0.0042636315,-0.056003988,-0.018920572,0.0013019909,0.044943426,-0.05383259,0.019994963,-0.013345053,-0.0006315575,-0.015256337,-0.024880609,0.051435005,-0.018298557,-0.029766256,-0.0037716741,0.052113567,-0.044649385,-0.010438547,0.005315403,0.015991446,-0.02343301,-0.006101404,0.015618237,-0.022991944,-0.01932771,-0.015731331,-0.019214615,-0.030263867,0.005487871,-0.029042456,0.0034210838,0.039424457,-0.055732563,0.05993965,0.0078543555,-0.008566846,0.010534676,-0.01108318,-0.040917292,-0.034086432,-0.00007863545,0.0076620965,0.008838271,-0.041166097,-0.016421203,0.0125420885,0.014589084,-0.0010616669,-0.028363895,-0.0035511414,0.00946594,-0.04523747,-0.0031948963,-0.013345053,-0.04166371,0.019101523,-0.010387654,0.04700173,0.03184718,-0.0009796739,0.021476489,0.013605169,0.050123118,0.04012564,0.033543583,-0.009058803,0.045305327,0.041776802,-0.0036189978,0.0020328588,0.02397586,0.041188717,0.0056037917,-0.008674285,-0.02145387,0.018253319,-0.0432244,-0.020119365,0.022777066,-0.058944423,0.017405117,0.0047357976,-0.011467699,-0.040057782,0.009624272,0.01395576,-0.037049487,-0.04994217,0.009929624,-0.03648402,0.018151535,0.0027297987,-0.02879365,-0.017405117,-0.014792653,-0.0035030767,0.0026774928,-0.0017727434,-0.0593968,-0.047182683,-0.0005955089,0.002307111,0.023862766,0.0065028863,-0.009160588,-0.01592359,0.014430753,-0.0042636315,0.018796168,0.0020696144,0.0125533985,0.038904224,-0.041912515,-0.013152795,-0.025310365,0.034041196,-0.025785359,0.013989688,-0.0016059302,0.0014532538,-0.026893677,-0.019599134,-0.002113438,-0.012067095,-0.031259093,0.04912789,-0.018355103,0.0011005428,-0.0067686564,-0.049444556,0.01732595,0.0011832425,0.04222918,0.008838271,0.001207275,-0.0034691484,0.0055528996,0.02734605,-0.03128171,0.001843427,-0.011558174,0.0029319536,-0.0020144812,-0.032344792,-0.0033504001,-0.02020984,0.00397807,0.031394806,-0.032028127,-0.004580294,0.008662975,-0.014057544,0.016319418,0.019452112,0.014102781,-0.020526502,-0.017857492,-0.013526004,-0.008323695,-0.027255576,0.01966699,0.057858724,-0.034086432,-0.0037716741,0.006649908,0.010676043,0.065322906,0.036959015,-0.03686854,-0.019078903,-0.03435786,0.040397063,-0.023817528,0.03435786,0.009262372,0.0648253,-0.05347069,-0.035624508,0.06514196,-0.015765259,-0.013469457,0.04704697,0.011761743,-0.051796906,0.012756967,-0.004317351,-0.043608923,0.08522739,0.0028146189,-0.034470953,0.0064124116,0.032367412,0.00074783195,0.016783101,-0.030150775,-0.06297056,0.01771047,-0.01359386,0.05523495,-0.02146518,0.03596379,-0.045124378,0.042952977,0.034290005,0.03505904,-0.029359119,0.03953755,-0.029901968,-0.07902986,-0.00947725,0.054827813,0.026690107,0.013616479,0.01591228,0.0019056285,0.025604408,0.027956758,-0.038157806,-0.03485547,-0.0031722777,0.016737863,0.031078143,0.014713488,0.027549619,-0.03485547,-0.036009025,0.012361139,-0.00065240916,0.004585949,-0.012802204,-0.017088454,0.0070061535,0.03487809,-0.013164104,-0.0034012923,0.014351588,-0.004939366,-0.029834112,-0.03555665,-0.0020851647,0.01020105,-0.0144873,-0.012440304,0.025287746,0.050168354,0.014295041,-0.026577014,0.010794791,0.0087251775,0.065368146,0.05003264,-0.091832064,0.03275193,-0.018377723,0.014159328,0.054239728,-0.008606429,-0.011218892,0.008103162,0.044083916,-0.00071036967,0.012451614,0.0103989635,-0.010715626,0.033475727,-0.043405354,-0.022743138,0.0055444175,-0.02022115,0.0013210755,-0.0082671475,0.014385516,-0.033136446,-0.019972343,0.022550879,-0.031259093,0.0009351433,0.003497422,-0.031937655,-0.0055274535,-0.0069326423,-0.061025348,-0.034063816,0.0019310745,-0.03196027,0.012462923,-0.033362634,-0.058944423,0.0071079377,-0.013028392,-0.02022115,-0.029065074,-0.004399344,0.03091981,-0.029947206,0.038022093,0.012281973,-0.023274679,0.0048319274,0.019135451,0.054330204,-0.048765995,0.06505148,-0.037841145,-0.0030139466,0.027391288,-0.003901732,0.012270664,-0.0095733795,0.012315901,-0.010738244,0.03453881,0.023749672,0.013084939,-0.013967069,0.055687327,0.022980636,-0.02612464,-0.004017653,-0.0034748032,-0.00008186038,0.05405878,0.0029093348,0.063015796,-0.04279465,0.0655491,0.019972343,0.042432748,0.03076148,0.018456887,-0.06545862,-0.018626528,0.017586067,-0.0076790606,0.008453752,0.030693624,0.02273183,-0.0117051955,0.03842923,-0.03431262,-0.015052768,0.021419942,0.04186728,0.023862766,-0.0732847,-0.016726555,0.020843165,0.03775067,0.0065368144,0.034154292,0.025672264,-0.014057544,-0.010229323,-0.051389765,-0.010992706,-0.08789641,0.009810876,0.016375965,0.0064915773,-0.007639478,0.00074712513,0.01877355,-0.0068591316,0.031801943,0.02272052,-0.055777803,-0.003522868,-0.042726792,0.06392054,-0.051796906,-0.010099266,0.010133194,0.028703175,-0.019214615,-0.010794791,-0.032932878,-0.029811494,0.03469714,0.09916054,-0.03634831,0.039243504,-0.0056773024,0.0011790015,-0.015833115,0.05383259,-0.0032288244,-0.024043716,0.044400577,0.019463422,-0.012202808,-0.00090686994,0.004721661,0.004150538,0.016771792,-0.024269903,0.027052008,-0.009437667,-0.0015083869,0.002362244,0.024043716,0.0076451325,0.0074981106,-0.0042127394,-0.034629285,0.0318698,0.014917056,0.0013769155,0.028205562,-0.0100144455,-0.046413645,0.023297297,-0.0053380216,0.008957019,0.013367672,-0.007848701,0.00094503904,-0.035828076,0.062925324,-0.054827813,0.024202047,-0.0059147994,-0.01306232,-0.03485547,-0.026373446,-0.08215125,0.027142482,0.025807977,-0.0333174,-0.014521228,-0.054873053,0.015889661,-0.022810994,0.03467452,-0.035511415,0.016364655,-0.01788011,0.004860201,0.011524246,0.020616977,-0.0289746,-0.013005773,0.010534676,-0.070615694,-0.0014384103,0.012903988,0.057451587,-0.014046235,-0.0322317,0.04526009,0.036167357,0.012010548,0.018569982,0.030874575,0.0146569405,0.00055733975,0.0026393237,-0.0006414532,0.00021328761,0.011337641,-0.0008390137,-0.031010287,0.007741262,0.0078769745,0.018094989,0.00041773976,-0.014894437,-0.028454369,0.008595119,-0.015493833,0.0054143597,0.015980136,-0.03847447,-0.031055523,0.010585568,-0.0018830097,-0.0074811466,-0.039605405,0.004860201,-0.0360995,-0.003992207,0.039107792,-0.022155052,-0.005272993,0.0013521763,-0.0058525978,-0.002521989,0.021159828,-0.012248045,0.012440304,0.0360995,0.0038480123,-0.016319418,0.005572691,-0.00069057825,-0.05279213,-0.021352086,-0.05261118,0.009313264,0.036009025,-0.04078158,0.022449095,0.017823564,-0.011818289,-0.027753187,0.0011175069,0.00025410735,-0.020865783,-0.006418066,-0.003217515,-0.00886089,0.010557295,0.046775546,0.0016045165,0.011965311,0.02540084,0.010856993,0.033928104,-0.018728312,-0.017133692,0.03967326,0.029653162,-0.006282354,0.018547364,-0.00052482536,0.010659079,0.00966951,0.024224665,0.041166097,-0.011920073,0.0067516924,-0.038361374,-0.03379239,-0.014894437,-0.008855235,-0.0068082395,0.027775807,0.020956257,-0.01591228,-0.00795614,0.0013097661,0.018298557,-0.034448333,-0.045848176,0.007724298,-0.014724797,0.001430635,-0.00044565977,-0.015335502,-0.012078404,-0.0064406847,-0.018569982,0.0322317,-0.026373446,-0.029268643,-0.013333744,0.011818289,-0.03196027,0.010992706,0.016590843,0.017280715,-0.021736605,-0.028567463,0.0076112044,0.012146261,0.027413907,-0.027210338,-0.031507898,0.026237734,-0.008397206,0.03919827,-0.015335502,-0.047996957,0.054827813,-0.0134129105,0.010500748,-0.010936159,0.023342535,0.010642115,-0.0040402715,0.010936159,-0.0077299527,0.022584807,0.003257098,0.0022449095,-0.0068025845,-0.008793034,0.008634702,0.04347321,-0.0036331343,0.019802703,0.0031157308,-0.0012539262,-0.017959276,0.004846064,-0.002779277,-0.0013592446,0.002766554,-0.04098515,-0.0020526503,0.014385516,-0.02664487,0.055144478,0.0024371687,0.011394188,0.028703175,0.013152795,0.01804975,-0.008906127,0.014826581,0.00513728,0.03198289,0.022041958,0.029178169,-0.00038310484,-0.028386513,-0.02216636,-0.033023354,0.010557295,-0.023727054,-0.009601654,-0.0043456247,0.0039102137,0.00043682434,0.0015720021,0.003076148,-0.019395566,-0.0041053006,-0.05292784,-0.029223407,-0.0011655717,0.024563946,-0.04700173,0.009104041,0.0022024994,-0.025988927,0.012225427,0.02700677,0.004283423,-0.008561191,0.028590081,0.03772805,0.010376344,0.021340776,0.005035496,-0.022381239,-0.024088953,0.008962674,-0.00866863,0.0089344,-0.013627788,0.003059184,-0.0023792083,-0.0148492,0.025762739,0.0011782948,0.02501632,0.010749554,-0.0036076882,-0.04114348,-0.007356744,-0.009415048,0.014340278,-0.0022364275,0.0046170494,0.019214615,-0.013254579,0.005154244,-0.03867804,0.020820545,-0.011484663,0.015233718,-0.0033051628,-0.011303713,-0.008572501,0.019746156,-0.005289957,-0.014645631,0.007814773,0.03286502,-0.040148254,-0.0007139038,-0.040713724,-0.008391551,0.047092207,0.032141224,-0.029653162,-0.023500865,-0.022143742,0.027210338,0.009448976,-0.03076148,0.013435529,-0.042183943,-0.020492574,0.0047527617,0.025762739,-0.0031977238,0.004192948,-0.010800446,0.02700677,-0.014973603,-0.006864786,-0.029449593,-0.041799422,0.00616926,-0.006779966,0.024405615,-0.03376977,-0.025061559,0.020797927,-0.009488559,0.032819785,-0.08581548,0.038949464,0.035624508,0.027753187,0.004060063,0.003110076,0.017495591,0.030874575,-0.0021402978,-0.042998217,0.05772301,0.02343301,0.020175911,-0.0035539689,0.02057174,-0.01803844,0.027934138,0.016059302,0.0021530208,0.009075767,0.037094727,-0.005267338,-0.010353726,0.036235213,-0.008171018,-0.008086198,-0.0008736487,-0.005120316,0.03311383,-0.010438547,0.03519475,-0.010495094,-0.02127292,0.03399596,-0.007803464,-0.0021756396,-0.014385516,-0.008125781,-0.009358502,-0.020616977,0.021759223,-0.029924586,-0.0012694765,-0.00053295394,-0.046956494,0.009403739,0.0006054046,0.0074981106,-0.0010383413,0.0065707425,-0.042161323,-0.033543583,-0.001851909,-0.020775309,0.007803464,0.0021940174,0.0036020337,0.01591228,-0.0052956115,-0.030354343,0.04222918,0.05849205,0.00402048,-0.017235477,0.014283732,-0.061115824,-0.040917292,-0.004580294,0.040532775,-0.0005534522,0.007763881,0.037795905,0.020673525,0.037253056,0.024021097,0.0408042,-0.0076112044,0.0015069733,0.033385254,0.03922089,-0.017665232,0.019553896,-0.020696143,0.012089714,0.014328969,0.013559932,-0.039967306,0.016670007,-0.00023025165,-0.0046764235,-0.03218646,-0.012089714,-0.010958777,0.03422215,0.005787569,0.008521608,-0.032457884,-0.026396064,-0.016330726,0.007922212,0.023297297,0.003192069,-0.024993703,-0.022539569,0.000975433,-0.011648648,0.0061127134,0.03698163,-0.011818289,0.037614956,0.0024541328,0.02146518,-0.012021858,0.0051231436,-0.021386014,-0.037139963,0.03845185,-0.013186723,-0.011473354,-0.024948465,-0.03397334,0.010161467,0.01754083,0.027052008,-0.021080662,0.055868275,-0.0068421676,-0.03184718,-0.009109695,0.024450853,-0.0422518,-0.01180698,-0.033837628,0.030060299,0.015584309,0.022494333,-0.005530281,0.044400577,-0.024699658,-0.0022844924,-0.010449856,0.013706953,-0.024405615,-0.023297297,-0.00028026025,-0.0393566,-0.0075376937,-0.009771294,-0.0040911636,0.0063219364,-0.003019601,-0.0020427546,-0.016172396,-0.044445816,0.0008785965,0.04143752,-0.035375703,0.021713985,0.015471215,0.023127656,-0.000577838,0.047725532,0.001383277,0.025762739,-0.015652165,-0.008708213,-0.016522987,0.032503124,-0.02379491,0.01027456,-0.013345053,0.027798425,0.006242771,-0.018355103,-0.022844922,0.030784098,-0.0005018532,-0.0066951457,0.018400341,-0.007418945,-0.015855733,0.01197662,-0.0116825765,0.012903988,0.037501864,0.014566465,0.0230598,0.012576017,0.01699798,-0.011037943,0.0075772763,0.054827813,0.015753949,-0.0010659079,0.017427735,-0.02163482,0.0026195322,0.018717004,-0.033226922,0.0034606664,-0.0032797167,0.036936395,-0.0033136448,-0.0007676233,0.06559433,-0.013096248,0.0064915773,0.01430635,-0.0116938865,0.011671267,0.034267385,-0.0067347283,-0.020096747,-0.017665232,-0.03576022,0.015821805,-0.017280715,0.00045696914,-0.0091549335,-0.023500865,-0.009946588,-0.013073629,0.005386086,0.05763254,0.011942692,-0.021691367,-0.03879113,-0.0049337116,-0.040148254,-0.0015734158,0.01876224,-0.038316138,-0.018717004,-0.03702687,0.0070513906,0.0054143597,0.0007075423,0.019689608,0.008261493,0.058446813,-0.0047273156,-0.001972071,0.0017416426,-0.0056490293,0.043156546,-0.017212858,-0.016025374,0.041030385,-0.004232531,0.021680057,-0.00991266,-0.009109695,-0.0005131626,0.018106299,0.019293781,0.019191997,0.0029376082,-0.002775036,0.020164603,0.008872199,0.012078404,-0.018321175,-0.018581292,-0.017031908,0.010455511,0.0108513385,-0.039492313,0.011230202,-0.015425977,-0.023478247,0.07988937,0.025649646,0.0044360994,-0.002585604,-0.005538763,0.003002637,0.014351588,0.03786376,-0.008691249,-0.010404618,0.019621752,-0.016059302,0.016522987,-0.019474732,0.0056942664,-0.026757963,-0.02684844,0.0022604598,-0.0004325833,-0.046594594,0.039582785,0.026893677,-0.008889163,0.0025375395,0.02540084,-0.015799187,0.0076620965,0.00035377115,0.019881869,-0.028115088,0.0025672265,0.017303333,-0.00877607,0.004846064,0.005567036,0.018897953,0.02433776,0.030105537,0.0078769745,0.037999474,-0.015674783,-0.021691367,0.026147258,0.03756972,0.019621752,0.031010287,-0.034109052,-0.03166623,0.0061918786,-0.0014214461,-0.0051401076,-0.0071644844,0.028680556,-0.037931617,-0.021012805,-0.008216255,0.029313881,0.0041166097,0.042183943,-0.007650787,0.027323432,-0.04114348,0.017574757,0.008572501,0.04994217,0.041799422,-0.033882864,0.012281973,-0.023410391,-0.0045661572,-0.060708687,-0.0061409865,-0.019044975,-0.00009047494,0.013695644,-0.019124141,0.006599016,-0.0018717004,0.007616859,-0.007170139,0.05772301,-0.00036296,0.011999239,0.02540084,-0.015765259,0.012609945,-0.003364537,0.028341275,-0.038610183,0.017088454,-0.028906744,0.03876851,-0.008979638,-0.019282471,0.00697788,0.02094495,0.0021106107,-0.0020583048,0.015177172,-0.02397586,0.023636578,0.011405497,-0.008657321,-0.039763737,-0.0072832326,-0.017800944,0.03723044,0.013673025,-0.020334244,0.037909,0.017993204,0.0035681054,-0.022562189,-0.013526004,-0.03723044,0.00946594,0.031553134,-0.029585306,-0.015821805,-0.028725794,-0.02287885,-0.021713985,-0.005193827,-0.0010878198,0.0007110765,0.0035737602,-0.029947206,-0.03632569,-0.011524246,-0.005086388,0.021137208,-0.009386775,0.007153175,-0.04686602,-0.028228182,-0.022765758,-0.010082302,-0.010404618,-0.002401827,0.005117489,-0.043518446,-0.0076847156,0.008380242,0.008182327,0.029585306,0.017461663,-0.002719903,-0.015064077,0.01717893,0.021974102,-0.013254579,-0.012248045,-0.0032373066,0.009013566,-0.046210077,0.0021855354,0.012089714,-0.042093467,0.0056377198,0.03539832,0.016692627,0.01056295,0.018626528,0.019474732,-0.045644607,0.037049487,-0.0166587,0.0151093155,-0.012677801,-0.05224928,0.034086432,-0.011552519,-0.05166119,-0.018965809,0.020583048,0.025129415,0.012225427,0.0006856304,-0.038497087,0.0025997409,0.036778063,0.028838888,0.00040183598,0.009878732,0.0008821307,-0.028703175,-0.028205562,0.0019791394,-0.012327211,0.00697788,-0.024790134,-0.03756972,-0.0034352203,0.021872317,0.017608685,-0.0060505117,0.017020598,-0.04614222,-0.052837364,0.013311125,0.021725295,0.018920572,0.00038769926,-0.03865542,0.022652663,0.003613343,0.030851955,0.021374704,0.020775309,0.013548623,-0.030263867,-0.00590349,0.02863532,-0.011495972,-0.00035642178,0.019587824,-0.030829336,-0.002212395,0.008250183,0.018355103,0.00037320913,-0.0072493046,-0.017224167,0.0071135922,-0.0064237206,0.053651642,0.022856232,-0.0010270319,0.028748412,-0.03286502,-0.0051825177,-0.034629285,-0.041573234,0.0059430725,0.007639478,-0.023319917,0.03200551,0.010472475,-0.007990068,-0.023681816,-0.0032288244,-0.02181577,-0.016839648,-0.014984912,-0.003101594,-0.0032457886,-0.024066335,-0.005417187,-0.018875334,0.013537313,-0.031598374,-0.0020074127,0.010461165,0.035330463,0.027255576,-0.014012307,0.0066216346,-0.031575754,-0.04010302,-0.019553896,-0.0023636578,-0.024903229,0.01020105,0.01933902,-0.02054912,0.06672527,-0.04523747,-0.011863527,-0.031078143,-0.015448596,0.029924586,0.03306859,0.004540711,0.0060787853,-0.035330463,-0.0134129105,-0.00017856431,0.051887378,-0.012711729,0.05148024,-0.010896576,0.027572239,-0.011071871,0.022505641,0.01949735,-0.024631802,-0.029607924,0.007978759,0.00625408,-0.009194516,0.00230287,0.039831594,0.022064576,0.003373019,0.0064463397,0.010150158,0.013559932,0.016703935,-0.01861522,0.0029630542,-0.003033738,-0.021940174,0.012406376,-0.019712228,-0.005448288,-0.0037264368,0.023150276,-0.007373708,0.035873313,-0.008866544,0.015335502,0.021091972,-0.000077265955,-0.07029903,-0.0074132904,-0.019361638,-0.0070513906,-0.0031157308,-0.031507898,-0.011309368,0.020537812,0.013492076,-0.0066725267,-0.018343795,-0.02057174,0.0075376937,-0.0041335737,0.0022265317,-0.018683076,0.0035002492,0.01144508,0.01769916,0.039062556,-0.046413645,-0.008872199,0.0032627527,0.002543194,-0.04435534,0.02863532,-0.009352847,-0.0066442536,0.015358121,-0.0011563828,0.0030704932,-0.0048064813,-0.0015974481,-0.0364614,0.0052107912,0.019158069,0.009793912,-0.0037716741,0.0011160932,-0.05736111,0.011405497,0.021012805,0.034968566,-0.012101023,-0.0022180497,0.053923067,-0.01965568,0.039447073,0.032797165,0.0091492785,-0.010557295,-0.00849899,0.02664487,-0.017461663,-0.045893416,0.0046849055,0.003291026,0.0023056974,0.0030902848,0.0058639073,-0.0027849318,0.013492076,0.005592482,-0.0125420885,0.000039052662,0.04222918,0.005128798,-0.011495972,-0.0025149207,0.013480767,-0.013118867,0.0013493489,-0.024631802,-0.0022844924,-0.020888401,-0.0010934744,0.037094727,-0.0037518828,0.02574012,0.004755589,0.032141224,0.00903053,0.017280715,0.03607688,-0.004003516,0.018377723,-0.01716762,-0.022618735,0.020028891,-0.032503124,-0.011954002,0.047273155,0.008657321,-0.034063816,0.012361139,0.024202047,0.005555727,-0.02967578,-0.008385896,-0.029969824,-0.016364655,-0.004249495,-0.01715631,-0.015663475,-0.014803962,0.027934138,0.021340776,-0.045079138,-0.047137443,-0.007910903,-0.0022406685,-0.013797428,0.028748412,-0.032050747,0.04148276,0.003067666,-0.05292784,-0.022867542,0.001207275,0.0015903799,-0.013910523,0.032593597,0.01627418,0.0016342036,0.01431766,0.056773026,-0.009409394,-0.018864024,-0.026554395,0.017597375,0.015855733,-0.0050128773,0.049444556,0.014215875,0.008227565,-0.007995723,0.037501864,0.00063014386,-0.02345563,-0.008838271,0.032254316,0.008555537,-0.004308869,0.0058017056,-0.010738244,-0.00012510987,0.008069234,0.02987935,0.011473354,0.01788011,-0.023817528,-0.008662975,-0.0022519778,-0.00724365,-0.001224239,0.017314643]},{"id":"interface-GatewayCallUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayCallUpdateDispatchData\nDescription: CALL_UPDATE — call updated\nProperties: channel_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayCallUpdateDispatchData"},"embedding":[0.026839886,-0.01630366,-0.00350366,0.0007321499,-0.00619382,0.013756564,0.0074224854,0.001409599,0.012533508,-0.012511067,0.02266579,-0.010463292,-0.026480824,0.004852948,0.0084547885,-0.023585886,-0.02135297,0.029891914,-0.004603287,0.04744107,-0.082045674,-0.004709884,0.036467236,0.039362174,0.0038234494,-0.013835109,-0.00277151,0.017403288,-0.000059040107,-0.018076528,0.06772807,-0.01714521,0.05574438,-0.015215253,-0.00007801885,0.015742626,-0.01662906,-0.010985054,-0.02414692,-0.030206092,-0.0065921545,0.009997633,-0.012028578,-0.008538944,-0.04744107,-0.011024326,-0.021958888,0.009689064,0.008000351,0.009144861,-0.024169363,-0.02214964,-0.0024713567,0.021027569,0.040192503,-0.003147403,0.03372939,-0.027602892,-0.0003513478,-0.0061321063,-0.023698093,-0.015035722,-0.014609336,-0.04028227,0.012713039,-0.0030604426,-0.049954504,0.03633259,0.044635896,-0.016180232,-0.009279509,0.035008546,-0.036803856,0.0031726495,-0.007949858,0.033684507,-0.031373043,-0.016000701,0.058796406,0.015103046,0.005088582,0.0010519396,-0.07414631,-0.01548455,0.024326451,0.0034615824,-0.040574007,-0.03958659,-0.0009327197,0.04156143,-0.029622616,0.050268684,-0.042997677,0.013633136,-0.024259128,-0.024573307,0.06813202,-0.011613412,-0.026278852,0.010861626,0.051749814,-0.052602585,-0.018962963,-0.04429928,0.016494412,-0.044725664,0.005282139,0.005531799,-0.0339538,-0.002073022,-0.03990077,-0.027737541,-0.034514837,0.013105764,0.0014797283,-0.03543493,0.062387027,-0.04106772,0.029555293,-0.022396494,-0.028276134,-0.009627351,0.0065079993,-0.014586895,-0.0115685295,-0.015630418,0.017021785,-0.0010589524,-0.09344589,-0.011826606,0.02526899,0.008578216,0.01238764,0.008292088,-0.003472803,-0.0028149902,-0.014239053,0.0342231,-0.031013982,-0.041022837,0.011316064,-0.026189087,0.009812492,0.030856892,0.0026031996,0.003374622,0.0043452117,0.026323734,0.046094585,0.029981678,-0.060546834,0.06579812,0.005150296,0.00024264738,0.0059245233,0.01239886,0.005158711,-0.015529432,-0.010424019,-0.0020505807,0.01582117,-0.05888617,-0.026682796,0.026637914,-0.060546834,-0.004844532,0.006294806,-0.010379137,-0.060412183,0.0070970855,0.046049703,-0.054756958,-0.046678063,0.022418935,-0.00765812,0.01727986,-0.0018794653,-0.024169363,-0.058168046,0.011871488,0.033998687,0.021061232,-0.024528425,-0.05655227,-0.021723252,0.005234451,-0.01938935,0.034716807,0.010345475,-0.015248915,-0.01467666,0.016382204,0.04104528,0.04551111,-0.024326451,-0.016404646,0.030093886,-0.024663072,0.017650142,-0.018682446,0.015372342,-0.07293447,0.014990839,-0.020455314,0.006945606,-0.0016269998,-0.009885427,-0.004291913,-0.027917072,-0.012477405,0.031889196,-0.013386281,-0.00031470525,0.032382905,-0.056193206,0.008437958,-0.00399737,0.010749419,-0.026593031,-0.018054087,0.0017504273,0.0034671926,0.057853866,-0.02948797,-0.012006137,0.028006837,-0.0056692525,0.0067380234,-0.017650142,0.020500198,0.0070690336,-0.011501205,0.029532852,-0.04043936,-0.012432522,-0.0026312515,-0.012477405,0.0018247644,0.017257418,0.04075354,-0.008510892,-0.005512163,-0.037723955,-0.0026102127,-0.02479772,0.0205563,0.043065,-0.056686915,-0.01711155,0.02526899,-0.0018219593,0.043805566,0.021083673,-0.032360464,-0.014474688,-0.016572956,0.07158799,0.005444839,0.046498533,0.0322707,0.04977497,-0.04400754,-0.029241113,0.0404618,-0.046274118,-0.039047994,0.043760683,0.038195223,-0.03994565,-0.02135297,0.009756388,-0.00071812404,0.04093307,0.019030288,-0.018940521,-0.004925882,0.01582117,0.025022134,0.024259128,-0.0022230989,-0.05246794,-0.005773044,-0.025470963,0.0577641,-0.021891562,0.022486258,-0.045555994,0.03543493,0.04717177,-0.00880824,-0.03574911,0.023294149,-0.036512118,-0.058616877,-0.0054392284,0.08191102,0.019580102,-0.018693667,0.020657286,0.009896647,0.0048866095,0.015899716,-0.045398906,-0.015697742,0.019883059,0.02331659,0.045219373,-0.009234627,0.01842437,-0.02870252,-0.012993556,0.024505982,0.010362306,-0.0004102564,-0.026121762,-0.009240237,0.023249267,0.031530134,-0.008348192,0.026031997,0.010861626,0.005259698,-0.031597458,-0.019725969,-0.007871313,-0.031687222,-0.024393776,-0.012858909,0.011489985,0.036916062,0.023204383,-0.048787553,0.037679072,-0.0034924392,0.06404769,0.06642647,-0.09088758,0.033819154,-0.016696384,-0.0051727374,0.018480474,-0.036601886,0.0020239316,-0.035120755,0.02657059,-0.01974841,-0.0059301336,0.0322707,-0.018794652,0.056148324,0.01060916,-0.008982161,0.018682446,-0.018940521,-0.03835231,-0.025358755,-0.001965023,-0.030789569,-0.022273066,0.016393425,-0.03799325,0.01596704,0.014945957,0.006648258,-0.011383388,0.005742187,-0.023249267,0.0030239755,-0.015866052,0.0019397765,-0.0119836945,-0.04726154,-0.035277843,0.015765067,-0.003930046,-0.024281569,-0.010906509,-0.0064182337,-0.019333245,-0.021094894,0.022643348,0.050493095,-0.009083147,0.0068726717,0.03294394,0.052423056,-0.052871883,0.019523997,-0.024034714,-0.010093009,0.0063340785,0.005413982,-0.02087048,-0.011512426,-0.028186368,0.01010423,0.045039844,0.02690721,0.034155775,-0.0018107386,0.06292562,0.029420644,-0.014788867,0.00010650887,-0.006552882,0.024573307,0.036489677,0.0061769886,0.070690334,0.0045359633,0.04905685,-0.009649792,0.027692659,0.019209819,0.024707954,-0.039339732,-0.010620382,0.01776235,-0.012735481,0.038240105,0.041785844,0.00961613,0.020511419,0.035771552,-0.01354337,-0.034716807,0.01890686,0.026817445,0.015069384,-0.04515205,-0.015854832,0.04517449,0.04223467,0.021914003,0.053230945,-0.0057786545,0.0029566514,-0.016258778,-0.0011157572,0.0032848564,-0.08630953,0.010171554,-0.00750664,0.01157975,-0.019366907,0.040327154,-0.007781547,-0.010906509,0.014396143,0.01597826,-0.06431699,0.02495481,-0.036085732,0.08056454,-0.049146615,0.000042669297,-0.009442209,0.028522989,-0.017582819,-0.016842254,-0.029443085,-0.024752839,0.0030548323,0.06781784,0.0030660531,0.026548149,-0.016157791,0.02136419,-0.037656628,0.019322025,0.025022134,-0.02300241,0.007944247,0.027647775,-0.014037081,-0.013161867,-0.015765067,-0.024034714,0.008841902,0.017986763,-0.017717466,-0.001802323,0.015877273,0.023989832,0.069702916,0.0251119,0.00651922,-0.0037308787,0.005282139,-0.01109165,-0.017335963,0.0020267367,0.03729757,-0.009868595,-0.0015933377,0.0076525095,-0.039564148,0.000643787,0.0045443787,-0.0037757615,-0.055564847,-0.0053438526,0.04221223,-0.008886785,0.047889896,0.023922507,0.0025625248,-0.012511067,-0.018861977,-0.05399395,0.010177164,0.012589612,-0.0092682885,-0.027423361,-0.03978856,-0.0050128424,0.004709884,0.005214815,-0.015125488,0.04717177,-0.018334605,0.005840368,0.019187376,0.017975543,-0.0077703265,-0.02363077,0.032988824,-0.08025036,-0.0026999782,0.0021179048,0.047037125,-0.044411484,-0.029443085,0.037611745,0.017268639,-0.0029117686,0.003944072,-0.007450537,0.029106464,0.028747402,-0.016494412,0.0034699978,-0.018244838,0.029218672,0.011394609,-0.027423361,0.01515915,0.026346175,0.015798729,-0.011377778,0.021936445,-0.039451938,-0.004176901,0.0108728465,-0.0020253342,0.0070690336,0.0056664473,-0.02268823,0.012365199,-0.017829673,0.028724961,-0.03947438,0.003049222,-0.035928644,-0.0030071444,0.03523296,-0.019490335,-0.03361718,0.0037392944,-0.0039384617,-0.028747402,0.049011964,0.004527548,-0.0029959236,0.05040333,0.022733115,0.0049679596,0.024348894,0.03408845,-0.023451239,0.0132740745,-0.08720719,0.023406355,0.025426079,-0.04093307,0.045757968,0.025987113,-0.021914003,-0.017582819,0.03898067,-0.010076178,0.008095726,0.0014180144,0.005464475,-0.012219329,0.0048501426,-0.00045934692,0.00006149463,0.013217971,0.043917775,-0.016572956,0.03586132,-0.01288135,-0.016651502,0.028321017,0.05493649,-0.021914003,0.037881043,-0.016718825,0.0015077799,-0.00079456496,0.011276792,0.04569064,-0.009694675,0.011759281,-0.018177515,-0.012746702,0.0023872014,0.0063060266,-0.006597765,0.020455314,0.022059873,-0.015933378,0.004143239,-0.0025218497,0.036399912,-0.010412798,-0.0339538,0.012443743,-0.04367092,-0.0018584265,-0.03491878,-0.031552576,-0.013128205,-0.031844314,-0.017066667,0.032338023,-0.045017403,-0.0042273942,-0.002757484,0.028612755,-0.006272365,-0.011703177,0.014104405,0.049999386,-0.029577734,0.006777296,-0.0053522685,0.02121832,0.035143197,-0.035030987,-0.07432584,0.009834933,0.018289723,0.038935788,-0.023855183,-0.04142678,0.059604295,-0.015271356,0.00027350427,-0.035771552,-0.0032680253,0.014654219,0.013913653,0.0011431077,0.0018009205,0.0012882752,-0.00847723,0.012219329,0.0156753,-0.023204383,0.005935744,0.05278212,0.0054392284,0.029465526,0.009874205,0.012219329,-0.012511067,-0.018065307,0.033998687,0.012275433,0.0073271096,-0.052916765,-0.027917072,0.020017708,-0.016898356,0.052108876,0.0012490029,0.015776288,0.022497479,-0.005941354,0.027333597,0.0057954853,-0.008090116,0.010317422,0.009189744,0.056148324,-0.020343108,-0.0073495507,0.0014074951,0.0049483236,0.005691694,0.00028998466,-0.025224106,-0.007860092,0.005590708,-0.001189393,-0.010676485,0.010698926,0.008791409,0.0074729784,0.0012034188,-0.029263554,-0.005057725,0.02136419,0.006749244,-0.05071751,0.03635503,0.022901425,0.020780714,0.034200657,0.041763403,-0.019131273,0.00009362261,0.033482533,0.0067268023,-0.021813018,0.04187561,-0.025044575,-0.024169363,-0.023181941,0.029061582,-0.013509708,0.0012223537,-0.018974183,-0.0014187158,-0.01466544,-0.0006353715,0.009195354,0.01662906,0.005587903,0.00033995177,-0.020017708,-0.011175806,0.038599167,-0.012286654,0.017313521,-0.010541837,-0.024865044,0.036467236,-0.02071339,0.005001622,-0.03375183,0.014564454,0.0025807582,0.01711155,-0.0035765944,0.0011346921,0.0058964714,0.026301293,-0.009694675,-0.02070217,0.023271708,0.027535569,-0.054397896,-0.0036214772,-0.0374771,-0.013655578,0.027198948,0.037387334,-0.049505677,-0.013128205,-0.012589612,0.0046173134,0.0042358097,-0.009801271,0.0054476443,-0.056776684,-0.001143809,-0.016213894,0.0008913434,-0.010025685,0.0084940605,-0.00961613,0.028612755,0.015607977,-0.001460092,-0.046319,-0.044276837,-0.0016312075,0.007944247,0.017840894,-0.028994258,-0.0032315583,0.0053522685,0.0037757615,0.04187561,-0.07401166,0.047306422,0.039205085,0.016988121,0.02820881,-0.041179925,0.0075571337,0.028119044,0.01759404,-0.05035845,0.029914355,0.009790051,0.0025120315,-0.007130747,0.01679737,0.010149112,0.01614657,-0.009498312,0.012028578,0.005444839,0.022935087,-0.002628446,-0.017986763,0.04744107,-0.019501556,-0.015563094,0.011243129,-0.02136419,0.041471664,-0.017335963,0.039249968,-0.01711155,-0.00087100593,0.016045583,0.002324085,0.007046592,-0.018873198,0.026323734,-0.019658646,-0.0140258605,0.019782074,-0.020960245,0.00440412,0.013621915,-0.011360947,0.015305019,-0.023900066,0.021117335,-0.01027815,0.013633136,-0.03002656,-0.016707605,-0.0011031339,-0.008847512,0.00019250493,-0.01679737,-0.021779357,0.024528425,0.013139426,-0.037252683,0.03929485,0.04748595,0.007400044,-0.0034615824,0.022194522,-0.02526899,-0.029443085,0.021622267,0.031530134,0.018502915,-0.008976551,0.036938507,-0.00913364,0.02560561,-0.0040394478,0.051794697,-0.041157484,-0.004956739,0.017470611,0.047530834,0.025022134,0.014182949,0.011338505,0.034312863,0.020320667,0.00014770984,-0.022385273,-0.004075915,0.020264562,0.004482665,-0.034986105,-0.022867762,-0.010564278,0.03754442,0.00051755423,0.011725619,-0.012477405,-0.022385273,-0.047620602,0.011792943,0.009217795,-0.009257068,0.018312164,-0.037050713,-0.016988121,-0.0075683543,0.0061208853,0.016112909,0.006782906,0.040529124,0.005686084,0.044276837,-0.015877273,0.0049455184,-0.050268684,-0.019591322,0.03390892,-0.000006843086,0.017885776,-0.02069095,0.012376419,0.000061889106,0.023069736,-0.003913215,-0.02232917,0.04726154,0.012264213,-0.031260837,-0.010356695,-0.002415253,0.0043648477,-0.01354337,-0.03734245,0.023787858,0.0031782598,0.009857374,-0.0061825993,0.027041858,-0.026211528,-0.0212071,0.002096866,0.0077254437,-0.020275783,-0.020601183,0.030071445,0.0016312075,-0.019523997,-0.0342231,0.023900066,0.0069904886,0.014070743,-0.05866176,-0.023137059,-0.012814025,0.014844971,0.016247556,-0.06095078,0.04140434,0.028141486,0.019322025,-0.0016690773,0.05008915,-0.014328819,0.020298224,-0.045623317,-0.039743677,0.002314267,0.009262678,-0.028051721,0.004521937,-0.0044125356,0.04483787,-0.009913478,-0.014732763,-0.020197239,0.039407056,0.008701644,-0.012735481,0.040798422,-0.022486258,-0.018323384,0.006541661,0.019490335,-0.018188735,0.040641334,-0.000049879465,0.03550226,0.011170195,0.01255595,-0.0076468987,-0.016011922,0.052827,0.023742976,0.019097611,0.009369275,-0.022396494,0.0045864563,0.0231595,-0.0076076267,-0.009414157,0.00006662284,0.021184659,-0.007904975,0.0023675652,0.027378479,0.030049004,-0.017964322,-0.018009204,0.009419768,0.014048302,0.026772562,0.0011957046,-0.014441025,-0.000056278765,-0.06045707,0.005360684,-0.029532852,-0.028994258,-0.0077366643,-0.038397197,0.0040815254,-0.010884067,-0.010777471,0.061983082,0.010547447,-0.012163226,-0.032741968,0.012331536,-0.036938507,-0.008499672,-0.0020169187,-0.010379137,-0.020275783,-0.010912119,-0.002211878,0.00896533,0.008460399,0.010670874,0.00061854045,0.06126496,0.0063677407,0.0148786325,-0.0065641026,-0.012858909,0.023720535,0.023608329,-0.00472391,0.04389533,-0.0025695376,0.027423361,-0.0054532546,-0.0016578566,0.0012700417,0.00765812,0.022957528,0.030901775,-0.016786149,0.020275783,0.01042963,0.0048417267,0.0088923955,0.0030856892,-0.020836817,-0.023024851,-0.013128205,-0.010008854,-0.01223055,0.004569625,0.01370046,0.010306202,0.03606329,0.050627746,0.008785799,-0.0032147272,-0.0013941705,0.0071700197,-0.015641639,0.047351304,0.003537322,0.027759982,-0.0077366643,-0.0044265613,-0.009341223,-0.016898356,-0.009790051,-0.044703223,-0.0066314265,0.016999343,-0.018357046,-0.016774928,0.033011265,0.05888617,-0.0062835854,-0.011927592,0.027356038,0.0041628755,-0.018110191,0.007158799,0.01501328,-0.033303004,0.015776288,0.019523997,-0.008763357,0.007209292,-0.008202323,0.016842254,0.004120798,-0.0073271096,0.010250099,0.0003867631,-0.02477528,-0.043513827,0.017661363,0.027961954,0.020511419,0.036938507,-0.025426079,-0.03361718,0.02935332,-0.0011830813,0.016550515,0.008034012,0.01598948,-0.03868893,-0.017627701,-0.004140434,0.014239053,0.006423844,0.03065492,-0.0013745343,0.03312347,-0.008062065,0.019995267,-0.003133377,0.010064958,0.04578041,-0.0021936446,0.037611745,-0.005282139,-0.006446285,-0.050493095,-0.007865703,-0.03541249,0.009105588,0.0046706116,-0.021229543,0.005902082,0.0074898093,0.014979619,-0.0072990577,0.06000824,0.005688889,0.025022134,0.021723252,-0.009806882,0.008886785,-0.011316064,0.009604909,-0.041449223,-0.025313873,-0.0057842648,0.042279553,-0.015226474,-0.0011697568,-0.0021908393,-0.011523646,0.017178874,-0.0038122288,0.009498312,-0.03653456,0.021476397,0.010300592,-0.007635678,-0.020589963,-0.009992023,-0.018559018,0.04075354,-0.02591979,-0.0049006357,0.04400754,0.029779706,0.003927241,-0.0019566074,-0.02183546,-0.04535402,-0.0045724306,0.018458031,-0.008163051,-0.012252991,-0.019378128,-0.00048599605,-0.034155775,-0.023675652,-0.011658295,-0.017840894,0.0047996496,0.00076090294,-0.027131625,-0.029824588,-0.008825071,0.028635196,-0.0413819,0.021745693,-0.036310147,-0.011546088,-0.019927941,-0.012174447,0.0010617576,-0.024550866,-0.011316064,-0.035793994,-0.010468902,-0.007467368,-0.00195801,0.025381196,0.0027967566,0.01809897,-0.017874556,-0.004751961,0.022789218,-0.0034671926,-0.008847512,-0.00027613412,0.014272715,-0.016213894,-0.011265571,-0.0030632478,-0.037903484,-0.0026649134,0.03018365,0.026211528,0.012567171,0.008387464,0.02052264,-0.052647468,0.034133334,-0.0058123167,0.012309095,-0.020769494,-0.030834451,0.034851458,-0.0023170721,-0.02508946,-0.00078334427,0.022564804,0.011826606,-0.0063004163,-0.01907517,-0.018188735,-0.002554109,0.022194522,0.010390357,0.01076064,-0.0025428885,0.03130572,-0.0374771,0.0042834976,-0.01940057,0.006878282,-0.0027238221,-0.032338023,-0.04023739,-0.0041123824,0.002730835,0.0020183213,-0.010154723,-0.0034812186,-0.05462231,-0.040012974,0.018873198,-0.00896533,0.008247206,-0.0155518735,-0.0067885164,-0.003913215,-0.011461933,0.032741968,0.008993382,0.011534868,0.012937454,-0.034694366,-0.01109165,0.04014762,-0.019299584,0.029375762,0.016427087,-0.030250976,-0.008791409,0.012454964,0.019602543,0.005761823,-0.0013387684,-0.000020271751,0.014104405,-0.01109165,0.04977497,-0.0020421653,-0.010659654,0.03684874,-0.039047994,0.023204383,-0.03361718,-0.04860802,-0.025717817,0.025246548,-0.0199055,0.002161385,-0.018974183,0.006895113,0.013958536,-0.024371335,-0.027311156,-0.028500548,-0.011602191,-0.008982161,-0.00090817444,-0.014418584,-0.025830025,-0.012129564,0.008174271,-0.018996624,-0.0148786325,0.007893754,0.021644708,0.025426079,-0.02347368,-0.025964672,-0.024752839,-0.029420644,-0.011512426,-0.015338681,-0.00750103,0.0012903791,0.05771922,-0.011759281,0.047845013,-0.015753847,-0.01370046,-0.002161385,-0.02363077,0.0316199,0.0074785887,0.004451808,0.010165944,-0.026593031,-0.04923638,-0.00945904,0.023294149,-0.03049783,0.038397197,-0.022856541,0.04077598,-0.0155518735,0.012589612,0.018648785,-0.02951041,-0.0070970855,0.0119836945,0.0031221565,0.0005571773,-0.0008541749,0.026839886,0.011523646,-0.0031866755,0.008443568,0.021745693,0.0015442471,0.025897348,0.010564278,0.0023114618,0.0044770543,-0.03278685,0.022643348,-0.046678063,-0.012286654,0.0270643,0.01907517,0.0017911023,0.017425729,-0.01010423,0.010844795,0.0130945435,-0.004903441,-0.047665484,-0.02639106,6.547228e-7,-0.019097611,0.025381196,-0.03307859,0.0025148368,-0.016606618,0.014295157,-0.026548149,-0.020331888,-0.013588253,0.03458216,0.0101996055,0.007388823,-0.0056692525,-0.007450537,-0.0023521367,0.028635196,0.011489985,-0.046094585,-0.055564847,0.017953102,0.043491386,-0.0011255753,-0.0064126235,0.018693667,0.03669165,0.014979619,0.010053736,0.0053382423,0.00913364,0.015282577,-0.035030987,-0.00087030465,-0.0023577472,0.015080605,0.009240237,0.0048838044,-0.049326144,0.0025064212,0.021094894,0.032854173,-0.011254351,-0.020455314,0.058796406,0.0099022575,0.017672583,0.028006837,0.025740258,-0.02363077,0.008623099,0.0067380234,-0.0221833,-0.015854832,-0.006878282,0.010743809,0.00075459125,0.025672935,-0.0000038817666,-0.023092177,-0.003211922,0.009963971,-0.015574316,0.016090468,0.0231595,0.017627701,-0.043783125,0.011893929,0.030049004,-0.017818453,-0.003918825,0.0068670614,0.0052260356,0.011927592,-0.012219329,0.021308087,-0.004291913,0.02623397,0.023810301,0.024393776,0.00075809774,0.01907517,-0.00424142,0.02007381,0.034469955,0.0023016436,0.000018288407,0.009313171,-0.018491695,-0.032046285,0.04990962,0.010564278,-0.011523646,0.023787858,0.023496121,-0.0030912997,-0.014777646,-0.0008001753,-0.012219329,-0.025695376,0.011450713,-0.019591322,-0.03866649,0.007921806,0.02609932,-0.006272365,-0.0355247,-0.037589304,-0.0309691,-0.007742275,-0.005576682,0.029600175,-0.033325445,0.01319553,0.017403288,-0.031732105,-0.020298224,0.0024853824,-0.0007966689,0.00028384835,0.037454657,0.011215078,0.0015807145,0.02917379,0.032517556,-0.033190794,-0.025067016,-0.020410432,-0.015361122,0.021756914,0.00865115,0.07921806,0.009874205,-0.0096441815,0.02508946,0.025224106,0.005660837,-0.0012784571,-0.010233267,0.024550866,0.03978856,-0.004143239,0.0056355908,-0.018536577,0.009430989,-0.011871488,0.009324392,0.017493052,-0.0062555335,0.017414508,0.00018479071,0.015585536,-0.011108481,-0.009335613,0.013296516]},{"id":"interface-GatewayChannelCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelCreateDispatchData\nDescription: CHANNEL_CREATE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelCreateDispatchData"},"embedding":[0.053441476,0.025211748,-0.013000533,-0.003868239,0.009442798,0.009686558,-0.003897258,0.022216983,-0.016076552,0.0040597646,0.0195008,0.04352857,-0.01608816,0.007376642,0.03865337,-0.015821185,-0.03076019,-0.0030092753,0.025977852,0.01138127,-0.021822324,0.029158339,-0.0013370526,0.01116653,-0.02013922,-0.048937723,0.027672563,-0.010011571,0.014811322,-0.011265194,0.05176998,-0.026720738,0.02832259,0.0015089904,0.0498199,0.03535681,-0.02525818,0.0009540012,-0.043273203,-0.020417802,-0.007637813,0.002190938,0.035797898,0.018490937,0.00030542546,-0.011195549,-0.0076494208,0.044248242,0.011683068,-0.016540857,-0.028206514,0.017016768,0.013720206,0.03526395,0.008136941,-0.003923375,0.0075681675,-0.0036825172,-0.037562255,0.019756168,-0.0149506135,-0.013337154,-0.011671461,-0.031456646,-0.003348798,-0.004100391,-0.035565745,0.04675549,0.010208901,0.04348214,-0.015925653,-0.036146127,-0.01872309,-0.01133484,-0.038583726,-0.006273918,-0.044108953,0.007370838,0.022228591,-0.016204236,-0.018061455,0.03363888,-0.06463122,-0.050423495,0.012768381,-0.01672658,-0.038839094,0.009727185,0.0010911162,-0.009268683,0.008891436,0.014741676,-0.002436149,0.014312194,0.008647677,-0.04002307,0.0508878,0.020371372,0.0025957539,0.0064190133,0.025768913,-0.050284207,-0.013023748,-0.015101512,0.026581448,-0.042646393,-0.024677798,0.026720738,-0.004085882,-0.008508384,-0.041276693,-0.027231473,-0.008665088,-0.027881501,0.0027539076,0.00030143536,0.073406585,-0.058223817,0.045130424,0.028392237,-0.028252944,0.0036680077,-0.0006725164,-0.03368531,0.010272743,-0.0050115893,0.017875733,-0.022507174,-0.055298697,-0.019814206,0.051166385,0.02018565,0.039210536,-0.025026027,-0.008369093,0.009849065,-0.049541317,0.02384205,-0.008665088,-0.027835071,0.019605268,-0.016923908,0.09300024,0.027463626,-0.031944167,-0.014347017,-0.045757234,0.03538002,0.026465371,0.026558232,-0.084317744,0.056320168,0.008804379,-0.012362114,0.01182236,0.0037898875,-0.022100907,-0.019512407,0.016076552,-0.030411962,0.03426569,-0.033429943,-0.026302865,0.040812388,-0.06347046,-0.032245964,-0.0046836743,-0.012037101,-0.08023186,0.015345273,0.024979595,-0.0054700905,-0.058084525,0.012280861,0.02169464,0.0032936619,-0.036285415,-0.037608687,-0.020673169,-0.039953426,0.036935445,0.034590706,0.031387,-0.057155915,-0.020487448,0.0067904573,0.0438768,-0.004854887,0.051305674,-0.058316678,-0.05734164,-0.007550756,0.028345805,0.021067828,0.026674308,-0.026511801,0.04011593,-0.01618102,0.053023603,-0.024561722,0.040348083,-0.05478796,-0.0025681858,-0.0036680077,0.020707993,-0.0006453111,0.0057486733,0.0031253514,-0.040789172,0.014846144,0.023284884,-0.0017556524,0.005908278,0.00021891244,-0.049309164,0.017539112,-0.041346338,0.016529249,-0.0061984686,-0.055020113,-0.0042977207,0.011596011,0.00071967236,-0.020081181,-0.012408544,0.04278568,-0.011491543,0.013395192,-0.010313369,-0.0028844932,-0.0050725294,0.027765425,0.00041207048,-0.048148405,-0.028206514,0.013302331,0.0061636455,0.00674983,0.021218728,0.02486352,-0.027695779,-0.010226312,-0.008827594,0.006674381,-0.026047496,0.0045008543,0.0071793124,-0.0089842975,-0.037214026,0.023168808,0.07029574,0.020290118,-0.038003344,0.0054962076,0.0039465902,-0.013325547,0.05655232,-0.03329065,0.012547836,0.042739253,0.05358077,-0.0476841,-0.02867082,0.05079494,-0.009419583,-0.014323802,0.03758547,0.029135123,-0.0061636455,0.04786982,0.015507779,-0.031061988,0.07702816,-0.020719599,-0.03714438,-0.0568309,0.023215238,-0.014579169,0.013360369,0.020812461,-0.05260573,-0.022228591,-0.01788734,0.030528039,-0.012048708,0.037330102,0.03284956,-0.011265194,0.016889086,0.011526366,-0.020510662,0.003807299,-0.012037101,-0.046035815,0.015774755,0.042808898,0.012803203,0.0016511838,0.03417283,0.016703364,0.018792735,0.04468933,-0.006123019,-0.052094992,-0.0006427719,0.027811855,0.06978501,-0.04503756,0.07972113,-0.057248775,0.015020259,0.0067440267,-0.0032820543,-0.008885632,-0.02983158,0.027510056,0.04578045,0.035913974,-0.029994087,0.027231473,-0.041369554,-0.008183371,-0.013940751,-0.06514196,0.02032494,0.037817623,-0.033058498,-0.03345316,0.034776427,0.0064422283,0.01069642,-0.03603005,0.014997044,-0.03243169,0.02676717,-0.0072315466,-0.022948263,0.00013638953,-0.006186861,-0.012930888,0.03484607,-0.003479384,-0.023006301,0.005812515,0.029344061,0.0149506135,0.0089668855,0.018955242,0.012013885,0.031619154,-0.029947657,-0.013638952,-0.023099162,-0.04805554,0.020812461,-0.03612291,0.03347637,-0.051166385,-0.025768913,0.020394586,-0.030992342,0.03147986,0.0022750932,0.003624479,-0.00828784,-0.009210645,-0.022867009,0.0231572,-0.01033078,-0.020603525,0.01272195,-0.009930318,-0.049541317,0.00070298644,-0.000258995,-0.0498199,0.02525818,-0.029970871,0.026442155,-0.008827594,0.0073360153,0.009402172,0.017933771,0.003415542,0.0016584386,0.021543741,-0.011340643,0.05158426,-0.030620899,-0.0044079935,-0.008113726,-0.0038914543,0.016366743,0.031758446,-0.008508384,0.012768381,0.022356274,-0.013789851,0.018560583,0.0050057857,0.013441623,0.011410289,0.010829909,0.0035229123,-0.03261741,0.010174078,0.027463626,0.034962147,0.048241265,-0.00040916857,0.042437457,0.008641873,0.036006834,0.02583856,0.018618621,-0.015728323,-0.03674972,0.020394586,-0.04201958,0.0022460744,0.019582054,-0.002801789,-0.005792202,0.02739398,0.0033139752,-0.03217632,0.00840972,0.025931422,0.0054352675,-0.030945912,-0.024143847,0.015414918,0.04796268,0.008015061,0.039814133,0.013244294,-0.013163039,-0.06709204,0.0042658,0.0006714282,-0.07791034,0.019524015,0.009756204,0.0048752,-0.06741705,0.017074807,0.014219333,0.0022649367,0.0067904573,0.009970944,-0.026395725,-0.041532062,-0.008804379,0.03914089,-0.033174574,0.007707459,0.010829909,0.07554238,-0.030110164,0.021845538,0.013464838,0.010858928,-0.0034300515,0.07461377,-0.058177385,0.027811855,-0.0061926646,-0.003374915,0.0046459497,0.031178065,-0.030481607,-0.038142636,0.026210004,0.0822748,-0.028786896,-0.006575716,-0.009959337,0.008885632,0.03786405,-0.020150827,0.0057225563,0.021091044,-0.01052811,0.027626133,0.022460742,0.07702816,-0.004968061,-0.0013428564,-0.036772937,-0.023354528,0.032687057,-0.00463144,0.03681937,-0.011114296,-0.0059256894,-0.025629623,-0.023528643,0.009396368,0.016389959,0.028694034,-0.013662168,0.0020008634,0.017492682,-0.047359087,0.06026676,0.0026320275,-0.019767774,-0.00877536,-0.036192555,-0.0463144,-0.0012971514,0.022205375,-0.013464838,-0.024120633,-0.0463144,0.0013406799,-0.0078989845,0.042251732,-0.007614598,0.03786405,-0.029970871,0.009402172,-0.004085882,0.009500836,-0.012814811,0.0029323748,0.007968631,-0.12331934,-0.009088766,0.0016526347,0.038421217,-0.01710963,0.0042222715,0.036238987,0.00095835404,-0.023342922,-0.007585579,0.009251272,0.013731813,0.030504823,-0.013569307,0.017318567,-0.02160178,0.008932062,0.029135123,-0.0038798465,0.02525818,0.007370838,0.015658678,0.014822929,0.0056209895,-0.027602918,-0.0060707848,0.0016352233,0.012106746,0.06616343,-0.022634856,-0.056366596,-0.01272195,-0.0015684795,-0.031085204,-0.010290154,-0.033174574,-0.025722483,-0.0025174024,0.030922696,-0.024050986,0.007887377,-0.008641873,-0.032594193,-0.026651094,0.025559977,0.007318604,0.049448457,0.013070179,-0.003865337,-0.023342922,0.0041178027,0.010679009,-0.0393034,-0.023226846,-0.080324724,0.024886735,0.04596617,-0.029065479,0.026929677,0.014985436,-0.0257457,-0.0086070495,0.0058995723,-0.032338828,0.01560064,0.016749794,0.01109108,-0.021067828,-0.00081761164,0.0075739715,-0.011416093,-0.0070574326,0.003964002,-0.013046964,0.039628413,-0.030504823,-0.04865914,0.008955278,0.023354528,0.024306353,0.0135344835,-0.014149687,-0.0037956913,0.023006301,0.04132312,-0.004233879,-0.0086012455,0.014660423,0.010963396,0.0032791523,0.017388213,0.014741676,-0.015391703,0.00530178,-0.0046865763,-0.0159953,0.044132166,-0.025536763,0.061148938,-0.03217632,-0.028995832,0.019373115,-0.006430621,0.008032472,-0.023958126,0.017562328,0.018873988,-0.035821114,-0.053487908,0.033871032,-0.016157806,-0.018363252,0.0009801183,-0.0015235,0.0011672912,-0.00493614,0.012663912,0.03347637,-0.021334803,0.029552998,0.0138943195,0.01803824,0.029552998,-0.04164814,0.012060316,0.05669161,0.00068412407,0.04406252,-0.021218728,-0.040324867,0.042298164,-0.034149613,0.014277372,0.00080310216,-0.00017465839,0.02082407,0.0066917925,0.013963966,0.023075946,-0.03222275,0.021613387,-0.047126934,0.015020259,-0.011543777,0.006128823,0.052466437,0.0037869858,-0.012605874,0.0128496345,-0.0072605656,-0.016343528,0.03939626,-0.0009569031,0.03027267,0.021926792,-0.036146127,-0.009228057,0.032454904,-0.017295353,0.06323831,-0.011520562,0.008537403,-0.010388819,0.008763752,0.03526395,-0.0107254395,-0.006889122,0.019082926,-0.011230371,0.034799643,0.009030728,-0.019164179,-0.057852373,-0.03558896,0.005786398,-0.009930318,-0.0043035247,0.014904182,-0.0049796687,-0.044248242,0.019245433,0.033754956,0.020731207,0.0075971866,-0.028624387,-0.021102652,-0.027138613,-0.0062274877,0.023308098,-0.031851307,0.011816556,-0.0049767666,-0.015368488,0.018316822,0.025420686,-0.025954636,-0.009059747,0.0041613313,0.013929143,0.039790917,-0.006186861,-0.018885596,0.027068967,0.0038450237,0.011358055,0.044108953,-0.006831084,-0.033754956,0.032129887,0.0027495548,0.015368488,0.014300587,-0.0027800247,0.012779988,-0.009489229,0.029552998,0.029483352,0.027068967,-0.023563467,-0.0057196543,-0.009419583,-0.0037347514,0.014579169,-0.037074734,0.006053373,-0.0703886,0.0072953887,-0.024515292,0.021973222,0.010597756,-0.038398005,-0.002404228,0.009024924,-0.022646464,0.0014342665,-0.00022834363,0.02716183,-0.057945233,-0.0063493676,-0.044248242,-0.045316145,0.020545486,0.01125939,-0.0319906,-0.0076900474,0.017167669,-0.020220472,0.018897204,-0.03076019,-0.014776499,-0.022135729,-0.044875056,-0.0053627198,-0.025118887,-0.01028435,-0.01243176,-0.003972708,0.021265158,0.010301762,-0.012489798,-0.011178137,-0.03447463,-0.007684244,-0.03535681,0.014300587,-0.014312194,-0.017202491,0.007034217,-0.022646464,0.020255296,-0.09485746,0.033522803,0.02490995,0.026581448,-0.0041265087,-0.038351573,0.005879259,0.014753284,0.013511268,-0.03821228,0.017469466,0.026627878,0.01872309,0.010452661,0.02978515,-0.006761438,0.017910557,0.0076958514,0.016633717,-0.00277277,0.0073360153,-0.012095139,0.0058995723,0.033871032,0.016157806,-0.009500836,-0.015252411,-0.012211215,0.018177532,-0.019907067,0.047173362,0.015983691,-0.010446857,0.009361545,-0.004701086,-0.00767844,-0.0061694495,0.020394586,0.016297096,-0.045710802,0.004100391,-0.0007131431,-0.0035809504,-0.0031804875,-0.03563539,0.02262325,-0.019779382,0.02486352,-0.0014465995,0.010713832,-0.0303191,-0.055066545,0.0319906,0.0052814665,0.0043702684,0.031317357,-0.040139146,0.012002278,0.011671461,-0.028833326,0.030829836,0.016436389,0.04640726,0.003804397,0.007011002,-0.047730528,0.016935516,0.0032675448,0.009837457,0.0268136,0.009216449,0.07034217,0.017179277,0.025861776,-0.014300587,0.02827616,-0.0016062043,0.0124781905,0.027115397,0.04095168,0.003136959,0.021404449,0.004878102,0.00371734,0.012246038,0.008647677,-0.009727185,-0.018897204,-0.0059895315,0.01647121,-0.020116003,-0.0058966703,0.015136335,-0.011050453,0.011305821,0.024468862,-0.01755072,-0.022588426,-0.017620366,-0.03568182,0.026418941,0.0018905909,0.01668015,-0.048612706,-0.007225743,0.015020259,-0.0046343417,-0.0007200351,-0.0019979614,0.025861776,0.0012840929,0.02442243,-0.005876357,0.012571052,0.009245468,-0.029854797,-0.027185043,0.0013058571,0.0044805408,-0.025861776,-0.018943634,0.0019123552,-0.01535688,0.0046778703,-0.04304105,0.0020821167,0.017190883,-0.034799643,-0.012420152,-0.018560583,-0.046244755,0.0015104414,-0.015182765,0.036610432,0.035705037,-0.0012405643,-0.032478116,0.01511312,-0.022507174,-0.012269253,-0.0039552962,0.014114865,-0.023273276,-0.008142745,0.0065931277,-0.004698184,-0.005873455,-0.011683068,-0.016482819,-0.0065873237,-0.017956987,-0.04197315,-0.011387074,-0.018351646,-0.011172333,0.03691223,-0.017341783,0.052373577,0.0117759295,-0.0026842619,-0.00872893,0.043691076,0.023168808,0.040533807,-0.0030092753,-0.0064480323,-0.022588426,0.016796224,-0.01272195,-0.0034329533,-0.031108418,0.02549033,0.013987181,-0.01745786,-0.06579199,0.038769446,0.046825133,-0.00009204479,-0.010307565,-0.020359764,-0.016413173,0.0040075304,0.022193767,0.014544346,0.011120099,-0.010487484,0.034010325,-0.00621588,0.0062913294,-0.040046286,-0.045455437,0.009924514,0.018223962,0.0026944187,-0.0048664943,-0.00719092,-0.0014436976,0.0049999817,-0.026418941,-0.022321451,0.014312194,-0.009141,-0.0054642865,-0.008380701,0.041903503,0.014822929,0.020348156,0.03389425,-0.00950664,-0.0050115893,-0.0011346447,-0.0065002665,-0.042901758,-0.015821185,-0.020928537,0.030481607,-0.017562328,0.011630834,0.015507779,-0.01681944,-0.014695246,-0.038885523,-0.026326079,0.032919206,-0.035519313,-0.033406727,-0.03719081,-0.025977852,-0.009721381,-0.023168808,-0.0019080024,-0.00865348,-0.0018354547,0.0025522253,0.004802652,-0.028694034,-0.012745165,0.027068967,0.007225743,0.042994622,0.0045211674,0.008688303,0.009820046,-0.024515292,0.009988356,0.014753284,0.00010764253,0.0037086343,0.011329036,0.018641837,-0.040719528,0.020069573,-0.0012282312,0.009332526,0.0077248705,0.023192022,-0.0063493676,0.011387074,0.01506669,0.0142425485,0.016761402,0.011793341,0.021427665,0.020243688,0.0017411428,-0.012071923,0.002311367,0.013105002,-0.038862307,0.014706853,0.052141424,0.03811942,0.007492718,0.0341264,0.018432898,-0.00554554,0.008903043,0.016831048,0.017272137,0.03821228,-0.009860672,-0.0069935904,-0.04870557,-0.061102506,0.0117701255,-0.021485703,-0.013070179,0.011375466,-0.025699269,-0.016970338,0.023261668,0.014509523,0.014822929,-0.028206514,0.023958126,-0.012745165,-0.001337778,-0.005481698,0.00804408,-0.0121299615,-0.0010737048,0.015194373,-0.019930283,0.00045269713,0.0114509165,0.0292512,-0.011317428,-0.017748049,-0.016935516,0.0054671885,-0.029158339,-0.02739398,0.020406194,0.021265158,0.017190883,0.0149390055,-0.017631974,-0.0017135747,0.032687057,0.004262898,0.01803824,0.034358554,0.03874623,-0.024492076,-0.0033894246,-0.0026581448,0.013685383,0.0057167523,0.018247178,0.0010584698,0.036517568,-0.03271027,-0.0073011923,-0.02009279,0.04466612,0.06453836,-0.025095671,0.023006301,0.013058571,0.015124727,-0.03874623,0.011131707,-0.017132845,0.027904715,-0.0062623103,-0.008073099,0.01194424,-0.007248958,-0.011688872,-0.019396331,0.07196724,-0.0037898875,0.015147943,0.026697524,0.013430015,-0.005429464,-0.014822929,0.04246067,-0.021520525,0.00377828,-0.0038740428,0.022576818,0.0076552248,0.008636069,0.02686003,-0.010139255,0.0043789744,-0.032385256,0.024283139,-0.056134444,0.031410217,-0.01262909,-0.00015144315,-0.01080089,-0.013963966,-0.010301762,-0.0016410272,-0.00674983,0.02827616,0.017225707,-0.0059547084,0.007457895,0.011317428,-0.009849065,-0.015879223,0.009709774,-0.0011600364,-0.07605312,-0.0045617945,-0.0068078684,-0.033221006,-0.016006907,-0.0037231438,0.007463699,-0.029947657,0.0053191916,-0.005609382,-0.042344593,-0.025513547,-0.03470678,0.013720206,-0.0039436887,0.016030122,-0.03700509,-0.019315079,-0.022704503,0.01686587,0.012942495,-0.010243724,0.019524015,-0.037283674,-0.028601173,0.0012507209,0.0067150076,-0.021323197,0.03860694,-0.003348798,0.0031920953,-0.010899554,0.011810753,-0.0064422283,-0.006273918,-0.023180416,0.009141,-0.03147986,-0.009077158,0.0027974362,-0.054462947,0.0008502581,0.043087482,-0.008856613,-0.027463626,-0.015020259,0.010986611,-0.029761935,0.056923762,0.0036012637,0.007684244,0.0034880894,-0.046476908,0.026511801,0.006488659,-0.00682528,0.013058571,0.0058038095,0.01080089,0.01974456,-0.016192628,-0.025629623,-0.0010628226,0.020940145,0.039605197,0.010975004,-0.003194997,-0.057945233,-0.01511312,-0.0103772115,0.008885632,-0.026836814,0.0061346265,-0.028902972,-0.03398711,0.003470678,0.0034909914,0.000059851784,-0.014788106,0.0070806476,-0.040348083,-0.018932026,-0.014474701,0.019663306,0.02525818,0.035031796,-0.0059053763,-0.029715504,-0.0011179588,0.013058571,0.018154316,0.022541996,-0.006395798,-0.020800853,-0.016540857,0.039698057,-0.036889013,-0.01515955,0.02262325,-0.02096336,-0.02832259,0.020441016,0.008769556,-0.008311056,-0.0031166456,-0.016250666,0.00047772608,-0.010516503,0.020545486,0.0142541565,-0.022124121,0.010766067,-0.026047496,0.006860103,-0.0351943,-0.014997044,-0.0089842975,-0.00292512,-0.008311056,0.047730528,-0.034683567,0.028786896,0.0035838524,0.028972616,-0.009854868,-0.048334125,-0.028879756,-0.0037318496,0.0046169306,-0.03294242,0.012257646,-0.020081181,-0.024120633,0.0023577977,0.0047997506,0.002778574,0.009152608,0.026883246,-0.01988385,0.025327824,-0.004257094,-0.019918675,-0.0142425485,0.009152608,-0.017980201,0.026395725,0.029808365,-0.0073011923,0.04715015,-0.008990101,-0.00962852,0.0038218086,-0.0042251735,0.032338828,0.025188534,-0.011096884,-0.025281394,-0.02539747,-0.04232138,-0.002167723,0.025165318,-0.020290118,0.011149118,-0.012234431,0.0040713726,0.03535681,0.037956916,0.026743954,-0.024097417,-0.019233825,0.007156097,0.012071923,-0.013174647,0.006976179,0.027788639,0.034149613,-0.04561794,0.004152626,-0.015925653,0.008583834,0.026047496,0.00083937595,0.0024608152,0.009854868,-0.010458465,0.017713226,-0.013975573,-0.021822324,0.027463626,-0.011329036,-0.025815345,0.031154849,-0.019001672,0.0016265176,0.034428198,0.02535104,-0.014544346,-0.0027524566,-0.032895993,-0.027579702,0.024654582,-0.0062216837,-0.0219384,-0.004628538,0.025536763,-0.025954636,-0.026976107,-0.015264019,0.020464232,-0.013279116,-0.00076175,-0.019349901,-0.0058850627,-0.0018514153,0.052977175,0.0110678645,0.003194997,-0.011642442,0.00946021,-0.018351646,-0.01905971,0.026024282,0.020719599,0.012803203,0.008508384,0.015217588,-0.014834537,0.012710343,-0.009378956,-0.008432935,0.011723695,0.018641837,0.019732952,0.0072315466,-0.0010758812,-0.011955848,-0.020057965,0.03243169,-0.010510699,0.016111376,0.00037180656,0.03640149,-0.017190883,-0.021033006,0.028206514,0.024538506,-0.0021807814,-0.010870535,0.015809577,0.021915184,-0.012652305,-0.014300587,-0.0024463057,-0.001857219,0.003319779,-0.0076204017,-0.041624922,0.049355596,-0.01803824,-0.0072373506,0.008723126,0.01735339,-0.006308741,0.00079657283,0.019326685,0.023017908,0.0110736685,0.005145077,0.009791027,0.009524051,-0.013801459,-0.00097649096,-0.0005898121,0.0009525502,0.0170632,0.023760796,0.0054091504,0.03398711,-0.011857183,0.023041124,-0.007794516,0.03120128,0.024608152,-0.01852576,-0.0063841906,0.020638347,0.013731813,0.025002811,-0.012803203,-0.0001909816,-0.015797969,0.032895993,-0.017051592,-0.015194373,-0.027486842,0.0015336566,0.008636069,0.035217516,-0.024840305,-0.04415538,-0.00987228,0.009297702,-0.0057399673,-0.013151432,-0.009141,0.0019660403,0.010905358,0.015670286,0.00083647406,-0.048194833,0.008920455,0.011810753,-0.03983735,-0.03329065,0.02530461,-0.010887947,0.0054991096,0.036796153,0.008665088,-0.00755656,0.027602918,0.037237242,0.0057196543,0.002708928,0.00682528,-0.015983691,0.031154849,-0.014509523,0.046964426,0.010475876,-0.019489191,0.00041170773,0.055484418,-0.006465444,0.017945379,-0.013139824,-0.020243688,0.0059605124,-0.011369662,-0.032687057,-0.0032414277,0.012571052,0.0014647364,0.005217625,0.028949402,-0.005142175,0.022054477,-0.01272195,0.009715577,-0.044619687,0.002257682,0.005264055]},{"id":"interface-GatewayChannelDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelDeleteDispatchData\nDescription: CHANNEL_DELETE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelDeleteDispatchData"},"embedding":[0.04342489,0.050061665,-0.033482157,-0.00040159325,-0.0023738279,0.051155366,-0.019835755,0.04760084,-0.0013329478,0.017188502,0.037061542,0.006816987,-0.048868537,0.020693315,0.049141962,-0.0067424164,-0.005974962,0.026845383,-0.007239553,0.044046313,-0.022420865,0.056425016,-0.0010035947,0.021874014,-0.008532109,-0.043002326,0.059258696,-0.021550877,0.030051913,-0.017611068,0.033432443,-0.037210684,0.046780564,-0.019264048,0.04312661,0.019810898,-0.005179543,0.0023847027,-0.045463152,-0.025478257,-0.017449498,-0.0007864858,0.019786041,0.034302432,0.013459977,0.009265386,-0.011465215,0.027069094,0.017275501,-0.029803345,-0.013770686,-0.00038508675,0.006885343,0.0552816,-0.007220911,0.01021616,0.02206044,0.010259659,0.014851959,-0.01099915,-0.038304385,-0.0054312185,-0.011502501,-0.018916052,-0.028088223,-0.007115269,-0.019351047,0.061644953,0.0044586947,0.038130384,-0.026199104,-0.033979293,-0.06323579,-0.018207632,-0.028386505,-0.020171322,-0.000081852784,0.005154686,0.017151216,-0.03524699,-0.0077926177,0.043772887,-0.047178272,-0.04750141,0.00738248,-0.008998174,-0.05811528,0.013161695,0.013248693,0.040243216,-0.019425618,0.028560504,-0.0037347395,-0.0035545274,-0.021724874,-0.04282833,0.048346546,0.012950411,-0.004912332,-0.006425492,0.025117831,-0.048669685,-0.042679187,-0.010421229,0.017213358,-0.04784941,-0.029952487,0.042356048,-0.0149265295,-0.02701938,-0.0064938483,-0.03211503,-0.03748411,-0.00591282,-0.020867312,0.02152602,0.054436468,-0.039050087,0.06676546,0.040988922,-0.01680322,0.0018161025,-0.023029858,-0.050956514,-0.026373101,-0.00082182913,0.027864512,-0.018170347,-0.04988767,-0.029331066,0.04705399,0.0010828259,0.0056145377,-0.047227986,0.005241685,0.02089217,-0.042008054,0.0023101321,-0.013633974,-0.028237365,0.029778488,0.00219983,0.07765275,0.026745955,-0.033904724,0.0051950784,-0.02920678,0.0325376,0.029132212,0.009315099,-0.04610943,0.041883767,0.041883767,-0.00071696436,-0.0023008108,0.024695266,0.011409287,-0.014292681,0.01971147,-0.038478382,0.010868651,-0.052149642,-0.02960449,0.029654205,-0.055778738,-0.03320873,0.0010517548,-0.009756308,-0.067958586,-0.0018487271,-0.0020429213,-0.0173625,-0.031518467,-0.027988797,-0.008525895,0.0050086523,-0.016380655,-0.040715497,-0.008886319,-0.047725122,0.031245042,0.024210557,0.030350195,-0.05428733,-0.02828708,-0.005170222,0.058562703,0.018481057,-0.0019854398,-0.013074695,-0.031095902,0.020444747,0.018543199,0.010154017,0.018182775,-0.015286954,0.03181675,-0.034451574,0.03189132,-0.051055938,0.037906673,-0.021240165,0.027292805,-0.008849033,0.0027808584,-0.0051671145,0.004617157,0.00023303283,-0.033507016,-0.010073232,0.028386505,0.020792743,-0.004648228,-0.025527969,-0.04280347,0.011956138,-0.022458151,0.03494871,0.00056782336,-0.041535772,0.011949924,0.007929331,0.0010750581,-0.00042761525,-0.016977219,0.006543562,0.014131111,-0.0036042412,-0.017660782,-0.02450884,0.0048843683,0.007848546,0.014354822,-0.036191553,-0.02560254,-0.007655905,-0.0031552645,-0.007742904,0.017287929,0.009178386,-0.061098102,-0.01971147,-0.0053783976,-0.0013477065,-0.03243817,-0.00243597,0.01680322,-0.02041989,-0.033258446,0.028560504,0.059258696,0.052199353,-0.013385406,-0.035470705,-0.019052764,-0.010502013,0.06706374,-0.033656154,0.009085174,0.031841606,0.051553078,-0.029355923,-0.018331915,0.041336916,-0.018940909,0.0012366276,0.06830658,0.0003996513,-0.022806147,0.05687244,0.021426592,-0.030723048,0.07546535,-0.018431343,-0.029554777,-0.018829053,0.042380903,-0.019786041,0.018170347,-0.012652129,-0.047725122,-0.0034147077,-0.007848546,0.021811873,-0.0173625,0.04720313,-0.0036415264,0.011297432,0.012925554,0.023191428,-0.036539547,0.028212508,-0.026770812,-0.051801644,-0.013546975,0.037434395,0.015125385,0.0149762435,0.005331791,0.0010183535,0.03661412,0.0369124,-0.029778488,-0.07094141,-0.0095201675,0.027143665,0.04287804,-0.024956262,0.04108835,-0.07606192,-0.0073327664,-0.004253626,-0.029877916,0.004315768,-0.02898307,-0.0068045584,0.006823201,0.04665628,0.001103022,-0.012558916,0.0047259056,0.005260328,-0.017300358,-0.067908876,0.020134037,0.034725,-0.02669624,-0.015112956,0.055977594,0.0073576234,0.017101502,-0.005480932,0.01578409,-0.012074208,0.034824427,0.010446085,-0.051155366,0.028883643,-0.030822476,-0.021053739,0.04847083,0.014068969,0.008619107,0.029579634,0.03131961,0.029505063,-0.0045146225,0.00015554941,0.015262097,0.021265022,-0.053442195,-0.03134447,0.002213812,-0.044642877,0.010818938,-0.005176436,0.05294506,-0.032413315,-0.022358723,0.03542099,-0.004446266,0.011452787,0.001696479,-0.009246742,-0.00022215796,-0.02025832,-0.053790193,-0.007786404,0.008488609,-0.027740229,0.013024982,-0.04148606,-0.042008054,-0.0015830697,-0.013708545,-0.033904724,0.0042380905,-0.017163645,0.03266188,-0.03517242,0.013385406,0.019226762,-0.008494823,0.020071894,0.008836605,0.031468753,-0.04108835,0.059159268,-0.042902898,-0.012453275,-0.008246255,0.0012412883,0.039920077,0.024521269,-0.0069536995,0.009501525,-0.0020087431,0.01916462,0.009799807,-0.015796518,0.025043262,0.02325357,-0.008836605,-0.000016482218,-0.03666383,0.023974417,0.048818823,0.023042286,0.04891825,-0.032338742,0.043946885,0.027988797,0.030772762,0.025155118,0.0101726595,-0.04807312,-0.020283177,0.027441947,-0.021762159,0.0045581223,0.008556966,-0.007525407,-0.016753508,0.029355923,0.00671756,-0.021004027,0.021165594,0.039298657,0.021575732,-0.0781996,-0.035097852,0.013372977,0.013832829,0.0022386687,0.043499462,0.030101627,-0.006524919,-0.04436945,-0.02600025,-0.0048315474,-0.08769491,0.004999331,0.006574633,-0.0006117112,-0.032090176,0.001873584,0.011241504,0.009874377,0.016716221,0.020941883,-0.0312699,-0.024148416,-0.039000373,0.042952612,-0.060451824,-0.014851959,-0.00023147928,0.060849532,-0.014230538,-0.007413551,0.0016669615,0.0006750184,0.0005853008,0.09167201,-0.0541879,0.009290243,0.019127335,-0.0045053014,-0.008699892,0.05043452,-0.016132087,-0.022097727,0.04327575,0.06746145,-0.016306084,-0.0076683336,0.009240529,0.0061489595,0.03614184,-0.020158894,0.015697092,0.002143902,-0.035669558,0.0004062539,0.0035731702,0.056623872,0.009551239,-0.0005390826,-0.041436344,0.0063944208,0.031742178,-0.006189352,0.03243817,-0.013062267,-0.020618744,-0.025304258,-0.006186245,0.020531746,0.05284563,-0.0069536995,0.012291705,-0.008619107,0.056077022,-0.061843805,0.04884368,-0.00844511,-0.04814769,-0.0067299884,-0.037185825,-0.06999685,0.000676572,0.01876691,-0.02669624,-0.021874014,-0.044891443,0.009308885,-0.020245893,0.019512616,-0.027069094,0.047153417,-0.017064217,0.013770686,0.030201055,0.008948461,-0.021985872,0.013571832,-0.00055384135,-0.11076206,-0.006158281,0.015187526,0.049987096,-0.010309372,-0.0077491184,0.06935057,0.013646402,-0.004915439,-0.005692215,0.020382605,0.02167516,0.01625637,0.00530072,0.0037347395,-0.005592788,-0.0018238703,0.024409411,-0.011123434,0.005126722,0.014503963,0.019574758,0.008252469,-0.007916902,-0.0101975165,0.0009336849,-0.022259297,0.019226762,0.03996979,-0.047799695,-0.054237615,-0.0027606622,0.0028119294,-0.04257976,-0.03604241,-0.017884493,-0.02883393,-0.012328991,0.022296581,-0.0123600615,0.017002076,-0.0066802744,-0.015721949,0.0004326643,0.0046917275,-0.021190451,0.04083978,0.042778615,0.0015442309,-0.02206044,-0.0068977717,-0.007171197,-0.042107478,-0.022010727,-0.05185136,0.012478131,0.029405637,-0.018742055,0.0028134831,0.0014284912,-0.018108204,-0.04516487,-0.00012700289,-0.009197029,-0.0012234224,0.015324239,-0.008407825,-0.016057516,0.012596201,0.043524317,-0.0072519816,-0.00915353,0.006335386,0.00015817104,0.04673085,-0.036017556,-0.024061417,0.020879742,0.027491659,0.022980144,-0.0021252595,-0.010533084,0.015125385,0.01720093,0.030698191,0.0075005502,-0.012391132,0.0031164258,-0.010141589,-0.016032659,-0.0052106143,0.01672865,-0.0024095594,0.000877757,0.019177048,0.0071649826,0.0024483984,-0.025801394,0.054635324,-0.038776662,-0.03611698,0.027814798,-0.014578534,-0.005055259,-0.0006656971,0.010079447,0.022010727,-0.01971147,-0.048818823,0.020457175,-0.025204832,-0.02261972,-0.03502328,0.009998662,0.00014729617,0.004542587,0.018568056,0.016144514,-0.03353187,-0.006935057,-0.012434632,0.0030480695,0.017648352,-0.022097727,-0.0111545045,0.043250892,0.014230538,0.030921903,-0.019388331,-0.04280347,0.06383235,-0.02223444,0.009377241,0.00977495,0.021650303,0.006347814,0.0029206781,-0.010731938,-0.0010711743,-0.005452968,0.011906425,-0.03221446,0.0061116745,-0.009551239,0.008619107,0.061943233,0.0012125475,-0.0039833076,-0.0034551,-0.015162669,-0.0056797867,-0.0003796493,-0.008109543,0.013447548,0.027939083,-0.035992697,0.0010385497,0.006310529,-0.018754482,0.04948996,-0.0005386942,0.00010476768,0.0128136985,0.017275501,0.04374803,-0.009259171,-0.011999637,-0.0005363639,-0.006002926,0.016616795,0.02632339,0.0012754664,-0.05876156,-0.041113205,-0.0056891083,-0.020531746,0.0026721098,0.01743707,-0.014193253,-0.027814798,-0.0009632024,0.03298502,-0.005393933,0.015523094,-0.008041186,-0.03676326,-0.04170977,-0.000870766,0.017698066,-0.048893396,0.02238358,-0.0018704769,-0.028560504,-0.0016312298,0.022470579,-0.0028476613,-0.015199955,0.007196054,0.01987304,0.007077984,0.006966128,-0.015672235,-0.0011410841,-0.014628247,0.012496774,0.0085880365,-0.0053100414,-0.008817962,0.031369325,0.013397834,0.0030604978,0.008438895,-0.009650666,0.02560254,0.00707177,0.032860737,-0.019699043,0.0017865851,-0.010377728,-0.017176073,-0.0016654079,0.009980019,-0.0050739017,-0.029977344,0.008159257,-0.06492605,0.028386505,-0.011334717,-0.0019264048,0.0011022453,-0.032637026,-0.0079604015,0.0028865,-0.0149016725,-0.009868164,0.0037005614,0.024496412,-0.06244037,-0.0059438907,-0.07283053,-0.03007677,0.03186646,0.019201905,-0.015734376,0.013397834,0.008569394,-0.0032997448,0.01048337,-0.026621671,-0.0044493736,-0.015498237,-0.0403675,0.017710496,-0.0004932528,-0.0219113,-0.0013345013,-0.02096674,0.007109055,0.011434144,-0.011086148,-0.009731451,-0.040640924,0.011533571,-0.031220185,0.01776021,-0.007817475,-0.009097601,0.008128185,-0.019313762,0.03964665,-0.09072745,0.046357997,0.029728776,0.030549051,-0.010029733,-0.008097114,0.014752531,0.03723554,0.037285253,-0.04829683,0.046482284,0.044642877,0.021302307,-0.0001265174,0.042231765,-0.03228903,0.04357403,0.02080517,0.010147803,-0.017263072,0.014106254,-0.0063260645,-0.00037945513,0.03897552,0.013198979,0.019388331,-0.012913126,-0.01048337,0.01776021,-0.0027420197,0.036738403,0.016554652,-0.026969666,0.021650303,-0.0041417703,-0.023862561,-0.008929818,-0.004527051,0.0015768555,-0.03676326,0.01452882,-0.02167516,-0.0029098033,-0.0102223735,-0.047973692,0.005925248,-0.034053866,0.0011861371,-0.0034084935,-0.004340625,-0.045935433,-0.026745955,0.01452882,-0.0070034135,0.018940909,-0.0019264048,-0.00023847027,0.012297919,0.0085631795,-0.014740103,0.03079762,0.047178272,0.036564406,-0.004965153,0.0059345695,-0.04469259,-0.014255395,-0.0076248343,0.011465215,0.021787016,0.0173625,0.040019505,0.027591087,0.030051913,0.013335692,0.0427289,-0.003663276,0.01681565,0.033357874,0.031791892,-0.004412088,0.018667484,-0.026795669,-0.0031941033,0.003566956,0.025677111,-0.028908499,-0.010284516,-0.0027187164,-0.01260863,-0.008911176,-0.015199955,-0.0002468206,-0.00057326077,0.007879617,0.022246867,-0.029505063,-0.032463025,-0.014093826,-0.0138204,0.041585486,-0.006108567,-0.007742904,-0.04859511,0.0072954814,-0.012509203,-0.008693678,0.023986846,0.015386381,0.030499337,0.010433656,0.028386505,-0.012502988,0.0009655327,0.0038310597,-0.043300606,-0.018679911,0.0020320462,-0.0037968815,-0.014292681,-0.043648604,0.0048688324,-0.020370176,0.010241016,-0.033009876,0.0390998,-0.0066243466,-0.020929456,-0.008569394,0.014665533,-0.041908626,0.007966615,-0.015150242,0.041361775,0.0312699,0.0010004876,-0.008911176,0.04203291,-0.020221036,0.0060526393,-0.018319488,-0.0011224415,-0.0520005,0.011626785,-0.00093989907,-0.022507865,0.010818938,-0.0126397,-0.010203731,-0.00030896268,-0.014242967,-0.010259659,-0.024297556,-0.023887418,0.00089484605,0.04195834,-0.0067983447,0.039621796,0.009016817,0.014180824,0.00097097014,0.029778488,-0.0035203493,0.03527185,0.006242173,0.0062981006,-0.024881693,0.020519318,-0.025826251,0.0054685036,-0.028237365,0.023663707,0.014267824,0.0014704372,-0.03268674,0.026845383,0.020544175,-0.009787379,0.01405654,-0.02239601,-0.0074881217,-0.01260863,0.011291217,0.0029439814,0.018232489,0.002731145,0.023390282,0.0069847708,0.010626297,-0.02168759,-0.008793105,0.017325215,0.010564155,0.01280127,0.0128634125,-0.01916462,-0.004934082,-0.0015154902,-0.030747905,0.008942246,0.024222987,0.018170347,0.016529795,-0.010918365,0.059407838,-0.0036259908,0.01885391,0.036191553,-0.0101726595,0.007351409,0.0027901798,0.012708057,-0.049962237,-0.025627397,-0.002425095,0.016169371,0.012502988,0.020233463,0.009762522,-0.0003413931,-0.004794262,-0.03141904,-0.019736327,0.049092248,-0.019922754,-0.036564406,-0.04225662,-0.0325376,-0.017002076,-0.0002959517,-0.009221886,-0.0150011005,-0.02222201,-0.0011682713,-0.0127639845,-0.013372977,-0.004284697,0.03025077,0.012739128,0.04916682,-0.020917026,-0.00072939275,0.022135012,-0.022097727,0.02905764,-0.008128185,-0.017809922,0.009588524,-0.000053451906,0.01665408,-0.03912466,0.012291705,-0.01752407,0.013571832,0.0021687588,0.0061147814,-0.003094676,-0.013907399,0.037732676,0.0072768386,0.022483008,-0.030225912,-0.0039677722,-0.00437791,0.015535522,-0.010856222,-0.018406486,0.0028165902,-0.028137937,-0.006928843,0.08565666,0.06179409,-0.006611918,0.025341544,0.007413551,-0.005859999,0.007612406,0.018592913,0.013111981,0.010470942,0.023303283,0.0102223735,-0.020780314,-0.037434395,0.007494336,-0.031046188,-0.0051671145,0.005266542,-0.0053442195,-0.03872695,0.025142688,-0.0026068606,0.009047888,-0.0074011227,0.017809922,-0.02920678,0.01705179,-0.0107257245,0.0060774963,-0.015448523,-0.007680762,0.018580485,-0.006487634,-0.0009826218,0.0021190452,0.029480206,-0.0068977717,0.002855429,-0.0032158531,0.031195328,-0.0057574646,-0.02112831,0.032711595,0.018021205,0.010029733,-0.00127702,-0.017561354,-0.009408312,0.02143902,0.0037999887,0.011651642,0.01539881,0.020457175,-0.0069971993,-0.016355798,-0.007873403,0.035097852,0.002709395,0.012453275,0.004104485,0.00911003,-0.03417815,-0.0075378353,-0.0033090662,0.06771002,0.044593163,-0.039298657,0.018791767,0.0027156093,-0.0031614788,-0.06234094,-0.00773669,0.0023412032,0.013211408,0.00037168738,-0.014516392,0.0017539604,-0.0073700515,-0.0016762828,-0.008904961,0.07984015,-0.018543199,0.015970517,0.020395033,0.001297216,0.00993652,-0.026223961,0.044270024,-0.01876691,0.024856836,-0.0050241877,0.035768986,0.007941759,0.00011253544,0.041436344,0.022470579,0.010371515,-0.009694166,0.019090049,-0.03465043,0.01814549,-0.012527845,-0.014255395,-0.036489833,-0.020295607,-0.011396859,0.02843622,0.016616795,0.009992448,0.0126397,0.013621545,-0.008221398,-0.01735007,-0.011987208,-0.024657981,0.006257708,0.015336667,-0.052994773,-0.0024654875,-0.02027075,-0.026025107,-0.016852934,-0.014541249,0.00667406,-0.008886319,0.011844282,-0.026248818,-0.060451824,-0.008320825,-0.01625637,0.0254534,-0.0068542724,0.010154017,-0.042952612,-0.025353972,-0.015262097,0.005496468,0.0072706244,-0.005145365,0.013832829,-0.020879742,0.007767761,0.013758258,0.003327709,0.009669309,0.026124533,-0.0062390654,-0.01012916,0.01107372,0.011098577,-0.005381505,-0.0052199354,-0.015274526,-0.0013849918,-0.065721475,-0.0017461927,-0.017499212,-0.029679062,0.0040920563,0.04389717,-0.00974388,-0.011701355,-0.0010533084,0.004794262,-0.025478257,0.04760084,-0.020482032,-0.0067051314,0.004996224,-0.060054116,0.018493485,-0.0041200207,-0.023999274,0.0016607473,0.011111005,0.0024685943,0.008960889,-0.0015908375,-0.021265022,0.007643477,0.00031032207,0.033482157,-0.0037067756,-0.0062048873,-0.017337643,-0.023290854,-0.017424641,0.008942246,-0.02960449,0.0043002325,-0.031071045,-0.037210684,0.0019652436,0.011688927,-0.01634337,-0.01531181,0.01641794,-0.041336916,-0.034998424,0.00816547,0.016915077,0.015958088,0.038229812,-0.049987096,-0.0015310257,0.0060588536,0.015622521,0.045910574,0.025527969,-0.016579509,-0.017026933,-0.014479106,0.03629098,-0.01877934,-0.021327164,0.019450475,-0.033556726,-0.008817962,0.021613019,-0.0032562455,-0.0055834665,-0.013472404,-0.028809072,0.011819425,-0.008594251,0.031593036,0.015187526,-0.027392233,0.011844282,-0.029007927,-0.0075005502,-0.011850496,-0.032487884,-0.0006792907,0.0028336793,-0.03723554,0.049440246,-0.007531621,0.027839655,-0.006065068,0.02442184,-0.016616795,-0.02365128,-0.0123352045,0.0037533822,0.015224812,-0.04948996,0.0022386687,0.000024407762,-0.0077491184,-0.023526995,0.012111493,0.008768248,0.020556603,0.008227613,-0.009625809,0.02027075,-0.019152192,-0.023750706,-0.015075671,-0.007077984,-0.016231513,0.016393082,0.025776539,-0.0053970404,0.05043452,-0.011719998,-0.010551726,0.0022992573,0.0043375175,0.05930841,0.012192278,0.0017741566,-0.017685639,-0.009874377,-0.018493485,-0.0005569485,0.06015354,0.0056145377,0.022880716,-0.015908375,0.02489412,0.015050814,0.033258446,0.025080547,-0.028386505,-0.025751682,-0.0029377672,0.0053348984,-0.0067921304,-0.017847208,0.033581585,0.04282833,-0.03353187,-0.013497261,-0.0056176446,0.014081397,0.015970517,-0.03713611,0.007979044,0.008693678,0.00027400776,-0.0012094404,-0.020134037,-0.011912638,0.009756308,-0.00010195186,-0.029132212,0.05374048,-0.032487884,0.00586932,0.027392233,0.004819119,-0.045488007,0.0066429893,-0.021662733,-0.000031022497,0.0023645065,-0.019512616,-0.018207632,0.02521726,0.00065521064,-0.02481955,-0.016840506,-0.005384612,0.020494461,-0.018406486,-0.014789817,-0.032860737,-0.006990985,0.0069723423,0.03897552,0.0450903,-0.02411113,0.0026798774,-0.0005270426,-0.022445722,-0.019649329,0.037981246,-0.006301208,-0.022557577,0.001946601,0.0065373476,-0.019823326,-0.0040703067,0.005275863,-0.017834779,0.009961377,0.0071898396,0.011719998,-0.0054933606,-0.010862437,-0.025751682,-0.008724749,0.021700017,0.017176073,0.015523094,0.011819425,0.031692464,0.0026767706,0.013186551,0.027914226,0.0074011227,-0.002748234,-0.010309372,0.016591938,-0.00007442486,-0.03683783,-0.004011272,0.007923116,-0.0017679424,0.009060317,-0.0085631795,-0.014429393,0.052199353,-0.012130136,-0.019935181,-0.003511028,0.018394059,-0.0073389807,-0.006307422,-0.000103893806,0.006040211,-0.0005421897,-0.002394024,-0.015697092,-0.0030915688,-0.036017556,0.033954438,0.0058289277,0.0009841754,0.028908499,0.012074208,0.013932256,0.018990623,0.0012777967,0.046830278,-0.024769837,0.022483008,0.0004291688,-0.010943222,0.010464728,-0.007848546,-0.003097783,0.049390532,-0.010029733,-0.028635073,-0.0029781596,0.03967151,0.008382968,-0.017847208,-0.021563305,-0.023228712,0.010533084,0.028088223,-0.0032779952,-0.01705179,-0.008420253,0.013571832,-0.0029144639,-0.051155366,-0.025242116,0.0123849185,-0.014354822,0.01421811,0.0012024494,-0.0312699,0.024285128,-0.0021081704,-0.05513246,-0.033656154,0.006879129,-0.026397958,-0.0162688,0.04061607,0.015597664,0.02043232,0.020929456,0.06025297,-0.0014564552,0.017809922,-0.015920803,-0.0016172478,0.016865363,-0.022433294,0.01452882,0.0015768555,-0.005415683,-0.013932256,0.06497577,0.0024126666,-0.01201828,0.0015760787,0.004729013,0.013807972,-0.011912638,-0.020718172,0.008898747,0.006338493,0.013099552,0.03025077,0.015970517,0.012776413,0.00079270004,-0.012664557,0.0037285252,-0.0058382493,0.005275863,0.007612406]},{"id":"interface-GatewayChannelPinsAckDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelPinsAckDispatchData\nDescription: CHANNEL_PINS_ACK — user acknowledged viewing pinned messages\nProperties: channel_id: string, last_pin_timestamp: string | null","meta":{"url":"/docs/typedefs/GatewayChannelPinsAckDispatchData"},"embedding":[0.018629668,0.008314937,0.005250924,0.02218486,0.0046106386,0.01763562,-0.017553756,-0.014700247,-0.020079812,-0.017846124,0.03992573,0.028511697,0.0039762007,0.018033238,0.042147726,-0.01816188,-0.0024105716,0.0448609,0.019307962,0.050942145,-0.0324879,0.023482973,0.05365532,0.05800575,-0.04039352,-0.020079812,0.013893313,-0.023506362,0.02759951,-0.008466968,0.046474766,-0.032113668,0.017401725,0.019097457,0.001511541,0.024020929,-0.004864998,-0.0028257337,-0.03688511,-0.026570376,-0.034873616,0.003049395,-0.00095238775,-0.019249488,-0.019647108,-0.0025552935,-0.012045548,0.029447274,-0.003274518,0.054497335,-0.029961841,0.020723023,0.0051076636,0.039434552,-0.0012067476,0.009408392,0.058847766,0.01935474,0.010852689,-0.01677021,-0.045843255,-0.0006099521,-0.023471277,-0.0082857,0.0050141057,0.008636542,-0.07086993,0.052719742,0.0404403,0.016115308,0.03634715,0.013752976,-0.06025113,0.0005730407,-0.016021749,0.006215737,-0.034826837,0.0016445683,-0.0010415599,0.020489128,-0.029353715,0.052906856,-0.09758064,-0.058146086,0.0033534574,-0.049024213,-0.013998565,-0.019682193,-0.019892698,0.022991795,0.010946246,0.0380078,-0.031786215,0.00066294376,-0.0170158,-0.029681167,0.02715511,-0.013320272,-0.03754001,-0.005572528,0.04916455,-0.0806467,-0.08611982,-0.036019698,0.029774725,0.014103817,-0.0057333303,0.00066623284,-0.018302217,-0.00031137158,-0.021132337,0.013051294,-0.053093974,0.05842676,0.00235356,-0.01582294,0.030499797,0.010004822,0.04509479,0.05388921,-0.04362126,0.018395774,0.016910547,-0.0041311556,-0.033423472,-0.03449939,-0.0026985537,-0.020079812,-0.048182193,-0.025096843,0.026430039,0.026523596,0.020114897,0.0165714,-0.006777083,0.017799344,-0.005864896,0.016185476,-0.052205175,-0.015963275,-0.008648236,-0.022734512,0.08069348,0.017471893,0.02795035,0.010864384,-0.040159624,0.020185065,0.075407475,0.0024105716,-0.033002466,0.057912193,-0.0037159934,0.024582274,-0.021307757,0.0032365103,0.010104227,-0.026991384,-0.013133156,-0.05716373,-0.0024091098,-0.04401888,0.014513132,0.019038985,-0.04925811,0.0061455686,0.016933937,-0.021260979,-0.042966355,-0.0055315965,0.02605581,0.011934449,-0.043363973,0.002742409,0.007589865,-0.011811654,-0.010922857,-0.0074144443,-0.05084859,-0.020325402,-0.010741589,0.03230078,0.0021576735,-0.104878135,-0.020758105,-0.008297395,0.028605254,-0.0073150396,0.02064116,-0.0662856,-0.025845304,0.05169061,0.0016971944,0.0067653884,-0.020103201,-0.074565455,0.012256053,0.00078208355,0.00042174038,-0.06815676,0.002922215,-0.010437527,0.017729176,0.011881823,-0.009291445,0.012606895,0.019389825,-0.0047451276,-0.039691836,-0.020302013,0.050193686,0.019249488,0.063665986,-0.023635004,-0.017752565,0.01617378,-0.033821095,-0.016056834,-0.025798524,-0.03627698,-0.042498566,0.022722816,0.01599836,0.03316619,0.018746616,0.034546167,-0.0148639735,0.02834797,0.02561141,-0.002091891,-0.011951991,0.0030406239,0.015109562,-0.034475997,-0.020185065,-0.013004514,0.036300372,-0.014302627,-0.01109243,-0.0052246107,0.0026356948,-0.01935474,-0.016852073,0.03873287,-0.04605376,0.014478048,0.019226098,0.023833813,-0.00069291145,0.030827248,0.01935474,0.028956097,-0.017448504,-0.00092972926,-0.0038767955,-0.010151006,0.025050063,0.004812372,-0.0004433025,-0.05632171,0.056883056,-0.032137055,-0.043831762,-0.02397415,-0.03765696,0.009338224,0.05753796,-0.001021825,-0.017577145,0.005519902,0.012525031,-0.008314937,0.08438901,0.018816784,0.005554986,-0.011033957,-0.027856793,-0.012291137,-0.021073863,-0.0080108745,-0.0042597973,0.014665163,0.010642184,0.060952816,-0.036300372,0.058146086,0.007502155,-0.015717687,0.056134596,-0.023751952,-0.03272179,-0.01703919,0.021553345,-0.025330737,-0.004821143,0.042545345,0.01418568,-0.00021196657,0.031271648,-0.023903983,0.023670088,-0.03075708,-0.013402135,-0.030499797,-0.00035084123,-0.005616383,0.041843664,-0.0047889827,0.022570785,-0.03798441,0.00086175377,-0.0163492,-0.055058684,-0.002224918,-0.043013133,0.021798935,0.0034060834,0.028675422,-0.028698811,-0.008268158,-0.018851869,0.034054987,0.0047538984,-0.070215024,0.022255028,0.01763562,0.009145261,0.02216147,0.07405089,0.018512722,0.019845918,-0.022886543,0.026172755,0.03129504,0.0059467587,0.022722816,-0.024137877,0.015986664,-0.051784165,0.005999385,0.010817604,-0.010519389,-0.021331146,0.007706812,0.033002466,-0.0150744775,-0.055339355,0.023506362,-0.0008317861,0.0038358641,0.0014106741,0.018337302,-0.0025041292,-0.039808784,-0.00799918,-0.0019252412,0.04076775,-0.011881823,-0.040931474,0.037142392,-0.007934859,0.0008018184,-0.0037101458,0.0038358641,-0.023108741,-0.062215842,-0.06389988,-0.03948133,-0.012150801,-0.030523187,0.022769595,0.01241978,-0.059409115,0.0067653884,0.02141301,0.022231638,-0.027716456,-0.009852791,-0.0012454863,-0.0031312578,0.01781104,-0.014033649,0.06820353,0.035411574,0.02260587,0.012454864,-0.03122487,0.03354042,-0.019366436,-0.0026108434,-0.016091917,-0.028511697,-0.012946041,-0.008829504,-0.0042013237,0.009040009,0.0038972613,-0.020956915,0.047316786,-0.006163111,-0.032955687,0.039364386,0.03192655,0.019296268,0.009952196,0.010548626,-0.03515429,0.028652033,0.051456712,0.017682398,0.034826837,-0.013156546,0.027248668,0.02317891,0.02278129,-0.072039396,0.0055315965,0.0046281805,-0.011683012,0.024137877,-0.00919204,0.00919204,0.00439721,0.0066542886,0.009735844,-0.004043445,-0.0051982976,-0.008402647,0.048462868,-0.07306853,-0.025096843,0.024371771,0.033774316,-0.032628234,0.040136237,-0.049351666,0.047620848,-0.0028535086,-0.043363973,-0.039060324,-0.027084943,-0.0039937426,-0.02923677,0.01661818,-0.04116537,0.009648134,0.00256845,0.00059021724,0.012185886,-0.0052070683,-0.04879032,-0.030078787,-0.049866233,0.03917727,-0.0649758,0.0070519084,-0.0056865513,0.09304309,-0.05000657,-0.006777083,-0.015203119,-0.018863562,0.006087095,0.06848421,-0.020033034,0.0049439375,-0.04916455,0.026266312,-0.010343969,0.008788573,-0.0038563297,0.013495692,0.04745712,0.058613874,-0.030312682,-0.01898051,0.010683116,-0.017062578,-0.0042831865,-0.027810015,-0.030242514,0.021553345,-0.0033885415,0.021436399,0.013226714,0.092855975,0.022149775,0.017144442,0.0051427474,0.015086173,-0.025704967,-0.016887158,-0.000028003342,-0.01160115,0.014033649,-0.00049958326,-0.011548524,-0.027459173,0.031762827,0.0020685014,0.017682398,0.005861972,0.03873287,-0.04233484,0.015413624,0.038054578,-0.024816168,0.011554371,-0.028137466,-0.033517033,0.018103408,0.0069875875,-0.04362126,-0.028277803,-0.054123107,0.020185065,-0.014559911,0.003239434,-0.009671523,0.016208865,0.011916907,0.009057551,0.021915881,0.0227579,-0.0023243232,0.0047831354,-0.030593354,-0.046638492,-0.0256348,0.0055871466,0.020348791,-0.043925323,-0.018723227,0.014934141,0.008531289,0.030055398,-0.0093031395,-0.0088821305,-0.013893313,-0.014396185,0.035809193,-0.026172755,-0.012677063,-0.036627825,0.013156546,-0.014349406,0.024746,0.015413624,0.0044936915,0.022102997,-0.012267748,-0.04362126,0.02441855,-0.011472508,0.024161266,0.0011278084,-0.036627825,-0.03398482,0.016162086,-0.0041106897,-0.00076161785,-0.013004514,-0.026546987,-0.02921338,0.0011606998,0.060952816,0.017448504,-0.007683423,0.00012562674,-0.005122282,0.009221277,0.043831762,-0.010811757,0.009098482,0.0324879,0.015062783,-0.050988924,0.007934859,0.02839475,-0.025400905,0.024137877,-0.05669594,0.030499797,0.03599631,-0.016103612,0.023143826,0.031505544,-0.027903572,-0.030850638,0.018641364,-0.044276163,-0.014337711,0.005569604,0.03966845,-0.034709893,0.030148955,-0.018863562,0.002452965,-0.010022365,0.014945836,-0.0004897159,0.027646288,-0.044229385,0.0014486819,0.04752729,0.0479483,-0.013600945,0.0060403165,-0.024067707,0.013776366,-0.008864588,0.02991506,0.0017395878,-0.007771133,-0.029400494,0.012665369,-0.020477433,0.019845918,-0.003827093,0.024512107,-0.015951581,0.029283548,-0.00709284,0.030453019,0.005908751,0.044977844,-0.026032418,-0.020863358,0.02200944,-0.005707017,0.019530162,-0.027903572,-0.008542984,-0.012057244,-0.013612639,-0.01840747,0.013940091,-0.014045344,0.030686913,-0.0024558885,0.015413624,0.019927781,0.011145056,0.0110456515,0.028605254,-0.009794317,0.031411983,-0.010490153,-0.022442143,0.025096843,-0.04320025,-0.025307346,0.032675013,-0.0061221793,0.031341817,-0.03627698,-0.029306937,0.038498975,-0.014828889,-0.0023901057,-0.015963275,-0.010952094,-0.003066937,0.0038563297,-0.006958351,-0.011718097,-0.012232664,-0.012840789,-0.0020597305,-0.011466661,-0.016255643,0.008724252,0.025237178,0.0043211943,-0.022032829,0.012443169,-0.018068323,0.0040756054,0.011536829,-0.00137559,0.06357243,0.04032335,-0.017074272,-0.007987485,0.014770416,-0.025704967,0.07255396,-0.00078208355,0.0010276724,-0.01438449,0.014828889,0.024535496,0.0145949945,0.009806012,0.0016591867,0.020992,0.017004104,0.007157161,-0.019565245,-0.01796307,-0.028745592,-0.0111976825,0.011449119,-0.020769801,0.027084943,0.00017706519,0.03599631,-0.014068733,0.032441117,-0.0024646595,-0.01239639,0.014770416,-0.018898647,0.021401314,0.0011687399,-0.014349406,-0.051830944,0.014618385,0.018068323,-0.014115512,0.009121872,0.0031634183,-0.017331557,0.02243045,0.022301808,-0.006759541,0.015717687,0.035318017,-0.013425524,0.027880182,-0.0044439887,-0.010817604,0.028885927,0.015366846,-0.013752976,0.028043909,0.011683012,-0.006005232,-0.0034704045,0.0076015596,0.03075708,-0.013998565,0.031248258,-0.02958761,0.03442922,0.0021591354,-0.04443989,-0.016524622,0.00010214596,-0.0005554986,0.02317891,0.006280058,-0.038288474,0.021003695,0.0012710685,0.034569554,0.0010276724,-0.027131721,-0.013156546,0.0056076124,-0.031154701,0.012115717,-0.0066484413,0.022535702,-0.013273493,-0.015589045,-0.011729792,-0.022056218,0.0185595,0.0037773906,-0.005394184,0.0029339097,0.011723944,0.015051088,0.036721382,-0.013799755,0.0013522005,-0.013378745,-0.04156299,0.019413214,-0.02002134,-0.039691836,-0.025798524,-0.033400085,0.029540831,-0.01140234,-0.020711327,-0.028605254,-0.043738205,0.037119,-0.022091303,0.02879237,0.0020787343,-0.00609879,0.019237794,-0.030593354,0.02516701,-0.08102094,0.021038778,0.015238204,0.010940399,-0.016863769,-0.02876898,0.029540831,0.07185228,0.00414285,-0.081254825,0.009197887,0.015273288,-0.017752565,-0.05519902,0.013565861,-0.021822324,0.019050678,-0.008630694,0.02598564,0.009864486,-0.011308782,0.0058122696,-0.038171526,0.04682561,-0.003420702,-0.033353306,-0.026125977,0.05075503,0.046521544,-0.017413419,0.017074272,-0.015355151,0.034101766,0.017261388,0.03957489,0.016501233,0.0003745961,0.010343969,0.0011431576,-0.03321297,-0.010028211,-0.012618589,-0.031856384,-0.005227534,0.021950966,0.0013112691,0.0014048268,0.036300372,-0.023716867,0.0022117617,-0.021062167,-0.01500431,0.0050258003,-0.0010707966,-0.0032774417,-0.0038972613,-0.018840173,0.009858638,-0.009794317,-0.010846841,0.045305297,0.030032009,0.032207225,-0.0027921114,0.03202011,-0.03237095,-0.015846329,-0.041352484,0.01560074,0.019343046,0.0037013749,0.026921216,-0.008689168,0.0029105204,-0.0037101458,0.048509646,-0.011221072,0.0008800267,0.0031634183,0.01778765,-0.008893825,0.034826837,-0.00868332,-0.017834429,0.01001067,-0.021296062,-0.019413214,0.0065197996,0.030944197,-0.028722202,0.030172346,-0.035341404,-0.009613049,0.037399676,0.01597497,0.0022833915,-0.014080428,0.033821095,-0.029423883,-0.032230616,0.014770416,-0.032090276,-0.018021544,-0.042919576,-0.048603203,-0.025330737,0.017156135,0.019857613,0.008127822,0.030733692,0.005926293,0.01999795,-0.0066367467,-0.009911264,-0.006531494,-0.026500206,-0.012256053,0.009601355,0.0082213795,-0.028324582,-0.00065453816,-0.02923677,-0.00204365,0.0031283342,-0.011010567,0.044884287,-0.01840747,-0.034897007,0.010630489,-0.011975381,-0.004750975,-0.009116025,-0.019471688,-0.019495077,-0.001846302,-0.036160037,0.03321297,0.031552322,-0.006016927,0.013881618,0.010887773,0.023927372,0.007385208,0.037493233,-0.06305786,0.006227432,-0.027248668,-0.03194994,0.015460404,-0.029494053,0.0139634805,-0.0131214615,0.0062566684,0.016910547,-0.03915388,0.034148544,-0.04355109,0.03265162,0.01798646,0.043223638,-0.0051252055,0.042685684,-0.018348996,0.03838203,-0.011694708,-0.0024032623,-0.018699838,-0.002669317,-0.024301602,0.043831762,-0.0063034473,0.011209377,0.037212558,-0.016957326,-0.01754206,0.04995979,0.047737796,-0.003926498,0.00978847,-0.01438449,0.019693887,0.033306528,-0.016898852,-0.011753181,0.030078787,-0.023564836,0.033938043,-0.0055608335,-0.024161266,-0.01739003,-0.010829299,0.04549241,0.0647419,0.005435115,0.009940501,-0.014279238,0.021611819,0.025307346,-0.02158843,0.016758516,0.03033607,0.00010497827,-0.015355151,-0.013378745,0.027856793,-0.012232664,-0.016056834,0.0076132547,-0.0074202917,-0.008268158,0.020933526,0.009613049,-0.047784574,0.002796497,-0.0032452813,0.017284777,0.0048766932,-0.00023590418,-0.024091097,-0.013039599,0.01975236,-0.00539126,-0.02176385,0.06235618,-0.021003695,0.012349611,-0.007899775,-0.033096023,-0.02441855,-0.00094946404,0.037025444,-0.014489743,-0.02017337,0.008648236,0.007876386,-0.015086173,-0.014150596,0.008665779,0.031061143,0.006367768,0.0030435475,-0.0004904468,-0.023155522,-0.0059145982,0.011185988,-0.021915881,-0.019483382,0.015787855,-0.02720189,-0.019530162,-0.007508002,0.022255028,0.027903572,-0.0072682607,-0.0056426963,0.00003652312,-0.0144429635,-0.020559296,0.006180653,0.02516701,-0.0017659009,0.010162701,0.019904392,-0.037820686,0.020290317,-0.005841506,0.011396493,0.014489743,0.0031078686,0.013624334,0.029073043,0.0117064025,0.01378806,-0.010817604,0.007239024,-0.0015027699,-0.047059502,0.006613357,-0.009770928,0.041773494,-0.013215019,0.007572323,-0.011636234,-0.0064379363,-0.00022658496,0.014723637,0.00034298384,-0.016653264,-0.013039599,-0.016922241,0.034522776,0.009156956,0.00005833649,-0.0380078,0.022021133,-0.012677063,-0.019939477,0.008168753,0.029610999,-0.009355766,-0.02064116,-0.0066016624,0.007046061,-0.020056423,0.023389416,0.0006728111,0.020231843,0.01319163,0.035411574,0.003321297,0.003929422,-0.047386955,-0.006876488,-0.011811654,0.029260159,0.0062742108,-0.028231025,-0.05108248,0.036861718,-0.013343661,-0.008414342,0.0012454863,0.006502257,-0.0065548834,0.006028622,-0.010227022,0.008899672,0.009835249,0.00011703844,-0.008110279,0.003520107,-0.039738618,0.0267341,0.0059672245,0.0026532367,0.038873207,-0.018419165,0.0110164145,-0.0018536111,-0.0064847153,-0.007554781,0.023494666,0.022874847,0.045656137,-0.021869102,-0.02158843,0.021284368,-0.02432499,-0.013846533,-0.018419165,0.058660652,-0.009069245,0.046240874,0.030546576,-0.0017030417,0.0069525037,0.002669317,0.012665369,-0.015530571,-0.0041662394,0.028675422,0.026687322,-0.035809193,-0.02605581,0.013717892,-0.00038775263,0.0025172858,-0.0004242986,0.035481744,-0.03075708,0.028605254,0.039387774,-0.010127617,-0.01739003,-0.042545345,-0.036230203,0.016442759,0.007888081,0.0041457736,0.025938861,0.005683628,-0.0066250516,-0.012291137,0.0054789702,-0.049866233,0.017752565,0.00091218716,-0.0009092635,-0.00092095823,-0.016454453,0.023494666,-0.04163316,0.010460916,0.0049819453,-0.016887158,0.015472098,-0.03281535,-0.037306115,-0.002534828,-0.024722612,0.021085558,0.002407648,-0.0017176601,-0.042545345,-0.0023023956,0.016232254,0.0054965126,0.032230616,0.0079816375,-0.003952811,-0.016559705,-0.014910752,-0.03754001,0.0022731589,0.042521957,0.020114897,-0.01087023,0.0095721185,0.00941424,0.018653058,0.00034974483,-0.005204145,0.003637054,0.0055403677,-0.009121872,-0.045702916,-0.0048006773,-0.028043909,-0.014828889,0.033002466,0.03627698,0.0076483386,-0.006730304,0.008537136,-0.056883056,0.020781495,0.009461018,0.01933135,0.010419984,-0.036487486,0.01880509,0.0063385316,-0.0154370135,0.01838408,-0.0052684657,0.009642286,-0.008408494,0.017132746,-0.011367256,-0.011466661,-0.015132952,0.010028211,-0.008712557,-0.00031411252,-0.01677021,-0.0131214615,0.004578478,-0.016255643,-0.017121052,-0.029260159,-0.009893723,-0.030148955,0.02019676,-0.0009845482,-0.0519245,-0.04836931,0.015144646,-0.052158397,-0.016606485,0.004274416,0.013717892,0.042942967,0.03442922,-0.0025260567,-0.0039148033,0.0037393826,0.04563275,0.01460669,-0.0043299654,0.004315347,-0.013647724,-0.0029996925,0.022652648,0.004704196,0.0106071,0.0048006773,-0.03042963,-0.018009849,-0.011589455,0.0054965126,0.022769595,0.0037773906,-0.01418568,-0.014770416,0.008800267,0.018594585,0.02998523,-0.023681782,-0.0006296869,0.024278212,0.0040580635,-0.0022336892,-0.018547807,-0.0012118641,0.0023491743,-0.02114403,0.024558885,0.00038409804,0.011741486,-0.0069232667,0.023541447,-0.050708253,-0.050240465,-0.04235823,0.0028944402,0.011893517,-0.026593765,-0.0035990463,0.018033238,0.021939272,-0.0046457225,0.015261593,0.0038826428,0.028067298,0.0058590486,0.0080693485,-0.0059935376,-0.0205476,-0.053093974,-0.038873207,-0.0094844075,-0.02558802,0.01880509,0.0027365615,-0.021459788,0.034709893,-0.0072156345,-0.016431063,0.010688962,-0.011168445,0.014536521,-0.0045463177,-0.0021050475,-0.014279238,-0.021728767,-0.022512311,0.0023637929,0.030686913,-0.008969841,0.028488308,-0.032441117,0.01840747,0.009308987,0.007899775,0.031037753,-0.005093045,-0.01517973,-0.027505953,0.006268363,-0.031248258,-0.013285188,0.017705787,0.023482973,0.0011007644,-0.032979075,0.023190605,-0.0026181526,0.030453019,-0.009841097,0.004721738,0.014033649,0.0010773749,0.0123379165,-0.035318017,-0.010981331,0.013144851,0.0232023,-0.023880593,0.011975381,-0.0326984,0.019483382,-0.037727125,0.019518467,-0.008648236,-0.004560936,-0.01018609,-0.0052392287,0.017553756,-0.009794317,0.013519082,-0.0055403677,0.012115717,-0.006034469,-0.033517033,-0.019927781,0.024231434,-0.009577965,-0.015062783,-0.027084943,0.003926498,0.010981331,0.02379873,0.012677063,-0.053795654,-0.0071337717,0.020114897,0.016875463,0.009273903,-0.0013470841,0.0060754004,0.021366231,0.0052860077,0.022091303,-0.016115308,0.027716456,0.008081043,-0.005283084,0.016477844,-0.0022293036,0.002262926,-0.011536829,0.0026035341,-0.0232023,0.012735536,0.015214815,-0.019962866,0.021798935,-0.009373308,0.004903006,-0.02675749,-0.010811757,0.038171526,-0.0077652857,-0.025845304,0.006233279,0.009893723,-0.0013514697,-0.029330326,0.012677063,0.021459788,0.015986664,-0.0006187231,-0.007174703,-0.0048006773,0.020921832,0.02061777,-0.011355561,-0.0041574687,0.030289292,0.017249694,0.008490358,-0.0039411164,0.030032009,0.009537034,0.01089362,0.004996564,0.005476047,-0.0037452301,-0.025494462,-0.01319163,0.025564631,0.0032160445,-0.01820866,0.005002411,0.021097252,-0.004458607,-0.0078120646,0.016337506,0.03681494,-0.002397415,0.016279032,0.0106071,0.000091410584,-0.013308577,0.044954456,0.0123379165,-0.020126592,0.014817194,0.047129672,-0.0001330273,0.0047012726,-0.025658188,-0.02131945,-0.0093031395,0.014934141,-0.018688142,-0.056836277,-0.023015184,-0.0138114495,0.0050550373,-0.057678297,-0.031318426,0.010232869,0.005481894,0.010829299,0.03632376,-0.023763645,0.008841199,-0.019097457,-0.019097457,0.015027699,0.0040551396,-0.008531289,0.016875463,0.018173575,0.0064203944,0.01177657,0.022991795,0.040954866,-0.026991384,-0.013694502,-0.046942554,-0.024091097,0.018571196,0.0097241495,0.032090276,0.0061572636,0.03870948,-0.0057187118,0.024020929,-0.024629055,-0.0071980925,-0.021483177,0.0033183733,-0.00768927,0.011922754,-0.035739027,-0.015705992,0.0072682607,0.009308987,0.025845304,0.035902753,-0.050287243,0.009209583,0.028839149,-0.0020772724,-0.043691427,0.023143826,0.016501233]},{"id":"interface-GatewayChannelPinsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelPinsUpdateDispatchData\nDescription: CHANNEL_PINS_UPDATE — pins in a channel changed.\nProperties: channel_id: string, guild_id: string, last_pin_timestamp: string | null","meta":{"url":"/docs/typedefs/GatewayChannelPinsUpdateDispatchData"},"embedding":[0.011540621,0.013557428,0.0019131659,0.0051428587,0.01136695,0.024896367,-0.011361348,-0.021658272,-0.013277316,-0.013927176,0.016481798,0.03137256,-0.0074789943,0.03805043,0.043495815,-0.017120454,-0.024134463,0.035182085,-0.0062128874,0.027383763,-0.05875632,-0.006296921,0.07058826,0.07515969,-0.018812332,0.0060056043,0.033232506,-0.00669468,0.026957992,0.025680682,0.073008426,-0.020862753,0.04573671,0.0068179294,-0.014207288,0.03486836,-0.027002811,0.010011208,-0.021501409,-0.023439784,-0.019529419,0.002378152,-0.023663875,-0.002777312,-0.02942298,0.0041456595,-0.014274515,0.014285719,-0.01601121,0.056336153,-0.026464995,0.019103648,-0.0097647095,0.038745113,0.0023137263,0.02190477,0.031081242,0.005837537,0.017669475,0.001963586,-0.018980399,-0.017871154,-0.012896363,-0.03327732,0.01361345,0.032761917,-0.07403924,0.054991614,0.058352962,0.0024075639,0.039708696,0.025859954,-0.035159677,0.015383759,-0.023260511,0.0071540643,-0.06301403,-0.020694684,0.009535017,0.038677886,-0.029086845,0.038274523,-0.08094121,-0.052436993,-0.0044565843,-0.026733903,-0.01743418,-0.037557434,0.021994406,0.020593844,0.008431376,0.016291322,-0.05207845,0.0027787124,-0.042128865,-0.05225772,0.04118769,-0.0035686288,-0.06184876,0.026263315,0.0601905,-0.07753504,-0.06749582,-0.027070038,0.008560227,-0.012661069,-0.03379273,0.0045350157,-0.033837546,-0.024000008,-0.026532222,0.013557428,-0.06704764,0.042801134,-0.0011232496,-0.017299727,0.060504224,0.016481798,0.046565842,0.008890759,-0.054722708,0.0055238116,0.018285722,-0.011831937,-0.0013816531,-0.024448188,-0.004134455,-0.026375359,-0.026196087,-0.028235303,0.03439777,0.0063865567,0.017714292,0.035002813,0.013422973,0.00016193984,0.0008984597,0.015316532,-0.04723811,-0.048044834,-0.01176471,-0.014240901,0.059742317,0.010761908,0.0046554636,0.0008550423,-0.025456592,0.034689087,0.048044834,0.018375356,-0.05427453,0.051943995,-0.018577037,0.042935587,0.013691882,0.021770315,-0.01588796,0.0034089647,-0.029960794,-0.042733908,0.00077871175,-0.014140061,0.01111485,0.022218496,-0.01940617,-0.039798334,-0.0023207292,-0.0071372576,-0.0649412,-0.017053228,0.046207298,-0.032784324,-0.049523827,0.030162476,0.0083137285,-0.01041457,-0.035675082,-0.02143418,-0.05857705,-0.012302525,0.012649864,0.03249301,-0.02280113,-0.07014008,-0.009803925,0.008011207,-0.0006036417,0.011843141,-0.0070140082,-0.06664428,-0.017938381,0.023462193,0.022431381,0.02812326,0.0024467795,-0.047596656,0.016728297,-0.007159666,0.023708692,-0.060280133,0.013624655,-0.039977606,0.031148471,0.0072549046,-0.011322133,0.0068851565,0.024022417,-0.02135575,-0.042218503,0.0038627465,0.025635863,0.028190486,0.027585443,-0.015204487,-0.030386565,0.008997202,-0.027294127,-0.0127619095,-0.015226896,-0.041770324,0.0029831943,0.008095241,0.008851544,0.027988805,0.0034453794,0.03394959,-0.016952386,0.03155183,0.04268909,0.010896362,0.00068907585,-0.01089076,0.016347345,-0.046072844,-0.023238104,-0.013915971,0.02265547,0.0021288523,-0.008577034,-0.014756308,-0.021479,-0.012537819,-0.058980413,0.042352956,-0.051719908,0.02135575,0.030655473,0.020873956,-0.0096694715,0.041680686,0.02812326,0.030319339,-0.0008921572,-0.012493001,0.004633055,-0.021064432,0.04161346,0.006896361,0.028302532,-0.020963592,0.070408985,-0.034487408,-0.05382635,-0.033658274,-0.026061634,-0.009630255,0.047865562,0.04701402,-0.035428584,-0.022991605,0.042151276,0.0061008423,0.070722714,-0.02188236,0.015966393,-0.012862749,-0.019462192,0.026935583,-0.015473395,-0.04073951,-0.018420175,0.018565834,0.0058263326,0.0771765,-0.03831934,0.044190492,-0.0021918775,0.015450986,0.05315408,-0.018812332,-0.04078433,0.020817934,-0.021445386,-0.0045742313,0.011473393,0.04492999,0.0097423,-0.012168071,0.012683478,0.010952385,0.010151264,-0.035787128,-0.02877312,-0.038745113,0.0029579843,-0.014095243,0.03249301,-0.034375362,0.011260509,-0.04484035,0.0061288537,-0.0043165283,-0.028033623,-0.007949582,-0.019753508,0.00482073,-0.004708685,0.050061643,-0.03269469,0.018173676,-0.016347345,0.01820729,-0.0061288537,-0.058263324,-0.008812328,0.0062408987,0.014946784,0.03242578,0.060683496,0.032358553,0.01588796,-0.03959665,0.017602246,0.005633055,-0.0060784337,0.043607857,-0.024380961,0.022184882,-0.010061628,-0.014151266,0.0056890775,0.00047829148,0.015585439,0.009658267,0.06413448,0.0034089647,-0.048806738,0.029960794,0.0014621854,0.025479,0.009512608,0.031081242,0.0038263318,-0.043719903,-0.035428584,-0.021266114,0.044907577,0.0032240907,-0.034801133,0.018117653,-0.010268911,0.014151266,-0.010481796,0.018689083,-0.0065826355,-0.058711506,-0.030476201,0.004997201,-0.011305326,-0.023058832,-0.0036302535,-0.020997206,-0.049568646,0.00028641467,0.02332774,-0.0063753524,-0.018554628,0.0010126054,-0.019025216,-0.022868356,-0.006750703,0.023775918,0.054364163,0.026845947,0.03442018,0.039574243,-0.0067955204,0.0052913185,-0.010442581,-0.00696919,-0.0055966405,-0.03094679,-0.016941182,-0.014767512,-0.024739504,0.009030815,0.02265547,0.020201689,0.04165828,0.0029972,-0.018801127,0.02657704,0.021042025,0.0018081239,0.006207285,0.05337817,-0.00904202,0.026487404,0.064627476,0.010173673,0.0058767525,0.0036750713,0.033210095,0.028840346,0.045848757,-0.061131675,-0.019126058,-0.017994404,-0.024784323,0.03818489,-0.008162468,0.002929973,0.02919889,0.016347345,0.016123256,-0.031126061,-0.009086838,-0.019775918,0.027002811,-0.07099162,-0.04710366,0.03876752,0.046834752,-0.025725499,0.054543436,-0.059563044,0.032605052,-0.023081241,-0.0044958,-0.0014222694,-0.049792733,0.01653782,-0.005775912,0.03876752,-0.01942858,0.037198894,0.010784318,-0.0071428595,0.010722693,-0.0026190486,-0.027338944,-0.0100952415,-0.03143979,0.0601905,-0.03504763,0.0015756309,-0.018364152,0.04513167,-0.053109262,-0.015652666,-0.030319339,0.022218496,-0.001476191,0.044593852,-0.013770313,0.02355183,-0.041299734,0.030431382,-0.016257709,0.00926611,-0.0038235309,0.009680675,0.03901402,0.067944,-0.014184879,-0.0140728345,-0.015148465,-0.005938377,0.002974791,0.019663872,-0.046162482,-0.00019467794,-0.021893565,0.007854344,0.02265547,0.07798322,0.0070364173,0.030453792,-0.019529419,-0.0036470601,-0.01926051,-0.014554627,-0.0050420184,-0.009932777,0.026509814,0.023103649,-0.023708692,0.010011208,0.038207296,-0.0009334737,0.020246506,-0.0127619095,0.04416808,-0.011434178,0.021366954,0.037378166,-0.00801681,0.008845941,-0.031910375,-0.021210091,0.01406163,0.0037422983,-0.011226894,-0.044504218,-0.025434183,0.0012149864,-0.005742299,-0.005815128,-0.011243701,0.05122691,-0.005168069,0.025747908,0.030453792,0.034330543,0.012896363,-0.008274512,-0.017445384,-0.08932216,-0.017714292,0.00022741605,0.021669475,-0.043182086,-0.0076190503,0.04965828,-0.004285716,0.0072997226,0.0014523815,-0.01136695,0.0036834746,0.0033977602,0.0029019618,0.005854344,-0.0212325,0.010459388,0.019630259,0.0005717789,0.016403368,0.030677881,0.0016764712,0.020885162,0.013109248,-0.03708685,-0.00831933,-0.0011141461,0.020851549,0.014207288,0.007322131,-0.017355748,0.0016204488,0.02210645,-0.013691882,-0.0105154095,-0.021815134,-0.04011206,-0.0012457988,0.04035856,0.008229694,-0.02190477,-0.016224096,-0.015383759,-0.013983198,0.029467797,0.009507006,0.0073501426,0.05382635,0.039058838,-0.052123267,0.027182082,0.033389367,-0.027518217,0.03641458,-0.096896395,0.04156864,0.03545099,-0.04098601,0.025523819,0.022812333,-0.044549037,-0.017994404,0.023574239,-0.051899176,0.017299727,0.025725499,0.01863306,-0.005011206,0.023103649,-0.015260509,0.0017703087,-0.017266113,0.014196083,-0.019238101,0.013400565,-0.030252112,-0.0058767525,0.026039224,0.04903083,-0.008257706,0.02812326,-0.03403923,0.020145666,-0.019450987,0.026509814,0.0084537845,-0.00021638663,-0.0076078456,-0.009725493,-0.018666673,0.03511486,-0.016963592,0.012672273,-0.0063865567,0.026061634,-0.006296921,0.028683484,0.015495804,0.040201694,-0.005033615,-0.01136695,0.0070924396,-0.019887961,0.007221291,-0.054588255,-0.033591047,-0.016224096,-0.021792725,-0.0053165285,0.012537819,-0.025725499,0.024941185,-0.012649864,0.02745099,0.022263313,-0.0017226897,0.013949585,0.031215698,-0.0043893573,0.03332214,-0.018464992,-0.015675075,0.018924376,-0.026196087,-0.028280122,0.031170879,-0.008683477,0.034308136,-0.040224105,-0.044705898,0.04791038,-0.025165275,-0.030386565,-0.02330533,-0.028952392,0.00084313756,0.011019612,0.00017025566,0.0005164568,0.009282917,0.0031484605,0.0010049023,0.0057002823,0.00010801825,0.025434183,0.021098047,0.019540623,-0.0055518225,0.013299724,-0.011047623,-0.022117656,0.005123251,0.03354623,0.0601905,0.038633067,-0.019394964,-0.0212325,0.023686282,-0.018229699,0.049972005,0.013142861,0.0000035041373,-0.00080532243,0.0002095589,0.057232514,0.0074453806,-0.0119888,-0.009686278,-0.0035406174,0.020661071,0.005532215,-0.0062633073,-0.018173676,-0.0087843165,-0.002028012,0.0015938381,-0.009422973,0.010700284,0.013445383,0.021299727,-0.011876754,0.020627458,0.0031344548,-0.009299723,0.024336142,-0.02070589,-0.00367227,0.002305323,0.0006257005,-0.049747918,0.02013446,0.01143978,-0.012302525,0.016470594,-0.010313729,-0.009070031,-0.01785995,0.023215694,-0.015372555,-0.015002807,0.02879553,-0.040246513,-0.009792721,-0.026711494,0.015103647,0.013165271,0.008638659,-0.0016624655,0.029579842,0.021770315,0.0050616264,-0.010324934,0.010733897,0.022946786,0.0100000035,0.028436985,-0.025389364,0.056470606,0.0043641473,-0.015282919,-0.0011827735,-0.017064432,0.0069747926,0.00046673685,0.0052717105,-0.043652676,0.028952392,0.0013221293,0.006565829,0.0009432776,-0.03092438,0.008543421,0.01863306,-0.0062857163,0.011484598,0.010436978,0.024089644,-0.01830813,-0.010896362,-0.019876758,-0.011563029,0.0040980405,0.04329413,-0.015294123,-0.009994402,0.00045588252,-0.008649863,0.022117656,-0.025949588,-0.005100842,-0.028190486,-0.0187339,0.0061176494,-0.010571432,-0.021624658,-0.034106456,-0.028056033,0.033411775,0.01830813,-0.017478997,-0.03549581,-0.031036425,0.04073951,-0.013490201,0.038005617,0.0011085438,0.01936135,0.011977595,-0.018375356,0.039327744,-0.0639552,0.024739504,0.029669479,0.021098047,-0.005092439,-0.043921582,0.032380965,0.070005625,0.014700285,-0.07520451,0.029221298,0.015507008,-0.027831942,-0.022621857,0.038117662,-0.008162468,0.013624655,0.00035836847,0.032089647,0.0024509812,-0.0050476207,0.026980402,-0.032089647,0.017288521,-0.0040532225,-0.030386565,-0.0066106464,0.019126058,0.034845952,-0.007288518,0.041904777,-0.01608964,0.012985999,-0.010050423,0.025411773,0.02092998,0.0040392173,0.023843145,0.0044873967,-0.02060505,0.0021708691,-0.01950701,-0.01960785,0.0071428595,0.024313735,-0.0065490217,0.0035574243,0.013859949,0.0027170877,0.021658272,-0.043204498,0.005591038,0.028638665,-0.009014009,-0.0028963597,-0.014184879,-0.025837544,0.017523816,-0.011787119,0.002215687,0.06332775,0.027137265,0.026845947,-0.021243704,0.013322134,-0.025008412,-0.024425779,-0.05234736,0.013120453,0.015204487,-0.00022986703,0.026084043,-0.022386562,0.0129523855,-0.019518213,0.06507565,-0.033232506,-0.010633057,0.010145661,0.011798323,0.013568632,0.034173682,0.005815128,-0.008380955,0.022296926,-0.026196087,-0.030565837,-0.013792722,0.027137265,-0.0194846,0.01633614,-0.031529423,-0.011394962,0.032336146,0.017501406,-0.00784314,0.017266113,0.0062240916,-0.05678433,-0.006666669,0.0057703103,-0.015092442,0.0022114853,-0.058084056,-0.039148472,-0.017680679,0.013277316,0.034487408,0.0021918775,0.026308132,0.010268911,0.04376472,-0.0020518214,-0.0073053245,-0.025120458,-0.04053783,-0.012123253,0.00063655485,0.04199441,-0.01296359,0.00422129,-0.029042028,-0.024291325,-0.022610651,-0.014924375,0.07798322,-0.0034649873,-0.011221292,0.008464989,-0.013658268,0.008481796,-0.03661626,-0.026263315,0.004081234,0.0040280125,-0.026666677,0.031126061,0.016280118,-0.005462187,0.02657704,0.0028445388,0.005260506,-0.022812333,0.017098045,-0.010285717,0.0049215704,-0.021871157,-0.025075639,0.010179276,-0.019787122,0.023462193,-0.04116528,-0.017299727,0.02080673,-0.03184315,0.013557428,-0.039417382,0.040672284,0.013859949,0.016616253,0.016380958,0.034285728,-0.010997203,0.028840346,-0.041747913,0.009507006,-0.00026838246,-0.012593842,-0.03789357,0.013445383,-0.0015140062,0.024268916,0.01056583,-0.015495804,-0.016649866,0.05028573,0.03939497,-0.009826334,-0.0009978996,-0.012000004,0.019204488,0.0012205887,-0.01481233,-0.03424091,0.029266117,-0.016436981,0.032000013,-0.011187679,-0.012347343,-0.018498605,-0.022184882,0.050823547,0.03814007,0.02615127,0.011831937,-0.03029693,0.019966394,0.014431378,0.005092439,0.00004508055,0.06458265,-0.006750703,-0.011787119,0.0018445385,0.020358551,-0.013176476,-0.023081241,0.011361348,0.0020098046,0.009193281,0.033254914,0.011103645,-0.0030812335,0.009215689,-0.021344544,0.019574236,-0.006649862,-0.010128855,-0.008599442,-0.009518211,0.033165276,-0.007731095,-0.02155743,0.026621858,-0.016179277,-0.013445383,-0.023686282,-0.023596646,-0.03157424,-0.007064428,0.0077142883,0.003411766,-0.018621854,0.0060952404,-0.0025168075,-0.008386558,-0.008543421,0.020773116,0.0047619063,0.03966388,0.019675076,-0.0039355755,-0.012302525,-0.029803932,0.0011722693,-0.0012394963,-0.028212896,0.017915973,-0.015450986,-0.013310929,-0.010442581,0.035607856,-0.0100000035,-0.017266113,0.021691885,0.006941179,-0.013378156,0.002557424,-0.01001681,0.0042801136,-0.008526614,-0.023731101,0.0002300421,-0.027383763,0.014801126,-0.0057535036,-0.007266109,0.008308127,-0.0015476196,0.0076750726,0.035137266,0.038901974,0.017075635,-0.017422976,-0.0038963598,-0.0051764725,-0.06516529,0.023439784,-0.005490198,0.03442018,0.00041071442,0.017378157,0.0003956584,-0.004501402,-0.029893568,-0.026330542,0.00046463602,0.010778715,-0.022408972,-0.012358548,0.03164147,-0.006481795,0.0050728307,-0.057770327,0.009568631,-0.015529417,-0.02007844,0.008935577,-0.0014159669,-0.02592718,-0.0147787165,-0.000766807,-0.0077815154,0.018252106,-0.017277317,0.017501406,0.0017493003,-0.00397199,0.0272269,-0.0075518233,0.003899161,-0.04233055,-0.021848748,-0.011238099,0.032156873,0.025075639,-0.006991599,-0.05364708,0.031686287,-0.0056190495,0.016986,0.011753505,0.008638659,-0.0061456603,-0.01094118,-0.016728297,0.0010917371,0.0019313733,0.025658272,-0.014599445,0.011002805,-0.03834175,0.0078039244,-0.0011883758,0.014834739,0.033030823,0.005162467,0.0012009809,0.0076862774,0.003344539,-0.03179833,0.022196086,-0.0046918783,0.027563035,-0.0032268919,-0.012347343,0.008795521,-0.00031740207,-0.003851542,-0.010817931,0.05947341,0.009574233,0.038476203,0.03309805,0.009736698,0.024291325,-0.010711488,0.00058193295,-0.024761913,-0.044571444,0.012425775,0.03636976,-0.02017928,0.012705887,0.027338944,-0.001071429,-0.02415687,-0.0029495808,0.023932781,-0.04069469,0.020336142,0.015865551,-0.024672277,-0.0013760509,-0.028683484,-0.03029693,0.025971998,-0.002882354,-0.01039216,0.018319335,0.03314287,-0.010868351,-0.005028013,0.002375351,-0.024873959,0.03439777,-0.0026134462,-0.00090336165,0.0013473394,-0.01930533,0.028145669,-0.049837552,-0.01338936,-0.022442585,-0.033299733,-0.0071372576,-0.012123253,-0.024873959,-0.015372555,-0.03504763,0.0058935597,-0.016190482,0.0038879565,-0.051809542,0.0036946791,0.004893559,0.0137367,0.034330543,-0.013994402,-0.0083585465,-0.024112053,0.0089916,-0.039977606,0.00454622,0.008061628,0.027719898,0.0013907568,-0.000801821,0.016392162,0.023372557,-0.0028039226,0.013400565,-0.004148461,0.022431381,0.0008872552,-0.0392157,-0.018319335,-0.03264987,-0.042106457,0.011518211,0.018039223,-0.016179277,-0.018464992,0.018801127,-0.054050438,0.03881234,0.00057458004,0.01393838,0.008655465,-0.021591043,0.030655473,0.009025213,-0.019529419,0.018397765,0.0040056035,-0.017131658,-0.0069803945,0.015932778,-0.011943982,-0.016997205,-0.0054958,0.018969195,-0.018845946,-0.014084038,0.024582641,-0.021703089,0.038005617,-0.031731103,0.0004488797,-0.037535027,-0.004501402,-0.022621857,0.02415687,-0.0029635865,-0.04233055,-0.02919889,0.0062184897,-0.06789918,-0.010224093,0.008145661,-0.0018599447,0.014498604,0.018285722,0.0062184897,-0.0274734,0.009703085,0.018980399,-0.0011043422,0.01926051,0.0049719904,-0.02003362,-0.00031985305,0.03332214,-0.012392161,0.02082914,-0.011462189,-0.013221293,-0.009563029,-0.0072773136,-0.0039355755,0.006156865,0.0017717093,0.0011778716,-0.009960787,-0.00062675093,0.03966388,0.013792722,-0.034285728,-0.0059887976,-0.019473396,0.017635861,-0.0015560229,-0.035675082,-0.034778725,0.015495804,-0.024717096,0.02485155,-0.0051568644,0.033501413,-0.004918769,0.015764711,-0.03701962,-0.037960798,-0.038072843,-0.01061625,0.026599448,-0.032986008,-0.01928292,0.01928292,0.016829137,0.0050364165,0.021008411,-0.005011206,0.0031176482,0.017546225,0.006296921,-0.00089495827,-0.025479,-0.057411786,-0.035361357,-0.028235303,-0.01361345,0.022140063,0.03009525,-0.016201686,0.017770315,-0.012504206,-0.015697485,0.0227339,-0.05163027,0.008588239,-0.0022661071,-0.008677874,-0.011299724,-0.0086890785,-0.06274512,-0.0012584038,0.044302538,-0.01208964,0.028280122,-0.032112055,0.028459394,0.0036610656,-0.000098651995,0.027988805,-0.021008411,-0.009994402,-0.016302526,0.0060560247,-0.031014016,0.0007808126,0.021994406,0.027316537,0.0021008411,-0.02724931,0.0036526623,-0.01536135,0.020537822,-0.0030112055,0.01818488,0.013882358,-0.003229693,-0.02233054,-0.038655475,-0.013691882,-0.0002205883,0.027361354,-0.016963592,0.021960791,-0.032380965,0.005904764,-0.023843145,-0.0135126095,-0.02013446,-0.008324933,-0.0021372556,-0.0004411766,0.020044824,-0.021871157,0.012436979,-0.0062408987,0.00931653,-0.010817931,-0.004033615,-0.003759105,0.058666687,-0.019103648,-0.008756306,-0.0037254915,-0.012056027,0.010263309,0.021803929,0.01393838,-0.029042028,-0.022901969,0.024739504,0.034890767,0.006016809,-0.0071372576,-0.023708692,0.028526621,0.005103643,0.027114855,-0.014375355,0.033815138,0.023148468,-0.005605044,-0.000020789574,-0.01808404,-0.00026243005,0.0072997226,0.010907567,-0.003319329,-0.005787117,0.017703088,-0.025299728,0.029310934,0.014890761,0.03273951,-0.0050000018,0.0061064446,0.021770315,0.009406166,-0.014498604,0.006599442,0.013400565,-0.0062408987,-0.010173673,0.008610647,0.015697485,0.015563031,0.016313732,0.0056554643,-0.015753508,0.027137265,0.006487397,-0.0031484605,0.0212325,0.020986002,0.012358548,-0.008481796,0.009848743,0.04723811,-0.005764708,0.024224099,-0.0060112067,0.018151267,-0.016773116,-0.0043529426,-0.0060560247,0.008521011,0.0074677896,0.015271714,0.019327737,0.0058711506,0.007703084,-0.004633055,0.017266113,0.04029133,-0.009759107,0.021344544,-0.0046918783,0.015563031,-0.013893562,0.024089644,0.0057591056,-0.013803926,0.022397768,0.040672284,0.00040336148,-0.009400563,-0.01840897,-0.02233054,-0.010431376,0.032873962,0.003915968,-0.04315968,-0.021042025,-0.0045126067,-0.013523814,-0.031753514,-0.019092444,-0.017635861,0.00081512635,-0.0066050445,0.018196085,-0.018095244,-0.0048347358,-0.0042577046,-0.03574231,0.012145663,0.018431379,-0.003873951,-0.004616248,0.04011206,-0.00696919,0.022834742,0.02078432,0.029714296,-0.03312046,-0.013456588,-0.039350152,-0.033725504,0.017198885,0.010997203,0.02742858,0.011126054,0.016739503,0.008633057,0.025971998,-0.012000004,-0.025210094,-0.03616808,0.011232497,0.025613455,0.006588238,-0.019114852,-0.017815132,0.0013921574,0.002145659,0.0124817975,0.038229704,-0.065658286,0.029288525,0.011400565,0.01960785,-0.038207296,0.003915968,0.010302525]},{"id":"interface-GatewayChannelRecipientAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelRecipientAddDispatchData\nDescription: CHANNEL_RECIPIENT_ADD — channel_id, user (group DM)\nProperties: channel_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayChannelRecipientAddDispatchData"},"embedding":[0.012213634,0.007253637,0.0065483428,0.04330393,0.031377,0.015780244,-0.031032953,0.056652915,-0.02040193,-0.04747835,-0.035666104,0.008268573,0.0022936403,0.03756983,0.02722551,-0.022512078,-0.0077238334,0.034060556,0.0013023576,0.060276866,-0.02346394,0.052937217,0.031193508,0.021537282,-0.023452472,0.0047220318,-0.0028957208,0.020837722,-0.02378505,-0.016491273,0.013050813,-0.02276438,0.020826254,0.010516341,0.0146678295,0.028670503,-0.009627555,0.043831464,-0.044336066,-0.024977742,-0.03894601,0.001364716,0.011485403,0.031101761,-0.04596455,0.015745841,-0.032913737,0.0110496115,0.011405126,-0.014335251,-0.00908855,-0.020493675,0.0037759054,0.06146956,0.05266198,0.0024986344,0.044267256,-0.018934,-0.051744524,0.004463997,-0.028257648,-0.022282716,-0.0012249473,-0.028509948,-0.0098110465,-0.023922667,-0.033143103,0.0533042,0.020573953,0.005008737,-0.0017546348,-0.016560083,-0.019656496,-0.008916526,-0.021629028,0.02672091,-0.028785186,-0.025023615,-0.003830379,-0.01746607,0.007637822,0.036927607,-0.059405282,-0.062845744,0.000065762964,-0.02428965,-0.044657174,-0.015287112,-0.007351117,-0.019862924,0.026927337,0.011542745,-0.037707444,0.033257782,-0.0156196905,-0.03073478,0.019874392,-0.0057111643,-0.027844792,0.033693574,0.03876252,-0.08325914,-0.044771858,-0.03621658,0.036744118,-0.06133194,0.028165903,0.019335387,-0.0480747,-0.023074022,-0.008899325,-0.019622093,0.0014629124,-0.02600988,0.0072479034,-0.0042059626,0.07702044,-0.043831464,0.016628891,0.023177234,-0.04330393,0.005642355,0.026537418,-0.036377136,-0.051928014,-0.011594351,-0.0017345655,-0.052937217,-0.06050623,-0.011192964,0.049267393,-0.0261475,0.0074944696,-0.014897194,0.016743574,-0.029863195,-0.035436742,0.02396854,-0.042661708,-0.03846435,0.012270975,-0.031721044,0.030436605,0.030230178,-0.023337789,-0.017351389,-0.06169892,0.030046687,0.034335796,0.010057612,-0.0715157,0.057341006,-0.011181496,-0.0010880455,0.006663025,0.016078418,-0.021858392,-0.02378505,0.0071102846,-0.058304336,-0.0035092696,-0.08747944,-0.008062146,0.021846924,-0.034702778,-0.012867322,-0.0022635362,-0.014128824,-0.056285933,0.027982412,-0.024840124,-0.034450475,-0.054680385,-0.01504628,-0.0016399528,-0.010189497,-0.004217431,-0.012729703,-0.03316604,-0.013750373,0.01542473,0.024702506,0.016491273,-0.10422301,-0.030436605,-0.046308596,0.014816916,0.006909591,0.03259263,-0.012993472,0.014174697,0.00832018,0.00978811,0.01746607,-0.0030161368,-0.018142695,0.010436063,-0.02256942,0.024450205,-0.04277639,0.04277639,-0.038166173,0.018314717,0.0015138026,-0.009478468,-0.029633831,-0.015149494,0.0005809361,-0.024771314,-0.0049313265,0.020516612,-0.0061182855,0.0044181244,0.011399392,-0.047891207,0.040413942,-0.03002375,-0.0005723349,-0.02328045,-0.034129366,-0.028831057,-0.0034547956,0.022477675,-0.043395672,-0.0054531298,0.010401659,-0.0008529475,-0.000969063,-0.021514345,0.004550009,-0.0029258248,0.021296449,-0.014140292,-0.049771994,0.010665427,0.01173197,0.02926685,-0.0011905426,-0.0057885745,0.039863467,-0.017615156,-0.02626218,0.027867729,0.044542495,-0.0035035354,0.012362721,0.02294787,-0.022168033,-0.024266714,0.035872534,0.05527673,0.05637768,0.019599156,0.010269774,-0.020413399,0.002227698,0.026468609,0.0019481607,0.01504628,0.04534527,0.043693848,-0.056882277,0.016089886,0.053395946,-0.013050813,-0.019713838,0.035184443,0.02014963,0.026055753,0.02958796,0.00043615003,-0.033120167,0.06289162,-0.01287879,-0.03467984,-0.010803046,0.038716648,0.010911994,-0.024450205,-0.0028813856,-0.07188269,-0.0033401137,-0.011502606,0.04406083,-0.0044152574,0.047799464,0.010418861,-0.016021077,0.0020141029,0.015149494,-0.055322602,0.03793681,0.019656496,-0.06674493,0.004730633,0.041537825,-0.011261773,-0.019266577,0.04355623,0.024817187,0.005539141,0.04316631,-0.023234576,-0.06087321,0.031399935,-0.007345383,0.031010017,-0.013624223,0.03954236,-0.033670638,-0.0023767848,0.016628891,-0.011491138,0.015986672,-0.036400072,-0.004894055,0.023899732,-0.012982003,-0.04188187,0.02403735,-0.047294863,0.021112958,-0.023234576,-0.094589725,-0.00024782066,-0.0018062417,-0.021307917,-0.050964687,0.038923074,-0.0077180993,0.024817187,-0.03250088,0.009644757,-0.024427269,0.03309723,0.019530347,-0.047294863,0.028739313,0.0037128301,0.03016137,0.03195041,-0.012557681,-0.017672498,-0.018165631,0.015057748,-0.03245501,-0.0053671184,0.0035465413,-0.0043149106,0.009186029,-0.012936131,0.0019667966,-0.038418476,-0.04922152,-0.02532179,-0.015401795,0.031904537,-0.05706577,-0.025344724,0.016628891,-0.053487692,0.005025939,-0.015837586,0.025918135,0.021204704,-0.033991747,-0.027936539,0.013348986,-0.01975971,-0.03144581,0.00044941014,-0.030528352,-0.049450886,0.029404469,-0.011502606,-0.017110556,0.019048681,-0.017248174,-0.010625289,0.008205498,0.046400342,0.019323919,0.022512078,-0.00086226535,0.012477403,-0.01415176,-0.052753724,0.024656633,-0.02550528,0.023739176,0.017030278,-0.012775576,0.01728258,0.0027796053,-0.003973732,-0.012901726,0.05298309,0.008423394,0.027844792,-0.00406261,0.0084577985,0.0117090335,0.01631925,-0.0075460766,-0.02467957,0.006049476,0.0067662387,0.026950274,0.027890665,-0.016238973,0.034014683,-0.016124291,0.026399799,0.046148043,0.017385794,-0.019794116,-0.010751438,0.018062416,-0.0136815645,-0.003601015,-0.0013575483,0.0018349122,-0.018761978,-0.0028383797,0.017936267,-0.009753705,0.017133493,0.027867729,-0.018429399,-0.037592765,-0.025642898,0.02078038,0.049817868,-0.029289786,0.054909747,-0.010929196,0.035872534,0.0048539164,-0.037340462,0.026491545,-0.036170706,-0.007918793,-0.008899325,0.0010092017,-0.012959068,-0.011026676,0.030941207,-0.012064547,0.017592221,0.0045356737,-0.03977172,-0.05133167,-0.019473005,0.062020034,-0.041147906,-0.04087267,-0.013658628,0.08004805,-0.034886267,0.0071618916,-0.010493404,0.0026376862,0.007293776,0.054359272,-0.016927065,0.0016614556,0.013945333,0.04112497,-0.009025474,0.018188568,0.018739041,0.028028283,0.018463803,0.05133167,-0.05674466,-0.056285933,-0.0024197905,-0.018658763,0.008400457,0.0073339147,0.020608358,0.038028557,0.02244327,0.031124698,0.032936674,0.07215792,0.025482344,-0.0071618916,-0.011542745,-0.013910928,0.041835997,0.0023223108,0.040413942,-0.01106108,0.0011116988,-0.0075059375,0.043877337,-0.025665835,0.028280584,0.016537147,-0.021434069,-0.02607869,0.023578621,-0.037019353,0.036193643,-0.007689429,-0.036308326,-0.018727573,-0.034633968,-0.04672145,-0.00318816,0.016789448,-0.02147994,-0.02479425,-0.031927474,0.005619419,-0.04227179,-0.00012283519,-0.008452064,0.042294726,-0.009134422,0.020447804,0.007368319,0.019048681,0.0034748649,-0.0048023094,0.015183899,-0.08601151,0.0219272,0.0043607834,0.029152168,-0.01536739,0.007018539,0.054221656,0.0102468375,-0.021663433,-0.035643168,-0.009363786,0.02308549,-0.007935995,0.0008522307,-0.016651828,-0.013394859,0.01198427,0.024358459,-0.008148157,0.015115089,-0.01160582,0.016181631,0.005587881,-0.019300982,-0.018761978,0.0056882277,-0.017420197,-0.013578351,0.0266521,-0.011405126,-0.042936947,-0.018567018,-0.06215765,-0.021250578,-0.022041883,-0.02683559,-0.025207106,-0.042042427,0.05183627,0.0019280913,-0.018544082,0.0013718836,-0.007121753,-0.006049476,0.031331126,-0.009467,0.044634238,0.031354062,0.010665427,-0.030941207,0.023647431,0.015115089,-0.034840394,-0.03665237,-0.0575245,0.019599156,0.048992157,-0.0007626354,-0.00041643906,-0.01715643,-0.03199628,-0.019220706,0.036491815,0.0072192326,-0.010453265,0.013566882,0.016353656,-0.021950137,0.027844792,0.008452064,-0.020287247,-0.004727766,0.00806788,0.011192964,0.01205308,-0.03607896,-0.032317393,0.04839581,0.044106703,0.028853994,-0.00056839274,-0.030298987,0.004501269,0.019415665,0.03245501,-0.017546348,-0.011072548,0.001023537,0.0059462623,0.012259508,-0.010172294,-0.010688364,0.025780516,-0.02026431,0.0075518107,-0.014748107,0.021330854,-0.017695434,0.051744524,0.014966003,-0.016548615,0.051102303,-0.0336477,-0.016296314,-0.01753488,0.0038905872,-0.0266521,-0.02078038,-0.04149195,0.013922396,-0.002961663,-0.016124291,0.024404332,-0.0038275123,0.008377521,0.029656768,0.017236706,0.040551558,-0.038968947,0.0015023344,-0.011949866,-0.006393522,0.011336317,-0.037982684,-0.033234846,0.0647724,0.0059634647,0.02021844,-0.01575731,-0.03628539,0.06000163,-0.020413399,-0.007741036,-0.028097093,-0.0030878133,0.008927994,-0.0035006683,0.021915732,0.020103756,-0.03743221,0.029037485,-0.034221113,0.0328908,-0.009581682,-0.007465799,0.041033223,0.0022807384,0.008773174,-0.011198699,-0.021227641,-0.008176828,0.006536875,-0.01004041,0.045918677,0.0056767594,-0.036239516,-0.015906395,0.04500122,-0.02945034,0.05458864,-0.010080549,0.013968269,-0.0005805777,0.0057226326,0.020837722,0.031193508,-0.025734644,0.029977879,0.03195041,0.046904944,0.003199628,-0.0026606226,-0.02600988,-0.022156565,-0.00236675,0.00043220783,-0.0062329676,0.021697836,-0.004601616,0.004954263,0.0138650555,0.024335522,0.018830786,0.005969199,-0.0008830515,-0.02174371,-0.0002759536,0.028211774,0.0156196905,-0.040024024,0.020711571,0.007884389,0.025230043,0.015447667,0.03417524,-0.036996417,0.023360725,0.009082816,0.032110963,0.0068407822,0.0077180993,0.011301912,0.012809981,-0.004515604,-0.009862653,0.024060287,0.015355921,-0.047799464,0.007890122,0.005246702,0.007012805,0.002904322,-0.0032913738,-0.0015453402,-0.026950274,0.0010543577,-0.020665698,0.0055076038,0.004492668,0.017122025,0.017443134,-0.018624358,-0.0006336181,-0.024702506,0.005582147,-0.042294726,-0.012660895,-0.009742237,0.028487012,0.02289053,-0.018658763,-0.027615428,0.011221635,-0.0138650555,0.012959068,0.018085353,0.026032817,-0.03951942,-0.020665698,-0.02550528,-0.05449689,0.01715643,-0.0015639759,-0.031422872,0.0020786114,0.0035494082,0.009472734,0.023051085,-0.027386064,-0.044336066,-0.0266521,-0.041170843,-0.00082284346,0.008417659,-0.013039345,-0.005923326,-0.012156294,0.0042575696,-0.010384456,-0.027867729,-0.030551288,-0.024817187,-0.0058946554,-0.041308463,0.009180295,-0.031032953,-0.010699832,-0.024702506,-0.010332849,0.019966139,-0.08243343,0.02045927,0.040345132,0.015034812,0.0057168985,-0.01138219,0.020310184,0.03424405,0.0028756515,-0.06495589,-0.00406261,-0.0075690127,-0.0075059375,-0.034404602,0.03403762,-0.026399799,0.012007207,0.010768641,0.040849734,0.014461402,-0.018532613,-0.011445265,-0.005028806,0.01599814,-0.015355921,-0.0070529436,0.00061569904,0.022901997,0.038212046,-0.039932277,0.052386742,-0.0023481143,-0.008704364,0.009226168,-0.012603553,0.027386064,0.006393522,0.0003275605,-0.02230565,-0.033257782,0.0078729205,-0.012076016,0.0053155115,0.0045213383,-0.031973343,0.026124563,-0.025207106,0.023670368,-0.017064683,0.02633099,-0.022615293,-0.046010423,0.019358324,0.011227369,-0.011651693,-0.0032827726,-0.029610896,0.040712114,-0.008108018,-0.044725984,0.03016137,0.021342322,0.014530211,-0.019897329,0.000406046,-0.04059743,0.021720773,-0.023337789,0.009352318,0.0475701,-0.013784778,0.045551695,0.005412991,0.046813197,-0.0055477424,0.033257782,-0.011399392,0.030321924,-0.0024040218,0.027707174,0.013199899,0.039725848,-0.011571415,0.021227641,-0.009191764,0.007987603,-0.032248583,0.003426125,0.010625289,0.0066400887,0.011846652,-0.017064683,0.008618353,0.0043579163,0.016181631,0.015986672,-0.033143103,-0.008234168,-0.019610625,-0.02607869,0.03341834,0.00075761805,-0.04775359,-0.024450205,0.0032368999,-0.018257376,0.005020205,-0.011628756,-0.0074313944,0.039748784,0.0056681586,0.009335116,-0.025826389,-0.01160582,-0.0021502876,-0.00924337,-0.022959339,-0.00075188396,0.008136689,-0.006146956,-0.02958796,-0.0194386,0.03869371,0.015791712,0.0057341005,0.028097093,0.033877067,-0.0430975,0.011485403,-0.002432692,-0.024335522,0.020069351,-0.0056566903,0.027431937,0.0156885,0.032753184,0.0025201372,0.0071504232,-0.08169947,-0.014209101,0.0061125513,0.028028283,-0.03628539,-0.00988559,0.018475272,0.003990934,0.005011604,-0.0060150716,0.008933729,-0.014977471,-0.017970672,-0.016743574,0.015642626,-0.01205308,0.0028727844,0.034817457,-0.022145096,0.041285526,0.005934794,0.025138296,-0.0048510493,0.023074022,0.027638365,0.034404602,-0.03403762,-0.025413534,-0.022615293,0.009059879,-0.029129231,-0.013658628,-0.014644893,0.0010593751,-0.009300712,0.024908934,-0.047845334,0.0386249,0.019851455,-0.009702099,-0.010178029,-0.007356851,0.015332985,0.0038619167,0.01138219,-0.013360455,0.022982275,0.014014142,-0.0018291781,-0.02219097,0.00016476579,-0.015562349,-0.031399935,0.01803948,0.038808394,-0.0134980725,0.0059577306,-0.014289379,-0.007861452,0.027959475,-0.018417932,-0.03181279,0.0051549566,-0.0043407143,0.019473005,-0.006846516,0.01434672,0.013108154,-0.0019667966,0.00040927142,-0.024840124,-0.0009590283,0.024725443,-0.0006608551,-0.024404332,-0.013543946,-0.011227369,0.018761978,-0.014690766,-0.0013539646,-0.008910792,-0.0064107245,-0.029496213,-0.0074830013,-0.0072192326,0.04534527,-0.0029501948,-0.0053327135,-0.04692788,-0.02633099,-0.028487012,-0.010120688,0.0137045,-0.010533542,-0.01823444,0.009644757,-0.0052008294,-0.027133765,0.007012805,0.028211774,-0.0066974293,0.048304062,0.014358188,0.020608358,-0.02862463,-0.034955077,-0.0012851553,-0.019679433,-0.007855718,0.025115361,-0.006966932,0.01631925,-0.01791333,0.0007533175,0.009707833,-0.00403394,0.015516477,-0.0018019411,-0.01676651,-0.0047965753,0.019300982,-0.00007942625,0.04174425,0.010350051,0.019679433,0.0065712794,-0.005992135,-0.02301668,0.013211368,0.010843184,-0.008555278,0.0134980725,0.0533042,0.017167898,-0.005137754,0.011617288,0.0034547956,-0.0026018482,-0.0006859418,0.037523955,0.0020055017,0.029312722,-0.00784425,-0.0066400887,-0.036996417,-0.021021213,-0.0034375933,-0.013222836,-0.01938126,0.014449934,-0.011210167,-0.03467984,0.031652234,0.034817457,0.011301912,-0.027087891,0.0146678295,-0.019564752,-0.010636756,-0.021434069,0.037982684,-0.030574225,-0.00039923674,0.0075976835,-0.025918135,-0.01696147,0.035711978,0.034725714,0.01855555,0.010097751,0.010946398,-0.0010314214,-0.0034576626,-0.0657816,0.037317526,0.023062553,-0.0046360204,0.016433932,-0.03883133,-0.018314717,0.00991426,-0.0023825187,0.008308711,0.029702641,0.00602654,0.013566882,0.007477267,-0.0062501696,-0.011559946,0.01575731,0.007683695,-0.022592356,0.043946147,-0.029106295,-0.031170571,-0.0033515817,-0.011823716,0.039886404,-0.044473685,0.034404602,0.033578895,-0.008830515,-0.028097093,0.00650247,0.015332985,0.03940474,0.0020485073,-0.012442999,-0.0031623566,-0.0019022878,0.0021302183,-0.028853994,0.056331806,0.0063533834,0.017970672,0.028211774,0.016410995,-0.0004787974,-0.005510471,0.06169892,0.008761706,-0.010900525,0.004142888,0.051377542,0.02410616,0.014289379,-0.016307782,0.0008113752,0.0052323667,0.00079058914,0.02021844,-0.036262453,0.0054473956,-0.0033458476,0.0025617094,0.008549544,0.0015338719,-0.017351389,0.026537418,-0.034794524,0.022913465,0.015550881,-0.02097534,0.01925511,0.016502742,0.013945333,-0.052295,0.00505461,-0.013371923,-0.03151462,-0.010132155,-0.005298309,0.0020384728,-0.025459407,0.021663433,0.006714632,-0.042661708,-0.009197498,-0.02396854,-0.046308596,-0.01377331,-0.023922667,-0.0001820577,0.02536766,0.032179773,-0.04954263,-0.008813312,0.008790377,0.008515139,0.036927607,0.018991342,-0.014736638,-0.023555685,-0.014530211,-0.007179094,-0.010315647,0.034909204,0.014599021,0.006261638,-0.015642626,0.0038561826,0.012385657,-0.012615021,0.005811511,-0.007184828,-0.0033200444,0.001240716,0.0019524613,0.004105616,-0.05201976,0.02729432,0.053258326,0.0053097773,-0.016433932,0.009650491,0.0052696383,-0.043716785,0.035413805,0.022007478,0.015080685,-0.0077180993,-0.036400072,0.037271652,-0.006318979,-0.024174968,0.005238101,-0.0022018945,0.016674764,0.0032598362,-0.0030419403,-0.011611554,0.02174371,-0.0004956413,0.033601828,0.047845334,0.016388059,-0.03080359,0.008039209,-0.01784452,0.003707096,-0.021376727,-0.017190835,-0.024519015,-0.033968814,0.007953198,-0.012156294,-0.009203232,-0.02371624,0.0055993493,0.004724899,-0.008916526,0.0133145815,0.0038963214,0.019989075,0.02805122,0.029977879,-0.026124563,-0.009254838,0.042432345,0.0049341936,0.023578621,-0.010023208,-0.0042002285,-0.010602352,0.032042153,-0.01938126,0.00022130045,-0.014289379,-0.010659693,-0.0446113,0.008377521,0.024977742,-0.027156701,0.0016456869,-0.008813312,0.023418067,-0.023418067,0.018635826,0.018463803,-0.01925511,0.0053355806,-0.027317256,0.017076151,-0.025780516,-0.04474892,-0.017626625,0.015814649,-0.035230312,0.02823471,-0.006771973,-0.012660895,0.01606695,0.018601423,-0.021193236,-0.032248583,-0.025207106,0.0035723448,0.011175762,-0.014862789,-0.01689266,-0.016950002,-0.0056796265,-0.014656361,0.0003085663,0.00717336,0.026927337,-0.020252842,-0.009495671,-0.0013697332,0.018842254,-0.031354062,-0.0037328994,-0.011869588,-0.058625445,0.0041314196,0.026812654,0.00806788,0.045368206,-0.009518607,-0.01230538,0.009839716,0.02072304,0.02467957,0.0075059375,0.005691095,-0.0046302862,-0.016732106,-0.026170434,0.00637632,0.027523683,-0.0045557427,0.043946147,-0.017615156,0.051744524,-0.023234576,0.029289786,0.03234033,-0.02575758,-0.01587199,-0.025275916,0.0059061237,-0.03568904,0.0035207379,0.03545968,0.03066597,0.014071483,-0.008790377,0.0012615022,0.01855555,0.020986808,-0.009547277,-0.0010787277,0.019897329,-0.01779865,0.005349916,-0.039496485,-0.01106108,0.025046552,-0.0052323667,-0.01975971,0.025803452,0.008463533,0.038647838,0.025964007,-0.009358052,-0.02321164,-0.027500747,-0.028005347,-0.004211697,-0.0099199945,-0.014748107,0.0010393057,0.019335387,0.01931245,-0.020356057,-0.015298581,-0.012637958,0.008710098,0.006955464,-0.024885997,-0.0021459872,0.006370586,0.0056882277,0.030115496,0.03825792,-0.039496485,0.020768913,-0.0049829334,0.0064565972,-0.01093493,0.007895856,0.02926685,0.008555278,0.018532613,0.010286977,-0.02346394,0.03869371,0.014243506,-0.026468609,0.0014277911,-0.018028012,-0.0032053622,-0.006559811,0.0126952985,0.0047335,-0.012764108,0.031239381,0.007947464,0.021640496,-0.0016012476,0.020252842,-0.021193236,-0.00056409213,0.037225783,0.007391256,0.0046474887,-0.014048547,0.018739041,-0.0010149358,-0.011737704,-0.0022405998,-0.00006208956,-0.0029932004,0.00570543,0.013406327,-0.0590383,0.00592906,0.020447804,-0.04468011,-0.027982412,0.025000678,-0.015298581,0.0047621704,0.011038144,0.044359002,-0.027019082,-0.0019481607,0.034909204,-0.021491408,0.0109406635,-0.02230565,0.011101219,0.001041456,0.02294787,0.011674629,0.017420197,0.021273512,-0.0014320916,0.046675578,0.008899325,0.03951942,0.025069488,0.013085217,-0.002487166,-0.0005189361,0.00911722,0.059818137,-0.0017804382,0.022145096,0.0076148855,0.034702778,0.008492203,0.012660895,-0.014014142,-0.02308549,-0.016021077,0.033051357,-0.016984407,-0.045735188,0.010418861,0.012844386,-0.0056824936,-0.042868137,-0.0137159685,-0.008778908,0.00027093626,0.021434069,0.02607869,-0.021434069,0.014988939,0.02339513,-0.016858255,0.010080549,0.04589574,0.0010213867,-0.023991477,0.037959747,0.008578215,-0.0026835592,-0.017557817,0.057707988,0.008314446,0.005923326,-0.046469152,-0.006554077,0.011290444,0.013956801,0.049267393,0.0052839736,-0.026858527,0.016915597,0.038739584,-0.0042059626,0.000036778878,-0.028280584,-0.014553147,0.021021213,-0.018773446,-0.006164158,-0.01848674,0.015183899,-0.013176964,-0.00889359,0.039817594,-0.023693305,-0.0065311408,0.013543946,0.0042977086,-0.03328072,0.0022879061,-0.0019639295]},{"id":"interface-GatewayChannelRecipientRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelRecipientRemoveDispatchData\nDescription: CHANNEL_RECIPIENT_REMOVE — channel_id, user (group DM)\nProperties: channel_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayChannelRecipientRemoveDispatchData"},"embedding":[0.021292407,0.018878408,-0.008894296,0.040709864,0.02742115,0.02863987,-0.035225634,0.061826494,-0.0075408164,-0.032178838,-0.005607274,-0.009661854,-0.00008161711,0.043006677,0.045233183,-0.0030995274,0.0074880836,0.028944548,-0.011202829,0.07706047,-0.02404624,0.057889096,0.008501729,0.020226028,-0.0123278,0.008618913,0.019909631,0.0024403653,-0.020753358,-0.0037938452,0.023507193,-0.023425164,0.043006677,0.0035184617,0.02262831,0.014460556,-0.016628467,0.031288236,-0.036467787,-0.008074006,-0.034920953,0.0062342105,-0.010722374,0.030186703,-0.024561852,0.035436563,-0.030842936,0.026718045,0.026858667,-0.025522763,-0.019370582,-0.010611048,0.0023202512,0.0673576,0.034006916,-0.0060057007,0.033772547,-0.012468421,-0.027139908,-0.0009220948,-0.02908517,-0.016019108,0.0052820873,-0.018925281,-0.016405817,-0.019452611,-0.019675262,0.06407643,0.0105173,0.0015321862,-0.018503418,-0.02065961,-0.025499327,-0.008618913,-0.020436961,0.0051590437,-0.014765236,-0.020788513,-0.01789406,-0.020308057,0.0047606165,0.027913326,-0.039163027,-0.036772467,-0.008085724,-0.022464251,-0.057982843,-0.008056428,0.012433265,0.0034012774,0.013335586,0.017026894,-0.021585368,0.007558394,-0.01908934,-0.055779777,0.011202829,-0.0016625538,-0.03576468,0.053998575,0.020952571,-0.07162311,-0.056904748,-0.013335586,0.02810082,-0.062295232,0.0010392792,0.02118694,-0.06609201,-0.016065981,-0.0016244688,-0.01585505,-0.01901903,-0.010323946,-0.0017343293,0.01983932,0.07495115,-0.03913959,0.03606936,0.031217925,-0.032061655,0.00008958198,0.01818702,-0.03778025,-0.059857793,-0.004517459,-0.007687297,-0.050858032,-0.06576389,-0.025874317,0.06079527,-0.018995592,0.008853282,-0.038577106,0.021925202,-0.013569954,-0.017026894,0.004306527,-0.029811714,-0.01735501,0.009386471,-0.027069598,0.022956425,0.027210219,-0.031217925,-0.010077859,-0.038952097,0.021550212,0.043030113,0.02307361,-0.05357671,0.036772467,0.009831771,0.008736097,-0.008150175,-0.0037557601,-0.0015336509,-0.017565943,0.0014691995,-0.05779535,-0.015726147,-0.08207596,-0.021257252,0.019030748,-0.043475416,-0.015597245,0.017530788,-0.0009748278,-0.042819183,0.021843173,-0.026858667,-0.03695996,-0.0625296,-0.03276476,-0.030749189,0.005244002,0.0101423105,-0.01270279,-0.026272744,-0.015526934,0.01878466,0.012878566,0.031897597,-0.094122514,-0.049358074,-0.039209902,0.009978252,0.010376679,-0.0073591806,-0.0008400657,0.028710179,0.012819974,-0.004391486,0.011835625,-0.0063162395,-0.026085248,-0.0045877695,-0.043334793,0.02660086,-0.04396759,0.04345198,-0.014566022,0.03173354,-0.001743118,-0.011976247,-0.016019108,-0.009714588,0.003577054,-0.02983515,-0.0031171052,0.025335269,0.0246556,-0.007909947,-0.0035272506,-0.031897597,0.026553987,-0.01473008,0.017401885,-0.01900731,-0.012527013,-0.013323867,0.0053904825,0.027163345,-0.027233656,0.01382776,-0.0007221489,0.0031405422,-0.0034012774,-0.034756895,-0.0071658264,-0.007933385,0.030022645,-0.004848505,-0.048936207,0.011097363,0.00042406106,0.01089815,-0.000260186,-0.01352308,0.015116788,-0.051420517,-0.035577185,0.008501729,0.0312648,0.011091504,0.009404048,0.029741403,-0.03051482,-0.020940853,0.02833519,0.05160801,0.06346708,0.013019187,-0.0075173797,-0.01871435,0.023483755,0.02901486,0.0076521416,0.021327563,0.039045844,0.05048304,-0.063326456,0.024374356,0.06004529,-0.0012787748,-0.0017211459,0.037077148,0.019042466,0.015175381,0.03065544,-0.0217963,-0.033842858,0.052264247,-0.015819894,-0.04401446,0.011952809,0.04832685,0.0069314577,-0.03531938,-0.0226869,-0.045467548,0.006193196,-0.005800628,0.031967904,-0.019733854,0.041834835,-0.016804244,0.005906094,-0.010558315,0.020683048,-0.032975692,0.03548344,0.016628467,-0.065857634,-0.015913643,0.035506874,0.0024711262,-0.027186783,0.017296419,0.0026688748,-0.0054930192,0.020401806,-0.037241206,-0.07340431,0.028382063,0.009960675,0.031827286,-0.0067908363,0.020167436,-0.023565784,-0.01736673,0.005651218,-0.009802476,0.022405658,-0.034616273,-0.013569954,-0.0039637624,-0.0069021615,-0.014261343,0.0067966958,-0.037334953,-0.009193117,-0.04884246,-0.085544616,-0.0058855866,0.0051356065,-0.017390165,-0.062013987,0.049264323,0.002104925,0.02915548,-0.029342975,0.00090158754,-0.018667476,0.025968064,0.025007153,-0.0671701,0.04621753,-0.01141962,0.01789406,0.046569083,0.0040662987,-0.012046557,-0.014390245,0.020038534,-0.025007153,-0.004499881,-0.013159809,0.0019833462,0.009691151,-0.005369975,-0.00383193,-0.038577106,-0.06773259,-0.020823669,-0.008484151,0.042256698,-0.0336788,-0.016569875,0.024022803,-0.032296024,-0.007447069,-0.011191111,0.014062129,0.02622587,-0.017917495,-0.045069125,0.023026736,0.00075364223,-0.03578812,0.008501729,-0.065342024,-0.040100504,0.023003299,-0.0004379767,-0.015351158,-0.010962601,-0.008161894,0.0011762385,0.0005796966,0.050764285,-0.0028446515,-0.0028959196,-0.009064214,0.001675737,0.00016460747,-0.04945182,0.025522763,-0.025335269,0.028897675,0.022710338,-0.01127314,0.032741323,0.0049861963,0.008595476,-0.011085645,0.019874476,0.024889968,0.020378368,-0.0048192088,0.037452135,0.025569638,0.014976167,0.007546676,-0.0284055,0.023811871,0.014214468,0.010540738,0.026530549,-0.02428061,0.04996743,0.00096677133,0.017835466,0.033186626,0.03013983,-0.051936127,0.0106520625,0.016651904,-0.015761303,-0.0063162395,-0.014038692,0.009603262,-0.009251709,-0.008706802,0.026530549,0.0015673414,0.014929294,0.027303968,-0.02254628,-0.070732504,-0.038459923,0.015948799,0.043287918,-0.036491223,0.03902241,-0.009404048,0.043686345,-0.0017797382,-0.059342183,0.0123278,-0.03021014,-0.018972155,-0.01571443,0.0008107696,-0.0046551507,-0.0055398927,0.03967864,-0.019733854,0.006111167,0.00030229916,-0.03681934,-0.0493112,0.004825068,0.057982843,-0.038436484,-0.06407643,-0.0012538731,0.07452928,-0.020542426,0.006169759,-0.0047166725,-0.007611127,0.027139908,0.06576389,-0.009743883,-0.0017709493,0.021667397,0.031663228,-0.011976247,0.017179234,0.02547589,0.030936683,0.03283507,0.035155322,-0.044436328,-0.054139197,-0.0015336509,-0.022405658,0.01209343,-0.0009579825,0.0275149,0.022440813,-0.008665787,0.01270279,0.025077462,0.07331056,0.019323708,-0.009298583,-0.031006994,0.024304045,0.05048304,-0.0011132519,0.038413048,-0.0116598485,-0.0010304904,-0.009034918,0.05432669,-0.027163345,0.042819183,0.0015761303,-0.009966534,-0.028147694,0.03817868,-0.030983558,0.013312149,-0.008993903,-0.051936127,-0.018702632,-0.027257092,-0.067498215,-0.006034997,0.020425241,-0.04396759,-0.020999447,-0.030069519,0.009532952,-0.04516287,-0.009415767,-0.023272824,0.047928423,-0.010499723,0.02171427,0.019757291,0.017940933,-0.018081553,-0.0033104594,0.021175222,-0.087044574,0.008829845,0.027468026,0.047881547,-0.013886352,0.00010857868,0.07157624,0.008595476,-0.024585288,-0.030069519,-0.004593629,0.028686743,0.011267281,0.008882578,-0.024538415,-0.015163662,0.013745731,0.024397794,-0.004989126,0.007447069,0.004763546,0.026671171,0.0014106072,-0.025827443,-0.006515453,0.008366967,-0.015222254,-0.013663702,0.021198658,-0.021163505,-0.0473425,-0.0076404233,-0.056764126,-0.034217846,-0.025194647,-0.012972314,-0.023811871,-0.03496783,0.037006836,0.0018603024,0.0027406502,0.00019738248,-0.016218321,0.013370741,0.03447565,-0.03262414,0.053389214,0.042280134,0.0049539707,-0.013558236,0.029507034,0.008747816,-0.0350147,-0.03419441,-0.058404706,0.011712582,0.057982843,-0.013476207,-0.014894138,-0.01939402,-0.046311278,-0.04312386,0.022815803,0.015644118,-0.036327165,0.009415767,0.008929452,-0.018890126,0.043030113,0.04267856,-0.011378606,-0.017202672,-0.006117026,0.024327483,0.027093034,-0.037522446,-0.013862915,0.05048304,0.04014738,0.037991185,-0.0027714113,-0.030749189,0.0075115203,0.028921112,0.032436643,-0.012737945,0.00015801584,0.004306527,-0.0010290255,0.0108219795,-0.020179154,-0.0017343293,0.027257092,-0.012655916,0.0079568215,-0.010634485,0.019933067,-0.009732165,0.04441289,-0.0041014543,-0.016499564,0.04307699,-0.04209264,-0.017554224,-0.01847998,0.004253794,-0.013968381,-0.000973363,-0.039655205,0.01577302,-0.00045628677,-0.034077227,0.0041395393,0.0055105966,-0.008396262,0.025499327,0.015093352,0.026553987,-0.050061177,-0.0172847,-0.008431418,-0.021222096,0.013171528,-0.028569559,-0.03238977,0.056482885,-0.00053392147,0.015538652,-0.00998997,-0.033233497,0.06904505,-0.024491541,0.0044295704,-0.0023392937,0.020706484,0.007927525,-0.0048426455,0.008829845,-0.0075349575,-0.025897754,0.006327958,-0.04809248,0.038366176,-0.018233893,-0.004300668,0.05132677,0.0023392937,0.0038172822,-0.014659769,-0.030327324,-0.005947109,0.004977408,-0.006275225,0.026436802,0.0028607643,-0.033631925,-0.01924168,0.013862915,-0.023132201,0.052170496,-0.0105641745,0.00009750109,0.012444984,0.013136372,0.021503339,0.020706484,-0.0345694,0.022358784,0.019522922,0.0345694,0.017226107,0.01885497,-0.025452454,-0.037897438,-0.0016669482,-0.0058973054,0.0033866293,0.023800153,-0.0055135265,0.017776875,0.013441051,0.012351236,-0.0013710576,-0.009609121,0.009140383,-0.03674903,-0.024585288,0.01842139,0.0070076273,-0.04035831,0.026530549,0.011220407,0.010218481,0.019581513,0.03576468,-0.035717808,0.035131887,0.01630035,0.01480039,-0.0029559766,0.017788593,0.0047166725,-0.004373908,-0.006667793,-0.014741798,0.00097043335,0.011044631,-0.038155243,0.021292407,0.018726068,0.012597323,-0.008835704,-0.011396184,-0.00085031934,-0.00563657,0.013862915,-0.037311517,-0.015491779,0.005214706,0.016288633,-0.003600491,-0.0054813004,-0.0010854206,-0.03088981,0.0062928027,-0.04856122,0.012714508,0.0063982685,0.007200982,0.013780886,-0.02547589,-0.02104632,0.0067732586,-0.0013783816,0.0113258725,0.028850801,0.02540558,-0.0317101,-0.0043328935,-0.037920874,-0.04216295,0.03028045,-0.0028007072,-0.014413682,0.0021825596,-0.00025286197,0.007552535,0.01842139,-0.0246556,-0.028546121,-0.019112777,-0.050670538,0.0057039508,0.011911795,-0.0013849732,-0.011296577,-0.02225332,-0.0076462827,-0.01209343,-0.029132044,-0.023835309,-0.027444588,-0.0143550895,-0.033983476,0.0044588665,-0.00984349,-0.018843252,-0.019651825,-0.0054520047,0.021257252,-0.092622556,0.047975294,0.037288077,0.0022704478,0.005651218,0.00774003,0.012597323,0.036256857,0.02540558,-0.06220148,-0.007880651,-0.013159809,0.003275304,-0.03719433,0.05718599,-0.027749268,0.016733933,0.01202312,0.038670853,0.0126676345,-0.0075408164,-0.019698698,-0.0062869433,0.022979863,-0.021292407,-0.005478371,0.002223574,0.017003458,0.029647656,-0.037217766,0.040334873,-0.0025736624,-0.035530314,0.01721439,-0.012995751,0.030163266,0.003351474,0.0019555148,-0.01721439,-0.033186626,0.016921429,-0.020683048,0.0005364849,0.00172847,-0.04094423,0.016569875,-0.0251009,0.007991976,-0.0060760113,0.029647656,-0.029038295,-0.0317101,0.007529098,-0.003577054,0.0036854495,-0.023682969,-0.006890443,0.018022962,-0.018796379,-0.04584254,0.03466315,0.031147616,0.018585447,-0.01292544,-0.0010905474,-0.032436643,-0.009937238,-0.024304045,-0.0050067035,0.026249306,-0.015269129,0.019569796,0.012433265,0.05432669,0.00067417655,0.034381904,0.0020536566,0.034452215,-0.003995988,0.027866451,-0.018726068,0.029319538,-0.008284938,0.013956663,-0.013312149,0.016722215,-0.04553786,0.015374594,-0.0027611577,-0.0022807014,0.00082102325,-0.008062287,-0.0021225025,-0.009597403,0.0035126025,0.013710575,-0.029717965,-0.01405041,-0.01758938,-0.018081553,0.028874237,0.01248014,-0.056576632,-0.033397555,0.003260656,-0.023811871,0.016593313,-0.0011528016,0.0057947687,0.03524907,0.01420275,0.008331811,-0.026202433,-0.013312149,-0.0095505295,-0.016218321,-0.016487846,0.013792604,-0.00019866419,-0.0068670064,-0.04035831,-0.010376679,0.033022568,0.027397715,0.016042545,0.059529677,0.028546121,-0.01653472,0.010464568,0.039772388,-0.03524907,0.015644118,0.0000779551,0.01571443,0.011999683,0.028616432,-0.0010561245,0.014003537,-0.06440455,-0.016487846,-0.0029999209,0.025030589,-0.05409232,0.0060760113,0.018526854,-0.012691071,0.009404048,0.006117026,0.0034100662,-0.022276755,-0.0152808465,-0.009515374,0.0034833064,-0.00526158,0.023190795,0.036233418,-0.011677426,0.04131922,0.018468263,0.030913247,0.0062869433,0.020155719,0.01209343,0.016851118,-0.017073767,-0.016487846,-0.029999208,0.009497796,-0.024350919,0.012234052,-0.019030748,0.018058117,0.0046697985,0.026999287,-0.036280293,0.022030668,-0.0056102034,-0.015398031,-0.0034305735,-0.016241759,0.0138511965,0.0078044813,0.0035711948,-0.025874317,0.0072127003,0.02615556,0.012444984,-0.016523002,-0.0027626224,-0.011361028,-0.004877801,0.0383193,0.038272426,-0.008478292,0.020015096,-0.01818702,-0.0074060545,0.034405343,-0.025288396,-0.021210378,0.017155796,0.017706564,0.020085407,-0.0016918499,0.027678957,0.0053904825,0.0034276438,0.02225332,-0.02472591,-0.0020053182,0.021632241,0.002290955,-0.0065564676,-0.019710418,-0.0042508645,0.013909789,-0.008548602,0.0011967458,-0.0058738682,-0.00533482,-0.022522843,-0.013194964,-0.002044868,0.05568603,-0.0105173,-0.0076462827,-0.046264403,-0.027913326,-0.023624375,-0.0046258545,0.007681438,-0.007072079,-0.01578474,-0.003697168,-0.00736504,-0.026764918,0.025897754,0.03096012,-0.01202312,0.04253794,0.009814194,0.007945103,-0.016675342,-0.03255383,0.0054666526,-0.025358705,0.0018441896,0.032858506,-0.0049920557,0.0055105966,-0.012433265,-0.0062342105,-0.013394178,0.012632479,0.006046715,0.00007964877,-0.0003466095,-0.0004617798,0.040077068,0.0012604648,0.017050331,-0.00834353,0.0065916227,-0.0022836311,0.0072419965,-0.007921666,-0.00039549737,0.0184917,-0.010769247,-0.007464647,0.08024788,0.026999287,-0.023929056,0.0087185195,0.007318166,-0.020308057,-0.0051971283,0.040405184,0.00068626116,0.0123278,0.004051651,-0.010927446,-0.01682768,0.013335586,-0.009450923,-0.022862678,-0.018456545,0.002931075,0.0068670064,-0.05221737,0.015093352,0.029717965,0.005232284,-0.029038295,-0.0023392937,-0.020776795,-0.00011059278,-0.029764839,0.030678878,-0.037475575,-0.014003537,0.0030790202,-0.023120483,-0.021304125,0.01030051,0.030303888,0.026507113,0.017647972,0.0074529285,0.017343292,0.003448151,-0.060092162,0.048936207,0.028733617,-0.0019496556,0.0032489377,-0.03388973,-0.030046081,0.0070486423,0.013429333,-0.0051297476,0.015023041,0.0078162,0.012948877,0.00035558143,-0.023319697,0.007265433,0.0033866293,0.007915807,-0.025710259,0.02006197,-0.0383193,-0.027913326,-0.0045233183,0.0027684816,0.030022645,-0.05493605,0.026577424,0.023507193,-0.020237748,-0.043030113,-0.0074236323,0.011255562,0.019710418,0.0063924096,-0.008988044,0.0038758742,-0.0077986224,0.01750735,-0.024632161,0.054889176,-0.005352398,0.023577502,0.02479622,-0.00646272,0.003562406,-0.01900731,0.06192024,0.0061228853,0.008050568,-0.0041453983,0.04230357,0.034335032,0.010751669,-0.01375745,0.022194726,-0.0059558973,0.013605109,0.016183166,-0.030116392,0.0051561138,0.006245929,0.0023773788,-0.0085427435,0.0011872245,-0.019628389,0.027374277,-0.004930534,0.024749346,0.017003458,-0.008894296,0.002954512,-0.0032635857,-0.011390325,-0.053529836,0.013534799,0.015140225,-0.03478033,-0.009456782,-0.017003458,0.017718282,-0.023847027,0.012714508,0.011402043,-0.031897597,0.0036063502,-0.031147616,-0.049264323,-0.020085407,-0.021151785,-0.0070486423,0.025639948,0.0279602,-0.044131648,-0.024936842,0.006228351,0.010804403,0.018022962,0.0058211354,-0.012257489,-0.007857215,0.0048338566,0.0033192483,-0.004089736,0.036233418,0.0104821455,-0.00849001,-0.013359022,0.021409592,0.008577898,-0.015210536,0.008536884,-0.0135933915,-0.004983267,-0.0035038136,0.001675737,-0.0018734857,-0.048936207,0.0040399325,0.03712402,0.0027670169,-0.016745651,0.011941091,0.0050008446,-0.027233656,0.03321006,-0.0017606957,0.0036180685,-0.00030779216,-0.052873604,0.031967904,-0.007904088,-0.024749346,-0.012632479,0.0028109609,0.0156324,-0.00008431784,-0.019112777,-0.0060057007,0.013335586,0.0023788435,0.035670932,0.04553786,-0.0003149331,-0.024257172,-0.005545752,-0.031616352,0.01600739,-0.016874554,-0.019042466,-0.017624535,-0.029483596,0.004007707,0.015140225,-0.005507667,-0.025452454,0.013710575,0.0009191652,-0.018257331,0.022300193,0.014003537,0.0010685753,0.026038375,0.011689144,-0.00991966,-0.01073995,0.05245174,0.010892291,0.02810082,-0.006251788,-0.0052996646,0.0014867772,0.039116155,-0.013991818,0.0030204281,-0.021972077,-0.015456623,-0.043920714,0.0053172424,0.014566022,-0.026249306,-0.012011401,-0.015831614,0.022675183,-0.0137691675,0.030936683,0.012562169,-0.018351078,0.012855129,-0.038741164,0.0037235345,-0.011718441,-0.038342737,-0.0044383593,0.010862995,-0.04973306,0.023811871,-0.0033602628,-0.0046873763,0.024608726,0.015151944,-0.021081476,-0.024139987,-0.01457774,0.006404128,0.013628546,-0.031358548,-0.007909947,-0.004989126,0.00079612155,-0.034358468,0.026108686,0.012855129,0.043920714,-0.0045877695,-0.015796458,0.007575972,0.0018661617,-0.03681934,-0.0042215683,-0.015679274,-0.044834755,0.0018764153,0.025944628,0.009755602,0.04420196,-0.014601177,-0.011607115,0.018983874,0.0062810844,0.034358468,0.005536963,0.010558315,0.009363034,-0.00075217744,-0.012878566,0.0072947294,0.035295945,-0.0042596534,0.042725436,-0.0026688748,0.047811236,-0.035717808,0.019054184,0.013839479,-0.03712402,-0.017542506,-0.031124178,0.009275146,-0.031077305,-0.011044631,0.04335823,0.02307361,0.022651745,-0.009720447,0.0069021615,0.0074880836,0.012632479,-0.029389849,-0.008525166,0.01939402,-0.006943176,-0.010728233,-0.039467707,-0.0088005485,0.009187258,-0.0019057114,-0.02044868,0.04038175,0.0060174195,0.03524907,0.038741164,-0.019933067,-0.05184238,-0.009474359,-0.0135933915,-0.004034073,-0.009198976,-0.027936762,0.005947109,0.035717808,0.012421547,-0.023354853,0.0019921348,-0.006357254,0.01915965,0.009005622,-0.038202118,-0.0031024572,0.0038905223,0.010710655,0.02878049,0.04837372,-0.032272585,0.027913326,-0.0024550133,-0.011337591,-0.029788276,0.018819816,0.021808019,-0.0025883105,0.014460556,0.013370741,-0.032858506,0.037452135,0.010880572,-0.030421073,0.010236057,-0.018831534,0.0038084933,-0.009333738,-0.010488004,0.0026322547,-0.0067673996,0.034686584,0.026178997,0.009298583,0.009081791,0.023858745,-0.025897754,0.015655836,0.04223326,-0.003937396,0.008519307,-0.012140305,0.026249306,-0.000691388,-0.023847027,0.010874713,0.010833698,0.00021697425,0.00047349825,-0.0028666235,-0.048889335,0.0045350366,0.024679037,-0.039467707,-0.027561773,0.027866451,-0.01886669,0.0054754415,0.002832933,0.039514583,-0.040920794,-0.008115021,0.00022484758,-0.024304045,0.00020434031,0.0028475812,0.021526776,0.007411914,0.031803846,0.013312149,0.020718204,0.015737865,0.024561852,0.052545488,0.017015176,0.041928582,0.00916968,0.020976009,0.00420985,-0.0033631925,0.022733774,0.05915469,0.0066853706,-0.004297738,0.02239394,0.034358468,0.013101216,0.013124653,-0.018749505,-0.028264878,-0.015081633,0.026061812,-0.014132439,-0.044951938,0.0075056613,0.012995751,0.006831851,-0.06131088,-0.026788356,-0.0016698778,-0.0068728654,0.024327483,0.029061733,-0.014319935,0.021878328,0.01164813,-0.032506954,0.009931378,0.031077305,0.00032829944,-0.022569716,0.049264323,0.013874634,-0.0043592597,-0.017226107,0.043826967,0.006251788,0.0077986224,-0.029577345,-0.0029208213,-0.0029706247,0.013405896,0.020636175,0.009954816,-0.025124338,-0.014073847,0.054654807,-0.0052498616,-0.008484151,-0.022183008,-0.020952571,0.0055193854,-0.004772335,-0.001191619,-0.010013407,0.012890285,-0.0029354694,-0.00383193,0.06027966,-0.019054184,-0.019710418,0.0029134974,-0.0032284304,-0.024843095,0.0009191652,-0.0025282535]},{"id":"interface-GatewayChannelUpdateBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelUpdateBulkDispatchData\nDescription: CHANNEL_UPDATE_BULK — channels[]\nProperties: channels: APIChannel[]","meta":{"url":"/docs/typedefs/GatewayChannelUpdateBulkDispatchData"},"embedding":[0.032180298,0.004699253,0.021724606,0.019343032,0.01704278,0.053021982,-0.009990996,0.008236763,0.0029537333,0.009851586,0.007197002,0.002563097,-0.022630766,0.035084657,0.050326735,-0.00066328305,0.010972669,0.012000812,-0.041938946,0.009305567,-0.01930818,-0.0031686558,0.055438407,0.033272337,-0.01994714,-0.039499287,0.012895355,0.028857714,0.016624551,0.008788591,0.031878248,-0.030065926,0.069518745,0.020632567,0.009741221,0.019958757,-0.010031656,0.06501117,-0.0014035315,-0.03543318,0.023269726,-0.015578982,-0.0068020094,-0.0020954951,-0.037896078,0.03933664,-0.03241265,0.0010688042,0.0017890852,-0.000028294811,-0.02946182,0.0018631464,-0.034248203,0.0046876357,0.037779905,0.0040573897,0.015741628,-0.023095464,-0.024233973,0.012151839,-0.039081056,-0.011245679,-0.0076965517,-0.017414538,-0.0015393103,0.0071331062,-0.029694168,0.04791031,0.043751266,0.009508872,-0.04219453,-0.03008916,-0.010507971,-0.0032644998,-0.02379251,0.013313582,-0.006372164,-0.0047747665,0.013917689,-0.034015853,-0.023780894,0.056693092,-0.070169315,-0.050512616,0.014510178,0.017774679,0.01722866,0.004315878,0.009160349,0.028044492,-0.0045017567,0.020679038,-0.045517117,0.025256308,-0.014777379,-0.08178675,0.07002991,-0.01599721,-0.0012895354,0.01735645,0.03603729,-0.03176207,-0.030158866,-0.04098632,0.014475326,-0.07393337,0.0050739157,0.026859514,-0.04128837,-0.043425977,-0.02960123,-0.03022857,-0.019435972,-0.011826551,0.01056025,-0.019679938,0.03647875,0.015671922,0.053951375,0.024512792,-0.008143824,0.0065464256,0.013197408,-0.030065926,-0.022990907,-0.018518195,0.020225957,0.0013120442,-0.054601952,-0.021469023,0.059713624,-0.008608521,0.031692367,0.015602217,-0.007777874,-0.00155238,-0.014196508,0.04147425,0.011112078,-0.0032674042,0.04967616,-0.004100955,0.059945974,-0.007075019,-0.011019139,-0.00060265453,-0.04949028,-0.01590427,0.050884373,0.014091951,-0.08796723,0.040498383,-0.020098165,0.021503875,0.014347535,-0.00729575,-0.035409946,-0.0076036123,0.017135719,-0.0367111,0.0037989018,-0.057622485,-0.023711188,0.010688041,-0.032552056,-0.021794312,-0.01694984,-0.030786207,-0.0638959,-0.028021257,-0.0060120234,-0.048653826,-0.031018555,-0.025628066,-0.031785306,-0.0037233885,-0.032923814,-0.06872875,-0.028764773,-0.014428857,0.041172195,0.052975513,0.000582324,-0.061200656,-0.03808196,0.04967616,0.0129882945,0.044564486,0.048700295,-0.0027213846,-0.014556648,-0.0006095524,0.017693356,0.04791031,-0.00019295837,-0.049908508,-0.014533414,0.0039499286,0.061247125,-0.032970287,0.04038221,-0.04454125,0.0241178,0.015288547,-0.000095117764,-0.027138332,0.006906566,0.0140803335,-0.04537771,-0.006476721,0.052092586,0.031018555,-0.02593012,-0.020481542,-0.06831053,-0.013267113,-0.032784406,0.036060523,-0.07147047,-0.018785395,0.03150649,0.008242572,0.036594927,0.0005126194,0.010629955,0.040939845,0.0016351542,0.015032963,0.037129328,-0.028044492,0.023362665,0.031018555,-0.0011290696,-0.04519183,-0.02778891,-0.0035810748,0.010362754,0.00310476,0.02271209,0.029392116,-0.031901482,-0.03889518,-0.024512792,0.016485143,-0.013580783,0.016822048,0.012860502,-0.053672556,-0.016729109,0.043937147,0.025209839,0.010548633,-0.018750543,-0.028904183,-0.008585285,-0.00023035199,0.040242802,0.020016843,0.01849496,0.04609799,0.012883738,-0.024861315,-0.033829976,0.0054950477,-0.027300976,-0.02098109,0.05892364,0.0341785,-0.0256513,0.022874733,0.056646623,0.0074351593,0.047213264,-0.026139233,0.0029000028,-0.02488455,0.0076791258,-0.023664718,0.0013890098,-0.024303678,-0.054276664,-0.015369869,-0.011094652,0.026813043,-0.013847984,-0.0030670033,0.003961546,0.04382097,0.0153931035,0.010589293,0.00025612817,0.03385321,-0.009781882,-0.03847695,-0.0060817283,0.03341175,-0.0012706572,0.003598501,0.050605554,-0.0011762654,0.009549533,0.010734512,-0.006430251,-0.026371581,-0.009259097,0.008678225,0.018367168,-0.024210738,0.04356539,-0.033388514,0.039266936,0.023746042,-0.032970287,0.016868519,-0.04767796,-0.026348347,0.01971479,0.03856989,0.021492258,0.012663006,-0.037384912,0.015323399,-0.02569777,-0.04472713,-0.0062385635,-0.024721906,-0.007963753,-0.018250993,0.022839881,-0.027998023,-0.0027751152,-0.033969384,0.046492983,-0.0132903475,0.032296475,0.015253695,-0.002306061,0.021852398,-0.008085736,-0.0049228887,0.034782607,-0.010223344,0.02579071,-0.03329557,0.022909585,0.0018311985,-0.012140221,0.037361678,-0.013650488,0.030693268,0.02479161,-0.005474717,0.005175568,-0.035317007,-0.007446777,-0.033922914,0.013906072,-0.04396038,-0.022723706,0.025349246,-0.023908684,0.030298276,0.0073770722,0.008782783,0.0036362577,-0.021898868,0.012570066,0.020376984,0.0057709618,0.024489557,0.03856989,-0.029113296,0.0048967497,-0.0003946298,0.0064244424,-0.021155352,0.008806017,-0.01735645,-0.03866283,-0.04214806,0.0097934995,0.031204434,-0.0046440703,0.023258109,-0.0067787743,0.03394615,-0.06319886,0.028346546,-0.024721906,-0.007179576,-0.0017673025,0.0075978036,-0.015335017,-0.0038686064,0.010054892,0.018448489,0.0133251995,-0.004908367,0.0074409684,0.00064404163,0.024280442,0.009456594,0.01223316,0.028114198,-0.005863901,0.013023146,0.033783507,0.029090062,0.06059655,0.009845777,0.015625453,-0.0011936916,0.030135632,0.015486043,0.01813482,-0.006656791,-0.025326012,0.057436608,-0.050977312,0.03680404,-0.002369957,-0.030251805,0.010844877,0.045470648,-0.010722894,-0.026836278,0.03680404,-0.0057709618,-0.014777379,-0.031529725,-0.025906883,0.03204089,0.03236618,0.0064476775,0.05139554,-0.006598704,-0.0145682655,-0.03803549,0.015067816,0.007591995,-0.10018878,0.008765356,-0.034875546,0.009171966,-0.029647699,0.021829164,-0.0034416656,0.0208533,0.01513752,-0.016276028,-0.03594435,-0.029694168,-0.02960123,0.07281809,-0.051720828,0.024396617,-0.0070575927,0.038825475,-0.016415438,0.010002613,0.018099966,0.026813043,0.01513752,0.022723706,0.0028346546,0.029136531,0.0011218088,0.021817546,-0.03155296,0.042403646,0.013696958,-0.01649676,-0.01028724,0.05650721,-0.039987218,-0.036827274,-0.032552056,0.025140133,-0.0029406636,0.023769276,-0.027277742,0.011600011,0.0047747665,-0.001236531,0.04163689,0.07858034,0.030786207,-0.01078679,-0.0145915,-0.00602945,0.0007965205,0.000011957792,0.029577995,-0.011280531,-0.002580523,-0.03838401,-0.061758295,-0.003014725,0.049954977,-0.014963258,-0.004246173,-0.025116898,0.03589788,-0.035967585,0.06524353,-0.02836978,-0.038964882,-0.021236675,-0.043472447,-0.0392437,-0.0126862405,0.005224942,-0.0044494784,-0.02479161,-0.047817368,0.013081234,0.007382881,-0.015079433,-0.020469923,0.07555981,-0.0347129,0.015799714,0.01196596,0.013557549,-0.011623246,0.002473062,-0.012360953,-0.09767941,0.005338212,0.012883738,0.01944759,-0.034062326,-0.00092794275,0.06919345,0.002773663,0.0003672199,-0.0042635994,-0.010705468,0.021840781,0.02460573,-0.01708925,-0.0006843396,-0.021550344,0.043611858,0.033551157,-0.012000812,0.062083583,0.016125003,0.0067497306,0.010327902,0.033922914,-0.011234061,0.016752344,0.0060991542,0.009456594,0.04533124,-0.017844383,-0.025233073,0.017379686,-0.015230459,-0.03982457,-0.014835467,0.010496354,-0.028625363,-0.00752229,0.027393917,-0.00197206,-0.019958757,-0.018785395,-0.007673317,-0.02737068,0.03527054,0.0006683657,0.03698992,0.030762972,0.021991808,-0.00756876,-0.0062966505,0.015486043,-0.0039499286,0.0074351593,-0.08020678,0.034689665,0.050466146,-0.036339343,0.01599721,0.023316195,-0.019482441,-0.02778891,0.001293892,0.005062298,0.016217941,0.008922191,-0.0044349562,-0.0009664255,0.022967672,-0.0058000055,-0.013708576,-0.0134413745,0.026162468,-0.007690743,0.03952252,-0.02751009,-0.0029145244,0.013046381,0.036176696,-0.01509105,-0.012035664,-0.021852398,0.028973887,0.018053496,0.044471547,0.0045656525,-0.0059307013,0.013255496,-0.018645985,-0.031878248,0.027858613,0.022584297,-0.01513752,-0.0078940485,0.029020356,-0.0018616943,0.02002846,-0.009212627,0.06575469,0.011489645,0.0012263657,0.030670034,-0.021376083,0.0115419235,-0.0311812,0.00077982043,0.008922191,-0.06617292,-0.03461996,0.02855566,-0.049954977,-0.002531149,-0.015125902,0.027022159,0.015218842,0.003984781,0.008190293,0.038779005,-0.037175797,0.015335017,-0.017763061,-0.0004632453,0.031669132,-0.031111496,-0.031692367,0.030391214,0.017844383,0.020737125,-0.02016787,-0.044518016,0.020318897,-0.009839969,0.011623246,-0.004885132,-0.012674623,0.0145682655,-0.018413637,-0.0128372675,-0.0083471285,-0.030809442,0.02388545,0.0024382095,0.0139293065,-0.0020315992,0.013197408,0.026813043,-0.01473091,0.02230548,0.0010557346,-0.008335511,0.01904098,0.0040283464,0.03457349,-0.005988789,0.048189126,-0.045563586,-0.010554441,0.014986494,-0.02760303,0.026534226,0.021991808,0.00076021603,0.029508289,0.02121344,0.02869507,0.019912286,-0.00041096684,0.0048880363,-0.012790798,0.026301878,0.0075978036,-0.004083529,-0.0028433676,-0.025163367,0.01876216,0.003290639,-0.021039179,0.009863203,0.009224244,-0.022131218,0.010618337,0.012488744,0.0024135225,0.00734222,0.019075831,-0.041497484,0.0052046115,0.029833578,0.027951553,-0.06561528,0.0072841328,0.007731404,0.00648253,0.019459207,0.010746129,-0.02279341,-0.0016206325,0.03252882,-0.014893554,0.004071912,0.0241178,-0.025674535,0.014347535,-0.019889051,0.012906972,0.0015073625,0.0020272427,-0.023513691,0.0111934,0.017821148,0.022131218,-0.007632656,-0.0014579883,-0.008730504,-0.018471725,0.024907785,-0.013592401,0.023037378,-0.020156253,-0.0044030086,-0.0082309535,-0.022816645,0.023653101,-0.03331881,0.005840666,-0.056088984,0.047817368,0.0020040078,-0.010025848,0.024280442,-0.035293773,0.01468444,0.013708576,-0.037454616,0.0038192323,0.028927417,0.032575294,-0.038546655,0.0014688796,-0.058180124,-0.022212539,0.039359875,0.0145915,-0.048653826,0.018518195,0.023908684,-0.024071328,-0.0064941472,-0.0317156,-0.013348435,-0.059341867,-0.024698671,-0.013383287,-0.032157063,-0.0033603436,-0.015788097,-0.01024658,-0.0011435915,0.036316108,0.015032963,-0.027719203,-0.044169493,0.0069995057,-0.03403909,0.0024846792,0.008329703,0.0012902615,0.0010412128,0.015300164,0.042380407,-0.065336466,0.021004325,0.027812144,-0.014289447,-0.0016235368,-0.055391937,0.013673723,0.059992444,0.021387702,-0.058273062,0.031878248,0.025418952,-0.016729109,0.0036217358,0.0035868837,-0.0072260457,0.02760303,0.017379686,0.01237257,0.0104324585,0.0033661523,0.033434983,0.011745228,0.026929218,0.019099066,-0.013034764,-0.0018791204,0.013673723,0.0477709,-0.022770176,0.04581917,0.010293049,-0.0057215877,-0.001738259,0.008527199,-0.0063082683,0.019064214,0.02479161,-0.013673723,-0.07081989,-0.013313582,-0.009375271,0.003711771,0.0015320495,-0.01418489,-0.00861433,-0.015218842,0.006215329,-0.0004893845,-0.0067381132,-0.009369463,-0.033667333,0.028300077,-0.009903865,-0.00037012427,-0.012175074,-0.046283867,0.027928317,0.0011639219,-0.009915482,0.027835378,0.062780626,0.027022159,0.0073131765,0.006285033,-0.034527022,-0.008004414,0.0051407157,0.003461996,0.036292873,0.01704278,0.026766574,0.008259998,0.040684264,0.020237574,0.044680662,-0.014452091,0.0057622488,0.01862275,0.023722805,0.0071331062,0.008939617,0.026859514,0.0010499258,-0.010978478,0.0011719089,0.0017237372,-0.022189304,-0.01028724,0.0036594926,0.0128024155,-0.007760448,0.022096364,0.027208038,0.01780953,-0.012407422,0.025116898,-0.038546655,-0.051999647,-0.021201823,0.0497691,-0.0024353052,0.022990907,-0.034015853,-0.00036014055,-0.037733436,0.002157939,-0.0021317997,0.015451191,0.031343844,0.029531524,0.06877522,0.02660393,0.0044088173,-0.0073596463,-0.031088261,-0.015962359,0.008782783,0.037989017,0.002102756,-0.009253289,-0.0128024155,-0.019192005,-0.03259853,-0.019238476,0.042171296,0.0018108679,-0.016973075,-0.014335917,0.011977578,-0.023815745,0.007179576,-0.04382097,0.03336528,0.0071737673,0.010821642,-0.02116697,-0.015962359,-0.02502396,0.0142662125,-0.018007027,-0.028904183,-0.028997121,-0.01854143,0.033249103,0.0003200241,-0.039871044,-0.0078766225,-0.0023801224,-0.04405332,0.018657604,-0.04744561,0.007754639,0.019424355,-0.0057883877,0.028160667,-0.038546655,0.040033687,0.00870146,0.03032151,-0.01509105,0.04916499,0.033829976,0.010490545,-0.022235774,-0.001730998,-0.0024411138,-0.008480729,-0.030391214,0.013696958,-0.024373382,0.007348029,0.021387702,0.0080450745,-0.05655368,0.03708286,0.027277742,-0.037268735,0.044657428,-0.042612758,0.028393015,-0.009892248,0.029763874,-0.0059539364,-0.0014674275,-0.00852139,0.009828351,0.019343032,-0.004301356,-0.0442392,-0.027138332,0.044355374,0.0114083225,0.0088699125,0.010629955,-0.026023058,-0.00394412,-0.000059584745,-0.020365367,0.0014470969,0.04500595,-0.002166652,0.026673635,-0.018192906,0.0007870813,0.026998922,-0.015346634,0.0150561975,0.0023176786,0.03829107,0.033644095,0.01613662,-0.036409047,0.00582324,-0.018332316,-0.02356016,-0.023908684,-0.018367168,-0.0006945049,-0.0121983085,0.0056867353,-0.03403909,-0.022909585,0.06728819,-0.02243327,-0.014881937,-0.031855013,-0.022944437,-0.046400044,-0.0101129785,0.0065464256,0.0147541445,0.0040399637,0.021039179,-0.0025587403,-0.026998922,0.004414626,0.018378785,-0.0014158752,0.03719903,-0.0057361093,0.013580783,0.015706774,-0.042031884,0.0044785216,0.005805814,-0.033156164,-0.0010535563,-0.014463709,0.0070227403,-0.019087449,0.036339343,-0.011216635,-0.0064360597,0.028741539,-0.0026182798,0.0016090149,-0.0010317736,0.001091313,0.009967761,0.030414449,-0.02474514,0.006128198,-0.0090035135,0.012906972,0.013580783,-0.016415438,-0.0075978036,-0.016066914,0.007760448,0.022154452,0.038430482,-0.0035549356,0.0058668056,-0.0022494262,-0.006784583,0.008533007,0.027440386,0.0014899363,0.030693268,-0.010252388,0.017461007,-0.045215063,-0.042845108,-0.032203533,-0.019889051,0.010624146,0.0072260457,-0.016740726,-0.013487844,0.03694345,0.03589788,-0.0051000547,-0.018204523,0.00462374,-0.022363566,-0.014510178,0.0054921433,0.017623652,-0.012279631,-0.029113296,0.0049025584,-0.010298857,0.013894455,-0.015021346,0.015602217,0.011373471,-0.016217941,0.006953036,-0.016647786,-0.015079433,-0.03441085,0.027905082,0.004129999,0.009863203,-0.00032256538,-0.00956115,-0.043077454,0.020783594,0.0048880363,0.019784495,0.021062413,0.0069181835,-0.0078766225,-0.02479161,-0.0059307013,0.02397839,-0.0011276174,0.012453892,-0.009415932,0.03861636,-0.0016903371,-0.015625453,0.0011334262,0.0050303503,0.013871219,-0.010978478,0.028346546,0.013243878,-0.018889952,-0.04328657,-0.0042229383,-0.015950741,-0.0025296968,0.0030031074,-0.03580494,0.0033545347,0.00017435232,-0.0053178817,-0.014847084,0.070587546,-0.00089599483,0.002191339,0.015427956,0.0016003019,0.0065289997,-0.036641397,0.03441085,-0.02660393,-0.017263511,0.008079927,0.008846678,0.004858993,0.0085155815,0.03852342,0.0042229383,0.011843977,0.0024033573,0.015346634,-0.052464344,0.020644184,0.009619238,-0.019482441,-0.012848885,-0.021225058,0.012314483,0.038686063,-0.019819347,0.02655746,0.042659227,0.020237574,-0.01509105,-0.028578894,0.0037901888,-0.041729834,-0.003978972,-0.0064070164,-0.026371581,0.020005226,-0.017751444,-0.01042665,-0.013894455,-0.018158054,-0.022781793,-0.039266936,0.011756846,0.015439574,-0.017565565,-0.01577648,-0.029717403,0.028044492,-0.019250093,0.02760303,-0.018065114,-0.011460601,0.0023409135,0.027579796,0.022038277,-0.0005732479,0.0024846792,-0.020551246,-0.005312073,0.012628154,-0.0012350788,0.018750543,0.00082701625,0.03929017,-0.011704568,0.022328714,0.0114083225,0.0068194354,0.0024033573,-0.02266562,0.007406116,-0.0115244975,-0.022839881,0.0015698061,-0.054509014,0.009224244,0.04758502,-0.016636169,-0.012755945,-0.01291859,0.013418139,-0.036246404,0.037872843,0.008800209,0.0088350605,-0.014394004,-0.052324936,0.0037321015,-0.017612034,-0.026232172,0.020795211,0.0048880363,0.025093663,-0.010937816,-0.0021986,-0.009723795,-0.010258197,-0.02030728,0.02755656,0.02936888,-0.025860414,0.009799308,0.0109203905,0.016833667,0.0055705607,-0.011448984,-0.00071519846,-0.009770264,-0.031436782,0.016171472,0.003000203,-0.025906883,-0.015242077,-0.006598704,-0.022468122,-0.008538816,0.022723706,0.020040078,0.02551189,0.03485231,-0.017553946,-0.07244634,0.004600505,0.018088348,0.027486855,0.028811242,-0.0041445205,-0.015486043,-0.0082135275,0.03752432,-0.024164269,0.029647699,-0.010223344,-0.030925617,-0.0029856812,0.022781793,-0.0051871855,0.00023089655,-0.010531207,0.0014826753,0.005071011,-0.002054834,0.0117103765,0.0029943944,-0.03803549,0.021143734,-0.041567188,0.009131305,-0.00706921,-0.020609332,-0.038430482,0.019435972,-0.0035462226,0.0208533,-0.025744239,0.028532425,0.0005674392,0.018564664,-0.0078069177,-0.037872843,-0.024721906,0.01296506,-0.0072144284,-0.037013154,-0.0022305478,-0.004809619,-0.006883331,-0.0110598,0.011112078,-0.008672416,0.017263511,0.012314483,-0.010490545,0.006906566,-0.040521618,-0.022142835,-0.009410123,-0.023409136,-0.019586999,-0.0037785713,0.048467945,0.013139321,0.025000723,-0.0031686558,-0.012209926,0.045981813,0.007150532,0.037594024,-0.003136708,-0.0020649994,-0.027533324,0.016845284,-0.050744962,-0.00231187,0.031111496,0.009079027,0.022456504,-0.009752838,0.031157965,0.018146437,0.02361825,0.016647786,-0.020225957,-0.015892653,0.009706369,0.011309574,-0.017670121,0.019865816,0.008823443,0.024675436,-0.010815834,-0.0061223893,-0.008323893,0.020063313,0.019052597,-0.0047515314,0.028904183,0.004347826,0.009648281,0.01930818,-0.03838401,-0.004246173,0.034108795,0.00042585167,-0.024512792,0.04791031,-0.024141034,0.013836367,0.015404721,-0.011768463,-0.023037378,-0.01708925,-0.018564664,0.0023191308,-0.008225145,-0.008800209,-0.013209025,-0.0017455198,0.018227758,-0.022677237,-0.03942958,-0.008800209,0.01640382,-0.019645086,-0.009433359,-0.016427055,-0.0075164814,0.0034474744,0.031018555,0.03362086,-0.026069527,-0.016066914,0.009723795,0.01904098,0.014057099,0.014254595,0.011873021,0.015915887,0.010571867,0.010043274,-0.021898868,0.021782694,0.016345734,-0.02343237,-0.010780981,-0.0008124945,0.014672822,-0.0074583944,0.009526298,-0.0042665037,-0.02660393,0.0065348083,-0.006906566,0.012953442,-0.00062298507,0.027393917,0.013696958,0.009747029,0.015973976,0.0022624957,0.0075397165,0.020144636,0.022444887,-0.036618162,-0.025721004,0.0015407625,0.016938223,0.020040078,0.00802184,0.0067613483,-0.04251982,0.011826551,0.013209025,-0.037640493,0.008898957,0.028346546,0.0035665531,-0.017147336,0.00008068673,0.026766574,-0.026836278,-0.029856812,-0.0013606923,-0.002886933,-0.0024919403,0.010612529,0.0075571425,-0.019366266,0.020586098,0.028300077,0.0016946936,0.024721906,0.009026748,0.015404721,-0.005715779,0.031831775,0.019296562,0.0134413745,0.008103162,0.010368562,-0.03905782,0.046260633,0.005248177,-0.00041278204,-0.0035955966,0.03761726,0.0077662566,-0.033713803,-0.020005226,-0.02107403,-0.01291859,0.031901482,-0.00462374,-0.01880863,0.0036740145,-0.002612471,-0.040591326,-0.035688765,-0.032947052,-0.013406522,-0.031436782,0.0074003073,0.023862215,-0.0021317997,0.0013403618,0.024326913,-0.05869129,-0.0026371581,0.02397839,-0.007545525,-0.00050753675,0.033481453,0.035874646,0.019691555,0.031111496,0.046492983,0.0060120234,0.009665707,-0.0027402628,-0.022421652,0.035247304,0.0005224216,0.020098165,0.02121344,-0.005053585,0.009369463,0.024094563,-0.0063256943,0.022142835,-0.013069617,-0.0031802733,0.0311812,-0.004838662,-0.028207136,0.0053469255,0.019598616,-0.003825041,0.0056228396,0.006430251,-0.014696058,0.02257268,-0.011356045,0.028207136,-0.05687897,-0.013906072,0.03008916]},{"id":"interface-GatewayChannelUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayChannelUpdateDispatchData\nDescription: CHANNEL_UPDATE — full channel","meta":{"url":"/docs/typedefs/GatewayChannelUpdateDispatchData"},"embedding":[0.034710437,0.019815303,-0.016180253,0.01450348,0.0054250355,0.039973304,0.0010655774,0.017477611,-0.014417805,0.015666205,0.014797221,0.028933523,-0.06300752,0.035077613,0.027685123,-0.015494857,-0.006652018,0.010605287,-0.02014576,0.037452023,-0.05625147,0.0041490966,0.025482062,0.029080395,-0.0033290687,-0.045015864,0.02172462,0.016437277,0.007025314,-0.0050517395,0.034955222,-0.02724451,0.050376642,-0.015813077,0.021492075,0.03375578,-0.024123508,0.015433661,-0.028027821,-0.047561623,0.0011152992,-0.0027446458,0.0133407535,0.0078147445,-0.018383313,-0.0080411695,-0.030451188,0.021088181,0.00457135,0.005908485,-0.017857026,0.009699584,-0.0010158556,0.019313494,0.03434326,0.001921558,0.046068437,-0.010121837,0.00065938814,-0.021908209,-0.021345206,-0.0076066772,-0.016498473,-0.052579705,0.00007601705,-0.013181644,-0.03439222,0.03524896,0.04019361,0.002299444,-0.011688458,-0.0039838674,-0.02535967,-0.0155070955,-0.021626707,0.01657191,-0.030524623,-0.0070314337,0.030695971,0.0051465933,-0.024686513,0.036056753,-0.07358221,-0.06007011,0.012061754,-0.006474549,-0.048295975,-0.010978583,0.011559946,0.03231155,-0.010990823,0.049103763,-0.023780812,0.022006124,-0.020586373,-0.043547157,0.06266482,0.007924897,-0.0016905427,0.0031913775,0.038039505,-0.05106204,-0.0394103,-0.05010738,0.01922782,-0.062371083,-0.017440893,0.03767233,-0.026510157,-0.021553272,-0.029814748,-0.029031437,-0.047072053,-0.006208346,-0.018505706,-0.003277052,0.07216246,-0.032531854,0.050058424,0.022728238,-0.02976579,0.0057769134,-0.010519613,-0.030671494,-0.0014212799,-0.011143813,0.024515165,-0.01070932,-0.064818926,-0.017416414,0.056349386,-0.004963005,0.003974688,-0.0018481227,-0.007337414,-0.0060492363,-0.017661199,0.03576301,-0.021932688,-0.03608123,0.022813912,-0.011768013,0.052139092,0.007906538,-0.022483453,0.0014059808,-0.030157447,0.019178864,0.04462421,0.0052689854,-0.082541324,0.0703021,-0.0022902647,0.00440612,0.0099566085,0.025579976,-0.02127177,-0.02851739,0.0091243405,-0.019937694,0.015237833,-0.04805119,-0.038015027,0.0371338,-0.068931304,-0.060363848,-0.008946872,-0.023070935,-0.08626205,-0.013585538,0.02631433,-0.031283453,-0.02912935,-0.0038400562,0.03326621,0.0016415858,-0.031014191,-0.04193158,-0.05404841,-0.0252128,0.04983812,0.03764785,0.014479001,-0.043424763,-0.010060642,0.004302087,0.03581197,0.033462036,0.006902922,-0.024037834,-0.031773023,0.012838945,0.04978916,0.034465652,-0.0013333104,-0.05355884,0.024343815,-0.038088463,0.0592868,-0.03953269,0.03341308,-0.054586936,0.034930743,-0.018934079,0.0022810851,0.014307652,0.0007848402,0.01071544,-0.0532651,0.0060920734,0.026387766,0.037452023,0.0019246179,-0.0048559117,-0.059629496,-0.0014059808,-0.024821145,0.01165174,-0.036301535,-0.055859815,0.015188877,0.019656193,0.023866486,0.0038981927,-0.011933243,0.037476502,0.009314049,0.016412798,-0.005688179,-0.0029052857,0.0280523,-0.0012942979,0.009993326,-0.04141753,-0.022507932,-0.020549655,0.0066887354,-0.0233402,0.026583593,0.031626154,-0.03715828,-0.0064072334,-0.012435051,0.020219197,-0.03703589,0.007533242,0.01070932,-0.03436774,-0.03894521,0.041539922,0.048858978,0.037892636,-0.015421421,-0.038700424,-0.009491517,-0.0010074411,0.07480613,0.0010135607,0.016510712,0.05468485,0.029055916,-0.025139365,-0.03453909,0.026510157,-0.04085453,-0.021394162,0.06379083,0.025408627,-0.0114008365,0.019374691,0.03057358,0.0037207238,0.037256196,0.0048559117,-0.022006124,-0.012973577,0.024233662,0.003012379,0.013622255,0.0066581373,-0.037892636,-0.021651186,-0.012416692,0.034783874,-0.028664261,0.027856473,0.0048589716,0.00835327,0.032972466,-0.007918778,-0.035420313,0.01751433,-0.017453132,-0.042519063,-0.0057707937,0.061049245,0.008524619,-0.011994439,0.017722396,0.0021556332,0.006189987,0.022226429,-0.036179144,-0.04193158,0.015029767,0.028615303,0.07480613,-0.046264265,0.033951607,-0.051453695,0.009571073,0.0044703763,-0.023095414,0.02017024,-0.038798336,-0.004314326,0.031773023,0.046998616,0.0036778867,0.008726566,-0.012936859,0.013732408,-0.016327124,-0.05248179,0.013928236,-0.0035707934,-0.03706037,-0.017367458,0.043277893,0.0060859537,0.019827541,-0.022630325,0.038700424,-0.028933523,0.022838391,0.024233662,-0.048858978,0.014417805,-0.022887347,-0.036105707,0.0133407535,-0.024478447,0.01213519,-0.012379974,0.023034219,-0.0037237837,-0.019399168,0.014589154,0.010103479,0.038675945,-0.0046264264,-0.016584147,0.019399168,-0.04048735,-0.010268709,-0.022924066,0.045676783,-0.022728238,-0.028150214,0.0280523,-0.009699584,0.02947205,0.005795272,0.018346597,-0.012692074,-0.011143813,-0.017416414,0.02677942,-0.002851739,0.0052047297,0.0008337971,-0.04863867,-0.03307038,0.0019184982,-0.006964118,-0.03147928,0.015788598,-0.028297083,-0.010672603,-0.021406401,0.00002596054,0.05703478,0.018738251,0.017746873,0.006982477,0.043791942,-0.04991155,0.035469268,-0.02819917,-0.013830322,-0.015543814,-0.0010954104,-0.001041099,0.012116831,-0.028933523,0.020941311,0.020708766,0.029374136,0.029741313,0.0010609877,0.030793887,0.029888183,-0.0007148471,0.011988319,-0.03451461,0.042763848,0.034147434,0.036766626,0.06388874,0.013377471,0.03314382,-0.010464536,0.023976639,0.011786372,0.015250072,-0.025335193,-0.016951324,0.027317947,-0.030010575,0.044452857,0.018309878,-0.007826983,-0.0040573026,0.052237004,0.024821145,-0.030647015,0.021381924,0.016327124,0.030695971,-0.04535856,-0.029863704,0.037280675,0.028101256,0.007955495,0.05938471,0.011290683,0.008610293,-0.033682343,0.007894299,0.009271212,-0.0905213,0.01324284,-0.01685341,-0.0053485404,-0.04836941,0.033829212,-0.0068172473,0.013573298,0.0011650211,0.007135467,-0.037256196,-0.01386704,-0.020696526,0.056006685,-0.061196115,-0.00058251055,0.0071109887,0.06065759,-0.012630878,-0.008487902,-0.0017471492,0.0073986105,-0.0126064,0.062371083,-0.030035054,0.014013911,0.006431712,0.0075577204,-0.02173686,0.024784427,-0.016119057,-0.014797221,0.008726566,0.06501476,-0.024759948,-0.024233662,0.00014553202,-0.005421976,0.019435886,0.016792214,-0.034906264,0.008726566,-0.017232826,0.021932688,0.04401225,0.0529224,0.00053049385,0.0015520866,-0.0050150217,-0.01637608,0.014466762,-0.010109599,0.025702368,-0.012728793,0.00053164124,-0.021687904,-0.046435613,0.008622533,0.031601675,0.0024968015,-0.018554663,0.0052995835,0.041344095,-0.026681507,0.06193047,0.012594161,-0.018664816,0.010911267,-0.036815584,-0.042812802,-0.00993213,0.00834715,-0.004161336,-0.032262594,-0.04298415,0.0014426984,0.003246454,-0.013854801,-0.00022833802,0.0763238,-0.02001113,0.020133521,0.02944757,0.0056484016,-0.005544368,0.012392214,0.020121284,-0.12151101,-0.013316275,0.003448401,0.027611688,-0.03449013,-0.0037084846,0.053803626,-0.004837553,0.0017853967,-0.0022137696,-0.016425038,0.031283453,0.032287072,-0.009032547,0.0024233663,-0.02851739,0.014564675,0.03515105,-0.006853965,0.013255078,0.024796667,0.015164398,0.0028150214,0.020341588,-0.028174693,-0.0074414476,0.014479001,0.0055290693,0.04616635,-0.01857914,-0.049568854,-0.007104869,-0.0066703768,-0.009271212,-0.038529076,-0.020427264,-0.028346041,-0.010189153,0.024221422,-0.014723785,-0.010164675,-0.005106816,-0.009742422,-0.02900696,0.034881786,-0.006700975,0.04220084,0.051943265,0.013328514,-0.00267886,0.012545204,0.017991658,-0.017673438,0.010941866,-0.084352724,0.036742147,0.03250738,-0.031430326,0.016926846,0.009522116,-0.02427038,-0.03970404,0.02741586,-0.02379305,0.025335193,0.010886789,0.009210016,-0.010788876,-0.002065369,-0.0024845623,-0.015776359,-0.013940475,0.018468987,-0.012643117,0.031650633,-0.01512768,-0.027024206,0.012110711,0.05228596,-0.0034208628,0.012428931,-0.016314885,0.0062052864,0.010954104,0.03311934,0.018615859,-0.004617247,0.00027767738,-0.0012698194,-0.019619474,0.012557443,0.023058696,0.0064561903,-0.0024968015,0.01657191,0.0022902647,0.024453968,-0.022201952,0.07387595,-0.013267318,-0.021798057,0.032213636,-0.046949662,0.0045774695,-0.023523787,-0.0043541035,0.01860362,-0.048149105,-0.044330467,0.03311934,-0.051453695,-0.009974967,-0.02648568,0.019276777,0.021332966,-0.012863424,0.022410018,0.047023095,-0.047072053,0.026583593,-0.022924066,0.0076066772,0.025114886,-0.029398615,-0.047463708,0.035689574,0.018407792,0.03152824,-0.02567789,-0.037403066,0.05830766,-0.019252298,-0.011957721,-0.016804453,-0.010280947,0.009185537,0.0036319895,-0.018481227,0.013695691,-0.031430326,0.007312936,-0.013316275,0.027220033,-0.013377471,0.01403839,0.07152602,-0.00009184198,0.00882448,0.014099585,0.00897747,-0.01324284,-0.007380252,0.02001113,0.03135689,0.041270662,-0.05752435,-0.016094578,0.020549655,-0.01056245,0.042568017,0.004191934,0.0014832409,0.011394717,-0.00046929772,0.051747438,-0.00251822,-0.022152994,0.001119889,-0.014638111,0.04222532,-0.0039043122,-0.0048283734,-0.039189994,-0.02819917,0.02976579,-0.026191939,-0.0026926291,0.01654743,-0.010666483,-0.015372464,-0.016449517,0.025188321,0.012936859,0.030475667,-0.010642004,-0.028541869,-0.019949934,0.016204732,0.0051771915,-0.04552991,0.03608123,0.012826706,-0.008677609,0.01860362,0.031748544,-0.0044244793,-0.013756887,0.021944927,-0.016620865,-0.012214744,0.029031437,-0.028297083,0.005972741,-0.013989432,0.02614298,0.0040879007,-0.0025579976,-0.011957721,0.014368848,0.0040756613,0.010005565,-0.0059482623,0.006523506,0.008530739,-0.010501253,0.013426428,0.0035891521,0.036301535,-0.0059482623,-0.014295413,-0.008126845,-0.02979027,0.01657191,-0.0369135,0.0077168304,-0.054146323,0.015017527,0.0052108495,-0.0008269125,0.01573964,-0.025261756,0.016473994,0.0011413075,-0.0075577204,-0.015201115,0.018481227,0.024172466,-0.06946983,0.0015543813,-0.063839786,-0.035395835,0.017551046,0.016510712,-0.029423093,0.018811686,0.014075107,-0.008475662,0.00010422464,-0.024784427,-0.021345206,-0.03767233,-0.020206958,-0.0054097367,-0.026901813,-0.026191939,0.0032892912,-0.016988043,0.012777749,0.035469268,-0.00080243405,-0.021406401,-0.04472212,0.0068356064,-0.0116945775,0.0028792773,-0.00038668295,0.002756885,0.0012162728,-0.0032739923,0.046851747,-0.079016425,0.04540752,0.033315167,0.007215022,0.012985816,-0.045774695,0.0007450627,0.03904312,0.0447466,-0.051013082,0.03277664,0.026118502,-0.00093018095,-0.008396107,0.03245842,-0.0049844235,0.031626154,0.015482618,0.013536581,-0.012012797,0.00678053,0.011939363,0.006272602,0.046582483,-0.0012522255,0.00014161164,-0.0023116833,-0.021381924,0.037452023,-0.024686513,0.039287906,0.004586649,-0.00053776085,0.0052414476,0.00393491,-0.025065929,-0.012545204,0.025114886,0.005314883,-0.037256196,0.018823925,-0.010372742,-0.007545481,-0.006590822,-0.011388597,0.0012820587,-0.041858144,0.013585538,-0.009791379,-0.0055351886,-0.032262594,-0.028713217,0.008640892,-0.0081758015,0.0049568852,-0.0095282355,-0.026265373,0.01734298,0.021198334,-0.012630878,0.030132968,0.031797502,0.035346877,0.00054961763,0.018163007,-0.027660644,0.002694159,-0.0024922118,0.013316275,0.033510994,0.006079834,0.046313222,0.0076495144,0.010305426,0.00072899874,0.05958054,-0.018211965,0.009105982,0.01952156,0.03510209,0.025873719,0.016926846,0.0032556334,0.009148819,0.005321002,0.0114008365,-0.0065663434,-0.024392772,0.012465649,-0.009815857,-0.0014863007,-0.025310714,0.001982754,0.0028624483,0.01338971,0.013818083,0.00006320411,-0.027464816,-0.05091517,-0.012704314,0.048100147,-0.006853965,0.015078723,-0.06398666,-0.016363842,-0.0057126572,-0.012435051,0.0013914467,0.022813912,0.03500418,0.018334357,0.05243283,0.0031883176,0.0009011128,-0.014736025,-0.02741586,-0.021895971,0.005642282,0.018934079,-0.010366622,-0.008249236,0.0015681505,-0.022777194,-0.013854801,-0.03958165,0.04863867,0.007692352,-0.017379697,-0.0011397777,-0.018481227,-0.0075210026,-0.0074598067,-0.028248128,0.02096579,0.014246456,-0.009234494,-0.014993048,0.022471214,-0.019178864,-0.0009072324,-0.008775523,0.0014901254,-0.03889625,0.0009990266,0.03777024,0.0043051466,-0.013964954,-0.022275386,0.013059251,0.0000196975,0.018652577,-0.055174418,-0.023425873,-0.006098193,0.0064561903,0.021847013,-0.014258695,0.047537144,0.013487624,0.0099566085,-0.0030490966,0.03706037,-0.01308373,0.028150214,-0.0062970803,-0.0121229505,-0.020904593,-0.0075577204,-0.03938582,0.0032648128,-0.016449517,0.035322398,-0.0004065717,-0.015299029,-0.02883561,0.03958165,0.036056753,-0.017122673,0.029888183,-0.034220867,0.006315439,-0.025004733,0.01480946,-0.0021066763,0.018248681,0.00017115788,0.037574414,0.010599167,-0.012233104,-0.016278166,-0.032678727,0.020353828,0.017673438,0.023915442,0.0014717666,-0.02712212,0.0044489577,0.0049905432,-0.011272324,-0.013047012,0.032850076,0.013622255,0.013756887,-0.013964954,0.03182198,0.0378192,-0.011247846,0.0036442287,0.0037788602,0.0064806687,0.011137693,0.021308487,-0.038063984,-0.009895412,-0.031112105,-0.00014572326,0.0024723231,-0.015360225,0.005859528,-0.013377471,0.0023116833,-0.029545484,-0.029912662,0.048295975,-0.018689293,-0.01952156,-0.051943265,-0.01860362,-0.032825597,-0.0023529907,-0.01859138,-0.0048191943,-0.02096579,0.024649795,-0.013781365,-0.016131297,0.0048589716,0.0207822,0.007453687,0.050180815,-0.01055021,0.011015301,0.014405565,-0.024992494,0.016755497,0.017771352,-0.024343815,0.013279557,-0.0055413083,0.015874272,-0.029202787,0.023915442,-0.00022087974,0.0049844235,0.00818804,0.006823367,-0.024710992,0.0080411695,0.012165788,0.0066397786,0.007055912,-0.01070932,-0.008328792,-0.006505147,0.0007947846,-0.016131297,-0.00678053,0.0040695416,-0.00898359,0.025800282,0.038553555,0.061196115,0.0075393617,0.020990267,0.010599167,0.0017058417,-0.01718387,0.0280523,0.023842007,0.050180815,-0.0040664817,0.022422258,-0.041858144,-0.050768297,0.000051586412,-0.038112942,0.007894299,0.01876273,-0.017587764,-0.0107032005,0.03135689,0.014846178,0.006792769,-0.016192492,0.025163842,-0.0034575805,-0.0091427,0.00819416,0.0034942983,-0.01668206,-0.0071477066,0.01857914,-0.0032372745,0.010568569,-0.004666204,0.028958002,-0.009852575,-0.03527344,-0.008842839,0.0007221142,-0.017991658,-0.0529224,0.02567789,0.02489458,0.020892354,0.00929569,-0.0077535477,-0.016963564,0.043816417,-0.0021877612,0.039361343,0.025898196,0.013830322,-0.003261753,-0.0058534085,-0.012875663,0.010060642,0.005403617,0.007784146,-0.005871767,0.0233402,-0.010311546,0.007104869,-0.011357999,0.018517945,0.04538304,-0.0070375535,0.03309486,0.01826092,0.00050984015,-0.058552444,-0.007062032,-0.013622255,0.016400559,-0.004635606,-0.021859253,0.0064072334,-0.002775244,-0.0068784435,-0.014197499,0.07627484,-0.006743812,0.02744034,0.019399168,0.0076005575,0.0057616145,-0.034147434,0.034612525,-0.024723232,-0.0059207245,0.009271212,0.03307038,-0.003956329,0.015029767,0.033021424,-0.005893186,0.017526567,-0.013940475,0.018468987,-0.051257867,0.023536026,-0.00897747,-0.008628652,-0.02046398,-0.023083175,-0.007771907,0.020415025,-0.011045899,0.034098476,0.03258081,0.021002507,-0.0020347708,-0.004788596,-0.0022351881,-0.02172462,0.01039722,-0.0072395005,-0.046215307,-0.0029450632,-0.009008069,0.000287813,-0.01920334,-0.016718779,-0.014589154,-0.031307932,0.016473994,0.008004452,-0.046190828,-0.021920448,-0.018089572,0.02172462,-0.03510209,0.020696526,-0.039973304,-0.005709598,-0.017379697,0.00488345,0.013744648,-0.019913217,-0.012949098,-0.013291797,-0.008181921,0.0015666205,-0.0010479835,0.007924897,0.019056471,0.0117618935,-0.006823367,-0.003922671,0.019876499,0.006860085,-0.0039073722,-0.011639501,0.0040879007,-0.03576301,-0.011125454,-0.012728793,-0.03138137,0.0010043812,0.04428151,-0.0017532688,-0.0012965928,-0.0081758015,0.022324344,-0.045701258,0.053314056,0.0055229496,-0.0009554244,-0.0030307376,-0.050327685,0.022667041,0.00504256,-0.008787762,0.018468987,0.00944256,0.0022780255,0.0025625874,-0.0098892925,-0.014980809,0.0030016694,-0.008292073,0.02064757,-0.007074271,-0.012741031,0.00252281,-0.027856473,0.010103479,-0.017526567,-0.017269544,-0.013352993,-0.0369135,-0.037427545,0.00740473,0.00064408913,-0.015347986,-0.020304872,0.0041490966,-0.040781092,-0.01782031,0.01938693,-0.0023438113,0.013108208,0.018799447,-0.017257305,-0.02883561,-0.0072700987,0.014833938,0.031552717,0.0072272616,-0.018677054,-0.018371074,-0.024466207,0.055908773,-0.030916277,0.011217248,0.017600004,-0.035958838,-0.014564675,0.023095414,0.004351044,-0.0021219754,-0.0055198898,-0.0034239227,0.010042283,-0.012643117,0.030598057,0.0072089024,-0.03057358,0.016008904,-0.04097692,0.016143536,-0.010079,-0.033633385,-0.031797502,0.018860644,-0.02773408,0.021467598,-0.043840896,0.040707655,0.037329633,0.014283174,-0.018664816,-0.043914333,-0.0095282355,-0.0071599456,0.0147849815,-0.045456477,-0.007826983,0.00090034783,-0.0113335205,-0.004320446,0.0032984708,0.005168012,0.018089572,0.012367735,-0.01762448,-0.0072700987,-0.009271212,-0.019374691,-0.0048253136,-0.019619474,-0.01196996,0.0043449244,0.049544375,0.0020240615,0.03688902,3.525948e-7,-0.011321281,0.020109044,-0.01687789,0.05419528,-0.0065173865,0.0013524342,-0.01086231,-0.008555217,-0.0434982,-0.015641727,0.029055916,-0.013903758,0.023511548,-0.026289852,0.031161062,0.012233104,0.031063149,0.03402504,-0.025947154,-0.015372464,0.0039777476,0.0032739923,-0.0066153,-0.014295413,0.021541033,0.035567183,-0.032091245,0.0044948547,0.011376358,0.013010294,0.026338808,-0.013352993,0.011321281,0.009418082,-0.0033504874,0.007955495,-0.035444792,-0.017085956,0.036644235,0.0032495137,-0.029104874,0.03387817,-0.038529076,0.008708207,0.01418526,-0.0009554244,-0.030353274,-0.005229208,-0.0088979155,-0.0028899866,0.020109044,-0.011449793,-0.017551046,-0.004158276,0.01340195,-0.04149097,-0.021993885,0.0008223228,0.03307038,-0.0076311557,0.00054885267,-0.018003898,-0.0078147445,0.00088428386,0.046949662,0.02428262,-0.025775805,-0.03135689,0.020623092,0.009240613,0.0015895691,0.017147152,0.018738251,0.024099031,0.009001949,0.014209738,-0.02961892,0.013928236,0.023597222,-0.0102748275,-0.007704591,-0.010299306,0.020121284,0.0011696108,-0.00488039,-0.018322118,-0.017685678,0.024123508,0.010366622,0.013536581,0.0014679418,0.0337313,0.017379697,-0.008316552,0.02267928,0.027268989,-0.015837556,0.011872047,-0.009081503,-0.011572186,-0.0033810853,-0.02330348,0.0053668995,-0.0014411685,0.029496528,0.0002545376,-0.045578867,0.026118502,-0.0029649518,-0.01908095,0.011205009,0.009277332,-0.011290683,-0.029227266,0.0041031996,0.014833938,0.0030674553,0.002476913,0.0075516007,0.007888179,-0.0052995835,0.018934079,0.0050058425,0.008328792,0.029667877,0.03150376,0.012643117,0.008561336,0.007312936,0.0264612,-0.0073496536,0.02773408,0.0047335196,0.008114605,0.0035401953,0.00010460711,-0.013279557,0.03512657,-0.0040297643,-0.0018496526,0.0007064327,0.0447466,0.0063582766,-0.01402615,-0.018481227,-0.010568569,0.0022810851,0.034612525,-0.014797221,-0.034441173,0.0069579985,0.021602228,-0.032213636,-0.04254354,-0.018811686,0.0016247568,-0.030695971,0.011009181,0.010433937,-0.0406587,-0.0052842847,0.017844787,-0.040756613,-0.02883561,0.01465035,-0.03385369,0.002002643,0.045750216,0.017220587,0.011590544,0.039116558,0.040634222,-0.021222813,0.0066397786,-0.020684287,-0.019472605,0.023842007,-0.011315162,0.049593333,-0.00039662732,-0.021075942,0.017073717,0.049984988,-0.00023311896,0.025751326,-0.004675383,0.0026299031,0.0394103,-0.007184424,-0.020990267,-0.00077489583,0.012435051,-0.0062052864,0.02047622,0.023279002,-0.022299865,0.031258978,-0.006713214,0.014699307,-0.022471214,-0.006633659,0.009858694]},{"id":"interface-GatewayCustomStatus","type":"interface","source":"main","text":"Interface: GatewayCustomStatus\nDescription: Custom status object (Fluxer uses this root object rather than Discord-style activities array).\nProperties: emoji_id: string | null, emoji_name: string | null, text: string | null","meta":{"url":"/docs/typedefs/GatewayCustomStatus"},"embedding":[0.00986231,-0.025315281,-0.045765962,0.03427002,0.03250327,-0.02031757,0.033689167,-0.014751112,0.07376766,0.017703755,-0.021999609,-0.010775936,0.0060625984,-0.02616235,0.032890502,0.030204082,-0.044241235,0.03458464,-0.031680405,0.0706214,0.00705488,-0.023790555,0.01959151,0.045814365,-0.021067832,0.05426086,-0.029526427,0.032527473,-0.0025533098,0.0018454017,0.025508897,-0.028267924,0.04199045,-0.0062864665,0.012935963,0.028751964,-0.024516614,0.035092883,-0.004903928,0.008954736,-0.01972462,-0.017461736,-0.0051550237,0.020051347,-0.05585819,0.015973313,-0.008428343,0.049347855,0.009208857,0.030857537,0.0026062517,0.044265438,0.0055664573,0.004344257,-0.020680599,-0.023379121,-0.039884876,0.0051066196,-0.06945971,0.004804095,-0.008041111,0.006474032,0.010515764,-0.02737245,0.002279525,0.004044757,-0.06747515,0.016953493,0.018151492,0.03102695,0.064183675,0.017570645,-0.0013462356,-0.03748888,-0.0124156205,-0.038166538,0.013069074,0.023766354,0.029962063,-0.06587782,-0.011368885,0.032091837,-0.034003794,-0.04794414,-0.00030422656,0.007103284,-0.03102695,-0.06031136,-0.041675825,-0.0149084255,-0.011368885,0.009269361,-0.093855314,0.0010316098,0.017207615,-0.023040293,0.014339679,0.033761773,-0.00407501,0.03845696,0.02957483,-0.012058641,-0.040296312,-0.038965203,-0.00492813,-0.014218668,-0.024419807,0.0010164835,-0.03748888,-0.014037154,-0.059294872,0.015670788,-0.00766598,0.018792845,-0.014049254,-0.03477826,0.031801414,-0.023875263,0.074396916,-0.019797226,0.0035607177,-0.024044676,0.037513085,-0.0016139701,-0.016287938,-0.0031069303,0.0010195088,0.0057358714,-0.08078624,-0.048234563,0.0046316558,-0.042401884,0.045814365,0.0037603842,-0.017110806,0.018224098,0.0014944728,-0.031172162,-0.019555207,-0.0031129809,0.0077083334,-0.03940084,0.043490976,-0.029986264,0.025605705,0.031704605,-0.023911566,0.008954736,-0.021588175,0.060795397,-0.009293564,0.013190084,-0.046395212,-0.017824765,0.032285452,0.0040084543,0.034221612,-0.03274529,-0.0051398976,-0.016372645,0.013432104,-0.04353938,0.004353333,-0.023500131,0.010624673,-0.0022311208,0.037876114,-0.006280416,-0.02749346,0.013105377,0.060408164,-0.024770737,-0.08088305,-0.00888213,-0.032212846,0.018817047,0.02347593,0.012839155,-0.051066197,0.02057169,0.033398744,0.00015390952,-0.018199896,-0.05706829,-0.026428573,-0.018417714,-0.026210753,0.03136578,0.029332811,-0.024746533,-0.024565019,0.02397207,0.030107275,-0.0104068555,0.063118786,-0.028171115,0.028437337,-0.011647208,-0.0025941506,-0.020027146,-0.01374673,-0.011707712,0.042135663,0.017921573,-0.011986035,-0.002371795,-0.009717098,-0.006353022,-0.01593701,0.0031099557,0.047411695,-0.023548536,-0.039715465,-0.011132915,-0.028074307,0.010987703,-0.02775968,0.05484171,-0.044071823,0.024020474,-0.034245815,0.08102826,0.034027997,-0.041893642,-0.013444205,0.038941,-0.016953493,-0.001312958,-0.037416276,0.017171312,-0.034487836,0.0051066196,-0.01667517,-0.08039901,-0.017425433,-0.028969781,0.024928048,0.011877126,0.049396258,0.012234106,-0.029720042,-0.035818946,0.032672685,-0.0073997583,0.00040235807,-0.0051398976,-0.016529959,-0.004513671,-0.010896945,0.009009191,0.034245815,0.023040293,0.012306712,-0.024359303,0.002025404,-0.039521847,-0.023536434,0.0031492838,0.030252486,-0.016336342,-0.012512429,-0.026186552,-0.020547489,0.054212455,0.0055059525,-0.029913658,0.026355967,0.017231816,-0.0004897121,0.0060898256,-0.007345304,-0.024189888,0.0620539,0.02080161,0.010533916,-0.011744015,-0.013420003,0.014690608,-0.011495945,0.009826007,-0.008597757,0.016287938,0.027227238,0.059052855,-0.02117674,0.05745552,0.06408687,0.00340643,0.036327187,0.061037418,-0.013298993,0.032866303,0.02957483,-0.02043858,0.026985217,0.050582156,0.040659342,0.0034518086,0.027808085,0.006824961,0.018998561,-0.019930338,-0.0151867485,0.00936012,-0.004441065,-0.003978202,0.036690217,0.0134563055,0.010691228,-0.018804945,0.0073695057,-0.027420854,-0.05934328,-0.0006568571,-0.062102303,-0.010110381,0.030252486,0.05648744,0.04767792,-0.010751734,0.049347855,-0.032914706,0.04637101,-0.039352436,-0.014557497,-0.04525772,0.041215986,0.010558118,0.006071674,0.02700942,0.0021131362,-0.013541013,0.018333007,0.030228285,0.02167288,-0.010479461,-0.012706044,0.061231032,-0.022616759,0.010685178,0.02882457,-0.055906594,-0.04646782,-0.01897436,0.05764914,-0.025605705,-0.051259812,0.007472364,0.0096807955,-0.025363684,-0.017945776,0.026307562,-0.023451727,-0.042401884,-0.016396848,-0.08214155,0.00049840973,-0.0044259387,-0.028195318,0.04610479,-0.0028785241,-0.011647208,-0.022411041,0.027178833,-0.023790555,-0.024928048,-0.0128996605,0.006389325,0.023657445,-0.030930143,-0.0020586818,-0.020547489,-0.024952251,-0.04307954,-0.008525151,0.041893642,-0.031099556,0.015586081,-0.036956437,0.001795485,0.05818158,0.02543629,-0.010999804,0.024734432,0.04298273,-0.0051035946,-0.0025170068,0.00048252716,-0.044192832,0.059585296,0.044894688,-0.02215692,-0.008379939,-0.005167125,0.0058266288,-0.007569172,0.02749346,0.0046498072,0.03078493,-0.00009250643,0.025775118,0.021999609,-0.007853545,0.005375867,-0.009354069,-0.026912611,-0.008313383,0.013335296,0.043854006,-0.031244768,0.050098117,0.005875033,0.00936617,0.033156727,0.008283131,-0.04320055,0.036423992,-0.029066589,-0.00065458816,0.013976648,-0.02652538,-0.011544349,-0.029332811,-0.058472004,0.016832484,-0.018333007,-0.015041537,-0.030204082,0.009898613,-0.050533753,-0.02020866,-0.017243918,0.058326792,-0.02507326,0.051550236,-0.021273548,0.010521815,-0.013758831,-0.019022763,-0.016360544,-0.034366824,0.021527668,-0.0036454245,0.030252486,0.033882786,0.040199503,-0.014569597,-0.03102695,0.043829802,-0.052034277,-0.037779305,0.027953297,-0.028993983,0.016663069,-0.015162546,0.033519756,-0.0018620405,0.06021455,-0.021987507,-0.024831241,0.0014195979,0.013226387,-0.02616235,0.020353872,0.013952447,0.014218668,-0.030833334,0.0024247367,-0.005917386,0.03310832,-0.0681528,0.0066615976,0.04588697,0.043563582,0.033156727,-0.007774889,0.0048555243,0.0049553574,0.05580979,0.05377682,-0.031486787,0.044894688,-0.016989795,0.0022613734,0.032067634,0.113458924,0.008452545,-0.049493067,-0.04235348,-0.008603808,0.028606752,0.010195088,0.011157117,-0.012802852,0.037174255,-0.0377067,-0.032575876,-0.009233058,-0.012052591,-0.06476452,0.021079933,-0.02967164,-0.0066252947,-0.001703215,0.029816851,0.017183412,0.026985217,-0.027808085,-0.007950353,-0.01180452,0.0072969,-0.025145866,-0.034560442,-0.014012951,-0.026791602,-0.011048208,-0.026331764,0.002439863,0.00285886,-0.0026818828,-0.0016880888,0.002049606,0.01715921,-0.018333007,-0.022568354,-0.0049069533,0.022907183,-0.08194794,0.02030547,0.028098509,0.02749346,-0.042426087,0.005097544,0.002037505,-0.0040840856,0.017679553,-0.001654811,-0.027227238,0.0146059,-0.019664116,-0.014279174,-0.0000074508566,0.037367873,-0.004852499,-0.016130626,0.019736722,-0.024310898,0.015465071,0.0007767326,-0.01607012,-0.008416242,-0.021273548,0.013214286,0.017050302,0.064522505,0.040320512,-0.015779696,0.010479461,0.03417321,0.046758242,0.015670788,-0.0012055616,0.03247907,0.0044592163,-0.02565411,-0.0030902915,0.0050279633,0.039618656,-0.022398941,-0.014581698,-0.005560407,0.042038854,0.013686225,0.020160256,0.0027408754,0.020620095,-0.03296311,0.0004518965,0.018647632,0.0044561913,-0.030349294,-0.03141418,-0.011380985,0.038505364,-0.029550629,0.013952447,-0.0279775,-0.021273548,-0.0001945613,0.03664181,-0.015985414,-0.0020390176,0.009148352,0.022701466,0.008077414,0.009965169,0.024383504,-0.008464646,-0.007024627,0.032212846,0.0034608843,-0.03848116,-0.034608845,-0.012185701,0.03661761,0.012100995,-0.004099212,0.0063288203,0.000028858036,0.03397959,-0.018054685,0.050582156,-0.027203036,-0.04404762,-0.011992086,-0.020051347,-0.023633242,0.030107275,-0.003724081,-0.036327187,-0.0052609076,0.020123953,-0.019639915,-0.014375982,-0.011011905,0.024661826,-0.0015973313,-0.011707712,0.008137919,0.018817047,0.006395376,-0.017485937,-0.02273777,-0.024770737,-0.010225341,-0.012070742,0.024770737,0.013843537,0.026283361,-0.034608845,0.030446103,0.018381411,0.0034034047,-0.003554667,0.032067634,-0.018478218,-0.017921573,0.01570709,0.012766549,0.03238226,-0.008628009,-0.024976453,-0.008894231,0.0022886007,0.016965594,-0.0131416805,0.0065163854,0.024698129,-0.019845631,0.001262285,-0.026259158,0.016142726,0.01619113,0.05130822,0.011586702,0.005136872,-0.014739011,-0.0072726975,0.015344061,-0.02360904,0.020486984,0.029889457,0.030518709,-0.010902996,-0.021866497,-0.0038965202,-0.005796376,-0.04804095,-0.007617576,-0.03199503,0.012228055,0.02458922,-0.00042391298,0.0022764995,0.018514521,-0.029453821,0.026815804,-0.008839777,0.01874444,-0.014739011,0.029720042,0.03177721,0.022701466,-0.006837062,-0.012851256,0.011786369,0.019688318,0.04758111,-0.0016154827,0.0034820612,0.020862114,-0.02725144,-0.026428573,-0.015767597,0.0038481161,0.010539967,0.011284177,-0.016239535,0.023052394,-0.00090681826,-0.0267674,0.012028389,-0.0068915165,0.015561879,-0.01850242,-0.0069641224,0.0039721513,-0.02092262,0.022919284,0.030083073,0.024855442,0.017110806,-0.030809132,-0.00924516,-0.018296704,-0.012137298,0.033229332,0.022979788,-0.028195318,-0.011834772,-0.0033913038,0.032527473,0.01630004,0.012330913,-0.037561487,0.045402933,0.027929096,0.016989795,-0.025533099,0.0043261056,-0.019809328,0.010673077,-0.043611985,-0.0006587479,-0.017546441,-0.024879646,-0.022774072,0.0057237702,-0.03102695,0.016082222,-0.001189679,0.007581273,-0.0039025708,-0.0038904697,-0.031220566,0.009626341,0.021588175,0.006903617,-0.006655547,0.040223707,0.0011957295,0.020281266,0.020862114,0.021249346,-0.016844584,-0.014291274,-0.0015254816,0.0011064847,-0.00049538445,0.018151492,-0.02385106,-0.0116895605,-0.027106227,0.0046407315,0.01009828,-0.01398875,0.0011722839,-0.047629513,0.00041786247,-0.001977,0.028050106,-0.0033428997,0.038626373,-0.02565411,0.02604134,-0.012706044,0.0038874445,-0.015537677,-0.0029738194,-0.010134583,0.011132915,-0.015864404,0.01765535,-0.047992546,0.0008811037,0.0008100103,0.03927983,-0.078269236,-0.029066589,0.024855442,-0.020232864,-0.025000654,-0.020716902,0.014739011,0.018211996,0.009227009,-0.0043200552,0.017195513,-0.029816851,-0.00753892,-0.003893495,0.011157117,-0.0340764,0.020148156,0.017413331,0.0091302,0.00705488,-0.029623235,-0.017800562,-0.033592362,0.061279435,0.008010859,0.013286892,0.0055906596,0.018550824,0.04840398,-0.002122212,0.032551676,-0.020051347,0.025726715,-0.021442963,0.014775314,0.03710165,0.009789704,-0.010727531,0.00058652007,-0.017582744,-0.00408106,-0.0151867485,-0.0082952315,-0.028897176,-0.006437729,-0.024310898,-0.001618508,0.015828101,-0.013976648,-0.02140666,-0.03468145,-0.017800562,0.021975406,0.015634485,-0.013177983,0.005560407,-0.043224752,0.014775314,-0.03715005,-0.041191787,0.0019270834,0.02565411,0.04625,-0.011048208,0.016578363,-0.05034014,-0.03298731,0.0032430666,0.035020277,0.019494703,0.01667517,0.013480508,0.005865957,0.011834772,-0.018575026,0.037561487,0.0041839187,-0.031946626,0.022895081,0.0025139817,0.0032339909,0.017074503,0.041530613,-0.01387984,0.010031724,0.011217622,-0.010019624,-0.00084480067,0.037537284,0.021987507,0.022205325,-0.03477826,0.014218668,-0.010533916,0.02238684,0.0048222463,0.0074360613,0.010007522,0.015162546,-0.016179029,0.03698064,-0.016094323,0.027445056,-0.0279775,-0.043127943,-0.0005101325,0.017461736,-0.014436486,-0.012730246,0.007224294,-0.002090447,-0.0043775346,0.029042387,0.028025903,-0.012336964,-0.015549778,0.028945578,-0.004238373,0.014448588,-0.003627273,-0.022858778,0.020523287,-0.010624673,-0.032188646,-0.027445056,-0.009220958,0.037029043,-0.003772485,0.00064778136,0.00008026363,-0.042692307,-0.0042837523,-0.0292118,-0.024613423,0.02519427,-0.024141485,-0.0012297636,0.0021116235,-0.04610479,0.01690509,0.0028860872,0.013274791,0.009154403,-0.047726322,0.025412088,-0.0012516966,-0.00766598,-0.015307758,-0.00080547243,-0.056777865,0.024673928,-0.0058084773,-0.031922422,0.00045529992,0.03758569,0.05643904,-0.048137758,-0.00425955,-0.033592362,0.036302984,0.011641157,0.038602173,-0.021188842,-0.03954605,0.0077688387,-0.0067281527,-0.032890502,0.0316078,-0.0049916604,0.013637821,-0.02335492,-0.009190706,0.049565673,-0.008192373,-0.0027212112,0.029066589,0.024782836,-0.013298993,0.023197606,0.020051347,-0.009148352,0.006011169,-0.01021929,0.0041476157,0.080979854,0.013565215,0.052227892,-0.01764325,-0.04208726,0.0016200206,-0.019881934,0.010642825,0.032043435,0.033592362,-0.010993754,-0.014896324,0.017171312,0.019155875,-0.05489011,-0.04005429,0.054309264,0.0007052611,-0.013843537,-0.009112049,-0.025291078,0.037779305,-0.046056386,0.023875263,-0.029405417,0.018090988,-0.015392465,0.024528716,0.0034578592,-0.0017334674,-0.009329867,0.0030660895,-0.044362247,-0.034052197,-0.015864404,0.011737965,0.022096416,0.011417288,-0.0072424454,0.014557497,-0.010007522,0.029139195,-0.038771585,0.0045348476,-0.037634093,-0.014654304,0.0062199114,-0.009565836,0.019652015,-0.009947018,0.03930403,-0.0133837,0.0033247482,-0.010170886,0.02299189,0.038650576,-0.025871927,-0.0003522524,-0.008494898,-0.014049254,-0.011774268,0.014436486,0.009741301,0.0015670788,-0.02664639,0.025145866,-0.0100619765,-0.009475078,-0.0013628745,0.02371795,0.0075631216,0.0024504515,-0.017861068,0.008936584,-0.015404566,-0.00042391298,0.0120344395,0.0073574046,0.018587127,-0.016602565,0.014496991,0.029478023,0.028679358,0.016312141,-0.019506803,0.008984989,-0.013553114,-0.011090562,0.06553899,0.023100799,-0.009753401,-0.010431057,-0.0032823947,0.0018605279,0.010134583,0.0049190545,-0.017957876,-0.000045804154,-0.013649922,0.0048646,0.019264784,0.010055927,-0.01970042,-0.025049059,0.016614666,0.004395686,0.0059688156,-0.0051187207,0.0072424454,-0.026549581,0.024262493,0.011889227,-0.018950157,-0.026452774,0.03586735,0.009868361,-0.0028921377,0.005221579,-0.023100799,-0.0015413641,-0.013347397,0.03514129,0.016771978,-0.0364966,0.03417321,-0.0075268187,-0.0011601829,-0.022653062,-0.0011518634,0.007690182,0.021334054,0.019906135,0.0021101108,-0.04307954,-0.0038662679,-0.005551331,0.012984367,0.01665097,-0.009323816,0.00010701817,-0.009898613,0.00864616,-0.0013122016,0.0072787483,0.020474883,-0.008264979,0.023996273,-0.043515176,-0.0119981365,-0.0005176957,-0.025775118,0.022592558,-0.025581503,0.0042686258,0.0063348706,-0.020971024,0.007266647,0.0036998792,-0.0023733075,0.004244424,0.0103039965,-0.017727956,0.0038299647,-0.01410976,0.043708794,-0.006168482,0.047169678,0.0065889917,-0.0353107,0.015816,0.0243351,0.027445056,0.013601518,0.054212455,0.035480116,0.0032188646,0.007653879,-0.009281463,0.0073090005,-0.012730246,0.029526427,-0.007726485,-0.015961211,0.00016071633,0.009656593,-0.018889653,0.032551676,0.02422619,0.017691653,0.021515569,-0.02140666,-0.031946626,0.012790752,0.024516614,0.011889227,0.002790792,-0.01970042,0.05217949,-0.000915894,0.019385792,-0.020099752,-0.0032642432,0.008047162,-0.0041415654,0.040441524,-0.022060113,-0.0024277621,-0.017207615,-0.022169022,-0.022592558,-0.016989795,-0.012318812,-0.008313383,-0.031123757,-0.0029526427,-0.022362638,0.028316326,-0.0034366825,0.005121746,-0.019059066,0.008579605,-0.032721087,0.006861264,0.039328232,-0.015041537,-0.00420207,-0.03395539,0.041458007,-0.011683511,-0.000060694052,0.0058478056,0.0730416,0.048379775,-0.0012970753,0.010745683,0.06094061,-0.00048706503,-0.019760923,-0.003116006,0.020886317,-0.0291876,0.03831175,-0.025387887,-0.038723182,-0.0078051416,0.051647045,0.009456927,0.007290849,0.013516811,0.0064195776,-0.048646,0.012500327,0.0047768676,-0.0094024725,-0.018526623,-0.0014059843,0.03383438,-0.014739011,0.0059052855,0.009335917,0.0035365156,0.006238063,-0.0019134698,0.010939299,0.0043261056,-0.023572737,-0.010521815,-0.0022417093,-0.005524104,0.035601124,-0.00046437565,-0.004903928,-0.011302329,0.046032183,-0.012718145,-0.030712323,0.014242871,-0.027662873,0.008307333,0.013347397,-0.0065647895,-0.025024857,-0.0073211016,-0.044604264,-0.040223707,-0.012209903,-0.011157117,-0.017679553,0.00206927,-0.025121665,0.00002226394,0.009874412,0.034729853,-0.021225145,0.020632196,0.004707287,-0.020281266,0.04150641,-0.0037513082,-0.026452774,-0.021237245,-0.003454834,-0.0064498303,-0.015319859,-0.058568813,-0.00052639324,-0.0056057856,-0.021745488,0.0013742192,0.006788658,0.0019437223,-0.0011352246,-0.0039479495,0.01362572,-0.03371337,0.05392203,-0.015344061,-0.024262493,0.013831437,-0.011356783,0.011108713,-0.0292118,0.011574601,0.0014112785,0.014436486,0.00053168746,-0.02105573,0.010769885,-0.0007691695,-0.034512036,0.010552067,-0.009711049,0.01046131,0.027904894,-0.023367021,-0.0149084255,-0.0000224412,-0.038747385,0.010316098,-0.0099228155,0.018429814,0.01898646,0.014545395,0.01436388,-0.056003403,-0.022471547,-0.020886317,-0.0039993785,-0.006111002,0.023500131,0.00595974,-0.002226583,-0.0353107,-0.008682463,-0.016735675,-0.007448162,-0.002733312,-0.024480311,-0.033761773,-0.029332811,-0.011883177,-0.0055846088,-0.006655547,0.026210753,0.006994375,0.036302984,-0.0010187525,-0.019688318,0.0082952315,-0.025533099,0.0011768218,-0.023318617,-0.023681646,-0.0071214354,0.03211604,-0.010739633,0.011048208,0.017086605,0.021297751,-0.034875065,0.03848116,0.011580652,-0.0077567375,0.032672685,0.008095565,0.0047980445,-0.005633013,-0.010673077,0.0004295853,-0.025484694,0.023294415,0.0050430894,0.011042157,0.016941393,0.014061356,-0.034003794,-0.006310669,0.015465071,-0.024395606,0.0060202447,0.027275642,-0.0036545002,-0.041409604,-0.00092345715,-0.019276883,-0.0073150513,-0.010370553,0.0017969977,-0.04583857,-0.004695186,-0.044120226,0.015162546,0.028800366,-0.0023990222,-0.028388932,0.046395212,-0.009959118,-0.013541013,0.042256672,-0.0071577383,-0.035383306,-0.012790752,-0.0070911827,0.00231129,0.0009809369,-0.030591315,0.0009839621,-0.013637821,0.02322181,0.010074078,0.014521194,-0.009947018,0.013928245,-0.0042777015,-0.025533099,0.032212846,0.0019981768,0.0010815264,-0.019518904,0.012863358,-0.012887559,-0.0128996605,0.018708138,-0.01436388,0.033640765,0.0006723615,-0.0025412089,0.046782445,0.0206685,0.0039328234,0.038021326,-0.011114763,-0.011762166,-0.036811225,0.022483649,-0.016941393,0.0015958187,0.00072341255,0.0006050497,-0.027106227,0.0243351,0.036811225,-0.003615172,-0.030446103,0.011544349,-0.019071167,-0.006074699,-0.04186944,0.01412186,-0.008694565,-0.045064103,-0.010969551,-0.0133837,-0.043563582,-0.03942504,0.027033621,-0.0048706504,0.008458595,0.005545281,-0.0182604,0.012742347,-0.0016850635,-0.03274529,-0.008428343,0.030107275,-0.00062547013,-0.0058054524,0.011846874,-0.019385792,0.028776165,-0.008246828,0.022834577,-0.004441065,0.008004808,0.019785127,-0.01496893,-0.01729232,0.016832484,-0.056874674,-0.0219028,0.012028389,-0.0037301315,-0.042885926,0.020160256,-0.0011306867,-0.008113717,-0.02592033,-0.028267924,0.001824225,-0.021515569,0.0033852533,0.0061291535,0.013783033,-0.05498692,0.024274595,-0.03138998,0.0076357275,0.027469257,0.016445251,-0.019845631,0.0136983255,-0.012451923,0.00730295,0.010582319,0.0048010694,-0.032624282,-0.016263736,-0.022241628,0.0004813927,0.013069074,-0.009838109,0.016251635,0.046419416,-0.041458007,0.036302984,0.00827708,-0.027106227,-0.008549352,-0.008664312,0.0048857764,0.004964433,0.012839155,-0.034705654,-0.002994996,-0.023705848,-0.035697933,0.010370553,-0.031317376,0.0053486396,0.01715921,-0.011768217,0.010679128,-0.004528797,-0.028606752,0.02468603]},{"id":"interface-GatewayDispatchEventName","type":"interface","source":"main","text":"Interface: GatewayDispatchEventName","meta":{"url":"/docs/typedefs/GatewayDispatchEventName"},"embedding":[-0.010582643,-0.021401476,-0.014866875,0.0062524853,-0.0013105288,0.023199148,-0.056160834,0.006623173,0.037921686,-0.04705438,-0.007039787,0.00481238,-0.025902215,0.025613539,0.023737138,-0.035769727,-0.017897986,0.05427131,-0.016940102,0.051673215,-0.01474878,0.021257138,0.02584973,0.02003682,-0.026125286,-0.0019305287,-0.012249097,-0.0015696822,0.0293401,0.000043081174,0.0638239,-0.023658408,0.032489303,-0.012767404,0.036215864,0.036793217,-0.026348354,-0.03322412,-0.04915385,-0.0011432272,-0.0364783,-0.036688246,-0.014499468,0.0136990445,-0.01708444,0.00010317954,0.0005917062,0.0005917062,0.0175437,0.013049521,-0.013751531,-0.03440507,0.02065354,0.020627297,0.045322318,-0.016703911,0.014368251,0.0074137547,-0.000442447,-0.006344337,-0.054166336,-0.0022880947,0.018842747,-0.0020322218,0.010851637,0.008647194,-0.028054174,0.023251634,0.040441047,0.0049895225,-0.03128211,0.021926343,-0.019354492,0.0020174598,-0.0008041136,0.009696929,-0.03897142,-0.0037003167,0.00003992889,-0.012537775,0.019262642,0.023592798,-0.07337649,-0.08912252,0.029392585,-0.046162106,-0.062616706,-0.012150685,-0.017320631,-0.009034283,-0.014814388,0.03773798,-0.011593013,0.03616338,-0.02460317,-0.0078074057,0.038367823,-0.008903067,-0.021480206,0.0024357138,0.047028136,-0.083873846,0.013935234,-0.03330285,0.019984335,-0.038262848,0.0059244432,0.013830261,-0.030521052,0.0015901849,-0.088230245,-0.019682536,0.022648036,0.010891003,-0.001677116,-0.00078156067,0.06319406,-0.039784964,0.021007827,0.023540312,-0.030389834,0.028762745,-0.0457947,-0.008673437,-0.037606765,-0.020994704,0.00009610613,-0.006856083,-0.043275334,-0.034877453,0.0681803,-0.059677448,0.030337347,0.010963172,0.0085553415,-0.025193645,-0.03191195,0.02981248,-0.019905604,-0.001948571,-0.022490576,-0.028946448,0.06387639,0.0012203172,-0.020482957,0.015024335,-0.00008001155,0.021453964,0.009887193,0.04844528,-0.052303057,0.058207817,-0.008607829,0.010300526,0.018567191,0.015575446,-0.0055865594,-0.01009714,0.015404864,-0.040546022,0.012944547,-0.069230035,-0.03322412,0.054901153,-0.060622208,-0.031150892,-0.00033234782,-0.004526983,-0.07925501,-0.0013876187,0.009670686,-0.016008463,-0.017320631,0.039102636,0.0039102635,0.025377348,-0.020522323,0.010523596,-0.04191068,0.020771636,0.03608465,0.049731206,0.014013965,-0.050203588,0.019839995,0.007275977,0.012708357,0.043354064,0.010753225,-0.03981121,-0.003073756,0.045374803,0.00978222,0.028762745,0.03112465,-0.011783278,0.014945605,-0.044193853,0.019656291,-0.016310262,-0.008161691,-0.07195935,0.043773957,-0.0025226448,0.0011071425,0.022057561,-0.0022782534,-0.021427719,0.020929096,0.019092059,0.037475545,-0.0066198925,0.024957454,-0.032699253,-0.05752549,0.043747716,-0.019157667,0.03988994,0.0039037028,-0.011291214,0.024170153,0.015824758,-0.009454178,-0.028920205,0.042986657,0.0050452896,-0.0019895763,0.0065181996,-0.03849904,-0.014223912,-0.041254595,0.015339255,0.005005925,-0.072064325,0.008181374,0.019787509,0.003042592,-0.06807533,0.018724652,0.02949756,-0.035927188,-0.0030770362,0.01629714,-0.01995809,-0.021060312,0.008955553,0.018724652,-0.0048583057,-0.008128887,0.008345395,0.0031770892,0.049678717,0.01211788,-0.026204014,0.012131003,0.0194201,0.036058404,-0.017596187,0.01529989,0.035113644,0.05085967,-0.05295914,0.0014302642,0.044692475,-0.02041735,-0.055478506,0.031859465,0.002306137,-0.03905015,0.030494807,-0.005993332,-0.003191851,0.02119153,0.005022327,-0.025167402,-0.047736708,0.027975444,0.0127346,-0.012052272,-0.007676189,-0.05395639,-0.014853753,0.022884227,0.0043596816,-0.031150892,0.06188189,0.0011989945,0.0060097342,-0.0033247082,-0.003198412,-0.05910009,0.015562325,-0.0027982004,-0.03277798,0.061829403,0.030074913,0.028316608,-0.0055143903,0.038604014,-0.0073153423,0.043354064,-0.003975872,-0.0175437,0.004651639,-0.012026029,-0.013049521,0.039575018,0.002568571,0.008673437,-0.038315333,-0.037869196,-0.028684014,-0.048497766,-0.019236397,-0.009664125,-0.020010578,0.07552845,0.05784041,0.028132904,0.009959362,0.008004231,0.024104545,0.027266871,-0.03325036,0.040965915,-0.014223912,-0.0041366126,-0.042278085,0.0067183054,0.060517233,0.0054684645,-0.029759994,-0.00013070433,0.00050477503,0.033801474,0.024104545,-0.034457557,-0.020771636,0.0075712153,0.032463063,0.034431316,-0.015641054,-0.034588777,-0.04038856,0.042960413,-0.038105387,-0.0028244439,-0.012760843,0.011343701,0.023619043,-0.017963594,-0.0056718504,-0.0064493106,-0.0038938615,-0.013141372,-0.0329092,0.017989837,-0.013935234,-0.040939674,0.04860274,-0.0018173541,0.018016081,0.024721265,-0.01234751,-0.037633006,-0.00009518351,-0.026348354,0.0044613746,0.00012752642,-0.043773957,0.046582,0.039023906,-0.02802793,-0.014223912,0.003641269,-0.0058129085,-0.009277035,-0.03285671,0.045164857,-0.009454178,0.015614811,0.013790896,-0.0048648664,-0.0021946027,0.0016467721,0.0041038087,-0.023566555,0.023632163,-0.025114914,-0.015890367,0.048156604,-0.041884433,-0.01087132,-0.023225391,-0.030022427,-0.027319359,0.05007237,0.0039496287,0.044062637,-0.00659693,0.040441047,0.010156188,-0.001428624,-0.006475554,-0.03059978,-0.013128251,0.007912379,0.041044645,0.064716175,-0.01770116,0.017989837,-0.001203095,0.03907639,0.021637667,-0.011730791,-0.02630899,-0.0003579761,-0.03159703,-0.019577561,0.025718512,0.0062852893,0.030074913,-0.03897142,0.06623829,0.014066452,0.00074875646,0.002289735,0.0021552376,0.032882955,-0.052303057,-0.02336973,0.018645922,0.020889731,0.012983913,0.05652824,-0.0033165072,0.03634708,-0.029051421,0.01568042,0.011055023,-0.050361045,0.013633436,0.029786237,0.027817983,-0.023553433,0.0049042315,0.03663576,0.02630899,0.037449304,-0.025508566,-0.03626835,0.00015007933,-0.06366644,0.040021155,-0.022857985,0.0066330144,0.020469837,0.060464747,0.021926343,-0.019787509,-0.004169417,0.010300526,-0.026033433,0.059257552,-0.04978369,0.018829625,0.013725288,-0.011520844,0.022871105,0.01995809,-0.056423265,0.007951744,0.00047484116,0.011442114,-0.00528148,0.012380315,-0.0053438083,0.0056849723,0.00013265209,-0.022464333,-0.024485074,0.02763428,0.009808463,-0.009565712,0.04277671,0.09353141,0.011586452,-0.01808169,-0.06755046,-0.007794284,-0.017569942,-0.01490624,0.012780526,-0.01568042,-0.01599534,0.0024980418,-0.011166559,-0.022044439,0.007203808,-0.03385396,-0.03283047,-0.04015237,0.0141451815,-0.0010103701,0.05379893,0.022162534,0.0022257667,-0.0034116395,-0.03975872,-0.06707808,-0.011934177,-0.026755126,-0.035848457,-0.010418622,-0.05558348,0.0056948136,-0.01009714,0.031544544,0.01296423,0.019367615,0.00025730813,0.016179044,0.006062221,-0.018002959,0.003687195,0.027214386,0.0057571414,-0.043511525,-0.008214178,-0.01817354,0.028788988,-0.034116395,-0.019459466,0.02818539,0.005192909,0.007249734,0.0028785707,-0.027529305,0.012983913,0.024983699,-0.019302007,-0.006304972,0.011868569,0.012288462,0.028080417,0.00027842587,0.0047631734,-0.00045638878,0.014092695,0.017596187,-0.069387496,-0.0031246024,0.008778411,0.01211788,0.020784756,0.015942853,-0.013075764,-0.011245288,-0.007459681,0.010982854,-0.024983699,-0.008634072,0.012990473,-0.038367823,-0.0019600524,0.036793217,-0.027240628,0.0067019034,-0.008220739,-0.02842158,-0.023776503,0.048550252,-0.0037626447,0.040283587,-0.019013328,-0.029156396,0.027109412,0.013659679,0.039706234,-0.0044220095,-0.011855447,-0.03167576,-0.009296717,0.038026657,-0.041044645,-0.02245121,0.018435974,-0.014118939,-0.015575446,-0.011855447,-0.025062429,-0.022674281,-0.0009947881,0.043039143,0.024327613,-0.031623274,0.0010103701,-0.008522538,-0.023999572,0.017609308,-0.010320209,0.016651426,-0.035612267,-0.042278085,0.057263054,0.025219887,0.030652268,0.03277798,0.026702639,-0.002532486,0.017031955,0.029838724,0.0016467721,-0.019656291,-0.01490624,-0.018960843,-0.019078936,-0.011219045,0.006117988,-0.025889095,-0.012334389,-0.0076433844,-0.009021162,0.02065354,-0.020404229,0.051174592,-0.025049306,-0.016887615,-0.0015278568,-0.013607193,0.035113644,-0.012826452,-0.029681263,-0.034037665,-0.03298793,0.006810157,0.03353904,-0.007544972,0.011763595,-0.042514276,-0.033460308,-0.010766347,0.019669414,0.044508774,0.07311406,-0.017307509,0.023632163,0.022674281,-0.006101586,0.03991618,-0.035953432,-0.010254601,0.05101713,0.019984335,0.07222178,0.019656291,-0.0073809507,0.033329092,-0.046083376,0.0062459246,0.021873858,0.0063607395,-0.025534809,0.0118816905,0.006823279,0.010995977,0.005009205,0.027004438,-0.04114962,0.018462218,0.019813752,0.052591734,0.07442623,0.006186877,-0.0032033327,-0.0074662417,-0.011461796,-0.015168673,-0.011586452,-0.00016853171,0.012439362,0.040414806,-0.022188777,0.032436818,0.044771206,-0.014289521,0.034746233,-0.04610962,0.008955553,0.0033443908,0.020692905,0.009224548,0.015654176,-0.0042055016,0.0043596816,-0.0041333325,0.028447824,0.018042324,-0.010110262,-0.04248803,-0.007564654,0.009841268,-0.00032599198,-0.01498497,0.0023274599,-0.0079058185,0.049101364,-0.01421079,0.059887394,-0.017018832,-0.0034247611,-0.02103407,-0.030835971,-0.007197247,0.029156396,0.028867718,-0.011081267,0.024878724,0.031623274,-0.018042324,0.024590047,0.034195125,-0.009106453,-0.014971849,-0.0030163485,0.02003682,0.01583788,-0.003300105,-0.014709415,0.015391743,0.0030606342,0.036373325,0.0030065072,0.016441477,-0.01498497,0.018855868,0.008411003,-0.013580949,0.0006491136,0.0052683586,0.03960126,-0.0050157662,0.011652061,-0.030337347,0.009113014,0.0038610573,0.005629205,0.022726767,-0.03797417,-0.02352719,0.0012309785,0.009283596,-0.036530785,0.01894772,-0.010845077,0.015929732,0.03907639,-0.006219681,0.021467084,0.02406518,0.0128855,0.013331637,0.016231531,0.029996183,-0.040414806,0.015785392,0.0013876187,-0.021519572,-0.00074957655,0.04214687,0.008778411,-0.03259428,-0.035900943,0.010772907,0.027608035,-0.01653333,-0.030153643,-0.017386239,-0.005675131,0.011612696,-0.010379257,-0.02624338,-0.028867718,-0.0372656,0.020561688,-0.014696293,-0.021217773,0.033119146,-0.027870469,-0.023592798,0.0031311633,0.017596187,-0.00018718911,-0.03626835,0.0020551847,-0.022083804,0.03020613,-0.0761058,-0.015457351,0.013987722,0.007564654,0.01654645,-0.022031318,0.011015659,0.02818539,0.014814388,-0.035376076,0.009126135,0.0066953423,-0.010569521,0.0016992588,0.03112465,-0.037947927,0.034588777,0.02182137,-0.010234918,0.019551318,0.0010833596,0.012833013,0.007289099,0.024170153,-0.002630899,0.005816189,-0.023579678,-0.016310262,0.0451911,-0.016493965,0.028920205,-0.035874702,-0.016428355,-0.0175437,0.020535445,0.017202536,-0.009126135,0.012944547,0.024353856,-0.04868147,-0.001234259,0.017648673,-0.015785392,-0.010051214,-0.048733957,0.026046555,-0.011966981,-0.0046221153,0.013935234,0.014355129,-0.032331843,-0.01599534,0.004005396,-0.00009620864,0.018501583,0.009349205,0.0051863478,0.02941883,-0.005619364,-0.024642535,0.009762538,0.007118517,-0.011009098,-0.013502219,0.015417986,-0.03773798,0.0044384114,0.014525711,0.046398297,0.011507723,0.025718512,0.069597445,0.018331,0.010057775,0.008581585,0.04256676,-0.005091216,0.0022159254,0.012813331,0.0551111,0.002803121,0.03991618,0.0012990473,0.034641262,0.019551318,-0.013023278,0.012728039,0.0031262427,0.01771428,-0.003323068,0.0006507538,-0.045086127,0.025613539,0.017228778,0.0039922744,0.030888459,-0.026899464,0.0065477234,-0.028290363,-0.0150374565,0.038446553,-0.012787087,-0.013180737,-0.011461796,-0.022306873,0.015050579,-0.011770156,0.014368251,0.013239785,0.03750179,0.01529989,0.0424093,-0.010654813,-0.007361268,0.0016180684,-0.0055996813,0.036950678,-0.00027740072,0.01869841,-0.013554706,-0.012399997,-0.02245121,-0.020259889,0.018331,-0.0152080385,0.021886978,0.0098609505,-0.03301417,-0.002229047,0.026820734,-0.017884864,-0.019446345,-0.03973248,-0.010339892,-0.004799258,-0.021217773,-0.018567191,0.016270896,-0.027660523,-0.013010155,0.010457987,-0.014368251,-0.017596187,-0.00458275,0.026833856,-0.0019633328,0.0086931195,-0.016717033,0.020141793,0.0059244432,0.0008980157,-0.061934378,-0.041622,-0.032279357,-0.014958726,0.024734385,0.0065772473,0.009434495,-0.022661159,0.02011555,0.015654176,0.0070594694,-0.004769734,0.00605566,-0.032043166,-0.018042324,-0.012393436,0.021152165,-0.027004438,0.002375026,-0.016861372,0.0009874072,-0.01444698,-0.05558348,-0.027214386,0.037606765,0.0438002,-0.0153786205,0.01691386,-0.018134175,-0.016021583,-0.0003368584,-0.006698623,0.028762745,0.026151529,0.0031639675,0.05862771,-0.009539468,-0.03952253,-0.028815232,-0.021388356,0.07306157,0.004766454,-0.008010792,-0.019892482,0.006816718,0.030888459,0.015614811,-0.032384332,-0.017097563,0.0501511,0.002156878,-0.00706603,0.012065394,0.032646764,0.0069610565,0.011763595,0.009736294,0.0150374565,0.00025689809,0.009053966,0.0473693,-0.040546022,0.008082961,0.013882748,0.011999786,-0.08030474,-0.041831948,-0.002079788,0.0015475394,0.014683171,-0.012944547,0.020063065,0.053484008,-0.009598516,0.013029838,-0.052066866,-0.011855447,-0.019393858,0.001366296,0.009493543,-0.037685495,-0.003782327,0.0017304228,0.01932825,0.0044318507,0.030993432,0.011251849,0.024052057,0.034510046,-0.0015426187,0.00022962957,0.016756399,0.0046024327,0.014289521,-0.02273989,0.015614811,0.02158518,-0.00017519506,0.04324909,0.0034510044,0.0039955545,-0.0036773537,0.008844019,-0.02228063,0.011789839,-0.0038840203,0.019616926,0.01995809,0.0071841255,0.03277798,-0.0061934376,0.023238514,0.009231109,-0.007886136,0.0075843367,-0.025534809,0.012445923,-0.009913437,0.021257138,0.042278085,0.02818539,0.004920634,0.016428355,0.02128338,-0.00083117705,0.012977351,0.045138612,-0.0017927509,-0.019380737,-0.0016894176,0.032725494,-0.0070069823,-0.0014179626,0.012216293,-0.028316608,-0.0025587296,0.0010538357,0.008607829,-0.027030682,0.009460739,-0.0002755555,0.030284861,-0.030442322,-0.016979467,-0.0012941267,-0.019341372,0.0013638356,-0.009696929,-0.0057341787,0.013161055,0.0330929,-0.022372482,-0.011304336,0.0010120104,0.01413206,-0.0043203165,0.028237877,-0.011514283,0.0022241264,-0.013580949,-0.007026665,0.02897269,0.03960126,0.011140315,0.027922956,-0.00078238075,-0.0153130125,-0.0002927777,0.014105816,-0.0011989945,0.023159783,0.0040480415,-0.019078936,0.009237669,-0.0008127247,-0.012905182,-0.012800208,0.020942217,-0.009427934,0.0400474,-0.03750179,0.0017501054,-0.014237034,0.042829197,0.0473693,-0.01995809,0.021926343,0.022857985,0.008903067,-0.08235173,0.0075580934,-0.00077992043,-0.0055012684,0.016703911,-0.025351105,0.0036839144,-0.015129308,0.015719784,0.0009332802,0.083296485,-0.024262005,0.017031955,0.021598302,-0.0052585173,0.008948993,0.0117111085,0.038866445,-0.015339255,0.020089308,-0.000240701,0.000326197,-0.0133578805,-0.022018196,0.03259428,0.011035342,0.014328886,-0.0097559765,0.036005918,-0.015746027,-0.0013179097,-0.0030097878,-0.002568571,-0.010175871,0.027161898,-0.040414806,-0.0033493114,-0.0066756597,0.035113644,0.033512797,-0.012170368,0.03642581,-0.006823279,0.015273647,-0.0060195755,0.0002320899,0.0022585709,-0.051279563,0.012570579,0.0004883729,-0.0036281473,-0.009486982,0.029681263,-0.012150685,-0.034142636,0.0029753433,0.013475976,-0.02134899,-0.01529989,-0.017373117,0.015352378,-0.0066789403,-0.017045075,-0.036294594,0.00056013215,-0.04610962,0.031150892,0.027083168,0.006498517,-0.012131003,-0.04225184,0.017071318,-0.00052691787,0.0060917446,0.024891846,0.050019883,-0.0027440735,0.007125078,0.009795342,0.030757241,0.022621794,-0.038315333,0.010995977,-0.010733542,-0.022411847,0.029602533,-0.025889095,-0.029313855,0.015457351,0.008706241,-0.007361268,0.0012646029,-0.0039529093,0.017189413,-0.052066866,0.011796399,0.024183275,-0.0014934123,-0.005721057,-0.049941152,0.060044855,0.0222019,-0.017674917,-0.016270896,0.012295024,0.00067658717,-0.00070980145,-0.019787509,-0.019551318,0.0014499468,0.0055078296,0.020089308,-0.015549202,0.011330579,-0.0023668248,0.022385603,0.013023278,0.0100315325,-0.014066452,0.027398089,-0.050334804,-0.037921686,-0.005078094,-0.00993312,0.005117459,-0.014460103,0.005137142,-0.038446553,-0.029366342,0.0069873,-0.032095652,0.027398089,0.014893118,0.003946348,-0.041805703,-0.0010849998,0.028080417,0.013659679,-0.0060753427,0.026597666,-0.025705392,-0.0036937557,-0.0136990445,0.0051666657,0.028369093,0.005917882,0.010464548,-0.007335025,-0.0030048671,0.030835971,0.023619043,0.0059966124,-0.004464655,0.000043363085,0.004159576,0.016349627,0.010930368,-0.006255766,-0.019577561,-0.021558937,0.0042973533,-0.01638899,-0.0017451848,-0.031308353,0.005675131,-0.026440205,0.01995809,-0.016677668,0.007190686,0.0018649203,-0.039863694,-0.00784021,-0.039863694,-0.00008523973,-0.012531214,0.008660316,-0.013908992,0.00013193449,-0.017674917,-0.030547295,-0.0027998406,-0.0023537031,-0.011770156,0.012150685,-0.0028211633,0.0020945498,-0.0052125915,-0.034772478,-0.015444229,-0.020915974,-0.03634708,-0.008962114,0.03206941,0.014381372,0.0093164,0.011862008,-0.025836607,-0.01948571,-0.012990473,-0.020443592,0.02461629,-0.023750259,-0.025128037,-0.011173119,-0.027870469,-0.008535659,-0.008417564,0.018606557,-0.00558984,0.022884227,-0.0408347,-0.018685287,0.012203172,0.013620314,0.03409015,0.0002925727,-0.019997455,0.008561903,0.020915974,-0.014263277,-0.012846135,0.055635966,-0.0029343378,-0.012728039,0.018107932,0.017307509,0.02128338,0.032174382,-0.011009098,0.017504334,-0.02779174,-0.009329522,0.011186241,-0.011960421,-0.003237777,0.020889731,0.009546029,-0.0056423265,-0.008023913,-0.031019675,0.010162749,0.044744965,0.003050793,-0.04563724,-0.0077811624,-0.0017140207,-0.016270896,0.0073022204,-0.026925707,-0.020627297,0.018186662,0.048550252,-0.037606765,-0.0016123276,-0.041044645,0.027371846,0.0030179888,0.0027293116,-0.03398518,0.024550682,-0.003562539,0.02747682,0.017031955,0.013134812,-0.040624753,0.009329522,-0.010805712,0.006737988,-0.009047405,-0.0050026444,0.03283047,0.00248328,-0.0150637,0.010280844,-0.0046582,-0.009034283,-0.015706662,0.028500311,0.0088308975,-0.008594707,-0.00065567443,0.03634708,-0.042960413,-0.014643806,0.020128673,0.0046155546,0.010569521,0.0013630155,0.053431522,0.014184547,-0.01405333,0.009106453,0.02103407,0.007203808,0.002299576,-0.0116455,0.018908355,-0.021480206,-0.019748144,0.00067453686,0.0004937036,-0.015417986,-0.0019157667,-0.045374803,0.025180522,0.0050420095,-0.02646645,-0.019931847,0.00846349,-0.025036184,0.00025013223,0.025246132,0.027293116,-0.01373841,-0.0064394693,0.02368465,-0.008260104,-0.026571423,-0.0065411623,0.006327935,-0.001600026,0.02802793,-0.020168038,0.056160834,-0.00070365064,0.02368465,0.013141372,0.017189413,0.0044679353,0.012216293,0.0069216914,-0.0049862424,0.0045860307,0.020233646,-0.003595343,0.0057276175,0.019210154,-0.022871105,0.047185596,-0.017320631,-0.028920205,-0.006869205,-0.024314491,0.002158518,0.027371846,-0.0013982801,-0.002958941,-0.0039496287,0.013338198,-0.010346453,-0.027371846,-0.017530577,-0.024747508,-0.011658622,-0.022857985,0.0047074063,-0.024393221,0.0093164,0.015785392,-0.045164857,-0.013102007,0.0061671943,-0.018934598,-0.005137142,0.027765496,0.027844226,-0.015903488,0.003874179,0.043773957,-0.01777989,0.021362111,-0.048812687,0.025101794,0.033276606,-0.00057735434,0.040650997,-0.013580949,-0.03542856,0.02003682,0.05101713,-0.0066953423,0.011875129,-0.00059908716,0.0036576712,-0.028998936,-0.0050124857,-0.021414598,-0.025180522,0.010917246,0.010320209,0.024708143,0.01700571,0.0033788353,0.016034706,0.0009906876,-0.0068888874,0.011022219,-0.0020322218,0.022674281]},{"id":"interface-GatewayFavoriteMemeCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeCreateDispatchData\nDescription: FAVORITE_MEME_CREATE — favorite meme/media added","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeCreateDispatchData"},"embedding":[0.038916126,-0.008536883,-0.04497279,0.032146912,0.0073447335,-0.027460534,-0.0048782183,-0.009612557,-0.007385842,-0.0123873865,0.0054229074,-0.0056010443,-0.015456827,-0.0032544294,0.009790694,-0.023431892,-0.03126993,0.011565215,0.025898406,0.0445343,0.0039772554,0.024075927,0.02169163,0.0022301406,0.00890686,0.010085305,-0.028748602,0.013552129,0.016196782,-0.018307023,0.00514885,-0.03126993,0.014250975,-0.014675764,0.011743352,0.049796198,-0.016470838,-0.028255299,-0.034558617,0.032009885,-0.0147305755,-0.036339987,0.031434365,0.026679471,-0.060292587,-0.008194311,-0.020622807,-0.0012341139,-0.012791621,0.012586078,-0.015100553,-0.0028245023,-0.0037066238,0.021102406,0.019074382,-0.03653183,-0.013209558,-0.0026669193,-0.0354356,0.042752925,0.013606941,-0.027803104,-0.0002858331,-0.027419426,-0.009530339,0.010482688,-0.06308797,0.03170842,0.030858843,0.025665458,0.019499172,-0.0131684495,-0.052235305,-0.011654283,-0.011914638,-0.024445904,-0.017567068,0.0046966556,0.039546456,-0.09460455,0.011873529,0.06297835,-0.04713784,-0.06840468,-0.031160306,0.011935192,-0.057442393,-0.040587876,-0.036477014,-0.009619408,-0.0031773509,0.022404177,-0.03710735,-0.0065054335,-0.032146912,-0.020225422,0.004991267,0.013113638,0.01350417,0.037436217,0.019101787,-0.063964956,-0.05239974,-0.014840199,0.051988654,-0.038669474,-0.003370904,-0.007933957,-0.040396035,0.0018344705,-0.058429,-0.032777242,0.000048682625,0.022089012,0.008221717,-0.011421335,0.05810013,-0.03165361,-0.0038881868,0.00050186727,-0.035463005,0.010647123,0.044232834,-0.0545922,0.005354393,-0.0073652877,0.041163396,0.012127032,-0.04543869,-0.017772611,0.04382175,-0.0059264875,0.07964103,-0.023253756,-0.0091809165,0.013086232,-0.021143515,-0.0061902674,-0.027405722,0.021129811,0.0155116385,-0.031571392,0.042780332,0.017183388,-0.015045742,-0.008242271,-0.047302276,0.009660517,0.033709038,-0.02017061,-0.049686573,0.05119389,0.016703788,-0.01982804,-0.018498862,-0.041684102,-0.0157994,-0.02907747,-0.027707186,-0.031681016,0.0073447335,-0.05952523,-0.0402316,0.006676719,-0.00077463983,0.02850195,-0.010962289,-0.0069473507,-0.039820515,-0.00890686,0.03825839,-0.041547075,-0.06676034,-0.014675764,-0.0025453065,-0.025610646,-0.03376385,-0.025788784,-0.02174644,0.023582624,0.032640215,0.012414792,-0.035709657,-0.040121976,-0.021677926,-0.025418807,0.035079323,0.038121358,0.043931372,-0.05952523,-0.038450226,0.015771993,0.017539661,-0.016648976,0.020855755,-0.021349058,0.0344764,0.0041793725,0.029104877,-0.03242097,-0.016977845,0.020225422,0.026446521,0.01159262,-0.016169377,-0.02687131,-0.017484851,0.014867604,0.0036381097,0.011852975,0.05952523,-0.0051933844,0.037381403,-0.009071294,-0.021307949,0.015402015,-0.04075231,0.027227584,-0.019321034,0.012572375,-0.025583241,0.052618988,0.046918597,-0.04034122,-0.0055736387,0.0060326844,-0.033489794,-0.02145868,-0.044040997,0.01671749,-0.022596018,0.013572684,-0.018197399,-0.057935696,-0.020842051,0.0106813805,0.024939207,-0.011517255,0.04661713,0.04664454,0.0058476957,-0.017183388,0.0027046022,0.015867913,-0.028556762,0.0149909295,-0.006423216,0.0017411198,0.009749586,0.030612191,0.07755819,0.02619987,0.021444978,-0.018430348,0.023733355,-0.06566411,-0.019362142,-0.012147586,0.04631567,0.012647741,0.0340105,-0.032777242,-0.01508685,0.034640834,0.013928958,0.03247578,-0.0073310304,0.025692863,-0.02140387,0.05886749,0.018855136,-0.028145676,0.047110435,0.03458602,-0.021088703,-0.006954202,0.01882773,0.02888563,0.019691011,0.026706876,-0.058703057,-0.052618988,0.008180608,0.03170842,-0.0038333754,0.005947042,0.062485047,0.018718109,0.0060429615,0.007303625,-0.06637666,-0.0032561424,0.029707802,-0.055825457,0.038669474,0.039354615,-0.028556762,-0.016498245,0.030721813,0.051604975,0.05322191,-0.055441774,-0.0042650155,-0.019170303,0.024678852,-0.00045947405,0.023020806,-0.009386459,0.036093336,0.011291157,-0.012969757,-0.052701205,0.01231202,-0.019101787,-0.046151236,0.028776009,0.049631763,0.017690394,-0.004641844,0.011962597,0.014401707,-0.009057591,0.07065195,-0.042561088,0.033517197,-0.018142588,-0.008810939,-0.048590343,-0.0055633616,0.012784769,0.029159687,0.008879454,-0.012634038,0.0066219075,0.07344733,-0.016731193,-0.017251901,0.013332884,-0.002586415,0.055578806,0.0074132476,-0.03702513,-0.024171846,-0.03420234,0.00529273,-0.015936427,-0.0025418808,0.03625777,-0.02054059,-0.007995619,-0.03074922,0.030255917,-0.029899642,-0.034640834,0.0069199447,-0.06391014,-0.0016169376,-0.03253059,-0.02226715,0.03664145,-0.0354356,-0.0070569734,0.004799427,0.028364923,-0.007098082,-0.021335354,-0.024994018,0.01034566,0.025583241,-0.008009322,-0.023294864,0.027117962,-0.027131665,0.007385842,-0.021568304,-0.0023431892,-0.0059162104,-0.054784037,0.02040356,-0.0039053154,0.028282706,-0.0013223261,0.021212028,0.0037717125,0.03285946,0.0000016492945,0.016388621,0.0023603179,-0.09169955,0.031489175,0.039820515,-0.011681689,-0.018978462,-0.03433937,-0.054235924,0.05656541,0.020129502,0.010208632,-0.016621571,0.018457754,0.019225113,0.014936118,0.009646814,0.0012435346,-0.036230363,0.009783843,0.03716216,0.054729227,0.046863783,-0.011900934,0.041410048,-0.018074073,0.01825221,0.045192037,-0.025103642,0.010544351,-0.024870692,-0.032448374,-0.03768287,-0.0002138931,-0.013880998,-0.0027131664,-0.0058648246,0.016690085,0.033297952,-0.015991239,0.035846684,0.016100861,0.031790636,-0.03510673,-0.04343807,-0.023678543,0.031543985,0.031297334,0.059086736,-0.019170303,-0.0060600904,-0.018567376,-0.023980007,-0.016361216,-0.053139694,0.009831803,0.045027602,0.026240978,-0.04831629,-0.019636199,0.0036107039,0.01786853,-0.00046247157,-0.019101787,-0.032366157,-0.019951366,-0.06155325,0.00068171736,-0.010619718,-0.012442198,0.0075023165,0.055935077,-0.0123873865,-0.023911493,0.0177178,0.016909331,-0.007611939,0.030447757,-0.020842051,-0.012031112,-0.016607868,-0.013785078,0.026556145,-0.008632802,-0.013970067,-0.009968831,0.027090557,0.050015442,-0.027981242,-0.070377894,-0.01518277,-0.0007348159,0.05810013,0.0026069693,0.004247887,0.026706876,0.021047594,-0.03658664,-0.02318524,0.07690045,0.055249937,-0.00582029,0.031790636,-0.019663606,-0.005255047,0.03855985,-0.0013129053,-0.016484542,0.0006273341,-0.019704714,0.011133575,-0.084300004,0.0056113214,-0.040396035,-0.007653048,-0.023390783,-0.047028217,-0.010208632,0.027844213,-0.0011715946,0.032393564,-0.0043951925,-0.024062224,-0.023377081,0.0139221065,0.0024117036,-0.02662466,0.002213012,-0.007611939,-0.008591694,-0.027844213,0.057497203,0.00029675258,0.0046384186,-0.0093522025,0.021719035,-0.002129082,0.009448122,-0.0019406676,-0.009646814,0.006690422,-0.08676652,0.0007780656,-0.029187094,0.014716873,0.0052036615,0.0031208266,0.026213573,-0.003115688,-0.037491027,-0.006029259,-0.017046358,0.013223261,0.0070638247,0.008057282,0.0006504577,0.01350417,0.012784769,-0.002937551,-0.012113329,-0.014346896,-0.008070985,0.014168758,-0.049604356,0.0062861876,-0.028255299,0.02414444,0.010174374,0.033023894,0.047603738,-0.008824643,-0.032119505,0.0049981186,0.014744278,0.016073456,-0.028118271,-0.02184236,0.009934574,-0.02744683,0.015045742,0.011798163,0.019101787,-0.024802178,-0.03644961,-0.014716873,-0.013778226,0.016840816,0.025350293,-0.015045742,0.018375536,0.034065314,0.026336899,0.013154747,-0.007844888,-0.03595631,-0.025446212,-0.017841125,0.004497964,-0.019197708,0.027419426,-0.007872294,-0.029488556,0.010756746,-0.0077078594,-0.055880267,0.010893774,0.011757054,-0.010962289,0.014785387,-0.0041348385,-0.024117036,0.0030951337,-0.02260972,-0.008824643,0.005464016,-0.021431275,-0.037354,-0.03908056,0.032503188,0.059415605,-0.008276528,-0.0067075505,0.0038676325,-0.0038059696,-0.018800326,-0.0031088365,-0.04779558,-0.05733277,-0.040450845,-0.012428495,0.0028930164,-0.0007061256,-0.01422357,-0.041245613,-0.033352762,-0.034668237,-0.024212955,0.0017899362,-0.0454935,0.05494847,-0.0191566,-0.02902266,-0.015073147,-0.015004633,0.035545222,-0.036723666,-0.00833134,-0.02831011,-0.017690394,-0.026885014,0.035271164,0.009961979,-0.012702552,-0.022787858,0.02965299,0.01072934,0.0089479685,0.025966922,0.03343498,0.007748968,0.010270295,0.019375846,0.022801561,0.019142896,-0.033928283,0.009790694,0.028419733,0.0024014264,0.024432201,-0.003946424,-0.013319181,0.0445343,-0.0445343,0.0126203345,0.0039395727,0.03631258,0.018238507,0.028090864,0.00021496363,0.05272861,0.010407323,-0.007844888,-0.007433802,0.0068754107,0.026939824,0.010996546,0.07218667,0.007577682,-0.031297334,-0.050371718,0.01666268,-0.036805883,0.03573706,-0.008673911,0.032256536,0.0072488133,-0.02274675,0.017210793,0.06374571,-0.03677848,0.021157218,-0.0006496013,-0.01379193,0.006313593,-0.009619408,-0.009824951,0.012483306,-0.023788167,0.01518277,0.003836801,0.012544969,0.01671749,-0.01853997,-0.024267767,0.011825569,-0.0013051975,-0.013346586,0.0019201133,0.02476107,-0.03990273,0.00034107277,-0.004874793,0.030447757,0.017621879,0.0044088955,-0.030118888,-0.027186476,0.03190026,-0.015717182,-0.0069713304,-0.0130519755,-0.0020588548,0.020855755,-0.006680145,0.010715637,0.0097290315,-0.034750454,-0.0029067195,-0.01585421,0.022075308,0.057442393,0.0047822986,-0.008393003,0.0090918485,-0.0277757,0.0040560467,0.016635273,0.023363378,-0.068021,0.033243142,-0.003031758,-0.024555527,-0.003692921,-0.014840199,0.011407631,-0.0021479235,-0.0054708673,-0.0032373008,0.0015561312,0.019184005,0.014977227,-0.012627186,-0.03760065,0.0067315307,-0.053660404,0.011311712,-0.028913036,0.017553365,-0.045822367,0.026131356,0.04228703,-0.015826805,-0.0028656109,0.055633616,0.018567376,0.05497588,0.02270564,0.020293938,-0.030639596,-0.021061298,-0.017772611,-0.019978771,0.0018259062,0.0057586273,0.011140426,-0.0046281414,0.0045904582,-0.0065054335,0.045192037,-0.016854519,0.0073515847,-0.012592929,-0.043355852,0.0094686765,-0.026021734,-0.0020006178,0.011085615,-0.06906242,-0.0043129753,-0.013154747,0.003477101,-0.010407323,-0.008804088,-0.020458372,-0.029488556,0.002514475,0.039546456,-0.070049025,0.0010054475,-0.005570213,0.028474545,-0.100853056,-0.018307023,0.07596866,-0.004775447,0.0027628394,-0.019375846,0.017649285,0.030667003,0.011805015,-0.0886301,0.004823407,0.0036107039,0.009804397,-0.028255299,0.01135282,-0.0072008534,-0.007653048,-0.0072008534,0.008064134,-0.0122161005,-0.032832056,-0.013942661,-0.011181534,0.032777242,0.040533062,0.009605706,-0.0340105,0.021075001,-0.0054126303,-0.019553982,0.025089938,-0.01838924,0.00018338281,0.000010471181,-0.001707719,0.020389857,-0.006594502,0.018087776,0.04324623,-0.03376385,0.00601213,-0.019704714,-0.00047446156,-0.0070432704,-0.036970317,0.012407941,-0.016196782,0.021609413,-0.031489175,-0.02662466,0.008968523,-0.036668856,0.0368881,-0.0019509448,-0.004426024,0.024295172,-0.0048542386,-0.0009711903,0.005933339,-0.02255491,0.015771993,-0.0047480413,0.047000814,-0.036367394,0.04143745,-0.013997473,0.026364304,0.004631567,0.021636818,0.015881617,0.007885996,0.04516463,0.02274675,0.034366775,-0.019238817,0.0040012356,0.011256901,-0.014401707,0.018183697,0.050590962,-0.0019475191,0.011613174,-0.004364361,0.012791621,0.02581619,-0.013045124,0.016114565,-0.01034566,0.036285177,0.007228259,0.028529357,-0.020787241,0.015580153,-0.0052139387,-0.024240362,0.018307023,-0.024898099,-0.008530031,0.011188386,-0.029981859,0.016635273,-0.040724903,-0.027857916,-0.024994018,-0.023198944,0.013113638,-0.0067794905,0.0072967736,0.006015556,0.020842051,0.0017608176,-0.004583607,-0.010119563,0.008982225,0.019197708,0.0022472693,-0.0032390137,0.02643282,0.018759217,0.0010140117,-0.010146969,-0.00071212056,-0.023377081,0.005018673,-0.0058613988,-0.02715907,0.019677307,0.0044671325,0.010989695,0.015073147,-0.0029649565,0.025596945,-0.018416645,0.022911184,0.008975374,-0.017361525,-0.007933957,0.008660208,-0.021143515,0.0031585095,-0.006317019,0.033791255,-0.0037100497,0.0062245247,0.020417264,-0.0044671325,-0.0036004267,0.001557844,-0.0032338751,-0.0315988,0.0047206357,-0.03606593,0.014086541,-0.044369865,0.026885014,0.03477786,-0.027542751,0.01959509,-0.0116953915,0.014278381,-0.004727487,0.010119563,-0.0065876506,-0.0039395727,-0.0028073736,-0.019101787,-0.035188947,0.024007412,-0.009215174,0.019088086,-0.01188038,0.0021479235,0.033160925,0.022308258,-0.03074922,0.049549546,0.030447757,0.006591076,-0.012497009,-0.007173448,-0.037545837,0.035764467,-0.0076187905,0.0009480667,0.03836801,-0.005727796,0.05259158,-0.03702513,-0.00416567,-0.012709403,-0.017060062,0.01767669,-0.008447814,0.0061286045,-0.0058374186,-0.023500407,-0.025213264,0.04075231,-0.038587257,-0.015292393,0.034613427,0.013908404,-0.008872602,-0.035600033,0.0017000112,0.04727487,-0.012949203,0.026542442,0.0041451156,0.030831438,-0.042506274,0.01556645,-0.032092102,-0.010578609,-0.02700834,0.027597561,-0.018704405,0.001827619,0.009633111,-0.018183697,0.012065369,-0.0040834527,-0.002500772,0.05689428,-0.036148146,0.007735265,-0.04362991,-0.00023037934,-0.040313818,-0.00023359095,0.0040971553,-0.019225113,-0.013106787,-0.011852975,0.026062842,0.0041177096,0.012010558,0.0074063963,0.031050682,0.0010242888,-0.016868223,0.0056969645,-0.007111785,-0.029241905,-0.0065054335,0.008728722,0.012257209,0.021417571,0.023678543,0.0051317215,0.0054914216,0.035846684,-0.013278073,0.002286665,0.0018824305,-0.01207222,0.007831185,0.018169994,0.001973212,0.007748968,0.03713475,0.0006029259,0.022856371,-0.0040012356,-0.0059025073,0.00857114,-0.03151658,0.008516328,-0.01796445,0.019923959,0.04478095,0.025446212,0.00092922524,-0.0015792547,0.002588128,0.026843905,-0.0031824894,0.011859826,-0.012729958,0.022719344,-0.0147579815,-0.025117343,-0.003836801,-0.034037907,0.012510712,-0.008728722,0.009968831,-0.023925195,0.010756746,0.015114255,-0.019526577,0.03535338,0.02040356,-0.045027602,0.015497936,-0.014785387,-0.031790636,-0.016676381,-0.0036997725,-0.042506274,0.023637434,0.020773537,-0.014182461,-0.02001988,0.03126993,0.008783534,0.013113638,0.033818662,0.051002048,0.013421953,-0.013757672,-0.012174992,0.012654592,0.024295172,-0.0046623982,0.032146912,-0.019416954,-0.014662061,-0.0007579395,0.021157218,0.00914666,0.015018336,0.00550855,-0.015552747,-0.004244461,0.010071603,0.015744587,0.010955437,0.013696009,0.009592002,0.005039227,-0.01853997,-0.0062759104,-0.0063821073,0.016799707,0.020910567,-0.05837419,0.008735574,0.031872854,0.0022438434,-0.033352762,0.008413557,-0.026898716,0.032969084,-0.022568611,-0.025446212,-0.011222643,0.0131410435,-0.011530957,0.0028844522,0.094659366,-0.024062224,0.004953584,0.0024356835,0.012202398,-0.029817425,-0.013586387,0.04464392,0.0039053154,-0.0075502764,-0.021993091,0.015018336,0.03677848,-0.02831011,0.022308258,0.010743043,-0.032557998,-0.016155673,0.014127649,-0.037847303,0.04253368,-0.02356892,-0.0071049333,0.025446212,0.016320108,-0.03080403,-0.029132282,-0.012805323,-0.001094516,-0.016004942,0.011715946,-0.009907168,0.036148146,0.013408249,-0.0016006654,-0.008132648,-0.0021068149,-0.042095188,0.009057591,-0.0030882822,-0.017046358,0.0040628985,-0.033407576,0.014346896,-0.0017762333,-0.0025932665,-0.016402325,-0.039573863,-0.0021068149,-0.024445904,0.013305478,0.01345621,-0.0023791592,-0.021102406,0.007454356,-0.008125797,-0.009756437,0.038724285,-0.0031225395,-0.019293629,-0.034311965,0.01714228,0.0013711426,-0.034394182,0.038148765,0.046754163,0.00445343,-0.012085923,0.028227894,0.039272398,-0.020266531,-0.015840508,-0.01988285,0.001250386,0.008290231,0.017416336,-0.0116063235,-0.025007721,0.028611574,0.041464858,-0.0034514081,0.013894701,0.014812793,0.04368472,-0.053139694,0.013394547,0.009441271,-0.0012906382,-0.0069918847,0.012846432,-0.003381181,0.013175301,-0.015867913,0.028282706,-0.007885996,0.017347822,-0.0031054108,0.008804088,-0.018361833,-0.001865302,0.011030803,0.03598371,0.0072008534,0.03792952,-0.049741384,0.016388621,-0.015347204,-0.009016482,-0.001863589,0.0008114663,-0.012702552,-0.012579226,0.028913036,0.010544351,0.02303451,-0.0048919213,0.008817791,-0.029899642,-0.02806346,-0.027419426,-0.034174934,0.051413134,0.021047594,-0.000047451507,-0.011044506,0.011688541,0.04138264,-0.019663606,-0.012750512,0.014908712,-0.011167832,0.011969449,0.0068548564,-0.034448992,-0.020513183,0.021732738,-0.016621571,0.0015535619,-0.049494732,0.029187094,-0.009592002,0.020855755,-0.019225113,0.0124764545,-0.005464016,0.009105551,0.022664532,0.0004997262,-0.02145868,0.019101787,0.006597928,-0.009249431,0.007838037,-0.0028587594,0.03036554,0.0040560467,0.0064129387,-0.007824333,-0.00016111568,-0.017155983,-0.016196782,-0.018553674,-0.021540897,-0.0139221065,0.019334737,0.007803779,-0.020444669,-0.004463707,-0.017018953,-0.04439727,-0.027213883,-0.019663606,-0.006580799,-0.005967596,-0.025994327,-0.013874147,-0.009831803,0.023719652,-0.043876562,-0.028830819,-0.005810013,0.010030494,-0.010434729,-0.0036175554,-0.015127959,0.009222025,0.0003530628,-0.014853901,-0.005330413,-0.003042035,0.009955129,0.0014996069,-0.04637048,-0.034120124,-0.052756015,-0.01911549,-0.006892539,0.025172155,0.024788475,0.021088703,-0.01786853,0.015963834,-0.015621262,-0.009249431,0.023514109,-0.003898464,-0.015634965,0.016073456,0.018169994,0.002514475,0.011674837,0.017114874,0.0028776007,-0.008872602,0.010784152,0.019088086,0.018786622,0.014237273,0.015032038,0.0062690587,-0.030584786,-0.0027851064,0.014579844,-0.015593856,-0.037847303,0.03650442,0.034037907,-0.022184933,0.028529357,0.0071528936,0.02082835,0.024171846,-0.004090304,0.0004065896,-0.014716873,-0.040779714,-0.0100579,0.00488507,0.0100579,0.008701317,-0.0021462105,0.032146912,-0.012120181,0.0016434869,-0.049796198,0.009763288,0.0039806813,-0.023377081,-0.047028217,0.012449049,-0.02706315,-0.0010739617,-0.012592929,0.014264679,0.018622188,-0.004415747,0.011620026,-0.023240052,0.016594164,0.010167523,-0.0042067785,-0.017197091,-0.012017409,-0.017334118,0.006101199,-0.031626202,-0.02485699,0.004535647,0.024747366,-0.007036419,-0.028803414,0.003898464,-0.012435346,-0.0012914947,0.030392945,-0.01853997,0.015703479,0.004487687,0.007879145,-0.0459868,-0.037052535,0.00409373,-0.0010936595,-0.0001765314,0.02274675,-0.0031345293,-0.021143515,0.0107773,-0.0053338385,-0.003932721,-0.013257518,0.02404852,-0.019677307,-0.04143745,-0.012236655,-0.0051557017,-0.015484232,-0.0411908,-0.017073765,-0.004415747,-0.000073331714,0.007817483,0.024774773,0.015497936,0.020554291,0.007865442,0.00394985,-0.008454666,0.0021753293,0.029433746,0.011099317,0.0040971553,0.010996546,-0.0022729621,0.01700525,0.012538117,0.021417571,0.015237581,0.008338191,0.0155116385,-0.0055016987,0.026528738,0.00080461486,0.03765546,-0.012154438,0.0051351474,0.009400163,-0.028556762,0.049604356,-0.013065678,-0.010434729,0.0008714163,0.0109143285,0.0018207676,0.031461768,0.020910567,-0.0063375733,0.025185859,-0.004371213,-0.030475162,-0.033983096,0.036915507,-0.023390783,-0.026569847,0.0311329,0.013380844,-0.0058545475,0.018019263,-0.0038162468,-0.0498236,0.00890686,-0.0036278325,-0.016046051,-0.01901957,0.0061799902,-0.011990003,-0.0014713447,-0.0030762923,0.021499788,0.013463061,0.010592312,-0.022308258,-0.018019263,0.02255491,-0.010516946,0.027241288,0.002033162,-0.01695044,0.004641844,0.016539354,-0.0010371353,0.02720018,-0.013202706,-0.016347513,-0.014045432,0.010174374,-0.029104877,-0.026926123,0.002826215,-0.00531671,-0.0019440934,0.023774464,-0.049905818,0.014100244,0.008502625,-0.01800556,-0.011181534,0.01959509,0.0042513125]},{"id":"interface-GatewayFavoriteMemeDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeDeleteDispatchData\nDescription: FAVORITE_MEME_DELETE — favorite meme/media removed","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeDeleteDispatchData"},"embedding":[0.038933534,0.003621969,-0.06260782,0.03166856,0.0043512713,0.013485084,-0.022987055,0.004631772,0.017096534,0.0015971024,0.028330598,-0.03427722,-0.03382842,0.029116001,0.022243727,-0.010245298,-0.008604367,0.01849904,-0.008541254,0.07511816,0.013379896,0.04025189,0.003839357,0.0012675137,0.009838572,0.004842148,-0.0025630777,-0.012426193,0.036212675,-0.012825907,0.0126295565,-0.032874715,0.026549418,-0.02028022,0.018134387,0.02558169,-0.0136533845,-0.03441747,-0.03396867,0.027110418,-0.027068345,-0.044122804,0.0047965664,0.022103477,-0.05107923,0.013085371,-0.024221258,0.004786048,-0.0011710916,-0.0054908064,-0.006002721,-0.0015971024,-0.017629486,0.039101835,0.011493527,-0.024263334,-0.0036149563,0.0075524887,0.004319715,0.030490456,-0.00930562,-0.017994137,-0.008990056,-0.015637929,-0.031219758,0.009375745,-0.050574325,0.04392645,0.025399363,0.0143336,0.0026524873,-0.02591829,-0.064515226,-0.034697972,-0.009375745,-0.032397863,0.020392422,0.022720579,0.030967308,-0.09868024,0.021233924,0.07006914,-0.032930814,-0.047713216,-0.041373894,0.018863691,-0.083308786,-0.029761154,-0.0143897,0.02280473,-0.015076928,0.040616542,-0.039354287,-0.0069634365,-0.042215396,-0.043113,-0.0022229701,0.015820256,0.015483654,0.052565884,0.019971669,-0.063168816,-0.06518843,-0.016184906,0.047657117,-0.044767957,-0.0053856187,-0.008295816,-0.042692248,0.00030526397,-0.018414889,-0.03144416,-0.020308271,0.026184766,-0.004779035,0.00791714,0.05180853,-0.016549557,0.013877786,0.019452743,-0.027432995,0.00805739,0.03753103,-0.07640847,-0.013716497,0.002393024,0.039550636,-0.004438928,-0.05161218,-0.022159576,0.05242563,-0.0064410036,0.057951503,-0.056324597,-0.0019740255,0.039214037,-0.0073491256,-0.010483724,-0.024599936,0.03197711,0.023674283,-0.028512925,0.03489432,0.023968808,-0.039803088,-0.0034133461,-0.0286672,0.0013078358,0.03719443,-0.0054522376,-0.02869525,0.042748347,0.037727382,-0.0064620413,-0.03228566,-0.039859187,0.0043021836,-0.02336573,-0.028176323,-0.032201514,-0.021822976,-0.067488536,-0.061541915,-0.0058940267,-0.010013885,0.026815893,0.0036009313,-0.004600216,-0.026773818,-0.019635068,0.022412028,-0.03778348,-0.03716638,-0.04804982,-0.03767128,-0.0043758154,-0.005483794,-0.04067264,-0.015539754,0.017040433,0.02478226,0.006448016,-0.022706553,-0.023435857,-0.03702613,-0.028064122,0.03495042,0.047068063,-0.0054522376,-0.028863551,-0.017629486,0.025553638,0.011900254,-0.0216687,0.005736245,-0.021738825,0.023716357,-0.019564943,0.02158455,-0.024922512,-0.01699836,0.056548998,0.03699808,0.0005469769,-0.024347484,-0.023814533,-0.013828698,0.014326587,-0.0007266728,0.009130307,0.070125245,0.02611464,0.026577467,-0.03399672,-0.022426052,0.007152775,-0.021542475,0.038400583,-0.02005582,0.03753103,-0.010371524,0.043505702,0.05427694,-0.013344834,0.00037034895,-0.0008831398,-0.016773958,-0.019326517,-0.06698363,0.008239716,-0.020182045,0.0107572125,-0.021794926,-0.04636681,-0.0029294821,-0.005929089,0.0076436517,-0.020616822,0.042355645,0.035230923,-0.009747409,-0.024950562,0.0035220403,-0.009025119,-0.014866551,0.01352716,0.012538394,-0.0056345635,-0.002556065,0.02914405,0.05433304,0.05480989,0.019494819,-0.05539894,0.009200432,-0.056689247,-0.0005154205,-0.0044213966,0.03413697,0.02577804,0.039578687,-0.025665838,-0.0017277107,0.02033632,0.019144192,0.041570246,0.0145580005,0.006591773,-0.035539474,0.06294442,0.008372954,-0.013400934,0.048105918,0.017924013,-0.01447385,0.019789344,0.035904124,0.016297108,0.01094655,-0.0119633665,-0.041738544,-0.044038653,0.0088287685,0.01622698,-0.0037481943,0.013632348,0.025820116,0.035623625,0.0024982118,0.023407806,-0.072649755,-0.0016558323,0.031191709,-0.053996436,0.008814743,0.03999944,-0.012636569,-0.012356068,0.0011588197,0.034165017,0.05702585,-0.045441158,-0.030181905,-0.03991529,0.015343403,0.0045160656,0.006149984,0.005799358,0.010981613,0.013576247,-0.020630846,-0.050237726,-0.011816104,-0.010701112,-0.041850746,0.0081064785,0.028484873,0.0042846524,0.027418971,-0.013464047,0.04631071,-0.022187628,0.049592573,-0.047292463,0.036913928,-0.014529951,0.0028733818,-0.0577832,0.014144261,0.029340401,0.025792064,0.015539754,-0.02558169,0.00005697676,0.06311272,-0.00035654302,-0.041373894,0.03983114,-0.012398143,0.03969089,0.02903185,-0.022243727,-0.009789484,-0.010553849,0.01008401,-0.002045904,-0.0108063,0.017853888,-0.008618392,0.012874994,-0.046703413,0.0071492684,-0.020841222,-0.041598294,0.013435997,-0.048105918,0.0074963886,-0.012412168,-0.015441579,0.051499978,-0.018989917,-0.018120363,0.0044143843,0.020308271,0.0058624703,-0.020616822,-0.044459406,-0.0029943478,0.035876073,-0.0052874433,-0.010981613,-0.0008393115,-0.01875149,-0.0032450457,-0.023449881,0.0066408603,-0.027306769,-0.038905486,0.027194569,-0.018330738,0.037979834,-0.0009309126,0.003783257,0.005185762,0.028246447,0.005844939,-0.004614241,0.0034256182,-0.081233084,0.036184628,0.03730663,-0.00999986,-0.000044704844,-0.028064122,-0.044908207,0.036605377,-0.00023601527,0.030069705,-0.024936536,0.01002791,0.039859187,0.026170742,-0.010511774,0.013155496,-0.042439796,0.026100615,0.04875107,0.03472602,0.03495042,-0.028162299,0.058232002,0.008281792,0.018737465,0.035427272,-0.018947842,-0.025203012,0.011781041,-0.022454103,-0.029648952,0.00013148483,-0.010217248,0.004509053,-0.01016816,0.011717929,0.035623625,-0.0014375675,0.022313852,0.03155636,0.033127166,-0.070405744,-0.059185706,-0.020799147,0.008569305,0.015175102,0.053491537,-0.011858178,-0.001817997,-0.007566514,-0.052537832,-0.02416516,-0.07248145,-0.006030771,0.039718937,0.020518646,-0.030266056,-0.017657537,0.010147123,0.029368453,-0.016465407,-0.022369953,-0.030799007,-0.016731882,-0.065973826,0.005564438,-0.028302548,-0.032930814,0.008976031,0.04005554,0.01988752,-0.04072874,0.014109199,0.01575013,0.011570665,0.041850746,-0.017881937,-0.0153995035,0.010567875,-0.0056556007,0.011156926,-0.004400359,0.0004654563,0.0068301987,0.028302548,0.029817253,-0.02013997,-0.06883494,-0.0062516653,-0.0045896973,0.051135328,-0.011107839,0.012482293,0.023954783,0.005336531,-0.06973254,-0.02589024,0.06608603,0.05531479,-0.0018390345,0.019354567,0.012412168,-0.006644367,0.032622263,0.0040707705,-0.01705446,-0.01980337,-0.024459684,0.031247808,-0.07640847,0.030266056,-0.054389138,0.0062376405,-0.017755711,-0.01702641,-0.018849665,0.00997181,-0.012040504,0.015764154,-0.0075244387,-0.021037573,-0.038877435,0.018078288,0.0050349925,-0.049732823,-0.0034729526,-0.009207444,0.0004983275,-0.027517145,0.03497847,-0.016381256,0.013379896,-0.0005978177,0.029480653,0.026857968,0.009228482,-0.012370093,-0.0065461914,0.0054697692,-0.08061598,-0.004102327,-0.0076717017,0.017629486,0.0027085876,0.0062762094,0.039662838,0.010041934,-0.026240867,0.0023106267,-0.0070440806,0.014158287,0.0062937406,0.021374173,-0.023744408,0.016521508,0.008576318,-0.0022264766,-0.01883564,-0.020785123,0.0038323447,0.022496179,-0.051331677,0.00050753145,-0.008372954,0.022005301,0.009235495,0.037054177,0.03761518,-0.029284302,-0.034922373,0.013877786,0.019719219,0.0076857265,-0.041514143,0.0012263152,0.003891951,-0.033884518,-0.00061052793,0.01980337,0.02727872,-0.021149773,-0.02269253,0.00655671,-0.01294512,-0.013400934,0.00852723,0.0075244387,0.018681364,0.027292745,0.02002777,-0.0036289813,-0.019242367,-0.039466485,-0.019144192,-0.016086731,0.0072018625,-0.009018106,0.0037131316,-0.012903045,-0.033744268,-0.021991277,-0.016759934,-0.032622263,-0.0068652616,0.020616822,-0.015567804,0.013197571,0.01869539,0.011177964,0.013450022,-0.018709416,-0.015076928,0.023604156,-0.0144458,-0.030686807,-0.013330809,0.051191427,0.057951503,-0.007847015,-0.023758432,0.014922651,0.0006486585,-0.012552419,-0.016255032,-0.03716638,-0.041654393,-0.041766595,-0.026381116,0.0038078008,-0.019270416,-0.01591843,-0.029200152,-0.03464187,-0.03688588,-0.013464047,-0.013842723,-0.03444552,0.04056044,-0.03222956,-0.03413697,-0.00012293832,-0.02416516,0.028120223,-0.025848165,-0.005732739,-0.01569403,-0.0009747409,-0.025006661,0.028975751,0.0074402886,-0.017867912,-0.04603021,0.030434355,0.0031205732,0.016241007,0.026984194,0.017713636,-0.0030592137,-0.017966088,0.014375675,0.003117067,0.016465407,-0.023043156,-0.005203293,0.027797647,0.010273349,0.019158216,0.0027594282,-0.012510343,0.055511143,-0.049508423,0.020350346,0.023562081,0.040616542,0.01614283,0.020546697,-0.022089452,0.019761294,0.0213321,-0.027082369,-0.00398662,0.0014007518,0.026970169,0.0062236153,0.0866187,0.0022036857,-0.035904124,-0.056268495,0.008092453,-0.031079508,0.024880437,-0.008765656,0.011184976,0.0038323447,-0.022117501,0.020855248,0.037951782,-0.037138328,0.021851026,0.013407947,-0.024515785,0.020813173,-0.0027401438,-0.01144444,0.010911488,-0.035315074,0.0018530595,0.0014892849,-0.005185762,0.039242085,0.0046352786,-0.043505702,-0.0054241875,-0.015904406,-0.018092314,0.0088287685,0.024052959,-0.031808812,0.017811812,-0.008450092,0.030967308,-0.011030701,-0.008134528,-0.02577804,-0.04263615,0.015329379,-0.0023702332,-0.007608589,-0.015469628,0.002755922,0.023604156,-0.01911614,0.004666835,0.001967013,-0.026198791,0.005939608,-0.012475281,0.022930956,0.027082369,0.019733243,-0.008737605,-0.0028190347,-0.025848165,-0.003867407,-0.011381327,0.020841222,-0.047404665,0.036268774,0.0062236153,-0.019957645,-0.017853888,-0.013492097,0.007058106,0.017180685,0.005631057,-0.03413697,-0.02269253,0.025623765,0.0061745276,-0.01903199,-0.01861124,0.006644367,-0.050377976,0.012075567,-0.042551998,0.046479013,-0.035090674,0.0029627916,0.027124444,-0.008050378,-0.00852723,0.056408744,0.014586051,0.044627704,0.03671758,0.020953422,-0.03214541,-0.01066605,-0.047488816,-0.009628196,0.017236784,0.0052734185,0.023211455,0.004063758,0.002566584,0.001785564,0.040167738,-0.010301398,0.028274499,-0.0041444018,-0.03769933,0.02036437,-0.015848305,0.005588982,0.011072776,-0.07349125,-0.019635068,-0.006272703,-0.005911558,-0.011640791,-0.017924013,-0.009621183,-0.021963226,-0.008772668,0.04869497,-0.06417862,-0.0024245803,-0.0061710216,0.0433935,-0.09699724,0.014515925,0.074108355,-0.013141471,-0.0008362435,0.0056485883,0.020827197,0.054922093,0.03525897,-0.091443315,0.03175271,-0.0029505196,0.009396783,-0.039634787,0.027348844,-0.024754211,0.01994362,-0.010210236,0.017208735,-0.022454103,-0.02739092,-0.012019467,-0.020013744,0.04027994,0.03200516,0.019396642,-0.031079508,0.022874855,-0.0018197501,-0.010294386,0.023758432,-0.022229703,-0.018148413,0.014046086,0.0029785698,0.011991417,-0.013253671,0.0003129339,0.038120084,-0.02747507,0.010855388,-0.03444552,-0.0010799287,-0.018821616,-0.050574325,-0.0029329883,-0.020560721,0.0065041166,-0.02458591,-0.027517145,-0.011928304,-0.018092314,0.018961865,-0.008162579,0.006160503,0.00012162347,0.017208735,-0.0047018975,-0.00470891,-0.016535532,0.005855458,0.017615462,0.043898404,-0.03739078,0.03138806,-0.0038814323,-0.007608589,0.0028260474,0.014936677,-0.0023509488,0.009487946,0.02044852,0.019312492,0.03130391,0.0012008948,0.017264836,0.012839932,-0.006476066,0.017938036,0.041626345,-0.006363866,0.012187768,-0.016928233,0.003920001,0.014754351,-0.0004965744,-0.0071878373,0.0036465127,0.029761154,-0.008092453,0.029789204,-0.0060518086,0.01722276,-0.0031188203,-0.02402491,0.014291525,-0.024712136,-0.014908627,0.012720719,-0.013513135,0.027404945,-0.04103729,-0.046927813,-0.033856466,-0.012412168,0.000508408,-0.0045230784,0.023463907,0.013267696,0.01869539,0.010385549,-0.0017347232,0.002059929,0.0048211105,0.0071106995,0.002300108,-0.016170882,0.017264836,0.0072930255,-0.007152775,-0.024010884,0.0067846174,-0.023211455,0.010392562,0.0010036676,-0.008127516,0.004828123,0.016787983,0.013239646,0.04903157,-0.008912918,0.02402491,-0.00430569,0.015988555,0.0099157095,-0.0020564229,0.011774029,0.03155636,-0.01375156,0.015848305,-0.017236784,0.026465267,-0.024880437,0.024052959,0.006742542,-0.012433206,0.0018618252,0.0072649755,-0.0055819694,-0.029620903,0.0065812543,-0.02044852,-0.008232703,-0.042608097,0.045581408,0.03360402,-0.018092314,0.021963226,-0.003811307,0.026268916,0.008625405,0.0027454032,-0.023996858,-0.018400865,0.0036675502,-0.003621969,-0.05208903,0.01844294,-0.013842723,0.02747507,-0.002783972,0.0058870143,0.031219758,0.024796287,-0.008253741,0.03747493,0.0062411465,-0.0008371201,0.0062271217,-0.013064333,-0.027348844,0.03938234,-0.011493527,-0.016255032,0.041401945,0.0067740986,0.04569361,-0.027783621,-0.0074823634,-0.014081149,0.006139465,0.02758727,-0.009663259,0.01583428,-0.00083098415,-0.021963226,-0.031275857,0.047124162,-0.044375256,-0.0034974965,0.029480653,0.025090812,0.0033765305,-0.029228201,0.0069178552,0.0286672,-0.005308481,0.031135608,0.0039655827,0.028526949,-0.036465127,0.038877435,-0.029200152,-0.023842582,-0.01586233,0.012580468,-0.0063217906,0.008562292,0.00055398943,0.00050972286,0.016563583,0.0005158588,0.008702543,0.06440303,-0.03764323,0.0029452601,-0.052706134,-0.0033589993,-0.033295467,0.009908697,-0.014950702,-0.019705193,-0.029901404,-0.01900394,0.015231203,0.0076997518,0.032762513,0.008358929,0.03786763,0.00094581424,-0.022383979,-0.011093814,0.0024631491,-0.02577804,0.008190628,-0.007342113,0.013926873,0.026381116,0.018681364,0.00013006042,0.009067194,0.02022412,-0.031808812,0.006206084,-0.0047755293,-0.012671632,0.004670341,0.008379967,0.020518646,0.0024561367,0.02589024,-0.024431635,0.005564438,-0.020939399,0.008422041,0.016311131,-0.044066705,0.011738966,-0.011213026,-0.0034519152,0.06737633,0.042439796,-0.01022426,-0.007854028,-0.00060570677,0.014270487,-0.004263615,0.015539754,-0.01294512,-0.005687157,0.012727732,-0.018961865,0.01747521,-0.011255101,0.0070265494,-0.01377961,0.013393922,-0.03977504,0.017096534,0.012636569,-0.02744702,0.028232424,0.018092314,-0.02691407,-0.0029978543,-0.020883298,-0.010827337,-0.02325353,-0.008905906,-0.03999944,0.004091808,0.02192115,-0.011346265,-0.018414889,0.009747409,0.005669626,0.0151610775,0.041934896,0.053098835,0.035960224,-0.00038831853,-0.009754421,0.021710776,0.0213882,-0.0020371384,0.012846945,-0.011837142,-0.019326517,-0.009985834,0.024656035,0.0052769245,0.003934026,0.0023842582,-0.0015786946,-0.0064410036,-0.014228412,0.029116001,0.0035869062,0.011900254,0.009894672,-0.013828698,-0.02300108,-0.009838572,-0.0056801448,0.035230923,0.011016676,-0.07068624,0.0058659767,0.013947911,-0.013772598,-0.046703413,-0.0010124332,-0.017377036,0.0151610775,-0.0123280175,-0.030013604,-0.020911347,0.008646443,-0.0032871207,0.010511774,0.09699724,-0.036184628,0.01583428,-0.001204401,-0.0072299126,-0.01758741,-0.027993998,0.042551998,0.0009537033,0.0126295565,-0.03178076,0.019663118,0.03999944,-0.032397863,0.024642011,0.023155356,-0.02891965,0.0065321666,0.0108834375,-0.023632208,0.035707776,-0.013302758,-0.019536894,0.002086226,0.014614101,-0.03750298,-0.007243938,0.013218609,0.0051997867,-0.008674493,0.023534032,-0.017082509,0.005939608,0.004074277,-0.008344904,-0.0054627564,0.02424931,-0.0288916,0.00064296083,-0.020644872,-0.0015944727,0.003635994,-0.039326236,0.019957645,0.011465478,0.009158357,-0.03736273,-0.053295184,0.0059571397,-0.0070896624,0.022734605,0.017292885,0.000916011,-0.024599936,0.00041877918,-0.0076436517,-0.0133518465,0.025595713,-0.0050595365,-0.021177823,-0.021542475,0.044796005,0.017082509,-0.027909847,0.05450134,0.033407666,-0.004481003,-0.010708124,0.050209675,0.027839722,-0.024950562,-0.0066548856,-0.010231273,-0.0030679794,-0.012692669,0.016156856,-0.030434355,-0.012846945,0.02283278,0.036745626,-0.008457105,0.018232564,0.030686807,0.03391257,-0.04673146,0.014894602,-0.012615532,-0.006809161,0.0005785333,-0.0033274428,-0.0060272645,0.008309841,-0.019592993,0.011206014,-0.0035869062,0.016269056,-0.010294386,0.0027085876,-0.006044796,-0.010659037,0.010652024,0.032874715,-0.009579108,0.022622403,-0.035595573,0.009158357,-0.035623625,-0.00572222,0.004628266,-0.002393024,-0.011381327,-0.019368593,0.020392422,0.025048736,0.014852527,-0.011507552,0.009424833,-0.027615322,-0.033632066,0.00059212005,-0.039298188,0.03189296,0.021065623,-0.02716652,-0.000942308,0.0059325956,0.053351287,-0.0006797766,-0.015090953,0.022145553,-0.00794519,0.020490596,0.02019607,-0.017292885,-0.01903199,0.019550918,-0.012608519,0.0021581044,-0.044964306,0.002126548,-0.0013630594,0.014165299,-0.026409166,0.011935316,-0.008863831,0.01866734,0.021121724,-0.005455744,-0.01586233,0.009116282,-0.0051997867,0.011837142,-0.010855388,0.010736175,0.024095034,-0.008436067,0.00462476,-0.0064655473,-0.00064559054,-0.01716666,-0.03466992,-0.019508842,-0.014712276,0.0074402886,0.019410668,0.01291707,-0.038765233,-0.0073351003,0.0059220768,-0.029564803,-0.04089704,-0.007009018,0.000040842475,0.0096772835,-0.020981472,-0.0035220403,-0.008604367,0.008029341,-0.04611436,-0.024796287,-0.00930562,0.014684226,-0.013211596,-0.0145580005,-0.016465407,0.012769807,-0.009263544,-0.015217178,-0.004077783,-0.0005553043,0.024571886,-0.0013130952,-0.02891965,-0.01294512,-0.028709276,-0.009158357,-0.007713777,0.05206098,0.033435717,0.020574747,-0.020658897,0.018625265,-0.026282942,-0.009200432,0.0048316293,-0.011255101,-0.020602796,0.00052593934,0.018625265,0.008898893,-0.00855528,0.013120433,0.009452883,0.012482293,0.0074262633,0.029368453,0.014614101,0.0018828628,-0.01569403,0.008134528,-0.025764015,0.0006942399,0.0034659402,-0.016717859,-0.026900044,0.016437357,0.026633568,-0.019046016,0.03444552,0.009340682,0.022608379,0.022341903,-0.022468127,-0.03503457,-0.003948051,-0.025343264,0.010918501,-0.009880647,-0.0004707157,0.010680075,0.02028022,0.022748629,-0.012292955,0.00719485,-0.03741883,0.010385549,0.009186407,-0.03511872,-0.065244526,0.0133518465,-0.016507482,-0.0054522376,0.0027909847,-0.0026296966,0.025118863,-0.013618322,0.0031573891,-0.033491816,0.023393782,-0.009053169,-0.027418971,-0.017419111,-0.012706694,-0.022398002,-0.0013288733,-0.028681224,-0.027657395,0.007236925,0.028288523,-0.009487946,-0.042159297,-0.0028681224,-0.022902904,0.009663259,0.025932316,-0.0019722725,0.015427554,0.025427414,0.00097123464,-0.033660118,-0.012054529,0.005536388,-0.022033352,0.0023474426,0.01758741,0.0039936327,-0.026423192,-0.013891811,-0.003117067,0.003422112,-0.013716497,0.028274499,-0.036380976,-0.019186266,-0.006272703,-0.006647873,-0.017797787,-0.04030799,-0.01680201,-0.013183546,-0.008450092,-0.0033905555,0.026016466,0.009067194,0.012384118,-0.016241007,0.00067320233,-0.029396502,0.021037573,0.04089704,0.0033064052,0.01755936,0.01011206,0.007531451,0.0068231863,0.03534312,0.030967308,0.009018106,-0.00032235697,-0.0043758154,0.0014130237,0.0436179,-0.022734605,0.033519868,-0.0014235425,0.00071571575,-0.011086801,-0.0109395385,0.05455744,0.0018407876,-0.0215004,-0.0033940617,-0.009565083,0.014004011,0.022930956,0.027671421,-0.002407049,0.020953422,-0.0051191426,-0.025483513,-0.062495615,0.02478226,-0.0042110207,-0.048105918,0.030322155,0.022398002,0.0014489628,0.03208931,-0.009873634,-0.063898124,0.0065812543,-0.020560721,-0.024305409,-0.028400723,0.0034624338,0.0017417357,0.01575013,-0.010189198,0.025988415,0.0058589643,0.023477932,-0.023393782,-0.0123280175,0.00033813517,-0.01141639,0.0022860828,0.0013472813,-0.00087744213,-0.020897323,0.024066983,-0.0027646876,0.013506122,-0.0013937393,-0.011872204,-0.0043652966,0.023800507,-0.02611464,-0.011802078,-0.0008200271,0.0012114135,0.0115426155,0.036128525,-0.028975751,-0.010897463,0.0029662978,-0.015287303,0.011928304,0.022987055,-0.003839357]},{"id":"interface-GatewayFavoriteMemeUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayFavoriteMemeUpdateDispatchData\nDescription: FAVORITE_MEME_UPDATE — favorite meme/media updated","meta":{"url":"/docs/typedefs/GatewayFavoriteMemeUpdateDispatchData"},"embedding":[0.025774302,-0.008442818,-0.046255037,0.039829154,-0.0042497166,-0.005718187,0.009461901,-0.0109834485,-0.0020080886,0.0046814117,0.004911413,-0.013941619,-0.04302794,0.020254271,0.006181728,-0.016248709,-0.022433976,0.022674592,-0.0052581844,0.050133213,0.0018807031,0.010353599,0.034280814,0.0160364,0.014005312,0.0073388116,-0.035866052,0.012080378,0.025009992,-0.007494505,0.01442993,-0.026043227,0.024981683,-0.023438904,0.0055731093,0.054181237,-0.030827256,-0.024712758,-0.03156326,0.011754837,-0.007685583,-0.039800845,0.0076006595,0.024698604,-0.07790322,-0.004646027,-0.03946115,-0.004897259,-0.012972075,0.01827272,-0.013531155,0.00089258206,-0.0114646815,0.011875145,0.04515103,-0.0239626,0.01309946,-0.006344498,0.000019102274,0.015555167,0.0008116393,-0.02645369,0.0007943892,-0.041244548,-0.01244838,0.0024344756,-0.059616346,0.022504745,0.04727412,0.0075440435,0.02846355,0.0082446635,-0.05293569,-0.008145586,-0.006291421,-0.0114646815,0.0029617094,0.010403137,0.05030306,-0.0767709,0.0038923302,0.05570986,-0.05270923,-0.06725947,-0.030119559,0.013835465,-0.06284344,-0.053020615,-0.02796816,0.014536084,-0.015597628,0.04727412,-0.052539382,-0.008258817,-0.04925567,-0.039432842,0.002305321,-0.0022363206,0.016418556,0.048236586,0.027939854,-0.06352283,-0.06969394,-0.036800213,0.049935058,-0.045603957,-0.006489576,0.0017267792,-0.05033137,0.0011898145,-0.050076596,-0.025717687,-0.013849619,0.028010624,0.0071017332,-0.0048477203,0.057408333,-0.0151730105,0.009744979,0.0036092517,-0.03881007,0.011174526,0.036885135,-0.0468495,0.003722483,-0.012837613,0.049567055,0.007961584,-0.05202984,-0.016163785,0.03631898,-0.020296732,0.06352283,-0.014245928,-0.013141922,0.013977004,-0.006174651,-0.0048654126,-0.02832201,0.02799647,0.014790854,-0.026142305,0.024854297,0.0013410847,-0.015470243,0.00848528,-0.041584242,-0.010013904,0.04319779,-0.027784161,-0.044726413,0.05593632,0.012568688,-0.009957288,-0.015894862,-0.02493922,-0.012929613,-0.034960203,-0.035073433,-0.021952743,-0.011224065,-0.06595731,-0.055596627,0.0047911047,-0.01214407,0.008945283,-0.013163153,-0.018782262,-0.045207646,-0.032270957,0.039008226,-0.046821192,-0.04424518,-0.029213708,0.0040975623,-0.03815899,-0.01827272,-0.031082027,-0.035186663,0.024726912,0.051237218,0.010424368,-0.038243912,-0.034422353,-0.010615446,-0.02580261,0.02165551,0.062164053,0.011846838,-0.042801477,-0.028958937,0.03235588,0.0252223,-0.0062666517,-0.00073556195,-0.03535651,0.028562626,-0.018315183,0.03801745,-0.031506643,-0.019504113,0.028081393,0.051378757,-0.0029617094,-0.026680155,-0.016078861,-0.013481616,0.026680155,-0.011436374,0.01704133,0.065844074,0.021768741,0.029581709,-0.022971826,-0.03699837,-0.0014773163,-0.031082027,0.017607486,-0.03830053,0.022476438,-0.00057986873,0.053105537,0.049708594,-0.016446864,-0.0017418178,0.010318213,-0.023325672,-0.018003797,-0.04370733,0.015413628,-0.007243273,-0.0041577164,-0.007904969,-0.061031736,-0.013693925,-0.0107711395,0.03159157,-0.025307223,0.041782394,0.04965198,0.0027989394,-0.0011553144,0.0013950465,0.015300396,-0.032044493,0.008902821,-0.0006758501,-0.010948063,0.004858336,0.044018716,0.055540014,0.037790988,0.02309921,-0.048632897,0.013297616,-0.05452093,-0.008138509,0.014061928,0.04911413,0.027557697,0.023212442,-0.0095326705,-0.029128784,0.017211176,0.0009297361,0.015625937,0.0049255667,0.026538614,-0.018470876,0.05171845,0.019362573,0.0016047016,0.039772537,0.04498118,-0.010622523,0.008067739,0.029242015,0.03408266,0.01244838,0.010311137,-0.05531355,-0.048293203,0.009660056,0.02468445,-0.002694554,0.0068894243,0.04778366,0.025293069,0.020409964,0.013255154,-0.07750691,0.006857578,0.031761415,-0.055653244,0.022589669,0.047727045,-0.02608569,-0.022023512,0.021853665,0.03764945,0.048264895,-0.07184534,-0.03946115,-0.00021894358,0.027359543,0.0026910156,0.030742332,-0.0035137127,0.013049922,0.012221917,-0.018470876,-0.04806674,-0.0045327954,-0.009744979,-0.053303692,0.0073812734,0.049736902,0.017395178,0.015866553,-0.005580186,0.025774302,-0.015144703,0.052199688,-0.030685715,0.026368767,-0.042688247,-0.009716672,-0.053048924,0.00091735146,0.014564392,0.036800213,0.016050555,-0.0044372566,0.0023442444,0.05967296,0.015597628,-0.03750791,0.024019215,-0.000037568727,0.041018084,-0.004207255,-0.037281446,-0.012335149,-0.03895161,0.006337421,-0.02489676,-0.015668398,0.03646052,-0.022207513,0.0033880966,-0.0120025305,0.022462284,-0.0054492624,-0.03787591,-0.016135478,-0.065391146,0.013609001,-0.005109568,-0.019560728,0.036517136,-0.032497417,-0.013283461,0.016885636,0.035299897,-0.008817897,-0.026397076,-0.024472142,0.009921904,0.042263627,0.0068611167,-0.013559463,0.0024787067,-0.019942885,0.00057500333,-0.02587338,0.008980667,-0.017140407,-0.043254405,0.0014490084,-0.0030537099,0.029213708,0.027515236,0.014422853,0.006638192,0.041046392,0.0029776327,-0.007841276,-0.0063763447,-0.08226263,0.019192725,0.038894992,-0.006305575,-0.024203217,-0.0435941,-0.06963733,0.053671695,0.014033619,0.033686347,-0.008931128,0.01808872,0.02612815,0.0145785455,-0.007091118,0.004808797,-0.042546708,0.037819296,0.033997733,0.053501848,0.052964,-0.012533303,0.043990407,-0.02356629,0.018725647,0.022179205,-0.01102591,0.0017497793,-0.0022858593,-0.03578113,-0.033346653,0.03116695,-0.004585873,-0.0036977136,0.0016798943,0.041103005,0.030968795,-0.022108436,0.039999,0.004815874,0.042320244,-0.0601825,-0.05876711,0.0008081008,0.0158524,0.025859226,0.069750555,-0.02846355,-0.000051777944,-0.0049751056,-0.011379758,-0.011620374,-0.056842174,0.009921904,0.026397076,0.019518267,-0.027203849,-0.0005400608,-0.015286243,0.020891197,-0.007699737,-0.030006327,-0.025675226,-0.015767476,-0.056445863,0.0092779,-0.03447897,-0.017819796,0.010679139,0.04925567,0.0041435626,-0.03827222,0.018711492,0.02158474,-0.009447747,0.018683186,-0.01212284,-0.020225963,-0.003941869,-0.0006431191,0.009426516,-0.012115763,-0.00056836865,0.0038074066,0.011641606,0.055766474,-0.020452427,-0.063013285,-0.010827755,-0.015371166,0.04427349,0.027472774,-0.015654244,0.024259832,0.018343491,-0.048746128,-0.0020947813,0.066919774,0.044075333,-0.012214839,0.03391281,-0.011004679,-0.007820046,0.028817397,-0.0020505504,-0.017565025,0.0014888163,-0.015102241,-0.0038003298,-0.07705399,0.010148366,-0.05239784,-0.0047521815,-0.019249342,-0.02983648,0.012228994,0.034394044,0.0023070902,0.028364472,-0.0035349436,-0.028421087,-0.028336164,0.01048806,-0.00090275524,-0.026467845,-0.005601417,-0.005537724,-0.0016887406,-0.014663469,0.025080761,0.00082712015,0.0291854,-0.0053572617,0.024415527,0.019447496,0.010020981,-0.0022876286,-0.0022310128,0.017989643,-0.09103806,-0.0068045007,-0.029355247,0.016998867,-0.0053997235,-0.00029413632,0.027104773,-0.0049432595,-0.013241,-0.0016860866,-0.032950345,0.021782896,0.0021797048,0.006616961,-0.011429297,0.009030206,0.018527491,0.0021354738,-0.0008952359,-0.019985346,0.0009244284,0.012512072,-0.05757818,0.020678889,-0.025632763,0.029270323,0.02580261,0.027175542,0.035554666,-0.011804376,-0.03337496,0.015357012,0.018117027,0.027331235,-0.038894992,-0.009362823,-0.00008177211,-0.035979286,0.008308356,0.01697056,0.006011881,-0.03708329,-0.026142305,-0.010601292,-0.0021142429,0.004412487,0.014776701,0.0030147866,0.02118843,0.03708329,0.03654544,0.018952109,0.004090485,-0.016192093,-0.029751556,-0.011875145,0.009575132,-0.017395178,0.015640091,-0.009681286,-0.024670297,0.002430937,0.0067514237,-0.054209545,0.007862507,0.019702267,-0.007869584,0.011811453,-0.0029882481,-0.029326938,-0.0030696332,-0.027826622,-0.003025402,-0.004355871,-0.012986229,-0.026156459,-0.017239485,0.037847605,0.0742232,-0.03470543,-0.0053926464,0.0032483265,-0.00043877176,-0.027699238,-0.003561482,-0.040989775,-0.047359042,-0.049538746,-0.008011123,-0.0076148133,-0.0032111723,-0.00028705935,-0.0320728,-0.039319612,-0.023523828,-0.0149040865,-0.008626819,-0.030006327,0.04789689,-0.014161005,-0.023283212,-0.013679772,-0.03195957,0.029072167,-0.04132947,-0.018697338,-0.021782896,-0.029270323,-0.02634046,0.035186663,-0.009893595,0.0030714024,-0.041697472,0.043395944,0.017182868,0.002848478,0.03195957,0.042886402,0.00053608004,0.009730825,0.0025512455,0.011726529,0.01978719,-0.029213708,-0.03521497,0.013835465,0.010848986,0.021613048,-0.00920713,-0.01876811,0.051010758,-0.03447897,0.0005095414,-0.0011393912,0.03470543,0.019362573,0.021429047,-0.022943517,0.047557198,0.016744096,-0.015767476,0.014281313,0.020707197,0.024486296,0.021471508,0.08498018,0.008449895,-0.017522562,-0.04868951,0.018315183,-0.04291471,0.013892081,0.013778849,0.026297998,0.013814233,-0.029326938,0.013580694,0.0518883,-0.03275219,0.01317023,0.009497286,-0.014819163,0.010686216,-0.019305957,0.007009733,0.009072668,-0.03524328,0.0077138906,-0.003641098,0.014196389,0.020438273,-0.013977004,-0.012370533,0.012547458,0.013248077,-0.018527491,0.0034694816,0.015512705,-0.04056516,0.007002656,-0.01365854,0.03286542,0.008924051,0.016545942,-0.020098578,-0.025109068,0.037790988,0.0011075449,-0.0068469625,-0.016376095,0.014253005,0.029949712,0.0057748025,0.009582209,0.013233922,-0.023269057,0.0011906992,-0.0020823968,-0.000080168735,0.03445066,0.015965631,-0.019263497,0.0015109318,-0.034110967,0.010608369,-0.007324658,0.026920771,-0.061428048,0.021613048,-0.0019850885,-0.025731841,-0.014875778,0.00013446232,0.01708379,-0.0011579682,-0.016857328,-0.014776701,0.002855555,0.02475522,0.010056366,-0.00622419,-0.049482133,0.010764062,-0.056955405,0.012420072,-0.019107802,0.033686347,-0.031733107,0.010028058,0.03283711,-0.009660056,0.00706281,0.053643387,0.021273354,0.043367635,0.031251874,0.020565657,-0.035979286,-0.020141039,-0.035441436,-0.02104689,0.009256669,0.00094300543,0.0107145235,0.0070875795,0.0057429564,-0.0006068497,0.032695573,-0.012512072,0.0031970185,-0.018371798,-0.030544177,0.0051767994,-0.02039581,-0.0037684834,0.015413628,-0.07303427,-0.012653612,0.014493622,0.012405918,-0.01636194,-0.022419821,0.0027865546,-0.01380008,0.0025777842,0.035526358,-0.060692042,0.0071194256,0.0073175807,0.04435841,-0.09409531,-0.008308356,0.079714924,-0.013446231,0.0199995,-0.021542279,0.016602557,0.036488827,0.030176174,-0.07858261,0.025604455,-0.0061109583,-0.008265894,-0.044047024,0.019589037,-0.008591434,0.00079306227,-0.0045115645,0.014139774,-0.017112099,-0.046934426,-0.0018577031,-0.008074816,0.04500949,0.032412495,0.008563126,-0.036630366,0.009306207,0.008393279,-0.02771339,0.017649949,-0.029581709,0.013863772,0.00051573373,0.01125945,0.011938838,-0.0078058913,0.024925068,0.036913443,-0.03646052,0.0069248094,-0.021754587,-0.008959437,-0.014069004,-0.026694309,-0.0050777216,-0.029326938,0.010417291,-0.03575282,-0.033997733,0.0036198671,-0.026184767,0.014960702,-0.006181728,-0.0023017826,0.010212059,0.003158095,0.009072668,0.017536717,-0.022405667,0.005849111,0.008329587,0.042801477,-0.036064208,0.040593464,0.0038675608,0.014458237,0.008994821,0.021995204,0.01794718,0.0019178572,0.027104773,0.017451793,0.022646286,-0.011103757,0.024160756,0.002929863,-0.019221034,0.010176674,0.047981817,0.00559434,0.005088337,0.006769116,0.007650198,0.016305326,-0.012073301,0.024075832,-0.017154561,0.047104273,-0.0043700254,0.028845705,-0.01639025,0.009001899,0.015243781,-0.014444084,0.01823026,0.0015312781,-0.009525593,-0.0009810441,-0.012823459,0.029468479,-0.037281446,-0.023905985,-0.037281446,-0.032582343,0.0013578924,-0.014507776,0.0160364,0.023863522,0.017310254,0.011337296,0.012016685,0.001820549,-0.001990396,-0.0044691027,0.005725264,-0.010891448,0.025774302,0.029610017,0.006708962,-0.0017391639,0.007749276,-0.025717687,-0.0073175807,-0.0074520432,-0.014245928,0.0143662365,0.01309946,0.01435916,0.01848503,0.01263238,0.009391131,-0.020211808,0.009971443,-0.00010703908,-0.020565657,-0.000059103706,0.012710228,-0.014776701,0.009016052,-0.0034517893,0.028378626,-0.01722533,0.01888134,0.034224197,0.0023884752,-0.015187165,-0.005389108,0.0026450153,-0.022801979,0.026765078,-0.057266794,0.0049857213,-0.0335165,0.039008226,0.020197656,-0.02421737,0.014805009,-0.0013667387,0.013233922,0.0052794153,0.0079262,-0.024627835,-0.012816382,-0.0036764827,-0.016333632,-0.042433474,0.014663469,-0.019022878,0.019886268,0.005403262,0.0068752705,0.03156326,0.022943517,-0.007416658,0.04594365,0.030855563,-0.0018258567,0.015073934,-0.013304693,-0.022405667,0.029326938,0.001321623,-0.0077634295,0.043339327,-0.0024132447,0.049623672,-0.027444467,-0.019504113,-0.005484647,-0.0151730105,0.03538482,-0.0087258965,0.025745995,-0.002915709,-0.038526993,-0.023297366,0.04795351,-0.028675858,-0.018711492,0.04843474,0.027076464,-0.008067739,-0.032044493,-0.007020348,0.06244713,-0.025109068,0.0017320869,0.012412995,0.035950977,-0.03275219,0.02375029,-0.03510174,-0.011124987,-0.03275219,0.003156326,-0.01228561,-0.018357644,0.0034093275,-0.01445116,0.02904386,-0.005226338,0.002892709,0.059333265,-0.024741067,0.018258568,-0.04529257,-0.00468495,-0.04132947,0.0092779,-0.014302544,-0.0063975756,-0.03535651,-0.0017957796,0.015866553,0.005070645,0.028123856,0.004656642,0.027104773,-0.0021390123,-0.022632131,-0.0034305584,-0.0050387983,-0.031902954,0.012625304,0.017522562,0.0047238735,0.031987876,0.01783395,0.009780364,0.0086197425,0.040423617,-0.015838245,0.013545309,0.002929863,-0.008478203,-0.013439154,0.01762164,-0.003163403,0.00018787128,0.024316449,-0.005969419,0.00878959,-0.02007027,-0.00014850567,0.006482499,-0.041244548,0.012214839,-0.00085233187,0.017664103,0.047330733,0.04265994,0.0025813226,-0.0004874259,-0.002613169,0.029949712,-0.01484747,0.01498901,-0.0051874146,0.022617977,-0.0030537099,-0.013389616,0.0011040064,-0.027175542,0.003545559,-0.015739167,0.011669913,-0.02972325,0.01142222,0.016248709,-0.014019466,0.029610017,0.015696706,-0.03869684,0.00895236,-0.008577281,-0.030770639,-0.0044726413,-0.003515482,-0.0414427,0.013927465,0.030487562,-0.010077597,-0.0077209678,0.016163785,0.009398208,0.015725015,0.024981683,0.058540646,0.005144953,-0.020579811,-0.025193991,0.012066224,0.016333632,0.0036517135,0.028123856,-0.002768862,-0.028222932,0.004412487,0.023000132,0.023863522,0.015866553,-0.0063091135,-0.006871732,-0.0064506526,0.006241882,0.01941919,0.01815949,0.010551753,-0.005520032,0.0057535716,-0.011408066,-0.0008717935,-0.00046840656,0.008938205,0.008011123,-0.04373564,0.010148366,0.029326938,-0.0151730105,-0.036064208,0.00825174,-0.022971826,0.024344755,-0.022094281,-0.031251874,-0.008152663,0.018385952,-0.008853282,-0.00072361954,0.09652979,-0.02424568,0.01657425,-0.0018807031,0.007030964,-0.02237736,-0.028590934,0.04750058,0.00440541,-0.008004046,-0.015696706,0.022547208,0.025646918,-0.022858594,0.024868451,0.01582409,-0.023622906,-0.0028573242,0.0096388245,-0.028817397,0.03827222,-0.01317023,-0.012915459,0.01263238,0.01046683,-0.037054982,-0.018541645,-0.013630233,0.0056544943,0.007253888,0.024472142,-0.022065973,0.018569954,0.016729943,0.006298498,-0.004596488,0.00011019054,-0.025590302,0.011768991,-0.012462534,0.0065108067,0.0018055105,-0.041159622,0.0029847096,-0.004486795,0.0003494251,-0.0021531663,-0.04195224,-0.0032660188,-0.0039772536,0.022023512,-0.00841451,0.0059729577,-0.020480733,0.015753321,-0.014507776,-0.019065341,0.04486795,-0.0065957303,-0.033573117,-0.010615446,0.020905351,0.004295717,-0.0371116,0.047472276,0.03513005,0.016928097,-0.013064075,0.034790356,0.040055618,-0.014182236,-0.010905601,-0.013481616,-0.0042921784,0.008803743,0.01733856,-0.023523828,-0.014295467,0.031987876,0.03405435,-0.0038604839,0.031053718,0.011209911,0.050699368,-0.05769141,0.0227029,0.007947431,-0.0068080393,-0.010735754,0.011705298,-0.0036800213,0.009688363,-0.018315183,0.032157723,-0.006857578,0.009256669,-0.004727412,0.010565907,-0.01664502,-0.0076926597,0.00094212085,0.025462916,-0.0017320869,0.032384187,-0.026878309,0.015583475,-0.015923169,-0.012193609,0.0054103388,-0.013969927,-0.014458237,-0.011945915,0.023736138,0.011231142,0.021613048,-0.008145586,0.0049467976,-0.045773804,-0.025491225,-0.0041647935,-0.051859993,0.037932526,0.0051378757,-0.020494888,-0.008308356,0.019617343,0.045887034,-0.006181728,-0.028293703,0.013934542,-0.012349302,0.011719452,0.023198288,-0.033091884,-0.0055837245,0.021598894,-0.019178573,0.0052900305,-0.045603957,0.025774302,-0.005505878,0.013913311,-0.022533054,0.0172961,-0.015045625,0.008909898,0.015116395,-0.0028820937,-0.016956406,0.0036977136,0.01023329,0.010459753,-0.010346522,-0.008541895,0.03365804,-0.00077050447,0.0005922534,-0.01978719,0.0038923302,0.001398585,-0.023905985,-0.026227228,-0.026595231,0.0057429564,0.007607736,0.010148366,-0.027755853,-0.0049361824,-0.0024415525,-0.033629734,-0.016545942,-0.024344755,-0.005941111,0.0008280048,-0.03456389,-0.008676358,-0.019037032,0.017097944,-0.037932526,-0.022037666,-0.010013904,0.009624671,-0.017211176,0.0029121707,-0.010077597,0.0018223182,0.00008431539,-0.019546574,0.0033951735,-0.015795784,0.017126253,-0.012412995,-0.033856194,-0.017734872,-0.03801745,-0.021061044,-0.020777967,0.030515868,0.027175542,0.021613048,-0.02277367,0.026680155,-0.023821061,-0.005849111,0.016418556,-0.0010916217,-0.009497286,0.020551503,0.016531788,0.010105904,0.009256669,0.011967146,0.004603565,0.0015171241,0.01953242,0.031931262,0.009362823,0.015003163,0.0070061944,0.0070274253,-0.017749026,-0.0007559082,0.010877294,-0.028562626,-0.02885986,0.036488827,0.048859358,-0.021174276,0.021358278,-0.0033350193,0.028435241,0.014189313,-0.017126253,-0.011811453,-0.004030331,-0.024967529,0.005587263,0.008796666,0.013545309,0.01014129,-0.0037472525,0.025731841,-0.025561994,-0.0072397343,-0.036743596,0.017607486,0.012016685,-0.022306591,-0.05030306,0.010006827,-0.020254271,-0.0038357144,-0.009709595,-0.009001899,0.00064931146,0.0058349567,0.022533054,-0.014253005,0.019447496,0.009645902,-0.00045204107,-0.016248709,-0.018046258,-0.012278533,0.0087825125,-0.01888134,-0.035611283,-0.0048335665,0.013028691,-0.0033049423,-0.028237086,0.0017542024,-0.023226596,0.010417291,0.023523828,-0.0107145235,0.021032738,0.009242515,0.006072035,-0.020268425,-0.027048156,0.010565907,-0.0009934289,-0.004486795,0.024925068,-0.014274237,-0.03447897,0.010197905,-0.0077563524,-0.00018853474,-0.012596996,0.03535651,-0.021131814,-0.046906117,-0.025448762,0.0067655775,-0.017112099,-0.036517136,-0.022080127,-0.0023106288,-0.01827272,-0.009773287,0.017324409,0.015611783,0.020197656,0.0031138642,0.0046354113,-0.0066240383,0.008492357,0.034422353,0.009652979,0.018131182,0.021273354,0.0047911047,0.008683435,0.03524328,0.023410596,0.012929613,0.01708379,0.007055733,0.008272971,0.03116695,-0.010537599,0.020947814,-0.003303173,0.011903454,0.004515103,-0.012519149,0.057096947,-0.002011627,-0.017069638,0.00463895,0.0022717055,0.0020540887,0.036262363,0.017494256,-0.0016126632,0.037168216,-0.0035225588,-0.041046392,-0.049199052,0.023948446,-0.029242015,-0.058427416,0.025448762,0.016843174,-0.0038817148,0.004787566,-0.004447872,-0.05321877,0.014189313,-0.012483764,-0.02587338,-0.014458237,0.0073671197,-0.0024167832,0.001009352,0.009016052,0.011450528,-0.003634021,0.014408698,-0.0425184,-0.02205182,0.019702267,-0.011054218,0.020254271,-0.00866928,-0.022462284,0.005576648,0.012972075,0.0030696332,0.030176174,-0.008202202,0.002650323,0.004787566,0.014932394,-0.02738785,-0.014380391,0.0051272605,-0.0066558844,0.008754204,0.025293069,-0.051435374,0.013601924,0.0052829534,-0.018937955,0.00372956,0.014274237,0.018357644]},{"id":"interface-GatewayGuildBanAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildBanAddDispatchData\nDescription: GUILD_BAN_ADD — guild_id, user, reason?\nProperties: guild_id: string, reason: string | null, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildBanAddDispatchData"},"embedding":[-0.017439332,-0.0014969965,0.017342849,0.032611307,-0.0069286968,-0.0047970223,-0.09035648,-0.002990978,-0.0018723763,-0.036542997,-0.023240382,-0.0059306994,0.0012738792,0.03625355,0.0355058,-0.034299765,-0.038183212,0.043779235,-0.02595397,0.06194219,0.02355395,0.057359237,0.02655699,0.021696651,-0.020973027,0.03024747,0.020261465,0.008725696,-0.0069467877,-0.023373045,0.041608363,-0.023421288,0.009413138,-0.01219306,-0.0061990432,0.01894688,0.005710597,0.0043146065,0.006621157,-0.01982729,-0.0091417795,-0.078730255,0.011403103,-0.0043899836,-0.054561228,0.027352976,-0.01888658,-0.008176948,-0.007459354,0.030705767,-0.0037447526,-0.011427225,0.0024467527,0.061218567,0.048627514,-0.013881515,-0.013700609,0.022167007,-0.028800223,0.012434267,-0.022347912,-0.01888658,-0.01284432,-0.017125761,-0.011469436,-0.022733845,-0.042211384,0.036470633,0.0390998,0.040498808,0.015220218,-0.023035355,0.010667419,0.053017497,-0.030126866,0.03871387,-0.0059306994,-0.022359973,-0.017210184,-0.021346899,-0.011041292,0.044816427,-0.06507789,-0.059433628,0.037990246,-0.00066558307,-0.045950104,-0.011807127,0.0020743879,-0.016329775,-0.009208112,0.021178054,-0.0469873,0.016329775,0.003904553,-0.025592158,0.029668571,0.005981956,-0.037652552,0.047300868,0.06136329,-0.047445595,-0.018862458,-0.05774517,0.020683577,-0.03456509,0.003177914,0.041680727,-0.0670558,-0.013471461,-0.04368275,0.042910885,-0.015678514,-0.002422632,-0.04607071,-0.013616186,0.04484055,-0.008641273,0.0032593217,-0.002642734,-0.038352057,0.0066573382,0.05253508,-0.035939977,-0.023011234,0.011982002,-0.016956916,-0.04189781,-0.04889284,-0.017801143,0.05620144,-0.010329728,0.025543917,0.022142885,-0.040715896,-0.017451392,-0.019984074,-0.0016522742,-0.035795253,-0.031911805,0.0061508017,-0.011825217,0.03360026,0.03323845,-0.08606298,0.0057950197,-0.03849678,0.026412265,0.016112687,0.016884552,-0.10236863,0.067827664,0.0048784297,-0.039509855,0.034637455,-0.023264501,-0.026098695,-0.014629259,-0.017885566,-0.02995802,0.033769105,-0.06715228,0.030657524,-0.010420182,-0.021491624,0.0140383,-0.0015090569,-0.01618505,-0.04426165,0.0008525192,-0.0031688688,-0.0030256517,-0.062135156,0.00093015796,-0.0048633544,0.0006147033,-0.042211384,-0.010022189,-0.029089672,-0.048941083,-0.015340823,-0.010745812,-0.029716814,-0.10188622,-0.04247671,-0.0070673916,-0.015714696,0.010872446,0.006081454,-0.039461613,0.022480577,0.00824328,0.05065366,0.038520902,0.028559016,-0.035867617,0.016040325,-0.04669785,0.03145351,-0.014134783,0.011982002,-0.032177135,0.03350378,0.0023125808,-0.024036366,-0.008611122,0.0286555,-0.0069286968,0.024337877,0.0027211267,-0.00823122,-0.03292488,-0.034420367,0.008936753,-0.02438612,0.036229428,-0.043730993,0.00335882,0.015063433,-0.020985087,-0.01830768,0.031188183,0.008472428,-0.05094311,-0.0036542998,-0.0028100722,0.0310917,0.015618212,-0.023481589,0.015702635,-0.0038050546,0.0037477678,-0.031236423,-0.029740933,0.014436292,0.0065487945,0.025399191,0.0029924854,0.01189758,0.010836265,-0.0021090617,-0.022625301,0.029813297,0.008864391,0.0073749316,-0.004845264,0.043152094,-0.014219206,-0.0066392473,0.060350217,0.036904808,0.05031597,0.017427271,-0.012301603,-0.019574022,-0.018995123,0.01343528,-0.00040364635,0.009340776,0.02687056,0.039244525,-0.032514825,0.0027075587,0.024651447,-0.012434267,-0.0032774124,0.05432002,0.014689561,-0.01799411,0.014581017,0.02752182,-0.0074412636,0.04271792,-0.039509855,-0.0013786539,0.012868442,0.033069603,0.03610882,-0.014581017,-0.021274537,-0.044092804,0.01923633,0.023771038,0.0641613,-0.009949826,0.045057636,0.013905635,0.01617299,0.034155037,0.051232558,-0.05374112,0.021937858,0.017318727,-0.000545356,0.028004237,0.0068503045,0.034058556,-0.017535815,0.039003316,0.04180133,-0.008701575,0.008991024,-0.017535815,-0.068165354,0.040474687,-0.01862125,0.030440437,0.008369914,-0.00035257812,0.00015047227,0.015075494,-0.025447434,-0.043393303,0.017596116,-0.019368995,-0.0070915124,0.015955903,0.02043031,-0.026894681,0.035481684,0.0048060673,0.01675189,0.00046734032,-0.037459586,0.002532683,-0.055767268,0.015787058,-0.02899319,-0.0023804205,0.02995802,0.015630271,-0.03244246,-0.012566932,0.0012120696,0.048965205,0.011975972,-0.03755607,0.06319647,0.034010313,0.0017457422,-0.003750783,-0.003940734,-0.03837618,-0.030705767,0.032177135,-0.037314862,-0.009895554,0.034516852,-0.010299577,0.016064446,-0.0023909733,0.03668772,-0.023541892,-0.043248575,-0.03297312,-0.06570503,0.01889864,-0.028148962,-0.017077519,0.041680727,-0.0071819653,0.012542811,0.0024467527,0.014231266,0.022142885,-0.003171884,-0.027980117,0.017451392,0.0019130802,-0.0013334274,-0.017246366,-0.013254374,-0.0727483,-0.026749955,-0.016426258,0.0023246412,-0.014834286,0.0027226342,0.036784206,-0.009829222,-0.000296045,0.00825534,0.0366636,-0.003024144,0.021624288,-0.005252302,0.0025281603,0.021407202,-0.028824344,0.004365863,0.05624968,-0.003331684,-0.017728781,-0.029523848,-0.025543917,-0.015835298,0.06449899,0.026315782,0.0072241765,0.015413185,0.032153014,0.005403057,0.0029261534,-0.03784552,-0.029861538,0.049688827,0.01190361,0.016004145,0.037604313,-0.027931875,0.02074388,0.0069106063,0.0408365,0.020032316,0.017849384,-0.040788256,0.0017020232,0.011571949,-0.009310625,0.03970282,0.020044377,0.029234398,0.012639294,-0.008834239,0.016908674,0.006223164,0.019284572,0.0024799188,0.0068864855,-0.027425338,-0.06927491,0.040209357,0.018271498,-0.033117846,0.025736883,-0.006325677,0.029789176,0.027111769,-0.0445511,0.03729074,-0.052583322,-0.022359973,0.004399029,0.033334933,-0.012627234,0.004064353,0.07303775,-0.012566932,0.04119831,-0.005951805,-0.029789176,-0.021696651,-0.0041306852,0.06517438,-0.057021547,0.019634323,-0.031115819,0.044671703,-0.024060488,0.015823238,-0.008333733,0.032466583,-0.016148869,0.031115819,-0.028944949,0.025712762,-0.04368275,0.015774997,-0.0010477469,0.04361039,-0.01343528,-0.0026472567,0.053210463,0.003696511,-0.023264501,-0.012530751,-0.007513626,0.0068563344,0.038593262,0.017945867,0.0055960235,0.056297924,-0.025182106,-0.010709631,0.05253508,0.048989326,0.018778035,0.029499726,-0.015992085,0.0018618235,0.00021539112,0.0056894915,0.020575034,-0.012422207,0.03396207,0.02017704,0.03601234,-0.08094937,0.0043206364,0.034396246,-0.02258912,-0.059433628,-0.002271877,-0.030729886,0.0077427737,-0.012024214,-0.012663415,-0.027352976,-0.022046402,-0.02747358,-0.01616093,-0.022142885,-0.012373965,-0.0353852,-0.057021547,0.03965458,-0.031357028,0.032273617,-0.017475512,0.038183212,-0.008713636,0.018753914,0.003663345,-0.0011246318,-0.014267447,0.005059336,0.0144001115,-0.06445075,0.009750829,-0.0020140859,0.015943842,0.00472466,0.012639294,0.0592889,0.005734718,-0.02350571,-0.017571995,-0.021551926,0.04944762,-0.03965458,-0.011409134,-0.0031236424,0.022432335,-0.0068442742,0.011915671,-0.0074653844,-0.012132757,0.0048663695,-0.007977951,0.0011879489,-0.0008155842,-0.011933761,0.006663368,-0.016583044,-0.010757873,0.014605138,0.021346899,-0.04300737,-0.043224458,-0.029547967,0.022721784,-0.0012271452,0.0069166366,-0.023240382,-0.027955996,0.014906649,-0.0011186016,0.020249404,-0.015811179,-0.0034281672,0.013097589,0.054512985,0.000045980258,0.023903703,0.039871667,0.007417143,0.0065487945,0.043296818,-0.0076583507,-0.020080557,-0.023023294,-0.08717254,-0.005074411,0.0555743,-0.022697663,-0.015461426,0.0003957317,0.0026080604,-0.022384094,0.041921932,-0.041415397,0.0059698955,-0.022697663,-0.0012527736,0.052583322,-0.016884552,-0.0122292405,0.0018904669,-0.0055387365,0.041367155,0.013809152,-0.017186062,-0.016920734,0.004546769,0.032153014,0.006868395,0.039365128,0.031960048,-0.02351777,-0.004881445,0.014737803,0.010209125,-0.02964445,-0.017463451,-0.02073182,-0.022408213,-0.035216354,-0.0042331987,-0.01651068,0.004335712,0.02836605,0.013893575,0.00024158478,0.032949,-0.0061749225,0.059771318,-0.023758978,-0.00472466,0.014243326,-0.038062606,-0.026798198,-0.04358627,-0.029403243,-0.048748117,-0.035192233,-0.031960048,0.023421288,-0.007230207,0.012247331,-0.056056716,0.009714648,-0.0048784297,0.01858507,-0.010968929,0.039461613,-0.033431415,-0.018657431,0.004601041,-0.010438272,0.01220512,-0.031308785,-0.02682232,0.032876637,-0.017379029,0.02839017,-0.0012067932,-0.016534802,0.03876211,-0.0019191104,-0.0069709085,-0.026798198,0.0012927236,0.019899651,0.009931736,0.0067417608,-0.022154946,-0.009859373,0.051232558,0.0068623647,0.01834386,0.029330881,0.0038291754,0.00503823,0.02016498,0.007543777,0.013230253,-0.022347912,-0.02747358,0.013374978,0.019598141,0.029065551,0.027377097,0.00034635948,-0.00518597,0.045322966,0.00885233,0.062328123,-0.006343768,0.01982729,0.008267401,0.008345793,0.023783099,0.04148776,-0.011222198,0.004034202,0.008381975,0.033455536,0.008906602,-0.025133863,-0.021515746,-0.017342849,0.007079452,-0.006777942,-0.01982729,-0.017921748,0.023903703,0.02047855,0.009877464,0.004974913,-0.0066030663,-0.02291475,0.011421194,-0.073954344,0.022323791,0.001692978,0.0069709085,-0.02469969,-0.007784985,0.009961886,0.0047457656,0.015787058,0.02498914,-0.020635337,-0.0022568014,0.026002211,0.01313377,0.01009455,0.0024437376,-0.0040432476,0.010721691,-0.02532683,0.006621157,0.01835592,0.0111618955,-0.02503738,-0.0073146294,0.024012247,0.0069709085,0.005460344,0.00026514026,-0.0027150963,-0.0006437236,-0.024289636,-0.019996135,0.00093015796,0.014713682,0.019019242,-0.00503823,-0.016667467,0.013242314,0.00018100014,0.0074352333,-0.041632485,-0.0238434,-0.011650342,-0.0071819653,0.027666546,0.02413285,-0.02836605,0.052100908,-0.028848466,0.012361905,0.025712762,0.04392396,-0.022757966,-0.0077668945,-0.039268646,-0.020828303,0.028438412,0.0071819653,-0.010046309,-0.0074412636,-0.028727861,0.027835391,0.036494754,-0.03977518,-0.015425245,-0.008617152,-0.0154493665,0.011541798,-0.01893482,0.0019492614,-0.009135749,0.009401078,-0.0056985365,0.015425245,-0.019320752,-0.020490611,-0.027328854,0.018850397,-0.0154855475,0.008309612,-0.03871387,-0.01585942,-0.0032593217,-0.0064281905,-0.0069769383,-0.09209318,0.033769105,0.07955036,0.034878664,-0.0075799585,0.0036181186,0.009756859,0.06686283,-0.04515412,-0.052631564,0.028559016,-0.026484627,-0.02014086,0.023578072,0.03507163,-0.018211197,-0.0032955029,0.0039859605,0.029282639,0.020056438,-0.028004237,0.030150987,-0.015738815,0.021515746,-0.005746778,0.004145761,0.01651068,0.0062412545,0.029451484,0.0010062893,0.052004423,-0.04677021,-0.03977518,-0.0065910057,-0.00855685,0.013049347,-0.00397993,0.0034040464,0.00885233,-0.038038485,-0.0061990432,-0.008659364,-0.01678807,-0.006141756,-0.016534802,0.001602525,0.024313757,0.00885233,-0.017849384,0.037411347,-0.024940897,0.0020894634,0.01864537,-0.010884507,-0.023903703,-0.0055507966,-0.031670596,0.020237343,-0.034637455,-0.0482657,0.02102127,-0.0058432613,-0.007055331,-0.021539865,0.03316609,-0.028944949,-0.0008080465,-0.031525873,0.0028718815,0.0024256469,-0.019694624,0.05036421,0.0034281672,0.02102127,-0.0028462533,0.036518876,-0.011704613,0.026942922,0.0010967422,0.0104141515,0.028317807,0.040185235,-0.008442276,0.009352837,0.01739109,-0.003811085,-0.007863377,0.0102272155,-0.00035276657,-0.0046643578,0.012307633,0.009250323,0.022058463,0.019031303,0.008406095,-0.010540785,-0.0045316936,0.012542811,-0.038930956,-0.008538759,-0.00057060743,-0.021949919,-0.025471555,-0.02015292,-0.014363931,-0.037966125,0.01953784,-0.0039166133,-0.01189758,0.004908581,0.001695993,0.028462533,-0.021153932,-0.0027889663,0.013953877,-0.0033708804,-0.0011344309,-0.004670388,0.008562881,0.009654346,-0.025423313,-0.013061408,0.0012090546,0.0031296725,-0.001983935,0.021262476,0.007857348,-0.011831247,0.004118625,0.02319214,-0.02778715,-0.023143899,-0.022118764,0.005303559,0.009280474,0.027714787,-0.0015829268,0.0171137,-0.0512808,0.0036573147,0.020550914,0.01435187,-0.011083503,-0.016558923,0.038930956,0.0082613705,0.0082251895,-0.03113994,0.0029110778,0.004613101,-0.02286651,-0.041946054,-0.01958608,-0.034275644,0.00733875,0.033190206,-0.03362438,0.026026333,-0.037917882,0.031598236,-0.019296631,0.0045136027,0.006205073,0.009563893,-0.044647582,-0.024844414,-0.00795986,-0.01892276,-0.053548153,-0.028800223,-0.025495674,0.016679527,-0.0044080745,0.009925705,-0.042669676,0.05219739,-0.010468423,-0.061266806,0.0029653497,0.022962993,0.015051373,-0.038279694,-0.015533789,-0.002121122,0.051136076,-0.0062774355,0.014593078,-0.029379122,0.027497701,-0.027883634,0.0056653707,0.03053692,0.059144177,0.0009686005,0.0037718886,-0.024482602,0.018102653,0.025278589,-0.0053216494,-0.023734858,0.0025613264,0.0051618493,-0.015015191,-0.015702635,-0.023964005,0.0053578303,-0.0059457747,0.01036591,-0.029041432,-0.015135796,-0.009479471,0.027256493,0.0076040793,-0.00034221372,0.02255294,0.037990246,-0.020333827,-0.010136762,-0.013194072,-0.031863563,-0.03610882,0.0038141,0.025085622,0.04889284,-0.018235317,0.019803168,-0.06420954,-0.0062653753,-0.032563068,-0.000575507,0.022962993,-0.0244223,-0.0036934959,0.010546816,0.020816242,0.0131096495,-0.010854356,0.025519796,0.024868535,0.029427364,0.0116684325,-0.0037809338,-0.03420328,-0.0059337146,-0.02443436,-0.005523661,0.006627187,0.044816427,-0.013772971,0.034323886,0.022962993,-0.0065548248,0.004239229,-0.027039405,0.028462533,-0.036229428,-0.017632298,0.0299339,-0.004332697,0.01556997,0.018560948,-0.015401125,-0.021539865,-0.00795986,0.023566011,0.016004145,0.0030965065,-0.00035917363,-0.0342274,-0.012174969,0.024554964,0.01373679,0.039003316,-0.009268413,0.0067658816,-0.00016799754,-0.022359973,0.03316609,-0.0042573195,0.030054504,0.0017065459,-0.005975926,-0.021419263,-0.002167856,-0.018693613,-0.043224458,-0.0006128188,-0.019791108,-0.02752182,0.00027418556,0.017379029,0.03823145,-0.0056925067,-0.028028358,-0.009021175,-0.0059578354,-0.017487573,0.011439284,0.019308692,0.021310719,-0.040161114,-0.01618505,-0.036132943,-0.02197404,0.0098895235,0.035626408,0.04240435,0.01805441,-0.015208159,-0.00087965507,0.012952864,-0.037146017,0.023771038,0.020201162,0.006162862,0.017861445,-0.0020954937,-0.02747358,-0.0033769107,-0.015063433,0.019308692,0.010450332,-0.0054452685,0.0118734585,0.018440343,-0.0019115726,-0.011632251,0.0054181325,-0.013905635,-0.017801143,0.045877744,-0.023614254,-0.001739712,-0.009250323,0.0013319199,0.009853343,-0.039196283,0.059337143,0.04404456,0.001572374,-0.021298658,0.017632298,-0.0016145854,-0.00046734032,-0.0015150871,-0.00823122,-0.0013160906,-0.018705674,0.01435187,-0.009756859,0.07438852,-0.02261324,-0.006566885,0.022456456,-0.008568911,0.005155819,-0.0059457747,0.00023630836,-0.00086533336,0.000072597926,-0.011258379,0.006099545,-0.014581017,-0.009455349,0.007917649,-0.014098601,-0.008321673,0.032490704,0.018283559,-0.035819374,-0.0031206273,0.024301697,-0.00056759233,0.012747837,0.005991001,-0.041029464,0.038569145,-0.011421194,0.026798198,0.013616186,0.020357948,0.046456642,0.013194072,0.0093287155,-0.030995216,-0.010100581,0.009437259,-0.023590133,0.005369891,-0.010203094,0.034758057,0.000008167855,0.03635003,0.020237343,-0.022975052,0.008351823,0.008689514,-0.04088474,-0.0049839583,-0.027618304,-0.017487573,0.000491838,0.015461426,-0.027594185,-0.0065367343,0.003572892,0.0041125948,0.052052666,0.003847266,-0.0074111125,-0.034733936,0.0164745,-0.0063075866,-0.010148822,0.024374058,0.0085990615,-0.0244223,-0.02075594,-0.023590133,0.007206086,0.009183991,-0.021913737,0.007911619,0.021455443,0.012856381,0.030995216,0.011837278,-0.047662683,0.0060211523,0.02291475,0.009967917,-0.02655699,0.013893575,0.015135796,-0.046118952,0.031115819,-0.00074812135,0.012759898,-0.00054610975,0.0024799188,0.009533742,-0.013990059,-0.0171137,0.0018949896,-0.0004077921,-0.0058131106,-0.008158857,0.016281534,-0.0045136027,0.0066090967,-0.012735778,0.036567118,0.027232371,0.004709584,0.011553858,0.026991164,0.02286651,-0.0068623647,0.003271382,-0.014375991,-0.020297645,-0.027087647,-0.0128202,-0.008960874,-0.007977951,-0.033431415,0.021009209,-0.03991991,0.006379949,-0.00030791695,0.018536827,0.03849678,0.031260543,0.012675475,-0.030585162,-0.005466374,0.010546816,0.0008487503,0.013567944,0.0062774355,-0.0408365,-0.000012731725,0.03232186,-0.01677601,-0.009865403,0.00092940417,-0.0045708898,-0.006687489,-0.033334933,0.008804088,-0.013941817,0.005764869,0.017740842,0.004212093,-0.0068322136,0.00018750146,0.018283559,-0.009738769,-0.015702635,-0.028462533,0.00030226365,0.006777942,-0.05311398,-0.03789376,0.012578992,-0.007953831,0.03777316,0.0076282,-0.012989045,0.010239275,-0.0050834566,-0.012989045,-0.022999173,-0.026412265,0.030464558,0.0050291847,0.004365863,-0.029330881,-0.012458388,-0.01526846,0.0030754008,-0.0057799444,-0.008164887,0.027208252,0.0029367062,-0.032249495,-0.024289636,0.017632298,-0.017499633,-0.029499726,-0.009298565,-0.04949586,-0.0133146765,0.00014340563,0.0052703926,-0.00008913386,-0.0085990615,-0.020502672,-0.015027252,-0.005517631,-0.012566932,-0.0058432613,-0.002920123,-0.025519796,-0.028052479,-0.03941337,0.016619224,0.014593078,0.007845287,0.025254468,-0.027835391,0.011590039,-0.011505617,0.0038502812,0.023107717,-0.012024214,0.0067116097,0.01405036,0.011487526,-0.03205653,0.008804088,0.017294606,0.014725742,0.023614254,0.0070975423,0.0031477632,0.014641319,0.014822225,-0.032201257,0.02687056,0.037749037,0.0076764417,-0.018380042,-0.046239555,-0.018428283,0.0010959884,0.013893575,-0.015196098,0.027931875,0.032490704,0.021009209,-0.013097589,0.0052070757,-0.01680013,-0.013387038,-0.033720866,0.0004797776,-0.019103665,-0.016040325,-0.00823122,-0.0035487711,0.04737323,-0.028872585,-0.006476432,-0.010848326,-0.004516618,0.003729677,-0.023071535,-0.03661536,0.019935833,-0.0050291847,0.020454431,0.003385956,0.0078513175,-0.029089672,0.010504604,-0.005246272,-0.024554964,0.008014132,-0.014520716,0.0020005181,-0.0050291847,0.023240382,-0.027570063,0.017849384,0.0006026429,0.0047849617,0.017789083,-0.0011691046,-0.018150894,-0.031935927,0.01037797,-0.0025281603,0.0049899886,0.008020163,-0.0040432476,0.023686616,-0.00065389957,0.020345887,-0.022673544,-0.029572088,0.0065548248,0.031115819,0.0077005625,-0.021250416,0.014110662,-0.038062606,-0.013025227,0.011017171,0.011469436,0.004815113,0.010402091,0.009618165,-0.030030383,0.031212302,0.016920734,-0.0016884553,-0.0027904739,-0.0037960093,-0.011807127,-0.016450379,0.00946138,0.069033705,-0.01591972,-0.02315596,0.0053367247,0.0074292035,0.02414491,-0.02075594,0.015292581,-0.0067297006,0.0029759025,0.010589027,-0.0014638305,0.03145351,0.0009738769,0.045515932,0.02503738,-0.011336772,-0.008339764,0.038014363,-0.009630226,-0.0026472567,-0.00594879,0.042886764,-0.0075075957,0.023228321,0.0052161207,0.0041909874,0.012000093,-0.033648502,0.008002073,-0.0102272155,-0.030416317,-0.001739712,0.023252442,-0.041150067,-0.0256404,0.026942922,-0.01708958,-0.028583135,0.0071940254,-0.0031960048,-0.025809245,0.016534802,0.06107384,-0.01953784,0.0074955355,0.03938925,-0.03603646,0.02167253,0.009998067,0.01681219,-0.02231173,0.0033196236,0.026219299,0.02778715,-0.015087554,0.06401658,0.015027252,-0.010950839,-0.054898918,-0.010468423,0.01189758,0.0041035493,0.052438598,0.00056420034,-0.02443436,0.01220512,0.019899651,-0.0070070894,-0.005131698,-0.042356107,-0.009033236,0.0055809477,0.019212209,-0.0013990059,-0.0075618676,-0.022733845,-0.051473767,-0.0052643623,0.037942003,-0.018283559,0.019972013,0.029427364,0.012627234,0.00320505,-0.028341928,-0.0034643484]},{"id":"interface-GatewayGuildBanRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildBanRemoveDispatchData\nDescription: GUILD_BAN_REMOVE — guild_id, user\nProperties: guild_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildBanRemoveDispatchData"},"embedding":[-0.007201124,-0.00399593,-0.0029290407,0.029915148,-0.0026604321,-0.017335815,-0.085326985,0.006129708,0.014486754,-0.04160113,-0.004850045,-0.007931498,0.0018938413,0.022345819,0.05760899,-0.01903801,-0.03266763,0.04821675,-0.023202952,0.063983165,0.014076296,0.042566914,0.030518763,0.022225095,-0.024313603,0.03870378,0.025858857,-0.011867066,-0.008752414,-0.008927463,0.02793529,-0.022514831,0.03887279,-0.029577123,0.0210903,0.013714127,-0.012446537,0.016877068,-0.0032927184,0.008752414,-0.029577123,-0.051621135,-0.002980348,0.009989824,-0.028273316,0.058816224,-0.017758347,0.008154836,0.013038079,0.013617549,0.011426427,-0.008227269,-0.0055049667,0.073351264,0.048772074,-0.010708126,0.0059546595,0.022575192,-0.023323674,0.023468543,-0.033005655,-0.0021458506,-0.005188069,0.008009968,-0.01081074,0.0028747153,-0.031291388,0.05944398,0.029335678,0.013291597,-0.006832919,-0.029432256,-0.0016146695,0.03954884,-0.0028007724,0.016104441,-0.0037514658,-0.01961748,-0.02602787,-0.02441018,0.0023088264,0.029480545,-0.053939015,-0.03781043,0.02124724,0.006135744,-0.064659216,0.0049556773,0.025110375,0.0019783473,0.0065250755,-0.001996456,-0.04638176,-0.0017927359,-0.014136658,-0.0475407,0.03133968,-0.010768487,-0.03539597,0.07895281,0.07885623,-0.025810568,-0.038969368,-0.04833747,0.037327535,-0.034575053,0.011178945,0.02104201,-0.076828085,0.0006281366,-0.028031869,0.04785458,-0.00327461,-0.0015784526,-0.02240618,0.011619585,0.05789873,-0.016019937,0.028997654,-0.012796633,-0.029625412,-0.0009974734,0.038583055,-0.045560844,-0.030784354,-0.0010872611,-0.023504758,-0.044933084,-0.0718543,-0.03754484,0.034381896,-0.026172737,0.022707988,0.007720233,-0.013327814,-0.012687982,-0.019376034,-0.016623551,-0.02824917,-0.011692018,0.00055457104,-0.018699985,0.009826848,0.038679633,-0.07658664,0.0002465389,-0.031943295,0.021730132,-0.0073037385,0.032160595,-0.07735927,0.054566775,0.008136727,-0.023021867,0.018615479,-0.020897143,-0.02798358,-0.021162733,-0.03298151,-0.028225027,0.015235237,-0.08049806,0.026414182,-0.002907914,-0.0059184427,-0.014281525,0.026365893,-0.0014871559,-0.038848646,0.000651904,0.0042403936,0.0038752067,-0.059540562,-0.02361341,-0.022418253,-0.0007496141,-0.036627345,0.00124571,-0.056546632,-0.04065949,-0.0061115995,-0.026341747,-0.012295633,-0.0852304,-0.04865135,-0.007653835,-0.018180877,0.0063500274,-0.033464402,-0.032377895,0.03307809,0.0044154422,0.03776214,0.04387072,0.033271246,-0.031412113,0.016683912,-0.06079608,0.03307809,-0.014728201,0.029214954,-0.009850993,0.037907008,0.014897212,-0.012506898,-0.015343888,0.032064017,-0.02503794,-0.0006107827,0.018929359,-0.020341817,0.011293632,-0.034116305,-0.002165468,-0.015826778,0.026269315,-0.035106234,0.019967576,0.013641694,0.0022001758,-0.011335885,0.026076159,0.015005863,-0.029746136,0.022575192,-0.004282647,0.02986686,0.002942622,-0.020257311,0.020691914,-0.019134589,0.007937534,-0.0031961403,-0.045536697,0.018687913,-0.00082846126,0.02461541,0.016237237,-0.0009657836,-0.01577849,-0.04360513,-0.036844645,0.005314828,0.0039234958,0.0050914907,-0.010351993,0.044836506,-0.005070364,-0.003842008,0.060313188,0.022889072,0.072916664,0.00783492,-0.023818638,-0.00393255,0.0087282695,0.0032897005,0.0054264967,0.01519902,-0.0007420689,0.05369757,-0.036361754,0.021367963,0.03322296,-0.005514021,0.01167391,0.048313327,0.023504758,-0.014559188,0.011257416,-0.0016297599,0.001999474,0.030567052,-0.044884793,-0.019267384,0.026897075,0.0531181,0.030591195,-0.027887002,-0.059299115,-0.043822434,0.032909077,0.01935189,0.04821675,-0.0106538,0.056691498,-0.018011864,0.0131829465,0.01803601,0.046405904,-0.043146383,0.027090231,0.044474337,-0.0028716973,0.031363823,0.022104373,0.032619342,-0.028587196,0.01388314,0.015223164,-0.01493343,-0.006416425,-0.03213645,-0.0790011,0.031363823,0.0014894195,0.03566156,0.000077102355,-0.011015969,0.007804739,-0.0013943501,-0.024917217,-0.013846923,0.01030974,-0.02477235,-0.022623481,-0.014317743,0.020764347,-0.026462471,0.024386037,-0.0046870685,-0.007943571,-0.03322296,-0.051138245,0.008221233,-0.034019727,-0.0023857874,-0.045754,-0.0070804013,0.025206953,0.03298151,-0.043774143,-0.027379965,-0.010726234,0.029118376,0.03691708,-0.03423703,0.05306981,0.024868928,0.00012581595,0.02414459,0.015875068,-0.020969577,-0.023625482,0.022864927,-0.047782145,0.0029546942,0.00988721,-0.009953608,0.008951607,0.0042585023,0.042422045,-0.031218955,-0.051089954,-0.009953608,-0.07016418,0.033536837,-0.008040149,-0.02687293,0.037206814,-0.017058153,-0.011480753,-0.015561189,0.019122515,0.026800497,0.012259416,-0.01399179,0.01720302,0.00064473605,-0.02057119,-0.012881139,-0.024844784,-0.060940947,-0.0025940344,-0.002046254,-0.0133881755,-0.026679773,0.00029822343,0.025206953,-0.019641625,0.014571261,-0.0060270936,0.020848854,-0.014438465,0.016490756,-0.0032897005,-0.009464679,0.025448399,-0.029118376,-0.0032625378,0.07354442,-0.010744343,0.016201021,-0.032015726,0.0010095456,-0.020631554,0.047419976,0.032957368,0.0076357266,0.006171961,0.05524282,0.006663907,0.006039166,-0.036458332,-0.028273316,0.048772074,0.014667839,0.01914666,0.028128449,-0.02113859,0.017577263,0.010683982,0.01856719,-0.0065250755,0.049134243,-0.06364514,0.013424393,-0.005025093,-0.011148765,0.014728201,0.0036669597,0.035420116,0.027114375,-0.016478684,0.04370171,-0.008058257,0.023951434,0.010026041,-0.017432395,-0.052200604,-0.08194674,0.038462333,-0.00973027,-0.035878863,-0.009983788,-0.004502966,0.035830572,0.03182257,-0.05760899,0.035371825,-0.041673563,-0.019557118,-0.005118653,0.027041942,0.003639797,-0.019979648,0.078759655,-0.017335815,0.028901074,-0.018084299,-0.017287526,-0.018434394,0.012482753,0.04024903,-0.056353476,-0.01598372,-0.03133968,0.03580643,-0.0074968953,0.0041106166,0.008909354,0.019786492,-0.010068295,0.045729853,-0.011100476,0.018060153,-0.012712127,0.041069947,-0.007557257,0.024530904,-0.0120964395,-0.0006349273,0.032619342,-0.01740825,-0.03781043,-0.02856305,-0.0065130033,-0.002815863,0.04024903,0.021271385,0.022418253,0.020909216,-0.048747927,0.0011574313,0.063548565,0.044305325,0.028997654,0.008957643,-0.030856786,0.02981857,-0.0045723817,-0.0010389719,0.043822434,-0.012482753,0.027838713,0.0049345507,0.056208607,-0.08677566,0.021102373,0.007195088,-0.009802704,-0.05944398,0.010412355,-0.020027937,-0.0026393055,-0.032957368,-0.043001518,-0.0056951055,-0.018446468,-0.02571399,-0.016539045,-0.010521005,-0.027742134,-0.03293322,-0.042808358,0.025955435,-0.032160595,0.025593266,-0.022104373,0.04244619,0.00670616,0.037834574,0.0027570105,-0.023577193,-0.013605477,-0.0040713814,0.020522902,-0.0790011,-0.002781155,0.028418183,0.032474473,-0.008142763,0.00034292863,0.06350027,0.0072071603,-0.032039873,-0.02856305,-0.01704608,0.042591058,-0.030253172,-0.009343957,-0.020547047,0.009162872,0.014052152,0.014378103,-0.001715775,0.0107986685,0.022285458,-0.0027721007,-0.012881139,-0.0045090024,0.0038540803,0.0030557998,-0.0010699072,-0.012977717,-0.0015814707,0.014583332,-0.037375826,-0.01493343,-0.039162528,0.004819864,-0.013653766,0.013641694,-0.033102233,-0.02477235,0.011468681,0.014245309,0.008172944,-0.016261382,-0.013665838,0.014317743,0.055146243,-0.02535182,0.05736755,0.027210955,-0.000089787696,0.0011529042,0.053600993,-0.0018198985,-0.008921426,-0.029263243,-0.0718543,0.0066820155,0.06084437,-0.036168598,-0.040828504,-0.016261382,-0.016502827,-0.03365756,0.030277317,-0.020209022,-0.0236617,-0.0014803652,-0.00662769,0.03851062,0.0017142659,0.032257173,-0.0050975266,-0.029456401,0.015066224,0.024675772,-0.0032565016,-0.023046011,0.0065673287,0.04123896,-0.011064258,0.04312224,0.03230546,-0.014498827,0.0013166347,0.0070019313,0.01562155,-0.0345992,0.00018325367,-0.02051083,-0.02829746,-0.011915356,-0.005849027,-0.019955505,0.0035009657,0.026583195,-0.0023208987,0.005438569,0.024796495,0.004330936,0.04413631,-0.029601268,-0.0025472543,-0.0009325848,-0.03496137,-0.03066363,-0.05548427,-0.02292529,-0.0386072,-0.026462471,-0.038824502,0.03213645,0.008227269,-0.006102545,-0.033464402,0.010816776,-0.024120446,0.019955505,-0.0071286904,0.012066259,-0.045464262,-0.021959506,-0.0058097923,-0.025641555,-0.0017851907,-0.035782285,-0.027790423,0.035492547,-0.0123499585,0.027669702,-0.0024220042,-0.016394177,0.04696123,-0.017927358,0.008643763,-0.0147885615,0.046043735,0.013846923,0.008172944,0.008547185,-0.02472406,-0.017710058,0.032619342,-0.015549117,0.03940397,0.01950883,0.016261382,0.026052013,0.027669702,0.0012841905,0.023673771,-0.03807602,-0.032957368,0.0060693463,0.010659837,0.005031129,0.014595405,-0.01298979,0.014860995,0.03493722,0.0076176184,0.062341332,-0.011842921,0.0033198812,-0.00012279788,0.020957505,0.019593336,0.033126377,-0.0236617,0.0075391484,0.016321743,0.03271592,0.011728235,-0.007074365,-0.02303394,-0.027235098,0.012567259,-0.019496758,-0.022369964,-0.016623551,0.02061948,0.022019867,0.004868153,-0.009144763,-0.010714162,-0.030880932,0.024941362,-0.0772144,-0.008028076,0.007321847,-0.0072856303,-0.032957368,0.014172874,0.0124586085,0.0144263925,0.014583332,0.037013657,-0.02798358,0.0025050014,0.009048185,-0.0046085985,0.0006994386,0.006995895,-0.0061146175,-0.0074123894,-0.01940018,-0.0042373757,-0.011601476,0.008402318,-0.016454538,0.02272006,0.04070778,-0.00093862094,-0.011619585,-0.0014154767,-0.015030008,0.011245343,-0.010587403,-0.036579054,-0.013689983,0.0074546426,0.015500827,-0.007243377,-0.0137262,0.0021458506,-0.015295598,0.0073037385,-0.02198365,0.011275524,0.0018878052,-0.021923289,0.021078227,0.014281525,-0.05017246,0.043580987,-0.008263486,0.0049677496,0.04090094,0.05485651,-0.015657768,0.011335885,-0.028345749,-0.021597337,0.03218474,-0.018615479,-0.016285526,-0.012036079,-0.008009968,0.022031939,0.03677221,-0.04338783,-0.023915216,-0.0051397798,0.0018334799,-0.0042675566,-0.008661872,0.00883692,-0.008185016,-0.016768418,-0.019327745,-0.0032233028,-0.0049194605,-0.01167391,-0.0312431,0.009525041,-0.025834711,0.008263486,-0.043725852,-0.01399179,-0.01982271,0.0038148453,0.00195873,-0.07257864,0.03539597,0.06499724,0.008637727,-0.0058641173,0.03430946,0.013243308,0.059395693,-0.027645556,-0.047347542,0.027838713,-0.045102097,-0.025279386,0.008486823,0.043556843,-0.011643729,0.010364066,0.010170909,0.044401903,0.012893211,-0.024373963,0.006675979,-0.019714057,0.011553187,-0.007997896,0.00015722278,0.023842784,-0.004059309,0.030591195,-0.020655697,0.041721854,-0.037737995,-0.034888934,-0.011233271,-0.0021352873,0.004620671,0.0012902266,0.001161204,0.012724199,-0.04213231,-0.019810637,-0.010297668,-0.027838713,-0.0139072845,-0.033367824,0.025496688,0.0106538,0.0029320586,-0.016502827,0.022852855,-0.023577193,0.0162976,0.006120654,0.010786596,-0.014293598,-0.030518763,-0.018965576,0.0031146521,-0.054663353,-0.03471992,0.032329608,0.009066294,0.004578418,-0.013496826,0.01356926,-0.015742274,-0.011498861,-0.012386175,-0.0060753827,-0.017190948,-0.02472406,0.0368205,0.018265383,0.03730339,0.0033711884,0.04097337,-0.016744273,0.034285318,0.0029305497,0.0057464126,-0.020921288,0.041094095,0.010026041,0.0075753652,0.014716128,-0.01740825,-0.022526903,0.02057119,0.0037876826,-0.018506829,0.011867066,0.026921218,0.008842956,-0.0016584316,-0.011215162,-0.0075814016,-0.015271453,0.00051948597,-0.033488546,-0.008480787,-0.0043671527,-0.01054515,-0.044570915,-0.022551049,-0.02135589,-0.03923496,0.034381896,-0.00012298652,0.0010314267,0.0075512207,-0.0011166873,0.040007588,-0.023637554,-0.027114375,0.015054152,0.0071407626,0.008136727,0.019448468,0.001966275,0.009899282,-0.020764347,-0.0014607477,0.0071105817,0.004991894,0.011432463,0.035251103,0.014764417,0.010092439,0.010521005,0.0461886,-0.024603337,0.0065914732,0.0011068786,-0.008764487,0.010744343,0.013074296,0.000056777513,-0.00023842783,-0.03397144,-0.007593474,0.007907353,0.013086368,-0.045319397,-0.0028686791,0.042059876,0.009512968,0.008130691,-0.0063560633,0.0053782077,-0.004913424,-0.033005655,-0.037593126,-0.03706195,-0.027500689,0.019750275,0.024844784,-0.025786422,0.041190673,-0.012030043,0.047782145,0.0017866998,-0.008052221,0.0011521496,0.014378103,-0.06263107,-0.02303394,-0.009597475,-0.008462679,-0.04428118,-0.004771575,-0.017806636,0.02403594,0.009772523,0.01283285,-0.026655627,0.05022075,-0.019110443,-0.053262968,0.018844852,0.013714127,0.022877,-0.032257173,-0.025279386,-0.03066363,0.031798426,0.0017791545,0.022128517,-0.03950055,0.016164804,-0.02655905,0.015597406,0.045995444,0.04198744,-0.0040834537,0.019762347,-0.01735996,0.028104303,0.037907008,-0.025883,-0.021923289,0.01640625,0.025641555,-0.00351002,0.0003489648,-0.007877173,0.0076176184,-0.0061870515,0.009706126,-0.04481236,-0.004140797,-0.007961678,0.012054187,0.03266763,-0.021380035,0.02198365,0.012724199,-0.014873068,-0.004871171,-0.0043973336,-0.02597958,-0.019376034,0.010871102,0.030494617,0.054325327,-0.03293322,0.011335885,-0.072192326,-0.020486685,-0.036047872,-0.007074365,0.005393298,-0.0070441845,-0.008504932,0.00506131,-0.0027887002,0.010611547,0.019327745,0.038414042,0.016333815,0.033464402,0.022937361,-0.0031146521,-0.033536837,-0.015295598,-0.018760348,0.0008473242,0.026848786,0.05075193,-0.009947571,0.009555222,0.010991825,-0.015887141,-0.026703916,-0.007647799,0.021850854,-0.031267244,-0.015911285,0.033174668,0.01298979,0.006959678,0.0041045803,-0.018893141,-0.0133881755,-0.020257311,0.022695916,0.023637554,-0.004711213,0.0068027386,-0.018168805,-0.021730132,0.06016832,0.007116618,0.010575331,-0.0066457987,-0.014257381,-0.010062258,-0.026414182,0.03870378,-0.0030497636,0.012953573,0.0007209424,-0.009724234,-0.0027645556,0.02166977,-0.023963505,-0.035951294,-0.0011823304,-0.021066155,-0.02045047,-0.011239307,0.00032217937,0.037593126,-0.0077866307,-0.03607202,-0.019363962,0.004252466,-0.003802773,-0.0067604855,0.0246637,0.015186948,-0.043411974,-0.0024793476,-0.021585263,-0.0015241273,0.0067967023,0.011728235,0.05080022,0.029794425,0.0064103887,0.007007967,0.03976614,-0.033681706,0.037375826,0.02793529,0.0111608375,0.008945571,-0.008016004,-0.035251103,0.008848992,0.0097121615,0.0079496065,0.002779646,-0.006754449,0.0037846647,-0.0018289527,-0.028418183,0.009247378,0.0007714951,0.00012864539,-0.028587196,0.022889072,-0.029915148,-0.010828849,-0.009319812,-0.011758416,-0.0021201968,-0.03901766,0.051669423,0.019170806,-0.019593336,-0.024748206,0.0057313223,-0.010050186,-0.011897247,-0.00042743472,0.021114444,-0.0072675217,-0.010472716,0.011824814,-0.002530655,0.07286838,-0.025858857,0.0057765935,0.0043037734,-0.018989721,0.002417477,-0.01062362,0.0065612923,0.009549186,-0.00954315,-0.013436465,0.007768522,-0.0025819622,-0.0090904385,0.018048082,0.0068631,-0.011166873,0.03877621,0.019677842,-0.027210955,-0.012398248,0.027307533,-0.0020372,-0.006531112,0.009959644,-0.032619342,0.028490618,0.014836851,0.03298151,0.028200882,0.0033259173,0.034116305,-0.0053480268,-0.006537148,-0.033947293,-0.0046719783,0.032015726,-0.02892522,0.015500827,-0.028128449,0.037882864,-0.0037454297,0.013533043,0.027428254,-0.027307533,-0.0018847871,0.008299703,-0.049786147,-0.0054657315,-0.02655905,-0.024820639,0.016104441,0.026921218,-0.02793529,-0.013424393,-0.009531077,-0.00089410436,0.046792217,0.00032048172,-0.0053691533,-0.010098475,0.033271246,0.0008209161,-0.0069536422,0.037327535,0.013979718,-0.03814845,-0.0013105986,-0.0052876654,0.01704608,0.0027072122,-0.0040200744,-0.002743429,0.015392177,0.024168735,0.015090369,0.007309775,-0.039476406,-0.008438534,0.006171961,0.017528974,-0.027114375,0.025158664,0.021573192,-0.04560913,0.0370378,0.0029516763,0.010303704,0.0021549047,-0.025593266,0.035516694,-0.024229096,-0.020293528,0.0066820155,0.008384209,0.009241342,-0.017951503,0.003153887,-0.01046668,0.0048922976,-0.0041438155,0.03665149,0.04034561,0.0005047728,-0.0008073347,0.015693983,-0.010213162,0.007690052,0.017625552,-0.0116799455,-0.008921426,-0.01946054,-0.013520971,0.0029305497,-0.0057373582,-0.027597267,0.02093336,-0.024011794,-0.00035500093,0.014184947,0.025883,0.04065949,0.014571261,0.009476752,-0.0038601165,-0.015947502,0.027887002,-0.017963575,0.0059999307,-0.0093499925,-0.025062084,0.0026045977,0.03008416,-0.006947606,-0.0025019832,-0.0022695914,-0.009579366,-0.020836782,-0.020872999,-0.0059365514,-0.009718197,-0.0071709435,0.004581436,-0.002376733,-0.004895316,0.0051277075,0.012796633,-0.009694053,-0.01798772,-0.0513314,-0.0036428152,0.0032414112,-0.06282423,-0.023794495,0.006464714,-0.02024524,0.031025799,0.000017542554,-0.017311672,0.011842921,0.0035220922,-0.018712059,-0.014498827,-0.009688017,0.016695984,0.0012132657,-0.010219198,-0.025738133,0.011197054,0.009935499,-0.0023933325,0.007557257,-0.009319812,0.03266763,0.0039536767,-0.04222889,-0.015742274,0.015790563,-0.013653766,-0.016925357,-0.014535043,-0.037593126,-0.011263452,0.018011864,0.01096768,0.0010208634,0.0050975266,-0.017565189,0.00086392363,-0.0050462196,0.008281594,-0.015597406,0.01081074,-0.007038148,-0.013327814,-0.028804496,0.016659768,0.009446571,0.0006828392,0.010521005,-0.016309671,0.020583263,-0.032909077,0.009211161,0.00011044264,-0.02651076,0.0041015623,0.006995895,0.0042343577,-0.029383967,-0.0072554494,0.025834711,0.03003587,0.033512693,0.012591404,0.014522972,0.0036729958,0.00002343723,-0.028056014,0.013001862,0.035468403,0.018555118,-0.02986686,-0.041359685,-0.030301461,-0.007515004,0.0057916837,-0.014812706,0.022538975,0.029070087,0.025641555,0.0056588883,-0.0110582225,-0.043460265,-0.016635623,-0.024567122,-0.00415287,-0.016007863,-0.019170806,0.003947641,0.013303669,0.024398109,-0.025883,0.0069355336,-0.019581264,0.0137503445,0.004834954,-0.03471992,-0.034913078,0.013943501,0.00020786983,0.026317604,0.013074296,0.002734375,-0.011758416,0.015500827,-0.016261382,-0.033150524,-0.0016101424,-0.013557187,-0.0024718025,0.00054363057,0.035951294,-0.038993515,0.034381896,0.0054627135,-0.000563248,0.008233305,-0.0033711884,-0.012355994,-0.014595405,-0.003470785,-0.007321847,0.00044705218,0.002864152,0.012398248,0.025907146,0.009923426,0.032691777,-0.024156664,-0.018120516,0.018675841,0.003235375,0.014028007,-0.011607512,0.028828641,-0.03597544,-0.013810705,-0.008999896,0.027838713,0.0014894195,-0.021005794,-0.0034224957,-0.030229028,0.018905215,0.018180877,-0.010140728,-0.018446468,-0.014547116,-0.005269557,-0.0059063705,-0.005957678,0.052345473,-0.035492547,-0.019955505,-0.005945605,0.0084687155,0.028152592,-0.010635693,0.020655697,-0.0012532552,0.017275454,-0.0031357787,-0.008776559,0.037206814,0.0073459917,0.04213231,0.03691708,0.0129415,-0.0060814186,0.048723783,0.003724303,0.007822847,0.01267591,0.029408112,-0.0010917882,0.0035552909,0.017577263,0.008480787,0.0064888587,-0.008142763,0.005646816,-0.016164804,-0.016382106,0.00554722,0.014860995,-0.049206674,-0.01593543,0.014172874,-0.0049556773,-0.046647348,0.004994912,-0.00020919024,-0.02182671,0.010907318,0.054615065,-0.007931498,0.0026725044,0.024579193,-0.048675496,0.023384036,0.01956919,0.024373963,-0.018893141,0.017239237,0.02972199,0.015802635,-0.023637554,0.044788215,0.0048017553,-0.022019867,-0.036796357,-0.013762416,0.0022182842,0.010804704,0.039210815,0.012543115,-0.018386105,0.0041830502,0.017589334,-0.008034113,-0.01682878,-0.046357613,-0.022104373,-0.013351958,0.008088438,0.0072252685,0.0026408145,-0.013641694,-0.024325674,0.0045422013,0.06475579,-0.030567052,0.014064224,0.022526903,0.016961575,0.00055117573,-0.025013795,0.0018153714]},{"id":"interface-GatewayGuildCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildCreateDispatchData\nDescription: GUILD_CREATE — full guild with channels, members, roles, unavailable?","meta":{"url":"/docs/typedefs/GatewayGuildCreateDispatchData"},"embedding":[0.009582537,0.027776197,0.022398947,0.012152086,0.028001817,0.0003309861,-0.05374744,0.017046764,0.012684798,-0.0072636763,0.025870971,0.0057344814,0.005433656,-0.013324051,0.046126537,-0.025795765,-0.06663279,0.011776055,0.0102593945,0.0305839,0.0023972013,0.005051357,-0.00025205864,0.008792872,-0.034369282,0.00021425965,0.023514507,0.015642913,0.018939456,-0.01692142,0.041864846,-0.029455805,0.023827866,-0.01683368,0.009526133,0.023702523,-0.0043745004,0.0045217793,-0.030909793,-0.029430736,-0.004120679,-0.014013442,0.04422131,0.001855089,-0.039834276,0.004935414,0.010127783,0.014339336,-0.0016811744,0.010666762,-0.045224063,0.004625188,-0.0028766415,0.05645487,-0.0014367539,-0.02495596,-0.036976434,-0.0028061355,-0.040887166,0.040034827,-0.019603778,-0.016645662,0.0052832435,0.017335055,0.01752307,-0.018087117,-0.049711373,0.03750288,-0.0029847506,0.0663821,-0.030508693,-0.0615689,-0.011913933,-0.029505942,-0.015404759,0.005270709,-0.012302499,-0.002630654,0.015454897,-0.0148532465,-0.0019005261,0.04296787,-0.086988635,-0.06532922,0.044898167,0.0008562552,-0.024655135,0.0070004542,0.0010810908,-0.018387944,0.0024551726,0.0155050345,-0.05199263,-0.0106291585,0.012935486,-0.06788623,0.07254902,0.03624944,-0.0146902995,0.034344215,0.06733472,-0.05374744,-0.0071759354,-0.064577155,0.013737686,-0.01346193,-0.05114029,0.029907042,-0.013048295,0.0031853006,-0.08342887,0.018676234,0.01160684,-0.025971245,-0.003873125,0.004556249,0.037803706,-0.057708308,0.036826022,0.019039731,-0.028377848,0.005562133,0.003920129,-0.04547475,0.020932423,0.00079162477,0.029255254,-0.010535151,-0.057407483,0.0018817246,0.049836714,0.012283698,0.0417395,0.0040486064,-0.05134084,0.0024880755,-0.045976125,-0.0016373041,-0.050037265,-0.034745317,0.000623194,-0.026748378,0.049886853,0.0611678,-0.06512866,0.013725151,-0.036800954,0.027149478,-0.0101403175,0.03670068,-0.08728946,0.041764572,-0.004029805,-0.016106686,-0.002536646,-0.0090435585,-0.02321368,-0.019678984,-0.030408418,-0.022988062,0.018362874,-0.045775574,0.011337351,0.013925701,-0.046803392,-0.039357968,0.008573519,-0.009099963,-0.06683334,0.01935309,0.014677765,0.0001448309,-0.0393329,0.017385192,0.011895131,0.011851261,-0.05730721,-0.033943117,-0.02241148,-0.04913479,0.03426901,0.00027516892,0.0077587846,-0.06698375,-0.049886853,0.010121516,-0.0001967311,-0.017372658,0.018575959,-0.027600717,-0.05359703,0.0036506397,0.034519695,0.027425235,0.042341154,-0.035773136,0.052042767,0.009952302,0.04547475,-0.012960554,0.028202366,-0.04993699,0.030734312,0.003920129,0.021759693,-0.008178687,0.031035138,-0.011136801,-0.017021695,0.022912856,0.026547827,-0.0313861,-0.028603466,0.01611922,-0.03564779,0.028001817,-0.09210266,0.03143624,0.007677311,-0.022737375,0.003478292,0.03201282,-0.009281713,-0.013161104,0.02687372,0.029881975,0.00034606655,0.009262911,-0.0056780763,0.034068458,0.004105011,0.014765506,-0.009996172,-0.051691804,-0.012647195,0.017861499,0.010779571,0.05194249,0.031711996,0.029280324,-0.038881663,-0.027826335,-0.02395321,-0.022937926,-0.022586962,-0.029806769,0.0065366817,0.0015479965,-0.023527041,0.032689676,0.053697307,0.046001192,-0.002196651,0.01136242,0.002724662,-0.023840401,0.011544169,-0.012358904,0.02495596,0.036750816,0.022774978,-0.017736156,-0.0063517997,0.042867597,-0.010735701,0.017773759,0.03958359,0.013888098,-0.031711996,0.024805548,0.001792417,-0.022248533,0.076158926,-0.044722687,-0.0031476975,-0.02770099,0.027575647,-0.0056624087,0.03261447,-0.033567082,-0.054900605,-0.014840712,0.0019302953,0.052092906,-0.0067497664,0.04770587,0.03805439,0.0002593051,0.017147038,0.05605377,-0.01163191,-0.017786292,0.019365625,0.0049918187,0.02609659,0.0029941513,0.022173326,-0.002893876,0.034820523,0.03895687,0.03324119,0.032263506,-0.032714747,-0.037026573,0.0020556392,0.0019851332,0.038029324,-0.000623194,0.043093216,-0.008335366,0.017673483,0.012127018,-0.000013391228,0.033266257,-0.025632817,0.0006756817,0.033892978,0.03569793,0.026698241,0.040009756,-0.0113185495,-0.006743499,0.0064301398,-0.048808895,0.009275445,-0.028352778,-0.00901849,-0.037828773,-0.007934266,0.02629714,0.0127412025,-0.054900605,0.00036114696,0.012559454,0.025645351,0.010560219,-0.009244109,0.04424638,0.041689366,-0.022612032,0.0062828604,0.0024645734,-0.02729989,-0.002166882,0.03304064,-0.004114412,-0.024529792,0.033692427,0.0054430566,0.024216432,-0.011870063,0.02607152,-0.018224996,-0.040536202,0.013574739,-0.04382021,0.044522136,-0.021922639,-0.012753737,0.039232627,-0.028227435,0.008322831,-0.021885036,0.028728811,-0.0018660566,0.02649769,-0.021358592,0.03607396,-0.016482716,-0.021045232,0.010271928,0.024742877,-0.05199263,0.001063856,0.002406602,-0.032589402,0.00011839118,-0.019653916,0.02404095,0.003873125,-0.0017501136,-0.002871941,0.038430426,-0.011017725,0.0029455805,0.00448731,-0.0076647764,0.043544453,-0.06532922,-0.030007318,0.02815223,-0.0070756604,-0.032138165,-0.035597652,-0.015592775,-0.039859343,0.040837027,0.023313956,-0.0086361915,-0.010522616,0.027400166,0.015906135,0.00070310064,-0.025118908,-0.030508693,0.021872502,0.028001817,0.00036095112,0.027249753,-0.035146415,0.009939767,0.008040808,0.029205117,0.009877095,0.037427675,-0.03928276,-0.024717808,-0.039257694,-0.033341464,0.0116444435,0.014727903,0.010810907,-0.015304484,0.019428296,0.044296518,-0.040636476,0.03953345,0.015279415,-0.011218275,-0.05384772,-0.078715935,0.014339336,0.043669797,0.009237842,0.052092906,0.026347278,-0.025093839,-0.06497825,0.0011790156,-0.007652242,-0.017147038,-0.016420044,-0.025545077,0.0069189807,-0.041463748,0.009350651,0.041213058,-0.048758756,0.04364473,-0.012227293,-0.017911637,0.009939767,0.0063079293,0.04830752,-0.03602382,0.010792105,-0.019039731,0.09240349,-0.038681112,0.015103934,-0.0019976676,0.0041864845,0.008736466,0.07856552,-0.041764572,0.03655027,-0.012615859,-0.0020368376,0.008097213,0.040912233,-0.045274198,-0.042240877,0.028377848,0.037277263,-0.0035346965,0.010660495,-0.019841932,0.05810941,0.050864536,0.022073053,-0.0006040007,0.0012260196,-0.0052738427,-0.0036976435,0.057006385,0.07671044,-0.019490968,-0.0013615476,-0.038179737,0.009964836,0.0013638978,0.017510535,0.04387035,-0.013612342,0.003346681,-0.03752795,-0.012922951,-0.048157107,-0.0073702186,0.018914387,-0.0036318381,-0.03710178,-0.011168137,-0.026623035,0.022148259,-0.011951536,-0.03725219,-0.024291638,-0.02955608,-0.03281502,-0.028001817,0.005750149,0.0034375552,-0.037377536,-0.03507121,0.00944466,-0.031862408,0.04419624,-0.010177921,0.03055883,-0.011656978,0.021421265,-0.014966056,-0.01580586,0.007282478,0.024630066,0.021383662,-0.06633197,-0.011437627,0.010196722,0.0095700035,-0.020556392,0.030859657,0.038430426,-0.007019256,-0.037202056,-0.008611122,0.013286448,0.018738905,-0.032288577,0.0028735078,0.035422172,0.0015816827,-0.0052331057,0.011500298,0.0016357373,0.015166606,0.012922951,0.011456428,0.008372969,0.0037289795,-0.03730233,-0.012020475,0.009670278,0.007226073,0.026397415,-0.0042773588,-0.045324337,-0.009394522,-0.005878627,0.0077587846,-0.0075895702,-0.014615093,-0.0089620855,-0.025921108,-0.010936251,-0.020105153,0.021759693,-0.017021695,-0.037954118,-0.01955364,0.023878004,0.018099653,0.011011457,0.019202678,0.005471259,-0.008774069,0.019503504,0.012772539,-0.003779117,-0.014640162,-0.09586298,0.012910416,0.054298956,-0.06989173,-0.007777586,0.009049826,0.002180983,-0.008980887,0.034920797,-0.037427675,0.024918357,0.010516349,-0.0059632338,-0.021985311,-0.034168735,-0.01969152,-0.00575955,-0.025971245,0.0116444435,-0.0022702904,0.030007318,-0.047430113,-0.05550226,0.024655135,0.0076334407,0.032037888,0.038781386,-0.005370984,-0.011092931,0.021245783,0.00819122,-0.017911637,-0.03301557,-0.013537136,-0.007683578,-0.024078554,0.021734623,-0.002033704,-0.033341464,0.043093216,-0.020857217,-0.0018049515,0.048859034,-0.003158665,0.03286516,-0.04008496,-0.018137256,-0.012922951,-0.015241812,-0.0077337157,-0.030909793,-0.018187393,-0.010829709,-0.039082214,-0.061017387,0.021960244,-0.00520177,0.0018378542,-0.0061230473,0.009839492,-0.011280946,-0.007551967,0.0031727662,0.03381777,-0.014314268,0.019541107,0.010221791,0.0067623006,0.009294246,-0.025344526,0.015454897,0.052443866,-0.029531011,0.053346343,-0.010735701,-0.04241636,0.036525197,-0.026221933,0.003979667,-0.02895443,-0.007489295,0.03176213,0.03707671,0.021960244,0.0017642147,-0.027049202,0.04264198,-0.036174234,0.02607152,0.02455486,0.022373877,0.008742734,0.0023016264,-0.01346193,0.010190455,-0.0016827412,-0.038806457,0.014151321,0.0012040844,0.020694269,0.020656666,-0.020293169,0.015367156,0.036324646,-0.014201459,0.061518762,-0.017159574,0.016570456,-0.022461617,0.019315487,0.034745317,0.0030912927,-0.020694269,0.0042742253,0.008680061,0.029305393,0.012465446,-0.01886425,-0.008398038,-0.030985,0.024116157,0.022712305,-0.019114938,0.0077023795,-0.01124961,-0.017046764,0.029004566,0.019704053,0.0020164691,-0.009714148,-0.00026459302,-0.04748025,-0.028829087,-0.0052519073,0.009394522,-0.020907354,-0.023226216,0.020192895,-0.012998157,0.018926922,0.030909793,-0.008535916,-0.0039608655,-0.018375408,0.02120818,0.029029636,-0.006141849,-0.019904604,-0.012973089,-0.007708647,0.009037292,0.04587585,0.015530103,-0.023790263,0.021471402,0.02772606,0.026572896,-0.007583303,-0.0010795239,0.009331849,0.016883817,0.005186102,-0.0017673483,-0.004418371,-0.012935486,0.009551201,0.010453677,-0.029004566,0.04873369,-0.043469246,0.008868078,-0.052092906,0.015216744,-0.02243655,-0.028703742,0.014339336,0.018926922,-0.009933501,0.05730721,0.016457647,0.001262056,0.010127783,0.062421236,-0.02975663,0.008153617,-0.038405355,-0.02812716,0.012064346,0.0037979188,-0.01794924,-0.0008202188,0.018663699,0.00036976437,0.015881065,-0.040235378,-0.011537901,-0.02209812,-0.007106996,-0.001645138,-0.023627317,-0.017297452,0.005101495,-0.003150831,0.014176389,0.01303576,0.02355211,0.0037603155,-0.020907354,-0.010497548,-0.03549738,0.028026884,-0.02652276,0.009356919,-0.020217963,-0.013449395,-0.004703528,-0.11301002,0.007069393,0.03950838,-0.0015934337,-0.0015628812,0.015993875,0.010767037,0.01247798,-0.019804329,-0.04339404,0.015592775,-0.008097213,0.008316564,0.028753879,0.05665542,0.007652242,-0.025946178,0.023878004,0.021947708,0.019365625,0.018187393,-0.0023627316,-0.0064301398,0.020055017,-0.0013278614,-0.020995095,-0.005417988,-0.01937816,-0.0014876748,0.01060409,0.041764572,-0.0068249726,-0.035246693,-0.0154925,-0.017924171,0.008749001,-0.00087192317,0.02040598,0.024003347,-0.039734002,-0.00341562,0.017598277,-0.022737375,0.0069503165,-0.016507786,0.013524601,0.000421077,0.037452742,0.0033341465,0.01638244,-0.035998754,-0.01029073,0.035296828,0.00028221952,0.0053741178,0.038856592,-0.03421887,0.017585743,-0.00821629,-0.037151918,0.031561583,0.025507474,0.01263466,-0.025720559,0.012264896,-0.03567286,0.0115629705,-0.00015707151,-0.0006408204,0.02444205,0.0016874416,0.045600094,0.006248391,0.0010395705,-0.008172419,0.04547475,-0.024091087,-0.0038668578,-0.0021308456,0.049209997,-0.023715056,0.026848653,-0.0024175695,-0.02058146,0.02372759,0.0065116133,-0.004361966,-0.0042240876,-0.0005965584,-0.00023697822,0.0010662061,0.009432125,0.008560985,0.020819614,-0.009118766,0.018814111,-0.014502283,-0.026999066,-0.015755722,-0.03301557,0.0074140886,-0.016557923,0.02281258,-0.052544143,-0.014113718,0.00031629737,0.0022264202,0.005928764,-0.014239062,0.007721181,0.0075770356,0.03424394,-0.019052265,0.0031758999,-0.0041896184,-0.016532853,-0.003826121,0.012095681,0.0052895104,0.0013537136,-0.01843808,0.00921904,-0.02272484,-0.0067121633,-0.0011782323,0.008542184,0.017435329,-0.018738905,-0.00029925845,0.028703742,-0.04061141,-0.017498001,-0.019002128,0.012922951,0.01314857,-0.014276665,-0.021170577,0.01497859,-0.029180048,-0.02812716,-0.0049949526,-0.0040642745,-0.02363985,-0.01283521,0.04377007,-0.0024207032,0.014677765,-0.019729123,-0.012559454,-0.0029518476,0.0070443247,-0.048031762,-0.017911637,-0.00683124,0.0041269464,0.019954741,-0.03176213,0.056154046,-0.012039277,0.0105852885,0.010334601,0.04667805,0.008385504,0.022073053,-0.01303576,-0.016357373,-0.010271928,-0.0001758731,-0.044923235,-0.036048893,-0.03848056,0.022787511,0.008805405,-0.027600717,-0.04158909,0.051892355,0.011011457,-0.028077023,-0.005574668,0.016532853,0.009187704,-0.0054994617,-0.0016467049,0.007940533,0.03507121,-0.015103934,0.03735247,-0.033366535,0.023990814,-0.026948929,-0.0073639513,0.02498103,0.0078026545,0.0038010522,-0.007106996,-0.027350029,0.0305839,0.017435329,-0.0043118284,-0.028628536,0.0013678147,0.007558234,0.0009322449,-0.01314857,0.010234325,0.0022530558,0.0037885178,0.04284253,-0.028478123,0.0025805165,-0.0034939598,-0.0026666904,0.00568121,-0.00086800614,0.02498103,0.030684175,-0.051290702,-0.015855998,0.011920201,-0.02098256,-0.017686017,-0.026973996,-0.011437627,0.03361722,-0.03527176,-0.011870063,-0.07079421,-0.0077337157,-0.037753567,-0.002041538,0.010660495,-0.0027794999,0.0072135385,-0.003926396,0.0154925,-0.015617844,0.023915607,0.028854154,0.00921904,0.035246693,0.019628847,0.0066369567,0.0073388824,-0.042491566,0.007608372,0.021170577,0.003515895,0.034795452,0.0019600645,0.022286138,-0.018224996,0.013374189,-0.023376629,0.007965602,0.03133596,0.01580586,0.008611122,0.0058347564,0.0068500414,0.0037665828,0.00046377224,0.012897883,0.0014022844,0.0042742253,0.004029805,0.003547231,-0.00039933767,-0.0027136945,-0.029380599,-0.007451692,0.05374744,0.01964138,0.01772362,0.014552421,-0.00010448585,-0.0053929193,-0.00917517,0.016946489,0.00481007,0.05886147,-0.028302642,0.009425858,-0.027525509,0.001964765,0.011769787,-0.020004878,0.0004308695,0.004145748,0.0021935173,-0.011243343,0.008354167,0.02855333,-0.0002557798,-0.041062646,0.013649945,-0.0044027027,-0.031411167,-0.002569549,0.01683368,-0.0019819997,-0.02687372,-0.015818395,-0.036174234,-0.018425547,-0.0020932422,-0.006141849,0.02321368,-0.0019490969,-0.023940675,0.009914699,0.0148532465,-0.025206648,0.03629958,0.007783853,0.015254347,0.014715368,-0.0022953593,0.0024724074,0.004872742,-0.013787824,0.010171654,0.017422795,0.03366736,-0.0353219,-0.002787334,0.0077525172,0.012007941,0.009237842,0.040410858,-0.026397415,0.046151605,-0.0409373,-0.002204485,-0.025068771,0.015141537,0.035246693,-0.017222244,0.053947993,0.021483935,-0.0056216717,-0.019942207,0.018701302,-0.014740437,0.0116444435,-0.015254347,-0.0024097355,0.0068124384,-0.016670732,0.011381222,-0.0096514765,0.07661016,-0.01649525,0.007119531,0.010340868,0.011105465,0.005533931,-0.009996172,0.01306083,-0.008454443,0.0074704937,-0.021308454,0.007019256,0.0070380573,0.0003399952,0.016131753,-0.023827866,-0.018450614,0.0043431646,0.023852935,-0.039408106,0.010710632,-0.010397272,0.011011457,0.011888864,0.007125798,-0.037427675,0.027249753,-0.023852935,0.018387944,0.041037578,-0.0036882428,0.02281258,0.0069503165,0.001140629,-0.01886425,0.006643224,-0.0004253857,-0.039182488,0.009181437,-0.0131861735,0.009908431,-0.002585217,-0.021960244,0.0032871426,-0.04116292,0.00019790619,-0.0062577915,-0.057156797,-0.03346681,-0.030884724,-0.025520008,-0.008009472,0.021534074,-0.02249922,-0.018826647,-0.025494939,0.022336274,0.0361241,0.007157134,0.019202678,-0.02098256,-0.010535151,-0.0043870346,-0.008736466,0.010829709,0.03324119,-0.000048595222,-0.0034751582,-0.00591623,0.029455805,0.0057188133,-0.0071445997,-0.02209812,0.014364406,-0.0009831658,0.0063988036,0.01603148,-0.05299538,-0.0012134851,0.03286516,-0.011099198,-0.04201526,-0.008642458,0.011813658,-0.06392536,0.0627722,0.0039545987,0.004020404,0.010516349,-0.0058253556,-0.01672087,-0.008341634,-0.013988374,0.020230498,0.010760769,-0.0024316707,0.011650711,-0.012083148,-0.029881975,0.0076961126,0.011525367,0.056956246,0.020305704,-0.01314857,-0.012177155,0.019039731,0.0119264675,0.013800358,-0.00013866163,0.0021997846,-0.014489749,-0.023539575,-0.00897462,-0.013010692,0.0074642263,-0.033341464,0.019854465,-0.05116536,-0.000846071,-0.033692427,0.042516634,0.045173924,0.023025665,0.0063517997,-0.031711996,-0.012396507,-0.00025754244,-0.013474464,0.017673483,-0.0000057898087,-0.021972777,0.015317018,0.03444449,-0.032313645,-0.008435641,0.0056592748,-0.01426413,-0.011124266,-0.016507786,0.0057626837,-0.0148532465,0.016482716,-0.015530103,-0.014627627,-0.0102593945,-0.022912856,0.009952302,-0.016018944,-0.009269178,-0.0230382,-0.018224996,-0.025820833,-0.029205117,-0.03522162,-0.011663245,-0.021333523,0.043845277,-0.0014790575,0.016106686,-0.014514818,-0.002010202,-0.00003726042,-0.032739814,-0.0012785073,0.015642913,0.008510848,-0.008723932,0.0061606504,-0.020706804,-0.023063269,0.010998923,0.019315487,0.008510848,-0.016670732,0.018914387,-0.032489125,-0.018989593,-0.0030239203,-0.023990814,-0.017247314,0.009099963,-0.024216432,0.01326138,0.03196268,0.00035762167,0.00799067,-0.010591555,-0.0046753255,-0.025407199,-0.0031696325,-0.0046001193,0.02098256,-0.017084368,-0.048959307,-0.038405355,-0.03502107,0.0127412025,0.009927233,-0.006881377,-0.008134816,-0.012816409,-0.015680516,0.01346193,0.008435641,-0.0013811325,-0.011262145,-0.022712305,0.046978876,0.017510535,-0.007483028,0.0052049034,0.013775289,0.04898438,-0.009933501,0.015843462,-0.0048476732,0.026973996,0.02363985,-0.0035440973,0.027425235,0.01774869,-0.0038668578,-0.0072010043,-0.042065397,-0.01763588,-0.005737615,-0.019014662,-0.009269178,0.03913235,0.009031025,0.005703145,0.026146727,0.016883817,-0.029054705,-0.028804017,-0.021245783,-0.033867907,-0.0015472132,-0.019516038,-0.008134816,-0.014113718,0.032714747,-0.0053897854,-0.0060259057,-0.014414543,0.014364406,-0.011462695,-0.027675923,-0.027350029,0.007927999,-0.004709795,0.034745317,-0.0027528643,0.023602247,-0.03629958,-0.0015926503,-0.019603778,-0.017823895,0.004919746,-0.007846525,0.02772606,0.008398038,0.0133491205,-0.024316708,0.03243899,-0.0056060036,-0.016044013,0.01814979,0.021258317,-0.0060823103,0.0042522904,0.011556703,-0.00054367894,-0.0053459154,0.011036526,-0.018901853,0.00552453,0.018049514,0.052293453,-0.014025977,-0.057557896,0.029230187,0.04439679,0.0010035342,0.0012213192,0.016871283,0.004446573,-0.024191363,-0.022449084,0.0097329505,0.010955052,-0.013311517,-0.002166882,-0.029104842,0.046753258,-0.014301733,0.008159884,0.027976748,0.012935486,-0.009381987,0.015041262,-0.00076303066,0.026447553,0.009808157,0.008767802,-0.01814979,0.0070819277,-0.009482263,0.0012424709,0.025570145,-0.0015832495,0.008285228,0.017071832,-0.023865469,0.050613847,-0.01812472,0.029606218,0.023715056,-0.0031429972,-0.0031774666,0.0018566558,0.006389403,0.008993422,-0.0064301398,0.031862408,-0.0010536717,0.016645662,-0.0035879677,0.024429517,-0.0070380573,-0.017510535,-0.031411167,0.0016702068,-0.01406358,0.008830475,0.00025891338,-0.01812472,-0.0060039703,0.012145819,-0.012778806,-0.0042522904,0.0036851093,-0.015605309,-0.000028226848,0.008003205,-0.0094885295,-0.03712685,-0.02466767,0.010798372,-0.036174234,0.0013490132,0.035798203,0.0058222217,-0.010967587,0.015855998,-0.014351871,-0.005549599,0.0034062192,0.038931802,0.0030474223,-0.0064740097,-0.020355841,-0.011099198,0.022248533,-0.015592775,0.062471375,0.04544968,-0.025068771,0.015154071,0.01964138,-0.0017062431,-0.017184641,-0.026999066,-0.014903384,-0.021972777,0.008278961,-0.00861739,-0.00013601767,0.0036349716,-0.036475062,-0.016959023,0.037628222,-0.006054108,0.023389162,0.0033999518,0.017598277,-0.029907042,-0.018250065,0.008379237]},{"id":"interface-GatewayGuildDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildDeleteDispatchData\nDescription: GUILD_DELETE — id, unavailable? (true = temp outage)\nProperties: id: string, unavailable: boolean","meta":{"url":"/docs/typedefs/GatewayGuildDeleteDispatchData"},"embedding":[-0.015489817,0.022728909,-0.0043815556,0.01995677,0.0133483065,0.04632493,-0.04556292,0.00324511,0.018091159,-0.010746963,0.028772432,-0.0042698816,0.0026276193,-0.005242101,0.053524606,-0.0108389305,-0.0357619,0.029350508,-0.034894787,0.061065875,0.0060468093,0.031951852,0.0075281295,0.014609564,-0.01974656,0.027169585,0.045589197,-0.008506918,0.024883555,-0.033318214,0.030427832,-0.04204191,0.04432794,-0.034553196,-0.0064245295,0.018485302,0.0002498291,0.0042698816,-0.046508864,-0.03775889,-0.030690596,-0.045746855,0.015502955,0.020101288,-0.05073933,0.03542031,0.008296709,0.0028805279,0.00224333,-0.023596022,-0.0100769205,-0.0029495028,-0.04038651,0.064113915,-0.0053110756,-0.024279203,-0.020272084,0.02396389,0.00794198,-0.0068646558,-0.010510477,0.010162318,-0.0031646392,0.025566736,0.011397299,-0.0076266653,-0.017736431,0.065270066,0.0010009587,0.06936915,-0.009636794,-0.013768726,-0.013243202,-0.015647473,0.019273588,0.023832507,0.0024486128,-0.016856179,0.004641033,-0.043381996,0.0031350784,0.0363137,-0.09627598,-0.052315902,0.044091456,0.006434383,-0.08592316,-0.031163566,0.025658704,0.044144005,-0.016685383,0.015962789,-0.00014913794,-0.037811443,-0.03844207,-0.07667393,0.05192176,0.026092261,-0.039860986,0.051475063,0.060382694,-0.05412896,-0.025251422,-0.037863996,-0.0075478368,0.004824966,-0.026446989,0.04792778,-0.016133584,0.0011364454,-0.06069801,0.0022039157,-0.034053948,0.015187641,-0.015279607,0.008132482,0.021993175,-0.03626115,0.06537517,-0.0032894511,-0.03526265,0.0066938605,0.0352101,-0.021980036,-0.034185328,0.022702632,0.01836706,-0.017355427,-0.071891665,0.016554002,0.03754868,-0.008428089,0.030874528,-0.015148226,-0.019181622,0.024082132,-0.039650775,-0.027563728,-0.030611767,-0.011988513,-0.016843041,-0.0088222325,0.027169585,0.079196446,-0.05294653,0.024449999,0.005537708,0.011436714,0.009367463,0.029376784,-0.043460824,-0.010753533,0.016593417,-0.038284414,0.0013080618,-0.025632428,0.02651268,0.0033420036,-0.021940622,-0.045510367,0.012198723,-0.05875357,0.020258946,-0.0007139735,-0.036339976,0.012179016,0.03342332,-0.015844544,-0.05163272,-0.009709054,0.020390326,-0.0060566626,-0.045668025,0.0074887155,-0.02505435,0.027143309,-0.004223898,0.00690407,-0.029429337,-0.0313475,0.006897501,-0.0024765313,0.035499137,-0.048374474,-0.050292637,-0.02098154,0.004273166,0.02036405,-0.03126867,-0.011935961,-0.017421117,0.01512195,0.008605453,0.019969909,0.015043121,-0.019864803,0.038520902,-0.017421117,0.00428302,-0.010641859,0.011265919,-0.031111013,0.056178503,-0.012638849,0.004016973,-0.0073967488,0.012796506,-0.036497634,0.0012078838,0.013085545,0.03142633,-0.027274689,-0.04259371,-0.006227458,-0.02180924,-0.0024601086,-0.04106969,0.038336966,0.021454513,0.011469559,-0.026446989,0.028062975,-0.019904217,-0.0042436053,0.025974018,-0.013289185,0.015148226,-0.0010559745,-0.008375537,0.006917208,-0.021073507,-0.00617819,0.0058431686,-0.037995376,-0.0039020148,0.017762708,0.024331756,0.015371573,-0.0005185443,0.026736028,-0.028903814,-0.05917399,-0.005186264,-0.006191328,0.0004598334,-0.016251827,0.035998385,-0.0039808434,-0.020810746,0.03334449,-0.012435209,0.06253734,0.01035939,-0.04929414,-0.017775845,-0.011541818,-0.0065493416,-0.021940622,0.034526918,0.014005211,0.034894787,-0.013433704,-0.009222944,0.033607252,-0.01546354,0.012868766,0.07599075,-0.0014148088,-0.046062168,-0.0006441773,-0.0000036213164,-0.001978926,0.06973702,-0.050581675,-0.005018753,-0.0002180103,0.023937613,0.049215313,-0.013039561,-0.011857132,-0.04508995,0.0018524717,0.0030907374,0.037338473,-0.0032779553,0.05502235,-0.0036885208,0.03334449,-0.0016882455,0.057965286,-0.031925578,0.016409483,0.037391026,-0.00052347104,0.015450402,0.027195862,0.045116227,-0.005031891,0.03823186,0.015608059,0.05005615,-0.02927168,-0.041332453,-0.024765313,0.018380199,0.0011988514,0.016120445,0.023701128,-0.020416602,-0.0073836106,-0.012100187,-0.037601233,-0.03720709,0.03342332,-0.016081031,-0.028089251,0.016383206,0.01629124,0.04543154,-0.01573944,0.052210797,-0.006605178,-0.028483395,-0.037128262,-0.026696613,-0.048716065,0.016330654,-0.041463833,-0.0026900254,0.06227458,-0.013505964,-0.035341483,0.0049957614,0.023569746,0.027852766,0.04611472,-0.040491614,0.057071894,0.018498441,-0.036760397,-0.002325443,0.006572333,0.006871225,0.016606554,0.029560719,-0.044275388,-0.02824691,0.023504056,0.006089508,0.04343455,-0.007081434,0.034421813,-0.010050644,-0.047954053,-0.023254432,-0.03334449,0.047139492,0.013190649,-0.0091244085,0.048558407,-0.015713165,0.01629124,-0.01166663,0.02706448,0.0291403,0.012224999,-0.042409778,-0.0040826635,0.0022449724,-0.02982348,-0.0027951302,0.01898455,-0.050502844,-0.021796104,-0.031111013,0.0117914425,-0.030821975,-0.004693585,0.037601233,0.010188594,-0.012757093,0.014819774,-0.02148079,-0.01353224,0.016606554,0.00044341077,-0.04261999,0.039519396,-0.07215443,-0.023490917,0.042751368,0.011180521,-0.0070945723,-0.032687586,-0.04424911,-0.03891504,0.008447796,0.016580278,0.018485302,-0.009282066,0.042068187,0.040885758,-0.03791655,-0.0020955265,-0.009380601,0.031163566,0.037023157,0.008460934,0.03728592,-0.057177,-0.002855894,0.032319717,0.026696613,0.015936513,0.04619355,-0.08566039,0.013144666,-0.039204083,-0.025395941,-0.0013039561,-0.006207751,0.020508569,-0.008920768,0.013440274,0.017854674,-0.03639253,0.0022039157,0.018340783,0.024817865,-0.09385856,-0.07888114,-0.0065789022,0.024962384,0.017723292,0.06579559,0.0021595748,-0.0060468093,-0.054864693,-0.030427832,-0.025868913,-0.047559913,-0.002813195,0.0023960604,0.007173401,0.0007501032,0.017302874,0.06117098,-0.028903814,0.048427027,0.004956347,-0.028483395,0.005537708,-0.0238982,0.01836706,-0.045352712,-0.01580513,-0.033817463,0.028404566,-0.034132775,0.005330783,-0.046167273,-0.03376491,-0.012192154,0.06033014,-0.028325737,0.016409483,0.0044702375,0.017513083,0.009781313,0.03397512,-0.04474836,-0.02554046,0.067372166,0.0045753424,0.002036405,0.022886565,-0.002511019,0.035367757,0.06984212,0.0015831407,-0.0046804473,0.009715623,-0.015069397,-0.029166576,0.042882748,0.0396245,0.017145216,0.006303002,-0.065532826,0.017578773,-0.03066432,-0.0029708522,0.04997732,-0.0151745025,-0.0060665165,0.0058431686,0.019943632,-0.030480385,0.018840032,0.0012826067,0.00043684174,-0.043355722,-0.0010994945,-0.024896694,0.02278146,-0.010858637,-0.03224089,-0.034999892,-0.029665824,-0.05528511,0.002098811,0.020810746,-0.003908584,-0.025303975,-0.041936807,0.009656501,-0.026499541,0.032556206,-0.017999193,0.011456421,-0.0060106795,0.034842234,0.00068071764,-0.018656097,0.015660612,0.00011834552,0.0063818307,-0.07436163,-0.004723146,0.030532937,0.024344893,-0.0324511,0.013479687,0.056388713,0.013105252,-0.004956347,-0.025303975,0.010017799,0.025014937,-0.042541157,0.015686888,0.014018349,0.02466021,-0.0065559107,-0.006398253,-0.007298213,-0.026184227,0.03100591,0.0024666777,0.029087747,0.00079854997,-0.008894492,-0.022150831,0.003465173,0.008782818,-0.0045129363,-0.0011939246,-0.036208596,0.012862197,-0.010582738,0.007133987,-0.01630438,0.024699623,-0.018905722,-0.0141103165,-0.00011865344,-0.020508569,0.022085141,-0.007160263,-0.006240596,0.0015938154,0.03339704,-0.023569746,0.009236082,0.042567436,0.03226717,-0.0013745734,0.01912907,0.008414951,-0.028325737,-0.022912841,-0.07536013,0.009078425,0.07457184,-0.06689919,-0.0002574246,0.018537855,-0.0060993615,-0.042567436,0.024331756,-0.00745587,-0.012665126,0.013624207,-0.029797204,0.032056957,-0.018196264,0.02837829,0.006759551,-0.012172447,0.022072002,0.010530185,0.024016442,-0.022912841,-0.011305332,0.045352712,0.010319975,0.011081985,0.01677735,0.0033929136,0.011587801,-0.011423576,-0.012645419,0.0059548425,-0.022072002,-0.03678667,-0.016501449,-0.01919476,0.01698756,-0.038626004,-0.03058549,0.023648575,0.008185035,-0.015240192,-0.001978926,-0.013913245,0.016501449,-0.038678557,-0.020456018,-0.009104702,-0.012579728,-0.010477632,-0.032503653,-0.05073933,-0.017999193,-0.024739036,-0.04177915,0.017788984,0.0031432898,0.0041647768,-0.02506749,-0.0073836106,-0.011022864,0.015266469,0.008513487,0.015489817,-0.02230849,-0.026959375,-0.013571654,0.013065837,0.00383304,-0.0036819517,-0.025028074,0.02305736,-0.011765166,0.042357225,-0.0006651162,-0.04025513,0.04882117,-0.018406475,0.002826333,0.0056329593,0.00993897,0.016409483,0.034763403,-0.0122052925,-0.0031925575,0.03460575,0.020075012,-0.010543323,0.016028479,0.025842637,0.01828823,0.03142633,0.0054030423,-0.018971412,0.0063161403,-0.012264414,-0.05297281,-0.009465999,0.014438769,-0.0043060114,0.010260854,-0.025501046,0.02243987,0.042409778,-0.003852747,0.07725201,-0.008106206,-0.0030578922,0.0014402639,0.020390326,0.03528893,0.020731917,-0.012021359,-0.004404547,0.017841537,0.010385666,0.037233368,0.010024368,-0.020009322,-0.020324636,0.0059022903,0.03492106,-0.020285223,0.0037115125,0.00786972,0.021362545,0.007955118,0.00438484,-0.013374583,-0.0050417446,0.013992073,-0.07357334,-0.011279057,-0.011285625,0.00052634504,-0.038888767,-0.0012472981,0.01828823,-0.013795002,0.04156894,0.034342986,-0.0009196668,0.0048578116,-0.015713165,0.01669852,0.0042140447,0.003990697,-0.017920364,-0.045878235,-0.024003303,0.007153694,0.000278774,0.0017490091,0.020377189,0.018669236,0.035814453,0.02774766,0.0031613547,0.0031941999,0.023517193,0.03279269,-0.0049464935,-0.03274014,-0.028614776,-0.013965798,0.018078022,0.0032303296,-0.017788984,0.0110294325,-0.018025469,0.009853573,-0.026749166,0.014307388,-0.018682374,-0.05108092,0.0054260343,0.021782964,-0.030953357,0.04109597,0.0067464127,-0.010214871,0.03507872,0.061118428,0.004066241,0.00821788,-0.052368455,-0.0032221184,0.012422071,0.025645565,-0.015358436,-0.01573944,0.00045121153,0.021441374,0.019588903,-0.037391026,-0.0029035194,-0.02188807,0.002806626,0.018616684,-0.010037506,-0.014964293,-0.010687842,-0.02333326,0.020101288,0.016107308,0.027511176,0.0094265845,-0.025264561,0.003727935,-0.031111013,0.010221439,-0.018012332,-0.009787883,-0.00026070912,-0.02036405,-0.0031876308,-0.076831594,-0.0006659373,0.022242798,0.011830856,0.0041614925,0.0346583,0.026381299,0.03720709,0.0008006028,-0.05449683,0.033948842,-0.022400456,-0.02071878,-0.004240321,0.060645457,-0.005757771,-0.0077908915,0.027800214,0.021690998,0.025566736,-0.011160813,0.007968256,-0.017000698,0.013407428,-0.010208301,0.008290139,-0.00493664,-0.01325634,-0.0012686475,0.01919476,0.036681566,-0.043408275,-0.02893009,-0.007147125,-0.009071856,-0.011541818,-0.0020265514,0.017237183,-0.0068055345,-0.0285885,0.01794664,-0.011049139,-0.0010494055,0.017000698,-0.019418107,0.025317114,0.014964293,0.025435356,-0.0151745025,-0.0051337113,-0.0467979,0.020915851,0.005757771,-0.017066387,-0.00024859744,0.0072062463,-0.0014501174,0.030375281,-0.044380493,-0.04149011,0.027773937,0.040071197,0.001584783,-0.024633933,0.035656795,-0.02354347,-0.020928988,-0.001258794,0.038704835,-0.0020216247,0.018564131,0.017697018,0.03431671,0.000009410932,0.003044754,0.046035893,-0.019273588,0.0041253623,0.023714265,0.029035194,-0.016974421,0.03426416,-0.0011241285,-0.00794198,0.025041213,0.015043121,-0.009741899,0.010694411,-0.010871775,-0.021625308,-0.0064935046,-0.0015240193,-0.007974825,0.02534339,-0.004591765,0.0151745025,-0.03825814,-0.028325737,-0.020600537,0.003494734,-0.018117435,-0.011095123,-0.004329003,-0.046062168,0.0077449083,-0.03271386,0.014609564,0.027379794,-0.0077908915,0.01546354,0.010484202,0.040517893,-0.020955265,0.013368014,-0.0066741533,-0.019523213,0.018064883,-0.00497277,0.017210906,0.013886969,-0.018235678,0.016921869,-0.012829352,-0.01090462,0.016829902,0.040176302,0.015568645,-0.0045950497,0.008106206,0.05549532,-0.048374474,-0.013663621,-0.016501449,0.0090127345,0.012881904,-0.01781526,-0.006283295,0.02837829,-0.029928586,-0.027931595,-0.00033029998,-0.019181622,-0.050082427,-0.02940306,0.059279095,-0.013262909,0.029297957,-0.011594371,-0.017381702,-0.015594921,-0.0010009587,-0.049215313,-0.03681295,-0.012507468,0.009406878,0.04424911,-0.020416602,0.03657646,-0.02312305,0.016448898,0.013420566,0.009860142,0.0028345445,0.008244156,-0.0015396208,-0.023937613,-0.011587801,0.017683879,-0.03880994,-0.013105252,-0.038074207,0.032976624,-0.014386216,-0.010536754,-0.0048906566,0.03978216,-0.025855776,-0.010096627,0.02002246,0.020416602,0.0017013836,-0.023569746,0.0025192301,-0.003915153,0.057177,-0.00011270024,0.02782649,0.0053242138,-0.0030316159,-0.008763111,0.024673346,0.032319717,0.03100591,0.014557011,-0.0058727292,-0.027432347,0.030138794,0.027905319,-0.0046016187,-0.009268927,0.018656097,0.02927168,0.015581783,-0.015043121,0.0037115125,-0.0027294396,-0.0019871371,0.026210504,-0.033686083,0.001891886,0.003984128,0.019234175,0.009275497,-0.002900235,0.015003707,0.035026167,-0.026565233,-0.005291369,0.0018771057,-0.026617784,0.007140556,-0.00766608,0.017486807,0.04861096,-0.014267974,-0.0006757909,-0.06069801,0.010260854,-0.048663512,-0.0013565086,-0.008191603,-0.02104723,-0.02036405,-0.003911868,-0.00428302,-0.0003358426,0.019838527,0.026105398,-0.0063818307,0.035577968,0.009039011,-0.018406475,0.014281112,-0.027432347,0.0074952845,-0.02271577,0.01533216,0.039020147,0.0028805279,0.020035598,-0.025987156,0.0019083086,-0.035183825,0.012717678,0.0053045065,-0.0046968698,-0.008749973,0.015857683,0.00302012,0.011837426,0.013479687,-0.017316012,-0.019102793,-0.0002703574,0.02023267,0.014622702,-0.0363137,-0.00828357,-0.014688392,-0.027800214,0.04861096,0.048032884,-0.000109518354,-0.0031629968,-0.02706448,-0.015568645,-0.005294653,0.029087747,-0.0012472981,0.014662117,-0.008520056,-0.013821278,0.016238688,0.023504056,-0.011049139,-0.034815956,-0.0058595915,0.0053110756,0.00035637087,-0.00045531717,0.013886969,0.02312305,-0.0046771625,-0.04364476,0.0011109903,-0.0109506035,-0.018695513,0.0065953247,0.007133987,0.00731792,-0.022676356,0.002750789,-0.02651268,-0.03431671,-0.019720284,0.0037673493,0.009860142,0.045063674,-0.0066741533,0.026157951,0.018275093,-0.0031531432,0.0379691,0.002826333,0.0057807625,0.01857727,0.014254835,-0.030559214,-0.0034980183,-0.008073361,0.011798011,-0.018196264,0.014767221,-0.013913245,-0.01588396,0.016882455,0.01739484,-0.0077974605,0.041516386,-0.0030102665,0.020902712,-0.030953357,0.020547984,-0.0073770415,0.013558516,0.006897501,-0.027038204,0.05549532,0.011193659,-0.013190649,-0.038520902,0.0056362436,-0.015726302,-0.012198723,0.005958127,-0.0064179604,-0.0012325178,-0.01139073,0.029613271,-0.016764212,0.08723696,-0.03113729,-0.011364454,-0.015897097,0.0024765313,0.014044626,-0.019720284,0.01249433,-0.021086646,0.0010296984,-0.022190247,-0.0011471201,-0.013197219,-0.010990018,0.013000147,0.014767221,-0.0069566225,0.024607657,0.010241147,-0.007994532,0.007836875,0.0029297958,-0.0150956735,-0.014438769,-0.012868766,-0.04564175,0.042409778,-0.016028479,0.011298764,0.031189842,0.005232247,0.018485302,0.006657731,-0.02547477,-0.03707571,-0.0022351188,0.0033354345,-0.020429742,0.0029035194,-0.027695108,0.02243987,-0.01249433,-0.026105398,-0.014819774,-0.024476275,0.009965247,-0.024686484,-0.04932042,-0.01173889,-0.01906338,0.005442457,-0.012067342,0.010674704,-0.036366254,-0.01643576,-0.019391831,0.022137694,0.04296158,-0.0060993615,0.0031400053,-0.02698565,0.015043121,0.0013244844,-0.0033485724,0.035315204,0.05701934,0.008434658,0.0016718229,0.008014239,0.030322729,0.011121399,-0.0020413317,-0.0118242875,-0.00793541,0.00057930796,0.00029704417,0.0029232267,-0.022623803,-0.0040071197,0.025120042,0.014202283,-0.01573944,0.022886565,0.013781864,-0.06621601,0.048427027,-0.0247259,-0.0125862975,-0.009328049,-0.009196668,0.0014542232,-0.027931595,-0.026683476,-0.018380199,0.0141103165,-0.0075412677,-0.009150685,-0.011417006,-0.032687586,0.020311499,0.00091474,0.023254432,-0.02230849,-0.012165878,0.01753936,0.0037115125,0.009755037,-0.004966201,-0.0028460403,-0.020534845,-0.028824985,-0.02312305,-0.014964293,0.008401813,0.0015585067,-0.031111013,0.059594408,-0.06758237,-0.015621197,-0.007817168,0.010635289,0.023228155,-0.0026867408,-0.022492422,-0.014281112,0.003852747,-0.0023714264,0.011049139,0.008171896,-0.003990697,-0.02188807,0.033370767,0.016186135,-0.031216118,0.0004705081,0.021690998,-0.019904217,-0.017697018,-0.026013432,-0.011929392,-0.0013285901,-0.008237587,-0.018603545,-0.00048036166,0.0015141657,0.015371573,0.013584793,-0.0045589195,-0.009853573,-0.005274946,-0.033186834,0.0010305195,-0.045037396,-0.034684576,0.016882455,-0.031925578,0.03168909,0.01374245,0.017631326,-0.021257441,-0.01677735,0.0040005506,-0.020390326,0.0043717017,0.025093766,0.02154648,-0.016554002,-0.009603949,0.016724797,0.009282066,-0.0051074354,0.005281515,0.0075281295,-0.005646097,0.015450402,-0.024397446,-0.013676759,-0.022978531,-0.017828397,-0.021020954,-0.02664406,-0.019339278,0.016094169,0.025908327,0.0010231293,0.004079379,-0.033029176,-0.008953613,-0.012941025,-0.014399354,0.01656714,0.0031531432,-0.01380814,-0.029613271,-0.02174355,-0.033659805,0.014307388,0.020534845,0.0023894913,0.020534845,-0.024870418,-0.0022318342,-0.013223494,-0.0063292785,-0.0038231863,-0.0038166172,-0.0119491,0.024936108,0.00856604,-0.0005444099,-0.009511982,0.022873428,0.01152868,0.0006101004,0.010983449,-0.0038757387,0.010103197,0.016501449,-0.020390326,0.032293443,0.009511982,0.008211311,-0.0073901797,-0.057124447,-0.02023267,-0.035341483,0.036760397,0.02740607,0.01491174,0.027274689,0.009564535,0.0324511,-0.0011077058,-0.07010489,-0.022742046,-0.00828357,-0.0012390867,-0.010609013,-0.0100769205,0.0114432825,0.012211861,0.007994532,-0.024817865,0.023149326,-0.006871225,0.001109348,-0.010668135,0.001534694,-0.0341065,0.016317517,0.00012193796,-0.004949778,0.011843994,0.021178612,-0.046771627,0.010365958,-0.019602042,-0.042751368,-0.002982348,-0.025671842,0.010792946,0.009262359,-0.0075478368,-0.0050023305,0.018183127,-0.0018311223,-0.0123957945,0.0035472861,0.008027378,-0.024594517,0.005199402,-0.022860289,-0.030874528,0.02396389,0.001216095,-0.008086499,0.011752028,0.015148226,0.031794194,0.009367463,-0.045484092,0.016803626,0.034500644,0.0042567435,-0.034159053,-0.0070617273,-0.03226717,-0.035104994,0.001427947,0.02299167,0.014504459,0.0034290433,-0.010392235,-0.017618189,0.050292637,-0.0047395686,-0.024331756,0.018879445,0.004792121,-0.00022314237,-0.0010912832,-0.021204889,0.043881245,-0.018117435,-0.018945135,-0.047323424,-0.0035078719,-0.013755588,-0.00028287966,0.02596088,-0.021769827,0.015700025,0.005150134,-0.00049637374,0.0341065,-0.011765166,0.035525415,0.03140005,0.00800767,-0.0070551583,0.008053654,0.015831407,-0.02174355,-0.03066432,0.0057873316,0.0017572205,0.0033699218,0.006723421,0.020061875,0.019431246,-0.028036699,-0.015975926,-0.024003303,-0.017302874,0.010471064,0.01974656,-0.00834926,-0.021704137,0.033370767,-0.013197219,-0.01643576,-0.022925979,0.0037640647,-0.024397446,0.009485706,0.020061875,-0.005652666,-0.011417006,0.009702485,-0.04556292,0.01953635,0.011095123,-0.0038724542,-0.028299462,0.015016845,-0.0050417446,-0.000017487526,-0.0053800507,0.075149916,-0.003954567,-0.0025914896,-0.05649382,0.013039561,0.013834416,-0.0019690723,0.037732616,0.03140005,-0.02299167,-0.011725752,0.029087747,-0.006601894,-0.015108812,-0.0324511,0.012218431,-0.015213916,0.0027984148,-0.0008223628,-0.003911868,-0.019221036,-0.04025513,-0.0038494624,0.029849757,-0.0046081874,0.00717997,0.0062044663,0.006289864,0.023254432,0.008099637,0.0018853169]},{"id":"interface-GatewayGuildEmojisUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildEmojisUpdateDispatchData\nDescription: GUILD_EMOJIS_UPDATE — emoji list for a guild changed.\nProperties: emojis: APIEmoji[], guild_id: string","meta":{"url":"/docs/typedefs/GatewayGuildEmojisUpdateDispatchData"},"embedding":[-0.009879254,0.0036567557,-0.0028520976,0.031040901,0.0005251038,-0.0018698993,-0.025176348,-0.002721806,0.026092684,-0.006523171,-0.01235909,-0.021110104,-0.021522455,-0.014638477,0.018945258,-0.011018948,-0.029964207,0.033492103,-0.028635519,0.03640147,-0.022198254,-0.005718513,0.028566793,0.044465233,-0.007857586,0.03005584,-0.02888751,0.03672219,0.025267981,-0.020926837,0.006958431,-0.03133871,0.09145039,-0.025588699,-0.040822797,0.03078891,-0.043869615,0.022473155,-0.001756789,-0.020125043,-0.016665872,-0.05951606,-0.0021605499,0.009478357,-0.06460173,0.029139504,-0.032438315,0.0040862886,0.029712213,0.015440271,-0.008206939,0.032323774,0.0012671216,0.03557677,-0.0040776976,-0.028704243,-0.029872572,0.0114942975,-0.028108625,0.03408772,0.017811293,-0.018063284,0.007519687,-0.04160168,0.0120383715,0.016276428,-0.0563547,0.04293037,0.03587458,-0.020102134,0.024763996,0.01698659,-0.016894955,0.0070615187,-0.0059390063,-0.0111621255,-0.038371596,-0.0153486375,0.015875531,-0.054292943,-0.013080705,0.040410444,-0.06139455,-0.077476256,0.030422375,0.0029981388,-0.039402474,-0.020434305,0.0035250324,0.03525605,-0.022014987,-0.013630507,-0.09704004,-0.012989071,-0.03468334,-0.057087768,0.040639527,0.0013458694,-0.032392498,0.052002102,0.07816351,-0.05314752,-0.09410777,-0.043732163,-0.00009592899,-0.0054522026,-0.022919869,0.023870569,-0.048153486,-0.011809288,-0.07944638,0.022988595,-0.008264211,-0.009071732,0.006832435,0.00567556,0.020903928,0.0117233815,0.051085766,-0.03051401,-0.06524316,-0.013607598,0.040799886,-0.020926837,-0.0068954327,0.034454256,-0.005770057,-0.014856107,-0.06391448,-0.009661624,0.012977617,-0.02602396,0.039791916,0.04723715,-0.03482079,-0.0117405625,0.009117549,-0.01570372,-0.049069826,-0.015543359,0.017891472,-0.021705722,0.009186274,0.01698659,-0.055804897,-0.0070901546,-0.053743143,-0.0067808907,-0.027513007,0.02643631,-0.03944829,0.022748055,-0.023504034,0.001393118,0.011219396,-0.013321243,-0.025313798,-0.007072973,-0.014512481,-0.008871283,-0.028864603,-0.062035985,-0.0035364865,-0.0021906171,-0.02428292,-0.014775927,0.03624111,-0.010686776,-0.033446286,-0.014317759,0.037019998,-0.038806856,-0.046458267,0.011236577,-0.028566793,-0.0032444042,0.008264211,0.013481602,-0.0846695,0.015234096,0.037019998,0.01257672,-0.063685395,-0.05447621,-0.010583688,0.007754498,-0.007840405,0.0013036319,-0.008934282,-0.012507995,-0.013057796,0.029116595,0.050948314,0.018326731,0.032140505,-0.03759271,0.03065146,-0.017089678,0.018384002,-0.03223214,0.024168378,0.018280914,0.060478214,0.0024841311,-0.008212667,-0.027283922,0.008143942,-0.03727199,0.00015275259,0.011368301,0.044190332,-0.028498068,-0.026069775,0.00054156926,-0.050123613,0.02357276,-0.05548418,0.0304911,-0.013435786,0.02542834,-0.019288884,0.05232282,0.06542643,-0.031728156,0.017353125,0.0055180644,-0.0021505274,-0.0012477927,-0.021866081,0.048749108,0.0015864078,-0.017444758,-0.018750537,-0.06029495,0.0054092496,-0.032873575,0.010056794,0.0062253615,0.019689782,0.03630984,-0.0138939535,-0.027100654,0.009627261,0.016127525,0.00096931227,-0.0063914475,0.014730111,0.006196726,-0.011912376,0.05099413,0.0163337,0.03798215,0.012256002,-0.038738128,-0.003207178,-0.004710543,-0.021682814,0.03207178,0.014123037,0.040364627,0.008831194,0.0036710734,-0.0010945927,0.03424808,0.008917101,-0.00511144,0.025267981,0.035004057,-0.039791916,0.0044442327,0.030536916,-0.00097074406,0.044763044,0.02384766,0.0022722285,0.02275951,-0.0073421467,0.0065460796,0.018498546,-0.013985587,-0.030880542,-0.0329423,0.0011225123,0.033285927,-0.010463418,0.046000097,0.05649215,-0.003943111,0.01603589,0.019334702,-0.0054149767,0.003169952,0.0056698327,-0.010268697,-0.00009261801,0.044648502,0.043869615,-0.0016780414,0.028772969,0.028268984,0.0069870665,-0.025680333,-0.06231089,-0.01603589,-0.027283922,-0.0045072306,0.0013093591,0.008103852,0.00015060493,0.009993796,0.05177302,-0.015932802,-0.03470625,0.011328211,-0.033744097,-0.0058101467,0.0077029546,0.060340766,0.05493438,-0.0034648976,0.003041092,0.01044051,-0.0012771441,-0.038234144,-0.061440367,-0.030445283,0.008275664,-0.042014033,0.0054722475,0.02774209,0.038623586,-0.02760464,0.03509569,0.061348736,0.02629886,0.045656472,-0.02183172,0.05869136,0.033996087,-0.030674368,0.015279912,-0.0068897055,0.015211187,-0.03844032,0.04897819,-0.03614948,-0.035439316,0.05305589,-0.004696225,0.0040232902,0.0003169594,0.017765475,0.0028291892,-0.04769532,0.0041550137,-0.07628502,0.015864078,0.004306782,-0.0002804491,0.050169427,0.00029082948,-0.0076915002,0.00366821,0.056629602,0.008430297,-0.007239059,0.008430297,0.033194292,0.025038898,-0.022587696,-0.019472152,-0.03145325,-0.034179356,-0.03191142,-0.0117749255,0.0012184413,-0.019071255,0.00982771,-0.018979622,-0.019884504,-0.026505036,0.0055810628,-0.0050312607,0.0019128526,0.04377798,-0.0003430893,-0.012656899,0.00436978,-0.014306305,0.01747912,0.04222021,0.02017086,-0.044327784,-0.035049874,-0.028933328,0.006912614,0.019243069,0.008367298,0.0047706775,0.0054235673,-0.006523171,0.0153830005,0.04244929,-0.006523171,-0.024305828,0.018017469,-0.014352121,0.041693315,0.045748103,-0.027971175,0.0026903069,0.0144552095,0.012370544,0.015531905,0.02616141,-0.04696225,0.011230851,-0.03903594,-0.03614948,0.04277001,-0.014649931,-0.002952322,-0.0039602923,0.0027848042,0.020995563,-0.032827757,0.020399943,-0.023481125,-0.024603637,-0.04680189,-0.061440367,0.014203217,0.02716938,-0.03191142,0.06602205,-0.045037944,0.0053892047,0.011900921,0.0038715221,-0.0258636,-0.061898537,0.0090087345,-0.007170334,0.026894478,0.0016880638,0.008161123,-0.0022278433,-0.030216198,0.008791104,-0.008584929,-0.027650457,-0.001756789,-0.019861596,0.031384528,-0.028635519,-0.008768195,-0.01127094,0.021648452,-0.01576099,-0.022152437,-0.021144466,-0.0039889277,-0.023618575,0.034179356,0.01631079,-0.005323343,-0.055850714,-0.0044614137,0.02180881,0.030216198,-0.042540926,-0.0049081277,0.01603589,0.028566793,-0.00006062676,0.0010595142,-0.000074318115,-0.011328211,0.044167425,0.05722522,-0.046023004,0.03585167,-0.012691262,-0.048336755,0.029964207,0.048199303,0.019907413,-0.04176204,0.021052834,-0.01848709,-0.007571231,0.023297857,0.0063799936,-0.010709684,0.0421973,-0.015108099,-0.0063055414,-0.07816351,0.0008268506,-0.026642486,0.0057872385,-0.016757505,-0.016940773,0.012828712,0.020915383,0.01922016,0.0044327783,-0.004925309,0.015050828,0.020480122,0.0080809435,-0.016940773,-0.012805804,-0.036836732,0.0021562546,0.004873765,-0.024466187,-0.004326827,0.0054264306,0.008155395,-0.016345154,0.011935284,0.042243116,-0.02904787,0.0057528755,-0.0006349926,0.04288455,-0.10134683,0.0047706775,0.0117405625,0.017410396,-0.03942538,0.013630507,0.032575767,0.009804801,-0.0069469768,-0.0038171145,-0.0038686586,0.059470244,-0.021373551,0.0012513722,0.021900445,0.009856345,0.00978762,-0.004140696,0.02515344,-0.04070825,0.023389492,0.012851621,0.00104806,0.016150432,-0.007015702,0.02414547,-0.0031298622,-0.009959433,0.01938052,0.0007853291,0.0024297237,0.031751063,0.01943779,0.024672363,-0.008499022,0.028864603,-0.0027704865,-0.033835728,0.016516967,0.026848663,0.014145946,-0.030811818,-0.001987305,-0.019449243,0.01097313,-0.0020660528,0.015199733,0.017822746,0.026665395,0.00022729443,0.05071923,-0.0068667973,-0.010423329,-0.012989071,-0.06757982,0.02774209,0.025657425,-0.047374602,0.037821792,-0.011843651,-0.02629886,-0.015405909,0.03514151,-0.005538109,0.016299337,0.026665395,-0.011024674,0.015131008,-0.01206128,-0.006357085,-0.019185798,-0.017101131,0.013218155,-0.011620293,-0.00032912949,-0.017708205,0.014077221,0.017628025,-0.00031606454,-0.011259486,-0.010520689,-0.004633227,0.011465661,-0.008894192,0.012897437,-0.018750537,-0.026115593,-0.033102658,-0.031659428,-0.009965161,0.03136162,-0.013985587,-0.015646446,0.0017825611,0.017880017,0.009684532,-0.02058321,0.0086937435,0.041647498,0.009209183,-0.009203455,-0.0042437837,-0.025978142,-0.009106095,-0.063318856,-0.044327784,-0.023687301,-0.0280399,-0.023801843,0.007399418,-0.030720184,0.020273946,-0.024489095,0.015108099,0.007823223,0.037638526,0.00077459076,0.058279008,-0.01065814,0.011081946,-0.013458693,0.014764474,0.024099652,-0.009151911,-0.017902926,0.013493056,0.0030554098,0.02147664,-0.0021591182,-0.033423375,0.06794636,-0.01943779,-0.009930798,-0.032827757,0.0018069012,0.018761992,0.034041904,0.021923352,0.039242115,0.01848709,0.03234668,-0.0048909467,0.034454256,0.02131628,0.018555816,0.022014987,0.021923352,0.010377512,-0.024008019,-0.026779937,-0.05099413,-0.000057852696,-0.0017038133,0.018475637,0.0073707826,-0.036034938,-0.021762993,0.043457262,-0.03727199,0.029162413,0.009220637,0.02991839,-0.02025104,0.0012485086,0.026184319,0.0017968788,-0.017902926,0.011036129,0.026550854,0.023229133,0.0148217445,-0.0056870137,0.018235099,0.016161887,0.034018997,-0.016242066,-0.0052689356,-0.0032100417,0.0031842696,0.006431537,-0.011574477,0.03106381,0.0067751636,-0.007611321,0.01603589,-0.04187658,0.0025471293,0.0063685393,-0.016322246,-0.024901446,-0.0027876678,0.011568749,-0.0053118886,0.0068725245,0.038852673,-0.0150851915,-0.021728631,0.0060191858,-0.0077029546,0.018223643,0.027810816,-0.04680189,-0.02730683,-0.022725148,0.054018043,0.0070557916,0.0012499404,-0.006024913,0.010715411,0.029139504,0.024672363,-0.023893477,0.011282395,-0.00747387,-0.00423233,-0.025199257,-0.017318761,-0.04364053,0.024374554,0.0033389016,0.01257672,-0.04171622,0.014604114,-0.0037111633,0.0058301915,-0.023423854,0.013447239,-0.020079225,-0.025405431,0.0054722475,0.006311268,-0.0020517348,0.026321769,0.043365628,0.016402425,0.018246552,0.080591805,-0.010205699,-0.023389492,-0.019151434,-0.0055466997,-0.010348876,-0.012244548,-0.033606645,-0.006431537,-0.009695986,0.005956188,0.035210233,-0.025336707,0.002005918,-0.037844703,0.014420847,0.016734596,-0.042357657,-0.00856202,-0.014111583,-0.011591658,0.015486089,0.006677803,0.002267933,-0.022816781,0.0062711784,-0.013515965,0.0019973274,-0.0023552715,-0.0099193435,0.0046103187,-0.016620055,0.015291367,0.021178829,-0.07009975,-0.021843173,0.052414455,-0.01581826,0.016230611,-0.0052546174,-0.014901924,0.04086861,-0.0017181311,-0.02428292,0.04295328,-0.055255096,0.0038428865,-0.018991075,0.034110628,-0.004358326,0.01690641,0.014008496,-0.007777407,0.012026918,0.001259247,0.021579728,0.0044642775,0.00873956,0.0017023815,0.0056870137,0.008670835,0.00047821316,0.033996087,0.0028291892,0.01467284,-0.026138501,-0.001054503,-0.041578773,-0.0005540973,-0.0132639725,-0.0022077984,0.0045788195,-0.016219158,-0.028979145,0.034225173,0.00013208133,0.004873765,-0.012759987,-0.019334702,-0.00785186,-0.0038514773,0.035026968,-0.017742567,-0.0028864602,-0.00080752163,0.0048594475,0.016642964,0.01739894,-0.03191142,-0.011156398,-0.018578725,0.015772443,-0.028795877,-0.019930322,0.034018997,-0.00969026,0.02080084,-0.0038858398,0.02384766,-0.02426001,-0.029139504,-0.014695748,0.02426001,0.014249034,-0.0022049348,0.018922351,-0.020067772,0.004988307,-0.041991126,0.04134969,-0.0035994847,0.012256002,0.027535915,0.0054350216,-0.011070492,0.003585167,0.04279292,0.025107622,0.017799838,0.017662387,-0.023916384,-0.033996087,-0.005661242,-0.022450246,0.0050942586,-0.012611083,-0.0013115067,0.03580585,0.017662387,0.0090259155,0.020021955,-0.008842648,-0.01840691,-0.0098849805,0.015738081,-0.0015162507,0.012198731,-0.060890567,-0.03958574,-0.020995563,0.009552809,0.011597385,-0.0062024533,0.011855105,-0.0056411973,0.04034172,0.0044356417,0.020216675,-0.026367586,-0.00012823343,0.0153486375,0.015497543,0.03876104,-0.002504176,-0.008275664,0.004146423,0.0027461462,-0.006357085,-0.0006432253,0.032759033,0.009363814,0.01791438,0.003917339,0.019117072,0.007009975,-0.044304874,-0.021877537,-0.0063914475,-0.0005666253,-0.01083568,-0.011878013,0.0089915525,-0.014798836,-0.012794349,0.0055295187,-0.019918866,-0.034339715,-0.032575767,0.012221639,0.0046160454,0.00042022622,0.022667876,-0.008241302,-0.044694316,0.04668735,-0.037730157,-0.032827757,-0.002594378,0.037615616,0.017215673,-0.03262158,0.017628025,-0.02017086,-0.00008523541,0.047649503,-0.0010187086,-0.013813774,-0.02017086,-0.045289937,-0.03003293,-0.027925357,-0.017169857,-0.03816542,-0.018063284,0.02248461,0.012015464,-0.00869947,0.02030831,-0.020835204,0.035004057,0.003762707,-0.033194292,0.030674368,0.011694746,-0.027398463,-0.014753019,-0.015039374,-0.0035422137,0.04538157,-0.017444758,0.050490145,-0.04018136,-0.00515153,-0.00008702513,-0.03827996,0.026665395,-0.0016694508,0.03598912,-0.014409393,-0.03608075,0.041739132,0.0129661625,-0.0072505134,-0.026275951,0.062494155,0.002657376,0.00664344,-0.025405431,-0.024901446,0.022427337,-0.04393834,0.005188756,0.0029723668,0.038646497,0.00044062905,0.045541927,0.0037770248,-0.0050713504,-0.008567747,-0.014249034,-0.031178353,-0.017467666,-0.0032787668,0.0051858923,0.0018111966,0.006219635,0.009512719,0.037615616,-0.016516967,0.036951274,-0.044167425,-0.012107098,-0.053284973,-0.00007897139,0.010177063,0.0056011076,-0.013126521,0.011036129,0.021705722,-0.02904787,0.009192001,0.013275427,0.002612991,0.054567844,0.017765475,0.013126521,-0.02657376,-0.028658427,-0.021327734,0.023664393,0.027925357,0.06111965,-0.005838782,0.0033589464,-0.007857586,-0.0071989694,-0.027627548,-0.009409632,0.031728156,-0.00022353602,-0.013378514,0.029231137,-0.005460793,-0.025084713,0.007828951,-0.014501027,-0.025084713,-0.044007063,0.015360092,0.0059275525,-0.004991171,0.017387487,0.0049224454,-0.012049826,0.021854628,0.028841695,0.025680333,0.004633227,-0.007960674,0.010640958,-0.02758173,0.027558822,0.010073976,0.019907413,-0.009890708,-0.024237102,0.012049826,0.017387487,-0.031430345,0.005320479,0.018006014,0.009575717,0.028589701,0.031728156,0.013309789,0.024214195,0.0037798884,-0.05969933,0.0092893625,-0.0048164944,-0.051177397,-0.025519975,0.03915048,-0.013389968,-0.03280485,-0.0019787143,-0.01647115,0.016070252,-0.002293705,-0.0009098936,0.019185798,-0.005707059,0.035026968,0.008395934,0.015875531,-0.025405431,0.012599628,-0.0057614665,0.017547846,0.0153830005,-0.0031413164,-0.057179403,-0.0046217726,-0.019506516,0.033904456,0.024603637,-0.009558536,0.016917864,-0.010852861,-0.0011991124,0.060890567,0.02256479,0.009249273,-0.01753639,0.025726149,-0.02556579,-0.017799838,-0.014042858,-0.016264975,0.005815874,-0.025588699,0.018532908,0.015829714,-0.029735122,-0.023366584,0.0053347973,-0.045702286,-0.02787954,0.016207704,0.005666969,0.008762469,-0.0023080227,0.030949268,-0.016001528,0.06396029,-0.016883502,-0.020044863,0.0047134063,0.028246075,0.025703242,-0.015749535,0.032461222,-0.016127525,-0.03915048,-0.01101322,-0.0033704005,0.02716938,-0.013813774,0.021270463,-0.022427337,-0.020995563,0.01712404,0.005317616,-0.013447239,-0.004114924,0.018303823,-0.023939293,0.03580585,-0.016528422,-0.027192289,0.029322771,-0.013825228,0.017089678,0.040227175,0.013092159,0.018418366,0.0034276715,0.009793348,0.0044070063,0.005967642,-0.010366058,-0.020674845,0.018819263,-0.03106381,0.031728156,-0.026757028,-0.030216198,-0.0031928604,-0.054980196,-0.006357085,-0.008178304,-0.047786955,-0.045862645,-0.010177063,0.015451726,-0.011878013,0.0052746623,-0.02254188,0.0041321055,-0.01726149,0.014844653,0.06267742,0.0017997423,-0.023217678,-0.0063971747,0.05589653,-0.014649931,0.005598244,0.0012613946,0.05131485,0.007450962,0.0013523124,0.017387487,0.0612571,0.011110581,-0.0030239108,-0.021717178,0.008917101,0.016001528,0.0044700042,-0.011591658,-0.019403428,0.000082148144,0.03933375,0.013607598,0.012805804,0.018338187,0.05420131,-0.06845035,0.056904502,0.008109579,-0.020903928,0.0022636377,0.026253043,0.0067007113,-0.020709207,-0.039058845,0.031292893,0.011202215,-0.0105321435,-0.019976137,0.03424808,-0.010005251,-0.007330693,-0.026390493,0.043571804,0.0016923591,0.003290221,0.040021002,-0.010091157,-0.0046733166,-0.0048107672,0.009014461,0.013252518,0.018109102,-0.019586695,0.022381522,-0.012840167,-0.012588174,-0.02080084,0.010692502,-0.0661595,-0.019953229,-0.008733833,-0.0039345203,0.026711212,-0.0035823034,-0.0010945927,-0.023103137,0.020377034,0.013882499,-0.018842172,0.013653415,0.0054464755,-0.005246027,0.0258636,0.03658474,-0.03653892,0.012943255,-0.0062139076,0.014409393,0.0073707826,-0.03608075,-0.021591181,-0.00852193,0.0006317711,0.011637474,0.0108471345,0.021820266,-0.0016379517,-0.0026631032,-0.014512481,-0.025749058,-0.027787907,-0.006173818,-0.020159405,-0.052551903,-0.043365628,0.043251086,-0.01922016,-0.0056870137,-0.0062711784,0.015165371,0.0135274185,-0.016837684,0.002376748,-0.033033933,-0.008882738,0.015268458,-0.0064429916,0.007932039,-0.0017052451,0.009913617,0.005552427,0.010904405,-0.0029924116,-0.01560063,-0.019013984,0.019540878,-0.023412399,-0.008350117,0.0011640338,-0.028704243,-0.024030928,-0.0016193385,-0.01734167,0.01036033,0.021407913,-0.001577817,-0.013389968,0.013137976,-0.010950223,-0.01807474,-0.026619578,0.013504511,-0.009495538,-0.03424808,-0.03972319,-0.027100654,-0.04714552,0.016012982,0.017765475,0.015073737,0.036676373,-0.034912422,0.008161123,-0.00690116,-0.014775927,0.010033886,0.008395934,-0.023756025,0.01152866,0.014558298,-0.011207942,0.008132488,0.0060993657,0.040250085,0.029185321,0.0006378562,0.022438793,-0.0018126284,0.0054922923,0.01864745,0.012404907,0.015612084,0.009226364,-0.0031985873,-0.04121224,0.010028158,-0.01568081,0.015657902,0.031247078,0.037661433,-0.0014425142,0.020434305,-0.018006014,-0.04047917,-0.03367537,0.00913473,-0.009718895,-0.02275951,0.003736935,0.0004549468,0.006792345,0.014638477,-0.0062539973,-0.010171336,0.018773446,-0.023778934,0.023068774,-0.016219158,-0.010755501,-0.012244548,0.012187277,0.018063284,0.004441369,-0.0019457835,0.0033532192,-0.032392498,-0.020651937,0.017650934,-0.005131485,-0.018418366,-0.022324251,0.014627023,0.0059390063,0.024626546,0.002645922,0.0163337,0.006477354,0.00080680574,0.000024541534,-0.04952799,0.013962679,-0.008596383,0.015005012,-0.021659907,-0.00007597361,0.0069297953,-0.0039459746,0.021636998,0.0044871857,0.03005584,-0.028589701,0.0015277049,0.02074357,0.04334272,-0.01065814,-0.008722379,0.002804849,-0.025497066,-0.018899443,0.0022192528,-0.01617334,0.031980146,-0.01372214,-0.012347636,-0.023481125,0.009718895,0.041922398,0.01568081,-0.009117549,0.008917101,0.0074624163,0.0065918965,-0.01916289,0.03630984,-0.027764998,0.0010494917,0.0062769055,0.023137499,0.005297571,-0.02357276,0.028406434,0.0024197013,0.016746052,0.005701332,-0.007284876,0.01584117,0.00974753,0.0010874338,0.019735599,0.023618575,0.013298335,0.013183793,0.010904405,-0.028062807,-0.018017469,-0.0047420417,0.0036510285,-0.005979096,-0.022587696,0.008854102,0.008899919,-0.028566793,0.019941775,-0.018865079,-0.017582208,0.041991126,0.020869566,-0.050535962,0.017410396,0.024512004,-0.039402474,-0.017673843,0.0075311414,-0.012840167,-0.051406484,0.0027762135,0.006843889,0.002365294,-0.049207274,0.018865079,-0.050077796,0.037775975,0.011156398,0.033194292,-0.04187658,0.022118075,-0.045633562,0.0030095929,-0.0031728155,0.03653892,-0.04975708,-0.026871571,-0.035668403,-0.0090087345,0.0064830813,0.015497543,0.015142462,0.024832722,-0.018303823,0.022129528,0.008567747,-0.014065767,-0.019804325,-0.032759033,0.0044814586,0.0113740275,-0.008069489,-0.021488093,-0.010618051,-0.008636473,-0.030101657,0.012393452,-0.0020488712,-0.029803848,0.036951274,0.032300863,0.0175593,-0.021705722,-0.029551854,0.01012552]},{"id":"interface-GatewayGuildIntegrationsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildIntegrationsUpdateDispatchData\nDescription: GUILD_INTEGRATIONS_UPDATE — integrations for a guild changed.\nProperties: guild_id: string","meta":{"url":"/docs/typedefs/GatewayGuildIntegrationsUpdateDispatchData"},"embedding":[-0.0124073075,0.011417241,0.026279684,0.004440992,0.0009743285,-0.004532559,-0.037839998,0.0013427419,0.013094059,-0.0018542287,0.004578342,-0.01872542,-0.011548868,0.009940726,0.06391366,0.012785021,-0.03195683,0.0389388,-0.034017082,0.06679802,-0.02701222,-0.0028843556,0.04083881,0.054619625,-0.036993004,0.021209171,-0.0023392467,0.027103785,-0.008103666,-0.0052650934,0.03481829,-0.01786698,0.04482197,-0.00822957,-0.044455703,0.036168903,-0.022548337,0.008744634,0.008813309,-0.027035112,-0.00950006,0.0005773003,0.010095244,0.02353268,-0.04001471,0.018095898,-0.014662141,-0.0049789473,-0.0066729337,0.015829619,-0.0020831458,-0.021243509,-0.00029669804,0.028935123,0.02795078,-0.007456975,0.006094918,0.021312183,-0.0067072716,0.015280217,-0.04024363,-0.015463351,0.017271796,-0.036283363,0.019240484,-0.002508073,-0.06153292,0.060617253,0.058648564,-0.0014908228,0.016813962,0.03463516,-0.020236272,0.01344888,0.004383763,0.034246,-0.042738825,-0.0038343617,0.015966969,-0.006810284,-0.012876588,0.013860932,-0.06258594,-0.05416179,0.046081014,-0.00018331253,-0.02795078,-0.051689483,0.039373744,0.014398887,-0.010221149,0.010581694,-0.06208232,-0.009677471,-0.044318352,-0.06867513,0.039282177,-0.029095365,-0.04093038,0.070826955,0.05750398,-0.031247186,-0.038847234,-0.06482933,-0.015360339,-0.024494132,-0.012865142,0.019675426,-0.04443281,-0.012475982,-0.0737571,0.039396636,-0.0075142044,-0.007863303,-0.014936842,-0.017031433,-0.002214773,-0.027882105,-0.0034967088,-0.005099129,-0.050361764,-0.02134652,0.008761803,-0.013849486,-0.032941174,-0.004114785,-0.008778972,-0.009631688,-0.06391366,-0.010661814,0.016035644,-0.037267707,0.009643134,0.026600169,-0.013025383,-0.031361643,-0.005871724,-0.0050247307,-0.042441234,-0.05603891,-0.022605564,-0.011422964,0.01839349,0.037794214,-0.043631602,0.024494132,0.0024408288,0.031361643,0.035756852,0.017134447,-0.07270408,0.03516167,-0.02916404,-0.010970852,0.016585045,0.02460859,-0.007302456,-0.03184237,-0.0041319537,-0.023372438,0.014479008,-0.04775211,-0.0013391651,0.0021804355,-0.056222044,-0.049034044,0.02701222,-0.010507296,-0.07545108,0.024974857,0.03156767,-0.011915136,-0.047568977,0.051002733,0.011382904,0.013963944,-0.0386641,-0.019217592,-0.04685933,-0.021529654,0.027538728,-0.018679636,-0.03023995,-0.061349787,-0.023624247,0.00785758,-0.052879855,-0.013941052,-0.022697132,-0.025089316,-0.010736213,0.029621875,0.0375653,0.009791929,0.04443281,-0.03186526,0.03999182,-0.016356127,0.009093733,-0.019435063,-0.008876261,-0.041388214,0.032872498,0.005619915,-0.012922371,-0.010598863,0.012384416,-0.01673384,-0.016413357,0.01637902,0.030560434,-0.012361524,-0.0381147,0.0029072473,-0.03422311,0.036970112,-0.034177326,0.03225442,-0.007273841,-0.028156806,0.0059003388,0.024585698,0.036283363,-0.030423084,0.036993004,0.013048275,0.0020516696,-0.0043580094,-0.015005517,0.0033879732,-0.005514041,-0.019984463,-0.0029043858,-0.08630175,-0.0039430973,0.014742262,0.019320605,0.008693127,0.018416382,0.014307319,-0.03090381,-0.04921718,0.005940399,0.019286267,-0.030972486,-0.012315741,0.02165556,0.0075542647,-0.013574785,0.05187262,0.0070277555,0.085981265,0.027470054,-0.03461227,-0.030926703,-0.013483218,0.0034680942,0.015326001,0.04697379,0.013071167,0.02593631,-0.011308505,-0.038046025,0.014936842,-0.021140495,0.000744696,0.040037602,0.03127008,-0.014272982,-0.011646158,0.014570574,-0.019354941,0.020007355,-0.024333889,-0.0009020765,0.0100208465,-0.0046098186,0.040632788,0.03266647,-0.031476103,-0.04637861,-0.03328455,-0.017420592,0.051002733,-0.00776029,0.055169024,0.025730284,0.0085214395,0.0262339,0.014822383,-0.0516437,0.032941174,0.016974203,-0.0009471446,0.009053672,0.035756852,0.0010680414,-0.0069533573,0.03481829,0.03127008,0.024906183,-0.024288107,-0.07545108,-0.03371949,0.0058373865,-0.0040861703,0.01878265,-0.015131421,-0.008469934,-0.008538608,0.028958015,-0.05420757,-0.022410985,0.020945916,-0.029118257,-0.014467562,0.0067931153,0.05429914,0.021884477,0.031178512,0.0024279521,0.028019454,-0.0028271263,-0.03184237,-0.032300204,-0.04976658,-0.011588929,-0.039007477,0.0046040956,0.058282297,0.046309933,-0.023601355,-0.006249437,0.030880919,0.01485672,0.074535415,-0.023486895,0.03797735,0.038549643,-0.018038668,0.015944077,0.00078976405,0.00127049,-0.00070857,0.04962923,-0.044753294,-0.0049388865,0.025707392,0.005027592,0.016516369,0.016218778,0.025226666,-0.004275027,-0.06409679,-0.035665285,-0.05228467,0.04429546,0.02579896,0.0005172096,0.033627924,-0.045943666,-0.008200956,-0.0031046884,0.03690144,0.0022462492,-0.0010601723,-0.0151085295,0.020636877,-0.04697379,-0.024219431,-0.004151984,-0.025501367,-0.059884716,-0.0035138777,-0.02875199,-0.015326001,-0.006741609,0.01184646,-0.006077749,-0.014318765,-0.016401911,0.040976163,0.0124073075,-0.008630175,0.023120629,0.001825614,-0.034772508,0.028202588,-0.023406776,-0.00965458,0.044318352,-0.010936515,-0.012670563,-0.021998934,-0.04216653,-0.02783632,0.054665405,0.018359153,0.020625431,0.0065355836,0.01991579,0.017706739,0.009854882,-0.026188118,-0.054985892,0.03346768,-0.00484732,0.030858027,0.036443606,-0.025707392,-0.0037170416,-0.00081408647,0.0254098,0.0050733755,-0.0021990351,-0.056725662,-0.0041491226,-0.024425456,0.018977229,0.029644767,0.026371252,0.024677265,0.014936842,0.0024923352,0.019686872,-0.046630416,0.0077202297,0.0072509497,-0.0031619177,-0.07948002,-0.09138371,0.04134243,0.023189304,-0.0068732365,0.05494011,-0.014124186,0.0012483136,-0.006930466,0.030720677,-0.0142043065,-0.03275804,-0.008040714,0.009162407,0.027035112,0.00058195024,0.02408208,0.025890525,-0.05809916,0.0339713,-0.03706168,-0.0068388986,0.025707392,-0.0066385963,0.03319298,-0.02767608,-0.011634712,-0.06496668,0.051460568,-0.020453744,-0.006753055,-0.03307852,-0.016024198,-0.027790537,0.06949924,-0.007210889,-0.0049989773,-0.022903157,0.00092139136,0.0055426555,0.007210889,-0.02582185,0.025844742,0.025318233,0.0012933817,-0.023372438,0.027859213,-0.01827903,0.033261657,0.018805541,0.029805008,-0.028843556,0.017901318,-0.0381147,0.0034738171,0.07064382,0.055397943,-0.01792421,0.010890732,-0.014742262,-0.012865142,-0.035184562,0.005099129,0.010089522,-0.010467235,0.021232063,-0.016562153,0.014719371,-0.0745812,-0.0063638957,0.0028571717,-0.020201935,-0.023898946,0.009688917,0.03557372,0.026279684,0.0053452146,-0.024997748,-0.019847114,-0.041502673,-0.025455583,-0.0018070145,-0.009769038,0.004223521,-0.029896576,-0.019286267,0.020476636,-0.009614519,-0.012338633,0.013460326,0.024562806,-0.025730284,0.003453787,0.011314228,-0.021712787,0.01157176,-0.0025524257,0.03319298,-0.07934267,-0.006758778,0.0015823896,0.012865142,-0.035871312,0.0012483136,0.045829207,-0.020442298,0.0018270448,0.0028042346,-0.0045554508,0.037954457,-0.008309691,-0.010100967,0.03145321,0.019732656,0.028019454,-0.021758571,0.028179696,0.02206761,0.01364346,-0.0012475983,0.017603725,0.035184562,-0.017420592,-0.004028941,0.014833829,-0.0065527526,-0.0018070145,0.010038015,-0.011400072,0.024539914,0.02662306,0.00037127495,-0.057549763,0.005001839,-0.026417036,-0.019698318,0.021037484,0.004910272,0.017077217,-0.018038668,-0.015680822,-0.020556757,0.022365201,0.0061521474,0.00893349,0.033650815,0.032849606,-0.024974857,0.03197972,0.030400192,-0.019091688,-0.014055511,-0.08666802,0.026279684,0.045165345,-0.03360503,0.0073310705,0.00048001058,-0.01737481,0.013048275,0.05150635,-0.028065238,0.037084572,0.028179696,-0.0048587658,0.042029183,-0.009465722,-0.006770224,-0.0040718634,-0.0023363852,0.02057965,-0.024036298,0.032986958,-0.010146751,-0.0010608877,0.033650815,0.014284428,0.013151288,0.039465312,-0.027035112,0.024013406,-0.015680822,0.0054739807,-0.0127163455,-0.0069991406,-0.03371949,-0.0103012705,-0.039808687,0.037519515,-0.014788046,-0.006730163,0.013563339,0.031086944,0.004212075,0.0002353554,-0.0018642438,0.03676409,-0.017844088,0.00004676705,-0.018164573,-0.030995376,-0.01251032,-0.05512324,-0.049537662,-0.033353224,-0.04985815,-0.032941174,0.021609776,-0.005599885,0.023967622,-0.034703836,0.017615171,0.00077688746,0.0075657107,-0.012201282,0.05841965,-0.003293545,0.03690144,-0.010043738,-0.0064783543,0.015829619,-0.0031905323,-0.03667252,0.03346768,-0.00017615888,0.04935453,-0.00006330989,-0.034062866,0.03474962,0.014055511,-0.012166944,-0.025341125,-0.024036298,0.015371785,0.04319666,-0.0021532516,0.014375995,-0.011291336,0.026050767,-0.012201282,0.03339901,0.035894204,0.047660545,0.04200629,0.002722683,-0.0032563459,0.020625431,-0.0103184385,-0.030674893,-0.008017822,0.00019726217,-0.0034967088,0.040495437,-0.027904997,-0.006884682,0.015119975,0.00322487,0.04816416,-0.009625965,0.02634836,0.0009256836,0.0053165997,0.014742262,0.016916975,-0.02040796,-0.0047643376,-0.006913297,0.036695413,0.01653926,-0.015795281,0.013197072,0.020545311,0.0034194493,0.00032119933,-0.032002613,0.0031619177,0.013540448,0.012224174,0.021529654,0.012475982,-0.02146098,-0.0019329189,0.033856843,-0.02767608,0.007434083,0.0028113883,0.028774882,-0.039579768,0.024150755,0.009700363,-0.004767199,0.02795078,0.010947961,0.0031933938,-0.012659117,-0.00069712417,0.0002249826,-0.023017615,0.01778686,-0.021815801,-0.03154478,-0.047340058,0.017649509,-0.00072895794,-0.0026325467,0.01653926,0.022491107,-0.0044152387,0.011268445,-0.011371458,0.022342311,-0.018679636,0.034864075,-0.012315741,-0.02128929,-0.01985856,-0.0035052933,0.012636225,0.013254301,-0.020041693,0.017557943,-0.025592932,0.0059060617,-0.005187834,-0.016390465,-0.013883823,-0.035665285,0.00069712417,0.004953194,-0.016470587,0.03731349,0.028614638,-0.011148264,0.05841965,0.051002733,-0.028179696,0.0018485057,-0.03598577,-0.0130139375,0.0013470341,0.031224294,-0.02408208,-0.020156153,-0.014044065,0.022834482,0.020362178,-0.03156767,-0.012888034,-0.032437555,0.01577239,-0.0037342105,-0.017466376,-0.017935656,-0.016619382,-0.016001306,0.007823243,0.0029587536,0.010959406,-0.040861703,0.0018284754,0.0139067145,-0.0029043858,0.020224826,-0.028454397,0.01827903,-0.030995376,0.015314555,-0.0011939459,-0.068171516,0.010936515,0.033650815,-0.0068388986,0.008429873,0.0043036416,0.019560967,0.052101534,-0.013826594,-0.048759345,0.0303773,-0.05416179,0.008057882,0.022582673,0.05603891,0.0042464123,0.013529002,0.031476103,0.008109389,0.00068603596,0.0077316756,0.017042879,-0.011417241,0.017477822,-0.02582185,-0.00521931,0.000012742456,-0.026577277,0.030812243,0.004589788,0.040174954,-0.05805338,-0.02714957,-0.0014371702,-0.0005068368,0.0059804595,-0.0058316635,0.021770017,0.005059068,-0.006981972,0.014261536,-0.00057515426,-0.0026325467,0.006260883,-0.0006209377,0.003651228,-0.0069991406,0.0130024925,0.0062322686,0.034246,0.006077749,0.017031433,0.0075771566,-0.017718185,0.018187465,-0.012292849,-0.01485672,0.021918813,-0.03516167,-0.01756939,0.03186526,0.0038515304,-0.0067988383,-0.0014049788,0.016058536,-0.019755546,-0.032460447,-0.023418222,0.009591627,0.013494664,-0.0005898193,0.029736333,-0.0037771324,0.003465233,-0.031933937,0.05901483,-0.038458075,0.0054539503,0.013929606,0.024654374,0.02369292,0.02298328,0.03481829,0.02676041,0.02579896,0.0013620568,-0.01311695,-0.010890732,-0.0020945915,-0.024288107,0.009259697,0.002017332,0.0009678902,0.041846048,-0.010255487,-0.0036054444,0.008441319,-0.04118219,-0.048759345,-0.012269957,-0.02148387,-0.011113926,-0.0028757711,-0.04564607,-0.04811838,-0.01565793,0.011714833,0.021506762,0.006112087,0.0019229037,-0.016264562,0.045714747,0.0085271625,0.004452438,-0.012315741,-0.007130768,0.0032391772,-0.016344681,0.044066545,-0.007754567,-0.0026382697,-0.017912764,0.002935862,-0.0010616031,0.028042346,0.034658052,-0.0074169147,-0.00965458,0.016630828,0.020911578,0.009076564,-0.021323629,-0.013803702,0.029576091,-0.023383884,-0.015440459,0.020865794,-0.0029930912,-0.027035112,-0.027698971,0.0031161343,-0.0016596491,-0.045691855,-0.029942358,0.03612312,0.009648857,-0.022571227,-0.03809181,-0.00580591,-0.021106157,0.012144053,-0.045989446,-0.0419834,-0.027447162,0.010335607,0.026394144,-0.032139964,0.041227974,-0.013048275,0.0022977556,0.04358582,0.0147994915,-0.008183787,0.02742427,-0.05658831,-0.006444017,0.0021303599,-0.0053137387,-0.052788287,-0.059747368,-0.017912764,-0.0052393405,-0.021781463,-0.012487428,-0.026600169,0.034291785,0.004767199,-0.036855657,0.038023133,0.018107343,-0.004114785,-0.019732656,0.006558475,-0.023898946,0.03291828,-0.004234967,0.02286882,-0.020304948,0.008492825,-0.0018585208,-0.030514652,0.049720798,0.0043379795,0.02195315,-0.022365201,-0.048209943,0.053887088,0.017237458,0.0043265335,-0.011892244,0.011251276,-0.00602052,-0.01991579,-0.002413645,0.0046098186,0.007119322,-0.018542286,-0.002812819,-0.011880798,0.002396476,0.032139964,0.023738705,0.02474594,-0.0044924985,-0.0047071083,0.025249558,-0.046653308,-0.024265215,-0.0060720267,-0.012762129,0.012315741,-0.008040714,0.0076687234,0.029507415,-0.022170622,0.03582553,-0.05269672,0.005099129,-0.04871356,0.008544331,0.0124187535,0.013288639,-0.032048397,0.019011566,-0.011022359,-0.010736213,0.024310997,0.024310997,-0.008355475,0.06565343,0.011743448,0.0139067145,-0.032323096,-0.045096673,-0.018267585,-0.012853696,0.0061521474,0.04738584,-0.023212194,-0.0011438702,-0.008469934,-0.0058001876,-0.014559128,-0.007588602,0.01905735,-0.00762294,0.004440992,0.01938928,-0.018519394,-0.0121097155,0.014707925,-0.0043809013,-0.017409146,-0.016424803,-0.0003702019,0.00034015652,-0.0050075618,-0.008103666,0.0023835995,-0.012212728,0.051277433,0.026645953,0.012544658,-0.0018585208,-0.012315741,-0.0052765394,-0.021644114,0.03154478,0.012968155,0.03598577,-0.029598983,-0.00033371823,0.008881984,0.013551893,-0.027378486,-0.03209418,-0.00475003,0.01845072,0.022662794,-0.013357313,0.01383804,0.025226666,-0.0046412945,-0.052605152,0.0066901026,0.010547356,-0.03381106,0.000744696,0.022502553,-0.009860605,-0.03678698,-0.0047471686,-0.029484523,0.01184646,-0.0004624841,0.0061693164,0.027492946,0.008458488,0.021106157,0.002161836,0.020488081,-0.006896128,-0.0030646278,0.00437804,0.020728445,0.024127863,0.012327187,-0.02488329,0.025089316,-0.012464537,0.027195353,0.026577277,0.01190369,0.014639249,-0.005894616,-0.020888686,0.022651348,0.010141028,0.023647137,-0.03023995,0.043540034,-0.011960919,-0.0068732365,-0.007886195,0.009803375,0.021106157,0.000803356,0.029438742,0.0037914398,0.0005172096,-0.011857906,0.006598536,-0.037794214,-0.029644767,0.006913297,-0.000010864621,0.0025695947,0.007262395,0.031796586,-0.0067873923,0.066889584,-0.011457302,-0.017660955,0.03371949,0.017546497,0.01557781,0.009202468,0.002177574,-0.028797774,-0.037771326,-0.0071593826,0.015371785,-0.0021375136,0.002535257,0.005754404,-0.010684706,-0.0007353962,0.024768831,0.008841923,-0.027401378,-0.0015022686,0.021518208,-0.016138656,0.0073883,-0.036580954,-0.028065238,0.022685686,-0.006260883,0.021426642,0.031086944,0.014707925,0.0024064912,0.014810937,0.02107182,-0.012121161,0.0036970114,-0.011720556,-0.0063066664,0.029141149,-0.02380738,0.047019575,-0.01317418,-0.007926255,-0.016138656,-0.03667252,-0.019675426,0.0007482728,-0.030194167,-0.020613987,-0.030171275,-0.020808566,-0.008252462,0.00463271,-0.03903037,0.013483218,-0.020957362,0.020179044,0.027698971,-0.018702528,-0.009482891,-0.012727791,0.013242855,-0.021781463,-0.0045697577,0.008738911,0.038870126,-0.013963944,0.004472468,-0.0063238353,0.042487018,0.01900012,-0.008630175,-0.005694313,0.01966398,0.019034458,-0.0033336054,0.004669909,-0.021037484,-0.020648323,0.006810284,0.0070392014,-0.02046519,-0.01538323,0.041640025,-0.067713685,0.048255727,0.012029595,0.0044266847,0.0020516696,0.02112905,0.045188237,0.008962105,-0.01886277,0.014765154,0.043059308,-0.014982625,-0.023624247,-0.007823243,-0.030720677,-0.0018713974,0.00041956216,0.022342311,0.0004814413,-0.00893349,0.026279684,-0.0067988383,0.020121815,0.014147078,0.012453091,-0.0052507864,-0.02714957,-0.023166412,-0.011880798,-0.0139067145,-0.0073539624,-0.025066424,0.006564198,-0.08785839,-0.0066729337,-0.011050974,0.009797652,0.0136091225,-0.0079205325,0.0012654824,-0.019744102,-0.025066424,0.03330744,-0.015760943,0.028614638,0.0059747365,-0.010656091,0.028545965,0.035642393,-0.021838693,0.034658052,-0.008344029,-0.015222988,-0.014513345,-0.024333889,0.00390876,-0.012166944,-0.015612147,-0.0013341575,-0.002167559,0.02369292,0.031521887,0.0013777949,-0.015085638,-0.024150755,-0.046584632,0.0150970835,-0.037931565,-0.05393287,-0.056542527,0.03360503,-0.01913747,0.00658709,0.0028743404,0.021998934,0.012212728,-0.01839349,-0.00017052537,-0.024562806,-0.0043751784,0.011022359,0.013288639,0.014719371,-0.032986958,0.0082238475,-0.00922536,0.005645668,-0.030697785,0.0079148095,-0.00030832275,-0.007634386,-0.024929075,-0.03770265,-0.007537096,-0.03706168,-0.03413154,-0.010753381,-0.045302697,0.003725626,0.019480847,-0.0043980703,-0.01632179,0.000869885,-0.013895269,-0.0035739685,-0.027744753,0.0082124015,0.002407922,-0.010272656,-0.02118628,-0.019778438,-0.03717614,0.009076564,0.009156684,-0.011623266,0.0017512159,-0.035642393,0.019629642,0.006037689,-0.021094711,0.013151288,0.0065470296,-0.010656091,0.026577277,0.013208518,-0.006094918,-0.019629642,0.0018341984,0.028523073,0.008097943,0.014364549,-0.0012540366,0.024448348,0.0339713,0.00592323,0.012247066,0.027241137,0.018565178,-0.020968808,-0.05567264,-0.010038015,0.005142051,0.016493479,0.012327187,0.009557289,-0.014375995,0.022353755,0.0021904507,-0.022857374,-0.036306255,-0.027744753,-0.0011438702,-0.026302576,-0.010009401,-0.029598983,-0.017592281,0.008670236,0.015326001,-0.011234107,-0.0014285858,0.013574785,0.039121933,0.009036503,-0.0068446216,-0.011354289,0.024402564,0.017386254,0.026417036,0.015600701,0.0025152268,-0.05352082,0.015371785,-0.002455136,0.0033221596,-0.017821196,-0.0082181245,0.039968926,0.011285613,0.019881452,-0.0065241377,0.0347954,0.008922044,-0.008429873,0.0075657107,-0.025478475,-0.013403097,0.011068142,-0.0074054687,-0.020018801,-0.0012640517,-0.008469934,0.022834482,0.0085271625,0.01364346,0.02797367,-0.0006409679,-0.0036426436,0.004921718,0.048988264,-0.014261536,0.0007404038,0.012166944,-0.026668843,-0.010656091,-0.008332583,0.018542286,0.029805008,-0.0063753417,-0.006901851,-0.0088190315,0.008996443,0.03891591,-0.0060090744,0.0042321053,0.017042879,-0.012693454,-0.013322976,-0.0019157501,0.0508196,-0.027401378,0.007834688,0.012750683,0.022571227,0.0049446095,-0.017283242,0.025203774,-0.0045039444,0.0233381,-0.0025924863,-0.011325674,0.03346768,0.003041736,0.030560434,0.029461633,0.023486895,-0.0034824016,0.03305563,0.013494664,-0.008859092,-0.037656866,0.011972365,0.0004059702,0.018553732,0.02742427,0.003213424,0.020007355,-0.010272656,-0.0038715608,-0.045600288,-0.031911045,0.014891058,0.019641088,-0.021060374,0.0091280695,0.030514652,-0.037633974,0.0057143434,0.006266606,-0.0109079005,-0.03225442,0.0057887416,0.021026038,-0.0018027222,-0.007268118,0.02226219,-0.05013285,0.030995376,0.015268772,0.0030016757,-0.017969994,0.03197972,0.0026525771,0.034017082,-0.023040507,0.03023995,-0.027721863,-0.0295532,-0.05159792,-0.004212075,0.013689243,0.0032706533,0.057320844,0.014410333,-0.013437435,0.009528675,0.0027312674,0.010741935,-0.009208191,-0.030468868,0.0058087716,0.011634712,-0.019698318,-0.010049461,-0.011205493,0.00019153923,-0.012601887,0.006564198,0.022216406,-0.029988142,0.043127984,0.020362178,0.0057887416,-0.022971833,-0.034543592,0.018301923]},{"id":"interface-GatewayGuildMemberAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberAddDispatchData\nDescription: GUILD_MEMBER_ADD — member + guild_id","meta":{"url":"/docs/typedefs/GatewayGuildMemberAddDispatchData"},"embedding":[0.017270736,-0.0055546584,0.008090162,0.011971095,-0.0028711283,0.011408301,-0.06350191,0.025958868,0.018361151,-0.027998995,0.0037548905,-0.0028447472,-0.0051384256,0.010294438,0.031774405,-0.02572437,-0.041271552,0.015875477,-0.020881997,0.04976036,-0.01879497,0.040661857,0.047415383,0.0023185934,-0.054450307,0.008535707,-0.005147219,0.0024680856,0.015429933,-0.0369568,0.037543043,-0.022242084,0.025654022,0.005355336,-0.003051398,0.033275187,0.0024504983,0.019885384,-0.03139921,-0.03039087,-0.016836917,-0.024551883,0.02396564,0.018126654,-0.047462285,0.008658818,-0.03390833,-0.021163395,-0.014445043,0.021350993,0.008951941,-0.022851776,-0.011871434,0.06922365,0.026287165,-0.012627687,0.013460154,-0.0024285142,-0.016778292,0.03280619,-0.027928647,-0.008934353,0.014527117,0.0038193772,0.013038058,-0.034564923,-0.04385102,0.03777754,0.032853093,0.032501347,-0.00300743,-0.042795785,-0.003936626,-0.0011145957,-0.010810332,0.018372875,-0.026052667,-0.0160748,0.010927581,-0.0045345942,0.039137624,0.03587811,-0.07560198,-0.077712454,0.022558656,-0.020541977,-0.037097495,0.0063138437,0.0062786695,-0.038223084,0.0043587214,0.023813216,-0.04943206,0.011930058,-0.017247288,-0.040685307,0.044742115,-0.0034588375,-0.024200138,0.02851489,0.086154364,-0.06973954,-0.012334566,-0.064533696,0.048775468,-0.032501347,-0.019228792,0.03566706,-0.049338263,0.004086118,-0.041177753,0.027154805,0.02488018,-0.02016678,-0.017165214,0.011150354,0.056560785,0.0006089606,0.00428251,0.0043587214,-0.038105834,0.02405944,0.00967302,-0.030461218,-0.020401279,-0.007726691,0.010892407,-0.031938553,-0.053559218,0.0040949117,0.046407044,-0.047532633,0.029992225,0.029101133,-0.024903629,-0.02030748,-0.019017743,0.0009819581,-0.021808263,-0.057451874,-0.0023039375,-0.025560223,0.03688645,0.059421655,-0.03114126,0.0015169054,-0.023367671,0.038152736,0.0062141824,0.0026981863,-0.08910903,0.072506614,0.0026512868,-0.03289999,0.011296915,0.018959118,-0.025114678,-0.01980331,-0.005915198,-0.006489717,0.0069411243,-0.07236591,-0.0017455404,0.008670543,-0.05351232,-0.009209887,-0.0137884505,0.000032838805,-0.064721294,0.024645682,0.009063327,-0.03128196,-0.022734528,-0.0036493666,0.0008595797,0.0026747365,-0.055810392,-0.024950529,-0.04769678,-0.042186093,0.020952348,0.0011798153,-0.0075566806,-0.058671262,-0.023778042,-0.011003793,0.01792733,-0.008963665,0.02019023,-0.024458084,-0.009250924,0.016285848,0.031797856,0.023355946,0.052949525,-0.017810082,0.042959932,-0.003332795,0.034400776,-0.03494012,0.035362214,-0.050041758,0.025114678,0.009966142,0.02146824,-0.005267399,0.018197002,-0.00943266,0.010704809,-0.0050211768,-0.01246354,-0.049478963,-0.004417346,0.0033562449,-0.02574782,0.05168324,-0.07668067,0.030226722,0.0115724495,-0.009667157,-0.018724622,0.026967207,0.0011812809,-0.035713963,0.008500532,-0.005372923,0.0028476785,-0.031633705,-0.023637343,0.03402558,0.00088009826,-0.020518526,-0.007808765,-0.03505737,0.0031012287,0.04335858,0.012522164,0.0051384256,0.029241832,0.0369099,-0.022441406,-0.026123015,0.021362718,-0.025607122,-0.041154303,-0.015969276,0.015934102,0.011513825,-0.011601761,0.020448178,0.052902624,0.06007825,0.012569063,-0.0052732616,-0.019732961,-0.010698946,0.019721236,0.01985021,0.014808514,0.03125851,0.028702488,-0.019240515,0.006360743,0.023860116,-0.011343814,-0.001990297,0.046172548,0.020776475,-0.0007412318,0.025536772,0.00943266,-0.0134836035,0.050885946,-0.027154805,-0.005651389,-0.013940874,0.018537024,0.026568562,0.032595146,-0.04678224,-0.049244463,-0.04781403,-0.0015374239,0.025278825,-0.012545614,0.029804626,0.015934102,0.035291865,0.033556584,0.03963007,-0.084794275,0.0076270294,0.03608916,-0.00013373683,0.02264073,-0.0046723615,-0.011965233,-0.027389303,0.03787134,0.0642523,0.016696218,0.04811888,-0.022793151,-0.042983383,0.002928287,-0.03383798,0.01667277,-0.014386418,-0.003520393,-0.021902062,-0.007656342,-0.019181892,-0.006964574,0.023297321,-0.00068187463,0.004294235,0.028890086,0.051120445,-0.007421844,0.066550374,0.021198569,0.056373186,0.023320772,-0.07288181,0.015289234,-0.060453445,-0.031047463,-0.01795078,0.033744182,0.023226973,0.024458084,-0.028303843,-0.0084946705,-0.009907518,0.04971346,0.05965615,-0.02588852,0.024247037,0.03590156,0.0067711137,0.020401279,0.0034412502,-0.026216814,-0.0054579284,0.012569063,-0.033884883,0.008148787,0.04800163,-0.013155307,0.000117248725,0.0067242146,0.03332209,-0.0044144145,-0.037120946,-0.0051003196,-0.045586303,0.024340836,-0.021644115,0.0014450905,0.021491691,-0.03301724,0.014116746,-0.043100633,0.02471603,0.0068590506,0.0017176939,-0.0083422465,0.023578718,-0.030648816,-0.012158693,-0.02384839,0.045633204,-0.048306476,0.009110226,-0.016825192,-0.0127566615,0.00053934415,-0.008793655,0.011531413,-0.018372875,0.016754843,0.03334554,0.04319443,0.00080242095,0.018572198,-0.021819988,-0.009039877,0.03585466,-0.049994856,-0.018677723,0.0412481,-0.0138470745,-0.01333118,-0.02254693,-0.037285093,-0.025536772,0.097363345,0.010183052,0.026099566,-0.015852029,0.0060969335,-0.0038867954,0.016414821,-0.051917735,-0.03768374,0.007404257,0.0007613839,0.027530001,0.03423663,-0.003426594,0.015043012,0.019369489,0.039348673,0.02577127,0.018279076,-0.020483352,-0.024317386,-0.0051853247,-0.0108455075,-0.0046049436,0.00064120395,0.05979685,-0.004232679,0.010657909,0.035620164,-0.053840615,0.028280392,0.050698347,0.035479464,-0.012275942,-0.0824493,0.013589127,0.009291962,0.0112089785,0.054544106,0.014421593,-0.004323547,0.009139538,0.012955984,0.012322841,-0.045938052,-0.008828829,0.0029458741,0.023226973,-0.012791836,-0.025302274,0.07442949,-0.0021134082,0.030906765,0.014843688,-0.01667277,0.017610759,-0.020753024,0.06697247,-0.04406207,-0.01244009,-0.02760035,0.06171973,-0.025911968,-0.014855414,-0.017434886,0.010968618,-0.007070098,0.04788438,-0.04891617,0.01609825,-0.018759796,0.029148033,0.033298638,0.048494074,-0.032782745,-0.0059855473,0.006501442,0.052058436,-0.046266347,-0.004566838,-0.030977113,0.045258008,0.036347106,0.04305373,0.002208673,0.03566706,0.00596796,0.00082074106,0.027272053,0.04485936,0.015043012,-0.004250266,0.0042268164,-0.0369099,0.0058624363,0.0034647,0.046594642,-0.011009655,0.02673271,-0.008746755,0.027764497,-0.03475252,0.0104644485,0.0038750705,-0.016180323,-0.03958317,-0.0013505587,-0.025067778,0.01929914,-0.019967457,-0.029898426,-0.014867138,-0.037191294,-0.01289736,-0.012240767,-0.0043997583,0.014996112,-0.037285093,-0.0368161,0.029687377,-0.035315316,0.016332747,-0.008172236,0.031962004,-0.020799924,0.02942943,-0.014808514,-0.02760035,0.013249106,0.018173553,0.019111542,-0.05604489,0.008776067,-0.0020269374,0.01147865,-0.01063446,0.03128196,0.044929713,0.005994341,-0.03777754,-0.018443225,-0.0014875932,0.018513573,-0.030508118,-0.010839645,0.012311116,0.0041037053,-0.0047661606,0.014656091,-0.0029326838,-0.0051413565,0.00437924,0.007498056,0.0059005423,-0.017985955,-0.029828075,-0.0062259072,-0.0046547744,-0.009485422,0.013765001,0.008834692,-0.022347607,-0.015113361,-0.03566706,0.016016176,-0.0068707755,-0.02394219,-0.027764497,-0.033556584,0.03878588,0.013038058,0.0071697594,-0.016449995,-0.018654272,-0.019861935,0.03515117,-0.014597466,0.010962755,0.013225656,0.010652047,-0.013413254,0.034494575,0.012569063,-0.021667564,-0.020741299,-0.07306941,0.01106828,0.033744182,-0.036370553,0.0018510643,-0.011859708,0.002853541,-0.015195435,0.037238196,-0.037050597,0.0276707,0.017528685,-0.0013102546,0.019275691,-0.027905196,-0.03123506,-0.013448429,-0.023180073,0.004774954,-0.0027055144,0.002004953,-0.016801743,-0.019533638,0.047180887,0.010716533,0.03669885,0.03137576,-0.00038325676,-0.0060383095,0.021186845,0.014022947,-0.010822058,-0.027037555,-0.03878588,-0.012205592,-0.005578108,0.013084957,-0.009485422,-0.010300301,0.020811649,-0.008547432,0.014245721,0.026404412,-0.013213932,0.05238673,-0.032266848,-0.015148535,0.00481306,-0.021374444,-0.010276851,-0.03372073,-0.028772837,-0.04326478,-0.041857794,-0.0141519215,0.039348673,-0.031610258,0.0059181293,-0.0050739385,-0.005071007,0.015523732,0.028045895,0.008172236,0.042772334,-0.019463288,0.02750655,0.013893974,0.004276647,-0.008213273,-0.036112607,0.002512054,0.027084455,0.0034588375,0.051308043,0.00089548714,-0.02581817,0.054637905,-0.039653517,-0.007914289,-0.03304069,-0.031117812,0.01032375,0.018537024,0.021163395,0.03426008,-0.02476293,0.048587874,-0.026169915,0.029968774,0.043710325,0.010798608,0.04021631,0.0074746064,-0.0023010063,0.002035731,-0.0148788635,-0.015805129,0.01655552,-0.0053524044,0.021878611,0.012733212,-0.006360743,0.015324408,0.06312671,-0.0059620976,0.04704019,-0.009127813,0.019006018,0.004552182,0.013530503,0.012639413,0.027154805,-0.009075051,0.0091923,0.019897109,0.045750454,-0.0051911874,-0.0056601823,-0.02579472,-0.014187096,0.0035497053,0.00575105,-0.016707944,0.005976754,-0.009678883,0.0024490329,0.016027901,0.027061006,0.020248855,0.009532321,-0.012955984,-0.06373641,0.0032888267,0.021644115,0.006501442,-0.0123931905,0.0028506096,0.010054078,0.0032008903,0.0016854504,0.031844754,0.024364285,-0.0162155,-0.02668581,0.026498212,-0.0026146467,0.0013915958,0.005909336,-0.0023024718,-0.020225406,0.0131201325,0.028139694,0.02680306,-0.016637594,0.018830145,0.00851812,0.01742316,-0.01879497,0.014902313,0.005378785,-0.0054227537,0.009063327,-0.035409115,-0.009157126,0.024293937,0.00021892536,0.0009145401,-0.02488018,0.023367671,-0.020588877,0.0060910713,-0.033556584,-0.014409868,-0.037941687,-0.007961188,0.03390833,0.03864518,-0.012264216,0.060406543,0.017235562,-0.003816446,0.032571696,0.059937548,-0.028913535,0.015887203,-0.031657156,-0.025935419,0.013049783,0.009872342,-0.015558906,-0.0034852184,0.016285848,0.020530252,0.045023512,-0.04403862,-0.011150354,-0.018689446,-0.0076035797,0.0010581698,0.0036698852,-0.01662587,-0.0077149663,-0.012404915,0.010036491,0.0019008949,0.0031598532,-0.0049918643,0.003535049,-0.012358015,-0.013507053,0.015863752,-0.05346542,0.005695357,-0.010270989,-0.018701172,0.007029061,-0.08521637,-0.0030132923,0.06228252,-0.0036171232,0.013225656,0.018689446,0.016790017,0.055153802,-0.02846799,-0.06237632,0.0019111542,-0.027201705,-0.007644617,0.011789359,0.036182955,-0.018255627,-0.0028945778,0.03414283,0.010698946,0.014386418,-0.0063783308,0.023367671,-0.009878205,-0.004974277,0.0006653865,-0.017212113,-0.011754185,-0.03240755,0.027952095,0.01292081,0.05440341,-0.03027362,-0.013272556,-0.001263355,-0.019686062,0.013976048,-0.0015667361,0.001645879,0.021761363,-0.032454446,0.0013806038,0.017212113,-0.020377828,0.006612828,-0.015148535,0.014011223,0.002841816,0.033603486,-0.0015872546,0.013882249,-0.0021075457,-0.016590694,0.041576397,0.006612828,-0.013577403,-0.010470311,-0.012639413,0.02126892,-0.0137884505,-0.028069345,0.041013606,0.004086118,0.018325975,-0.04495316,0.009338861,-0.029265283,0.013553953,-0.010200639,0.03770719,0.014890588,0.0071580345,0.034658723,0.006384193,-0.008260173,-0.00037885996,0.056560785,-0.029218383,-0.0023625619,0.0103472,0.029804626,0.016403096,0.04321788,0.0057539814,0.0012780111,0.013413254,-0.0021998791,-0.03301724,-0.0027626732,-0.009702332,-0.008096024,0.016778292,0.017001064,0.019732961,0.022582104,-0.0075859926,-0.013882249,-0.012346291,-0.005012383,-0.010440999,-0.034564923,-0.0034969433,-0.018009404,0.010394099,-0.040802557,-0.035385665,-0.030719167,0.010077528,0.0074746064,-0.008647094,-0.0044202767,-0.013776725,0.06247012,-0.039372124,-0.005540002,-0.0040274938,-0.019826759,0.007879115,-0.020928897,0.015652705,-0.003186234,-0.0055839703,-0.003614192,0.0029136308,-0.003831102,0.01884187,0.018595647,-0.000389852,-0.016907265,-0.0040949117,0.0018935669,-0.015043012,0.0083422465,-0.012522164,0.018396325,0.0070114736,0.012604238,-0.0013263762,-0.003710922,-0.050041758,-0.0120883435,-0.000674913,0.004862891,-0.037027147,-0.022828327,0.04063841,0.010904131,0.020319205,-0.030695716,0.010552385,0.009719919,0.011085867,-0.028749388,-0.029921874,-0.038856227,0.018525299,0.040943254,-0.032853093,0.046360146,-0.037167847,0.016661044,-0.0018129584,0.026779609,0.024106339,0.018572198,-0.059468552,-0.005132563,-0.007591855,-0.007298733,-0.04952586,-0.05426271,-0.03381453,0.003749028,-0.0047397795,-0.013014609,-0.019017743,0.037918236,0.015312684,-0.044343468,0.020706125,0.017118314,-0.013542227,-0.020999247,-0.024082888,0.01763421,0.057592575,-0.006436955,0.03130541,-0.036464352,0.010018904,-0.0008412596,-0.027741048,0.0034617686,0.0017367468,-0.0074628815,-0.013729826,-0.006747664,0.015336134,0.012674587,-0.017329361,-0.030015673,0.030601917,-0.0023156623,0.0030426045,-0.007644617,0.009204025,-0.012322841,0.012709762,0.013014609,-0.03515117,0.0061496957,-0.007967051,0.009966142,-0.012533889,0.012017994,0.0028374193,0.014679541,-0.024997428,-0.00017962871,0.0042913035,-0.015043012,-0.023262147,0.010417549,0.01109173,0.04232679,-0.017282462,0.00039168404,-0.07011474,-0.0035233242,-0.07222521,0.0008331988,0.011355539,-0.042186093,-0.029265283,0.017939055,0.0058331243,-0.0019038261,-0.0040685306,0.022746252,0.013155307,0.04033356,0.022582104,0.023824941,-0.026334064,-0.034893222,-0.006102796,-0.0071580345,0.017352812,0.019076368,-0.015089911,0.02247658,-0.010933444,0.013366355,0.010376512,-0.03941902,0.029101133,-0.0031745092,-0.014081572,0.011015518,0.010775158,-0.0014597466,0.0321496,-0.008330522,-0.0051911874,-0.006331431,-0.007884976,-0.010968618,-0.0115724495,-0.016567245,0.0031920965,0.021163395,0.045515954,0.015875477,-0.0061907326,0.008447771,0.02254693,-0.0075977175,0.00031254115,0.039231423,-0.0067887013,0.031539906,-0.031727504,-0.00459615,-0.01575823,0.004478901,-0.018138377,-0.037167847,-0.0037666154,0.020553702,-0.013694651,-0.005243949,0.029171484,0.016344473,0.025865069,-0.030039124,0.023332497,-0.0029048373,-0.04073221,-0.009321273,0.008072575,-0.015324408,-0.013765001,0.0013798709,-0.03414283,-0.0052967113,0.008799517,0.018091477,-0.00021324612,0.018572198,-0.0044378643,-0.0072342465,0.029171484,-0.016367922,0.04073221,0.03027362,0.011812809,0.01564098,0.0013996566,0.0092978235,0.0066480027,-0.020999247,0.029148033,0.025396073,0.017118314,0.014093297,0.0052644676,-0.027858296,-0.012580789,-0.0042121606,0.025278825,-0.028655589,0.037144396,-0.026896859,-0.00967302,-0.02254693,0.0032888267,0.031633705,-0.031891655,0.043874472,0.016520346,0.0076270294,-0.030578468,0.027318953,-0.026545111,0.012217317,-0.010786883,-0.01657897,0.0036464354,-0.0013791381,-0.0014267705,-0.005507759,0.08648266,-0.010523073,0.010886544,0.015054736,0.035198066,-0.011003793,-0.014339519,0.027084455,0.005595695,-0.012064894,-0.011279328,0.020893723,0.009725782,-0.0010940771,0.016356198,-0.019592263,0.0005463058,0.021491691,0.024293937,-0.03198545,-0.0036610914,-0.015242334,0.004566838,0.011103454,-0.0039981813,-0.031117812,0.03585466,-0.017446611,0.017563859,0.01600445,0.02201931,0.03482287,0.03573741,0.013905698,-0.02497398,-0.010470311,0.0053025736,-0.04338203,0.0068062884,-0.0160748,0.019428113,-0.0011783497,0.008395009,0.00036402064,-0.037308544,-0.007967051,-0.007779453,-0.048869267,-0.014562292,-0.00916885,-0.015277509,-0.00437924,0.017669383,-0.03590156,0.004590288,-0.028350743,0.00404215,0.03688645,0.0077149663,-0.010669634,-0.02206621,0.003250721,-0.029148033,-0.0043469965,0.019568812,0.027365852,-0.00969647,-0.009960279,-0.0040773246,0.039981816,-0.0071287225,-0.010675496,-0.008752617,0.002942943,0.0032448585,0.007656342,0.019475013,-0.043874472,0.0058155367,0.030039124,0.012885635,0.007457019,-0.002276091,0.017188663,-0.05956235,0.035291865,-0.010528935,0.0045727002,0.017235562,0.0045727002,0.027248604,-0.0044642454,-0.019838484,-0.008652956,0.023754591,0.0005056351,-0.006841463,0.00021489493,-0.029124584,0.0025442974,0.0020709056,0.041881245,0.041083954,0.02584162,0.0072635585,0.027998995,0.02471603,0.005144288,0.019006018,0.006360743,-0.024481533,-0.034189727,0.0041857795,-0.026967207,-0.0058536427,-0.011830396,0.016180323,-0.032853093,-0.0036610914,0.009338861,0.0141519215,0.048869267,0.032524798,0.016637594,-0.013296005,-0.03573741,0.014069847,-0.0022291914,0.008992977,0.0032214087,-0.032548245,-0.0068825004,0.02584162,-0.028890086,-0.0034588375,0.0145153925,-0.00086031255,-0.0037255783,-0.027201705,0.02254693,-0.025911968,0.019826759,0.005466722,-0.0011915402,-0.01609825,0.0009445851,0.012862185,-0.025208477,-0.022675904,-0.028092794,0.009930967,-0.00077237596,-0.039934915,-0.047673333,0.009467835,-0.015465107,0.046453945,-0.000092699775,0.014714715,-0.0051677376,-0.009796131,-0.0045316634,-0.03773064,-0.0046313247,0.02019023,0.01383535,0.003936626,-0.042795785,-0.019451564,-0.0030895039,0.016989341,-0.004774954,0.004862891,0.00647213,-0.0034353877,-0.020248855,-0.021069596,0.022535205,-0.03669885,-0.021233745,0.00075112464,-0.030742615,0.0023816146,0.021327544,0.007058373,0.008248447,0.007292871,-0.007310458,-0.009368173,0.005627939,0.009321273,0.019815035,-0.01667277,-0.018572198,-0.0321965,-0.017903881,0.020483352,0.0038193772,-0.008148787,0.03599536,-0.013952598,-0.01605135,-0.009256787,0.0019668473,0.05215223,-0.012627687,-0.0057334625,0.029663928,0.017305912,-0.0021866888,-0.0013256434,0.020272305,0.04682914,0.0072225216,0.0046694307,0.02163239,0.04772023,0.03128196,0.005182394,0.047391936,0.010241676,0.010142014,0.008506395,-0.04607875,-0.035526365,0.005387579,-0.012358015,-0.0016092388,0.028749388,0.018877044,0.02238278,0.01886532,-0.0015271646,-0.0046987426,-0.034400776,-0.025513323,-0.020846823,-0.013800175,-0.015699605,-0.02405944,0.021397892,0.022230359,-0.005938648,0.0042913035,-0.0026102497,0.02019023,-0.00322434,-0.021034421,-0.016485171,0.0088581415,-0.0067124898,0.032524798,-0.022840051,0.020940622,-0.023707692,0.02663891,0.011912471,-0.0071580345,-0.011121042,0.018712897,0.06692557,0.010317888,0.019721236,-0.019134993,0.021819988,-0.00897539,-0.009866481,0.009174713,0.0146678155,-0.039231423,-0.028796287,0.009303686,-0.010997931,-0.014773339,0.018877044,0.0012179211,-0.0069997488,0.007187347,0.033486236,-0.0056777694,-0.05609179,0.003520393,0.052902624,0.008887453,0.015629254,0.0028095725,-0.022863502,-0.021843437,-0.027787948,0.009766819,0.018161828,-0.00046313246,-0.0010098047,-0.027365852,0.039958365,-0.0060676215,-0.020835098,-0.019041194,-0.0036200543,-0.029452879,0.0066421404,0.01248699,0.016813468,-0.002298075,0.008224998,0.0092978235,0.012205592,-0.00046056765,-0.034447677,0.013507053,-0.008471221,0.014550567,-0.00060089974,-0.007292871,0.03132886,0.0017895086,0.035221517,0.009801993,-0.0013095217,0.025396073,0.023320772,-0.006261082,0.0005609619,0.008330522,0.008922628,-0.025278825,0.031539906,-0.006261082,0.008025675,0.005965029,-0.022230359,-0.02860869,-0.02663891,-0.0074746064,0.012275942,0.025700921,-0.025020879,-0.016649319,0.028303843,-0.02666236,-0.03043777,0.04155295,-0.025865069,-0.014245721,0.016063076,0.023086274,-0.027107906,0.005551727,0.031446107,-0.05787397,0.013765001,0.025138127,-0.018665997,-0.018302526,0.022629004,0.0020386623,0.021526866,-0.020905448,0.07053684,-0.011636936,-0.016109975,-0.042959932,-0.004045081,0.006489717,-0.010851369,0.068191856,0.038434133,-0.012017994,0.03034397,0.0054608593,0.00087716704,-0.018314252,-0.043522727,-0.0023786835,0.0057979496,-0.021503417,0.013249106,-0.01751696,0.0056631137,-0.054544106,-0.024411185,0.03036742,-0.0040949117,0.029968774,0.014022947,0.011126904,-0.01426917,-0.017657658,0.007761866]},{"id":"interface-GatewayGuildMemberListUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberListUpdateDispatchData\nDescription: GUILD_MEMBER_LIST_UPDATE — lazy member list; guild_id, id (list_id), member_count, online_count, groups, ops\nProperties: groups: { id: string; count: number; }[], guild_id: string, id: string, member_count: number, online_count: number, ops: { op: \"SYNC\" | \"INVALIDATE\"; range?: [number, number]; items?: Array>; }[]","meta":{"url":"/docs/typedefs/GatewayGuildMemberListUpdateDispatchData"},"embedding":[-0.010670681,0.01181157,0.016741192,0.004362228,0.002931539,0.023598736,-0.027845046,-0.013532057,0.009493183,0.01222644,0.019389035,0.0037429745,0.008559728,0.01175056,0.019974733,-0.016301919,-0.014618038,0.019925924,-0.023415707,0.026234377,0.0038497422,-0.027283752,0.053737763,0.030553898,-0.046733797,0.037997138,-0.0090173045,0.009060011,0.023464514,-0.022732392,0.04424458,-0.016924223,0.059741165,-0.004758794,-0.023610938,-0.00038646135,0.013263613,0.004051076,-0.008370596,-0.03453176,-0.019279215,-0.015386767,0.0006524276,-0.026624842,-0.0003668237,0.03511746,-0.0064243716,-0.025038578,-0.013178199,0.0293825,-0.034678183,0.008419405,0.023647545,0.043536864,0.033287153,0.003944308,0.0070344736,0.024599304,0.011262479,0.022927625,0.004670329,0.007107686,-0.0068941503,0.024684718,-0.0050394405,-0.0004892254,-0.038582835,0.05676387,0.014776665,0.021622008,0.015069514,-0.014605837,-0.027381368,0.014520423,-0.011921389,0.023293685,0.0021795887,-0.028430743,0.0013597644,0.0035355398,0.014068947,0.04807602,-0.08155841,-0.06852663,0.030309856,-0.0004141066,-0.043195207,-0.017156063,0.015594201,0.0022756797,-0.032164566,-0.00080304645,-0.056080557,0.032603838,-0.030407473,-0.07755614,0.04963788,0.004777097,-0.0491498,0.074676454,0.06764808,-0.047026645,-0.023537727,-0.07116227,0.019681884,-0.014398402,-0.040291123,0.012543692,-0.053542532,-0.0107865995,-0.078239456,0.040315524,-0.020194368,0.029284885,-0.002013336,0.010109386,0.0030261048,0.018632509,0.037240613,-0.009956861,-0.05368896,0.024904355,0.01510612,-0.02584391,-0.029480118,0.014496018,0.012592501,-0.021927059,-0.053542532,-0.019279215,0.041877385,-0.021255946,0.021512188,0.018595902,-0.047612343,0.020950895,-0.009718921,-0.0019630024,-0.03218897,-0.029797371,0.0056068352,-0.02906525,0.028577168,0.027747428,-0.037728693,0.0003473767,-0.0073517263,0.0056708963,0.0008770213,0.01294636,-0.040535163,0.046782605,0.001426113,-0.013446643,0.011494317,0.015362362,0.0021658614,0.015264747,0.004218854,-0.0012179157,0.025575466,-0.06877067,-0.00755306,0.020352995,-0.045074318,0.007248009,-0.018095618,0.0048655616,-0.07345626,-0.014117755,0.04783198,-0.061058987,-0.042926762,-0.014862079,-0.008730557,0.0029574684,-0.00032449787,-0.01743671,-0.05178544,-0.032286584,0.023403505,0.009304052,-0.028211106,-0.04146252,-0.05173663,-0.00044995005,-0.047368303,0.0015244918,-0.0066257054,-0.014373998,-0.005191966,0.072724134,0.0028873067,0.030480685,0.03050509,-0.04070599,0.03523948,-0.010304619,0.030529493,-0.029846178,0.024794536,-0.027942661,0.03621564,-0.024172233,0.009011203,0.014898686,0.0113906,-0.012543692,-0.003788732,0.0063389577,0.027430177,-0.008541425,-0.023696354,0.0006817887,0.00019170542,0.0066196043,-0.07462765,-0.017924791,-0.01006668,0.0365573,-0.0014695827,0.017009638,0.025575466,0.0041578435,0.023708556,0.039705426,-0.01288535,-0.026087953,-0.009725022,0.012616904,0.0064304727,-0.024245445,-0.011591934,-0.055543665,-0.0023931242,0.023977,-0.014215372,0.04070599,0.015935859,0.024062414,-0.0095053855,-0.030651513,-0.025087385,0.014422806,-0.0024144778,-0.024233242,0.012324056,0.007534757,-0.008059445,0.043927327,0.03638647,0.026502822,0.0038985503,-0.037313826,-0.033360366,0.038045947,0.012202036,0.02584391,0.026990904,0.048320062,-0.0039412575,0.012238641,0.0107865995,0.015179332,-0.037533462,-0.004407985,0.046562966,0.050809275,-0.02200027,-0.030383069,0.015020706,0.026576033,0.04236547,-0.032213375,-0.013019572,0.018949762,0.01282434,0.022134492,0.0032945496,-0.045049917,-0.026161164,-0.039607808,0.0063694627,0.04202381,-0.008205869,0.04524515,0.02564868,0.029772967,0.030968767,0.05339611,-0.0010928448,0.0048137032,0.028577168,-0.010981832,0.010811004,0.041096456,0.033653215,-0.059594743,0.03231099,0.023000836,0.018412871,-0.0019446994,-0.03382404,-0.037801906,0.0070588775,-0.003154226,0.031212807,-0.021341361,-0.04658737,-0.005249926,0.0047862483,0.026893286,0.0045605106,0.013251411,-0.03860724,-0.0121349245,0.022988634,0.044439815,0.022549361,0.026405204,0.012836541,0.007809303,-0.0063999677,-0.006607402,-0.005957644,-0.05417704,-0.023476716,-0.03680134,0.009822639,-0.0016228707,0.05910666,-0.023305887,0.001346037,0.009908053,0.035507925,0.019401237,-0.030285452,0.07160155,0.045220744,-0.009554194,-0.0070405747,-0.009548093,-0.003087115,-0.0024846394,-0.0006672988,-0.011695651,-0.016033474,0.038338795,-0.023086252,0.036337662,0.015801637,0.021902654,-0.013324623,-0.027308155,-0.026112355,-0.06481721,0.036825743,-0.021731826,-0.025795104,0.052956834,-0.032652646,0.027234944,-0.021573199,0.0341657,0.006030856,0.05168782,-0.009139325,0.022732392,0.003962611,-0.019547662,0.03087115,0.004697784,-0.017595336,-0.043536864,0.0018364063,-0.007681181,-0.01469125,-0.0012552844,-0.028601572,0.021780634,-0.010566963,0.049418245,0.007345625,-0.0063816644,0.026502822,-0.004877764,-0.057740033,0.009603002,-0.06047329,-0.016472748,0.022439543,-0.005161461,-0.047563534,-0.036410876,-0.010560862,-0.022024674,0.049076587,0.03309192,0.02049942,-0.012751128,0.05251756,-0.022158897,-0.018376265,-0.008828172,-0.03746025,0.004051076,0.014178765,0.039949466,0.04729509,-0.007278514,0.021048512,0.025868315,0.016765596,0.0031664283,0.059350703,-0.031847313,-0.017595336,-0.0023046595,0.009792133,0.041194074,-0.0071320897,0.005472613,0.008724456,0.017448911,0.023366898,-0.024733527,0.03543471,0.0042310557,-0.009096618,-0.057642415,-0.09537111,0.0407548,0.025160598,0.008986799,0.059155468,-0.0069673625,0.004112086,0.0019385983,-0.0010379356,0.008492617,-0.008614637,-0.016094485,-0.018742327,0.030041412,0.013385633,-0.014801069,0.020279784,-0.015459979,0.050662853,-0.02547785,-0.019291418,0.062328,0.0042768135,0.05466512,-0.015069514,0.013861513,-0.031505655,-0.015899252,-0.030797938,-0.032091353,-0.045586806,0.008681748,-0.005911886,0.030017007,0.0028903573,0.019803904,0.0048594605,0.040559568,0.015398969,0.06359701,-0.0449523,-0.010292417,-0.01162854,0.055006776,0.009847043,0.014837676,-0.021597603,0.01469125,0.029626543,0.03855843,-0.012189833,0.014496018,0.010670681,-0.02152439,0.07360268,0.04285355,0.018449478,0.0014482291,0.00037044619,-0.008791567,-0.023183867,0.002852226,0.054469887,-0.012836541,0.040095888,-0.014398402,-0.045293957,-0.054567505,0.014373998,-0.011915288,-0.015923657,-0.06603742,-0.01510612,0.02445288,0.034702588,-0.0040846313,-0.042877953,-0.02589272,-0.009450477,-0.0051035015,-0.030846747,0.033750832,0.008645142,-0.06149826,-0.014740059,0.033067517,-0.03148125,-0.009664012,-0.025014173,0.024953162,-0.0018272548,0.043439247,0.007961828,-0.02302524,0.006406069,-0.0060430584,0.017412305,-0.057447184,-0.0053261886,0.017473316,0.006814837,0.0085231215,0.0179858,0.059741165,-0.014971898,-0.01504511,0.006863645,-0.021792835,0.03333596,-0.05124855,-0.0065952004,0.05593413,-0.012299652,0.02403801,0.011939691,0.010994034,0.004877764,0.020950895,0.0016472748,0.010268013,0.035337094,-0.030236645,0.0045605106,0.008059445,-0.019547662,0.008297384,0.023159463,-0.009908053,0.009474881,-0.016057879,0.016497152,-0.03033426,0.0062138867,-0.00032831103,-0.014105553,-0.00036911157,0.024172233,-0.007882515,-0.00911492,-0.001387219,-0.018681316,0.03284788,-0.010164295,0.02025538,0.025795104,-0.012305753,-0.013983533,0.017217072,0.011823772,0.013568664,0.008132657,-0.09844603,0.02589272,0.052078288,-0.06784332,0.019974733,0.0062840483,0.019767297,0.012702319,0.04251189,0.003099317,0.02008455,-0.009395568,-0.00845601,0.016045677,-0.02200027,0.01342224,0.005137057,-0.03548352,0.016509354,-0.017278083,0.031505655,-0.033946063,0.0039839647,0.041291688,0.032115757,0.0021140026,0.017009638,-0.011610237,0.001912669,-0.008596334,0.030114625,0.004182248,-0.05198067,-0.02667365,-0.018730124,-0.025526658,0.030675918,0.0029239128,-0.015276949,0.028015874,0.012220339,0.008370596,0.025160598,0.032579433,0.03243301,-0.015655212,-0.008584132,-0.019254813,-0.012629107,-0.0093223555,-0.057691224,-0.043146398,-0.007455444,-0.0455624,-0.022622574,0.027723026,-0.014361796,0.032115757,-0.011878681,0.044635046,0.004005318,0.025258213,-0.009249143,0.052566368,-0.034653783,0.019047378,-0.010585266,-0.015374565,0.014032341,-0.03531269,-0.047685556,0.00946878,0.00683314,0.0359716,-0.016948627,-0.021499986,0.03741144,-0.017009638,0.008205869,-0.04280474,-0.029089652,0.02684448,0.035898387,0.009401669,0.01360527,-0.0032823475,0.018595902,-0.008767162,0.03907092,0.01654596,0.021353561,0.054762736,0.006802635,0.0101154875,-0.01463024,0.013507653,-0.027405772,-0.048173636,0.008669546,0.0024266797,0.01642394,-0.030114625,-0.0076262723,0.022646978,-0.023720758,0.030114625,0.005802068,0.023806171,-0.0012865522,0.008700051,0.03680134,0.039559,-0.029114056,-0.0011957994,0.023098454,0.050565235,-0.008535324,0.0062199878,-0.02721054,0.01714386,0.036996573,-0.009060011,0.0054329564,-0.014740059,0.003260994,0.009163729,0.02068245,0.01528915,-0.024086818,-0.0040083686,0.031627677,-0.062181573,0.017778365,0.0025334477,0.002733256,-0.023781767,-0.004749642,0.018412871,0.015313555,0.014422806,0.025819506,0.01683881,-0.018791135,-0.0009914153,-0.0011645318,-0.02422104,0.04177977,-0.031017574,-0.046684988,-0.004658127,0.03616683,0.019401237,0.0209753,-0.0029147612,0.020841077,-0.0013628148,0.032213375,-0.010200902,0.027625408,-0.010170396,0.0076567773,0.0053078854,-0.005286532,0.0063267555,-0.024172233,-0.0037551764,-0.003523338,-0.054274656,0.018205438,-0.04958907,0.0076750806,-0.026356397,0.017168265,0.0066318065,-0.0557389,0.016680183,0.009200335,0.009804335,0.04705105,0.01840067,0.016741192,0.033482384,0.043414842,0.0025807305,0.0014131482,-0.037753098,-0.007144292,0.02703971,0.01624091,-0.011427206,-0.0000734982,0.017448911,0.008089949,0.03890009,-0.03223778,-0.001456618,-0.04170656,0.0043591773,0.0011485165,0.0028629026,-0.00082211214,0.014483816,-0.019694086,0.031993736,0.01703404,0.016863214,-0.015899252,-0.027918257,-0.005384148,-0.004069379,0.00022230584,-0.011012337,0.0017494669,-0.010304619,-0.018059013,0.0020712956,-0.0917105,0.0009815012,0.050370004,-0.020865481,0.028211106,0.0017387901,0.0054329564,0.039119728,-0.024867749,-0.048295658,-0.0022283967,-0.023940394,0.009554194,-0.011567529,0.056324597,-0.0010303094,0.0057380074,0.02013336,0.02391599,-0.009224739,0.015118322,0.048417676,-0.047758766,-0.0067904326,-0.0014169614,-0.031700887,0.009755528,-0.014203169,0.031066382,-0.003050509,0.03045628,-0.00749205,-0.030651513,-0.0203774,0.0015984667,-0.0057837646,0.007199201,0.0067294226,-0.013019572,-0.02589272,0.008761061,0.008437708,-0.022964232,0.013178199,-0.0037917825,0.00431647,-0.019193802,0.030017007,-0.011250277,0.0011813096,-0.0032396405,0.011067246,0.018620307,0.009865345,-0.017912589,-0.0209753,-0.024294253,0.0022756797,0.0012949411,-0.012141026,0.014825474,0.053298492,0.00575631,-0.031700887,0.0042524096,-0.01288535,0.017168265,0.017851578,0.005353643,0.036313258,0.028333127,0.020511622,-0.022036877,-0.016973032,0.010078881,0.05364015,-0.0053932997,-0.028967632,0.013788301,0.0050516427,0.019950328,0.018303053,0.06364582,0.020072348,0.029406905,0.016045677,-0.018181033,0.0045391573,-0.012677915,0.0059240884,0.016387334,0.013739492,0.0018806388,0.01294636,-0.0074005346,-0.010475447,0.023574334,-0.026893286,-0.038753666,-0.0012461329,-0.0036423076,-0.00043584144,0.027893852,-0.0641339,-0.03811916,-0.019694086,0.009566396,0.021975866,-0.0077482928,0.007894717,-0.0037033178,0.058765,-0.016741192,0.0050577438,-0.02409902,-0.034214508,0.03792393,-0.012690117,0.04346365,0.011933591,-0.007473747,0.015728423,-0.016289717,-0.008791567,-0.00893189,0.055494856,0.0359716,0.00068445795,-0.0191816,0.027430177,-0.014849877,0.004362228,-0.0020179115,0.04165775,-0.0073334235,0.015435575,-0.0029025592,0.006845342,-0.039607808,0.008785466,0.014215372,0.008370596,-0.035166267,-0.036191236,0.040291123,0.023806171,0.01720487,-0.018791135,0.0018730125,0.0024724375,0.03277467,-0.03338477,-0.03172529,-0.013031774,0.016631374,0.018290851,-0.03626445,0.034312125,-0.034507357,0.0014154362,0.011103853,0.014044543,0.0031191453,-0.028845612,-0.033848446,-0.024233242,-0.0074676457,-0.029772967,-0.047929596,-0.017705154,-0.008321788,0.032652646,0.024025807,0.00030829204,-0.013629674,0.04226785,0.022268714,-0.03531269,0.022293119,0.015179332,-0.004362228,-0.014959696,-0.01222644,0.0057380074,0.06623265,0.0025517507,0.011384499,-0.020389602,-0.009297951,0.0082851825,-0.004908269,0.039827444,0.018181033,0.006192533,-0.003590449,-0.019474449,0.036898956,0.014557028,0.016448343,-0.0070405747,0.03675253,0.014227574,0.003459277,-0.0073883324,-0.0047313394,0.021329159,-0.00929185,0.015484383,-0.04573323,0.055397242,-0.014947494,0.025819506,0.011079448,-0.0045086523,-0.0008099101,0.020987501,-0.036947764,-0.021780634,0.01300737,-0.035629943,0.014605837,-0.0039778636,-0.007955727,0.039290555,-0.020365197,0.011774965,-0.068965904,-0.013971331,-0.06432913,0.0072968174,0.004383581,-0.0050912993,-0.007833707,-0.0015710121,0.007485949,-0.016692385,0.032213375,0.018852144,-0.0035294387,0.024977567,0.016887616,-0.0015122897,-0.003322004,-0.023818374,-0.0036911156,-0.0021414573,-0.011659045,0.05193186,-0.013153794,0.011024539,-0.019389035,0.020609237,-0.00551532,-0.0042768135,0.005310936,-0.01683881,-0.013763896,0.01703404,0.0029483167,0.014947494,-0.0048045516,0.013873714,-0.020597037,-0.0028690037,0.023281483,0.0045361067,-0.003254893,-0.019083984,0.024721324,0.0009456578,-0.013739492,0.01594806,0.025404638,-0.0112136705,-0.000863294,0.0063816644,-0.033482384,0.039705426,0.027405772,0.03577637,-0.016582567,-0.011793267,0.00031439308,0.0043591773,-0.03650849,-0.032896686,0.0046672784,0.00065624074,0.00449645,0.014007937,0.022463948,0.044024944,-0.014971898,-0.029748563,-0.0027134276,-0.020719057,-0.016045677,0.011311287,0.007931323,-0.002242124,-0.04124288,-0.0022833059,-0.021438977,-0.0025364982,-0.00004289778,-0.0020545179,-0.007309019,-0.015337959,-0.011073347,0.009572497,0.0109086195,-0.025868315,0.021451179,0.003218287,0.005256027,0.023610938,0.0074615446,-0.025258213,0.002949842,-0.005533623,0.034360934,-0.013471047,-0.004764895,-0.0050394405,-0.016021272,0.006973463,0.009596901,0.010804903,0.005579381,-0.04524515,0.04231666,-0.017363496,-0.0072968174,-0.019559864,-0.009035608,-0.00030314433,-0.021768432,0.039851848,0.010097184,-0.023122858,-0.019450044,0.005042491,-0.016948627,0.01600907,-0.010926923,-0.005497017,-0.016997436,0.002595983,0.024318658,-0.008968496,0.07204082,-0.010335124,0.004819804,0.01660697,0.0221833,0.012385066,0.0061772806,0.0017464163,-0.017290285,-0.023842778,-0.0032457414,0.0034318224,0.010164295,-0.014129957,0.024306456,-0.020121157,-0.009883649,0.01300737,0.012507087,-0.03458057,0.002223821,-0.0028568015,0.0040541263,0.0063633616,-0.0046733795,-0.03592279,0.051639013,-0.015508787,0.01187258,0.024855547,0.027942661,0.02409902,0.0048411577,-0.0020789218,-0.044098157,-0.0058966335,0.00049761427,-0.009267446,0.004145642,-0.04285355,0.038948897,0.0038039845,-0.01679,-0.006912453,-0.003410469,0.018034609,0.0030764383,-0.016826607,-0.021292552,-0.011408904,-0.025062982,-0.006973463,0.03033426,-0.01504511,-0.0016869315,-0.037850715,0.0033891154,0.047563534,-0.024282051,-0.020340793,-0.02667365,0.023684151,-0.019852713,-0.010463245,0.039534595,0.010902518,0.014935291,-0.0024861647,0.011207569,0.038338795,0.011622439,0.011207569,-0.022134492,0.016875416,0.016814405,0.0011759712,-0.017851578,-0.039192937,-0.002919337,0.031871717,0.010145993,-0.007150393,0.0051462087,0.020889886,-0.07306579,0.036825743,0.0143862,-0.0015145777,0.0042341063,0.033970468,0.02152439,-0.0022192453,-0.019206004,0.005005885,0.023781767,0.0018196285,-0.009163729,0.0041791974,-0.015032908,-0.02025538,-0.006546392,0.022622574,0.043634478,-0.009901952,0.056080557,0.023061847,0.012427773,0.02344011,0.012482682,-0.017131658,0.004740491,-0.029114056,-0.015020706,-0.03946138,0.00013479436,-0.021780634,0.0027591854,-0.038631644,0.022439543,0.004218854,0.016460545,0.017473316,-0.00007950389,0.00803504,0.0000022670285,0.004404935,-0.013312421,-0.027356964,0.0015923657,-0.006049159,-0.03914413,-0.0087122535,0.03074913,-0.024721324,0.01510612,0.0046306723,0.0002299321,-0.010634074,-0.029333694,-0.0028690037,-0.03248182,0.039436977,-0.015838243,0.02901644,0.0034135194,0.012934158,0.0014406028,-0.023061847,0.0023122858,-0.04326842,-0.018778933,-0.019864913,-0.048881356,-0.033775233,0.00028884507,-0.01840067,0.035410307,-0.012812138,0.026112355,0.01240947,-0.024025807,-0.004285965,-0.029114056,0.0071259886,0.033970468,-0.003999217,-0.0060278056,-0.02691769,0.0085231215,0.00941387,0.005808169,0.01973069,0.027845046,-0.008675647,0.01060967,-0.028040279,-0.032872286,0.023171665,-0.019694086,-0.005384148,-0.026356397,0.0021948412,0.014605837,0.036532894,-0.0044201873,-0.026746862,0.0008937991,-0.009798234,0.031627677,-0.013800502,0.021329159,-0.008224172,-0.0025868316,-0.02128035,-0.0028339229,-0.029772967,0.030480685,-0.01054866,0.013824906,0.020035742,-0.026307588,-0.017095052,-0.022805605,0.000004268925,0.038875684,-0.000073021554,-0.013983533,0.030163432,0.017924791,0.0024785385,-0.005292633,0.005982048,0.02290322,0.023037443,0.005786815,0.027942661,0.023159463,0.037020978,0.008315687,0.07277294,0.020548228,0.0227812,-0.006515887,-0.07067419,0.016692385,-0.0038405906,0.011567529,-0.010261912,0.013153794,0.0009670113,0.03321394,0.013629674,-0.004298167,-0.041194074,-0.0028629026,-0.019035175,-0.018998569,0.017924791,-0.013995735,-0.022085685,0.030602705,-0.015081716,-0.023513323,0.024892153,-0.00749205,0.0103595285,0.007186999,-0.004221904,-0.01228745,0.02325708,0.0012163904,0.005124855,0.0018303053,0.004713036,-0.03667932,0.020902086,0.012897552,-0.010951327,0.011646843,0.015752828,0.059545934,-0.0016915072,0.012665713,0.003999217,0.02943131,-0.005850876,-0.017692951,-0.022463948,-0.016387334,-0.03128602,-0.012751128,-0.0030337311,-0.033116326,0.018925358,0.014081149,0.008022838,-0.014349594,-0.008767162,0.044830278,0.00761407,-0.0413649,0.032213375,0.05129736,-0.00039008382,0.009840942,0.026429608,-0.053249683,-0.023891585,0.00096243556,0.027674217,0.009480982,0.005124855,-0.010213104,-0.03560554,0.03872926,-0.010975731,-0.02362314,-0.026502822,0.002301609,-0.008279081,-0.023769565,-0.022768999,0.024770131,-0.0024831141,-0.0046184706,-0.015313555,0.009596901,-0.004703885,-0.019071782,0.0069856653,-0.00041067475,0.033775233,0.009944659,-0.006747726,0.021829441,0.011170964,0.017753962,0.04524515,-0.0022573767,0.01157363,0.035629943,-0.027478984,-0.00401752,-0.024709122,0.017973598,0.02314726,0.038680453,0.018083416,0.0026219124,0.011109954,-0.017192667,-0.024257647,-0.014154362,0.010145993,0.013153794,0.011250277,-0.029089652,0.015215938,0.022158897,-0.025233809,-0.030407473,0.0005346017,-0.027674217,-0.02008455,0.011476015,0.031212807,-0.0077177873,-0.024538293,0.018205438,-0.045074318,0.0062840483,0.039729826,0.011012337,-0.028723592,0.03165208,-0.00097082445,0.015215938,0.0034775801,0.045782037,-0.032945495,-0.021024108,-0.030139027,-0.006582998,0.01588705,-0.00527433,0.052468754,0.0293825,-0.008370596,0.019877115,0.012812138,0.004780147,-0.012763329,-0.026868882,0.01846168,0.0024312555,-0.0067599276,-0.013104986,-0.0023427908,0.0011325014,-0.010920822,0.0026234377,0.007107686,-0.02164641,0.038265582,0.016253112,-0.00023012277,0.0073029185,-0.037191804,0.014068947]},{"id":"interface-GatewayGuildMemberRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberRemoveDispatchData\nDescription: GUILD_MEMBER_REMOVE — guild_id, user\nProperties: guild_id: string, user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildMemberRemoveDispatchData"},"embedding":[-0.005436467,0.020092055,-0.014309579,0.03476524,0.004427759,0.014907766,-0.07999289,0.036031988,0.032442864,-0.025546117,0.019974764,-0.015717078,0.0053309044,0.010175048,0.054376397,-0.009858361,-0.021511285,0.019095076,-0.03471832,0.05897423,-0.0044922694,0.04663515,0.028924115,0.0005131509,-0.033826906,0.021827972,0.025217699,-0.015634974,-0.0034835613,-0.014227474,0.022695929,-0.022883596,0.0566284,-0.008632664,0.010609028,0.004034832,-0.0076122265,0.016538119,-0.018403057,-0.007559445,-0.04173236,-0.03223174,-0.015775723,0.016268348,-0.029017948,0.049778566,-0.018520348,0.012210058,0.0144620575,-0.009043184,0.0036653634,-0.005034743,-0.0016684734,0.08280789,0.015646704,-0.026507908,0.014192287,0.009049049,-0.0088613825,0.031293407,-0.04119282,0.0039791185,0.011799538,-0.0010805491,0.001966101,-0.015423849,-0.014872578,0.06854523,0.020009952,0.019059889,-0.017969077,-0.0462129,-0.01834441,0.018473431,0.01541212,0.0018312156,-0.014579349,-0.023423137,-0.019728452,-0.011887507,0.02732895,0.040418696,-0.052171316,-0.051514484,0.012233516,-0.022355784,-0.047362357,0.00037863204,0.025030034,-0.007125466,-0.004248889,0.017253598,-0.036712278,-0.0089376215,-0.029205615,-0.06122623,0.04062982,-0.0022739915,-0.043186776,0.06413506,0.06507339,-0.040817484,-0.033076238,-0.03192678,0.03457757,-0.041779276,-0.016819619,0.031035364,-0.07656797,0.0057736803,-0.026719032,0.039034653,-0.010192642,-0.0023311712,-0.016972098,0.0397384,0.04004336,0.00357153,0.020549493,0.00066196464,-0.040160652,0.0072075706,0.019810556,-0.03994953,-0.035351697,-0.0018576061,-0.009864226,-0.03976186,-0.06840447,-0.009594455,0.040442154,-0.03377999,0.019271014,-0.0029396215,-0.00085256353,-0.006972987,-0.0053103785,-0.007700195,-0.023399679,-0.024748534,-0.011095787,-0.016549848,0.008568154,0.060428645,-0.055127066,0.0038588946,-0.0022974496,0.0322552,-0.0064510396,0.03317007,-0.06854523,0.04344482,0.022531722,-0.015998578,0.0071547893,0.004380842,-0.0050904565,-0.028103074,-0.03150453,-0.0260622,-0.004114004,-0.07591114,-0.005556691,0.0021039185,-0.031457614,-0.0039380663,0.0226842,0.011289319,-0.04034832,0.0061871335,0.0066445707,-0.028220365,-0.04093478,-0.026977073,-0.04006682,0.01877839,-0.020080326,-0.023036076,-0.05254665,-0.041075528,0.007125466,-0.025100408,0.012139684,-0.06507339,-0.05137373,-0.007535987,0.00025455948,0.0032812331,-0.021253243,-0.013840412,0.022789763,0.0104506835,0.008210414,0.015623244,0.042318817,-0.023763284,0.015330016,-0.05254665,0.028830282,-0.016033765,0.03739257,-0.01541212,0.030636573,0.010110538,0.009488893,-0.0040729516,0.004712191,-0.023880575,-0.0045567797,0.0061812685,-0.008532966,0.008978674,-0.034671403,-0.01120135,-0.014450328,0.031293407,-0.041638527,0.02871299,0.010538653,0.017628932,-0.0260622,0.033099696,0.017980807,-0.019153723,0.030636573,-0.024349742,0.013910787,-0.01667887,-0.031574905,0.0133126,-0.017816598,0.008439133,-0.008286653,-0.036618445,0.009248445,0.008738226,0.014344766,0.01484912,-0.0039087436,0.011424204,-0.06831064,-0.046822816,-0.003310556,-0.010221966,-0.00043947707,-0.0029073663,0.026930157,-0.0124681,-0.00014771415,0.04004336,0.040231027,0.07248622,0.0112834545,-0.017136307,-0.014872578,0.031551447,0.02101866,0.02074889,0.022907054,0.021534743,0.04719815,-0.03138724,0.031434156,0.042529944,0.0038090455,0.021393992,0.049450148,0.025217699,-0.010139861,0.024584325,-0.004486405,-0.012339079,0.03080078,-0.028830282,-0.010491736,0.023364492,0.042483028,0.034647945,-0.009811444,-0.06192998,-0.023399679,-0.0032783009,0.017886974,0.03401457,-0.021652034,0.04787844,-0.006767727,0.032747824,0.0065448727,0.052218232,-0.048019193,0.018285764,0.057332147,-0.01609241,-0.0011040075,0.010691131,0.024396658,-0.04344482,0.008550559,0.016854806,-0.0046652746,0.0049878266,-0.04534494,-0.073424555,0.023223743,-0.019634617,0.028619157,-0.024889283,-0.031293407,-0.007184112,-0.016315265,-0.013629287,-0.0022930512,0.03589124,-0.016854806,-0.018696286,-0.012409454,0.04105207,-0.013429891,0.033568863,0.01807464,0.006609383,-0.027985781,-0.06277448,-0.011840589,-0.037885197,-0.022602096,-0.055971563,0.018379597,0.028783364,0.043913987,-0.036641903,-0.016291806,-0.015998578,0.039785318,0.055361647,-0.044218943,0.05784823,0.028971031,-0.015998578,0.034366447,0.0038970143,-0.01820366,-0.005204816,0.022660742,-0.037744444,0.00847432,0.0016992624,-0.009224987,0.009952194,0.007377643,0.03797903,-0.026601741,-0.05672223,-0.00008160015,-0.044899236,0.0481834,-0.011482851,-0.008738226,0.03722836,-0.0249362,-0.012913808,-0.039151944,0.007172383,0.034108404,0.012526746,-0.02030318,0.014544162,-0.007688466,-0.042389195,-0.0130311,-0.0011817132,-0.047033943,0.0010394971,-0.011207215,-0.005832326,-0.04299911,-0.005445264,0.01679616,-0.006134352,0.01541212,-0.0028340588,0.015869558,-0.021464368,0.00032145236,-0.02241443,-0.025053492,0.04313986,-0.0495909,-0.01204585,0.058458146,-0.015846098,0.010755642,-0.018684557,-0.005313311,-0.042928737,0.0515614,0.03248978,0.008767549,-0.021734139,0.04093478,0.02128843,0.01120135,-0.025546117,-0.028924115,0.030566199,0.017816598,0.010110538,0.03237249,-0.019740181,0.03324045,0.03335774,0.029017948,0.007934779,0.027962323,-0.06601173,0.018285764,-0.0047649723,0.003762129,-0.004653545,-0.014379953,0.041568153,0.012479829,0.007864404,0.06178923,-0.027845033,0.021487826,0.04091132,-0.009295361,-0.06066323,-0.09416172,0.013066287,0.005196019,-0.015869558,0.0117878085,0.0006011196,0.039714944,0.0089493515,-0.029041406,0.020092055,-0.042131152,-0.0154707655,-0.010415496,0.023775013,0.008175226,-0.029604407,0.09711747,-0.009342278,0.04260032,-0.004823618,-0.02002168,-0.0024088768,0.017640661,0.049450148,-0.031786032,-0.032771282,-0.021253243,0.050106984,-0.006192998,-0.008368758,-0.015705349,0.009905278,-0.00043397903,0.07098489,-0.029745156,-0.008116581,0.005618269,0.036360405,0.0066504353,0.033639237,-0.014755286,-0.00629856,0.02955749,0.0011142704,-0.0515614,-0.012268704,-0.030730406,0.02298916,0.03739257,0.03797903,0.019728452,0.03237249,-0.027680824,-0.01749991,0.033076238,0.03068349,0.015857829,0.009500622,-0.021382263,0.01864937,0.0011311311,-0.0036301757,0.057801314,-0.011365559,0.022062555,0.0064334455,0.055267815,-0.062164564,0.022461347,0.0014896037,-0.010826017,-0.036383864,0.015916474,-0.017957348,-0.01903643,-0.025851075,-0.05057615,-0.017183224,-0.03417878,-0.0283142,-0.025147324,0.009928736,-0.0280327,-0.035492446,-0.027563533,0.03570357,-0.026672116,0.022426158,-0.017851785,0.04243611,-0.013371245,0.041380487,0.008644393,-0.034554113,-0.016502932,0.010620757,0.022144658,-0.06526106,0.009670694,0.031199573,0.018109826,-0.0042137015,0.017054202,0.07258006,0.0071782474,-0.031340323,-0.017582014,-0.008532966,0.04020757,-0.014110182,-0.0061108936,-0.011682246,0.0019529056,0.0021566998,0.011647059,0.007829216,-0.004964368,0.012491558,0.022496535,-0.013253954,-0.021781055,0.00004153315,0.013711391,-0.003360405,-0.013641017,0.0053191753,-0.00036690288,-0.034507196,-0.009576862,-0.04482886,-0.012948995,-0.026859783,-0.003058379,-0.02507695,-0.03293549,0.008796872,0.013382975,0.0038002487,-0.01008708,-0.013547183,0.013230495,0.04062982,-0.034929447,0.049543984,0.029229073,-0.003932202,-0.005254665,0.055173982,0.009054913,-0.0018590722,-0.022496535,-0.07379989,0.0042899414,0.06643397,-0.040137194,-0.024725074,-0.025123866,-0.024162075,-0.034812156,0.032865115,-0.010139861,-0.01043309,0.01372312,-0.0092015285,0.03293549,0.002149369,0.038495112,-0.0023634264,-0.028759906,0.0018605384,0.026601741,0.0119051,-0.021487826,0.005899769,0.05423565,0.005697441,0.050200816,0.022050826,-0.02563995,0.0018927936,0.015752265,0.019575972,-0.019400034,-0.0029542828,-0.016057223,-0.018837035,-0.009400924,-0.016491203,-0.018801847,-0.006386529,0.022332326,-0.009535809,0.013641017,0.025006576,0.005615337,0.039668027,-0.05095148,-0.0045773056,0.005234139,-0.04288182,-0.017523369,-0.029745156,-0.01834441,-0.035609737,-0.012937266,-0.029158698,0.03448374,-0.021393992,-0.020608138,-0.010474143,-0.0025203037,0.0034835613,0.03797903,0.0073483204,0.021476097,-0.043749776,-0.011518038,0.0057883416,-0.015904745,0.002490981,-0.0263437,-0.013805225,0.03138724,-0.005676915,0.034624487,0.0087734135,-0.01862591,0.06882673,-0.03248978,-0.0006300759,-0.013770037,0.025264617,0.0044101654,0.020127242,0.0067149457,0.0034864936,-0.018109826,0.026296783,-0.033662695,0.042084236,0.023857117,0.021487826,0.048371065,0.011518038,0.004700462,-0.001038764,-0.031715658,-0.027070908,0.004366181,-0.0041081393,-0.003298827,0.004163853,-0.006486227,0.008345299,0.03068349,-0.015189266,0.049450148,-0.021065576,0.008867247,0.012163142,0.026484448,0.008198685,0.029182157,-0.031598363,0.0026361293,0.0089376215,0.038025945,-0.00009332931,0.014896036,-0.014215745,-0.028900657,0.0099463295,-0.0035246133,-0.0043339254,0.0012601519,0.004163853,0.021523014,0.013570641,-0.0113421,-0.0028120668,-0.018086368,0.016655412,-0.081165805,-0.020209348,0.017218411,-0.00031632086,-0.035046738,0.014790474,0.014321308,0.0063806647,0.010820152,0.037744444,0.0023194419,0.017523369,-0.008503643,0.00056153367,-0.018086368,0.014344766,0.010239559,-0.024185533,-0.022519993,0.0016523458,0.002291585,0.015001599,-0.017101118,0.032958947,0.033873823,0.016303536,-0.018379597,0.004407233,-0.013969433,0.020244535,0.00853883,-0.04159161,-0.027680824,0.017570285,0.0102864755,-0.01877839,-0.0089376215,0.007893726,-0.0126323085,0.0064099873,-0.0249362,0.0081928205,-0.0055303,-0.03302932,0.014696641,0.025452282,-0.040817484,0.04217807,0.023176825,-0.0051168473,0.054047983,0.055173982,-0.011682246,0.030073574,-0.015107161,-0.013781766,0.034671403,-0.011482851,-0.011799538,-0.0073483204,0.00041601874,0.03333428,0.037509862,-0.054986313,-0.006574196,-0.007958237,-0.016221432,0.0028941708,0.0008049138,-0.0033750664,0.0012674826,-0.047456194,-0.017452994,-0.013300871,-0.003844233,-0.01113684,-0.024068242,-0.0085212365,-0.0146262655,0.0057678157,-0.031692196,-0.004187311,-0.023880575,-0.006574196,0.0029792073,-0.07656797,0.040864404,0.06526106,-0.014637995,0.004149191,0.04940323,0.012620579,0.056487646,-0.014720099,-0.0566284,0.016608493,-0.052218232,-0.011248267,-0.0028179314,0.060710147,-0.012866891,0.011588412,0.00784681,0.043538652,0.01581091,-0.0043837745,0.013253954,-0.013969433,-0.00966483,-0.0027270303,-0.01625662,0.0042723473,-0.017288785,0.033873823,-0.010831881,0.03136378,-0.022437887,-0.048277233,-0.0031404833,-0.015013328,0.024162075,-0.0030935667,-0.0071078725,0.012362537,-0.039011195,0.009670694,0.003521681,-0.017640661,0.0033985248,-0.03457757,0.006972987,-0.001916252,0.008327706,-0.0076591433,0.023341034,-0.011054736,0.005407144,0.022156388,0.0068556955,0.010720455,-0.036360405,-0.0027284964,-0.0042049047,-0.049543984,-0.038495112,0.035609737,0.02365772,0.016233161,-0.02814999,-0.0013371245,-0.02144091,-0.020807534,-0.00960032,0.0040700193,-0.010321663,-0.009424382,0.025569575,0.003592056,0.033662695,0.017851785,0.035844322,-0.0054306025,0.021264972,0.0036272435,0.009406788,-0.032090988,0.03765061,0.024889283,0.006216456,-0.0015995646,0.0009801182,-0.046259817,0.013007642,-0.008644393,-0.015376932,0.01568189,0.0243732,0.011910965,0.0020482051,-0.025452282,-0.02114768,-0.014954682,-0.0042518214,-0.028361116,-0.02018589,-0.01525964,-0.011811267,-0.021523014,-0.039105028,-0.0249362,-0.04665861,0.036782656,0.0019177181,-0.0046623424,0.006022925,-0.0020540697,0.038917363,-0.028173449,-0.0035979205,-0.005445264,-0.014602807,0.020924825,0.0019294473,0.012667496,0.0072896746,-0.029580949,0.0062575084,-0.0027812778,0.009506486,0.032677446,0.0532504,0.011107517,0.00916634,0.0050083525,0.06573023,-0.019775368,0.012385996,0.007031633,0.0035539363,0.0035187488,0.011940287,-0.005125644,-0.003348676,-0.042553402,-0.016772702,-0.006163675,0.012256975,-0.050623067,-0.007817487,0.041638527,-0.0008379021,0.016362183,0.002268127,0.014180558,-0.002897103,-0.010386174,-0.027141282,-0.03657153,-0.025030034,0.023071263,0.032325573,-0.01904816,0.047714233,-0.014250932,0.03516403,0.00556842,0.003958592,0.0025173714,0.004155056,-0.04466465,-0.009852497,-0.014743557,-0.006503821,-0.045626443,-0.017206682,-0.024396658,0.031293407,0.005791274,0.0030085302,0.0017579083,0.036219653,-0.021698952,-0.0450869,0.01679616,0.0043251286,0.010808423,-0.03012049,-0.025593033,-0.013429891,0.04051253,0.008409809,0.03403803,-0.04135703,0.0059349565,-0.009717612,0.011177892,0.039175402,0.021605117,-0.0019998222,0.01877839,-0.0126323085,0.021182869,0.023141637,-0.021100763,-0.023352763,0.023059534,0.035515904,0.018860493,-0.0037269415,0.009770392,-0.009899413,0.0074011018,0.028126532,-0.039433446,0.0075007994,-0.0077529764,0.011928558,0.020631596,-0.0042283633,0.013347787,0.020713702,-0.016338723,0.007453883,-0.0016875332,-0.018051181,-0.008562289,0.0060405186,0.017687578,0.05686298,-0.03755678,0.008767549,-0.06413506,-0.008368758,-0.041826192,-0.004439488,0.006626977,-0.028759906,-0.014063266,0.0013334592,0.0026361293,0.0010043095,0.023317575,0.025264617,0.012022392,0.033803448,0.032583613,0.01400462,-0.020256264,-0.035515904,-0.010374445,-0.0091135595,0.029580949,0.04062982,-0.018086368,0.007582904,-0.007876133,-0.0094537055,-0.017265327,-0.012432912,0.010180913,-0.00875582,-0.018860493,0.028337657,0.030050114,0.0065917894,0.0018825306,-0.022742847,-0.019059889,-0.022531722,0.020924825,0.00833357,-0.023247201,0.009477164,0.0017769681,-0.013547183,0.0636659,0.021687223,-0.013687933,-0.00035957215,0.002309179,-0.005911498,-0.024631241,0.047831524,-0.0036477696,0.018426515,-0.0048265504,-0.016913453,0.0020452728,0.040864404,-0.020983472,-0.047456194,0.0016992624,-0.008738226,0.006668029,-0.018238848,0.0080638,0.026507908,0.0062105916,-0.03807286,-0.012010663,-0.0042723473,-0.022778034,-0.010738049,0.011641194,-0.01176435,-0.032020614,-0.009758663,-0.024255909,-0.00085109734,0.0023253064,0.005961347,0.0283142,0.038987737,0.0026009418,0.015576328,0.03821361,-0.02002168,0.049356315,0.037720986,0.020514306,0.0037885194,-0.006357206,-0.027117824,0.0023546293,0.0022138795,0.0109433085,0.008110716,0.013652746,0.013007642,0.0074890703,-0.031434156,0.008046205,-0.0006245779,0.0099463295,-0.03377999,0.0071665184,-0.043867067,-0.013300871,-0.01849689,0.0078057577,0.017992536,-0.048980985,0.03490599,0.015294828,-0.025217699,-0.04006682,0.004462946,-0.01848516,-0.014532433,-0.00209952,-0.004210769,0.0011655856,-0.0023443664,0.017546827,-0.0042019724,0.06915514,-0.012210058,0.02297743,-0.008597476,-0.00036580325,-0.0029953348,-0.0101222675,0.026296783,0.0067032166,-0.0013187977,-0.023704637,0.004688733,0.014309579,-0.00046733383,0.009635507,0.0009332015,-0.008808601,0.036360405,0.0096179135,-0.024396658,-0.011107517,0.012819975,0.0077529764,-0.0078057577,-0.0028472543,-0.03317007,0.039433446,0.010309934,0.019587701,0.017816598,0.020385284,0.028619157,0.004785498,-0.012995912,-0.04260032,-0.0024631242,0.042670693,-0.036806114,-0.010245424,-0.033404656,0.044054735,-0.009154611,0.0016670072,0.017488182,-0.041122444,0.0028487204,-0.0037885194,-0.05686298,-0.026132574,0.0012396259,-0.025522659,0.014368224,0.029017948,-0.029815532,-0.0041785142,-0.010098809,0.0018400124,0.033545405,-0.0027314287,-0.020842722,-0.0067032166,0.03138724,-0.008157632,-0.009547538,0.035070196,0.033123154,-0.028548783,-0.004284077,0.01065008,0.032466322,-0.0015291895,-0.003914608,-0.010210237,0.0064744977,0.02354043,0.018449973,0.0025173714,-0.050482318,-0.015893016,0.0116998395,0.015318287,-0.008738226,0.009776257,0.013652746,-0.047291983,0.033521947,-0.006920206,-0.005172561,0.022907054,-0.02761045,0.035070196,-0.009811444,-0.016491203,-0.016432557,0.020009952,0.0063630706,0.0012322952,0.001674338,-0.011230674,0.008134174,-0.004307535,0.042060778,0.04438315,-0.0006784588,0.008855518,0.013019371,-0.005113915,0.029182157,0.02676595,-0.010538653,-0.005289852,-0.022602096,-0.0063748,0.0026859783,0.010515194,-0.019693265,0.03164528,-0.017816598,-0.015142349,0.014508974,0.028196907,0.027258573,0.017546827,0.010444819,-0.006709081,-0.017159766,0.02676595,-0.0017813665,0.017441265,0.0054012793,-0.036031988,0.0034659675,0.035797406,-0.019904388,-0.006456904,-0.0027607516,-0.008955216,-0.020209348,-0.017969077,0.0011949084,-0.020760618,-0.00069275365,0.000741503,0.006503821,-0.01568189,0.022930512,0.013160121,-0.009852497,-0.01893087,-0.043632485,-0.0050787274,0.008925892,-0.04888715,-0.031973697,0.0066504353,-0.03514057,0.028525323,0.010908121,-0.005313311,0.018696286,-0.00057509553,-0.010984361,-0.03096499,0.0066152476,0.022027368,0.0018033588,-0.019904388,-0.024748534,0.00087089033,0.002856051,-0.016889995,0.016854806,0.002017416,0.032278657,-0.0071371957,-0.03654807,-0.017300515,0.010004976,-0.026085658,-0.022613825,-0.01120135,-0.025593033,0.0038471653,0.019435223,0.012163142,0.00027618514,0.0006612315,-0.008321841,0.009653101,0.00010006442,0.016139328,0.000057958558,0.012585391,-0.0019807622,-0.0034952904,-0.023294117,0.026507908,0.0042899414,0.003096499,0.019435223,-0.006597654,0.0050611338,-0.039151944,-0.007729518,0.007008175,-0.021405721,-0.0047679045,0.01372312,0.0091897985,-0.0037298738,-0.018274035,0.036618445,0.047291983,0.030871157,0.004820686,0.025991824,0.020373555,0.009436111,-0.017875243,0.028173449,0.02535845,0.022566909,-0.029862449,-0.0566284,-0.025569575,-0.008169361,-0.0014712769,0.002804736,0.031551447,0.017523369,0.025874533,0.02003341,-0.005829394,-0.061695397,-0.018848764,-0.012034121,-0.014555891,-0.019939577,-0.015728807,-0.0035773946,0.04576719,0.015376932,-0.0110312775,0.026390616,-0.009318819,0.021734139,0.012362537,-0.035797406,-0.014755286,0.008884841,0.0021229784,0.026812866,0.013394704,0.006574196,-0.0059906696,0.031739116,-0.018602451,-0.030355074,-0.011817131,-0.0014419539,0.036360405,0.007272081,0.027094366,-0.038143236,0.02857224,-0.002512973,-0.013418162,0.019904388,-0.0060170605,-0.021921804,-0.022778034,-0.012550204,-0.016233161,0.0023121112,0.007043362,0.015482495,0.0013664474,0.008603341,0.028877199,-0.02031491,-0.032560155,0.026812866,0.018989515,0.021065576,-0.004043629,0.0249362,-0.030777322,-0.03589124,-0.009230851,0.020490848,-0.00008970977,-0.0028824417,-0.00629856,-0.027188199,0.019341389,0.0008613604,-0.027540075,-0.02941674,-0.0059173624,-0.018719744,0.008245601,-0.009172205,0.026249865,-0.028619157,-0.007905455,-0.014415141,0.0005039875,0.008456727,-0.014684912,0.027751198,0.0022402701,0.01597512,-0.0059877373,-0.00086429267,0.027821574,0.018684557,0.041544694,0.034835614,0.017159766,0.0064217164,0.043046027,-0.0039673895,0.00009186317,0.016596764,0.020608138,-0.0049145194,0.005336769,0.014098453,0.017277056,0.011647059,-0.0057883416,-0.009864226,-0.030190865,-0.008961081,0.0061578103,0.015763994,-0.043116402,-0.007582904,0.011987205,-0.0048265504,-0.0507169,0.011183756,-0.008873112,-0.020948285,0.020502577,0.04032486,-0.01525964,0.0069143414,0.018015994,-0.06558948,0.031058822,0.027282033,0.007665008,-0.0201507,0.032958947,0.013160121,0.006961258,-0.026038742,0.06385356,-0.0027328948,-0.024302825,-0.032442864,0.0030495822,-0.002814999,-0.00010858639,0.045602985,0.034647945,-0.027375866,0.0030613116,0.02295397,0.0011208681,-0.013207037,-0.042412654,-0.024326283,-0.01498987,0.0040494935,0.023552159,-0.0066445707,0.0036477696,-0.02688324,-0.009647236,0.07239239,-0.014110182,0.015846098,0.0062399143,0.007817487,-0.005926159,-0.01931793,-0.004345655]},{"id":"interface-GatewayGuildMembersChunkDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMembersChunkDispatchData\nDescription: GUILD_MEMBERS_CHUNK — from request_guild_members; members[], chunk_index, chunk_count\nProperties: chunk_count: number, chunk_index: number, guild_id: string, members: (APIGuildMember & { guild_id?: Snowflake; })[], nonce: string | null, presences: { user: { id: Snowflake; }; status?: string; activities?: unknown[]; }[]","meta":{"url":"/docs/typedefs/GatewayGuildMembersChunkDispatchData"},"embedding":[0.016800797,-0.020642301,0.011692289,0.034226414,0.019635642,0.01786531,-0.027746769,0.02135969,0.039016724,-0.015909845,0.045588937,0.021625819,0.0069135507,-0.012889867,0.029829513,-0.0043216925,-0.012380752,0.010743484,-0.0073243137,0.030870885,-0.0023517644,0.029783228,0.036980264,-0.0053833127,-0.042302832,0.020815862,0.008903728,-0.0014246543,0.021058848,-0.0110153975,0.02455323,-0.025085486,0.051976018,0.032907344,-0.021174558,-0.008342544,-0.031611416,0.02017947,-0.010037665,-0.007486305,-0.010662489,-0.014775907,-0.01845542,0.018848827,-0.036818273,0.035152078,-0.023153163,0.021162987,-0.0015490403,0.043830175,-0.00022183386,0.0258723,-0.026774822,0.064657606,0.042835087,0.005429596,-0.0099798115,0.035128936,-0.0012019165,0.027075663,-0.02092,-0.008475608,-0.024206106,0.039155573,0.025455752,-0.031912256,-0.04882876,0.050356105,0.025154911,0.028718716,0.023454003,-0.009869889,-0.039224997,0.021834092,-0.022840751,0.009812035,-0.010500497,-0.010049236,0.004078706,-0.015065176,0.015794137,0.03704969,-0.047949377,-0.07099841,0.06160292,-0.011848495,-0.009418628,0.01903396,-0.0029158406,-0.005603158,-0.01845542,0.0026670685,-0.087428935,0.013005575,0.012033628,-0.054614156,0.026959956,-0.00610938,-0.013248562,-0.003766294,0.04984699,-0.03008407,-0.07632097,-0.08858602,0.061695486,-0.029528672,-0.044455,0.031703983,-0.07261831,-0.011929491,-0.030708892,0.06655522,-0.0110153975,0.008764878,-0.018871969,0.017043782,-0.018640552,-0.011032755,0.014660199,0.018096725,-0.017506614,0.025594601,0.011333595,-0.01744876,-0.020422455,0.0056262994,0.024923494,-0.019774491,-0.06738832,0.009135144,0.051235486,-0.039201856,0.012889867,-0.022273783,-0.00504776,0.00027010578,-0.02208865,-0.025363185,-0.042649955,-0.048921324,0.015157743,-0.018062012,0.040613495,0.03286106,-0.0520223,0.019843915,-0.030431194,0.043853316,0.030917168,0.012612168,-0.03883159,0.036100883,-0.0125774555,-0.010818695,0.00046463977,0.006525929,-0.009470697,0.006439148,-0.02804761,-0.024182964,0.01111375,-0.07359026,-0.024900353,0.028556725,-0.0169975,-0.00044185977,-0.026936814,0.00031331545,-0.05507699,-0.012195619,-0.01641896,-0.023060597,-0.031218007,-0.025016062,-0.006410221,0.0050795795,-0.04475584,-0.030315487,-0.02601115,-0.058964778,0.013364269,0.010500497,-0.008955796,-0.05336451,-0.03806792,-0.0086376,-0.019288518,-0.0007304065,0.021348119,0.009042577,-0.032768495,0.044825263,0.018131437,0.029042698,0.04882876,-0.07229433,0.044524424,-0.0048597343,0.04822708,-0.019496791,0.024877211,-0.004171272,-0.0007032874,-0.004200199,0.014475066,-0.013144424,0.0073416703,0.012889867,-0.0072259624,0.0065317145,0.024923494,-0.014660199,-0.012114624,-0.030500619,-0.05364221,0.008417754,-0.05868708,0.008180553,-0.005548197,0.0012062555,0.008307831,0.021336548,0.052253716,0.022516768,0.041747432,-0.007937566,-0.016291682,-0.054799292,-0.013479978,-0.01889511,0.0032745353,-0.0018947179,-0.035776902,-0.058964778,-0.02017947,0.00081067893,0.022030795,0.047903094,0.0024645797,0.002105885,-0.01264688,-0.02890385,0.008950011,0.003364209,-0.0010001507,-0.022887034,-0.01540073,0.0035377708,-0.0009885799,0.015956128,0.06493531,0.03850761,0.0052039656,-0.0073243137,-0.027283937,-0.0076077986,0.0021246874,0.055447254,0.03792907,0.026959956,-0.011674933,-0.032606505,-0.016048694,0.02238949,-0.028371593,-0.011807998,0.027353361,-0.006063097,-0.0024370989,0.024460662,0.015759425,-0.0049812277,0.0566969,-0.03647115,-0.012589026,-0.010945973,0.010407931,-0.004411366,0.01584042,-0.019415796,-0.008371471,-0.01787688,-0.0014571971,0.02267876,-0.013341128,0.015076747,0.042811945,0.018501703,0.032189954,0.060075574,0.026635973,-0.00045957757,0.02223907,0.0070119025,0.011929491,0.00668792,-0.0053370297,-0.0386696,0.05655805,0.0022461808,-0.018339712,0.0011650345,-0.012554314,-0.055123273,-0.011032755,-0.013190707,0.016789226,0.010859192,-0.022320066,-0.049384158,0.011350951,-0.030199777,-0.027978186,0.005475879,-0.042534247,0.0036621569,0.049060177,0.05290168,0.015875133,0.049060177,0.0106451325,0.03883159,-0.001907735,-0.024506947,-0.00515479,-0.02601115,-0.005663905,0.0013132853,-0.0038270408,-0.014880043,0.033439603,-0.0053833127,0.0055105914,0.01496104,0.021232411,0.0023561034,-0.0032658572,0.03198168,0.021475397,-0.014035376,0.021024136,-0.0012416911,-0.011368307,-0.030616326,0.011466659,-0.042973936,-0.012508031,0.037674513,-0.0021044386,0.011443517,0.023569712,0.0143246455,-0.021891946,-0.042696238,-0.01366511,-0.05928876,0.036124025,-0.059797876,0.012380752,0.04505668,-0.049199026,0.013051858,0.014590774,0.034388404,0.0024486696,-0.00410474,-0.033462744,0.0032340374,0.0061209514,-0.063083984,-0.009395487,0.020376172,-0.033185042,-0.035661194,-0.017934734,-0.0024718114,-0.0038877875,0.015678428,0.00585193,-0.022262212,-0.004932052,0.011617079,0.043853316,-0.009106217,0.031125441,-0.012693163,-0.037026547,0.020977853,-0.06960991,-0.016754514,0.02733022,0.026936814,0.0032456084,-0.03128743,-0.008446681,-0.024530089,0.02862615,0.013341128,0.0077408627,-0.021324977,0.056465484,0.044547565,0.0073590265,-0.029783228,-0.019647213,0.007839214,0.017657034,0.04142345,0.03531407,-0.040034954,0.0045010396,-0.0008381595,-0.005672583,0.006259801,0.053133097,-0.030732034,0.015099889,-0.0015215597,0.01684708,0.031194866,-0.006716847,0.018351283,-0.048319645,0.026728539,0.04035894,0.01612969,0.030477477,0.024877211,-0.011998916,-0.048504777,-0.078449994,0.027422788,0.05933504,0.016372677,0.05933504,-0.017761173,0.013861814,-0.006601139,0.0024385452,-0.015967699,-0.013329557,-0.018224005,-0.034064423,-0.0038993582,-0.03519836,-0.0034741315,0.0691008,-0.040451504,0.06956363,-0.02994522,-0.008782234,0.05387363,0.029482389,0.023176305,-0.046283185,-0.002996836,0.008880586,0.047116283,0.0019540181,-0.0037055474,0.0030141925,-0.012230331,-0.015585862,0.04882876,-0.027492212,0.01030958,-0.02513177,-0.0029650165,0.008660741,0.069702476,-0.020133186,-0.02354657,-0.0008707024,0.048458494,-0.016476814,0.0037691868,-0.01916124,0.04137717,0.029459247,0.06979504,0.0002809534,0.01948522,-0.006774701,-0.0129014375,0.058363095,0.061649203,0.054706722,0.0142320795,0.0090830745,-0.022296924,-0.02049188,-0.014579203,0.050356105,-0.010945973,0.030176636,0.009291349,-0.020040618,-0.041099466,0.03707283,0.0005463585,0.0026251243,-0.06238973,0.016835509,-0.020908428,-0.006803628,-0.023997832,-0.065768406,-0.012727876,-0.03142628,-0.01030958,-0.008984723,0.031449422,-0.009563263,-0.036100883,-0.031773407,0.03878531,-0.03806792,0.01278573,-0.029806372,0.027816193,0.005600265,0.012855154,0.015481725,-0.05419761,0.0019670352,0.031356856,0.0099798115,-0.06377823,0.021602677,0.03806792,0.0052213217,-0.0039253924,0.045866635,0.0514669,-0.009783108,-0.005114292,-0.016546238,-0.0031935398,0.03575376,-0.036378585,0.014683341,0.042811945,-0.007544159,0.009783108,-0.009262422,0.023049027,-0.015967699,-0.0122997565,0.013167566,0.0042638383,-0.0049841204,-0.019253805,0.03503637,-0.017784314,0.010853407,0.036656283,0.0123923225,-0.0316577,-0.018200863,-0.012855154,-0.0031154368,-0.0009538675,0.01453292,-0.006757345,-0.06285256,0.001233013,0.024900353,0.010199657,-0.027283937,-0.00003581975,-0.00097267004,0.031125441,-0.022308495,-0.014428783,0.0032629645,-0.009788893,-0.023442432,0.045565795,-0.0050795795,0.019496791,-0.025756592,-0.044894688,-0.0058201104,0.04582035,-0.04924531,0.0052994248,0.024599513,0.006259801,-0.00038581374,0.035105795,-0.017460331,0.028880708,0.010407931,0.024784645,0.024067257,0.0021420436,-0.013653539,-0.012855154,-0.034943804,0.032583363,0.000053334137,0.030593185,-0.039178714,-0.035962034,0.0282096,-0.012403893,0.021081991,0.026520265,0.013931238,0.020954711,-0.015065176,0.043182213,0.013271703,-0.030014645,0.00068810076,-0.021081991,-0.029991504,-0.0053196736,0.017090065,-0.0045126104,0.030570043,-0.012079911,0.024900353,0.027214512,0.00089022814,0.018374424,-0.018385995,-0.025594601,0.01640739,0.02631199,-0.0068441257,-0.04943044,-0.010338507,0.0014116372,-0.07396053,-0.010072378,0.02878814,-0.023639137,0.014174225,0.0035204147,0.03825305,0.048504777,0.03179655,-0.012403893,0.060399555,-0.016395818,-0.012589026,0.0006674903,-0.0105988495,0.0027957936,-0.002619339,-0.014347787,0.021301836,-0.044547565,0.018247146,0.0066300663,-0.02153325,0.027214512,-0.031148583,0.0022042366,-0.038877875,-0.01191792,-0.011836925,0.043945882,-0.0034162775,0.021706814,-0.009216139,0.020908428,-0.0053746346,0.03603146,0.03545292,0.033786725,0.04052093,-0.003459668,0.00842354,0.006988761,-0.033485886,-0.015018893,-0.01278573,0.04244168,0.0039832466,0.017761173,-0.011883208,-0.019774491,0.06539814,-0.04549637,0.04531124,-0.00058179407,0.02238949,0.004709314,0.025016062,0.015794137,0.041215178,-0.019589357,-0.011894778,0.045241814,0.02411354,0.025108628,-0.010812909,-0.013040287,-0.022435773,0.01615283,-0.0066937055,-0.002363335,0.011131106,-0.005441167,0.0032427157,0.035823185,0.008915299,-0.013398982,-0.0066821347,0.024460662,-0.053086814,0.008452467,-0.0004917588,0.012334469,-0.04056721,-0.0074573783,0.010546781,-0.020410884,0.025340043,0.013560973,0.015042035,0.028232742,0.016812367,-0.002830506,0.01829343,0.007063971,0.014891614,-0.004055564,-0.026265707,0.012126194,0.018166149,0.009395487,0.0018571127,0.027677344,0.013769248,0.027376503,-0.0016546239,0.01614126,-0.0037431526,-0.025247477,0.007168108,-0.015921416,0.018432278,-0.014856902,-0.03198168,-0.004208877,-0.011067467,-0.0068614823,-0.052670263,0.0062887277,-0.03693398,-0.004159701,0.004422937,-0.047139425,0.016638804,0.0070871124,-0.0018889324,0.04082177,0.03661,0.01453292,0.031472564,0.05553982,-0.0013082231,0.00632344,-0.03836876,-0.015342875,0.025154911,0.0050969357,0.007121825,0.013850243,0.0113567365,0.036332298,0.071090974,-0.062297165,-0.0040382077,-0.010888119,-0.014440354,0.014498208,0.015296592,0.0061498783,0.04343677,-0.016175972,-0.004784524,0.03244451,0.038577035,-0.013815531,-0.0033671018,-0.0070581855,-0.0074342364,0.008678097,-0.040312655,-0.012739447,-0.025039203,-0.033439603,0.0010514961,-0.085392475,0.0169975,0.04056721,-0.025617743,0.008735951,0.03195854,0.008788019,0.023500286,-0.04924531,-0.056604333,0.02617314,-0.018779403,0.02455323,0.018258717,0.039896104,0.000097267,0.0125311725,0.037119113,0.026797963,0.0060862387,0.033046193,0.022701902,-0.006456504,0.008180553,-0.002735047,-0.00008171875,-0.017911592,-0.024460662,0.0520223,-0.007602013,0.014498208,-0.013618827,-0.040034954,-0.028950132,-0.019300088,0.010731913,-0.0019207521,-0.02617314,-0.005247356,-0.046422035,0.041678008,0.012635309,-0.022493627,0.020885287,-0.04170115,-0.0033960287,-0.011906349,-0.0099798115,-0.0019438937,0.004755597,0.0045183958,-0.0089905085,0.02994522,0.019843915,-0.015528008,-0.001146232,-0.03008407,0.010379004,-0.03952584,-0.0053977766,0.042071413,0.06720319,0.022748185,-0.012751018,0.008059059,-0.029019557,-0.012878296,-0.015342875,0.011593938,0.028255884,0.027677344,0.0038038993,0.0049465154,-0.0010811463,0.0071160397,0.05419761,-0.028325308,-0.002399494,-0.026936814,-0.002768313,0.021139845,0.033740442,0.04649146,0.017900022,0.0034249558,-0.006363938,-0.011478229,-0.0070524,-0.035661194,-0.010107091,0.017495044,0.027561637,-0.0036766205,0.013005575,-0.04408473,-0.020167898,-0.012612168,-0.023268871,-0.015157743,-0.025664026,0.03024606,-0.013861814,0.034666106,-0.04753283,-0.029482389,-0.028672433,0.016372677,0.0054556304,-0.028255884,0.022910176,0.033254467,0.03128743,-0.018305,0.020700155,-0.0065143583,-0.03008407,0.048134513,-0.021000994,0.013364269,-0.0039774613,0.005909784,0.0028738964,0.014139513,0.00930292,-0.003352638,0.050633803,0.013017146,0.020434026,-0.021972941,0.0037460453,-0.034943804,0.008683883,0.0028203817,0.011032755,0.028857566,0.0117270015,-0.018385995,-0.010847622,-0.04123832,-0.016708229,0.021695243,-0.027839335,-0.013329557,-0.011275741,0.029274113,-0.0003550788,0.008926869,0.010587279,0.009291349,0.007850785,-0.00988146,-0.021695243,-0.031218007,-0.01758761,0.009829392,-0.0061556636,-0.040289514,0.052670263,-0.0169975,0.009985597,0.011009612,0.02471522,-0.010569923,-0.018108295,-0.019554645,-0.0018759153,-0.033925574,-0.008261548,-0.058918495,-0.00577672,-0.023882123,-0.005111399,0.040613495,0.0015215597,-0.022007653,0.0564192,0.0033497454,-0.019068671,0.029898938,-0.000531895,-0.006641637,-0.017842168,-0.011894778,0.028001327,0.061695486,0.030917168,-0.0067342035,-0.026473982,0.026242565,0.010315365,0.016696658,0.02964438,0.014949469,0.0113104535,0.0033960287,-0.033647876,0.04258053,-0.0007730738,-0.009239281,-0.0017240486,0.03542978,0.030199777,0.009210354,-0.022181217,-0.00785657,0.0080012055,-0.018420707,0.026705397,-0.024368096,0.029019557,-0.007104469,-0.004567572,-0.016094977,0.023465574,0.018675266,-0.000011582096,-0.03913243,0.010917046,0.014208938,-0.029412964,0.0050882576,-0.023558142,-0.019554645,0.040937476,-0.028140176,0.007810287,-0.028371593,0.014995752,-0.055447254,-0.000085741405,0.025432609,-0.01641896,-0.030222919,0.001981499,-0.019138096,0.009817821,0.0014420105,0.016812367,-0.020653872,0.009459126,0.013155995,0.019855486,0.022516768,-0.026959956,-0.006641637,-0.020723296,-0.0097483955,0.02601115,-0.021579536,0.03503637,-0.010251725,0.023558142,0.016025553,-0.034804955,-0.016985929,0.014729624,0.00951698,0.027723627,0.011750143,0.011298883,0.008701239,0.019300088,-0.008411969,-0.020005906,0.036401726,-0.013260133,-0.014151083,0.01380396,-0.0016068943,-0.013075,0.0068672677,0.022609336,-0.005094043,0.013734535,-0.0034047067,0.01308657,-0.0047411337,0.008805376,0.0141048,0.039456416,-0.012924579,-0.033995,-0.035522345,0.010766625,-0.0071912496,-0.019705066,-0.025594601,-0.005189502,0.010379004,-0.0025470215,0.028764999,-0.0033960287,0.007885498,-0.042210266,0.018594269,-0.0124848895,-0.0045415373,-0.00014490614,0.009707898,-0.006728418,-0.06933221,-0.0007998313,-0.037257962,-0.0020248892,-0.021660531,0.0018339712,0.013317986,0.0073763826,-0.024900353,0.019253805,-0.0017240486,-0.0017168169,0.022435773,0.006225088,0.03126429,0.029852655,0.0048018806,-0.020815862,0.022620907,-0.023639137,0.028024469,0.008539247,0.029598096,-0.017032212,0.0065606413,0.0055221627,0.01235761,0.008330973,0.007897069,-0.022134934,0.009823606,-0.02878814,0.009192998,-0.0073474557,0.016766084,-0.013236991,-0.02617314,0.017182631,0.0077350773,-0.0039456417,-0.023176305,-0.008140055,-0.016789226,-0.012843584,-0.012519602,0.0025455751,0.01861741,-0.027538495,0.016719801,-0.03603146,0.062436014,0.023569712,0.00632344,-0.009829392,0.0064333626,-0.0051490045,0.002243288,0.019832345,0.0037373672,-0.024668938,0.004240697,-0.011738572,-0.023905264,0.011894778,0.021602677,-0.01038479,-0.010662489,0.029574955,0.010066593,-0.018305,-0.012808871,0.012866725,0.025941726,-0.0070755417,-0.028024469,-0.05331823,0.054151326,-0.008406184,0.008111128,0.02178781,0.009430199,0.008579745,0.01278573,0.014579203,-0.022771327,-0.0045791427,-0.019728208,-0.035290927,-0.0125774555,-0.016187543,0.031056017,-0.010604635,-0.0027249225,-0.008157412,-0.009812035,0.004720885,0.0075383736,-0.038577035,-0.0022982494,0.0042146626,-0.007885498,0.0020321212,0.0019728208,0.0025585922,-0.0037894358,-0.017969446,0.012751018,0.06595354,0.028394734,0.0037171182,-0.02061916,0.02122084,-0.020434026,-0.007237533,0.02890385,0.00016813813,-0.0032658572,-0.01184271,0.010355863,0.04202513,0.01220719,-0.006363938,-0.010575708,0.016384248,0.011883208,-0.0017095851,-0.001386326,-0.046699733,-0.0032311447,0.038299337,0.00893844,-0.023025885,-0.016303252,0.028232742,-0.04649146,0.05100407,-0.01729834,-0.0042349114,0.031565133,0.04345991,0.018177722,0.008926869,-0.0045791427,-0.022875464,0.0014716607,0.0066300663,0.0044663274,-0.0229796,0.0073879533,-0.017333053,-0.018397566,0.021695243,0.03746624,-0.018362854,0.005094043,0.018663695,0.042673096,0.017390907,0.0009220478,0.00029469372,-0.0143709285,0.001233013,-0.023882123,0.013387411,0.0056552268,-0.03603146,0.0058750715,-0.009968241,-0.011646006,-0.012554314,0.045681503,0.011368307,0.013965951,0.022609336,-0.0054267035,-0.0062655862,0.0039138217,-0.012970863,0.0050998284,0.038438186,-0.051050354,0.0011563564,0.027492212,-0.027978186,-0.020167898,0.013329557,-0.0051258625,-0.008840088,-0.020954711,0.0122534735,-0.032467656,0.0436219,0.009574834,-0.0024804894,0.026959956,-0.0034307411,-0.0030720464,-0.039548982,-0.0108302655,-0.017205775,-0.016060265,-0.015736282,-0.016071836,-0.026057433,-0.026659114,0.010442643,0.042511106,-0.013549402,-0.017471902,-0.00270612,0.0030575828,-0.025918582,-0.044408716,-0.007063971,0.03353217,-0.011593938,-0.010633562,-0.015146173,-0.014787477,0.004648567,-0.0004527074,0.02573345,0.024136681,-0.005698617,-0.0041192034,-0.033069335,-0.03443469,0.0046080695,-0.0073300996,-0.016118119,-0.015666857,-0.004995691,0.03575376,0.024599513,-0.011096394,0.0062424447,0.0032369301,-0.010674059,0.028140176,0.0021536145,0.0030431193,0.0058461446,-0.031079158,-0.016002411,0.0028565403,-0.022898605,0.015146173,0.0018151687,0.012774159,-0.0007933227,-0.03404128,-0.007121825,0.0037894358,0.0040700277,0.045079824,-0.014613915,-0.029736945,0.028232742,0.015331305,-0.0141857965,-0.02020261,0.004292765,0.04142345,0.0074573783,0.012843584,0.014174225,0.009129358,0.03517522,-0.006525929,0.039016724,0.023153163,0.025062345,0.0034654534,-0.047625396,0.015574291,-0.0011484015,-0.010807124,-0.025085486,0.0123923225,-0.014347787,0.01582885,-0.0000042317024,-0.00042052614,-0.047717962,-0.011431946,-0.045149248,0.0018354176,-0.0013205172,0.013908097,-0.015157743,0.0070524,-0.020711726,-0.0011925151,-0.0065664267,-0.010558352,0.021891946,-0.0025311117,0.0073300996,-0.013537832,-0.005976316,-0.0032803207,0.034990087,-0.0044721127,0.0051692533,-0.020133186,0.0072143916,-0.009031006,-0.008545033,0.007081327,0.00551927,0.008302046,0.012079911,0.012658451,-0.036378585,0.02862615,-0.008365686,0.01394281,0.011860066,-0.011148462,-0.022713473,-0.016951216,0.0070408294,-0.033902433,-0.004431615,-0.03094031,0.015528008,-0.0016011089,0.008400398,0.03607774,0.0014138067,-0.043876458,0.024969779,0.035684336,-0.0028406305,0.037419956,0.029412964,-0.029621238,-0.010859192,0.010379004,-0.008290475,0.009106217,0.0011201977,0.011536084,-0.019982764,0.015817279,-0.019219093,-0.021834092,-0.0011809444,0.030130353,-0.020110043,0.006352367,0.00013957273,-0.0035638053,-0.029297255,-0.02788562,0.011998916,-0.0063465815,0.009563263,0.017182631,0.002868111,-0.0027379396,0.029598096,0.017552897,-0.021718385,0.023569712,-0.009962455,0.025640884,0.016916504,0.016199114,-0.003951427,0.01047157,-0.014810619,0.004220448,-0.028464159,0.017576039,0.033208184,0.0311023,0.006525929,-0.02207708,0.0015533793,-0.028510442,-0.04357562,-0.028325308,-0.00072209,0.02265562,0.01496104,-0.03746624,0.004122096,0.0061267368,-0.04313593,-0.008290475,-0.0046369964,-0.007764004,-0.043807033,0.023639137,0.045264956,-0.02994522,-0.021093562,0.012704734,-0.033231325,0.021625819,0.02280604,0.025363185,-0.02716823,0.0000743514,-0.00008809173,0.0142320795,0.019705066,0.05044867,-0.010940188,-0.027075663,-0.04123832,-0.010153374,0.030338628,0.0016893363,0.047903094,0.03094031,0.012195619,0.023072168,0.022158075,-0.0075210175,-0.0032832134,-0.059983008,-0.015366017,0.00091626245,0.008215265,-0.01685865,0.007746648,0.008429325,-0.01571314,0.008730166,0.053457078,-0.0066821347,0.021776238,0.008296261,-0.008562389,-0.017784314,-0.015331305,-0.0012387984]},{"id":"interface-GatewayGuildMemberUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildMemberUpdateDispatchData\nDescription: GUILD_MEMBER_UPDATE — guild_id, roles, user, nick?, avatar?, joined_at?, ...\nProperties: avatar: string | null, communication_disabled_until: string | null, guild_id: string, joined_at: string, nick: string | null, premium_since: string | null, roles: string[], user: APIUserPartial","meta":{"url":"/docs/typedefs/GatewayGuildMemberUpdateDispatchData"},"embedding":[0.015623236,0.008807101,0.023657374,0.0181178,0.0021651767,0.001828469,-0.022825852,0.0022588694,0.01326921,0.004421118,-0.0009881638,-0.02482853,-0.021186233,-0.008514312,0.01931238,-0.005624482,-0.040873382,0.046939977,-0.043285966,0.05209307,0.0040404922,-0.008455754,0.033869863,0.009662046,-0.0245943,0.02548438,0.0044708923,0.02191235,0.0029630275,-0.04876698,0.03525183,-0.024734838,0.056871388,0.006956673,-0.024453761,0.013152095,-0.0056391214,0.0061251516,-0.0069683846,-0.028014079,-0.010165644,-0.020905154,0.005706463,0.0013051082,-0.06666226,0.038062606,-0.03070774,-0.015342158,-0.02332945,0.02855281,-0.027545616,-0.0006148575,0.0065643354,0.07429821,0.007565675,-0.0011060114,-0.0048954366,-0.018434012,-0.012144899,0.031878896,-0.026796075,-0.011699859,0.010581405,-0.014604329,-0.0013256035,-0.01579891,-0.04232562,0.026140226,0.037477028,0.0005028656,0.011090858,-0.008285937,-0.018281762,0.009298988,-0.003495904,0.010844915,-0.024336645,-0.032464474,0.012859305,-0.0099314125,0.01099131,0.047361594,-0.094114184,-0.066381186,0.031035664,-0.019722287,-0.034244634,-0.01729799,-0.010429154,0.003686217,-0.016489891,0.014627752,-0.080153994,0.0009691325,-0.028740196,-0.07069104,0.054388534,0.0073314435,-0.030824855,0.05359215,0.058042545,-0.024500607,-0.04031123,-0.04487874,0.037922066,-0.032862667,-0.030754585,0.018270051,-0.052655224,-0.011553464,-0.0599164,0.037664413,-0.000682199,0.0071382024,-0.03330771,0.015295312,0.0016161968,-0.0036305871,0.024781685,-0.028833888,-0.050219215,-0.007126491,0.0045967917,-0.048064288,-0.00917016,-0.0052526398,-0.004649494,-0.01282417,-0.069426194,-0.00015417185,0.009094035,-0.03721937,0.044972435,0.0075715305,-0.028740196,-0.021795234,-0.0070562214,-0.00573867,-0.032136552,-0.06319564,-0.002920573,0.0010254944,0.012952997,0.030356392,-0.03803918,0.027943809,-0.01997994,0.04419947,0.000015588741,0.020436691,-0.067880265,0.06090017,-0.0055571403,-0.014299829,0.00097352435,0.020530384,-0.015213331,0.000010836635,-0.043051735,0.0014837097,0.009439526,-0.065725334,-0.037500452,-0.0034695528,-0.026889767,-0.06675596,0.0039116647,0.008244946,-0.06923881,-0.010962031,0.033963557,-0.05143722,-0.020448403,-0.015834045,-0.0044445414,0.012859305,0.005463448,-0.044738203,-0.065865874,-0.030731162,0.022181716,0.02153758,-0.027006883,-0.06797396,-0.02630419,-0.0206475,-0.044012085,0.016735835,-0.010112941,-0.03258159,0.005378539,0.03354194,0.022603333,0.019394362,0.031785205,-0.052889455,0.024336645,-0.022228561,0.016454758,-0.008701697,0.044761624,-0.052420992,0.041248154,-0.01431154,0.01174085,0.021479022,0.035720292,0.00012086707,-0.020870019,-0.017239433,0.044667933,-0.011617878,-0.016056564,0.0038384674,-0.047221053,0.03173836,-0.07172166,-0.0026497429,-0.019663729,0.012589939,-0.011442205,0.05129668,0.019171841,-0.023458278,0.014358386,0.006277402,-0.013561999,-0.0005987541,-0.0083035035,0.025179878,-0.008186388,-0.010329606,-0.0154124275,-0.05017237,-0.01752051,0.009984114,0.014428656,0.026960036,0.03508787,0.049001213,-0.021818656,-0.035603177,0.01506108,0.022544775,0.00094278145,-0.016267372,0.022345677,-0.003059648,-0.017883569,0.0450427,0.040123843,0.06066594,0.021631273,-0.005513222,-0.0054195295,0.0106633855,0.00091277057,0.04415262,0.026960036,0.05822993,0.030590624,0.00010192727,-0.019370938,0.023212334,-0.017157452,0.0095156515,0.034033824,0.037406757,-0.0032031147,-0.0003303029,0.0070913564,0.023060083,0.045276932,-0.0031562685,0.011658869,0.020214172,0.020940289,0.036282446,0.02438349,-0.031316742,-0.019054726,-0.02452403,0.006880548,0.033120323,-0.042161655,0.036024794,0.020460114,0.021724964,0.035743713,0.03115278,-0.029349197,0.02698346,0.04003015,-0.011957514,0.029255504,0.0059963246,0.030098738,-0.02698346,0.021596137,0.032394204,0.016888086,-0.0013878212,-0.02161956,-0.013913346,0.005817723,-0.004233733,0.031246472,0.0025033483,-0.0102476245,-0.01453406,0.018328609,0.00009753543,-0.020834886,0.027686154,-0.037102256,-0.00013605552,0.021221368,0.041904002,0.029161813,0.040123843,0.01229715,0.011922379,-0.0047051236,-0.03361221,0.0083035035,-0.07228382,-0.028576234,-0.03101224,0.0065643354,0.011928235,0.039022956,-0.051015604,-0.0032060426,0.0055893473,0.034642827,0.054763306,-0.053873226,0.053264227,0.035650022,-0.0031533404,-0.0040551317,-0.03764099,-0.019277247,-0.016431333,0.0299582,-0.015236754,-0.03548606,0.04546432,-0.023060083,0.028412271,0.0220646,0.054388534,-0.004778321,-0.008332782,-0.00932241,-0.04614359,0.05096876,-0.011934091,-0.02071777,0.03726622,-0.03824999,-0.003247033,-0.011658869,0.023106929,0.0015898457,0.009644479,-0.012180034,0.017766453,-0.03330771,-0.039233763,-0.008988631,0.00704451,-0.041412115,-0.018328609,-0.0023715931,-0.02869335,-0.0415995,-0.013152095,-0.016501604,-0.008947641,-0.0062422673,0.05068768,0.04942283,0.00067048747,-0.0064237965,0.0017699111,-0.04778321,0.01678268,-0.046167012,-0.015470985,0.027967231,0.006306681,-0.04675259,-0.024360068,-0.044972435,-0.027545616,0.05082822,0.039022956,0.020846596,-0.027077151,0.019511478,0.005223361,0.011664725,-0.03094197,-0.022158293,0.011161127,0.0080809845,0.023950163,0.049984984,-0.023598816,0.015529543,-0.00045492133,0.021115962,-0.0054195295,0.047267903,-0.038577914,0.013807942,-0.0064764987,-0.007477838,0.040428344,-0.0327924,0.04307516,0.008883227,0.020483539,0.032698706,-0.038507644,0.01834032,-0.013655692,0.0069273943,-0.047197632,-0.089101635,0.052233607,0.029091543,0.0015195763,0.031808626,-0.01766105,0.007337299,-0.016033141,-0.0036920728,0.02981766,-0.02981766,-0.032300513,-0.022099735,0.0010891762,-0.005033048,0.00044137985,0.035368945,-0.017344836,0.030965393,-0.020542096,-0.027850116,0.03115278,0.011840398,0.073220745,-0.037968915,-0.013925058,-0.02557807,0.06858296,-0.031129356,-0.024687992,-0.041927423,0.010341317,0.0085260235,0.06708388,-0.008742688,-0.0010584332,-0.013011555,0.0013761095,-0.0097381715,0.013433172,-0.03892926,0.013409749,0.0077237813,0.019324092,-0.010944463,0.009925556,-0.008865659,0.003741847,0.024945647,0.053545304,-0.013386326,0.032253668,-0.0013900171,-0.029794237,0.062586635,0.06848927,-0.001147002,-0.01974571,0.0010049992,0.006470643,0.0054751593,0.00753054,0.029864507,-0.011600311,0.028787041,0.0012406945,-0.020413268,-0.066006415,0.009088179,-0.013140383,-0.020342998,-0.03630587,-0.000928142,-0.0048485906,0.020694345,0.0052262885,-0.041295,0.0042952187,-0.027006883,-0.0062715462,-0.022790717,0.0064764987,0.005322909,-0.044012085,-0.023833048,0.018024107,0.0014009967,0.024172682,0.0032411772,0.042911198,-0.006874692,0.032230243,0.023633951,-0.02482853,0.0030772153,-0.0067048743,0.019101573,-0.08109092,0.004608503,0.008490889,0.014007039,-0.016513316,0.025905995,0.032159973,-0.010423298,-0.012027783,-0.0067868554,-0.016197102,0.03419779,-0.027077151,-0.008713409,0.018363744,-0.002840056,-0.00071952963,0.021666406,0.022193428,-0.002269117,0.025156455,0.0040522036,0.0011762809,0.030005045,-0.024336645,0.0031240615,0.015225043,-0.009263853,0.015634947,0.010224202,-0.004286435,-0.008994486,-0.0049276436,0.029325774,-0.02042498,-0.0025897212,-0.017415106,-0.043215696,0.017625915,0.00839134,-0.019054726,-0.018258339,-0.010224202,-0.023961874,0.04590936,0.0013702539,0.012133188,0.04017069,0.019370938,-0.002943996,0.06277402,0.008894938,0.0128944395,-0.0128007475,-0.08305846,0.022720449,0.054247998,-0.044738203,0.006119296,-0.0010767325,-0.020670922,-0.022860987,0.047970597,-0.014346675,0.02235739,0.013737673,-0.0067868554,0.009205295,-0.019593459,-0.026280766,0.00066170376,-0.03115278,0.021010559,-0.0020304937,0.018773649,-0.022497928,-0.0033729326,0.03525183,0.023985298,0.029630275,0.025554648,-0.01849257,-0.009720604,0.022369102,0.029091543,-0.012285438,-0.016443046,-0.024102414,-0.00017430112,-0.011196262,0.012461112,-0.011676436,-0.034970753,0.015342158,0.004810528,0.00726703,0.041084193,0.010962031,0.055934463,-0.03108251,-0.011225541,-0.0050096246,-0.035626598,-0.01625566,-0.03583741,-0.031410433,-0.016033141,-0.038413953,-0.03632929,0.04815798,-0.03914007,0.010130509,-0.003718424,0.023294315,0.027756423,0.020471826,0.006248123,0.05560654,-0.025812302,-0.0031591963,-0.024360068,-0.010019249,0.007729637,-0.030754585,-0.040826537,0.025296994,-0.020261018,0.041974273,-0.020342998,-0.012683632,0.051858835,-0.024102414,-0.006248123,-0.018434012,-0.017801588,0.019581746,0.028927581,0.005598131,0.020741193,-0.012636785,0.023071796,-0.023669085,0.04738502,0.025531225,0.03808603,0.041997693,0.011775984,0.024477184,-0.015564678,0.011980937,-0.029138388,0.005577636,0.023610527,0.012461112,0.026749229,-0.02557807,0.0002022076,0.035720292,-0.02496907,0.03586083,-0.017251145,0.030614046,-0.005483943,0.0055190776,0.03265186,0.027077151,-0.03033297,-0.0025311634,0.020659212,0.03356536,-0.010540414,0.012250303,0.00017796099,-0.0051472355,0.0041429684,0.007917022,-0.009685469,-0.0023276748,-0.0043567047,0.004069771,0.016290795,0.010095375,-0.0118111195,-0.00065035815,0.013222364,-0.069566734,0.007940445,0.024898801,0.01595116,-0.04600305,0.025109608,0.015037658,0.0067341533,0.016466469,0.028810466,0.012027783,0.007788195,-0.012636785,-0.012835882,-0.0074192802,0.017239433,-0.006230556,-0.023212334,-0.014416944,0.002892758,0.008215667,0.0015634948,-0.0050154803,0.012707055,0.017883569,0.019078149,-0.010394019,0.029302351,0.018129513,-0.0046026474,-0.012273726,-0.0013534185,-0.015002523,-0.007284597,0.0030655037,-0.018539418,-0.028787041,0.027381653,-0.03965538,0.0065701916,-0.022322254,-0.007963869,-0.006716586,-0.042466156,0.0105052795,0.029466312,-0.004286435,0.052748915,0.036727488,0.0013980689,0.04063915,0.057948854,-0.026725804,0.013292633,0.0043040025,-0.011389503,0.02191235,-0.0069683846,-0.021783521,-0.011243109,-0.012589939,0.020741193,0.028505964,-0.034080673,-0.0025853293,-0.022849275,0.00038611586,0.001884099,-0.0006108316,-0.01974571,0.009421959,-0.035439216,0.009310699,0.0071382024,0.0005888724,-0.023306027,-0.037594143,0.005273135,-0.020928578,0.01251967,-0.032323938,0.022369102,-0.014545771,-0.018715091,0.010552126,-0.07579729,0.0362356,0.057058774,-0.03679776,0.014358386,0.0017391683,-0.008549447,0.03199601,-0.00074185483,-0.044386856,0.016466469,-0.03347167,-0.01162959,-0.023833048,0.059401087,-0.010569693,-0.010136365,0.016220527,0.030543778,0.0024184394,-0.007829186,0.019054726,-0.033260863,0.0015913097,-0.00030486684,-0.02153758,0.0067282976,-0.017696183,0.03398698,-0.023106929,0.018152935,-0.025109608,-0.030660894,0.0032616726,0.0091643045,0.012016072,-0.012835882,0.017016912,0.012871017,-0.046846285,0.020296153,0.01967544,-0.012765612,0.014498925,-0.0013863572,0.009363401,-0.003384644,0.032698706,-0.02385647,0.03508787,-0.008930073,-0.0043537766,0.027779847,0.003220682,-0.018024107,-0.010241769,-0.03787522,0.021596137,-0.013749384,-0.01364398,0.03405725,0.038577914,0.010622395,-0.016431333,0.013316057,-0.01878536,0.0037272074,-0.013608846,0.015154773,0.027756423,-0.009732315,0.011904812,-0.02035471,-0.014475502,-0.007799906,0.054107457,-0.023212334,0.004347921,0.0023115713,0.013386326,0.005109173,0.036399562,0.06478841,0.0007403909,0.019558324,-0.011916524,-0.01282417,-0.0067809997,0.009140881,-0.018750226,0.017649338,-0.0075832424,0.0116530135,0.0036364428,-0.001610341,0.00014355824,0.019124996,-0.016653854,-0.03398698,-0.017637625,-0.0026307118,-0.008408908,0.012578228,-0.05621554,-0.042372465,-0.032768976,-0.00041100295,0.027264537,-0.006148575,0.019429496,0.005384395,0.060853325,-0.007372434,-0.0031562685,-0.02609338,-0.022029465,0.035064444,0.0016952499,0.0475724,-0.009053044,-0.008344495,0.02184208,-0.00928142,-0.0021607848,0.0013512225,0.034783367,0.016560161,-0.010733655,0.003905809,0.031550974,-0.010675097,-0.02438349,-0.013234075,0.01121383,-0.009351689,0.004224949,0.0031796915,-0.009761594,-0.037242796,0.007126491,0.0020524529,0.016747547,-0.042395886,-0.008438187,0.038437378,0.020085344,0.020682635,-0.030824855,0.01596287,-0.006722442,0.039374303,-0.040896807,-0.029091543,-0.02124479,0.0052321446,-0.007899455,-0.05715247,0.030590624,-0.037008565,0.039866187,0.020061921,0.036469832,-0.013737673,-0.027030306,-0.041576076,-0.02548438,-0.022041177,-0.021443887,-0.048579596,-0.03703199,-0.005407818,0.0136908265,0.00475197,-0.0070035197,0.0061017284,0.053779535,0.020342998,-0.032089707,0.04040492,0.020155614,0.0015781343,-0.03063747,-0.024032144,-0.0123205725,0.078326985,-0.006652172,0.022275409,-0.04316885,-0.0062247002,-0.010780501,0.01431154,0.029302351,0.018703379,0.019370938,-0.0053668274,-0.02609338,0.046869706,0.013843077,0.0031357731,-0.013081825,0.019171841,0.0045177387,-0.002267653,-0.01062825,-0.008004859,-0.003305591,-0.019160131,0.018879052,-0.02377449,0.033448245,0.0056684003,0.031714935,-0.0037154958,-0.005325837,-0.018176358,0.0024242953,-0.029466312,-0.015646659,-0.011547609,-0.025601495,0.013187229,-0.0076593673,0.005407818,0.065865874,-0.0152836,0.024102414,-0.07284597,0.011090858,-0.051577758,0.00093765766,-0.010569693,0.003085999,-0.025437532,0.026187073,0.020460114,0.0022793645,0.028857311,0.01342146,0.010757078,0.047221053,0.027405076,0.0043332814,-0.026960036,-0.03162124,-0.011600311,0.00006720429,0.0020641645,0.048064288,-0.013234075,0.011752562,0.01076879,0.021432174,-0.00077808753,0.0009530291,0.014252982,-0.00507111,-0.007185049,0.02072948,-0.009187727,-0.002103691,0.01304669,0.0062071327,-0.01326921,-0.035673447,0.0027917458,-0.021935772,-0.009234574,0.0038677463,0.029185236,0.019242112,0.018551128,0.025133032,0.019499766,-0.002324747,0.010042672,0.0050096246,-0.051671453,0.03145728,0.021139385,0.045136396,-0.022158293,-0.015892603,-0.0034285625,0.012215168,-0.019815978,-0.03583741,0.007717925,0.0062949695,0.007987292,0.0035163993,0.02951316,0.03958511,0.008022427,-0.039257187,0.023423143,0.0008534808,-0.03632929,0.001010855,0.022111446,-0.022415947,-0.03094197,-0.018961033,-0.010183211,0.022579908,0.013597134,-0.0033173026,0.010762934,-0.008701697,-0.013058402,0.020237595,0.006640461,-0.037922066,0.02109254,0.009257997,0.014030462,0.0019602242,0.013761096,-0.037078835,0.009802585,-0.02862308,0.022322254,0.025437532,0.0009588849,0.014545771,0.0027697866,0.0070210868,0.019968228,0.010411587,0.023060083,-0.044105776,0.039631955,-0.03508787,-0.011178695,-0.011348512,-0.012039495,0.02951316,-0.030918548,0.03981934,0.020940289,-0.029630275,-0.019722287,0.009925556,-0.03176178,0.0030391526,-0.017825011,-0.010604828,-0.004116617,-0.007349011,0.008514312,-0.013620557,0.0592137,-0.005735742,0.018914187,-0.007343155,0.022111446,0.004740258,0.008578726,0.0090589,0.0016879302,-0.009375113,-0.0029820588,0.008438187,-0.003191403,0.000023411705,0.022181716,-0.031550974,-0.006382806,0.011330945,0.019253822,-0.03012216,-0.0034197788,0.017274568,0.0062129884,0.0062422673,0.0015795982,-0.02496907,0.0387653,-0.038484223,0.026632113,0.04225535,0.029466312,0.021654695,0.005372683,0.0073607224,-0.018059243,-0.013480018,0.0036715774,-0.026046535,0.010657529,-0.032909516,0.054857,-0.016489891,-0.01818807,-0.0062247002,-0.04419947,-0.004915932,0.02571861,-0.04494901,-0.024102414,-0.014569194,-0.0042161657,0.002043669,0.041177884,-0.02199433,0.010118797,-0.030215854,0.0038179723,0.04740844,-0.01625566,-0.019968228,0.0036188755,0.0036452266,-0.009685469,-0.015939448,0.03607164,0.021104252,0.008537735,0.0025194518,-0.0031035664,0.062258713,0.009094035,-0.003083071,-0.010581405,0.0012077558,0.016583584,0.020846596,0.00039160566,-0.03330771,0.00082127395,0.035298675,0.017450241,0.0034285625,-0.016864663,0.039702225,-0.0718622,0.04731475,0.012062918,-0.0058235787,0.0305672,-0.0045470176,0.014428656,-0.004459181,-0.012472823,0.02548438,-0.0070796446,0.00077662355,-0.017251145,0.0046319263,-0.013152095,0.017403394,-0.010903473,0.019769132,0.040592305,-0.014416944,0.028669925,0.026678959,0.016806105,0.016981779,0.026936613,-0.0050476873,-0.009539074,-0.017415106,0.009749883,-0.013292633,0.014920542,-0.037078835,0.008807101,-0.029185236,-0.00823909,0.0053404765,0.03609506,0.021514157,0.007366578,0.0073841456,-0.022650179,-0.021010559,0.01121383,-0.011717427,-0.008455754,0.005240928,-0.043496776,0.011243109,0.04560486,-0.03988961,0.0049539944,0.004119545,0.007788195,-0.005100389,-0.037523873,0.010798069,-0.032698706,0.009550787,-0.0032060426,-0.009644479,-0.0007455147,-0.019171841,0.0066697397,-0.0051443074,-0.0058587133,-0.040967077,0.009047189,-0.0012114156,-0.03958511,-0.06324248,0.012402554,-0.03274555,0.02431322,-0.012144899,0.001310964,0.004558729,-0.015201619,-0.0075715305,-0.025788879,-0.0028517675,0.010616539,0.012507958,0.009416103,-0.016911509,0.005401962,0.007829186,0.007618377,-0.012425977,0.014721445,0.018387167,0.0071967603,-0.019640304,-0.029911352,0.015599812,-0.018691668,-0.0163962,-0.021443887,-0.024266375,-0.003914593,0.032042857,0.000980844,-0.028646503,0.0010020713,-0.005876281,0.010042672,-0.01260165,0.0012626537,-0.009843576,-0.0026746301,-0.0028839745,-0.0110323,-0.01707547,0.020928578,0.0022735088,-0.014674598,0.00671073,-0.024687992,0.0142646935,-0.030965393,-0.010218346,0.01431154,-0.0024433264,-0.006605326,0.03419779,0.030145584,0.00897692,-0.017052047,0.017461952,0.05560654,0.008748543,0.016794393,0.020870019,0.023270892,0.02609338,0.0054224576,0.041880578,0.009773306,0.007782339,-0.00031145458,-0.061837096,-0.01668899,0.012355708,0.020073634,-0.0057503814,0.013339479,0.008039993,0.03412752,0.0070269424,-0.011682292,-0.03817972,-0.0151899075,-0.011904812,-0.003899953,-0.0091643045,-0.010235913,-0.006798567,0.010265192,0.0014310076,-0.020518672,0.009896277,-0.003768198,0.02392674,0.03258159,-0.017016912,-0.014358386,0.006915683,-0.00019013004,0.034549136,0.007835041,-0.0037330633,-0.025226723,0.0011243108,0.017707895,-0.020542096,-0.015517832,-0.0074427035,0.06099386,0.0040082852,0.031855475,-0.011775984,0.032534745,0.012660208,-0.01080978,-0.00207734,-0.008789534,-0.006499922,-0.007425136,0.0049247155,-0.016197102,-0.006078305,0.004690484,0.016888086,0.005577636,-0.009621056,0.04255985,-0.00095449307,-0.04323912,0.041786887,0.047525555,0.007067933,0.031644665,0.009082323,-0.052983146,-0.0305672,-0.0030479364,0.013280922,0.012191745,0.00096254476,-0.009943124,-0.025367264,0.03108251,-0.001557639,-0.023188911,0.0024696775,0.009076468,-0.00024429604,0.00093619374,-0.0042483723,0.025015917,-0.010241769,-0.0028063853,0.023212334,-0.00009817591,-0.0076066656,-0.014639464,0.02482853,0.01032375,0.024336645,0.009269709,0.007067933,0.025695186,0.0017435602,0.032698706,0.022697024,0.017930415,-0.0012714374,0.047923747,0.007103068,0.0034490577,-0.0067048743,0.03412752,0.013351191,0.0019250895,0.019043015,0.0043625603,0.0071440586,-0.023575393,-0.03419779,-0.025109608,-0.010159788,0.0014266158,-0.0046026474,-0.032136552,0.019206977,0.017567357,-0.022720449,-0.031316742,0.009621056,-0.01946463,-0.028669925,0.021490732,0.019124996,-0.0066755954,-0.039702225,0.019078149,-0.049750753,0.015213331,0.02937262,0.010071951,-0.014112443,0.02906812,-0.007343155,0.009433671,0.009439526,0.030988816,-0.010938607,-0.0245943,-0.04429316,-0.015705217,-0.0035017598,0.012191745,0.06900458,0.018773649,-0.012566516,0.034385175,0.008789534,0.012789035,-0.0139484815,-0.02557807,-0.0080165705,0.02438349,-0.004450397,0.009890422,-0.016302507,0.0065584797,-0.0305672,0.00972646,0.0378518,-0.028529387,0.034314904,-0.0074719824,0.012414265,-0.017567357,-0.011939947,0.0044035506]},{"id":"interface-GatewayGuildRoleCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleCreateDispatchData\nDescription: GUILD_ROLE_CREATE — guild_id, role\nProperties: guild_id: string, role: APIRole","meta":{"url":"/docs/typedefs/GatewayGuildRoleCreateDispatchData"},"embedding":[0.017818429,0.035203844,-0.0009668338,0.008920039,0.01434351,-0.0009898375,-0.052091297,0.0046873507,0.037823565,-0.015545118,0.010300264,-0.010121646,0.014051227,-0.011117574,0.030332465,-0.023664085,-0.05061906,0.030787127,0.009845601,0.07170673,-0.006809108,-0.028297309,0.020578878,0.0015642545,-0.03470588,0.028751971,0.024681663,0.038148325,-0.0030906205,-0.02834061,0.058413267,-0.026954973,0.03321199,-0.022581557,0.02349088,-0.007777971,-0.0084707895,0.007339547,-0.022776412,-0.019550474,-0.02643536,-0.0279942,0.022668159,-0.013304282,-0.045942534,0.018651975,0.015902352,0.017450368,0.01829474,-0.0033233643,-0.024400204,-0.0069823125,-0.019117463,0.07538732,0.0146141425,-0.0037509631,-0.024270302,0.005921434,-0.047847785,0.05061906,-0.008140619,-0.03840813,0.010235312,0.012438259,0.026543612,0.0033260705,-0.06183406,0.032562476,0.016670948,0.03416462,0.00097427616,-0.042781547,-0.020492274,0.017136434,-0.007750908,-0.019582951,-0.023772338,-0.009223147,0.007642655,-0.051701587,-0.026045648,0.04693846,-0.06863234,-0.06438883,0.050792262,-0.02346923,-0.015047153,-0.027712744,-0.0065709515,-0.007274595,-0.02567759,-0.009223147,-0.06079483,0.013813071,-0.022278449,-0.044188835,0.061227843,0.024443505,-0.01786173,0.05546879,0.05520898,-0.0261106,-0.03392646,-0.027496237,0.0037861455,0.013499137,-0.027474588,0.03477083,0.0032259366,-0.0032990072,-0.08629922,-0.0011650719,0.024010494,-0.02574254,-0.024400204,0.033017136,0.01192947,-0.06295989,0.02066548,-0.013293457,-0.04137426,-0.017093133,0.0005287478,-0.054516163,-0.032692377,-0.004898444,-0.013477487,-0.051571686,-0.06183406,0.0075127515,0.0018890132,0.0016982175,0.056075007,-0.010181186,-0.027452936,-0.013271806,-0.025829144,-0.016172985,-0.008833437,-0.0371524,-0.004773953,-0.002784806,0.027084878,0.06105464,-0.061747458,0.009482955,-0.01878188,0.0098023005,-0.017320465,0.07092731,-0.07291916,0.03985872,-0.006229955,-0.023880592,-0.020643828,-0.020914461,-0.011139224,0.0005111567,-0.005748229,-0.019734506,0.010792815,-0.038278226,0.0006109523,0.026002347,-0.028102454,-0.050445855,0.0012104028,0.010381454,-0.057200834,0.030051006,0.026695166,-0.007507339,-0.045639426,0.021477377,-0.019258192,0.04016183,-0.02087116,-0.027777696,-0.0060350993,-0.019810282,0.018998384,-0.018121537,-0.02307952,-0.05174489,-0.02753954,0.006744156,-0.035939965,-0.017926682,0.008048603,0.0007598001,-0.029921103,0.018911783,0.042716596,0.010587134,0.019453047,-0.022798061,0.03836483,0.00036095578,0.041179404,-0.007832098,0.029293235,-0.037910167,0.02349088,0.0076805437,0.0030256687,-0.011767091,-0.011788742,-0.042002127,-0.02909838,-0.0055344296,0.032367617,-0.045293014,-0.0316315,0.009093244,-0.041634068,0.0633929,-0.049969543,0.015057979,0.030895378,-0.0035750521,-0.0076697185,0.022927966,-0.0123841325,-0.060188614,0.028838575,0.019734506,-0.022516605,0.00019553181,-0.0028172818,0.009060768,-0.018792704,-0.003572346,-0.0068415836,-0.07222634,-0.0013572208,0.028968478,0.0041406737,0.024833217,0.025850793,0.018218964,-0.036416277,-0.03422957,-0.022927966,-0.011853693,0.02567759,-0.007198818,0.045466222,0.024140397,-0.003951231,0.04174232,0.03503064,0.04607244,-0.009179846,0.0061325273,0.0047577154,-0.020264944,0.021314997,0.008849675,0.011788742,0.05178819,0.018879307,-0.043496016,0.003363959,0.031025283,-0.0055912626,-0.006884885,0.0029038843,-0.0055236043,-0.026283806,0.0037509631,0.0026034825,-0.01790503,0.06547136,-0.04399398,-0.021434076,0.0047333585,0.0336017,0.013347583,0.009753587,-0.014083703,-0.011085098,-0.008113556,0.005131188,0.04169902,-0.028080804,0.06975817,0.029488092,0.0036102345,0.0083950125,0.0186195,-0.019485522,0.00030479959,0.014451763,-0.024984771,0.020860335,-0.0027929249,0.027756045,-0.026283806,0.04247844,0.0336017,0.024227,0.03765036,-0.020210817,-0.024660012,-0.004487083,-0.016216286,0.015209533,-0.0446435,0.029834501,-0.010419342,0.010359803,0.029228285,-0.001073057,0.011420681,-0.006311144,0.010083758,0.03020256,0.005461359,-0.0069552492,0.06365271,0.013228505,-0.01921489,0.016010605,-0.025071373,0.0058835456,-0.043322813,-0.020946937,-0.018900957,-0.0051393067,0.045466222,0.04581263,-0.05551209,-0.0085086785,0.017645223,0.0483674,0.023577483,-0.017558621,0.052394405,0.072183035,-0.0074477997,0.015739972,-0.010473468,-0.023902241,-0.02303622,-0.00016728457,-0.013196029,0.002155586,0.014624967,-0.00076453615,0.032562476,0.0029174157,0.044513594,-0.02015669,-0.0019201359,-0.028881876,-0.04698176,0.029163333,-0.031111885,-0.00062346907,0.041482512,-0.06954166,-0.026240503,-0.016064731,0.022689808,0.017093133,0.010484294,0.009872665,0.004495202,-0.005764467,-0.023988843,0.00377532,0.035961617,-0.1079065,-0.017926682,0.0013200089,-0.02574254,-0.030115958,-0.04615904,0.01602143,-0.0139862755,-0.023555832,0.021109316,0.025071373,-0.013228505,0.01608638,-0.010830703,-0.029747898,0.049320024,-0.040010273,-0.022776412,0.03762871,0.00873601,0.002447869,-0.008903801,-0.009791476,-0.039339107,0.05616161,0.020946937,0.02535283,0.0013626334,0.01747202,0.018316392,0.035182193,0.005569612,-0.04888701,0.0015656076,0.008081079,0.016281238,0.024768265,-0.030007705,0.011767091,0.023793988,0.03128509,0.021639755,0.03477083,-0.03282228,0.019507173,-0.021704707,-0.04169902,0.0044410755,0.0026481368,0.0045574475,-0.020925287,0.0033125388,0.054472864,-0.034078013,-0.0024018614,-0.0050932993,-0.030722175,-0.034900736,-0.057893652,0.035593554,0.053606838,-0.008459965,0.022213496,0.009753587,-0.012135151,-0.055425487,0.02034072,-0.002289549,-0.031155186,-0.010641261,-0.01653022,0.015426039,-0.013661517,0.015945652,0.07153352,-0.058326665,0.054213054,-0.024811566,-0.01604308,0.014386811,-0.0051203626,0.03730395,0.0107441,-0.02204029,-0.0073882607,0.05330373,-0.04550952,0.020362372,-0.004779366,-0.005142013,0.01231918,0.052697513,-0.054689366,0.021325823,-0.014765697,-0.026132252,-0.015447689,-0.004368005,-0.020936113,-0.0043842425,0.027301382,0.0052800355,-0.004294934,0.010219074,-0.029791199,0.04243514,0.019918535,0.02650031,-0.008616932,0.022094417,-0.03542035,-0.031176837,0.05178819,0.07876481,-0.016876629,-0.020492274,-0.03165315,0.02199699,0.018684452,0.021109316,0.027301382,-0.008828024,0.0122650545,-0.00010588487,0.0035804647,-0.056204908,-0.032627426,0.03241092,-0.004909269,-0.030981982,-0.007068915,-0.013867198,0.0042651645,0.013098601,0.0018308272,-0.007696782,-0.027301382,0.010641261,0.0092935115,-0.010403104,0.016010605,-0.042240284,-0.034922387,-0.007507339,-0.044903304,0.057633847,0.006911948,0.0029498916,-0.017764302,0.02314447,0.028167406,0.005629151,-0.009001229,0.0144950645,-0.0003575729,-0.06395581,0.005888958,-0.015804924,0.042002127,-0.006457286,0.018771054,0.052697513,-0.011886169,-0.033341896,0.01730964,0.025417782,0.027691092,-0.024270302,-0.0053909947,0.014040402,0.0032990072,0.0049769273,0.003707662,-0.0028254008,-0.0013896967,-0.0098401895,0.02307952,0.014440938,0.0035534017,-0.024898168,0.00018301507,0.0025195864,-0.0066737914,0.0135207875,-0.017601922,-0.046115737,0.021401599,-0.021899562,0.016064731,-0.0031014457,-0.018868482,-0.029834501,-0.04927672,0.015934827,-0.011095922,0.00511495,-0.016432792,-0.0409196,-0.017991632,0.027366335,0.042954754,0.013390885,-0.0042245695,0.013250155,-0.012026898,0.035312098,0.034402773,-0.015490991,-0.0279942,-0.09543576,0.00912572,0.040031925,-0.058283363,0.01935562,0.012275879,-0.015328611,0.0049769273,0.0055641993,-0.03985872,0.018132363,0.026695166,-0.015393564,-0.0027739806,-0.037390552,0.010099996,0.005878133,-0.026413709,0.0205031,-0.010673736,0.018392168,-0.055815198,-0.018143186,0.023057869,-0.010338153,0.060145315,0.028405562,0.013011999,-0.0029986054,0.01712561,0.018955084,-0.030007705,-0.0261106,-0.004478964,-0.032952186,-0.028232358,0.018738577,-0.013185204,-0.034575976,0.028470514,-0.0123841325,-0.009169021,0.010440993,-0.013672342,0.01880353,-0.05914939,-0.012200102,-0.023166122,-0.017775128,-0.0063869213,-0.040010273,-0.028773623,-0.028578768,-0.02381564,-0.054775972,0.022841362,0.013434186,0.0038456845,-0.008032366,-0.010365216,-0.010311089,-0.006819933,-0.009623683,0.05806686,-0.008524916,0.02643536,0.013488312,-0.004595336,0.02232175,-0.048280794,-0.020741256,0.030051006,-0.024313603,0.05776375,-0.0005375433,-0.027452936,0.039772116,0.0015304255,0.02232175,-0.023707386,-0.027496237,0.018511247,0.021206744,0.03390481,0.014679094,0.0017821135,0.039642215,-0.022581557,0.019615427,0.0115614105,0.027907599,0.020535577,0.022516605,-0.0023883297,0.015242009,-0.016703423,-0.028254008,0.02689002,0.0035101005,0.013953799,-0.026305456,-0.010798227,-0.010408517,0.051528383,-0.03422957,0.044989906,-0.030505668,0.031025283,-0.02314447,0.00395935,0.021358298,0.018565373,0.0018172957,-0.0082759345,0.039382406,0.0279942,0.004598042,-0.017829254,0.0010392279,-0.006581777,0.02204029,0.033038788,-0.035225496,-0.012048548,-0.015350262,-0.008259697,0.040854648,0.0096832225,0.00959662,-0.017028183,-0.0064897616,-0.051311877,-0.008081079,-0.00017810985,0.025894094,-0.012936222,-0.012611464,0.020232469,0.016335363,0.018716928,0.05135518,-0.006744156,-0.027236432,-0.012752192,0.018197313,0.016660122,-0.0033477212,-0.025547685,-0.027323034,-0.0031068583,-0.00035791117,0.033493448,0.019864408,-0.03165315,-0.00082069234,0.025764192,0.03953396,0.016172985,0.023729037,0.014040402,-0.002299021,-0.011453157,-0.0031772228,-0.032627426,-0.015501816,0.007783384,0.01231918,0.008795548,0.009120307,-0.025785843,0.0039701755,-0.015480165,-0.0043165847,-0.015685845,-0.0391226,0.0014465294,0.010305677,-0.03981542,0.06599097,0.010013394,0.0028551703,0.019409746,0.059322592,-0.030808777,-0.009553319,-0.012492386,-0.0057319915,0.011528934,-0.010403104,-0.0049444516,-0.01659517,-0.009591208,-0.014202781,0.047934387,-0.033038788,0.022733111,-0.00288494,-0.001576433,-0.0021366416,-0.015025503,-0.03241092,-0.011723789,-0.019799456,0.013228505,0.01714726,0.0046873507,-0.019485522,0.0067549814,-0.012427433,-0.03461928,0.03238927,-0.0023937423,-0.017060658,-0.020178342,-0.009537081,-0.010083758,-0.08270522,-0.0023937423,0.049666435,0.010863179,0.010657499,0.002784806,0.03132839,0.02792925,-0.023945542,-0.039598912,0.010706212,-0.058413267,0.0017956451,0.018348867,0.0447301,0.003875454,-0.014863124,0.015014678,0.019279843,0.014679094,0.014798172,0.000098949924,0.012936222,-0.010511357,-0.0055966754,-0.0073016584,0.0012131091,-0.022949615,0.041547466,-0.009104069,0.038451433,-0.01602143,-0.030310813,-0.015588419,-0.028405562,0.041915525,0.012557337,0.012979523,0.0447301,-0.01822979,0.008600693,0.021087665,-0.0005903166,-0.00084166636,-0.02232175,0.01025155,0.011810392,0.020351546,0.0014045815,0.031479944,0.018078236,0.00047360646,0.009082419,0.00042759898,0.007951176,0.022733111,-0.01528531,0.0142244315,-0.026327107,-0.061011337,0.05356354,0.02068713,-0.012524861,-0.0018132362,0.017840078,-0.04503321,-0.00037651713,0.009223147,-0.0069173607,0.0006728595,0.0069931378,0.03500899,-0.007198818,0.016584344,-0.02275476,0.02717148,-0.032670725,0.010646673,0.002909297,0.033796556,0.012210928,0.023317676,0.028470514,-0.0026210735,0.019431397,-0.009796888,-0.010944368,-0.0032475872,-0.015047153,-0.0101541225,-0.008010715,0.0011495105,0.010186599,-0.0045574475,-0.011139224,0.004703589,-0.018392168,-0.016692597,-0.016735898,-0.03873289,-0.02109849,-0.019702028,-0.006668379,-0.027972551,-0.0110526215,-0.007074327,0.038494732,0.0036697735,-0.03057062,0.013477487,0.005201552,0.04022678,-0.025894094,0.009239386,-0.011886169,-0.013704818,0.030094307,0.014094529,0.013390885,-0.013455836,-0.011777916,0.013867198,0.00062786683,0.032129463,-0.013856372,0.0069552492,0.005759055,-0.015490991,-0.008638582,0.03422957,-0.027193129,-0.032973833,0.0025642407,0.02574254,0.009342226,0.0024532815,-0.018684452,0.0072475323,-0.048324097,-0.043907378,0.0008010715,0.01788338,-0.01245991,-0.0058348314,0.02981285,0.02027577,0.013185204,-0.0025628875,-0.0100350445,0.006668379,0.00804319,-0.04771788,-0.015198708,-0.039793767,-0.017179737,0.026716817,-0.038884442,0.040464938,-0.00017608011,0.0021082254,0.008232634,0.04763128,-0.007204231,0.0022381288,-0.04607244,-0.030613922,0.008108143,0.004825373,-0.0410062,-0.06837253,-0.01802411,0.039295804,0.0021258164,-0.010408517,-0.035052292,0.033017136,0.004738771,-0.016584344,0.011058034,0.0260673,-0.022992916,-0.009553319,0.0044329567,0.007485688,0.052697513,-0.01025155,0.042629994,-0.05512238,0.0022597795,-0.02756119,-0.0065493006,0.038213275,0.015144582,0.007095978,0.009158196,-0.024789914,0.04693846,0.011399031,0.0024803446,-0.03578841,0.015988953,-0.006836171,-0.014798172,0.0042543393,0.000034442186,-0.004790191,0.008459965,0.024660012,-0.010846941,-0.012676415,0.0058673075,0.0035534017,0.014744046,-0.008833437,0.018099885,0.008454552,-0.073611975,-0.004730652,0.0032719441,-0.040464938,-0.014570841,-0.010256963,-0.0013991689,0.032670725,-0.02756119,0.005694103,-0.052784115,0.010533008,-0.033623353,-0.013780595,0.018154012,-0.013369234,-0.0022002403,-0.007355785,0.034099665,-0.014852298,0.037845217,0.018565373,-0.0028578767,0.03160985,0.018110711,0.027236432,-0.021152617,-0.03015926,0.0023775045,0.016551869,0.029834501,0.050792262,0.001329481,0.004346354,-0.007929525,0.0059593227,-0.027019925,-0.0057265786,0.034749184,0.019972662,0.021477377,0.00941259,0.009499192,0.0088172,0.010381454,0.032692377,-0.007496514,-0.015610069,0.017028183,-0.018608674,0.0018145894,0.017969983,-0.013098601,0.0067712194,0.045855932,-0.00021650581,0.013899673,0.009282687,0.007940351,0.0012733248,-0.012156801,0.03091703,0.0094504785,0.016876629,-0.015664196,-0.004906563,-0.026088951,0.0022435414,-0.019734506,-0.01151811,-0.00027925867,-0.0019282548,0.00017421952,0.020470625,-0.012416609,0.059192687,0.005547961,-0.04503321,0.0176344,-0.003564227,-0.036351327,-0.0017293402,0.036351327,-0.0072367066,-0.017645223,-0.012005247,-0.04020513,0.017991632,-0.0015168939,0.0048361984,0.032865584,-0.0058402442,-0.011334079,0.006939011,0.037390552,-0.013715643,0.017937506,0.034792483,0.021563979,0.01976698,-0.014289384,-0.0034478551,-0.009055356,-0.028578768,0.023988843,0.028903525,0.017374592,-0.0185762,-0.023967193,0.01691993,0.0087847235,0.015577593,0.027366335,-0.023317676,0.05291402,-0.018933434,-0.027106527,-0.017396241,0.022798061,0.027084878,-0.0057915305,0.059365895,0.008113556,-0.0064193974,-0.032584123,0.01358574,-0.009261036,0.011896994,0.0004688704,0.0035155131,0.008367949,-0.006592602,0.014841474,-0.002809163,0.06295989,-0.009358464,-0.018381344,0.0016143215,0.0067387433,0.0052800355,0.005109537,0.00091406045,-0.017158085,-0.010733276,-0.0011718377,-0.0008464024,0.0039782943,0.013683167,0.009196084,-0.025764192,-0.016421966,0.014841474,0.03392646,-0.020578878,0.008524916,0.0027171478,-0.013867198,0.00930975,0.009223147,-0.032952186,0.028838575,-0.02717148,0.008947102,0.021683058,-0.0146141425,0.02868702,0.006392334,0.00035994092,-0.014884775,0.0076047666,0.035138894,-0.038602985,-0.0023098465,-0.00922856,0.022689808,-0.0022205377,0.0016332658,-0.0024059208,-0.038105022,-0.007095978,0.0019255485,-0.049753036,-0.020470625,-0.0132826315,-0.0316748,0.011918645,0.028578768,-0.03054897,-0.0033829033,-0.018727753,-0.0061325273,0.037109096,0.00041745027,0.005336868,-0.03124179,0.0032069923,-0.01636784,0.0028876462,-0.00015062377,0.026002347,0.0036264723,0.015729148,0.015967304,0.03438112,0.01452754,-0.011160875,-0.009104069,0.013856372,0.02567759,0.011864519,0.032930534,-0.047371473,-0.0048524365,0.029747898,-0.00092285604,-0.006029687,0.034597628,0.047414772,-0.059885506,0.058629774,0.022051116,-0.014754871,0.0037699074,-0.017017357,0.026565263,-0.016183808,-0.023317676,0.010543833,0.0061866534,0.021509852,0.004343648,-0.00006317572,-0.021758834,0.02530953,-0.004882206,0.034402773,0.023296025,0.013185204,0.003783439,0.025461083,0.010608785,0.0108198775,0.029964404,0.025049722,-0.006376096,-0.025157975,0.013715643,-0.0038971046,0.0023788577,-0.042305235,0.022624858,-0.033363547,-0.0062949066,-0.0015953772,0.014289384,0.022559905,0.018532898,0.010543833,-0.0261106,-0.009239386,0.0042164507,-0.022408351,0.03990202,0.029206634,-0.023404278,0.012135151,0.024833217,-0.03578841,0.011085098,-0.0008186626,0.0055208984,-0.020178342,-0.007951176,0.011528934,-0.016443616,0.012340832,-0.0034613865,-0.008876738,0.013564089,-0.01923654,0.014830648,0.014895599,-0.0043301163,-0.0135207875,-0.0026954974,-0.036243074,-0.039685514,-0.046895158,0.007139279,-0.026630215,0.027626142,-0.00165221,0.0062894938,-0.020221643,-0.0036697735,-0.0036372975,-0.048454,-0.017342115,-0.007323309,0.017645223,0.009358464,-0.0067549814,-0.019106638,-0.022213496,0.0055154855,0.009477542,0.009980918,0.01841382,0.02275476,-0.040876295,-0.010733276,0.0032773567,-0.012676415,-0.009239386,0.0008991757,-0.0049011502,0.022343399,0.040746395,-0.029531393,0.027041575,-0.015599243,-0.0044410755,-0.008892976,0.009131133,0.00017810985,0.015036329,-0.016064731,-0.005385582,-0.052394405,-0.01565337,0.0077400827,-0.009374701,-0.027387986,0.01284962,-0.01935562,0.020199992,-0.015620895,0.010094583,0.0031041522,-0.014213607,-0.025894094,0.021921214,0.03645958,-0.02682507,-0.00576988,0.022927966,0.04685186,0.014873949,0.009737349,0.0062732557,0.02084951,0.03210781,-0.00540182,0.030029356,0.021412425,-0.0022205377,0.004690057,-0.02834061,-0.01990771,0.008903801,-0.012016073,0.015447689,0.008514091,0.023923893,0.012892921,0.0057861176,0.016768375,-0.039274152,-0.021563979,-0.029206634,-0.028535467,-0.006944424,-0.021477377,-0.025547685,-0.025612637,0.045639426,-0.019604601,0.011886169,-0.020589702,0.023252724,0.01900921,-0.014170305,-0.016854977,0.0146141425,0.010446405,0.008086492,-0.021942863,0.038169976,-0.041460864,0.014993028,-0.011003908,-0.028795272,-0.00070229074,0.00015679757,0.031046933,0.004538503,0.02463836,-0.023534182,0.04620234,-0.038191624,-0.018749403,0.01090648,0.01454919,-0.021758834,0.004002651,0.0076697185,0.004990459,-0.024075447,0.008773898,0.01287127,0.013347583,-0.0102299,0.028254008,-0.018792704,-0.05408315,0.0018930727,0.03944736,0.021856261,-0.011474808,0.03020256,-0.010164948,-0.019225717,-0.013693993,0.010543833,0.010733276,-0.0032990072,-0.00009057723,-0.039360758,0.011756266,0.015469341,0.0052232025,-0.0061271144,0.016725074,0.0063977465,-0.0048280796,0.012005247,0.029682947,-0.0038538035,0.016725074,0.0034072602,0.005014816,-0.019074162,-0.031501595,0.013434186,0.011896994,0.025049722,-0.008026953,-0.012719716,0.053736743,-0.017277164,0.0014722395,0.0069552492,-0.013477487,-0.012589813,-0.003675186,-0.0034776246,0.0067495685,0.0063869213,0.040183477,0.021314997,0.028968478,-0.020470625,0.0113665555,0.012817144,-0.0316748,-0.02496312,-0.011853693,-0.020037612,-0.009347638,0.00097021664,-0.042738248,0.0027076758,0.020676306,-0.004321997,-0.005412645,0.0040134764,-0.035160545,0.015231184,0.0047279457,0.002852464,-0.014430112,-0.001400522,0.03091703,-0.058023557,0.01507963,0.052264504,0.033948112,-0.021964515,0.027647791,-0.019323144,-0.0126980655,-0.0018930727,0.035593554,-0.0029661297,-0.0071934056,-0.032194413,-0.012362482,0.033948112,0.028167406,0.05546879,0.025179626,-0.012568163,0.040183477,0.007696782,-0.010311089,-0.008465378,-0.028795272,-0.03468423,-0.012752192,-0.00007142155,-0.038862795,-0.034900736,0.027820997,-0.027777696,-0.0027022632,0.036567833,-0.009369289,0.025829144,-0.023620784,0.00330442,-0.044058934,-0.012135151,0.0101541225]},{"id":"interface-GatewayGuildRoleDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleDeleteDispatchData\nDescription: GUILD_ROLE_DELETE — guild_id, role_id\nProperties: guild_id: string, role_id: string","meta":{"url":"/docs/typedefs/GatewayGuildRoleDeleteDispatchData"},"embedding":[0.016305797,0.042805504,-0.005135991,0.003953765,-0.00331804,0.03042559,-0.050991863,0.021135079,0.043207016,-0.0066081975,0.038388886,-0.04844896,0.00058762764,-0.0023351752,0.047958225,-0.015558541,-0.040485665,0.04427771,-0.0022654685,0.10037768,0.0010497832,0.007455831,0.028418036,0.01567007,-0.032031633,0.027079668,0.049876552,0.014610529,0.019450964,-0.027213505,0.054739296,-0.03221008,0.04182403,-0.02712428,-0.0016130136,-0.011632658,-0.0134283025,0.007662163,-0.025183644,-0.008610174,-0.023332234,-0.025585156,0.007121239,-0.006937213,-0.035511393,0.04530379,0.003348711,-0.0054733716,0.015547387,-0.023376847,-0.008911307,-0.020276291,-0.013294466,0.08980457,0.0077959998,0.010623304,-0.020845098,0.015101264,-0.013495222,0.033972267,-0.02288611,-0.032120857,0.005872094,0.011643811,0.009970849,-0.007104509,-0.06723074,0.048716635,0.009898354,0.04224785,-0.013952497,-0.045370713,-0.03647056,0.013149476,-0.0001666862,-0.028395731,0.0011982586,-0.012391067,0.006658386,-0.06955058,-0.007890801,0.03957111,-0.04938582,-0.0565684,0.035689842,-0.024648298,-0.028440343,-0.021179691,0.0060728495,0.034886822,-0.05063496,-0.00549289,-0.05407011,-0.007126815,-0.041913256,-0.06397404,0.049653493,0.004656409,-0.03274543,0.05754987,0.05853134,-0.027503485,-0.054159336,-0.03620288,-0.0021804264,0.010930014,-0.023733744,0.04648602,-0.015145876,-0.019015994,-0.064910896,0.016071582,0.0017356974,-0.0038450228,-0.023979113,0.057505257,-0.011180958,-0.052820966,0.04630757,-0.004015107,-0.03760817,-0.021090467,-0.018157206,-0.058085218,-0.06959519,0.0042465334,-0.009480114,-0.05915591,-0.042515524,-0.007511596,0.009290512,-0.02335454,0.021057006,-0.028261892,-0.015915439,0.013350232,-0.01298218,-0.033927657,-0.004965907,-0.036069047,0.0021316316,0.0043413346,0.011799954,0.06861372,-0.056122277,0.038455803,0.006948366,0.005445489,-0.027325034,0.052820966,-0.047869,0.02288611,0.030492509,-0.012435679,-0.030894019,-0.017064206,0.010021038,0.00094104075,-0.009703176,-0.021636967,0.0012693594,-0.06410788,0.010902131,0.0077067753,-0.027971914,-0.045995284,0.007188157,0.021826569,-0.04010646,0.03163012,0.01185572,-0.027146585,-0.021157384,-0.007455831,-0.043028567,0.04577222,-0.02810575,-0.015134724,-0.011911484,-0.036314413,0.0069037536,-0.020566272,-0.0041824034,-0.037585866,-0.036760535,0.0030085421,-0.02585283,-0.009173404,-0.038098905,0.027570402,0.003950977,0.03593521,0.028128056,-0.0032511216,0.010439279,-0.007890801,0.02868571,-0.014175559,0.014889356,-0.024068337,0.020220526,-0.0105396565,0.03633672,-0.003432359,-0.009580492,-0.0066639627,-0.006624927,-0.049296595,-0.008950343,-0.011247877,0.036894374,-0.041244075,-0.04485767,-0.01037236,-0.031183999,0.046932142,-0.04340777,0.038344275,0.0380766,-0.0006026146,-0.003992801,0.013729436,-0.021391599,-0.052999415,0.0340838,0.004946389,-0.0024411294,-0.004656409,-0.006742034,-0.012312995,-0.022975335,-0.031273223,0.007924261,-0.06522319,-0.0069149067,0.028172668,-0.022016171,0.013461762,0.024179868,-0.00041301234,-0.041467134,-0.05870979,-0.0054315478,-0.022060784,0.021491976,-0.01729842,0.05210717,0.02121315,-0.0024787711,0.037920456,0.008242123,0.07914222,0.002146967,-0.033503838,-0.008978226,-0.020644343,0.027101973,-0.0036860914,0.017900687,0.030202528,0.020945476,-0.027681934,0.0018514105,0.03539986,-0.006585891,0.022863805,0.02741426,-0.012123393,-0.042783197,0.0023086867,-0.004926871,-0.024001418,0.06736457,-0.0384335,-0.008515373,0.020131301,0.041712504,0.012435679,0.011030392,-0.053802438,-0.019529035,0.006875871,0.014231324,0.018447187,-0.02712428,0.07169197,0.006875871,0.02850726,0.014643989,0.03738511,-0.036135964,0.010812907,0.015580847,-0.03452992,-0.0016144076,0.008749587,0.01900484,-0.015859673,0.018882157,0.021012394,0.032455448,0.03894654,-0.044612303,-0.030046385,-0.01588198,-0.014320549,-0.004012319,-0.01740995,-0.004221439,-0.026588932,-0.0063628294,0.01082406,-0.014342855,0.02509442,-0.0017315149,-0.019796709,-0.0027032266,0.015948897,0.017677624,0.025250563,0.054605458,-0.016841143,0.004893412,-0.037764315,0.003100555,-0.034931432,-0.015469315,-0.02306456,0.0044779596,0.047824387,0.050099615,-0.029221058,-0.012803731,0.041110236,0.048359737,0.047378264,-0.05853134,0.08311272,0.037184354,-0.0215812,0.029221058,0.015558541,-0.0058553647,-0.0025331422,0.011654964,-0.01573699,-0.011203265,0.011420749,0.008610174,0.030336365,-0.012558363,0.027436566,-0.016562317,-0.012212617,-0.029600263,-0.032879267,0.04305087,-0.0031674735,0.0057494105,0.044634607,-0.041065626,-0.022439988,-0.015714683,0.0056573977,0.016038124,0.0029304705,-0.019395199,-0.0012435679,-0.0040011657,-0.02335454,0.014956274,0.008682669,-0.09779017,-0.01341715,-0.004759575,-0.018257584,-0.04566069,-0.018871004,0.020153608,-0.040017236,-0.0073666065,0.0282842,-0.01125903,-0.011632658,0.024313705,-0.0030754607,-0.0337269,0.060940403,-0.055319253,-0.026165115,0.036894374,0.014788978,0.009758941,-0.004015107,-0.012725659,-0.029020302,0.03992801,0.052553292,0.01729842,-0.02364452,0.04166789,0.023198398,-0.002301716,-0.01265874,-0.053579375,0.020086689,0.020945476,0.011498821,0.025585156,-0.045214567,0.0056072087,0.04334085,0.031563204,0.011755342,0.03910268,-0.068435274,0.031384755,-0.0064799367,-0.021157384,-0.005570961,-0.0006810347,0.024648298,-0.0032790042,0.003568984,0.04804745,-0.032700818,0.0038756938,0.009039568,-0.0030336366,-0.074145645,-0.09466731,0.030581733,0.023599908,-0.0101660285,0.033883043,0.024380622,0.0035327366,-0.023912193,-0.016406175,-0.01185572,-0.047199816,-0.02531748,-0.008610174,0.014354008,0.009820283,0.009558186,0.06508935,-0.034641452,0.04670908,-0.009697599,-0.013829813,0.028529568,-0.027503485,0.03919191,-0.003524372,-0.039281134,-0.02023168,0.04456769,-0.026789688,-0.008532103,-0.03002408,-0.008336924,0.021235457,0.065401636,-0.050055005,0.01410864,-0.000995412,-0.011203265,-0.028150363,0.014811284,-0.008454031,0.0033431344,0.03778662,-0.0010609364,0.0031368025,0.0014554764,-0.022908418,0.033548452,0.04028491,0.019484423,-0.0072606523,0.010478314,-0.047779776,-0.047512103,0.03176396,0.056479175,0.0057605635,-0.030380977,-0.0282842,0.04530379,-0.000069532456,0.016194265,0.016606929,-0.00966414,-0.006407442,0.0012421738,0.023019947,-0.033526145,0.002095384,0.0061174617,0.014209018,-0.052553292,0.02317609,-0.013774049,0.0022529212,0.0020354362,-0.028061138,-0.009892778,-0.026722768,-0.0064018653,0.015859673,0.00025390674,-0.009480114,-0.050278064,-0.028306507,-0.0044723833,-0.049787328,0.03328078,-0.012101087,0.008894578,-0.018157206,0.030916326,0.0420694,-0.013283313,-0.008532103,0.020655496,-0.00062596635,-0.06156498,0.0025638132,0.0012254441,0.048181288,-0.01733188,0.004508631,0.06352792,0.0057828696,-0.011721882,0.028373424,0.030224836,0.03800968,-0.024179868,0.01515703,0.003942612,0.018982535,-0.0039955894,-0.009864896,-0.005651821,-0.0021929734,0.009987579,0.023287622,0.02066665,-0.004514207,-0.015558541,-0.00006308458,-0.0062791817,-0.0023477224,-0.01185572,-0.036849763,-0.037452027,0.028083444,-0.01824643,0.00009558534,-0.020432435,-0.0057326807,-0.032410838,-0.04166789,0.015937746,0.002573572,0.021536589,-0.024581378,-0.017354185,-0.002073078,0.015279713,0.010511774,0.010980203,0.016261185,0.015826214,-0.026008973,0.03310233,0.006334947,-0.039437275,-0.028529568,-0.07079972,0.0032511216,0.02984563,-0.05505158,-0.0066137738,0.0040290486,-0.01428709,-0.029533343,-0.002188791,-0.022161162,0.0039286707,0.02759271,-0.024737522,0.015279713,-0.016127348,0.047601327,0.0069595193,-0.023800664,0.015101264,-0.006212263,0.03205394,-0.054025497,0.0006343312,0.034329165,-0.008320195,0.05576538,0.01773339,0.011069427,0.016952675,0.017945299,0.010154875,-0.018380268,-0.019462116,-0.011136346,-0.04648602,-0.035511393,0.0072216163,-0.016383868,-0.027079668,0.020443587,0.008732858,0.011699576,-0.012480292,-0.0028063927,0.01907176,-0.06388482,-0.027012749,-0.030626345,-0.019484423,-0.017131124,-0.03151859,-0.034842208,-0.0126922,-0.018369116,-0.061520364,0.023488376,0.0065301256,-0.0012937568,-0.029689487,-0.0042660516,-0.005135991,0.010651187,-0.009909508,0.034329165,-0.014822437,-0.002559631,-0.0016130136,-0.013316772,0.0141978655,-0.030380977,-0.035556003,0.024603685,-0.02161466,0.049341206,0.007132392,-0.02966718,0.064554,0.0019476059,0.011900332,-0.011733036,-0.011231147,0.008336924,0.01802337,0.024960583,-0.007204887,0.009162252,0.03390535,-0.01976325,0.009881625,0.015926592,0.026098197,0.025540544,0.017454563,-0.003555043,0.0006273605,-0.025875134,-0.028239587,0.0011146105,-0.0026795263,-0.008158475,-0.008275582,-0.0033013104,-0.005944589,0.027458873,-0.029622568,0.05580999,-0.024001418,0.023510683,-0.006067273,0.01211224,0.017231502,0.018056829,-0.00044647156,-0.017131124,0.036715925,0.01617196,0.01298218,0.0030894019,-0.011069427,-0.017499175,0.010701376,0.02607589,-0.022439988,0.007020861,-0.02614281,0.0033096753,0.024090644,0.010322171,0.0011250665,-0.006396289,0.016361563,-0.06312641,-0.023622215,-0.0085488325,0.019640567,-0.02850726,-0.010065651,0.02422448,0.006697422,0.002344934,0.041645583,0.01410864,-0.030737877,-0.012246077,0.029488731,-0.010840789,0.006803376,-0.01740995,-0.036247496,-0.014777825,0.010757142,0.00018838242,0.02219462,-0.0053255935,0.008091556,0.024447542,0.031250916,0.016216572,0.036091354,0.02422448,0.0090953335,-0.004137791,-0.038678866,-0.049742717,-0.012089934,-0.0045671845,0.008230969,0.022306152,0.007974449,-0.017198043,0.005124838,-0.009837013,-0.0042911456,-0.01718689,-0.06218955,-0.0065189726,0.010054498,-0.033013105,0.06218955,0.025718993,-0.010327748,0.016551165,0.053579375,-0.026901219,-0.0038645407,-0.039950315,0.008387113,0.020253984,0.0030615192,0.0029890242,-0.004965907,-0.008704975,-0.0029221058,0.038411193,-0.040240295,0.036024433,-0.0006360738,-0.007227193,0.014610529,0.0082253935,-0.027659627,0.000523846,-0.03328078,0.0082477,0.013617905,-0.0028970113,-0.016963828,-0.0040011657,0.00021853058,-0.026232034,0.039950315,-0.01399711,-0.013149476,-0.023042254,-0.0118334135,0.010294288,-0.07124585,0.007985602,0.05424856,0.008515373,-0.005205698,0.026856605,0.03510988,0.051170312,0.005278193,-0.049787328,0.025942054,-0.044835363,0.010779448,0.005609997,0.06696307,-0.014041722,0.005849788,0.022796886,0.015971204,-0.0028217281,0.008604598,0.0018221337,0.00483207,-0.011811107,-0.017900687,0.007862918,0.0057103746,-0.016461939,0.028373424,0.013695977,0.024358317,-0.019395199,-0.039459582,0.0007556209,-0.028418036,0.02614281,0.010305442,-0.0034658182,0.029310282,-0.007946567,0.0023519048,-0.0031395908,-0.010021038,-0.008063674,-0.018045677,0.012971027,0.0016353197,0.0019197231,0.002654432,0.03013561,-0.00050119136,0.021257762,-0.0030224836,-0.0051081087,0.023086866,-0.010087957,0.018146053,-0.011621505,-0.029399507,-0.05732681,0.03836658,0.037697393,-0.008838812,-0.008136169,0.01664039,-0.051304147,-0.0297341,0.00176358,0.0065301256,0.00011266349,0.017755697,0.019250209,-0.0019448176,0.012759118,0.008191934,0.03448531,-0.023577603,0.016205419,0.009318395,0.041288685,-0.012123393,0.032031633,-0.00010787115,-0.012469138,0.015725836,0.0019113583,-0.030960938,0.015279713,-0.014900509,-0.023845276,-0.0025178068,0.005258675,-0.0007528326,0.008024638,-0.0075227492,0.015803909,-0.028886465,-0.028128056,-0.018112594,-0.023421459,-0.021514283,-0.015870826,-0.020945476,-0.03680515,0.0060728495,-0.02821728,0.04108793,0.030960938,-0.024670603,0.01762186,0.0019852475,0.047958225,-0.026901219,0.0011731641,-0.015335479,-0.021480823,0.03071557,0.005679704,0.0107404115,-0.0149451215,-0.029622568,0.016071582,0.012826037,0.028663404,-0.006312641,0.04724443,-0.020075535,-0.010706953,-0.013840967,0.07909761,-0.022462294,-0.025875134,0.011900332,0.027391953,0.004887835,0.008621328,-0.012089934,0.027369648,-0.03796507,-0.01860333,-0.0052112746,0.016071582,-0.03836658,-0.004938024,0.027012749,0.00084693666,0.02955565,-0.0119337905,-0.009351854,-0.00001300466,0.007444678,-0.010383514,-0.029176446,-0.04073103,-0.00030601252,0.032700818,-0.0348199,0.034173023,0.017822614,0.0061509213,0.026722768,0.03858964,-0.019752096,0.0061341915,-0.03093863,-0.030157916,0.0004952663,0.0057326807,-0.0340838,-0.047958225,-0.008532103,0.029600263,0.0017607918,0.0014359584,-0.01356214,0.015257407,-0.0155919995,-0.035266023,0.028908772,0.025718993,-0.024023725,-0.013930191,-0.015937746,-0.006853565,0.052642517,0.0069762487,0.024514461,-0.04039644,-0.0033236165,-0.01762186,0.011576893,0.036269803,0.017688777,0.010188335,0.01715343,-0.030559426,0.040195685,0.0013042127,-0.0061453446,0.0022138855,0.02059973,-0.00039872245,-0.009485691,0.012056475,0.010171605,-0.020588577,0.013394844,0.032410838,-0.022830345,-0.003596867,0.013785201,0.018079136,0.0057884464,-0.011788801,0.030336365,0.015034346,-0.050456513,-0.0011871054,0.0006461813,-0.026655851,-0.0060003544,-0.005955742,0.008866695,0.048181288,-0.014465539,-0.006574738,-0.05928975,0.0070989328,-0.042225543,0.0014045904,0.011643811,-0.016997287,-0.027280422,-0.011866872,0.01167727,0.0006712757,0.03963803,0.021882335,-0.006691845,0.049073532,-0.0000063008342,0.015904285,-0.017053053,-0.029421814,0.017108819,0.0021107194,0.014554763,0.050545737,-0.00017426681,0.00794099,-0.011325948,-0.004636891,-0.04073103,0.0016339256,0.028328812,0.011314795,0.022317303,-0.0007409825,0.023532989,0.007885224,0.0046396796,-0.0063628294,-0.015246254,-0.03430686,0.018581023,-0.016361563,-0.016216572,0.009240323,-0.013182935,-0.01885985,0.06517857,0.022796886,-0.001596284,0.006686269,-0.011108464,-0.006033814,-0.005816329,0.03187549,0.0011682847,-0.013472916,0.0003201281,0.007578515,0.005239157,0.020242833,-0.03100555,-0.029511038,-0.0023114749,-0.007444678,0.016205419,0.00024170805,0.0004482142,0.037005905,-0.014855897,-0.029488731,0.010271982,-0.007600821,-0.020265138,-0.005860941,0.031451672,-0.006396289,-0.030916326,-0.018357962,-0.036091354,0.015491622,-0.013617905,0.0000018325244,0.038232744,0.008035791,0.005328382,0.03223239,0.051259536,-0.003775316,0.027101973,0.030447897,0.019283667,0.0041043316,-0.0069316365,-0.010132569,-0.020097842,-0.03234392,0.0064464775,0.009251476,0.004885047,-0.0021330258,-0.022172315,0.001058148,0.0348199,0.005609997,0.027726546,-0.01983017,0.03620288,-0.034262247,-0.013372538,-0.008593445,0.046753693,0.01051735,-0.019674025,0.04849357,-0.006323794,-0.014510151,-0.040820256,0.0018095865,-0.00023595725,0.0002131283,0.014699753,-0.0077235047,-0.0016576259,-0.010327748,0.014532457,0.004009531,0.063215636,-0.016361563,-0.01642848,0.00093616126,0.003214874,0.026098197,-0.013439456,0.0017259384,-0.014688601,0.008019062,-0.009719905,-0.0020591365,0.011588045,0.00576614,0.02066665,0.005983625,-0.013617905,0.018558718,0.031964716,-0.004146156,-0.00009837361,0.0034379356,-0.028016526,-0.01053408,0.013774049,-0.03825505,0.061074242,-0.009781247,-0.0012742389,0.028261892,0.0047261156,0.022997642,-0.0075227492,-0.00678107,-0.020878557,-0.002436947,0.044545382,-0.02190464,0.009797977,-0.025629768,0.03158551,0.0041712504,-0.009825859,-0.0030224836,-0.018179514,-0.0039175176,-0.018625636,-0.05545309,-0.014387468,0.0007549238,-0.015067805,0.014755519,0.014610529,-0.035823677,-0.0120341685,-0.016651541,-0.0035801372,0.03332539,0.00014516425,0.006011508,-0.018960228,0.016685002,-0.01008238,0.006284758,0.025808217,0.025451317,-0.00017017154,0.006803376,0.03187549,0.030090997,0.011114039,-0.010907708,-0.0007354059,-0.0023045042,-0.0030392131,0.012301843,0.016662695,-0.022060784,-0.012145699,0.028462648,-0.0058051758,-0.0013223365,0.023956805,0.047601327,-0.0591113,0.056836072,-0.004965907,-0.024179868,0.007466984,-0.019049453,0.0366267,-0.022395376,-0.035042964,0.009586069,0.0070375907,0.014476692,-0.0030308482,0.0045337253,-0.026990443,0.015313173,-0.01715343,0.029176446,0.012859496,0.024938276,0.027726546,0.011554587,0.004179615,0.01947327,0.030626345,0.01885985,-0.013762895,-0.035042964,0.00041405793,0.008097133,-0.0034992774,-0.038210437,0.033838432,-0.03651517,-0.01921675,0.01501204,0.007572938,0.009747788,0.01726496,-0.017956452,0.0007277382,-0.0060840026,0.012926415,0.0068368353,0.03651517,0.01983017,-0.01080733,0.018592177,0.021313528,-0.0133279255,-0.007918684,0.0012791184,-0.0038505993,-0.018759472,-0.00476794,0.0142982425,-0.01671846,-0.0033988997,-0.029444119,0.0044556535,0.02106816,-0.0015795543,0.010745988,0.0037502216,0.004213074,-0.017711084,-0.005063496,-0.017287267,-0.049921166,-0.037652783,0.015826214,-0.03923652,0.038522724,0.016350409,0.0082253935,-0.026566627,-0.008353653,-0.00497706,-0.030827101,-0.0034937009,-0.004965907,0.028083444,0.00605612,-0.017599553,0.0076398565,-0.0028496108,-0.010528503,0.010015462,0.0133279255,0.018134901,0.0069539426,-0.01889331,-0.008894578,-0.011733036,-0.018324504,-0.02262959,-0.010818483,0.0007800182,0.01428709,0.028886465,-0.030670958,0.02106816,-0.015792755,-0.0057438337,-0.0056127855,0.010232947,0.019027147,0.014075181,0.0026711617,0.0014275936,-0.029934855,0.0012602975,0.015937746,0.021804262,-0.0026418848,0.028886465,-0.020633189,0.01341715,-0.030336365,-0.00013113578,0.011225571,-0.013361384,-0.02129122,0.02723581,0.03495374,-0.015447009,-0.013484068,0.021636967,0.05228562,0.028172668,-0.0014059846,0.014331702,0.025362093,0.021770803,-0.02933259,0.034507617,0.021324681,-0.0032762159,-0.0024508883,-0.040641807,-0.018536411,-0.010126992,-0.0022529212,0.013684824,0.030291753,0.02240653,0.0175884,0.003619173,0.0027352918,-0.05835289,-0.011075004,-0.015134724,-0.010383514,-0.019584801,-0.03430686,-0.025005195,0.0069427895,0.02955565,-0.014119794,0.019506728,-0.012703353,0.025607461,0.00676434,-0.018346809,-0.03234392,0.013774049,0.013361384,-0.0012156853,0.00219855,0.008677092,-0.027302729,0.006212263,-0.01356214,-0.03031406,0.0036331143,-0.0107404115,0.009714329,-0.00071205414,0.01755494,-0.032009326,0.03539986,-0.026410483,-0.02723581,0.0043971,0.009491268,-0.026923524,-0.010723682,-0.012803731,-0.008264429,-0.011219994,-0.012536057,0.025518237,0.013495222,0.007957719,0.029444119,-0.01008238,-0.022830345,-0.0031479555,0.036938988,0.025451317,-0.003878482,0.03905807,-0.03198702,-0.03406149,-0.0032762159,0.021447364,0.020789333,-0.017989911,-0.002416035,-0.018960228,0.018480645,0.013026793,-0.010205064,-0.0037362804,0.014052875,0.007020861,-0.009764518,0.0010225977,0.02759271,-0.020253984,0.0068814475,-0.024425235,-0.0049352357,-0.045103036,-0.004260475,0.02723581,0.00008521647,0.020722413,-0.026232034,-0.0053144405,0.048181288,-0.0028468226,0.029511038,0.0000047052035,-0.0136513645,-0.032879267,-0.0033738054,0.008007908,-0.01617196,-0.0028286988,0.046218347,0.015658919,-0.0018081923,0.00026000608,0.009524726,0.02810575,-0.02288611,-0.02933259,-0.0355337,-0.02179311,-0.01341715,0.011024815,-0.025205951,0.007578515,0.02788269,0.0013627664,-0.022763427,-0.011298065,-0.022495754,-0.001575372,0.0030252717,0.012145699,0.00180401,0.015302019,0.02251806,-0.07352107,0.0018207396,0.023019947,0.021926947,-0.030492509,0.027481178,-0.010567539,-0.00028719168,-0.007188157,0.05915591,-0.00180401,-0.005866518,-0.035845984,0.006691845,0.013294466,0.02106816,0.017566094,0.03423994,-0.0060003544,0.029756406,0.011270183,-0.003783681,-0.020332057,-0.021570047,-0.011799954,-0.006407442,-0.00013287844,-0.031384755,-0.023666827,0.0032120857,-0.01755494,0.009625104,0.033191554,0.008593445,0.0047484217,-0.018045677,-0.0010212035,-0.010545233,-0.010812907,0.001255418]},{"id":"interface-GatewayGuildRoleUpdateBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleUpdateBulkDispatchData\nDescription: GUILD_ROLE_UPDATE_BULK — guild_id, roles[]\nProperties: guild_id: string, roles: APIRole[]","meta":{"url":"/docs/typedefs/GatewayGuildRoleUpdateBulkDispatchData"},"embedding":[0.020707335,0.010455285,0.029152857,0.007745492,-0.005933318,0.013571547,-0.019860525,0.006989008,0.00505828,0.032314282,0.0059163817,-0.045163218,-0.0034041775,0.011595656,0.034053065,-0.002093033,-0.03001096,0.017071696,-0.042972803,0.051305417,0.024365555,-0.034595024,0.04536645,0.021508982,-0.045818083,0.014113505,0.030191611,0.05798957,0.005334905,-0.024681699,0.033194967,-0.03423372,0.042588916,-0.0148586985,-0.018020123,-0.006791419,-0.016382957,0.05993159,0.014587719,-0.023462292,0.0064639854,-0.036717694,-0.015840998,-0.016044233,-0.07271278,0.074880615,-0.011544848,-0.0043780096,0.0157168,0.020266995,-0.027549563,-0.007954372,-0.030417427,0.050898947,0.03680802,0.0022765084,-0.014632883,-0.020165376,-0.027120512,0.055641085,-0.024049414,-0.052163515,0.013571547,-0.011731146,0.025901105,0.004149371,-0.06706738,0.027910868,0.051169924,0.031930394,-0.01782818,-0.04127918,-0.0314336,0.0048127053,-0.0047760103,0.0048381095,0.014011889,0.00052855077,0.0034549863,-0.047782686,-0.013244114,0.052163515,-0.061918773,-0.069912665,0.030665824,-0.00020940913,-0.014576429,-0.023891343,-0.012148906,0.021700926,-0.028249593,-0.0122053595,-0.0737967,0.018223358,-0.039314583,-0.09366851,0.06006708,-0.0028368146,-0.013018298,0.09312656,0.061557464,-0.01598778,-0.037124164,-0.04026301,-0.0105625475,-0.029243184,-0.0053885365,0.033714343,-0.017297512,-0.042069536,-0.07460964,0.014824826,0.01151662,-0.013944143,0.0019010892,0.0266463,-0.011855344,0.0002859749,0.034843422,-0.01684588,-0.032133628,-0.006034935,-0.0053744228,-0.055912063,-0.04728589,-0.00033343156,-0.008835055,-0.036198318,-0.050898947,0.015807126,0.0031670707,-0.022920333,0.03635639,0.0105060935,-0.030169029,-0.0097778365,-0.0027606017,-0.0031896522,0.011674692,-0.023112277,0.018618537,0.014926444,-0.0036977385,0.038140338,-0.06548667,0.025336565,-0.022773553,-0.020549264,0.004025172,0.03547571,-0.071809515,0.02610434,-0.023530036,-0.006638993,-0.0006605121,-0.051440906,-0.033488527,0.013074752,0.0011664813,0.00057583104,0.0020083517,-0.053066783,-0.011313386,-0.020605719,-0.005922027,-0.05613788,-0.005763956,-0.0083213225,-0.05374423,0.002061983,0.009557666,-0.025946269,-0.013695746,-0.0114771025,-0.051034436,0.013740909,-0.024162322,-0.029288346,-0.024162322,-0.027391491,0.024930097,-0.016541028,-0.034165975,-0.045050308,-0.059841264,0.030756151,-0.06250589,0.018223358,0.018121742,0.029107694,0.014903862,0.0314336,0.025246238,0.03283366,0.001686564,-0.032359447,-0.014474811,0.017037824,0.031523924,0.0045699533,0.030778732,-0.024591371,0.06616411,0.012848935,-0.0061704246,-0.020413775,0.009043935,-0.028362501,-0.02540431,-0.0006442815,0.05094411,-0.018042706,-0.050853785,-0.005035699,-0.043582506,0.032653008,-0.056047555,0.02721084,-0.0030372264,0.01850563,0.020718627,0.013379604,0.011821472,-0.04602132,0.028656062,0.0314336,-0.008761664,0.01796367,0.024478463,-0.005382891,0.006565603,-0.0020478696,-0.008880218,-0.06214459,-0.0070793345,0.009281041,-0.00033854772,0.028362501,0.02973998,0.011584366,-0.04028559,-0.06498987,-0.0069720717,-0.007547903,0.036243483,-0.015366785,0.04168565,-0.013594128,0.0069551356,0.04868595,0.017252348,0.04913758,0.0030682762,-0.027843123,-0.015039352,-0.017218476,0.015536147,0.024659118,0.027526982,0.053428087,0.011866636,-0.016168432,-0.019849233,0.018415302,-0.021520274,-0.0022722743,0.034436952,0.0065035033,-0.02876897,-0.0042820377,0.020967023,0.033669177,0.029627072,-0.031230366,-0.005035699,-0.00009535437,0.019025005,-0.00021029123,0.008942317,-0.048234317,-0.01361671,-0.00820277,-0.0007395477,0.022129977,-0.013910271,0.023417128,0.0044880947,0.03716933,0.023710689,0.017703982,-0.002149487,0.021712217,0.028430246,-0.029017368,0.015694218,-0.008208415,0.00940524,-0.02162189,0.041595325,0.020696044,0.0004032934,0.04057915,-0.003683625,-0.013153787,-0.018765317,-0.027549563,0.000098265285,-0.047376215,-0.0054336996,0.0017627769,0.021429947,0.04967954,-0.021531563,0.04001461,-0.019600837,-0.029310929,0.013221532,0.016179724,0.025336565,0.032336865,0.014384485,-0.0016936207,-0.026014013,-0.028881878,0.0062099425,-0.07492578,-0.027752798,-0.002145253,-0.008919735,0.0043582506,0.031094875,-0.03581443,0.02454621,0.010466576,0.04087271,0.047466543,-0.017207187,0.06327367,0.0659383,-0.005995417,0.012532793,-0.01769269,0.015750673,-0.055731412,-0.0012963255,-0.017026532,-0.005086507,0.045411617,-0.0126908645,0.044689003,0.02847541,0.045050308,-0.013142496,0.005137316,-0.03089164,-0.057221796,0.032065883,-0.020933151,0.0024416365,0.03326271,-0.061286487,0.0024628066,-0.0117198555,0.016834589,0.009811709,0.002846694,0.013447348,0.0029299639,-0.010844817,0.009247169,0.021294458,0.025743034,-0.057628267,-0.0044034137,0.014531265,-0.025178494,-0.036288645,-0.003844519,-0.027662471,-0.030665824,-0.016078105,0.050989274,-0.0061534885,0.0075591938,-0.012544083,-0.0015397834,-0.053382922,0.026759207,-0.030801315,-0.016247468,0.02637532,0.031117458,-0.017884634,0.0011086159,-0.012239232,-0.019386312,0.048640784,0.039495233,0.0018008833,-0.005950254,0.041798558,0.026081758,0.0038388735,0.015389366,-0.039246835,0.018595954,0.0060688076,0.02806894,0.019408893,-0.012995716,0.0052445787,0.01753462,0.038546808,0.0022765084,0.050627965,-0.03719191,0.030959386,0.025991432,-0.053247433,0.030530335,-0.03534022,0.004967954,-0.001936373,0.019047586,0.046879422,-0.044847075,0.013176369,-0.025178494,-0.034414373,-0.038795203,-0.07370637,0.06395112,0.028565735,-0.015479693,0.032540098,-0.0015440175,-0.019894397,-0.035295054,0.011877926,0.02513333,-0.060925182,-0.021700926,-0.047466543,0.026081758,0.004126789,0.009286687,0.028272174,-0.025765616,0.041934047,-0.028136685,-0.016789427,0.023620363,-0.0019236708,0.06340916,-0.0026039418,-0.00836084,-0.01179889,0.028927041,-0.038230665,0.0038219374,0.008953608,0.020696044,0.014395775,0.019566964,-0.010466576,0.03680802,0.005289742,0.0072599873,-0.04755687,0.017094279,-0.0005680686,0.011527912,-0.005639757,0.0026420483,-0.017150732,-0.017173314,-0.032246538,0.013537674,-0.015942616,0.046518113,-0.03592734,0.0010239348,-0.008236642,-0.038908113,0.065080196,0.038501643,-0.00094348786,-0.012115033,-0.015378076,0.020876698,0.0009138495,0.017500747,0.036401555,-0.010014944,0.02135091,-0.0078075915,-0.021034768,-0.049182743,-0.016236177,-0.015513565,-0.016631356,-0.047963336,-0.00004525143,-0.0137522,0.03692093,0.000545487,-0.014937734,-0.011685982,-0.020842824,0.019476637,-0.0029977085,-0.008039053,0.01193438,-0.0364693,-0.033917576,-0.0013259639,-0.012340849,0.01291668,0.00028421072,0.03396274,-0.024794606,0.037079003,0.036130574,-0.0024585726,-0.00848504,-0.0006989714,-0.007412413,-0.048053663,0.017941087,0.0027761266,0.033014312,-0.023146149,0.01824594,0.06345432,-0.007689038,-0.004363896,0.021813834,-0.0033223191,0.036537044,-0.016902335,-0.00413808,0.009360077,-0.00750274,0.013210242,0.008682629,0.0031416663,0.043153454,-0.0044344636,0.023123568,0.0151183875,0.016812008,-0.016778136,0.0186637,0.008801182,-0.014079633,-0.0028735097,-0.014824826,-0.02989805,0.013537674,-0.008016471,0.012194069,-0.02174609,0.012792481,-0.034143392,-0.04809883,0.016032942,0.01165211,-0.012002125,-0.0063962406,-0.018787898,-0.030078704,0.0381855,0.0175572,0.021983197,0.031501345,0.021034768,0.0013040879,0.019318566,0.023484873,-0.011618238,-0.014237705,-0.094120145,0.025155913,0.048189152,-0.0527958,0.004236874,0.015931325,-0.0026138213,-0.016213596,0.021418655,0.0017952379,0.031952977,0.035453126,-0.015784545,0.005140139,0.0019674227,0.0022609837,0.0023541327,-0.0266463,0.029581908,-0.005137316,0.021971906,-0.05491847,0.014519975,0.0070059444,-0.0077285557,0.031636834,0.006712383,-0.0020266995,0.02162189,0.021926742,0.025291402,-0.025472054,-0.01855079,0.00004474422,-0.052253842,-0.030552916,0.021644473,0.00092020055,-0.033488527,0.013989307,0.02203965,0.010229469,0.0034352273,0.0022623949,0.043311525,-0.030846478,0.015332912,-0.021858998,-0.022468701,-0.011595656,-0.04365025,-0.030507755,-0.011877926,-0.04477933,-0.052569985,0.030688407,-0.02483977,0.018178195,-0.01151662,0.010856109,0.011460166,0.012408594,-0.015220004,0.053021617,-0.0073446683,0.010432703,-0.03355627,-0.011522266,0.013763491,-0.031681996,-0.04967954,0.016270049,-0.008247932,0.035566036,-0.017512038,-0.040217847,0.022525154,0.00080305844,0.018844353,-0.012160196,-0.039517816,0.009975426,-0.001610351,0.0015807126,-0.00016530443,-0.016507156,0.030959386,0.014350613,0.030530335,0.015536147,0.03380467,0.020368611,0.006509149,0.033917576,-0.0002688623,-0.017037824,0.011324677,0.0014607478,0.0342563,-0.017749144,-0.0025107926,-0.026510809,-0.001147428,0.019115333,-0.03086906,0.03972105,-0.0025912395,0.031840067,-0.002592651,0.0060123536,0.013548966,0.026804369,0.004468336,-0.0014649819,0.020617008,0.013594128,-0.000628051,-0.0030456944,0.0037795969,-0.005205061,0.024252648,0.013447348,-0.018720154,-0.010065752,-0.01867499,-0.0041409023,0.03452728,0.005140139,-0.005487331,-0.008863281,0.02903995,-0.069686845,0.0063172053,0.011765018,0.029604489,-0.043447014,-0.012239232,0.022536445,0.028836714,0.02820443,0.038930696,-0.0016526915,-0.008846345,0.0023188489,-0.013277986,0.0048494004,0.017715272,-0.026714044,-0.021373494,-0.006430113,0.014294159,-0.011708564,0.02400425,-0.0073446683,-0.007847109,0.02736891,0.03518215,0.003316674,0.034143392,-0.00020005894,-0.028114103,0.006554312,-0.030620662,-0.03328529,-0.007999535,0.008891509,0.010280278,-0.009360077,0.025878524,-0.024320392,0.004970777,-0.0019250822,0.024207484,-0.004078803,-0.057628267,0.00820277,0.009173779,-0.017500747,0.048956927,0.016586192,-0.0062438147,0.039811376,0.04868595,-0.018370138,-0.0022482814,-0.016653936,0.00059841265,0.024478463,-0.008868927,0.00035865945,0.015366785,0.0074180583,-0.0046066483,0.029446417,-0.029265765,0.029152857,-0.028701225,0.0016258758,-0.013853817,-0.009518148,-0.021588018,-0.0074293492,-0.03592734,-0.0034973267,0.03398532,0.014395775,-0.029152857,-0.0019589546,0.014915152,-0.03199814,0.014136087,0.006893036,-0.0040562213,-0.014057051,0.00047491945,0.009783482,-0.07921629,0.00501594,0.050311826,-0.03244977,-0.013628001,-0.013571547,0.01628134,0.065215684,-0.010393186,-0.033465944,0.030394845,-0.063093014,-0.004149371,-0.0028001196,0.04209212,-0.009873808,-0.005938963,0.0186637,0.01516355,-0.005080862,-0.008564075,0.01783947,0.0030908578,-0.009241523,-0.010929499,-0.013865108,0.015908744,-0.016360376,0.061150998,-0.0076833926,0.034617607,-0.009789128,-0.029807724,-0.023123568,-0.0032828015,0.017173314,0.024591371,0.03565636,0.028678643,-0.041798558,-0.018889517,0.009868163,0.0021678344,-0.00842294,-0.0068817455,0.00078118255,0.019013714,0.018607246,0.00512038,0.034211136,0.02231063,0.0054562814,0.011855344,-0.012216651,-0.0037062066,-0.00084681035,-0.017342675,0.007604357,-0.021158967,-0.0550088,0.025291402,0.058170225,-0.012035998,-0.012984425,0.026149504,-0.043063127,-0.013707036,0.010963371,-0.009038289,0.014237705,0.014361903,0.0072374055,-0.011776309,0.008846345,-0.006655929,0.030620662,-0.023755852,0.009631056,-0.0043469598,0.02008634,0.013978016,0.013300568,0.052660313,-0.016868463,0.002975127,-0.019442765,-0.00028156443,-0.0168233,-0.01655232,-0.02063959,0.0048324643,0.0012433998,0.013119915,0.014373194,-0.0015736559,0.0027295519,0.012363431,-0.030507755,-0.028678643,-0.021012187,-0.008727792,-0.014203832,0.0032235247,-0.018889517,-0.017173314,-0.04252117,0.0275044,0.007491449,0.000007993978,0.010534321,0.025584962,0.069099724,0.008383422,0.011776309,-0.017252348,-0.017703982,0.011765018,0.009388304,0.039946865,0.012927971,-0.0011820061,0.005693388,-0.010060106,0.02400425,0.00033431366,0.0480085,-0.005665161,-0.008343904,-0.004121144,0.06160263,-0.008479394,-0.01585229,0.00038141749,0.02876897,-0.004287683,0.017049115,-0.010534321,-0.0005624232,-0.028881878,0.005128848,-0.011375486,-0.006091389,-0.007982599,0.0054195863,0.04098562,0.032540098,-0.0071922424,-0.0070962706,-0.013582838,-0.012973134,0.017986251,-0.026059177,-0.011731146,-0.017274931,-0.003426759,0.022096105,-0.0659383,0.03917909,0.005910736,0.022220302,-0.008473748,0.059434794,-0.0023654236,-0.011313386,-0.039924286,-0.021012187,0.020944443,-0.020729916,-0.031952977,-0.047466543,-0.016247468,0.009089097,0.003768306,0.018426593,-0.025291402,0.03240461,-0.016653936,-0.03244977,0.04755687,0.014440939,0.005648225,-0.03522731,0.0074745123,-0.01783947,0.043988973,-0.012329559,0.0061365524,-0.038027428,-0.004996181,-0.022129977,0.012363431,0.06214459,0.0007444874,0.0053010327,0.012973134,-0.030688407,0.048595622,-0.00046997974,-0.006063162,-0.011663401,0.015931325,-0.0041409023,-0.012408594,0.0011354316,-0.026194666,0.017907215,-0.024478463,0.025810778,-0.020221831,0.02569787,0.016665228,0.009868163,0.0070228805,-0.007790655,0.0097609,-0.03522731,-0.059841264,-0.03662737,0.0037090292,-0.031840067,0.012148906,-0.010810945,0.012758609,0.061512303,-0.010590775,0.0038304054,-0.055641085,0.0132892765,-0.045976155,0.001864394,0.014621592,0.011866636,-0.009715737,0.011064989,0.02330422,-0.009275395,0.03509182,0.020594427,-0.018449174,0.025720453,0.004265101,0.024726862,-0.016597483,-0.025449473,0.00428486,0.015649054,0.0030259355,0.047827847,-0.0018404011,0.0046038255,0.0015863581,0.012250523,-0.020097632,-0.015400657,0.047466543,0.004135257,0.0073164413,0.00821406,-0.007841464,-0.000954073,-0.0056623383,0.0076833926,-0.017579783,-0.022209013,0.025765616,-0.011245641,-0.002073274,0.005854282,0.003796533,0.0064922124,0.027188256,0.007909209,0.008428586,-0.0046885065,-0.004228406,-0.0061139707,-0.009156843,0.035430543,0.0016371666,0.014847408,-0.002596885,0.023552619,-0.03344336,0.007982599,-0.037959684,-0.027888287,0.023801016,-0.012115033,0.0102633415,0.014407067,0.012961844,0.064718895,-0.009377013,-0.042859893,-0.008095507,-0.017489456,-0.028723806,-0.0062889783,0.029423837,0.0017359612,-0.031501345,-0.014553847,-0.031794906,0.022717098,-0.011556138,-0.010912563,0.032494936,-0.012419885,0.0070285257,-0.004146548,0.021667054,-0.01908146,0.0263979,0.002898914,0.023168731,0.0013534852,-0.022999369,-0.027707634,-0.008592302,-0.024952678,0.018787898,0.032630425,-0.0022496928,-0.005591771,-0.029581908,0.0151748415,0.026420483,0.010952081,0.022355793,-0.028249593,0.06277687,-0.008456812,-0.022807425,-0.014452229,0.0097213825,0.007395477,0.0071753063,0.050492477,0.0047929464,-0.031207783,-0.02666888,0.0122053595,-0.0077567827,0.0054167635,0.0020351675,-0.018279813,0.003731611,-0.012815063,0.006825291,0.003446518,0.07659682,0.0038473415,-0.01782818,-0.008857636,0.0073898314,0.0027563677,-0.011979544,0.0010563959,-0.012961844,-0.005572012,-0.0063115596,-0.009015707,0.0053292597,0.016913624,0.030507755,-0.018415302,0.0001376949,0.022694517,0.020820243,-0.022288049,0.0043949457,0.0062212334,-0.016382957,0.0046687475,0.0009794773,-0.018268522,0.06625444,-0.041911468,0.019837944,0.049634375,0.017862052,-0.009902036,-0.018291103,0.020346029,-0.031523924,-0.010223824,0.020312157,-0.007497094,0.02456879,-0.021317039,0.029017368,0.006960781,-0.0132892765,-0.022299338,-0.02903995,-0.021023478,0.025494637,-0.026307574,-0.014361903,-0.013210242,-0.016247468,0.00021064407,0.03145618,-0.01672168,0.004931259,-0.022841297,0.013255404,0.042069536,0.002205941,0.0001687446,0.0022271113,0.007073689,-0.010054462,-0.003852987,0.033872414,0.0068309368,0.032585263,0.0045191445,0.030936804,0.04349218,0.019171786,0.008208415,-0.0054139406,0.021938033,0.028114103,-0.0030908578,0.018573374,-0.03750805,-0.018641118,0.051034436,-0.0016837412,0.005176834,0.025155913,0.04283731,-0.04967954,0.053653903,0.028927041,-0.021531563,-0.009179424,-0.008185834,0.023665527,-0.043130875,-0.03172716,0.018855643,0.005140139,0.022965496,-0.008998771,0.0003920026,-0.013063461,0.009935908,-0.015829708,0.011561784,0.045434196,-0.0023216717,0.047466543,0.025652708,0.027594727,0.019804072,0.039066184,0.0063115596,0.010613356,-0.022931624,0.012115033,-0.0047647194,-0.019058878,-0.0471504,0.014045761,-0.011561784,-0.0058317003,0.024772026,0.018076578,0.021091223,0.021125095,0.010359313,-0.046518113,-0.00014545732,0.0077793645,-0.010731909,0.050447315,0.01684588,-0.018900806,0.021949325,0.0303271,-0.042724404,0.024952678,-0.0152877495,-0.005083685,0.008044698,0.0036243482,-0.006723674,-0.014655464,0.018641118,-0.009388304,-0.0034549863,0.0044513997,-0.026917277,0.0069551356,-0.0036412845,0.01882177,-0.020876698,-0.00007934436,-0.01601036,-0.044011556,-0.061963934,0.020718627,-0.005552253,0.016778136,-0.0023597782,0.0010091156,-0.010698037,-0.0123182675,-0.005882509,-0.02513333,-0.00856972,0.016394248,0.014271577,0.024749443,-0.024884934,0.010658519,-0.003663866,0.013786072,0.0024896224,-0.0025587785,0.016473284,0.015739381,-0.015829708,-0.022434829,-0.0049340813,-0.021158967,-0.002544665,-0.011742436,-0.008157606,-0.007282569,0.042069536,-0.012476339,-0.00736725,-0.0061421976,0.00095195597,0.032201376,0.018279813,0.012047288,-0.009179424,0.008434231,-0.02120413,0.00006778893,-0.0071470793,0.001803706,-0.004262279,-0.0115335565,0.0062889783,-0.013808654,0.019386312,-0.010302859,0.00045516057,0.0024740975,-0.018539501,-0.009828646,0.026555972,0.04200179,-0.016732972,0.00064886844,0.004979245,0.041392088,0.03202072,0.007813237,0.018212067,0.02820443,0.03592734,0.0029807724,0.03452728,0.03816292,0.0013054992,0.012103742,-0.042476006,-0.0025023245,0.013040879,0.006932554,0.0009815943,0.033420783,0.01951051,0.02569787,-0.007491449,-0.017579783,-0.02328164,-0.022062233,-0.01855079,-0.009986716,-0.013729618,-0.019036297,-0.022491282,-0.023123568,0.006893036,-0.022062233,-0.002857985,-0.007254342,0.007886627,0.010466576,-0.024726862,-0.014463521,0.003703384,0.0055663665,0.011776309,-0.0015369607,0.014215123,-0.0336466,0.01179889,0.018155614,-0.01993956,-0.0010267575,-0.0074293492,0.040398497,-0.004092917,0.012837645,-0.024230067,0.051576395,-0.016879752,-0.017602364,-0.00961412,0.0070285257,-0.021542855,-0.005871218,0.01598778,-0.0063228505,-0.015344203,-0.016687809,0.028430246,0.00891409,-0.0013273752,0.015920034,0.0052276426,-0.025878524,-0.00037294938,0.038027428,0.018742735,0.016247468,0.031185202,-0.05433135,-0.017703982,0.0029723044,0.026172085,0.02147511,-0.014553847,0.0054280544,-0.042476006,0.003398532,0.038388737,-0.023484873,-0.004171952,0.004722379,0.025246238,-0.019183077,-0.008614884,0.029469,-0.016213596,-0.004123966,-0.0060575167,0.0039263773,-0.004101385,-0.02076379,0.013176369,0.0009456049,0.021712217,0.0017811244,-0.0013986484,0.04606648,0.0028325806,0.01144323,0.013932853,-0.014136087,-0.02973998,0.006571248,0.0019829476,0.010466576,-0.021158967,0.059208978,0.016608773,0.011776309,-0.0016414007,0.010139142,0.024772026,-0.046089064,-0.020312157,-0.022581609,-0.03805001,-0.021147678,0.014463521,-0.025788197,0.011606947,0.03497891,-0.036311228,-0.026510809,-0.0011615416,-0.04349218,0.0027436656,0.010844817,0.018268522,0.0064922124,-0.011561784,0.018889517,-0.0597961,0.023530036,0.044147044,0.0410082,-0.016789427,0.023484873,0.0063680136,0.019804072,0.010189951,0.027030187,0.011544848,-0.016168432,-0.008355196,-0.006718029,0.021012187,0.012521503,0.029852888,0.026352737,-0.00659383,0.044959985,-0.01598778,0.0070680436,0.0034295819,-0.016179724,-0.019600837,0.012465049,-0.003920732,-0.039382327,-0.014824826,0.022547737,-0.021779962,0.0055607213,0.019295985,-0.030710988,0.028023778,-0.009710092,0.02035732,-0.047511704,-0.032472353,0.017715272]},{"id":"interface-GatewayGuildRoleUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildRoleUpdateDispatchData\nDescription: GUILD_ROLE_UPDATE — guild_id, role\nProperties: guild_id: string, role: APIRole","meta":{"url":"/docs/typedefs/GatewayGuildRoleUpdateDispatchData"},"embedding":[0.006668294,0.022024233,-0.0039721285,0.02443192,0.007284085,0.015821941,-0.038500797,0.0010713929,0.0382567,-0.003983224,0.005836144,-0.028315285,-0.0261406,0.011067593,0.0204376,-0.020171313,-0.023965916,0.034950294,-0.01456817,0.082016684,-0.019250399,-0.03949938,0.03179922,0.015722085,-0.03253151,0.022301616,0.018551394,0.04899698,-0.009597462,-0.02181342,0.046112195,-0.025585834,0.048508786,-0.02010474,0.0023965915,-0.006762604,-0.012027339,0.020681698,-0.009114815,-0.034661815,-0.010829044,-0.016975857,0.008027472,-0.013747116,-0.06572874,0.044314753,0.00079539657,0.006385363,0.017164478,0.0037252575,-0.022002041,0.0009153648,-0.023433339,0.06492988,0.031288832,-0.00065462454,-0.0043687867,0.0047349324,-0.012360198,0.03193236,-0.018285105,-0.03592668,0.013869164,-0.012970442,0.021924375,0.0023452756,-0.0663057,0.030068347,0.041496538,0.009297888,0.008132878,-0.015810847,-0.026118409,0.012726345,-0.0035810182,-0.0029763225,-0.016299041,-0.016432185,0.012804012,-0.03688088,-0.032953132,0.04500266,-0.069767445,-0.06874667,0.046511628,-0.028381856,-0.018285105,-0.04624534,-0.011994053,0.018018818,-0.04160749,0.0045074783,-0.068924196,0.016742855,-0.04930765,-0.061823186,0.05525475,0.010473993,-0.020903604,0.06848038,0.061734423,-0.023300195,-0.05836144,-0.05387893,-0.001575537,0.003467291,-0.012914965,0.04524676,-0.019927215,-0.024631634,-0.086099766,0.0086765485,0.0004549086,-0.012415675,-0.019183828,0.026406888,0.009697319,-0.037613172,0.030867212,-0.015677704,-0.04484733,-0.016543139,-0.0077334456,-0.052103676,-0.038323272,-0.004532443,-0.017619386,-0.044425707,-0.062488906,0.009797177,-0.006990059,-0.024232203,0.03157731,0.00418294,-0.029580154,-0.02058184,0.00093131437,-0.014035594,-0.014823362,-0.04726611,0.0019513913,0.0033923974,-0.008937289,0.046156578,-0.06612817,0.02181342,-0.017685957,-0.00610798,-0.0070788213,0.04992899,-0.07007811,0.04921889,-0.014878839,0.0022911858,-0.010501731,-0.014612551,-0.011827623,0.008931741,-0.013647257,-0.0054977364,-0.009209124,-0.052103676,-0.010396325,0.016032754,-0.028004616,-0.062178236,0.004795957,0.0072896327,-0.054677792,0.016276851,0.029336056,-0.025097638,-0.020903604,0.0070732734,-0.021802325,0.03455086,-0.01342535,-0.021868898,-0.033086278,-0.015655512,0.030001774,-0.013436446,-0.028182141,-0.04023167,-0.026229363,0.0026087898,-0.045757145,0.0080330195,-0.016321233,0.0199605,-0.002904203,0.03521658,0.055698562,0.019450115,-0.017153382,-0.033352565,0.02582993,-0.007261894,0.03783508,-0.009231316,0.0151007455,-0.035283152,0.04522457,-0.010102299,-0.014312977,-0.0003800151,-0.0009465704,-0.034928102,-0.035682585,-0.012027339,0.038412035,-0.0244763,-0.04624534,0.0051704245,-0.0489526,0.041385584,-0.035305344,0.006834724,0.013880259,0.002884786,0.014790077,0.030734068,0.0023508233,-0.0503728,0.025785549,0.029069768,-0.008593334,0.0047488017,-0.00067993574,0.009575271,-0.0008855461,-0.02112551,-0.0017419669,-0.06430854,-0.00805521,0.0091980295,-0.0016781688,0.017020239,0.02449849,0.015111841,-0.04056453,-0.037724126,-0.012426771,0.0045379903,0.021325227,-0.015688797,0.053790163,0.001419509,-0.008060758,0.04957394,0.0011081462,0.057828866,0.0063798153,-0.021968756,-0.008743121,-0.01791896,0.04194035,0.031621695,0.016931476,0.047443636,0.010756924,-0.0209147,-0.0047377064,0.013358778,-0.022856383,-0.018961921,0.017541718,-0.0026614924,-0.023544293,-0.013325493,0.007677969,0.013913545,0.037657555,-0.018373867,-0.0024992232,0.030223683,0.036348306,0.025741167,0.0016310137,-0.023610864,-0.004726611,-0.01138381,0.005886073,0.039921,-0.03450648,0.057385053,0.0133476835,0.018396059,0.027272323,0.0061967424,-0.025963075,0.009652938,0.011428191,-0.027338896,0.010762471,0.0029596796,0.01993831,-0.03321942,0.027915852,0.018329486,0.007938709,0.026540032,-0.044048466,-0.017674863,0.0040248316,-0.022900764,0.015744274,-0.04628972,-0.003001287,-0.003900009,0.012892774,0.0237662,-0.011062045,0.031133499,-0.01121738,-0.01677614,0.023056097,0.014645837,0.015023078,0.05254749,0.034794956,-0.0054478077,-0.0020013202,-0.020382123,0.005031733,-0.067725904,-0.025208592,-0.014146547,-0.0019014623,0.040475767,0.055432275,-0.04362684,0.010540565,0.023078289,0.047754306,0.057873245,-0.045490857,0.08019705,0.058183916,-0.027560802,0.002753029,-0.020015977,0.006169004,-0.03652583,-0.000032614207,-0.029424818,-0.010657066,0.02260119,-0.008870717,0.041851588,0.022068614,0.038323272,0.0012711089,0.003999867,-0.052236818,-0.048420023,0.034994673,-0.0142796915,0.0064408397,0.04535771,-0.055165987,-0.028381856,-0.023388958,0.032198653,0.011772146,0.018961921,0.011128617,0.000077970704,-0.0024146214,-0.00041399454,0.008066306,0.010734733,-0.08068525,-0.013658352,-0.00052737497,-0.011045402,-0.032709036,-0.035416298,-0.0153892245,-0.02443192,-0.017874578,0.056097995,0.01406888,-0.011783241,0.0149232205,0.0010665387,-0.05059471,0.044980474,-0.03963252,-0.032065507,0.032265224,0.008798597,-0.018662347,-0.01321454,-0.035993256,-0.035971064,0.039410617,0.043471508,0.037258122,-0.004893041,0.039055567,0.019838452,0.022423664,0.009525342,-0.05197053,0.029779868,0.0040747602,0.024720397,0.033130657,-0.017009143,0.0026115635,0.007361752,0.022834191,0.0076557784,0.036015444,-0.04289455,0.03426238,-0.010784661,-0.03319723,0.023988105,0.0011601555,0.011095331,-0.0017045202,0.018684538,0.05472217,-0.030756257,0.0074394196,-0.010340849,-0.013780401,-0.058095153,-0.067592755,0.056808095,0.035593823,-0.017486243,0.038301084,0.00041919548,0.007800018,-0.037280314,0.012637582,0.0019791296,-0.047221728,-0.02341115,-0.028559383,0.009919226,0.0001393851,0.03246494,0.053790163,-0.04553524,0.036636785,-0.018151961,-0.021613704,0.03823451,-0.013136872,0.050417185,-0.010440706,-0.027250133,-0.011716669,0.045135807,-0.037613172,0.0072230604,-0.013713829,-0.0019929989,0.000895948,0.047221728,-0.03321942,0.01642109,-0.0019527783,-0.0073562046,-0.035815727,-0.011783241,-0.012182673,0.0082660215,0.010468445,-0.005836144,-0.0017808006,-0.0009236863,-0.025718978,0.019594355,0.010407421,0.054056454,-0.033729807,0.018462632,-0.030711876,-0.033330373,0.06643884,0.04899698,-0.009209124,-0.02443192,-0.00898167,0.021180987,0.0039360686,0.016864903,0.022989526,-0.009497603,0.024986686,-0.001460423,-0.0076946123,-0.059160307,-0.020714983,0.010279824,-0.008155068,-0.027582994,0.005256413,-0.00034274173,0.016631901,0.029757679,0.0056308806,-0.0037890556,-0.017408574,0.0108124,0.006551793,-0.012837298,0.023499912,-0.05254749,-0.027605183,-0.0118831,-0.028936623,0.018384963,0.011605716,0.03652583,-0.008898456,0.029890822,0.051704243,0.0001119935,-0.010501731,0.0159218,0.007483801,-0.07269661,-0.0006650264,-0.0155112725,0.03608202,-0.020315552,0.017552814,0.057473816,-0.01475679,-0.015300462,0.022179566,-0.0016975857,0.03461743,-0.016299041,-0.007955353,0.006069146,-0.0064630304,0.013824782,0.00853231,0.0011386584,-0.009941417,0.0076890644,0.022279425,0.007849947,0.015300462,-0.02412125,0.004266155,0.015955087,-0.017020239,-0.007001154,-0.014446121,-0.041030534,0.023433339,-0.020870319,0.02547488,-0.016986951,-0.006335434,-0.03013492,-0.05330197,0.008160616,0.0017599969,-0.0045712763,-0.0142242145,-0.02849281,-0.0135806855,0.042717025,0.021014556,0.007800018,0.027671756,0.02179123,0.0053174375,0.044048466,0.039610334,-0.00703444,-0.0038112462,-0.10908929,0.024076868,0.033419136,-0.05285816,0.018995207,0.0047377064,-0.019827357,-0.011982958,0.026029646,-0.033641044,0.021868898,0.025896503,-0.013225635,0.009170291,-0.03193236,0.0063964585,0.0071121072,-0.030068347,0.032975323,-0.02008255,0.02079265,-0.040742055,-0.002156655,0.0182962,0.0086765485,0.045490857,0.02414344,0.003897235,0.0010824882,0.010829044,0.012437866,-0.016543139,-0.02079265,-0.014390645,-0.035726964,-0.031311024,0.015466891,-0.007905424,-0.02231271,0.021691373,0.007933162,-0.00090149563,-0.0034922555,-0.010207704,0.028981004,-0.038744897,-0.0035449583,-0.02409906,-0.039011184,-0.008471285,-0.040764246,-0.041474346,-0.019372448,-0.031666074,-0.051216047,0.024365347,-0.012271436,0.009175839,-0.024742588,0.002705874,0.004063665,-0.0038778181,0.0011386584,0.06981182,-0.021913279,0.027938044,-0.01045735,-0.005372914,0.02449849,-0.043471508,-0.061778802,0.009408841,-0.009475413,0.04864193,-0.0066571985,-0.024875732,0.050994143,0.0149232205,0.004216226,-0.030734068,-0.0418294,0.011583526,0.0153892245,0.010113394,0.0077833747,-0.003664233,0.022856383,0.003650364,0.030001774,0.01490103,0.02949139,0.032553703,0.021591514,0.021502752,0.011661193,-0.0027086476,-0.024853542,-0.005958193,0.02341115,0.006718223,-0.018828778,-0.023588674,-0.01637671,0.030423397,-0.033396948,0.040475767,-0.017164478,0.028870052,-0.01525608,-0.0049845777,0.03353009,0.023699626,-0.005023411,-0.022135185,0.034794956,0.037724126,-0.008449094,-0.006679389,0.011872005,-0.00097222836,0.034018286,0.022667762,-0.026273744,-0.005345176,-0.017552814,0.004840338,0.013136872,0.010013537,0.0077223503,0.0046655866,0.012460057,-0.05254749,0.0044020726,0.00819945,0.020526363,-0.023943724,0.005752929,0.03288656,0.025874313,0.017475147,0.0475324,-0.0000662686,-0.029225102,-0.0035560536,-0.00069449836,-0.009763892,0.01804101,-0.033285994,-0.031244453,-0.02445411,0.013369874,-0.000044511347,0.014823362,-0.008798597,-0.012426771,0.01675395,0.02813776,0.0066294605,0.039233092,0.012870584,-0.005065019,-0.017730338,-0.010069013,-0.023832772,-0.004721063,0.0060857893,0.012282532,-0.0048542074,0.013469732,-0.025918694,0.0047071944,-0.0026434627,0.0028736908,-0.0020248978,-0.056053612,-0.003320278,0.016543139,-0.024276584,0.05436712,0.014845553,0.0025963075,0.029336056,0.055831704,-0.026584413,-0.0046517174,-0.022556808,-0.00209147,0.017674863,-0.010185514,-0.007095464,0.0002895188,-0.005420069,-0.010229895,0.034706194,-0.024986686,0.029447008,-0.01577756,0.015555654,-0.0060414076,-0.008976123,-0.0365924,-0.0038500798,-0.030245872,0.0025449917,0.030334635,0.008953932,-0.026184982,-0.005206484,0.0074338717,-0.01673176,0.029225102,-0.008421356,-0.005389557,-0.0244763,0.00024496412,0.009874845,-0.06994497,0.01694257,0.05285816,0.0051953886,0.022490237,-0.011616812,0.024809161,0.039344043,0.005802858,-0.04145216,0.025741167,-0.06275519,-0.012926061,0.0023841092,0.049707085,0.0026739747,-0.004460323,0.01589961,0.024254393,0.0011317238,0.0044686445,0.012826202,0.009675128,0.003797377,-0.02414344,0.0012690285,0.011239571,-0.027338896,0.04757678,-0.009863749,0.030001774,-0.023943724,-0.02064841,-0.01962764,-0.017663768,0.024897924,0.0074227764,0.022812001,0.029336056,-0.011872005,0.01623247,0.014335168,-0.009114815,-0.004230095,-0.00788878,0.0013168771,-0.0031538478,0.0130703,0.0021289166,0.034040477,0.019228209,0.015466891,-0.0006948451,-0.0091425525,0.0036864236,-0.004490835,-0.0011303369,0.011650098,-0.02264557,-0.055343512,0.037124977,0.028670335,-0.012837298,0.0045074783,0.027361086,-0.02986863,-0.01342535,0.0066571985,-0.002520027,0.0066960324,0.0076557784,0.025075449,-0.013924641,0.008892908,-0.017264334,0.042628262,-0.034040477,0.010268729,-0.0012086977,0.03015711,0.021314131,0.019616546,0.035061248,-0.000064231564,0.014557075,-0.0075725634,-0.006635008,-0.008454642,-0.0067792474,-0.028426237,0.006446387,-0.007178679,-0.0031372048,0.0032897657,-0.0049013626,0.0072896327,-0.00044589362,-0.026384698,-0.03925528,-0.018839872,-0.0112895,-0.02045979,-0.011849813,-0.036303923,-0.021491656,-0.022612285,0.035460677,0.0129371565,-0.013702733,0.019794071,0.014146547,0.06421977,-0.011189641,0.004177392,-0.031998936,-0.007511539,0.032198653,0.012437866,0.035749156,0.0034478742,-0.0009486508,0.008188355,0.002701713,0.018285105,-0.014778981,0.04695544,-0.004035927,-0.01138381,-0.0064241965,0.040830817,0.0054783197,-0.03956595,-0.0073894905,0.01912835,-0.009358912,-0.0012648677,-0.005874978,0.01138381,-0.04296112,-0.036059827,0.003317504,0.009297888,-0.029047577,-0.0071897744,0.04267264,0.025252974,0.0118831,-0.006951225,0.0101355845,0.011084236,0.030867212,-0.051704243,-0.02744985,-0.035238773,-0.0041524274,0.011849813,-0.040542338,0.037635364,0.0065739835,0.014213119,0.013891354,0.0537014,-0.030245872,-0.0030428946,-0.04356027,-0.037080597,0.00586943,-0.011772146,-0.041341204,-0.05401207,-0.009164743,0.04085301,-0.0072785374,-0.009541985,-0.005641976,0.028026806,0.0075059915,-0.025408309,0.038034797,0.02148056,-0.0101910615,-0.028981004,0.0024132344,-0.01038523,0.06253329,-0.008327046,0.035172198,-0.046999823,-0.013281112,-0.015411415,0.0014340716,0.05592047,0.01946121,0.01304811,0.01791896,-0.033641044,0.051171668,0.016010562,0.009536437,-0.025230782,0.028625954,0.0070455354,-0.0033369209,0.00048576746,-0.010845686,0.011816528,-0.013503018,-0.0005433245,0.003961033,-0.0012600136,0.02141399,0.015910706,0.010657066,-0.008415809,0.0059304545,-0.011949671,-0.057429433,-0.027760519,-0.0010006601,-0.03781289,0.0034700648,-0.008410261,0.0052148057,0.0432496,-0.014157643,0.014490502,-0.06133499,0.017397478,-0.04731049,0.0018071521,0.004579598,0.0029846441,-0.019217113,0.008476833,0.01789677,-0.007300728,0.047354873,0.017808007,-0.0013432285,0.043116458,0.008937289,0.022590093,-0.02345553,-0.035238773,0.009730605,0.022878572,0.015211699,0.05769572,-0.014401739,0.0029069767,-0.003320278,0.009419936,-0.027649565,0.0019832905,0.039077755,0.014157643,0.0027516421,0.018373867,0.00594155,-0.001526995,0.00048091327,0.007683517,-0.030623114,-0.032908753,0.0140466895,-0.021802325,-0.0061468133,0.0124711525,0.011516954,0.0068402714,0.027605183,0.021757944,0.015344843,0.0070843687,0.008166163,0.00805521,-0.025208592,0.03892242,0.0130703,0.019050684,-0.0096085565,0.011749956,-0.018074295,0.010412968,-0.03548287,-0.02129194,0.01692038,0.0008057984,0.0021524942,0.021169892,0.0025782776,0.06000355,-0.004729385,-0.042805787,0.014989792,0.00021237157,-0.03450648,0.0073173707,0.03490591,-0.008953932,-0.027938044,-0.012082815,-0.03526096,0.025053257,-0.0072008697,0.0063631725,0.038101368,-0.01623247,0.002834857,0.0042855716,0.04023167,-0.03321942,0.015011983,0.027915852,0.020714983,0.017930055,-0.001891754,-0.018850967,-0.0048486595,-0.025985265,0.035682585,0.018551394,0.0023813355,-0.0056253327,-0.030445589,0.009031599,0.016765045,0.01644328,0.021702468,-0.02915853,0.04926327,-0.0008397779,-0.016964762,-0.013303302,0.009836011,0.017508432,0.00013999187,0.06026984,0.004332727,-0.023677437,-0.038101368,0.0045851455,-0.006801438,0.0041052727,-0.00070351333,-0.0054172953,0.012282532,-0.00094310316,0.019805167,-0.004180166,0.06825848,-0.0031011452,-0.0043992987,-0.0032564797,-0.004213452,0.012293627,-0.008116235,-0.00050691795,-0.022401473,-0.007922066,0.01321454,0.007267442,-0.0017308716,0.017031332,0.018950826,-0.022423664,-0.011827623,0.01993831,0.028004616,-0.016354518,0.0046988726,0.005206484,-0.015810847,0.00041919548,0.005542118,-0.02911415,0.048686314,-0.030046156,0.014545979,0.038722705,0.010873425,0.022035327,-0.0029069767,0.003320278,-0.022468045,0.0029458103,0.03450648,-0.01038523,0.006058051,-0.014967602,0.048064973,-0.0062466715,-0.010168871,-0.015023078,-0.042361975,-0.005769572,0.010712543,-0.049440794,-0.020615125,0.003317504,-0.027605183,-0.017830197,0.035305344,-0.025408309,0.008826336,-0.009969155,-0.0070067015,0.03989881,-0.010507278,-0.017763626,-0.01138381,0.006518507,-0.014712409,0.0020443148,0.013946831,0.015300462,0.01359178,0.01727543,0.015300462,0.03215427,0.016642997,-0.008715383,-0.008748668,0.008227188,0.02312267,0.005575404,0.013769306,-0.025718978,-0.015677704,0.034928102,0.005561535,0.0159218,0.03253151,0.056896858,-0.063775964,0.062710814,0.0148677435,-0.01575537,-0.0018695632,-0.012005148,0.028958814,-0.021835612,-0.023655245,0.018507013,0.011761051,0.010901162,-0.0020346064,0.0046655866,-0.018174153,0.024210012,-0.025852121,0.009480961,0.020825936,0.0063909106,0.04247293,0.013392065,0.028293094,-0.003070633,0.036769927,0.007028892,-0.0075503727,-0.027671756,0.013880259,-0.011222928,-0.0034451003,-0.047754306,0.014745695,-0.024609445,0.0024506813,0.016909285,-0.010862329,0.015555654,0.008404713,-0.0046350746,-0.023300195,-0.0075781113,0.014978697,-0.011661193,0.03987662,0.020859223,-0.019261494,0.010573851,0.03583792,-0.036392685,0.023167051,-0.002805732,-0.007633588,-0.013336588,-0.0058583347,0.002837631,-0.008598882,0.002934715,-0.0019610997,-0.0064963163,0.011006569,-0.0098415585,0.007827756,0.0073950384,0.005261961,-0.018629061,0.011805432,-0.022856383,-0.055698562,-0.06550684,0.02443192,-0.03543849,0.016121516,-0.0073118233,0.013125776,-0.007750089,-0.011916386,-0.01713119,-0.04726611,-0.005952645,-0.011111974,0.021436179,0.010795757,-0.01977188,-0.0012926061,-0.0056502973,-0.0021025653,0.008005281,0.0031039189,0.023211433,0.007017797,-0.03117788,-0.030645305,-0.0041052727,-0.022745429,-0.0065129595,-0.01660971,-0.006934582,0.009852654,0.047044203,-0.022334902,0.011816528,-0.0100190835,-0.00670158,0.0025297354,-0.0010706994,0.0142796915,-0.0041052727,-0.011516954,0.005600368,-0.03716936,-0.0062799575,-0.0002102912,-0.0086155245,-0.018129772,0.014257501,-0.029069768,0.038412035,-0.03441772,-0.0037946033,0.00076765823,-0.01660971,-0.0209147,0.019549973,0.03550506,-0.021447275,-0.0199605,0.013014823,0.044381324,0.022678856,0.009508699,0.026007457,0.022423664,0.02547488,-0.0015727632,0.040364813,0.024942305,-0.0030900496,0.0015796977,-0.048064973,-0.010956639,0.011894195,0.0063798153,0.013846973,0.0077889226,0.014812267,0.019549973,-0.0065795314,0.000031465665,-0.051482335,-0.013613971,-0.014324073,-0.019727498,-0.0016157576,-0.025275163,-0.021180987,-0.017464051,0.031910174,-0.02711699,0.01577756,-0.008099591,0.029557962,0.01858468,-0.011749956,-0.0145126935,0.008737573,0.015344843,0.0055948207,-0.014656932,0.008099591,-0.046733536,0.017231049,0.007716803,-0.020326646,-0.0028168273,0.0010048209,0.04391532,0.007178679,0.025053257,-0.026917273,0.05254749,-0.016387803,-0.01989393,-0.0070788213,0.0024839672,-0.014601456,0.0014909351,-0.008443547,0.00031118936,-0.012693059,-0.002771059,0.022834191,0.016021658,-0.0075725634,0.029691106,0.0040220576,-0.031599503,0.009192482,0.05387893,0.0071232026,0.0021580418,0.012105006,-0.03519439,-0.010401873,-0.01029092,0.022523522,0.01273744,0.0076668737,0.0008210545,-0.04553524,-0.000058987287,0.026584413,-0.003037347,-0.0019541653,0.0051204953,0.008876265,-0.02010474,0.005752929,0.031621695,-0.011095331,0.013880259,0.0011213219,-0.0014229763,-0.011461477,-0.012493343,0.018007722,0.020748269,0.027272323,0.00044415996,-0.0054172953,0.036548022,-0.0016476567,0.0048514334,0.009042695,-0.008155068,-0.023877153,0.011605716,-0.0027280645,-0.008260474,-0.016154801,0.04930765,0.02108113,0.023255814,0.008193902,0.017885674,0.023677437,-0.032686844,-0.02077046,-0.011117522,-0.020759365,-0.007750089,0.0034756125,-0.04486952,0.020326646,0.023056097,-0.020959081,-0.017286526,-0.00440762,-0.032487128,-0.006318791,0.0017017464,0.013558495,-0.009064886,-0.015222794,0.033574473,-0.05325759,0.013536304,0.04151873,0.024809161,-0.02787147,0.025608024,-0.020348838,0.006945677,0.0012385163,0.029646724,-0.024298776,-0.008787503,-0.0425395,-0.007245251,0.025696786,0.027338896,0.050106514,0.019383544,-0.0142796915,0.053523876,0.0019000755,-0.0057751196,-0.0053951046,-0.027782708,-0.02160261,0.0062411237,0.00238827,-0.028759098,-0.037369076,0.02514202,-0.0251864,0.0049512917,0.031421978,-0.025097638,0.03193236,-0.013946831,0.008449094,-0.030090539,-0.02649565,0.011661193]},{"id":"interface-GatewayGuildScheduledEventCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventCreateDispatchData\nDescription: GUILD_SCHEDULED_EVENT_CREATE — a scheduled event was created.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventCreateDispatchData"},"embedding":[0.016691417,0.019495845,-0.012940916,-0.010530685,0.009483248,0.010243484,-0.046267435,-0.006042473,0.009685977,-0.029463392,0.020622121,0.024012214,0.0341487,-0.02269447,0.044510446,0.0060649985,-0.08019088,0.024124842,0.008126085,0.020182874,-0.0039053636,0.012648084,0.03430638,0.023358973,-0.033540513,0.02168082,-0.00044875077,-0.007788202,0.02941834,0.008458336,0.04221284,-0.017660014,0.035950743,-0.02428252,-0.0073433225,0.04196506,0.0027143261,-0.014393813,-0.056764334,-0.023741907,-0.04086131,-0.04408246,0.040478375,-0.00097563694,-0.03845108,-0.0049809576,-0.012479143,0.010739046,-0.0010319508,0.021095159,-0.026805378,-0.007934618,0.0018386462,0.030477041,0.015824184,-0.016195856,-0.022953514,0.033315256,-0.05279984,0.030296836,0.0033337784,-0.010198433,0.0076868366,0.013999616,0.017141927,-0.0023159059,-0.028224487,0.04721351,0.039622404,0.039960288,0.00037202318,0.0021314782,0.017536124,-0.0026383025,0.016590051,-0.0233815,-0.036558934,-0.005963634,0.015655242,-0.0071293297,0.011893479,0.029328238,-0.10938397,-0.041154142,0.015170944,-0.020374341,-0.040681105,-0.00782199,0.022885937,0.014371287,-0.007585472,0.023989689,-0.014247397,0.01738971,0.01613954,-0.06563939,0.048700195,-0.02705316,-0.025183542,0.046898153,0.047528867,-0.06712607,-0.036446307,-0.043812152,-0.0044262665,-0.0041165403,-0.039261997,0.008469599,-0.019811202,-0.025048388,-0.06131449,-0.0049696947,0.0022750783,-0.018245678,0.001112902,0.0040799365,0.045907028,-0.044668123,0.027976707,0.00027945734,-0.07266735,0.020520756,-0.004231984,-0.016995512,-0.006115681,-0.0060312105,0.0012867708,-0.040005337,-0.058251016,0.0004276331,0.009669083,0.0038039987,0.023741907,-0.029440867,-0.02986885,-0.00019938612,-0.036694087,0.0145514915,-0.03784289,-0.050817594,-0.023032352,-0.0056032254,0.045366414,0.09019222,-0.022807097,-0.0031113387,-0.0074221618,0.016984249,0.0005434284,0.06356704,-0.08316425,0.029891377,0.021083895,-0.023786958,0.02342655,-0.012445355,-0.043767102,-0.029936427,-0.026782854,-0.010800991,0.023809483,-0.02130915,0.008289395,0.028652472,-0.035995796,-0.01609449,0.00043185664,-0.00034210648,-0.07298271,0.02249174,0.050051726,-0.018797554,-0.060278315,0.04942101,0.00036428004,0.020419393,-0.06221551,-0.010936144,-0.018166838,-0.021410516,0.032887273,-0.013504054,-0.0394422,-0.044510446,-0.009747922,0.019766152,0.004575498,-0.01083478,0.017930321,-0.062395714,-0.04009544,-0.01214126,0.01922554,0.05325035,0.037505005,-0.018549774,0.034013547,0.016038176,0.020543283,0.0067069763,0.015824184,-0.061855104,-0.0030240524,0.011138874,0.02892278,-0.026309818,0.017130665,-0.010074543,0.02856237,0.011916005,0.030116633,-0.023336448,-0.00009872517,0.0093312,-0.026760329,0.040636055,-0.049466062,0.019822465,0.017862745,-0.03613095,-0.0012536865,-0.00069617963,0.0070335963,-0.011071297,0.028269539,0.00049239397,-0.01829073,0.012118734,-0.045208737,0.01124587,-0.049916573,-0.010468739,0.0039250734,-0.055863313,-0.009291781,0.02032929,0.008509018,0.013785624,0.023696857,0.03707702,-0.0044797645,-0.03757258,-0.021827238,0.001704901,0.008835639,0.005639829,0.012783238,0.019383218,-0.0042179055,0.057665356,0.054466728,0.0004367841,-0.026782854,0.022874674,-0.0088018505,-0.017367182,-0.0027636008,-0.020723486,0.023561703,-0.0031845467,0.061945204,-0.033090003,-0.059377294,0.060278315,-0.01670268,0.00064479327,0.033968497,0.018020423,-0.027526196,0.019822465,-0.009742292,-0.053790964,0.05789061,-0.035297506,-0.0068421294,0.0021173998,-0.0013874318,0.04523126,0.013222486,-0.034193754,-0.03381082,-0.022457952,0.027075686,0.020520756,0.0009918272,0.0746496,0.03527498,-0.006616874,0.018470934,0.024845658,-0.036784187,-0.030094106,0.018808817,-0.022829624,0.008430179,0.02730094,0.022435427,0.002705879,0.030319361,0.02554395,0.03682924,-0.025769206,-0.021534406,-0.026444972,-0.001321263,0.009550824,0.050006673,-0.03410365,0.015869236,0.010254747,0.017614964,-0.025161015,-0.022807097,-0.04424014,0.010603893,0.020374341,0.031603318,0.06960388,-0.014292448,0.010902356,0.0074334247,0.0053892327,0.002717142,-0.031445637,-0.011747063,-0.039870188,-0.013763098,-0.02856237,-0.017096877,0.07068511,0.019890042,-0.05023193,-0.013616682,0.04631249,0.053385504,0.032391712,-0.00033788293,0.013470266,0.070820265,-0.0072757457,0.0125579825,-0.033675667,-0.05739505,-0.05023193,0.015283572,-0.033337783,-0.014123507,0.026737804,-0.023674332,0.029485917,-0.021252837,0.05577321,-0.014326236,-0.044375293,-0.029891377,-0.07757792,0.056854434,0.019101648,-0.03225656,0.03254939,-0.01503579,0.028742574,0.0076530483,0.023922112,0.0064197755,0.007377111,-0.02639992,0.039081793,-0.014968214,-0.045952078,0.0013634984,-0.0031507583,-0.062350664,-0.016477425,-0.03450911,-0.019811202,-0.010885462,0.00431927,0.011482389,0.013661733,-0.027368518,-0.0074897385,0.013436478,-0.021613246,0.035748016,0.011623173,-0.0044825803,0.042550724,-0.04433024,-0.026107088,0.033067476,-0.009010212,-0.0128733395,-0.020239187,-0.023606755,-0.024305046,0.060773876,-0.011724538,0.017716328,0.0012874748,0.026805378,-0.0011143098,0.024665454,-0.0051132953,-0.024778081,0.019540897,-0.0009826762,0.017378446,0.02790913,0.009894338,-0.0011818863,0.044623073,0.034081124,-0.010322324,0.019428268,-0.044307716,-0.033743244,-0.020881165,-0.025994461,0.032121405,0.028652472,-0.009128471,-0.00012019481,0.015610191,0.010862936,-0.034171227,-0.0009369212,0.027751451,-0.014281185,-0.033135053,-0.05325035,0.009241099,0.058971833,-0.008047245,0.059061937,0.0003109579,-0.0022356587,-0.06419776,0.015869236,0.02199618,-0.029485917,0.015486301,0.027526196,0.03324768,-0.011167031,0.019383218,0.06451312,-0.019338166,0.07176633,0.0017710697,0.0029198716,-0.0024947023,-0.014900638,-0.010181539,-0.03225656,-0.03133301,-0.055502903,0.014574017,-0.007731888,-0.020565808,-0.04453297,0.006836498,-0.010525053,0.061629847,-0.040951412,0.020081509,-0.007737519,-0.0011980765,0.0062846225,0.02085864,-0.035590336,-0.012332727,0.0489705,0.016995512,-0.012760712,0.037189648,-0.02730094,0.0134590035,0.03646883,0.013109858,-0.0021568194,0.028179437,0.01503579,0.007501001,0.041446973,0.07280251,0.00041144286,-0.012907128,-0.007675574,0.0013008493,-0.05410632,0.024597878,0.02881015,-0.010046386,-0.021613246,-0.012501668,0.0025045571,-0.058070812,0.00085174653,0.019338166,-0.044578023,-0.03250434,0.00023986169,-0.019540897,0.030769872,0.0038518654,-0.042528197,-0.004192564,0.0024764002,-0.047799174,0.012614296,0.024034739,0.016331008,-0.021410516,-0.021624507,0.022638157,-0.027683875,0.030567143,-0.012512932,0.023449076,-0.030927552,0.017772643,-0.0046374435,-0.014754222,-0.012208837,0.000059173508,0.016162068,-0.07289261,-0.002123031,-0.0245303,0.008993317,-0.007027965,0.017175715,0.0468531,0.00011429946,-0.009545193,0.016713943,0.008452705,0.029012881,0.008503387,-0.007709362,0.042145263,0.01939448,0.005789061,0.0031676525,0.002306051,-0.00395323,0.0133125875,0.0041278033,0.026242241,0.004958432,-0.012591771,-0.009488879,-0.0030606561,0.009224204,0.030454515,0.01874124,-0.010654575,0.008126085,-0.0032183349,0.01894397,-0.007011071,0.0063409363,-0.023539178,-0.031670894,0.012749449,-0.002016035,0.015993126,-0.01014775,-0.019169224,-0.019495845,0.021928603,0.026737804,-0.010485633,-0.021725873,0.013695521,-0.014878112,0.007281377,0.027008109,-0.009680346,-0.016916672,-0.079019554,0.010125225,0.05716979,-0.08379497,0.03475689,0.05671928,-0.0012382001,-0.0018682111,0.019788677,-0.035500232,0.017333394,0.015058316,0.0059467396,0.023246346,-0.029080458,0.015993126,0.011476757,-0.02493576,0.016815307,-0.010322324,0.039419677,-0.045298837,-0.03198625,0.022097543,0.025251118,0.041784856,0.028427217,-0.02383201,0.0011952609,-0.0040686736,0.0083400775,0.005073875,-0.029148035,0.0017302422,-0.026782854,-0.015103367,0.0067970785,-0.029215612,-0.028269539,0.033563036,-0.00920731,-0.02872005,0.028449742,0.0016654812,0.037054494,-0.054241475,-0.027233364,-0.029080458,0.0035393238,0.008120453,-0.06131449,-0.039509777,-0.03218898,-0.02709821,-0.01581292,0.03304495,-0.0008404838,0.028269539,0.0077431505,0.004020807,0.0025763575,0.007940249,-0.016770257,0.0266477,-0.014078456,0.022671945,0.008548439,0.0026946163,0.025566475,-0.040208068,-0.0014430417,0.032369185,-0.0040968307,0.04942101,-0.0106489435,0.0021314782,0.044758227,-0.012242625,0.020622121,0.006177626,0.017614964,0.014168558,0.048429888,0.013413953,0.042528197,-0.00012556222,0.021613246,-0.0233815,0.03682924,0.027008109,0.01662384,0.028089335,0.03225656,0.0039954656,0.026107088,-0.03205383,-0.04901555,0.020396866,0.010237853,-0.0041953796,0.018324519,-0.0028720049,0.006205783,0.03748248,-0.01829073,0.059377294,-0.040973935,0.034081124,0.0064254072,0.0007412307,-0.005068244,0.021421777,0.0012051158,0.018977758,-0.011499283,0.032481812,0.0020089955,-0.023606755,-0.03345041,-0.014889374,0.029125508,0.03777531,-0.015058316,0.0022131333,0.030950077,-0.008216186,0.01564398,0.0015838263,-0.0047810436,0.021590719,-0.017783904,-0.042393044,0.015486301,-0.027436094,0.01878629,-0.03063472,-0.027481144,-0.005121742,-0.0007961367,0.04604218,0.02619719,-0.009398777,-0.0053976797,-0.029508444,0.024980811,0.030364413,-0.012783238,-0.033765767,-0.023133717,-0.01030543,0.011313447,0.035883166,-0.005287868,-0.005020377,0.012783238,-0.003547771,0.020937478,-0.0047613336,0.017795168,0.028990356,0.039667457,-0.007900829,-0.020757275,-0.006628137,-0.009714134,0.0130197555,0.011645698,-0.018684926,0.015576404,-0.00032239663,0.0050260085,-0.04356437,-0.023899587,-0.029688647,0.0020287056,0.01478801,0.051718615,-0.00019745034,0.020813588,0.014652857,-0.024395147,0.039577354,0.05239438,-0.039104316,-0.015396199,-0.014776747,-0.015092105,-0.025656577,-0.005087954,-0.0064197755,-0.04498348,-0.033788294,0.015373673,0.025634052,-0.03162584,0.012073684,-0.05829607,0.0007876896,0.0036266102,-0.02362928,-0.012952179,-0.00953393,-0.012118734,0.024237469,-0.0047725965,0.01589176,-0.02383201,-0.02741357,-0.017919058,-0.026174664,0.0028945305,-0.007867041,0.003308437,-0.013582894,-0.056043517,-0.015857972,-0.058251016,-0.021748397,0.054737035,-0.019090386,-0.00017668461,-0.021658296,0.0044910274,0.015632717,-0.0143825505,-0.077442765,0.00541739,-0.03984766,-0.008238712,0.009635295,0.04081626,0.009866182,-0.0057834294,0.019484583,0.0019174856,0.009550824,0.0040658577,0.004082752,-0.02745862,0.0024031925,0.017592438,-0.017851481,-0.033788294,0.000086978456,0.016567526,0.010969932,0.03845108,-0.03568044,-0.016319746,-0.011076929,-0.007298271,0.03324768,-0.009224204,0.046492692,0.018617349,-0.024710504,0.00916789,-0.0029029776,0.0011917412,-0.0000947656,-0.011302184,0.015407462,0.014348762,0.018752502,-0.003882838,0.018729977,-0.0025031494,0.0058003236,0.028652472,0.0136279445,0.0143825505,0.019833729,-0.033135053,-0.026872955,-0.014472652,-0.0446456,0.04363195,0.021331675,-0.010547579,-0.023899587,-0.0017302422,-0.020227924,-0.011302184,-0.003091629,0.03324768,-0.01906786,0.0021047292,0.05716979,-0.008013457,-0.010530685,-0.012828289,0.019867517,-0.043812152,0.003088813,0.03824835,0.047799174,0.019811202,0.03547771,0.02168082,0.017209504,0.015903024,0.0022412902,0.0031479427,0.0018161208,-0.0025453847,0.0024637298,0.0010242077,-0.009077788,0.013087332,0.011972318,-0.0073602167,0.006256466,-0.026625175,-0.016184593,-0.02917056,-0.005000667,-0.02171461,-0.028427217,0.011994844,-0.020700961,-0.033180103,0.003544955,0.018876392,0.009162259,-0.005147083,0.007236326,0.0012966257,0.025611525,-0.009308674,0.012817026,0.01099809,-0.010378637,0.011916005,-0.016409848,0.008959529,-0.006605611,-0.02835964,0.006982914,-0.015576404,0.008210556,0.00200618,0.018718714,0.028584896,0.008154241,-0.039261997,0.030927552,-0.031107755,0.003784289,-0.0032155192,0.020306764,-0.004758518,-0.008610384,-0.017569913,-0.03223403,-0.021444304,-0.0298238,0.015283572,-0.004657153,-0.02554395,-0.01352658,0.04563672,0.0006623913,-0.018718714,-0.023201294,-0.010710889,0.023674332,-0.01752486,-0.05991791,-0.016477425,-0.024620403,0.0014317789,0.03209888,-0.024800608,0.0447357,-0.028787626,-0.005000667,0.0062114145,-0.0020075878,0.014010879,0.037505005,-0.033923447,-0.01193853,0.0054708878,0.021500617,-0.05784556,-0.045929555,-0.04257325,-0.01845967,0.0027016557,-0.0015373674,-0.045524094,0.018684926,0.019214276,-0.019529633,-0.0009179153,0.03667156,-0.04122172,-0.04865514,0.00554128,-0.0050485344,0.05491724,0.014619068,0.041244242,-0.02428252,0.019833729,-0.01934943,-0.03637873,0.037099548,0.018527247,0.01267061,-0.009646557,-0.010705258,0.056043517,0.02138799,-0.007934618,-0.019495845,0.014607806,-0.023741907,-0.016308483,0.005065428,0.02118526,0.0037336063,0.012726923,0.03869886,-0.019056598,-0.034126177,0.018076736,-0.0020554545,0.013954565,0.008002195,0.008548439,0.015948074,-0.0490606,0.012096209,0.010603893,-0.040928885,-0.0024806238,-0.009719766,0.0076980996,0.018200627,-0.027075686,0.018729977,-0.04635754,0.009162259,-0.032369185,-0.019124174,0.03475689,-0.034914568,0.010192802,-0.0024834396,0.022075018,-0.017614964,0.017738855,0.030386938,0.014664119,0.04306881,0.018166838,0.020633385,0.005496229,-0.037459955,-0.012276413,0.0030099738,0.026039511,0.039915238,0.014596542,0.027345993,-0.012107472,0.00957335,-0.0060199476,-0.0012797316,-0.008711748,0.00095240754,0.0038237085,0.017648753,-0.017254556,0.00313668,-0.0028016127,0.004586761,0.009269255,-0.0028635578,-0.0054596253,-0.0017372814,-0.017693803,0.011645698,-0.018189365,-0.0066506625,0.042730927,0.013875726,0.0105025275,-0.01939448,-0.004513553,0.0092636235,-0.010046386,0.039104316,0.036536407,0.014360025,-0.020689698,-0.006943494,-0.023268871,-0.009173522,0.008931372,-0.036311153,-0.0029958955,-0.0016049439,-0.009792973,0.012963442,0.0020104034,0.036694087,0.009702872,-0.040951412,-0.0002599235,-0.0047050198,-0.018842604,0.024147367,0.01690541,-0.014405075,-0.016939199,-0.03113028,-0.02917056,-0.013909514,-0.0053723385,0.011054403,-0.0013656102,0.023246346,0.010153382,0.005924214,-0.014731696,-0.010418057,0.02835964,0.033540513,0.007281377,-0.0010826333,0.003511167,0.00029459168,0.01738971,-0.015801659,0.02892278,0.01604944,0.015824184,-0.037099548,-0.00029846324,0.0078050955,0.013098595,-0.01813305,0.039329574,-0.00057968043,0.044870853,-0.032369185,-0.0070617534,0.004933091,0.029350763,0.030477041,-0.0149119,0.038406026,0.031062704,0.033878397,-0.05077254,0.006177626,-0.04387973,0.0047162827,-0.004595208,0.00023739795,0.009066525,0.00060572557,-0.015215995,0.002917056,0.076361544,-0.010570104,-0.0042629563,0.0016584421,0.017975371,0.000884127,0.0065943487,-0.01214126,-0.024102315,-0.014393813,-0.0019062229,0.019462056,0.013808149,-0.0014205162,0.030341888,-0.0030944445,-0.010525053,0.0015486301,0.023584228,-0.025814256,0.027526196,0.011110717,-0.0019667603,-0.019698575,-0.019034073,-0.03304495,0.021005055,-0.015948074,0.0021920155,0.010136488,0.007867041,0.023133717,0.016342271,0.0077431505,-0.023043616,-0.007011071,0.00063740206,-0.031715944,0.003198625,-0.017614964,0.009421302,-0.007895198,-0.0025650945,0.0027720479,-0.020948742,0.00031852507,-0.008587858,-0.046222385,-0.017693803,-0.05158346,0.0036378729,0.013222486,0.015576404,-0.02615214,-0.012681873,-0.019371955,0.007377111,0.027368518,-0.010164645,0.015294834,-0.02212007,0.016939199,-0.01193853,-0.01853851,0.0028860834,0.03712207,-0.0043502427,-0.0038631281,-0.014348762,0.024372622,0.012231362,0.0006423295,-0.006250834,0.0116344355,-0.005149899,0.0057411944,0.026490021,-0.040906362,-0.0071856435,0.027255889,0.010001334,-0.01821189,0.0069885454,0.03394597,-0.061044183,0.043091338,0.00507106,0.0017809246,-0.010496897,-0.0049021184,0.040185545,-0.0023919295,0.002124439,-0.015993126,0.030499566,0.003446406,-0.017491072,0.0030747347,-0.021376727,-0.023246346,0.036806714,0.055232596,0.010299798,0.030972602,-0.007309534,0.021703348,0.0191467,0.004034885,0.0074784756,-0.0040067285,-0.01568903,-0.019968882,-0.01112198,-0.027683875,-0.0075066327,-0.013301325,0.012659348,-0.06559434,-0.0010129448,-0.020239187,0.0244402,0.023313923,-0.011302184,0.0052456325,-0.039374623,-0.015857972,-0.011195187,-0.04514116,0.030341888,0.01099809,-0.018279467,0.005991791,0.013672996,-0.026805378,0.008644172,0.021703348,0.0006338825,-0.0017851482,-0.007883935,0.018223153,0.011994844,0.004792306,-0.019259328,-0.000090278096,0.010496897,0.023944637,0.004302376,-0.017423496,-0.01099809,-0.033563036,-0.0027495224,-0.037955515,-0.018448409,-0.010052017,0.019901305,-0.0031929938,0.04338417,-0.023032352,0.013841937,-0.0074334247,-0.023786958,-0.0027987969,-0.030139158,-0.02110642,0.014596542,-0.00038574968,0.0033337784,-0.008565333,-0.0020343368,-0.018549774,0.03480194,-0.013031019,0.01629722,-0.008216186,0.0207798,-0.030544616,-0.019462056,0.009635295,-0.014923163,-0.024417674,-0.004933091,-0.03964493,-0.0026664594,0.009939389,-0.0045811296,0.0058679003,0.0040517794,-0.019833729,-0.027323466,-0.0076812054,0.01695046,0.0090946825,-0.0046796785,-0.030724822,-0.046447642,-0.053385504,0.024034739,0.010907987,-0.00765868,0.013402689,-0.037414905,0.0037392378,-0.004026438,0.0009707095,0.035995796,0.012614296,-0.009742292,0.016871622,0.014112243,0.016105752,-0.0063690934,0.042190317,0.007636154,0.0077262563,0.017446022,-0.024192419,0.013380164,0.04982647,0.00091158,0.024575353,0.0102491155,0.00200618,0.0049696947,-0.033315256,-0.027075686,0.005223107,0.03182857,0.00429956,0.015869236,0.039307047,0.0091172075,0.008858164,0.014810535,-0.013796886,-0.016071964,-0.030251786,-0.020543283,0.010316692,-0.010902356,-0.01246788,0.0010629233,0.041356873,-0.006752027,0.018178102,-0.013447741,0.053430554,-0.014360025,0.011611911,-0.015621454,-0.0005251264,-0.0007391189,0.01055321,-0.010468739,0.014483915,-0.046582792,0.031806048,-0.0038152614,-0.01841462,-0.00364632,-0.014089718,0.04721351,-0.016398584,0.00046106943,-0.0131436465,-0.0011466902,-0.029530969,-0.0006233236,0.006324042,0.012389041,-0.0128733395,0.00014201642,0.03315758,-0.025431322,-0.017164454,-0.002259592,0.0012269374,0.011994844,-0.005991791,0.04291113,-0.010232221,-0.042190317,-0.027638825,0.020475706,0.010874199,-0.0026749065,-0.006684451,-0.008103559,-0.010474371,-0.0033112527,-0.01352658,-0.002398969,-0.005468072,-0.025611525,-0.04009544,0.03430638,0.0036885554,0.0012776199,0.031107755,0.007303903,-0.014067193,-0.010412426,-0.0013451964,0.038608756,0.0009925311,-0.00023194255,-0.018651137,0.024034739,-0.007788202,-0.036513884,0.016060703,0.0014528966,0.02017161,0.011893479,-0.0011438745,0.025679102,0.0012431276,0.012625559,0.0051639774,0.009156628,0.026670227,-0.010451846,0.0047641494,0.006752027,-0.006746396,-0.015261046,0.021252837,0.02917056,-0.013267537,0.001020688,-0.01267061,-0.018437145,-0.015475038,-0.022930989,-0.023088668,0.010851674,0.009179153,-0.02786408,0.0030691032,0.022638157,-0.017795168,-0.001203004,0.018955233,-0.007703731,0.0082781315,-0.011555596,0.012276413,-0.0011234607,-0.0016654812,0.03748248,-0.046492692,0.007793833,0.034576688,0.007365848,0.00007263603,0.036401253,-0.0067970785,0.010654575,0.012940916,0.042257894,-0.016218381,-0.018752502,-0.011144506,-0.00570459,0.04403741,-0.0023539178,0.063612096,0.012952179,0.006324042,0.029102983,0.03802309,-0.0017189794,-0.011679486,-0.025859307,-0.017693803,-0.010936144,-0.019630998,-0.01181464,-0.013278799,0.0143825505,-0.037752785,-0.028945304,0.009629664,-0.01112198,0.024778081,0.0076079974,-0.011961056,-0.036649037,0.01226515,-0.007354585]},{"id":"interface-GatewayGuildScheduledEventDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventDeleteDispatchData\nDescription: GUILD_SCHEDULED_EVENT_DELETE — a scheduled event was deleted.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventDeleteDispatchData"},"embedding":[0.007948073,0.034713622,-0.032705206,-0.01411596,0.008986515,0.042929865,-0.057376757,0.018771831,0.024785664,-0.018589247,0.03555807,-0.017676331,0.00828471,-0.005018184,0.0623065,0.01655801,-0.059430815,0.049571328,-0.027113598,0.048749704,0.010099131,0.04297551,0.029920815,0.027067952,-0.02633762,0.012529769,0.041606136,-0.02357605,0.04637612,0.0034890499,0.032591093,-0.020803068,0.055550925,-0.031586885,-0.019604865,0.017037291,0.013214456,-0.0059910095,-0.058244027,-0.021647515,-0.035580892,-0.045326266,0.015234282,0.027067952,-0.025013892,0.02909919,-0.01907994,-0.008678406,-0.0028457297,-0.0019342403,-0.02264031,-0.023712987,-0.009762493,0.05427284,0.012233071,0.00016938867,-0.0026303385,0.030788084,-0.01052706,0.011103338,-0.016535187,0.00048855256,0.0070066284,0.01885171,-0.006475996,-0.014173017,-0.01995862,0.06440621,0.027912399,0.04142355,-0.014595241,-0.0123357745,-0.01869195,-0.009602733,0.024123799,-0.037361078,-0.00006891444,0.0040425053,0.024899777,-0.029030722,0.025356235,0.029144837,-0.098686196,-0.043865602,0.009933664,-0.024009684,-0.0520362,-0.0032094696,0.03806859,0.065547355,-0.033001903,0.021658927,-0.0018643452,-0.0034776386,-0.0055859033,-0.08092998,0.037886005,-0.026771255,-0.035786297,0.054592364,0.057285465,-0.06481702,-0.06363023,-0.044755697,-0.007839664,-0.0009985017,-0.031883582,0.017082937,-0.03122172,-0.02996646,-0.037087202,-0.008301828,-0.022412082,-0.007754078,-0.0097510815,0.026040923,0.029441534,-0.02964694,0.060982775,0.014640886,-0.06837739,0.015416865,-0.007348972,-0.034553863,-0.041743074,0.014184428,0.0010634043,-0.046718463,-0.059887275,-0.007953779,0.0009300329,-0.01623849,-0.0037229846,-0.047334682,-0.0125183575,-0.0007503026,-0.028140629,-0.008376002,-0.02830039,-0.0509407,-0.0067955167,0.009169098,0.028893784,0.08070175,-0.03989442,0.026223505,0.016729182,0.013842085,-0.0017830386,0.051077638,-0.042268,0.012506946,0.04628483,-0.0017502307,0.0015733533,0.0036003115,-0.017539395,-0.019410871,-0.031358656,-0.025424704,-0.00055238535,-0.040328056,0.0034120227,0.01711717,-0.034987498,-0.014070314,0.01048712,0.002952712,-0.050256014,0.00431638,0.022720192,-0.031952053,-0.034165874,0.010743878,-0.03083373,0.026428912,-0.038821742,-0.017710567,-0.010418652,-0.027980868,0.012974815,-0.023302175,-0.020791657,-0.03918691,-0.01570215,0.00981955,0.011913551,0.007902428,-0.03523855,-0.01861207,-0.017630685,0.011103338,0.007531555,0.032591093,0.016523775,-0.015496745,0.0298067,-0.0027601437,0.0022024093,-0.011439975,0.016124375,-0.03067397,0.014800647,0.008119245,0.026200682,-0.032979082,0.008535762,-0.01419584,0.03154124,0.0066985195,0.028414503,-0.01695741,-0.023165237,-0.024740018,-0.022834307,0.022925597,-0.038684804,0.048430182,0.018566424,-0.014355601,0.00524356,-0.0034319928,-0.00550317,-0.0010512796,0.03154124,-0.01797303,0.008518646,0.012803644,-0.055322696,-0.014013257,-0.044458997,-0.019524986,0.009323153,-0.027615702,-0.010355888,0.0067156367,0.0005916122,0.0030154749,0.014173017,0.019901564,-0.02713642,-0.054546718,-0.0077654896,0.002250908,0.0064931135,-0.00056486664,0.031701,0.011377213,0.0013508301,0.051534094,0.026428912,0.03681333,-0.00520362,-0.02058625,-0.026246328,-0.0192397,0.0029470061,-0.013910554,0.021544812,-0.005865484,0.06253473,-0.012837878,-0.04811066,0.04439053,-0.013397039,0.018669128,0.05833532,-0.0073147374,-0.041834366,0.017653508,-0.0032437039,-0.03619711,0.055322696,-0.033960465,0.013031873,0.024146622,0.011325861,0.03854787,0.013431273,-0.07024887,-0.033001903,-0.0044761403,0.031723823,0.014937584,0.0038114234,0.073763594,0.01971898,0.008062188,0.011411447,0.044185124,-0.057057235,-0.0042422055,0.017938795,-0.027821109,-0.01131445,0.031016313,0.016500952,0.022275144,0.0047928076,0.0117195565,0.044458997,-0.028277567,-0.044527467,-0.03510161,-0.013591033,0.0040767393,0.019285345,-0.017858915,-0.019456517,-0.009437267,0.0038513634,-0.029464357,-0.037908826,-0.019445106,0.011799436,-0.019365225,0.0044675814,0.056418195,0.02105412,-0.018486544,0.041514844,0.010629763,-0.011799436,-0.03382353,-0.024534611,-0.044595934,-0.0117195565,-0.02357605,0.004185148,0.07399182,0.017699154,-0.021225292,-0.022115385,0.06577558,0.035626538,0.06143923,-0.018954413,0.051534094,0.058472253,-0.024831308,0.03635687,-0.0037315432,-0.032773677,-0.019935798,0.038981505,-0.023199473,-0.028254744,0.009020749,-0.018121378,0.027706994,-0.035626538,0.03430281,0.0020041354,-0.05504882,-0.021944214,-0.056509487,0.0758633,0.04124097,-0.017448103,0.0343941,0.0036602216,0.0128835235,0.0055887564,0.0062192385,0.014469715,-0.0021824392,-0.055185758,0.017779035,-0.0044904044,-0.06048067,0.0066471677,-0.022754425,-0.057787567,-0.017025879,-0.043568905,-0.009813844,-0.025721401,0.027182067,0.013203044,-0.020985652,-0.010247479,-0.0027416002,-0.004938304,-0.011913551,0.034919027,0.013374216,-0.030240335,0.06659721,-0.062169563,-0.028688379,0.040601928,0.008244771,-0.00058341026,-0.017961618,-0.022800071,-0.031198896,0.02973823,0.020552017,0.005722841,-0.022103973,0.039552074,0.015816266,-0.0059111295,-0.008336063,-0.031952053,0.0411725,0.023233706,0.0035375487,0.021510579,-0.026611494,-0.0051294453,0.048521474,0.033298604,-0.022743015,0.015234282,-0.08147773,-0.00011384702,-0.0058283964,-0.012324363,0.019102763,0.027067952,-0.0026931015,0.008318945,0.022777248,0.007679904,-0.018030087,0.00091790827,0.04249623,-0.0062820017,-0.07673057,-0.069883704,-0.0011069104,0.029122014,-0.017938795,0.06906208,0.015530979,0.011023458,-0.053359926,-0.022446316,0.016443895,-0.044824164,-0.0036488103,0.016911766,0.0327965,0.021909978,-0.0000124924145,0.062032625,-0.0060195383,0.070294514,0.017151404,0.010721055,0.01300905,-0.045463204,0.011206041,-0.046923872,-0.051853616,-0.055870444,0.0062021217,0.012404243,-0.03612864,-0.06093713,0.0054860534,-0.021305172,0.06586687,-0.041355085,0.011708145,0.024762841,0.0018486545,-0.012621061,0.035763476,-0.01214178,0.004518933,0.05833532,0.013020461,-0.008130656,0.038137056,-0.02357605,0.0093630925,0.05189926,0.009328858,0.013842085,0.016672125,-0.0007196344,-0.029601295,0.029920815,0.037520837,0.01939946,-0.024557434,-0.011799436,0.021168234,-0.05404461,0.015074521,0.025059538,-0.01028742,-0.03950643,-0.012986227,0.009060689,-0.03336707,0.030970668,-0.0034890499,-0.018680539,-0.047562912,0.032225925,-0.02018685,0.0129063465,-0.0044419058,-0.049708262,-0.008450177,-0.0036259873,-0.06198698,0.007035157,0.021875745,-0.013670914,-0.028323213,-0.014640886,0.024374852,-0.03352683,0.018566424,-0.02405533,0.034919027,-0.023131004,0.017128583,0.022651723,-0.018771831,-0.018429488,0.00693816,0.011046281,-0.06390411,-0.00056201377,-0.0021096913,0.01885171,-0.011206041,0.011730968,0.06563865,0.012940581,0.006687108,0.028140629,0.017402457,0.03539831,-0.001651807,0.014834881,0.022583254,0.028962253,0.002019826,-0.0024120947,-0.006727048,-0.017950207,0.024352029,0.0057570753,0.026109392,-0.0029983576,0.001618999,-0.0044076713,-0.007622847,0.00024088852,0.0125411805,-0.002519077,-0.009756788,0.0095228525,0.005414732,0.00064046745,-0.034188695,0.020483548,-0.02861991,-0.0346908,-0.00044575965,0.009191921,0.02916766,-0.008621348,-0.0048983637,0.0038542163,0.0045731375,-0.0035346958,-0.014446892,-0.0028357445,0.019194053,-0.023918394,0.010829464,0.000105020976,-0.027866755,-0.02026673,-0.060663253,0.0032208809,0.047836788,-0.0726681,0.010652586,0.03989442,-0.008684111,-0.038137056,0.009129157,-0.011303038,-0.0039540664,0.017653508,-0.017242696,0.02736465,-0.0029413004,0.047517266,0.01427572,-0.019696157,0.022161031,-0.003988301,0.044961102,-0.04076169,-0.012438477,0.035307016,0.01955922,0.043819956,0.0056258435,-0.023758633,0.018178435,-0.002122529,0.00082875637,0.015747797,-0.023712987,-0.0066699907,-0.04738033,-0.0354896,-0.010024956,-0.029190483,-0.024740018,0.022994066,0.0042051184,-0.010875109,0.00053241535,0.013705148,0.025538819,-0.055642217,-0.028209098,-0.022161031,-0.000433635,-0.0033549655,-0.04541756,-0.04811066,-0.01743669,-0.020426491,-0.014777824,0.014264309,-0.009380209,0.01773339,-0.03083373,0.009220449,0.0014963261,0.022366436,-0.025812693,0.020221084,-0.023131004,-0.009397327,-0.028117806,-0.006333353,0.017573629,-0.020631896,-0.019524986,0.021818686,0.011845082,0.036950264,-0.008849577,-0.007600024,0.07175518,0.0027886725,0.010236068,0.014173017,0.025059538,0.009939371,0.038273994,-0.0037828947,0.023621695,0.01655801,0.013134575,-0.0096826125,0.023690164,0.03028598,0.01893159,0.03286497,0.023895571,0.007286209,0.006835457,-0.037498016,-0.04548603,-0.0087696975,-0.0031467066,-0.032454155,0.012598238,-0.013214456,0.011685322,0.024466142,-0.02027814,0.0531317,-0.013362804,0.028711202,0.020460725,0.011046281,-0.0011104764,0.019604865,-0.007183506,0.00352899,0.012370009,0.013397039,0.02097424,-0.011508444,-0.032956257,-0.027980868,0.011109044,0.028688379,-0.012210248,0.006909631,0.022275144,0.00441623,0.0017502307,0.0075886124,-0.023941217,0.025264943,0.0069039254,-0.06367587,-0.0061621815,-0.02736465,0.025036715,-0.048704058,-0.02145352,-0.013967611,-0.016900353,0.022446316,0.02034661,0.008478705,-0.010116247,-0.021944214,0.026520204,0.0017402457,0.0047357506,-0.02341629,-0.03895868,-0.02318806,0.014709355,0.0030325921,-0.008741168,0.019251112,0.0095000295,0.002270878,0.016112963,0.00042614623,0.016546598,0.02916766,0.049251806,-0.003959772,-0.055185758,-0.03564936,0.000056611476,-0.0020583398,0.02002709,-0.0053947615,0.009933664,0.0053319987,0.005574492,-0.04393407,-0.013488331,-0.026086569,-0.023849925,-0.0035004613,0.046878226,-0.007223446,0.011017752,0.029350242,-0.027182067,0.04683258,0.04897793,-0.03391482,-0.013237279,-0.03854787,-0.0014920468,-0.0038884506,-0.003757219,0.01656942,-0.0324998,-0.031244542,0.03325296,0.024009684,-0.037361078,0.023530403,-0.05317734,0.007782607,0.019148408,-0.005717135,-0.019867329,0.00049104885,-0.020780245,0.0058597783,0.007240563,0.007080803,-0.016888943,-0.043705843,0.010709643,-0.030080575,0.0043078214,-0.01340845,0.0068411627,-0.011913551,-0.050119076,0.011126161,-0.048749704,-0.009009337,0.046262007,-0.016694946,-0.005745664,0.0025304884,0.016888943,0.03414305,0.0066699907,-0.076776214,0.038388107,-0.029350242,-0.0065444647,-0.002055487,0.051123284,-0.02026673,0.018338196,0.032842144,0.0010883667,-0.0016418219,0.0051665325,0.011268804,-0.017961618,0.0011447108,-0.0013971891,0.006475996,-0.023986861,0.006253473,0.019490752,0.036265578,0.026520204,-0.029327419,-0.038045764,0.0031238836,-0.017139994,0.02114541,-0.013203044,0.022115385,0.011890728,-0.01750516,0.013967611,-0.018977236,0.0062135328,-0.009465795,-0.0034091698,0.012757998,-0.010572705,-0.0011204615,-0.013214456,0.010059191,-0.024762841,0.016295547,0.016854707,0.01040724,0.02238926,-0.0076399636,0.005349116,-0.028505795,-0.023005478,-0.035626538,0.03218028,0.04014547,-0.00946009,-0.025652934,-0.0024891219,-0.023393467,-0.03635687,-0.011799436,0.039643366,-0.019627688,0.008666994,0.038981505,0.0042022653,-0.0024991068,0.014287132,0.03809141,-0.033640947,0.011348684,0.039734658,0.040168293,0.003965478,0.031883582,-0.010823757,0.015085933,0.008016542,0.017402457,-0.012233071,0.017082937,-0.0063447645,-0.022594666,0.0025618698,-0.0009100629,0.009345975,0.017573629,-0.007183506,0.006299119,-0.02665714,-0.024625903,-0.032225925,0.010361594,-0.011982019,-0.026725609,-0.012666706,-0.033937644,-0.011993431,-0.024237914,0.027159244,0.03546678,-0.00033645937,0.016067317,0.003919832,0.030856553,-0.0040938566,0.0030696793,0.00009200479,-0.014161606,0.009015043,-0.014081726,0.0031524124,0.0027886725,-0.044504642,0.0061564757,-0.01656942,0.010395829,0.012780821,0.057833213,0.0095228525,0.01719705,-0.03176947,0.06915337,-0.022480551,-0.00063939765,-0.0007809709,0.024374852,0.00094786333,0.0022837159,-0.0063847047,0.0018529338,-0.007617141,-0.012438477,-0.0003976176,-0.00526353,-0.05787886,-0.006538759,0.03412023,-0.022092562,-0.0016988792,-0.021259526,-0.013260102,0.007491615,-0.010869403,-0.026406089,-0.025584465,-0.023986861,0.023712987,0.03587759,-0.013522564,0.04400254,-0.023484759,0.011810848,0.011109044,-0.003426287,-0.009226155,0.027387474,-0.017151404,-0.001982739,-0.00076884625,0.023667341,-0.050621178,-0.047106452,-0.033298604,-0.024968246,-0.0007135721,0.020472135,-0.013670914,0.0091120405,-0.0019385195,-0.025082361,0.022902774,0.03215746,-0.030947845,-0.057513695,-0.0012588253,-0.011017752,0.057422403,0.023598872,0.03122172,-0.010150482,0.018965825,-0.0074630864,-0.013123164,0.039095618,0.019901564,0.026451735,0.011845082,-0.0260181,0.04489263,0.011502739,-0.008341768,0.0022095414,0.023484759,-0.0017316871,0.0056229904,-0.005614432,0.034416925,-0.0078111356,0.0035831945,0.044048186,-0.021191057,-0.019000059,0.026908193,0.02206974,0.008701229,-0.003988301,0.023210883,0.0091120405,-0.016980233,0.013123164,0.004701516,-0.021134,0.0008815343,-0.00112902,0.014184428,0.034257166,-0.017448103,0.0091805095,-0.048840992,0.0068982197,-0.045143686,0.004906922,0.026451735,-0.031107605,-0.010789523,-0.005038154,0.002837171,-0.0008715493,0.025424704,0.03325296,0.008227654,0.04897793,0.003303614,0.008781109,0.017413868,-0.04124097,0.005799868,-0.019992854,0.0038542163,0.04528062,-0.005340557,0.025607288,-0.013031873,0.0048584235,-0.02201268,-0.0045731375,-0.008187713,-0.006293413,-0.0016732034,0.0077483724,-0.00433635,-0.005825544,-0.009306035,-0.034804914,-0.016295547,-0.025287766,0.010652586,0.00074531016,-0.047745496,0.009026455,-0.016124375,-0.03391482,0.05833532,0.036402516,-0.0076456694,-0.017813269,-0.023073945,0.0005998142,-0.0038855977,0.037749067,0.02287995,-0.012073311,0.0035889002,0.0027202037,0.0121760145,0.0073775006,-0.011200336,-0.043956894,0.007035157,-0.002413521,0.005326293,-0.009403032,0.009517147,0.02594963,-0.0018614923,-0.027729817,-0.011342978,-0.013545387,-0.011708145,0.02018685,0.011342978,-0.020540604,-0.025493173,-0.033709414,-0.026223505,-0.005657225,-0.010721055,0.003446257,0.014572418,0.04217671,0.024466142,0.028916607,0.0044247885,0.003260821,0.0327965,0.027615702,0.0063675875,-0.016820474,0.003956919,-0.013705148,0.00429641,-0.021065531,0.025173653,0.0055202874,0.0050581237,-0.027980868,-0.0011817979,-0.0067213424,0.03517008,-0.019776037,0.04313527,-0.0046530175,0.020529194,-0.037589308,-0.0067441654,0.014173017,0.052355718,0.0125183575,-0.03462233,0.025926808,0.016386839,0.0125640035,-0.0618044,-0.004855571,-0.029236127,-0.0077312556,0.0031010609,-0.0060537728,0.0036231345,0.0013658076,-0.0032151751,0.009403032,0.07481345,-0.01609014,-0.0015762062,-0.0019513575,0.0073318547,0.016820474,-0.008826754,-0.0047956607,-0.023279352,0.0033150255,-0.010863698,0.020494958,0.011400036,-0.0116967335,0.035375487,0.02224091,-0.019627688,0.011223158,0.02144211,-0.008878106,0.016660713,0.011114749,-0.010515649,-0.040830158,-0.014503949,-0.039095618,0.060435023,0.0039055678,-0.0056172847,0.016500952,0.025264943,0.0075429664,-0.013237279,0.007913838,-0.01726552,-0.011514151,0.005968187,-0.010298831,0.004869835,-0.03690462,0.016820474,-0.01060694,-0.016055906,-0.0026988073,-0.007063686,0.006852574,-0.029578472,-0.058015797,-0.0031952052,-0.027273359,0.015177225,0.02018685,0.00352899,-0.03035445,-0.019502163,-0.0067955167,0.00693816,0.022366436,-0.010047779,0.012929169,0.0005769913,0.027638525,-0.0011725262,-0.006852574,0.0173454,0.040807337,-0.007183506,-0.01575921,0.01230154,0.019285345,0.011730968,-0.0041594724,-0.00006401109,0.006630051,-0.021008475,0.005899718,0.006749871,-0.021624692,0.0006147917,0.0365851,0.002210968,-0.009665496,0.007120743,0.034188695,-0.061074063,0.04486981,-0.017060114,-0.009140569,-0.011890728,-0.013465508,0.041377906,-0.0128835235,-0.012004842,-0.016375426,0.037794713,-0.002724483,-0.022811484,0.014173017,-0.020152615,-0.014230074,0.02350758,0.044276416,-0.019422283,0.029304596,0.02373581,0.012004842,-0.0026631465,0.010983517,0.009848079,-0.019365225,-0.027182067,-0.022959832,-0.012997638,-0.023872748,-0.016067317,-0.018988648,0.019125585,-0.065501705,-0.013830674,-0.0017887444,0.023245119,0.012198837,-0.0039683306,-0.032317217,-0.024215091,0.0017117171,0.0003316452,-0.0125640035,0.033846352,0.016934587,-0.012803644,0.007594318,0.02097424,-0.012746586,0.0016475277,0.01892018,-0.0063219415,0.0016760563,-0.0125183575,0.012187426,0.008918046,-0.0005399041,-0.039255377,0.012917758,0.01490335,0.03950643,0.008855283,-0.024260737,-0.00046073718,-0.038844567,-0.024374852,-0.013545387,-0.036151465,-0.009397327,0.024466142,-0.013682325,0.050027784,0.007189212,0.00831324,-0.020072736,-0.024146622,-0.008204831,-0.013020461,-0.003988301,0.016352603,0.015827676,-0.0070294514,-0.01419584,0.021750217,0.005471789,0.009808139,-0.0050952113,0.021156823,-0.0036145758,-0.0011111897,-0.015724974,-0.021887155,-0.015006053,-0.027387474,-0.028802492,-0.007930956,-0.03510161,-0.006561582,0.0027558645,-0.0027030865,0.0070865084,-0.012837878,-0.01639825,-0.027889578,-0.0014963261,0.038137056,-0.00087226246,0.0088838115,-0.017082937,-0.023245119,-0.018555013,0.02713642,0.029030722,0.01718564,0.021236703,-0.037726246,0.013203044,-0.021316582,-0.0021838658,0.026679963,0.00961985,-0.011000635,0.013499742,0.005651519,0.027866755,-0.017961618,0.035307016,0.017208463,0.025128007,0.010264597,-0.014104549,0.02357605,0.032454155,-0.022252321,0.02658867,0.01623849,0.009756788,-0.011160395,-0.043705843,-0.016124375,-0.008946574,0.040716045,-0.00033093197,0.03633405,0.042770103,0.011217453,0.0033549655,-0.0014456877,-0.049662616,-0.00705798,-0.023119591,-0.003075385,-0.0120618995,-0.021567635,-0.008256182,0.035124436,0.011959197,-0.0022837159,0.036219932,-0.007617141,0.041606136,-0.01798444,-0.0050495653,-0.03352683,-0.0005149415,0.0038513634,-0.002704513,0.023530403,-0.013842085,-0.016683536,0.011120455,-0.0130889295,-0.018680539,-0.0066528735,-0.032134634,0.01695741,-0.012826467,-0.00863276,-0.019855918,-0.0059795985,-0.025721401,-0.0077711954,0.00215819,0.0071321544,-0.019000059,-0.00780543,0.021601869,-0.030012107,-0.0027059393,-0.018806065,0.011365801,0.020472135,0.008330356,0.040647574,0.0007203476,-0.0068240454,-0.024260737,0.015211459,0.01946793,0.000098067125,0.002887096,-0.026063746,-0.029144837,0.0047614262,-0.005534552,0.00032112526,-0.006989511,-0.028163452,-0.01892018,0.029920815,0.0023393466,-0.009026455,0.02736465,0.01743669,-0.012769409,0.00012008765,-0.0314043,0.021419287,-0.016786238,-0.012666706,-0.03966619,0.008781109,-0.02973823,-0.004148061,0.03706438,-0.00930033,0.022606077,-0.0093859155,0.0096826125,0.022663133,0.016204255,0.03594606,-0.0012859275,0.007976602,0.005597315,-0.01127451,0.018497955,-0.01711717,-0.018714773,0.0041366494,0.011662499,0.009802433,0.0052835,0.009237566,0.015873322,-0.02201268,-0.010475708,-0.044846985,-0.0094772065,0.0024220797,0.014321366,-0.015530979,-0.0069495714,0.020084146,-0.013066107,-0.019148408,-0.0050238897,0.0005859065,-0.016900353,-0.016204255,0.01885171,0.002847156,0.009174803,0.023758633,-0.055779155,0.008147773,0.01570215,-0.011074809,-0.016489541,0.034508217,-0.008199125,0.017082937,-0.00445617,0.06445185,-0.021715984,-0.008940869,-0.027182067,0.007816841,0.029190483,-0.0058112796,0.025059538,0.018486544,0.011536973,0.0034120227,0.04375149,0.0014250044,-0.028574264,-0.027273359,0.0023678753,-0.0022123943,-0.011519856,-0.0057485164,-0.0034006112,-0.00070501346,-0.028414503,-0.011890728,0.014960407,0.0052835,0.000118037155,0.012586826,-0.019627688,-0.006960983,0.015976027,-0.006812634]},{"id":"interface-GatewayGuildScheduledEventUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildScheduledEventUpdateDispatchData\nDescription: GUILD_SCHEDULED_EVENT_UPDATE — a scheduled event was updated.\nProperties: guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayGuildScheduledEventUpdateDispatchData"},"embedding":[0.001343797,0.005007337,-0.020633878,0.0021899971,0.005976867,0.039032135,-0.035815578,-0.0064274133,0.010778892,-0.013151389,0.0137217,0.0038866745,-0.0047649546,0.0014585722,0.035792764,0.0055006566,-0.05201243,0.036522765,-0.033032455,0.03688776,-0.017919194,0.0018991381,0.048088685,0.042248692,-0.02429528,0.019527474,0.0037298386,0.0076136617,0.021090128,0.020611066,0.02383903,-0.014611387,0.04831681,-0.02698715,-0.03214277,0.040629007,0.000098378776,0.0070262407,-0.038210887,-0.03816526,-0.014474512,-0.037458073,0.01787357,-0.0075452244,-0.055936173,0.017212007,-0.019105444,-0.008531864,0.004924642,0.029542148,-0.024226842,-0.003553042,0.0026704846,0.015649354,0.038302135,-0.0044028065,0.0066897566,0.011714203,-0.0035416358,-0.0011463265,-0.006803819,-0.003721284,0.018979974,-0.0073627243,0.01566076,-0.011235141,-0.032393705,0.038667135,0.062049914,0.0074083493,0.0052582743,0.033214957,0.008697254,-0.0059198355,0.02290372,-0.00879991,-0.01950466,-0.019938098,0.028994648,0.0060852263,0.009535613,0.020919034,-0.113879845,-0.043754317,0.014303418,-0.01796482,-0.040492132,-0.028538398,0.027854025,0.047358684,-0.023257311,0.037663385,-0.020873409,0.013402326,-0.015831854,-0.07769927,0.04462119,-0.036910575,-0.034629326,0.068163656,0.06401179,-0.06109179,-0.060453042,-0.07076428,-0.008765691,-0.017542789,-0.0276259,0.016162634,-0.03426433,-0.035884015,-0.05516055,-0.0013452228,-0.020257473,0.0037640573,0.012797795,0.0035958155,0.042750567,-0.011292173,0.044096503,-0.00660421,-0.06579116,0.011942328,-0.0013651837,-0.014942167,-0.018854506,-0.004240268,-0.01063061,-0.030796833,-0.05757867,-0.0017109351,-0.00783038,-0.018158725,0.0042744866,-0.010510845,-0.023029188,-0.018683413,-0.013801544,0.008394988,-0.040309634,-0.05219493,-0.02138669,0.0019433373,0.0064331163,0.06670366,-0.022983562,0.019516068,-0.0008126942,-0.006661241,0.011919515,0.04129057,-0.07400365,0.041792445,0.0091478005,-0.002113005,0.028196212,-0.0052240556,-0.040674634,-0.03138996,-0.03401339,0.00898241,0.00056496507,-0.04103963,-0.0074254586,0.029496523,-0.037366826,-0.028812148,0.0014856621,0.0018848802,-0.0733649,0.006216398,0.045579314,-0.038347762,-0.03592964,0.029656209,0.0017879272,0.025732465,-0.04786056,-0.008201082,-0.047176186,-0.000988778,0.037914325,-0.00922194,-0.043936815,-0.027192464,-0.0005453606,0.009336003,-0.01686982,0.02147794,-0.017257633,-0.0364087,-0.016847009,0.011862484,0.03501714,0.059540544,-0.0064559286,-0.033579953,0.0179306,0.0067467876,0.022036845,0.0012097737,-0.0014742558,-0.06109179,0.023542468,-0.00790452,0.020428566,-0.014314825,0.022310594,-0.0032450738,0.019824035,0.01187389,0.03576995,0.0014913651,-0.013927013,0.0012311605,-0.034857452,0.013333888,-0.022219345,0.005814328,-0.00029602743,-0.018968567,0.014098106,0.009353112,0.009775143,0.0010115905,0.025367465,0.0078018643,0.0003592964,0.022858094,-0.041997757,0.008355067,-0.025755277,-0.025299028,0.009415846,-0.041359007,-0.017485758,-0.01063061,0.015512479,-0.0029741756,0.015250135,0.029154336,-0.010396783,-0.02919996,-0.008834128,0.010003268,0.005272532,0.00056567794,0.02374778,-0.010094518,-0.008440614,0.07140303,0.01229592,0.021945596,-0.019105444,-0.01004319,-0.022002626,-0.018786069,0.019402005,0.0034960108,0.037663385,-0.0045054625,0.045100253,0.0024765786,-0.05137368,0.03401339,-0.04343494,-0.011885297,0.04407369,0.022162315,-0.026759027,-0.005589055,-0.0023924578,-0.008503348,0.027032776,-0.008594598,0.011782641,0.024956841,0.005446477,0.06423991,-0.00607382,-0.052149303,-0.022755438,-0.02056544,0.020804971,0.017394507,0.0029884335,0.055936173,0.019618724,0.008839832,0.038553074,0.0033733938,-0.047997434,-0.014508731,0.01838685,-0.022219345,-0.0038866745,0.042476818,0.021466533,-0.0035615969,0.016048571,0.010824516,0.020405754,-0.039830573,-0.05055243,-0.01161725,0.0046423376,0.00096739124,0.04767806,-0.028606836,-0.03123027,0.02111294,0.015980134,-0.025549965,-0.030135272,-0.020097785,0.006803819,-0.017097946,0.02402153,0.07035366,0.019972317,-0.015558104,0.02735215,0.020987472,-0.020588253,-0.019675754,-0.016470602,-0.07231553,-0.024432154,-0.021626221,-0.01233014,0.06953241,0.027466213,-0.038370572,0.0058571016,0.045237128,0.03800557,0.06588241,-0.027945274,0.045853063,0.05589055,-0.022846688,0.0011769808,-0.042750567,-0.022687001,-0.05210368,0.011565922,-0.049046807,-0.03565589,0.03465214,-0.03132152,0.04619525,-0.0017152125,0.037937135,0.010642017,-0.03380808,-0.047997434,-0.0750074,0.06725116,0.039830573,-0.027032776,0.03481183,-0.0044769472,0.030751208,-0.0002680465,0.031207457,0.002164333,0.010898657,-0.02335997,0.039305884,-0.0137559185,-0.023268718,0.0019248021,-0.024454966,-0.038781196,-0.012569671,-0.02826465,0.00076778216,-0.017919194,0.016345134,-0.025253404,-0.0011848226,-0.022059659,0.033694018,0.0017052321,-0.02296075,0.029268397,0.020827785,-0.032690268,0.030523084,-0.037640575,-0.035245266,0.030545896,-0.0028230431,-0.03205152,-0.027032776,-0.04407369,-0.027101213,0.04886431,0.016196853,0.022744032,-0.010202877,0.050369933,0.013174201,0.0024780044,0.00083194225,-0.028812148,0.05552555,-0.0012660921,0.025504341,0.037640575,0.021135753,-0.02317747,0.02008638,0.02383903,-0.030112458,0.018318413,-0.059631795,-0.008936785,-0.013242639,-0.023907468,0.047814935,0.034401204,-0.0056204223,0.020519815,0.03576995,0.01686982,-0.029633397,0.0008347938,0.015558104,-0.008959597,-0.058719296,-0.0565293,0.03399058,0.03665964,-0.016185448,0.07587427,-0.011976547,0.016561853,-0.049913682,0.009050847,0.027146839,-0.04249963,-0.00067938387,0.0034076127,0.037549324,0.000310107,0.03649995,0.043184005,-0.0008048524,0.05748742,0.0015270096,-0.008161161,0.024614654,-0.022493094,0.017531382,-0.05301618,-0.033488706,-0.06309929,0.0008219618,0.005782961,-0.033853706,-0.04840806,0.0066726473,-0.03417308,0.04368588,-0.00986069,0.017314663,0.01233014,0.019949505,-0.016596071,0.019516068,-0.017029509,-0.00031634478,0.023131844,0.009410144,-0.0067239753,0.029656209,-0.03086527,-0.009301784,0.03574714,0.051236805,-0.03150402,0.018170131,0.020074973,-0.0036385888,0.06136554,0.034834642,0.008606004,-0.02096466,0.017383102,0.0010522251,-0.06925865,0.021147158,0.024044342,-0.01029983,-0.0037184325,-0.013938419,-0.025914965,-0.057168048,0.012307327,0.0052126492,-0.048909932,-0.038461823,0.013562012,-0.0010807407,0.035792764,0.015398417,-0.036636826,-0.0043315175,0.006655538,-0.04352619,0.010488032,0.009261862,0.018580755,-0.03314652,-0.010932876,0.020280285,-0.013333888,-0.011531703,-0.0034817532,0.04932056,-0.015797636,0.014907949,0.021010283,-0.010408189,-0.011531703,0.0058456953,0.02862965,-0.07829239,-0.011126782,-0.028789336,0.005201243,-0.027694337,0.014234981,0.050780557,-0.0042089005,0.011816859,0.025253404,-0.017656852,0.032872766,0.015101855,-0.009849284,0.029177148,0.011246547,0.017542789,0.0040349555,0.0014742558,-0.015489667,0.032758705,-0.0000020300647,0.014155137,0.014588574,-0.0057430393,-0.006364679,0.015409823,-0.003920893,0.0037155808,0.029268397,-0.008400692,0.0066270223,-0.004109096,0.027055588,-0.031846207,0.013869981,-0.031093396,-0.03326058,0.0001773313,0.007237256,0.008668738,-0.007049053,-0.0033648391,-0.016071385,0.038575884,0.01229592,-0.014200762,0.01668732,0.023097625,-0.00922194,0.028903399,0.035427764,-0.00012217146,0.010584986,-0.09590362,0.020097785,0.04804306,-0.07760802,0.026759027,0.040788695,-0.011748422,-0.02771715,0.03602089,-0.023519656,0.01487373,0.0098835025,0.008845535,0.029793086,-0.02929121,0.014383262,0.010003268,-0.03410464,0.033283394,-0.020896222,0.036636826,-0.02956496,-0.014565761,0.014497324,0.04113088,0.01778232,0.024637466,-0.02698715,0.008440614,-0.010790298,0.0074140523,0.018398257,-0.026439652,-0.014622793,-0.02874371,-0.025253404,-0.00047264586,-0.02107872,-0.020702315,0.024158405,0.018124506,-0.017154977,0.008531864,0.011052641,0.0364087,-0.025162153,-0.010955689,-0.021922782,-0.027945274,0.006130851,-0.059312418,-0.058034923,-0.024911216,-0.04703931,-0.012558265,0.03068277,-0.033716828,0.03510839,-0.014919355,0.017942008,0.014326231,0.0033962063,-0.008309442,0.046149626,-0.02947371,0.02429528,-0.026485277,-0.0041832365,0.02493403,-0.03038621,-0.055844925,0.007938739,0.018672006,0.042066194,-0.010048892,0.001111395,0.05607305,0.0014699785,-0.0026148793,-0.011782641,0.0069235843,0.0069749122,0.035998076,-0.00931319,0.030979333,-0.0023012077,0.0038068308,0.0028743711,0.04295588,0.026622152,0.02429528,0.04129057,0.028606836,0.027397776,0.023154655,-0.020474192,-0.043115567,-0.016938258,0.0281734,-0.018957162,0.029131522,-0.016002947,-0.004114799,0.01759982,-0.021090128,0.047906186,-0.015866073,0.0364087,0.009957643,-0.007876005,0.009381628,0.025435902,-0.0077562393,0.0068722563,-0.013767325,0.043549005,-0.0059882733,-0.018352631,-0.016561853,-0.009142097,0.041381817,0.025093716,-0.011691391,0.008811316,0.0281734,0.0024951138,-0.011029829,0.0050130403,-0.008988113,0.0376862,0.005147063,-0.05210368,0.013504982,-0.008309442,0.013619044,-0.039739322,0.00049652765,0.012033577,0.0068437406,0.037914325,0.029952772,0.003935151,-0.00784749,-0.02511653,-0.004291596,-0.0032621832,0.0113549065,-0.038302135,-0.035085578,-0.020280285,0.025276216,-0.0033819485,-0.0057145236,0.013014514,-0.005780109,-0.005640383,0.022150908,-0.015124667,0.027420588,0.021409502,0.036477137,-0.017577007,-0.025664028,0.00483054,-0.0059198355,0.011999358,0.010699048,-0.037663385,0.022116689,-0.005931242,0.0054778443,-0.025983403,-0.015580917,-0.00395226,-0.023451218,0.009307487,0.05821742,0.012911857,0.013060139,0.02523059,-0.021238409,0.047814935,0.042819005,-0.037024636,-0.011366312,-0.029793086,-0.007345615,-0.013060139,-0.010408189,0.00094671745,-0.026485277,-0.024865592,0.018934349,0.017075133,-0.019151067,0.017645445,-0.07021678,0.016413571,-0.0026305628,-0.019059818,-0.026576526,0.0005631828,-0.016653102,0.0070661623,0.015466854,0.0190256,-0.029222773,-0.04183807,0.0020402903,-0.0049902275,0.001415086,-0.015615135,0.022858094,-0.016835602,-0.042431194,0.0062905382,-0.04546525,0.0048419465,0.052970555,-0.021637628,0.01020858,-0.037184324,-0.00055926194,0.03186902,0.019516068,-0.06583679,0.023428407,-0.039305884,-0.025435902,-0.0114974845,0.038507447,-0.00051827077,0.010887251,0.017474351,0.0111096725,-0.0031823395,-0.0041775336,0.022287782,-0.026530901,0.015615135,-0.0067753033,-0.009256159,-0.018786069,-0.012695139,0.022093877,0.014508731,0.028971836,-0.043640252,-0.004924642,-0.019185286,0.000016897713,0.017337477,-0.009655378,0.06264304,0.0044512833,-0.015535291,0.014542949,-0.0041889395,-0.01048233,0.00035644483,0.011748422,0.011012719,-0.0132654505,0.014679824,-0.0065300693,0.0122845145,-0.0065300693,0.014508731,0.013892794,0.0054037035,0.011223734,-0.006666944,-0.009797956,-0.014075293,-0.009227644,-0.028652461,0.03576995,0.033214957,-0.008828426,-0.017428726,0.016219666,-0.004859056,-0.023816219,-0.0000013923626,0.034789015,-0.011115376,-0.0021472236,0.040355258,-0.017485758,-0.019675754,-0.008292332,0.04213463,-0.044028066,0.013733107,0.025162153,0.042819005,0.03113902,0.03278152,0.025207778,0.02317747,0.016664509,0.0012005062,0.012467015,0.0064274133,0.010448111,-0.018911537,0.013333888,-0.009986158,0.0003124239,0.019846847,-0.0012603889,0.0054493286,-0.00013892437,-0.018398257,-0.055479925,0.01302592,-0.011337797,-0.028812148,0.012489826,-0.03113902,-0.037480887,-0.013333888,0.01196514,0.019550286,0.020668097,0.008406395,0.0062106946,0.058673672,0.010824516,0.00040135687,-0.018455287,-0.0045254235,0.014999199,-0.017246226,0.03253058,0.007944442,-0.013048733,0.0019461887,-0.013619044,-0.0027289416,0.0015498222,0.057989296,0.019128256,0.014885136,-0.032872766,0.035450578,0.006803819,-0.0019248021,-0.013550607,0.0034903078,-0.024979653,-0.010967094,-0.0052810865,-0.01759982,-0.0072087403,-0.016824195,0.009290378,-0.015592323,-0.0451915,-0.007864599,0.06346429,0.01004319,-0.023382781,-0.03253058,0.0063019446,0.022322001,0.01229592,-0.063601166,-0.023565281,-0.004491205,0.018774662,0.018774662,-0.033876516,0.042385567,-0.025641216,0.010436704,0.0137217,0.0027831213,-0.022048252,0.03225683,-0.03816526,-0.017029509,0.0065357722,0.006125148,-0.056301173,-0.039465573,-0.022059659,-0.017440133,-0.0071231937,0.0016596072,-0.0032336675,0.01681279,0.02023466,-0.03725276,0.036842138,0.029314023,-0.027146839,-0.064878665,0.009450065,-0.020439973,0.06893928,0.008520457,0.03891807,-0.016641697,0.0090052225,-0.000018111852,-0.028857773,0.05662055,0.020109192,0.026211526,-0.0020759348,-0.031253085,0.061274294,0.018888725,0.003838198,-0.017280445,0.020348722,-0.007100381,-0.0009552721,-0.004166127,0.0018777513,0.03050027,-0.012866233,0.011679985,-0.0031737848,-0.022584345,0.036750887,0.00889116,0.014805293,0.0029342538,-0.0047392906,-0.0077904584,-0.037754636,-0.0134593565,0.0039180415,-0.040309634,0.015603729,-0.004003588,0.0061536636,0.03417308,-0.0113549065,0.023097625,-0.05438493,0.014269199,-0.047267437,-0.00018134131,0.022470282,-0.015877478,-0.012250296,0.007824677,0.0026291371,-0.0018064624,0.033762455,0.026325589,0.015706385,0.051510554,0.019869661,0.010733266,0.00686085,-0.04619525,0.0038838228,0.010733266,0.009336003,0.048453685,-0.0076706926,0.021649033,-0.0052810865,0.006467335,-0.0044797985,-0.0005396575,-0.010237096,-0.0016510525,-0.021512158,0.02929121,-0.019618724,-0.008298036,-0.013892794,-0.01705232,-0.018968567,-0.029679023,-0.00773913,-0.008845535,-0.031960268,0.008132645,0.010653423,-0.011423344,0.026485277,0.034720577,0.01575201,-0.020462785,-0.011383422,0.02166044,-0.024386529,0.054156803,0.04019557,0.016253885,-0.013048733,0.013048733,-0.010459517,0.0035074172,-0.009415846,-0.03964807,0.011480375,0.004200346,-0.008588894,0.009991862,0.015945915,0.032165583,0.00045339784,-0.038598698,-0.0027603088,0.002649098,-0.017668257,0.02605184,0.010602095,-0.018421069,-0.021466533,-0.034834642,-0.01644779,-0.0060167885,-0.012318733,0.0124784205,0.00801288,0.00975233,0.01875185,0.0006661954,-0.0077562393,-0.033762455,0.019561693,0.021580596,0.0068266313,-0.0071802246,0.010602095,-0.019219505,0.025253404,-0.015512479,0.039967448,0.00863452,-0.004682259,-0.027671525,-0.009062253,-0.008007176,0.016493415,-0.019801224,0.028880585,-0.012763577,0.035450578,-0.016550446,0.004243119,0.0073228027,0.010607799,0.009946236,-0.00325648,0.039191823,0.026120277,0.007876005,-0.05589055,-0.0030597225,-0.034720577,-0.004303002,-0.010431002,-0.0148281045,0.008999519,0.010955689,-0.008606004,0.0065528816,0.07633052,-0.0048447982,0.0065300693,0.0012504085,-0.0018563647,0.017040914,-0.0037754637,-0.019094037,-0.030066835,-0.02126122,0.009923424,0.02459184,0.0012119124,-0.0035188233,0.031435583,-0.0039636665,-0.013356701,0.009438659,0.013151389,-0.021329658,0.02111294,0.019424817,-0.0052040946,-0.024135591,-0.016253885,-0.035975263,0.043343693,-0.021877158,0.016345134,0.03095652,0.03825651,-0.0012995979,0.007294287,0.015398417,-0.024181217,-0.0148281045,0.0034190188,0.00080912973,0.007630771,-0.02475153,0.036157764,-0.007579443,-0.018934349,-0.010887251,-0.027055588,0.008856941,0.011200923,-0.044393066,-0.019333567,-0.024386529,0.005831437,-0.013938419,0.029450897,-0.020542629,0.002120134,-0.010613501,0.0029941367,0.03241652,-0.022436064,-0.007636474,0.0032792925,0.021523565,-0.011651468,-0.017634038,0.014793886,0.023975905,0.009107878,-0.006803819,-0.00200322,0.020394348,0.014588574,-0.004057768,-0.0058456953,0.009900612,0.0076193647,0.0015712088,0.004077729,-0.021706065,-0.009957643,0.030728396,0.014987792,0.004690814,-0.004593861,0.031732146,-0.06378366,0.049639933,-0.00049510185,0.00094814325,-0.016139822,0.0005161321,0.041495882,-0.008235301,-0.0062905382,-0.009912018,0.031024957,0.000019504216,-0.018706225,0.011999358,-0.017896382,-0.024683092,0.008303739,0.028355898,-0.007876005,0.018500913,0.049092434,0.0044683926,0.027785588,-0.0057430393,0.022892313,-0.03250777,-0.023348562,-0.02411278,-0.006364679,-0.03638589,-0.015603729,-0.023724968,0.005805773,-0.06647553,-0.0022398992,0.008052802,-0.0021486494,0.013858575,-0.023223093,-0.0071174903,-0.034150265,-0.00532386,-0.0028016563,-0.028241837,0.021911377,0.003766909,-0.022732625,0.0061593666,0.022322001,-0.022766843,0.033762455,0.019550286,-0.008908269,0.0067239753,-0.0041262056,0.009826471,0.011942328,0.005018743,-0.02059966,0.008098426,0.0109157665,0.03449245,-0.007915927,-0.024340905,-0.00048298275,-0.038347762,0.0015398416,-0.014953573,-0.028994648,-0.026850276,0.025937777,-0.008235301,0.027899649,-0.02102169,0.023086218,0.0015298612,-0.03800557,-0.017280445,-0.026964338,-0.0067924126,0.015295761,0.0012318733,0.001072186,-0.022892313,0.019892473,0.006569991,0.029359648,-0.015900292,0.0144402925,-0.0036785107,0.008024286,-0.024067154,-0.045305565,-0.0042858925,-0.02229919,-0.013527794,-0.015820447,-0.039100572,-0.014132325,0.014668418,0.003547339,-0.0062848353,0.0068209283,-0.019607317,-0.012079203,-0.023348562,0.034857452,-0.014018263,0.002365368,-0.02393028,-0.023724968,-0.0375037,0.010248502,0.013128576,-0.005172727,0.021158565,-0.04256807,0.013710294,-0.019767005,-0.0051869852,0.02641684,0.0060567106,-0.009643971,0.015193105,0.015786229,0.02771715,-0.013345295,0.025549965,0.0037326904,0.0139042,0.012364359,-0.001046522,0.013641857,0.043822754,0.0009916296,0.026918713,0.015101855,-0.0005221917,0.0011591585,-0.05182993,-0.017383102,0.016037166,0.04432463,-0.00051684503,0.015729198,0.025458716,0.012923264,-0.01072186,-0.0033619876,-0.036522765,-0.014041075,-0.012740764,-0.008206786,0.018717632,-0.010242798,-0.0015084745,0.006438819,0.019402005,-0.020063566,0.022937939,0.0010714731,0.06328179,-0.007579443,0.011195219,-0.015227323,-0.0025065201,-0.0031224566,0.004297299,-0.009484284,-0.017577007,-0.054019928,0.02493403,0.017417321,-0.009923424,-0.017314663,-0.010527954,0.053609304,-0.013961231,0.0050101886,-0.019698568,0.006227804,-0.0041518696,-0.0024238247,-0.009712408,-0.0051869852,-0.0067924126,-0.001305301,0.021044502,-0.030910896,0.00027250207,-0.015101855,0.016983883,0.019162474,-0.010710455,0.052286178,0.019595912,-0.022709813,-0.018466694,0.032462142,-0.00391519,0.016231071,-0.023029188,-0.034401204,-0.0021743134,-0.0045710485,-0.0035901123,-0.0043771425,0.011377719,-0.028219024,-0.04176963,0.01205639,0.018364038,-0.0017095094,0.028766524,0.0034617921,-0.005654641,-0.022607157,-0.016071385,0.0351312,-0.014565761,-0.0061365543,-0.01832982,0.019801224,-0.0040092915,-0.020497004,0.025025278,0.007100381,0.030842459,0.0181131,0.010681938,0.010237096,0.016755758,0.016858414,0.0073570213,0.014976386,0.02107872,0.00492179,0.007334209,-0.0073170993,-0.034150265,0.007533818,0.019846847,0.023907468,0.010653423,0.011383422,0.0064331163,-0.019675754,-0.002526481,-0.02586934,-0.015968729,0.016094197,0.009062253,-0.025207778,0.018865911,0.025732465,-0.03501714,-0.015957322,0.0025435903,-0.001602576,-0.026622152,-0.013356701,0.025504341,0.0020203292,-0.014942167,0.03665964,-0.04103963,0.011930921,0.022698406,0.00041205023,-0.0030226521,0.035268076,-0.005078626,0.01862638,0.010459517,0.035906825,-0.042545255,-0.018717632,-0.026713401,-0.008554676,0.02429528,0.002596344,0.05424805,0.005569094,-0.0021629073,0.031640895,0.03278152,0.0034789015,-0.008366473,-0.025070904,-0.001699529,0.010681938,-0.013299669,-0.0041347602,-0.015706385,-0.00030244343,-0.026895901,-0.017018102,0.0023482586,-0.028401524,0.03141277,0.012615295,-0.004879017,-0.016858414,0.0035644483,0.0011313559]},{"id":"interface-GatewayGuildStickersUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildStickersUpdateDispatchData\nDescription: GUILD_STICKERS_UPDATE — sticker list for a guild changed.\nProperties: guild_id: string, stickers: APISticker[]","meta":{"url":"/docs/typedefs/GatewayGuildStickersUpdateDispatchData"},"embedding":[0.012837845,-0.03303168,-0.011309251,-0.010612306,-0.040364247,0.013950614,-0.039216336,0.008673744,-0.008656175,-0.030220473,0.02466834,-0.033008255,-0.015309365,-0.030220473,0.023016756,-0.0023280308,-0.025136875,0.010612306,-0.023977252,0.026776746,0.011438098,-0.026940733,0.043081746,0.032703705,-0.0066180495,0.03345336,0.0017760386,0.022747349,0.009809941,-0.0041758134,-0.008843589,-0.022454515,0.087569095,-0.0077776723,-0.056645818,0.033078533,-0.0060792346,0.014454288,0.020006422,-0.051304527,-0.005203661,0.016035592,0.012287317,-0.0030513308,-0.032937974,0.065735385,-0.023403298,0.030712435,0.00407625,0.018905366,-0.04020026,-0.012673858,-0.036147434,0.03476526,0.052475862,-0.0006936506,-0.014477716,0.008913868,-0.01355236,0.032118037,-0.00085214706,-0.010126201,0.011959342,-0.053225517,0.035350926,0.03755304,-0.046244353,0.050601725,0.03439043,0.029213125,0.03354707,0.0042548785,-0.018823372,-0.00017698157,-0.021505732,-0.015461638,-0.03668625,-0.00028642832,0.053225517,0.0045272144,-0.03460127,0.02094349,-0.045447845,-0.06821862,0.030478168,-0.037787307,-0.018741379,-0.043995388,0.0161293,0.013716347,-0.035772607,-0.0036340705,-0.06578224,-0.002030804,-0.002597438,-0.052522715,0.028908577,0.0024027033,-0.043878254,0.02567569,0.06779694,-0.071732625,-0.0855544,-0.043737695,-0.006167085,0.009276982,-0.013423513,0.049664654,-0.016960949,-0.024949461,-0.07177948,0.021786854,-0.02337987,-0.004035253,0.0032446012,-0.018846799,-0.0027658176,-0.013353232,0.05383461,-0.03759989,-0.05641155,-0.016738394,0.0404111,-0.023602424,-0.021412026,0.029166272,-0.025769396,-0.045846097,-0.05650526,-0.017640322,-0.01208819,-0.040012844,0.025605408,0.013189246,-0.038771227,-0.03825584,-0.008345771,-0.024785474,-0.026355064,-0.02567569,0.014337155,-0.050367456,-0.008878728,0.010290189,-0.03977858,-0.006588766,-0.025839677,0.014653415,-0.0053120097,0.02417638,-0.05383461,0.070186466,0.005358863,-0.004000113,-0.015531918,0.010951993,0.001513952,-0.030501595,-0.022032835,-0.00935312,-0.034249872,-0.030407887,0.019830722,-0.014688556,-0.036428556,-0.025371142,0.043245733,-0.03174321,-0.04697058,0.014512856,0.06554797,-0.04376112,-0.03204776,-0.00033584406,-0.016480701,0.00400597,-0.015731046,-0.017171789,-0.027221853,-0.033570495,0.020369537,-0.014489429,-0.043222304,-0.059738144,-0.029658232,0.022208534,0.0022387162,-0.013329806,-0.0011815854,0.0025154445,-0.016504128,0.009060285,0.023836691,0.02083807,-0.0026106155,-0.05814513,0.014056034,-0.009464396,0.038583815,-0.032867692,0.011643082,-0.022981616,0.010026637,0.0076546823,-0.020533523,-0.030689009,-0.015731046,0.023789838,0.015684191,0.016703254,0.026823599,-0.0021523302,-0.04333944,0.018214278,-0.045166723,0.030150194,-0.029728513,0.010067634,0.0044159372,0.009968071,0.0035755038,0.05313181,0.011713362,-0.026448771,0.0036252856,0.008375054,-0.0053705764,0.024972888,-0.010910996,0.01748805,-0.045002736,-0.008041223,-0.021646293,-0.07013961,-0.0067878934,-0.039356895,0.010026637,0.003054259,0.0356789,0.025605408,-0.009323836,-0.027432693,0.0046209213,0.004849332,0.015813038,-0.0014129243,0.005528707,0.0047497684,-0.0112214,0.025581982,0.04905556,0.048165344,-0.0060792346,-0.033804763,-0.025581982,0.0127675645,0.004943039,0.027643533,0.026355064,0.044112522,0.026987586,-0.008427764,-0.041160755,-0.01240445,0.002726285,0.023157317,0.04296461,0.026472198,-0.030970128,-0.00021797835,-0.0097806575,-0.012146756,0.049805216,0.009153992,0.01790973,0.021658007,-0.005795186,0.050789136,0.0030659726,0.00043376043,-0.016328426,-0.019116206,0.003516937,0.057910863,-0.015285937,0.06887457,0.037295345,0.0048903287,0.003938618,0.042706918,-0.00024835987,0.03968487,0.019643309,0.027854376,-0.007256428,0.0068816002,-0.008480474,-0.012826132,0.0346247,0.03926319,-0.0066356193,-0.04055166,-0.00831063,-0.0061026616,-0.020556951,-0.04849332,0.02166972,-0.013681207,-0.02438722,0.01933876,0.019807296,-0.023051897,-0.019116206,0.0029854432,-0.027713815,0.014793976,0.025792822,0.04439364,0.005332508,0.005795186,0.0005790793,0.011151121,0.019748729,-0.027994934,-0.013997467,-0.09066142,0.026237931,-0.008814305,-0.0010768973,0.029564526,0.02181028,-0.04256636,0.018846799,0.04697058,0.04205097,0.041067045,-0.0062666484,0.037084505,0.052803837,-0.015403071,-0.0023294948,-0.029119417,-0.007309138,-0.016527554,0.021248039,-0.0244575,-0.010629876,0.039146055,-0.013107252,0.0063837823,-0.00051721814,0.061096895,0.0024158808,-0.04209782,-0.026050517,-0.06362698,0.034039028,0.0030747575,-0.0029005213,0.045237005,-0.0012167254,0.014688556,-0.023778126,0.030525021,-0.0032299596,0.018389978,-0.013353232,0.013774914,0.012486444,-0.043011464,0.022302242,-0.016785247,-0.04797793,-0.012697284,0.0023426723,-0.036639396,-0.014653415,0.014887683,-0.024059245,-0.034203015,-0.0026164723,0.0029942282,0.0105771655,0.02546485,0.04985207,0.027971508,-0.030454742,0.046080366,-0.03525722,-0.005678052,0.030337607,-0.023227597,-0.038630668,-0.01762861,-0.006202225,-0.019865861,0.016223006,0.048868146,0.013868621,0.030431313,0.023344731,0.026144223,-0.00954639,-0.008790879,-0.021681434,0.058379397,-0.016679827,0.04268349,0.03776388,-0.04219153,-0.00686403,-0.004386654,0.010758723,-0.011326821,0.02202112,-0.02104891,-0.015274224,-0.04160586,-0.0017467551,0.076652244,0.043878254,0.03268028,0.012463017,-0.009505393,0.026917305,-0.033711057,-0.0018902437,-0.015403071,-0.034015603,-0.079463445,-0.04626778,0.06582909,0.028908577,-0.02567569,0.055240214,-0.044581056,-0.0017599326,-0.031110689,0.01912792,-0.019163061,-0.028112069,-0.032633428,-0.0059591727,0.038302694,-0.010969563,0.0001409264,0.03710793,-0.068921424,0.028955432,-0.021658007,-0.026050517,0.005581417,-0.02703444,0.022700496,0.0006643672,-0.0017833593,-0.027128147,0.020791218,-0.0056019155,-0.025535129,-0.008761595,0.011320964,-0.029658232,0.048071638,-0.01088757,-0.029283404,-0.029564526,0.03303168,0.031298105,0.020193836,-0.012685571,0.0057366192,-0.0059035346,0.049945775,0.002030804,-0.027432693,-0.024574634,0.0028858795,0.03610058,0.051960472,-0.0014832044,0.03870095,-0.015133664,-0.031016983,0.0098802205,0.062502496,0.006805463,-0.040692218,-0.0071568643,-0.035304073,-0.008404337,0.009610813,0.017113222,-0.011110124,0.021903986,-0.019526174,-0.0027116432,-0.06990534,-0.0106767295,-0.009235986,0.022618502,-0.02501974,-0.012872985,0.047228277,0.0795103,0.021212898,-0.012322457,0.0011457133,0.021857133,-0.031696357,-0.011145264,-0.01933876,-0.0101789115,-0.057910863,-0.00068669586,0.0041933837,-0.032703705,0.02581625,-0.019631594,0.039567735,-0.036943942,0.025417995,0.048399612,-0.018823372,0.009159849,0.011291681,-0.015801325,-0.10382724,-0.0127207115,-0.0010263834,-0.016035592,-0.03884151,0.0052065896,0.052756984,0.003027904,-0.00080090115,0.00017176547,0.018764805,0.044299934,-0.03610058,-0.0095815305,0.028322909,0.012006196,0.05500595,-0.014255161,0.015848178,-0.026378492,0.024035819,0.005780544,0.03017362,0.032633428,-0.008006083,0.010460032,0.005057244,0.0029224837,0.011865635,0.0022723922,-0.022559935,0.037951294,0.015695905,0.008896299,-0.037670173,0.0054232865,-0.012650431,-0.008796735,0.0034847253,0.01390376,0.040739074,-0.0023763482,0.0043837256,-0.012978405,0.022454515,0.0053442214,0.006295932,0.017616896,0.033008255,-0.0057131923,0.037435904,-0.0026296498,-0.009622527,0.010987134,-0.072997674,0.024059245,0.032094613,-0.055146508,0.02930683,-0.0028419544,-0.021611152,-0.00013927919,0.03626457,-0.011033987,-0.0018507112,0.0069050267,-0.008949009,0.032094613,-0.0048639737,-0.012954978,0.0021318318,-0.03759989,0.0105771655,-0.028088642,0.014688556,-0.051960472,-0.00070536404,0.024082672,-0.005124596,-0.014302015,0.011684079,0.010424892,0.02846347,-0.0063954955,0.0137632005,-0.02219682,-0.022489656,-0.026706465,-0.02316903,-0.024996314,0.022489656,-0.008820161,-0.016293287,0.023988966,0.023450151,0.018905366,0.0033675916,-0.0053617912,0.037271917,0.012486444,0.0008587359,-0.00003861749,0.0038654094,-0.023110462,-0.050180044,-0.04240237,-0.0025403353,-0.00961667,-0.019819008,0.0004172885,-0.024199806,0.030970128,-0.018507112,0.045494698,-0.02466834,0.0349761,-0.027901229,0.07927603,-0.00016389556,0.025839677,-0.019186487,-0.030407887,0.03061873,-0.0012167254,-0.033945322,0.0022855697,-0.015649052,-0.0019283122,0.016293287,-0.0069694505,0.029213125,-0.005581417,0.0030835425,-0.014735409,0.0071685775,-0.024832327,0.046923727,-0.012053049,0.022794202,0.010571309,0.032563146,-0.006887457,0.017218642,0.007490695,0.026073944,0.02041639,0.01609416,-0.012135043,0.015028243,-0.005648769,-0.04090306,0.008134929,-0.007566832,0.007268141,0.032703705,-0.03989571,-0.010951993,0.010255048,-0.004187527,0.019561315,0.019912716,0.021177758,-0.013329806,-0.007110011,0.04160586,0.011215544,-0.011326821,0.011941773,0.039591163,0.03282084,0.006020668,-0.015742758,0.026917305,0.015227371,0.009932931,-0.027784094,-0.036147434,-0.009288696,0.011361961,0.009159849,-0.0071158675,0.015274224,0.017124936,-0.015859893,0.026636185,-0.053084955,0.016082445,-0.017851163,0.005967958,-0.03631142,-0.000021241907,0.020053275,-0.0022928906,0.012099903,0.03811528,-0.0047409832,-0.008808448,0.014231735,-0.024316939,-0.023672704,0.014840829,-0.01609416,-0.04118418,-0.029119417,0.056973793,-0.0066356193,0.0070045902,0.013774914,0.010483459,0.026237931,0.03474183,0.0022650713,0.02073265,-0.025558555,0.015672479,-0.0008470225,-0.0050806706,-0.010788007,0.01372806,-0.020498384,0.0074965516,-0.044299934,-0.007104154,0.006664903,0.006495059,-0.0034847253,-0.0033090247,-0.0037219208,-0.02909599,0.014056034,0.0019941998,-0.016914094,0.028416617,0.044229656,0.016468987,0.043526854,0.0465489,-0.012954978,-0.007801099,-0.030548448,0.005048459,0.014442575,-0.001806786,-0.010624019,-0.034460712,0.0024070959,0.018179137,0.014817403,-0.035655472,0.0063779256,-0.042730343,0.02501974,0.018343125,-0.016597833,-0.008076363,0.0021728287,-0.0052358727,0.013575787,0.010618162,0.017300636,-0.022641929,0.0027541043,-0.007332565,-0.020955205,0.012017909,-0.029470818,-0.0020059133,-0.022969903,0.016996088,0.015332791,-0.05111711,-0.006500916,0.053647198,-0.008023653,0.0045418562,0.004714628,0.019420754,0.041231032,-0.007748389,-0.040036272,0.011988626,-0.02930683,-0.002366099,-0.0006409405,0.046056937,0.0057922574,0.017792597,0.008263777,0.018038578,-0.008052937,0.01888194,0.026729891,-0.015379644,0.009142279,0.012474731,-0.020814644,0.0011574266,-0.010553739,0.030899849,-0.015871605,0.042589784,-0.011935916,-0.012697284,-0.032328878,0.015426498,-0.006594623,-0.002708715,0.044745043,0.008732311,-0.0011471774,0.03453099,-0.0006116571,-0.010026637,-0.005897678,0.008621034,-0.016539266,-0.018366551,0.03977858,-0.017183501,0.01801515,0.030642156,-0.009505393,0.017054655,0.020322682,-0.005127524,-0.024340367,-0.04188698,0.020123556,-0.049149267,0.0107762925,0.024293512,0.0082403505,0.020135269,0.0013258061,0.012779278,-0.010536169,-0.008234493,-0.0006947488,0.014747122,-0.009927074,0.03324252,0.017464623,-0.025699116,-0.0011881741,-0.015684191,0.050789136,-0.0027438551,-0.0166564,-0.0063603558,0.039497457,0.008023653,0.031508945,0.029658232,0.023953825,0.010395609,0.011695792,-0.020076703,-0.032118037,0.011297538,-0.0056868372,0.022431089,0.023403298,-0.010811433,0.017359203,0.0014575815,-0.0019912715,0.028112069,-0.017851163,-0.011818782,-0.008123216,0.015449924,0.0037307057,0.014864257,-0.020146983,-0.05627099,-0.023719558,0.026706465,0.02759668,0.008814305,0.007525835,-0.0017672535,0.012896411,-0.014149741,0.01243959,-0.02780752,-0.009036859,-0.007906519,0.00042717168,0.03720164,0.007912376,0.005435,-0.0076136854,0.0023939183,0.0027028583,0.01466513,0.051304527,0.007818669,0.008626891,0.012627005,0.030899849,-0.0072857114,-0.009886078,0.024012392,0.015473351,-0.0029298046,-0.014700269,0.009230129,0.022747349,-0.036170863,-0.030056486,0.017991723,-0.02330959,-0.037506185,-0.034296725,0.02846347,0.016890667,0.0021537945,-0.00020864425,0.005086527,-0.0015403071,0.018553965,-0.011379532,-0.024223233,-0.002916627,0.007396988,0.03354707,-0.014536282,0.023778126,-0.032375734,-0.011297538,0.022056261,0.026495624,-0.019420754,-0.0116723655,-0.047392264,-0.005385218,0.0050396738,-0.005768831,-0.03495267,-0.032282025,-0.02930683,0.005030889,-0.0018638887,0.0026457557,-0.026729891,-0.0003396875,0.007742532,-0.026636185,0.057020646,0.02080293,-0.023145603,-0.012322457,0.010934424,-0.021693146,0.059129052,0.013974041,0.034039028,-0.032352306,-0.01912792,-0.013786627,-0.004046967,0.052101035,0.007215431,0.005426215,0.0096810935,-0.04427651,0.02285277,0.020018136,0.016949235,-0.012884698,0.067422114,0.022161681,0.01881166,-0.0025447279,-0.015695905,0.034249872,-0.04167614,0.00817007,0.0003175419,0.015906746,0.005212446,-0.042730343,0.035772607,0.013130679,0.016527554,-0.012732425,-0.01351722,-0.031298105,-0.020146983,-0.00409382,0.015567058,-0.01362264,-0.030665582,0.022641929,-0.018448545,0.013329806,-0.06821862,-0.0075902585,-0.059129052,0.01212333,0.0058098277,0.030150194,-0.015731046,0.0051890193,0.018495398,-0.02651905,0.038419828,0.04727513,0.01109841,0.03989571,0.010208195,-0.014969677,-0.06006612,-0.026870452,-0.010946137,0.014407435,0.020146983,0.087569095,-0.0067644664,0.012533297,-0.010219908,0.015766185,-0.019315334,-0.031930625,0.016972661,-0.0024729834,-0.017476335,0.017101508,-0.02888515,-0.012345883,0.009364833,-0.00043412647,-0.0070748706,-0.02581625,0.013786627,0.00024927498,-0.0030220475,-0.0014561173,-0.015075097,0.0043222304,0.034203015,0.012978405,0.015660765,-0.0013148249,-0.010120344,0.0007130509,-0.027901229,0.012837845,0.0032738848,0.009013432,-0.021400312,-0.013528933,-0.00550528,-0.021552585,-0.028557176,-0.026448771,0.00679375,0.020638945,0.0047497684,0.000116401534,0.01337666,-0.017675463,-0.0009392652,-0.038747802,0.005909391,-0.007730819,-0.023028469,0.0035667187,0.019373901,-0.008392624,-0.015707618,-0.029025711,-0.011262397,0.019479321,0.008744025,0.019619882,0.012685571,0.017253783,0.019936142,0.013177532,0.024762047,-0.024410646,0.010969563,-0.0069343103,0.0076078284,0.026917305,-0.0029605522,-0.024691766,-0.010085205,-0.018436832,0.031790063,-0.0020395892,0.0042021684,-0.0152039435,-0.02846347,-0.017968297,0.017980011,0.016457273,0.04275377,-0.011760215,0.042870905,0.012627005,-0.015461638,-0.023860117,-0.014571423,0.015754472,-0.030759288,0.009886078,0.018214278,-0.013048685,-0.010190625,-0.0035491486,-0.05050802,-0.030431313,-0.015625624,0.008691315,-0.01243959,-0.020158695,0.004755625,-0.005572632,0.0781984,-0.0026179363,-0.007098297,-0.0005084331,0.042238384,-0.0141614545,-0.00811736,0.025113449,-0.020193836,-0.023297876,0.031063836,0.018682811,0.0018302128,-0.010237479,0.03003306,-0.021060625,-0.030501595,0.04568211,0.03218832,-0.03905235,0.006407209,0.017652037,-0.011502521,-0.0034290866,-0.0025505845,-0.029939353,0.042144675,-0.005862538,-0.0007972407,0.017956585,0.04247265,-0.009323836,0.0050894557,0.022618502,-0.035421208,-0.010565452,-0.0003640293,0.0016794032,0.016152726,-0.02452778,0.044791896,-0.006729326,-0.020978631,0.016258147,-0.016281573,-0.0062900754,0.0107762925,-0.045494698,-0.0008397016,-0.013505506,0.0012269747,-0.0022753205,0.019783868,-0.011332678,-0.010846573,-0.045494698,0.0006566804,0.024410646,-0.031790063,-0.049805216,-0.015813038,0.019912716,-0.045846097,0.008480474,-0.0032416729,0.05027375,0.01672668,-0.004418866,-0.011643082,0.028557176,0.0048991134,0.01233417,-0.024972888,0.022513082,0.008574181,0.014056034,-0.014723696,-0.02104891,-0.01222875,0.014290301,0.033008255,-0.008609321,0.025394568,0.039919138,-0.056224138,0.07112353,0.034085885,0.016855529,-0.0089841485,0.01219361,0.0295411,-0.021552585,-0.015133664,0.015719332,0.025207154,-0.006682473,-0.009886078,0.004456934,-0.0011566945,-0.034367003,-0.0035667187,0.040153407,0.010091062,-0.008732311,0.033640776,0.015754472,-0.0015988739,0.031508945,-0.00029173592,-0.030923275,0.012685571,-0.00093414064,0.034929246,-0.0067058997,-0.004547713,-0.04397196,0.014618276,-0.05327237,-0.0028580604,0.0017262567,0.022138255,0.016328426,-0.0057834727,0.015813038,-0.0068933135,-0.0014810083,0.0014312264,-0.004497931,0.040457953,-0.00092169514,-0.01988929,0.0058098277,0.034437284,-0.022056261,0.010910996,0.018858513,-0.007929946,0.032141466,-0.01783945,-0.003765846,-0.015239084,0.0037160642,0.015180517,-0.0001789033,0.009534677,0.0106767295,0.004893257,-0.015110237,-0.049570948,-0.03849011,0.015110237,-0.033195667,-0.03870095,-0.041933835,0.05313181,-0.018249419,0.0056370553,0.0031948194,0.02438722,0.014524569,-0.03038446,-0.0101789115,-0.043878254,-0.0050513875,0.0076078284,0.005924033,-0.019924428,-0.012662144,0.02487918,0.00935312,-0.011648938,-0.022653641,0.029939353,-0.02038125,0.016316714,-0.0003773899,-0.021447165,-0.012474731,-0.016738394,-0.0123693105,-0.0034349435,-0.035866313,0.018928792,0.011496665,0.008732311,-0.012357597,-0.011455668,-0.025136875,-0.005660482,-0.026823599,0.012310743,-0.009587387,-0.018565679,-0.019830722,-0.0070045902,-0.020861497,0.008656175,-0.00070902443,0.02867431,0.023426725,-0.018624246,0.016187867,0.0017467551,-0.023180744,0.03396875,-0.023649277,-0.037459332,0.021084052,0.016773535,-0.0023251025,0.004650205,-0.00003127376,0.018062005,0.040692218,0.010565452,0.008609321,-0.022372521,0.022454515,0.0018331412,0.024762047,0.045939807,0.02731556,-0.016141012,-0.048915,-0.0034290866,-0.007871379,0.028721163,0.01860082,0.032328878,0.020720938,0.034437284,-0.034882393,-0.015285937,-0.034203015,-0.009095426,0.011479095,-0.055896163,0.0029620165,-0.018764805,-0.005555062,0.008480474,0.01466513,0.009487824,0.0015798397,-0.013200959,0.022934763,-0.021376885,0.015145377,0.0026501482,0.0037687742,0.013868621,0.01826113,-0.0046238494,0.016855529,-0.04038767,-0.04148873,0.0059474595,0.0019165989,0.02567569,-0.033383083,-0.01727721,-0.0037980576,0.045518126,-0.008375054,0.02881487,-0.001513952,-0.022477942,0.009868507,-0.030197047,-0.0004549909,-0.0109754205,0.028158922,0.0054642833,0.0052241595,0.005727834,-0.0034730118,0.034577843,0.013400086,0.036920518,0.006131945,0.014337155,0.026870452,0.019842435,-0.01494625,-0.0012540618,-0.0015783756,-0.033593923,-0.0009853865,0.020814644,0.0126152905,0.007619542,-0.0030835425,-0.018518826,-0.026003664,0.027292134,0.0149579635,0.008351627,-0.026214505,0.014805689,0.00023280307,0.0039766864,-0.025933383,0.030993557,-0.024551207,0.005150951,-0.018870225,0.027526401,-0.0027994935,-0.023227597,0.016152726,-0.007233001,0.04059851,-0.0063662124,0.001849247,0.03218832,0.0010366326,-0.010050065,0.0349761,0.019010786,0.020474957,0.032000903,0.00037555967,-0.016105874,-0.043269157,0.030735862,-0.0023690274,0.010665016,-0.012802704,0.001600338,0.016164439,-0.003619429,0.0040264684,-0.012053049,-0.004213882,0.0190225,0.029939353,-0.025652263,0.009271126,0.019116206,-0.035983447,-0.013716347,0.02045153,-0.004085035,-0.027362414,0.00077967066,0.035280645,-0.00073757576,-0.019350475,0.017113222,-0.040247113,0.024199806,0.027830947,0.020674083,-0.014618276,0.02198598,-0.01508681,0.034367003,-0.0061963685,0.026729891,-0.06142487,-0.030267328,-0.032937974,-0.0076781088,0.026589332,0.010946137,0.013294666,0.013446939,0.006055808,0.017242068,0.017183501,-0.012872985,-0.021833707,-0.029986206,0.014547995,0.008878728,0.0013697313,-0.006219795,-0.017429482,0.016703254,0.018975647,0.02128318,0.0009356048,-0.024926035,0.014969677,0.02459806,0.013528933,-0.018097144,-0.014454288,0.009973927]},{"id":"interface-GatewayGuildSyncDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildSyncDispatchData\nDescription: GUILD_SYNC — guild sync state (passive/lazy)","meta":{"url":"/docs/typedefs/GatewayGuildSyncDispatchData"},"embedding":[0.010439846,0.016831182,-0.0006869193,0.012537107,0.046829976,0.019565586,-0.040724028,-0.018224932,0.017946182,-0.022432728,0.019525765,0.016658623,-0.03225534,0.00040858425,0.06031616,-0.0036469775,-0.034963198,0.025273321,-0.03347653,0.026454689,0.01902136,0.0069952942,0.046617597,0.033449985,-0.03419332,-0.0021885182,0.010433209,0.011773864,0.020614216,-0.04927236,0.023746833,-0.030742127,0.057502113,-0.026905999,0.021145169,0.053732354,-0.024583083,0.025472429,-0.0310607,-0.030715581,-0.012517196,-0.06589116,0.0035772899,0.0053327503,-0.021092074,-0.022990227,0.009477495,-0.024463618,0.035467602,0.020030169,-0.05797997,-0.011959696,-0.0047951615,0.0565464,-0.00115648,-0.02568481,0.020149633,0.030556295,-0.01979124,0.019087728,-0.0022482504,-0.00010256087,-0.0024788827,0.01880898,0.033449985,-0.014866659,-0.056068543,0.053865094,-0.013068059,0.04003379,0.0014916436,-0.013778208,0.002928533,-0.007552794,0.00081799814,0.023056597,0.0117805,0.009696513,0.040644385,0.01242428,-0.009497406,0.033768553,-0.07767829,-0.050493546,0.020109812,0.00091921084,-0.04746712,0.011488477,0.0133069875,0.01634005,0.009198746,0.010758418,-0.065147825,-0.004224388,0.004858212,-0.06923616,0.04802462,-0.003230512,-0.018848801,0.056758784,0.06031616,-0.027476773,-0.017428504,-0.08410282,0.0078182705,-0.011727405,-0.02334862,-0.017494872,-0.031565104,0.008369133,-0.07704116,0.032892484,-0.0059931222,-0.013804755,0.0122251725,-0.012364548,0.023414988,-0.023959214,0.046007,0.009411126,-0.045927357,0.026096297,0.010380114,-0.0046922895,-0.015132136,0.014866659,0.019286836,-0.00015254504,-0.056705687,0.004323941,0.03148546,-0.03129963,0.03483046,0.018158562,-0.03504284,-0.00980934,-0.035414506,0.0065738508,-0.050440453,-0.040166527,0.009523953,0.00865452,0.047944978,0.073271394,-0.022260169,0.015769279,-0.0026630568,0.010698685,-0.018105468,0.0355207,-0.061909016,0.024755644,-0.015556897,-0.017083384,0.028591773,0.03281284,-0.01448172,-0.012729577,-0.023600822,-0.0038394476,-0.023096418,-0.031193437,0.029547486,0.009942079,-0.042954028,-0.03695427,0.013585738,-0.021277906,-0.076669484,0.0027792025,0.029759867,-0.011720768,-0.05022807,0.03305177,-0.008720889,-0.0033698867,-0.04759986,-0.017428504,-0.023561,-0.03605165,0.046617597,-0.012902137,-0.015304695,-0.049298905,-0.061696637,0.0064245206,-0.006228732,0.03039701,-0.008734163,-0.018835526,-0.04205141,0.06243997,0.048741404,0.043060217,0.008468687,-0.017216122,0.03414022,-0.013572464,0.017601063,-0.012868952,0.009218656,-0.03406058,0.037883434,-0.024928203,0.002201792,-0.0067165443,0.054634973,-0.028326295,-0.0022449319,0.029202366,0.032175697,0.013353446,-0.054157116,0.013459636,-0.051396165,0.0299457,-0.042529266,0.0041049235,0.042024862,0.0015488869,0.011136721,0.009995174,-0.0016467812,0.010519489,0.041122243,0.021715943,0.007333776,-0.029547486,-0.015490528,0.0056413664,0.0031176845,-0.011355738,-0.007758538,-0.047440574,0.010320382,0.016180767,-0.0055252207,0.034883555,0.035600338,0.028379392,-0.03737903,-0.030184628,-0.019512491,-0.0034843732,-0.035467602,-0.012284905,-0.00095654343,0.00041729517,-0.00419784,0.029361652,0.02178231,0.043723907,-0.028034272,-0.018609872,-0.039423194,0.009112466,0.002576777,0.00404851,0.018397491,0.04566188,-0.008269579,-0.01507904,-0.011282733,0.0032338302,0.007758538,0.025552072,0.06291783,-0.01167431,-0.039688673,0.014548088,0.0018384217,0.014654279,0.06599735,-0.029759867,-0.041016053,-0.005780741,0.016937373,0.0038825874,0.0024274467,-0.005292929,-0.048077714,-0.030290818,0.010167733,0.04536986,-0.0040518283,0.046405215,0.028326295,0.015716182,0.038839146,0.052909378,-0.046856526,-0.0020524617,0.04613974,0.03528177,0.030131534,0.022074334,-0.016632074,-0.0009764541,0.016074575,0.04093641,0.05235188,0.0043703998,-0.04536986,-0.001130762,0.0025054303,0.0032753109,0.012630024,-0.0299457,-0.00031400842,0.010446483,0.0008333459,-0.0013340173,-0.031512007,0.03082177,-0.03562689,0.0009814318,0.036662243,0.038892243,0.042635456,0.012384458,0.012052613,0.023096418,0.012623386,-0.034087125,-0.00065207557,-0.047281288,-0.022884037,-0.04624593,-0.0036005192,0.053068664,0.020415109,-0.048210453,0.011813684,0.0040750573,0.031910222,0.026428143,0.00005807289,0.03567998,0.016698444,0.000030488267,-0.016087849,-0.013539279,-0.03748522,0.005674551,0.05256426,-0.059519734,-0.023043321,0.06631592,0.0031027514,0.014269338,0.030476652,0.0011465248,0.0136720175,-0.027370581,-0.0027659286,-0.07077592,0.041122243,-0.036237482,-0.04690962,0.05479426,-0.0048714858,-0.0053626164,0.013028238,0.031219985,0.001942953,0.03947629,-0.024715822,0.012231809,0.0030297455,-0.021981418,0.029096177,0.0121455295,-0.026534332,-0.04167974,-0.00400537,0.009796067,0.0136720175,-0.00569778,0.0077120797,-0.0035009657,-0.024529988,0.026813082,0.0158091,-0.007592615,0.028857248,-0.0056214556,-0.055059735,0.035361413,-0.06711235,-0.02516713,0.030264271,-0.016512612,-0.011661036,-0.06297092,-0.005558405,-0.022804394,0.03228189,0.021450466,0.022153977,-0.02677326,0.046060096,0.005963256,-0.020574395,-0.007466514,-0.038759504,0.0021155123,-0.003217238,0.006109268,0.060634732,-0.024158321,0.031989865,0.031644747,0.036184385,-0.009304936,0.015795825,-0.0654664,-0.009431037,-0.013048149,-0.00039054017,0.023149513,0.012795947,0.019990347,0.0058471104,0.008959817,0.045821168,-0.007951008,0.035759624,0.031246532,0.02872451,-0.076722585,-0.07555449,0.019605407,0.00071595574,-0.01231809,0.05612164,0.02139737,0.011734042,-0.03238808,0.007439967,-0.04125498,-0.011183179,-0.005478762,-0.05333414,0.051635094,-0.021676121,0.012079161,0.023693739,-0.031273082,0.054369498,-0.009630145,-0.01961868,0.01458791,-0.0073138657,0.033874746,-0.05999759,0.024861833,-0.013333535,0.047201645,-0.00067157147,-0.021702668,0.004785206,0.016751539,-0.01347291,0.02649451,-0.029096177,0.029122723,0.019512491,0.007692169,-0.002893689,0.06907687,-0.06599735,-0.014667552,-0.007267407,0.042821288,-0.013379994,0.045768075,-0.0121455295,0.051581997,0.037458673,0.05012188,-0.021224812,0.0024539942,-0.043060217,-0.017494872,0.07842163,0.06838664,0.02806082,0.00391909,-0.042210694,-0.014242791,0.016087849,-0.00961687,0.069926396,-0.015503802,0.017043563,-0.030715581,-0.035759624,-0.046192836,0.021423917,0.0014800291,0.0059499824,-0.021038977,0.022499096,-0.00569778,0.024768917,0.021105347,-0.027981177,-0.010625679,-0.03392784,-0.050838664,-0.00404851,0.00089598174,-0.013486184,-0.039078075,-0.05797997,0.016512612,-0.022127429,0.036794983,-0.008024014,0.013565827,-0.04836974,0.007214312,-0.0033698867,-0.042529266,0.022658382,0.020760229,0.025658261,-0.062333778,-0.015888743,-0.0012759443,0.010784965,-0.0062951013,0.019499216,0.053758904,-0.0044500423,-0.013884398,-0.008833716,-0.014999397,-0.005389164,-0.015689636,0.006487571,0.0069554728,0.007765175,-0.0019446121,0.019950526,0.005263063,-0.002893689,0.0051568723,0.01912755,0.016393147,0.00087938947,-0.034219865,-0.0023229155,0.014123326,0.019154098,0.010565947,0.0022200437,-0.03339689,0.0091390135,-0.0038460845,0.015941838,-0.014959577,0.0027211297,-0.018981539,-0.018304575,0.020866418,-0.004705563,0.0070351157,-0.03148546,-0.0033499761,-0.014216243,0.030954508,-0.0047387476,0.012643297,0.012849041,0.0038593581,-0.043458432,0.01130928,0.011700857,0.024941476,0.00724086,-0.10677447,0.013844577,0.055165924,-0.0665283,0.025538797,0.001516532,0.007333776,-0.0028439122,0.04568843,-0.03358272,0.020468205,0.020322192,0.008282853,0.006603717,-0.022764573,-0.017003741,0.004599373,-0.032334983,0.016592253,-0.0020690542,0.019724872,-0.025591893,-0.016924098,0.049644023,0.015716182,0.03060939,0.019711597,0.01612767,0.012245083,0.0025883915,0.0020126405,0.023162786,-0.042449623,-0.035972007,-0.0022183843,-0.050413903,0.040724028,-0.013313624,-0.012663208,0.012643297,-0.0010262309,-0.0047520213,0.012603476,0.018755883,0.018039098,-0.030476652,0.004506456,-0.046883073,-0.035839267,-0.013014964,-0.033211056,-0.034777366,-0.022127429,-0.057820685,-0.040432002,0.019631954,0.011169905,0.008316037,-0.026720166,0.009523953,0.0069090147,-0.0013439725,-0.005176783,0.06610354,-0.0141366,0.004128153,0.0008818783,-0.013738386,0.008163389,-0.035095934,-0.01647279,0.025698083,-0.008189936,0.041308075,-0.014959577,-0.010672138,0.022446001,-0.014641005,-0.0084222285,-0.014773743,-0.027091833,0.0035441054,0.039635576,0.0017488236,0.011515024,-0.00068194163,0.050148427,0.0013423134,0.02156993,0.032228794,0.056864973,0.043166406,0.02030892,-0.0115415715,-0.009577049,-0.0037564863,-0.022499096,-0.0076324367,-0.00726077,-0.0013331876,0.02970677,-0.014667552,0.017999277,0.025180405,-0.020216001,0.05144926,0.002201792,0.01752142,-0.01923374,0.015702909,0.041892122,0.026786534,-0.016698444,-0.0064510684,-0.0047885245,0.045051288,0.013074696,-0.026574153,-0.023786655,-0.015198505,0.009888983,0.006809461,-0.01006818,0.007884639,-0.01709666,0.0065273927,-0.012218536,0.0011622874,-0.017335586,-0.01300169,0.009815977,-0.055059735,-0.011408834,0.017229397,0.00970315,-0.022565465,0.020229276,0.015384338,-0.016140945,0.017614337,0.025406059,0.01657898,-0.02656088,-0.0129087735,-0.019140825,-0.041201886,0.02561844,-0.04980331,-0.003004857,0.010074817,0.01591529,0.01045312,0.018543502,0.0029567396,0.0023361894,0.0023693738,0.019910704,-0.010200918,0.014269338,0.024370702,0.0041712928,-0.010519489,-0.0003604667,-0.00031193436,-0.021370823,0.0060628094,0.020401835,-0.018716061,0.0020673948,-0.021304455,0.010386751,-0.034299508,0.016658623,0.014654279,-0.04866176,0.02418487,0.0052663814,0.01703029,0.022538917,0.0020292327,-0.0053128395,0.021092074,0.074386396,-0.006567214,0.015171957,-0.058245447,-0.038122363,0.0070284787,-0.01006818,-0.025459154,-0.0002754314,0.016220588,0.033370342,0.03870641,-0.0326801,0.0066236276,-0.033370342,0.02677326,0.012032703,0.003481055,-0.014043684,-0.0041480632,0.0038195369,-0.01036684,0.0087407995,0.027184749,0.01261675,-0.0043703998,0.012377822,-0.027317487,-0.0022947087,-0.010851334,0.0046491497,-0.00066866784,-0.008428865,-0.0135923745,-0.11096899,0.010373477,0.036768433,-0.016738266,0.0009324847,0.009258478,0.009875709,0.047944978,0.0020142996,-0.046431765,0.024622904,-0.029600581,-0.0035175579,0.006869193,0.051475808,-0.0032072826,-0.000809702,0.027768796,0.01776035,0.0012452486,-0.00612586,0.010771691,-0.024423799,0.016937373,-0.024264513,-0.019937253,-0.0013024919,-0.017056838,0.013426452,0.020468205,0.036741886,-0.03737903,-0.024277786,-0.001645122,-0.0110637145,0.020853145,-0.013532642,0.028405938,0.024277786,-0.012576928,-0.027742248,0.0016683511,0.0084222285,0.012570292,0.0059134793,0.03724629,-0.010579221,0.035175577,-0.019870883,-0.002024255,-0.033317246,0.010181007,0.0510245,-0.02247255,0.013300351,0.016180767,0.004791843,0.019977074,-0.008435502,-0.012211899,-0.010592495,0.028671416,0.019698324,-0.015344516,0.014242791,-0.01835767,0.03238808,-0.018822253,0.02418487,0.00029658654,0.025737904,0.016260408,0.019539038,-0.018941717,0.011448655,0.07061663,-0.014043684,-0.010652227,-0.0046192836,0.026786534,0.021158442,0.029335104,0.04093641,-0.019366479,0.029972248,0.014919755,-0.013964041,-0.00839568,-0.008130204,-0.013207434,0.003393116,0.019671775,0.015065767,0.020985883,0.0024539942,0.007811633,0.015450707,-0.020468205,-0.028883796,-0.015477254,0.021038977,-0.044785812,0.017587788,-0.05036081,-0.033449985,-0.027715702,0.014733922,0.030742127,0.0010229124,-0.00925184,-0.011534935,0.01947267,-0.012802583,0.009205382,0.011860143,-0.022525644,0.013406541,-0.012245083,0.0059466637,-0.00015161172,0.0007773471,-0.0102208285,-0.0416001,-0.012862315,0.0015223393,0.003776397,0.010147822,-0.0058935685,-0.00753952,0.046537954,-0.008973091,0.0060428986,0.001118318,0.021556657,-0.02006999,-0.017481599,-0.014773743,0.011846869,-0.03270665,-0.022087608,0.011601304,0.0013000031,-0.025777726,-0.010539399,0.0299457,-0.004350489,0.028804153,-0.035972007,-0.0158091,0.0064742975,0.001188835,-0.056599498,-0.026706891,-0.009085918,0.033848196,0.033662364,-0.03037046,0.045874264,-0.030264271,0.016393147,0.009882347,0.02739713,0.00284889,0.0082961265,-0.009550502,-0.007745264,-0.03015808,-0.0020557803,-0.053626165,-0.047865335,0.0037896708,0.017547967,0.012172078,0.007864729,-0.028883796,0.03504284,0.008866901,-0.020720407,-0.0035606977,0.026852904,0.0042077955,0.008150115,-0.0024622905,-0.00005265448,0.059094973,0.018251479,0.023361893,0.0012784331,-0.011873417,-0.0094244005,-0.013326898,0.054741163,-0.003401412,0.0126698455,-0.015835647,-0.03629058,0.032228794,0.011216364,0.0052365153,-0.014375528,0.00282732,0.010678775,-0.00546217,-0.018397491,0.017587788,0.019300109,0.01026065,0.022738025,-0.010088091,-0.009961989,-0.013333535,-0.0048714858,0.002024255,0.0018367625,-0.015955111,0.0015887083,-0.06387354,-0.017441778,0.003607156,-0.0061192233,-0.001685773,-0.01979124,0.00801074,-0.0020275735,-0.02760951,0.008077109,-0.05734283,-0.009066007,-0.039131172,0.011833595,0.016778087,0.009417763,-0.010413298,0.008369133,-0.00518342,-0.0034578256,0.038971886,0.029892605,0.009869073,0.031697843,-0.0005877806,-0.0036901173,0.0067961873,-0.021649573,-0.0076324367,-0.014800291,-0.008462049,0.019671775,-0.015039219,0.041626647,-0.021052253,-0.006434476,-0.0136720175,-0.010771691,0.010207554,-0.009165561,-0.017720528,0.022220347,0.004542959,-0.008130204,-0.018875347,0.022485822,-0.014428624,-0.017229397,0.045077834,0.023853024,-0.030635938,0.019432848,-0.0094575845,-0.020587668,0.023441536,0.02463618,0.031910222,0.017959455,0.010227465,-0.008322675,-0.01912755,0.033343792,-0.0016948987,0.020720407,-0.030476652,-0.0009490769,0.00056413666,-0.005578316,-0.00066866784,-0.02896344,0.01101062,0.0026248945,0.008209847,-0.0031641428,-0.018795704,0.032520816,-0.004602691,-0.042821288,-0.02617594,-0.021171715,-0.034963198,0.03291903,0.009517317,-0.0061159045,-0.05500664,0.031565104,-0.026467964,-0.0047586584,0.0067530475,-0.019326657,0.016698444,-0.0018898577,-0.013014964,-0.00884699,0.034326054,-0.029467843,0.024317607,0.028352844,0.012138893,0.018224932,0.015623266,-0.029759867,-0.005153554,-0.0036237482,0.029998794,-0.003673525,0.010784965,-0.011402197,-0.009125739,-0.00447659,-0.01619404,0.0048383013,0.011966334,-0.039874505,0.018158562,-0.02600338,-0.01111681,-0.011528298,0.009537227,0.027344035,-0.006537348,0.04913962,0.015543624,-0.017189575,-0.008919995,-0.0032238748,-0.019804515,0.010619042,-0.009178835,-0.0050241346,0.0025452517,-0.000586951,-0.0062984196,-0.017640885,0.090368055,-0.028299749,0.0024158321,-0.014933028,-0.009484133,-0.015384338,-0.010254013,-0.006816098,-0.00925184,-0.0061723185,-0.010884519,0.026826356,-0.0071147582,-0.011023893,0.031989865,-0.028857248,0.00041646557,0.020056717,0.0099818995,-0.027901534,-0.0027095152,0.002201792,-0.020534573,-0.008860264,-0.015663087,-0.040060338,0.044015933,-0.0097429715,0.017269218,0.027237844,0.005555087,0.019313384,-0.02806082,-0.0019678413,-0.0111433575,-0.0015812418,0.0068360087,-0.040830217,0.033635817,-0.025644988,0.019910704,0.006563896,-0.029733319,-0.0056712325,-0.03857367,0.025923738,0.002767588,-0.03416677,-0.0076390738,-0.01130928,-0.0068559195,-0.010950888,0.00961687,-0.021198263,0.0065539405,-0.041201886,0.009590323,0.06397973,0.00015586348,-0.003408049,-0.024450345,0.0013862828,-0.004659105,-0.0019811152,0.010711959,0.012968506,0.016313504,0.004675697,-0.01745505,0.03947629,0.004227706,-0.009769519,-0.015477254,0.019552313,0.0059898035,0.00649089,-0.004270846,-0.03703391,-0.007552794,0.021331001,0.011375649,0.017946182,-0.020614216,0.011846869,-0.10767709,0.055909257,0.0017322314,0.009046096,0.0015239986,0.012364548,-0.001163117,-0.008827079,-0.00589025,0.012112346,0.02111862,-0.005883613,-0.013134428,0.0005803141,-0.04067093,0.012842405,-0.013937493,0.04390974,0.011667673,-0.012888863,0.021477014,0.01902136,0.014800291,0.0019628636,0.021994691,-0.003696754,-0.024622904,-0.007141306,-0.005352661,-0.03270665,0.0028074093,-0.031777486,0.0194063,-0.039980695,0.0051402804,-0.010048269,0.018782431,0.0057940152,0.000018536659,-0.023189334,-0.012138893,-0.014866659,-0.009158924,-0.005309521,0.0016816249,-0.0052962475,-0.028087368,-0.0005956619,0.021835405,-0.0067264996,0.007858091,0.002701219,-0.0041878847,0.00035652606,-0.021795584,-0.0015306354,-0.008309401,0.0058039706,0.005306203,0.004572825,0.008223121,0.020016896,0.026096297,-0.023375167,-0.026467964,-0.011893327,0.0030247679,-0.005402438,-0.010034995,-0.04170629,0.0032155789,-0.0449451,0.038865697,-0.023375167,0.004579462,0.0057143723,-0.015437433,-0.0049909498,-0.06785568,-0.005050682,0.00261328,0.013526006,-0.015968384,-0.0038693135,0.0028107278,-0.0058271997,0.016313504,-0.014773743,0.014959577,0.0016492701,-0.0002677575,-0.008322675,-0.022923859,-0.009218656,-0.021623025,-0.0071744905,0.020335466,-0.019300109,0.016273683,0.02949439,0.017959455,-0.010114638,-0.016233861,-0.010804876,-0.01933993,0.0015812418,0.01216544,0.00091174437,-0.01507904,-0.037325934,-0.014826838,-0.01619404,0.007745264,-0.00447659,-0.00007046523,0.015928565,-0.024875106,-0.009988537,0.00037539974,0.034671172,0.01709666,0.004778569,-0.021264633,0.024224691,0.031432364,-0.012822494,-0.0034478703,0.012835768,0.0069222883,-0.021012431,0.022153977,0.009152288,0.02983951,0.049192715,-0.006530711,0.03204296,0.011269459,0.008681067,-0.003179076,-0.06716544,-0.008116931,-0.007566068,0.011070352,-0.010147822,0.010247376,-0.009344758,0.0119066015,0.02240618,-0.008807168,-0.0355207,-0.015875468,-0.029866057,-0.03238808,0.003393116,-0.004483227,-0.015477254,0.004290757,-0.0007653177,0.004174611,-0.005983167,0.0022266805,0.01619404,0.0068426454,-0.014866659,-0.041493908,0.04191867,-0.014879934,0.0260432,-0.00044550202,0.018424038,-0.038069267,0.01807892,-0.013632196,-0.01880898,-0.0021553338,-0.0071147582,0.030264271,-0.007824907,-0.0139905885,-0.021583203,0.017853266,-0.016486064,-0.02499457,-0.00462592,0.008621335,-0.030954508,-0.0006209651,0.0040385546,-0.010273923,0.013167612,0.0052365153,0.0013738386,-0.0076058893,0.013658743,0.04693617,-0.017109932,-0.0263485,0.025751177,0.049644023,0.006461024,-0.0014128304,0.0057906965,-0.036184385,-0.01707011,-0.017893087,0.005309521,0.016074575,-0.01441535,-0.0044799084,-0.019034633,0.034219865,0.0028107278,0.0019495898,0.013446363,-0.022857489,-0.0075992523,0.011136721,-0.001700706,-0.0012950255,-0.0011647763,0.0069289254,-0.03567998,0.016101124,0.010997346,-0.004732111,0.013711839,-0.0057210093,0.047281288,-0.008488597,-0.010851334,0.028538676,-0.0010992368,0.018623145,0.030476652,0.028140463,0.0065771695,-0.002782521,-0.005359298,-0.0068492824,-0.023043321,0.015636541,0.024450345,0.026932547,0.004705563,0.029600581,0.021065526,-0.03703391,-0.013764934,0.0012120642,-0.0013049807,0.0132273445,0.017149754,-0.01567636,0.0155967185,0.00636147,-0.03671534,-0.038732957,-0.0171763,0.002215066,-0.035202127,-0.009444311,0.0071744905,-0.040166527,-0.020109812,0.024065405,-0.055431403,0.013220708,0.033635817,-0.012477375,-0.010565947,0.019671775,0.017733801,0.030927962,0.0056712325,0.024224691,-0.0026348499,-0.01853023,-0.028034272,0.027237844,0.017401956,-0.003180735,0.03005189,0.021543382,-0.0139905885,0.00961687,-0.0033184509,0.010240739,0.00216363,-0.021556657,0.003356613,-0.00069563027,0.0091390135,-0.00009991648,-0.0059234346,-0.007167854,-0.030662484,-0.0032719926,0.01709666,0.008535055,0.039024983,0.021861954,-0.00640461,-0.003283607,-0.02334862,0.028113915]},{"id":"interface-GatewayGuildUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayGuildUpdateDispatchData\nDescription: GUILD_UPDATE — full guild object","meta":{"url":"/docs/typedefs/GatewayGuildUpdateDispatchData"},"embedding":[0.0061849062,0.014053429,-0.0023221194,0.020152565,0.01679804,0.0081131235,-0.03367232,-0.0037198383,-0.003808784,-0.006772584,0.013900951,-0.023341907,-0.024460081,-0.0013595993,0.03184258,-0.027928965,-0.028665945,0.023837462,-0.020343164,0.044981137,-0.005835477,-0.016035648,0.049047228,0.012731949,-0.021588404,0.009904745,0.004688712,0.019555358,0.017280888,-0.019377466,0.018094108,-0.021080144,0.057433542,-0.027446117,-0.0036753656,0.031385142,-0.023748515,0.005765591,-0.016582029,-0.03837374,0.016734507,-0.028056031,0.015451147,0.005797357,-0.055959582,0.024841277,-0.008811982,0.0053240387,0.0017217356,0.026582073,-0.022681165,0.017560432,0.0011523239,0.04688712,0.025425779,-0.029225033,0.008036884,0.009644261,0.002655666,0.021143675,-0.027649421,0.0038596103,-0.01133423,-0.023468971,0.021918774,-0.013812005,-0.04963173,0.044447463,0.041016698,0.023049656,0.0013794533,-0.024472788,-0.028996315,-0.026022986,0.014968299,0.008919988,-0.00979674,-0.014981005,0.017001346,-0.004650592,0.011963204,0.021740884,-0.06485416,-0.07740822,0.037357215,-0.018373651,-0.039593566,-0.0101652285,0.005250976,0.009695087,-0.027014095,0.026073812,-0.036620237,0.013812005,-0.019123336,-0.06846281,0.03176634,0.010095343,-0.023138601,0.04061009,0.08838666,-0.039669804,-0.027115747,-0.08183009,0.015387615,-0.021245329,-0.041652024,0.017611258,-0.045616463,0.008773863,-0.09443498,0.028869249,-0.0057401774,-0.03425682,-0.0069123553,-0.010806909,0.040000174,0.005273212,0.034765083,0.0014064547,-0.022986123,0.0032385783,-0.0041010343,-0.0439392,0.021842536,0.003948556,0.012534997,-0.022744698,-0.06678555,-0.008653151,0.023570623,-0.03369773,0.007668394,0.018767554,-0.03700143,-0.014587103,-0.02369769,-0.009974631,-0.027700247,-0.055146366,0.0050063753,-0.030495686,0.005412984,0.027471531,-0.04111835,0.020203391,-0.013507048,0.016518496,-0.0010784672,0.029580815,-0.08040696,0.05519719,-0.011601067,-0.02589592,0.032198362,0.022909883,-0.021779003,-0.01841177,-0.02200772,0.007382497,0.0014683991,-0.05809428,-0.015095364,0.009167765,-0.05590876,-0.053824887,0.0033227592,-0.006213496,-0.07181734,-0.0077700466,0.026251704,-0.024155125,-0.021779003,-0.0012063268,0.0143583855,0.020889545,-0.052655883,-0.012681123,-0.05575628,-0.05072449,0.05336745,-0.02904714,-0.0010546425,-0.050495774,-0.021321567,0.009275771,0.00075127394,0.016886987,-0.04848814,-0.012954313,-0.03069899,0.02146134,0.044117093,0.036620237,0.02010174,-0.034053516,0.028742185,-0.030394034,0.045641877,-0.0045807064,0.032249186,-0.040076412,0.04584518,-0.014904766,-0.004618826,-0.0035197104,0.034942973,-0.0058037103,-0.015730692,0.010349473,0.012751008,0.0033195824,-0.039593566,0.031969644,-0.044117093,0.020406697,-0.0499621,0.020787893,0.006518453,-0.0030479804,0.013684939,0.04401544,0.026607485,-0.005933952,0.031156426,0.011175398,0.014460037,0.0058799493,-0.013735766,0.011111866,0.025019169,-0.016416844,0.004720478,-0.06297359,-0.009116939,-0.008627738,0.016556617,0.01841177,0.03484132,0.03341819,-0.03268121,-0.027090335,0.0044123447,-0.000093164716,-0.018843792,-0.025870508,0.01393907,-0.020813305,-0.016454963,0.06424425,0.032833688,0.042084046,0.018653195,-0.044981137,-0.022795524,-0.0037611346,0.034155168,0.018144934,0.031867992,0.04094046,0.006994948,0.0028478524,-0.017992456,0.026759963,-0.020114446,0.024637973,0.041982394,0.026709137,-0.01844989,0.02251598,-0.0030702166,0.01393907,0.048615206,-0.023926407,-0.006057841,-0.0021982307,0.012820895,0.032859102,0.030597338,-0.040101826,-0.033824798,-0.025387658,0.008119476,0.038348325,-0.010705257,0.03435847,0.027598595,0.020114446,0.04391379,0.034815907,-0.037103083,0.009936511,0.025667202,0.0053049787,0.009110586,0.025031876,-0.0028923252,-0.021562992,0.03011449,0.027319051,0.0121792145,-0.0042979857,-0.044803247,-0.022211025,0.00052533584,-0.017547727,0.07222395,-0.023672277,-0.017280888,-0.00026941826,0.01844989,-0.025768854,-0.033036992,0.034942973,-0.015235136,0.0041359775,0.033367362,0.054892235,0.021334274,0.032452494,0.03550206,0.02622629,-0.009529902,-0.030724404,0.0041073877,-0.05123275,-0.045540225,-0.023316493,-0.015336788,0.023405438,0.02978412,-0.020521056,0.010603604,0.0039612628,0.036035735,0.06480333,-0.029860359,0.029225033,0.035552885,-0.046099313,-0.0062865587,-0.018132227,-0.009707794,-0.053316623,0.036620237,-0.028538879,-0.02365957,0.04518444,-0.01712841,0.019275814,0.022528687,0.019504532,0.017623965,-0.004825307,-0.00905976,-0.05550215,0.046124727,0.0010602016,-0.0070013013,0.047751162,-0.017230062,0.004974609,-0.00047173013,0.02970788,-0.015425734,0.044650767,-0.014510863,0.04963173,-0.015641745,0.0050190818,-0.004949196,-0.032376252,-0.05255423,-0.014803114,-0.0023507092,-0.017928923,0.0064422134,-0.004806247,0.006588339,-0.031537622,-0.00058052986,0.04243983,0.017293595,0.012357106,0.029402925,0.013354569,-0.017967042,0.039746042,-0.044142507,-0.041016698,0.03598491,0.00030694227,-0.017839976,-0.030266969,-0.046023075,-0.02146134,0.038882,0.032350842,0.026251704,0.00032461228,0.04271937,0.020203391,0.0018408594,-0.03435847,-0.036442343,0.04437122,0.011772606,0.04030513,0.046378855,-0.01819576,0.022719286,0.0028637354,0.02365957,-0.041245416,0.035197105,-0.046785466,-0.0019313934,-0.025984867,-0.018627781,0.023977233,0.0017392071,0.03756052,0.005066731,0.03964439,0.043659657,-0.026759963,0.037204735,0.015108071,-0.017179236,-0.06907273,-0.077459045,0.025883213,0.017611258,0.006324678,0.078933,0.007814519,0.0030559218,-0.013989896,0.0142567335,-0.0035737131,-0.033773974,-0.007712867,-0.02167735,0.021512166,-0.02754777,0.023735808,0.031385142,-0.026327942,0.04228735,-0.011906024,-0.016124593,0.029504577,0.0016105534,0.049682554,-0.055603802,-0.004669652,-0.037763823,0.065413244,-0.020762479,-0.017446073,-0.008360901,0.016035648,-0.04360883,0.06947934,-0.029148793,0.008487966,0.0014914296,0.01327833,-0.002204584,0.040000174,-0.056315366,-0.012109329,-0.0050063753,0.037789237,-0.0050381413,-0.0020505171,-0.03359608,0.034485538,0.030139903,0.048716858,-0.043405525,0.004946019,-0.022897178,0.004266219,0.05377406,0.042516068,-0.019707836,-0.013862831,0.01201403,-0.008373607,-0.024231363,0.0028939135,0.043735895,-0.014002603,-0.00387867,-0.012115682,-0.033773974,-0.071512386,0.006937769,-0.010603604,0.009644261,-0.013227504,0.012407932,0.00742697,0.039669804,-0.006375504,-0.0258578,-0.008507025,-0.015616332,-0.027242813,-0.025946746,0.0039358493,0.0070966003,-0.037128497,-0.023608744,0.007573095,-0.0044885837,0.016061062,0.0034752376,0.053469103,-0.01775103,0.028106857,0.016251659,-0.03715391,0.0006786084,0.013532461,0.031461384,-0.084676355,-0.00933295,0.006213496,0.013214797,-0.041652024,0.021181796,0.031131012,0.0013866007,-0.025260594,0.008792923,-0.02167735,0.04523527,-0.013379982,0.0103558265,0.019034391,0.0025317774,0.0055495794,0.02127074,0.011639187,-0.013723059,0.02010174,0.015171603,-0.0040247953,0.015324082,-0.028818423,0.000016528424,0.024218658,-0.000044472876,0.021880655,-0.0070711873,-0.011321523,-0.0018551542,0.0051080273,0.023303786,-0.01745878,0.0073634377,-0.017941628,-0.032986168,0.0002735876,-0.006248439,0.012547704,-0.015527387,-0.008487966,-0.021283448,0.041829918,-0.016200833,0.021740884,0.02945375,0.020381283,0.0017630318,0.032122124,0.013532461,0.011461295,0.0037897243,-0.09789115,0.024879398,0.047852814,-0.0579418,0.010749729,0.0055051064,0.008055944,-0.031080186,0.04424416,-0.02519706,0.03832291,0.017382542,0.0090407,0.016010236,-0.023164015,-0.008373607,0.0015192252,-0.036137387,0.022808231,-0.016378725,0.027039507,-0.026912443,-0.024218658,0.020406697,0.017191943,0.012789128,0.037789237,-0.023468971,-0.0040470315,0.003723015,0.012058502,0.0016613796,-0.035197105,-0.033799384,-0.013087732,-0.026150052,0.02523518,-0.021080144,-0.021207208,0.021486752,0.0029574463,0.011149985,0.024447374,0.009822153,0.044650767,-0.03468884,-0.0008505437,-0.013379982,-0.03524793,-0.01782727,-0.054892235,-0.03865328,-0.009479076,-0.036416933,-0.041067522,0.03913613,-0.036213625,0.014637929,-0.029072555,0.015794223,0.024066178,-0.007522269,-0.0013468928,0.056569498,-0.025654497,0.025578257,-0.025158942,-0.025984867,0.019491825,-0.032859102,-0.03166469,0.0258578,0.005066731,0.044828657,-0.011569301,-0.020533761,0.051741015,-0.02490481,0.0011086452,-0.03756052,-0.015972115,0.018920032,0.032554146,-0.0079479385,0.009282124,-0.036137387,0.030241555,-0.0051588537,0.053519927,0.02630253,0.0394665,0.04325305,0.024053473,0.017700205,0.0233292,-0.008621384,-0.041524958,-0.013456222,0.0140407225,0.008513379,0.028157683,-0.037713,0.01125799,0.032986168,-0.00867221,0.048513554,0.0040883278,0.029606229,0.002295118,0.011245284,0.028640531,0.009911098,-0.020482935,-0.0035197104,-0.006937769,0.037585933,-0.00045306742,-0.023125894,-0.019936554,-0.016251659,0.021435926,-0.014129668,-0.026124638,-0.0024634795,0.005136617,-0.011963204,-0.0031941053,0.022744698,-0.012509584,0.022211025,0.016886987,-0.047674924,-0.01782727,0.0032528732,0.005673468,-0.032249186,0.017776443,0.025934039,-0.0041423305,0.026480421,0.036874365,0.0018535659,-0.017471487,-0.0082910145,-0.031867992,0.00042963974,0.00843714,-0.030546512,-0.015679866,-0.02729364,0.043456353,0.010521011,0.0014104255,-0.0064072707,0.007280845,0.009224945,0.01452357,-0.01393907,0.028538879,-0.004625179,0.0012746244,-0.009625201,-0.014028016,0.0027541416,-0.01580693,0.00004936191,0.012058502,-0.03895824,0.03532417,-0.04271937,0.008678564,-0.034638017,0.0074333237,-0.0059466586,-0.04754786,0.012992433,0.026150052,0.0058195936,0.0361628,0.0449049,-0.026480421,0.04271937,0.056874454,-0.026327942,0.0027080805,-0.042236526,-0.008005118,0.006537513,-0.007357084,-0.012331693,0.0060864305,0.008659504,0.015120777,0.0037897243,-0.032325428,-0.014129668,-0.04012724,0.019834902,-0.007039421,-0.0077764,-0.027319051,0.017280888,-0.017052172,0.013875538,0.030266969,0.013379982,-0.00546381,-0.012033089,0.018233879,0.0021172266,0.017560432,-0.0373318,0.015717985,-0.014917473,0.005667115,0.020381283,-0.08742096,0.013875538,0.047090422,-0.021219915,0.019288521,0.0031385142,-0.009892038,0.029479163,0.007573095,-0.040915046,0.026073812,-0.03407893,-0.012960667,0.005673468,0.06048311,0.006369151,-0.007185546,0.031486794,0.009529902,-0.007897112,0.0068107033,0.014599809,-0.01135329,0.028437227,-0.0076747476,-0.012935254,-0.0014739581,-0.021664644,0.01841177,-0.007357084,0.039263196,-0.027700247,-0.030317795,-0.012763715,-0.0005241446,-0.017649379,0.0006909179,0.033570666,0.023570623,-0.01844989,0.009180472,0.0052287397,-0.01745878,0.0038723168,-0.011531182,0.026378768,-0.02597216,0.023532504,-0.008862808,0.023684982,-0.019949261,-0.002695374,0.010870442,-0.016061062,0.014752288,-0.0013302155,-0.018792966,0.010000044,-0.011175398,-0.032909926,0.010641724,0.0051588537,0.012401579,-0.024688799,0.0043233987,-0.023507092,0.000315678,-0.0055908756,0.013850124,0.00909788,0.009574375,0.037280977,0.005587699,-0.015057245,0.0035292404,0.065972336,-0.025438484,0.0003037656,0.01712841,0.035044625,0.019555358,0.022744698,0.025247887,-0.0034275881,0.02047023,-0.007401557,-0.006778937,-0.011143632,-0.0038151373,-0.027827313,0.0045807064,-0.008926341,0.011385056,0.025400365,0.0036118329,-0.00071474264,0.0034784141,-0.035298757,-0.026861617,-0.0024364782,0.012979726,-0.015489267,0.026480421,-0.03301158,-0.055044714,-0.026200878,-0.0060165445,0.012471464,0.009561668,0.017636672,0.0033577022,0.07303717,-0.0063151484,0.004374225,-0.012744656,-0.01716653,-0.00014959961,-0.0017392071,0.020114446,0.0018106813,0.0030797466,-0.0027700248,-0.035120863,-0.024167832,0.007687454,0.044828657,0.0074333237,0.013202091,-0.0020584587,0.032147534,-0.0029129733,-0.012033089,-0.018767554,0.015616332,-0.018920032,-0.0103558265,-0.00036412166,0.017102998,-0.021626525,-0.009587081,0.0034784141,-0.023837462,-0.03763676,-0.019961968,0.0579418,0.0075349757,0.0037071318,-0.02245245,0.007814519,0.005295449,0.014917473,-0.068615295,-0.034434713,-0.013557874,0.022401623,0.015895877,-0.03931402,0.046632987,-0.025019169,0.025336832,0.024053473,0.041524958,-0.02398994,-0.009447309,-0.033824798,-0.018055987,-0.016925106,-0.025400365,-0.060533937,-0.038678695,-0.022414329,0.038272087,-0.0081766555,-0.022465155,-0.016556617,0.040051002,0.013036906,-0.03036862,0.02047023,0.008424433,0.007573095,-0.035273343,-0.011518475,-0.0039612628,0.05270671,-0.010648077,0.030317795,-0.027471531,-0.008132183,0.0030781582,-0.01679804,0.03862787,0.0016756745,0.010184288,0.00018335134,-0.039263196,0.0289709,0.013507048,-0.0055178134,-0.036467757,0.018043282,0.01646767,-0.0040375018,-0.034638017,0.013595994,0.03601032,-0.017725617,0.011874258,0.0010864089,0.008761156,0.0058545363,-0.002990801,0.0068361163,-0.001282566,-0.00046021485,-0.0057846503,-0.04533692,-0.010482892,0.015349495,-0.02266846,0.009974631,-0.0033831152,0.0034180582,0.04155037,-0.036518585,0.0060896073,-0.0911821,-0.005111204,-0.044472877,0.009485429,-0.020571882,-0.0069314153,-0.01734442,0.024383843,0.0143329725,-0.0036594823,0.020813305,0.031486794,0.0010149345,0.046302617,0.0058100633,0.008570558,-0.0019981028,-0.035095453,0.004650592,0.033799384,0.004374225,0.040686328,-0.024879398,0.039263196,-0.0079225255,0.0042026867,-0.02266846,0.00064763625,0.021486752,-0.0013977189,-0.024815865,0.026200878,-0.009301184,-0.015629038,-0.00040105003,0.008983521,-0.0355783,-0.025349539,0.018246586,-0.00018900972,-0.022477861,0.0047236546,-0.0042979857,-0.0014342503,0.042516068,0.042312764,0.016594736,0.005562286,0.007242725,-0.007496856,-0.022693872,0.030139903,0.013532461,0.03918696,-0.033875626,0.0143329725,-0.02336732,-0.007306258,-0.0174969,-0.050165404,0.014104255,0.0008497496,-0.011880611,0.010235115,0.009523548,0.02105473,-0.013735766,-0.051004034,0.008684917,0.008532438,-0.026759963,0.008297368,0.009587081,-0.0056353486,-0.04673464,0.0013524519,-0.023354612,0.006753524,-0.0047014183,-0.005247799,0.027852727,-0.016607443,0.006397741,0.0052859187,0.016747214,-0.05105486,0.03062275,0.017890802,0.018310118,0.014777701,0.011429529,-0.012884427,0.02086413,-0.008132183,0.04368507,0.020165272,0.009313891,-0.015578213,-0.010590898,-0.013659526,0.009186826,0.005536873,0.013176678,-0.033164058,0.044066265,-0.02336732,0.008538792,-0.022795524,0.006569279,0.028005205,-0.015578213,0.046200965,0.017992456,-0.015972115,-0.03374856,-0.00933295,-0.022236438,-0.008716684,-0.009815799,-0.007611215,0.0065120994,-0.0060451343,0.021321567,-0.010565485,0.08792923,-0.012687476,0.0018329178,0.00682341,-0.00015446382,0.009936511,-0.02486669,0.028818423,-0.0025635436,-0.008811982,-0.0024634795,-0.0005837065,-0.0060641943,-0.008659504,0.036848955,-0.032249186,-0.013265624,0.0065756324,0.008583265,-0.027064921,0.0063151484,-0.0032751097,-0.0034593544,-0.005136617,-0.0037325448,-0.044396635,0.03822126,-0.020368576,0.030266969,0.027242813,0.028742185,0.018424477,0.006375504,0.017052172,-0.0050222585,-0.01514619,0.009447309,-0.026836203,0.016645562,-0.016111888,0.033646908,-0.0007139485,-0.028691357,-0.0008433963,-0.030190729,0.0123698125,0.02358333,-0.053723235,-0.025260594,-0.015743397,-0.0100889895,-0.028691357,0.008055944,-0.025603669,0.0046315324,-0.037357215,0.01199497,0.06749712,-0.0022284088,-0.008945401,0.0012214157,-0.007217312,-0.012643003,-0.017700205,0.013659526,0.03598491,-0.0008283073,0.0031845756,-0.002164876,0.05179184,-0.0025127174,-0.008646797,-0.012967019,0.009644261,0.00485072,0.001002228,-0.007306258,-0.034053516,-0.017763738,0.036416933,0.0024904811,0.00073578785,-0.007858993,0.051105686,-0.07984787,0.054231495,0.004920606,-0.0056194654,0.010997507,0.0026747258,0.022083959,-0.017191943,-0.0142567335,0.028233923,0.035044625,-0.00418998,-0.0062452625,-0.015425734,-0.03326571,0.0142186135,-0.0142186135,0.03435847,0.020902252,-0.00041415365,0.027395291,-0.0015779929,0.031003946,-0.0035578301,0.005711588,-0.019059803,-0.024396548,-0.020914959,-0.0025031876,-0.01911063,-0.004618826,-0.036264453,0.0083672535,-0.05090238,-0.0066772844,-0.011931437,0.008640444,0.01800516,-0.004123271,-0.024917517,-0.01782727,-0.0081893625,0.0059148925,-0.0064549204,0.0026286645,-0.013964483,-0.029402925,-0.005581346,0.04020348,-0.03359608,0.0035228871,0.013418102,-0.024930224,0.003116278,-0.011067392,-0.005311332,-0.0048570735,0.006594692,-0.0007445236,-0.00033295093,-0.011308817,0.0013937481,0.0031003947,-0.039746042,-0.010679843,-0.04170285,0.00010284352,-0.009148706,-0.051639363,-0.059619065,0.0072999047,-0.031359732,0.02064812,-0.017522313,0.0028621473,0.016823454,-0.00040124857,-0.006664578,-0.04261772,0.0035832431,0.015069951,0.018183053,-0.006778937,-0.021296155,0.0109848,-0.007668394,0.007808166,-0.0061499635,0.008036884,-0.0099619245,-0.003904083,-0.030851468,-0.026683725,0.008144889,-0.023341907,-0.011200812,-0.013862831,-0.022325383,0.0037166618,0.03318947,0.0075858016,-0.0061309035,-0.0081385365,-0.008043237,-0.0079225255,-0.015641745,0.021321567,-0.0069822413,0.005533696,-0.026455007,-0.012878074,-0.0066201054,0.0047967173,0.0024428314,-0.012109329,-0.0051239105,-0.025476605,-0.002225232,0.0048030703,-0.006372328,0.021105556,-0.008468906,-0.008062297,0.031486794,0.02930127,0.003462531,-0.02311319,0.013189384,0.039669804,0.0006504158,0.017191943,0.025578257,0.020114446,0.02630253,0.0036499524,0.037280977,0.015781518,0.011289757,-0.008723036,-0.051207338,-0.012579471,-0.0070203613,0.009625201,-0.0027795548,0.034485538,0.007668394,0.0061817295,-0.0011300875,-0.007668394,-0.034155168,-0.013532461,-0.009263065,-0.013786592,-0.0099619245,-0.017916216,-0.0072236657,0.00042050693,0.018055987,-0.01514619,-0.0082274815,-0.0021140499,0.018284705,0.0030066841,-0.01197591,-0.025019169,0.023151308,-0.002836734,0.054282323,0.009828505,0.006562926,-0.048716858,0.02402806,-0.004374225,-0.010540072,0.0018122697,-0.014421918,0.039059892,0.007452383,0.014371092,-0.024523614,0.022211025,0.015362202,-0.019390173,0.0020441639,-0.009980984,0.0009863449,0.0024412433,-0.0021616993,-0.005597229,0.004380578,-0.0018424477,0.008430786,0.008621384,0.014955592,0.049098056,0.009911098,-0.034460124,0.02263034,0.049504664,-0.017255476,0.019606184,-0.0027747897,-0.023977233,-0.011035627,-0.030190729,0.020152565,0.0037293683,0.007928878,0.007515916,-0.039263196,0.02630253,0.00839902,0.0012936841,0.016721802,-0.0034212347,-0.010972094,-0.012045796,-0.012922547,0.030139903,-0.005651232,-0.0037452513,0.003376762,0.017319009,0.0058894795,-0.011054686,0.017623965,0.004555293,0.015501973,0.017623965,0.0021712293,0.028360987,0.003081335,0.027598595,0.021867948,0.00033453928,-0.012820895,0.037408043,0.009942864,0.0037261916,-0.012198274,-0.0072554317,0.01547656,0.010565485,0.017064877,0.009568022,0.00039648364,-0.031537622,-0.008621384,-0.011702719,-0.003497474,0.00907882,0.0061658467,-0.03804337,0.01654391,0.013964483,-0.037357215,-0.01588317,0.0012222099,-0.013583287,-0.03804337,0.002635018,0.011365997,-0.022655753,-0.03639152,0.016188126,-0.041092936,0.0055400496,0.023684982,-0.012039443,-0.023062363,0.035934083,-0.0043170457,0.022935297,-0.0012881251,0.039923936,-0.020838719,-0.022363503,-0.034129754,-0.0081512425,0.020190686,0.008303721,0.05146147,0.015108071,-0.031995058,0.02564179,0.01448545,0.012751008,-0.007496856,-0.027725661,-0.0013699234,0.00038576248,-0.011080099,0.008805629,-0.017179236,0.0046823584,-0.033723146,0.0016915576,0.03468884,-0.01566716,0.03766217,0.01195685,0.001653438,-0.008634091,-0.02245245,0.015730692]},{"id":"interface-GatewayHelloData","type":"interface","source":"main","text":"Interface: GatewayHelloData\nDescription: // Incoming (gateway -> client)\nProperties: heartbeat_interval: number","meta":{"url":"/docs/typedefs/GatewayHelloData"},"embedding":[-0.033026043,-0.023654781,0.058653075,0.0024285656,0.0129727665,0.021376278,-0.017186772,0.009052762,0.03187454,0.0066517587,-0.0021177216,0.012654266,-0.033883546,-0.019097775,0.018620024,-0.014222269,-0.020506527,0.044541057,-0.0042568804,0.07075609,0.0010312982,0.017370522,0.035182044,0.044075556,0.025406534,0.004612131,0.04689306,0.0055615073,0.00035927,-0.05390007,0.02991454,-0.040670052,0.029424539,-0.010277763,0.03074754,0.05463507,-0.010430888,0.033491544,-0.027342036,-0.012366391,-0.028224036,-0.008648511,0.014491769,0.02962054,-0.047897562,-0.03748505,-0.021217028,0.009830638,0.009855138,-0.0007380635,-0.028052537,-0.0064373836,0.012593016,0.0789391,0.02998804,0.0082871355,0.03050254,0.00796251,0.026974535,0.035133045,0.0043579433,0.011753891,-0.009279387,0.004067005,0.02198878,-0.0026046596,-0.028493537,0.0063577583,-0.005359382,0.05488007,0.017591022,0.06953109,-0.049759563,-0.027048035,-0.034569547,-0.005867758,-0.047530062,-0.011478265,0.048069064,0.0007947198,-0.028812038,-0.0016905022,-0.021743778,-0.06502309,0.016023021,-0.03748505,-0.052185066,-0.048142564,-0.0138057675,0.019881776,-0.0040547554,0.010871889,-0.03087004,-0.03077204,-0.02984104,-0.050666068,0.03148254,0.020580027,-0.03750955,-0.00774201,0.057379074,-0.062426083,-0.035868045,-0.007625635,0.020874027,-0.016072022,-0.0052613816,0.008385136,-0.032266542,-0.016317021,-0.0784491,0.012654266,0.016758021,0.004204818,-0.0066578835,-0.009163012,-0.0038740674,-0.08080111,0.03660305,0.00051947724,-0.004826506,0.017958524,0.010228763,0.00092564186,-0.03969005,-0.0022310342,0.013413767,0.0058738827,-0.048363063,-0.012280641,0.044394057,-0.01533702,-0.008036011,0.008648511,0.013989518,-0.00012891227,-0.0005125866,0.0060606953,-0.034618545,-0.010437014,-0.0017609398,-0.034349043,0.06502309,0.029400038,0.03035554,0.08800411,-0.022491029,0.02991454,0.021609029,0.022001028,-0.0044865683,0.04601106,-0.04375706,-0.006823259,0.00379138,0.06786509,0.02389978,0.018032024,-0.048436563,-0.041184552,0.029106038,-0.034177545,0.010326764,-0.0020488151,-0.067032084,0.004878569,-0.013720018,-0.041576553,-0.04787306,0.0074112597,0.017578773,-0.03819555,-0.00097081374,0.006419008,-0.00802376,-0.00742351,-0.03055154,-0.028322037,-0.008519886,0.021094527,0.06330808,0.028836537,0.005586007,-0.050029065,-0.0017701273,-0.011300639,-0.018142274,0.036627546,-0.00577282,-0.05345907,-0.02206228,0.029081538,-0.016476272,0.019171275,-0.004030255,-0.023850782,0.019979777,-0.03025754,-0.019734776,-0.0070988843,-0.0035126922,-0.059437077,0.018840525,-0.02326278,0.0122683905,0.008372886,0.018081024,-0.0041343803,0.008121761,0.03748505,0.028885538,0.007019259,-0.012311266,-0.030233039,-0.05492907,0.041282553,-0.00030854729,0.01145989,0.03910205,-0.007588885,-0.024255032,0.017664524,0.035427045,0.0013360174,0.007068259,0.03893055,-0.010118513,-0.012323516,-0.007092759,-0.028371036,-0.0019661277,-0.027146036,-0.004419193,-0.09408012,-0.0022570654,0.03231554,0.03158054,-0.01142314,0.026460035,-0.012145891,-0.041454054,-0.04659906,0.0020212526,0.014491769,0.0027531912,0.002278503,-0.014871519,-0.008164636,-0.020972027,0.04603556,-0.014773519,0.034692045,0.024867533,-0.03104154,0.003748505,0.021670278,-0.010626889,-0.041527554,-0.0072030094,-0.006835509,0.0057942574,-0.05375307,0.018497525,0.026533535,0.012372516,-0.04500656,-0.0091385115,0.002194284,-0.040621053,-0.01575352,0.035451546,-0.032340042,0.08810212,-0.018632274,-0.03202154,-0.010865764,0.025002282,-0.004759131,-0.017137771,-0.009628513,-0.051401068,-0.006296508,0.01626802,0.033393543,-0.03185004,0.04657456,0.02289528,0.03185004,0.037166547,0.02291978,-0.019232525,0.075264096,0.08285911,-0.019134525,0.034741044,0.03804855,0.0074173845,0.017162273,0.028371036,-0.026264034,0.09153212,0.0037423798,-0.039494053,0.0031160978,0.0064128833,0.03057604,0.04508006,0.021094527,0.03689705,-0.010841264,-0.00033457857,-0.01142314,-0.015912771,0.013499518,-0.029326538,-0.01542277,0.058310077,0.009089512,0.010590139,-0.034177545,-0.0074908845,-0.020053277,0.04733406,-0.033761043,0.00765626,-0.028395537,0.028028036,-0.008495386,-0.007478635,0.029718539,0.01599852,-0.050960068,0.027856536,-0.018999774,-0.010486013,0.035598546,-0.051352065,0.03079654,-0.028077036,0.06551308,0.04554556,-0.075558096,-0.048583563,-0.01499402,0.054831073,-0.014112018,-0.029424539,0.0015802521,-0.01537377,-0.03050254,-0.017958524,-0.004789756,-0.013634268,-0.016476272,-0.020482026,-0.012090766,0.050151564,-0.027195035,-0.040596552,0.025921034,-0.06933509,0.021829529,-0.0046274434,0.004599881,0.018117774,0.027023535,-0.01599852,-0.031384543,0.0090466365,-0.019857276,0.014638769,-0.006645634,-0.05968208,0.008078885,-0.033026043,0.005141944,-0.008152385,-0.012715517,0.00053057884,-0.0061219456,0.018975275,0.0745291,-0.016794771,0.015949521,0.047897562,0.008777136,-0.062769085,0.042360555,-0.0780571,0.004933694,0.040915053,-0.0025372845,-0.027636036,-0.032438044,0.0043579433,-0.00034051217,0.03831805,-0.0033473168,0.014136518,-0.0004268365,0.0028955976,-0.009279387,-0.0061464454,0.0072030094,0.0018512837,-0.033589542,-0.0005451257,0.04057205,0.034912545,-0.033467043,0.010020513,-0.014124269,0.020923028,0.03170304,0.013720018,-0.037240047,-0.039347053,-0.012593016,-0.01623127,-0.004823444,-0.004933694,0.03809755,-0.033075042,0.03765655,0.01194989,-0.008856761,0.019624526,0.005279757,-0.017137771,-0.06972709,-0.011974391,0.020224776,0.014602019,0.019551026,0.020653527,0.019257026,0.037705548,-0.034177545,0.011784515,-0.010933139,0.016500771,-0.02386303,0.010896389,0.029718539,-0.022907529,0.016255772,0.021511028,-0.026215034,0.011429265,-0.06345508,-0.034863546,-0.033467043,-0.027562536,0.062916085,-0.01123939,0.03006154,-0.043487556,0.08227111,-0.03165404,0.005512507,-0.020714777,-0.031458043,-0.03954305,0.05164607,-0.033859044,0.0012311266,0.010853514,-0.025357533,-0.01503077,0.02295653,-0.0047070687,0.0029216288,0.03885705,0.008538261,-0.010479889,0.024622532,0.016905023,0.043169055,0.01532477,-0.0010772358,0.027097035,-0.012201016,-0.041013055,0.0114721395,0.06360208,0.08501511,0.02375278,-0.050519064,-0.018019773,-0.02235628,0.012378641,0.012997267,0.02363028,-0.013377017,0.013095267,0.01549627,-0.023691531,-0.017676773,0.01615777,-0.010492139,0.010847389,-0.04583956,0.028836537,-0.014675519,0.055664074,0.0041098804,-0.02323828,-0.036333546,-0.049465563,-0.063357085,-0.012519516,0.010259388,-0.0017839086,-0.021547778,-0.06757109,0.004210943,0.017603273,0.06218108,-0.017505273,0.006045383,-0.010651389,0.019024275,-0.020800527,0.0014255956,0.004786694,-0.004419193,-0.0129727665,-0.04532506,-0.008654636,0.00567482,0.017468523,-0.03028204,-0.029081538,0.052185066,0.0075766346,0.028444538,-0.0064986334,-0.009389637,-0.0030839415,-0.041380554,-0.006345508,0.017346023,0.0057023824,0.006878384,-0.0057360698,-0.0060974453,0.05365507,-0.029106038,-0.0048173186,0.021278277,0.00004514801,-0.035549548,0.01547177,-0.0030043165,0.003414692,0.0030043165,-0.013217767,-0.031531543,0.0028266911,0.03216854,-0.016709022,-0.009261012,0.009665263,-0.03932255,-0.024830783,0.054978073,-0.0040915054,-0.0055216947,-0.039347053,-0.03689705,-0.013205517,-0.0019890964,-0.013095267,-0.014222269,0.011306765,0.018742524,-0.049343064,0.0034361295,0.011502765,0.005390007,-0.014712269,-0.033271044,-0.029939039,0.05365507,-0.036064047,0.02378953,0.026533535,0.0041527553,0.017909523,0.012397016,-0.014222269,0.024034532,0.055272073,-0.0033320044,-0.02320153,-0.034765545,-0.008262636,-0.020420777,0.00036424657,-0.0036015047,-0.010406389,0.01176614,-0.0019737838,-0.014369269,0.029106038,0.048779562,0.018877275,0.016954022,0.0063761333,0.0027608473,0.004753006,0.029375538,-0.0070805093,-0.059780076,-0.045129057,0.008017635,-0.026925536,0.027538035,-0.0039016302,-0.011123015,-0.0017349086,0.04650106,-0.0024836906,-0.0036260048,-0.050004564,0.05277307,-0.015839271,-0.03861205,-0.04554556,-0.0054175695,0.010222638,-0.020237027,-0.026166035,-0.056693073,-0.05296907,0.008428011,-0.011735516,0.019759275,-0.0074908845,-0.03981255,-0.011074014,0.004575381,0.013646518,-0.0058126324,0.049882066,0.012936017,-0.0021070028,0.008813887,0.0016154709,0.012936017,-0.025480034,-0.017934022,0.050127067,-0.02258903,0.023434281,-0.017297022,-0.05321407,0.0063332585,-0.0002327503,0.013254518,0.0075398847,-0.0021299715,-0.012427641,0.04750556,-0.0021299715,0.035892546,0.06654209,0.024781782,-0.01590052,0.005607445,0.058653075,0.056791075,0.0759011,-0.0022340966,-0.021425277,-0.0066946335,-0.019845026,0.008550511,0.004704006,0.0021008777,-0.011429265,0.017456273,-0.04628056,-0.005285882,0.025798533,-0.0015611114,0.050274067,0.018460775,0.0041282554,-0.018375024,0.034594044,0.019722525,-0.01157014,0.005322632,-0.019930776,-0.006308758,0.03148254,0.043095555,-0.01509202,0.0075215097,0.014896019,-0.026509035,0.02340978,-0.0025939408,-0.006664009,0.009499887,0.007944135,0.032854542,0.011159765,0.01503077,0.002423972,0.015986271,-0.021621278,-0.019526524,0.026019033,0.021841777,-0.04733406,0.042017553,0.0022999404,0.013928268,0.018779274,0.040817052,-0.03231554,0.019894026,0.0033718168,0.0002798363,0.027366536,0.020016527,-0.0060361954,-0.035843547,0.033516042,0.026509035,-0.00046703184,0.014222269,-0.005212382,0.02370378,-0.016745772,-0.016439522,-0.002368847,0.023924282,0.0029262225,0.018681275,-0.021327278,-0.02312803,0.010032763,-0.020531027,-0.000069671965,0.012427641,0.0028404724,-0.03025754,-0.035794545,0.007686885,-0.014504019,0.029228538,0.0010611577,-0.026337534,0.010271639,-0.0065353834,-0.014528519,0.009616262,-0.020739278,0.01637827,0.004400818,0.055517074,0.0028159723,0.004716256,-0.038073048,-0.03922455,0.00765626,-0.0049245064,0.004030255,-0.009732638,-0.011753891,0.013230017,0.05336107,-0.047236063,-0.035525046,-0.017260272,-0.02397328,0.017738024,0.029400038,-0.017505273,-0.023912031,-0.012378641,0.04608456,-0.0006917431,0.00766851,0.006976384,-0.018301524,-0.0046396935,-0.039714552,0.004581506,-0.02976754,-0.027905537,0.008127886,0.00026720346,0.013389267,-0.08168311,0.019293776,0.028787537,-0.002376503,-0.0015197676,-0.0028665038,-0.0004922975,0.018852774,-0.018583274,-0.06889409,0.014871519,0.0019033463,-0.0037270673,-0.0044804434,0.020849528,-0.024389781,0.012666517,0.042213555,-0.006627259,0.026778534,0.0029583788,0.00068255555,0.021290528,0.042679057,-0.01495727,0.0033565043,-0.0013804237,-0.004455943,0.020053277,0.019061025,0.011858015,-0.029400038,-0.024879782,-0.021658028,0.016623272,0.011245514,0.009536637,0.023471031,-0.0073255096,-0.0038005675,-0.0073193847,-0.02371603,0.016696772,0.039861552,-0.00399963,0.033834543,-0.020702528,0.007772635,-0.018252524,0.008593386,-0.029302038,-0.009187512,0.02271153,-0.023691531,-0.009665263,0.03897955,-0.000009528455,0.019759275,-0.016966272,-0.022907529,-0.00376688,0.03689705,0.026656035,-0.02315253,-0.0025954721,-0.020139026,0.01157014,0.0064557586,-0.0004505709,-0.00034127777,-0.0063883835,0.040376052,0.048069064,0.0052031945,-0.010822889,0.058800075,-0.052136067,0.0010090951,0.035108544,0.0047131935,0.01176614,0.017640023,-0.0082320105,0.018142274,0.040890552,-0.0011652828,0.020996528,-0.0006595868,0.005901445,-0.009444762,-0.011858015,-0.018816024,-0.0025510658,0.040180054,0.008158511,-0.0011913141,-0.01501852,0.020359527,-0.021143528,0.0059136953,0.0019186587,-0.019146776,0.034251045,-0.0044681933,-0.022037778,-0.0071356343,0.0041405056,0.03140904,0.011319015,-0.0073806345,0.009475388,0.018179024,-0.011006639,0.014859269,-0.024279531,0.0039108177,0.036799047,-0.03150704,-0.010277763,-0.016145522,-0.0066333837,-0.0016491584,-0.0028175036,-0.01134964,-0.016892772,0.005279757,0.018326024,-0.021474278,-0.019391775,0.00757051,-0.0021651904,-0.0037025674,-0.022601278,0.0038311924,0.0067620086,-0.010810639,-0.028861038,-0.0083606355,-0.01564327,-0.035500545,0.0028772226,0.019416275,-0.0007101181,-0.043708056,0.010161389,-0.02334853,0.01570452,0.013720018,-0.0028404724,-0.007105009,-0.002570972,-0.057477076,-0.040376052,-0.01549627,-0.0015695333,0.052283067,-0.02316478,0.012335766,0.0037331923,0.03684805,0.0024760345,0.05390007,-0.025798533,0.012041765,-0.018093273,-0.030306539,-0.033540543,0.021388527,0.026705034,0.00086362613,0.0029308163,0.017211273,-0.016292522,-0.043855056,-0.000057517653,0.03895505,-0.0011170483,-0.018595524,-0.0056319446,-0.019146776,0.010841264,0.01597402,0.023875281,0.014259019,0.043389555,0.00007670616,0.03853855,0.022797279,-0.043022055,-0.00040999273,0.009438638,0.028591538,0.025847534,0.0008100323,-0.012446016,-0.027023535,0.036039546,0.03983705,-0.021633528,-0.028983537,0.018448524,0.016819272,-0.01565552,-0.019710276,0.027244035,0.014700019,-0.0044069435,0.012899267,0.012501141,0.0050531314,-0.0014133456,0.025357533,-0.028199537,-0.020616777,-0.032585043,0.025480034,-0.012458266,0.034863546,0.010326764,0.0046029435,0.0090466365,-0.010914764,0.017836023,0.03050254,-0.011845766,-0.002661316,-0.027513536,-0.03758305,-0.025014533,0.01601077,0.025994534,-0.027660536,0.010069513,-0.012280641,0.034888044,0.011227139,0.016329272,0.021290528,0.017566523,0.02301778,-0.021805027,0.010492139,-0.02355678,-0.056399073,0.009548888,-0.027611535,0.006847759,0.017872773,-0.037240047,0.013389267,-0.0022034717,0.021180278,0.010945389,0.017774774,-0.003488192,-0.014210018,0.0009149231,0.008085011,0.017578773,0.0013666424,0.040596552,0.0072213844,-0.0018466898,-0.02301778,0.014932769,-0.011049515,-0.010149138,0.014455019,-0.032560542,0.018179024,0.03079654,0.021682529,0.02378953,-0.004847944,-0.0052093193,-0.008807762,0.011080139,0.028591538,-0.027562536,-0.0019232525,-0.026705034,-0.024683783,-0.012384766,-0.020469777,0.027342036,-0.016059771,-0.04787306,-0.03094354,0.0032370668,-0.012072391,0.03020854,0.0060913204,-0.0065476336,-0.026043534,0.0073193847,0.0022938154,-0.029963538,0.009720388,0.006118883,0.010724889,-0.008048261,0.02213578,-0.017542023,-0.0073990095,-0.0138057675,0.044835057,0.019979777,-0.0009394231,0.008225886,0.00083223544,-0.011227139,-0.028983537,0.00776651,-0.012727766,-0.02265028,0.040719055,0.0063026333,-0.0005849383,-0.0042017554,0.017799273,-0.014834769,0.009003762,-0.004811194,-0.010786139,-0.00076715724,0.0122132655,0.02342203,0.005622757,0.03089454,0.010467638,0.017517522,-0.028689537,-0.004774444,0.01185189,-0.0035586297,0.02386303,-0.013119767,0.025700534,0.006345508,-0.0018175961,-0.0024500033,0.014418269,-0.0075582596,0.0027501285,0.014246768,-0.019342775,-0.016978523,0.020053277,0.0034912545,-0.019208025,0.04576606,-0.0106207635,-0.03042904,0.009371262,0.012323516,0.01180289,-0.0035341296,-0.0060913204,-0.008201386,-0.014479519,0.0027332848,0.029008038,-0.009371262,-0.027366536,0.019085525,0.03209504,0.025700534,0.0038863176,0.004416131,-0.027734036,0.017566523,-0.017640023,0.0005470398,-0.0037178798,-0.014173268,-0.04525156,0.007074384,0.02311578,0.017125523,0.06134808,-0.01185189,0.01501852,-0.0069028838,0.025578033,-0.017076522,-0.01506752,-0.03194804,-0.026705034,0.01537377,-0.00086132926,-0.021290528,-0.008893511,-0.017885024,-0.027464535,-0.002892535,0.010388014,0.010835139,-0.000056656325,0.010608514,-0.042850554,0.018705774,0.00034855123,-0.0008261104,-0.022074528,0.019710276,-0.0013413768,0.019232525,0.057526074,0.004648881,0.012691016,-0.020286025,0.002388753,0.012764516,0.0044835056,-0.0040945676,0.051352065,0.018852774,0.026141534,-0.0011515016,0.01172939,0.0137690175,-0.034251045,-0.0052583194,0.0049122563,-0.013205517,-0.017052023,-0.019845026,-0.010400264,0.007441885,-0.008709761,0.022233779,0.013634268,-0.03275654,0.014516269,-0.05316507,0.011466015,0.033050545,0.034961544,-0.010810639,-0.013499518,0.004348756,-0.015043019,-0.008648511,-0.012262266,0.018350523,0.012727766,0.0015136426,0.027146036,-0.054978073,0.008152385,-0.0046396935,0.012519516,0.012629766,-0.0072948844,-0.020947527,-0.009395762,0.0049551316,0.008954762,-0.021278277,-0.011956016,-0.019048775,-0.018546524,0.017517522,0.011055639,-0.00017571116,-0.027709536,0.012887017,-0.004618256,-0.024647033,0.014173268,0.004719319,0.021719279,0.0031099727,-0.034226544,-0.0000737872,0.028175037,0.051352065,0.022601278,0.005512507,0.0016522208,-0.019404026,0.010577889,0.010149138,-0.010020513,0.02236853,0.008201386,0.01545952,-0.03069854,-0.035035044,-0.01542277,0.0067068837,-0.04677056,-0.027660536,-0.00046664904,0.033197545,0.019318275,0.027611535,-0.009573388,0.01165589,-0.03954305,-0.043879557,-0.03082104,-0.00035371922,-0.005533945,0.0015396739,-0.041454054,0.027783036,0.020751527,0.032805543,-0.011974391,0.0033901918,-0.03143354,-0.040008552,-0.02198878,0.016758021,-0.0050592567,0.00560132,0.013609768,-0.0016644709,-0.0063945083,-0.005233819,0.0008123292,0.015912771,0.005126632,0.020102276,-0.00051028974,0.0017900335,0.020604527,-0.019465275,0.0030242228,-0.03944505,0.008936387,0.019404026,0.02276053,-0.009003762,-0.008066636,-0.044026557,-0.002102409,-0.0077848854,-0.026999036,0.009469262,-0.03905305,-0.009493763,-0.0072397594,-0.025137033,-0.0028496599,0.0057452573,0.009254887,0.004351818,0.017934022,-0.03194804,-0.0137690175,0.0057268823,0.043512058,0.0051358193,0.0015174707,-0.054831073,0.004685631,0.0059994454,-0.018546524,0.0059504453,-0.0016093459,-0.021327278,-0.04527606,0.033810046,0.010320638,0.02282178,0.003013504,0.017027522,-0.006817134,0.012715517,0.017738024,-0.004345693,-0.06125008,0.007833885,0.001914065,-0.008415761,-0.02217253,0.014406019,-0.027636036,0.028542537,0.01619452,0.0013321892,-0.010767764,0.012850267,-0.033785544,-0.026925536,0.004829569,-0.024941033,0.03091904,-0.01537377,0.017738024,-0.002413253,-0.013462768,-0.0033503794,-0.00382813,0.01523902,0.02360578,-0.017456273,0.017762523,-0.01555752,0.0074663847,0.008109511,-0.031972542,-0.049220566,0.01172939,0.011539515,-0.018093273,0.01160689,-0.0054910695,-0.019624526,0.0129727665,-0.008654636,-0.012090766,0.0028848788,-0.0043548807,-0.021903029,0.010969889,0.0015817833,0.009512138,0.016929522,0.010608514,-0.036799047,-0.0042140055,0.010081763,-0.006945759,0.01501852,-0.00771751,0.018313773,-0.01543502,-0.012047891,0.04557006,0.03231554,-0.0044681933,0.016133271,-0.021143528,0.028150536,-0.012801266,0.019355025,0.017346023,0.008722011,0.010829014,0.032266542,-0.007864511,0.037705548,0.012887017,-0.014712269,0.027513536,0.024659282,-0.028665038,0.008875136,0.025774034,0.021743778,-0.028052537,0.020653527,0.020555526,-0.013879268,-0.008225886,-0.014075268,0.01588827,0.005901445,0.029277539,-0.026043534,-0.01544727,0.02408353,0.012513392,-0.004253818,0.016464021,0.026974535,0.034471545,0.010847389,0.00066724303,0.02217253,0.0021697842,0.02397328,0.0018681274,0.029816538,0.015569771,0.034104045,0.013230017,-0.0027133785,0.020800527,-0.015043019,-0.024524532,0.036333546,0.01117814,-0.033197545,0.012219391,-0.0073561347,0.0033320044,-0.002163659,-0.0070437593,-0.041625556,-0.041282553,-0.01553302,0.018742524,-0.016868273,-0.012384766,0.005867758,-0.03020854,0.01561877,0.037779048,0.0082320105,-0.05502707,0.020543277,0.018142274,-0.0073683844,0.010204263,0.014124269,-0.01520227,-0.019171275,-0.033369042,0.011380265,-0.0016996897,-0.0013987987,0.04451656,0.009444762,-0.02187853,0.005481882,0.014516269,0.006786509,-0.007478635,-0.0059994454,0.0011805953,-0.0058953203,0.009689762,-0.003475942,-0.009022137,0.01114139,-0.011184265,0.0036995048,-0.006933509,-0.0027501285,0.02345878,0.03706855,-0.0014286581,-0.012985017,-0.0067436337,0.013989518]},{"id":"interface-GatewayIdentifyData","type":"interface","source":"main","text":"Interface: GatewayIdentifyData\nDescription: // Outgoing (client -> gateway)\nProperties: compress: boolean, intents: number, large_threshold: number, presence: GatewayPresenceUpdateData, properties: { os: string; browser: string; device: string; }, shard: [shardId: number, numShards: number], token: string","meta":{"url":"/docs/typedefs/GatewayIdentifyData"},"embedding":[-0.02790157,-0.019506298,0.02792637,0.016616935,0.0028351094,0.018464638,-0.0058562295,-0.017435381,0.043997675,0.028050378,0.019171478,0.01866305,0.020597558,-0.029439256,0.009647743,-0.03449874,-0.00016237164,0.06006898,-0.006349157,0.06790622,-0.017360976,0.0051276884,0.019146677,0.026066266,-0.021118388,0.02809998,0.01387638,0.021291997,0.0023406316,-0.013566363,0.04337764,-0.030505717,0.057092812,-0.0049850806,0.0029916682,0.03521798,-0.016430924,-0.00043092424,-0.019444294,0.017348576,-0.03112575,0.017633792,-0.015364464,0.011402441,-0.033209067,0.008599884,-0.018204223,-0.039012596,-0.01831583,-0.0015725634,-0.024367372,-0.007583027,-0.0030846735,0.06081302,0.0008788994,-0.0057136216,0.0195311,0.007731835,0.014273203,0.012723115,-0.013219143,-0.012394497,-0.008401472,0.011148227,0.010602596,0.027256733,-0.019419493,0.054959893,0.009337725,0.020225538,0.035292387,0.04037667,-0.014074792,-0.035143577,0.007118,0.032613836,-0.052330945,0.007378415,0.03288665,-0.06294594,-0.021031583,-0.02186243,-0.04198876,-0.066566944,0.006894788,0.00007944197,-0.05773765,-0.04533695,-0.027455144,0.04141833,-0.011104825,-0.013653168,-0.060366597,-0.011935672,-0.02470219,-0.056596782,0.048660338,0.0067459797,-0.032093003,0.055009495,0.043204032,-0.04729626,-0.033556286,-0.0108134085,0.0008850998,-0.015897695,-0.0076202285,-0.0023607828,-0.02240806,-0.026785506,-0.081795,0.006559969,0.027306337,0.042211976,-0.005952335,-0.0041480334,0.008556481,-0.028199187,0.028769618,-0.0040426273,-0.02095718,-0.0060329395,0.015587677,0.008606084,-0.007855842,0.008395272,-0.0005196667,-0.0023933346,-0.06006898,-0.0044828523,0.000012340147,-0.031894594,0.014856036,-0.0126611125,0.03608603,0.0032148808,0.00016363108,0.005229994,-0.019878319,-0.0051834914,-0.040971905,-0.0088789,0.087251306,0.02435497,0.008866499,0.031497773,-0.03323387,0.04940438,0.010583995,0.04164154,-0.006882387,0.01653013,-0.015401666,-0.031919394,-0.0042751404,0.005115288,0.008692889,0.03489556,-0.018725052,-0.05367022,0.029786475,-0.05066925,0.0029420655,0.02384654,-0.03392831,0.031026546,0.02703352,-0.005403604,-0.054959893,-0.0023328813,-0.017112963,-0.036730867,-0.040277466,-0.013529161,-0.032266617,0.0041511334,-0.0031900795,-0.015736485,-0.02419376,0.02398295,0.005899632,0.0058748303,0.0039775237,-0.06845185,-0.011675256,-0.031596977,-0.013603565,0.0231273,0.011135827,-0.008804495,-0.038070142,0.034523543,0.012134083,0.04231118,0.03395311,-0.020237938,0.029340051,-0.011030421,-0.016096106,-0.025099011,-0.0011245883,-0.04511374,0.059424143,-0.035441194,0.0021298197,-0.031324163,0.025545437,-0.018154621,0.010825809,0.026760705,0.048734743,-0.008432474,-0.0055865142,-0.02170122,-0.031398565,0.04781709,0.0033140865,0.005419105,0.028149584,-0.0041170316,-0.015488471,0.020324742,0.027653556,-0.028571207,0.013132338,0.045783374,-0.009753149,-0.023077698,-0.0115326485,-0.058928113,-0.028248789,0.0077442355,-0.037375703,-0.049429182,-0.033134665,0.023598528,0.041170318,-0.016964154,0.015426468,-0.03809494,-0.020684363,-0.033506684,-0.0072916104,-0.0051989923,0.021763224,0.012735517,0.022643674,-0.010807208,-0.043873668,0.004600659,-0.027231932,0.033853903,0.030456113,-0.02167642,-0.0049478784,-0.042236775,-0.02116799,-0.0037946135,0.033556286,0.030257702,0.034622747,-0.037053283,0.0037667118,0.039409418,-0.006411161,-0.049081963,0.014732028,0.038491767,-0.05104127,-0.018749855,0.0071366015,0.013603565,0.061606664,-0.028744817,-0.08124937,0.013181942,0.020721566,0.003571401,-0.006646774,0.017137764,-0.06914629,-0.020833172,-0.020833172,0.05773765,-0.0067335786,0.0014834334,0.028744817,0.016393723,0.011712459,0.03888859,0.036210038,0.03896299,0.028918426,-0.031200156,0.020771168,0.041195117,0.013925984,-0.029389653,0.046279404,-0.03248983,0.061606664,-0.007899244,-0.024429373,-0.015327262,0.0025281922,0.029588064,0.0143972095,0.021788025,0.049181167,-0.027083123,-0.013219143,-0.024764193,-0.0028025575,0.026785506,-0.05297578,-0.0015965898,0.028546406,0.014732028,0.0067459797,0.00621895,-0.016257314,-0.017844604,0.01564968,-0.022631273,-0.0042720404,-0.04072389,-0.0025188916,-0.02168882,0.016294517,0.030530518,0.0064545632,-0.037226893,0.024466576,-0.00060375896,-0.018365433,-0.002115869,-0.022296455,0.024044953,-0.026140671,0.039880645,0.020882774,-0.04484092,-0.0029653169,-0.029092036,0.015190855,0.0061228443,0.015401666,0.024664987,-0.001156365,0.004253439,0.005744623,-0.016455725,-0.06324356,-0.010757606,-0.031522572,-0.0032489828,0.010317381,-0.07331292,-0.017509785,0.04831312,-0.050074015,0.002594846,0.01226429,0.03499477,-0.0088789,-0.0024460375,-0.046304204,0.012307692,-0.0005467933,-0.04672583,0.04960279,0.008593683,-0.023189304,-0.030158496,0.008246464,-0.0040860297,-0.019915521,-0.027132725,0.001262546,-0.008308467,0.041343927,0.08035652,-0.012822322,0.0017484983,0.031150552,0.013801976,-0.06626933,0.046006586,-0.05471188,-0.012183686,0.005707421,0.0014989343,-0.029984886,-0.021998838,-0.0063739587,-0.017497385,0.014942841,-0.024032552,0.0124379,-0.018241426,0.031150552,-0.018861461,-0.004228638,-0.015711684,-0.0013571014,-0.009288123,0.030877737,0.025967062,0.032861847,-0.047420267,0.01758419,-0.0024072854,0.04231118,0.016083704,0.040624686,-0.021837628,0.0006184848,-0.023152102,0.002149971,0.0036179035,0.024565782,0.06388839,-0.05406704,-0.006882387,0.024615385,-0.02044875,0.0060825422,0.0110614225,0.0011028871,-0.06998954,-0.031200156,0.0515869,0.038318157,-0.021949235,0.0151412515,-0.00065297424,0.01049719,-0.003980624,-0.008624685,-0.022172447,-0.029637666,-0.04533695,-0.0012237938,0.014843635,-0.018625848,-0.019456694,0.009275721,-0.03221701,0.002041465,-0.071428016,-0.06190428,0.017670995,-0.04466731,0.05208293,-0.037400503,-0.021217594,-0.04352645,0.021118388,-0.005636117,0.014744429,0.003163728,-0.029786475,-0.028174385,0.022308854,-0.028794419,0.027827166,-0.021664018,-0.0076946327,-0.00106646,0.019518698,-0.004851773,-0.021850029,0.01350436,0.031224957,-0.0012485952,0.020919977,0.018167023,0.031497773,0.018873861,-0.0049354774,0.02775276,0.023375316,-0.02275528,0.02150281,0.036383647,0.07013834,0.008792095,-0.019679908,-0.05386863,-0.012896725,0.020498352,-0.011520248,0.05739043,-0.013305948,0.045064136,0.0002522767,-0.012227088,-0.07068398,0.014856036,0.014806433,0.024540981,-0.03221701,0.010230576,-0.0055710133,0.01706336,0.010242976,0.002095718,-0.061259445,-0.06443402,-0.054315057,0.028670413,-0.030852936,-0.011123425,-0.02060996,-0.047717884,0.011030421,0.0053447005,0.05367022,0.023238907,0.023524122,-0.009771749,0.017819803,0.013268746,0.0018895563,-0.01866305,0.0072234063,0.0014904088,-0.039756637,-0.0077070333,0.007880643,0.029315248,-0.036135633,-0.008761093,0.0444937,0.010745204,0.023747336,0.0039527225,-0.0021081185,0.009976361,-0.014508816,-0.009994962,0.013715171,-0.019283084,0.011427243,-0.02507421,-0.0011594652,0.03792133,-0.024516178,0.0018926564,0.03893819,-0.008376671,-0.015426468,0.037896533,-0.025161015,0.025967062,0.016344119,0.007483821,-0.0076574306,-0.011111025,-0.012896725,-0.0231273,-0.024640186,0.036334045,-0.038814183,0.0077504357,0.03482116,-0.008227862,0.00391242,-0.004851773,-0.03095214,-0.013739973,0.01191087,-0.0075086225,0.017695796,0.027851967,-0.004817671,-0.03963263,0.01742298,0.010602596,-0.01085061,-0.012822322,-0.02098198,0.00018542918,0.058630496,-0.012406898,-0.022668475,0.039707035,-0.019779112,0.028571207,0.007359814,-0.0013012982,-0.023734935,0.01939469,-0.020051928,0.0038876187,-0.024838597,0.018811857,0.0047246655,-0.01510405,0.026587095,0.013640767,-0.015724085,-0.05629917,-0.010218175,0.042410385,0.036532454,-0.0016508428,0.015587677,0.0034411936,0.0020895174,-0.0050005815,0.034920365,-0.023164503,-0.06076342,-0.04734586,0.02079597,-0.017199768,0.019233482,0.00039410967,-0.0011300136,-0.0036365045,0.024776593,-0.03231622,-0.0038535167,-0.024863398,0.025185816,-0.0046378607,-0.026041465,-0.022817284,-0.02700872,0.013380352,-0.03506917,-0.021564813,-0.032018602,-0.051785313,-0.00230963,-0.0025901957,0.027132725,-0.027479947,-0.030431312,-0.026983919,0.023784539,0.02259407,0.037053283,0.06894788,0.010416586,-0.047916297,0.001759349,0.0094927335,0.04340244,-0.033481885,-0.009715946,0.043427244,-0.020423949,0.015575276,-0.011842666,-0.023189304,0.028670413,-0.021552412,0.029216044,-0.012003875,0.02364813,0.0029467158,0.015934896,-0.01491804,0.036681265,0.04709785,0.009486534,0.006770781,0.03415152,0.016740942,0.054662276,0.0675094,-0.00090215076,-0.016058903,0.0067087775,-0.004609959,-0.03449874,-0.024751792,0.002560744,0.020027127,0.009325325,-0.03291145,0.003357489,0.015885293,-0.00818446,0.06884867,-0.013194342,0.010645999,0.0018880062,0.03752451,0.032440227,0.0116132535,-0.041492734,-0.018601047,0.01724937,0.030877737,0.037202094,-0.020225538,0.004237938,-0.02364813,-0.003803914,-0.005229994,-0.04945398,-0.0073164115,0.019803913,-0.018439837,0.03749971,-0.00042627397,-0.018167023,-0.005580314,0.039955046,-0.037722923,-0.025297424,0.011458244,0.018613447,-0.023958148,0.029017633,0.0061290446,-0.018018214,0.010397985,0.020461151,-0.031547375,0.04035187,0.010094168,0.033481885,0.027802363,0.011315636,0.005264096,-0.021267196,0.008903701,0.011011819,-0.015513273,0.0041015306,-0.014769231,0.033333074,-0.0106770005,0.018985467,0.0007742685,-0.000050959115,0.0065475684,-0.0048703738,-0.032093003,-0.020535555,0.013119938,-0.038243752,-0.008134858,-0.01279752,0.015128851,-0.0011338887,-0.058035266,0.0077256346,-0.008643286,0.013950785,0.023908544,-0.011681457,0.021043984,-0.037896533,-0.036036428,0.007124201,-0.032961056,0.007304011,-0.0015082349,0.05967216,-0.011600853,0.010887813,-0.051438093,-0.044047277,0.021205192,0.045138538,-0.020498352,-0.012183686,0.0049106763,0.0027607053,0.02827359,-0.04553536,-0.034771554,-0.008110057,-0.02240806,-0.0065847705,0.02864561,-0.013206743,-0.026760705,-0.027851967,0.0337547,0.007434218,-0.013640767,0.0015524123,-0.006417361,-0.0040457277,-0.03896299,0.019791514,-0.028893625,-0.043501645,-0.0027870568,0.018576246,0.0070435964,-0.085416004,0.019493897,0.036507655,0.002630498,-0.010863011,0.00084712263,0.040128656,0.037202094,0.00012914164,-0.042063165,0.017894207,-0.01742298,-0.020907575,0.011073823,0.020039527,-0.02738074,0.01404999,0.0017314474,0.016480528,0.023003293,-0.0073164115,-0.0025452431,0.0008951753,0.04848673,-0.015240457,-0.0003859717,0.025396628,0.021651618,0.036879674,-0.03809494,0.027579151,-0.018204223,-0.030133694,0.00014386747,0.04335284,-0.0057136216,0.01493044,-0.0025529936,-0.023214106,-0.010757606,-0.006274753,-0.020709164,0.011321837,0.014744429,-0.026016664,0.0013547762,-0.0038876187,0.031497773,-0.0030691726,0.026438287,-0.035441194,-0.0062995544,0.019506298,-0.0069753923,-0.0072668088,0.030307304,0.017212167,0.016517729,-0.03516838,-0.02113079,0.013826778,0.020733966,0.024826197,-0.008661888,0.030902538,-0.043328036,-0.0012199186,0.0060515404,0.016827747,0.020349545,0.0046068593,0.03110095,0.03821895,0.015314861,-0.01706336,0.0710808,-0.04464251,-0.005177291,0.0014966092,0.038169347,-0.007800039,0.019717108,0.04694904,0.016232513,0.05600155,0.00017205968,0.010534393,0.007886844,-0.015972098,0.004017826,-0.01511645,0.003481496,-0.019878319,0.041715946,0.0022848286,-0.011241232,-0.01884906,0.011067622,-0.035986826,0.018514242,0.016616935,0.0031730286,-0.0067459797,-0.03678047,-0.0068017826,0.0051431893,-0.023313312,0.025768649,0.01031118,0.0498012,0.00603914,0.021291997,-0.0012369696,0.007855842,-0.03412672,0.004340244,0.059820965,-0.033109862,0.018427437,-0.017150166,-0.0047928696,0.017311374,0.016071305,0.011321837,0.008072854,0.03665646,0.037549313,-0.019989925,-0.020535555,0.009715946,0.013764774,-0.0015919396,-0.031770587,-0.010112769,0.010013564,-0.01101802,0.0019531099,-0.0024816897,-0.034349933,-0.009126914,-0.007235807,0.017137764,-0.0064855646,-0.03234102,0.030307304,0.011966673,-0.0124441,-0.031398565,-0.025347026,-0.012995931,0.008655687,-0.029315248,-0.007142802,-0.0043650456,-0.012282891,0.039558224,-0.052330945,0.03343228,0.023511723,0.05669599,-0.0014586321,0.042063165,-0.03266344,0.01227669,-0.03499477,-0.035887618,-0.009517536,0.010614997,-0.0020771169,0.012599109,-0.012084479,-0.0030490216,0.006559969,-0.017261771,-0.02062236,0.051834915,-0.023958148,-0.015190855,0.008680488,-0.013491959,-0.004200736,-0.0034225925,-0.006739779,-0.0006165472,0.068898275,0.014732028,0.020423949,0.010001163,-0.03308506,0.014000388,-0.0017826003,0.03826855,0.024404572,-0.006652974,-0.047073048,-0.016468126,0.024119357,0.022916488,0.0026444488,-0.021651618,-0.019989925,0.016629335,-0.0147816315,0.001635342,-0.010273978,0.011135827,-0.00818446,0.034449138,-0.019171478,0.018997869,0.0067335786,-0.002060066,0.006008138,-0.014173998,-0.033109862,0.013429956,-0.046229802,0.0066033714,0.003394691,-0.007700833,0.016096106,-0.020895176,-0.010534393,0.03283705,0.005487309,0.010422787,-0.022284053,-0.021602016,-0.031671382,0.002810308,0.0037543112,0.019146677,0.006417361,-0.014942841,0.030877737,-0.009467932,0.007142802,0.040649485,0.031051347,0.05317419,-0.029042434,-0.007428018,-0.008798295,-0.02255687,-0.004237938,-0.032241814,-0.010168572,0.022358458,-0.027703159,0.0078124395,0.0070993993,0.027579151,0.009691145,0.012034877,-0.0013245496,-0.022891687,0.0040984307,0.0010052315,0.015835691,0.00444255,0.062003486,0.019456694,0.009573339,-0.026363883,0.04208797,0.017125363,-0.0039000195,-0.010038365,-0.031720985,-0.012822322,0.03524278,0.026140671,0.0026242975,0.0020027126,-0.019345088,-0.0012819221,-0.018427437,0.0112846345,-0.0129091265,-0.002525092,-0.023499321,-0.011706258,-0.007434218,0.005174191,0.0033295874,-0.0010966867,-0.053422205,-0.017398179,0.0051834914,-0.028298391,0.039335012,0.013194342,-0.012822322,-0.007961248,0.008649486,0.0075644255,-0.02827359,0.020882774,0.010521992,-0.00035807013,-0.046502616,0.0038690176,-0.022197248,-0.01866305,-0.016344119,0.031770587,0.03182019,-0.007086999,0.012685914,0.009009107,-0.0145336175,-0.0444193,0.024714591,-0.008754892,-0.015748886,0.04424569,-0.0008409223,-0.014806433,0.008246464,0.011011819,-0.005961635,0.016344119,0.00006011432,-0.019841116,-0.02363573,0.022470064,0.018167023,0.0062375506,0.018935865,-0.029042434,0.053719822,-0.032291416,0.009616741,0.031150552,0.005989537,0.020064328,-0.005722922,0.012326294,-0.028347995,-0.031522572,-0.004941678,-0.0023716334,0.0008602984,-0.027430343,0.014347607,-0.011576051,-0.0074218176,0.0053912033,0.02738074,-0.019766713,0.040401474,-0.032266617,-0.028000776,0.009294323,0.016418524,0.022370858,0.030257702,0.015624879,-0.0123572955,-0.014198799,-0.0077628368,0.018092617,-0.0231273,-0.030976942,0.033878706,0.0068327845,0.018278629,0.008624685,0.018613447,-0.027628753,0.024342569,0.0018973068,-0.013367952,0.0059802365,-0.011067622,-0.034870762,0.0320434,0.022023639,0.025867855,0.036135633,-0.007626429,-0.0073474133,0.0015369115,0.016604533,-0.04020306,0.014905638,-0.007700833,-0.014062391,0.007583027,0.0044735516,0.0024103855,-0.03482116,-0.04017826,-0.018799458,-0.002915714,0.013417555,-0.0016446426,0.005815927,-0.023226507,-0.03695408,-0.011011819,0.00018949815,-0.018861461,-0.039558224,-0.0043123425,-0.023226507,0.026091067,0.04642821,-0.008909902,-0.017981011,-0.034225926,0.003664406,0.0116132535,0.036036428,0.020374347,0.032068204,0.010366983,0.013144739,0.012313893,0.011433443,-0.0013051734,-0.0160217,-0.036929276,0.0017112963,0.000020490215,0.013653168,0.0026537492,-0.021899631,0.0031776787,-0.012419298,0.008035652,-0.012995931,-0.02292889,0.027802363,-0.05089246,0.011749661,0.01920868,0.0030304205,-0.0056795194,-0.018266227,0.031200156,-0.03489556,-0.02755435,0.015959697,0.015748886,-0.0057942257,0.0018291029,-0.015302461,-0.03876458,0.0148932375,-0.001723697,-0.014955241,-0.00959814,-0.0028971129,-0.017038558,-0.015587677,-0.01759659,0.017224569,0.006993993,0.0094369305,-0.0011966673,-0.015314861,0.029960085,-0.0065537686,0.013578764,-0.017720597,0.029067235,-0.0054656076,-0.020237938,-0.00084014726,0.012475101,0.0052206935,-0.003255183,-0.027281534,0.0122208875,0.03695408,0.042906415,0.008630886,-0.013752374,-0.004814571,0.009133114,0.020845573,0.012834722,-0.019444294,0.02008913,0.013070336,0.023065297,-0.04533695,-0.027083123,0.0005739198,0.010025964,0.00023968224,-0.05277737,-0.010453788,0.026165472,0.0302329,0.0022910289,-0.011824065,0.007979848,-0.021118388,-0.04392327,-0.039880645,-0.010187173,0.013938384,0.026587095,-0.021428406,0.01990312,0.034201123,0.011458244,-0.016964154,-0.013008332,0.005719822,-0.019345088,-0.04181515,0.040773492,0.008141058,-0.0037543112,0.009300523,-0.0044580507,-0.008661888,0.0012354195,-0.009808952,-0.021316798,0.028174385,0.019072274,-0.02384654,0.002382484,0.004191436,-0.014211199,-0.019593103,-0.02026274,-0.0053974036,0.0051462897,0.023697734,-0.004712265,0.008587483,-0.04248479,-0.0023576827,-0.027628753,-0.020324742,0.0062902537,-0.008798295,0.0009866304,-0.02807518,-0.01759659,0.005595815,-0.043824065,0.024032552,-0.012592908,0.05104127,-0.024913002,-0.004250339,0.0056485175,0.0032117807,0.0049788803,-0.022643674,-0.045758575,-0.0003404379,0.010739004,-0.008277466,-0.0124441,0.029612865,-0.0009207518,-0.01510405,0.031001743,0.03038171,0.0027808563,0.015686883,0.011241232,0.007452819,0.03697888,0.0047525675,0.020547956,-0.034027513,0.010329781,-0.02452858,-0.0038659174,0.0053416006,0.016269716,-0.026760705,0.03611083,0.01615811,-0.030009689,-0.048610736,0.013603565,-0.009176516,0.0023065298,0.011979074,-0.0444193,0.020349545,-0.040227864,0.010038365,-0.0063057547,-0.019617904,-0.031348962,-0.0059461347,0.014732028,0.010565395,-0.032936253,0.022730479,-0.0025979462,0.0049881805,0.0017484983,-0.03214261,-0.033680294,0.04112071,0.0057136216,-0.028124781,-0.011235032,-0.004330944,-0.014608022,0.005279597,-0.0021840727,-0.023933345,0.026264677,-0.0035962022,0.01047859,-0.00024084479,-0.02113079,-0.004693664,0.0091889165,-0.023201706,-0.054910287,0.0037233094,0.012673513,0.030108893,-0.0074218176,0.004058128,0.05084286,0.0037357102,-0.00872389,0.056100756,0.043948073,0.003326487,0.024677388,0.020250339,-0.014868436,-0.025185816,0.007378415,0.020944778,0.023796938,0.005124588,0.009542337,-0.017150166,0.038640574,0.04496493,-0.034002714,-0.015376865,-0.0042100367,-0.018625848,-0.014273203,0.0033357877,0.05744003,-0.024119357,0.010962216,-0.0032303818,-0.018613447,0.010801008,-0.006634373,0.0051121875,-0.0033202867,0.018092617,0.0061786477,0.00074016664,0.013281147,-0.019035071,0.0031032746,0.010652199,0.013355551,0.020002326,0.017348576,0.006714978,0.011142027,-0.010639799,0.032093003,-0.00040457275,0.019841116,0.02027514,0.02738074,0.011538849,-0.039384615,0.023375316,-0.0028211586,-0.011948072,0.031398565,0.0073722145,-0.032812245,0.02983608,-0.002915714,0.008680488,0.0038473164,-0.014546018,-0.048809145,-0.040475875,-0.002046115,0.023722535,-0.030356908,0.0077628368,0.005533811,-0.033382677,0.04121992,0.05887851,0.034622747,-0.03928541,0.009350126,0.019841116,-0.007273009,0.007062197,0.035838015,-0.012958729,-0.015352064,-0.03593722,0.020287542,0.00037725247,0.050694052,0.0498012,0.010218175,-0.02079597,-0.008240264,0.017844604,-0.005729122,-0.0123572955,-0.02792637,-0.0022119745,-0.003469095,-0.004532455,-0.017100561,-0.0039062197,0.003980624,0.021341601,0.033705097,0.019035071,0.024813795,0.0021763225,0.006311955,-0.005673319,0.000248789,-0.016344119,0.015711684]},{"id":"interface-GatewayInteractionCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayInteractionCreateDispatchData\nDescription: INTERACTION_CREATE — slash command or component interaction","meta":{"url":"/docs/typedefs/GatewayInteractionCreateDispatchData"},"embedding":[0.00889223,0.039249368,-0.020873409,0.0071308715,0.023620602,-0.0016060892,-0.0227925,0.04847678,0.0034044161,-0.0073806164,-0.017114092,-0.023331422,-0.008346735,-0.015549901,0.029101843,-0.016719759,-0.010213248,0.017613582,0.022358732,0.017245537,-0.007249172,-0.017363837,0.03333436,0.0030725184,-0.018559983,-0.014117154,0.023278845,0.011534267,0.026446661,-0.019282928,0.045532424,-0.030705467,0.012447807,-0.016023101,0.049791228,0.026696406,-0.014800666,0.0031760312,-0.014892678,-0.0124018015,-0.009792626,-0.015168712,0.0024218676,0.025552837,-0.0037461722,-0.011586845,0.013867409,-0.014997833,0.009950359,-0.013551942,-0.015641913,-0.0131116025,0.010055515,0.06614294,0.007505489,-0.020097885,-0.001840225,-0.0024202245,-0.02414638,0.040116902,-0.013880554,0.016233413,-0.03183589,0.026525527,0.023357712,0.012940724,-0.008885657,0.047267493,0.014182877,0.01604939,-0.018467972,0.013551942,-0.036857076,0.032177646,0.012290074,-0.028050287,-0.057520173,0.02105743,0.009694042,-0.03969628,0.03036371,0.026157483,-0.07261002,-0.0809699,-0.00895138,0.009654609,-0.036594186,-0.0067891157,-0.0227925,-0.034937985,0.008872513,0.044296842,-0.009122258,0.009378575,-0.030311134,-0.030942068,-0.006095745,0.029548755,-0.0097663365,0.041194748,0.017613582,-0.081811145,-0.010062087,-0.03998546,0.030100822,-0.036962233,0.002888496,0.025802583,0.0091485465,-0.0035062858,-0.055942837,-0.036436453,-0.02635465,0.008077273,0.012684408,-0.015944235,0.056100573,-0.09716388,0.011843162,-0.008826507,-0.017416414,-0.008182429,-0.0230291,-0.026170628,-0.032335382,-0.022753067,0.007472628,-0.022371877,-0.026433516,-0.055522215,0.008530757,-0.0013990639,0.0035490051,-0.047504093,-0.0026387512,0.00680226,-0.039380815,0.029128132,-0.04069526,0.02609176,-0.028628642,-0.025815727,0.052078366,0.039117925,-0.069718234,-0.01457721,-0.021215165,0.033413228,-0.008011551,0.03309776,-0.0453484,0.037593167,-0.0019092334,-0.039065346,0.010791604,0.0008379596,-0.011941745,0.0020308197,0.0027948415,-0.051315986,0.008077273,-0.04847678,-0.008156139,0.015747068,-0.08391426,-0.008616196,-0.010837611,0.0372777,-0.075764686,0.019598395,-0.0011139933,-0.04363962,-0.050080407,0.002410366,-0.05047474,0.015352733,-0.063093424,-0.02820802,-0.009017102,-0.002691329,0.032177646,0.058676887,-0.017889615,-0.047740694,-0.012198063,-0.013512509,-0.0231474,0.016325423,-0.008984241,-0.03209878,-0.03112609,0.027866263,0.0020176752,0.014432621,0.04185197,-0.016772335,0.041326195,-0.035200875,0.06772028,-0.0097466195,0.029049264,-0.027839974,-0.009194553,-0.0016184121,0.009937215,-0.008708207,-0.013906843,-0.01048271,0.023673179,-0.003742886,0.020334486,0.011567128,0.008563618,0.02794513,-0.053419102,0.024448702,0.012454379,0.018625705,0.023121111,-0.025447682,0.0017367123,0.012743558,0.017298114,-0.042798374,0.01923035,0.06135836,0.015641913,-0.044717465,0.00160116,0.0014335681,-0.022332445,0.039275657,0.004626851,-0.062462494,-0.026854139,0.028812665,0.0004834698,-0.0062830537,0.030100822,0.042614352,0.00833359,-0.009575742,0.000034042107,-0.0044296845,0.007505489,0.035227165,0.007899823,0.0029312153,-0.058203686,0.03577923,0.019296072,0.03601583,0.011028205,-0.0226742,0.0014426049,-0.039564837,0.026998729,0.009076253,0.03948597,0.062147025,0.03359725,-0.030337423,-0.0040090615,0.06619552,-0.033676118,-0.0013423783,0.039775148,0.03998546,-0.03380756,0.0065623736,0.009641464,0.02193811,0.083493635,-0.016746046,-0.05904493,-0.058939777,0.055101592,-0.012927581,0.023502301,0.01884916,-0.046715423,-0.02319998,-0.010857327,0.020610519,-0.026315216,0.05636346,0.02723533,0.01275013,0.027314195,-0.0054286635,-0.01804735,-0.012822424,0.027077595,-0.015563045,0.030179689,0.042877242,-0.016483158,-0.028812665,0.046899445,0.01773188,0.04198342,0.016746046,0.024935048,-0.011245089,0.034596227,0.0072425995,0.035674077,-0.028628642,0.0543655,-0.027550796,-0.013525654,-0.025842017,0.0045381263,-0.017127236,-0.027577085,0.027393062,0.0448752,0.042062283,0.0033633397,-0.007150588,0.011928601,0.012710696,0.02868122,-0.07324095,0.0065032234,0.008727924,-0.018375961,-0.026170628,-0.008248151,0.037435435,0.049318027,-0.01469551,-0.012967014,0.0058920057,0.059728444,0.0003505875,-0.0046958597,-0.0010030869,-0.0149584,0.009832059,-0.002642037,-0.016627748,-0.031967334,-0.024356691,0.010140954,0.020295052,-0.004791157,0.017574148,-0.00314317,0.036173563,-0.019650973,-0.03383385,-0.03806637,-0.034464784,0.041326195,-0.0028047,-0.006263337,-0.089066885,-0.017390126,0.023791479,-0.04172053,0.018625705,-0.008399312,-0.014997833,-0.026170628,0.01787647,0.002862207,-0.016220268,-0.0066215238,-0.019243496,0.02723533,0.008964525,-0.030968357,-0.008169284,-0.0075909276,-0.03527974,-0.0048338766,-0.05694182,0.04902885,-0.032440536,0.024488136,0.005813139,-0.001304588,-0.010029226,-0.012092907,-0.0051690605,-0.00019850195,0.03575294,-0.044796333,0.010022653,0.05878204,-0.015116134,0.024330402,-0.0023134255,-0.01643058,0.005284074,0.054102615,0.0021967685,0.036567897,0.008701635,0.00606617,-0.0106075825,-0.009207697,0.011028205,-0.0067825434,-0.0013037665,0.0040090615,0.011238516,0.04198342,0.0153133,0.057520173,-0.001784361,0.024540713,0.021688364,0.04437571,-0.016023101,0.013578231,-0.036699343,0.008491323,0.0026190344,0.009201124,0.029049264,0.0030675891,0.004170081,-0.014261743,0.018954316,0.010614155,0.059202664,0.06382952,-0.04873967,-0.011645995,0.019243496,0.069034725,0.014590355,0.020439642,0.0056784083,-0.0013144463,-0.03328178,0.014156587,-0.03328178,-0.002517165,0.0008519256,0.025723716,0.013367919,-0.07066464,0.022148421,0.03039,-0.023791479,0.060464535,-0.008852797,-0.044007666,-0.029548755,-0.008747641,0.041483928,-0.024948193,0.022569044,0.011751151,0.03848699,0.015799645,0.04637367,0.013683387,0.029890511,0.013177325,0.057309862,-0.033465806,0.010686449,0.010515571,-0.024698447,0.005494386,0.04902885,-0.04613707,-0.029312154,0.033465806,0.049081426,-0.03612099,-0.011987751,-0.02626264,0.029049264,0.009477158,-0.023568023,-0.0074069053,0.01469551,-0.014932111,0.01360452,0.07445024,0.07718429,-0.016890636,0.009385147,-0.052314967,-0.0043836785,0.028023997,-0.017429559,0.049580917,-0.014932111,0.008826507,0.009095969,0.015628768,-0.0151292775,0.009615175,-0.01004237,-0.024054369,0.017100947,-0.0012355796,-0.019887574,0.033676118,-0.006437501,0.0226742,-0.0025007343,-0.038697302,-0.03338694,0.019861285,-0.029732777,-0.015510467,-0.01207319,-0.02464587,0.010285543,-0.02300281,0.070244014,0.04143135,-0.012086335,-0.0223193,-0.000077685836,0.0012355796,-0.029969377,-0.02217471,-0.016378002,0.00765665,-0.088593684,-0.05394488,-0.00033621074,0.018678283,-0.038960192,-0.012612113,0.03186218,0.00061861135,-0.026630683,-0.024093803,0.0048273043,-0.00061943283,0.032650847,0.00015023712,0.023699468,0.018691428,0.00007044611,0.0016471656,0.004225945,0.029995667,-0.023581168,0.0070782937,0.014485199,-0.00786039,-0.032677136,-0.026854139,0.0074660555,0.015576189,0.03380756,-0.0072163106,-0.03990659,0.014117154,0.0030232267,-0.017140381,-0.019742984,-0.027892552,-0.031546712,-0.0008831437,0.03919679,-0.0006198436,0.0058624307,-0.020597374,-0.03506943,-0.0061976146,0.016180836,0.0026042468,-0.001813936,-0.017008936,-0.01669347,-0.03572665,0.012875002,0.011494834,-0.03236167,-0.019322362,-0.057309862,0.016338568,0.051710322,-0.063040845,0.018283948,0.023357712,-0.00662481,-0.0008293335,-0.0076172166,-0.04419169,0.0017186387,0.042035997,0.0064440733,0.014182877,-0.010035798,0.015707634,-0.029811643,0.0125135295,0.0070388606,-0.015155567,-0.0008954666,-0.025868304,-0.03194105,0.03039,0.0110742105,0.015996812,0.027550796,-0.006260051,0.01583908,0.011652567,0.024606436,0.0031480992,-0.012276929,0.0079721175,0.023594312,-0.0060990313,0.037645746,-0.005244641,-0.052078366,0.0018188652,-0.010436704,-0.024185814,0.018717717,-0.018389106,0.057783064,-0.0313364,-0.01666718,0.01740327,0.013827976,0.0144194765,-0.015747068,-0.007314894,-0.022884512,-0.032992605,-0.024343546,0.026788417,-0.010923049,-0.00845189,0.0011797156,-0.02070253,-0.0014245312,0.021675222,0.010765316,0.040353503,0.016312279,0.008110134,0.008530757,0.011521122,0.039591126,-0.041247327,0.0060727424,0.04016948,-0.021188876,0.053892303,0.036935944,0.0027356916,0.011501405,-0.043140132,0.009227414,0.019913863,0.005008041,0.021859244,0.008300729,-0.0023725757,0.023765191,-0.009937215,0.015773356,-0.010088376,0.0069665657,0.014025143,0.055995416,0.09753192,0.027051307,-0.014288032,0.012000895,-0.01643058,-0.00930628,0.012500385,-0.008524185,0.01654888,0.0026256067,0.0052249245,0.026183773,0.045690157,-0.011501405,0.039538547,-0.03412303,0.0024843037,-0.051605165,0.010062087,0.00014654023,0.013801687,-0.007794667,0.011001917,-0.018507404,0.055469636,0.018349672,-0.01911205,-0.046189647,-0.001515721,-0.019269783,0.0085701905,-0.017561004,-0.011698573,-0.038539566,-0.0024152952,0.012973586,0.03136269,0.00499161,0.010318404,-0.015536756,-0.0372777,-0.022016976,0.019466951,0.041378774,-0.032650847,0.007794667,0.01961154,-0.014734944,0.0065295123,0.008340162,-0.032677136,-0.025158504,-0.030705467,0.045295823,0.0299168,-0.025552837,0.0063323453,0.0024037939,0.0051394855,-0.0038053223,0.018375961,-0.0053136493,-0.014603499,0.0077815223,0.009963504,0.008984241,0.017035225,-0.0018385819,0.018113071,-0.0068482654,0.009325997,0.018323382,-0.0100095095,-0.03722512,-0.02013732,0.017035225,-0.013032736,-0.00481416,-0.008721352,0.010370982,-0.029049264,-0.007400333,-0.012526674,0.006552515,0.0018632277,0.0051427716,0.010456421,0.032046203,0.01581279,-0.013880554,-0.012822424,0.042614352,-0.038960192,-0.013394209,-0.041168462,-0.039775148,0.011757723,0.042929817,-0.013170753,-0.0072754608,-0.004981752,-0.004248948,0.033465806,-0.039328236,-0.0023742188,-0.008445318,-0.013972565,-0.013867409,-0.030495156,-0.01664089,-0.024080658,-0.036489032,0.029075554,-0.0016036246,-0.015155567,-0.019217206,-0.024974482,-0.032519404,-0.03407045,0.011862879,-0.0063914955,-0.06372436,0.0111859385,-0.017298114,0.024159525,-0.111359894,0.003059374,0.0038184668,-0.0011624636,0.0037264554,0.026407227,0.02509278,0.030810622,-0.0076895114,-0.032703426,0.013591375,-0.0075909276,-0.0065886625,0.008281012,0.021517487,-0.019808708,0.021714654,-0.0045216954,0.011087355,-0.021530632,-0.0012002538,-0.016378002,-0.014380043,0.0031891756,0.011166222,-0.013827976,-0.006039881,0.017363837,0.023121111,0.017008936,0.05809853,-0.018559983,-0.049370605,-0.008465035,0.019979585,0.0098583475,0.009161691,0.028102864,0.0101212375,-0.0013004803,0.011376534,0.008116706,0.00606617,0.0107193105,-0.0377509,0.0065065096,-0.03583181,0.027734818,0.012316363,0.0019996015,-0.004896313,-0.025697427,0.03435963,-0.020400207,-0.001728497,0.018665139,-0.0007032288,0.033728693,0.0075777834,-0.019558962,0.015891656,0.002147477,0.034438495,0.003995917,0.042798374,-0.03969628,-0.0024169383,0.006542657,0.0029180709,0.017850181,0.043771066,0.03830297,0.024764169,0.016838059,0.018060494,0.0060793147,-0.017363837,-0.0049160295,0.016864346,0.045926757,0.035122007,0.014813811,0.008918519,0.03945968,0.044402,0.007236027,-0.0018829445,0.021017998,-0.015917946,0.0097466195,-0.0112188,-0.01675919,0.00847818,-0.008517613,-0.0014730014,0.039039057,-0.008668774,-0.0038907612,-0.0092997085,-0.01873086,0.0033370508,-0.0140645765,0.00021811595,-0.024014935,-0.0313364,0.036620475,-0.027156463,0.02222729,0.019756129,0.01961154,-0.017797604,0.027524507,-0.039301947,0.018744005,0.006940277,-0.019046329,0.022700489,0.003930195,0.0039564837,-0.022108989,-0.003854614,0.00017036457,-0.035936963,0.007334611,-0.011738006,0.004528268,0.019414373,-0.01607568,-0.0112976665,0.008077273,-0.009779481,0.007623789,-0.01139625,0.022858223,0.015168712,0.010785033,-0.006230476,0.012053473,-0.05102681,-0.019493239,-0.004686001,0.01316418,0.0010022654,-0.018546838,-0.021648932,-0.00839274,0.012309791,-0.016167691,-0.0117840115,-0.041063305,-0.010239537,-0.042035997,-0.011153078,-0.016101968,-0.0042160866,0.026722696,-0.035148297,0.0010490925,0.020899698,0.033413228,0.011146505,0.01374911,-0.002012746,0.0069534215,-0.0018188652,-0.00017919601,0.0021737658,0.04214115,-0.023462867,-0.033754982,-0.018941171,0.034648806,0.03336065,-0.015799645,-0.022371877,0.011126788,0.016614603,-0.024277825,-0.014288032,-0.0075514945,-0.021806665,0.034648806,-0.00742005,0.02022933,0.03677821,-0.025552837,0.033939004,-0.01740327,0.0043869647,-0.022279866,-0.004587418,0.01792905,0.032309093,-0.00043910724,0.009102541,0.016916925,-0.0038316112,0.0028260597,-0.035621498,-0.026183773,0.0017728596,0.025316237,-0.025040204,-0.03162558,0.06992855,0.007742089,-0.0230291,0.023370856,-0.010535288,-0.005297219,-0.019690407,0.008741069,-0.053629413,-0.0068679824,0.0062403344,0.044691175,-0.04224631,-0.0124018015,0.013197042,-0.032703426,0.004709004,-0.045216955,0.02400179,0.0061713257,-0.03186218,-0.022463888,-0.06540685,-0.013262764,-0.010055515,-0.012881574,-0.019440662,-0.030758046,-0.004810874,-0.010029226,0.0294436,0.021004854,0.016496303,0.002096542,0.025079638,0.029049264,0.0040945006,-0.010324976,0.0041470784,-0.04022206,-0.033413228,-0.020479074,0.0038151806,0.0048568794,-0.016890636,0.023660036,-0.008543901,-0.008169284,0.0020899698,0.015523612,0.013275908,-0.00471229,0.029259576,0.00081413524,0.007814384,0.0024169383,0.042351462,0.0070191436,0.016009957,-0.0037297416,-0.015917946,0.014472054,-0.021688364,0.013091886,-0.014051432,0.005379372,0.024567002,0.048424203,0.010305259,0.03188847,0.00030807336,0.004824018,0.0023528591,0.017679304,0.01690378,0.0025105926,-0.012211207,0.024816748,-0.032072492,-0.010338121,0.019756129,-0.01861256,-0.0016553809,0.011415967,0.0016635963,-0.022805644,0.020925986,0.031020934,0.046741713,-0.029496176,-0.002517165,-0.004002489,-0.041221038,-0.0074923444,0.01994015,-0.023423435,-0.027550796,0.06435529,-0.019322362,-0.015681345,0.019348651,-0.007932683,0.003572008,0.026788417,-0.004311384,-0.0044263983,-0.012362368,-0.0022263436,0.020741964,0.027261619,0.015497323,0.03065289,0.011843162,0.012598968,0.013459931,-0.016220268,0.00018587093,0.024198959,0.036804497,-0.026788417,-0.011271378,0.020058451,-0.0034537078,-0.008872513,0.005813139,-0.0036935944,0.029364733,-0.03767203,-0.03533232,-0.0056586917,0.013985709,0.046662845,0.000004117272,0.026249494,-0.0046794293,-0.0019700264,-0.06977081,0.011271378,-0.016378002,0.00074676983,-0.01095591,-0.012526674,-0.00765665,-0.016627748,0.011363389,-0.013374492,0.0792874,-0.038171522,0.009996365,0.009825487,0.013210186,0.0061877565,-0.010640443,0.03504314,-0.03041629,-0.039065346,-0.0058821477,0.02020304,0.024659013,-0.0014261743,0.030574024,-0.009207697,-0.004587418,-0.014932111,0.031152379,-0.032282803,0.008024695,0.0015379023,-0.0026141054,-0.00076895114,-0.01678548,-0.018665139,0.01816565,0.0014467125,0.022661056,0.008695063,0.008938235,0.0028556348,0.01095591,-0.022963379,-0.03409674,-0.013170753,0.032256514,-0.059623286,-0.008911947,-0.0026666832,-0.019322362,-0.04248291,0.006375065,0.0008338519,-0.011172794,-0.015983667,-0.028365754,-0.024764169,-0.026827851,-0.03777719,0.0070059993,0.01763987,0.022345588,-0.018283948,-0.021280887,-0.049922675,0.014616644,0.024343546,-0.0047057183,-0.011107072,-0.046426248,0.009818914,0.0076303612,-0.004616993,-0.00003193694,0.034201894,-0.03112609,0.026196916,-0.013210186,0.022450745,0.02423839,0.00033518384,-0.001986457,0.015615623,0.009621748,0.030258555,0.018244516,-0.045059223,0.011639423,0.018651994,0.009726903,-0.006273195,-0.00055453205,0.013361348,-0.03651532,0.0294436,0.0041897977,0.021570066,-0.0050014686,-0.020176752,0.061673824,-0.020426497,0.014932111,0.0069862823,0.01139625,-0.0042982395,0.0040912144,-0.0028802806,-0.038855035,0.011481689,0.023699468,0.012953869,0.008136423,0.0012536532,-0.031573,0.008787074,-0.004252234,0.005638975,0.020597374,0.022477033,-0.040353503,-0.041247327,0.0048831683,0.011692001,0.003716597,-0.0056521194,0.013289053,-0.028786376,-0.027629662,-0.009542881,-0.013039308,0.010344693,0.0033879855,0.00089628814,-0.0069797104,-0.004922602,0.03772461,-0.0034077023,0.010883616,0.03804008,-0.026144339,-0.011987751,0.022516467,-0.019716695,-0.029049264,0.0039039059,-0.028654931,-0.02723533,0.013387636,0.007393761,-0.028812665,0.007236027,-0.020334486,-0.025697427,0.012296646,0.017718738,0.023554878,0.0057342723,0.0060990313,-0.03746172,0.0012257212,-0.017837038,0.010568148,-0.0046925736,-0.011810301,-0.016141402,-0.012487241,0.01006866,0.01669347,0.0065919487,-0.017245537,-0.03627872,-0.021583209,-0.032887448,0.018980606,0.0039531975,-0.020544797,-0.00423909,-0.052130945,-0.027314195,-0.05709955,0.010555005,0.00992407,0.014090865,0.010522143,-0.0042160866,0.020124175,0.0301534,-0.018954316,-0.0527093,-0.0014795737,-0.025289949,0.016772335,0.021754088,0.021543777,0.047030892,-0.043297864,-0.012414946,-0.014642932,-0.0012429734,0.0013949563,-0.00986492,-0.013735965,-0.030758046,-0.02412009,0.008221862,-0.02417267,0.013440214,-0.021044286,0.01607568,-0.025710572,-0.013551942,0.0039039059,0.04222002,0.031520423,-0.012993302,-0.037856057,-0.00930628,0.024198959,-0.010633871,-0.0044033956,0.03793492,0.036147274,-0.053681992,0.008997385,0.0015132563,0.020531652,0.01678548,0.012355796,0.0363313,-0.018494261,-0.021846099,0.027629662,0.007170305,0.0020850406,-0.007334611,0.011685428,-0.007367472,0.030705467,-0.021609498,0.014077721,0.069192454,-0.0024465134,-0.02747193,0.00582957,0.0022493463,-0.041168462,0.0012347581,-0.024580147,-0.017390126,-0.022345588,0.031231247,-0.023581168,-0.015707634,-0.022490177,0.019164627,0.016101968,-0.0033584104,-0.04437571,0.01896746,-0.009818914,0.046452533,0.01884916,0.023502301,-0.022385022,0.020216186,-0.017495282,-0.035936963,0.011501405,0.028602352,-0.0076106447,-0.0037560305,0.0038710446,-0.015549901,-0.014274888,-0.0017465706,-0.005412233,0.011139933,0.022135276,0.01569449,0.013420498,-0.030468866,-0.031520423,0.002495805,0.049396895,0.016417434,0.02025562,0.0052216384,0.026683262,-0.032203935,-0.024961337,0.021241454,0.024304114,0.022700489,0.010903332,0.0058920057,0.0050047548,0.015181855,-0.014366899,0.016312279,-0.015300156,0.016995791,0.0066018067,-0.013367919,0.018389106,0.0049193157,-0.014485199,0.008596479,0.03162558,-0.0027274762,-0.0010425203,0.02099171,0.05494386,0.0036673055,-0.0075646387,0.024080658,-0.003456994,-0.010252682,-0.007137444,0.007170305,0.0022230574,-0.004419826,0.031257536,0.0014376757,0.022845078,-0.008609624,0.027971419,0.0005339938,-0.004616993,0.022582188,-0.016719759,0.028313175,0.014288032,0.01319047,-0.0056028278,0.033176627,0.017942194,-0.00998322,0.0043738205,-0.011507978,-0.008846224,0.017613582,-0.00895138,0.019388083,0.014748088,-0.006384923,-0.007985262,-0.0034405633,0.0067003905,-0.008064128,-0.011264806,-0.006033309,0.00013986531,0.015655056,0.00582957,-0.0004082999,-0.029601332,0.008583335,0.03364983,-0.05050103,-0.02550026,0.03627872,0.0014902536,0.0006280589,0.037435435,0.004866738,0.0029558614,-0.015983667,0.03386014,0.017074658,-0.0230291,-0.028812665,-0.0060793147,0.023068534,0.025842017,0.06251507,-0.00033169234,-0.0153133,0.024685303,0.007742089,-0.003713311,-0.00471229,0.0008363165,-0.028155442,0.007886678,-0.0045479843,-0.012559535,-0.03819781,0.0034109883,-0.031494137,0.018494261,-0.0055305334,0.00033867534,0.009431153,0.0007857925,0.01937494,-0.025592271,0.0011673927,0.010436704]},{"id":"interface-GatewayInviteCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayInviteCreateDispatchData\nDescription: INVITE_CREATE — full invite: code, guild, channel, inviter?, expires_at?, ...","meta":{"url":"/docs/typedefs/GatewayInviteCreateDispatchData"},"embedding":[0.015655654,0.02010983,0.0026277846,-0.0002329889,-0.0007128485,-0.027157277,-0.05119303,0.012990351,-0.012594157,0.006435146,0.01094335,-0.0075216773,0.0025332384,-0.022967229,0.027661523,-0.0013161434,-0.038875006,0.04598248,0.0034246743,0.046774868,-0.023939703,0.017492551,0.038322736,0.0022856174,-0.013722708,-0.018861221,-0.0005672773,0.007329583,0.055227,-0.022330917,0.045454223,-0.023387434,0.027565476,-0.026292853,-0.0102049885,0.061806217,-0.017300459,-0.029366357,-0.05705189,-0.018873226,-0.016472053,-0.016231935,0.033640444,0.020746142,-0.031023167,-0.009004402,-0.015163413,0.011303526,0.0005950409,0.022559028,-0.015307483,-0.012810263,0.02162257,0.06339099,0.0020154854,-0.024900174,-0.0077918093,-0.0025797612,-0.03798657,0.05042465,-0.009202499,-0.007539686,-0.00059579127,0.0054266527,0.019485526,-0.0037968562,-0.04401352,0.059068877,0.035537373,0.07438837,-0.00044234126,0.010451109,-0.02252301,-0.012690204,0.011789763,-0.0016748188,-0.040940013,-0.0043371203,0.022883186,-0.03714616,0.024143804,0.023759615,-0.09110054,-0.07304371,0.009574681,-0.0062070345,-0.039691404,-0.018465027,-0.008764285,0.016904265,-0.007551692,0.025020232,-0.036137667,0.0005590233,0.034432832,-0.0445898,0.049896393,0.01775668,-0.01546356,0.020121837,0.049055982,-0.061806217,-0.034696963,-0.025980702,0.031167237,-0.023375427,-0.026172794,0.0045742365,-0.010253012,-0.0068253367,-0.0787585,0.01153764,-0.0050304593,-0.013422562,-0.0073235803,0.0050934902,0.015235448,-0.08898751,0.018332962,0.01180177,-0.047255103,0.003499711,0.01194584,-0.023711592,-0.0039289207,-0.02871804,-0.00093795854,-0.024527991,-0.045670327,0.011753746,0.05124105,0.0049404153,0.053354084,0.013566633,-0.03008671,-0.0008779292,-0.05758015,0.034168705,-0.025620526,-0.038058605,-0.007983903,-0.01706034,0.040003557,0.041756414,-0.048815865,-0.020734137,-0.040916003,0.04194851,0.004943417,0.039331228,-0.09138868,0.053786296,0.004547223,-0.016135888,-0.005843857,0.013734714,0.0011142947,-0.025764596,-0.03563342,-0.017876739,0.03628174,-0.07702966,-0.019689625,0.0064291432,-0.049055982,-0.046198584,0.011339543,-0.009106452,-0.040531814,0.045670327,0.022739116,-0.031119213,-0.05176931,0.04946418,0.03813064,0.0458144,-0.011237494,-0.04682289,0.0072995685,-0.03212771,0.029462403,0.017300459,0.011435591,-0.08879541,-0.03270399,0.00364078,0.03659389,-0.009274534,0.01830895,-0.062046334,-0.0134345675,-0.017360488,0.01435902,0.01354262,0.050856862,-0.03107119,0.034024633,-0.019485526,0.03188759,-0.020626083,0.0059399037,-0.060317487,0.027685534,0.010649206,0.0131104095,-0.0016237939,0.025836632,-0.007551692,-0.017780693,0.010823291,0.052921873,-0.032103695,0.035705455,0.031551424,-0.03577749,0.043317176,-0.03176753,-0.011669705,0.024011739,0.0013949319,-0.037050113,0.02996665,0.012203966,-0.021226376,0.0066572544,0.008512162,-0.04142025,-0.01603984,-0.046318643,0.014118902,-0.016616123,0.021982746,-0.019221397,-0.07530081,-0.027973676,0.013674685,0.0036918048,-0.00043296168,0.020145848,0.012486104,-0.01932945,-0.0057628173,-0.022354929,0.0018383987,-0.0045502246,-0.015247454,0.0062910756,0.005765819,-0.0006288074,0.042164613,0.08514562,-0.0012958836,0.0042440747,0.00928654,0.008224021,-0.0066092312,0.00025625026,-0.011957846,0.019929742,0.027013207,0.034865044,-0.036401797,-0.024395926,0.05921295,-0.008704255,-0.0057177953,0.015799724,0.032391835,-0.022919204,0.011075415,-0.019197386,-0.05412246,0.06295878,-0.035753477,-0.026172794,-0.011303526,0.027373383,-0.0013198953,0.036425807,-0.01842901,-0.055755258,-0.030831072,-0.015715683,0.009238517,-0.029246299,0.031263284,0.027421406,0.0128222685,0.033352304,0.00621904,-0.0062010316,-0.006699275,0.013782738,-0.031959623,0.028549958,0.031935614,-0.0014234459,-0.022474987,0.05786829,0.0284299,0.015319489,-0.013386545,-0.012125928,-0.030494908,0.013386545,0.02595669,0.06444751,-0.0010857808,0.057292007,-0.020614078,0.01752857,0.012870292,-0.052681755,0.012221975,-0.01935346,0.04106007,0.042356707,0.03853884,-0.011861799,0.043389212,0.002237594,0.01712037,0.0010325047,-0.045094047,0.019245408,-0.008668237,-0.027589487,-0.044805903,0.02677309,0.046630796,0.021202365,-0.06439948,-0.008596202,-0.00093345635,0.033232246,0.008830317,-0.031407353,0.02554849,0.0051024943,0.046750855,0.02243897,-0.028694028,-0.0167722,-0.027397394,-0.0077677974,0.011321534,-0.034432832,0.018332962,-0.04374939,0.030662991,-0.016892258,0.01339855,-0.0064771664,-0.020734137,0.048119523,-0.04115612,0.052249543,-0.039283205,-0.04211659,0.016075859,-0.047351148,0.009484637,0.0075636976,-0.014202943,-0.010703232,0.023783628,-0.037050113,0.01235404,0.008133977,-0.047807373,-0.020734137,0.021382453,-0.074484415,-0.0353933,-0.0058678687,-0.034865044,-0.020890214,-0.00617702,0.037650406,-0.010949353,0.00029151753,0.0011082918,0.020998266,-0.008097959,0.010126951,0.013026368,0.017156387,0.017852727,-0.015907777,0.0017648628,0.023615545,-0.015451554,0.0025842634,-0.021094313,0.021046288,-0.011807772,0.04682289,-0.008638223,0.011717728,0.0062910756,0.027541464,0.01395082,0.022811152,-0.03745831,-0.050088488,0.027565476,0.024011739,0.0044151586,0.014070879,-0.03688203,0.033088177,-0.00004708552,0.023567522,-0.015907777,0.028141757,-0.04077193,-0.031983636,-0.013854774,-0.0050304593,0.012618168,0.01163969,0.037770465,-0.0103130415,0.00922651,-0.0023366422,-0.06118191,0.05124105,0.016183913,-0.027013207,-0.037098136,-0.0742443,0.015379518,0.06540798,0.0060659656,0.029438391,-0.0046192585,0.020397972,-0.019017298,0.00090269133,-0.03039886,-0.021898706,0.0005387634,-0.0027028213,0.037362266,-0.03383254,0.0062970784,0.041300192,-0.036930054,0.06286273,-0.010829294,-0.03296812,-0.005324603,-0.008602206,0.015307483,-0.013902796,0.042740896,-0.036089644,0.10152163,-0.0129303215,0.021838676,-0.0055407085,-0.00095446664,0.00025456195,0.0535942,-0.0425488,0.013926809,-0.02078216,0.007599715,0.0029009182,0.020842189,-0.03671395,-0.0331362,0.020445995,0.052537683,-0.011867802,-0.018176885,0.0002645043,0.03455289,0.022763127,0.019893726,0.0030524924,0.036089644,0.0032986125,0.0214785,0.041636355,0.064303435,-0.015031349,-0.0043821423,-0.05080884,-0.022078793,0.01519943,-0.0015907777,0.017504558,-0.012378051,0.013026368,0.0104331,0.005954911,-0.041372225,0.001842901,0.024431944,-0.022162834,-0.020962248,-0.004211059,-0.007107475,0.033472363,0.031143226,-0.03690604,-0.015271466,-0.041036062,-0.028477922,0.0041570324,0.009232514,0.0007983903,-0.015499577,-0.04571835,0.019641602,-0.011075415,0.04874383,-0.029582461,0.006513184,-0.04823958,0.029102227,-0.029006181,0.013098404,0.010913336,-0.0018383987,0.0036828003,-0.08442527,-0.0037938547,-0.028549958,0.041252166,-0.016952287,-0.003634777,0.028525945,0.004051981,-0.026292853,-0.0018398995,0.03092712,0.026364889,0.007173507,0.013278492,0.056139447,-0.010547156,-0.011591667,0.013422562,-0.0050454666,0.023915691,0.017768687,0.008668237,0.019605584,-0.006951398,-0.020205878,-0.00574781,0.0033796523,0.03424074,0.0433652,0.006981413,-0.052441638,-0.016988305,-0.016784206,0.0128582865,-0.018356975,-0.030422874,-0.005651763,-0.0102229975,0.0059188935,-0.018380987,0.030158743,-0.002642792,-0.033352304,-0.016604118,0.014599137,0.002681811,0.020049801,0.016075859,0.000991985,-0.02470808,0.00041983023,-0.0053846324,-0.007665748,-0.0073175775,-0.05676375,0.0061890255,0.05287385,-0.038274713,-0.011063409,0.030759037,0.019221397,-0.008368091,0.0026863134,-0.025644537,0.014623149,0.04014763,0.009034417,-0.033640444,-0.022919204,-0.022222864,-0.0046522743,-0.024756102,0.020590065,-0.011759749,0.027229311,-0.026340878,-0.034793008,0.0055407085,0.05013651,0.023783628,0.013914803,-0.019005291,-0.025572501,0.01204789,0.013470585,-0.016724177,-0.008266041,-0.01830895,0.0033496376,-0.029486416,0.020397972,0.006507181,-0.038754947,0.04555027,-0.013494597,-0.017744675,0.045262128,-0.01024701,0.06286273,-0.046222597,-0.047038995,-0.011699719,0.023207346,0.020301925,-0.028814087,-0.017960781,-0.015319489,-0.019845702,-0.035441328,0.029486416,-0.0028919138,-0.006083974,-0.0003031482,-0.011693717,-0.009028413,0.018789185,0.0010077427,0.043485258,-0.019257415,-0.0016958291,-0.0020650094,0.0010152464,0.038875006,-0.022895193,-0.010126951,0.03786651,-0.028790075,0.04228467,0.0039079105,-0.025212325,0.0505207,-0.035561386,-0.013554626,-0.00938859,-0.01650807,0.044997998,0.029246299,0.0069574015,0.039019074,-0.04420561,0.008980391,-0.04350927,0.046054516,0.024407933,0.046966963,0.036521856,0.013962826,0.00082465314,0.020590065,-0.005573725,-0.014659166,0.02526035,-0.0025212325,0.021442482,0.01149562,-0.009514651,-0.007041442,0.039163146,-0.0057117925,0.08159189,-0.035537373,0.033616435,-0.00883632,0.0014497087,0.022426965,0.00062317966,-0.012245987,0.040123615,0.010072924,0.030446885,0.013998844,-0.019941749,-0.03296812,-0.025188314,0.013134421,0.008157988,-0.021286406,-0.0023996732,-0.013866779,-0.011339543,0.051721286,0.0131824445,-0.008410111,0.0047183065,0.00421406,-0.056043398,-0.0052495664,-0.00883632,0.016219929,-0.024924185,0.0069333897,0.008614211,-0.017108364,0.029246299,0.028958157,-0.012125928,0.0045112055,0.009484637,0.016820222,0.0779421,-0.0012861288,-0.020301925,-0.013794743,-0.009328561,-0.0037098136,0.025428431,0.011915825,-0.029030193,0.00824203,0.008686246,0.0055527147,-0.020962248,0.0032535905,0.022426965,-0.016075859,0.008013918,0.0022571033,-0.0026112767,-0.02194673,-0.020337943,-0.011381564,-0.023147317,0.031959623,-0.03229579,0.0074736536,-0.043941483,0.009172484,-0.009682734,0.006237049,0.03371248,-0.013470585,-0.012942327,0.034144692,0.029510427,0.005042465,0.022751123,0.038995065,-0.050472673,-0.008464138,-0.017204411,-0.027733559,-0.011159455,0.0060929786,-0.012053893,-0.02845391,0.0027193294,-0.025788607,0.019293431,-0.041108098,-0.035753477,-0.012083908,-0.01904131,0.019653609,0.017168393,-0.028141757,-0.009568678,-0.037530348,0.016700163,0.004187047,-0.00061154895,-0.0045052026,-0.01008493,-0.034793008,-0.024371915,0.0110454,-0.034576904,-0.032679975,-0.021658588,-0.020530036,0.0035717462,-0.087162614,0.023627551,0.04598248,-0.013782738,0.00013928684,-0.017600605,0.005453666,0.0056757745,-0.012143937,-0.050856862,0.010126951,-0.005123505,0.039955534,-0.0004933662,0.023399439,-0.022559028,0.0026968184,0.035729468,0.0065371958,-0.021286406,0.013854774,0.0102229975,-0.005132509,0.030735025,0.01249811,0.009160479,-0.025164302,-0.019833697,0.017072346,-0.02360354,0.030158743,-0.020770155,-0.030326826,-0.0030299814,0.004394148,0.017648628,0.007533683,0.015079372,0.012738228,-0.05618747,0.017660635,0.006056961,-0.00036993084,0.011909822,-0.033856552,0.03851483,-0.012894304,0.035153184,0.008644226,0.0157517,0.006147005,-0.0132544795,0.012870292,-0.009370581,0.0025122282,0.0284299,-0.0033316289,0.036257725,0.008662235,-0.017864734,0.04406154,0.0018308951,0.025380408,-0.027253324,0.012510116,-0.020566054,0.015979812,0.016952287,0.00027332111,0.015691672,-0.014118902,0.05589933,0.030759037,-0.010865312,-0.031287294,0.01546356,-0.024491973,-0.014491084,0.009622704,0.04312508,0.01198786,0.0031155231,0.01603984,0.019473521,0.000668952,-0.0003622396,0.015991818,-0.018681133,-0.009568678,0.028141757,0.0073836097,-0.02203077,0.0218867,0.02790164,-0.0015487572,0.006333096,-0.054218505,0.001842901,0.018681133,-0.039523322,0.008314065,0.014515096,0.02708524,-0.013782738,-0.040843967,0.012894304,-0.021370448,0.016315976,0.007881853,0.024059761,0.0048443684,0.03690604,-0.025476456,0.0390671,-0.008206012,-0.030855084,0.011027391,0.0020349948,0.034336787,-0.033952598,0.0049824356,0.004610254,0.011351549,0.022354929,0.006165014,0.011141446,0.033568412,-0.02886211,-0.010523144,0.017480547,-0.05330606,0.034865044,-0.008914358,0.052249543,-0.009202499,-0.004298101,-0.0033496376,0.011777758,-0.031023167,-0.012041887,-0.0015967806,0.006165014,-0.039571345,0.017360488,0.027973676,0.0062070345,0.004394148,-0.0017198408,-0.0366179,-0.002135544,-0.01249811,-0.044421718,-0.0044901953,-0.023159321,0.013938814,0.03296812,-0.034072656,0.038154654,-0.019197386,0.027421406,0.00963471,0.02830984,0.015991818,0.028405886,-0.039523322,-0.03135933,-0.021406464,0.021154342,-0.019305438,-0.00994086,-0.013122415,0.01724043,0.0072035217,-0.012798257,-0.056715727,0.0390671,0.024828138,-0.01456312,0.0017423518,0.009220508,-0.028477922,-0.0038628886,-0.023771621,-0.012894304,0.015307483,-0.005168527,0.026893148,-0.008596202,0.031095201,-0.02441994,-0.017600605,0.023627551,0.0035027124,0.0019374471,-0.020698119,-0.011861799,0.0062310463,-0.0021325424,-0.005858864,-0.038202677,-0.0031815553,0.018561075,-0.015763706,-0.0005725299,0.020710126,0.013374538,-0.013158433,0.0159558,-0.012318022,-0.010919338,-0.00621904,-0.011705723,0.0006839594,0.005945907,-0.0044721863,-0.0037548356,-0.072035216,0.0037908533,-0.0018849215,-0.02278714,-0.022835163,-0.017840723,0.004817355,0.07227533,-0.03219974,0.012618168,-0.053642225,0.0011458101,-0.044397704,-0.017660635,0.021298412,-0.020277914,-0.014395038,-0.01609987,0.026196808,-0.017348481,-0.0006273067,0.012522122,0.024011739,0.029438391,0.0052885856,0.01706034,0.0076717506,-0.015943795,0.004130019,0.0011893314,0.03304015,0.038586862,0.005681778,0.0129303215,-0.018092845,0.012582151,-0.0061109876,0.01511539,0.0040699895,-0.0018924251,0.00824203,0.0029324335,0.024924185,-0.026220819,0.004039975,0.038850993,0.0043791407,-0.029438391,-0.00783383,0.010967362,-0.008091956,0.007971898,-0.0077617946,-0.008560185,0.04975232,0.01587176,0.0104391035,0.0064831693,0.0072215307,-0.023711592,-0.013278492,0.009250523,0.014551113,0.020482013,-0.009928854,-0.019401485,-0.029054204,-0.022018764,-0.0013349026,-0.019149361,0.014142914,-0.027253324,-0.008200008,-0.0057838275,0.015511584,0.028549958,0.0067593046,-0.0378425,0.014539108,0.01665214,-0.024527991,0.012798257,0.014082884,-0.00652519,-0.013314509,-0.003808862,-0.01761261,0.0010482625,0.016219929,0.02078216,0.039307218,0.005408644,0.007461648,0.029894615,-0.015031349,-0.04531015,0.025500467,0.004298101,0.009268532,0.023159321,-0.0016027836,0.009028413,0.010985371,-0.009928854,0.0037008093,0.03683401,0.03270399,0.003712815,0.011159455,-0.036930054,0.024780115,0.011027391,0.004051981,-0.025020232,0.048983946,-0.026749076,-0.02333941,-0.0046012495,-0.00020503774,0.03299213,-0.040579837,0.039115123,-0.0017558584,0.02078216,-0.030278802,0.009580684,-0.026268842,0.013122415,-0.005126506,-0.02215083,-0.0131104095,0.0066272398,-0.032391835,-0.011279514,0.065263905,-0.004838365,0.014587131,0.030975142,0.019461514,0.005555716,0.005105496,0.035921562,0.006795322,0.015631642,-0.01851305,0.0029999665,0.013446574,-0.012173952,0.021346435,-0.013206456,-0.018801192,-0.025308372,0.024155809,-0.037434302,-0.0013221464,0.0033316289,0.007845836,0.009220508,-0.0008779292,-0.01525946,0.0023921696,-0.011747743,0.022535017,0.018621104,0.0048443684,0.034576904,-0.004988439,0.008212015,-0.019425496,0.0038238694,0.003520721,-0.035369292,0.025428431,-0.0005575226,-0.008338076,-0.016676152,0.020518031,-0.0075937123,-0.0038178666,-0.007359598,0.0000396053,-0.048407666,-0.03203166,-0.03532127,-0.0032445863,0.012053893,0.017660635,-0.03560941,0.0015487572,-0.050904885,0.010024901,0.04708702,-0.007257548,0.020073814,-0.026580995,-0.017420517,-0.007893859,-0.004433167,0.0014857263,0.040940013,-0.031287294,-0.0068313396,0.0066092312,0.022330917,0.005561719,-0.0015637645,-0.0100068925,0.020590065,-0.028766062,0.013338521,0.035753477,-0.03135933,0.003814865,0.038778957,-0.0068313396,-0.026316866,-0.008115968,0.039835475,-0.048551735,0.025932677,0.016279958,0.0038298722,0.0031755525,-0.004907399,0.004039975,-0.0131104095,-0.018945262,0.009724754,0.013626662,0.012690204,0.03863489,-0.012288007,-0.0272053,-0.0029879608,0.036257725,0.056571655,0.02223487,0.020734137,-0.022330917,0.020554049,-0.014899284,0.0014309495,-0.009928854,0.015655654,-0.018260928,-0.04557428,0.006357108,-0.022186847,0.010325048,-0.005681778,-0.004478189,-0.031599447,-0.02321935,-0.023327405,0.012257992,0.015091378,0.0065912222,0.011789763,-0.00068470975,-0.02092623,0.011159455,0.009616701,0.008272044,-0.014599137,-0.009886834,0.012978345,0.011819778,-0.020482013,-0.010523144,0.010012895,0.009496642,-0.011129441,-0.018549068,-0.008524167,-0.026965182,0.015403531,-0.037626393,0.014731201,0.0012546134,-0.014539108,-0.002885911,-0.032607943,0.012666192,-0.02333941,-0.008572191,-0.021490507,-0.02217484,-0.022210859,0.021694606,0.0066812662,0.04341322,-0.04048379,-0.010301036,-0.016820222,0.000008406453,0.0026547979,-0.037050113,-0.023231357,0.017096357,-0.015343501,-0.0070354394,0.0047093024,-0.027637511,-0.01746854,0.002996965,-0.03426475,0.017960781,0.008194006,0.000492991,-0.027949665,-0.005042465,0.00018712273,-0.02374761,-0.032439858,-0.0050124503,-0.046054516,0.01932945,0.02125039,0.017996797,0.013746721,-0.0005076232,-0.0015074869,-0.025428431,-0.013566633,0.0069574015,0.012155943,-0.02139446,-0.024515985,-0.02156254,-0.009010405,-0.0038118635,0.00914247,0.013782738,0.025860643,-0.038610876,-0.0038418781,0.038322736,0.011759749,0.03412068,-0.0019419494,-0.030614967,0.01822491,0.020157855,0.00077287783,-0.0045562275,0.05205745,0.022306906,-0.03532127,0.017792698,-0.005606741,0.027397394,0.04502201,0.0039799456,0.02194673,0.0010092434,-0.016808217,-0.0011503124,-0.04089199,-0.0024221842,-0.010547156,0.017864734,0.009640713,0.02243897,0.00423507,0.017876739,0.020073814,-0.0036047623,-0.019245408,-0.0023471476,-0.025716573,-0.018969273,0.030302815,-0.015511584,-0.0014204445,-0.028477922,0.04060385,-0.0011743241,-0.00967673,-0.013566633,0.013758726,0.00009614075,-0.010253012,-0.023495486,0.0036197696,-0.0064051314,0.041348215,-0.016291965,-0.003832874,-0.026556984,0.019485526,-0.013266486,-0.0075036683,-0.0013904298,0.014178932,0.026989194,-0.015691672,0.00967673,-0.0001199649,-0.0003279103,0.0029129242,-0.026028724,0.017204411,0.007947885,0.016219929,0.01525946,0.039571345,-0.026677042,-0.008770288,0.014070879,-0.014719196,0.0062070345,-0.009034417,0.03841878,-0.015859753,-0.02374761,0.039403263,0.019221397,-0.001628296,-0.012318022,0.012342034,-0.0012005869,-0.011591667,-0.0034576904,-0.0044541773,0.011441593,-0.027661523,0.002671306,-0.035657432,0.025788607,0.02010983,-0.0034696963,-0.012402063,0.017336475,-0.022679087,0.025860643,-0.0032866066,0.056139447,-0.003985949,-0.0050574723,0.023111299,-0.0038718928,-0.008722264,-0.01775668,0.021598559,0.021034284,0.020241896,0.013722708,0.0042620837,0.03897105,0.0069333897,0.041588333,0.0056217485,0.005798835,0.013770732,-0.0042740894,0.019245408,-0.00550169,0.009814798,0.0065852194,-0.019857708,0.046006493,-0.012119926,-0.0007214777,-0.007911867,-0.011567655,0.0078098183,-0.017576592,-0.021358442,0.008001912,-0.029342344,-0.03023078,0.00065544544,0.006801325,-0.0061830226,-0.011735737,0.0019974764,-0.011303526,0.010607186,-0.0058858776,-0.0041390234,-0.022390947,-0.009436613,0.018729156,-0.0382507,-0.008091956,0.016291965,0.009520655,-0.03371248,0.012510116,-0.015703676,-0.0076717506,0.008548179,0.03258393,0.018969273,-0.008554182,-0.015847748,0.0065852194,0.01889724,-0.000022288239,0.053402107,-0.007851838,-0.020650096,0.021910712,0.047063008,0.0032926097,-0.015883764,0.0057598157,-0.009406598,-0.011657699,-0.017372493,-0.006249055,-0.024491973,0.007713771,-0.020662101,0.0072095245,0.011525635,-0.003172551,0.023879673,-0.0003823119,-0.015067366,-0.03371248,-0.010253012,-0.004091]},{"id":"interface-GatewayInviteDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayInviteDeleteDispatchData\nDescription: INVITE_DELETE — code, channel_id, guild_id?\nProperties: channel_id: string, code: string, guild_id: string","meta":{"url":"/docs/typedefs/GatewayInviteDeleteDispatchData"},"embedding":[0.0139226,0.028380686,-0.009755133,0.005337385,-0.0010207676,0.015529054,-0.05508507,0.028334122,0.009353519,-0.0006355242,0.02435291,-0.02819443,0.0042896974,0.008608498,0.05960177,-0.010022876,-0.035318702,0.056481987,-0.018637193,0.06081243,-0.024283065,0.04749516,0.038345356,0.034713373,-0.04316472,-0.0026133978,0.020162161,-0.014493008,0.03888084,-0.021826819,0.04870582,-0.032804254,0.04621465,-0.018090067,-0.025982646,0.023677733,-0.023840707,-0.011460535,-0.04165139,-0.01944042,-0.031174518,-0.001775248,0.028869607,0.029940575,-0.032920662,0.010540899,-0.039625864,-0.011664252,-0.003908456,-0.0076597584,-0.011815585,-0.018823449,0.015447567,0.07925173,0.0035010218,-0.00078503793,-0.016728075,0.007846014,-0.018253041,0.012677017,-0.03168672,-0.014504649,-0.010104362,0.021826819,0.002366027,0.0042809667,-0.053222515,0.07399001,0.039881963,0.06695886,-0.030382933,-0.014004087,-0.02027857,-0.0018450938,-0.013619935,0.010570001,-0.050568376,-0.00089344446,0.03273441,-0.046750136,0.0018363631,0.024655575,-0.07566631,-0.06346657,0.010302259,0.0022627136,-0.03315348,-0.008707446,0.010756257,0.035295423,-0.032827538,0.0155756185,-0.05494538,-0.015459209,0.0059718178,-0.04400287,0.056109477,-0.012863272,-0.026378438,0.039649144,0.060067408,-0.050940886,-0.04749516,-0.013096091,0.007997347,-0.025400598,-0.014888801,0.035830908,-0.018625552,-0.017298482,-0.0362267,0.02698377,-0.025400598,0.0036174315,-0.008282551,0.016460331,0.024306346,-0.090427056,0.03513245,0.00467967,-0.04439866,0.0035039322,0.015366081,-0.03697172,-0.056481987,-0.0033293176,-0.007374555,-0.039136942,-0.044934146,0.005977638,0.037507206,-0.002157945,0.028846323,0.008986829,-0.0199177,0.009493211,-0.0292654,-0.0002124477,-0.031104673,-0.042047184,0.0017446905,-0.0024067706,0.016239153,0.04819362,-0.06179027,-0.019533549,-0.018055145,0.02329358,0.00803227,0.023421632,-0.079484545,0.04400287,0.017484738,-0.028497096,-0.018811809,0.012083327,0.024422755,-0.029847449,-0.024026962,-0.023701016,0.018369451,-0.07520067,0.0007908584,0.00683907,-0.031151237,-0.022269176,0.012153173,0.013957524,-0.029405091,0.036762185,0.0076713995,-0.020627799,-0.042675797,0.021547437,-0.0041558263,0.030732162,0.0041907495,-0.03839192,-0.015051775,-0.04800736,0.013340552,0.0022728995,0.007211581,-0.08986829,-0.032804254,0.0068565314,0.009138161,-0.017414892,-0.019032987,-0.018206477,-0.000044426673,-0.0064199953,0.016250795,0.008818035,0.035295423,-0.010325541,0.04260595,-0.03382866,0.028334122,-0.056947626,0.025330752,-0.04316472,0.038904123,0.0038415203,-0.009143982,-0.019871136,0.0094873905,-0.028892888,0.00036869137,-0.0038822636,0.045865424,-0.035388548,0.017566225,-0.0050550913,-0.056761373,0.03154703,-0.027053615,0.032385178,0.00031557944,-0.023817426,-0.041441854,0.01451629,-0.002267079,-0.03059247,0.009126521,-0.010936691,-0.0078052706,-0.03180313,-0.024166655,-0.018637193,-0.021815179,-0.0059107025,-0.004219852,-0.07236027,-0.008206884,0.0072756065,0.0017301393,0.019847855,0.017251918,0.010744615,-0.030452779,-0.031849694,-0.016762998,-0.010622385,-0.009178905,-0.016041256,0.03189626,0.006681917,-0.00017606968,0.028450532,0.04174452,0.043653637,0.00983662,-0.022874506,-0.017356686,-0.011349946,0.0046854904,-0.025889518,0.026797514,0.013189219,0.043700203,-0.034480553,-0.018881654,0.03264128,-0.013689781,0.014597776,0.031849694,0.01474911,-0.049637098,0.006728481,0.00062024547,-0.06798327,0.06598102,-0.038810994,0.0048688357,0.001859645,0.024306346,0.00069954956,0.045725733,-0.057972033,-0.06765732,-0.0023543863,0.005709896,0.03001042,-0.030685598,0.06258186,-0.017682634,0.027426125,0.020185443,0.016355563,-0.04377005,0.0076248357,0.0030615751,-0.03874115,0.008224346,0.049637098,0.018101709,-0.011571124,0.034224454,0.03382866,0.026425002,0.0042314925,-0.040487293,-0.049497407,-0.0042169415,0.011885431,0.022653328,0.016425408,0.008468806,-0.056109477,0.010139285,-0.0043624537,-0.040976215,-0.0013052438,-0.008823856,-0.019114474,0.0035563165,0.044584915,0.009807518,0.026238747,0.034922913,0.027402844,-0.0022467072,-0.057459828,-0.00093418785,-0.018823449,-0.015261312,-0.04668029,0.024515884,0.04691311,0.027868483,-0.056668244,-0.007956604,0.022979276,0.052151546,0.02698377,-0.070590846,0.062162783,-0.00025992104,0.03301379,0.04772798,0.043118153,0.015855001,0.0012514043,0.023142248,0.009208008,-0.023375068,0.0062162783,-0.029358527,0.04018463,-0.015598901,0.010657309,-0.007100992,-0.058251414,0.018055145,-0.04402615,0.045423064,-0.0070369667,-0.03969571,0.027193306,-0.023072403,-0.011454714,-0.011850508,-0.00013132469,0.008439704,-0.0067343013,-0.045423064,-0.011955276,-0.0063501494,-0.047914233,0.0065946095,0.0004030686,-0.08432719,-0.01595977,-0.024539165,-0.026238747,-0.029055862,0.011512919,0.03971899,-0.03299051,0.004496325,0.0041674674,0.010244054,0.0029655371,0.02087226,0.019754726,0.0020444454,0.033758815,-0.032292053,-0.0010716969,0.03767018,-0.0029786332,0.00864342,-0.018881654,0.0051249373,-0.01657674,0.035761062,0.007752886,0.0154941315,0.0017563314,0.036669057,0.02472542,-0.005698255,-0.037344232,-0.04977679,0.0225602,0.028986016,-0.01632064,0.025842953,-0.035481676,0.015866643,0.011722457,0.023829065,0.016122743,0.020942105,-0.0679367,-0.013340552,-0.02052303,0.021524154,0.024399474,0.008439704,0.047192495,-0.006903095,0.013084451,0.008684164,-0.04819362,0.042163596,0.04558604,-0.0006380707,-0.062209345,-0.09438499,0.009085777,0.039509453,0.00293789,0.04081324,0.0064199953,0.025377315,-0.024189936,-0.014551213,-0.011640971,-0.059555203,0.0003697827,0.0001978965,0.038019408,0.007997347,0.011565304,0.041302163,-0.030499343,0.04737875,0.004400287,-0.035085883,-0.008457165,-0.028380686,0.031151237,-0.01680956,0.0025784748,-0.039649144,0.07324498,-0.01931237,0.012805067,-0.043607075,0.002745814,0.023375068,0.07147556,-0.02519106,0.00032612905,-0.03417789,0.02160564,-0.0121066095,0.024213219,-0.024026962,-0.013689781,0.053688154,0.029777601,0.0013707243,-0.01857899,0.001583172,0.025889518,0.035761062,0.020895543,0.0145395715,0.03299051,-0.009382622,-0.007869296,0.028823042,0.04174452,0.00012732312,-0.0035970598,-0.051592782,0.007054428,0.012269583,-0.008107936,0.029451655,-0.011099665,0.0021637653,-0.0019716893,0.0146210585,-0.027868483,0.029335245,0.0024678856,-0.020185443,-0.034271017,0.032920662,-0.027332999,0.030289805,0.0050667324,-0.04186093,-0.034247734,-0.036040444,-0.039439607,0.021431027,0.029311962,-0.010797,-0.030685598,-0.036762185,0.015144902,-0.041302163,0.014271829,-0.052291237,0.0199177,-0.03780987,0.021826819,-0.002507174,0.005733178,-0.00042744188,-0.005587666,0.0029073323,-0.07198776,0.007019505,-0.005002707,0.040743396,-0.021163285,-0.01846258,0.06630696,0.018660475,-0.0017868889,0.014795673,0.040464014,0.052337803,-0.025563572,0.020848978,0.026494848,0.012176455,-0.0049328613,-0.002614853,-0.011821405,-0.00025046276,0.028823042,0.012374352,0.02003411,0.004909579,-0.009656185,-0.016751356,-0.011681714,0.027495971,0.019568471,-0.001056418,-0.042512823,-0.0010673314,-0.028706633,0.0037745845,-0.04127888,-0.012083327,-0.030964982,-0.009993773,0.0009909376,-0.0107155135,0.018776884,-0.01666987,-0.01846258,0.0023718476,0.003792046,-0.006967121,0.015203107,0.024818549,0.011774842,-0.03394507,-0.007450221,-0.0074676825,-0.043048307,-0.00864342,-0.06835578,0.024655575,0.03683203,-0.0362267,-0.017845608,0.011489638,-0.009388442,-0.026425002,-0.003058665,-0.011146229,0.0024926227,0.03671562,0.0021332079,-0.020162161,0.015447567,0.01812499,-0.0067343013,-0.012444197,0.019836213,-0.0038298792,0.045423064,-0.032385178,-0.023095684,0.021966511,0.036785465,0.021291334,-0.0106340265,-0.0060533048,0.02374758,-0.0000023532039,0.017251918,-0.0045894524,-0.004211121,-0.02772879,-0.021396104,-0.03743736,0.0053985,-0.0036610852,-0.022641687,0.018020222,0.0074793235,-0.0003550496,0.010389566,0.01080282,0.042745642,-0.04006822,-0.04945084,0.009889004,0.0019265806,0.0019265806,-0.028846323,-0.035574805,-0.011891251,-0.020138878,-0.037367515,0.020651082,0.00839314,-0.018450938,-0.013142656,-0.00050710974,-0.006984582,0.027193306,0.013235783,0.03969571,-0.027798638,-0.009574698,-0.010465233,-0.0005733178,0.029847449,-0.01007526,-0.02267661,0.019812932,-0.0076131946,0.0328741,-0.0086958045,-0.03697172,0.059694897,-0.028590223,-0.0062104575,-0.0036378033,-0.013154296,0.025959363,0.027821919,0.009947209,0.010389566,-0.026378438,0.024259781,-0.02134954,0.026378438,0.0189515,0.027519254,0.03715798,0.0015424285,-0.0049328613,0.009248751,-0.024376191,-0.025214342,0.015226389,-0.009772595,0.014737468,0.022886148,-0.013165938,-0.013061169,0.028613506,0.0021186566,0.084140934,-0.022641687,0.020232007,0.008975188,0.024189936,0.032105796,0.01632064,-0.0008388774,0.025866237,0.038601458,0.01715879,0.023421632,0.013259065,-0.034643527,-0.022467073,-0.0034631887,0.01584336,-0.004653478,0.028799761,-0.020325134,0.0021448487,0.04165139,0.017182073,-0.0068041473,0.0019105743,0.0130378865,-0.07142899,-0.0083407555,-0.003131421,0.015203107,-0.046959676,-0.0022146946,0.007910039,-0.011018178,0.0057681007,0.024748703,0.0021404834,-0.012257942,0.009638723,0.032455023,0.029102426,0.008235986,-0.030941699,-0.023538042,-0.046843264,0.0147025455,0.0059601767,0.014458085,-0.023316864,0.01594813,0.019498626,0.0052733594,-0.026355157,-0.0032798434,0.026005927,0.008102115,0.017251918,-0.029568065,-0.033316456,-0.0060649454,-0.0132823475,0.0033438688,0.008428062,0.02315389,-0.008660882,0.0065596867,-0.051406525,0.0038531611,-0.027263151,-0.013491885,0.010110183,-0.012316147,-0.02507465,0.041115906,0.022385586,-0.012420915,0.015540696,0.04113919,-0.0551782,-0.015401004,-0.052803442,-0.018392732,0.015133262,0.014050651,-0.016250795,-0.014213624,-0.009295315,0.00032812986,0.016402127,-0.04977679,-0.015249671,-0.012921477,-0.017612789,0.017182073,0.009039214,-0.029824166,0.010086901,-0.03997509,0.012560607,0.00012441287,0.001607909,-0.017391609,-0.012502402,-0.024515884,-0.03408476,0.019568471,-0.029288681,-0.02209456,-0.041721236,-0.021640563,0.0072697857,-0.07943798,0.018567348,0.044352096,0.00864342,-0.014690905,0.005101655,0.023782503,0.045772295,-0.01079118,-0.058344543,0.027915047,-0.0074909646,0.031384055,-0.006332688,0.038950685,-0.03839192,0.026960487,0.022059638,0.0068448903,0.0041092625,0.029055862,0.015261312,-0.0020386248,0.028124584,0.0016632036,0.010005414,-0.012420915,-0.0065946095,0.029335245,-0.0029189733,0.026052492,-0.025726544,-0.020336775,0.0035359447,-0.0058379467,0.00007653028,-0.003250741,-0.0062803035,-0.005349026,-0.046726856,0.012432557,-0.008916983,-0.02221097,0.0071300943,-0.030336369,0.0020459006,-0.010942512,0.015680388,0.0096794665,0.00051147514,-0.021500872,-0.00007530252,0.0047611566,-0.0295215,0.013189219,-0.0047436953,0.0061580734,0.024934959,-0.02207128,-0.018776884,0.0420239,0.017670993,0.012094968,-0.0345504,0.015168184,-0.03634311,-0.015482491,0.0045283376,0.011699175,0.0071359146,0.001319795,0.04137201,0.026611257,0.002098285,-0.0023383799,0.027309716,-0.023130609,0.011483817,0.032757692,0.039765555,-0.0073861955,0.020301852,-0.010575822,0.0064199953,-0.010226592,0.01403901,-0.018043503,0.004892118,-0.015424286,-0.005983459,-0.009970491,-0.009586339,0.0023354697,0.043025028,0.015424286,0.014283471,-0.04619137,-0.025330752,0.00007193756,-0.02914899,0.022536919,0.02400368,-0.011117127,-0.030173395,0.0020924644,0.00026155805,-0.011384869,0.036995005,0.004732054,0.020115597,0.008765651,0.047681414,-0.04437538,0.011658432,-0.031477183,-0.033805378,0.014446444,0.00540141,0.02998714,-0.026657822,-0.014027369,-0.011117127,0.023060761,0.0017737929,0.022874506,0.053455334,0.001957138,-0.009632903,-0.013468603,0.036901876,-0.0629078,0.0059543564,-0.0024809819,0.03394507,-0.005913613,0.022606764,0.0018392733,0.020709286,-0.046726856,-0.016960893,-0.0086376,0.015272953,-0.06630696,-0.000047700694,0.020604517,-0.01608782,0.015063415,0.0030761263,-0.020127237,-0.006670276,-0.023188813,-0.014947006,-0.017368328,-0.031221082,0.017822325,0.0501493,-0.026331875,0.036529366,0.0061347913,0.013224143,0.029800884,0.006524764,0.028986016,0.028706633,-0.056249168,-0.012164814,0.004609824,0.013375475,-0.016623305,-0.005899062,-0.013771268,0.005305372,0.0007632111,0.0035999701,-0.03946289,0.018881654,0.008300012,-0.02015052,0.0295215,0.016239153,-0.025097933,-0.0011386324,-0.02807802,-0.015051775,0.022304099,0.03129093,0.022129485,-0.0153311575,0.036738902,-0.004548709,-0.011419792,0.039136942,0.031127954,0.00600092,0.0025755647,-0.026564695,0.004604004,0.004548709,-0.0073338114,-0.02470214,0.011297561,0.019009704,-0.006588789,0.012281223,0.036552645,-0.012060045,0.0013547179,0.02123313,-0.023840707,0.008486267,0.009091598,0.010267336,0.003157613,0.011192793,0.016949253,0.03333974,-0.05485225,-0.007380375,0.0052850004,-0.015342799,-0.009685287,-0.012898196,0.02761238,0.07985706,-0.013817832,0.006105689,-0.054665998,0.011413971,-0.04870582,-0.015214748,0.03431758,-0.026657822,-0.023479838,-0.01789217,-0.004414838,-0.02049975,0.0066120713,0.024283065,0.015249671,0.047215775,0.008724907,0.01572695,0.004295518,-0.023666093,0.006588789,-0.023957117,0.017810684,0.030662315,-0.0072174016,0.0054567046,-0.02998714,-0.00021845008,-0.035621367,0.020534672,0.0069496594,-0.00600092,0.015994694,-0.010616565,0.032757692,-0.0028476724,0.023002557,-0.013340552,-0.0012659555,-0.03189626,-0.0027414486,-0.0004543616,-0.013445321,-0.00959798,-0.013887677,-0.024422755,0.07371062,0.030545905,0.00198042,-0.005773921,-0.0026003018,-0.018811809,-0.0072697857,0.012770144,0.003707649,-0.009341879,0.0010949788,-0.01139651,0.0022045088,0.005375218,-0.032757692,-0.02938181,0.008899522,-0.0072697857,0.005855408,-0.020232007,0.019894417,0.016134385,-0.00058168476,-0.020907182,0.0045865425,-0.010465233,-0.0155756185,-0.005977638,0.016111102,-0.00017816141,-0.016413769,-0.009865723,-0.023084044,-0.0018669206,0.011885431,0.02254856,0.032431744,0.025423879,0.030802008,0.039532736,0.013165938,-0.0154126445,0.035248857,0.014201984,0.016029617,0.020930465,-0.012560607,-0.011105485,0.0077063222,-0.018439297,-0.0039288276,0.0017243187,0.020115597,0.0036610852,-0.0111520495,-0.045818858,0.032920662,0.008544472,0.027076896,-0.028427249,0.038927406,-0.020441543,0.0012426736,0.0021273873,0.022129485,0.005695345,-0.047192495,0.046377625,-0.0070718895,0.0032332796,-0.039998375,-0.0033758814,-0.020674363,0.0016122744,0.004449761,-0.02484183,-0.0025886607,0.0006548046,-0.009370981,-0.009824979,0.06276811,-0.009097418,0.007281427,0.02998714,0.023933835,0.028357403,-0.006466559,0.045818858,0.0027661857,0.0061638937,-0.022571841,0.018381093,0.011466356,0.013724704,0.016006334,0.013107733,-0.0132823475,-0.006646994,0.015214748,-0.024283065,-0.01200184,0.018264683,-0.011285921,-0.012060045,-0.010063618,-0.027053615,0.04414256,0.010226592,0.009266213,0.023200454,0.01367814,0.028520377,-0.012374352,0.011530381,-0.040277757,-0.00671684,0.006705199,-0.02232738,0.010261515,-0.0242365,0.0066411737,-0.022129485,0.0070835305,-0.018567348,-0.010051978,-0.014504649,-0.025237624,-0.05876362,-0.009446647,-0.026308592,0.003419535,0.015179825,0.009632903,-0.049357712,-0.0062104575,-0.025260905,0.012036763,0.04379333,-0.006286124,0.012828349,-0.03212908,0.0011349946,-0.017601147,0.0017679724,0.031872977,0.039393045,-0.0067343013,-0.016157666,0.018893294,0.028124584,0.0049852454,-0.0015336978,-0.0007184661,0.00016288264,-0.032315332,0.000031376054,0.007846014,-0.027915047,-0.011542022,0.034410708,-0.0077878092,-0.02015052,0.00072574173,0.034946192,-0.05783234,0.036063727,-0.008771471,-0.010936691,0.00043289858,-0.025703263,0.010884307,-0.01859063,-0.035807624,-0.009219648,0.011029819,0.015983053,0.012397633,0.0122463005,-0.027519254,-0.013771268,0.005817575,0.03902053,0.008358217,0.021943228,-0.0010600558,0.00396084,-0.0025013534,0.004883387,-0.003084857,0.010273157,-0.028171148,-0.05457287,-0.008608498,-0.021640563,-0.0043886458,-0.017822325,-0.0020968297,-0.055364456,-0.031058108,-0.010581642,0.004688401,0.014388239,0.0055760248,0.00068136054,-0.0033496893,-0.01749638,0.012211378,0.013899319,0.035225578,-0.010628206,0.0030150113,0.015447567,0.019289088,-0.009918107,-0.010599104,-0.0050667324,0.0053228335,-0.009632903,-0.0063035856,0.0068448903,-0.003381702,-0.001523512,-0.03466681,0.0046592983,0.016483614,0.022734815,0.004368274,-0.026168901,0.020651082,-0.022455432,-0.004860105,-0.013247424,-0.047355466,-0.018101709,0.018823449,-0.017810684,0.05005617,-0.010430309,-0.0048688357,-0.0239804,-0.0035825085,-0.0064374567,-0.03645952,-0.022955993,-0.0029859089,0.008981009,-0.0083407555,-0.013969164,-0.0031168698,-0.007031146,-0.022362303,-0.009906466,0.016565101,0.00923711,-0.009691108,-0.027170025,-0.012223019,-0.018881654,-0.030848572,-0.038019408,-0.008422242,-0.034247734,0.012164814,0.01594813,0.009435006,0.012653735,-0.013259065,0.0038473406,-0.010826102,-0.0050987448,0.02458573,0.018683758,-0.016250795,-0.0099239275,-0.014213624,-0.01704238,0.014818955,0.03203595,0.031849694,0.037972845,-0.04081324,0.006885634,0.007607374,0.0058263056,0.0138294725,-0.016704792,-0.030173395,0.023421632,0.0109890755,-0.013713063,-0.0038065973,0.038950685,0.03757705,0.0057681007,-0.006105689,-0.006815788,0.032338616,0.00899265,-0.026238747,0.0434441,0.022117844,0.007968244,-0.015459209,-0.043234564,-0.011920353,-0.021186566,0.020848978,0.000037583053,0.031710003,0.004929951,0.022909429,0.010377925,-0.019952623,-0.037833154,-0.022827942,-0.02015052,0.008724907,0.00016006334,-0.026168901,0.0048164516,0.002700705,0.027984893,-0.0048659258,0.0060183816,-0.00899265,0.024143372,-0.017251918,-0.02123313,-0.027495971,-0.010721333,0.0242365,0.023212094,0.007892578,-0.018870013,-0.0066760965,0.017310122,-0.017705915,-0.0139109595,0.025051368,-0.014411521,0.0109890755,-0.004604004,0.0036028803,-0.009627082,0.011856329,0.0058495877,-0.029195553,0.014190343,0.00090726814,-0.009196366,-0.0049241306,0.020185443,-0.038554892,0.0033991633,-0.0140739335,-0.008812214,0.012746862,0.0130378865,0.028264277,0.0011146229,0.022513637,0.029568065,0.013352193,0.025586853,-0.012874913,0.026331875,-0.019743085,-0.02519106,0.0008570664,0.012269583,0.01500521,-0.019999187,-0.0018814718,-0.028776478,0.023305222,0.016774638,-0.01883509,-0.0069962232,0.039881963,-0.012467479,0.018078428,-0.012909836,0.052151546,-0.02472542,-0.0077470657,-0.018846732,-0.0124907615,-0.04030104,-0.0014114677,0.042280003,0.0021914127,0.019452062,0.012455838,0.0031692542,0.019871136,0.010843564,0.045423064,0.011955276,0.0130378865,-0.01056418,-0.005695345,0.022047998,-0.0189515,-0.01775248,0.029311962,-0.0132823475,0.012828349,-0.00008248719,0.008300012,0.015377722,-0.005823395,-0.003489381,-0.034736656,-0.022408867,0.0124907615,-0.0016879407,-0.01749638,-0.0063268673,0.027565818,-0.0078052706,-0.038019408,-0.012129891,-0.006507302,-0.008189423,-0.008381499,0.017903812,0.0047815284,0.0022146946,0.023805784,-0.07291904,0.0017781582,0.010494335,0.0172752,-0.03047606,0.011419792,-0.005785562,0.0051627704,0.011920353,0.068821415,0.0016530178,0.0022015986,-0.039905246,0.007159197,0.014481367,0.0028593133,0.04367692,0.0033787917,-0.0062453807,0.013352193,0.04644747,-0.0019847855,-0.022467073,-0.006373431,0.012176455,0.006070766,-0.021093437,-0.02292107,-0.008905342,-0.017449815,-0.020732569,0.012048405,0.011553663,0.0047087725,0.01127428,0.0026206735,-0.0032740228,-0.014923724,-0.016041256,0.0009894825]},{"id":"interface-GatewayMessageAckDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageAckDispatchData\nDescription: MESSAGE_ACK — read receipt; message_id, channel_id\nProperties: channel_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageAckDispatchData"},"embedding":[0.045629207,-0.003333479,-0.011875349,0.023968395,0.013867273,0.035528082,-0.025231035,0.02294522,-0.017143607,-0.028387636,0.021649925,-0.02170435,-0.0027919589,0.0172198,0.034243673,0.010324261,0.024643254,0.037400275,0.029933281,0.06387218,-0.021965586,0.043125693,0.030782297,0.04641291,-0.0068139033,-0.020289322,-0.015880967,0.0019048451,-0.0022300296,-0.056644652,0.050766844,-0.025840586,0.02682022,0.014455054,0.013214183,0.041471202,-0.0281264,-0.018340938,-0.032393254,-0.05620926,-0.05686235,0.0071186787,0.033547044,-0.0024667745,-0.02936727,-0.00005765558,-0.004903616,0.0037226116,0.018112356,0.007777211,-0.014912216,0.007913271,0.020485248,0.06143398,0.012299857,0.01503195,0.023184687,0.0050995424,0.024120782,-0.008522822,-0.036616568,0.018123241,-0.031478927,-0.010471206,0.011309338,-0.018623943,-0.05107162,0.039163616,0.030499293,0.028953647,0.01696945,0.035484545,-0.03513623,-0.0032572853,-0.030999994,0.015750349,-0.047588475,-0.026689602,0.02557935,-0.030891147,-0.0063404134,0.032327943,-0.10014043,-0.08207162,0.026994377,-0.034744374,0.0044301255,-0.0187981,-0.029018955,0.018155895,-0.003983848,0.041340582,-0.03213202,0.010046697,-0.019843044,-0.06983706,0.0022259476,-0.015587076,-0.02242275,-0.009584093,0.057297744,-0.053379204,-0.049460664,-0.019211724,0.019570924,-0.029127805,0.00829424,0.0014531247,-0.045150273,-0.005553984,-0.046064597,-0.0012878114,0.032088477,0.014792483,-0.012615518,0.007771768,0.010906599,-0.04275561,0.04088342,0.022749294,-0.03254564,0.015423804,0.00044831893,0.021356035,-0.028474715,-0.0402521,0.001706197,-0.020670291,-0.07719521,0.024708563,0.026471905,0.014759828,0.021181878,-0.000554446,-0.00926299,-0.00054254074,-0.009932407,0.0001309581,-0.015369379,-0.015739463,-0.0068574427,-0.009056178,0.049068812,0.04292977,0.014215588,0.023424152,-0.026428366,0.006563552,0.05930055,0.0048355856,-0.033481736,0.041971903,-0.013464534,-0.016871486,-0.021105684,0.013562498,0.017393958,-0.026471905,-0.0042178715,-0.038053364,0.016534057,-0.080068804,-0.034243673,0.026254209,-0.05742836,0.015848313,0.016305475,-0.025709968,-0.023750698,0.03824929,-0.016011585,-0.004212429,-0.02751685,-0.007020715,-0.005638342,0.0013442765,0.002098051,-0.013344801,-0.041841283,-0.015630616,0.03383005,0.017067412,0.01210393,-0.08446628,-0.014553017,-0.008517379,-0.009622189,-0.0015184337,0.0073581445,-0.024599714,-0.04536797,0.04545505,0.0051675728,0.007935041,-0.03957724,-0.0676601,0.012996486,-0.014629211,0.008615343,-0.0441271,0.0010884829,-0.031566005,0.0281264,0.008212604,-0.0060846196,-0.00035783876,-0.0093718385,-0.0036409756,0.0005204309,-0.0108739445,0.05633988,-0.014923101,0.044323027,-0.015314955,-0.037770357,0.028888337,-0.02492626,0.00311034,-0.010536515,-0.020790024,-0.055599708,0.024991568,0.057254203,0.0067431517,-0.014901332,0.02039817,-0.010585497,-0.010144661,-0.03561516,-0.025688197,-0.01145084,-0.007597611,-0.003594715,-0.055294935,-0.027124995,-0.0035620604,0.0068574427,0.009888868,0.01654494,0.006155371,0.00083881215,-0.027320921,0.01751369,0.02010428,-0.01181004,-0.002859989,0.0052274396,0.025601119,0.017067412,0.0058451532,0.032806877,0.041710667,-0.0058124987,-0.024360249,-0.0052927486,-0.00590502,0.02747331,0.0015783003,0.015717695,-0.029759124,0.027146764,-0.018917834,-0.033525273,0.038510527,-0.031566005,-0.009665729,0.038053364,-0.024011934,-0.03143539,0.018036162,-0.015870081,-0.031478927,0.069183975,0.036877804,-0.005997541,-0.0050233486,-0.009584093,-0.010291606,-0.00227629,0.056470495,-0.0044954345,-0.0055839177,0.017350418,0.020507019,-0.018384477,0.063959256,0.0375962,-0.009252105,0.037269656,-0.004672313,-0.003885884,-0.017295994,0.044301257,-0.057733137,-0.0010830405,0.055469092,0.009246662,-0.01656671,0.050026678,0.015369379,0.06552667,-0.00477844,-0.02235744,-0.03703019,0.0051648514,0.0061336015,0.021737004,-0.007124121,0.035571624,-0.034091286,0.0049417126,-0.025035108,-0.052856732,0.015064604,-0.061172742,-0.0044546165,0.0007000306,0.0041416776,0.022749294,-0.018417131,0.011995082,0.026471905,0.013649576,-0.03378651,-0.0027674679,0.0035865514,-0.016403439,-0.041275274,0.032806877,0.048589878,0.016751753,-0.04212429,0.048372183,0.004030108,0.037574433,0.03639887,-0.039707858,0.047675554,-0.024033703,0.039838474,0.06195645,-0.010781423,-0.024991568,0.027799854,-0.018689252,-0.04279915,-0.037291426,-0.011646767,0.010155546,0.01181004,0.010982793,0.014933986,-0.007728229,-0.0676601,-0.011581458,-0.017731387,0.042363755,-0.006106389,-0.03905477,0.024643254,-0.04153651,0.018134126,0.008152737,0.027908703,0.002925298,-0.024099013,-0.048067406,-0.017285109,0.0020939691,-0.0499396,0.03450491,0.002172884,-0.07449577,0.014455054,-0.0056764386,0.018428016,-0.019277032,-0.019026682,0.021290727,-0.002348402,0.042516142,0.04780617,0.024577945,0.028191708,0.028583562,-0.016882371,-0.06879212,0.03766151,-0.03324227,0.032741565,-0.00543153,0.0004027387,-0.016044239,-0.0035103576,-0.014563902,0.000032059223,-0.017720502,-0.019026682,0.040622182,-0.024534406,0.025644658,0.039707858,0.017143607,0.0242514,-0.014977525,-0.011940658,-0.038858842,0.0052192756,0.035528082,-0.0021034933,0.037443813,-0.025709968,0.0058233836,0.025100417,-0.008931003,-0.05342274,0.007445223,0.017034758,-0.002386499,-0.0037090057,-0.00029695177,0.0012156994,-0.03433075,0.022488058,0.023097608,-0.008043889,0.01501018,0.010634478,0.017862005,-0.060389034,-0.07123032,0.0020028087,0.043278083,-0.008882021,0.027886933,-0.001850421,0.040034402,-0.03308988,-0.050679766,-0.035528082,-0.016120432,-0.023119377,-0.013704,0.010090237,-0.039925553,0.0063458555,-0.0027103226,-0.017829351,0.02292345,-0.018689252,-0.061695214,-0.044192407,-0.044932578,0.03389536,-0.06713763,0.019026682,0.0034967514,0.09630897,-0.003083128,-0.0057308627,-0.0187981,-0.042450834,0.03213202,0.060476113,-0.038575836,-0.012506669,-0.025448732,0.02014782,-0.014411515,0.030194517,-0.013704,0.0023225504,0.022727525,0.040513337,-0.023728928,-0.011733846,0.0075431867,-0.004802931,0.013072681,0.0032654488,-0.024077242,0.057863753,-0.010737884,-0.005328124,0.02233567,0.06143398,-0.0054805116,-0.0064655887,0.00061533303,0.0140632,-0.013040026,-0.01875456,0.007940483,-0.008773172,-0.00480021,-0.0038423447,0.020387286,-0.044976115,0.029171344,0.0075921686,-0.023903085,-0.017339533,0.01208216,-0.014846907,0.021018606,0.008212604,-0.056688193,-0.015347609,-0.01719803,-0.026341287,0.026537213,0.00053879904,-0.02991151,-0.031609546,-0.028257018,0.036768954,-0.023772467,-0.006710497,-0.011646767,0.012506669,0.005866923,0.015456458,0.026667831,0.000820444,-0.018515095,0.012234548,-0.0065581095,-0.051507015,0.0055267722,0.012550209,0.05041853,-0.047283698,-0.0052328818,0.030695219,0.03652949,0.010966466,-0.021323381,-0.011940658,0.009295644,0.0015211549,0.015521767,-0.013660461,-0.0012265842,-0.02237921,0.014607442,-0.006307759,0.008822154,0.048241563,-0.0075486293,0.023685388,0.00047791205,-0.009431705,0.020528788,-0.014444169,0.0031538794,-0.0023987442,-0.060345493,-0.041122887,0.039337773,-0.028039321,0.01338834,-0.031740163,-0.031522468,-0.02736446,-0.0281264,0.07088201,0.0037988054,0.021911161,0.014313551,-0.017764041,0.007086024,0.05311797,-0.016827947,0.001376931,0.011222259,0.012800559,-0.009001754,0.003251843,0.029780893,-0.018678367,-0.010590939,-0.053683978,0.025035108,0.034200136,-0.024621485,0.014977525,0.015423804,-0.017535461,-0.020583212,0.020017201,-0.042581454,-0.019320572,-0.0013136629,0.027059685,-0.02039817,-0.005692766,-0.00046192494,-0.021377806,0.0046804766,0.027712775,0.018384477,0.06835673,-0.023750698,-0.013257722,0.0448455,0.046369374,0.00892556,-0.01273525,0.01246313,0.030172747,0.0007027518,0.041384123,-0.009725595,-0.007728229,-0.044540722,0.01875456,-0.021486653,0.004919943,0.018852524,0.008049332,0.005358057,0.037073728,0.0010156906,0.0011408662,-0.023641849,0.052595496,-0.033459965,-0.01692591,0.0074125687,-0.00865344,0.025383422,-0.030586371,0.00086126215,-0.025797047,-0.030782297,-0.016240167,0.02481741,0.006100947,0.0011551526,0.014781598,-0.0002673586,0.009094275,0.020735601,-0.0016817062,0.07506178,-0.040600415,0.030999994,-0.01886341,-0.0110698715,0.024730332,-0.017753158,-0.041231733,0.033525273,-0.012299857,0.021878507,-0.015140798,-0.030738758,0.059648864,0.01343188,-0.0038668357,0.0021143781,0.008223489,0.010607267,0.009883425,-0.019603578,0.0012068555,-0.015380264,-0.0016708213,-0.0046614283,0.025165725,-0.0034613758,0.004049157,0.039381314,-0.00033368805,-0.0043484895,0.00037858798,-0.011140623,0.0038695568,0.00045784315,-0.0023851383,0.021682581,0.03141362,-0.01854775,-0.013420994,0.025818815,-0.009067063,0.082681164,-0.03195786,0.039947324,-0.0117556155,0.031979628,-0.0015878245,0.016849715,0.01372577,0.048285104,0.0249698,0.054032292,0.02041994,0.0043620956,-0.004266853,0.0003813092,-0.013573382,0.008359549,-0.00987254,0.032262634,-0.022988759,0.006906424,0.00061227166,0.022792833,-0.00028181504,-0.028409405,-0.0061989105,-0.0195165,0.02616713,0.0058342684,-0.0012313463,-0.026667831,0.047632013,0.028365865,-0.0058124987,0.017034758,0.013595152,-0.00432672,0.033285808,0.024556175,-0.0007598972,0.020278437,0.019886583,-0.009899752,0.012397821,-0.000921809,0.009790904,-0.0035919938,0.012234548,0.0040083383,0.020724716,0.0027525013,0.022030896,-0.0052247182,0.014052315,0.018711021,-0.02016959,0.0025266411,-0.01970154,-0.0009986832,-0.012865868,-0.030999994,-0.011075314,0.023032298,0.02014782,-0.00075037294,0.004149841,-0.020898873,-0.012952947,0.0037770357,0.018449785,0.013780194,-0.011167835,-0.021715235,0.013257722,-0.011461725,0.016806176,-0.015608845,0.054162912,-0.028191708,-0.0057471897,-0.04589044,-0.025296343,0.031370077,-0.01629459,-0.00797858,0.016305475,0.027560389,0.0195165,0.043626398,-0.025013339,0.03258918,-0.012571978,-0.028975416,0.010329703,-0.010781423,-0.05063623,-0.019777736,-0.027386231,0.0140632,0.012865868,-0.018972257,-0.009273875,-0.014455054,-0.013954352,-0.01795997,0.023119377,-0.013333916,-0.023402384,-0.0046614283,0.009682056,0.0014055036,-0.06961937,0.05124578,0.015554422,-0.010656248,0.0020653964,-0.009154142,0.0057417476,0.054598305,0.015783003,-0.080068804,0.011875349,-0.004174332,0.018591288,-0.050026678,0.02551404,-0.031043533,0.024403788,0.0052927486,0.017132722,0.015086373,0.028627101,-0.0013449567,-0.01825386,0.06639746,-0.016871486,-0.007107794,0.0026123591,0.017502805,0.050941,-0.013225067,0.026145361,-0.023445923,0.013997891,0.02686376,0.016327245,0.0096330745,0.0010585496,0.03121769,-0.013899927,-0.032393254,0.008326895,-0.0042341985,-0.013932582,0.0012469933,-0.006775806,0.009203123,-0.020517904,0.030129207,-0.030934686,-0.007864289,0.00037110466,-0.024099013,-0.003983848,-0.0035348483,0.017535461,0.018678367,-0.003385182,-0.008920118,-0.014313551,-0.027799854,0.029650275,0.018689252,0.025818815,0.0016558546,0.04841572,-0.04081811,-0.007042485,-0.0052981908,0.026646063,0.027734546,0.017949084,0.023881316,0.017110951,0.010427667,-0.006324086,0.05734128,-0.005104985,-0.00018317127,0.020583212,0.051550552,-0.01726334,0.020387286,0.027212074,0.008849367,-0.017992623,0.018493325,0.0047838828,0.009458917,0.0020653964,-0.0010939253,0.012865868,-0.008816712,-0.012212778,0.034221902,0.004949876,0.019320572,-0.011733846,-0.00041158262,-0.012256318,-0.06713763,0.023946624,0.0007469714,0.007232969,-0.027560389,-0.010830405,-0.008033005,0.0027919589,-0.0035593393,0.021356035,0.030238057,-0.0058614807,0.022618676,-0.00015859537,0.007042485,0.004699525,-0.017840236,0.015206107,0.025601119,-0.004209708,-0.03940308,-0.014182933,-0.015402034,0.038793534,0.012191009,0.0103841275,0.022814604,-0.010721557,-0.05050561,-0.0062696617,-0.015391149,-0.016827947,-0.0018354544,-0.02100772,0.014912216,-0.029018955,-0.015358495,0.0104657635,0.0032572853,-0.032349713,-0.04719662,-0.008490167,-0.0005197506,-0.019625347,-0.0006813223,-0.018221205,-0.014879562,-0.016218396,-0.011064429,0.0112004895,-0.013312146,0.011309338,-0.036551256,0.0023837776,0.011189605,-0.021834968,0.06691993,-0.034809686,0.04719662,0.01886341,0.0499396,-0.012604632,0.042951535,-0.004541695,0.039120078,-0.030238057,-0.060084257,-0.034831453,0.011897119,-0.0010483451,0.029454349,-0.0027797134,0.027756315,0.019995432,-0.012005967,-0.037356734,0.024512636,0.04279915,-0.012005967,0.03700842,0.0075921686,-0.015314955,0.024643254,0.01625105,0.01814501,0.027865164,0.005066888,0.028583562,0.0021892113,-0.023228226,-0.006666958,-0.041384123,0.046674147,0.04216783,0.01246313,-0.0034069517,-0.02290168,0.015554422,0.04284269,-0.026101822,-0.0031266673,-0.0022422748,0.0068302304,0.00606285,-0.015902735,0.023859546,0.031108843,-0.0037307753,0.008745961,-0.0064764735,-0.0023810565,0.019919237,0.016523171,-0.04260322,0.00421515,-0.019277032,0.022727525,-0.029802663,0.011439956,-0.019070221,-0.01631636,-0.0046559856,0.003175649,0.004302229,0.08098313,-0.017045643,0.023489462,0.008969099,-0.046108138,-0.03905477,-0.0104331095,0.024643254,-0.034113057,-0.03463553,0.0059540016,0.023424152,-0.016076893,0.013072681,0.016055124,0.037574433,0.032828644,-0.0036328118,0.013116219,-0.016882371,-0.008675209,0.031653084,-0.027930472,0.023772467,0.055686787,-0.03770505,-0.0008843924,-0.020898873,0.014520363,0.0011769222,-0.0038423447,-0.0064111645,-0.014531247,-0.015587076,-0.006302316,0.010607267,0.024577945,0.027799854,0.0040165023,0.0036953995,-0.015097259,0.012191009,-0.026602523,0.013812848,0.0103188185,-0.011570574,0.030738758,0.026363056,0.0093718385,0.007466993,0.0051185912,0.026929067,-0.008364991,0.011244029,0.01503195,-0.006351298,0.040774573,-0.039925553,-0.0026817499,-0.027255613,-0.027059685,-0.02357654,0.01810147,-0.024621485,-0.01978862,0.0000547643,-0.018482441,0.016185742,0.0219547,-0.006705055,-0.0031048977,0.023445923,0.0012449523,-0.006781249,-0.006166256,0.018896064,0.01501018,-0.0115596885,0.0050423974,-0.0019402208,-0.020833563,0.026232438,0.018700138,-0.0028790373,0.021922046,0.000007754378,0.0074833203,-0.005036955,-0.013627807,0.030259825,0.020289322,0.014128509,0.020877102,-0.01949473,-0.0109882355,0.039990865,0.0011136541,0.003121225,0.0106943445,-0.024665024,-0.0034804242,-0.015674155,-0.0067431517,0.02671137,0.014650981,-0.002925298,0.013072681,0.034874994,-0.018808985,-0.0010292967,-0.013573382,-0.0057798442,0.026558984,-0.02170435,0.027255613,0.003883163,0.006628861,-0.036638334,0.0013395143,0.007466993,0.02562289,0.00795681,-0.02991151,0.021018606,-0.012724366,-0.026907299,-0.034265444,0.045716286,-0.004903616,0.02046348,0.030847607,0.016817061,-0.004285902,0.010906599,0.030238057,-0.011614113,0.009246662,0.029476117,0.027212074,-0.00637851,-0.022531597,-0.0054505784,0.0096330745,0.022292132,0.013627807,0.030499293,-0.019331457,0.019734196,0.015434688,0.003728054,-0.04014325,-0.036834262,-0.02682022,0.018373592,-0.017339533,0.025231035,0.054467686,-0.0059540016,0.0016163972,-0.0055594267,-0.0010932451,-0.07231881,-0.00847384,0.0065962067,-0.039207157,-0.009404493,-0.0077227866,0.014150279,0.0020681175,-0.0052328818,-0.00468864,-0.014803368,0.017252455,-0.006732267,-0.05350982,-0.017568115,-0.011548804,0.021878507,0.000033419827,0.008392204,-0.032284405,0.027734546,-0.013878157,-0.0012850902,0.04262499,-0.017350418,0.0052573727,0.0073146056,-0.030216286,-0.006155371,-0.014563902,0.034287214,0.0059540016,0.02686376,0.01656671,-0.0036763512,0.012386936,0.007815308,-0.026537213,0.009056178,-0.0034042303,-0.00800035,-0.005537657,0.0074615506,-0.025209265,0.008615343,0.04589044,0.029084265,0.012212778,-0.011679422,0.018362707,-0.057776675,0.04345224,-0.015521767,-0.0054288087,0.027691007,-0.030586371,0.01947296,0.0060574077,-0.043125693,0.0053145178,-0.009159584,0.014509478,0.007124121,-0.0067431517,-0.0017987181,-0.0025388864,-0.017491922,-0.0013259083,0.003913096,0.0003214426,-0.0050206278,0.0017198031,0.011908003,0.003820575,0.0043593743,0.011146066,-0.035375696,-0.04593398,-0.0016354456,-0.014868677,-0.0044274046,-0.04467134,0.013246837,-0.030738758,-0.009491571,0.0015810215,0.001713,0.03067345,0.012256318,-0.009360953,-0.005485954,-0.011722961,0.041275274,0.044279486,0.006427492,-0.0060084257,-0.0044437316,0.013616921,0.026058283,0.0054805116,0.025709968,0.0028164496,-0.03126123,-0.0069227517,-0.0109229265,0.018428016,0.015554422,0.0022191447,-0.037204348,-0.0067377095,0.0029470676,0.0013912172,0.008212604,-0.0036654663,0.03189255,0.028235247,0.0002767128,-0.015543536,-0.015532652,-0.011886233,0.0281264,-0.012093046,0.039707858,0.0007789456,0.02362008,0.0006928874,-0.012800559,-0.037247885,-0.06334971,-0.03193609,-0.015042834,0.0103024915,-0.0058614807,0.012049506,-0.008522822,0.007581284,-0.025383422,-0.0054043178,0.026384827,0.04329985,0.0027783527,-0.015412918,-0.019385882,-0.006307759,-0.010128334,-0.008016677,-0.00032331346,-0.010324261,0.0036137635,0.008283355,-0.013225067,0.039794937,-0.005143082,-0.011603228,-0.024447327,0.0074778777,0.048372183,-0.005483233,-0.014955755,-0.018025277,-0.036072325,0.0156415,0.017764041,-0.008936445,-0.022662215,0.02999859,-0.054380607,0.026907299,-0.013148874,0.014531247,0.01976685,0.00502607,-0.054162912,0.006911867,0.0102371825,-0.022096204,-0.023206456,0.024556175,0.023097608,-0.023641849,-0.014052315,0.008169064,0.014313551,0.019440306,0.013660461,0.016936794,-0.012865868,0.008931003,0.041580047,-0.057907294,-0.03315519,0.009535111,0.008974542,0.004446453,-0.012158355,-0.034265444,0.030281596,0.023533002,0.024599714,-0.009094275,-0.015576191,-0.004109023,-0.030129207,-0.001225904,0.0124849,0.0029878856,-0.00049525977,0.027190303,-0.024577945,-0.021040376,-0.013323031,0.015075489,-0.008120083,0.019102875,-0.018319167,0.021802314,0.009235778,-0.004593398,-0.0037226116,-0.055730328,-0.005921347,0.015227877,-0.015053719,-0.001823209,0.012528439,0.03949016,0.01597893,-0.00028062452,0.0076030535,-0.013595152,0.027190303,-0.005790729,-0.021312496,0.011646767,0.0068574427,0.0017565393,-0.031761933,0.0029851645,-0.02292345,-0.012430475,0.0032001399,0.009627632,0.010150104,-0.02486095,0.0027062406,-0.0053961542,-0.013758425,0.017491922,0.043800555,-0.021181878,-0.009137814,0.0003700842,-0.014846907,-0.010623594,0.0006102308,0.0017973575,0.018275628,-0.005654669,-0.014455054,-0.01595716,0.0052655363,0.02747331,-0.034113057,-0.02747331,0.026188899,-0.00029048888,-0.004713131,-0.020289322,0.032349713,-0.028605333,-0.008386761,0.012626402,-0.014933986,0.0021565568,-0.032915723,0.007058812,0.00827247,0.022292132,-0.02806109,0.003896769,0.025165725,-0.005056003,0.009665729,0.015064604,0.06748594,0.010160988,-0.01654494,0.021791428,-0.011701192,-0.039316002,0.06574437,0.015924506,0.0040573203,0.0003860713,0.04589044,-0.006373068,0.012234548,-0.0039022113,-0.03639887,-0.023358844,-0.003594715,-0.016457861,-0.041580047,0.0035783877,0.020528788,0.00058403914,-0.06004072,-0.036703646,-0.02041994,-0.02873595,0.04343047,0.025775276,-0.014302666,0.013192413,0.002382417,-0.03890238,-0.00086738484,0.0016150366,0.0015225156,-0.019091992,0.02010428,0.028452944,-0.015489113,0.026341287,0.045193814,-0.029693814,0.0064002797,-0.03522331,-0.007042485,0.011548804,0.032458562,0.036115862,0.016174857,0.013268607,0.019081106,0.048589878,-0.01970154,0.039033,-0.012071276,0.00064084434,-0.001809603,-0.004277738,-0.031021765,-0.015227877,0.01341011,-0.015532652,0.027843393,0.0026613409,0.00014388384,-0.0076574776,0.030042129,-0.017252455,-0.036616568,0.020006316,0.02877949]},{"id":"interface-GatewayMessageCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageCreateDispatchData\nDescription: MESSAGE_CREATE — full message with author, content, embeds, attachments, member? (guild).","meta":{"url":"/docs/typedefs/GatewayMessageCreateDispatchData"},"embedding":[0.04534905,0.020037664,0.02599548,0.018035142,0.02088345,-0.013669393,-0.01817196,0.008849657,-0.00409833,-0.020796383,0.009048666,-0.00093052,0.0067662876,-0.00029656925,0.015311213,-0.0010657836,-0.025000438,0.019229192,0.025249198,0.036642432,0.03204036,0.02611986,0.011125816,0.01874411,-0.018159522,0.0066605643,-0.005071606,-0.0151743945,0.03412995,-0.03539863,0.024440726,-0.02283622,0.025522834,-0.014975387,0.024900934,0.041916154,-0.025647216,-0.0020476105,-0.027090026,-0.031493086,-0.019502828,-0.000525118,0.03014978,0.027164655,-0.044752028,-0.021940682,0.024826305,0.02706515,0.0039926074,0.022500394,-0.022363575,0.02113221,0.038881276,0.07507594,-0.022674525,-0.016617207,-0.03104532,0.012581066,-0.030945815,0.04649335,-0.024179528,-0.0033644866,-0.009098418,-0.005407433,0.00467048,-0.028557714,-0.033159785,0.04567244,0.013806212,0.05154319,-0.008482736,-0.030224409,-0.026642257,-0.011094721,-0.004297339,-0.019204317,-0.026418373,-0.022052625,0.0064864317,-0.030896062,0.0317916,0.048682444,-0.081046194,-0.05154319,-0.0116793085,-0.010242716,0.010945465,0.0123509625,-0.025137255,-0.01741324,-0.023644691,0.003905541,-0.035324,-0.0051990957,0.025796471,-0.07104602,-0.017425679,0.027040275,-0.018433157,0.024266593,0.071692795,-0.07010073,-0.024229279,-0.02492581,0.02491337,-0.036443423,-0.018097332,0.028209448,-0.03218962,0.00820288,-0.10517597,-0.015249023,0.0158958,-0.02258746,-0.0019403325,-0.012860921,0.039030533,-0.048607815,0.020323738,0.01287336,-0.04258781,0.0068222587,0.009092199,-0.04398087,0.0238437,-0.025336264,0.018831175,-0.01710229,-0.06955346,0.0020476105,0.049428724,0.0068222587,0.04465252,-0.02460242,-0.043358967,0.0030892952,-0.024067584,0.018967994,-0.046070457,-0.033657305,0.021356095,-0.038309127,0.018569976,0.064677745,-0.0447769,-0.0077426727,-0.048085418,0.051244676,0.0060604294,0.019614771,-0.08025016,0.036368795,-0.018980432,-0.011971602,0.0006782612,0.01103875,0.0062687662,-0.038707145,-0.011959164,-0.023109857,0.04119475,-0.058010966,-0.022438204,-0.017898323,-0.056518402,-0.026915893,0.019142127,-0.017587373,-0.050000876,0.022935724,-0.0068036015,-0.029154738,-0.04977699,0.009751414,0.021791426,0.0014482529,-0.038632516,-0.04181665,-0.017811257,-0.026318869,0.053831786,0.0039210883,-0.006449118,-0.088160746,-0.029204492,0.012643256,0.005786793,0.0141296005,0.018458035,-0.04263756,-0.047165003,-0.011138255,0.036891192,0.019104812,0.04636897,-0.027935812,0.05487658,0.0012640146,0.038732022,-0.013047492,0.03748822,-0.03437871,0.0059080636,-0.00031328286,-0.0017724191,0.0080909375,0.038060367,0.006971515,-0.014913196,0.024453163,0.032090113,-0.029378623,-0.0040019355,0.007978995,-0.02965226,0.0132465,-0.061145347,0.009247675,-0.008408107,0.00097560784,-0.021903368,0.042239543,0.04231417,-0.009061104,0.0048912545,0.01861973,-0.04246343,-0.00017180027,-0.07224007,0.018706795,0.003513743,0.01287336,-0.026990522,-0.08751397,-0.03539863,0.031393584,-0.007898148,0.031194575,0.05711543,0.020149605,-0.020174483,-0.018271463,0.011181788,0.01318431,-0.033134907,-0.0071767424,0.008233975,0.0060604294,-0.01981378,0.038732022,0.10666853,0.0132713765,0.00687823,0.013781335,0.00744416,-0.023856139,0.0150500145,-0.018880928,0.031119946,0.041144997,0.05666766,-0.023682006,-0.029876145,0.03109507,-0.0025140366,0.021977996,0.03987632,0.0185451,-0.038259376,0.042363927,-0.014017658,-0.024291469,0.054229803,0.0010642288,-0.019390887,-0.036120035,0.006386928,-0.019278944,0.06238915,-0.010516353,-0.025137255,-0.023010353,0.018943118,0.011262635,-0.028308952,0.045722194,0.0693047,0.0066356882,0.016604768,0.03982657,-0.010186746,-0.0059205014,0.01564704,-0.028507961,0.027363664,0.01634357,0.006542403,-0.008650648,0.0247268,0.043383844,0.026617382,-0.008302384,0.0044807997,-0.04378186,0.013196749,0.0079976525,0.044826653,-0.037513092,0.05691642,-0.017338611,0.010049927,-0.009564844,-0.03684144,0.01659233,-0.039478302,0.026194489,0.021691922,0.046020705,-0.01987597,0.033607554,-0.0048788167,0.019502828,0.0143161705,-0.071195275,-0.005248848,0.009950423,-0.019826217,-0.018831175,0.009571063,0.026070109,0.02473924,-0.024191966,0.00996908,-0.016778901,0.02706515,-0.0015881808,0.0023399042,0.017997827,0.026542753,0.0022030857,0.029279118,-0.026567629,-0.01962721,-0.020783946,-0.010373316,-0.024714362,-0.045871448,0.038134996,-0.0049969777,0.012705446,-0.026094984,0.0055753463,-0.0029944554,-0.03502549,0.038184747,-0.038383756,0.04517492,-0.0132091865,-0.017064976,0.02396808,-0.035324,-0.0010898822,-0.004315996,0.026194489,-0.008862095,0.0493541,-0.05243873,0.030522922,0.013967906,-0.039478302,-0.016604768,-0.003420458,-0.0729366,-0.010578543,-0.012798731,-0.017500306,-0.0033986913,-0.03216474,0.007730235,-0.018831175,0.010049927,0.03228912,0.008271289,-0.0019076826,0.01394303,0.004462143,-0.0029447032,0.036766812,-0.026020356,0.011181788,0.015211709,-0.017761504,-0.038881276,-0.010995218,-0.012282553,0.0030426527,0.03084631,0.0048725978,0.007842177,-0.01860729,0.020485433,0.00889319,0.019540142,-0.024527792,-0.028209448,0.02505019,0.0024658393,0.015870925,0.028433332,-0.026741762,0.036368795,0.016555015,0.011878317,0.01868192,0.004692246,-0.015249023,-0.008339698,-0.018060017,-0.021393409,-0.019788904,0.00548828,0.0018268354,-0.030622426,0.023669569,0.04736401,-0.027910937,0.033209536,0.012674351,-0.0010766669,-0.05194121,-0.082289994,0.008532488,0.053583026,0.006334066,0.04624459,-0.0018004046,-0.010286249,-0.03736384,-0.022848658,-0.008209099,-0.03059755,-0.0064864317,-0.013967906,0.009191703,-0.04164252,0.0033800344,0.03475185,-0.028358705,0.04171715,-0.028234325,-0.022948163,-0.023619816,-0.0089802565,0.013918154,-0.049229715,0.009322302,-0.00776133,0.091742896,-0.0011940508,-0.0011186452,-0.009229017,0.017425679,0.0011069846,0.086319916,-0.053433772,-0.0077426727,-0.01860729,-0.021119772,-0.0029618056,0.05273724,-0.03388119,-0.022065062,0.007133209,0.055921376,-0.0006067426,-0.010590982,-0.0035292907,0.029851269,0.041070372,0.00028568596,0.016567454,0.021032706,-0.019167002,0.0014661326,0.0066792215,0.09428026,-0.016517702,-0.018458035,0.0018999089,-0.010447944,0.00002326057,0.0014179352,0.008694182,-0.013433071,-0.005892516,-0.03199061,-0.013781335,-0.061344355,0.0027565781,-0.0025700077,-0.015535098,-0.0036629995,-0.019664522,-0.042811695,0.038756896,-0.0125064375,-0.058010966,-0.005015635,-0.03577177,-0.028209448,-0.017711753,-0.0010409075,0.011791251,-0.004642494,-0.0040579066,0.013097244,-0.020112293,0.06263791,-0.0020429462,-0.0035603857,-0.000050432318,0.026219364,0.005450966,-0.029104987,0.0091357315,0.0012375838,-0.0017459883,-0.09248918,-0.024179528,0.004574085,0.0079043675,-0.025199445,0.04813517,0.01722667,-0.01185966,-0.047712278,-0.014179353,-0.015062452,0.03512499,0.0025202555,-0.01015565,0.028731845,0.015982866,0.0013339786,0.010018832,0.015721668,-0.0026710667,0.029702011,0.00091808196,0.0070834574,0.00090642134,-0.022662088,0.01609481,0.010839742,0.010485258,0.020684442,-0.02731391,-0.023022791,-0.005671741,0.01917944,0.010180526,-0.02441585,-0.01747543,-0.0067414115,-0.028284077,0.012338525,-0.00750635,0.027164655,-0.0131469965,-0.02441585,-0.009166827,0.029801516,0.0028654109,0.030249285,-0.010230279,0.0074317222,-0.000058206086,0.033358794,-0.007929243,-0.005071606,-0.017002786,-0.07393164,0.0032401064,0.021704359,-0.04952823,0.020771507,0.011349701,-0.0053390237,-0.0033147347,0.028856225,-0.030398542,0.008781248,0.005643755,0.010118336,0.0017273312,-0.03482648,-0.017811257,-0.020137168,-0.02743829,0.02221432,0.0035945904,0.037935987,-0.042861447,-0.040149957,0.031368706,0.039901197,0.027612424,-0.00028782376,-0.013855964,-0.0025435768,0.01388084,0.025274074,-0.015982866,-0.016418198,-0.018520225,-0.0010136993,0.0070958952,0.018818738,0.003167033,-0.01917944,0.02542333,-0.004819736,-0.0042817914,0.03835888,-0.027711928,0.052140217,-0.046965994,-0.03539863,-0.0059764725,0.006921763,0.028408457,-0.02012473,-0.0011007655,-0.016928157,-0.01817196,-0.039478302,0.0406226,-0.0115549285,0.005413652,-0.0020724866,0.0043812958,-0.0066916593,0.0018159521,0.003022441,0.042363927,-0.0062003573,0.013980344,0.005665522,0.0042289295,0.016915718,-0.029677136,0.0031701424,0.08328504,-0.021057582,0.031343833,-0.018632166,-0.019851094,0.05318501,-0.031692095,0.010964122,-0.01621919,0.018246587,0.023607379,0.044130124,0.017512744,0.03758772,-0.04624459,0.0017257765,-0.0400007,0.038607642,0.028134821,0.028209448,0.05204071,0.010273811,0.009738976,0.010199184,-0.008787467,-0.015261461,0.04447839,0.0035790426,0.0133957565,0.00132465,-0.017587373,0.012761417,0.049055584,-0.0053172573,0.057762206,-0.013806212,0.03440359,-0.018308777,0.022301385,-0.0058023403,-0.004179178,-0.024067584,0.033557802,0.007437941,0.0377121,0.015721668,-0.0029136082,-0.03495086,-0.023992958,0.007388189,-0.017064976,-0.008607116,-0.00036692183,-0.026567629,-0.024589982,0.040100206,0.032388628,0.005155563,0.00047303378,-0.020472994,-0.026393497,0.0008201325,-0.031244328,0.011505176,-0.01236962,0.0016371555,0.012960426,-0.005090263,0.018159522,0.021629732,-0.025460644,0.010081022,-0.006480213,0.002795447,0.042413678,0.007276247,-0.010796209,0.00990689,-0.010547448,0.018259026,0.048931204,0.0012943323,-0.041493263,0.023196923,0.025311388,0.025945727,-0.0033022966,0.0044528143,0.007338437,0.014726626,0.028557714,-0.012326086,-0.010043708,-0.029005483,0.00990689,-0.020423243,-0.0133957565,0.040547974,-0.033010527,0.008681744,-0.040921114,0.0055100466,-0.03281152,0.0015703011,0.026343744,0.004692246,-0.014577369,0.03798574,0.043259464,0.03519962,-0.013022616,0.04378186,-0.03141846,-0.002151779,-0.02977664,-0.022699403,0.001968318,-0.0030426527,-0.008047405,0.0026415263,0.005861421,0.0068098204,0.028010441,-0.037637476,0.0020149606,-0.008364574,-0.0043502003,0.011691747,0.002075596,-0.012674351,-0.009608377,-0.029975649,0.011020093,0.018706795,-0.024067584,-0.030299038,-0.012848483,-0.015360965,-0.015323651,0.021144649,-0.011324825,-0.017127166,-0.016293818,-0.010454163,0.0016060604,-0.0847776,0.021269029,0.03758772,-0.021368533,0.010566105,-0.0014358149,-0.010416849,-0.005413652,-0.013408194,-0.053483523,0.016356008,-0.021418285,0.0370902,0.021057582,0.04895608,0.009359617,-0.023731759,0.013495261,-0.0025529054,0.005093373,0.03539863,0.0058458736,-0.025249198,0.015360965,0.011088503,-0.020448118,-0.009098418,-0.007027486,0.025224322,-0.002863856,0.0377121,0.0006405585,-0.032015484,-0.0079976525,0.0058769686,0.016517702,-0.006529965,0.017462991,0.0072264946,-0.04465252,0.0072824657,0.0050622774,-0.023271551,0.0076618255,-0.035373755,0.030199533,-0.0022372904,0.021293905,-0.00093518425,0.025435768,-0.013097244,-0.03495086,0.014614684,-0.006990172,0.027960688,0.012605942,-0.04567244,-0.011219102,-0.0038215842,-0.028930854,0.021045145,-0.011380796,0.02990102,-0.001968318,0.024129774,-0.041742023,0.009154389,-0.0049689924,-0.017736629,0.015137081,-0.027736804,0.048110295,0.038309127,0.0024751676,-0.012419372,0.022898411,-0.015000262,0.00467048,0.01891824,0.048284426,-0.0117104035,0.0019154564,0.017550059,0.01003127,0.008687963,0.016642082,0.0017226669,-0.028806474,-0.0063496134,0.036741935,0.005457185,-0.0040268116,0.012245239,0.0042040534,-0.01911725,-0.0041045495,-0.026741762,-0.010690485,0.012046231,-0.05388154,-0.011753937,-0.006592155,0.028358705,-0.03482648,-0.03671706,-0.009260112,-0.016157,0.0071269902,0.01268057,0.014278857,-0.002688169,0.0038402413,-0.024341222,0.025286512,-0.004639385,-0.043856487,0.0116109,0.017836133,-0.004113878,-0.029503003,-0.009372055,0.0064242417,-0.009297426,0.00043222148,0.0011139809,-0.00055465836,-0.0037749417,-0.016057495,0.0010844406,0.005696617,-0.03798574,0.015497783,-0.01628138,0.029279118,-0.025970604,-0.0026166502,-0.002195312,0.0142539805,-0.042936075,-0.022562584,-0.012438028,0.0050747157,0.0071518663,0.0007027486,0.03206524,-0.011076065,-0.00013322294,0.0057681357,-0.007332218,-0.025522834,0.0038029272,-0.040771857,-0.021094896,-0.015634602,-0.009048666,0.03166722,-0.032015484,0.033433422,-0.015622164,0.025721842,0.0009911554,0.042363927,-0.0016620315,-0.0018999089,-0.048582938,-0.051692445,-0.038458385,0.003678547,-0.042786818,-0.0032432158,-0.03721458,0.03982657,0.020522747,-0.03487623,-0.05218997,0.064827,0.02726416,-0.01772419,0.01268057,-0.013706707,-0.021393409,-0.0031779162,-0.00056437554,0.013383319,0.02574672,-0.01482613,0.03736384,-0.02536114,-0.0115860235,-0.02523676,-0.0132091865,0.029378623,-0.00014993655,-0.0009833816,-0.014440551,-0.01570923,0.005817888,0.032139864,-0.019764027,-0.02574672,0.0060977433,0.03773698,-0.0003333003,-0.02125659,0.043159958,0.0068036015,0.020958077,0.033632427,-0.010901932,0.010609638,-0.021343658,-0.0034235674,-0.018134646,-0.011934289,-0.00694042,0.040746983,-0.04365748,0.009409369,0.023433246,-0.010062365,-0.017313736,-0.013234062,0.017612249,0.059652783,-0.049130213,0.010802427,-0.032886147,0.0046766987,-0.02599548,-0.01381865,0.007388189,-0.027786555,-0.0012912229,-0.010280031,0.047339138,-0.017363489,-0.00026333638,0.026070109,0.010559886,0.023109857,0.006554841,0.01893068,-0.014788816,-0.03942855,-0.012276334,-0.0036039187,0.04181665,0.024577545,-0.022873534,-0.004409281,-0.008588458,0.016778901,-0.02257502,-0.012985302,0.0188063,0.007388189,-0.011138255,0.0011303058,0.010528791,0.007406846,0.03092094,0.015721668,0.0020787055,-0.01072158,0.008451641,-0.006346504,-0.00023962639,0.020970516,-0.013918154,0.029055234,0.04430426,0.033458296,0.0060604294,0.008159347,0.016903281,-0.017077412,-0.0019652084,0.018370967,0.002661738,0.051095422,-0.036194663,-0.023992958,-0.025696967,-0.036020532,0.005646865,-0.0098384805,0.0049130213,-0.010391973,-0.0026819499,-0.014266418,-0.013594765,0.050772034,0.013520137,-0.05223972,0.011990259,0.0017739738,-0.021555103,-0.014229105,0.027935812,-0.0019341134,-0.005124468,0.0079976525,-0.0041387537,0.0033427202,0.008557363,0.0016153889,0.008321041,0.02113221,-0.019565018,-0.0015469798,-0.014142038,-0.019453077,0.028159697,0.0018781424,0.018880928,0.005886297,-0.014627121,0.012761417,0.021778988,-0.0059142825,0.0017817476,0.023271551,0.023383494,-0.013321129,0.007039924,-0.012400715,0.04044847,0.010827304,0.038134996,0.018246587,0.043433595,-0.044577893,-0.0042040534,-0.04231417,-0.0068036015,0.04490128,-0.040796734,0.05273724,0.019851094,0.0039708405,-0.04726451,0.013495261,-0.043607727,0.020448118,-0.007978995,-0.020385928,0.020385928,-0.004636275,-0.0058831875,-0.012494,0.062239893,-0.0066045932,-0.008775029,0.01879386,0.02359494,-0.01103875,0.008389451,0.033906065,-0.019328697,0.0099317655,-0.0096519105,-0.005733931,0.008513831,-0.017388364,0.013893277,-0.026915893,-0.019403324,-0.00087143935,0.023868578,-0.045970954,0.0014902313,-0.032338873,0.0077177966,0.007307342,-0.02441585,-0.021269029,0.008414326,-0.014651998,0.020174483,0.025274074,-0.0105723245,0.038458385,0.014452989,-0.004549209,-0.005531813,-0.0043439814,-0.0040734545,-0.06537428,0.011834784,-0.022288946,0.009098418,0.004832174,-0.017985389,0.021405848,-0.03092094,-0.0076182922,0.016007742,-0.04378186,-0.034055322,-0.036269292,-0.008439203,0.008961599,0.022997914,-0.015137081,0.004801079,-0.03129408,0.0045212233,0.035597637,-0.019005308,0.028184572,-0.016418198,0.021020269,0.0053918855,-0.0019823108,0.012089764,0.043707233,0.0041076588,0.005659303,-0.003476429,0.065523535,0.0021486694,-0.014938072,0.0004225043,0.019204317,-0.017736629,0.008967819,0.017761504,-0.056369144,0.0032152303,0.03723946,-0.0089180665,-0.029801516,-0.0018159521,0.046393845,-0.05955328,0.04296095,0.013905716,-0.022363575,0.01848291,-0.011044969,0.023706883,0.016977908,-0.0019652084,0.017935637,0.015186833,0.014726626,0.02012473,-0.015224147,-0.016244065,0.007046143,0.011113378,0.04258781,0.01716448,0.0014482529,-0.04226442,0.029204492,-0.0010751121,0.020659566,0.0019465515,0.0075187883,-0.02756267,-0.04723963,-0.0019092374,-0.0140052205,0.0037935986,-0.0317916,0.015485345,-0.04726451,-0.018147083,-0.046219714,0.024652172,0.04763765,0.0043502003,0.01608237,-0.02574672,-0.024565106,0.015846048,0.0041076588,0.008178004,0.00492235,-0.03121945,0.024515355,0.01981378,-0.02491337,-0.0067662876,0.009695443,-0.009614596,0.0006071313,-0.007730235,-0.005068497,-0.004869488,0.009477777,-0.029279118,-0.010248936,-0.0047357795,-0.014751501,0.012120859,-0.02131878,-0.026517877,-0.023371056,-0.022923287,-0.013545013,-0.0151122045,-0.024900934,-0.0036194662,-0.004925459,0.025460644,-0.014490304,0.025846222,0.0122887725,0.0017195574,0.005279943,-0.05482683,-0.01646795,0.028905978,-0.0015734106,0.0062376712,-0.0060231155,-0.029602507,-0.033657305,-0.016865967,-0.005040511,0.01236962,0.007394408,-0.0053638997,-0.038732022,-0.01866948,0.03564739,-0.026169611,-0.025547711,0.015547535,-0.02694077,0.032463253,0.021567542,-0.0033427202,0.009266331,0.0072949035,-0.0076120733,-0.03577177,0.0133335665,0.010186746,0.008731496,-0.027214406,-0.025199445,-0.026741762,-0.017077412,0.010945465,0.0123820575,-0.0060542105,0.0012484671,-0.03248813,-0.017450554,0.030323913,0.009328522,0.020622252,-0.002510927,-0.025187008,0.019888408,0.016132124,-0.004378186,-0.0012002698,0.010765114,0.035373755,-0.026891017,0.011604681,0.004496347,0.029080112,0.036020532,0.022910848,0.023296427,-0.0125375325,0.010578543,0.008998914,-0.038806647,-0.03490111,0.024515355,-0.007469036,-0.0025280293,0.024390973,-0.012033792,0.0018283902,0.029702011,0.0114927385,0.001394614,-0.006847135,-0.006585936,-0.034478214,0.002315028,-0.0001079582,-0.012923111,-0.013234062,0.027935812,-0.010877056,-0.0005025741,-0.012655694,0.005183548,-0.020137168,-0.009204141,-0.010342221,0.009303645,0.0075996355,0.040921114,-0.019925721,0.01665452,-0.01072158,0.0013223179,-0.015783858,-0.01829634,0.011536271,0.0036723278,0.026144736,0.011977822,0.044204753,-0.006971515,0.010105899,-0.00870662,-0.023495436,0.007960338,0.017972952,0.021530228,-0.018470472,0.012114639,-0.011716623,-0.021679483,0.018271463,0.0014233768,0.001504224,-0.0028933964,0.03975194,-0.009571063,-0.047538146,0.027786555,0.04430426,-0.003104843,-0.0021175744,0.0106345145,0.022226756,-0.02334618,-0.017910762,-0.010018832,0.013047492,-0.015671916,-0.011660651,-0.04094599,0.042811695,-0.005295491,-0.015622164,-0.0013153215,0.0008271289,-0.017052537,0.01293555,-0.0010409075,0.033458296,-0.020522747,0.0013697379,0.023097418,0.009266331,0.0006028557,-0.021032706,0.019303821,0.0043564197,0.00048586048,0.0013549677,0.004120097,0.028856225,0.0063433945,0.006909325,0.018818738,0.0123634,-0.0027363664,-0.0010214731,0.017923199,0.019366011,-0.0019963037,0.0114927385,-0.017301297,0.015485345,-0.006648126,0.01546047,-0.0115238335,-0.013706707,-0.009079761,-0.0037376275,-0.0067849443,0.00832726,-0.0049658827,-0.019913284,0.016157,0.012699227,-0.0002009519,-0.006449118,0.0035541665,-0.0054789516,0.0028141038,0.029353747,-0.000959283,-0.018458035,-0.0040547973,0.030075153,-0.048508313,-0.005621989,0.024241718,-0.0133335665,-0.03552301,0.044951037,0.0038153653,-0.0050498396,-0.016505264,0.04233905,0.0012212589,-0.017960513,-0.0075934166,-0.0059702536,0.018022703,0.013258939,0.049055584,0.023918329,-0.023744196,0.044080373,0.045373928,-0.024179528,-0.0066916593,-0.00258711,-0.032587636,-0.015883362,0.0070958952,-0.00053133705,-0.0017522073,0.0032338875,-0.03440359,-0.011206663,0.0149878245,-0.019614771,0.03174185,0.0036723278,-0.0027223735,-0.030498046,0.0014373696,-0.006094634]},{"id":"interface-GatewayMessageDeleteBulkDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageDeleteBulkDispatchData\nDescription: MESSAGE_DELETE_BULK — ids[], channel_id, guild_id?\nProperties: channel_id: string, guild_id: string, ids: string[]","meta":{"url":"/docs/typedefs/GatewayMessageDeleteBulkDispatchData"},"embedding":[0.043615185,0.017625153,0.015963959,0.00018749184,-0.0011744702,0.027050368,-0.033954337,0.024293493,0.010426645,0.009030535,0.026861865,-0.028746907,0.007875945,0.020664785,0.077899404,0.012782949,-0.035014674,0.037559483,-0.03178654,0.037158914,0.021194953,0.05094329,0.035462372,0.054147862,-0.026696922,0.008971627,0.016729757,-0.022973962,0.044463456,-0.018025724,0.040905435,-0.03798362,0.059567362,-0.023197811,-0.015940396,0.03039632,-0.025730839,0.009678518,-0.023940047,-0.0215484,-0.0075578447,-0.013807941,0.017660497,0.019062499,-0.020770818,0.03972728,-0.0013526657,0.019415945,0.024859006,-0.013348461,-0.007451811,-0.012971453,0.0023430497,0.07285692,0.0009646119,0.0029144534,-0.036946844,0.0022193438,-0.017389523,0.04352093,-0.035415247,-0.025777964,-0.018638363,0.016069993,0.021984315,0.010626931,-0.052969713,0.051885813,0.0268383,0.045264598,-0.044110008,-0.05721106,-0.026084283,0.006939315,0.0021265643,-0.0028084198,-0.0033636237,-0.014974311,0.027474504,-0.051037543,0.009342745,0.043992195,-0.061688036,-0.055703025,-0.009890585,0.025000384,-0.0060674823,0.0057965075,0.0006582924,0.0383135,-0.008241173,0.0019896042,-0.05325247,-0.004659591,-0.018332044,-0.09194298,0.031150337,-0.0135958735,-0.030537698,0.040976126,0.050566282,-0.031456657,-0.032069296,-0.016352748,-0.0092897285,-0.05433637,-0.0148918405,0.023021089,-0.025801528,-0.04132957,-0.0344256,0.017460212,0.0028408188,0.0027995836,0.003861393,0.022290634,0.024340618,-0.0018717889,0.06296044,0.012771167,-0.03294113,-0.01162836,0.002636115,-0.04340312,-0.047974348,-0.008111577,0.02171334,-0.025259579,-0.05947311,-0.012488411,0.057588067,-0.013254209,0.039797973,-0.005684583,-0.02039381,0.013301335,-0.005552041,-0.0027554028,0.0045329398,-0.0262021,0.01961623,0.03138597,0.02542452,0.056645546,-0.019144969,0.016411657,-0.024481997,0.008429677,0.03534456,0.016647287,-0.06329032,0.009519468,0.0005205959,-0.027333125,0.004689045,-0.0042236745,0.015009656,-0.013112831,-0.0034784935,-0.02884116,0.02210213,-0.074270695,0.023940047,0.018438078,-0.0033901322,-0.0103029385,0.026696922,-0.030231379,-0.041918647,0.014455925,-0.024717627,-0.05127317,-0.046560563,-0.03543881,-0.050047893,0.0034961659,-0.027403815,-0.046866883,-0.026932554,-0.062065046,0.032399178,0.007758131,-0.01000251,-0.06899258,-0.062442053,0.041117504,-0.021583743,-0.0028805814,0.010921469,0.007769912,-0.0128654195,0.0043061455,0.016069993,0.016812228,0.012724041,-0.0215484,-0.0013121667,-0.00032435995,0.02333919,-0.021277424,0.044157136,-0.0049718013,0.042437032,0.015516262,-0.012971453,-0.04304967,0.012653352,-0.015445572,-0.0017731186,-0.0076167523,0.03009,-0.019027153,-0.022467358,-0.016859354,-0.048492733,0.0161289,-0.05179156,0.046654817,-0.019451289,0.009448779,-0.015080345,0.0074753743,0.021418802,-0.043308865,0.022231728,-0.012182091,0.014220294,0.0034843844,-0.00875956,-0.0048039146,0.0026243334,-0.011068737,0.009001081,-0.073139675,-0.022432012,0.011775629,-0.02132455,0.03527387,0.035627317,-0.00627955,-0.016906481,-0.040599115,-0.013937538,-0.007310433,-0.0068745166,-0.012099621,0.014903622,-0.02388114,-0.0015846144,0.037771553,0.028134268,0.035320994,0.00325759,-0.025613023,-0.007722786,-0.0005364273,0.011734393,-0.018072851,0.037182476,0.010632821,0.04637206,-0.020865072,-0.033789396,0.022585172,-0.013843285,0.027427377,0.057399563,0.014184949,-0.04342668,0.02272655,-0.0011729975,-0.0355095,0.060604136,-0.050047893,-0.0018040452,-0.010196905,0.0023577765,-0.019474851,0.018650146,-0.067625925,-0.052686956,-0.002431411,0.017860783,0.027498066,-0.009955384,0.041541636,0.025448082,0.05018927,0.005543205,0.03256412,-0.031197464,0.008406114,-0.010756527,-0.04335599,0.011840427,0.030443447,-0.0066271047,0.024387745,0.03195148,0.03527387,0.043850817,0.005714037,0.0005739809,-0.048257105,-0.049482383,0.0017510284,-0.0032546448,0.0037848132,0.018496985,-0.036970407,0.02884116,-0.008735997,-0.044416327,0.009195476,-0.011463419,-0.058059327,-0.017248144,0.04853986,0.020299558,0.00807034,0.02093576,0.018956466,-0.025848653,-0.044864025,-0.015469135,-0.03388365,0.00048230594,-0.028511276,0.016788665,0.025777964,0.022432012,-0.030184252,0.005964394,0.01605821,0.049011122,0.040646244,-0.040457737,0.048586987,0.02325672,0.013277773,0.048586987,0.047243893,0.018720834,-0.015209941,0.0128065115,-0.021819374,-0.017943254,0.03202217,0.0027377305,0.03581582,0.0037376871,0.01930991,-0.012618007,-0.08228213,0.007893618,-0.042154275,0.016081775,-0.0051190704,-0.027992891,0.025377393,-0.012818293,0.0126415705,0.0065564155,0.018178884,0.011722612,-0.015339538,-0.033365265,0.006815609,-0.008040887,0.0021722177,0.020971105,-0.0062677683,-0.029477362,-0.010892015,0.0049865283,-0.029218169,-0.02350413,0.010361847,0.0071749454,-0.054242115,0.019368818,0.019981457,-0.021053575,0.008600509,-0.005823016,0.019274566,-0.023209594,0.04293186,-0.044227824,0.0034519853,0.014903622,0.005086671,-0.014927185,0.0070571303,-0.000843115,-0.0026154972,0.033388827,0.011121755,-0.0007146228,-0.02907679,0.027568756,0.027804386,-0.022219947,0.002798111,-0.01566942,0.022679426,-0.0032840986,-0.0011700521,0.037418105,-0.04559448,0.005805344,0.02024065,0.018956466,0.039680157,0.01900359,-0.06211217,-0.008300081,0.016765103,-0.0072691976,0.013525184,-0.020040365,-0.0034284221,-0.003628708,0.01899181,0.006379693,-0.032516994,0.023480568,0.009448779,-0.022443794,-0.063243195,-0.0916131,0.002497682,0.031032523,-0.0005217004,0.017106766,0.012535537,-0.013807941,-0.0096903,-0.04684332,-0.009967165,-0.07361093,-0.0061263903,-0.03567444,0.027804386,-0.008741887,0.0044062883,0.019498415,0.003543292,0.03800718,-0.013843285,-0.031927917,-0.02914748,-0.041070376,0.028369898,-0.019321691,-0.010261703,-0.01899181,0.05033065,-0.035533063,-0.009083551,-0.021795811,0.015987521,0.048068598,0.057588067,-0.010750636,0.026885428,-0.020405592,0.006709575,-0.020641223,0.07403507,-0.0068568443,-0.005451898,0.03838419,0.030490572,-0.028346336,-0.03925602,-0.022809021,0.02286793,0.05117892,0.02249092,-0.004550612,-0.004350326,-0.0186148,-0.02938311,0.014479487,0.0699351,0.010903796,-0.0097963335,-0.04231922,0.03341239,-0.041777268,-0.008034997,0.016894698,-0.011416293,-0.040127855,-0.011422183,0.0027804386,-0.01279473,0.031621598,-0.028417025,-0.0031191572,-0.05141455,0.040834747,-0.027922202,0.059048977,-0.036263518,-0.066777654,-0.016717976,-0.039420962,-0.03480261,-0.00814103,0.016717976,-0.013407369,-0.03520318,-0.006032138,0.023857577,-0.031150337,0.008647636,-0.032846875,0.03770086,-0.039350275,0.024646938,0.026013594,-0.009277946,0.0085003665,0.006538743,-0.010874342,-0.059331734,-0.012853637,0.039373837,0.03845488,-0.035886507,0.0018010997,0.076249994,0.016022867,-0.022526266,0.002170745,0.013749033,0.03303538,-0.005740545,0.008853812,0.011946461,0.024246367,0.02224351,-0.0075107184,0.004070515,0.008600509,0.0476209,0.011769738,0.019840078,-0.011045175,0.00094104884,0.021878282,-0.0032752624,0.015045,0.0043032,-0.027992891,0.00080629776,0.028817596,0.010291157,-0.025283141,-0.042060025,0.005937886,-0.024859006,-0.008358988,0.007469483,0.0014505996,0.020629441,-0.027073931,-0.012959671,-0.014620866,0.01790791,0.00875956,0.012441285,0.024835443,0.034684792,-0.0344256,0.0071454914,-0.005752327,-0.025707275,-0.017354177,-0.06032138,0.02566015,0.032776188,-0.05395936,-0.009713863,0.0023887032,-0.009778661,-0.040669806,0.009348636,-0.012888982,-0.01590505,0.010874342,-0.018897558,0.0054725157,0.015422009,0.04451058,-0.019015372,0.009548921,0.0075931894,0.008523929,0.034072153,-0.04038705,-0.01318352,0.03131528,0.020594096,0.01651769,-0.009154241,-0.026744049,0.03499111,0.007157273,0.036970407,-0.011498763,-0.0030602496,-0.012924327,-0.03986866,-0.011363275,0.006868626,0.010143888,-0.020499844,-0.005239831,0.025542334,0.0172128,0.0019689864,-0.0019925495,0.033789396,-0.04194221,-0.034095716,-0.017153893,-0.0016346858,-0.010603367,-0.026084283,-0.0071867267,-0.016199589,-0.03883189,-0.028676217,0.017259926,-0.020370247,-0.0007923072,-0.00031276254,0.013501621,0.0023887032,0.037135348,-0.010862561,0.00868298,-0.019816516,-0.014997874,-0.0186148,-0.0006597651,0.019910768,-0.017342396,-0.0120466035,0.048257105,0.021760466,0.026319914,-0.0057641086,-0.04335599,0.034637667,-0.023763325,0.003993935,0.012240998,0.004061679,0.0135369655,0.015775455,0.006373802,-0.0012598862,-0.018202448,0.02954805,-0.0033312247,0.016199589,0.026696922,0.01465621,0.035580188,-0.002745094,0.016812228,-0.0034549306,-0.046796195,0.0092897285,0.0080232145,0.030254941,-0.036169264,0.025613023,-0.008777232,0.0074635926,0.01628206,0.0077875843,0.07205577,-0.0071454914,0.03499111,0.023892922,0.041541636,-0.009177804,0.0026655688,-0.0051544146,0.036263518,-0.0039409185,0.023021089,0.045146782,0.007127819,-0.021300986,-0.040928997,-0.00891272,0.01783722,-0.012665133,0.012182091,-0.01993433,-0.020994667,0.019686919,0.03567444,-0.00791129,-0.03155091,0.025283141,-0.06173516,-0.0059113773,-0.008506257,0.033765834,-0.0524042,0.004412179,0.0018732616,-0.008017324,0.00666834,0.011304368,-0.0064857267,-0.0011008357,0.014938966,0.0067802644,0.0044210153,-0.00010989948,-0.010026073,0.003728851,-0.011663704,0.026861865,-0.00461541,0.022043223,0.005319356,0.032352053,0.03421353,0.01774297,-0.0049335114,0.004624246,-0.0069805505,0.006326676,0.01271226,-0.05937886,-0.009024644,-0.038124997,-0.007728677,0.0061146086,0.0069923317,0.026414167,-0.011486981,0.0064268187,-0.04342668,0.022384888,-0.02738025,-0.006962878,0.034943987,-0.0039261915,-0.0007761076,0.04304967,0.015398446,-0.0023224321,0.0065623065,0.042083587,-0.027969327,-0.012299906,-0.0612639,0.0053016837,0.028511276,0.00577589,-0.02210213,0.0059143226,0.026296351,0.0011619524,0.023551257,-0.052781206,0.020488063,-0.028110705,-0.010137998,0.018096413,-0.010897906,-0.007110147,-0.008364879,-0.02853484,0.008518038,0.011834537,-0.0070748026,-0.02335097,-0.0013268936,0.0046448642,-0.041070376,0.03371871,-0.012417722,-0.009643174,-0.02388114,-0.0066329953,0.01046788,-0.069699466,0.01442058,0.045618042,-0.026343478,-0.01844986,0.0070571303,0.02124208,0.076249994,-0.0017495557,-0.05165018,0.03977441,-0.004836314,0.018897558,0.004824532,0.044015758,-0.028629092,0.0050660535,0.018084632,0.006055701,0.000612639,0.013254209,0.04031636,-0.023386316,0.016717976,0.0050984523,-0.024128553,0.0030028147,0.0042384015,0.046866883,-0.020876853,0.03164516,-0.0059555583,-0.031668723,0.008358988,-0.017295271,0.016859354,0.016882917,0.0156222945,-0.0021442366,-0.0578237,-0.008942173,-0.029736554,-0.013230646,-0.011492873,-0.016882917,-0.00010824271,-0.0011501708,0.019050717,-0.0031751194,0.020817945,-0.026225662,0.007328105,0.0036787794,-0.022055004,0.020546969,0.0007127819,-0.024552686,-0.036404897,-0.029406672,-0.031221027,0.023975393,0.037088223,0.015775455,-0.022231728,0.014620866,-0.054053612,-0.022773677,-0.012276343,0.016965387,0.008176374,0.009831678,0.031362403,0.026767612,0.027403815,0.037253164,0.044911154,-0.021725122,0.009961274,0.02884116,0.049670886,-0.035862945,0.023633728,0.016305624,-0.0013165848,-0.00891272,0.012240998,-0.028157832,0.02139524,-0.019887205,0.0031662832,0.0028997264,0.0054931333,0.00016429697,0.036876157,-0.007822929,-0.012011259,-0.020535188,-0.029642303,-0.009961274,-0.041518074,0.017142111,0.0070217857,-0.015952177,-0.030184252,-0.01566942,-0.027875075,0.0058760326,0.03944453,0.01961623,0.024670502,0.010573913,0.034284223,0.012252781,0.003752414,-0.005015982,-0.034142844,0.005395936,0.011610688,0.010037854,-0.017542683,-0.03216355,-0.0074753743,0.0041441494,-0.008111577,0.005254558,0.066165015,-0.02232598,-0.006055701,-0.012170309,0.053629477,-0.03513249,0.008600509,-0.008459131,0.032823313,-0.020405592,0.024222804,-0.024788316,-0.0062383143,-0.037747987,0.0074753743,-0.02411677,-0.01868549,-0.03986866,-0.0065328525,0.027238874,-0.020841507,-0.00062662957,-0.0030190144,-0.008853812,-0.029571613,0.005908432,-0.020912196,0.0006663922,0.016011085,0.0029247622,0.0578237,-0.039114643,0.028487714,0.011598906,0.027238874,0.019121407,0.02738025,0.0071219285,0.022679426,-0.038879015,-0.023975393,-0.001918915,-0.0031368295,-0.0359572,0.012023041,-0.037182476,-0.00036136128,0.013218865,0.00029527434,-0.041258883,0.030820455,-0.01465621,-0.041235317,0.05575015,-0.0027568755,-0.022915056,-0.017919691,0.00053863635,-0.027097495,0.031008959,0.0059202136,-0.0036493256,-0.0061440626,0.002535972,-0.027615882,0.0031515565,0.038337063,0.011451637,0.009407544,-0.0009786024,-0.036499146,0.016694413,0.0069510965,-0.03070264,0.007010004,0.025707275,0.014526613,0.010945031,0.009018753,0.009890585,-0.008859702,0.011333821,0.043850817,-0.021831155,0.03760661,0.009643174,0.013313117,-0.016093556,-0.017872564,0.0060115205,0.013525184,-0.026249226,0.0012967035,0.013042142,-0.015327757,-0.0074459203,-0.021996098,0.040434174,0.078229286,-0.017943254,-0.017342396,-0.03258768,-0.012924327,-0.05395936,-0.006032138,0.033435952,-0.016694413,-0.007746349,-0.019368818,0.011781519,-0.012347032,0.0076108617,0.033624455,-0.00029748338,0.048634112,0.01294789,0.020217087,-0.00329588,-0.027592318,0.0118522085,-0.027733697,0.010450208,0.026744049,-0.0112866955,0.01426742,-0.005828907,0.00728687,-0.04224853,-0.02596647,0.027827948,-0.005319356,-0.00089539547,-0.00034074363,0.013478058,0.016588379,0.02714462,-0.034449164,0.013242428,-0.020700129,0.018320262,0.013666563,-0.0066271047,0.005599167,-0.023586601,-0.012877201,0.055043258,0.03503824,-0.0037200148,-0.016647287,-0.011327931,-0.02224351,0.012370596,0.024152115,-0.016234934,0.00961961,-0.024317056,0.0033135524,-0.017259926,-0.0071985084,-0.03456698,-0.043473806,-0.00049703283,-0.028464152,-0.00078347104,-0.026013594,0.010762418,0.03246987,-0.008853812,-0.007280979,0.011593015,-0.021972533,-0.004232511,-0.02504751,0.024199242,0.00791129,-0.029736554,-0.0067979367,-0.013053924,-0.008429677,-0.0038790654,-0.006185298,0.022314198,0.038572695,0.025872217,0.007233853,0.02272655,0.004085242,0.06493974,0.008659417,0.028134268,-0.003101485,-0.012240998,-0.004256074,0.0041971663,-0.012959671,-0.0016214317,0.003310607,-0.009631393,-0.015881488,-0.03272906,-0.012853637,0.054619126,-0.005557932,0.026861865,0.0071219285,0.043638747,-0.028464152,-0.00052390946,-0.019121407,0.016564816,-0.0019498415,-0.022361323,0.045335285,0.004703772,-0.007498937,-0.05000077,0.010479662,-0.0182967,0.0010809544,0.028087143,-0.03845488,-0.004924675,0.0011729975,0.010844889,-0.008936282,0.06724891,-0.006697794,-0.019969676,0.0136547815,0.017295271,0.0066742306,-0.0054784063,0.022573391,-0.020217087,-0.0063384576,-0.017530901,-0.009160131,0.027026806,0.0143852355,0.037017535,0.017424867,0.007976089,0.02217282,0.015999304,-0.030019311,-0.008582837,0.008005543,-0.026013594,-0.025000384,-0.011269024,-0.025613023,0.046183556,-0.011227788,0.0002836769,0.03324745,0.008370769,0.00562273,-0.014137823,0.0029998694,-0.034142844,-0.0043856706,-0.0064268187,-0.03513249,0.01961623,-0.045947924,0.015516262,0.0031279933,-0.025942907,0.0016464674,-0.009984838,0.0051691416,0.00033632555,-0.043591622,-0.020028584,-0.0294538,0.02085329,0.014020008,0.032776188,-0.022137474,-0.0017436648,-0.031008959,0.023669073,0.047267456,-0.003970372,0.022514483,-0.017342396,0.01348984,-0.0042148386,-0.0028231465,0.045995053,0.021772249,0.03046701,-0.013383806,0.025518771,0.034920424,0.0028143104,-0.0107800905,-0.002488846,-0.004206002,-0.02860553,0.007822929,0.0090069715,-0.04055199,-0.0042678555,0.031975042,-0.017106766,0.0019822407,-0.009195476,0.019203877,-0.046183556,0.04976514,-0.005068999,-0.012146747,0.0037730315,-0.012229217,0.03202217,-0.023739763,-0.04257841,0.009601939,0.0018732616,0.014314546,-0.016376313,-0.0016582488,-0.016953606,-0.021018231,-0.024246367,0.042201404,0.030207817,0.0017245199,-0.0064857267,0.02535383,0.012995016,0.027333125,0.0025477535,0.0029527433,-0.022290634,-0.039491653,-0.010090872,-0.0026478965,-0.006956987,-0.023056434,0.012417722,-0.038030744,-0.02093576,-0.0046625366,0.01357231,0.04627781,0.020747256,-0.0028805814,-0.053629477,-0.016564816,0.018426297,0.011887553,0.037253164,-0.0006932688,-0.00961961,0.025165325,0.023598384,-0.0029056172,0.009401653,-0.0037553592,-0.009095333,0.011174771,-0.005985012,0.0016037594,-0.01519816,-0.006621214,-0.045052532,-0.0008335425,0.0092602745,0.009625501,0.0072691976,-0.023987174,0.012924327,-0.01930991,-0.009855241,0.005239831,-0.038973268,-0.031975042,0.0143263275,-0.00016788665,0.03016069,0.0074635926,0.016694413,-0.015963959,-0.004076406,0.0012355868,-0.032092858,-0.016423438,0.01885043,0.016034648,-0.0045800656,-0.02457625,0.007840601,0.001643522,-0.013560529,0.017012514,0.01139862,0.0057110917,-0.007923072,-0.011410401,-0.0045947926,-0.015563387,-0.027922202,-0.03567444,0.0052633937,-0.023645509,-0.0022105076,0.026744049,0.010509116,0.0028334553,-0.0030484681,0.0059202136,0.012123183,-0.009990728,0.037653737,0.015469135,0.008105685,-0.022667643,0.008582837,-0.029335983,0.02388114,0.04319105,0.016117118,0.03923246,-0.0043679983,0.0030484681,-0.0024579195,0.010897906,0.00048488317,-0.012370596,-0.02636704,0.023280282,0.019686919,-0.01575189,0.0014491269,0.044746213,0.026956117,0.035085365,-0.011392729,-0.0045093764,0.040363487,0.009077661,-0.016835792,0.031904355,0.017094985,0.008900938,-0.0008188156,-0.047102515,-0.03086758,-0.004479923,0.0034166407,0.0031692288,0.04985939,0.019993238,0.014715117,0.0135369655,-0.01728349,-0.022702988,-0.013796159,-0.0044475235,-0.004132368,-0.017118547,0.0043974523,0.0050925617,0.0062383143,0.0085298205,-0.017790094,0.0014999347,0.004512322,0.03814856,-0.029524488,-0.020099273,-0.017648716,0.0023018143,-0.0010581277,0.02093576,0.013442714,-0.005007146,0.006691903,0.010732965,0.0030484681,-0.02636704,0.015339538,-0.018167103,-0.0045182128,-0.0060969363,0.031574473,-0.027780823,0.011805083,-0.010379518,-0.034472726,-0.008794905,-0.00469199,-0.01565764,-0.030207817,0.008264736,-0.026626235,-0.01387863,0.0016022866,-0.0050984523,0.0007462856,0.0066094324,0.046560563,0.0037641954,0.0032899892,0.013831504,0.007793475,0.02247914,0.0011980332,0.026579108,-0.044557706,-0.040198546,-0.01163425,0.020275995,0.015728328,-0.03645202,-0.005937886,-0.019474851,0.037418105,0.014031789,-0.019486634,-0.00558444,0.023527695,0.014844715,-0.004023389,-0.017566245,0.031056086,-0.043143924,-0.016906481,-0.033459514,-0.005083726,-0.021100702,-0.020994667,0.030019311,-0.043615185,0.017460212,-0.012676915,0.005054272,0.031008959,0.006892189,0.024764754,0.021430584,0.02738025,-0.011386839,-0.0008283881,0.014679773,0.0028349282,-0.03418997,0.036098577,0.0029468525,-0.0074871555,-0.0064150374,0.0065976507,0.00048598766,-0.024741191,-0.012971453,-0.05179156,-0.023822233,0.011327931,0.025377393,-0.013713689,-0.0053370283,0.01782544,-0.01799038,-0.05094329,-0.021524835,-0.011899334,-0.01535132,0.005817125,0.028629092,0.014679773,0.020688348,0.017236363,-0.082800515,0.018249573,0.015692985,0.013018579,-0.034590542,0.03327101,0.026696922,0.020134617,-0.0010456098,0.07945456,0.02279724,0.011981805,-0.017790094,0.0032782077,0.009001081,0.011015721,0.011681377,0.04038705,0.005304629,0.019286348,0.033388827,-0.018131759,0.0025182997,-0.002318014,0.0047184983,0.0029601068,-0.0020779655,-0.02100645,0.010727073,-0.00283051,-0.01480937,0.010762418,0.013855067,-0.0019704592,-0.0069039706,0.013065705,0.010986267,-0.021383457,-0.009213149,0.010338283]},{"id":"interface-GatewayMessageDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageDeleteDispatchData\nDescription: MESSAGE_DELETE — id, channel_id, guild_id?, content?, author_id? (Fluxer may send content/author_id)\nProperties: author_id: string | null, channel_id: string, content: string | null, guild_id: string, id: string","meta":{"url":"/docs/typedefs/GatewayMessageDeleteDispatchData"},"embedding":[0.046602402,0.006644023,-0.019696465,-0.0045471503,0.025727918,-0.01683388,-0.02711798,0.028837888,0.008852807,0.004709128,0.028201757,-0.02516247,-0.017976558,0.031335287,0.052492492,0.0028817272,-0.033832684,0.025068229,0.0017950053,0.060455896,-0.014418944,0.028555162,0.019131016,0.04596627,-0.025021108,0.010372451,0.019578664,-0.0070504392,0.028107515,-0.03939293,0.050654784,-0.025445195,0.064885244,-0.01942552,0.013712132,0.03098188,-0.015219996,-0.0006747836,-0.04914692,-0.026717454,-0.042220175,-0.018023679,0.025068229,0.02718866,-0.008640764,0.030840518,-0.0007936898,0.008051755,0.010643395,0.0017184342,-0.01094379,-0.0065497817,0.010920229,0.07996388,0.0144071635,0.0055808616,-0.020803802,0.012640136,-0.0087055545,0.023407223,-0.040900793,-0.014289361,-0.0006217728,0.007933953,-0.014018417,0.0011669743,-0.05178568,0.056686237,0.022900674,0.061021347,-0.023348322,-0.02195826,-0.020521078,-0.027000178,-0.022052502,-0.030840518,-0.018388866,-0.03998194,0.0043557226,-0.049288284,0.03677773,0.041772526,-0.07949267,-0.06973868,-0.009229773,0.025751479,-0.016221311,0.0019569828,-0.008788017,0.0097598815,-0.050560545,0.0077749207,-0.039675653,-0.013276266,0.0048769955,-0.056497756,0.013346947,0.0023854868,-0.031853613,0.03310231,0.06328314,-0.03944005,-0.043351073,-0.013464749,0.00578996,-0.033714883,-0.032678228,0.028743645,-0.037013333,-0.026741015,-0.052586734,-0.009895354,-0.017540691,-0.0071387906,-0.030534234,0.008711445,0.016881002,-0.033337917,0.054283082,0.024785504,-0.05941924,-0.017093046,0.023077378,-0.030675596,-0.024691263,-0.02839024,0.022747533,-0.03807355,-0.07421515,-0.030086586,0.052492492,-0.04061807,0.026269807,-0.0309112,-0.003354407,0.035175625,-0.009235663,-0.025256712,-0.019178137,-0.04900556,0.016610058,-0.004140734,0.013771033,0.0711523,-0.002619618,0.01223961,0.009400586,0.037296057,0.037696585,0.027330024,-0.024267176,0.008316809,0.01946086,-0.007044549,-0.00971276,0.014913711,0.057911377,-0.025751479,-0.019849608,-0.029992344,0.035529032,-0.054424442,-0.002844914,-0.018494887,-0.03538767,-0.0040317676,0.010195748,-0.01816504,-0.031358846,0.02136925,-0.028508041,-0.043351073,-0.03161801,-0.028790766,-0.010172187,0.0102546485,0.0016875111,-0.033314355,-0.01810614,-0.0030834628,0.031877175,-0.0026770465,-0.006708814,-0.055131253,-0.02398445,0.0053187525,-0.024785504,0.008234347,-0.030251509,-0.015384918,-0.021522393,0.02319518,0.01804724,0.004947677,0.039487172,-0.006178706,0.054518685,-0.043351073,0.011662381,-0.045612868,0.036118038,0.001672786,0.019932069,-0.014760569,0.00485049,0.002830189,0.019778926,0.0150197325,-0.0053040273,-0.005542576,0.03293739,-0.009159092,-0.018329963,-0.021699097,-0.06766537,0.018471327,-0.022853553,0.037814386,-0.0144071635,-0.011809633,-0.022676852,0.037201818,0.011921545,-0.029285533,-0.0075275367,-0.018259283,-0.013806374,-0.018483106,-0.054565806,0.0021425206,0.0047503584,0.009382916,-0.0144071635,-0.08467595,-0.021227889,0.0069267475,-0.028578723,0.011515128,0.022877114,0.0073272735,-0.037720144,-0.05489565,0.005180335,0.0047474136,-0.021534173,0.00041414704,0.0030687375,-0.016091729,-0.011450337,0.03661281,0.0811419,0.046225436,0.035906,-0.0073920647,0.004594271,-0.038426954,0.03428033,-0.0323955,0.045636427,-0.008735006,0.07317849,-0.015820784,-0.034492373,0.024667703,-0.01865981,0.024290737,0.03496358,0.013146684,-0.04573067,0.018412426,0.0062258267,-0.05164432,0.07063398,-0.006850176,-0.027518507,0.0027271123,0.030345751,-0.014925491,0.030487113,-0.034610175,-0.05348203,0.0039110207,-0.0010101506,0.014666327,-0.022523709,0.042974107,0.0375081,0.024761943,0.01803546,0.04971237,-0.043468874,0.020850923,-0.00027223266,-0.049806613,0.013158464,0.05230401,0.013582551,0.0037696585,0.0059696073,0.045283023,0.046248995,-0.0257986,-0.007421515,-0.043657355,-0.0012236665,0.01094968,0.011202954,0.022182085,0.03743742,-0.029780302,0.012522334,-0.010613944,-0.054000355,-0.0031453087,-0.038591877,-0.021133648,-0.007556987,0.06450828,0.01881295,0.0011669743,0.057393048,-0.018223943,0.002647596,-0.08453459,-0.02072134,-0.030463552,0.0065969024,-0.03293739,0.014371823,0.04255002,0.028248878,-0.019755365,-0.003819724,-0.0018450711,0.03633008,0.0014997645,-0.051220234,0.07511044,0.017116604,0.02319518,0.052398253,0.00840516,-0.030180827,0.0057192785,0.010142737,0.0018642138,-0.01686922,-0.011909764,0.026953058,0.015396698,-0.03802643,0.0015755994,-0.012816839,-0.07284865,-0.00034512253,-0.023006696,0.026246246,0.00067441544,-0.048534352,0.0032042097,-0.018459545,-0.014996172,-0.00074988225,0.026081324,0.00773958,-0.0074038445,-0.04080655,-0.016939903,-0.0056456523,-0.036565688,0.018223943,-0.019449081,-0.06493237,0.010496142,-0.007933953,-0.009995485,-0.029568259,-0.017776296,-0.0031511988,-0.042337976,0.016091729,0.053764753,0.0025842777,-0.012522334,-0.0030157268,-0.021145428,-0.011096932,0.035104945,-0.035010703,0.02589284,0.009748101,0.001016777,-0.018483106,0.0037873287,0.0038344495,0.014430723,0.019614004,0.035670392,0.020886263,-0.010077946,0.032466184,0.034515936,-0.0124163125,0.0073861745,-0.036471445,-0.0013156992,0.02638761,-0.017858757,0.029309094,-0.046885125,0.0028596392,0.02970962,0.005937212,0.048769955,-0.012734378,-0.06677008,0.03920445,-0.012922861,0.0072801528,-0.01419512,0.006826616,0.016480476,-0.0070504392,0.0074568554,0.024220055,-0.043468874,0.033479277,0.008617204,0.014077318,-0.07511044,-0.082178555,0.00031143858,0.041819647,-0.0071152304,0.04521234,0.0044175684,0.006914967,-0.028625844,-0.051314477,-0.0027904308,-0.04050027,0.00904718,0.020509297,0.014477844,-0.0028566942,-0.0071270103,0.037885066,0.018577348,0.049900852,-0.03029863,-0.02848448,-0.038992405,-0.0479689,0.027165102,-0.06078574,-0.032701787,-0.020886263,0.0825084,0.0130288815,-0.007374394,-0.045518626,0.008446391,-0.009536058,0.044953175,-0.037013333,-0.009200322,0.0029877487,-0.0047621387,-0.0056456523,0.05560246,-0.020839144,-0.006060904,0.028508041,0.061209828,-0.008069425,-0.023053817,-0.014760569,-0.0009291619,0.072236076,0.01745823,0.018706929,0.029521137,-0.03562327,-0.030251509,-0.0067323744,0.091885425,0.012604795,-0.020379717,-0.031170363,0.029521137,-0.010555044,-0.012333851,0.006708814,-0.012027566,-0.026882377,-0.03814423,0.01160348,-0.025657238,0.028743645,-0.01803546,0.0016212476,-0.02711798,0.026222687,-0.035104945,0.040288225,-0.028885007,-0.05560246,-0.022028942,-0.04667308,-0.044105005,0.030251509,0.013276266,-0.0076276683,-0.00046089964,-0.010248759,0.028295998,-0.03677773,0.026858816,-0.03088764,0.023442563,-0.009541947,0.026976619,0.02586928,0.0032395502,-0.0046944027,-0.004573656,-0.00070533843,-0.08326233,-0.005106709,0.023148058,0.04068875,-0.006320068,0.013771033,0.05993757,0.01946086,0.00026376566,-0.0044970848,-0.012062907,0.039416492,-0.0097952215,-0.01227495,0.006708814,0.035104945,0.026199127,-0.0055101803,0.01612707,-0.022853553,0.04891132,-0.005224511,0.0014776767,0.0051538297,-0.007156461,0.0018863017,0.0013422045,0.02258261,0.012145368,-0.03164157,-0.014772349,0.014383603,0.022700412,-0.0048092594,-0.035222746,0.0048239846,-0.0065144408,-0.016857442,-0.0051685553,-0.010808318,0.017894097,-0.029992344,-0.012451653,0.021534173,0.0115917,0.0043586674,0.020509297,0.033196554,0.025939962,-0.022818213,0.03164157,-0.013240925,-0.020285474,-0.026670333,-0.07049261,0.01294642,0.034657296,-0.043468874,-0.007609998,-0.010814208,-0.03279603,-0.040877234,0.014713448,-0.00550429,-0.003348517,-0.0090295095,-0.0075923274,0.010036715,0.0028169362,0.030769836,0.0022087842,-0.010725856,0.0027874857,0.001016777,0.029285533,-0.043610238,-0.014395383,0.051220234,0.031264603,0.033290796,-0.0061845956,-0.030157268,0.024149375,-0.022806434,0.019295938,-0.020956945,-0.009406475,-0.010496142,-0.028036835,-0.0073920647,0.012852179,0.018306404,-0.021110088,0.011391437,0.024432098,-0.0016477531,0.0031511988,-0.008575973,0.031123241,-0.050654784,-0.043468874,0.0003618725,-0.015915027,0.02136925,-0.018942533,-0.001644808,0.0077808104,-0.018341744,-0.028508041,0.039039526,0.0035252196,-0.023595706,-0.04057095,0.03027507,-0.008193117,0.022641512,0.022347007,0.006767715,-0.025562996,-0.033149432,-0.00420847,-0.006691144,-0.0014938744,-0.02780123,-0.010484362,0.05470717,-0.014312922,0.040523827,0.0052539613,-0.03027507,0.062906176,-0.009547838,-0.015832566,-0.004712073,0.031311724,0.0019569828,0.032583985,-0.0072742626,0.012062907,-0.012522334,0.010390121,-0.01868337,0.0089941695,0.026646772,0.033809125,0.030086586,-0.0037784935,0.004126009,-0.02321874,-0.011550469,-0.025963522,0.01034889,0.023371883,-0.012004006,0.030015904,-0.012545895,-0.0017611373,0.027848352,-0.018636249,0.04130132,-0.024620581,0.023713507,0.0101191765,0.0144071635,-0.0025754424,0.017882317,-0.0034015276,0.0114797875,0.015667643,0.0055366857,0.04207881,0.0205682,-0.04127776,-0.016409794,-0.018059019,-0.0046944027,0.007998744,0.016574716,-0.050607663,0.0061021345,-0.0013341056,0.03409185,-0.009724541,-0.021428153,0.0018995544,-0.033267237,-0.014501405,-0.023018477,0.019896729,-0.024738383,0.018624468,0.0016904562,0.00035138076,0.020556418,0.00837571,-0.004776864,-0.0013760725,0.0063495184,0.0012987651,0.0069503076,0.02003809,-0.007674789,-0.017929439,-0.039652094,0.023572145,0.024879746,0.003481044,-0.043091908,0.025021108,0.02577504,0.01749357,0.0077749207,0.009589069,0.02391377,0.028225318,0.0074332952,-0.04516522,-0.018412426,-0.022299886,-0.0031511988,-0.011821413,0.008888148,0.025515875,-0.008334479,0.006632243,-0.030581353,0.005533741,-0.045518626,-0.012722597,0.015620522,0.0036400764,-0.009565508,0.05367051,0.029261973,-0.0007362614,-0.013417628,0.017811636,-0.039039526,0.0042055254,-0.04191389,-0.0015328963,0.01222783,0.015761884,-0.012510554,0.0010123594,-0.0014438087,0.012157149,0.019189917,-0.034445252,0.022747533,0.0093181245,-0.03418609,0.026646772,0.022829995,-0.017646713,-0.010778867,-0.050042216,0.011267745,0.0077925907,-0.028036835,-0.02188758,-0.0205682,-0.0060550137,-0.01736399,0.032607544,-0.017587813,-0.02589284,-0.020556418,0.0020733122,0.017953,-0.071953356,0.026104884,0.027848352,-0.003681307,-0.016032828,0.019119237,0.029285533,0.03932225,0.008446391,-0.06775961,0.039015964,-0.028319558,0.016515816,0.00516561,0.03951073,-0.019272378,0.009094301,0.021793338,0.006508551,-0.0044764695,0.0054336092,0.011120493,-0.028531602,0.0167632,0.015090413,-0.011821413,0.0010454912,0.0009865903,0.028908568,0.009518388,0.02260617,-0.028743645,-0.014666327,0.011138163,0.009418256,0.020450396,-0.005916597,0.010985021,0.0057133883,-0.04184321,0.015997488,-0.014960832,-0.017717395,-0.006196376,-0.018706929,0.0057722894,-0.015113974,-0.005728114,0.0056868833,0.0055072354,-0.041513365,-0.00516561,-0.00026763103,-0.027165102,0.04379872,-0.008428721,-0.0205682,-0.013959516,-0.020898044,-0.037531663,0.008511182,0.038591877,0.03164157,-0.018824732,0.02331298,-0.027471386,-0.0245499,-0.009983704,0.004338052,-0.014065538,-0.005766399,0.022488369,0.050089337,0.051502958,0.015973927,0.02518603,-0.011385546,0.0021366307,0.048204508,0.026882377,-0.022712192,0.022936014,0.018259283,0.011255965,0.008193117,0.019767147,-0.014548525,0.014513185,-0.022888895,-0.0040494376,0.015644083,-0.020261914,-0.0019923234,0.01865981,-0.019213477,0.008670215,-0.05089039,-0.0074332952,-0.0012972926,-0.048769955,0.011797853,-0.0032042097,-0.015620522,-0.048534352,-0.0076512285,0.013217364,0.0060373438,0.018188601,0.008452281,0.010613944,-0.0016919287,0.015620522,-0.021204328,0.018977875,0.0036665818,-0.03220702,0.030463552,-0.00011531694,-0.0037019223,-0.02586928,-0.01159759,0.010572714,-0.005745784,0.01030177,-0.014949052,0.029615378,-0.00969509,0.0054512797,-0.011568139,0.034586616,-0.03743742,0.014136219,-0.0053187525,0.023725288,-0.007498086,0.01683388,0.0070563294,0.023784189,-0.046248995,-0.00070239336,-0.008316809,0.020933384,-0.010519703,-0.022782873,0.032583985,-0.011403217,0.027447825,0.011403217,-0.0044764695,-0.033408597,0.0048122047,-0.0062847272,-0.034539495,-0.0004925589,-0.0016948738,0.041089278,-0.031523768,0.0059754974,-0.012816839,0.033008073,0.027447825,0.008234347,-0.008746785,0.0038962953,-0.032466184,-0.039416492,-0.001309809,0.014289361,-0.045471504,0.004211415,-0.02848448,-0.008752676,0.017623153,-0.0042261407,-0.029309094,0.027565626,0.0070092087,-0.024997547,0.04895844,-0.0012774136,-0.04325683,-0.0120746875,-0.019060336,-0.013971296,0.0451181,0.020544639,0.030463552,-0.01607995,-0.024149375,-0.009382916,-0.0005275313,0.030793397,0.029191293,0.014477844,0.009812892,-0.011721281,0.00095861236,0.023360102,-0.03432745,0.016916342,0.035811756,0.020332595,-0.000051446266,0.0023177508,0.03041643,-0.021746216,0.014466064,0.04507098,-0.016032828,0.035364106,-0.0038904052,0.0066027925,-0.016386233,-0.01419512,-0.004953567,0.031146802,-0.028201757,0.023725288,0.018636249,-0.014065538,0.0019496202,-0.027895473,0.028248878,0.052021287,-0.01606817,-0.0034663186,-0.0478511,-0.025610117,-0.05032494,-0.009223883,-0.012828619,-0.021498833,-0.013464749,-0.023383662,0.02445566,-0.007992853,0.0013790176,0.020874484,0.027636308,0.04085367,0.007562877,0.01737577,0.0026947167,-0.027895473,0.014937271,-0.027259342,0.00063686614,0.02836668,-0.034398135,0.002456168,-0.011526909,0.010472583,-0.025115348,-0.0046296115,0.0021366307,-0.010708186,0.0060962443,-0.013370507,0.015055073,0.012746157,0.029992344,-0.035175625,-0.011574029,-0.023501463,0.015314237,-0.0052451263,-0.026081324,0.016998803,0.002641706,-0.006838396,0.059089396,0.04391652,-0.004797479,0.004128954,-0.011202954,0.0051332144,0.0060785743,0.024314297,0.0110203605,0.0090354,-0.002002631,-0.012969981,-0.011833194,-0.013252705,-0.031123241,-0.017316869,-0.00548073,0.00026744694,0.01094968,-0.051455837,0.02325408,0.011032141,0.013346947,-0.02638761,0.016056389,-0.010219309,-0.020686,-0.015632302,0.018388866,-0.0027550901,-0.0030392872,0.008841027,-0.0060550137,0.0017861702,-0.0071329004,0.012816839,0.013617891,0.03866256,0.01874227,0.016468694,0.0088586975,-0.019826047,0.020615319,-0.010955569,0.031146802,0.0072801528,-0.009276894,-0.011880314,0.017234407,-0.011473898,-0.012345632,-0.0020630045,-0.0077101295,-0.005869476,-0.01359433,-0.005940157,0.03486934,0.000023364795,0.024432098,0.013629671,0.018907193,-0.05866531,-0.013158464,-0.024408538,0.009094301,0.008958829,-0.04829875,0.058948033,0.013818154,0.0011647656,-0.06856066,0.008823357,-0.005374708,0.011986336,0.013311606,-0.022382347,-0.0018863017,0.0009814365,0.003236605,-0.0017935327,0.056921843,-0.009100191,-0.0104077915,0.0057398938,0.009812892,0.029945225,-0.008487621,0.030793397,-0.012722597,-0.0010027881,-0.025939962,0.005345258,0.01165649,-0.0037667134,0.035057824,0.013523649,-0.008687885,0.0025047613,0.0058930363,-0.01097913,0.008287358,-0.014996172,-0.022099622,-0.0153260175,-0.04064163,-0.012958201,0.02707086,0.012593015,0.012793278,0.002425245,0.014454284,0.018235723,-0.01739933,-0.013829934,-0.031264603,-0.0014600063,0.005692773,-0.038992405,0.010496142,-0.03873324,0.025845721,-0.02586928,-0.01611529,-0.0074568554,-0.009117861,0.014348262,-0.022900674,-0.04900556,-0.005630927,-0.022217425,0.013099563,0.013782813,0.025233151,-0.029238412,-0.0072212517,-0.035953116,0.022453029,0.04584847,-0.014089098,0.031241044,-0.026741015,0.010761197,-0.00454126,-0.0036371313,0.02459702,0.029780302,0.021098306,0.0016212476,0.020591758,0.048110265,-0.00032634786,-0.020509297,0.007963403,0.007692459,-0.027989713,0.01999097,-0.0051214346,-0.032065656,0.020874484,0.024066912,-0.0030628475,0.0035576152,-0.009088411,0.031877175,-0.046720203,0.023136279,0.004211415,-0.03345572,0.013099563,-0.023996232,0.032513306,0.018447766,-0.016492255,0.0001349199,-0.002199949,0.0034103629,-0.025727918,-0.013052442,-0.003916911,0.0009343157,-0.005150885,0.025704358,0.0039286907,0.031523768,-0.006985648,0.0053275875,-0.02707086,0.019896729,0.009506607,0.0061845956,-0.025445195,-0.069126114,-0.017634934,0.002360454,-0.005301082,-0.021675536,0.013146684,-0.055885185,-0.046013393,-0.013818154,0.016574716,0.026835255,0.0102369785,-0.027471386,-0.017752735,-0.009341685,0.026693894,0.013346947,0.007044549,0.0026152006,-0.019083895,0.007374394,0.030769836,-0.011244184,-0.0040435474,-0.019531542,-0.010519703,-0.0012840399,-0.008116546,-0.00578996,-0.01749357,-0.024220055,-0.04533014,-0.011191173,0.0022397072,-0.005828245,0.009983704,-0.016562937,-0.013382288,-0.005736949,-0.017175507,0.008788017,-0.030816957,-0.013276266,0.011397326,-0.009494827,0.011833194,0.02331298,0.029144172,-0.00258575,-0.020438617,-0.008299138,-0.027165102,-0.024290737,0.006655803,-0.0037637684,-0.00077012944,-0.017257968,0.006314178,-0.017576033,-0.03498714,-0.0015005007,0.029638939,0.01222783,-0.018294623,-0.02582216,-0.014524965,-0.0005139105,-0.025727918,-0.040335346,0.00045721832,-0.027824791,0.008499402,0.031217484,-0.012663696,0.0144071635,-0.022453029,-0.0047385786,-0.017293308,0.006985648,0.019178137,-0.02136925,0.013240925,0.0063789687,-0.0083992705,-0.022358786,0.006956198,0.034115408,0.01223961,0.03555259,-0.021428153,0.0057929046,0.008852807,0.008257908,0.013653232,-0.01684566,-0.027424265,0.016798541,0.008617204,0.002943573,-0.0034368683,0.016386233,0.022405908,0.0013834352,0.0024973988,0.010590384,0.033125874,0.04061807,-0.0117860725,0.032466184,0.00027757057,-0.0016315553,-0.009483047,-0.039063085,-0.01995563,0.0071387906,0.013052442,0.006119805,0.025963522,-0.009435927,0.01353543,0.013500089,-0.0015741269,-0.053764753,0.01675142,-0.010666955,-0.016244872,-0.032748908,-0.012840399,-0.010555044,0.038874604,0.0133351665,-0.031029,0.014913711,-0.004128954,0.037131134,-0.01030177,-0.0180119,-0.006325958,0.004632557,0.013441188,0.015820784,0.019614004,-0.033809125,0.015066854,-0.0013444134,-0.009324014,-0.037696585,0.008281468,-0.018589128,-0.015926806,0.005091984,0.018223943,-0.003672472,-0.004768029,-0.0066145724,-0.022453029,0.0035752854,-0.013087783,-0.000732212,-0.009435927,-0.0044823596,-0.04066519,-0.012168929,0.010602164,-0.0012752047,0.015196435,-0.0016963463,0.04132488,0.00053268514,-0.019213477,0.032018535,0.02909705,0.024408538,-0.000028829236,0.026693894,-0.02131035,-0.052398253,-0.026953058,0.0002827244,0.007833822,0.007686569,0.005180335,-0.018553788,0.018883632,-0.011126382,-0.025421634,-0.01940196,0.0075275367,-0.007822041,-0.01684566,-0.020956945,0.017634934,-0.032042097,-0.0053953235,-0.011214734,-0.00056434434,-0.050136458,-0.009282784,0.03925157,-0.03284315,0.0041672396,-0.010266429,-0.0005680257,0.014159779,0.010537373,0.029214853,-0.0017140165,0.028743645,-0.023124497,-0.006826616,0.01550272,0.0067441547,-0.023065597,0.043068346,0.005359983,-0.01940196,0.006255277,0.01225139,0.029874543,-0.0080753155,-0.011385546,-0.056921843,-0.024691263,-0.012840399,0.0036430215,-0.00058348716,0.0055072354,0.014642767,0.0021307406,-0.03984058,-0.043563116,0.0048769955,-0.01739933,-0.003672472,0.017552473,-0.0008356567,0.016350893,0.009388805,-0.06898475,0.015373138,0.025704358,0.00011476475,-0.04372804,0.04328039,0.03934581,0.006708814,-0.018612688,0.058571067,-0.0038256142,0.0076335585,-0.04462333,0.01547916,0.016668959,0.022217425,0.015962148,0.021651976,-0.007368504,0.02577504,0.043421753,-0.029238412,-0.018023679,-0.009577288,0.0016639507,0.0026358159,-0.0065380014,-0.017964778,0.026104884,-0.021498833,-0.023560366,-0.0027315298,0.026788136,-0.03366776,-0.0051273243,0.012086467,-0.0017081265,-0.01999097,0.0093181245,-0.012062907]},{"id":"interface-GatewayMessageReactionAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionAddDispatchData\nDescription: MESSAGE_REACTION_ADD — message_id, channel_id, user_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string, user_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionAddDispatchData"},"embedding":[0.03743033,0.02144638,-0.007214097,0.044252608,0.014866111,0.006816515,-0.011766123,0.008049595,-0.007928592,-0.021734484,-0.029593932,-0.024730755,0.009818547,0.013759796,0.018703641,-0.01402485,0.0028392542,0.031760465,-0.022979088,0.08140636,-0.03643926,0.03367347,0.025675733,0.033581275,-0.0017012478,0.019602522,-0.0084932735,0.04552026,-0.017816285,-0.032521058,0.025721828,-0.030308427,0.07486066,-0.0052982126,-0.011293635,0.028856387,-0.04932322,0.019130034,-0.0430541,0.0041602063,-0.030331476,-0.038813226,0.029132966,0.029962704,-0.07458408,-0.0126650045,-0.046949252,0.0024315887,-0.0059752543,0.018357918,-0.016064618,0.0041890163,0.015972426,0.081360266,0.021504002,-0.03272849,-0.0009781094,-0.011501068,-0.04058794,0.029709173,-0.021792104,-0.02634413,-0.004626933,-0.01741294,0.0014073828,-0.03132255,-0.051628042,0.01923375,0.038536645,0.015799563,0.013137493,-0.017263127,-0.0058859424,0.012284708,0.0046384567,0.0013778522,-0.04969199,-0.044552237,0.026413275,-0.045819886,-0.00035544697,0.050383437,-0.06379751,-0.08785987,-0.0065687466,0.010348657,-0.014727821,-0.028579809,-0.029709173,0.01733227,0.0103083225,0.009674496,-0.09966056,0.0064823157,-0.00834346,-0.040541843,0.022149352,0.014382098,-0.026436323,0.025514394,0.068407156,-0.09366802,-0.04266228,-0.03574781,0.02080103,-0.016721493,0.016882831,0.020190252,-0.028211037,-0.014681725,-0.040357456,-0.0030221995,0.015741942,-0.0054681934,-0.0052924505,-0.0097033065,0.041786447,-0.05361019,-0.0012698136,-0.011996605,-0.061123915,-0.013540837,0.05153585,-0.02961698,-0.0094612995,-0.009933788,0.0092769135,-0.035379037,-0.045197584,0.010406277,0.0312995,-0.017263127,0.026828144,0.0056785084,-0.0023465983,-0.01422076,0.02203411,-0.011011293,-0.03157608,-0.017124837,0.0155690815,-0.009795499,-0.010319847,0.03286678,-0.04121024,-0.0114549715,-0.05467041,0.0122386115,0.019095462,-0.000057395504,-0.06601014,0.0463039,-0.038813226,-0.028003603,0.042178266,0.00043971709,0.0031143925,-0.009697544,0.008447178,-0.043745548,0.028625906,-0.1016888,-0.016225956,-0.00932301,-0.028372375,-0.0013807332,0.00013180709,-0.0020066367,-0.023059757,0.016640825,0.029916607,-0.045474164,-0.04918493,-0.00060429587,-0.04319239,-0.004540502,-0.017793236,0.009674496,-0.046764866,-0.0032123476,0.036854126,0.011985081,-0.06992834,-0.086799644,-0.025376106,-0.019475756,-0.030239282,-0.0010011577,0.029063823,-0.0141170425,-0.007484914,0.02922516,0.049507607,0.010267988,0.03457235,-0.057021327,0.031645223,-0.031599127,0.009115576,-0.042570088,0.03471064,-0.016479487,0.044460043,-0.0029300067,-0.0069836145,-0.02844152,-0.012826342,-0.027289107,0.01872669,-0.0077614924,0.03512551,-0.05310313,0.012780245,0.009697544,-0.07882496,0.018703641,-0.08140636,-0.008752567,-0.03653145,-0.00081677176,-0.058358125,0.017989146,0.06407409,-0.053379707,-0.018265724,0.033973094,0.005825441,-0.0108499555,-0.017309222,0.019717764,-0.026712902,-0.010907576,0.0012885403,-0.053010937,0.010705904,-0.0053904057,0.04203998,0.009870406,0.0365084,0.001925968,0.036831077,-0.020443782,0.014739345,0.017839333,-0.0076577757,0.022402883,0.021227423,0.013079872,-0.02399321,0.03012404,0.046280853,0.038398355,0.01741294,0.0010587783,0.008193647,-0.03466454,-0.0043705213,0.0078306375,0.018346393,0.03247496,0.039827347,-0.020570548,-0.013886561,0.049599797,-0.019602522,-0.01821963,0.053379707,0.033051167,-0.030147089,0.00786521,0.03182961,-0.043999076,0.055500146,0.0033016594,-0.006839563,0.000009346464,0.01788543,-0.0038202447,0.017124837,0.012918535,-0.03911285,-0.005520052,0.03468759,0.022564221,-0.033857856,0.030285379,0.050429534,-0.006822277,0.029202111,0.028810292,-0.040979758,0.0070815696,-0.0007569904,-0.03233667,0.009622637,0.03793739,0.0029300067,0.0020325661,0.024592465,0.039320286,0.02144638,0.00988193,-0.005756296,-0.035056364,0.025790973,-0.015799563,0.014935255,-0.0024143024,0.04307715,-0.008499036,0.015822612,-0.0149006825,-0.02315195,-0.005635293,-0.050936595,-0.013898085,0.019590998,0.042178266,-0.009334534,0.016387293,0.009997171,0.016076142,0.021964967,-0.06158488,-0.024039308,-0.039089803,0.020697314,-0.054716505,0.020893224,0.04409127,0.024799898,-0.04227046,0.03026233,0.024845995,0.066378914,0.03146084,-0.04918493,0.045082346,0.04008088,0.033880904,0.06158488,-0.0005690033,-0.017827809,-0.030147089,0.009271151,-0.03404224,-0.023762729,-0.001010521,0.019510329,0.00456355,-0.02558354,0.0052809264,-0.045612454,-0.08237439,0.033927,-0.04720278,-0.01105739,-0.0070297113,-0.008032309,0.036692787,-0.017401416,-0.0022472027,0.0016580323,0.009783975,0.038790178,-0.009812785,-0.02228764,0.00054523477,-0.0029789843,-0.030561958,-0.016859783,-0.012618908,-0.063474834,0.0037568621,-0.017977621,-0.008418367,-0.016848259,-0.0069432803,-0.014243809,-0.00086214795,0.013702175,0.028487617,0.018380966,0.021849725,0.0055661486,-0.021457905,-0.03498722,0.00005559486,-0.010711666,0.038813226,0.04369945,-0.041118048,-0.03381176,-0.0038721033,-0.008418367,0.018404014,0.034756735,0.013563885,0.029086871,0.004131396,-0.0059464443,0.008066881,0.026943386,-0.008648849,-0.03286678,0.023313288,-0.028579809,0.017701043,0.02791141,-0.011656644,0.049645893,0.0026231771,0.0103659425,0.06282949,-0.00671856,-0.03613963,-0.010118174,0.011639358,-0.008084168,0.028764196,-0.00037885533,0.0040737754,-0.012273184,-0.00923658,0.009161673,-0.012411473,0.027519591,0.0012208361,0.026505468,-0.023105854,-0.09233122,-0.0045116916,0.06559527,-0.0083722705,0.07232536,-0.04005783,0.015695848,0.017378367,-0.029847462,-0.0011293634,-0.0573901,0.0065111257,0.015476889,0.030746343,-0.01539622,0.00029764633,0.002611653,-0.023566818,0.025952311,-0.005047563,-0.03756862,-0.008908142,-0.03925114,0.034549303,-0.036324017,-0.024338935,-0.00044331836,0.05845032,0.002961698,-0.0097033065,0.0044742385,0.0113339685,0.0018611448,0.059418347,-0.02225307,-0.0053010937,-0.051904622,-0.00006306753,-0.0046816724,0.041325483,-0.01948728,-0.004168849,0.024062356,0.04867787,-0.030700246,-0.04946151,0.017931525,0.020489879,0.04254704,0.049738087,-0.01144921,0.06121611,-0.004742174,-0.040403552,0.002726894,0.051720235,-0.0069720903,-0.029732222,0.0017387011,0.0127226245,0.022690985,0.0091271,0.00061545987,-0.0110862,0.013736747,0.0034370678,0.026966432,-0.045197584,0.006516888,-0.01131092,-0.012872438,-0.017908478,-0.020996941,-0.025929263,0.025076479,0.011794933,-0.0087986635,-0.008389557,-0.018772786,-0.00081677176,-0.007052759,-0.003566714,0.003154727,-0.0352177,0.0012885403,0.0062691197,-0.03743033,-0.005044682,0.0016868425,-0.0041918973,-0.0018539423,0.014301429,0.02360139,0.0074791517,0.0066551776,0.00596373,0.035033315,-0.06919079,-0.009472824,0.005355833,0.017124837,-0.026021454,0.032290574,0.0313456,0.02225307,-0.02765788,-0.030723294,0.012895486,0.032567155,-0.030239282,0.0042869714,-0.0013526432,0.02289842,-0.01690588,0.018484684,0.010348657,-0.008660373,0.04653438,-0.0061942125,0.011962033,-0.01808134,-0.012918535,0.006660939,-0.0023782896,0.009795499,0.0058830613,-0.012088798,-0.01831182,0.017067216,-0.017770188,0.02765788,-0.018957172,-0.005399049,-0.020812554,-0.053195324,0.023924066,0.0228408,0.006021351,-0.028741147,-0.0052895695,-0.013356451,0.021285044,0.012895486,-0.01962557,0.0113973515,0.03643926,-0.015373171,0.029063823,-0.0012863795,-0.04144072,-0.02440808,-0.04448309,0.029455641,0.014578007,-0.029086871,0.0035119746,-0.011685454,-0.01774714,-0.029501738,0.026597662,-0.018945647,0.012595859,0.03233667,0.035586473,-0.00769811,-0.0021506883,-0.017274652,-0.013967229,0.012688053,0.016306626,0.025537442,0.003952772,-0.038421404,-0.014739345,0.028602857,0.051443655,0.01956795,-0.0076462515,-0.039504673,0.028026652,-0.014681725,0.027427398,-0.021550098,-0.02830323,-0.039089803,-0.010170033,-0.0057102,0.019395089,0.0071622385,-0.020386163,-0.02583707,0.037361186,-0.0035926434,0.0088562835,-0.009559255,0.04766375,-0.017366843,-0.021757532,0.025330009,-0.009628399,-0.0016277814,-0.026574614,-0.020927796,-0.051720235,-0.020582072,-0.041164145,0.037130702,-0.032244477,0.008268554,0.015361647,0.008112978,0.00023210292,0.039343335,0.02791141,0.047525458,0.017839333,0.015534509,-0.015165738,0.028925532,0.0102449395,-0.025468297,-0.008741043,0.046488285,-0.024223693,-0.0006071769,0.004952489,-0.03586305,0.06250681,0.0005898907,-0.040472697,-0.023405481,0.010746239,0.013079872,0.00825703,0.024892092,0.037038513,-0.023025185,0.023059757,0.02491514,0.020005867,0.024592465,0.0008405403,0.022183925,0.008983049,-0.003860579,-0.019014793,-0.0056900326,-0.016836734,0.00786521,0.0032411579,0.052549973,0.005021634,-0.0150044,-0.0014232284,0.04579684,-0.00635555,0.060570758,-0.017896954,0.037637766,-0.0062864055,0.01962557,-0.007847924,0.0069663287,-0.013333403,0.047802035,0.02583707,0.0495537,0.006701274,0.0042005405,-0.01525793,-0.01010665,0.0031921803,0.0027902767,-0.019602522,0.02186125,-0.020443782,0.006320978,-0.00526364,0.043976028,0.019418137,-0.014151615,-0.0049755373,-0.014197712,-0.0004350354,0.00610202,-0.009484348,-0.011138059,0.003952772,0.025929263,0.006528412,0.009870406,0.030631103,-0.015580606,-0.0032209905,-0.0022803345,0.030423667,0.021457905,0.03666974,-0.015246406,0.025675733,-0.007098856,0.034088336,0.019982819,0.026067551,-0.032451913,0.0053702383,0.021169802,0.017343795,0.00867766,0.0011380066,0.006528412,-0.022091731,-0.0022760131,-0.011616309,-0.026436323,0.000540193,0.0056439363,0.0100663155,-0.035379037,0.028672002,-0.013172065,0.0058801807,-0.0456816,0.0022155114,-0.035932194,0.0008815949,0.023025185,-0.0077787787,-0.024200644,0.020639693,0.0090982905,0.0035955245,-0.0031950613,0.056145497,-0.026021454,-0.004655743,-0.032935925,-0.01279177,0.0034860452,0.0059579685,-0.0225066,-0.008061119,0.00593492,-0.00082037307,0.027773121,-0.023048233,0.011074676,0.0018409776,-0.011558689,0.006021351,-0.024108453,-0.013944181,-0.009530445,-0.010901814,-0.0017156529,0.009109815,-0.020098059,-0.01186984,0.018715166,-0.031161211,-0.0062633576,-0.0063325022,-0.011892889,-0.020985417,-0.027427398,0.0094612995,0.008752567,-0.06679378,0.026367178,0.050567824,-0.019003268,-0.013621506,0.0013771319,0.007594393,0.06720865,-0.016064618,-0.078041315,0.03104597,-0.044851862,0.017032644,-0.020593597,0.037499476,-0.024292838,0.01808134,0.007882495,0.00032015436,0.0050302767,0.007801827,0.013667602,-0.022610316,0.014001802,-0.00394701,0.0029962703,0.0019562189,0.025007334,0.026551565,-0.007127666,0.04540502,-0.019153083,0.00048437304,0.0013980194,-0.015038972,0.014969828,0.013298831,0.013287307,-0.003972939,-0.0260906,0.021457905,-0.000055414795,0.016306626,-0.013298831,-0.0006748811,-0.010878766,-0.014670201,0.03222143,-0.0052146628,0.02399321,-0.017205507,-0.011800695,0.015834136,-0.0010393313,0.002507936,0.017701043,-0.031760465,0.010181557,-0.015868708,-0.033466034,0.028994678,0.002502174,0.013079872,-0.024062356,0.030077944,-0.03625487,-0.002706727,-0.013540837,0.03339689,0.017977621,-0.008170599,0.013840464,0.018911075,0.021158278,-0.019072413,0.04706449,-0.010619474,0.036393162,0.0020584953,0.015223358,-0.012284708,0.01343712,-0.009858882,-0.013321878,0.016214432,0.02687424,-0.007098856,-0.0052838074,0.012434522,0.0018294535,0.014543436,-0.030446716,-0.008458702,0.037476428,0.009455537,0.0035897624,-0.016882831,-0.0155690815,0.006107782,-0.053794578,0.02080103,-0.007317814,-0.023647487,-0.050429534,-0.02191887,-0.022817751,-0.008475988,0.024085404,-0.0033160646,0.023877969,-0.022022586,0.013125969,-0.021227423,0.0066436534,-0.001685402,-0.012054226,0.014566483,0.036024388,0.03199095,-0.020317018,-0.018703641,-0.023901017,0.032774586,0.0032757302,0.007796065,0.01455496,-0.0022832155,-0.012572811,0.022437455,-0.021676863,0.0006143795,-0.022160877,-0.020777982,0.014163139,-0.010279512,0.015073544,-0.0005470354,-0.008136027,-0.05960273,-0.0076808236,0.002857981,0.00887357,-0.018749738,-0.030308427,-0.0031403217,-0.002528103,-0.00991074,-0.008475988,0.007807589,-0.042316556,0.037107654,0.007191049,-0.0006024952,-0.0034313058,0.009449775,0.04319239,-0.026136696,-0.00054055307,-0.008297364,0.018507732,0.002866624,0.011558689,0.01755123,0.00890238,-0.042593136,-0.052734356,-0.007225621,-0.014923731,-0.031944852,-0.006320978,-0.0019778265,-0.00613083,0.0076808236,-0.008112978,-0.03300507,0.019348992,0.0106713325,-0.032060094,0.015776515,0.011115011,-0.014831538,0.007404245,-0.0015413506,-0.006136592,0.043768596,-0.012549763,0.0333047,-0.039020658,-0.013517789,-0.00085782644,-0.043330677,0.009541969,0.008602753,0.011892889,-0.032774586,-0.008475988,-0.0047652223,0.027588734,-0.0391359,-0.02127352,0.047387168,-0.008049595,0.013736747,-0.010746239,0.019279847,0.025030382,-0.020559024,0.021907346,-0.019533377,0.016145287,0.019083938,0.034364916,-0.01422076,0.019683192,0.00046852737,0.023670536,-0.033258602,-0.0123653775,-0.015419268,0.008464464,-0.023647487,-0.00018366562,0.01069438,0.03535599,-0.012446046,0.021826677,-0.025445249,-0.025353057,-0.06278339,-0.02191887,0.02146943,-0.036831077,-0.039181996,-0.0034485918,0.037891295,-0.023198048,0.01265348,0.02830323,0.02178058,0.052872647,0.010832669,0.001828013,-0.046280853,-0.038951512,-0.028602857,-0.010521518,0.02698948,0.01192746,-0.0059061097,-0.0005621608,-0.018231152,0.018991744,-0.013310355,-0.0048113186,0.016986547,-0.045566358,-0.016145287,0.0036963604,-0.011812219,0.015995475,0.04081842,-0.012630432,0.004148682,-0.014670201,-0.009242342,-0.009006097,0.006701274,0.013909609,-0.00016349841,0.008913904,0.023970162,0.027980555,0.023313288,0.0062979297,0.012399949,0.017689519,-0.0076001547,0.0026678331,-0.00635555,0.032129236,-0.023359384,-0.019510329,-0.028510664,-0.022610316,-0.007317814,-0.0021031513,0.004923679,-0.0056727463,0.006015589,0.0059522064,0.02133114,0.03611658,0.017862381,-0.03943553,0.034065288,-0.012446046,-0.043653354,-0.038513597,0.032705445,-0.0009687461,-0.01150683,0.013010727,-0.014992876,-0.01027375,0.019153083,0.01813896,0.017839333,0.006488078,0.01889955,-0.031898756,0.0020570548,-0.018196581,0.033696517,0.0054681934,0.008689184,0.014140091,-0.00080668816,-0.01766647,0.0027974793,-0.022345262,-0.0009817107,0.03694632,-0.01080386,0.026021454,-0.0035148556,0.0033996145,0.02040921,0.0005268682,0.00887357,-0.0042149457,0.049415413,-0.017147886,-0.036324017,-0.018692117,-0.024085404,0.016606253,-0.027934458,0.02894858,0.022529649,-0.0130453,-0.024108453,0.0039988686,-0.030654151,0.020501403,0.025122574,-0.022633364,0.0039815824,-0.0057649394,0.004442547,-0.021308092,0.06158488,-0.0059752543,-0.003860579,0.04798642,0.022656413,0.018369442,-0.005442264,0.048631772,-0.010936387,-0.026159745,-0.00582256,0.0049726563,0.013552361,-0.011351255,-0.009029145,-0.0060847336,-0.011915937,0.013414072,0.026159745,-0.03146084,-0.01069438,0.018945647,-0.0054220967,0.024131501,-0.016709968,-0.03222143,0.034341868,-0.014451242,0.0012647718,0.046903156,0.01080386,0.036900222,0.016283577,0.025860118,-0.027335204,0.011040104,-0.004661505,-0.02329024,0.00394701,-0.04148682,0.008101454,-0.015995475,-0.010613712,0.0031662511,-0.0254222,-0.019383565,-0.027312156,-0.060616855,-0.032682396,-0.026597662,0.004655743,0.00167964,0.012526715,-0.042431798,0.024753803,-0.009063718,0.0007170161,0.037338138,-0.002469042,0.000618701,-0.03613963,0.020916272,-0.022944516,0.00026973637,0.013287307,0.029593932,0.027634831,-0.01455496,-0.003065415,0.05112098,0.016076142,-0.022402883,0.020962369,0.0049784184,-0.004091061,0.031161211,-0.01480849,-0.024892092,0.029709173,0.032889828,0.015834136,0.002804682,0.012169467,0.024200644,-0.048631772,0.05531576,0.026897289,-0.011351255,0.0040219165,-0.013218162,0.040196117,-0.017401416,-0.027611783,0.018150484,0.0039066756,0.0069029457,-0.00652265,0.016214432,-0.010798098,-0.017574279,-0.011178393,0.041025855,0.040357456,0.020824078,-0.012042702,0.022483552,0.0053731194,-0.015995475,0.013114445,0.008890856,-0.0072083347,-0.049277123,0.031414744,-0.018427063,-0.01898022,-0.044921007,0.006228785,-0.053379707,-0.025191719,-0.0052060196,-0.008164837,0.04028831,0.025007334,0.022771655,-0.045773793,-0.025514394,0.029524786,0.01245757,0.004252399,0.011437686,0.008268554,0.015073544,0.04123329,-0.00495537,-0.009968361,-0.0031892993,-0.017827809,-0.0042984956,-0.021089133,0.016145287,-0.018484684,0.019210702,0.008378033,-0.015269455,0.005139756,-0.0033938524,0.021953443,-0.000657955,0.0018496207,-0.0046355757,0.012837866,-0.028533712,-0.03812178,-0.042708375,0.024845995,-0.018553827,0.024707707,-0.007703872,-0.0012798972,0.002306264,-0.012561287,-0.011846792,-0.04093366,-0.04093366,0.022345262,0.0073581487,0.0001937492,-0.01573042,-0.02133114,-0.013863512,-0.002306264,-0.005410573,-0.0038000774,0.009213531,0.00007409647,-0.024753803,-0.015154214,0.028372375,-0.036370113,-0.042823616,-0.007185287,-0.013137493,0.008199409,0.021100657,0.0074618654,0.018173533,0.0011192799,-0.010112412,-0.011800695,0.009369107,-0.00077787787,0.013160542,-0.016790638,-0.02712777,-0.024799898,-0.034871977,0.016790638,0.021907346,0.008182122,0.042362653,-0.025998408,0.0280497,-0.016917404,0.0051916144,-0.0007930033,-0.025399152,-0.04932322,0.0020873055,0.022644889,-0.039735153,0.0036733123,0.02597536,0.03955077,-0.016352722,0.013414072,0.01780476,0.013448644,0.027611783,0.011345493,0.032013997,0.0010213249,-0.003745338,0.020167204,-0.04471357,-0.023209572,0.005243473,0.00062194216,0.018542303,0.020697314,0.01147802,0.034065288,0.0077730166,-0.010037506,-0.0050936597,-0.013540837,0.001964862,-0.032751538,-0.0144166695,0.0010688618,-0.008136027,0.015488413,0.028787244,-0.0221724,-0.0027585854,-0.019521853,0.02080103,-0.016790638,-0.012930059,-0.0116969785,0.007525248,0.013229686,0.001976386,0.007323576,-0.01525793,0.0026044503,-0.0024272671,0.012895486,-0.019106986,0.0023826112,0.023532245,0.013955705,-0.010060553,0.013506264,-0.011184155,0.018957172,0.007525248,-0.006528412,0.004750817,-0.008383795,0.017689519,-0.01200813,0.01839249,-0.04058794,-0.020570548,0.01382894,-0.026274987,0.028879436,-0.0153270755,0.021423332,-0.02516867,-0.019867577,0.029547835,0.054900892,0.0016393056,-0.025399152,-0.007577107,-0.016087666,-0.02113523,-0.012768721,-0.005540219,-0.00020149197,0.0028464568,0.011051628,-0.03678498,0.0057678204,0.027957506,-0.035909146,-0.027611783,0.024707707,0.0068568494,0.018231152,-0.012895486,0.045335874,-0.024131501,0.0034169005,0.026067551,-0.0035782382,0.010198844,-0.047387168,0.025330009,-0.0084932735,-0.014877634,-0.009115576,0.0055488623,0.01923375,-0.0002124759,0.026182793,0.012480618,0.026758999,0.0128493905,-0.0028939939,0.026159745,-0.016975025,-0.016156811,0.022737082,0.0072486694,0.010752001,-0.0076520136,0.016859783,-0.0064592673,0.008666135,-0.0029372093,-0.029755268,-0.016110715,0.011639358,0.01447429,-0.028510664,-0.011189917,0.041555963,-0.02399321,-0.039712105,0.0060328753,-0.00890238,-0.011668168,0.03664669,0.022679461,-0.0009745081,-0.011616309,0.023025185,-0.039181996,0.013056824,0.0015845661,0.023901017,-0.034065288,0.01592633,0.0011149583,-0.0018049647,-0.0069029457,0.05181243,-0.010700142,-0.0010868682,-0.04293886,0.005718843,-0.0016335435,0.009565017,0.037522525,0.030331476,-0.011846792,0.023693584,0.022241546,0.003258444,0.0050936597,-0.007093094,-0.021826677,0.016882831,-0.022690985,-0.030769391,-0.029939655,0.0010249261,-0.057712775,0.0073581487,-0.009795499,-0.03759167,-0.00090464315,0.026274987,0.005796631,-0.024085404,0.0025338652,0.018185057]},{"id":"interface-GatewayMessageReactionRemoveAllDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveAllDispatchData\nDescription: MESSAGE_REACTION_REMOVE_ALL — message_id, channel_id, guild_id?\nProperties: channel_id: string, guild_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveAllDispatchData"},"embedding":[0.05379481,0.020918878,0.0046062106,0.043508403,-0.0061754244,0.012684979,-0.047040626,0.0014379491,-0.01254178,-0.009779247,0.024964228,-0.040906966,0.018186178,0.017112192,0.046730362,0.008019102,0.006622919,0.017124124,-0.0047673085,0.08725547,-0.025202893,0.034343712,-0.013210039,0.017637251,-0.029093111,-0.0071479795,0.03114562,0.024916496,-0.0067064515,-0.018329376,0.038902193,-0.029928435,0.06057286,0.011658724,-0.0070226807,0.01306684,-0.048687406,-0.005274469,-0.031551346,-0.001175419,0.00260591,-0.0050805546,0.022828188,0.015369945,-0.04391413,0.022517925,-0.029594306,-0.0001942872,-0.009033423,-0.0070644473,-0.026515543,-0.005987477,0.007434376,0.09689748,0.00087858096,-0.04377093,-0.01785205,0.0035710065,-0.005897978,0.031432018,-0.03620529,-0.0070405807,0.003860386,-0.0031980942,0.01501195,-0.014403357,-0.03477331,0.031169485,0.037183814,0.031312685,-0.019594293,-0.044749454,-0.005432584,0.00846063,-0.00080250687,0.009474951,-0.022553725,-0.042362817,0.02014322,-0.03403345,-0.0017810282,0.043890264,-0.050930843,-0.066014394,0.0061515584,0.0019108016,0.0012380682,-0.004973156,0.002999705,0.04107403,0.006945115,0.022780456,-0.07212418,-0.010835335,-0.032171875,-0.07976142,0.019677827,0.0014036412,-0.044940386,0.048878334,0.068687424,-0.07689746,-0.030883089,-0.012195718,0.0039051357,-0.022935586,-0.016145602,0.028210055,-0.029331775,-0.023627711,-0.027446331,-0.013842498,0.007315044,0.013186173,-0.02548929,0.007267311,0.03231507,-0.018400975,0.010232708,0.0026297763,-0.035393834,0.009612182,0.031575214,-0.018914102,-0.049832992,-0.0056175482,0.010119343,-0.034128916,-0.03852033,0.0039946344,0.05517906,0.0057338965,0.0046778093,-0.010531038,-0.004292964,0.0055429656,0.029785236,-0.025107427,-0.035847295,-0.010238675,0.008806692,0.022076396,-0.015954671,0.05379481,-0.05140817,-0.017804315,-0.015107416,-0.0020972576,0.05680197,0.003224944,-0.04997619,0.03911699,-0.017291188,-0.011348462,0.023269717,-0.02040575,0.028663516,-0.012267317,0.0036217223,-0.026682608,0.016861593,-0.074558556,-0.022565657,0.006670652,-0.03976138,0.0024746447,0.00986278,-0.00033282407,-0.02778046,0.0073687434,0.012565646,-0.035011973,-0.05226736,-0.04615757,-0.052840155,0.015250614,-0.03515517,0.009928412,-0.04062057,-0.027661128,0.042768545,-0.0026790006,-0.0218974,-0.106062174,-0.048759006,0.0019480928,-0.033007197,-0.011503593,-0.023186183,0.004636043,0.0022374727,0.02594275,0.026300745,0.02354418,0.023281649,-0.055322256,0.003988668,-0.01474942,0.0061634914,-0.042911742,0.03140815,-0.0009449593,0.06463014,-0.01846064,-0.018221978,-0.022804322,0.006139625,-0.033293594,0.01280431,0.005453467,0.025465421,-0.0327924,-0.0004933627,0.0019689759,-0.035011973,-0.006915282,-0.07293564,0.019773291,-0.009570416,-0.00547435,-0.043556135,0.018186178,0.057374764,-0.026014348,-0.010578771,0.02482103,0.0073687434,0.0051790033,-0.037685007,0.007052514,-0.019212432,-0.00793557,0.006974948,-0.042911742,-0.009397386,-0.004451079,0.019045368,0.04002391,0.022064464,-0.04214802,-0.0006671398,-0.037159946,0.0093377195,0.00520287,-0.014367558,-0.0077446387,0.0383294,-0.004322797,-0.040501237,0.017708851,0.021837734,0.05503586,-0.01583534,-0.012058486,-0.01231505,0.011306696,0.032171875,0.0031921277,0.020799546,0.037517942,0.04405733,-0.004853824,-0.02205253,0.02751793,-0.019451097,0.026515543,0.061288852,0.014116961,-0.049451128,0.027112203,-0.0008711227,-0.053031087,0.049737524,-0.03844873,0.0047762585,0.0065095536,0.03646782,0.0045077614,0.012863976,-0.029116977,-0.025799552,-0.0017720783,0.04286401,0.03245827,-0.023782844,0.0027520913,0.0017571619,0.036324624,0.016515533,0.021097876,-0.027207667,-0.008377098,0.020620547,-0.02863965,-0.013007174,0.036372356,0.0051909364,-0.01714799,0.011616958,0.026014348,0.033866387,0.003156328,-0.014856818,-0.062052574,0.021587137,-0.009504784,0.016109804,0.005644398,0.011867555,0.009749414,0.0060769757,-0.022183796,-0.029021513,-0.004934373,-0.051312707,-0.04799528,-0.0028714233,0.034653977,0.013842498,0.031097887,0.014486889,-0.0016154553,-0.0007253141,-0.04463012,-0.028615784,-0.040668305,-0.002553702,-0.04859194,0.029451108,0.061384317,0.03138428,-0.044295993,0.033723187,0.008090701,0.058043025,0.02560862,-0.07546548,0.038830593,0.013436769,0.00036284348,0.07264925,0.042696945,-0.014856818,-0.009904546,0.0032070442,-0.030477362,-0.011115764,-0.019343697,0.011145597,0.014868752,-0.0020092505,0.0036754217,-0.047183823,-0.0960383,0.036229156,-0.03403345,0.0076312735,0.02560862,-0.0071599125,0.041837756,-0.009982112,-0.0067959502,-0.0026506593,-0.0025253608,0.041050166,0.010954666,-0.050310317,-0.008311465,0.0038514363,-0.006724351,0.00027558205,-0.037231546,-0.043508403,0.009850847,-0.002711817,-0.021658735,-0.028544184,-0.0059427274,0.018436775,-0.014057295,0.010399773,0.020978544,-0.0020599666,0.011658724,-0.0016855628,-0.0018571023,-0.044415325,0.0109129,-0.0245585,0.028186189,0.041121766,-0.02699287,-0.00795347,-0.008824592,0.005596665,-0.00024034186,0.0051760203,0.041837756,0.02942724,0.015000016,0.038544197,0.030525094,0.002185265,-0.014391424,-0.028066857,0.052553758,-0.023878308,0.006670652,0.03568023,-0.016801927,0.051646836,0.04541771,0.016825795,0.043818664,0.005707047,-0.04930793,-0.0020062672,0.00851433,-0.015716009,0.014689754,0.012494047,0.03365159,0.0026566258,-0.0056026317,0.008311465,-0.026634874,0.02837712,0.013198106,0.014367558,-0.039474983,-0.11360394,0.012028653,0.07078767,-0.030214831,0.049689792,-0.0015125315,0.02159907,-0.0054475,-0.05947501,-0.0078759035,-0.036634885,-0.0073389104,-0.0071778125,0.029212443,-0.023448713,0.014761353,0.021491671,-0.018389042,0.0326492,0.006461821,-0.030572826,-0.01931983,-0.021503603,0.04252988,-0.018389042,-0.035011973,0.0047792415,0.06844877,0.011378295,0.0048180246,-0.0012656637,0.006628886,0.0030966622,0.06844877,-0.02332938,-0.0025059695,-0.024081172,-0.0010717494,-0.020429617,0.0437232,-0.03575183,-0.0030698124,0.020584749,0.029737504,-0.02073988,-0.04806688,0.0037619374,0.03964205,0.046133704,0.010537005,0.00435263,0.025823418,-0.03582343,-0.047183823,-0.011402161,0.05398574,-0.033818655,-0.017553719,-0.022804322,0.03937952,0.01935563,0.01317424,-0.015322213,-0.01175419,-0.01231505,-0.008424831,0.033317458,-0.02377091,0.03396185,-0.013460635,-0.011121731,-0.03642009,0.0034099084,-0.03732701,0.02275659,-0.00022244208,-0.03706448,-0.030835357,-0.048281677,-0.016658729,-0.0048597907,-0.012362782,-0.0327208,-0.039236322,-0.0031622946,0.0190931,-0.052171897,-0.017458253,-0.018210044,0.01501195,-0.013544168,0.014355625,0.028782848,0.0073687434,0.004540578,0.0051491703,0.016909327,-0.07188552,-0.00902149,0.027828194,0.035250638,-0.025513155,0.018961836,0.05221963,0.021837734,-0.027040603,-0.020453483,0.022732722,0.03852033,-0.016837727,0.01119333,-0.012040586,0.009761347,-0.026515543,0.017959448,0.0038544196,0.008377098,0.06673039,0.008108601,0.003204061,-0.0190573,0.0049015568,-0.0057846126,0.0045972606,-0.012291183,-0.0014662904,-0.01594274,-0.027446331,0.03608596,-0.005686164,0.0022568642,-0.030190965,0.0050596716,-0.020835346,-0.036754217,0.014916484,0.020202886,0.031455882,-0.0055608656,-0.016515533,0.018054914,0.04279241,-0.014498823,-0.00355609,0.026253013,0.035083573,-0.006473754,0.025656354,0.0078759035,-0.038138468,-0.010417673,-0.05522679,0.0381146,0.010692136,-0.03451078,-0.0031115788,0.001930193,-0.02167067,-0.05083538,0.012553713,-0.007577574,-0.0076730396,0.033412926,0.026754206,-0.01935563,0.010101443,0.023866376,0.0073508434,0.013949896,0.0191289,0.041169498,0.0381862,-0.043556135,0.008735093,0.038854457,0.041646823,0.028973779,0.0031473783,-0.042553745,0.022816254,0.0013253296,0.02264919,-0.02380671,-0.0041139666,-0.032076407,-0.008651561,-0.012458248,0.0075119417,0.0061754244,-0.012517914,-0.018615773,0.019307898,0.008054902,0.0083651645,-0.0013767915,0.029474974,-0.04069217,-0.02692127,0.033007197,-0.01760145,0.0068257833,-0.025179027,-0.02377091,-0.037565675,-0.0048896237,-0.033317458,0.038735125,-0.006378289,-0.0070107477,-0.008204066,0.020954678,-0.013949896,0.027446331,-0.0026849671,0.016217202,-0.01760145,0.017708851,-0.02017902,0.004865757,0.004844874,-0.0024209453,-0.017756583,0.04155136,-0.013830564,0.0033621755,0.006843683,-0.02634848,0.06720771,-0.005023872,-0.03317426,-0.0014006579,0.013914097,0.009415285,0.007136046,0.0012067436,0.0007413493,-0.030405762,-0.0076432065,0.008299532,0.019677827,0.031432018,-0.0041587157,0.037303146,0.014379491,0.01306684,-0.0007264328,-0.012153951,-0.004122916,-0.0062171905,0.0030340129,0.027422465,0.006348456,-0.009128888,-0.0045167115,0.0056115813,0.01893797,0.082195796,-0.02613368,0.020167086,0.0051223207,0.02010742,0.0013268213,0.005065638,-0.0026446928,0.052458294,0.0060232766,0.0300239,0.023436781,0.011527459,-0.0273986,-0.025465421,0.00847853,0.007458242,-0.0055310326,0.022971386,-0.016145602,0.030906957,0.011795956,0.03274467,-0.0022255394,-0.026443943,0.027661128,-0.04582344,-0.024176639,-0.010960633,0.0023150383,-0.012696912,0.0026342513,0.022852054,-0.021348473,0.009242253,0.021503603,-0.010572804,0.036515553,0.0055011995,0.0032995264,0.003708238,0.024797164,-0.020322219,0.0327924,-0.024427235,0.03062056,-0.008717193,0.029116977,-0.008627695,0.00923032,0.036706485,0.016050138,-0.00354714,0.000079943035,-0.0008964807,0.011903355,0.035059705,-0.032625336,-0.029379508,-0.0052625355,-0.004701676,-0.022100264,-0.014844885,0.03995231,-0.020871146,0.0072016786,-0.051503636,0.027040603,-0.028973779,-0.011026265,0.027828194,-0.015930805,-0.021384273,0.027899792,0.016050138,-0.013007174,0.00009276189,0.050358053,-0.017732717,0.020047756,-0.050262585,-0.003517307,0.040644437,0.012696912,-0.012553713,0.013341304,0.020596681,0.0028654567,0.0191289,-0.016634863,0.029164711,-0.009898579,-0.012589513,0.014832952,-0.01692126,-0.0070584803,-0.013758965,-0.01692126,-0.005074588,0.024797164,-0.005014922,-0.0063961884,0.013436769,-0.021253007,-0.00025693644,0.0050507216,-0.006640819,-0.006521487,-0.02354418,0.011509559,-0.0010866659,-0.0652984,0.04727929,0.04069217,-0.031312685,-0.006062059,0.03391412,0.006742251,0.0873032,0.006622919,-0.070692204,0.029188577,-0.020584749,0.019821025,-0.02205253,0.061527517,-0.020548949,0.01800718,-0.0077565718,0.0030757792,-0.0034516745,0.018090712,0.025035828,-0.02287592,0.0218616,-0.022422459,0.010554904,0.018949902,-0.0054475,0.022243463,-0.0050000055,0.0464201,-0.012887843,-0.026706474,0.02871125,-0.01741052,0.010501205,0.008878292,0.020835346,0.0019510762,-0.021384273,0.008168267,-0.016646797,0.0072971443,-0.018448709,-0.0052685025,-0.022923654,-0.011348462,0.013806698,0.02489263,0.014928417,-0.01785205,0.0041169496,-0.0024164706,-0.023257783,0.034009583,0.0012052519,-0.018365176,-0.01965396,-0.020274486,-0.034653977,0.026825806,0.023532245,0.011581158,-0.0408115,0.0356325,-0.03649169,-0.03627689,0.0024477951,0.012213618,-0.008961824,-0.005695114,-0.0068138503,0.012553713,0.009373519,0.015202881,0.049021535,-0.002813249,0.021062076,-0.010483305,0.03343679,-0.037207678,0.013866364,-0.003415875,-0.027016737,0.0040453505,0.02227926,-0.019630093,0.0112350965,-0.0038633696,0.0017362788,0.0025522106,-0.009063256,-0.0029639055,0.03515517,-0.012052519,-0.0024970195,-0.018066846,-0.027756594,-0.020525083,-0.0437948,0.012732711,0.012482114,-0.016539399,-0.04417666,-0.008245832,-0.023902174,0.0015192439,0.036897417,0.021396205,0.035537034,-0.012887843,0.020560883,-0.02863965,0.0067303176,-0.005181987,-0.02949884,-0.008251799,0.030501228,0.033221994,-0.009886646,-0.03436758,-0.029451108,0.027422465,0.011569225,0.025107427,0.046801962,-0.012088319,0.013353237,0.021205274,0.032696933,-0.005665281,-0.018400975,-0.014618155,0.012255384,-0.014630088,0.01695706,-0.014737487,0.0033591923,-0.059284076,-0.013472569,-0.009492851,0.013019107,-0.042720813,-0.016467799,0.016348466,-0.017291188,-0.009212421,-0.0025000027,-0.02804299,-0.029665904,0.027828194,-0.0006880228,-0.014403357,0.008812659,-0.0021032244,0.058424886,-0.018747037,0.017517919,0.014248226,0.0077565718,-0.0023582962,0.016718395,0.009540583,0.019343697,-0.043174274,-0.03976138,-0.006819817,-0.020429617,-0.025107427,0.0301671,-0.008866359,-0.0072911778,-0.0030906955,-0.022661123,-0.02811459,0.008019102,-0.0061933245,-0.029116977,0.040405773,0.01890217,-0.0047285254,0.0026312678,-0.010584737,-0.016264934,0.01662293,-0.0056414143,0.028353253,-0.02541769,-0.0032726766,0.0011776565,-0.016658729,0.03949885,0.006933182,0.011366361,0.008293565,-0.020692147,-0.0035023906,0.023066852,-0.041408163,-0.0019197515,0.028520318,0.029594306,0.018508375,-0.020250618,0.037183814,-0.00030970352,-0.0026954086,0.03642009,-0.035918895,0.012696912,0.021109808,0.018508375,0.0058233957,0.014904551,0.0163962,0.031455882,-0.02548929,-0.02235086,-0.007500008,0.0007361285,-0.016157536,-0.014367558,0.019522695,0.06887836,-0.025369957,0.015668275,-0.026253013,-0.008048935,-0.047899816,-0.027016737,0.014653955,-0.024069238,-0.04465399,-0.013054907,0.017935582,-0.02156327,0.027804326,0.04503585,0.012028653,0.04451079,0.021109808,-0.015322213,-0.023949908,-0.041432027,0.0014073703,-0.042983342,0.027183801,0.015620543,-0.004322797,-0.013842498,-0.0073090773,0.005035805,-0.034081183,-0.0018824603,0.009045356,-0.040596705,-0.0027133084,-0.0041736322,0.0136157675,0.03073989,0.0109308,-0.03231507,-0.006199291,-0.005265519,0.004030434,0.0034636077,-0.0077506052,-0.00044301958,-0.0043466636,-0.013233905,0.053890277,0.031455882,-0.010680203,-0.0021822816,0.005235686,-0.016372334,-0.0150477495,0.021133674,-0.015059683,0.018914102,-0.019546561,-0.0047285254,-0.023949908,0.0066169524,-0.020011956,-0.02403344,0.00518497,-0.01785205,0.016527465,-0.022064464,0.0054117003,0.030525094,0.003887236,-0.029880702,0.026563276,-0.01038784,-0.021622935,-0.05083538,0.02699287,-0.0011612483,-0.028090723,0.0007417222,-0.02587115,-0.023818642,-0.008066835,0.0074522756,0.018245844,0.027112203,0.0027476165,-0.016074004,0.01695706,-0.019522695,0.04384253,0.01061457,0.024236305,0.0028550152,0.009964212,-0.0030966622,-0.004278048,0.00009290173,0.0027356832,0.0121718515,0.0126491785,0.014594289,-0.0145704225,-0.025704086,0.032959465,-0.02313845,0.01280431,-0.014952284,0.03343679,-0.02235086,-0.00870526,-0.020346085,-0.0076730396,0.03035803,-0.031527482,0.03773274,0.0145584885,-0.029570438,-0.045799576,0.003508357,-0.024773298,-0.0018929018,0.03312653,-0.016217202,0.007965403,-0.01702866,0.0035322236,-0.008526263,0.06744637,-0.018412909,0.002638726,0.041002434,-0.011646791,0.02163487,-0.019021502,0.032076407,-0.019403363,-0.009964212,-0.017326988,-0.011533426,0.017696917,-0.014212427,-0.0019674844,0.013973762,0.0031294785,0.026969004,0.028591918,-0.033221994,-0.012255384,0.028544184,-0.0006913791,0.006974948,-0.014737487,-0.038377132,0.04758955,0.0028744065,0.011569225,0.04859194,0.015799541,0.008019102,-0.008454664,-0.008645594,-0.032935597,0.009892613,0.018114578,-0.021396205,-0.0070883133,-0.043508403,0.037517942,-0.006742251,-0.02930791,0.0053788843,-0.013090706,-0.014045361,-0.032028675,-0.060000066,-0.019331764,-0.017279256,-0.0065274537,0.00735681,0.00846063,-0.037899803,-0.008645594,-0.017494053,0.0058054957,0.028019125,-0.015489277,-0.001014321,-0.029260175,0.0064439215,-0.015632475,-0.004460029,0.025441555,0.0019167683,0.015751807,-0.0006507316,0.010871134,0.03964205,0.004594277,-0.017756583,0.011575192,0.0033025097,-0.018162312,0.030978555,-0.009976145,-0.025751818,-0.012816244,0.025966616,0.02208833,-0.013866364,0.012147985,0.022589523,-0.030883089,0.051264975,0.005026855,-0.026611008,0.0058711283,-0.022422459,0.034128916,-0.012076386,-0.03739861,-0.004952273,0.02268499,0.010161109,-0.005516116,-0.009403352,-0.014140828,-0.021467805,-0.0022762555,0.042434417,0.039212454,0.0028550152,-0.010626503,0.018365176,0.00493139,-0.0044242293,0.0135919005,0.014594289,-0.013782832,-0.043675467,0.005402751,0.0016497632,-0.027064469,-0.040405773,0.006891416,-0.06276856,-0.027350865,-0.0014886651,0.012983308,0.02044155,0.02179,0.005205853,-0.02844872,-0.028138457,0.016634863,0.014498823,0.012756578,0.00062052574,0.0030399796,0.03770887,0.05260149,-0.00435263,0.0066646854,-0.018854436,-0.02844872,0.005405734,-0.007607407,0.01741052,-0.012255384,0.005498216,-0.014844885,-0.019665893,-0.0032995264,0.01569214,0.013090706,-0.0056115813,0.009498817,-0.022923654,-0.008657527,-0.016229136,-0.041980952,-0.038830593,0.018066846,-0.02332938,0.020131288,0.00034568954,0.010513138,-0.0012790886,-0.019737491,-0.011073998,-0.058568086,-0.020871146,0.017887847,0.021241074,-0.013973762,-0.0046062106,-0.009170654,0.0036366389,-0.024582366,0.038066868,-0.0016363383,0.033603854,0.0065274537,-0.030310296,-0.009158721,0.00038559112,-0.02680194,-0.041121766,-0.007583541,-0.0145704225,0.026014348,0.021909332,0.027231535,0.008824592,0.0065095536,-0.012911709,-0.0014498823,-0.014379491,0.018090712,0.013579967,-0.005244636,-0.022207662,-0.004832941,-0.018186178,0.03942725,0.027541798,0.013496435,0.023400981,-0.0041050166,0.017386654,-0.02399764,-0.0059099114,-0.016002405,-0.03305493,-0.039713647,0.013054907,0.021467805,-0.050930843,-0.010525071,0.025513155,0.027207667,-0.011879488,-0.009498817,0.01590694,0.018389042,0.023651578,-0.010471372,0.03389025,0.0048985733,0.018997634,0.0022165896,-0.052362826,-0.026062082,0.00793557,-0.003738071,0.0058353287,0.026372345,0.01310264,0.017124124,0.025823418,-0.015847273,-0.034868773,0.004961223,0.017517919,-0.037374742,-0.018818637,-0.006241057,0.009976145,0.018126512,0.019618161,-0.019379497,0.007816237,-0.0040901,0.03174228,-0.024140839,-0.021408139,-0.019033434,0.013341304,0.0043078805,0.010608604,0.017863981,-0.0070763803,0.009349653,0.007153946,-0.009725548,-0.04326974,0.016742263,0.027207667,0.022899788,-0.0155250775,0.020047756,-0.014427224,0.032410536,-0.00090393896,-0.021241074,0.007541775,0.015632475,0.0016288802,-0.028019125,-0.007649173,-0.0381146,-0.009671848,-0.0016035221,0.0058144457,0.00047173383,0.0012865468,0.02107401,-0.005507166,-0.015119349,0.02426017,0.048186213,0.01166469,-0.015811473,0.0112291295,-0.01527448,-0.021730335,-0.004835924,0.0016691546,-0.009409319,-0.010578771,-0.014367558,-0.025155159,0.0027312082,0.037040614,-0.022482125,-0.03680195,0.03902152,0.0029310891,0.008508363,-0.023269717,0.037565675,-0.058424886,-0.0030817457,-0.014331758,-0.014952284,0.0032846099,-0.010047744,0.044534657,0.0034039419,-0.0040871166,-0.01718379,0.010453472,0.009540583,0.027112203,0.03343679,0.03298333,0.01662293,-0.008860392,0.0083591975,0.024701698,-0.003597856,-0.021730335,0.03398572,-0.00074284093,0.00015736891,0.026038215,0.016205268,0.0068556163,0.00518497,-0.013054907,-0.03897379,0.000035799563,0.0048866402,0.025656354,-0.017124124,-0.023424847,0.048663538,-0.011270896,-0.055608653,-0.0068078837,-0.010507172,-0.019701693,0.028687382,0.025059694,0.0051461873,0.015918871,0.0027819243,-0.054176673,0.005677214,0.002673034,0.011784023,-0.031575214,0.030501228,0.02804299,0.0075716074,-0.02047735,0.04424826,-0.012303117,-0.0033412925,-0.026778072,0.00902149,-0.004973156,0.00952865,0.024284037,0.0383294,0.0007674531,0.007195712,0.03997618,-0.00005411887,0.012828177,-0.0055340156,-0.016801927,0.0010821909,-0.004919457,-0.018448709,-0.020548949,0.004289981,-0.040859234,0.008729126,0.021455871,-0.015000016,-0.020190954,0.013747032,-0.005023872,-0.010966599,0.019928424,0.020727947]},{"id":"interface-GatewayMessageReactionRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveDispatchData\nDescription: MESSAGE_REACTION_REMOVE — message_id, channel_id, user_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string, user_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveDispatchData"},"embedding":[0.05064175,0.02617921,-0.024236035,0.048376698,0.010305977,0.024295641,-0.025606986,0.011837866,-0.00015274185,-0.013983703,-0.0048281327,-0.035668578,0.01032982,0.020147024,0.034023434,0.0062586907,0.016832897,0.021816008,-0.028038934,0.095990434,-0.028205832,0.03779057,0.0063242577,0.02944565,-0.0017881973,0.022030592,0.010252331,0.02980329,-0.01730975,-0.02147029,0.028062778,-0.03225908,0.08888533,-0.010449033,-0.001956586,0.008219747,-0.06008343,0.0017688252,-0.037194505,0.013363794,-0.026679905,-0.03526325,0.011009335,0.028921112,-0.05817602,0.010878201,-0.042892892,0.010222528,0.007951518,-0.0029698978,-0.025940783,0.0099364165,0.01350685,0.09126959,0.0005066559,-0.042606782,-0.0073316093,-0.00072161213,-0.018501882,0.03054241,-0.0255593,-0.020623876,0.00056067435,-0.004667195,-0.007927675,-0.023687653,-0.042177614,0.033832695,0.032783616,0.0127558075,0.0008680208,-0.021148413,-0.0065686447,0.005996422,0.0054629426,-0.009769518,-0.032759774,-0.03361811,0.014865881,-0.049068134,-0.00007432195,0.052596845,-0.049878784,-0.07014502,-0.012064371,0.006634212,-0.020969594,-0.020909987,-0.017643547,0.032378294,-0.002101132,0.014746668,-0.088503845,-0.017381279,-0.015533474,-0.062133897,0.013530693,0.016058013,-0.033117414,0.04322669,0.052263048,-0.0893145,-0.05364592,-0.013483008,0.015330812,-0.023318093,-0.0027940583,0.01865686,-0.044776462,-0.006413668,-0.03361811,-0.0033498898,-0.0005029305,0.008052848,-0.013089605,0.0071349074,0.03743293,-0.044108868,0.010174843,-0.005942776,-0.049068134,-0.013292267,0.040580157,-0.02954102,-0.02374726,-0.0004947346,0.0033767126,-0.035930846,-0.04494336,-0.0035287095,0.035668578,-0.012100135,0.028563472,-0.016212989,0.0012882472,0.0000203617,0.034118805,-0.022423994,-0.02002781,0.0033379684,0.017965423,-0.008833695,-0.016379887,0.03652691,-0.04668387,-0.016892504,-0.035287093,0.0050695394,0.026679905,0.012457775,-0.04558711,0.036932237,-0.02001589,-0.016105697,0.031066949,-0.008487977,0.021255706,-0.008994632,0.0056387824,-0.044561878,0.013721434,-0.09832701,-0.027180599,-0.010395387,-0.034834083,0.0024975156,0.021494132,0.0036389816,-0.011521951,0.008863498,0.026393794,-0.04212993,-0.05002184,-0.024224114,-0.06871446,0.013125368,-0.015235442,0.018334983,-0.03697992,-0.009674148,0.03867275,0.006896481,-0.055171847,-0.08688255,-0.038028996,-0.013840647,-0.027705137,0.010472876,-0.0044347295,-0.009918534,0.0042141853,0.033188943,0.037122976,0.010627853,0.0331651,-0.060846396,0.017428963,-0.045086417,0.013029998,-0.050307952,0.031043107,0.008565465,0.053407494,-0.0070276153,-0.008809852,-0.017679311,-0.00408007,-0.0331651,0.017560098,0.0005543412,0.042249143,-0.025130134,0.010067551,-0.0018373728,-0.06098945,0.007486586,-0.06523344,0.013530693,-0.023675732,0.01975362,-0.048710495,0.02210212,0.06995428,-0.036908392,-0.0057788575,0.02001589,0.0043333983,-0.0128750205,-0.03426186,0.013912175,-0.031853754,-0.0034750635,0.00389529,-0.056316294,0.008857537,-0.016999796,0.025869254,0.013912175,0.027347498,-0.01758394,0.0076713664,-0.0360739,0.011980922,0.0064553926,0.0064494316,0.011486188,0.02763361,0.005093382,-0.024820179,0.025940783,0.040651686,0.04377507,0.008845616,-0.022006748,0.004097952,-0.015616924,0.006580566,0.015986484,0.027490554,0.033713482,0.04422808,-0.028825741,0.000530126,0.04902045,-0.010681499,-0.00075253303,0.06108482,0.028253518,-0.039626453,0.012886942,0.008756206,-0.048710495,0.04520563,0.00042395177,-0.01766739,0.024247956,0.026465321,-0.0051053036,0.0042141853,-0.009960259,-0.016797133,0.00057557604,0.037003763,0.013018076,-0.047184568,0.022948533,0.024438698,0.01595072,0.014901645,0.031305376,-0.026775274,0.00091570604,0.0032366372,-0.0376952,-0.014102916,0.037623674,0.018430354,-0.0135902995,0.009399957,0.021434525,0.02038545,-0.0029296633,-0.016296439,-0.051166285,0.019455587,-0.006830914,0.016820977,-0.0010311938,0.022435917,0.0023037943,-0.0012085234,-0.02708523,-0.028563472,0.0013530693,-0.046183176,-0.015187756,-0.00824955,0.044538036,0.012034568,0.00072533754,0.019896675,-0.005230477,0.0034124765,-0.05235842,-0.027132913,-0.027490554,0.02409298,-0.06418436,0.032664403,0.05445657,0.029707918,-0.04196303,0.023401542,0.021601424,0.06008343,0.032139868,-0.07453206,0.06299223,0.020516584,0.021577582,0.0741029,0.0120405285,-0.013781041,-0.030876208,0.013363794,-0.032211393,-0.022328625,-0.017870052,0.019813227,0.0013225209,-0.019765541,0.0031502077,-0.050880175,-0.09441682,0.044251923,-0.04203456,-0.0012763259,0.010347702,-0.002527319,0.03807668,0.0032098142,-0.0061096745,0.003957877,0.0074269795,0.043179005,0.008577387,-0.0362408,0.008744285,0.020170866,-0.031400744,-0.007856147,-0.039745666,-0.05059406,-0.00039750137,-0.0072183567,-0.014532084,-0.035763945,-0.001105702,0.00007557928,-0.0070395367,0.020087417,0.011951119,-0.0035495716,0.011015296,-0.005507648,-0.0062944544,-0.03686071,-0.0022710105,-0.01730975,0.046278547,0.052119993,-0.043369748,-0.018203849,-0.0012427971,0.0067891893,0.015402339,0.008732364,0.025654672,0.02310351,0.0039221128,0.021339156,0.019586721,0.017607784,-0.002873037,-0.039769508,0.03314126,-0.02472481,0.0058295233,0.025320875,-0.011289486,0.058700558,0.018180007,0.0046075885,0.050689433,0.0010438602,-0.059558894,0.014377107,0.003671765,-0.006360022,0.020147024,-0.0059845005,0.011462345,-0.008315118,-0.010460954,0.020039732,-0.0011884061,0.027967406,0.00026115132,0.022722028,-0.05970195,-0.10147424,-0.008750246,0.06466121,-0.027323656,0.055314906,-0.030780837,0.021732558,0.010073512,-0.056459352,-0.010174843,-0.053693604,-0.0034750635,0.0031561684,0.03342737,-0.013602221,0.00588913,0.014234051,-0.028325045,0.018597253,-0.012207427,-0.034094963,-0.013447244,-0.024212193,0.0224836,-0.035287093,-0.04158155,0.003787998,0.05183388,0.0197417,-0.005302005,0.0033588307,0.001503576,0.018084636,0.07357836,-0.011951119,-0.005510628,-0.040818583,-0.008726403,-0.0060381466,0.04711304,-0.022710105,-0.007313727,0.03562089,0.033999592,-0.023127353,-0.05283527,0.016260674,0.017023638,0.045968592,0.036407698,0.00017909914,0.0514524,-0.01956288,-0.052978326,-0.0011548775,0.04973573,-0.010723223,-0.027752822,-0.02064772,0.044633407,0.03600237,0.008964829,-0.0031412668,-0.012028608,0.010729184,-0.0018731367,0.039197285,-0.05417046,0.019050263,-0.0210292,-0.005844425,-0.019992046,-0.00073465105,-0.034142647,0.012123978,0.0028775076,-0.017369356,-0.009447643,-0.013363794,-0.015819585,-0.006041127,-0.0043900246,-0.015783822,-0.03614543,0.0009894692,0.013876411,-0.039745666,-0.013161132,-0.014210208,0.0029237026,-0.00024475952,0.009930456,0.033689637,0.008130337,-0.01695211,0.0075044683,0.03860122,-0.0737691,-0.01994436,0.03216371,0.033379685,-0.021434525,0.02428372,0.052263048,0.028229676,-0.03235445,-0.027538238,0.013888333,0.036312327,-0.010198685,0.01150407,-0.013065762,0.019407902,-0.020182787,0.018191928,0.013041919,-0.011867669,0.05836676,0.0026226894,0.004050267,-0.025535459,-0.0026390813,0.009477446,0.002029604,0.009715872,0.0021950123,-0.018013109,-0.02510629,0.025034763,-0.008750246,0.011587519,-0.019324452,0.0058295233,-0.022638578,-0.04303595,0.01839459,0.021732558,0.028849583,-0.028873427,-0.01024041,0.00407709,0.03144843,-0.009078082,-0.0084402915,0.020588111,0.034500286,-0.0027880976,0.031305376,-0.0015527514,-0.040127147,-0.02491555,-0.0480429,0.026083838,0.024891706,-0.035000984,-0.008952908,-0.013709513,-0.027895879,-0.052167676,0.014007546,-0.011092784,-0.01468706,0.029684076,0.031519957,-0.008595268,0.011533873,0.012588909,-0.0089827115,0.0018552548,0.005635802,0.041438494,0.013292267,-0.03907807,0.0030667584,0.034643345,0.04944962,0.03216371,-0.014341342,-0.03876812,0.022578971,-0.008368763,0.03697992,-0.01822769,-0.01612954,-0.03600237,-0.019622486,-0.007647524,0.011867669,0.012243191,-0.018239614,-0.024128743,0.03643154,0.0015900055,0.003135306,-0.00588913,0.046063963,-0.028110461,-0.025964625,0.027347498,-0.016022248,0.0026211992,-0.028563472,-0.021601424,-0.043179005,0.00028219988,-0.041724604,0.04041326,-0.022149805,-0.006240809,-0.0024170468,0.01177826,-0.01096165,0.037742887,0.025940783,0.033856537,0.0058384645,0.0045181788,-0.016356045,0.01720246,0.014639376,-0.013363794,-0.009942377,0.04232067,-0.026703747,-0.0043363785,0.0098172035,-0.022412073,0.07543808,-0.013208818,-0.027943565,-0.0071647107,0.03063778,0.009632423,0.010908004,0.014853959,0.015032779,-0.01829922,0.0025153975,0.018704545,0.029660232,0.023961844,0.007641563,0.042010717,0.0039847,-0.0058414447,-0.019217161,-0.015688451,-0.012481618,0.005018874,-0.0015177325,0.0334989,0.0035763946,-0.013840647,0.00089037325,0.02420027,-0.0077488553,0.059320465,-0.019694014,0.025177818,0.0051261657,0.027490554,-0.0084402915,-0.00021346606,-0.016272595,0.042177614,0.01757202,0.037909783,0.023973765,0.023484992,-0.014627454,-0.023902237,0.0040741097,-0.0065269205,-0.01005563,0.02510629,-0.0241049,0.020349685,-0.005352671,0.034953296,0.0018090596,-0.025511615,0.008648914,-0.028110461,-0.022519365,0.0015482808,-0.018644938,-0.00860719,0.007140868,0.032569036,-0.006240809,0.012994234,0.032878987,-0.015295048,0.014603612,0.0010989963,0.014532084,0.013065762,0.04429961,-0.018597253,0.015640765,-0.009537052,0.025082448,-0.0012606791,0.021827929,-0.022912769,0.02085038,0.032116026,0.019217161,-0.000091365706,-0.0067117005,0.003489965,-0.0033498898,0.018370748,-0.028158147,-0.04558711,0.000028406259,0.005158949,-0.011706732,-0.019694014,0.032282922,-0.014400949,0.0070276153,-0.051070917,0.024224114,-0.027514396,-0.011390817,0.01740512,-0.010091393,-0.019658249,0.016010327,0.017023638,0.001685376,0.003135306,0.055505645,-0.016689843,0.014722825,-0.042654466,-0.0042886934,0.011140469,0.005600038,-0.009799321,-0.0052066348,-0.0009499798,0.00066126045,0.02363997,-0.015974563,0.028563472,0.007486586,-0.024748651,0.017750839,-0.026417635,-0.008344921,-0.012100135,-0.024140663,-0.012219349,0.010103315,-0.026346108,-0.0059219133,0.018323062,-0.035024825,0.0011362504,-0.007194514,0.0040919916,-0.024677124,-0.027252128,0.011462345,0.0076952092,-0.07601031,0.05083249,0.046350077,-0.023473071,-0.01657063,0.0255593,0.0012927176,0.07076493,0.0004511473,-0.078060776,0.026679905,-0.047923688,0.023723418,-0.025678514,0.056030184,-0.02853963,0.030756995,-0.000942529,0.0024438696,0.0028328027,0.011641164,0.007140868,-0.024331406,0.016892504,-0.011283525,0.005391415,0.0033379684,0.02582157,0.01938406,-0.0059785396,0.036836866,-0.020373529,-0.020993438,0.0030101321,-0.010198685,0.017881973,0.011808063,0.011104706,0.0030429158,-0.021053044,0.026131524,-0.008458174,0.011021256,-0.016689843,-0.016594471,-0.022710105,-0.012886942,0.016916348,0.0066938186,0.02318696,-0.020969594,0.0001275022,0.0039101914,-0.016737526,0.0149135655,-0.0038893293,-0.014651297,-0.00706934,-0.024867864,-0.039244972,0.027132913,0.015569238,0.020003967,-0.022602815,0.028706528,-0.029278751,-0.031519957,-0.006729583,0.018334983,0.0023619107,-0.013053841,-0.004542021,0.023282329,0.024581753,-0.013089605,0.044561878,0.0059397956,0.03225908,-0.0039191325,0.021231864,-0.03552552,0.0068845595,-0.007003773,-0.011885552,0.0140671525,0.03435723,-0.017548177,0.0065924875,0.0033677716,-0.0010930357,0.0054629426,-0.02455791,-0.01658255,0.033188943,-0.0033647914,0.004300615,-0.022412073,-0.020456977,0.006360022,-0.043918125,0.018060792,0.0046075885,-0.03559705,-0.05669778,-0.024081057,-0.02763361,0.0011198586,0.028754214,0.011420621,0.021303391,-0.01178422,0.014305579,-0.020278158,0.008851577,-0.0071647107,-0.015891114,0.01740512,0.044538036,0.027037544,-0.023735339,-0.029922502,-0.016367966,0.028563472,0.012314719,0.020456977,0.039554924,-0.008392606,0.010753026,0.0164991,0.017345514,-0.0079694,-0.024891706,-0.014794352,0.007391216,-0.014520163,0.01386449,-0.0057043494,0.00076966995,-0.05364592,-0.007808462,-0.005325848,0.005901051,-0.03469103,-0.017297829,-0.005871248,-0.0128631,0.0013359324,-0.0005766936,0.0011355053,-0.046135493,0.030733151,0.012708123,-0.006270612,-0.0027851174,0.020182787,0.044871833,-0.01785813,0.007766737,-0.00036713926,0.025535459,0.010675538,0.010085433,0.0025869254,-0.004023444,-0.033856537,-0.04348896,-0.017607784,-0.0094595635,-0.028825741,0.019097948,-0.0058295233,0.0037462735,0.014162523,-0.00805881,-0.021863693,0.012177624,-0.0069560874,-0.026775274,0.026942173,0.0005908502,-0.01449632,0.014532084,-0.008255511,-0.012600831,0.029827131,-0.0004585981,0.043560486,-0.03132922,-0.023258487,0.004321477,-0.023473071,0.036407698,0.0009462544,0.012553145,-0.014532084,-0.014174445,-0.0032336568,0.035954688,-0.04944962,-0.016606392,0.05264453,0.013709513,0.019717855,-0.014925487,0.032282922,0.008112456,-0.008803892,0.03388038,-0.023365779,0.018561488,0.014997015,0.03559705,-0.0026778255,0.012350483,0.007367373,0.020635797,-0.027228285,-0.009000593,-0.006014304,0.010830515,-0.021708716,-0.0032038535,0.022757791,0.054265827,-0.021684874,0.019515194,-0.022221332,-0.01894297,-0.05407509,-0.022328625,0.012219349,-0.033761166,-0.036407698,-0.008636993,0.03142459,-0.021804087,0.03173454,0.033331998,0.021708716,0.052501474,0.011134509,-0.009793361,-0.033785008,-0.03724219,-0.021005359,-0.019431744,0.032878987,0.018096557,-0.007808462,-0.010848397,-0.014365185,0.008654875,-0.03526325,0.012660437,0.0053854543,-0.040198676,-0.00018589801,0.0026331206,0.0068011107,0.018704545,0.01910987,-0.028897269,-0.004765546,-0.02310351,0.002908801,0.0050963624,-0.0066163302,0.015426182,-0.0026331206,-0.011742496,0.04506257,0.039388027,0.007266042,0.0041724606,0.013375716,0.005406317,-0.010985493,0.013161132,-0.002002781,0.019157555,-0.010806672,-0.027514396,-0.012708123,0.006145438,-0.012576988,-0.010395387,0.0048519755,-0.018561488,0.018346904,-0.0077071306,0.005623881,0.03578779,0.011533873,-0.042725995,0.014639376,-0.010925885,-0.0342857,-0.05192925,0.0233777,-0.0068547563,-0.025940783,0.010174843,-0.016069934,-0.017011717,-0.0008598249,0.012922706,0.020051653,0.019097948,0.01341148,-0.011480227,0.009042318,-0.020611955,0.04429961,0.0076236813,0.011486188,0.007736934,0.0012360914,-0.025845412,0.0037462735,-0.0040174834,-0.011492148,0.02682296,-0.008452212,0.025487773,-0.009721833,-0.011003374,0.03507251,-0.0062229265,0.005334789,-0.008112456,0.027419025,-0.023365779,-0.03163917,-0.018323062,-0.013816805,0.0195748,-0.03907807,0.019181397,0.020170866,-0.027252128,-0.040127147,-0.0032276963,-0.036312327,0.006312337,0.028491944,-0.016475258,0.0077965404,-0.009656265,0.013149211,-0.017595861,0.063516766,-0.018084636,0.005701369,0.0451341,0.004086031,0.019896675,-0.016081855,0.049783412,-0.010764948,-0.006729583,-0.008738324,-0.0001515311,0.023222722,-0.013137289,-0.0063302186,0.0061513986,-0.020302,0.028611157,0.023854552,-0.025344716,-0.012910785,0.036026217,-0.00408007,0.009852967,-0.019288689,-0.03116232,0.039554924,0.011802102,0.013208818,0.04730378,0.01803695,0.025034763,0.0010528011,0.00068175024,-0.032378294,0.017154774,0.02536856,-0.024700966,0.00064002565,-0.050689433,0.026203051,-0.011110666,-0.01632028,0.0140671525,-0.012374326,-0.010168882,-0.036026217,-0.064899646,-0.035310935,-0.021899456,0.004935425,0.006550763,0.015259284,-0.040079463,0.009906613,-0.008052848,0.007105104,0.01993244,-0.011724614,0.003698588,-0.025654672,0.038887333,-0.01223127,0.004130736,0.018692622,0.023675732,0.013041919,-0.0132326605,0.009042318,0.050975546,0.014782432,-0.01822769,0.015116228,0.002527319,-0.014698982,0.028897269,-0.02048082,-0.02363997,0.011438502,0.028801898,0.01558116,0.0023335975,0.01459169,0.028754214,-0.040007934,0.05264453,0.008148219,-0.01848996,0.012672358,-0.027991248,0.035573207,-0.02048082,-0.033570424,-0.0022635597,0.013602221,0.008923105,-0.005680507,0.0041933227,-0.0039161523,-0.02211404,-0.012171663,0.04038942,0.03979335,0.0025392403,-0.013697592,0.015700372,-0.01141466,-0.010729184,0.014508241,0.007629642,-0.005379494,-0.048376698,0.022888927,0.00014780568,-0.017750839,-0.042725995,0.016332202,-0.04992647,-0.036574595,0.004273792,0.0018016088,0.028205832,0.023353858,0.0042171655,-0.03552552,-0.024581753,0.04158155,0.01766739,0.013769119,0.012338562,0.008619111,0.026131524,0.04439498,-0.0021324253,-0.011253722,-0.011361014,-0.022412073,-0.0032634602,-0.026942173,0.010007945,-0.013435323,0.008023045,0.000788297,-0.01630836,0.009167491,0.0097874,0.018251535,-0.0025153975,0.0068011107,-0.02185177,0.0004377358,-0.016141461,-0.03600237,-0.029064167,0.01803695,-0.033665795,0.01585535,-0.0068666777,0.0052573,0.0033409486,-0.018919127,-0.009924496,-0.03986488,-0.03090005,0.02989866,0.013137289,-0.010824555,-0.0014804783,-0.01178422,-0.005698389,-0.020611955,0.013781041,0.0011764849,0.026036153,0.010228489,-0.028444258,-0.0049086018,0.013852568,-0.037146818,-0.04003178,-0.0063182972,-0.0039399946,0.010776869,0.01595072,0.012648515,0.018728387,0.0010043709,-0.009364193,-0.0007801011,0.0007469449,0.008291275,0.011861709,-0.01586727,-0.012410089,-0.01657063,-0.020886146,0.021458369,0.035954688,0.015306969,0.044871833,-0.019276768,0.021780243,-0.026059996,-0.0018984695,-0.019705934,-0.03552552,-0.04902045,-0.007564075,0.025273189,-0.040580157,-0.0069382056,0.0317107,0.035668578,-0.012576988,0.013936018,0.016081855,0.0017360416,0.015891114,-0.0056596445,0.028611157,-0.0030146027,0.0044108867,0.0053437296,-0.04243988,-0.020528505,-0.0047893887,-0.0007186318,0.02318696,0.034476444,0.01024041,0.027991248,0.02038545,-0.016010327,-0.035954688,0.000018429144,0.012445853,-0.037742887,-0.012982313,-0.013375716,-0.003415457,0.030780837,0.026703747,-0.022364387,0.011957079,-0.01777468,0.027299812,-0.012255113,-0.022316704,-0.015688451,0.011623283,0.015354655,0.003008642,0.016391808,-0.014436713,0.010377505,0.002247168,0.0011526422,-0.03988872,0.010037748,0.014973172,0.008857537,-0.012278955,0.01586727,-0.018466119,0.013554536,0.0047119,-0.012422011,0.011551755,-0.006097753,0.02093383,-0.013900254,-0.0015214579,-0.045515582,-0.015736137,0.014174445,-0.006306376,0.018871443,-0.011474267,0.021899456,-0.022507444,-0.0033469093,0.028778056,0.039268814,-0.0022412073,-0.027657453,-0.00048430345,-0.014329421,-0.030208614,-0.006443471,0.0028760175,0.0005107539,-0.00011651223,-0.0052602803,-0.028778056,0.005281143,0.03452413,-0.033045888,-0.033188943,0.030995421,0.0019834088,0.018787993,-0.02247168,0.04079474,-0.040365573,-0.0018865482,-0.004640372,-0.009018475,-0.0034214177,-0.017750839,0.038577378,-0.0032247158,-0.0044526113,-0.0072720023,0.010645735,0.0117901815,0.016427573,0.034476444,0.021768322,0.026775274,-0.0016734547,0.0010036258,0.034905612,-0.016379887,-0.004956287,0.022877004,0.009095964,-0.008666797,0.0050218543,0.016654078,-0.0009276274,0.010192725,-0.00879197,-0.032497507,-0.008774089,0.010496719,0.0096979905,-0.0302563,-0.015926877,0.040723216,-0.013673749,-0.061561674,-0.009262863,0.0049264836,-0.022972375,0.03733756,0.01885952,0.006580566,-0.005582156,0.015378498,-0.054742683,0.011659047,-0.0048013097,0.02356844,-0.036026217,0.022805477,0.00997218,-0.00561792,-0.012910785,0.044800304,-0.015724216,-0.0030503666,-0.032569036,0.010389427,-0.010931847,0.008893302,0.016987875,0.031758383,-0.007057419,0.0023261467,0.03643154,0.0005323613,-0.0017285908,-0.004449631,-0.02682296,0.0066997795,-0.011104706,-0.025773885,-0.021243785,0.0011071921,-0.050498694,0.013781041,0.0026465321,-0.030780837,-0.0133518735,0.017166695,0.001023743,-0.016427573,0.0024900648,0.019372137]},{"id":"interface-GatewayMessageReactionRemoveEmojiDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageReactionRemoveEmojiDispatchData\nDescription: MESSAGE_REACTION_REMOVE_EMOJI — message_id, channel_id, guild_id?, emoji\nProperties: channel_id: string, emoji: GatewayReactionEmoji, guild_id: string, message_id: string","meta":{"url":"/docs/typedefs/GatewayMessageReactionRemoveEmojiDispatchData"},"embedding":[0.040993445,0.023780346,-0.026706802,0.046039853,0.004427131,0.021694956,-0.018399812,0.010812914,0.0046143546,-0.0028731704,-0.008589267,-0.042329937,0.002334541,0.006423228,0.019321531,0.0028890125,0.013779696,0.02490945,-0.011371706,0.0770096,-0.031200182,0.03569356,0.0011276654,0.045924637,0.013215143,0.021741042,-0.0054122177,0.030393677,-0.00659605,-0.022950798,0.014401856,-0.039150007,0.09871608,-0.02792808,-0.0119938655,0.018192425,-0.060741268,0.0033844362,-0.036062248,0.013007756,-0.028112423,-0.035808776,0.010161949,0.034864012,-0.055118784,0.0057751443,-0.049911074,0.009424575,0.011780718,-0.004669082,-0.020393029,0.021706479,0.018261554,0.072170585,-0.0134916585,-0.04940413,-0.016855933,0.0045020203,-0.03133844,0.03461054,-0.010075538,-0.031177139,-0.0027867593,-0.012466247,-0.0008439488,-0.011043344,-0.055303127,0.031246267,0.02428729,-0.004622996,0.010732263,-0.00682648,0.0063886633,0.004778536,-0.0053402083,-0.015945734,-0.040071726,-0.021637348,0.020070426,-0.06516552,-0.00473245,0.053505775,-0.0437586,-0.07793132,-0.011187362,0.0041390937,-0.020588893,-0.028181553,-0.018411333,0.03173017,-0.0035370959,0.0043724035,-0.097333506,-0.032997534,-0.009436096,-0.060925614,0.011700068,0.0119938655,-0.028204596,0.037053097,0.050924964,-0.07742438,-0.070926264,0.002125714,0.011388988,-0.0071894065,-0.00830699,0.027282877,-0.042790797,-0.009735655,-0.035370957,-0.0010153309,0.00034636466,0.0159803,-0.009770219,0.0029293376,0.03746787,-0.038827404,0.020980624,-0.010910846,-0.05779177,-0.020058906,0.05004933,-0.0263842,-0.025808126,0.019344574,-0.002367665,-0.028642412,-0.046132024,-0.0050089657,0.017973516,-0.006935934,0.022824062,-0.006290731,-0.01365296,-0.002373426,0.03903479,-0.020439114,-0.030393677,0.006912891,0.024425548,-0.0055763987,-0.007535051,0.027144618,-0.046638973,-0.009297838,-0.047929376,-0.008514377,0.017708523,0.012189731,-0.039933465,0.019816954,-0.018123295,-0.014989452,0.0201626,-0.017904388,0.011314099,-0.0007074912,0.0073795114,-0.033366222,-0.006861044,-0.08203297,-0.018860672,-0.014229034,-0.024264248,0.007270057,0.021971472,0.006774633,-0.0014149824,0.00019226478,0.024817279,-0.040532585,-0.055533558,-0.013007756,-0.07594963,-0.0006178396,0.004283112,0.01807721,-0.047745034,0.00830699,0.0442425,0.021959951,-0.06825328,-0.07152538,-0.018733935,-0.008324273,-0.023757301,0.008957955,0.0072642965,-0.007961346,-0.005795307,0.029748475,0.042376023,0.0077309166,0.034241855,-0.059404776,0.02428729,-0.032559715,0.008433727,-0.050233673,0.03267493,0.021049753,0.05871349,0.0028530078,-0.0012198372,-0.031154096,-0.0048707076,-0.042168636,0.0072931,-0.0022135654,0.03871219,-0.045095094,0.018457418,-0.005184668,-0.06760807,0.0007496166,-0.07005063,0.02861937,-0.029356744,0.022674283,-0.051477995,0.024425548,0.076087885,-0.033804037,-0.01001217,0.022294074,-0.0061870376,-0.0143903345,-0.031614956,0.017443528,-0.026729845,-0.005714657,0.0003989314,-0.04926587,0.014505549,-0.0288498,0.016809847,0.023642087,0.030624107,-0.011751914,0.011377467,-0.026914189,0.01512771,0.016325945,0.0031194421,0.011008779,0.022973841,0.0082205795,-0.024379462,0.02730592,0.035094444,0.041546475,0.0051933094,-0.011204644,0.0072585354,-0.024725107,-0.014793587,0.029817604,0.02520901,0.031223224,0.03841263,-0.025162924,-0.007586898,0.04553291,-0.00022178859,-0.009528268,0.048528496,0.038689148,-0.042376023,0.0025649706,0.023238836,-0.052399714,0.05424315,0.018273076,-0.019978255,0.020853888,0.004283112,-0.0101101035,0.003344111,-0.008180254,-0.012973192,-0.0083703585,0.030370634,0.015461833,-0.05051019,0.02762852,0.041776903,-0.0002925377,0.004588431,0.02762852,-0.0068149585,-0.007840371,-0.0046143546,-0.035440087,-0.012454725,0.037444826,0.0350714,-0.0013271311,0.022766454,0.027190704,0.014240555,-0.010599766,-0.014378813,-0.046431586,0.0061179087,0.0016302902,-0.002078188,0.019505873,0.014321206,-0.0053891744,0.011878651,-0.035993118,-0.019920647,0.0029019741,-0.05415098,-0.010847478,-0.0041131703,0.04615507,0.031614956,0.0029811843,0.01676376,-0.008577745,0.0031511262,-0.05585616,-0.048159808,-0.021741042,0.025600739,-0.054335322,0.033642735,0.04857458,0.034103595,-0.044495974,0.018319162,0.040071726,0.046961572,0.026153771,-0.05889783,0.06876022,0.015081624,0.021741042,0.07115669,0.01481663,0.0014481066,-0.035947032,0.02366513,-0.032375373,-0.02258211,-0.010478791,0.021718,-0.007886456,-0.02661463,0.009009801,-0.047606777,-0.099361286,0.05041802,-0.046731144,-0.006693983,0.024886407,-0.00092603936,0.04087823,-0.0033412306,-0.010173472,0.00066284544,0.033366222,0.027789822,-0.0063022524,-0.018549591,0.003989314,0.026292028,-0.035440087,-0.017466571,-0.05161625,-0.052584056,-0.012742762,-0.0023302203,-0.013583831,-0.044035114,0.007051149,-0.011135515,-0.0022409288,0.018226989,0.008589267,-0.015047059,0.013122971,0.013146014,-0.007944064,-0.027052447,-0.005680092,-0.012904063,0.046961572,0.058943916,-0.023596002,-0.026315073,-0.0122358175,-0.006912891,0.02730592,-0.0053661317,0.0134916585,0.022432331,0.0073967935,-0.00090587675,0.013134493,0.036891796,0.0038769797,-0.028895885,0.022628197,-0.031637996,0.008065039,0.028918928,-0.0071087563,0.049542386,0.009516747,0.004118931,0.05608659,-0.0008209058,-0.054565754,0.008076561,-0.008128407,-0.012996235,0.021625828,-0.016590938,-0.007972867,-0.010444226,-0.013871868,0.023031449,-0.011314099,0.025715955,-0.006486596,0.021602785,-0.052722316,-0.08221731,-0.016095515,0.06355251,-0.031315397,0.07060366,-0.042721666,0.018296119,0.014759023,-0.052584056,-0.0013660161,-0.057515252,-0.008186015,0.011463878,0.037513956,-0.011412031,0.0131921,0.001994657,-0.02389556,-0.0009440417,-0.008975237,-0.035278786,-0.013030799,-0.022639718,0.015277489,-0.022616675,-0.039357394,0.012362554,0.045809425,0.01000641,-0.012097559,-0.002078188,-0.016729197,0.019989777,0.07060366,-0.008451009,-0.008497095,-0.05369012,-0.02202908,-0.0061179087,0.04516422,-0.032237116,-0.0021689197,0.04769895,0.043873817,-0.01573835,-0.041477345,0.026315073,-0.01512771,0.050187588,0.042007335,-0.011244969,0.050371934,-0.010282925,-0.058621317,-0.014643808,0.039541736,-0.0023806267,-0.04140822,0.00050478504,0.029195443,0.03018629,0.010928129,-0.011763436,-0.010812914,0.027490264,-0.0010844598,0.034403153,-0.06903674,0.016268337,-0.024540763,-0.00012088558,-0.018733935,-0.012212774,-0.023826431,0.017501136,0.013837303,0.001683577,-0.013307315,0.0017627872,-0.00004120281,0.0069474555,-0.0014718698,-0.025623783,-0.037652213,0.012811892,-0.0014365852,-0.039011747,-0.0175357,-0.016037907,-0.004893751,0.005616724,0.0030474328,0.040786058,0.008629592,-0.014597721,0.0017627872,0.048989356,-0.08078865,-0.015692262,0.026361158,0.03749091,-0.02335405,0.025600739,0.043090355,0.025185967,-0.023734258,-0.021153446,0.012201252,0.033619694,-0.009712612,0.013526224,-0.0028198834,0.016153121,-0.009251753,0.010040974,0.017247664,-0.025416397,0.06037258,0.0032173747,0.016222252,-0.01761635,-0.003925946,0.017985038,-0.0068956087,0.00048462246,0.008635353,-0.015588569,-0.019540438,0.0347488,0.009787502,0.02428729,-0.010709221,0.005328687,-0.015058581,-0.050694533,0.02156822,0.029679345,0.020888451,-0.037191354,-0.010190753,-0.000104593484,0.02040455,0.0017397442,-0.01653333,0.012293424,0.03749091,0.00045833908,0.028365895,-0.0022308475,-0.04228385,-0.026476372,-0.040071726,0.023423178,0.008474052,-0.030301506,0.00010324331,-0.02490945,-0.030923666,-0.04843632,0.022075165,-0.010184993,-0.008785132,0.028020252,0.018111775,-0.0078000454,0.008330034,0.01132562,-0.015335097,0.010484551,0.012062995,0.03822829,0.016625503,-0.037905686,0.012293424,0.028365895,0.03848176,0.015772913,-0.017812217,-0.029057186,0.02234016,-0.013998604,0.035186615,-0.016429638,-0.020381507,-0.043896858,-0.020784758,-0.0035514978,0.015646176,0.0139409965,-0.01365296,-0.019194795,0.03166104,-0.0029667823,-0.012201252,-0.0104384655,0.046984617,-0.014494028,-0.02225951,0.02871154,-0.009257513,-0.0017815096,-0.03933435,-0.020381507,-0.041707776,0.007909499,-0.032167986,0.026522458,-0.023572959,-0.00018407372,-0.0074428795,0.009130777,-0.0045106616,0.043827727,0.019655654,0.04133909,0.0038136116,0.010565202,-0.012224295,0.017132448,0.013203622,-0.0015006735,-0.0066075716,0.028665455,-0.025900299,0.0002351103,0.0016979788,-0.02520901,0.080466054,-0.009476421,-0.027605478,-0.0051645054,0.03366578,0.009395771,0.00947066,0.021948429,0.02497858,0.00094692205,0.000923159,0.01706332,0.025877256,0.023642087,0.0029192562,0.029495,0.010271404,-0.011481159,-0.030693237,-0.024333376,-0.026176814,0.007909499,-0.0073449467,0.029333701,-0.012212774,-0.02001282,-0.009896955,0.032098856,-0.011049104,0.058851745,-0.017443528,0.023261879,-0.0042255046,0.025462482,-0.003655191,-0.003133844,-0.013825782,0.037444826,0.018895235,0.03622355,0.031545825,0.025347266,-0.005469825,-0.0137336105,0.0028141227,-0.014378813,-0.0039057834,0.019413702,-0.019586524,0.016107036,-0.008283948,0.04152343,0.0043436,-0.02497858,0.0067055044,-0.022236466,-0.021833215,0.004911033,-0.019321531,-0.00969533,0.0055908007,0.02281254,-0.0042485474,0.0074428795,0.029287616,-0.022870148,0.00015229963,-0.0063829026,0.01551944,0.021164969,0.049680643,-0.032329287,0.006043019,-0.018031124,0.030232377,-0.0059854113,0.014701415,-0.015047059,0.028665455,0.032536674,0.024056861,-0.010156189,-0.003421881,0.010213796,-0.00020198604,0.0027421135,-0.026706802,-0.053321432,0.010732263,-0.004306155,-0.016544852,-0.016441159,0.023019927,-0.008226341,0.0060142153,-0.046892446,0.01939066,-0.028803712,-0.0107668275,0.012431682,-0.012523854,-0.023411658,0.00970109,0.016325945,0.00387986,-0.011924737,0.060695183,-0.016786804,-0.003188571,-0.03638485,-0.0048591862,-0.001605807,0.0026657835,-0.020531286,-0.0008864342,-0.0050809747,0.004980162,0.035647474,-0.015703784,0.025393354,0.007356468,-0.022789497,0.025692912,-0.033619694,-0.0057232976,-0.011740393,-0.012500811,-0.0027493143,0.013122971,-0.031384524,-0.011746154,0.014517071,-0.03910392,0.0022495699,-0.008813936,0.0047583734,-0.018192425,-0.022547547,0.014574679,0.010369336,-0.07396793,0.025001623,0.050233673,-0.02520901,-0.005778025,0.010467269,-0.008525899,0.06442814,0.00054943084,-0.05949695,0.02474815,-0.053551864,0.028066337,-0.033734906,0.048113722,-0.031522784,0.025093794,-0.00087563286,-0.0056916135,0.006578768,0.009672287,0.010300208,-0.0075696157,0.02428729,-0.014931845,0.013411009,0.000318101,0.018756978,0.016360508,-0.0044040876,0.027421134,-0.02024325,-0.008485573,0.00003841245,-0.011821044,0.012281903,0.011043344,-0.0025304062,-0.006244645,-0.017051797,0.035463132,-0.012097559,0.019563481,-0.01838829,-0.012408639,-0.02838894,-0.0075926585,0.019805433,0.0030589544,0.010104342,-0.020611936,0.0023763063,0.011210405,-0.015588569,0.0003218815,0.0037992096,-0.01055368,-0.008404924,-0.023780346,-0.03686875,0.02599247,0.007131799,0.017720044,-0.020358464,0.03444924,-0.025047708,-0.029771518,-0.016671589,0.023480786,0.0028026013,-0.015600091,-0.007275818,0.0144249,0.020369986,-0.031269312,0.049311955,0.0061179087,0.028918928,0.001170871,0.01607247,-0.034564454,-0.00737375,0.010340533,-0.0017887106,0.008226341,0.04168473,-0.0159803,-0.0059162825,0.0054208585,-0.0072873393,0.0070569096,-0.032260157,-0.027029404,0.036361806,0.010421183,0.015680742,-0.0037387218,-0.030554978,0.0020349822,-0.04214559,0.024725107,0.006763112,-0.0409704,-0.06617941,-0.01520836,-0.027144618,-0.002645621,0.028988056,0.005322926,0.030140204,-0.014090776,0.023158185,-0.021095838,0.008260905,-0.011527246,-0.007339186,0.025485525,0.03629268,0.022835582,-0.017120928,-0.025185967,-0.014666851,0.02543944,0.0014531473,0.01062857,0.023469266,-0.0039691515,0.017362878,0.007321904,0.0058356323,-0.010386619,-0.037997857,-0.013353401,-0.009649244,-0.006377142,0.010363576,-0.00923447,0.007206689,-0.043574255,-0.0122358175,-0.017259184,0.001372497,-0.022639718,-0.024794236,-0.014759023,-0.018745456,-0.0050636926,0.011970823,-0.011544528,-0.057607424,0.046132024,0.012351032,-0.012466247,-0.0066075716,0.03189147,0.04304427,-0.014735979,0.004199581,0.0004475377,0.007223971,0.026015513,0.005245156,0.0013026479,-0.009280556,-0.03749091,-0.04958847,-0.021199532,-0.006492357,-0.019886084,0.022224944,0.0071433205,0.0070108236,0.014885759,0.0032576998,-0.018169383,0.015692262,0.0013357722,-0.0234347,0.026430286,0.0075235297,-0.016164644,0.01381426,-0.0014409057,-0.012189731,0.032329287,0.0005112659,0.049081527,-0.041615605,-0.018226989,0.0086699175,-0.032628845,0.027167661,-0.0017440647,0.019102622,-0.02110736,-0.013629917,0.0014502669,0.040071726,-0.042721666,-0.015219882,0.060464755,0.012811892,0.018054167,-0.013376444,0.023423178,0.010594006,-0.015196838,0.031822342,-0.020830845,0.023077535,0.0116655035,0.043574255,-0.0052883616,0.005034889,-0.0031252028,0.012765805,-0.02972543,-0.015219882,-0.00682648,0.023515351,-0.019886084,0.008727524,0.020496722,0.048205893,-0.02467902,0.03343535,-0.012811892,-0.022754934,-0.050187588,-0.022639718,0.005654169,-0.027167661,-0.035117485,-0.0068034367,0.028918928,-0.026752887,0.020830845,0.017904388,0.017455049,0.047975462,0.010703459,-0.0052105915,-0.037352655,-0.029195443,-0.022593632,-0.0124432035,0.03398838,0.03258276,-0.0011111032,-0.011469638,-0.01792743,0.0086699175,-0.03428794,0.015865086,0.0104960725,-0.029679345,-0.0013861787,-0.0039461087,0.0060948655,0.010334772,0.025393354,-0.037122224,-0.002078188,-0.021729521,0.001481951,-0.0026254584,0.0032605804,0.012466247,-0.0054640644,-0.0055331932,0.04133909,0.038988706,0.014874238,0.007339186,0.015242925,0.0074313576,-0.0045740297,0.008249383,0.0029019741,0.013146014,-0.0113659445,-0.040993445,-0.0066536576,0.0025001622,-0.014079255,0.0026441808,0.014067733,-0.012304946,0.026499415,0.010922368,0.0050924965,0.030071076,0.01210908,-0.050648447,0.02684506,-0.010133146,-0.040140852,-0.053551864,0.023688173,-0.0057751443,-0.022282552,0.013676003,-0.016878976,-0.018180903,-0.0086411135,0.008756328,0.021268662,0.012973192,0.02117649,-0.004671962,0.0049513583,-0.020289335,0.04140822,-0.001931289,0.014378813,0.014401856,0.0022337278,-0.04133909,0.0006678861,-0.007978628,-0.0035428565,0.021234097,-0.022213424,0.026176814,-0.005392055,-0.01109519,0.05097105,-0.003243298,0.012454725,0.0017829498,0.020692587,-0.026798975,-0.031614956,-0.01963261,-0.01629138,0.011498442,-0.03675354,0.014171426,0.012604505,-0.03624659,-0.029333701,0.003995075,-0.04329774,0.0002435714,0.030554978,-0.014010126,0.013272751,-0.0022610915,0.020128034,-0.015196838,0.059865635,-0.026798975,0.00016202088,0.043574255,0.018975886,0.029034141,-0.017881345,0.049219783,-0.010190753,-0.014770544,-0.0002025261,-0.0033095465,0.03567052,-0.008842739,-0.000021434013,0.0044674557,-0.029495,0.02435642,0.020151077,-0.0192524,-0.0064174673,0.034472283,-0.012915584,0.022962319,-0.024817279,-0.030554978,0.031522784,0.008266665,0.004988803,0.03825133,0.007857652,0.02257059,0.000077680015,0.006503878,-0.020784758,0.015957257,0.015772913,-0.015081624,0.008047758,-0.04680027,0.024932494,-0.012201252,-0.020427592,0.0076848306,-0.012039952,-0.019379137,-0.03375795,-0.058851745,-0.0350714,-0.012523854,0.013238186,-0.003989314,0.004841904,-0.033181876,0.010104342,-0.0026830658,0.008168733,0.028780669,-0.0037675255,0.003600464,-0.019805433,0.051155392,-0.016637024,0.0046287565,0.014102298,0.033458393,0.020969102,-0.015795955,0.015899649,0.0583448,0.023146663,-0.017178534,0.016003342,-0.008088082,-0.02025477,0.02530118,-0.016441159,-0.010611287,0.00496576,0.03467967,0.017961996,0.0058990004,0.019540438,0.038113073,-0.03903479,0.056040503,0.0037588845,-0.018780021,0.011147037,-0.014321206,0.02320427,-0.016383551,-0.034241855,0.0023878277,0.010501834,0.006912891,0.00037336812,0.02110736,-0.0014286642,-0.014724458,-0.018180903,0.043459043,0.023400135,0.008364598,-0.00019586524,-0.0030819972,-0.015507919,-0.017051797,0.00985663,0.017869823,-0.0010693378,-0.03979521,0.026407244,-0.005135702,-0.02428729,-0.035163574,0.010375097,-0.05608659,-0.035993118,-0.009459139,-0.000062288025,0.02157974,0.019897604,0.008007432,-0.032260157,-0.00147403,0.02963326,0.0098681515,0.014401856,0.007886456,0.019275444,0.036799625,0.03887349,-0.004833263,-0.0024353538,-0.010052496,-0.016821368,0.002367665,-0.03553226,0.008128407,-0.004928315,0.0038078509,0.0018607199,-0.023918603,0.017570265,0.0037819275,0.013157536,0.004637398,-0.0012925667,-0.013537745,-0.0015496397,-0.020323899,-0.04926587,-0.029587174,0.026706802,-0.023227314,0.009418814,0.0054295,0.00915382,0.0038654583,-0.01761635,-0.0096607655,-0.043482084,-0.032006685,0.02258211,0.0050291284,-0.0024022297,0.0027723573,-0.018987408,-0.010686178,-0.008888826,0.007632984,-0.001994657,0.007967107,0.018768499,-0.032260157,-0.0012407199,0.010634331,-0.04398903,-0.03848176,-0.011181601,-0.007247014,0.009349685,0.016037907,0.009217188,0.008808175,0.0041621365,-0.009407292,-0.013330358,-0.0061121476,0.00550727,0.009862391,-0.026315073,-0.019655654,-0.02769765,-0.025692912,0.020761715,0.04484162,0.021003667,0.045878552,-0.018906757,0.016348988,-0.021211054,-0.009447617,-0.01815786,-0.017812217,-0.051477995,-0.0046575605,0.016786804,-0.03896566,0.0037848079,0.02389556,0.036638323,0.00036256673,0.008065039,0.021360833,-0.0069935415,-0.000822346,0.0005886759,0.016959626,-0.006325295,0.0034506847,0.013399487,-0.036638323,-0.019183272,-0.00760418,-0.002109872,0.026430286,0.03776743,0.0048131,0.019068059,0.011060625,-0.025692912,-0.026061598,0.006175516,0.01311145,-0.042952098,-0.008520138,-0.0114869205,0.0072354926,0.02986369,0.024563806,-0.020070426,0.019068059,-0.018572634,0.023734258,-0.022075165,-0.01596878,-0.011821044,0.003001347,0.017627873,-0.0054727052,0.0096607655,-0.007471683,0.006976259,-0.010956932,0.0042111026,-0.03193756,0.009384249,0.00737375,-0.0051472234,-0.012512333,0.009361207,-0.010352055,0.00551015,0.0015640416,-0.0054295,0.009297838,-0.014263598,0.027328962,-0.015139231,0.00558792,-0.042191677,-0.017097883,0.008681439,-0.0061409515,0.028872842,-0.0064001847,0.019586524,-0.035025313,0.0075753764,0.02645333,0.045279436,-0.0030675954,-0.027328962,-0.0024785595,-0.011210405,-0.02831981,0.00993152,-0.010835957,0.0152890105,-0.0071721245,-0.009297838,-0.041477345,0.00082666654,0.040924314,-0.018342204,-0.025900299,0.026476372,0.005446782,0.022559067,-0.024195118,0.027905036,-0.036891796,0.0053056437,0.0034506847,-0.0041304524,-0.012846456,-0.014378813,0.036477022,0.0016072472,-0.00798439,-0.010409662,0.0037329611,0.008957955,0.02490945,0.022063645,0.011509963,0.03156887,0.005213472,-0.0035572585,0.036039203,-0.024056861,-0.009101973,0.014413378,0.012708198,-0.011688546,-0.0037387218,0.013088407,0.004300394,0.007402554,-0.0021530774,-0.03405751,-0.015415747,0.023826431,0.021464527,-0.033274047,-0.014620764,0.040670842,-0.02102671,-0.051109307,-0.0073967935,0.0032605804,-0.029333701,0.034103595,0.013998604,0.012696677,-0.023411658,0.012546897,-0.05087888,0.024586849,-0.00043781643,0.030531935,-0.046662014,0.019759348,-0.009885434,-0.008278187,-0.010640091,0.036500063,-0.022996884,-0.015104667,-0.033619694,0.0015064342,-0.010248361,0.018572634,0.0041074096,0.029356744,-0.0013206502,0.012132124,0.029034141,-0.005826991,-0.0034276417,-0.009142298,-0.02312362,0.0035803015,-0.01884915,-0.028803712,-0.019759348,0.0011917537,-0.052031025,0.012546897,-0.021948429,-0.033343177,-0.010772589,0.022720369,0.010017931,-0.015530962,0.000869152,0.02661463]},{"id":"interface-GatewayMessageUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayMessageUpdateDispatchData\nDescription: MESSAGE_UPDATE — partial message (edited fields).","meta":{"url":"/docs/typedefs/GatewayMessageUpdateDispatchData"},"embedding":[0.017633533,0.023964461,-0.012612874,0.0308097,0.002596048,0.027013592,0.0013684356,0.022972574,-0.019788742,-0.010812785,-0.0017128405,-0.0024552245,-0.051333174,0.03151994,0.013910898,-0.003499154,0.016837575,0.027650358,-0.014315,0.056672215,-0.021833742,0.0044420585,0.055741556,0.023217484,0.019617304,-0.018686647,0.0041757184,-0.013470059,0.005547215,-0.024282843,0.017927425,-0.01553955,0.049447365,-0.04094898,0.034801736,0.04910449,0.0063248053,0.008461647,-0.018907065,-0.04258988,-0.0129190115,-0.038646825,0.0036399774,0.021858232,-0.044622634,0.008008563,0.011712829,0.01864991,0.0129435025,-0.00023036863,-0.009575988,0.0018215195,0.027552394,0.044426706,0.02816467,-0.0010378069,0.015098712,-0.0021797006,0.030932155,0.0020618376,-0.037446767,-0.013310868,0.0028792252,-0.018111108,-0.0021031662,-0.018245809,-0.03257305,0.03034437,0.02814018,0.005146175,0.003514461,0.005397208,-0.03514461,-0.011376077,0.033307783,0.006239087,-0.021735778,-0.017780479,0.009765794,-0.009349446,0.009324955,0.028434072,-0.08508179,-0.05823964,-0.024405299,-0.00560232,-0.021270448,-0.00013929266,-0.013800688,-0.0053451643,-0.024184879,0.04741461,-0.022972574,0.011278113,-0.028189162,-0.049790237,-0.017045747,0.01018214,-0.020254072,0.009722934,0.047292154,-0.06132551,-0.028825928,-0.022066407,0.021613322,-0.06548898,-0.0024093038,0.015466077,-0.059709102,0.007745284,-0.052067902,-0.038867246,0.0057400824,-0.010390314,0.011829161,-0.022825629,0.037177365,-0.02647479,0.034360897,-0.0010875543,-0.03921012,-0.013408832,-0.010665838,-0.03443437,0.005081886,-0.0249441,0.0046716616,-0.01673961,-0.05319449,0.011608742,0.051088262,0.006594206,0.004270621,-0.014180299,-0.027625868,-0.010629102,0.0056115044,0.03347922,-0.041536767,-0.03916114,0.014780329,-0.032107722,0.0024613473,0.048516706,-0.0310791,-0.0010462257,-0.024013443,0.031128082,0.041512273,0.015208921,-0.044941016,0.063235804,-0.014412964,-0.012661856,0.014388473,0.034826227,-0.009882125,-0.023890987,-0.005241078,-0.013408832,0.016445719,-0.067742154,-0.029487185,-0.009331077,-0.055790536,-0.051186226,-0.0020955126,-0.02320524,-0.06436239,-0.016066108,-0.00064786396,-0.08248574,-0.023278711,-0.0024873689,-0.002874633,-0.00084417476,-0.027576886,-0.033773113,-0.05681916,-0.006281946,0.054223113,0.034018025,-0.01771925,-0.019102994,-0.019507095,-0.019066257,-0.009367814,0.061227545,-0.011565883,-0.016935539,-0.016237544,-0.0071452544,0.04937389,0.031250536,-0.017131466,-0.047463592,0.027013592,-0.041585747,0.048737124,-0.004852283,0.02723401,-0.014498683,0.041561257,-0.0061564296,-0.013910898,0.011057694,0.021392904,0.0041053067,-0.025470657,0.0015873241,0.03999383,0.028434072,-0.01936015,-0.016200809,-0.027846286,-0.002374098,-0.016617155,-0.012600629,-0.01540485,-0.015392604,0.020094879,0.015906915,0.053537365,-0.0033307783,0.0026128853,0.03320982,-0.022617454,0.016017126,-0.075775206,0.036932454,0.0150374845,-0.0129802395,-0.019862216,-0.06073772,-0.024662454,-0.0149885025,-0.006973817,-0.024478773,0.037520237,0.040018324,0.0038450898,-0.008039176,0.010653593,0.0065391017,-0.028948383,0.00043203685,0.02600946,-0.031177064,-0.022641946,0.018600928,0.05103928,0.042002093,0.024491018,-0.027160538,-0.020866347,0.008198368,0.047096226,0.022176616,0.010133158,0.055643592,0.024001198,-0.014817066,-0.011608742,0.027111556,-0.005617627,-0.0043808306,0.08527772,0.022335809,-0.017462095,-0.001700595,0.0010676553,0.01878461,0.013470059,0.037201855,-0.020719402,-0.014719102,0.024013443,0.008584102,0.024613472,0.009086167,-0.037348803,-0.0185397,0.0029970882,-0.005577829,-0.029756587,0.03852437,0.0493494,0.029928023,0.029315747,0.010763803,-0.012496541,0.0010485217,0.02202967,-0.046802334,0.033356767,0.022666436,-0.006079895,-0.025544131,0.02500533,0.0033430238,0.016506946,-0.024258353,-0.023952214,-0.023523621,0.030050479,-0.007353428,0.05417413,-0.054027185,0.014706856,-0.036981437,0.004953308,-0.015257903,-0.03414048,0.018000897,-0.055496644,-0.012796557,0.021270448,0.045871675,-0.008792276,0.0054737423,-0.003361392,0.02649928,-0.018453982,-0.059513174,-0.020168353,-0.014192545,-0.053047545,-0.013298622,0.036540598,0.024221616,-0.015355868,-0.01144955,0.037961077,-0.024833892,0.044941016,0.023805268,-0.061227545,0.044647124,0.016311018,-0.010512769,0.009465778,-0.045136943,0.010653593,-0.0553497,-0.022262335,-0.06367665,-0.0534394,0.029658621,0.00680238,0.0051431134,-0.0017281474,-0.013531287,0.020890838,-0.024491018,0.02911982,-0.021858232,0.05275365,-0.019164221,-0.028752454,0.031201556,-0.0032358756,0.019862216,0.0040042815,0.03658958,-0.02549515,0.028948383,-0.037667185,0.015257903,-0.019213203,-0.02047449,-0.017192693,-0.037201855,-0.0553497,0.008724925,-0.014057844,-0.009337201,-0.0055655837,-0.04572473,-0.022078652,-0.018037634,0.038132515,0.0629909,-0.0017174326,0.03776515,0.008724925,0.029168801,-0.021086765,0.034067005,-0.029487185,0.021503113,-0.001509259,-0.020033652,-0.011516901,0.008039176,-0.03827946,0.02358485,0.0129067665,0.028752454,0.03034437,-0.015808951,0.029168801,0.009496392,-0.0037899849,-0.00043586356,-0.044671617,0.048296288,0.015747724,0.042442933,0.05559461,-0.0120189665,0.042247005,-0.03272,0.018833593,0.013935389,0.004187964,-0.021674551,0.016911047,0.031201556,-0.027846286,-0.002683297,-0.0020511227,0.010610733,-0.01818458,0.037495747,0.035952814,-0.01407009,0.0149272755,0.007426901,0.0119822305,-0.061031613,-0.04672886,0.03487521,0.024307335,0.008284086,0.081212215,-0.0016837574,0.0164947,-0.012612874,-0.009104536,-0.005681916,-0.047806464,-0.0059666242,-0.012037335,0.013592514,-0.052116886,0.026033951,0.017951915,0.020217335,0.032009758,-0.026156407,-0.03585485,-0.017829461,-0.018111108,0.041781675,-0.068574846,-0.006337051,0.016421227,0.056035448,0.04163473,-0.023315448,0.0024613473,0.011676093,-0.011008712,0.0692606,-0.03149545,-0.0015735478,0.031544432,-0.00035071903,-0.033405747,0.04437772,-0.017413113,-0.0028715718,-0.0026434993,0.05613341,-0.0016225299,-0.03227916,-0.014315,-0.019176466,0.022323562,0.034018025,-0.014168054,0.011767934,-0.010078054,-0.0014089989,0.03514461,0.07479557,0.0059880535,0.001749577,0.0308097,0.0018689708,-0.010237245,-0.0028486114,-0.0061564296,-0.012374086,0.0017266168,-0.010433174,-0.020511227,-0.025838023,0.02022958,-0.026156407,-0.020217335,0.006857485,0.009582111,-0.029781077,0.066860475,0.020401018,-0.042687844,-0.0057155914,-0.035732396,-0.029732095,-0.00986988,0.011774057,-0.0062482706,-0.031250536,-0.022495,0.025470657,0.0035665045,0.04168371,0.008908608,0.040091794,0.015429341,0.03323431,0.037030417,-0.0042736824,-0.0042981734,-0.0077330386,0.0048339143,-0.112364784,-0.032107722,0.006679925,0.010720943,-0.027821796,0.028238144,0.024258353,-0.0005598494,-0.038916226,-0.0044420585,-0.022715418,0.029144311,0.03058928,0.007053413,0.0025179826,-0.0047757486,0.010231122,0.020266317,0.005039027,0.023180747,0.04165922,-0.0031011752,0.021845987,0.013506796,-0.0045094085,0.01349455,0.023278711,0.004656355,0.029389221,-0.009667829,-0.021086765,0.029389221,-0.0017909056,0.014192545,-0.04912898,-0.0047757486,-0.039381556,-0.019213203,0.025568621,-0.0015023708,-0.01722943,-0.0019470359,0.0022715419,-0.038475387,0.043887902,-0.0064227693,0.036516108,0.018698892,0.030736227,0.025348203,-0.00014436306,0.01682533,0.0047390116,0.03269551,-0.08101629,0.01936015,0.030883173,-0.048271794,0.009582111,0.015980389,-0.013947634,-0.039822396,0.034238443,-0.0059360103,0.025446167,-0.0073411823,0.021686796,-0.0064717513,-0.021723533,-0.0011411284,-0.009386183,-0.031960778,0.016727366,0.0051492364,0.013886407,-0.010004581,-0.004117552,0.041536767,0.05872946,0.0007584562,0.01371497,0.011565883,0.009918862,0.014633383,0.0602479,0.0050941315,-0.015808951,-0.026670719,-0.016004879,-0.016715119,0.0027583009,0.030638263,-0.008039176,0.011351586,0.0149517665,0.005834985,0.0071146404,-0.017829461,0.067791134,-0.01902952,-0.017743742,0.017131466,-0.03849988,0.01395988,-0.029805569,-0.01744985,0.0026756437,-0.03392006,-0.034850717,0.056182392,-0.02385425,-0.0050941315,-0.027895268,0.011027081,0.0028455502,0.0119699845,0.0063248053,0.0760691,-0.035487484,0.025348203,-0.00034995368,-0.010855643,0.021233711,-0.016078353,-0.06867281,0.056231376,0.012784311,0.020633683,0.0052227094,0.0089392215,0.06044383,-0.025960479,-0.016568173,-0.032328144,0.0056451797,0.0021353106,0.014192545,-0.01924994,0.024246108,-0.03269551,-0.010194386,0.0079534575,0.036295686,0.016164072,0.016372245,0.07817533,-0.014057844,0.0054033305,0.009778039,0.011774057,-0.028287126,0.008431032,0.0018475411,0.015698742,0.0167641,-0.031862814,0.00037406202,0.030491317,0.010867889,0.037397783,-0.00020243357,0.021992933,-0.020511227,0.026327843,0.0058809053,0.016347755,-0.040826526,0.023388922,0.0017832522,0.061227545,-0.0080514215,0.004879835,-0.017890688,-0.017902933,0.0030123952,-0.03725084,0.007861617,-0.007408533,-0.018576436,-0.0109597305,0.010641347,0.033087365,0.0015842627,0.030932155,-0.016347755,-0.03276898,-0.018478472,-0.00021429641,0.0010959731,-0.032671016,0.037667185,0.046508443,0.0071452544,0.0049808607,0.0075371107,-0.016078353,0.008100404,-0.0076289517,-0.029070837,-0.007800389,0.03778964,0.0050941315,-0.0022286826,-0.011645479,0.03661407,-0.016555928,0.0004461957,-0.0058900896,0.011051572,0.007084027,0.015576287,0.009435165,0.028556526,-0.0004274448,-0.0028271817,0.022911347,-0.0090739215,0.016078353,-0.024588982,0.012202649,-0.019347904,-0.02649928,0.023646077,-0.046508443,0.008326946,-0.024503263,0.010849521,-0.0028822867,0.0078065116,0.027895268,0.01651919,0.0043134806,0.006722784,0.03034437,0.02525024,-0.014621138,0.059758082,-0.052067902,-0.006851362,-0.03803455,-0.030515807,0.020315299,-0.0014419087,-0.0065146107,0.016898802,-0.0012819517,0.013763952,0.024576737,-0.03678551,0.005853353,-0.005308428,0.0011793956,0.0076289517,-0.007879985,-0.0036981436,-0.00824735,-0.03538952,0.0005617627,0.030613773,-0.009569865,-0.012508787,-0.03494868,0.0018812163,0.0068391166,-0.009386183,-0.018441737,-0.01082503,0.010163772,0.007616706,0.036393654,-0.07249341,0.0591703,0.056966107,-0.02887491,0.04432874,-0.032352634,-0.009876003,0.03151994,0.039430536,-0.072395444,0.038671315,-0.0033491466,0.0029266765,-0.006082956,0.034826227,0.003943054,0.019813232,0.0038757036,-0.003554259,-0.034507845,0.01769476,0.017045747,-0.021882724,0.029952515,-0.01984997,-0.018527454,-0.017021257,-0.004610434,0.028262634,-0.021331675,0.03151994,-0.014523174,-0.015625268,-0.029021855,0.021882724,-0.0035236452,-0.02118473,0.023805268,-0.01731515,-0.014437455,0.010004581,-0.0042644986,0.00032067925,0.015282394,-0.033797603,0.009588233,-0.022115389,0.024821647,-0.019176466,-0.007855494,-0.014694611,-0.041438803,-0.0075616017,-0.047561556,0.029413711,-0.010776048,-0.009006572,0.0089147305,0.005210464,-0.015882425,-0.00081509165,0.020535719,0.03507114,0.0003348381,0.029266765,-0.022972574,0.017045747,0.00089774886,-0.0021598015,0.008639206,-0.009257604,0.042687844,0.0128822755,-0.0037318189,-0.010139281,0.02420937,-0.008161631,-0.0031991391,-0.0013439446,0.056525268,-0.0010225,-0.006211534,0.02033979,0.007408533,0.015919162,0.016311018,0.012049581,-0.010463787,0.0310791,0.022531737,0.009814776,-0.006236025,0.0027169723,-0.009318832,-0.005981931,-0.008388174,-0.008339192,-0.0185397,-0.04048365,-0.01936015,-0.0062299026,-0.019102994,0.007084027,-0.048737124,-0.04401036,0.0003474663,-0.02525024,-0.0013554248,0.030295389,0.035316046,-0.004659416,0.04136533,-0.003189955,0.03147096,-0.017327394,-0.019788742,0.026107425,-0.01287003,0.016213054,-0.01573548,-0.015625268,0.01862542,-0.0034838472,-0.024221616,-0.019996915,0.051578082,0.004114491,-0.007849371,0.008100404,-0.009441287,0.018600928,0.0033154716,-0.022458263,0.030295389,-0.022543982,0.007702425,-0.004117552,0.013996616,-0.009588233,-0.009331077,0.0032297529,-0.011320973,0.0005292356,0.009680075,0.06343173,-0.012533278,-0.0041328594,-0.00680238,0.016213054,-0.01791518,0.022617454,-0.04124287,-0.020792874,-0.027013592,0.018956047,0.022078652,-0.028066706,0.026352335,-0.017290657,0.035536468,0.0076840566,0.04572473,-0.037397783,-0.008682066,-0.04278581,-0.055300716,-0.035046645,-0.003652223,-0.04119389,0.025838023,-0.01807437,0.038426407,-0.002167455,-0.0054676197,-0.005844169,0.059121314,0.022213353,-0.017682515,0.03945503,-0.01275982,-0.0054584355,-0.030319879,0.021907216,-0.009031063,0.015710987,-0.021515358,0.01958057,0.0019240755,-0.029315747,0.0035695657,-0.017743742,0.055937484,0.0074575148,0.020658173,0.009459656,-0.0060247905,0.012380209,0.02551964,-0.030736227,-0.009373937,0.008418787,0.03181383,-0.007328937,-0.02745443,0.052900597,0.042761315,-0.008877994,-0.003352208,0.0032695509,-0.012245509,0.0008533589,0.025593113,-0.029487185,-0.020070389,-0.014572156,0.007573847,-0.02527473,-0.00076572696,0.00013632695,-0.02525024,0.010365823,-0.020131616,0.016617155,0.06534203,-0.030393353,0.0045645135,-0.028678982,-0.005926826,-0.03127503,0.006361542,-0.00895759,-0.018919311,-0.008651452,0.004252253,0.030907664,0.007304446,0.008075913,0.004595127,0.008259595,0.02216437,0.0090126945,-0.00061151007,-0.010659715,-0.029413711,0.019935688,0.000028987415,0.014106826,0.045651257,-0.0387203,0.015245658,-0.002709319,-0.00019124041,-0.010322964,-0.009673952,0.011161781,0.00083192927,-0.027552394,0.010904625,0.01018214,0.010812785,0.014768084,-0.019176466,-0.011565883,-0.025152275,0.0090494305,-0.023486886,-0.009386183,0.019629551,0.00526863,0.029511675,0.010586242,0.053390417,0.029070837,-0.014388473,0.022115389,0.00073702657,-0.010757679,0.034213953,0.02093982,0.031421974,-0.023915479,0.011510778,-0.012600629,-0.02649928,0.0042093936,-0.048198324,0.010280104,0.0015222698,-0.008155509,0.0129557485,0.0027123801,0.04672886,0.0009872941,-0.03178934,0.0037563099,-0.009778039,0.00037903676,0.010433174,-0.004925756,-0.01889482,0.0033001646,0.028238144,0.014143563,0.032328144,0.0005521959,0.0012559299,0.009361692,0.009031063,0.0035420135,-0.004166534,-0.0032297529,-0.032205686,0.050598443,0.017413113,0.008651452,0.010678084,-0.015490568,-0.016641647,0.045234907,0.0058931513,0.021674551,0.022935838,0.02298482,-0.013555778,-0.013053712,-0.026131915,0.013739461,0.006355419,0.012263877,0.018723384,0.044255268,-0.0033950673,0.0060982634,-0.032964908,-0.005274753,0.05054946,-0.015380359,0.05148012,-0.004420629,-0.012006721,-0.04236946,-0.0046165567,-0.04765952,0.0026756437,-0.013470059,-0.029658621,-0.0014794106,0.0059360103,-0.0063186823,-0.013984371,0.06730132,-0.026572755,0.01360476,0.020988801,-0.0016255913,0.005501295,-0.027160538,0.014217036,-0.03132401,0.0028547342,0.008712679,0.008345314,-0.0075371107,-0.012551647,0.013225149,-0.023315448,-0.008522874,0.017841706,0.01973976,-0.05368431,0.0150374845,-0.0036307934,-0.000029011331,-0.021221466,-0.008320823,-0.019188711,0.029830059,-0.015710987,0.045210417,0.043447066,0.024980837,0.018453982,0.027552394,-0.02093982,-0.018796856,0.0009574457,0.0011051572,-0.033626165,0.010978099,-0.048345268,-0.0069615715,0.0052318936,-0.013727215,0.01262512,-0.029070837,0.0015429341,0.025887005,-0.041071437,-0.014266018,-0.025017574,0.0047420734,-0.028997365,0.03903868,-0.022470508,0.013445568,-0.047120716,-0.003985913,0.04432874,-0.024821647,-0.022041915,0.008173877,0.019151976,0.01624979,-0.0021919461,0.025225747,0.031397484,0.00873717,0.00793509,-0.006006422,0.03225467,-0.007206482,-0.008584102,-0.0044879788,0.024858383,-0.014008862,0.0037593711,-0.01018214,-0.046973772,0.035707902,0.05177401,0.0015299233,-0.000108774555,-0.0014778798,0.036026288,-0.043985866,0.038450897,0.012539401,-0.0046686004,0.024968592,-0.05035353,0.038475387,0.014229281,-0.01360476,0.011039326,0.022176616,0.0007175103,0.011725075,-0.009490269,0.0026480912,0.0026756437,-0.0016730427,0.0055808905,0.0022592964,-0.017780479,0.008326946,-0.0006252863,-0.0026679903,-0.020682665,0.02116024,-0.011039326,-0.050696407,-0.03009946,-0.0148905385,0.00442369,0.011486287,-0.038108025,-0.008388174,-0.017057994,0.0067656436,0.020988801,-0.03105461,0.024735928,0.0068636076,-0.009729057,0.0017587612,-0.0034440493,0.027307484,0.014033353,-0.0060339742,-0.01564976,-0.027356466,0.008437156,0.04327563,-0.0018536638,0.015723234,0.005314551,-0.012784311,-0.00818,0.010439296,-0.00036640858,0.006924835,-0.015698742,-0.0048094233,0.026082933,-0.020511227,0.01173732,0.02156434,-0.041291855,-0.014119072,-0.037054908,-0.015172185,0.0077085476,-0.035707902,-0.041732695,-0.0029986189,0.006306437,-0.01624979,-0.036222216,0.03820599,0.04045916,-0.0037073276,-0.011786303,-0.040287722,0.0011395976,0.0028792252,-0.005626811,-0.011633233,-0.012257754,-0.011565883,-0.027650358,-0.021368412,-0.013972125,0.014021107,0.04454916,-0.008724925,-0.012392455,-0.030221915,0.031715866,-0.007133009,-0.006193166,0.000256199,-0.023682814,0.016286526,0.025911497,0.009918862,0.020376526,0.015110957,-0.016923293,-0.0013087387,-0.004148166,0.03945503,-0.010390314,-0.0038144758,-0.010035194,-0.01856419,-0.002709319,-0.009918862,0.027552394,0.0007198063,0.029634131,-0.03541401,0.023842005,0.010298473,0.038377423,0.019923443,0.0013653742,-0.026107425,-0.00426756,0.020217335,0.0019975486,-0.0043532783,0.0036307934,0.020841856,-0.043496046,0.019213203,0.003985913,0.022482755,0.03681,0.013776197,0.008443278,-0.01682533,-0.006526856,0.01042705,-0.044745088,-0.014131317,0.030221915,0.0069187125,0.00067426835,0.021270448,-0.034801736,0.011363832,0.026180897,-0.013457814,-0.026180897,-0.004093061,0.021454131,-0.010267859,0.008118772,0.0090004485,-0.026425807,-0.0119087575,0.024270598,-0.023793023,-0.012086317,-0.009918862,0.016004879,-0.0047114594,0.0062268414,-0.025593113,0.020107126,0.0022348054,0.0288994,0.015172185,-0.03316084,-0.031593412,0.014155808,0.016666137,-0.018343773,0.011467919,0.0099984575,0.036393654,-0.015453832,0.036295686,-0.0037195734,0.0078065116,0.011063817,-0.015686497,-0.021282693,0.027527904,0.023744041,-0.043667484,0.01275982,-0.0072922003,-0.010151527,0.018600928,0.022446018,0.025887005,-0.0027016653,0.046581917,0.03301389,-0.02020509,0.018747874,0.03460581,-0.008896362,0.0058135553,-0.0020281624,-0.023780778,-0.00054186373,-0.031103592,0.006006422,0.0014097642,0.025887005,0.0036889594,-0.030638263,0.022678683,0.015380359,-0.0308097,-0.0001673234,0.005314551,-0.009955599,-0.028287126,-0.02153985,0.03634467,-0.024184879,-0.011082185,0.024895119,-0.005810494,-0.003936931,0.0043287873,0.0056849774,-0.006722784,0.01889482,0.017670268,0.0060707107,-0.008786152,0.024172634,0.0026526833,0.012172036,0.037520237,-0.013176167,0.008718803,0.028287126,-0.019703023,-0.0030552545,0.046802334,-0.010414805,-0.0024337948,-0.011896512,0.03414048,-0.0047696256,-0.004218578,-0.002427672,-0.023597095,-0.0043777693,0.010929116,-0.007726916,-0.046851315,0.036271196,0.030711737,-0.0061992886,-0.030687245,-0.0029450448,-0.006906467,-0.032964908,0.02960964,0.025397185,-0.03178934,-0.0014311938,0.018796856,-0.043202154,-0.01862542,-0.0016516129,-0.040826526,-0.021907216,0.04981473,0.012343473,0.021723533,0.012355718,0.0269891,-0.01924994,-0.0043838923,-0.02600946,-0.0023802207,0.015502814,0.018356018,0.047757484,0.014033353,-0.018796856,0.035634432,0.049275927,-0.0021444948,0.036026288,0.00028949147,-0.023376675,0.0069615715,0.013274131,0.017658023,-0.0039216243,0.0033215943,-0.008663697,0.030981136,0.0029557596,-0.013653742,0.023180747,-0.0054247603,0.00484616,-0.014535419,0.010102545,0.014302754]},{"id":"interface-GatewayPassiveUpdatesDispatchData","type":"interface","source":"main","text":"Interface: GatewayPassiveUpdatesDispatchData\nDescription: PASSIVE_UPDATES — lazy-loaded entity updates","meta":{"url":"/docs/typedefs/GatewayPassiveUpdatesDispatchData"},"embedding":[0.025388148,0.03989379,-0.0020535493,0.037644044,0.012890273,0.04779407,0.012949132,-0.011673839,0.018154945,-0.0041757682,-0.02275908,-0.0056309104,-0.01908362,0.016899271,0.01937138,0.013681608,0.033510786,0.011327221,-0.029403687,0.022288203,0.028461931,-0.021608047,0.038873557,0.013720848,-0.022078924,-0.028121853,0.013590049,0.010025768,0.00943063,-0.010732084,0.039396755,-0.025885185,0.068120286,0.0044471766,0.03251671,0.03249055,-0.02109793,0.01334153,-0.00571266,-0.01921442,0.023700835,-0.029508326,-0.030162321,0.021568807,-0.030842477,0.031601116,-0.0064484063,-0.027991053,0.018324984,-0.0146233635,-0.013733928,-0.04632912,0.001434705,0.033144545,0.04421017,-0.012353995,0.03400782,-0.027337058,-0.029900724,-0.004244438,0.007887199,-0.010097707,-0.012157796,0.016454553,0.016506873,0.037513245,-0.07549737,0.045962878,-0.006275097,0.023583116,0.00014561642,0.03672845,-0.02885433,-0.00949603,0.030293122,0.0305024,0.0056439904,0.008613135,0.024616431,0.031888872,0.0056636105,0.048264947,-0.07439865,-0.0303716,0.0014461499,-0.025087308,-0.044654887,-0.017670987,-0.0025473167,0.027467856,0.010385466,0.0763868,-0.039108995,-0.0047316654,-0.026356062,-0.033641584,0.039213635,-0.03293527,-0.01726551,0.060481604,0.03246439,-0.04622448,-0.048683506,-0.048866622,0.02100637,-0.031156396,-0.035341974,-0.009312911,0.009182112,0.005902319,-0.10432553,-0.025688985,0.0039141695,-0.023360757,-0.004947484,-0.04253594,-0.021555727,0.025963664,0.029691445,-0.01900514,-0.023596196,0.014401005,-0.021647286,-0.008796254,-0.033432305,0.0003668512,0.014178646,-0.012563274,-0.05524963,0.003265078,0.045753602,-0.016153716,0.059225928,0.014217885,-0.029299047,0.0088616535,-0.011268361,0.0039043596,-0.012419395,-0.048081826,0.013138792,-0.01154958,0.021372609,0.032176632,-0.006307797,0.048683506,-0.0114645595,-0.0046139457,0.040364668,0.04611984,-0.029822243,0.056243706,-0.016768472,0.007449021,-0.0031375485,0.012517494,0.023399998,-0.0305024,-0.0085215755,0.0094698705,-0.0060821683,-0.05959217,0.027572496,0.0114645595,-0.06367311,-0.030083843,-0.008057238,-0.029456006,-0.073142976,-0.0115364995,0.0120466165,-0.04410553,-0.017657908,0.023870874,-0.03419094,-0.021254888,-0.031025598,-0.026460702,-0.013903967,-0.043451533,0.06592286,0.023897035,-0.009764168,-0.0048591946,-0.033510786,-0.0041169086,-0.031601116,0.09417551,-0.025728226,-0.0012058062,-0.014100166,0.04983454,0.05148261,0.038952038,0.004712045,-0.028985128,-0.0146233635,-0.012818333,0.039004356,-0.01727859,0.0029021099,-0.03997227,0.058598094,-0.039527554,0.03042392,0.010169647,0.039632194,0.014021686,-0.0051992727,0.020313134,0.03254287,0.041306425,-0.010862883,0.0073378417,-0.02470799,0.029037448,0.031627275,0.007239742,-0.010182726,-0.0069585238,0.035682052,0.00760598,0.030188482,-0.011974677,0.034086302,0.04148954,-0.036885407,-0.05200581,-0.0065890155,-0.003413862,0.017487869,-0.0012352361,0.010647064,-0.032673668,0.000286941,0.0071743424,-0.022340523,-0.0029102848,0.015486639,0.026081383,-0.0031538985,-0.021856565,-0.038611956,-0.0059644487,-0.04389625,0.021647286,-0.0067819445,-0.023033759,-0.009365231,0.03390318,0.025126548,0.026565341,0.011856958,-0.016349914,-0.028148012,-0.019279819,0.040730905,0.010202346,0.010869423,0.05655762,0.022929119,0.029586805,0.0035839013,-0.0050357734,-0.010607825,-0.010104247,0.09061777,0.008835494,0.0087897135,-0.0031620734,0.012138177,0.029246727,0.024472551,-0.015068081,-0.025845945,0.013001452,0.01142532,-0.0040449686,-0.004195388,0.027467856,-0.016742311,-0.044628724,0.016572272,0.048421904,-0.0100519275,0.025845945,-0.020116935,0.015865957,0.012393235,0.0046401056,-0.044785686,0.00956143,0.03400782,0.000014727696,0.046878476,0.05734242,-0.03293527,-0.03662381,0.00569958,0.011935437,0.024577191,0.022824481,-0.04622448,-0.012674454,0.031653434,-0.0040547787,0.03560357,-0.044445608,0.00939793,-0.016284514,-0.052712124,-0.007880659,-0.0052483226,0.011968138,-0.024577191,-0.0022284933,0.04159418,0.015970597,0.048892785,-0.018429624,-0.004604136,0.008606595,-0.015565119,-0.04779407,-0.03254287,-0.070945546,-0.02099329,-0.040940184,0.03390318,-0.012445555,0.0058369194,-0.024511792,0.02694466,-0.036990047,0.027153937,-0.006984683,-0.028069533,0.026565341,0.005572051,-0.008842033,-0.047427833,-0.022432083,-0.01914902,-0.006036388,0.03215047,-0.0413849,-0.05362772,0.05315684,0.006428786,0.039632194,0.06451022,-0.012327835,0.021921964,-0.0125567345,0.0060298485,-0.039475232,0.030162321,-0.033484623,-0.029900724,0.03835036,-0.01718703,0.03209815,0.0031588036,0.022458242,-0.03581285,0.021594968,0.0030884987,0.01344617,0.018154945,0.019135939,0.028775848,0.0033844323,-0.022876801,0.006141028,0.00014469674,-0.0085215755,0.016022917,-0.015604358,-0.0066184453,-0.015172721,0.029874563,0.07319529,0.010470485,0.018063385,0.050619334,0.012635214,-0.05362772,-0.024407152,-0.08543811,-0.00006473544,0.020470092,0.00038422298,-0.020496253,-0.037853323,-0.010320066,0.02090173,0.032595187,0.00573555,0.03968451,-0.0067623244,0.014819562,0.000063713574,0.005526271,-0.0023854524,-0.014296365,-0.001606379,-0.018181104,-0.0015442494,0.068957396,-0.0020486442,0.057917938,0.01706931,0.024564112,0.003639491,0.037408605,-0.03060704,0.0007320674,0.03079016,-0.021424927,0.05749938,-0.009044773,0.015957516,0.018508103,0.026473781,0.0035413913,-0.02081017,0.067597084,0.009901508,-0.0012703884,-0.081147894,-0.043268412,0.070160754,-0.008802794,-0.01342001,0.055825148,-0.01342001,0.017827947,-0.03254287,-0.014113246,-0.03079016,-0.0032242031,-0.047009274,-0.027232418,0.04810799,-0.05169189,-0.03829804,-0.024289433,0.0024263272,0.008809334,-0.012680993,-0.060324643,0.03842884,-0.00008042114,0.023700835,-0.03591749,-0.0070304633,-0.004950754,0.018050306,0.023818554,-0.025178868,-0.004077669,-0.00573882,-0.027912574,0.008273057,-0.0071874224,0.026303742,0.0044798767,-0.0044994964,-0.001729821,0.005555701,-0.008207657,0.006906204,-0.02476031,0.05352308,-0.011863498,0.0049932636,-0.040260028,-0.006425516,-0.023295358,0.01899206,-0.016232194,0.035943653,0.010934822,-0.0039141695,0.07052699,0.109871425,0.04957294,-0.010182726,0.016703073,-0.020352373,0.01742247,-0.012183956,0.054674115,-0.015107321,-0.0014968347,-0.010960982,-0.03610061,-0.031653434,0.046826154,-0.012883732,0.0054183616,-0.018364225,0.004774175,-0.0026110813,0.03664997,-0.0026192563,-0.019188259,0.023870874,-0.018769702,-0.0535754,0.015198881,0.022288203,0.0008179045,-0.0413849,-0.04379161,0.034923416,0.006696925,0.039292116,0.0075340406,0.035420455,-0.01334807,0.033406146,0.0031293735,-0.012157796,-0.0052221627,-0.021856565,-0.008109557,-0.015918277,-0.030711679,0.0020519143,-0.0007426949,-0.03453102,0.026107544,0.044733364,-0.004528926,0.0044439067,-0.004061319,-0.037748683,-0.0048788143,0.031287197,-0.009652989,-0.016650753,-0.0024966318,0.015735157,0.002099329,-0.02464259,0.04339921,0.021804245,-0.008181497,0.028226493,-0.0017396309,-0.016454553,0.013151871,0.037487082,0.046145998,0.018272664,0.0063830065,-0.012183956,0.016533034,-0.011968138,-0.0079852985,-0.017801786,0.0073705413,-0.039762992,-0.037565563,0.04737551,0.0016104665,-0.0061966176,-0.027153937,-0.0039108996,-0.05001766,0.029560644,0.0032062181,0.010202346,0.051927328,0.008940133,0.018743541,0.0010578395,0.030973278,0.013995526,0.020077694,-0.088891216,0.0075340406,0.07047467,-0.052188925,0.012085857,0.058702733,-0.033720065,-0.001911305,0.04978222,-0.0027582305,0.014335605,0.027677136,0.008403856,0.020313134,-0.016833872,-0.007946058,-0.015041921,-0.026042143,-0.009764168,0.0045125764,0.029979203,-0.0058140294,0.008344997,0.040835544,0.060063045,-0.042640578,0.02481263,0.009188652,0.0018655253,0.007939518,0.025270429,0.017945666,-0.030763999,-0.036597647,-0.009698769,-0.0420389,0.037957963,0.0087897135,-0.04379161,0.013093011,0.008626215,-0.041227944,0.03215047,0.0064058965,0.02495651,-0.03222895,-0.003976299,-0.0075405804,-0.03272599,0.009855729,-0.026186023,-0.041855782,0.005856539,-0.04748015,-0.016519953,0.010640524,-0.013616209,0.011287981,-0.022680601,0.019240579,0.047009274,0.01330229,0.031784233,0.07670072,-0.011641139,0.0101500265,-0.0015556944,-0.009188652,-0.0048755445,-0.048892785,-0.050253097,0.012203576,0.01515964,0.044576406,-0.00084856054,-0.014244045,0.004806875,0.020679371,0.01340693,-0.030947117,-0.003976299,-0.000027718213,0.021987366,-0.029299047,0.011216042,0.01730475,0.01143186,0.0037637502,0.00764522,0.021935046,0.012661373,0.05718546,0.016022917,0.000027309467,-0.010241587,-0.004201928,-0.007403241,-0.036466848,0.004211738,0.016899271,0.0534446,-0.026473781,-0.017893346,0.0031964083,-0.040757068,0.0123147555,0.002122219,0.023386918,-0.012301676,0.014139405,0.03816724,0.03623141,-0.021320289,-0.011209501,-0.015669758,0.03798412,-0.040469307,0.0028465202,-0.00026793423,-0.024354832,0.012013917,-0.0009875349,0.012085857,0.008338456,0.0021320288,-0.011699999,-0.020770932,0.006131218,-0.00288903,0.02453795,-0.0021402037,-0.034975737,0.006487646,0.018168025,0.0011469465,-0.029011289,0.04611984,0.029612964,0.029769924,0.03814108,0.013197651,0.028357292,-0.0026192563,0.0020322944,-0.035001896,-0.04389625,0.043111455,-0.019894576,-0.0039566793,-0.0070958626,-0.009247512,0.00009191717,-0.0011338666,-0.01920134,0.0029217296,-0.020260815,0.017396308,-0.020836331,0.028958969,0.0040972885,0.006556316,0.0012851033,0.005970989,0.046695355,-0.011837338,-0.004558356,0.008959753,-0.024498712,-0.003453102,-0.03675461,0.009823029,0.0055884006,0.010300446,0.028121853,-0.03079016,0.017396308,0.01712163,0.0417773,0.0037114306,-0.0105882045,0.011032922,0.039056674,0.028200332,-0.029665284,0.015839797,-0.054360196,-0.044916485,0.012635214,0.0012515859,-0.007939518,0.023334598,0.020561652,0.021464167,0.0056832302,-0.022013525,-0.01139916,-0.036493007,0.00577806,0.008972833,0.012622134,-0.0003905586,-0.025074229,-0.035734374,0.00043613397,0.029665284,0.02489111,-0.004960564,-0.0383242,0.015565119,-0.009116712,-0.035472773,0.002867775,-0.009260591,0.0064484063,0.010293906,0.008658915,-0.09218736,0.037644044,0.034583338,-0.011111402,0.030110002,0.0027860254,0.027206257,0.008384236,0.055040352,-0.050567016,0.00577806,-0.011242202,-0.017605588,-0.033170708,0.008743934,-0.00092785765,-0.021791166,0.0045518163,0.037513245,-0.018377304,-0.02684002,-0.01141878,-0.0032013133,-0.007887199,-0.021725766,-0.028357292,-0.01529044,0.00068874017,0.026120624,-0.02459027,0.019332139,-0.043059133,-0.033275347,-0.022746,0.029848404,0.019397538,0.00036930369,0.014884962,0.015041921,0.0076779197,-0.006441866,0.00001834256,0.022523642,0.016716152,0.023452317,0.023373837,-0.014989601,0.015146561,-0.013812408,-0.037434764,-0.01742247,-0.031234877,0.007239742,-0.030659359,-0.012236276,0.0031310087,0.010705924,0.019894576,-0.0010096072,-0.022275124,-0.024224034,0.03262135,0.01879586,-0.031025598,-0.009110172,0.0059546386,0.060063045,0.019646058,0.01921442,0.03432174,0.018782781,0.03625757,-0.0020633591,-0.031627275,-0.010293906,0.0015303519,0.010195807,-0.02302068,-0.012759473,0.029351367,0.05341844,0.0027942003,0.045256563,-0.0012450459,0.021032529,0.009325991,-0.016899271,-0.017618667,0.018573502,0.00023400816,0.046983115,-0.023216879,-0.02494343,0.0007189875,-0.015865957,0.0066020954,0.03874276,0.008835494,-0.018534264,0.0008567355,0.023883956,-0.023504637,0.008586975,-0.033510786,-0.043634653,-0.019776857,0.011543039,0.01132068,0.024982668,0.023243038,0.01706931,0.027729455,0.0033402876,0.029534485,0.0021876185,-0.010405085,0.0073051415,-0.000003254016,0.02854041,0.012478255,-0.0023004329,0.01705623,-0.037539404,-0.021568807,-0.004558356,0.0061737276,0.04054779,-0.018429624,-0.0035185015,-0.0064058965,0.021411847,0.040600106,-0.01910978,0.023936275,-0.000063713574,-0.02684002,0.0009654624,-0.017082391,-0.031365674,0.011909277,-0.00092131767,-0.001039037,-0.016833872,-0.00571266,0.049546782,0.030894797,-0.0032176632,-0.054255556,-0.003453102,0.0015704093,0.02305992,-0.045256563,-0.04180346,0.012216656,-0.00954835,0.028226493,-0.02869737,0.0115364995,0.01700391,0.037434764,0.010457405,0.039318275,-0.022340523,0.015774397,-0.0016652388,-0.033379987,-0.026918499,0.001350503,-0.024289433,-0.022379763,-0.0028726798,0.011817718,0.02833113,0.01700391,0.0039239796,0.02694466,0.0136031285,-0.027650975,0.0068473443,-0.030659359,0.008063777,0.010104247,0.011981217,0.00068874017,0.038271878,-0.0030100192,0.035786692,0.0070697027,-0.033850864,0.00088943535,-0.01895282,0.06628909,-0.003238918,0.028932808,-0.02648686,-0.009090552,0.0077302395,0.0052941022,0.009332531,-0.014387924,0.0074817208,0.009823029,0.0037931802,0.0035937112,0.012275516,0.03633605,0.046145998,0.00023462127,0.0014551424,0.008469256,-0.009299831,-0.0010104247,-0.01912286,-0.005284292,-0.03466182,0.027310897,-0.058441132,-0.027703295,-0.0067165447,-0.016572272,-0.015447399,-0.029168246,0.0052941022,0.034060143,-0.030894797,0.0012973658,-0.035054218,-0.005529541,-0.03047624,0.011124481,-0.00950911,0.046407595,-0.008645834,0.019449858,-0.006288177,0.013197651,0.013681608,0.010895583,0.012000837,0.022209724,-0.0013251606,0.02264136,0.0018753351,-0.035263494,0.019292898,-0.005572051,-0.012739853,0.014924202,-0.018769702,0.024184793,0.009142872,0.008397316,0.0015393444,0.008593515,0.028958969,0.004712045,-0.027049297,0.017082391,-0.0052385125,-0.025845945,-0.0055785906,0.02495651,0.016232194,0.002084614,0.014427165,-0.0075994404,-0.031601116,0.0077433195,0.013681608,0.0054379813,0.0084496355,0.056034427,0.029272886,-0.014950362,-0.0137731675,0.010235046,-0.033092227,0.022419002,0.008554275,0.015944436,-0.040887866,-0.008194577,-0.020313134,-0.015028841,-0.001706931,-0.037565563,0.021961205,-0.013642369,-0.010058467,0.020443933,0.0077956393,0.025244268,-0.0013169856,-0.027232418,-0.038664278,-0.011719619,-0.01730475,0.039004356,0.011137562,-0.040495466,-0.026565341,0.041201785,0.004918054,0.023203798,0.0062489375,-0.024498712,-0.005124063,-0.012700614,0.012373615,-0.014427165,-0.009894968,-0.050200775,0.025466627,0.009084012,-0.014139405,0.029456006,0.0151858,-0.02653918,0.013119171,-0.0048788143,0.0190967,0.008913973,-0.010522805,0.0040580486,-0.0005227885,0.00037727426,-0.013099551,-0.019698378,-0.0033337476,-0.016127555,0.03808876,-0.0044569867,0.0077498592,0.0033517324,0.012013917,0.023962434,-0.0076909997,0.035629734,-0.011065622,-0.03628373,-0.02827881,-0.022746,-0.014714923,0.01908362,-0.0035708214,-0.010934822,-0.019423699,0.00018710434,-0.011176801,-0.012203576,0.085124195,-0.029926883,0.008436556,-0.011830798,-0.0191621,-0.0230076,0.018154945,-0.0029021099,-0.03450486,-0.010182726,-0.0067623244,0.02859273,0.003626411,-0.008796254,0.009110172,-0.039292116,-0.00041814905,0.0016014741,-0.010346225,-0.019541418,0.010581665,0.0048330347,-0.025466627,-0.03424326,-0.027520176,-0.02091481,0.035315815,-0.035001896,0.004574706,0.029220566,0.014230966,-0.027964894,-0.010104247,0.02100637,-0.010378926,0.007462101,0.008783174,-0.042719055,0.027703295,-0.03570821,-0.0030280042,0.0077236993,-0.01336115,-0.012170876,-0.032804467,0.020574732,0.012321295,-0.025034988,-0.019816097,-0.026513021,0.0045485464,0.0018475403,0.016860032,-0.020103855,0.01144494,-0.04002459,-0.025335828,0.052241247,-0.027180098,-0.029612964,-0.017697148,0.0047055054,-0.0024148824,-0.029220566,0.03782716,0.019031301,0.037147004,0.027677136,0.0015238121,0.03251671,-0.02504807,0.021294128,-0.0044504465,0.014034767,0.004882084,-0.011157181,0.007252822,-0.037042364,0.015578198,0.031417996,-0.014819562,0.007409781,-0.021843486,0.021856565,-0.044445608,0.01154958,0.011183341,0.014387924,-0.0022252232,-0.016153716,0.0065595857,-0.006098518,0.018573502,-0.0017396309,0.016258355,0.01539508,-0.012949132,-0.017893346,-0.011811178,0.010306986,0.00089597533,0.00017780531,0.005526271,-0.017854106,0.015669758,-0.004698965,0.004594326,0.002473742,0.018076465,-0.023439238,-0.023818554,-0.023753155,-0.01329575,0.0048624645,-0.009620289,-0.00190967,0.016035996,-0.012242815,0.022065844,0.011785018,-0.034086302,0.012530575,-0.00089597533,-0.028304972,-0.002485187,0.008868193,0.019135939,0.03058088,-0.025361987,-0.011144102,-0.03874276,0.003596981,0.021804245,0.006487646,0.023870874,0.0058107595,-0.02848809,-0.002465567,0.024132473,0.0037375905,0.023910115,-0.016467635,-0.01534276,0.046433758,-0.012746393,0.017749468,0.010352766,-0.051142532,0.016062155,-0.024629511,0.03296143,0.00033067702,-0.0025816516,-0.011183341,0.012543654,-0.010817103,0.007867578,-0.029377526,0.023635436,-0.00017198066,-0.039082836,-0.02101945,-0.047453992,0.011837338,-0.017684067,-0.0058009494,-0.02290296,-0.00058737065,0.0035185015,-0.02291604,-0.0057682497,-0.03052856,0.012517494,0.026342982,-0.0071481825,-0.0024524871,-0.010673224,0.007880659,-0.0025947315,0.013145331,-0.006860424,-0.0012286961,0.021346448,0.031077918,0.0048199547,0.011883118,-0.006696925,-0.007390161,0.002459027,-0.012478255,0.032281272,-0.018808942,0.012936052,0.0019472748,0.0027369757,-0.030136162,-0.029429846,-0.008554275,0.0045158463,0.032071993,-0.043059133,-0.010261206,0.008600055,0.040992506,0.010843263,0.0047022356,-0.013093011,0.0067165447,-0.0064320564,0.005336612,0.0039305193,0.033798542,0.006608635,-0.016624592,0.027127778,0.004192118,0.02867121,0.039161313,-0.0029953043,0.025270429,-0.0029004747,0.0004925412,0.010509725,-0.052372046,-0.013040692,0.023177639,0.04010307,0.0059644487,0.015172721,0.008312296,0.010738623,0.026238343,-0.00050766487,-0.03419094,-0.0019587197,-0.019384459,0.012615594,0.033824705,0.015473559,-0.017487869,-0.008802794,0.008685075,-0.023373837,-0.009836108,-0.016755393,-0.0012761108,0.0067819445,0.009018613,-0.050410055,0.0266569,-0.037147004,0.019240579,0.034086302,-0.012236276,-0.051875006,0.015931357,-0.010862883,-0.025139628,0.009908048,-0.00949603,0.05530195,-0.0014224425,-0.0005313722,-0.0008747204,-0.00027304358,-0.004048239,-0.016546113,-0.020038456,0.016729232,-0.01886126,0.0008632755,0.00021316201,0.007449021,0.019803016,-0.0018687953,0.0068211844,-0.00087226793,-0.021725766,0.040966347,0.004008999,-0.005892509,0.0494683,0.028200332,-0.0058074896,0.020823251,-0.009155952,-0.024224034,0.0012875558,-0.005153493,0.0028219952,0.014714923,0.035472773,-0.03392934,-0.02489111,-0.0034988816,0.0086916145,-0.009273672,0.010012687,-0.015133481,0.008482335,-0.015983677,0.0033778923,0.02859273,0.014322525,-0.0021254888,0.0058074896,0.002867775,0.010594744,-0.004986724,-0.00021929323,-0.014008607,0.045648962,0.0036591107,-0.008240357,0.00963337,0.017631747,-0.013812408,0.031679593,0.015996756,0.030136162,0.0013709404,0.020077694,0.0027255306,0.014087087,0.02838345,-0.009888428,0.02464259,0.014950362,0.0064484063,0.01149726,-0.00023768688,0.009247512,0.016637674,-0.002692831,0.01526428,0.00021316201,-0.01696467,0.02079709,0.016559193,-0.03246439,-0.048500385,-0.015944436,-0.01129452,-0.03772252,0.0057944097,-0.005297372,0.010208886,0.00034559632,0.017775627,-0.038847398,0.0008420206,0.036466848,-0.01920134,0.015656678,0.014767243,0.013145331,0.023373837,0.0011502164,-0.0042771376,-0.025100388,-0.013276131,-0.056034427,-0.0004443089,0.003642761,0.021594968,0.019305978,0.0018998601,-0.026094463,0.019829176,0.0014976521,0.008613135,0.023622356,-0.03215047,-0.0003110571,0.022575961,-0.018599663,-0.02286372,-0.014296365,0.011124481,0.00960067,0.0065105357,0.015722077,-0.013864728,0.027677136,-0.0099799875,0.012942593,-0.011981217,-0.0024148824,0.037199326]},{"id":"interface-GatewayPresenceUpdateData","type":"interface","source":"main","text":"Interface: GatewayPresenceUpdateData\nProperties: activities: { name: string; type: number; url?: string | null; }[], afk: boolean, custom_status: GatewayCustomStatus | null, since: number | null, status: \"online\" | \"idle\" | \"dnd\" | \"invisible\"","meta":{"url":"/docs/typedefs/GatewayPresenceUpdateData"},"embedding":[-0.024163479,-0.028062366,0.014392192,0.029000988,0.017087718,0.030493155,0.026305461,-0.014789301,0.047917817,0.028327106,0.01845955,-0.0042779464,0.03925362,-0.014897603,0.018603953,0.022563009,-0.012159958,0.06382624,-0.019747145,0.059831083,0.008754448,-0.0047201817,0.0020035952,0.054584432,-0.053092264,0.042911835,0.016582308,0.06599229,-0.026209192,-0.009464431,0.036798764,-0.024127377,0.03561947,0.015896393,0.030084012,-0.002346553,-0.0385316,0.018736323,-0.025920385,-0.012208092,0.013333234,-0.0150901405,-0.018808525,0.01238258,-0.06868782,0.01612503,-0.034392044,0.018928861,0.012298345,0.027653225,-0.015029972,-0.012599184,-0.0074488013,0.04707546,0.039012946,0.0062815417,0.0040312577,0.0038778293,0.009909674,0.016498072,-0.013020361,0.0147411665,0.019879516,0.0027722418,0.021780824,0.008616061,-0.049217444,0.036197085,-0.007214146,0.015306746,0.030180281,0.04295997,-0.023694169,-0.015282678,-0.03208159,0.026353596,-0.0028263929,-0.0107821105,0.037568916,-0.01812261,0.0031257288,0.021179145,-0.08024008,-0.0781703,0.019506473,-0.019951718,-0.049626585,-0.05270719,-0.032201927,0.019711046,0.021600321,0.021768792,-0.046449713,-0.0120817395,0.0020818138,-0.01638977,0.027099678,-0.018267013,-0.022117766,0.036028612,0.035763875,-0.058290783,-0.03908515,-0.030493155,0.016329601,0.0006964449,-0.016173165,0.021287447,-0.044091128,-0.03157618,-0.08120277,-0.011961403,-0.019987818,0.022851815,-0.0037875772,-0.020336792,0.0002256301,-0.074800886,0.069939315,-0.022057598,-0.018989028,0.024692958,0.033092413,-0.01838735,-0.0007111108,0.009669001,-0.0005061635,0.014271855,-0.09434346,-0.024091277,0.013742377,-0.027268149,0.04693106,0.00530682,0.018447516,0.021094909,-0.00068215496,0.033670027,-0.040817987,-0.00709381,0.010770077,-0.019338002,0.027195947,0.007496936,-0.029915541,0.025824117,0.005538467,0.0073043983,0.026257327,0.041756608,-0.012171991,0.050829947,-0.040842056,-0.001454562,0.024283815,0.03614895,0.021407783,-0.008405473,-0.04416333,-0.018483616,0.021708623,-0.08413897,-0.010168396,-0.019819347,-0.021684555,0.016883148,0.000024278737,-0.0071780453,-0.06974678,-0.022719447,0.023345193,-0.058387052,-0.046473783,-0.006305609,-0.044307735,-0.013008327,0.0022171917,0.017039584,-0.03208159,-0.027484754,0.0148374345,0.011678614,-0.029723004,-0.05530645,-0.014416259,-0.014813367,-0.027845763,0.056557942,0.021299481,0.011696664,0.01225021,0.02459669,0.0028519644,0.044476204,0.0368469,-0.03918142,-0.017773634,-0.0136340745,0.008068532,-0.01648604,-0.0131888315,-0.08524606,0.013958982,-0.023248924,-0.016040795,0.018772423,0.029049123,-0.02433195,-0.008032431,0.03321275,0.052129578,-0.014380158,-0.04226202,-0.012202076,-0.03918142,0.056365404,-0.02580005,-0.008116666,-0.023658067,0.027099678,-0.012316395,0.008953002,0.056365404,-0.014476427,0.015427082,0.05583593,-0.016028762,-0.010727959,-0.025679713,-0.008357339,-0.011371757,0.020685768,-0.020108154,-0.053429205,0.018194811,0.001934402,0.038868543,0.006552298,0.028832518,0.03908515,0.0006155941,-0.025463108,-0.002376637,0.014789301,0.002242763,0.008327255,0.025318705,-0.026064789,-0.02890472,0.0042177783,0.031768717,0.03304428,0.004969879,-0.021925228,-0.018146677,-0.012159958,-0.03535473,0.026931208,0.021383716,0.02163642,0.010788127,-0.012370546,-0.008218952,0.006233407,-0.012695453,-0.0385316,0.04760494,0.026112923,-0.0030775946,-0.012406646,0.001881755,-0.0030775946,0.059879217,-0.03487339,0.013694243,-0.0032400482,0.023044353,0.033140548,-0.010312799,0.009007153,-0.017701432,-0.007286348,0.02099864,0.054632567,-0.028832518,0.03805026,0.024223646,0.0021329564,0.011353706,0.035836075,-0.001934402,0.04348945,0.036943167,-0.0113055715,0.05925347,0.039566495,0.014416259,-0.042117618,0.029458266,-0.013152731,0.039903436,-0.03208159,-0.035643537,-0.004681072,0.006263491,0.041973215,0.050829947,-0.0053880466,0.005899475,0.025222436,-0.004118501,-0.008543859,-0.012370546,0.009681035,-0.08187665,-0.035426933,0.037039436,0.023405362,0.020565432,0.016197233,0.022057598,0.003944014,0.008591994,-0.042647097,0.00046667823,-0.0679658,0.03131144,-0.0046028537,0.01385068,0.0065643317,0.0041576107,-0.02006002,0.014825401,0.029145392,0.016943315,0.03087823,-0.05391055,0.04953032,-0.012647319,0.029458266,0.00722618,-0.051263157,-0.021106943,-0.011058883,0.023405362,-0.0073645664,-0.0266424,-0.015727922,-0.031864986,0.01715992,0.02890472,-0.009127489,-0.015896393,-0.022647245,-0.033670027,-0.06483706,0.037905857,-0.008008364,-0.030565357,0.04943405,-0.035234395,-0.003983123,-0.017496862,-0.009205707,-0.01992765,0.013008327,-0.06252661,-0.00041741566,-0.00014947994,-0.024115345,0.011660563,-0.04495755,0.017316358,-0.015198443,-0.019386137,0.011498109,-0.017208055,0.0052255928,-0.009993909,0.0030866198,0.0235979,0.05540272,0.012159958,0.005923542,0.014043217,-0.0061160796,-0.056269135,-0.010192463,-0.06830274,0.025631579,0.04476501,-0.008513776,-0.017208055,-0.024644824,-0.03865194,-0.04606464,0.06719565,-0.016209265,0.016498072,-0.014584729,0.042671163,0.019217666,-0.015366914,-0.02312859,-0.002767729,-0.0051864837,0.005442198,0.008928935,0.042935904,-0.0101022115,0.023453496,-0.011702681,0.027773561,0.01902513,0.04943405,-0.031768717,-0.016702645,-0.015415048,0.017376525,0.016558241,-0.025511242,0.011937336,-0.00060393655,0.010469236,-0.010439152,-0.016209265,0.00031475397,-0.0025225445,-0.013152731,-0.06888036,-0.05737623,0.037231974,0.044115197,-0.009211725,0.045751765,-0.03147991,0.019001063,-0.022743514,-0.02837524,0.005445206,-0.00047194294,-0.028784383,-0.04796595,0.07306805,0.012394613,0.016931282,-0.0135378055,-0.039470226,0.03821873,-0.05511391,-0.08072142,0.052755326,-0.014885569,0.049048975,-0.0016470997,0.042598963,-0.00796023,0.043441314,-0.029891474,0.016618408,-0.025174301,-0.019807315,-0.037496712,0.053669877,-0.00931401,0.023176724,-0.014765234,-0.0032821659,-0.010962614,0.013080529,-0.03759298,-0.036389623,0.012346479,0.026762737,-0.0033754262,0.009620867,0.014404225,0.02410331,-0.036028612,0.037376378,-0.02052933,0.0054181307,0.012767655,0.024608722,0.073790066,0.06777326,0.01612503,-0.015162342,-0.029289795,0.011865134,0.009019187,-0.005673845,0.03682283,-0.012900025,0.04373012,-0.0062935753,-0.036197085,-0.018916827,-0.0011326631,-0.017677365,0.006004769,-0.043224707,0.008489708,0.0012740579,0.025992587,0.019277835,-0.006185273,-0.046040572,-0.034488313,-0.011323622,-0.022057598,-0.037231974,-0.018519718,-0.04305624,-0.046786655,0.016088929,-0.0009190666,0.023754336,-0.010270682,0.011744798,-0.0000018920024,0.022021497,-0.007159995,0.029771138,-0.014945737,-0.01076406,0.010559488,-0.05391055,-0.006140147,-0.00709381,0.035667606,-0.014392192,-0.00006726597,0.009458413,-0.0015703854,0.017111786,-0.013934915,-0.017749567,0.002871519,-0.013682209,0.0029587627,0.012045639,0.021323549,0.017027551,-0.015378947,-0.022887917,0.019374104,0.018844625,-0.020589499,0.016233332,0.016149098,-0.037641115,-0.0072442302,0.0235979,0.0443318,0.045920238,-0.008802582,-0.017280256,0.012887991,0.0065342477,0.013152731,-0.026449863,0.031191103,-0.035643537,-0.012478848,-0.0010424111,0.023345193,0.01505404,-0.03338122,-0.019903583,-0.020625599,0.013044428,-0.0062815417,-0.010824228,0.030348752,0.012454781,-0.026016654,-0.017954139,0.03150398,-0.01669061,-0.0041064676,-0.03612488,-0.03511406,0.071912825,-0.018170744,0.00060055207,0.025559377,-0.014067284,0.029530467,0.01492167,-0.016762812,0.000540008,0.016570274,0.014295923,0.002901603,-0.009121473,-0.011425908,-0.00007478698,-0.021407783,0.048615765,-0.014596763,0.0006528231,-0.052659057,-0.0048345006,0.046810724,0.039349888,-0.0012161462,0.017099753,0.03027655,0.02099864,-0.018940894,0.045872103,-0.020144254,-0.02580005,-0.033429354,-0.02553531,-0.025342772,0.028423375,0.0067147515,-0.04009597,-0.0024428219,0.04072172,-0.033453424,0.037496712,-0.0010837766,0.025029898,-0.0012545033,-0.012755621,0.0019374104,-0.0119072525,0.013874747,-0.044548407,-0.013826612,-0.020685768,-0.029602667,-0.010655757,0.011859118,-0.0061190883,0.028254904,-0.036437757,0.03234633,0.014283889,0.007707524,0.0060228193,0.065174006,0.0077556586,-0.0042929887,0.0029482332,0.02052933,0.028086433,-0.03561947,-0.06734005,0.0137905115,0.0077857426,0.03494559,-0.02350163,-0.01699145,0.018110575,0.020192388,-0.012659352,-0.024079243,0.00796023,0.024861427,0.034801185,-0.033092413,-0.0038146528,0.00037774237,-0.02410331,0.017436694,0.026185125,-0.008387423,0.053621743,0.06117885,0.008068532,-0.0009784825,0.0059415926,0.016871113,-0.025583444,-0.034031034,-0.01953054,0.027725426,0.014656931,-0.05675048,0.028736249,0.012539016,-0.0066906842,0.047436472,-0.029097257,0.02075797,-0.017063651,0.0177255,0.032201927,0.032033455,0.0074367677,-0.03622115,0.023958908,0.027773561,0.018206844,-0.025222436,0.0046600136,-0.0055294414,0.002997872,0.010601606,-0.005511391,0.0021088892,0.01385068,0.03304428,0.00020475932,0.027364418,-0.00796023,0.0023961917,0.021191178,-0.03054129,0.031455845,-0.018315148,0.0025676705,-0.023297058,0.024404151,0.0034897455,0.005078181,0.034031034,0.03277954,0.014295923,0.03889261,-0.028182702,-0.0053549544,0.02229827,0.015366914,-0.021576254,-0.02336926,0.0037394427,0.0034175438,-0.016606376,0.008255053,-0.019662911,0.026281394,-0.018074475,0.0010582051,-0.021937262,0.00811065,0.009656968,-0.014031183,-0.0058904495,-0.0033754262,-0.004019224,-0.046112776,-0.014680998,0.010391018,-0.042286087,0.0072021126,-0.037231974,0.006955424,0.0026895108,0.021155078,0.029386064,-0.011197269,-0.00052346184,-0.005243643,0.013983049,0.029674869,0.011756832,-0.0028519644,0.046088707,0.022514874,0.004828484,0.028014231,-0.029025055,-0.039662763,0.02342943,0.04625718,-0.00857996,-0.01193132,-0.0071720285,0.00029726766,0.009488498,-0.028014231,-0.009638918,-0.04683479,0.0076954905,0.0050360635,0.0061732396,0.00093034806,0.032683272,-0.02854371,0.03027655,-0.022851815,0.037496712,-0.016570274,0.0009386212,0.00024405654,-0.03027655,-0.0118109835,-0.0024157462,-0.050059795,0.013610007,-0.024223646,0.03001181,-0.06570348,0.012009538,0.042165753,-0.014043217,0.0059566344,-0.012033605,0.031022634,0.0008340792,0.029867407,-0.045126017,0.026425796,0.002188612,-0.01979528,-0.0070095747,0.035763875,-0.009374178,-0.002188612,-0.008116666,0.037665185,0.0033212749,-0.008525809,0.006859155,-0.01949444,0.043657918,-0.017147887,0.017147887,0.020300692,0.01004806,0.037857722,-0.0039620646,0.021275414,-0.046955127,-0.013080529,-0.006913306,0.0064199283,0.019169534,-0.008459624,0.039470226,-0.024127377,-0.011865134,0.025053965,0.025727848,0.009055288,0.00481645,0.00081903726,0.014247788,-0.012972226,0.026425796,-0.0075932047,0.00033167624,-0.01048127,-0.01962681,0.033020213,-0.0162574,-0.012214109,0.0053940634,-0.018832592,0.04856763,-0.003035477,-0.057761304,-0.0047111562,0.040938325,0.025896318,0.0060468866,0.034392044,-0.035451,0.010114245,0.009271893,0.0034867371,0.03001181,-0.02476516,-0.007833877,0.031359576,0.0015959569,-0.010042043,0.074752755,0.004380232,-0.027942032,0.000487361,0.03080603,0.015017939,0.013044428,0.04226202,0.008194885,0.023357227,-0.014909636,-0.004912719,-0.00065056677,0.0138867805,0.019422239,0.021419818,-0.0072382134,0.011155152,0.022767581,-0.03184092,-0.005962651,0.03174465,-0.008008364,-0.0144884605,0.010914479,-0.009813405,0.011817,0.013068495,-0.036509957,-0.019735113,0.0048766183,0.017918037,0.03431984,0.004882635,0.023646034,0.008435557,0.029313862,0.018170744,0.0042749383,-0.027123746,-0.013778478,0.00059566344,0.007129911,0.019807315,-0.018904794,0.005342921,-0.0028549728,-0.010511354,0.011046849,0.019987818,0.037015367,0.018567853,-0.015198443,0.020011885,0.01151616,0.0019178558,0.003874821,-0.032466665,-0.005276736,0.0023360236,-0.016197233,0.014163553,-0.015727922,-0.041949145,-0.0009905162,0.000116575546,0.014572696,-0.015523351,-0.011576328,0.028351173,0.028495576,-0.027051544,-0.03605268,-0.0021419816,-0.02386264,0.025775982,-0.032201927,-0.045607362,-0.01121532,0.011720731,0.030493155,-0.059638545,0.011449975,0.0030836114,0.047990017,0.023585865,0.04527042,-0.006456029,-0.0131888315,-0.013140697,-0.034993723,-0.027027477,0.01992765,0.009530615,0.026064789,-0.02890472,0.014440326,0.05131129,-0.0031257288,0.004154602,0.021070842,0.008170818,-0.03465678,0.00030704495,0.00081151625,0.0034536447,-0.008922918,0.013236965,-0.020553397,0.08033635,0.0027767543,0.03431984,-0.015174376,-0.021251347,-0.0150901405,0.003673258,0.046690386,0.036461823,0.037015367,-0.036895033,-0.007220163,0.03561947,0.0002841059,-0.03174465,-0.024464319,-0.0016847047,0.013200864,-0.029410131,0.017232122,0.004620904,0.044476204,-0.014356091,0.0037695267,-0.024644824,0.0098495055,0.0052526686,-0.015511317,0.0036642328,0.0029061155,-0.028832518,0.04009597,-0.040938325,-0.02734035,0.0133212,-0.012623251,0.02570378,-0.006371794,-0.010439152,0.029650802,0.04149187,0.02673867,-0.03535473,-0.0062935753,-0.022214035,0.001483894,-0.009638918,-0.0027045526,-0.016666543,0.008200902,0.029434199,-0.0012507428,0.013646108,0.021600321,0.012575117,0.040817987,-0.007972264,0.01003001,-0.004226804,-0.033838496,-0.0060198107,-0.0048675933,-0.022526909,0.01505404,-0.007280331,0.024187546,-0.010108228,0.014091351,-0.012623251,0.034392044,0.010312799,-0.004220787,-0.025414973,-0.010848295,-0.012587151,-0.031359576,0.027147813,0.034632716,-0.0087243635,0.00047269504,0.01936207,0.0029707963,-0.013369335,-0.022671312,-0.021937262,-0.0019298894,0.008068532,0.024981763,0.039662763,-0.010541438,0.00509924,-0.01902513,-0.025944453,0.021058809,-0.0037845687,0.031768717,-0.015764022,0.0018411416,0.009795355,0.020023918,0.018736323,0.0035589386,-0.01016238,-0.008020397,-0.0094042625,-0.003396485,0.015667753,0.017496862,0.0013289612,-0.020408994,0.0030099053,-0.008531826,-0.0046961145,0.009277909,0.028134568,0.004521627,-0.009181641,-0.0030008801,-0.026088856,0.03193719,-0.0074488013,0.03715977,0.04977099,-0.018928861,0.027244082,-0.006889239,-0.03925362,-0.048351023,-0.0069915247,-0.002969292,-0.0013898814,0.041540004,0.012779688,-0.038603805,-0.0012206588,-0.011979454,0.009795355,0.011588362,-0.0037755435,-0.012220126,-0.012057672,0.025246503,0.0046991226,0.0032580986,0.02306842,-0.037039436,0.0368469,-0.025222436,-0.009097406,0.011022782,-0.017881937,0.0135378055,-0.041299332,0.016149098,-0.0012830831,-0.0026037712,-0.00043772237,0.005048097,-0.001146953,-0.0063176425,-0.0022096706,-0.034488313,-0.006522214,-0.018495651,0.012033605,-0.012803756,0.053429205,0.008182852,0.006329676,0.022406572,0.008237002,0.018832592,0.045222286,-0.0053970716,-0.011070916,-0.017906005,0.027821695,-0.006985508,-0.018134642,-0.017316358,0.0073946505,-0.013513738,0.02376637,-0.016534174,0.015415048,-0.043681987,0.0281105,-0.006239424,-0.0005264702,-0.0062514576,0.007587188,-0.035065927,0.046786655,-0.0073766,0.014909636,0.022033531,0.006985508,0.021660488,0.0030159221,0.013224931,-0.023441462,0.024380084,-0.0064139115,-0.0003914682,0.04009597,-0.018748356,0.020252557,-0.001304142,-0.035306595,-0.047653075,0.0033092413,0.0027752502,-0.0011221337,-0.015005905,-0.0191575,-0.026594266,0.0031106868,0.0062153568,0.0066545834,-0.014007116,-0.0036371571,-0.036798764,-0.020673733,0.013357301,-0.035547268,-0.0107038915,-0.041684408,0.022719447,0.014861502,-0.003727409,0.04036071,0.04445214,0.014861502,-0.006732802,0.027990164,0.04329691,0.007894045,-0.012539016,-0.017484829,-0.0069734743,0.002310452,0.003065561,-0.051888905,-0.03569167,0.016293501,0.014572696,0.024789225,-0.0049277614,-0.002226217,-0.0002512015,-0.049241513,0.009801371,0.011847084,0.03054129,-0.03614895,-0.010830244,0.015631653,-0.030493155,0.0013282092,0.01345357,0.027917964,0.0191214,-0.00457277,-0.022563009,-0.0032731406,0.0003658968,0.009741203,-0.015150309,0.006371794,0.012695453,-0.0028023256,0.01166658,-0.0044975597,0.019241733,-0.018074475,-0.015535384,-0.009434346,-0.005592618,-0.017954139,0.0054873237,-0.0026654436,-0.04486128,-0.009620867,-0.008555893,-0.024452286,-0.016088929,0.0077255745,0.0063477266,-0.005165425,-0.015234544,0.007875995,0.01699145,0.049915392,-0.004548703,0.00060393655,0.01213589,-0.042117618,0.038772274,0.004380232,-0.01298426,0.004326081,0.01699145,0.014861502,-0.04255083,-0.056365404,-0.010637707,-0.002773746,-0.013730343,-0.017460762,0.014861502,0.0045396774,0.020240523,-0.00029557542,0.0027271158,-0.0023661077,0.0078699775,-0.027508821,-0.03381443,0.0052286014,0.010679824,-0.022262169,-0.018399382,0.037472647,0.041299332,-0.008303188,-0.0013778477,-0.040938325,-0.007057709,-0.008585977,-0.018014306,-0.0031708549,0.01762923,-0.006101038,0.003658216,-0.017978206,-0.009837472,0.004377224,-0.04348945,0.0015275157,-0.004852551,0.04348945,-0.0017177971,-0.015126241,0.007087793,-0.051551964,-0.020168321,-0.039734963,0.017003484,0.02543904,0.013236965,0.012057672,-0.01689518,-0.027966099,-0.004383241,0.023718236,-0.0034085186,-0.00042004802,-0.050589275,-0.025053965,-0.024584655,-0.0133212,-0.008321238,-0.020902371,0.013261032,0.009350111,0.0020968558,-0.02286385,0.008026415,-0.015860291,0.0028068384,0.0132850995,-0.011582345,-0.029386064,0.0019028138,0.010655757,-0.0065703485,-0.00027696093,0.025727848,-0.014693032,-0.057953842,0.02647393,0.025655646,0.0221298,0.056269135,0.02880845,0.02553531,0.012232159,-0.0019900575,0.008465641,-0.07340499,0.031552114,0.0074427845,0.022719447,0.008971052,-0.023982976,-0.02500583,0.018182777,0.044379935,-0.01492167,-0.03225006,0.007749642,-0.0024127378,-0.01975918,0.022153867,-0.023670102,0.0037905856,-0.030420953,-0.018279046,-0.022623178,-0.014632864,-0.040264443,0.008670213,0.0144884605,0.004768316,-0.014115418,0.027966099,-0.015607585,-0.005309828,0.031696517,-0.030950433,-0.032490734,0.03241853,0.019205634,-0.005562534,-0.015270645,-0.01695535,0.019085297,-0.0009935246,-0.013898814,0.014512528,0.050685544,0.0020366877,-0.02623326,0.005373005,-0.023212824,-0.014656931,0.014668965,0.0027782586,-0.054295626,0.025751915,-0.009687052,-0.0012868437,0.0036251235,-0.00406435,0.042117618,0.012021571,-0.010252631,0.033188682,0.037881788,0.0054602483,0.03330902,0.006558315,-0.02186506,-0.03340529,0.006013794,0.01685908,-0.008194885,0.01715992,0.0114018405,-0.01906123,0.022623178,0.025414973,-0.04380232,-0.008441574,0.01578809,0.00451561,-0.011155152,-0.020047985,0.04469281,-0.01021653,-0.00649213,0.0147411665,-0.02273148,-0.015475216,-0.008086583,0.025679713,0.008237002,0.023995008,0.0087243635,-0.029867407,0.013573906,0.0041666357,-0.008934951,0.020445095,-0.0034386027,-0.018700222,-0.0070216083,0.015595552,-0.000029355415,-0.013441537,0.0053188535,0.021804892,0.024380084,0.01166658,0.03330902,-0.020348826,-0.009867556,0.018098542,-0.005737021,-0.00442235,0.0017448728,-0.004130535,-0.036437757,0.026618334,-0.01385068,-0.0068110204,-0.026353596,-0.040938325,-0.042598963,-0.031070769,0.015475216,-0.0001627357,0.017232122,-0.017581098,0.017605163,0.004819459,0.02647393,0.029000988,0.012587151,-0.000585134,-0.010222548,-0.013934915,0.005938584,0.0056046513,0.010210514,-0.023453496,-0.03347749,-0.045559227,-0.0058513405,0.020866271,0.0069614407,0.058868397,0.010282716,-0.029000988,0.0018998054,0.002924166,0.012033605,0.005592618,-0.020348826,-0.0016997467,0.009320027,-0.008393439,-0.035956413,-0.005255677,0.0071780453,-0.003778552,0.006798987,-0.0089770695,0.009338077,0.035234395,-0.0191575,0.0000074328664,-0.0065944158,-0.0027842754,0.023044353]},{"id":"interface-GatewayPresenceUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayPresenceUpdateDispatchData\nDescription: PRESENCE_UPDATE — user presence (status, activities) changed.\nProperties: activities: { name: string; type: number; url?: string | null; }[], custom_status: GatewayCustomStatus | null, guild_id: string, status: string, user: { id: Snowflake; }","meta":{"url":"/docs/typedefs/GatewayPresenceUpdateDispatchData"},"embedding":[-0.0012712794,-0.009570969,-0.00647092,0.027520139,0.03950546,0.01312623,0.016318474,0.014693541,0.044483975,-0.011484011,-0.0011596374,0.0048085335,0.029110499,0.004894966,0.029317936,0.02662124,-0.006591926,0.049462494,-0.028603427,0.05444101,0.0005495672,-0.0017257708,0.023394423,0.037961196,-0.05531686,0.041072767,-0.015396526,0.062000982,-0.0076464037,-0.017609201,0.03964375,-0.023233082,0.04992347,0.01445153,0.030839149,-0.010988464,-0.058359288,0.042755324,-0.022507047,-0.02280668,0.0044368734,-0.03065476,-0.008245669,0.014140372,-0.053334672,0.01972968,-0.025929779,0.01567311,0.008349389,0.047618598,-0.013667874,-0.014405432,-0.019476146,0.058774166,0.024247224,-0.023647958,0.008960179,0.010141425,-0.024800392,0.015696159,-0.013414338,0.0028609189,0.00041667713,-0.005134096,0.020375043,-0.017009934,-0.03750022,0.034596086,0.017851211,-0.02097431,0.030700857,0.041533742,-0.029986348,-0.0008074245,-0.027220504,0.05430272,-0.011063372,-0.0037454125,0.021781014,-0.00017493597,0.01445153,0.022530096,-0.067809254,-0.05780612,-0.0013749985,-0.0012014131,-0.01922261,-0.051352486,-0.019268706,0.024062835,0.027427943,0.026021972,-0.024892587,-0.0061136656,-0.008412773,-0.023590336,0.03524145,-0.021988451,-0.011823979,0.05089151,0.028234648,-0.05900465,-0.053611256,-0.053980038,0.032844387,-0.0018770278,-0.038099486,0.017217373,-0.050614927,-0.011034561,-0.060341474,-0.01919956,-0.015811402,0.007951799,-0.006061806,-0.010775263,0.032337315,-0.084773086,0.05250492,0.013713972,-0.018634867,0.0048402254,0.01848505,-0.031000491,-0.0028047378,0.007559971,0.010325814,-0.00017709678,-0.09145721,-0.014555249,0.008337865,-0.011437913,0.054026134,-0.021492906,0.021539003,-0.006396012,-0.0018150845,0.024062835,-0.04547507,-0.041395452,0.038652655,-0.012423245,0.017447859,0.049093712,-0.046996284,-0.0028753243,0.014071226,0.01593817,0.009000515,0.0361173,-0.040588748,0.045498118,-0.053841744,-0.011241999,0.024961734,0.031945486,0.009922462,-0.024293322,-0.03667047,-0.045959093,0.014889455,-0.07103607,-0.03473438,-0.010619685,-0.012884219,-0.016237803,0.0041775755,-0.0025051048,-0.07131265,-0.041395452,0.0020239633,-0.056791976,-0.04015082,0.0049381824,-0.01858877,0.014912504,-0.011080659,0.0059465626,-0.043308493,-0.05748344,0.012826597,0.01667573,-0.039712895,-0.050614927,0.005667097,-0.025076976,-0.020905163,0.058405384,0.030746955,0.025791487,-0.0044080624,0.026321607,0.021158699,0.048817128,0.053841744,-0.06988364,-0.0036560989,-0.014221043,0.0048920847,-0.03312097,-0.005767935,-0.0757841,-0.0134373875,-0.011074897,-0.013402814,0.01789731,0.0396207,-0.017217373,-0.008009421,0.026482947,0.03494182,-0.002513748,-0.026298558,-0.018796207,-0.039413262,0.056146614,-0.0132069,0.008764265,-0.038306925,0.031830244,0.00050779147,0.004632787,0.05268931,-0.009449963,-0.0014592703,0.040611796,-0.0026693267,-0.02176949,-0.043838613,-0.009853316,-0.01206599,0.011518584,-0.023717104,-0.056238808,0.012227331,0.0023394423,0.04685799,-0.018335234,0.04068094,0.03452694,-0.0043245107,-0.011881601,0.0023163934,0.022714486,0.017609201,0.024984783,0.014509152,-0.02227656,-0.04261703,0.018531147,0.050614927,0.019614438,0.018715538,-0.012008368,-0.02397064,-0.018888403,-0.009945511,0.050937608,0.02590673,0.060018793,0.0046356684,-0.03667047,-0.006355677,-0.019211086,-0.03325926,-0.006534304,0.059419528,0.011812455,0.0006644506,0.011904649,-0.0040709754,0.0014319,0.038652655,-0.026851727,0.001381481,0.022138268,0.023048691,0.009478775,0.006632261,0.012480867,-0.019153463,-0.014566774,0.02800416,0.057852216,-0.03173805,0.064351946,0.016111035,-0.0059811356,-0.0134373875,0.03505706,-0.018208466,0.018312186,0.0035379743,0.00081750826,0.033420604,0.039943382,0.02871867,-0.044898853,0.024915636,-0.012400196,0.033028774,-0.022772107,-0.04886323,-0.02052486,0.001885671,0.026713435,0.04826396,-0.02431637,-0.0032815575,-0.015235186,-0.0155578675,-0.011789406,-0.0050793556,0.009415391,-0.047111526,-0.040243015,0.019072793,0.04197167,0.009328958,0.033743285,0.023567287,0.020098459,-0.002349526,-0.04826396,-0.036877908,-0.060203183,-0.0053098425,-0.007669452,0.031138783,0.0006907405,0.000120555465,0.0015716327,0.022080647,0.021469856,0.04015082,-0.0011762036,-0.02927184,0.038306925,-0.009063898,0.00017286518,0.0081246635,-0.049739078,-0.02325613,-0.03219902,0.0035437364,-0.020743823,-0.024385516,0.00673598,-0.038283877,0.024592955,0.020905163,-0.013080132,0.006805126,-0.040657893,-0.02588368,-0.066749014,0.046466164,-0.02712831,-0.014244092,0.043423735,-0.021596624,-0.03325926,-0.013252998,0.014140372,-0.013806166,0.009749597,-0.041602887,0.028050259,0.0043792515,-0.023590336,-0.030078543,-0.04208691,-0.0049036094,-0.022599243,-0.040980574,0.0040219966,-0.039597653,-0.009657402,0.0011610779,-0.00040875413,-0.0060502817,0.05849758,0.016560486,0.02185016,0.014958601,-0.0006025072,-0.037822902,-0.021999976,-0.06075635,0.012734402,0.032014634,-0.024247224,0.0013440269,-0.01471659,-0.043585077,-0.050430536,0.058589775,0.022749059,0.026874775,-0.0138983615,0.054026134,0.017217373,0.007456252,-0.035541084,-0.014924028,0.027404895,0.016537437,0.01609951,0.016825546,-0.016514387,0.026874775,0.015315856,0.012895743,0.0019375307,0.02643685,-0.04886323,-0.0062519577,0.0030193788,0.019003646,0.025676243,0.0022342827,0.0031259789,-0.003728126,0.0215851,-0.02413198,-0.034895718,0.014416956,-0.012815073,0.00686851,-0.051490776,-0.07679824,0.042040814,0.07619897,-0.013402814,0.06495121,-0.012215807,0.008199573,-0.01461287,-0.012123612,-0.0045175436,-0.024247224,-0.025998924,-0.04635092,0.042317398,0.019141939,0.018254563,-0.0054740645,-0.05130639,0.055823933,-0.03632474,-0.036739614,0.067163885,0.0007843758,0.01805865,-0.030239884,0.04950859,-0.030677808,0.062277567,-0.016272377,0.0015284164,-0.023233082,-0.007830793,-0.038537413,0.05038444,-0.013748544,0.009674689,-0.009161855,-0.001416054,-0.0233368,0.006632261,-0.03434255,-0.016756399,0.0046241437,0.026529044,-0.0020556552,0.015719207,-0.01938395,0.03401987,-0.013886837,0.05448711,-0.009127282,0.045843847,0.0141058,0.017966455,0.08260651,0.08242212,0.023279179,-0.00065616745,-0.0104468195,0.0056382865,-0.009622829,-0.027427943,0.05693027,-0.010988464,0.044507023,0.016975362,-0.036186446,-0.016779447,0.014589822,-0.022795156,0.0048114145,-0.025952827,0.007732836,-0.0032815575,0.026206363,0.011789406,-0.032636948,-0.018623343,-0.02800416,-0.01901517,-0.02519222,-0.018254563,-0.022449426,-0.025468804,-0.037016198,0.016445242,-0.015753781,0.024892587,-0.009300147,0.030101592,0.0039269207,0.014728114,-0.009225239,0.016422193,0.0010227857,0.014013604,0.018796207,-0.07629117,0.0039960667,0.005969611,0.008689357,-0.017378714,0.009282861,0.028442087,-0.005667097,0.019499194,-0.023993688,-0.021976927,0.003768461,-0.0031230978,-0.0062173847,0.015915122,0.010919318,0.023117838,0.012273428,-0.01437086,0.002497902,0.0036560989,-0.012077515,0.007041375,0.021896258,-0.030585615,-0.0009637234,0.031438414,0.033420604,0.034135114,-0.010095327,-0.01445153,-0.007502349,0.001455669,0.0038145585,-0.03259085,0.013057084,-0.019153463,-0.015177564,0.010043467,0.019764254,0.0012619159,-0.0246621,-0.008164999,-0.010360387,0.019983215,-0.008291767,-0.019418523,0.02415503,0.010014657,-0.0057535297,-0.0011862874,0.022852778,0.0045607598,0.014416956,-0.048217863,-0.027911967,0.08408163,-0.036094252,0.028142452,-0.006228909,-0.025307463,0.018473526,0.036877908,-0.020513335,0.0043446785,0.020375043,0.025630146,0.026851727,-0.024201127,-0.010804074,0.010285479,-0.036370836,0.050015662,-0.024685148,-0.002248688,-0.05854368,-0.01805865,0.05799051,0.031922437,-0.005998422,0.029317936,0.009363531,0.02678258,-0.02028285,0.039159726,-0.012388672,0.01066002,-0.024178078,-0.019326327,-0.018807733,-0.0034256119,-0.0049554687,-0.017517006,-0.007594544,0.013010986,-0.025768438,0.022968022,0.018554198,0.03399682,0.00043792513,-0.0029588758,-0.0003388878,-0.018531147,0.018404381,-0.052228335,-0.006885797,-0.010567825,-0.028949156,-0.007755885,0.0246621,-0.01946462,0.039390214,-0.028764768,0.022311134,0.034042917,-0.0027917728,0.022345707,0.09422305,-0.0028436324,-0.02256467,0.013748544,0.019061267,0.025330512,-0.031323172,-0.06840852,0.039874237,0.00035059222,0.020190654,-0.01683707,-0.0027802484,0.03890619,0.02503088,-0.006263482,-0.038652655,0.006793602,0.02450076,0.036532175,-0.005361702,-0.0037828665,0.0069837538,-0.013644826,0.03600206,0.024731247,-0.0018424548,0.03964375,0.070851676,0.006096379,0.017355666,0.0089198435,0.015534818,-0.029202692,-0.025975876,0.0021910663,0.022149794,0.009922462,-0.055916127,0.009594018,0.03381243,-0.027174408,0.050200053,-0.026805628,0.02606807,0.0058169137,0.01158773,0.021654246,0.042363495,-0.011426389,-0.040611796,0.009824505,0.03208378,-0.017839687,-0.0047422685,0.00097524776,-0.019937119,0.019441571,-0.004727863,-0.011916174,0.027082212,0.013183852,0.0079921335,-0.017493958,0.029479276,-0.018554198,0.01373702,0.013149279,-0.030977441,0.013817691,-0.02519222,0.0040940237,-0.045221534,0.023809299,0.016560486,-0.0043677273,0.032683045,0.032567803,0.0013260201,0.011368767,-0.010066516,-0.027935015,0.0113111455,0.026828676,-0.022714486,-0.020859066,-0.010884745,-0.006401774,0.0046731224,0.009530634,-0.028280744,0.020985834,-0.007842317,0.037638515,-0.004396538,0.0036849095,-0.0005124733,-0.008372437,-0.007496587,-0.006701407,0.010469868,-0.030170737,-0.0057074325,0.024247224,-0.033097923,-0.0054077995,-0.033766333,0.006159763,-0.0053818696,-0.007306435,0.017044507,-0.01304556,-0.003826083,-0.00003839948,0.022253511,0.031991586,0.012561537,-0.00058882206,0.054855887,0.051214192,-0.018312186,0.019510718,-0.04250179,-0.036048155,0.01180093,0.022218939,-0.011737546,0.013598728,-0.0043878946,0.009184903,-0.00049734756,-0.0308161,-0.0023365612,-0.0299633,-0.005525924,-0.0011819657,0.009542159,-0.003895229,0.034918766,-0.034803525,0.0031115734,-0.0011200224,0.031300124,-0.034987915,-0.0007930191,-0.0039442074,-0.016595058,-0.022253511,0.0021305634,-0.028810864,0.0058802976,-0.02415503,0.019499194,-0.071497045,0.03134622,0.024639051,-0.038468268,0.012365623,-0.010487155,0.016087987,-0.0107118795,0.012146661,-0.057299048,0.02537661,-0.049416397,-0.021976927,0.010112613,0.03664742,-0.003964375,0.007196954,-0.009524872,0.021112602,0.01445153,0.011023037,-0.011564681,-0.021170223,0.0114436755,-0.0049698744,0.025607096,-0.00033006447,0.008487681,0.041602887,-0.01532738,0.027220504,-0.045405924,-0.020997358,0.0010933724,0.0035783094,-0.003195125,-0.004894966,0.045866895,-0.010204809,-0.01919956,0.026920872,0.029133547,-0.005332891,-0.007876891,-0.009801456,0.010389198,-0.022921924,0.020432666,-0.008810363,0.008821887,-0.0007469217,-0.009536397,0.039897285,-0.0046500736,-0.012653732,-0.010619685,-0.024708198,0.05232053,-0.012434769,-0.037062295,0.0028205838,0.024523808,0.041280206,0.0062173847,0.017228898,-0.03102354,0.0014038094,-0.00389811,0.0011682806,0.04091143,-0.018657915,0.010832885,0.019844923,-0.012342574,-0.0068512238,0.039021436,-0.0040104724,-0.030147688,0.002945911,0.02044419,0.038629606,0.02415503,0.02924879,0.009300147,0.030677808,-0.010147187,0.0030597139,-0.013644826,0.028949156,0.010366149,0.0215851,-0.031461466,0.022783631,0.02874172,-0.036947053,-0.01304556,-0.015638538,0.00336799,-0.024961734,-0.0020729417,0.0071450947,0.0059523247,0.018415906,-0.03773071,-0.047756888,0.00046421506,0.01498165,0.019130414,-0.004632787,0.032913532,0.02662124,0.013057084,0.007300673,0.023855396,-0.03136927,-0.038883142,0.019960167,-0.0025367967,0.018830782,-0.008608687,0.008153475,-0.00067741546,-0.0011646792,0.018093223,0.007237289,0.030401224,0.014601346,-0.008804601,0.018623343,0.01487793,-0.0062116226,0.014428481,-0.03773071,-0.0040364023,0.013748544,-0.0031720763,0.017782066,-0.000022969913,-0.02662124,-0.008689357,0.00352645,0.012538488,-0.016802497,-0.005664216,0.05176736,0.016168658,-0.01972968,-0.032360364,-0.0040536886,-0.0022371637,0.007738598,-0.016191706,-0.045336775,-0.0028537163,0.030700857,0.014486103,-0.050476637,0.016329998,-0.0052032424,0.029156595,0.03118488,0.035679374,-0.012423245,-0.008418535,-0.043285444,-0.022437902,-0.017885786,0.0069779917,-0.043631174,0.0027960944,-0.037592415,0.0039730184,0.04457617,0.023313751,-0.013402814,0.03134622,-0.00686851,-0.032890484,0.014970126,-0.023717104,-0.010135662,-0.021953879,0.02678258,-0.0048402254,0.07435508,0.011610779,0.03206073,-0.015523294,-0.025284415,-0.013057084,-0.007986371,0.033743285,0.026160264,0.038329974,-0.03242951,-0.0246621,0.043769468,-0.008395486,-0.011282335,-0.023855396,-0.0031086924,0.010539015,-0.031968534,-0.0022314014,0.020893639,0.05338077,-0.0103142895,0.017067557,-0.013644826,0.0053098425,0.013068608,0.0032873198,0.012803548,0.0020383687,-0.017298043,0.02643685,-0.04280142,-0.01673335,0.010550539,-0.015822927,0.01832371,-0.0009082625,-0.009962797,0.036739614,0.031438414,0.023290703,-0.04240959,0.012930316,-0.031853292,-0.014670492,-0.018173894,0.0062404335,-0.01267678,0.010458344,0.022772107,-0.0016911977,0.021608148,0.013229949,0.0010249466,0.048586644,-0.0020513337,0.0022947853,0.009265574,-0.03537974,-0.019349378,-0.020167606,-0.013506534,0.028926108,0.0055230428,0.028949156,-0.0053386535,0.019637486,-0.0150277475,0.009887889,-0.018565722,0.009582493,-0.036393885,-0.008003659,-0.008752741,-0.037638515,0.018266087,0.037776805,-0.01593817,-0.021919306,0.018738586,-0.0018107629,-0.0046788845,-0.0018943143,-0.031576708,-0.003797272,0.008666309,0.05393394,0.021792538,-0.011581968,0.0056526917,-0.006828175,-0.040081676,0.027819771,0.007969085,0.041648988,0.008268719,-0.0019663416,0.0033795144,0.016064938,0.011074897,-0.021734916,0.0053213667,-0.006856986,0.006488207,-0.01471659,0.004563641,0.030631712,-0.0042179106,-0.033190116,-0.004866155,-0.0031173355,-0.024039786,0.003627288,0.038099486,-0.0036560989,-0.025261367,-0.0050879987,-0.017217373,0.038468268,0.007813507,0.028096355,0.04187947,-0.03365109,0.016134085,0.001951936,-0.025007831,-0.052412726,-0.0006212343,0.01604189,0.010095327,0.031507563,0.002847954,-0.029456228,0.015719207,-0.017067557,0.017747493,0.019326327,0.0016566247,-0.0074793007,-0.0050908797,0.028764768,0.0040767374,0.0030481895,0.009818743,-0.036693517,0.027059164,-0.025975876,-0.014059702,-0.0034227308,-0.00700104,0.012550013,-0.03945936,0.021481382,0.021216322,-0.022126744,-0.04780299,-0.01789731,-0.0048488686,-0.011714498,-0.000395069,-0.03222207,-0.0089889895,-0.02927184,0.015915122,-0.006234671,0.059788305,0.011847028,0.0033910389,0.021550527,0.014520676,0.020317422,0.019061267,0.01092508,-0.0049439445,-0.032567803,0.025491852,-0.0028911703,-0.03664742,-0.01198532,0.0067186938,-0.010337338,-0.00064536335,0.00026830117,0.0123080015,-0.058082704,0.020386567,-0.014059702,-0.017655298,-0.010757977,-0.00018213868,-0.020375043,0.042063862,-0.029294888,0.009006277,0.018300662,-0.00034915167,0.01567311,0.0049756365,0.024708198,-0.025053928,0.02678258,-0.0040796185,-0.01583445,0.030078543,-0.03049342,0.01612256,-0.02450076,-0.024293322,-0.037684612,-0.0044685653,0.028326843,-0.003330536,-0.0154311,-0.020628579,-0.023060216,-0.008574113,0.0035811905,0.02150443,-0.02362491,-0.008758503,-0.035564132,-0.01720585,0.047134575,-0.028027209,-0.009939749,-0.03348975,0.029617568,0.0036560989,-0.0079978965,0.008574113,0.033720236,-0.006326866,-0.013875312,0.0055835457,0.055639543,0.014440006,0.007415917,-0.007761647,-0.003635931,0.01779359,0.000214821,-0.027911967,-0.029410131,0.027059164,0.0085222535,0.018508099,-0.008764265,0.0075484468,0.01683707,-0.060848545,0.026644288,-0.010377673,0.008931368,-0.030309029,-0.010688831,0.021412235,-0.014486103,0.014958601,0.008383961,0.019211086,0.013137754,-0.0064075366,-0.036693517,0.0007490825,-0.0054740645,-0.0035869526,-0.0032902008,0.0040450455,0.011812455,0.013252998,0.0062173847,0.008643259,0.008827649,-0.009369293,-0.027704528,-0.014728114,-0.027520139,-0.021757966,0.018277613,0.006372963,-0.041695084,-0.01052749,-0.025607096,-0.02344052,-0.02537661,0.011916174,0.01715975,-0.016595058,0.0041343593,-0.01434781,-0.009490299,0.038998388,-0.016583534,-0.0053789886,0.024777343,-0.04886323,0.024869539,0.029364033,-0.021562051,-0.0012338253,0.024224175,-0.0018885522,-0.031945486,-0.017240422,-0.011397578,-0.011870076,0.0022587718,-0.015477196,0.018554198,-0.009288623,0.01694079,0.007300673,-0.01418647,-0.014013604,-0.010556301,-0.010798312,-0.03420426,-0.017828163,-0.0022400448,0.0027269484,-0.021458331,0.016906215,0.022633815,-0.015995793,0.007271862,-0.028787816,-0.007600306,-0.013794642,-0.025007831,0.0020297254,0.012192758,-0.0035466175,-0.025238318,-0.012803548,-0.007727074,-0.008205335,-0.053104185,0.009334721,0.0053386535,0.0043590837,-0.00085064076,-0.013990556,0.008015183,-0.030562565,-0.017482433,-0.021631198,-0.0043850136,0.013725496,-0.0065112556,0.0000973267,-0.006321104,-0.01119014,-0.013979032,0.006931894,-0.0043331543,0.009882127,-0.021112602,-0.022576194,-0.01532738,-0.018992122,-0.010688831,-0.017701395,-0.003198006,-0.005229172,-0.0139675075,-0.04250179,0.006856986,0.0019447334,-0.010573587,0.027289651,-0.016963838,0.0009867721,-0.000914745,0.008649021,0.0042380784,-0.014416956,0.03240646,-0.005200361,-0.034227308,0.035840716,0.028234648,0.023452044,0.061908785,0.022702962,0.0334667,0.013345192,-0.007761647,-0.012826597,-0.06711779,0.02078992,0.020086935,0.015546342,0.017712919,-0.0005358821,-0.009818743,0.0099166995,0.03401987,-0.00057081523,-0.037246685,-0.0061079036,-0.0041602887,-0.007905701,0.0119737955,-0.009680451,-0.017056031,-0.005963849,-0.025745388,-0.01928023,-0.008447345,-0.030216835,0.0150968935,0.010786788,0.001951936,-0.008453107,0.024938684,-0.016698778,0.009968559,0.018842306,-0.018369807,-0.027059164,0.026990019,0.013817691,0.011581968,-0.016237803,-0.0044167056,0.03717754,0.012054466,0.010694593,0.0012359861,0.05130639,0.0023941828,-0.046166528,0.0026203482,-0.020121507,0.0021420878,-0.0057535297,0.0005510078,-0.055777833,0.009392342,-0.0095191095,0.008729692,0.007104759,0.009046611,0.05070712,0.024039786,-0.01559244,0.025630146,0.008153475,-0.017770542,0.022772107,0.010965415,-0.0087873135,-0.024431614,0.0057535297,0.007600306,0.005165788,0.02203455,0.008937131,-0.02054791,0.015085368,0.018312186,-0.03996643,-0.020732298,-0.006488207,0.005301199,-0.017413286,-0.038675707,0.04261703,-0.0060733305,-0.005402037,0.023878444,-0.012146661,-0.012261904,-0.0076118307,0.024616003,0.009761121,0.032683045,0.023140887,-0.018496575,0.002397064,0.012469342,0.005497113,0.02397064,0.025261367,-0.025123075,0.0147626875,0.007283387,-0.0011596374,-0.011437913,0.029317936,0.027911967,0.017148226,0.0202598,0.033581942,-0.031392317,-0.005499994,0.011489773,-0.016975362,0.008286005,-0.0150968935,-0.01461287,-0.038514365,0.037615467,0.0032844385,-0.027635382,-0.02590673,-0.041487645,-0.028326843,-0.021227846,0.017724443,-0.007323722,0.0061828117,-0.020063886,0.03471133,-0.008983227,0.010694593,0.009225239,0.0032729143,0.00013532102,0.0033881578,-0.009922462,0.0030136164,0.0046443115,0.02659819,-0.027497089,-0.038122535,-0.040865332,0.012734402,0.007410154,0.01895755,0.05600832,0.019141939,-0.036739614,0.017413286,0.008222621,0.011691449,0.010279717,-0.02659819,-0.019937119,-0.0018770278,-0.014290189,-0.014589822,0.007231527,0.002879646,-0.024247224,0.0044397544,-0.007738598,-0.0015860382,0.027059164,-0.030447323,-0.018035602,-0.012803548,0.016756399,0.007946037]},{"id":"interface-GatewayReactionEmoji","type":"interface","source":"main","text":"Interface: GatewayReactionEmoji\nDescription: Emoji data sent with reaction events (id is null for unicode emoji).\nProperties: animated: boolean, id: string, name: string","meta":{"url":"/docs/typedefs/GatewayReactionEmoji"},"embedding":[0.009459292,0.0036682456,-0.045441926,0.042199407,-0.0039452594,-0.00578813,0.0063567376,-0.025030382,0.008333741,-0.015396135,-0.0176589,-0.01557109,0.02598681,-0.023875672,-0.013051723,-0.0023444113,0.001382882,0.039050195,-0.014019813,0.061257955,-0.012620165,-0.01946678,0.032121934,0.04364571,0.032985054,0.04180284,-0.025846845,0.036997378,0.008351237,-0.0124568725,0.0029684214,-0.02617343,0.09928174,-0.039726693,0.0010657741,0.045861818,-0.062844224,0.0028284565,-0.052813407,0.013331653,-0.038630303,-0.051367104,0.0040735607,0.052020274,-0.05878524,0.0007800125,-0.050014112,0.0048754425,0.001424434,-0.0017539347,-0.009587593,0.02349077,0.01054402,0.030395702,-0.009523442,-0.037393946,-0.012771794,0.012690147,-0.035574403,0.011955332,-0.0011437753,-0.023000892,-0.001028596,-0.01613095,-0.0027438945,-0.01940846,-0.06960919,0.04579184,0.02717651,-0.019420125,0.04086974,0.020644818,-0.017087378,0.0077447225,0.010707312,-0.0038665293,-0.027689716,-0.019233504,0.0020688556,-0.051180486,-0.01197866,0.049874146,-0.044228896,-0.09494283,-0.0031113022,-0.0034816258,-0.03774386,-0.055892635,-0.056452494,0.027526423,0.0020426123,0.020784782,-0.116824,-0.019420125,-0.009307663,-0.0144513715,0.0012851981,0.04530196,0.0011277377,0.02224275,0.020399878,-0.07441465,-0.038746938,-0.013401635,0.009383477,0.018078795,-0.015116205,0.0048783584,-0.033941478,-0.016492527,-0.02957924,-0.014509691,0.009885019,0.025263658,0.002899897,-0.012876768,0.03163206,-0.017250668,0.0074414653,-0.017460616,-0.015197851,-0.012713475,0.052673444,-0.008940255,-0.013308326,0.0065666847,-0.0042601805,0.00028211667,-0.04299254,-0.0138915125,0.017262332,-0.01788051,-0.006829119,0.00044285756,-0.0037382282,0.0077038994,0.03209861,-0.003344577,-0.031398784,0.01687743,-0.0035370288,0.005021239,0.029019382,0.0043476587,-0.02034156,0.023584079,-0.027853006,0.007849696,0.018463697,0.013389972,-0.0119086765,0.014264752,-0.043412436,-0.019268496,0.009645912,-0.027433112,-0.016620828,0.007943006,0.0074531287,-0.030069118,0.0011189899,-0.0852386,-0.016492527,-0.025217002,-0.03170204,0.010777295,0.0019390965,-0.000978296,-0.0147779565,-0.011459623,0.039330125,-0.015617746,-0.07058895,0.012631829,-0.056919042,-0.009675071,0.022079457,0.031188836,-0.030652305,0.053653196,0.037837166,0.02552026,-0.07035567,-0.041103013,0.026663305,-0.014474699,-0.010823949,0.044905394,0.0070623937,-0.024003973,0.0015571091,0.067976266,0.062051088,-0.0154427895,0.035364456,-0.048521154,0.023455778,-0.038886905,-0.015466117,-0.02430723,0.016457535,0.009785877,0.04086974,-0.0024829183,-0.013868185,-0.004857947,-0.015267834,-0.048474498,0.0105790105,0.010596506,0.06718314,-0.036740776,-0.003563272,-0.038140424,-0.048754428,0.003117134,-0.019070212,0.047751345,0.00776805,0.042852577,-0.050154075,0.015734384,0.05943841,-0.045698527,-0.009418469,0.04014659,0.008695317,0.006245932,-0.031118855,0.0030092446,-0.042246062,-0.0070274025,-0.006829119,-0.04530196,0.01176288,-0.0059047677,0.029812515,-0.008846946,0.009669239,0.0053303284,0.017110704,-0.02006163,0.02542695,0.020353224,-0.00312005,0.03604095,0.029882498,0.0249604,-0.011220517,0.01575771,0.016982403,0.025170347,0.03781384,0.0076397485,0.010054142,-0.04539527,-0.0508539,0.03359157,0.026360048,0.022522679,0.025753535,-0.03375486,-0.0042922557,0.03613426,0.003933596,-0.03774386,0.037183996,0.049967457,-0.025916826,-0.007523111,0.058925208,-0.018778618,0.03865363,0.024027301,-0.034221407,0.033824842,0.0026112194,0.009097716,-0.02412061,0.0320053,-0.037323963,-0.008951919,0.019653399,0.0018895257,-0.046631627,0.026290067,0.0468649,-0.01700573,0.008386228,0.014428045,0.0249604,0.000535074,0.031818677,-0.04289923,0.014742966,0.06326412,0.050434005,0.0110164005,0.053933125,-0.008374564,0.03244852,-0.04527863,-0.0021621655,0.0042397687,-0.0025762282,0.020166604,-0.009447628,0.040893067,0.020994728,0.026313394,-0.010561516,-0.009820867,-0.001647503,0.0067124814,-0.0720819,0.004505119,0.042199407,0.05104052,0.023852345,-0.0067591364,0.013576591,-0.0017758042,0.050247386,-0.05066728,-0.042922556,-0.024937073,0.043015867,-0.03534113,0.050993863,0.055799324,0.0074356333,-0.0341281,0.019630073,0.021262996,0.07212856,-0.009150202,-0.02224275,0.030162428,-0.011173861,0.04068312,0.064477146,-0.015361143,-0.03753391,-0.01806713,0.04056648,-0.02570688,-0.034174755,-0.0042543486,0.033708204,0.00044030612,-0.021566253,-0.0005664203,-0.066996515,-0.0447421,0.062097743,-0.03559773,-0.010526524,-0.0070040748,-0.015011231,0.04152291,-0.017787201,0.015617746,0.026196757,0.028786106,-0.01197866,0.0021461279,-0.03307836,0.030465685,0.07119546,-0.05057397,-0.003201696,-0.02985917,-0.029765861,-0.025030382,-0.0022234002,0.0044730436,-0.04030988,-0.018090459,-0.015827693,0.007902183,0.008065475,0.05150707,-0.02108804,0.0028065871,0.025170347,-0.03940011,-0.0301391,-0.008876105,-0.020073295,0.048521154,0.080013245,-0.023887336,-0.06881606,-0.034314718,-0.017763874,0.019210177,0.0032745947,-0.005041651,0.02062149,0.0013639284,-0.014591337,-0.013133369,0.032845087,-0.016900757,-0.0067183133,-0.015011231,-0.022849264,0.036670793,0.052486822,-0.021717882,0.04135962,-0.0010942045,0.020306569,0.05104052,0.005044567,-0.029509258,0.013716556,-0.022755954,-0.020236585,0.039353453,-0.02932264,-0.01294675,-0.04112634,-0.027223166,-0.01478962,0.0014011066,0.02542695,-0.0059485068,0.024377214,-0.048707772,-0.020994728,0.005662745,0.030535668,-0.012550183,0.07184863,-0.022254413,0.025590243,-0.006205109,-0.02130965,-0.028506177,-0.024727125,0.0074239695,0.020796446,0.027129855,-0.024003973,-0.0029363462,-0.03559773,-0.022755954,-0.025403623,-0.04373902,-0.06499035,0.034524664,-0.02698989,0.026593324,-0.01653918,-0.013063387,0.009815036,0.02932264,-0.0025806022,-0.000400212,-0.015827693,0.014486363,-0.012036978,0.04084641,-0.000050573242,0.0042164414,-0.04289923,-0.021706218,0.014428045,-0.013284998,-0.04523198,-0.01806713,0.047378104,0.026756616,-0.00075887196,-0.0067183133,0.041569564,-0.03170204,0.020854764,0.009086052,-0.0217762,0.0682562,-0.007534775,-0.054679606,-0.012305244,0.07987328,-0.010054142,-0.06335743,0.016807446,0.016434208,0.016154278,0.0029217664,-0.010864772,-0.010946418,0.028739452,0.0038956886,-0.008811954,-0.040823083,0.0016154278,-0.015267834,0.022872591,-0.016247587,-0.035691038,-0.0103515675,0.014929585,0.022009475,0.032868415,-0.007091553,-0.017822193,0.003697405,0.03494456,-0.0033562407,-0.026383376,-0.02486709,-0.01775221,-0.007843864,-0.020049967,0.008986911,0.00094694976,-0.0025980978,0.011179693,0.00374406,0.027223166,-0.011383809,-0.019011894,-0.004560522,0.054586295,-0.063823976,-0.016387552,-0.01372822,0.026943237,-0.022417706,0.012526855,0.02726982,0.019233504,0.0053390763,-0.012771794,-0.0018880677,0.0124802,-0.042735938,0.019315151,0.0055985944,0.03986666,-0.028529504,0.0070565618,0.04726147,-0.011337154,0.015034559,0.007085721,0.011809535,-0.0038052946,-0.029929154,0.021601243,-0.040239897,-0.000979025,0.01572272,-0.0072490135,-0.005968918,0.028436195,0.005053315,0.0030413198,0.009097716,0.017682228,-0.018043803,-0.03375486,0.02477378,0.02838954,-0.016177606,-0.048287876,-0.008543689,-0.021321313,0.020889755,0.018801946,-0.0074239695,-0.015081214,0.024447195,-0.020084957,0.004682991,0.005983498,-0.023817353,-0.024563832,-0.016644156,-0.0014455746,0.022476023,-0.017518936,0.019944992,0.0027963812,-0.023910664,-0.01840538,0.015326153,0.00455469,0.008485369,0.006403392,0.01993333,-0.017495608,0.0039015205,0.00095934246,-0.015979322,-0.00033150532,0.0045255306,0.027106527,-0.008508697,-0.024680471,-0.014614664,0.028459521,0.03606428,-0.0021942407,-0.01946678,-0.027853006,0.014358062,-0.02967255,0.045325287,-0.028342884,-0.036857415,-0.034991216,-0.00776805,0.011436296,0.014952913,-0.01294675,-0.039703365,-0.02773637,0.04289923,-0.006555021,0.0015658569,-0.025473604,0.03947009,0.0062634274,-0.00954677,0.006694986,0.0074531287,0.009313495,-0.033241656,-0.023537423,-0.04166287,-0.01821876,-0.02449385,0.018055467,-0.010695648,0.009791709,-0.008683654,-0.008526193,0.023537423,0.043505743,0.03737062,0.041103013,0.012736802,0.009447628,-0.02214944,0.033778187,0.034338046,-0.02458716,-0.011115543,0.00482004,-0.029182674,-0.010363231,0.002759932,-0.032518502,0.046001785,-0.017250668,-0.011757049,0.013751548,0.0124568725,0.00075741403,-0.0011700188,-0.010083302,0.04254932,0.040729776,0.00035100564,0.0072606774,-0.011401304,0.04259597,0.04751807,0.033428274,0.011652075,-0.02514702,-0.03541111,-0.019781701,-0.021612907,-0.009535106,-0.0063917288,0.04824122,-0.01229358,-0.017437289,0.0050678942,0.027013218,-0.01372822,0.032518502,0.00012720765,-0.0007315351,-0.005735643,0.02140296,0.02829623,-0.0010169322,0.0075114476,0.016154278,0.01781053,0.018242087,0.024797108,0.0023079622,0.0010788958,0.012153615,0.010707312,-0.006461711,-0.012048642,0.033428274,-0.015384471,0.020959739,-0.02311753,0.04833453,0.008712812,-0.021787863,-0.012083633,0.010118293,-0.0065025343,0.003125882,-0.0015439874,-0.00438265,0.030885579,0.0059135156,0.020854764,0.023269158,0.02352576,-0.006461711,0.0026986974,0.0047121504,0.03391815,0.042945884,0.04502203,-0.02957924,-0.001382153,-0.0030938066,0.02736313,-0.0027322308,0.009855859,-0.013483281,0.024820436,-0.0025164515,-0.0034028958,-0.0041639544,0.0051816157,-0.010147452,-0.0065666847,-0.012328572,0.006368401,-0.03828039,0.009400973,-0.00873614,-0.0015804366,-0.02736313,-0.02505371,-0.00758143,0.0065375254,-0.037487254,0.010812285,-0.007179031,0.020784782,0.0048900223,-0.03097889,-0.011307995,0.0064500473,0.011249675,0.0022890086,-0.013389972,0.051740345,0.0028065871,-0.030302392,0.0010898305,-0.01572272,-0.00063057087,0.03800046,-0.009272672,-0.0087653,-0.021472942,-0.010199939,0.029719206,-0.005750223,0.003886941,-0.010946418,-0.0091327075,0.030162428,-0.025170347,-0.0074822884,-0.019011894,-0.024260577,0.03060565,0.010707312,-0.015279497,0.008654494,-0.008998574,-0.030815598,0.0029305143,-0.0042601805,0.0112321805,-0.04964087,0.02315252,0.007785545,0.0028649059,-0.08061976,-0.0061701178,0.030815598,-0.034501337,-0.0110164005,-0.015979322,0.0030209082,0.039423436,0.018696973,-0.043132506,0.026663305,-0.02315252,0.011168029,-0.02093641,0.012375226,-0.029019382,0.035667714,0.004341827,0.002055734,0.009838363,-0.017448952,0.010549852,0.0025703963,0.01257351,-0.011879518,0.03872361,-0.0011124291,0.027153183,0.027899662,-0.0006119818,0.04152291,-0.027853006,0.011442128,0.0059543382,0.008036315,0.013926503,0.007044898,-0.0013333111,0.008730308,-0.0042718444,0.04014659,-0.012328572,0.021053048,-0.015314489,0.00033041183,-0.0035749357,-0.012491864,0.04418224,-0.019571753,-0.0054557137,-0.028156264,0.0076514124,0.03097889,0.0056219217,-0.025193674,0.041172996,-0.014836275,0.014264752,-0.030535668,-0.044882067,0.00007116703,0.01594433,0.01806713,-0.015909338,0.046141747,-0.030255737,-0.019315151,0.007843864,0.043319125,0.0040123262,-0.0051174653,0.0027118193,0.004499287,0.01706405,-0.031212164,0.07096218,-0.0106839845,0.017682228,0.019315151,0.0060009933,-0.004058981,0.014637992,0.014078132,0.003787799,0.025823517,0.025007056,0.00015973854,0.0037090688,0.010404055,0.017623909,0.00016156101,-0.05771218,-0.017740546,0.04058981,0.016434208,0.021542925,0.0040706447,-0.015337816,0.019035222,-0.018393716,0.04576851,-0.012445209,-0.026266739,-0.053373266,-0.016807446,0.0011780376,-0.013506609,0.03779051,-0.007103217,0.024680471,-0.025007056,0.009325159,-0.018615326,-0.0028853172,-0.010334073,-0.0006338513,0.027783025,0.025356967,0.035994295,-0.00062182307,-0.032985054,-0.023875672,0.014171442,-0.011523774,-0.009290168,-0.012748466,0.0075989254,-0.0004096888,0.008905265,-0.018183768,-0.00010952979,-0.05150707,-0.003878193,-0.019851683,0.01669081,-0.01956009,-0.0047004865,0.021671226,-0.024703799,-0.018848602,0.0018632822,-0.002758474,0.008217104,-0.052393515,-0.02967255,-0.008712812,-0.021251332,0.03160873,-0.02745644,-0.053653196,0.05300003,-0.01681911,-0.025356967,-0.0006553563,0.015711056,0.039726693,-0.012958413,-0.021239668,-0.009966665,0.045325287,0.039073523,0.023642398,0.020353224,-0.01918685,-0.00901607,-0.056545805,-0.033964805,0.014579673,-0.026266739,0.008094635,0.0154427895,-0.011039728,0.019910002,-0.019910002,-0.031095527,0.019758373,0.014031477,-0.0020003312,0.021671226,0.00427476,-0.018650318,0.0004326518,-0.004817124,0.008100467,0.047191486,-0.0051028854,0.05593929,-0.047751345,-0.017822193,0.00083614426,-0.04271261,0.022569334,-0.009039397,-0.0028080451,-0.027713042,0.026733289,0.015209515,0.012083633,-0.024797108,-0.042922556,0.047494743,-0.013168361,0.015244506,-0.019081876,0.013086715,0.015676064,-0.010678153,0.026476687,-0.02570688,0.014031477,0.011692897,0.04455548,-0.02449385,0.004420557,-0.004630504,0.017087378,-0.055332776,-0.012246925,-0.015372807,0.018988566,0.0036420024,-0.01276013,0.00036175814,0.02717651,-0.0015250338,0.038233735,-0.005032903,-0.01775221,-0.04436886,0.012806784,-0.0004997183,-0.010532356,-0.024680471,-0.0026462106,0.039610054,-0.010433214,0.020598162,0.006601676,0.028949399,0.041919477,-0.007400642,-0.02552026,-0.022685971,-0.022464361,-0.040823083,-0.013798202,0.031095527,0.026150102,-0.017682228,0.017857183,-0.034757942,0.022044465,-0.015174524,0.021262996,0.010876436,-0.044438843,-0.00046764303,-0.010899764,-0.0136699015,0.009389309,0.029206,0.016632492,0.01862699,-0.0249604,0.014521355,0.011797871,-0.00024020011,0.022872591,0.008036315,-0.012270253,0.006887438,0.028506177,0.027293148,-0.0017568506,-0.010223267,0.03510785,0.0031783688,0.007908015,0.0047121504,-0.0030384038,-0.0019084793,-0.026196757,-0.012363562,-0.017588917,0.0086894855,0.01051486,0.00455469,-0.0029655055,0.033008378,0.008969415,0.008718644,0.015081214,0.016212596,-0.056359183,0.013693229,-0.005718148,-0.04315583,-0.0449987,0.031562075,-0.0071148803,-0.014124787,0.039796676,-0.007184863,-0.011267171,-0.006899101,0.009074388,0.0093543185,-0.010374895,0.025193674,-0.02168289,-0.029789189,-0.03097889,0.011407136,-0.0073015,0.007272341,0.0146729825,0.0122352615,-0.05519281,-0.019070212,-0.018965239,-0.02542695,0.040799756,-0.011541269,0.031585403,0.004111468,0.031258818,0.031748697,-0.0037994627,0.026593324,0.011156366,0.025753535,-0.03307836,-0.018323733,-0.0004457735,-0.017705554,0.009885019,-0.015792701,0.0008215646,-0.017110704,-0.018452033,-0.0029625895,0.01051486,-0.016247587,0.0063625695,0.0060826396,-0.010736471,0.008380396,-0.00438265,0.024003973,-0.020644818,0.039563403,-0.028342884,0.0035836836,0.022825936,0.021391297,0.02249935,0.011681234,0.05057397,-0.014299743,-0.033521585,0.00961092,0.000018110688,0.0011138871,-0.013763212,-0.019338477,-0.00006961794,-0.0049162656,0.0000076998895,0.0046246722,-0.018615326,-0.0049541728,0.0343847,-0.0010366148,0.028972726,-0.020119948,-0.031772025,0.036647465,0.016387552,0.008992743,0.030162428,-0.0007238808,0.022849264,-0.0056335856,0.022044465,0.0018574503,0.0014062094,-0.0131217055,-0.026196757,0.016900757,-0.021006392,0.008852777,-0.017425625,-0.028039627,-0.01070148,-0.000021345553,-0.02957924,-0.02605679,-0.043948967,-0.02617343,-0.027503096,0.0011926172,0.010030815,-0.01188535,-0.019338477,0.033498257,-0.008053811,0.008660326,0.038257062,0.0056539974,-0.018825274,-0.010374895,0.05687239,-0.010281585,0.012725139,0.016795784,0.06340408,0.032868415,-0.022032801,0.014836275,0.05537943,0.014929585,-0.036624137,0.023082538,-0.0027745117,-0.008508697,0.041569564,-0.009400973,0.0010038104,0.004773385,0.03310169,0.0018064214,0.005079558,0.00873614,0.038980212,-0.034058116,0.028786106,0.036297552,-0.018895255,-0.0097975405,-0.00642672,0.026919909,-0.025496932,-0.0014368268,0.018230423,0.021671226,-0.0035341128,-0.0044322205,0.010497364,-0.018113786,-0.007808873,-0.007867192,0.012911758,-0.0009075847,0.013693229,-0.0058726924,0.00023473274,-0.037837166,-0.014859603,0.0037615555,0.022522679,-0.009307663,-0.018195432,0.033824842,-0.004330163,-0.023234166,-0.034711286,-0.00018771329,-0.042316042,-0.04058981,-0.010380727,-0.02810961,0.018522017,-0.011424632,-0.0123402355,-0.0053886473,0.01635256,0.045745183,0.009220186,-0.0060943034,0.016434208,0.012981741,0.025403623,0.032308556,-0.018055467,-0.0012181316,-0.007808873,-0.0065316935,-0.0069340924,-0.051740345,0.008776963,0.013331653,-0.017273996,0.02533364,-0.030069118,0.041592892,0.0065316935,0.009715894,0.01631757,-0.013868185,0.008858609,-0.022989228,-0.039073523,-0.02486709,-0.010299081,0.034897905,-0.022720963,-0.0035778517,0.02302422,-0.00094913674,-0.0035282809,-0.04014659,-0.0063567376,-0.037837166,-0.04861446,0.03816375,-0.0072373496,-0.008479537,-0.009004406,-0.020259913,-0.018988566,-0.011063056,0.0010839987,-0.0046859067,0.004420557,0.022814272,-0.016119286,-0.0036040952,0.01176288,-0.05010742,-0.029415948,-0.009226017,-0.0042485166,0.017927166,0.023035884,0.004776301,0.008322078,-0.01478962,-0.022534342,-0.031911988,-0.037300635,0.012433545,-0.022522679,-0.02857616,-0.026919909,-0.038490336,-0.03244852,-0.013588255,0.04621173,0.024190594,0.033404946,-0.023374131,0.021694554,-0.00829875,-0.0040094103,-0.0049279295,-0.021636235,-0.06872275,0.015699392,0.028156264,-0.027153183,-0.002052818,0.0037207326,0.019700054,-0.02598681,0.028412867,0.020481525,-0.022336058,0.0154427895,0.021671226,0.005213691,-0.003910268,-0.021332977,0.023467442,-0.023677388,0.00066045916,-0.016025977,-0.0080304835,0.02162457,0.017915502,0.0013967326,0.013098379,0.008053811,-0.024540506,-0.025566915,0.030932235,0.00031382745,-0.022207757,0.017273996,-0.02108804,0.018801946,-0.0008135458,0.030022463,-0.027246494,0.012176943,-0.032985054,-0.0065725166,-0.0068349508,0.0011306537,-0.029415948,0.031748697,-0.0012910301,-0.0055840146,0.019618409,0.00053325156,-0.016247587,-0.017157359,0.010275753,-0.0066191717,-0.018078795,0.006852446,-0.015384471,-0.008421219,-0.003117134,0.015046222,-0.0030879749,-0.0071557034,0.0067941276,0.01478962,-0.021064712,0.028226247,-0.0020047051,0.014043141,-0.05519281,-0.0068466146,0.025310311,-0.010870604,0.024540506,-0.025940154,0.024820436,-0.05304668,0.0008820702,0.044065602,0.033708204,-0.012106961,-0.018020475,-0.022639316,-0.012375226,-0.028179592,-0.00051976537,0.005251598,-0.012060305,-0.0003918287,0.000489877,-0.038397025,0.0036157588,0.021297986,-0.023560751,-0.023630735,0.0023254578,-0.0037382282,0.007803041,-0.0016883261,0.036880743,-0.01875529,0.007797209,0.008397892,-0.0017597665,-0.01681911,-0.02224275,0.015174524,0.008631166,-0.024633816,-0.0320053,0.0076047573,0.018510353,0.023502434,-0.005977666,0.0077213948,0.009698398,0.02617343,-0.014917921,0.026453359,-0.009144371,0.0014900425,-0.008753636,0.018883593,-0.0011124291,0.006205109,0.0038257062,0.030372376,-0.017903838,0.0062226043,-0.03347493,-0.029742533,0.032238573,-0.00015290432,-0.013716556,0.0016956159,0.023980645,-0.01428808,-0.011844526,-0.007709731,-0.022802608,-0.01478962,0.008718644,0.019944992,0.0049104337,-0.04551191,-0.0067124814,-0.024167266,0.033498257,0.019665062,0.026150102,-0.04726147,-0.0051553724,-0.019151859,-0.0021023888,-0.0055956785,0.016935749,-0.011086384,-0.01042155,-0.03265847,0.010118293,-0.015349479,0.01326167,0.011564597,-0.008841114,-0.020294905,0.024657143,-0.0010905595,-0.003032572,-0.0042135254,-0.005050399,-0.017763874,-0.0054003107,-0.01747228,-0.036577486,-0.040729776,0.013110042,-0.036740776,0.02321084,-0.045325287,-0.007318996,0.0060884715,0.010345736,0.0026039295,-0.00776805,-0.0021155106,0.023572415]},{"id":"interface-GatewayReadyDispatchData","type":"interface","source":"main","text":"Interface: GatewayReadyDispatchData\nDescription: READY — v, user, guilds, session_id, shard?, application\nProperties: application: { id: Snowflake; flags: number; }, guilds: (APIGuild & { unavailable?: boolean; })[], session_id: string, shard: [number, number], user: APIUserPartial, v: number","meta":{"url":"/docs/typedefs/GatewayReadyDispatchData"},"embedding":[0.015508804,0.025988761,0.03291142,0.014331567,0.047242988,-0.007549665,-0.03708293,0.01076787,0.020755181,-0.00546391,0.02270018,0.0032278015,-0.0073577245,-0.008650124,0.03178537,-0.011970698,-0.040435493,0.046884697,-0.0015787117,0.054255217,0.012904809,-0.0010924621,-0.0044434257,0.018323932,-0.023839027,0.008298233,0.007037823,0.0352403,0.007914352,-0.031043198,0.04368569,-0.036750235,0.065362185,0.026167907,0.033116158,-0.00053263525,-0.018874163,0.015304066,-0.029174976,-0.03941181,-0.052975614,-0.026065538,0.005863786,0.030147476,-0.030915238,-0.0034709265,-0.015419231,-0.043378584,-0.0177865,0.033320893,-0.012898411,-0.007818382,-0.019641925,0.10625833,0.012162638,-0.018771794,0.0053903325,0.003342966,-0.0018458291,-0.0017514583,-0.00575502,0.026743729,-0.0077096154,0.016903572,0.022981692,-0.007869566,-0.053385086,0.04788279,0.044786148,0.017991235,-0.005124815,0.026116721,-0.028995832,0.013243903,0.025643269,0.049648643,-0.022201134,-0.033474445,0.004251485,-0.04023076,-0.00009022209,0.011554826,-0.046859108,-0.08829269,0.014792224,-0.017338637,-0.048420224,-0.017095512,-0.0007709615,0.032348394,-0.0018602246,0.016762815,-0.05758219,0.0044402266,-0.028253661,-0.05056996,0.06935455,-0.013051963,-0.039053522,0.029738002,0.050288446,-0.04399279,-0.061369818,-0.042406082,0.0646456,-0.0026023951,-0.028125701,0.018733406,-0.05266851,-0.017018735,-0.06827968,0.019795477,0.0037172502,-0.011497244,-0.026897281,0.0049808593,0.0053807357,-0.04580983,0.0065003894,-0.0016378934,-0.012712868,0.015432027,-0.0034421354,-0.021868436,-0.05548364,0.007946342,0.0148945935,-0.04322503,-0.057428636,0.019539556,0.020064194,-0.00811269,0.057633374,-0.0119259115,-0.029482082,-0.017709723,-0.039462995,-0.02922616,-0.06909863,-0.031247934,-0.000092621354,-0.007875964,0.060294952,0.06280298,-0.033244118,0.0014499516,-0.038976744,0.04419753,0.010441571,0.0022329094,-0.04532358,0.05353864,-0.02001301,-0.02774182,0.013832522,-0.017581763,0.019833865,0.006254066,-0.0025752035,-0.039718915,-0.008906045,-0.08107572,-0.02473475,-0.00539993,-0.03145267,-0.027434714,0.02395419,-0.015687948,-0.06766547,-0.020384096,0.020153766,-0.022738567,-0.026538992,-0.004942471,0.00902121,0.023647087,0.015201698,0.037006155,-0.029661225,-0.05476706,0.024888301,-0.006679534,-0.009833759,-0.07462652,-0.019091696,0.011759562,-0.0052911635,0.016366137,0.013045565,-0.017415414,-0.049341537,0.037927467,-0.00050744304,0.008547756,0.06556692,-0.06188166,0.011887523,-0.009756982,0.029507672,-0.017888866,0.011906717,-0.036903787,0.032246027,-0.00135798,0.01399887,-0.014523508,0.0071401917,-0.011906717,0.014062851,0.006186886,0.036647864,0.00040267545,-0.019757088,0.03178537,-0.05993666,0.033883918,-0.010563133,0.012700072,-0.012265006,0.026948465,-0.031990107,0.010787063,0.015534395,-0.014267587,0.0076776254,0.023429554,-0.010044893,-0.034958787,-0.021318207,0.0019705906,-0.0013363867,0.022495443,-0.016378934,-0.05353864,-0.04399279,0.012949594,0.027102018,0.010780665,0.012047473,0.019897847,-0.013819725,-0.020819161,-0.014395547,0.02043528,0.052003115,0.012130648,0.007971934,-0.021638107,-0.022098765,0.032143656,0.01994903,0.015943868,0.023339981,-0.030301027,-0.00252242,-0.045016475,-0.0059885476,-0.003630877,0.028330438,0.0047185407,0.011145352,-0.01914288,0.008797279,0.045886606,-0.012149842,-0.030864054,0.044888515,0.019897847,-0.020217746,0.009225947,-0.012309792,0.016762815,0.07580376,-0.023775047,-0.024747545,-0.011254119,0.019488372,0.009161966,0.0065707676,0.026142314,-0.03181096,-0.016609263,0.013397456,0.08153638,-0.009590633,0.046424042,0.023045672,-0.017249065,0.03790188,0.02534896,-0.013179923,0.017223474,0.047422133,-0.029200569,0.044862922,0.032681093,0.007556063,0.003918788,0.009289927,-0.02861195,0.053589825,-0.021906825,-0.01774811,-0.0040883357,0.03398629,-0.0007033824,0.049802195,-0.013691765,0.017671334,-0.02172768,-0.007843974,-0.0077160136,-0.029072607,-0.010236834,-0.044120755,-0.03152945,0.033627998,0.041843057,0.00863093,0.0080807,-0.026666952,0.002570405,0.020665608,-0.038336944,-0.012898411,-0.011138955,0.019411596,-0.06316126,-0.0077735954,0.025003467,-0.018285545,-0.038004246,0.021983601,-0.0017706524,0.01774811,0.0022680985,-0.04035872,0.0077288095,0.0010284819,0.008394204,0.019897847,-0.067000076,-0.03989806,-0.0008165474,0.018311135,0.0028135297,-0.03559859,-0.006442807,-0.011055781,0.030045107,-0.03452372,-0.015406434,-0.02143337,-0.0047057443,-0.01719788,-0.04212457,0.040102795,-0.018375117,-0.03595688,0.050262854,-0.016494099,-0.023467941,0.0009693002,0.015931072,0.0030022713,0.007312938,-0.017568966,-0.00859894,0.0010836648,-0.03820898,0.009712196,0.03127353,-0.04122885,-0.03106879,-0.024005376,-0.003045458,-0.042380493,-0.0058893785,0.03828576,0.0242485,0.04936713,0.046347264,-0.0065355785,-0.00539993,0.018861366,0.009872147,-0.059117716,0.04135681,-0.016417323,0.0038068225,0.041049704,-0.0060429308,-0.01797844,-0.0143443635,-0.0043954407,-0.029430898,0.012015483,0.006097314,0.025029058,-0.041459177,0.020320116,-0.00018854169,-0.0009205153,-0.01897653,-0.015380843,0.0132567,0.039360628,-0.0050896257,0.008765289,-0.051491275,0.024350869,-0.014574692,0.04174069,0.008317428,0.033013787,-0.046347264,0.02062722,-0.026180703,-0.031836554,0.019296432,0.026820505,0.02541294,-0.03145267,0.013282292,-0.001473944,-0.0025256188,0.03907911,-0.03477964,0.0073833163,-0.03424221,-0.05110739,0.011132557,0.09847834,0.0053583425,0.051337723,-0.005425522,0.010102475,-0.010268824,-0.001209226,-0.0025032258,-0.001144446,-0.04852259,-0.040819373,0.024606789,-0.06331482,0.015432027,-0.00662835,-0.06403139,0.050442,-0.041100886,-0.024504421,-0.004283475,-0.01338466,0.01742821,-0.048548184,-0.034933195,0.0009820962,0.04506766,0.0021849242,-0.007588053,-0.006679534,-0.0067435144,-0.05241259,0.059629556,0.0158415,0.016954755,0.001541923,0.008656522,-0.008023119,0.010192048,-0.019091696,0.007939944,0.027946556,-0.0012820035,-0.007255356,0.004280276,0.011561224,0.033679184,0.05794048,0.032681093,-0.018822977,0.010819053,-0.016737223,-0.017696926,0.070429415,0.07355165,0.009168364,0.022303501,-0.033423264,0.0020089785,-0.03449813,-0.0020761578,0.06807494,-0.015112126,-0.0014539503,-0.007933546,-0.0076776254,-0.03856727,-0.0077480036,0.026538992,0.005863786,-0.038644046,0.0059501594,-0.008074302,0.022546627,-0.018080808,-0.053333905,-0.023595901,-0.030710502,-0.06710245,-0.011810747,0.023276001,-0.0048497,-0.023071265,-0.055381272,0.030403396,-0.013039167,0.04470937,-0.031017607,0.013832522,-0.038874377,0.007255356,0.0026951663,-0.013218312,0.013691765,0.008573349,0.0035764938,-0.058145214,-0.008746095,0.00049264764,0.015726335,-0.022917712,-0.0046449634,0.04532358,-0.0021097474,0.03229721,-0.016378934,-0.02505465,0.03204129,-0.02884228,-0.007939944,0.014651468,0.027767412,-0.009718594,-0.006378827,0.011324497,-0.0069610467,-0.0018634236,0.01070389,-0.001661886,0.017082715,0.0023992578,-0.009501061,-0.00091411726,-0.0032853838,0.0061101103,0.00018564258,-0.025451329,-0.027025241,-0.00565905,0.010473561,-0.023301592,0.022418667,-0.024158929,-0.012847226,0.03744122,-0.0032629909,0.0031350304,-0.029405305,-0.019616332,-0.016366137,0.016724426,0.008151079,-0.01012167,0.0041555148,0.011490846,-0.010755073,0.027946556,0.010108873,0.032834645,-0.029200569,-0.044043977,-0.03145267,0.07309099,-0.050032526,0.011305303,0.027767412,-0.0097633805,-0.007933546,0.020384096,-0.011900319,-0.018029623,0.000918116,0.027972149,-0.005771015,-0.01888696,-0.0132567,0.011631602,-0.038132206,0.012111454,0.01338466,-0.022265114,-0.022188338,-0.039002337,0.03964214,0.03877201,-0.011638001,0.02363429,-0.019987417,0.0049136803,-0.003314175,0.01273846,-0.025169816,-0.03365359,-0.034702867,-0.0049200784,-0.030608132,-0.0065035885,-0.014689856,-0.013947686,-0.02405656,0.008842065,-0.02897024,0.027409123,0.0022377078,0.03472846,-0.021574127,-0.019680314,-0.039795693,-0.042713188,-0.009065996,-0.018541465,-0.029507672,-0.026065538,-0.043404177,0.009321917,0.033013787,0.010812656,0.03928385,0.02615511,-0.008291835,0.015547191,0.034882013,0.006036533,0.09161966,-0.0043218634,-0.03437017,0.011516438,-0.003045458,0.011484448,-0.043378584,-0.013755745,0.018400708,-0.044658188,0.029610042,-0.012469743,-0.022687383,0.020384096,-0.008477378,0.016724426,-0.03941181,-0.018835774,-0.012623295,0.0008325425,0.015444823,0.025105834,0.032885827,0.039923653,0.02738353,0.016596466,0.017927255,0.027562674,0.060602054,0.0028823086,0.0056334576,-0.008515766,-0.008682115,-0.020857548,-0.016737223,0.022303501,0.013307884,0.036059245,-0.027332347,0.019462781,0.021958008,-0.012392967,0.0766227,-0.0044242316,0.04445345,0.0017818488,0.021126267,0.047370948,0.020051397,-0.035675365,0.025144223,0.010134465,0.030684909,0.03889997,-0.025758432,-0.016417323,-0.015521599,0.00788876,0.029072607,-0.052617326,-0.0014707451,0.011286109,0.013525416,0.010755073,0.017773703,0.009577838,0.0029654829,0.015982257,-0.05747982,-0.01742821,-0.03649431,0.025835209,-0.030019514,0.0007237761,0.021331003,-0.032553133,0.006916261,0.008650124,-0.01021764,0.01994903,0.02861195,-0.00092851283,0.040717006,0.005806204,-0.013026371,-0.0068778726,0.034933195,0.026897281,0.028202478,0.0024872308,-0.0038324147,0.024875507,0.010691093,0.026743729,0.020588832,-0.004056345,0.033500038,-0.028765503,-0.0053487457,0.029993923,-0.019744294,-0.013115943,-0.015355251,0.031734183,-0.026359847,0.021023897,-0.03608484,0.009002016,-0.02136939,-0.00811269,0.0011436463,-0.013794133,-0.005447915,0.0005902175,-0.05033963,0.019526761,0.018426301,-0.003688459,0.017082715,0.06341718,0.014587488,0.0074217045,-0.03756918,-0.02227791,0.004520202,0.0013259898,-0.009481867,0.008035914,-0.018080808,0.007927148,0.03808102,-0.04261082,-0.021958008,0.00026391837,-0.028535174,0.0130199725,-0.023250408,-0.03178537,-0.0031446274,-0.01319272,0.022303501,0.0037876284,0.023365574,0.001671483,-0.0071785795,-0.014114034,-0.028995832,-0.0033685581,-0.04102411,-0.028714318,-0.011209333,-0.0054959003,0.0023400763,-0.12345622,0.013141535,0.027357938,-0.020806365,-0.012540122,0.021817252,0.023979783,0.01888696,-0.019731497,-0.06566929,0.02399258,-0.0300707,-0.013576601,-0.0011100566,0.047191802,-0.033474445,0.03314175,0.020384096,0.022175541,-0.010723083,-0.01442114,0.0058925776,-0.027562674,0.0323228,-0.020947121,0.004888088,-0.011119761,-0.0041331216,0.042559635,-0.042687595,0.02486271,-0.021881232,-0.018631037,0.011497244,0.033090565,0.016903572,-0.0049360734,0.02873991,0.041638322,-0.0027671442,-0.020895937,-0.004174709,0.018541465,0.0061421003,0.020844752,-0.012962391,-0.0050256457,0.014907389,-0.012073066,0.019744294,-0.020895937,-0.0049776603,0.0010308812,-0.006423613,-0.003950778,0.025630472,-0.018989326,0.038234573,-0.029738002,-0.041177664,0.0118939215,0.033320893,0.011062179,-0.049802195,0.039002337,-0.0300707,0.0043410575,0.004894486,0.03544504,0.02873991,0.0064524044,0.0404099,0.04099852,-0.00721057,-0.010819053,0.053999297,-0.019091696,-0.01596946,0.011260517,0.0002987076,-0.00050584355,0.016250974,0.04248286,-0.015892684,0.014523508,0.012066668,-0.0023096856,0.018362321,0.030582542,-0.016813999,0.009072394,0.005895776,0.004878491,0.038362533,0.010851044,0.017568966,-0.0071337936,0.0063308417,-0.025771229,-0.0078119836,0.043839242,0.011855533,0.005758219,-0.03437017,-0.050518773,-0.007600849,0.016046237,0.03802984,-0.025464123,0.011772359,-0.0013267896,0.0018634236,-0.02007699,0.0091171805,-0.025400143,-0.028637543,0.029302936,0.0029990724,0.011561224,-0.030301027,0.0012652087,0.03562418,0.012386569,0.025489716,0.008093497,0.009852952,0.030556949,-0.035137933,-0.013883706,0.016698835,-0.01503535,-0.004548993,0.0017258662,0.009884942,0.009168364,-0.009456275,-0.0018794187,-0.0068074944,-0.053589825,-0.019258043,-0.0005026445,0.00035309079,-0.008886851,-0.035803325,0.046731148,0.007229764,-0.037799507,-0.015623967,-0.0062252744,0.009161966,-0.014152423,-0.022457054,-0.009609828,0.021778863,0.003349364,0.034063064,-0.047217395,0.024082152,0.0008597341,0.042713188,0.018311135,0.03795306,-0.0031446274,-0.0035700959,-0.0323228,-0.03204129,-0.04468378,0.006666738,-0.03352563,0.0012420159,0.011823543,-0.0061996826,-0.018938143,-0.023429554,-0.007025027,0.045502726,0.00539993,-0.024683565,0.005115218,0.0015827104,0.021510147,0.01988505,0.008477378,0.017108308,0.06413376,0.0190789,0.014011666,-0.029993923,-0.033090565,-0.0065579717,-0.0041843057,0.043045886,0.011695582,0.014600284,-0.013295088,-0.046014566,0.029482082,0.02509304,0.024043763,-0.023173632,0.012284201,0.013423048,-0.0034389363,-0.031299118,0.012233016,0.01765854,-0.00433146,0.0054959003,0.0026215892,0.0047249384,0.019961827,0.012680878,0.011292507,0.008938036,0.017210677,-0.004254684,-0.041715097,-0.021753272,-0.007946342,-0.030966422,0.0007529671,-0.0028423208,-0.020883141,0.01079986,0.000035613986,0.033576816,-0.042073388,-0.022111561,-0.039488588,0.0144083435,0.0019449984,-0.0076904213,-0.04035872,-0.014805021,0.018989326,-0.0047473316,0.04296911,0.0265134,0.018131992,0.048497,0.0242485,-0.0065387776,-0.008291835,-0.026052741,0.012245812,-0.0005218386,0.027588267,0.028944647,0.0049840584,0.02848399,-0.0107294815,0.0071273954,0.011945105,0.012495335,-0.027332347,0.009405091,-0.011254119,0.026257478,-0.02001301,0.007901556,0.021394983,0.033474445,-0.0010124869,-0.017530577,0.035009973,0.013858113,0.022137154,0.008867657,0.00054463156,0.008483776,0.03828576,0.026180703,0.015815908,0.016826795,-0.0055982685,0.016826795,-0.057377454,0.006407618,0.00046185715,0.016686039,-0.0056686467,-0.013730153,-0.022073172,-0.003960375,-0.0106974915,-0.008285438,-0.036033656,-0.023032876,0.004193903,-0.020524852,0.034830827,0.03649431,-0.006967445,-0.05773574,-0.009801769,0.0061996826,-0.03623839,-0.0015915077,0.03449813,-0.029021423,-0.02725557,0.02253383,0.0040851366,-0.009776176,0.0023000885,0.001959394,0.021215837,-0.007805586,0.012751256,0.0014331568,0.009865749,-0.02848399,0.022943303,0.008170273,-0.00892524,0.015982257,-0.015368046,-0.009360305,0.0068970667,-0.00953945,-0.0026359847,0.012316191,-0.00065339793,0.018938143,-0.009686604,0.027946556,0.008426194,0.013947686,0.016570875,-0.048087526,0.03790188,-0.0407426,0.0003882799,0.025681656,-0.012111454,0.00950746,-0.050646733,0.022034785,0.010076883,-0.013922093,-0.05182397,-0.007818382,0.011695582,-0.000995692,0.015867092,0.011746767,0.015982257,-0.030045107,0.009929729,-0.023148041,0.06418495,-0.005118417,0.023250408,0.004315465,-0.00020363701,-0.009552245,-0.010236834,0.0065515735,-0.006327643,0.0033013788,-0.007588053,0.027153201,-0.0016954755,-0.0046737543,-0.0041139275,-0.011113362,-0.0029206967,0.024274092,0.007191376,-0.024913894,0.025400143,0.006455603,-0.007895158,-0.0053071585,-0.004225893,-0.05277088,0.0404099,-0.03657109,0.025643269,0.038592864,-0.017876072,-0.0028823086,0.013576601,0.008023119,-0.026590176,-0.00012696073,-0.0038867977,-0.011049382,0.0023240813,-0.0015771122,0.019603537,-0.016775612,-0.022674587,-0.0046897493,0.000911718,0.00607812,0.01590548,-0.027716227,-0.014126831,-0.008349418,-0.01878459,0.0171339,-0.0052431785,-0.041305624,0.0015931072,-0.037594773,0.027178794,0.054306403,0.001060472,-0.012789644,-0.041049704,-0.01765854,-0.011497244,-0.00027531484,-0.0092771305,0.029251752,-0.0032517943,-0.019360412,-0.010959811,0.03045458,0.027204385,-0.032988198,0.0054095266,-0.020934325,-0.0008237452,0.031017607,0.036801416,-0.02861195,0.006749912,0.0075432668,0.01988505,-0.001115655,-0.006615554,0.03854168,-0.04703825,0.048087526,0.007901556,0.0035892897,-0.01619979,-0.010172853,0.011484448,-0.008157477,-0.0029654829,0.010351998,0.0068906685,0.003918788,-0.03721089,-0.021766068,-0.021817252,-0.028663134,-0.015355251,0.019846661,0.009622624,0.0062476676,-0.018810183,0.0055310894,-0.022968896,0.003650071,0.0378251,-0.022367481,-0.019053306,-0.030761685,0.027895372,-0.019322023,0.010064087,-0.042457268,0.02486271,-0.024952283,-0.001826635,-0.0056814426,0.028688727,0.026846096,-0.01338466,-0.022457054,-0.009283529,-0.00963542,0.014459528,0.0041139275,-0.0018714211,-0.009820962,-0.0193988,-0.0065835635,0.028586358,-0.023621494,-0.000031140367,0.018643834,-0.004142719,-0.024235703,-0.0019577944,-0.00065939606,-0.026167907,0.0031030402,-0.0056718457,0.00007442698,-0.0050832275,0.0031094383,0.016634855,-0.014664264,-0.0041235248,0.004005161,-0.031119974,-0.033116158,-0.025988761,-0.014139626,0.020089786,-0.036596682,0.032143656,-0.018413505,-0.012188231,-0.0106655015,-0.014869001,-0.016647652,-0.045835424,-0.006132503,0.0067563104,-0.0056974376,-0.01785048,-0.0005970153,0.008445388,-0.003381354,0.020614425,-0.01522729,0.027716227,0.012469743,0.012712868,-0.008554154,-0.036903787,0.03449813,0.011638001,-0.039949242,-0.0047089434,-0.0066027576,0.0039123897,0.022508238,0.003051856,0.0216637,-0.009321917,-0.007287346,-0.038848784,0.005774214,0.010300814,0.021331003,-0.020345706,-0.0014555498,-0.039590955,-0.0099873105,-0.0032693888,-0.004225893,-0.01442114,-0.0050224466,-0.046296082,0.022879323,-0.016929165,-0.006343638,-0.016366137,-0.012700072,-0.028944647,-0.0106974915,0.024530012,-0.03895115,-0.021574127,0.023711067,0.022521034,-0.016954755,0.04578424,0.019219656,-0.007293744,0.028586358,0.016762815,0.011087771,0.013781337,0.020448076,0.022585014,-0.04898325,-0.014114034,0.010492754,0.0143443635,-0.0006717922,0.0069290567,0.0053007603,0.03531708,0.016775612,0.0010620715,-0.04726858,-0.011612408,-0.0098593505,-0.0056430544,0.015342454,-0.0059341644,-0.012488937,-0.020000214,-0.010288018,-0.025796821,-0.005748622,-0.023314388,0.007882362,0.004836904,0.0062220753,-0.027306754,0.023058468,-0.012584908,0.029302936,0.024350869,-0.014139626,-0.01028162,0.015252883,-0.016186994,-0.023711067,0.016647652,-0.000009390846,0.024478829,0.01755617,0.016903572,-0.005383935,0.0171339,-0.0040659425,-0.007971934,0.027357938,-0.0056686467,0.0052239844,-0.010819053,0.008432591,-0.030301027,0.006749912,-0.021203041,-0.001994583,-0.0019178068,-0.022879323,0.013576601,-0.018771794,-0.054971796,0.023263205,0.03756918,0.0052047903,-0.0027335545,0.02272577,-0.019373208,-0.010793461,0.0065227826,0.024721954,0.00252242,0.008938036,-0.007057017,-0.029379712,0.0090532,0.016545283,-0.010755073,-0.0053903325,0.009846554,0.0017866474,-0.0043890425,-0.033192933,0.023966987,0.009014811,0.0016043038,0.0024712356,-0.010742278,-0.011817145,-0.02117745,0.026743729,0.017377025,0.024069356,0.008963628,-0.013947686,0.030224252,0.0052879644,0.028995832,0.024299685,0.021945212,0.0011044584,0.010902228,0.0068138926,0.0119643,-0.005438318,0.030173067,0.024913894,0.01751778,0.013295088,0.024517218,-0.010819053,-0.006916261,0.0008325425,-0.016186994,-0.021625312,0.0076264413,-0.004788919,-0.044965293,0.025975965,0.02615511,-0.015662355,-0.019552352,-0.009456275,-0.014331567,-0.04813871,0.011286109,0.034063064,0.0006382026,-0.012572112,-0.0024136535,-0.022994488,0.015329659,0.035777733,0.019718701,-0.009238742,0.0038324147,-0.002010578,-0.017965643,-0.00090771925,0.01797844,-0.019296432,-0.0068586785,-0.035086747,0.008272641,-0.0006825889,0.012431355,0.046296082,-0.004824108,-0.014011666,-0.002624788,-0.0018970133,0.008099895,-0.010684695,-0.036903787,-0.020256136,-0.015368046,-0.040077206,-0.0046417643,-0.0074025104,-0.011254119,0.011804349,-0.00072177674,0.019117286,0.011190139,0.004344256,0.032604314,0.00078215805,0.0065707676,0.0033109759,0.024888301]},{"id":"interface-GatewayReceivePayload","type":"interface","source":"main","text":"Interface: GatewayReceivePayload\nProperties: d: T, op: GatewayOpcodes, s: number, t: GatewayDispatchEventName","meta":{"url":"/docs/typedefs/GatewayReceivePayload"},"embedding":[0.015024166,-0.007658541,0.0053975936,0.0012479456,-0.01110641,0.04227759,-0.031366456,0.006938455,0.03893346,-0.028046736,0.022993932,0.0058125583,0.012119412,0.013193439,0.052285563,-0.05570292,0.025678998,0.035247598,-0.020052563,0.048990253,-0.010044589,-0.008842411,0.03971457,0.04300988,-0.021297457,-0.022041952,0.0054464126,0.0024974167,0.00016238166,-0.015951734,0.048868205,-0.03969016,0.03637044,-0.02135848,0.03597989,0.031708192,-0.020516347,0.031219997,-0.041130334,-0.0036309417,-0.05033279,-0.021395097,-0.033148363,0.00014026038,-0.025141984,0.015976144,-0.040056307,-0.02231046,-0.029755415,0.0068591237,0.009873721,-0.016757254,0.013254464,0.06292819,0.012607606,0.0287058,-0.011136922,-0.0055867685,0.025923094,-0.012485558,-0.060243122,-0.0043266183,-0.005434208,-0.0029245864,0.009220761,0.024641585,-0.07132512,0.051846188,0.03414916,0.036199573,-0.0009550292,0.05736278,-0.001795638,-0.01173496,-0.015658818,0.013046981,-0.033294823,0.020772649,0.030194791,-0.04066655,-0.0010595332,0.0034936373,-0.047257166,-0.08152837,0.02951132,-0.074400745,-0.062488813,-0.0034539716,-0.021626988,0.00031923302,-0.026948301,0.014169827,-0.0034661763,0.01783128,-0.024385283,-0.05101626,0.01150917,-0.024080163,-0.04672015,0.01986949,0.060145482,-0.06829832,0.0072862934,-0.003080198,0.022017542,-0.009733365,-0.027509725,-0.011844804,-0.0028742414,-0.013315488,-0.07718345,0.005351825,0.033856243,0.019247044,0.012442841,0.034637354,0.0007166533,-0.009959155,0.030390067,-0.0049246554,-0.036858637,0.012418431,-0.029071944,-0.023311257,-0.05555646,-0.0136084035,0.011387122,-0.0051840087,-0.015671022,0.00418016,0.039592523,-0.058290347,0.022029748,0.027094759,0.0038872436,0.018624596,-0.032879855,0.009867619,-0.025581358,0.019662008,-0.0152194435,-0.028876666,0.05648403,0.022408098,-0.01903956,0.0119851595,-0.023628583,0.040495683,0.029071944,0.04296106,-0.025556948,0.036272805,0.001122083,-0.017770257,0.026753023,-0.013095801,-0.0064197495,0.0031793625,0.0022273846,0.006328213,0.009074303,-0.04596345,-0.021065565,0.02868139,-0.05785097,-0.013071391,0.008580007,-0.01629347,-0.040886234,-0.016915917,0.0032495405,-0.0526273,-0.07098339,0.021797856,-0.036175165,0.016085988,-0.033856243,0.0011831073,0.0021663602,-0.009031586,0.027412085,0.024421899,0.010911133,-0.053847782,0.005321313,-0.03568697,0.00496127,0.0647345,0.029169584,-0.027387675,0.006160396,0.021590374,0.02855934,0.008927845,0.006389237,-0.021285253,0.0048819385,-0.034588534,0.017294267,-0.026435697,0.009910336,-0.05799743,0.05672813,-0.005476925,0.0067736898,-0.018197427,0.020052563,-0.0051718038,-0.007206962,-0.018356089,0.03717596,-0.0334901,-0.01392573,-0.019430116,-0.054238338,0.018978536,-0.01994272,0.027558543,0.016085988,-0.012168232,-0.010642626,-0.013791476,0.019100584,-0.035857838,0.028754618,0.042546093,-0.028803438,-0.0007414444,-0.038103532,-0.05804625,-0.041105922,0.006358725,0.0006533407,-0.058192708,0.02176124,0.06956763,0.01596394,-0.04689102,0.022701014,0.0069323527,-0.018270655,-0.027924689,0.028876666,-0.029242812,-0.020943517,0.017684823,0.008525086,0.02865698,-0.0012143822,0.023677403,0.026508927,0.043961857,0.025239622,-0.023006136,0.0019497243,0.0025218264,-0.024885682,-0.014243056,0.015011962,0.030121561,0.06287937,-0.04933199,-0.023103774,0.04862411,-0.0030176484,-0.048819385,0.037981484,0.01999154,-0.028412882,0.006602822,-0.0037072222,-0.0011556464,0.03593107,0.013242259,-0.055898197,-0.036101937,0.014035573,-0.015671022,-0.0017224089,-0.0067736898,-0.06815186,-0.0047507365,-0.021309663,0.067321934,-0.03759093,0.018343884,-0.015609998,0.010721957,0.007829409,0.01352297,-0.005046704,0.029877465,0.036760997,-0.03236725,0.0380303,0.017574979,0.033709787,-0.0334901,0.037712976,-0.009831004,0.04383981,0.0041282894,-0.015951734,-0.032928675,-0.053652506,0.004024548,0.026582155,-0.008567803,-0.012790679,-0.03820117,-0.020552961,-0.021578168,-0.03817676,-0.008006379,-0.050039873,0.0068713287,0.069811724,0.042521685,0.009287888,-0.018148607,0.00065028947,0.022322664,0.022249436,-0.037005093,0.025874274,0.02105336,-0.025044344,-0.026582155,0.018978536,0.060584858,-0.014291875,0.015243853,-0.004857529,0.0021922956,-0.00936722,0.04061773,-0.05487299,0.020479733,0.021578168,0.056386393,0.014145417,-0.030658575,-0.03185465,-0.020223431,0.02775382,0.0005408273,-0.02311598,0.024727019,0.04227759,0.009251273,-0.005129087,0.021212023,0.0006262612,-0.027631773,-0.0072740884,-0.064099856,0.014084393,-0.055947017,-0.07078811,0.027900279,-0.041642938,0.01672064,0.00576679,0.03983662,-0.012235358,0.025727816,-0.043376025,-0.0064197495,-0.008097916,-0.03258694,0.068200685,0.053896602,-0.05794861,0.008470164,0.016659616,-0.024275439,0.036760997,-0.0056142295,-0.0036675564,-0.0013783849,0.025239622,0.054531254,-0.026655385,0.025190804,-0.005132138,-0.036956277,-0.050674524,0.027997918,-0.0075303903,0.006853021,0.026850663,-0.0038262194,-0.05736278,-0.015402516,-0.04845324,-0.026997121,0.022395894,0.016891507,0.02036989,0.013693837,0.03593107,0.007463264,0.0024196107,-0.014365104,-0.0077622826,-0.04459651,0.02951132,0.03593107,0.07225269,-0.029853055,0.026557745,0.017636003,0.03258694,0.013669428,0.031122359,-0.020943517,0.021016745,-0.0015835789,-0.040959466,0.027705,-0.01591512,0.046573695,-0.05731396,0.07498658,-0.0036553515,0.0049521164,-0.0027796538,0.009440449,0.0067248703,-0.065515615,-0.030121561,0.023360075,0.027290037,-0.009635726,0.02707035,-0.032294024,0.026167192,-0.016464338,-0.0186368,0.021138795,-0.01707458,-0.011997364,-0.0052145207,0.05101626,-0.0023631635,-0.030585345,0.023177003,-0.022810858,0.038054712,-0.03341687,-0.032269616,0.010923337,-0.054189518,0.06688256,-0.034002703,-0.023103774,-0.011606809,0.037151553,-0.008933947,0.0025111472,-0.0045798686,-0.014865503,0.016549772,0.011423737,-0.008287091,0.05306667,0.0071886545,-0.022249436,-0.023128184,0.07664644,-0.043376025,0.0048331195,0.02098013,0.014877708,0.009477063,0.011429839,0.031512912,-0.0012830344,0.0025782739,-0.026753023,-0.008152838,0.023982523,-0.003417357,0.0022624733,0.04293665,0.09905454,0.046256367,-0.017623799,-0.06141479,-0.011234561,-0.01387691,-0.008842411,0.027338857,-0.013437536,0.0065112854,0.015304877,-0.0006205402,-0.016842688,0.012705245,-0.0087386705,-0.013254464,-0.06629673,0.006834714,-0.046793383,0.063123465,0.030658575,-0.0065234904,-0.032123156,-0.024763634,-0.07069047,0.016403314,-0.03961693,-0.026923891,-0.032953087,-0.04703748,-0.02359197,-0.020650601,0.026972711,-0.014938733,-0.004268645,0.0052267257,0.0062793936,-0.0022548453,0.012839499,-0.007670746,-0.028949896,-0.0012319267,-0.06356284,0.012522172,-0.018111993,0.034490895,-0.036248393,-0.02938927,0.030438887,0.018002149,-0.002167886,0.007951457,-0.040275995,0.007859921,-0.0022380638,-0.013352102,0.006071911,0.005043653,0.012998162,-0.014340695,-0.012229256,0.030487707,0.00025305987,-0.006962865,0.04352248,-0.026460107,-0.006584515,0.0069323527,0.024568357,0.011319995,0.017611593,-0.010709753,-0.01916161,0.0054616686,-0.0011991261,-0.019576574,-0.013596199,0.017745847,-0.05804625,0.011075898,0.049673725,-0.012558787,-0.0135107655,-0.0025599666,-0.02498332,-0.030853853,0.028022328,-0.022200616,0.036931865,-0.003301411,-0.0011381019,-0.024141187,-0.020809263,0.016708435,0.001377622,-0.0033075134,-0.037615336,-0.008927845,0.03663895,-0.040227175,0.0026347213,0.017233243,0.0006525779,-0.004973475,0.012107207,-0.0069994796,0.016220242,0.02273763,0.01427967,0.0010564821,-0.021224229,-0.014999757,-0.01953996,-0.012241461,0.035857838,-0.00083069236,0.008122325,-0.0460855,-0.015744252,0.02858375,0.026728613,-0.00045539334,0.0018169965,0.024617175,-0.005934607,0.010648728,0.06112187,-0.01951555,-0.046598103,-0.013303283,-0.010453451,-0.020211225,0.027241217,-0.008970562,-0.015585589,-0.010734162,0.0120217735,-0.0214073,0.0031030823,-0.017330881,0.027241217,-0.023347871,-0.006254984,0.0058003534,-0.028779028,0.032220796,-0.04383981,-0.029023126,-0.02548372,-0.020723829,0.009214659,0.028461702,-0.022578966,-0.02356756,-0.029853055,-0.017867895,0.0038262194,0.02941368,0.022151796,0.06297701,0.014658021,0.013669428,0.013864705,-0.003270899,0.012040081,-0.026118372,-0.0068591237,0.0619518,-0.0060169892,0.046451647,-0.036321625,-0.037005093,0.02311598,-0.013754862,0.01634229,-0.015451335,0.009055996,0.018697824,0.007920945,0.030438887,-0.0077195656,0.010294788,0.0073717274,-0.027094759,0.02135848,0.019747442,0.043376025,0.06898179,0.0038170659,-0.021712422,-0.015048576,-0.0043144133,0.005425054,-0.016525362,0.020430913,-0.0067492803,0.01717222,-0.05155327,-0.0018993792,0.00014931867,-0.022005338,0.012802884,-0.02951132,0.026948301,-0.010154433,0.03898228,-0.008128428,0.02624042,-0.0024608022,0.024897886,0.008622724,0.0405445,-0.0087142605,-0.0065051834,-0.03912874,-0.0103741195,0.0068713287,0.0006655455,-0.016232446,0.0014005061,-0.016940327,0.024373079,-0.009666239,0.0044028983,0.003518047,0.018502546,0.002961201,-0.021309663,-0.016000554,-0.0021877186,-0.014096598,-0.028925486,0.0074144443,0.021175409,0.014121007,0.037249193,0.039275195,-0.024190005,0.014035573,-0.0019588778,0.013657223,0.004714122,0.030121561,-0.024336465,-0.0016095141,0.0069567626,0.026045142,-0.011429839,0.0136206085,-0.030731803,0.020247841,0.00074678403,-0.0067248703,0.0104656555,0.000729621,0.0067797923,-0.019625394,0.004546305,-0.010245969,0.0026850663,-0.019771852,-0.0045676637,0.013022571,-0.038005892,-0.013449741,-0.024214415,0.007463264,-0.019747442,0.015585589,0.024043547,0.02107777,0.027558543,0.000416109,-0.017489545,-0.002543185,-0.0060810647,-0.00006302659,0.014645816,0.012802884,0.00019298913,0.02465379,-0.04073978,-0.017867895,0.028827848,0.022273844,-0.003371589,-0.0061481916,-0.023433305,0.009788287,0.034905862,-0.027265627,-0.04537762,-0.032342844,-0.03646808,0.004875836,-0.023958113,-0.027631773,-0.021565964,-0.016952531,0.030634165,0.014243056,-0.008036891,0.040324815,0.007267986,-0.025044344,-0.008946152,0.024348669,-0.022566762,-0.013425332,0.012863908,0.022139592,0.017941125,-0.08977885,0.016037168,0.04772095,-0.012229256,-0.005754585,-0.010081204,0.00934281,0.021565964,-0.025630178,-0.027509725,0.022517942,-0.005876634,-0.007438854,-0.004024548,0.026191602,-0.033856243,0.05257848,0.027143579,-0.004570715,0.005821712,-0.0043266183,-0.014694635,0.013657223,0.030731803,0.007505981,0.015243853,0.0010213931,0.0004756076,0.039861027,-0.024055753,0.024849068,-0.010892825,-0.0037896049,-0.0018246246,0.03104913,-0.032440484,-0.0072008595,0.0226644,0.034100343,-0.00047675183,-0.0034814326,-0.014596997,-0.015060781,0.024214415,-0.014243056,0.0038811413,-0.008933947,0.0076219267,0.0011449672,0.011167435,-0.012522172,-0.037712976,0.00954419,-0.035320826,0.008061301,0.015048576,0.023213618,0.005797302,-0.0020732982,-0.07093457,0.0014500883,0.032025516,0.007689053,-0.018807668,0.016330084,-0.06805422,0.018819874,0.011661731,0.010081204,0.011338303,-0.00498568,0.025654588,0.038518496,0.018966332,-0.015671022,0.03646808,-0.0049246554,0.00032590755,0.009495371,0.03883582,-0.0163667,0.036346033,0.012924933,-0.0029917131,0.019454526,-0.007493776,-0.0041008284,0.029218402,-0.027436495,-0.017452931,-0.024214415,-0.041667346,-0.014609201,0.027119169,-0.016122602,-0.004164904,0.031512912,-0.031634964,-0.030731803,-0.009696751,0.023347871,0.008549495,-0.02067501,-0.004052009,-0.010410734,0.021175409,0.0034051521,0.016964737,0.020064767,0.008903435,-0.012876113,0.013803681,-0.031952288,0.0045951246,-0.0034936373,0.0026728613,0.03258694,-0.0066638463,-0.010062896,-0.028827848,-0.0043571303,-0.0010191047,-0.01175937,0.06356284,-0.01785569,0.024714814,-0.0030710446,-0.024763634,-0.019295862,0.011680038,-0.014950937,-0.02460497,-0.016012758,0.0050253454,0.004671405,0.019613188,-0.0120034665,-0.0006636385,-0.043595713,-0.014865503,0.021932108,0.0059834262,-0.014902118,0.024263235,0.04217995,0.012790679,0.0088485135,0.013742657,0.0009901181,0.0067675873,0.00909261,-0.04147207,-0.041252382,-0.007292396,-0.022066362,0.01818522,-0.01908838,0.028119966,0.013303283,0.047403622,-0.005882736,0.029877465,-0.009708955,-0.023408895,-0.033783015,-0.033807427,-0.03883582,0.0056325365,-0.0023509585,0.017745847,-0.0120644905,0.030487707,0.007206962,-0.03580902,-0.025654588,0.03358774,0.01783128,0.0002871953,0.0071154255,-0.0028772925,0.008122325,0.018417113,0.0135473795,0.029804235,0.054043062,0.0039726775,0.049502857,-0.013230054,-0.031195588,0.008403037,-0.04059332,0.07562123,0.008860718,0.029999513,-0.016220242,0.004817863,0.016647412,0.01750175,-0.035442874,-0.0035241495,0.025532538,-0.0015408619,-0.010984362,0.00021415691,0.040056307,0.006389237,0.018539162,0.004842273,-0.029901873,0.026020734,0.03966575,0.0087447725,-0.041887034,0.00909261,-0.037566517,0.002689643,-0.067126654,-0.0073290104,0.0006518151,0.024665995,-0.015329287,-0.009080406,0.023604173,0.04210672,0.011344405,0.026850663,-0.022054158,-0.022505738,-0.019747442,0.0035241495,0.028534932,-0.03353892,0.017037965,0.0017269858,0.03497909,-0.00997136,0.0010686868,0.0010290211,0.009605214,0.030707395,0.0013242258,0.029828645,0.0040703164,-0.013181235,0.021773446,-0.016635206,-0.0001315835,0.04606109,-0.006157345,0.023811655,0.0033410767,0.015231648,0.0061359867,-0.007091016,0.045450848,-0.023128184,0.013657223,0.00813453,0.011204049,0.012345202,0.010667036,0.013657223,0.008927845,0.00486058,0.026850663,-0.012430636,-0.011216254,0.007335113,-0.017623799,-0.013034776,0.026191602,-0.0018780207,0.00815894,0.0019100584,0.021639192,0.0074327514,0.043498073,0.016073782,-0.023811655,-0.0065662074,-0.032855447,0.020858083,-0.0065906174,-0.009062098,-0.03168378,-0.015878506,-0.022969522,-0.0051901108,-0.006401442,-0.002747616,-0.0022334869,0.00614514,-0.006541798,-0.04542644,0.014999757,0.00445782,-0.013889115,-0.0055440515,0.0045768176,-0.021248639,0.008396935,0.027387675,-0.017977739,-0.008067404,-0.0052145207,0.036931865,0.024287645,0.005879685,-0.032879855,-0.0048331195,-0.015988348,-0.026753023,0.017526159,0.02415339,0.011863111,0.051113896,-0.013706042,-0.04383981,0.00034554972,0.04073978,0.015317082,-0.013352102,-0.018880898,-0.011265073,-0.019393502,-0.004351028,0.0004489095,0.0026530286,0.010514475,-0.028022328,0.0483556,-0.040446863,-0.030780623,-0.014218646,0.008177247,0.026826253,-0.0064197495,0.022102976,-0.0038414754,-0.008213862,-0.055898197,0.012497763,0.008860718,-0.0030542628,0.014780069,-0.0042564403,0.017928919,-0.014157622,0.003908602,-0.014511563,0.050479244,-0.030829443,0.0068713287,0.046646923,0.0030542628,-0.008195555,0.013461946,0.0020946567,0.0028849207,0.0086959535,0.006328213,0.028242014,-0.026997121,-0.018441522,0.0022456918,-0.004997885,0.018905308,0.019454526,0.047525674,-0.022676606,0.014987552,0.0026072604,-0.0031671578,-0.0021877186,-0.006087167,-0.034612946,0.005647793,-0.0004492909,0.0065540024,0.008390832,0.014059983,0.019393502,-0.011789882,0.021443915,-0.02069942,-0.018087583,-0.014999757,-0.056191113,0.004039804,0.008049096,-0.002341805,0.0067492803,-0.009458756,-0.011869214,-0.01427967,-0.018002149,0.03412475,-0.02624042,-0.008280989,-0.033050723,0.011277278,-0.0043937447,-0.0405445,-0.03883582,0.01430408,-0.020711625,0.039958667,0.014389514,-0.01072806,0.0037011197,-0.024421899,-0.021663602,0.014182032,-0.0056599975,0.030365659,0.046744563,-0.0068896357,0.020760443,0.030292429,0.058095068,0.014523767,-0.014828889,0.01676946,-0.008000277,0.0003989459,-0.006865226,-0.0067736898,-0.016452134,-0.019478936,0.03649249,0.0012837973,-0.013937934,-0.019076176,0.039372835,-0.059217915,0.016000554,-0.013840296,0.011088103,-0.009763877,-0.04459651,0.044010676,-0.020516347,-0.020540757,-0.025923094,-0.0012876113,0.03263576,0.012754065,-0.014584792,-0.037981484,-0.008280989,0.017843485,0.026533335,0.023482125,0.025337262,-0.019674212,-0.001405083,0.0075670048,0.009385527,-0.016000554,-0.00486058,-0.037078325,-0.022127386,-0.01780687,0.019124994,-0.019027356,-0.02135848,0.039470475,0.0103802215,-0.0030512116,0.024849068,0.014987552,0.049136713,0.003316667,0.0029505217,-0.014462743,0.038518496,0.03317277,0.027607363,0.009007176,0.014145417,-0.010721957,0.018478138,0.015561179,-0.010105613,0.048721746,0.014865503,0.014828889,-0.013400922,-0.007133733,-0.001261676,0.05101626,-0.014792274,-0.018441522,0.0151950335,-0.01584189,0.025971914,0.018099787,-0.019747442,-0.0062397276,0.004067265,-0.00030588396,-0.033953883,-0.011008771,-0.016208036,-0.0009847785,-0.033563327,0.016708435,-0.008494574,0.009013279,-0.016171422,-0.031073539,-0.009214659,-0.048648518,0.033758607,-0.009110918,-0.008628827,0.0072435765,-0.00015055822,-0.017892305,-0.06117069,-0.022200616,-0.020125791,0.029023126,0.017538365,-0.014804479,0.008293193,0.014633611,-0.015585589,-0.025288442,-0.033123955,-0.0066394364,-0.012766269,0.022701014,0.021932108,0.01546354,-0.0035302518,-0.011643424,-0.00010936687,-0.0035363543,-0.016574182,0.025288442,-0.010776879,-0.018380499,-0.037810616,-0.023970319,0.013986754,0.0068408167,0.02863257,-0.004335772,0.009837106,-0.030438887,-0.00040047153,0.010496168,0.018844282,0.036980685,-0.0057850974,-0.014145417,-0.025898684,0.02422662,-0.025239622,0.0134985605,0.012619811,-0.017623799,-0.027949098,0.0010686868,0.019747442,0.019210428,0.024080163,0.0049795774,0.0191372,-0.038298808,0.0009550292,0.045035884,-0.033856243,-0.006444159,0.0072618835,-0.018441522,-0.0060261427,-0.00858611,-0.03261135,0.03236725,0.040349223,0.0012021774,-0.018111993,0.011313893,-0.021773446,-0.01676946,0.0069140457,-0.0246782,-0.0054281056,-0.008464061,0.03246489,-0.026582155,-0.038567316,-0.025532538,0.01591512,-0.026753023,-0.012442841,-0.016073782,0.021700216,0.0035851737,0.0072008595,0.0015233174,0.009300093,-0.023433305,0.027631773,0.009696751,0.020943517,0.0004984917,-0.016403314,0.017513955,0.0104351435,0.0012281127,-0.0095686,0.015292672,0.00022426406,-0.020858083,0.008207759,0.003185465,-0.015976144,-0.0023677403,0.03512555,-0.03353892,0.004210672,0.024190005,0.012754065,-0.0018887,0.00992254,0.03583343,0.007036094,-0.015353697,0.026411287,-0.0022533198,0.022908498,-0.0014447487,0.0151584195,-0.0029017022,-0.024665995,0.0027872818,0.0055593075,-0.0059803748,-0.02863257,-0.008262681,-0.04925876,0.025630178,0.023225823,-0.043473665,-0.011075898,0.017745847,-0.0028849207,0.010062896,0.025337262,0.039226376,-0.007823307,-0.002437918,0.024934502,-0.024482923,-0.014059983,-0.0052114693,-0.0024531742,-0.0031915673,0.02785146,-0.01944232,0.03895787,0.01624465,0.009593009,0.002032107,0.017562775,0.015524565,0.027949098,0.001939045,-0.0050772163,0.0088302065,-0.008305398,0.0061512426,0.016012758,0.02775382,-0.0070177866,0.045719355,-0.012357407,-0.032074336,0.01155799,-0.0093184,-0.012790679,-0.01130779,0.0061237817,-0.0032220795,0.0024989424,0.0020061717,0.00030054434,-0.023079365,-0.017465135,-0.009654034,-0.017623799,0.005705766,0.018978536,-0.00795756,-0.0076829507,0.03488145,-0.041301202,-0.0041832114,0.027021531,0.004787351,-0.010569397,0.006865226,0.015561179,-0.031268816,-0.0171234,0.011789882,-0.05497063,-0.001331091,-0.031146768,0.02183447,0.014780069,0.022530146,0.021675808,-0.0053152107,-0.012827294,0.015292672,0.033807427,-0.0075792097,0.022835268,0.0015927325,0.0034966886,0.009062098,-0.016464338,-0.021822266,-0.027314447,0.01231469,0.0008848514,0.008689851,0.0120644905,-0.027631773,-0.00028319057,0.029901873,0.004689712,-0.02178565,0.021285253,0.0135107655]},{"id":"interface-GatewayRecentMentionDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewayRecentMentionDeleteDispatchData\nDescription: RECENT_MENTION_DELETE — recent mention cleared","meta":{"url":"/docs/typedefs/GatewayRecentMentionDeleteDispatchData"},"embedding":[0.03155061,0.01915275,-0.01925004,0.019291738,-0.0029743747,0.07338644,-0.02690836,0.07827887,0.035331123,0.025018103,-0.007769511,-0.010361665,-0.048868697,0.0435037,0.042836554,-0.013273494,0.020667734,0.047339812,-0.014274218,0.06615899,0.026296807,0.06043262,0.04075171,0.01820762,0.007991894,-0.01610888,0.014156077,0.02838165,0.004301724,-0.04169684,0.030355299,-0.038416687,0.038166508,0.0020275088,0.015914293,0.032551333,0.022321709,-0.043448105,-0.046339087,0.008012743,-0.024003481,-0.02098741,0.013961492,0.006980746,-0.041530054,0.0069598975,-0.01820762,0.0032957876,0.027770095,0.01965311,-0.034358196,-0.003363545,-0.027533812,0.038444486,0.013634867,-0.002315912,0.003773564,0.04275316,0.043865077,0.008061389,-0.022877665,-0.030160714,0.009757061,0.013044162,-0.033107292,-0.019458525,-0.027950782,0.051314913,0.013252646,0.013078908,0.008214277,-0.0016730857,-0.06877199,-0.028604032,0.0026529615,-0.033969026,0.019458525,0.017206896,0.00963197,-0.01873578,0.021835245,-0.004948025,-0.061044175,-0.038194306,-0.0074220374,-0.021515569,-0.05345535,-0.0039681494,0.0061398596,0.03230115,-0.031606205,0.037554953,0.010375564,-0.02533778,-0.012071235,-0.05831998,0.010174029,0.0010085424,0.013412483,0.062100492,0.038722467,-0.08984279,-0.023711603,-0.0130928075,0.028826416,-0.025560163,-0.03405242,-0.011675115,-0.03155061,0.0026824968,-0.054094702,-0.05120372,-0.006504707,0.009715363,-0.036915604,0.0033930803,0.008867528,-0.04814595,0.008561751,0.011077461,-0.03155061,0.006622848,-0.021668458,-0.03813871,-0.020264665,-0.0003863473,0.013051111,-0.03391343,-0.045227174,-0.031634003,0.06360158,-0.0277145,0.034747366,-0.030049523,-0.023794997,0.016789928,-0.014288117,-0.0022724778,-0.047562197,-0.03155061,0.012495153,-0.0009607647,0.030911257,0.031467214,-0.05882034,0.0030925155,-0.0019041557,0.014357612,0.07094023,0.025824243,-0.037026793,0.040557127,-0.0036241503,0.029382372,-0.025754748,0.011390187,0.04392067,-0.005976547,-0.033718843,-0.03230115,-0.01595599,-0.054066904,-0.025824243,-0.0017069643,-0.039361816,0.023391927,-0.023906188,-0.017901843,-0.045449555,-0.056513116,-0.028659629,-0.043392513,-0.02098741,0.004263502,-0.027214138,0.0052954988,0.00051469536,0.006966847,-0.019847697,-0.02282207,0.020250766,0.020139573,0.0025973658,-0.05384452,-0.04500479,-0.015330538,0.016525848,0.058542363,-0.023405826,0.002599103,-0.018707981,0.037721742,-0.019764302,-0.00073751283,0.008777184,-0.04075171,0.016970614,-0.051175922,0.010868976,-0.056846693,-0.021279287,0.015330538,0.003985523,0.0071857553,-0.005014045,-0.0013855513,-0.008749387,-0.001900681,-0.018152025,0.011272046,0.04567194,-0.00402722,-0.0145660965,-0.012411759,-0.02083452,0.023586512,-0.027867388,0.040696114,-0.0025973658,-0.0141352285,0.0064942827,0.0013481978,0.046895046,0.024517741,0.004183583,0.015552921,-0.0047708135,0.019319536,-0.027047351,-0.012251921,-0.012286669,0.0013733896,-0.016637038,-0.043058936,0.011668166,0.014441006,0.0049792975,-0.05659651,0.06015464,0.016345162,-0.0010389462,-0.010709139,-0.0064838585,-0.0022064578,-0.017192997,0.015650215,0.030688874,-0.02572695,0.03155061,0.028409448,0.06949473,0.060710598,0.023183443,-0.09089911,-0.014176926,-0.016511949,0.01806863,0.003603302,0.017067907,0.048201546,0.048618514,-0.04895209,0.00039047352,0.029493565,-0.0095346775,-0.001391632,0.025309982,-0.0051252367,-0.031634003,0.042808756,-0.02993833,-0.021682357,0.06393515,-0.0046526724,0.00062284654,-0.005503983,0.019736504,0.01660924,0.013766906,0.009423486,-0.009048214,-0.011786306,0.03908384,0.017929642,-0.035470113,0.027506016,-0.004510208,0.033830035,0.013280444,0.039334018,-0.06393515,0.021084702,0.012092084,-0.04383728,0.019778201,0.019319536,0.02403128,-0.039000444,0.024920812,-0.00027645874,0.05292719,-0.00070059375,-0.02822876,-0.03388563,0.03552571,0.030577682,0.011452732,-0.047867972,0.02665818,-0.014524399,-0.046533674,-0.035136536,-0.036748815,0.0070641395,-0.03285711,0.007206604,0.060655,0.03230115,0.0045588543,0.011619519,0.054706253,-0.0024653256,0.04183583,-0.042947747,0.03811091,-0.025170993,-0.022099325,-0.0316618,0.04536616,0.020209068,0.010910673,0.029966129,-0.002032721,0.0046874196,0.06660375,0.0047916616,-0.06371277,0.021307085,0.0008248156,0.008582599,0.03744376,-0.0038187355,-0.015858699,-0.03944521,0.0277145,0.003320111,-0.01925004,0.001212683,0.005636023,0.031105842,-0.027047351,-0.027269734,0.03193978,-0.024239764,-0.012342265,-0.015135953,0.029910533,-0.028965404,-0.029660352,0.056930084,0.0040862905,-0.01610888,0.003815261,-0.019069355,0.016553646,0.0018033884,-0.07627742,-0.017985238,0.0007805127,-0.02361431,0.0012561172,-0.017790651,-0.041196477,0.00013660059,-0.025921535,0.004037644,-0.019361233,-0.013996239,0.025282184,-0.005893153,0.013356888,-0.011383237,-0.03549791,0.005976547,0.03944521,0.026074424,-0.014169976,0.007825107,-0.0646579,0.030661076,0.0356091,-0.005754164,0.04909108,0.0064178384,-0.011167804,0.009048214,0.0050279438,-0.0030838288,0.021863043,-0.0053406702,0.016317364,0.011042713,-0.026310707,-0.014760681,-0.0034104541,0.047673386,0.033552058,0.031078044,0.052232243,-0.046172302,0.039667595,0.02822876,0.027672803,0.0011718549,0.0065672523,-0.048006963,0.0023993056,0.029326778,0.011682064,0.044643417,-0.017985238,0.0031151015,-0.006282324,0.009013467,0.019583616,0.04461562,0.0025157093,0.045838725,0.05303838,-0.079279594,-0.06387956,0.0008447954,0.020792823,-0.004847258,0.038944848,-0.010910673,0.007825107,0.011070511,-0.0036067767,-0.02072333,-0.045032587,0.01332214,0.0064456365,0.045477353,-0.03138382,-0.0067097163,0.015024762,0.004485885,0.051676285,-0.011563923,-0.029493565,-0.006911251,-0.027617207,0.044532225,-0.05781962,0.008235126,0.020639936,0.05345535,-0.005344145,0.008394964,0.0023124372,-0.0008178661,0.013878098,0.066548154,-0.023850592,-0.006108587,0.027783994,-0.020236867,0.016261768,0.006754888,0.009583323,-0.028020276,0.03722138,0.028339952,-0.014441006,-0.02533778,-0.0024653256,0.006591575,0.032773715,-0.0052572764,0.005146085,0.03205097,-0.00923585,-0.033607654,0.029854937,0.061989304,0.021974234,-0.015372235,-0.036860008,0.029799342,0.02100131,0.009048214,0.003363545,-0.016803827,0.001724338,-0.02454554,0.023920087,-0.035275526,0.054150295,-0.049786028,0.00883973,-0.0075262794,0.03761055,-0.017596066,0.012300568,-0.016289566,-0.015149852,-0.010806431,-0.016525848,-0.06699292,-0.0048611565,0.01266194,-0.028034175,-0.024434349,-0.041363265,0.028604032,-0.03193978,0.035553504,-0.0025539314,0.011932245,0.016289566,0.02572695,0.018652387,0.0004378168,-0.012182427,-0.011508328,-0.015636316,-0.0646023,-0.010507604,-0.013961492,0.017526573,-0.011091359,0.02257189,0.036721017,0.00073881587,-0.027019553,-0.029743746,-0.016470252,0.0012587233,0.020904016,0.02453164,0.029882735,0.009750111,-0.0063969903,0.0032384545,-0.0036241503,0.019847697,0.014454905,0.015080357,0.029993927,0.0095346775,-0.008040541,-0.00048081667,-0.017359784,0.031995375,0.023419725,-0.01660924,-0.03574809,0.03838889,0.041113082,-0.02993833,-0.03321848,-0.0047951364,-0.014760681,-0.032523535,0.029437969,0.0078042587,0.013447231,0.0000423755,-0.03722138,0.018013034,0.010653542,0.0066332724,0.024211966,0.037693944,0.012919071,0.014830176,-0.011140006,0.013502827,-0.027936883,-0.02282207,-0.05173188,0.016803827,0.028604032,-0.022377305,0.019402929,0.020556541,-0.0038986546,-0.028826416,-0.014830176,0.0065325047,-0.005000146,-0.0065672523,0.02532388,0.031189237,0.017665561,0.022808172,-0.012981616,0.012773132,0.053232964,0.006591575,0.03388563,-0.042225,-0.024823518,0.028284356,0.088063724,0.029076597,-0.00112234,0.0031029398,0.0061676577,-0.027964681,0.026130019,-0.020431451,-0.023113947,-0.023364129,0.00567077,-0.024003481,-0.026421897,0.017498774,-0.016970614,0.0038569577,-0.022196617,-0.0017764592,-0.020139573,-0.030410895,0.03088346,-0.021835245,-0.035164334,0.035303324,-0.011202551,0.017234694,-0.034747366,-0.01991719,-0.0040341695,-0.028854214,-0.011404086,0.03388563,0.00640394,-0.027144643,-0.056429725,0.0171513,0.0075888247,0.02877082,0.02849284,0.024309257,0.0052850745,-0.017331986,0.0067618378,-0.0033600703,0.04011236,-0.04183583,-0.048646312,0.06688173,0.0067479387,0.012981616,-0.0065325047,-0.010862026,0.06293443,-0.0043642693,0.044560023,0.017165199,0.0114249345,0.0023037505,0.004461562,-0.037554953,-0.0051391353,-0.0004386855,-0.0011857538,0.010625744,0.017735057,-0.003042132,0.03683221,0.080391504,0.028270457,0.0062371525,0.007324745,0.014010138,-0.012363113,0.00804749,-0.028743021,0.03074447,0.009882151,-0.042808756,0.007338644,-0.0013047636,-0.020000584,0.021140298,-0.017192997,-0.0024549013,0.027408723,0.01820762,-0.0020709431,0.022613587,-0.029354576,0.01993109,-0.013634867,0.029799342,0.038972646,0.00009370931,-0.040835105,-0.036470834,-0.012092084,-0.00481251,-0.0030073845,0.024045177,-0.005170408,0.019430727,-0.02044535,0.014128279,-0.0070780385,0.005260751,-0.005465761,-0.032745916,-0.015288841,-0.018791376,0.005184307,-0.027867388,0.023683805,0.030188512,-0.03060548,0.01201564,0.009777909,-0.0056603462,-0.013648765,-0.004736066,0.022530193,-0.0028701324,0.011105258,-0.022224415,0.014621692,-0.025490668,-0.014357612,0.010222675,0.0047152177,-0.035053145,0.015261044,-0.015010863,-0.011640368,0.0008565226,0.0030525562,-0.001490662,0.003061243,-0.018388307,-0.009618071,0.007602724,0.0069355746,0.018805275,0.009353991,-0.005618649,-0.01888867,-0.025504567,0.0117376605,-0.04536616,0.022182718,-0.020375855,-0.014329814,0.0022568414,0.005702043,-0.023419725,0.03535892,-0.011390187,0.027325328,0.012960767,0.04419865,-0.016664837,0.004381643,-0.060543813,-0.0066680196,-0.0008825831,0.008297672,0.022710878,-0.043197926,0.008450559,0.015274942,0.019764302,0.010778633,0.024642833,0.017915742,-0.06571422,0.01042421,-0.00093383546,-0.0019024183,0.018777477,-0.05487304,-0.01649805,0.01530274,-0.035942677,-0.020904016,-0.052593615,0.011459681,0.0036310998,-0.0011284207,0.029771544,-0.034802962,-0.0036866956,0.010306069,0.02544897,-0.09379009,0.043225724,0.06387956,-0.012696688,-0.008255974,0.026449695,-0.005305923,0.031189237,0.032273356,-0.0726081,0.04141886,-0.0093261935,0.0056811944,-0.009506879,0.022863768,-0.015219347,0.016345162,-0.019903291,0.02322514,0.006032143,-0.040862903,-0.019236142,-0.0082837725,0.03338527,-0.0020170847,0.014399309,-0.018249316,0.01662314,0.015372235,0.008464458,0.03908384,-0.01954192,-0.043364715,0.0068904026,0.015455629,-0.005326771,-0.0069564227,-0.011153905,0.0047847126,-0.018582892,0.024615034,-0.032940503,-0.011807155,-0.020945713,-0.03549791,0.005889679,0.0021908216,-0.017095704,-0.005198206,0.0032332425,-0.015344437,-0.016470252,0.00936789,-0.019180546,0.00897177,0.0023854068,0.005726366,0.016678736,-0.0025400324,-0.02692226,-0.013412483,0.046950642,-0.011049663,-0.011591721,0.03738817,-0.033329673,0.00041349366,-0.008693791,0.032162163,-0.0002451861,-0.0012639355,0.04328132,0.007345593,0.010194877,0.024350954,0.016539747,-0.0137321595,0.008297672,0.047339812,0.034108017,0.044170853,0.041474458,-0.00018481255,0.018416105,0.002995223,-0.015594618,-0.007943248,-0.0026147394,0.04289215,-0.007977995,0.0031046772,-0.030105118,0.027075147,0.025184892,-0.0006098163,-0.001740843,-0.04536616,-0.0043746936,0.005146085,0.02070943,0.0250598,-0.028270457,-0.032134365,-0.029632553,-0.008110035,-0.012293618,0.018388307,0.022530193,0.009242799,0.025212688,0.0060008704,0.0105770985,-0.008040541,0.03205097,0.011390187,-0.0025400324,-0.0031394246,0.017359784,-0.014211673,-0.018318811,-0.028214863,0.001501955,-0.006487333,0.0027224561,-0.005052267,0.029521363,-0.0029361525,0.0013369049,0.020806722,0.050870143,-0.01200869,-0.0016583181,-0.01266889,0.040807307,-0.02072333,-0.005517882,0.004920227,0.04628349,0.0008187348,0.02811757,-0.00040545833,0.013614018,-0.038166508,0.023739401,-0.009340093,-0.007811208,0.0042461283,-0.02849284,-0.008005793,-0.021473873,-0.0033253229,0.0006940786,0.009680617,-0.031328227,-0.0071301595,0.027408723,-0.021209793,0.00088953256,-0.0018311862,0.031328227,-0.0013968442,0.048618514,-0.011807155,0.004392067,-0.03377444,0.0016331262,-0.043587096,0.0016235707,-0.039361816,0.009486031,-0.0027189814,0.030633278,-0.009201103,0.038416687,-0.012078185,0.04497699,0.012370062,-0.01108441,0.026630381,-0.010458957,-0.026157817,-0.011397136,-0.012307517,0.021168096,0.029771544,0.029966129,0.027895186,0.018805275,-0.016261768,-0.0026407999,0.0009373102,0.027936883,0.01741538,0.023961784,-0.00012943395,-0.030355299,-0.017443178,0.0016331262,-0.023642108,0.029021,0.018499497,0.008860579,-0.0040584924,0.017206896,0.02310005,-0.004906328,0.028270457,0.019708706,-0.0030820915,-0.0011666429,-0.036498632,0.0021230641,-0.025435071,-0.03260693,0.00989605,0.02982714,-0.018916467,-0.001042421,0.019500222,-0.025518466,0.003490373,-0.023280736,-0.012286669,0.05793081,-0.016595343,-0.013683513,-0.026435796,0.008186479,-0.0012700162,0.0047152177,-0.014399309,-0.041780233,-0.030688874,-0.005938325,0.0125854965,0.008527004,0.008346317,0.008242075,0.016470252,0.017707258,0.0063900407,0.004961924,0.020167371,-0.033941228,0.018096428,-0.024114672,-0.013169252,0.02993833,0.004037644,0.0069321,0.0026842342,0.00679311,-0.005382367,-0.008082237,0.012036487,-0.016261768,-0.0010884613,-0.00052077614,0.017165199,0.0014923994,0.014524399,0.003438252,-0.0099516455,-0.024184167,0.00884668,-0.0028996677,-0.038027517,-0.0015453892,-0.021015208,-0.013002465,0.03616506,0.06454671,0.0035477062,-0.0012813092,-0.0034452013,0.011570873,0.0009442597,0.013085858,-0.002425366,-0.0028006379,0.01530274,-0.0037283925,-0.027033452,0.0010771684,0.0073038964,-0.020917915,-0.00883973,-0.00035355447,0.028339952,0.003947301,-0.013926744,0.020000584,0.020222967,-0.017081805,-0.0079224,-0.013982341,0.011939195,-0.010187928,0.019764302,-0.021890841,-0.006174607,0.021612862,0.011668166,-0.0042287544,0.018430004,0.027019553,0.026727675,0.0047673387,0.036192857,0.01899986,-0.0017790651,-0.021404378,0.03813871,0.01610888,-0.0053337207,0.008554801,0.018485598,-0.023086151,0.0050626914,0.0053719427,-0.0036936451,0.0329961,0.011153905,-0.015650215,-0.011494429,0.001344723,0.029715948,-0.013919795,-0.011522227,-0.004103664,-0.016428554,-0.04789577,-0.010660492,0.013203999,0.039639797,0.058542363,-0.054678455,0.031050246,0.0029048799,-0.02083452,-0.028576234,-0.006011294,-0.0018242367,-0.00184856,0.013495877,-0.00778341,-0.005726366,-0.0130928075,0.020514846,0.0040584924,0.09151066,-0.03538672,0.01991719,0.005962648,-0.014844075,-0.0065290304,-0.05715247,0.0067479387,-0.03705459,0.013384686,0.004166209,0.04923007,-0.009541627,-0.026116122,0.03338527,-0.0028562336,-0.020876218,-0.0012370063,0.017248593,-0.054066904,0.027895186,0.009673667,-0.010333867,-0.01266194,-0.026838865,-0.025032002,0.02651919,0.004367744,0.013551473,-0.012453456,0.01676213,0.001787752,-0.0071058366,0.0062406273,-0.009736212,-0.0050070956,0.013753008,-0.01660924,-0.0021439125,-0.020264665,0.009889101,0.006296223,0.0006080789,0.033802237,0.027658904,-0.0036936451,-0.03577589,-0.0343026,-0.019097153,-0.007887652,0.027853489,0.0066297976,-0.0060668904,-0.03405242,0.00081178534,-0.016206171,-0.0085964985,0.010743885,0.0003053425,0.008228176,-0.024962509,0.024198066,0.018791376,-0.02414247,0.031967577,0.0063552936,-0.040473733,-0.005292024,0.02150167,0.0032818888,-0.017915742,-0.015983788,0.008721589,0.013753008,-0.02164066,0.025935434,-0.018694084,-0.012835677,0.041085288,0.02533778,0.009618071,0.024337055,0.021974234,0.053788923,-0.062489662,-0.0023037505,-0.000054998567,0.0085687,0.028326053,-0.018902568,0.006400465,0.0027137694,-0.0125715975,-0.027895186,0.023447523,0.0038222102,-0.010180978,0.01478848,-0.014183875,-0.016956715,0.015594618,0.0013673089,-0.01516375,0.0019111051,-0.02401738,-0.0041731587,-0.010229625,-0.0035268578,-0.021432176,0.025574062,-0.041613445,-0.040473733,0.038833655,0.029048799,0.0033861308,-0.047645587,0.004694369,-0.017554369,-0.040668316,-0.007894602,-0.008332418,0.004850732,0.00083089643,-0.01925004,-0.009333143,-0.00468047,0.039612,0.01280093,0.0060703647,-0.014941367,-0.029993927,0.01820762,0.0046874196,0.0047186925,-0.016331263,0.012147679,-0.026032727,-0.024642833,-0.015205448,-0.0027433045,0.0064108893,-0.004023745,-0.014899671,0.016984513,-0.012620243,0.035831485,0.008318519,-0.00830462,-0.015650215,-0.030855661,-0.0049271765,0.013537574,-0.026227312,0.015942091,0.009451284,-0.030188512,-0.013655715,-0.028409448,0.013342989,-0.013287393,-0.02783959,-0.020320259,-0.03469177,-0.0019632261,0.037276976,0.026324606,-0.04239179,0.003174172,-0.014302016,-0.013203999,-0.03152281,-0.0010736936,0.0010858552,0.012147679,0.012654991,0.007102362,-0.007442886,0.02350312,-0.050953537,0.019458525,-0.000877371,0.012140729,0.021195894,0.0039889975,-0.025476769,-0.018624589,-0.016817726,-0.025129296,-0.0029396273,-0.006692343,0.03736037,0.0053198216,-0.0032732019,-0.00046908946,-0.022460697,0.0138642,0.008214277,0.042280596,-0.0034504135,0.047840174,-0.03613726,-0.0014463591,-0.018040832,-0.0003216303,0.012766182,0.006570727,-0.00050383684,-0.0107855825,0.021015208,-0.0022794271,-0.012224124,0.015344437,0.020320259,0.021932539,0.0025504567,0.017276391,0.006317071,0.025393376,-0.0071301595,0.011091359,-0.017971339,-0.006779211,-0.0023037505,-0.018944263,-0.028006377,-0.021418277,0.022015931,-0.0018798325,0.010201827,-0.0074706837,0.0356091,0.0074220374,0.008325469,-0.06148894,0.014579995,-0.0083880145,0.04025135,-0.032801513,-0.032245558,-0.0020448826,0.023072252,0.017498774,-0.0037944124,0.0029691625,-0.03535892,0.008130884,0.0007257856,0.0025104973,-0.05948749,0.025087599,-0.0079224,0.008408863,0.03458058,-0.01915275,-0.033079494,0.013370787,0.007050241,-0.01993109,0.034497187,0.0063240207,-0.01187665,-0.009576375,-0.012335315,-0.017874045,-0.00025561033,-0.010848128,-0.02007008,0.009562476,0.035970476,0.024754023,-0.014607793,0.018833073,-0.012877374,0.02348922,0.018388307,0.021557266,0.008429711,0.033802237,0.00765137,-0.023711603,-0.0066471715,-0.01794354,-0.0277145,0.009562476,0.018846972,0.0037978871,0.0037700892,-0.040807307,-0.008068339,0.0263663,0.010882875,0.031467214,-0.028006377,-0.008832781,0.010945421,-0.004961924,-0.044004064,-0.039389614,-0.016915018,-0.013363837,-0.0038361093,-0.027130743,0.043559298,-0.013759957,0.023322433,-0.010729987,-0.020139573,-0.030855661,0.009409587,0.039723188,0.01068829,0.010917623,-0.007310846,0.014691186,0.004253078,0.023294635,0.049118876,0.02190474,0.0010059363,-0.00059331127,0.00949298,0.02544897,-0.030966854,0.028200964,0.0435315,0.0131970495,-0.011174753,0.044393234,0.041113082,0.00804749,-0.029854937,0.027881287,0.010514553,0.0060634157,0.0119461445,0.003603302,0.007206604,0.017568268,0.017387582,-0.018013034,-0.059265107,-0.0013829452,-0.0038951798,-0.017999135,0.026421897,-0.00044824101,-0.03446939,0.023836693,0.014816277,-0.04000117,-0.00962502,-0.010792532,-0.014468803,-0.027742298,0.007241351,0.043253522,0.018388307,-0.029354576,0.029048799,0.0117376605,0.010472856,-0.058764745,0.016581444,0.02294716,-0.011779358,0.00041153913,0.023808895,0.0060773143,-0.01861069,0.05331636,0.016456353,-0.0066054743,0.003877806,-0.0033027371,0.01003504,0.02679717,-0.014941367,-0.026338505,-0.0015062983,-0.0329683,0.052204445,0.018054731,0.0316618,-0.008964821,-0.025671354,-0.015719708,-0.0045727533,0.020320259,0.008408863]},{"id":"interface-GatewayRelationshipAddDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipAddDispatchData\nDescription: RELATIONSHIP_ADD — relationship (friend, block) added\nProperties: id: string, type: number","meta":{"url":"/docs/typedefs/GatewayRelationshipAddDispatchData"},"embedding":[-0.012119235,-0.011547252,-0.03536098,0.035768732,0.018835781,0.02144085,-0.021486156,-0.009972884,-0.0015531308,-0.028723719,-0.020953815,-0.0080077555,-0.0032846523,-0.017521922,0.03853237,-0.00810403,0.00057906157,0.045894522,0.014259921,0.08141407,-0.012583616,0.04684594,0.08521974,-0.009146058,-0.0063937455,0.05037977,0.01551715,0.033458147,0.005796279,-0.045033716,0.04997202,-0.014531755,0.045667995,0.015732352,0.022222372,0.014225942,0.02799883,0.017386004,-0.021905232,-0.0012961634,-0.028814329,-0.030671857,0.0059520165,0.01376156,-0.05282627,-0.0001861775,-0.021202996,0.01689897,-0.012119235,0.010103137,0.012912082,-0.04793327,-0.030332064,0.034839965,0.0218486,0.018699866,0.04122805,0.0030383035,-0.041046828,0.015381234,0.0040350254,0.0023077514,-0.00072028744,-0.0020274234,-0.009264985,0.01285545,-0.065828964,0.04852224,0.032031022,0.028723719,0.034975883,0.030490635,0.011354703,0.01943608,0.0009577876,0.030785121,0.0075886794,-0.041658454,0.020217601,-0.031170217,0.02197319,0.05210138,-0.063155934,-0.072806016,0.032642648,-0.028610455,-0.043289453,-0.04279109,-0.0107090995,-0.034341607,-0.0043011955,0.016174082,-0.041114785,0.009253658,-0.023808066,-0.06274819,0.014112678,0.010618488,-0.037127897,0.027885566,0.027545774,-0.100940764,-0.035428938,-0.03749034,-0.008234284,-0.014384512,-0.0072432244,-0.0015064095,-0.018484663,-0.018314768,-0.043289453,-0.029425954,0.0021534294,0.008891214,0.025416413,-0.040118065,0.043334756,-0.048159797,-0.0025385264,-0.03527037,-0.037377078,-0.007107308,0.031577967,-0.012730859,-0.024057247,-0.012889429,-0.0067958324,-0.028723719,-0.02620926,-0.0051450115,0.053098105,-0.012787491,0.010527877,0.0061898706,0.00092451635,-0.024397038,-0.0093442695,0.0034234005,-0.0023473937,-0.042247426,0.039891537,-0.04131866,0.018847108,0.02448765,-0.02596008,0.018235484,0.004442775,0.04181702,0.012017297,-0.025212537,-0.057991102,0.079783075,-0.017250087,-0.034160383,0.02808944,0.01893772,0.008313568,-0.006518336,-0.008341884,-0.039551742,0.025076622,-0.06900035,0.0098426305,0.002675859,-0.03178184,0.011388683,-0.04637023,-0.02759108,-0.035428938,0.019707914,0.02319644,-0.044308826,-0.060618825,0.02376276,-0.037920743,0.014928178,0.005878395,-0.012968713,-0.012889429,-0.0051704957,0.039800923,0.02759108,-0.006931749,-0.060709435,-0.013489727,-0.0124477,-0.0016168418,0.03561016,0.013965435,-0.039008077,-0.01551715,0.042405993,0.0068581277,0.02473683,0.056042966,-0.0119719915,0.0014837567,0.023468275,-0.0039132666,-0.019288838,0.008489127,-0.05518216,0.014690324,0.02009301,0.0030694508,-0.050470382,-0.036493618,-0.02981105,0.012662901,-0.025914773,0.025099274,-0.045418814,-0.021565441,0.017182129,-0.015030116,0.027659038,0.00092593214,-0.00019626506,-0.0032336835,-0.021984518,-0.025371108,-0.01040895,0.028882287,-0.043629244,-0.005006263,0.014316553,0.01686499,-0.0053205704,-0.0208179,0.0040406887,-0.018960372,0.0099898735,0.0015517151,-0.007486742,0.018563949,0.04211151,-0.0010554777,-0.0091970265,-0.00064206455,0.062204517,0.0073564886,-0.037218507,0.004428617,0.010652468,0.00008946076,0.026594358,0.0355422,0.026820885,-0.028542496,0.052056074,0.05037977,0.036199134,0.0012912081,-0.0066599157,-0.01457706,-0.03753565,0.021803295,-0.01067512,-0.0011510442,0.033254273,0.025167232,-0.062612265,0.010097474,0.008964836,-0.010397623,-0.050153244,0.041431926,0.046234313,-0.022732059,-0.021791968,0.03339019,-0.021089733,0.05160302,-0.05436666,-0.026186608,-0.045985132,-0.0074131205,0.022471553,0.0006080854,-0.0025187053,-0.005014758,-0.02981105,0.0031713885,0.032461427,0.004162447,0.06560244,0.016072143,0.049518965,0.02539376,0.037354425,-0.045713298,-0.002415352,0.04027663,-0.030377371,0.046574105,0.04480719,0.012787491,-0.016151428,0.051965464,0.035700772,0.044625964,0.013908803,-0.0011071543,-0.012923407,0.0058614053,0.0049552945,0.009785999,-0.0062974715,0.04442209,0.0058160997,-0.02135024,-0.01012579,-0.017318046,-0.00906111,-0.025189886,-0.0012961634,0.060618825,0.034658745,-0.037354425,0.021599421,-0.01881313,0.02596008,0.042315383,-0.05137649,-0.02457826,-0.052509133,-0.015721025,-0.03241612,0.023049198,0.002198735,0.009899262,-0.036765452,0.015030116,-0.004844862,0.037739523,0.03626709,-0.0030609563,0.04555473,-0.008075714,0.050198548,0.0620686,-0.02793087,-0.04294966,0.014486449,-0.009808651,-0.010290023,0.0046466505,0.0077868914,-0.027500467,-0.009180036,-0.046143703,0.008115357,-0.04399169,-0.016978255,-0.02016097,-0.005946353,0.016921623,-0.05219199,-0.026231913,0.02122565,-0.040797647,0.027341899,-0.031102259,0.0045815236,-0.0127195325,-0.023400316,-0.03395651,0.0318498,-0.007311183,-0.036584232,-0.02383072,0.017703144,-0.016763054,0.003986888,-0.018552622,-0.019017003,0.007141287,-0.022052476,0.015052768,-0.010227728,0.0039387513,0.047298994,-0.0039274246,0.014497776,0.0105335405,-0.014916852,-0.054502577,0.013365136,-0.08213896,0.005969006,0.031645928,-0.008942183,-0.013784213,0.016026838,-0.00052703096,-0.034409564,0.101303205,0.014792262,0.024034593,-0.0027735492,0.0001333505,-0.006784506,0.036131173,-0.016309997,0.0039160983,-0.016547851,-0.016242038,0.021270955,0.029018205,-0.015200011,0.025597636,0.001306074,0.024147857,0.055499297,0.001046983,-0.035134453,-0.012357089,0.0103126755,-0.03896277,-0.011836074,0.030603899,0.03574608,-0.026707621,-0.016468568,-0.0017952324,0.0021321925,0.028769024,0.045260243,-0.002507379,-0.034183037,-0.02025158,0.04564534,0.05504624,0.011847401,0.06351838,0.00069763465,0.01787304,0.006671242,-0.02605069,-0.0084778005,-0.008709991,-0.000053977314,0.03307305,0.0400048,0.004643819,-0.0062068603,0.029856356,-0.028044134,0.00904412,0.03388855,-0.06188738,0.014837567,-0.06768649,0.050425075,-0.03372998,-0.0055442667,-0.029108815,0.02473683,0.013161262,-0.010086148,-0.024850093,-0.015041443,-0.025869468,0.034794662,-0.017419983,-0.0033950845,-0.00867035,0.018847108,0.0064843567,0.0028684076,-0.018416706,-0.025053969,0.009231006,0.019096289,-0.027908217,-0.01705754,-0.031713884,0.01119047,0.03012819,0.037218507,-0.027817607,0.058761295,-0.007367815,-0.021361567,0.03459079,0.06564774,0.022369614,-0.012232498,-0.00852877,0.0048363674,-0.0077076065,0.002663117,0.04523759,-0.010363644,0.013467074,0.01473563,0.0375583,-0.020772595,0.010040842,-0.024283774,0.00810403,-0.024963357,-0.023558885,-0.03583669,-0.021463504,-0.03232551,0.0110035855,-0.04449005,-0.060890656,-0.012232498,0.010324002,-0.012345762,0.020580046,-0.048114493,-0.0318498,-0.0015488835,-0.005889721,0.029018205,-0.02213176,-0.013988088,-0.033684675,0.002612148,0.009616103,0.007248888,0.013217893,-0.019130267,-0.0071809296,-0.0326653,0.02392133,-0.0051874854,0.02101045,-0.046755325,0.008160662,0.04784266,0.032959785,-0.012844123,-0.027115371,-0.014871546,0.028474538,-0.016094796,0.0023898678,0.009604776,0.01175679,0.019005679,-0.030807773,0.022833997,0.04018602,-0.00042721716,-0.0032081993,0.015018789,0.0024592418,-0.012685554,-0.021169018,-0.025121927,-0.0056716884,0.0112810815,0.015970206,-0.0069770543,0.0013032424,-0.05069691,-0.005889721,-0.03126083,0.0015219833,-0.04002745,-0.028814329,0.04856755,0.006048291,-0.030671857,-0.01828079,-0.0015786152,0.0071186344,0.014010741,0.003700897,0.0040831626,0.013806866,0.0375583,-0.053505853,-0.0014370354,0.043629244,-0.055544604,-0.037943397,-0.038373798,-0.023649497,0.043062925,-0.051874854,0.04856755,0.03241612,-0.019277511,0.0054791397,0.028270662,-0.016174082,0.0058160997,0.03153266,-0.01599286,0.0075037316,-0.023400316,-0.017748449,-0.0036046228,0.0037745186,0.020172296,0.024623565,-0.015313275,-0.050425075,-0.04279109,0.066327326,0.03169123,0.019979747,-0.002246872,-0.034069773,-0.007781228,-0.018926393,0.019571997,0.0045135655,-0.0375583,-0.0074754157,0.0007298441,0.006637263,0.02241492,-0.010329665,-0.013829519,-0.0010009694,0.036199134,-0.021452177,0.036674842,-0.018076913,0.041613147,-0.04743491,0.0075377105,-0.0029901662,-0.048114493,0.008449485,-0.015030116,-0.021214323,-0.040707037,-0.023989288,-0.0109243,0.01640061,0.0038594664,0.012017297,-0.008704329,0.000990351,0.0028485863,0.014237269,0.012674227,0.04238334,-0.004819378,0.01457706,0.02824801,0.011892706,0.023694802,-0.041431926,-0.04596248,0.01984383,-0.011298072,0.018360073,-0.0038792875,-0.039959494,0.05658663,0.0040293625,0.021622073,-0.004657977,0.00006676374,0.01473563,-0.014010741,-0.006812822,0.028950246,0.0063597662,0.030966343,0.01877915,0.004573029,0.022460226,0.017397331,0.07498068,0.02392133,-0.005487635,0.0038962772,0.012425046,0.0047315983,0.007662301,0.004657977,0.033118356,-0.0016196733,-0.0015304781,0.003870793,0.035859343,-0.0107827205,0.05894252,-0.010618488,0.020874532,-0.002303504,0.013908803,0.021565441,0.044150256,-0.00050933345,-0.002970345,0.015970206,0.035474245,0.020761268,-0.024532955,-0.015313275,-0.0082286205,-0.0095934495,0.021078406,-0.012640248,-0.03366202,-0.01307065,0.008030408,0.01705754,0.021803295,0.012413721,-0.00000621624,0.000554993,0.00022033362,0.0012671396,0.006586294,0.027726997,-0.036448315,0.013421769,0.0020840552,0.011201797,0.014973484,0.0019353965,-0.008845909,-0.008693002,0.000996722,0.062566966,0.004122805,0.014101352,-0.021304935,-0.021837274,-0.0103862975,0.015585109,0.009559471,0.03844176,-0.028270662,0.010726089,-0.0048335358,0.01392013,0.0036867391,0.025665594,-0.00018440773,0.011133838,-0.02025158,-0.028927593,-0.0021364398,0.0089761615,-0.00877795,0.018858435,-0.012685554,0.012334435,-0.011700158,0.005365876,-0.030830426,-0.042179465,-0.026186608,0.029108815,0.018450685,0.0051308535,-0.021304935,0.041862328,-0.023219094,-0.02041015,0.017408658,0.045033716,-0.03626709,0.012391068,-0.026934149,-0.034069773,0.017352026,0.020625351,-0.01376156,0.017125497,-0.02119167,0.019039657,0.025031315,-0.027364552,-0.013738908,0.00036916943,-0.030762468,-0.0010922884,-0.006342777,-0.04548677,-0.022641448,-0.04825041,0.028678412,0.018076913,0.0075093945,-0.028701065,0.024351733,-0.01862058,-0.014645019,0.030875731,-0.030060232,-0.07652107,0.003862298,0.016038164,0.0077076065,-0.080870405,0.018201504,0.06537591,0.010624151,0.015755005,-0.02289063,0.020546066,0.028451884,-0.0016423261,-0.08168591,-0.0076509747,-0.020444129,-0.027545774,-0.026662316,0.016411936,-0.010012526,0.03477201,0.0045163967,0.051829547,0.030014927,-0.019413428,0.03175919,-0.02947126,-0.0060992595,-0.008341884,0.014316553,-0.029222079,0.008540096,0.034183037,0.016445914,0.07239827,-0.029607177,-0.030807773,0.008109693,-0.008749634,0.0028075282,0.005323402,0.004754251,-0.018518643,0.020206274,0.022686753,-0.0015602098,0.01039196,0.021112386,-0.010154106,0.010867668,-0.006263492,0.02808944,-0.00008092173,0.006229513,-0.0029958293,0.0017754112,0.020704636,-0.0015644572,-0.0046862927,0.032710604,-0.0038481401,0.024918051,-0.010986595,-0.04924713,0.003454548,0.022732059,0.004496576,-0.02686619,0.05078752,-0.037195854,0.01025038,-0.011994644,0.04793327,0.021746663,0.008942183,0.024397038,-0.000983272,0.017114172,-0.0050798845,0.044603314,-0.036584232,-0.024419691,0.031124912,0.0059859958,0.04254191,0.03169123,0.015664393,0.034658745,0.026594358,-0.012844123,-0.0033554423,0.010805373,0.0008862898,0.011575568,0.040842954,0.01416931,-0.014293901,0.005634878,0.0053687077,-0.009882273,-0.021690032,-0.0088742245,-0.010199412,-0.020625351,-0.039325215,-0.005821763,-0.021656053,0.0025994058,-0.033526108,-0.010420276,0.034885272,-0.0038792875,0.0029335343,0.01943608,-0.031555314,0.0302188,-0.035904646,-0.013365136,-0.012017297,-0.030830426,0.0064163986,0.0075377105,0.016140101,-0.013478401,-0.028429233,0.007379141,0.0010802542,0.0056688567,-0.004791062,0.01705754,0.005566919,-0.05006263,-0.015607761,-0.024102552,0.0004739385,0.012968713,-0.015403886,0.022505531,0.0351118,-0.0063314503,-0.013716255,0.0033186316,-0.03372998,-0.0074980683,0.016559178,0.013376463,-0.035474245,-0.04154519,0.03307305,0.023241747,0.0011057386,-0.007396131,-0.0056546987,-0.02423847,0.012753512,-0.023037871,-0.018224157,-0.033616718,0.0061558913,0.05192016,-0.02229033,0.014124005,-0.015947552,0.03660688,-0.026413135,0.017827734,0.034839965,0.01576633,-0.022063803,-0.019945769,0.010273033,0.018699866,-0.026073344,-0.040457856,0.012640248,0.005096874,-0.009129068,0.00046013447,-0.03119287,0.02987901,0.030264106,-0.028225357,0.011547252,-0.0013995167,-0.012345762,-0.017374678,0.025846815,-0.011252766,0.055453993,-0.009440544,-0.010539203,-0.04122805,-0.006252166,-0.0048137144,-0.009819978,0.013059325,0.03853237,0.031147566,-0.004669303,-0.009083763,0.00073055195,0.013693602,-0.020953815,-0.0297884,0.004312522,-0.03232551,0.017793754,-0.018699866,0.04671002,0.021984518,0.020387497,0.00206565,0.0009960142,0.0018674381,-0.007820871,0.013240547,-0.018575275,-0.017714469,-0.003644265,0.040072758,-0.036969326,-0.0014752619,-0.017612532,-0.0029222078,-0.002120866,0.00622385,-0.0004024407,0.009899262,-0.0072941934,0.0064447145,-0.017227435,-0.0056546987,-0.054049518,-0.0073055197,-0.001622505,-0.017929671,-0.024419691,0.00022493496,0.020353518,-0.007045013,-0.0007142703,0.032914482,0.03420569,0.023717456,-0.021825949,-0.0007312599,-0.038894814,-0.051965464,-0.025892122,-0.028701065,0.022675427,0.03959705,0.0049467995,-0.0011453809,0.00317422,0.02580151,0.0017570058,-0.0000019328966,0.015007463,-0.0126175955,-0.02319644,0.0002746649,0.013274526,-0.0046523134,0.048794076,0.0148942,0.009247995,-0.0076962803,0.009701051,-0.00090752676,-0.004711777,0.0124477,0.01828079,0.016989581,0.026254566,0.022222372,-0.00074754155,-0.016536525,-0.007752912,-0.0041681104,0.022777366,0.023185115,-0.007231898,0.0066599157,-0.0062974715,-0.03126083,-0.018190177,0.0064786933,-0.019413428,-0.01159822,-0.014645019,0.007815207,-0.026911495,-0.010754405,0.042745784,0.03314101,0.020897184,-0.03420569,0.028134746,-0.010205075,-0.017907018,-0.010992259,0.015211338,-0.012209846,-0.025325801,0.009327279,-0.0338659,0.015856942,-0.00008994744,0.03207633,0.010108801,0.01025038,0.0011418414,-0.0091970265,-0.010442929,-0.046981853,0.016445914,0.0056830146,0.0043408377,0.028293315,-0.03536098,-0.012844123,-0.022596143,-0.040525813,0.018892413,0.0021166187,0.03651627,0.010363644,-0.0105335405,0.019538017,0.014871546,-0.008596728,0.009757683,0.019288838,0.015913574,-0.0110035855,-0.01971924,0.015902247,0.0013973931,0.009650082,-0.018258136,0.045849215,-0.013331158,0.020455455,-0.036674842,0.014010741,-0.027251288,0.04856755,0.0067561897,-0.02385337,0.0054678135,0.013546359,-0.013840845,0.0002351995,0.056314796,0.005632046,-0.020240255,0.030014927,0.018609254,-0.0175559,-0.010828027,0.00783786,-0.028678412,-0.045192286,0.0011177729,0.041182745,0.008143673,-0.008862898,-0.018439358,-0.008426832,0.007911482,0.018065587,0.013580338,-0.027047412,0.016445914,-0.0038679612,-0.008256936,0.0028967236,-0.013591665,-0.021610746,0.043312106,0.002443668,-0.0025781689,0.025121927,0.0083305575,0.031487357,0.026843539,0.016593156,-0.03715055,-0.008341884,0.003126083,-0.018507317,-0.007197919,-0.016174082,0.0064617037,-0.03599526,0.005351718,-0.007724596,-0.025937427,-0.014520428,-0.012832797,-0.031102259,-0.017374678,-0.03493058,0.01228913,0.01599286,-0.01307065,-0.019186899,0.030264106,0.0015290623,-0.024963357,0.00771327,0.010182422,-0.022811344,-0.050515685,0.02972044,-0.007673627,0.01661581,0.020047706,0.032959785,-0.009604776,-0.008698666,0.0015687046,0.032280203,-0.014543081,-0.01808824,-0.007633985,0.02241492,0.0044342806,0.010680784,0.012266478,-0.044716578,0.01542654,0.021270955,0.041658454,0.0051025376,0.02931269,0.03259734,-0.042315383,0.01307065,-0.001783906,0.023117157,-0.0043295114,-0.0073281727,0.04852224,-0.018971698,-0.02342297,0.009604776,0.03746769,0.0070903185,0.013081977,0.0038934457,-0.040367246,-0.020059032,-0.009967221,0.018065587,0.01608347,0.017102845,0.010907311,0.038645633,0.009072436,-0.01849599,0.021803295,0.011745463,-0.018824456,-0.011745463,0.015098074,-0.021338914,0.003870793,-0.025552329,0.026503745,-0.05037977,-0.0070903185,0.023060525,-0.011099859,0.019005679,0.009695387,-0.009802988,-0.0033157999,-0.018292116,0.028769024,0.00083390524,0.02229033,0.022732059,-0.021588095,-0.002670196,0.016411936,-0.017725796,0.010120127,0.011269756,-0.0063597662,-0.01683101,-0.0042360686,-0.0018221325,0.0078038806,-0.004496576,0.015698373,-0.007877503,0.002248288,0.017295394,0.03660688,0.011383019,0.0017470953,0.0069544017,0.0016748895,-0.0310343,-0.051784243,-0.02335501,0.0049213152,-0.0030496297,0.04106948,0.014407164,0.00021024606,-0.018099567,-0.017601205,-0.0145997135,-0.039529093,-0.037694216,0.04582656,-0.0076283216,-0.0064163986,-0.038237885,-0.0008027577,0.015936228,-0.008364537,-0.011213123,-0.020591373,0.020965142,0.01498481,-0.023377663,-0.020342192,0.017669164,-0.015415213,-0.016627137,-0.030105537,-0.018042935,-0.018767824,0.012832797,-0.034092426,0.031555314,-0.017533248,-0.022539511,0.0032081993,0.019821178,0.0063597662,0.011779442,0.01595888,-0.018133545,-0.039143994,-0.016185407,-0.002709838,0.0073564886,-0.0039160983,0.0514218,-0.032189593,0.01191536,-0.006557978,0.010256044,0.027002107,-0.010301349,-0.03860033,0.004938305,0.0147469565,-0.0064843567,-0.0047174403,0.030445328,0.034001816,-0.010052169,-0.016581831,-0.005275265,0.014622366,0.036878716,-0.0019127437,0.020115664,0.009434881,-0.010878995,0.008738307,-0.033163663,-0.009599113,0.0088742245,-0.017974976,0.023558885,-0.0032818208,0.012549637,0.028904941,0.010731752,-0.0009846878,-0.02101045,0.007192256,-0.030898385,-0.01736335,0.0031713885,-0.034250993,-0.013308505,-0.0200024,0.04458066,-0.019707914,-0.0012253735,0.0049581258,-0.00003718683,0.028633106,-0.004187932,-0.016287345,0.021112386,-0.024623565,0.017974976,-0.011139502,-0.017940998,-0.030875731,0.02291328,-0.00852877,-0.013353811,-0.021236977,-0.016004184,0.05128588,-0.002562595,-0.01106588,-0.018518643,0.032393467,-0.0029448606,-0.02605069,-0.006376756,-0.0015389728,-0.021622073,-0.008166325,0.011116849,-0.02799883,-0.0038226556,0.015732352,0.0032223572,0.013093304,-0.03135144,-0.0047967248,-0.010595835,-0.008647697,-0.00863637,0.01828079,-0.021338914,0.015335929,0.026413135,-0.02065933,-0.008896877,-0.00064560404,0.018462012,0.015086748,0.029222079,0.0048108827,-0.019617302,0.009887936,0.007254551,-0.061298408,-0.011213123,0.0108167,-0.00037129314,0.01620806,0.027659038,0.063654296,0.0035423276,-0.013648297,0.03839645,-0.002702759,-0.0046239975,-0.040978868,0.016978255,-0.0058387527,-0.000877795,0.012005971,-0.012900755,0.0334808,0.0021222818,-0.00023413765,-0.006671242,-0.0029873347,0.039325215,0.0009655745,0.008687339,-0.022324309,-0.010335328,0.028225357,0.0035932963,0.036380354,-0.009955894,0.02972044,0.0159249,-0.03194041,0.0011821917,-0.007401794,-0.022766039,0.009242332,0.021293608,-0.016287345,0.013535033,0.014282574,-0.011077207,-0.017759776,0.01608347,-0.036856063,0.0015205675,0.016955601,0.027568426,-0.0075207213,0.030060232,0.05273566,-0.008981825,-0.015539804,0.03660688,0.028836982,-0.020025052,0.02849719,0.009208353,0.0072149085,-0.00851178,0.03404712,-0.0103126755,-0.023943983,-0.050107937,0.008143673,0.009780335,0.032189593,0.07987368,0.023309704,-0.016219387,0.030467981,0.0005132269,0.003434727,-0.006988381,-0.05128588,0.0026079006,-0.007169603,-0.055816434,-0.018462012,-0.02131626,-0.02793087,-0.025121927,-0.0119719915,-0.0072998567,-0.000121935635,0.009434881,0.0091234045,0.04156784,-0.00056030223,0.022426246,0.02225635]},{"id":"interface-GatewayRelationshipRemoveDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipRemoveDispatchData\nDescription: RELATIONSHIP_REMOVE — relationship removed\nProperties: id: string","meta":{"url":"/docs/typedefs/GatewayRelationshipRemoveDispatchData"},"embedding":[0.0042661508,0.0004931381,-0.038178433,0.025058934,0.012888114,0.03910397,-0.04238963,-0.017504234,-0.0044888584,-0.024642443,0.014947435,-0.048822116,0.010747807,-0.0057036267,0.05604131,0.0074563636,0.020477524,0.047989134,-0.013084791,0.11199007,0.002896644,0.033273082,0.035494372,-0.001874214,0.007959625,0.04447209,0.035170436,0.0032133514,0.024480473,-0.025359735,0.06326051,-0.023832597,0.055115774,0.01608122,0.022988044,0.010331315,0.0070167333,0.026007611,-0.017238142,0.005752796,-0.01829094,-0.0071324254,-0.0221782,0.014762327,-0.007120856,0.04713301,-0.020303985,0.026447242,0.02038497,-0.018348787,-0.004931381,-0.04919233,-0.021090692,0.04088563,0.0005289304,0.00408972,0.033805266,0.01574571,-0.023138445,-0.00088359934,0.022918629,0.015815128,0.00021023446,0.016324172,0.0021374137,0.018337216,-0.034777083,0.06525041,0.009313224,0.03702151,0.02857598,0.024017705,-0.018985095,0.027141396,0.012089837,-0.0006572764,0.012355929,-0.017596787,0.004951627,-0.0318385,0.025915058,0.035864588,-0.03403665,-0.04685535,0.018707432,-0.014010328,-0.04595295,-0.024318505,0.01979494,0.009394208,-0.030912962,0.018348787,-0.011170084,-0.036697574,-0.050534364,-0.07459834,-0.000046728812,-0.009353716,-0.046253752,0.046924766,0.016717525,-0.07746751,-0.04195,-0.016000234,-0.015398635,-0.014901158,-0.041140154,-0.007334887,-0.036095973,-0.006201103,-0.028298318,-0.023508659,-0.011233714,0.04567529,0.013327744,-0.006455626,0.027465334,-0.031306315,0.023682198,-0.024156535,-0.027395919,-0.019158632,0.0093479315,-0.018522324,-0.04178803,0.017076172,-0.01993377,-0.012136114,-0.040214617,-0.02751161,0.06233497,0.0015546143,0.00006629706,-0.029316409,0.0064035645,-0.0022964906,-0.005642888,-0.020581646,0.01309636,-0.006206888,0.037114065,-0.04951627,0.0076530403,0.040631108,-0.031653393,0.017643064,0.031722806,0.044402674,0.03523985,0.009816485,-0.030010562,0.04313006,0.006559749,-0.016729096,0.026053889,-0.01546805,0.019413155,-0.018360356,-0.009770208,-0.042759847,0.0030195669,-0.06742543,-0.0049950117,-0.00064209185,-0.057337064,0.0026941826,-0.019019801,-0.007496856,-0.037391726,0.004697104,0.010169346,-0.051922668,-0.06339934,0.0027592594,-0.06960044,0.04909978,0.011540299,-0.015398635,0.008711624,-0.0012415221,0.03797019,0.023578076,0.015549035,-0.05742962,-0.032648344,-0.0011446299,-0.008393471,0.043222614,-0.030357638,-0.006380426,-0.00083949167,0.04474975,-0.0058077495,0.015398635,0.036790125,-0.0011279992,-0.017434819,0.0013716759,-0.00072343793,-0.011632853,0.017874448,-0.028737947,0.035748895,0.009076055,-0.017862879,-0.027048841,-0.037438,-0.044402674,0.008121594,-0.01753894,0.03496219,-0.002765044,-0.03362016,0.01635888,0.022189768,-0.012205529,0.025683673,0.026794318,0.026146442,0.018013278,-0.00832984,-0.018267801,0.029432101,-0.039219663,0.0221782,0.01353599,0.012679867,-0.017180296,-0.052616823,-0.0136979595,-0.036026556,0.019251186,0.009324793,0.009984239,0.020813031,0.030519608,-0.022085644,-0.011389899,-0.023624351,0.017932294,-0.031861637,-0.037530556,-0.007820794,-0.0046421504,0.030079978,0.013651682,0.06011368,-0.0032538436,-0.025220904,0.04019148,0.04683221,0.04822052,-0.012170821,-0.034869637,-0.023323553,-0.012587314,0.0058164266,-0.011332053,0.008202579,0.017457956,0.0309361,-0.04463406,0.02707198,0.021935245,0.00036623818,-0.016601834,0.058355156,0.030889824,-0.04060797,-0.013478144,0.005518519,-0.034545697,0.05298704,-0.036234803,-0.0407468,-0.019829648,-0.0101867,0.0056023956,-0.009324793,-0.030079978,0.01234436,-0.03611911,0.0036819049,0.009232239,-0.015190389,0.06205731,-0.025845643,0.07233078,-0.00662338,0.03375899,-0.01799014,-0.009758639,0.0630754,-0.05715196,0.017388541,0.030982377,0.024920104,-0.032324407,0.028529702,-0.005868488,0.036766987,-0.003436059,-0.014068174,-0.02348552,0.0075951945,0.018429771,0.0039017203,-0.016254757,0.038571786,0.024804411,-0.039497323,-0.020396538,-0.014716051,-0.004205412,-0.020859307,-0.01309636,0.020500662,0.03496219,-0.0035257204,-0.0043876274,-0.0035922434,-0.0047404887,-0.000050389386,-0.049655102,-0.047063597,-0.02781241,-0.028159486,-0.040214617,0.032648344,0.033990376,0.021009708,-0.04148723,0.009382639,0.004107074,0.037877634,0.044888582,-0.02515149,0.05636525,-0.009052916,0.020940293,0.06802703,-0.004410766,-0.03598028,0.018464478,-0.0033724282,-0.0114361765,-0.013408729,-0.015190389,-0.0010130301,-0.00516855,-0.030750992,-0.010979191,-0.053912576,-0.04132526,-0.0051714424,0.0032335976,0.03928908,-0.034753945,-0.006796918,0.026100166,-0.009203317,0.012749283,-0.021310506,-0.00021601906,-0.013721097,-0.014461528,-0.041973136,0.05562482,0.020176724,-0.036905818,-0.0050557503,-0.0212758,-0.016347311,0.008885163,-0.007242333,-0.041695476,-0.031653393,-0.0038294126,0.029108163,-0.008688486,0.010377592,0.018834693,-0.04116329,0.015988665,0.011528729,0.0029559364,-0.05280193,0.017897587,-0.07524622,0.008746332,0.03972871,-0.025058934,0.007184487,0.016069649,0.022074075,-0.03005684,0.04033031,0.020419678,0.017446388,-0.003719505,0.04016834,0.0060622725,0.014241712,-0.00033677282,-0.009828054,0.004523566,-0.0048503964,0.006577103,0.019968478,-0.024596166,0.041533507,0.02586878,0.0208246,0.032949146,0.024619306,-0.06872118,0.03628108,0.009747069,-0.03720662,-0.009625593,0.025799366,0.04697104,-0.009238024,-0.013987189,-0.0067043644,0.025197767,0.030589024,0.053496085,-0.006606026,-0.06372327,-0.06080783,0.05238544,0.06279774,-0.014368974,0.039936956,0.016347311,0.020408109,-0.0074910712,-0.045721564,-0.028876778,-0.0046623964,-0.018545464,0.028228901,0.019679246,0.012170821,-0.0076356865,0.04835935,-0.014507805,0.0045958734,0.027719857,-0.047572643,0.008428179,-0.044865444,0.026979426,-0.023716906,-0.030311363,-0.031931054,0.0029009825,0.024225952,-0.014704482,-0.01963297,-0.01815211,0.009405778,0.049932763,-0.011927868,0.00088721473,0.013998759,-0.004292181,-0.004948735,-0.0024251982,-0.015005281,-0.013651682,0.038594924,-0.001524245,0.0036587666,-0.006461411,-0.032000467,-0.002866275,0.023080599,0.00624738,-0.013374021,0.03306484,-0.047225565,-0.04403246,0.03348133,0.07533877,0.013374021,-0.018418202,-0.020130446,0.050488085,0.0071150716,-0.0040723663,0.02498952,-0.010886638,-0.012159253,0.006056488,0.052894484,-0.022988044,0.015537465,-0.032139298,0.020778323,-0.03880317,0.009544608,-0.03195419,-0.02991801,-0.04132526,-0.009862762,-0.036859542,-0.051367346,-0.025359735,0.016185341,-0.00035177666,-0.017793464,-0.052477993,-0.026539795,0.0071324254,-0.028228901,0.020500662,-0.038363542,-0.012622021,-0.047572643,-0.00096024544,0.010267684,0.012957529,-0.022814507,-0.018395063,-0.0050094733,-0.054976944,0.013894636,0.02348552,0.04433326,-0.039451048,-0.0033839976,0.06858235,0.03378213,-0.017897587,-0.009828054,-0.013038513,0.03496219,0.01829094,0.0022111675,-0.0052495347,-0.0034215974,0.008983501,-0.013003806,0.027187672,0.05280193,0.026146442,0.0215766,0.02276823,-0.006409349,-0.0044425814,-0.010944484,-0.013998759,-0.013350883,0.008642209,-0.0034794435,-0.0018452909,0.014866451,-0.045305073,-0.016162204,-0.031861637,0.024411058,-0.037854496,-0.023254137,0.04120957,0.000046593235,-0.008341409,-0.025035797,0.00039733047,0.02230546,0.013883066,-0.016717525,0.015086265,0.031005515,0.041764893,-0.038710617,-0.01516725,0.039196525,-0.06363072,-0.038594924,-0.044541504,-0.020951862,0.054514173,-0.0650653,0.03362016,0.038571786,-0.045143105,-0.0154911885,0.020037893,-0.011135376,-0.023994567,0.02408712,-0.020165155,0.014658204,-0.004726027,0.037229758,-0.0012299529,-0.0002404229,0.007005164,0.050904576,-0.0009992915,-0.046878487,-0.009718146,0.07519995,0.02660921,0.026377827,0.003482336,-0.03854865,-0.0028026442,-0.015641589,0.028136348,0.0071497792,-0.025313457,-0.0027563672,-0.0048041195,-0.003152613,0.013316175,-0.00654818,-0.0109676225,0.017573649,0.03598028,-0.016277896,0.0315377,0.0016486142,0.030565886,-0.071729176,-0.00047759197,-0.02214349,-0.054976944,0.018545464,-0.021888968,-0.020847738,-0.035679482,0.0058800573,-0.011511376,0.016578695,0.013177344,-0.008989286,-0.02929327,0.0012668298,-0.009833839,0.009851193,0.013894636,0.035494372,-0.015699435,-0.007976979,0.034985326,-0.010105715,0.020720476,-0.02529032,-0.044402674,0.013917774,-0.024734996,0.018082695,0.006785349,-0.03866434,0.08066062,-0.007051441,0.038780034,0.01963297,0.03672071,0.0059234416,-0.013038513,-0.014068174,0.002442552,0.02795124,0.019274324,0.0036124897,0.0015387066,0.010447008,0.017215002,0.095145285,0.013605406,-0.022189768,-0.00050289964,-0.0023152905,0.0051280577,0.003719505,-0.0007961071,-0.008462886,-0.010464362,-0.008862024,-0.0021793523,0.0009841069,-0.01205513,0.05530088,-0.021067554,-0.002043414,0.009903254,0.022351738,0.014207005,0.029594071,-0.008486024,-0.009804916,0.009920608,0.014646635,0.046184335,0.00071620714,-0.0073233177,-0.009926393,-0.0027910748,0.009851193,-0.010470146,-0.021495614,-0.029732902,0.032949146,0.0022473214,0.005177227,-0.016463004,-0.010747807,0.0077745174,-0.023763182,-0.037947048,0.010065223,0.025244042,-0.038895726,0.026053889,0.0023673521,-0.011881591,0.018927248,0.0074910712,-0.0091339005,0.012888114,0.008509163,0.03528613,-0.0055040573,0.02394829,-0.02929327,-0.03820157,-0.00524375,0.01605808,-0.032347545,0.03253265,-0.012309653,0.030265085,0.015757281,0.024596166,0.0007042764,0.012413776,-0.010880853,0.03306484,-0.010215623,-0.039080832,-0.040075786,0.007976979,0.0011728299,-0.00048156886,0.012286514,0.00033912284,-0.010990761,0.0060159955,-0.02394829,-0.013188913,-0.0034649821,0.0052206116,0.01608122,0.0065828874,-0.005668919,0.022386445,-0.0070167333,-0.023809459,0.033666436,0.048729565,-0.03616539,0.025197767,-0.03202361,-0.009504116,0.022097215,0.023138445,-0.0052177194,0.019008232,-0.017596787,0.012656729,0.023809459,-0.0073117483,0.0089603625,-0.0034881204,-0.023786321,0.013397159,0.0044194427,-0.035610065,-0.027233949,-0.052200332,0.005472242,0.018834693,-0.021923676,-0.02454989,0.019424723,-0.023300413,-0.008821532,0.03938163,-0.01167913,-0.07640314,0.016092788,0.020419678,0.00908184,-0.08732449,0.040492278,0.051089685,-0.016185341,0.016925773,0.003652982,0.02438792,0.036790125,0.02586878,-0.08047551,-0.010319746,-0.025220904,-0.012541037,-0.044888582,0.04863701,-0.0136979595,0.049469993,-0.013466574,0.05141362,0.033735853,-0.0028518133,0.013107928,-0.020292416,-0.009781777,-0.007809225,0.012286514,-0.015664726,-0.0023904906,0.02529032,0.02276823,0.069831826,-0.01694891,-0.064741366,0.027233949,0.007919133,0.010406516,-0.0054635652,-0.004731812,-0.01619691,0.029085025,0.030519608,-0.0155721735,0.0070398715,0.018383494,-0.013940913,0.0046710735,-0.0061779646,0.010898207,0.004107074,0.00781501,-0.010105715,0.015583742,0.004552489,-0.022652537,0.0044136583,0.0075431326,0.0097355,0.00091396854,-0.010718884,-0.054005127,-0.0040260893,0.0410476,0.009654516,-0.017284418,0.043546554,-0.022062507,-0.023219429,-0.005368119,0.02975604,-0.002603075,0.011285776,0.00083804555,0.0050297193,0.019702386,-0.003598028,0.048729565,-0.014623497,-0.011135376,0.021484045,0.01561845,-0.0042545814,-0.0041880584,0.024896966,0.025915058,0.024063982,-0.0084918095,-0.027557887,0.026215857,-0.020408109,-0.0008452763,0.0027997517,0.020500662,-0.028437149,-0.0105395615,-0.0019161524,0.0033868898,-0.008977717,-0.028737947,-0.0037166127,-0.0116097145,-0.059003033,0.01995691,-0.045559596,-0.021588169,-0.022212906,-0.01950571,0.052755654,0.009538824,0.006027565,0.017631495,-0.027257087,0.034314312,-0.026285272,-0.012390637,-0.02556798,-0.041464094,0.017955434,0.013142636,0.0007707994,-0.008890947,-0.035725757,0.008092671,-0.0039017203,0.023173152,0.0008864917,0.03986754,0.004844612,-0.025891919,-0.0026551364,0.0199222,-0.015109404,0.00520615,-0.013397159,0.007005164,0.040122062,-0.009226454,-0.010580054,0.007901778,-0.028807363,-0.006004426,0.0016529526,0.008642209,-0.05904931,-0.014646635,0.019066079,-0.009058701,-0.005252427,0.010846145,-0.0008741993,-0.037738804,0.005631319,0.00043565352,-0.0443564,-0.02438792,0.029594071,0.052477993,-0.003748428,0.006143257,-0.0030716285,0.03718348,-0.0046421504,0.02110226,0.00550695,-0.00490535,0.005255319,-0.007930702,-0.0007498302,0.017596787,-0.013131067,-0.01457722,-0.0053363037,0.030311363,0.0033087975,-0.0007845379,-0.019494139,0.023855736,0.0057499036,-0.026354687,0.018834693,-0.0006626995,-0.0093595,-0.0017671987,0.014623497,-0.026539795,0.03729917,0.013455005,0.004639258,-0.02438792,0.0046623964,-0.0013217836,0.023994567,0.041117016,0.04116329,0.01709931,0.006218457,-0.009301655,-0.0019349525,0.020870877,-0.027395919,-0.003152613,0.018244663,-0.0027708288,0.019945338,-0.00035539205,0.070988744,-0.006802703,0.030866684,0.012633591,-0.011129592,-0.012274945,-0.0037831357,0.010354454,-0.001665968,-0.02765044,0.00024331521,0.026077027,-0.046508275,-0.0066696564,-0.0044425814,-0.0029675055,0.010360238,0.0026348904,0.004043443,0.031861637,-0.02663235,0.008642209,-0.019089216,-0.0035546436,-0.03880317,-0.003219136,-0.0053565498,-0.0060796263,-0.02811321,-0.019771801,0.01800171,0.001467122,0.023809459,0.038039602,0.005133842,0.020570077,-0.02200466,-0.021368353,-0.0058569186,-0.045698427,-0.015699435,-0.049701378,0.026956288,0.031861637,-0.0007599533,-0.004581412,0.012112976,0.007467933,-0.023381397,0.002925567,0.0010072454,-0.010065223,-0.0015719681,-0.0054201805,0.044541504,0.0006120842,0.0074332254,-0.012402206,-0.0035315051,-0.015606881,0.023427675,0.012101406,-0.009157039,0.020905584,0.020118877,-0.01456565,0.07103503,0.03854865,-0.017527372,-0.017828172,-0.012691436,-0.016382018,0.0134434365,0.030079978,0.007051441,-0.0052871346,0.0027462442,-0.033805266,0.006368857,0.038756896,-0.0206742,-0.01875371,-0.016902633,-0.003890151,-0.0021562139,-0.042482182,0.031167485,0.020037893,0.0068489797,-0.034129206,-0.0006232918,-0.0061085494,0.0014251836,-0.027881825,0.018233094,-0.01653242,-0.034268036,0.010770946,-0.038178433,0.00397692,-0.029085025,0.03706779,0.008671132,0.01561845,-0.00041974583,0.012066699,-0.0062878723,-0.03822471,0.024943244,0.0041678124,0.010007377,0.011951007,-0.027858688,-0.023022752,-0.033550743,-0.014357405,0.010071008,-0.009353716,0.034684528,0.0037715663,-0.012228668,0.0075894096,0.034915913,-0.023427675,0.004535135,0.0045091044,0.0067737796,-0.009457839,-0.015676295,0.014762327,0.029108163,0.015711004,-0.02334669,0.038756896,-0.032486375,-0.009637162,-0.047618918,-0.0015097834,-0.03362016,0.009110763,0.021160107,-0.028066933,0.014218574,0.0027881826,0.01293439,0.009480977,0.060761556,-0.013408729,-0.011800607,0.026262134,-0.01653242,-0.0018510756,-0.030565886,0.006438272,-0.0342449,-0.021819552,-0.0123327905,0.017168725,0.03556379,-0.012575745,-0.009301655,0.00848024,0.0050210427,0.029478379,0.009023993,-0.012610452,0.0206742,0.009966885,-0.018348787,-0.011187438,-0.01619691,-0.016150635,0.04808169,0.029085025,0.005023935,0.027419057,0.013142636,0.012066699,0.002725998,-0.014449959,-0.054838113,0.010597408,0.034753945,-0.0215766,-0.0016775372,-0.037692524,0.02991801,-0.025891919,-0.006455626,0.0025828287,-0.01100233,-0.01383679,-0.034476284,-0.03306484,-0.023242567,-0.017862879,0.005781719,0.024179675,-0.019274324,-0.017076172,0.0061953184,-0.0018640909,-0.02753475,-0.017955434,-0.013964051,-0.018198386,-0.03810902,0.052431714,-0.0006019611,0.021807984,0.023925152,0.024063982,-0.016578695,-0.0035662127,0.026377827,0.029871732,-0.015815128,-0.00804061,-0.0099611,0.022652537,-0.0053507653,0.011279992,0.012737714,-0.03970557,-0.012517898,0.010909776,0.03915025,-0.0055821496,0.012448483,0.046461996,-0.026238997,0.02201623,-0.030265085,0.009076055,-0.002555352,-0.039034557,0.044217568,-0.030218808,-0.026400965,-0.011575007,0.046323165,0.0045871967,0.0029313518,-0.032231852,-0.009504116,-0.024318505,0.010504854,0.017423248,0.0056284266,0.0029212285,0.008324055,0.0064729797,-0.022479,-0.0036124897,0.024063982,0.00654818,-0.023716906,-0.012517898,0.0076183327,0.008000117,-0.00062401494,-0.028066933,0.04301437,-0.062844016,-0.033573885,0.03646619,-0.013177344,-0.004439689,0.0120782675,-0.029617209,0.00832984,-0.017284418,0.037831355,0.0067043644,0.028182626,0.01383679,-0.02438792,0.007838148,0.020778323,-0.009307439,0.018244663,-0.005223504,-0.0119047295,-0.010614761,-0.009266947,-0.018418202,0.018094264,-0.029478379,0.001599445,-0.007907564,0.013732667,0.03523985,0.024920104,0.014588789,0.011823745,-0.013616974,-0.013987189,-0.01859174,-0.05307959,-0.006160611,-0.0035633205,-0.021009708,0.01858017,0.017943863,0.021831123,-0.0051916884,-0.03139887,-0.018719,-0.032463238,-0.010400731,0.044865444,-0.006467195,-0.03417548,-0.019123925,0.024781274,0.027048841,-0.025382873,0.0074447943,-0.008399256,0.050904576,0.021484045,-0.0090934085,0.0015444912,-0.009376855,-0.018996663,-0.019413155,-0.021622876,-0.012749283,-0.008017471,0.009816485,-0.021773277,0.029270133,-0.020535368,-0.015178819,0.006461411,-0.0011800607,0.028020656,0.0006728226,0.023277275,-0.0026912903,-0.02751161,-0.0024396598,0.000059879763,0.029108163,-0.0104585765,0.04546704,-0.02021143,0.0075894096,-0.01767777,-0.007687748,0.005275565,-0.012737714,-0.03331936,-0.005073104,0.012066699,-0.0010846145,-0.023740044,0.038039602,0.019690815,0.00486775,-0.0074158716,0.006206888,0.0029935362,0.011638638,-0.022398014,0.015560604,0.013061652,-0.0039017203,-0.011655991,-0.03625794,-0.0034013514,-0.0019031371,-0.010475931,0.023716906,0.03507788,0.010180916,0.021634445,0.02201623,-0.012957529,-0.052477993,0.0315377,-0.008567009,-0.004410766,0.0104585765,-0.040931907,-0.011199007,0.006455626,0.028344594,-0.010007377,0.022374876,-0.0030311362,0.018568601,0.028252041,-0.017319126,-0.021518754,0.015872972,-0.009411562,-0.0017339372,0.012240237,-0.005747011,-0.020535368,0.020801462,-0.020581646,-0.03216244,-0.012679867,-0.019100785,0.04238963,-0.008578578,-0.0007031918,-0.021727,0.024804411,-0.010198269,-0.03167653,0.013940913,-0.00015537103,-0.016115926,-0.006004426,-0.02352023,-0.011789038,-0.0002715152,0.0060622725,0.024434198,-0.010256115,-0.027141396,0.0025958442,-0.0089198705,0.012911252,-0.00198846,0.016694387,-0.015734142,0.002717321,0.025845643,-0.009660301,-0.02290706,0.0039393203,0.031213762,0.010556915,0.030427054,-0.0070572253,-0.0049458425,0.0007932148,0.025822503,-0.051691286,-0.015421773,0.010024731,-0.018857833,0.0050759963,0.022826076,0.06252008,-0.01649771,-0.01948257,-0.005781719,-0.0148086045,-0.01637045,-0.008133163,0.010990761,-0.016555557,0.012390637,0.0046623964,-0.012922822,0.025197767,0.024827551,0.016914202,0.0022415367,0.0075951945,0.018927248,0.0010094147,0.012240237,-0.00632258,0.0013015375,0.03348133,0.0059205494,0.008734763,0.019204909,0.02991801,0.01919334,-0.028275179,-0.00420252,-0.010984977,-0.014866451,-0.0019956909,0.009272732,-0.017423248,0.010076793,0.020003185,0.008138948,-0.028899917,0.0056573497,-0.016786942,0.0018134756,0.020940293,0.025776228,-0.0035286127,0.03778508,0.03271776,-0.035934005,-0.0070225177,0.021877399,0.038294125,-0.025984474,0.03493905,0.012101406,-0.009047132,-0.024133397,0.01934374,-0.009492547,-0.019864354,-0.029316409,0.017619925,-0.0034649821,0.018568601,0.04461092,0.026701765,-0.008121594,-0.018105833,0.016243188,-0.002866275,-0.012390637,-0.03403665,-0.00027458827,-0.031792223,-0.03797019,-0.0107940845,-0.021935245,-0.027696718,-0.010250331,-0.0017628602,0.016092788,0.009920608,-0.0075431326,-0.005527196,0.03017253,0.017886018,0.027187672,0.010921346]},{"id":"interface-GatewayRelationshipUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayRelationshipUpdateDispatchData\nDescription: RELATIONSHIP_UPDATE — relationship updated\nProperties: id: string, type: number","meta":{"url":"/docs/typedefs/GatewayRelationshipUpdateDispatchData"},"embedding":[-0.002009237,-0.010216832,-0.025762271,0.031861544,0.019585932,0.023868635,-0.0022762178,-0.011350812,-0.026180632,-0.027920136,-0.014477516,-0.027920136,-0.015435344,-0.0041753594,0.031597316,-0.0017161085,0.01529222,0.03679381,-0.018683152,0.08239523,-0.02121534,-0.001044528,0.068523236,0.015611496,0.016283076,0.0461519,0.019662999,0.040052626,0.0068754437,-0.03791678,0.046680354,-0.009462681,0.06455981,0.007260777,0.01004068,0.006490111,-0.004158845,0.03223587,0.00027454985,-0.032367982,-0.0055900826,-0.001944556,0.006126797,0.002749627,-0.043113273,0.030848669,-0.01893637,0.019255647,0.008835138,-0.010448032,-0.00455794,-0.03421758,-0.012660946,0.0049350164,0.043289423,0.024331035,0.045094986,0.00497355,-0.020455685,-0.016822543,0.039634265,-0.0003664105,-0.01096548,-0.022481436,0.013563726,0.03677179,-0.038247064,0.053726446,0.045359213,0.013662811,0.036925923,0.057954103,-0.00650112,0.023208063,0.010420509,0.019585932,0.004202883,-0.04225453,0.018793248,-0.008526872,0.011725136,0.04428028,-0.062886365,-0.047032658,0.031178955,-0.01256186,-0.03738832,-0.06566077,-0.010833366,0.0035450647,-0.04866207,0.03679381,-0.03906177,0.00227897,-0.05271357,-0.0858302,0.010833366,-0.013101326,-0.029637622,0.058086216,0.014213287,-0.07512895,-0.036441505,-0.04042695,-0.029527526,-0.026819184,-0.024771415,-0.002837703,-0.021622693,-0.016789515,-0.043509614,-0.018077629,-0.011626051,0.029747717,0.019519875,-0.042738948,0.026158614,-0.023009893,-0.004497388,-0.041241653,-0.033909313,-0.027369661,0.0066992915,-0.015424334,-0.022789702,0.001756018,-0.009556262,-0.003919388,-0.03943609,-0.021622693,0.043267407,-0.018551037,-0.0003677867,0.0086755,-0.0052267686,-0.010398489,0.0117581645,0.005419435,-0.0031019317,-0.031795487,0.03355701,-0.043223366,-0.0021963988,0.020037321,-0.02560814,0.024110844,0.00079819,0.031421162,0.040008586,-0.007508491,-0.053946637,0.060816575,-0.04154992,-0.015545439,0.037278228,-0.0004844188,0.013739878,0.0018702418,-0.01084988,-0.03630939,0.010238851,-0.05663296,-0.017218886,0.0049515306,-0.0548274,-0.026202653,-0.04091137,-0.0120003745,-0.05777795,0.0035313028,0.030870687,-0.06751036,-0.040118683,0.026532937,-0.034768056,0.01644822,0.014862849,-0.021743797,-0.02968166,0.034041427,0.061256956,0.044896815,-0.03148722,-0.044874795,-0.009286528,0.011103098,-0.03309461,0.051656656,-0.022921816,-0.03014406,-0.0068754437,0.034129504,0.0080919955,0.013960068,0.01256186,-0.031861544,0.0027028366,0.00980948,-0.00029347246,0.0018633609,0.018529018,-0.066365376,0.042122416,-0.0022762178,-0.017395038,-0.013365555,-0.029043108,-0.0452271,-0.005675406,-0.015809668,0.04361971,0.0045304163,-0.036441505,0.03012204,-0.01577664,-0.018529018,0.015512411,-0.0089067,-0.014334392,-0.0012055422,0.0003880855,-0.010409499,0.03564882,-0.042496737,0.011158146,0.027677927,0.02194197,0.005276311,-0.028866956,0.00490474,-0.02215115,-0.0006007068,0.026158614,-0.010717765,0.012429746,0.021754807,-0.015611496,-0.008361729,-0.008967252,0.034856133,-0.00924249,-0.016987685,-0.011670088,0.011064566,0.008625957,0.018727189,0.049851097,0.006286435,-0.022107111,0.06768651,0.018782238,0.029505508,0.005375397,-0.039215904,-0.024264976,-0.026158614,0.018518008,0.004274445,0.034812097,0.040470988,0.0146316495,-0.04130771,-0.007139672,0.01736201,-0.017516144,-0.040448967,0.048970334,0.05337414,-0.02673111,-0.040779255,0.021303417,0.009000281,0.034151524,-0.022767683,-0.026136596,-0.025916405,-0.005273559,0.02353835,-0.013123346,-0.009479195,0.0033579029,-0.026224671,-0.018683152,0.023846615,0.006578187,0.07129764,0.0033331315,0.06116888,0.0113618225,0.008433291,-0.020741932,-0.008647976,0.030011944,-0.044390377,0.036639675,0.057866026,0.019464828,-0.046019785,0.03542863,0.0032312935,0.035406608,-0.016591344,-0.021138273,-0.0032670745,-0.005372645,0.014345402,0.024000749,-0.024022767,0.020830007,0.02099515,-0.019817133,-0.008625957,-0.020896064,0.00047822593,-0.020730922,-0.016591344,0.033865277,0.048265725,0.0023326415,-0.0028019221,-0.0051552067,0.016921628,0.000993609,-0.030650496,-0.03421758,-0.06460385,-0.03738832,-0.04494085,0.028228404,0.008141538,0.026444862,-0.017439077,0.014807802,-0.0053203492,0.030958764,0.05975966,-0.0092094615,0.050996087,-0.011306775,0.017328981,0.040074643,-0.03835716,-0.0171198,-0.008994776,-0.012506812,-0.028206384,-0.02215115,0.010772813,-0.008879176,0.005116673,-0.02853667,0.002212913,-0.036837846,-0.012352679,-0.018848294,0.0091379,0.045755554,-0.044236243,-0.02488151,0.023714501,-0.031112896,0.024595262,-0.0139930975,0.011857251,-0.024859492,0.003591855,-0.0134316115,0.05707334,0.0054937494,-0.025387948,-0.022679606,-0.018881323,-0.009231481,0.020213475,-0.014323383,-0.028184365,-0.0069745295,-0.018209742,-0.013971078,-0.0004796021,0.00025218676,0.07468857,-0.026819184,0.013629783,-0.0030221127,0.029329356,-0.055664122,0.008620452,-0.07169398,-0.0024688845,0.017538162,-0.014290354,-0.03058444,0.01460963,-0.00958929,-0.01961896,0.06138907,0.029505508,0.039105806,-0.010932451,0.033689123,-0.007882815,0.016789515,0.008802109,-0.00011482583,0.015435344,-0.019343723,0.010128756,0.035516705,-0.0043129786,0.018881323,-0.000515383,0.021380484,0.021986008,0.027435718,-0.047429003,0.032279905,0.01300224,-0.03881956,0.014554583,0.009567271,0.024309015,-0.004200131,0.011945327,-0.010844375,0.0017904228,0.016591344,0.037300248,0.006346987,-0.05654488,-0.030738574,0.072310515,0.05460721,-0.001900518,0.053990673,0.011229708,0.008488338,-0.023846615,-0.0019362989,-0.014356411,-0.0041313213,-0.013673821,0.020785969,0.0171198,0.012044412,0.03128905,0.005846054,-0.023428254,-0.0011291637,0.01392704,-0.06372309,0.03338086,-0.043641727,0.031002803,-0.043311443,0.0061323014,-0.03401941,0.00073144486,0.03307259,-0.011956336,-0.033006534,-0.008923214,-0.013156374,0.030848669,0.0064515774,-0.0009942971,0.00017942073,0.012727003,-0.020741932,-0.013497668,-0.025013624,-0.026576975,0.0077892337,0.004478121,0.010249861,-0.00615432,-0.029945888,-0.013717859,0.016778504,0.035098344,-0.058746785,0.033226725,-0.024947567,-0.022217207,0.06006793,0.06121292,0.015248182,-0.028602727,0.018683152,0.032764323,-0.008983767,-0.0021385988,0.03835716,-0.009247995,-0.0053148447,0.02261355,-0.0035147886,-0.013860983,0.006181844,-0.03155328,0.010552622,-0.025828328,-0.005339616,-0.007348853,0.0017794133,-0.007668129,0.02283374,-0.04042695,-0.05161262,-0.026444862,0.0056038443,0.004590969,0.016294086,-0.06764248,-0.028184365,-0.01060767,0.0011133375,0.005353378,-0.017901476,0.015314239,-0.04452249,0.0011374208,0.015622506,0.022745663,-0.011482927,-0.023890654,0.0018523514,-0.058174293,0.010596661,0.0023560368,0.033226725,-0.050335515,-0.00554054,0.050952047,0.0072662816,-0.008130529,-0.006935996,-0.028712822,0.04502893,0.022228217,-0.014048144,0.006005692,0.0009048447,0.029065127,-0.018551037,0.040008586,0.049718983,0.024771415,0.010392984,0.025189776,0.021347456,-0.008350719,-0.025828328,0.005312092,-0.020653855,0.005631368,0.008372738,0.012385707,0.018573057,-0.031267032,-0.016261058,-0.034349695,0.021622693,-0.03606718,-0.026312748,0.041704055,-0.0015647277,-0.054387018,-0.03467998,0.010310413,-0.013662811,0.0171198,0.014642659,0.0050093303,0.041461844,0.048265725,-0.03972234,0.0032257887,0.06354693,-0.029549545,-0.00707912,-0.07015265,-0.0020945608,0.03309461,-0.076450095,0.05341818,0.041571938,-0.030474344,0.003880855,0.04813361,-0.019806122,0.013739878,0.022855759,-0.021281397,0.017945513,-0.025387948,-0.019266656,-0.0029918365,0.007139672,0.023604406,0.020180445,0.0021785083,-0.04265087,-0.030320212,0.056456808,0.04181415,-0.012760031,0.0150279915,-0.042276546,-0.003699198,-0.0356268,0.029769735,0.012363688,-0.03490017,0.007145177,0.0024716367,0.008257139,0.026775148,0.006402035,-0.016789515,0.023384215,0.05222915,-0.011912298,0.024110844,-0.0096828705,0.034547865,-0.052801646,0.005791006,-0.029439451,-0.055091627,0.0096828705,-0.033909313,-0.03630939,-0.028955031,-0.024110844,-0.009391119,0.021050198,0.0046597784,0.0060442253,-0.032500096,0.020004293,0.004373531,0.0075690434,0.022382349,0.057117376,-0.019464828,0.01622803,0.013420602,-0.0011546232,0.030232135,-0.042122416,-0.086226545,-0.009154414,-0.011273746,0.030562421,-0.0041753594,-0.046284012,0.056456808,0.016128944,0.019729055,-0.0067873676,0.01710879,0.017780371,-0.008345215,-0.019123532,0.032918457,0.011136128,0.007536015,0.028206384,0.011235213,0.019343723,0.030452326,0.09151111,0.013805935,0.0019968513,0.0051111686,0.02327412,-0.0016335372,-0.006969025,0.018374885,0.020973131,0.0026808176,-0.012881136,-0.00012316898,0.0075415196,-0.010150775,0.044434413,-0.02142452,0.017218886,0.0008807614,0.011394851,0.025982462,0.033733163,-0.0017436324,-0.011824222,0.0007747948,0.04357567,0.01667942,-0.009198452,0.010519594,-0.00788832,0.018209742,0.014928906,0.00197208,-0.022789702,-0.021666732,0.003867093,0.0035313028,0.02261355,0.0010830613,0.027986195,0.0025789796,0.0015853705,-0.005397416,0.0044203214,0.023714501,-0.03512036,0.037234187,0.00313496,0.011956336,0.025277853,-0.008009424,-0.01916757,-0.008383748,0.012914164,0.031112896,-0.020951113,0.014532563,-0.04390596,-0.032103755,-0.017934505,0.026576975,-0.02921926,0.030892707,-0.0022610796,0.005636873,-0.004706569,0.023934692,-0.0018606085,0.03696996,-0.005036854,0.017780371,-0.035406608,-0.010668223,0.0037680075,-0.019332713,0.007943367,0.010200318,-0.00012910379,0.005034102,-0.011064566,0.0044726166,-0.006391025,-0.021380484,0.0017381276,-0.0089067,0.0030578936,0.008268148,-0.00788832,0.021820864,-0.009187442,-0.024463149,0.021325435,0.04540325,-0.03696996,-0.0022748415,-0.02827244,-0.011526965,-0.0019624466,0.010541613,-0.02216216,0.034261618,-0.030452326,0.0146316495,0.0028101795,-0.024859492,-0.009919575,-0.01874921,-0.003938655,0.00016230438,-0.010585652,-0.046416126,-0.024463149,-0.038291104,0.023692481,0.03058444,-0.0008807614,-0.045315176,0.0026601746,-0.00593413,0.007200225,0.03903975,-0.013640792,-0.055399895,0.004824921,0.03626535,0.01416925,-0.068523236,0.02968166,0.054431055,-0.0000033598383,0.036221314,-0.04659228,0.01005169,0.009996642,0.022987872,-0.06843516,-0.005391911,-0.018540028,-0.043729804,-0.029153204,0.038247064,-0.0038560836,0.02873484,-0.0023821844,0.042364623,0.02600448,-0.017593209,0.03379922,-0.036375448,-0.00729931,-0.0057689874,-0.0012509564,-0.016272068,0.000084893705,0.031993657,0.011670088,0.06094869,-0.028250422,-0.017505134,0.012837098,0.009148909,0.003060646,0.000529489,0.022536483,-0.037740625,0.02919724,0.0328524,-0.0012915541,-0.0009688376,0.021589665,0.001414723,0.0057689874,-0.016602352,0.026334766,-0.0008649352,-0.00330836,-0.0016115182,0.0034790076,-0.006550663,-0.021501588,-0.009952604,0.02143553,-0.014257326,0.028977051,-0.0069910437,-0.04390596,-0.009088357,0.032500096,-0.00020969691,-0.017020714,0.05975966,-0.024639301,-0.010717765,-0.0022803464,0.033909313,0.030188097,0.0076130815,0.01664639,-0.005642378,0.0044368356,-0.015908753,0.05636873,-0.03104684,-0.040052626,0.022899797,0.012011384,0.0360892,0.004868959,0.044236243,0.031663373,0.030738574,-0.0029560556,0.0035505695,0.003148722,0.0076351007,-0.00065162586,0.014818811,-0.01230864,-0.03767457,0.0070020533,0.00348176,0.006413044,0.010117747,-0.034768056,-0.036859866,-0.0014917897,-0.049454752,0.0015757373,-0.010750794,-0.024903528,-0.02670909,-0.016029857,0.04566748,0.0016734467,0.014004107,0.026576975,-0.022525473,0.05636873,-0.004502893,-0.0036166266,-0.046504203,-0.022921816,0.020070352,0.013343535,0.02560814,0.0076130815,-0.02190894,0.002197775,-0.005791006,-0.011427879,-0.025916405,0.04132973,0.005287321,-0.02807427,-0.0063524917,-0.014213287,0.016150963,0.009385614,-0.018209742,0.0015578468,0.019211609,-0.015699573,0.006545158,0.0023175036,-0.02142452,-0.011890279,0.0166574,0.0055818255,-0.04491883,-0.030210117,0.046239976,0.004590969,-0.009055329,-0.011857251,0.021963987,-0.032808363,0.030540403,-0.049498793,-0.032279905,-0.015050011,0.005890092,0.027457736,-0.016382162,-0.00075621624,-0.008658986,0.018727189,0.0020780466,0.032588173,0.012671955,0.005353378,-0.019288676,-0.0283385,0.014477516,0.0076295957,-0.026532937,-0.036617655,0.018352866,0.03531853,-0.006457082,-0.011791194,-0.017141819,0.022723645,0.031443182,-0.027479757,0.034569886,-0.007387386,-0.0045441785,-0.025652176,0.039546188,-0.020675873,0.056985263,-0.007200225,0.0087911,-0.017978542,-0.00029725698,-0.0043927976,0.005868073,0.045359213,0.043443557,0.037058037,0.0011043922,-0.027325623,0.015105058,0.019123532,-0.01577664,-0.02149058,0.021611683,-0.012231574,0.001705099,-0.010277385,0.054739323,0.024705358,0.0096828705,-0.012297631,0.011780184,-0.0007121782,0.0090223,0.018308828,-0.009627824,-0.034085467,-0.014444487,0.013563726,-0.05870275,-0.029791756,-0.0057139397,0.007921348,0.026797166,-0.010183804,-0.0018729942,0.037058037,-0.002486775,0.008345215,-0.023009893,0.013519688,-0.047957458,-0.001218616,-0.016338125,0.0025555843,-0.029263299,0.0019885942,0.023978729,0.010442528,0.00980948,0.02189793,0.022305284,0.027237548,-0.01776936,-0.01982814,-0.011923308,-0.054431055,-0.02829446,-0.025035644,0.0048056543,0.04450047,-0.023978729,0.0006832782,0.0049212542,0.02145755,-0.015005972,0.0051552067,0.011945327,-0.009352585,-0.03263221,0.0025707225,0.020841017,-0.00695251,0.011769175,0.01005169,-0.0123196505,-0.012727003,0.0090498235,0.00081195193,-0.004670788,0.019762084,0.046460167,0.0020188703,0.028140327,0.03606718,0.017725324,-0.022129131,-0.016547306,-0.003002846,0.00089933997,0.041682035,0.022987872,0.0051662163,-0.009110376,-0.024529206,-0.011086584,0.014246316,-0.016976677,-0.029329356,-0.009093862,0.014587611,-0.0029477985,-0.015380296,0.049498793,0.03034223,-0.003316617,-0.03864341,0.024286997,-0.00017580824,-0.016932638,0.0070185675,0.013519688,-0.020929093,-0.027325623,0.0149509255,-0.021358464,0.037828702,-0.0094847,0.026885243,0.0018674894,-0.016602352,0.0034845124,0.0014394944,-0.0198942,-0.061741374,-0.00029175222,0.008246128,0.01346464,0.013607764,-0.024529206,-0.0251017,-0.02281172,-0.02353835,0.030011944,0.0028789889,0.01574361,-0.0025500795,-0.013145364,0.022030044,0.022239225,-0.009556262,0.008581919,0.013090316,0.015886733,0.00092686375,-0.009424147,0.015039002,-0.0014044016,-0.0019707037,0.008367234,0.05121628,-0.01894738,0.0018633609,-0.051040124,-0.008477328,-0.043333463,0.025255833,0.01803359,-0.02441911,0.011328794,0.017527152,-0.005221264,-0.0044808737,0.056809112,-0.0075910627,-0.0126389265,0.02853667,0.0004111367,0.00079887814,-0.020125398,0.008433291,-0.045072965,-0.04923456,0.017086772,0.026180632,-0.00027386175,0.0064075394,-0.008323195,-0.014037135,0.008262643,0.011328794,0.006864434,-0.021963987,0.028712822,-0.0033551506,-0.014675687,-0.005053369,-0.015688563,-0.011670088,0.049939174,-0.006594701,-0.0038258075,0.033226725,0.016547306,0.012947192,0.011912298,-0.0023119987,-0.035208438,-0.0006354556,0.00455794,-0.007458948,0.0071561867,-0.023582388,0.03172943,-0.036375448,-0.023318158,-0.011548984,-0.027435718,-0.012903155,-0.0032615697,-0.021193322,-0.026775148,-0.028206384,0.010453537,-0.0087911,0.0024688845,-0.012649936,0.040448967,-0.014675687,-0.034107488,0.002763389,-0.0015757373,-0.023472292,-0.023890654,0.030496364,-0.010200318,0.0084112715,0.013827954,0.027633889,0.010442528,0.0007101139,-0.00015421926,0.035582762,-0.005862568,-0.010123252,-0.009082852,0.018066619,0.012859116,0.008747062,0.010238851,-0.029373392,-0.008554395,0.025718233,0.03263221,0.019255647,0.0084443,0.052581456,-0.043707784,0.032830384,0.004797397,0.012881136,-0.00947369,-0.013310507,0.03811495,-0.019266656,-0.014851839,0.02488151,0.03514238,0.00262577,0.011295766,-0.015501401,-0.015677553,-0.012231574,-0.02075294,-0.008967252,0.008482833,-0.009159919,0.029703679,0.011714127,0.0024551225,-0.012616907,0.027127452,-0.003236798,-0.026202653,-0.00650112,0.0066772727,-0.0035175409,0.0027688937,-0.030980783,0.031905584,-0.053242028,-0.006897463,0.027920136,-0.03243404,0.007552529,-0.025938423,-0.026753128,-0.0012365065,-0.009143405,0.020048331,0.0006946318,0.016789515,0.011482927,-0.022525473,-0.0047698733,0.024705358,-0.03216981,0.037454378,0.009594794,-0.013684831,-0.0043652738,0.0090223,-0.004023979,0.013772907,-0.021776825,0.007491977,-0.010068204,0.0070020533,0.034834113,0.0061323014,0.013794926,0.022228217,-0.008047958,0.0062038633,-0.020004293,-0.05412279,-0.036221314,0.0024826461,-0.017637247,0.003503779,-0.005515768,0.028162347,0.0028597221,-0.025850348,-0.021050198,-0.03397537,-0.011703118,0.03399739,-0.019013437,-0.010624184,-0.039171863,0.018418923,0.011504946,-0.01849599,-0.013343535,-0.016580334,0.03357903,0.017461095,-0.016106924,-0.0278761,0.008378243,-0.010123252,-0.0104865655,-0.034768056,-0.009303043,-0.01140586,0.037146114,-0.028382536,0.01664639,-0.026753128,-0.019607952,0.01643721,-0.009633328,0.024000749,-0.008554395,0.020059342,-0.00075484003,-0.025476024,-0.021325435,-0.012583879,0.017527152,-0.012749022,0.045975745,-0.027832061,0.022965854,-0.018055608,0.00548274,0.010497575,-0.0015592229,-0.032103755,0.008229614,0.016084906,0.010695746,-0.002153737,0.023119988,0.01621702,0.0061763395,-0.01117466,-0.0052405302,0.011802203,0.031024821,0.010662718,0.02373652,0.0026863224,-0.0050891493,0.0010149399,-0.04637209,0.0072772913,0.018143686,0.0060001872,0.023780558,0.011158146,0.0014202278,0.023384215,0.006605711,0.0016596848,-0.04284904,0.02142452,-0.006561673,-0.011582012,0.017934505,-0.023384215,-0.014422468,-0.022338312,0.0351644,-0.03234596,0.007833272,0.006880949,0.014279344,0.038973693,0.0040074643,-0.0045249118,0.021732789,-0.004582712,0.010904928,-0.0048634545,-0.027017357,-0.04813361,0.026863223,0.010888413,-0.007976396,-0.00831769,-0.020510731,0.06949208,-0.0017147324,-0.004323988,-0.003432217,0.0397884,0.010079213,-0.025828328,-0.02122635,-0.015490391,-0.00764611,0.013982087,-0.008180072,-0.017736332,-0.008394757,0.00030413794,0.016161973,-0.002300989,-0.040647138,0.017736332,0.00993609,-0.00031944804,0.0051111686,0.024969587,-0.02283374,0.013717859,0.004882721,-0.019718045,-0.006330473,-0.0065176347,0.034768056,0.01664639,0.04883822,0.004643264,-0.0073378435,-0.006313958,0.02714947,-0.051524542,0.015864715,0.007288301,0.0003240927,-0.016822543,0.020796979,0.056104504,-0.018760217,-0.013871992,0.014279344,0.004373531,-0.010717765,-0.017857438,0.014719726,-0.010778318,0.0064515774,0.027083414,-0.008774586,0.021347456,0.026114576,-0.016778504,-0.00455794,0.013211422,0.02349431,0.005956149,0.009440661,-0.010409499,-0.028470613,0.029813774,0.02075294,0.020929093,0.014323383,0.025828328,0.025476024,-0.022019036,0.01278205,-0.005686416,-0.022987872,0.00496254,0.0015592229,-0.021809855,0.03494421,0.021974998,-0.0079323575,-0.007926852,0.002821189,-0.031156935,-0.013354545,0.011257232,0.02100616,0.00047925807,0.009187442,0.049895134,-0.01894738,-0.012947192,0.039325997,0.025167758,-0.015952792,0.038379177,0.008449805,-0.003300103,-0.0043927976,0.0046955594,-0.026092557,-0.015083039,-0.043707784,0.009308547,0.011103098,0.03859937,0.07354358,0.019222617,-0.01233066,0.02143553,0.0011215946,-0.0037459885,-0.00079887814,-0.048353802,0.014191268,-0.00078098767,-0.035494685,-0.013409592,-0.013629783,-0.024903528,-0.008069976,0.000515039,-0.00628093,-0.01849599,0.0260265,-0.011163651,0.03769659,0.0043212357,0.018308828,0.029043108]},{"id":"interface-GatewayResumeData","type":"interface","source":"main","text":"Interface: GatewayResumeData\nProperties: seq: number, session_id: string, token: string","meta":{"url":"/docs/typedefs/GatewayResumeData"},"embedding":[-0.025221618,0.00879754,-0.0040324563,-0.020981984,0.042612523,-0.0027083214,-0.005431656,0.06303003,0.029209036,-0.026302544,0.032932226,-0.01833972,-0.009187875,0.005260509,-0.0016303974,-0.021474406,-0.026374606,0.078403205,-0.0020927938,0.04530283,0.0033538747,0.0073382896,-0.0050563337,0.029905632,0.0033778953,0.044173863,0.019408636,0.02322791,0.005830998,-0.046888188,0.07628939,-0.048665714,0.02812811,0.020897912,0.029016871,0.021738634,-0.014640549,0.021750644,-0.022987703,-0.053565912,0.0025266656,-0.0017580069,-0.008617386,0.014628539,-0.018471833,0.01552931,-0.00062416,-0.03422934,0.021114098,0.014820703,0.007014012,-0.026734915,0.0037201887,0.06692136,-0.019084359,-0.005386617,0.019516729,0.016442092,0.0008197026,0.014892765,0.041051187,0.004879182,0.014424363,-0.03434944,-0.006935945,0.052028596,-0.028776664,0.03792851,-0.004302688,0.031466972,0.027023163,0.01591364,0.0003700672,-0.0041285385,-0.030434085,0.020093223,-0.009488133,-0.0010531527,0.02326394,-0.05380612,0.010334859,-0.044606235,-0.05755333,-0.06480755,0.003894338,-0.0236843,-0.063366316,-0.049242206,0.016153846,-0.00438676,-0.0046089506,0.010310838,-0.09406462,0.014340292,0.00959022,-0.04076294,0.032019444,-0.038865313,-0.052412923,0.012562768,0.030241922,-0.033316556,-0.047560766,0.005858021,0.029088933,-0.016177867,0.0034049184,0.018411782,-0.07576094,-0.05270117,-0.03639119,-0.00081369746,0.013727766,0.009638261,0.03312439,-0.00059938873,-0.04162768,-0.04162768,0.031106662,0.009217901,-0.018459823,-0.007008007,0.016610237,-0.021078067,-0.027239347,0.016189877,-0.020969974,-0.0040234486,-0.06677724,-0.01062911,0.027191306,-0.012983128,0.040642835,-0.022579353,-0.014412353,-0.004485845,-0.03016986,-0.0013308907,-0.020609666,-0.029497283,0.0011672504,-0.062645696,0.038577065,0.017799256,-0.0074103517,0.04033057,-0.012622819,0.07542465,0.037448097,0.051692307,-0.007986845,0.01347555,-0.00028036532,0.036919646,0.009115813,-0.0021918786,-0.022122962,-0.011049471,-0.029545324,0.021894766,-0.008323134,-0.013343437,0.031563055,-0.0022384187,-0.044534173,-0.009494138,-0.02774378,0.005230483,-0.05673663,-0.0022234058,0.021090077,-0.059090648,-0.036775522,-0.013535602,-0.054094367,0.008064913,-0.021570489,0.027527595,-0.0103288535,0.0034019158,0.022519302,-0.01184215,-0.0145444665,-0.050491277,-0.008197026,-0.008185016,-0.028728625,0.023035744,0.00025052723,-0.004554904,-0.011800114,0.047200456,0.014916786,0.017823277,-0.007986845,-0.013547612,-0.0232159,0.018615955,-0.0076865884,0.0021438375,-0.030001715,-0.05270117,-0.002523663,-0.0070800683,-0.021090077,0.00469002,0.004768087,-0.0261344,-0.04933829,-0.024933372,0.056928795,-0.0019831997,0.0062273378,-0.02117415,-0.04739262,0.030313984,0.032499857,0.00050593365,0.030818416,-0.014592508,-0.030698312,-0.030145839,-0.00529654,-0.03790449,0.077682585,0.052509006,-0.003386903,0.0039393767,-0.008239062,-0.027287388,-0.04691221,0.032331713,-0.015301115,-0.049626537,0.004512868,0.025870174,-0.008821561,-0.026182441,0.024152702,0.017270803,-0.01833972,-0.009151844,0.017222762,0.045014583,0.025533887,0.012730912,0.006293394,-0.027263368,-0.002083786,0.022183014,-0.0052124676,0.030289963,0.035622533,0.010472977,0.0015943666,-0.020933943,-0.00795682,-0.008779525,-0.004972262,-0.01041893,0.058994565,-0.049578495,0.01585359,0.06624878,-0.045446955,-0.03379697,0.0051223906,-0.008341149,-0.011565913,-0.034973975,-0.03701573,-0.017511008,0.053998284,-0.0068698884,-0.037376035,-0.010310838,0.03307635,-0.022110952,0.0052635116,0.017631112,0.00055097224,-0.04167572,0.0052725193,0.031971402,-0.01628596,0.030554188,0.012442665,0.04575922,0.059907347,0.045398913,0.0042216186,0.021558478,0.06730569,-0.060627967,0.020177294,0.0137637975,0.029449241,0.005873034,-0.0057499283,-0.004873177,0.0792199,-0.013847869,-0.01058107,-0.00066732196,-0.025461825,0.021390334,-0.018603945,0.0050803544,0.045711182,0.010262797,-0.04081098,-0.038288817,-0.04028253,-0.00754847,-0.053421788,-0.036775522,0.07364713,-0.020069202,-0.0016484129,-0.0043357164,0.001837575,-0.008779525,0.009920503,-0.006455533,0.016057763,-0.024981413,-0.011613955,-0.011974263,0.02444095,0.04369345,-0.0081670005,-0.025678009,-0.030818416,0.023360023,-0.019372605,0.050106946,-0.057889618,0.034061193,0.0062093223,0.025533887,0.017102659,-0.04559108,-0.03641521,0.0067858165,0.016778382,-0.018495854,-0.035958823,0.0054106377,-0.029905632,-0.03139491,-0.034373462,0.012875035,-0.060291678,-0.04076294,-0.0061372602,-0.023023734,0.02973749,-0.036919646,-0.05097169,0.000067980145,-0.058129825,0.022723477,0.005803975,-0.012802973,-0.004638976,-0.008034887,-0.030410064,-0.017018586,0.00940406,-0.007638547,0.04494252,-0.009073777,0.0019201458,0.021918787,-0.021534458,0.004182585,-0.014352302,0.029545324,0.0041795825,0.0155173,0.058033742,0.020777809,-0.034517586,-0.012839004,0.0072482126,-0.005245496,-0.06759394,0.043116957,-0.027959965,0.01585359,-0.0026617814,-0.007998856,0.028344294,0.0052785245,0.0067858165,0.0008452245,0.005885044,-0.018003432,0.033244494,-0.040354587,0.01874807,-0.012899056,0.020489562,-0.031563055,-0.00399042,-0.04768087,0.02526966,-0.0057859593,0.053950243,-0.0325479,-0.0050803544,-0.01426823,0.014892765,0.0155173,0.039850157,-0.007470403,-0.022735488,-0.012610809,0.010136688,0.032355733,-0.008917644,0.03917758,-0.045038603,0.005476694,-0.0318513,0.007098084,-0.0023600229,-0.016922506,-0.026446668,-0.04282871,-0.013583642,0.024741206,0.05183643,0.0071160994,-0.017066628,0.034757793,0.0010681655,-0.023083786,-0.0114338,-0.0012528239,-0.0137637975,-0.014748641,-0.022171004,0.026086358,-0.050443236,0.012851015,0.0124186445,-0.036943667,0.042444382,-0.028704604,-0.037376035,0.00550672,-0.024152702,0.061348584,-0.022231055,-0.05029911,0.0130551895,0.010160709,-0.02289162,-0.0042006006,-0.00010433943,-0.039513867,-0.018495854,0.056496423,0.014424363,0.032067485,0.017823277,0.016009722,0.009668287,0.024224764,-0.029881611,-0.025221618,0.020789819,-0.0017595082,-0.009109808,0.0023329996,0.031490993,0.023167858,0.030410064,-0.032980267,-0.028440377,0.0016919503,-0.016766371,0.047464684,0.07441578,0.09680297,0.035238203,-0.043909635,-0.016237918,0.035310265,0.026830997,0.0045068627,-0.0028179153,-0.012694881,-0.021102088,0.007842722,0.009620246,-0.03759222,0.002199385,-0.013415499,0.01957678,-0.030145839,0.020081213,-0.020633686,0.022723477,-0.0123826135,-0.05212468,-0.023323992,0.01222648,-0.032499857,0.0064615384,0.006491564,-0.021438375,-0.057265084,-0.066344865,0.027119245,-0.016586216,0.010490992,-0.028776664,0.0027053189,0.005392622,0.0099024875,0.00999857,-0.013583642,-0.021978838,-0.013655704,0.037448097,-0.031082641,0.01585359,-0.028416356,0.048665714,-0.013247355,-0.04729654,0.03139491,0.014832714,0.039850157,-0.002837432,0.02442894,-0.0050022877,-0.021474406,-0.016658278,0.010665141,0.013007149,0.028632542,0.00045901843,-0.001031384,0.030097798,-0.007518444,0.0013046182,0.027647698,-0.0071160994,-0.003031098,0.03636717,-0.02247126,-0.0061012297,-0.026855018,-0.011289677,0.00041623175,-0.0014855233,-0.0018585931,0.0056418357,0.0011762582,0.026590792,-0.03461367,-0.030458106,0.03910552,0.014340292,-0.028752645,0.013427509,-0.017691163,-0.03874521,0.003969402,0.0113917645,0.03386903,0.010046612,0.015685445,-0.049818702,-0.0055457535,0.0011259652,-0.004329711,-0.014424363,-0.036967687,-0.0390815,0.037832428,-0.060195595,0.028416356,0.000037180307,0.023576207,-0.0019516728,0.007944809,-0.0078066913,-0.02116214,0.013535602,-0.008731484,0.0059691165,-0.008647412,0.03917758,0.0047200457,-0.018099513,0.03665542,0.01163197,-0.02117415,-0.035334285,-0.021978838,0.030962538,0.069131255,0.0012528239,0.03876923,-0.002052259,0.014664569,0.0041585644,0.032163568,0.00694195,-0.06158879,-0.010737203,0.020777809,-0.03259594,0.011139548,-0.023540176,-0.02529368,0.03389305,0.02452502,-0.016874464,-0.0052575064,-0.024957392,0.033340577,-0.046359736,-0.020897912,-0.056832712,-0.0060381754,-0.00013924435,-0.0031587074,-0.027863882,-0.009434086,-0.025870174,0.024356877,0.01346354,0.036150984,0.00918187,0.0034109235,0.021714613,-0.0035640548,0.0294012,0.018111523,0.029569345,0.031971402,-0.01346354,0.013643694,-0.026374606,0.023936516,-0.062213324,-0.062213324,0.046840146,-0.0078126965,0.03305233,-0.016766371,-0.04112325,0.010569059,0.021870745,0.0066777235,-0.0011349728,0.010472977,-0.022699457,-0.013955962,-0.024597082,0.041411493,0.0063834717,-0.0025581927,-0.015601372,0.0022804546,-0.029881611,0.0232159,0.0751364,0.018495854,0.006689734,0.0012768444,-0.027671719,-0.0032127537,0.0061732912,0.012268515,-0.014460394,0.022351157,-0.020597655,0.010478982,0.030073777,0.006791821,0.05678467,-0.03840892,0.03586274,0.016790392,0.016201887,0.04890592,0.011571919,-0.020129254,-0.008887618,0.016418071,0.035286244,0.04085902,0.016970545,-0.0020567628,0.0054046325,-0.030410064,0.03346068,-0.016466113,-0.043165,0.016610237,0.017258793,0.019828996,0.0014059551,0.0003561803,-0.036823563,-0.0047560767,-0.0131272515,0.012106377,0.005350586,0.03586274,-0.0130551895,0.018904204,-0.0069659706,-0.0035820703,0.030938517,0.037760366,-0.014772662,-0.0067077493,0.011295682,0.023852445,0.047080353,0.016117815,-0.014592508,0.022603374,0.016153846,0.0063054045,-0.015661424,0.018003432,-0.009626251,0.020513583,-0.016802402,-0.015361167,0.007986845,0.00223992,0.017390907,-0.047488704,-0.022183014,0.0049392334,0.00086023734,-0.011109523,-0.0023375035,0.030145839,0.04162768,-0.024693165,-0.03552645,0.0068038316,0.009566199,0.0022174006,0.035718616,-0.025918216,0.014568487,-0.017366886,-0.045134686,0.009740349,-0.018099513,0.008257077,-0.0018495853,0.055199314,-0.0031106663,0.0016889477,-0.03792851,0.00096682867,0.03797655,0.032788105,-0.02441693,0.009109808,-0.026614813,-0.014808693,0.06365456,-0.00835316,0.026782956,0.0131272515,-0.016598227,0.011517872,0.017018586,-0.020633686,0.0099385185,-0.011187589,0.0030295968,-0.015625393,-0.027671719,0.0036391192,-0.02083786,-0.0029980696,-0.019612812,-0.011307692,-0.0048971977,-0.020141264,0.014724621,-0.007074063,0.0002300722,-0.06442322,0.009386045,0.03555047,0.009422076,0.026542751,-0.01265885,0.016237918,0.010695167,0.010653131,-0.05995539,0.015493279,0.015024878,-0.0145084355,-0.038144697,0.016105805,-0.02815213,0.01795539,0.03305233,0.049866743,0.0146525595,-0.0019591793,-0.019456677,-0.018820131,0.035262223,-0.0123826135,-0.01671833,0.011133543,0.017811267,0.0113197025,0.012178439,0.037736345,-0.019012297,-0.005647841,0.02985759,0.03139491,0.04251644,-0.004569917,0.008623391,0.005188447,0.006863883,-0.012802973,-0.01999714,0.023155848,0.006665713,0.009578209,0.014592508,0.01874807,0.029281098,-0.0022549327,0.009914498,-0.049818702,-0.011337718,-0.0075304545,-0.040955104,-0.017378896,0.03963397,0.031322848,0.006725765,-0.014184157,-0.031587075,0.025101515,0.01592565,-0.014904776,-0.00018691021,0.046215612,-0.032403775,-0.0013834358,-0.001690449,0.048257362,0.0041855876,-0.0054106377,0.004212611,0.00798084,0.047152415,-0.0049512438,0.08171804,-0.028800685,-0.002852445,0.0390815,0.021750644,0.025461825,0.005572777,0.018928224,-0.01226251,0.0069539603,-0.022110952,-0.0024200743,0.01794338,0.024837289,0.011007435,-0.00044025236,-0.003585073,-0.0061432654,0.03391707,0.028416356,0.014232199,-0.00045601587,-0.009782385,0.0042006006,-0.0075304545,0.015997712,0.0021588504,-0.02810409,-0.0053776093,-0.006689734,-0.0015418215,0.014952816,0.04775293,-0.0047921073,-0.00694195,-0.011722047,0.01711467,-0.0043507293,-0.009644266,-0.02363626,-0.016802402,0.05620818,-0.01879611,-0.009956534,-0.04645582,-0.018267658,0.021510437,0.03386903,0.039321702,-0.010004575,0.00042861738,0.023432083,-0.060195595,-0.0047981124,0.0071581355,-0.030482126,0.0024846296,-0.016081784,0.008076923,0.024332857,0.009674292,-0.022339147,0.016009722,-0.040090363,-0.025053473,-0.007794681,0.004428796,-0.007632542,-0.019949099,0.0035640548,-0.0032698025,-0.014964826,-0.0071881614,0.0017294824,0.008407206,0.021414354,-0.0041795825,-0.065624245,-0.012586788,-0.021726623,0.065384045,-0.06033972,0.006569631,0.024344867,0.013403488,0.013331426,0.043597367,-0.008112954,0.02290363,-0.006287389,-0.039321702,-0.040162425,-0.006515585,0.025029453,0.015181012,0.0033929083,0.0009488133,-0.00065793894,-0.014316271,-0.00028974836,0.010370889,0.0108933365,0.004638976,0.061300542,0.0123826135,0.0030686301,0.023444094,0.0073202746,0.0062633683,0.04856963,0.014592508,-0.004669002,-0.0030671288,-0.013823849,0.025173577,0.018627966,0.046647985,0.04693623,0.014736631,-0.02409265,-0.017739205,0.02279554,-0.025798112,-0.053181585,-0.013727766,0.0030145838,0.0008632399,-0.0050052903,0.009698313,0.034973975,0.0058970544,0.0069539603,0.009578209,-0.0043957676,-0.030986559,0.024212753,-0.019252501,-0.021834714,0.0031647126,-0.045206748,0.012466686,-0.07090878,-0.005803975,-0.023143837,0.0021228194,-0.037424076,0.00458493,0.008953675,0.048425507,0.0032517873,0.0024951387,-0.054478694,-0.018940235,-0.024380898,-0.014412353,0.012430655,-0.024621103,-0.011770088,-0.03458965,0.0294012,-0.01711467,0.002700815,0.02976151,0.03461367,0.042948812,0.0024245782,0.0038072632,-0.019660851,-0.0236843,0.034157276,0.006569631,0.028224193,0.013931941,-0.021462396,0.0464318,0.029449241,0.026614813,0.011698026,0.011331713,0.009518159,-0.021006005,0.0022023877,-0.012514726,0.01471261,0.013211324,0.031515013,0.012802973,0.014112096,-0.013367457,0.009067772,-0.013283386,-0.0116740065,-0.0031917358,-0.015024878,-0.019660851,0.054622818,0.009956534,0.013571633,0.016898485,-0.0063774665,0.00034398233,-0.0036391192,-0.0067557907,-0.011595939,0.008995711,-0.017258793,-0.016069774,-0.015132971,-0.035574492,0.013295396,-0.0046419785,-0.011493851,-0.024212753,0.019048328,-0.013355447,0.037400056,0.024284815,-0.015553331,-0.010106662,0.01597369,0.0042426363,0.007902774,-0.007098084,0.021486416,-0.0037862454,-0.017498998,-0.012899056,-0.020081213,0.015493279,-0.015889619,0.020549614,0.032307692,0.0036150985,0.028752645,-0.011800114,0.009800401,-0.02038147,-0.015349156,0.0014299756,-0.002774378,0.0099745495,0.0060802116,-0.006971976,-0.031082641,-0.0027923933,-0.022999713,0.008299113,-0.02291564,-0.022939662,-0.00023138583,0.033172432,0.033268515,-0.0070260223,0.014520446,0.018688018,0.03516614,-0.025870174,0.012706892,0.027287388,0.015781527,0.036895625,0.010190735,0.031322848,-0.04371747,-0.02774378,-0.036919646,0.004554904,0.014016014,-0.01263483,0.003485988,0.016129825,-0.019108377,0.008635402,0.017246783,-0.013163283,0.049242206,0.019360594,-0.00075214467,0.016886475,-0.03872119,0.0022369174,0.0064615384,0.0041435515,-0.033628825,0.0075244494,0.006821847,0.004251644,-0.02942522,-0.0008189519,-0.013511581,0.009235917,0.0023269944,-0.0015463254,0.0006294145,-0.015625393,0.040354587,0.019420646,-0.0069239344,-0.0010073634,-0.0038492994,-0.04162768,-0.0017925365,-0.0030401058,0.013187303,0.049866743,-0.013667715,-0.005900057,-0.032475837,-0.026254503,-0.03394109,0.0031076637,0.029713469,-0.003909351,0.02937718,-0.025005434,0.0013886903,-0.00960223,-0.00087600085,-0.012406634,-0.0010186231,-0.047536746,-0.0038823276,-0.03881727,-0.0045308834,-0.004212611,0.004218616,0.0026767943,0.0005644838,-0.010112667,-0.0037982555,-0.0006553117,0.010022591,-0.0068458677,-0.0025371746,-0.014220188,-0.036583357,0.009608235,0.0065876464,0.009674292,0.007416357,0.007578496,0.010130683,0.010436946,0.020069202,0.0052635116,-0.018087503,-0.012172434,-0.02738347,0.0027923933,0.010298828,0.012814984,0.026206462,-0.029353159,0.0027263367,0.030554188,0.0204175,0.010016586,-0.03259594,0.017306834,-0.036223046,0.073599085,0.010767229,0.021114098,-0.0026888046,-0.013307407,0.039537888,-0.042252216,-0.01954075,-0.0020867886,0.012124392,0.0021423362,-0.010731198,-0.026014298,-0.066008575,-0.0077286246,0.00074126036,-0.0029635401,0.020237345,0.015120961,-0.021414354,-0.009674292,-0.00591507,0.02086188,-0.007662568,0.0095481835,-0.023107806,-0.039369743,0.0054406635,-0.0042096083,-0.021738634,-0.0261344,0.019877037,-0.009013725,-0.008347155,0.01998513,0.006071204,0.016141836,0.01957678,-0.025341721,0.004539891,0.012466686,0.019492708,0.017354876,-0.01880812,0.0011147055,0.0010794252,0.019372605,-0.00982442,-0.016670289,0.02160652,0.022675436,-0.014304261,-0.0045519015,-0.007068058,0.018399771,0.0072422074,-0.014520446,-0.053181585,-0.009145839,0.004434801,0.04028253,0.00520346,-0.018904204,0.007518444,-0.005885044,-0.009271948,-0.0432851,-0.013439519,0.005662854,0.044750355,-0.053950243,0.045567058,0.039009437,0.018591935,-0.011469831,-0.02081384,-0.027647698,-0.04049871,0.010659136,0.020933943,-0.009109808,-0.0027353445,0.013235345,-0.009566199,0.012238489,-0.0073262798,-0.017042607,0.0042636544,0.02291564,0.032980267,-0.0007356305,-0.021666571,0.013643694,-0.005957106,-0.004705033,-0.017330855,0.0065636258,0.011776093,0.03221161,-0.0040895054,0.00960223,-0.039850157,0.007380326,-0.021474406,-0.005984129,0.01630998,-0.01758307,0.0005412139,-0.005587789,-0.0037291965,-0.0008121962,-0.00079117814,0.045519017,-0.015012868,0.034205317,-0.020513583,0.0013016156,-0.0318513,0.016922506,0.019612812,0.0012430655,-0.061012294,-0.032043464,0.020357449,-0.0145084355,-0.017198741,0.017727194,0.013307407,-0.032427795,0.015553331,0.020453531,0.018688018,0.020681728,-0.008329139,-0.008599371,-0.002570203,-0.0014472405,0.021834714,-0.0032277666,0.007296254,0.012142408,0.010977409,-0.004086503,-0.036511295,0.017186731,0.03752016,0.015781527,-0.030482126,-0.037111808,0.03141893,-0.026182441,-0.023131827,0.027263368,-0.030818416,0.0052785245,-0.01629797,0.014748641,-0.013679725,-0.009434086,0.0011432299,0.03170718,0.024981413,0.04078696,-0.03591078,0.053229626,-0.030265942,0.0052364883,0.0020957964,-0.03997026,-0.010076637,0.04167572,0.011067486,0.008118959,0.0087675145,0.0061342577,-0.007944809,0.0114338,0.009031741,0.008725479,0.009632256,-0.015481269,0.0050413213,0.0023870459,-0.029617386,0.012256505,0.029209036,-0.020693738,-0.03665542,-0.0040835002,-0.00056260725,0.0013196311,0.014808693,-0.0088035455,0.036271088,-0.018856162,-0.053950243,0.029545324,0.014604518,-0.007554475,0.013775808,-0.018135544,-0.016237918,-0.0076205316,0.04208407,0.004512868,0.016165856,-0.006413497,-0.0015838576,-0.02083786,0.00397841,0.030001715,-0.01802745,-0.02937718,0.022783529,-0.00532056,0.0055547613,0.025005434,0.025798112,-0.036895625,-0.018243637,-0.0009225407,-0.044293966,-0.0031887332,-0.011205604,0.006515585,-0.011926223,0.01592565,-0.011115528,0.0056808693,0.045014583,-0.0021693595,-0.0071221045,0.0063774665,-0.005224478,0.029833572,0.0029350156,0.013751787,-0.009626251,0.02084987,0.05178839,0.025053473,0.02526966,0.016346011,0.0073262798,0.0061012297,-0.012004289,0.008725479,-0.044221904,-0.015577352,0.0058970544,0.01508493,-0.029833572,0.02406863,0.010334859,0.013631684,-0.019828996,-0.0010043608,-0.008257077,-0.00976437,-0.009716328,0.022207035,-0.050443236,-0.006887904,-0.008701459,-0.015589362,0.01347555,0.029545324,0.019396625,0.006635688,0.011331713,0.025485845,-0.011908207,0.018315699,0.013787818,-0.02326394,-0.0024531027,-0.024561051,-0.00480712,-0.0037922505,0.037327994,0.013391478,0.006098227,-0.028800685,-0.00018719169,0.004197598,-0.005521733,-0.043309122,-0.028416356,0.017739205,-0.008136975,0.020909922,-0.010743208,-0.015433229,-0.016358022,0.023948526,0.025245639,0.011866171,0.03170718,-0.015265084,0.0049392334,-0.032355733,-0.0089116385,0.004077495,0.013115241]},{"id":"interface-GatewayResumedDispatchData","type":"interface","source":"main","text":"Interface: GatewayResumedDispatchData\nDescription: RESUMED — connection resumed; typically no payload.","meta":{"url":"/docs/typedefs/GatewayResumedDispatchData"},"embedding":[0.020274635,0.046117835,-0.014630136,0.023134852,0.009466559,0.007631464,-0.04576347,0.06413973,0.01743973,0.0039296346,-0.0037492889,0.032854527,-0.007017656,0.023122197,0.025096506,0.0015970073,-0.015591979,0.050851114,-0.021666776,0.057153717,0.016870217,-0.0005438051,-0.004185915,-0.010630895,-0.010814404,0.008314879,-0.0017338484,0.009396952,0.020616343,-0.04421946,0.05366071,-0.04128331,0.010352467,-0.023071574,0.05978613,0.029564012,-0.044776317,0.014111248,-0.046168458,-0.041662984,-0.0023998613,-0.07806114,-0.00007499567,-0.005486301,-0.036474094,-0.0064070127,-0.031867374,-0.0085173715,0.031867374,0.004476999,-0.02035057,-0.022590652,-0.00691641,0.08747708,-0.019084988,-0.0049737403,0.059026778,-0.007827629,0.0076820874,-0.0314877,-0.017173957,0.022603307,-0.0021609825,-0.032044556,0.006524079,0.024223253,-0.021033986,0.015364175,0.011124472,0.005423022,-0.005100298,0.027210029,-0.033563253,-0.016338672,-0.00073799293,0.010270203,0.0065114233,-0.00041606033,-0.03594255,-0.015718538,-0.024514338,-0.008321206,-0.04302981,-0.08656586,0.011839527,-0.033791058,-0.060646724,-0.03915713,0.017490353,0.028121248,0.012345759,0.024995258,-0.012105299,0.00336645,-0.026222873,-0.06257041,0.04067583,-0.01774347,-0.0024647224,0.03657534,0.010105678,-0.054420058,-0.04740873,-0.044902876,0.02936152,-0.041055504,-0.020287292,-0.0031402272,-0.015174337,-0.016781626,-0.00073324697,-0.016604446,-0.0032588756,0.003882175,0.022008484,0.0068974257,-0.0028886925,-0.038650896,0.0034012536,0.043460112,-0.036727212,0.013731573,-0.015845096,-0.0073656915,-0.011864838,-0.017933307,0.00219895,0.03333545,-0.030019622,0.008833768,0.07163198,0.00093969516,0.042194527,-0.0423464,-0.030652413,0.022527372,-0.04009366,-0.009276722,-0.04508006,-0.072239466,0.03622098,-0.073707536,0.05846992,0.031158647,0.00512561,0.028247807,-0.018224392,0.05801431,0.04470038,0.012883632,-0.04804152,0.05846992,-0.030449921,0.0093779685,-0.016326018,0.016996777,-0.01073847,-0.039916478,-0.041080814,0.008511044,-0.03363919,-0.021337725,-0.013010191,0.001320952,-0.06120358,-0.04776309,-0.007182182,-0.014339052,-0.09284315,-0.020021519,-0.0058375006,-0.014237806,-0.047307484,-0.0054356777,-0.02011011,0.02629881,-0.037663743,0.03209518,0.018566098,-0.036347535,0.063076645,-0.0064861113,-0.010327155,-0.057862442,-0.01592103,-0.05846992,0.0059007793,0.06656965,-0.004885149,-0.014313741,-0.016996777,0.042245153,0.03703095,0.024552304,0.0063405694,-0.020578375,-0.027589703,-0.017300516,-0.0049579204,-0.021375692,-0.026577238,-0.06014049,0.020224012,-0.010086695,-0.0059703863,0.019021709,0.013529079,0.0067075887,0.0039834217,-0.014883253,0.043536045,-0.008567995,0.015503389,-0.033791058,-0.044523202,-0.003597419,0.015073091,0.040751763,0.020236667,-0.012782386,0.013896098,0.010504337,0.0061412402,0.012896288,0.02302095,0.012529269,-0.015275584,-0.015718538,-0.029462766,-0.02799469,-0.006400685,0.00082500174,-0.009194459,-0.049028676,0.009327345,0.028804664,0.028500924,-0.06014049,0.035891928,0.0367019,-0.015718538,-0.029639948,0.01692084,0.015161681,0.001757578,0.00426185,0.013718917,-0.035132576,-0.02829843,-0.00045679626,0.03761312,0.045485042,0.0021024493,-0.015364175,-0.023210788,-0.0037840924,0.028222496,-0.011080177,0.00921977,-0.0059039434,0.017249893,-0.045383796,0.039258376,0.05049675,-0.030930841,-0.037233446,0.0666709,-0.028045313,-0.019616533,0.010377779,-0.030044934,-0.024311844,0.054217566,0.004271342,-0.04373854,0.008694554,0.01637664,-0.022919703,0.013997345,-0.0021530727,-0.0077453665,-0.03733469,0.011864838,0.024096696,-0.04515599,0.030981466,0.009023605,0.06338038,0.019692468,0.019882305,-0.029437454,-0.0021609825,0.06500033,-0.038726833,0.047585912,0.012472318,0.010516993,0.0009768717,0.023008294,-0.028475612,0.07871924,-0.01025122,-0.019388728,0.00067313184,-0.012409039,-0.011991397,-0.002115105,-0.01980637,0.03287984,0.013946721,-0.054116316,-0.026880978,-0.035790678,-0.006739228,-0.04419415,-0.010093022,0.0734038,0.0061096004,-0.0041257995,-0.0051730694,0.022793146,0.028703416,0.028678104,-0.035411004,0.01288996,-0.008624947,-0.027134094,-0.0397393,0.004337785,0.024514338,-0.013288619,-0.0066822767,0.013250651,0.010808077,0.028045313,0.0367019,-0.064747214,0.009953808,0.0064070127,0.0028127576,0.0014498832,-0.006457636,-0.03090553,0.00051493396,0.0042808335,0.0041669314,-0.024944635,0.033462007,0.010447386,-0.003445549,0.014718727,0.0099791195,0.0074352985,-0.017578945,0.023451248,0.0020818836,0.06530407,-0.028956532,-0.012972223,0.0191103,-0.015933687,-0.0008716701,-0.022502061,-0.0026941092,-0.03809404,0.019527942,-0.04095426,0.039688673,0.018553443,-0.024349812,0.023552494,0.017173957,-0.032778595,0.028880598,-0.023944825,-0.024286533,-0.003073784,-0.014870597,-0.009270393,0.0340948,0.032247048,0.013820164,-0.024678864,0.0050180354,0.023438592,-0.0044453596,-0.047307484,0.019262169,-0.029969,-0.018376261,0.0072834287,-0.016566478,0.03163957,-0.019667156,-0.02065431,-0.018604066,-0.015300895,-0.02441309,0.03351263,-0.02150225,0.016882874,-0.017604256,-0.008593307,-0.0029567177,0.00096421584,-0.021135231,0.022818457,-0.010061382,0.041257996,-0.021578185,0.048902117,0.01967981,0.022628618,0.0017828897,-0.006302602,-0.028374365,0.008757832,0.0057425816,-0.015389486,0.05305323,0.0017907995,0.017933307,-0.056191873,0.034525096,-0.01452889,0.022299567,0.0067582116,-0.008144025,0.05426819,-0.08914765,0.016363984,0.031993933,0.037790302,0.01761691,0.047358107,0.02799469,-0.0028364873,-0.020211356,-0.037840925,-0.022312224,-0.011997724,0.003004177,-0.027615014,0.016604446,-0.045915343,0.001033032,0.02599507,-0.021704745,0.032981087,-0.011016898,-0.029943688,0.0054420056,-0.0196545,0.055179406,-0.061507322,0.00047578002,0.0065493905,0.04667469,0.0012157505,-0.0056191874,-0.00821996,-0.004100488,0.019970896,0.028728727,-0.02510916,0.029564012,0.04037209,-0.0075808405,-0.013655637,0.048547752,-0.047206234,0.00026774986,0.011485163,0.00600519,0.001318579,0.029867753,0.0060273376,0.013237995,0.022185665,0.002996267,-0.014592169,0.018224392,-0.008776817,-0.018857183,0.07082201,0.103220925,0.01835095,0.006176044,-0.032981087,-0.00058295904,0.008213632,-0.007175854,0.025438214,-0.013946721,0.011326966,-0.016541166,0.0013858131,-0.017325828,0.016034933,-0.004034045,-0.03515789,-0.0021530727,0.04586472,-0.05720434,0.07461876,0.009485543,-0.012143266,0.017604256,-0.02210973,-0.06206418,0.034955394,0.021894582,-0.012219201,-0.0134658,-0.07998483,0.025210408,-0.008207304,0.00014900259,-0.018325638,0.0054514976,-0.03748656,0.0018208572,0.0044137198,0.010573944,0.0036891736,0.0037619446,0.034398537,-0.018249704,0.013351898,-0.0040182252,0.005691958,-0.022615964,-0.03290515,0.027032847,0.045662224,0.009466559,-0.021160543,-0.026248187,0.020337915,0.0016515855,-0.0066379816,0.013326586,-0.016338672,-0.019300137,0.036955018,0.011067521,0.04508006,-0.028374365,0.014744039,0.012288808,-0.006821491,-0.007909892,0.04882618,0.007897236,0.013212684,0.0012315701,-0.022223633,-0.014807318,0.0053154477,0.00749225,0.0046605086,0.0026988552,-0.01025122,-0.023615774,-0.023299377,0.049762715,-0.014098592,0.009985448,-0.015883064,-0.033791058,-0.020730246,0.033866994,-0.0038283877,0.016908186,0.026400056,-0.0006656174,-0.040017728,-0.01037145,0.049965207,0.0003017624,0.003660698,-0.064747214,-0.015516045,0.061608568,-0.05674873,0.037587807,0.028804664,-0.018869838,-0.026982224,0.023919513,0.012908944,0.0028206676,0.022185665,0.039713986,-0.004556098,-0.022185665,0.009207115,-0.010516993,-0.026121628,0.030829595,-0.010086695,-0.00030789254,-0.016731003,-0.014060624,0.042624827,0.047003742,-0.016819594,0.0076124803,-0.0035784352,-0.017540976,0.022767833,0.04956022,0.004084668,-0.025817888,-0.011016898,0.011206735,-0.0053850547,0.000008577289,0.02302095,-0.040118974,-0.018907806,0.012757074,-0.013883443,0.010744797,-0.033386074,0.0523445,-0.035917237,-0.019274825,-0.0017037907,-0.023400625,0.00830855,-0.01713599,-0.019540597,0.01622477,-0.059431765,-0.01052332,0.033107646,-0.028779352,0.011915461,-0.016313361,-0.0031323172,-0.0030627102,-0.009732331,0.021451628,0.043966345,-0.0027700441,-0.0020138586,0.0030279066,0.022970326,0.03609442,-0.037916858,-0.06327914,0.059583634,0.011959757,0.026577238,-0.00012972223,-0.010333483,0.050370194,-0.02423591,0.03042461,0.0025865347,-0.030677725,-0.019945584,-0.01407328,-0.032247048,0.012731763,0.022502061,0.009181803,0.016401952,0.010504337,0.025514148,-0.010194269,0.110257566,-0.0024710502,-0.019705122,-0.01452889,0.0112510305,0.02690629,0.015895719,-0.009839905,0.015933687,0.027412523,-0.028424988,0.008232616,0.022185665,0.015870407,0.056546237,-0.01568057,-0.005802697,0.0020803015,0.007935204,0.02478011,0.00014425666,-0.026880978,-0.007346708,-0.02523572,0.043915723,0.024526993,0.017553633,-0.013693606,-0.0045212945,-0.035132576,0.020097453,-0.03318358,0.0010124661,-0.007840285,0.030703038,0.009017277,0.016427264,0.0011129219,0.015705882,-0.025817888,-0.04401697,-0.021641465,0.018907806,0.013693606,-0.021033986,0.027108783,0.030323362,0.013250651,0.01622477,0.03548694,-0.0069037536,0.0038758472,0.0045687538,0.033537943,0.025741953,-0.012946911,-0.027463146,0.043333553,0.017161302,0.011516803,-0.0047048037,0.015009811,-0.021287102,0.013453145,-0.013592359,-0.017465042,0.011263686,-0.0007130768,0.018085178,-0.041789543,-0.006369045,0.004106816,-0.013820164,0.015541356,0.0025343294,0.01468076,-0.010814404,0.0067139165,-0.02150225,0.008909702,-0.03487946,0.01943935,0.048421197,-0.028247807,0.020540407,0.013883443,0.016313361,0.004385244,-0.03837247,-0.0022843769,0.027716262,0.060342986,-0.011643361,-0.005593876,-0.066114046,-0.03776499,0.03837247,0.01383282,-0.00029800518,0.00056634826,-0.032525476,0.0006751093,0.031285204,-0.021299757,-0.0061032725,-0.0034803525,-0.03935962,0.020008864,-0.006739228,-0.012896288,-0.0056350073,-0.013807507,-0.017578945,0.03576537,-0.00031501145,0.0130734695,-0.020439161,0.009181803,-0.023438592,-0.021907236,0.0008938178,-0.038625587,0.027032847,0.0035562874,0.01185851,-0.08778082,0.034145422,0.002641904,-0.0036164026,0.011934445,0.0018256031,-0.0012948493,0.04880087,0.024223253,-0.0710245,0.018262358,0.0025105998,0.0035689434,-0.043232307,0.028020002,-0.014592169,0.032778595,-0.005195217,0.011440868,-0.005347087,-0.032803904,-0.03900526,-0.0055369246,0.02095805,-0.015870407,-0.012915272,-0.0207429,-0.0025517312,0.036727212,0.0228058,0.036119733,-0.051509216,-0.007928876,-0.004252358,0.007701071,-0.013845475,-0.013098781,-0.0021609825,0.030095557,0.01040309,0.0017180286,-0.023286723,0.016731003,0.014085935,-0.007118903,0.023096886,0.0036069108,0.020325258,-0.0025216737,0.01692084,-0.026830355,-0.039081194,0.0030421445,-0.034854148,-0.007099919,0.018578755,0.020312604,0.0057425816,-0.010472697,-0.04282732,-0.012864648,0.01161805,0.0044485233,-0.008650258,0.025919134,-0.025501492,0.028475612,-0.002501108,0.052192632,0.014047968,0.0053122835,0.043814473,0.007530217,0.024311844,0.00585332,0.015035123,-0.004369424,-0.0024504845,0.021907236,0.020160733,0.009763971,-0.0022258437,-0.0015645766,-0.0038948308,0.015060434,-0.015338862,0.0008503134,0.0051129544,0.008694554,-0.0024046071,-0.006600014,0.0035689434,-0.0052300207,0.014085935,0.018717969,0.012484973,-0.014136559,-0.024590272,0.011415556,-0.011326966,0.040144283,-0.02341328,-0.001907866,-0.022831112,-0.016465232,-0.010668863,-0.011725624,0.046902496,0.018705312,-0.020996017,-0.012459662,-0.009308361,0.042169217,0.017237237,0.011326966,-0.025223063,0.015794473,-0.0046351966,-0.0020154405,-0.02647599,-0.034651656,0.012061004,0.025248375,0.061557945,-0.0057267617,0.0024283368,0.007346708,-0.01859141,-0.021514906,0.038473714,-0.0019284317,0.0023049426,-0.03639816,0.037081573,0.007897236,-0.017768782,-0.008871735,0.02799469,0.024273876,-0.021831302,0.011048538,0.009213442,0.024957292,-0.010535976,0.0043536047,-0.001316997,0.018933117,-0.026222873,0.036853768,-0.0043441127,0.015224961,-0.025324311,-0.021337725,-0.0310574,0.009953808,0.047307484,-0.01917358,0.025805231,0.00065731205,0.045054745,0.015857752,0.04680125,-0.027260652,-0.003882175,-0.013756884,-0.023463903,-0.06241854,0.007017656,-0.026071005,0.016566478,-0.013200028,-0.0077327103,-0.0007720055,0.0029899392,-0.024590272,0.038752142,0.0027621344,0.0016737331,0.008916031,-0.03244954,0.009175475,0.019578565,0.03900526,0.048066832,0.041080814,0.010618239,0.023818268,-0.0017939635,-0.037106887,0.008479404,-0.018667346,0.058064938,0.027969379,0.008511044,-0.036069106,-0.017300516,-0.006071633,0.01037145,-0.03429729,-0.0051351017,-0.005802697,0.007840285,0.0033379744,-0.006090617,0.05568564,0.0016990448,0.02050244,0.015174337,0.013427833,-0.025438214,0.025007915,-0.012687467,-0.03242423,-0.014199838,-0.0021135232,-0.0019347596,-0.057001848,-0.007814974,-0.0021720564,-0.0037840924,-0.017996587,-0.040979568,0.0012307792,0.026425367,0.017971275,0.0018129472,-0.040523957,-0.0015993802,-0.0144149875,0.006077961,0.00909954,-0.008998293,-0.012851993,-0.00017639059,-0.01774347,0.0005358952,0.042169217,0.0045212945,0.015958998,0.023299377,0.010630895,-0.005641335,-0.003296843,-0.017971275,0.032044556,-0.04252358,0.026374744,0.007061952,-0.0067139165,0.026526615,0.0067265723,0.021008674,0.017300516,-0.0020961214,-0.0073277242,-0.009283049,-0.023641085,0.003809404,0.02984244,0.011504147,0.00336645,0.004423212,0.005144594,-0.004540278,0.01828767,0.039840546,-0.00600519,0.01674366,-0.03682846,-0.010093022,0.031993933,0.029564012,0.017629568,-0.0068594585,0.02769095,-0.0034645328,0.0054483335,0.03394293,0.0029108403,0.014782006,-0.011776247,-0.0015701136,-0.033866994,-0.029108403,-0.001249763,-0.00846042,-0.015351519,-0.00864393,0.011175095,-0.013111437,0.00586914,0.0035657794,0.00013219407,-0.024096696,-0.00024046072,0.0032715313,0.004480163,0.0041257995,0.02817187,-0.0012829845,-0.0049421005,0.007473266,-0.021363037,-0.0011943937,-0.004885149,0.0119217895,0.0012893124,0.007941532,-0.02353984,-0.021438971,-0.0028269954,-0.026653172,0.019730436,0.022628618,0.0021135232,0.010112006,0.019641845,0.0107701095,-0.012225529,0.010162629,-0.009384296,0.026425367,0.019376071,-0.026956912,0.011624377,0.0191103,-0.008378157,0.0037208132,0.0009744987,-0.0025438212,0.0040498646,-0.009023605,-0.015288239,-0.005815353,0.03090553,0.06505095,-0.0047206236,0.0028871107,0.007264445,-0.011700313,-0.06869583,0.009580461,0.015073091,0.019591222,-0.020553064,-0.005926091,0.0035056642,-0.011915461,0.011814215,-0.024425747,0.077909276,-0.0017006268,0.013820164,0.0116117215,-0.04009366,0.0021783842,-0.017313171,0.008821112,-0.032778595,0.008998293,0.004103652,0.037106887,-0.0073973313,-0.0061981915,-0.0033632861,-0.009143835,0.021426316,0.00864393,0.016313361,-0.0059798784,0.008169336,0.007182182,0.0056033675,-0.019426694,-0.038144663,-0.029893065,-0.022299567,-0.0144656105,0.043536045,0.03363919,0.004268178,0.009023605,-0.035790678,-0.018312981,-0.003967602,-0.010877684,0.033866994,-0.06039361,0.034955394,-0.03761312,-0.0062741265,-0.012700123,-0.0053217756,0.009048916,-0.03336076,-0.020426506,0.02071759,-0.035993174,-0.010036071,-0.019477319,0.010213253,0.008745177,0.016034933,-0.017528322,0.016996777,-0.03222174,0.01819908,0.031259894,-0.02410935,-0.031740814,-0.032500166,-0.0083971415,0.003815732,-0.013200028,0.02923496,0.021147888,-0.003600583,0.003812568,0.007169526,0.012744418,-0.01161805,-0.026400056,-0.019009052,0.0032620395,-0.021299757,-0.015174337,0.0039739297,-0.012447006,0.035107266,0.027513769,0.02347656,0.012674811,-0.0072201495,0.025121817,-0.064494096,0.036069106,0.0099095125,0.03885339,-0.000029736251,-0.027032847,0.033791058,-0.013579703,-0.018452195,-0.0039264704,-0.007890908,0.017338483,0.017173957,-0.036448784,-0.049585532,-0.011478836,0.010814404,0.013162061,0.013908754,-0.010200596,-0.027513769,-0.0051762336,0.012390055,-0.020793524,-0.01692084,0.007378347,-0.055635016,-0.04801621,0.0052964636,0.020996017,-0.015946342,-0.0460419,0.028020002,-0.0053344313,0.00837183,0.003165539,0.0075365454,0.032930464,0.021059297,-0.040296156,-0.016186804,-0.011143456,0.010491681,0.031917997,-0.015073091,-0.001180947,-0.017452385,0.017262548,0.028500924,-0.023033606,0.0051699053,0.018996397,0.0014498832,0.0044263755,-0.019755747,0.011953429,0.015933687,-0.01843954,-0.022907047,-0.014047968,-0.0196545,0.030627102,0.01713599,-0.0061190925,-0.012731763,-0.01635133,-0.01804721,-0.020084798,-0.015705882,0.032727968,0.022615964,-0.044447266,0.010358795,0.0062804543,0.027589703,-0.008561667,-0.019907616,-0.0056761387,-0.033740435,0.036271602,0.010846044,-0.01055496,-0.023451248,-0.0015068344,-0.0047174594,-0.014490922,-0.03500602,-0.0019996208,0.012117955,0.0325761,0.0040118974,-0.016971465,-0.025881168,-0.0010773273,-0.009352656,-0.024261221,-0.017490353,-0.007884581,0.024995258,0.016161492,0.013908754,0.014022657,-0.002203696,-0.0103398105,-0.008814784,-0.026248187,0.024906669,0.016541166,-0.00512561,-0.007530217,-0.015275584,-0.009441247,0.0060558133,0.032930464,-0.02050244,0.009700691,-0.0053850547,-0.013212684,0.0048503457,0.014845286,-0.0020486622,0.009795611,-0.016528511,-0.007017656,0.0295387,-0.036372848,-0.01592103,0.0102195805,0.0011176678,-0.023223443,0.027564391,0.005138266,-0.011447196,0.017756125,0.010656207,0.033462007,-0.014263118,0.020894771,0.022666587,-0.006074797,-0.0018066193,0.017857373,0.022590652,-0.004008733,-0.03270266,-0.024324501,0.037537184,0.010846044,-0.018148456,-0.044649757,-0.0009420682,-0.02135038,-0.007378347,0.020793524,-0.0025200916,-0.018920463,-0.008593307,0.016946154,-0.033436697,-0.037132196,-0.028475612,0.007264445,0.021008674,0.0050180354,-0.073910035,0.03351263,-0.028551547,0.022388158,0.016212115,-0.0061096004,-0.008276911,0.031791437,0.00047182507,-0.0061507323,0.008087073,0.024818078,0.02617225,0.01761691,0.035107266,-0.02508385,0.014756694,0.006131748,-0.021970516,0.019034365,0.0295387,-0.0020201865,-0.010865028,0.001969563,-0.043941032,-0.010048727,0.0022384995,0.009321017,0.002192622,-0.020628998,0.04773778,-0.008295895,-0.07072076,0.025273688,-0.019211546,-0.014199838,-0.013060814,-0.00615706,-0.0014245716,-0.007523889,0.0036132387,0.008093402,-0.019477319,0.018895151,-0.015351519,-0.027564391,0.025159786,0.015440109,-0.013491112,-0.012997535,0.014149215,-0.032398917,0.0018493328,0.016034933,0.03136114,-0.00072929205,-0.034676965,-0.0051888893,-0.028703416,-0.029184338,-0.0047206236,-0.006840475,-0.0028064298,0.042422332,-0.0022195156,0.012573564,0.038625587,-0.013326586,0.04725686,0.001613618,0.0034708607,0.018135801,0.007251789,-0.008226288,0.017098023,0.020160733,0.049231168,0.010327155,0.022767833,-0.011472507,0.008194649,-0.011978741,-0.039663363,-0.0039264704,-0.026020382,0.008479404,0.00849206,0.0023144344,-0.011807887,0.004476999,0.012415366,-0.012984879,-0.03533507,0.015288239,0.029310897,-0.017958619,0.029690571,-0.0011912298,-0.064291604,0.00023215533,-0.0010828642,-0.028576858,-0.009124852,0.025058538,0.012364743,0.0020977033,0.033006396,0.03622098,-0.020679621,0.019325448,0.043966345,-0.007833957,-0.001245808,-0.020679621,0.0075175613,-0.012915272,-0.0034613688,0.0025802068,0.0038378797,-0.012440679,-0.0108397165,0.015009811,0.003385434,0.0008226288,-0.01611087,0.009903185,0.0041447836,-0.0021087772,0.0065620467,-0.018173767,0.020034175,0.0039992416,0.017085368,-0.010023415,0.0045181303,-0.009877874,-0.011624377,-0.016313361,0.0039802575,0.016414609,0.006229831]},{"id":"interface-GatewaySavedMessageCreateDispatchData","type":"interface","source":"main","text":"Interface: GatewaySavedMessageCreateDispatchData\nDescription: SAVED_MESSAGE_CREATE — message saved (bookmarked)","meta":{"url":"/docs/typedefs/GatewaySavedMessageCreateDispatchData"},"embedding":[0.029711856,-0.004999228,-0.0021846027,0.020626934,0.015561554,0.0168594,-0.016178975,0.015851364,-0.00955114,-0.051384628,-0.0012049178,0.021861777,0.006816842,0.0055252966,0.034399223,-0.00092455785,-0.04954496,0.007169655,0.026108129,0.015624556,0.028653419,0.027494177,0.05201465,0.022517001,0.0009340082,-0.033970807,0.00759807,-0.017035807,0.032786366,-0.023222625,0.023109222,-0.031904336,0.006860944,-0.011857022,0.033643197,0.056097195,-0.011592412,-0.006892445,-0.04246351,-0.010332367,-0.016972803,-0.032962773,0.04639485,0.03122391,-0.029459847,0.022945415,0.024696877,0.034399223,0.003266666,0.012253935,-0.014036899,0.008675409,0.0018365153,0.029661454,0.027368173,-0.010244165,-0.0028744773,-0.015876565,0.0035249754,0.03848177,-0.006577434,-0.0021783025,-0.012228735,0.009740146,0.005263837,-0.0014592893,-0.050805006,0.056197997,-0.015813563,0.01997171,0.0065396326,-0.024885885,0.011334103,-0.0309215,-0.0046369648,-0.015989969,-0.00081745407,0.029207839,0.0197071,-0.03959061,0.011510509,-0.007629571,-0.06622796,-0.055643577,-0.017565025,-0.025364703,-0.029963866,0.010244165,-0.009015621,-0.0032005138,0.008681709,0.03885978,-0.025389902,0.025276499,-0.0027043712,-0.039540205,-0.029132236,0.017854834,-0.009399934,0.0025972673,0.06264943,-0.06950407,-0.0040006423,-0.03858257,-0.0003073328,-0.042009894,0.012631949,-0.012184633,-0.0393134,-0.01181292,-0.064917505,-0.029157437,0.004136097,-0.0084297,0.0034682732,-0.054131523,0.012442943,-0.039741814,0.00075642066,0.020009512,-0.037599735,0.005963162,-0.012405141,-0.02307142,0.010754482,-0.03520565,0.025440304,-0.027947793,-0.022794211,-0.016872,0.04188389,0.0012868207,0.057458043,-0.049418956,-0.0069806483,0.0029201538,-0.03767534,0.008309996,-0.020702535,0.0035879775,-0.007062551,-0.050174985,0.031047504,0.05771005,-0.040094625,-0.017577626,-0.02221459,0.040271033,0.03039228,0.017363418,-0.03913699,0.048007708,0.00081824156,-0.005254387,-0.004410157,0.003408421,-0.00055520725,0.0012435067,-0.024860684,-0.02615853,-0.017224813,-0.047932103,-0.015863964,0.00928653,-0.065925546,-0.011649114,-0.0030729342,-0.04609244,-0.05483715,0.003069784,0.02110575,-0.031022303,-0.028930629,0.00078359037,-0.002331083,-0.00900932,-0.028174601,-0.04014503,-0.013003662,-0.014377112,0.035281256,0.011334103,0.0048511727,-0.07066331,-0.018636063,0.0059442613,0.008958918,0.0010749757,0.015057535,-0.041984692,-0.05367791,-0.017401218,0.028351007,-0.0006445917,0.029132236,-0.02502449,0.028628217,-0.018081643,0.05211545,-0.035835672,0.013041464,-0.051334225,-0.011920024,0.009084923,0.014288908,-0.0046212142,-0.0026130178,0.007005849,-0.03346679,-0.009822049,0.0618934,0.004753519,0.0040951455,-0.0253143,-0.046268843,0.021143552,-0.038154155,-0.0032981671,-0.027418574,-0.031324714,-0.016267179,0.017401218,0.036062483,-0.035810474,0.025553709,0.017035807,-0.041203465,-0.0062655727,-0.07550188,0.0056670513,-0.032861967,0.00759807,0.009021921,-0.08351577,0.01096869,0.05030099,-0.012991061,-0.0050559295,0.057256434,0.027468977,-0.020589132,0.0017672129,0.002871327,0.019064479,-0.039288197,0.018333651,0.02198778,-0.0015270167,-0.03825496,0.056450006,0.055845186,-0.0093810335,0.026486142,-0.009670843,0.0017782382,-0.015989969,0.016720794,-0.0036383793,0.036112882,0.030820696,0.03994342,-0.042639915,0.011453807,0.03986782,0.010521374,0.021319957,0.05604679,0.025730114,-0.04697447,0.046772864,-0.017565025,-0.03462603,0.046193242,0.022189388,-0.033970807,-0.01883767,0.008650208,-0.017716229,0.015876565,0.04163188,-0.0309215,-0.030266276,0.012127931,-0.016128574,-0.0075854696,0.041531075,0.058667686,0.044655986,0.0051441328,0.00478502,-0.02895583,-0.016216777,0.011126196,-0.04581523,0.057105232,0.047150876,-0.02024892,-0.011787719,-0.000533944,0.049166948,0.06325425,-0.0015309544,0.018144645,-0.0141755035,0.011995627,-0.011107295,0.03548286,-0.044529982,0.049318153,-0.018774668,-0.010659979,-0.016808998,-0.022000382,-0.022264991,-0.0394142,0.013268271,0.054685943,0.011403405,-0.013646285,0.022151588,-0.0021121502,0.017199611,0.03719652,-0.052518666,-0.008864415,0.021735772,-0.020034712,-0.013923495,0.0089211175,0.06940327,-0.0024964637,-0.012279136,0.019996911,-0.017917836,0.046546053,-0.00035261567,-0.020299321,-0.012764254,0.0122854365,-0.0024177108,0.03066949,-0.034777235,-0.031954736,-0.03255956,0.009885051,-0.068244025,-0.052770674,0.021811375,0.024671678,0.0013301348,-0.03573487,0.01209643,-0.019190483,-0.05085541,0.027090963,-0.032408353,0.019077078,-0.015901765,-0.011220699,0.019883506,-0.016985403,-0.0011041142,0.0021893277,0.001336435,-0.02895583,0.047654893,-0.053325094,-0.0006087591,-0.001633333,-0.027796589,-0.0061049173,-0.005282738,-0.066026345,0.0029878812,-0.021445962,-0.0196945,0.005229186,-0.03621369,0.047125675,0.010137061,0.050502595,0.011359304,-0.022038184,0.009469236,0.02588132,0.02588132,0.012650849,0.028376209,-0.026838955,0.03127431,-0.00926133,-0.028577816,0.016204176,0.000033912926,-0.02084114,0.045034003,0.01631758,-0.028855026,0.011453807,-0.0052480865,0.0070184497,0.0039281896,0.011806619,0.014301509,-0.00478502,0.026208932,-0.011346703,0.0025106394,0.027368173,-0.021483764,0.044681188,-0.005730054,0.016103372,0.021735772,0.010061458,-0.004699967,-0.012480744,-0.013167468,-0.035281256,-0.023247827,0.00049023615,-0.012820955,-0.03855737,-0.004356605,0.015788361,-0.022164188,0.014843328,0.016254578,0.033013172,-0.050805006,-0.03623889,-0.010023656,0.040623844,-0.008788813,0.045941234,0.0033674696,-0.033290382,-0.049847372,0.011466407,-0.024596075,-0.04954496,-0.013633684,-0.006949147,0.05685322,-0.039565407,-0.0028351007,0.04168228,0.012405141,0.011964126,-0.03404641,-0.028300606,-0.034122013,-0.022958016,0.010836385,-0.054484338,0.009412535,-0.019051878,0.068798445,0.012858757,0.0006071841,-0.022794211,-0.00017758756,-0.00072491955,0.06411108,-0.020513529,0.011573511,0.02048833,-0.017514622,-0.005150433,0.057105232,-0.038431365,-0.012764254,0.010464672,0.05927251,0.0030193822,-0.011560911,-0.0073271603,0.006552233,0.027872192,-0.009425135,-0.0017010604,0.029207839,0.0035627766,-0.010760782,0.03066949,0.09495698,0.018787269,-0.01490633,0.009696045,-0.0025358403,0.0051346826,-0.00074854534,0.0077177742,-0.013747089,-0.018144645,-0.029963866,-0.008480102,-0.030593887,0.045966435,-0.031853933,-0.010326067,0.020727737,-0.0011600287,-0.03321478,0.08628787,0.002023947,-0.030165473,0.0026350687,-0.03684371,-0.055441972,0.0008780937,0.022378396,-0.013129666,-0.01937949,-0.03266036,-0.0051535834,0.005764705,0.072780184,-0.014566118,0.022038184,0.011201798,0.0018396653,0.0018648664,-0.00091589504,-0.018220248,0.016796397,-0.020097714,-0.049040943,0.001588444,-0.011636513,0.00788158,-0.029485049,0.044832394,0.015107937,0.007812278,-0.06612715,-0.020160716,-0.018056441,0.013658886,0.03487804,-0.003039858,0.004662166,0.037524134,0.009217228,0.013646285,-0.00049850525,0.0026807452,0.03172793,-0.013570682,0.010924588,-0.015120538,-0.019833105,0.021760974,0.0064262287,0.020576531,0.023978652,-0.028779423,-0.0010072483,0.004649565,0.005030729,-0.022706008,-0.0049078744,0.0012734327,-0.018043842,-0.018988876,0.023802247,-0.009727546,0.04188389,-0.040346634,-0.007175955,-0.010307167,0.03593648,-0.004747219,0.037297327,-0.015611955,0.0024035354,0.004268402,-0.019921308,0.016657792,0.0045708125,-0.013117067,-0.061137374,0.0037927348,0.033340786,-0.06874804,0.03959061,0.030039469,-0.0074405647,0.0051913843,0.013986497,-0.038330562,-0.01914008,-0.0076358714,0.010855286,0.002282256,-0.030745093,-0.032131143,-0.0014459013,-0.0154355485,0.016178975,-0.0024129858,0.0007603583,-0.037574537,-0.04369835,0.062246215,0.059474114,-0.020652134,0.0083666975,0.0126697505,-0.0050275787,0.026032526,0.035306454,-0.024923686,-0.030215874,-0.0053614904,-0.017640628,-0.009349532,0.015070136,0.014049499,-0.031072704,-0.023121823,0.011598713,-0.031627126,0.020173317,-0.03853217,0.057508446,-0.033592794,-0.011901123,-0.017300416,-0.01852266,0.054736346,-0.025956923,0.01573796,-0.0140747,-0.028930629,-0.011138796,0.05093101,0.0010308742,-0.0053362898,0.008335196,-0.0056954026,-0.0152969435,0.015952168,-0.005991513,0.042362705,0.0037297327,0.030316677,0.038154155,0.008965218,0.01910228,-0.057508446,0.0057489546,0.06884885,0.028527414,0.03147592,-0.0073523615,0.017224813,0.031299513,-0.031249112,0.015863964,-0.013847892,0.013923495,-0.008618707,0.027695784,0.017628027,0.02953545,-0.010263065,-0.013835292,-0.017250013,-0.007112953,0.012134232,0.008070587,0.06280063,-0.0072704586,-0.018258048,0.013167468,0.016141174,-0.023613239,0.029157437,0.00076862733,-0.00015406017,-0.0043156534,-0.031173509,0.012707552,0.067689605,-0.004892124,0.040195428,-0.019883506,0.028855026,-0.0002579154,0.01378489,-0.02222719,0.027166566,-0.0064955307,0.04866293,0.009822049,0.030694691,0.021975182,-0.010785984,-0.053375497,-0.032483954,-0.03462603,-0.011145096,0.011126196,0.00089305674,-0.038128957,-0.025137894,0.014679522,0.04470639,0.0024681129,0.022138987,-0.04470639,-0.030896299,0.0059568617,-0.025528507,0.0052984883,-0.01067888,0.008902216,0.038053352,-0.002077499,0.039842617,0.01433931,-0.046470452,-0.012991061,-0.033063576,0.013180069,0.033920407,0.008543104,-0.035230853,0.024255862,-0.0015230791,0.0074027632,0.053173892,-0.0051000314,-0.033592794,0.017224813,0.008486401,-0.006986948,0.02363844,0.0088896165,0.00309656,0.0153599465,0.0050055278,-0.007957183,0.002364159,-0.020122916,0.0013466729,-0.0018664413,-0.01209013,0.01772883,-0.019555895,0.008562004,-0.02336123,0.020589132,-0.020450527,-0.010527674,0.010502473,0.021030148,-0.0017955638,0.034424424,0.018434456,0.04808331,-0.024281064,0.05483715,-0.03885978,-0.014490515,-0.014288908,-0.0154355485,-0.008681709,-0.011926324,-0.0029784308,-0.0056387004,0.0019514944,-0.018913273,0.030694691,-0.032861967,0.018610861,-0.013381676,-0.023840047,0.026309736,-0.023940852,-0.003266666,-0.01546075,-0.029434646,0.0033926705,-0.0026271935,-0.024281064,0.0043156534,-0.029434646,-0.026914557,0.005087431,-0.010155961,0.0030477333,-0.011239599,-0.0025137893,-0.00052567496,0.016456185,-0.09596501,0.00618367,0.014603919,-0.0025169395,0.02478508,-0.011554611,-0.013028863,-0.010351268,0.01910228,-0.06043175,0.0032824166,-0.00055402593,0.020639533,-0.014553517,0.02217679,0.016872,0.0075413682,0.0010560751,-0.0155741535,0.0071192533,-0.0047377683,-0.02895583,-0.0505782,0.015271743,0.001352973,-0.026108129,-0.037070516,0.041808285,-0.005496945,-0.01350768,0.03714612,-0.018358853,-0.025062291,-0.0025421404,-0.015208741,-0.0031375114,-0.015032334,0.019795304,0.00014854746,-0.02024892,-0.0023688842,-0.007188556,0.027998196,-0.0073019597,-0.043849558,0.028577816,-0.005591449,0.023172224,-0.0139612965,-0.0005040179,-0.012329538,-0.04097666,-0.0025783668,-0.020022111,0.033416387,-0.0095196385,-0.030064669,-0.0075728693,0.015372546,-0.056752417,0.026536543,-0.0017498872,0.020576531,0.012896558,0.004838572,-0.042085495,0.025074892,-0.009885051,0.010785984,-0.004800771,-0.02305882,0.055744383,0.020979745,-0.009733846,0.0015356796,0.023210024,-0.024142459,-0.013910894,0.01856046,0.06401028,0.015926966,0.012165733,0.017111408,0.009582641,0.022920216,0.008637607,0.028804624,0.016191576,0.009311731,0.023285627,0.0027390225,0.0011773544,-0.004533011,-0.007226357,0.00034040897,-0.009324332,-0.013369075,0.0033265182,-0.00983465,-0.035608865,0.009204627,-0.0045204107,0.012953261,-0.024948888,-0.029182637,0.021811375,-0.013797491,0.016241977,0.021181352,0.029837862,-0.010452071,0.0042369007,0.0017861135,0.032962773,0.018119445,-0.017539823,0.014956731,0.007220057,-0.007516167,-0.02276901,-0.012298037,0.003148537,0.00073240104,-0.0011427031,-0.010855286,-0.001014336,0.0011277401,-0.015813563,-0.0076799733,0.0026098678,-0.01663259,0.01658219,-0.009651943,0.04379916,-0.0032020889,-0.017502023,-0.01716181,0.012487044,-0.010067758,-0.014528316,0.005474895,0.01663259,-0.017489422,-0.011069493,0.010036257,-0.035054445,-0.0034682732,-0.019555895,0.0028098999,-0.020198518,0.0093810335,-0.026385337,-0.0018380904,-0.045638822,-0.0024381867,0.060885366,-0.03719652,0.004240051,-0.010281965,0.021521565,-0.006350626,0.04024583,-0.030493084,0.010893087,-0.048032906,-0.02367624,-0.034953643,0.041027058,-0.0084549,0.00816509,-0.04160668,-0.006917646,0.021622369,-0.022025583,-0.058566883,0.06053255,0.028325807,-0.006671937,0.0100425575,0.008700609,-0.019051878,0.01798084,0.021975182,0.02222719,0.03986782,-0.0075539686,0.01294066,0.009481837,-0.008108389,0.016935002,-0.013696687,0.04616804,-0.003291867,0.009210927,-0.007144454,-0.01572536,-0.00005227217,0.02419286,-0.054736346,-0.027443776,-0.0067916415,0.020274121,-0.01067888,-0.023613239,0.055794783,0.010647379,0.024696877,0.016657792,-0.008807713,0.009544839,-0.00703735,-0.0032320148,-0.029485049,-0.009626742,-0.021042747,0.02673815,-0.047604494,0.003515525,0.011636513,-0.032483954,-0.021156153,-0.014881129,0.00025968737,0.029006232,-0.040069424,-0.022164188,-0.025541108,0.017842235,-0.011510509,-0.032483954,0.023512436,-0.024079457,0.02701536,-0.003013082,0.04727688,-0.026410539,0.016115973,0.013255672,0.007232657,0.011397106,0.024041655,-0.011151397,-0.0152213415,-0.013066664,0.00870691,0.01658219,0.028098999,0.028376209,-0.0016931852,0.018371454,0.00075957074,0.011277401,-0.009072322,-0.008070587,0.010143361,-0.0022050785,-0.009412535,0.011138796,0.00006374055,0.014603919,0.018699065,-0.0053299894,0.039086588,-0.015838763,0.0014939406,0.0023027319,-0.02898103,0.021609768,-0.024533072,0.007950882,0.037574537,0.038607772,0.020954546,-0.0033013173,0.021823976,0.0010001606,0.0019609446,0.043723553,0.0020365473,0.027998196,-0.042665116,-0.008480102,-0.014931531,-0.041858688,0.03460083,-0.028199803,-0.011844421,-0.0059442613,0.01742642,0.008133589,-0.017111408,0.05604679,-0.008448601,-0.064816706,-0.0041297968,-0.023121823,-0.01180032,0.03208074,0.006583734,-0.010603277,-0.008202892,0.03318958,0.004344004,0.009714945,0.013356475,-0.0049960776,0.01717441,0.014150303,0.008461201,-0.009752747,-0.0016585339,-0.022945415,0.036415294,0.019064479,-0.0051976847,0.013583283,-0.004069945,-0.0062624225,0.016204176,-0.000045725843,0.0036415295,0.026586946,0.03775094,-0.016443584,-0.026334936,-0.007850079,0.016430983,0.014868529,0.038708575,0.028502213,0.0044290572,-0.017250013,0.0032005138,-0.024268463,0.008246994,0.054181926,-0.027342971,0.054081123,0.020085115,0.007005849,-0.047680095,0.0112522,-0.038632974,0.028527414,-0.0023247825,-0.010861586,0.016645191,-0.00037761967,-0.013910894,-0.02305882,0.075552285,-0.012436642,-0.010313467,0.023499835,-0.0028823526,-0.03316438,-0.0017404369,0.017098809,-0.036062483,-0.008341497,0.020614333,0.014137703,0.033290382,-0.022857213,0.010760782,-0.027972994,-0.0057584047,-0.01631758,0.022479199,-0.06723599,0.026536543,-0.019039277,0.002699646,-0.0063380254,-0.01941729,-0.011031692,-0.011145096,-0.010943489,0.045916032,0.03039228,-0.0168594,0.013570682,0.01181292,-0.002839826,-0.0140747,0.0029658305,-0.011560911,-0.039212596,0.013192669,-0.03152632,-0.02390305,0.00618682,-0.004101446,0.03596168,-0.0122098345,-0.00078398414,0.016166374,-0.034525227,-0.01659479,-0.04442918,0.040649045,0.015712759,0.030442683,-0.02222719,-0.029686656,-0.053022686,-0.00031205796,0.02478508,0.00062096585,0.009645643,-0.008183991,-0.0026775952,0.018094243,0.0056607514,-0.0043503046,0.057760455,0.015410348,-0.0014246382,-0.017224813,0.050250586,-0.037246924,-0.0006792429,-0.008845515,0.011100994,-0.005137833,0.009639342,0.0068672444,-0.051611435,0.009973255,0.053929918,-0.011712116,-0.0031469618,-0.0066971383,0.04069945,-0.059524518,0.037776142,0.03321478,0.0037769843,0.024029054,-0.0028508513,0.05236746,0.010559175,-0.015233941,0.00982835,0.030820696,0.030266276,0.000095635434,-0.017061006,-0.013671486,-0.0009702345,0.020198518,0.020059913,0.0015608805,-0.018686464,-0.03875898,0.009985855,-0.018951073,0.0110253915,-0.0065585333,0.004271552,-0.045916032,-0.05569398,-0.006290774,0.006968048,0.012342139,-0.03994342,0.0033391188,-0.026964959,0.015044935,-0.027393375,0.010263065,0.03346679,0.018308451,0.00003324845,-0.04556322,-0.0074783657,0.030064669,-0.0037202823,-0.003120186,-0.0034745736,-0.005421343,0.012499644,0.0028729022,-0.004715718,-0.0043219537,0.0052071353,-0.017124008,-0.002894953,-0.010470972,0.012335839,0.028905427,-0.004807071,0.0033580193,0.004274702,-0.0038998385,0.024066856,0.015952168,-0.047932103,-0.023159623,-0.0169098,-0.016493987,-0.0077492753,-0.012581548,-0.0071192533,-0.0021972032,0.01828325,0.013734489,-0.033643197,0.014465314,0.021433363,-0.012411442,0.008675409,-0.053173892,0.006986948,-0.0019625197,-0.028729022,0.0020396975,-0.020992346,-0.034222815,-0.043017928,-0.033365987,0.00071665045,0.0084423,0.026914557,0.0016853099,-0.01236734,-0.0005248874,0.02701536,-0.013003662,-0.028552616,0.045311213,-0.025767917,0.028250204,0.013041464,-0.013570682,0.028502213,0.0092424285,-0.011321503,-0.020185918,0.004807071,0.011630214,0.029686656,-0.006375827,-0.016783796,-0.042589515,0.007377562,0.015624556,0.03460083,-0.0028461262,0.033416387,-0.036616903,-0.018106844,0.008662808,0.027620181,0.03457563,-0.008108389,-0.029837862,0.0041707484,0.040044222,0.0032572157,0.0130540645,0.036188487,0.016468786,-0.043219537,0.022542201,-0.0040132427,0.021181352,0.014263707,0.030341879,0.0020869493,-0.038683373,0.00023743969,0.027645383,-0.02367624,-0.03825496,0.018988876,0.036415294,0.012713852,0.005852908,0.017250013,0.010307167,0.028930629,0.008625006,-0.012001927,0.0068735443,-0.027065761,-0.033617996,0.011434906,0.0029784308,-0.018484857,-0.022025583,0.030014267,-0.0017609126,-0.017615426,-0.019795304,0.03409681,0.0010285116,-0.0030745093,-0.037624937,0.03969141,0.0018806169,0.018623462,-0.0035312755,0.007736675,-0.005257537,0.013343874,-0.0037486332,-0.017565025,-0.021521565,0.0020696237,0.033870004,-0.03767534,0.021042747,0.0071318536,-0.008436,-0.030745093,-0.030341879,0.022756409,0.03482764,0.0017561874,-0.03465123,0.011214399,-0.024117257,-0.015939567,0.047377683,0.00008072162,0.014225906,-0.019177882,0.03482764,-0.0102567645,-0.042564314,-0.009374733,-0.011371904,-0.026586946,-0.01602777,0.010628478,0.003181613,-0.0064262287,-0.032962773,-0.014540917,0.012928059,-0.0022413046,-0.009866151,-0.010017356,0.04299273,0.026511343,-0.020614333,-0.007560269,-0.004249501,0.017779233,0.024482671,0.007144454,0.005550497,-0.019896107,-0.009582641,-0.00072570704,-0.007377562,-0.012342139,-0.025679713,0.039288197,0.00089069415,-0.0012624074,0.0007473641,0.025377301,0.01770363,0.025364703,0.0024287363,0.024381867,0.013898294,0.0019593698,-0.016897202,0.016191576,0.011863322,0.010099259,-0.0011781419,0.013142267,0.015410348,-0.010981291,0.024268463,0.0008190291,-0.0063128243,0.00020200093,-0.02360064,0.0026586945,0.018081643,-0.010830085,-0.026964959,-0.0014860653,-0.0057143033,0.015032334,-0.02450787,0.0013915619,0.019077078,-0.013142267,0.030896299,-0.0077870768,-0.029107034,0.0045960136,0.009217228,-0.05937331,-0.021294758,0.011044293,-0.012361039,0.013104466,0.042589515,0.015649756,0.008039086,-0.006111217,0.04526081,0.014855928,-0.02135776,0.0014112502,-0.012928059,0.015347346,0.0058308574,0.011579812,0.013721888,-0.015322145,0.034802437,0.035860874,0.007900481,0.017489422,-0.018762067,-0.020034712,-0.016619992,0.023449434,0.0044542584,0.0021247505,0.030140271,0.0009686594,0.014540917,0.020513529,-0.017124008,0.010641078,0.007094052,0.0063474756,-0.037448533,0.0506286,-0.012676051]},{"id":"interface-GatewaySavedMessageDeleteDispatchData","type":"interface","source":"main","text":"Interface: GatewaySavedMessageDeleteDispatchData\nDescription: SAVED_MESSAGE_DELETE — saved message unsaved\nProperties: id: string","meta":{"url":"/docs/typedefs/GatewaySavedMessageDeleteDispatchData"},"embedding":[0.014716785,-0.0008378136,-0.027834462,0.033131506,0.015628776,0.053520124,-0.02241249,0.01234311,0.009444728,-0.033931058,0.010662798,-0.025735633,0.0058373665,-0.0036604567,0.051471267,0.0042320127,-0.04115203,0.03702933,0.014429445,0.054919343,0.039477963,0.026510201,0.042576235,0.050821632,-0.011531063,-0.008170439,0.030782817,-0.034455765,0.030408027,-0.012211933,0.033656213,-0.03590496,0.026710091,-0.011018849,0.011362407,0.060366303,-0.005999776,-0.0046692686,-0.05367004,-0.024461346,-0.031807244,-0.026035467,0.026310313,0.009788286,-0.0063027316,0.027609589,0.010238035,0.029233681,-0.003994645,0.005112771,-0.0023580587,-0.012580478,0.0037885103,0.08020523,0.013105185,-0.009625877,0.014017176,-0.008788844,0.007495816,0.0032887892,-0.008439039,0.00961963,-0.030757831,0.024798658,0.009688342,-0.0000067650226,-0.039278075,0.08435291,0.0033325148,0.03520535,0.017677633,-0.019614052,0.0029639704,-0.028059337,0.00406648,-0.008882542,0.026185384,0.014554376,0.05089659,-0.040152587,0.0057342993,0.00032969879,-0.05791767,-0.048897706,-0.010362965,-0.0059092017,-0.050221965,-0.015778692,0.008701392,0.02695995,-0.026160397,0.033506297,-0.03935303,0.0057061897,-0.042826094,-0.04185164,-0.0042788615,-0.0024064693,-0.018939428,0.029633459,0.06311477,-0.07955559,-0.038728382,-0.00936977,-0.02885889,-0.047323585,-0.0022378133,-0.00056374783,-0.047973223,-0.030433012,-0.00040992742,-0.024986053,-0.009975681,0.034680642,0.005743669,-0.04222643,-0.010294254,-0.0135549335,0.031407468,0.0035823754,-0.020176237,-0.0026469599,0.006633797,-0.015716227,-0.046299156,-0.008070495,0.022849746,-0.028284213,-0.040977128,-0.013679864,0.040202558,0.00063831557,0.03637969,-0.05107149,0.010362965,0.014042161,-0.027809476,-0.008476518,-0.044350244,0.00006231873,0.0036198543,-0.034355823,0.006187171,0.052670598,-0.022449968,-0.017402785,0.006902397,0.06031633,0.032631785,0.0015163411,0.00014366981,0.025498267,-0.0073833787,0.0012984939,-0.0118371425,0.011381147,0.02348689,-0.0077081975,-0.03013318,-0.04272615,-0.022687336,-0.08355336,-0.012549245,-0.006508867,-0.047273614,-0.002105075,0.018402228,-0.04247629,-0.038828325,-0.014929166,0.0054813153,-0.062814936,-0.01857713,-0.019551586,-0.034705628,0.00066056877,0.0016209702,-0.037254203,-0.026984937,-0.0065838248,0.03200713,0.006049748,0.010294254,-0.07136016,-0.023524368,0.0027578357,0.007121025,0.0163034,-0.0036573336,-0.020388618,-0.029108752,0.013105185,0.03120758,-0.0029264914,0.030757831,-0.0036573336,0.009126156,-0.021325596,0.007826881,-0.041226987,0.008139207,-0.0327817,0.023399439,0.0015764638,0.0049722246,-0.017915,-0.0061153364,-0.0315324,-0.022887224,-0.028084323,0.0578677,0.013255101,-0.001142331,-0.05976664,-0.023961624,0.010900166,-0.0011813719,0.009856998,-0.012043278,-0.009725821,-0.036029886,-0.01721539,0.051571213,-0.031982146,0.03817869,-0.0077331834,-0.01291779,0.012992747,-0.07490819,-0.0018224202,-0.025485775,-0.014929166,0.019701503,-0.07021081,0.018727047,0.05102152,-0.0076707182,0.00078588945,0.03967785,0.030757831,-0.030433012,-0.026060453,0.013617399,0.024386387,-0.013879753,0.023774229,0.03860345,0.008145453,-0.02373675,0.047548458,0.021950247,0.016915558,0.047323585,-0.026435243,-0.008095481,-0.02237501,0.0008760735,0.0006859452,0.037329163,0.016228441,0.035055432,-0.04937244,-0.008445286,0.012374342,-0.011524817,0.012374342,0.07700702,0.0076020067,-0.045874394,0.011318682,0.008695146,-0.042776123,0.0431759,0.02373675,-0.009126156,0.015428888,0.019326711,-0.00569682,-0.029083766,0.022974676,-0.027634574,-0.018064916,0.006184048,-0.009363524,-0.0120557705,0.0720098,0.034580696,0.04982219,0.012505519,0.005793641,-0.01259297,0.023986612,0.03538025,-0.06881159,0.020401113,0.06386435,0.017077968,-0.0068024527,0.0070897923,0.025148463,0.0872513,-0.028534072,-0.011543556,-0.030457998,-0.0064089224,-0.002617289,-0.011943333,0.015841158,0.004916006,-0.026760062,-0.032581814,-0.031132622,-0.027509645,0.00064495247,-0.038253646,-0.010256775,0.019264247,0.02728477,0.00664629,0.00017744002,0.021225652,0.018277297,-0.004025878,-0.059266917,-0.033081535,0.006293362,-0.022437476,-0.0046661454,0.024261458,0.08075492,0.011568543,-0.015878636,0.023062127,-0.00798929,0.040227544,0.011874622,-0.046549015,0.034355823,-0.011162519,-0.0028936972,0.036429666,-0.015278971,-0.016690683,0.0062777456,0.019226767,-0.06286491,-0.063514546,-0.009813272,0.030108193,0.004222643,-0.023886666,0.017240377,-0.031357497,-0.0772069,-0.0013383154,-0.0036542101,0.01273664,0.0016178469,-0.023774229,0.026760062,0.005906078,-0.0024267703,0.008507751,0.019351698,-0.004628666,0.039802782,-0.048373,-0.0093260445,0.01820234,-0.041226987,0.012474286,-0.04417534,-0.03957791,0.0010759619,-0.01357992,-0.028758947,-0.020988284,-0.017427772,0.041976567,-0.009163635,0.036254764,0.02823424,-0.06316474,0.015116562,0.030208137,0.023386946,-0.011449859,0.020426098,-0.038903285,0.02551076,-0.0028671497,0.009113663,0.009894477,0.0046567754,-0.029358612,0.026385272,-0.009088676,-0.019514108,0.00813296,-0.03293162,0.020263689,0.01572872,-0.03025811,0.000653151,-0.0037322915,0.02988332,0.011206245,-0.018339762,0.04659899,-0.052070934,0.033531282,0.0051315106,0.0118371425,0.032356936,0.00434445,-0.03323145,0.023399439,-0.00935103,-0.010150583,-0.016378358,0.0060528712,-0.0012329055,-0.041426875,-0.01207451,0.007583267,-0.021163186,0.0231121,0.016915558,0.0015616283,-0.092898145,-0.06846178,0.0021519237,0.011462351,-0.0009658671,0.06006647,-0.0070460667,-0.020601,-0.04380055,-0.04722364,-0.009788286,-0.0442503,-0.021175679,-0.014829222,0.04247629,-0.000004202976,-0.02262487,0.024923587,0.016190963,0.0062215272,-0.02369927,-0.029633459,-0.005443836,-0.06006647,0.0014023422,-0.049197536,-0.025248406,-0.026535189,0.040302504,0.0173778,-0.018389735,-0.06006647,-0.01902688,-0.0040102615,0.083353475,0.0052033453,0.012436808,0.00772069,0.0017318458,-0.021937754,0.061165858,-0.026160397,-0.016903065,0.031557385,0.022424983,0.0090574445,-0.03133251,-0.020213716,0.0024595645,0.022849746,-0.03293162,-0.017040487,0.018214833,-0.013105185,-0.03418092,0.019726489,0.07825632,0.04000267,-0.017452758,0.0021831563,0.028908864,-0.028159281,-0.021950247,-0.0025813715,-0.013317566,-0.02216263,-0.002226882,0.009438481,-0.01820234,0.053420182,-0.03133251,0.0142295575,-0.025810592,0.011699719,-0.026285328,0.0707605,-0.025498267,-0.039802782,-0.013367538,-0.03987774,-0.076557264,0.0076394854,0.030732844,-0.021325596,-0.038128715,-0.02898382,0.0054219733,-0.009807026,0.028958835,-0.028159281,0.01803993,0.02683502,0.008033016,0.046549015,-0.0031123252,-0.010675291,-0.01071277,-0.0121057425,-0.05127138,0.0073958714,0.013654877,0.0105691,-0.040777236,0.03595493,0.0442503,0.012567985,-0.03810373,-0.010906412,-0.017452758,0.017165419,0.016490795,0.021225652,-0.00085655315,0.061515663,0.005381371,-0.010075626,0.017577687,-0.0068711643,0.045099825,-0.012792859,0.010481649,0.0012087004,-0.025210926,0.017964972,-0.0052189617,0.008538984,-0.005937311,-0.031157607,0.007870606,0.025735633,0.013717343,-0.0018474063,-0.027234798,0.031982146,-0.021238144,-0.0056749573,0.019264247,-0.011506077,0.025385829,-0.009575904,0.014604348,0.00050909084,0.031607356,-0.015628776,0.02291221,-0.003991522,0.018477187,-0.033206463,-0.019251755,0.006596318,-0.038328607,-0.004894143,-0.04929748,-0.009482207,0.05501929,-0.05312035,0.042776123,0.044450186,-0.018752033,-0.008582709,0.0067212484,-0.018264804,-0.042701162,-0.00032969879,-0.015691241,0.009450975,-0.010500388,0.027334742,-0.010700277,0.006977355,0.026710091,0.013067706,0.005465699,-0.02588555,-0.028758947,0.08600199,0.054969314,-0.036854427,-0.0019254877,0.0013164526,0.003298159,-0.0034699382,0.046873834,-0.008582709,-0.027959393,-0.028434128,-0.023124592,-0.0247237,0.022399995,-0.00011946457,-0.02381171,-0.012143222,0.023924146,-0.022175122,-0.010875179,-0.017727604,0.033981033,-0.047148682,-0.043650635,-0.022175122,-0.027134852,0.045749463,-0.023936639,-0.0051346337,-0.024823643,-0.01232437,0.005584383,0.018427214,0.010656551,-0.009757054,-0.008170439,0.0056655873,-0.01948912,0.041326933,0.005559397,0.01993887,-0.0091074165,0.0039634127,0.036754485,0.0021363075,0.015841158,-0.052020963,-0.020113772,0.045849405,0.01585365,0.022924703,-0.0018926935,-0.0029717786,0.05981661,-0.013879753,0.0062277736,-0.009344784,0.027809476,-0.015278971,0.016203456,-0.003957166,0.0048535406,0.020363633,-0.01873954,0.00027152812,-0.010975123,0.029108752,-0.00005026491,0.0643141,-0.001588176,-0.007545788,-0.0050784154,0.012855324,-0.03038304,-0.0066275503,0.007302174,-0.019226767,0.007714444,-0.035655096,0.008201672,0.026535189,-0.0033637474,0.046623975,-0.006621304,0.023361959,0.010675291,0.00961963,-0.006658783,0.03438081,0.0019457889,0.022399995,0.02835917,0.03203212,0.046623975,0.03330641,-0.020426098,-0.02323703,-0.047173668,0.00013078637,0.02022621,-0.005197099,-0.022187615,-0.0043350803,0.014317009,0.03627975,-0.012674175,-0.00075973215,-0.019788954,-0.0399527,0.006758727,-0.014829222,-0.003910317,-0.03203212,0.0053470153,0.017165419,0.0037260451,0.033456326,0.0009525933,-0.03553017,0.0035448961,-0.0072896807,0.016340878,0.0021550471,0.035105404,-0.025960509,-0.0010478526,-0.005122141,0.015678748,0.020038813,0.012318124,-0.010531621,0.026135411,0.015528832,-0.0017802563,0.025285885,0.010912659,-0.0034012264,0.047448516,0.0034699382,-0.047448516,-0.02563569,-0.018814499,-0.008951253,-0.0039790287,0.008407807,-0.0002039877,-0.013180143,0.008445286,-0.017877521,0.01560379,-0.018839484,-0.010238035,0.004566201,0.02344941,-0.000015726086,0.035730056,0.029608473,0.034080975,-0.01923926,0.06296485,-0.027434686,-0.014366981,-0.018352255,-0.0037260451,0.014104627,0.0067399875,-0.012318124,-0.001394534,-0.00798929,0.01017557,0.01741528,-0.02563569,0.027684547,-0.037254203,-0.021925261,0.056768313,0.0074208574,-0.011406133,-0.00022838813,-0.043600664,-0.0000936977,0.00637769,-0.015179027,-0.022587392,-0.03190719,-0.0026813159,-0.0107252635,0.0006644728,-0.008994979,-0.02323703,0.00062308967,0.00072693796,0.024948573,-0.06246513,0.013092692,0.029008808,-0.010750249,0.016440822,0.006977355,0.010119352,0.010119352,0.019189289,-0.06656285,0.019738982,0.009401002,0.013467482,-0.018814499,0.042426318,-0.013854766,0.032956604,-0.002361182,0.016603231,0.020163745,-0.002684439,-0.008763858,-0.04544963,0.0274097,-0.0070897923,-0.026660118,-0.025535746,0.04115203,0.007389625,0.00007227411,0.026560174,-0.022037698,-0.04519977,0.007277188,-0.00057506963,-0.026685104,-0.02513597,-0.015778692,-0.011518571,0.0034105962,0.015328944,-0.022987168,0.012255658,0.00005094812,-0.030732844,0.012518012,-0.003772894,0.01597858,-0.025523253,-0.011699719,-0.02427395,-0.011381147,-0.012980254,-0.021100722,0.031157607,-0.026085438,-0.023024648,-0.0015756829,-0.0061778016,-0.05841739,0.024486331,0.036679525,-0.008876295,0.00243614,0.021413047,-0.0360049,-0.0060028993,-0.012374342,0.032082092,-0.0035386498,-0.012842831,0.047323585,0.023137085,0.018314777,0.017702619,0.04367562,-0.038628437,0.004797322,0.025460787,0.058767196,-0.00007871583,0.014154599,0.015428888,0.01857713,0.031882204,0.021750359,-0.0069898483,0.047048736,-0.0067712204,-0.0071272715,0.024673726,-0.01288031,-0.029658444,0.017527716,0.0067524808,0.0032450636,-0.0017989958,-0.008076741,-0.011874622,-0.010737756,-0.00609972,0.0040321243,-0.020488564,-0.04252626,-0.022387503,0.005222085,-0.011412379,0.04005264,0.021213159,0.048248067,-0.010150583,0.0016881202,-0.008232905,0.021488005,0.00083703274,-0.01246804,0.02423647,0.0057655317,-0.009450975,-0.015366422,-0.030008249,0.0065900716,0.008788844,-0.00394155,-0.0073209135,0.02943357,-0.026660118,-0.014192078,-0.01246804,0.017590182,-0.022549912,0.009600891,-0.017890014,0.034355823,0.000063831554,-0.0044194083,-0.0032044612,0.015866144,-0.014541883,-0.018102394,-0.0052907965,0.003504294,-0.04252626,-0.015453873,0.0076144994,-0.030532956,0.003432459,-0.006402676,0.022737307,-0.031757273,0.010550361,-0.0016256551,-0.017240377,-0.028534072,0.0024002227,0.053570095,-0.037229218,0.006246513,-0.008676407,0.032956604,-0.0044100382,0.027434686,-0.0306329,0.017565195,-0.041002113,-0.027559616,-0.02835917,0.029508527,-0.0074770763,0.0005938092,-0.026110426,-0.009994421,0.012505519,-0.032132063,-0.03710429,0.0494474,0.0035074172,-0.012461794,0.03233195,0.0055406573,-0.006237143,0.008326602,0.009163635,0.01581617,0.043825537,0.0032638032,-0.004659899,0.013492469,0.004516229,0.011162519,0.008901281,0.04614924,0.02790942,0.01506659,0.008795091,-0.02142554,-0.0038228661,0.027334742,-0.0360049,-0.0063027316,0.030707859,0.027184825,0.0015592858,-0.026660118,0.06761226,0.008464025,0.03340635,0.0146668125,-0.024511317,0.014629334,0.013492469,0.0027906299,-0.019926377,-0.0071022855,-0.022762295,0.037953813,-0.03270674,0.0028031229,-0.013804794,-0.019801447,-0.009119909,0.0015756829,0.0054594525,0.04582442,-0.011075068,0.009632124,-0.012867817,-0.00012912713,-0.027509645,-0.0103879515,0.01273664,-0.017477743,-0.0015647515,-0.021612935,0.04734857,-0.02269983,0.014879194,0.029408583,0.012030784,0.029233681,-0.008120467,-0.017127939,-0.010669044,-0.023024648,0.031032678,-0.008351588,0.021525484,0.030158166,-0.025910536,0.015366422,-0.009013719,0.0022112657,-0.02683502,-0.014104627,0.02183781,-0.009981928,-0.00515025,-0.008157946,0.0040696035,0.02835917,0.022474954,-0.03637969,0.018314777,-0.03570507,0.021025764,-0.0058935853,-0.02369927,0.015228999,-0.00910117,-0.0056749573,0.05916697,0.040627323,0.008895035,-0.01572872,-0.015416395,-0.000021923797,-0.0015382039,0.037254203,0.0026578913,0.011193751,-0.033831116,-0.023187056,0.03550518,-0.012374342,0.016503287,-0.04507484,-0.02047607,-0.017802563,0.03563011,-0.00556252,0.011181259,0.045699492,-0.015566311,-0.036304735,-0.004653652,-0.012980254,0.006540099,0.013080198,0.013017734,-0.019264247,-0.0066525363,0.023574341,-0.0004524818,0.011874622,-0.011424873,0.005272057,0.022499941,0.02753463,0.023149578,0.0052658105,0.012649189,-0.012561738,0.05431968,0.012749134,0.019001894,0.0040820963,-0.003772894,-0.02898382,0.00054305623,-0.008994979,0.004981594,-0.004138315,0.024336414,-0.0056156153,-0.038378578,0.004647406,0.035080418,0.00043686552,0.032256994,0.03240691,0.0020582261,-0.02142554,0.005865476,0.0010915782,0.010825207,0.017715111,-0.039278075,0.03785387,-0.016865585,-0.010893919,-0.048647843,0.0055156713,-0.025061011,0.03323145,0.006546346,-0.021088228,-0.006677523,0.000022655811,0.0046161734,-0.019464135,0.07101036,-0.015916115,-0.004762966,0.006271499,0.0057311757,-0.015641268,0.0007132737,0.0046161734,-0.027259784,0.004697378,0.019376684,0.019738982,0.030582929,-0.008745118,-0.0020707191,0.0068086996,0.016765641,0.015703734,0.0163034,-0.053520124,0.014092133,-0.012012045,-0.0089887325,-0.029658444,-0.032631785,-0.022150137,0.007520802,-0.009750807,0.016053539,0.026160397,-0.014429445,0.021700386,0.0025954263,-0.009313551,-0.033056546,0.0012524258,-0.015403901,-0.0135049615,0.010119352,-0.062165298,-0.00732716,-0.0033012822,-0.00542822,0.019014386,-0.00030080866,0.000573508,-0.004100836,-0.04557456,-0.010125598,-0.024086555,0.057018172,0.023299495,0.0026375903,-0.037129276,-0.0135549335,-0.04722364,-0.0013336305,0.014891688,-0.026185384,-0.0037697707,-0.0068274387,0.029233681,0.013155157,0.023336973,0.038153704,0.05252068,0.025435802,-0.013979697,0.014204571,0.05626859,-0.035080418,-0.0118371425,0.0045349686,0.017177911,-0.026035467,0.015791185,-0.0037916335,-0.038853314,-0.0046192966,0.049097594,0.0012430561,0.010875179,-0.0041945335,0.034855545,-0.065113656,0.04152682,0.009419742,-0.016615724,0.01382978,-0.013692357,0.041002113,-0.010818961,-0.029408583,-0.008439039,0.03558014,0.027134852,-0.0038291125,0.004781706,-0.0138422735,-0.0146668125,0.0076207463,0.012842831,-0.015741212,-0.027484657,-0.00691489,-0.00046770766,-0.017602675,0.0063121016,-0.0040977127,0.0029421076,-0.038903285,-0.044725034,-0.018127382,0.0047785826,-0.00067071937,-0.04664896,0.014317009,-0.05456954,-0.012724147,0.005912325,-0.005718683,0.0059092017,0.004869157,-0.030707859,-0.011431119,-0.0057998877,0.026160397,0.0043413267,-0.0069398764,0.00006217232,-0.003504294,0.015841158,0.0038790847,0.0038197427,0.0010580032,-0.012511766,-0.015466367,-0.015578804,-0.015878636,0.016328385,0.04697378,-0.016815614,-0.023599327,0.011562296,0.010206803,0.035030447,0.033056546,-0.03550518,0.001046291,-0.016790627,-0.031807244,-0.010519128,-0.040777236,0.001722476,0.004100836,-0.0020691575,0.009594644,0.007002341,0.01193084,0.011968319,-0.03413095,-0.009032458,-0.032831673,0.009013719,0.0030233124,-0.004260122,0.009657109,-0.03530529,-0.0036448403,-0.013604905,-0.033756156,-0.012980254,0.020451084,0.02790942,0.0088200765,-0.008757612,-0.0054219733,0.005247071,-0.032881644,-0.029408583,0.021887783,-0.015741212,0.012661682,0.0058592292,-0.02022621,0.029358612,-0.0018161737,-0.017477743,-0.03298159,0.0050690453,0.0295585,0.015416395,0.013767315,-0.020076293,-0.04082721,-0.0065838248,0.011862129,0.057018172,0.009413496,0.043525703,-0.027609589,0.00045482424,-0.010156831,0.008407807,0.012830338,-0.009550919,-0.05102152,-0.0043163407,0.033206463,-0.014966645,0.0035355266,0.040177573,0.013617399,-0.017740097,-0.0071585043,0.014441938,0.023224536,-0.011424873,0.015166534,0.00515025,-0.027884435,0.0011548242,0.017040487,-0.03310652,-0.03880334,0.01671567,0.037429105,0.03083279,0.012742887,0.025498267,0.04285108,0.03203212,0.0018411598,-0.0506967,0.01635337,-0.019426657,-0.0011501393,0.009301058,-0.017652646,-0.018014943,-0.012905296,0.0071522575,-0.0019051866,0.0150041245,-0.010350472,0.039527934,-0.013779808,-0.01126871,-0.03897824,0.034980472,0.008145453,0.0005348577,0.025485775,-0.018914443,-0.0075395415,0.00015323478,-0.0024142773,-0.015378916,-0.02212515,-0.019576572,0.009663356,-0.028009364,0.036579583,0.014267036,0.0023799215,-0.016103512,-0.024861122,0.003772894,-0.0024174007,-0.017615167,-0.021800332,-0.010044393,-0.029483542,-0.0031498042,0.018589623,0.0047442266,0.030408027,-0.024761178,0.018689567,-0.021862796,-0.013679864,0.0033918566,-0.005331399,-0.008095481,-0.020900832,0.021150693,-0.029633459,-0.020963298,-0.023137085,0.009413496,0.011987058,-0.003024874,-0.010975123,-0.00028870604,0.02563569,0.043325815,-0.035755042,-0.0073334062,0.0037822637,0.015079083,0.00773943,-0.018964414,-0.0039790287,-0.019126823,-0.017402785,-0.012268152,-0.026235355,-0.025110982,-0.009569658,0.05317032,-0.006621304,0.01073151,-0.01870206,0.034205906,0.0037697707,0.03310652,-0.0026469599,0.009719575,0.0120557705,0.0018536528,-0.011424873,0.01816486,-0.0032075846,0.0018817621,0.009832012,0.0040727267,0.0024252087,0.005962297,0.028084323,0.033331394,-0.017939987,-0.0012820968,-0.039103173,-0.019039372,0.0006582263,-0.0043163407,-0.0153914085,0.0050565526,0.013567426,0.015503846,-0.041276958,-0.02105075,0.0058498597,-0.027334742,0.03190719,0.0052439477,-0.0044974894,0.0016490795,-0.0026266589,-0.062115327,0.0049472386,0.002818739,-0.014604348,0.010350472,0.027609589,0.026934965,0.006346457,0.003516787,0.05531912,-0.008095481,-0.023062127,-0.03330641,0.0014398213,0.00022526488,0.016066032,0.020900832,0.034955487,-0.006402676,0.013192636,0.036354706,-0.0015959841,0.0035074172,-0.017452758,0.020088786,-0.0005555493,0.018876962,-0.0009650863,0.017390292,0.026984937,-0.003688566,0.02683502,-0.0011048521,-0.004272615,0.009700835,-0.002159732,0.014991632,0.0006480757,0.040777236,-0.0060684877]},{"id":"interface-GatewaySendPayload","type":"interface","source":"main","text":"Interface: GatewaySendPayload","meta":{"url":"/docs/typedefs/GatewaySendPayload"},"embedding":[0.01745648,-0.023045208,0.0074936748,0.024359422,-0.0026350655,0.004228052,-0.035470504,0.018863618,0.04200175,-0.019965433,-0.008535754,0.013779335,-0.03366512,0.031275637,0.013414276,-0.07391458,0.0070887906,0.030266747,-0.04311684,0.06536555,0.01249167,0.0038563553,0.009969442,0.06334777,-0.041338004,-0.02169117,0.031833183,0.004251283,-0.0032490292,-0.012498308,0.060692795,-0.042718593,0.052249964,-0.044099182,0.03148804,0.04686036,-0.026509954,0.04688691,-0.05036493,-0.0069494047,-0.025009891,-0.006836568,-0.00089024723,0.024080649,-0.021279648,0.033001374,-0.032019034,-0.0049979957,0.005807764,0.008429554,-0.005412836,0.017907826,0.018611394,0.047763053,0.030744644,0.031912833,0.0011822948,0.00023396993,-0.012405384,0.04232035,-0.06876393,-0.010294677,-0.004065435,-0.0058973697,0.014111207,-0.0064947396,-0.04327614,0.044231933,0.0039957417,0.05628553,0.02335053,0.0051838444,-0.014894426,-0.015425421,-0.021279648,0.0017887913,0.0028424857,0.023443455,0.033213772,-0.044603627,-0.014097933,-0.009876518,-0.04670106,-0.11320826,-0.024890417,-0.028408263,-0.042399995,0.008953913,-0.011164182,-0.008874264,-0.039718468,0.025421413,-0.027850717,0.021598244,-0.032948274,-0.020881401,-0.015518346,0.00584427,0.007852097,0.011369943,0.07720675,-0.06127689,-0.009783593,-0.038258232,0.012584595,-0.031195989,0.006322166,0.0046462114,-0.009425172,-0.007672886,-0.05766612,0.0057745767,0.019753035,0.009279148,-0.014005008,0.041152157,0.034116466,-0.0090932995,0.053073008,0.00049988256,-0.019474262,0.023629302,-0.0017987475,-0.060533494,-0.025062991,-0.02885961,-0.012265998,0.016898934,-0.019978708,0.025129365,0.057188224,-0.054639444,0.049435686,0.06520626,-0.0049814023,0.013387726,-0.029417155,0.004005698,-0.028169315,-0.015332497,-0.0153059475,-0.026483404,0.05633863,0.013805885,-0.01675291,0.001755604,-0.024080649,0.018637944,0.011827926,0.03223143,-0.018797243,0.036877643,-0.01659361,-0.0047391355,-0.00026342357,0.023801876,-0.01989906,0.006869755,-0.0038629929,-0.0034713836,-0.0018866936,-0.050152533,-0.023708953,-0.009365435,-0.05617933,-0.010553537,0.026536504,-0.03217833,-0.055489037,-0.009053474,-0.012060237,-0.04683381,-0.012020412,-0.0069626793,-0.033266872,-0.016885659,-0.023483278,-0.042187598,-0.00064798055,-0.018252973,0.070516214,0.032762427,0.005363055,-0.041497305,-0.031594235,0.00958447,0.027213523,0.057506822,0.019049466,0.0002501487,-0.014854601,0.01851847,0.03945297,0.0052999994,0.017496305,-0.010971696,0.017111333,-0.038975075,0.017204257,0.006803381,0.013248339,-0.030611895,0.06223268,-0.0059737,-0.011044708,-0.023177957,0.0035178456,0.019235315,-0.0094716335,0.016580336,0.03464746,-0.008761427,-0.0210407,-0.05761302,-0.035789102,0.02345673,-0.001511678,0.029735751,0.032842077,-0.02579311,-0.026191356,0.0089340005,0.026589604,-0.041231807,0.029390605,0.04574527,0.0070356913,-0.004974765,-0.022474388,-0.03148804,-0.012770443,0.030957041,0.006206011,-0.042877894,0.016792735,0.05047113,0.00037128205,-0.051108323,0.021465495,0.01371296,-0.035258107,-0.012796993,0.023071757,-0.00961102,-0.042745143,-0.02046988,-0.0046329363,0.00016002465,-0.01504045,0.03732899,0.038683027,0.043833684,0.056710325,-0.014403255,0.02465147,-0.0012420318,-0.013925359,-0.031195989,0.03504571,0.012617783,0.053710204,-0.030266747,-0.0044670003,0.044550527,-0.0042778333,-0.028142765,0.021266373,0.036824543,-0.045001876,0.016925484,0.0054825293,0.01610244,0.036797993,0.022062866,-0.0418159,-0.013281527,0.016580336,-0.02023093,-0.012564682,-0.02117345,-0.07094101,-0.0091663115,-0.026722353,0.05177207,-0.019514088,0.0023314024,-0.0053862864,0.044231933,0.03106324,0.001334956,-0.006023481,0.030638445,0.0356829,-0.010254852,0.03454126,0.009259235,0.020828301,0.0018817156,0.03730244,0.026111707,0.03345272,0.012929742,-0.027505571,-0.02571346,-0.03963882,-0.019991983,-0.0032374137,-0.027346272,0.014084658,-0.032974824,-0.02277971,-0.013387726,-0.055064242,0.003317063,-0.034010265,0.008037945,0.060586594,0.019699935,-0.02155842,0.01867777,-0.0033286784,0.060321096,0.032948274,-0.061383087,0.03740864,-0.014642203,0.009066749,-0.024611644,0.029178206,0.048400246,0.0042811516,0.018783968,-0.004350845,-0.030426046,0.03483331,0.035364304,-0.041762803,0.00036257043,-0.010175203,0.051931366,-0.0047391355,-0.019076016,0.014031558,-0.016898934,0.031833183,0.009318972,-0.026828552,0.029151658,0.044523977,0.006750281,0.0075003123,0.017204257,-0.002688165,-0.010633186,0.0053232308,-0.042506196,0.028248964,-0.04338234,-0.058197115,0.014642203,-0.047391355,0.02046988,-0.004915028,0.029496804,-0.0054327482,0.00870169,-0.01381916,-0.0080777705,-0.0015788821,-0.030877393,0.043169938,0.047524102,-0.022806259,0.03358547,0.017668877,-0.0060500307,0.041683152,-0.01555817,-0.009378709,-0.015159924,0.058037817,0.04930294,-0.0059106443,0.026071882,-0.016580336,-0.015836943,-0.030957041,0.049754284,-0.033346523,0.015106824,0.0052800872,-0.027930368,-0.041178707,-0.03353237,0.0269082,-0.013620037,0.027532121,-0.014549279,0.017655604,0.01740338,0.022580586,0.0066374447,-0.0050477767,-0.017283905,-0.01989906,-0.04075391,0.039957415,0.045320474,0.03241728,-0.042187598,0.016673261,0.0075003123,0.029284406,0.02272661,0.04189555,-0.0179742,-0.0056716963,-0.020974325,-0.031780086,-0.0072016274,0.0130425785,0.05628553,-0.052993357,0.03451471,0.024200123,-0.00039015728,0.032735877,-0.0018800562,0.0020874764,-0.072321594,-0.022939008,0.029310955,-0.010108829,-0.021027425,0.019859234,-0.00065046956,0.018916717,-0.006969317,-0.003478021,0.021186722,-0.01924859,-0.0118810255,-0.023576204,0.042214148,0.0149608,-0.037859984,0.021438947,0.014549279,0.012498308,-0.026058607,-0.020376954,-0.036320098,-0.025726736,0.0538164,-0.03592185,0.004938259,-0.0065876637,0.07072861,0.017575953,0.027744519,0.01142968,0.00048038506,0.0016361302,0.03839098,-0.03701039,0.050656978,0.028753411,-0.03116944,-0.028302064,0.060533494,-0.033001374,-0.01908929,-0.0037833434,0.01865122,-0.011277018,-0.026085157,0.0011947401,-0.015876768,-0.028594112,-0.012949655,-0.013407638,0.0077127106,-0.017721977,-0.0076994356,0.041338004,0.12117319,0.026191356,-0.034089915,-0.062020283,-0.030346397,0.008655228,0.0018651219,0.017629053,-0.016487412,0.004526737,-0.0241072,-0.01750958,-0.021518596,0.021757543,-0.019022916,0.00550576,-0.037647586,0.031806633,-0.04678071,0.06515316,0.0026400436,-0.0020559484,-0.020695552,-0.031567685,-0.049807385,-0.009677394,-0.014748402,-0.017416654,-0.03217833,-0.066586845,-0.002922135,-0.027771069,0.04571872,-0.0060168435,-0.013805885,-0.005197119,0.030771194,0.0051838444,-0.005399561,-0.0209345,-0.0058276765,-0.0027960236,-0.05909981,0.009889793,-0.033081025,0.007898559,-0.017536128,-0.02589931,0.01729718,0.005840951,-0.0022683467,-0.012750532,-0.06122379,-0.00924596,-0.0019414525,0.00057745766,-0.006527927,-0.014111207,0.022341639,0.011794739,0.01444308,0.0269082,0.010082278,0.014907701,0.023868252,-0.026762176,-0.030558795,0.005233625,-0.0035311205,0.04200175,0.022487663,-0.029629553,-0.025461238,0.0019746397,0.030691544,-0.020430055,0.0114164045,0.037727237,-0.03945297,-0.02169117,0.061383087,-0.002163807,-0.010168565,0.023576204,-0.032868627,-0.027744519,0.03488641,-0.014177581,0.03151459,0.020045083,0.008316718,-0.0356829,-0.008150782,0.03817858,0.014005008,-0.013726235,-0.016686536,-0.0034879772,0.015080274,-0.042612396,-0.012146523,0.006010206,-0.021292923,0.010440701,0.016115716,-0.02698785,0.015730744,0.015916592,-0.0050510955,-0.007885284,-0.042771693,0.0024110517,-0.018173324,-0.017549403,0.01677946,-0.017668877,-0.010082278,-0.034063365,-0.031222539,0.032045584,0.01023494,0.0090070125,-0.021266373,0.056763425,0.0018916717,0.0075268624,0.033240322,-0.020244205,-0.048320595,-0.043939885,-0.010825672,-0.034780208,0.0036140885,0.012305822,-0.0058475886,0.0051805256,0.0028292108,0.0088477135,-0.011057983,-0.042240698,0.026244456,-0.02101415,-0.00034452486,-0.01683256,-0.0178149,0.05142692,-0.014602378,-0.029364055,-0.031726986,-0.048825044,-0.027771069,0.027399372,-0.003270601,-0.02153187,-0.02747902,-0.020854851,-0.010606636,0.006577708,-0.009378709,0.05240926,0.03847063,0.002085817,0.01628829,0.011615528,0.023775326,-0.03504571,0.013766061,0.058250215,-0.036665246,0.054480147,-0.015213023,-0.03942642,0.034089915,-0.02202304,-0.031355288,0.00032233092,0.0059438315,-0.02413375,0.021903567,0.025647085,-0.0072879144,0.0013009391,0.01981941,-0.03249693,0.039957415,0.020549528,0.08294151,0.03730244,-0.0057082023,-0.023045208,-0.0017439886,0.002563713,0.01859812,-0.006620851,-0.008529116,-0.006730369,0.0030299935,-0.045054976,-0.018664494,0.009942892,-0.019593736,0.017987475,-0.007613149,0.023111582,-0.04293099,0.021266373,-0.005804445,0.0002729649,-0.023708953,-0.012657607,0.012929742,0.018478645,0.013341264,-0.009146399,-0.051028673,-0.023204507,-0.01805385,0.008157419,-0.04075391,-0.0039393236,-0.055754535,-0.0033801186,-0.008821164,0.018014025,0.000023399585,0.0055721346,-0.008794614,-0.020708827,-0.0052933623,0.002293237,-0.0015266122,-0.021545146,0.003335316,0.010892047,0.0146820275,0.008814527,0.01742993,0.005233625,0.03847063,-0.021027425,-0.008403005,0.0014096273,0.029470254,-0.013341264,-0.0021156855,0.004125172,0.00361077,-0.003151127,0.02581966,-0.030532245,0.010639824,-0.016407764,-0.016301565,0.0024525358,0.023562929,-0.012458484,0.0010902003,0.008403005,-0.024890417,0.006557795,-0.015956417,0.006766875,0.01851847,-0.018770693,-0.031726986,-0.038231682,0.00935216,-0.018106949,0.02337708,-0.011529242,-0.014628928,0.021730993,0.004470319,-0.006478146,-0.0076396987,-0.0018369128,0.029125107,0.018876892,0.0052568563,0.009226048,0.008854351,-0.050072882,-0.015969692,0.037913084,0.021253098,0.01742993,-0.018558295,-0.0142174065,-0.0012777081,0.007925109,-0.04075391,-0.034275763,-0.03488641,-0.0135934865,0.007579962,0.010679648,-0.021213273,-0.038603377,-0.0021488727,-0.007407388,0.010892047,-0.008369817,0.058197115,0.0018020662,-0.0062325606,-0.030505696,0.033319972,-0.008734877,-0.019500813,0.024067374,0.018425547,0.020403504,-0.068657726,0.016195364,0.007268002,-0.023841701,-0.019474262,-0.013082404,-0.008190607,0.030293297,-0.0037800248,-0.017416654,0.027717968,-0.0049283025,-0.015213023,0.001984596,0.02862066,-0.015996242,0.031195989,0.026164807,-0.020111457,0.011496054,-0.020138007,-0.022925735,0.011914213,0.038258232,0.008867626,-0.0062956163,-0.015385597,0.015969692,0.03953262,-0.01160889,0.017031683,0.0008877582,0.0149608,-0.022408012,0.004938259,-0.0064350027,0.0029154976,0.015637819,0.02161152,-0.019991983,-0.023071757,0.0072879144,-0.01995216,0.032921724,-0.029364055,0.026855102,0.010613274,0.010965059,-0.020974325,0.008037945,-0.0030864119,-0.036479395,-0.0015813712,-0.03146149,0.0035908576,0.021903567,0.035550155,0.0065544765,-0.008323356,-0.03602805,-0.023177957,-0.0024110517,-0.0020742014,-0.008867626,0.01628829,-0.064622164,0.03485986,-0.01870432,-0.011721727,0.0047225417,-0.01119737,0.016766185,0.050922476,0.022792986,0.00867514,0.02239474,-0.03990432,0.0018966498,0.023204507,0.038603377,0.008203882,0.028434813,0.021704445,-0.02033713,-0.0041882275,-0.011124358,0.011031433,0.015929867,-0.020655727,-0.013261614,-0.0006035926,-0.017549403,0.0012536474,0.010354414,0.0022318407,0.017721977,0.045984216,-0.0008993737,-0.015425421,-0.015850218,0.0072480896,0.0066739507,-0.020602629,-0.007719348,-0.026403755,0.029390605,0.00017786278,0.026523229,0.0014610675,0.019779585,-0.028355163,0.0039127734,-0.029788852,0.0033436127,-0.0034879772,-0.021903567,-0.015359047,0.008860989,0.011655353,-0.007467125,0.008894176,-0.0012221194,-0.009073387,0.017044958,-0.02335053,0.019129116,-0.004048841,-0.023562929,0.003936005,0.01433688,-0.027186973,-0.00927251,-0.018080398,-0.024956793,0.0066075763,0.014297056,0.002021102,-0.018160049,-0.027983466,-0.004065435,0.006355353,-0.0034083277,-0.03390407,0.0077392603,0.037753783,0.00019839736,0.02335053,0.0013814182,-0.012996117,-0.023523103,0.0017639009,-0.056975823,-0.055807635,-0.009617657,-0.022062866,0.023204507,-0.0077259857,0.0029669378,-0.020576078,0.047205508,-0.018810518,0.06876393,-0.002940388,0.0012719004,-0.07009142,-0.027717968,-0.050019782,0.022248715,0.0044869124,0.0108654965,-0.029257856,0.028753411,-0.0016286629,-0.028912708,-0.028195865,0.04545322,0.023708953,-0.0034050092,0.0027412646,-0.01285673,0.017881276,0.02443907,-0.008814527,0.023297431,0.043913335,-0.015757294,0.049409136,0.024731118,-0.037674136,-0.00053182524,-0.008582216,0.0600556,-0.021903567,0.012485033,-0.030133998,-0.0027263304,0.011157544,0.0135934865,-0.044736378,-0.0108654965,0.061967183,0.0238948,0.004267877,-0.0044039446,0.026682528,-0.017257355,0.0069958665,-0.0027412646,-0.026032059,0.03608115,0.02574001,-0.0075733243,-0.019261865,0.0036705069,-0.038019285,0.000776581,-0.04919674,-0.024399247,0.00025077094,0.02218234,-0.0100225415,-0.0022351595,0.036930744,0.011967313,-0.03124909,0.013845709,-0.026005508,-0.014748402,-0.029310955,0.017310455,0.010367689,-0.016527237,0.012670882,0.010566812,0.023987725,-0.02766487,-0.004563243,-0.0040953034,0.015159924,0.02046988,0.003547714,0.040727362,0.009153036,-0.019806135,0.018266248,-0.03241728,0.02090795,0.0074936748,-0.036559045,0.022620412,0.017761802,0.029284406,0.004490231,-0.029523354,0.06313537,-0.026695803,0.010898684,0.0042612394,0.010679648,0.018186599,0.0016062616,-0.0018203192,0.006823293,-0.015252848,0.028541012,0.01659361,-0.023616027,0.013938634,-0.022766436,-0.023775326,0.036187347,0.0011955698,0.008960551,0.015730744,0.02451872,0.007022416,0.036638696,0.017881276,-0.024412522,-0.0025487787,-0.034143016,0.031036692,-0.0106464615,-0.027186973,-0.017575953,-0.016394489,0.008900813,0.00690958,-0.020005258,0.009717219,0.008522479,-0.004712586,0.015000625,-0.053285405,0.012352284,0.0060135247,-0.019354789,0.018783968,0.009179586,-0.022593861,0.008270256,0.02457182,-0.042426545,-0.0033933935,-0.030824292,0.012186348,0.029603003,-0.0047988724,-0.00405216,-0.00081599085,0.0015929868,-0.047019657,0.024996616,0.004543331,0.008403005,0.025368314,-0.02335053,-0.038975075,-0.0045134625,0.042877894,0.00719499,-0.024346147,-0.022660237,-0.0076927985,-0.027505571,0.018106949,0.015186474,0.021385847,0.014323605,0.0013274889,0.057825416,-0.044523977,-0.037992734,-0.041125607,0.0028657168,0.018160049,-0.012790356,0.03504571,-0.018186599,-0.008110957,-0.027399372,0.0080047585,0.0041550403,0.00810432,0.012485033,-0.0025670317,0.016474137,-0.01740338,0.0021306197,-0.013420913,0.085437186,-0.021465495,0.00030635955,0.021399122,-0.0064947396,0.006823293,-0.012378834,0.023124857,-0.005582091,0.031036692,0.0142174065,0.010872134,0.0074604875,-0.015239573,0.026549779,-0.018239697,0.016248465,0.014708578,0.030957041,-0.012173073,-0.022567311,-0.007135253,0.0037136502,0.02101415,-0.033850968,-0.02763832,0.0033419533,0.020921225,0.0038065745,0.0091663115,-0.009604382,0.011602254,-0.021107074,0.018797243,0.013016029,-0.01433688,-0.014881151,-0.0478427,0.011642078,0.030479146,0.012106699,0.022341639,-0.020549528,0.0068100183,-0.018850343,-0.013447463,0.037647586,-0.008748152,0.002293237,-0.008695052,-0.010294677,-0.004005698,-0.01353375,-0.021332746,0.05166587,-0.020815026,0.01612899,0.036187347,-0.009690669,-0.014628928,-0.005021227,-0.024040824,0.015863493,0.028169315,0.042134497,0.06881703,-0.0041185343,0.018531745,0.027771069,0.047391355,-0.0027313086,-0.012538133,-0.0060135247,0.0040455223,-0.016367938,-0.02223544,-0.010122103,-0.01675291,-0.031912833,0.010500438,-0.011436317,-0.012226173,-0.010460612,0.034408513,-0.05734752,0.009524733,0.024306322,0.018691044,-0.01924859,-0.05158622,0.03945297,-0.039160922,-0.015252848,0.00004355823,-0.0027263304,0.026828552,0.013474013,-0.0012353944,-0.045293923,-0.0023529741,0.006391859,0.015956417,0.03485986,0.007394113,-0.018996367,-0.0117350025,-0.000111799454,0.01696531,-0.020761928,0.015425421,-0.027399372,-0.033797868,-0.0015133374,-0.013002754,-0.023191232,-0.017204257,0.025939133,0.008768064,-0.016009517,0.02145222,0.026377205,0.042824794,0.010984971,-0.0073808385,0.0069162175,0.012179711,0.026151532,0.010268127,-0.009411897,0.028408263,0.002329743,0.009803506,0.011124358,0.009763681,0.05275441,-0.0043939883,0.0007566687,-0.024253223,0.0015365684,-0.0015017218,0.03839098,-0.0072348146,-0.0035875388,0.0038795865,-0.045161173,0.026483404,0.016434314,-0.024863867,-0.022806259,-0.0051307445,-0.018186599,-0.033293422,-0.006620851,-0.013991733,-0.016872384,-0.030611895,0.018837068,-0.003936005,0.008482655,-0.024545271,-0.003789981,-0.018372446,-0.01436343,0.029045457,-0.008794614,-0.003916092,-0.010507075,0.013069129,-0.026470128,-0.029072007,-0.01737683,0.0029536628,0.01612899,0.0078056348,0.0056584217,-0.0101818405,0.009119849,-0.0029055413,-0.025434688,-0.031222539,-0.0065544765,-0.027771069,0.023363804,0.03350582,0.023098307,0.0011184094,-0.011814651,-0.0032473698,-0.009405259,-0.037727237,-0.0076529738,-0.015916592,-0.048479896,-0.034381963,0.0013905447,0.005472573,-0.011602254,0.043754034,0.021704445,0.017721977,-0.01057345,0.011509329,0.025102815,0.010580087,0.037594486,0.005628553,-0.0039260485,-0.028063117,0.035762552,-0.000067515255,0.027372822,0.022620412,0.005880776,-0.022633687,0.025567437,-0.009737131,0.038736127,0.01696531,0.01441653,0.010712836,-0.024970066,-0.0011955698,0.037939634,-0.011177457,0.00045383527,0.020403504,-0.0063653095,-0.0018667813,-0.0037335625,-0.021465495,0.01057345,0.03493951,-0.00054219627,-0.008283531,-0.024054099,-0.034116466,-0.02345673,-0.024757668,-0.032815527,0.009790231,-0.018067123,0.019699935,0.0032838758,-0.009259235,-0.029231306,-0.0069361296,-0.021903567,0.012710706,-0.041869,-0.00023936285,-0.010673011,0.040196363,-0.010799122,0.010049091,-0.0110247955,0.003932686,0.023934625,0.011330118,-0.008117595,-0.018412272,0.014907701,0.018292798,0.008655228,0.0010528647,0.014615653,-0.018969817,-0.014814776,0.0063155284,0.020854851,-0.04091321,0.020045083,0.029735751,-0.03010745,0.0068432055,0.016248465,0.0060898555,0.0017954288,0.014151032,0.041523855,-0.011522604,-0.022713335,0.026855102,0.010440701,0.012723981,0.0041550403,0.021983217,0.019686662,-0.014124482,-0.016221914,0.003225798,-0.011369943,-0.03345272,0.011018158,-0.030293297,0.03608115,0.022315089,-0.020735377,-0.009159674,0.013965184,-0.015637819,0.022846084,0.02688165,0.026709078,-0.024505446,0.0029619597,0.016606886,-0.023177957,-0.012617783,-0.0054327482,0.010812397,-0.021890292,0.015890043,-0.026085157,0.032788977,0.031302188,0.022686785,0.0011839542,0.0073078265,0.02516919,0.004301064,0.011077895,-0.0005911474,0.018067123,-0.01981941,0.02467802,-0.0040787095,0.017443204,-0.000916797,0.057984717,0.008097682,-0.02761177,0.0034149652,0.00017889988,-0.009750406,-0.000092509385,0.0016966967,-0.0051340633,0.008456104,0.0016834219,-0.016912209,-0.02587276,0.017549403,-0.021053974,-0.027054224,-0.013686411,0.00042272225,-0.021850469,0.015093549,-0.006405134,-0.06966662,0.015876768,0.026974576,0.0059006885,-0.02579311,-0.009763681,0.02755867,-0.010035817,-0.018823793,0.029018909,-0.028010016,-0.020602629,-0.042214148,0.010473887,0.007374201,0.012870005,0.0021206636,-0.009922979,-0.015996242,0.02644358,0.03706349,-0.0075135874,0.022036316,0.00690958,0.0032606446,-0.0075733243,0.008037945,-0.021571696,-0.016620161,0.025673635,0.0014560894,-0.00067909353,-0.010241577,-0.023310706,0.015239573,0.016991857,0.0027827485,-0.037806883,-0.0037136502,0.0048221033]},{"id":"interface-GatewaySessionsReplaceDispatchData","type":"interface","source":"main","text":"Interface: GatewaySessionsReplaceDispatchData\nDescription: SESSIONS_REPLACE — user's active sessions list replaced\nProperties: sessions: Record[]","meta":{"url":"/docs/typedefs/GatewaySessionsReplaceDispatchData"},"embedding":[-0.00077504927,0.012871228,-0.003691383,-0.017399995,0.026645701,0.005460236,-0.011202736,0.023685068,0.01280223,-0.027674396,-0.004070871,-0.013674112,-0.012193795,0.026118807,0.02017245,-0.004616581,0.0066990606,0.04036999,-0.01885522,0.041348506,-0.027448585,-0.007903386,0.02647007,-0.0025341015,-0.036380664,-0.0070064142,0.011058467,0.003904649,0.02641989,-0.041549228,0.04849919,-0.012921409,0.04604036,0.009753781,0.028176198,-0.021301506,-0.026093718,0.05770726,-0.049603153,0.007156955,-0.022744188,-0.025968269,0.000026756254,0.009157891,-0.027122414,0.029807055,-0.0008616886,-0.023158174,0.02344671,-0.013322851,-0.012469786,-0.023722703,-0.020322992,0.031488094,0.045262564,0.013674112,0.02647007,-0.017600715,0.014652627,-0.0070942296,-0.006849601,0.007752845,0.019357022,0.01654693,-0.0044252686,0.020874975,-0.024801577,0.064431414,0.013812108,0.0040928246,-0.026168989,-0.01044376,-0.055549514,0.0014756123,-0.015631141,0.01049394,-0.0130844945,0.008762722,0.01314722,-0.03801152,0.036104675,-0.00605299,-0.042954274,-0.0093397945,-0.014037918,0.015794227,-0.032692418,-0.02852746,0.03377129,0.03339494,0.056252036,0.04388261,-0.015242244,0.01329776,-0.022543468,-0.04144887,0.028251467,-0.020849884,-0.03259206,0.054846987,0.045563646,-0.07145664,-0.03914058,-0.020072091,0.030007776,-0.029681604,-0.004854937,-0.018529048,-0.058008343,0.00020973767,-0.011760991,-0.028075837,0.004487994,-0.0421263,-0.016208213,-0.023647431,-0.025717366,-0.03098629,0.013021769,-0.0013595705,-0.021238782,0.03259206,0.005281469,-0.015932223,-0.022505833,-0.02532847,0.038939856,-0.0063227084,-0.04222666,-0.036556296,0.06287582,-0.003967374,0.012933954,-0.029781966,-0.01672256,0.008493003,-0.020360628,0.017525444,0.008148015,-0.011748446,-0.010098771,-0.008148015,-0.015919678,0.021000424,-0.06583646,0.0079535665,0.0197961,0.075671785,0.038613684,0.03316913,-0.018290693,0.016434025,-0.009584423,0.070954844,-0.01900576,-0.02532847,-0.0140128285,-0.012174978,-0.009509153,-0.010926745,-0.030007776,-0.014088099,0.001982119,-0.012714415,-0.075621605,-0.010029773,0.01101456,-0.0015634277,-0.05585059,-0.008467914,0.001828442,-0.0649834,-0.024274684,0.038613684,-0.04624108,0.014088099,-0.023459256,-0.013787017,-0.028226377,-0.00061784405,0.015994947,0.025943177,-0.01530497,-0.022731643,-0.018265603,-0.009753781,0.0032742599,0.029606335,0.0004096745,0.0052250163,0.02212948,0.027298044,0.0014183755,0.035828684,0.013699202,-0.04869991,-0.0026877783,-0.026821332,0.023346351,-0.008536912,-0.0063446625,-0.029857235,-0.024475405,-0.0006076512,0.0014983502,0.017098913,0.035075977,0.03487526,-0.033696022,0.02210439,0.039190758,0.04144887,0.0127520505,-0.01654693,-0.011020833,0.04265319,0.013812108,0.025642097,0.0028226378,0.036179945,-0.0003061778,-0.034724716,0.008154287,-0.009960775,0.040570714,0.015141884,-0.0456891,0.00843655,-0.06448159,-0.041549228,-0.05720546,0.012444696,-0.013787017,-0.030484488,-0.009722419,0.014953707,-0.0209377,-0.043255355,0.021314051,0.018328328,-0.0044064512,-0.028025657,-0.011717083,0.02014736,0.033821475,0.026896602,-0.0062411656,-0.04458513,-0.02875327,0.010581755,-0.021489682,0.052237615,0.03562796,-0.013536116,-0.006554792,0.023183266,0.014050463,0.006887236,0.008373826,0.06302637,0.07803025,-0.047771577,0.028552549,0.029004171,-0.054545905,-0.008536912,0.038814407,0.03487526,-0.003109606,-0.016208213,0.006504612,0.03103647,0.035954133,0.01649675,-0.013548661,-0.022618737,0.047018874,0.008982261,-0.0031503774,0.010243039,-0.021966394,-0.0046918513,0.017048731,0.008116651,-0.026620612,0.047269773,0.001412887,0.047445405,0.0008036677,0.033972014,-0.038588595,0.011403456,0.04375716,-0.024864303,-0.037384268,0.04857446,-0.029405612,-0.008994806,0.025039934,0.021765674,0.031914625,0.0130844945,-0.030183407,0.017550534,0.045889817,0.0097726,0.004036372,-0.004688715,0.053943746,-0.03118701,-0.032165527,-0.004716941,-0.034398545,0.030534668,-0.012883773,-0.0469436,0.06563574,-0.013761927,0.032391336,-0.02332126,0.004164959,0.0015869497,-0.008499276,-0.01974592,0.022430561,-0.011328186,-0.005874223,-0.009258252,0.0041586864,0.032190617,-0.029907415,-0.01895558,-0.0220793,-0.000332248,0.006150214,-0.0051622908,-0.05344194,0.021439502,0.028979082,-0.004914526,0.005447691,-0.01880504,-0.029154712,-0.043430988,0.043531347,-0.029104533,-0.04036999,0.003242897,-0.00813547,0.004880027,0.011321913,-0.01877995,-0.031688813,-0.029505974,0.0006958586,-0.050079867,0.043456078,-0.036355574,-0.026269348,0.043104816,-0.029756876,0.033846565,-0.0073764934,-0.024600856,0.028251467,0.017061278,-0.035050888,0.03479999,0.013485936,-0.004735759,-0.015919678,-0.04629126,-0.019306842,-0.003418528,-0.012256521,-0.018767405,-0.0049270713,-0.014201004,-0.0064983396,0.0058083613,-0.01786416,0.0050431127,-0.013987739,0.010437488,0.01054412,0.006824511,-0.0674924,0.031713903,-0.056402575,-0.027674396,0.029631425,0.013097039,0.019495018,-0.038212243,0.02652025,-0.020511167,0.020724434,0.029807055,-0.021263871,-0.0145397205,0.016158033,0.036807198,0.040269632,-0.024914483,-0.042377204,0.052388158,0.013410666,0.017312178,0.062173303,-0.008725087,0.04190049,0.015204608,0.038964946,0.056352396,0.035502512,-0.016383843,0.019658104,0.00030343357,0.008536912,0.052036896,-0.005281469,-0.0062443023,-0.022004029,0.032290976,0.05549933,0.01560605,0.011397184,-0.006005946,0.029204892,-0.055900775,-0.040470354,0.05529861,0.06583646,-0.02634462,0.059162486,0.011516362,-0.006887236,-0.012269066,-0.032115344,-0.0329935,-0.018014701,0.001958597,-0.006423069,0.0220793,-0.06684006,-0.029204892,0.027398404,-0.031738993,0.057907984,0.025315925,-0.023609797,0.015229699,-0.010876564,0.056151673,-0.026018448,-0.017550534,-0.01431391,0.010550393,0.018441234,-0.029681604,-0.009527971,0.009314705,-0.028126018,0.037760623,0.043556437,0.028100926,0.046717793,0.0012670507,0.0060812165,0.014476996,0.011691993,0.02192876,0.05765708,0.020586438,-0.022894729,0.0028163653,-0.013410666,0.037835892,0.036054492,-0.01570641,-0.008681179,0.03771044,-0.012218885,-0.004384497,0.049879145,0.0758725,-0.0070126867,-0.018917946,0.012808503,0.014677716,0.023358896,0.008649817,0.05078239,-0.013774472,0.026871512,0.022443106,0.01629603,-0.081291966,0.0029967004,0.002791275,0.027022053,-0.03098629,-0.0003902689,0.0026485752,0.04629126,0.008875628,-0.065284476,0.031136831,-0.049578063,-0.035828684,0.022380382,0.03570323,-0.04892572,-0.05504771,-0.037033007,0.02636971,-0.015969858,-0.02309545,-0.0077967527,0.038714044,-0.015292425,0.004168095,-0.009885505,-0.032341156,0.009308432,-0.016572021,0.0034498905,-0.072058804,0.02634462,-0.00942761,0.031538274,0.0047420315,0.0012623464,0.052337978,0.00028638012,-0.00057040807,0.0018645091,0.027674396,0.020297902,0.05123401,-0.0087439045,0.0028696817,0.005250106,0.036029402,0.026018448,-0.018227968,0.067241505,0.022292566,0.0048392555,0.038638774,0.025541736,-0.004321772,0.017299633,-0.010631936,0.016760197,0.016810376,0.04036999,-0.024475405,0.006987597,0.008380098,0.00010143855,-0.024249595,0.00011084734,-0.036129765,-0.000415555,0.04634144,0.003158218,0.014514631,0.017625805,-0.03106156,-0.01855414,0.023233445,-0.0053975107,0.09273306,0.010117589,-0.008449096,-0.00232554,-0.0018895991,-0.022392927,-0.014702806,-0.02091261,-0.081291966,-0.022681464,0.075621605,-0.056753837,-0.015468055,-0.0012694029,-0.00947779,-0.014740442,-0.012614055,0.0037729258,0.0038952401,0.018052338,-0.003060994,0.051936537,0.011290551,0.024299774,-0.015141884,-0.025792636,-0.0033401214,0.006868419,-0.0070064142,-0.043531347,-0.01895558,0.033896744,0.04887554,0.007470581,0.003453027,0.018315783,0.0025215563,0.01267678,0.051635455,-0.0036349301,-0.018453779,-0.0061282604,-0.014301365,-0.017199272,0.0071444097,-0.044760764,-0.017023642,-0.009490335,-0.011579087,-0.028226377,0.042879004,0.018140152,0.07170755,-0.027323134,0.01992155,-0.0065987,-0.008562001,-0.006125124,-0.02636971,-0.0029731784,0.012908864,-0.022618737,0.013498481,0.010261857,0.005504144,0.011842534,-0.013511026,0.031287372,-0.029531064,0.03377129,-0.008618454,0.06613754,0.009622059,0.011002014,0.008204468,0.0013925013,0.021201147,-0.03768535,-0.02230511,0.05035586,-0.013623931,0.045864727,-0.017261999,-0.0011784512,0.03495053,0.0015571552,-0.017939432,-0.0052093347,0.025817728,0.010644481,-0.041323416,0.00032264317,-0.013322851,0.012563874,-0.0038387873,-0.033997104,0.0109894695,-0.036606476,-0.0011643381,0.10598064,-0.001969574,0.01974592,0.0066739703,-0.009239434,-0.005237561,0.015631141,0.008668634,0.034097463,0.026971873,-0.020009365,-0.014251185,0.039266028,-0.0003832123,0.033846565,-0.01974592,-0.0055731414,0.013423211,0.0019883916,0.047119234,0.019331932,-0.040545624,-0.0017782619,-0.0062599834,0.02882854,0.009728692,0.016383843,-0.03490035,-0.025767546,0.023258535,-0.00061196357,0.006021627,-0.0206868,0.013122129,-0.0019115531,-0.020799704,-0.021627678,-0.031262282,-0.019909006,-0.014163369,-0.045362927,0.025642097,0.008580819,0.027900206,-0.047043964,0.031613544,0.03309386,-0.03713337,0.024563221,0.021452047,-0.0084804585,-0.008725087,0.014050463,0.003050017,0.029531064,0.00076603255,-0.032441515,-0.0029277026,0.00017112242,0.011936622,0.020072091,0.0312121,-0.011760991,-0.00035224168,-0.009208072,-0.0075082164,-0.00023247559,-0.007803025,0.014552266,-0.026846422,0.03555269,-0.015580961,0.019018305,0.07050322,-0.0022581103,0.016233303,-0.06608736,-0.012519967,-0.027448585,0.008668634,-0.017939432,0.015242244,0.011027105,0.0013344805,0.008411461,-0.03520143,0.009854143,0.012501149,0.02433741,0.014803167,0.023434166,0.06011591,-0.011792353,0.019143756,-0.047395226,-0.023509437,0.009822779,0.04197576,-0.015568416,-0.008580819,-0.0023318124,0.0082170125,0.016935827,-0.016860556,0.04639162,-0.019783555,-0.03495053,0.017023642,-0.001210598,-0.014890983,0.015957313,-0.040997244,0.0059651746,0.009396248,0.008630999,-0.034549087,0.003810561,-0.0080225635,0.029932506,-0.012808503,0.021702949,-0.010776204,0.0097976895,-0.0025983949,0.045137115,-0.102869466,0.034398545,0.038262423,-0.065987,0.04403315,0.002991996,0.041072518,0.013435756,0.021025516,-0.08304828,0.022643827,-0.029731784,0.009082621,-0.023797972,0.0021295233,-0.029430704,0.01441427,0.034147646,0.022832004,0.0008961875,-0.020097181,0.008524366,-0.015066613,-0.0051089744,0.017036187,0.016785286,-0.004437814,0.008041382,0.015844407,-0.017487809,0.03281787,-0.009001078,-0.06282564,0.017149093,0.026996963,-0.0026078038,-0.0017829662,0.032767687,0.01103965,0.002469808,0.023697613,0.010613118,0.048198108,0.045086935,-0.0072698602,0.012670508,0.0051936535,0.006517157,-0.03989328,0.0057048644,-0.025278289,-0.025918087,0.021276416,-0.019143756,-0.0010851474,0.0026626883,0.007131865,0.035903953,-0.017889252,-0.026796242,0.027749665,0.032140434,0.017312178,0.008016291,0.028075837,-0.014251185,-0.014226095,-0.027373314,0.011441092,0.01540533,0.018503958,0.013184855,0.008825447,-0.016383843,0.0063477987,0.0418754,0.007683847,0.006040445,0.00576759,0.051585272,0.036656655,-0.0062725283,0.008060199,-0.032441515,0.027774757,0.01220634,0.014727897,0.004434678,0.014376635,0.016659835,0.007878296,-0.0009675375,0.03966747,0.01272696,-0.020260267,-0.0018017838,-0.018002156,0.01280223,-0.02850237,-0.015254789,0.0035565237,0.014614991,-0.0064418865,-0.012507422,-0.032642238,-0.0009683216,0.036029402,0.038287513,-0.0015163837,0.016220758,-0.0038889677,0.018303238,-0.014564811,-0.025792636,-0.03966747,-0.03256697,0.016760197,-0.011127465,-0.018566685,-0.015217154,-0.015417875,-0.0206868,0.020335536,0.009822779,0.008474186,0.054044105,0.013385575,-0.029706694,-0.0031143103,0.053793203,-0.019382114,0.018278148,0.0018378508,0.023308715,-0.010525303,0.020900065,-0.0065987,0.013912468,-0.049979508,0.014514631,0.0050148866,0.009308432,-0.02672097,0.018930491,0.012908864,-0.005319104,-0.027473675,-0.04890063,-0.011528907,-0.030158317,0.00077465724,-0.0066426075,-0.031839356,-0.021916214,0.007570942,0.058409784,-0.033144042,-0.0032554423,0.0016292892,-0.004632262,-0.009032441,-0.0018033519,-0.0074454914,0.021401867,0.01441427,-0.008963443,-0.029430704,0.0123631535,-0.028351828,0.021514773,-0.023797972,0.036054492,0.006018491,0.029229982,0.0006080432,0.0037102005,-0.018817585,-0.03284296,0.034599267,0.0016810376,0.007288678,0.016998552,-0.027448585,-0.02101297,0.037860982,0.0044252686,0.030032866,0.00035518192,0.011478727,-0.013498481,0.014715352,0.041348506,0.027348224,0.028301649,0.0053975107,-0.0070565944,-0.00084130286,-0.020498622,-0.038764227,-0.04378225,0.024939572,0.028075837,0.010437488,-0.0006837056,0.023810517,0.027197683,-0.00610317,0.04651707,-0.021502227,-0.018817585,0.0145397205,0.017048731,-0.016195668,0.003145673,-0.0043154997,0.03495053,-0.0232209,-0.04149905,0.019507563,-0.0022596784,-0.0013956375,0.008800358,-0.019068487,0.04217648,-0.001495214,0.0050995657,-0.05956393,0.0009863551,-0.06197258,0.026244259,0.0034028466,-0.04857446,-0.0140128285,-0.015468055,0.0053441944,0.011284279,0.018152697,0.018767405,-0.010976925,0.03723373,0.014815712,-0.014175914,-0.013260125,-0.029556153,0.025479011,-0.0007338858,-0.01314722,0.011967984,0.008762722,0.017475264,0.022794368,0.013774472,0.007846933,0.0048016207,0.0042559104,-0.009716147,0.008104106,0.011867624,-0.0115038175,-0.0006045149,-0.006837056,0.0072134077,-0.0028696817,-0.00833619,-0.004889436,-0.021364233,0.002101297,-0.002858705,0.00989805,-0.0329935,0.02875327,0.045638915,-0.006021627,0.0032930775,-0.021176055,-0.0003385205,-0.020235177,0.034348365,0.033921834,-0.008593364,0.0037572444,0.0041586864,-0.013724293,-0.021640223,0.029756876,-0.034599267,-0.0011337595,-0.00418064,0.01783907,-0.022091845,0.0038607412,0.020272812,-0.008605909,-0.002124819,-0.036029402,0.011096103,-0.025190474,-0.006705333,0.011196463,-0.029957596,-0.03342003,-0.004434678,0.0038042886,0.017011097,-0.011416002,0.036832288,-0.00041477094,0.018140152,-0.0054665087,0.01324758,0.01778889,-0.020335536,0.03951693,-0.010036046,-0.020322992,0.01560605,0.021288961,-0.01260151,-0.00011858999,0.0042214114,-0.010475122,0.03961729,0.008844265,0.004437814,0.014251185,0.01066957,0.0261439,-0.017023642,0.02098788,-0.004735759,0.045939997,-0.00605299,-0.03118701,0.007771663,0.014577356,0.026018448,-0.012074618,0.03306877,0.0052406974,-0.013812108,-0.062926,-0.015894586,0.00885681,0.005648412,0.0130844945,-0.02654534,-0.03286805,-0.038262423,0.009139074,-0.0052595153,0.06689024,0.001281948,0.030710299,0.025140295,-0.02284455,0.037835892,-0.028376918,-0.00019297826,-0.020900065,-0.014025373,-0.0073325858,0.01049394,0.0027457993,-0.0058804955,-0.022957454,0.01984628,-0.002421196,-0.01627094,-0.0008483595,-0.040094003,0.015919678,-0.004356271,0.009653421,-0.04225175,0.027172593,-0.012450969,0.03309386,-0.029004171,-0.000030309053,-0.01327267,0.020360628,0.0029888598,0.0047075325,-0.023685068,-0.027774757,0.002457263,-0.016572021,0.003785471,0.01837851,-0.019457383,-0.0077277552,-0.01977101,0.019131212,-0.010625663,-0.018152697,-0.012971588,-0.01540533,-0.029781966,-0.020009365,-0.027649306,-0.012243976,0.020047002,-0.008988533,-0.022969998,-0.041574318,-0.003086084,0.021602588,-0.035979223,-0.0020636618,-0.026219169,-0.029957596,0.039341297,-0.004723214,-0.019256663,0.020373173,-0.0030876521,-0.02187858,-0.011723355,0.007370221,0.007897113,-0.020498622,-0.0012074617,-0.02443777,0.0029041807,0.027047142,0.015028978,0.0037917434,-0.052388158,0.034473818,0.03058485,0.027925296,-0.00076250423,-0.012256521,0.0051936535,-0.011278006,0.045086935,0.0057424996,0.038839497,-0.02116351,-0.016910737,0.052538697,0.011924077,-0.0006570474,-0.0027097324,0.008762722,-0.0018409871,-0.034624357,0.00029186858,-0.018240513,-0.006529702,0.012287883,0.025391195,0.014589901,0.017851615,0.041223057,0.045312744,0.011033378,0.03291823,-0.0067617856,-0.022593647,-0.047294863,-0.016634746,0.0038858315,0.025253199,-0.0060812165,-0.0461909,0.0038889677,-0.0054100556,-0.034172736,0.034097463,0.00636348,-0.005184245,-0.012043254,0.005400647,-0.012256521,-0.018817585,0.011666903,0.017500354,-0.006742968,0.034323275,-0.0223302,-0.0033777566,0.01786416,0.0010992606,0.014113189,-0.006849601,0.0018268739,0.029932506,-0.00012260833,0.011861351,-0.006354071,0.017199272,-0.05314086,-0.00050964294,0.0014936458,0.011416002,0.025090113,-0.022480741,0.01101456,-0.050983112,0.0053912383,0.014476996,-0.015141884,-0.032366246,0.054796807,-0.01999682,0.018968126,-0.04202594,0.015066613,0.027624216,-0.0119742565,-0.022969998,-0.012243976,-0.006291346,0.017939432,0.018529048,-0.025290834,-0.0029041807,0.0012450969,-0.032014985,-0.009320977,0.0061627594,-0.0039705103,0.012438424,0.025090113,-0.015806772,0.0016026311,-0.016484205,-0.00992314,-0.008047654,-0.014840802,0.0033150313,-0.0011196464,0.02872818,-0.007890841,0.02885363,-0.020925155,-0.0038481962,0.010111316,-0.004949025,0.01210598,-0.013322851,0.0019162574,-0.01972083,-0.017186727,0.005400647,-0.038187154,0.005504144,-0.01743763,0.0009165732,-0.03377129,-0.005958902,0.00010614294,0.00038497642,0.041674677,-0.031086652,-0.03329458,-0.0010749545,0.0050744754,-0.0074580363,0.011177646,0.031312462,-0.008148015,-0.007451764,0.02091261,0.023133084,0.04927698,0.027072232,-0.03537706,0.011917804,-0.0095342435,-0.0026328939,0.00014368011,-0.01441427,-0.0035282972,0.013987739,0.013874833,-0.01994664,0.0017939431,-0.005105838,0.053391762,0.03256697,-0.0049207984,-0.049502794,-0.0010271266,0.013749382,0.0048612095,0.027624216,-0.036380664,-0.02428723,0.01054412,-0.019068487,-0.010663298,-0.004487994,-0.0038513325,0.026695881,0.014514631,0.024801577,-0.040420175,0.04383243,-0.025127748,0.014752987,0.031161921,-0.0015579392,0.0071444097,0.015442965,0.021602588,0.020561349,0.0008405188,0.0054915985,0.018064883,0.012708142,0.0028069564,0.002730118,0.011002014,-0.020624073,-0.030660119,0.0006476386,-0.027975477,0.017801436,-0.025441375,-0.0044597676,-0.0036255214,0.019758465,0.008656089,0.0043499987,-0.00628821,0.01654693,-0.0034718446,-0.01837851,-0.018930491,0.003725882,0.013523571,-0.024776487,0.026670791,0.023622341,-0.009176709,0.0029245664,0.040821616,0.007972384,0.01260151,0.0010020364,-0.016684925,-0.020122271,0.0027614806,-0.0017578761,-0.01538024,-0.029907415,0.014100644,-0.0016120397,-0.018641954,-0.0025027387,0.038438056,-0.022480741,-0.009346067,0.0041492777,-0.033896744,-0.016132943,-0.012068344,0.027548945,0.012689325,0.021314051,0.0031064698,0.008900718,0.020034457,0.021966394,0.011384639,0.0050148866,0.01158536,0.003075107,0.024952117,0.020511167,-0.0046949876,0.02185349,0.044384412,0.019620469,0.013975194,0.03294332,0.009113984,0.015957313,0.014803167,0.014351545,-0.03336985,0.0077779354,-0.023697613,0.010236766,-0.022179661,0.01803979,-0.015656231,-0.0008020996,-0.024651038,0.0024039466,-0.02882854,-0.003192717,-0.0059181307,0.007539579,-0.010920472,0.022204751,-0.0004190833,-0.04139869,-0.0068621463,-0.0078281155,-0.014803167,0.0048267106,0.025968269,0.014288819,0.017989611,-0.009333522,-0.0012772436,-0.016434025,0.0045130844,-0.032717507,0.014765532,0.0013266398,-0.015580961,0.02309545,-0.0015516668,-0.03118701,-0.022556012,0.008524366,0.010042318,0.017989611,-0.014213549,0.0045632645,0.010362217,0.006423069,-0.0050148866,0.006056126,-0.013310306,-0.01560605,0.025102658,0.011886441,0.029405612,0.0034718446,-0.0166222,-0.005933812,-0.028000567,-0.0032930775,-0.006037309]},{"id":"interface-GatewayTypingStartDispatchData","type":"interface","source":"main","text":"Interface: GatewayTypingStartDispatchData\nDescription: TYPING_START — channel_id, user_id, timestamp, guild_id?, member?\nProperties: channel_id: string, guild_id: string, member: APIGuildMember & { guild_id?: Snowflake; }, timestamp: number, user_id: string","meta":{"url":"/docs/typedefs/GatewayTypingStartDispatchData"},"embedding":[0.0034725394,0.015079009,0.014812125,0.010080979,0.0030737282,0.008734423,-0.0043672114,0.026276054,0.018548517,-0.006963276,0.004273195,0.031152774,0.016110158,0.017153434,0.021278024,-0.020404581,-0.073369145,0.033724576,-0.008916389,0.056337025,-0.011651962,0.018718353,0.008461472,0.048476044,-0.03823736,0.026737038,-0.001655901,0.021047533,0.015030486,-0.014059993,0.039499,-0.031468183,0.055269483,-0.022272777,0.013307863,0.0238013,0.018888189,-0.003436146,-0.010590487,-0.032341626,-0.050611123,-0.0030706953,0.014751469,0.0065690135,-0.026081955,-0.001590696,-0.014314747,-0.0008946717,-0.015006223,-0.0010978683,-0.0005042006,-0.018973107,-0.018960975,0.108500935,0.037897687,-0.019773763,-0.0042428668,0.0064962264,-0.034379657,0.016316386,-0.029794086,-0.004946473,-0.008497865,0.02295212,0.026882611,-0.009322783,-0.057938334,0.05405637,0.02112032,0.032462936,0.0075395047,-0.015843272,-0.017044256,0.0055136043,-0.022927858,0.018330155,-0.07278685,-0.023655728,0.04258031,-0.020137696,0.027222283,0.053910796,-0.06468325,-0.03493769,0.012416224,-0.011172782,-0.000772223,0.00014908037,0.004157949,-0.017905565,-0.015358026,-0.0054529486,-0.06332456,-0.0114093395,0.050902274,-0.068904884,0.041828178,-0.031832118,-0.0448367,-0.004637129,0.07147669,-0.012331306,-0.06002489,-0.01732327,0.04493375,-0.013501962,-0.037533753,0.044108834,-0.05022293,-0.024674743,-0.054104894,0.06492587,-0.006635735,0.015382288,-0.038261622,0.008898193,0.0073818,-0.020744253,0.036078017,0.000008476399,-0.031468183,0.024310809,0.016607534,-0.02441999,-0.04505506,-0.027756054,-0.010845241,-0.06846817,-0.06943866,-0.0051375385,0.026251791,-0.04386621,0.003888031,0.056773745,-0.006277866,-0.010475242,-0.011166716,0.0010667823,-0.06118948,-0.05779276,-0.017662942,-0.010893766,0.072883904,0.030036708,-0.02369212,0.0012229708,-0.04883998,0.062936366,-0.004218605,-0.00802475,-0.06313046,0.016158681,-0.027464906,0.0067752427,0.026761299,0.009474422,0.018039009,-0.009759504,-0.02144786,-0.03758228,-0.005586391,-0.07526161,-0.0042792605,0.025645234,-0.022430481,-0.0074121277,0.01921573,0.0060170465,-0.047893748,-0.009219668,-0.005895735,-0.04820916,-0.06769177,0.004822129,-0.0037394245,-0.0009212086,-0.01879114,-0.042531785,-0.044448506,-0.048621617,0.007685079,0.021278024,-0.019882942,-0.093943566,-0.030667527,0.014678682,-0.014229829,-0.017541632,0.05755014,-0.02697966,-0.039668836,0.017917696,0.019130811,0.02125376,0.06075276,-0.025111465,0.036126543,-0.014108518,0.018645566,-0.023522284,0.051484566,-0.036539,0.01922786,-0.0182695,-0.030740315,-0.027804578,0.029599987,0.008795078,-0.03197769,-0.0160495,0.01879114,-0.038698345,-0.029697036,-0.019834418,-0.06191735,0.055948827,-0.07569833,0.005407457,-0.024783924,0.008849668,-0.02474753,0.041221622,0.02154491,-0.0144603215,0.031904902,-0.007515243,0.016000977,-0.0074485214,-0.0038698344,0.007982291,0.006247538,0.008552455,0.020259008,-0.074921936,-0.0076183574,0.015758354,0.00581385,0.033506215,0.035204574,0.0025232777,-0.025572447,-0.012543601,-0.009577537,0.025184251,-0.026421627,-0.020198353,-0.0078003244,-0.03610228,-0.015358026,0.044375718,0.055366535,0.029308839,-0.00029626524,0.023959005,0.010269012,-0.019664582,0.02719802,0.040178344,0.08229767,0.030643266,0.031929165,-0.06347013,-0.028314086,0.047772437,-0.03270556,-0.049980305,0.044666864,0.025669497,-0.009789832,-0.009553274,0.013659666,0.018427204,0.05492981,-0.020914089,-0.0009037701,-0.011973437,0.017675074,-0.012592126,-0.015382288,-0.028508184,-0.028338348,-0.0052072927,0.0133806495,0.040420964,-0.045491785,0.04238621,0.018584909,0.001760532,0.033190805,0.023170482,-0.045103587,0.027222283,0.029090479,-0.043380965,0.011912782,0.035277363,0.019725237,-0.0057744235,0.039280638,-0.008497865,0.059733745,-0.012349503,-0.004949506,-0.020453107,-0.00067934394,0.008067209,0.01359901,0.022248514,0.015673436,-0.020489499,-0.003775818,-0.024359334,-0.022782285,-0.013453437,-0.03804326,-0.029551463,0.039207853,0.03568982,0.005701637,0.014678682,-0.03855277,0.0002818595,0.019519009,-0.03047343,0.040930472,-0.021011138,0.032754082,-0.018536385,-0.01412065,0.0057319645,0.031055724,-0.060364563,0.008394751,-0.004427867,0.035471458,0.032026216,-0.046365224,0.029017692,-0.0043763095,0.020841302,-0.0005929096,-0.017869173,-0.016377041,0.0030145887,0.029575724,0.018427204,-0.020246876,0.024177367,0.0015543026,0.027877364,-0.018815402,0.039959982,-0.024383595,-0.036902934,0.017990483,-0.049009815,0.015236715,-0.008315898,-0.048403256,0.029041955,-0.009280324,-0.006884423,-0.008334095,0.011506388,0.014181306,0.006247538,-0.031686544,0.0007794259,-0.03387015,-0.042313423,0.014678682,0.0031207362,-0.03537441,-0.01751737,0.010590487,-0.009814094,-0.035592772,0.010165897,0.007054259,0.023388842,0.016316386,0.03440392,0.06259669,-0.034500968,0.008904259,-0.027246546,0.0032632772,0.032147527,-0.032875396,-0.0056652436,0.028532447,-0.00834016,-0.04342949,-0.0063021285,-0.042216375,-0.016583271,0.023352448,0.015163927,0.016437698,-0.033967197,0.025329825,0.017226221,-0.0075698327,-0.031492446,-0.016935075,0.010639012,0.0028022937,0.01391442,0.034913428,-0.032099,0.025548186,-0.004042703,0.0078003244,0.02974556,0.026081955,-0.04663211,-0.019179337,-0.030521953,0.010827044,0.02569376,-0.030036708,0.0024186466,-0.03981441,0.01581901,0.008461472,-0.018281631,0.031055724,-0.017286878,0.030424904,-0.04112457,-0.06759472,0.0045825387,0.043526538,-0.009456226,0.027853103,-0.025451137,-0.004819096,-0.002891761,-0.018669827,0.030521953,-0.024517039,-0.008964914,-0.008243111,0.033093754,-0.023910481,-0.0036575394,0.03236589,-0.055220958,0.013768846,-0.0049737683,-0.038285885,0.028483922,-0.021290155,0.05725899,-0.018390812,-0.0245413,0.0044066375,0.05298883,-0.01274983,-0.020440975,-0.04748129,-0.0021820893,-0.008522128,0.0505626,-0.020319663,0.00017485904,-0.021096056,0.014933436,0.0018242205,0.048742928,-0.030958675,-0.0077032754,0.037946213,0.027683267,-0.046122603,0.022151466,0.012943929,0.018706221,0.04197375,0.029963922,0.0017362697,-0.0009939955,-0.008206718,0.035422936,0.03420982,0.078949474,0.012567863,-0.0030797936,-0.029163266,-0.007909505,-0.004054834,-0.023946874,0.07948324,-0.012810486,0.0026081956,-0.002130532,0.0045370474,-0.02717376,0.0037303262,-0.012064421,-0.0087404875,-0.023861956,0.021532778,0.0048160637,0.011712618,0.004145818,-0.021265892,-0.049398012,-0.071428165,-0.040833425,-0.041561294,0.0038061459,-0.0337731,-0.036805887,-0.045831457,0.022867203,-0.03420982,0.036175065,-0.029333102,0.0053771287,-0.018233107,0.01794196,-0.014945568,-0.025232775,0.012155404,0.010711798,0.023085564,-0.07943472,-0.012458683,-0.0102022905,0.05182424,-0.024468513,0.018039009,0.028969167,-0.017929828,-0.0086131105,-0.020853434,-0.010014258,0.004976801,-0.024868842,0.017153434,0.02549966,0.004479424,-0.002385286,0.012234257,0.025087202,-0.02241835,-0.014205568,0.02124163,0.0035726214,-0.0112577,-0.039862934,0.002555122,0.006635735,0.003675736,0.021945236,0.01814819,-0.0092075365,-0.0029220888,-0.016789502,0.008334095,-0.02198163,-0.00695721,-0.009868684,-0.037897687,0.011603437,-0.0073696687,-0.009832291,-0.020016385,-0.01814819,-0.0075455704,0.031710807,-0.0019379499,0.021108188,0.018293763,0.0047857356,-0.01902163,0.0337731,0.0067752427,0.0071088495,-0.005883604,-0.04961637,0.015236715,0.07962882,-0.026664251,-0.01056016,0.014278354,0.0069814725,-0.013671798,0.030619003,0.0020046711,0.008879996,0.0038486049,0.0068237674,0.015248845,-0.008218849,0.0030373347,0.0028523349,-0.024917366,0.0162436,0.006678194,0.03156523,-0.027489169,-0.021896712,0.049543586,0.03942621,0.0031722938,0.02336458,-0.010153766,0.007721472,0.020004254,0.035738345,0.008540324,-0.014642289,-0.01774786,0.00005558527,-0.03049769,0.00020660851,-0.0023928678,0.007636554,0.004521883,-0.009013439,-0.0040821293,0.03440392,0.023437366,0.029357364,-0.03399146,-0.028726544,-0.0038546703,-0.030740315,-0.006617538,-0.019094419,0.0045886044,-0.037048507,-0.037533753,-0.005486309,0.03804326,0.016607534,0.009522947,0.014399665,0.012652781,-0.008328029,0.017614419,0.01603737,0.05002883,-0.029818347,-0.007102784,0.01774786,0.0006296821,0.008898193,-0.034549493,-0.00928639,0.05619145,-0.022115072,0.015115404,-0.039644573,-0.034792114,0.013987207,-0.007005735,-0.016692452,-0.0018196714,0.0114942575,-0.0051375385,0.037339654,0.017772123,0.028435398,-0.017141303,0.007466718,-0.007309013,0.045346208,0.010087045,0.022770153,0.04459408,0.008661635,0.0029266381,-0.012240322,-0.005431719,-0.021969499,0.014326879,0.031953428,0.01751737,0.0367331,-0.007891308,0.006635735,0.043526538,-0.0020713925,0.026591463,-0.004142785,0.029308839,0.015588517,0.02229704,0.014618026,0.02569376,0.005540899,0.02199376,-0.0018939746,0.025523923,0.029066216,-0.022115072,-0.01295606,-0.030667527,0.018645566,-0.0072908164,-0.004215572,-0.0130409775,0.0071877018,0.023316056,0.02814425,0.020950483,0.011002946,-0.025038678,0.0049161455,-0.038479984,-0.005319506,-0.002000122,0.023498023,-0.03241441,-0.009237865,0.001960696,0.0012078069,0.00042345267,0.024092449,0.030303594,-0.0112395035,0.022915728,-0.008758685,0.01625573,0.0047736047,0.01077852,-0.01083311,-0.0155399935,0.0197495,0.026081955,0.008079341,-0.015964583,0.04197375,-0.009389504,0.009334913,0.0087404875,-0.01179147,0.023000646,-0.017784255,0.0014837903,0.02421376,-0.0043186867,-0.0030782772,-0.018330155,0.027343595,-0.014702944,0.0069936034,-0.018257368,0.007551636,-0.06740063,-0.030837363,0.007424259,-0.0011752044,0.009911143,0.0014860649,-0.020744253,0.048500307,0.0017938927,-0.03855277,0.002239712,0.054638665,-0.03852851,0.00085676194,-0.017893435,-0.014848518,0.013865896,-0.015333763,-0.05119342,-0.03345769,-0.0037940147,0.029405888,0.025232775,-0.05245506,-0.043575063,-0.0011107577,0.009601799,0.013332126,0.011118192,-0.017578024,-0.0010311471,-0.00679344,0.03197769,-0.006192948,-0.0035119657,-0.0005223973,-0.01581901,-0.0036454082,-0.020622943,0.018136058,-0.018633435,-0.0027704495,-0.009383438,-0.020198353,0.0019030729,-0.09670947,0.004382375,0.03622359,-0.013392781,0.004722047,-0.016231468,-0.005416555,0.043041293,-0.026858348,-0.048378997,0.010651143,-0.017857041,-0.0032602444,-0.025984906,0.02283081,-0.023097694,0.029551463,-0.0018621304,0.023837695,0.017177697,0.0056379484,0.038722605,-0.025936382,0.029866872,-0.0034695067,-0.03515605,-0.015103272,0.014678682,0.032220315,-0.009140816,0.016158681,-0.013611142,-0.0009522947,0.008497865,-0.009444094,0.03767933,-0.008619176,-0.0039790147,0.01359901,-0.039038017,-0.0017347534,-0.01029934,-0.0030995067,0.015891796,0.03714556,-0.00902557,-0.019300647,0.009043766,-0.021739006,0.019470483,-0.013247208,0.0031419657,0.016073763,0.0007305222,0.0018727451,0.020210482,-0.036053754,-0.0073211445,-0.03896523,-0.018888189,0.032802608,0.012555732,0.013671798,-0.027731791,0.00093637255,-0.03549572,-0.011136388,-0.017432451,0.028702283,-0.0041124574,0.021229498,0.022479007,0.019688845,0.024031792,0.016425567,0.06371276,-0.023874087,-0.0028735644,-0.0027674169,0.011184913,-0.006872292,0.036587525,0.04056654,0.00014500506,0.008249177,-0.005361965,-0.017772123,0.006544751,0.006841964,-0.017214091,0.022927858,0.008989177,-0.011797536,0.031613756,0.0071634394,0.0029205724,-0.013538355,0.011882454,-0.0010880118,-0.042919982,0.037315395,-0.013235076,-0.012628519,-0.041245885,-0.017311139,0.007891308,-0.00040677236,0.066575706,-0.010681471,0.004697785,-0.023595072,0.01814819,-0.013138027,-0.01316229,-0.03156523,-0.029672774,0.06575079,-0.02314622,0.015079009,-0.030885888,-0.021229498,-0.011306224,-0.0014686264,-0.0149698295,-0.0077881934,0.026470153,0.021884581,-0.007515243,-0.014484583,-0.001007643,-0.027489169,-0.032341626,0.005231555,-0.008170324,-0.0097352415,0.0099050775,-0.013975075,-0.0132957315,-0.047505554,-0.0060625384,-0.0027931954,0.005331637,-0.027125234,-0.01732327,0.02782884,-0.013501962,0.0013556551,-0.025548186,0.026494415,-0.00928639,0.01443606,-0.031735066,-0.017578024,-0.004728113,0.0058047515,0.015709829,-0.02707671,0.046438012,-0.0036575394,0.007982291,0.03685441,0.007563767,0.017590156,0.046365224,-0.032462936,-0.0013829502,-0.024177367,0.0029554495,-0.06259669,0.017772123,0.008018685,0.0036727034,0.018342286,-0.02719802,-0.004767539,0.047335718,0.028435398,-0.045467522,0.0337731,0.009541144,0.014581633,-0.0015489953,0.0073575377,0.01795409,0.0675462,0.0016225403,0.005668276,-0.044302933,-0.027901627,-0.005192129,-0.023073433,0.024395727,0.032462936,0.025984906,-0.0009500201,-0.019033762,0.047942273,0.023971137,-0.022915728,-0.015309501,0.0063567185,0.019252123,-0.013647535,0.002996392,0.015200322,0.002956966,-0.003126802,0.035228837,-0.0225154,0.014812125,-0.0075698327,0.034500968,-0.0054954076,-0.0075031114,-0.016728844,-0.00051633175,-0.015940322,0.00059707963,-0.022733761,0.006999669,-0.03877113,-0.017978353,0.006007948,0.050611123,0.022685235,0.04027539,-0.037849165,0.0041913097,-0.04883998,-0.015734091,0.0014504297,-0.03163802,-0.004982867,-0.008042947,0.016498353,0.009759504,0.04163408,0.015673436,0.015637042,0.047214404,0.021532778,0.007254423,-0.012434421,-0.04452129,-0.011985568,-0.025887858,0.01147606,0.023752777,-0.01644983,0.0066903247,-0.0048312275,0.025863595,0.007964095,-0.0067691775,-0.012209995,-0.003336064,-0.018936712,0.004752375,-0.014472453,0.022454744,0.039159328,0.0023185646,0.006617538,0.016328517,0.006393112,0.012203929,0.0055985223,0.010657208,0.0102872085,0.0050556534,0.024359334,0.03163802,0.014387535,0.021290155,-0.018208845,-0.012046224,-0.02879933,0.010930159,0.011184913,0.026567202,-0.028435398,-0.02974556,-0.008218849,0.016134419,-0.022115072,-0.008412947,-0.025451137,-0.0014254092,-0.020416712,-0.027416382,0.02422589,0.005625817,-0.007509177,-0.038285885,-0.012209995,-0.010487372,0.0008120283,-0.023643596,0.0035149984,-0.014241961,-0.036490474,-0.004728113,-0.0136354035,0.0005261883,0.012652781,0.0032693427,0.023522284,0.0055924566,0.009274258,0.003524097,0.02059868,-0.024468513,0.026567202,0.010323602,0.021071794,0.029187528,-0.00014443642,-0.015782615,0.011469995,-0.005304342,0.01274983,0.004142785,0.007345407,-0.005701637,-0.009328849,0.012234257,0.0225154,0.01486065,0.020440975,-0.032438673,0.020210482,-0.051484566,0.007127046,0.014909173,-0.047845226,0.0024580727,-0.016207205,0.037630804,0.018415073,-0.022588186,-0.035059,-0.00040980516,-0.020416712,0.019603927,0.017480975,-0.0149698295,0.0068237674,-0.0019182368,-0.00061868824,-0.025184251,0.07293243,0.011427536,0.0034300804,0.011336552,0.024796054,-0.0069936034,0.0031510643,0.016753107,-0.01699573,0.020622943,0.015139665,0.015260977,-0.005822948,0.0064719645,0.034137033,-0.024735399,-0.014642289,0.010420651,0.030109495,-0.026421627,0.01581901,0.016158681,-0.024165235,0.029551463,-0.014739337,-0.037946213,0.033190805,-0.020562286,0.02654294,0.021083925,-0.0012669462,0.017711468,0.012434421,-0.0030752446,-0.023231138,0.01943409,-0.01131229,-0.039984245,-0.016340649,-0.0058168825,0.038213097,-0.023825563,-0.016304255,0.0002617673,-0.034137033,-0.0045340145,0.018985238,-0.020622943,-0.009328849,-0.026397366,-0.012446552,0.0021896712,0.020659335,-0.027901627,0.022394089,-0.05138752,0.008194586,0.050319977,0.053765222,0.019373434,-0.027877364,0.006672128,-0.030182282,-0.033967197,0.023134088,0.034549493,0.012246388,0.0052285222,-0.017578024,0.029405888,0.02400753,-0.014059993,-0.0068540955,0.0022063514,0.0009166594,0.02187245,0.006575079,-0.029939659,-0.019337041,0.04173113,0.009747373,-0.0003652611,-0.046486538,0.011694421,-0.061529152,0.037412442,0.009268193,-0.016073763,0.040057033,-0.011906716,0.020538025,-0.012294913,-0.020768516,0.0027204086,-0.0013791593,-0.00066152634,0.011961306,0.0032814739,-0.026494415,-0.020974744,-0.018087532,0.044885226,0.042119324,0.010056717,0.0038849984,0.00042345267,0.00017978731,-0.0019334008,-0.006350653,0.006550817,-0.016825894,-0.030716052,0.0031010231,-0.017772123,0.018293763,0.0008180939,-0.0018636467,-0.03122556,-0.0035392607,-0.009310652,0.042070802,0.019603927,0.022042286,0.023170482,-0.035350148,-0.024577694,0.028532447,-0.027659005,-0.014314747,-0.0054923748,-0.035835393,-0.017893435,0.036563262,-0.022042286,0.028411135,0.0028902446,0.0010622331,-0.022442613,-0.03974162,0.01572196,-0.010002127,0.007254423,-0.031953428,-0.033724576,-0.0077396687,-0.012307044,0.02240622,0.000020554231,-0.0114093395,-0.024092449,0.002050163,-0.018318025,-0.015200322,-0.028508184,-0.013744584,-0.014132781,0.030861625,0.012391962,0.015527862,0.03792195,0.001424651,-0.02410458,-0.05163014,-0.004185244,0.01062688,-0.001223729,-0.012822617,-0.014581633,0.029575724,-0.00642344,-0.013623273,0.0043732766,0.029915396,0.00217754,0.0005667518,-0.039329164,-0.027246546,0.013878027,-0.0049737683,-0.029066216,0.0050101615,-0.027367856,0.022272777,0.02795015,0.02135081,-0.0027461874,-0.02644589,-0.010129504,0.005856309,-0.0057228664,0.00025115255,0.019397696,-0.029163266,0.004849424,-0.017650811,-0.061043907,0.0025536055,-0.0042458996,-0.0146301575,0.03537441,-0.0015679501,-0.011730814,-0.018560648,0.010256881,0.0142904855,-0.0053922925,-0.04694752,0.017286878,-0.0071573737,-0.045807194,0.0074849147,0.026179004,0.032438673,-0.001922786,0.020780647,0.0041791783,-0.015976714,0.017917696,-0.008212783,0.017772123,0.017881304,0.01985868,0.000795348,-0.0396931,-0.015467206,0.0015588518,-0.02114458,-0.014169174,0.00010368336,0.0052163913,0.0058047515,0.029599987,-0.002072909,-0.034234084,-0.0013852248,-0.005407457,-0.014909173,-0.01317442,-0.0076304884,0.00012898816,-0.00929852,0.010620815,-0.016850157,0.02877507,-0.017735729,0.024577694,0.0034331132,-0.01359901,-0.0098201595,0.0026354906,0.028095726,0.017929828,0.019470483,-0.020343926,-0.014981961,0.015734091,-0.019567532,-0.011567044,0.012100814,-0.00496467,0.022867203,0.0006357477,0.013089502,-0.006138358,0.026737038,0.015176059,-0.022151466,-0.0056622108,-0.039765883,0.001050102,-0.006393112,0.014205568,-0.022818679,-0.01013557,0.0018772943,-0.023279661,-0.007873111,-0.0012768027,0.03772785,-0.000961393,-0.01306524,0.0057653254,0.031880643,0.008916389,0.021096056,-0.00047046086,-0.023037039,-0.02421376,-0.009795898,0.035617035,0.0088618,0.006459833,0.024759661,-0.035932444,0.015103272,-0.007563767,-0.017274747,0.004267129,0.012313109,-0.005355899,0.039280638,-0.031492446,0.0013033396,-0.016595403,-0.010742126,0.0055651614,-0.0073575377,-0.0024929498,-0.044254407,0.012416224,0.010766389,0.010675405,-0.006763112,-0.0016195074,0.024577694,0.008042947,0.025014415,0.035107527,0.009480488,-0.00007127046,0.022381958,-0.0067813084,0.011075733,-0.013477699,0.01306524,0.014302617,0.016813762,0.015321633,0.01837868,0.013865896,-0.011433601,0.0039395886,-0.021532778,-0.015394419,0.03241441,0.0020183187,-0.04556457,-0.028411135,0.01751737,-0.029891135,-0.041027524,-0.022212122,-0.0072726198,-0.04151277,-0.0002968339,0.051290467,-0.02283081,-0.019506877,0.021459991,-0.013611142,0.014642289,0.04398752,-0.001583114,-0.025354087,0.005270981,0.027100971,0.02007704,0.0065386854,0.05531801,-0.00679344,0.0071452428,-0.059927844,-0.019907204,0.0019773762,-0.009128684,0.05808391,0.008267374,-0.033506215,0.011961306,0.035301622,-0.024043923,-0.026106218,-0.033627525,-0.0117065525,0.0109847495,-0.0015307985,-0.002699179,-0.0053922925,-0.0016498354,0.016643927,-0.0177236,0.01857278,-0.024941629,0.024128841,0.03804326,-0.0027583186,-0.015018354,-0.0072908164,0.0023928678]},{"id":"interface-GatewayUserGuildSettingsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserGuildSettingsUpdateDispatchData\nDescription: USER_GUILD_SETTINGS_UPDATE — per-guild settings changed","meta":{"url":"/docs/typedefs/GatewayUserGuildSettingsUpdateDispatchData"},"embedding":[-0.016942944,-0.0145014925,0.020819824,0.025322404,-0.008778187,-0.005956408,-0.014832745,-0.0048031593,0.029763639,-0.0029828048,0.0023923782,-0.012710276,-0.03283079,0.047773954,0.08053113,-0.027162693,-0.023506649,0.034597468,-0.03523544,0.04058455,0.020255469,-0.008943814,0.04841192,0.03317431,-0.03916139,0.021151077,0.029591879,0.021789044,0.00752679,-0.032241896,0.014059823,-0.018451983,0.039603062,-0.04799479,-0.00888247,0.027187232,-0.019396666,0.009729004,-0.022169372,-0.033812277,-0.008397861,-0.069636606,-0.0019675777,-0.010176809,-0.062569894,0.01258759,-0.018709624,0.013569078,0.0014139569,0.0042848107,-0.0029920063,-0.0059472066,-0.009452961,0.01148955,0.0596745,-0.017225124,0.029763639,-0.0058245207,-0.003444411,-0.0019108354,-0.006876554,-0.034818303,0.019396666,-0.02816872,0.038474347,-0.006293795,-0.019347591,0.02728538,0.05923283,0.0036345746,0.026892785,-0.0065821074,-0.023788827,-0.030327994,0.014685522,0.0152621465,0.0012613661,0.023040442,0.008459204,-0.0029306633,-0.009422289,0.024340915,-0.07837185,-0.050448507,0.01682026,-0.0039719613,-0.06011617,0.0126857385,0.02605852,0.007992997,-0.010961999,0.017028825,-0.040020194,0.00453325,-0.030818738,-0.055944845,0.03862157,-0.029297432,0.0018832311,0.050301284,0.08072743,-0.06119581,-0.034597468,-0.042670213,0.013851256,-0.016758917,-0.027309917,0.006349004,-0.03705119,0.00234177,-0.09029694,0.044854023,-0.012747082,-0.006391944,-0.023040442,0.0008940747,0.05216611,-0.026132131,0.021568209,-0.004573123,-0.033297,0.035259973,0.0086555015,-0.052264262,0.013201021,-0.025567776,-0.0187587,-0.014403343,-0.08794137,0.013851256,0.03874426,0.015237609,0.030794201,0.008839531,-0.024708973,-0.000032348864,-0.016783454,0.01549525,-0.019040877,-0.053589273,-0.010011183,-0.0027650371,-0.0038094022,0.018513327,-0.0750348,0.0010574005,-0.012354487,0.028315943,-0.0029705362,0.03933315,-0.097020134,0.03467108,-0.019789262,-0.0090665,0.031235872,0.008532816,-0.00556688,-0.018954996,-0.026549263,0.0034352096,-0.004772488,-0.04534477,-0.00091937865,-0.011213506,-0.03474469,-0.06512176,0.017838553,-0.016844796,-0.07950057,-0.014538298,-0.000103516366,-0.019421203,-0.014648716,0.008698442,0.006441018,0.014194777,-0.03945584,-0.031726617,-0.026279354,-0.023383964,0.03511275,-0.005260165,-0.046203572,-0.06875327,-0.026868248,-0.015200803,-0.035628032,-0.00023923782,-0.023163129,-0.025813147,0.016709842,-0.015237609,0.019494815,-0.00072614814,0.013409587,-0.045884587,0.0153480265,-0.04514847,-0.0025165977,-0.0061956462,0.027408067,-0.050939254,0.04163965,-0.0049902555,-0.017679062,-0.02983725,0.015863309,0.015004505,-0.017458227,0.03054883,-0.010109331,0.024647629,-0.036216926,0.010593941,-0.055503175,0.04139428,-0.05113555,0.011722653,-0.000024824758,-0.011127626,0.039995655,0.028046034,0.03292894,-0.0021577412,0.015985994,-0.0138267195,0.005023994,0.024439063,-0.009747407,0.0014323598,-0.026524726,-0.011998697,-0.009790348,-0.062128223,0.007324358,-0.013593616,-0.0015358762,-0.010992671,0.026009446,0.036977578,-0.033566907,-0.015397101,-0.009557244,0.021911731,-0.025494164,-0.017973509,0.030745126,0.018010315,-0.016673036,0.037689157,0.01381445,0.080580205,0.016403126,-0.058496714,-0.012575321,-0.004349221,0.009943705,0.023886977,0.014145703,0.030426143,0.0023095652,-0.04092807,-0.015605667,0.033051625,-0.0033769337,-0.00033930363,0.043847997,0.023494381,-0.03513729,-0.021003854,0.023469843,0.014955431,0.0383762,-0.016918408,-0.014182509,0.014624178,0.028978448,0.022157103,0.013090603,-0.009888496,-0.05653374,-0.021420985,0.00814022,0.0339595,-0.012415829,0.049393408,0.012256337,0.050154064,0.029714564,0.03371413,-0.04215493,0.010409912,0.023077248,0.011330058,0.008391727,0.026475653,-0.027064545,-0.023801096,-0.024635362,0.028929373,0.028315943,0.02500342,-0.069391236,-0.012648933,0.038498886,-0.009759677,0.060410615,-0.05216611,-0.008164758,-0.0037603278,0.0027098283,-0.04794571,-0.020010097,0.017323272,-0.02596037,-0.02728538,0.03724749,0.063502304,0.015102654,0.016354052,0.014108897,0.031383093,-0.021138808,-0.036290538,0.032241896,-0.047651265,-0.005244829,-0.022844145,0.013630422,0.04225308,0.037443787,-0.020414962,-0.011195103,0.019028608,0.046326257,0.05138092,-0.021543672,0.04262114,0.016722111,-0.050399434,-0.0057386407,-0.032879863,-0.022684652,-0.068704195,0.038253512,-0.032879863,-0.031235872,0.027138157,0.0061435048,0.031653006,0.025665924,0.03705119,0.014857282,-0.025935834,-0.034253947,-0.052067965,0.053049453,0.036167853,-0.005260165,0.06492546,-0.016734378,0.01716378,0.008907008,-0.021384181,0.030229846,0.009305738,-0.030082623,0.03643776,0.0017528771,-0.01585104,-0.03717388,-0.024402257,-0.056582812,0.016157754,-0.032536343,-0.03940676,-0.004045573,-0.0039995657,0.020758482,-0.0006276159,-0.0053337766,0.025935834,0.029788176,0.00016696806,0.031186797,0.005112942,-0.018832311,0.04436328,-0.03714934,-0.03440117,0.008262906,0.0035762987,-0.00756973,-0.02534694,-0.038130827,-0.0028892567,0.035161827,0.04671885,0.01953162,-0.023469843,0.047381356,-0.0022512893,-0.003062551,-0.006232452,-0.049270723,0.056926332,-0.029910862,0.015409369,0.04144335,-0.018451983,0.020194126,-0.006112833,0.02667195,-0.0030778865,0.021261495,-0.045541067,-0.013176483,-0.016697573,-0.008453069,0.06109766,-0.012882036,0.022598773,0.031873837,0.027260844,0.05790782,-0.018182075,0.0320456,0.006410347,0.012213398,-0.0533439,-0.07915705,0.024083273,0.027947884,-0.022390205,0.055846695,-0.001952242,-0.005361381,-0.022488356,0.036584985,-0.0017406085,-0.03933315,0.011434341,-0.021016123,0.035063677,-0.0008112616,0.017445957,0.004398295,0.0012889705,0.025911296,-0.031579394,-0.01461191,-0.004652869,0.0032327778,0.050154064,-0.025739536,0.01056327,-0.010047988,0.028291406,-0.016390858,-0.00853895,-0.019335324,0.013777644,-0.01891819,0.04242484,-0.030450681,0.025040226,-0.024758046,0.02182585,-0.025224254,0.041762337,-0.03552988,0.02280734,0.009980511,0.02376429,-0.0098148845,0.0015174733,-0.015728353,0.021629553,0.021273764,0.035947017,-0.023163129,0.023101786,-0.0012682672,0.017372346,0.073268116,0.023567993,0.017028825,-0.0032971879,-0.026181206,-0.015985994,-0.028684001,0.006416481,0.037983604,-0.012207263,0.027260844,-0.0056251558,0.010526464,-0.059281904,-0.0039995657,0.0034321425,-0.012280875,-0.007183269,-0.0016823326,0.0005076136,0.037983604,0.013090603,-0.03864611,0.0030748195,-0.045173008,-0.046964224,-0.02262331,-0.008735248,-0.00545953,-0.043602627,-0.021114271,-0.0076678786,-0.009330275,0.0032419793,0.018439716,0.05025221,-0.01910222,0.006858151,-0.0063428693,-0.0015052046,0.020218663,0.034278486,0.037640084,-0.08779415,-0.021874925,-0.013630422,0.0060637584,-0.024512675,0.0038155366,0.030622441,0.0070299115,-0.02183812,0.0014845013,-0.018991802,0.026573801,0.004269475,0.009459095,-0.0034045381,0.0016102545,0.009170783,0.020218663,-0.0027788393,0.020120515,0.011201237,0.027800662,-0.025064763,0.018317029,-0.025015688,-0.017274197,0.018488789,-0.007931654,-0.0016286575,0.005023994,-0.025641387,-0.022377938,-0.00792552,0.016746648,-0.029101133,0.004248005,-0.011839205,-0.02728538,0.022341132,0.0010581673,0.012796156,-0.030033547,-0.00047962583,-0.026181206,0.040535476,-0.00071656326,0.04021649,0.022942293,-0.033517834,-0.013004723,0.041590575,0.039038707,0.033076163,-0.0057355734,-0.09230899,0.001843358,0.055405024,-0.08200336,-0.014955431,-0.015875576,0.009483633,-0.017850822,0.064140275,-0.0033217252,0.01601053,0.0341558,0.0299354,0.03354237,0.0005267833,-0.015532056,0.0070360457,-0.013667228,-0.010692091,-0.02226752,0.00058199203,-0.032683566,-0.00818316,0.039627597,0.03970121,0.02095478,0.031481244,-0.008704576,0.0010988071,-0.0010995738,0.022230715,-0.007287552,0.005707969,0.010182943,-0.03283079,-0.032438196,0.00008377158,0.009324141,-0.0036897834,-0.02262331,0.028831225,0.0099007655,0.011495684,0.00077100523,0.0501786,-0.03827805,0.008545084,-0.0049503827,-0.060950436,-0.017458227,-0.034646545,-0.017519569,-0.004548586,-0.046522554,-0.047111448,0.04637533,-0.031456705,0.010268823,-0.013372781,0.014194777,0.007882579,0.01646447,-0.004428967,0.043087345,0.0063858097,-0.007391835,-0.021457791,-0.0031315617,0.015372563,-0.021077465,-0.038400736,0.013581347,0.016255904,0.045442916,-0.012869768,-0.014010748,0.040854458,-0.005094539,-0.010661419,-0.047013298,-0.010483524,-0.0070789857,0.03292894,-0.00453325,0.0276289,-0.053638346,0.0128574995,0.00047272473,0.0447068,0.016354052,0.027089082,0.04664524,0.020819824,0.0166485,0.0023632403,0.013704034,-0.035382662,-0.0029628684,0.026573801,0.025813147,0.019605232,-0.038106292,-0.009600184,0.023015905,-0.012158189,0.054521687,-0.021077465,0.03398404,-0.007269149,0.0008802725,0.018292492,0.02684371,-0.021003854,-0.017188318,0.00651463,0.050546657,-0.016709842,-0.021077465,-0.009557244,0.0025825417,0.020378156,0.029076597,-0.011563161,-0.009115574,-0.0067906734,0.017544108,-0.010182943,0.026622875,0.0114404755,0.003968894,0.008453069,-0.07606536,0.0103363,0.039014168,-0.0015933852,-0.024794852,0.024598556,0.037272025,0.009330275,0.014795939,0.02684371,-0.00050147926,0.013544541,-0.009360947,0.004496444,-0.02270919,0.01778948,-0.03177569,-0.041762337,-0.025371477,0.015041311,0.015519787,0.01254465,-0.008483741,0.008250638,0.024058737,0.0029874055,-0.011152163,0.026451115,0.007729222,0.012483307,-0.0072752833,-0.0043798923,-0.026475653,0.0080114,0.021151077,0.033395145,-0.0206726,0.02270919,0.0025856087,0.0077782962,-0.022132566,-0.001015994,-0.020095976,-0.05187167,0.0021976142,0.017041095,0.0015098053,0.04181141,0.040731773,0.009097172,0.04875544,0.05447261,-0.03511275,0.019396666,-0.044314206,0.0012421964,-0.013139677,-0.02728538,-0.03018077,-0.001987514,-0.019911949,0.017041095,0.008784322,-0.03756647,-0.0097106015,-0.038768794,0.020893436,-0.0040946472,-0.008827263,-0.008115683,-0.0061895116,-0.04716052,-0.0043768254,-0.0004432034,0.011722653,-0.030671515,-0.023715217,0.034033112,-0.020991584,-0.012452635,0.0022926957,0.023445306,-0.00048345976,0.015568861,0.024255034,-0.0662014,0.027334455,0.039995655,-0.025027957,-0.009103306,0.0014706992,-0.007888714,0.029272893,-0.013335975,-0.03337061,0.03864611,-0.035799794,-0.006986971,-0.0023325686,0.01874643,-0.0010574005,-0.017114706,0.019629769,0.020991584,0.006410347,-0.020464035,-0.00449031,-0.02005917,0.009121709,-0.0017820151,-0.008992888,0.0007200138,-0.0076188045,0.03881787,-0.0064287498,0.020451767,-0.027825199,-0.027211769,-0.036634058,-0.008029803,0.022672385,0.0031238939,0.036290538,-0.008943814,-0.015740622,0.01601053,0.00301501,-0.013041528,0.007269149,-0.01619456,-0.006026953,-0.004852234,0.0056251558,-0.032978013,0.028831225,-0.009391618,0.01610868,0.011857608,0.0015565794,0.008127952,-0.018182075,-0.016709842,0.017936703,-0.025714999,-0.022574235,0.022684652,0.004168259,-0.002096398,-0.031113185,-0.00929347,-0.027702512,-0.026402041,-0.01567928,0.013372781,0.02807057,-0.0025917431,0.029714564,0.009471364,0.006876554,0.00501786,0.026402041,-0.02199761,0.008385592,0.0012698007,0.034818303,0.034352098,0.04877998,0.006152706,0.012152054,0.02517518,-0.010557136,0.0042081317,-0.025984908,0.01839064,-0.037002116,-0.0011547826,-0.008802725,0.012244069,0.007324358,-0.0032143749,0.010446718,-0.003723522,-0.0056742304,-0.036756743,-0.007367298,-0.019961022,-0.021923998,0.011685847,-0.016084142,-0.031530317,-0.012575321,0.038057216,0.012385158,0.026303891,0.011655176,-0.0066189133,0.03643776,0.0044749742,0.03371413,-0.013421855,-0.0075635957,-0.0009784213,0.011415938,0.031873837,0.005324575,-0.0008005265,-0.017531838,-0.017629987,-0.0046313987,-0.0060668257,0.023163129,-0.0058613266,-0.0028095108,-0.0032757178,0.07204126,0.022525162,-0.0031284946,-0.0075574615,0.0212983,-0.019298518,-0.01742142,0.01275935,0.010287226,0.018194344,0.0064287498,-0.0050025242,0.018341566,-0.02772705,0.0043216166,0.06998013,-0.0010152272,0.011256446,-0.031800225,0.04603181,-0.0055576786,0.008127952,-0.07243385,-0.025322404,-0.020218663,0.02473351,0.018807773,-0.03530905,0.037345637,-0.007373432,-0.01680799,0.019642038,0.0063858097,-0.03827805,0.0060024154,-0.04102622,-0.00455472,-0.011507953,-0.016145486,-0.036045164,-0.060263395,-0.041148905,-0.0056926333,-0.01478367,-0.0043001464,-0.030646978,0.051724445,-0.008827263,-0.017495032,0.00853895,-0.005217225,-0.010330167,-0.030818738,-0.011925085,-0.00832425,0.073268116,0.0071403286,0.045835514,-0.009704468,0.0050608,0.006680256,-0.009403886,0.043259107,-0.0019951821,-0.002559538,-0.005938005,-0.05246056,0.038253512,0.02684371,-0.0038063352,-0.01121964,0.014047554,0.011299387,-0.021874925,0.009422289,0.0066863904,0.016587155,-0.040044732,-0.0070299115,-0.019139025,0.017973509,-0.013667228,0.025469627,0.0049902555,-0.009373215,0.0042326692,0.018169805,-0.025420552,-0.054325387,-0.0006372007,-0.026254818,0.0059656096,-0.015961457,0.0061097657,0.019089952,-0.009207589,0.01100494,-0.06683937,0.0034658813,-0.032511808,-0.0132378265,-0.010771836,-0.0038983496,0.0016792655,0.020709407,0.013802182,0.006944031,0.036167853,0.025543239,-0.015605667,0.025935834,0.035456274,0.01858694,-0.019752456,-0.04058455,-0.01082091,0.022856412,-0.0033217252,0.0276289,-0.012832962,0.0035517614,-0.009440692,-0.0013579814,-0.033517834,-0.015716085,0.022255251,0.0083610555,-0.02588676,0.023163129,-0.005658895,-0.0067722704,-0.017102437,-0.00094544946,-0.039185926,-0.017801747,0.016906139,0.006986971,-0.008060474,0.012980185,0.009735139,-0.009287335,0.032683566,0.016599424,0.005244829,0.0020764617,-0.0100909285,0.00177128,-0.02342077,0.01776494,0.0071157916,0.050031375,-0.013569078,0.021911731,0.0046406,-0.014378807,0.00095388416,-0.053638346,0.013569078,-0.02632843,-0.0025472695,0.017102437,0.0012276274,0.030941425,0.0019139026,-0.044240594,-0.004051707,-0.0017252727,-0.024181424,0.038106292,0.010097063,-0.019408936,-0.04446143,-0.0012559985,-0.031579394,0.007735356,0.010281092,-0.0052969707,0.021862656,0.012280875,0.0054380596,-0.0031867705,0.014317463,-0.056631885,0.026696486,0.01461191,0.00035157223,-0.010023451,0.029591879,-0.00044895432,0.009980511,-0.008219966,0.037002116,0.01629271,0.00057892484,-0.015544324,0.011158298,-0.013973942,-0.0023203,0.011753324,0.01743369,-0.0417378,0.029640952,-0.030646978,0.008023668,-0.020267738,-0.0052141575,0.026990933,-0.012139786,0.029272893,0.03952945,-0.021138808,-0.05412909,-0.013973942,-0.013434124,0.0067109275,0.012783888,-0.010624613,-0.0036560446,0.006379675,0.00095235056,-0.0032051734,0.0913275,-0.0041467887,0.004174393,0.009673796,0.013041528,-0.010630747,-0.013691764,0.015985994,-0.0048460993,-0.009225992,-0.013838988,0.010538733,-0.012225666,-0.0058582593,0.036167853,-0.011078551,-0.011998697,-0.008729113,0.013397318,-0.04372531,-0.002985872,-0.00086493674,-0.008348786,-0.017936703,0.00010092845,-0.03979936,0.030499754,-0.032953475,0.026303891,0.03072059,0.013090603,0.019776992,0.0063060634,0.008735248,-0.016304977,0.0046682046,0.02650019,-0.019826068,0.00889474,-0.00809728,0.017912164,-0.017090168,0.009336409,0.004548586,-0.04171326,0.0117349215,0.011833071,-0.02270919,-0.029076597,-0.022377938,-0.0019016339,-0.008557353,0.030745126,-0.02569046,0.012053906,-0.04065816,0.0028708538,0.01628044,-0.013090603,0.0016685304,-0.008698442,0.0066373157,-0.012882036,-0.012250204,-0.0038983496,0.03513729,-0.015397101,0.018820042,-0.032315508,0.029174745,0.010176809,-0.004852234,0.0070360457,0.01478367,0.0206726,-0.0103363,0.0047632866,-0.026254818,0.004717279,0.037811846,-0.004125319,0.0066005103,0.00063490035,0.031505782,-0.07228663,0.07454405,0.049295258,-0.009459095,-0.0009324141,-0.00042096656,0.050988328,-0.015335757,0.0029291296,0.017863091,0.03476923,0.011943488,-0.0026561532,-0.005784648,-0.005465664,-0.0077598933,0.004067043,0.013802182,0.028414091,-0.0041590575,0.01760545,0.0039351555,0.03167754,0.017004289,0.019507084,-0.0057754465,-0.017899897,-0.02148233,0.012796156,-0.03440117,-0.010974268,-0.028855762,0.014182509,-0.031211333,0.00831198,0.015936919,0.009495901,0.019813798,-0.012090712,-0.012397426,-0.031211333,-0.011011074,0.011593833,-0.009495901,0.017568644,0.015335757,-0.025911296,0.010342435,0.024880733,-0.022402475,-0.009906899,0.021236958,0.00086340314,0.004287878,-0.007937788,0.0014377272,-0.0018556267,-0.0005632057,-0.002581008,0.005640492,-0.007735356,0.006361272,0.0033646652,-0.021948537,-0.015863309,-0.04922165,0.00227736,-0.009477498,-0.026181206,-0.033468757,0.016378589,-0.022157103,-0.00012939546,-0.014378807,0.026009446,0.016771184,-0.025371477,-0.0099007655,-0.029788176,-0.0026484854,-0.004646735,-0.0016255904,-0.005490201,-0.019286249,-0.0010650684,-0.017973509,0.004839965,-0.018770967,0.010176809,0.0007223142,-0.004925845,-0.021433255,-0.018120732,0.02473351,-0.020979317,-0.01311514,0.00006594376,-0.03324792,-0.020304544,0.02711362,0.006520764,0.0053276424,-0.001326543,-0.0095204385,0.012906574,-0.015998263,0.0030947558,-0.018795505,0.004192796,-0.034376636,-0.021727702,-0.02015732,-0.0035088214,0.0034536126,-0.0164522,-0.0077169533,-0.030965962,0.008643233,-0.001912369,-0.012029368,0.029199284,-0.0075145215,0.0068090763,0.016525812,-0.00002813153,-0.011096954,0.005744775,0.019948754,0.02280734,0.018464252,0.023837902,0.0056619616,0.02481939,0.03194745,-0.0038063352,0.030450681,0.02517518,0.020660333,-0.01486955,-0.053540196,0.0012345285,0.015237609,0.014955431,0.0052110907,0.024475869,0.021224689,0.010379241,0.015102654,-0.013016991,-0.04647348,-0.02588676,-0.0048614354,-0.0155565925,0.013961674,-0.008017534,-0.0026791568,0.011360729,-0.008287444,-0.04338179,0.00550247,-0.010440584,0.047675803,0.015826503,-0.01761772,-0.02358026,0.012556918,-0.00035866504,0.044755876,0.018709624,0.003444411,-0.03398404,0.018636012,0.005563813,-0.013397318,-0.023383964,0.00025208152,0.04286651,-0.011366864,0.018317029,-0.017126974,0.0061404374,0.016170023,-0.019862873,-0.0105755385,-0.017912164,-0.015961457,0.010777971,-0.00016342168,-0.025935834,0.026990933,0.017912164,0.009692199,0.0223534,0.0103363,0.041885022,-0.0008426999,-0.023801096,0.007447044,0.020476304,-0.008103414,-0.0029950736,0.0026837576,-0.03449932,0.0013150412,-0.0058367895,-0.00963699,-0.008888605,-0.0065084957,-0.00041444885,-0.03494099,0.028119646,0.011121492,-0.012096846,0.0051037404,-0.013691764,-0.014010748,0.0012935712,-0.019875143,0.043504477,-0.003904484,-0.010618479,-0.009084903,0.01629271,-0.017151512,-0.010244287,0.038940556,-0.008232235,0.0149677,-0.0030134765,-0.003925954,0.008864068,0.010961999,0.023298083,0.026598338,0.0025027958,-0.014943162,0.02182585,0.0047694207,-0.010391509,-0.029420117,0.052067965,0.021151077,0.011084686,0.0016777319,0.029469192,0.01236062,-0.013753108,-0.010182943,-0.011980294,-0.021592747,-0.0058153193,0.012661202,-0.03337061,0.043946147,0.005950274,-0.035259973,-0.038179904,-0.00880886,-0.0019169697,-0.02596037,0.019114489,0.002064193,-0.014133435,0.0065882416,0.013458661,-0.03398404,0.009164649,-0.006778405,-0.009747407,-0.013127409,0.013667228,0.0010788706,0.03116226,0.00501786,0.028291406,-0.021077465,0.0042756093,-0.04139428,-0.0092812,0.013802182,-0.0069562998,0.055306878,0.0352109,-0.028855762,0.0048430325,0.006907225,0.012992454,0.016206829,-0.013225557,0.017445957,0.03283079,-0.0045639216,0.013151946,0.0075206556,-0.017016556,-0.040461864,-0.005744775,0.041418813,-0.02438999,0.024537213,0.016096411,0.001742142,-0.02650019,-0.010557136,0.021874925]},{"id":"interface-GatewayUserNoteUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserNoteUpdateDispatchData\nDescription: USER_NOTE_UPDATE — note on another user changed\nProperties: id: string, note: string | null","meta":{"url":"/docs/typedefs/GatewayUserNoteUpdateDispatchData"},"embedding":[0.00590035,-0.0021271883,-0.031103976,0.021020338,0.012260041,0.016525354,-0.008875133,0.0020656693,-0.008864195,-0.019073606,-0.009761005,0.013813052,-0.016853455,0.019139225,0.04330933,-0.02138125,-0.0112538645,0.02193902,-0.03731602,0.029135369,-0.029879065,0.0091430815,0.0929182,0.031672683,0.018089302,0.008257208,-0.020265706,0.035588022,-0.025241904,-0.02489193,0.0526274,-0.012238167,0.036769185,0.01912829,0.0008250373,0.010953105,0.043068726,-0.0028954914,-0.027735472,-0.015737912,-0.04046579,-0.015158267,0.013791179,-0.012599079,-0.07183225,0.0003414301,0.015125456,0.042915612,-0.008372044,0.041865688,0.02552626,-0.029769698,0.010734371,-0.009443841,0.03729415,-0.018373657,0.015650418,0.0133427745,-0.002389669,-0.0034450605,0.009569612,-0.038562804,-0.009438372,-0.027166763,0.034384985,-0.0030786812,-0.04166883,0.03935025,0.046546597,0.01673315,0.0043063257,0.01034065,-0.019707933,0.050090086,0.0140317865,0.028413547,0.0017225302,-0.040422045,0.0087876385,-0.012927179,0.010734371,0.0191611,-0.106742196,-0.025963726,0.00090227777,-0.025307525,-0.070169866,-0.0806691,-0.021042211,-0.011439788,-0.009383689,0.030382153,-0.0304259,0.021720286,-0.031147722,-0.034275617,-0.0065401467,-0.004948857,-0.022212438,0.05687084,-0.0012590876,-0.086356185,-0.031607065,-0.026641801,0.023645146,-0.034122504,0.010668751,0.00437468,-0.055033475,-0.029835317,-0.044206142,0.01309123,0.0072072856,-0.006201109,0.006414375,-0.029091623,0.04271875,-0.041646954,0.0097883465,-0.031191468,-0.0074369563,-0.016361304,0.019204846,-0.004251642,-0.012905306,-0.015420747,-0.009225107,0.015967581,-0.090030916,-0.013419331,0.054377273,-0.014513001,0.013244344,0.007792399,0.0037895667,0.0032536683,0.00003735994,0.027166763,-0.042346902,-0.0177612,0.0021695679,-0.023338918,0.00096858153,0.024301348,-0.055208463,0.007967386,-0.00008826259,0.052846134,0.057483297,0.017575277,-0.046240367,0.036747314,-0.071176045,0.0013985306,0.043856166,0.019445453,0.034209996,-0.02508879,-0.06111428,-0.0256575,0.034253746,-0.06321413,0.0120303705,-0.019007985,-0.045584165,0.00835017,-0.010171131,-0.04672158,-0.052977376,-0.014797355,0.00088177144,-0.04225941,-0.078569256,0.01746591,-0.016328493,0.012752192,-0.00043575914,-0.046852823,-0.04033455,0.020309452,0.010154726,-0.00065312604,-0.026269954,-0.0119428765,-0.019773554,0.0035325543,-0.054639753,0.027254257,-0.01939077,-0.064876504,0.006250324,0.024563828,0.020331325,0.00871655,0.0048996415,-0.05525221,0.027866712,-0.030907115,-0.018909555,-0.046590343,0.0020342262,-0.03738164,0.02216869,-0.029179117,-0.013659938,0.013080293,-0.007185412,-0.0021627324,-0.025701245,-0.016241,0.030775875,0.055208463,-0.0328101,-0.009668043,-0.026291827,0.008623588,-0.0073932093,-0.013900546,-0.038475312,-0.0236014,-0.01604414,0.00759007,0.07108855,-0.015956646,0.0259856,0.0056761475,-0.019740744,0.033860024,-0.038103465,0.0041778195,-0.0077049052,0.019445453,-0.006485463,-0.0420188,-0.0027546813,0.0017977201,0.027319876,-0.04772776,-0.0032536683,0.032831974,-0.000015475858,-0.0407064,-0.012774066,0.03278823,-0.023907626,0.044599865,0.03204453,-0.011877256,0.013649002,0.063389115,0.038300324,0.044162396,0.0519712,-0.020090718,-0.006622172,-0.014184901,0.019018922,0.036266096,0.052714895,0.045015458,0.06531397,-0.05061505,-0.0239295,0.013419331,-0.037928477,-0.052889884,0.06697635,0.034888074,0.0013486318,0.008224399,-0.012752192,-0.0076775635,0.018767377,-0.010225815,0.012839686,0.025351271,-0.01434895,0.0093126,-0.03125709,0.024651323,0.005889413,-0.00090159423,0.016984696,0.010367991,-0.036112983,0.070126124,-0.0073330575,0.025548132,0.055033475,0.008093158,-0.008202525,0.047246546,0.023470158,-0.056739602,-0.02290145,0.052539907,0.012478775,-0.0314977,0.019095479,-0.011713206,0.046284117,-0.027363624,0.0057855146,0.00447311,0.03729415,0.0016528089,0.05389606,-0.010067233,0.019193908,-0.0140755335,-0.024804436,-0.028982256,-0.036572326,0.050921276,-0.032460127,0.013014673,0.042412523,0.020068845,-0.019379832,0.023645146,0.015377001,0.011647586,0.016350366,-0.026882408,-0.0059440965,-0.0074424245,0.0071471334,-0.019642314,0.029704077,0.04619662,0.037950348,-0.027626105,0.006622172,0.022321805,0.021960894,0.037162907,-0.03480058,0.065926425,0.0052605527,-0.016667532,-0.011855383,-0.065007746,-0.03943774,-0.03480058,0.000031122603,-0.050265074,-0.04072827,0.011724142,-0.030163419,0.010203942,0.005790983,0.026969902,0.0040875915,-0.014633304,-0.03589425,-0.018406466,0.01531138,-0.010996852,-0.002248859,0.03681293,-0.021096895,-0.012369408,0.010160195,0.0022556945,0.023667019,-0.018647075,-0.008071285,0.047815252,0.018887682,-0.022463983,-0.017739328,-0.034319364,-0.048733935,0.0042899204,-0.035544276,-0.004175085,-0.014403634,-0.057920765,-0.010783587,0.0094329035,-0.012577205,0.04278437,-0.010707029,0.0062612607,-0.009460245,0.01707219,-0.018734567,0.015705101,-0.038978398,-0.0049953377,0.015136393,-0.023448285,-0.0066440455,-0.0035872376,-0.021435933,0.006829969,0.042303156,0.0027615167,0.018570516,-0.013167787,0.012456901,0.0047684014,-0.018800188,0.01717062,-0.024738817,0.05975813,0.0018606061,0.050790034,0.04096888,-0.018898617,0.04361556,0.016875328,0.013780242,0.0286979,0.06478901,-0.03698792,0.0032427316,0.030797748,0.0032263265,0.024738817,-0.018318973,-0.0057362993,0.009706321,0.017673707,0.03867217,-0.034516227,0.006201109,0.015923835,0.01670034,-0.05398355,-0.03775349,0.039022148,0.0019289604,0.002890023,0.02611684,-0.005873008,0.012708446,0.007885361,0.02290145,-0.028413547,-0.02753861,-0.006069869,0.011724142,0.055033475,0.022595223,0.022157755,0.009547739,-0.004421161,0.022529602,-0.015956646,-0.06264542,0.031103976,-0.0035106807,0.016492544,-0.063870326,0.021949958,-0.052583653,0.036069237,0.0006213413,-0.0043145283,-0.023492033,-0.032328885,-0.013889609,0.025001297,-0.016744088,-0.0008838221,0.00018729099,0.038694046,-0.030075926,0.011439788,0.0393065,-0.009558676,0.031432077,-0.006485463,-0.032766353,-0.005591388,-0.004544199,0.0017990872,0.016897202,0.022923324,-0.015366063,0.0331382,0.018001808,0.0020506312,0.054246034,0.047815252,0.05267115,-0.0032509342,0.014709862,0.00060083496,-0.021698413,-0.017958062,0.034559973,-0.008951689,-0.0016022265,0.033269443,0.057264563,-0.06155175,0.0042707813,-0.002720504,0.0010813662,-0.013069357,-0.007907234,-0.019489199,-0.014173963,-0.014589558,-0.02091097,0.0022392895,-0.031935163,-0.019434515,-0.0073768045,-0.009728195,-0.0126756355,-0.05389606,-0.043899916,-0.010132853,0.00043712623,0.020812541,-0.016744088,0.02270459,-0.009285258,0.021304691,0.008629057,0.016164443,-0.011428852,-0.0084540695,0.0072729057,-0.09344316,0.0029611115,-0.017772138,0.01832991,-0.02263897,-0.0042051612,0.050352566,-0.02322955,-0.01673315,-0.02701365,-0.05105252,0.02727613,0.010039891,-0.018734567,0.007775994,0.038059715,0.010023486,-0.004218832,0.02721051,0.030010305,0.009236043,0.010964042,-0.009055587,0.033269443,-0.0165691,0.027363624,0.035981745,0.0028189344,0.014961406,-0.015726974,-0.007879892,0.012478775,-0.01067422,-0.002404707,-0.024410715,0.011199181,-0.01673315,-0.007874425,0.034275617,-0.011319485,-0.029091623,-0.034035012,0.0023158463,0.0044430345,0.012610015,0.0032536683,0.019237656,0.041603208,0.022267122,0.0051320465,0.034319364,0.03261324,-0.004700047,0.0025865296,-0.07362586,0.007896298,0.05787702,-0.041887563,0.057177067,0.018483024,-0.0060644,-0.034516227,0.027910458,-0.030732127,-0.010827333,0.010171131,-0.001420404,0.0057253623,-0.0045688064,0.0005051388,0.010756245,0.014392697,0.03112585,-0.011242928,-0.0027560485,-0.031278964,0.0030048583,0.052408665,0.046590343,0.01024222,0.01083827,-0.035347413,-0.007447893,-0.024148233,0.015781658,-0.00958055,-0.018165858,-0.018548643,0.017925251,-0.010225815,0.027604232,-0.0010793156,0.000936455,-0.030185293,0.013266217,-0.0013219736,0.019882921,-0.011571029,0.049652617,-0.01912829,-0.019915732,0.0019289604,-0.056958333,0.0037430855,-0.061770484,0.010767181,-0.00911574,-0.017104998,-0.026991775,0.015016089,-0.0074424245,-0.0011674927,-0.035981745,0.0033876428,0.01736748,0.032985087,0.017083125,0.032831974,0.009733663,-0.027976079,0.0147864185,0.0034259213,0.030513393,-0.05100877,-0.04702781,0.053852312,0.0023513904,0.025701245,0.0020027831,-0.029266609,0.05923317,0.006370628,0.021840591,0.012741256,-0.0021764033,0.013353711,0.011242928,-0.001950834,0.010663283,-0.0063925013,0.043834295,0.023207678,0.029857192,0.009285258,0.026816789,0.0472028,0.0071635386,0.020429756,0.0015502772,0.01707219,-0.011789762,-0.005594122,0.0105211055,0.03447248,0.012489712,-0.001986378,-0.025854358,0.0031114912,-0.0108546745,0.031300835,-0.023076437,-0.0054956917,-0.005574983,-0.006343286,0.008929816,0.047552772,-0.013758369,0.0061190836,-0.028216686,0.04335308,0.009252449,0.006939336,0.004016503,-0.006698729,0.028347926,0.0011709104,0.026554309,-0.029704077,0.010860143,0.006026122,-0.004798477,0.028676027,-0.006408906,-0.0036801996,0.017258113,-0.0067698173,0.009897714,0.03138833,-0.01998135,-0.04554042,0.032569494,0.0430906,0.026466815,0.029135369,0.0077103735,0.0023185804,0.008262677,0.015234823,-0.011713206,0.005298831,0.030075926,-0.013506825,-0.03294134,-0.009596954,-0.040028322,0.0174331,0.007486171,-0.021293756,0.025198158,0.022015577,-0.0071471334,0.008902474,0.012358471,-0.005279692,0.035916124,-0.03267886,-0.021862464,0.0023049095,-0.0014955937,-0.0002175378,-0.00068115134,-0.016525354,0.021162516,-0.021490617,0.004628958,-0.027123017,-0.0081423735,-0.005922223,-0.0013554672,0.012642825,-0.0008223031,0.0154535575,0.022179628,-0.0038907311,0.016590973,0.015530114,0.04567166,-0.03646296,0.011188244,-0.00927979,-0.0058401977,-0.02399512,0.021162516,-0.016055075,-0.007311184,-0.015737912,0.028676027,0.0070541715,-0.054071046,0.0040985285,-0.033356935,-0.033160076,0.007606475,-0.0049898694,-0.010482827,-0.0028517446,-0.052408665,0.02893851,0.011231991,-0.019893857,-0.050921276,-0.065051496,0.0040028323,-0.013813052,0.00089886005,-0.0026740232,-0.020495376,0.012139738,-0.0006770501,-0.008465006,-0.0499151,0.05074629,0.041318852,-0.012445965,-0.008273614,-0.024520082,0.013200597,0.00023069602,-0.0046262243,-0.045759153,0.008125968,-0.030797748,-0.045584165,-0.0020096186,-0.00016627202,0.027976079,0.00009048411,-0.005594122,0.042609382,0.010247688,-0.019707933,-0.007945512,-0.04772776,0.010406271,-0.013299027,-0.0026630864,-0.0029091623,0.0140755335,0.041712575,-0.011975687,0.033335064,-0.01276313,-0.02270459,-0.020287579,0.028763521,0.0140536595,-0.0102094095,0.018811123,-0.04099075,0.0074752346,0.024695069,-0.012314725,-0.017192492,0.008514221,0.009503992,-0.00069448043,-0.035478655,-0.003278276,-0.041340727,0.013823989,-0.00977741,-0.007967386,-0.0002635061,-0.0047738696,-0.017422164,-0.026794916,-0.025460638,-0.002451188,-0.030994609,-0.035675514,0.029026002,0.03655045,-0.007874425,0.009575081,0.032438252,-0.027844839,0.009602423,-0.008388449,0.0038989335,0.041646954,-0.00165691,0.027844839,0.012336598,0.0073330575,-0.0017211632,0.038694046,-0.0328101,-0.005233211,0.019532947,0.010756245,0.02061568,0.040159564,0.03937212,0.041975055,-0.0019152897,0.02399512,0.012511585,-0.0101766,0.03383815,0.0011155434,0.03764412,-0.02766985,0.006168299,0.0023582259,0.01574885,-0.01945639,-0.02462945,-0.00067534123,-0.056827094,-0.00808769,-0.0053917933,-0.00765569,-0.012085054,0.00815331,-0.05127125,0.0062393877,0.013495888,0.0046453634,0.01206318,0.018308036,0.0050336164,0.021042211,0.013080293,0.034559973,-0.043659307,-0.008158779,0.012916243,0.03480058,0.030819621,-0.003404048,-0.017258113,-0.016361304,0.0019344288,-0.023710767,-0.013616192,0.040247057,-0.023470158,-0.021239072,-0.0024361499,0.011778826,-0.0015721506,-0.0039180727,-0.020867225,0.023973247,0.00997427,-0.021993704,0.03055714,0.007885361,0.015464494,-0.012424092,-0.0011832142,0.0040083006,-0.008940753,-0.014895786,0.050090086,-0.017804949,0.001640505,-0.0051047048,0.043834295,-0.019226719,0.0008373411,-0.045496672,0.0051320465,-0.024738817,0.0058183246,0.026401194,-0.021326566,-0.010395333,-0.002278935,0.044752978,-0.033488177,-0.0064635896,-0.013452142,-0.011084345,-0.029813444,-0.032219518,-0.008661866,0.0035516934,-0.052452415,-0.02611684,-0.04510295,0.033488177,-0.0040383767,0.022442108,-0.002232454,0.04663409,0.022529602,-0.016678467,0.01325528,-0.018614264,0.0038852626,-0.043003105,-0.010444549,-0.01942358,0.057920765,-0.004609819,-0.0042051612,0.00071156904,0.0039126044,-0.007940045,0.008322828,0.030382153,0.038759664,-0.0075080446,0.015967581,-0.017695582,0.031366456,-0.005517565,0.009837562,-0.014578621,0.0055995905,-0.027713599,0.00851969,0.007103387,0.019871984,0.03442873,-0.009941461,-0.0053917933,-0.015584798,-0.011264801,-0.0029802509,0.0286979,-0.0043336675,-0.019401707,-0.025810612,0.05044006,-0.016765961,-0.0147645455,0.029441597,-0.0133646475,0.014141154,-0.020342262,0.0032728075,0.043265585,-0.016711278,0.027910458,-0.007797867,-0.002982985,-0.007354931,-0.0015666822,-0.009011841,-0.014239583,0.01588009,0.0098320935,0.053371098,0.022343678,0.013102166,0.027516738,0.007885361,0.047902748,-0.004467642,0.027691726,-0.001733467,-0.032635115,-0.0154754305,-0.01736748,-0.0154098105,0.0420188,-0.023623273,0.021206262,-0.010138321,-0.021468742,0.016722215,-0.023163931,0.00028469597,-0.0126756355,-0.035391163,0.030272786,-0.0133427745,0.022551475,0.0045797434,0.0033876428,-0.0413626,-0.021217199,-0.013900546,0.004322731,0.013309964,0.0403783,0.027429244,-0.018373657,-0.022059325,0.054902233,0.021184389,-0.013167787,-0.03943774,0.0126537625,-0.006343286,0.03884716,0.013823989,0.049390137,0.01077265,0.019073606,0.012336598,0.006381565,-0.0050336164,-0.03620048,0.016689405,-0.01772839,-0.010767181,-0.00019737326,0.02946347,0.017159682,-0.0239295,-0.023535779,0.0069174627,-0.00381144,-0.0118007,0.025570005,0.014141154,-0.020998465,-0.008224399,0.0140974065,-0.0055995905,0.021457806,0.0043856166,0.025438765,0.030404026,-0.0076010064,0.023645146,-0.0058456664,-0.0060370583,-0.055558436,0.010072701,0.00462349,-0.0019316947,0.011855383,-0.005512097,-0.048602697,0.022463983,-0.015223887,0.024913803,0.020178212,0.01836272,-0.0037676932,-0.016131632,0.01849396,0.018800188,0.012281914,-0.018176796,0.0020602008,0.00020848085,-0.0328101,-0.019226719,0.0027601498,-0.034625594,0.015661355,-0.0035872376,0.017750265,0.0038442502,0.038431566,-0.066538885,-0.0017485049,-0.013353711,0.023907626,-0.009990675,-0.023798259,-0.0013076193,0.021632792,0.016634721,0.017695582,0.051446237,-0.011921003,-0.0036118452,0.015770722,-0.0055066287,-0.00014781633,-0.023885753,0.024016993,0.0056324005,-0.039262753,0.010553916,0.0126318885,-0.037906602,-0.0056925523,0.0046152873,0.001038303,-0.010264093,0.00037013894,0.01643786,-0.024870057,0.029419724,-0.016262874,-0.020418819,-0.022529602,-0.017247176,-0.040575158,0.03320382,-0.0076611587,0.0036966046,0.0024033398,0.016230064,0.011910067,0.03151957,-0.0068955896,-0.035653643,-0.0017977201,-0.004511389,-0.011439788,-0.017411226,-0.035281796,0.009236043,-0.044293635,0.029354103,-0.0051511857,-0.0018141251,0.037906602,0.020790666,-0.008836853,-0.03655045,-0.019434515,-0.0044266293,-0.0018578719,0.04090326,-0.011111687,0.027844839,0.012839686,0.010810928,0.024366967,-0.030841494,0.0023172135,0.0063323495,0.025395017,0.002950175,0.0029064282,0.016689405,0.034013137,-0.013397458,0.014425508,-0.0021039478,0.0372504,-0.014589558,-0.011669459,-0.009640701,-0.015234823,0.024826309,0.016864391,-0.00865093,-0.05988937,0.010313308,0.04020331,0.018778315,0.005564046,-0.017794011,0.052977376,-0.050921276,0.015759785,-0.005110173,0.0033985795,-0.0012221762,0.0037212123,0.022059325,0.004713718,0.032263264,-0.014392697,0.023163931,-0.00047984772,-0.009482119,0.002015087,-0.023054564,-0.010510169,-0.003062276,0.0133427745,0.029026002,0.002512707,0.021840591,0.023776386,0.025854358,0.035478655,0.025963726,-0.016197253,-0.025570005,-0.02707927,0.0068026274,0.00268496,0.0023951374,-0.04431551,0.009903182,-0.011242928,-0.05044006,0.04715905,-0.017061252,-0.0041477433,-0.02528565,0.0027054662,-0.01080546,-0.0026179727,0.014666115,-0.0019385301,-0.0035134149,0.022945197,-0.009285258,0.01604414,0.028763521,-0.013463078,0.029638458,0.022212438,-0.0059550335,0.0016623784,-0.00093030307,-0.012664699,0.0041340725,-0.015606672,-0.0016049608,0.0236014,0.004278984,0.012489712,0.030404026,0.0033220227,-0.0071143233,-0.03536929,0.020757858,0.03867217,-0.03891278,-0.023535779,0.0070377667,-0.023623273,-0.023317045,-0.00381144,0.000054213564,0.032000784,-0.01694095,-0.013703685,-0.021599982,-0.03235076,0.01640505,-0.015070773,-0.0038469844,-0.042806245,-0.0067041973,-0.018143985,-0.017695582,-0.00759007,0.03416625,0.03545678,0.0013165053,-0.014884849,-0.021053148,0.023404539,-0.032963213,-0.0012180749,-0.02946347,-0.016164443,-0.008109563,0.040947005,-0.032066405,-0.01736748,-0.0012666066,-0.0059714383,-0.008060348,-0.026291827,0.01083827,-0.011669459,0.0464591,0.002623441,-0.04182194,-0.0044758446,-0.009219638,-0.010526574,-0.021720286,0.025395017,-0.043856166,0.022507729,-0.034035012,0.006857311,0.033947516,-0.025854358,-0.020156339,0.014556748,0.009509461,0.0064253113,-0.005000806,0.011625713,0.013845863,0.0140974065,-0.009454777,0.016426923,0.020921908,0.045190446,-0.0008557968,0.0050199456,0.0154316835,-0.014261457,-0.0090993345,-0.046677835,-0.017772138,0.027319876,0.033816278,0.017214365,0.00918136,0.0075791334,0.029375976,0.008186121,-0.00165691,-0.060633067,0.002780656,-0.005058224,-0.0033356936,0.024235727,-0.0016446062,-0.016186316,-0.017914316,0.030163419,-0.029638458,0.026007473,-0.002232454,0.047859,0.034056883,0.0034286554,-0.028085446,0.012172547,-0.01083827,0.018614264,0.01998135,-0.017137809,-0.03490995,-0.0010287333,0.021490617,-0.002686327,-0.026444942,0.0035872376,0.023645146,0.008125968,0.016295683,0.0016241,0.021665603,0.017531531,-0.016831582,-0.00802207,-0.008689208,0.0012782268,0.0080111325,-0.00023736057,-0.0072893105,0.014206774,0.016317558,0.007562728,0.022310868,-0.005060958,0.012260041,-0.032132026,-0.013178724,-0.007043235,0.013802116,-0.009542271,-0.0045797434,0.0028490103,-0.03808159,-0.0061792354,-0.0015502772,0.024388842,-0.0040848576,0.018887682,-0.0017403024,-0.02637932,-0.008027538,0.023142058,-0.052189935,-0.020375073,-0.010034422,0.0059495647,0.010236751,-0.0030568077,0.04064078,-0.031475823,-0.015825406,0.025460638,-0.0017799479,0.017148746,-0.04182194,0.013681812,0.0005102654,0.006283134,-0.0025947322,0.022726463,-0.0014737203,0.04125323,0.00003620646,0.011363232,0.02193902,-0.0066331085,0.043768674,0.014611431,-0.030950861,0.006042527,0.011680395,0.022234311,0.011592902,0.011603839,0.05166497,0.042893738,-0.00656202,0.02959471,0.010395333,-0.037425388,-0.004672705,-0.017684644,-0.067457564,0.01604414,0.01096951,-0.011505408,-0.013955229,-0.024345094,-0.009761005,-0.006140957,0.03473496,0.028763521,-0.026860535,-0.01080546,0.0016842518,-0.011592902,-0.0070158932,-0.0058784764,-0.0304259,-0.014316141,0.04484047,0.042237535,0.021468742,-0.012369408,0.023492033,-0.016590973,-0.037359767,-0.032066405,0.011614775,0.015519178,-0.011193712,0.043768674,0.014698925,-0.033247568,0.026707422,0.0074369563,-0.0059495647,-0.003986427,-0.0084540695,0.008060348,0.0042270347,0.013528698,0.009438372,0.0030841494,-0.009596954,-0.029944684,-0.003434124,0.030010305,-0.026773041,0.026204333,-0.0016500746,0.015289507,-0.011242928,0.006206577,0.005790983]},{"id":"interface-GatewayUserPinnedDmsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserPinnedDmsUpdateDispatchData\nDescription: USER_PINNED_DMS_UPDATE — pinned DM order changed","meta":{"url":"/docs/typedefs/GatewayUserPinnedDmsUpdateDispatchData"},"embedding":[-0.014363088,-0.00020212815,-0.019061042,0.036560588,-0.0051152515,0.0034359682,0.0064108907,-0.004125854,-0.018832201,-0.04827182,0.02332824,-0.0033047216,-0.020757152,0.044691145,0.033706814,-0.02913001,-0.0028891074,0.03376066,-0.042779654,0.055567782,-0.022372494,0.010533379,0.07344424,-0.0026468062,-0.009611288,0.0067945346,0.023758996,-0.04146046,0.02528011,-0.008978613,0.033733737,-0.025508951,0.03569907,-0.01981487,0.0027309386,0.022466723,-0.022910941,0.060359966,-0.023732074,-0.022668641,-0.0039373976,-0.053306304,-0.011993919,0.014147708,-0.053683218,0.022022504,-0.017741846,0.008918037,0.01984179,0.00792864,0.011280475,-0.00043286133,-0.0059801326,0.016799562,0.039522048,0.018764896,0.06558291,0.0057748496,0.004499402,0.0022665276,-0.01132759,-0.050910212,-0.015238064,-0.014591928,0.020945609,-0.0015152249,-0.029506924,0.033814505,0.02459359,-0.0063469503,0.016220732,-0.0059565757,-0.029614614,-0.033006832,0.0009271393,0.002714112,0.0055796625,0.017957225,-0.017257243,-0.009819937,-0.02300517,0.008830539,-0.05960614,-0.030879965,-0.035402924,-0.047060315,-0.061006103,0.008393051,-0.029022321,-0.0019989864,0.034568332,0.036964424,-0.010950676,0.005556105,-0.019612951,-0.0144707775,0.011192977,0.010842987,-0.045175746,0.061490707,0.030314595,-0.10278963,-0.044341154,-0.045283437,0.02447244,-0.03502601,0.006323393,0.0090257265,-0.06041381,-0.0043546944,-0.020137938,0.003819612,-0.04361425,0.00291603,0.026706997,-0.024445517,0.03909129,0.04862181,-0.01982833,0.024310905,-0.0682213,0.007046932,0.0065253107,-0.0451219,-0.016059197,-0.01916873,-0.0023136416,-0.040195107,-0.038149007,-0.011300667,0.018441828,-0.008413242,0.008218056,-0.008817079,-0.02606086,0.019989865,0.02175328,0.041648917,-0.042914268,-0.0036850001,-0.0016809659,-0.060521502,0.02311286,0.011953535,-0.015816895,0.00668348,-0.059875365,0.01303043,0.050129466,0.021712895,-0.067790546,0.044368077,-0.0040383562,0.007289233,0.03367989,-0.013292924,0.009954548,-0.012391023,-0.024916658,-0.04113739,-0.01439001,-0.04837951,0.006047439,0.011866037,-0.06402141,-0.02843003,0.007524804,-0.038202852,-0.07150583,-0.027676202,0.04240274,-0.0065690596,-0.05540625,-0.017849535,0.023543619,-0.0011921565,-0.030503051,-0.00013250858,-0.03446064,-0.023543619,0.01916873,0.02085138,-0.0061214752,-0.07759029,-0.019020658,-0.02017832,-0.021995582,0.023274394,-0.009368987,-0.025912788,0.03454141,0.04770645,0.019209115,0.010042046,0.01008916,-0.065636754,0.01587074,-0.016947636,0.041191235,-0.0058185984,0.007154621,-0.04837951,0.024270521,0.0037085572,-0.033222213,-0.012532366,0.004082105,-0.0016776006,-0.029587692,-0.007894986,0.03930667,0.044744987,-0.010264155,-0.01156316,-0.027056988,0.009981471,-0.047087237,-0.02311286,0.007995945,-0.03351836,0.008487279,0.014632312,0.008830539,0.038391307,0.009382448,0.035322156,-0.02480897,0.006663288,-0.015709206,0.022924403,-0.007693069,-0.007228658,0.020124476,-0.05599854,-0.000102536396,0.01597843,-0.003350153,-0.055029336,0.038256697,0.009193991,-0.002345612,0.0034931782,-0.030745354,0.038256697,-0.024714742,0.0055123563,0.047787216,-0.0032777993,-0.02016486,0.07705184,-0.015534211,0.05039869,-0.0062729134,-0.032199163,-0.017634157,0.014080402,0.011347782,0.025643563,0.04135277,0.018980276,0.03376066,-0.008197864,0.0023641211,0.041514304,-0.0045364206,0.011758348,0.07635186,-0.007760375,-0.04035664,0.017876457,-0.004940256,0.007975754,0.022816714,0.01178527,-0.0141611695,-0.008985343,-0.003762402,0.032926064,-0.006932512,-0.011367973,-0.025818558,-0.036022138,0.013306384,0.037233647,-0.02528011,0.049941007,0.0009717295,0.034514487,0.009429562,-0.0135217635,-0.07236735,0.009887243,0.0023809476,-0.018536055,0.019680256,-0.012741014,-0.03782594,-0.024068603,-0.03962974,0.010748759,0.03965666,0.03249531,-0.021847509,-0.023072476,0.02265518,-0.016893791,0.07269041,-0.044395,0.0016052467,-0.022601334,-0.0312838,-0.04404501,-0.0057950416,0.028591564,-0.022466723,-0.0007285868,0.027272366,0.021780202,-0.025576258,-0.01767454,0.006733959,0.022345573,-0.010136275,-0.07382116,0.026895454,-0.017661078,0.019343726,-0.008938229,0.049483325,0.050048698,0.032576077,0.008810348,0.0040147994,-0.031849172,0.017836073,0.04749107,-0.013185234,-0.003940763,0.0040619136,-0.0010045412,-0.0062056077,-0.035429846,0.013292924,-0.0448796,0.002288402,-0.04420654,-0.073228866,0.0425912,0.017122632,0.018751435,-0.010001663,0.037556715,0.048325665,0.0011273745,-0.02176674,-0.04065279,0.036614433,-0.023880148,-0.028860787,0.030879965,0.0050815986,0.010775681,0.010028585,0.021497518,-0.026464695,0.014066941,-0.05360245,0.0008215531,0.0020376872,0.0031465527,-0.023435928,-0.017930303,-0.03962974,0.037799016,-0.04431423,-0.005519087,-0.016382266,0.011758348,-0.0034191418,0.009920895,0.03604906,0.03182225,0.02040716,0.011031443,0.015399599,0.03876822,-0.025387801,0.012518905,-0.036291365,-0.01993602,0.013440996,-0.034487564,0.02187443,-0.017539928,-0.057613883,0.034083728,0.047867984,0.010681452,0.031418413,-0.0013747239,-0.0122631425,-0.022345573,0.0014319338,0.013905407,-0.018509133,0.046387255,-0.0036547126,0.02459359,0.050937135,0.0070536626,0.042779654,0.0015009225,0.027299289,-0.0028941554,0.036345206,-0.043587327,0.023032093,-0.018307216,0.0036176944,0.053387072,-0.02754159,-0.0030741987,0.030503051,0.021026375,-0.008399781,-0.008238247,0.0074978815,0.014026558,0.036775965,-0.07382116,-0.017607234,0.05766773,0.039225902,-0.024674358,0.03524139,-0.03615675,0.0016649807,-0.007874795,0.0069998177,-0.047168,-0.047275692,0.0066229044,-0.0012409532,0.025912788,-0.0071680825,0.007854603,0.003188619,0.016166886,0.03163379,-0.052902468,-0.037287492,-0.025414722,-0.015884202,0.025858942,-0.08259785,0.0047753565,-0.009207453,0.040275875,-0.026558924,0.014861152,0.015157297,0.011280475,-0.00997474,0.024122449,-0.020434083,0.010169928,-0.015426521,0.0005977609,-0.010486266,-0.0020713403,-0.008433434,0.011186247,0.014403471,0.03117611,-0.02480897,-0.015816895,-0.0017036817,-0.0037119226,-0.026680075,0.017580312,-0.010930485,-0.000083448846,-0.014713079,0.04767953,0.07764413,0.1067203,0.017795691,-0.013575608,-0.0051152515,-0.012155453,-0.029776148,0.0050243884,0.011442009,-0.016126502,0.014040019,0.008796887,0.023153244,-0.07306733,0.0058286944,-0.022628257,0.017970687,-0.0002946738,0.034945246,-0.007894986,0.08275938,0.026101243,-0.029991526,0.028914632,-0.007228658,-0.04294119,-0.0015169076,-0.010398768,-0.007295964,-0.039333593,-0.03806824,-0.0084670875,0.020030247,-0.0022581143,0.0032189065,0.058529247,0.00025555224,0.00048923003,0.0069190506,0.010028585,0.013070813,-0.008056521,-0.017943764,-0.06698287,-0.01959949,-0.03276453,0.010829526,-0.01892643,-0.0052666897,0.04735646,-0.012088147,0.006787804,-0.009254566,-0.008749772,0.02210327,0.013091005,0.011751617,-0.013562147,-0.014040019,0.0064748316,0.040087417,-0.0100757,0.03470294,0.033006832,0.029856915,0.007847873,-0.007147891,-0.009254566,-0.005404667,0.016395727,0.035402924,0.009469946,-0.020097554,-0.0564293,0.029506924,0.011071827,-0.011697772,-0.006888763,0.004331137,-0.031795327,-0.016503416,0.030691508,0.0135958,-0.025697408,-0.041756604,0.008325744,-0.051610194,0.049160257,-0.023274394,0.023637846,0.036183674,0.016113043,0.006458005,0.012626594,0.03591445,-0.0100151235,-0.0023304683,-0.06132917,0.03241454,0.024957042,-0.04226813,0.04105662,0.013050621,-0.00065917755,-0.027339673,0.042537354,-0.02186097,-0.031149188,0.041272003,0.021335984,0.029318467,0.0051421737,-0.032253005,-0.00419316,-0.0035705802,-0.000042670916,-0.007094046,0.004886411,-0.029264623,-0.03117611,0.04361425,0.061221484,-0.017432239,0.039818194,-0.016516877,0.0066498267,-0.0009675229,0.020595618,-0.023409005,-0.021147527,-0.018711051,0.006966165,-0.0019535548,0.013124659,0.0033097696,0.00997474,-0.0057647536,0.017647617,-0.013393882,0.004331137,-0.02845695,0.056590833,-0.012303526,0.010587225,-0.016907252,-0.023193628,-0.021039836,-0.062136844,-0.016032275,-0.010291078,0.004634014,-0.02913001,0.0271916,-0.03761056,0.014228475,-0.03954897,0.02083792,-0.0032576076,0.008783425,0.019249499,0.030179983,0.008965151,-0.00013902884,0.0024297445,-0.04272581,0.02991076,-0.035268314,-0.018037992,0.062513754,0.034272183,0.033572204,-0.04522959,-0.020326395,0.032576077,-0.024041682,-0.005566201,-0.021820586,0.010607416,0.0018610093,-0.005118617,0.014201554,0.008823808,-0.04361425,0.000494278,0.040625867,0.03979127,-0.0030657856,0.032549154,0.064075254,0.017822612,-0.020245627,-0.0024970504,-0.002091532,-0.015170759,0.0035571188,0.0032054454,0.040948935,0.01042569,-0.02845695,0.010587225,0.03954897,-0.02910309,0.0078007584,-0.003523466,-0.010795873,0.0031431874,-0.008150749,-0.013918868,0.03343759,-0.038902834,0.008621891,-0.027676202,0.016274577,-0.0043647904,-0.01688033,-0.016988019,-0.032253005,0.0011509316,0.014134248,0.004331137,0.006266183,-0.013918868,0.0073834616,-0.030799199,0.023610923,0.010863178,0.038552843,-0.010910293,-0.037879784,0.02198212,0.018011069,-0.009766092,-0.038687453,0.023193628,0.055352405,0.01495538,0.009813206,0.020568695,-0.020824458,-0.012532366,0.0014925093,0.00022799887,0.0033619318,0.027272366,-0.030745354,-0.016570723,-0.02662623,0.00055359135,0.020339856,0.0019485069,-0.028026193,0.0006053328,0.04496037,0.010681452,-0.0215379,0.008238247,-0.009274758,0.013313115,-0.0087565025,-0.032952987,0.032226086,-0.0078007584,-0.0018256736,0.037368257,-0.029856915,-0.01109875,-0.04202583,0.010546841,-0.016180348,0.048567966,-0.00092798064,-0.0039138403,0.023489773,0.010506458,0.0059902286,0.021618668,0.013245809,0.029318467,0.007807489,0.014484238,-0.035779838,-0.021968659,-0.032441463,-0.0061147446,-0.01054011,-0.0059363837,-0.012330448,0.0131919645,-0.015386138,0.011758348,-0.019882174,-0.027918505,-0.033114523,-0.0065253107,-0.012451598,-0.013414074,-0.06434448,-0.004940256,-0.00013587387,-0.030529974,0.0106141465,-0.008036329,-0.008534393,-0.025199344,-0.02697622,0.04961794,-0.012868896,-0.001795386,0.0012804955,0.008197864,0.006851745,0.0025492124,0.042187363,-0.1067203,0.00002871019,0.033222213,0.023651307,-0.004442192,-0.036318284,0.047544915,0.029480001,0.036318284,-0.06482908,-0.012983316,0.0049436213,-0.03833746,-0.036883656,0.038229775,0.012821781,-0.016261116,0.010405499,0.0038431692,-0.0292377,-0.014968841,-0.020568695,-0.042806577,0.01632842,-0.015655361,-0.03241454,-0.020326395,0.02991076,0.049806394,-0.052175563,0.06579829,-0.025253188,-0.005233037,0.012909279,0.01484769,-0.013636183,0.02221096,0.021685975,-0.008413242,-0.0056503336,-0.013077544,-0.014188092,-0.0004158245,-0.009281489,-0.0017852901,-0.004869585,-0.0010449247,0.019195653,-0.040195107,-0.008844,-0.043937318,-0.004886411,-0.00031844122,-0.007659416,0.0049907356,-0.005360918,-0.03147226,0.03174148,0.00057167985,-0.055190872,0.018186064,-0.0011652341,-0.00600369,0.001795386,0.020972531,-0.00006783177,0.0067406897,-0.016503416,0.020420622,0.014861152,0.0045397854,0.046629556,-0.02980307,-0.0018138951,0.002656902,0.013602531,-0.0112199,0.017472623,0.0067238635,0.019128349,0.03976435,0.03588753,-0.027487746,-0.0015135424,0.024539746,-0.006787804,-0.0064176214,0.00039416042,0.052310176,-0.022668641,0.0022076347,-0.0040383562,-0.01926296,0.004172968,0.017068787,-0.013676567,0.010849717,-0.005236402,-0.00669021,0.011489124,0.007376731,-0.039360512,-0.033922195,-0.021551361,-0.038149007,-0.010149736,-0.01087664,0.0034595253,0.0292377,0.02287056,0.011240092,0.02740698,0.0109641375,0.0093757175,-0.009005534,0.0018206256,-0.00549553,0.006481562,0.015170759,-0.012909279,-0.004341233,-0.013548685,0.009813206,0.018105298,-0.025670486,0.01109875,-0.0010895149,-0.01709571,-0.0023439294,0.015911125,0.035402924,0.024553208,-0.003318183,0.006602713,-0.010095891,-0.02468782,0.026087781,0.012458329,-0.011697772,0.0055964887,0.022709023,0.01484769,-0.022035964,0.012505444,0.022278266,0.035510615,-0.015816895,-0.022009043,0.018778358,-0.020932147,0.006252722,-0.0147400005,-0.02062254,-0.011307398,-0.021699434,0.018387983,-0.026949298,-0.000739524,0.011812192,0.044744987,0.009416101,0.019276422,-0.028160805,0.020447545,-0.018293755,0.0050008316,0.009348795,0.009732439,-0.034056805,-0.013589069,-0.017607234,-0.004906603,-0.0021756645,-0.012505444,-0.0066935755,0.05505626,0.011428549,-0.0030220367,0.0020427352,-0.011280475,-0.0021218196,0.029668458,-0.011240092,-0.008911306,0.046791088,-0.0021369637,0.021564823,-0.0059969593,-0.0017196668,0.009368987,-0.009389179,0.05836771,0.04011434,0.025118576,0.04302196,-0.026262777,0.028995398,0.036318284,-0.0019131714,-0.01700148,0.0029412697,0.008063251,-0.027124293,-0.009193991,0.01950526,-0.0028369455,-0.008541124,-0.004294119,-0.036668275,0.036291365,-0.0055931234,0.02878002,0.0051859226,-0.02845695,-0.010237234,0.013400612,0.00058598234,-0.034945246,0.0026282968,-0.008877654,0.0030910254,0.00050815986,0.010116083,0.038902834,-0.024216678,-0.009315142,-0.06267529,0.0076055713,-0.0154399825,0.014591928,0.008581507,0.00736327,0.0078007584,0.008218056,-0.008783425,-0.009308412,0.01031127,0.015103453,0.006845014,-0.005673891,-0.023382084,-0.01076222,-0.029480001,-0.044395,0.007457498,-0.004297484,-0.012195837,0.027353134,0.0000991711,-0.005371014,0.0058085024,0.00872285,0.0073700002,-0.011482393,0.025132038,-0.0027679568,-0.028295416,-0.017405316,0.0028571372,-0.007531535,-0.009099763,0.013091005,0.0047989134,-0.008514201,0.009153608,0.003947493,-0.006188781,0.02332824,0.0052296715,-0.0063301236,0.040733553,0.031068422,-0.00039458106,-0.0049604475,0.0031566485,0.0046643014,-0.040006652,0.02740698,-0.0067474204,0.044825755,-0.02390707,0.007894986,-0.005916192,-0.00067979,0.015776513,-0.062298376,0.02775697,0.0050580413,-0.010257425,0.0018912969,0.011455471,0.027622357,0.006165224,-0.024903197,-0.0050344844,-0.019989865,-0.009496868,0.030045372,0.040625867,-0.0448796,-0.011697772,0.00057041785,-0.0055426443,0.03182225,0.050587144,-0.0071882745,0.0017263973,-0.00095910963,0.018037992,-0.0038263428,0.016907252,-0.061975308,0.019209115,0.011145864,-0.014941919,0.025670486,-0.00872285,0.0002116982,0.009268028,0.0069190506,0.017418778,0.029264623,0.024337828,-0.01506307,-0.0018694225,-0.0034191418,0.0009708882,0.0042099864,0.027151216,-0.009422831,0.013878485,-0.01382464,0.0040955665,-0.011017982,0.0036446166,0.026451234,0.005135443,0.015493827,0.02117445,-0.0068820324,-0.040195107,-0.0032677033,-0.018037992,0.02287056,-0.019518722,-0.012895818,0.0022042696,0.015305371,0.006932512,-0.0066666533,0.0881977,-0.0371798,0.029829992,0.01597843,-0.015022686,0.0050008316,-0.019734101,0.005054676,-0.026962759,-0.020380238,0.026585847,0.025307033,-0.025172422,-0.003360249,0.025320495,-0.02017832,-0.034487564,0.000463149,0.018428367,-0.033356823,0.04986024,0.013205426,-0.03217224,0.0074978815,-0.012094878,-0.03901052,-0.0015631805,-0.033464514,0.017418778,0.02821465,0.038149007,-0.037422102,-0.00033337474,-0.014497699,-0.02786466,0.004162872,0.016180348,-0.008527663,0.03785286,-0.044233464,0.025253188,-0.03206455,-0.0075719184,-0.0093353335,-0.024149371,0.0019131714,0.011960265,-0.03343759,-0.007773836,-0.05099098,0.017499544,-0.017270705,0.038014393,-0.021659052,0.003987877,0.007376731,0.012532366,0.02786466,-0.005448416,-0.015426521,-0.0203937,0.007982484,0.01371022,0.008069982,0.031122267,0.0077334526,-0.018845662,0.02346285,-0.004284023,0.034379873,0.002939587,0.013615992,0.017284166,-0.0058724433,0.008743041,0.005054676,-0.012135261,-0.02775697,-0.005475338,0.0520948,0.010264155,-0.00047450687,0.025630102,0.016611107,-0.059067693,0.029291544,0.030395363,0.02913001,-0.00691232,-0.02062254,0.04372194,0.017607234,-0.0138111785,0.016395727,0.007693069,0.0006987198,-0.000834173,-0.000835435,-0.022453262,0.00013261373,-0.0025963266,0.025387801,-0.0010869909,-0.011394896,-0.01677264,-0.008312284,0.025078192,0.0037825939,-0.038149007,-0.042564277,-0.02888771,-0.027622357,-0.00059818156,0.0063267583,-0.008669005,-0.03147226,-0.0009313459,-0.008144019,0.00022568523,0.032872222,-0.015938047,0.037906706,-0.014524622,0.02786466,-0.020353315,0.0050176578,0.038687453,-0.0033804409,-0.0030624203,0.017593773,-0.0333299,-0.0008707706,0.019626413,-0.0057378314,-0.003059055,0.03036844,-0.024041682,-0.022251343,-0.0022143654,0.004610457,-0.007995945,0.015614978,0.0010937215,0.014309242,-0.010546841,0.023409005,0.0078007584,-0.0023102765,-0.020111015,-0.026235856,0.024189755,0.020232165,-0.009126686,-0.009591096,-0.0018593266,-0.021228293,-0.007995945,-0.009712247,0.024862815,0.0061483975,-0.024580128,-0.030799199,-0.040383562,-0.0013528494,-0.013232348,-0.012478521,-0.024445517,-0.034514487,0.020380238,-0.025535874,0.0031717925,0.015332293,-0.0103247315,0.016301498,-0.03217224,-0.008594968,-0.0147803845,-0.0024045047,-0.027433902,-0.052660167,-0.018509133,-0.0069728955,0.01587074,0.009456485,0.0014504431,0.02991076,-0.0077671055,-0.020662924,0.0096853245,-0.01257948,0.008864192,-0.014215015,0.009429562,0.006424352,-0.00475853,-0.031229956,-0.004839297,0.019572567,-0.007100777,0.026383929,-0.022924403,0.012868896,-0.005906096,0.0112939365,0.0523371,0.0016161839,0.031256877,-0.043318104,0.033895273,-0.01790338,0.0005317169,0.031203033,0.027555052,-0.010829526,0.034649096,0.0014588563,-0.0023927263,0.03604906,0.018347599,0.0017465891,0.021672513,-0.01393233,-0.013131388,-0.033572204,-0.03198378,0.013656375,0.0348914,-0.0068281875,0.03852592,0.0067036715,0.008204594,-0.018953353,-0.024795508,-0.023435928,0.013104467,-0.017459162,0.0125727495,0.0064512743,0.0070334706,-0.0050075618,-0.0020831188,0.0080767125,-0.025993554,-0.013690028,-0.012747745,0.030879965,0.02073023,-0.020905225,-0.042968113,0.020030247,-0.010896832,0.029022321,0.026545463,-0.016530339,-0.013508302,0.021241754,0.012895818,-0.004553247,0.00413595,0.015601517,0.041433536,-0.010701644,0.002848724,0.0001937149,0.0047854525,0.012141991,-0.019020658,-0.008702658,0.008709389,0.0016077707,-0.014511161,0.018347599,0.021551361,0.023530157,0.034083728,-0.016355343,0.012404485,0.016584184,0.0312838,0.0047989134,-0.035510615,0.0011585035,-0.029399235,-0.017243782,-0.013891946,-0.0093353335,-0.018872585,0.013373691,0.0010121131,0.0023859956,-0.0025307033,0.00736327,-0.04326426,-0.01574959,0.0131919645,0.022641718,-0.0348914,-0.011973727,-0.006138302,0.020878302,-0.02357054,0.014807307,0.054463968,-0.0030489592,0.011166056,0.0065959822,-0.0016666633,0.012121799,-0.024189755,0.00209658,0.007827681,0.02480897,0.02676084,-0.0017432239,0.0041426807,0.026949298,-0.009920895,0.04431423,0.048460275,0.006733959,0.041433536,0.0151303755,-0.0024061874,0.012599672,0.04522959,0.031256877,0.0023287856,0.02390707,0.028322339,-0.0054787034,0.01088337,0.0031633792,0.009443023,0.026155088,0.01723032,0.0055325483,-0.034137573,0.020299472,-0.0119131515,-0.014591928,-0.05788311,0.0073498087,0.011778539,-0.017580312,-0.0026737284,0.0062392605,-0.023732074,0.0062056077,0.013663106,-0.026276238,-0.005835425,0.0069055893,-0.018293755,0.0059532104,0.04172968,-0.0035503884,0.020757152,-0.015695745,0.026828147,-0.0064714663,-0.015399599,-0.046441097,-0.011569891,0.0018037992,0.000307504,0.020918686,-0.00045010846,0.00027469237,0.002475176,0.04428731,0.032872222,0.014026558,-0.03249531,-0.0059868633,0.018280294,0.016786102,-0.01167085,-0.011926613,0.008440165,0.011468932,0.033383746,0.039064366,-0.040437408,0.023476312,0.027083911,0.007067124,-0.036641352,0.01234391,0.0010735297]},{"id":"interface-GatewayUserSettingsUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserSettingsUpdateDispatchData\nDescription: USER_SETTINGS_UPDATE — user settings (theme, locale, etc.) changed","meta":{"url":"/docs/typedefs/GatewayUserSettingsUpdateDispatchData"},"embedding":[-0.01859798,-0.00065280567,0.010863145,0.010141227,-0.010370407,0.0016945016,0.0390294,0.007270744,0.018025028,-0.006027441,-0.038135596,0.0020740815,-0.06824988,0.032933205,0.052207265,-0.015664471,0.013235161,0.05005297,-0.03948776,0.053399004,0.009499522,-0.02171483,0.03880022,0.007643162,0.0016099914,0.021210633,0.01336121,0.016523898,0.008095793,-0.027112026,0.0087088505,-0.012799718,0.04136704,-0.03403327,0.02832668,0.004726843,-0.012822636,0.0037556917,-0.014392521,-0.03971694,-0.024820223,-0.06879992,-0.01556134,0.0005539717,-0.051519725,-0.009688596,-0.0028260793,0.029060058,0.00003433228,0.00018853658,0.011882997,-0.01683329,0.007941096,-0.0046552243,0.054086544,-0.005468814,0.04216917,-0.024293108,-0.020156404,0.00048092048,0.0027501632,-0.034193695,0.0021829421,-0.04670694,0.024201436,-0.01615721,0.0007136817,0.02287219,0.04077117,-0.01787606,0.025736945,-0.0037957982,-0.028624617,-0.01800211,0.024476454,0.026470322,0.018575061,-0.0058383676,0.0042197816,-0.0046093883,-0.015148816,0.021966929,-0.080075584,-0.022219026,-0.0036153188,-0.012226768,-0.055049103,-0.015160275,0.010043825,0.0140602095,0.0040965974,0.03137478,-0.018414635,0.028303763,-0.023605568,-0.0406795,-0.0049875355,-0.014140422,0.0052310396,0.047944512,0.054636575,-0.07796713,-0.027959993,-0.018838618,0.015985323,-0.035706285,0.016466603,0.007935367,-0.05005297,-0.0035207819,-0.09478896,0.032474846,-0.009528169,-0.017589586,-0.012089259,0.0020239484,0.049411267,-0.05853264,0.016008241,-0.008960948,-0.006795195,0.027020354,0.0005342765,-0.02880796,0.008221842,-0.05509494,-0.026997436,0.01684475,-0.096439056,-0.011917374,0.03192481,0.01080012,0.03517917,-0.02253988,-0.0038760114,-0.0033603557,-0.016924962,0.04333799,-0.023765994,-0.026149468,-0.009934965,0.001330678,-0.004391667,0.008817711,-0.055919986,-0.004832839,0.013109111,0.05830346,0.027249534,0.03914399,-0.06348293,0.040221136,-0.023628486,0.028372517,0.0334374,0.011533497,0.015549881,-0.031145599,-0.029610092,-0.014209176,0.0011100919,-0.06522471,-0.0029062922,-0.013349751,-0.034354124,-0.069991656,-0.009997989,-0.024018092,-0.07255847,-0.044552643,-0.00090096495,-0.032818615,-0.015045685,0.014243553,0.008279137,0.013819571,-0.0033317083,-0.029105894,-0.016924962,0.020821027,0.027364124,0.01673016,-0.052894805,-0.038662713,-0.00012506438,-0.037608482,-0.028647535,0.015526963,0.00015120527,-0.045606874,0.03401035,-0.018987585,0.009161482,-0.02740996,-0.009144293,-0.050465494,0.00034162184,-0.037310548,-0.023743076,0.009883399,0.023674322,-0.054774083,0.021668995,-0.015251947,-0.027455796,-0.022161731,-0.011940292,0.029953862,-0.04006071,0.0037213147,-0.0038960646,0.040817007,-0.026859928,0.0035494294,-0.066737294,0.058257625,-0.026561994,-0.0044289087,-0.010490727,-0.007711916,0.038731467,0.0014202015,0.052803133,-0.0048729456,0.020947076,-0.0037843392,-0.008313514,0.027914157,-0.031031009,0.0013564607,-0.0038387696,-0.009952153,0.0054401667,-0.050832182,0.0015154545,-0.020729356,-0.013303915,-0.059311856,0.008834899,0.049548775,-0.030045534,-0.00021073842,-0.02335347,0.01567593,-0.011676735,0.011109513,0.035500024,0.003775745,-0.034354124,0.026516158,-0.0038330401,0.06554556,0.022940945,-0.07714208,-0.009482333,0.0017288787,0.04214625,0.022310698,0.0020697843,0.040725335,0.022918027,-0.07540031,0.013647685,0.03531668,-0.0070530227,-0.018838618,0.047348645,0.03937317,-0.0336895,-0.020293914,0.025484847,0.014736291,0.02915173,0.0244077,-0.003692667,-0.009745891,0.034468714,0.03043514,-0.00540006,0.015698848,-0.051382218,-0.026195304,-0.009797457,0.018391717,-0.027707895,0.04354425,0.010307383,0.06320792,0.011315776,0.008897924,-0.014312308,0.022757601,0.0059758755,-0.032956123,0.01312057,0.04111494,-0.021279389,-0.020419963,-0.026539076,-0.0075457604,0.05124471,0.0077520227,-0.042123333,-0.00033947328,0.051198874,-0.0050534247,0.0634371,-0.030847665,0.034079105,0.0011501985,-0.025370255,-0.07150424,0.00033249045,0.004311454,-0.035591695,-0.010387596,0.03126019,0.05518661,-0.0216117,0.0048643514,0.0019265467,0.03414786,-0.020374127,-0.026172386,0.029793436,-0.03857104,-0.018265668,-0.009064079,0.01650098,0.024705634,0.024338944,-0.02392642,0.0015426697,0.0035351056,0.051840577,0.032131072,-0.029082976,0.020167863,-0.010433432,-0.039991956,0.0051995274,-0.058807656,-0.021542946,-0.08021309,0.031214353,-0.021462733,-0.034262452,0.008554153,0.0047211135,0.027937075,0.03309363,0.0059987935,0.0059529576,0.001361474,-0.048036184,-0.029403828,0.0441172,0.010754284,-0.012490325,0.053811528,-0.008387998,0.017612504,0.017818766,-0.033185303,0.010903251,-0.0033890032,-0.04136704,0.04354425,0.007482736,-0.018953208,-0.035362516,-0.0724668,-0.05284897,0.022895109,-0.026172386,-0.017154144,-0.0031999296,-0.034606222,0.004148163,0.0020167865,0.0035608883,0.050969694,0.013716439,0.011556415,0.04670694,0.00111797,-0.02358265,0.01383103,-0.020156404,-0.0063712117,0.020236619,-0.0045520933,0.014656078,0.0046896012,-0.015183193,0.02044288,0.056378346,0.039189827,0.023066994,-0.038250186,0.012857013,-0.012788259,-0.0024622555,0.007339498,-0.036920942,0.04473599,-0.023490978,0.033368647,0.04959461,-0.034193695,0.026424484,-0.032085236,0.03020596,0.0027200833,0.018838618,-0.022345077,0.013189324,-0.008811981,0.0047984617,0.04936543,-0.020591848,0.01753229,0.009327637,0.031099763,0.03123727,-0.028372517,0.034904156,0.008227572,0.009705785,-0.037493892,-0.057570085,0.04077117,0.03215399,-0.008004121,0.036531337,0.011298588,0.0005478841,-0.006669146,0.03112268,-0.01788752,-0.04982379,0.022035683,-0.018517766,0.029335074,0.0011279966,0.0076775393,-0.020419963,0.021783585,-0.0033832737,-0.034927074,-0.025118157,0.0039333063,-0.01694788,0.048723724,-0.03939609,0.022310698,-0.011779866,0.030847665,0.012421571,-0.0032772778,-0.011476202,0.026103633,-0.020099109,0.0457673,-0.0061993264,0.0067550885,0.0013858244,0.021863798,-0.033506155,0.01940011,-0.013853948,0.016523898,0.023765994,0.0140143735,-0.017509373,-0.008617179,-0.004291401,0.00894376,-0.003681208,0.047211137,0.0028647534,0.05074051,-0.0025997637,0.014461275,0.06939579,0.053811528,0.00012121488,0.00493597,-0.00084438606,-0.0012182364,-0.009207318,0.0026226817,0.027020354,-0.010043825,0.026882846,0.024911895,0.006961351,-0.04276504,-0.009831834,0.0024436347,0.0039075236,-0.02520983,-0.010823038,-0.0013106246,0.030389303,0.011441825,-0.045148514,0.006084736,-0.05376569,-0.066828966,-0.013372669,0.007190531,-0.002486606,-0.047440317,-0.02754747,-0.010330301,0.0019480323,0.011671005,0.030274713,0.04973212,-0.010616776,0.014954013,-0.0026040608,0.009677137,0.00558054,0.021474192,0.045904808,-0.09616404,-0.016168669,-0.022711765,0.027868321,-0.0334374,-0.01289139,0.011098054,0.0016930692,0.0050018593,-0.011716842,-0.031787302,0.023399306,0.019709503,0.02310137,0.0003996331,0.0045836056,0.009012514,0.02322742,-0.008319244,0.030183041,0.0021958335,0.017750012,-0.03586671,0.030366385,-0.019789716,-0.0014739156,0.0269516,0.0034176507,0.019090716,0.0028203498,-0.026561994,-0.02986219,-0.0020311102,-0.000619861,-0.04890707,0.0029005627,0.0045406343,-0.017898979,0.051611397,0.007631703,-0.017142685,-0.015939487,0.0050562895,-0.030847665,0.04239835,-0.009562546,0.054407395,0.016684324,-0.03231442,0.012375735,0.015928028,0.037150122,0.023788912,-0.004102327,-0.08099231,-0.015595717,0.054957427,-0.074758604,-0.013074734,-0.0038874703,-0.0030652862,-0.016787454,0.035339598,0.0021156203,-0.005099261,0.053490676,0.020637684,0.03650842,0.0050333715,-0.014507111,0.0033403025,-0.009745891,-0.005434437,-0.025622355,-0.022608634,-0.02298678,-0.012261145,0.062062018,0.06375795,0.01626034,0.018643815,-0.015045685,-0.0030824747,0.006949892,0.02566819,0.008170277,0.0050935317,0.026653666,-0.0067550885,-0.011688194,-0.01220385,0.019251144,-0.0195147,-0.03032055,0.02903714,-0.004984671,0.011201186,-0.005216716,0.05587415,-0.038273104,0.0032686836,0.01114962,-0.06664562,-0.011407448,-0.019904306,0.016340554,-0.004855757,-0.048265364,-0.04904458,0.033139467,-0.03137478,-0.00836508,-0.015526963,0.0153665375,0.0073796045,0.017188521,0.013762276,0.0429713,0.017051011,-0.029220484,0.006634769,0.017486455,0.030526811,-0.041756645,-0.04028989,0.012329899,0.020259537,0.03401035,0.010599587,-0.010788661,0.046890285,-0.0140602095,0.0037470974,-0.019549077,-0.0044432324,-0.005296929,0.009780268,-0.008531235,0.020958535,-0.043819267,0.0087317685,0.01998452,0.033987433,0.017440619,0.051382218,0.07677539,0.01891883,0.015469668,0.005305523,0.03355199,-0.019583454,-0.0036898023,0.022585716,0.033987433,0.015549881,-0.038754385,-0.01219239,0.03520209,-0.01753229,0.051153038,-0.021772126,0.00685249,0.0011666708,-0.011705383,0.0038473639,0.022092978,-0.026584912,-0.0074999244,0.0065545556,0.04530894,-0.015595717,-0.010811579,0.0069785393,-0.004858622,0.0167187,0.023124289,0.009230236,-0.017005175,-0.010164145,0.0044403677,-0.006560285,0.037470974,0.012100718,0.00789526,-0.007986932,-0.04982379,0.014140422,0.0392815,-0.0042770766,-0.035683367,0.059678543,0.03751681,0.020041814,0.0069212443,0.016798913,-0.00039855883,0.036302153,0.008210383,0.018838618,-0.012089259,0.017509373,-0.014426898,-0.026057797,-0.020523094,0.0074999244,0.023834748,0.023834748,-0.027387042,-0.00036525607,0.023399306,-0.0004959604,0.0181167,0.023857666,0.010295924,0.0063024573,-0.023743076,0.009659949,-0.0054516257,-0.007843695,0.025576519,0.0038158514,-0.026997436,0.0008572774,0.002129944,0.006296728,-0.018632356,0.0018019299,-0.0043601547,-0.018678192,-0.007815047,0.0076030553,-0.0045091216,0.021795044,0.017784389,0.032131072,0.029999698,0.040748253,-0.04459848,-0.0015297784,-0.042352512,-0.00563497,-0.013223701,-0.0051307734,-0.015584258,-0.0075801373,-0.02335347,0.008147359,-0.00009104544,-0.03868563,-0.0062451623,-0.029816354,-0.01428939,-0.010273006,-0.003563753,-0.0032199828,-0.01660411,-0.06481218,0.011814243,0.009591194,-0.0020468663,-0.0093906615,-0.031878974,0.008267678,-0.021176256,-0.026539076,0.009711514,0.005958687,0.0127768,0.023605568,0.024063928,-0.03870855,0.043727595,0.027570387,-0.02171483,0.0012010479,-0.020649143,-0.009912047,0.02578278,0.0183688,-0.028991304,0.042902548,-0.014541488,-0.008794793,0.00708167,-0.008239031,-0.01859798,-0.013613308,0.009384932,0.010244358,-0.009195859,-0.038525205,-0.014793587,-0.024476454,0.021989847,-0.009717244,-0.032841533,-0.01824275,0.016558275,0.046477757,-0.021107502,0.015870733,-0.027799567,-0.034881238,-0.030916419,0.004984671,0.032222748,0.011453284,0.04730281,-0.026149468,-0.0148738,0.025989043,0.008926571,0.00006432267,0.022849273,-0.029587174,-0.0003349971,0.0045091216,0.004514851,-0.049319595,0.033139467,-0.020511635,-0.02857878,0.002631276,-0.0160197,-0.009155752,-0.017910438,-0.004537769,0.0058125844,-0.019228226,-0.015034226,0.026264058,-0.0008536965,-0.0012712344,-0.0140602095,0.0014531461,-0.015057144,-0.0140716685,0.012753882,0.006399859,0.03740222,-0.008806252,0.028166255,0.022150273,0.016535357,0.0005016899,0.020064732,-0.019262603,0.017612504,-0.0033746795,0.024063928,0.040587828,0.061145294,0.0030509625,0.022345077,0.02589737,0.004113786,0.016810372,-0.038158514,0.0072077196,-0.01615721,0.007792129,-0.03391868,-0.003939036,-0.0040135193,0.0021385383,0.003993466,-0.011579333,0.0007029389,-0.032566518,0.0007505654,-0.017108306,-0.034079105,0.009562546,-0.018265668,-0.03366658,0.011625169,0.030778911,-0.019239685,0.033368647,0.026378648,-0.010771473,0.012902849,0.0064055887,0.04459848,-0.0359813,-0.004557823,0.0064743427,0.02857878,0.0401753,-0.0070071868,0.0009861913,0.0020296779,-0.012708046,0.008966678,-0.015286324,0.022803437,-0.0012139393,-0.020809568,-0.016627029,0.047440317,0.039556514,0.008966678,-0.015458209,0.010421973,-0.0029335076,-0.008514047,0.0067207115,0.008410916,0.0057295067,0.015813438,0.012158013,0.035156254,-0.02566819,0.014335226,0.053490676,-0.008989596,0.005271146,-0.028785042,0.040221136,-0.011178268,0.012845554,-0.050557166,-0.027455796,-0.0059758755,0.02844127,0.014312308,-0.05702005,0.020534553,0.019388651,-0.0037843392,0.017704176,-0.009602654,-0.03442288,0.01416334,-0.002224481,-0.027043272,-0.0072993916,0.00011835012,-0.022333618,-0.045790218,-0.012811177,0.0061305724,0.0014087425,0.0018678192,-0.008817711,0.05867015,-0.017188521,-0.023021158,0.007179072,-0.039304417,-0.022585716,-0.020843945,0.0011373071,-0.012066341,0.05005297,0.010754284,0.019102175,-0.008118711,-0.009785998,0.018288586,-0.011533497,0.040244054,0.024086846,-0.008548424,-0.005878474,-0.03032055,0.033643663,0.024728552,-0.00014520719,-0.011791325,0.009975071,0.02172629,-0.0269516,0.0022760467,0.01974388,0.03611881,-0.04707363,-0.0034720812,0.0038387696,0.0195147,-0.01336121,0.03857104,-0.011287129,0.0015011308,-0.00011808155,0.031993564,-0.01952616,-0.036554255,-0.016248882,-0.02660783,0.0068238424,-0.019434487,0.004322913,0.01964075,0.0008988164,-0.0002639154,-0.054865755,0.005334171,-0.0043744785,0.0019824093,-0.017669799,-0.009213047,0.0064285067,0.025232747,0.014277931,0.015286324,0.03728763,0.030824747,-0.004251294,0.017520832,0.029999698,0.009940694,-0.026653666,-0.030045534,-0.0140831275,0.017715635,-0.0029650198,0.0023519625,-0.008508317,0.018219832,-0.005947228,-0.0062107854,-0.008227572,-0.009745891,0.020316832,0.012455948,-0.024178518,0.03100809,-0.009213047,-0.012960144,-0.0045721466,-0.0050247773,-0.035477106,-0.024453536,-0.0017962004,0.0015885057,-0.021233551,0.032818615,0.025874453,-0.0004114502,0.026676584,0.03621048,0.0040478967,-0.000111367284,-0.0009281801,0.03517917,-0.03137478,0.04345258,0.017795848,0.053719856,-0.0034892696,0.03346032,0.0024966325,-0.027020354,0.026149468,-0.056286674,0.018758405,-0.037264712,-0.012753882,0.005758154,0.007912449,0.026218222,0.007167613,-0.03242901,0.0011917374,-0.014782127,-0.015767602,0.038227268,0.007482736,-0.029082976,-0.015893651,0.0063597527,-0.026080715,0.03786058,0.018311504,0.008233301,0.01648952,0.014587324,0.00043401014,-0.007969744,0.00096828665,-0.07650037,0.030801829,0.005228175,0.0056865355,-0.009860481,0.017291652,-0.0026670855,0.012708046,-0.0044289087,0.04006071,0.03240609,0.0045406343,-0.029335074,0.013727898,0.0043630195,-0.006205056,0.0014209177,-0.009075538,-0.016088456,0.02635573,-0.030641403,-0.014300849,-0.025301501,-0.027593305,0.024613962,-0.00049918325,0.009327637,0.026905764,-0.007746293,-0.0724668,-0.0086859325,-0.0067550885,0.0013815273,0.013911243,-0.019423028,-0.021004371,0.0043286425,-0.0068467604,-0.0018807106,0.060366083,-0.015125898,0.009797457,0.008382268,0.00206119,-0.020878322,-0.029060058,0.019319898,-0.02452229,-0.0061305724,0.005322712,0.019720962,-0.025759863,-0.014220635,0.019766798,-0.0019723827,-0.0019437352,-0.027593305,0.012284063,-0.05321566,0.00987194,-0.016867667,-0.009270342,-0.029839272,-0.008347891,-0.02649324,0.015538422,-0.026195304,0.027982911,0.019136552,0.0035752123,0.011052218,0.0026985977,-0.010559481,-0.020763732,0.002879077,0.04040448,-0.02566819,0.013922702,-0.010903251,0.008302055,-0.023181584,0.019262603,-0.011247022,-0.038777303,0.028899632,0.007167613,-0.014713373,-0.03054973,-0.030480975,0.00859999,0.009608383,0.03719596,-0.027684977,0.0067321705,-0.037723072,0.005723777,0.00546022,-0.021084584,-0.004993265,-0.007350957,0.010737096,0.00009480543,0.016203046,0.013235161,0.040519074,-0.014128963,0.012753882,-0.031031009,0.017509373,0.0043372368,-0.002056893,-0.0033517615,0.013349751,0.013624767,0.010857415,0.006892597,-0.037448056,0.042581696,0.04310881,0.0013779463,0.02635573,0.008462481,0.019904306,-0.05532412,0.051428054,0.047898676,0.0021471328,-0.0009955018,-0.014438357,0.07003749,0.0026527615,-0.00022416696,0.024361862,0.03288737,0.0038301754,-0.009023973,-0.010416243,0.0011473338,0.0003516485,0.014232094,0.008766145,0.0269516,-0.0019136553,0.004004925,0.0010821606,0.032131072,0.015068603,0.014277931,-0.02729537,-0.014724832,-0.032841533,0.031741466,-0.0070472932,-0.00929326,-0.035454188,0.0012690858,-0.025301501,-0.005182339,0.02986219,-0.022092978,0.01660411,-0.006376941,-0.025484847,-0.018540684,-0.0061534904,0.026034879,0.0054201134,0.0019351409,0.028670453,-0.03389576,0.005680806,0.023857666,-0.015607176,-0.008107252,0.005680806,-0.008926571,-0.0093906615,0.012639292,-0.010066743,0.0077176457,-0.019571995,0.0006628323,0.018082323,-0.0055117854,-0.0049302406,0.0062909983,-0.010152686,-0.003706991,-0.050144643,-0.008789063,0.00859999,-0.0162718,-0.026905764,0.013189324,-0.024499372,-0.013429964,-0.014358144,0.015080062,0.03123727,-0.023513896,0.0000703655,-0.027501633,-0.00975735,0.010066743,-0.01056521,-0.011166809,-0.0076259733,-0.0018004975,-0.0320394,-0.010152686,-0.039785694,0.014954013,0.0334374,0.008210383,-0.005591999,-0.015022767,0.024568126,-0.011338694,0.0015526963,0.010954817,-0.024086846,-0.00951671,0.035843793,0.012604915,0.019262603,0.0000064736714,-0.012570538,0.006560285,-0.02288365,0.0100380955,-0.027639141,0.019056339,-0.001266221,-0.033643663,-0.027387042,-0.02452229,0.010439161,-0.03242901,0.013028898,-0.038868975,0.021393979,-0.022940945,0.0013378399,0.01847193,-0.02067206,-0.0036898023,0.00027967154,0.006354023,-0.014541488,0.009086998,0.02194401,0.009069809,-0.0022688846,0.029655928,0.021336684,0.03366658,0.043727595,0.008634367,0.0073108505,0.01394562,0.00847967,-0.0017661204,-0.047577824,0.006170679,0.01683329,0.025049403,0.0113444235,0.012673669,-0.011069407,0.019216767,0.03252068,-0.014610242,-0.05633251,-0.016775995,0.008382268,-0.017807307,0.028418353,-0.007293662,0.0022717495,0.009722973,-0.015045685,-0.06297874,-0.009934965,-0.026149468,0.045836054,0.022826355,0.004271347,-0.032566518,0.018082323,-0.005016183,0.035270844,0.0392815,-0.0046179825,-0.017452078,0.022895109,0.008198924,0.0054516257,-0.03123727,0.025851535,0.029724682,-0.0057753427,0.019251144,-0.01721144,0.0068582194,0.018208373,-0.010181334,-0.02740996,-0.020843945,0.018941749,0.003171282,-0.013865407,-0.017944815,0.017704176,0.043062974,0.01915947,0.035362516,0.0014996984,0.034606222,0.008451022,-0.021646077,0.013040357,-0.014484193,-0.013487259,0.007866613,-0.00050348043,-0.02404101,0.0031340402,0.010169875,-0.0070358342,-0.006457154,0.01383103,-0.0022459666,-0.029953862,-0.0011086595,0.008594261,-0.031328943,0.01753229,-0.008112982,-0.0113673415,-0.0071848016,-0.028464189,0.046615265,0.0002429669,0.0013872568,0.010232899,0.008307785,-0.020947076,-0.02008765,0.03937317,-0.00007331978,0.012226768,0.0031569581,0.014002915,0.010129768,0.016134292,0.01428939,0.015526963,0.0052453633,-0.006904056,0.015229029,-0.00029847148,-0.025759863,-0.009906317,0.041160777,0.008198924,0.0071733426,-0.0006939865,0.04959461,0.0216117,0.006354023,0.013200783,-0.012937226,-0.019583454,0.0015125897,-0.013349751,-0.050557166,0.046065234,-0.0023648539,-0.020408504,-0.035041664,-0.007190531,-0.007941096,-0.012455948,0.032841533,0.01451857,-0.022413831,0.0041739456,0.0077176457,-0.024247272,-0.013911243,0.0073967935,-0.023445142,0.012811177,0.037035532,0.01974388,0.015286324,0.0039075236,0.01521757,-0.008846358,0.005844097,-0.049686283,-0.0027959994,0.0011831431,-0.0026742474,0.05775343,0.03242901,-0.030045534,0.02067206,0.019491782,0.014151881,0.035247926,0.009069809,0.014885259,0.02915173,0.0140487505,0.019675126,0.0063253753,-0.022150273,-0.035500024,0.0040192488,0.018322963,-0.03994612,0.020546012,-0.00800985,0.007190531,-0.020282455,0.00018692516,0.01091471]},{"id":"interface-GatewayUserUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayUserUpdateDispatchData\nDescription: USER_UPDATE — full current user (APIUser)","meta":{"url":"/docs/typedefs/GatewayUserUpdateDispatchData"},"embedding":[0.003939513,0.016608266,-0.0268807,0.045072924,0.032983597,-0.010639306,-0.009171816,0.03538283,0.024178654,-0.015373711,-0.03300689,0.0052352143,-0.04258052,0.025529677,0.02608872,-0.027323276,0.0069007,0.031655867,-0.038737092,0.034381207,-0.03060766,-0.01630545,0.05529877,-0.0034707317,0.014069274,0.021232026,-0.0062251883,0.022222,-0.01663156,-0.02146496,-0.013498584,-0.005069248,0.040880095,-0.014488557,0.050640073,0.017831175,-0.013696578,0.036454327,-0.012427082,-0.022932451,-0.018821148,-0.047751676,0.007232632,0.015711466,-0.05562488,0.008962175,-0.0011981594,0.020917565,0.004978986,0.010883888,-0.007063754,-0.017540006,0.006364949,0.013661638,0.025133688,-0.008362367,0.043675315,-0.03792182,-0.02587908,0.0021764864,-0.013172475,0.008542892,-0.002591402,-0.058792796,0.00928246,-0.015094189,0.0064173597,0.048730005,0.035312947,-0.015886167,0.010202553,0.006033017,-0.044886578,0.014698199,0.028441364,0.0055846167,0.0052060974,-0.025389915,-0.009294107,0.014080921,0.009096112,0.032214914,-0.07584364,-0.05557829,-0.0015592087,-0.022955745,-0.05720884,-0.03699008,-0.017365305,0.0008116329,-0.002172119,0.050267376,-0.025389915,0.033682402,-0.022361761,-0.039179668,0.021336846,-0.006999697,-0.0118505685,0.03326312,0.02455135,-0.0749119,-0.01795929,-0.051664986,0.03214503,-0.06335832,-0.0053342115,0.019240431,-0.058839384,0.00184601,-0.058466688,-0.00700552,0.0032640018,-0.0358487,-0.0069764033,-0.015653232,0.040437516,-0.023875838,0.013521877,-0.019042436,-0.0129977735,0.0053342115,-0.01304436,-0.046610296,0.0023147915,-0.02727669,0.0059252842,0.012858013,-0.09587605,-0.018040817,0.042394172,-0.039948355,0.018681388,0.0070928712,-0.010313197,-0.024714405,-0.008146902,0.039039906,-0.023258561,-0.027649386,0.00046186644,-0.019123964,0.00016660313,0.014057628,-0.053528465,-0.005290536,-0.019263726,0.056789555,0.018681388,0.04153231,-0.062053885,0.051478636,-0.01627051,-0.0062950687,0.01932196,0.01896091,-0.0006300164,-0.023316795,-0.014628318,-0.03233138,0.012636724,-0.06512863,-0.022594696,0.009270813,-0.054506794,-0.043023095,-0.008583655,-0.03519648,-0.06387078,-0.035499297,0.01823881,-0.054134097,-0.051804747,-0.014441971,0.010289904,0.012345555,-0.014931134,-0.00484796,-0.053202357,-0.017178956,0.033216532,0.010709187,-0.0035173185,-0.05469314,-0.012811425,-0.0009099024,0.01104112,0.044024717,-0.0029699213,-0.029699214,0.007989671,0.026647765,0.031376347,0.0028942174,0.000671144,-0.054040924,0.01806411,-0.06000406,0.024597937,-0.0012665841,0.029023701,-0.040111408,0.018273752,-0.015035955,0.00652218,0.014954427,0.012881306,-0.004705287,-0.046563707,-0.0017470126,0.0053313,0.05473973,-0.024854165,-0.0027952201,-0.038830265,0.01254355,-0.005733113,-0.0072559253,-0.022571402,-0.006085427,0.018308692,0.0455155,0.06587402,-0.020113938,0.009573629,-0.0003020876,-0.003642521,0.025343329,-0.041811835,0.015350417,-0.0045043807,0.007948907,-0.009288283,-0.053854574,-0.015548412,-0.010598543,0.016608266,-0.034497675,0.019042436,0.04272028,-0.03952907,-0.005954401,-0.012438729,0.023992306,-0.014255622,0.01749342,0.023456555,-0.010249141,-0.012531904,0.06741139,0.031492814,0.049289048,0.030398019,-0.03845757,-0.0032203265,0.011268231,0.047495447,0.038364395,0.039552364,0.06722505,0.04924246,-0.0304679,-0.0015315476,0.029163463,-0.037292894,-0.024877459,0.049801506,0.036896907,-0.00791979,-0.0040705395,-0.00843807,0.048217546,0.004323856,0.0112216445,-0.008484658,0.0029626421,0.039435897,0.037758764,-0.017947642,0.008344897,-0.03924955,-0.01304436,0.002209971,0.041974887,-0.002591402,0.03945919,0.00879912,0.015047601,0.020754509,0.004166625,-0.03114341,0.039016616,0.0133937625,-0.03393863,0.046051253,0.058280338,-0.008077022,-0.03845757,0.014849607,0.01211262,0.021511547,-0.018413512,-0.021628015,-0.025832493,0.03132976,0.0050925417,0.08912093,-0.02741645,0.022105532,-0.012904599,-0.03817805,-0.027905613,-0.012531904,0.02927993,-0.0340551,-0.0024443618,0.021802716,0.024388295,-0.020160524,0.018460099,-0.005695261,0.029792387,-0.027649386,-0.045399033,0.0075063305,-0.037362777,-0.034311328,-0.03806158,0.011349758,-0.0012629445,0.03400851,0.001416536,-0.0010307374,-0.04616772,0.048590243,0.029163463,-0.011274055,0.020335225,0.013347176,-0.018716328,0.00087932963,-0.06652624,-0.015897814,-0.055811226,0.02053322,-0.036757145,-0.02515698,0.026461417,-0.030095203,0.014150802,0.009556158,0.012531904,0.01387128,0.0029844798,-0.021371787,-0.016829554,0.04272028,-0.03731619,-0.026671058,0.038737092,-0.009794917,0.0051216586,-0.001109353,-0.015932754,-0.00094120303,0.013673285,-0.0057884348,0.04763521,-0.00014321864,-0.0115361065,-0.03244785,-0.0491027,-0.030910475,0.0016887789,-0.009078642,0.0043850015,-0.008408953,-0.055345356,-0.007692679,0.0093174,0.011786511,0.08590643,0.016550032,-0.0108256545,0.018215518,0.003939513,-0.031306464,0.018925969,-0.03545271,-0.011268231,0.020090645,-0.023305148,0.0069880504,-0.025063807,-0.029792387,-0.020405106,0.04544562,0.03705996,0.014290563,-0.0340551,0.0159444,0.0034882016,0.01430221,-0.020649688,-0.0072209854,0.0480312,0.023468202,0.03971542,0.052456964,-0.012986126,0.03680373,-0.020160524,0.011949566,-0.016084163,0.031865507,-0.036407743,0.019717949,0.007797499,-0.0138014,0.04418777,-0.0304679,-0.003857986,0.0129977735,0.031702455,0.040740333,-0.029792387,0.024038892,0.013766459,-0.0036658146,-0.023794312,-0.03652421,0.051618397,0.023409968,-0.017190604,0.022746103,0.018553274,0.047262512,-0.005881609,0.017644826,0.000251679,-0.052550137,-0.002990303,-0.007587858,0.004620848,-0.038970027,0.0068832296,0.022909159,0.00885153,0.013568465,-0.0050284844,-0.02225694,0.020603102,0.012729898,0.048403896,-0.070952006,0.014663259,-0.0223967,0.04942881,0.008985468,0.019275373,0.0066852346,0.017761294,-0.042137943,0.048124373,0.01150699,-0.007890673,0.024667818,0.036617383,-0.020288639,0.01562994,-0.0062193647,-0.03014179,-0.011460402,0.03053778,-0.02358467,-0.021383435,-0.026997168,-0.0008305589,0.014325503,0.03514989,-0.03207515,0.037106548,-0.008665183,0.023130447,0.07947742,0.059212077,0.021674603,-0.013708225,0.004556791,0.010086086,0.007121988,-0.015781347,0.05660321,-0.010814007,0.011064413,0.014243976,-0.010202553,-0.058839384,-0.009358164,0.00022256213,0.008729239,0.010505369,0.017295424,-0.0019624773,0.02225694,-0.001118088,-0.024807578,0.010313197,-0.05003444,-0.050081026,-0.030770715,-0.0020265346,-0.006923993,-0.02634495,-0.036431037,0.017062489,0.0019042437,0.030165084,0.008001317,0.06303221,-0.007186045,0.023444908,0.0044810874,-0.016794614,-0.014360444,0.008665183,0.025296742,-0.09186957,0.0054565025,0.00042110283,0.015397004,-0.013649992,0.008775827,0.04518939,-0.0067376452,-0.020370167,-0.020591455,-0.032121737,0.032028563,0.033100065,-0.010190907,-0.00003159636,0.004804285,0.019706301,0.021068972,0.007978024,0.015909461,0.00921258,0.018087404,-0.024737697,0.005185716,-0.0011028016,-0.0048392247,0.021068972,0.0060970737,0.02275775,-0.008671005,-0.029116876,-0.0064639463,-0.02186095,-0.015082542,-0.040693745,0.009276637,-0.023992306,-0.025389915,0.037106548,-0.0005291992,-0.029349811,-0.015455238,0.01896091,-0.023060566,0.056370273,-0.015222303,0.044234358,0.028487952,0.019613128,0.026787525,0.03985518,0.03626798,0.03533624,-0.009690097,-0.083390735,0.0031358874,0.070486136,-0.049521983,0.012590137,-0.0088165905,-0.01166422,-0.025762612,0.033030186,-0.022920804,0.0032494434,0.02056816,0.008397307,0.01839022,-0.013323883,-0.01476808,-0.0006482145,-0.01802917,0.019671362,-0.026438123,-0.0050284844,-0.01992759,-0.015001015,0.035522588,0.052270617,-0.0049731624,0.029046996,-0.021511547,-0.0126017835,0.006562944,0.026018841,-0.0047897263,-0.0033629993,-0.0018693034,0.009398928,-0.013847986,0.010965415,0.0021750305,-0.010452959,-0.003552259,0.0015242684,-0.0012804146,0.02874418,-0.004239417,0.05557829,-0.040134702,-0.0043122093,0.004137508,-0.05329553,-0.017015902,-0.031585988,-0.005855404,0.0063416557,-0.025273448,-0.052130856,0.032773957,-0.034357913,-0.021977417,-0.029373104,0.002022167,0.023573022,0.0109479455,0.038108166,0.043419085,-0.014383737,-0.024644524,-0.00919511,-0.006615354,0.03673385,-0.06806361,-0.05902573,0.042906627,0.021138852,0.037851937,0.008234252,-0.021511547,0.04770509,-0.015525118,0.007034637,-0.020137232,0.027463038,0.0120078,0.004216124,-0.023666197,0.01870468,-0.04237088,0.019193845,0.0073956866,0.050407134,-0.01523395,0.034288034,0.08576667,0.0009892458,0.02781244,0.014069274,0.014115862,-0.027113635,-0.0050750715,0.012135914,0.04311627,0.012217442,-0.03400851,0.019741243,0.021965772,-0.01996253,0.03291372,-0.022222,0.004373355,0.009626039,-0.0005040859,0.037549123,0.032424554,-0.026647765,-0.007890673,-0.016829554,0.044234358,-0.034637436,-0.005040131,0.010598543,-0.017982583,0.032680783,-0.008659359,-0.008478834,-0.0009644965,0.011116823,-0.004853783,-0.019881003,0.019543247,0.010918829,0.020731216,-0.00031555415,-0.029396398,-0.008001317,0.02254811,-0.007995494,-0.042487346,0.037479244,0.034567554,0.02136014,0.022419995,0.016713087,-0.018471746,0.0063241855,0.009311577,-0.014942781,0.019158905,0.02208224,-0.013114241,-0.027695972,-0.0107848905,-0.008053728,0.0038783678,0.0033979395,-0.030258257,-0.0055496767,0.012089327,0.010843124,-0.011745748,0.017039197,-0.017633181,-0.012706605,-0.042277705,0.008647712,0.015175716,-0.010965415,0.02301398,0.0076460917,-0.023875838,0.0049178405,-0.044933163,0.0066037076,-0.018762914,0.005340035,0.016363684,-0.016911082,0.01354517,0.012217442,-0.00089170435,0.015746407,0.0043005627,0.030048616,0.031842217,0.028767474,-0.036757145,0.004856695,-0.022466581,-0.009160169,0.013056007,-0.021907538,-0.025320036,0.018879382,-0.008729239,0.008828237,-0.005695261,-0.04358214,-0.020311933,-0.0318888,-0.009521218,-0.0024763902,-0.026205188,0.009864798,-0.0017877762,-0.06857607,0.005220656,0.010435488,0.009596922,-0.0064988867,-0.04619101,0.010505369,0.0048829,-0.013778105,-0.009276637,-0.007541271,0.0025608293,0.014360444,0.03731619,-0.056323685,0.043139562,0.02415536,-0.005290536,0.016212277,-0.013335529,0.009754154,0.019811122,0.028720887,-0.036827024,0.013254002,-0.034916956,-0.028651007,-0.014441971,0.01533877,-0.015490178,-0.0045364094,-0.0023555553,0.038084872,-0.017970936,-0.033496056,0.0026161512,-0.021232026,0.027975494,0.0022318086,-0.028907234,-0.014616672,0.000117104435,0.040833507,-0.047798265,0.011431285,-0.0250871,-0.015047601,-0.017365305,0.013533524,0.0011632192,0.0051798923,0.03093377,-0.0141857425,-0.029699214,0.0043296795,0.006720175,-0.00175138,-0.00207021,-0.029629333,0.024714405,-0.035522588,0.03172575,-0.02709034,0.02907029,-0.026228482,-0.041159615,-0.0063241855,-0.005086718,-0.012776486,-0.02347985,-0.02129026,0.023747724,-0.021767776,-0.025226861,0.010918829,0.01028408,0.014628318,0.0000978145,0.009742507,-0.005389534,0.016072515,0.006067957,0.003820134,0.045608673,-0.0074306265,0.029046996,0.008566185,0.014698199,0.0186348,0.04018129,-0.0049265753,-0.0036366978,0.009934678,0.008356543,0.028581126,0.04039093,0.026438123,0.011885509,0.013463643,0.01211262,0.010260787,-0.01476808,0.018040817,-0.0023963188,0.011984507,-0.026391536,0.011815628,0.0088165905,0.002862189,-0.009911384,-0.0043296795,-0.0016509269,-0.031865507,0.005776788,0.018611507,-0.024318416,0.0069181696,-0.014453617,-0.059258666,-0.0008094492,0.018506687,-0.012170854,0.022466581,0.048124373,0.00741898,0.044257652,-0.0032261498,0.013300589,-0.022140473,0.013277295,-0.0040414226,0.008624419,0.022093885,0.017062489,-0.015711466,0.019252079,-0.028418072,0.006289245,-0.016608266,0.03114341,0.030514486,-0.011244938,0.006644471,0.01906573,0.011448756,0.014220682,-0.017446833,0.01430221,-0.010458782,-0.006621178,0.011582693,0.004521851,-0.0006263768,0.002572476,0.018751267,0.0013823237,-0.03247114,-0.0067842323,0.037782058,0.0069414633,-0.013591758,-0.009812388,0.020346873,-0.010685894,0.011780688,-0.04817096,-0.02541321,-0.017714707,0.025646145,-0.005188627,-0.034124978,0.011815628,-0.01401104,0.04451388,0.019473366,0.020090645,-0.026997168,0.007215162,-0.036291275,-0.048124373,-0.022815984,0.016841201,-0.054506794,-0.032121737,-0.0016625737,0.05371481,0.0032115914,-0.005733113,0.00008061735,0.06182095,0.014232329,-0.022152118,0.035266362,-0.026997168,0.013277295,-0.023037272,0.006085427,-0.0091310525,0.041974887,0.0021925007,0.0268807,-0.009998735,-0.024388295,-0.020335225,0.0005342947,0.031818923,0.035755523,0.0034823783,0.005162422,-0.027626092,0.006260128,-0.005162422,-0.018553274,-0.027299983,0.03128317,0.03452097,0.00791979,-0.014290563,0.011600164,0.05902573,-0.01713237,0.004556791,0.008583655,0.005031396,-0.012147561,0.0044082953,-0.009043702,-0.00020800368,-0.034497675,0.0111808805,-0.019450074,-0.019310312,0.01687614,-0.020952504,0.0069472864,-0.0068890527,-0.005855404,0.035499297,-0.0276028,-0.0075820345,-0.054506794,-0.0057651415,-0.015967695,0.005453591,-0.022501523,0.004073451,-0.008572008,0.025529677,0.024667818,0.024434883,0.023142094,0.02010229,0.020661335,0.03293701,-0.0002664194,0.008321603,-0.009171816,-0.035639055,0.0012512978,0.023969013,-0.0029670096,0.03235467,-0.017144017,0.027323276,-0.0018329073,0.0048829,0.008018788,-0.002693311,0.015723113,0.0016771321,-0.034847077,0.027183516,-0.01530383,-0.021872597,0.008764179,0.009626039,-0.02827831,-0.01992759,-0.010132673,-0.0075296243,-0.012403789,0.04071704,0.011670044,0.0066619413,0.004318033,0.05855986,0.02408548,0.0009215491,-0.008735063,0.018902676,-0.03272737,0.04877659,0.028231723,0.0480312,-0.014966074,0.016538385,-0.020731216,-0.021010738,-0.0060039,-0.0501742,0.025552971,-0.011320641,-0.0318888,-0.023642903,0.021709543,0.02634495,-0.011175057,-0.025459796,0.0026074164,-0.0055613234,-0.019601481,0.031236585,0.021511547,-0.04046081,-0.01430221,0.019519953,-0.002814146,0.029699214,0.03053778,0.00072646607,0.03021167,-0.0017368216,0.012846366,0.0013189944,0.0010875153,-0.09098441,0.04092668,0.035266362,0.012229088,-0.0069938735,-0.009305754,-0.01523395,0.0104704285,-0.0039657187,0.029885562,0.03647762,-0.009777447,-0.0077800294,0.0019522866,0.007104518,0.00552056,0.010843124,-0.0107848905,-0.023875838,0.028930528,-0.024108773,-0.015362063,-0.019985823,-0.029326517,0.01566488,-0.009468808,0.024714405,0.013510231,-0.012124267,-0.077940054,-0.008263369,-0.011891332,-0.0010125394,-0.005881609,-0.0016582061,-0.028720887,0.0021400903,0.009561982,-0.0024603761,0.06433665,-0.013021067,0.025739318,-0.004807196,-0.015921108,-0.016037576,-0.006795879,0.04297651,-0.004632495,-0.021441668,0.0078033227,0.0034590848,-0.03000203,0.0027719266,0.017586593,-0.017749649,0.008793296,-0.0073199826,0.0113031715,-0.036081634,0.011920449,-0.02709034,-0.015827933,-0.013125888,-0.007762559,-0.015431944,0.02225694,-0.023701137,0.03731619,0.02136014,0.0074713905,-0.0027733825,-0.0018416424,-0.013533524,-0.027393157,-0.008688476,0.00838566,-0.036035046,0.0042830925,-0.0071452814,0.021907538,-0.020847684,0.020661335,-0.00003327968,-0.044816695,0.02161637,0.045282565,-0.029233344,-0.031492814,-0.015001015,0.0022973216,0.0036687264,0.06042334,-0.019356899,0.012660018,-0.020440048,0.0075179776,0.054367032,-0.014803019,-0.021709543,0.017540006,0.0137897525,0.0045713494,-0.016608266,0.01430221,0.017423538,-0.018646447,0.019356899,-0.01211262,0.04132267,0.0053167418,-0.005080895,-0.014803019,0.008205135,0.024108773,0.015594998,-0.011553576,-0.03880697,0.024760991,0.04183513,-0.0030601837,0.0002525889,0.002386128,0.030584367,-0.052084267,0.0372696,0.019275373,0.023456555,-0.0041229497,-0.016782967,0.03843428,0.003057272,-0.0069880504,0.031818923,0.008257546,0.0016159866,0.006592061,-0.007931437,-0.017935995,0.037782058,-0.007797499,0.023305148,0.023596317,-0.008717593,0.0013248179,0.0018722152,0.010796538,0.00396863,-0.0013750445,-0.02318868,-0.019403486,-0.027486332,0.005802993,0.014535145,0.009381457,-0.027323276,0.0073316293,-0.012590137,-0.013917867,0.016864495,-0.02092921,0.019240431,-0.017994229,-0.014430324,-0.007838263,-0.011442932,0.020801097,0.011081883,-0.013254002,-0.0069472864,-0.03293701,-0.005730201,0.04064716,-0.03973871,0.004585908,0.008624419,-0.02261799,-0.012729898,0.015175716,-0.012718252,-0.002060019,-0.0042452407,-0.013615051,0.021045677,-0.03831781,0.0045364094,0.0047169337,-0.01062766,-0.0060621337,-0.05222403,0.017190604,0.001668397,-0.035685644,-0.037386067,-0.0027282513,-0.04258052,0.008630242,-0.018215518,0.0034357915,0.046610296,-0.0043587964,-0.017365305,-0.023048919,-0.016247217,0.022245293,-0.0008866089,-0.022350114,-0.031492814,-0.016480152,-0.017004255,-0.017248837,-0.02907029,0.005724378,0.03999494,-0.0094862785,-0.029256636,-0.023701137,0.03386875,-0.0033688226,0.004903282,-0.009596922,-0.024900753,0.0039045732,0.045282565,0.01026661,0.028301604,-0.0014427413,-0.010260787,0.007616975,-0.008269193,0.028324896,-0.029233344,0.025646145,-0.005220656,-0.02056816,-0.012811425,-0.024504762,-0.002349732,-0.0111401165,0.021697896,-0.03545271,0.035056718,-0.028557831,0.021115558,0.007797499,-0.025063807,-0.008898118,0.0015708555,0.025716025,-0.004495646,-0.01119835,0.030188378,0.033822164,-0.004527674,0.033146653,0.015478531,0.015420297,0.039668832,0.01921714,0.017586593,0.018576566,-0.005421562,-0.0024021424,-0.051525224,0.0027733825,0.034963544,0.020603102,0.0017863204,0.021010738,-0.007715972,0.014115862,0.014593379,-0.0014085289,-0.07067248,-0.016433565,0.0017033373,-0.01394116,0.0059514893,0.016573327,-0.007844087,0.019287018,0.010773244,-0.03945919,-0.003939513,-0.014907841,0.007995494,0.043419085,-0.007354923,-0.02874418,0.030561073,-0.020451693,0.04938222,0.022222,-0.022839278,-0.018902676,0.021092266,0.0114953425,0.00043020185,-0.014861253,0.01896091,0.025739318,0.0145817315,0.021744482,-0.016084163,0.020591455,0.023165386,-0.010557779,-0.02092921,-0.02455135,0.010482076,-0.0064057126,-0.010138496,-0.023538083,0.0099929115,0.034777198,0.0137897525,0.009468808,-0.0030543604,0.03554588,-0.0034590848,-0.018262105,0.04067045,-0.0008181842,-0.014139155,0.010330668,0.002916055,-0.03487037,-0.0065745907,-0.01354517,0.0186348,-0.0028374395,0.029233344,0.01401104,-0.032680783,-0.005750583,0.00052956317,-0.023491496,-0.0145817315,-0.023829252,-0.012135914,-0.017901056,-0.03060766,0.035312947,-0.021907538,-0.0033571757,0.024178654,0.0071918685,0.013684932,-0.008257546,0.020370167,0.009404751,0.0090087615,0.029046996,0.0069647566,0.010726657,0.0115594,0.020544868,0.008828237,0.030724127,-0.005826287,0.048264135,0.014849607,-0.0009819666,0.017807882,0.013626698,0.018215518,0.014826314,0.015059249,0.03174904,0.012799779,0.000035372454,0.029815681,0.0029320694,-0.01996253,0.012252381,-0.021872597,-0.05175816,0.034031805,-0.000007529442,-0.014546791,-0.030724127,0.00030226956,-0.0093232235,-0.011908802,0.015199009,0.022920804,-0.026112014,-0.015199009,0.012089327,-0.03554588,-0.02347985,0.023375029,-0.021103911,0.008863177,0.041299377,0.025040513,0.0020745774,0.005491443,0.028534539,-0.014756433,-0.023165386,-0.038480863,0.011227467,-0.006621178,0.0058757854,0.059910886,0.0042539756,-0.055904403,0.012415436,0.014418677,0.010278258,0.013160828,-0.024411589,-0.0008742342,0.02907029,0.008839884,0.0075645642,-0.0056632324,0.006440653,-0.0077509126,0.010185083,0.019671362,-0.027393157,0.029116876,-0.02967592,0.0037735472,-0.014744786,-0.0020294462,0.009014585]},{"id":"interface-GatewayVoiceServerUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayVoiceServerUpdateDispatchData\nDescription: VOICE_SERVER_UPDATE — token, guild_id, endpoint, connection_id?\nProperties: connection_id: string | null, endpoint: string | null, guild_id: string, token: string","meta":{"url":"/docs/typedefs/GatewayVoiceServerUpdateDispatchData"},"embedding":[0.014987124,-0.016600782,0.03430681,-0.009516161,-0.006835941,0.020270197,-0.019010216,0.019817045,-0.000055089564,-0.026083786,-0.016976565,-0.01577185,-0.02172912,-0.009339321,0.0012496178,-0.018358123,-0.0360531,0.07113358,-0.018070757,0.027918493,-0.07113358,0.017838657,0.034793116,0.027586918,-0.013063998,0.024116449,0.009173535,0.041093014,0.014887652,-0.0410267,0.04323719,-0.025044855,0.05256546,-0.014589236,-0.013506096,0.04129196,-0.034925748,-0.013174523,-0.017927077,-0.03678256,0.0077698734,-0.024116449,-0.005562146,0.021983325,-0.03061529,0.011472445,-0.021474913,-0.021032816,-0.056853812,0.002805941,-0.010975084,-0.008819857,-0.0050979434,0.051902313,0.02606168,-0.020225987,0.0043132193,-0.02218227,-0.01595974,-0.004943209,-0.01749603,-0.007338828,0.0148544945,0.0016454337,0.03070371,0.0081235515,-0.03096897,0.015108701,0.016854988,0.011616127,0.015186069,0.03083634,-0.0062833186,0.026216416,-0.008853014,0.023718562,-0.047083445,-0.026260626,-0.0071840934,-0.03819727,-0.033997342,-0.0066480497,-0.07161988,-0.060390595,0.0261501,-0.009068537,-0.046464507,-0.014898704,0.01248927,0.04761396,-0.03074792,0.008742489,-0.042087734,0.00077298086,-0.017507084,-0.03348893,0.067243114,-0.0057638534,-0.040628813,0.029620571,0.05424543,-0.03547837,-0.047348704,-0.04836553,0.019518629,-0.017396558,0.006990676,0.010903244,-0.05234441,-0.005752801,-0.09284059,0.03105739,-0.012522427,-0.0066922596,0.0012309668,-0.028935319,0.025796423,-0.035588894,0.035367846,-0.03251631,-0.03105739,-0.016302366,0.00919564,-0.011870333,0.0074548787,0.0036528353,-0.0017780631,-0.015805006,-0.040054083,-0.020071251,0.040275134,-0.017706027,0.05269809,-0.002939952,-0.011052452,-0.029930038,0.0023818032,0.009742736,-0.047127653,-0.012290326,0.0083169695,-0.011859281,-0.0025641688,0.030946864,-0.027056402,0.019242318,-0.035456266,0.023608036,0.0015031334,0.034815222,-0.0820534,0.0148434425,-0.015849216,0.003909805,0.0061285845,0.027012192,-0.003647309,0.031764746,-0.041910898,-0.00015680665,0.0074327737,-0.027609024,0.029399522,0.011737703,-0.055660147,-0.035920467,0.0096819475,0.009952732,-0.04485085,-0.021585438,0.02393961,-0.051637053,-0.012367694,-0.007465931,-0.024779597,-0.0035588895,-0.0014810285,0.016412891,-0.071840934,-0.03313525,0.054289643,0.0038877,-0.02506696,-0.0013449452,-0.007366459,-0.00039996058,-0.037025712,0.049249724,0.0030532398,-0.035588894,0.008372232,-0.0004977057,0.055969615,0.069674656,0.012456113,-0.02218227,-0.009416689,-0.01532975,0.041955106,-0.019341791,0.020988606,-0.0671989,0.013937142,-0.03625204,-0.0065209465,-0.03286999,0.022657525,-0.019960728,0.024425918,-0.020889133,0.051813893,-0.005479253,0.008106973,0.010566143,-0.09266376,0.03061529,-0.011306658,-0.0026111417,0.0030863972,-0.027520604,0.013218732,0.03070371,0.050973907,-0.018059706,0.03782149,0.012157696,-0.008792225,-0.015672376,0.007896977,-0.026083786,-0.015407117,-0.030725816,-0.0033240248,-0.046862394,-0.029532151,-0.035102587,0.01158297,-0.0029454783,0.051504426,0.033820502,-0.026393255,-0.03819727,0.014920809,0.021905959,0.0029206104,-0.0062777926,0.029244786,-0.028471116,0.021773329,0.0144345015,0.019916518,0.032427892,0.009256428,0.018490752,-0.001248927,-0.00093185983,0.002326541,-0.0062225303,0.051460214,0.022171218,0.032162633,-0.012312431,-0.040009875,0.010930874,-0.043347716,-0.037755173,0.028891109,0.022215428,-0.04982445,-0.015749743,-0.022602264,0.014578183,0.04814448,-0.023143834,-0.028736373,-0.010643511,0.016976565,0.0042911144,0.0074548787,-0.009532739,-0.037224658,-0.0171313,-0.032538418,0.030062668,-0.042574044,0.038396217,0.026702723,0.051283374,0.01776129,0.020214934,-0.016147632,0.032162633,0.016213946,-0.034196284,0.02966478,0.042264573,0.054466482,-0.032118425,0.006907782,0.01043904,0.060081128,-0.0048768944,-0.041159328,-0.0075046145,0.025951156,-0.0062612137,0.038528845,0.015793953,0.0102953585,-0.011417182,0.011312184,-0.04606662,0.0046613715,0.03083634,0.015937636,-0.0030753447,0.031167913,0.023718562,0.010604828,-0.005664381,0.0036749402,0.0045895306,-0.032472104,-0.0006531308,0.0019010217,-0.07294618,-0.030438451,-0.019750731,-0.008681701,0.038153064,0.01992757,-0.06370633,0.019319685,0.034771014,0.022624368,0.027874283,-0.055439096,0.05044339,0.009212218,-0.015672376,-0.00171313,-0.03092476,-0.0156171145,-0.03466049,-0.008869592,-0.014412397,-0.033975236,0.015064492,-0.01600395,0.04175616,0.0029233734,0.002140031,0.0050261025,-0.071222,0.00085172954,-0.07475878,0.03687098,-0.016368682,-0.055792775,0.03656151,-0.024315393,0.010328516,-0.0042717727,0.042574044,-0.008543545,-0.01032299,-0.018137073,0.04624346,-0.05221178,-0.036981504,-0.015882373,-0.017484978,-0.042927723,-0.01027878,-0.014622393,-0.016711308,-0.036539406,-0.01784971,-0.04370139,-0.016854988,0.032847885,0.056411713,0.0047359755,0.02077861,0.00065244,0.0009802143,-0.041424587,0.03169843,-0.027387975,-0.01789392,0.020657033,-0.003080871,-0.014931862,-0.009858787,-0.014876599,0.0020474666,-0.003136133,0.0378657,0.02407224,0.005164258,0.060479015,0.027719548,-0.0067641004,0.0057859584,-0.004962551,0.042131945,0.0209665,0.0171313,0.04770238,0.0136387255,0.035588894,-0.018733906,0.02303331,0.024116449,0.031167913,-0.027631128,-0.008001975,-0.021828592,-0.025619583,0.04458559,0.016236052,0.053272817,-0.027564814,0.024868015,0.033975236,-0.025818527,0.016401839,0.008416442,0.012688214,-0.03205211,-0.033068936,0.036915187,0.070028335,0.00300903,0.027144821,-0.042264573,0.01257769,0.0008917947,-0.0060291123,0.006968571,-0.0653863,-0.018557066,-0.022414371,0.026923772,-0.025133274,0.040827755,0.02606168,-0.027100611,0.034704696,0.0022947653,-0.031123703,0.019419158,-0.02528801,0.07409564,-0.019684415,-0.067287326,-0.021364389,0.0261501,-0.020889133,-0.014368187,-0.029620571,-0.04624346,-0.027741654,0.053626496,-0.009405636,0.009621159,-0.024094345,0.007123305,-0.03466049,0.013959247,0.0016191842,-0.02398382,-0.005457148,0.018744959,0.005708591,-0.006294371,0.0013794841,0.030195298,0.00802408,0.059152722,-0.02316594,0.030239508,-0.022502791,-0.00923985,0.06733154,0.036937293,0.017882867,-0.004910052,0.000112165115,-0.019529682,0.018722853,-0.0046143983,-0.0005657474,-0.009433268,0.013948194,0.00079715805,-0.042927723,-0.040054083,0.008913802,-0.020977553,-0.04029724,-0.006686733,0.025840633,0.027012192,0.046995025,0.024293289,-0.0014492527,0.00030204278,-0.029377416,-0.025089065,0.008985643,0.012389799,0.0022906207,-0.044828743,-0.017053932,0.019330738,0.012290326,0.01149455,-0.0045370315,0.04774659,-0.014500816,0.034373123,0.03846253,0.008399863,0.004404402,-0.0238954,0.005039918,-0.07816294,-0.004879657,-0.00555662,0.027586918,-0.032671046,-0.003721913,0.038130958,0.0034152076,0.020723347,0.010643511,-0.008372232,0.016523415,0.021751225,-0.020071251,0.02880269,-0.006686733,0.0041446695,0.0031913954,-0.013285046,0.004675187,0.025310114,0.010107467,0.01298663,0.01880022,0.0016703018,-0.034527857,0.024249079,0.0034234968,-0.0072338297,0.037313078,-0.02267963,0.0037163869,-0.020679137,0.032582626,-0.022878574,0.009383531,-0.020358616,-0.0432814,0.025310114,-0.017098142,-0.008455126,-0.008195393,0.010748509,-0.02303331,0.040739335,0.019750731,-0.016766569,0.035500474,0.033908922,0.019087585,0.010052205,0.03569942,0.04120354,0.015197121,-0.07471457,0.026039576,0.03260473,-0.03733518,0.007117779,0.003230079,-0.02732166,-0.005924114,0.032626837,-0.012257169,0.03616362,0.0098753655,0.008140131,0.0112735005,-0.014180295,-0.0027575868,-0.007797505,0.023718562,0.015904479,-0.023254357,0.02844901,-0.018656539,-0.0052167573,0.019684415,0.040098295,0.028294276,0.04164564,-0.005169784,0.012378746,0.0024011452,0.0044900584,-0.019695468,-0.007681454,0.00899117,-0.0026719302,-0.041446693,0.008869592,-0.0085103875,0.010947453,0.0028073227,0.01717551,-0.014998177,0.02831638,0.015716586,0.052874926,-0.04376771,-0.029930038,-0.0066535757,-0.02619431,-0.026680619,-0.051327586,-0.032405786,-0.01429082,-0.060213756,-0.046773974,0.042308785,-0.0047940006,-0.00194385,-0.03178685,0.020170724,-0.0020156908,0.020325458,0.03981093,0.05212336,0.0042247996,-0.020756504,-0.0015611588,-0.02033651,0.016103422,-0.02303331,-0.064678945,0.053582285,0.013738197,0.02272384,0.0011812308,-0.03810885,0.018446542,0.0026152863,-0.01789392,-0.018225493,0.004675187,0.030902654,0.020071251,-0.009902997,0.03890463,-0.0021165444,0.02316594,-0.008620912,0.00806829,-0.01316347,0.039147783,0.046729766,0.0238954,0.04306035,0.012942421,-0.0064270007,-0.057295907,0.0012530717,0.017871814,0.027675338,0.011102187,-0.032251053,-0.017076038,0.013859774,-0.0050482075,0.05689802,-0.03578784,0.039236203,0.009996942,0.006288845,0.016280262,0.022745945,0.0067143645,-0.012091382,0.019640207,0.06149584,0.008289339,0.004893473,-0.0007135739,-0.00897459,0.0035008641,-0.009814577,-0.029863724,-0.017606555,0.029532151,0.01406977,-0.004420981,-0.0038020434,0.0015887899,-0.011140871,0.025000645,-0.0410267,-0.0041004596,0.018601276,0.01568343,-0.030681606,-0.013892932,0.018336017,-0.016854988,0.020811766,0.042684566,0.0013629055,-0.0056312243,0.0075764554,-0.008040658,-0.021695962,0.012920316,-0.021894906,-0.0037827014,-0.052963346,0.021917012,-0.029532151,0.010516408,-0.026216416,-0.0057859584,-0.01370504,0.012201906,-0.025619583,-0.0065651564,0.012290326,-0.020767557,-0.034107864,-0.03061529,-0.012235064,0.0023845665,0.02736587,-0.009880892,-0.020358616,0.025619583,-0.040739335,0.0046337405,-0.024801701,-0.009505108,0.0065209465,-0.03359945,0.016656045,0.012422956,0.008256181,0.037954118,0.004827158,-0.013948194,0.0374236,0.08466178,-0.040894073,0.020568613,-0.03963409,-0.022204375,0.013771354,0.027763758,-0.04350245,0.019750731,-0.038241483,0.007272513,0.019397052,-0.017838657,0.0010057731,-0.039103575,-0.0057804324,-0.025464848,-0.006686733,-0.0369594,-0.024337498,-0.021065973,0.028515326,0.014556079,0.006360686,-0.0126219,-0.036826767,-0.009228797,-0.011483497,0.014976072,-0.05415701,-0.012312431,-0.014898704,0.0062556877,0.021287022,-0.057472747,0.019640207,0.04219826,-0.0018706274,0.026083786,-0.017871814,0.004169537,0.04007619,-0.018833378,-0.04774659,0.03899305,-0.010262202,-0.011439287,-0.03499206,0.040230922,-0.000672818,-0.026503779,0.007659349,0.030858444,-0.0053272815,-0.0044845324,0.02632694,-0.0009974837,0.02849322,0.005628461,-0.004130854,-0.010035626,-0.013141365,0.025509058,-0.0009429123,0.007173041,-0.008847487,-0.014633446,0.0003961613,0.004412691,0.0022698971,-0.011804018,0.018568119,-0.014357135,-0.030151088,0.025354324,-0.021795435,-0.00786382,-0.008007501,-0.0022477924,-0.016379733,-0.04111512,0.027918493,0.0045397943,0.019176003,-0.0028985054,-0.0066480497,-0.006830415,-0.025708003,-0.003083634,0.011925595,0.011892438,0.019695468,-0.01786076,-0.001666157,0.03191948,0.017319191,-0.002152465,-0.006410422,-0.004117038,-0.023652246,-0.0060346387,0.0098753655,0.006211478,-0.000759856,-0.00053949776,0.02502275,-0.0024439734,-0.0038269113,-0.019629154,0.043104563,-0.03773307,-0.0005515864,0.003354419,0.033709977,0.032648943,0.007941186,0.039390936,0.021485966,0.03375419,-0.0015155674,0.027896388,-0.016921304,0.0071067265,-0.0128650535,0.013196628,-0.04575715,-0.012500322,0.026614303,0.0152413305,0.0017407611,0.0031941584,-0.014147138,-0.0315658,-0.004188879,0.013019788,-0.0011591258,-0.009273007,-0.020546507,-0.0025130513,0.005412938,-0.002510288,0.0187118,-0.0011722506,0.007753295,0.01311926,0.018744959,-0.009726157,0.030062668,-0.076438755,-0.03309104,0.06162847,0.004730449,0.010079836,-0.010267727,-0.010251149,0.03231737,-0.007167515,-0.014743971,-0.04814448,0.03269315,0.010112993,-0.0065651564,-0.023364883,-0.0026263387,0.025089065,-0.013329256,-0.0110690305,-0.00998589,-0.032803677,0.031167913,-0.010361673,0.005509647,-0.035014167,-0.014102928,-0.0075764554,0.0036998081,-0.032626837,-0.039700408,0.036826767,-0.00037336562,-0.0055400413,-0.020701243,0.013671882,0.009521687,0.01483239,-0.024425918,-0.034505755,-0.012212959,0.007073569,0.023630142,-0.022259638,0.020745452,-0.0097040525,0.018700749,0.0030781077,0.023873296,-0.034771014,0.017473927,-0.0527423,-0.046508715,0.01591553,-0.0031388963,-0.040429868,-0.012776634,-0.014777128,0.0052305725,-0.02267963,-0.009709579,-0.008637491,0.03435102,-0.0028156121,-0.046950813,0.050752856,0.020369668,-0.0032273158,-0.03088055,-0.029532151,-0.026547989,0.0761735,0.0037965172,0.018413384,-0.0043187453,-0.008924855,0.0041723005,-0.0005229191,0.032472104,0.049559195,-0.00036438552,0.005335571,-0.04445296,0.034594174,0.025310114,-0.0037716492,0.011091135,0.0104887765,0.011925595,-0.0064767366,0.001862338,-0.0065430515,-0.0036555983,-0.040783547,0.01045562,0.019164952,0.0019397052,0.013627673,0.02597326,-0.0020308879,0.0072780396,-0.04566873,0.008996695,-0.03863937,-0.034505755,-0.009300638,-0.011085609,0.00062895357,0.000108365835,0.0048105796,0.020170724,0.023099624,0.023630142,0.0001539572,-0.01424661,-0.055527516,-0.020027041,-0.024470128,-0.023453303,0.00229891,0.009930627,0.025796423,0.030438451,0.030725816,0.04471822,0.018015496,0.04818869,0.010997189,0.010206939,-0.0025462084,-0.014224505,0.011372972,0.0006254997,0.0055206995,0.04774659,-0.008239603,0.0500455,0.012235064,0.006438053,-0.010742983,0.010577196,0.0032687625,-0.0075432984,-0.028095331,0.02398382,0.010433515,0.0012779398,-0.004716634,-0.025774317,-0.016015003,-0.024956435,0.011815071,0.017286034,-0.015926583,0.011350867,0.008206446,0.012102434,0.024226975,0.023188043,0.022392267,-0.017507084,0.024558548,-0.006708838,0.0037274393,0.006775153,0.0070404117,0.031610012,-0.041800372,-0.012599795,-0.0018540487,-0.0073775114,-0.016523415,-0.039390936,-0.008847487,-0.016998671,-0.007836188,0.009505108,0.0036887557,0.05212336,0.0002220852,-0.023188043,0.028426906,0.007664875,-0.011693493,0.010582723,-0.0010361674,-0.02745429,-0.027122715,0.008631964,-0.009831156,0.021220706,0.008200919,0.011256922,0.011245869,0.015948687,0.000100335536,0.016700255,0.0104777245,-0.038838316,0.024779597,0.040871967,0.009665369,0.023011204,0.019529682,-0.027631128,0.014567131,-0.011770861,-0.0040037506,-0.04535926,0.004910052,-0.011439287,-0.0028791637,-0.0019203635,0.035743628,0.008383284,0.03664993,-0.016976565,0.04558031,-0.021773329,0.02087808,0.0029675832,-0.0102953585,0.010532986,-0.0104887765,0.043811917,-0.00023935466,-0.02606168,-0.03817517,-0.0054543847,-0.030128984,-0.010124045,0.025420638,0.009864313,0.013981352,0.024271183,0.01604816,0.010881139,0.056676973,-0.0116603365,0.01415819,0.0020516114,0.015130806,0.011339815,-0.015407117,0.010908769,-0.039744616,-0.0057417485,0.001825036,0.010378252,-0.0047387388,-0.022005431,0.0072835656,-0.03521311,0.0064159483,0.0055124103,0.005703065,-0.014688708,0.007167515,0.0023721324,-0.0025669318,0.013307151,0.0028764005,-0.03656151,0.027631128,-0.0038959892,0.028736373,0.03187527,0.023254357,0.006366212,0.0073996163,0.0010534368,-0.035279427,-0.0013359651,-0.011826123,-0.003992698,0.0015514878,-0.0069188345,0.0378657,-0.03881621,0.006659102,-0.01798234,-0.041446693,0.012135591,0.031720538,-0.027609024,-0.026923772,-0.0017822079,0.013881879,-0.013041893,0.015981846,-0.020435983,0.008753542,-0.020612823,-0.0047884746,0.023143834,-0.034726802,-0.02849322,-0.02623852,-0.0052167573,-0.011505602,0.017164458,0.0053797807,0.028692164,0.017186562,0.016821831,-0.009085115,0.033709977,0.0013566884,-0.019529682,-0.014821338,-0.015252383,-0.0005367347,-0.0035202058,0.009190113,-0.04332561,-0.027741654,0.000067480396,0.0018568118,0.016446048,-0.024779597,0.060434803,-0.05937377,0.065253675,0.015396065,-0.00522781,0.015020282,-0.0016703018,0.027387975,-0.011737703,-0.0069188345,0.008444073,-0.009831156,-0.003379287,-0.0025185775,0.019993884,-0.044099282,-0.008736963,0.002684364,0.022834364,0.030814234,-0.01532975,0.02606168,-0.021541229,0.029222682,-0.013340309,0.033621557,0.011240344,0.010649038,-0.022745945,0.015440275,-0.013086103,0.012367694,-0.019374948,0.0144566065,-0.046464507,-0.025951156,0.034925748,-0.007869345,0.004404402,0.012301379,-0.011726651,-0.030350031,-0.004915578,0.024691178,-0.00053431693,0.022922784,0.0046171616,-0.020181777,0.0079190815,0.03773307,-0.02235911,0.027852178,0.013395571,-0.009936154,-0.010621406,-0.030305821,0.019341791,0.0021828592,0.01572764,-0.03359945,0.010588248,0.023254357,0.0070017283,0.014511869,0.0024315394,0.012179801,-0.04016461,0.0019866782,-0.014622393,-0.05225599,-0.035765734,0.021419652,-0.036008887,0.017120248,-0.012544532,0.0012074803,0.004871368,-0.029487941,-0.019054426,-0.056411713,0.0010499828,0.0054737264,-0.024691178,-0.019728625,-0.019529682,-0.0024536443,0.0039125676,-0.009610106,-0.010262202,-0.017606555,0.023254357,0.015307645,-0.028692164,-0.021673858,-0.0060401647,-0.006294371,-0.02628273,-0.036141515,-0.009648791,-0.0018512857,0.033444718,0.008156709,-0.00872591,-0.029708989,-0.024646968,0.0015183305,-0.036030993,0.010151677,-0.0040838807,-0.0066701546,0.00401204,-0.012124539,-0.019319685,0.0136387255,0.005064786,-0.0055870144,-0.00082893384,-0.04129196,0.01749603,-0.019496525,0.015749743,0.02849322,-0.0102953585,-0.013892932,0.019441262,0.01595974,-0.0039346726,-0.030681606,0.017562345,0.040717233,-0.004525979,0.018490752,0.028979529,0.021850696,0.0002061973,-0.0059793764,0.006366212,0.03543416,-0.000049131602,0.0156171145,-0.060700063,0.00040203292,0.016611835,0.006902256,-0.0070901476,0.027166925,-0.008935907,0.026769038,-0.00066763716,-0.0048326845,-0.049559195,-0.019319685,0.007714611,-0.0067917313,0.004575715,0.00011993637,0.0062225303,-0.010897717,0.020458087,-0.036893085,0.029885828,-0.015628166,0.030416347,-0.0014934625,0.04566873,-0.026835352,0.0026705486,-0.019485472,0.027719548,0.006686733,-0.020115461,-0.053140186,0.02858164,0.01007431,-0.01257769,-0.009411163,-0.00555662,0.040739335,0.007885925,0.016269209,-0.025265904,0.02619431,0.010582723,-0.015340803,0.014301872,-0.027940597,0.009963785,0.006907782,-0.026260626,-0.019087585,0.00877012,0.008018553,0.0018540487,0.014710813,-0.0074548787,0.04540347,0.025354324,-0.022325952,0.04255194,0.04814448,-0.01577185,-0.013461886,-0.013793459,-0.03138896,0.017650764,0.02380698,0.0018692459,-0.0016730649,0.020115461,0.0144566065,-0.034748908,-0.004067302,0.030438451,0.0006531308,0.023784876,0.01532975,-0.0017490505,-0.006681207,-0.024226975,0.046552926,-0.010195887,0.0036113886,0.027387975,0.014788181,0.010643511,0.000099644756,0.020004937,0.0012668873,0.02276805,-0.017241824,0.014633446,0.010356147,0.03351103,0.017352348,-0.00906301,0.016534468,0.019949675,0.026614303,0.027387975,0.00081788143,-0.021552281,0.02316594,0.01032299,0.015561852,0.0028791637,0.02042493,0.012511375,-0.010317463,0.017330244,-0.01253348,-0.019021269,0.006946466,-0.0040783547,-0.036229935,0.024337498,0.032582626,-0.022624368,0.019176003,-0.0015210937,-0.00229891,-0.014743971,-0.0087038055,0.0057859584,-0.022348057,-0.017363401,0.013616621,-0.035500474,0.012069277,0.056323294,0.0037827014,-0.008477231,0.03178685,-0.004086644,-0.0016108948,0.008764594,0.014102928,-0.039125677,-0.002351409,-0.06578419,0.019938624,0.01573869,0.00393191,0.08214182,0.002909558,-0.037202552,0.030350031,0.027807968,0.0016854989,0.0031858692,-0.03782149,0.0016744464,-0.0025006172,0.01298663,0.018446542,-0.019573892,-0.014147138,0.002157991,0.020612823,0.031610012,0.0017062222,0.004315982,0.0071288315,0.003429023,-0.009173535,-0.023740666,-0.0047055813]},{"id":"interface-GatewayVoiceStateUpdateData","type":"interface","source":"main","text":"Interface: GatewayVoiceStateUpdateData\nProperties: channel_id: string | null, connection_id: string | null, guild_id: string, self_deaf: boolean, self_mute: boolean, self_stream: boolean, self_video: boolean","meta":{"url":"/docs/typedefs/GatewayVoiceStateUpdateData"},"embedding":[0.0005478541,-0.026563376,-0.0022533648,0.02133495,-0.004807178,0.002843421,0.007991314,-0.035384797,0.002120176,0.014632158,0.031221878,-0.009496654,-0.010555969,0.039795507,0.021062378,-0.041604392,-0.04130704,0.06888637,0.00081926456,0.019253492,-0.052432932,0.031717464,0.007285105,0.03863088,-0.01727115,0.028644834,0.019538453,0.040861014,0.0019033576,-0.008400172,0.011714399,-0.034145832,0.06323669,-0.020306611,-0.029834239,0.01994731,-0.022487186,0.00023830686,-0.05327543,-0.026687272,0.0057147187,-0.021211054,-0.008363003,0.036029056,-0.049261186,0.041505273,-0.021359729,0.026860727,-0.020752637,0.0016571135,-0.033575907,0.023156226,-0.017357878,0.0662102,0.051937345,-0.00017026068,0.0026777098,-0.023602253,-0.030230708,-0.0041195536,-0.014210911,-0.03345201,-0.017345488,0.001220379,0.013046285,0.00000889295,-0.059569363,0.032906868,0.0071054553,0.021508405,0.019290661,0.008424952,-0.00864177,-0.0083506135,-0.044255774,0.02985902,-0.028025353,-0.015474653,0.024271293,-0.035037886,-0.029784681,0.031965256,-0.07220679,-0.04809656,-0.0015030175,0.023218175,-0.061601263,-0.0036363576,-0.00053817476,0.033476792,-0.041381378,-0.0075700665,-0.07498207,-0.02807491,-0.023218175,-0.034591857,0.07185988,-0.027306754,-0.049682435,-0.0025027061,0.051639996,-0.029685564,-0.062493317,-0.04507349,0.011063944,-0.0079417555,0.033253778,0.008852393,-0.0589251,-0.022561524,-0.051342644,0.010233838,-0.008765666,0.01018428,-0.0047731064,-0.021111937,0.030602397,-0.049558535,0.048319574,-0.028669614,-0.047031052,-0.009403733,0.017395046,-0.017865853,0.038457423,0.023292512,-0.01698619,-0.015425094,-0.098373696,-0.03793706,0.016502993,-0.019340219,0.04802222,0.006708987,0.0010020117,0.020765027,-0.0006523917,0.02166947,-0.05565424,-0.03146967,0.007328469,-0.00830725,0.040761895,0.025423529,0.0053863935,0.024531476,-0.024296073,0.027678443,-0.0014039004,0.033352897,-0.057636578,0.014210911,-0.020554403,-0.0036828187,-0.015487043,-0.004813373,0.008604601,0.012247154,-0.028644834,-0.040687557,0.038110513,-0.049632873,0.01931544,0.0031020546,-0.039423816,0.006684208,0.023949163,0.022858875,-0.03895301,-0.0020396435,0.025919115,-0.020356169,-0.017308319,-0.032237828,-0.010933852,-0.032683857,0.013318857,-0.021260612,-0.054910857,-0.037540592,0.021842925,0.0117020095,-0.03419539,-0.06943151,-0.023862436,0.011441827,-0.015833953,0.028025353,0.01490473,-0.050178017,-0.012420609,0.00025127726,0.040018518,0.060064945,0.028050132,-0.005033289,0.007247936,-0.0028263852,0.0096019665,-0.041827407,0.01761806,-0.067151815,0.027752781,-0.046634585,-0.0101780845,-0.05124353,0.021892484,-0.003775741,-0.0070744813,0.011726789,0.055059534,-0.005559848,0.003995657,-0.007687768,-0.073941335,0.044900034,-0.029363433,-0.029487329,0.0032274998,-0.03253518,-0.024791658,0.030726293,0.042124756,-0.012395829,0.017122475,0.034616638,0.0006973041,-0.0024810242,-0.0032213049,-0.024816437,-0.021756198,-0.03010681,-0.0058541023,-0.027653664,-0.009329394,-0.042546004,0.0035062665,0.02604301,0.049236406,0.003608481,-0.026340362,-0.040638,-0.0021015918,0.03142011,0.0023540305,-0.0038067151,0.027182858,-0.033154663,-0.0196004,0.0223509,0.00677713,0.056843642,0.016577331,0.007916977,0.0016261395,-0.009317005,0.0047266455,-0.0025414238,0.025770439,-0.00053740037,0.028595276,-0.024692541,-0.032287385,0.013653377,0.0045469957,-0.03927514,0.03523612,0.03481487,-0.022165056,-0.001413967,-0.013479922,-0.019241102,0.054415274,0.011478996,0.016862292,-0.002361774,0.023899604,0.027009403,0.021062378,0.026191687,-0.06888637,-0.001152236,-0.023007551,0.07151297,-0.03320422,0.025968673,-0.002225488,0.021198664,0.031667907,0.013046285,-0.028198808,0.04537084,0.039522935,-0.04608944,0.040935352,0.05590203,0.033352897,-0.013678156,-0.007080676,0.03260952,0.06189861,0.010221448,-0.038556542,-0.0018460555,0.0060895053,0.043908864,0.016428655,0.01556138,0.025423529,-0.0264147,0.02070308,-0.019501284,-0.016428655,0.0059315376,-0.05253205,-0.018943751,0.025312023,0.046510685,-0.0067461557,0.0021774783,-0.009075407,0.0155985495,-0.0028511647,-0.053820573,0.008400172,-0.036772434,0.021929653,-0.004587262,-0.00096639147,0.024407579,0.0016493701,-0.06189861,0.009527628,0.009707279,0.026241245,0.0061576483,-0.07904587,0.06863857,-0.018943751,-0.006324908,-0.019550843,-0.02269781,-0.018906582,0.03590516,0.03625207,0.0014472641,-0.055456,-0.021260612,-0.0064302203,0.026489038,-0.00914355,0.014780833,-0.017518943,-0.06972886,-0.03226261,-0.062394198,0.015784394,0.004488145,-0.044677023,0.03424495,-0.06031274,0.0210376,-0.00897629,0.027876677,-0.020095987,-0.022982772,-0.057289667,0.01896853,-0.023428798,-0.02604301,0.03327856,-0.03479009,0.012575479,0.038729995,0.0014356489,-0.03275819,-0.014508261,-0.001537089,-0.03897779,-0.013628597,0.018683568,0.034071494,0.011571919,-0.02332968,-0.0055691404,0.01833666,-0.044751357,0.03142011,-0.023193395,0.011206424,0.010940047,-0.023404019,-0.035459135,-0.027257195,-0.006851468,0.004296106,-0.01688707,0.044503566,0.024519086,-0.010940047,0.059321567,0.030899748,-0.042050418,0.012532115,-0.0117701525,0.011801126,-0.0020411923,0.0019389777,0.069233276,-0.011776348,0.012284323,-0.02874395,0.032361723,0.023676591,0.033055544,-0.045346063,-0.035112225,-0.017543722,0.028620055,0.034443185,0.03146967,0.03345201,0.0024438554,0.0060616285,0.046238113,0.00055250025,-0.028248366,0.01185688,0.03659898,-0.041034468,-0.042223874,0.019129595,0.051986907,0.0050549707,0.034393623,-0.048939057,0.01794019,0.00059237937,-0.0032027205,0.000521139,-0.05461351,-0.026142128,-0.030379383,-0.007285105,-0.0043332744,0.03870522,0.004094774,-0.03243606,-0.014471093,-0.025150958,-0.046461128,0.011640062,-0.04276902,0.06477301,-0.008598406,-0.033922818,0.012686986,0.045668192,-0.07146341,-0.029784681,-0.022227004,-0.03052806,-0.007049702,0.06596241,-0.006808104,0.019526064,0.0009207047,0.019179154,-0.035607807,0.045172606,0.001770169,-0.021805756,0.0026900994,0.036375966,0.011491386,-0.012117063,0.023354461,-0.0061142845,0.026241245,0.022524355,-0.029239537,0.027728,-0.03590516,-0.003252279,0.06997666,0.04361151,0.042818576,-0.009577188,-0.002042741,-0.013021505,0.012501141,-0.017828684,0.03015637,-0.013665766,0.022883654,-0.0014968227,-0.025299633,-0.02812447,0.042917695,-0.0019467212,-0.0045469957,-0.018844634,0.028471379,0.0033544935,0.0751803,0.009955071,-0.02782712,-0.043561954,-0.026216466,-0.014867561,0.007285105,-0.008468315,-0.009199304,-0.043561954,-0.022549134,-0.0021960626,0.021087157,-0.0070249224,-0.010940047,0.03649986,-0.030280266,0.0052934713,0.03863088,0.010766592,-0.00022553006,-0.03796184,0.017345488,-0.052730285,0.0065788957,-0.009131161,0.03734236,-0.028149249,-0.01935261,0.019179154,-0.008431146,-0.0039182217,0.02129778,-0.010165695,0.016379096,0.018448165,-0.0050147045,-0.0010817699,0.004596554,0.010940047,-0.00089515105,0.009118771,0.017531332,0.013492311,-0.013678156,0.0028248366,-0.00038349789,-0.026513817,-0.0056217965,-0.004875321,0.014371975,0.021025209,-0.0025770438,0.0012405121,-0.010748007,0.007068286,0.025720881,-0.034666196,0.021409288,-0.025423529,-0.046560246,-0.01994731,-0.016441045,-0.007966535,-0.008579821,0.006919611,-0.034418404,0.017395046,0.0008788897,0.010562163,0.016664058,0.004776204,-0.019798636,0.00695678,0.012073698,-0.00880903,-0.002326154,-0.05867731,0.009849759,0.019860584,-0.028768731,-0.0015804527,0.013133013,-0.031965256,0.0017004773,0.036351185,0.0034319286,0.02308189,0.022871265,0.0017655229,-0.00507975,-0.01049402,0.009440902,0.00051339547,0.0033080324,0.020058818,-0.013876391,0.019872973,-0.009732057,-0.001561094,0.0359795,0.01895614,0.0010120783,0.0034598054,0.006201012,0.03496355,-0.01968713,0.035285678,-0.013492311,-0.039696388,-0.02341641,-0.024506697,-0.03627685,0.021446457,0.023627032,-0.020170325,-0.011584308,0.049310744,-0.022549134,0.031767022,-0.0044169044,0.02507662,-0.025919115,-0.011225008,0.005284179,-0.046931934,-0.026786389,-0.04105925,-0.012501141,-0.023230564,-0.042124756,-0.061849054,0.01723398,-0.0048350547,-0.014731275,-0.029412992,0.052036464,0.00029735122,0.024593424,-0.0028558108,0.054663066,-0.029437771,-0.02372615,-0.025150958,-0.01354187,0.005686842,-0.019910142,-0.042570785,0.0143100275,0.00093231996,0.026241245,-0.030181149,-0.05818172,0.014842782,0.024940334,-0.026389921,-0.020851754,0.0032708636,0.004952756,0.016862292,-0.00900107,0.01999687,-0.0053461273,0.0018739322,-0.008604601,-0.0007085322,-0.032460842,0.03488921,0.034740534,0.009397537,0.023800487,-0.026588155,-0.006312519,-0.0494842,0.007520508,0.011218814,0.006684208,0.03464142,-0.050847057,-0.028520938,-0.019191543,-0.0036115784,0.03496355,-0.033030763,0.025188126,-0.016763175,0.013182571,0.04100969,0.014533041,0.009515239,-0.01352948,0.059668478,0.030602397,-0.005064263,0.024209345,-0.035756484,-0.012594063,-0.013628597,0.0027954113,0.005048776,-0.0001148945,0.0012451583,-0.0066098697,0.017419826,-0.00020733279,0.0025940796,-0.010047994,0.021273002,-0.024531476,0.018237542,0.02874395,0.006337298,-0.023317292,0.009453291,0.03379892,0.018311879,0.032708634,0.023627032,-0.010704644,0.011286957,0.0054421467,0.005587725,-0.032386504,0.018757906,-0.035706926,-0.0026653202,-0.032559957,0.023763318,-0.034418404,0.006399246,-0.032906868,0.031618346,-0.0076629887,-0.00965772,-0.028545717,-0.022041159,0.00695678,0.010562163,0.0061452584,0.010425877,0.006067823,-0.0127861025,-0.0018568964,0.0055939197,-0.018857023,-0.0016075551,-0.019042868,0.007916977,-0.055604678,0.012587869,0.0055939197,-0.030453721,-0.0041195536,-0.0081461845,0.016193252,0.03082541,-0.0006953682,-0.0027055864,0.0019296856,0.025212906,-0.042298213,0.01424808,-0.038234413,-0.013467533,0.03835831,0.042273432,-0.054762185,-0.019724298,-0.0150905745,0.008524069,0.015400316,-0.010469241,-0.0014519102,-0.07081915,-0.00005856038,-0.013318857,-0.0155985495,-0.009186914,-0.00048590597,-0.007879808,0.029066082,-0.0021960626,0.008288666,-0.023825267,-0.02002165,0.0031252853,-0.030899748,0.021644691,-0.03627685,-0.016168473,0.0015200533,-0.0023292513,0.015548991,-0.061155234,0.02676161,0.034145832,-0.005900563,0.012309101,-0.027975794,0.00798512,0.030924527,-0.0035217535,-0.038110513,0.0098002,0.029313875,-0.00017577794,-0.034145832,0.049310744,-0.030032473,-0.013467533,0.0047793016,0.062096845,-0.014533041,0.0076134303,0.02708374,-0.039498154,0.049236406,0.014991458,0.0074771442,0.0057116216,-0.010568358,0.0107542025,0.012055114,0.018163204,-0.015610939,0.012451583,0.017345488,0.023218175,-0.008703718,-0.0031469672,0.021880094,-0.01796497,-0.022214614,-0.010562163,-0.03186614,0.0012529017,0.005683745,0.0074709496,0.01134271,-0.036128175,0.031370554,-0.006380662,0.0032925452,-0.023688981,0.010258617,-0.008034678,0.0023524817,0.0075328974,0.017865853,-0.03248562,0.014966678,-0.023515526,-0.022437628,0.021149106,0.038383085,0.019377388,-0.006708987,0.018026918,-0.036078613,-0.0098002,-0.00254607,0.012377244,-0.014111794,-0.008102821,0.0060213623,0.01930305,0.0013357574,-0.013764883,0.049855888,-0.023181006,0.009471876,0.025089009,0.036375966,0.010741813,0.035409573,0.01103297,-0.007904586,0.02095087,0.017370267,0.0050735553,0.014235689,0.009868343,-0.002519742,0.01763045,-0.032014813,-0.011819711,0.024469528,0.00016300112,-0.014297638,0.0145825995,-0.03142011,-0.033352897,-0.002372615,0.020938482,0.008647964,-0.0025336803,-0.07428825,0.010797566,-0.026266025,0.003026168,0.029685564,0.010401098,0.012253349,-0.0029316973,0.012253349,-0.0029069178,-0.0025956284,-0.04913729,-0.035632588,0.04507349,-0.0007317628,0.022474797,-0.018757906,-0.0023369947,0.00304785,-0.0038655659,-0.031221878,-0.018225152,0.011255982,0.023404019,-0.021508405,0.011652451,-0.015177302,0.026910286,-0.02809969,-0.014384366,-0.009893123,-0.0043456643,0.04911251,-0.015387925,0.008740887,-0.046287674,-0.017246371,0.0062815445,0.0074771442,-0.038407866,-0.03479009,0.011732983,-0.0005842487,0.010580747,-0.029264316,-0.02197921,0.027158078,0.021570353,-0.027678443,-0.027752781,-0.017518943,0.013455143,0.038135294,-0.042868134,0.04232299,0.02946255,0.022871265,0.019179154,0.042570785,-0.019451726,0.0055784327,-0.019055257,-0.04343806,0.00831964,-0.0057673748,-0.006473584,0.013789663,-0.032683857,0.016081745,-0.004791691,-0.002744304,-0.03377414,0.0359795,0.016911851,-0.012835661,0.018658789,0.005299666,0.0186464,-0.009081602,-0.0045129242,-0.028198808,0.077360876,0.00473284,0.012395829,-0.018039307,-0.012123257,-0.013021505,-0.024196956,0.02439519,0.041876964,0.0050673606,-0.019711908,-0.041455716,0.034591857,0.027926236,-0.019080037,-0.004447879,0.00864177,0.01597024,-0.014780833,0.0045655803,-0.022214614,0.012079894,-0.027703222,-0.013975508,-0.0037199876,0.0017097695,0.0006489071,-0.024234125,-0.0004317013,-0.0033854675,-0.039597273,0.022834096,-0.012971947,-0.023850046,-0.020814586,-0.008121405,0.01833666,-0.0047142557,-0.048220456,0.045618635,0.0140746245,0.018398607,-0.026513817,-0.02710852,-0.045940764,0.0057983487,0.026166908,0.0079417555,0.0139383385,-0.020009259,0.036078613,-0.008406367,-0.0017531333,0.048641704,0.0132940775,0.055158652,0.0033761754,0.0027551448,-0.028248366,-0.04006808,0.019811025,0.006355882,-0.0052624973,0.008567432,0.0067585455,0.035756484,-0.008102821,0.0076072356,-0.014396755,0.019860584,0.005315153,-0.026984623,-0.0147188855,0.0024593424,0.0086541595,0.013678156,0.0014859817,-0.0099426815,-0.00844973,-0.023441188,0.03142011,0.013244519,-0.03412105,0.007892197,-0.00009563249,0.02909086,0.029586447,0.02231373,0.035384797,0.0013055577,-0.006888637,-0.0010933853,-0.031444892,-0.0053306404,-0.02372615,0.030676734,-0.026736831,-0.03295643,0.0013992543,-0.010933852,-0.017531332,-0.024593424,-0.019129595,-0.007489534,0.008139989,-0.0015843245,0.002628151,0.028719172,-0.0043983203,-0.037367135,0.0058107385,-0.006064726,-0.0050178017,-0.0092302775,0.03632641,-0.0049713408,-0.053324986,0.021793367,-0.039597273,0.004376638,0.016329538,0.015945459,0.022871265,-0.014520652,0.016676448,0.017221592,-0.0042589367,-0.023800487,0.00254607,-0.006231986,0.01592068,0.013343636,0.017048137,-0.04304159,0.006337298,-0.010586943,-0.010035603,-0.00829486,-0.0035806042,-0.0029053693,-0.022970382,-0.009818785,0.047650535,-0.0028093497,0.049855888,-0.018497724,0.016279979,-0.012507336,0.038209632,0.024073059,0.0297599,0.010921462,-0.023143837,0.036053836,0.00846212,0.005392588,-0.017828684,0.0067151817,-0.02710852,-0.0015138584,0.0064302203,-0.0017500358,0.007055897,-0.0044169044,0.009484265,0.0059222453,0.062394198,0.015734835,0.016156083,0.009137356,0.016168473,0.006176233,0.015511822,0.010946242,-0.016032187,-0.0073656375,-0.0045098267,0.026216466,-0.014793224,-0.006560311,-0.00399256,-0.014842782,0.014495872,0.011324125,0.032361723,-0.020839365,0.005835518,-0.003273961,0.011819711,0.024878386,-0.03112276,-0.013343636,0.034021936,0.0057209134,0.022276562,0.051540878,0.022511965,0.0027830217,0.014235689,-0.012600258,-0.05659585,0.030552838,-0.0012769067,-0.0051509906,0.01320735,-0.000079564685,0.03751581,-0.029412992,-0.02202877,-0.004488145,-0.008889562,-0.0043611513,-0.020207493,-0.041604392,-0.008332029,-0.026018232,0.015016236,-0.00778069,0.00053933624,-0.023911994,0.0033792728,-0.03149445,0.012333881,0.011212619,-0.0325104,0.0048629316,-0.04599032,-0.004943464,-0.012290517,0.013789663,0.025274854,0.03379892,0.044107098,0.017382657,0.0011398464,0.038556542,-0.006328006,-0.0077992748,0.01204892,-0.008177158,-0.025039451,0.015772004,-0.014012677,-0.038060956,-0.014917119,0.026736831,0.013789663,0.0027489502,-0.037045006,0.021434067,-0.06640844,0.04819568,0.0049001,-0.002896077,0.009620551,-0.019711908,0.005364712,-0.0049248794,-0.0155985495,0.019030478,0.002445404,0.006355882,0.005023997,0.010128526,-0.04472658,-0.023453578,0.00023346717,0.012092283,0.029982915,0.0019343316,-0.016651668,-0.030701514,0.008728498,-0.014087014,0.025200516,0.000701563,-0.0058417125,-0.0064488044,0.00009084118,-0.012569284,-0.0022920824,-0.037193682,0.007508118,-0.04497437,-0.02269781,0.0032832532,0.017395046,0.013331247,0.023131447,-0.028297925,-0.02439519,0.001280004,0.03724324,0.0119745815,0.031767022,-0.020826975,-0.017072916,0.012148037,0.018819854,-0.0049001,0.015499433,0.013033895,-0.0011073236,-0.02874395,-0.040538885,0.0028558108,0.013603819,-0.006671818,-0.023552695,0.0080098985,0.015548991,0.020232273,-0.006987754,0.009818785,-0.0027474014,-0.0007573164,-0.008555043,-0.050326694,-0.025646543,-0.03243606,0.039795507,-0.031246658,0.039572492,0.023255343,-0.0056496733,-0.002843421,-0.023812877,-0.0030710807,-0.037119344,0.0008757923,-0.01490473,-0.023057109,-0.021991601,-0.0039770724,0.011237399,0.0038655659,-0.020876534,-0.007886002,-0.006975364,-0.0023106667,0.030305045,-0.032361723,-0.008239107,-0.02874395,-0.02065352,-0.028595276,-0.021508405,-0.019674739,0.011949802,0.022127887,0.0118321,-0.003524851,-0.02884307,-0.005974901,0.007904586,-0.009261251,0.015288808,-0.014706496,-0.03355113,-0.008016094,-0.006324908,-0.015635718,0.019488895,0.02003404,0.011912634,0.0080780415,-0.040018518,0.027802339,-0.00024314657,0.03218827,0.005587725,-0.0154622635,-0.029214758,0.020641131,-0.0042031836,-0.022388069,0.0058417125,-0.0056899395,0.031370554,-0.028397042,0.007824054,0.01725876,0.00012534825,-0.008561238,-0.019327829,0.015747225,0.03184136,0.009416122,0.023800487,-0.0528294,-0.004364249,0.018894192,0.004008047,-0.029264316,0.030974086,-0.021161495,0.01698619,0.017543722,-0.0038996374,0.007886002,-0.029214758,0.00431469,-0.04546996,-0.0024794755,-0.02370137,0.017890632,-0.012117063,0.013826832,-0.02506423,-0.0036580395,-0.0297599,0.054266598,-0.006111187,0.0045531904,-0.010363929,0.016502993,0.00028031546,0.01103297,0.047923107,-0.036029056,-0.028050132,-0.004859834,0.01964996,-0.03481487,-0.006770935,-0.034096275,-0.014594989,-0.009186914,0.015821563,-0.010023214,0.03558303,-0.00067562226,-0.0077311317,0.010240032,-0.0101099415,-0.022809317,0.024903165,-0.0095338235,-0.0393247,-0.0019467212,0.0059470246,0.0003476841,0.017469384,0.009416122,0.024816437,-0.011243593,0.018311879,0.03793706,0.04574253,0.011683425,0.02104999,-0.0057333033,-0.03521134,-0.036549423,0.010035603,0.019674739,-0.02066591,0.003850079,0.018547282,-0.0256961,0.032807752,0.018026918,-0.010865709,0.032733414,0.015400316,0.0057302057,-0.0013644085,-0.014099404,0.027356312,-0.013740105,-0.0039151246,-0.0033544935,-0.008901952,-0.01354187,-0.0045222165,0.013256908,-0.015511822,0.030949306,-0.031990036,0.010010825,0.023540305,0.032559957,0.013603819,0.0064983633,0.035781264,-0.0006907221,-0.0050735553,-0.0062072068,-0.012222374,-0.045172606,0.019228712,-0.0038810528,-0.014087014,0.021706639,0.04767531,0.027975794,-0.0012947167,-0.008034678,0.005584628,-0.017407436,0.003236792,-0.010778982,-0.014037455,0.00999224,0.00007332147,-0.0013063321,0.01251353,-0.029982915,-0.0071674036,-0.026935065,0.0075824563,-0.013839222,-0.011305541,-0.021607522,0.008034678,-0.04343806,-0.0044138073,0.041381378,0.008139989,-0.017865853,0.022834096,0.010531189,0.008908147,-0.009651525,0.0066780127,-0.048170898,-0.019526064,-0.0372928,-0.008220523,0.023280123,0.003089665,0.0589251,0.0031128956,-0.00012970399,0.01352948,0.017556112,-0.016465824,0.007464755,-0.0046492103,0.01896853,0.011070138,0.014768444,-0.017345488,-0.0011886306,-0.009428511,0.010692255,0.020504845,0.03486443,-0.010524995,0.03885389,-0.0019389777,0.011274567,-0.022202225,-0.02743065,0.00034090853]},{"id":"interface-GatewayVoiceStateUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayVoiceStateUpdateDispatchData\nDescription: VOICE_STATE_UPDATE — guild_id?, channel_id, user_id, member?, session_id, deaf?, mute?, ...\nProperties: channel_id: string | null, connection_id: string | null, deaf: boolean, guild_id: string, member: APIGuildMember & { guild_id?: Snowflake; }, mute: boolean, self_deaf: boolean, self_mute: boolean, self_stream: boolean, self_video: boolean, session_id: string, suppress: boolean, user_id: string","meta":{"url":"/docs/typedefs/GatewayVoiceStateUpdateDispatchData"},"embedding":[0.00040765296,-0.010307852,-0.019535955,0.028450176,0.005888408,0.015555943,-0.01928485,-0.013421552,0.0030132576,-0.006685666,0.014664521,0.009742866,-0.021607568,0.019397847,0.02711932,-0.023352748,-0.03974989,0.062073108,-0.013572215,0.021092804,-0.063830845,0.021494571,0.0073510935,0.02015116,-0.03442647,0.02980614,0.006283898,0.018970968,0.0027747082,-0.018908191,0.0292286,-0.026340894,0.075180784,-0.011117665,-0.023365302,0.013170447,-0.04178384,0.011268329,-0.052028917,-0.03917235,-0.013471773,-0.037489947,-0.007790527,0.0292286,-0.055996373,0.051777814,-0.024608271,0.0016871104,-0.02371685,0.006425144,-0.03279429,0.022047002,-0.016999796,0.066542774,0.05268179,-0.004463388,0.01624648,-0.026491558,-0.023390412,0.006459671,-0.027370425,-0.028023297,-0.017840996,0.010772397,0.01226647,0.006616612,-0.039297905,0.041884284,0.01753967,0.008016521,0.010722175,0.024658492,-0.01880775,-0.0005500765,-0.015279728,0.03189031,-0.04331558,-0.011111388,0.017050017,-0.028274402,-0.01880775,0.034150254,-0.064081945,-0.04130674,0.004874572,-0.0024514107,-0.04542486,-0.0073008724,0.0035845211,0.021017473,-0.028801722,0.011619875,-0.06287664,-0.017150458,-0.02223533,-0.041457403,0.08467254,-0.013120227,-0.034752905,-0.0027904022,0.05469063,-0.035656884,-0.05428886,-0.057201676,0.025989348,-0.011349938,0.00009612606,0.030534346,-0.07417636,-0.0027087932,-0.070108466,0.008386901,-0.01662314,0.0044225836,-0.02268732,-0.012046753,0.032116305,-0.045223977,0.029354153,-0.032769177,-0.05373643,-0.01753967,0.008154629,-0.04178384,0.028500397,-0.0059606005,0.005800521,-0.016798912,-0.06940537,-0.013973983,0.026993766,-0.033773597,0.038921244,-0.0005320283,-0.016284147,0.0051162606,-0.0039831502,0.030408792,-0.05268179,-0.0402521,0.010320407,-0.009171603,0.017426673,0.033723377,-0.022775207,0.00704349,-0.032718956,0.037590392,0.00060735975,0.026039569,-0.06639211,0.03189031,-0.036133982,-0.00017989306,-0.003785405,0.0037414618,0.012059309,0.014739852,-0.021456907,-0.03553133,0.013132782,-0.045751296,0.014413416,0.0051005664,-0.043717347,-0.0036661304,0.01226647,0.024344612,-0.044119116,-0.021695456,0.011123943,-0.03244274,-0.01923463,-0.019736838,-0.013308555,-0.016861688,0.00965498,-0.007539422,-0.07452791,-0.052531127,0.038795695,0.019724283,-0.056699466,-0.065086365,-0.00783447,0.0015968697,-0.0071502095,0.037188623,0.022310663,-0.046579942,-0.015166731,0.0058664363,0.046153065,0.0634793,0.039825223,-0.021695456,0.027973076,-0.007520589,0.021770786,-0.043139808,0.019435512,-0.060867805,0.0056686914,-0.049316984,-0.0034181643,-0.03184009,0.012373189,0.009039774,0.0033114448,0.004086731,0.03603354,0.015606164,0.007125099,0.0031121303,-0.08622939,0.047634583,-0.030534346,-0.019535955,-0.015367614,-0.0088639995,-0.011714039,0.036184203,0.033070505,-0.004990708,0.022072112,0.018920748,-0.0008317847,-0.032643627,-0.00743898,-0.008594062,0.0002599327,-0.01851898,-0.0021861813,-0.04293892,-0.0154806115,-0.031086776,0.015593609,0.016447365,0.04587685,0.018066991,-0.033522494,-0.02529881,0.021017473,0.034778018,0.00081922946,0.018970968,0.015982822,-0.044671547,-0.02266221,0.02930393,0.025989348,0.048262347,0.015982822,0.0017294844,-0.014551524,-0.0056906627,0.029329043,0.024344612,0.03595821,0.02664222,0.02477149,-0.026592,-0.02556247,0.025863796,-0.034702685,-0.028148849,0.056448363,0.028374843,-0.016861688,0.016949575,-0.021770786,0.022411104,0.04587685,0.006509892,0.008751003,-0.009033496,0.042662706,0.027495977,0.02005072,0.010226243,-0.048789665,0.0022505268,-0.019196963,0.05057251,-0.04243671,0.04745881,-0.009027218,0.04339091,0.019699173,0.020992363,-0.03487846,0.04065387,0.034275807,-0.029856361,0.024131173,0.049869414,0.02503515,-0.021821009,0.011136498,0.024168838,0.064383276,0.005521167,-0.024884487,-0.0048337677,0.012071864,0.025700577,0.022285553,-0.0022489575,-0.0019256601,-0.024871932,0.011663819,0.00022050142,-0.007815638,0.010634289,-0.051526707,-0.024093507,0.02141924,0.048739444,0.001100153,0.008217405,0.002018255,0.023967953,0.009912362,-0.04700682,0.01878264,-0.04688127,0.0013779376,-0.018418537,-0.02134391,0.009567093,0.013408997,-0.049668532,0.008581507,0.017213235,0.038318593,0.010257632,-0.07864603,0.06503615,-0.003336555,-0.018682199,-0.025474584,-0.030835671,-0.01487796,0.010941892,0.01799166,-0.0058789914,-0.043516465,-0.012316691,-0.01334622,0.0349789,0.010967002,0.026893325,0.0012610169,-0.052983116,-0.028902164,-0.044144224,0.031915423,-0.01007558,-0.040000997,0.03661108,-0.05936118,-0.003684963,-0.011010946,0.03859481,-0.014526414,-0.010056748,-0.040377654,0.022009337,-0.024997484,-0.013471773,0.004909099,-0.026817994,-0.0010067733,0.017502006,0.0016290424,-0.01379821,-0.03342205,-0.0061583454,-0.02669244,0.0039831502,0.0085375635,0.042034946,0.015731717,-0.022674765,-0.0082927365,-0.0008906374,-0.030885892,0.017389009,-0.032091197,-0.005706357,0.026240453,-0.027445756,-0.030584566,-0.012649405,-0.030685008,-0.016849132,0.00783447,0.06272598,0.021557348,-0.020904476,0.05996383,0.005800521,-0.028374843,0.00058185693,-0.01701235,0.040528316,0.018996079,0.008951887,0.048864998,-0.014840295,0.025989348,-0.01854409,0.019950278,0.0074829236,0.034627352,-0.0522298,-0.011695206,-0.012473632,0.0247966,0.021795897,0.025813574,0.015543388,0.011626153,0.023591297,0.048136793,-0.006660555,-0.02010094,0.0035248839,0.055443943,-0.034225587,-0.05469063,0.018908191,0.06478504,-0.008060465,0.04075431,-0.027295094,0.0044382773,0.010929337,0.010332963,-0.0006834759,-0.05217958,-0.026265563,-0.024206504,0.0050472068,-0.008688226,0.03919746,0.027521087,-0.034225587,0.0239554,-0.023553632,-0.024846822,0.02273754,-0.040051218,0.056197256,-0.023792181,-0.025022594,0.017313676,0.047760136,-0.048086572,-0.04577641,-0.021758232,-0.02086681,-0.007369926,0.055695046,-0.003041507,0.01571916,-0.008543842,0.02192145,-0.036636192,0.057804327,-0.005307728,-0.028651059,0.006167762,0.047182593,0.012348079,-0.009403875,-0.006616612,0.0020433655,0.033070505,0.043591794,-0.021670345,0.040026106,-0.025838684,-0.0037916827,0.0864805,0.056850128,0.034300916,0.003936068,0.004143229,-0.026817994,0.00050181727,-0.026491558,0.057101235,-0.013973983,0.03698774,0.01645992,-0.017878663,-0.02870128,0.050672952,-0.029329043,-0.025688022,-0.013459218,0.019862391,0.015844714,0.061370015,0.014300419,-0.024419943,-0.022586878,-0.02661711,-0.025072815,-0.010941892,0.000831,-0.014463637,-0.05323422,-0.012373189,0.012316691,0.017527116,0.009943751,-0.000045390138,0.039925665,-0.02062826,0.009196714,0.042160496,-0.012065587,-0.008085575,-0.006943048,0.024758935,-0.05936118,0.01643481,0.0052543683,0.022724986,-0.0261149,0.0025173258,0.03502912,-0.010803784,-0.010803784,0.0070309346,-0.010703343,0.020854255,0.022724986,-0.010941892,0.010935615,-0.00014546423,0.0019193824,0.006381201,0.014049314,-0.00075841503,0.01701235,-0.0060422095,-0.0016871104,-0.013070006,-0.01672358,-0.018443648,0.005922935,0.0076335864,0.026265563,0.01184587,-0.014965847,-0.0143380845,-0.0045355805,0.029429484,-0.045223977,0.0067986627,-0.0076775295,-0.048739444,-0.018569201,-0.017640114,0.0012986826,-0.010219966,0.015744273,-0.03274407,0.03387404,0.012718459,0.01672358,0.017552227,0.0027966797,0.015078844,0.024671048,0.021230912,0.011513156,-0.007225541,-0.083165914,0.015053733,0.037339285,-0.047684804,0.01698724,0.0032204192,-0.03457713,-0.009240657,0.039373234,-0.008826334,0.025838684,0.02115558,0.002076323,0.008801224,-0.011123943,-0.006698221,-0.0068049403,-0.010571512,0.022335773,-0.019372737,0.019724283,-0.02015116,-0.004281337,0.034250695,0.008870278,-0.00096361473,0.013484328,-0.0029865778,0.02091703,-0.014702187,0.031639207,0.0009212408,-0.028324623,-0.018066991,-0.01701235,-0.03445158,0.010489903,0.014538969,-0.024294391,-0.00704349,0.02052782,-0.016635694,0.011946311,0.015329949,0.04652972,-0.028977495,-0.005571388,-0.0003301636,-0.039925665,-0.03608376,-0.04901566,-0.02242366,-0.03178987,-0.04906588,-0.0447971,0.012969564,-0.019397847,0.010063025,-0.02408095,0.05368621,0.004858878,0.035305336,0.006086153,0.07457813,-0.029027717,-0.03224186,-0.01883286,-0.019849835,0.01305745,-0.023302527,-0.035732213,0.012103252,0.007947467,0.027219761,-0.017250901,-0.03821815,0.014564079,0.0033679432,-0.03482824,-0.029052828,-0.0019083966,0.020176271,0.021318799,0.010063025,0.025713133,-0.014576634,0.018631978,-0.0012453229,0.01435064,-0.022147445,0.028199071,0.054941732,0.012059309,0.034501802,-0.012837733,-0.010295297,-0.03867014,0.007143932,0.0071690422,0.013923761,0.03648553,-0.04745881,-0.017815886,0.011896091,-0.012316691,0.037238844,-0.03445158,0.035707105,-0.0025926572,0.011751705,0.040955193,0.008807501,-0.008562674,-0.013710323,0.028123738,0.04183406,-0.023365302,0.021067694,-0.03796705,-0.029379264,0.0078846915,-0.017188124,-0.0051633427,0.0018205099,0.00064384844,-0.0034464134,0.019950278,0.008160907,0.00073487393,-0.006873994,0.022047002,-0.038720362,0.023666628,0.019485733,0.008317847,-0.029128158,0.0010185438,0.03924768,0.009516872,0.027395535,0.030559456,0.0026413088,-0.0061363736,0.016259037,-0.01002536,-0.040779423,0.013019784,-0.02669244,-0.004369224,-0.04331558,0.024219058,-0.021833563,0.0070183794,-0.03344716,0.026265563,-0.01382332,0.00704349,-0.031915423,-0.01566894,0.005483501,0.008179739,-0.011180442,0.0022787761,-0.0027762775,-0.011230662,0.012605461,-0.00503779,-0.022549212,0.00030073724,-0.02015116,0.00846851,-0.058306538,0.0033930538,0.013245779,-0.029555036,-0.0038701529,0.022084668,0.03189031,0.046554834,0.0073322607,0.00601396,0.016334368,0.040528316,-0.042813372,0.0155684985,-0.036234424,-0.008907943,0.035004012,0.020766368,-0.042813372,-0.005405031,-0.033999592,0.023277417,0.015016068,-0.01382332,0.0017216373,-0.050873835,-0.010558957,-0.024344612,-0.020929586,-0.008003966,0.0026099207,-0.028249292,0.017087683,0.0023650934,0.012467354,-0.03653575,-0.039448567,-0.002812374,-0.02141924,0.015455501,-0.039348125,-0.02189634,-0.023566186,-0.0055462774,0.022498991,-0.07769183,0.038720362,0.041633178,-0.015417836,0.036786854,-0.024131173,0.002088878,0.022436215,-0.012122084,-0.040452987,0.012247637,-0.012680793,-0.017602447,-0.021858674,0.05489151,-0.024696158,-0.016861688,0.012140918,0.03801727,-0.0048526004,0.006591501,0.03437625,-0.0474337,0.028073518,0.0017153597,0.0034589688,-0.008901666,-0.006848884,0.028249292,0.0114001585,0.0024043287,-0.03387404,0.0004323711,0.017301122,0.015229506,-0.0030744646,-0.008719615,0.023917733,-0.010320407,-0.02719465,0.003339694,-0.031714536,-0.0068865493,-0.0048839888,0.0024827989,-0.0070811557,-0.043918233,0.03291984,-0.005373643,0.00991864,-0.017502006,0.008826334,-0.00785958,-0.008085575,0.0076963627,0.00045630452,-0.026366005,0.03344716,-0.020025609,-0.012724737,0.033020284,0.03711329,0.026541779,-0.006459671,0.021193245,-0.032266967,-0.014915626,0.006729609,0.02872639,0.006591501,0.010722175,0.009981416,0.005288895,-0.0080479095,-0.009912362,0.049869414,-0.014225088,-0.009058606,0.002212861,0.016974686,0.016033042,0.0349789,0.020000499,-0.012122084,0.017840996,0.016271591,0.011557099,0.007539422,0.0061740396,-0.0016494447,0.016058153,-0.037690833,0.00007027992,0.009102549,-0.014664521,-0.020565484,-0.000728204,-0.029379264,-0.03985033,-0.0131955575,0.028575728,0.011167887,0.0063874787,-0.07759139,-0.01669847,-0.019586176,-0.0009008385,0.024206504,0.008813779,0.01983728,0.007238096,0.017564781,-0.012712182,0.014275309,-0.056699466,-0.03909702,0.045198865,0.0076649743,0.017062573,-0.00965498,-0.009554538,0.018167432,-0.009309711,-0.015417836,-0.014476192,0.028450176,0.016233927,-0.013245779,0.0018754391,0.0068049403,0.015857268,-0.024168838,-0.0065036146,-0.0061112633,-0.015179286,0.04389312,0.002711932,0.006591501,-0.040402763,-0.015857268,0.008889111,0.005392476,-0.028851943,-0.027495977,0.025587581,0.01108,0.016585473,-0.03397448,-0.015417836,0.03962434,0.01851898,-0.02719465,-0.019925166,-0.010232521,0.014890515,0.03274407,-0.026340894,0.04331558,0.00055203825,0.014551524,0.019171853,0.030333461,-0.025110481,0.0022065835,-0.04909099,-0.037891716,-0.011908646,-0.016685914,-0.02709421,-0.0008647422,-0.025688022,0.036184203,0.004259365,0.004909099,-0.012825178,0.04484732,0.016547807,-0.027521087,0.03548111,-0.0021940283,0.0049342094,-0.013710323,0.0034683852,-0.019711727,0.08296503,0.013383887,0.012479909,-0.02711932,-0.013622436,-0.004369224,-0.01696213,0.033045392,0.03661108,0.02184612,-0.0050315126,-0.04386801,0.04080453,0.028776612,0.000459051,-0.008681949,0.0019131048,0.027395535,-0.018644532,-0.011123943,-0.0066668326,0.029379264,-0.037314177,0.005470946,0.010408294,0.014689632,-0.009937473,-0.004664272,0.0067170537,0.016874243,-0.033321608,0.011714039,-0.015292283,-0.038921244,-0.008763558,-0.002088878,0.010753564,-0.021004917,-0.050396737,0.043014254,0.0017483173,0.02506026,-0.031764757,-0.01092306,-0.061721563,0.0068677166,0.00490596,-0.012649405,-0.0082111275,-0.009799365,0.038946357,0.010646844,0.008110685,0.03392426,0.00456383,0.059210517,0.01923463,0.008368067,-0.0068363287,-0.027445756,0.0016871104,-0.0009008385,0.002909677,0.031413212,0.0014713173,0.051627148,-0.0007745014,0.016233927,-0.011268329,0.0031293938,0.0024890765,-0.01799166,-0.019636396,0.01134366,-0.0025706855,0.0014870113,-0.017062573,-0.011293439,-0.025738243,-0.028450176,0.020540373,0.011262051,-0.028575728,0.012643128,0.023641517,0.03507934,0.016359478,0.031011444,0.039925665,-0.0030163967,0.009805643,0.009830753,-0.051828034,0.013860986,-0.02005072,0.04017677,-0.015920045,-0.024382276,0.009221824,-0.008405734,-0.026240453,-0.030961223,-0.010841451,-0.009592203,0.0086191725,-0.0033804986,0.008763558,0.03917235,0.007734028,-0.035732213,-0.0057973824,-0.007903524,-0.029504815,-0.0032518073,0.028073518,-0.019435512,-0.06041582,0.022963535,-0.0261149,0.008255071,0.018594312,0.01134366,0.008951887,-0.013647547,0.00218932,0.018179988,0.019535955,-0.02400562,0.022134889,0.017577337,0.019297404,0.015355059,0.010715898,-0.042034946,0.013760543,-0.020063274,0.0003880354,-0.010257632,0.00018911331,-0.00208417,-0.017803332,-0.015819604,0.045449972,-0.006400034,0.036184203,-0.02925371,0.009177881,-0.015028623,0.036259536,0.0052669235,0.020289268,0.025474584,-0.021406686,0.050446957,0.032317188,-0.0130323395,-0.04329047,-0.0078846915,-0.030358572,-0.00833668,0.007225541,-0.0052198414,-0.004645439,-0.018318096,0.019347625,-0.0066417223,0.07086178,0.010533847,0.025637802,0.0031482265,0.020829145,0.0031937393,0.0154806115,0.01801677,-0.027470866,-0.015078844,-0.0019209518,0.026240453,-0.021080248,-0.009749144,0.004780408,-0.012103252,0.005040929,0.022900758,0.021482017,-0.01828043,-0.0077026403,-0.00057793345,0.009855864,0.016045598,-0.0070058242,-0.027269982,0.05383687,-0.02091703,0.027546197,0.027897745,0.017250901,0.005106844,0.021143025,-0.013245779,-0.047584362,0.017301122,-0.0002165779,-0.0062242607,0.000030333658,-0.0018346346,0.04369224,-0.03274407,-0.021456907,-0.00042256233,-0.008581507,0.009428985,0.00055399997,-0.038996577,-0.011776816,-0.010571512,0.005370504,-0.010345519,0.022172555,-0.020264158,0.0009589065,-0.040879864,0.0023933428,0.022323217,-0.020590594,-0.009046051,-0.040076327,-0.002564408,-0.0054991953,0.0016478753,0.01873242,0.027696861,0.023779625,0.009372487,-0.010144634,0.043566685,-0.0038984022,0.0009188867,0.0076084756,-0.0005716558,-0.004978153,0.019900056,-0.0055933595,-0.04331558,0.0006740595,0.037866607,0.013283445,0.011192997,-0.025575025,0.029630369,-0.059260737,0.05428886,-0.00087258924,-0.016585473,0.02398051,-0.0026099207,0.022348328,0.0014909349,-0.0102513535,0.018970968,0.0012986826,-0.001015405,-0.0081295185,0.01487796,-0.028851943,-0.019021189,-0.008016521,0.02115558,0.025261143,-0.009855864,0.004315864,-0.020615704,0.021682901,-0.008788669,0.025700577,-0.013095116,-0.009454096,-0.022586878,0.013132782,-0.007803082,0.005624748,-0.035455998,0.004601496,-0.04324025,-0.020339489,-0.0008639575,0.009755422,0.022084668,0.014677077,-0.010000249,-0.03020791,-0.019799614,0.021331353,0.0047961017,0.029354153,-0.019799614,-0.026767774,-0.0012720028,0.031639207,-0.01463941,0.017564781,0.01823021,-0.0058601587,-0.018217655,-0.024269281,0.0046046344,-0.0019978527,0.011638708,-0.012084419,0.010628011,0.00072153396,0.012473632,0.0062587876,0.003223558,-0.0011276176,-0.02405584,0.00036194405,-0.03806749,-0.03294495,-0.047760136,0.02925371,-0.029856361,0.033070505,0.0045512747,-0.009912362,-0.003154504,-0.02762153,-0.008663116,-0.03969967,-0.0013857847,-0.008901666,-0.018895637,-0.0301828,-0.019611286,0.012467354,0.00036096317,-0.02714443,-0.01263685,0.009121383,0.00860034,0.020352045,-0.04030232,-0.022976091,-0.0060327933,-0.01163243,-0.024733825,-0.016711025,-0.02057804,0.012473632,0.038996577,0.021092804,-0.0028861358,-0.02086681,-0.016535252,-0.00065640366,-0.001247677,0.023327637,-0.000087494336,-0.03025813,0.007225541,-0.016409699,-0.014149756,0.0127875125,0.0084559545,-0.0039140964,0.010546402,-0.044520885,0.01880775,-0.011670096,0.02398051,0.01379821,-0.005518028,-0.020025609,0.014325529,0.0038952634,-0.022637099,-0.004328419,0.0011872549,0.038720362,-0.013245779,0.018920748,0.02968059,-0.0034401359,-0.0071502095,-0.0067735524,0.030358572,0.014488747,0.01305745,0.028801722,-0.06041582,-0.0004978938,0.027897745,0.010245076,-0.022247886,0.03239252,-0.020389711,0.028600838,0.031664316,-0.002912816,-0.014576634,-0.027897745,0.013496883,-0.030032136,-0.007947467,-0.009077439,0.013233224,0.00989353,0.023967953,-0.030685008,0.0040647592,-0.02968059,0.048362788,-0.0065726684,0.008481065,-0.018531535,0.01487796,0.00030387606,0.036811966,0.026140012,-0.026240453,-0.027495977,-0.0011652833,0.01163243,-0.031588987,0.0012209972,-0.01743923,0.01928485,0.0016980963,0.01622137,-0.023930289,0.028374843,-0.0037257676,-0.018682199,0.004645439,-0.01885797,-0.01332111,0.0068802717,-0.0025251727,-0.03962434,0.005097428,0.0074829236,0.009981416,0.01693702,0.0026648499,0.033522494,0.009855864,0.00036586757,0.027747082,0.03796705,0.004595218,0.009121383,-0.00179383,-0.045600634,-0.034049813,0.0023760793,0.023289971,-0.008901666,0.0070183794,0.014677077,-0.027043989,0.018707309,0.009899807,-0.013660102,0.019761948,0.02144435,0.0022222777,0.006039071,-0.030333461,0.01703746,-0.0080479095,-0.003954901,0.0071502095,-0.003436997,-0.0040051215,-0.00991864,0.025863796,-0.0064094504,0.03244274,-0.02276265,0.011029779,0.010176023,0.029555036,0.020778922,0.020038163,0.04424467,0.0040553426,0.009516872,0.000049117476,-0.014702187,-0.030986333,0.024997484,0.007156487,-0.00075488386,0.009516872,0.03502912,0.020490153,-0.0045481357,-0.006993269,-0.012442243,-0.0040553426,-0.0017137903,-0.016284147,-0.034250695,0.013785654,0.012410855,-0.012166028,0.015995376,-0.027470866,-0.00008867139,-0.020942142,-0.0042405324,-0.0065224473,-0.030835671,-0.010226243,0.016635694,-0.036736634,-0.017112793,0.037791274,-0.004849462,-0.012982119,0.032015864,0.017150458,0.01748945,-0.002247388,0.028651059,-0.05313378,-0.030534346,-0.042537156,0.0035688272,0.022109779,0.0010114816,0.061872225,0.008964442,-0.021532238,0.028349733,0.022950979,-0.0032518073,-0.0018252181,-0.026416225,0.011167887,0.009692646,0.014225088,0.00008352178,-0.0074201473,-0.019774504,-0.004780408,0.016598027,0.038770583,-0.00546153,0.026290674,-0.0061269575,0.006167762,-0.015066288,-0.019096522,0.0055964985]},{"id":"interface-GatewayWebhooksUpdateDispatchData","type":"interface","source":"main","text":"Interface: GatewayWebhooksUpdateDispatchData\nDescription: WEBHOOKS_UPDATE — webhooks in a channel were updated.\nProperties: channel_id: string, guild_id: string","meta":{"url":"/docs/typedefs/GatewayWebhooksUpdateDispatchData"},"embedding":[-0.010213313,0.008738779,-0.00031357553,0.006039082,0.019678516,0.0137586985,-0.013953857,0.012132375,0.014008068,-0.007551563,0.020372415,0.011590267,-0.049917296,-0.016198184,0.03215784,0.0030547779,-0.034694906,0.02769087,-0.047748864,0.03432627,-0.032699946,-0.012988905,0.04159052,0.040831566,-0.018930407,0.033784162,-0.017000504,0.02476349,-0.008386409,0.014008068,0.042978313,-0.020491678,0.06492284,0.0073726675,-0.016219867,0.045493696,-0.039552193,0.011698688,-0.008321356,0.008462304,0.0035535172,-0.014051436,-0.010885526,0.022942007,-0.043065052,0.0150489155,-0.038121026,0.030032776,-0.0050172084,0.034044374,-0.025630862,-0.0027159606,0.0043721003,0.040137667,0.027560765,0.0060987137,0.012370902,0.002065431,-0.01939662,-0.005190683,-0.019732727,-0.019938728,-0.003889624,-0.055728693,0.032678265,-0.018073877,-0.06817549,0.016198184,0.03989914,-0.005003656,0.039617244,0.020480836,-0.01768356,0.014929651,-0.021575894,0.019624306,-0.048052445,-0.026086232,0.004559127,-0.0024611698,-0.027278868,0.021424104,-0.12542208,-0.07073424,0.008890569,-0.00056243694,-0.008733358,-0.04501664,0.012164901,0.014029752,-0.013346696,0.04978719,-0.052172463,0.009806732,-0.051565304,-0.07320625,0.026758445,-0.016469238,-0.031637415,0.027148763,0.0905537,-0.051174983,-0.071818456,-0.051565304,0.002637355,-0.04948361,0.012045638,-0.010224155,-0.028558243,-0.027300553,-0.048356023,-0.03176752,-0.04506001,0.011601109,0.010809631,0.00057836133,0.047445282,-0.013639434,0.024112958,0.0024503276,-0.046621278,-0.010668683,0.00021735138,-0.03634291,-0.00994768,0.016892081,-0.023982853,0.012490165,-0.05828744,0.0030276726,0.037860814,0.014029752,0.013856278,0.030509831,-0.0054861316,-0.00839183,-0.0009513993,0.012652799,-0.023657588,-0.017412506,0.017401664,-0.026086232,0.030683307,0.007974407,-0.040072616,0.0119589,-0.007958144,0.028016135,0.020188099,0.020123044,-0.098707005,0.021966211,0.0009988338,-0.00012697183,0.014387543,0.030835098,-0.013335854,-0.0113625815,-0.032634895,-0.020036308,-0.0060065556,-0.023484115,-0.025869388,0.02361422,-0.046447802,-0.04978719,0.009421835,-0.0029870146,-0.06366515,-0.02311548,0.02712708,-0.038402922,-0.027105395,0.031008571,0.013639434,0.0046892334,-0.024633383,-0.039573874,-0.05733333,-0.0014636914,0.050220877,0.010825895,0.006120398,-0.041742306,-0.03714523,0.009253781,-0.013845435,0.0062830304,-0.0039736507,-0.034434695,-0.013606908,0.013303327,0.018496722,0.020361573,0.012251639,-0.029707512,-0.0025058938,0.01336838,0.03974735,-0.049830556,0.023635903,-0.064706,0.02165179,-0.008597831,-0.021868633,0.027560765,0.014159858,-0.010028996,-0.027343921,-0.01025126,0.041178517,0.020827785,0.018572615,0.019060513,-0.07815027,0.006722138,-0.02000378,0.04523348,-0.01426828,-0.028124558,-0.0018526537,0.017661875,0.0062125563,-0.010782526,-0.00794188,0.012858799,-0.00035270894,-0.00839183,-0.012067322,0.012056479,0.015157336,-0.014365859,0.014517649,-0.045840643,-0.016523449,-0.0017510084,0.022378214,0.021716842,0.011677004,0.00416881,-0.014365859,-0.03261321,-0.050177507,0.008798411,-0.04143873,0.012880484,0.026151285,-0.010028996,-0.014051436,0.03692839,0.048399393,0.042544626,-0.00006361297,-0.0239178,-0.0041986257,-0.011286686,0.016447553,0.0017957324,0.023787694,0.036624808,0.067698434,-0.025414018,-0.0382945,0.044344425,-0.027842661,-0.022573372,0.05672617,0.024828542,-0.023592535,-0.002401538,0.021912001,0.013162379,0.047315177,-0.016252395,-0.029555723,0.020881996,-0.0041769412,0.026671708,-0.010489788,-0.040874936,-0.01361775,0.004339574,-0.012121532,0.080275334,-0.01688124,0.051521935,-0.007714195,0.042110942,0.052649517,0.026606655,-0.058113966,0.02853656,-0.02437317,-0.0206001,0.0135093285,0.0817065,0.007979828,-0.007481089,0.046838123,-0.00552679,0.01773777,0.00030849327,-0.053343415,-0.030531516,0.0063480833,-0.030206252,0.042284414,-0.032071102,-0.009183308,0.0066354005,0.0034749117,0.020231467,-0.021326525,-0.0030764623,-0.032114472,-0.013606908,0.042067572,0.054774582,0.012837115,0.018496722,-0.010641578,0.044496216,-0.04135199,-0.05330005,-0.025240544,-0.057116486,0.007996092,-0.021293998,0.02090368,0.04909329,0.022378214,-0.032830052,0.04532022,-0.004548285,0.013834594,0.047401913,-0.027495712,0.009210413,0.017206505,-0.01854009,-0.005507816,-0.012110691,0.0043206,-0.0316591,0.014355017,-0.006114977,-0.011752899,0.029642459,-0.0341528,0.037904184,0.024893595,0.005109367,-0.023158848,-0.06474937,-0.04952698,-0.048269287,0.04848613,0.022790216,0.0021331946,0.012837115,-0.015254916,0.036516387,-0.021673473,0.035085224,0.015515128,-0.003989914,0.022833584,0.006857665,-0.014203227,-0.016946293,0.013541855,-0.024091275,-0.03452143,0.004691944,-0.0129672205,0.0020681417,-0.009085728,0.02532728,-0.02864498,-0.032938477,-0.0039573875,0.033220373,0.011243317,-0.0022334845,0.010343418,0.025435703,-0.033090267,0.04978719,-0.045146745,-0.0126961665,-0.013888804,-0.027994452,-0.026064547,-0.014615228,-0.02441654,-0.045146745,0.04688149,0.020589259,0.034825012,-0.0033448057,0.014159858,0.026411496,-0.015688602,0.008738779,-0.016241552,0.056943014,-0.014647755,0.042241048,0.06670096,0.006938981,-0.001874338,0.036603127,-0.0036944654,0.013531013,-0.0006413814,-0.043845687,-0.020838628,-0.029924355,-0.01090721,0.04462632,0.0042718104,0.024481593,0.010056102,0.050871406,0.017965455,-0.021521684,0.004778681,0.0092375185,0.009909732,-0.042175993,-0.07654563,0.010495209,0.03890166,0.002954488,0.07168835,-0.03441301,0.016490921,-0.014907967,0.015504286,0.00412002,-0.06930307,0.012804588,-0.0031577784,0.030553201,-0.014842914,0.0010286497,0.009725415,-0.03632123,-0.014094805,-0.006521558,-0.015515128,-0.018377457,-0.016599344,0.030271305,-0.033784162,-0.0010015443,-0.037709024,0.03974735,-0.02216137,0.004331442,-0.048269287,-0.0013722106,-0.019732727,0.04432274,0.0054888423,0.010381366,-0.009074886,0.028016135,-0.0001922789,0.0183883,0.009649521,-0.014539334,0.012089006,0.044929903,-0.019721884,-0.009871785,0.004149836,0.019971255,0.051521935,0.03517196,-0.0396823,-0.010836736,-0.04146041,0.00036219583,0.0558588,0.05733333,-0.00236088,0.0010706631,-0.00089515565,-0.0067492435,-0.017520927,0.0131949065,0.014712808,-0.008521936,-0.015482602,-0.010630736,-0.037058495,-0.016198184,0.016349973,0.0027999873,-0.03833787,-0.035150275,0.031637415,-0.0012963155,0.040202722,0.014246595,-0.041829046,-0.003401727,-0.03085678,0.0028704612,0.00006441766,-0.0010178075,-0.0005763284,-0.012685325,-0.02472012,-0.005450895,-0.013162379,-0.008402673,-0.010863842,0.05195562,-0.047575388,0.021640947,0.029815935,0.021228945,-0.0010930251,0.0036971758,0.016306605,-0.06826223,-0.003436964,0.01497302,-0.00022734649,-0.041742306,0.0038299921,0.039877456,-0.011915531,-0.01472365,-0.010365102,-0.03532375,0.051868882,0.010820474,-0.02673676,0.034803327,-0.030011093,0.043802317,0.007893091,0.015959656,0.0046268906,0.038771555,0.010234997,0.020578416,0.016794503,-0.037470497,-0.025110438,0.021695158,0.012002269,0.0153633375,0.01291301,-0.022725163,0.0031225414,-0.002607539,0.008429778,-0.028710034,0.004513048,-0.010874684,-0.020068834,0.031312153,-0.009833837,-0.0026021178,-0.0132382745,-0.020936206,-0.00768709,0.00401973,0.019082198,-0.011492687,0.04996066,0.031008571,-0.018919565,0.02547907,0.020361573,-0.005702975,-0.00061698654,-0.09506404,0.023722641,0.04787897,-0.04657791,0.028818455,0.017943772,-0.02261674,-0.0048166285,0.023505798,-0.021543367,0.005461737,0.028948562,0.015515128,-0.0004685845,-0.008446041,-0.00056480867,-0.0069064545,-0.020177256,0.019320725,-0.02376601,0.032027733,-0.021825263,-0.032743316,0.012305849,0.05698638,-0.013726172,0.01808472,-0.029230457,0.03447806,0.0022876954,0.00063731556,-0.0030737517,0.010440998,-0.0064998735,-0.008879728,-0.033068582,0.012641956,0.009996469,-0.00919415,0.021662632,0.025283912,0.010039838,0.022898637,-0.014008068,0.032851737,-0.0055945534,-0.026194653,0.004613338,-0.03994251,0.009969364,-0.05481795,-0.046491172,-0.029403932,-0.04944024,-0.012197427,0.031290468,-0.0427181,0.010039838,0.0012339731,0.0014040595,0.014203227,0.0038408344,0.023484115,0.04321684,-0.018670196,0.026064547,-0.0003030722,-0.0061420826,0.017423349,-0.0041986257,-0.006819717,0.042327784,0.024286434,0.03352395,-0.031940997,-0.033328794,0.052215833,-0.0035752016,-0.026693393,0.0012373612,-0.018583458,0.012999747,0.022681795,0.0033990166,0.01090179,-0.008717095,0.018681038,-0.015493443,0.03371911,0.010489788,0.009167044,0.06145335,0.017390821,0.028861824,0.00703656,-0.000011636261,-0.028471507,-0.002045102,0.047705494,0.03181089,0.016165657,-0.02498033,-0.027300553,0.012132375,-0.01723903,0.061626825,0.0027864345,0.036841653,0.022063792,0.0010415248,0.02406959,-0.00336649,-0.012067322,-0.0014758888,0.0049711294,0.032938477,-0.007692511,-0.00042724877,0.0055484744,0.013975541,0.003390885,-0.0056650275,-0.009649521,-0.0056704488,0.012880484,0.00748651,0.013704487,0.006451084,0.024741804,0.0063643465,0.026498234,-0.035041854,-0.02119642,0.016555974,0.031897627,-0.029252142,0.020220624,-0.014355017,0.008126197,0.0456238,0.0066082953,-0.024134643,-0.032483105,-0.011579424,-0.010018154,-0.011086106,0.010137417,-0.03185426,-0.04139536,-0.03768734,-0.002084405,-0.01060363,-0.01155774,-0.025414018,0.02838477,0.0059523447,0.016306605,-0.0119589,0.018323246,0.006526979,0.015601865,0.004857287,-0.0060553453,0.04044125,0.0075027733,0.030227937,0.015580181,-0.03200605,0.03085678,-0.010831316,0.0044723903,-0.054080684,0.015948813,-0.024546646,-0.0052232095,0.009448941,-0.011666162,0.030661622,0.0066299797,0.01779198,-0.015515128,0.015948813,0.04657791,-0.043867372,-0.02532728,-0.05169541,-0.018279878,0.017195662,0.016447553,-0.028666666,-0.01266364,-0.018355774,0.009248361,0.022725163,-0.03510691,0.0012102559,-0.04054967,-0.008576147,-0.022063792,-0.01773777,-0.008055723,-0.016447553,-0.024329802,0.022085475,0.0039302823,-0.0052340515,-0.04970045,-0.032483105,-0.0010821829,-0.023223901,0.0075244578,0.015710287,-0.006266767,-0.0042338627,0.0042338627,0.01667524,-0.058157336,0.013737014,0.050177507,0.00069999683,0.013780382,-0.042132623,-0.01854009,0.07077761,-0.010115733,-0.043325264,0.039812405,-0.006944402,-0.018128088,-0.008028618,0.040072616,0.0029707511,0.02396117,0.016133131,0.0025208017,0.0002353087,0.0076545635,0.019288199,-0.008527357,0.018008824,-0.0010523669,-0.007676248,0.009595309,0.007020297,0.05169541,-0.013975541,0.030618254,-0.030791728,0.0053641577,-0.015287442,-0.010880105,-0.011167423,-0.007643721,0.052996468,-0.00044249557,-0.018073877,0.0014040595,0.002472012,-0.025804335,0.0004977228,-0.0053777103,0.019266514,-0.023137165,0.006819717,0.015916288,0.006114977,-0.01848588,-0.004231152,0.020643469,-0.016523449,-0.008673727,-0.010592788,-0.0008382343,0.007968986,-0.004938603,-0.0055457638,0.03239637,0.028926877,0.013531013,-0.032981843,0.017965455,-0.025912758,-0.015103126,-0.01798714,0.014398386,0.029859303,0.0006200359,0.02476349,0.026563287,0.029577406,0.012457639,0.044040844,-0.05091477,0.0024083143,0.032049417,0.037448812,0.039357033,0.020383257,0.010554841,0.02115305,0.009757942,-0.012370902,-0.00899357,-0.022399899,0.021413261,-0.03521533,-0.015189863,-0.021174734,0.0026929209,0.02452496,0.023223901,-0.005361447,0.0029084089,-0.027300553,-0.023505798,-0.00833762,0.007622037,-0.012099848,0.0031062781,-0.05330005,-0.008787569,-0.005789712,-0.004033283,0.024633383,0.014235754,0.021348208,0.003984493,0.05065456,0.0028569086,0.0044534164,-0.033914268,-0.016024709,0.009736258,0.017087242,0.04054967,-0.0075027733,0.0061908723,0.0034613588,-0.015558496,-0.0046512857,0.0093947295,0.07272919,0.018984618,-0.008023197,0.010440998,0.01226248,-0.008147881,-0.0022809189,-0.014300806,0.023354009,-0.031182045,-0.0069064545,0.018854512,-0.0015490733,-0.033437215,0.008885148,0.0034830433,-0.01346596,-0.05069793,0.0039004663,0.056162376,-0.002392051,-0.024936963,0.006944402,0.018832829,-0.00954652,0.00029409354,-0.06431568,-0.043867372,0.002392051,0.009107413,0.025414018,-0.030791728,0.040311143,-0.007155824,0.010489788,0.0038516766,0.026519919,0.021489156,0.025695914,-0.02250832,-0.01432249,-0.0099151535,-0.0091236755,-0.03712355,-0.02567423,-0.032830052,0.009020675,-0.01039763,-0.0017943771,-0.0030168304,0.034803327,0.03547554,-0.023809379,0.04874634,0.0002198925,-0.014333333,-0.030661622,0.011883005,-0.034131113,0.039703984,0.026194653,0.0014813098,-0.025956126,-0.00034999842,-0.004678391,-0.061323244,0.045103375,-0.0017794692,0.031463943,-0.014886282,-0.03890166,0.009015255,0.01331417,-0.011460161,-0.017466716,0.03994251,-0.00018330023,0.0079256175,-0.002794566,0.025457386,0.008624936,-0.01974357,-0.001944812,0.012240796,0.009026096,0.04848613,-0.0034071482,-0.010267523,-0.0063806097,-0.011210791,0.025804335,-0.03059657,-0.020274835,0.013379223,-0.027864346,0.02426475,-0.016555974,0.0150922835,0.058807865,-0.017846191,-0.0053126574,-0.030509831,-0.0010415248,-0.03196268,0.009920575,0.015135652,-0.024915278,-0.029013615,0.021185577,-0.008272567,-0.028102873,0.006044503,0.022855269,-0.0065540844,0.052129094,0.010413893,0.03181089,-0.024915278,-0.04360716,-0.008700832,0.010365102,-0.005637922,0.0020288387,-0.014734493,-0.010413893,-0.008814674,0.0081966715,-0.004843734,0.0069877706,0.026693393,-0.004778681,-0.012349218,0.039226927,0.009091149,-0.0006220688,0.014029752,-0.023982853,-0.021575894,-0.016013866,-0.010153681,0.0044886535,0.00014306566,0.016133131,0.0019624305,0.0049873926,0.03090015,0.04497327,0.014138174,0.020231467,-0.00859241,0.01442007,-0.027408974,0.03989914,0.0055457638,0.04321684,0.009882627,-0.009091149,0.0022145107,-0.005572869,-0.015439233,-0.034543116,0.0079256175,0.018854512,-0.009568204,0.0019664965,0.029165404,0.025782652,0.01829072,-0.046708018,0.016848713,0.0050253402,-0.03528038,-0.005833081,0.006868507,0.0040414142,-0.02990267,0.0066137165,-0.018171456,-0.020231467,-0.007622037,0.01623071,0.012034795,-0.016902924,0.027213816,0.013726172,0.004784102,-0.047575388,0.029056983,0.0032092787,0.014105648,0.023245586,0.0036998864,-0.017867876,0.01356354,-0.017835349,0.03246142,0.00336649,0.0031116994,-0.005708396,0.004008888,-0.02376601,0.016360816,0.017260715,0.025630862,-0.012002269,0.018475037,-0.008830938,-0.017228188,0.00016458056,0.020762732,0.0064890315,-0.015233232,0.042327784,0.01627408,0.010755421,-0.048009075,0.01678366,-0.03272163,0.012381745,0.0025045385,-0.028363084,0.019635148,0.016447553,0.0031523574,-0.008765885,0.061626825,-0.006255925,0.015558496,0.012002269,0.01336838,0.018973777,-0.015851235,0.032938477,-0.028232979,-0.055511847,-0.0031360942,0.016902924,-0.011915531,0.003998046,0.032851737,-0.016263237,-0.008017776,0.008456883,0.02357085,-0.034391325,-0.0078117745,0.014864598,-0.015439233,0.0014257438,-0.05256278,-0.012295007,0.023787694,-0.006440242,0.010153681,0.03974735,0.034846697,-0.004415469,-0.017217347,0.007079929,-0.026650025,0.01943999,-0.003754097,-0.0043287314,0.0017794692,-0.025587492,0.038814925,-0.016870398,-0.024134643,-0.018334089,-0.035800803,0.01407312,0.017651033,-0.048876446,-0.034651536,-0.035605647,0.009101992,0.0006512071,0.040332828,-0.02311548,0.0113408975,-0.0052828416,-0.014094805,0.01758598,-0.03634291,-0.0026847892,0.013661119,0.008223777,-0.030943519,-0.01713061,0.005551185,0.03864145,0.026584972,0.018344931,0.0009900245,0.013877962,0.021228945,-0.005480711,-0.010511472,0.029989408,-0.00046926213,0.0015585602,-0.0056704488,-0.043910738,-0.009725415,0.035453856,-0.022172213,0.00031560843,-0.011611951,0.04319516,-0.054948054,0.07758648,0.018832829,0.0033475163,0.0036104387,-0.025587492,0.051261723,-0.002583144,-0.009324255,0.010928895,0.0073021934,0.012240796,-0.01155774,-0.010760842,-0.035258695,-0.03200605,0.011536056,0.014604387,-0.0010957356,0.008820095,0.023332324,-0.01869188,0.020632626,-0.0036944654,0.0163825,-0.0014989283,-0.03272163,-0.03265658,0.006873928,-0.01572113,-0.020513363,-0.021716842,0.007865986,-0.064055465,-0.028428137,0.03818608,-0.00406852,0.0010842158,-0.009562783,0.012934694,-0.029664144,-0.01130837,0.030444779,-0.0033258318,0.027799293,0.0119589,-0.015840393,0.003979072,0.02712708,-0.020079676,0.025934441,0.0058818706,-0.03536712,-0.005402105,0.00063833204,-0.014235754,0.01376954,-0.010641578,-0.009557362,0.004843734,0.013021432,0.03562733,-0.01060363,-0.01059821,0.0015355207,-0.025912758,0.012316692,-0.009107413,-0.040462933,-0.037166916,0.03612607,-0.017087242,0.014647755,-0.0058818706,0.036516387,0.008511093,-0.00668419,-0.030141199,-0.04597075,0.0033800427,0.0052936836,0.01512481,-0.016111447,-0.027842661,0.010625315,0.015298285,0.009980206,-0.013227433,0.0073780883,-0.01260943,0.0026874999,-0.022074634,-0.022291476,-0.0029870146,-0.032418054,-0.025544124,-0.020437468,-0.037904184,0.009817574,0.036451336,0.01632829,0.008120776,0.00038557424,-0.006863086,0.015005547,-0.0048898133,0.021163892,0.0013200328,-0.018561775,-0.015265758,0.004496785,-0.029122036,-0.006445663,0.01356354,0.0031930155,0.04241452,-0.0239178,0.026346443,-0.006022819,0.04321684,0.024655066,0.0029084089,-0.012002269,0.01552597,0.0071016136,0.0038598082,-0.025544124,0.016740292,0.02180358,0.01251185,0.012240796,0.0068793492,-0.002009865,0.026389813,-0.021326525,0.018681038,0.015666919,0.011075264,-0.020730205,-0.041330304,-0.0068956125,-0.0011025119,0.006196293,-0.0073672463,0.030813413,-0.013119011,0.0023839194,-0.0034505168,-0.021565052,-0.021283155,-0.037015125,0.0031171204,-0.0272355,0.01864851,-0.016794503,0.0007996091,-0.012934694,0.03120373,-0.030683307,0.019602621,-0.014214069,0.07051739,0.004185073,0.00035237012,-0.009129097,0.0054400526,0.002171142,0.031875946,0.016794503,-0.034022693,-0.059371658,0.042002518,0.030119514,0.0046865228,-0.010722894,-0.022020422,0.021001259,0.019114723,0.034131113,-0.008229198,0.010440998,-0.00036998864,-0.014289964,0.0034098586,-0.027300553,0.020860313,0.008912254,0.0026834342,-0.017358296,-0.010950579,-0.014409227,-0.0064781895,0.0064077154,0.016447553,0.022378214,0.0009717284,-0.012544377,0.000015130316,0.026541602,-0.009275466,0.003160489,-0.021272313,-0.023896117,-0.010262103,-0.0031171204,0.030878466,-0.0079256175,0.004914208,-0.014246595,-0.018973777,0.019906202,0.04180736,-0.0071883504,0.03872819,0.0062884516,-0.010180786,-0.008131619,-0.008771306,0.024741804,-0.03155068,0.0071829297,0.009850101,0.015179021,-0.0015517839,-0.0110915275,0.029100351,-0.012555219,0.001763206,0.032981843,0.0020830496,0.003949256,0.012782904,0.017596822,0.017054714,0.03410943,-0.004084783,-0.0025546835,0.008456883,-0.00088295824,-0.0018431669,0.013303327,0.01572113,-0.0051310514,0.021922844,0.037362076,-0.0013030919,-0.019374937,0.005079551,-0.013520171,-0.016165657,0.02979425,0.005109367,-0.01542839,0.0041660992,0.02160842,-0.046361066,-0.00864662,-0.0015355207,-0.0032797528,-0.03139889,0.009118254,0.016555974,0.0015517839,-0.006868507,0.017390821,-0.034543116,0.023744326,0.020155571,0.0026305786,-0.011199949,0.019732727,0.009091149,0.014430912,0.016566817,0.04623096,-0.036798283,-0.027170448,-0.035714068,-0.016501764,0.030162884,-0.0007135495,0.05347352,0.0119046895,-0.018952092,0.025175491,0.024785172,0.016024709,0.0037568077,-0.03196268,0.0076383003,0.02376601,-0.021120524,-0.00814246,-0.021738527,0.013162379,-0.021239787,-0.016772818,0.03462985,-0.018073877,0.029729197,-0.008836359,0.008413514,-0.036733232,-0.007822617,0.00044181795]},{"id":"interface-GuildFeature","type":"interface","source":"main","text":"Interface: GuildFeature","meta":{"url":"/docs/typedefs/GuildFeature"},"embedding":[-0.011866904,0.010157079,0.012754557,0.030500343,0.004547403,-0.015992308,-0.049533952,0.03623371,0.04802058,-0.016894512,0.028012004,-0.044120725,0.010950147,0.0318682,0.055034492,-0.0559658,-0.03969701,0.030791376,0.0037688878,0.0464781,0.03521509,0.05293905,0.011299388,0.034487505,-0.03728143,-0.0024701494,-0.022962566,0.027371729,0.0046638167,-0.035651643,0.04193797,-0.037397843,0.059778344,-0.012383488,0.0020263228,0.0039726114,0.015468447,0.024286771,-0.011808696,-0.017694855,-0.0023228135,0.01567217,-0.016079618,-0.015395688,-0.02971455,0.041006662,0.02642587,0.024999805,0.020721607,0.021230916,-0.0115322145,-0.024665115,-0.035331503,0.027066143,0.008701911,-0.00865098,-0.031577166,0.009698702,-0.002062702,0.042752866,-0.052706223,-0.03227565,0.021798432,0.0050567123,-0.01541024,-0.005256798,-0.058148555,0.014944586,0.0066319327,0.004889368,0.011801421,-0.041297697,-0.017243752,0.0051040053,0.014930034,0.002446503,-0.0036961294,0.028608624,0.0051040053,-0.01800044,-0.014704483,0.052560706,-0.081489466,-0.06274689,0.019935817,-0.023486428,-0.03003469,0.02582925,-0.028157521,-0.007566879,-0.005496901,-0.017345615,-0.060476825,-0.024752425,-0.006719243,-0.018233268,0.010826457,-0.003245027,-0.036350124,0.038561977,0.123049095,-0.035185985,-0.05439422,-0.047700442,0.07549417,-0.014173347,-0.021565605,0.02127457,-0.017723959,0.040162664,-0.09371289,0.018116854,-0.003998077,0.027648212,-0.010491769,-0.01110294,0.040599216,-0.021129055,0.057479177,-0.00022896176,-0.040511906,0.0025483647,-0.035826262,-0.038794808,0.00036561122,0.0032777681,-0.014617173,-0.023093533,-0.057712004,-0.01885899,0.00555147,-0.025538217,-0.000530682,0.0481952,-0.033381578,-0.009153013,-0.025625527,0.0021827535,-0.050145123,-0.03678667,-0.039929837,-0.003101329,0.06996453,0.030965997,-0.008694635,0.005395039,-0.033527095,0.021420088,0.0039726114,0.049359333,-0.055471044,0.03399275,-0.003616095,-0.03547702,-0.014158795,-0.012805487,-0.017811269,0.011561318,-0.028055659,-0.008389049,0.023995737,-0.0297,-0.022453258,0.010688216,-0.012892798,-0.00938584,-0.003998077,0.030151103,-0.081256635,0.0056678834,-0.015308378,-0.009807839,-0.015337481,0.012303454,0.02092533,-0.0025956577,-0.05096002,-0.029627241,-0.008272636,-0.04976678,0.042316314,0.007515948,-0.008709187,-0.04374238,-0.014609897,0.028259382,-0.030674962,-0.02222043,0.009938804,-0.016559824,-0.036466535,0.031897306,-0.003052217,0.028259382,0.051512983,-0.00814167,0.059370898,-0.0058752447,0.019921264,-0.014136967,-0.024243116,-0.006053503,0.058264967,-0.025771044,0.0057224524,-0.04150142,0.036408328,-0.0012505358,-0.022074914,0.059021655,0.0036997672,0.012878246,-0.029248897,-0.004572869,-0.030529447,0.012943729,-0.01695272,0.010186183,0.028026555,-0.0055660214,0.011182974,0.006435485,0.03504047,-0.00544597,0.044469964,0.03943508,0.0036415604,-0.022511465,-0.005773383,0.0043436796,-0.016021412,0.0054277806,-0.0025301753,-0.062397648,-0.03812543,0.039202254,-0.012630867,0.029278,0.018102303,-0.004398248,-0.060360413,-0.023428222,0.010935595,-0.019266438,-0.0072212764,-0.044091623,0.013263865,0.05157119,0.0016434315,0.0055332803,0.051687606,0.038183637,-0.008047084,-0.0068247425,0.01455169,0.0072612935,-0.0080034295,0.028113866,0.038009014,-0.03332337,0.0075814305,-0.013249314,-0.023952082,0.004925747,0.0053004534,-0.033963647,-0.01696727,0.0016661686,-0.044120725,0.055383734,0.006435485,0.0030867774,0.03658295,-0.021216365,-0.0011141138,-0.020634297,0.035447918,0.055587456,0.018655267,-0.043160312,-0.04080294,-0.015803136,0.011896007,0.02686242,-0.02297712,0.008076188,0.008199877,0.00086446136,0.04682734,0.031431653,-0.040832043,0.009873322,0.03864929,0.008359946,0.0055587455,0.01372952,0.009102082,0.012499902,0.04938844,0.03090779,0.04537217,0.013809554,-0.022569671,-0.020532435,-0.007908843,0.0071557937,0.03451661,-0.010302597,-0.007828809,-0.021769328,0.03090779,-0.052793533,-0.03469123,0.002628399,-0.029554483,-0.04225811,0.03899853,0.035942674,0.013351176,0.034254678,0.029059725,0.024912493,0.020270504,-0.037106812,0.050348848,-0.056285936,0.020998089,-0.011976041,-0.008236256,0.037834395,0.03771798,-0.030674962,-0.023428222,0.004365507,0.011983317,0.007857913,-0.0059807445,0.06204841,0.03547702,0.0004533761,-0.003528785,-0.027080696,-0.03195551,0.0008594592,0.025756491,0.003616095,0.012689074,0.037834395,-0.015541205,0.04598334,0.0035069573,0.0236756,0.033672612,0.0007412267,-0.044993825,-0.09097717,0.065191574,-0.019659333,-0.006766536,0.044819206,-0.014224277,0.017520236,-0.0054932632,0.029801862,-0.021987604,0.02823028,-0.0005465979,0.028113866,-0.014639,-0.0275609,-0.003245027,0.055500146,-0.0074868444,-0.033963647,-0.0026611404,0.027488142,-0.0058461414,0.021900294,0.030354826,-0.036961295,0.025931112,-0.014384346,0.041297697,-0.028012004,0.023137188,-0.047292992,0.003106786,0.020677952,-0.0679855,-0.009473151,0.043684173,-0.026003871,-0.009305806,-0.04915561,0.017913131,-0.034574818,0.02514532,0.013533072,0.0309951,-0.015657619,0.011939662,-0.014689932,0.0022336845,-0.0057224524,-0.03410916,0.0024628735,0.0019062714,0.027590005,0.03384723,0.0038853013,-0.035156883,-0.024344977,0.038503774,-0.005067626,0.0073413276,-0.03134434,-0.060651444,-0.0636782,0.031897306,0.029685449,0.018102303,0.045139343,0.031489857,-0.005129471,0.044295345,-0.00066028297,0.013685864,0.010077045,0.0036233708,-0.064958744,-0.077589616,0.022336844,0.014602621,0.012121558,0.014217001,-0.024126703,0.056082215,-0.04027908,-0.0007444099,0.0043145763,-0.032217443,0.0019626592,0.014246105,0.0014715397,0.01485,-0.0066901394,0.04441176,-0.026789661,0.021900294,-0.018989956,-0.04810789,0.009153013,-0.016545272,0.05096002,0.006159003,-0.03795081,0.015570309,0.061233513,-0.020183194,0.015031896,0.020066781,0.031140618,-0.037135914,0.05363753,-0.039988045,-0.0020408744,-0.006355451,0.008214429,0.009247599,0.04330583,-0.073398724,-0.0044782828,0.03116972,0.021027192,-0.007323138,0.0180732,0.018815335,0.009655046,0.013314797,-0.008432705,0.01390414,0.029190691,-0.048369817,-0.01704003,0.059458207,0.08253719,0.024781529,-0.0318391,-0.0464781,-0.019659333,0.027590005,-0.01239804,0.033963647,-0.01912092,0.03742695,-0.023399118,-0.0309951,-0.032246545,-0.001623423,-0.012798212,0.028434003,-0.04537217,-0.0098151155,0.018218717,0.020474229,0.016487066,-0.0010204372,-0.039464183,-0.02910338,-0.037485152,-0.046332583,-0.03166448,-0.010957423,-0.017811269,-0.024956148,-0.008367222,-0.05459794,0.052502498,-0.0032704924,0.012354385,-0.011830525,0.021740226,0.0070066387,-0.043451346,0.002586563,0.02299167,0.0047438513,-0.04252004,-0.032013718,-0.019964918,-0.014267933,-0.03477854,0.0121724885,0.03265399,-0.03605909,-0.012951004,-0.012325281,-0.010469941,0.013016487,-0.04141411,0.009742357,-0.01558486,-0.00486754,0.017811269,0.0023173566,0.019615678,-0.046361685,-0.012980108,0.0163561,-0.008418153,0.0039144047,-0.051280156,0.0026957006,-0.016632581,0.02892876,-0.0007189445,-0.021812983,0.004620162,-0.010608182,0.024868838,-0.006548261,-0.010993802,-0.015366585,-0.033789024,-0.03978432,-0.0133293485,0.020648848,0.032915924,-0.009058427,-0.017374719,0.013307521,0.03169358,-0.008359946,0.052386086,0.040744733,-0.019702988,0.010047942,0.027502695,0.030878687,0.024068495,-0.018291475,-0.025378147,0.005402315,0.028768692,-0.03402185,-0.052531604,-0.02265698,0.005649694,0.0037979912,0.011765041,-0.017083684,0.023195393,0.0027539073,0.011706835,0.007043018,-0.040832043,-0.012667246,0.026222145,-0.04441176,0.032479372,-0.017898578,-0.01532293,-0.04761313,-0.02772097,0.00035447007,0.0038380083,0.06164096,0.008934738,-0.010215286,0.022715189,-0.008658255,-0.014020554,-0.008803773,-0.05311367,-0.05113464,-0.025465459,-0.0150464475,-0.016472513,0.008098016,-0.019295542,-0.023282705,0.003385087,0.0010167994,0.0024319512,0.00060389517,0.018902646,-0.02297712,-0.024737874,0.0026665973,-0.018116854,0.002673873,-0.0063154334,-0.011699559,-0.035156883,-0.0361755,-0.034662127,0.010724596,0.007654189,0.03169358,-0.016850857,0.01919368,-0.03736874,0.003808905,-0.029336208,0.040948458,0.008578221,0.004685644,-0.007432276,-0.017694855,0.0094877025,-0.0091748405,0.01808775,0.018058648,-0.009138461,0.050930917,-0.043422244,-0.016326996,0.029889172,0.011241181,-0.0017225563,-0.026353111,-0.009058427,0.022787947,0.01808775,0.034574818,0.0053914012,0.011073836,0.015381137,-0.028783243,0.018946301,0.037485152,0.039813425,-0.030151103,0.02763366,0.008032533,-0.016297894,-0.019921264,-0.045663204,-0.029860068,0.007290397,0.01360583,0.007610534,-0.02910338,-0.016516168,0.010288045,-0.0075377757,0.0014669923,-0.004278197,0.042636454,-0.03323606,0.0065518986,0.015686722,0.002952174,-0.011925111,-0.0210854,-0.023122637,0.03795081,-0.009182117,-0.010535424,-0.06810191,0.0021900295,0.013569451,-0.0066573983,0.0006871126,-0.027168006,-0.011350319,-0.012165213,0.00078806496,0.02118726,0.009072979,-0.040686525,0.017200097,-0.029481724,0.0102516655,0.017592993,0.019863058,-0.0021718398,-0.012921901,0.05887614,-0.015090103,-0.02118726,0.0063845543,0.006588278,0.020255953,-0.04173425,0.040511906,-0.0066319327,0.034545712,-0.00989515,-0.030180207,-0.008898359,0.0053368323,0.022322293,0.017723959,0.03178089,0.01467538,0.019353747,-0.012441695,-0.03806722,-0.013111073,0.033585303,0.03253758,0.019150024,-0.01428976,-0.019615678,0.023631945,0.0025010717,0.033527095,-0.026338559,0.013074693,-0.01738927,0.012507178,-0.026222145,0.0219585,-0.006057141,-0.05355022,0.0054205046,-0.011604973,-0.022627879,0.040657423,0.015424792,0.0035633452,0.040570114,0.037659775,-0.01653072,0.047845956,-0.009473151,-0.008570946,0.03125703,0.022744292,0.036524743,-0.01800044,0.009102082,-0.0060498654,0.017534787,-0.015002793,-0.0067410707,-0.045081135,0.01166318,-0.01343121,0.032421164,-0.029161587,-0.01980485,-0.015424792,0.011306663,-0.018349681,0.006159003,0.006570088,0.02694973,-0.017112788,-0.019324645,0.03969701,-0.0023191758,0.02323905,-0.016661685,0.033614404,-0.009982459,-0.07863733,0.0008876531,-0.0089565655,-0.0075450516,0.0062208474,0.02892876,0.0055150907,0.042636454,-0.00609352,-0.036466535,-0.0002651136,-0.01800044,0.015482998,0.021827536,0.055325527,-0.013220211,-0.019339196,0.011990593,0.025523664,0.008570946,-0.003421466,-0.011983317,-0.0004542856,0.0017989527,0.0070648454,-0.0008840152,-0.015264723,-0.02548001,0.027444487,0.001598867,0.02272974,0.0027011575,-0.0027502694,0.022002155,0.019950368,0.0021500122,0.0018426077,0.017127339,0.005784297,0.004700196,-0.0114230765,0.012798212,-0.031286135,0.035826262,-0.028739588,0.008221705,0.027371729,0.008869255,-0.012878246,0.00695207,-0.0037506982,0.024417736,0.022598775,0.018640716,0.000051755134,-0.012019696,0.008418153,0.008163498,-0.015715826,-0.0067883637,0.014282484,0.011182974,-0.004845713,-0.031198824,0.029321656,-0.039260462,0.004802058,-0.018291475,-0.0049184714,-0.031140618,0.03795081,0.0046638167,0.00814167,0.0065628123,0.018262371,0.028070211,-0.039405975,-0.009516805,-0.015250172,0.039318666,0.014988241,0.030005585,0.009007496,-0.003848922,0.0024828822,-0.012252524,-0.010317149,0.013773175,-0.0110010775,-0.014144243,0.029830964,0.02565463,0.02591656,-0.002815752,-0.0029376224,0.0021209088,-0.0051258327,-0.018233268,0.0038234566,-0.028623175,0.03812543,-0.004358231,-0.011415801,-0.040511906,-0.06792729,-0.014100588,-0.002637494,0.022365948,0.0070612077,0.003990801,-0.0044346275,0.009276703,-0.0404537,0.00080898305,-0.0318391,-0.022773394,0.02290436,-0.007323138,-0.0063045197,0.022686085,0.002672054,-0.01687996,-0.0013214754,-0.024039391,0.018480647,0.00025101667,0.022264086,0.01567217,-0.010018839,-0.0009394935,-0.032828614,-0.034836747,-0.006719243,0.0057479176,-0.0056060385,-0.036699362,0.0075814305,-0.013867761,-0.034225576,-0.0020263228,0.008876531,-0.0033050526,-0.034371093,-0.027007937,-0.003976249,0.012128834,0.021580156,-0.0052859015,-0.01696727,-0.020605193,-0.0033214232,-0.03521509,-0.0024519598,0.005482349,0.031606272,0.03451661,0.0050930916,0.012943729,-0.009589564,0.04380059,-0.023981186,0.023573738,0.04027908,-0.014682655,-0.052648015,-0.0021172708,-0.016472513,0.002581106,-0.008789221,-0.0054277806,-0.052677117,0.00088037725,-0.019324645,-0.008010706,-0.023573738,0.02444684,0.031460755,-0.0019572023,0.018116854,0.042840175,-0.008127119,-0.025974767,0.00057933916,0.0027411745,0.04537217,-0.0043073003,0.04598334,-0.060243998,-0.0142024495,-0.010651837,0.030413033,0.04531396,-0.003050398,-0.004547403,-0.013955071,-0.040075354,0.014719035,-0.013169279,-0.016850857,0.021027192,0.014740862,0.009589564,-0.025261734,0.0066392086,-0.044062518,-0.0219585,-0.00248652,0.007472293,0.016108721,0.00826536,-0.01119025,0.03751426,0.021143606,0.0026120285,0.05139657,0.054859873,-0.0662975,-0.03684488,0.015366585,0.012034248,0.02290436,-0.0050385226,0.029379863,-0.024577806,-0.011561318,0.0054750736,-0.051949535,-0.016778098,-0.011081113,0.026062077,0.009873322,0.011233905,0.017578442,-0.011495835,-0.0012323463,-0.010600907,0.029234346,0.016661685,-0.008127119,0.017709408,0.004427352,0.026702352,0.032188337,-0.024141254,0.0053877635,-0.006060779,0.022176776,0.04097756,0.00059252663,0.016428858,0.0034196472,-0.0044309897,-0.0039289566,0.0042490936,-0.0018407889,-0.014173347,0.021070847,0.0040199044,0.002071797,0.0038889393,-0.005369574,-0.025188975,0.005264074,0.0019390128,-0.00021850273,0.0010195278,-0.0037798015,-0.015774032,0.0019644783,-0.016559824,0.026207594,-0.004183611,0.023064429,0.03253758,-0.004994868,-0.01041901,-0.005402315,0.011197526,0.0038416462,-0.0057079005,-0.01660348,0.0117504895,-0.0018362415,0.038096324,-0.01234711,-0.014973689,0.009203944,-0.0031231565,0.00032877724,0.0114085255,-0.018917197,0.019994022,0.037077706,-0.06391102,0.026556835,-0.017447477,-0.034662127,-0.010739148,0.01704003,-0.0018989956,-0.023908427,0.017811269,-0.048311614,-0.010768251,0.009793287,0.00639183,-0.0049584885,-0.0033123286,0.014930034,0.006988449,0.026571386,-0.020692503,0.024912493,-0.011182974,0.01514831,0.033556197,0.00023964814,0.0000693479,-0.022802498,-0.008250808,0.0029976482,0.0038816633,-0.0042563695,-0.008192602,-0.0025465458,-0.009669598,0.0004463276,-0.006399106,0.04470279,-0.04022087,0.01222342,-0.03341068,0.01868437,-0.02961269,0.013292969,-0.010353528,-0.03166448,0.034545712,0.038969427,-0.012318006,-0.023646496,-0.0012241609,0.02082347,-0.020168643,-0.018116854,0.009916977,-0.007093949,0.0009776917,-0.0043836967,-0.018145958,0.10477217,-0.007887016,0.00078897446,0.007170345,0.0008585497,0.01885899,-0.017796718,-0.008156222,0.004136318,0.0361755,-0.012107006,-0.0074504656,0.026309457,-0.010862837,0.0021772967,0.006955708,0.0148281725,0.000835358,0.039638806,-0.0006652851,0.010586355,-0.023224497,0.025072562,0.019572023,0.021667467,-0.02617849,0.03178089,0.015963204,0.027764626,0.023093533,-0.011597697,0.027371729,-0.0012832772,0.015177413,-0.006009848,-0.0027448125,0.028972415,-0.017854923,0.053230084,0.0010422649,-0.010353528,-0.031635374,-0.005820676,-0.007865189,-0.016254239,-0.019775746,-0.022031259,-0.011714111,0.0026083905,-0.028404899,-0.05008692,-0.0067992774,0.0010167994,-0.0097059775,0.011786869,-0.024985252,0.027866486,0.038503774,0.0028939673,-0.0005325009,-0.033672612,0.011583146,-0.027357178,0.00814167,0.009669598,0.04371328,0.012274351,0.0035578883,-0.007821534,0.034894954,0.017913131,-0.022016708,-0.017854923,0.022104017,-0.0013696778,-0.0052786255,-0.008163498,-0.030849583,-0.03460392,-0.01661803,0.00826536,-0.023209946,0.0015397507,0.027269868,-0.04959216,0.04787506,-0.0032723113,-0.022322293,0.007465017,0.014697207,0.0019662972,0.0062717786,-0.004227266,0.008832876,0.023166291,-0.014253381,0.012507178,0.022351395,-0.0396097,0.0011104759,-0.007923395,0.0080034295,-0.0042490936,0.0006643756,0.003608819,0.011648628,0.033585303,0.009524081,0.012419867,0.008039809,-0.023544636,-0.010586355,-0.020270504,-0.030616757,-0.0008708277,-0.034341987,0.035942674,-0.027240764,0.004041732,-0.036903087,0.03719412,0.028041108,0.002630218,0.020605193,-0.025931112,0.021158157,-0.00054205046,-0.01747658,0.041792456,0.020532435,-0.028113866,0.008927462,-0.027007937,0.0114230765,-0.020517884,0.0058679692,0.006999363,-0.017782165,-0.025727388,0.029088829,0.007184897,0.005307729,-0.0075232238,0.0014879103,-0.018946301,0.030878687,0.020968985,-0.02323905,-0.02910338,-0.0117359385,-0.018873543,-0.010528148,0.015221068,-0.052298773,-0.0013414839,-0.024417736,0.013300245,0.04656541,-0.013925968,-0.010899216,-0.0073158625,0.009516805,-0.010950147,-0.009247599,-0.0013905959,-0.00056660647,0.017098237,-0.00010987663,-0.006868398,0.011219353,0.0076760165,0.005678797,-0.023922978,-0.05587849,0.000020051206,-0.049708575,-0.0014615353,0.009182117,-0.012499902,-0.001852612,-0.035855364,-0.0051512984,0.038561977,0.017025478,0.008061636,-0.022569671,-0.005442332,-0.012056075,-0.023544636,-0.025858354,-0.016981823,-0.016050514,-0.03693219,-0.04676913,-0.019062715,-0.00779243,0.016763547,-0.0071157767,0.011510387,-0.019324645,-0.034400195,-0.032915924,0.033032335,-0.019150024,0.0067810877,-0.009866046,0.00050112384,0.063619986,-0.007334052,0.018626163,-0.0011595879,0.028186625,0.030849583,0.003859836,-0.00796705,0.016981823,0.01239804,0.017258305,-0.012121558,0.04659451,0.033177853,-0.011910559,-0.027793728,-0.04493562,0.0026102094,-0.00933491,0.0018426077,0.0030613118,-0.008869255,-0.0058024866,-0.007479569,0.009182117,-0.017287409,-0.004445541,-0.013285693,-0.025465459,-0.032508478,0.012230695,-0.035506126,0.03675757,-0.021594709,0.0028102952,-0.021318227,0.009414944,-0.008017981,0.03192641,0.014813621,-0.023370015,-0.0051040053,0.009102082,0.0012405316,0.032217443,-0.0034451126,0.017200097,-0.03108241,-0.027080696,-0.021012641,-0.020255953,-0.015206517,-0.021929396,0.001105019,0.00013664947,0.0019153663,-0.0370195,0.014355242,-0.02013954,-0.023995737,0.002724804,-0.0031722684,-0.01381683,0.0075086723,0.036350124,-0.013845934,0.020037677,-0.025843803,-0.004125404,0.0053732116,0.025974767,0.022700638,-0.014231553,0.00497304,0.0064718644,0.03538971,-0.000728494,0.014573518,0.010440838,-0.010477217,-0.011976041,0.025974767,0.024141254,0.003297777,0.00017643925,-0.009982459,-0.04173425,0.051018227,0.010666389,-0.013096522,-0.0077342233,0.0014478932,0.005780659,-0.009429495,-0.022104017,0.027662763,0.0002657957,0.008250808,0.028448554,-0.011466732,0.003190458,-0.011182974,-0.0019317368,0.023792014,0.02358829,-0.03227565,0.0019226421,0.011932386,0.020881675,0.026454972,0.057129934,0.005824314,0.009320358,0.0037907152,-0.003197734,0.013598555,-0.02469422,0.005042161,0.021463742,0.009960632,0.010899216,0.05008692,0.03667026,-0.020590642,-0.015119206,0.005951641,0.0020772538,0.010710044,0.02617849,-0.021929396,0.0044782828,0.0045837825,-0.033294268,-0.01269635,0.010971975,-0.011903282,-0.0016952719,-0.0062572267,0.013947795,-0.004190887,-0.00051703973,0.010549976,-0.05224057,0.021361882,-0.00062981533,0.008272636,-0.028594071,-0.004561955,-0.017010925,0.020561539,-0.038882118,0.018029545,-0.025116218,-0.0135476235,-0.014748138,0.0054605217,0.014857275,0.0117504895,0.03375992,-0.0072103627,-0.0055732974,0.018800784,0.035855364,-0.014806345,-0.009916977,-0.007654189,0.014769966,-0.01773851,0.006570088,-0.005671521,-0.014195174,-0.021711122,-0.03306144,0.009575012,0.031489857,-0.013147452,0.014806345,0.011685007,0.0022955292,-0.01252173,-0.023486428,0.01213611]},{"id":"interface-LiveKitRtcConnectionEvents","type":"interface","source":"main","text":"Interface: LiveKitRtcConnectionEvents\nDescription: LiveKit-specific: emitted when server sends leave (token expiry, server policy, etc.). Emitted before disconnect.","meta":{"url":"/docs/typedefs/LiveKitRtcConnectionEvents"},"embedding":[-0.011703183,0.0020989727,-0.0056972117,-0.020093136,-0.01753993,0.019451866,-0.017836815,0.006662086,0.02069878,0.0012632431,0.017136168,-0.0051509445,-0.012623525,0.0023260892,0.02255134,0.01088972,-0.017729936,0.06393702,-0.024558278,0.06251198,0.01892935,0.013181668,0.03752619,0.026862102,0.0072202287,0.002599223,-0.03253853,-0.02655334,-0.011364735,-0.025294552,0.078377485,-0.027170861,0.04137381,-0.034984857,0.02226633,0.049686573,0.0441289,0.024795786,-0.040305026,-0.01389419,-0.0022429617,-0.06863967,-0.0379537,0.039996266,-0.06156195,-0.0028426682,-0.0068045906,0.007974315,-0.013846689,0.023133233,-0.025057044,-0.041302558,-0.029830946,-0.00011921764,-0.009957503,-0.030804725,0.004016846,-0.0014339517,0.007368671,0.003865435,-0.0013664104,0.0042781043,0.013110415,-0.0066739614,0.021340052,-0.00093370146,-0.05301168,0.013490427,0.0025457838,0.029949699,0.012576023,0.01232664,-0.05334419,0.02652959,-0.011964441,-0.0096665565,-0.011697246,-0.02814464,-0.0026793818,-0.034937356,0.030187206,-0.01990313,-0.061656952,-0.07196478,-0.0017902129,-0.033346057,-0.076952435,-0.025104545,0.019606246,0.026363336,-0.038357466,0.00055665825,-0.004851091,-0.03633865,0.012083195,-0.027360866,0.05144413,-0.021411303,-0.016138636,0.027004605,0.015734874,-0.033251055,-0.05652679,-0.042513847,0.025009543,0.0145710865,-0.032657284,-0.002617036,-0.05837935,-0.028904665,-0.047454003,0.013324172,-0.013419175,0.018323705,-0.0023260892,-0.006816466,0.0137873115,-0.02036627,0.0347711,-0.025745815,-0.055671763,0.0098625,-0.010943159,-0.0029911103,0.009369671,-0.020556277,0.005311262,0.015877377,0.010664088,-0.008728402,0.07685743,0.027218362,0.018454334,0.01987938,-0.013846689,0.024261393,-0.021826942,-0.0069767833,-0.041207556,-0.05714431,-0.010224699,-0.00054849393,0.042988863,0.012083195,-0.033251055,0.05462673,-0.027052106,0.02432077,-0.009250918,-0.036457404,-0.010693776,0.02434452,-0.02524705,0.028690908,-0.027883383,0.028904665,0.006846154,-0.016815532,-0.021803191,0.009126226,-0.04515018,0.023620123,-0.0026214893,0.021090668,-0.072249785,-0.044342656,0.028928416,0.062084466,-0.04887905,0.006662086,0.007517113,-0.022313831,-0.022147577,0.029213425,-0.036172397,-0.039545003,0.024463275,0.026482088,-0.009595304,-0.032966044,0.038879983,0.016946161,-0.04037628,-0.030424714,-0.015984256,-0.013300422,-0.015497366,0.03249103,-0.034961108,-0.04075629,0.0095003005,0.021838816,-0.032704785,0.038666226,0.040257525,0.01689866,-0.027313365,-0.033916075,-0.008395891,-0.047192745,0.01276603,-0.02005751,0.025223298,-0.07614491,0.03821496,-0.0050529726,0.017397426,0.027645875,0.03002095,-0.009642805,0.044390157,0.046788983,-0.0020915505,-0.0052311034,-0.028952166,0.069209695,0.019368738,0.005860498,0.0038802791,-0.021209422,-0.009096538,-0.017896192,0.05647929,0.008360265,0.02398826,0.004203883,0.0028055576,-0.013632932,-0.028477151,-0.056954302,-0.046622727,0.0076774308,-0.014891721,-0.04139756,0.006383015,-0.000073896386,-0.015758624,-0.03600614,0.011269731,-0.0058308095,-0.036789916,-0.025128296,-0.027550872,0.024890788,-0.0051509445,-0.030472215,0.018525587,0.010082195,-0.036196146,-0.028809663,0.047145244,0.018169325,0.036718663,0.00286345,0.023038229,0.04833278,0.0066917744,-0.0012483989,0.013229169,-0.022016948,0.022301957,-0.06184696,-0.012706652,-0.017314298,-0.011156916,-0.050541602,0.021921944,0.0013537928,-0.020710656,0.045268934,-0.017183669,-0.029142173,-0.0034705787,0.0072083534,-0.05087411,0.010331578,0.028643407,0.010675963,0.011887251,-0.005177664,-0.042466346,-0.014404831,0.014856095,-0.008069318,-0.011709121,0.018869972,-0.0049935956,0.015651746,0.033037297,0.003035643,0.012801656,-0.014784844,0.029284677,-0.0016313798,0.027527122,0.010895657,0.028358398,-0.0057773707,-0.008734339,-0.017729936,-0.007249917,-0.024035761,-0.03852372,-0.060136903,0.020140639,0.053629197,0.075859904,-0.005857529,0.015010475,-0.0011029255,0.0057179937,0.018941225,-0.051871642,-0.00654927,-0.012920409,0.022076324,0.014392956,0.03638615,0.03151725,-0.0009121773,0.031184739,-0.049116556,-0.0016610682,0.001318909,0.0599469,0.0034171394,0.021435054,-0.015829876,0.027170861,0.08108507,-0.01862059,-0.047501504,-0.0020351426,0.005940657,0.03759744,-0.009001535,-0.012884783,-0.0049609384,0.008419641,0.02657709,0.048475284,0.019475617,-0.011329109,-0.018608714,0.043178868,-0.0061514447,0.012991661,-0.024154514,-0.018763095,0.056004275,-0.0379537,-0.0014324673,0.000146865,-0.05809434,-0.029237175,-0.045221433,0.073199816,-0.014250452,0.0047293687,0.05652679,-0.036718663,0.016958037,0.015105478,-0.03541237,-0.006341451,-0.00734492,-0.07823498,0.0020529556,-0.0037051174,-0.104693316,0.018632466,-0.021245047,-0.005216259,0.012504771,-0.018537462,-0.011287545,-0.014179199,0.010652212,0.04291761,0.038476218,0.034224834,0.013668558,-0.008971847,-0.004361232,0.040257525,0.036481157,-0.07391234,0.007903063,-0.028500903,0.010711589,0.048166525,-0.0027625093,0.025294552,-0.03446234,-0.009518114,-0.014761092,0.0045542065,0.03249103,0.0087580895,-0.030448465,0.0032271335,0.013917941,0.019677497,0.022052573,-0.001551221,0.016863033,0.013502303,0.021280674,0.041207556,0.0086809,0.03664741,-0.0057922145,0.019190608,-0.033726066,0.036504906,-0.038024954,-0.030068452,-0.02242071,0.041920077,0.021233173,0.0057922145,-0.0013686371,-0.007095537,0.01278978,-0.011245981,-0.018573089,0.02591207,0.009613117,0.03857122,-0.094528,0.0103672035,-0.00096784317,0.04859404,0.03693242,0.0032805726,-0.02778838,0.02902342,-0.0026986792,-0.055006742,0.010212824,0.02118567,0.008152446,0.0027001637,0.064507045,-0.051349126,-0.024700783,-0.023121357,-0.061989464,0.027550872,0.03227727,-0.025223298,0.02624458,0.00757649,0.041112553,-0.041848827,-0.05334419,0.010949097,0.033583563,0.022480087,0.020045634,-0.03952125,0.012540397,0.022278206,0.049449068,-0.017314298,-0.00161802,-0.019534994,-0.021043167,-0.021126295,-0.0019579527,0.015544867,-0.009440924,0.037502438,0.040542535,-0.0022429617,0.013799187,0.06517206,-0.06023191,-0.0042098206,-0.0020885817,0.012457269,0.021672562,-0.002177647,-0.008384015,0.0008171743,0.040898796,0.0126354005,0.012124759,-0.0599469,0.017575556,-0.003806058,-0.007784309,-0.0568593,-0.011821937,0.057999335,0.02147068,0.000014589085,-0.02873841,0.04044753,-0.0284534,-0.0012120305,-0.02226633,0.015889253,0.022646341,0.00891247,0.06906719,-0.013822937,0.0037199615,0.0023364802,-0.06099193,0.011774436,-0.032348525,-0.028002137,-0.03664741,-0.05087411,-0.019534994,-0.056669295,-0.021019416,-0.035483625,-0.012730403,-0.021518182,0.0031143173,0.02306198,0.010230636,0.0054507977,0.01810995,0.008805592,0.015295484,0.00932217,-0.046693977,0.034011077,-0.0034972983,-0.0123860175,0.033061046,-0.0028812631,0.018086199,0.013383549,-0.0038476218,0.034984857,0.0003750021,0.003978251,0.030472215,-0.00032954168,-0.016114885,-0.03405858,0.010931283,0.0030608783,-0.01672053,0.015319236,0.028334647,0.006133632,-0.033726066,0.00426326,0.0035269868,0.038024954,-0.01052752,0.008942158,-0.033013545,-0.0057387757,0.019499367,-0.025698313,-0.021921944,0.005596271,-0.025745815,-0.0347711,0.011857563,0.011489427,0.0057209623,-0.024558278,0.013751686,0.018038696,0.020770032,-0.015497366,0.030092202,0.030685972,-0.042157587,-0.018394958,-0.0020099075,0.047145244,-0.010848156,0.015081728,-0.0041029425,-0.015509241,0.019713124,-0.060374413,-0.037217427,0.017278673,-0.027930884,-0.047810264,0.036861166,-0.007570552,0.019356864,-0.0109015955,0.03983001,-0.019938756,0.0009403813,0.01278978,0.02683835,0.007095537,-0.017421177,-0.016506772,0.037027422,-0.045292683,-0.010129696,0.025104545,0.029949699,0.02714711,-0.030733474,-0.04291761,0.0074874246,0.028239645,-0.008146508,0.020734407,-0.0331798,-0.0059139375,0.007042098,-0.017171795,-0.0088827815,-0.0046135834,0.034296088,-0.007891187,0.011287545,-0.033916075,0.0017887285,-0.002458203,0.06754714,-0.024439525,-0.019998133,0.010883782,0.007077724,0.030709723,-0.0025071888,-0.0035537062,-0.023180734,-0.023073856,-0.0080990065,0.0362674,-0.0038387154,0.0027580562,-0.019772502,-0.004969845,0.0014732889,0.012682902,-0.01546174,0.023121357,0.0021123325,-0.00011866099,0.031350993,0.02619708,0.015877377,0.00916779,-0.041492563,0.04291761,-0.01848996,0.009446861,-0.038286213,0.008378078,0.045886453,0.04358263,0.016364269,0.026315833,-0.004542331,0.017373675,0.036172397,0.010111882,0.012469145,0.032609783,0.0145710865,-0.0019074823,-0.008906532,-0.0035744882,0.046385217,0.0015497366,-0.026482088,0.031826008,-0.022836348,-0.010301889,0.0043671695,-0.0014881331,-0.020627528,0.028595906,0.0037288682,-0.03189726,-0.034628596,-0.017801188,-0.010592835,0.06612209,-0.05776183,-0.006608647,0.016174262,0.009049037,0.0064423913,0.026862102,0.019986259,-0.020295018,-0.016506772,0.016886786,-0.0011148009,0.02555581,0.04550644,-0.0015022351,0.016067384,-0.027384616,0.0150223505,-0.00742211,0.0059673763,0.04325012,-0.04013877,-0.007968377,-0.036718663,-0.015794251,0.008467143,-0.015224232,0.037811197,-0.002082644,-0.005373608,-0.04132631,-0.0070005343,0.011536928,-0.019024352,-0.004857029,0.034011077,-0.0076358668,0.0035655817,0.012611649,0.0041029425,-0.011311295,0.009951565,-0.016554274,0.014986725,-0.008752152,0.009672494,0.033892322,-0.0026333646,-0.009809061,-0.01594863,-0.06854467,-0.00043419344,-0.029427182,-0.0045453003,0.01985563,0.0028367306,0.024368271,0.0047917143,0.0052400096,0.03439109,0.006507706,0.021838816,-0.0117684975,-0.017991195,0.030163456,0.0070599113,-0.034272335,0.030044701,0.020603778,0.024071388,0.017623058,-0.040233776,-0.01957062,-0.0023364802,0.01034939,-0.0070005343,0.027265863,0.013074789,0.0082712,-0.0016655215,-0.047454003,-0.04676523,0.024772035,0.030424714,-0.020473149,-0.016993662,0.0036249585,0.00037444546,0.035151113,-0.02524705,-0.037929952,0.0040020016,0.022254454,-0.0024864068,-0.0036635536,-0.03353606,0.001998032,-0.058616858,0.009506239,-0.012504771,-0.02098379,-0.0045007677,-0.036196146,0.0011029255,-0.009429049,-0.008342451,0.00957749,-0.03564988,0.020318769,0.0059317504,-0.008538395,-0.08607273,-0.016958037,-0.026980855,0.0030608783,0.014214825,-0.010402829,-0.030662222,0.03187351,0.012184136,-0.06289199,0.02743212,-0.017456803,0.022052573,-0.044983923,0.0040702852,-0.010373141,0.017611183,0.031992264,0.02553206,0.016839283,0.005617053,0.010385016,-0.047905266,0.08654774,0.02524705,0.021541933,-0.040257525,-0.034319837,0.01623364,0.015141104,0.030377213,0.0022711656,-0.013609181,-0.017480554,0.032989796,0.030092202,-0.0052993866,0.00044347107,-0.003295417,-0.029498434,0.03814371,-0.007962439,-0.0020945196,0.0008416673,-0.002683835,0.02966469,-0.031849757,0.014167324,-0.013490427,-0.012706652,-0.00017451236,0.0109015955,0.031445995,-0.03289479,0.0057150247,0.031754754,-0.002458203,-0.0012602743,0.005064848,-0.0019534994,0.012338515,0.00033213943,-0.008663087,-0.022990728,-0.015818002,-0.017908067,-0.02971219,-0.012017881,-0.0039634067,-0.006187071,0.0045245183,0.019523118,0.037169926,-0.0039159055,-0.000010796851,0.028524654,-0.010165322,0.0039307494,0.030733474,0.011798186,-0.010907533,0.0031143173,0.030614719,0.0116022425,0.03420108,-0.010960972,0.016601777,-0.0052251653,0.010058444,-0.012742278,0.005441891,-0.03161225,0.018026821,0.015829876,0.007903063,0.0059258128,-0.036908668,0.01815745,0.0059495633,0.0007770949,0.0065373946,-0.032681037,0.00963093,-0.022705719,-0.01828808,0.006187071,0.047287747,0.0410413,0.037739944,0.012136634,-0.013537928,-0.046741482,0.0072202287,0.06479205,-0.017148044,-0.011085664,0.019475617,0.005768464,0.011192542,-0.0045274873,-0.04044753,0.046028957,0.0016224732,0.0064483294,0.0012996115,0.027954636,0.012154448,-0.0102840755,0.0033726068,0.033037297,0.006846154,-0.03633865,0.031327244,-0.021090668,-0.026292082,-0.038974985,0.043060113,0.013110415,0.027978387,0.023608247,-0.016803658,0.016186137,-0.019606246,-0.0021449898,0.015509241,-0.007992128,0.009951565,0.019736875,-0.005424078,-0.024487026,0.004604677,-0.0073271072,-0.016352393,-0.019143106,-0.0015749717,0.024035761,0.03196851,-0.011465675,0.024890788,0.0013575039,0.02175569,0.077569954,-0.008384015,0.006798653,0.019736875,0.017777437,-0.022717595,-0.0031291617,-0.029569687,0.019309362,0.008354327,0.0053171995,-0.0002089324,0.007154914,-0.041848827,0.011631931,0.0042187274,0.004969845,-0.00047798388,0.0033726068,0.033108547,0.041207556,-0.034676097,-0.027907133,0.048356533,-0.011186604,0.020948164,0.016578024,-0.026885852,0.021577558,0.03415358,0.026909603,0.0118931895,0.013597306,-0.042775106,-0.032989796,0.030234708,0.014523585,-0.029450933,0.016613651,0.010610648,0.04256135,0.022943227,0.0072855433,0.025983322,-0.028049638,0.015996132,0.00891247,0.05619428,-0.0041801324,-0.029308429,0.0145710865,0.008110882,-0.003521049,0.027052106,0.014309828,-0.019214358,-0.01941624,-0.012908534,0.0017293517,-0.0070183473,-0.02416639,0.047477752,0.019321237,0.0037971516,0.0060594105,0.0052667293,0.0010509707,-0.031469747,0.00047019066,0.020449398,-0.024510777,-0.022040699,-0.0026942259,0.023192609,-0.021791315,0.021458805,-0.005254854,0.0039901263,0.024285143,0.008479019,-0.011804123,0.0068224035,0.008568084,-0.005124225,-0.0033429184,0.007879312,0.036837418,0.007629929,0.025175797,0.0063295756,-0.008752152,-0.0015452834,0.01672053,-0.014737342,-0.012291014,0.023073856,0.016756156,0.021518182,0.00067504094,-0.02067503,-0.010212824,0.009749684,-0.02085316,-0.017575556,0.0048629665,-0.017765563,0.04355888,0.024130763,0.011964441,0.018240578,0.035697382,0.023822004,0.0011333562,-0.016150512,-0.013300422,0.008995597,0.011002536,0.013419175,0.008520583,-0.038879983,-0.03531737,-0.036481157,-0.007172727,0.002167256,-0.009381548,0.008223698,-0.026102077,-0.0019475616,-0.013383549,-0.021945694,0.009357796,0.027004605,-0.030377213,-0.0022221797,-0.011317234,0.007618054,0.04013877,-0.004533425,-0.029925948,-0.0299972,-0.006127694,-0.030970981,-0.0031380681,-0.04320262,0.02018814,0.02383388,0.024700783,0.026078327,0.029308429,-0.040661287,-0.00015623542,0.013668558,0.02776463,-0.01846621,0.016328642,0.020948164,-0.042727605,-0.004848122,-0.0041207555,-0.009268731,0.015877377,0.006077224,0.00031673856,0.014107947,0.04175382,0.002958453,-0.026078327,0.014499834,-0.0029347022,-0.0057328376,-0.047264,0.007410235,0.00067058764,0.033322304,0.02350137,-0.009007473,-0.016779907,-0.01990313,0.018869972,-0.029213425,-0.033939824,-0.012647276,-0.021197546,0.035697382,-0.012599774,0.021340052,-0.02588832,-0.009921877,0.0049965647,0.061039433,0.0027907134,0.009892188,-0.015734874,0.03218227,0.006145507,0.008021817,0.04838028,-0.029094672,0.02275322,0.0012298436,0.019867504,0.037312433,-0.0055754893,-0.0035655817,-0.003538862,0.024795786,-0.012397893,0.010450331,-0.0026155517,0.03600614,0.025413305,0.008473081,-0.021613184,-0.03002095,-0.0173618,-0.0028085264,0.015651746,0.01389419,0.01129942,0.005216259,-0.004316699,-0.042727605,0.022349458,-0.01217226,-0.009690307,0.005055941,0.019998133,0.029807193,0.0056972117,0.019511243,-0.046480224,-0.013834814,-0.01738555,-0.016756156,-0.0051865703,0.0055072056,-0.039640006,-0.009482488,0.021411303,-0.0013901612,-0.019629996,0.0043315436,0.008775903,-0.011424112,-0.014155448,-0.009755622,0.028310897,-0.0062701986,-0.005094536,-0.027075857,0.009274669,0.028500903,-0.007618054,0.03688492,0.05177664,-0.013407299,0.009375609,-0.001410201,0.024308896,0.04959157,-0.027859632,-0.011008474,-0.016138636,-0.04044753,-0.020556277,-0.009310295,-0.030044701,-0.016958037,-0.019356864,-0.021530056,0.012314765,-0.018917475,0.047240246,-0.034581095,0.024558278,0.0046848357,-0.026434587,0.00855027,-0.046836484,0.012035694,-0.0076774308,-0.005688305,-0.013561679,-0.0009351859,0.00013248467,0.03505611,0.016863033,-0.049116556,-0.00020652021,0.006353326,-0.034984857,0.02005751,0.008983722,0.0061573824,-0.00071994466,0.01217226,-0.012492896,-0.029450933,0.03987751,-0.030472215,-0.03814371,0.022195078,0.018347455,0.016399894,0.009684369,0.021553807,-0.021387553,-0.026387086,0.020128762,0.034177333,0.021565683,-0.007849623,-0.02588832,-0.0071608517,0.017587433,-0.00005047035,0.02553206,0.002121239,0.0027446963,-0.0037941826,-0.0051865703,-0.02147068,-0.007024285,0.008948096,0.0012832829,-0.013134166,-0.030970981,-0.0088827815,-0.011471613,0.044271402,0.0078021223,-0.009779372,-0.0009722964,0.03830996,0.019546868,0.026339585,-0.020568151,0.004491861,0.008971847,-0.013419175,-0.009512176,0.0014628979,0.0026778972,0.018964976,-0.046337716,0.031137235,-0.009779372,0.039236244,0.042466346,-0.011548803,-0.008205885,-0.011412237,-0.0075111752,0.0068936558,-0.00742211,-0.024415772,0.0005867178,0.016673028,-0.019534994,-0.041563816,0.0009314748,-0.013799187,-0.0051806327,0.057904333,-0.022705719,0.009672494,0.008336514,-0.0065552075,-0.021043167,-0.049164057,-0.011911002,0.0033785445,0.018893722,0.0017620089,-0.009945627,-0.019915005,-0.026007073,0.007707119,-0.025793318,0.00860371,0.0118100615,0.0001783162,0.018418709,0.004076223,0.005293449,0.020425647,0.0081405705,0.018478084,-0.027527122,-0.008283075,0.014428582,-0.03420108,-0.015426113,0.04393889,0.01882247,0.0009967894,0.02714711,-0.006299887,0.009898126,-0.031849757,0.017611183,-0.005406265,-0.038428716,0.023453867,0.033274803,0.002835246,0.007879312,-0.023311364,-0.010693776,-0.0046581165,-0.00929842,-0.00536767,-0.04949657,0.054436725,-0.02087691,-0.011186604,0.017563682,-0.020295018,-0.039188743,0.016494898,0.014096071,-0.003731837,0.0076774308,0.012267264,0.00023082762,0.000191676,0.026054576,-0.03567363,0.008538395,0.045268934,-0.0034022953,-0.010753153,-0.008360265,0.008205885,0.025389554,-0.0017620089,0.014962974,-0.033417307,-0.00019891254,-0.00021412788,0.0053023556,0.026410837,-0.013704184,-0.01897685,-0.0022385083,0.0028218862,0.0025769565,-0.012694777,-0.017159918,0.028287146,0.008853093,0.0029005606,0.010100007,-0.025389554,0.0027417275,0.006053473,0.03947375,0.009019348,0.034961108,-0.0064483294,0.021541933,-0.020770032,0.03945,0.006353326,0.00011968153,0.0024151546,-0.026149578,0.016993662,-0.03408233,-0.034794852,0.03215852,-0.0018688873,-0.0021242078,-0.013300422,-0.0054270467,0.0009893673,-0.012445394,0.04068504,-0.0142385755,0.0034676099,-0.006721463,0.0049757827,-0.015319236,0.028358398,0.0074993,-0.022824474,-0.0034527655,0.0019995165,0.0050885985,-0.0044443593,-0.004189039,0.009880313,0.04047128,0.0028411837,0.014392956,-0.0055368943,-0.023156984,-0.025080794,0.0055487696,0.0029168893,0.010711589,-0.03752619,-0.0056081465,-0.0017872441,0.010610648,0.046575226,-0.022634467,0.009120289,0.014749217,-0.0023156984,-0.026862102,0.0009856562,-0.030757224,0.033916075,0.009381548,0.015247983,0.016043633,0.053724203,0.034272335,0.0069589703,-0.010842218,0.0012817984,-0.031707253,-0.0065255193,0.010788779,0.0012773451,-0.029118422,0.013763561,-0.0095834285,-0.032704785,-0.000545154,0.0063770767,-0.031731006,-0.03880873,0.0006679899,-0.038428716,-0.00078451703,-0.024415772,-0.008093068,0.005067817,0.049401566,-0.019534994,-0.025104545,0.019273736,0.003731837,0.01641177,-0.02809714,0.028263396,-0.0042216964,0.012611649,0.00434045,0.04296511,0.004471079,-0.037003674,0.0031529122,-0.02971219,-0.017278673,0.020425647,0.029165924,-0.00038001203,-0.0033933888,-0.004156382,-0.002493829,-0.0028753255,0.012777905,0.0032301024,-0.031089734,-0.021767564,0.0044384217,0.04479392,-0.023382615,0.018881848,-0.009910001,0.010545334,-0.011287545,0.0028307927,0.015093603,-0.0049579693]},{"id":"interface-MessageAttachmentMeta","type":"interface","source":"main","text":"Interface: MessageAttachmentMeta\nDescription: Attachment metadata for file uploads (id matches FormData index).\nProperties: description: string | null, filename: string, flags: number, id: number, title: string | null","meta":{"url":"/docs/typedefs/MessageAttachmentMeta"},"embedding":[-0.011934019,0.03364479,0.012518498,0.0030392958,-0.0328584,-0.04616329,-0.0033155954,-0.007247552,-0.017162457,0.0063283243,-0.012646021,-0.024165591,0.06312384,-0.023400454,0.0020137993,0.020169873,-0.017810699,0.043612834,-0.00022150463,0.04926635,0.027119871,0.006349578,0.037321705,0.028310085,0.0228266,-0.0016484992,-0.020701218,0.008283676,0.018660853,0.014824538,0.04743852,-0.023846783,0.063378885,0.026312226,0.00270322,0.02801253,0.040509775,-0.016376067,-0.038703203,-0.026439749,-0.032709625,0.014622627,0.005541933,0.019649154,-0.026120942,0.008910663,0.05105167,0.05606757,0.014888299,0.033942346,-0.005621635,0.008820334,0.032327056,0.028968953,-0.0065355487,0.028883938,0.008273048,0.037938066,0.003310282,0.0023844126,-0.031221857,-0.0049016615,-0.021891432,-0.015047703,-0.035387605,-0.0015820811,-0.06299631,0.05049907,0.046800908,-0.010749118,0.07298561,0.014877672,-0.01519648,0.0467584,-0.007858599,-0.04308149,-0.015207106,-0.017513145,-0.023336692,-0.036046475,-0.01770443,0.053432096,-0.058320474,-0.014346327,-0.025185773,0.043782864,-0.04204005,-0.054239742,-0.048373688,0.03863944,-0.07642873,-0.008092391,-0.08722567,-0.011710853,-0.0025199058,-0.0014479163,-0.026397241,0.007438836,-0.035833936,-0.013857489,0.022847854,-0.009750188,-0.022359015,-0.022911616,-0.018554583,-0.034048617,0.0009046156,0.0050557517,0.024250606,0.013464293,-0.015695944,0.013464293,0.0019354258,0.026014673,0.0040329117,-0.02722614,-0.0029808478,0.07698133,0.019234706,-0.012401602,-0.048118643,-0.0077310763,0.013857489,0.007863913,-0.0096651735,0.0005964353,0.0067055793,0.016163528,-0.08918102,0.0046413024,0.04743852,0.02187018,0.014388834,-0.042125065,-0.0044048536,-0.0155471675,0.017194338,0.0093941875,-0.0545798,-0.029776597,0.016652366,-0.010111503,0.015334629,0.0013363338,-0.026737303,0.0037725526,-0.037725527,0.07574861,0.020403665,-0.02527079,-0.007242238,-0.0028745788,-0.02605718,0.009452635,0.024845712,-0.042953964,0.024165591,-0.0358977,0.0049813637,-0.020244261,0.017831953,-0.0573428,-0.012635395,-0.0081880335,0.013230502,0.010265593,0.026907332,0.001991217,-0.0140700275,-0.0055047385,0.052922007,-0.023017885,-0.0010905865,-0.012688529,-0.013230502,0.02588715,0.06057338,-0.03434617,-0.024484398,0.03640779,0.03696039,0.010276221,0.0028028472,-0.0031721322,-0.038065586,-0.012061541,0.0093038585,0.028650146,0.03668409,0.0144313425,-0.020265516,0.007300686,0.033198465,0.0005001289,0.0055259927,-0.012816052,0.013421786,0.005045125,-0.002323308,-0.035642654,-0.00086011545,0.005289544,0.044803046,-0.001435961,-0.036173996,0.010409057,-0.004080733,-0.006886237,-0.046928428,-0.026652288,0.026758555,-0.0035493874,0.008267735,0.026461003,0.007704509,-0.006009517,-0.002567727,0.011774614,-0.020244261,-0.008427138,-0.019224077,0.011678972,0.07987185,-0.028968953,-0.022082716,0.020616204,-0.04019097,0.03509005,-0.031604428,-0.043230265,-0.02527079,0.008235854,0.0017813356,-0.048543718,-0.044420477,-0.0038017766,-0.031370636,-0.014750149,0.024675682,0.007646061,0.0058288593,0.01158333,-0.011020104,0.029755345,-0.034622468,0.013899997,0.0062964433,0.0336873,0.022720331,0.022422777,0.030307943,-0.021540744,0.015217734,0.00092122017,0.0107809985,-0.016822396,-0.043952893,0.041997544,0.037853047,0.01979793,0.00041079643,-0.024994489,-0.044803046,0.005015901,0.0039213295,0.031646933,0.05534494,0.043612834,-0.020244261,0.0059191883,0.03111559,0.002893176,0.040339746,0.051816806,-0.01450573,0.0233792,-0.021678895,-0.009096634,0.0037725526,0.0077948375,0.025908403,-0.025313297,-0.021806417,0.044803046,-0.04633332,0.010462192,0.03279464,0.0016617829,0.042465128,0.032645863,0.027566202,-0.02505825,0.048926286,-0.03585519,-0.023081645,0.054749835,0.031689443,-0.020244261,0.03876696,-0.017045561,0.019744797,-0.056917723,0.04671589,-0.04654586,-0.0008063167,-0.011370792,0.00953765,0.00006118775,-0.007800151,-0.027714979,0.027991278,-0.01867148,-0.07587613,-0.0013682145,-0.059255645,0.009994607,0.013358024,0.029500298,-0.018118879,0.051859315,0.011020104,0.013347398,0.0118064955,-0.03795932,-0.013985012,-0.009218844,-0.032157026,-0.009436695,-0.0021851582,0.061551057,0.03798057,0.01773631,0.008756572,-0.040382255,0.06524922,-0.008273048,-0.016886158,0.05891558,0.0022954124,0.073793255,0.030966813,-0.013591817,-0.022954123,0.02633348,-0.0059935767,-0.051349223,-0.049733933,0.0021678894,0.014569492,-0.019967962,-0.03880947,-0.027693724,-0.021636385,-0.008389944,-0.036556564,-0.022316508,0.0075822994,-0.058192953,-0.029755345,-0.0039505535,-0.02588715,0.0501165,-0.004078076,-0.00052370736,0.0011291091,-0.031986997,-0.031370636,-0.015589675,-0.00832087,-0.060063288,-0.0023618306,0.0037141046,-0.046460845,0.0190753,0.0016989771,0.023039138,0.004638646,-0.020594949,-0.016790517,-0.017162457,0.038065586,0.07200793,-0.035876445,-0.003331536,0.026843572,-0.019617274,-0.048288673,0.01361307,-0.035111308,-0.0049122884,0.028883938,0.032093264,-0.028097548,0.0071147154,-0.03364479,0.053304575,0.039383322,-0.027885009,-0.0011775943,-0.04947889,0.0063761454,-0.01653547,-0.001180251,0.054069713,0.0018570523,-0.023315437,-0.008586543,0.007959555,0.05334708,-0.009309172,0.017991357,-0.007975495,0.021434475,0.04777858,-0.005834173,0.004877751,-0.00020622845,-0.012762917,0.037640512,0.01602538,-0.02733241,0.06380396,0.016418574,-0.0014718268,-0.008544034,-0.000478543,0.024293113,-0.06860732,0.007879853,-0.020382412,-0.05589754,0.016471708,0.020244261,-0.03389984,0.041317422,-0.033921093,0.019372854,-0.0019447244,-0.020807488,0.02155137,-0.0037273883,-0.005180618,0.0035095366,0.0023007258,-0.0233792,0.008522781,-0.0023790991,0.028097548,0.026354734,-0.007959555,-0.051689286,0.03608898,-0.046248306,-0.0076407474,0.002824101,0.009457949,-0.06184861,-0.019022167,0.056195095,-0.022125224,-0.027311156,0.020531187,0.018820256,0.02688608,-0.012688529,-0.03946834,-0.034792498,0.0021785162,-0.0019792619,-0.025695866,0.018299537,0.019819185,0.016376067,0.021540744,0.0048379004,-0.040339746,0.029436538,-0.080722,0.01492018,0.009234783,-0.0031375948,-0.013985012,-0.029245254,-0.030052898,-0.07064769,0.11681098,0.025185773,0.039064515,0.06452659,-0.0007511896,-0.056960233,0.0034218647,0.041317422,-0.0072634923,-0.022082716,-0.007762957,-0.005071692,-0.059383165,-0.00097369053,-0.0022768152,0.009495143,-0.03891574,0.022720331,-0.01622729,0.043230265,-0.010010548,-0.021221938,-0.0059351283,0.0071040886,-0.011742734,0.048543718,0.031880725,0.011253896,0.0067905947,-0.026078435,0.005743844,-0.025589596,0.044165432,-0.00013217218,-0.0075291647,-0.01873524,0.021285698,0.051604267,0.0050212145,-0.011126374,-0.02578088,-0.024314366,-0.019819185,-0.001782664,-0.014144416,0.030414212,0.011392046,0.032305803,0.011062612,-0.0049229153,0.0069287447,0.015610929,-0.02694984,0.023081645,-0.004497839,-0.03547262,0.0016392007,0.038235616,0.006556803,-0.009930846,0.030754274,-0.03207201,0.027821247,0.015727825,0.03234831,-0.012975455,-0.017173085,0.024016814,-0.0048564975,-0.012975455,0.008607796,0.021561997,0.00095310085,0.020361157,-0.011158254,0.005563187,-0.037109166,-0.017725684,-0.0025823389,0.015302748,0.023315437,-0.0020669338,0.015440898,0.054154728,-0.006609937,0.009962727,0.024654428,0.004128554,0.008719379,-0.013761847,0.009484516,-0.02299663,-0.0039904043,0.01650359,-0.022252748,0.007943614,-0.002078889,-0.008480273,0.005589754,-0.008862842,0.02444189,0.023676753,0.009128515,0.021912687,0.013230502,0.023421707,0.0062220553,0.034048617,0.0014253341,0.026843572,-0.005611008,0.029946629,0.019574765,0.027693724,0.006817162,0.021200683,0.023039138,0.005347992,-0.010159325,0.024250606,0.040658552,0.0058660535,-0.058618028,-0.037640512,0.013124232,-0.012040287,0.03668409,-0.0512217,-0.03914953,-0.020743726,0.024271859,0.016312305,0.01815076,0.0027258021,-0.019776678,-0.0037752094,0.035430115,-0.0089425435,0.0035998654,-0.004242793,0.015164599,-0.012677902,-0.043421548,0.005685396,0.033432256,0.01010619,0.0042693606,-0.00034570662,0.00080830924,0.008081764,-0.008958484,0.011976526,0.036875375,-0.01024434,0.020648085,0.015143345,0.018097626,0.06465411,-0.0030233555,0.033368494,-0.009139141,-0.023060393,0.018342044,0.0014080654,0.03440993,-0.02162576,-0.05500488,-0.019840438,0.009266664,-0.018129507,-0.029925374,0.014027519,0.042847697,-0.034558706,0.03557889,-0.008055197,-0.0082146,0.0032651178,0.0017321862,-0.028310085,-0.002575697,-0.004577541,-0.025185773,0.003262461,0.0010387803,-0.00570665,0.017247474,0.010648162,0.039489593,0.008570602,-0.050626595,0.028097548,-0.007874539,-0.007438836,0.013071097,0.0047953925,-0.008830961,-0.003018042,-0.06427155,-0.036152743,0.0086715575,0.01945787,0.032263294,0.017630043,-0.01375122,0.0036795672,-0.016354812,0.009893652,-0.027481185,0.027098617,0.046630874,0.004303898,0.024165591,0.029160237,0.0091232015,-0.0046997503,-0.0025571,-0.022082716,0.041763753,0.030839289,0.0035892385,0.009165709,0.010850074,0.020839369,-0.02767247,-0.03472874,-0.014101908,0.007024387,0.011051985,0.005531306,0.024675682,-0.008443079,0.016960546,-0.0034165513,0.021848924,0.030881796,-0.037619255,-0.02187018,0.044080418,0.0040249415,-0.013538682,0.0067055793,0.022614062,-0.012401602,-0.02113692,0.0036981641,-0.002064277,0.029202744,0.01598287,0.023549229,0.042550143,0.018363299,0.0021426505,-0.026014673,0.029181492,0.023060393,0.04641834,0.04046727,-0.011530196,0.011753361,-0.030541737,-0.029946629,-0.009744875,-0.007024387,0.013368651,-0.0118383765,0.003379357,0.004936199,0.0033049686,0.010276221,-0.0012685872,0.014675761,-0.007098775,-0.027077364,0.007810778,-0.015600302,0.047225982,-0.024590667,0.01316674,-0.021434475,-0.040127207,-0.005733217,0.0020337247,0.032730877,-0.029521553,-0.0086715575,0.0068915505,-0.017289981,-0.018108252,0.024314366,-0.015409018,0.01798073,-0.040956106,-0.044633016,0.044888064,0.024059322,-0.01347492,-0.009070067,-0.005765098,0.0127416635,-0.0017082756,-0.057130262,-0.041232407,-0.027927516,-0.00933574,-0.0028798922,0.042550143,0.0032172967,-0.03200825,0.003748642,0.023974307,-0.0049787066,-0.06286879,0.011126374,0.01694992,-0.004816646,-0.032327056,0.012475991,0.021785162,0.039383322,0.028033786,-0.058575522,-0.013187993,-0.013591817,0.026631033,-0.015079584,0.008591856,-0.007252865,-0.010084936,0.0049787066,0.030435467,-0.0047581983,-0.023017885,0.018023238,-0.009792697,0.038448155,0.0053028273,-0.00776827,-0.0054276935,0.040233478,0.059765734,-0.020711845,0.032773387,0.009590785,-0.02371926,0.034091122,0.038681947,0.016737381,-0.00052835664,0.032390818,-0.010302788,-0.016864903,-0.001406737,-0.020637456,-0.0131029785,0.03540886,0.019819185,0.03302843,0.0400847,0.047310997,-0.01375122,0.0118064955,-0.012444111,-0.014526985,-0.013559936,-0.031923234,0.026567271,-0.012369722,-0.0512217,-0.0070031327,-0.01870336,-0.0201805,-0.00074189104,-0.01653547,-0.0022821287,0.00919759,0.033729807,-0.012911694,0.0062645627,0.0036689402,0.0047847657,-0.017470637,0.019468497,0.008262422,0.022082716,0.016004125,0.009011619,0.0140700275,-0.02533455,-0.016322931,0.013389905,0.0018570523,0.010138071,0.017332489,0.04582323,0.011317658,0.00035865817,0.027204886,-0.0010188549,0.018448314,0.022784092,0.018405806,0.036429044,0.016216664,0.018086998,-0.007762957,-0.024930729,-0.016036006,-0.0030552363,0.006631191,0.048458703,-0.019266585,0.03434617,-0.02162576,-0.013836235,-0.031498156,-0.026822317,-0.013081725,-0.030010391,0.022188986,0.008241167,0.01873524,0.016004125,-0.014526985,-0.022401523,0.007284746,-0.013687459,-0.03846941,0.0064983545,0.00068742817,0.034558706,0.00019211459,-0.012794798,0.020616204,-0.017831953,-0.0107809985,0.0013801698,0.037895557,-0.005045125,-0.030584244,-0.00467584,-0.046673384,-0.018937152,0.015143345,0.01756628,0.026354734,-0.019149689,0.0072634923,0.033389747,0.0140381465,-0.060828425,-0.025653359,-0.0031854159,0.0052231257,0.014750149,-0.0003467029,0.004468615,0.0037964631,-0.02945779,0.027927516,0.0046705264,-0.06873485,0.0057704113,-0.026843572,-0.011774614,0.018161386,0.001435961,0.00613704,-0.06822475,-0.025589596,-0.00673746,0.06274127,-0.03345351,0.00031797704,0.011137,-0.03139189,-0.037257943,-0.047566045,-0.038490664,-0.00096173526,0.019064674,0.033432256,0.028055038,-0.020924384,0.03111559,-0.02444189,-0.021083787,0.043506563,0.012943575,-0.014240058,0.028883938,-0.0150051955,-0.018225148,0.024144337,-0.010711924,-0.038894486,0.05912812,-0.0044154804,0.019511005,-0.024420636,-0.011795869,0.008501527,0.020478053,0.019064674,0.0007843987,-0.005326738,-0.018086998,0.011700227,-0.033772316,0.041933782,-0.027970023,-0.013910623,0.032943416,0.015802214,0.0035307903,-0.015249614,0.0041338676,0.0049547963,-0.00017816677,0.019723542,-0.010573775,-0.0065780566,0.03523883,0.030074151,-0.04964892,-0.03268837,-0.013506801,0.021423848,-0.053262066,0.012986083,-0.023591738,-0.0049893335,-0.00948983,0.023485469,0.012847933,0.051816806,-0.04331528,0.030116659,0.015525914,0.020169873,-0.021051906,0.009356993,-0.0005934464,0.01804449,0.0009823248,-0.018937152,0.055685002,0.0025092787,0.0035547009,0.009245411,0.028905192,0.00085878704,0.0042507634,-0.0027975338,0.007518538,0.0018185298,-0.02388929,-0.03747048,0.020871248,0.046800908,-0.025568342,-0.025462074,-0.013506801,-0.011338912,-0.02588715,0.010127444,-0.00051141996,-0.024951981,-0.03647155,0.006041398,-0.009202903,0.04248638,0.03880947,0.020233635,0.014760776,-0.016450455,0.0033952973,-0.01216781,0.0034271781,0.01416567,0.031923234,0.041614976,-0.021647014,-0.003971807,-0.0019022167,-0.001797276,0.016716128,0.02182767,-0.00718379,0.0027417424,0.033198465,-0.0028745788,-0.037683018,-0.017406877,0.00832087,-0.040764824,-0.01828891,0.0072209844,-0.013963758,-0.016131647,0.0071997307,0.032560848,-0.0013828265,0.04960641,-0.0044845557,-0.040679805,0.033708554,0.0006243309,-0.03156192,-0.018161386,0.020786233,-0.018267656,-0.017173085,-0.013719339,-0.020871248,0.010722551,-0.011615211,-0.005616321,0.017332489,-0.007980809,0.0029489673,0.0031030574,-0.014697014,-0.022592807,0.009521711,0.0031296245,0.042167574,0.0026035926,-0.046078276,-0.03266712,-0.0050690356,0.016269797,0.027268648,-0.014803284,-0.0026275031,0.030605497,-0.028267577,0.00060340913,0.014558865,-0.017683176,0.0039478964,0.015589675,0.03428241,-0.03668409,-0.0053400216,0.00010527281,0.0032412072,-0.0012765575,-0.02382553,-0.011105119,-0.028990207,-0.014526985,-0.013389905,0.03217828,-0.039170787,0.033729807,-0.0038495976,-0.02801253,0.007274119,0.006779968,-0.0033952973,-0.010759745,0.02399556,-0.019585393,0.011477062,0.0022940838,0.02193394,0.015695944,0.028097548,0.030371705,-0.015579049,0.02905397,-0.006195488,0.0031721322,0.01694992,-0.02021238,0.019064674,-0.0066418177,-0.019255958,0.042847697,0.009356993,-0.0019394108,0.01773631,-0.0011138329,0.0022143822,-0.023527976,0.01041437,-0.041891273,0.017640669,-0.004147151,-0.05504739,-0.01742813,0.0034457752,0.016748007,0.012709782,-0.0029755344,-0.035600144,-0.007858599,-0.032645863,-0.03670534,0.028905192,-0.03634403,0.02956406,-0.00469178,-0.0010859373,-0.011307031,-0.014537611,-0.03634403,-0.029436538,-0.011200761,-0.018799001,-0.017683176,-0.013251755,0.025292043,0.021636385,-0.024080575,0.026567271,0.01241223,0.015164599,0.03018042,-0.044462986,-0.0013449681,-0.0029914747,0.036067728,-0.027098617,-0.0060520247,0.066949524,0.072135456,0.02767247,0.0026328166,0.025483327,0.018278282,-0.0039027322,-0.006971252,0.036216505,0.01289044,-0.022954123,0.024930729,-0.005374559,-0.022465285,-0.0025478015,0.012794798,-0.014112535,-0.006083905,-0.015494033,0.041402437,-0.037151672,0.015908482,-0.0067534004,-0.047863595,-0.011763988,0.027544947,0.008793767,0.0099521,0.01653547,0.031094335,-0.00025753648,0.045398153,0.0055685,-0.024293113,-0.011073239,-0.02327293,-0.015440898,-0.009473889,-0.00041013226,0.009686427,-0.021891432,-0.0018225148,0.020435546,0.013411159,0.00037094552,-0.016280424,-0.02522828,-0.011360166,-0.00630707,-0.014261312,-0.003671597,-0.02633348,0.015929736,-0.01942599,-0.012114676,0.025207028,-0.0022568898,-0.008724692,0.018937152,0.0019752767,0.023251677,0.011700227,-0.022762839,-0.006243309,0.005685396,0.04308149,0.011168881,-0.0011450495,0.008395258,0.006503668,0.009973354,-0.008219914,-0.009266664,-0.023527976,-0.011200761,0.021360086,-0.007943614,0.0023844126,-0.014537611,-0.004160435,0.02382553,-0.014898926,0.0017135891,-0.017109323,0.013145486,0.011455808,-0.025908403,0.0025132638,0.0066258777,-0.026907332,0.04820366,-0.013294263,0.013687459,0.007874539,-0.0342399,0.005045125,0.0022356359,0.010557834,-0.018023238,-0.044335462,0.0074654035,0.0009896309,-0.017608788,-0.027991278,0.018522702,-0.029500298,-0.022699077,-0.0049308855,-0.012263453,0.03568516,-0.033496015,-0.015557795,-0.009511083,0.011402673,-0.045355648,-0.04369785,0.0011988481,-0.03959586,0.024654428,0.028586384,-0.013368651,0.013868116,-0.01773631,-0.0131348595,-0.029223999,0.024675682,0.01388937,0.0030818034,-0.024080575,0.0041737184,0.014643881,-0.020244261,-0.0043862564,0.028862685,0.031689443,-0.0063283243,-0.00016455103,0.015855348,0.013198621,-0.027183633,0.021296324,-0.0207331,-0.009139141,0.018894644,0.02901146,-0.009096634,0.017906342,-0.016524844,-0.010276221,-0.034048617,0.0011224672,0.0074813436,-0.0048060194,0.010122131,0.017587533,0.0045217494,-0.010297474,0.011009477,0.018140133,-0.031306874,-0.0059085614,-0.013326144,0.023464214,0.030839289,0.022359015,0.019946707,-0.004614735,-0.026567271,0.008676871,0.020924384,0.0028214443,-0.0001413877,-0.014325073,0.0011038701,0.0033554465,-0.016716128,-0.03166819,0.015802214,0.00847496,-0.028926445,-0.008512154,-0.0054941117,0.016014751,0.00789048,-0.013358024,0.0054117534,0.0016763948,-0.006147667,-0.014155042,-0.028565131,-0.008878782,-0.0020695904,0.002104128,0.009117887,-0.010084936,-0.028055038,-0.013814981,0.01509021,0.033814825,-0.014293192,0.009925533,0.020860622,-0.016631112,-0.0005828195,-0.01361307,0.033389747,-0.03557889,-0.008682185,-0.01578096,0.007853285,-0.022571554,-0.025079506,0.030052898,-0.04187002,-0.0096970545,-0.008347437,0.009558904,0.0353451,0.052581944,0.015494033,0.0015302749,0.010722551,-0.037002895,-0.045865737,-0.0045217494,-0.008384631,0.012242199,-0.015557795,-0.0076407474,-0.045355648,0.008071138,0.0048379004,-0.027906263,-0.009277292,0.006508982,-0.0043224953,0.0010467505,-0.006259249,-0.0047369446,-0.0062645627,-0.03362354,-0.0029835047,0.009128515,-0.01856521,-0.029861614,-0.0037858363,-0.011934019,0.009861771,-0.034388676,0.014027519,0.015568421,0.02801253,-0.032114517,0.0037273883,0.045738216,0.006248622,-0.020191127,-0.00009290243,-0.026248464,-0.03613149,0.019925455,-0.023294184,0.006312384,0.009601412,0.013039217,0.013124232,-0.013729966,0.019436616,-0.04227384,-0.018501448,0.015717197,0.015451525,-0.011126374,0.042677667,-0.0008348765,-0.0037327018,-0.007901107,-0.028713908,0.003777866,-0.02210397,0.028288832,0.047481027,0.016014751,-0.018278282,-0.0062167416,-0.038681947,0.028777668,0.029394029,0.019691661,-0.04374036,0.000898638,0.02176391,0.006397399,-0.017683176,0.016322931,-0.019234706,0.009112574,0.010850074,-0.032943416,0.028905192,0.021168802,0.04926635,0.018108252,0.034707483,0.020244261,0.018023238,-0.02454816,0.036854118,-0.0032730878,0.0073166266,0.012592887,-0.0035015664,-0.01608914,-0.0047847657,0.015844721,-0.00070668943,0.024250606,-0.006057338,-0.057937905,0.014282566,-0.009245411,0.00036330745,-0.0052443794,0.028798923,0.01856521]},{"id":"interface-MessageCollectorEndReason","type":"interface","source":"main","text":"Interface: MessageCollectorEndReason","meta":{"url":"/docs/typedefs/MessageCollectorEndReason"},"embedding":[0.008925078,-0.016473725,0.027615584,0.037786696,-0.033121314,0.024572944,-0.04265492,0.026702791,-0.0132209975,-0.030165607,0.02354424,-0.04511801,-0.012054652,0.070936985,0.035961114,-0.014155522,0.014865472,0.007954331,-0.020008983,0.059403934,0.050333966,0.049203843,0.045407787,0.030426404,-0.03526565,-0.01406859,0.0119025195,0.009721961,-0.0055781743,-0.04807372,0.033555977,-0.03772874,-0.023862993,0.009577073,-0.017212652,0.03106391,0.020269781,-0.019632274,0.0067227865,-0.0039192108,0.003412104,-0.034628145,-0.0068930294,0.0028126312,-0.010555064,0.0078384215,0.037062258,0.0042560743,0.0452629,0.021573769,-0.019385966,-0.017140208,0.029933786,0.052217506,-0.023008157,-0.081252985,-0.005411553,0.02532636,0.0332662,-0.025876932,0.007338559,-0.018980281,0.017777713,-0.033498023,0.013184776,-0.010113157,-0.011214303,0.053666383,0.0016209305,0.043814022,0.012583491,0.016589634,-0.060678944,0.0025355336,-0.04561063,-0.009613295,0.040278763,0.0019740942,0.0102508,-0.034135528,-0.008193396,0.007968821,-0.023167534,-0.037120212,-0.015502977,-0.013090598,-0.029455658,0.028528376,-0.0064366334,-0.056100495,-0.07679045,0.06178009,0.011018705,0.0013248164,-0.0102508,-0.028992016,-0.027340299,-0.008809169,-0.008751214,-0.0014687985,0.015879685,-0.05097147,-0.02015387,-0.0011210681,-0.003774323,-0.042973675,-0.014698851,0.0018446008,-0.062069863,-0.004553094,-0.02826758,-0.019183123,-0.060678944,0.010779641,-0.015966618,-0.0120039405,0.0029357858,0.014039612,0.013757082,0.03401962,-0.014793028,0.03268665,-0.03060027,-0.0052087107,-0.024312146,-0.027224388,-0.008881613,-0.009439429,0.03106391,0.013778814,0.055260144,0.0049950015,-0.019791652,-0.01406859,0.0013945436,-0.03303438,-0.01061302,-0.019835118,-0.041090135,-0.031266753,-0.027717005,0.014314899,0.02602182,0.0027401876,-0.017893624,0.0323679,-0.029962763,0.024978628,0.037815675,-0.013264463,-0.006889407,0.01569133,-0.022196786,0.002673177,0.015256668,-0.011670699,0.029788898,0.018777438,0.0144090755,-0.014539475,0.023500776,-0.015213202,-0.023413843,0.004462539,-0.07238586,0.01653168,0.029571567,0.0018545617,-0.055694807,0.036772482,-0.02848491,-0.020718932,-0.03784465,0.009352497,-0.03138266,0.005976615,-0.023167534,-0.04193048,0.04523392,-0.007758733,0.05227546,0.04361118,0.013800547,-0.053434562,-0.049754415,0.027745983,-0.0018264898,-0.004723337,0.03117982,-0.02332691,-0.030194584,0.012750112,-0.022530029,0.023776062,0.015763775,-0.021820078,0.015126269,-0.031324707,-0.004571205,-0.04966748,-0.022761848,-0.0025464003,0.1204306,-0.02263145,-0.019255567,0.024790276,-0.00750518,0.014800272,0.04140889,-0.026688304,0.08096322,0.011062171,0.0064475,-0.059867572,-0.032628696,-0.006523566,0.022834292,0.015053825,-0.009866849,-0.0478419,0.021892522,0.055376057,0.046219155,-0.0022856025,0.041553777,0.00018993864,0.04233617,-0.025992842,-0.043553226,0.021964965,-0.029991742,0.008294817,-0.021602748,-0.07006766,0.030716179,-0.0030172851,-0.03164346,-0.008925078,0.049174864,-0.003642113,-0.029615033,0.0090916995,0.043785043,0.021762123,-0.018907838,-0.018531129,0.0030027963,-0.0071357163,-0.0072914707,-0.018009534,0.043408338,0.023254465,0.050826583,0.007548646,0.005976615,0.007153827,0.012641447,-0.006733653,-0.013786059,-0.010670975,0.012337183,-0.04676973,-0.019806141,0.027470697,-0.0021715036,-0.04337936,0.03010765,-0.022935713,-0.02800678,0.06780741,-0.012764601,-0.021197062,0.052362394,0.01618395,-0.028992016,-0.013228241,0.025485735,0.009591562,-0.012163318,-0.028340023,-0.0025427782,-0.0039952765,0.01700981,0.049551573,-0.009004767,0.008352772,0.02778945,0.01955983,0.057752214,0.005875194,-0.012286472,-0.024428057,-0.023124067,-0.019791652,-0.015488489,-0.023167534,0.035729293,-0.016285371,0.035729293,0.013959924,-0.02273287,-0.0016127805,-0.030339472,-0.044393573,0.020139381,-0.047754966,0.014850983,-0.019241078,0.023008157,-0.0043140296,-0.0070632724,-0.050015215,-0.079804115,0.027122967,0.0060599255,-0.030716179,0.045755517,0.003700068,0.016575146,0.005672351,0.018429708,-0.006809719,0.019038236,0.009895826,-0.0022348918,-0.032194033,0.015879685,-0.010062447,0.057926077,0.049986236,-0.015662353,-0.019545343,-0.026470972,-0.026398528,0.05746244,-0.007186427,-0.043814022,0.019038236,0.0037960561,0.043756068,0.00466176,-0.04161173,0.0061722132,0.000006650116,0.020197337,-0.014017879,0.0043321406,0.009432185,0.012569003,-0.0033233603,-0.0070705167,-0.011018705,0.028876107,-0.027572118,0.003716368,-0.009316275,0.026065286,-0.015227691,-0.017763225,0.053057853,0.029455658,0.02603631,0.013083354,-0.010373955,-0.016908387,0.043350384,-0.13654211,-0.03213608,0.05004419,-0.007896377,0.012221272,-0.009888581,0.00466176,-0.041698664,0.0073639145,0.03952535,-0.025601646,-0.003205639,0.053144787,0.019356988,0.04523392,0.0085845925,-0.029252814,-0.01616946,0.041553777,0.020921776,-0.0042270967,0.038511135,-0.044596415,0.02345731,0.028166156,-0.037409987,-0.004987757,-0.028035758,0.020617511,0.019487388,-0.00577015,0.03375882,0.030716179,0.018704994,0.017763225,0.02297918,0.023239978,0.060447123,-0.009627784,0.028861618,-0.012931222,-0.0056614843,0.024688853,-0.040829338,0.06595285,-0.0321071,0.043466292,0.020240804,-0.018154422,-0.035555426,-0.0529999,0.017777713,0.011366435,0.0079398425,-0.012090874,0.0019270056,-0.053289674,0.031962212,-0.0080774855,0.01616946,0.041264,-0.02826758,0.030948,-0.0808473,-0.017227141,0.022022922,0.0018744839,0.0005080123,0.018589085,-0.009214854,0.04876918,0.0028180645,-0.024471523,0.033729844,-0.036859415,0.0049442905,0.019907562,0.0076790447,-0.050449878,0.0219215,0.015126269,0.035816226,0.009077211,0.03891682,-0.10594184,-0.05653516,-0.011482346,0.018053,-0.05331865,-0.010924528,0.030919023,0.03972819,0.0037199901,-0.02697808,-0.0053427317,0.016502703,0.011533056,0.058302786,-0.03036845,0.0009906692,-0.02883264,-0.016010083,-0.015126269,0.049899302,-0.0044480506,0.0065887654,0.024804763,0.0046182936,0.020226315,0.005824483,0.009019256,-0.035932135,-0.021515815,-0.027383763,-0.013996146,-0.023268955,-0.015560932,-0.024761297,-0.0016933742,0.053115807,0.015778264,-0.036163956,-0.057230618,0.011764877,0.007128472,0.018371753,-0.004437184,-0.018907838,-0.007773222,-0.014112056,0.022211276,-0.037409987,-0.011815587,-0.041669685,-0.0013872992,-0.0029122415,0.058418695,0.0049768905,0.047320303,0.015981106,-0.013293441,0.015387068,-0.04033672,-0.036395773,0.053376608,0.027238876,-0.040017966,-0.0018355453,-0.031585507,0.029151393,-0.040133875,0.017531404,-0.013518017,0.02168968,0.017995045,-0.020849332,0.0098378705,-0.006907518,-0.02144337,0.012047407,-0.04195946,-0.03787363,-0.015387068,-0.0055129747,0.024225213,-0.0016997132,0.01874846,-0.006074414,-0.0056940843,-0.020066937,0.027876383,-0.019197613,-0.014198989,-0.020255292,0.004911691,-0.015227691,0.002732943,-0.02567409,-0.013365884,0.012670424,-0.039003752,0.021370927,0.014756806,0.019603297,-0.07458816,-0.013604949,0.047957808,-0.042191282,0.010337733,0.019284545,-0.016328838,-0.028571842,0.0084469495,0.010692708,0.0010323244,-0.008135441,0.026775235,-0.0036185689,-0.02590591,0.037062258,-0.0009761805,0.044161752,0.02706501,0.011496834,0.010533331,0.0065525435,-0.037815675,0.022993669,0.031875283,-0.019328011,0.023066113,0.003547936,0.020632,-0.008997522,-0.014358365,-0.015314624,-0.00073032425,0.035555426,-0.0029049972,-0.0077877105,-0.003814167,0.016792478,0.0047486923,0.008780191,-0.01783567,-0.02226923,0.01616946,0.02461641,0.008613571,-0.0061577247,0.0086497925,0.042220257,0.010460888,0.012837045,0.043495268,-0.02625364,-0.03645373,0.014807517,0.035381563,0.06247555,0.026528927,-0.016125994,0.021052174,0.029165883,0.025442269,0.003167606,0.0010268912,-0.04077138,-0.018386241,0.0049153133,-0.024065837,-0.040916268,0.020356713,0.03880091,0.00068731076,-0.0070524057,-0.019313522,-0.032194033,-0.02097973,0.048247583,-0.03969921,-0.024065837,0.02225474,-0.007128472,0.034859966,0.006545299,-0.008338284,-0.013916458,0.0072516263,0.01664759,-0.011989452,0.015488489,-0.025471248,-0.049406685,0.0029104305,-0.032802563,-0.0057013286,-0.009794405,0.04007592,0.011062171,0.017386517,0.03601907,-0.023312422,0.008555615,-0.011996697,-0.018053,0.02577551,-0.0072697373,0.023500776,-0.012069141,-0.019878585,0.06490966,0.020689955,-0.0013682826,-0.005893305,-0.017227141,-0.027108477,-0.0045929383,-0.013583216,0.0050384677,0.0040930756,0.0057013286,0.008816413,0.017140208,0.016473725,0.031730395,0.008896101,-0.0090265,0.028513888,-0.0029484634,0.010258045,-0.01119257,-0.0073276926,-0.023109578,-0.0048247585,0.021704169,-0.013300685,-0.0036457353,-0.021240529,0.020994218,-0.009939292,-0.042973675,-0.002160637,0.023022646,0.007454469,-0.0026677437,0.029672988,-0.013974413,0.009106188,-0.018531129,0.02134195,0.01236616,0.009098943,-0.036482707,-0.01922659,-0.034309395,-0.01001898,0.031556528,-0.0077877105,-0.010439155,0.018878859,-0.0146119185,0.04291572,0.031150842,-0.020892797,0.014640896,-0.01783567,0.008917835,-0.022718381,0.03178835,0.014090323,-0.0010522464,0.050218057,-0.024355613,0.023790551,0.0017495182,0.011301236,0.025123516,0.01700981,0.005331865,0.0014099379,0.015213202,-0.000082744424,0.018458685,-0.036048044,0.006581521,-0.0077514886,0.020603022,0.0093959635,0.021081151,-0.0097002275,-0.012757356,0.023428332,0.006288124,0.01735754,-0.0069292514,0.036395773,-0.045871425,0.012228517,0.035207696,-0.0032273722,0.007983309,-0.032020167,-0.0055673076,0.007418247,0.012047407,-0.040974226,0.02074791,0.024674365,-0.023747085,0.05798403,0.00046409323,-0.010837596,-0.0064185224,0.01306162,0.059577797,-0.023660151,-0.00076518784,0.0050203567,0.022718381,-0.0424231,-0.0077442443,0.007925354,0.030194584,0.031324707,0.0017123908,0.00076337677,0.003944566,-0.005139889,-0.014546719,-0.0027890871,-0.025485735,-0.02225474,0.021385416,0.031498574,-0.0033867485,-0.051753864,-0.014227966,-0.010156623,0.011047683,-0.029368725,0.019632274,-0.011511323,0.00489358,0.011424391,-0.027282342,0.03561338,-0.042596966,0.007773222,0.01312682,-0.010808618,-0.10849187,0.02086382,0.025471248,0.005896927,0.0060961475,-0.011228792,-0.017125718,0.034251437,0.0098378705,0.0013592271,-0.008830901,-0.008635303,0.021950478,-0.044799257,0.018603573,-0.0091931205,-0.010171113,0.018081978,-0.006726409,0.0029267303,-0.019052725,0.005704951,-0.011750388,0.05215955,-0.0025862444,-0.009439429,-0.04227821,0.019487388,0.036830436,-0.015865197,0.016241904,-0.00542242,-0.018980281,0.021139106,0.028934062,0.015053825,-0.010192845,0.0064438777,-0.02168968,-0.031585507,0.008403483,-0.022312697,-0.005440531,-0.019168634,-0.033584956,-0.03283154,0.023790551,0.005382576,-0.017270606,0.028702242,-0.020530578,-0.041640706,-0.016806966,-0.055289123,0.059461888,0.016937366,-0.008555615,0.0016707355,-0.007693534,-0.04137991,-0.0013882047,-0.023660151,0.014771295,-0.024413567,0.009012011,-0.036077023,-0.026369551,-0.054680597,-0.0031983946,-0.022240253,0.005972993,0.01945841,0.019400455,0.014771295,0.044944145,0.021631725,0.05378229,-0.006896652,0.002008505,0.01365566,-0.0044589173,0.038598068,-0.017125718,-0.004285052,-0.013749837,0.0074073807,0.010076935,0.0050964225,-0.0029086194,0.010497109,0.018922325,-0.01698083,-0.015778264,-0.0053391093,0.03164346,0.032309942,0.017429983,0.014343876,0.0088888565,0.012626958,0.0450021,0.026572393,-0.02228372,-0.025282893,-0.03552645,-0.004911691,0.010881062,0.011170837,0.030397426,0.02918037,-0.02532636,0.017067764,0.018096466,0.043843,0.025166983,0.009794405,0.02215332,-0.017328562,-0.0011382735,0.002598922,-0.02003796,0.011004216,-0.028412467,-0.0016327025,-0.026050797,0.04048161,-0.0032110724,-0.0073059592,0.00007985799,-0.0040822094,-0.020718932,-0.031585507,-0.011714166,-0.0069002737,0.003832278,0.000602642,-0.0027003435,0.0013791493,-0.019501876,0.021631725,0.018444197,-0.017299585,0.012902244,-0.014626407,0.0026876656,-0.024167258,0.0010450021,-0.004212608,0.022530029,-0.0008340095,0.0056759734,-0.016502703,-0.02261696,-0.046972573,-0.023283444,0.0529999,0.02087831,-0.010316,-0.0032183167,0.035149742,-0.0016408525,0.083687104,-0.026862169,0.012735624,0.015981106,-0.0040822094,-0.029759921,-0.0045856936,-0.023211,0.02649995,-0.031904258,-0.00034365538,0.008570104,-0.03361393,-0.013170286,0.020646488,0.028774686,0.028905084,-0.0013429273,0.000026388227,-0.02486272,0.020950753,-0.024065837,0.026688304,0.042712875,0.0045494717,0.019530853,0.013858503,-0.030426404,-0.0089902785,0.04175662,0.054680597,0.02860082,-0.011909764,-0.0024196235,0.002696721,-0.007889132,0.031324707,-0.02438459,0.018067488,0.040162854,0.043350384,-0.014981382,-0.0010395688,-0.005929527,-0.024341123,0.0026623104,0.006682942,-0.01616946,-0.01816891,-0.0012732001,0.016430259,-0.014879961,-0.022602472,0.01734305,0.019980006,-0.036395773,0.0038793664,0.018053,0.002392457,-0.010699952,-0.017995045,0.03506281,0.041669685,-0.024051348,0.017995045,-0.036482707,-0.0036729018,0.0014950593,-0.0009653139,0.039090686,-0.03294745,0.013604949,-0.004151031,0.025224939,-0.007809444,0.008722235,0.008526637,0.026717281,-0.0037236123,-0.00061305583,-0.0046762484,-0.010069691,-0.024906185,0.017024297,-0.026528927,0.021255016,0.013590461,-0.0019324389,0.0024902562,0.005922282,-0.019849606,0.03471508,0.04326345,0.019617787,-0.023355888,-0.009627784,-0.00038938553,0.02531187,0.015140758,-0.0029919297,-0.021776613,0.014322143,0.0075776237,-0.012764601,0.021530304,-0.0372651,0.028615309,-0.0435822,-0.008135441,0.001129218,0.008903345,0.01783567,-0.004813892,0.0070994943,-0.030542314,0.015995596,0.014677118,-0.023008157,-0.022327185,-0.011989452,0.0025699446,-0.055289123,-0.01347455,0.017777713,-0.0008439705,-0.02848491,-0.019806141,0.021573769,-0.052188527,0.030165607,-0.008367261,-0.007454469,-0.00036108715,0.01112737,-0.00932352,0.0057955054,0.027383763,-0.0018183399,-0.023211,-0.019777162,-0.0031549283,-0.018371753,-0.02145786,-0.021066662,0.02228372,0.009917559,0.052912965,-0.027282342,-0.0010757907,-0.0093959635,-0.0055057304,0.015082804,0.003944566,-0.00020499337,0.027180921,4.244755e-8,-0.027340299,-0.02848491,0.013923702,0.0036077022,-0.00937423,0.013249975,-0.01572031,-0.0022421363,-0.01616946,0.017748736,0.0056977062,0.011025949,0.005933149,-0.0021153595,-0.031469595,0.04407482,0.004205364,-0.0024920674,0.021776613,-0.026268128,0.022341674,-0.016039062,0.015445023,-0.010330489,-0.0027347542,-0.009772671,-0.008700503,0.01793709,-0.017241629,0.011547545,-0.0015068315,-0.007371159,-0.014756806,0.10507251,-0.015488489,-0.017661802,0.047754966,-0.036656573,0.003908344,-0.006038192,0.030571291,-0.009613295,0.03880091,-0.015923152,-0.0054550194,0.034830987,-0.0074399803,0.001994016,0.0025735667,0.0018264898,0.013880236,0.013286197,-0.032744605,0.016314348,-0.0052014664,0.022472072,-0.0024703343,0.0055057304,-0.029035483,-0.007226271,0.030049697,0.023703618,0.04456744,0.033382114,0.02873122,-0.010598531,0.008925078,-0.026891146,0.016154971,0.021718657,-0.033700865,0.0052195773,-0.030976977,0.0069002737,-0.017285096,0.034859966,0.008743969,-0.006617743,0.018212376,-0.015082804,0.008541127,-0.0009761805,-0.026297107,-0.019530853,-0.040742405,-0.0050384677,-0.01840073,-0.005161622,-0.019023746,-0.0031024066,0.03422246,0.023732595,0.009932048,-0.022109853,0.016821455,-0.0031911503,0.018154422,0.045378808,0.041437864,0.012750112,0.012822556,0.0053173765,-0.00039029107,-0.014467031,-0.013300685,0.013851258,0.0024956896,-0.053521495,0.026079776,-0.0010866573,-0.016270882,-0.0032581608,0.0044878945,0.011040438,-0.010316,0.005599907,0.006755386,-0.028122691,0.02263145,0.020704444,-0.024935164,-0.017531404,0.00070270506,0.0030806735,-0.012684912,-0.0040713428,-0.047436215,0.007903621,-0.009439429,0.0056252624,0.014735073,0.0022656803,-0.0043502515,-0.0014389154,-0.013713615,-0.029107926,-0.0075196684,-0.014937916,0.0009988191,0.02180559,0.014836494,-0.017734246,-0.003031774,-0.019241078,-0.009497385,0.01992205,-0.011286747,0.006197569,-0.013880236,0.029730944,-0.03422246,0.010707197,0.013880236,-0.0033523377,0.030426404,0.0063569453,-0.017618338,-0.0042198524,0.002598922,0.010352222,0.0012550892,0.03798954,0.024123792,0.0006782553,0.023732595,0.017241629,0.019951029,0.00618308,0.008512149,-0.02086382,-0.0072769816,-0.010569553,0.00808473,0.03541054,0.0023652907,0.004310407,0.008903345,-0.015198713,0.038047493,0.00014228419,-0.054593664,-0.027340299,0.0045820717,-0.033382114,0.016676567,0.008714992,-0.0040496094,0.0044299397,-0.01043191,-0.020008983,-0.013496283,0.0020193714,0.018183399,0.008664281,0.0024341124,-0.008157174,0.0007991459,-0.0010142134,-0.00032011114,-0.00808473,0.0042633186,-0.025804488,0.0045603383,-0.03668555,-0.005328243,-0.007066895,0.024326636,0.032802563,-0.0014017879,0.0072154044,-0.018618062,-0.010678219,-0.0039192108,-0.0018980281,-0.028151669,0.011228792,0.006030948,-0.0006248279,-0.008657036,-0.031933237,-0.004035121,-0.007925354,-0.023037136,-0.01259798,0.021124618,-0.01700981,-0.017589359,-0.016227415,0.041321956,0.00045096278,0.018603573,0.011409902,0.038713977,-0.028687753,-0.008599081,-0.012177806,-0.030049697,0.02096524,0.008859879,-0.027948827,0.00039527158,-0.025036585,-0.003904722,-0.005386198,0.022080876,0.010670975,0.013184776,0.00500949,0.030252539,0.0037489678,0.00448065,-0.04068445,0.0410032,-0.0076500676,-0.013322419,-0.0034682478,-0.026702791,-0.0041039423,0.01664759,0.028209623,-0.014937916,-0.00762109,-0.022689404,-0.007780466,0.01616946,-0.0065090773,0.0016308915,0.026224663,-0.014568452,-0.049261797,-0.011351947,-0.023022646,-0.000045984845,0.025224939,0.02226923,-0.023616685,-0.031353686,0.038308293,0.0072552487,0.009388719,-0.0072371378,-0.01330793,0.018255843,0.01654617,0.013047132,0.00914241,0.0025264781,0.0023616685,-0.009874092,-0.011728655,-0.040510584,0.03396166,-0.01353975,0.020588534,0.0010757907,-0.006349701,0.009214854,-0.014343876,-0.007262493,-0.019154146,0.005574552,0.014387343,-0.029136904,-0.054072067,0.009577073,0.00042606023,0.026094263,0.029325258,0.023602197,-0.018589085,-0.0058498383,0.029571567,-0.027180921,0.013249975,0.018603573,0.04175662,-0.0028361755,-0.002048349,-0.010236312,0.016604124,-0.023819529,0.054419797,0.0089613,-0.008157174,0.018777438,-0.0007502463,-0.034628145,0.039554324,0.040568538,-0.021139106,-0.015502977,-0.015647866,-0.011359191,0.0095988065,-0.024442544,0.039931033,-0.026717281,0.019429432,-0.009765427,-0.002787276,-0.020704444,-0.015111781,-0.014981382,-0.022848781,0.009859604,-0.0069727176,0.057491414,-0.004328518,0.029788898,0.017690782,0.01770527,-0.015633376,-0.03549747,-0.01177212,-0.012286472,-0.017545894,-0.0039409436,0.019545343,-0.014937916,-0.012243005,0.017516915,0.042828787,0.024297656,-0.022443095,-0.0033034382,-0.028151669,-0.022211276,0.0153580895,0.0020682712,0.006422145,-0.025094539,0.0046110493,-0.0024775786,-0.04485721,0.017256118,-0.004382851,-0.047581103,-0.0043937177,0.038366247,0.01464814,0.017574871,0.03798954,-0.048479404,0.026673814,-0.018154422,-0.0426839,0.0018246787,0.03526565,0.03329518,0.022182297,-0.016893899,0.011388169,0.034425303,-0.012967444,-0.055636853,0.045523696,-0.003904722,0.012090874,0.031150842,0.0017513294,-0.025138006,0.017067764,0.056766976,0.0021171707,0.04561063,0.012873267,0.035468493,-0.03668555,0.020443646,0.019748185,0.0037236123,-0.013554239,-0.032251988,0.036424752,-0.005480375,0.0072407597,-0.018313797,0.01178661,0.014640896,-0.0068314523,-0.017661802,0.024558455]},{"id":"interface-MessageCollectorEvents","type":"interface","source":"main","text":"Interface: MessageCollectorEvents\nProperties: collect: [message: Message], end: [collected: Collection, reason: MessageCollectorEndReason]","meta":{"url":"/docs/typedefs/MessageCollectorEvents"},"embedding":[0.0044518122,-0.027073791,0.0141659565,0.011831175,-0.03280792,0.0025721916,-0.016972532,-0.012907836,-0.004046552,-0.0234325,0.011480352,-0.053470135,0.013718355,0.043719698,0.025960838,0.016137818,-0.005310721,0.039582416,0.0027264324,0.049453825,0.046114966,0.014891795,0.046308525,0.021847751,-0.051437784,-0.0040132846,-0.0006925713,0.068422414,0.01423854,-0.009883506,0.051824898,-0.024013171,-0.034961242,0.02100094,-0.011661812,0.06019624,0.021242885,0.009629463,-0.0045848824,0.0315498,0.00211703,-0.020577533,-0.03834849,-0.017565303,0.0014539461,-0.002464828,0.03730812,0.00340237,0.017928222,0.05961557,-0.011329136,-0.03771943,0.0477602,0.04713114,-0.014008692,-0.07418074,-0.040526006,0.0012687059,0.009133473,-0.03554191,-0.010536762,-0.015266812,0.024049463,-0.011038801,0.009127424,0.003732022,-0.01221224,0.067793354,0.018980687,0.02942067,0.012919933,0.030582013,-0.05501859,0.00621802,-0.031961106,0.0138635235,0.010349253,0.002611508,-0.004923607,-0.01883552,-0.012272727,-0.025017248,-0.04812312,-0.030122316,-0.009629463,-0.045897216,0.020613825,0.024678523,-0.0039981627,-0.020335587,-0.04609077,0.033606343,-0.016512835,0.006381334,0.03343698,-0.039534025,-0.01766208,-0.019621845,-0.035929028,0.0238801,0.031525604,-0.073116176,-0.026783457,0.00030470113,-0.008824992,-0.018799229,-0.019391997,-0.021932432,-0.07103544,-0.020807382,-0.04858282,-0.011159773,-0.016379764,0.01608943,-0.01442,0.0038227516,0.00061204855,0.01784354,0.024279311,0.026710872,-0.019936375,0.021279179,-0.04205027,0.039074328,-0.038856577,-0.0074700923,0.017904026,-0.039921142,0.013984497,0.027243154,0.04185671,0.0056917868,-0.009756485,-0.006538599,0.025670502,-0.05376047,-0.015278909,0.016428154,-0.050663557,-0.027243154,-0.016609615,-0.009617366,0.006224069,0.0130892955,-0.0037017786,0.02460594,-0.03757426,0.00978068,0.05559926,-0.008056812,0.013198171,0.015351493,-0.016512835,0.020178322,0.02303329,0.00050241663,0.0143232215,0.026154395,0.01171625,-0.02487208,0.024968859,-0.012097315,-0.06169631,-0.0018902055,-0.07272906,-0.013476409,-0.00014450621,0.0073612165,-0.03459832,0.03595322,-0.020008959,-0.017383842,-0.033195034,0.0015650901,-0.026396342,-0.01630718,-0.032469194,-0.016113624,0.005649446,0.01590797,0.024388188,0.026952818,-0.017940318,-0.061938256,-0.017674178,0.035178993,-0.014879698,0.023226846,0.010077064,-0.034719296,-0.010736368,0.02879161,-0.021593709,0.05622832,0.019186342,-0.011123481,-0.0021926383,-0.019984765,-0.012333213,-0.0590349,-0.018666157,-0.0068349834,0.10161745,-0.007155562,0.007972131,0.021025134,0.030243289,0.023988977,0.031840134,-0.04906671,0.05250235,0.03798557,0.005525449,-0.046647247,-0.031186879,0.01392401,-0.0064055286,0.022803439,-0.032565974,-0.037066173,0.030630402,0.048679598,0.08284242,0.0051655537,0.022755051,0.025912449,0.0011636105,-0.04880057,-0.037114564,-0.003154375,-0.056034766,-0.010246426,-0.035275772,-0.046961777,0.015327298,0.0030969128,-0.048607014,0.026928624,0.054534696,-0.019162148,-0.0011847808,-0.022101795,0.027557684,0.02825933,-0.014299027,-0.0075850165,0.0152547145,0.00689547,0.01956136,-0.0085649,0.04006631,0.016887853,0.008304807,0.008498364,0.025235,0.009000403,-0.025041442,0.010458129,-0.03542094,0.0044003986,0.04780859,-0.029904563,-0.04609077,0.013307047,0.0023589765,-0.042243823,0.035904832,-0.019210536,-0.015944261,0.062760875,-0.007385411,-0.008498364,0.057389665,-0.0027521392,-0.022742953,-0.0022682466,0.010518616,0.010615394,0.008141493,0.0032995427,-0.005591984,0.0016180159,0.033461176,0.02825933,-0.002383171,0.02181146,0.03646131,0.025355972,0.047276307,0.034307986,0.029904563,-0.0022712708,0.009006451,-0.028380303,-0.005371208,-0.0014841894,0.060534965,-0.013500604,0.05177651,-0.017311258,-0.034090236,-0.016996728,-0.0043610823,-0.056276713,0.03614678,-0.027049597,-0.005086921,-0.035566106,0.027460907,-0.017964514,0.0030016464,-0.033170838,-0.06348671,0.0085951425,-0.007282584,-0.013948205,0.022779245,0.02784802,0.023166358,-0.0034749538,0.025839865,-0.015883775,0.023553474,0.019077467,-0.023589766,-0.020904161,0.013258657,0.00041697934,0.026372148,0.06034141,-0.009841166,-0.038251713,-0.030001342,-0.012581208,0.061841477,-0.026831845,-0.025307585,-0.020323489,-0.0069317617,0.047615033,0.021363858,-0.036025804,-0.024823692,-0.0011870491,-0.006066804,-0.0074096057,-0.010028674,0.04488104,-0.023226846,-0.004790537,-0.0033539806,-0.0063692364,-0.00959922,-0.02469062,-0.0022017113,-0.039001744,-0.0024028292,0.012242483,-0.017964514,0.04812312,0.011800931,0.0410099,0.026057618,-0.011329136,-0.033170838,0.005740176,-0.14545812,0.013101392,0.042413186,-0.030678792,0.03803396,-0.03239661,0.008329001,-0.027243154,0.024654329,0.026299564,-0.033098254,0.00032587143,0.05322819,0.0071071726,0.00020130689,0.037525874,-0.027025402,-0.022658272,0.023372013,0.034211207,-0.013040906,0.032203052,-0.022464715,0.045945603,0.05966396,-0.010893633,-0.018436309,-0.021412248,0.022271158,0.011371477,-0.01446839,0.03239661,0.02487208,0.016246695,0.014891795,0.006199874,0.040259864,0.035396744,-0.0016543078,0.036848422,-0.012798959,0.03353376,0.042292215,-0.05768,0.045800436,-0.013270755,0.029081946,0.006574891,-0.010427886,-0.020117836,-0.064406104,0.013077198,-0.0023393184,-0.006665621,-0.012859446,-0.026009228,-0.046211746,0.036195166,0.006822886,-0.01977911,0.026444731,-0.030606208,-0.017541107,-0.04947802,-0.035299968,0.0428003,0.025694698,0.0041433307,0.054728255,-0.054679867,0.054534696,0.0010925388,-0.04790537,0.02925131,-0.014988573,-0.0032723239,0.01640396,0.04713114,-0.044034228,0.0074700923,0.007264438,0.02779963,0.013512701,0.008371342,-0.09155248,-0.025888255,-0.00040526007,0.029952953,-0.062954426,-0.02978359,0.02267037,0.04299386,0.014407903,-0.038590435,-0.019863792,0.02946906,0.021170301,0.050760336,0.015351493,0.031477213,-0.055405702,-0.035130605,0.0039104572,0.055454094,0.025476946,0.0016694295,0.01523052,0.013899815,0.05114745,-0.0072462917,0.05376047,-0.020662215,-0.009097181,-0.02487208,-0.0029729153,0.0037259732,0.014661946,-0.019851694,0.009018549,0.04451812,0.013996594,-0.048195705,-0.018714547,0.020420268,0.0016527957,0.006822886,-0.021738876,-0.012544916,0.0023302455,-0.018145973,0.00089898176,-0.05366369,0.0068107885,-0.027727047,-0.00066195,-0.030291678,0.048147313,0.01676688,0.044131007,0.029493256,-0.04018728,0.0070224917,-0.012774765,-0.017274966,0.06106725,0.024001073,-0.046477884,0.01504906,0.00833505,0.01761369,-0.029759396,0.019488774,-0.017746761,0.033412784,0.025355972,-0.0052109184,0.0095205875,0.007004346,-0.017988708,-0.015315201,-0.04555849,-0.010071015,-0.0046151257,0.0057734437,0.017577399,-0.020444462,-0.023988977,0.0052109184,-0.00031112783,-0.0043641063,0.006115193,-0.0143353185,-0.0059397817,-0.009786728,-0.018218556,0.011147676,0.005885344,-0.008189882,-0.029735202,0.037114564,-0.022767147,0.05158295,0.0002842869,0.033195034,-0.036025804,-0.020916259,0.06290604,-0.039945334,0.02758188,-0.005933733,0.0008339587,-0.023601862,0.009605268,-0.002978964,-0.0043520094,-0.011256552,0.026517315,-0.021025134,-0.023130067,0.03667906,0.026710872,0.02406156,0.0031513507,0.0150974495,0.0031513507,-0.008062861,-0.027073791,0.003054572,-0.0007065588,-0.002640239,-0.031840134,-0.019537164,-0.011722298,0.012895738,-0.0056857383,-0.024509162,-0.009708095,0.047155336,-0.018593574,-0.011087189,0.021339664,0.038372684,0.024182534,-0.018508893,-0.0096778525,-0.017492717,0.012907836,0.015956359,-0.01175859,-0.007560822,0.024460772,0.041155066,0.009647609,0.002345367,0.04231641,0.014976476,-0.04110668,0.001342802,0.04870379,0.052744295,0.009829069,-0.017238675,0.002097372,0.04817151,0.017819345,0.0056433976,-0.008885478,-0.03522738,-0.00018609074,-0.021545319,-0.024497064,0.00068727875,0.012333213,0.010754514,-0.012714279,0.0076394547,-0.03428379,-0.002224394,0.028307717,0.026638288,-0.033146646,-0.022222769,0.018012902,-0.023275234,0.032565974,-0.0077846223,-0.005549643,-0.01865406,0.013065101,0.008093104,0.009611317,0.034622516,-0.024702718,-0.025041442,0.0012974371,-0.008050763,0.0061030956,-0.012448138,0.043501947,0.006296653,0.004258255,0.047300503,-0.047300503,0.025452752,-0.028452886,-0.04226802,0.021509027,-0.018363725,0.011552936,-0.01784354,-0.0032511535,0.02910614,0.021327566,0.012224337,-0.02149693,0.022174379,-0.016597517,0.015315201,-0.016609615,0.029686812,-0.013379631,-0.0014380683,0.023480888,0.04069537,0.010246426,0.048026342,-0.0066353776,0.0003468527,0.023855906,-0.014250637,-0.0008452999,-0.013270755,0.01387562,0.0062845554,-0.028501274,0.025888255,-0.045800436,0.00010963192,-0.025815671,-0.021509027,-0.017250773,-0.041614763,0.0056343246,0.030823959,0.019391997,-0.02040817,0.048824765,0.017468523,0.013839329,-0.008141493,0.01585958,-0.0012936566,0.009030646,-0.03046104,-0.020674312,-0.040550202,-0.010179891,0.033412784,-0.0041977684,0.0093754195,-0.0050899456,-0.037816208,0.014589362,0.011202114,-0.02852547,0.001820646,-0.026154395,-0.0021956628,-0.023819614,0.024847886,-0.008232223,0.012544916,0.035856444,-0.008474169,0.023638153,-0.0017707446,-0.011637617,0.029662617,-0.011897709,0.008522559,0.015968457,0.038880773,-0.022271158,-0.017178187,0.0029986221,-0.0046030283,-0.015835386,0.0068773236,-0.004636296,0.023093775,0.006538599,-0.009248397,0.0066232802,0.008274564,0.020117836,0.0062785065,0.035880636,-0.06019624,0.023468792,0.019488774,-0.0037955327,0.025380168,-0.043066442,0.0040495764,-0.012508624,0.0073551675,-0.040453423,0.03568708,0.032057885,0.0017646959,0.028694833,0.0018357676,-0.030243289,-0.036533892,0.01504906,0.054921813,-0.02429141,-0.0017480621,-0.012169899,0.0015892849,-0.008837089,0.00000663344,0.010621442,0.015266812,-0.0006952176,0.017383842,-0.006574891,0.0016694295,0.024351895,-0.0005160261,0.008710067,-0.05385725,-0.027920604,0.012629597,0.037792012,-0.008601191,-0.02131547,-0.03699359,-0.0060214386,0.0036201216,-0.03626775,-0.004028406,-0.025114026,-0.018811325,0.003568708,-0.0459698,0.04352614,-0.036872618,0.00028806733,-0.0047875126,-0.008818943,-0.08545543,0.008837089,0.02717057,-0.019658137,0.0014471414,-0.017432231,-0.014528876,0.02014203,-0.016186208,-0.00932703,-0.020033155,-0.011044849,0.016803171,-0.049598992,-0.001572651,-0.01446839,0.00838344,0.022900218,0.032832112,-0.006732156,-0.015484564,0.04122765,0.0024073657,0.07021282,-0.011401719,-0.0007647771,-0.02925131,0.02293651,0.045703657,-0.01437161,-0.0026719945,0.0012808032,-0.034017652,0.012641694,0.029009363,0.0048056585,-0.008068909,0.025210805,-0.013718355,-0.02487208,0.00092015206,0.0037259732,-0.032735337,-0.008431829,-0.0035082214,0.006411577,-0.0012535843,0.012823154,-0.030727182,0.028815806,-0.0115347905,-0.03851785,-0.032348223,-0.033412784,0.09005242,0.028549664,-0.016924145,-0.010282718,-0.004551615,-0.033775706,0.0029865247,0.0043368875,-0.0073612165,0.0037743624,0.0050113127,-0.042558357,-0.033485368,-0.017262869,0.00024156827,-0.017504815,0.009200009,0.035590302,0.026372148,-0.015617634,0.022452617,0.0054075,0.038154934,-0.015786996,-0.014891795,0.011353331,-0.016549127,0.034428958,-0.0041161114,0.005785541,-0.0036715353,0.026033422,0.01428693,-0.0038136786,0.0023196603,0.007185805,0.024751106,-0.015871678,-0.02113401,-0.00022795878,0.036921006,0.016174112,0.012175947,0.012738473,0.007893498,0.0018932299,0.029372282,0.014964379,-0.0015295543,-0.008329001,-0.026396342,-0.023843808,0.005032483,0.019234732,0.040864732,0.011020654,-0.02654151,0.016488642,0.0069922484,0.02779963,0.017057214,0.0010335643,0.03996953,-0.01360948,-0.0106093455,-0.009429857,-0.008389488,0.03014651,-0.015375688,-0.009907701,0.00730073,0.04258255,-0.013137684,0.023154262,-0.019573456,-0.023783322,-0.032275636,-0.017674178,0.008552802,0.025065638,-0.028041577,-0.0059004654,-0.01212151,0.0016074307,-0.0050082887,0.027388321,0.0003992114,-0.028331913,0.01739594,-0.015399883,0.0025918498,-0.030727182,0.005168578,-0.0016588444,-0.008728213,-0.0050264345,0.015424077,-0.011927953,-0.031090101,-0.04294547,-0.051195838,0.041808322,-0.023541376,-0.004875218,0.0012815594,0.013077198,-0.00450625,0.054776642,0.008673775,-0.006205923,-0.002437609,-0.025815671,-0.027460907,-0.005262332,-0.01829114,0.051002283,-0.0043520094,-0.008982257,0.019065369,-0.014516778,-0.016887853,0.01896859,0.030630402,0.026226979,-0.008304807,0.024593841,-0.03667906,-0.0041130874,-0.015738606,0.018726645,0.038687214,0.005861149,0.0033902726,0.022912316,-0.042558357,-0.012145705,0.007863255,0.05322819,0.020178322,0.013669967,0.0057704193,0.003937676,-0.027460907,0.032832112,-0.01941619,0.0008891527,-0.008480218,0.051389396,-0.030872349,-0.011552936,0.0009594683,-0.031090101,-0.019367801,0.02040817,-0.022658272,0.010010528,0.013113489,-0.0067623993,-0.022416325,-0.009024598,0.03459832,0.008552802,-0.046961777,0.0016497714,0.04069537,-0.002492047,-0.014032885,-0.012363456,0.014274832,0.044372953,-0.016597517,0.036824226,0.009448003,-0.010663783,-0.017141895,-0.00561013,0.051728122,-0.016137818,0.023988977,-0.009998431,0.06556745,-0.013258657,0.0075668707,0.0045092744,0.034138624,-0.00038106545,-0.0141659565,0.0064236745,-0.0024875104,-0.030702986,0.007052735,-0.035614498,0.017020922,0.042727716,0.0070406375,0.018896006,0.01640396,0.011577131,0.046889193,0.055986375,0.008443926,-0.037211344,-0.029928759,0.010621442,0.0028020407,0.023795418,0.0026130201,-0.0075184815,0.0063027013,-0.018545184,-0.010107307,-0.003145302,-0.027146375,0.031090101,-0.021363858,-0.030170705,-0.020686409,0.0016361619,-0.001894742,-0.0039497735,0.002684092,-0.017020922,-0.010058918,0.006732156,-0.011686007,-0.003181594,-0.018859714,-0.002334782,-0.04079215,-0.01771047,0.018569378,0.03902594,-0.02847708,-0.027146375,0.019355705,-0.062518924,0.025501141,-0.003357005,-0.020263003,0.0052320887,0.00042643037,-0.009079035,-0.010784756,0.02100094,-0.0075366274,-0.02293651,-0.032106277,-0.02040817,0.0068531292,0.02009364,-0.013234463,0.01729916,-0.0034386618,0.046550468,-0.026952818,-0.0073551675,-0.03735651,-0.019791208,0.012357407,0.012369505,-0.023904296,0.030340066,0.0028942828,-0.051292617,-0.0046665394,0.01865406,-0.00220776,-0.0041433307,0.020795286,-0.020069446,-0.016694294,-0.010887584,0.024037365,-0.0151095465,0.02230745,-0.009230251,-0.0037048028,-0.022718757,0.019585554,0.0082927095,-0.005213943,0.03631614,-0.035154797,-0.008329001,-0.018145973,0.01883552,0.0017329404,-0.016258791,-0.037187148,0.0034658809,0.028186744,-0.03292889,0.026009228,-0.0044457633,-0.024569647,-0.0016603565,0.05758322,-0.004028406,-0.045921408,0.03699359,0.007857206,0.0019174245,0.012375553,0.00022909291,0.0017465499,-0.006009341,-0.004857072,0.007004346,0.03343698,-0.018315336,0.02920292,-0.019525068,-0.0072886324,0.005637349,0.027460907,-0.044663288,0.031186879,0.006118217,0.008764505,-0.02288812,-0.0058883685,-0.027630268,0.0051474078,-0.0023620008,0.01473453,0.032445,0.019549262,0.0090669375,-0.017178187,0.0045425417,-0.038106542,0.026081812,0.0052653565,-0.024182534,0.013319144,-0.026420537,0.026275368,0.0013170952,0.024763204,-0.010427886,-0.0012475357,0.011214212,0.0071253185,0.0062664095,0.0051746266,-0.033098254,-0.008099153,-0.023214748,-0.007996325,-0.021049328,-0.01775886,-0.007578968,0.025452752,0.052889463,-0.0017646959,0.0016180159,-0.012653792,0.029928759,-0.001112197,-0.003732022,0.044179395,0.02884,0.021388054,0.00721,0.028985167,0.015641829,0.00026689703,-0.0046241987,0.007760428,0.015956359,-0.024460772,0.034041844,-0.012411846,-0.015520856,-0.0021941506,-0.00096249266,-0.0008498364,-0.010125453,-0.013004614,0.01342802,-0.02825933,0.025138222,0.025065638,-0.033678927,-0.012992517,0.025864061,0.015472466,-0.0007579724,0.0238801,-0.03636453,0.0135489935,0.0044578607,0.0072160484,0.009925847,-0.013028809,-0.024158338,-0.0037017786,0.005746225,-0.010355302,0.005879295,-0.013282852,-0.0035898783,0.039993726,0.015520856,-0.02063802,-0.028017383,-0.010815,-0.0005878539,0.019234732,0.0007583505,0.008159639,-0.020601729,0.011788834,-0.02690443,-0.01703302,0.00014932624,-0.004693758,0.01662171,0.0048540477,0.008740311,0.013040906,0.008800797,0.005213943,-0.006732156,0.040114697,0.018896006,-0.011619471,0.04200188,0.0028080894,-0.005398427,0.0064176256,-0.00007782921,-0.014686141,-0.008619337,-0.007651552,0.026589898,0.027654463,0.0067744968,-0.019573456,0.009907701,0.0078027686,0.029807786,0.004802634,-0.054050803,-0.019525068,-0.0045002014,-0.052260403,-0.007349119,0.009314933,-0.0032541777,0.036509696,0.0071616108,-0.008062861,-0.015968457,0.023311527,0.027001208,-0.004330839,0.0093633225,-0.044010032,-0.016028943,-0.004110063,0.003081791,0.012181996,0.004651418,-0.013657869,-0.018896006,-0.04722792,0.0069317617,-0.009514539,0.004200793,0.018254848,-0.0014849454,0.0075668707,-0.0055435947,-0.020710604,-0.024944665,-0.010772659,-0.040985703,0.004572785,0.0121517535,-0.0068349834,-0.016706392,-0.022501007,-0.013851426,-0.008050763,-0.01504906,-0.0015786997,0.0039225547,0.010663783,-0.02946906,-0.02429141,0.033582147,0.005794614,-0.0028549663,0.010349253,0.030799765,-0.037695233,-0.021533221,-0.025114026,-0.021146107,0.004536493,0.011456158,-0.027993187,0.021037232,-0.042824496,-0.0020641044,0.0012997054,0.011631569,0.019525068,-0.00869797,0.014032885,0.008589094,-0.01797661,0.0028625273,-0.023335721,0.035662886,0.0010275157,-0.020879967,0.030944932,-0.05124423,-0.005655495,0.03261436,0.033485368,-0.0146377515,-0.005827882,-0.018545184,0.008891527,0.017456425,-0.01221224,0.011655764,0.021327566,-0.00369573,-0.04299386,0.029541643,-0.005162529,0.006962005,0.0038197273,-0.0014153859,-0.021557417,-0.03614678,0.008068909,0.026130201,-0.0043610823,0.0026417512,-0.009024598,-0.007070881,0.010107307,-0.008679824,0.012677986,-0.017020922,0.0009420784,0.015690219,0.0010328083,-0.012472332,0.004240109,-0.031743355,0.031090101,-0.0009065426,0.016162014,-0.0019355705,-0.028501274,0.015375688,-0.025743088,-0.0071132216,-0.0048600966,0.008583046,-0.049453825,0.031332046,-0.029662617,0.026977014,0.008667726,0.019210536,-0.008607239,-0.010899681,0.017637886,-0.040259864,0.039703388,0.009804874,0.029638423,-0.00029222577,0.0047875126,0.009593171,0.003955822,-0.021775167,0.04347775,-0.028452886,0.0054044756,-0.004221963,-0.0077120387,-0.040719565,0.051486176,0.027243154,-0.030243289,-0.014770822,0.0007012662,0.011583179,0.025743088,-0.030896543,0.042872887,-0.02779963,0.0056252517,0.0019582529,-0.007439849,-0.030412652,-0.035566106,-0.006816837,-0.018133875,-0.027025402,-0.01167391,0.03321923,0.007464044,0.042727716,0.002417951,0.013125587,-0.009054841,-0.032154664,-0.00014923172,0.0025132173,-0.0042884983,-0.0018781082,0.014008692,-0.009151619,0.008552802,0.026517315,0.016198305,0.023843808,-0.0052835024,0.0061030956,-0.047397282,-0.014867601,0.006484161,-0.0061696307,-0.0067744968,-0.011438011,-0.007663649,0.013682064,-0.011516645,-0.017093506,-0.018375821,-0.040864732,-0.0024270238,0.025138222,0.055889595,0.0063571394,0.019718625,-0.020129932,0.014565168,-0.007155562,-0.023468792,0.005870222,0.057438053,0.030025536,0.031186879,0.0017707446,0.021412248,0.009036695,0.008214077,-0.017190285,0.057970334,0.014311124,-0.0029018435,0.049139295,0.016791074,-0.027678657,0.018605672,0.04969577,-0.00024950714,0.03292889,0.015145839,0.04321161,-0.051824898,0.007603163,0.0060395845,0.0024406335,-0.02397688,-0.022730855,0.032324027,-0.018436309,0.021956628,-0.030001342,0.0022667344,-0.008867332,-0.008419732,-0.008401586,0.01243604]},{"id":"interface-MessageCollectorOptions","type":"interface","source":"main","text":"Interface: MessageCollectorOptions\nProperties: filter: (message: Message) => boolean, max: number, time: number","meta":{"url":"/docs/typedefs/MessageCollectorOptions"},"embedding":[-0.035482116,-0.011388575,0.0053772675,0.013417505,-0.028549938,0.019443909,-0.021786839,-0.012348694,-0.011285921,0.012252077,0.04463645,-0.050240163,-0.007946641,0.04893585,0.027197318,0.016086513,-0.009136221,0.015072049,0.03533719,0.040047206,0.0123547325,0.0011057968,0.056182027,0.009420031,-0.03867043,-0.018707214,0.022765074,0.05685834,0.018876292,-0.022016302,-0.000882373,-0.029781789,-0.017378747,0.042245213,-0.022728842,-0.008550489,0.028091013,-0.013151811,-0.022644304,-0.004341668,-0.032825183,-0.00020719538,0.009727993,-0.0050240164,-0.0057335375,0.021895532,0.020011526,0.0078983335,0.0030917022,0.038887817,-0.022644304,-0.011684461,-0.0013850766,0.0732347,0.027777012,-0.036085963,-0.039539974,0.016436744,0.043356292,0.0035234536,0.011521421,-0.011086651,-0.0008084016,-0.00093520974,-0.0044533797,0.03502319,-0.03243872,0.059563577,0.0040488015,0.04185875,0.0036140308,-0.024830233,-0.01590536,-0.0133812735,0.00803118,0.038187355,0.01911783,-0.026641779,0.01760821,-0.03149672,-0.010084263,0.0021406414,-0.052172475,-0.006666483,-0.010192956,-0.030699637,-0.013031042,0.015555127,-0.021291684,-0.034371033,-0.030071635,0.0034691072,-0.05251063,-0.007656794,0.013864352,-0.06168912,0.010706226,-0.02472154,-0.04014382,0.04456399,0.036472425,-0.06347651,-0.029153787,0.017982597,-0.017390825,-0.0060626348,-0.008176103,-0.02635193,-0.043791063,0.0064974055,-0.00480965,-0.020253066,-0.034032878,0.007282408,-0.012366809,-0.022801304,-0.025265004,0.015881205,0.03137595,-0.007131446,-0.030675484,-0.0633799,0.02456454,0.029805942,-0.020808605,-0.012197732,0.0022629208,-0.023103228,-0.06458759,0.04154475,0.0138401985,0.016907746,0.03765597,-0.010398264,0.042051982,-0.045336913,-0.0065577906,0.017946366,-0.009160375,0.0027339223,0.025772236,0.0041242824,0.01665413,0.02683501,0.0028758266,0.01280158,-0.028767323,0.043718603,0.024310924,0.0017904096,-0.023465537,-0.0027203357,-0.005787884,0.03668981,0.0041333404,0.009625339,0.053138632,0.031859025,-0.028018551,-0.02973348,0.02917794,-0.004229956,-0.03347734,-0.026545163,-0.025434082,0.02357423,0.017704826,0.012427194,-0.024359232,0.08951444,0.036110118,-0.05096478,-0.00024833254,-0.044539835,0.0012884609,0.0074152546,-0.034250263,-0.024298847,-0.032704413,0.018634751,0.060094964,-0.008635027,-0.0077292556,-0.049515545,-0.0027550568,0.02714901,-0.028091013,-0.0048036114,0.012264155,-0.05255894,-0.014033429,0.016026128,-0.0042722253,0.036544885,0.014613124,0.006231712,0.028453322,-0.010947766,-0.030675484,-0.06690637,-0.006744983,0.0113100745,0.06149589,-0.006654406,-0.0067087524,0.031182716,0.028284244,-0.00070687965,0.014516508,-0.033573955,0.03792166,0.045095377,-0.021062221,-0.027752858,-0.031424254,-0.018151674,-0.01904537,-0.035844423,-0.018465675,-0.029685173,-0.01844152,0.018187905,0.06874207,-0.029926712,0.02206461,0.0063887127,0.015639666,-0.009051683,-0.0335498,0.028453322,-0.023199843,-0.031158563,-0.035506267,-0.058694035,0.03946751,-0.008339142,-0.05072324,0.012366809,0.026400238,-0.04289737,-0.047293384,-0.048162926,0.010223148,0.05922542,-0.0430906,-0.0017934289,-0.018067135,0.00044194132,-0.042003673,0.024153924,-0.0021376223,0.0044503603,-0.00089369516,-0.03978151,0.035965193,-0.01764444,-0.0212313,0.01840529,-0.008037218,-0.019588832,0.0310861,-0.028115168,-0.014480277,-0.035675347,0.0029875385,-0.015398126,0.0434046,-0.019830372,-0.0031852988,0.017427055,0.025579005,0.0136107365,0.048114616,0.0014175334,-0.02961271,0.020663682,0.024310924,0.011177228,-0.018501906,0.003780089,-0.03214887,-0.018731369,0.036858886,0.0002532388,-0.005211209,-0.0065819444,0.071254075,0.0071374844,0.07676117,0.023670845,0.020603297,-0.011322152,0.05033678,-0.02357423,-0.018779676,0.023755385,0.03970905,-0.010289571,0.048332002,-0.022040455,0.021436607,-0.035530422,0.015277357,-0.08081903,-0.0031037792,0.043356292,0.027197318,-0.0035596846,0.028670708,-0.04185875,0.0039219935,-0.03668981,-0.062220506,-0.022487303,-0.014564816,-0.019226523,0.04185875,0.02098976,-0.0067751757,0.00043212879,0.026810855,-0.022088764,0.007934564,0.016195206,-0.011116844,-0.028139321,0.031786565,-0.01514451,0.03840474,0.032728568,-0.021050144,-0.020373834,-0.03871874,0.016424669,0.011273844,-0.0144682005,-0.008188181,-0.009444185,-0.043670293,0.035385497,-0.015361896,-0.020240989,-0.054587867,0.018344905,0.014456123,-0.01347789,-0.0026086238,0.017873904,0.016968131,-0.018912522,-0.014902971,0.019649217,-0.0016303898,-0.01852606,0.026424393,-0.028260091,0.011406691,-0.029347017,-0.052848786,0.014347431,-0.020965606,0.044539835,0.015047895,-0.013985122,0.001506601,-0.016303899,-0.12627672,-0.037897505,0.024105616,-0.0060203657,0.030603021,-0.012717041,0.00640079,-0.021448685,0.031593334,0.0053802864,-0.011853538,-0.011509345,0.03668981,0.0044533797,0.034926575,0.013502044,-0.037945814,-0.017632365,0.011026266,0.006642329,-0.009927263,0.024902696,-0.026182853,0.02516839,0.028235937,0.016207283,-0.033839647,-0.001017484,0.04197952,0.025989622,-0.0040216283,0.039539974,0.02241484,0.010549226,0.01816375,-0.0093415305,0.004302418,0.05584387,-0.024335079,-0.028115168,-0.015253203,0.018236212,0.04475722,-0.038525507,0.048162926,0.000522706,0.016364284,0.025047619,0.02062745,-0.02074822,-0.0794181,0.012584195,-0.010820958,-0.028839786,0.0043054367,0.024975156,-0.01335712,0.011068536,0.030264867,0.0036744156,0.057824492,-0.0041967444,-0.04301814,-0.008810144,-0.053186942,0.022281995,0.017813519,0.019105753,-0.0021315839,-0.040844284,0.030917022,0.004667746,-0.014238738,0.048670158,-0.012348694,0.0100118015,0.005120632,0.031472564,-0.0286224,0.031158563,0.020083988,0.0118112685,0.009196606,-0.044902146,-0.07565009,-0.016291821,-0.034153648,0.01920237,-0.048790928,-0.046399686,-0.01542228,0.017898059,0.0035868578,-0.039346743,-0.012535887,-0.019178215,0.022728842,0.025144234,0.039105203,0.048066307,-0.0042027826,-0.009087914,0.02194384,0.08226827,-0.009365684,-0.013598659,0.020410066,0.017125132,0.030144097,-0.045240298,0.049902007,-0.0043628025,0.010875304,-0.029347017,0.017149286,-0.0023867097,0.0023701037,-0.008653143,0.0014598027,0.090142444,0.041134134,-0.017197594,-0.03231795,-0.003689512,-0.009311338,0.025844699,-0.03557873,-0.012046769,0.0085686045,0.0017209671,-0.037825044,-0.021279607,0.0028094032,-0.04086844,0.021134684,-0.056278642,0.027680397,-0.0016469957,0.04881508,0.018610599,-0.03982982,-0.0008869019,-0.03661735,0.048525233,0.00072990137,0.023550076,-0.0430906,-0.005911673,-0.024975156,0.011485191,-0.014431969,0.014625201,-0.022535611,0.03125518,0.05705157,-0.03089287,0.00058648747,0.0025437102,0.0017300248,0.0009880464,-0.053766634,-0.020144373,-0.014854663,0.026400238,0.016183129,-0.038259815,-0.0415689,-0.0009774792,-0.021086376,-0.037197042,-0.0019368428,-0.00333928,0.0016364283,-0.02388823,-0.0067208293,-0.026448546,0.008121757,-0.012463424,-0.03780089,0.017088901,-0.0011948644,0.042486753,-0.004392995,0.011539537,-0.031037793,0.0060445196,0.042172752,-0.011563691,0.024009,0.011829385,0.019323139,0.0307721,0.007270331,-0.019697525,0.007252216,-0.017922211,0.039056893,-0.008961106,-0.015265279,-0.00866522,-0.0019096696,0.016026128,0.01335712,0.015844975,-0.0013292206,-0.005676172,-0.033887956,0.015881205,0.034926575,-0.008061372,-0.038936127,-0.02047045,-0.01609859,-0.03009579,0.014601047,-0.00039287866,0.014021353,0.031665795,-0.008339142,-0.019021215,0.0036864926,0.045819994,-0.012547963,0.015772512,0.019528447,-0.0140092755,0.023827845,-0.01307935,-0.040288746,-0.01152746,0.021170914,0.035119805,-0.020820683,-0.00042080664,0.04917739,0.0059146923,-0.015687974,-0.0069019836,0.06777591,0.04166552,0.01574836,-0.009981609,0.008689374,0.018840062,-0.009752147,0.014274969,-0.02059122,-0.05212417,-0.030868715,-0.013151811,-0.004592265,-0.039998896,0.034105342,0.014528586,-0.039105203,0.02702824,-0.03514396,0.007747371,-0.005860346,0.00914226,-0.030603021,-0.045433532,0.026400238,-0.0016288803,0.012861964,0.020047756,-0.0046768035,0.008351219,0.019419754,-0.023852,-0.0004845881,0.068355605,-0.019443909,-0.0030192405,0.050626624,0.0016998324,0.016243514,-0.03630335,0.01045261,0.008580682,-0.016907746,0.005295748,-0.071737155,0.016943978,-0.03796997,-0.027173165,-0.014178353,0.0026705181,-0.002898471,-0.012095077,0.025748083,0.018610599,0.004975708,0.0026901432,0.014540662,0.0047915345,-0.0027731725,0.014419893,-0.018743444,0.007747371,-0.012475502,-0.013900584,-0.016026128,0.019250678,0.014927125,0.038622126,-0.017656518,0.012499656,0.008737682,-0.043501217,-0.004051821,-0.021496993,-0.0022357476,0.0038253777,-0.04137567,0.040216282,-0.058114342,-0.03084456,-0.015241126,-0.02949194,-0.004115225,-0.007366947,-0.01582082,0.009130184,0.0021919685,-0.0064611747,0.03613427,-0.002102901,0.01821206,0.006744983,0.0078983335,0.027100703,0.010440534,-0.0108692655,-0.0074877166,-0.011684461,-0.027583782,0.021327915,-0.0030388655,0.0093837995,0.0058965767,-0.0005076098,0.05545741,0.006636291,-0.048042156,0.024480002,-0.027414704,-0.018670984,-0.013103504,0.031037793,0.019564679,0.009734032,0.023380999,0.015120356,0.019468063,0.0045016874,-0.051302936,0.050626624,-0.015301511,0.010114456,-0.014613124,0.03920182,-0.024202231,0.019528447,0.009589108,0.0038012238,0.0004249581,0.009589108,-0.007699063,0.039177664,0.043428756,-0.02929871,0.016726593,0.014444047,0.008478027,0.04495045,0.030554714,-0.0320281,-0.017209671,-0.03367057,-0.020796528,-0.0039491667,-0.025723929,0.009124145,-0.020385912,0.0074877166,-0.0061200005,0.04388768,0.015675897,-0.034201957,0.0052142283,-0.028767323,-0.017052671,-0.025844699,0.011968269,0.048960004,-0.035361346,-0.012330578,0.0071978695,0.02842917,-0.020023603,-0.000087652326,0.008641066,0.0007642452,0.008967144,0.00640079,-0.0010054071,-0.018864214,0.03478165,-0.02031345,0.00011680686,-0.053090326,-0.03796997,0.005821096,0.033332415,-0.012010539,-0.024323002,-0.04400845,-0.01152746,-0.017076824,-0.032342102,-0.026134545,0.038960278,0.0033211645,-0.0021164876,-0.018018827,0.0076386784,-0.04941893,-0.007052946,0.022306148,-0.01307935,-0.05748634,0.02603793,0.045747533,0.02567562,-0.02194384,-0.01717344,0.0033513568,0.01717344,-0.05584387,0.00568523,-0.025844699,0.012034693,0.016110668,-0.03676227,0.019782064,0.009806493,-0.008574643,0.034757495,0.044733066,0.007131446,-0.0317141,0.032293797,-0.03458842,0.07932149,-0.010814919,-0.0007895314,-0.020615375,0.024069386,0.03434688,-0.017318364,-0.00013596017,-0.005232344,0.004045782,0.03188318,0.027052395,0.008918837,-0.0021436608,-0.0026418355,-0.032100566,-0.026448546,-0.018695137,-0.008761836,-0.022402765,0.0044382834,-0.012922349,-0.0058331727,-0.0030147117,0.008659182,-0.016364284,0.0055704988,-0.034685034,-0.0009374742,-0.015168664,-0.025120081,0.043259677,0.023670845,-0.013393351,0.009124145,-0.010549226,-0.034322727,0.0070106764,0.04610984,0.039346743,-0.032970104,0.010078224,-0.035240576,-0.043187216,-0.02293415,0.024733618,-0.030192405,-0.009546839,0.009413992,0.045336913,0.017584058,0.012922349,-0.0007087667,0.022016302,-0.02222161,-0.0055795563,-0.011364421,-0.0084417965,0.0032185104,0.004344687,-0.021243377,0.008182142,0.041206595,-0.0045681107,-0.010736419,0.008447835,-0.02997502,0.057969417,-0.013719428,-0.01458897,0.012620425,0.023586307,0.01594159,-0.003115856,0.024057308,0.004181648,-0.0032366258,-0.004607361,0.01609859,0.011219498,-0.027921936,-0.01307935,-0.03212472,0.009878955,0.022052532,0.051592782,0.020216834,-0.015398126,0.013719428,0.00067744206,0.05342848,0.037414428,0.0051538437,0.06038481,0.004797573,-0.004302418,-0.00918453,0.021472838,-0.002711278,-0.01844152,-0.043138906,-0.009347568,0.023707077,-0.013997199,-0.034008726,-0.025844699,-0.010935689,-0.03772843,-0.019105753,0.02702824,0.01812752,0.006189443,0.000033235232,0.0039853975,-0.014335354,-0.02702824,0.008900721,0.019154062,0.004682842,0.025699776,0.011835422,0.006328328,-0.008918837,0.0073186387,-0.015289434,-0.025506543,-0.004634534,0.026810855,-0.042824905,-0.0066845985,0.024347154,-0.04726923,0.05569895,-0.029902557,-0.007481678,-0.0030584906,0.034201957,-0.0019534486,0.04265583,0.0038072623,-0.025289157,-0.017378747,-0.038187355,-0.021895532,-0.01021711,0.008949029,0.06444267,-0.02047045,-0.0132121965,0.010748496,-0.021859301,-0.000034367447,0.047704,0.023839923,0.035530422,0.019963218,0.009915186,-0.023537999,0.027414704,-0.017596133,0.0015700051,0.033718877,0.0014114949,-0.020132296,0.051447857,-0.039177664,-0.007469601,0.02286169,0.041013364,0.055988796,0.021859301,-0.0030358464,0.040506132,-0.009631377,0.04149644,-0.008399527,0.019468063,0.030361483,0.010313725,-0.02516839,-0.012475502,0.00060913176,-0.025023466,0.014178353,-0.01037411,-0.022885842,0.036399964,-0.020325527,0.016122743,-0.02074822,-0.029202094,0.012717041,0.0132967355,-0.023755385,0.016883593,-0.000058167556,0.033259954,-0.010150687,-0.0043899757,0.022463148,0.03176241,-0.02365877,-0.0066966754,0.041448135,-0.009903109,-0.027559627,0.01927483,0.04333214,-0.00401559,0.03485411,-0.019093677,0.065698676,-0.012946503,0.008435758,0.015518896,0.048670158,-0.011611999,0.00906376,-0.0020259104,-0.037100427,-0.017825596,-0.0042782635,-0.008393489,0.0030871734,0.027559627,0.011738807,-0.010965882,0.02524085,0.012300386,0.0026493836,0.043984294,0.007179754,-0.019588832,-0.032970104,-0.0069080223,0.0006193217,0.035602883,-0.00016209547,0.0024199213,0.013405427,-0.021195069,0.017547825,0.024214309,-0.02603793,-0.0017058708,-0.0038012238,-0.011436883,0.0072280616,0.0314001,0.011672384,0.0140092755,-0.03188318,-0.024262616,-0.017282132,-0.007862102,-0.03854966,-0.011672384,-0.04173798,0.002767134,-0.034250263,-0.035627037,0.00039853973,0.012463424,-0.009643454,-0.03299426,0.016871516,-0.022595996,0.011557653,0.03096533,-0.024516232,0.023465537,-0.0017889,0.010573381,-0.028525785,-0.015072049,-0.01972168,0.028018551,-0.037390273,0.003115856,-0.009401915,0.015881205,-0.000005333795,-0.010688111,-0.0010657919,0.047848925,-0.014407815,-0.012789503,-0.036230884,0.00401559,0.020240989,-0.021786839,-0.008447835,0.0005959226,0.005576537,-0.023453461,-0.0071012536,0.027124856,0.027221473,-0.006551752,-0.003475146,0.0053289593,-0.024516232,-0.0024591715,0.035892732,0.01105042,0.009432107,0.032656103,-0.019069523,-0.026062084,0.034564264,-0.0020802566,-0.01836906,0.009371722,-0.03374303,0.014915048,-0.016328052,0.02206461,-0.0027550568,0.02726978,-0.0424626,0.00882222,0.012016577,-0.014021353,0.0015700051,0.03963659,-0.02059122,-0.008133834,0.046737842,-0.00496967,-0.05927373,0.025579005,0.004033705,-0.0011692009,-0.0076326397,0.011159113,0.016823208,-0.009486454,-0.02055499,-0.0061592506,0.019468063,-0.011962231,0.006443059,0.0135261975,-0.013731506,-0.013502044,0.036593195,-0.032390412,0.013816045,0.0051900744,0.022716766,0.011841461,-0.019769987,-0.020023603,0.00202742,0.0014484806,0.018260367,0.01880383,-0.0038585893,0.0059690382,0.017716903,-0.0075179087,-0.036230884,0.009800455,-0.003677435,0.019311063,0.023405151,-0.033767186,-0.013876429,-0.011056459,-0.021134684,-0.00862899,0.00473115,0.025192542,-0.016026128,0.020542912,0.016291821,-0.03995059,-0.003529492,-0.032704413,-0.0042390134,-0.025820544,-0.0048760734,-0.009039606,0.035723653,0.028525785,-0.00997557,0.01498751,-0.028356707,0.039974745,0.00036287497,0.02047045,0.058452494,-0.0017224767,0.010313725,0.0031702025,0.018199982,0.022704689,0.009848762,-0.018344905,0.015760435,0.008447835,-0.004353745,0.024153924,-0.0169319,-0.032607798,-0.009244914,-0.024504155,0.01363489,0.021955917,-0.01658167,0.01458897,-0.014456123,0.02078445,-0.0061079236,0.003124914,-0.036279194,0.030530559,0.0058844998,-0.020530835,0.028574092,-0.017813519,-0.012656656,-0.018465675,0.00874372,0.0037649928,-0.0097400695,-0.030264867,0.0008197238,0.007397139,-0.020361759,-0.026327778,-0.017547825,0.0049274005,0.022801304,0.0032366258,0.004329591,-0.036907196,-0.0016711496,-0.011775038,0.0192386,-0.014951278,-0.033090875,-0.0027158067,0.026303623,0.008375373,-0.0015458511,-0.01621936,-0.00333928,0.0050240164,-0.0032366258,-0.0073186387,-0.0024244501,0.005540306,0.007270331,-0.003653281,0.0050662854,0.03299426,0.0169319,0.0112678055,0.012270194,-0.028139321,0.009824608,0.010301649,-0.019190293,-0.017209671,0.007445447,0.016086513,0.018683061,0.009679685,-0.0066483677,-0.017378747,0.010712265,0.014951278,-0.0034630687,-0.053042017,-0.022946227,0.009166414,-0.06444267,-0.022704689,0.015180741,-0.016823208,0.044419065,-0.0060052695,-0.010301649,-0.008647105,-0.01323635,0.021303762,0.021641916,0.016328052,-0.033453185,0.008073449,0.010669996,-0.00866522,0.014274969,0.007928525,-0.013139735,0.016255591,-0.006141135,0.013163889,-0.00810968,-0.032945953,0.04475722,0.017100979,0.0064611747,0.0071616382,-0.024383387,0.00064423046,-0.01797052,-0.016243514,0.014830509,0.034757495,0.0004940232,-0.035240576,-0.02929871,-0.017910134,0.014963356,0.011799192,-0.012342655,0.012729118,0.022040455,-0.012306424,0.016871516,0.0044775335,0.009329453,0.004867016,0.0019051407,0.0046013226,-0.03207641,-0.01745121,-0.051254626,-0.02305492,-0.008840336,0.0036381849,-0.040530283,0.030578868,-0.019504294,0.007040869,0.004169571,0.011261767,0.00846595,0.0025723928,0.010126533,0.012765349,-0.02850163,0.013441659,-0.046882767,0.016485052,-0.008894683,-0.031110253,0.021448685,-0.041834597,-0.007795679,0.020687835,-0.002487854,-0.009516646,0.00044269612,-0.03398457,-0.0143112,0.031158563,-0.0053772675,0.01470974,0.035433806,-0.0057909032,-0.060529735,0.021992147,-0.010150687,0.006364559,-0.020796528,0.0013141244,-0.046641227,-0.028984709,0.03939505,0.030192405,-0.015736282,-0.010060109,0.00806741,0.005875442,-0.0028562015,0.0044986685,0.016992286,-0.017125132,-0.0044262065,0.030458098,-0.010060109,-0.014915048,0.0053048055,-0.030482251,0.0009563444,-0.01673867,0.014637277,0.010802843,-0.005899596,0.00043061917,0.021195069,-0.02603793,-0.006618175,0.006563829,-0.0406269,0.007264293,-0.0332358,0.025095927,0.025458235,0.0021436608,0.017282132,-0.043452907,-0.0019504294,-0.030506406,0.010331841,0.045288607,0.016726593,-0.0012431722,-0.0014514999,0.0406269,0.011696538,-0.0434046,0.027777012,-0.015506819,-0.0035687422,0.01280158,0.014081738,-0.007584332,0.053573404,0.027438857,-0.014758048,-0.0057154223,-0.010048033,0.0026524027,0.03470919,-0.0118475,0.0047854963,-0.03152087,0.00050949684,0.026641779,-0.0338638,-0.0013405428,-0.016146898,0.03164164,-0.037414428,0.02317569,-0.013743583,0.0054195365,-0.004797573,0.046254765,-0.040699363,0.024661155,-0.020687835,-0.023622537,0.0068717916,0.0021889494,-0.019697525,-0.0018221117,0.01574836,-0.009842724,0.03287349,0.015844975,0.051834323,0.010977958,0.008049295,-0.025748083,-0.03490242,-0.014480277,0.021170914,0.014951278,0.008834298,-0.0076145246,-0.02973348,0.0063705975,-0.0106820725,-0.021025991,-0.030868715,-0.015494742,-0.0060626348,0.02702824,0.03318749,-0.0005887519,0.04098921,0.0062800203,0.017270055,0.04130321,-0.010935689,-0.015373972,0.038453046,0.040723518,0.024383387,0.009329453,0.00798891,0.031931486,0.00846595,-0.02480608,0.027873628,0.011883731,0.020096065,0.031786565,0.02560316,-0.01729421,0.01232454,0.030917022,-0.014105892,0.002516537,-0.014733894,0.0050149583,-0.019963218,0.022849612,0.006841599,0.043549526,-0.0217023,-0.020265142,0.02702824,0.004495649,0.009933301,0.005507095,0.023393076,-0.0033241839,-0.0038887816,0.015265279,0.017040594]},{"id":"interface-MessageEditOptions","type":"interface","source":"main","text":"Interface: MessageEditOptions\nDescription: Options for editing a message (content and/or embeds).\nProperties: content: string, embeds: (APIEmbed | EmbedBuilder)[]","meta":{"url":"/docs/typedefs/MessageEditOptions"},"embedding":[-0.003764616,-0.009422994,-0.000643981,-0.008751014,-0.02020013,-0.011902194,0.036510922,-0.012910164,-0.009407722,-0.016687507,0.0014139583,-0.05098904,0.041662768,0.01080259,0.013897771,-0.025677787,-0.012380725,0.050744683,0.023498941,0.016382061,0.03119617,-0.011026584,0.014600296,0.055061646,0.0028024625,-0.003698436,0.0019904866,0.0064958083,0.011973465,-0.0130425235,0.020271402,-0.017980559,0.048830558,0.026309041,-0.00008415661,0.009967705,0.019691054,0.03516696,-0.006246361,-0.009412813,-0.03777343,0.012380725,-0.052251548,-0.009779347,-0.049197093,0.041112967,-0.008527021,0.04013554,0.029709667,0.014865016,-0.013989405,0.00018788081,-0.0024181104,-0.009092095,0.018011104,-0.029770756,-0.036286928,-0.004675862,-0.017166039,0.0025326523,-0.012370544,-0.01509919,-0.020403761,-0.018815445,0.010578597,0.012085461,-0.08454732,0.01596462,-0.01898853,0.04078716,0.04255874,-0.040359534,-0.037264355,0.04288455,0.027795542,-0.037529074,-0.031908877,-0.03873049,0.004910037,-0.038893398,-0.0011193305,0.029241318,-0.094728835,-0.03435244,-0.023600757,0.0058950987,-0.019273613,0.00979462,0.0023850205,-0.008364117,-0.0751396,-0.013246154,-0.05978587,-0.013795956,-0.0038995212,-0.04724224,-0.020240856,-0.008577928,-0.018509999,0.06642422,0.06915287,-0.049767256,-0.0760763,0.017980559,0.014783563,-0.048219666,0.010313877,0.03616475,-0.013358151,-0.024720725,-0.008552475,-0.011881831,-0.03300848,0.013307244,0.024415279,-0.05978587,0.024272738,0.021055378,0.009051369,-0.04712006,-0.045816828,-0.05428785,0.06479517,0.028162077,-0.022847325,-0.004342417,-0.029607853,-0.029750394,-0.050418872,0.028243529,0.006933613,0.007096518,0.02080084,-0.005574381,-0.026288677,0.013246154,-0.028569337,0.039097026,0.00038562497,-0.020016864,0.058482636,0.0011180579,-0.011698564,0.013398876,-0.023824751,-0.0114033,-0.028324982,0.012879619,-0.000035098394,0.039667193,-0.026003595,0.008084125,-0.01973178,-0.011046946,-0.014376302,-0.008155395,0.021177556,-0.033863727,-0.0030137291,-0.021829173,0.01886635,-0.018805262,0.0032962663,-0.009952433,-0.02818244,-0.006923432,0.060559664,-0.008842648,-0.019976137,0.020760113,-0.012095642,-0.029200591,-0.05823828,0.03630729,0.0048413114,-0.011413481,-0.0049736714,-0.026268315,-0.012798168,0.066546395,0.019762326,0.019405972,-0.027632639,0.017950015,-0.039158117,0.02388584,-0.043780524,-0.001989214,0.013398876,-0.05502092,-0.03549277,-0.021320097,0.0109145865,0.029017324,-0.031012902,-0.0054165674,0.014386484,0.012726896,-0.008969917,-0.057668116,0.062147982,0.035390954,0.03602221,0.018214734,-0.013877409,-0.013979224,-0.01603589,0.03818069,-0.029302407,0.011780015,0.039137755,0.0114033,-0.0047751316,0.01194292,0.012217821,0.020027045,0.0041973307,-0.0017104949,-0.053595506,-0.01254363,-0.030564915,0.025718512,0.09049333,0.010436055,0.0154249985,0.02127937,-0.066383496,0.026919931,-0.054980192,0.021564454,-0.00966226,0.0074121444,-0.048830558,-0.028630426,0.014977012,0.027347555,-0.07143353,-0.0029220956,0.03188851,-0.020281583,0.013948679,-0.015465725,-0.011800379,-0.0049634897,-0.00933136,0.023030592,0.015648993,-0.023295311,-0.04528739,0.033599008,0.052210823,-0.010884042,0.045735378,-0.03549277,0.025148347,-0.057016496,0.0017092222,0.028834058,0.021157194,0.021299735,0.040339172,0.0064958083,-0.02227716,-0.02107574,0.007641229,0.0055591087,0.011362573,0.021238646,-0.021116467,-0.037691977,-0.00082088483,0.013857045,0.022888051,0.048016034,-0.019813232,0.0036678917,-0.013521055,-0.011036765,-0.023661846,0.006770709,-0.07644283,-0.041377686,0.009183729,0.023132408,-0.012268729,0.011291303,0.045450293,0.021035016,0.021462638,0.042436566,0.034006268,-0.023315676,0.053839862,-0.038608313,-0.017939834,0.00905646,0.03677564,-0.021706995,0.07900857,0.034250624,0.011729108,-0.035716765,0.031094354,-0.031908877,0.014641022,-0.035533495,0.052658807,0.031155443,0.06528389,-0.022317886,0.032662306,0.0005396204,-0.032417953,-0.007071064,-0.045205936,0.027266104,0.049563628,0.03280485,-0.044106334,0.01704386,0.0011696018,0.020953562,-0.041479502,-0.05013379,-0.029078413,-0.036857095,0.011128399,0.0034922604,0.034718975,0.012645445,0.0102426065,0.009076823,0.00043080546,0.013551599,0.015852623,0.0011893285,-0.014009768,0.05172211,0.030911086,0.031521976,0.009825164,-0.01932452,0.0045078667,0.0125741735,-0.024211649,-0.064917356,-0.084710225,0.060437486,0.0043984153,0.01321561,-0.012737079,-0.006877615,-0.017278034,-0.03247904,-0.004986398,-0.013297061,0.0156999,-0.02127937,-0.061374187,-0.00052402995,-0.00048012217,0.0038995212,-0.006399084,0.047405146,0.025046533,-0.023865476,-0.053799137,0.0295264,-0.0030239106,-0.037671614,0.03025947,0.04227366,-0.0014954103,-0.0026675574,-0.016005345,0.016748596,0.035553858,-0.023295311,-0.010008432,-0.026390493,0.048952736,0.039748643,-0.053432602,-0.0007788861,-0.0053198426,-0.014936286,-0.003362446,0.0052333,-0.014956649,0.03535023,0.016483877,0.020016864,-0.08511748,-0.018509999,0.029668942,0.025779601,-0.008618655,0.0209332,0.00825212,-0.021259008,0.019375427,-0.0142337615,-0.009458629,0.02180881,-0.0050958493,-0.061211284,0.028752604,0.023987655,0.012696352,-0.02865079,0.04288455,-0.030218743,0.020831384,0.046386994,-0.00295264,-0.03321211,0.042395838,-0.026085047,0.018204553,0.014030131,-0.01589335,-0.019762326,-0.023967292,-0.0012313273,0.046997882,-0.023519306,0.011036765,-0.009341543,-0.04219221,-0.06455082,-0.04817894,0.06923432,0.052577354,0.022256797,0.020220494,-0.038832307,0.03771234,-0.00295264,-0.014600296,0.033049207,-0.03402663,0.017797293,0.03946356,0.014223579,-0.025983233,-0.025413068,0.0045664106,0.020098316,-0.008135032,-0.052903164,-0.021177556,0.024639271,-0.020454668,0.01831655,0.00037767066,0.0014343213,0.021177556,0.01509919,0.039280295,0.008562656,-0.003059546,0.013928316,0.01435594,0.019273613,0.011179306,0.01295089,-0.018428547,0.03219396,-0.008985189,0.021401549,-0.016718052,0.011820742,0.011230214,-0.0037926151,-0.011362573,-0.049645077,0.006918341,-0.018815445,0.006602714,0.019293975,-0.011260758,0.049970888,-0.0021610272,0.021930989,-0.013694141,0.06556897,0.005676196,-0.011301484,0.010619323,-0.011332029,0.008471022,-0.008150305,-0.059460063,-0.006093638,0.027673364,-0.04435069,-0.046794254,-0.022908414,-0.0031893603,-0.012482541,-0.0073561464,-0.008547384,-0.038099237,0.0010283332,0.043943428,0.007071064,-0.038934123,-0.028060261,-0.02294914,0.01589335,-0.024944717,-0.011871649,-0.008990279,0.009422994,0.006816526,0.0057729203,-0.030585278,0.030768545,-0.014315213,-0.013022161,-0.0020948472,0.007615775,0.047730953,-0.018306369,0.017064223,-0.03188851,-0.04903419,-0.035065144,0.0142846685,0.00026742392,-0.027306829,-0.024944717,0.013928316,0.021747721,-0.03443389,-0.030503826,-0.00076679554,-0.017502028,0.048016034,-0.049197093,-0.028304618,0.020027045,0.020627754,0.02180881,-0.045043033,0.044717222,-0.007198333,0.036694188,-0.016320972,0.0218699,-0.00096024433,-0.03797706,0.044595048,-0.012625081,-0.0049838526,0.038893398,-0.0062769055,-0.008527021,-0.0011848741,0.023173133,0.0112811215,-0.05355478,0.010120428,0.0022717512,-0.014997375,0.024333827,0.008562656,-0.008043399,-0.016341336,-0.011057128,0.0009296998,0.022256797,0.0038460682,0.035533495,0.014396666,0.02885442,-0.0050958493,0.02356003,-0.03575749,-0.029770756,0.002973003,-0.032295775,0.010130609,0.0069132503,-0.013622871,0.0016926773,-0.014335576,0.007865222,0.004166786,0.025189074,0.02356003,0.016463514,0.021930989,-0.0001684723,-0.028834058,-0.020413943,0.027001385,0.005004216,-0.024394916,0.03402663,0.01925325,0.008038308,-0.03402663,0.021992078,0.014539206,0.024313463,0.005380932,-0.01879508,-0.030300196,0.016473696,0.005304571,0.013062887,-0.023295311,-0.0005848009,-0.035065144,-0.020088134,0.015730444,-0.0067859814,0.034006268,-0.013398876,-0.004780222,0.039993,-0.003945338,0.015730444,-0.0394432,0.028732242,0.0074274167,-0.014691929,0.028426796,-0.0047547687,0.03414881,0.03160343,0.014386484,0.0064449003,-0.024191285,-0.022195708,-0.006180181,0.014742837,-0.02569815,0.013337788,0.013317425,0.0035533495,0.014294851,-0.000009923002,0.0011670564,-0.02911914,-0.005014397,0.014773382,0.0027770088,0.0224197,-0.014121764,-0.007396872,0.05274026,0.003006093,0.019843778,-0.010385147,-0.002390111,0.025575971,-0.0228066,-0.022989865,0.0014623204,0.021381186,0.00012424633,0.015465725,0.017919471,-0.0017932197,-0.009458629,-0.026879206,-0.017328942,0.0141319465,-0.035940755,0.0054980195,0.0013566872,-0.027449371,0.04160168,-0.04025772,0.021971714,-0.020780478,-0.0039937003,0.013907953,-0.0019306702,-0.004943127,-0.021971714,-0.031623792,0.019833596,-0.051355574,0.021829173,0.025677787,0.012268729,-0.030809272,0.025270525,0.014417029,0.028162077,-0.033558283,0.009830255,0.06630204,0.0036093479,0.018255461,0.05013379,0.011311666,0.005128939,-0.003810433,-0.0295264,0.02408947,0.0041846037,-0.009310998,-0.033537917,0.0041718767,0.045083757,-0.0003391718,-0.033089932,-0.008420114,-0.02470036,0.00052975706,-0.021462638,0.0023608394,-0.015017739,0.036918182,0.012441814,0.009051369,0.00590528,-0.042029303,-0.030157654,0.0317867,-0.002127937,-0.008374298,0.012798168,0.044798676,-0.013225791,0.014681748,0.024537457,0.014457755,-0.012024372,0.02394693,-0.012808349,0.0504596,0.03146089,0.0044238693,0.0020566664,-0.0004820312,0.031623792,0.029974388,0.04675353,0.0064856266,-0.0062107258,-0.011729108,-0.014121764,0.011433844,0.017573299,0.035105873,-0.021421913,0.0023633847,-0.012156731,0.014844652,-0.017267853,0.0061954535,0.0026802844,-0.023539668,-0.0485862,-0.005737285,0.031175805,0.055183824,-0.021951351,-0.014457755,-0.043576892,-0.020749932,-0.0044365963,-0.0045995004,0.04005409,0.011617111,-0.025351979,-0.019691054,-0.029831845,-0.026309041,0.059460063,-0.049197093,0.007004884,-0.035879668,-0.038689766,0.01214655,0.021930989,-0.0077939513,-0.0037824337,-0.051437024,0.021829173,0.015465725,-0.042314388,-0.06019313,0.0067808907,-0.025189074,-0.00851684,-0.013368333,0.023315676,-0.054450754,-0.007503778,0.02080084,-0.024883628,-0.054043494,0.02341749,0.04174422,-0.0051773014,0.01730858,-0.01765475,-0.0060020043,0.008913918,0.011708745,-0.011830923,0.0043220543,-0.010288423,0.047812406,-0.032255046,0.0036220748,-0.0050780317,-0.010222243,0.012828711,0.033232473,-0.0006783436,0.03329356,0.046916433,-0.028406434,0.03877122,-0.022053167,-0.006052912,0.013073068,0.042314388,0.027367918,0.0027744635,-0.012085461,0.039667193,-0.03520769,0.0070201564,0.010629504,0.0007025247,0.0074274167,-0.017288217,-0.0409297,-0.029730031,0.023641484,0.009636806,-0.025351979,0.0024639273,-0.014111583,-0.0008991553,0.02508726,0.020780478,0.0076259566,0.009967705,0.02885442,-0.0022093893,-0.006999793,0.012289091,0.0328863,0.01181056,-0.050703958,0.013938497,-0.00670962,-0.022195708,0.006281996,-0.0049609444,-0.0045409566,0.009489174,0.0030570007,0.0064958083,-0.021829173,-0.022765873,-0.050500326,-0.019741962,-0.016382061,0.022338249,-0.0036526194,0.023906203,-0.009534991,-0.018214734,-0.002083393,-0.0001620293,0.040440988,0.02356003,0.00442896,-0.012451996,0.02301023,0.01409122,-0.0030900906,0.011108035,-0.0044925944,-0.029730031,-0.0019624876,0.02771409,0.031562705,-0.020230675,0.03488188,-0.008547384,-0.007488506,-0.00072606944,0.018693266,-0.012879619,0.0069132503,-0.012329818,0.00016751778,0.03675528,0.015598085,-0.042762373,-0.016117342,0.014213398,-0.026614487,0.030829635,0.008929191,0.07057828,-0.017094769,-0.017318761,-0.0065518063,0.05791247,-0.015150098,-0.007900857,0.028100988,-0.008684834,0.021992078,-0.0047624046,0.0006757982,0.0036958908,-0.013857045,-0.034718975,0.03274376,0.009254999,-0.0045435023,-0.025514882,-0.02911914,-0.031114718,-0.017532572,0.0005848009,0.009448448,0.029546764,-0.04133696,0.02771409,0.01556754,0.004958399,-0.037467983,-0.015180643,0.004306782,0.0023124772,0.049685806,0.017318761,0.021218283,0.008272483,-0.025962869,0.020475032,0.009779347,-0.066179864,0.045043033,-0.0224197,-0.036327653,-0.0055591087,0.0026802844,0.012981434,0.0063125407,0.0006516171,0.007407054,0.0085321115,0.004314418,0.030096564,0.0009869708,-0.019507788,-0.028813694,-0.035859305,-0.015944256,-0.0065721693,0.014467936,0.039524652,-0.0025517428,0.012116006,0.01509919,-0.017003134,0.0014941377,0.06622059,0.028487885,-0.0040089726,0.048341844,-0.0021992077,-0.014030131,-0.01053787,-0.00089342816,-0.013592326,0.04174422,-0.022154981,0.031969965,-0.031216532,-0.008715379,0.0013732321,0.0017206764,0.024130195,0.014783563,-0.0035380772,-0.028569337,0.00021556181,-0.038608313,0.009346633,0.0016723142,-0.0020375762,0.024639271,0.016891137,0.015781352,-0.024252374,0.0142337615,-0.0381196,-0.0028966416,0.01455957,0.01771584,0.030890724,-0.007951765,0.023763662,0.004655499,0.0018441273,0.0056711053,0.035370592,-0.024313463,-0.010731319,-0.017359488,0.020749932,-0.0059969136,-0.0069845207,0.0129916165,0.055183824,-0.026940295,0.01147457,0.012686171,0.008689925,0.0020655754,0.0065670786,0.021218283,0.014793744,0.01388759,-0.061822172,0.05054105,-0.028508248,-0.0023073864,-0.0013948679,-0.0045384113,0.02221607,0.018398002,0.027856631,-0.047201514,-0.03215323,-0.0015552267,-0.036083296,0.023702573,0.038384322,0.010476781,0.006225998,0.014457755,-0.026003595,0.010033885,-0.022338249,0.0120549165,-0.016534785,-0.030239107,-0.005044942,-0.009677532,0.008272483,0.0068012537,0.012563992,0.010145882,-0.004273692,0.018937623,0.024802176,0.02891551,0.018224915,0.0233564,0.013541418,-0.028243529,0.018296186,-0.00050112157,0.032845575,0.004907491,0.00084252056,-0.006058003,0.017359488,-0.013775593,0.0077532255,-0.03616475,-0.00070188835,0.0016163159,-0.004884583,-0.030911086,0.0064856266,0.015791534,-0.012981434,0.0015857713,0.00015606357,-0.029078413,0.06133346,-0.016127523,-0.03025947,0.0067656185,-0.009845527,0.012187276,-0.023722935,0.025351979,0.009509537,-0.009758985,0.009814982,-0.025535246,0.02356003,-0.035838943,0.011912376,0.024842903,0.00939245,0.0022870232,-0.010217153,-0.033660095,-0.01463084,0.028996961,-0.03925993,0.044676498,0.0047725863,0.015648993,-0.033680458,0.0073256018,0.004655499,0.0017206764,-0.019711418,-0.0077939513,0.0045460477,-0.006597623,-0.00034203535,0.030768545,-0.028589701,0.012248365,0.033517554,0.036531284,-0.021401549,0.003308993,-0.010680412,0.00055457454,-0.0087611955,-0.038791582,0.020312127,-0.051844288,0.03335465,0.008832466,0.016758777,-0.023763662,0.011556022,0.008145214,-0.02321386,0.0102680605,0.0047624046,-0.01181056,-0.009825164,0.038384322,0.00298573,-0.021930989,0.0019255795,0.036470193,0.029465312,0.011566204,0.020851748,-0.00905646,-0.012981434,0.0006605259,-0.007631047,0.025189074,-0.018367458,-0.025066895,-0.00298573,0.0053096614,-0.011128399,0.034983695,-0.021564454,-0.00014413211,-0.0057067405,-0.012024372,0.02683848,-0.029770756,-0.0069692484,-0.007529232,0.0008030672,0.021014651,0.017349306,-0.012940709,0.044269238,0.00456132,-0.0040573347,-0.008852829,0.018306369,-0.052170094,-0.0019128526,0.054776564,-0.050215244,-0.0038155236,-0.012187276,-0.0020719387,-0.027347555,0.0006331631,0.0034184444,0.0013223246,-0.028019536,0.014915923,-0.006918341,0.009550263,0.0014903196,0.0086593805,-0.0031053629,0.0059969136,-0.03201069,0.010436055,0.022175346,-0.04435069,0.006607805,-0.023132408,0.075669035,-0.018835807,0.032438315,0.04255874,0.041784946,0.034942966,0.021971714,0.018438729,0.06980448,-0.012879619,-0.006536534,0.015343547,-0.0006401629,0.0068063443,0.02127937,-0.011729108,-0.0409297,0.006266724,0.013368333,-0.0152213685,-0.026105411,-0.009372087,-0.0027031929,-0.042966004,0.03557422,0.00939245,-0.027327193,0.0040496984,0.0048285844,0.013307244,-0.0048947646,-0.005139121,0.017064223,0.009850618,0.0064652637,0.016270064,0.003703527,-0.0036246201,-0.015119554,-0.0016188612,-0.0048693107,-0.017899107,-0.022093892,0.0047980403,-0.019467061,-0.014437391,0.019212523,0.012441814,-0.013480329,-0.030035477,-0.026797753,0.020434305,-0.023865476,-0.01885617,0.0043296902,0.0010728774,-0.06320686,-0.00014437073,-0.017278034,-0.029485675,0.000101099286,0.0065314434,0.0055591087,-0.02563706,0.00051862106,0.0037951607,0.019650329,0.0043169633,0.037549436,-0.00035030782,0.043780524,0.0039504287,0.002374839,0.029220955,0.0024333827,0.030605642,-0.007631047,-0.013541418,-0.033191748,0.022440065,-0.004571501,0.00039739735,0.017227128,0.011352392,-0.01455957,0.0061954535,-0.024211649,0.0005125758,0.041683134,-0.04931927,-0.00221448,-0.0017130403,-0.033191748,0.032234684,-0.0013834137,-0.014019949,0.018123101,0.013979224,-0.021523727,0.017614026,0.017084586,-0.027734453,-0.028671153,0.027103199,-0.027612275,0.017827837,-0.005253663,-0.0020604846,-0.0012593265,-0.039361745,-0.03166452,0.013795956,-0.0001996532,0.026614487,-0.008873193,-0.0024053834,0.010100065,-0.01281853,-0.041112967,-0.0048871282,0.0049354904,0.023967292,0.026227588,0.013683959,0.0073510557,-0.037406895,-0.020495394,-0.028406434,-0.010054248,-0.009010643,0.010237516,-0.012085461,-0.024008017,0.006943795,-0.0022946594,-0.010731319,-0.0010143337,0.028772969,0.030483464,-0.01925325,0.010206971,0.030809272,-0.02006777,0.0075903214,0.015852623,-0.02134046,0.019283794,0.009209182,0.038893398,0.037793793,-0.030300196,0.012309454,-0.04341399,0.023071319,0.025311252,0.006154727,-0.014305032,0.018642358,0.0029068233,-0.0107109565,-0.0071626976,0.016962407,-0.026247952,-0.011576385,0.024456006,0.006872524,0.015801715,0.016351517,-0.014966831,0.008247029,0.0057474663,-0.010227334,0.027225377,0.00079161295,-0.008272483,0.0022857506,-0.005047487,-0.0020910292,0.002559379,-0.01744094,-0.0022233888,-0.025962869,-0.0032377224,-0.0007095245,0.026227588,-0.02999475,0.01341924,-0.015282458,0.022501154,-0.0011619657,0.014569751,-0.003214814,-0.040298447,-0.016494058,-0.025596336,-0.025148347,-0.029750394,0.002087211,-0.013592326,0.002075757,0.009942251,0.039198842,0.021259008,-0.013337788,-0.019110708,0.0015768625,-0.02791772,-0.013439603,0.030849997,-0.013938497,0.010517508,-0.03671455,0.007300148,-0.005920552,-0.013653414,0.021218283,0.005179847,-0.008567747,-0.025820328,-0.002197935,0.028426796,-0.0024906537,0.005004216,-0.0010073339,0.049930163,-0.008282664,-0.00372389,0.021483002,-0.021890262,0.008318299,-0.0054929284,-0.015017739,-0.030178018,0.017664932,0.018082375,-0.050215244,-0.012339999,-0.029831845,-0.03203105,0.007152516,-0.0028202804,0.017155856,-0.024232011,0.0012262365,0.04115369,-0.032703035,-0.030157654,-0.020281583,0.0048565837,-0.025250163,-0.016219158,0.0012294182,-0.0077124992,0.010313877,-0.004986398,-0.013134157,0.02549452,0.016158069,-0.026410855,-0.012828711,0.016768958,-0.012961072,-0.013643233,0.055631813,-0.032438315,0.022847325,0.00018994893,0.046142638,0.023376765,0.011016401,-0.01067023,0.0040064272,0.005004216,-0.00021778901,-0.017481666,-0.041703496,0.005528564,-0.0016061343,-0.017288217,0.0104666,-0.00028746878,-0.003146089,-0.0019433971,0.013001798,0.05628343,0.00704561,0.008043399,0.033517554,-0.053799137,-0.0014114128,0.02771409,0.032112505,-0.04219221,0.027082836,0.01100622,0.010313877,-0.025799965,0.028935872,-0.0038307959,0.004966035,-0.009387359,0.0012726897,0.01093495,0.011892012,-0.0064601726,0.019019075,0.014050494,0.029241318,0.013969041,-0.0295264,0.021055378,0.01704386,-0.009942251,0.016086798,-0.004220239,-0.03649056,0.030564915,-0.022236435,-0.026858842,0.021747721,-0.028365707,-0.063899204,0.024679998,-0.008292845,0.025861055,-0.020169586,-0.012177095,-0.0046936795]},{"id":"interface-MessageFileData","type":"interface","source":"main","text":"Interface: MessageFileData\nDescription: File data for message attachment uploads. Use `data` for buffers or `url` to fetch from a URL.","meta":{"url":"/docs/typedefs/MessageFileData"},"embedding":[-0.019176843,0.021940174,0.0011402897,0.011619302,0.03362606,-0.027322562,-0.005942824,0.04123909,-0.014327143,-0.015103984,0.0008572981,0.018277928,0.008068035,-0.009710496,-0.020342102,-0.0046638125,0.031894818,0.02514741,0.023527145,0.031384323,0.025613515,-0.03193921,0.014915322,0.01104777,0.04758698,-0.0019226783,-0.0151705695,0.021096747,0.03746587,-0.0402181,-0.012041016,-0.031140175,0.04061762,-0.010587215,0.02321641,0.039485652,-0.00033691953,0.03480242,-0.0036067558,-0.03648927,-0.048874315,-0.018777326,0.00039500912,0.021840293,-0.032383118,-0.02016454,0.018078169,0.07191316,0.022217616,0.013372741,-0.026634505,0.00055072387,0.0013851329,0.020663936,0.006730761,0.067429684,-0.0022764178,0.03640049,-0.014205069,-0.03793197,-0.022661524,0.03329313,-0.0513602,-0.033404108,0.013949822,-0.0041810623,-0.028765265,0.045300853,0.0029880584,0.036200732,0.08230062,0.020197833,0.014415925,0.004405791,0.019132452,-0.049362615,-0.043591805,-0.039774194,-0.024414962,-0.047276244,0.009949097,0.06458867,-0.075286865,-0.054068044,-0.008750544,0.030252358,-0.020131245,-0.0016702054,-0.026567917,0.038997352,-0.012262969,-0.0129843205,-0.07297854,-0.0003428152,-0.031917013,-0.023393974,-0.05238119,-0.008018095,-0.018277928,-0.015270449,0.013627988,-0.0033265385,-0.03062968,-0.04230447,0.030851634,-0.027366953,0.031007001,-0.02030881,-0.0368444,-0.00064990966,-0.006236913,-0.0021696023,0.038353685,0.010720388,0.027411344,-0.0049634506,0.0047359476,0.0064588673,0.03014138,0.027078412,-0.030074794,0.043769367,0.024548134,0.013250666,0.031140175,-0.057219792,0.0072856466,-0.025724491,-0.036711223,-0.02108565,0.053579744,0.021818098,-0.013283959,-0.03631171,-0.007757299,-0.029542103,-0.009455249,0.021651633,-0.035113156,-0.0111920405,0.026590113,-0.010454043,0.03944126,0.00243456,-0.005704223,0.027788665,-0.025968641,0.055621725,0.03504657,-0.009732692,-0.021895781,0.022705914,-0.0026953563,-0.017789628,-0.0069804597,-0.036289513,0.03959663,0.0057486137,-0.009421956,-0.025169607,0.0059761168,-0.02200676,-0.0077073597,-0.02399325,-0.024903262,0.018877205,0.050427996,-0.07670737,0.010531727,0.027810862,0.011674791,0.0031240054,-0.003726056,0.00639783,-0.014526903,0.0026176723,0.016358025,-0.002258384,-0.021296505,-0.031717256,0.037820995,-0.03984078,-0.021585045,-0.030785048,-0.029120391,0.005379615,0.0025746687,0.04536744,-0.013461522,0.011597107,-0.047365025,0.026545722,0.029586496,0.019975878,0.0072856466,0.022628231,0.007834983,-0.022694817,0.04445743,-0.014882029,0.010498433,0.0018422198,0.009771533,0.00032634204,-0.01609168,-0.012917735,-0.009904706,0.04030688,-0.06121497,0.0060316054,-0.0011708084,0.021229919,0.00896695,-0.0027203262,-0.04321448,-0.008129072,0.016657664,0.014216167,-0.0015287095,0.008489748,0.0067196633,0.04332546,0.046832338,0.003135103,-0.036245123,0.013517011,-0.041083723,-0.028809655,-0.07262342,-0.0019434865,0.024881067,-0.010620508,-0.0107980715,-0.045101095,-0.016258145,0.019265624,-0.036999766,-0.020564057,0.027833058,0.01414958,-0.013017613,-0.024126422,-0.016946204,0.046787947,-0.016635468,-0.003687214,-0.002291677,0.012606999,0.0036234024,0.05073873,0.053135835,-0.031007001,0.028809655,-0.005787456,0.017822923,-0.019864902,-0.030074794,0.05868469,0.03484681,0.033270936,0.022794696,-0.041705195,0.0043447535,0.025213998,-0.003237757,-0.018965986,0.039086133,0.027855253,-0.064633064,0.033270936,0.012784562,0.006425574,0.049762134,0.03657805,-0.023860076,-0.0019185166,0.009000243,-0.013650184,0.015448012,0.030762853,-0.015381427,-0.026967436,-0.0474982,0.026878653,-0.04352522,0.02055296,0.03697757,0.013161884,0.026923044,-0.0061425827,0.023571536,-0.011125455,0.038997352,-0.03513535,0.023038846,0.009677203,-0.01429385,0.004289265,0.015137277,0.01861086,0.02330519,-0.014948616,0.049939696,-0.026190596,-0.0013178531,-0.026989631,0.017656457,-0.0030074795,0.021784805,-0.009421956,0.010243187,0.008295538,-0.07475418,0.037976366,-0.07035948,0.011264176,0.025768884,0.052114848,-0.04090616,0.052425582,0.009876962,0.019531969,0.019654045,-0.05761931,0.008539688,0.024170812,-0.047808934,0.009349821,-0.0261684,0.023327386,0.019021476,0.041705195,0.01802268,-0.046166472,0.06418916,-0.032982394,-0.005132691,0.042948138,-0.037820995,0.0075242473,0.011452837,-0.032383118,0.0005323433,0.0285877,-0.023194214,-0.048519187,-0.027344758,0.051448982,0.010931244,0.0024179136,-0.06583162,-0.0027591682,0.040107124,0.009860315,-0.009638362,-0.013794454,0.00433643,-0.046344038,-0.0023846205,-0.037820995,-0.050516777,0.025080824,0.0026204467,0.036111947,0.0007317553,0.0068583847,-0.037399285,-0.004855248,0.01967624,-0.06822872,-0.0077905925,0.014981909,-0.036245123,0.029875036,-0.0039674314,0.0018866108,-0.014071897,-0.009516287,0.021474069,0.02055296,0.022328593,0.092599295,-0.033071175,-0.041549828,-0.0036899885,-0.011519423,-0.039019547,0.0044668284,0.008228952,0.016491197,0.03120676,0.039951757,-0.040107124,0.012995418,-0.041438848,0.060993016,0.027699884,-0.0029048256,0.0018699642,-0.0736888,0.022428472,-0.0018200245,0.009144513,0.032005794,-0.008362125,0.005693125,0.040817376,0.02248396,0.010270931,-0.05113825,0.005160435,-0.022561645,-0.0021016288,-0.0012727686,0.024370572,0.010454043,-0.016901812,0.009754887,-0.0047858874,0.021363093,-0.010309773,0.014948616,-0.043014724,0.019076964,0.03087383,0.0015869725,0.04590013,0.0142605575,0.032494094,-0.0663643,-0.029963817,-0.010454043,0.0010015683,0.012584804,0.014637879,-0.0460333,0.018965986,-0.027122803,-0.017190352,0.024925457,-0.011230882,0.0077129086,-0.0113751525,0.051937282,-0.05131581,-0.012729074,0.04123909,0.01817805,0.020530764,-0.014415925,-0.04110592,-0.01777853,-0.07213511,0.012684682,0.00983812,-0.0047220755,0.0012637518,-0.011863452,0.04545622,-0.026989631,-0.003193366,-0.015037397,0.026612308,0.05118264,-0.0017728591,-0.029076,-0.006653077,-0.0044723772,-0.013394936,0.00026929288,0.005055007,0.024148617,0.009155611,0.016457904,-0.027566712,-0.05859591,0.040506642,-0.052514363,-0.00402292,0.05229241,0.028965022,0.031495303,-0.060637888,-0.028232574,-0.016757542,0.12074309,0.030807244,-0.025302779,0.087760694,-0.02346056,-0.08403186,-0.011441739,0.018455492,-0.008667312,-0.018699642,-0.016579978,-0.016424611,-0.02563571,0.0261684,-0.021096747,0.043436438,-0.020441981,0.025480343,-0.026678896,0.024947653,0.0014073284,-0.046255257,-0.0045722565,-0.022594938,0.007424368,0.044413034,0.038176123,0.026301572,0.016069485,-0.03402558,0.012484924,-0.011796866,0.029808449,-0.016746445,0.011025575,-0.025280584,0.010897951,0.027810862,-0.017578773,-0.01429385,0.027522322,-0.01449361,-0.03591219,-0.004638843,-0.015636673,0.04643282,-0.011963331,0.01691291,0.013727867,0.00043558513,-0.034869004,-0.013117493,-0.0042032576,0.02141858,-0.0050355857,-0.0046083243,0.005365743,-0.018555371,0.02772208,0.008711702,0.039241504,-0.04740942,0.015436915,0.0130842,-0.0008968337,-0.014848736,-0.010626057,0.01129192,-0.018255733,0.03784319,0.011397348,0.0027272622,-0.021751512,-0.009960195,0.010198795,0.023638122,-0.059572507,-0.0033154408,0.026634505,-0.015448012,0.008744995,0.012229676,-0.018877205,-0.0049634506,-0.016879616,0.0040118224,0.05171533,-0.00010811597,0.045145486,-0.009488542,0.01153052,-0.007396624,-0.016424611,-0.03091822,0.0072412556,-0.004200483,-0.02330519,-0.013983115,-0.008511944,0.01173028,0.009244393,0.008029194,-0.0013268699,-0.0044446327,-0.0030740658,0.010997831,0.008811582,0.010859109,-0.010576118,0.0039618826,-0.004819181,-0.008828228,0.0140497,-0.018799521,0.016269242,-0.014127385,-0.002693969,0.012484924,-0.007191316,0.049229443,0.055843677,0.024481548,-0.032449704,-0.020220028,0.023282995,-0.011930038,0.032116774,-0.04594452,-0.06401159,-0.012118699,0.01173028,-0.01560338,0.027500125,0.017700847,-0.022572743,-0.02074162,0.036089752,0.0054628477,0.0062313643,-0.030163577,0.019454286,-0.019665143,-0.023105433,-0.03096261,0.0062868525,-0.005859591,0.020852597,0.022628231,-0.0071857674,-0.0193877,-0.0140497,0.026789872,-0.022073345,-0.033737037,-0.010725937,0.011358506,0.029164782,0.06179205,0.0039119427,0.036711223,-0.00673631,-0.009671655,-0.004200483,-0.0070636924,0.016369123,-0.025502538,-0.014338241,0.01826683,0.0055072387,-0.010393006,-0.0319836,0.0037815447,0.034713637,-0.017023887,0.033359718,0.0036372745,0.006048252,-0.01100338,-0.0030879378,-0.013794454,0.020386493,0.0193877,-0.0031073587,-0.009349821,0.04607769,0.021207724,0.032050185,0.024215203,-0.003373704,0.018444395,-0.06028276,0.021962369,0.0074132704,0.014904224,0.00523257,0.001016134,-0.027100608,-0.025413755,-0.035246328,0.009477444,0.016935106,0.023726905,0.014637879,0.006092643,-0.004641617,0.033515085,-0.020231126,-0.009349821,-0.039552238,0.035579257,0.040506642,0.02592425,0.003212787,0.0033043432,0.034669247,-0.01681303,-0.03595658,-0.01914355,0.006797347,-0.024725698,-0.014993006,-0.019831607,-0.004405791,0.045811348,-0.010598313,-0.0048580226,-0.020686131,-0.02849892,0.033603866,-0.0033404108,0.0012630582,-0.0023679738,0.053712916,0.015536794,0.03697757,0.0063811834,-0.023926662,-0.016291438,0.024969848,0.0017811825,-0.00930543,0.006353439,-0.0020627868,0.017578773,-0.004244874,0.017956095,0.012873343,-0.0056875763,0.019065866,0.011358506,-0.0032072382,0.025702296,0.035645846,0.005024488,0.029497713,0.018067071,0.010753681,0.037909776,0.003751026,0.009022438,-0.0067085656,-0.016990595,-0.020497471,-0.0363561,0.0019948133,-0.0022736434,0.004661038,-0.008634019,0.008223403,-0.03260507,0.0003207932,0.027211584,-0.019221233,-0.029675277,0.019787217,-0.028632091,0.054778297,-0.040528838,0.0053490964,-0.016990595,-0.015592283,-0.024770088,-0.0017645359,0.04463499,-0.01992039,-0.022950064,0.013949822,-0.005379615,0.015348133,0.053047054,-0.015448012,0.0055765994,-0.015714357,0.0051992773,0.008539688,0.004866346,-0.0019407121,0.01555899,-0.018799521,0.007879375,0.0012484924,-0.024614722,-0.014127385,-0.015303742,-0.0047303988,-0.03087383,0.0026384806,-0.011119906,-0.022628231,0.010065623,0.009433053,0.006653077,-0.038975157,0.007468759,0.039086133,-0.004292039,0.005892884,0.008545237,0.023771295,0.0513602,0.058862254,-0.054645125,0.031850427,-0.034913395,0.037954167,-0.009910255,0.027988425,-0.0029686375,0.007274549,0.008079133,0.0042143553,0.0070137526,0.012396142,0.019487578,-0.020652838,0.072534636,0.004777564,-0.013372741,0.002512244,0.020231126,0.031007001,-0.027788665,0.04696551,0.008495297,0.019598557,0.04450182,0.003309892,0.019243428,0.008400966,0.019043671,-0.04356961,-0.005737516,-0.001109771,0.001485706,-0.01080362,0.0075630895,-0.007729555,0.04303692,0.027389148,0.02694524,-0.021141138,-0.026101815,-0.0040007243,-0.02801062,0.013616891,-0.03120676,0.021651633,-0.012096504,-0.010947891,-0.0068084453,-0.0015786493,0.022839088,-0.0050133904,-0.027322562,0.016779738,0.025213998,0.03542389,-0.0049440297,0.04811967,-0.009261039,-0.0029103744,-0.023660317,-0.01604729,0.017323526,0.04423547,0.042615205,0.011308567,0.019887097,0.007374428,-0.010764779,-0.0032876965,0.0062147174,0.005251991,0.021973467,-0.01347262,-0.012496022,0.029408932,0.018599762,0.025258388,-0.00091348024,0.0065531977,0.05064995,0.014682271,0.024392767,-0.010587215,-0.007008204,-0.018433297,-0.014737759,-0.011225333,0.00022906368,0.029431127,-0.0470099,0.027322562,-0.04550061,0.005743065,-0.04811967,-0.03111798,-0.0030407726,-0.038065147,0.009138964,0.0024442705,0.014060799,-0.013494816,0.006503258,-0.021296505,0.038841985,0.0030990355,-0.0040728594,0.0151705695,0.007402173,-0.016124973,-0.00014955898,-0.012951028,0.021540655,-0.007080339,-0.035201937,0.004583354,0.037865385,-0.005354645,-0.033270936,-0.011397348,-0.021651633,-0.024303986,0.022162126,-0.003770447,0.048208453,-0.025324974,-0.012207481,-0.012251872,0.005698674,-0.016557783,-0.026878653,0.007940412,0.0008781063,0.022262007,-0.028143793,-0.008584078,0.011930038,-0.004932932,0.037665628,0.019321114,-0.0119522335,0.020663936,-0.044612795,-0.04356961,-0.027233781,0.0030019307,0.012817855,-0.05806322,0.010293126,0.024969848,0.058951035,-0.027056217,0.022905674,-0.02563571,-0.038841985,-0.0045583844,-0.044812553,-0.048652362,-0.00251918,-0.014327143,0.045633785,0.022839088,0.030207967,0.03737709,-0.004697106,0.0008066648,0.05859591,-0.0002521261,-0.040506642,0.06023837,-0.0061481316,0.0065421,-0.03910833,0.013439327,0.00828444,0.067740425,-0.007862727,0.031184565,-0.009688301,-0.027544517,0.012673585,0.010182149,0.032982394,0.008811582,-0.007507601,0.009732692,0.021019062,-0.024903262,0.020253321,-0.031228956,0.0054628477,0.031095784,0.037621237,0.018788423,-0.032360923,0.00023721355,0.03653366,-0.0017076602,0.021063454,0.03125115,0.030207967,-0.013672379,0.03411436,-0.021263212,-0.019698435,-0.035157546,0.0421713,-0.026567917,0.023282995,0.0067640543,-0.017501088,0.011752475,0.0016341378,0.0044612796,0.023971053,-0.053579744,-0.005024488,0.026035227,-0.012496022,-0.011419544,0.003309892,-0.0060260566,-0.024082031,-0.0063090483,-0.000061991115,0.044346448,-0.009405309,0.01187455,0.015747651,0.036622442,-0.003737154,0.009433053,-0.01070929,0.009777082,-0.035490476,0.0015883597,0.0056348625,0.039818585,0.027633298,-0.027211584,-0.005124368,-0.018544273,0.006014959,-0.0012145056,0.020730522,0.0058706887,-0.006314597,-0.015436915,0.0147155635,-0.022040052,0.022117736,0.044080105,-0.008706153,-0.0021654407,0.0060371542,0.010531727,0.009050183,-0.010254284,-0.004874669,-0.0053712917,0.030074794,-0.009904706,0.017900607,0.0034180947,0.016946204,0.01894379,0.0073355865,-0.005693125,0.017845118,0.0035096507,0.005465622,-0.049451396,-0.02510302,-0.0035429439,-0.040684205,0.0024650788,0.0033320875,0.0061869733,-0.009238844,-0.00032547503,-0.008500846,-0.024259593,0.044945724,0.013672379,-0.023882272,0.013172982,-0.012540412,-0.026190596,-0.019986976,0.018832814,-0.00969385,-0.014904224,0.01875513,0.018200245,0.019088062,-0.013972017,-0.02543595,0.0103430655,0.024370572,0.0034624855,-0.00071094703,-0.0027605554,-0.0079737045,0.033803623,0.022672622,0.0232608,0.052514363,-0.02821038,-0.0018352838,0.0143493395,0.020908086,0.018289026,0.02103016,-0.0062147174,0.005068879,0.013339448,-0.010143307,-0.0030213515,0.013661281,0.0140497,0.029586496,0.022617133,-0.026834263,0.015425817,-0.0009856154,-0.030119184,-0.017501088,-0.007457661,0.01758987,0.0061758757,-0.012373947,0.012951028,0.0008101328,-0.011608205,0.022794696,-0.004425212,-0.034180947,0.025968641,0.036178533,-0.009055732,-0.01022654,0.025058629,0.0029963816,0.013406034,0.010071171,0.0053047054,0.017767433,0.010232089,0.020896988,-0.05215924,0.021385288,0.010054525,0.012917735,0.019076964,-0.02108565,0.021784805,-0.012396142,0.0052658636,0.036178533,-0.005179856,-0.0109035,0.016535588,-0.019986976,0.021640535,-0.013306154,0.00042032576,-0.032249946,0.010387457,-0.008478651,-0.0032211104,0.004086732,0.0037843192,0.0266567,0.0066086864,-0.012717975,-0.028365746,-0.034269728,0.008744995,-0.061481312,0.0068361894,-0.031317737,0.011463935,0.005898433,-0.010925695,-0.013783356,-0.0071691205,-0.011541618,-0.0067196633,-0.02563571,-0.010853561,-0.0028909536,0.024792284,0.021429678,0.03125115,-0.016657664,0.032405313,-0.011752475,0.016646566,0.021895781,-0.04687673,-0.010004586,0.009954646,0.008695056,0.0014052475,0.013905431,0.06134814,0.050472386,0.015059592,-0.027300367,0.022273105,0.012828953,-0.0053768405,-0.013761161,0.0037926424,0.0007664356,0.010187698,0.019243428,0.014205069,-0.0387754,-0.005568276,0.016557783,-0.01758987,0.01584753,0.009077927,0.014848736,-0.06818433,0.008378771,0.008850424,-0.039818585,0.004269844,-0.0013261763,0.025768884,0.0013005129,0.0072634513,0.04370278,-0.0071413764,0.03271605,0.045345243,-0.02006466,-0.005898433,0.02219542,-0.02854331,0.031406518,0.013838844,-0.0062979506,0.0021196627,0.028387941,-0.0009252716,0.0068361894,-0.013505913,-0.018000485,-0.049407005,-0.025058629,-0.0033182153,-0.034957785,0.03737709,-0.047187462,-0.011408446,-0.019698435,-0.001012666,-0.011907843,0.008018095,-0.007773946,-0.0059816656,0.009671655,-0.002270869,0.018732935,0.007540894,-0.0018408326,0.00038668583,0.022162126,-0.0026384806,-0.0009356757,-0.0075575407,0.002037817,-0.027544517,0.00998239,-0.026590113,-0.025058629,-0.020963574,-0.0054628477,-0.0029048256,0.0017048857,-0.00060170394,0.0089447545,0.014371535,-0.006364537,0.009488542,-0.0049856463,-0.0022500607,0.013605792,-0.021696024,0.02399325,-0.00085105567,-0.020286614,0.028898437,0.022406276,0.0075575407,-0.049007487,-0.025902055,0.009039084,0.024237398,-0.00021501814,-0.04212691,-0.010570569,0.014848736,-0.016113875,-0.015681064,-0.016702054,-0.035268523,0.006802896,-0.053712916,0.007685164,0.005665381,0.029342346,-0.031628475,-0.0047165267,-0.011330762,0.019310016,-0.011408446,-0.021363093,0.024481548,-0.02205115,0.023527145,0.020175638,-0.0030768402,0.05868469,-0.017467795,-0.012484924,-0.056864668,-0.023527145,0.029053805,-0.0044529564,-0.058551516,-0.014726661,-0.004697106,-0.016435709,-0.01410519,0.026923044,0.046743553,-0.02160724,0.0062313643,0.036822204,-0.018078169,0.008450906,0.041416653,-0.009843669,0.002743909,0.032849222,0.04181617,-0.011541618,0.0020738845,-0.020586252,0.020497471,-0.036644638,-0.009516287,0.023771295,-0.004308686,0.0105539225,0.0030851634,0.008700605,0.006464416,-0.009832571,0.007862727,-0.024237398,0.018988183,-0.0062147174,0.039574433,0.020919183,0.01429385,0.017312428,0.011930038,-0.014693368,-0.017745238,0.007158023,0.0031156822,0.029608691,-0.034003384,0.02379349,-0.00380374,-0.007962607,-0.006170327,0.0086395675,0.008855972,-0.016469002,0.003862003,0.021485167,0.0092111,0.018888302,-0.03218336,-0.016258145,-0.005715321,0.011430642,0.0057264185,-0.020131245,0.008006997,0.0065088067,0.0032599524,-0.0030990355,-0.01861086,-0.016080583,-0.026545722,0.0021598919,0.04317009,-0.022816893,-0.019787217,-0.007052595,-0.030474313,0.0025358268,-0.013239568,0.049540177,-0.030696265,-0.010653801,0.0008482812,-0.005496141,-0.04132787,-0.008217854,0.033159956,-0.01777853,0.032982394,-0.024015445,-0.01603619,0.009100122,0.043614,0.012606999,0.010703742,-0.0066586263,-0.030363334,-0.013738965,-0.0031129078,0.012706878,0.03300459,0.007529796,0.00044876366,-0.0445906,0.021940174,-0.0058540422,-0.012307361,0.018078169,-0.01521496,-0.02510302,0.016025092,0.00044217438,0.005965019,-0.02539156,-0.036245123,0.014027505,-0.014060799,-0.017090473,-0.027633298,0.0032599524,0.0041255737,0.014804346,-0.0119522335,-0.009022438,0.030052599,0.012684682,-0.0033043432,0.025458148,0.052026063,0.01875513,-0.044901334,0.015103984,-0.02330519,-0.0237491,0.028432334,0.02088589,-0.010237638,-0.002893728,0.02641255,0.016979497,-0.017245842,0.035024375,-0.018732935,-0.021496264,0.015625576,0.01996478,-0.03096261,0.047143072,-0.030940415,-0.007474308,-0.03455827,-0.04487914,0.0013865201,-0.034136556,0.031961404,0.036245123,-0.02878746,-0.012007723,-0.004977323,-0.044346448,-0.0032211104,0.01701279,0.013572499,-0.030252358,0.010376359,0.022217616,0.01400531,-0.02064174,0.01400531,-0.021141138,-0.0124072395,0.03988517,-0.035113156,0.028321356,0.0031683962,0.013017613,0.005587697,-0.011303018,0.014071897,0.039574433,-0.0044501815,0.013639086,-0.0016965624,0.004278167,0.0092111,-0.014327143,0.0047165267,0.0021376964,0.04148324,-0.024259593,0.019010378,0.014793248,-0.011841256,0.018255733,0.0073910747,-0.0067085656,-0.02534717,0.014116287,0.02243957]},{"id":"interface-MessageFlagsResolvable","type":"interface","source":"main","text":"Interface: MessageFlagsResolvable","meta":{"url":"/docs/typedefs/MessageFlagsResolvable"},"embedding":[-0.01316777,-0.0012860775,-0.022533674,0.053725608,0.019647589,-0.010607755,-0.059997298,-0.028167093,0.04676015,-0.0259054,-0.016289737,0.0014404416,-0.02787571,0.065713964,0.0017561073,-0.029110622,-0.016622748,0.0334675,-0.000071653514,0.032662727,0.05516865,0.019592086,0.04645489,0.032024458,-0.0037394245,0.013674222,0.010802011,-0.03846265,0.01201611,0.0073747835,0.053531352,-0.040210955,0.01952271,-0.033523005,0.026793428,0.02387959,0.0002703538,-0.0062300614,-0.03246847,-0.009705853,-0.016872505,-0.0055709793,-0.015970603,-0.007832672,-0.051616546,0.023740835,0.02403222,0.050978277,0.021243261,-0.014943822,-0.02659917,-0.009872358,0.033189993,0.043180294,-0.031524945,0.0013537202,-0.008873329,0.0017847253,-0.0061294646,0.03807414,-0.023740835,-0.040238705,-0.029998649,-0.043291297,-0.02536426,0.059275776,-0.011752477,0.008269748,0.01567922,0.012689067,0.010628568,0.006760796,0.0039302115,-0.030331658,-0.020327484,-0.006368816,0.03840715,0.05455813,0.017011259,-0.04337455,-0.040960226,0.013549343,-0.038573656,-0.06632449,-0.02236717,-0.005574448,-0.061939854,-0.008963519,-0.036658846,-0.062272865,-0.050589766,0.043235794,-0.024892496,-0.02826422,-0.015360085,-0.073928215,-0.033162244,0.0010475939,-0.029998649,-0.00450951,0.070376106,-0.004457477,-0.026460417,0.021770528,0.001552312,-0.012564189,0.042902786,-0.013674222,-0.03435553,0.01719164,-0.04870271,0.012307494,-0.001259194,0.012605815,0.019716965,-0.016941883,-0.02826422,0.0058970517,0.01567922,0.020271981,-0.021562396,0.030525913,-0.0027265192,0.015165829,0.013958668,-0.023615956,-0.00384349,-0.0038157392,-0.029415881,0.02236717,0.051339038,0.016872505,0.03768563,0.019161949,-0.06576947,-0.0063965665,-0.040960226,-0.003050857,-0.025669519,-0.028319722,-0.032607228,-0.016761502,-0.007499662,0.012217304,0.02899962,0.024281977,-0.03904542,0.019855719,0.017441398,0.026793428,-0.0018783844,0.026557546,-0.0035434342,0.008803952,-0.018634683,-0.03405027,0.029915396,-0.025253257,0.0066775437,0.0047904872,-0.020951878,-0.01598448,-0.0099625485,-0.016095482,-0.013327337,-0.000515992,0.05749972,0.026668549,-0.039628185,0.009886233,0.010982391,-0.004287503,-0.011135021,-0.011017079,-0.022644678,0.017316518,0.018107418,0.025170004,-0.03371726,0.0036977981,0.046815652,0.041487493,0.015498839,-0.111724846,-0.021382015,-0.0011542612,-0.011322339,0.0063722846,0.03435553,-0.02372696,-0.05211606,0.022159038,0.027043184,0.067656524,0.056944706,0.019897345,0.02418485,-0.025308758,-0.04240327,-0.07481624,-0.05108928,-0.039517183,0.080588415,-0.011981421,-0.056306437,-0.026002528,-0.010975454,0.0070313667,-0.0036214835,0.0052587823,0.034161273,0.026932182,-0.01719164,-0.015693095,-0.014159861,-0.022866685,-0.011266837,0.010947702,-0.012904136,-0.041209985,0.012002234,-0.0011828792,0.03804639,0.011807978,0.01153047,0.042653028,0.0130428905,0.0016260253,-0.036575597,0.026821177,0.0020934532,0.023865715,0.010989329,-0.032829233,0.0012019578,-0.011898168,-0.022450423,-0.012827822,0.032190964,-0.007402534,-0.057055708,-0.002636329,0.03199671,0.0067330454,-0.04276403,-0.034216773,0.0013953465,0.0137366615,-0.0014777317,-0.015484964,0.011148896,-0.007236029,-0.00048000267,0.009671165,-0.0032433784,-0.009116148,0.013611782,-0.0005684584,-0.0035122146,0.006622042,-0.009046771,-0.023213571,0.0031341095,-0.0029034307,-0.012793133,-0.026044155,0.0051581855,0.031441692,-0.05744422,0.036270335,-0.021146134,-0.031941205,0.0151380785,0.01567922,-0.043874063,-0.059553284,0.017996414,0.03646459,0.0029537291,-0.055973426,-0.008290561,-0.030914426,0.032024458,-0.0010345856,-0.055973426,0.00363189,0.024295852,0.03768563,0.026071906,0.02487862,0.013466091,-0.0038053326,0.034966048,-0.026932182,-0.029915396,0.016289737,0.04534486,-0.039850194,0.040876973,0.0005792986,0.03196896,-0.011447217,-0.034799542,-0.025059,0.007818797,-0.012050798,0.02974889,-0.005848488,0.051949557,-0.017150013,-0.006077432,-0.063271895,-0.0768698,0.014596937,-0.06915507,-0.0668795,0.06538096,-0.0084223775,-0.006216186,0.016275862,0.0071527767,0.029915396,0.039877944,-0.031025428,0.026585296,-0.0117108505,0.024920246,0.014111297,0.024587236,0.03740812,-0.01598448,0.0036041392,0.0031393128,-0.0033977423,0.018315548,0.00826281,-0.062938884,0.022464298,-0.015304583,0.029804392,0.048397448,-0.023907341,-0.025503013,-0.00029246774,-0.0064936946,-0.030525913,-0.058609754,0.0053038774,0.0401832,-0.0007349634,-0.025294883,-0.024018344,-0.0009591381,-0.02152077,-0.014513684,-0.005647294,0.029610137,0.001970309,-0.05872076,0.02354658,-0.013001264,0.027584326,-0.04076597,-0.002990152,-0.034549784,0.013910104,-0.029499134,0.0021888467,0.021229386,-0.056889202,0.019508835,0.024198724,0.008519505,0.039350677,0.008727636,-0.03782438,-0.034966048,-0.028555606,0.0317192,-0.0010163742,0.052365817,0.014250051,-0.057333216,-0.06704601,-0.003652703,-0.007915924,-0.015304583,0.011870418,-0.03940618,0.0033248963,0.04404057,-0.010822824,0.008998207,-0.0084917545,0.005553635,-0.012744569,0.0031722668,0.025627892,0.021451393,-0.035992827,0.016581122,0.0034809948,0.004863333,0.054252874,-0.017413646,0.011357027,-0.018315548,0.013889291,0.016789252,0.003822677,0.023171945,-0.02405997,0.028888615,0.045261607,0.01261969,-0.0016988711,-0.006462475,-0.04909122,0.021798277,-0.00659776,0.0038851164,0.04304154,-0.03879566,-0.0013025546,0.028916366,0.0153462095,0.0007657495,-0.028944116,0.00529694,-0.051283535,-0.02751495,0.014832819,0.037241615,-0.0200361,0.012834759,-0.0036249524,0.02938813,-0.029415881,0.012959638,-0.0009834201,-0.021728901,-0.0075065996,0.003132375,-0.0072915307,0.0013563219,-0.0046378574,0.0007510069,0.049202222,0.040266454,-0.014222301,-0.04376306,-0.041820504,-0.026640797,0.003940618,-0.010940765,0.0020778435,0.02424035,0.045872122,0.027181938,0.00051859365,0.0098237945,0.030858925,0.0060635568,0.053475853,-0.030803422,-0.013833789,-0.009997237,-0.023629833,-0.022603052,0.018287798,-0.024157098,-0.002360555,0.019689215,-0.0068787374,0.021631774,-0.009518535,0.055557165,-0.05367011,-0.015915101,-0.0062820944,-0.01395173,-0.011384779,0.01603998,-0.0049639298,0.01837105,0.09535185,0.028111592,-0.0029571978,-0.08558356,0.052560072,-0.0024021813,-0.011988359,0.018329423,-0.017483024,-0.012779257,0.005126966,-0.010913014,-0.03979469,0.01982797,-0.083418995,0.011190522,-0.03604833,0.01401417,-0.019716965,0.07886786,0.040710468,0.0034133522,0.011155834,-0.064825945,-0.050617516,0.056084428,0.026682423,-0.027598202,0.0007436355,-0.056583945,-0.014208426,-0.02969339,0.010586942,-0.01183573,0.022797307,-0.022561425,-0.008901079,0.023213571,-0.012508687,-0.0050922777,0.018051915,-0.04212576,0.020480113,-0.023602081,-0.0021715024,0.021243261,-0.023310699,-0.01598448,-0.015151953,0.03765788,0.034549784,-0.00199806,-0.03207996,0.03568757,-0.013070641,0.0059907106,-0.018537555,-0.022270042,-0.0049431166,-0.032940235,-0.012238116,0.0007514405,0.023837963,0.013056766,-0.002461152,-0.042264514,0.0040169326,-0.0062057795,-0.0098237945,0.05108928,-0.042514272,-0.011905107,0.0034792605,0.0053038774,0.05042326,-0.05244907,-0.046926655,0.0045823557,-0.00094959873,-0.024920246,0.006195373,0.00384349,0.037380368,0.018759562,0.0023293353,0.020896375,0.023837963,-0.026224535,0.037269365,0.023796337,0.007985301,-0.013070641,-0.019716965,0.044456832,0.01504095,-0.0094769085,-0.0283891,0.023754712,0.0032971457,-0.03782438,-0.036520094,0.023518829,0.0010944234,0.00064520683,0.019855719,-0.012154864,0.000450951,0.047315165,0.025614018,-0.034910545,-0.033134494,0.0005207617,0.02118776,-0.02136814,0.008706823,0.008887203,-0.0013303055,-0.014666314,-0.023824088,0.044540085,0.013264897,-0.007000147,-0.03904542,0.022381045,0.019508835,-0.010482877,-0.007249905,-0.0036180145,-0.013091454,-0.049174473,-0.015013199,0.017899286,0.011308463,0.0516998,-0.019578211,-0.012973513,0.0028756799,-0.030942177,-0.0018991975,-0.056306437,0.03405027,-0.036492344,0.0037845196,0.022075785,-0.00083382573,0.032607228,0.009025957,-0.0001873181,-0.014416557,0.0043083164,-0.01767728,0.013854602,0.0115027195,-0.012321369,-0.008769263,0.03169145,-0.0018436959,0.007215216,0.004134874,0.029832143,0.010233119,0.037019607,0.029499134,-0.0027542699,0.02487862,-0.001133448,0.0011343152,0.012342182,-0.0032919424,0.025114503,0.006837111,-0.0057548285,0.03133069,-0.01852368,-0.0039614313,-0.018815063,0.023144193,-0.02272793,-0.00027902593,-0.014569187,-0.008137931,0.0082836235,0.011877356,-0.021978658,0.012661316,0.021909282,0.029166123,0.034938294,-0.008581945,0.0052483757,0.0040308083,-0.002396978,-0.0102747455,-0.0015089514,-0.027348444,0.022117412,0.012245054,-0.03946168,-0.017413646,0.00020271115,0.0031878767,0.0034619162,-0.025447512,-0.018315548,-0.0039857132,0.012314431,-0.014180674,-0.0034324308,0.003132375,0.023310699,-0.021382015,0.04415157,0.014090484,0.02869436,-0.020299733,-0.037130613,-0.032912485,0.0131122675,-0.014929947,0.00783961,-0.03269048,0.015457213,-0.0056299497,0.047925685,0.033911515,-0.011995297,-0.009837669,-0.008464003,-0.0018870565,0.006500632,0.018482054,0.026071906,0.02938813,0.046010878,0.004367287,-0.015762473,0.011898168,0.014569187,0.07181915,0.0147911925,0.011599847,0.037491374,0.01982797,-0.027445571,0.034272276,-0.023643708,0.0334675,-0.0266963,0.026682423,-0.0013545874,0.008790076,0.011891231,0.0042077196,-0.045067348,-0.0062994384,0.015665345,0.002006732,-0.008221184,-0.040349707,-0.014222301,0.007090337,-0.01468019,0.0077355443,-0.030609166,0.020715995,0.01588735,0.011072582,0.011481906,0.00020509599,0.022714054,-0.009678102,-0.0048563955,0.027223565,0.0069897408,-0.023962842,-0.021423642,0.08619408,-0.015110328,-0.011481906,0.028472353,0.028125467,-0.013792163,-0.0350493,0.013486904,0.02175665,-0.031275187,0.025405886,-0.024143223,-0.030692419,0.0015939383,-0.018065792,-0.0200916,-0.006545727,-0.036631096,-0.010899139,-0.0067469208,-0.019453332,-0.039517183,-0.024517858,-0.026155159,-0.013604845,-0.020549491,0.0051200283,-0.0029259783,0.01982797,-0.019786343,0.039295178,-0.0045927623,-0.016400741,0.009379781,0.0064035044,0.0014569187,-0.08452903,0.004891084,-0.026890555,-0.017025135,-0.0074302847,-0.0018228827,-0.031524945,0.012723756,0.014943822,-0.0150687015,0.010649381,-0.0055397595,0.018384926,-0.0074233473,0.067712024,0.0010250463,-0.018190669,0.014305553,0.00035187186,-0.00064737484,-0.015637593,-0.011343152,-0.00908146,0.009990299,0.007922863,-0.0062543433,-0.047176413,-0.0016477056,0.041459743,-0.014145986,0.007811859,0.009872358,0.02739007,0.009900109,0.01685863,-0.030942177,0.023144193,0.013514655,-0.0034792605,0.008713761,0.014916072,-0.0069932095,-0.020438487,0.0077494197,0.0015696564,0.0098237945,0.029582385,-0.020688245,0.010129053,0.007215216,-0.065713964,-0.015928976,0.0035399653,-0.017455272,0.004610107,0.00995561,-0.01721939,-0.0152768325,-0.035382308,-0.046815652,-0.04079372,-0.010510627,-0.01310533,-0.0046170447,0.048203193,-0.029554635,-0.02288056,-0.004610107,0.008512568,-0.021784402,-0.0067746714,-0.003408149,0.018204546,0.022325544,0.022478173,-0.0047731427,0.0029485258,0.01386154,0.02100738,0.034244526,-0.027417822,0.028347474,0.017871534,-0.004845989,-0.0062127174,0.0018575712,-0.000167047,0.018801188,0.01837105,0.017413646,0.04312479,0.007957551,0.0061051827,0.037213866,0.031663697,0.031830203,0.005345504,-0.009379781,-0.027473323,-0.017399771,0.04537261,0.022200665,-0.002242614,-0.063271895,-0.019023195,-0.0084223775,-0.0150687015,0.027070936,0.029110622,0.028888615,-0.03141394,-0.017760532,0.014610812,0.059664287,0.0010024988,0.0018367581,0.022977687,-0.055945676,-0.02808384,0.01261969,-0.02872211,-0.024101596,0.014444307,-0.023754712,0.0096503515,0.025780521,0.0038330834,-0.014763442,0.008026928,-0.0057687038,-0.018995443,0.012411559,-0.019425582,0.0010623365,0.0062820944,-0.038573656,-0.007249905,0.01567922,-0.053919863,0.00081301265,-0.012349119,0.015609843,0.013237147,-0.004363818,0.0148605695,0.00886639,-0.01186348,0.021645648,0.00094873155,-0.015318459,0.004676015,-0.023504954,-0.021271013,0.007145839,-0.04551136,0.040460713,0.0062786257,-0.020563366,-0.0200361,0.030276157,-0.06182885,0.051339038,-0.012154864,-0.020743746,-0.04204251,-0.02659917,-0.04343005,0.0014074874,0.012113238,0.06876656,-0.035521064,-0.0070938063,-0.017385896,-0.05611218,-0.008963519,0.010226181,0.049368728,0.011218273,0.012376871,0.0147911925,0.010122116,0.007693918,0.008921892,0.02708481,0.03804639,-0.007860423,0.018273922,0.000020325315,-0.027223565,-0.0023432109,0.050562013,0.02057724,-0.016789252,0.028805362,-0.016081607,-0.006583885,-0.0041418117,0.047981188,-0.012453185,0.005695858,0.02523938,0.016081607,-0.014111297,0.007048711,-0.007340095,-0.047953434,0.03982244,0.006431255,0.023990594,-0.0037914573,0.001230576,0.026835054,-0.0058762385,-0.007964488,0.008644383,0.026807303,-0.021659523,-0.077036306,0.032940235,0.023754712,0.00593174,-0.010670194,0.013473028,0.019619837,0.0038885851,-0.004159156,-0.037963137,0.006722639,0.010378811,-0.0029225093,-0.008894142,-0.008165682,0.011155834,-0.025350384,0.021326514,-0.0023952436,-0.016456243,0.023463327,0.030192904,0.01752465,0.031219685,-0.0022113943,-0.009740542,-0.017122263,0.05849875,-0.054280624,0.015734721,-0.00986542,-0.011544346,-0.016456243,-0.0063202516,-0.0051651234,-0.022131288,0.031136433,-0.0003358284,-0.014111297,-0.024975749,-0.009934798,0.02690443,0.01468019,0.02039686,-0.013244084,0.02136814,0.0016086809,0.0060635568,0.0006421716,0.0049014906,-0.023907341,-0.006812829,-0.004471353,-0.0032884735,0.015693095,0.017483024,0.012224241,0.02372696,-0.004669077,-0.042514272,0.01277232,-0.0484807,-0.007333157,-0.049229976,0.02405997,-0.020119352,-0.020896375,0.03438328,-0.009830732,0.003770644,-0.02651592,0.03371726,0.0032832702,0.018190669,-0.016026106,0.026987683,-0.031802453,0.03940618,-0.022464298,0.01010824,-0.023685334,0.049895994,0.008137931,-0.00026905298,0.033634007,-0.030636918,-0.0150687015,-0.008339125,0.0029571978,-0.045039598,0.034855045,-0.023602081,-0.026654674,0.011343152,-0.03446653,0.009587912,-0.019536585,0.031136433,0.021451393,-0.0072290916,-0.018273922,-0.01010824,0.011343152,0.0076384163,0.01888444,0.0031826734,-0.01144028,-0.0005233633,0.0150687015,0.01017068,-0.014666314,0.00018319885,-0.0158596,0.006001117,-0.05511315,0.040488463,-0.011336215,-0.020313608,0.017871534,-0.016012229,0.013223271,0.009095334,0.002599906,-0.035299055,0.028611107,0.024073847,-0.0043742247,-0.007305406,-0.03965594,0.024143223,-0.018967694,-0.012931887,-0.024129348,0.08830314,-0.0030179028,-0.0025079814,0.052171562,-0.034189023,0.0400167,-0.00066645356,0.020258106,-0.0012895464,0.024836993,-0.03038716,-0.0011403857,-0.013833789,-0.011648411,0.0020483583,0.033412002,-0.0007835274,0.01616486,0.0054773204,-0.0080408035,-0.01192592,-0.040099952,0.0046205134,-0.004349943,-0.0056854514,-0.018509803,-0.02270018,0.014916072,0.038268395,0.026307788,-0.028666608,0.017205516,-0.0018766499,-0.027598202,-0.02154852,0.025294883,-0.014666314,-0.054641385,0.03840715,-0.0367421,0.01077426,-0.014028045,-0.022936061,0.0158596,-0.0015878679,-0.016941883,-0.012120175,-0.02154852,0.0097891055,0.0021767057,-0.013299585,-0.02659917,0.01873181,-0.032884736,-0.000027859232,-0.0020379517,0.04273628,-0.008144869,0.018135168,-0.003940618,-0.03973919,0.021423642,-0.01598448,0.0074233473,0.038906664,0.04548361,0.027764706,0.000889761,0.0050194315,0.0033509128,-0.03632584,-0.020618867,0.020299733,-0.00033756284,-0.022339419,-0.0010744774,-0.025059,-0.016109357,0.011086457,0.013653409,0.022922186,-0.0024715583,-0.013917042,0.0060878387,-0.038573656,0.018953817,0.040599465,-0.030165153,-0.024087721,-0.022644678,0.023921216,0.011148896,0.00077051914,-0.023990594,-0.0152074555,0.016719876,0.01655337,-0.000901902,-0.013625658,-0.01567922,0.007451098,0.015027075,-0.006108652,0.010885264,-0.03471629,0.00726378,0.013729723,-0.0037810507,0.009053709,-0.020604992,-0.024157098,-0.024004469,-0.00817262,-0.004242408,0.011114208,-0.0075829145,0.03807414,-0.03771338,0.027764706,-0.012279742,-0.025558515,0.021479143,-0.012134051,0.0022877092,-0.006844049,0.0025686864,-0.0011187054,0.021201635,0.022034159,-0.0056542316,0.0024247288,0.016664375,-0.00035859278,0.014652438,0.0035659818,0.022589177,0.011488844,-0.0068197665,-0.019286828,-0.021146134,0.05949778,0.003944087,-0.0061884355,-0.009116148,-0.015998354,0.02623841,-0.022408796,-0.016650498,-0.03943393,0.012675192,-0.016747626,0.004922304,0.0021333452,-0.03105318,0.029721139,-0.022519799,0.009192463,-0.002112532,0.006462475,0.01437493,-0.0049292413,0.033772763,-0.030775672,0.004179969,0.0013823382,0.0064208484,0.013500779,0.0351048,0.0048286445,-0.018107418,-0.035243556,0.011565159,-0.011891231,0.016969632,0.025170004,-0.009969486,-0.02157627,-0.007340095,-0.013500779,-0.0115374075,-0.037130613,-0.021271013,0.024268102,0.0333565,0.003002293,-0.013146956,-0.0017110122,0.007902049,-0.017455272,-0.0060392744,0.0132857105,-0.0077910456,-0.032551724,0.00626475,-0.014569187,-0.0020310138,-0.013611782,0.048536204,0.0025513421,-0.014652438,-0.022963813,-0.02639104,0.023158068,-0.04612188,-0.010850575,-0.015970603,-0.009671165,0.0065908222,0.018273922,-0.013264897,-0.004839051,-0.0070695244,-0.0016589793,-0.0020882501,0.012633566,-0.009879296,-0.019328455,-0.008394626,0.0017899286,0.04612188,-0.022048036,0.004554605,-0.00029832142,-0.0059213336,-0.041459743,0.013917042,0.013029015,0.006094776,-0.0056230123,-0.016511744,0.0015436399,0.017108386,-0.013278773,-0.00038829484,0.0054773204,0.004845989,-0.033800513,0.013986419,-0.017691154,0.015401711,-0.015928976,0.00076314784,0.0001610849,-0.04473434,-0.046232883,0.008387689,0.029582385,0.0020743746,-0.019161949,0.022616927,0.015790222,0.023893466,0.00029788783,-0.009345092,0.0071805273,-0.020604992,0.0039995885,-0.020688245,-0.0044817594,-0.010344123,0.013889291,0.0039683688,0.013965606,0.010739571,0.017080637,-0.0022720993,-0.0007965356,0.017816033,0.03249622,-0.025503013,0.0102747455,0.01939783,-0.0041001854,0.016594997,0.014666314,-0.03332875,0.021493018,-0.010427374,0.034494285,-0.016928006,0.011662287,0.034771793,0.015360085,0.003749831,-0.03876791,-0.013327337,0.023657583,-0.025059,-0.000049675073,0.006292501,-0.030858925,-0.026835054,-0.009726666,-0.03405027,0.031913456,0.0005081871,-0.028014464,-0.036298085,0.02206191,-0.025336508,-0.000979084,0.017330393,0.039322928,-0.042347766,-0.00859582,0.022408796,0.00568892,-0.046815652,-0.0069862716,-0.0015384367,-0.024226476,0.03368951,-0.022297792,0.016969632,0.004204251,0.028139343,0.012945763,0.04576112,0.00011338816,-0.019078696,0.013133081,0.0016511744,-0.006368816,0.01153047,0.052310318,0.019814093,-0.000055068056,0.0009469971,0.060663316,0.0018506335,-0.012182615,-0.010295559,-0.007520475,0.0044540083,0.02899962,-0.013278773,0.02757045,-0.0134938415,-0.013035953,-0.008852515,-0.019508835,0.0054010055,0.0048043625,-0.03865691,0.0013424464,0.0113292765,-0.01988347,0.015124203,0.02000835,-0.005550166,0.02188153,0.014305553,-0.007957551,-0.0043117856,0.041987006,0.044262577,0.0046864217,-0.053364847,-0.00079566834,-0.016608872,0.009726666,-0.03546556,0.011717788,-0.0016893318,0.03038716,0.014118236,-0.0034116178,0.014735691,0.019134197,0.008824764,-0.00086547906,0.02267243,0.007624541,0.016386867,-0.019925097,0.017080637,0.015457213,0.011669224,0.0023570862,-0.0040169326,0.047259666,0.019023195,-0.017663404,-0.02270018,-0.020452362,0.009310404,0.014957698,-0.014416557,0.0350493]},{"id":"interface-MessageFlagsString","type":"interface","source":"main","text":"Interface: MessageFlagsString","meta":{"url":"/docs/typedefs/MessageFlagsString"},"embedding":[-0.001211521,-0.023829153,-0.051691562,0.038933296,0.01820454,0.0028757548,-0.03179964,-0.012607364,0.049002726,-0.029577233,-0.034186672,-0.018602379,-0.017779265,0.061239686,0.007675539,-0.03868636,-0.026682615,0.037012696,-0.0011832265,0.04999046,0.026476836,0.031854514,0.028699243,0.06678199,0.014802335,0.0030781038,0.013348167,-0.022594482,0.012381008,0.0040984224,0.024446487,-0.044832278,0.035476215,-0.03188195,0.0327325,0.024569955,0.008073377,0.008903351,-0.03064728,-0.016558312,-0.031470396,0.01589982,0.017312832,0.008862195,-0.020330917,0.035750587,0.062666416,0.04310374,-0.0045648534,0.0036045536,-0.036738325,-0.01916484,0.023637092,0.033281244,-0.0060601775,0.009205159,-0.0064134304,0.008162548,0.020372074,0.029522358,-0.0327325,-0.020536697,-0.03629933,-0.03613471,-0.022676792,0.040085655,-0.0254891,0.05525839,0.031196022,0.03352818,0.026271058,-0.021291217,-0.00680098,0.01197631,-0.014980676,-0.010048851,-0.005796095,0.019000217,0.035037223,-0.03303431,-0.008265438,0.021222625,-0.031360645,-0.05586201,-0.002575661,0.0118802795,-0.057617985,0.014925802,-0.04011309,-0.03322637,-0.052295182,0.025022667,-0.038658924,-0.028973615,-0.030098537,-0.02653171,-0.026394524,-0.0047809207,-0.03275994,-0.047383934,0.08209191,-0.0017748397,-0.03747913,0.01599585,0.0044105197,-0.015351078,0.02345875,0.0058681173,-0.035585966,0.00016451564,-0.052212868,0.029001052,0.0075520715,0.011523597,0.031415522,0.022086894,0.0052164854,0.015707761,0.07633011,0.011105181,-0.012271259,0.001984048,0.013622538,0.0020663594,0.007867599,-0.02481689,-0.026284777,-0.015351078,-0.02710789,0.011832265,0.046039514,0.0062042223,0.033857424,0.030482657,-0.016297659,-0.012408445,-0.028177937,0.027423417,-0.054160904,0.019658707,-0.010583875,-0.019315744,0.015392233,0.021565588,0.023102067,0.0076412424,-0.057343613,0.028946178,0.025242165,0.032266073,-0.00871815,0.03690295,-0.017011024,0.016174192,-0.010096866,-0.021400966,0.011845984,-0.019233432,0.013156107,0.0065403273,-0.010302644,-0.044310976,-0.016050724,-0.008745587,-0.014582838,-0.0027419988,0.055779696,-0.009369782,-0.033198934,0.0058475398,0.01216151,-0.030921651,0.0057515097,-0.019288307,-0.033747677,0.00834089,0.0057617985,0.0063825636,-0.06749535,-0.02175765,0.06189818,0.058825217,0.025406787,-0.104590364,-0.01541967,-0.0064340085,0.01668178,-0.0048529436,0.026257338,-0.036656015,-0.022100613,0.025324477,0.047109563,0.0423355,0.019891923,-0.0019205995,0.03056497,-0.041704446,0.0048255064,-0.051965933,-0.013265855,-0.008773024,0.05018252,-0.044749968,-0.033116624,-0.036107272,0.009952821,0.020550415,-0.010693624,0.041320328,0.05117026,0.014857209,-0.021318654,-0.042390376,-0.024432769,-0.015008113,-0.019850768,-0.005449701,-0.025324477,-0.05501146,0.008457497,0.0064408677,0.05717899,-0.0076412424,-0.0071542333,0.057508238,0.0006387708,0.03821993,-0.040469777,-0.0062110815,0.020838505,0.006821558,0.0071542333,-0.078415334,-0.036957823,0.015159017,-0.032238636,-0.018410318,0.03668345,-0.01503555,-0.035119534,0.018794438,0.037588876,0.027670352,-0.03245813,-0.004770632,-0.0017919879,0.034241546,-0.027752662,-0.002680265,0.036820635,0.00016022859,0.0046608835,-0.004897529,0.0032976007,0.025159853,0.0051478925,0.026614022,0.034323856,0.007106218,0.007991066,-0.041073393,-0.0032427264,-0.024048649,-0.0015347648,-0.0024076086,0.032485567,0.033747677,-0.053859096,0.032266073,-0.009445234,-0.021977145,0.044420723,0.06436752,0.0024984942,-0.061843302,0.01072792,0.03764375,0.0036834355,-0.029083364,-0.044118915,-0.025653722,0.0094177965,0.010364378,-0.03813762,0.0042870524,0.0377535,0.026120152,0.049030162,0.004455105,-0.015735198,-0.0051719,0.04186907,-0.026078997,-0.00078924635,0.032485567,0.011811687,-0.0018365732,0.04359761,0.028946178,0.024254428,0.0035496794,-0.016119318,-0.031168586,-0.034680538,-0.012675957,0.037232194,-0.014281029,0.0133344475,-0.046505947,0.009026818,-0.060745817,-0.069690324,0.0022001152,-0.07248891,-0.023719404,0.04826192,0.06091044,-0.01389691,0.016270222,-0.0007270841,0.03821993,0.035092097,-0.02826025,0.04941428,0.00088741985,0.054764524,0.024295583,0.031772204,0.04933197,-0.017847857,-0.01714821,0.008018503,-0.009225737,0.03188195,-0.0024676274,-0.05898984,0.019507803,-0.008567246,0.047850363,0.057508238,-0.003047237,-0.011763672,-0.014239874,0.009843073,-0.03698526,-0.07671423,0.03336356,0.033583052,0.013862613,-0.025118697,0.012079199,0.00037683191,-0.04282937,-0.009877369,-0.048728354,0.036930386,0.009397219,-0.011551034,0.05182875,-0.021304935,0.023143224,-0.031250898,-0.014980676,-0.034351293,-0.017943887,-0.029247986,-0.0013770013,0.013711709,-0.06689174,0.009218877,0.013862613,0.008375186,0.001514187,0.031415522,-0.021538151,-0.036052395,-0.028863866,0.05089589,-0.021222625,0.04082646,0.019987954,-0.042472687,-0.008382045,0.0044859718,0.0023784568,-0.018835593,0.025420506,-0.012271259,0.028095627,0.040661834,0.0023304417,-0.019864487,-0.0030420923,-0.016105598,0.026106434,-0.006903869,0.031168586,0.025132416,-0.050017897,0.026737489,0.0018451473,0.020317199,0.04118314,-0.010316363,-0.0054154047,-0.023321565,0.04126545,0.0327325,0.0047294763,0.03256788,-0.039701536,0.03564084,0.035201844,0.0076481015,0.007586368,-0.023403877,-0.0490576,0.002126378,-0.0016016428,0.015639167,0.04414635,-0.010652468,0.0013049787,0.03018085,0.025132416,-0.01686012,-0.055066332,0.012017465,-0.07874458,-0.03725963,0.0002181038,0.0065780533,0.017285395,0.03542134,-0.038165055,0.033857424,-0.0058063837,0.03706757,-0.00028165933,-0.018245695,0.007682398,-0.006019022,-0.008786743,0.01838288,-0.014582838,0.032403257,0.03448848,0.030811904,-0.027807537,-0.06579425,-0.031196022,-0.07863483,0.011557894,-0.0130737955,-0.010755357,-0.0031827078,0.05487427,0.030757029,-0.024199553,0.02107172,0.019315744,-0.015474545,0.05287136,-0.006588342,-0.0068730023,-0.008587823,-0.00718167,0.009013099,0.026902111,-0.033198934,0.00036482816,0.00030480942,0.025941812,0.025187291,-0.028177937,0.04955147,-0.05361216,-0.004942114,-0.024830608,-0.0029374883,0.012257541,-0.0048392247,-0.030482657,-0.026847238,0.12094289,0.048453983,-0.015186454,-0.047164436,0.0040538367,-0.019960517,0.0005208769,0.0017191081,-0.017093336,-0.011839124,-0.010967995,0.000073576535,-0.037972994,0.010933698,-0.082421154,0.018725846,-0.021908553,0.028891305,-0.012120355,0.09449349,0.043570172,-0.01810851,-0.0065849125,-0.06370903,-0.04656082,-0.0032015708,-0.009088552,-0.016777808,-0.012991483,-0.038439427,0.0044791126,-0.027862411,0.039152794,-0.007675539,-0.0021778226,-0.00603274,-0.004108711,0.03698526,-0.02413096,0.010775935,-0.003486231,-0.039125357,0.002815736,-0.012874876,-0.029247986,0.023321565,-0.03918023,0.016078161,-0.026284777,0.007119937,-0.0056417612,-0.006646646,-0.025859501,0.045188963,-0.0103506595,-0.018012479,-0.029714419,0.0154608255,0.0040572663,-0.032513008,0.0072159665,-0.0346531,0.042692184,0.016969869,-0.0052747894,-0.04195138,-0.008210563,0.008992521,-0.020083982,0.037314504,-0.0048769508,-0.014761179,-0.0070170476,0.017134491,0.04837167,-0.024556236,-0.062995665,-0.0031432668,-0.009925384,-0.025530254,0.0062110815,0.014816053,0.03918023,0.016530875,0.0016367966,0.025694877,0.051033072,-0.010480986,0.07951282,0.0014918942,-0.002683695,0.01187342,-0.0028123064,0.007353152,0.008155689,0.0072777,0.0063928524,0.018821875,-0.0026305353,-0.013636257,-0.035668276,0.016846402,-0.014184999,-0.0113041,0.0090062395,-0.0110228695,0.014061532,0.025736034,0.0310314,-0.023884026,-0.0012904028,-0.0069656027,-0.0036045536,-0.02605156,0.029275423,0.009891087,-0.01091998,-0.004969551,-0.00013129099,0.049167346,0.014171281,0.0023407307,-0.06063607,0.040469777,0.030290598,-0.004297341,0.04417379,-0.027958442,-0.046588257,-0.054435275,0.0033164637,-0.009911666,0.0011163484,0.013773442,-0.007462901,-0.030290598,0.009184581,-0.017738108,-0.0022378415,-0.02672377,0.03303431,-0.04571027,-0.01628394,0.028369999,-0.0001778055,-0.010501564,-0.002729995,-0.02079735,-0.014953239,-0.0074697603,-0.019425493,0.01235357,-0.00085355213,0.0011240651,-0.029193113,0.045243837,-0.04014053,0.026175028,-0.0054188343,0.047246747,0.013519648,0.01895906,0.015858665,-0.024693422,0.033610493,0.006903869,0.02242986,0.015954694,-0.0075246342,0.014514245,-0.01609188,-0.00449969,0.034461044,-0.023170661,-0.01810851,-0.001733684,0.003909792,-0.013320729,-0.008238,0.0012329563,0.010865105,-0.0075726495,0.004702039,-0.02183996,0.005607465,0.047768053,0.05553276,-0.014733742,-0.0047500543,0.009129707,-0.01953524,-0.014473089,-0.03144296,-0.0016085021,0.019946797,0.018328007,0.026010405,-0.041622136,-0.03671089,0.025159853,0.00794991,0.00050329993,-0.016462281,-0.00050844444,-0.012038044,0.0058441097,-0.01599585,0.012127214,-0.017518612,0.018341726,-0.012490756,0.022416139,0.008183125,0.0065163197,-0.017875293,-0.0049455436,-0.005449701,-0.029879041,-0.00089685136,-0.0031261186,-0.027190201,-0.004914677,-0.016064443,0.048152175,0.017847857,-0.023129506,-0.017792983,-0.01474746,0.02998879,0.0013538512,0.022361265,0.0070719216,-0.010556438,0.049085036,0.016777808,-0.009993977,0.0028414584,0.004455105,0.060965315,0.020989409,-0.0132247,0.036024958,0.029412609,-0.015598011,0.04214344,-0.010083147,0.03533903,-0.015172736,0.035887774,-0.010412393,0.006399712,0.00012957616,-0.010364378,-0.031278335,-0.016626904,0.028452309,0.013903769,0.018547503,-0.028781556,-0.020522978,0.01686012,-0.032128885,0.013732286,-0.034625664,0.011057165,-0.0072777,0.010926839,-0.003680006,0.012984624,0.0075452123,-0.004633446,0.012806283,-0.004365934,0.0078538805,0.01053586,-0.0036182723,0.04949659,-0.013910628,-0.0053879675,-0.0053433822,0.034241546,-0.010844528,-0.009726465,-0.007078781,0.0025808057,-0.013176684,0.014130125,-0.026408244,-0.014953239,0.00507587,-0.007606946,-0.009383501,-0.049469154,-0.027094172,-0.0037828952,-0.0034896608,-0.020632725,-0.03064728,-0.0027522878,0.0000126669,-0.048124734,0.0007858167,0.00851923,0.007510916,0.013972362,0.0041738744,0.045079213,-0.0049455436,-0.023691967,0.015241329,-0.0050998777,0.02509126,-0.061953053,-0.018190822,0.007222826,-0.011674501,-0.02872668,-0.0097539015,-0.025941812,0.047521118,0.015598011,-0.017971324,0.020536697,0.010899402,0.015255047,-0.0048220768,0.043762233,0.007915613,0.02232011,0.0005127315,0.0043830825,-0.0031398372,0.008917069,0.020083982,-0.006999899,0.058111854,0.023774277,-0.00584068,-0.036436517,0.022059457,0.026902111,-0.02729995,0.0010623316,-0.0145554,0.025255883,-0.015556856,0.033198934,-0.012010606,0.0040092515,0.0097539015,-0.027368544,-0.020742474,0.0012423878,0.008484934,-0.027094172,0.012038044,-0.016489718,0.020550415,-0.00060919015,-0.02001539,-0.011667642,-0.01082395,-0.02776638,-0.008821039,0.008361467,-0.0029512069,0.0072365445,-0.0013830031,-0.005240493,-0.023595937,-0.025818344,-0.008443778,-0.02328041,0.0019874775,-0.00003335863,0.019109964,0.04587489,-0.04502434,0.00046857484,-0.015104143,-0.0030215145,-0.032842252,0.0068935803,0.0032392968,0.029906478,0.02712161,0.031141149,0.024748296,-0.00059890124,0.008848476,-0.0030197997,0.029083364,0.0050244257,0.035531092,0.029714419,-0.013396181,0.0069964696,0.015241329,-0.0022069747,0.022018302,0.018149665,0.02050926,0.055340704,0.009849932,0.009438375,0.012675957,0.017463736,-0.01732655,0.01398608,0.019987954,-0.018012479,-0.030537533,0.026764926,0.0094177965,-0.0026493985,-0.061349437,-0.019905642,0.01867097,-0.011180633,0.04101852,0.020907097,0.009129707,-0.035119534,-0.015255047,0.011516738,0.052377492,-0.029961351,0.014473089,-0.0060841846,-0.04052465,-0.012010606,0.01609188,-0.024652267,-0.017587204,-0.008821039,-0.02232011,0.005466849,0.023486188,0.0033713381,-0.030263161,-0.0016239354,0.0076961163,-0.031909388,0.008663275,-0.0032907415,-0.009164004,-0.007593227,-0.027738944,-0.016146755,-0.0033404713,-0.042088564,-0.0024470496,-0.008923928,0.008450638,-0.005219915,0.0046162982,0.013053217,-0.01073478,0.0058955546,0.010604453,0.025228446,-0.03188195,-0.01254563,-0.026257338,-0.032128885,0.004297341,-0.041896507,0.014143843,-0.018259414,-0.01025463,-0.021181468,0.041786756,-0.041238014,0.028369999,-0.003724591,-0.034433607,-0.033390995,-0.025324477,-0.030784465,-0.0022069747,0.01503555,0.06689174,-0.012916031,0.0031003964,-0.00804594,-0.0442561,-0.012751409,0.029961351,0.051307444,-0.024103524,0.010583875,0.027053015,0.025434224,-0.0019137402,0.025255883,-0.0013787161,0.0396741,-0.007984206,0.019699864,-0.024569955,-0.047164436,0.005796095,0.03714988,0.042088564,-0.022484733,0.014541682,-0.0008299734,-0.014994395,0.01388319,0.031113712,-0.012010606,0.01580379,0.05553276,0.003170704,-0.019809611,-0.006289963,-0.0071473736,0.001259536,0.0075657903,0.034186672,0.034762852,0.0007673824,0.0002831598,0.03179964,-0.014020376,-0.013368744,-0.021922272,0.0281505,-0.019151121,-0.044969466,0.014486807,0.0022515599,-0.00003534139,0.022059457,0.024309302,0.0020595,-0.04186907,-0.00015390519,-0.017065898,0.0014738886,0.01600957,0.012675957,-0.00061647815,0.0034845162,0.02174393,-0.019205995,0.0442561,0.013746005,0.00880732,0.005638331,0.023156943,0.01168136,0.0023990346,0.005621183,-0.0063379784,-0.007867599,0.008553527,-0.019233432,0.0056760577,0.004561424,-0.02108544,-0.0036594279,-0.005322804,-0.018917905,-0.011365834,0.016201628,0.010378096,-0.0021692486,-0.0047191875,-0.014418215,0.0044208085,0.031058837,0.036546264,-0.008773024,0.03706757,-0.011743094,0.021894835,-0.016215347,-0.0156117305,-0.0127376905,-0.010974854,0.011413848,0.017299114,0.024665985,0.0054839975,0.0044208085,0.037012696,-0.0019377477,-0.036052395,0.025146134,-0.019933078,0.0071542333,-0.042061128,0.00440709,-0.006598631,-0.018300569,-0.003765747,0.003170704,-0.019603834,-0.020111421,0.00065892,0.0007305137,0.017230522,-0.007414886,0.028315123,-0.05701437,0.027725225,-0.032952,0.019000217,-0.022635637,0.046890065,0.034625664,-0.0051410333,0.05240493,-0.036930386,0.0026185317,-0.014706304,0.00526793,-0.005576598,0.029824166,0.0069072987,-0.024844326,-0.005106737,-0.012058621,0.024117243,-0.016448563,0.038192492,0.020742474,-0.008546668,-0.023019757,-0.009019959,0.019370617,0.016777808,0.00851923,0.0045271274,0.014157562,-0.017463736,0.022841416,0.024062367,0.0026202465,-0.0032204338,0.019987954,0.028891305,-0.036848072,0.021400966,-0.016105598,-0.025804626,0.005658909,-0.030427784,0.027889848,0.012751409,0.004942114,-0.01580379,0.02768407,-0.015145299,0.009712746,-0.0027334245,-0.0057343612,0.039619222,-0.026641458,0.008100814,-0.007634383,0.08697572,-0.0093080485,-0.01569404,0.034323856,-0.009527545,0.0145554,-0.00064262917,0.028562058,-0.016462281,0.024515081,0.016750371,-0.01569404,0.015337359,-0.030400347,0.016338814,0.028095627,-0.008361467,0.02750573,0.03229351,0.004942114,-0.0022755675,-0.02328041,0.01636625,-0.007360012,0.0029580663,-0.0104261115,-0.015021832,0.012449601,0.036957823,0.028287686,-0.02414468,-0.0010837668,0.01302578,-0.02116775,-0.01589982,0.012230103,-0.008484934,-0.026792362,0.029385172,-0.025598848,-0.025104979,-0.014994395,-0.020632725,-0.007058203,-0.00091399957,-0.019233432,0.0052061966,-0.00881418,0.026463117,-0.041978817,-0.008114533,-0.042993993,0.009273752,-0.03975641,0.0012355285,-0.011091462,0.03907048,0.011516738,-0.0004492831,-0.029632106,-0.02461111,0.031415522,-0.0012363859,0.003074674,0.038850985,0.07210479,0.029138237,0.0013289863,-0.013142388,0.04606695,-0.021826241,-0.022978602,0.0012886879,0.025159853,-0.010357519,-0.000046755667,-0.030784465,-0.024762016,-0.0045854314,0.002069789,0.024803171,-0.018094791,-0.023143224,0.019151121,-0.036107272,0.026860956,0.013711709,-0.045271274,0.0035462498,-0.038466863,0.04892041,0.0077304128,0.014953239,-0.012099776,-0.010885684,0.012957187,0.026271058,0.019617552,-0.011969451,-0.012607364,-0.008752447,0.012586786,0.00085183734,-0.0014987536,-0.021414684,0.00039097917,-0.0018348584,0.0007686685,0.010234051,-0.023760559,-0.014088969,-0.02059157,0.018972779,-0.018314289,0.019370617,-0.027176483,0.024117243,-0.038933296,0.024391614,-0.013581382,-0.0024556236,0.008210563,0.02768407,0.0045031197,-0.015735198,0.006842136,0.02328041,0.025914375,0.018424036,0.024871763,-0.010577016,-0.010810232,-0.016023288,0.018067354,0.010035132,0.004760343,0.0005551733,-0.01895906,0.0041155703,-0.00603274,0.057617985,0.023554781,0.00018284279,-0.003851488,-0.004184163,0.02729995,0.014431933,-0.02135981,-0.049002726,-0.000105943785,-0.02826025,-0.0011643635,0.010138022,-0.03791812,0.0027505727,-0.020934535,0.009205159,0.0022344117,-0.0052610706,0.013320729,0.0026596873,0.02395262,-0.015117861,-0.027834974,-0.014047814,0.015844947,0.009177722,0.0074286046,-0.008862195,-0.014829772,-0.03363793,0.00040255423,-0.007037625,0.01799876,0.019850768,-0.022868853,-0.013389322,-0.00603274,-0.024871763,-0.037287068,-0.04082646,-0.0042493264,0.036463954,0.035476215,0.011276662,-0.017806701,0.004070985,-0.0021418114,-0.0076000867,0.004643735,0.010007695,-0.018300569,-0.037534002,-0.02680608,-0.012655379,-0.0020080553,-0.023513624,0.035887774,0.030702155,-0.008286015,-0.021222625,-0.020660164,0.053035982,-0.022210361,0.015886102,-0.0053571006,-0.007126796,-0.00017662656,0.026120152,-0.010309503,0.0122163845,-0.002423042,0.022155488,-0.006025881,-0.004798069,-0.005353671,-0.024734577,0.0050655813,0.011180633,0.03336356,-0.022155488,-0.0032427264,0.0075520715,-0.010261489,-0.023678249,-0.0048049283,-0.008574105,-0.0037040133,0.0074011674,-0.039893594,0.008882773,0.040167965,-0.024048649,0.006149348,-0.012710253,0.016750371,-0.04464022,0.030482657,-0.008766165,-0.0011540746,-0.008320311,-0.0118802795,-0.00052902225,-0.030125976,-0.05352985,0.027382262,0.0071542333,-0.0024556236,-0.018602379,0.03506466,0.031086275,0.0097539015,0.013375604,0.009843073,0.017504893,-0.017930169,0.010817091,-0.00048572305,0.005881836,-0.016873838,-0.027094172,-0.017930169,0.035009786,-0.012566208,0.004702039,0.00018691548,0.0052610706,-0.0051101665,0.003132978,0.016777808,-0.012984624,-0.018122228,-0.009589279,0.010892543,0.019946797,-0.026257338,0.025132416,0.013327588,0.0065917717,-0.011139477,0.009122848,0.023198098,0.03160758,0.0004321349,-0.008347749,0.020632725,0.011715657,-0.010871965,-0.010199755,-0.009397219,-0.034159236,-0.019205995,0.0003695439,-0.035201844,0.044887155,0.004777491,-0.0058303913,-0.02012514,0.005497716,-0.007078781,0.014239874,-0.0054771383,0.012127214,-0.025900656,-0.024665985,0.02318438,0.012010606,-0.02680608,-0.010775935,-0.010666187,-0.02278654,0.012470178,-0.041512385,0.039619222,0.014706304,0.029467484,0.020934535,0.047164436,0.02528332,-0.023815434,-0.0006464875,0.018465193,0.017257959,-0.018945342,0.044283535,0.0033576195,-0.010817091,-0.0022069747,0.03676576,0.012243822,-0.026943266,0.0032873119,-0.02049554,0.010021414,0.022361265,-0.01791645,0.012730831,-0.00967159,-0.0037314505,-0.010021414,-0.019096246,0.008320311,-0.0016848117,-0.03747913,0.014445652,0.011770532,-0.020852223,0.001240673,0.0129228905,-0.027903566,0.010124303,0.0038103322,-0.010878825,-0.0013572808,0.0264494,0.02826025,0.025777189,-0.020907097,0.0319917,-0.042390376,0.018657252,-0.033253808,0.01676409,0.0028088768,0.03742425,0.011647064,-0.0060841846,0.015954694,0.032595318,0.03056497,-0.025008949,0.024432769,0.010158599,0.0034365011,-0.013704849,0.028589495,-0.0012355285,0.02144212,-0.0046677426,-0.01474746,0.04598464,0.009321767,-0.031415522,-0.0066535054,0.006019022,-0.0058578285,-0.021346092,0.010179177,0.018122228]},{"id":"interface-MessagePayloadData","type":"interface","source":"main","text":"Interface: MessagePayloadData\nDescription: Data for a message payload (content, embeds, reply reference, etc.).\nProperties: attachments: { id: number; filename: string; description?: string | null; }[], content: string | null, embeds: APIEmbed[] | null, flags: number, message_reference: APIMessageReference | null, tts: boolean","meta":{"url":"/docs/typedefs/MessagePayloadData"},"embedding":[0.0018450348,0.013257987,0.024582954,0.025444409,0.0018437216,-0.02842798,-0.02153635,0.00802623,0.016346615,-0.026347885,0.0040945327,-0.0038555318,0.0364332,-0.06668914,-0.0021930307,-0.021074105,0.017166046,0.033932883,0.0031779248,0.051393084,0.012963831,0.013068887,-0.011514068,0.02271297,0.0064241355,-0.0057255174,-0.0054208566,0.01772284,0.014728762,-0.028764158,0.05114095,-0.03767285,0.06958867,0.011167385,0.017985478,0.03504647,0.013594164,0.05425059,-0.037357688,-0.016189031,-0.037861954,-0.005307922,-0.01956131,0.01666178,-0.05307397,0.004630315,-0.0047091064,0.022082638,-0.018206093,0.049670175,-0.021683427,0.01998153,0.02605373,0.09093592,0.0095127635,0.021893537,-0.013846297,0.022965102,-0.01576881,0.0031096388,-0.03956385,0.010179864,-0.03481535,0.020863995,-0.0019159472,-0.01440309,-0.051855326,0.048283443,-0.0066394988,0.04996433,0.074631326,0.05778045,-0.03500445,0.056141585,0.025171265,-0.022523869,-0.043240786,-0.008189065,0.0029651877,-0.0658487,0.00047143595,0.05542721,-0.057948537,-0.053452168,-0.02294409,-0.009749138,-0.009596807,-0.015947403,-0.0362441,0.021168655,-0.038072065,-0.041244734,-0.069084406,-0.0185948,-0.018720865,-0.06635296,-0.037336677,-0.0057255174,-0.004527886,0.023028135,0.05857887,-0.013499614,-0.058410782,0.01032169,0.019960519,-0.023658467,-0.0069651706,-0.0071595227,-0.038744416,-0.03076021,-0.016094482,0.013089898,0.009229113,0.015096456,-0.015852854,0.0036848169,-0.029037302,-0.006208772,0.047905244,-0.025948675,-0.03076021,0.008435946,0.048745688,0.01977142,0.013415569,-0.02056984,0.010610592,-0.0038817956,-0.03052909,0.040803503,0.03265121,-0.0044779847,0.020212652,-0.014644718,-0.022313759,0.0031884303,-0.012554116,0.03721061,-0.023007125,-0.06500826,0.06265502,-0.016441165,0.03429007,0.026768107,-0.017187057,0.013394559,-0.038828462,0.06752959,0.0052054934,0.010458262,-0.015054434,0.013100403,-0.03489939,-0.0011792465,0.013068887,-0.020695906,0.015191006,-0.018447721,-0.005003262,-0.02838596,-0.027251361,-0.052149482,-0.0036270365,-0.004562029,-0.027377427,0.018762888,0.045131784,-0.052149482,-0.01656723,-0.018699855,-0.017355146,-0.04681267,-0.045930203,0.0054681315,-0.033386596,0.00024802916,0.012617149,-0.00082008843,-0.012070861,-0.023490379,0.03748375,-0.012018333,-0.045173805,-0.04622436,-0.041391812,0.007606008,-0.0031516608,0.06378961,0.015600721,-0.005436615,-0.023448357,0.008808892,0.048073333,0.0119553,0.003939576,0.0056940005,-0.0039159385,0.003474706,-0.0014248134,-0.03248312,0.042253267,-0.01929867,0.0485776,0.0017426058,-0.026137775,-0.0046119303,-0.028848203,0.038555317,-0.027335405,-0.035718825,0.020580346,-0.003057111,-0.010216634,0.009061025,-0.010279668,-0.0070912368,0.010768175,0.042799555,-0.013058381,0.0045462707,-0.0419381,0.022628926,0.10009675,-0.007989461,-0.042379335,0.02104259,-0.06273906,-0.017712334,-0.06837003,-0.021189667,-0.023175213,0.021473316,-0.0098594455,-0.014035396,-0.03057111,0.0013230409,-0.023343302,-0.017974973,0.017103013,-0.006634246,-0.0014865334,-0.027314395,-0.0016769462,0.039227672,-0.021420788,0.019466758,0.010526547,0.005778045,0.005956639,0.040467326,0.08001016,-0.033239517,0.03544568,-0.010621097,-0.010347953,-0.031915817,-0.025927663,0.054712832,0.029646624,0.042484388,0.014476629,-0.008267857,-0.017124023,-0.015306566,0.0038056306,-0.005846331,0.03351266,0.033407606,-0.016062966,0.002797099,-0.0014615827,0.0034668269,0.048703667,0.03954284,-0.010122084,0.024730032,-0.03683241,-0.047527045,-0.0050452836,-0.0005272466,-0.021189667,-0.04647649,-0.034521192,0.049544107,-0.06126829,0.005709759,0.04466954,0.023343302,0.0039028067,0.03210492,0.052611727,0.011156879,0.08110274,-0.05979751,0.029478535,0.010353206,0.02195657,0.000039477836,0.061646488,0.0031569137,0.0242888,-0.043198764,0.027461471,-0.056940008,0.0063926186,-0.031789754,0.031159421,-0.002421526,0.020590851,-0.0364332,0.031222453,0.0059198695,-0.056099564,-0.01861581,-0.060595933,0.045720093,0.024435878,0.013919836,-0.020454278,0.029415501,-0.010022282,0.015852854,-0.00055252557,-0.0662269,-0.014560673,-0.00022603318,-0.030613132,0.01664077,-0.007317106,0.030108867,0.0071017426,0.025024187,0.030045833,0.019382715,0.009759643,-0.023595434,-0.022019604,0.037105553,-0.0052685263,0.033428617,0.020233663,-0.02108461,0.006980929,-0.025654519,-0.035340626,-0.00035521845,-0.07774097,0.03136953,-0.004107665,-0.00994349,-0.024835087,-0.012102378,0.0016362373,-0.006980929,0.0060879583,-0.026999228,0.0138357915,-0.058116626,-0.019456252,0.00023030106,-0.02193556,-0.0129323155,-0.0059513864,0.06895834,-0.018185083,0.0027445713,-0.044963695,0.023217235,0.0153275775,-0.05387239,0.04233731,0.02622182,-0.026726084,0.008777375,-0.010820703,0.008640803,-0.0013499614,0.017859412,-0.03290334,0.010584327,0.03920666,0.049502086,0.00004624898,0.010064304,0.01713453,0.011661145,-0.03916464,-0.0023230368,-0.016997958,0.036559265,0.026116762,0.008698584,-0.078875564,0.00514246,-0.020580346,0.03290334,-0.020506807,-0.00931841,-0.0133840535,-0.0371896,-0.006749807,-0.0065134326,0.0039448286,0.014823312,-0.0072803367,-0.019760914,0.040698446,0.0003433997,0.05895707,-0.02449891,0.044585496,0.009097794,0.013678208,0.021462811,0.018678844,-0.015411622,0.04450145,0.0028181102,-0.014728762,0.007563986,-0.01751273,0.0042836326,-0.01626257,0.0052081198,0.0068548624,0.0091083,0.03939576,-0.02781866,-0.023364313,-0.04639245,-0.04019418,0.0540825,0.07219405,-0.009764896,0.022523869,-0.051014885,0.0045515234,-0.02880618,-0.02760855,0.025129242,0.011419518,-0.042064168,0.016924419,0.033197496,-0.040530358,-0.042463377,0.014865334,0.0057465285,0.024919132,-0.03136953,-0.038219143,0.042967644,-0.043324832,0.01155609,-0.021788482,-0.0125856325,-0.060091667,0.01852126,0.026116762,-0.00033946015,0.0040866537,0.0044622263,0.020244168,0.008357154,-0.0037714876,-0.018762888,0.00077150034,-0.023028135,-0.0033722771,-0.0042521157,0.01781739,0.005160845,0.019760914,-0.00021076732,-0.003705828,-0.03899655,0.026536984,-0.017460201,-0.008793134,0.021977581,0.000011285244,0.0123755215,-0.022166682,-0.00582532,-0.0070807314,0.1058958,0.037126563,-0.007138512,0.033596706,-0.0067182905,-0.050258484,-0.013457592,0.028028771,-0.0073696338,0.007479942,-0.006408377,-0.0019829199,-0.028448991,0.029457524,0.0023269763,0.032273006,-0.024856098,0.002242932,-0.033617716,0.05311599,-0.0091660805,-0.057486296,-0.0033039912,-0.029877745,0.0072593256,0.0054208566,0.012879787,0.011661145,-0.0066710156,-0.017239586,-0.014298035,-0.03294536,0.026768107,-0.026957206,-0.0057360227,-0.0045462707,-0.0130373705,0.044585496,-0.011839739,0.0010623724,-0.044207297,-0.020160124,-0.052569702,0.019445747,-0.010326942,0.024624977,0.007479942,0.0019816067,-0.0035955198,-0.0059408806,-0.008640803,-0.017176552,-0.025759574,0.036559265,-0.011808223,-0.021294722,0.021788482,0.007185787,0.008115527,-0.010831208,0.030339988,-0.0145291565,0.043240786,-0.033827826,0.02527632,0.0057622865,-0.018762888,0.051267017,-0.011913278,0.029457524,0.016399141,0.005683495,-0.043156743,0.00035521845,-0.0061299806,0.0044359625,-0.03542467,0.013457592,0.0019198868,-0.026705073,0.046980757,0.018237611,-0.033029407,0.019067548,0.0028259892,-0.021221183,0.021168655,-0.032357052,0.002319097,0.01950878,0.017523235,-0.016031448,-0.013762252,-0.0125226,-0.016231054,0.011240924,-0.01204985,-0.012428049,0.016745824,-0.0011109605,0.029667635,0.039269693,-0.0036480476,-0.017449696,0.018101038,0.033239517,0.017775368,0.026747094,-0.017701829,-0.014476629,-0.010421492,-0.0023164707,-0.0029835722,-0.024351833,0.038345207,0.014150958,0.022818025,-0.037735887,0.0030098362,0.01047402,0.025192276,0.0022967728,-0.029856734,-0.01967687,0.0066394988,-0.0017137156,0.0351095,-0.025003176,-0.046770647,-0.019183109,-0.014655223,-0.01666178,0.02626384,0.0058095613,-0.013268492,0.019445747,0.03094931,-0.006728796,0.005757034,-0.038219143,0.022649936,-0.023385324,-0.016966442,-0.012102378,-0.009691358,0.016829869,0.011020307,0.014413596,-0.007816119,0.003022968,-0.005197614,-0.003398541,-0.004793151,-0.03471029,0.008393924,0.0055364175,0.029856734,0.06492422,-0.012806249,0.043745052,-0.002831242,-0.006791829,0.014907356,0.0061720028,0.0034379368,-0.003992104,-0.031705707,0.03914363,-0.010232393,0.013215965,-0.054754853,-0.01850025,0.036412187,-0.013709725,0.01666178,-0.014865334,-0.0033486397,0.025738563,0.018867943,0.012175917,0.009307905,-0.013173942,-0.00802623,-0.022208704,0.015705777,0.009176586,0.021378767,0.03704252,-0.012554116,0.017659806,-0.054922942,0.012711699,0.0046250625,0.0074379197,0.026789118,-0.0073748864,-0.02939449,-0.05757034,-0.04567807,0.0009888336,-0.021462811,0.00988571,0.01868935,0.041055635,0.016189031,-0.0040341257,0.0043387865,-0.00715427,-0.020023553,0.0043991935,0.056099564,0.01762829,0.015747799,0.024940142,-0.003398541,-0.044753585,-0.005139834,-0.026347885,-0.0011575788,0.007679547,-0.018321656,-0.016777342,0.001483907,0.025129242,-0.0149808945,-0.014907356,0.0010282294,-0.0138357915,0.006613235,-0.011146374,0.0028627587,-0.010563317,0.034521192,-0.0058831004,0.02762956,0.02172545,-0.003978972,0.011282946,0.04095058,0.014613201,-0.027104283,0.03544568,0.017470706,0.018174578,0.0012055102,0.017848905,0.0130373705,-0.0057675396,-0.006959918,-0.0042363573,-0.0017202816,-0.01637813,0.011902773,-0.0007544288,0.027776638,0.00020255987,0.016966442,0.029709656,-0.018867943,0.02977269,-0.027965738,-0.009707116,0.013184448,0.025969686,-0.00079842075,-0.01301636,0.0028969017,-0.0012665737,-0.0046539526,-0.0052054934,0.015831843,0.024603967,0.007185787,-0.021620393,0.007338117,-0.003637542,0.03328154,-0.027272372,0.013300009,-0.0057938034,-0.020454278,-0.043240786,-0.0001361616,0.0489558,0.0010695949,-0.021641405,-0.0020958544,-0.013636186,-0.0028364947,0.03777791,-0.021399777,-0.0095127635,-0.026621029,-0.047064804,0.025423398,-0.0046066777,-0.017502224,-0.009654588,-0.022691958,0.01658824,0.004028873,-0.051393084,-0.013394559,0.010705141,-0.02603272,-0.051561173,0.007821372,-0.012984843,-0.021336744,0.012669677,0.03252514,0.016651275,-0.06937856,0.017796379,0.0485776,-0.021368261,-0.003227826,-0.00050360913,0.03212593,0.018374182,0.013152932,-0.05051062,0.03311345,0.00012302968,0.03429007,-0.008724848,0.027083272,0.002187778,0.019624341,0.004498996,0.0066867736,-0.043997187,0.021515338,0.015905382,0.00093761913,0.050048374,-0.0047826455,0.016987452,-0.0061457385,0.038471274,0.062150754,0.00740115,0.01381478,0.011398507,-0.02273398,0.043745052,0.032146942,0.007301348,-0.0011398507,-0.007921174,-0.0019474638,-0.026999228,0.013215965,0.00015265857,0.004656579,0.026726084,0.025927663,0.03748375,0.0042521157,0.021210678,-0.027944727,0.007007193,0.0049612396,-0.036391176,-0.0043098964,-0.03466827,0.043576963,0.00802623,-0.038513295,-0.0002903796,-0.014707751,-0.010978285,-0.013426076,0.0015495666,0.013825285,0.007753086,0.009780655,-0.024057679,0.013573153,-0.016073471,-0.004874569,0.015831843,-0.0039763455,-0.014707751,0.02880618,0.042967644,-0.017848905,0.014119441,-0.022397803,-0.0077005583,-0.009271136,-0.0130373705,0.023007125,-0.0063033216,0.013310514,0.002797099,0.0064661577,0.017911939,0.010789186,0.001155609,-0.006823346,0.023658467,0.03254615,-0.0037531029,-0.027356416,-0.012774732,-0.025696542,-0.012018333,0.0026605271,0.0056992536,0.010353206,-0.034374114,0.011135869,0.014854828,-0.03254615,-0.043955162,-0.034752313,0.009539027,-0.041202713,0.029751679,0.005552176,0.040656425,-0.0021444426,-0.012333499,-0.017145036,0.048493557,-0.025906652,-0.027356416,0.038261164,0.019151593,-0.012270466,-0.025381375,-0.024919132,0.029814713,-0.0006723543,0.0027524505,0.008950717,0.040677436,-0.015201511,-0.019834453,-0.03351266,-0.017355146,-0.00022258605,0.024015656,-0.03288233,0.007653283,-0.0042705005,0.036664322,0.020863995,0.011440529,-0.055175077,-0.008346649,-0.00164149,0.016976947,0.0060196724,0.012711699,0.03317648,0.01605246,-0.009045267,0.028175848,0.027503494,-0.07349673,0.033617716,-0.009103047,-0.024835087,0.0024254657,-0.015191006,0.04408123,-0.06286513,-0.015611227,-0.0033328815,0.054166544,-0.031810764,0.026579008,0.009481247,-0.026347885,-0.030403022,-0.06105818,-0.040782493,-0.013300009,0.0106421085,0.030361,0.009076783,0.010395228,0.029037302,-0.022965102,-0.010200876,0.059629425,0.031978853,0.008541001,0.036328144,-0.010358458,0.008336143,0.0056677368,0.013005854,-0.00514246,0.052359592,0.011839739,0.036139045,-0.020359728,-0.006576466,0.014644718,0.0111253625,0.016535714,-0.0019605956,0.033785805,-0.03716859,-0.014161463,-0.01527505,0.0049980087,0.0008017037,0.016010437,0.03706353,0.011703167,0.012680182,-0.031201443,0.040803503,0.006093211,0.01986597,0.018647326,0.018048512,0.045299873,0.018647326,0.03273525,-0.007164776,0.012953326,-0.019645352,0.012207434,-0.01049503,0.0010118145,-0.010374217,0.0067760707,-0.02309117,0.0010170672,0.0039448286,0.042232256,-0.029877745,0.045131784,0.02760855,0.0033617716,-0.01842671,0.010074809,-0.0012015707,0.013257987,0.0021352503,-0.0063821133,0.09631476,-0.022502858,0.00008055612,-0.0035114754,0.010442503,0.0029389237,0.018930977,0.034962423,-0.0048036566,-0.038639363,-0.011345979,-0.048493557,0.030108867,0.036370166,-0.0038817956,0.0006822033,0.009418213,-0.0016598747,0.003989477,-0.030802233,0.033848837,-0.02878517,-0.010852219,0.018006489,-0.036559265,0.017460201,0.027587539,0.025528453,0.001214046,-0.018038006,0.016115492,-0.0020892886,0.0071227537,0.012837766,0.012280972,0.0041523133,-0.027692594,0.02153635,-0.009701863,0.0210636,0.027062261,0.02233477,-0.0027603297,0.013541636,0.007106995,0.0071227537,-0.05080477,-0.031075377,-0.019151593,-0.029835723,-0.008976981,0.012690688,-0.0058936058,-0.0108837355,0.019088559,0.01624156,-0.010043292,0.029667635,-0.0014445112,-0.045089763,-0.0040314994,-0.011776706,-0.02781866,-0.029037302,0.026747094,-0.003734718,-0.028091803,-0.010789186,-0.024919132,0.020191642,-0.010116831,0.008246846,0.044627517,0.014350562,-0.001961909,0.005888353,-0.018783899,-0.02430981,0.023679478,-0.016483186,0.018563282,0.011944795,-0.013331526,-0.02077995,0.023616446,0.013594164,0.013184448,-0.009523269,0.0089402115,-0.016892903,0.000607023,0.011020307,0.047905244,-0.020727424,0.017334135,0.0057938034,0.024898121,-0.040068116,-0.009497005,0.0024648614,-0.01969788,0.007222556,-0.04191709,0.0036270365,-0.018195588,-0.010374217,-0.008257352,-0.009234366,-0.009045267,0.038576327,0.008630298,-0.029961789,0.034437146,-0.0061982665,-0.029142357,-0.036391176,0.028890224,-0.0074379197,-0.010011776,0.014108935,0.02525531,0.008772123,0.009801665,0.0057622865,-0.028827192,0.018762888,0.006797082,0.016083976,0.014392585,-0.004877195,-0.019067548,-0.0059723975,-0.0012711699,0.012438555,0.042043157,-0.02487711,0.0038397736,0.0008910008,0.01049503,-0.0046487,-0.042988654,-0.03267222,0.007427414,-0.028301915,-0.0098436875,0.014171968,-0.0068653678,0.034248047,0.009428719,0.0012271779,-0.020170629,-0.00009487812,-0.0371896,-0.04840951,0.0184057,-0.027545515,0.027755627,-0.0064714104,-0.035340626,-0.015401117,-0.005258021,-0.015264545,0.016399141,-0.032567162,0.016125998,-0.013562648,0.016315097,0.041055635,-0.024709022,-0.012491083,0.035949945,0.0061089694,0.0045095016,0.009691358,-0.053242058,0.01155609,-0.014056408,0.016294086,-0.015915887,0.014865334,0.063033216,0.041454848,0.018416205,-0.0063978718,0.028238881,0.068201944,-0.009728126,-0.012102378,0.026579008,-0.0046539526,-0.015359094,0.030066844,0.0067393016,-0.04584616,0.012879787,0.023238245,-0.00070058793,-0.0040997854,-0.008877178,0.062360864,-0.049838264,0.012963831,-0.019109571,-0.034773324,-0.0016887649,0.010200876,0.021578372,-0.01950878,-0.011240924,0.03332356,0.01449764,0.03742072,0.019571815,-0.030613132,-0.024330823,-0.013247482,-0.0055574286,0.020328213,0.022881057,0.0132789975,-0.025129242,0.0024937517,-0.01842671,0.0062875636,0.00842544,-0.014854828,-0.0415599,-0.039269693,-0.012417544,-0.015642744,0.018195588,-0.029478535,0.002667093,-0.010185118,-0.021168655,-0.008498979,0.009812171,0.014476629,-0.00002642799,0.020811467,0.024015656,-0.000121880636,0.0086092865,0.006387366,0.025675531,0.015632238,0.0020393871,0.02007608,0.017187057,-0.012365016,0.02233477,0.0074169086,-0.004774766,-0.01965586,-0.0015233028,-0.031453576,0.014413596,0.0014720883,-0.0062402887,0.0058568367,0.0043387865,-0.012039345,0.016041953,-0.020937534,0.0070912368,0.0051240753,-0.03975295,-0.0049297228,-0.014045902,-0.028175848,0.023742512,-0.009743885,0.01734464,0.014665728,-0.01647268,-0.018846933,0.008850914,-0.0015298687,-0.05080477,0.008015724,0.022229714,-0.041622933,0.013089898,-0.009670346,-0.012333499,-0.02760855,-0.034794334,-0.012354511,0.027020238,0.0071227537,-0.035949945,-0.027125295,-0.0018660459,0.0053289332,-0.02723035,-0.04311472,0.0006221247,-0.006634246,0.023007125,0.031390544,0.0005594198,0.027377427,-0.026936196,-0.005683495,-0.030255944,0.0028837698,0.031243464,-0.01165064,-0.03267222,-0.015443138,0.013657197,-0.007453678,0.0011746503,0.005935628,0.022166682,-0.002481933,-0.0058305725,0.03275626,0.015905382,-0.021683427,-0.0049796244,0.004485864,0.0013072827,-0.016777342,0.027776638,-0.010552811,0.013541636,-0.015422127,0.0023033388,-0.059671447,0.0014720883,0.0305501,0.0123440055,-0.000041406587,0.0130373705,-0.0030439792,-0.0015022916,0.008682826,0.03979497,-0.043366853,-0.009927732,-0.013205459,0.011514068,0.00492447,0.016955936,-0.014024891,0.010768175,0.0019474638,-0.0018581668,0.019550802,-0.018185083,-0.016609253,-0.01155609,0.025948675,0.0010643421,-0.009969754,-0.034962423,-0.0010203503,0.007816119,-0.040845525,-0.03725263,0.00523701,-0.02174646,0.03981598,-0.005082053,0.0040236204,-0.011472045,0.017680818,-0.0013256674,-0.023973634,-0.001852914,0.0009599434,-0.007106995,0.0019067548,-0.0008713029,-0.017890928,0.017428685,-0.005525912,0.054376654,-0.006975676,-0.009796413,-0.020034058,-0.033869848,-0.010389975,-0.01675633,0.036349155,-0.008541001,0.0010216634,-0.0091083,0.011472045,-0.015411622,0.01861581,0.015527182,-0.015516677,-0.0011293452,-0.03798802,-0.01527505,0.04702278,0.036391176,0.013520625,0.0040367525,0.0059461338,-0.026389906,-0.0068443567,0.029310446,-0.00984894,0.024162734,-0.008309879,0.00032813387,-0.010978285,0.010116831,0.011818728,-0.036118034,0.021410283,0.005089932,-0.016388636,0.0032304523,0.012921809,0.023385324,-0.025654519,-0.013993374,0.027839672,-0.012060355,-0.009764896,-0.018290138,0.004139181,-0.007905416,0.02525531,-0.017292112,0.005630967,0.028512025,0.008898189,-0.023154201,0.002038074,0.04643447,0.012322994,-0.0036953224,0.009644082,-0.0017872544,-0.030907288,0.030318977,0.0005328277,0.0115771005,0.014329552,0.019162098,0.02939449,-0.015138478,0.029352468,-0.01713453,-0.02009709,-0.006713038,0.0098594455,-0.026957206,0.034227036,-0.005552176,-0.010368965,-0.011923783,-0.026726084,0.007138512,-0.0358659,0.045972228,0.014434607,-0.0024241526,-0.02605373,0.012953326,-0.033029407,0.016903408,0.017050486,0.017785873,-0.048283443,0.0003923161,-0.009770148,-0.012259961,-0.0121338945,0.03233604,-0.031411555,-0.0018266501,0.009565291,-0.008625045,0.03933273,0.034206025,-0.0053499443,0.0032041885,-0.0011680843,0.002283641,0.025633508,-0.042463377,0.04210619,0.0050479104,-0.009271136,0.012301983,-0.025024187,-0.024961155,-0.02407869,0.027188327,-0.019130582,0.023049146,-0.008126033,-0.05093084,0.01301636,0.009386697,-0.015169994,-0.008667068,0.020349223,0.009570544]},{"id":"interface-MessageSendOptions","type":"interface","source":"main","text":"Interface: MessageSendOptions\nDescription: Options for sending a message (content, embeds, files). Used by Message.send, Channel.send, ChannelManager.send.\nEmbedBuilder instances are auto-converted to API format—no need to call .toJSON().","meta":{"url":"/docs/typedefs/MessageSendOptions"},"embedding":[0.002216361,-0.01639355,-0.019057084,0.005934443,0.0057226974,-0.011021904,0.0029282155,-0.032831676,0.0037417635,-0.04052138,-0.0006230468,-0.015334823,-0.005602894,0.019458285,0.0303576,-0.03037989,-0.009528542,0.029176284,0.039451506,-0.0007856868,0.00791259,0.017641732,0.021063093,0.051665872,-0.029087128,-0.0325865,-0.0033907122,0.021442005,0.0019029223,-0.025922092,0.0136631485,-0.029733509,0.03182867,-0.009578692,-0.0039953007,0.012058342,-0.0018346622,0.014688442,0.009639987,-0.0064470894,-0.003229117,0.0039395783,-0.05746101,0.0044661555,-0.036799118,0.046985183,0.011590273,-0.026546184,0.03717803,0.027838944,-0.018455282,0.01649385,0.022121819,0.011077627,-0.0039228615,-0.051130936,-0.027772076,0.0052072643,-0.026791362,0.014699587,-0.021820918,-0.046762295,-0.00302573,0.011924608,0.03363408,0.044332795,-0.0704332,0.03898344,-0.033544924,0.026969673,0.04707434,-0.05081889,-0.013618571,0.031427473,0.04992733,-0.013406825,-0.036553938,0.0119134635,0.003028516,-0.04063282,-0.03321059,0.031516626,-0.06593082,-0.047564697,-0.05064058,0.01629325,0.0012607208,-0.01936913,-0.013039057,-0.02046129,-0.08180058,-0.009038184,-0.06281036,-0.0059010093,-0.018745039,-0.035684668,-0.01592548,-0.030981692,-0.012069486,0.021319415,0.055677887,-0.04515749,-0.07440064,-0.004811635,0.008386231,-0.027237142,0.016404694,0.011946897,0.01708451,0.007739851,-0.03472624,0.009093907,-0.019012505,0.01530139,0.013083635,-0.025097398,0.042326786,0.048991192,-0.0054440848,-0.018399559,-0.045402665,-0.030491333,0.055499576,0.00682043,-0.010631846,-0.041702695,-0.03608587,-0.02750461,-0.041903295,0.01116121,0.022757055,0.018299257,0.031538915,0.0024740775,-0.008464242,-0.005193334,-0.034458775,0.019458285,0.029934108,-0.03606358,0.014276096,-0.02145315,-0.014309529,0.003229117,-0.015100788,-0.009249929,-0.035484068,-0.010308656,0.02728172,0.0024991527,-0.031940117,0.016504996,-0.018466426,-0.0018806333,-0.037935857,-0.0014655009,0.0029421463,0.008219064,0.016661018,0.004048237,0.035773825,0.019413708,0.005290848,-0.019302262,-0.035952136,-0.018410703,0.06628744,-0.017519144,-0.024919087,0.021040803,0.013507126,-0.07868012,-0.023448015,0.015847469,-0.015691446,-0.01024179,-0.0068817246,-0.05500922,-0.025141977,0.047832165,0.053939346,0.043842435,-0.027972678,-0.025899803,-0.017597156,0.025454022,-0.027014252,-0.005756131,0.055053797,-0.016794752,-0.05719354,-0.006419228,0.03430275,0.022679044,-0.00637465,0.0014473911,0.008843156,-0.021285983,-0.020962792,-0.03960753,0.07435606,0.02618956,0.06628744,-0.010414529,-0.021263693,-0.014944766,-0.0030173715,0.0130613465,-0.024294995,-0.0036693243,0.032140717,0.026969673,0.0053493567,-0.0113841,-0.0026356727,0.015568857,-0.038114168,-0.011255939,-0.02554318,-0.023448015,-0.03604129,0.03231903,0.05518753,-0.009662276,-0.011969185,0.020505868,-0.04645025,-0.02991182,-0.026702207,0.0004391627,-0.0046862597,-0.004307347,-0.0102195,-0.02445102,0.009606553,0.022188686,-0.046806872,0.015045066,0.013261947,-0.0479659,-0.01956973,-0.024517884,0.003318273,0.028262435,-0.024049817,0.008982462,0.0061071822,-0.05037311,-0.03980813,0.013128214,0.033188302,-0.012883035,0.017073363,-0.04134607,0.046940606,-0.057683896,0.024005238,0.006658835,0.035796113,0.004449439,0.03452564,-0.0039033587,-0.00082051335,-0.019413708,-0.009054901,0.013395681,0.003953509,-0.00028226912,-0.022166397,0.005132039,0.008319364,0.026947385,-0.0034882263,0.039696686,-0.034436483,0.014978199,-0.0010016114,-0.00007404993,-0.0037111163,0.001220322,-0.05915497,-0.027593765,-0.01277159,0.043730993,-0.019725753,-0.02088478,0.025922092,0.025922092,-0.0015574429,0.032185297,-0.009940888,-0.006218627,0.041814137,-0.034659375,-0.02641245,0.0026496032,0.04997191,0.003295984,0.06396939,0.024896799,0.010843592,-0.01902365,0.012169787,-0.042349074,-0.011283799,-0.021040803,0.020505868,-0.017808901,0.08902221,-0.055767044,-0.006296639,0.0095619755,-0.04734181,-0.0005676726,-0.037356343,0.050863467,0.029867243,0.03100398,-0.0030563774,0.038805127,-0.014822176,0.0376461,-0.025610046,-0.056881495,-0.0074278046,-0.045558687,-0.012024908,-0.016003493,0.01860016,-0.00043463524,0.01738541,-0.005104178,-0.0084753875,-0.0036748967,0.070254885,0.003279267,-0.019057084,0.008787433,-0.0060403156,0.019213106,0.010319801,-0.0058954367,0.00912734,-0.014454408,-0.010108056,-0.057282697,-0.09156316,0.07890301,0.022277841,0.0028209498,0.0013679866,-0.02135285,0.00096330215,0.0016688879,0.012136353,0.009355802,0.01562458,-0.050908044,-0.045402665,-0.0035077294,0.0031650362,0.037244897,0.01657186,0.040744267,0.015267956,-0.037802123,-0.056703184,0.021297127,-0.024116684,-0.03873826,0.05188876,0.024829932,-0.013730016,0.018979073,0.03428046,0.001241218,0.040811136,-0.041747272,0.010007755,-0.006658835,0.056614026,0.05215623,-0.050061066,-0.025097398,-0.0122143645,-0.006552962,0.011668284,0.017775467,0.001671674,0.002891996,-0.0017900843,0.0058898646,-0.06490553,-0.025654623,0.030914824,0.045380376,-0.008564543,0.0047949185,0.0031706083,-0.0404768,0.028418457,-0.016750174,0.008620266,0.023336569,-0.038649105,-0.06642118,0.034369618,0.0069485917,-0.0050679585,-0.0065139565,0.039429218,0.024517884,0.026947385,0.03934006,0.00008863355,-0.028775081,-0.0030814523,-0.032697942,0.024384152,0.018455282,-0.04595989,-0.0060793213,-0.041190047,0.0063245,0.023024524,-0.0022080028,0.029577484,-0.019636597,-0.0037111163,-0.05171045,-0.054652594,0.050194796,0.043909304,-0.00040259483,0.020517012,-0.026434738,0.024072105,0.0023570603,-0.00056244864,0.042527385,-0.038559947,0.03898344,-0.0055917497,-0.006664407,-0.04397617,-0.025409445,-0.024740776,0.019636597,0.0057951366,-0.0483671,-0.023024524,-0.01902365,-0.034904554,0.018533293,-0.023448015,-0.025275711,-0.0034074287,0.017742034,0.05104178,0.0039033587,-0.014354107,0.013351103,0.00840852,0.003006227,-0.018878771,0.007277354,-0.010865881,0.0017900843,-0.037512366,0.041635826,0.0042627687,0.01277159,-0.010052333,0.0045274505,0.019424852,-0.04462255,0.019302262,-0.04992733,0.022433866,0.023046812,-0.01629325,0.033946127,-0.02725943,-0.012504121,-0.016003493,0.08563428,0.022979945,-0.020840203,-0.0067201294,-0.012660145,0.016371261,-0.02376006,-0.019213106,-0.008241353,0.042415943,-0.029800376,-0.057148963,-0.04132378,0.042505097,-0.027304009,0.0066978405,-0.029666642,-0.020773336,0.001964217,0.046049047,0.010776725,-0.057238117,-0.014710731,-0.028485324,0.028173279,-0.018343836,-0.003591313,-0.017129086,0.009840587,-0.00093892356,-0.0123369545,-0.042371362,0.04069969,-0.010464679,-0.0022247194,-0.023024524,0.02703654,0.031338315,0.0061684772,0.0051905476,0.030825669,-0.030647356,-0.021709474,0.0035773823,-0.00835837,-0.015892047,-0.0230691,-0.0023305921,0.032430474,-0.013261947,-0.026301004,-0.018098658,-0.008603549,-0.00016046329,-0.035082866,-0.011712862,0.01319508,-0.010793442,-0.0016744601,-0.022757055,0.02485222,-0.019937498,0.035127442,-0.02209953,0.00017665763,-0.02768292,-0.025743779,0.042148475,-0.029978687,0.022411576,0.04156896,-0.020517012,-0.011902319,0.0030424467,0.0068092854,-0.013261947,-0.03934006,0.012147497,0.016248671,-0.019881776,0.007868012,-0.009227641,0.018622449,-0.023960661,-0.034748532,-0.0072606374,0.01681704,-0.004156896,0.042527385,0.0035300183,-0.021965796,-0.012626711,0.025899803,-0.04326292,-0.016794752,0.011623707,-0.004296202,-0.0034241455,0.011395245,-0.005834142,-0.011645995,-0.02036099,0.027370876,-0.0078067174,0.047297228,0.0070767533,-0.0020394423,0.02398295,-0.0020018297,-0.020338701,-0.0021425288,0.027794367,-0.0016452058,-0.042571966,0.02311368,0.03604129,0.0022790488,-0.03365637,0.028864238,0.019179674,0.04359726,0.01847757,-0.012682433,-0.012704723,0.0046138205,-0.0050846753,0.019168528,-0.010319801,-0.019279974,-0.024740776,0.007633978,0.0028780655,-0.028217858,0.052468274,0.012660145,-0.025342578,0.033990704,0.0012962439,0.0230691,-0.010057905,0.040788844,0.025431734,0.008386231,0.00786244,-0.008152197,0.021564595,0.028106412,0.0015825181,0.0029783659,-0.024228128,-0.01153455,-0.010046761,-0.02725943,-0.035261177,0.0068594357,-0.000705934,0.004956513,0.005391149,-0.007868012,0.018912205,-0.0046890457,-0.016371261,0.012816167,0.0040788846,0.023225125,-0.029220862,0.0015323678,0.03722261,-0.019235395,0.024317285,-0.0057171253,-0.013540559,0.010431246,-0.017463421,-0.0077008447,-0.009528542,0.009567548,-0.002011581,0.028708214,0.038158745,0.022556454,0.00096539175,-0.00003822213,-0.014788742,0.0040983874,-0.006591968,0.035706956,0.0007431984,-0.0352166,0.02284621,-0.042594254,0.0010691748,-0.0030563774,0.009690137,-0.008118764,-0.018187813,0.0021606386,-0.014398686,-0.04622736,0.040432222,-0.052022494,0.027861234,0.035751533,0.030491333,-0.040053308,0.03472624,-0.008592404,0.01604807,-0.030758802,0.026546184,0.047163494,0.046940606,0.03124916,0.02219983,0.033500347,-0.009589837,0.0038225611,-0.0461382,-0.011980331,0.0032569782,-0.02179863,-0.04219305,-0.014967054,0.04288401,0.0017134659,-0.055098373,-0.013150502,-0.0205393,-0.008832011,0.01165714,-0.026969673,-0.003816989,0.020918215,0.020048944,0.0010622095,0.0063579334,-0.03497142,-0.025431734,0.028931106,-0.014175796,-0.023202835,-0.016059214,0.07038862,-0.030000975,0.019157384,0.017552577,0.020739902,0.0026161699,0.037289474,-0.024785353,0.049303237,0.013239658,0.013874894,-0.015446268,0.0017900843,0.026568472,0.028440747,0.07065609,0.0033795675,0.004471728,-0.0010503685,-0.02058388,0.019904066,0.018566726,0.016995352,-0.0052992064,0.0054440848,-0.03102627,0.048055056,-0.014331819,-0.008675988,0.009194207,-0.0074055158,-0.021018514,0.0010754436,-0.010559407,0.06593082,-0.03757923,-0.00902704,-0.013986339,-0.030446757,0.0005962304,0.011802019,0.029555196,0.013696582,-0.02011581,-0.007121331,-0.03100398,-0.04622736,0.04903577,-0.0645489,-0.007951596,-0.04116776,-0.026546184,-0.004246052,0.011467684,-0.027014252,-0.0009646952,-0.020684179,-0.01669445,0.019848343,-0.023024524,-0.031204581,0.0042989883,-0.021174537,-0.005572247,-0.0007320539,0.02572149,-0.04491231,0.0066086845,0.002756869,-0.010637419,-0.052646585,-0.0018193385,0.028574482,-0.02926544,-0.00073971576,-0.031739518,-0.019123951,0.027838944,0.011980331,-0.008765144,0.032920834,-0.00967342,0.04988275,-0.017095653,-0.0016702809,-0.024072105,0.008163341,-0.001649385,-0.018967928,0.030803379,0.01783119,0.011835452,-0.020004366,0.064281434,-0.013016768,-0.0033294174,-0.022612177,0.036620807,0.023158258,-0.019001361,-0.012715867,0.02681365,-0.013339958,0.0026955744,0.0033349895,0.030892536,0.00781229,0.00041339104,-0.0180095,-0.0378467,0.05206707,0.011122204,-0.02175405,0.02046129,-0.03100398,0.016538428,0.017853478,0.009311224,0.0025590542,0.025030533,0.02683594,0.014097784,-0.029978687,-0.0009375305,0.0354172,0.019012505,-0.009060473,-0.021263693,0.008893305,-0.0015323678,-0.0030229439,-0.009823871,-0.0040928153,-0.018455282,0.01805408,-0.010386668,0.0040092315,-0.03432504,-0.02078448,-0.018343836,0.016371261,0.026902806,0.03392384,0.006826002,0.008469815,-0.035796113,-0.010503685,-0.0032263307,0.011835452,0.017675167,0.0281287,0.017719744,0.05411766,0.027147986,-0.007099042,0.024607042,-0.0022762627,-0.019190818,-0.004126249,0.0028432389,0.026256427,-0.037712965,0.01926883,-0.018733893,0.010481396,0.0054496573,-0.00042453554,0.011322806,0.031516626,-0.04239365,0.0584863,0.025008243,-0.017195953,-0.031271446,-0.027125698,0.020349845,-0.036865983,0.03129374,0.028217858,0.061027244,-0.036152735,-0.013406825,-0.0019558587,0.047921322,-0.02153116,-0.028641349,0.025119688,0.004608248,-0.0015964487,0.026011247,-0.0025214416,-0.009255501,-0.00044229708,-0.03013471,-0.0049063633,0.022110675,0.0073107877,-0.027014252,-0.0277275,-0.012370388,-0.043240633,0.024005238,-0.0002667713,0.02046129,-0.049749017,0.02659076,0.011712862,-0.01880076,-0.028552191,-0.021843206,-0.005031739,-0.0012537555,0.025877513,-0.003635891,0.0036275326,0.0024880082,-0.005934443,0.039718974,-0.0010538511,-0.07676327,0.024495596,-0.042527385,-0.026055826,0.014699587,0.0027638343,-0.011958041,-0.005288062,-0.007845723,-0.002348702,-0.006926303,-0.018221246,0.04464484,0.0068037133,-0.01309478,-0.02076219,-0.012604422,-0.032831676,0.00972357,0.021564595,0.044154484,0.004140179,0.0277275,-0.0047364095,-0.00692073,-0.01956973,0.04814421,0.023559459,0.031494338,0.02462933,-0.0042544105,-0.009595409,-0.00044682453,0.011478828,0.036397915,0.06793683,-0.01817667,0.019881776,0.001989292,-0.026724495,0.0007080236,-0.00962327,0.01341797,0.0076451222,-0.010620702,-0.03940693,0.010063478,-0.043396655,0.018778471,-0.015479702,-0.007951596,0.048233368,0.019435996,0.022779344,-0.017742034,0.024027528,-0.021475438,-0.028351592,0.049481552,0.026434738,0.029644351,-0.011623707,0.0040760986,-0.007567111,-0.012325809,-0.031160003,0.014298385,-0.041724984,-0.022144109,-0.0019210321,0.037712965,-0.008464242,-0.007204915,0.020572735,0.039652105,-0.032631077,0.012782734,0.033099145,0.015423979,-0.029889531,0.011980331,0.03737863,0.006943019,0.006837147,-0.04943697,0.057148963,-0.030402178,0.0011450967,-0.017987212,0.0071659093,0.005850859,0.0038253474,0.024673909,-0.009645559,-0.029332306,-0.0016883907,-0.039005727,0.038827416,0.0333889,-0.017474566,0.019826053,0.0044605834,-0.023715481,-0.01061513,-0.02167604,0.0084753875,-0.004744768,-0.025164265,0.007773284,0.0045107338,0.01902365,0.0035355906,0.018243536,0.033567213,-0.0022679043,0.03898344,0.016761318,0.026947385,0.0028752792,0.0031706083,0.025409445,-0.0025799503,0.04009789,0.02254531,0.026278716,-0.0039256476,0.009890738,-0.03124916,0.0027136842,-0.030625068,0.0032569782,-0.033344325,-0.018221246,-0.0039841565,-0.0404768,-0.017296253,-0.015056211,0.009378091,0.005416224,0.0018959569,0.015992347,-0.0068538636,0.04437737,-0.010453534,-0.03276481,0.009394808,-0.00089573866,0.00080518966,-0.00302573,0.02088478,0.015490846,-0.004783774,0.011361811,-0.00957312,-0.00582857,-0.009879594,-0.015490846,0.015267956,-0.0074668108,-0.00560568,-0.02725943,-0.02685823,-0.004471728,0.03385697,-0.0152791,0.029376885,-0.013027913,0.019413708,-0.043240633,0.024228128,0.025164265,0.018889917,-0.017151374,-0.0017872981,0.019848343,-0.02681365,-0.02393837,0.03321059,-0.0058954367,0.011634851,0.049169503,0.019982077,-0.006508384,0.005301993,-0.03385697,-0.0036526078,0.0024671122,-0.051487558,0.037757542,-0.027192563,-0.00092081376,-0.00796274,0.022567598,-0.036843695,0.02705883,0.040766556,-0.023225125,0.008386231,0.0067145573,0.0014334605,-0.017775467,0.031204581,0.019937498,-0.015134222,0.0031093135,0.0052323397,0.0021717832,0.0002406514,0.028396169,-0.03387926,0.006636546,-0.001389579,0.0028808515,0.042505097,-0.026880518,0.00059065816,-0.027304009,0.012615566,-0.017240532,0.008993606,-0.030469045,-0.006413656,0.013161646,0.013261947,0.04422135,-0.012236654,0.0047085485,-0.015435123,-0.010921603,0.012247798,0.012258942,-0.014521275,0.018499859,0.00011928091,0.0126378555,0.00032144898,0.0066254013,-0.050417688,-0.0031678223,0.02681365,-0.0427057,-0.024941375,-0.058218833,-0.012693577,-0.025699202,-0.0016117723,0.0066142567,0.012481833,-0.040543668,0.019213106,-0.004042665,0.0058620037,-0.004764271,0.013183936,-0.015635723,0.022311276,-0.03722261,0.013618571,0.045826156,-0.04052138,0.00682043,0.0008198168,0.016627584,0.011857741,0.052289963,0.037623808,0.030045554,0.032831676,0.011991475,0.02681365,0.040298488,0.00984616,-0.00090479356,0.024540175,0.008230208,-0.014677297,0.0019739685,-0.012782734,-0.037289474,-0.014688442,-0.001875061,-0.00079125905,-0.011857741,-0.036598515,0.0033795675,-0.02768292,0.024829932,0.0041931155,-0.028708214,-0.0028864238,-0.003591313,0.021274839,-0.01961431,-0.011228077,0.018499859,-0.010353235,0.008319364,0.027616054,0.012615566,-0.0025242278,-0.0017441132,-0.017652877,0.0063356445,0.0004955817,-0.017886912,0.014287241,-0.023826927,0.0016842115,0.0034965847,0.0016312752,-0.002823736,-0.026657628,-0.045046043,0.00830822,-0.02157574,-0.0060681766,0.013941761,0.015568857,-0.013718871,-0.015970059,-0.014532419,-0.0071714814,-0.002391887,0.0126378555,0.0025130832,-0.010977326,0.003413001,-0.0057171253,0.016549572,0.0057115527,0.049169503,0.013562849,0.017006496,0.014276096,-0.001627096,0.0179092,0.0063189277,0.00057359313,-0.009099479,0.0060403156,-0.0055945357,0.009991039,-0.0044856584,0.01188003,0.013919472,-0.016003493,0.011144494,0.00687058,-0.027304009,-0.023916082,0.031093135,-0.016750174,-0.0062520606,0.010102483,-0.015145366,0.020650746,-0.00868156,-0.0031093135,-0.0064470894,-0.005669761,-0.023581747,0.041702695,0.012682433,-0.010721003,-0.014287241,0.011094343,-0.028307013,0.00040538094,-0.011033048,-0.008519965,0.025810646,-0.057282697,0.010202784,0.005335426,0.012303521,0.026902806,0.007633978,-0.0117908735,-0.0091384845,-0.012671289,-0.031382892,0.031962406,-0.0044856584,0.012615566,0.04203703,0.012047198,0.010364379,-0.007009886,-0.017964924,-0.019235395,0.014498985,-0.015658014,0.03122687,-0.037467785,-0.03956295,0.022233265,-0.002823736,-0.011501117,0.0063412166,0.041212335,0.040543668,-0.009879594,-0.015513135,0.03695514,-0.039050303,0.007879157,0.027749788,-0.034659375,0.0122143645,0.014209229,0.033076856,0.025899803,-0.0027526899,0.0068315743,-0.031806383,0.04228221,0.020182677,-0.010030044,-0.027125698,0.0027276147,0.015691446,-0.022210976,0.0008490711,0.02309139,-0.050105643,0.003499371,0.01926883,-0.006775852,0.034748532,0.023737771,-0.0078011453,-0.007985029,0.014822176,-0.02398295,0.030424466,-0.008040752,-0.015223378,-0.02552089,-0.026011247,0.029577484,-0.013718871,-0.003229117,-0.024161262,-0.023626326,0.016605295,0.027214853,0.0378467,-0.02056159,0.006257633,-0.025810646,0.010080194,0.006982025,0.023158258,-0.022979945,-0.038002722,-0.03303228,-0.0019182459,-0.0030758802,-0.025231132,-0.005017808,0.01629325,0.013707727,0.010542691,0.04908035,-0.002260939,-0.02703654,-0.029666642,0.0029922964,-0.034815397,0.017808901,0.023180546,-0.019658886,0.008375087,-0.010620702,0.032809388,0.010893743,-0.012760445,0.014420974,-0.022757055,0.023002233,-0.019380273,-0.02991182,0.019335696,-0.022010375,0.0035077294,-0.0060626045,0.03713345,-0.001039224,-0.0023654187,-0.021464294,-0.013507126,0.021765195,-0.022679044,-0.017151374,-0.043396655,-0.0017246103,0.014777598,-0.03635334,-0.024294995,-0.018165523,-0.0077677118,0.023514882,-0.0037556943,0.010570552,-0.019235395,-0.006096038,0.04132378,-0.0358184,-0.018098658,-0.0061796214,0.00066100777,-0.035617802,-0.013027913,-0.0114899725,0.009355802,-0.011857741,-0.0066978405,-0.018533293,-0.001990685,0.013429115,-0.0014543564,-0.014666153,-0.0057951366,0.00659754,-0.02167604,0.054251395,-0.017028786,0.01024179,-0.011567984,0.057104383,0.032742523,-0.002166211,-0.015056211,0.015691446,-0.00478656,0.030669646,-0.0065418174,-0.043664124,-0.020505868,0.0021146676,-0.028106412,-0.0017872981,-0.0013923651,0.008553399,-0.033188302,-0.0105872685,0.015591146,-0.020383278,-0.0025005457,0.031516626,-0.06980911,-0.011545695,0.044600263,0.03564009,-0.04156896,-0.009066045,0.024473308,0.0013853998,-0.022723623,0.010509257,-0.016649874,0.0019516794,-0.021152249,0.008848728,0.0066142567,0.025097398,-0.010152633,0.0056335414,-0.0017608299,0.044956885,0.038359348,-0.023737771,0.020149244,0.019536296,-0.0152345225,-0.008876589,0.010191639,-0.026791362,0.02209953,-0.00514597,-0.013172791,0.040343065,0.001671674,-0.04814421,0.02728172,0.0123369545,-0.019034795,-0.03100398,-0.038626812,-0.0058007087]},{"id":"interface-MP4File","type":"interface","source":"main","text":"Interface: MP4File\nProperties: onError: (e: Error) => void, onReady: (info: { tracks?: Array<{ id: number; type: string; codec: string; video?: { width: number; height: number; }; timescale?: number; }>; }) => void, onSamples: (trackId: number, user: unknown, samples: Array<{ data: ArrayBuffer; is_sync?: boolean; is_rap?: boolean; timescale: number; dts: number; duration: number; }>) => void","meta":{"url":"/docs/typedefs/MP4File"},"embedding":[-0.0042356364,-0.014830531,-0.051895253,0.016745271,0.009254576,-0.010797973,0.018648406,-0.013693291,0.05217376,0.004076075,0.079931684,0.008709165,0.035625767,0.022303818,-0.008482878,0.00991023,-0.044027414,0.018857287,0.04135838,-0.0028837144,-0.0093358075,-0.024346208,0.033490542,-0.013229112,0.029869942,-0.026388597,-0.0151322475,0.006974295,0.0024833595,0.012695305,0.036136363,-0.025622701,0.029196883,-0.015886538,0.0076821684,-0.04901734,0.022988483,0.009208158,-0.027757926,-0.047578383,0.016350718,-0.013472806,-0.014203888,0.018984936,0.032306883,0.0141226575,0.006260619,0.0045837713,-0.015109038,0.04539674,-0.004775245,0.048692416,-0.011035864,0.048413906,0.023533894,0.010490454,-0.015259896,0.028430985,0.014505605,-0.026829567,0.009271983,-0.0011017007,0.0053902827,-0.017128218,-0.010496256,-0.0038555898,-0.053148538,0.035834648,0.02171199,0.01741833,0.051848836,0.005393184,-0.018578779,0.020667586,-0.015596426,0.033188824,-0.027061656,-0.037273604,0.0015535502,-0.03172666,0.07747153,0.015306314,-0.07204064,-0.024578298,-0.002766219,0.021804826,-0.08875109,0.0042559444,-0.030171659,0.0048158607,-0.03516159,0.021410273,-0.07626467,0.012776537,-0.028291732,-0.04704458,0.01237038,0.014934971,0.014482396,0.029661061,0.0029083737,-0.022118146,-0.04702137,-0.020481914,0.02541382,-0.031773075,0.0004257395,0.03128569,-0.05328779,-0.0064346865,-0.0058428575,0.014435978,0.010757357,0.017151427,0.04836749,-0.037203975,0.009678139,0.021804826,-0.0088948365,-0.015851725,-0.04699816,0.036763005,-0.0042269332,-0.015341128,0.024671134,-0.022976879,0.028268524,0.015886538,-0.044677265,-0.014250306,0.04358644,0.031517778,0.00088556716,-0.027525837,0.010008868,0.011088084,-0.010235155,0.023905236,-0.026365388,0.002241116,-0.0036612146,-0.022419862,0.05672272,0.011824969,0.024090908,0.00072274177,0.028779121,0.03875898,-0.0036380058,-0.032074794,0.011999036,-0.008442262,-0.009573699,0.0124980295,0.012904186,-0.052127343,0.016362322,0.047578383,-0.03014845,-0.004435814,0.017267473,-0.014772508,0.007891049,-0.017534375,0.0013548235,0.04966719,0.04790331,-0.0077285864,-0.03172666,0.009034091,0.026458224,-0.016339114,-0.043748904,-0.025715537,0.013995008,-0.03353696,0.05533018,-0.060807496,-0.022617139,-0.0028692086,0.0010900962,0.02026143,0.039060693,-0.023116132,-0.030171659,0.009776778,0.027734717,0.06076108,0.020423891,-0.037273604,-0.048738834,0.054958835,-0.024578298,0.012358775,0.02696882,-0.008065117,0.015271501,0.027386582,0.010838588,0.010612301,0.006307037,0.028732702,0.03439569,-0.0074674855,-0.041683305,0.020052548,-0.025135312,-0.017569188,-0.00714256,0.026713522,0.048460323,0.027386582,0.0041573066,-0.037087932,-0.03353696,0.009271983,0.021735199,0.044584427,-0.039246365,0.014273515,-0.03550972,-0.003501653,0.03843405,0.015805308,0.026411805,-0.0058921766,-0.010391816,-0.032260466,-0.022559118,-0.023765983,-0.004868081,0.035022333,-0.02945218,-0.00553824,0.039455246,0.04256525,-0.009463456,-0.016199859,-0.016025793,0.019066168,0.00039600302,-0.048321072,-0.025483446,0.015515195,0.03288711,0.03263181,0.020655982,0.027757926,-0.010600696,0.027711507,0.04247241,0.014215493,0.02047031,-0.0061909924,0.016350718,-0.019054562,0.00061141123,-0.015306314,-0.026713522,0.013229112,0.02631897,-0.05802242,-0.032492556,0.0023890731,-0.03713435,-0.029382553,0.030983971,0.057976004,0.0061793877,0.0109604355,0.035579346,0.0016724962,0.00029881546,0.009904427,0.0032405523,0.019762436,-0.016350718,0.028848747,-0.03845726,0.032098003,-0.007334034,-0.029730689,-0.058625855,0.050224207,-0.006086552,0.001420824,-0.025692327,0.028268524,0.045303907,-0.031633824,0.045744877,-0.032678228,0.033351287,-0.064381674,0.023359826,0.0170818,0.05064197,-0.041195918,0.008401646,0.032330092,0.052730776,-0.037018303,0.011743737,-0.04379532,0.00393392,0.024856804,-0.015074225,0.025483446,0.03374584,-0.01710501,-0.020191802,0.0053989864,-0.043400772,-0.0053061503,-0.020551542,-0.02541382,0.08545542,-0.025576282,0.0071367575,-0.022338632,0.020899676,-0.019762436,-0.026620686,-0.012590866,0.0018871792,0.020864863,0.024439042,-0.0090573,-0.0074558808,0.027641881,-0.03372263,-0.03014845,0.009271983,-0.014227098,0.015979374,-0.010861797,-0.019913295,0.010420826,-0.03465099,0.024694342,0.022106541,-0.07385094,-0.03978017,0.06679541,0.04651077,-0.045976967,-0.020075757,-0.039432038,-0.023638334,-0.0071715713,-0.021630758,-0.019089377,-0.05751182,0.02168878,0.02158434,-0.0132871345,-0.015027807,-0.035927482,-0.077982135,-0.013658478,-0.046116218,0.044282712,0.026667105,0.007647355,-0.013554038,0.031981956,-0.04836749,0.00035883242,-0.009695547,-0.038132336,0.063035555,0.018230645,-0.016014189,-0.023510685,-0.03193554,-0.010803775,-0.036113154,-0.0052597323,0.033653002,0.0045170453,-0.001640584,0.062107198,0.029312927,-0.0019321466,-0.0024151832,-0.0359739,-0.043980993,0.03998905,-0.011894596,0.04365607,0.046882115,-0.012869373,-0.064056754,-0.027433,0.009388028,-0.003043276,0.027920388,0.010386013,0.009823196,-0.022582326,-0.024183745,0.021421878,-0.004679508,0.029034419,-0.014842135,-0.014702882,0.05240585,0.049342267,0.027966807,-0.051802415,0.03683263,-0.041103084,0.053844806,-0.015016202,0.06790944,-0.01937949,-0.0038410842,-0.047996145,0.0028692086,0.05082764,-0.013554038,0.0058718687,-0.07236556,0.029359344,0.015480381,0.004728827,0.024392625,-0.027781134,0.045814503,-0.05987914,-0.010966238,-0.0017783872,0.018207435,0.045675248,0.014064634,-0.02836136,-0.0178593,-0.04005868,-0.004366187,0.03615957,-0.017870905,-0.047114205,0.034790244,0.04616264,-0.027525837,-0.02474076,-0.019391093,0.0031506175,-0.02215296,-0.020621167,-0.020644378,0.008088325,-0.024647923,0.010101703,-0.028941583,-0.003118705,-0.03302636,-0.036530916,-0.016037397,-0.034511734,-0.033212032,0.011244745,0.030960763,0.028059643,0.02427658,0.03281748,0.006504313,0.01910098,-0.024021283,-0.017139822,0.004412605,0.018590383,-0.0045663645,0.018926913,-0.039896216,-0.0057210107,0.022141356,-0.031100018,-0.011267954,-0.0019016848,-0.025669118,0.0033391903,-0.025622701,0.011233141,0.002647273,0.11818007,0.025970835,0.009097915,-0.04049965,-0.009538886,-0.042843755,-0.023568707,0.038132336,-0.011459428,-0.024601506,-0.018044973,-0.034929495,-0.018474339,0.041938607,0.016315905,0.036113154,-0.033815466,-0.008297206,0.027757926,0.01780128,0.0051349844,-0.02833815,-0.06489228,-0.050456297,0.01154066,0.037064724,0.00072745606,-0.032074794,-0.014714486,-0.039269574,-0.0028271424,0.018056577,-0.0053641726,-0.02248949,0.011407208,-0.025878,-0.004247241,0.009747767,-0.015550009,-0.02341785,0.00988702,0.015468777,-0.028593449,-0.0048042564,-0.026852775,0.04358644,0.004955115,-0.01358885,0.00025076565,-0.022327026,0.008558307,0.0051930067,-0.018834077,-0.004215329,-0.025576282,0.025344193,0.013310343,-0.051802415,-0.005660087,-0.0013599005,0.057558242,-0.02114337,-0.028964791,-0.0071831755,-0.002745911,0.0003479532,-0.041544054,0.017998554,-0.02696882,0.014169075,0.030960763,0.041915398,-0.055005252,-0.045466367,-0.023487475,-0.0001129624,0.010049483,0.049852863,-0.02539061,0.006016925,0.024996059,0.008923848,-0.003307278,0.005488921,-0.02787397,0.008680154,0.0006658073,0.020760423,0.038782187,0.01154066,-0.008697561,-0.028639866,-0.038526885,-0.006539127,-0.008575713,-0.0074036606,-0.0034639384,0.012196313,0.089168854,-0.009933438,0.015375941,0.009225565,0.0077808066,0.0062025967,0.0048593776,0.037296813,-0.03300315,0.005445404,0.009167543,-0.025924418,0.019866876,0.02541382,0.040870994,-0.015619636,0.021909267,-0.0007408738,-0.009492468,-0.004221131,0.010008868,0.047856893,0.040383603,-0.010664521,0.00046345408,-0.039664127,0.0128925815,-0.014668068,0.04358644,-0.0014636156,-0.056583464,-0.024206953,-0.017940532,-0.050502714,0.013055044,-0.009283587,0.005474415,-0.021224601,0.012730119,0.0063186414,-0.00067813706,-0.004702717,-0.00833202,-0.022663558,-0.008448064,-0.020493519,0.00079200603,0.037389647,-0.016060606,-0.008059314,-0.0050972695,-0.012764933,-0.0111809205,0.012335567,-0.008889034,-0.012648888,-0.018253854,0.030194867,0.029661061,0.040754948,0.019367883,0.034790244,-0.0075661237,-0.016547995,0.008128941,-0.03147136,0.0046011778,-0.022709975,-0.005474415,-0.04073174,-0.016199859,0.028268524,-0.036322035,-0.030171659,0.029266508,-0.03288711,-0.0064695,0.011772749,0.036136363,-0.016141837,-0.024578298,-0.0001898421,0.030473376,0.037737783,0.025274565,-0.033397704,0.041056663,0.017592398,0.018509151,-0.0037743584,-0.021294229,0.032330092,-0.06298914,0.01710501,-0.011238943,-0.037853826,0.0008065116,0.001374406,-0.014006612,-0.04702137,-0.012463216,0.0037685563,-0.01586333,0.009324203,0.012962209,0.014319933,-0.01358885,-0.008372636,0.0032492555,0.020853259,-0.0020235318,-0.00934161,0.031100018,0.0054250965,0.001917641,0.0328639,-0.04228674,0.009271983,-0.019611578,0.006069145,0.009016684,-0.045303907,0.042542037,0.026202925,0.017012173,0.031633824,-0.018033369,-0.02476397,0.0035045543,-0.039246365,0.0207024,-0.019391093,0.012811351,-0.0012880977,0.004456122,0.012730119,-0.008889034,0.0033043767,-0.024346208,-0.032956734,0.023673147,-0.00522782,-0.023092924,0.02497285,0.054819584,-0.029498598,-0.008697561,-0.000046825906,0.012776537,-0.0024499968,0.008575713,-0.006597149,0.04565204,0.028709494,-0.0017174636,0.020040944,0.010623905,0.022942064,0.016002584,0.052080926,-0.00044858584,-0.004508342,-0.027943598,-0.022767998,0.031169644,-0.036368452,-0.008111535,-0.03082151,0.0059066825,-0.037273604,0.017163033,0.015422359,-0.03864293,-0.0021642363,-0.008227579,-0.021166578,-0.010223551,0.0025109202,0.03149457,0.0040818774,0.0050972695,0.0030780893,-0.01710501,-0.00070388446,0.01050786,0.03302636,0.018718032,-0.012521238,0.022338632,-0.021723595,-0.013321947,0.057279732,-0.0067538098,-0.029196883,-0.027131284,-0.0104788495,-0.003954228,-0.013751313,0.01358885,0.017789673,0.0044039018,0.017952137,0.0015259896,-0.018230645,0.0053409636,-0.04430592,-0.0043748906,-0.014238702,-0.0049522137,-0.007241198,-0.04565204,-0.002597954,-0.0046185846,-0.027502626,-0.064938694,-0.014169075,0.01097204,-0.014900157,0.003527763,-0.007600937,0.025738746,0.038410842,-0.00044604734,-0.025947627,0.016826501,-0.015004598,0.018578779,-0.0344189,0.054262567,-0.019147398,0.032028377,0.00628963,0.011099689,0.016710456,0.025320984,0.011198327,-0.011534858,0.06944123,0.028616657,0.019750832,-0.0021337746,-0.018369898,0.024578298,-0.00033235966,0.041079875,0.008221777,-0.0012373282,0.014876949,0.03323524,0.010774763,-0.008407448,-0.02349908,-0.016373927,-0.009353214,0.010182935,-0.010629707,-0.030171659,-0.0008558307,0.0028126368,-0.026922403,0.0020235318,0.01910098,-0.01203385,-0.03553293,-0.019832063,-0.013066649,-0.00030226054,-0.038851812,0.000778951,0.039478455,-0.022060124,0.054958835,-0.049342267,-0.021085348,-0.0003541181,0.014656464,-0.01394859,-0.03281748,0.023104528,-0.0061735855,-0.014633254,-0.022141356,-0.006736403,0.004920301,0.013530828,0.017557584,0.029545017,0.0038758977,0.007960676,0.033165615,0.008215975,-0.02429979,0.023684751,-0.0025515358,0.012614074,0.019414302,0.058533017,-0.0005678944,0.009231367,0.031007182,-0.031239271,0.018694824,0.0292433,0.003043276,0.024601506,0.012289149,-0.005732615,0.0034639384,-0.020389078,0.032492556,0.025831582,0.011941014,0.0040731737,-0.012254335,0.006568138,-0.036739796,0.019135794,-0.03216763,-0.041961815,0.013008626,0.0076937727,0.009562095,0.011610286,0.038155545,-0.030937554,-0.04583771,-0.009132729,0.015341128,-0.011894596,0.012103477,0.013240716,-0.04671965,-0.0066783805,-0.030751882,-0.020563146,0.0071599665,-0.04043002,-0.01151745,-0.006980097,0.00087323744,0.017743256,-0.006011123,-0.00758353,-0.003141914,-0.0012721416,0.0053293593,-0.011871387,-0.016037397,0.04767122,0.009463456,-0.02585479,0.02515852,-0.07723945,-0.0068466454,0.029962778,0.017673628,0.023812402,-0.012730119,-0.007072933,0.013263925,-0.03465099,0.032051586,-0.016373927,0.00815215,0.016049001,-0.03952487,-0.029220091,-0.011093887,-0.016083814,0.03560256,-0.045257486,0.03058942,0.029080836,0.013983403,0.04001226,0.025460238,0.024647923,-0.05871869,0.034558155,-0.0143431425,-0.016211465,0.004392297,0.0068930634,0.030635837,0.006063343,0.025878,0.020551542,-0.03692547,-0.0034958508,0.0133335525,0.03553293,-0.0021598847,-0.013437993,0.008088325,0.02316255,0.0081463475,-0.0048796856,0.030218076,0.02326699,0.0035828843,-0.0050421483,0.013820941,-0.016002584,0.023882028,-0.0017783872,0.021271018,0.064381674,-0.013844149,-0.0008376987,-0.0043806927,-0.011894596,-0.0028343953,-0.011262151,-0.028477404,-0.0017363209,0.0028692086,0.008558307,-0.01097204,-0.01628109,0.0008289953,0.003974536,-0.010542674,-0.0008079622,0.03284069,0.025367402,0.034024347,-0.022791207,-0.0043980996,-0.025460238,-0.0011067777,-0.046000175,-0.016443554,-0.013159485,-0.021665571,0.02991636,-0.0153527325,-0.0037540505,0.0039194142,-0.018149413,-0.0015970671,-0.009620117,-0.032260466,-0.008111535,0.013252321,0.0028242413,0.0012786691,0.009892822,-0.019623183,0.037296813,-0.010240957,0.018323481,0.011059073,0.03082151,-0.018335085,-0.031865913,-0.017174637,0.0074732876,-0.006544929,0.038085915,-0.0034842463,0.014459187,0.01824225,0.0031680241,-0.015039411,0.005781934,0.026620686,0.010438234,-0.0012264489,0.016060606,-0.0029315827,-0.004731728,0.005520833,0.0048622787,0.034534946,-0.0007046098,0.008233381,0.03465099,-0.020145385,0.041219126,0.01821904,-0.025669118,0.0011241843,0.016524786,0.016385531,0.0032434533,-0.01933307,0.029614642,0.041497637,-0.0076357503,0.015155456,0.022953669,-0.022269005,0.012219521,0.016803293,-0.020876467,0.021653967,-0.052545104,-0.02497285,-0.006997504,-0.006852448,-0.014064634,-0.015491986,0.03082151,0.020122176,0.0137165,-0.025274565,-0.027433,0.0089818705,0.026713522,-0.04049965,-0.049852863,-0.00052727875,-0.0086743515,-0.002204852,-0.020597959,0.010473046,-0.027015239,-0.015213478,-0.019170608,-0.01405303,-0.018601988,0.011737935,-0.007096142,0.03284069,-0.056351375,-0.034674197,-0.004151504,-0.006689985,0.006544929,0.03012524,-0.008639539,-0.037969872,-0.013263925,0.0056194714,0.004174713,-0.017569188,-0.0023441059,0.013623664,-0.011064876,0.021096952,0.017163033,-0.0053438647,0.0046853106,-0.0059327926,-0.0051436876,-0.05421615,0.0147376945,0.019623183,0.031216063,0.0068756565,-0.009956648,-0.003646709,-0.0045750677,0.019971317,0.003022968,0.008477076,0.012776537,0.014842135,-0.032260466,0.0103453975,-0.0020801038,-0.0188921,-0.032074794,-0.02179322,0.037250392,0.014656464,0.016791688,-0.012393589,0.028825538,0.012103477,0.0071077463,0.017290682,-0.008012896,0.0061909924,-0.014668068,0.03344412,0.0077169817,-0.003667017,0.0075139035,0.010983644,0.019042958,-0.010055285,0.010577487,-0.015074225,0.023974864,-0.0032956735,0.051384654,0.014401165,0.004435814,-0.054308984,-0.0040731737,0.012451611,-0.025251357,0.008987673,-0.004125394,0.03978017,0.02968427,-0.012289149,-0.01943751,0.024462253,-0.012730119,-0.017952137,0.0010342497,-0.033351287,0.010809577,-0.011621891,0.012231126,-0.02112016,0.022640347,0.0037772595,-0.038503677,-0.0035161586,0.0037337427,-0.0032666624,0.019576764,0.04008189,-0.008070919,0.0009218312,0.025112104,0.0039919424,0.009707151,0.01314788,-0.00045257487,-0.014308329,-0.046394728,0.035904273,0.010885006,0.011389801,0.035625767,0.058857944,0.02204852,-0.017255867,0.017128218,0.050966892,-0.0030084625,0.0062025967,0.015503591,-0.025669118,0.007571926,0.012521238,0.010200341,-0.015596426,-0.008506087,0.039292783,-0.013194298,-0.015921352,-0.0030113636,0.0362292,-0.017012173,0.045953758,-0.020714004,-0.0019916196,-0.027316956,-0.005236523,0.023998072,0.033490542,0.00067378534,-0.0040847785,0.007548717,-0.0042095263,0.027038448,0.0028590548,-0.028082851,-0.04586092,-0.03662375,0.014366351,0.011018458,0.00063063117,-0.01011911,-0.00050116866,0.014946575,0.03307278,-0.0019655095,-0.03300315,-0.012811351,-0.005294546,-0.014981389,0.00030606828,0.00047868496,-0.013194298,-0.018764451,0.0010871951,-0.007606739,-0.009521479,0.025831582,0.02789718,0.014169075,-0.042634875,0.0037946664,0.058811527,0.013635268,0.018311875,-0.00074993976,0.02269837,0.0058805724,0.0016246277,0.023905236,-0.020307846,0.023789192,0.01154066,0.0020394882,-0.035834648,0.00008259129,-0.022918856,0.010484652,-0.0037308417,-0.008268195,0.019321466,0.0007492145,0.0323533,0.013031836,-0.0041311965,0.0070149107,0.016350718,-0.03168024,-0.019112585,0.028964791,0.018393107,0.012149895,0.006765414,-0.013623664,-0.014656464,-0.026435014,0.011505846,-0.0007600937,-0.018230645,-0.017499562,0.01933307,-0.010525267,0.024647923,-0.025112104,0.01519027,0.015225083,-0.02875591,-0.0027575155,0.01304344,-0.052870028,0.022094937,0.034372482,-0.016014189,-0.0061445744,0.03200517,-0.038944647,-0.011418812,-0.02875591,-0.00006246476,0.022907251,-0.0011988883,-0.020307846,0.022303818,-0.019507138,-0.016988965,-0.016942546,-0.031981956,-0.024114117,0.0042588455,-0.0061213654,-0.0065565333,-0.0012605371,-0.0072992207,-0.010148121,0.0053061503,0.02023822,-0.013275529,-0.02427658,0.012556052,-0.0066261603,-0.002904022,0.04771764,-0.014934971,-0.05987914,0.002376018,0.016838105,0.02002934,0.025576282,-0.024880014,0.018474339,-0.0036583135,0.0063186414,0.00910952,0.00028449117,0.0033130802,0.005686197,0.031007182,-0.021421878,0.035416886,0.014227098,-0.04022114,0.012184708,0.015433963,0.0073456382,0.009434446,0.0061793877,-0.0027139988,0.041985024,0.013136276,-0.0032666624,-0.0035625766,0.023754379,-0.02156113,-0.016466763,0.022176169,-0.012927395,0.023649938,-0.026504641,0.0026849874,-0.016954152,-0.025483446,0.02139867,0.015097434,0.0151322475,0.033629794,-0.027525837,-0.022210982,0.016083814,-0.014412769,0.04790331,-0.025947627,0.0057935384,0.0022962373,0.016153442,-0.02429979,-0.032956734,-0.00055991637,0.01617665,0.0006389719,0.00049863016,0.01977404,0.019275049,0.00890064,-0.0031593207,-0.0122775445,0.0053322604,0.0019626084,-0.0030345726,0.0038700954,-0.022060124,0.026179716,-0.00028775493,-0.008442262,0.016095418,-0.023789192,-0.006788623,-0.0660063,-0.018462734,0.034233227,0.018068181,-0.0033507948,-0.0056978017,0.020621167,-0.050966892,-0.017940532,-0.00043806928,-0.025878,-0.0018958825,0.0008703363,-0.020795235,-0.03367621,0.03323524,-0.009428644,-0.022164565,-0.06428884,0.0012743174,-0.027154492,-0.007432672,0.037969872,0.008059314,0.008593121,-0.000214139,-0.020737212,-0.029266508,-0.031819496,-0.032933526,-0.0049986313,0.024647923,-0.022036916,-0.013960194,-0.018625196,0.014563628,0.042101067,-0.03212121,-0.034674197,0.028523821,-0.024531879,-0.038364425,0.009741965,0.0010204694,-0.008430658,0.03237651,-0.0082797995,-0.019414302,0.034813453,0.028709494,0.04249562,-0.013403179,-0.0017406726,-0.013565642,0.002233863,-0.009852207,0.027015239,-0.058161672,0.05574794,-0.022408258,-0.011163513,-0.0014585386,-0.03641487,-0.02352229,-0.054076895,-0.019309862,0.02787397,-0.009544688,-0.0031941342,0.004290758,-0.026829567,0.024160536,0.016780084,0.0031506175,-0.0021975993,0.023789192,0.02385882,-0.022338632,0.013797731,0.0023121934,0.004868081,0.004119592,0.0056687905,-0.024415834,0.0032666624,-0.011279559,0.023591915,-0.010055285,0.03574181,-0.013449597,0.0067015896,-0.020957699,0.023661543,-0.021004116,-0.00910952,-0.006585545,-0.037598528,-0.027015239,-0.00019800151,-0.018938517,-0.0033594982,-0.010467244,0.010153923,-0.017000569,0.042170696,-0.022025311,0.01151745,-0.009271983,-0.043772113,0.011447824]},{"id":"interface-PartialMessage","type":"interface","source":"main","text":"Interface: PartialMessage\nDescription: Minimal message data for MessageDelete when the full message is not available.\nProperties: authorId: string | null, channel: Channel | null, channelId: string, content: string | null, id: string","meta":{"url":"/docs/typedefs/PartialMessage"},"embedding":[0.022871068,-0.016179485,-0.025025431,0.013524613,0.020303242,-0.01904109,0.005309744,0.030030517,-0.000244814,0.025765313,0.023110442,-0.020303242,-0.02326277,0.017049935,0.03673298,0.015145826,-0.006577336,0.021880932,0.034491573,0.042086247,0.010641249,0.0244814,0.02482958,0.03884382,0.010216905,-0.015243752,0.019008446,-0.024067936,0.03114034,-0.0331859,0.039409615,-0.020509973,0.043261353,-0.028180812,0.0072519346,0.0346439,0.01451475,-0.00489628,-0.026831614,0.0091288425,-0.028637799,0.002867044,0.01834473,0.039953645,-0.017441638,0.025700029,0.039953645,0.06532726,0.020161793,-0.010206024,-0.034905035,-0.01802919,0.042086247,0.06528373,-0.0072084125,0.013448449,-0.022261754,0.0023801362,0.012327745,0.020020345,-0.044501744,-0.043783624,-0.009705515,0.010184263,-0.018954044,-0.004112875,-0.013394046,0.06872201,0.017419877,0.03866973,-0.017191384,-0.04175983,-0.06271591,-0.01258888,0.01660383,-0.0044583348,-0.0050295675,-0.0307704,0.007464107,-0.038887344,0.016527666,0.064065106,-0.06171489,-0.05557822,-0.043805387,-0.006359724,-0.018562341,0.020020345,-0.013763987,0.0034464372,-0.028724844,-0.024024414,-0.042586755,-0.04108523,-0.002692954,-0.063368745,-0.03322942,0.020999601,-0.024590207,0.035971336,0.025395373,-0.036145426,-0.080037855,-0.00122407,-0.0065501346,-0.040606484,0.004496417,0.015700739,-0.05975638,0.007893891,-0.022348799,-0.0056633637,0.0062509174,-0.007703481,-0.032685388,0.004999646,0.010178822,-0.01889964,0.029986994,-0.0004182239,-0.04613384,-0.021706842,0.023219248,-0.010994869,-0.013589897,-0.043761864,0.011125436,-0.049963817,-0.05196585,-0.000020071773,0.037734,0.03618895,-0.009602149,-0.0409329,-0.014144809,0.016005395,-0.0046949885,-0.03917024,-0.027049227,-0.054272544,0.012860895,0.0069907997,0.019802732,0.061627846,0.0051274933,0.033294704,-0.006131231,0.024089698,0.026853375,0.0059081777,0.033468794,-0.0032451455,0.014199212,0.0005508315,-0.0033403512,0.02220735,0.030705117,-0.018769074,0.007801406,-0.052836303,0.05344562,-0.07751355,-0.0037456541,-0.040824097,-0.01765925,-0.01258888,0.03409987,-0.018692909,-0.024089698,0.010940466,-0.0030438541,-0.052226987,-0.03866973,-0.021783005,-0.013219956,-0.0009248529,0.021423945,-0.042760845,-0.03114034,0.009667433,0.052226987,0.008829625,0.021619797,-0.02463373,-0.036275994,0.01677792,-0.028093766,-0.004806515,-0.009934008,-0.03146676,-0.019334866,-0.0004753472,0.0005460712,0.010369233,0.023436861,-0.0021530031,0.036841787,-0.024198504,0.010777256,-0.021989739,0.029747622,0.04212977,0.045219865,0.0009527345,-0.00069976004,-0.00891123,0.0055001546,-0.0049153212,-0.014765005,0.006588217,0.025460657,-0.026113493,-0.021793887,-0.047352467,-0.028703082,-0.035557874,-0.031183863,0.016484143,-0.017245786,-0.013154672,-0.015537528,0.01871467,0.050399043,-0.031619087,-0.011653147,-0.023654472,-0.02324101,-0.01189252,-0.052705735,-0.0037864565,0.0027024746,-0.0044311336,-0.029595293,-0.021043124,-0.02008563,0.027506214,-0.00489356,0.016679995,0.0003512401,-0.0060768276,-0.030552788,-0.025939403,0.007964616,0.048875757,0.021880932,0.0004335248,0.015972754,-0.0045889025,-0.03601486,0.007964616,0.10271308,0.028920693,0.021467468,0.02430731,-0.0114464145,-0.017028173,0.02291459,0.0024916625,0.027571497,0.0019897937,0.044305895,-0.0035198813,-0.029986994,0.009656552,-0.005995223,0.0039387853,0.06349931,0.022414083,-0.004983325,0.046220884,0.034774467,-0.028180812,0.06632827,0.030378697,-0.012142775,0.011674908,0.008334557,-0.007551152,-0.028594276,0.0054647927,-0.06415215,0.026287584,-0.021184571,0.00646853,-0.01749604,0.041803353,0.052879825,-0.019367509,-0.0065283733,0.036428325,0.0071104867,0.006229156,0.015265513,-0.06802565,0.000109911285,0.033991065,0.008073422,0.005685125,0.028420186,0.010070016,0.041694544,-0.025460657,0.032641865,-0.04648202,-0.007768764,0.0021081206,0.02485134,-0.032097835,0.014547392,-0.054620724,0.012523596,0.016320933,-0.07716537,0.0072356137,-0.057536732,-0.0017939426,-0.019976823,0.016582068,-0.0045045777,-0.016288292,0.01767013,-0.031727895,-0.048048828,-0.068069175,-0.02079287,0.0164515,0.002710635,-0.016690874,0.020412048,0.025025431,-0.0021883652,-0.012099252,0.0029785703,-0.00038184185,0.031314433,-0.018584102,-0.04757008,0.06998416,0.017876862,0.053184483,0.08238807,-0.004594343,0.00023818362,0.015406962,-0.0047113094,-0.024394356,-0.04861462,-0.0027187956,0.030443981,-0.0018061833,-0.058624793,-0.03742934,0.0010588205,-0.069897115,0.012882656,0.018301208,0.056579236,-0.0027147152,-0.042173292,-0.0019857136,-0.011881639,-0.020488212,0.021978857,0.011125436,-0.0020129152,0.012023088,-0.0489628,-0.030161085,-0.011511698,-0.05052961,-0.0011989085,-0.036319517,-0.031923745,0.0035117208,-0.009885046,-0.017735414,-0.04582918,0.008106064,-0.010641249,-0.05579583,0.04006245,0.042216815,-0.015232871,0.029791145,0.0040312707,-0.010690211,-0.003957826,0.03586253,-0.023741517,0.044197086,0.03007404,0.023153964,-0.027310362,0.041041706,0.0032451455,0.018061833,-0.038038656,0.01763749,0.018192401,-0.0541855,0.02430731,0.0054811137,-0.0032424254,0.008443363,-0.05644867,0.001889148,0.033468794,-0.005717767,0.02848547,-0.023980891,0.013437568,0.013861913,0.022827545,0.03407811,0.014471227,-0.052531645,0.061453756,0.016212128,0.020912556,-0.019715687,-0.008965633,-0.018551461,-0.01767013,-0.0157225,0.010945906,-0.007224733,0.0300958,0.018823477,-0.0029214472,-0.07124632,-0.05213994,0.01641886,0.025482418,-0.016864965,0.069723025,-0.02815905,0.009705515,-0.016919367,-0.057971954,0.018573223,-0.029464725,-0.010766376,-0.015363439,-0.009183245,-0.003775576,-0.030726878,0.049398024,0.00090513175,0.0117510725,0.010091777,-0.027484452,-0.032794196,-0.03547083,0.024916625,-0.059016496,-0.053924363,-0.0045861825,0.04421885,-0.006082268,0.022936352,-0.0076980405,-0.0002725256,-0.009885046,0.045785658,-0.031205624,-0.019084612,0.011870759,-0.0061965142,-0.026331106,0.028289618,0.012371267,-0.024568446,0.047700647,0.05540413,-0.0034464372,-0.021957096,0.007893891,-0.019541597,0.031053295,0.0140686445,0.040323585,0.00066065777,-0.005018687,-0.03847388,-0.022827545,0.07176858,0.015874827,-0.019051969,-0.01681056,0.036994115,-0.041041706,-0.008258392,-0.05701446,-0.008073422,-0.019149896,-0.034491573,0.00577217,-0.0032832278,0.02445964,-0.022871068,0.013372285,-0.005456632,0.010222345,-0.0130023435,0.040105972,-0.013372285,-0.05840718,-0.043653056,-0.03603662,-0.046699632,-0.0072138524,0.032315448,-0.018497057,-0.022849306,-0.0066643814,0.03671122,-0.042216815,0.03218488,-0.029116545,0.031510282,0.018867,0.028746605,0.065196685,-0.00019177097,-0.010516121,-0.009868724,-0.01677792,-0.07050643,-0.010554204,0.021282498,0.018464416,0.013394046,0.039387852,0.021978857,0.003460038,-0.013970719,-0.0070234416,-0.0157225,0.04726542,-0.01904109,0.021598035,0.015624573,0.019780971,0.021130169,-0.004439294,0.027723826,-0.0022482085,0.060452737,-0.0032723472,0.033947542,-0.011925162,0.006626299,0.029464725,-0.03148852,0.01799655,-0.005891857,-0.02604821,-0.009732717,0.03544907,0.04058472,-0.009455261,-0.025438895,0.022653455,0.0016524945,-0.026331106,-0.04017126,0.01609244,0.0100156125,-0.028093766,0.0028915254,0.027549736,0.011228803,0.01206661,0.036972355,0.028246095,0.043783624,-0.025830597,-0.0050676498,-0.02361095,-0.031706132,0.015581051,-0.020673182,0.013568136,0.020368526,-0.013785749,0.011304966,-0.0078068464,-0.028637799,-0.029355919,0.02205502,0.019911539,-0.015885709,-0.01904109,-0.0017368194,-0.0353185,0.016070679,0.037342295,0.001101663,-0.013872794,-0.036624175,0.0013682382,0.050747223,-0.037102923,0.015341678,0.04530691,0.041999202,0.03270715,-0.027070988,-0.048179395,0.030726878,-0.01521111,0.040976424,-0.00856849,-0.006359724,-0.024916625,-0.026788091,-0.0036912512,-0.0016660953,0.025656508,-0.0046922686,0.02517776,0.023110442,-0.00026283503,0.016864965,-0.0234151,0.010331151,-0.040193018,-0.037690476,0.009569507,-0.009400858,0.015798664,0.019704808,0.019596001,0.008492325,-0.001818424,-0.038169224,0.04491521,0.001135665,-0.027593259,-0.021315139,-0.00048554776,-0.0017204984,0.02467725,-0.034339245,0.007676279,-0.01764837,-0.01048348,-0.0041699987,-0.02203326,-0.027332123,-0.013709584,-0.018507939,0.05105188,-0.0014022402,0.012719448,-0.004235282,-0.007621876,0.06001751,-0.011631385,-0.0020781988,-0.010994869,0.06654589,-0.0069907997,0.023719756,-0.010118979,-0.0013362764,-0.0013029545,0.00031009773,-0.039779555,-0.0024699012,0.022000618,0.021315139,0.0030220929,-0.005837454,0.011092794,-0.017408995,0.0136443,-0.042695563,0.0047466713,-0.003601486,0.0025542262,0.011870759,-0.010108098,-0.016364455,-0.008639215,-0.008356318,0.02147835,-0.0053940685,0.02587412,-0.03479623,0.03673298,-0.023502145,0.034382768,-0.023763278,0.010059135,0.018562341,0.009248529,0.018137997,0.034208678,-0.022327038,-0.029943472,-0.028420186,-0.0083671985,0.048048828,0.01958512,-0.0036966915,-0.04193392,0.006212835,0.022348799,-0.016658233,-0.02361095,0.0021258015,-0.0008534488,-0.02202238,-0.03092273,0.021043124,-0.017691892,0.04315255,-0.006082268,0.0036422883,0.018954044,-0.022631694,-0.017778937,0.030639833,-0.00910164,0.0013736786,0.030813923,0.030988012,0.025634747,0.017724534,-0.016223008,0.007083285,0.0053532664,0.00436585,-0.002992171,0.024242027,-0.0015940112,0.035797246,0.011174399,0.010216905,0.022479367,0.01660383,0.018431773,-0.038691495,-0.008524967,-0.028811889,-0.0033648324,-0.029051261,0.02920359,0.010983989,-0.029856429,0.003965987,-0.035405546,0.032446016,-0.020161793,0.0031036974,-0.01014074,-0.003269627,-0.034469813,0.027854392,0.02183741,0.0051818965,-0.056927416,0.025830597,-0.031771418,-0.0065174927,-0.023850324,-0.023697995,0.018301208,0.01940015,0.0060550664,0.015950993,0.012327745,0.017245786,0.015961872,-0.02535185,-0.0059081777,0.0153852,-0.041346364,0.020858154,0.042630278,0.0029758501,0.00822031,-0.01696289,0.01468884,0.012447432,-0.0300958,-0.017539563,-0.034665663,0.0004954083,-0.04165102,0.021978857,-0.017202264,-0.022892829,-0.015863948,-0.008078862,0.013372285,-0.06184546,0.013187314,0.029856429,-0.011620505,-0.0045535406,0.00081944687,0.014427705,0.0054131094,0.0149826165,-0.04926746,0.028572515,0.010352912,0.045481,-0.02256641,0.039387852,-0.0032750673,-0.00031077777,-0.013502852,0.023763278,-0.012784732,-0.010048254,-0.0035198813,-0.02589588,0.030400459,0.00506493,-0.03092273,-0.037146445,0.0005909538,0.027941437,-0.0071268077,0.014721482,-0.01242567,-0.02606997,0.006887434,-0.006016984,0.038952626,-0.0058428943,-0.006131231,-0.034469813,-0.024742534,0.040193018,-0.028354902,-0.0272886,-0.021086646,-0.029007738,-0.0055572777,0.008878588,0.02761502,-0.0050458885,0.0061693126,-0.0023175725,-0.00961847,-0.013176434,-0.026004687,0.054664247,-0.0060877083,-0.041041706,-0.019889778,0.013524613,-0.026505196,0.0045317793,0.032141358,0.032446016,-0.013861913,0.030291652,-0.011772834,-0.0046569062,-0.012164536,-0.042586755,0.023893846,-0.029334158,0.04202096,0.03074864,0.05331505,-0.0016035318,0.022098543,0.0031526603,0.018072713,0.017060816,-0.0047085895,-0.0450893,-0.026853375,0.036841787,0.0070887255,-0.02445964,0.018594984,0.006718784,0.023872085,0.003971427,0.032076076,0.03442629,0.0037157326,-0.021598035,-0.0066643814,-0.018268565,0.026026448,-0.015755141,-0.021184571,0.003217944,-0.024960147,0.010913264,-0.0077361222,-0.020956079,-0.06558839,-0.007181211,0.009863284,-0.0151349455,0.03301181,0.03636304,0.04931098,-0.010108098,0.00506493,0.0058483346,0.037342295,-0.0005702126,-0.011392011,0.0409329,0.0003900023,-0.013132911,0.018932283,-0.045872703,0.02672281,0.013100269,-0.0145256305,-0.034839753,0.039561942,-0.014427705,0.032206643,0.001292754,-0.0073172185,-0.014917334,0.034469813,0.006593657,0.04319607,0.009569507,0.017245786,0.03481799,-0.0031689813,-0.044958733,0.00909076,-0.020129152,0.023893846,-0.000402583,0.0012193098,0.021130169,-0.011196161,0.0077306824,0.03827803,0.0040775132,-0.03534026,0.017757175,0.005315184,-0.02306692,-0.0015776902,-0.016114201,0.03671122,-0.008949311,-0.006609978,-0.0008969713,0.054272544,-0.015417842,0.03198903,-0.009150604,-0.0057123266,-0.010173382,-0.05261869,-0.017713653,-0.0036640496,-0.038735017,0.043935955,-0.025090715,0.023328055,0.015254633,0.009536865,-0.007132248,0.036558893,0.015624573,-0.007654518,0.034709185,-0.011468176,0.0031444998,-0.037015878,0.0071376883,-0.028898932,0.014362422,-0.01676704,-0.019334866,-0.016103322,-0.0024086977,-0.042804368,0.0074369055,0.0060605067,0.0021122007,0.013089389,0.02361095,-0.01293706,-0.00017477,0.0051138923,-0.012142775,0.013568136,0.021967977,0.04617736,0.01242567,-0.011479056,0.026505196,-0.02306692,0.0029459286,0.03497032,0.0045344993,0.00174906,-0.007426025,0.000037019618,-0.008051661,-0.041498695,0.00437401,0.0054294304,-0.037015878,0.041324604,-0.0015137666,-0.028790127,-0.0008881308,0.006000663,0.014503869,0.03917024,-0.021032242,0.016048918,-0.012164536,-0.0262223,-0.022348799,-0.008144146,-0.020760227,-0.011674908,-0.022718739,-0.033947542,0.018769074,-0.020597018,-0.0026072692,0.0047493917,0.020379405,0.007094166,0.0011132237,0.0038680611,-0.004036711,-0.0307704,0.02744093,-0.049963817,0.028637799,0.018475296,-0.018268565,0.0030384138,-0.034752708,0.027005704,0.004145517,-0.011838117,0.0160598,-0.0042244014,-0.00013932296,-0.025286566,0.01800743,-0.012980582,0.038735017,-0.03392578,0.014351541,-0.022479367,-0.0038979829,-0.031445,-0.013361405,0.022784023,0.017224025,-0.0002730356,0.04491521,0.04630793,0.01835561,-0.017539563,0.012349506,0.00038150183,-0.008486886,0.0114464145,0.033686407,0.01328524,-0.008938431,-0.020890795,-0.013307001,-0.014199212,-0.017561324,-0.02831138,-0.027723826,-0.014743243,0.013317882,-0.035231456,0.009879605,0.0052662212,0.011968684,-0.029268874,0.0154722445,-0.03969251,0.009422619,-0.0035171611,0.0244814,-0.01014074,-0.016320933,0.014188332,0.024568446,0.019737449,-0.013404926,0.008535848,0.021054003,0.031553805,0.0138836745,0.015080542,-0.033468794,0.003917024,0.022163827,-0.017757175,0.024329072,0.012980582,-0.021706842,-0.048875757,0.030139323,0.005081251,-0.025264805,0.014090406,0.01820328,-0.0034518775,-0.03771224,-0.0031853023,0.055273563,-0.0025909483,0.011049272,0.039627228,0.019835375,-0.052923348,0.008301915,-0.0138836745,0.018050952,0.005929939,-0.06946189,0.0472219,-0.023872085,-0.01363342,-0.0297041,-0.007589234,0.0026181499,0.022131186,-0.002777279,-0.025808835,0.010407316,0.012001326,0.010042815,-0.010102658,0.027005704,-0.011783714,-0.009798001,0.020422928,0.0060768276,0.04215153,0.0073553007,0.009651112,-0.017093457,0.017376354,-0.0037293334,0.0031281789,0.013024105,0.022696977,0.020248838,0.03481799,0.008111504,0.0017463398,0.010434517,-0.014144809,0.008867707,-0.011740192,0.0035062805,-0.05179176,-0.031401478,-0.008106064,0.03285948,0.0022101265,0.011957804,0.020063868,0.022588171,-0.0038707813,-0.00041142353,-0.039736032,-0.018943163,0.02535185,-0.0009894565,-0.029769383,0.017800698,-0.05135654,0.022827545,-0.012795612,-0.017724534,-0.018616745,0.006348843,0.005035008,-0.016690874,-0.045350432,0.009814321,-0.0031172982,-0.00192315,0.0321196,-0.0004824876,-0.016386217,-0.006620859,-0.015635455,0.019323986,0.06228068,-0.032271925,0.031706132,-0.0079102125,0.040845856,-0.010429077,-0.0014960855,0.040628243,0.01820328,0.035731964,-0.016310053,0.020368526,0.03969251,-0.028420186,-0.017202264,-0.008203989,-0.0047929143,-0.03111858,0.014275377,-0.0128500145,-0.02972586,0.04069353,-0.0047929143,0.0151349455,-0.016908487,-0.02550418,0.023306293,-0.01625565,0.039126717,0.0066317394,-0.015853066,0.031706132,-0.013383165,0.0016688155,0.01727843,-0.010363793,0.011925162,0.0103801135,-0.00157361,0.0005872136,-0.0063162013,0.014373302,0.02028148,-0.02183741,0.009395418,0.01818152,-0.0220115,-0.041716307,0.0055708787,-0.034491573,0.0072301733,0.012099252,-0.0072138524,-0.031401478,-0.025612986,-0.0021040402,0.014210093,0.0029459286,-0.04367482,0.015200229,-0.013394046,-0.015200229,-0.009422619,0.0040312707,0.014318899,0.027136272,-0.014634437,0.009765359,0.0009030916,0.007980936,0.031901985,0.01889964,0.00192315,-0.03218488,0.008073422,0.036580652,0.002638551,-0.011761953,-0.02378504,-0.020346764,-0.003547083,0.00612035,-0.03148852,-0.0062182755,-0.052836303,-0.0576673,0.022958113,-0.016549427,0.009656552,0.0036504488,-0.013568136,0.001626653,-0.01416657,-0.05052961,0.02308868,-0.028768366,-0.012251581,0.008829625,0.00070928055,0.0009894565,0.025438895,0.007202972,0.0076273163,-0.027636781,-0.00049370824,-0.0122080585,-0.02132602,0.053750273,0.009846963,-0.010467159,-0.0023039717,0.0006739185,-0.016930249,-0.03847388,0.003095537,0.009395418,0.01871467,0.0059734615,-0.018975805,-0.020325003,-0.016146844,-0.033272944,-0.02308868,0.00978712,-0.025221283,0.024720773,0.0045045777,-0.005391348,0.016484143,0.0029051262,-0.0054593524,0.0017681011,0.0074749873,0.03198903,0.01048348,0.014308019,-0.009493343,0.0072192927,-0.004420253,0.013187314,0.014819408,0.021391304,0.00471675,0.006522933,0.026244061,0.032315448,-0.0033131496,0.004422973,-0.00209724,-0.03407811,0.005040448,-0.0017068976,0.0081550265,-0.017343711,0.012545357,0.03111858,-0.038582686,0.019454552,0.016647352,0.012643283,0.023001635,-0.0045045777,-0.0076164356,0.014993497,-0.009411738,0.013296121,-0.04075881,-0.012773851,-0.0058265734,0.02222911,0.009895926,0.0017517802,-0.020956079,-0.020879915,0.0072519346,0.0037810162,-0.02676633,0.02358919,0.004110155,-0.013840152,-0.017267548,0.004251603,-0.021434827,0.025917642,-0.026113493,-0.011620505,-0.0060877083,-0.02567827,0.0300958,-0.01644062,-0.0227405,-0.02220735,-0.0023964571,0.0063379626,0.015613693,0.04212977,-0.04439294,0.0058646556,-0.008301915,-0.007485868,-0.037995134,0.008835065,-0.004452895,-0.031401478,-0.013589897,0.038735017,-0.004787474,0.0026072692,0.0021312418,-0.01764837,-0.019051969,-0.010021053,0.01626653,-0.032598343,-0.013045866,-0.005870096,0.0019353906,-0.0080625415,-0.018268565,0.020531734,-0.003742934,0.043239594,-0.0007983657,0.008851387,0.029442964,0.0171261,0.021946216,-0.02781087,0.040301826,-0.028420186,-0.07155097,0.006593657,-0.0018850678,-0.0024236587,-0.0051193326,-0.01521111,-0.0025963886,0.032641865,0.0136443,-0.0128173735,-0.034905035,0.007937414,0.004809235,-0.01765925,-0.0140686445,0.00751851,-0.008073422,-0.011718431,0.011718431,-0.008601132,-0.032446016,-0.007654518,0.009542306,-0.02550418,0.01031483,0.009890486,-0.00022526289,0.008796983,0.023175726,0.0093736565,-0.004333208,0.035666678,-0.031749655,-0.023567429,0.013753107,0.00576673,-0.00559264,0.04056296,-0.01574426,-0.028267857,0.016473262,0.013241718,0.04757008,0.008541289,-0.01153346,-0.028790127,-0.017724534,-0.0069527174,-0.013600778,-0.015428723,-0.006414127,0.0025297448,0.012077491,-0.031227386,-0.040454153,0.013905435,-0.025221283,0.020031225,0.021206332,0.00209588,0.007953735,0.0051818965,-0.0594082,0.0117510725,0.031727895,-0.011685789,-0.04367482,0.028768366,0.028681321,0.0074913083,-0.027702065,0.036820024,0.0025719071,-0.0076164356,-0.024024414,-0.00015249872,0.028028483,0.008835065,-0.00024396395,0.03814746,0.002886085,0.018159758,0.046220884,-0.037124682,-0.0035443627,0.0065011717,-0.03409987,-0.004909881,0.031096818,-0.011114555,0.031880222,0.0001485885,0.02011827,0.038169224,0.005513755,-0.019726569,0.0047466713,-0.020749347,0.0142209735,-0.01749604,0.015330797,0.0074913083]},{"id":"interface-PermissionResolvable","type":"interface","source":"main","text":"Interface: PermissionResolvable","meta":{"url":"/docs/typedefs/PermissionResolvable"},"embedding":[-0.032787547,0.0074416175,0.00767116,0.05295766,-0.0030321814,0.000012864037,-0.047033984,0.020703247,0.016349345,-0.04256161,0.013187584,0.00063725794,0.005379438,0.027826468,-0.0027304443,-0.047981773,0.01769698,0.027189672,0.01471293,0.05206911,0.06255402,0.022643251,0.019518511,-0.008226505,-0.023265237,0.015097968,-0.043894436,-0.011884375,0.016778812,-0.007922917,0.052335676,-0.029603569,0.0051980256,-0.0051906207,0.014135371,0.014172394,0.003585675,-0.03308373,-0.022939434,-0.035512436,-0.027352573,-0.021443706,-0.011706664,-0.009870324,-0.049610786,0.024079742,-0.017741408,0.051358268,0.0398071,-0.025960509,-0.029070439,-0.00831536,-0.008093222,0.024316689,-0.008929941,-0.024997912,-0.009581545,0.013372698,-0.039333206,0.031632427,-0.035216253,-0.0272341,0.008700399,-0.024864629,-0.02391684,0.038118854,-0.04584925,0.0049758875,0.021636225,-0.009537118,0.016852858,0.015253465,-0.022761725,-0.043568633,-0.011032846,0.0075749005,0.030566167,0.06415341,0.017622935,-0.028492881,-0.018911336,0.0118917795,-0.04276894,-0.061546993,-0.0030655023,0.028255934,-0.09922157,-0.012291627,-0.009596354,-0.08518246,-0.03909626,0.0286854,-0.04730055,-0.022509968,-0.008226505,-0.040162522,-0.023990886,0.024701728,-0.024242643,0.06231707,0.034505412,-0.022347067,-0.03814847,-0.018940954,0.008789254,0.030921588,0.025679134,-0.011003228,-0.04022176,-0.011988039,-0.029929372,0.007160243,0.007708183,0.0012671113,0.029470287,-0.053994305,0.005879248,-0.034001898,0.0057607745,-0.0011292007,-0.042680085,-0.012476742,-0.0037596829,-0.0078118476,0.01206949,-0.018748434,-0.014579647,-0.0017706237,-0.03195823,-0.019118663,0.05974027,0.00813765,0.0077600153,-0.03800038,-0.03210632,-0.024820201,-0.050677046,-0.0048722234,-0.0063494397,-0.036104802,-0.022139737,-0.020347826,0.023502184,-0.007922917,-0.0040540155,0.020170117,0.007693374,0.006227264,-0.014290867,0.028255934,-0.018170875,0.01606797,-0.005183216,0.00024296326,-0.018363396,-0.06824075,0.03139548,0.017104615,-0.019962788,0.026730588,0.017474843,-0.028744636,-0.009951775,-0.016778812,-0.025190432,0.028433643,0.051743306,0.014313081,-0.06598975,0.03181014,-0.025723562,0.010558952,-0.0478633,-0.016349345,-0.017460035,-0.004531612,0.018511487,0.018985381,-0.006312417,0.014638884,0.04895918,0.03181014,0.010544143,-0.056541484,0.0020492217,0.0052239415,-0.024731345,0.023457756,0.01954813,-0.0047389404,-0.041139927,0.024094552,0.0027174863,0.028611355,0.044486806,0.0068048225,-0.0024842415,-0.023457756,-0.04442757,-0.054882854,-0.036578696,-0.022243403,0.088085055,0.003485713,-0.052898426,-0.0075897095,-0.032313652,-0.02776723,-0.012076894,-0.0042465352,0.047804065,0.026597304,0.024746155,-0.038681604,-0.008441238,-0.009892538,0.060539965,0.00786368,-0.0055608507,-0.0039540534,0.018363396,0.005149896,0.036637936,0.006149516,0.07327587,0.026004937,-0.0028304064,-0.0062827985,0.003348728,0.019814696,-0.032076705,0.040606797,-0.016719574,-0.027900513,0.019429656,-0.005964401,-0.00025129344,-0.026982343,0.0014161287,0.0026045663,-0.05429049,0.0032580215,0.0067789066,0.02135485,0.02633074,-0.033468768,0.014446364,0.0046760016,0.0076119234,0.009129865,0.0029673914,0.052128345,0.019459276,-0.002080691,-0.01489064,-0.023176381,0.0031154833,0.0068492503,-0.00060023495,0.013698501,-0.017563699,-0.0033413235,-0.008818872,-0.027086006,-0.010114676,-0.04454604,0.005327606,0.04149535,-0.045819633,0.021251187,0.0037282135,-0.0031673154,0.031513955,-0.020658819,-0.061132334,-0.051624835,0.056423012,0.05150636,-0.035867855,-0.035542056,-0.04439795,-0.03124739,0.022302639,0.022169357,-0.02099943,0.022584014,0.0028230017,0.030655023,0.0105885705,0.0063272263,-0.006664135,0.0045649325,0.040458705,-0.018600341,-0.02576799,0.00804139,0.06249478,-0.059503324,0.06119157,0.017667362,0.045760397,0.007419404,-0.009322384,-0.011543763,0.015668122,-0.027337763,0.014268654,0.016008733,0.024612872,-0.006523448,-0.015016518,-0.047981773,-0.041850768,-0.01078109,-0.03776343,-0.070314035,0.058229733,-0.050706666,-0.016897285,0.017667362,0.029677616,-0.009500095,0.014127967,-0.024405545,0.03323182,-0.026908297,0.013120942,-0.021103095,0.041376874,0.022598824,0.001282846,-0.01005544,-0.03323182,-0.016867667,0.023531802,0.00047343128,-0.03106968,0.07108411,0.0071898615,0.018748434,0.023250427,-0.053846214,-0.04564192,0.013942852,0.02246554,-0.040843744,-0.005956996,-0.017622935,0.04534574,0.043331686,-0.023117146,-0.029262958,-0.058111258,-0.0048870323,-0.058525916,0.009522309,0.053016897,-0.048840705,-0.0591479,0.015223847,-0.020244163,0.008618948,-0.01406873,0.016956521,-0.015623695,0.036756407,-0.05239491,0.021414088,0.0025730967,-0.060954623,0.03492007,0.00060578843,0.019962788,0.03252098,-0.022228593,-0.0052572624,-0.032402508,-0.006112493,0.022243403,0.0047796657,0.06421264,0.035927095,-0.047981773,-0.048988797,0.026523259,-0.023857605,-0.008641162,-0.005379438,-0.04587887,-0.020303398,0.05556408,-0.014705525,0.031662047,-0.021591797,-0.0014762911,-0.024035314,0.03127701,0.04262085,0.024849819,-0.03414999,0.029366622,0.02173989,0.012573002,0.03634175,-0.032432124,-0.03252098,-0.004942567,0.029633189,0.016201254,-0.029011201,-0.008522688,-0.021488134,0.05458667,0.034801595,0.05058819,-0.060036454,-0.023043098,-0.0591479,0.03613442,0.015060945,-0.0090262005,0.044042528,-0.037970763,-0.03269869,0.028566927,0.021962028,0.029455477,-0.000569691,0.01679362,-0.0771855,0.005642301,0.03912588,0.0036560185,-0.016660338,0.0012411951,0.014490792,0.03086235,-0.026641732,-0.019518511,-0.01443896,-0.005875546,-0.052187584,0.03474236,0.008944751,-0.015490412,-0.02246554,-0.0046908106,0.009529714,0.0027452535,0.0020214543,-0.046797037,-0.00995918,0.012573002,0.04842605,0.01569774,0.016660338,0.013705905,0.03693412,-0.022998672,0.030418076,-0.00032279405,0.033913042,0.00406142,0.053935066,-0.015223847,-0.0020584774,-0.016956521,-0.020244163,-0.05677843,-0.036430605,-0.03183976,-0.013972471,0.009551927,-0.043539017,-0.030477311,-0.008700399,0.006538257,-0.047448643,-0.0066011962,-0.015653314,-0.009263148,0.032609835,-0.007241694,0.0071306247,0.057992786,0.11154281,0.03183976,0.025279285,-0.0784887,0.044723753,0.014372318,-0.014357509,0.0053720335,-0.01957775,0.003648614,-0.0017206427,0.01250636,-0.044842225,-0.009396431,-0.03213594,0.057578128,-0.055860262,-0.011536359,-0.02302829,0.0052091326,0.0057607745,0.03417961,-0.036845263,-0.018792862,-0.04733017,0.018704006,0.015179419,-0.045168027,-0.011514145,-0.061132334,0.016230872,-0.021695463,0.039570153,-0.0053127967,0.03927397,-0.020955004,0.009115056,0.016171634,-0.02576799,-0.034001898,0.029292576,-0.019622175,0.032728307,-0.010492311,-0.019059427,0.029337004,-0.012106513,-0.00094639976,0.017045377,0.033676095,0.03435732,0.011040251,-0.01882248,0.00857452,-0.023146763,0.032757927,-0.015223847,-0.033853807,0.023813177,-0.02649364,-0.006764097,0.008596734,-0.04481261,0.011254984,0.012476742,-0.03669717,-0.015179419,-0.0072157774,0.0040280996,0.048662998,-0.0072157774,0.010425669,-0.016304918,-0.021976838,0.025086766,-0.035867855,0.00061319297,0.018644769,-0.041199166,-0.031128917,0.021473324,0.0031599107,0.0050240173,0.028848302,-0.018170875,0.002428707,0.028552117,-0.024790583,0.06249478,0.027278528,-0.0043131765,-0.01572736,-0.01991836,0.050292008,-0.0027674672,-0.02173989,-0.03139548,-0.0024694323,0.04291703,-0.00065438106,-0.033824187,0.0031821246,-0.008752231,-0.0032820867,0.011677045,0.009648187,-0.008145054,0.032224797,0.017326752,-0.016156826,-0.022213785,-0.0040429085,0.04712284,0.0060310424,-0.011595596,-0.004342795,-0.011913992,-0.016986141,-0.027915321,0.043775965,0.02119195,0.040103287,-0.008085817,-0.0162753,0.01825973,-0.03530511,-0.03705259,0.0005845002,-0.0049610785,-0.036637936,-0.001250451,-0.009625973,0.005042529,0.02576799,-0.0043761153,-0.015993925,0.0058237137,-0.034090754,0.015475603,-0.058229733,0.015875451,-0.023650276,-0.020125689,0.007367572,0.004331688,0.058496296,-0.005742263,0.029011201,-0.022198975,-0.010470097,-0.00089595595,0.005786691,0.027944941,-0.009418644,-0.022791343,0.019266756,-0.008419024,0.013357889,-0.015742168,0.018185684,-0.012802544,0.015816214,0.027515475,0.008604139,0.011625214,-0.026997153,0.0055312323,0.021428896,-0.01606797,0.04457566,0.02520524,-0.011225365,0.019222328,-0.015060945,-0.00092927663,0.028789064,0.043213215,-0.04436833,-0.0032765332,-0.033172585,-0.03050693,0.024005696,0.00203071,-0.018881716,0.007456427,0.0073416554,0.03832618,0.041376874,-0.0075637936,0.014298272,0.006034745,0.026434403,-0.019266756,-0.0059310803,-0.040103287,0.02212493,-0.00075619423,-0.016438201,-0.008581925,0.0056126826,0.0035893773,0.0031728689,-0.008071008,-0.02467211,-0.00857452,0.020421872,0.0061569205,0.006560471,-0.025071958,0.020614391,-0.0016863964,0.04327245,0.00675299,0.033320677,-0.060214166,-0.03820771,-0.040251378,0.039570153,-0.015371938,0.0016688105,-0.01861515,0.03249136,0.0059977216,0.027189672,0.0018955762,-0.019696223,-0.0038281754,-0.009788875,0.000418591,0.042887412,0.023235617,0.017104615,0.03308373,0.03927397,-0.009700019,0.007885894,-0.011588191,0.0012476742,0.048514903,-0.015431175,0.04783368,0.031365864,0.0011699259,-0.0028859407,0.016660338,-0.027471047,-0.0014207566,-0.029677616,0.016541865,-0.022391494,0.0022806153,0.0070306626,0.025975319,-0.051062085,0.006016233,0.010818113,0.010988419,-0.015993925,-0.023161571,-0.021206759,0.016230872,-0.027160054,0.013565217,-0.042443138,0.021665843,0.01902981,0.013750332,0.011277198,0.0037874503,0.010477502,-0.024198215,-0.021458516,0.0066308146,-0.00301367,-0.018052401,-0.00858933,0.071143344,-0.0022102715,-0.016186444,0.004794475,0.02704158,-0.032994874,-0.031750903,0.03965901,0.044279475,0.0010468246,-0.008322764,-0.0071565406,-0.0018104234,0.008182077,-0.03696374,-0.026404785,-0.020125689,0.010899563,-0.008552307,0.0016243829,-0.0067011584,-0.02557547,-0.058170497,-0.01571255,0.007508259,-0.023057908,-0.00093112775,-0.029085249,0.007996962,-0.04315398,0.02156218,-0.015312701,-0.011625214,0.013920638,0.0034283274,-0.020629201,-0.09466034,-0.011336435,-0.036578696,0.0027026772,-0.009433454,-0.016838048,0.019325992,0.046352763,0.028818682,-0.02011088,0.0177266,-0.022080502,0.013291247,0.009263148,0.051624835,-0.003074758,-0.026612114,0.01882248,0.023428138,0.021280805,-0.016675148,-0.040488325,-0.014335295,0.0166011,-0.009152079,-0.0069973418,-0.027604328,-0.011543763,0.041524965,0.0013059854,-0.01516461,0.010203532,0.042324662,0.022080502,0.024612872,-0.030625403,0.01954813,0.01295804,0.01297285,-0.018600341,0.02646402,-0.0149869,-0.0063827606,0.011580786,-0.03764496,-0.005172109,0.02523486,0.010951395,-0.00015700054,-0.0018900228,-0.03782267,-0.030743876,0.036045566,-0.033557624,0.009892538,0.019266756,0.008515283,0.012121322,-0.025856845,-0.022509968,-0.027678374,-0.027619138,-0.0016345643,-0.019681413,0.034001898,-0.0025990128,0.0069751283,-0.010892158,-0.005568255,0.0031950825,-0.020155307,0.02376875,0.017741408,0.026078982,0.042443138,-0.017445225,0.0030840137,0.0019400038,0.032284033,0.033705715,0.009374217,0.0664044,0.017134232,0.02282096,-0.0074897474,0.0033413235,-0.003735618,0.020584773,-0.021784317,0.0022269317,0.036993355,0.014579647,-0.005068445,0.008382001,0.030773496,0.065752804,0.0031839758,-0.010551548,-0.0012347162,0.019044617,0.047922537,0.02446478,-0.004957376,-0.028848302,-0.030269982,0.01900019,-0.006116195,0.0069788303,0.032047085,0.067826085,-0.017519271,-0.01013689,-0.0016234574,0.013046896,0.012395292,0.016038353,0.014564837,-0.03364648,0.008352383,0.0020862445,-0.029055629,-0.01261743,-0.018659579,-0.017785836,0.012017657,0.0037430227,0.028478071,-0.0038911146,-0.011973229,-0.0040429085,-0.0049166507,0.004220619,-0.0152978925,-0.0069640214,0.01846706,-0.03998481,0.04146573,-0.008707804,-0.04312436,0.008033985,0.017134232,0.019237136,0.009003988,-0.006412379,-0.009633378,0.022880198,-0.012869186,0.0369045,-0.014127967,0.014468578,-0.0005673771,-0.04475337,0.008818872,0.013735523,-0.0391555,0.042117335,0.021280805,0.01769698,-0.0062827985,0.025249667,-0.040636417,0.019207519,-0.011928802,0.00018881717,-0.022347067,-0.009655591,-0.026034554,0.0018826182,0.019740649,0.020421872,0.00383558,-0.0011949164,-0.011217961,-0.027841276,9.219588e-7,0.0040910384,0.041584205,0.0062346687,-0.0060680653,-0.0054275678,-0.008352383,0.0055423393,-0.014831403,0.023724321,0.04860376,-0.02190279,0.024420353,-0.012624834,-0.017845074,-0.040488325,0.049048036,0.030447694,0.018778052,-0.0049721855,-0.0033579837,-0.024938675,0.0027563605,0.0013985428,-0.017519271,-0.051772926,0.01880767,0.037674576,-0.018007975,0.02265806,-0.024701728,-0.029707234,0.04661933,-0.030625403,0.022939434,-0.009640782,0.010943991,-0.004261344,-0.016216062,-0.0018992785,0.048899945,0.03145472,-0.045701157,-0.042531993,0.015638504,0.013853997,0.049225744,-0.027648756,0.03474236,0.020673629,0.021073477,-0.011018037,-0.023635466,-0.014727739,0.01506835,0.007730397,0.0007247247,-0.00035819726,-0.008307955,-0.027337763,-0.0076341373,0.006186539,0.0074305106,0.008700399,0.039007407,-0.008470857,0.02083653,0.033468768,0.0051758117,-0.009270553,0.026952725,-0.04036985,0.037408013,0.0132023925,-0.004261344,0.008085817,0.005168407,0.023072718,-0.016497437,0.019429656,-0.0049277577,-0.03266907,-0.00895956,0.0027767231,0.004568635,0.010936586,0.0068492503,0.008485666,-0.01316537,0.018748434,-0.013802164,0.033320677,-0.009485286,-0.01606797,0.0022732106,-0.022628441,0.017385988,-0.005401652,0.020495918,0.024494398,-0.005901462,-0.00041535147,-0.013350484,0.038266946,-0.02978128,-0.02504234,-0.04510879,0.03160281,-0.01608278,0.042857792,0.024509208,-0.01645301,0.034801595,-0.047596734,-0.019414848,-0.021962028,-0.008093222,-0.01608278,0.033379912,-0.011151319,-0.008085817,-0.007982153,-0.015579267,0.00931498,-0.009115056,-0.011973229,0.0073860832,0.05503095,-0.038977787,-0.006612303,0.012461933,0.014313081,-0.030166319,0.035542056,-0.0051610023,-0.00020084964,-0.0047352384,-0.03580862,0.0067826086,-0.014142776,0.0011375309,0.03237289,-0.020244163,-0.009166888,-0.012476742,0.016364153,-0.018659579,0.018022783,0.013128347,-0.018156067,-0.003250617,0.028285552,0.0068492503,-0.008700399,-0.016926903,-0.037141446,-0.0015049839,-0.035542056,0.021043858,-0.007604519,-0.015149801,0.018970571,0.0111142965,-0.011047656,0.008204291,-0.023087526,-0.022332257,-0.009855515,0.051802546,-0.004820391,-0.001026462,-0.019518511,-0.0055460413,-0.0027471047,-0.005309094,-0.011203152,0.0939495,-0.009677805,0.022880198,0.025412569,0.00383558,0.022347067,0.0037596829,0.023413328,0.0019511107,0.039066643,-0.026641732,0.017845074,0.0025212646,-0.0014550028,-0.010299792,0.033942662,0.0050647426,0.008522688,-0.004605658,0.020303398,-0.0042909626,-0.030566167,0.01078109,-0.0111142965,0.027870895,-0.038948167,-0.033676095,-0.002752658,0.03326144,0.009633378,-0.020347826,0.04401291,-0.001674364,-0.029929372,-0.031543575,0.0059866146,0.037200682,-0.040132903,0.018437441,-0.0039392444,0.023457756,-0.016112398,0.00196592,0.011913992,-0.028196696,0.008085817,-0.020984622,-0.019340802,-0.017756218,0.020732865,-0.019888742,0.004220619,0.020303398,-0.010166508,0.0023454053,-0.021591797,0.016527055,0.0038133662,0.01716385,0.001811349,-0.044694133,0.008989178,-0.01569774,0.005046231,0.044871844,0.03782267,0.018704006,0.0063494397,0.008678185,-0.0024879437,-0.03068464,-0.00067242974,0.0031913803,-0.011425289,-0.0013615198,0.00018187535,0.018837288,-0.012787735,-0.008811467,0.0027359978,0.042531993,0.033735335,0.0016641826,0.014668502,-0.031691667,0.017311942,0.030358838,0.0012921018,-0.030033035,-0.011862161,0.0076563507,0.021887982,-0.009189102,0.006534555,0.00030034888,-0.0060976837,0.022169357,0.004483482,-0.013639264,-0.018333776,-0.0020955002,0.012587811,-0.00602734,0.02338371,-0.031365864,-0.00075110357,0.011795519,0.013269033,-0.0013976173,0.0038133662,-0.0044390545,-0.01013689,-0.019785076,-0.0010218341,-0.0055756597,-0.007308335,0.0029081546,-0.020569963,0.01078109,-0.0065530664,-0.013898424,0.016704766,-0.04895918,0.0018391162,-0.0052831783,0.022761725,0.017756218,0.00858933,0.026982343,0.03012189,-0.018230112,0.008056199,0.0027878298,0.0058607366,0.0032728307,0.018689197,0.0166011,-0.017519271,-0.01624568,-0.017252706,0.02301348,-0.020155307,-0.015579267,0.0072120754,-0.029277768,0.015786596,-0.024020506,-0.009766661,-0.032994874,0.028152268,-0.007245396,-0.0052091326,-0.024005696,-0.017993165,0.02099943,-0.013905829,0.008915132,0.009455668,-0.004583444,-0.007996962,-0.01589026,0.0057126447,-0.0077007785,0.014283463,0.0008982699,-0.022347067,-0.025264477,0.024835011,0.02430188,-0.0066011962,-0.034001898,-0.0012532277,-0.01679362,-0.0017826562,0.019666603,-0.008670781,0.0034542435,0.0098036835,-0.007782229,0.018126449,-0.014394532,-0.03290602,0.014972091,0.0072898236,0.010292387,0.030566167,-0.035008922,-0.014150181,-0.016882475,-0.017741408,0.009048414,-0.014409341,-0.021636225,0.00075850816,-0.0012819205,-0.0012911762,-0.013905829,0.027397001,-0.0021899089,-0.019785076,-0.023087526,-0.008937346,0.015564458,-0.042413518,-0.0037689386,-0.02942586,-0.011662236,0.011180938,0.0067418832,-0.008419024,0.000034564415,0.020718057,-0.0018039444,-0.0060310424,-0.011543763,0.019533321,0.005446079,0.003548652,-0.01900019,0.044723753,0.0052350485,-0.011810329,0.0005437749,-0.018985381,-0.035482816,0.008359787,0.014587051,0.013809569,-0.023709511,-0.01232865,0.0010477501,0.013609645,0.0014290868,-0.0051906207,0.035157017,-0.033942662,-0.018985381,-0.011884375,-0.039362825,0.03669717,-0.020392254,0.019474084,-0.0011532656,-0.024050124,-0.0020825423,-0.026967533,0.044871844,-0.0041280617,-0.038651984,0.016734384,-0.0015531137,0.022746915,-0.001202321,-0.033557624,0.0012448975,-0.021621417,-0.019015,-0.045197647,0.009744447,0.015993925,0.009581545,0.013705905,-0.0020732866,0.013180179,0.021206759,-0.024627682,0.013476362,0.027367381,0.03912588,-0.05206911,0.00776742,0.02502753,-0.00323951,0.042413518,-0.0047796657,-0.01846706,0.0088633,0.009455668,0.035157017,-0.04457566,-0.013928043,0.037141446,0.027633948,-0.012817353,-0.012187962,0.02082172,0.01232865,0.0023990886,0.03124739,-0.013313461,-0.007093602,0.0041132523,-0.04315398,-0.014624074,0.032757927,0.01489064,-0.01737118,-0.021680653,-0.0021639927,-0.032609835,-0.012706284,0.0033172583,0.041910008,-0.014002088,0.010840327,0.020155307,-0.013580027,-0.010477502,-0.018170875,0.0062716915,0.005105468,0.03326144,-0.02504234,0.009870324,0.00029687796,0.011565977,-0.004809284,0.013550408,-0.0082413135,-0.0031580597,0.017667362,-0.0054831025,-0.014187204,0.032639455,0.047774445,-0.00040169928,-0.020969812,-0.009426049,0.028789064,0.012654453,0.004035504,0.011425289,0.012513765,-0.014816594,0.023428138,0.0059940196,0.010832922,0.0003753204,-0.018541105,-0.005964401,0.0016391921,-0.00031585223,-0.010262768,-0.020584773,0.0058829505,0.022006456,0.0051573003,0.021680653,0.00839681,-0.0031173343,0.0036911904,0.027604328,0.0029859028,0.0029859028,0.032994874,0.04096222,0.007922917,-0.04478299,-0.017622935,-0.011099488,0.007286121,-0.024050124,0.020407064,-0.011069869,0.028552117,0.03106968,0.003050693,-0.009692615,-0.02591608,0.022613632,-0.00033714046,0.030921588,-0.0049610785,0.008211696,0.0030692045,0.00802658,-0.0019529619,-0.0028785362,0.009500095,0.012321246,0.030447694,0.0000651373,0.022302639,-0.01261743,-0.01971103,0.010033226,0.012928423,-0.028004177,0.03290602]},{"id":"interface-PermissionString","type":"interface","source":"main","text":"Interface: PermissionString","meta":{"url":"/docs/typedefs/PermissionString"},"embedding":[-0.008572757,-0.02056033,-0.012137596,0.031176262,-0.015859602,0.00028776782,-0.027547127,0.023446491,0.017674169,-0.032204993,-0.011473207,-0.021503333,0.003843453,0.03483397,-0.00443283,-0.053779766,0.013509237,0.055437166,0.004250659,0.046207163,0.03229072,0.019217264,-0.034919698,0.013487806,-0.0041720755,0.011194592,-0.026361229,0.019888798,0.027218506,0.0019824503,0.0009224644,-0.03414815,0.010930266,-0.014930886,0.026546972,0.014816582,0.028318675,-0.024646677,-0.025403937,-0.06458144,-0.039434686,0.0059187748,0.008951387,-0.0013653903,-0.0069475058,0.027690006,0.00686535,0.04386394,0.011080289,-0.025546817,-0.046607226,-0.023675099,-0.01300916,0.0408349,0.013287774,-0.024532374,-0.016545422,0.008715637,-0.0072154044,0.010030126,-0.03451964,-0.02443236,-0.015402388,-0.017788472,-0.021631924,0.047293045,-0.04243515,0.053151097,0.04312097,0.048321776,0.029633164,-0.004897188,-0.03511973,-0.00089656754,-0.012851993,0.014159338,-0.018359989,0.043463882,0.033862393,-0.004197079,-0.0012841276,0.0010198009,-0.063095495,-0.06629599,0.0071653966,0.07618324,-0.07595463,-0.0057687513,-0.0017931351,-0.044606917,-0.037977315,-0.023375053,-0.023575082,-0.019417295,0.004293523,-0.008387014,-0.040120505,0.0063581285,-0.024246616,0.020131692,0.038463105,-0.013344926,-0.054551315,-0.03457679,-0.006247397,0.028604435,0.0121733155,0.021917684,-0.0390632,-0.040692024,-0.07366856,0.061552398,-0.00681177,0.00448641,0.047407348,-0.017745608,0.021103272,-0.023960857,0.052322395,0.0037827292,-0.02311787,-0.035091154,0.01014443,-0.015916754,-0.015788162,-0.023932282,-0.045435615,-0.030776199,-0.007815497,-0.029218815,0.06400992,-0.020060252,0.015330948,-0.011173161,-0.016616862,-0.032376446,-0.036177035,0.0079083685,-0.02138903,-0.0014457598,0.010394469,-0.023146445,0.026975611,0.006879638,-0.0010251589,0.011773254,-0.02428948,0.025832577,-0.02008883,0.044035397,-0.026975611,0.030233258,-0.027661432,0.012716257,0.000115084804,-0.047378775,0.012551946,0.0061759576,-0.024889573,0.02890448,0.025346786,-0.03286224,-0.012787697,-0.016202511,-0.007001085,0.011873269,0.072125465,0.0027450684,-0.049379084,0.015959617,-0.036348492,-0.016531134,-0.04366391,-0.023489356,-0.03437676,-0.019788781,0.018088518,0.010744522,-0.06383847,-0.010244445,0.0482932,0.050322086,0.0074225795,-0.06412423,0.012730545,-0.0016681157,-0.016874045,0.032033537,0.0400062,-0.016631149,0.006876066,0.011237456,0.042263694,-0.003405885,0.004247087,-0.02070321,0.008644197,-0.058209024,0.000022980683,-0.029947499,-0.0029897492,0.022389185,0.043578185,-0.031547748,-0.034805395,-0.03146202,-0.00070903846,-0.017359834,-0.0147165675,0.020617481,0.037977315,0.018574309,0.021717653,-0.048778992,-0.015188069,0.0045721373,0.055522893,-0.024003722,-0.010623075,-0.039234653,0.0024878858,0.0116875265,0.04566422,0.009922967,0.05555147,0.031490598,-0.0044078263,0.039806172,0.0046650087,-0.024689542,-0.014645128,0.02704705,-0.02146047,-0.07389717,-0.014859446,0.020574618,-0.011173161,-0.00897282,0.018888643,-0.017531289,-0.026175486,0.028761601,0.034805395,0.04643577,0.054608464,-0.009772943,0.0045649935,0.025446802,-0.014302217,-0.012194748,0.010780242,0.044606917,0.028347252,-0.011916133,-0.014052179,0.01573101,-0.00030473474,0.03029041,0.04843608,0.0063116928,-0.010915978,-0.02297499,-0.007033233,-0.022460625,-0.0017949211,-0.014916598,0.029776044,0.033719514,-0.026546972,0.003429103,-0.0034612508,-0.007472587,0.054551315,0.031833507,-0.027161354,-0.05629444,0.055094253,0.059437785,-0.048550382,0.0047614523,-0.100301266,-0.01897437,0.0056937397,0.023260748,0.00482932,0.024103737,-0.0032219281,0.0035773404,0.023775114,-0.030176107,-0.03697716,0.002416446,0.04146357,0.0013448513,-0.011951853,0.009337162,0.049721994,-0.007304704,0.07206832,0.04686441,0.053922646,0.03969187,0.03289081,-0.016702589,-0.0274614,-0.029218815,-0.010794531,-0.0106016435,-0.010773099,-0.032805085,0.00859419,-0.03774871,-0.042892363,-0.031176262,-0.05023636,-0.021703364,0.012066157,0.021303302,-0.022889262,-0.0006005395,0.019760206,0.0089371,-0.0013403863,-0.03649137,0.069553636,0.0007916406,0.02160335,0.011273176,0.05306537,0.04789314,0.010730235,-0.04194936,-0.02380369,-0.0048150322,0.03180493,0.0010287309,-0.031576324,0.06503865,0.0102658775,0.032547902,0.02526106,-0.037148617,-0.029776044,-0.0020806796,0.03223357,-0.051179364,-0.026947035,0.02167479,0.051236514,0.06412423,-0.019717343,0.0036041301,-0.040720597,-0.022560641,-0.04003478,-0.03820592,0.070410915,-0.045149855,-0.04526416,0.035148308,-0.015145205,0.0014234349,-0.013995026,-0.010994562,-0.027518552,0.014173626,-0.033633787,0.0026879166,-0.018102806,-0.06795339,0.015230932,0.0031558464,0.030919079,0.008979963,-0.005168658,0.0150166135,-0.05023636,-0.0039613284,0.03271936,-0.02960459,0.044521187,0.042206544,-0.034176726,0.014409376,0.029547438,-0.014445096,0.017402697,0.009051403,-0.010701659,0.010330173,0.053293977,0.0022664228,0.009265722,0.0022985707,-0.028661586,0.037034314,0.014573688,0.046035707,0.027761446,-0.031890657,0.038663138,0.02538965,0.028375827,0.0043613906,-0.033205148,-0.043921094,-0.023332188,0.047721684,0.044806946,-0.004857896,0.018288549,-0.02290355,0.056122985,0.023703674,0.065667324,-0.037662983,-0.009644352,-0.047921713,0.035205457,0.007018945,0.0021878392,0.043835368,-0.0018592168,-0.035862703,0.023332188,0.040320538,-0.009487185,-0.03483397,0.012344771,-0.07561172,0.011358904,0.030376138,0.009958686,-0.005072215,-0.004197079,-0.030661896,0.029861772,0.017202666,-0.0017788472,-0.016231088,0.0012966295,-0.053436857,0.01821711,-0.0063188365,0.010623075,-0.012651961,0.036605675,0.0019217265,-0.0033737372,-0.014152193,-0.05949494,-0.015430964,-0.03517688,0.045721374,0.03151917,0.022746384,-0.011330328,0.03849168,-0.029375983,0.011344615,0.028047206,0.018031366,-0.031004807,0.04183506,-0.015102341,-0.021789093,-0.025861152,0.0034898268,-0.031347718,-0.032690782,-0.049350508,0.0113874795,-0.0024432358,-0.0011171375,-0.009565769,-0.017645592,0.0049721994,-0.03820592,-0.010308741,-0.06223822,0.0068189143,0.044264004,-0.0067010387,-0.00010883384,-0.0105659235,0.13270628,0.05417983,0.007286844,-0.060123608,-0.00045632073,-0.017231243,-0.025718272,-0.025003877,-0.018617172,0.00005776565,0.0135949645,0.030490441,-0.032947965,-0.013523525,-0.02974747,0.06749618,-0.053036794,-0.0030076092,0.0043435306,0.025904017,0.025303923,0.02436092,-0.039806172,-0.031204838,-0.05815187,-0.03083335,-0.018545732,-0.023575082,-0.035919853,-0.049979176,0.028475843,-0.00973008,0.05672308,-0.0011019566,-0.00055231777,0.0033308736,0.004822176,0.027204217,-0.028104357,-0.020746073,-0.004857896,-0.033405177,0.017988503,0.0056401603,-0.042063665,0.030176107,-0.036062732,0.010987418,-0.0029468853,0.008851372,0.0015823882,0.012037581,0.010815962,0.006665319,-0.0070082294,-0.0034791108,-0.010887402,-0.0051293666,0.034405332,-0.018545732,-0.003025469,0.015773874,-0.007901225,0.009580056,0.016459694,-0.03780586,-0.03286224,0.0011305324,-0.03360521,0.044349734,-0.0027075626,0.012244755,-0.027575703,-0.015573842,0.024260905,-0.005307966,-0.018602883,0.007408291,-0.033862393,-0.033062268,0.024818134,0.017974215,0.008979963,0.03817735,-0.02021742,0.0032915818,0.045635644,0.00017379926,0.08109829,0.014530824,-0.04172075,0.022117715,0.0027057766,0.018259974,0.0014466528,0.007629754,-0.011187448,0.015702434,0.03863456,0.016088208,-0.052865338,0.0016663298,-0.029833196,-0.013880723,-0.00408992,-0.0028040062,-0.0055151405,0.027447112,0.028875904,-0.010330173,0.013366357,-0.0038005891,-0.0010858827,-0.0029111656,0.01286628,-0.0075797467,-0.014187913,0.0053329696,0.020960392,0.028375827,0.009722936,0.044035397,-0.000808161,0.0012734117,0.029033072,-0.037863012,0.0077512017,-0.026361229,-0.035405487,-0.038377378,0.032347873,-0.029718893,-0.009872959,0.000808161,0.0017020495,-0.02283211,0.012459074,-0.019488735,0.01863146,-0.033262298,0.0048186043,-0.039520413,-0.052150942,0.010423045,0.00609023,0.039206076,-0.015173781,0.013959307,-0.026332654,-0.03151917,0.010973129,0.043235272,0.006647459,0.020331724,-0.03526261,0.017931351,-0.04980772,0.031404868,-0.025718272,0.026646988,-0.014845159,-0.016416831,0.027418537,-0.011658951,0.021346167,-0.009994406,0.016588286,0.020831801,-0.022031987,0.033205148,0.004243515,-0.02436092,0.022517776,-0.021031832,-0.033290874,0.023289325,0.021831956,-0.029947499,-0.013487806,0.008158407,-0.015288085,0.0017002636,-0.011873269,-0.01635968,-0.011666094,0.026832731,0.07446869,0.0063438406,0.01490231,0.0049079037,-0.027304232,-0.0022021271,-0.038005892,-0.00445069,-0.00679391,0.024018008,0.03560552,-0.005086503,-0.029375983,0.017159803,0.012637673,0.017359834,-0.0026754148,-0.002189625,-0.019202977,0.003036185,-0.011158872,0.026532685,-0.039348956,0.01135176,-0.00526153,0.031147685,0.00096086325,0.019345855,-0.04057772,-0.0041792192,-0.026032606,-0.0003388918,-0.020860376,-0.013230623,-0.002612905,0.002789718,-0.008294143,0.029233104,-0.011366048,-0.02877589,-0.013302062,-0.031147685,0.024946725,0.035291184,0.0033165857,0.0006666212,-0.0072797,0.043378152,0.011180305,0.0012430499,-0.023103582,-0.00045899974,0.037577253,-0.0011626802,0.006668891,0.0490076,0.014266497,0.012551946,0.028818753,-0.00040251776,0.0023521504,-0.03712004,0.032519326,-0.022017699,-0.0049221916,0.0008483458,0.016016768,-0.03712004,-0.008329863,0.013644973,0.017988503,0.005304394,0.00063536636,-0.016573997,0.032376446,-0.04594998,0.020031678,-0.025618257,-0.005450845,-0.006061654,0.01252337,-0.0022378468,0.010315885,0.0040149083,-0.020503178,-0.022203442,-0.027104203,0.015530979,0.027404249,-0.0048007444,0.04703586,0.007715482,0.007865505,-0.018717187,0.03609131,-0.015931042,-0.017859912,0.017416986,0.034176726,0.021517621,-0.013837859,-0.013737844,0.00859419,0.016388254,-0.016416831,-0.024732405,-0.056323018,0.011630374,-0.006040222,-0.0037970173,-0.012059012,-0.02207485,-0.041349266,0.0007956591,-0.027761446,-0.018460004,0.008651341,-0.011458919,-0.008587046,-0.022603504,0.031061959,-0.01304488,-0.008015528,0.015088053,-0.01628824,-0.0029129516,-0.070125155,-0.02358937,-0.0022985707,0.0033898111,-0.031233413,-0.026461245,0.04057772,0.0666389,0.010480196,-0.00931573,0.038863167,0.007629754,0.01490231,0.017316971,0.027761446,-0.013773563,0.027289946,-0.004857896,0.013937875,0.0031397725,0.012980584,-0.009201426,-0.018031366,0.03794874,0.020517467,0.00019791015,-0.027847175,0.008601333,0.0059794984,-0.024232328,-0.04200651,-0.0059652105,0.049664844,-0.009822952,0.038520258,-0.018231397,-0.008701349,-0.0104159005,0.018474292,-0.03774871,0.012430498,-0.013995026,-0.015402388,0.009937255,-0.0441497,0.008737069,0.0065474436,0.021446181,0.00055187126,-0.012280475,-0.016131071,-0.007311848,0.04169218,-0.024018008,0.0028772317,-0.0072832718,0.027475689,-0.006043794,-0.007086813,0.021874819,-0.021088984,-0.021188999,0.009265722,-0.0018913646,0.026446957,-0.010251589,0.030661896,-0.04234942,0.020360298,0.0036827137,-0.008058392,0.03151917,0.019088674,0.036205612,0.03654852,0.0018395709,0.0014502248,-0.0027325666,0.004436402,0.026789866,0.047864564,0.07526881,0.028232949,0.031347718,0.011144585,0.019160112,-0.026189774,0.017431274,-0.028461555,0.0061330935,0.058494784,0.018117094,0.002421804,-0.004232799,0.01890293,0.0062045334,0.024518086,0.014659415,-0.008122688,0.003807733,0.030318987,0.01320919,-0.025846863,-0.025089603,-0.024189465,0.04180648,-0.012651961,0.037205767,0.016659725,0.050322086,-0.021231864,-0.0074154353,0.0069403616,-0.004568565,-0.03166205,0.02904736,0.010801675,-0.021989124,0.002412874,0.014602263,-0.04520701,-0.020717498,-0.020045964,-0.027432824,0.015488115,-0.0043220986,0.015859602,-0.0056223003,-0.019560175,0.00019791015,-0.013516381,0.0047150166,0.014202202,-0.017245531,0.00641528,-0.029918924,0.043292426,-0.022317745,-0.06115234,0.0012001861,0.018888643,0.027032763,0.002832582,0.0030969086,-0.00935145,0.0040863478,0.0013689622,0.021731941,0.0024878858,0.0064259963,-0.023403628,-0.02443236,-0.013330638,0.0042042234,-0.051293667,0.01000155,0.011523215,0.037491526,-0.025618257,0.0045578494,-0.03146202,-0.011544647,0.011216025,-0.013873579,-0.02373225,-0.0067510465,-0.020160269,0.0028808038,0.009394313,0.028032918,0.036719978,0.010101566,-0.006436712,-0.03497685,0.0029450995,-0.0006291154,0.0482932,-0.020646058,0.0072154044,0.015173781,0.024532374,-0.018917218,0.004279235,-0.0035344765,0.039520413,-0.0077797775,0.030318987,-0.025889728,-0.029247392,-0.037920166,0.04092063,0.057380322,0.018917218,-0.010980274,0.0065724473,-0.034119576,0.035405487,-0.015245221,-0.007958377,-0.031633474,0.039434686,0.04423543,-0.029233104,0.013180614,-0.02268923,-0.008086968,-0.0015002326,-0.01173039,0.035062578,-0.0013296704,0.030261833,-0.015216645,-0.018960083,-0.010787386,0.017502714,0.0241466,-0.02974747,-0.016102497,0.009915823,-0.005015063,0.031290565,0.0049436237,0.036177035,-0.007218976,-0.020260284,-0.0033844532,-0.012801984,-0.0085441815,0.01490231,0.012066157,-0.0008867446,-0.0021396175,0.010973129,-0.02566112,0.01931728,0.0150166135,0.03760583,0.0089371,0.036577098,-0.007815497,-0.0053544017,0.030690473,0.017702743,0.0062188213,0.0022824968,-0.014659415,0.017774183,0.01966019,-0.005186518,0.01877434,-0.0056080124,-0.0012734117,-0.013180614,0.0011733962,0.014195058,-0.011523215,0.010594499,0.006668891,-0.021360455,0.018188534,0.014495105,0.009380026,0.007929801,0.014788006,0.007515451,0.017359834,-0.018174246,0.003861313,0.017559865,-0.01362354,0.04292094,-0.010201582,0.021731941,0.015788162,0.017331257,-0.018102806,0.00037193266,0.051007908,-0.0021717653,-0.024089448,-0.044321157,0.012601954,0.0030504728,0.053236824,-0.012894856,-0.0047435923,0.01293772,-0.040120505,-0.04975057,-0.022532064,0.0008653127,-0.015430964,0.025603969,-0.043749638,-0.033062268,-0.03414815,0.005061499,0.018917218,0.00049784506,-0.0054829926,0.00879422,0.04940766,-0.02470383,0.015116629,0.008101256,0.017302683,0.010194438,0.031833507,0.0039256085,0.005815187,-0.0077726333,-0.018131383,0.015816737,-0.005507997,0.019031521,0.034605365,-0.0069225016,-0.008101256,-0.008801364,0.031033382,-0.024232328,-0.006858206,0.017759897,0.0009269294,-0.004293523,0.02263208,0.0033880253,0.0009840812,-0.011066001,0.0026897027,0.033890966,-0.007068953,0.0021396175,-0.007994097,-0.014845159,0.013394933,-0.010515916,-0.005029351,0.015330948,-0.023489356,-0.0076440424,-0.013166327,0.019202977,0.003434461,0.001818139,0.02373225,-0.0055722925,-0.005061499,0.017288394,-0.0012957365,0.086356245,-0.0016850827,0.005697312,0.027104203,0.022989279,0.012409067,-0.0013573533,0.0134449415,-0.015488115,0.049521964,0.011787541,0.0053615454,0.012851993,-0.014302217,0.0047543086,0.021117559,-0.013652116,0.0038220212,0.017274106,0.030061804,-0.0051293666,0.0049400516,0.011658951,-0.009715792,0.037291497,-0.023717962,-0.042949516,-0.021874819,0.0507793,0.005204378,-0.01014443,0.04272091,0.018088518,-0.014616552,-0.033433754,-0.008258423,0.03146202,-0.0043292427,0.012387634,0.015588131,-0.019202977,-0.0078369295,0.009687216,0.015488115,-0.017774183,0.004640005,-0.00080548204,-0.0016368609,0.004447118,-0.028318675,-0.025403937,-0.0115375025,0.003968472,-0.023975145,0.0071439645,-0.03994905,0.00410778,-0.0023378625,-0.0034826829,-0.008922812,-0.03780586,0.03286224,0.004411398,-0.0034773247,0.021188999,0.04752165,0.023203596,0.006008074,-0.019674478,0.028275812,-0.030547593,0.009822952,-0.022517776,0.017288394,0.008651341,-0.009844383,0.026104046,-0.014323649,-0.028132932,-0.022989279,0.049436234,-0.0040470557,-0.003236216,0.031890657,-0.007254696,0.013094887,0.0016547207,-0.018531444,0.015745299,-0.016602574,0.029890347,0.009901535,-0.005065071,0.02380369,-0.007529739,-0.015845314,0.038063042,0.04003478,-0.014816582,-0.027004186,-0.005247242,0.0120232925,0.0038720288,0.0019806642,-0.014337937,-0.016959772,0.0010974916,0.0059294906,-0.008286999,0.0061402377,-0.0015939971,-0.02021742,0.010458765,0.002823652,0.010101566,-0.036319915,-0.006490292,-0.0041506435,0.02594688,-0.031033382,0.0061473814,0.015816737,-0.0052293823,0.0050222073,-0.010630219,0.022517776,0.03374809,0.014366513,0.02960459,0.06909642,-0.030719047,-0.030719047,-0.019674478,0.015959617,0.020517467,0.00090013957,0.019160112,-0.040549144,0.0065974514,-0.00814412,0.006693895,-0.024089448,-0.015745299,0.011580367,-0.007322564,0.0408349,0.0010305169,-0.0291188,-0.049350508,0.0033648072,-0.033633787,-0.01252337,-0.025175331,-0.018202823,0.01675974,-0.0073511396,-0.0035130447,0.021131847,-0.020503178,0.005215094,-0.001402896,0.002798648,0.004615001,-0.023860842,-0.011887557,-0.001403789,-0.017016923,-0.027189929,-0.0020931817,-0.012301907,-0.032805085,-0.012952008,-0.014387945,-0.004007764,0.013530669,-0.014609408,0.0076083224,0.019417295,-0.016859757,-0.015030902,-0.019131538,-0.030404713,0.018545732,-0.006243825,0.023275036,0.019288704,-0.025546817,-0.033690937,-0.012980584,-0.002437878,0.013902155,-0.029033072,-0.024346631,-0.017402697,-0.0030165392,0.0071582524,-0.025475377,0.007894081,0.033548057,-0.031290565,-0.022103427,-0.009872959,0.05443701,-0.017345546,0.016616862,-0.009487185,-0.005665164,-0.0009983691,0.006383132,-0.01910296,0.0020824657,0.026218351,0.009058547,-0.013537813,-0.028861618,0.0039220364,-0.0038791727,-0.001614536,-0.037091464,0.012416211,-0.0011644663,-0.014059322,0.0076011783,-0.0077654896,-0.021631924,-0.0070082294,-0.007394003,0.011187448,-0.013402077,-0.021560485,-0.009408602,0.032947965,-0.0015395244,-0.023960857,0.0039291806,-0.0076440424,-0.015716722,0.0162168,-0.026146911,0.017974215,-0.010630219,0.016731165,0.000716629,-0.019545887,-0.016731165,-0.016645437,0.019202977,-0.004807888,-0.018045655,0.033290874,0.029247392,0.008615621,0.013759276,0.0008760287,0.024532374,-0.019060098,-0.012001861,-0.026004031,0.016116785,0.028875904,-0.036862858,-0.016231088,0.029347407,-0.019302992,-0.0017225884,0.0008264674,0.031747777,-0.0020860378,0.019560175,-0.017545577,0.013859292,-0.013537813,-0.01725982,0.040520567,0.0057258876,-0.024060873,0.037662983,0.02180338,0.024075162,-0.03517688,-0.0052829618,0.022174867,0.022517776,-0.005890199,0.015088053,0.04600713,-0.009508617,0.032262143,0.024175176,-0.014759431,-0.031976387,-0.007154681,-0.035376914,-0.02048889,0.032262143,0.023003565,0.020431738,0.000025771295,-0.00928001,-0.03263363,-0.00051391893,-0.010387325,0.026675563,-0.00094300334,-0.010508772,0.033890966,-0.010930266,0.00845131,-0.017888488,-0.0022717807,0.022132002,0.0139664505,-0.039491836,0.041635025,0.0094443215,-0.0021217575,0.0058794827,0.019617327,0.020931816,-0.018760052,0.003209426,0.008408447,0.0045399894,0.013937875,0.036319915,-0.0015234505,-0.01410933,0.00018272921,0.0049436237,0.016245376,-0.005804471,0.035862703,0.006933218,-0.020403164,0.034205303,0.0069832252,0.00032906886,-0.0047793123,-0.0041149235,-0.016845468,0.0027147066,0.010223013,-0.015530979,-0.00410778,0.019588752,0.025203908,-0.008101256,0.010087278,0.012580521,-0.03351948,-0.0041863634,0.01780276,-0.01376642,0.0024610958,0.024303768,0.029175952,0.02463239,-0.03097623,0.014466529,-0.03029041,0.025775425,-0.016373968,0.013080599,-0.0020824657,0.035434064,0.0024575237,0.0069903694,0.0112017365,-0.0187029,0.031176262,-0.028232949,0.03589128,0.0033112275,-0.012537658,0.00020527736,0.019374432,0.00443283,-0.009487185,0.0059759263,0.017302683,0.042177968,-0.0018395709,0.0035684104,-0.00096264924,0.005236526,-0.02048889,-0.033348028,-0.002232489,0.015188069]},{"id":"interface-RateLimitErrorBody","type":"interface","source":"main","text":"Interface: RateLimitErrorBody\nProperties: code: \"RATE_LIMITED\", global: boolean, retry_after: number","meta":{"url":"/docs/typedefs/RateLimitErrorBody"},"embedding":[0.015156114,0.022059748,-0.007829432,0.01948468,-0.0258733,0.03418709,-0.018282982,-0.0025275517,0.022415353,-0.01375822,0.02196165,0.011029874,-0.04220659,-0.0033813093,0.008319922,-0.028595515,-0.011912754,0.022488926,0.010496467,0.067295104,0.0066522583,-0.024818748,0.043163043,0.01337809,0.01348845,-0.008975951,0.026118545,-0.004877301,0.010306402,-0.025897825,0.06523505,-0.03109701,-0.0034150304,0.0077926456,-0.010631352,-0.00075029506,0.014898607,0.027859781,-0.0025474778,-0.047405772,-0.017265217,-0.043751627,-0.00079474563,-0.006897503,-0.103689395,0.01117702,0.0023420856,-0.0064376695,-0.009196671,0.018748946,-0.022820005,0.014690149,-0.004938612,0.024303736,0.031023435,0.019913858,-0.030851765,0.07784062,0.025358288,0.0043255007,0.030998912,0.0099753225,-0.051501356,-0.0023834705,-0.063175,0.02862004,-0.019398844,0.0010775432,0.012973437,0.042574454,0.007228583,0.02906148,0.05002989,0.0018592603,0.0049324813,0.019227173,0.021728668,0.039484374,0.048313178,-0.010410631,-0.036026426,0.0082340855,-0.07018899,-0.010496467,-0.01822167,-0.008632609,-0.07479959,-0.023384068,-0.014383594,-0.020061005,-0.008761362,-0.0073512057,-0.04205944,0.029331248,-0.00043645868,-0.06273356,-0.004773072,-0.0046872366,0.0116184605,0.02109103,0.06920801,-0.01045968,-0.007878481,0.007860088,0.0011595469,-0.014126087,-0.032789197,-0.0026593707,-0.028570991,-0.04304042,-0.0134148775,0.019043239,-0.053806655,0.009858831,0.011109578,-0.04002391,0.0012630095,0.023261447,0.03548689,0.018282982,-0.015769225,-0.04480618,0.01755951,-0.019778972,0.010735581,-0.016639844,0.012292883,0.016578533,-0.013623335,0.044659033,0.063125946,0.026265692,-0.009497096,-0.008277004,-0.0014017259,0.0076332367,-0.015340047,0.008135988,-0.009527751,0.0019190386,-0.005855214,0.042353734,0.06126209,0.044021398,0.009638111,0.004396009,0.004276452,0.008160513,0.017302003,0.033279687,-0.023187872,0.018123573,-0.05047133,0.0084915925,-0.02202296,-0.027663587,0.021777717,0.044683557,-0.062978804,-0.02906148,-0.035069972,-0.02334728,0.014763722,-0.027639061,-0.022930365,0.01948468,-0.0031452614,-0.046081454,-0.069698505,-0.030214129,0.052531384,0.0023942,-0.037399795,-0.03573213,0.029306725,-0.028497417,0.02399718,-0.031734645,0.01926396,0.024266949,0.00509189,0.04188777,-0.000023590419,0.000112850816,-0.035683084,-0.027859781,-0.025628056,0.01486182,0.0117717385,-0.05228614,-0.017314266,0.000541454,-0.0028172468,-0.003914716,-0.016308762,-0.02773716,0.0005058169,-0.018589538,-0.004966202,0.02229273,0.0053493967,-0.019018715,0.061997823,-0.0021842094,-0.010465811,-0.0009388268,-0.015940895,-0.03622262,-0.02746739,0.01822167,0.07411291,0.033819225,0.0072347145,-0.022378566,-0.00047899326,-0.006830061,0.039116506,0.011452921,0.024745176,0.008326053,-0.05096182,-0.00792753,-0.005901197,-0.022513451,0.030263178,0.010545515,-0.0019205714,0.04887724,-0.0095768,0.009490964,-0.003804356,-0.0004058031,0.012317408,-0.030263178,0.036345243,-0.009681029,0.0054444293,-0.0016262779,0.0007533606,-0.021949388,-0.012556521,0.01205377,0.0075596636,0.030802716,0.023580264,-0.012912126,0.014077038,0.026290216,-0.022709645,0.013696908,0.023200136,-0.013292255,0.014616575,-0.044217594,0.015168375,-0.017584035,0.03153845,0.017485937,-0.0007027789,-0.03325516,0.013353566,-0.020674115,-0.01773118,0.0088471975,0.0011426863,-0.043849725,0.064695515,-0.009386735,0.021728668,-0.016848302,-0.0020922427,-0.019398844,0.07710489,-0.032298706,0.00013622569,0.006946552,0.06440122,0.009766865,-0.03835625,0.011091185,-0.016737942,-0.003467145,0.0015580693,0.0037675695,0.004613663,-0.0056069037,0.013292255,0.0348002,0.053463314,0.019202648,0.000024069412,-0.003902454,0.031072484,-0.049465828,0.0021826765,0.015156114,-0.003942306,-0.021189129,0.0337947,-0.025824253,0.056062907,-0.026510937,0.0112567255,-0.08647323,-0.022427615,0.044021398,0.038650542,0.026461888,0.03860149,0.012366457,-0.0017611624,0.010913382,-0.052089944,-0.0022317255,-0.00881041,-0.021507947,0.08353029,-0.038650542,0.0033445226,0.0020156037,0.022770956,-0.02521114,0.02729572,0.009276375,-0.0099753225,-0.040097486,0.007332812,0.0013971275,0.022268206,0.025946874,-0.029404823,-0.04242731,0.014077038,0.00990788,0.0027436735,0.0013028617,-0.032764673,0.020551493,0.009834306,0.06342024,0.059103936,-0.017351052,-0.021458898,0.042083964,0.036786683,-0.008074677,0.00058513816,-0.024487669,0.045026902,-0.0033475882,-0.023911344,0.0009986052,-0.034162566,-0.0035683082,-0.020796739,0.03197989,0.04228016,-0.019055502,-0.021655094,0.047405772,-0.062341165,0.037988383,-0.00033644488,-0.008307659,-0.029576493,0.0018577275,-0.019129075,-0.058221057,0.010539385,-0.0154136205,0.01579375,0.0134148775,-0.027222145,-0.031906318,0.016468171,0.017878328,-0.05763247,0.033549454,0.00021918732,0.011373216,0.052188043,0.03502092,-0.00016975522,0.011974066,0.049441304,0.04232921,-0.014493953,0.008307659,-0.052874725,-0.03688478,0.05130516,0.013341304,-0.03688478,-0.042598978,0.043236613,0.0012599439,0.03153845,0.014371331,0.03296087,-0.010520991,0.033426832,-0.015732437,-0.016063519,0.031513926,0.008074677,-0.0023052988,0.018736685,0.015560767,0.048484847,-0.04958845,0.022280468,-0.045443814,0.0064744563,0.0069281585,0.058319155,-0.0057387226,0.047405772,-0.022108797,-0.02185129,0.021324014,-0.006676783,0.007958186,-0.027957879,0.0104412865,0.0002862464,0.0048864977,0.003473276,-0.021826765,-0.034653056,-0.084756516,0.022611547,0.019337533,0.02790883,0.010435156,0.034922823,0.05498383,0.014395855,-0.03791481,0.007958186,-0.021765454,0.008240217,0.012286752,0.024242423,0.020281725,0.011808526,0.016002208,0.0032433593,-0.014898607,0.041299183,0.0012752716,-0.05719103,0.006774881,-0.03494735,0.03747337,-0.05145231,-0.016676629,0.00996306,0.010545515,-0.016639844,-0.035707608,-0.003957634,0.002644043,-0.0020186692,-0.025333762,0.039288178,-0.00070929324,0.023089774,-0.002262381,-0.0028586318,0.00080930704,-0.039288178,0.021360802,0.0462286,-0.009386735,0.0109011205,0.00968716,0.0073389434,-0.008252479,0.045174047,-0.008240217,-0.034922823,-0.014506215,0.011642985,-0.025063993,0.030287702,0.08127405,0.032936342,-0.019043239,-0.03264205,0.027786208,0.0010714121,0.002762067,0.028105026,-0.012764979,-0.028595515,0.004110912,-0.034653056,-0.02839932,0.01656627,-0.008074677,-0.0015833601,-0.069257066,-0.0002919943,0.0076332367,0.0007207891,0.019729925,0.008509986,-0.085197955,-0.064695515,-0.025529958,-0.03237228,0.0052145123,-0.0024233228,-0.0069894698,-0.07926304,-0.010067289,-0.02521114,0.034285188,-0.01271593,0.025309239,0.019864809,-0.007909137,-0.029674591,0.017878328,0.015891846,0.0061556385,-0.0030686224,0.013991202,0.01364786,-0.0063640964,0.017853804,-0.04635122,-0.00517466,0.0104045,-0.015487194,-0.0064254072,0.000868319,-0.006885241,-0.015266473,-0.07367147,0.012985699,-0.011183152,-0.0038717985,0.035364266,-0.026682608,0.014334545,-0.0005418372,0.012912126,0.02461029,0.024095278,-0.012041507,-0.043604482,0.024843274,-0.025529958,0.02240309,0.0093009,0.026707131,-0.017216168,-0.04029368,0.012617832,0.009123097,-0.022452138,0.051108964,-0.016370075,-0.01716712,0.0019328337,0.0058429516,-0.010373845,0.0034886037,0.010367714,0.0070814365,0.04166705,-0.016088042,0.053708557,0.01678699,0.009613587,0.0017427691,-0.035658557,0.040048435,-0.0017596297,0.0011020678,-0.03573213,0.0020569887,0.07337717,-0.04586073,0.015536242,-0.0067626187,0.03494735,-0.006498981,0.025051732,0.013292255,0.03215156,0.024475407,0.0027022883,-0.026682608,0.0010637483,0.010662007,0.020809,-0.0011587805,0.020195888,0.026094021,-0.036909305,-0.020232676,0.00492635,0.008277004,0.04971107,0.0009541546,0.02653546,-0.00095875293,-0.028767187,-0.0063640964,0.021397587,-0.032053463,-0.06837418,0.0039944206,-0.032593,-0.028595515,-0.020011956,-0.008632609,0.0005127144,-0.011238332,0.0077068103,-0.006164835,-0.0025628055,-0.047234103,0.004917153,-0.04586073,-0.052433286,-0.008454806,-0.02085805,0.04078417,-0.0046535153,-0.017571772,0.0015565365,-0.009116966,0.029674591,-0.017351052,0.02289358,-0.03467758,-0.02063733,0.006339572,-0.008939164,0.04321209,-0.02680523,0.03411352,-0.031636547,-0.013120583,-0.026780706,-0.017743444,0.040489875,-0.008191168,-0.016995447,-0.017964164,0.018013213,0.014273233,-0.0025965266,-0.043874253,0.013034748,-0.004708695,-0.005695805,-0.0010361583,0.03274015,-0.012446161,0.021875814,-0.037301697,0.021642832,0.003963765,-0.0037399794,-0.030508423,0.016443647,0.047700066,0.031146059,-0.002567404,-0.0025275517,-0.032519426,0.0056774113,-0.0100795515,-0.04205944,-0.03617357,-0.025162091,-0.019950645,-0.008105333,-0.05091277,-0.04564001,0.012985699,-0.02636379,0.017633084,-0.00017722751,0.004472648,0.0071795345,-0.007817171,0.01585506,0.020833526,-0.007369599,0.0006843856,-0.014923131,-0.025407337,0.010668138,0.038895786,-0.017093545,0.022304993,-0.0047975965,0.0097729955,0.011416134,-0.026388314,0.02923315,0.008926902,0.046253122,0.022587024,0.02074769,0.0044113365,0.027197622,-0.033328734,0.011324167,-0.03671311,0.036639538,0.0064008827,0.022145584,0.018859306,0.0075474014,0.014763722,0.022599285,-0.034481384,0.010110207,-0.002435585,0.055621464,0.034285188,0.05307092,-0.03136678,-0.033058967,0.050667524,0.01568339,-0.01987707,0.015217424,-0.011029874,0.009858831,-0.0101286005,0.022084272,-0.01727748,0.0069097653,-0.0006633099,0.018908355,0.004046535,-0.011980196,0.013831793,0.008595821,-0.020784477,-0.0111034475,0.002900017,-0.014444904,-0.013537499,0.008056284,-0.02950292,0.036149047,0.02641284,-0.035634033,0.0073941234,0.0075657945,-0.06803084,-0.030753667,-0.040538926,0.020330774,-0.02565258,-0.0024478473,0.0015741634,-0.009251851,-0.027933355,-0.012145736,0.027320243,0.034726627,-0.004613663,0.008712313,-0.004586073,0.02345764,0.031391304,-0.022746433,-0.03526617,0.007811039,-0.029748164,0.007087568,0.037080977,0.008424151,0.0015818274,-0.0015710979,-0.0029766557,-0.02213332,0.0064376695,0.000023039576,-0.009049524,0.005931853,-0.00035771218,0.012863077,0.037448842,-0.05547432,0.02548091,0.013709171,0.0004636655,-0.06695177,0.009895618,0.038724117,0.025677105,-0.008792018,-0.026339265,-0.014003464,0.014150611,-0.0077742524,-0.0063640964,0.028154075,0.019913858,-0.0075841877,-0.038429823,0.031072484,-0.010429025,0.017792493,-0.0058889347,0.042746127,0.011422265,0.012292883,0.028742662,-0.015695652,0.055621464,0.00660321,0.027540963,-0.02163057,0.022341779,0.026609033,0.0035468494,0.053218067,-0.025309239,-0.003292408,0.014726936,0.039214604,-0.022268206,-0.018307505,-0.03494735,-0.05316902,-0.02565258,-0.017866066,-0.022574762,0.059643477,0.047479346,-0.042133015,0.009527751,0.00043875782,0.013525237,-0.022378566,-0.01271593,-0.043064944,-0.0061525726,0.02174093,-0.027835257,-0.01227449,0.047086954,0.0044205333,0.03303444,-0.04662099,-0.06420503,0.0123358015,0.032568477,-0.026069496,-0.033108015,0.036909305,-0.0035376528,-0.00040656948,-0.019092288,-0.013512975,0.020661853,-0.021213654,0.031415828,0.0014553731,0.029110529,-0.00075834215,0.0197054,0.024132064,0.0034886037,0.044953328,-0.014726936,0.029453872,-0.016934136,0.0269769,-0.025726154,0.01678699,-0.002719149,-0.011428396,0.026118545,0.0065909475,0.00820343,-0.0034518172,0.047185052,-0.008792018,0.01716712,0.023408594,0.025554482,0.02109103,-0.0073512057,-0.0057601817,0.019962907,-0.012501341,-0.0069649452,0.01607578,0.023249185,-0.015045754,-0.0008468601,-0.0029015497,0.06091875,0.023384068,0.031195108,-0.042255636,0.049612973,0.0071366164,0.025971398,0.026609033,0.007645499,0.053267118,-0.06091875,0.01959504,0.008123726,0.0009740807,-0.00088517956,-0.02333502,0.0025474778,-0.00863874,0.025946874,0.021986173,-0.023077512,0.015205163,0.0026057234,-0.0084915925,0.0019634892,0.0057387226,0.025162091,0.032347757,-0.028693613,-0.0039177816,0.001992612,-0.013684646,-0.0034518172,0.019864809,0.014677887,0.0056406246,-0.04667004,0.025505433,-0.0032219004,-0.020710902,-0.0011580142,0.005459757,0.003979093,0.038871262,-0.042893272,-0.020600542,-0.017596297,-0.023261447,0.04139728,-0.011262856,0.026559986,-0.03180822,0.015499456,0.020244937,0.081323095,0.050103463,-0.030459374,-0.012102819,-0.059790622,-0.05547432,0.016112568,0.043751627,0.00583682,-0.0015894913,-0.0131573705,0.026241167,-0.030017933,-0.015340047,0.043678056,0.010478074,-0.001965022,0.004227403,-0.016382337,0.045370243,-0.035143543,-0.03188179,-0.0035928327,0.032323234,0.008044021,-0.019901596,0.008509986,-0.01948468,0.019644089,-0.012243834,0.04095584,0.06126209,0.008608084,0.004144633,-0.040980365,-0.0044573196,0.033451356,0.008301528,-0.038160052,-0.0012231572,-0.014126087,-0.029208627,-0.001971153,-0.005729526,-0.00996306,-0.0053187413,-0.027222145,0.00006547838,0.011373216,-0.038944837,0.025456386,-0.03869959,-0.018699897,0.0090004755,0.019999694,0.00026038074,-0.015891846,-0.010196042,-0.010778498,0.021066507,0.008074677,0.049392253,0.06690271,0.0146411,0.014506215,0.005913459,-0.0042948453,0.00886559,0.014408117,0.032127038,-0.008724575,-0.019411106,-0.03661501,0.010649744,0.025456386,0.0057325913,0.014812771,0.042672552,-0.008185037,0.002075382,-0.013476188,0.0065970784,-0.032789197,0.024867797,-0.019582778,-0.0021826765,0.0054628225,-0.019362058,-0.003411965,0.009644242,0.009920143,0.021311752,0.047086954,0.013402615,-0.037890285,0.003880995,-0.0042090095,0.0023267576,0.035707608,0.02047792,0.03632072,-0.013010223,0.0016875891,-0.00085758953,-0.0025995923,0.0006920495,0.033279687,0.026020447,-0.016885087,0.025628056,-0.024352785,0.01733879,0.013562024,-0.020612804,0.01018378,0.016222928,-0.008393495,-0.009717816,-0.025971398,-0.031783693,-0.015989944,-0.0017013841,-0.03516807,0.055081926,-0.040857743,0.02152021,-0.041765146,0.020759951,0.044879753,0.012752716,0.019950645,-0.028423844,0.0041691572,0.043972347,-0.004205944,0.002132095,0.011593936,-0.011692034,0.014653362,-0.0337947,-0.0015910241,-0.03455496,-0.013623335,-0.029208627,0.020686379,-0.015597554,0.0030870158,0.0064008827,0.00082770037,-0.0348983,-0.009607456,0.02680523,-0.019729925,-0.0018010146,0.036590487,0.022611547,0.0046657776,-0.042672552,0.020330774,-0.0019696204,0.0025704694,-0.0035897673,-0.025579007,-0.013831793,0.04365353,-0.00087215094,0.009564538,-0.0062966538,0.028105026,-0.012568783,-0.021324014,-0.0013082264,0.03193084,-0.013991202,0.019435631,-0.030140556,0.0033997027,-0.0153645715,-0.039116506,0.004396009,0.021385325,0.006725832,-0.006456063,0.006744225,0.0109501695,-0.0019052436,0.03644334,-0.037448842,-0.028055977,0.051697552,-0.015474931,-0.017915115,0.027540963,-0.020735428,0.011974066,0.006983339,0.015070278,0.01827072,-0.016701154,0.011170889,-0.008853328,0.008123726,-0.009650373,0.020784477,0.03386827,0.007087568,0.016970923,0.01271593,-0.0014162873,0.021164605,-0.014788247,0.04348186,-0.0071795345,-0.0073082875,-0.014175136,0.015340047,0.017804755,-0.0054720193,0.027614538,-0.018466914,0.033328734,0.0025689367,0.028423844,-0.02768811,0.022010699,0.02218237,0.003188179,0.023531215,0.015241949,-0.03153845,0.0048190556,-0.018405603,0.01937432,-0.017964164,-0.015928634,-0.01497218,-0.009754602,-0.0028463695,0.025284713,0.0045002378,-0.014138348,-0.014493953,-0.00057402556,-0.00748609,0.026731657,-0.0003343373,0.033426832,-0.009589062,0.014604313,0.00004207956,0.022268206,-0.029355774,0.02289358,0.023138823,0.06160543,0.009221195,-0.00465045,0.0055026747,-0.0023374872,-0.010637483,-0.028644564,-0.014322282,0.0094664395,-0.006689045,0.002608789,-0.009116966,-0.017718919,-0.03153845,0.015474931,-0.009172146,0.02653546,0.020232676,0.009981453,-0.027173096,0.03440781,-0.021765454,-0.000057191795,-0.022317255,-0.009435784,-0.009920143,-0.004150764,0.040808693,0.0024785027,0.01232967,-0.0056559527,0.015119327,0.00974234,-0.03764504,-0.018000951,-0.016480435,-0.0102328295,-0.0053739212,0.007847826,0.0029567296,-0.0012714397,0.005714198,-0.039042935,-0.027614538,-0.020011956,-0.005324872,-0.0051654633,0.009221195,-0.010386107,0.01282629,-0.0033721125,0.012072164,-0.037792187,0.00509189,0.009748471,0.004337763,-0.011483576,0.00015797198,-0.016026732,-0.02543186,0.01744915,0.020330774,0.03109701,-0.0040373383,0.008264742,0.008019497,0.016333288,0.013218681,-0.032519426,-0.0002425622,0.013954415,0.017927377,-0.03860149,-0.0021872749,-0.008749099,0.048141506,-0.020330774,0.006063672,-0.002102972,-0.027491914,-0.0019742188,-0.0017611624,-0.010275747,0.015622078,-0.039091982,-0.049956314,0.030729143,-0.008773624,-0.0049232845,0.022574762,-0.024708388,-0.023433117,0.0034886037,-0.0122315725,0.011452921,-0.0022026026,-0.0056069037,0.004537024,0.02306525,0.025333762,-0.020220414,-0.022537975,0.028301222,0.011937278,0.03791481,-0.021164605,-0.004785334,-0.025799727,0.008436413,0.050054412,-0.023825508,-0.0043622875,0.01662758,0.000384919,0.039876763,-0.046155024,-0.0042120754,-0.0050734966,0.015033491,0.0053769867,-0.012973437,0.0062568015,0.0016661301,0.0040925187,-0.021017458,-0.002386536,0.0055578547,0.018466914,-0.0086448705,-0.015781486,-0.02339633,0.021949388,0.022550236,0.0023022334,0.019644089,-0.0018240063,0.017191643,0.0035468494,-0.00015864256,0.0075657945,0.012121212,-0.03914103,0.015315522,0.021005196,-0.038993884,-0.02619212,0.0009464907,0.0011495838,-0.00092273264,0.020612804,-0.03303444,0.00016525268,-0.009895618,-0.0045125,-0.01194341,0.003997486,0.041568954,-0.027173096,-0.03153845,0.010827547,0.0051102834,0.017804755,-0.013880841,-0.014604313,0.016443647,0.004671909,0.035928328,-0.02866909,-0.0039361753,0.05895679,-0.031832743,-0.027565489,0.042133015,-0.011422265,-0.012642357,0.018184884,0.009472571,-0.017694395,-0.05817201,0.02790883,0.00069166627,0.025726154,-0.0040710596,-0.03688478,0.027271194,-0.007578057,0.0022332582,0.018172622,-0.009938535,-0.00586441,-0.006897503,0.0011595469,-0.033353258,-0.014898607,0.0057877717,0.025848776,-0.009208933,0.012072164,-0.00654803,0.0037675695,0.014910869,0.020392084,-0.017387839,0.03835625,-0.01244003,-0.030312227,0.010815285,-0.009901749,-0.0031605891,-0.00682393,-0.028472893,0.028203124,-0.04691528,0.0055670515,-0.035854753,-0.016970923,0.029601017,0.000010160645,-0.007700679,-0.0112567255,-0.0010070355,-0.0075167455,-0.013427139,0.002415659,0.002526019,-0.014211922,-0.005140939,-0.018148096,-0.0028463695,0.059202034,-0.00048665717,-0.040587973,0.0042948453,0.012961174,0.002662436,-0.011262856,0.02768811,0.041691575,-0.002303766,-0.010245091,-0.029650066,-0.03224966,-0.0037123894,-0.015806012,0.018932879,0.016026732,-0.00086525345,-0.022010699,0.014923131,-0.01849144,0.015156114,-0.007896875,0.0060238196,0.019104552,-0.00036480126,-0.0009311629,-0.011777869,-0.013169632,-0.009644242,0.05444429,0.015646603,-0.0029705246,0.0112076765,0.032127038,0.015021229,-0.0020585214,-0.009239589,0.017105808,-0.019411106,0.010410631,0.01998743,-0.0064376695,-0.0039055196,0.00231143,0.010159256,-0.012360326,-0.024193374,-0.009533882,-0.016357811,0.017878328,0.020110054,-0.003396637,-0.012501341,0.0269769,-0.022415353,0.0026409773,0.04691528,0.005723395,0.006517374,0.0151070645,0.018577276,0.020281725,0.028889809,0.053119972,0.0027130179,0.014812771,-0.0075474014,-0.00039315768,-0.0048834323,0.00454009,0.029355774,0.025002683,0.00095032266,-0.017485937,0.030361276,0.0049631367,0.0029153447,-0.060526356,0.019300746,-0.015658865,0.0041354364,-0.0057448535,-0.028448367,-0.003258687,-0.015658865,0.027933355,-0.013083797,0.011262856,-0.023138823,0.0028111157,0.0107478425,-0.021127818,0.010024372,0.029650066]},{"id":"interface-RateLimitState","type":"interface","source":"main","text":"Interface: RateLimitState\nDescription: Tracks rate limit state per bucket (route hash).\nDelays requests when limit is exceeded.\nProperties: limit: number, remaining: number, resetAt: number","meta":{"url":"/docs/typedefs/RateLimitState"},"embedding":[0.0015977342,-0.011241345,0.019607896,0.0019417747,-0.044630203,-0.013084822,-0.02763927,0.045713086,0.017016714,0.014245053,0.022843651,-0.0053177234,-0.021000173,0.008740404,0.031248877,-0.015095889,-0.016320577,0.06693241,-0.009423651,0.051307973,0.005839827,-0.017377675,0.035322573,0.006703554,0.0011698991,0.013117051,0.023333525,-0.018164054,0.0021206436,-0.04174252,0.031661402,-0.021657636,0.0108223725,0.01830586,0.015856484,-0.004724717,0.019633679,0.074100055,-0.014966974,0.014683362,-0.006967829,-0.0016339914,0.010899722,0.026556388,-0.07404849,0.026865784,-0.006922709,0.00826342,-0.05223616,0.037385207,0.0082183,0.025808685,-0.029830817,-0.011202671,0.044913813,0.020110663,0.01875706,0.03130044,0.036224976,-0.021270894,0.015972508,-0.0077799903,-0.05056027,0.046331875,-0.020755235,0.050947014,-0.03877748,0.004969654,-0.020046206,0.034445956,-0.0049406486,0.056928646,0.034239694,-0.021799443,-0.0069356007,-0.0151990205,-0.027974447,0.031068396,0.03774617,0.03534836,-0.023565572,-0.03627654,-0.04212926,-0.02355268,0.036224976,-0.027716618,-0.042876966,-0.047930412,-0.0037224065,-0.029263593,0.008256974,-0.014477099,-0.03207393,0.017493699,-0.0017774088,-0.072759345,0.04228396,0.022237752,-0.043392625,0.005485312,0.04383093,-0.049348474,-0.028361192,-0.020922825,0.021374024,0.015263477,-0.027484573,0.053267475,-0.00095880165,-0.008521249,-0.0032889314,-0.018898867,-0.03867435,-0.006948492,0.007921796,-0.026891567,-0.013104159,0.026208319,0.02745879,-0.0057238042,-0.04024711,-0.004740831,-0.001031316,-0.01741635,-0.0106612295,-0.022637388,0.038622785,-0.018460557,-0.013922767,0.01022292,0.04184565,-0.008966004,0.00022036323,-0.028954199,-0.0010071446,-0.033363074,0.008282757,0.0091271475,0.0017629059,-0.022676062,0.01830586,0.00018974605,0.063322805,0.056567684,0.0084825745,0.03766882,-0.044810683,0.020458732,0.038545437,-0.008205408,0.00883709,0.010229366,-0.05605203,-0.016423708,-0.019878617,-0.04426924,-0.00337756,0.049761,-0.020742344,-0.013316869,-0.013445783,-0.025666878,0.033027895,-0.036560155,0.019801268,0.014373967,0.02239245,0.004689265,-0.047595236,-0.032409105,0.053370606,0.017467916,-0.009397867,-0.027149396,0.042954315,-0.020548973,-0.058888145,0.026092296,0.012556273,0.004879414,0.05667082,-0.014618905,-0.029392507,-0.0016629972,-0.00254445,0.009597685,-0.012105072,0.031248877,0.01280121,-0.034961615,-0.013001028,0.046074044,-0.0131815085,-0.012556273,-0.012910788,-0.038854834,0.021167763,0.022147512,0.010461412,-0.0028860734,-0.029805034,-0.009004679,0.051514238,0.0046248077,0.0042864075,0.005984856,0.03313103,0.0027007589,-0.02311437,0.018073814,0.018344535,0.082299024,0.026002057,0.00431219,-0.008140951,-0.00415427,-0.046306092,0.010261594,-0.0012391907,-0.0028828506,-0.04395985,-0.018537907,-0.00037143493,0.015276369,-0.00010373589,0.03145514,-0.015547089,0.00862438,-0.01740346,-0.013896984,-0.023836292,0.013652046,0.002918302,-0.04782728,-0.012259769,0.037359424,-0.043573104,-0.012627176,0.020652104,-0.06425099,-0.024596889,-0.012208204,-0.02319172,0.017081171,0.003980235,-0.017790202,-0.044372372,0.06425099,-0.026711086,0.010809481,0.023243286,-0.013155726,0.017687071,-0.03596715,0.014103247,-0.0059687416,0.046074044,0.06399316,0.0057624783,-0.01124779,0.016501056,-0.057805266,-0.016810453,0.0005595695,0.007064515,0.0013914709,0.041794084,-0.0127174165,-0.026788434,-0.022469798,-0.006078319,-0.012885005,0.03766882,-0.0018031916,-0.0087855235,-0.0057560327,0.0778128,-0.028928416,-0.025653986,0.0248805,-0.029108895,-0.028283842,0.014696253,0.014477099,0.023630029,-0.017003823,0.034342825,0.03730786,0.06791216,0.03689533,-0.0042574015,0.0025637872,-0.0014986311,-0.019943073,0.009636359,0.030759001,-0.0025911815,-0.017184304,0.04321214,-0.011866581,0.07389379,0.031403575,-0.013123496,-0.03658594,-0.00937853,0.028232276,0.0597132,-0.036998462,0.010938396,-0.025267243,0.01644949,0.035915583,-0.053628433,0.018189836,-0.010809481,-0.04068542,0.0496063,0.0021415923,0.021000173,0.0089466665,0.04362467,-0.040401805,0.03686955,-0.012569165,0.017828876,-0.007064515,0.012195312,0.02213462,-0.0052629346,-0.020213794,0.019040672,0.0006002582,0.01280121,-0.0022995125,-0.022985457,-0.015547089,0.015431066,0.010474304,0.008920884,0.0856508,0.029108895,-0.013587589,-0.01111243,0.0064682853,0.040221326,0.04328949,-0.009075581,-0.024635563,0.024648454,0.0031358453,-0.004125264,0.003545149,-0.028773718,0.0070258407,0.0031793541,0.012756091,0.059403803,-0.040298674,-0.083381906,0.02923781,-0.05295808,0.017442133,-0.009088472,0.00060589815,-0.060796082,-0.0026685302,-0.054401923,-0.0639416,-0.048110895,-0.01724876,0.008907992,0.025782902,-0.0027297647,-0.021283785,0.014696253,0.031248877,0.039860364,0.028232276,0.023758944,0.044320807,0.0144126415,0.013001028,0.01412903,0.046151392,0.07667835,0.025615312,-0.0128398845,0.030887917,-0.05179785,-0.047079578,0.016604189,0.0009169044,-0.003496806,-0.013858309,0.025383266,0.015237695,0.016900692,0.040865898,0.011866581,0.016488165,-0.017377675,-0.027097829,-0.022005707,0.0049374257,0.009230278,0.014232161,-0.017287435,0.037282076,0.045352124,-0.030707436,0.025357483,-0.01244025,0.0022141067,-0.041278426,0.07636895,-0.023797618,-0.039370492,-0.013871201,-0.03774617,0.0018015802,-0.004756945,0.012865668,-0.02577001,-0.009791057,0.004898751,0.001249665,0.00671,0.0073868013,0.009649251,-0.060486685,0.048188243,0.016152987,0.06435412,0.008733958,0.02249558,0.008927329,0.044475503,-0.0060203075,0.018408991,-0.052726034,0.024777368,-0.03658594,-0.009204496,0.013033257,-0.05048292,0.015121671,0.011350922,-0.03607028,0.056206726,0.00078476703,-0.048085112,0.021490049,-0.06373533,0.055794198,-0.037282076,-0.019569222,0.03405921,0.014425533,-0.03155827,0.008134506,0.023075696,0.03671485,0.030269125,-0.017261652,0.031867664,0.040427588,0.019607896,-0.020110663,-0.02569266,0.0015332769,-0.01740346,0.0030439938,0.031764533,0.017094065,0.020677887,0.035399925,0.020136446,-0.029108895,0.03313103,-0.0010458189,-0.03331151,0.012291999,-0.040659636,-0.030243343,0.036560155,0.12128277,0.06115704,0.013523132,-0.042412873,0.00588817,-0.012208204,0.013884093,0.038957965,-0.014025899,-0.015663113,-0.01856369,-0.027716618,-0.0039866813,0.04496538,-0.029676119,0.021696312,-0.07461572,0.010809481,0.011544294,-0.0061298846,-0.0010836875,0.0062523535,-0.010467858,0.0022334438,-0.020162228,-0.015443958,0.00020868036,0.0007771128,-0.03877748,-0.043392625,-0.0066519887,-0.011789232,0.0040446925,-0.002989205,0.030423824,-0.022444015,-0.0052661574,-0.02275341,0.0013640766,-0.010094006,0.014000115,-0.014425533,-0.018512122,0.014464208,-0.023758944,0.0437278,-0.043495756,-0.0036708405,0.045893565,0.0011739277,-0.0015888712,0.022933891,-0.013129942,-0.0071418635,-0.058320925,0.0091078095,-0.019143805,0.00048101225,0.014954083,-0.030552737,-0.0073996927,0.004080144,0.02195414,0.016372142,0.01767418,-0.04942582,-0.026556388,0.023204612,-0.010164909,0.02613097,-0.018176945,0.011937483,-0.031867664,-0.01412903,-0.0055465465,0.005233929,-0.02480315,0.018331643,-0.014567339,0.017429242,0.00826342,-0.008714621,-0.012008387,-0.018202728,-0.014670471,-0.005353175,0.045816217,0.006577863,0.018318752,0.019711029,-0.0044733332,-0.03313103,-0.012852776,0.04522321,0.0075930646,-0.017029606,-0.019066455,0.005446638,0.040401805,-0.028979981,0.026633738,0.0120728435,0.01572757,-0.003545149,0.03689533,-0.046254527,0.029108895,0.027175179,0.011292911,-0.048188243,0.010016657,-0.014438425,-0.0037675265,-0.016694428,0.0039866813,0.0127174165,-0.010577436,-0.0054530837,-0.0053177234,0.0037256293,0.021567397,-0.011370259,0.015134563,-0.011492728,-0.010422738,0.0004955151,0.016668646,0.016024074,-0.072192125,0.015469741,-0.02311437,-0.013039703,0.010261594,-0.002831285,0.027587704,0.025937598,0.04444972,-0.007696196,-0.02800023,-0.04390828,0.023952315,-0.06260088,-0.045558386,-0.04274805,-0.037204728,0.0047795055,0.009604131,-0.027922882,-0.028206494,-0.0036386119,0.0022398895,-0.004582911,0.026040731,-0.004263847,-0.034084994,0.026014948,0.002428427,0.017222978,-0.021657636,0.054298792,-0.018847302,0.0009990875,0.011795677,-0.018602364,0.017687071,-0.017455025,-0.019878617,-0.007838002,-0.014373967,-0.008927329,0.011924592,-0.008856427,0.008121614,0.049632084,0.015624438,0.0109641785,0.025744228,-0.008244082,0.023256177,0.03003708,0.020020423,0.022340884,0.0023559127,-0.002241501,0.019066455,0.007889568,0.028412757,0.016462382,0.0041864985,-0.023488224,0.008450346,0.009069135,-0.012820547,-0.06399316,-0.019053563,-0.009146485,0.012362901,-0.014451317,-0.023862075,-0.016926475,-0.035322573,0.023320634,0.026079405,0.0159854,-0.022173295,0.002850622,0.018808626,0.020587647,-0.030243343,0.016552623,0.032744285,-0.00079161563,0.020755235,0.012092181,-0.031661402,-0.0026765876,-0.00652952,-0.031171529,0.027200961,0.0035354802,0.012614285,-0.004508785,0.035425708,0.013974332,0.010725687,0.021167763,-0.0046957107,-0.026363017,0.021941248,-0.033981863,0.053886265,0.0065166284,0.01954344,0.02390075,-0.0038319838,-0.0020449064,0.024480864,0.018073814,-0.009088472,0.013832526,0.041922998,0.039602537,-0.0013334594,0.004105927,-0.017106956,0.070438884,0.0077799903,-0.019272719,0.0075286073,-0.018537907,0.008927329,-0.023965206,0.005359621,-0.017339,0.012517598,-0.010957733,0.026092296,-0.010835264,-0.012923679,0.06646832,-0.026453257,-0.012111518,0.0144126415,-0.0059880787,-0.022431124,-0.022727627,0.009971537,0.0026201874,0.055226974,0.038597003,0.0038513208,0.022160403,-0.0054111863,-0.008495466,0.007715533,-0.0556395,0.056722384,-0.040298674,-0.0036740634,-0.019001998,-0.014309511,-0.044939596,-0.0026733645,0.024519539,0.034007646,-0.021618962,-0.007928242,-0.019504765,-0.00048181796,0.056412987,0.0034710232,0.012053506,-0.018718386,-0.041381557,-0.0028216164,0.03599293,-0.0070709605,-0.008888655,-0.042412873,0.010609664,0.019143805,0.0084825745,-0.021180654,0.0036998463,0.0046409224,-0.030269125,0.00026790047,0.014567339,-0.044011414,0.0074254754,-0.0047343853,0.036044497,-0.047492106,0.0061073247,0.011660317,0.004879414,0.021528723,-0.045248993,0.009256061,0.017016714,-0.013381326,-0.020664996,0.030552737,0.011621643,-0.022985457,-0.033259943,0.036018714,-0.004814957,-0.0021915466,0.019698137,0.029005764,-0.006197565,0.01652684,0.00424451,0.0072385496,0.03581245,0.022933891,0.040762767,-0.02613097,-0.015224803,0.0417683,-0.005591667,0.027433006,-0.013497349,-0.021554505,0.008160288,0.02949564,-0.012988136,-0.0061621135,0.0203556,-0.013265302,0.00755439,-0.030939482,-0.03952519,0.052081462,0.023526898,-0.043598887,0.018357426,0.0032921543,0.0036289433,-0.02344955,-0.009565457,-0.030707436,-0.019672353,0.0038609896,-0.037075814,0.013407108,0.038339175,0.014941191,0.005417632,-0.035915583,-0.008901547,0.01644949,0.061569568,-0.0164366,-0.019968858,0.059249107,-0.043418407,0.01097707,-0.009874851,-0.0030762225,0.022972565,0.025177004,0.007161201,-0.013007474,0.016165879,0.0032421998,-0.0028747935,-0.00018612032,-0.009475216,0.016939366,-0.018718386,0.06414786,-0.0015211912,0.02549929,-0.0071418635,0.03258959,-0.013768069,-0.0036837321,0.031326227,0.015714679,-0.011834351,-0.0047150482,0.027304092,0.030088646,0.017635504,0.0039576753,-0.011376705,0.009133593,0.014941191,0.0061298846,0.019427417,-0.020200903,-0.040659636,0.014631797,0.007883122,-0.026002057,-0.002102918,0.03135201,0.06672615,0.009887743,0.047131144,0.017545264,-0.017442133,0.021206437,0.039061096,-0.011718329,0.032666937,0.018460557,-0.02088415,0.004057584,-0.021438483,0.0027394332,-0.019221153,-0.01093195,0.020278253,-0.042206608,0.03421391,0.0426707,0.002898965,0.020639213,-0.026711086,0.010081114,0.019633679,0.000092204085,0.03599293,-0.014077464,-0.0033646687,0.031068396,-0.022508472,-0.017841768,0.020407166,-0.0050856774,0.02195414,0.021644745,-0.017996466,-0.0046989336,0.005372512,-0.036431238,-0.01848634,0.0014390082,0.0140903555,0.029005764,-0.013536023,0.000660284,-0.001397111,-0.030346476,0.05873345,-0.014386859,-0.015070106,-0.028567454,0.0059977476,-0.012414467,0.049812566,0.006471508,0.002794222,-0.013871201,-0.05205568,-0.050689183,0.02150294,0.025293026,0.020781018,0.021696312,0.0034645773,0.005063117,0.036560155,-0.002581513,0.025305917,0.023617137,-0.011918146,0.01998175,0.019698137,0.004279962,-0.01164098,-0.0020529635,-0.0022479468,0.06806686,0.023075696,-0.012955908,-0.00005176723,-0.030939482,0.024751585,0.0015284426,0.044011414,0.029805034,0.042103477,0.01280121,-0.014786494,0.0007755013,0.0033131028,-0.033904515,-0.011479837,0.00082505285,0.030346476,-0.043237925,0.026375908,-0.020368492,0.009133593,0.0049374257,-0.04751789,0.003993127,0.030681653,-0.009707263,-0.005114683,-0.054247223,0.0023333526,-0.034420174,-0.0050889,-0.009900634,-0.019865725,0.019156696,-0.015173238,-0.013961441,-0.012027724,-0.009462325,0.02391364,0.0030907253,-0.003182577,0.033491988,0.0040027956,-0.033002112,-0.0019047118,0.025473507,0.011860135,-0.014902517,-0.048832815,0.007109635,0.033002112,0.021644745,0.020845477,0.036018714,-0.014644688,-0.010377618,-0.02941829,-0.013974332,-0.03774617,0.00426707,-0.04016976,-0.010989962,0.017313218,0.021928357,-0.0068711434,0.015972508,0.03021756,0.030991048,0.050611835,-0.010390509,-0.052133027,-0.02435195,-0.012955908,0.013007474,0.04823981,-0.01305904,-0.018641038,0.0095912395,0.012111518,-0.03436861,-0.01332976,-0.0031986912,0.03759147,0.017661287,0.012156638,0.011653871,-0.031945016,0.031609837,0.024583997,-0.010641892,0.030810567,-0.0057592555,0.02265028,-0.0050502256,-0.00737391,0.008134506,0.006400605,0.033981863,-0.05099858,0.03374982,-0.03155827,0.025293026,-0.03395608,0.012446696,0.0027619933,0.039860364,0.002459044,0.044630203,-0.00901757,0.011254236,0.0012335507,-0.04416611,-0.0052661574,0.022908108,-0.00330988,-0.058063094,0.0009459102,-0.03645702,0.02008488,0.0035064747,0.010757916,-0.008927329,0.015070106,0.010061777,-0.019337175,0.009075581,-0.025834467,0.018589472,0.0058075986,-0.013961441,0.037720386,0.026234102,0.001374551,-0.026582172,0.03184188,0.0010546818,0.010261594,-0.01856369,-0.019955965,-0.024132796,0.02833541,0.0033421086,-0.006168559,-0.016694428,0.042876966,-0.024223035,-0.010242257,-0.019620787,0.032950547,-0.012582056,0.016385034,0.0017838544,-0.012279106,-0.010783698,-0.019311393,0.019891508,0.00062563823,-0.00060831534,-0.007438367,0.018370317,-0.0039770124,-0.03333729,0.0040736985,-0.008682392,-0.018164054,0.0496063,-0.007232104,-0.013768069,0.007863785,-0.0070065036,-0.020909933,0.056206726,0.0041478244,-0.0039351154,0.0057431413,0.0070065036,0.0134844575,-0.013729395,-0.0008887044,0.011802123,0.030965265,-0.0017757973,0.035864014,0.012317781,0.01565022,0.018679712,0.016965149,0.028154928,-0.031764533,-0.032151278,-0.009069135,0.010867493,0.021258002,-0.002981148,0.022044381,-0.011041528,0.009913526,-0.010667675,0.0053402833,-0.049039077,0.0036740634,0.037797734,0.006645543,0.047698367,0.016990932,0.011698991,0.00888221,-0.022340884,0.028232276,-0.015366609,-0.0008053128,-0.0011787621,-0.014799385,0.027897099,-0.0035354802,-0.0018821518,0.022315102,0.019775486,-0.022946782,-0.01301392,0.027665053,0.006010639,0.03759147,-0.062858716,-0.004202613,-0.01599829,0.018950433,-0.023591354,-0.0020030092,0.016127205,0.047028013,-0.037204728,-0.004827848,-0.030062864,-0.011486283,-0.0318161,-0.015379501,-0.04027289,0.015057215,0.021876791,0.024326168,0.0055433237,0.008418118,-0.009810394,-0.0024542098,-0.014760711,0.010319606,-0.01937585,0.029108895,0.0019530548,0.026711086,0.02435195,0.003751412,-0.011518511,0.031764533,-0.009275399,0.014876734,0.008050711,-0.007515716,0.00990708,-0.00044636647,-0.007954025,-0.0057334728,-0.033930298,-0.0136262635,-0.018808626,-0.027871316,0.007747762,0.018280078,-0.013832526,-0.0041897213,0.01919537,0.0066777715,-0.023694485,-0.022534255,-0.027226744,-0.0034452402,0.039705668,-0.013536023,-0.0065585254,-0.015611547,-0.03457487,-0.0048181796,0.0011980992,-0.008521249,0.010422738,0.0067680115,0.007850894,-0.01740346,-0.008192517,0.0067422288,0.007850894,0.018164054,0.0050856774,-0.013561806,0.0046344767,0.04798198,-0.006013862,0.017996466,-0.017738637,0.0194532,-0.029650336,-0.017390568,-0.014850951,0.021477157,0.03225441,-0.0168878,0.022237752,-0.003545149,-0.009281845,0.032821633,0.007966916,0.011157551,0.025898924,-0.006313588,-0.038313393,0.010119788,0.0028586793,0.0027619933,0.052287724,-0.0298566,0.016591297,0.013832526,0.028825283,-0.0063909367,0.0013189565,-0.016385034,0.00089837296,-0.003680509,0.017132739,-0.0122146495,-0.020265361,-0.0030939481,-0.0037675265,0.030062864,-0.007535053,0.0040414697,-0.019595005,0.01919537,0.0125369355,-0.014489991,-0.0020755236,-0.009958645,-0.02738144,0.014270836,-0.057547435,0.003425903,0.0053306147,-0.0068195774,-0.0087855235,0.008998233,0.016836235,-0.02070367,0.021851009,0.014348185,0.011653871,-0.022508472,-0.015766244,-0.004901974,-0.004744054,0.0037385207,0.029289376,0.028412757,-0.0017016715,0.01572757,-0.0068131317,0.010790144,-0.021348242,0.021129088,0.011273573,-0.007019395,-0.020909933,0.0034452402,-0.008547032,-0.03511631,-0.010899722,0.009281845,-0.022250643,-0.019079346,0.003425903,-0.02807758,-0.018873084,-0.009810394,-0.028979981,-0.024983631,0.012047061,0.020909933,-0.009720154,-0.016475273,0.01829297,-0.016668646,0.023307743,-0.024467973,0.0022012151,-0.011350922,0.013935658,-0.012079289,-0.011744112,0.01937585,0.041562036,-0.015933832,-0.029392507,0.01813827,-0.008869318,0.00564001,0.025937598,0.013987224,-0.020561865,-0.053267475,-0.006242685,0.000074377625,0.019221153,0.0131815085,-0.024687128,0.0021158094,-0.030372258,-0.03184188,0.015327935,-0.01652684,-0.033156812,0.020484515,0.021644745,-0.0009160987,0.00782511,-0.0027362104,-0.00684536,-0.018344535,0.016217444,-0.017558156,-0.003493583,-0.0050083287,0.019208262,0.025215678,0.024107013,0.009449434,-0.021386916,0.009623468,-0.0056432327,-0.010648338,-0.047260057,-0.028361192,0.012988136,-0.02702048,0.0036708405,-0.030088646,-0.018769952,0.014515773,0.006336148,-0.02763927,-0.0074061383,0.016036965,-0.020123554,-0.006316811,0.010023103,0.011550739,-0.0057850387,0.0072643324,-0.008424563,-0.015121671,0.047028013,-0.0035258117,-0.013664938,-0.017222978,0.029572988,-0.002450987,0.0058140443,0.035245225,-0.017480807,0.004972877,-0.0053177234,0.016011182,-0.010893276,-0.036843766,0.00012639664,-0.009604131,-0.023978097,0.019478982,-0.023965206,-0.012833439,-0.0029376394,0.012356455,-0.029444072,0.0054530837,0.035864014,-0.004035024,0.03846809,-0.011196225,-0.02486761,-0.010480749,0.009185159,-0.001144922,0.0011489505,0.01812538,0.032331757,0.0011344476,0.00082747,0.018963324,0.023539789,-0.021270894,-0.020458732,0.00737391,-0.008650163,-0.006613314,-0.0058591645,-0.025022306,-0.015933832,-0.027974447,-0.019711029,-0.022534255,0.005872056,-0.0034645773,-0.03596715,0.028386975,0.016642863,0.007586619,-0.006967829,0.051849414,0.006639097,-0.029779252,0.041690953,0.051050145,0.04656392,-0.0038577665,0.011750557,-0.012124409,-0.01776442,0.0134844575,-0.012092181,0.005163026,0.021941248,0.0097330455,0.0034839145,0.033156812,-0.021618962,0.026736869,-0.00046006363,0.032099713,-0.020368492,0.015443958,-0.020458732,0.000997476,-0.008901547,-0.009449434,-0.0080378195,0.0077026417,0.06115704,-0.03246067,0.044114545,-0.0008012842,-0.0027362104,0.01004244,-0.051075928,0.0119117005,0.006896926]},{"id":"interface-ReactionCollectorEndReason","type":"interface","source":"main","text":"Interface: ReactionCollectorEndReason","meta":{"url":"/docs/typedefs/ReactionCollectorEndReason"},"embedding":[0.025449743,-0.007485676,0.0027361973,0.038120203,-0.041105144,0.031170884,-0.035197448,0.010727137,-0.0019812167,-0.014295076,0.03163728,-0.05941901,0.009592237,0.04558256,0.037094127,-0.024252657,0.027346427,0.0074468097,-0.023071118,0.06691246,0.010618311,0.034668863,0.046950657,0.0056278603,-0.019029008,-0.036969755,0.0030743352,0.011341226,-0.035259634,-0.035166353,0.06078711,-0.038120203,-0.020925691,0.020023989,-0.024625776,0.025294278,0.034420118,-0.0068910196,-0.011364547,0.025698489,0.0032919873,-0.04548928,-0.021127796,0.037467245,-0.0394883,-0.0020307715,-0.00017210544,-0.01406965,0.029414121,0.002722594,-0.023599701,-0.015111271,0.011022522,0.038213484,-0.017178966,-0.0848843,-0.007959846,0.038524415,0.0034629996,-0.009149159,0.007835474,-0.04026563,0.03619243,-0.025807315,-0.013494427,-0.01974415,-0.021982858,0.042286687,0.016090706,0.0143494895,0.028123755,-0.0011280983,-0.024952253,0.0024913386,-0.039332837,0.012794832,0.031839386,-0.021578647,0.0033327972,-0.028574606,-0.021252168,0.01420957,-0.037156314,-0.060165245,0.00142154,-0.020863505,-0.0054957145,-0.0044657537,-0.010268513,-0.041975755,-0.06541999,0.06280816,-0.014598235,0.0063546626,0.002028828,-0.0069143395,-0.033642787,0.014100743,-0.0102141,0.03473105,0.009452318,-0.06772088,-0.007843248,0.0028644565,0.022387069,-0.007816041,-0.014769247,0.02146982,-0.043841343,-0.0006412962,0.012033049,-0.040203445,-0.053231474,-0.0008016203,-0.013424468,-0.019961802,-0.022480348,0.01693022,-0.017894108,0.010392886,-0.013813132,0.01947986,-0.020521479,-0.033114206,-0.01127904,-0.034295745,-0.0071864044,-0.039830327,0.03600587,0.016557103,0.047696892,-0.0082785515,-0.03986142,-0.0134166945,-0.011488919,-0.015453296,0.016417183,-0.021594193,-0.032212503,-0.027206507,-0.017800828,0.023319863,0.037747085,-0.007419603,-0.029274201,0.02482788,-0.036876477,0.012343981,0.052733984,0.0031889912,-0.02650691,0.04272199,-0.032212503,-0.01477702,0.026429178,-0.03059566,0.023615249,0.040016886,0.023164397,0.0016877751,0.024003912,-0.028341407,-0.038897533,-0.0027983836,-0.06709902,0.013385601,-0.004838872,-0.015834186,-0.08183717,0.037622713,-0.005927132,0.0010319039,-0.051241513,0.0044890735,-0.026771203,0.00343385,-0.028590152,-0.016230624,0.042162314,0.0031423515,0.052391957,0.044743042,-0.012514994,-0.053044915,-0.008379604,-0.0019122288,-0.02310221,-0.0004525511,0.045738026,-0.01801848,-0.015810868,0.044183366,-0.018034028,0.00740017,0.011341226,-0.054164268,0.029725052,-0.017598724,0.0033230805,-0.02655355,-0.027393065,0.011698798,0.10994538,-0.019402126,-0.04116733,0.009250212,-0.03326967,-0.0062380633,0.06271488,-0.020987878,0.071203314,0.009226892,0.009833209,-0.0345134,-0.03386044,0.0028158734,0.02782837,0.024221564,0.0090325605,-0.0075439755,-0.0051847827,0.050464183,0.06237286,-0.018811356,0.006004865,0.018904636,0.06050727,-0.006339116,-0.025247639,0.0071630846,-0.055407993,0.023848446,-0.021982858,-0.06815618,0.022698,-0.015235644,-0.0061603305,-0.010633858,0.042815268,-0.03336295,-0.024998894,0.014419449,0.035663843,0.01413961,-0.0047183856,-0.0080609,0.02560521,-0.009242439,0.014489409,0.0035562792,0.03414028,0.032150317,0.054692853,-0.016339451,-0.0040770895,-0.008760495,-0.0006291505,0.0012446977,-0.015453296,-0.004834985,0.0014837263,-0.050557464,-0.014629328,0.03354951,-0.019650871,-0.04191357,0.033300765,-0.012064142,-0.020039536,0.039332837,0.012546087,-0.025200998,0.05052637,-0.0074701295,-0.04017235,-0.0140618775,0.053044915,0.021034516,-0.03967486,-0.01191645,-0.008915961,-0.018889088,0.04135389,0.06274598,-0.01924666,-0.010773777,-0.0047650253,0.0065217884,0.06423845,0.0049710176,-0.011193534,-0.026771203,-0.017007953,-0.02650691,-0.01570204,-0.027004402,0.0215631,-0.0394883,0.023941725,0.0014205683,-0.017552083,0.016183985,-0.006863813,-0.01974415,0.038524415,-0.047914546,0.029383028,-0.011582199,0.0073496434,0.0053519085,0.0010591104,-0.054630667,-0.031761654,-0.009910942,0.007151425,-0.021127796,0.04853641,0.0135954805,0.00801426,0.009460091,0.028092662,-0.025869502,0.03550838,0.011496693,0.011061388,-0.04834985,0.010789324,-0.021827392,0.07207392,0.048101105,-0.012926977,-0.041291703,-0.025325371,-0.025496384,0.06417626,-0.009530051,-0.027812824,-0.00033935258,0.00793264,0.07282016,0.01688358,-0.040203445,0.0032978172,0.007034825,0.02056812,0.023413142,0.029414121,-0.0021920672,0.020537026,-0.0056045405,-0.013719853,0.0105794445,-0.035632752,-0.02614934,0.013556614,-0.0068366067,0.021547554,-0.03867988,-0.021718565,0.04253543,0.023490876,0.03205704,0.020847958,-0.021189982,-0.001246641,0.044680856,-0.106400765,-0.023895087,0.04014126,-0.027128775,0.030844405,0.006611181,0.016277265,-0.0229312,-0.026569098,0.029274201,-0.0037817045,-0.0019462369,0.06097367,0.004924378,0.03482433,0.012001956,-0.005946565,-0.01820504,0.026755657,-0.0009211346,-0.003000489,0.02886999,-0.06666371,0.013167949,0.04838094,-0.07885223,-0.020770224,-0.0535735,0.041074052,0.016665928,0.0045162803,0.05851731,0.05211212,0.040825307,0.0019102854,0.008356284,0.012755965,0.039581582,-0.0014050218,0.038648788,-0.0047961185,0.01525119,0.043779157,-0.04906499,0.06442501,-0.024439216,0.056216415,0.029180922,-0.007170858,-0.03690757,-0.03827567,0.024035005,0.014396129,0.014038557,-0.020008443,-0.0075672953,-0.02428375,-0.007893774,-0.023055572,0.023801807,0.038244575,-0.012305114,0.027393065,-0.06305691,-0.021127796,0.04135389,0.005239196,0.015600989,0.01468374,-0.0032181412,0.07238486,-0.023584155,-0.007625595,0.037778176,-0.030082623,0.002777007,0.051925562,0.006766647,-0.09284415,0.009452318,-0.004974904,-0.0010649404,-0.01200973,0.034482304,-0.076737896,-0.009942035,-0.008053126,0.039052997,-0.031746108,-0.006121464,0.031575095,0.04048328,0.009320172,0.00065732864,0.021936217,0.042193405,0.013782039,0.05456848,-0.037622713,0.0075439755,-0.031062057,-0.0010571671,-0.0048855115,0.0051342566,-0.03326967,-0.01300471,0.02047484,0.013105763,0.0032181412,-0.018096214,0.005009884,-0.010820417,-0.03482433,-0.024843428,-0.013968598,-0.00339304,-0.024610229,-0.040732026,0.038648788,0.06964866,-0.022589173,-0.018826902,-0.076800086,0.013673213,0.043748062,0.016572649,0.0012621876,-0.021189982,0.0015604876,-0.026911123,0.022262696,-0.013012484,-0.01078155,-0.002034658,0.01825168,0.0060942573,0.013984145,0.026755657,0.023506422,0.011201307,0.022262696,0.012274021,-0.03504198,-0.030517928,0.024719056,0.024143832,-0.03513526,-0.023117758,-0.046297703,0.01300471,-0.034451213,0.005896039,0.004232555,0.026771203,0.014940259,-0.016510462,-0.0018995972,0.008573936,-0.020350467,0.020319374,-0.007170858,-0.05071293,-0.023008931,-0.016665928,0.0054296413,0.010369565,0.020366013,0.016852487,-0.023273224,-0.01647937,0.01300471,0.00018546579,-0.019200021,-0.025465291,0.0072485907,-0.0052469694,0.00007894745,-0.035788216,-0.009219119,0.021189982,-0.008620576,0.016323904,0.01366544,0.024050552,-0.049282644,-0.025480837,0.03752943,-0.04931374,0.0066189542,0.040047977,-0.008729402,-0.027564079,-0.010097501,-0.004080976,-0.013587707,0.00091530464,0.0167903,-0.030797767,-0.018173946,0.036378987,0.012180742,0.01480034,-0.0054918276,0.012468354,-0.002172634,-0.011558879,-0.03650336,-0.012709325,0.03000489,-0.007769401,0.024812335,0.013113536,0.03504198,-0.020987878,-0.01423289,-0.026320351,0.012343981,0.036565546,0.009498958,-0.0042286683,-0.006234177,0.016899128,-0.008636123,-0.006615068,-0.022962293,-0.00050283456,0.02274464,0.04371697,0.014466088,-0.0026273713,0.0038283442,0.06010306,0.01688358,0.014108517,0.030315822,-0.01983743,-0.031652827,-0.010027541,0.009514504,0.061066948,0.038897533,-0.007726648,-0.010330699,0.025480837,-0.0031598415,-0.0007234016,-0.0019034839,-0.023008931,-0.013929731,0.014217343,-0.036876477,-0.015103498,0.0056939335,0.01784747,-0.0090792,-0.0018529574,-0.016168438,-0.024081646,-0.019899616,0.038337857,-0.024439216,-0.012546087,0.034668863,0.006887133,0.015655402,0.008301871,-0.023599701,-0.015220097,0.012926977,0.0001570447,0.0063896426,0.01130236,-0.025543023,-0.048785154,0.012211835,-0.035166353,0.020366013,-0.01536779,0.031901572,0.029833877,0.015282284,0.013556614,-0.0042092353,0.007680008,-0.015196778,-0.002421379,0.0014992729,-0.020101722,0.00844179,0.0040187896,-0.018096214,0.03376716,0.00623029,-0.015997427,0.012996937,-0.032896552,-0.028698979,-0.024625776,-0.02674011,0.00044842155,0.019573139,-0.0076916683,-0.0041004093,0.00508373,0.03522854,0.03895972,0.009040333,-0.0061603305,0.052143212,-0.008861548,0.026538005,-0.0021395974,-0.03246125,-0.016899128,0.02773509,0.010260739,-0.017878562,-0.006187537,-0.024174925,0.016199531,-0.004866078,-0.030626753,-0.027517438,0.026491364,0.0051847827,0.011038069,0.013214589,0.0007122275,0.0028236466,-0.030611208,0.0143494895,0.00391968,-0.007505109,-0.058983706,-0.018795809,-0.029662866,-0.0033133638,0.0138830915,0.010548351,-0.022698,0.038400043,-0.0041509354,0.05030872,0.012025276,-0.011566652,0.014015238,-0.011589972,0.01080487,-0.014442769,0.0372185,0.030440195,-0.003573769,0.044649765,-0.020490386,0.0118698105,0.009980901,-0.004232555,0.020397106,0.009965355,0.044649765,-0.0004989479,0.030409101,0.00044574947,0.01191645,-0.029180922,-0.019184474,-0.016199531,0.018640343,0.010789324,0.02210723,-0.031388536,-0.0110458415,0.028901083,-0.0040732026,0.008947054,-0.013898638,0.02215387,-0.009343492,0.011488919,0.041105144,-0.0068560396,0.039301742,-0.030315822,-0.016277265,-0.013136856,0.01416293,-0.04943811,0.021003423,0.026864482,-0.041540448,0.040700935,-0.00957669,-0.034264654,-0.008169726,0.011659931,0.029320842,-0.0028236466,-0.01629281,0.010556125,0.023677435,-0.04480523,-0.0007724705,0.015142364,0.033642787,0.04965576,-0.0038011377,0.014147383,-0.016106252,0.008807135,0.0057328,-0.019961802,-0.016697021,-0.019604232,0.019137835,0.02151646,-0.010423979,-0.05543909,-0.012639366,0.0030218656,0.029709505,0.00079141784,0.04045219,0.0036106922,-0.014613781,0.015002445,-0.027035495,0.01983743,-0.046546448,0.034420118,0.02995825,-0.021189982,-0.118091784,0.027812824,0.019650871,-0.014652647,-0.008651669,0.0037098015,0.010929243,0.031419627,-0.0042053484,-0.008472883,-0.00085214665,-0.0031831614,0.0064362823,-0.030766673,0.02137654,-0.011551105,0.003645672,0.017692003,0.020505933,-0.006121464,-0.028792258,-0.017132327,-0.0012670459,0.040732026,-0.01638609,0.020459292,-0.027672904,0.020412654,0.025682943,-0.00450462,0.028745618,0.004197575,-0.024610229,0.014450542,0.029351935,0.013844226,-0.008527297,0.02955404,0.0016469653,0.00566284,0.022542534,-0.018236132,0.012398394,-0.0047727986,-0.0013632403,-0.050246533,0.019215567,0.018065121,-0.012328435,0.044463206,-0.012095235,-0.038058016,0.00062720716,-0.052640703,0.032025944,0.05052637,-0.007260251,0.022247149,-0.01874917,-0.03976814,-0.021438727,-0.0026701244,0.02787501,-0.029274201,0.0030762786,-0.025480837,-0.031248616,-0.028450234,0.006121464,-0.022278242,0.016665928,0.019619778,-0.0044346605,0.01082819,0.04834985,0.019122288,0.043499317,-0.0249678,0.009421225,0.008325191,0.0043530413,0.037747085,-0.04331276,-0.018422691,-0.003307534,0.0001490285,-0.0011446166,0.018267225,0.006560655,0.014466088,-0.009265759,-0.03908409,-0.008231912,0.0044346605,0.016354997,0.04213122,0.012281794,0.0066034077,0.014419449,0.018718077,0.036472265,0.020770224,-0.0113334535,-0.034389026,-0.035477284,0.00055870507,0.02778173,0.013362282,0.020350467,0.037591618,-0.029227562,0.00070542586,-0.0009842926,0.0281393,0.036969755,0.013704306,0.016821394,-0.01541443,0.008239685,0.0011990296,-0.022729093,0.009514504,-0.03173056,-0.0076333685,-0.019371033,0.012235154,0.011092481,0.016712569,0.027890556,-0.0076916683,-0.004112069,-0.055034876,0.0014263983,-0.018547064,0.023164397,-0.0082085915,0.015033538,0.015507709,-0.024781242,0.033611696,0.02900991,0.0017956295,0.003175388,-0.035384007,-0.036472265,-0.0046289926,-0.0131990425,0.0031248617,0.0068366067,0.0038652674,0.0139530515,-0.016339451,-0.0021085043,-0.026289258,-0.018686984,0.05121042,0.028590152,-0.01983743,-0.0028411367,0.029180922,0.014590461,0.08507086,-0.0030587886,0.003266724,0.01756763,-0.013719853,-0.0048621916,0.00019627552,-0.006362436,-0.010571672,-0.017909655,-0.021360995,-0.00095902936,-0.043499317,-0.0056939335,0.0019812167,0.03187048,0.028170394,0.010843736,-0.006704461,-0.02551193,0.036596637,-0.031388536,0.039892513,0.047012843,-0.004341381,0.04066984,-0.008830455,-0.025449743,-0.024361484,0.018764716,0.046515353,0.008729402,-0.027113227,-0.0038594373,0.017629817,-0.00023550632,0.0039021904,-0.009219119,0.00015886656,0.067783065,0.013517748,-0.0015983823,-0.008814909,-0.00790932,-0.027268693,0.0035990323,0.0033910968,-0.011722118,-0.022713546,-0.0043258346,0.016417183,-0.034948703,0.011760985,0.032647807,0.018920181,-0.053915523,-0.0069415458,0.008239685,0.013844226,0.0059543382,-0.03650336,0.015748682,0.038120203,-0.025029987,0.025278732,-0.02796829,-0.011698798,-0.012942524,0.0029868858,0.024625776,-0.02033492,0.0012233212,-0.010081954,0.01784747,-0.0016887467,0.018080667,0.028590152,0.035974775,-0.008216365,0.00047295596,-0.0022970065,0.0001119232,-0.015919693,-0.008884868,-0.01425621,0.03073558,0.00742349,-0.008605029,0.0043608146,-0.0051886695,-0.011014748,0.036472265,0.045924585,0.031994853,-0.037653804,0.0049904506,0.0036845384,0.013564387,0.012312888,-0.006257497,-0.008783815,0.019464312,0.01693022,-0.0049671307,0.025340918,-0.03535291,0.014427222,-0.025294278,-0.031901572,-0.008457337,0.0033172506,0.016183985,0.012227382,-0.006677254,0.0015779774,0.0034979794,-0.0063585495,-0.0068249465,-0.043468226,-0.006261383,0.009833209,-0.06165772,-0.009133613,0.01425621,-0.025263185,-0.015857507,0.0014079367,0.010960336,-0.05080621,0.044058993,-0.009926489,-0.016681476,-0.0063313427,0.0063663227,-0.00037724737,-0.017645363,0.010486165,-0.0028838897,-0.027952742,-0.013782039,0.013960824,-0.026024967,-0.019790791,-0.0074662426,0.02827922,0.011520012,0.030346915,-0.016090706,0.00058931235,-0.015593215,-0.021625286,0.011931997,0.0064362823,-0.015764227,0.03740506,0.016557103,-0.018127307,-0.037156314,0.025714036,-0.0024427557,0.00738851,0.002951906,-0.002559355,-0.002155144,0.0008385434,0.003000489,-0.0034824328,-0.005348022,0.0051031634,-0.004014903,-0.027439706,0.02333541,0.0021784639,0.011900904,0.0385866,-0.0041936887,0.006203084,-0.015655402,0.01766091,0.0010911752,-0.019495405,-0.009219119,0.0050992765,0.016836941,-0.023941725,-0.0034319065,-0.0010571671,-0.022573628,-0.010299606,0.12157422,-0.009304625,-0.0073185503,0.04225559,-0.034917608,-0.00682106,0.009203573,0.045613654,-0.018407146,0.017396618,-0.018547064,-0.0070542586,0.007516769,-0.011714345,-0.013152403,0.011955316,-0.0018004877,0.0078082676,0.021640833,-0.022029497,0.008830455,0.02900991,0.018127307,0.021734113,0.012934751,-0.012149649,0.008651669,0.02688003,0.0073846234,0.038368948,0.029927157,0.030238088,-0.014629328,0.0051575764,-0.028061569,0.0019277753,0.023724074,-0.018578157,-0.0076916683,-0.03308311,0.00032890725,-0.014295076,0.028294766,0.004368588,-0.0065295617,0.010019768,-0.025449743,0.014512728,-0.0045434865,-0.009965355,-0.052889448,-0.031994853,0.0047144988,-0.011597745,0.002089071,-0.01933994,0.0019063988,0.010882603,0.0485675,0.009421225,-0.03740506,0.01974415,-0.006261383,0.007069805,0.031761654,0.036938664,0.025931688,0.0072485907,-0.006210857,-0.006257497,0.004943811,-0.026833389,0.014015238,0.016075158,-0.03323858,0.041664824,0.010773777,-0.0026759543,-0.0015711758,0.009366811,0.01132568,-0.022589173,0.00074040564,-0.00399547,-0.024221564,0.02827922,0.02787501,-0.020303827,-0.012196288,0.0054296413,-0.008068672,-0.01593524,0.0043258346,-0.04035891,0.01250722,-0.019355487,0.001014414,0.0061603305,-0.007450696,-0.010493939,-0.00033910968,-0.01811176,-0.009491185,-0.010198553,-0.02369298,-0.0014089084,0.02832586,-0.0007122275,-0.018795809,-0.0059115854,-0.019542046,-0.0022367635,0.01629281,-0.013611027,-0.01246058,-0.025682943,0.005530694,-0.033331856,-0.0118698105,0.015422203,-0.007205838,0.042379964,0.0021998405,-0.0261027,0.014504955,0.004290855,0.027222054,0.010641631,0.0376849,0.02220051,0.017863015,0.017940748,0.017474351,0.00785102,0.012794832,0.012740418,-0.030844405,-0.019588685,-0.0037603278,0.016012972,0.027346427,-0.010136367,0.019526498,0.010439525,-0.0031792747,0.034886517,0.0067821937,-0.021687472,-0.02823258,0.021625286,-0.014901392,0.008869321,-0.014878073,-0.0010911752,0.0068677,-0.028667886,-0.009257985,-0.007948186,0.009809889,-0.007598389,-0.005029317,-0.01193977,0.0015002445,-0.002771177,0.012569406,-0.0008579766,-0.029678412,0.008006486,-0.027626265,0.012670459,-0.02492116,-0.0022872898,-0.014574914,0.0031715014,0.01707014,-0.00563952,0.013346735,-0.0023008932,-0.0070736916,0.014108517,-0.0072291577,-0.001997735,0.011566652,0.00789766,-0.008037579,0.0035601659,-0.035197448,-0.018422691,0.016759207,-0.030315822,-0.0083873775,0.0007700413,-0.01416293,-0.0071203317,0.010354019,0.026709016,0.0011203251,0.020661399,0.010354019,0.028294766,-0.033922628,0.006731667,-0.01541443,-0.032399062,-0.0007015392,-0.0050759567,-0.035290726,0.012196288,-0.0068366067,-0.004201462,-0.0069648656,0.028823351,0.011792078,0.0054957145,0.012103009,0.026133792,-0.005670613,0.03650336,-0.03619243,0.052671798,0.0057328,-0.01300471,-0.0035232427,-0.034575585,0.003713688,0.016106252,0.0322436,-0.0047455924,-0.016417183,-0.01536779,0.000079676196,0.008410697,-0.023366503,0.00039425143,0.032212503,-0.009561144,-0.047914546,-0.0067744204,-0.0458624,0.0058105327,0.015725361,0.025822861,-0.035259634,-0.031621736,0.034109186,-0.013502201,0.011006976,0.0014487465,-0.008908188,0.02714432,-0.02120553,0.011481146,0.02787501,0.0057133664,-0.0019957917,-0.013494427,-0.0055384673,-0.03818239,0.037778176,-0.008589483,0.009040333,-0.0059543382,-0.029476307,0.0040498828,-0.00506041,-0.022402614,-0.0015925523,0.023179945,0.029709505,-0.031217523,-0.032896552,0.027983835,-0.021780752,0.021174436,0.033114206,0.016836941,-0.011520012,-0.020039536,0.027797276,-0.047914546,0.020443747,0.019402126,0.03895972,0.002378626,-0.0036476152,-0.016572649,0.00041489923,-0.022076137,0.052640703,0.033891533,-0.01697686,0.025278732,-0.0048000054,-0.02827922,0.025853954,0.030564567,-0.021951765,-0.038866438,-0.027408613,-0.004733932,0.010315153,-0.010089727,0.05183228,-0.0051031634,0.021951765,-0.011380093,-0.011457826,-0.01073491,-0.0037156316,-0.020350467,-0.0066072945,-0.016246172,-0.010346246,0.021500913,-0.0050137704,0.0070659183,0.038555507,0.027564079,-0.010587218,-0.0030354687,-0.008612803,0.0072991173,-0.006199197,-0.018780263,0.041975755,-0.008659443,-0.003266724,0.038213484,0.025029987,0.013820905,-0.0077188746,0.007178631,0.0019297187,-0.0060709375,0.029973798,0.005262516,0.015453296,-0.030906592,0.006556768,-0.00075498055,-0.040607654,0.01364212,-0.0181584,-0.022946745,-0.008045353,0.04371697,0.028854445,0.0004336037,0.02624262,-0.025869502,0.01884245,-0.01898237,-0.022387069,-0.0010212157,0.007268024,0.019852977,0.036783196,-0.0058338526,-0.002125994,0.03295874,-0.003880814,-0.05161463,0.046017863,-0.0069687525,-0.0015264794,0.035446193,-0.004123729,-0.021780752,0.013059123,0.03513526,0.02328877,0.040421095,0.022511441,0.024874521,-0.03033137,0.02170302,0.0032608942,-0.029025456,-0.0064207357,-0.021951765,0.04135389,-0.012468354,0.0054918276,-0.028123755,0.000005784419,0.0036378987,-0.0074157165,-0.017723097,0.036254615]},{"id":"interface-ReactionCollectorEvents","type":"interface","source":"main","text":"Interface: ReactionCollectorEvents\nProperties: collect: [reaction: MessageReaction, user: User], end: [collected: Collection, reason: ReactionCollectorEndReason]","meta":{"url":"/docs/typedefs/ReactionCollectorEvents"},"embedding":[0.029121045,-0.0133276805,-0.010511608,0.03843874,-0.023722492,-0.0036693297,-0.014223114,-0.010764665,-0.015923139,-0.021269783,0.002550038,-0.06935065,0.025253812,0.030185184,0.029432502,0.007014227,0.0202316,0.03589519,-0.016896436,0.071946114,0.0038672334,0.009564265,0.059228364,-0.0011768782,-0.034260053,-0.006605442,0.0031534822,0.067585744,-0.030548548,-0.013210884,0.062187187,-0.021892693,-0.013457453,0.03156078,-0.023047673,0.040722746,0.009856254,0.024176696,-0.022411786,0.055438995,-0.020192668,-0.035012737,-0.0356616,0.02608436,-0.038724244,-0.0048243087,-0.00007482221,-0.0045517855,0.0069882725,0.03599901,-0.032780644,-0.019089598,0.022801105,0.04889844,0.0037374604,-0.08507913,-0.037660103,0.011958576,-0.022710264,-0.02469579,-0.018297983,-0.025279768,0.0348051,-0.018233096,0.00054464076,-0.02694086,-0.018765166,0.06021464,0.043993022,0.025149994,0.030626412,0.0029928882,-0.03734865,0.014897932,-0.011192915,0.012373849,0.0035784885,-0.031353142,-0.0112123815,-0.023462946,-0.013665089,-0.008921889,-0.05144199,-0.052506126,-0.0013658601,-0.044953343,0.020698782,0.00009297014,-0.012743702,-0.006271277,-0.03758224,0.043499887,-0.04295484,0.016338412,0.03192414,-0.032391325,-0.01831096,0.009337163,-0.015871229,0.03830897,0.012010485,-0.1035588,-0.0010187175,-0.017233845,0.015845275,0.014249068,-0.027797362,0.001223921,-0.05699627,-0.018285006,-0.022891944,-0.017714005,-0.022528581,0.011471927,-0.01073871,-0.020283509,-0.00068901316,0.015287251,-0.020789623,0.014119295,-0.023748446,0.021178942,-0.023164468,0.0042013987,-0.023475923,-0.016001003,0.024630902,-0.05224658,0.030574502,0.02330722,0.036985286,-0.021905672,-0.027771408,-0.022502627,0.013535317,-0.031327184,0.024124788,-0.007247818,-0.04487548,-0.02818668,-0.010751687,0.011952087,-0.015235342,0.018168211,-0.032079868,0.010952836,-0.052038945,0.005015724,0.04438234,-0.02919891,-0.009187924,0.027875226,-0.03485701,0.020192668,0.042980794,-0.024773654,0.019868236,0.025967564,0.018440733,-0.038153242,0.038490653,-0.042124294,-0.06971402,-0.0205171,-0.05896882,-0.007156977,-0.013989522,0.0012093215,-0.041579247,0.036466192,0.0068779653,-0.000038957227,-0.050896943,0.008396309,-0.052506126,-0.014275023,-0.046199165,0.00556077,0.009408537,0.026304973,0.024436243,0.014132272,-0.059228364,-0.079940125,0.007747444,-0.0072218636,-0.028913409,0.0133017255,0.009136015,-0.03820515,0.007513853,0.054037448,-0.009187924,0.026629405,0.015481911,-0.050066397,0.010712756,-0.015884208,-0.01692239,-0.036310468,-0.023956083,-0.008182183,0.07324384,-0.014936864,-0.002238583,-0.00680659,0.0065308227,0.010161221,0.038516607,-0.03384478,0.0517794,0.020270532,0.016182685,-0.013431499,-0.05115649,0.033299733,-0.022320945,0.0128864525,-0.032469187,-0.013768908,-0.012471179,0.038490653,0.099561796,-0.007397057,0.0052947355,0.03843874,0.029718002,-0.02311256,-0.029458456,-0.0038153243,-0.07381485,-0.0030058655,-0.032053914,-0.063173465,0.015936116,-0.00001894634,0.010667335,0.017480414,0.045186933,-0.050377853,0.011900178,-0.009317696,0.020971306,0.046718255,-0.00031834922,0.011394063,0.022956831,0.011063143,0.032858506,0.0044836546,0.032391325,0.027018724,0.033066142,-0.011147494,0.015105569,-0.008279513,-0.025396563,0.012373849,-0.016714754,0.015066638,0.042513613,-0.029172955,-0.033715006,0.03145696,-0.0149887735,-0.033663098,0.036258556,-0.0103429025,-0.021542307,0.05279163,-0.0049897693,-0.020543056,0.04194261,-0.001224732,-0.023800356,0.017480414,0.039970063,0.013665089,-0.018687302,0.022282012,-0.014326932,0.017428504,0.047341164,0.024137765,-0.0137299765,0.013652112,0.022930877,-0.0037082615,0.0393212,0.028913409,0.01572848,-0.010939858,0.009045173,-0.017739959,-0.005641878,-0.023670582,0.02880959,-0.02976991,0.039243333,-0.026214132,-0.03781583,-0.014158227,0.016325435,-0.034208145,0.056113817,-0.016623912,0.032287505,-0.030626412,0.022943854,0.0133017255,-0.002579237,-0.048924394,-0.028965319,-0.015391069,-0.011166961,0.005557526,0.01960869,0.03389669,0.012990271,0.0056029465,0.045913663,-0.021516353,0.028342409,0.013314703,-0.019907167,-0.055542815,0.03197605,-0.028134773,0.057255816,0.06654756,0.01232194,-0.037712015,-0.024669833,0.006050663,0.07879812,-0.027511861,-0.005168207,-0.027356135,0.001706514,0.06670329,0.039918154,-0.04850912,-0.03044473,-0.012587975,0.0072607957,0.0141452495,0.009681061,0.026862998,-0.018259052,-0.012036439,-0.00997305,0.020387327,-0.05455654,-0.03259896,0.017065141,-0.025448471,0.0020942106,-0.017921641,-0.011686052,0.043655615,0.025020221,0.032131776,0.039035697,-0.025188927,0.0041138018,0.015871229,-0.12634693,-0.0041300235,0.055594724,-0.057255816,0.01779187,-0.038905926,0.007448966,-0.0048567518,-0.008506616,0.02056901,-0.015754433,-0.00939556,0.047600713,0.009570754,-0.0095253335,0.03592115,-0.009415026,-0.026603451,0.01975144,0.005359622,-0.028212635,0.019647622,-0.04544648,0.039373107,0.07345148,-0.050222125,-0.015572752,-0.032157734,0.033870734,0.01672773,-0.0019336167,0.06602847,0.04622512,0.04368157,0.0002925974,0.008908912,0.032858506,0.021114057,0.012386827,0.053206902,-0.02694086,0.045005254,0.051519852,-0.032157734,0.055698544,-0.0077733984,0.034727238,0.005690543,0.002879337,-0.02167208,-0.03527228,0.033092096,0.010576494,0.0072543067,-0.02948441,-0.04635489,-0.018959826,0.0008293301,-0.01232194,-0.012068883,0.028498136,-0.026395814,-0.0076111825,-0.036466192,-0.057567272,0.027875226,0.05507563,0.004626405,0.041112065,-0.044849526,0.07724085,0.0036466194,-0.037089106,0.01505366,-0.00028712262,0.012620417,0.04152734,0.038516607,-0.061875734,-0.010232596,-0.0018200653,-0.008000501,0.022567512,0.010602448,-0.067066655,-0.0006942852,0.0068974313,0.030600457,-0.062031463,-0.044719752,0.024591971,0.06031846,0.012166212,0.0034162723,0.0068195676,0.055698544,0.022904923,0.052324448,0.00790966,0.0048113316,-0.067326196,-0.019310212,0.007987524,0.014962819,0.0050611445,-0.021633148,0.00040310717,0.016039934,0.0196606,-0.027122542,0.05382981,-0.003572,-0.009960072,-0.012419269,0.013989522,0.030911913,0.015261297,-0.020166714,0.015040683,0.040878475,-0.00021351702,-0.06898729,-0.030834049,0.030185184,0.019427007,0.010109311,-0.018609438,-0.015027706,0.008941355,-0.012912407,0.027745454,-0.045576252,0.017415527,-0.015936116,0.012016973,0.0053304234,-0.00073483924,0.030340912,0.018713256,0.03898379,-0.02402097,0.017376596,-0.01822012,-0.011478416,0.032287505,0.013872727,-0.03791965,-0.011342154,-0.00041608445,0.006722238,-0.026629405,-0.006199902,-0.0066962834,0.025993519,0.033585235,-0.0082405815,0.0046036947,0.010712756,-0.023268286,0.0037147503,-0.011848269,-0.014755182,-0.0124582015,-0.0012304096,-0.0047918656,-0.0077798874,0.004765911,0.017194914,-0.012354383,0.00098303,-0.03441578,0.0070985793,-0.00479511,-0.02790118,-0.010673824,0.0034941363,0.0137169985,-0.03361119,-0.0137299765,0.03763415,-0.0027349645,0.03843874,-0.0061577256,0.018946849,-0.01716896,-0.020828556,0.0461213,-0.05224658,0.015910162,-0.0015207765,-0.002929624,-0.02622711,0.0039288756,-0.023268286,-0.004288995,-0.014106317,0.017143004,-0.028160727,-0.042980794,0.03830897,0.041293748,0.018323937,-0.022048421,0.028705772,-0.011971553,-0.012023462,-0.030055411,-0.02766759,-0.0005795173,0.00766958,-0.023553787,-0.0010454832,0.002279137,0.0074035455,-0.008701275,-0.009239833,0.007345148,0.036310468,-0.010362369,-0.012062394,0.019258304,0.03672574,0.00092787645,-0.016104821,-0.006585976,-0.011919644,0.032858506,0.049780898,-0.014028454,0.008993264,0.007604694,0.044330433,0.01112154,0.0057359636,0.041060157,0.014781137,-0.05341454,-0.016714754,0.028731728,0.07345148,0.008863491,-0.016104821,-0.06135664,0.054400813,-0.002939357,-0.007124534,-0.017272778,-0.02512404,0.0052266046,-0.0050416784,-0.019764418,0.006469181,-0.003581733,-0.0017827556,-0.030574502,0.015988026,-0.024968311,-0.003403295,0.015520843,0.023436991,-0.03400051,-0.01855753,0.036076874,0.00092787645,0.013003248,-0.007027204,-0.022087352,-0.029588228,0.018635392,-0.008019967,0.024007993,0.027044678,-0.02535763,-0.0061285268,0.016117798,-0.018622415,0.037945606,-0.008746696,0.03389669,0.038646378,0.007111557,0.009213878,-0.011679564,0.014443727,-0.03265087,-0.026681315,0.011141006,-0.040255565,-0.014365864,0.002950712,-0.004035938,0.030470684,0.024708766,-0.011017722,-0.0013918147,0.02200949,-0.004224109,0.0023845776,-0.028368363,0.03327378,-0.012062394,-0.018817075,0.016416276,0.040489156,0.017104072,0.041553292,0.0034357384,0.003351386,0.0342341,-0.014365864,0.012854009,-0.0021006993,-0.017649118,0.0053239344,0.02014076,0.009908163,-0.04186475,0.009168457,-0.029692046,-0.02124383,-0.0021834297,-0.03882806,-0.010894437,0.040203653,0.0072088866,-0.009265787,0.02267133,0.021944603,0.024591971,-0.018142255,0.018375847,-0.01903769,-0.0034292496,-0.05058549,-0.020296486,-0.025591223,-0.00066468073,0.012854009,0.021036193,-0.0031891698,0.018479666,-0.036907423,0.022982785,0.0060149753,-0.009239833,0.015845275,-0.0066184197,0.007994013,-0.036128785,0.019998008,0.011244824,0.012815077,0.04510907,-0.005249315,0.011783382,0.019985031,-0.012983782,0.017662097,-0.020101827,0.03750438,0.0348051,0.04391516,-0.03304019,0.00017144221,0.00019405108,-0.01941403,-0.013924636,0.009577243,-0.014547545,0.013924636,-0.017934619,0.004237086,0.019725485,-0.0015142879,-0.0034260054,-0.005278514,0.027719498,-0.02699277,0.015248319,0.023333173,-0.0012417648,0.045316707,-0.04477166,-0.004717246,-0.021698033,0.00963564,-0.042980794,0.03807538,0.030263048,-0.009369605,0.027459953,-0.0013869482,-0.051961083,-0.03581733,0.029354637,0.03965861,-0.0021055657,-0.008844025,-0.0000075531902,0.008928378,-0.0042597963,0.0061155492,0.0037082615,0.00071253453,0.019985031,0.014378841,0.00089867756,-0.014184182,0.020309463,0.013522339,-0.0069493405,-0.024319448,-0.016351389,0.0017422016,0.026966816,-0.007896683,-0.025591223,-0.041812837,-0.010693289,0.007994013,-0.008603945,0.0036011988,-0.016377345,-0.021568261,0.0116146775,-0.036933377,0.038957834,-0.042539567,0.000722673,0.017246822,-0.008649366,-0.0764103,0.022969808,0.029718002,-0.044226617,-0.015884208,0.0077020237,0.0011290245,0.013911658,-0.017143004,-0.025720995,-0.005479662,-0.03605092,0.010849017,-0.031716503,0.013262793,-0.0071375114,0.021036193,0.008214626,0.036985286,-0.008668832,-0.025591223,0.014028454,-0.009187924,0.047107574,-0.012776145,0.026888952,-0.021659102,0.052324448,0.028472181,-0.009953584,0.015494888,0.025046175,-0.03628451,0.020244578,0.01663689,0.02823859,0.003987273,0.03599901,-0.010868483,-0.0048048426,0.027382089,0.000118012256,-0.012743702,-0.01576741,0.02464388,-0.01720789,-0.013457453,0.027408043,-0.022424763,0.047756437,-0.007922637,-0.025396563,-0.015624661,-0.02727827,0.06400401,0.039035697,-0.021088101,0.017298732,-0.013846772,-0.042980794,-0.004204643,0.0044804104,0.009161969,-0.0017000254,0.0037309718,-0.027018724,-0.04113802,-0.00577814,0.0050903433,-0.0047594225,0.013924636,0.016546048,0.007111557,-0.01088146,0.030081365,0.021062147,0.033637144,-0.005398554,-0.024111811,0.0060376856,-0.011166961,0.036128785,-0.041890703,-0.019738464,-0.0014096585,0.026421769,0.0133276805,0.0031242834,0.016987277,0.016896436,0.010265039,-0.045238845,-0.022827059,0.0065502888,0.0065989536,0.017026208,-0.006031197,0.0053823325,0.028783636,-0.0009124659,0.023722492,-0.00039357698,-0.0038769664,-0.009836788,-0.025539313,-0.029017227,0.007968058,0.028472181,0.027459953,0.01677964,-0.02699277,0.009382583,-0.02517595,0.019543804,0.023618674,0.013249816,0.026395814,0.022502627,0.010576494,-0.0014777893,-0.027356135,0.019790372,-0.0056353896,-0.00017539623,0.029043183,0.026162224,-0.010654357,0.03400051,0.020581987,-0.020192668,-0.008162717,-0.035635646,0.021023216,0.023372104,-0.019154485,-0.000190604,0.009479913,0.004785377,-0.020192668,0.043785386,0.018648371,-0.00056856766,0.010550539,-0.022606445,-0.025656108,-0.01822012,-0.009142503,0.005119542,-0.012270031,-0.019076621,0.020153737,-0.0040132278,-0.0054958835,-0.030963821,-0.04651062,0.0362326,0.0026165468,-0.024812585,0.0000776103,0.029147001,0.008908912,0.06462692,0.027200406,-0.0068584993,0.008746696,-0.04741903,-0.0060539073,-0.014456704,-0.020127783,0.008980287,-0.003413028,-0.034934875,0.025253812,-0.010784131,-0.025630154,0.0015532197,0.028134773,0.031716503,-0.0070401817,0.012691793,-0.026149245,0.006923386,-0.02219117,0.011082608,0.035505876,-0.00063061534,0.028679818,-0.0049735475,-0.035687555,-0.016182685,-0.0050416784,0.03978838,0.0036498636,0.020984283,-0.0021006993,0.012665838,-0.021451466,0.009681061,-0.026914906,-0.014080363,0.007111557,0.018609438,0.0077085122,-0.013691044,0.012600952,-0.0118288025,-0.028991273,0.026421769,-0.02176292,0.0038315458,0.0029572006,0.0025111062,-0.034882963,0.021905672,0.035350148,0.010466187,-0.044745706,-0.006572999,0.023475923,0.0037893697,0.0037536821,-0.011679564,-0.006793613,0.04684803,-0.025720995,0.045290753,0.017194914,-0.0077798874,-0.022995764,-0.0090711275,0.03322187,-0.015468934,0.0015491644,-0.0010763042,0.05580236,-0.020465191,0.0237744,0.02076367,0.034493644,0.0073711025,-0.002136387,0.0051844288,-0.019362122,-0.033715006,-0.019764418,-0.031379096,0.016818572,0.025253812,0.002016347,0.011017722,-0.00047123796,0.007987524,0.040592972,0.059851278,0.013236839,-0.05471227,-0.01711705,0.013898681,-0.006605442,0.0072737727,-0.0029961325,0.006251811,0.0033578747,-0.00867532,-0.0065146014,-0.011017722,-0.020127783,0.03527228,-0.0007636326,-0.035739467,-0.031353142,0.0076955347,0.009103571,0.0043668593,-0.017908664,0.011861246,-0.021023216,-0.0126853045,-0.010219619,-0.010557028,-0.014197159,-0.001917395,-0.05953982,-0.017130027,0.012620417,0.02272324,-0.0130746225,-0.012815077,0.014002499,-0.04837935,0.025474427,0.004898928,-0.01802546,-0.00048421524,0.00104305,-0.0020244578,-0.030185184,0.00963564,0.013872727,-0.028783636,-0.031612687,-0.015365115,0.01256202,0.01572848,0.0026846775,0.013794863,0.00704667,0.032858506,-0.002981533,-0.021010237,-0.027433997,-0.030314958,0.016546048,0.0045388085,-0.03283255,0.021075124,0.007468432,-0.038490653,-0.018323937,0.008091343,-0.027485907,0.015663592,0.00031632153,-0.0076306486,-0.007851263,0.0074814097,0.01903769,-0.018856008,0.016753685,-0.0070596477,-0.0071375114,-0.027304225,-0.00405216,0.0035363124,0.002087722,0.03470128,-0.0126853045,-0.016818572,-0.007066136,0.016325435,0.0067481925,-0.03283255,-0.030989775,0.0145735005,0.030470684,-0.028991273,0.013126532,-0.007825308,-0.031716503,-0.0054829065,0.07028502,-0.01083604,-0.029121045,0.045186933,-0.0036109318,-0.019790372,0.014807091,0.03015923,-0.010336414,-0.017480414,-0.005148741,-0.0001348422,0.0141452495,-0.02421563,-0.006813079,-0.010712756,0.004042427,0.013794863,0.035687555,-0.036829557,0.017052162,0.030237094,0.018401802,0.00024048546,-0.0041689556,-0.020971306,0.021581238,-0.005859248,-0.0026522344,0.032002006,0.034286007,0.011809337,-0.023229355,0.014742205,-0.033585235,0.002579237,0.0036595967,-0.005379088,-0.00006306153,-0.029069137,0.024007993,-0.01178987,0.009674572,0.0003246351,0.0061382595,0.0038380343,-0.02195758,0.0076306486,-0.010109311,-0.022217127,-0.02953632,0.0022402052,0.007883705,-0.018959826,-0.0020715005,-0.0038120798,0.013574249,0.024916403,0.026149245,0.004243575,-0.02085451,0.03558374,-0.009791368,-0.010453209,0.035220373,0.015442979,0.022853013,-0.009213878,0.0060052425,0.02286599,0.0046912916,-0.015923139,0.0118872,0.021010237,-0.00949289,0.047133528,-0.0016343278,-0.0018930626,0.013989522,0.008409286,0.0010973924,-0.020387327,-0.007929126,0.00877265,-0.021620171,0.023696538,0.044512115,-0.015105569,-0.014690296,0.016026957,0.010135266,-0.00031267165,0.022619423,-0.03039282,0.021983534,-0.001164712,0.0011371353,0.005726231,-0.013262793,-0.034934875,-0.005304469,0.0010909038,0.019777395,0.01184178,-0.036518104,-0.0035071135,0.019452963,0.0097264815,-0.023268286,-0.029354637,-0.017558279,0.006942852,0.01624757,0.0022093842,-0.006352385,-0.031041685,-0.0015913405,-0.039425015,-0.029224865,0.00023054972,-0.011037188,0.03747842,0.0021590972,0.0061447485,0.022411786,-0.003361119,0.029172955,-0.0018476421,0.038334925,0.018129278,0.0041786884,0.03496083,0.0101158,0.006264788,-0.0039905175,0.015131524,-0.04318843,-0.014262045,-0.00030253315,0.03010732,0.013626158,0.0065600215,-0.0031129282,0.0070207156,0.008415774,0.031145504,0.010174198,-0.027070634,-0.00939556,0.011504371,-0.014936864,-0.008967309,-0.007831796,0.013418521,0.037270784,-0.01822012,0.0069688065,-0.0175453,0.011835291,0.019998008,-0.007689046,-0.0015613306,-0.02852409,-0.031249322,0.018635392,0.0014242579,-0.017726982,-0.013197907,-0.014599455,0.005048167,-0.032858506,0.0010422389,-0.02722636,0.0011866112,0.0019936366,0.00036052542,0.0019644378,0.005216872,-0.006813079,-0.0021753188,-0.026214132,-0.024475174,0.0022061397,0.014794114,0.0004797543,-0.015559775,-0.013204396,-0.029432502,0.008156229,-0.0057359636,-0.00048745956,0.0008058088,0.010323437,-0.02852409,-0.0038996765,0.024514107,0.016649866,-0.0048891953,0.019024711,0.0132757705,-0.038179196,0.0068390337,-0.037192922,-0.018531574,-0.013457453,-0.0040975804,-0.029614182,0.018868985,-0.011484904,-0.017376596,-0.0031956586,0.022567512,0.026733223,-0.01624757,0.024410289,0.019686554,-0.019595712,0.033533327,-0.016649866,0.04176093,0.009694038,-0.018881962,0.015481911,-0.06768956,0.0006882021,0.031171458,0.037660103,-0.008960821,-0.002710632,0.0040262053,0.021918649,0.0059371116,-0.01779187,0.0043019727,0.021581238,0.008448218,-0.041734975,0.02498129,-0.02056901,0.014949841,0.010634892,0.004136512,-0.03111955,-0.04651062,-0.0029426012,0.01184178,-0.008292491,0.004980036,-0.0036076875,-0.0031048174,-0.0013536939,-0.008733719,0.0258897,-0.013678067,0.008422263,-0.007955081,-0.0022207394,-0.013366612,0.016429253,-0.00012602168,0.02464388,-0.0044512115,-0.0029361127,-0.012964316,-0.010654357,0.007377591,-0.019504871,0.006472425,0.0007064514,0.011089097,-0.035687555,0.03797156,-0.038464695,0.026149245,0.004717246,0.0028063396,0.006485402,-0.029069137,0.019777395,-0.05907264,0.026162224,0.009051662,0.028394317,0.009097083,0.00014234468,-0.006462692,-0.005726231,-0.015157479,0.03241728,0.004512854,-0.015663592,0.008720741,-0.0067092604,-0.03441578,0.02919891,0.035324194,-0.027823316,-0.04318843,-0.011037188,0.029640138,0.027408043,-0.02071176,0.052480172,-0.023852265,0.008370354,0.0025029953,-0.003159971,-0.0071310224,-0.028757682,0.0028760927,-0.005051411,-0.04544648,-0.01059596,0.016455207,0.012633394,0.023501879,0.026019473,0.026862998,-0.0077085122,0.00084027974,-0.0046880473,0.029069137,0.003292988,-0.01030397,0.021088101,-0.0015532197,0.0070012496,0.036310468,-0.0045323195,0.01246469,0.012581485,0.01030397,-0.025033198,0.0015816076,-0.0028679818,0.002739831,-0.0000877995,-0.027096588,-0.0058852024,0.012912407,-0.01969953,-0.009363117,-0.016429253,-0.016273526,-0.003503869,0.036518104,0.063692555,-0.015066638,0.019024711,-0.009343651,-0.0015207765,-0.017311709,-0.025396563,0.008467684,0.027304225,0.02795309,0.026811088,-0.016403299,0.008435241,0.010466187,-0.00016860342,-0.020244578,0.054348905,-0.0007413279,-0.018998757,0.044122797,0.0029150245,-0.04199452,0.019725485,0.04152734,0.03311805,0.023281263,0.020724738,0.022956831,-0.046484664,-0.0037179946,-0.015676571,-0.042695295,-0.012834543,-0.034986783,0.0452648,-0.01711705,0.009895186,-0.040541064,0.0076630916,-0.024877472,-0.013081112,0.0057456964,0.027875226]},{"id":"interface-ReactionCollectorOptions","type":"interface","source":"main","text":"Interface: ReactionCollectorOptions\nProperties: filter: (reaction: MessageReaction, user: User) => boolean, max: number, time: number","meta":{"url":"/docs/typedefs/ReactionCollectorOptions"},"embedding":[-0.00019405886,-0.0003368845,-0.0133030685,0.034100823,-0.042371746,0.008197313,-0.018348599,-0.003667043,-0.0136242695,0.018455666,0.031852417,-0.07682054,0.006092779,0.044218652,0.030085813,0.00093265355,0.011683681,0.027087938,0.007554912,0.07409033,-0.018295065,-0.0057414654,0.056745484,-0.0036971557,-0.026137719,-0.022751728,0.026137719,0.067666315,-0.025133967,-0.025682686,0.019606635,-0.025803136,-0.008551973,0.042612646,-0.029122211,-0.023889314,0.01628756,0.004235836,-0.036081564,0.030487314,-0.052569874,-0.030005513,-0.013657728,0.040605143,-0.047136225,0.01903115,-0.0048347423,-0.006721797,-0.0027703573,0.0071935607,-0.036054797,-0.005048876,-0.020663923,0.049518466,0.03300339,-0.058886822,-0.035733595,0.019459419,-0.0032120086,0.0064106337,-0.0063437168,-0.024290815,0.014039154,-0.004727675,-0.014159604,-0.0054202643,-0.031477682,0.04381715,0.02046317,0.034930594,0.010392186,-0.041408144,-0.009876926,0.008150471,0.018402133,0.03142415,0.015738841,-0.061188765,0.00031283626,-0.03715223,-0.011824206,0.015471174,-0.05572835,-0.029095445,-0.0057146987,-0.037553735,-0.0071199522,-0.0128480345,-0.025120584,-0.028693942,-0.034529094,0.019713702,-0.068736985,0.0043863994,0.014721706,-0.0634907,0.010907446,0.0009100691,-0.020382872,0.06525731,0.02117249,-0.08501116,-0.0034495634,-0.0028540033,0.009408508,0.022256542,-0.019686935,0.011094813,-0.030299947,0.006484242,0.01386517,-0.022885561,-0.02823891,-0.0036770806,-0.008371297,-0.03297662,-0.015939593,0.020208888,-0.020423021,-0.014454039,-0.031504452,-0.044031285,0.033699322,-0.007320703,-0.013651037,-0.022296693,0.00012745569,-0.04234498,-0.021948725,0.030246414,0.01505629,-0.0012806212,0.0028339284,-0.018187998,0.018937467,-0.019205134,0.02880101,-0.0041454984,-0.0076485956,0.0022366955,0.012787809,0.033271056,-0.0038677936,0.026003886,-0.017906947,0.019191751,-0.05401528,0.020918205,0.032521587,-0.0036737348,-0.038544104,0.007447845,-0.025642535,0.031798884,0.019325584,-0.009053849,0.034502324,0.037955236,-0.015725458,-0.04635999,0.04178288,-0.027516207,-0.043442417,-0.037473433,-0.029095445,0.011804132,-0.0005654473,0.0046105706,-0.042398512,0.088169634,0.056424282,-0.0109007545,-0.029416645,-0.024210515,-0.022136092,-0.00037327054,-0.037874933,0.0022132746,-0.017505446,0.027087938,0.053881444,-0.003881177,-0.042478815,-0.06868345,0.007186869,-0.012787809,-0.042264678,-0.012573675,0.02880101,-0.05546068,0.0074143866,0.04456662,-0.00889994,0.008130397,0.008284305,-0.04258588,0.032039784,-0.013517203,-0.02896161,-0.055353615,-0.0032722338,0.0034462176,0.055193014,-0.013630961,-0.012807884,0.00989031,-0.0026632904,-0.012038341,0.028158609,-0.019887686,0.04341565,0.017987248,-0.004158882,-0.000213402,-0.03867794,0.0033642445,-0.020904822,-0.025334718,-0.022751728,0.0095691085,-0.04676149,0.017973864,0.09089984,-0.03865117,-0.005892028,0.027864175,0.036697198,0.0062634167,-0.028479809,0.016863044,-0.051633038,-0.025589002,-0.024759233,-0.06830872,0.028479809,-0.017960481,0.012700818,0.010753537,0.025910202,-0.067184515,-0.027542973,-0.02947018,0.009361667,0.054095577,-0.020101821,0.015698692,-0.0016620471,0.011134963,-0.029737845,0.01966017,-0.0026967488,0.030808516,0.03337812,-0.05326581,0.022350226,-0.039293572,-0.019272052,0.019887686,-0.0017105618,-0.004473391,0.025508702,-0.03353872,-0.0064675133,-0.011616765,-0.022457292,-0.014467422,0.040738974,-0.008056788,-0.006146312,-0.00212461,0.0185092,-0.0033458422,0.038303204,-0.0037607267,-0.031317085,0.045690823,0.0623665,0.008464981,-0.03715223,0.023139846,-0.028774243,0.0017615859,0.040846042,0.012406383,-0.013918703,-0.008665731,0.042478815,-0.015190124,0.0628483,0.020730838,0.010479178,-0.019405885,0.04716299,-0.016354477,-0.018857166,-0.0024023147,0.016729211,-0.037286066,0.035225026,-0.022885561,0.010064294,-0.0248663,0.030915583,-0.052328974,0.036536597,0.031772118,0.05867269,-0.0015892751,0.026338471,-0.004831396,0.0037205766,-0.048554864,-0.019419268,-0.035091195,-0.02645892,-0.009368358,0.040150106,0.030835282,-0.00623665,0.007186869,0.037071932,-0.028988378,0.017237779,-0.008592123,-0.004429895,-0.055942483,0.042933848,-0.047055926,0.06407957,0.04242528,-0.0022216393,-0.03388669,-0.040203642,0.021466924,0.042960614,-0.018402133,-0.0033575527,-0.017505446,-0.02617787,0.062741235,0.026646288,-0.035840664,-0.046252925,0.0007461228,0.0086456565,0.004222453,0.012627209,-0.00032851988,0.021386623,-0.0192319,-0.028426277,0.04274648,-0.060867563,-0.029818146,0.04338888,-0.027998008,0.021587374,-0.042800013,-0.048635162,0.019807385,0.0029593974,0.035626527,0.01879025,-0.025856668,0.029978747,0.0063972506,-0.10294487,-0.04470045,0.03650983,-0.029443411,0.011449472,-0.007956413,-0.0006177261,0.0035566303,-0.0048113214,0.0042960616,-0.005577519,-0.018870551,0.035385627,0.001536578,0.023327213,0.01473509,-0.02947018,-0.024705699,-0.0009033774,-0.016033277,-0.02649907,0.01120188,-0.051873937,0.021386623,0.06825518,-0.034181125,-0.03832997,-0.016983496,0.060599893,0.024973366,0.009856851,0.08410109,0.03832997,0.035733595,0.0057080067,-0.0061898082,-0.00298951,0.047296826,-0.017438529,0.008986932,-0.02034272,0.03353872,0.04818013,-0.026512453,0.05556775,-0.0018117736,0.025254417,0.02355473,0.021199256,-0.03873147,-0.027302073,0.033351354,0.006149658,-0.007929646,-0.014842156,-0.0011074737,-0.0060091326,-0.02995198,-0.0028757514,0.010981054,0.05024117,0.0013308087,-0.020128587,-0.02200226,-0.052784007,0.02232346,0.040712208,0.011690373,-0.004393091,-0.031557985,0.055032413,0.002693403,-0.018174615,0.033833157,0.0058217654,0.018776868,0.044941355,0.026365237,-0.049357865,0.006069358,0.0025344754,-0.030942349,0.015859293,-0.03535886,-0.06648858,0.010358728,-0.019365735,0.013945471,-0.04092634,-0.050589133,0.0034428716,0.04445955,0.00989031,0.0028322556,0.01505629,0.014587873,0.03027318,0.040846042,0.013396752,0.012172174,-0.020811139,0.0043328656,0.017532213,0.033833157,-0.030567614,-0.037232533,0.001549125,0.012941718,0.009368358,-0.0489296,0.05398851,0.012660667,0.0073876195,-0.005918795,0.034475558,0.03841027,0.0059857117,-0.017652664,0.019057918,0.08602829,0.023809014,-0.031879187,-0.057869688,0.019486185,0.028265676,0.016648911,-0.024625398,-0.016019892,0.021814892,-0.005048876,-0.006664918,-0.0070731104,0.004921734,-0.022510827,0.02466555,-0.023153229,-0.01505629,0.0051592886,0.026084187,0.03126355,-0.004148844,0.004178957,-0.03503766,0.042157613,-0.015658543,0.019365735,-0.03233422,-0.024223898,-0.033351354,-0.005199439,-0.014146221,-0.006239996,-0.0026147757,0.023407513,0.048046295,-0.021105573,-0.005825111,0.02260451,-0.0046373373,0.010044218,-0.010519328,-0.034475558,-0.0248663,0.007019577,-0.004182303,-0.025682686,-0.016474927,0.021721208,-0.028988378,-0.020570239,-0.03618863,0.015538092,0.005831803,-0.03948094,0.0033257671,-0.025334718,0.016381243,-0.03364579,-0.015832525,0.033940222,0.026405387,0.036456298,-0.011148347,0.002480942,-0.011790748,0.0010347017,0.03011258,-0.028934844,0.0119111985,0.014400505,0.00068882527,0.020583622,-0.0065678884,-0.029577246,-0.001262219,-0.023380745,0.021828275,-0.01628756,-0.035492696,0.008966858,0.019834153,0.022269925,-0.024438031,0.024183748,-0.013055476,-0.008960166,-0.037366368,-0.007019577,0.025736218,-0.00186698,-0.032120086,-0.0018101006,-0.0017247817,-0.02872071,0.0016904868,0.002951033,0.027998008,0.025441784,-0.006681647,-0.029496945,-0.00075030513,0.045155488,-0.032949854,0.013122394,0.022577744,-0.0012898222,0.0501341,0.033217523,-0.039802138,-0.0043997825,0.0078560375,0.0374199,-0.0074143866,0.00030781748,0.047644794,0.007601754,-0.030540848,-0.0185092,0.035894196,0.05958276,0.018335216,-0.011656915,-0.043576248,0.026686437,-0.02823891,-0.0066046924,-0.037553735,-0.027235156,-0.028319208,0.0061396207,-0.0033190756,-0.02137324,0.007715512,0.0000680147,-0.0628483,0.033779625,-0.02728869,0.008157164,-0.0137714865,0.014427272,-0.029443411,-0.03222715,0.04012334,0.010720079,-0.0068857432,0.026632905,-0.020931588,-0.015939593,0.02375548,-0.039989505,0.012761042,0.045664053,-0.022885561,0.010238278,0.047216527,-0.014547722,0.04103341,-0.034261424,0.0004251311,0.044914585,-0.015283807,-0.01501614,-0.028747477,0.014815389,-0.040498074,-0.016006509,-0.01366442,-0.01943265,-0.024317581,0.010853913,0.022350226,0.018080931,0.0061663873,-0.018094314,0.030969115,0.009917077,0.01318931,-0.0025127276,-0.022858795,0.022149475,0.00048180128,-0.021747975,-0.021386623,0.02129294,0.012493375,0.041756112,-0.009649409,0.012667359,0.01933897,-0.041488443,0.015886059,-0.015952976,-0.032200385,0.010004069,0.011329022,0.015564858,-0.051392138,-0.0055875564,-0.009388434,-0.025963737,0.005554098,-0.008839715,-0.030540848,0.023327213,0.0003038443,-0.0011651895,0.020690689,0.0026482341,0.040257175,-0.0008326965,0.017773114,0.0036168555,-0.00324714,-0.023380745,-0.015591625,0.0030146039,-0.013035402,0.0025947008,0.017840032,-0.0033441694,0.023621647,-0.0020275805,0.056584883,0.00091090554,-0.02240376,0.028345976,-0.015698692,-0.0058016903,-0.019874303,0.026954105,0.03634923,0.0063437168,0.03921327,0.01739838,0.0088798655,0.023380745,-0.042559113,0.040712208,-0.026967488,0.037794635,0.011589997,0.051633038,-0.030487314,0.029015144,0.014815389,-0.018977618,-0.00568124,0.025013518,-0.0058886823,0.02177474,0.018442282,-0.0068188263,0.03134385,0.0021313014,-0.008511823,0.024906449,0.023420896,0.002924266,-0.02268481,-0.016060043,-0.01370457,0.026003886,-0.03586743,-0.0033140567,-0.03174535,0.0105059445,-0.017023645,0.043308582,0.010077677,-0.034823526,0.006939277,-0.022417143,-0.051820405,-0.021346474,0.028372742,0.04004304,-0.01862965,-0.024223898,0.015350725,0.039106205,-0.014360355,0.007722204,0.016916579,-0.011603381,0.029148977,0.006490934,0.005256318,-0.03222715,0.030219648,-0.0054169185,-0.008491748,-0.025829902,-0.024518332,0.002460867,0.02343428,-0.013758103,-0.040846042,-0.03905267,-0.018723333,-0.009709634,-0.0067552556,-0.011355788,0.025856668,-0.0073943115,0.0058652614,-0.026539221,0.010144594,-0.052569874,0.010479178,0.04660089,-0.025589002,-0.06370483,0.04520902,0.032120086,-0.010653161,-0.026338471,0.008264231,0.014266672,0.018522583,-0.04906343,-0.019914454,-0.007380928,-0.015390875,0.0038544103,-0.03182565,0.028319208,0.0071801776,0.016180493,0.019419268,0.04480752,0.0014035808,-0.03554623,0.012814576,-0.03776787,0.052971374,-0.022042409,0.031129716,-0.011422706,0.046493825,0.01283465,-0.008317764,0.013423519,0.015819142,-0.00064700225,0.037741102,0.023353979,0.02856011,0.0106665455,0.012426458,-0.028185375,0.0059455615,0.016528461,-0.016903196,0.00055331865,0.0060760495,0.017572364,-0.020985123,-0.0013341546,0.022470677,-0.010512636,0.033030156,-0.013296377,0.0016377898,0.0012061761,-0.019633403,0.024250664,0.05168657,-0.016193876,0.022992628,-0.025682686,-0.04218438,-0.0019556447,0.041247543,0.046413522,-0.026405387,0.008237463,-0.025160734,-0.047403894,-0.010459103,0.019071301,-0.021921959,-0.0020376178,-0.0049485005,0.012874801,0.01707718,0.033940222,0.010519328,0.030219648,-0.014440655,-0.018482432,-0.0060091326,-0.0050388384,0.0136242695,-0.038035534,-0.042023778,0.00534331,0.038704704,-0.013329836,0.00030363517,0.028158609,-0.018161232,0.030353481,-0.045262553,-0.010244969,0.0124532245,-0.0024508294,0.014721706,-0.020516705,0.020623771,0.016501695,-0.005500565,0.009395125,0.008759415,0.0034495634,-0.02264466,-0.016006509,-0.032200385,0.011395939,0.028747477,0.039507706,0.027034406,-0.026954105,-0.009977302,-0.023046162,0.039293572,0.03519826,0.02617787,0.035385627,0.030942349,0.006761947,0.01132233,-0.0045871497,-0.006765293,-0.010499253,-0.012720892,0.0048247045,0.020597005,-0.004664104,-0.009020391,0.020878056,-0.010418952,-0.009575801,-0.04400452,0.026472304,0.00508568,0.00534331,-0.0015942939,0.024491565,-0.015952976,-0.036884565,0.0256693,0.031076184,0.0249466,0.019646786,-0.0057213902,-0.025401635,0.009047157,-0.012399691,-0.00504553,-0.017692814,-0.01986092,0.028667176,-0.03388669,0.018268298,0.022510827,-0.041916713,0.038356736,-0.0039045978,-0.031129716,-0.0041187317,0.0372593,0.011670298,0.060974628,0.01982077,-0.018361982,-0.00091341493,-0.055514216,-0.009903693,-0.0075749867,0.0043763616,0.01584591,-0.017344845,-0.032200385,0.0059924033,-0.022457292,-0.010057602,0.02355473,0.017840032,0.028292442,0.013450285,0.002398969,-0.010994438,0.021895193,-0.021025272,0.0072270194,0.03889207,-0.0023805667,0.012332775,0.011168421,-0.037607267,-0.01350382,0.005918795,0.030808516,0.02740914,0.009823393,-0.009622643,0.03634923,-0.0056511275,0.014614639,-0.017492063,-0.014775239,0.029978747,-0.0154845575,0.015725458,-0.014213138,0.008311072,-0.014855539,-0.0068355557,0.0037941851,-0.021921959,0.025856668,-0.021199256,0.026271554,-0.028479809,0.0042793322,0.027783874,0.0014654789,-0.031905953,-0.008545281,-0.015511325,0.042452045,0.017585747,-0.012245783,-0.0036804264,0.036402762,-0.02415698,0.018254915,0.036054797,-0.00080007454,-0.030085813,0.016849661,0.03932034,-0.013557353,0.00889994,-0.015712075,0.05647782,-0.017585747,0.027569741,0.02813184,0.041649044,-0.0039982814,0.013068859,-0.0069593517,-0.04510195,-0.022109326,-0.030728215,-0.014467422,0.0076619787,0.01120188,0.0068020974,-0.009435276,0.0047812085,0.009468733,0.0066013467,0.057227287,0.01195804,-0.04702916,-0.020155353,-0.00043412304,-0.015123207,0.015645158,-0.011543156,0.015083057,0.014909073,-0.0030932312,0.013216077,0.012928334,-0.017251162,0.009441967,0.010365419,-0.029229278,-0.0061563496,0.031236783,0.013543969,0.017826648,-0.057976756,0.013396752,-0.025856668,-0.020128587,-0.027757108,-0.017157478,-0.024250664,-0.0046674497,-0.047323592,-0.027516207,-0.003079848,-0.0070061935,0.010084368,-0.013932087,0.013042093,-0.016983496,0.0184289,0.04210408,-0.01318931,0.0135506615,-0.0006327824,0.007300628,-0.04207731,-0.011998191,0.011817515,0.010780304,-0.03297662,0.009810009,-0.0011308946,-0.0014964279,0.020704072,-0.0076887454,0.017759731,0.036777496,0.0020409639,-0.027061172,-0.023099694,-0.023206761,0.02022227,-0.0136242695,-0.021828275,0.0036001264,0.010305194,-0.010860604,-0.020637155,0.027087938,-0.0034428716,0.014654789,-0.017960481,0.0102717355,-0.01862965,0.012627209,0.022109326,0.004453316,-0.0007624338,0.031477682,-0.014641406,-0.01227255,0.006865668,-0.006470859,0.00023588187,0.01513659,-0.008986932,0.00945535,-0.0011434415,0.012801193,-0.004239182,0.0022450602,-0.02888131,0.021065423,0.023982998,-0.015685309,-0.0011434415,0.020998506,-0.025696069,-0.012680742,0.06440077,-0.012212324,-0.03626893,0.03792847,-0.011188497,-0.018268298,0.0037607267,0.042023778,0.002332052,-0.014159604,-0.01624741,-0.01493584,-0.002480942,-0.012700818,-0.022310076,0.02034272,-0.0067686387,-0.0024056607,0.040765744,-0.016662294,0.0030547539,0.028158609,0.02300601,0.025762985,-0.014802006,-0.010853913,0.016314328,-0.0031384001,0.00703296,0.026913956,0.017411763,0.012279241,-0.00073273946,0.0021547223,-0.032628655,-0.009221141,0.007153411,0.025803136,0.007086494,-0.03586743,-0.012212324,-0.018736716,-0.023086311,0.0050622593,0.013129085,0.015457791,-0.042157613,0.012627209,0.0030547539,-0.019633403,-0.02022227,-0.010994438,0.017224396,-0.022885561,0.007682054,-0.007213636,0.021507073,0.004460008,0.020637155,0.014320205,-0.042130847,0.045396388,-0.009120766,0.013617578,0.046333224,-0.0058418405,0.018455666,-0.0025328025,-0.008652348,0.026927339,0.027542973,-0.03289632,0.015163357,0.008966858,0.011228646,0.042478815,-0.0016486638,-0.016394626,0.008598815,-0.001972374,0.021747975,-0.0014612966,-0.0109007545,0.002564588,-0.01382502,0.032708954,0.028105075,0.004195686,-0.03439526,0.017037028,-0.0024240627,-0.01183759,0.02896161,-0.015631774,0.0015993126,-0.020931588,0.008545281,0.011416013,-0.02272496,-0.027462672,-0.0032621962,0.0032387753,0.019098068,-0.013042093,-0.037286066,0.00027686844,0.007715512,-0.0025394943,-0.000046162168,-0.034769993,-0.0069928104,0.0011225301,0.014293438,-0.018295065,-0.042211145,-0.010659853,0.010111135,-0.009917077,-0.014146221,-0.0072069443,-0.011047971,0.021654291,-0.006554505,-0.0049083508,0.01175729,-0.0030898852,0.033297822,0.0051224846,0.01001076,0.029095445,0.031638283,0.017960481,0.022256542,-0.012158791,0.00280047,0.021761358,-0.037874933,-0.022711577,0.0032371024,0.024250664,0.0068857432,-0.0020944972,0.015364108,-0.013236152,0.0073943115,0.01013121,-0.0015215217,-0.014106071,-0.016796129,0.028319208,-0.033271056,-0.018295065,-0.0021145723,-0.012941718,0.03841027,-0.029818146,0.005286431,-0.0058016903,-0.01473509,0.010981054,0.015243657,0.0023069582,-0.020570239,-0.011476239,0.03126355,-0.012874801,-0.015738841,-0.013958854,-0.018254915,0.03964154,-0.007936338,0.0070731104,-0.017170863,-0.023688564,0.034020524,0.016675677,0.0061764247,0.020610388,-0.0048247045,0.013731336,-0.03353872,-0.013236152,0.013530586,0.038115837,0.003988244,-0.021881808,-0.02240376,-0.02904191,0.028453043,0.007334086,-0.0073073194,0.0020024865,0.014855539,-0.021681057,0.030540848,0.009662792,0.019325584,-0.0051157926,0.013256227,-0.0015775646,-0.032762486,0.017706197,-0.054443546,-0.026432155,-0.023742096,-0.019312201,-0.04756449,0.033672556,0.008458289,-0.01473509,0.002230004,0.025602385,0.0153373405,-0.012071799,0.026244787,0.017251162,-0.023153229,0.03881177,-0.038918838,0.027676808,0.00929475,-0.025441784,0.0054269563,-0.061188765,-0.003354207,0.015618391,0.005032147,-0.0028289095,-0.004091965,-0.008404756,0.0052830847,0.020623771,-0.019312201,0.006785368,0.032039784,0.007380928,-0.065096706,0.016515078,-0.026137719,0.0091140745,-0.015163357,0.008230772,-0.045664053,-0.041916713,0.035064425,0.012038341,-0.009843468,-0.004563729,0.004483429,0.012894876,-0.014654789,0.0053065056,0.030139348,-0.01195804,0.0011969751,-0.00044834285,-0.006387213,-0.021011889,0.020610388,0.004215761,-0.0024792692,-0.017425146,-0.0067385263,-0.006280146,0.008960166,-0.0068857432,0.018361982,-0.006363792,0.0062433416,0.009408508,-0.017973864,0.023902697,-0.055246547,0.021480307,0.018375365,-0.006403942,0.021988876,-0.047136225,0.006089433,-0.060171627,0.0070128855,0.036429532,0.018535966,0.0051258304,-0.0022801915,0.014266672,0.0007206108,-0.03233422,0.015738841,0.016193876,-0.026351854,0.019794002,-0.00028711508,-0.010385495,0.01747868,0.032200385,-0.017933715,-0.042291448,-0.022939095,0.022363609,0.031317085,0.0017113984,0.027944475,-0.0382229,0.0033977027,0.024839533,-0.028453043,0.011335714,-0.010077677,0.026780121,-0.021520458,-0.00814378,-0.021908576,-0.01132233,-0.007079802,0.023099694,-0.0015616718,0.036643665,-0.024919834,0.001536578,0.0008096938,0.029523712,-0.0039547854,-0.012178866,0.021199256,-0.009589184,0.02240376,0.027569741,0.03543916,-0.004011665,0.033859923,-0.012085183,-0.013236152,0.0007084821,0.010492561,0.0011576614,0.005032147,-0.025535468,-0.01879025,0.005644436,-0.015605008,-0.012981868,-0.020797756,-0.003797531,-0.008853098,0.033271056,0.050027035,-0.0135506615,0.039159738,0.008873174,-0.0038142602,0.023394128,-0.010532712,-0.01191789,0.015671926,0.02947018,0.03011258,-0.0059890575,-0.0069058184,0.043442417,0.0084850555,-0.026325086,0.039802138,-0.0019205135,-0.00332744,0.03479676,0.0087192645,-0.0379017,0.016849661,0.013436902,0.02177474,0.0116769895,0.004647375,-0.011436089,-0.025294567,0.014454039,-0.013891937,-0.008652348,-0.012091874,-0.034930594,0.040337473,-0.008391372,-0.0046273,-0.010927521,0.018535966,-0.016100192,-0.009073924,0.016702445,0.025575617]},{"id":"interface-ReadonlyCollection","type":"interface","source":"main","text":"Interface: ReadonlyCollection\nDescription: Read-only view of a Collection (e.g. for method return types).","meta":{"url":"/docs/typedefs/ReadonlyCollection"},"embedding":[0.010734521,-0.009993202,-0.010302572,0.0017205003,0.011866928,-0.0007402237,-0.01804847,-0.019099157,-0.020873653,0.0043837004,-0.008078617,-0.052067388,0.039902765,0.03492951,0.03801153,0.00036682846,0.043101523,-0.0053818533,0.015760308,0.09544909,-0.028672086,-0.0036102778,0.019857988,0.013145264,-0.01487306,-0.030539975,-0.050292894,-0.016250629,0.01891237,-0.01128905,0.07728388,-0.02860204,0.012024531,0.056923896,0.01386907,0.012141274,0.058838483,0.007144673,-0.00594222,0.04100015,-0.019075809,0.010699498,0.010641126,-0.007383996,0.016495788,0.043568496,0.08223378,-0.018620512,0.0021699609,0.0038262524,-0.024726171,-0.0013790269,-0.015643565,0.0022137396,0.017172897,-0.035022907,-0.039272353,0.0292558,-0.00415897,0.004640535,-0.018795626,-0.0028645818,-0.029722773,0.017418059,-0.01905246,0.009397813,-0.030353185,0.08059938,-0.0054956777,0.0048448355,0.0002612125,-0.0061990544,-0.039225653,0.015106547,0.034392495,0.0022151987,0.020091474,0.017056156,0.0225781,0.0076641794,0.019764593,0.034462538,0.006158194,-0.037381116,0.020803606,-0.015923748,0.012701641,0.017943403,-0.003038237,-0.00315498,-0.0484717,0.025029704,-0.038501848,-0.03607359,-0.008685681,0.015164918,-0.032664698,0.01848042,-0.02743461,0.045202896,0.051273536,-0.012736663,0.015258312,-0.029045664,0.025356583,0.023290232,-0.02284661,-0.022543076,-0.05365509,0.0121296,-0.06509591,-0.041887395,0.037404463,-0.00030316703,0.012047879,-0.011049727,-0.020149846,0.00956709,-0.032080982,-0.027457958,-0.00895419,0.007775085,0.01514157,0.016600857,-0.016951086,-0.016507464,0.038058225,-0.042844687,-0.027107729,-0.05047968,0.07401507,-0.034299098,-0.036727354,-0.02442264,0.0142193,-0.0046901507,0.018246934,0.01413758,-0.018865671,-0.035326436,0.02274154,0.0008996509,0.048798583,0.04732762,0.023430323,0.058418207,-0.037707996,0.020885326,0.049265552,0.05384188,0.022940002,0.040556524,0.0047222553,0.022636471,-0.032524604,-0.0071796956,-0.010349269,0.022286242,0.016192257,-0.0057174894,0.032337815,-0.03028314,-0.030820157,0.016892714,-0.05286124,-0.031147037,-0.0108454265,0.0005691222,-0.028345205,0.0102442,0.0012527985,0.035559922,-0.034042265,-0.0067185606,-0.024329245,0.011043889,0.009748043,-0.023278559,0.00086025015,0.03826836,0.008411335,0.02909236,-0.007734225,-0.0309369,0.0401129,0.009561254,-0.018959066,-0.06005261,-0.00991732,-0.062107287,-0.035186347,0.07611645,-0.031520616,0.045226246,-0.022391312,-0.048191518,0.008539752,-0.015024827,0.01362391,-0.06883168,-0.015398405,0.046580464,0.026337225,-0.033201713,0.043801982,0.034485888,0.019367667,-0.005463573,-0.023512045,-0.04447909,0.016017143,0.04111689,-0.020395005,-0.009637136,0.03600355,0.007856805,0.04795803,0.00895419,0.013834048,0.043381706,0.01975292,0.005527782,0.07938525,0.0146279,0.046066795,0.015877051,-0.0071621845,-0.01972957,0.0023436162,-0.021457367,-0.02333693,0.025216492,-0.011224842,0.0058634183,0.02165583,0.01124819,-0.032384515,0.0056678737,-0.016881041,-0.061126646,-0.0004892262,-0.01598212,-0.013437121,0.027971627,0.017838333,-0.013962465,0.01706783,-0.019344319,-0.032851487,0.021130487,0.036750704,0.02577686,0.012514852,-0.031917542,-0.02659406,0.023722181,0.0015030664,0.047467712,0.022531403,0.0318008,-0.02390897,-0.06841141,0.013997488,-0.017429734,-0.044432394,-0.010028225,0.052207477,-0.028228462,0.04149047,0.052814543,0.028672086,0.057110686,0.050573077,0.014522832,-0.046417024,-0.016682578,0.010226688,-0.028065022,-0.03780139,0.006152357,-0.021469042,0.0025158122,-0.003540232,0.05267445,0.018970741,0.0007836375,-0.023535393,0.0031841658,0.025683464,0.034509238,-0.00903591,-0.028998965,0.058231417,-0.00026321903,-0.023512045,0.023570416,0.041093543,-0.013413773,0.10067918,0.003747451,0.005857581,0.010956332,0.042541157,-0.024165805,0.019332644,-0.02960603,0.011464165,-0.018982414,-0.012141274,-0.00928107,-0.02141067,0.006911187,-0.087183684,-0.014686272,-0.029115709,0.0083588,0.020009754,-0.016834343,0.059445545,0.031824145,0.004949904,-0.009993202,0.02979282,0.0029346277,-0.006765258,0.0070571154,-0.0060414514,-0.004021797,0.03731107,-0.018422049,-0.0045588147,-0.04146712,-0.016075514,-0.008790749,0.031123688,-0.06869159,-0.022216197,0.01487306,0.010512709,-0.010559406,0.0011893195,0.014009163,-0.021282252,0.03399557,0.00395467,-0.036330428,-0.06476903,0.057764445,0.011761859,-0.012187971,0.002083863,-0.008230383,-0.031076992,-0.033061624,-0.03497621,0.012806709,0.005775861,-0.024189154,-0.016238954,0.024726171,-0.017009458,-0.00084565725,0.0021130487,0.0063741687,0.0032542117,0.0100398995,-0.034649327,-0.0013950791,0.011230678,-0.03061002,0.039365746,0.045553125,-0.00004304899,-0.037614603,0.022811586,-0.034812767,-0.0021787167,-0.018538792,0.030353185,-0.016974434,-0.044082165,0.016682578,-0.003149143,0.022111127,0.058138024,0.031310476,-0.018176887,0.00919935,-0.06140683,0.011522536,0.0148847345,0.013880745,-0.014417763,0.00710965,0.008399661,-0.017184572,-0.029185755,0.037264373,0.040229645,0.011131447,0.010728683,-0.022834934,0.027224472,0.013226984,0.026033694,0.00012084727,0.02458608,0.026710803,0.07172691,-0.054122064,0.0014184277,0.022869958,0.04263455,0.032080982,0.023628786,-0.016414069,0.009140979,-0.0087849125,0.020791931,-0.013810699,-0.0009850193,-0.009164327,-0.056130044,-0.016857691,0.032664698,0.028041674,0.043638542,-0.013530516,-0.0501528,-0.05099335,-0.01016248,0.037591252,0.01899409,-0.0034468377,0.02643062,0.02306842,0.046090145,0.003890461,-0.01048936,0.0033446874,0.029582681,-0.03327176,-0.050713167,0.022951677,-0.0334352,-0.024842914,-0.011055564,-0.023780553,-0.018538792,-0.009771391,-0.025543373,0.07069957,0.021539086,0.035770062,-0.018270282,-0.02241466,-0.024516035,-0.006339146,-0.005154204,-0.0032688046,0.014336043,0.019110832,0.0067185606,0.021375647,0.03677405,0.008119477,0.018760603,-0.0057350006,0.024469336,-0.04751441,-0.0013323297,0.0048973695,0.039715976,0.026687454,-0.006776932,-0.0033913846,0.01956613,-0.062294073,-0.02759805,-0.025846904,0.032291118,-0.01774494,-0.025169795,-0.03110034,0.056970593,0.12514852,0.03079681,0.0153867295,0.023021724,0.010308408,-0.001825569,-0.002966732,-0.0100398995,-0.010425151,0.03110034,-0.012526526,-0.032221075,-0.04132703,-0.019145856,-0.01132991,0.016577508,0.0028631226,0.011090587,0.0011389741,0.024119107,-0.0075065764,-0.02276489,0.02526319,0.022519728,-0.021795921,-0.002880634,0.05818472,-0.017277967,-0.059538938,-0.019706221,-0.011499187,-0.016262302,-0.014791341,-0.011843579,0.0024457662,0.041443773,-0.0030820158,-0.0028645818,-0.025566721,-0.011662628,-0.010179991,-0.010034063,-0.0037737181,-0.0047339294,0.01020334,-0.044525787,-0.0077225505,-0.010576918,0.03544318,0.006800281,-0.057811145,0.007874317,-0.020698538,-0.018935718,-0.03546653,-0.0041823187,-0.012339737,-0.0035664993,0.0067185606,-0.011726837,0.01872558,-0.00048448352,-0.019928033,0.001237476,0.061967194,-0.02692094,-0.03224442,0.011189818,-0.039202306,0.025683464,0.022391312,0.014697946,-0.003478942,0.03061002,-0.018982414,-0.0342524,0.005828395,0.0153867295,-0.024025714,-0.010460175,0.022636471,-0.021702528,-0.042167578,-0.0068878382,-0.018585488,-0.040579874,0.008160337,-0.020698538,0.072660856,0.027154427,-0.0135772135,0.008767401,-0.013740653,0.009170164,0.041560516,0.008119477,-0.023301907,0.017219596,0.023979016,-0.04193409,0.02825181,0.046697207,0.00017082787,0.018141866,-0.0039284024,-0.0029477612,0.008936678,-0.017896704,0.038058225,-0.018585488,-0.018106842,0.0133670755,0.02331358,-0.01728964,-0.00086900586,0.0076408307,0.05584986,-0.00022819612,0.008726541,0.00035333005,0.0242592,0.016028816,-0.013518842,-0.011650953,0.005460655,-0.010466011,0.029699424,0.019157529,-0.02993291,-0.031870846,-0.006928698,-0.024726171,-0.0065959804,-0.018690558,-0.012421457,-0.005994754,-0.03791813,0.0019700385,0.029465938,0.009257722,0.0004341381,-0.013635585,-0.013016847,-0.017371362,-0.03581676,-0.0032950717,-0.020371657,0.0011506483,0.0075532733,0.022589775,-0.029045664,-0.018013448,0.023838924,0.0058692554,0.00258148,0.027808188,0.000090567046,0.022169499,-0.024445988,0.050619774,-0.01772159,0.044409044,-0.0025245678,-0.037941482,0.007086301,-0.005116263,-0.023687158,0.020932022,-0.008668169,0.010074923,0.0006698131,-0.007658342,0.036540564,-0.019822964,0.042564504,0.024562731,-0.050432984,0.0007099435,-0.02778484,-0.04665051,-0.043405056,0.0006344253,-0.007413182,-0.014569528,0.00035551898,-0.0071329987,-0.0242592,0.028625388,0.011767697,0.011067239,-0.0032425374,0.03163736,0.0318008,-0.03614364,-0.005770024,0.015246638,-0.01061194,-0.012117925,-0.010331757,-0.04732762,-0.020196542,0.009993202,0.030002955,-0.014732969,0.00047791674,0.028672086,0.006344983,0.06668361,0.005924708,-0.023091769,0.009024235,0.021293927,-0.021550762,0.016507464,-0.015865376,0.011691813,-0.015048175,-0.0007033767,0.004325329,0.02366381,0.011108099,-0.011820231,-0.025123097,-0.004278632,-0.034812767,-0.019075809,0.026290528,-0.02878883,0.0005282622,0.017371362,0.007127161,-0.0067535834,0.022799911,0.055756465,0.019064136,-0.03829171,0.00042611203,-0.020430028,-0.01663588,-0.012830058,0.036470518,0.023243535,0.043194916,-0.016017143,-0.010839589,0.0062399143,-0.014114231,-0.003362199,0.022624796,0.016133886,0.0072205556,-0.013799025,0.031543963,0.008101965,-0.0135772135,-0.013693956,-0.008300428,0.047257572,0.03443919,0.011078913,0.031217083,0.017581498,0.050806563,-0.04585666,0.0067068865,-0.0091818385,0.0072205556,-0.004935311,0.039622582,0.019437714,-0.019554455,-0.010635289,-0.02727117,-0.02979282,0.008633146,-0.017032806,-0.007839294,-0.0078217825,0.015596868,0.010664475,0.011866928,0.003945914,-0.028135067,0.022181174,0.015842028,-0.011154795,0.014336043,0.028391901,-0.023757204,0.014441111,0.03462598,0.0154917985,-0.022881633,-0.023617113,0.039015517,0.021644156,-0.003712428,-0.001077684,-0.007903502,0.04501611,0.0047310106,0.0069812327,0.025029704,-0.014312694,-0.0012506096,0.00071979366,-0.034532584,0.026734151,-0.021025417,-0.0012163164,0.023173489,-0.014908084,-0.08568937,0.03616699,0.024889613,0.00622824,0.027644748,0.008755727,0.023080096,0.019519433,0.008066943,-0.040719964,-0.060239397,0.01620393,-0.007646668,-0.04949904,-0.00084857584,-0.018737255,0.02491296,-0.024889613,0.0568772,0.011563396,-0.010232526,-0.013553864,0.007617482,0.061266735,-0.02065184,-0.0068236296,-0.0031053643,0.02290498,-0.00936279,0.015153244,-0.030563323,0.021515738,-0.04060322,0.037871435,0.023325255,-0.036493868,-0.0071796956,0.012981824,-0.003362199,0.024002364,-0.02040668,-0.0044449903,-0.020009754,0.0045763263,0.0025639685,0.018375352,-0.010401803,0.046954043,-0.003397222,-0.004766034,-0.0056912224,-0.040883407,0.010600266,-0.041537166,0.04100015,0.0070279296,-0.005130856,0.022531403,-0.015596868,0.022239545,-0.014336043,-0.00018031325,0.019379342,0.028065022,-0.01221132,-0.03044658,0.035700016,-0.0103434315,-0.029139057,0.01755815,0.04968583,0.016028816,-0.024889613,0.0041881558,-0.004482932,0.02523984,0.03616699,-0.018036796,-0.0044245603,0.029629378,0.006794444,-0.009928994,0.045739915,-0.004442072,0.019367667,0.02075691,-0.024959657,0.012526526,-0.017231269,0.016028816,-0.018200237,0.01874893,0.0028280995,-0.009952342,-0.0056737107,0.009415325,0.028508645,0.0064325402,-0.002982784,-0.0010725765,0.014931432,0.010104109,0.004914881,-0.038501848,-0.053281516,0.014978129,0.011300724,0.028228462,0.015643565,0.017137876,-0.003794148,0.018667208,-0.060239397,0.0047310106,0.01563189,0.018410373,0.043755285,0.0040393085,-0.0135772135,0.05253436,-0.008160337,-0.0045267106,-0.030236442,-0.02523984,-0.011540048,-0.0018635105,0.027061032,0.0028893896,-0.01929762,-0.014114231,0.0023450754,-0.020546772,0.011633442,0.044362348,0.030119698,-0.022484705,0.016962761,0.006730235,-0.0063624945,0.0059772427,-0.006380006,0.0072030444,0.00090038055,-0.025940299,0.02021989,0.010250038,-0.010296734,-0.021702528,-0.014943106,0.027294518,0.011907788,-0.011405793,0.009759717,0.014908084,-0.015912073,0.028905572,-0.0060064285,0.009555416,-0.0077925967,0.02477287,-0.029325847,0.046393678,0.0102383625,-0.014838038,0.02157411,-0.023827251,-0.036563914,0.025356583,-0.022881633,0.016787646,0.0010915472,-0.016414069,0.02759805,0.002403447,-0.02792493,0.040509827,0.004144377,0.0042377715,0.039272353,-0.005781698,0.02523984,0.051740505,0.01864386,0.005822558,0.033902172,-0.022834934,0.0011331369,-0.006782769,-0.05416876,-0.011820231,0.0284386,0.039272353,-0.024516035,-0.034649327,0.003225026,-0.030726762,-0.007845131,-0.027481306,0.022356289,0.009444511,0.020173194,0.046907347,-0.016997784,-0.030376533,0.0000432314,-0.0085747745,0.041607212,0.013145264,0.0028718782,0.016810995,-0.0075240876,-0.016098863,-0.024632776,-0.03128713,0.01932097,0.0038554382,-0.052020688,-0.004914881,0.027831536,0.009730531,0.018608836,-0.010903798,-0.04697739,0.043638542,-0.04665051,-0.002860204,0.045132853,-0.00715051,0.0076816906,-0.006140683,0.013834048,0.029395891,0.055943254,-0.048611794,0.009473696,0.0085747745,0.023547066,0.00393424,0.010536058,-0.0049323924,0.014406089,0.027714793,0.017546475,-0.013320379,0.015970444,0.010810403,0.01975292,0.022134477,-0.018597163,0.030563323,-0.0100924345,-0.0109504955,0.036353774,0.013507167,0.026617408,-0.014230974,0.021457367,0.0060239397,0.0016168908,0.04616019,-0.027714793,0.014441111,0.029862864,0.0025843985,0.008253732,0.010477686,-0.0022633553,0.010232526,-0.008580612,0.0014753399,-0.030026305,-0.018818974,0.021959363,0.023512045,-0.007956036,0.007127161,-0.025473326,0.024632776,0.0060414514,-0.009800577,-0.014803015,-0.018737255,-0.01991636,-0.026664106,0.012304714,0.03231447,0.00026559038,-0.0057787793,-0.014020837,-0.021048766,-0.012771687,0.032618,-0.0484717,0.0102442,-0.0042436086,-0.01983464,-0.020371657,-0.013028521,0.016098863,-0.00017028063,-0.04377863,0.037894785,-0.019040786,0.0061698686,-0.0055190264,-0.016705927,-0.0032133516,0.015234964,-0.020231565,0.0051221,-0.0021830944,-0.03126378,0.0075474363,0.0342524,-0.003143306,0.03492951,-0.02233294,-0.03600355,-0.00018314061,0.009310256,-0.0108979605,0.018363677,-0.0131686125,-0.029209103,-0.016367372,0.046020098,0.009327767,-0.028135067,-0.04214423,-0.043708585,-0.018387025,-0.0040947613,0.024095759,-0.0085631,0.030189745,0.0011200033,-0.010133294,0.012876755,-0.009222698,-0.022251219,-0.010413477,-0.03380878,0.013834048,-0.03028314,0.010185828,-0.019496085,0.0031316315,-0.0011470001,0.018573815,-0.0070454413,0.04548308,-0.011446653,0.008166174,0.015666913,0.007880154,-0.0125615485,0.007308113,0.0004709851,-0.014931432,-0.018935718,-0.0064383773,-0.01991636,0.016939413,-0.022648146,0.001911667,-0.025566721,-0.0049469853,-0.008008571,0.022239545,0.009497045,0.008942516,-0.0325713,0.015690261,-0.027948279,0.0076349936,-0.026290528,0.017231269,0.008843284,0.013110241,0.019262599,0.012187971,-0.0032075145,-0.015269987,-0.00991732,-0.02776149,-0.04578661,0.03880538,-0.017966751,0.020873653,-0.03345855,0.004517955,-0.02323186,0.028531995,-0.0007000933,-0.023325255,0.0075474363,0.0033242574,-0.0037678808,-0.002175798,0.014499483,-0.028555343,0.015643565,-0.013705631,0.0068936753,0.006724398,-0.023371952,0.015328359,0.032034285,-0.00056255545,-0.0089308405,-0.000059101152,0.02222787,-0.022052756,0.011049727,0.04949904,0.030143047,0.04749106,0.01124819,-0.0003976559,-0.022029407,-0.0043632705,-0.02184262,-0.039085563,0.014324369,0.0032162701,0.00827708,-0.0055365376,-0.028625388,0.010395966,0.03196424,0.010985518,-0.0021889317,-0.027457958,0.0075591104,-0.023979016,0.0007602889,0.0032921531,-0.009975691,-0.0030849343,0.0051658787,-0.004503362,-0.002896686,0.013880745,0.0023085931,0.0024078249,0.0031024457,-0.020383332,0.012036205,-0.023733856,0.009467859,-0.0060356143,-0.0033155018,0.010302572,-0.027037684,-0.0019860906,0.025730161,0.03147392,0.0012520689,-0.020371657,-0.048798583,-0.011522536,-0.018118517,-0.016052166,0.016133886,0.007769248,-0.01313359,-0.0010397425,0.0367974,-0.015666913,-0.0016256465,0.0057583493,0.010156643,0.0037795552,-0.040509827,0.011131447,-0.00040239858,-0.01149335,0.027504655,0.0032425374,0.012748337,-0.02659406,-0.015036501,0.017277967,0.01354219,0.0065843062,-0.0022400066,-0.04100015,-0.0018343247,0.014441111,-0.02073356,0.03810492,-0.012082903,0.0061757057,0.040369738,0.009269396,0.0084813805,0.007629156,-0.042494457,-0.023733856,0.006000591,-0.07069957,-0.027364563,-0.031660706,-0.0125382,-0.006502586,-0.011020541,0.005507352,-0.0075357617,0.018550465,-0.0018751847,-0.041186936,0.0027711873,-0.015164918,-0.017814985,-0.0061815428,-0.02407241,-0.028812177,0.009409487,-0.0021830944,-0.013635585,-0.03460263,0.040860057,0.023243535,0.0021889317,0.004996601,-0.017219596,-0.0063216346,-0.01546845,-0.02393232,0.026220482,-0.022683168,0.025379932,0.0669638,0.013904094,-0.011394119,0.007926851,-0.010582754,-0.0041969116,0.011697651,0.008749889,0.029699424,0.03198759,0.0153867295,-0.034532584,-0.015748633,-0.0050374614,0.02624383,-0.03161401,0.014814689,0.016659228,-0.02493631,0.008172011,0.03616699,-0.002946302,-0.011067239,-0.03616699,-0.032454558,0.06481572,0.0025377013,0.0046171863,0.000051667907,-0.0035577435,0.025123097,0.010635289,0.026734151,0.045576476,-0.004605512,0.008341289,-0.01153421,0.059772424,0.02057012,0.028345205,0.00060961745,-0.030890202,0.012596572,0.037404463,-0.010635289,-0.008078617,-0.044852667,-0.0018518361,-0.02390897,0.01245648,-0.03243121,-0.015947096,0.0022093616,-0.027457958,-0.012526526,0.030143047,-0.022461357,-0.015036501,-0.0052972147,-0.00095510384,0.012596572,-0.044058815,-0.022274569,0.00018879535,0.017616522,-0.003732858,-0.022554751,0.023021724,-0.04149047,0.023488695,0.020803606,-0.023208512,-0.03513965,-0.017838333,-0.06556288,0.008247894,0.032664698,0.018258609,0.00038342786,0.026150437,0.011954485,-0.008247894,0.027901582,-0.055149402,-0.015620216,0.020745235,0.020103147,0.015993794,-0.030399883,-0.0019948464,0.010775381,0.021527413,0.021912664,0.038548544,-0.017149549,-0.034906164,0.038478497,-0.033528596,0.0060414514,0.028298508,0.016414069,-0.015515148,0.023827251,0.058324814,0.0042173415,-0.031147037,0.037848085,0.022192849,-0.006724398,0.008749889,-0.018924043,0.002464737,0.016997784,-0.011621768,0.006461726,-0.035419833,0.0032221074,0.00013753786,-0.0013060626,-0.0068644895,0.026173785,0.0035694179,-0.023441998,0.0066718636,-0.005294296,-0.0055394564,-0.024189154,-0.0334352,-0.0027814023,-0.0046171863,-0.01196616,0.031894192,-0.020861978,0.0019408527,-0.037871435,0.047654502,-0.0035022907,-0.023360278,0.007599971,-0.0034059775,-0.026664106,0.0034964534,0.020430028,0.026057042,-0.00031247,0.009222698,0.013156938,0.016530812,-0.003169573,0.017383035,0.021293927,0.009952342,0.021854293,-0.022940002,-0.03329511,0.018141866,-0.016355697,0.028998965,0.0084813805,0.014744643,0.015340033,0.0026398515,0.026734151,0.0384318,0.02493631,-0.012760012,-0.018900694,-0.026897592,-0.04377863,0.01728964,-0.018036796,0.00956709,0.054589037,0.023196839,0.051320232,0.00016280179,-0.0077225505,0.0060181026,0.019741245,-0.0040655755,0.013752327,-0.022916654,0.009146815,-0.0036044407,0.01061194,-0.016846018,-0.022811586,0.01530501,0.0031724914,0.021118812,-0.00852224,0.008510566,-0.04146712,0.011680139,-0.03313167,0.0010222311,0.009823925,-0.002393232,0.020395005,-0.0010864397,0.0047485223,0.009374465,-0.0037241024,0.02331358,-0.0059101153,-0.005443143,0.020710211]},{"id":"interface-RequestOptions","type":"interface","source":"main","text":"Interface: RequestOptions\nProperties: auth: boolean, body: unknown, files: { name: string; data: Blob | ArrayBuffer | Uint8Array | Buffer; filename?: string; }[], headers: Record","meta":{"url":"/docs/typedefs/RequestOptions"},"embedding":[-0.000057174657,0.010972113,-0.007920087,-0.012880307,0.035821997,-0.02326695,0.010440854,-0.041308053,0.021705702,-0.012077998,0.0002436064,0.026671343,0.03259108,-0.010283645,-0.02222612,-0.025608825,-0.007139463,-0.0005488767,0.008706133,-0.0041741733,0.015222181,-0.038771026,-0.0051092966,0.005757107,-0.008944658,0.00093647855,-0.0014338557,0.0107986415,-0.02471978,-0.020860026,-0.0022998613,-0.039031234,0.052605428,0.053039107,0.009611441,-0.031571932,0.060801987,0.030791305,-0.029772157,-0.016544906,-0.047184423,-0.032114033,-0.018973516,0.010825746,-0.048658937,0.009589757,0.045232862,0.023722315,-0.017412266,0.002682042,-0.008950079,-0.0056595285,0.015406495,0.07129705,0.019927613,0.02805912,-0.05126102,0.017900158,0.009589757,0.025088409,-0.0069117807,-0.02363558,-0.026302714,-0.0012569954,-0.0012204036,-0.010402908,-0.049179353,0.05581466,0.010560117,0.0332416,0.048615567,-0.015623335,-0.007150305,-0.00426362,0.035214845,0.016263014,0.002719989,-0.05078397,0.011020903,-0.035821997,-0.003577863,0.062016293,-0.072988406,-0.0516947,-0.01025112,-0.006076946,-0.056421816,-0.009568073,-0.055467717,-0.032504342,-0.03653757,0.0232019,-0.077021636,0.01160095,-0.014669239,0.0020220347,-0.00879287,0.0066840984,-0.0040765954,0.038337342,0.021022655,-0.03475948,-0.061105564,0.00555653,0.03512811,-0.039139654,0.009204865,-0.005914316,-0.0054887673,-0.02747365,0.0048545096,0.03469443,-0.0018201022,-0.0002383548,-0.0125008365,-0.017282162,-0.025240198,0.004976482,0.02250801,-0.05186817,0.0061311563,-0.014181348,0.038012084,0.019905929,0.01457166,-0.024633044,-0.038445763,-0.0023893078,-0.06678677,-0.0017442082,0.072814934,-0.005995631,0.009183181,-0.046967585,-0.0136717735,0.0036130995,-0.0047081425,0.011210637,-0.012077998,-0.005526714,0.026888182,-0.03374033,0.06114893,-0.014528292,-0.0332416,-0.00350739,-0.007464723,0.07407261,0.0033474702,0.015027025,0.019732457,0.02276822,-0.022009278,0.023353688,0.0068358867,-0.034174014,0.035648525,-0.0028487379,-0.022529695,-0.01634975,0.025717245,-0.008863342,-0.027451968,-0.052215114,0.01904941,0.021109391,0.04343309,-0.02838438,-0.04527623,0.004469618,0.008738659,-0.036342416,-0.011427478,0.038554184,-0.043823402,0.018669939,0.04299941,-0.053993206,0.0027484493,0.012934517,0.034087278,0.04026722,-0.016273856,-0.0195373,-0.036667675,0.01731469,-0.010673958,0.038250607,0.009166919,0.006147419,-0.023678947,0.04252236,0.006770835,-0.0268665,-0.0000063633274,-0.048442096,0.008928395,-0.0023554265,0.0099367015,-0.0051499545,0.0026671342,0.02352716,0.04338972,-0.027126707,-0.048268624,0.015352285,0.022161067,-0.020469714,-0.043476455,0.033393387,0.03059615,0.033805385,-0.01214305,-0.011947894,-0.01516797,0.011698528,0.021922542,0.005973947,0.006212471,-0.0068413075,-0.015840175,0.013075463,0.06492195,-0.04570991,0.06114893,0.008082718,-0.014181348,0.009318707,-0.015959438,-0.02417768,-0.009557231,0.049396195,-0.044018555,-0.013140515,0.0064618373,-0.015341443,0.036906198,-0.023765683,0.002573622,-0.046490535,0.00717741,-0.070820004,-0.059717786,0.0411129,0.030986462,0.027191758,-0.011644318,-0.016219646,0.003501969,-0.014398188,0.034976322,-0.01839889,0.01505955,-0.056421816,0.0067220456,-0.0142247155,-0.004431671,0.014734291,0.016696693,-0.008440504,0.03027089,-0.041264687,0.0025668456,0.057332546,-0.013238093,-0.045189492,-0.013216409,0.025175145,0.0004899233,-0.005147244,0.011958736,0.035800315,0.01457166,-0.007020201,-0.048311993,-0.012056314,0.009643967,0.012002104,-0.07546038,0.034911267,0.008050192,-0.0023879525,-0.023180215,0.027256811,-0.009188603,-0.0142680835,0.03146351,0.064054586,0.018268785,0.0014067506,0.05039366,0.0154173365,0.050263554,-0.037643455,0.005919737,0.038337342,0.012891149,-0.017455634,0.07311851,-0.004906009,0.04343309,-0.07619764,0.074766494,-0.051651333,0.010115595,0.010907061,0.035756946,0.052865636,0.057722855,0.013422407,0.01672922,-0.019342145,-0.078669615,-0.0011079177,-0.039963644,-0.0010184712,0.038879443,-0.004447934,-0.039421543,-0.0208275,0.005865527,0.011254005,0.017910998,-0.013953665,0.0038841497,-0.024481256,0.0136500895,-0.0026508712,-0.007562301,0.02352716,-0.031528562,-0.03530158,-0.008857922,0.002072179,0.031571932,-0.015981121,-0.051607963,0.046013486,-0.011514214,-0.00009164886,-0.00024801097,-0.033154864,-0.005217717,0.011839474,0.027105022,-0.03616894,-0.053125843,0.006223313,-0.043649927,0.00561074,0.004073885,0.038727656,-0.05616161,0.036385782,-0.024155997,0.016534064,-0.013931981,-0.07858288,-0.0759808,0.0064184694,-0.026541239,0.04896251,0.0005451498,0.016176278,0.0136717735,-0.013639247,-0.033219915,-0.016490696,-0.009101867,-0.0332416,0.047834944,0.027733859,-0.029230056,-0.017910998,-0.004214831,-0.025457038,-0.035258215,-0.005402031,0.0012529297,0.020784132,0.04445224,0.054513622,0.010917903,-0.0027863963,0.00090598536,-0.01440903,-0.03183214,-0.0076598795,0.0051391125,0.017043639,0.0029137898,0.02174907,-0.06435817,-0.038337342,0.00345318,0.057289176,0.03384875,0.0028839745,-0.011839474,-0.042500675,0.027039971,0.012674308,-0.017726684,-0.0010801351,-0.0075243544,-0.01850731,0.028991532,0.035952102,0.026107557,-0.040115435,0.024437888,-0.018225417,0.038489133,0.027105022,0.07029959,-0.015081234,0.012327365,-0.04161163,-0.016577432,0.044018555,-0.012999569,0.024329469,-0.0706899,0.00044147306,-0.01408377,0.0002647822,0.05963105,-0.0099367015,-0.011167269,-0.08608555,-0.025543774,0.0014650265,0.010061384,0.015363127,0.009535547,-0.02147802,0.0028622905,-0.010717326,0.012945359,0.006033578,0.007003938,-0.018431416,-0.004133516,0.03328497,-0.03259108,0.0066244677,0.011178112,-0.014810184,-0.008608555,0.009226549,-0.014983657,0.021163601,-0.029013216,0.0136284055,-0.0011960091,-0.013248935,0.0039464915,-0.030531097,0.0074809864,-0.021814123,0.01629554,-0.013834404,0.016870165,-0.008245348,0.028514484,0.012815255,-0.008033928,-0.0023676236,-0.02077329,-0.006792519,-0.0026901735,0.019786667,-0.028774692,-0.0037269406,-0.025218513,-0.046230327,0.010885377,-0.007903825,0.028037436,0.029880578,0.011254005,-0.0020206794,-0.0031712877,-0.035540104,0.0023296766,0.10304245,0.014636712,0.031181619,0.0032986812,-0.00073590135,-0.027321862,-0.0065377313,0.0010001754,-0.008586871,0.009437969,-0.012750203,-0.003496548,-0.04100448,0.0017984182,0.003713388,0.043324668,-0.0643148,-0.001521947,-0.006770835,0.009774071,0.0242861,-0.044929285,-0.040245537,-0.03627736,-0.049656402,0.022551378,0.057592753,-0.006104051,-0.0032200767,-0.06479184,0.024112629,-0.012283997,0.053125843,-0.04896251,0.015959438,-0.008505556,0.012598415,-0.0018743123,-0.020534765,0.022421274,-0.005599898,-0.02153223,-0.017423108,-0.0091181295,-0.003464022,0.023136847,-0.045623176,0.0025139907,0.001015083,0.013574195,-0.016978586,0.011232321,-0.031810455,0.011947894,-0.0041687526,0.0011316347,0.012858623,-0.010050543,-0.00004370685,-0.0065377313,0.054079942,0.0166208,-0.004252778,0.0011526411,0.008565187,-0.01948309,-0.022182751,0.011839474,-0.011633475,0.017542372,0.06561584,0.02493662,0.026649658,-0.026085874,0.00029781644,-0.009812018,-0.024524625,0.047141057,-0.0035561789,0.029490264,0.021326233,0.0035155215,0.0025654903,-0.0051011653,-0.03616894,0.015601651,0.035366632,0.024242733,0.09384843,0.03410896,0.022161067,-0.016664168,-0.018810885,-0.04505939,0.01225147,0.00917234,-0.02023119,-0.034846216,0.066049516,-0.015200497,0.019580668,0.055467717,0.0039302283,0.009356654,0.022920007,0.037144724,0.026758078,0.023440424,-0.003599547,-0.0053424,0.0018946411,0.03625568,0.022681482,-0.044018555,0.025066724,0.00001860294,-0.025153462,-0.004439803,0.00036151323,0.045406334,0.024741465,0.004274462,-0.015243865,-0.011546739,0.032981392,0.0024977277,0.05390647,-0.021185286,-0.051391125,-0.018648256,-0.016219646,-0.029316792,-0.0016656036,-0.043801717,-0.005887211,-0.019352986,0.014322294,-0.0055240034,0.061929557,-0.019136146,-0.025673877,-0.017065322,-0.009952964,-0.012576731,0.0030520256,0.024676412,0.031962242,0.00067186577,0.016967744,-0.01634975,0.00046349588,0.010370382,-0.00469459,-0.03955165,-0.011579266,0.005654108,0.021456337,0.0206215,-0.044929285,0.036515888,-0.02983721,-0.06349081,-0.0069443067,-0.0074593024,0.0019041279,-0.029273424,-0.0007087963,-0.007898403,-0.018528994,0.025717245,-0.010972113,-0.0016886429,0.017574897,-0.021911701,-0.014257242,0.022464642,-0.0077357735,-0.016111225,-0.007432197,-0.033371706,0.00046552878,0.033480123,0.016588274,-0.032482658,0.0055077407,0.00046349588,0.020892551,0.033870436,-0.015991963,0.023939157,-0.029403528,0.0202854,-0.010158963,-0.006326312,0.040549114,0.0011607726,-0.0011302794,-0.025587142,-0.06683014,0.00803935,-0.03501969,0.016826797,0.034000542,0.0043069883,-0.007925509,0.025001673,0.009291601,0.02563051,-0.015493231,-0.012609256,0.060411673,-0.008033928,0.012674308,0.013704299,0.012002104,-0.01451745,-0.009860807,0.0006617014,0.0061419983,-0.05056713,0.005946842,0.0008355123,0.0063534174,0.016544906,-0.03135509,-0.028319327,0.013053779,-0.019504774,0.0037350722,0.006136577,0.022356223,0.029446896,0.033328336,-0.0049087196,-0.00074132235,0.03328497,-0.04839873,-0.050306924,0.04258741,0.02790733,0.01235989,0.024047576,0.025153462,-0.045753278,0.015482389,0.043888453,0.021824963,-0.015048709,0.01731469,-0.03426075,0.012977885,0.010484222,0.018810885,0.019927613,0.0136717735,0.014560818,-0.009752387,0.018496467,0.0326995,-0.007426776,-0.026107557,-0.043151196,0.0003686283,-0.043476455,0.017097848,-0.04458234,0.0037892822,-0.018171208,-0.013942824,0.006125735,-0.03421738,-0.01225147,-0.013585038,-0.056985598,0.014625871,-0.01737974,0.027321862,-0.009400022,-0.0047894577,-0.005093034,0.019764982,0.0015476968,0.009790334,0.034130644,0.035431687,-0.0065323105,0.013140515,-0.004203989,0.002573622,0.054643724,-0.027603755,-0.008510977,-0.007979719,-0.005919737,-0.008142348,0.034607694,-0.010175225,0.014094612,-0.011308216,0.036906198,0.008120664,-0.01850731,0.016317224,-0.008679029,-0.025153462,-0.0028839745,0.035821997,0.0042229625,-0.027430283,0.021412969,0.009367496,-0.028579535,-0.06782761,0.002531609,0.02207433,-0.03222245,-0.01780258,-0.013704299,0.005621582,0.04354151,-0.0053667943,-0.016122067,0.016393118,0.035648525,0.009042235,-0.046750743,0.036732726,0.000011011415,0.028102487,0.0066515724,0.022789903,0.015124602,0.0057191597,0.034889586,-0.038510818,0.081792116,-0.010717326,-0.004418119,0.019385513,-0.013953665,0.0102890665,-0.03033594,0.001932588,0.017780894,-0.034911267,0.02714839,0.032244135,0.01721711,0.023809051,-0.00047535435,-0.012609256,-0.019721614,0.008982604,0.00022124474,-0.015178813,0.018106155,-0.03584368,-0.004732537,0.02083834,0.028210908,0.002730831,-0.030140786,-0.007020201,-0.045796648,0.002940895,-0.024307784,-0.013715141,0.025608825,-0.03259108,0.038380712,-0.05390647,-0.006223313,-0.011937052,0.00023818538,-0.007903825,-0.0037269406,0.06205966,-0.044018555,0.013845245,-0.03814219,-0.012587572,-0.011308216,0.0076544583,0.023787368,0.019396354,0.02406926,-0.0029273424,-0.0037621772,-0.0041091214,-0.016859325,0.021900859,-0.011514214,0.02983721,-0.023613896,0.07147052,-0.0040007015,0.020101085,0.026020821,-0.002013903,0.025587142,-0.018182049,0.006087788,0.03200561,-0.013585038,0.01645817,-0.00076436164,0.013866929,0.031441826,0.023657264,0.008283295,0.012815255,-0.02990226,0.007855035,0.011156428,0.016956903,-0.009459653,-0.016208803,-0.009459653,-0.02142381,0.022486327,0.026454503,0.04883241,-0.04386677,-0.012153892,-0.010825746,0.022746535,-0.002358137,-0.043736663,0.03356686,-0.021651492,0.03081299,-0.00782251,-0.022573063,0.008857922,0.0031224985,-0.006087788,-0.017607423,0.02298506,0.034412537,-0.044929285,-0.006895518,0.02827596,-0.03102983,0.007508091,-0.008879606,-0.016013646,0.029490264,-0.032287505,0.0010164384,-0.0017780894,-0.065008685,0.009730703,0.033935487,-0.014723448,0.0038570447,-0.016989429,0.030964779,0.027213443,-0.00096832693,0.017152058,0.0046918793,-0.03178877,0.00034897716,-0.011752738,-0.014203032,0.0054914774,0.0020897973,-0.000513979,-0.03189719,0.031658668,-0.03458601,0.038337342,0.01592691,0.008445925,0.028557852,-0.013682615,0.018539835,-0.025326934,-0.023462107,-0.0011038521,-0.011037165,0.039898593,-0.03725314,0.024784833,0.00092157075,-0.03313318,0.02638945,0.042283837,0.0018892201,-0.021597283,0.044365503,0.0348679,0.028406063,-0.010717326,-0.018767517,0.0065648365,0.047834944,-0.018149523,-0.028904796,-0.010375802,-0.013465775,0.0013023963,0.01592691,0.04208868,0.012869465,-0.003173998,-0.016284697,-0.02769049,0.0017929972,-0.0071231998,0.000068482535,-0.016263014,0.0023567816,0.019071095,-0.0076436163,-0.0029327634,-0.0021358759,0.007226199,-0.019461406,0.02104434,-0.0066786776,-0.003179419,-0.0008734593,0.034998003,-0.011958736,-0.016978586,-0.0105330115,0.038337342,-0.04226215,0.032721184,-0.028210908,0.012782728,0.00631547,-0.0011241809,0.013292303,0.021900859,-0.006158261,-0.017889315,0.02077329,-0.015514915,-0.018474784,0.022161067,0.02584735,0.024459573,0.009183181,-0.037643455,0.034065593,0.012652624,0.0067870975,-0.0018092602,0.016046174,-0.0077249315,-0.00031424884,0.012294838,-0.005239401,-0.018821727,0.012761044,-0.042175416,0.0023825315,0.009801176,-0.012771887,0.006282944,0.010636011,0.023765683,0.046230327,0.032114033,0.0038543341,-0.011644318,0.025023356,0.031810455,-0.0024746885,0.034716114,0.016718378,0.049829874,-0.012761044,-0.016284697,0.053472787,0.018377205,-0.016447328,-0.0064672586,0.035648525,0.021987595,-0.007031043,0.023180215,0.008782027,0.0321574,-0.004906009,-0.005212296,-0.0030357626,-0.028969849,-0.01111306,0.022334538,-0.018908463,0.012674308,-0.030921409,-0.050133448,0.023722315,-0.0326995,-0.02638945,-0.012565888,0.008044771,-0.0016181698,0.014311452,0.00944339,-0.030097418,-0.017835105,0.0024191232,-0.0057191597,-0.0147993425,-0.01214305,-0.0025221223,0.0010476091,-0.026237661,-0.0014907762,-0.007508091,0.0055240034,-0.019201199,0.0022036384,0.014159664,-0.0010049187,0.0069659906,0.011460003,-0.049613032,-0.015406495,0.0021060603,-0.022746535,0.025348617,0.018171208,-0.018312152,-0.002995105,-0.025110094,0.03668936,-0.0037269406,-0.021879174,-0.019504774,0.00847303,-0.01203463,0.018659098,0.031593613,0.0016859324,0.0010381223,0.0055944766,0.044799183,-0.030444361,0.011481687,0.0029273424,-0.035475053,-0.0038922813,-0.01052217,0.018572362,-0.027582072,0.025565457,0.0010652274,0.011839474,0.0038218081,0.035691895,0.005843843,0.0022700457,0.017705001,0.009730703,0.01263094,-0.009898754,0.027755544,0.0021399416,-0.0034016804,0.010999219,0.009611441,-0.0014812895,0.036776096,0.0032851289,0.004198568,0.002256493,0.007882141,0.005049666,0.003529074,0.00091614976,0.018247101,0.03319823,-0.002137231,0.0047488,-0.0024177681,-0.01214305,0.034499273,-0.011503371,0.013975349,0.00074674335,0.00058445206,-0.02693155,0.016989429,0.004122674,-0.0075026704,0.014170506,-0.0064293114,0.009324128,0.017455634,-0.012826096,-0.01640396,-0.01910362,0.013964508,-0.03773019,0.007296672,-0.016881008,-0.009334969,-0.015883543,0.011254005,-0.016035331,0.003523653,-0.0074593024,-0.010814904,-0.0050361133,0.00094799814,0.023592211,-0.007909246,-0.0021941515,-0.0065810997,0.012045472,0.021163601,-0.012132208,0.03584368,0.031593613,0.016208803,-0.005228559,-0.020263715,0.018496467,-0.029620368,0.036233995,0.031398457,0.051174283,0.031593613,0.024698097,0.008283295,0.026324399,0.003016789,-0.005778791,0.004285304,-0.021326233,0.01737974,0.003924807,0.014181348,-0.03113825,-0.038792707,0.0401588,0.005209585,-0.00033474702,-0.02276822,0.022963375,-0.037578404,-0.0017618265,-0.0023594922,0.003485706,-0.033024758,0.0065377313,0.019081935,-0.007551459,0.006060683,0.026974918,-0.0017848657,0.008077296,0.0038949917,-0.03679778,-0.018843412,-0.0003466055,-0.010180647,0.004399145,-0.0045807487,-0.016252171,0.0023459396,0.013151357,0.0020274557,-0.005833001,-0.0029923946,-0.024546308,-0.012695992,-0.0029707104,-0.0014704475,0.014560818,-0.016501538,-0.030552782,0.017032797,0.0026779762,0.0065214685,0.011297373,-0.0013396657,-0.026476186,0.0014162374,-0.004418119,0.01160095,0.033545177,0.0064347326,0.024047576,0.0034667323,0.054903936,-0.004063043,-0.010332434,-0.003594126,-0.025326934,0.05629171,-0.010153541,0.014311452,-0.04263078,0.011741896,-0.038077135,0.0035859945,0.026519554,-0.031224987,0.016956903,0.0029815524,-0.02174907,0.0035615999,-0.04440887,-0.0021182576,0.013411565,-0.019624036,-0.00037235525,0.020491397,-0.0018038392,0.03243929,-0.009269917,0.0076924055,-0.0076436163,-0.023678947,0.00782251,-0.0048870356,0.006076946,-0.0038245188,0.017390583,0.01219726,0.018431416,-0.012283997,-0.009725282,0.035518423,0.002535675,-0.045666542,0.004906009,0.0030249206,0.023353688,0.023548843,-0.02023119,-0.029728789,0.01910362,-0.03816387,-0.0017062612,-0.028514484,0.018171208,0.017184583,0.03773019,0.003648336,-0.00004480799,-0.024633044,0.009291601,0.00858145,-0.010766115,-0.028774692,0.00858145,0.0065377313,0.0052529536,0.018550677,-0.015970279,-0.018973516,0.012153892,0.026779762,-0.0032742866,-0.0010747141,0.01235989,0.03428243,-0.012424942,0.007865878,-0.012338206,-0.06370764,0.03523653,0.01354167,0.050870705,-0.004084727,-0.026259346,0.023592211,-0.0142463995,0.04393182,0.0160787,0.006391364,0.047141057,-0.015634177,0.03059615,-0.00012747831,0.020610658,0.024025893,-0.014116296,-0.008538082,0.02109855,-0.012858623,0.027170075,0.011460003,-0.007209936,0.029056584,0.013953665,0.0008531306,0.009562652,0.06349081,-0.019927613,-0.023657264,0.002989684,-0.0058167377,-0.019732457,-0.027213443,-0.02573893,-0.021380441,0.0034342064,0.02276822,0.040679216,0.006938886,0.01203463,-0.018160366,-0.0012082064,0.0007989205,0.0012237917,0.020393819,-0.042283837,-0.03658094,-0.023657264,-0.009568073,-0.0160787,-0.0036944146,-0.020220347,0.034304116,0.01986256,0.032135714,0.03168035,0.0091614975,-0.015851017,0.013400723,-0.018106155,-0.009736124,0.015341443,-0.013704299,-0.022833271,-0.014072928,0.016447328,0.0005329525,-0.015569125,0.014148822,-0.02465473,0.014474082,-0.028449431,-0.016924376,0.051044177,0.04549307,0.047748208,0.015959438,0.051607963,-0.02708334,-0.015623335,0.016024489,-0.00041030228,0.017694158,0.002595306,-0.011286532,0.0008246703,-0.0082995575,-0.015991963,-0.02071908,-0.03200561,-0.006337154,-0.01629554,-0.0011221479,-0.008868763,0.022746535,-0.006738309,-0.012999569,0.02541367,-0.022551378,-0.0037459142,-0.01840973,-0.0025993716,0.033805385,-0.009833702,0.013877772,0.017564055,0.00847303,0.008836238,-0.034195695,0.013834404,0.024611361,-0.0047460897,0.024090944,-0.023245268,-0.013769352,0.010543854,0.019439721,0.009269917,0.010652274,0.030639518,0.015981121,0.030682886,-0.010945008,-0.010999219,-0.0019285224,0.0037513352,-0.009183181,0.005041534,-0.039855227,0.025587142,-0.0125225205,-0.0042554885,0.019179514,-0.054426886,-0.013400723,-0.031376775,0.0029652894,0.044799183,-0.0047189845,-0.025912402,-0.008982604,-0.038380712,0.024806516,0.043454774,0.05256206,-0.03679778,-0.016176278,0.019287935,-0.010370382,0.025999138,-0.020881709,-0.0032715762,-0.049222723,-0.0027281204,-0.028492799,0.02936016,-0.003163156,-0.006244997,0.012283997,0.001109273,-0.00820198,0.018680781,-0.017553212,-0.004884325,-0.011243164,-0.015146286,-0.0038109662,-0.009215708,-0.0043178303,0.011254005,-0.005865527,0.010381224,-0.0049846135,0.018789202,-0.020046875,0.014495766,-0.01516797,-0.0013959087,-0.0063642594,-0.017553212,0.006212471]},{"id":"interface-ResolvedMessageFile","type":"interface","source":"main","text":"Interface: ResolvedMessageFile\nDescription: Resolved file data (after URL fetch). Used internally by REST layer.\nProperties: data: any, filename: string, name: string","meta":{"url":"/docs/typedefs/ResolvedMessageFile"},"embedding":[-0.0070078024,0.024284795,-0.018575972,-0.0048920815,0.054412212,0.0058760727,-0.023526592,-0.00071151217,0.019200375,-0.0126776,0.025488999,0.019501425,0.0105033405,-0.021107033,-0.00070140744,0.013469253,-0.0057645724,0.024775397,0.008474033,-0.011094294,0.06614206,-0.0514686,0.024708496,0.004136666,0.020226179,0.017282568,-0.020226179,0.001521981,0.019780178,-0.02039343,0.006768076,-0.03311563,0.041768063,0.01530901,0.032022923,0.0075931796,0.03625994,-0.021564184,-0.012644149,-0.022690339,-0.03637144,0.003470451,-0.014060205,0.0035178387,-0.032067526,0.008022456,-0.032468926,0.06551766,0.034654334,0.017460968,-0.0050007943,-0.019389926,0.004733193,0.043106068,-0.01825262,-0.016970366,0.0122427475,0.03559094,-0.01031379,-0.005926248,0.016000312,0.009812038,-0.04134436,-0.03597004,0.025243698,0.047900587,-0.039894857,0.060254835,0.028744811,0.013803754,0.032312825,0.01806307,-0.02820961,0.0077827303,-0.002330359,-0.037597947,0.0037018145,-0.012699899,-0.011696395,-0.058827627,0.003880215,0.05610702,-0.047722187,-0.06837206,0.005600109,-0.004683018,-0.057534225,-0.0255559,-0.029815216,0.0018216383,-0.039270453,-0.004228654,-0.09339276,-0.004393117,-0.04183496,-0.07122648,-0.05905063,-0.0042035664,0.006968777,0.04616118,0.0008627346,-0.022099385,-0.04078686,-0.01835297,-0.00035645295,-0.04390887,0.040162455,-0.03347243,-0.022690339,-0.015899962,-0.019111175,-0.010386266,0.060968436,-0.0040502534,0.009990439,-0.036750544,-0.03070722,0.0060210233,-0.0023010902,0.005413346,-0.020070078,0.034609735,-0.020973232,0.016401714,0.011540295,-0.015186359,0.015331309,-0.02285759,-0.05878303,-0.02028193,0.03554634,0.050487395,-0.0050035818,-0.026559403,-0.03844535,-0.013145901,-0.019824777,-0.0027443045,-0.013904104,-0.025511298,-0.00032335127,-0.033004127,0.022589987,-0.0015693686,0.032691926,0.050219797,-0.00066586665,0.06248484,0.008841984,-0.02053838,-0.01833067,0.0005362474,-0.031465422,0.010464315,0.049996793,-0.050665796,0.061860442,-0.013424653,-0.036928944,-0.03329403,-0.001692019,-0.029302314,-0.032089826,-0.014428156,0.009555588,0.03349473,0.08674734,-0.037441846,-0.034431335,0.0060265986,-0.00047283154,0.01585536,-0.011651795,-0.0255559,-0.032089826,0.013814904,0.052048404,-0.0037659272,0.000008792636,0.011930547,0.019802477,-0.026760103,-0.047766786,-0.034654334,-0.03153232,-0.008624558,-0.024128694,0.057043623,0.015565461,0.030841019,-0.03398533,0.042860765,0.0126887495,0.021932134,0.008273332,0.04620578,-0.0014913183,0.003612614,-0.048123587,0.003509476,-0.024842296,-0.028633311,0.012008597,0.009767438,-0.051914603,0.019947428,-0.009800888,-0.018642873,-0.038913652,0.034810435,0.03875755,0.04136666,0.011841346,-0.044756275,-0.026224902,-0.024240194,0.040363155,0.014350106,-0.032580428,-0.014974508,0.040073257,0.04415417,0.03670594,-0.02054953,-0.004005653,-0.002570085,-0.023548892,-0.011841346,-0.0512456,-0.010631566,0.013357752,0.023972593,-0.02064988,-0.030038217,0.006991077,0.021608785,-0.027139205,-0.0028362924,0.0072977035,0.006271899,-0.030372718,-0.037040442,-0.005505334,0.042949967,0.016345963,-0.0032836879,0.0021171144,-0.00161815,0.024284795,0.04665178,0.02867791,-0.021764884,0.014539656,-0.039939456,0.0136811035,-0.052137602,-0.060567036,0.034944236,0.0060823485,0.03311563,0.038177747,-0.042169463,-0.027027706,0.0027666045,-0.03133162,-0.022322387,0.034342133,0.045848977,-0.05641922,0.039627254,0.021965586,-0.035256438,0.046027377,0.016814265,-0.03630454,-0.0049088066,0.011088718,0.016178712,-0.034698933,0.031755324,0.035211835,0.0012676206,-0.0065116254,0.025422098,-0.055259615,0.017527869,0.034810435,0.02075023,0.021798335,-0.009756288,0.046919383,-0.008513059,0.0516916,-0.0513348,0.002581235,0.024619296,0.03115322,-0.022478487,0.049060192,-0.0013233707,0.039292753,-0.047855984,-0.018609423,-0.02101783,0.016858866,-0.0011129137,0.004245379,0.016881166,0.04183496,0.01017999,-0.014450456,-0.057578824,-0.05427841,0.010090789,-0.047811385,-0.014015605,0.049461592,-0.01576616,-0.04435487,0.04683018,0.047811385,0.013190501,0.022467338,-0.032290526,-0.0026690415,0.042370163,-0.008451733,0.0076879547,-0.060923837,0.055794816,0.042459365,0.026960805,0.008802959,-0.036951244,0.044377174,-0.008189707,-0.04321757,0.045113076,-0.03902515,-0.0038105273,0.028165009,-0.049818393,-0.035479438,0.03576934,0.0014035117,-0.067480065,-0.007955556,0.029280014,-0.0006529744,-0.005101145,-0.024329394,0.006110224,-0.0051596826,0.017494418,-0.027116906,-0.0003155114,0.00455758,-0.029681416,-0.01786237,-0.014171705,-0.03592544,0.02303599,0.024217894,0.020783681,-0.034721237,0.03293723,-0.022099385,0.0057980227,0.008579958,-0.062886246,0.02836571,-0.011200218,-0.024240194,0.015989162,-0.012744499,-0.036237642,-0.0061492487,0.0051541077,0.014907608,0.026514804,0.019389926,0.076667696,-0.052985005,-0.0519592,0.008044756,0.008797384,-0.04919399,-0.0043903296,-0.021553034,0.037820946,0.034498233,0.06177124,-0.019178074,-0.0021045706,-0.025221398,0.024150994,0.021965586,-0.01041414,0.0041617537,-0.060433235,0.05392161,0.009522137,0.013101301,0.011618345,0.00893676,-0.012610699,-0.012454598,-0.019612927,0.029993616,-0.032647327,0.023816492,-0.032781128,0.016602414,0.014651157,0.019122325,-0.031621523,0.039092053,-0.02820961,-0.011506844,0.020516079,-0.019958578,0.0025756601,-0.048123587,-0.025712,0.036951244,0.0060321735,0.03918125,0.016167562,-0.013993304,-0.05664222,-0.019111175,0.0057868725,0.031688422,-0.0070468276,0.029748315,-0.0070635523,0.012621849,-0.021697985,-0.05909523,0.011997446,-0.00015993344,0.016791966,0.0084684575,0.027273007,-0.07189548,-0.0005094176,0.016011462,0.017483268,0.0015972437,-0.004652356,-0.05392161,-0.0009958382,-0.03848995,0.006589676,0.009979289,-0.0007372966,-0.017137617,-0.009628062,0.021452684,0.0035540764,-0.037620246,-0.011250393,0.018977374,0.026425602,0.021999035,-0.042147163,-0.0068684267,-0.036549844,-0.005981998,-0.026291803,-0.013792603,0.018798973,-0.011138894,0.0035345638,-0.050398197,-0.016736215,0.0070914277,-0.05931823,0.011696395,0.031733025,-0.0042648916,0.014138255,-0.047276184,-0.027072305,0.009382761,0.09820958,0.015833061,-0.01033609,0.022511937,0.034966536,-0.021430383,-0.032848027,0.02856641,-0.009717262,-0.014495056,0.009756288,-0.0065116254,-0.06217264,0.03387383,-0.01547626,0.040363155,-0.013725704,0.030038217,-0.012577249,0.034230635,0.036215343,-0.03340553,0.000697923,0.0013616991,-0.011897096,0.0757757,0.041790362,-0.0067346264,0.00013920132,-0.049862992,0.03608154,-0.017360618,0.0043624546,-0.01804077,0.034475934,0.00074287166,0.0008933972,0.031911425,-0.009198786,-0.030328117,0.014104805,-0.024017194,0.014194005,-0.026737804,0.019746726,0.0511118,-0.016892316,-0.0013714554,0.019624077,0.025243698,0.010815542,-0.004939469,-0.016602414,0.026648603,0.0068963016,0.0035345638,0.011729846,-0.013380052,0.030417318,-0.006879577,0.060611635,-0.013569603,0.013525003,0.014104805,-0.019612927,0.0020808768,-0.037352644,0.041567363,-0.013502702,0.032669626,0.007743705,0.010185565,-0.0072977035,0.015119459,0.017672818,-0.008083781,-0.037085045,0.022634588,-0.0014153586,-0.0069855023,0.012543798,0.013881804,-0.002728973,-0.005544359,-0.02083943,0.031108622,0.04642878,0.017249117,0.02829881,0.012175848,0.036995843,-0.014996808,-0.011484545,0.009895664,0.0074147787,0.0056502842,-0.042526264,-0.030172016,0.027273007,0.009934689,0.01029149,0.021575334,-0.025868101,0.024373995,0.01538706,0.031108622,-0.01538706,0.012220448,0.003721327,-0.00096169126,-0.005753422,0.014428156,0.024507795,-0.008574383,0.030194318,-0.0054244963,0.02092863,-0.009639213,-0.0023624154,0.061102238,0.045982778,0.014082504,-0.0114956945,-0.03387383,0.0027233982,-0.029302314,0.0030383868,0.0010927042,-0.03880215,-0.021631084,-0.013201651,-0.008251032,0.029659115,0.013614203,-0.023437392,-0.016513214,0.02059413,-0.037754048,-0.014573107,-0.00454643,0.0058091725,-0.019233825,-0.008524208,-0.024128694,-0.014539656,0.037999347,0.022166286,0.0010529822,-0.016892316,-0.0042342287,0.034542833,0.03882445,0.008485183,-0.03686204,-0.0014634432,-0.0017477693,0.032335125,0.04136666,-0.0019972515,0.018810123,-0.01800732,0.0016516001,0.0017644943,-0.0136811035,0.04611658,-0.046963982,-0.039917156,0.0059429733,0.019936277,0.020315379,0.0021073583,0.01805192,0.052093003,-0.0083179325,0.05387701,0.011356319,-0.0012968894,-0.03808855,-0.0018090946,-0.057935625,0.015186359,0.061860442,-0.009405062,0.0014982871,0.011183494,0.016256763,0.004398692,0.04642878,0.012298497,0.0023944718,-0.04185726,0.013725704,-0.014751507,-0.016100662,0.0012160516,-0.027785908,-0.009299136,-0.015197509,-0.03902515,0.000057231082,-0.019021975,0.013168201,-0.009767438,0.010743067,0.009644788,0.02044918,-0.0043094917,-0.03133162,-0.017828919,0.010497766,0.034275234,0.036549844,0.015866512,0.04112136,-0.019122325,-0.0056391344,-0.05905063,-0.019813627,0.02836571,-0.024329394,0.004429355,0.011874796,-0.0073757535,0.06194964,0.006946477,-0.026849305,-0.04089836,-0.024864597,-0.007108153,0.00792768,0.018297222,-0.008830834,0.075106695,0.017650519,0.02820961,0.029257713,-0.026202602,-0.024418594,0.00097981,0.029659115,0.0012062953,0.016022611,0.010681742,0.00884756,0.01834182,0.028945513,0.012655299,-0.0018773886,0.0025157286,-0.008072631,0.01575501,0.011216943,0.0044544423,0.005374321,0.031264722,0.015509711,0.001350549,-0.008239882,0.0049896445,-0.00396384,-0.037620246,-0.006885152,-0.016524363,-0.031889126,0.0044767424,0.010230165,0.004780581,-0.008825259,0.007832905,-0.00505097,-0.0032920502,-0.0010048976,0.009756288,0.00014129195,-0.0036823018,-0.010921467,0.057935625,-0.0029324614,0.02054953,0.016401714,0.002735942,-0.0028348984,-0.030216618,0.027317606,-0.0071471776,-0.024819996,-0.008920034,-0.028990112,0.012365398,0.049907595,-0.032424327,0.014818408,0.0063053495,-0.03347243,0.0041756914,0.008986935,-0.01540936,0.026224902,-0.052717406,-0.0007721405,0.0256674,-0.024864597,-0.021709135,-0.021497283,-0.018888174,-0.020025479,0.011517995,0.011194644,-0.014060205,0.002496216,0.02071678,-0.012432299,-0.08251032,0.02305829,-0.00318055,-0.010670591,0.024195595,-0.014383556,0.0132351015,0.017026117,0.034141432,-0.08108312,0.026492503,-0.014963358,0.0515578,-0.012398848,0.040474657,-0.0034063382,0.004702531,0.019200375,0.008579958,0.0075485795,-0.014584256,0.021854086,-0.022121686,0.032335125,-0.00055889593,-0.02287989,-0.00029808944,0.0060600485,0.078184105,-0.029614516,0.030216618,0.023727292,0.011032968,0.028767113,-0.013647653,-0.0050844196,0.0011310325,-0.020092377,-0.0067792265,0.032268226,0.0022941213,-0.016568964,0.0015289497,0.0129229,-0.013413502,0.015052559,0.025132198,0.022088235,0.017171066,-0.02339279,-0.040028654,-0.011863646,0.026983105,-0.017840069,0.009349312,0.032803427,-0.010553516,0.019902827,-0.026648603,-0.03077412,-0.016290214,-0.011596045,-0.009867788,-0.011607195,0.05427841,-0.0076600797,0.0068684267,0.0108489925,0.034498233,-0.0129452,-0.012331948,0.031287022,0.00039722028,0.01788467,0.01538706,-0.0002824097,0.014573107,-0.024797697,0.012142397,-0.009895664,-0.002551966,0.012142397,0.019334175,0.027339906,0.003094137,0.027139205,-0.012409998,0.021731434,0.01548741,0.032245927,0.03572474,-0.0024530096,-0.018297222,0.02809811,0.021999035,0.033740032,-0.021686835,-0.03576934,0.014829557,-0.039604954,0.03342783,-0.018787824,-0.00453528,-0.006093499,-0.029168513,-0.005820323,-0.061146837,0.010966067,0.030841019,0.013413502,-0.027384507,-0.012164697,0.016580114,0.021474984,-0.00017029949,-0.0039582653,0.065160856,-0.039984055,0.00386349,-0.008000156,-0.013971005,-0.0029882116,0.027250705,-0.021363484,0.010893593,0.054813612,0.0034676634,-0.0011310325,-0.025935002,0.0016042124,-0.031733025,0.016502064,-0.0127668,0.04888179,-0.029815216,-0.012075497,-0.02085058,0.032981828,-0.0123876985,-0.04098756,0.028967813,0.014595407,0.0258012,-0.018319521,0.0008620377,0.0057589975,-0.005820323,0.03846765,0.018943924,-0.016992666,0.02039343,-0.004061403,-0.040028654,-0.027094604,0.01534246,0.05918443,-0.050442796,-0.005887223,0.0042314413,0.052628204,-0.022601137,0.021162782,-0.034520533,-0.026113402,-0.009137461,-0.03081872,-0.044421773,-0.0021547459,-0.023927992,0.055928618,0.002621654,0.0038049524,0.015955713,-0.020170428,0.016847715,0.01530901,0.01817457,0.00776043,0.05360941,0.013257402,-0.0060098735,-0.05369861,-0.00023066653,0.045001574,0.047053184,-0.01761707,-0.026648603,-0.0016892316,-0.013948704,-0.00898136,-0.006444725,0.03342783,0.026537104,0.011908246,-0.0044265673,0.0137814535,-0.0022871527,0.008658009,-0.03788785,-0.02068333,0.0058983727,0.032156724,0.002935249,-0.029324614,0.021720285,-0.006182699,-0.002758242,0.0060600485,0.03329403,0.010408565,0.03576934,0.005522059,-0.018899323,-0.012599549,-0.010609266,0.02305829,-0.07211848,-0.00039756874,-0.004200779,-0.043172967,0.03115322,-0.021865236,-0.020984381,0.032379724,-0.0037910147,-0.018319521,0.022099385,0.013569603,-0.0075095543,-0.009444087,-0.007136028,-0.006188274,-0.019746726,-0.0034147007,0.03273653,0.015966862,0.026537104,0.014316656,0.04642878,0.005703247,0.019467976,-0.018542523,0.0041979915,-0.035011135,0.025199099,-0.037441846,0.03846765,0.02314749,-0.02805351,0.0057060346,-0.019501425,0.031844523,-0.0033310754,0.031866822,-0.022812989,-0.011094294,-0.021408083,0.017371768,0.00010427033,0.04346287,0.012019747,0.0051150825,-0.0048112436,0.004186841,0.02287989,0.040452357,-0.010140965,0.012978651,0.041210562,0.011244819,0.001048104,0.013391202,0.0075708795,0.016490914,0.019367626,0.011651795,-0.0031666122,0.011529145,0.016513214,0.006639851,-0.04339597,-0.0013428833,0.0041673286,0.008435008,0.02037113,-0.006662151,-0.008568808,-0.0051095076,0.04593818,-0.012053197,-0.009929114,0.024061793,0.014729207,-0.01545396,0.020872882,-0.013212801,-0.011116593,-0.024730796,0.0016488127,-0.005103932,-0.011406494,0.017104166,0.009148611,0.0061938493,-0.029837515,-0.010185565,0.000033580796,0.022177435,-0.010592541,-0.014394706,-0.010531216,-0.017093016,0.014851858,0.008741634,0.021831784,0.02308059,-0.0004338064,-0.020136978,-0.0034174882,0.018419871,0.01300095,0.016702766,0.004872569,-0.00058502884,0.0063555245,0.019980878,0.014784957,0.0039025152,-0.008808535,-0.008819684,0.039069753,-0.040073257,0.024976097,0.0032836879,-0.020170428,-0.006221724,-0.015119459,-0.0036377017,0.0014251149,-0.01802962,-0.024039494,-0.0070468276,0.0064949,0.0043791793,-0.030484218,-0.019412225,-0.0024139844,0.019891677,0.009851064,-0.030506518,0.039225854,0.016089512,0.0017686756,0.0062161493,-0.013859504,0.004786156,0.008585533,0.014428156,-0.008546508,0.01304555,0.009393912,0.0026760104,-0.0007435685,-0.015699262,0.01815227,0.028454911,0.013123601,0.039783355,-0.044800874,-0.010631566,-0.0032809002,-0.022021336,0.011874796,0.004069766,-0.020783681,-0.022021336,-0.013736853,-0.0052042827,0.015888812,-0.0021728647,-0.011311719,0.03617074,-0.005402196,-0.01295635,-0.039069753,-0.015989162,0.0075597293,-0.05949663,0.0019470763,-0.03630454,0.026916204,-0.018620573,-0.00031533715,0.020516079,0.010993943,-0.0028878613,-0.026224902,-0.016669314,-0.01585536,-0.0039749905,0.002843261,-0.00903711,0.004172904,-0.002968699,0.037642546,-0.03295953,0.022690339,0.022155136,-0.045670576,-0.026804704,-0.01576616,0.014115955,0.0074370787,0.012532649,0.05980883,0.031866822,0.008697034,0.002273215,0.016424013,-0.018888174,-0.023972593,-0.0113005685,0.012421148,-0.015732711,0.008663584,0.0018899323,0.012220448,-0.024708496,-0.016212163,0.00019948125,0.00030697463,0.019769026,0.021274284,0.026113402,-0.03311563,0.004039103,0.0104029905,-0.0073924786,-0.027206106,0.016078362,0.04114366,-0.0006571557,0.021631084,0.0004742253,0.0014550807,0.033940732,0.034944236,-0.028811712,-0.02277954,-0.012265048,-0.009421786,0.02030423,-0.0030188742,-0.01554316,-0.011016243,0.024284795,0.011412069,0.0006393853,-0.0004393814,-0.009031535,-0.045291476,-0.009800888,-0.0010968855,-0.0035763765,0.010363965,-0.040296257,0.016468614,-0.01017999,0.00643915,0.010676166,-0.008111657,-0.0029101614,-0.009700538,-0.0254444,0.00007086375,0.007191778,-0.000450183,-0.010782092,0.01554316,0.031889126,0.0129340505,0.023704993,0.00225649,0.0053213583,-0.0148741575,-0.010168839,-0.017048417,-0.04136666,-0.023548892,0.00048467846,0.0032669627,0.014093655,-0.02834341,0.0043457295,0.013223952,0.013346602,-0.009694963,0.003345013,0.0059652734,0.005870498,-0.059541233,-0.012499198,0.022210887,-0.0069186017,0.03378463,0.016256763,-0.015777312,-0.021619935,-0.0006331134,0.026269503,0.014851858,0.0129340505,-0.034587435,-0.0019108386,0.039560355,0.0020307016,0.0067123263,0.026983105,-0.0042871917,-0.027139205,-0.044890076,0.0052349456,0.00074565917,0.025488999,-0.0008223157,-0.007961131,-0.0062941993,0.028834011,-0.0024976097,-0.013625353,0.0011728451,0.00917091,0.02020388,0.005101145,-0.04629498,0.03561324,-0.00783848,-0.006695601,-0.067480065,-0.03652754,0.03862375,0.004850269,-0.022668038,0.010330515,-0.0038551274,-0.021564184,-0.035167236,0.052271403,0.024284795,-0.03855685,-0.019021975,0.019144624,-0.033561632,-0.029057013,-0.0018606635,-0.008652434,-0.040207054,0.012755649,0.026425602,-0.011099868,-0.046874784,-0.021920985,-0.004108791,-0.016245613,-0.0024307095,0.010614841,-0.03686204,-0.008055907,0.0122427475,0.024931496,-0.012711049,0.0019345325,-0.012365398,0.0012711049,0.029569915,0.0057812976,0.032424327,0.025957301,-0.024084093,0.021251982,0.021731434,-0.03353933,0.014260906,-0.023816492,0.03900285,0.0255559,-0.03115322,0.007788305,-0.004878144,-0.0047304058,-0.019356476,-0.005452371,-0.005725547,0.0129229,0.004192416,0.021508433,0.024797697,0.026024202,-0.03369543,-0.0019219887,0.0015066497,-0.0006282352,0.014383556,-0.017327167,-0.008390408,-0.0034370008,0.012577249,-0.017650519,-0.049907595,0.013313152,0.0054244963,0.017282568,0.004245379,-0.016568964,-0.013179352,-0.001310827,-0.009700538,-0.0047276183,-0.0065060505,0.022634588,-0.019936277,0.0067903763,-0.015721561,-0.014818408,-0.016167562,-0.0069186017,0.032134425,-0.03846765,0.016022611,-0.008323507,-0.024284795,0.03059572,0.032156724,-0.011278269,-0.0065116254,-0.00900366,-0.03309333,-0.007989006,0.0015930624,0.0010571635,0.009784163,-0.00041394535,-0.013056701,-0.030395018,-0.0077827303,0.011963996,-0.022233186,-0.010720767,0.0005550631,-0.019735577,-0.020872882,0.012287348,0.021218533,-0.011596045,-0.02072793,-0.013413502,-0.043128368,-0.017728569,-0.019278426,0.016401714,0.013112451,0.0012885269,-0.009260111,-0.00320285,0.011428795,-0.0255336,-0.008674733,0.021374634,0.039047454,0.0254667,-0.016323663,0.0019219887,-0.03316023,0.009276836,0.021240832,0.033740032,0.00396384,0.012097797,0.042771567,0.021642234,-0.023281291,-0.0042202915,-0.016089512,-0.03828925,0.011841346,0.010297065,-0.014405856,0.050977997,-0.020136978,-0.0042565293,-0.028633311,-0.045848977,0.013491552,-0.03918125,0.011897096,0.018497922,-0.032089826,0.016145263,0.009577887,-0.044644773,0.040630758,0.030439619,0.0015874874,-0.008708184,0.013703403,0.030551119,0.0045687305,-0.013101301,-0.007916531,-0.012231598,-0.018899323,0.012030897,-0.027852809,0.016468614,0.0029491864,-0.01029149,0.023704993,0.00060837425,0.0026021414,0.010085214,0.01787352,0.02064988,-0.022790689,0.014004454,0.011283844,-0.009572312,0.0020014327,0.00010035039,0.039092053,0.012064347,0.024842296,0.013959854,-0.018419871,0.010263615,-0.00900366,-0.008334657,0.011272694,0.007537429,0.026202602]},{"id":"interface-RESTCreateRoleBody","type":"interface","source":"main","text":"Interface: RESTCreateRoleBody\nDescription: Body for POST /guilds/{id}/roles (create role). All fields optional.\nProperties: color: number, hoist: boolean, hoist_position: number | null, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/RESTCreateRoleBody"},"embedding":[0.005434144,0.041697323,-0.004866225,0.040152125,0.003750568,-0.02850547,-0.0005225138,0.0082449075,0.036462095,0.03272594,0.023131866,-0.00878688,0.0040763286,-0.008585082,0.014933084,0.020433534,-0.014760114,-0.0008295357,-0.013364823,0.039875373,0.01179656,-0.045594916,0.010412799,0.0028439166,-0.012592223,0.022001795,0.021655856,0.009461464,-0.0273754,-0.064667754,0.044211157,-0.043357834,0.0046788407,-0.0139413895,-0.01299582,0.00998614,0.02901285,0.029520229,0.005638825,0.010043796,-0.00086557114,-0.03666966,0.031203805,-0.035608776,-0.060147464,0.050322764,0.023097273,0.03184956,0.005382253,0.007068711,0.00041548858,-0.008861834,0.0291051,0.07301644,0.006993757,-0.0041801105,-0.056872565,0.00071025843,-0.032841254,0.06060872,-0.015544245,-0.08473228,0.014056703,-0.002179423,-0.014321923,0.007333932,-0.10267504,0.019326525,0.015163711,0.048708376,0.04091319,-0.0449261,-0.00064071006,0.053090286,-0.010787568,-0.042227764,0.03367151,-0.0007106188,-0.011911874,-0.0682194,-0.06628214,0.048892878,-0.052213904,-0.080719374,0.009328853,0.01308807,-0.0037476853,-0.028620785,-0.05392054,-0.010222533,-0.03590859,-0.04485691,-0.052721284,-0.0074780737,-0.008504363,-0.04976926,-0.027306212,0.026360642,-0.007645278,0.055996183,0.024492566,0.0030471564,-0.07015667,-0.020364346,-0.0061577354,-0.008187251,-0.0049642418,0.0021578018,0.009940014,-0.014333455,-0.07453858,0.028436283,0.012649879,0.0064863786,-0.0014435796,0.01945337,0.020456595,-0.036992535,0.035585713,-0.07061792,-0.019326525,-0.043427024,-0.013549324,-0.0547508,-0.04139751,-0.0028540066,-0.05553493,-0.04536429,-0.042250827,0.017827451,0.013203383,0.003442105,0.025945514,-0.00017711417,-0.03752298,0.022140171,-0.020502722,-0.018369423,-0.011721606,-0.04494916,-0.00011098914,0.0012929514,0.0241005,0.018058077,-0.07020279,0.005388018,-0.0050910865,0.021644324,-0.015106055,0.06259211,-0.040959317,0.008879132,-0.038860615,0.016086219,-0.018069608,-0.09321935,0.009790107,0.0076395124,-0.043588463,-0.029174289,0.04898513,-0.018380955,0.0060943128,-0.04151282,-0.0038774128,-0.021725044,0.012384659,0.0041483995,-0.037061725,0.047462992,0.035516527,-0.0033527368,-0.02548426,0.0073915883,-0.055996183,0.010706848,0.021748107,-0.02617614,-0.0026190553,0.0016360087,0.048708376,0.016397564,-0.051429775,0.004347315,-0.059778463,0.009807404,-0.024953818,0.022739802,0.011957999,-0.007293572,-0.028228719,0.0144141745,0.012938162,-0.027283149,0.046355985,-0.03099624,0.016720442,-0.010464691,0.029151225,-0.015820997,0.03503221,0.00445398,0.03909124,-0.03452483,-0.022174766,0.017931232,-0.022762863,-0.01790817,-0.04810875,0.005984765,0.036093093,-0.055396553,-0.0018695184,-0.02659127,-0.0019055539,0.030857865,-0.03124993,0.036531284,-0.00012369163,0.026222266,-0.036715783,0.029197352,0.059271086,-0.030696426,-0.004033086,0.03962168,0.0022947364,0.0048806393,0.0025873443,0.008838772,-0.007945092,0.027052522,-0.026245328,-0.013307165,-0.037546042,-0.012903568,-0.008060406,0.043357834,0.016028563,0.012523035,-0.018565455,-0.037753604,-0.010049562,-0.0023985186,0.031964872,0.005021898,0.019142024,0.023235649,0.0041916417,0.009075164,0.06448325,0.028251782,-0.0020972623,-0.015867123,0.0061404384,-0.007368526,0.03159587,0.013791482,-0.02926654,-0.0101994695,-0.0077548255,-0.018830677,0.00688421,0.019683996,-0.013457073,-0.00070881704,0.0047278493,-0.027951967,-0.0018349243,0.00072683475,-0.016155407,-0.00022035668,0.059086584,-0.000565396,-0.041535884,0.011392963,0.034478705,0.010262892,0.0071897903,-0.011946468,0.039806183,0.009369213,-0.02850547,0.012027187,-0.011323775,0.026106952,0.018703833,0.012546097,0.03962168,0.06000909,0.031572808,0.0217827,0.020791005,-0.014910022,-0.0016749271,-0.027283149,0.023293305,-0.02608389,0.069372535,0.0045865905,0.0009952987,0.014114359,0.020860193,-0.034640145,-0.0169626,-0.0076856376,0.010228298,0.0036006607,0.0044424483,-0.044303406,0.034409516,0.05899433,-0.020975506,0.00990542,-0.04381909,-0.0047537945,0.003629489,0.021379104,-0.04407278,0.0402905,0.03390214,-0.022393862,0.011537105,-0.032702878,0.021079289,-0.03934493,-0.000299995,-0.00900021,-0.020502722,0.010003437,0.0024878865,-0.06568251,0.021644324,0.025023006,0.060562596,-0.046955615,-0.02850547,0.059547838,0.06637439,0.008919491,0.013434011,-0.008475535,-0.002009336,0.002921753,-0.031226868,0.0022659083,-0.03394826,0.020687222,-0.03351007,0.041535884,0.006434487,0.030811738,-0.00020269933,-0.005428378,-0.03556265,-0.027283149,0.009870826,-0.015913248,0.0031451727,0.054566298,-0.050830144,-0.020548847,-0.024953818,0.037338477,0.030142922,0.021206133,0.004451097,0.018207984,0.021425229,-0.035262834,-0.004923882,0.033602323,-0.0838559,-0.013641574,-0.00088719244,-0.014529487,-0.03434033,-0.016697379,-0.023558525,-0.028390158,0.010257127,0.028551595,0.010349377,-0.013376353,-0.01376842,0.004376143,-0.00736276,0.01196953,-0.010239829,-0.025461197,0.019960748,0.027098648,-0.01489849,-0.0004508033,0.020341283,0.030627238,0.030142922,0.017838983,0.021321446,-0.016512878,0.00977281,-0.0007862932,-0.0041455165,0.009057867,-0.023281774,-0.023016553,0.008371753,0.0020050115,-0.024999944,-0.04778587,0.03159587,-0.034455642,0.024792379,0.044510968,0.055903934,0.00426083,0.03978312,-0.037177037,-0.0006598088,0.025161382,-0.01704332,-0.003736154,0.0022471698,-0.03514752,0.036784973,0.00223708,-0.007086008,-0.03676191,-0.024792379,-0.023258712,-0.0215982,0.049538635,0.039229617,0.016478283,0.016547471,-0.011900342,-0.017988889,-0.040728692,0.030235171,0.007258978,-0.0035631838,-0.0016648371,0.02661433,0.009836232,-0.0135723865,0.0031451727,0.05544268,-0.064022,0.025945514,-0.01463327,-0.013307165,0.055996183,-0.013145727,0.05295191,0.03796117,-0.008348689,0.00787014,0.047831997,-0.043611526,0.009686325,0.04075175,0.013699231,0.055903934,0.03108849,-0.042735144,-0.01075874,-0.04448791,-0.031111553,-0.028828349,-0.0387453,0.00048936123,0.016674317,0.04750912,-0.0056417077,-0.007258978,-0.008809944,-0.0021131178,0.013053476,0.000069413254,0.027813591,0.011398729,-0.022151703,-0.023892935,-0.076614216,0.042550642,0.090082824,0.011854216,-0.0052294624,-0.039921496,0.0061635007,0.007414651,0.020744879,-0.018611582,-0.010879818,0.017412322,-0.03962168,0.01299582,-0.0370156,-0.008844538,0.0042031733,0.022220891,-0.06595926,-0.022024859,-0.01515218,0.040613376,0.032772068,0.016236126,-0.014990741,-0.026868021,0.0015610551,-0.008527425,0.038952865,0.040475,-0.034893833,-0.060331967,-0.034155827,-0.056457438,0.01705485,-0.015890185,-0.004935413,-0.02359312,0.055165928,0.027190898,-0.0066651143,-0.0024114912,0.00148466,-0.021298384,-0.04107463,0.024515627,-0.014564082,0.011911874,-0.009294259,0.03221856,0.016570535,-0.014760114,0.002714189,0.0136877,0.015728747,0.024769317,-0.00782978,-0.014172016,-0.0036698487,0.0148177715,0.021044694,0.0009866502,0.03821486,-0.02041047,0.009351917,0.03828405,0.035931654,0.029289601,-0.028551595,-0.0007253933,0.005413964,0.0014363724,0.03244919,0.009219306,-0.026545143,0.027190898,0.009455699,-0.006451784,-0.013560855,-0.00027332877,0.003891827,-0.04907738,-0.007518433,0.010770271,0.04554879,-0.0013196176,-0.02815953,-0.019868497,0.029935356,0.04485691,0.01851933,0.0121425,-0.0052092825,-0.008642739,0.0014046612,0.028713034,0.006791959,-0.030604174,-0.060470343,0.0000071564123,0.0038341703,-0.03666966,-0.010908647,0.013457073,0.0057512554,-0.008642739,-0.004869108,0.022532238,0.031665057,0.06886516,-0.0010306134,0.0039177723,-0.031457495,0.0077951853,0.012592223,-0.02091785,0.0075991526,-0.0008381842,-0.005451441,-0.048892878,0.0008951202,0.010729911,-0.001212232,0.05175265,-0.014229673,0.01162359,0.031157678,0.027260086,0.044141967,-0.047070928,-0.032864317,-0.01652441,-0.025622636,-0.012154032,-0.0003008959,0.00061440415,-0.028943662,0.015694153,0.0015898835,0.018565455,0.01489849,-0.031272992,-0.0019588862,-0.022163235,-0.021425229,-0.023339432,-0.013653106,-0.016374502,-0.05355154,-0.0058579203,-0.009386511,-0.03623147,-0.029658604,0.036462095,0.036784973,-0.01697413,0.0099630775,0.028989786,0.00097223604,0.02935879,-0.049907636,0.0256457,-0.02566876,0.009184712,0.0078124823,-0.007380057,0.009824702,-0.016674317,-0.04082094,0.012523035,-0.042896584,0.005428378,0.00067962834,-0.048708376,0.015428932,-0.011093148,0.020548847,-0.030419674,-0.015832528,0.022140171,0.009582543,0.045940857,0.02031822,-0.008936788,0.024238875,-0.0275599,-0.0008201665,0.041489758,0.016720442,-0.017031789,-0.0064863786,0.031134617,0.012269345,-0.016985662,-0.0061058444,0.0025758129,0.012488441,0.0006003504,-0.0052640564,0.004136868,-0.05613456,0.021194601,-0.03383295,-0.0020107774,-0.002365366,0.041789573,-0.04621761,0.0067458334,0.0025080664,0.0023624832,-0.0047912714,0.0066362857,0.03351007,-0.01841555,-0.0086485045,-0.008458237,-0.030073732,-0.0045865905,-0.00076683407,0.029543292,-0.018657707,-0.041974075,0.00005770174,-0.021448292,0.063145615,0.02049119,0.0070802425,-0.027306212,-0.001445021,-0.034801584,0.005990531,-0.021194601,0.034294203,-0.013803014,0.010493519,0.013549324,0.023962123,0.026798833,0.012523035,-0.022024859,-0.03108849,-0.0038284047,0.026037764,0.02979698,0.01592478,-0.017423853,-0.035608776,0.014160485,0.01652441,0.011854216,0.030950114,-0.01158323,0.02721396,0.009150118,0.044972222,0.012499972,0.010643426,-0.025691824,-0.0054918,-0.0088848965,-0.012038718,-0.030719489,0.0030615707,-0.003649669,0.0022356384,-0.030488862,0.016939538,-0.033002693,0.0062903455,-0.029589416,-0.009605606,0.012719068,-0.03194181,-0.024238875,-0.022843583,-0.059547838,0.06042422,-0.010107219,0.0113122435,-0.0044770427,0.0006886372,-0.03579328,-0.025761012,0.0126268165,0.00029152667,0.018242579,0.002963554,0.0065325038,-0.0110758515,0.009709388,-0.0058002635,0.015013804,-0.03461708,0.0072186184,-0.021298384,-0.0018738427,-0.03902205,0.023201054,-0.016409095,0.0021491533,-0.0007437714,0.008314095,0.023823747,0.015394338,0.003248955,0.04494916,-0.014702458,-0.03297963,0.03623147,0.023443213,-0.017804388,0.01386067,0.0055090976,-0.021471353,-0.060331967,-0.008331393,0.04432647,-0.026729645,-0.025461197,-0.017343134,0.028459346,0.032679815,-0.0035631838,-0.015578839,0.007068711,-0.021840356,0.046471298,-0.0070975395,0.03452483,-0.0000011598905,0.0042031733,-0.010908647,-0.01299582,-0.005866569,0.007137899,0.0028525651,0.010320549,-0.011300713,-0.017804388,-0.004624067,0.01765448,-0.011375667,0.047209304,-0.01945337,0.021655856,0.02342015,-0.0241005,-0.00035675082,-0.019776247,0.00019423099,0.0130996015,0.020618035,0.0043703774,-0.0012107906,0.014010577,-0.008562019,-0.00013567341,0.021206133,-0.025207508,0.044141967,0.009743982,0.018738426,-0.006878444,0.023500869,0.022601426,-0.0045981216,0.02935879,0.018749958,-0.022636019,0.014298861,-0.020295158,0.0001516191,-0.050645642,-0.052213904,0.0225553,-0.004866225,-0.005388018,-0.0071840244,0.008429409,-0.046033107,-0.002523922,-0.012119438,-0.027859716,-0.013272571,-0.0034997615,0.000405759,-0.020341283,0.024285,-0.026360642,-0.011410261,-0.017838983,0.023616184,0.027998092,-0.0021044693,-0.0032576034,0.00537937,0.047416866,0.009911186,0.023454744,-0.0041801105,0.004990187,0.0056907157,-0.026983334,0.013191852,0.0143449865,0.041535884,0.03261063,-0.034755457,-0.00184069,0.014748583,0.0088848965,0.00086268835,0.03005067,-0.03074255,-0.02832097,0.01886527,0.022059452,-0.020502722,-0.002016543,-0.021575136,0.0076222154,0.03833017,-0.02393906,0.0050737895,-0.026383704,0.014183547,0.017642949,-0.010211001,-0.011560168,-0.032403063,0.042412266,-0.005445675,0.028228719,0.016247658,-0.006878444,0.018484738,0.0020050115,0.0069533978,-0.0016273602,0.016685847,-0.009409573,-0.035677966,-0.014114359,0.015175243,-0.03639291,-0.01489849,0.010343611,0.009916952,-0.018726895,-0.020179844,-0.004837397,-0.018184923,-0.058071826,-0.010574238,0.008994444,0.004015789,-0.020952443,0.018023483,-0.00030467962,0.011790794,0.018369423,-0.0047912714,-0.018300235,-0.013364823,-0.0016201532,-0.019049773,-0.014229673,-0.04400359,-0.009282728,0.013364823,-0.04407278,0.020733349,0.0038860613,0.037223164,-0.029889232,0.062130857,0.021459822,-0.02504607,-0.035977777,-0.02118307,-0.0052842363,-0.0061635007,-0.00044792047,-0.032241624,-0.031572808,0.03332557,0.025253633,-0.0048806393,-0.030189047,0.02290124,0.012799786,-0.019257337,0.016489815,0.037084788,-0.01420661,-0.012892038,-0.03607003,-0.031203805,0.06397587,0.009282728,0.017089445,-0.06383749,0.0015336681,-0.0036698487,-0.0037419195,0.028274843,-0.00921354,0.016155407,0.0033988622,-0.04513366,0.04460322,0.0034478705,0.014114359,-0.03773054,0.025922451,-0.0026882435,-0.054197297,0.009951546,-0.021748107,-0.0013354733,0.012315471,0.015059929,-0.012453847,-0.027698277,-0.006872678,0.00058521546,-0.0010399827,-0.020076063,0.041028507,-0.009046336,-0.0512914,-0.0028338267,0.013791482,-0.011162337,0.0235124,0.008677333,0.0071609616,0.009519121,0.0000059514773,-0.0043703774,-0.024238875,0.03203406,-0.01054541,0.014102828,0.014471831,0.019061305,-0.017977359,-0.022313142,0.049907636,0.008567785,0.02099857,-0.0061173756,0.0010133164,0.016374502,0.018265642,0.029381853,-0.005382253,-0.02160973,0.00447416,-0.0135377925,0.024261938,0.013826076,0.028828349,-0.0008093559,-0.04031356,0.0066362857,-0.009236603,0.007328166,0.047739744,-0.016282251,0.04264289,0.01299582,0.025415072,0.0122578135,0.012799786,0.053367037,-0.0069533978,-0.0067688962,0.0014277239,-0.024953818,0.021171538,0.023915999,0.012476909,0.0035055273,0.022151703,-0.027951967,0.044557095,0.007086008,0.0048806393,-0.0038255218,-0.008585082,0.020029936,0.039298806,-0.002120325,-0.0046384814,-0.0354704,-0.02712171,-0.002510949,-0.0071263677,0.0014803357,-0.0066651143,-0.024492566,0.031895686,0.047647495,-0.009478761,0.024792379,0.005791615,-0.037938107,0.037246227,-0.024054375,-0.02247458,-0.029151225,0.027306212,0.029912295,-0.0077432944,0.004428034,-0.01894599,0.012430783,-0.033625387,0.01697413,0.04637905,-0.012107906,0.0016850169,0.016236126,0.009588309,0.00067854725,0.0097958725,-0.018565455,0.012004124,0.015648028,-0.004569293,-0.007945092,-0.043334775,-0.027629089,-0.011531339,-0.008994444,-0.008464003,0.011900342,-0.026844958,0.025299758,0.020295158,-0.009202009,0.030650299,-0.0062384545,0.02866691,-0.0118196225,-0.015394338,-0.011179633,-0.0013455632,-0.016547471,-0.0010327756,0.028390158,-0.010182173,-0.014068234,-0.014840834,0.023316368,-0.033371694,0.005388018,0.00460677,-0.001509164,-0.002904456,-0.013318697,-0.011364135,0.006809256,0.057149317,0.019118961,-0.0075991526,-0.003442105,0.033025756,0.025438135,0.035770215,-0.013653106,-0.0057743182,0.01981084,-0.00649791,-0.030765614,-0.013872202,0.0038341703,0.004422269,-0.005549457,-0.034063578,0.035239775,0.027629089,-0.00460677,0.010868288,0.0114794485,0.0013246626,0.016662786,0.016755035,-0.014667864,0.025784075,-0.019430308,0.0079739215,0.028597722,-0.012603754,0.026729645,0.011934936,0.013549324,-0.012373127,0.0038284047,0.02841322,-0.012004124,0.016916474,0.0026392352,-0.00073296076,-0.015855592,-0.012684473,-0.0073396973,-0.00038774128,-0.0040042577,-0.009029038,-0.024331126,0.0016360087,-0.01308807,-0.027975028,-0.00016900619,0.0035862466,-0.0046586613,-0.001308807,-0.02194414,-0.009288494,0.046563547,0.006993757,0.02212864,-0.009778576,0.039206553,-0.012857444,0.022762863,-0.010211001,0.06960317,0.0139067955,0.021851888,0.01789664,0.04432647,0.004782623,-0.0071090707,-0.0030990473,0.012269345,0.008262205,-0.008221845,0.037776668,-0.016339907,-0.0028295023,0.0042348844,0.0030327423,-0.011531339,0.021252258,0.05613456,-0.03563184,0.05193715,-0.005405315,-0.03493996,-0.0012597988,-0.007996984,0.031872623,-0.01790817,-0.0217827,0.037384603,-0.0011581789,0.019441837,0.002275998,0.0033498541,-0.0013902471,0.005307299,-0.0076510436,0.019868497,0.022762863,0.03348701,-0.0025527503,0.022797458,-0.00092394854,-0.007991218,0.016259188,0.013284103,0.018150328,-0.0077202315,0.03325638,0.01282285,-0.008221845,-0.056088436,0.040659502,0.009415339,-0.023662308,-0.0056763017,0.010781802,-0.0041858763,0.031019302,0.016847286,-0.006428722,0.005062258,-0.016801162,-0.02832097,0.046978675,0.020168312,-0.0061116097,0.014933084,0.012361595,-0.016755035,-0.013630043,-0.010591535,0.033625387,-0.033164132,0.0038168733,0.0013369146,-0.028689973,0.009755513,-0.005310182,0.011191165,-0.009824702,-0.029497165,0.018150328,-0.02290124,-0.008833006,-0.0233279,-0.022716738,-0.00989389,-0.02204792,-0.05387442,0.0071609616,-0.03152668,-0.0038716472,0.017158633,0.015936311,-0.014356517,0.0052236966,0.020987038,-0.020906318,-0.020779474,0.022243954,-0.007847076,0.013653106,-0.016582066,0.01695107,0.0035718323,-0.0058406233,-0.0026161727,-0.015751809,0.022924302,0.020514254,-0.023443213,0.0121425,0.023362493,-0.037569102,0.015313619,-0.03902205,-0.0019588862,-0.009478761,0.007051414,0.004035969,0.019349588,0.019660933,-0.0026421181,-0.0010219649,0.023362493,-0.00223708,0.0215982,-0.031872623,-0.009818936,-0.023028085,0.0035977778,0.03314107,-0.0076741064,0.01937265,-0.023523932,0.0033383227,0.004955593,0.02488463,-0.008890662,0.0048287483,-0.002472031,-0.018553926,0.033763763,0.031203805,-0.0194649,-0.032841254,-0.0007689962,0.04787812,0.023062678,0.015405869,-0.004889288,-0.0020886138,0.017170165,0.017158633,0.021805763,0.0066824113,-0.0015077227,0.004906585,-0.032356936,-0.020041468,0.0013116898,-0.047416866,0.024423378,-0.0036784972,-0.00535919,-0.012453847,0.012788256,0.003788045,0.007414651,0.008631207,-0.03493996,-0.042389203,-0.0000016300404,-0.012892038,-0.023523932,-0.016316846,0.0126614105,-0.028689973,-0.0028640963,-0.0076914034,-0.0010500726,-0.0086830985,-0.02599164,-0.0077029346,0.018231047,0.014125891,0.009259665,0.00439344,0.03383295,-0.032795127,-0.01071838,0.0029476986,-0.047462992,0.0041483995,0.004332901,0.016535942,-0.0018392486,0.04614842,-0.019856967,0.04847775,-0.026153078,-0.00039350695,-0.010539644,0.041812636,-0.010735677,-0.018277172,0.0035977778,0.0062615173,-0.010897116,-0.0185078,-0.0025095078,0.03148056,0.015417401,0.034248076,-0.04091319,-0.026914146,-0.0068323184,0.044049717,0.042550642,0.021563604,0.041028507,-0.01713557,-0.018738426,0.023662308,0.008809944,0.0031394071,-0.03623147,-0.009380745,-0.009461464,0.023604652,0.021563604,-0.010856756,-0.007351229,-0.0013679052,-0.02375456,-0.021379104,-0.019314993,0.019015178,-0.00044575834,0.006002062,0.027237024,-0.023708433,-0.027237024,-0.025899388,-0.018957522,0.0022500525,-0.004837397,-0.027444588,-0.055396553,0.047047865,-0.017769793,0.0029606714,-0.000623413,-0.0041916417,-0.014702458,-0.0027862599,-0.02299349,0.00030215713,-0.0036064263,0.030419674,0.019499496,0.03330251,-0.0035055273,0.024976881,0.03348701,-0.014886959,-0.027836652,0.0008353014,-0.0057454896,-0.016720442,0.016939538,-0.03477852,-0.00083385996,0.018196454,-0.013595449,0.020341283,-0.003646786,-0.01962634,0.010845224,0.010360909,0.015521183,0.015209837,-0.020249031,0.034225017,-0.025968576,0.016847286,0.05724157,0.02126379,-0.026406767,0.01721629,-0.020871725,0.011231525,-0.01876149,0.025161382,-0.012211689,-0.0057310755,0.0030269765,-0.023212586,0.040590316,0.010960538,0.0073396973,0.04949251,0.013814544,0.040405814,0.008677333,-0.03203406,-0.023304837,-0.0027444588,-0.029243477,-0.004402089,-0.008452471,-0.026222266,-0.022843583,0.018911397,0.0051602744,0.026683519,0.0015942077,0.0022716739,0.0052150483,-0.024261938,0.011127742,-0.032518376,0.017931232,-0.013468605]},{"id":"interface-RestOptions","type":"interface","source":"main","text":"Interface: RestOptions\nProperties: api: string, authPrefix: \"Bot\" | \"Bearer\", retries: number, timeout: number, userAgent: string, version: string","meta":{"url":"/docs/typedefs/RestOptions"},"embedding":[-0.034890577,-0.027728945,0.039209936,0.0058300165,-0.017266247,-0.014681347,-0.00995355,0.014580635,0.0122642955,0.01801598,-0.01774742,-0.026162338,-0.010854349,0.005374022,0.0044928053,0.0050131427,-0.064947054,0.024774771,-0.023700528,0.03066074,0.016550085,0.0109103,-0.026117578,0.027057542,-0.017355768,-0.003863365,0.006126553,-0.0014589028,-0.019806389,-0.06745362,0.017557189,-0.03314493,0.017232677,0.036367666,0.040284183,-0.012734277,0.07645042,-0.005007548,0.016628414,-0.01749005,-0.021003725,-0.027549904,-0.020847064,0.023163404,-0.059038706,0.0048480895,0.012935698,-0.005368427,0.005141828,-0.0035024858,-0.051742792,-0.029273173,-0.045722548,0.0715268,0.041515086,-0.008370157,-0.007861011,0.016404614,0.0012253105,0.01807193,0.0036479565,-0.012398576,0.00012886043,-0.0357634,-0.028624149,0.058188263,-0.031600703,0.017635519,-0.021227526,0.026788982,0.034129653,-0.0049348124,-0.025289515,0.018564293,0.011150885,0.004006038,0.012756658,0.025289515,0.045073524,-0.048117217,-0.04030656,0.009947955,-0.03764333,-0.056487374,-0.00221563,-0.004730594,-0.041917928,-0.02873605,0.005175398,-0.020947775,0.0009889207,-0.029922195,-0.046147767,-0.009858434,-0.03513676,-0.058591105,0.032406386,-0.034219176,-0.05787494,0.043551676,0.041201767,-0.047132492,-0.10402271,0.026968021,-0.014200174,0.017859321,0.03318969,-0.0004444548,-0.015106568,-0.005785256,-0.020668024,0.018933566,-0.020030191,-0.020108521,0.028176548,-0.042432673,-0.0117495535,0.011682413,0.029452212,-0.05545789,-0.0031080365,-0.002589098,0.0715268,0.0062776185,-0.008946446,-0.0021512872,-0.041626986,-0.019023085,-0.06884119,0.0094444025,0.020321133,0.025558075,0.014144224,-0.023029124,-0.0010224909,-0.017008876,-0.01982877,0.009830459,-0.003231127,-0.0354277,0.013069979,-0.061500516,-0.017613139,0.0034241555,-0.036748126,-0.028288448,-0.034823436,-0.002698201,-0.016247954,0.069781154,-0.02018685,0.043574058,-0.0222682,0.036390044,-0.026117578,-0.031936403,0.019123796,0.030235516,-0.03314493,-0.010194136,0.04646109,0.012353816,-0.012130015,-0.03985896,0.0030129212,0.014860387,0.032294486,-0.008498844,-0.06132148,0.025379034,0.04932574,-0.027147062,-0.018732145,0.010389962,-0.009892005,-0.012734277,0.023163404,0.02007495,-0.015319179,0.045767307,0.04444688,-0.0054915175,-0.0016757101,-0.05536837,-0.029317932,-0.015699642,-0.03956802,0.016807456,0.027236583,-0.019660918,0.010417937,0.021753458,-0.0309293,0.009231792,-0.010541027,-0.010255681,0.0024240448,-0.04211935,-0.014580635,-0.013114739,0.0035892087,0.021082055,0.069244035,-0.016303904,0.004425665,0.013394491,-0.0029429833,-0.043238357,-0.017892892,-0.0011301951,0.031332143,-0.011229216,0.0029933385,0.003203152,-0.017087206,-0.005653773,0.029452212,0.019437118,-0.0040955585,0.00047417838,-0.054249365,0.012085254,0.06346997,-0.04267885,0.06172432,0.02468525,0.012130015,0.009198221,-0.020231612,-0.005740496,-0.03334635,0.04202983,-0.046863932,-0.0020995333,0.0309293,-0.010904704,0.030839778,0.015408699,0.005709723,-0.041380808,-0.011570512,-0.023096263,-0.024192888,0.03325683,0.013528771,-0.007128062,-0.008476463,-0.034420595,-0.021227526,0.009119892,0.02649804,-0.0074861436,0.056039773,-0.03976944,0.04601349,-0.02652042,-0.01787051,-0.010932679,-0.018217402,0.0036451588,0.016740315,-0.012040494,0.012107635,0.025423795,-0.027706565,-0.0439769,-0.031779744,0.019314026,-0.0021834585,-0.025177613,-0.013685431,0.008605149,0.039232317,-0.012219535,-0.01329378,-0.016594846,0.027840845,-0.011156481,-0.07148204,0.040217042,-0.0071504423,-0.029407453,-0.002738765,0.041537467,0.027214203,0.0053404514,0.04717725,-0.010742448,0.025199994,0.028288448,-0.00660213,0.027639424,0.034420595,-0.062350962,0.00089170714,0.03811331,0.055099808,-0.01573321,0.0892966,0.019280458,0.036188625,0.00038885424,0.012700708,-0.063649006,-0.015218468,0.020970155,0.052548476,-0.011257191,0.07112396,-0.005676153,0.029228412,-0.01533037,-0.045633025,-0.00049725786,-0.030392177,-0.004836899,0.03276447,-0.043685958,-0.008817759,-0.011671223,-0.03372681,-0.039321836,-0.030615978,0.007698755,0.007928151,-0.0756895,0.012588806,-0.025916157,0.02210035,0.010361987,0.020198042,-0.054920767,-0.008465273,0.018922376,0.007111277,0.04390976,-0.029138891,0.025334274,0.008789784,0.040038,0.0065014195,-0.03979182,-0.05102663,0.0013113341,0.020779924,-0.013853283,-0.05062379,-0.025602836,-0.014882768,0.029787915,-0.0045179827,0.010216516,-0.02638614,-0.030213136,-0.032518286,0.011128506,-0.00003140645,-0.028512249,-0.072511524,0.029385073,-0.05912823,0.016561275,0.017366959,-0.0047222013,0.020914204,0.0005392206,-0.020198042,-0.0196833,-0.025043333,-0.03529342,0.05501029,0.0064510643,-0.0038269972,-0.009466783,-0.004943205,0.013898043,-0.047087733,-0.0041822814,-0.02240248,-0.011469802,0.0493705,0.01769147,-0.03538294,-0.025804257,0.01329378,-0.0042913845,-0.020309942,0.008151952,-0.014289695,0.040866066,0.027885607,0.016102483,-0.07233249,-0.011928594,0.026699461,-0.03569626,-0.010770423,0.00033500214,0.0011176063,-0.034868196,0.045677785,0.0063951137,-0.023029124,0.041515086,-0.031399284,-0.05527885,0.03833711,-0.003580816,0.0009035966,-0.017064827,0.027952746,-0.029899815,0.04218649,0.03283161,0.03775523,-0.027415624,0.02468525,-0.06664794,0.02235772,0.021406567,-0.01994067,0.043417394,-0.0486991,-0.0048704697,-0.030459318,0.017557189,-0.006904261,-0.0098640295,-0.05089235,-0.04623729,0.01324902,0.036725745,0.041403186,0.013830902,-0.017467668,-0.01779218,0.012353816,-0.010983035,-0.0122642955,-0.010328417,-0.02629662,-0.008661099,0.0003533608,0.01562131,-0.04232077,0.012958079,0.0064510643,-0.041761268,0.0130923595,-0.020925395,-0.067498386,-0.03771047,-0.02878081,0.04605825,-0.0011266982,-0.029474594,0.015587741,0.011162075,0.01548703,-0.012532856,0.030078856,-0.03361491,-0.017131967,0.031175481,0.042790752,0.045744926,0.000020478667,0.028019886,-0.034308694,-0.007900176,-0.0037570593,-0.020947775,-0.0049627875,-0.041179385,-0.016606035,-0.040038,0.030145995,0.018273352,0.023566246,0.032473527,0.004414475,0.014658966,-0.036882408,-0.00082176935,0.030459318,0.07349625,0.00774911,0.02663232,-0.05277228,0.009763319,0.031891644,0.012723087,-0.016303904,-0.008918471,0.013439251,-0.028288448,-0.0005605516,-0.044849724,-0.017422909,-0.0019386762,0.023901949,-0.051429473,-0.009634634,0.029452212,0.008107192,0.020410651,-0.015856301,-0.036882408,-0.016236763,0.0004640374,-0.0034073703,-0.002084147,0.012018114,0.003804617,-0.0446483,0.01988472,-0.016829835,0.024080988,-0.025602836,0.0012665738,-0.015218468,0.0037850346,0.019336408,0.04160461,0.009422023,-0.018776905,-0.03976944,-0.011324331,-0.0035612336,0.027482765,-0.0001369907,-0.025289515,-0.027079923,-0.022917224,0.004540363,0.01003188,0.019190937,-0.013987564,0.004081571,-0.040776543,-0.001969449,0.002881438,-0.008823355,0.013886853,-0.036121484,0.027348483,0.0041599013,0.018116692,-0.011771933,0.021887738,-0.01320426,-0.005953107,0.03321207,-0.008711454,0.01769147,0.0031388092,0.030078856,-0.020533742,-0.013181879,-0.010809589,-0.002071558,-0.025580455,0.004213054,0.011262786,-0.020668024,0.0027639426,-0.004168294,0.0309293,-0.034442976,-0.016762696,-0.011514562,0.00778268,-0.01331616,0.06526037,0.025177613,0.015319179,-0.0018967135,-0.0039528855,-0.011660033,0.004671846,-0.009740939,-0.02466287,0.009438807,0.05550265,-0.013137119,-0.006244048,-0.009075131,0.005222956,0.009679394,0.058367305,0.026162338,0.012544046,0.018967135,-0.025983298,-0.009119892,0.023700528,0.0484753,0.0143792145,0.005091473,0.029608874,0.010624953,-0.011984544,-0.016337473,0.008224688,0.0032870774,0.032742087,-0.0013973576,0.011839073,-0.02206678,0.019974241,0.019582588,0.018821664,-0.018351683,-0.050355226,-0.03097406,0.004540363,-0.037083827,-0.04053036,0.0013043403,-0.01584511,-0.015867492,0.038963757,0.00882895,0.025043333,-0.030436937,-0.0055083022,-0.01989591,-0.036927167,-0.012812608,-0.031914026,0.032160204,0.049862865,-0.028288448,-0.0029150082,-0.02674422,0.013125929,0.009030371,0.022805324,-0.010345202,-0.009052751,0.018150263,0.006188098,0.014144224,-0.03844901,0.038247593,0.0029541734,-0.029631253,0.0005119448,-0.013170689,0.030593598,-0.044961624,-0.0043865,0.028087027,0.023342445,0.022615092,0.01985115,-0.020388272,0.018004792,-0.0013994557,-0.0005189386,0.0005595025,0.0156325,0.012018114,-0.011301951,-0.013237829,0.027863225,0.025490936,0.005986677,-0.021473708,-0.0067923605,-0.019213317,0.022592712,0.024730012,0.012398576,0.0089968005,-0.009192627,0.002296758,-0.0439769,-0.021731079,0.014222554,-0.05129519,0.007799465,-0.034152035,-0.006199288,0.039500877,-0.039500877,0.01793765,0.031802125,0.023073884,0.00009196823,0.020768734,0.018295733,0.026318999,0.013069979,0.0046830364,0.04641633,0.034353454,0.059083465,0.015084188,0.009489163,-0.004677441,-0.014692537,-0.0035500436,-0.0056397854,-0.045923967,0.036009584,0.01994067,0.0048816595,0.0056565707,0.019582588,-0.043372635,0.023230545,-0.032965887,0.003564031,0.030638358,0.022984363,0.019280458,0.022827704,0.013495201,-0.004470425,0.0046466687,-0.0016910963,-0.05756162,0.011995734,0.0267666,0.006148933,0.051877074,0.03157832,-0.022671042,0.01973925,0.051205672,0.0028576592,-0.034174412,0.007049732,-0.0019596575,0.029564114,-0.011693602,-0.0074134083,-0.0046326807,-0.014211364,0.0121971555,-0.014133033,-0.015889872,0.0036199812,-0.024998574,-0.0118166935,-0.009651419,0.029273173,0.029317932,-0.0132266395,-0.019918289,0.004999155,-0.016594846,0.03784475,0.01567726,-0.027505144,-0.004414475,-0.02656518,-0.035002477,-0.009970335,-0.023633387,0.024774771,-0.016292714,0.013685431,-0.01584511,0.0056985333,0.0021345022,-0.008767405,0.03784475,0.025737116,0.020813493,-0.005813231,-0.009338097,-0.011648842,0.04843054,-0.04417832,-0.051608514,-0.03538294,-0.034644395,-0.04272361,0.025423795,-0.025871396,-0.012599997,0.006244048,0.0024030632,-0.010686498,-0.025737116,-0.0148268165,-0.029966956,-0.0011057169,-0.019258076,-0.025960917,0.0223801,-0.052682757,0.007547689,0.011648842,-0.03779999,-0.03536056,0.032227345,0.002428241,-0.004671846,-0.000072647905,-0.004999155,-0.02020923,0.04458116,-0.045655407,-0.002347113,0.031376902,0.03086216,-0.027057542,-0.050041907,0.036211003,-0.010535433,0.016001772,0.01549822,0.04144795,0.0067308154,0.026028058,0.044961624,-0.0009406636,0.043014552,-0.0064734444,-0.021540847,0.010792804,-0.003438143,0.027057542,-0.0065517747,-0.053667482,0.025244754,-0.039187558,0.010451507,0.03757619,0.034756295,-0.007021757,-0.012275485,-0.028019886,-0.02672184,0.00882895,0.0011287964,0.021261096,0.020779924,-0.024192888,0.014009943,0.0058076363,-0.001819782,-0.0044452474,-0.0009994113,-0.015140139,0.0025513314,-0.002393272,0.0040507982,-0.0199071,0.047893416,-0.00056230003,0.039948482,-0.030280277,-0.034577254,0.01333854,0.01564369,-0.034084894,-0.025916157,0.038023792,0.00385777,-0.02891509,-0.0041990667,-0.0074301935,0.00027747828,-0.021305855,0.03348063,0.024528591,0.028310828,0.024080988,0.010820779,0.019179747,0.019425929,0.046192527,-0.01564369,0.03585292,-0.0349801,0.06794599,0.03108596,-0.004890052,-0.0024422286,-0.0073798383,0.003908125,0.023342445,-0.005407592,0.026318999,0.012734277,0.026318999,0.0018869223,0.040843684,0.025132854,0.031914026,0.03318969,0.025490936,0.0022226237,0.03768809,0.011229216,0.020556122,0.021641558,-0.0029122105,-0.0014421177,-0.007307103,0.01992948,-0.0026100792,0.0266547,-0.022536762,-0.029944574,0.037307627,0.02860177,0.0055698478,0.013998753,0.06915451,-0.036815267,0.012823798,0.018206213,-0.019604968,-0.01790408,-0.002128907,-0.010048665,-0.009936765,-0.03301065,0.014524685,-0.041022725,-0.017098397,0.009472378,-0.03383871,0.0012330037,-0.0136742415,0.018195022,-0.008420513,0.00088960904,0.015912252,-0.048788622,-0.024707632,0.0015652083,0.023006745,0.010837564,-0.01314831,-0.0199071,-0.02857939,0.0017316603,-0.029631253,0.016986497,0.008179927,-0.022726992,0.017154347,-0.03545008,-0.02220106,0.0018589471,-0.008750619,0.043126456,-0.02234653,-0.011492182,0.018430013,0.012029304,-0.015005858,0.025692357,0.039500877,-0.02221225,-0.0056090127,-0.015352749,-0.050041907,0.018955946,0.03135452,0.0075085238,0.022335341,0.01336092,0.0018015981,-0.019750439,-0.007967316,0.044939242,0.012756658,0.018418822,0.054025564,0.0072063925,0.029989336,-0.0039920504,-0.012488096,0.01740053,0.0493705,0.0030828589,-0.048072457,0.027617045,-0.008694669,0.0069210464,0.025692357,0.025625216,0.021753458,0.005264919,-0.033995375,-0.01548703,0.029183652,0.00015438773,-0.020399462,-0.0109494645,0.006372734,-0.0014176395,-0.025647596,-0.011704793,0.011883833,-0.030101236,-0.040396083,0.0011169069,0.016158434,-0.020735163,0.008045646,0.008532413,0.0010637542,-0.02000781,0.009808079,0.012420956,-0.058770146,-0.04646109,-0.024170509,0.01538632,-0.0021666735,0.017993601,0.039165176,0.042634092,0.022659853,0.016404614,-0.004282992,-0.0075644744,-0.008224688,0.02426003,0.04223125,0.019079037,-0.0058356114,-0.0491467,0.03956802,-0.0005832814,0.042813133,0.03999324,0.01760195,0.0076875645,0.021138005,0.0125216665,-0.010043071,-0.00033098072,0.009836054,0.0034017754,0.021507276,0.001056061,0.0065573696,0.027258962,0.008163142,0.004655061,0.038672816,0.00075742655,0.0010805392,-0.041291285,-0.004501198,0.023566246,-0.015822731,0.035785783,-0.0012882545,0.049818106,-0.014949908,0.009097511,0.016964117,0.030213136,-0.0011427839,-0.016594846,0.009024776,-0.0009427618,0.020276371,0.012667137,0.04019466,0.044737823,-0.025558075,-0.014435166,0.0045431606,-0.010227706,-0.031645462,0.009422023,-0.028534628,-0.0018113895,-0.023745287,-0.016930547,0.011402662,-0.0051698033,-0.009545113,-0.063649006,0.006445469,0.006294403,0.008112786,0.023745287,-0.02857939,-0.016695555,0.009198221,-0.0027485562,-0.017422909,-0.023006745,-0.010960654,0.030145995,-0.02195488,0.016203193,-0.010988629,-0.020477792,-0.008275042,0.02243605,0.021216337,-0.0040088356,0.046103008,-0.024886671,-0.027102303,-0.024058608,-0.009858434,-0.018799284,0.016393423,0.01545346,0.006904261,-0.0020617668,-0.03833711,0.01539751,-0.006797956,-0.010216516,-0.02220106,0.004031216,-0.017546,-0.011839073,0.007161632,-0.0026548395,-0.015856301,-0.006216073,0.042589333,-0.017836941,-0.0036171838,0.009170246,-0.023879567,0.0039053275,-0.045073524,0.011346711,0.006652485,-0.005396402,0.015039428,0.017042447,0.013998753,0.015240849,0.01749005,-0.0027023973,-0.011760743,0.018083122,0.0134168705,-0.049818106,0.028042266,0.021753458,-0.019079037,0.014155414,0.011962164,0.0002853463,0.025625216,0.0076316143,-0.009869625,0.0021191158,0.0055027073,-0.0018589471,0.018452393,-0.01547584,-0.015755592,-0.0016435387,-0.012398576,0.027482765,-0.0019806388,-0.006428684,-0.0056174053,0.03110834,-0.005253729,0.023969088,0.004951597,-0.012141204,0.0049488,-0.004229839,0.045409225,0.047132492,0.002864653,-0.008140761,-0.04171651,0.012230725,-0.03766571,-0.0008098799,0.0078442255,0.0031807718,0.025759496,-0.026878502,0.0047893417,-0.009578683,0.014647776,0.010166161,-0.009405238,0.0076372093,-0.0064958245,-0.038359493,0.0045487555,0.0201309,0.020600883,0.012029304,0.027885607,-0.010082236,-0.012398576,0.0082918275,0.019448308,0.025781875,0.013506391,0.0015218469,-0.02218987,0.039187558,-0.012275485,0.0264309,0.02685612,0.018575484,0.03766571,0.040284183,0.00084904506,0.013036408,0.0067643854,-0.024036229,0.0010196933,0.005057903,0.023879567,-0.007267938,0.008879305,-0.028109407,-0.023901949,0.024752392,0.017467668,0.027102303,-0.012040494,-0.0052677165,-0.035002477,0.023745287,0.014468735,0.023431966,-0.004173889,-0.01324902,0.018620243,-0.043215975,-0.00777149,0.021921309,-0.030504078,0.0027653412,0.00011565966,0.0036731341,-0.025379034,0.00056754536,-0.03119786,0.0020855456,-0.016382234,-0.034957718,-0.029138891,-0.018541913,0.007989696,0.004361322,0.0058356114,-0.012812608,0.0017932056,-0.019403547,0.012946889,-0.004257814,-0.012767848,-0.0109103,0.018564293,0.024998574,-0.002761145,0.005290096,0.016449375,-0.025714736,0.035114378,-0.015777972,-0.025893778,0.053398922,0.025625216,0.01112291,0.0018477571,0.009517138,-0.023118645,-0.0012127217,-0.0353158,-0.013707812,0.047132492,0.0047949366,0.018832855,-0.02214511,-0.025692357,-0.01987353,0.02656518,0.008263852,-0.006238453,0.010289252,0.026207099,-0.032093063,0.012018114,-0.023230545,0.008812165,0.0039305054,-0.020253992,-0.034062512,0.008437298,-0.0009882214,0.031824503,-0.053398922,0.0015316382,0.005902752,-0.010781614,0.0000040159607,-0.01330497,0.0079113655,-0.014681347,0.008605149,0.0141218435,-0.012846178,0.0007294514,0.0130923595,0.010278061,0.029004611,-0.02869129,-0.016348664,0.0009364674,0.014144224,0.04471544,-0.00088821026,-0.01538632,0.011827883,-0.0069434266,-0.015140139,-0.028198928,0.021540847,-0.00447602,0.027863225,0.0046746437,0.0013253216,-0.027661804,-0.0017806168,-0.020108521,0.011408256,-0.008627529,0.01769147,0.033950612,-0.017109588,0.016012963,0.025423795,0.018262163,0.003426953,0.01964973,-0.0004322157,-0.00027223295,-0.0021764648,-0.008974421,-0.012253106,-0.018038362,0.008935255,-0.09444403,0.02629662,-0.02652042,0.013562341,-0.012018114,0.014636586,0.017579569,0.009545113,0.05536837,-0.010412342,-0.014267314,-0.013886853,-0.023633387,0.018955946,-0.008118382,0.011570512,0.004098356,-0.047535334,0.012946889,-0.0018337695,0.0024730011,0.009914385,-0.00334023,-0.00660213,0.024058608,0.057293057,-0.012924508,-0.004207459,0.025199994,-0.012599997,-0.054741725,-0.0023750882,-0.009382857,0.010395557,0.00385777,-0.043215975,-0.04444688,0.017948842,0.018620243,0.018732145,0.036009584,0.020835875,-0.027885607,0.0129021285,-0.0033430276,-0.008000886,0.021742268,-0.016303904,0.0011301951,-0.018161451,-0.013752572,-0.020388272,0.0005087976,0.023790047,-0.009259767,0.011973354,0.01772504,0.009752129,0.023275305,0.0042438265,0.03301065,-0.02904937,-0.016762696,0.0152744185,-0.008023266,0.010384367,-0.023320066,0.0061097676,0.004436855,-0.020455413,0.037016686,-0.015811542,0.02667708,-0.03822521,-0.005041118,0.07774847,0.016874596,-0.0007392427,0.00081897184,0.0395904,-0.012544046,-0.0038941377,0.015352749,-0.010154971,0.0013113341,-0.0004444548,-0.0063447584,-0.012107635,-0.0021512872,0.014726106,-0.011592892,-0.022883654,0.0062888083,-0.027706565,0.021596797,-0.027102303,0.05545789,-0.03562912,-0.0076875645,0.044827342,-0.025580455,-0.0018785297,-0.03157832,0.003110834,-0.0025863005,0.0062552383,0.010787209,0.01790408,0.0027401636,0.00492642,-0.013439251,0.026229478,-0.0016491337,0.00096863875,-0.028534628,-0.017613139,0.0076819696,-0.008269447,0.017378148,0.014043514,0.024192888,0.025199994,0.036457185,0.014983478,-0.0073406734,-0.016382234,0.009718559,-0.020668024,0.01549822,0.014647776,-0.030526457,-0.035271037,-0.0029877436,-0.008062432,0.006937831,-0.034935337,-0.00780506,-0.04196269,-0.0005318771,0.02652042,0.016896976,-0.032697327,0.029899815,-0.034442976,0.039120417,0.07291437,0.041470326,-0.0105690025,0.010552217,0.008571579,-0.007502929,0.00774911,0.0011672621,-0.0047138087,0.009422023,-0.03327921,-0.016147243,0.013137119,0.00072245765,0.025647596,0.054607447,-0.00896323,-0.008515628,0.02441669,-0.015196089,-0.043036934,-0.016852217,-0.026811361,0.014222554,0.0027289735,-0.022637472,0.038202833,-0.0015708033,0.029922195,0.008247067,0.010356392,0.0061657177,0.008409323,0.014625396,0.0065685594,-0.02015328,-0.012152395,0.020612072]},{"id":"interface-RESTOptions","type":"interface","source":"main","text":"Interface: RESTOptions\nDescription: Options for the REST client.\nProperties: api: string, authPrefix: \"Bot\" | \"Bearer\", retries: number, timeout: number, userAgent: string, version: string","meta":{"url":"/docs/typedefs/RESTOptions"},"embedding":[-0.027465785,-0.009192783,0.048799474,-0.0042158156,-0.011074222,-0.010388113,-0.025493221,0.005110973,0.00816362,0.008978374,-0.024271091,-0.038958102,-0.01055964,-0.0012777433,0.020819107,0.010918775,-0.044254005,0.011106383,-0.02952411,0.034777127,0.026522385,-0.0040416084,-0.013454161,0.014547646,-0.030253101,-0.0074453503,0.015984187,0.010902694,-0.01678822,-0.057290066,0.005354863,-0.030639037,0.036985543,0.04007303,0.042131357,-0.019060954,0.06445132,-0.0026760914,0.03244007,-0.024742791,-0.026093567,-0.024785673,-0.007150538,0.03331915,-0.05141526,0.00937503,0.013786495,-0.025386017,0.025750512,-0.0047893594,-0.04463994,-0.031089295,-0.04485435,0.07259887,0.03342635,-0.03190405,-0.012392837,-0.0052422984,0.00015301762,0.015984187,-0.00599809,-0.002781956,-0.013368397,-0.033490676,-0.022770228,0.07045478,-0.03286889,0.017485049,-0.027916044,0.038829457,0.030531833,-0.008254744,-0.02161242,0.03983718,0.026543826,-0.011363673,-0.005612154,0.025000082,0.029566992,-0.036985543,-0.04416824,0.021666022,-0.031239381,-0.04704132,0.006432268,0.0068289246,-0.043739423,-0.05235866,0.0052262177,-0.01080085,0.0018358765,-0.036835454,-0.040308878,-0.017581532,-0.04058761,-0.047169965,0.056603957,-0.020754784,-0.045797747,0.049571346,0.03194693,-0.039944384,-0.09476875,0.021708904,0.003194693,0.024185328,0.024592705,-0.0040067667,0.009444714,-0.0048617227,-0.040994987,0.036170788,-0.015040787,-0.006936129,0.010715086,-0.023885155,-0.0043900227,0.024871437,0.027036967,-0.06513743,0.010597162,-0.005454027,0.071441054,0.01297174,-0.029395465,0.0036288712,-0.020701183,-0.012821654,-0.06573778,0.0016777499,0.0037601967,0.052187134,-0.0022740748,-0.029781401,0.004440945,-0.026029244,-0.04086634,0.0076436787,-0.006019531,-0.029824283,0.017549371,-0.049828637,-0.013336236,-0.0009681903,-0.013336236,-0.021955475,-0.035720527,0.006973651,-0.0113743935,0.06886815,-0.02665103,0.04346069,-0.012585805,0.02041173,-0.011331513,-0.03239719,0.033211943,0.02066902,-0.036663927,-0.00040704195,0.06449421,0.01967202,-0.00043719323,-0.032461513,0.0037280354,0.00503593,0.03842208,-0.0014941623,-0.048542183,0.026372299,0.043525014,-0.03411246,-0.022770228,0.009433993,-0.017356403,-0.017806662,0.04438265,0.039708536,-0.020186601,0.026586708,0.044211123,-0.0074024685,-0.0043042595,-0.047641665,-0.033018976,-0.017860264,-0.038550727,0.02472135,0.031968374,-0.011696007,0.020208042,0.011599523,-0.041616775,0.001031843,-0.028409183,-0.008490594,-0.016337961,-0.03162532,-0.029609874,-0.02926682,0.017967468,0.021194324,0.06067773,-0.028516388,0.0013789175,0.00983065,-0.017570812,-0.035398915,-0.006839645,-0.013068224,0.013572086,0.007831287,-0.0040201675,0.0075203935,0.004004087,0.0061588967,0.026372299,0.014236753,0.004130052,0.004936766,-0.025407458,0.004457026,0.050686274,-0.023413455,0.05325918,0.0078098453,0.012853815,-0.0014593208,-0.009208864,0.003141091,-0.017645855,0.039279718,-0.04459706,0.0073274253,0.026479503,-0.005370944,0.020583257,0.012639407,-0.003982646,-0.04725573,-0.016027067,-0.021869712,-0.031282265,0.025042964,0.013743613,0.0027658753,-0.020593978,-0.05325918,-0.04174542,0.030167338,0.012071223,-0.01678822,0.043610778,-0.04249585,0.042388648,-0.015673293,-0.009889612,-0.008319067,-0.011427996,0.005400425,0.013690011,-0.0077937646,0.009964655,0.011942578,-0.0484993,-0.008710363,-0.04153101,0.027658753,-0.015448163,-0.018878706,-0.0067485212,0.013336236,0.028216215,-0.019404009,-0.021451613,0.005341463,0.02208412,-0.015072948,-0.06706712,0.026801117,0.011599523,-0.019564815,0.01224275,0.051929843,0.035934936,-0.0065609133,0.04058761,-0.01177105,0.010093301,0.029009528,0.012424998,0.024892878,0.043996714,-0.06389386,-0.00960552,0.033683643,0.064965904,-0.022255648,0.09725589,0.010409554,0.01104206,0.0063411444,-0.00504933,-0.0461408,-0.02547178,0.0029910046,0.068310685,-0.037886057,0.06719576,-0.008270824,0.046055038,-0.006903968,-0.03844352,-0.0073756673,-0.02375651,-0.0014673611,0.021065678,-0.03211846,-0.003626191,0.0004268078,-0.04871371,-0.03668537,-0.03141091,0.0069254087,0.010388113,-0.07680128,-0.0043417807,-0.026072126,0.0044275443,-0.0018894788,0.038829457,-0.05377376,0.011202867,0.023627864,0.014215312,0.04386807,-0.009857451,0.029845724,0.02255582,0.02905241,0.015040787,-0.029781401,-0.04772743,0.004604432,0.008024254,-0.03336203,-0.042624496,0.0013058844,-0.0216017,0.032525834,0.027980367,0.013336236,-0.016477326,-0.0031491313,-0.04202415,0.015330239,-0.015705455,-0.044082478,-0.06093502,0.01821404,-0.057976175,0.018063953,0.006550193,0.003575269,0.029331142,-0.005660396,-0.017581532,-0.004818841,-0.038250554,-0.037800293,0.057032775,0.01752793,-0.013175429,-0.008672842,-0.0016630093,0.023649305,-0.038979545,-0.005569272,-0.019768504,-0.026222212,0.039151073,0.019822106,-0.041659657,-0.021644581,0.03870081,-0.0049126446,-0.036192227,0.003623511,-0.0053816643,0.029781401,0.02905241,0.02330625,-0.04819913,-0.00022998708,0.022620143,-0.032354306,0.0049689272,0.0009380391,0.009916414,-0.032332867,0.032740243,0.01344344,-0.02016516,0.049957283,-0.027894603,-0.055574797,0.046912674,0.0003718655,-0.001872058,-0.017817382,0.040501848,-0.022748787,0.046741147,0.04704132,0.042538732,-0.054845806,0.031968374,-0.06320775,0.008233303,0.006067773,-0.03844352,0.05060051,-0.04438265,0.0033796208,-0.009476875,0.013464881,-0.0015169432,-0.008190421,-0.050772034,-0.043289162,0.03818623,0.05420258,0.023177605,0.010784769,-0.013700731,-0.02330625,0.010109381,-0.012435718,-0.0064215474,-0.008694282,-0.037628766,-0.005606794,-0.0099378545,0.017517209,-0.045797747,0.005258379,0.03168964,-0.040887784,0.009380391,-0.023113282,-0.06089214,-0.022148443,-0.04459706,0.034198225,0.0044972273,-0.01007186,0.0031866527,-0.00033936914,0.031861167,-0.018900147,0.014236753,-0.038615048,-0.022512939,0.022748787,0.032204222,0.041723978,0.007895609,0.02399236,-0.039451245,-0.016702456,-0.007364947,-0.0032992174,-0.0047411174,-0.03792894,-0.03265448,-0.0466125,0.020765506,0.0070218924,0.018374845,0.030124456,0.025514662,0.013561365,-0.0484993,-0.020990634,0.014858539,0.058233466,-0.007654399,0.049056765,-0.04704132,0.0019109197,0.043996714,0.010254107,-0.017485049,-0.0070915753,0.016691735,-0.051543906,-0.009798489,-0.046955556,-0.011159985,-0.0044248644,0.031260822,-0.044982996,-0.0073971082,0.0058480036,0.030896327,0.013346956,-0.00913382,-0.022384293,-0.020915592,0.022663025,-0.0058426433,0.010157623,0.0031544915,0.0009655102,-0.051543906,0.011063501,-0.019028792,0.011846093,-0.01486926,0.007842007,-0.017141994,0.010313069,0.01897519,0.040030148,0.0044087837,-0.023499219,-0.058190584,-0.02615789,-0.002351798,0.016573811,-0.006410827,-0.023713628,-0.03432687,0.0030848086,0.0027015526,0.010028978,0.036878336,-0.022855991,0.019243201,-0.043010432,-0.017388564,0.0035859894,-0.012382116,0.00384328,-0.032289986,0.030103015,0.0038057587,0.009659123,-0.009894973,0.019886428,-0.009718085,-0.012403557,0.026307976,-0.0047464776,0.018889427,0.010977738,0.02858071,-0.028452065,-0.0044302247,-0.012950299,-0.020358128,-0.015887702,-0.010902694,0.00814754,-0.018289082,-0.000744401,-0.012800213,0.02617933,-0.032525834,-0.030317424,-0.010538199,-0.0010928155,-0.0055960733,0.04777031,0.01920032,0.009530477,0.014483323,0.005405785,-0.011460157,0.012210589,0.0044061034,-0.028494947,0.009755607,0.062007062,0.0018908188,-0.015405281,-0.007080855,-0.0027497946,0.023584982,0.07126953,0.03625655,0.016852543,0.028838001,-0.037521563,-0.02570763,0.030510392,0.046183683,0.026243653,-0.013743613,0.027551549,0.009573359,-0.0112350285,-0.022105562,0.020283084,0.0044945474,0.03501298,0.0006187708,-0.0018546373,-0.00983065,0.013314795,0.011728168,0.030531833,-0.01296102,-0.034691367,-0.021794667,0.015759056,-0.039944384,-0.028902324,-0.0037387558,-0.015308798,-0.017184876,0.050214574,0.009970016,0.014719173,-0.021172883,-0.005815842,-0.0132611925,-0.028066128,-0.02375651,-0.008136819,0.030338865,0.038057584,-0.009005175,0.0043283803,-0.03046751,0.022277089,0.013722172,0.0022633544,-0.02808757,-0.006019531,0.016102111,0.018385567,0.014762055,-0.02950267,0.05034322,-0.01535168,-0.024121005,0.0015022026,-0.014804937,0.029545551,-0.03674969,-0.01152448,0.032097016,0.011738889,0.022384293,0.028966647,-0.0050332495,0.005783681,-0.0035725888,0.0113743935,0.005354863,0.025793394,0.0153624,-0.014386839,0.0026251695,0.018857265,0.03269736,0.0011665187,-0.03046751,0.0024188007,0.0052128173,0.01725992,0.019864988,0.0073542264,0.013014622,-0.015458884,0.0024188007,-0.029717078,-0.0114923185,0.014386839,-0.046398092,-0.0019953432,-0.02110856,-0.030017251,0.04965711,-0.03599926,0.025900599,0.056732602,0.026329417,0.0064429883,0.03098209,0.010827651,0.013765054,0.01344344,0.010345231,0.043160517,0.02231997,0.051929843,0.016187875,0.018460609,0.0015718855,-0.023670746,-0.00817434,-0.014011624,-0.03627799,0.02162314,0.0046392735,0.007482872,0.014944303,0.029073851,-0.045154523,0.021451613,-0.02617933,-0.009208864,0.033276267,0.035570443,0.0103505915,0.044682823,0.002357158,0.003382301,0.009460794,-0.00008609859,-0.0619213,0.0017809342,0.033297706,0.0072577423,0.026500944,0.012639407,-0.012843095,0.018664299,0.044768587,0.0046124724,-0.04133804,0.013014622,0.011149265,0.02759443,-0.0019645218,-0.0021762506,-0.012778772,-0.017838823,0.011181426,-0.015040787,-0.013539924,0.0057944013,-0.021891152,-0.022041239,-0.014890701,0.027444344,0.013036063,-0.010355951,-0.02446406,0.004052329,0.0029722438,0.03548468,0.01991859,-0.02710129,-0.004824201,-0.026522385,-0.043996714,-0.012307073,-0.030832004,0.030017251,-0.019339686,0.007032613,-0.013786495,-0.0034010618,0.0054620677,-0.023949478,0.045540456,0.006619876,0.019018073,-0.003216134,0.0014526205,-0.021419453,0.03559188,-0.046055038,-0.03482001,-0.044982996,-0.05999162,-0.049785756,0.037307154,-0.026586708,-0.0045159883,0.00936431,0.015952025,-0.015180153,-0.012671568,-0.030295983,-0.017442167,-0.008721083,-0.013368397,-0.016638134,0.019650578,-0.05325918,0.008136819,0.009546557,-0.031282265,-0.048799474,0.042088475,0.0011712088,-0.0060784933,-0.009031977,-0.01463341,-0.0065662735,0.05741871,-0.024764232,-0.012564364,0.026265094,0.018792942,0.0019042194,-0.038722254,0.020390289,-0.0000020310222,-0.0007397108,0.017806662,0.017860264,0.009782407,0.03527027,0.04318196,0.0146762915,0.033276267,-0.0147942165,-0.009214224,0.016981188,-0.0034412635,0.02446406,-0.0071451776,-0.045754865,0.043310605,-0.032675922,0.000013829795,0.038143348,0.02641518,-0.0039022425,-0.016230756,-0.015405281,-0.030767681,0.006646677,0.0029883245,0.035934936,0.03529171,-0.013282633,0.020315247,0.01080085,0.008517395,0.005325382,0.011953298,0.013539924,0.016337961,0.0010278228,0.0046901954,-0.0022512937,0.05951992,-0.0017474329,0.039429802,-0.04867083,-0.02855927,0.016413003,0.0061749774,-0.024206769,-0.023263369,0.011867534,0.0057247183,-0.03623511,-0.005424546,0.00408181,0.011888975,-0.011202867,0.026307976,0.0096430415,0.01801035,0.007177339,-0.013014622,0.016981188,0.0073542264,0.031796847,-0.043289162,0.041252278,-0.018460609,0.06964002,0.03647096,0.0032992174,0.0034841453,-0.015726896,-0.010302349,0.016262917,-0.0069200485,0.0018077353,0.012424998,0.04772743,-0.013818656,0.042860344,0.019747064,0.022748787,0.026307976,0.007032613,-0.000671368,0.043996714,0.013507763,0.020079397,0.023327691,0.0007792425,0.003961205,-0.0006626576,0.028945206,-0.002660011,0.024849996,-0.016262917,-0.035356034,0.047641665,0.029695638,0.019082395,0.00887117,0.0725131,-0.028023249,0.019264642,0.028387742,-0.015212314,-0.027958926,-0.000111559646,-0.0040550088,0.010859813,-0.016873984,0.019822106,-0.042195678,-0.0364924,0.027658753,-0.031303704,-0.0074453503,-0.010077219,0.03694266,-0.010366672,0.009423273,0.011352953,-0.03818623,-0.018042512,-0.00791705,0.022362852,0.02159098,0.0006495921,-0.0032536555,-0.022770228,0.00960016,-0.038014702,0.029781401,0.01297174,-0.035141625,0.03286889,-0.039558448,-0.0235421,0.0069950917,-0.013068224,0.029609874,-0.017206317,-0.014419001,0.021505216,-0.00047638986,-0.021558817,0.013722172,0.017045511,-0.02662959,-0.0009775708,-0.015244476,-0.05115797,0.010452435,0.029674197,0.0030553273,0.052959006,0.025600426,0.006694919,0.00035477977,0.0046124724,0.041595332,0.004936766,0.027615871,0.04588351,0.013561365,0.019832827,-0.0038834817,0.003141091,0.029309701,0.063422166,-0.003577949,-0.04058761,0.02399236,-0.0048215208,-0.00084088504,0.024614146,0.01753865,0.027958926,-0.019564815,-0.034734245,-0.0031866527,0.035977818,-0.00480008,-0.026736794,-0.0022137722,0.017452886,0.016970467,-0.015726896,-0.024099564,0.0057300786,-0.035699088,-0.039151073,0.013475602,0.01126719,-0.0067270803,0.00288112,0.0039960467,-0.0038325598,-0.021001356,0.03121794,0.0078098453,-0.05514598,-0.025578985,-0.03859361,0.018675018,-0.00014455852,0.006973651,0.02834486,0.042581614,0.023885155,-0.003891522,0.0244855,-0.01658453,-0.0007055394,0.014311796,0.03599926,0.027551549,-0.009916414,-0.04438265,0.039729975,-0.004030888,0.033919495,0.029095292,0.02061542,-0.00240138,0.0095948,0.012542923,-0.0020931673,-0.011503039,0.010484597,0.0026479503,0.022641584,0.025729071,-0.0014955023,0.029223938,0.004352501,-0.0058212024,0.03527027,-0.0037735973,-0.008447712,-0.026672471,-0.016037788,0.005740799,-0.018578535,0.033619322,-0.00093669904,0.04298899,-0.011835373,-0.00039699153,0.020583257,0.02973852,-0.0036047501,-0.00504933,0.019618418,-0.0004951506,0.006212499,0.0013393858,0.03672825,0.035034418,-0.01634868,0.0014419,0.002517965,-0.022234207,-0.03162532,0.002326337,-0.03237575,-0.0024831234,0.002109248,-0.0058426433,-0.0020033834,0.0002686812,-0.013186149,-0.050514746,-0.006212499,0.011888975,-0.002999045,0.015169432,-0.02375651,-0.009155261,0.013775774,-0.0062393,-0.0056871967,-0.020325966,-0.00648587,0.027036967,-0.021194324,0.009798489,-0.01991859,-0.007734802,-0.0015919863,0.008442352,0.0182462,0.0034144623,0.023134723,-0.022234207,-0.020111557,-0.018878706,0.0033233385,-0.01463341,0.009857451,0.015780497,0.007488232,-0.011245749,-0.04584063,0.017913867,0.022127002,-0.0016536289,-0.019103836,-0.00014799241,-0.023842273,-0.02446406,0.01008258,-0.009852091,-0.024678469,0.0005186016,0.033404913,-0.014611969,-0.016970467,-0.0071934196,-0.006501951,0.006185698,-0.04511164,0.009814569,0.012885977,0.000005737114,0.005470108,0.012521482,0.0043900227,0.0070486935,0.027851721,0.0070701344,-0.01608067,0.021290807,0.015651852,-0.05158679,0.027787399,0.026758235,-0.027658753,0.0028087571,0.027765958,-0.0074078287,0.02111928,0.02064758,-0.011138544,0.0033179782,0.0028703995,0.004708956,0.028430624,-0.026329417,0.0068074837,0.0013896379,-0.0067538815,0.022277089,-0.0068235644,-0.015201594,-0.021644581,0.029845724,0.0031571717,0.021676743,-0.008018894,-0.01967202,0.006619876,-0.0073542264,0.03985862,0.042581614,0.006282182,-0.010929495,-0.034734245,0.0145583665,-0.038765136,0.009653762,0.0066145156,-0.0018318563,0.025064405,-0.04228144,-0.005140454,-0.020272365,0.019135997,0.0071398173,-0.019950751,0.020658301,0.0079331305,-0.0360207,0.002067706,0.021816108,0.029245378,0.0058694445,0.03239719,-0.007536474,-0.014065226,-0.017806662,0.027530108,0.036792573,-0.009069498,-0.00960016,-0.016809661,0.04202415,-0.013325515,0.027272817,0.020776225,0.012253471,0.036299434,0.028409183,-0.0059873695,0.01127791,0.008126099,-0.0031786123,0.0018934989,0.0015089029,0.022855991,-0.02375651,0.015383841,-0.019371847,-0.03527027,0.019082395,0.028516388,0.032525834,-0.029309701,-0.0041112914,-0.03336203,0.022191325,0.009868171,0.020293806,-0.000019493626,-0.0153624,0.018171158,-0.034498397,-0.008710363,0.029138174,-0.039708536,0.0076115173,0.005719358,0.008056415,-0.031325147,-0.010189785,-0.035720527,0.001965862,-0.011867534,-0.040480405,-0.018803664,-0.026994085,0.027015526,0.0036637126,0.016166434,-0.007343506,-0.00059464975,-0.01943617,0.008077856,-0.008860449,-0.012778772,-0.0072363014,0.022491498,0.013797215,0.00001735791,0.009852091,0.014333237,-0.028301978,0.040373202,-0.010479237,-0.028923765,0.051972724,0.014150989,0.021633862,-0.0025889878,0.015909143,-0.0061481763,0.00013032043,-0.028409183,-0.024764232,0.039494127,0.012028341,0.018321244,-0.0071666185,-0.015587529,-0.013421999,0.029073851,0.0073542264,-0.0053468226,0.011106383,0.011685287,-0.017431445,0.006116015,-0.030488951,0.0115352,0.00030670527,-0.007155898,-0.02975996,-0.00036382515,-0.0116102435,0.025343137,-0.059691448,-0.0069414894,0.0092892675,-0.009685923,-0.030853445,0.004371262,0.017249199,-0.014268914,0.019521933,0.026029244,-0.008592438,0.0073542264,0.0021239885,0.024785673,0.026801117,-0.03745724,-0.017613694,-0.0002375249,0.022255648,0.034391195,0.011985459,-0.0005879495,0.008892611,0.0036369115,0.00072832033,-0.025364578,0.016434444,-0.0030338864,0.036192227,0.0017661935,-0.0039022425,-0.01991859,-0.01486926,-0.00983601,0.010774049,-0.0012797533,0.028452065,0.03689978,-0.0022244926,0.021923313,0.021247925,0.01439756,0.013314795,0.010768688,0.0046339133,0.006668118,0.0010532839,-0.010672205,-0.024892878,-0.027980367,0.0003336739,-0.0887653,0.014472603,-0.021955475,0.01750649,-0.010816931,0.00961088,-0.0030767682,0.00083619484,0.027637312,0.009262466,-0.024185328,-0.020626139,-0.020208042,0.023134723,-0.008554917,0.018224759,-0.0009474195,-0.053001888,0.0043632216,-0.0016281678,-0.0042560175,0.009777048,0.0037467962,0.0016871303,0.014804937,0.055060215,-0.02185899,-0.014772776,0.029009528,-0.005089532,-0.049828637,-0.002377259,-0.007622238,0.0038995624,0.016991908,-0.048971,-0.03715707,0.027165612,0.013550645,0.010007537,0.032268543,0.021440893,-0.03096065,0.016177153,0.011878255,-0.008678202,0.014826378,-0.008678202,-0.0150300665,-0.016605971,-0.026115008,-0.026994085,-0.0028784398,0.02040101,-0.0049046045,0.024142446,0.008919411,0.015523206,0.015576809,0.010130822,0.0316682,-0.03623511,-0.025536103,0.009884252,-0.008040335,-0.00039531649,-0.025021523,-0.0028328781,-0.008549556,-0.022019798,0.030338865,-0.023241928,0.020025795,-0.030103015,-0.009578719,0.081046574,0.011835373,-0.000015599087,-0.008061776,0.053173415,-0.012081943,-0.00888189,0.030124456,-0.0021909913,0.0069468496,0.000008851697,-0.0013514463,-0.012575084,-0.0019779224,0.016648853,-0.028001808,-0.012596525,0.015726896,-0.015523206,0.019564815,-0.026007803,0.031389467,-0.029459788,-0.004156853,0.043139078,-0.019757783,-0.0113743935,-0.03863649,-0.0072845435,-0.0040630493,-0.0002567882,0.01656309,0.014997905,-0.0036181507,0.0059176865,-0.026329417,0.03627799,-0.0034895055,0.014922862,-0.022470057,-0.021269366,0.0016482687,-0.01560897,0.038936663,0.022127002,0.028216215,0.011288631,0.031732522,0.021065678,-0.010259467,-0.014504764,0.018567814,-0.029416906,0.016756058,0.01390442,-0.044511296,-0.021162162,-0.00191762,-0.0130253425,0.021162162,-0.024099564,-0.0032134538,-0.03936548,0.00015754031,0.023949478,0.022169884,-0.02422821,0.029116733,-0.04704132,0.03859361,0.08559205,0.0633364,-0.010827651,0.009803848,0.000061349434,0.0015799259,0.013368397,0.0026318696,-0.0016281678,0.0022244926,-0.025407458,-0.028602151,0.014547646,-0.010977738,0.024742791,0.050000165,-0.01343272,-0.011149265,0.010532839,-0.013132547,-0.03342635,-0.008801486,-0.021762507,0.011931857,-0.007927771,-0.022041239,0.030295983,-0.0035457877,0.03482001,0.002374579,0.009707364,-0.014654851,0.0021923312,-0.0031116097,0.013711452,-0.02304896,0.002019464,0.017313521]},{"id":"interface-RESTUpdateRoleBody","type":"interface","source":"main","text":"Interface: RESTUpdateRoleBody\nDescription: Body for PATCH /guilds/{id}/roles/{roleId} (update role). All fields optional.\nProperties: color: number, hoist: boolean, hoist_position: number | null, mentionable: boolean, name: string, permissions: string, position: number, unicode_emoji: string | null","meta":{"url":"/docs/typedefs/RESTUpdateRoleBody"},"embedding":[0.016954055,0.022897523,-0.000059950813,0.03545858,-0.0031318374,0.0002547251,0.012156585,0.0039042637,0.03386317,0.025346817,0.024155876,-0.0037750578,-0.012212762,0.004558719,0.011740879,0.034896813,0.017257407,0.006353557,-0.037660696,0.039188698,-0.01658329,-0.043121047,0.013796938,0.00044941166,-0.0183697,0.013381232,0.03314411,0.017145054,-0.025234465,-0.061524455,0.03204305,-0.036402345,0.009594939,-0.020762818,-0.026852347,-0.0041402048,0.02700964,0.035952933,-0.00011612727,-0.0072973217,0.03087458,-0.020054994,0.023212112,-0.039211165,-0.07010822,0.057839278,0.0139317615,0.029616227,0.0047581457,0.011038674,0.010813968,0.01348235,0.018032642,0.067906104,0.0100612035,0.01505529,-0.034582227,-0.008662409,-0.01033085,0.041525636,-0.016448466,-0.07132163,0.012280174,-0.031683523,-0.009645497,0.018032642,-0.09374727,0.019268524,0.044267047,0.022155995,0.03772811,-0.009527527,-0.008224233,0.03736858,-0.012235233,-0.037503403,0.041772813,-0.018594407,0.00770741,-0.047098342,-0.054603517,0.049570106,-0.059547044,-0.07100704,0.0097971745,0.013347526,0.00020908174,-0.047278106,-0.047952224,0.0014044114,-0.040963873,-0.015044055,-0.055322573,-0.019976348,-0.04318846,-0.056086574,-0.027975876,0.023279523,-0.0064490573,0.06453551,0.01892023,0.0058367336,-0.06947904,-0.04777246,-0.015942879,-0.013178997,0.011010585,0.012100409,-0.00078927923,-0.021751525,-0.08925316,0.017336054,-0.0021529626,0.014751937,-0.0044632195,0.012100409,0.015617055,-0.019133702,0.046379283,-0.07981551,-0.018504525,-0.041143637,-0.008319734,-0.046559047,-0.05060375,0.0030953228,-0.039278578,-0.022796405,-0.046918575,0.0020729112,-0.0026669772,-0.0059827925,0.0036570872,0.000349874,-0.027526464,0.017313585,0.019167406,0.0007597866,0.007179351,-0.051592458,0.0022568891,-0.014156467,-0.011695938,0.009662351,-0.07756845,0.020908877,0.0021290877,0.009375851,-0.00028456887,0.06246822,-0.048356693,0.02665011,-0.03936846,0.028560111,-0.016852938,-0.08916327,-0.004808705,0.004314352,-0.0436154,-0.023414347,0.019908937,-0.021942524,-0.006881616,-0.048446577,0.0047974694,-0.04049199,0.000021340471,0.017459642,-0.04242446,0.02309976,0.05172728,-0.018122524,-0.0061457045,0.0011045695,-0.062423278,0.010954409,0.030672345,-0.017246172,-0.026357993,0.010358939,0.050648693,0.025998464,-0.05667081,0.020436995,-0.047997165,0.008859027,-0.058693163,0.04044705,-0.0045278226,0.027324228,-0.005814263,0.04444681,0.023032347,-0.019290995,0.0017962422,-0.034874342,0.013313821,-0.030941993,0.038447168,-0.030267876,0.023054818,0.0070501454,0.053030577,-0.041413285,-0.042716578,0.027121993,-0.018796643,-0.019942641,-0.05055881,0.0059715575,0.048446577,-0.021481877,-0.022773936,-0.0229537,-0.014010408,0.010606115,-0.009173615,0.021920053,-0.017470878,0.025908582,-0.016055232,0.025481641,0.069748685,-0.022582935,-0.010482526,0.047278106,-0.0039295433,0.008628704,0.009707292,-0.0014247753,0.002946455,0.016167585,-0.029751051,-0.010645439,-0.043435637,-0.03662705,-0.0070501454,0.03705399,0.0011579372,0.0077916747,-0.018482054,-0.045368105,-0.00889835,0.004996896,0.03397552,0.00060179026,0.029436463,0.0077916747,0.001577154,0.011718409,0.031975638,0.056086574,-0.011740879,-0.046514105,-0.018751701,-0.0069658807,0.0508734,0.041098695,-0.018268583,0.0043564844,-0.0061119986,0.010594879,-0.0016684408,0.01643723,-0.016954055,-0.007106322,0.020818995,-0.024043523,0.0035475432,-0.012561056,-0.006679381,0.034896813,0.04673881,-0.00037603115,-0.009785939,0.031211639,0.03891905,0.012628468,0.003536308,-0.022672817,0.03442493,0.005814263,-0.035728227,0.0036851754,-0.017864114,0.020796524,0.010684762,0.03626752,0.045839988,0.027054582,0.011740879,0.014414879,0.019886466,-0.016864173,-0.00675241,-0.022976171,0.013650879,-0.037076462,0.057704456,-0.0011600439,0.00022031704,0.011004968,0.0073422627,-0.02309976,0.008864645,-0.009651115,0.013942997,-0.012695879,-0.018762937,-0.0344474,0.032672226,0.055816926,-0.03390811,0.021133583,-0.0485814,-0.022448111,-0.007566969,0.020695407,-0.020762818,0.038851637,0.041795284,-0.015133938,-0.0010497975,-0.025593994,0.020178583,-0.057929162,0.0039716754,0.0041177343,-0.013336291,0.0062636747,0.010842056,-0.06089528,0.041413285,0.022863818,0.05060375,-0.010336468,-0.037301168,0.07684939,0.05091834,-0.021818936,-0.0030166758,-0.024447994,0.007645616,-0.02431317,-0.03462717,-0.02424576,-0.032604814,0.0254367,-0.030425169,0.05204187,0.0246727,0.025706347,0.0027231537,0.008286027,-0.046424225,-0.030986933,0.020178583,-0.013560996,0.023661524,0.05276093,-0.04242446,-0.006578263,-0.031548698,0.037076462,0.023639053,0.024110936,0.014729467,0.028605051,0.018830348,-0.013044173,-0.010780262,0.013414938,-0.06772634,-0.020111172,0.0025897347,-0.008201763,-0.028492698,-0.022268347,-0.05172728,-0.03159364,0.012875644,0.06219857,0.005628881,-0.00007197609,-0.014369938,-0.001601029,-0.016807996,0.012808232,-0.01620129,-0.037233755,0.01944829,0.017886585,-0.033413757,0.0026669772,0.008078175,0.02395364,0.023481758,0.03932352,0.027166935,-0.02023476,0.013909291,0.0014928894,-0.019942641,0.022908758,-0.03287446,0.011021821,0.017684348,0.009589321,-0.016886642,-0.03170599,0.023459287,-0.026762463,0.018010171,0.043772694,0.0717261,-0.011752115,0.06354681,-0.031795874,-0.0038565136,0.04159305,-0.020077465,0.0009009299,0.024088465,-0.015931644,0.04979481,0.0100612035,-0.0069377925,-0.03433505,-0.01987523,-0.03316658,-0.038806695,0.06529951,0.03658211,0.008145587,0.03963811,-0.0077579687,-0.019987583,-0.018268583,0.04125599,0.0134037025,-0.027773641,-0.027414111,0.012819467,0.013841879,-0.008488263,0.021605466,0.042401988,-0.050828457,0.011774586,-0.0017189996,-0.021560524,0.059232455,-0.014493526,0.05676069,0.023796348,-0.003952014,-0.0031823963,0.027414111,-0.0235267,-0.014044114,0.044963636,0.016931584,0.04278399,0.028852228,-0.027683757,-0.0019352789,-0.038087636,-0.018223643,-0.05015434,-0.057614572,0.01369582,0.029481404,0.034245167,0.005609219,0.009201704,-0.027930934,-0.017212465,0.0119094085,-0.008218615,0.045413047,-0.008347821,-0.013808173,-0.013190232,-0.067052215,0.06058069,0.07006328,0.0019830288,0.00069237483,-0.0021824553,0.016145114,-0.0035054109,0.018504525,-0.021661641,-0.009909527,0.02736917,-0.031166699,0.007370351,-0.040222343,-0.0016937201,-0.012594761,0.0044941166,-0.051502574,-0.009763468,-0.0018271393,0.052985635,0.046918575,0.025571523,-0.01930223,-0.01641476,0.00703891,0.0017723672,0.026717523,0.046783753,-0.044918694,-0.04849152,-0.026829876,-0.045547873,-0.004305925,-0.008454557,0.03085211,-0.032132935,0.049974576,0.030717287,-0.0046373666,-0.008696116,-0.00439019,-0.016841702,-0.043862578,0.013325055,-0.008729821,0.016482173,-0.019347172,0.015268761,0.02095382,-0.016324878,0.0075164097,0.015336173,0.012987996,0.03961564,0.0082804095,-0.018717995,-0.020212289,0.0015645144,0.030784698,0.001522382,0.03278458,-0.0044267047,0.037121404,0.04087399,0.027166935,0.034806933,-0.019571878,-0.009021939,0.03278458,-0.0051569985,0.016425995,0.019380877,-0.033660933,0.031458817,-0.0016754628,0.0019830288,-0.026447875,0.0042834547,-0.012808232,-0.052715987,-0.0076343804,0.01930223,0.01675182,-0.0075107925,-0.020010054,-0.022054877,0.03900893,0.03204305,0.009887056,0.045547873,0.015044055,-0.004982852,0.02350423,0.027077053,0.012482408,-0.0064602927,-0.08588257,0.010128615,0.00032213688,-0.044199634,-0.0048311753,0.0061232336,-0.01271835,-0.026672581,0.016324878,0.021144819,0.0413234,0.0757708,0.0023594112,0.0027933742,-0.035211403,0.0009346358,0.00031967915,-0.015448526,0.017965231,-0.004530631,-0.009055645,-0.031930696,0.010246586,0.0022990215,0.009858968,0.026762463,-0.011920644,0.0042441315,0.03321152,0.014302526,0.03550352,-0.031840816,-0.014392409,-0.017189996,-0.023436818,-0.017100113,-0.004645793,0.009139909,-0.018852819,0.021886347,0.017459642,0.022751465,0.02157176,-0.021358289,0.00858938,-0.0063984985,-0.01947076,-0.018189937,-0.03894152,-0.017965231,-0.06583881,-0.020526877,0.0064602927,-0.0516374,-0.042963754,0.031953167,0.0042834547,-0.0010280291,-0.0066512926,0.030559992,0.010460056,0.028605051,-0.037121404,0.04076164,-0.029009523,0.00090795197,-0.012729585,-0.003409911,0.000931827,-0.026110817,-0.07765833,-0.006499616,-0.016268702,0.0123475855,0.009201704,-0.044986106,0.029638698,0.0037947197,0.014617114,-0.03779552,-0.01811129,0.021066172,0.01040388,0.027526464,0.012482408,-0.016021525,0.016998995,-0.004159867,0.0025335583,0.035368696,0.013875585,-0.0076231454,-0.012403762,0.056895517,0.013055408,-0.006072675,-0.012954291,-0.011740879,0.036761872,0.0005814263,-0.0144373495,-0.007639998,-0.06049081,0.009128674,-0.032087993,-0.004786234,0.012156585,0.039795402,-0.045839988,-0.001546257,0.0065726456,0.008274792,-0.029481404,-0.013999173,0.045390576,-0.014111526,-0.018246112,0.004707587,-0.0029352198,0.0053676604,0.02736917,0.011420674,-0.016628232,-0.035346225,-0.012999232,-0.022223406,0.055547282,0.017527055,0.008656792,0.00037884,0.010875762,-0.028312935,0.008083792,-0.0005677333,0.031885758,-0.012156585,0.018291054,0.02739164,0.035211403,0.033526108,-0.0026529331,-0.010842056,-0.02665011,-0.0034464255,0.011920644,0.013257644,0.02779611,-0.013583467,-0.0334587,-0.003359352,0.021324582,-0.012055468,0.032604814,0.0054041753,0.010757792,0.0028032053,0.030290345,0.006314234,0.0214257,-0.02507717,-0.0071568806,-0.012437467,-0.01176335,-0.019841524,0.0015069335,0.009493821,0.0019886466,-0.038537048,0.024852464,-0.03011058,0.00563169,-0.017852878,0.002765286,0.0223807,-0.04898587,-0.030245405,-0.0095556155,-0.047233164,0.049570106,0.0003819999,0.008600616,0.0033790139,-0.000004813949,-0.036964107,-0.011808291,-0.003027911,0.001184621,0.017448407,0.010055586,-0.0065108514,0.0129430555,0.01868429,0.0007155476,0.0022007127,-0.027930934,0.010504997,-0.033391286,0.019841524,-0.043031167,0.018931465,-0.0073647336,0.00539294,0.008426469,-0.0036907932,0.02851517,0.01730235,-0.015212584,0.032155402,-0.0014774408,-0.022728994,0.03125658,0.020841466,-0.0075164097,0.010089291,0.015021585,-0.001713382,-0.04287387,0.014347467,0.05487316,-0.02471764,-0.0063029984,-0.026897287,0.021796465,0.037256226,0.033278935,-0.018673055,0.023279523,-0.021347053,0.024133407,-0.00918485,0.03190823,0.0042413226,0.008297263,-0.009432027,-0.004845219,-0.013145291,0.0033200285,0.009493821,0.013639644,0.0047637634,-0.018212408,0.004519396,0.016055232,-0.031144228,0.055412456,-0.016055232,0.013145291,0.019796584,-0.025324346,-0.0073647336,-0.0123925265,0.0010519042,0.01233635,0.019268524,-0.009409556,0.005390131,0.009190468,-0.0144822905,-0.0005322719,0.015021585,-0.011111703,0.024740111,-0.014897997,0.0032132934,-0.0036514697,0.010802733,0.016504643,0.0043621017,0.011224056,0.022706524,-0.024268229,-0.010336468,-0.0053508077,0.006516469,-0.052985635,-0.040986344,0.018392172,0.009241027,0.0056036017,0.0076961746,0.009814027,-0.03887411,-0.017066408,-0.0074602333,-0.018785408,-0.002782139,-0.014976643,-0.00904441,-0.022908758,0.014381173,-0.025796229,0.0029689257,-0.021470642,0.01178582,0.022549229,-0.0035868667,0.011999291,-0.00020732623,0.069344215,0.0045868075,0.018100055,-0.001327871,-0.00031599257,-0.0015659187,-0.008050086,0.003044764,0.019043818,0.040829048,0.024335641,-0.024605287,0.00539294,0.013369997,0.035952933,-0.018437114,0.0068085864,-0.008696116,-0.02584117,0.005061499,0.02202117,-0.03476199,-0.019111231,-0.029751051,-0.003519455,0.040379636,-0.011617291,0.0017119775,-0.013100349,0.03314411,0.032649755,-0.014223879,-0.023863759,-0.02858258,0.039278578,-0.00007575044,0.050289165,0.028312935,0.0023200877,0.0269647,-0.004848028,-0.004451984,-0.0028987052,0.04736799,-0.016358584,-0.003659896,-0.0035952933,0.028335406,-0.0006284741,-0.016336113,-0.0027596685,-0.0017737716,-0.02775117,-0.026110817,0.0036233815,-0.0028256758,-0.05006446,-0.015324937,0.009909527,0.0012990806,-0.047188222,0.020313406,0.023728935,0.027706228,0.01641476,-0.0043621017,-0.009094968,-0.01715629,0.015336173,-0.014190173,-0.022425642,-0.04118858,0.003963249,0.006089528,-0.05559222,0.028357875,0.008628704,0.037211284,-0.032177873,0.06022116,0.0013531504,-0.0231447,-0.03545858,-0.029885875,0.004308734,-0.009898292,-0.006151322,-0.031840816,-0.025301876,0.041031282,0.0046177045,0.01011738,-0.001829948,0.017032702,0.014190173,-0.03047011,0.046469163,0.035256345,-0.0043649105,-0.018616877,-0.027279288,-0.040536933,0.06831057,-0.0013938784,0.008196145,-0.049839754,-0.00548844,-0.0057580867,0.010673527,0.04058187,0.007055763,0.021470642,0.009370233,-0.06296257,0.03442493,0.0076680863,0.013246409,-0.023279523,0.029279169,-0.00016765161,-0.035391167,0.011639762,-0.030941993,0.01147685,-0.0023748598,0.00040060835,-0.0018791024,-0.018167466,0.0046205134,0.0028439332,-0.0028818522,-0.012257703,0.032177873,-0.03471705,-0.050693635,-0.03242505,0.012179056,-0.016718114,0.042986225,0.0027975875,0.008830939,0.017616937,0.014594643,-0.0053227195,-0.029121876,0.035368696,-0.017257407,0.022448111,0.0047132047,0.022054877,-0.026155759,-0.013684585,0.04235705,0.018841583,0.027908463,-0.017055172,-0.022706524,0.026402935,0.013763232,0.025683876,-0.0029211757,-0.04008752,0.0068029687,-0.007915263,0.006241204,0.01811129,0.01049938,0.0037441608,-0.03361599,0.014976643,-0.0062355865,-0.006741175,0.05900775,-0.017931525,0.025301876,0.01908876,0.029189287,-0.00045397598,-0.011016203,0.034469873,-0.027593875,-0.019369641,-0.0065445574,-0.016695643,0.018246112,0.019335937,0.03278458,0.0018159039,0.008297263,-0.0016993379,0.032627285,0.011797056,-0.0043873815,0.0056682043,-0.01541482,0.030222934,0.037705638,0.020908877,0.009005086,-0.013628408,-0.018055113,0.018830348,-0.029818464,-0.013808173,0.006185028,-0.02274023,0.021830171,0.051367752,0.002932411,0.02817811,-0.0062355865,-0.031863287,0.0281107,-0.017819172,-0.022470582,-0.014684525,0.02665011,0.020290935,-0.01019041,0.0017386613,-0.013650879,0.022751465,-0.028088229,0.015145172,0.03961564,-0.024200818,0.014796878,0.018212408,0.0054772045,-0.021515584,0.013785702,-0.026762463,0.010993732,0.016560819,-0.011038674,-0.019403348,-0.023616582,-0.02316717,0.01734729,0.0037216903,-0.013841879,0.021762758,-0.038716815,0.016931584,0.016088936,-0.0054350724,0.024515405,-0.02622317,0.031481285,-0.0036486608,-0.019751642,-0.010235351,-0.007684939,-0.021627937,0.00861185,0.030694816,-0.013257644,-0.023279523,-0.020549348,0.016763054,-0.03087458,0.008623086,0.01071285,-0.013965467,-0.007072616,-0.0056485427,-0.000099800985,0.015527173,0.055322573,0.016043996,0.0035278816,0.0005312186,0.026425404,0.027256817,0.018673055,-0.0076680863,-0.0062243515,0.008662409,0.0010189004,-0.012650938,-0.025009759,0.01176335,0.0062243515,-0.0024998523,-0.03732364,0.030200463,0.030582463,0.010533086,0.0036739402,0.019392112,-0.011342026,0.0029436464,0.019717935,-0.014909232,0.050783515,-0.02221217,0.02121223,0.035818107,0.009791557,0.018425878,0.011516173,0.008460174,-0.013392467,0.0012007718,0.040357165,0.0045250137,0.024762582,-0.01290935,0.013819409,-0.017841643,-0.02970611,-0.0064322045,-0.0011045695,-0.005530572,0.006454675,-0.024425523,-0.008696116,0.00207572,-0.027121993,-0.019886466,0.017931525,-0.0022695288,0.0024872127,-0.006100763,-0.010454439,0.050648693,-0.008274792,-0.0030812786,0.007140028,0.047278106,-0.015886702,0.024874935,0.0026824258,0.047278106,0.019762877,0.035346225,0.009280351,0.039256107,0.014280056,-0.0032301464,0.0012934629,-0.002703492,0.019313466,-0.023751406,0.023796348,-0.010201644,-0.0069883512,0.0039660577,0.008027616,-0.0010350512,0.010634203,0.06516469,-0.034065403,0.05118799,-0.0038930285,-0.03442493,-0.0043255873,-0.013325055,0.035211403,-0.0098645855,-0.026515288,0.048446577,0.0030953228,0.018830348,-0.004421087,-0.008364675,-0.011061144,0.008909586,-0.026537757,0.0036570872,0.029031992,0.014212644,0.019987583,0.017414702,0.018504525,-0.0028397199,0.030582463,0.012426232,0.018717995,-0.017055172,0.026784934,0.00990391,-0.017684348,-0.053255282,0.031795874,0.020560583,-0.0258187,0.031368934,-0.016504643,0.0018032643,0.019246055,0.016347349,-0.0021094258,0.0020967862,-0.008881498,-0.008196145,0.031661052,0.023212112,-0.01138135,0.013201468,0.036065284,-0.013909291,0.0023650287,-0.01235882,0.025616463,-0.01660576,0.0001015565,-0.005024984,-0.034986697,0.0047188224,0.0028383154,0.023369405,-0.015302467,-0.018717995,0.012235233,-0.027481522,-0.0021206613,-0.03889658,0.0007000991,-0.0006551579,-0.033705875,-0.0663781,0.008448939,-0.019998819,-0.012246467,0.008752292,0.02779611,0.008533204,-0.003943587,0.0062973807,-0.019313466,-0.010184792,0.004488499,0.00021663046,0.007909645,-0.014392409,0.039188698,0.015347408,-0.0066849985,0.009128674,-0.019549407,0.021684112,0.016257467,-0.02388623,-0.009297203,0.014100291,-0.04199752,0.016482173,-0.04044705,0.004696352,-0.010078057,0.02030217,0.005659778,0.009381468,0.02471764,0.0016993379,0.017897818,0.013280114,0.008100645,0.009106204,-0.026537757,0.0027161317,-0.0020981906,0.0060164984,0.011628526,-0.0005041837,0.0155159375,-0.020717878,-0.013246409,0.0022863818,0.0138868205,-0.016291173,0.0057187635,-0.006404116,-0.021178525,0.030290345,0.016032761,-0.010836438,-0.04058187,0.0076343804,0.04046952,0.022279583,0.008954527,-0.000046565016,0.007842233,0.016560819,0.02214476,0.020740347,0.0046542194,0.0019675803,0.005468778,-0.046559047,-0.009387086,0.013898055,-0.019504465,0.010010645,-0.0019549406,-0.017661879,-0.0155384075,0.0024998523,-0.0043929988,-0.009516291,0.008920821,-0.02817811,-0.039413404,0.006611969,-0.012650938,-0.02025723,-0.011370115,0.0000845719,-0.030222934,-0.0007984079,0.002348176,0.0058086454,-0.0043368223,-0.0265827,-0.008403998,0.021942524,0.01834723,0.004157058,0.0044800723,-0.002276551,-0.044828814,0.0048227487,0.01465082,-0.038829166,-0.001433904,0.01348235,0.031773403,0.0011635548,0.041795284,-0.016594525,0.047997165,-0.008887116,-0.0029380287,-0.01465082,0.023728935,-0.0037385433,-0.010229733,-0.0062187337,0.0011712791,-0.0013903673,-0.029391522,0.0123925265,0.023639053,0.000761191,0.03745846,-0.024088465,-0.014324997,0.0037048373,0.056940455,0.028223053,0.023661524,0.016841702,-0.043547988,-0.010673527,0.024560347,0.008151203,-0.0023285141,-0.025549052,-0.017437171,-0.00878038,0.003106558,0.023279523,-0.016358584,-0.0013426173,-0.005418219,-0.009752233,-0.035818107,-0.033076696,0.010437585,-0.0108532915,-0.008050086,0.029998228,-0.021009995,-0.012403762,-0.01004435,-0.008774763,0.0065501747,0.010066821,-0.01071285,-0.04898587,0.03617764,-0.005235646,-0.000022470582,-0.00066814874,-0.016931584,-0.027548933,0.023212112,-0.015639525,-0.0033424993,-0.024605287,0.03577317,0.009151145,0.01866182,0.0069097043,0.02703211,0.042536814,-0.010533086,-0.018055113,-0.009196086,-0.00027438687,-0.020976288,0.014639584,-0.04172787,0.027661286,0.013729526,-0.023122229,0.013134056,-0.013145291,-0.013178997,-0.010269056,0.0008342204,0.017527055,0.007213057,-0.022425642,0.037975285,-0.032155402,0.01889776,0.047502812,0.0065220864,-0.024043523,0.021189759,-0.018774172,0.016998995,-0.0017695584,0.034941755,-0.022919994,-0.0074714688,-0.005659778,-0.027481522,0.028065758,0.011875703,0.0073759686,0.030492581,0.005238455,0.034087874,0.004120543,-0.037211284,-0.009982556,0.003246999,-0.01792029,0.021863878,-0.006280528,-0.021684112,-0.016931584,0.012167821,-0.00044730504,0.030492581,-0.0028481463,-0.017830407,0.018639348,-0.023683995,0.019526936,-0.023009876,0.0013735144,-0.009887056]},{"id":"interface-RoleResolvable","type":"interface","source":"main","text":"Interface: RoleResolvable\nDescription: Role ID or Role object for add/remove.","meta":{"url":"/docs/typedefs/RoleResolvable"},"embedding":[-0.0168457,0.024377557,-0.045903936,0.024163717,0.006967562,-0.007258619,-0.0023091557,0.035402104,0.028369203,0.0026403079,0.0038669077,-0.04431203,0.007270499,0.021169983,0.022951968,-0.018449485,0.00063297595,0.040011507,-0.003457051,0.0959896,0.03946503,-0.0263021,-0.0002827045,-0.027561368,-0.012533295,0.02012455,-0.006830943,-0.0075437366,0.0018235648,-0.032503407,0.07184964,-0.03366764,-0.0017760451,0.03466555,0.019007841,-0.020540347,0.030650143,0.018877162,-0.009593019,0.007989233,-0.017998049,0.016334863,-0.0046123713,-0.00086946023,-0.07479586,0.039702628,0.005470694,0.00014636408,0.010864169,-0.008559468,0.029153276,-0.012497655,-0.011274026,0.020077031,-0.02149074,-0.0029105756,0.012343217,-0.004425263,-0.06367627,0.035520904,-0.04074806,-0.038086962,0.0007599424,-0.005705322,0.0013929183,0.02153826,-0.08981205,0.023534084,-0.027870247,0.012366977,0.0046925605,-0.0048618494,-0.029034477,-0.026896095,0.010507772,-0.012343217,0.021859016,0.012901572,-0.0214551,-0.053031877,-0.022322332,0.026610978,-0.018413845,-0.05597809,-0.01193336,-0.024139958,-0.021003664,-0.045500018,-0.018200008,-0.052176524,-0.04400315,-0.0215739,-0.045286182,0.0037659286,-0.03944127,-0.048469994,-0.031814374,0.017118936,-0.035996098,0.07270499,0.0037896882,0.0048262095,-0.05013318,-0.016049746,-0.042553805,0.02744257,0.0028942407,0.007929834,-0.032527167,-0.014137082,-0.059969738,-0.009094064,0.018603925,-0.009794978,-0.011131466,0.009301962,0.009699939,-0.034451712,-0.010579051,-0.023415284,-0.03692273,-0.031196618,-0.014826116,-0.019934474,-0.055455375,-0.018556405,-0.030341266,-0.029343354,-0.028179124,-0.018378206,-0.0075437366,-0.013198569,-0.023237085,-0.02044531,-0.016976377,-0.023652881,-0.040106542,-0.025731865,0.0047282004,-0.068808384,-0.018259408,-0.0030249197,-0.002879391,0.0047460203,0.0061894283,0.033976514,0.0191504,-0.0013491112,-0.037659284,0.025446746,-0.040011507,0.01683382,0.005515244,-0.021241263,-0.015859667,-0.04027286,-0.0051142974,-0.02497155,0.010632511,0.00012919391,0.0144222,-0.050703414,0.017748572,-0.015693348,0.009711819,-0.02042155,0.02516163,0.058306552,-0.05051334,0.075603686,0.00720516,0.009753399,-0.06305851,-0.011743282,-0.04407443,0.03685145,0.030293746,0.02501907,-0.000049375838,0.004555942,0.045785137,-0.03718409,-0.014089562,-0.025803143,-0.0005524154,-0.034998186,-0.068523265,-0.019578077,0.020516587,0.018651444,0.003445171,0.027822727,0.029438393,0.032836046,0.0074486975,0.035140745,0.0060052895,-0.010941388,-0.028464241,-0.018437605,-0.021633299,-0.0013446562,0.05968462,0.007912014,-0.024187477,-0.0050281677,-0.043741792,-0.037920643,-0.02141946,-0.01798617,0.024567634,-0.004140145,-0.014137082,-0.02141946,-0.003694649,0.029723512,0.01197494,0.030816462,0.024662673,-0.0065933447,-0.0025512087,0.0136975255,0.023094527,-0.021930296,0.009688059,0.015657708,-0.0037273187,-0.015182513,0.0019052391,-0.02741881,-0.035307065,0.0005995637,-0.0149924345,-0.035354584,0.005853821,0.022845048,-0.029462153,0.011119587,0.01652494,-0.00019787459,-0.044502106,-0.01676254,-0.00298334,0.028155364,0.02632586,-0.009397001,0.054742582,0.015063714,-0.03228957,-0.007092301,0.037896883,0.026397139,0.029984869,-0.019399878,-0.011268086,-0.030341266,0.086913355,0.018188128,-0.015277552,0.01667938,-0.007009141,-0.029081997,0.021205623,0.017641652,-0.03727913,-0.028986957,0.014873635,-0.00953956,-0.032051973,0.021668939,-0.030127428,-0.031743094,0.019839434,-0.03473683,-0.045595057,-0.014647917,0.031220378,0.026919855,-0.02746633,-0.014814236,0.006207248,-0.019411758,0.02853552,-0.004544062,-0.040035266,0.03231333,-0.009943477,0.044573385,0.007929834,0.012176898,-0.010163255,0.01072161,0.030982781,-0.048755113,-0.022346092,-0.012984731,0.02520915,-0.0383008,0.07622144,0.028036565,0.052224044,0.045428738,-0.017582253,-0.042268686,0.058116473,-0.030483825,-0.0084763095,-0.0131866895,0.027941527,-0.046117775,-0.011125526,-0.026159542,-0.017439693,0.007852614,-0.029557193,-0.041247014,0.028939437,-0.03822952,-0.0017255555,0.07051909,0.04640289,-0.014529118,0.024757713,-0.0215145,0.02143134,-0.024175597,-0.0330974,0.0071517,0.01199276,0.022821289,0.038490877,-0.0045915814,0.0019527586,-0.004217365,0.010596871,0.00047482477,-0.03323996,0.064911775,0.002846721,0.019471157,0.02504283,-0.025779383,-0.03362012,-0.005452874,-0.047472082,-0.024377557,-0.02744257,0.003964917,0.04317156,-0.009949417,-0.00356991,0.0015169148,-0.030935261,0.012295697,-0.050845973,0.006920042,0.031315416,-0.030436305,0.025731865,0.025993222,-0.025351707,-0.027252492,-0.016429903,-0.015384471,-0.01316293,0.000327811,-0.014101442,0.024175597,-0.031457976,-0.0059102504,-0.016251704,0.024496354,-0.045119863,-0.001017959,-0.0048321495,-0.00018163254,-0.020671027,-0.017724812,0.005868671,0.00716358,0.031790614,0.03466555,-0.019649355,-0.035093226,0.01663186,-0.03727913,-0.030816462,0.033002365,-0.07075669,-0.032004453,0.038443357,-0.0048232395,0.03350132,-0.004202515,-0.011547264,-0.027181212,0.051891405,0.07327522,0.0143034,-0.050893493,-0.01439844,0.002144322,0.031149099,0.014018282,-0.058354072,-0.037778083,-0.009604899,0.0005854563,0.0048499694,-0.011113647,0.011303726,-0.018295046,0.025708105,0.07146948,0.049135268,-0.02155014,0.0007863009,-0.03663761,0.030578865,-0.03335876,-0.020742306,0.026183302,-0.03326372,-0.050703414,0.03953631,-0.0045767315,-0.009301962,0.004220335,-0.011529444,-0.018259408,-0.006551765,0.07845486,0.036186177,-0.007876374,-0.0067180838,0.002257181,0.04673553,-0.0031422337,0.005010348,0.009355422,-0.008862406,-0.00956926,0.017178336,-0.02025523,-0.03347756,-0.01798617,0.015087473,-0.032907326,0.027822727,0.017736692,-0.017784212,0.028297924,-0.018295046,0.07042405,0.053079396,-0.030982781,0.011487864,0.026563458,-0.017796092,0.036019858,0.0002810339,0.019910714,0.035592183,0.030246226,-0.052936837,-0.004410413,-0.0031481737,-0.027133692,-0.053221956,-0.07289507,0.00595777,0.022179775,0.0669076,-0.018449485,0.018948441,-0.021894656,-0.00841691,-0.031909414,-0.032669727,0.018627685,-0.0024056798,0.012307577,-0.026135782,-0.01656058,0.045191143,0.10862981,0.020849226,0.021110583,-0.023296485,0.041318294,0.008927745,0.0053281356,0.034926906,-0.0110898875,0.02996111,0.022001576,0.041983567,-0.042482525,-0.012283817,-0.024520114,0.014849876,-0.026088262,0.015408231,0.017546613,0.019946354,0.008814886,0.043718033,-0.0056785922,-0.020088911,0.007537797,0.034356672,-0.00024056798,0.0052806158,-0.010080095,-0.028012805,-0.018200008,-0.009456401,-0.0033857715,0.009307902,0.008012993,-0.0118739605,0.0021814466,0.046996888,-0.000013747736,-0.0017715902,0.0020626478,-0.02523291,-0.017558493,-0.0005494454,-0.022251053,0.048802633,0.0026031833,-0.007965473,0.035021946,0.010668151,0.005631073,0.045096103,0.018722722,0.04652169,0.00075957115,0.021680819,-0.015812147,-0.012069979,0.008963385,-0.02398552,0.02516163,-0.019708754,-0.019589957,0.024163717,0.032550927,-0.024425076,-0.0066586845,0.00719922,-0.01431528,0.04447835,-0.013578726,-0.025993222,-0.010905748,0.011470044,-0.01310353,-0.020005753,-0.03224205,0.0011575478,-0.048517514,-0.049325347,-0.018461365,-0.00074472127,0.014552878,-0.0076031364,-0.018211888,-0.0113393655,0.029248316,-0.004276764,0.071517,0.042506285,0.013246089,-0.05498018,0.009794978,0.04397939,-0.048469994,-0.019411758,-0.064103946,-0.016192304,0.010157315,-0.028179124,-0.019506797,0.02497155,-0.017154576,-0.00843473,0.011107707,0.020694787,0.008601048,0.049325347,-0.0090049645,-0.026373379,-0.054552503,0.0038579977,0.026943615,-0.01665562,-0.009664299,-0.013816324,0.0025497237,-0.042244926,-0.0035194205,0.031457976,0.0049776784,0.04759088,-0.014445959,-0.024757713,-0.0035342705,0.010103855,-0.0095752,-0.020932384,-0.0023611302,-0.03585354,-0.0021071974,0.004561882,0.004089656,0.014766716,0.004312404,-0.022227295,-0.0136975255,-0.032147013,-0.015443871,-0.014897395,0.039868947,-0.02033839,0.018033689,-0.0050578676,-0.034903146,-0.0009838042,0.010472132,0.01792677,-0.012711493,0.018615805,-0.046996888,-0.012319457,0.016976377,0.008238711,0.014445959,-0.0017790151,0.006931922,-0.028963197,-0.004229245,0.048113596,-0.017332776,0.030388786,0.034380432,-0.0118799005,0.02879688,-0.028345443,-0.04984806,0.000052670654,0.006082509,0.025969462,0.013721285,0.0054142647,0.06709768,0.013685646,0.02870184,-0.024068678,-0.021716459,-0.024270637,-0.028179124,0.021146223,-0.020979904,0.005512274,0.0061834883,0.011452224,0.014469719,-0.01431528,0.021324422,0.022951968,-0.001424103,0.010489952,0.031956933,0.005146967,0.04894519,-0.003964917,-0.021657059,0.0084881885,-0.045523778,-0.01076319,-0.0026061533,0.007894194,-0.015669588,0.02620706,-0.041532133,-0.00023165806,-0.020112671,0.022037216,0.02036215,0.011487864,-0.007923894,-0.02379544,0.0010342938,0.014244,-0.007870434,0.024199357,0.020789826,-0.018176248,-0.013721285,0.026801055,-0.022833169,-0.021787738,-0.02853552,0.024294397,0.01653682,0.015812147,0.0033887415,-0.011713582,0.00029866814,-0.010347393,-0.0048083896,0.0076862955,0.039868947,0.013543086,0.04388435,0.058449112,0.019720634,-0.0082149515,0.019447397,0.03476059,-0.0113571845,0.00077813346,0.024151837,0.032503407,0.023260845,-0.0065280055,-0.0076684756,-0.02030275,-0.005405355,0.010014757,0.021977816,-0.01652494,0.022571811,-0.012485775,0.02877312,-0.0075021572,0.012675853,0.015871547,0.00477275,-0.015455751,-0.031434216,-0.036518816,0.015099353,-0.013210449,0.0018205948,-0.01661998,-0.00061478483,-0.010994848,0.0072289193,0.0061478484,-0.014695437,0.0021027424,-0.022738129,0.0065101855,-0.010008817,-0.030745182,0.05412483,-0.025636826,0.03350132,0.010941388,0.0047311704,0.000012599191,0.007395238,-0.024318157,-0.01913852,0.027395051,0.012426376,-0.0018562345,0.010674091,-0.021015543,-0.042126127,0.00047668102,-0.0030620443,0.004508422,0.02162142,-0.019625595,-0.015051834,-0.003914427,-0.027157452,-0.0027977165,-0.07265747,-0.02035027,0.029248316,-0.0039767968,-0.00831593,0.019863194,-0.0022185715,-0.029509673,0.052319083,0.0032699427,-0.036495056,0.0065161255,0.004567822,-0.005506334,-0.09218803,-0.015408231,-0.008874286,0.008630748,0.040985655,-0.015990347,0.058449112,0.037896883,0.036447536,-0.017309016,-0.030887742,-0.05854415,0.037920643,-0.016061626,0.048588794,-0.014861756,-0.012319457,0.028036565,0.02858304,-0.003819388,-0.037730563,-0.011749222,0.009111884,0.012877813,-0.053174436,0.0065101855,-0.028416721,-0.010258294,0.055360336,-0.0029699751,0.010674091,0.024009278,-0.008238711,0.015111233,-0.0066408645,0.009248503,0.020837346,0.013257969,0.013246089,0.010489952,0.019292958,-0.026896095,0.015111233,-0.029129516,-0.009385121,0.0033798318,0.016322983,0.018687084,-0.004030256,0.04274388,-0.0071041803,0.00020140143,0.0017047657,-0.030151188,0.009212863,-0.020694787,0.02993735,-0.0031452037,-0.025993222,-0.06381883,0.029224556,-0.013554966,-0.023296485,-0.014529118,0.030982781,-0.0019631535,0.00022831684,0.006771543,-0.004149055,0.009088124,-0.016192304,0.020017633,-0.018960321,0.031362936,0.032669727,0.0061537884,-0.008909926,0.016322983,0.015016194,0.017309016,0.0016483362,0.017083297,0.0012978791,-0.0129253315,0.001007564,0.0037481086,-0.015930947,0.023403404,-0.004662861,0.0073536583,0.027917767,0.011559144,0.009402941,-0.030436305,0.016477423,0.041223254,-0.024258757,-0.00032484104,0.024270637,0.014980555,0.004048076,0.005259826,-0.020861106,-0.013851964,-0.032075733,-0.015170633,0.018081209,0.019922594,0.016501183,0.05374467,-0.025446746,0.0025363588,-0.016501183,0.0008835676,-0.004092626,0.0019987933,0.022809409,0.020647267,-0.010091975,0.004333194,-0.036447536,0.000023945424,-0.000345074,-0.011458164,0.019209798,0.009195043,-0.015194393,-0.02858304,0.0027041624,0.016394263,0.009284142,-0.0072111,-0.00054833165,0.02877312,-0.0035105105,-0.019399878,-0.005010348,0.008666388,-0.05730864,0.00844067,0.010240474,0.026468419,-0.008963385,-0.01659622,0.011672002,0.04428827,-0.019174159,0.027252492,-0.01073349,-0.003929277,0.00719328,0.023545964,-0.010270174,-0.018556405,-0.0018458395,0.045761377,0.004564852,0.009456401,0.032051973,0.02140758,-0.017071417,0.055835534,-0.01686946,-0.032432128,-0.038585916,-0.021965936,-0.0064923656,0.019542437,-0.0035491204,-0.01681006,-0.02141946,0.032503407,-0.017689172,0.006088449,0.0015726018,-0.009028724,0.022239175,-0.0037243487,0.032360848,0.0015963616,-0.038467117,-0.008042692,0.006955682,0.0075496766,0.027941527,-0.0033026123,-0.0026744625,-0.058068953,-0.02751385,0.0049628285,0.032432128,0.012141258,0.005141027,-0.012462015,0.00031481736,0.002168082,0.015871547,-0.024805233,0.0047371103,-0.016227944,-0.0048677893,0.0013647035,-0.0030561043,0.03304988,-0.027632648,-0.04664049,0.0499431,-0.009367301,0.006914102,-0.015728988,0.005461784,-0.011202746,0.010192955,-0.017784212,0.02996111,0.013353008,-0.05849663,-0.025304189,0.020908626,0.0025512087,0.02518539,-0.014137082,-0.0013958883,0.0023537052,0.0076150163,-0.025803143,-0.030269986,0.013495567,-0.026896095,0.0025512087,-0.019922594,-0.013982643,-0.037801843,-0.025921943,0.014160842,-0.020552227,0.041603412,0.006819063,0.0050845975,0.016382383,-0.028060324,0.018853402,-0.021763979,-0.03461803,0.045880176,-0.03811072,0.023248965,0.02877312,0.038704716,-0.0034214114,0.0004362151,-0.018995961,-0.005473664,0.0048202695,0.026872335,-0.013721285,0.028345443,-0.031648055,0.022940088,-0.00952768,0.02632586,0.020623507,0.018152488,0.016156664,-0.029628472,-0.005381595,0.017463453,0.013448047,0.022156015,-0.0066468045,0.008232771,-0.017736692,0.009670239,0.007537797,0.012366977,-0.013566846,-0.0030219497,0.03742169,-0.005732052,-0.020706667,-0.043813072,0.0003088774,-0.017558493,0.025470506,0.019578077,-0.021657059,0.038490877,-0.012378857,0.0010201865,-0.0015919066,0.0002526335,0.031648055,0.010270174,-0.013911364,0.025636826,-0.011844261,-0.013269849,-0.041650932,0.045618817,0.0049747084,0.004152025,-0.006082509,-0.03314492,0.024270637,-0.029343354,0.017261496,0.025375467,-0.0050073783,-0.011672002,0.0021933266,0.02140758,-0.030673902,0.042244926,0.003222423,0.010596871,0.023153925,-0.023427164,-0.0024531994,-0.03580602,-0.031956933,-0.0011649728,0.03326372,-0.003706529,0.007424938,-0.014077682,0.0113631245,0.012521415,-0.016097264,-0.0014352405,-0.027632648,0.012901572,-0.019269198,-0.005651863,0.0005810014,0.009598959,0.008571348,0.0036263396,0.02377168,-0.0017641652,-0.0038639377,-0.018829642,0.011654182,0.036352497,0.0050370777,-0.006581465,-0.022310453,0.010531532,-0.0087495465,0.005654833,0.00062555104,0.0407243,0.02019583,0.0013840084,0.011410644,0.0076862955,0.022322332,0.023058888,-0.0052241865,-0.0025675434,0.023248965,-0.01675066,0.023427164,-0.0076328362,0.017297136,-0.015717108,0.024330037,-0.000891735,0.013911364,0.022607451,0.010923568,0.0012911967,-0.01073943,-0.024353797,0.0016527912,0.019281078,-0.024056798,0.013269849,-0.0067240237,0.039750148,-0.017332776,-0.034404192,0.038823515,0.014849876,-0.032360848,-0.02383108,-0.008862406,0.048161115,-0.015776508,0.041151974,-0.02269061,0.039702628,-0.021122463,0.020956144,-0.020599747,-0.01797429,-0.0041223257,-0.016239824,-0.04176973,0.018948441,-0.002842266,-0.04443083,0.021633299,0.015978467,-0.00356991,-0.02494779,0.0056726523,0.0025883333,0.0050014383,-0.010442433,0.0025036891,-0.029675992,0.03946503,-0.024282517,0.04321908,0.05749872,0.04041542,0.00037978558,0.019328598,0.058449112,-0.008547588,-0.023569722,-0.0059845,0.002171052,-0.021134343,0.04412195,0.0036411895,0.02984231,-0.005524154,0.022310453,-0.012224417,0.02140758,-0.0046153413,0.019815674,0.023058888,-0.03359636,0.013863844,0.0215145,-0.010644391,-0.035592183,-0.026658496,0.019483037,0.0020864075,-0.011737342,0.008113972,0.02509035,0.010127615,0.015206273,-0.03704153,-0.02625458,-0.0077991546,-0.0113334255,0.00238192,0.021657059,0.01786737,0.0066289846,0.0027962315,0.051748846,-0.005758782,0.035307065,0.02043343,-0.0047133504,-0.01784361,0.018164368,0.02744257,-0.030863982,-0.031671815,0.027157452,0.012450135,-0.0075734365,0.003474871,-0.028392963,-0.00045254995,-0.017047657,0.0009073274,0.0049717384,-0.019803794,-0.012141258,-0.015146873,0.042648844,0.014921155,0.0010602811,0.032954846,0.0014708802,0.006213188,-0.0012845142,0.0030917441,-0.0004566337,-0.041460853,-0.031743094,0.0029521552,-0.0028199914,-0.02506659,-0.0003207573,-0.005274676,-0.015847787,-0.015586429,-0.013531207,0.015241913,0.00596074,0.031054059,-0.012319457,-0.052224044,-0.015693348,-0.04407443,0.024092438,-0.038063202,0.02974727,0.023641001,0.019233558,-0.021122463,0.00179238,-0.00038089932,-0.018104969,-0.0009875167,0.0139588835,0.028107844,-0.0105731115,-0.015562669,-0.0038728477,-0.010371153,-0.02984231,0.02033839,-0.012735253,0.02017207,0.013448047,-0.0026120932,-0.005274676,0.021954056,-0.021312542,0.0049865884,-0.0476384,0.0003705044,0.01072755,0.010234535,-0.044763464,0.05364963,-0.011487864,-0.00715764,-0.009622719,0.017665412,0.024733953,-0.0011612603,-0.019530557,0.027062414,-0.018057449,0.03233709,-0.008630748,-0.007056661,-0.0075556166,-0.0022497561,-0.038538396,0.03459427,-0.048660073,-0.038467117,0.0053043757,-0.022013456,0.0013372313,0.023308365,0.033335,-0.034047794,-0.038918555,0.018497005,0.022227295,0.008048632,0.001317184,0.0046064314,-0.008203072,-0.00029774,-0.012402616,0.028250404,0.013994522,-0.015574549,-0.0017077357,-0.0332162,0.0142321205,0.014897395,-0.015788388,0.001431528,-0.016952619,-0.00031685922,0.002172537,-0.005726112,-0.013495567,-0.011820501,0.028202884,-0.0050370777,-0.029462153,0.00826841,-0.034380432,-0.004425263,-0.03461803,0.032503407,-0.006997261,-0.021288782,-0.008939625,0.0049360986,0.052841797,-0.012865933,-0.0403679,0.030341266,-0.015966587,0.022262933,-0.009682119,0.019043481,-0.024139958,-0.00839315,-0.013780684,-0.031481735,0.0003491577,0.03378644,0.014552878,0.0048618494,0.025779383,-0.027608888,0.05355459,-0.028084084,-0.019839434,-0.013709405,0.04300524,-0.022488652,-0.00835751,0.009385121,0.010977028,0.013471807,0.0022438162,0.0129134515,0.018889042,-0.032788526,0.018116849,-0.006706204,-0.008868346,0.0005115782,0.0056756223,-0.00021922129,-0.01432716,0.046070255,-0.0012756044,-0.007246739,0.04797104,0.015657708,0.0041223257,0.01079289,-0.0123907365,-0.05136869,-0.017095177,0.020528467,-0.018176248,-0.05122613,-0.012331337,-0.025399227,-0.030697662,0.014659797,0.0664324,0.0050489577,-0.0017404055,0.024805233,-0.012794653,-0.028179124,-0.041532133,-0.011238386,0.017356535,0.017404053,-0.038182,-0.04070054,0.041532133,-0.02156202,0.005256856,-0.006955682,-0.03224205,-0.014790476,0.02979479,-0.015919067,-0.022084735,0.034380432,0.05008566,0.013257969,0.01796241,0.016453663,0.035354584,0.011624482,0.011755162,-0.029984869,-0.015622069,-0.017059537,0.00060216244,-0.0025200238,-0.015099353,-0.0022482711,0.0049093687,0.010543412,-0.017998049,0.0062310076,-0.02991359,0.019993873,0.002266091,0.01798617,-0.012165018,0.048517514,0.014137082,-0.0018562345,-0.026420899,0.059019346,-0.0063022873,-0.017617892,0.061442845,-0.01667938,0.012271937,-0.04321908,0.010602811,0.0075734365,-0.012414496,-0.021253143,0.0004131978,0.0028318714,0.058876786,0.02490027,0.02140758,-0.023676641,0.022025336,-0.010994848,-0.0018354446,0.028202884,0.012984731,-0.02509035,0.0006671307,-0.00019174902,-0.017760452,-0.03473683,0.022951968,0.0061597284,0.0476384,0.0077872747,0.009195043,-0.013780684,-0.046212815,0.01438656,0.0020062183,-0.0134361675,0.00843473]},{"id":"interface-SendBodyResult","type":"interface","source":"main","text":"Interface: SendBodyResult\nDescription: API-ready body from MessageSendOptions (serializes EmbedBuilder, includes attachments when files present).\nProperties: attachments: { id: number; filename: string; title?: string | null; description?: string | null; flags?: number; }[], content: string, embeds: APIEmbed[]","meta":{"url":"/docs/typedefs/SendBodyResult"},"embedding":[0.041245468,0.025444327,-0.00015384864,0.020654807,-0.020056117,-0.03194439,0.004909793,-0.009926495,0.016774014,-0.028844032,-0.0054844287,-0.011310966,0.02895094,-0.0452011,0.013866089,0.0022370697,0.0320513,0.04246423,0.027796324,0.01590805,-0.013342236,-0.019938517,0.026043018,-0.0104717305,-0.02154215,-0.025551237,0.0053855376,0.0036803402,-0.0064038457,-0.022301205,0.032094065,-0.03600693,0.04900706,0.005954828,-0.025380183,0.05452356,0.015116924,0.037974056,-0.032949336,0.0024348511,0.0065161,0.007852461,-0.043127067,0.022536404,-0.038658272,0.028266724,0.0339329,-0.013224636,0.015459033,0.035921402,-0.018431101,0.0193719,0.05332618,0.058072936,0.009883732,0.008467188,-0.030105557,0.019115318,-0.04233594,0.038551364,-0.020954153,-0.028352251,-0.016720558,0.0113751115,-0.017265793,0.018249355,-0.05879992,0.07004674,0.03350526,0.03382599,0.068336196,0.0063450458,-0.00819457,0.064915106,0.021574223,-0.033291444,0.03728984,-0.009354533,-0.004909793,-0.08522781,-0.030062795,0.022750223,-0.0433195,-0.012347982,-0.030105557,0.008483225,-0.012540419,-0.012615255,-0.041010268,0.013695035,-0.06042493,-0.027005197,-0.03215821,-0.0129146,-0.004038485,-0.029207522,-0.055549886,-0.00047073342,-0.015245215,0.043704376,0.06859278,-0.010204459,-0.056020286,-0.0070452993,0.03848722,-0.049220875,0.022771604,-0.017180266,-0.030105557,-0.025658146,-0.0016463976,0.0059601734,0.005182411,0.013352927,-0.0044687935,-0.011984493,-0.0075156987,0.011802747,0.0021194697,-0.033441115,0.00788988,-0.008878787,0.028437778,-0.013609508,-0.00035781087,0.0069918446,-0.020141644,-0.019927826,-0.026363745,0.017180266,0.0581157,0.013021509,0.023455821,0.023028186,-0.0027956688,0.005000666,-0.0110543845,0.05033273,0.029079232,-0.047510333,0.033526644,-0.0013530663,0.009001733,-0.044687938,-0.01626085,0.024867019,-0.00585861,0.03179472,0.008189225,-0.012946673,-0.0111719845,0.0132460175,-0.055464357,0.045158338,-0.024888402,-0.03696911,0.020398226,-0.013224636,0.0013196572,-0.037589185,-0.0032981408,-0.045243863,-0.031645045,-0.027047962,0.0031110502,0.029827595,0.072441496,-0.029955884,-0.015394887,0.007146863,0.014507543,-0.019532263,-0.03515166,0.01745823,-0.02809567,-0.012230382,0.03273552,-0.06311904,-0.015255906,0.004166776,0.029677922,0.017875174,-0.019061863,-0.023605494,-0.05084589,0.019403972,0.0051343017,0.069148704,0.031302936,-0.011257512,-0.036691148,0.0023987694,-0.024567675,-0.007686753,-0.010348786,-0.02044099,-0.035322715,0.014817579,0.0055913376,-0.012347982,0.051059708,0.008686352,0.027069343,0.012743546,-0.0452011,0.009488168,-0.026278218,0.006884936,-0.053283416,0.0038246673,0.05478014,-0.011065075,0.004714684,-0.0027422144,0.010316713,0.019810226,-0.032094065,0.013588127,-0.013577435,0.03288519,-0.045414917,0.02056928,0.083731085,-0.025850581,-0.018751828,0.042164885,-0.031174647,0.0101777315,-0.04828008,-0.023413058,0.003546704,0.044559646,0.0018989701,-0.023006804,-0.01899772,0.0017693429,0.0009795532,0.040219143,0.028886795,-0.011781366,-0.035942785,-0.020815171,-0.00085059425,0.020366153,-0.003586795,0.011898965,0.01638914,-0.032094065,-0.0017853793,0.01363089,0.03731122,0.00013196572,0.024353856,-0.033633552,0.0027662688,-0.027839089,-0.028566068,-0.005751701,0.013491908,-0.02008819,0.012668709,0.0028491232,-0.02691967,-0.0074194805,0.00000641036,0.008237334,0.0385086,0.008862752,0.03132432,0.0028811959,-0.017917939,0.01684885,0.01900841,0.035750348,-0.040219143,0.022985423,-0.018110374,-0.006719227,-0.029357195,0.0040545217,-0.0069864993,-0.023177858,-0.05824399,0.035921402,-0.026983816,-0.005628756,0.015940122,0.007895226,0.03230788,0.030747011,0.032863807,-0.005537883,0.042720813,-0.04579979,-0.023306148,-0.021959096,0.035707586,-0.02439662,0.09981018,0.025936108,0.02499531,-0.049178112,0.046441242,-0.018270738,-0.023541348,-0.0002604235,-0.006917008,0.04986233,0.027903233,-0.015223833,0.012380055,0.014026453,-0.06735263,-0.0057356646,-0.021253496,0.04351194,0.0155231785,0.009049842,-0.05465185,0.026021635,0.010557258,0.039150055,0.0070399535,-0.02296404,-0.008889479,-0.016079105,-0.006168646,-0.0046639023,-0.027325924,0.019093936,-0.012700782,-0.020344771,-0.008424425,-0.011503402,0.050118912,-0.030661484,-0.0101189315,-0.02055859,0.011567547,0.06589867,0.03681944,-0.0016022978,0.015063469,-0.0036108494,-0.028288106,-0.025850581,-0.033954278,0.06559932,-0.016431903,-0.025080837,0.013053582,-0.0034959223,-0.005345447,0.0020192426,0.03061872,0.0123693645,0.012989436,-0.06910594,-0.017907247,-0.019093936,-0.024182802,0.0028678323,0.0048697023,0.039150055,0.007815043,0.006430573,-0.015865287,0.018687682,0.0045489753,-0.024482148,0.053668287,0.05978348,-0.0258292,0.041780014,0.0096538775,-0.0025631418,-0.0049552293,-0.022985423,-0.030169703,0.0025096873,0.042635284,0.060082823,-0.040539872,-0.019051174,0.019681936,0.010958167,-0.010904712,0.03108912,0.010936785,-0.005463047,0.004081249,0.011524783,-0.053711053,-0.0011646393,0.042720813,0.071500696,0.032350644,-0.012176928,-0.018431101,-0.044089247,-0.013577435,-0.016923685,0.0069276993,0.0142081985,0.020857934,-0.060296644,0.04173725,-0.035814494,0.04152343,-0.04056125,0.031666428,-0.013534672,0.019040482,0.014657216,0.024909783,-0.006120537,-0.0101189315,-0.0260644,0.022814367,0.033569407,-0.046355717,-0.018794592,-0.046184663,0.021189352,0.01899772,-0.034617115,0.035344094,-0.028266724,-0.014838961,-0.049092587,-0.06872106,0.03337697,0.003498595,0.010856603,-0.008515297,0.0030121594,0.010086859,-0.016827468,-0.02403313,0.02869436,0.0014432707,0.014988634,0.007472935,0.03406119,-0.06577038,-0.013898162,-0.023541348,0.001107844,0.003934249,-0.023391675,-0.04043296,0.008387007,-0.032927953,0.03350526,-0.031260174,0.008873442,-0.024482148,-0.0048857387,0.036306277,-0.008205261,-0.016827468,0.03731122,0.026876908,-0.012230382,-0.014272343,-0.03382599,-0.017950011,0.001019644,-0.020387534,0.023028186,-0.036220748,0.013181873,0.026021635,0.021114515,-0.021809423,-0.03312039,0.007462244,-0.021146588,-0.0057570464,0.006628354,-0.011428566,-0.025743673,-0.013320854,-0.030811157,-0.03752504,0.079967886,0.01912601,-0.01782172,0.0332273,0.0010684212,0.028737122,-0.010332749,-0.03895762,-0.007895226,0.008611515,-0.041480668,-0.012529728,-0.009696641,0.043191213,-0.003402377,0.03202992,-0.026705854,-0.01171722,-0.02068688,0.057260428,-0.0010383531,-0.040946122,-0.03145261,-0.029250287,-0.012144855,-0.013064273,0.005981555,0.02689829,0.0063985,-0.03254308,0.007724171,-0.024054512,0.039898418,-0.024311094,-0.021734588,-0.016581576,0.017319249,0.020793788,-0.012861146,0.008023516,0.0032206317,-0.0192543,-0.01207002,0.010920748,0.0014058526,0.0035012679,-0.0026513417,0.008707733,0.017094739,0.008419079,0.017725503,-0.016816776,-0.004973938,0.010557258,-0.03215821,-0.022792986,0.023584113,0.017062668,-0.0055859922,-0.015223833,0.033163153,-0.0069864993,0.023776548,0.01058933,0.013310163,-0.02044099,-0.005257247,0.07124412,0.0018789247,-0.0066764634,0.044089247,-0.00950955,-0.003527995,-0.006778027,0.00037117448,0.005575301,-0.015640778,0.032607228,-0.0019444063,-0.0017172248,0.03619937,-0.0027088053,0.012091401,0.04088198,0.004949884,-0.013652272,0.03887209,-0.008750496,0.0063450458,-0.022899896,0.021820115,0.009926495,-0.009921149,-0.034018423,-0.015138306,-0.0046131206,-0.014913797,-0.020056117,-0.002985432,0.013256708,0.023626875,0.019179463,0.010685548,0.024567675,0.03814511,0.03887209,0.023327531,0.055934757,-0.01363089,0.019414663,-0.01985299,0.04554321,-0.01028464,-0.015790451,0.010664167,0.010867294,-0.004458103,0.008002134,0.006088464,0.023883456,0.019040482,0.013620199,-0.03279966,-0.026256835,0.0024722693,-0.009317114,0.042913247,-0.034574352,-0.019810226,-0.020462371,0.016218087,0.014218889,-0.002814378,0.00033592794,-0.008707733,0.020163026,0.03327006,0.0048403023,0.0334625,-0.031602282,0.019927826,0.006409191,-0.0053989016,-0.0010089531,0.023135094,0.019436045,0.031046357,-0.009873041,-0.011973801,-0.008664969,0.0029560323,-0.002715487,-0.005944137,-0.028908178,0.009119333,0.0023960967,0.018195901,0.049220875,-0.02403313,-0.0026914326,-0.0089215515,-0.043618847,0.0021248152,-0.0015461706,0.01494587,-0.04900706,-0.037011877,0.042186268,-0.013940926,0.009664568,-0.028352251,-0.031131884,0.02715487,-0.031153265,-0.02822396,-0.009707332,0.015020706,-0.004909793,0.006494718,-0.02499531,0.03502337,-0.026214072,0.0037231038,-0.015736995,0.02045168,0.0026232782,-0.002204997,-0.0021956423,-0.04197245,0.083303444,-0.026492035,-0.011396493,0.0053294105,0.0022490968,0.005027393,-0.019425355,0.0032794317,-0.036691148,-0.039770126,0.0024722693,-0.019949209,0.005345447,0.040967505,0.03374046,-0.021189352,-0.0023733785,-0.0014860342,0.011973801,-0.02476011,0.03895762,0.05332618,0.018719755,0.029848976,-0.00090672146,-0.013107036,-0.03168781,0.021125207,0.0011753301,-0.0071308264,0.002360015,-0.03096083,-0.03728984,0.008157152,0.020302007,-0.012957363,-0.0075905346,-0.0060831187,-0.020237863,0.006243482,-0.01637845,0.0090979505,0.0021943059,0.029848976,-0.0014218889,-0.026513416,0.031431228,-0.021702515,-0.0336977,0.025957491,0.018484555,-0.021499388,0.012903909,0.01698783,-0.009600423,0.0009428032,0.04009085,0.010787112,0.023541348,0.018612847,-0.020954153,0.03382599,-0.0033703044,0.006040355,-0.009782168,-0.0059601734,-0.021306952,0.00920486,0.055336066,0.018195901,0.0013684344,-0.017629284,-0.008884133,-0.00010415269,-0.001522116,-0.0024522238,-0.026941054,0.003458504,-0.02390484,0.030939447,0.028010143,0.012797,-0.021681134,-0.018965647,-0.059227552,-0.0033997044,0.004610448,0.03327006,-0.0057623917,-0.030875301,0.007211008,-0.03923558,0.0019403973,-0.0022878514,0.03707602,0.02165975,-0.0077883163,0.01411198,-0.012754236,0.0010049441,0.0430843,-0.04733928,-0.029442722,-0.037268456,-0.043127067,0.024460765,0.043362267,-0.049734037,-0.0130322,0.0010443667,-0.01947881,-0.00027846437,-0.047553096,-0.0320513,0.01482827,-0.011674456,0.0018749156,0.011225439,0.010690894,-0.054822903,0.041245468,0.025765054,-0.029677922,-0.037033256,0.01627154,0.042506993,-0.033997044,-0.025123602,-0.025422946,-0.036691148,0.0012882528,-0.0076707164,0.0049819564,0.020847244,-0.0076814075,0.036156602,-0.034146715,0.00015760717,-0.0021208061,0.025743673,0.011343039,0.008290788,-0.0110543845,0.0048563387,0.030554576,0.03194439,0.049734037,-0.019307755,-0.002744887,0.003923558,0.050632074,0.054737378,-0.021424552,0.004685284,0.02369102,-0.032457553,0.018024847,0.02428971,-0.0131498,0.012861146,0.009269005,-0.024332475,-0.011268202,0.029870357,-0.029036468,-0.0043645576,0.012230382,-0.01057864,0.051957745,0.027710797,0.027432835,0.0029961232,0.034403298,0.021371096,-0.029848976,0.0067940634,0.0117279105,0.0086596245,0.01184551,-0.050118912,-0.01685954,-0.016677795,-0.043682992,-0.0007857807,-0.004284376,0.0022210332,-0.01494587,0.019949209,0.0048991023,-0.005003338,-0.02392622,-0.024781492,-0.031666428,0.0014820251,0.015448342,0.024182802,0.019329136,-0.0147641245,-0.007211008,-0.012454892,0.011321656,0.037225693,-0.006409191,0.011546166,-0.019286374,0.044687938,0.026085781,-0.028373633,0.0024923147,0.004669248,-0.020473061,-0.0049285023,0.0382734,0.027774943,-0.018580774,0.023455821,-0.0052251746,-0.020740334,0.015801141,0.00908726,-0.025209129,0.032628607,-0.037118785,0.041651722,0.06346115,0.002504342,-0.020868625,-0.04464517,-0.00939195,-0.030148322,0.07329677,0.012519037,0.061536785,-0.025144983,-0.007724171,0.007462244,0.015020706,0.007996789,-0.06671118,0.02798876,-0.0083388975,0.0015648797,0.008114388,0.0036482676,0.013673654,-0.025316037,-0.021135898,0.0005515833,0.044944517,-0.005778428,-0.062135477,-0.020130953,-0.027005197,-0.029250287,0.04639848,-0.007633298,0.0049953205,-0.026085781,0.007777625,0.018794592,-0.008381661,-0.062349293,0.008884133,0.0038246673,-0.0076012257,0.02176666,-0.0017092067,0.004575703,-0.0045650117,-0.021852188,0.0057303193,-0.006900972,-0.06577038,0.010616058,-0.008317515,-0.02127488,-0.0054496834,-0.010616058,0.009370568,-0.037824385,-0.00043465165,-0.029977268,0.036071077,-0.020986225,0.07658956,0.026043018,-0.0065962817,-0.03459573,-0.037867147,-0.048622187,0.0030816502,0.02392622,0.055036724,-0.013310163,0.001208071,0.037974056,-0.022899896,-0.023028186,0.00472003,0.021082442,-0.01650674,0.036284894,-0.019714009,0.027283162,-0.0037337947,-0.01865561,-0.0027395417,0.024460765,-0.0033916861,0.0016784704,0.025765054,0.008055588,0.006975808,0.025038075,0.028245343,-0.017992774,-0.008317515,-0.030426284,-0.008916206,-0.022194296,0.036520094,-0.011129221,-0.035600677,0.018260047,0.016453287,-0.003450486,-0.04952022,0.015833214,-0.021488696,0.010396894,0.004431376,-0.009044496,0.004343176,0.015362815,-0.0047013205,-0.006804754,0.006831481,0.003402377,-0.0045489753,-0.037118785,0.017276485,-0.01183482,0.026256835,0.016774014,0.022814367,0.03350526,0.054138687,-0.047681388,0.0036509403,0.023370294,0.01530936,-0.013534672,0.028523305,0.012433509,-0.0001525958,-0.008435115,-0.04960575,0.06547104,-0.018088993,-0.021028988,-0.019778155,-0.0022223697,-0.004001067,0.014518234,0.014197507,0.0028571414,-0.024567675,-0.01022584,-0.027646651,0.04113856,0.013502599,-0.030062795,-0.01542696,-0.0073980987,-0.0071575535,-0.0025631418,0.0077081346,0.04725375,-0.02188426,-0.015512487,-0.0006755309,0.013107036,0.005719628,0.013705726,0.0373326,-0.0145609975,-0.020366153,0.039192818,0.031131884,0.016079105,-0.0015929432,-0.0020219153,0.020473061,0.0043592122,0.021478007,0.010979548,0.022108769,-0.0041427216,-0.004463448,0.006371773,0.01914739,0.0052412106,-0.014379253,-0.019917136,-0.044944517,-0.0036990494,-0.020056117,-0.018741136,-0.033890136,-0.02009888,-0.013331545,0.035429623,0.016592268,-0.002516369,0.04639848,0.0019109973,-0.024695965,0.004118667,-0.012893219,0.0038781217,-0.029143376,0.05037549,0.009846313,-0.04137376,0.013224636,-0.030319376,0.00825337,-0.022151532,0.00406254,0.021146588,-0.0062969364,0.00765468,0.014154743,-0.04507281,-0.00391554,0.021018298,-0.03406119,0.0024174785,-0.006467991,-0.008846715,-0.03767471,-0.026812762,0.0056020287,0.0015087525,-0.022044623,-0.025380183,0.0067406087,-0.009488168,0.007638644,0.050589312,-0.025957491,-0.024311094,0.031388465,0.0320513,-0.016560195,0.011118529,-0.006917008,-0.02307095,-0.015095542,-0.05512225,-0.003993049,-0.030148322,-0.0066550816,-0.017201649,0.027924616,-0.025936108,0.007665371,0.03540824,-0.016677795,0.014518234,0.02020579,-0.017511684,-0.030597338,0.03767471,0.010739003,-0.0029747412,-0.00045670161,0.0037631947,-0.00038687672,0.03384737,0.01316049,-0.02068688,0.018495247,0.00008485897,-0.023477204,0.027945997,-0.016838158,0.00204597,-0.0008699715,0.0063450458,0.005890683,0.016838158,-0.031281557,-0.0138874715,0.013577435,0.020312699,0.026620327,-0.02153146,0.0004714016,0.015074161,-0.002357342,-0.0064466093,0.023776548,-0.038166493,0.025508473,-0.009835622,0.050888654,-0.013716417,-0.020515826,-0.05918479,-0.019981282,0.01615394,-0.015533869,0.01051984,-0.026107164,-0.011578239,-0.01136442,-0.0041587576,-0.02942134,0.0113751115,-0.014999324,0.01196311,-0.014144053,-0.023819312,0.005516501,-0.027047962,-0.0005348788,0.057944644,-0.015972195,0.003701722,0.033654936,-0.018399028,0.008809296,0.012636636,0.012390746,-0.009589732,0.01231591,0.04066816,0.054993957,0.025080837,0.001078444,0.017094739,0.04652677,-0.0044794846,-0.019521572,0.0070185717,0.00061572867,-0.014379253,-0.0038540673,0.016688485,-0.04464517,-0.009295733,0.009482823,-0.0029079232,-0.0014659888,0.001145262,0.043682992,-0.016292922,0.041416522,-0.022172915,-0.016228776,-0.018334882,-0.0017974066,0.011278893,-0.0060563916,-0.001488707,0.01770412,0.01636776,0.026021635,0.02677,-0.033334207,-0.003335559,-0.020184407,-0.033633552,-0.022643313,0.0041534123,-0.004912466,-0.038358927,0.020911388,-0.014678597,0.011514093,0.0114071835,-0.013117727,-0.015769068,-0.03955631,0.012615255,-0.032906573,-0.022386732,-0.018046228,0.02895094,-0.014079907,-0.026235454,0.014496853,-0.015790451,-0.021349715,0.005457701,0.010311367,0.0039208853,-0.029699303,-0.016164633,0.016945068,0.011877583,0.036862202,0.012155547,-0.011588929,0.03743951,-0.016357068,0.019607099,-0.008723769,-0.01530936,-0.026748616,-0.006922354,-0.023263386,0.011353729,-0.0013136436,-0.0046451935,0.02715487,-0.015394887,-0.02128557,-0.0031110502,-0.010749694,-0.030297993,0.006772681,-0.019842299,-0.011182675,0.01615394,-0.041437905,0.04832284,0.012540419,0.012946673,0.0041988487,-0.012647328,-0.03572897,0.014496853,0.0101189315,-0.02978483,-0.006157955,0.024909783,-0.051872216,0.008167843,0.0050514475,0.033633552,0.004669248,-0.037738856,-0.03215821,0.004059867,0.0119310375,-0.018388338,-0.009162096,0.009354533,-0.012134165,-0.049819566,-0.017843103,-0.0032687408,0.0005479083,0.01316049,0.019959899,0.0029319776,0.0010056122,-0.018270738,-0.012978746,-0.04282772,-0.01589736,-0.0029239594,0.026941054,-0.040219143,-0.006922354,0.027582506,0.0131498,-0.008504606,0.0020486426,0.031067738,0.0046077752,0.0114071835,0.009557659,0.019222228,-0.023413058,0.027005197,0.007579844,-0.029357195,0.0053000106,0.053668287,0.012390746,0.029100614,0.0036001585,0.002686087,-0.040539872,0.041780014,0.02307095,-0.0067619905,-0.003816649,0.04413201,0.015598014,-0.01530936,0.03681944,0.01094213,-0.015127615,-0.014486161,-0.019200847,0.0076012257,0.02414004,-0.012572492,-0.014218889,-0.013620199,-0.00385674,-0.012572492,0.02450353,0.02272884,-0.052770253,-0.013834016,-0.008937587,0.006911663,-0.017137503,-0.017030595,-0.0049579022,-0.01411198,0.00029800867,0.017597212,-0.009488168,0.0014352525,0.016945068,-0.03025523,-0.001415207,-0.008071625,0.015982887,-0.009835622,-0.040860597,-0.016784703,0.0054844287,0.018815974,-0.039428018,-0.014389943,-0.014432707,0.019842299,0.027219016,0.049648512,0.0020219153,0.0005225174,-0.01446478,-0.007895226,-0.017158885,0.02942134,0.026620327,-0.019510882,0.010364822,-0.008643588,-0.012497655,-0.010567949,-0.026214072,0.008109043,-0.049349166,-0.0031939046,-0.03829478,-0.0061419187,0.0132460175,0.023498585,0.028266724,0.01016704,0.018976336,-0.026021635,-0.024418002,0.0027956688,-0.00078511256,0.0016490704,-0.05311236,-0.010701585,-0.0071842805,0.027839089,0.031067738,-0.0525992,-0.00442603,-0.0027395417,-0.02965654,0.012775619,-0.009776822,-0.00022283832,-0.043426413,-0.006922354,0.031067738,-0.050589312,-0.00071027625,-0.0011071757,0.02366964,-0.018313501,-0.005324065,-0.012016565,0.0034291043,0.013320854,-0.0062755547,0.014432707,-0.0069330446,0.028373633,0.014047835,-0.0001363089,0.010931439,0.0002640985,-0.026513416,0.06085257,-0.013545362,0.009937186,0.006291591,0.038658272,0.044858992,-0.021980477,0.014486161,-0.03696911,-0.005324065,0.016047033,0.0034291043,-0.03707602,-0.0049258294,0.010514494,-0.009520241,0.0069276993,-0.02154215,0.017661357,-0.030404903,0.009937186,0.02895094,0.020280626,-0.010257913,0.0113751115,-0.06688223,0.011578239,0.040368814,0.040005326,-0.04088198,-0.02296404,0.013844708,-0.0071094446,-0.0131498,0.039599072,-0.00033976996,-0.007606571,0.012882527,0.011567547,0.02152077,-0.004621139,0.0028197232,0.015074161,0.03525857,0.049819566,0.022087388,-0.034168098,0.009194169,-0.01627154,-0.009456096,-0.002072697,-0.025615383,0.012102092,-0.011193366,0.019863682,0.0009989304,0.034339152,-0.0037097402,-0.03754642,-0.01889081,-0.008670315,-0.0077348617,-0.0072163534,0.007296535,-0.012775619]},{"id":"interface-Snowflake","type":"interface","source":"main","text":"Interface: Snowflake\nDescription: Snowflake ID type - 64-bit unsigned integer as string.\nFluxer uses Twitter Snowflakes with epoch 1420070400000 (first second of 2015).","meta":{"url":"/docs/typedefs/Snowflake"},"embedding":[-0.0035646423,-0.035093684,-0.040754862,-0.0012454244,0.05151392,-0.034727536,-0.026263932,-0.008928329,0.017053952,-0.014702169,0.012899605,0.017420098,-0.036614597,-0.006139986,0.008414316,0.0395156,-0.030221125,-0.013617814,-0.030868921,0.02026477,-0.02996764,-0.044303663,0.029995805,0.02541898,0.021856098,0.0153218005,-0.057456754,0.029179018,0.030277455,-0.042360272,0.04038872,-0.028953698,0.04162798,0.024672605,0.029010028,-0.044134673,0.0038586152,0.029770484,-0.02813691,-0.003668501,-0.038586155,-0.019800048,0.0019433902,0.026179437,-0.0016943053,0.045402102,-0.024179718,-0.02003945,-0.007280672,0.038755145,-0.0007586967,0.035178177,-0.04683852,0.024855679,-0.004745815,0.0070835166,-0.008083376,0.020856239,-0.04055771,0.014019166,0.0031034392,-0.008034088,0.01998312,0.029460669,0.034558546,0.055090886,-0.006171672,0.04523311,0.038755145,0.0519364,0.007386291,0.014350106,0.012477128,-0.06032959,0.0009848975,0.027531361,-0.052077223,-0.008977618,0.027644021,-0.024405038,0.0081045,0.05300667,-0.03768487,-0.06590628,-0.008456564,0.018321382,0.0071820943,-0.0312914,-0.03734689,0.021208301,-0.0120969,0.015687946,-0.055400703,-0.013695268,-0.02553164,-0.058301706,0.018912848,0.017617254,-0.0096817445,0.016899046,0.027982002,0.037206065,-0.001204057,-0.045768246,0.02041968,0.0053408025,-0.003013663,-0.0070342277,-0.043374214,0.015856937,-0.07542607,-0.04162798,-0.008231243,-0.017335603,-0.017842576,0.013681185,-0.0407267,0.024109304,0.026559666,0.023334764,-0.013160131,-0.047824297,-0.012512335,0.01265316,-0.029573329,-0.03836083,-0.0043092566,-0.027925672,-0.041149173,-0.011104081,0.035544325,-0.057907395,0.004150828,0.0209689,0.008611471,-0.026841316,-0.012315179,-0.029263513,-0.0047880625,-0.047908794,-0.03889597,0.010808348,0.05970996,-0.0037037074,-0.006787783,0.009484589,-0.014744417,0.048810076,-0.014012124,0.010245046,0.011801166,0.001969795,-0.018096061,0.0104562845,0.0033146772,-0.033093963,0.06010427,0.010611192,0.00826645,-0.024827514,0.013286874,0.009160691,-0.0037107486,0.018659363,-0.0061505483,0.022672886,-0.003585766,-0.025686549,-0.069060765,0.0015499593,-0.015476708,-0.028615717,-0.0075834463,-0.054358594,-0.028052414,0.037234228,0.024827514,-0.0066293543,-0.046472374,-0.034643043,0.031995524,-0.021912428,-0.0022620077,-0.057513084,0.02425013,-0.021799767,-0.011737795,0.003869177,0.06359674,0.018786104,-0.026094941,0.080552116,0.036586434,0.046331547,0.046247054,-0.004076895,0.038614318,-0.048049618,-0.007203218,0.02502467,-0.03917762,0.045852743,0.015251388,-0.0156175345,-0.015828772,-0.027432783,0.024165634,-0.002879879,-0.016772302,0.01309676,0.03802285,0.05317566,0.008393193,-0.029657824,-0.058921337,0.054245934,0.033262953,0.009688786,-0.0027813013,-0.0010130625,-0.0377412,0.035178177,-0.0037283518,-0.011118163,-0.011343484,-0.012632037,0.0087875035,-0.028235488,-0.036558267,0.019800048,-0.013329122,-0.0015253149,0.0010491491,-0.06624426,-0.05365447,0.018588949,-0.027573608,-0.017222943,0.0010799546,-0.0033815694,-0.061568853,-0.029432504,0.0059956405,0.03979725,-0.021180136,0.0032794708,-0.022715133,-0.023630498,-0.028334066,0.015349966,0.012920728,-0.0016194918,0.015687946,-0.0007116082,0.007087037,-0.08269266,0.0049746563,0.056076664,0.041092843,-0.030502776,0.013913547,-0.10606967,-0.048162278,0.021222385,-0.03230534,-0.055738684,0.002142306,0.03768487,-0.024503615,-0.0071574496,-0.023362929,0.0018800187,0.038586155,0.008590348,-0.02658783,-0.0022127186,0.007682024,0.023644581,-0.008336863,-0.016899046,0.0046824436,-0.019729635,-0.0007674983,0.0012639078,-0.043937515,0.0023676266,0.023968479,0.02691173,0.026207602,-0.03151672,-0.034417722,0.013244626,0.017293356,0.0064462814,-0.029545164,0.022348987,0.030897086,0.03323479,0.008604431,-0.005354885,0.009970437,-0.038276337,0.006432199,-0.028615717,-0.04179697,0.018842435,-0.020673165,0.027179297,0.023926232,-0.014089579,-0.02015211,-0.026348427,-0.055203546,-0.026714575,-0.011723712,-0.010005643,0.030728096,0.06652591,0.044754304,0.009794405,0.03041828,-0.071482964,0.03224901,-0.032051854,-0.017912988,-0.02041968,-0.0028675566,-0.006896923,0.018617114,-0.0075623225,-0.0004761658,-0.018039731,0.028122827,-0.026700491,-0.0015499593,-0.06038592,-0.011125205,0.0032935534,-0.031263232,0.022630638,0.019067755,-0.07576405,-0.028432643,-0.008808627,-0.0070447894,0.004967615,-0.023264352,-0.0011582887,0.047683474,-0.0054710656,-0.07289121,0.035150014,-0.008294615,0.0038550945,-0.005189415,-0.018194638,0.07542607,-0.057963725,-0.026883565,0.0042036376,-0.0049288883,0.0060977386,0.036868084,0.03979725,-0.009414176,-0.039600097,-0.010808348,0.01304043,-0.029545164,-0.059259318,-0.029657824,0.009794405,0.02353192,-0.028657963,0.012139147,0.0030717535,-0.047429986,0.0032266614,0.04295174,0.02991131,0.035206344,0.07418681,-0.03140406,-0.04058587,0.0059041036,0.0040276055,0.026263932,0.013998042,-0.061287202,0.0064216373,0.010146468,-0.017786246,0.0010095419,-0.021827932,-0.021011146,-0.0015191537,0.033319283,0.04050138,0.021151971,-0.036868084,-0.03224901,0.005650618,0.038755145,-0.018039731,0.0024785267,0.0027320122,0.00504859,0.03974092,0.00654838,-0.0052246214,-0.02030702,-0.040163398,0.0125405,-0.009618374,0.013871299,-0.04883824,0.011660341,-0.0042775706,-0.007569364,0.036727257,-0.013068595,0.007520075,-0.036839917,-0.035854142,0.0100690145,-0.023644581,-0.014124786,-0.03289681,0.05954097,-0.019504314,0.02236307,-0.005351364,0.04455715,-0.01065344,0.008963536,-0.011526557,0.024672605,0.032164514,-0.00087751815,0.025714714,-0.022278575,0.044106506,0.0601606,0.019659223,-0.07841157,-0.029038193,-0.025081,0.0135896485,0.0471765,-0.04095202,0.0017541561,0.010343624,0.018462207,-0.0014443402,-0.00621744,-0.020391515,0.028122827,-0.008752297,0.072271585,-0.01059711,0.0038586152,-0.032868642,-0.030981582,0.013146048,0.017884823,-0.028742459,-0.01087876,0.020898486,0.0134277,-0.0059850784,-0.03041828,-0.012441922,0.030108465,0.056724463,-0.014181116,-0.018053813,0.007682024,-0.01359669,0.10561903,0.049542367,-0.012955935,0.033375613,-0.017208861,-0.0074214973,-0.025278155,0.1311366,0.032755982,0.012160271,-0.03053094,-0.00031993765,-0.047204666,-0.0077172304,0.065737285,-0.018081978,0.005865377,-0.0014786664,-0.0024433204,-0.023630498,-0.019631058,-0.06303344,0.053063,-0.002075414,0.021433622,0.03230534,0.028869202,-0.0037001867,0.0077946847,-0.028446727,-0.062639125,-0.04052954,0.077566616,0.026404757,-0.039318446,-0.02125055,-0.013068595,0.021377292,-0.009019866,0.021996923,0.0059639546,-0.019433903,0.0014795467,0.007118723,-0.018152392,-0.017659502,0.03300947,0.016504735,-0.029714154,-0.070694335,-0.023362929,-0.01698354,0.04517678,-0.018800188,-0.0006077495,-0.013026347,-0.033600934,0.0057984847,-0.0006570384,-0.012970017,-0.014012124,0.013160131,0.018828353,0.021095641,0.0101887155,0.016772302,-0.012371509,0.021461787,-0.018236887,-0.00046516382,-0.03968459,0.009252227,-0.009674704,-0.013441782,-0.009780322,-0.005731593,0.03768487,0.017462347,0.002985498,0.021968758,0.00072613085,0.0124560045,-0.006544859,-0.009928189,0.017476428,0.022179997,-0.03267149,0.0038058057,0.012237725,0.02441912,0.0075411987,0.009104361,-0.04129,0.0013017546,-0.021673026,0.009928189,-0.018518537,0.015434461,-0.03208002,0.026728656,0.027038472,0.01947615,-0.0018096061,-0.022179997,0.0098296115,0.04861292,-0.014413477,0.02130688,-0.011167453,-0.008886081,-0.009456424,-0.0084283985,0.0156175345,0.030812591,-0.008794544,-0.0017691188,0.025461229,-0.023151692,0.0043831896,-0.014174074,0.015406296,0.018236887,-0.0052140597,-0.023827653,-0.0031368851,-0.033093963,0.04695118,0.030333785,0.0039043836,0.030390115,-0.0023940313,0.03024929,-0.047908794,0.0074496623,-0.00210886,0.0020630918,-0.0418533,0.03002397,-0.00616111,0.014969737,0.0007758598,0.0077172304,-0.03024929,-0.036980744,-0.02058867,0.00074901496,-0.0197578,0.035994966,-0.014230404,-0.007065913,-0.03058727,-0.0012718291,-0.005516834,-0.011068874,0.00044404002,-0.024052974,-0.011998322,0.041768808,0.013307998,0.036586434,-0.0040592914,-0.015490791,0.03568515,0.0021792727,0.03312213,0.019081838,0.04866925,0.0015886863,-0.031235069,0.018743858,-0.0000062539393,0.0113223605,0.017363768,0.009738075,0.009118443,-0.030981582,-0.008724132,-0.016025927,0.0008700368,-0.012505293,0.0047317324,0.0050908374,-0.01903959,0.006210399,-0.022743298,0.012568665,0.012357427,-0.0076890653,0.025897786,-0.0016987061,0.0143360235,0.0024450806,0.037206065,0.034924693,0.022982702,-0.0016001284,-0.062019493,-0.0020630918,-0.019771883,-0.021391375,-0.008886081,0.015716111,-0.02647517,0.024714854,-0.017335603,-0.018307298,0.019180415,-0.022151832,0.013941712,-0.02979865,0.003085836,0.001432018,0.0006592388,0.025433064,0.032333504,-0.010836513,0.00070764753,-0.040980183,-0.010984379,0.027503196,-0.008414316,-0.018293217,-0.01515281,0.011188576,-0.032108184,-0.027658103,-0.0032724296,-0.018997343,0.022729216,-0.0094353,0.039825417,0.011026626,0.020602752,-0.018786104,0.0015068315,-0.010245046,-0.018490372,0.061850503,0.010280252,-0.011484309,-0.0044465614,0.016124506,0.038388997,-0.024602193,0.007998881,0.010850595,0.047570813,-0.011758919,0.009759199,-0.0049042436,-0.0016071696,0.00022499054,-0.022884123,-0.008083376,0.008132665,0.022672886,-0.012913687,0.008597389,-0.034981024,0.03047461,-0.01520914,0.0042212405,0.0052844724,-0.00821012,-0.031319562,0.017912988,0.0027003265,0.005076755,-0.01504015,0.019222664,-0.011068874,-0.014490931,0.0115617635,0.012639077,0.03213635,0.009033948,-0.047852464,0.0019891583,0.0057984847,0.004428958,-0.010618233,0.016518816,-0.027601773,0.012737655,0.006139986,0.03258699,-0.00020551703,-0.0050626723,-0.021518117,-0.047289163,-0.0042810915,-0.018152392,-0.02991131,-0.006808907,-0.022743298,0.014885242,0.013061553,-0.056808956,-0.048979066,-0.0048795994,-0.019884543,0.04145899,-0.0005593408,-0.026432922,0.010132385,-0.034051575,0.0029133249,-0.012251807,0.021011146,0.010639357,-0.019405738,-0.014399394,-0.0300803,0.014019166,0.01520914,-0.03146039,0.0031580091,0.0015807649,-0.009167732,-0.13384044,0.012617954,-0.020335184,-0.0026017488,0.006527256,-0.0003153168,0.0032777106,0.008724132,0.027953837,-0.00970991,0.013329122,-0.013730474,0.0030224647,-0.0072877132,0.019800048,-0.037882026,0.06523032,0.015180975,-0.024024809,0.0083086975,-0.027672186,0.012047611,0.011047751,0.04055771,-0.018687528,0.021546282,-0.050922457,0.02679907,0.042641923,-0.003735393,-0.012505293,-0.02979865,0.034952857,-0.01687088,0.07294755,-0.0019363489,-0.016631477,-0.006308977,0.0013721673,-0.013293915,0.0011406855,-0.028488973,0.009604291,-0.004918326,0.0430644,0.02003945,0.014103661,0.020391515,0.0050626723,-0.0018448124,-0.007682024,-0.0056682215,-0.002980217,-0.011864538,-0.023151692,0.0012005364,-0.010364748,-0.0034097345,-0.03757221,-0.02113789,0.010414037,0.016279414,0.015223223,-0.00047000468,0.025404898,-0.023968479,-0.024137469,-0.0011195617,0.023377012,-0.029094523,0.025489394,-0.025447145,0.032418,0.03258699,0.03134773,0.0069391704,0.023123527,-0.04438816,0.019180415,-0.03996624,0.029404338,-0.007682024,0.017321521,-0.041656148,0.009695827,0.03729056,-0.009914107,0.028404478,0.009759199,-0.0025735837,0.017546842,-0.019898625,-0.013012265,0.018405877,0.00014467607,0.021320961,-0.039487436,0.05266869,-0.015603452,-0.011554722,0.054076944,-0.035065517,-0.038417164,-0.034671206,-0.056583636,0.011167453,0.0045275358,0.045796413,-0.018307298,0.033826254,-0.014167033,-0.027432783,-0.005699907,0.058752347,0.022348987,0.01237855,0.03957193,-0.0062280023,-0.023377012,0.008590348,0.020391515,-0.005376009,-0.025883704,0.0056118914,-0.013800886,-0.0051154816,0.033600934,-0.016209,-0.003047109,-0.01970147,-0.04368403,0.0027232107,0.0015825252,-0.0021176615,-0.007094078,-0.013420658,0.010892843,-0.05038732,-0.005678783,0.008034088,0.022785546,-0.008639636,0.010899884,-0.035009187,0.023095362,0.024771184,-0.030784426,0.041768808,-0.010301376,-0.0015499593,-0.041036513,0.0076890653,-0.046218887,0.04517678,-0.009477547,0.014688087,-0.017729916,-0.009632456,-0.023165774,0.03729056,0.0011134007,0.035178177,0.007259548,-0.009801446,-0.056132995,-0.0069955005,-0.036896247,0.035347167,-0.034502216,0.014138868,0.009393052,0.0052527864,0.024841595,-0.0068898816,-0.0028446727,-0.01065344,-0.012118024,0.014392354,0.035037354,-0.024376873,0.0062596877,0.0033727677,0.042641923,0.018772023,0.046049897,0.06100555,-0.01604001,0.0053302404,-0.058639687,0.007682024,-0.013857217,0.023503754,0.018546702,0.003988879,0.004833831,-0.0103225,0.0036262535,0.02003945,-0.019321242,-0.0318547,0.053851623,0.009153649,-0.019335324,0.016913127,0.017180696,0.015279553,-0.0448388,0.02503875,-0.0043550245,0.013934671,-0.019771883,0.018039731,0.023391094,0.0019169854,-0.0037811613,-0.006847634,-0.03255883,0.013723433,-0.034727536,0.016730055,0.017448263,-0.0103084175,-0.02236307,-0.0033111565,-0.012723573,0.017448263,-0.012160271,0.0067525767,-0.02985498,0.0004145547,-0.023771323,-0.017321521,0.0050697136,-0.001365126,0.0068581956,-0.011364608,0.0037987644,-0.020321101,0.03278415,0.036530104,-0.010998461,-0.017997483,0.014533179,-0.021743437,0.00743558,-0.008357986,0.02358825,0.00970991,0.004700047,0.008836792,0.015378131,-0.026221685,0.015730195,0.006847634,-0.011639217,0.010238005,-0.0133220805,0.003946631,0.0061223833,0.011237865,0.0007054471,0.00849177,0.024559945,-0.00088323915,0.0056118914,-0.012913687,-0.010829471,-0.020292936,0.0051542087,0.015462626,0.006981418,-0.008005923,0.003096398,-0.0053020753,-0.01004789,0.026066776,-0.028728377,0.01992679,-0.009097319,-0.0056893453,-0.02702439,-0.0066786436,0.0046930057,0.019490233,-0.0062737702,-0.001953952,-0.003413255,-0.008984659,0.028728377,-0.016715972,0.007171532,0.00849177,-0.0010192237,-0.019011425,-0.04238844,0.006999021,-0.008710049,-0.04993668,0.0098296115,-0.005537958,-0.019771883,0.011533598,0.009949313,-0.02253206,-0.017406017,0.015842855,-0.0046648406,-0.022151832,-0.0032794708,0.00843544,0.03402341,-0.010470367,0.0110829575,-0.003707228,0.018152392,0.006977897,-0.0039501516,-0.031657543,0.030784426,-0.010012684,0.009505712,0.016406156,0.009421217,0.038642485,0.029629659,0.007682024,0.026982142,-0.025010586,-0.0068511544,0.017800327,0.008857916,-0.020433761,-0.007970716,-0.0027003265,-0.04089569,0.007900303,0.007259548,0.031037914,0.03002397,-0.02025069,-0.046697695,0.0009479308,-0.005287993,0.018419959,0.0053372816,-0.0039501516,-0.007984798,-0.022123666,0.0400789,-0.019997204,0.059315648,0.014659922,0.028742459,-0.014533179,-0.0020595712,0.0025154932,-0.019081838,0.031122409,-0.0031122407,0.005615412,0.020616835,0.0377412,-0.008611471,-0.0070271865,0.035938635,0.021884263,-0.0042212405,0.038417164,-0.02553164,-0.009723992,0.027460948,-0.0054921894,-0.01259683,-0.012688367,-0.038220007,0.0110547915,0.0075341575,-0.0040029613,0.03224901,-0.028348148,-0.04036055,-0.014688087,0.025686549,-0.014955655,-0.008442481,-0.010449243,-0.01881427,-0.004312777,0.014561344,0.009350805,-0.006006202,-0.044050176,-0.022926372,-0.021518117,-0.02602453,0.008984659,0.008583306,-0.01049149,0.0066117514,-0.02170119,0.009702869,-0.028503057,0.017476428,-0.011885662,0.030840756,-0.014631757,0.026573747,0.04174064,0.015420378,0.0012110983,0.0020349268,0.0038867805,-0.01687088,0.0032829915,0.025489394,0.005055631,0.017631337,0.03047461,0.015195058,0.028207323,0.009745116,0.013779763,-0.015955515,0.011963116,0.0075411987,0.02663008,0.02230674,0.006499091,-0.004816228,0.05078163,0.019490233,0.019997204,0.0038621358,0.028869202,-0.017138448,-0.022658803,-0.0074214973,-0.015406296,-0.0069145258,0.0138290515,-0.0031738519,0.014272652,0.010829471,-0.0035135932,-0.02003945,-0.000029375293,-0.0134277,-0.036192123,-0.0094353,-0.031235069,-0.014955655,-0.01270949,0.0025207743,0.043205224,0.009850735,-0.009343764,-0.002225041,-0.008336863,0.025264073,0.003557601,-0.014314899,-0.032051854,0.008174913,0.011822291,0.025658384,0.0038445326,0.009892982,0.0073510846,-0.017335603,-0.03351644,0.010737935,-0.00012168193,-0.012646119,-0.036642764,0.009843694,-0.026770905,0.037149735,-0.053851623,-0.0039536725,-0.03047461,0.010512615,0.010730893,0.018743858,-0.039656427,0.030868921,0.007865097,-0.004189555,-0.01282215,-0.0047141295,0.05348548,-0.003346363,0.00074769475,-0.003900863,-0.03191103,0.002825309,-0.008646678,0.02026477,-0.036361113,-0.012991141,0.019250829,-0.011674424,-0.034474052,-0.0013976919,-0.0142163215,0.033093963,0.008660761,-0.0014091339,0.0074285385,0.03740322,-0.00048056658,-0.0330658,-0.0024908488,0.029319843,-0.008414316,-0.0025771044,-0.025602054,-0.009519795,-0.03146039,-0.00682651,0.009942272,-0.011512474,-0.0048232693,0.03889597,0.0071820943,-0.0036755423,-0.03289681,0.005728072,0.01909592,-0.03751588,-0.000604669,-0.011287154,-0.022672886,0.021222385,0.035910472,-0.013491071,0.01326575,-0.028362231,-0.005411215,0.003869177,0.0011609292,-0.0023465028,-0.0015085918,-0.018772023,0.029066358,0.017110283,-0.021236466,-0.032051854,0.010836513,-0.005516834,0.015547122,-0.030728096,0.038163677,0.0029203661,-0.01359669,-0.0042318027,-0.012040569,0.021518117,-0.0028112265,0.009843694,-0.0060132435,-0.028953698,0.021067476,0.0051647704,-0.0070729544,0.034445886,0.006220961,-0.029066358,0.057851065,-0.020433761,-0.00638291,0.0032477851,-0.017617254,0.0008000642,-0.026489252,-0.0009972197,-0.0016080497,0.012512335,-0.00090304273,-0.0083086975,-0.013920588,-0.012589789,0.0020507695,-0.028066497,-0.038276337,0.029038193,-0.014744417,-0.0037037074,0.026461087,-0.010660481,-0.009181814,0.026334345,-0.001964514,0.016321661,0.01642024,0.011068874,0.0312914,0.04207862,0.035009187,0.014314899,0.056189325,-0.006682164,0.012885522,0.010238005,0.010083097,-0.018067896,-0.005728072,-0.01492749,0.008590348,0.00033534042,-0.021151971,0.0071680117,0.024292378,0.0077665197,0.011251948,0.004921847,-0.01487116,-0.0053865705,0.00064075546,-0.0073722084,0.005921707,-0.0074074147,0.0003069553,-0.019349407,0.011463186,-0.010730893,-0.0019609933,0.049204387,-0.011575846,0.0056858244,-0.016392075,-0.004101539,0.018828353,0.020166194,-0.018687528,0.038557988,0.019405738,0.008027046,0.0028094663,-0.013103801,0.012223642,0.025883704,-0.0052140597,0.0014478609,-0.028925532,-0.0051964563,-0.004650758,0.019504314,0.007703148,0.0037565168,0.011195618,0.04205046,-0.029291678,0.004400793,0.0044676852,-0.015011985,0.011913827,-0.0019169854,-0.009723992,-0.021151971,-0.0032090582,0.021687107,-0.0052915136,-0.024221964,-0.009667662,0.007231383,0.019025508,0.011033668,0.028826954,0.029995805,0.037487715,0.018180557,0.006059012,0.0061012595,0.024841595,-0.011822291,0.011653299,-0.0008418717,0.042867243,0.013448823,0.011702589,-0.025658384,0.0036051297,-0.023024948,-0.04706384,0.02025069,0.0066082305,-0.0027003265,-0.0002891321,0.010315458,-0.034699373,-0.02341926,-0.034614876,-0.045148615,-0.03934661,-0.030840756,0.028531222,-0.022081418,-0.008442481,0.0025295757,-0.009132526,0.008984659,0.004590907,0.01037883,0.021926511,0.0059041036,0.05151392,0.017448263,-0.0014645839,0.0006059892,-0.04199413,0.013991001,-0.032981303,0.011125205,-0.0037213105,0.021151971,-0.017420098,0.018476289,-0.037093405,-0.008231243,0.008076335,0.00038748982,0.0016362148,-0.013744556,0.014195198,0.00754824,-0.000837911,-0.017504593,0.02619352,-0.027320122,-0.009477547,0.035797812,0.005970996,-0.026235767,0.006875799,0.0026175918,-0.0146035915,-0.047401823,0.02225041,0.029460669]},{"id":"interface-TenorMediaResult","type":"interface","source":"main","text":"Interface: TenorMediaResult\nDescription: Result for embed media: url and optional flags.\nProperties: flags: number, url: string","meta":{"url":"/docs/typedefs/TenorMediaResult"},"embedding":[-0.021145659,-0.011891541,-0.054229125,0.02093744,-0.009838283,-0.0075536733,-0.008750925,-0.014933832,0.02963631,0.0021371227,0.0054107667,-0.033499904,0.013591984,-0.036345545,0.00031268795,-0.0251712,-0.0361836,0.0302841,0.035813432,0.046178047,0.0031319403,-0.018461963,0.018045528,0.07148805,-0.026027204,0.027600404,-0.008681519,0.033684988,0.022360262,0.042152505,0.028201923,-0.036044788,0.036993332,-0.02757727,-0.019063482,-0.0072124274,0.04108828,-0.008964926,-0.040718116,0.011428835,0.017721634,0.002391611,-0.016136866,0.024962982,-0.02034749,0.023875622,0.004288705,-0.009930825,0.022869237,0.050851375,-0.04654821,-0.025286876,-0.012504626,0.040926334,-0.027739216,0.020162407,-0.013360632,-0.0063332864,0.024361463,-0.03130205,-0.005399199,-0.035558946,-0.0028933575,-0.030793075,0.03317601,0.02049787,-0.02152739,0.05048121,0.030955022,0.011064454,0.06163242,0.018045528,-0.0067265863,0.015049508,-0.01783731,0.017328335,-0.0015789837,0.029428093,0.0018508234,-0.08347214,0.0031521837,0.02526374,-0.026189152,-0.010954562,0.000978189,0.022973346,-0.05210068,-0.03544327,-0.020902738,-0.010919859,-0.09388302,-0.006911669,-0.027484728,-0.007171941,-0.06158615,-0.03685452,-0.019526187,0.0015196996,0.00003072656,0.06579677,0.04374884,-0.022441234,-0.04830649,-0.013522578,-0.00024328206,-0.040440492,0.03803442,-0.025425687,-0.026628722,-0.028086245,0.007241347,0.010607532,-0.038821023,0.03990838,0.04004719,-0.024731629,-0.023424484,-0.005040602,-0.0067844247,0.0071835085,-0.057282984,-0.0015009021,0.059735328,0.0021168792,0.011729593,-0.0073107528,0.0015182536,-0.0089822775,-0.02561077,-0.028201923,0.04182861,0.032690167,0.0011321834,0.023921894,-0.027739216,-0.004441976,0.015651025,0.013210252,-0.036229867,0.02841014,-0.015292428,-0.022961779,0.07903016,-0.009508605,0.005752012,0.009768877,-0.058254667,0.042638347,-0.0014596924,-0.006472098,-0.0033719689,-0.018172773,-0.055894867,0.02044003,-0.031325188,-0.05103646,0.0122617055,-0.03544327,-0.030931886,-0.02403757,0.02993707,-0.030793075,0.00071936304,-0.008207245,0.005266171,0.057421796,0.04222191,0.0048844386,-0.031140104,0.013013602,0.007466916,-0.012030353,-0.06232648,-0.023517026,-0.050018504,-0.015789837,0.028572086,-0.031533405,0.0072934013,0.0076288627,-0.007877567,0.010711641,-0.00170189,-0.06801776,-0.029289281,0.039885245,-0.02020868,0.04078752,0.046131775,-0.02683694,-0.018635478,0.011914676,0.032551356,0.022383396,-0.023378214,0.021226631,0.018542938,0.008629465,0.049416985,-0.039098646,-0.010364612,0.026998887,0.04698778,-0.0017814175,-0.025495093,-0.00004667726,-0.017316766,-0.02963631,-0.043193594,0.041365903,0.05219322,0.043679435,-0.007357023,-0.024361463,-0.005928419,0.034217097,-0.008421247,-0.011741161,-0.020972144,0.007559457,-0.010451369,0.023459187,0.040764388,-0.01602119,0.0072124274,0.047890056,-0.010555478,0.024662223,-0.030978158,-0.0003238941,-0.01042245,0.03194984,-0.0075074024,-0.009369793,0.0020069866,0.023586432,-0.0028268436,0.017976122,0.021851284,-0.023759946,-0.015893945,-0.014343882,0.012932628,0.029543769,-0.03734036,0.012689709,0.026004069,-0.015176753,0.01868175,0.033499904,0.018265314,0.0048960065,0.036299273,0.0052546035,0.033939473,-0.015801406,-0.05598741,0.025703311,-0.0049914396,0.013430038,0.0047253836,-0.039838973,-0.027299646,-0.018982507,0.023366647,-0.01440172,-0.023597999,0.016194705,-0.010809965,-0.014124096,0.0016079028,-0.04747362,0.001733701,0.015801406,-0.012597167,0.0030885616,0.038011286,-0.0015009021,-0.039283726,-0.008080001,-0.018531369,-0.04974088,-0.05136035,0.05904127,-0.014783452,-0.03033037,0.016171569,0.008936007,0.05048121,0.016680546,0.022082638,-0.005561146,0.075976305,-0.06241902,-0.06556542,0.016298814,0.056357574,-0.03833518,0.06917453,0.005887932,0.02152739,-0.02723024,0.024500275,-0.023898758,0.0104571525,0.013522578,0.038959835,0.010451369,0.029404957,0.013163982,0.010561261,0.0072239954,-0.07560614,0.030839346,-0.07357023,0.006385341,0.04606237,0.025726445,-0.031417727,-0.016483895,0.022441234,0.0110586705,-0.009751526,0.0023973947,0.02433833,0.014262908,-0.01074056,-0.003982162,-0.015940217,-0.00031033828,-0.006570423,-0.0045692204,0.00892444,0.015732,0.013314361,-0.0019014319,-0.043771975,-0.011515592,-0.025842123,0.04064871,0.029428093,-0.00037594853,0.011272672,0.01783731,0.024060706,0.004817925,-0.045831017,-0.00060115615,-0.00024780066,-0.038497128,-0.0113189425,0.010133258,-0.026559316,0.0012962994,-0.0055177673,-0.01868175,0.0107521275,-0.054969456,-0.063020535,0.0014596924,-0.039445676,0.03641495,-0.026767533,-0.013406903,-0.020590411,-0.028109381,-0.0558486,0.021180362,0.01838099,-0.018276881,0.036391817,0.009346658,-0.012597167,0.0022123123,-0.00857741,0.018265314,-0.005526443,0.018843696,-0.0134647405,-0.00052849686,0.017814176,-0.016588004,-0.040232275,-0.027415322,-0.0045981393,-0.015859243,0.03435591,0.013904311,0.0073454557,0.027114563,0.023331944,0.031024428,-0.037756797,-0.023621134,0.010850453,0.041319635,0.017432444,0.04913936,-0.015847676,-0.021781879,0.014956967,-0.020775493,-0.022036366,0.035628352,0.015199888,-0.021249767,0.034679804,0.002228218,0.039006103,-0.017409308,0.0030307234,-0.031834163,0.028225057,-0.018450396,0.014413288,0.019699702,-0.011417267,-0.05450675,0.04414214,0.008797195,-0.006350638,0.07222839,0.000015510135,0.02197853,0.024315193,-0.011122292,0.017363038,-0.014320746,0.027785487,-0.029081063,-0.049093094,0.029543769,0.034957428,0.016252544,-0.016391356,0.0041961637,0.0027747892,0.006605126,-0.00007776531,0.010619099,-0.00517363,0.023470756,0.00054187194,-0.0061655557,-0.02732278,-0.0018349179,0.025101794,0.048260223,0.00783708,-0.027785487,-0.0133722,0.010717425,-0.0767629,0.06246529,-0.011579215,0.0051504946,0.023898758,-0.005462821,-0.00017035168,0.008276651,-0.044072732,-0.008756708,0.023470756,0.033430498,0.029034793,-0.013430038,-0.015500646,0.01381177,0.0060498794,-0.005433902,-0.002518855,0.03498056,-0.017143251,0.022198314,-0.029751986,-0.0361836,0.027438458,-0.078336105,-0.025124928,-0.055524703,0.032250598,-0.033523038,-0.03970016,-0.018797426,-0.0409032,0.115121216,0.03081621,-0.014563667,-0.016044326,-0.045298904,0.013534146,0.0012717182,-0.024454005,-0.010960345,-0.014262908,-0.0028629925,-0.020995278,0.017779473,0.030168422,0.0073454557,0.011162779,-0.015893945,-0.027901163,0.013360632,0.049093094,0.0072876173,-0.024407735,-0.024153246,-0.0534888,-0.020173976,-0.0030075882,0.01282852,-0.0110702375,-0.004193272,-0.029451229,0.00033636548,-0.037132144,0.01160235,-0.027854893,0.017039143,-0.044905603,-0.023875622,0.022337126,-0.010127475,0.01656487,0.01843883,-0.01243522,-0.0051533864,-0.0038404586,-0.020902738,-0.01749028,-0.0075189704,-0.015662594,-0.011937811,-0.01440172,0.0034182395,0.015593188,0.030978158,-0.001110494,-0.060614467,0.01499167,-0.01961873,-0.014274476,-0.01597492,-0.058948725,0.013002034,0.01754812,-0.005075305,0.011388348,-0.005665255,0.014170367,-0.05381269,0.037617985,-0.0037537012,0.016634276,0.002521747,0.03317601,-0.01093721,-0.012724412,0.012307976,0.0077792425,-0.048722927,0.0070157778,0.013210252,-0.0024523411,0.012550897,0.013083008,-0.010532342,0.02487044,-0.004803465,0.015512214,0.019896353,0.0060498794,0.062002584,0.016391356,0.008889737,-0.01558162,-0.002024338,-0.018473532,0.010509207,-0.007432213,-0.026466776,0.031278916,0.006975291,0.040926334,0.0070793997,0.0092541175,0.02113409,0.023227835,0.042707752,0.005208333,0.035905976,0.017906716,-0.0064200438,-0.01951462,0.024060706,0.058069587,-0.0036148895,-0.004222191,0.026119746,0.01779104,-0.014956967,0.0049654124,0.023852488,0.05751434,0.015616323,-0.0037537012,-0.0116370525,-0.048537847,0.0036524844,-0.0021718256,0.018739587,-0.02373681,-0.0058734724,-0.012134462,0.02732278,-0.028965387,0.05122154,-0.028525816,-0.0072586983,-0.0075131864,-0.0047051404,-0.013256523,0.014737181,-0.06852674,-0.0027386404,-0.04300851,-0.017409308,0.0043147323,0.029867664,0.01278225,0.0053529283,-0.018473532,-0.022290856,0.0073396717,-0.0369702,-0.0030654264,-0.004051568,-0.04305478,-0.017999258,0.06329816,-0.008045298,0.03252822,0.006674532,-0.015084211,0.00281383,-0.01078683,0.020868035,-0.035420135,0.024731629,-0.024130112,-0.017386172,0.0080857845,-0.027785487,0.008855034,-0.047103457,-0.033453632,0.051869325,-0.054923184,0.00951439,-0.0026056124,0.015697297,0.010191097,-0.03333796,-0.024592817,0.024801034,-0.013233388,-0.013846473,-0.045877285,-0.027137699,0.032019246,0.0065530716,-0.011579215,-0.0145521,0.06612067,-0.04462798,0.01484129,0.010006014,0.011926244,0.036692575,0.01892467,0.036785115,-0.055200808,-0.025818987,0.00150524,-0.009450767,-0.013094576,0.010341476,-0.010300989,0.020012029,0.00079744466,0.021735609,0.026883211,0.012458355,-0.008276651,0.042291317,0.01715482,-0.020012029,0.016125299,0.0017235794,0.014702478,0.028780304,-0.010648019,-0.016877197,0.013568849,0.019745972,0.02797057,-0.0095953625,0.022869237,0.027253374,-0.03248195,-0.03933,-0.03076994,-0.014019988,0.016032757,0.007171941,0.008785628,-0.00189854,0.017420875,0.025379417,-0.0011365212,-0.009121089,-0.023517026,0.02875717,0.020069867,0.0019390268,0.0013707661,0.002385827,0.015153617,0.0026981535,0.029775122,-0.0075421054,-0.038751617,0.021700906,-0.03120951,0.019051913,-0.0039705946,0.01152716,-0.005728877,-0.022996482,0.006258097,0.027808622,0.008363408,0.015315564,0.001801661,0.016379787,-0.024777899,0.017895149,-0.016437626,0.003967703,-0.033846933,0.0057057417,0.010399315,-0.0026692345,0.009815148,-0.014019988,0.019526187,-0.022834534,-0.014424855,0.01715482,-0.020093001,0.03833518,0.0015139157,-0.007825512,-0.008247732,-0.008560059,-0.0015833216,-0.027091429,0.0040400005,0.033754393,-0.026258558,-0.012735979,-0.030052746,-0.014274476,0.015685728,-0.0049596285,-0.040718116,-0.03204238,-0.036900792,-0.005040602,-0.026327964,0.0034095638,-0.021122523,-0.010781047,0.011816351,-0.035373863,-0.018311584,-0.029358687,-0.013476308,-0.004852628,-0.037294094,0.02285767,0.02959004,-0.07014621,0.011903108,0.012724412,-0.003603322,-0.058994997,0.0042395424,0.026559316,-0.023482323,-0.03671571,-0.0024422193,-0.00093481044,0.022533776,-0.033638716,-0.024199517,0.023574864,0.0016961062,0.01990792,-0.0095722275,0.024014434,0.004320516,0.02993707,-0.01518832,0.06727743,-0.023123726,0.008022163,0.028641492,-0.016171569,0.040371086,0.018219043,0.004297381,0.011984082,0.027207104,0.025495093,-0.04374884,0.017050711,0.023216266,-0.015419673,0.01641449,0.018635478,-0.013580417,0.007166157,-0.0145521,-0.010769479,0.011914676,0.014170367,-0.027461592,-0.021180362,-0.0169119,0.017929852,-0.0128747905,0.033291686,0.0034442667,0.009537525,0.004948061,-0.02020868,-0.012122894,-0.015026373,0.025286876,-0.0122270025,0.0026591127,-0.022892373,-0.018519802,-0.03886729,-0.025703311,-0.025310012,0.011480889,0.0012485828,-0.049555797,0.029890798,-0.011162779,-0.026559316,0.0021168792,-0.008016379,-0.025934663,0.008288219,0.0267444,0.037918746,0.05668147,-0.025286876,0.019468348,-0.028201923,0.0005104224,0.0043407595,-0.0021038656,-0.0043985974,0.015893945,0.020752357,0.0053240093,0.0192717,-0.023227835,-0.026513046,0.019572457,-0.004502706,-0.016888764,0.046270587,-0.032759573,0.0031348323,0.027207104,-0.005402091,-0.01145197,-0.0080395145,0.004227975,0.029751986,-0.006969507,0.040440492,-0.020532573,0.00033419655,-0.04379511,-0.0012594275,-0.025032388,-0.032458816,0.020879602,0.026605587,0.01902878,-0.027762352,-0.033846933,0.0063390704,0.01754812,0.012169165,-0.012400517,0.03262076,-0.01396215,0.0014481248,0.018704884,0.009502822,0.0056507955,-0.037826203,-0.03498056,-0.005853229,0.011810567,-0.0028355194,-0.035720892,-0.0122617055,-0.018311584,-0.01892467,0.019838514,0.0069579394,-0.014378585,0.017929852,-0.009774662,-0.004193272,0.011185914,-0.05311863,-0.011879973,-0.011914676,0.00833449,0.022950212,-0.014910696,-0.010538126,0.023759946,-0.042939104,0.042707752,0.0116601875,-0.019630296,0.003632241,-0.00065754843,-0.030955022,-0.011504024,-0.015396537,0.015072644,-0.019977326,-0.0014604154,-0.011370997,0.037479173,-0.034540992,0.03548954,0.011984082,-0.034217097,0.025703311,0.00058814255,-0.03111697,-0.01632195,0.012319543,0.05839348,0.008461733,0.022499073,0.016773088,-0.04314732,-0.0035801865,0.005668147,0.030746805,-0.015812973,0.023968164,0.008097352,0.02310059,0.027600404,-0.0140315555,-0.018045528,0.045992963,-0.005335577,-0.0028297356,-0.008594762,-0.0022990697,-0.0017149036,-0.001242076,0.006772857,-0.0039098645,0.0101853125,0.00568839,0.014737181,-0.0025940447,-0.0030856698,0.014725614,0.0008372084,0.027692946,-0.052655928,-0.02275356,0.010399315,-0.021689337,-0.030492317,-0.0034760777,-0.006061447,0.0083691925,-0.01744401,0.016715249,0.034679804,-0.021180362,-0.0011639944,0.017073845,0.022475937,-0.050990187,0.0027617756,-0.041666664,0.0038404586,0.014818155,0.029358687,-0.024130112,0.02196696,-0.013106143,0.0034818617,0.013557281,-0.04310105,0.01098348,-0.0064026923,0.014216637,0.01690033,0.0031724272,-0.034540992,0.043725703,0.030746805,-0.022429667,-0.01425134,0.04122709,-0.010659587,0.020868035,0.005433902,-0.0035396998,-0.027507864,-0.014517397,-0.009456551,-0.020359058,0.013256523,-0.016194705,-0.008791411,-0.046663888,-0.041805476,0.016229408,0.014852858,0.024939846,-0.005407875,-0.027854893,-0.024639087,0.0035946462,0.039098646,0.011139643,0.014980102,0.015361834,-0.01381177,0.010717425,-0.0060036085,0.011480889,-0.023181563,-0.0021674877,0.013279658,0.0034587262,0.00018282305,0.013638255,0.03889043,-0.020914305,0.020081434,-0.0072934013,0.030353505,0.00798746,0.0326439,-0.05228576,-0.009508605,0.016345084,-0.034101423,-0.017212657,0.0243846,-0.034240235,-0.017952988,0.03181103,-0.008178326,0.028595222,0.01307144,0.005202549,-0.02565704,0.021099387,-0.020972144,0.009965528,-0.03155654,0.06380714,0.03331482,-0.002001203,0.02850268,-0.051545434,-0.0369702,-0.027183969,0.036692575,0.004256894,0.025101794,-0.0054599294,-0.012550897,-0.029705716,-0.037965015,-0.02433833,-0.02340135,0.03164908,0.0021848392,0.0035223484,-0.051776785,-0.002261475,0.015616323,0.011741161,-0.008236164,-0.030931886,0.0077329716,-0.012597167,0.025055522,-0.0067902086,-0.020648248,0.024014434,-0.005821418,0.01606746,-0.041990556,0.008137839,0.013048305,-0.0043407595,0.023355078,-0.0073165363,-0.0034298073,-0.039885245,0.0016440518,-0.00928882,0.016507031,0.002588261,0.019456781,0.00094204023,-0.007131454,0.026674993,-0.0024378814,0.009207847,-0.018265314,0.038913563,0.0020142165,0.026374234,0.012481491,-0.0008372084,0.025009252,0.028548952,0.0037074308,-0.010220015,0.0052748467,-0.017351469,0.016645843,-0.024523411,-0.016877197,0.010867804,0.019584026,-0.017895149,0.047612432,0.01199565,0.0004514997,0.0122385705,-0.004803465,0.010567045,0.044211544,-0.010642235,0.019699702,-0.019722838,0.020856466,0.0035888623,0.022418099,-0.019051913,0.027854893,0.016946603,0.01754812,-0.027438458,0.009618498,-0.008750925,0.013823338,0.02369054,-0.020902738,0.02369054,-0.022591613,-0.015836108,-0.007536322,0.019722838,-0.050111044,-0.00064995716,-0.009728391,0.037641123,-0.041805476,-0.0014553545,0.011052886,-0.032921523,0.0006152542,0.024662223,0.0122617055,0.04182861,-0.013823338,-0.022591613,0.0026648967,-0.020243382,0.040926334,-0.025934663,0.031533405,0.05760688,0.041759204,0.02074079,-0.019236997,-0.005338469,0.037432905,-0.002886128,-0.002066271,-0.0047803298,-0.01661114,-0.0031984544,0.0044680033,0.023436053,-0.02561077,-0.016379787,0.00056862214,-0.011428835,-0.01990792,-0.011689107,0.03951508,-0.0515917,0.03081621,0.008525356,-0.00968212,-0.024731629,0.023424484,-0.0279243,-0.02487044,0.013314361,-0.0140315555,-0.010966129,0.038103826,0.026674993,-0.0056710388,-0.013591984,-0.0025622337,0.013580417,-0.01783731,-0.018288448,0.039283726,-0.018103367,-0.017941419,-0.049416985,0.016252544,0.0072182114,-0.016206272,0.005300874,0.010567045,0.017432444,-0.01862391,0.00026117577,-0.023806216,0.012805385,0.004161461,-0.0022137584,-0.03724782,-0.008351841,0.025402552,0.0068249116,-0.024523411,0.023412917,0.029913934,0.02683694,-0.013476308,0.009126873,0.03666944,0.041065145,-0.023239402,0.007900703,-0.047797516,-0.014309179,-0.0066224774,-0.022256153,-0.05446048,0.012759115,-0.010902507,0.056588925,0.004392814,0.008224596,0.028548952,0.024130112,0.01157343,-0.01990792,0.036808252,-0.017779473,0.018057097,-0.042684615,-0.028317599,0.022117341,0.0049856557,0.032713305,-0.0015760919,-0.009583795,-0.00845595,-0.026906345,-0.00081407314,0.011475106,-0.0059052836,-0.015940217,0.000261718,0.016472328,-0.014748749,-0.015037941,0.018554505,0.015766703,-0.009792013,-0.027901163,-0.026166016,-0.01543124,0.017513417,0.0041759205,-0.022776697,0.019745972,0.00033654622,-0.07116416,-0.024801034,-0.02279983,-0.029011657,-0.011272672,0.039353132,0.003603322,0.009040115,-0.015361834,-0.008808763,-0.0049798717,-0.0022123123,0.018114934,-0.022383396,-0.031741623,-0.022452801,0.015477511,0.0059457705,-0.016715249,0.033870067,0.030515451,0.008473301,0.0049278173,0.010746344,-0.0054165507,-0.015130482,0.028919116,-0.0008017825,0.002226772,0.02683694,0.009658985,-0.014193502,0.02609661,-0.03509624,0.008027947,0.020116137,-0.016449193,0.012735979,-0.00034684865,-0.022406531,0.009745742,0.03509624,0.0057346607,-0.008930223,-0.018369423,-0.013522578,-0.019352673,-0.019375809,0.02222145,-0.0302841,0.0013996853,0.00053138874,0.0243846,-0.004971196,-0.020012029,0.023945028,0.015998054,-0.012481491,0.023412917,0.022834534,0.00034883685,-0.005572714,-0.006315935,-0.03155654,-0.011093373,-0.028919116,-0.04252267,-0.0041788123,0.0015182536,0.027461592,-0.03828891,0.0025116252,-0.03111697,0.006055663,0.023597999,-0.04728854,0.010191097,0.013672958,0.050758835,-0.039168052,-0.010202664,-0.030052746,-0.0003990838,-0.027369052,0.011596566,0.0010757911,0.023216266,-0.006934804,0.0052603874,0.015963351,0.0010461491,0.029219875,0.0037739447,-0.021296037,-0.018600775,0.008866601,0.012354246,-0.038080692,0.033684988,-0.039838973,-0.049787153,-0.041180823,-0.008843466,0.024454005,0.0057144174,0.029381823,-0.035905976,0.01051499,-0.031972975,-0.013210252,0.011642836,-0.020775493,-0.0013845027,-0.02069452,-0.025009252,-0.032759573,0.005856121,0.0101853125,-0.030353505,-0.030885616,-0.000850945,-0.023875622,-0.03685452,0.016102163,0.0035078889,-0.02491671,0.00791227,-0.0008928777,-0.00909217,-0.0152577255,-0.043170456,-0.012388949,-0.035952244,-0.0048613036,0.015870811,-0.006570423,0.0067034513,0.028109381,0.01400842,0.013753932,0.0065588555,-0.0047629783,-0.022244584,0.015269293,-0.006506801,0.019977326,0.06376087,0.0051562786,0.022603182,0.032088652,0.04113455,0.026605587,-0.045252632,0.017409308,-0.02959004,-0.011064454,0.028687764,0.015107347,-0.0019187834,-0.0021067576,0.01278225,-0.035026833,0.015315564,-0.037317228,0.030885616,-0.009022764,0.016622707,0.05362761,-0.015859243,-0.029705716,-0.0008632356,-0.02408384,0.04694151,0.04881547,0.020868035,-0.015327131,-0.01907505,0.038913563,0.04724227,-0.016703682,0.023285672,-0.035744026,0.017409308,-0.004421733,-0.0302841,0.025842123,0.019156022,0.060984634,0.0020344597,0.04867666,0.014517397,-0.014459558,-0.04379511,0.016113732,-0.018785859,-0.008282435,0.0026287476,0.004722492,-0.012735979,0.011000832,-0.010717425,-0.03076994,0.009716823,0.030723669,-0.048630387,-0.00091095216,0.012643438,0.009520173,-0.027068293,0.0016267003,-0.00068285264]},{"id":"interface-UserFlagsResolvable","type":"interface","source":"main","text":"Interface: UserFlagsResolvable","meta":{"url":"/docs/typedefs/UserFlagsResolvable"},"embedding":[-0.026789293,0.019600857,-0.02891381,0.047787093,0.01157571,-0.019149762,-0.046943106,-0.021070559,0.052181643,-0.0049184035,-0.010411591,0.015162652,0.00022679861,0.04365447,0.0065445327,-0.052094333,-0.02207461,0.02821534,-0.014616972,0.026614675,0.041529953,0.030354409,0.050813805,0.018058399,-0.00082124973,0.057682108,-0.0028611866,-0.03439972,-0.012572488,0.010178767,0.052647293,-0.03797939,0.025348695,-0.035185505,0.035767563,-0.0075740507,0.01660325,0.0062098484,-0.03303188,0.008832755,-0.037571948,-0.032217,-0.018058399,-0.001171395,-0.052589085,0.013678401,0.020837734,0.058526095,0.017127104,-0.019324379,-0.0092620235,-0.018640459,0.018334877,0.031722248,-0.032449823,0.02325328,0.0107681025,-0.009909565,-0.03346843,0.034050487,-0.011328335,-0.05302563,-0.015875675,-0.036000386,-0.020779528,0.06949791,-0.014064015,0.01679242,0.020852285,-0.0035214606,0.013009032,0.0025719758,-0.008410761,-0.02002285,0.00422357,0.00718116,0.05753659,0.057769414,-0.0030721833,-0.019324379,-0.039434537,0.0287974,-0.03233341,-0.056809016,-0.023296935,-0.0017034338,-0.077297516,-0.024242783,-0.031402115,-0.06478323,-0.03893979,0.029714143,-0.033934075,-0.020983249,-0.020081056,-0.04676849,-0.012776208,-0.0036560618,-0.02265667,0.011859464,0.05127945,-0.0053476724,-0.012230528,0.0030448993,0.026149027,-0.010324283,0.04109341,-0.00047292342,-0.024286438,0.02470843,-0.044993207,0.020954145,-0.015089896,0.0054531707,0.020153813,-0.026934808,-0.04257766,0.005856975,0.023398796,0.0029139358,-0.028870156,0.030121585,0.0027884294,0.0047328724,0.01893149,0.002391901,-0.0122596305,0.00605342,-0.046128225,0.0032959124,0.043508954,0.0037288193,0.030703643,0.017054347,-0.06222217,0.007450363,-0.043567162,0.010506175,-0.041559055,-0.026832948,-0.055062838,-0.0043254304,0.013249132,0.0049329554,0.0034141433,0.023544312,-0.037950285,0.04548796,0.0008317086,0.038328625,-0.020473946,0.016399529,-0.017374478,0.0019626322,-0.015817469,-0.04318882,0.03527281,-0.02812803,0.0005011169,-0.007901459,-0.009996873,-0.019979196,0.0022954976,-0.01029518,-0.005478636,0.007195712,0.04996982,0.011750328,-0.06804277,-0.018480392,0.024592018,0.0061807455,-0.033934075,-0.02118697,-0.030092482,0.020241123,-0.00067482534,0.034690753,-0.036204107,-0.006442672,0.026047166,0.037222713,0.0024100905,-0.10878694,-0.018305775,-0.009487571,0.00028034355,-0.000492477,0.03681527,-0.0287974,-0.027007565,0.03661155,0.0156283,0.043305233,0.049358655,0.01993554,0.02655647,-0.03876517,-0.04973699,-0.07333951,-0.055412073,-0.019222518,0.082827084,-0.023529759,-0.036873475,-0.028142583,-0.024140922,0.008549,-0.016646905,0.021710822,0.019760923,0.04307241,-0.02889926,-0.0147042805,-0.0025938032,0.020255674,0.018800525,0.015555543,0.0029812364,-0.028098928,0.008781824,0.0054531707,0.03672796,-0.00490749,0.008665413,0.028739193,0.021987302,-0.008119731,-0.02646916,0.020168366,-0.02665833,0.042810485,0.015468234,-0.025377799,-0.008781824,-0.01893149,-0.012223252,-0.021114212,0.011190096,-0.0023464279,-0.07444543,0.0036469672,0.015962984,0.016850626,-0.031285703,-0.015962984,0.009014648,0.019659063,0.006588187,0.00011868559,0.002370074,0.011146441,0.022103714,-0.008199764,0.0005534114,0.012034082,-0.00277024,0.014347769,0.00086354,0.012165045,-0.010273352,-0.03527281,0.029233944,0.0054095164,-0.014042188,-0.02002285,0.013118168,0.036262315,-0.05867161,0.030441718,-0.018436737,-0.01992099,0.0121213915,0.007479466,-0.03987108,-0.052181643,0.03303188,0.050057124,-0.016166706,-0.05497553,-0.025959859,-0.019993747,0.03143122,0.03201328,-0.03047082,0.029175738,0.0023191436,0.025741586,0.023486106,0.032362513,0.014486008,0.014544214,0.050377257,-0.017374478,-0.02050305,0.018131157,0.04735055,-0.047437858,0.02655647,-0.010149664,0.0258871,-0.019018797,-0.04327613,-0.013394646,0.012288733,-0.004510962,0.060999848,-0.0053149317,0.040598657,0.009945944,-0.031169292,-0.08020781,-0.052909218,0.017636405,-0.053665895,-0.06618018,0.05995214,0.0047183204,-0.027123978,0.024592018,0.006169832,0.022729427,0.03623321,-0.026294542,0.05517925,-0.025566967,0.034719855,-0.0019498997,0.027706036,0.026410954,-0.00036174094,0.0013923957,-0.020212019,-0.013001757,0.030441718,0.001754364,-0.053578585,0.014646075,-0.032217,0.024039062,0.032595336,-0.043130618,-0.05090111,-0.004627374,0.008090628,-0.010862688,-0.053986028,-0.0026174493,0.0147042805,0.01084086,-0.018407635,-0.009247472,-0.018320326,0.012747105,-0.031314805,-0.0053767757,0.034428824,-0.020546705,-0.060417786,0.043508954,-0.0060643335,0.02383534,-0.019047901,-0.027487764,-0.0390562,-0.0024046337,-0.010127837,0.044905897,0.019702718,-0.055324767,0.014486008,0.02109966,0.00022509336,0.043014206,-0.0028739192,-0.02939401,-0.032682646,-0.017621854,0.03349753,0.017709164,0.042141117,0.007879632,-0.034719855,-0.06757712,0.0056350646,-0.027225837,-0.019033348,0.005867888,-0.06222217,-0.019717269,0.034719855,-0.015802918,0.03789208,-0.029117532,0.015410028,-0.010557106,0.029015671,0.04118072,0.025188629,-0.04697221,0.011008202,-0.0054422575,0.00083625596,0.04735055,-0.011277405,-0.00605342,-0.02207461,0.024562916,0.03303188,0.0069010444,0.026541919,-0.017476339,0.03972557,0.029161187,0.038648758,-0.019659063,-0.02872464,-0.0439455,0.03448703,0.0040089353,-0.019513547,0.032682646,-0.025799792,-0.022962252,0.015220859,0.009007372,-0.002710215,-0.029583178,0.02157986,-0.05712915,-0.01386757,0.020124711,0.015759263,-0.008141559,-0.017389031,0.0037615602,0.049358655,-0.0013787537,0.037135404,-0.0011568435,-0.010018701,-0.004903852,0.019775474,-0.00805425,0.002910298,-0.014231358,-0.0234279,0.049358655,0.019513547,-0.019746372,-0.038212214,-0.014551491,-0.024431951,0.028157134,0.0006943789,0.005878802,0.016676007,0.030267099,0.007654084,0.0033177398,0.01084086,0.048980314,-0.014260461,0.06693686,-0.0017725534,-0.027764244,-0.032158792,-0.00023737118,-0.013598368,0.00017882416,-0.026789293,-0.017825576,0.020983249,-0.013743882,-0.0020754063,0.0013914863,0.028331751,-0.06763533,0.00020247034,-0.022132816,-0.011204648,0.005758752,0.0123978695,0.005856975,0.057100046,0.10319917,0.048194535,0.012215976,-0.09947398,0.053374864,-0.009305678,-0.021929096,0.07235001,-0.019207967,0.006075247,0.010884515,0.01778192,-0.064142965,0.0032122415,-0.05896264,0.043683574,-0.035301916,0.0134892315,-0.022103714,0.037164506,0.045778986,0.004365447,0.0014615153,-0.08416582,-0.070079975,0.024621122,0.025712483,-0.04333434,-0.0049547823,-0.06943971,-0.0040853308,-0.011452023,0.030179791,-0.006508154,0.020779528,-0.03856145,-0.017840127,-0.008643585,-0.031023776,-0.011415644,0.010608036,-0.02988876,0.016428633,-0.021929096,-0.013067238,0.016035741,-0.011401093,-0.03454524,-0.010913618,0.014515111,0.04560437,-0.0060570575,-0.025028562,0.03876517,-0.013263683,0.007388519,-0.020954145,-0.0037470087,-0.0063371737,-0.030005172,-0.012579763,0.009174715,-0.016646905,0.018102054,-0.018887835,-0.048572876,-0.0073121237,0.0014087661,-0.007966941,0.058380578,-0.017330825,-0.0031449408,-0.003990746,-0.020648565,0.0200083,-0.07141871,-0.050348155,0.013227304,-0.010324283,-0.01766551,0.0037433708,0.00889096,0.0092620235,0.02344245,0.0037833874,0.016734214,0.03556384,-0.026047166,0.05867161,0.030092482,-0.0053476724,0.00668641,-0.008250695,0.038445037,0.027458662,-0.039492745,-0.016748765,0.0030067016,0.020634012,-0.028753744,-0.04746696,0.025625175,0.0033541184,0.0023246005,0.030296203,-0.019047901,-0.011066408,0.058846228,0.017985642,-0.022452949,-0.02373348,0.010673518,0.039085303,-0.022685774,0.007646808,-0.010186043,-0.01078993,-0.01381664,-0.030267099,0.039696466,0.0023155059,-0.0007648627,-0.040424038,-0.0047983536,0.015773816,-0.011852189,-0.0016679645,-0.010513452,-0.009298402,-0.028957466,0.0011486582,0.0032977315,-0.0063298983,0.024242783,-0.022045508,-0.034341518,-0.0012714365,-0.027938861,0.014718832,-0.041733675,0.04618643,-0.041442644,0.012281458,0.018043848,-0.015671955,-0.0064899647,-0.008767272,0.011386541,-0.018378532,-0.0010386126,-0.03466165,0.0001614306,0.010877239,-0.0072866585,-0.013983982,0.034021385,0.010069631,0.023515208,0.013190926,0.015031689,0.01689428,0.0022718513,0.038124904,-0.006624566,0.030092482,-0.0143041145,0.008243419,0.0015097171,-0.007170247,0.027982516,0.009684017,-0.01147385,0.027225837,-0.027706036,0.0058933534,-0.0018453108,0.018480392,-0.012245079,-0.024097268,-0.020153813,-0.0145660415,0.0038743343,0.02402451,-0.019106107,0.011582986,0.0077704955,0.044993207,0.034690753,0.002482848,-0.0092620235,0.005878802,-0.0019844593,-0.015148101,-0.015846573,-0.002710215,0.036262315,0.0121213915,-0.041064303,-0.017811025,-0.000998596,-0.0054640844,0.014638799,-0.017811025,-0.030936468,-0.0011768518,0.0127980355,0.0050166263,0.0028266269,0.0032613527,0.002197275,-0.02949587,0.03437062,-0.012070461,0.018713215,-0.026629226,-0.03818311,-0.0068355626,0.021608964,-0.016297668,0.006871941,-0.02655647,0.022409296,-0.022525707,0.03457434,0.030616336,-0.01078993,0.00593337,-0.020328432,0.011000927,0.015875675,0.011844913,0.0077413926,0.030441718,0.054451674,0.010993651,-0.011044581,0.021870889,0.008301625,0.06408476,0.02275853,0.032624442,0.05331666,0.014558766,-0.01923707,0.012019531,-0.0121359425,-0.002224559,-0.020488499,0.03995839,-0.0053767757,0.017752819,0.009247472,0.010862688,-0.062047552,-0.017389031,-0.0003537831,0.0041835536,-0.041937396,-0.0058096824,-0.019586306,0.019149762,-0.020852285,0.032857265,-0.030674541,-0.013481956,0.019688167,0.012637969,0.011532056,-0.014267736,0.037251815,-0.029364906,-0.009407538,0.024039062,-0.0034450653,0.0003524189,-0.036378726,0.076540835,0.006042506,-0.017461788,0.016646905,0.0390562,-0.006449948,-0.03533102,0.012768933,0.010309731,-0.024824843,0.012768933,-0.026483713,-0.023849891,-0.028520921,-0.0065190676,-0.028069824,-0.017432686,-0.049649686,-0.017418133,-0.01494438,-0.008316177,-0.022452949,-0.04889301,-0.021987302,-0.033526633,-0.0020117436,0.024562916,-0.017418133,0.014900726,-0.031780455,0.024693878,-0.003823404,-0.00947302,0.010855411,0.0052967425,-0.013860295,-0.086086616,0.0039543672,-0.02558152,-0.015992088,-0.01484252,0.009516674,-0.012317836,0.021914544,0.0075958776,-0.008519897,0.005929732,-0.017389031,0.0030758213,-0.006242589,0.055906825,-0.008177937,-0.0076977382,0.008869133,0.029655937,-0.0034396085,-0.037193608,-0.026134476,-0.014435078,-0.0059188185,0.017563649,-0.013671125,-0.04659387,-0.0016925202,0.044207428,-0.019382585,-0.016428633,0.006133453,0.022540258,0.01523541,0.050260846,-0.027313147,0.021827236,0.017156206,-0.0010749913,0.0026174493,0.019004246,-0.010186043,-0.013758434,0.013023583,-0.0034505222,0.01152478,0.02891381,-0.006278968,-0.010018701,0.008912788,-0.07048742,-0.023573413,0.0036342347,0.0017607303,-0.022394743,-0.002537416,-0.006308071,-0.012950826,-0.050435465,-0.046128225,-0.032566234,-0.009829531,-0.018916937,-0.007835978,0.048369154,-0.018422186,-0.008112456,0.0015488242,0.014638799,-0.010397039,0.00096130784,-0.013743882,-0.010469797,0.03457434,0.049678788,0.0001662053,0.009567604,0.010098734,0.03553474,0.0058278716,0.0012041358,0.058555197,0.009829531,-0.008920063,-0.0030448993,-0.016719662,-0.014544214,0.008614482,0.04641925,-0.0058351476,0.039201714,0.010367936,0.013780261,0.031809557,0.028666435,0.032886367,0.0037651982,0.016283117,-0.01591933,0.001557919,0.039812878,0.003990746,-0.008214316,-0.034807164,-0.028855605,-0.015555543,-0.0008558095,0.014180427,0.021201521,0.03797939,-0.025814343,-0.011786707,-0.008330728,0.043305233,-0.0035923992,0.0038597828,0.015744712,-0.04013301,-0.007544948,0.033613943,-0.026672881,-0.007850529,0.001528816,-0.013962155,0.0022809461,0.008316177,0.039318126,-0.012223252,0.010331558,0.018116605,0.0012086831,0.01776737,-0.004707407,-0.017214412,0.023209626,-0.026701985,0.01718531,0.0018680475,-0.049184036,0.02383534,-0.0043763607,0.027211286,-0.004823819,-0.013176374,-0.0014587869,0.022482052,-0.00996777,0.003917989,-0.0060897986,-0.007388519,-0.013045411,-0.020983249,-0.019790027,0.015933882,-0.028098928,0.02558152,0.00776322,-0.022147369,-0.016545044,0.04336344,-0.0410352,0.0137511585,0.0059188185,-0.020095607,-0.019760923,-0.014216806,-0.03751374,0.018727768,0.01191767,0.03341022,-0.017607303,-0.014260461,-0.009218369,-0.025421454,0.0033031884,0.02157986,0.032158792,0.014507836,0.0017161664,0.005875164,0.027444111,0.016545044,0.00725028,0.015337271,0.06338629,0.007053835,0.019018797,-0.017840127,-0.014253184,-0.017738266,0.043887295,-0.0019335293,-0.0001833715,0.011946773,-0.020648565,-0.01299448,-0.0022172832,0.013314613,-0.0061007123,-0.013911225,0.03303188,-0.0066282037,-0.019673614,0.02764783,-0.020241123,-0.029583178,0.030761851,-0.00016916107,0.021565309,0.00690832,0.0007725932,0.020866837,-0.012143219,-0.006697323,0.025450556,0.043683574,-0.02323873,-0.06297885,0.009043751,0.016384978,0.019557202,-0.00328318,0.0076031536,-0.0068319244,0.0021245175,-0.015133549,-0.051745098,-0.00024464692,0.021943647,0.0077122897,-0.013802089,0.0066063767,0.026847498,-0.01347468,0.0020972334,0.0068028215,-0.0044891345,0.023893546,0.019746372,0.008752721,0.031664044,0.0041871914,-0.008869133,-0.008381658,0.028389957,-0.039405435,-0.0072757453,-0.018829629,-0.0072902967,-0.0023027733,-0.002482848,-0.020721322,-0.0063298983,0.02128883,-0.016719662,-0.017461788,-0.027007565,-0.0021881803,0.01983368,0.014122221,0.013169099,0.0048383703,0.010389764,0.009582156,0.00072257244,0.010622588,0.019906439,-0.017607303,0.0035050903,-0.014915277,-0.017985642,0.019062452,0.018669562,0.025377799,-0.0025337783,0.011859464,-0.04540065,0.015337271,-0.03748464,0.005685995,-0.03925992,0.028433612,-0.013089065,0.00014585596,0.04435294,-0.013307338,-0.00053704093,-0.029626833,0.012928999,-0.0059733866,0.02646916,-0.02128883,0.026687432,-0.030674541,0.023995407,-0.021070559,0.0061807455,-0.034225106,0.058089547,-0.001756183,-0.006751891,0.03303188,-0.031081982,-0.0068064593,0.007974217,0.0028175323,-0.028957466,0.025508761,-0.021608964,-0.015031689,0.019950094,-0.046622973,0.01308179,-0.015846573,0.01571561,0.0161085,-0.0037797496,-0.021026904,-0.026920257,0.0057842173,0.017898332,0.025028562,-0.009945944,-0.0066282037,0.011175544,0.018422186,-0.00971312,-0.015439131,-0.014529663,-0.032799058,-0.011110063,-0.05311294,0.029219393,-0.0055222907,-0.015453682,0.013249132,-0.010018701,0.009953219,0.01894604,0.0040853308,-0.035185505,0.013736607,0.036757063,0.008265247,-0.010455246,-0.01147385,0.0063262605,-0.027094875,-0.020066505,-0.013336441,0.09656369,-0.0153954765,0.0147042805,0.02997607,-0.04569168,0.015162652,0.0075594992,0.020430293,0.007930562,0.015366374,-0.030325305,0.003079459,-0.032682646,-0.0079087345,0.012143219,0.0351564,0.012368767,0.017752819,0.0134892315,-0.0111537175,-0.001455149,-0.034428824,-0.00468558,0.0004888391,0.0070865755,-0.0106298635,-0.020764977,0.0025865273,0.031605836,0.017752819,-0.030820057,0.020139262,0.00121414,-0.023515208,-0.026512815,0.010724449,0.013118168,-0.04324703,0.029044773,-0.025945308,0.012812587,-0.035680253,-0.011408368,0.02657102,-0.013714779,-0.016646905,-0.00247921,-0.0062826057,-0.003426876,-0.007588602,-0.025959859,-0.013598368,0.03690258,-0.022511154,-0.0025355972,0.0028502732,0.031693146,0.0013678401,0.032624442,-0.0096767405,-0.039027095,0.025305042,-0.021929096,0.004656477,0.04641925,0.04560437,-0.009553053,0.007243004,-0.0034377896,0.007981492,-0.03105288,-0.014988035,0.014064015,-0.0038706963,0.003397773,0.0019771836,-0.020866837,-0.020430293,0.010528003,0.02236564,0.02782245,-0.00719935,-0.010433419,0.005504101,-0.031984176,0.01600664,0.051745098,-0.0021663532,-0.029612282,-0.0114447465,0.009793153,0.010135113,0.0049256794,-0.014988035,-0.014034912,0.012907172,0.01186674,-0.0030376236,-0.023005906,-0.0060606957,0.0005024811,0.018785974,0.0027775157,0.0078941835,-0.03885248,-0.0022372915,0.0044709453,0.0070138182,0.0016188533,-0.036291417,-0.013722056,-0.012776208,-0.018625908,0.011772156,0.008687239,-0.004128985,0.040249422,-0.01679242,0.0312566,-0.011823086,-0.017898332,0.030237997,-0.02920484,0.0026629227,0.011379265,0.0078068743,-0.0025610623,0.0035469257,0.0051512276,-0.0071447818,0.000013030973,-0.00083398225,-0.010811757,0.011881292,-0.010608036,0.039201714,-0.0027193096,-0.03789208,-0.014282287,-0.02274398,0.042723175,0.007359416,-0.0038706963,0.016457735,-0.026934808,0.023413347,-0.022511154,0.0025301403,-0.04170457,0.00656636,0.004885663,0.002715672,0.0073666917,-0.0044091013,0.023078663,-0.038270418,0.022904046,0.0035614772,-0.009007372,0.010993651,-0.0027484128,0.021216072,-0.009101957,-0.004147175,0.010367936,-0.0042926897,-0.011415644,0.028040722,0.02040119,-0.0056532538,-0.027953412,-0.0004399552,-0.013532885,0.014078567,0.0020044676,-0.02481029,-0.0095385015,-0.0016679645,-0.003936178,-0.010317006,-0.045633473,-0.020808632,0.01020787,0.04228663,0.011313784,-0.0051184865,-0.008563552,0.007344865,0.006242589,-0.0059006293,0.015890228,-0.03114019,-0.017636405,0.01944079,-0.005758752,-0.012812587,-0.020386638,0.039521847,0.0010495263,-0.01718531,-0.039405435,0.0018134795,0.01718531,-0.035127297,-0.0063262605,-0.02773514,0.013503782,0.022613015,0.013962155,-0.018320326,-0.007588602,0.0022882218,-0.002510132,0.011190096,0.001171395,-0.0045145997,-0.023718929,0.0032649906,-0.016734214,0.045167826,0.0039143506,-0.0029575904,-0.015249962,-0.016181257,-0.02508677,0.01786923,0.017432686,0.003508728,-0.0033559373,0.00162431,0.011110063,-0.0021790857,-0.008010595,-0.011750328,-0.004099882,-0.010520727,-0.016297668,0.018393084,-0.022816736,0.029859658,-0.001999011,-0.0010540736,-0.011160993,-0.04542975,-0.055703104,-0.00057614804,0.06286244,0.006278968,-0.03524371,0.027575074,-0.00009231101,0.040976997,0.02060491,0.00028102566,0.016137602,-0.024853945,-0.001200498,-0.01885873,-0.022307435,-0.0142895635,0.01323458,0.008076077,0.01865501,0.0069847153,0.028972017,0.0065554464,0.0034141433,0.02265667,0.027123978,-0.023544312,0.027298596,0.011750328,0.0019371671,0.03143122,0.0030176153,-0.032217,0.030179791,-0.005929732,0.025130423,-0.02539235,0.009014648,0.03309009,0.0019444429,-0.0016725119,-0.03818311,0.0068646655,-0.0020954146,-0.021943647,0.023515208,0.012368767,-0.043625366,-0.017534545,-0.017709164,-0.019790027,0.0077122897,-0.020153813,-0.039172612,-0.041238923,-0.004110796,-0.012303285,-0.0042162943,0.00918199,0.041675467,-0.029132083,-0.011000927,0.018422186,0.0070065423,-0.03643693,-0.013263683,-0.010280628,-0.014929829,0.032740854,-0.027444111,0.011328335,0.004056228,0.009865911,0.018203914,0.04988251,0.007821426,0.0030030638,0.033904973,-0.0008844578,-0.001171395,0.029452216,0.04627374,0.02988876,-0.004772889,0.011764879,0.048980314,0.0018935127,-0.0022936787,0.0078941835,0.020764977,0.004845646,0.030296203,0.0024992183,0.02041574,-0.013380095,-0.0175782,-0.0038015768,-0.014049464,0.020212019,0.0037433708,-0.028826501,-0.01768006,0.029466767,-0.013823915,0.0027720588,0.012637969,0.00490749,0.024562916,0.022380192,-0.0049766097,0.025785241,0.028477266,0.043683574,0.005631427,-0.058846228,0.0058096824,-0.004947507,0.000019866195,-0.023311486,0.013445577,-0.0073121237,0.02207461,0.026818397,-0.009742223,0.0081706615,0.006042506,-0.0039580055,0.019309828,0.013554713,-0.007042921,0.022962252,-0.005213071,0.029030222,0.023093214,0.006759167,-0.013401923,0.0032613527,0.050028022,0.028433612,-0.03346843,-0.020735873,-0.013292787,0.009458468,0.021245176,-0.023224179,0.020459395]},{"id":"interface-UserFlagsString","type":"interface","source":"main","text":"Interface: UserFlagsString","meta":{"url":"/docs/typedefs/UserFlagsString"},"embedding":[-0.017754894,-0.0079861935,-0.051790956,0.03497644,0.010028358,-0.021319909,-0.019747933,-0.007059851,0.058443777,-0.0031018432,-0.035341363,-0.0015930281,0.00351589,0.042892456,0.013151254,-0.051285677,-0.037474755,0.0253902,-0.012688083,0.030092089,0.010224854,0.040085357,0.027551666,0.055468254,0.010835398,0.04676625,0.0011184531,-0.013326697,-0.017249616,0.000105978914,0.009782736,-0.03955201,0.04508199,-0.031664062,0.045587268,-0.009017802,0.03068158,0.016856622,-0.020983057,-0.0052106753,-0.04617676,-0.007087922,0.018737378,0.013635478,-0.02209186,0.031046502,0.053812068,0.050611977,-0.010835398,-0.007523022,-0.020000573,-0.023144523,0.01807771,0.019804075,-0.013860046,0.024576142,0.012470532,-0.0082247965,-0.020295318,0.026920069,-0.017782966,-0.031579852,-0.021712903,-0.031243,-0.0135021405,0.0420784,-0.027355168,0.05709637,0.032646548,0.03014823,0.029446457,-0.021544477,-0.026934104,0.019088266,0.015916245,0.0010000286,0.012070521,0.01876545,0.009256405,-0.0050703203,-0.010624865,0.02741131,-0.030541224,-0.046682037,-0.0073756496,0.019902324,-0.069728315,-0.015032009,-0.035397504,-0.04190997,-0.040590636,0.011909112,-0.047748733,-0.027930625,-0.031944774,-0.00073423155,-0.016337309,-0.013888117,-0.021207625,-0.03183249,0.06512467,0.0049825986,-0.01169858,0.0041685402,0.02377612,-0.008519542,0.01879352,0.0108985575,-0.02480071,0.009635364,-0.05139796,0.045138136,-0.0014833758,0.0076282886,0.032000914,0.016744338,-0.005680864,0.016940836,0.067651056,-0.01185297,-0.015453074,0.0013009144,0.017418042,-0.012954757,0.00945992,0.00038860762,-0.03873795,-0.003954499,-0.045166206,-0.0067931768,0.046653967,-0.008512524,0.022751529,0.035481717,-0.025376165,0.002007075,-0.032618478,0.031720206,-0.062261432,0.012765277,-0.021839222,-0.0064212363,0.026863927,0.0038843218,0.00088423584,0.00566332,-0.058949057,0.056731448,0.011031895,0.05195938,-0.02398665,0.030541224,-0.031748276,0.014849548,-0.0023351545,-0.029193819,0.0173619,-0.026611287,0.0006364217,-0.01141787,0.002168483,-0.047159243,-0.010210819,0.003394834,-0.0020526904,-0.002143921,0.04359423,-0.019130372,-0.05911748,-0.0135302115,0.01449866,-0.019467223,-0.020814631,-0.028548185,-0.04036607,0.00787391,-0.009789754,0.014119702,-0.069896735,-0.023186628,0.032590408,0.050527763,0.012702118,-0.10846626,-0.016112741,-0.019397046,0.026527075,-0.017291723,0.03129914,-0.039664295,0.005972101,0.032562334,0.040843274,0.028014837,0.019565472,-0.005796657,0.038036175,-0.054598052,-0.012702118,-0.053138364,-0.016730303,0.009572204,0.05019091,-0.052885722,-0.021081304,-0.0436223,0.0024298942,0.023944546,-0.025825301,0.044604786,0.022793634,0.03814846,-0.03469573,-0.03407817,-0.016323274,0.025628803,0.020646205,0.0057019177,-0.0023386634,-0.04962949,-0.005800166,0.017754894,0.04741188,-0.024772638,-0.008694986,0.038288817,0.011867006,0.032871116,-0.023579622,-0.011193302,-0.011663492,0.02694814,0.0078598745,-0.06854933,-0.042527534,0.009270441,-0.011017859,-0.016940836,0.01449866,-0.004150996,-0.051790956,0.022204144,0.022204144,0.029614883,-0.02007075,0.007930052,0.00917921,0.04390301,-0.016716268,0.009838878,0.02181115,0.017782966,0.018849662,-0.018751414,0.0068914252,0.043173164,0.003628174,0.043650374,0.038176533,0.0041088895,0.007979176,-0.06282285,0.030569296,-0.0066142245,-0.007817768,-0.0021193589,0.037137903,0.03786775,-0.046289045,0.014400412,-0.018526847,-0.0055650715,0.04016957,0.052296232,0.0043334574,-0.04269596,0.038766023,0.057882357,-0.013565301,-0.02953067,-0.057461295,-0.010400298,0.013509159,0.03699755,-0.012947739,0.029193819,0.0037685288,0.018147888,0.041741546,0.0070563424,-0.0074879336,0.01677241,0.054598052,-0.01534079,0.0010596794,0.027242884,0.027172707,-0.0081967255,0.031018432,0.014274092,0.019242655,-0.008175673,-0.029502599,-0.020590063,-0.026162153,-0.010273978,0.058668345,-0.020561991,0.0069054607,-0.017600503,-0.0169268,-0.08196726,-0.046289045,0.0063896566,-0.058612205,-0.025025278,0.040085357,0.065236956,-0.031158786,0.02679375,-0.0033614996,0.032534264,0.02377612,-0.03528522,0.07489337,-0.012140699,0.056563023,0.027832376,0.03441502,0.03730633,0.0012614396,-0.019986536,-0.013593371,-0.020084785,0.046906605,-0.016519772,-0.052633084,0.018597024,-0.030821934,0.032506194,0.03332025,-0.025011241,-0.035369433,-0.020842701,0.011221373,-0.01920055,-0.059398193,0.025895478,0.010449422,0.028941179,-0.014891654,0.023902439,-0.0018035604,-0.0041545047,-0.025853371,-0.048057515,0.04039414,-0.0073265256,-0.027565701,0.068773896,-0.011186285,0.019158443,-0.008386205,-0.03506065,-0.040281855,-0.038232673,-0.0011395063,0.03581857,0.012098592,-0.06899846,-0.0030316657,0.0071510817,0.002542178,0.014821477,0.025249846,-0.010358191,-0.03531329,-0.017853143,0.044099506,-0.0041123983,0.030485082,0.019593542,-0.01782507,-0.01835842,0.010638901,-0.021053234,-0.011017859,0.021867292,-0.032309696,0.0031527218,0.03155178,-0.002915873,0.0075089866,-0.021993611,0.0012605623,0.021993611,0.021011127,0.049180355,0.027130602,-0.054036636,0.02694814,-0.011249444,0.011249444,0.022456784,-0.009712558,-0.021011127,-0.029081535,0.05080847,0.04561534,0.018007534,0.035537858,-0.031916704,0.04589605,0.022442747,0.04306088,-0.011214356,-0.035481717,-0.043987222,0.018568952,0.011958237,-0.014112685,0.031664062,0.0054071723,-0.028197298,0.023018202,0.018582989,-0.026751643,-0.05024705,0.021698866,-0.07045816,-0.014442518,0.009923091,-0.008849376,0.02324277,-0.010084499,-0.032085128,0.052913796,0.022583103,0.0642264,0.008645861,-0.009530097,0.011333657,0.016688196,-0.016379416,0.02124973,-0.03099036,0.0070282714,0.03851338,0.015972387,-0.030569296,-0.054541912,0.004940492,-0.07275998,0.03668877,0.00018662815,-0.0050948826,-0.0028334144,0.038036175,0.00637913,-0.012610887,0.026611287,0.03180442,-0.03407817,0.06299128,0.006431763,-0.020449707,-0.03180442,0.01817596,0.014919725,0.0058142017,-0.036239635,-0.007866892,0.012891597,0.023383126,0.0076774126,-0.015312719,0.02436561,-0.06798791,-0.0013202132,-0.0436223,-0.0017509273,0.018779485,-0.010316085,-0.010400298,0.016042564,0.12171576,0.067538776,0.0029088552,-0.057545505,0.0043510017,-0.031355284,-0.014526731,0.055496324,-0.017909285,0.006375621,0.009109032,0.025783194,-0.05364364,-0.014639015,-0.053755924,0.04502585,-0.031102644,0.030569296,-0.006982656,0.057545505,0.04011343,-0.0060633314,-0.013916188,-0.08241639,-0.06916689,-0.026246365,-0.007614253,-0.026527075,-0.017839108,-0.050331265,0.006242284,-0.0067756325,0.044604786,-0.0019404064,-0.006049296,-0.025025278,-0.01076522,0.00031689502,-0.046653967,0.0036211563,0.0009061663,-0.02467439,-0.013003881,-0.0073545966,-0.02707446,0.012070521,-0.024197184,-0.0056948997,-0.026976211,-0.008301992,0.0056563024,-0.00781075,-0.01039328,0.043762654,-0.0097687,-0.017965427,-0.027355168,0.025825301,-0.0010079236,-0.027116565,0.008702003,-0.022035718,0.0056177047,0.026176188,-0.026583217,-0.041938044,-0.012252982,0.0173619,-0.028351689,0.044548642,0.004284333,-0.004642238,-0.0073195077,-0.015635535,0.013712673,-0.04016957,-0.065461524,0.008800251,-0.011803847,-0.018611059,0.0029649972,0.015677642,0.015228506,0.024491929,0.005112427,0.016533807,0.062935136,-0.01076522,0.09499219,0.011102072,-0.024562106,0.028323617,0.00753004,0.006894934,0.021390086,-0.022007648,0.012596852,0.00070133584,0.020463744,-0.007614253,-0.048366297,0.01981811,-0.009733612,-0.006326497,0.017319795,-0.016533807,0.003684316,0.038906377,0.026063904,-0.01160735,0.010617848,0.003277287,0.011242427,-0.029811379,0.021993611,-0.013789868,-0.022105895,-0.003789582,-0.0017930338,0.040843274,0.0040878365,0.0014895163,-0.052408516,0.012014379,0.02953067,0.0017886477,0.039973073,-0.033348322,-0.040085357,-0.036660697,0.024127007,-0.018849662,-0.013144236,-0.012989845,-0.0136003895,-0.04875929,0.006351059,-0.013495123,0.012147716,-0.0223445,0.039916933,-0.052969936,-0.0002163439,0.02797273,-0.018695273,-0.04530656,-0.022877848,-0.004073801,-0.021600619,-0.017221546,-0.032309696,0.0038036176,0.002389542,-0.00027983257,-0.023060309,0.044885494,-0.021726938,0.03410624,-0.000010930959,0.030737722,0.016547842,-0.01807771,0.018597024,-0.028618364,0.03528522,-0.0026649886,0.022765564,0.003077281,-0.011410853,0.01564957,-0.008940606,-0.015551322,0.031327214,-0.033151828,-0.0051510246,0.0077054836,-0.00032698305,-0.00049124216,-0.033713244,0.0012114382,0.0034018517,-0.011642438,0.013579336,-0.025600733,0.0013860046,0.019691791,0.061194733,-0.009109032,0.0018877733,-0.008449364,-0.016449593,-0.0109827705,-0.032871116,-0.018021569,0.03503258,0.03674491,0.030737722,-0.03986079,-0.031944774,0.022316428,0.004129943,0.016225025,-0.013242484,-0.012091574,-0.009909055,-0.00057370064,0.0013553019,0.014014436,-0.00613,-0.003450976,-0.014568838,0.015719749,-0.015354825,-0.001709698,-0.02896925,-0.009537115,0.019733898,-0.024393681,-0.006951076,-0.010203801,-0.014961831,0.0014789897,-0.031355284,0.03680105,0.0173619,-0.021376051,-0.0031579852,-0.030513154,0.03447116,0.0055264737,0.014267075,-0.0075160046,-0.011445941,0.056591094,0.029614883,-0.007396703,0.0062773726,0.011291551,0.054289274,0.025291951,0.0061931596,0.055440184,0.017404007,-0.0109546995,0.023158558,0.0018211048,0.004986108,-0.010596794,0.050555833,-0.019804075,0.015635535,-0.0005074707,-0.007635306,-0.046878535,-0.023691906,0.005884379,0.011972273,-0.015832031,0.009754665,-0.026877962,0.032309696,-0.029811379,0.034274664,-0.03640806,-0.02405683,-0.0021351487,0.011621385,-0.0039755525,-0.008049353,0.020898843,-0.024618248,0.0041580135,-0.0074107386,-0.00040944153,0.03786775,-0.01754436,0.044324074,0.0110529475,-0.010217836,-0.01590221,0.045755696,0.00039080065,-0.014709193,-0.006491414,-0.005659811,-0.013123183,0.0052738353,-0.032028988,-0.0109406635,-0.022849776,-0.0021369033,-0.019032124,-0.06310356,-0.034751873,-0.01185297,-0.013719691,-0.006712473,-0.019776005,-0.029895592,0.0015640799,-0.06939146,0.02178308,0.03188863,-0.0034650115,0.014267075,-0.00852656,0.02663936,0.001359688,-0.008638844,0.009544133,-0.0022298885,0.010723114,-0.058949057,-0.022105895,0.0020842701,-0.011382782,-0.04154505,0.0014921479,-0.0068493187,0.048029445,-0.00398257,0.00041141527,0.016309239,-0.007803732,0.0003877304,-0.0077896966,0.03042894,-0.0025369148,0.032000914,-0.011628403,0.026218295,-0.011649456,-0.018316314,-0.00019967677,-0.018779485,0.038232673,0.04244332,-0.0068773897,-0.037980035,0.02106727,0.032225482,-0.03410624,-0.020618133,-0.010589777,0.021137446,-0.014849548,0.06484396,-0.012428426,0.0011272252,0.0069089695,-0.018681236,-0.024463858,-0.0011588051,0.0013079322,-0.024253326,0.01534079,-0.016421523,0.019958466,0.002442175,0.0012079293,-0.024098935,-0.0027737636,-0.03783968,-0.016351346,0.0023579623,0.015284648,-0.020267246,-0.014526731,0.0059966627,-0.022863813,-0.041769616,-0.009123068,-0.01197929,-0.0013219677,-0.010161694,0.015537287,0.05473841,-0.030906148,0.008175673,-0.006737035,0.010252925,-0.017965427,0.0160566,-0.005193131,0.0006605452,0.03758704,0.056085814,0.021979576,0.003873795,0.0049545276,0.012575799,-0.0016298712,0.0329834,0.06080174,0.023018202,-0.019032124,0.0051545333,-0.0036983516,-0.016828552,0.012140699,0.03674491,-0.0018842644,0.054626126,0.0173619,0.019453188,0.0077125016,0.012281053,-0.011754722,0.017909285,0.043397732,-0.012428426,-0.0081546195,0.019551437,-0.0044281967,-0.014610944,-0.032786902,-0.03671684,0.011572261,0.003543961,0.027425347,0.013045987,0.012898615,-0.027776234,-0.0054036635,-0.009880984,0.032169342,-0.029418387,0.020042678,-0.006603698,-0.032197412,0.0025755123,0.037194047,-0.029923663,0.001560571,-0.0055650715,-0.016575914,-0.0017281197,0.009354654,0.03500451,-0.029951734,0.0064493073,0.029362245,-0.012716154,0.007894963,0.007087922,-0.027579736,0.005659811,-0.016632054,0.005494894,-0.016168883,-0.045166206,0.009368689,-0.0010763466,0.025656875,-0.015817996,-0.008484453,-0.0015149557,0.007698466,0.006575627,-0.0001993478,0.027551666,-0.016912764,-0.03245005,-0.022709422,-0.035594,0.0133477505,-0.021418156,-0.0036632628,-0.011909112,-0.011249444,-0.01748822,0.051201466,-0.017937355,-0.00065791357,0.01807771,-0.031018432,-0.016660126,-0.0088985,-0.019593542,0.020239176,0.017291723,0.03129914,-0.0022895392,0.004073801,-0.011944202,-0.028478008,0.002050936,0.039159015,0.037109833,-0.015523251,-0.0011763495,0.026246365,0.03977658,0.009003767,0.015003938,-0.010709078,0.06254214,0.017684717,0.025179667,-0.040618706,-0.025727052,-0.0021246222,0.026990246,0.027916588,0.0038948483,-0.0034176416,-0.010540652,-0.013151254,0.021755008,-0.0037439668,-0.0015772381,-0.00448083,0.058331493,-0.011459977,-0.030625438,0.014442518,-0.012196841,0.012428426,0.00047896107,0.029614883,0.025193704,0.0073756496,0.00046755723,0.02953067,-0.013340733,-0.010224854,-0.008561648,0.04875929,-0.010042393,-0.0373344,-0.0039474815,-0.0071230107,0.012407373,0.03149564,0.0110108415,-0.024632284,-0.03901866,-0.005596651,-0.04016957,0.0011596823,0.025881443,0.017221546,-0.010435387,0.012154734,0.03983272,-0.0033895706,0.021305872,0.024730531,0.022779599,0.009951162,0.012624923,0.006544047,0.006319479,0.009866949,-0.009516062,0.0010824872,-0.011684545,-0.0043510017,-0.014456554,-0.007182662,-0.016365381,0.005687882,-0.008301992,-0.03677298,0.008428311,0.0071791527,0.0007947596,-0.007908998,-0.0077896966,0.0016307484,-0.006322988,0.03354482,0.022681352,0.011361728,0.020533921,-0.00027391134,0.013481088,-0.009740629,0.0019684774,-0.0019649686,0.001979004,-0.000030510742,0.010421351,0.024912994,0.009319565,0.016533807,0.012400355,0.013074058,-0.037165977,0.03096229,-0.012309124,0.017586468,-0.036576487,0.00787391,0.0034948369,-0.0035808042,0.011452959,0.0026614796,-0.020519886,-0.021684831,-0.014961831,-0.0019193531,0.02579723,-0.015368861,0.02651304,-0.050078627,0.005887888,-0.03070965,0.021137446,-0.031776346,0.061307017,0.02766395,-0.005438752,0.040029217,-0.03416238,0.0031018432,0.00027829743,0.007361614,0.010912593,0.021937469,0.009221316,-0.011593314,0.004179067,-0.03129914,0.02651304,-0.011586296,0.025404235,0.016140813,0.00013969697,-0.028885037,-0.02825344,0.015046044,0.02293399,0.01449866,-0.011775776,0.011445941,-0.0035667687,0.027116565,-0.0034141329,-0.007691448,-0.009059909,-0.0019983028,0.016870659,-0.038288817,0.0169268,-0.0064843963,-0.024169113,-0.0029106096,-0.016154848,0.023439268,0.025221774,0.010365209,-0.01835842,0.013677584,-0.0009465183,0.0169268,-0.003217636,0.018133853,0.020716382,-0.030372798,0.0006886162,-0.0010921365,0.09426235,-0.022667315,0.001717593,0.015972387,-0.018035604,-0.0005723848,0.011867006,0.03042894,-0.0015675888,0.0106038125,0.010140641,-0.0135442475,-0.010989788,-0.02019707,0.017979462,0.030092089,0.0046562734,0.019944431,0.036520343,-0.0014517959,0.007256348,-0.014947796,0.001202666,-0.008547613,0.011088037,0.0020369005,-0.01185297,-0.00030768424,0.034864157,0.01723558,-0.021670796,0.0027895535,0.021235695,-0.019986536,-0.02296206,0.0027649915,0.015467109,-0.021137446,0.020870773,-0.020646205,-0.018414563,-0.035397504,-0.0016746094,0.013137218,-0.016786445,-0.01720751,0.021839222,0.009670452,0.017460149,-0.047299597,-0.020590063,-0.026021797,0.025544591,-0.030737722,-0.0001357495,-0.008203744,0.027958695,0.013719691,0.011993325,-0.030765792,-0.018414563,0.04213454,-0.0133477505,0.002140412,0.04682239,0.07348982,-0.0048878593,0.009824842,-0.023439268,0.04870315,-0.01574782,-0.007670395,-0.0041615227,0.02063217,0.020463744,0.003849233,-0.021165518,-0.028421866,0.0009807298,0.01353723,0.02983945,-0.024281397,-0.018877733,0.018877733,-0.032478124,0.01677241,0.02738324,-0.017432079,-0.0038913395,-0.027720092,0.03245005,0.00020472077,0.017572433,-0.0031000888,-0.01384601,0.006498432,0.024127007,0.015551322,-0.02178308,-0.006572118,-0.008793234,0.01960758,0.009487991,-0.003965026,-0.017698752,-0.015032009,-0.005144007,0.013060023,0.0071054664,-0.032899186,-0.0059299944,-0.008666915,0.017109262,-0.0046668,0.022639245,-0.01807771,0.026162153,-0.021432193,0.029137677,-0.014224969,0.00029715762,0.016632054,0.01792332,0.007284419,0.0032597424,0.014105666,0.017740859,0.0055089295,0.0031404407,0.013445999,-0.004838735,-0.030035947,-0.019663721,0.013389857,-0.0013561791,0.020435672,-0.0111090895,-0.05072426,0.011031895,-0.009600275,0.036913335,0.020463744,0.0061931596,0.016042564,-0.019060194,0.025628803,0.012077538,-0.0050948826,-0.048871573,-0.009796771,-0.005793148,-0.0029421896,0.016758375,-0.011895077,0.00303342,-0.03792389,0.016758375,0.009073944,-0.01789525,0.018091746,0.009186228,0.013838992,0.008421293,-0.03152371,-0.006000172,0.012119645,-0.008294974,-0.0015903964,0.004010641,0.004526445,-0.02797273,-0.016716268,-0.0076774126,0.017530326,0.006838792,-0.032085128,-0.0021369033,0.009221316,-0.014168827,-0.02551652,-0.048001375,-0.012940722,0.014203915,0.043229308,0.021755008,-0.011319622,-0.0021018146,-0.0003059298,0.021109376,0.0097687,0.01646363,-0.043145094,-0.022540996,-0.011817882,-0.0042948597,-0.006235266,-0.032506194,0.023818225,0.029446457,-0.012337195,-0.031383354,0.005821219,0.03870988,-0.013389857,0.015074115,-0.01894791,0.019144408,0.01879352,0.018372456,-0.013368804,0.0039404635,0.0013298626,0.014049524,0.00952308,-0.013874081,-0.0010342401,-0.03070965,0.014835512,-0.018442633,0.033657104,0.01033012,-0.012154734,-0.011368747,-0.019495295,-0.0045229364,-0.003310621,-0.00924237,-0.0013035461,0.010526617,-0.017712787,0.015326754,0.025039313,-0.014919725,-0.008301992,-0.027874483,0.008203744,-0.034246594,0.03842917,-0.012091574,0.01185297,0.006322988,-0.010077481,-0.012526674,-0.033432536,-0.0614193,0.023186628,0.041039772,-0.0045755696,-0.026456898,0.041376624,0.016702233,0.038569525,0.032478124,0.016098706,0.02924996,-0.026091974,0.0030193846,-0.0033036033,-0.020337423,-0.018723343,-0.024505964,-0.009782736,0.042808242,-0.016603984,0.026091974,0.016168883,0.004779084,-0.0019807585,-0.0033229021,0.009509044,0.008007247,-0.016870659,-0.0010035374,0.02707446,0.010217836,-0.02520774,0.034302738,0.013881099,-0.0036667716,-0.017039085,0.004147487,0.029446457,0.0069651115,0.00009139516,-0.006958094,0.03407817,-0.013923205,-0.0054913852,0.006737035,0.003338692,-0.05330679,-0.015186399,-0.006122982,-0.028449938,0.019481258,-0.016126778,-0.011277515,-0.024253326,-0.013481088,0.0023983142,0.014849548,-0.007916016,0.017137332,-0.010652936,-0.019242655,0.021965541,0.013060023,-0.017165404,-0.017474184,-0.014161808,-0.008940606,0.013354768,-0.042611744,0.035762426,0.008547613,0.012098592,0.026976211,0.04819787,0.026863927,-0.007119502,0.017165404,0.018470705,0.019495295,0.0075651286,0.033657104,0.014470589,-0.016407488,0.016996978,0.026288472,0.01664609,-0.01390917,0.023649799,0.008968677,0.00017577257,0.03390974,-0.005596651,0.009003767,-0.011347693,-0.0031123697,-0.005558054,-0.010666972,0.019593542,-0.003849233,-0.02308838,-0.00017281197,0.038541455,-0.015228506,-0.0097687,0.006982656,-0.015074115,0.008800251,0.01319336,-0.009284476,0.027874483,0.019242655,0.02924996,0.028730648,-0.027130602,0.034920298,-0.026120046,0.0055545447,-0.017712787,0.015396932,-0.004372055,0.025053348,0.028351689,-0.006768615,0.006680893,0.015298683,0.010273978,-0.009410796,0.013993383,-0.001428111,0.011537172,0.00025834073,0.035116795,0.012526674,0.0106880255,-0.021558512,-0.0011833672,0.04926457,0.01577589,-0.052324306,-0.006210704,0.010463458,0.003591331,-0.014119702,-0.0016667143,0.0054633142]},{"id":"interface-VideoPlayOptions","type":"interface","source":"main","text":"Interface: VideoPlayOptions\nDescription: Options for video playback via {@link LiveKitRtcConnection.playVideo}.\nProperties: height: number, loop: boolean, maxFramerate: number, resolution: \"480p\" | \"720p\" | \"1080p\" | \"1440p\" | \"4k\", source: \"camera\" | \"screenshare\", useFFmpeg: boolean, videoBitrate: number, width: number","meta":{"url":"/docs/typedefs/VideoPlayOptions"},"embedding":[-0.0383754,-0.018569468,-0.0020781055,-0.023447886,-0.022852134,-0.017715182,0.01937879,-0.06074419,0.047345396,0.009447722,0.017198114,-0.02690999,-0.015927928,0.008823869,0.008795768,-0.03983668,-0.044130586,0.042264648,0.01991834,0.024234729,-0.013410033,-0.030484501,0.0041309195,0.008363005,-0.011167534,-0.038892467,0.0036700552,0.052516073,0.0018153565,-0.0018392428,0.038038183,-0.025830893,0.020412926,-0.043163896,-0.026685178,-0.058810808,0.035250515,-0.012173567,-0.020716421,-0.0013313083,0.03102405,-0.03988164,-0.060294565,0.008525994,-0.010234564,0.04511976,0.0133875515,-0.0033440778,-0.041095626,0.008778906,-0.045704268,0.024796758,-0.04532209,0.056472763,0.022323826,0.007463757,0.01486007,-0.029562771,-0.0021399288,-0.0029618975,0.007407554,-0.051616825,-0.0019839655,-0.01672601,0.015759317,-0.008621538,-0.096938916,0.04379337,-0.0025909578,0.05242615,0.038869984,-0.011723943,-0.017018264,0.031698484,-0.027921645,0.034216378,-0.017209355,-0.033047356,0.02198661,-0.04273675,0.008947516,0.039544422,-0.051976524,-0.02578593,-0.00034916107,-0.004914951,-0.049233817,-0.0073401104,-0.04197239,0.016253904,-0.03783585,-0.026954953,-0.07962839,-0.005513513,-0.031878334,-0.021559466,0.052605998,-0.0673087,0.032822546,0.074772455,-0.0033496981,0.0053982968,-0.06452103,-0.012274733,0.03145119,0.018917926,-0.014163153,0.042174723,0.0029618975,0.009453342,-0.033159763,0.024189766,-0.017085709,0.040173896,0.029450366,-0.029832546,0.016512439,0.0035295477,0.015939167,-0.04685081,-0.034216378,-0.03230548,0.036194723,0.0075649223,0.0041871225,-0.009138606,0.027764276,0.017231837,-0.039566904,-0.011274319,0.031091493,0.028528636,-0.002745516,-0.0044849985,0.007272667,0.035317957,-0.019434992,0.028258862,0.014972476,-0.001899661,0.012049921,-0.025898337,0.05395487,-0.019648565,-0.005603438,0.035812546,-0.004080337,0.0009463178,-0.03653194,0.011308041,-0.004024134,-0.00046121576,-0.02255988,0.024189766,-0.074232906,-0.030979088,0.004420365,0.019963302,-0.044287954,0.031900816,0.028730968,0.012713116,0.020469127,0.013039093,-0.020469127,-0.0007085089,0.01787255,0.039274648,-0.04945863,0.059575167,0.061148852,-0.02013191,-0.050852463,0.019322587,-0.001128275,0.0063340766,0.03572262,-0.031900816,-0.031855855,0.0139608225,-0.0031305065,0.006491445,-0.03817307,-0.030551944,-0.024909165,0.008531613,-0.04914389,-0.00884635,0.03437375,-0.016119016,-0.005533184,0.024909165,-0.004116869,-0.0032035704,-0.02182924,0.039072316,0.0009617736,-0.018333415,-0.0034508635,-0.028528636,0.024594428,0.021177286,0.06443111,-0.06209306,-0.022919578,0.01749037,-0.022604842,-0.008621538,-0.03327217,-0.03952194,0.043411188,0.048064794,0.029427884,-0.020356722,-0.02517894,0.034081493,0.02466187,-0.017209355,-0.019356309,0.016220182,-0.04118555,0.0036728652,0.0345536,-0.03666683,0.005041408,-0.03648698,-0.03255277,0.013882138,-0.022649804,-0.007300768,-0.023852548,-0.005061079,-0.021851722,-0.003065873,0.03212563,-0.05777667,0.00884073,-0.023009503,-0.025988262,-0.052156374,0.024482021,-0.013657326,-0.037521113,0.027112322,0.010807835,-0.007851558,0.011903793,-0.03722886,-0.04179254,-0.008851971,0.011336142,-0.021211008,0.0068174223,-0.03288999,0.014758904,-0.04444532,-0.0077616326,0.032440364,-0.038352918,0.009498305,0.017906273,-0.058406144,-0.030394576,-0.05809141,-0.02425721,-0.004206794,-0.033744276,0.020188114,-0.00095966604,0.0069691706,0.01825473,0.025089014,-0.012679394,0.03931961,0.036936603,0.05229126,0.06542028,0.01785007,-0.00012698362,-0.0037178276,-0.03295743,-0.00884073,-0.008188776,0.029787583,-0.020772625,-0.0067443587,0.01937879,-0.0011310851,0.030057358,0.013331349,0.008587817,0.0069298283,0.033991568,-0.061283737,0.033159763,0.032013223,0.06546524,-0.011010165,0.055438627,0.0035632695,-0.0017057607,-0.029495329,0.028303824,-0.042489458,-0.015275972,0.06474584,0.0771105,0.02632548,-0.0032597734,-0.023312999,-0.0032878749,0.02445954,-0.0073063886,-0.010779733,-0.059530206,-0.0139271,0.068432756,-0.009290353,-0.034081493,0.010094057,0.007767253,0.011757665,-0.026033225,-0.007598644,0.029989915,-0.032013223,-0.000015313119,-0.02106488,-0.005569716,-0.015512025,-0.009385899,-0.013567401,-0.058810808,-0.024279691,-0.009723117,-0.010296388,-0.027224727,0.014972476,-0.027741795,-0.016276386,0.00031034587,-0.01842334,-0.042287126,0.018310932,-0.006845524,-0.0425569,0.011302421,-0.05035788,-0.004853128,0.0037206379,-0.012769319,-0.00094140007,-0.032575253,0.009172328,0.016422514,-0.035228033,0.0068118023,-0.04797487,-0.06681411,0.014590296,-0.036194723,0.045254644,0.029292997,-0.00037164227,0.014061987,-0.004262997,-0.037745927,-0.019794691,-0.019873377,-0.0005838085,0.04775006,0.01749037,0.0129266875,0.005136953,0.018310932,-0.028326306,0.013792213,0.014444168,-0.02220018,0.017456649,-0.016163979,0.012611951,0.035497807,-0.03498074,0.022132736,-0.04757021,0.009869245,0.036824197,-0.02311067,0.0017886601,0.02481924,0.0137360105,-0.029225554,-0.051481936,-0.0034761548,0.026168112,0.013443755,0.026213074,0.01148227,-0.017377963,0.03235044,0.036936603,-0.008008926,0.053010657,-0.016006611,-0.058001485,0.032507807,0.05602314,0.048559383,-0.0060305805,0.016995784,-0.020907512,0.03122638,0.015939167,0.04404066,-0.012454582,0.015062401,-0.027292171,0.04792991,0.0191877,0.0061092647,0.020210594,-0.05552855,-0.026302999,-0.009290353,0.023807585,-0.0055247536,-0.03576758,-0.01940127,-0.048964042,-0.006676915,0.04006149,0.101075456,0.0021118273,0.03970179,-0.024324654,-0.0034087112,-0.025156457,-0.030574426,-0.0067218775,-0.024437059,0.034755927,-0.003327217,0.01899661,-0.023582773,0.025718488,0.0020078518,0.0090767825,-0.01222977,-0.020266797,-0.045839157,0.06883742,-0.031271342,0.03138375,0.01956988,-0.018310932,0.00019038763,0.0077279108,-0.009177947,0.011937515,-0.02933796,0.047705095,0.023155631,0.0030152902,0.025516156,0.054989003,0.032417882,0.016253904,-0.04810976,-0.03653194,0.0010826101,0.00061507145,0.029203072,0.016017852,-0.011251838,-0.01881676,0.056337874,-0.025291344,-0.015096122,-0.017614016,-0.03405901,0.018771797,-0.017243076,0.0046311263,-0.014320522,0.06987155,0.022065293,0.013151499,-0.025673525,-0.014545334,0.016602363,-0.036801714,-0.03590247,-0.010279526,0.007862798,-0.0022874617,-0.025673525,-0.0076829484,0.017782625,-0.0020696751,0.05242615,-0.04707562,-0.042961564,0.049009006,0.044287954,0.038330436,0.017838828,-0.039566904,-0.037970737,0.059215467,-0.025875855,-0.034463674,-0.008514753,-0.023560293,-0.01825473,0.009751218,-0.016883377,-0.022795932,0.00807637,0.01806364,-0.048694268,0.014061987,0.01921018,0.023447886,0.01900785,0.0089643765,0.0023773864,-0.011178774,0.0032597734,-0.013286387,-0.0048503177,-0.013949581,-0.05656269,0.006036201,-0.009239771,0.021952886,0.033407055,0.018389618,0.014365484,-0.04437788,0.024549466,0.0008395321,0.000827589,0.029248035,-0.021154804,0.028820893,0.009082403,-0.024706833,-0.03028217,0.016501198,-0.0010769898,-0.053325396,0.008745185,-0.034216378,0.016681047,0.013297627,0.0057776673,-0.0225936,-0.031473674,-0.0026766672,0.00865526,-0.022031572,0.0028171747,-0.035452846,0.017175633,0.0037206379,0.025111495,-0.0059406557,-0.0278542,0.02258236,-0.014275559,0.010982064,0.035048183,0.017366724,0.0126906345,-0.02353781,-0.020075707,0.011836349,0.006429622,-0.0007404744,0.029113147,-0.048604343,0.016265145,-0.0010088437,0.008447309,-0.028820893,0.010897759,0.031518634,0.005476981,0.046401188,0.040376227,0.018018678,-0.027741795,0.016265145,-0.011926274,0.01298289,0.008610298,0.015028679,0.018726835,-0.03178841,0.002560046,-0.0038499048,-0.007053475,0.010959582,0.031653523,0.03349698,0.017220596,-0.011566575,-0.017917512,0.0068174223,0.0050189267,0.008509132,-0.018007437,-0.031248862,-0.054224644,-0.023492849,-0.044130586,0.00010511715,0.034531116,-0.024032397,-0.022807172,0.020165632,-0.0053280434,0.01824349,0.00695793,0.024234729,-0.024504503,-0.023605255,-0.02218894,-0.023200594,0.03970179,0.006187949,0.0030546323,0.0023408544,0.011948755,-0.0011879907,0.01410695,0.0020668649,0.026213074,-0.019907098,0.041118104,0.018760556,0.025426231,-0.005190346,0.009526406,-0.008312422,-0.03104653,0.009801801,-0.015905445,-0.001843458,0.016456235,-0.026954953,0.023964955,0.008239358,0.017220596,0.0015638481,-0.03875758,0.030641869,0.010099676,-0.007750392,0.012960409,0.01336507,0.0025726918,-0.013072815,-0.0010299197,0.008149433,0.014747664,0.020480368,-0.03181089,-0.029382922,-0.017456649,0.0069466894,-0.024122322,-0.025471194,0.0012181997,-0.05004314,0.01768146,-0.022065293,-0.0032120007,0.042444497,-0.015073641,-0.0041646413,-0.049593516,0.014522852,0.002710389,-0.046176374,-0.0070647155,0.019513678,0.00884635,0.02182924,0.0057439455,0.007435655,0.019513678,0.054809153,-0.029405404,0.057506897,0.028865855,-0.00395107,0.040331263,-0.011813868,0.016220182,0.009503925,-0.0070422343,-0.0105212,-0.0072558057,-0.013410033,0.0043360605,0.019019092,0.014365484,-0.0069298283,-0.039207205,-0.025089014,-0.029697658,0.015512025,-0.02724721,0.013825935,-0.011532853,-0.014163153,0.03794826,0.013196462,0.012881725,0.011645259,-0.06515051,0.017007025,-0.0053561446,0.024279691,0.01409571,0.054629304,-0.019491196,0.053864945,0.03594743,-0.0017942804,-0.019153979,0.028258862,-0.043501113,0.02520142,-0.034688484,-0.007548061,-0.0063509378,-0.007053475,0.0039004874,0.010318869,0.022548638,0.04496239,0.027022397,-0.026505329,-0.024279691,0.009262253,-0.016827175,-0.004159021,0.011791387,0.005097611,-0.011577816,0.03520555,-0.0012090667,0.007491858,-0.019356309,-0.019243903,-0.034148935,-0.014151912,0.010324488,0.01937879,0.0021862963,-0.016231423,-0.009992891,-0.008514753,0.009835523,-0.026078187,0.049908254,0.022998262,-0.007660467,0.018726835,-0.025538638,-0.02632548,0.037161414,-0.061643437,-0.032215554,-0.019434992,0.016321348,-0.024774278,-0.031541117,-0.035093147,0.04725547,-0.017636498,0.038330436,0.0054039173,0.0013313083,-0.03648698,-0.02706736,-0.026033225,-0.022335067,-0.04361352,0.02239127,-0.02107612,0.0052353083,0.025089014,-0.0067274976,-0.07364839,0.006154227,0.018906685,-0.0033019255,-0.020457888,-0.014466649,0.0027862631,0.014320522,0.01843458,-0.0560681,0.030529464,-0.0011915034,0.06407141,-0.03592495,0.0021343085,-0.018693114,0.017456649,0.0020542191,0.039274648,0.0036728652,-0.000006899136,0.012218529,-0.044355396,0.070995614,-0.010464996,0.022233902,0.016074054,-0.033024877,0.017951235,-0.030731793,-0.007952723,0.028843373,0.009852383,0.00732887,0.014365484,0.025651043,-0.0070871967,-0.006339697,-0.03028217,-0.017636498,0.03385668,-0.008486651,0.0059968587,0.028933298,0.05247111,-0.050267953,-0.013994544,0.0051257126,0.0076773283,-0.010133399,-0.019221421,0.006317216,0.00263311,0.011611537,0.016793452,0.025381269,-0.04797487,-0.0039566904,-0.032934953,-0.019614842,0.010217703,0.011010165,0.017400445,-0.02859608,0.010998924,-0.0124658225,-0.037970737,-0.013792213,0.01111133,0.00026468094,-0.012780559,0.009981651,0.029427884,0.016321348,-0.0062778736,0.0112968,0.030889163,0.008318042,-0.002391437,-0.02049161,0.028101495,-0.027134802,0.008570956,-0.010386312,0.014803867,0.026842548,-0.0066881557,-0.007632366,0.0032316719,-0.042849157,0.02708984,-0.016984543,-0.007576163,-0.014208116,-0.011454169,0.006339697,0.028551118,0.00027627283,-0.0026036033,-0.034351267,0.04030878,-0.0026612114,0.010583023,-0.031473674,0.014151912,0.0043220096,0.0019628895,0.027606908,0.03369931,0.023492849,-0.02560608,-0.053325396,0.025830893,0.06528539,0.0034199518,0.013005371,0.04963848,0.0046198857,0.008587817,0.0027890732,-0.006187949,0.027044877,-0.03028217,-0.024212247,-0.005035788,0.006485825,0.018805519,-0.033991568,-0.026460366,-0.0072895274,-0.0089025535,0.0006235019,0.0054460694,0.002690718,0.017344242,-0.0047941147,0.007373832,0.027427059,0.00011653338,-0.029585253,0.012072402,0.03722886,0.04828961,0.046311263,0.005302752,0.02407736,-0.005004876,0.03365435,-0.0031445571,-0.017186875,0.041994873,-0.03405901,0.0047660135,0.016298866,-0.005606248,-0.00063825515,-0.022739729,0.0034564838,0.05035788,-0.011397966,0.04851442,0.031676006,0.024122322,-0.048424494,0.04237705,-0.033744276,-0.026932472,0.013792213,0.010571782,0.027292171,-0.0042967186,0.0413654,0.015579469,-0.018760556,0.010993305,0.019997023,0.02879841,0.022638563,0.015478303,-0.0033384576,0.032260515,0.020255556,-0.039746754,-0.03313728,0.04251194,-0.016400032,-0.00072642363,-0.008166295,-0.018771797,-0.0037852712,0.004437226,-0.009340936,0.06285742,-0.037790887,-0.0145340925,-0.03196826,0.0046170754,-0.014725183,0.0015961649,0.012106123,0.062542684,0.014196875,0.008722704,0.03329465,0.0050948006,0.0058226297,-0.0011064963,0.012443341,0.03709397,0.02972014,0.010611124,0.0058788327,-0.05058269,0.014792627,0.007817836,0.0037656003,-0.00978494,-0.021896685,-0.061778326,0.0010193817,0.0045805434,0.013780973,0.02106488,0.0011690222,0.028168937,-0.014905033,0.05791156,-0.010774112,-0.022256384,0.0154221,-0.0026246796,0.028618561,-0.016343828,-0.016815934,0.034755927,-0.025246382,-0.0058001485,-0.002557236,0.010656087,-0.011060748,-0.008306801,0.020030744,-0.007469377,0.028843373,0.021345895,0.0059406557,0.0022045623,-0.03363187,-0.0024125131,0.02614563,-0.0055444245,-0.005420778,0.012241011,0.017524092,-0.021862961,-0.023672698,0.002051409,-0.0098242825,0.004459707,0.03122638,-0.03554277,0.013095296,0.028865855,-0.020941233,0.020176873,0.023740143,-0.028528636,0.02050285,0.01615274,0.0410057,0.00187999,0.016456235,0.020761384,0.051616825,-0.04325382,0.008632779,0.007992065,-0.020165632,-0.0015680634,0.013758492,-0.023223074,-0.008559715,-0.011195635,-0.016310107,-0.0035604592,-0.01561319,-0.017760145,-0.026190592,-0.0042995284,0.014713942,0.0065307873,-0.006845524,-0.025718488,-0.008717083,0.030979088,-0.016770972,-0.015826762,-0.03498074,0.008194395,0.016534919,0.016636085,0.020974955,-0.025044052,0.0055584754,-0.0065026856,0.019097775,0.02783172,-0.01768146,0.0030827338,-0.013949581,-0.031496156,-0.023268037,0.0010580212,-0.0027230347,0.0172768,0.014151912,0.028641043,-0.029832546,-0.011993717,0.00921729,0.0032401022,0.044894945,-0.032058183,0.016692288,-0.0021343085,-0.017018264,0.013668567,-0.014264318,0.039184723,-0.0026710469,-0.016208941,-0.0074019334,0.0041449703,0.011836349,0.0033525082,-0.014039506,-0.009267872,-0.006457723,-0.016107777,0.009481444,0.006603851,0.018828,-0.0102233235,-0.011251838,-0.007992065,-0.010656087,-0.021514503,-0.00004685046,-0.0009631787,0.0036616246,0.04568179,0.03691412,0.021053638,0.0027384905,0.022706008,-0.003046202,0.002992809,0.014331762,-0.017939994,0.038825024,-0.010650466,-0.0018308123,0.050537728,0.000053085478,0.0070871967,-0.018288452,0.029944953,-0.03291247,0.020761384,0.02895578,0.000008287745,0.00545169,0.029292997,0.03673427,-0.015467063,-0.040533595,-0.009953549,0.0026232745,0.024931645,0.009340936,0.0018504834,0.001119142,0.007503099,0.014185634,-0.00865526,0.009981651,-0.004271427,0.02612315,0.03824051,-0.024122322,-0.0105212,-0.038712617,-0.01788379,-0.016501198,0.012746838,-0.017827587,0.024212247,-0.030372094,0.018670632,0.0020767003,0.020648977,0.01690586,0.01751285,0.018681873,-0.009858004,-0.007992065,0.02445954,0.039589383,-0.030821718,0.015343416,-0.04120803,0.018221008,-0.021345895,-0.0029394163,0.018940406,0.023627736,0.02351533,0.021188525,-0.021997849,0.028416231,0.012769319,-0.016411273,0.018490782,-0.016703527,-0.009610711,-0.014275559,0.0103975525,-0.03104653,-0.020412926,0.012555747,-0.0051847254,0.009059922,-0.03351946,0.0070590954,-0.027899163,0.048559383,0.03653194,0.002238284,-0.0022804362,-0.005499462,-0.0062778736,0.0048643686,0.023627736,0.010695429,-0.016557401,0.001995206,0.04797487,0.03423886,-0.058226295,-0.0056793117,-0.036284648,-0.0045046695,0.021930406,0.028303824,-0.007997685,-0.023560293,-0.012207289,-0.019288866,0.0138484165,0.0024982227,-0.026842548,-0.013713529,0.0282139,0.000573973,0.004945863,0.013556161,-0.0018013058,0.012634432,-0.019614842,-0.018872963,0.030619388,0.017973715,0.019468715,-0.02839375,-0.009059922,0.048244644,0.01995206,0.008351764,-0.0040775267,0.019412512,0.022706008,-0.0013376311,0.0038667656,0.0021230679,0.007244565,0.016489957,-0.007295148,-0.036554422,-0.017895032,-0.023447886,0.025358789,-0.008801388,0.015028679,0.009734358,0.043141413,-0.0014921894,0.006598231,0.011105711,0.006637573,0.018603189,-0.061238777,-0.020974955,0.002803124,-0.0030967847,0.034463674,-0.011229357,0.018074881,0.003425572,0.009054301,0.031496156,-0.008121332,-0.0071996027,-0.007491858,0.00067443587,-0.006041821,-0.023155631,-0.025044052,0.005437639,0.03295743,0.01806364,-0.015680633,-0.006154227,-0.03684668,0.0073232492,0.059080582,0.000032250857,0.004226465,0.018546985,-0.03313728,-0.030889163,-0.02670766,0.0113192815,0.018872963,0.011414827,0.0018757747,0.0024715264,-0.01598413,-0.014163153,0.026392924,-0.00085990573,0.014893792,0.019648565,-0.018187286,-0.025156457,0.041073143,-0.014061987,-0.004437226,0.016242664,0.01897413,-0.0013713529,-0.0008739565,-0.011825109,-0.028910818,-0.0025881475,0.0023549052,-0.01861443,-0.022548638,0.030124802,-0.01240962,-0.018153565,-0.015163566,-0.033766754,0.003234482,-0.023268037,0.015523265,0.03007984,-0.007598644,-0.0075143394,-0.013252664,0.042646825,0.004248946,-0.011589056,0.029540291,-0.05346028,0.04725547,0.013668567,-0.020750143,0.00049388374,-0.018333415,-0.022357548,0.008239358,0.025156457,0.011133811,0.01826597,0.022784691,-0.01185883,-0.008767666,0.01845706,-0.01690586,-0.012668153,-0.037925776,-0.009902966,-0.017625257,-0.010835936,-0.0042096036,0.010830316,0.0020429785,-0.0043135793,-0.0073063886,0.014556574,0.042579383,0.004943053,0.030529464,-0.015860483,-0.0067274976,-0.003105215,0.007834696,-0.0078122155,-0.014286799,0.005794528,0.005190346,0.008514753,0.016860897,-0.0014556574,0.009992891,-0.012117364,0.021784278,-0.02200909,0.005682122,0.02767435,-0.0075930236,-0.0016074055,-0.036464497,0.028303824,0.010065955,-0.008407967,0.058226295,-0.043725923,-0.0006175303,-0.04476006,-0.010650466,0.049413666,-0.005760806,0.04757021,-0.004810976,0.020019503,-0.018389618,-0.008531613,-0.0013025042,-0.014253078,0.013814694,-0.018400857,0.00069937593,-0.018400857,0.0021539796,-0.016647326,0.0055978177,-0.016107777,0.005741135,0.008368625,-0.027809238,0.012432101,-0.007469377,0.0085540945,0.005555665,0.026258036,-0.00071131904,-0.027382096,-0.030979088,-0.0058057685,-0.007075956,-0.016197702,-0.036959086,-0.0017970905,0.010802214,0.01034697,-0.007992065,-0.03558773,-0.017029505,-0.0018546986,-0.0026387302,-0.004707,0.019041572,-0.0114316875,0.020626497,0.013578642,-0.0070309937,0.010324488,0.040601037,0.027606908,0.012252252,0.0076773283,0.004605835,-0.003987602,-0.009992891,0.012274733,-0.028820893,0.0019825604,0.0127918,-0.010656087,0.014579055,-0.025516156,0.002293082,-0.03381172,-0.014028266,0.04792991,0.01202744,-0.02161567,0.03345202,-0.025988262,0.00095966604,0.049593516,0.0052718404,-0.006660054,-0.005491032,0.0062553925,-0.0015680634,0.008975618,0.011836349,-0.030484501,0.027989088,0.03046202,-0.036599386,0.0076998095,-0.01785007,0.00073836674,-0.0014444168,0.010993305,0.026775103,-0.013286387,-0.0116564995,0.011150673,-0.0064970655,-0.027044877,0.00042925033,-0.009858004,-0.043388706,0.0023155631,-0.027764276,0.01298289,-0.01673725,0.004268617,0.006283494,0.048379533,-0.020300519,-0.009059922,0.017580295,-0.012859244,-0.0016397221]},{"id":"interface-VoiceConnectionEvents","type":"interface","source":"main","text":"Interface: VoiceConnectionEvents\nProperties: disconnect: [], error: [err: Error], ready: []","meta":{"url":"/docs/typedefs/VoiceConnectionEvents"},"embedding":[-0.008668727,-0.011521579,0.0066044684,0.0046967687,-0.032517873,0.040983655,-0.008338214,0.009045628,0.021767493,-0.011770913,0.013672815,-0.026139546,0.017001143,0.03196122,0.016096579,-0.010727188,-0.021326808,0.087580234,0.020062739,0.021060077,-0.015771864,0.011968062,0.020886123,0.044369966,-0.012826237,0.025142208,-0.003047101,0.05404183,0.015702283,-0.021906655,0.049124718,-0.026904946,0.014183081,0.0026426571,0.0010038618,0.017569393,0.013846769,0.031126238,-0.053809892,-0.002520889,0.004557605,-0.03562586,-0.01731426,-0.012176807,-0.025443729,-0.004032843,0.007543822,0.011307036,-0.017418632,0.009834222,-0.027902285,-0.016166162,-0.012315971,0.044601906,-0.015076047,-0.029154755,-0.034373388,-0.0034240023,-0.030221676,-0.021802284,-0.007311883,0.006250761,0.0065812743,0.020236693,-0.0124667315,-0.0074394494,-0.012327568,0.015934221,-0.0064884988,0.020085933,-0.012895819,0.019459698,-0.045019396,0.02017871,-0.011933271,0.027183272,-0.0082048485,0.008802092,-0.023449052,-0.013000191,0.015145629,-0.0007849692,-0.08442587,-0.048753615,-0.011718728,0.013707606,-0.12543271,-0.0026977425,0.010037168,0.016919963,-0.06285552,0.00938194,-0.0070625483,-0.04432358,0.010112548,-0.02426084,0.06350495,-0.014206275,-0.0010973623,0.025675667,0.058680613,-0.029966542,-0.022498101,-0.045297723,0.005572339,-0.0010045866,-0.0018975525,-0.011683936,-0.060304187,0.016989546,-0.0037052284,0.060768068,-0.00694078,0.017221484,0.004447434,-0.043952476,0.05441293,-0.046202287,0.035301145,-0.0075612175,-0.036414452,0.006018822,-0.0066566546,0.030871106,0.0050127856,0.0012452235,0.017940495,0.020700572,0.0006410944,-0.003867586,0.0484289,0.043419015,0.0075148297,-0.015505134,-0.022788025,0.00575789,-0.037133463,0.015806656,-0.062948294,-0.0028963406,0.008894868,-0.0035399718,0.0636905,-0.001311906,0.036484033,0.05046997,-0.010292301,0.003383413,-0.008860077,0.005102662,-0.04706046,0.025420535,-0.018427568,-0.008228042,-0.015273196,0.0011553471,0.007108936,0.03757415,-0.026881753,-0.012049241,0.015876237,-0.025281372,-0.00766559,-0.014519393,-0.03574183,-0.009173195,0.022393728,0.016409697,-0.038896203,-0.00823964,0.023553424,0.00008434976,-0.034605328,0.03901217,-0.034350194,-0.046689358,0.04065894,0.01578346,-0.0061000003,0.0015771865,0.02699772,0.0047460557,-0.010234317,-0.05190799,-0.037736505,-0.026858557,0.012953804,0.07561217,0.024168063,-0.064061604,0.006442111,-0.0015568918,-0.037736505,0.024515972,0.034698103,0.010402473,-0.01201445,-0.0058680614,-0.011852092,-0.04782586,-0.0060710083,-0.023182321,0.039823957,-0.0117013315,-0.013788785,-0.023356276,-0.012350761,0.026673006,0.040867686,-0.0044300384,0.05404183,0.0008422292,0.007769963,0.0071031377,-0.035649054,-0.0010524241,-0.0023425857,0.025374146,-0.010744583,-0.027113691,-0.029966542,-0.01441502,0.06587073,0.01846236,0.045529664,0.01651407,0.0032500478,-0.025652474,0.0014206275,-0.012385553,-0.031334985,-0.015597911,0.010025571,0.0010328542,0.028922817,-0.025768444,0.026649812,0.014217872,0.03425742,0.046387836,-0.053485177,-0.048104186,-0.0019163975,0.038153995,0.05659316,0.032773007,0.01861312,0.02734563,-0.010356084,-0.005914449,0.0117013315,0.06656655,0.037017494,0.0064363126,0.015250001,0.0079497155,0.004679373,-0.03291217,0.015076047,0.012095628,0.009654469,-0.029896962,-0.03142776,0.03539392,-0.0020947007,-0.07366388,0.038038027,0.014820914,-0.027438406,-0.0047605517,-0.011086693,-0.03462852,0.053809892,-0.010025571,-0.033074528,-0.015099241,0.011005514,0.03864107,-0.00027470296,0.04367415,-0.0015583414,-0.0049953903,-0.043001525,0.054320157,0.0077931564,0.03692472,-0.05023803,-0.012988594,0.019517682,0.022822816,0.036484033,-0.013069773,0.038385935,-0.063412175,0.040867686,0.0499597,0.05775286,-0.018427568,0.025722055,-0.014322245,0.048614454,-0.021002093,-0.004612691,-0.006152187,-0.0002687233,0.047269206,0.007567016,0.018543538,0.068561226,0.0049953903,0.0035573673,0.01628213,-0.03367757,0.0058535654,-0.0052389265,0.029456276,0.019459698,0.027507987,0.012849431,-0.017998481,-0.020700572,-0.018091256,0.0042473865,-0.001559791,0.022254566,-0.009242777,0.006708841,-0.021106467,-0.002357082,0.054552097,-0.029038787,-0.07347833,0.0023889737,0.0171635,0.03302814,0.027368823,-0.06350495,-0.0015786361,-0.032541066,0.025582893,0.062113315,-0.019958368,-0.04610951,0.0146469595,0.04671255,-0.01826521,-0.006007225,-0.012710268,-0.04024145,0.023669394,-0.048568066,-0.011614354,-0.03722624,-0.04492662,0.016803995,-0.008216445,0.0021715306,-0.0068769967,-0.03539392,0.038873006,-0.024284033,0.013220534,-0.029456276,-0.008349811,-0.0499597,-0.0083324155,-0.0674943,-0.012234792,0.0003647606,-0.05580457,0.037875667,0.0068769967,-0.018207226,0.027902285,-0.04302472,-0.0072828904,-0.08071484,0.003226854,0.032517873,0.027299242,0.034651715,0.007862738,-0.035301145,-0.0024701522,-0.021535553,-0.0084889745,-0.06498936,0.014519393,-0.009028233,-0.00035298246,0.07268974,-0.01598061,-0.025304565,-0.011144678,0.03425742,-0.040612552,-0.0063667307,0.027206466,-0.021338405,-0.024121676,0.06577795,0.0047808466,-0.01518042,0.02681217,-0.00759021,-0.014960078,0.050980233,0.040914074,0.019772816,-0.016699621,0.04492662,-0.019935174,0.029525857,0.007108936,0.022440117,-0.058634225,-0.0027774717,-0.036252096,0.020607797,0.038757037,0.024191257,0.020607797,-0.019448102,0.015887834,-0.019633653,0.025466923,-0.01213042,0.026881753,0.028737266,-0.022057416,-0.026603425,0.0301289,0.048568066,0.060628902,0.03516198,-0.04599354,0.03864107,-0.0056419205,-0.03905856,-0.023634603,-0.054088216,-0.007700381,0.038269967,0.04058936,0.005404183,0.0146469595,-0.0032674433,-0.005812976,0.00033649302,0.014693348,-0.02497985,-0.01319734,-0.036484033,0.03066236,-0.054598484,-0.03604335,0.006285552,-0.0030065116,-0.028690876,-0.039035365,-0.03425742,-0.034048673,0.004134316,0.056685936,0.018520344,0.012489925,-0.0036066542,0.035138786,-0.01102291,0.020828139,0.026417874,-0.015702283,-0.0028209602,0.0034848864,0.044253998,0.012118823,0.029780991,-0.01994677,-0.007480039,0.0012901617,0.0044329376,0.026510648,0.0006048539,-0.0018671105,0.022405325,0.044601906,0.0036791353,-0.016861979,-0.0915232,0.018624717,0.0019700334,-0.0190654,0.03177567,-0.010982321,0.044741068,-0.00030768182,-0.019958368,-0.024840686,0.025049431,-0.02906198,0.01083156,-0.02166312,0.012663879,0.0027948671,0.047686696,0.032053996,-0.012884222,-0.05747453,-0.020573005,-0.025072627,0.043766923,-0.008454183,-0.0446251,-0.008546959,-0.03344563,0.017952094,0.029734604,-0.015795058,-0.016224146,0.021616733,-0.02841255,0.00010491624,0.031891637,0.019227758,-0.008662929,-0.010669203,-0.012559507,-0.014275857,-0.00093500485,-0.014426617,0.0115041835,0.00819905,-0.042955138,-0.012571104,-0.017685363,0.056036506,0.024724716,0.0005345473,0.013603233,-0.007938119,-0.008001902,0.04917111,-0.018253613,-0.017905705,-0.023367872,0.023205515,0.005995628,-0.001758389,-0.014751332,0.01201445,-0.013069773,-0.007532225,0.006650856,-0.02039905,0.034303807,0.00031891637,0.024631942,-0.023356276,-0.004015447,-0.018659508,0.006761027,-0.019540876,0.04699088,-0.025443729,-0.013545249,0.0007842444,-0.0037081277,0.0141946785,-0.010889545,0.016838785,-0.005572339,-0.01090694,-0.0047953427,0.018682702,0.007578613,-0.0098052295,-0.020109128,-0.011005514,-0.0072596967,-0.023588216,-0.004609791,-0.00892386,-0.004061835,0.07143727,-0.03539392,-0.011457796,0.009329754,-0.039522436,0.019169774,0.024585554,0.010744583,0.000022095379,0.009631274,0.032100383,-0.027971866,-0.014438215,0.012408746,0.025582893,0.026023576,0.017453425,-0.0068074153,0.034651715,-0.0036240497,-0.020306276,0.04137795,0.018160839,0.009207985,-0.0149020925,-0.02562928,0.011144678,0.0070451526,0.020619394,0.010698195,-0.03692472,-0.00858175,-0.007827948,-0.035301145,-0.01155637,0.0047721486,-0.015226807,0.009793632,0.02223137,-0.058634225,0.05255742,-0.0034298007,0.02433042,-0.025907608,-0.003931369,0.015586313,-0.015853044,0.008796293,0.015296389,-0.0024556562,-0.01731426,-0.036855135,-0.013777188,0.054134607,-0.0037690117,0.0020367159,-0.0240289,0.0026209129,-0.03553308,0.022625668,-0.00012928798,0.036437646,-0.00013318383,-0.02776312,-0.007253898,-0.026649812,0.012095628,0.0038356942,-0.04274639,0.021280421,-0.0053983848,0.026325097,-0.025350953,-0.006987168,0.017789736,0.0035370726,-0.002448408,-0.0011538975,0.058263123,0.018636314,0.011991256,-0.017349051,-0.01140561,0.032332323,0.023425858,-0.024191257,0.01567909,0.01438023,0.075565785,-0.0017482416,-0.007961312,0.03618251,-0.0183116,-0.0038994777,-0.027438406,0.012872625,-0.01899582,0.0037922056,0.026788976,-0.05084107,-0.0016685125,-0.0057520918,-0.0012423242,0.051304948,-0.027206466,-0.010501047,0.013139355,0.004980894,0.027855895,0.044068445,0.013034983,0.0100313695,0.0007070521,0.030291257,-0.01109829,0.022660458,-0.009811028,-0.010350286,-0.042769585,0.028203804,-0.0085585555,-0.0050301813,0.029780991,0.020700572,-0.009770438,0.00027379696,-0.008042491,-0.005534649,0.02829658,-0.037295822,-0.012768252,0.007903328,0.003989354,-0.02883004,-0.005088166,0.020352663,-0.052650195,0.023170725,0.0061000003,-0.02231255,0.04606312,-0.0018366685,0.0059173484,0.029433083,0.026209127,-0.028853234,-0.0059376433,-0.00846578,0.022324147,-0.029873768,-0.0036472436,-0.0023701286,0.039174527,-0.005636122,0.014229469,-0.018334793,-0.028714072,0.02829658,-0.013568442,0.034790877,0.003818299,-0.020039545,0.017778138,0.0003288825,0.02379696,-0.0141135,-0.003047101,-0.030314451,0.006337738,-0.049217496,0.01773175,0.017291067,-0.009515305,0.0065696775,-0.015841447,-0.007555419,-0.026719395,0.014322245,-0.002864449,0.013545249,0.038687456,0.010872149,0.029943349,0.0020961503,-0.013591636,0.056732323,0.06350495,-0.017836124,-0.009979184,-0.03949924,0.015493537,0.014055515,0.00059651857,-0.03490685,-0.049913313,-0.024956657,-0.0039342684,-0.021593539,-0.021964641,-0.010356084,-0.03172928,0.008761503,-0.016815592,0.0010089355,-0.008674526,-0.043001525,-0.030824717,-0.028157417,-0.022440117,-0.03131179,-0.04114601,0.021721104,-0.01952928,0.013985933,-0.09300762,0.01876388,-0.01567909,0.0043082703,-0.0015221009,-0.023715781,0.004543109,0.028227,-0.018578328,-0.025582893,0.029293919,0.025907608,0.011202662,-0.047083654,0.03474449,-0.01941331,0.0032065592,0.032053996,0.040427,-0.003867586,0.010170533,0.025536504,-0.0033167303,0.07403499,0.00018491714,0.016989546,-0.017975288,-0.0014329493,0.011312834,0.041099623,0.028528519,-0.0025426333,-0.027902285,0.016340116,0.06304107,0.0050011887,-0.018659508,-0.004186502,-0.035556275,-0.053763505,0.005088166,-0.012327568,0.004287976,0.021141257,-0.0024194156,-0.0008806441,-0.019320535,0.019123387,0.01148099,-0.010814165,-0.01719829,-0.001975832,0.01654886,-0.025675667,0.027136885,0.05728898,-0.037017494,0.056454,0.0078047537,-0.029154755,0.038803425,0.034999624,-0.008187453,-0.013533652,0.012571104,-0.015887834,-0.03291217,0.006337738,0.013011788,-0.017302664,0.004148812,0.029433083,0.0031804661,-0.015725477,0.027879091,0.044439547,0.013266921,0.0018236218,0.018555135,0.022695249,-0.014716541,0.014484602,0.038200382,-0.001540946,0.01952928,0.010843157,0.0065348865,0.0066566546,-0.0018700097,0.024539165,0.0030181087,-0.018624717,0.00015755557,0.0051200576,0.024052093,0.010553233,-0.013092967,-0.04274639,-0.0002112821,-0.011533176,0.014206275,-0.01758099,0.015853044,-0.007242301,-0.024562359,-0.011596959,0.005189639,0.033631183,0.0036472436,0.030801523,-0.02906198,-0.04218974,-0.0006334839,0.042236127,-0.01896103,-0.045065783,0.022706846,-0.009555895,0.0016293728,-0.007752567,-0.03817719,0.03901217,-0.008912263,0.008796293,0.014310648,0.016084982,0.018172435,-0.033399243,-0.01254791,-0.0075380234,-0.011451997,-0.036066543,-0.00228895,0.0054418733,-0.011620153,0.009207985,-0.027670344,0.013092967,-0.018450763,0.023820154,-0.0036704377,-0.014067112,-0.009167396,-0.07129811,-0.013823575,0.026951334,-0.025698861,0.031242209,-0.008494773,0.037087075,0.016722815,-0.010118347,0.0015757368,-0.026719395,-0.013255324,0.054459322,0.002158484,0.012408746,-0.00036965308,0.013719203,-0.0033805135,0.034837265,0.03829316,0.010744583,0.022103805,-0.01849715,-0.022115402,0.009150001,-0.0011799906,0.011411408,0.004134316,0.016966352,-0.011220058,-0.026464261,-0.026139546,0.034118254,-0.0072596967,0.003505181,-0.013371294,0.0068422058,0.014728138,-0.008442586,-0.001468465,0.02039905,0.03374715,0.00017141756,0.035602666,0.014681751,-0.024237646,-0.023251904,0.038339548,0.032749813,0.038038027,-0.018937834,-0.02829658,-0.039823957,0.021384792,0.015899431,-0.010802568,-0.00022161064,-0.001807676,-0.011417206,0.0034355992,-0.0046706754,0.0038009034,-0.022950383,-0.015992207,0.02101369,0.04569202,-0.01598061,0.016583651,0.014229469,-0.020074336,-0.0009096365,0.014484602,0.03135818,-0.039568827,-0.03439658,-0.019633653,-0.015911028,0.034002285,-0.016409697,0.00037436435,0.059098106,0.0073060845,0.011724526,0.010112548,-0.043952476,-0.029154755,0.010744583,0.023959318,-0.03397909,-0.007897529,-0.038919397,0.020283083,0.008674526,0.03237871,-0.0003484524,0.022683652,0.014832511,-0.0022947483,-0.0202135,0.006442111,0.0034529946,0.027786314,0.0038414928,0.012872625,0.053531565,0.011434602,0.025072627,-0.0030847911,0.006285552,0.026325097,0.016166162,-0.036298484,-0.0068654,0.0008226593,-0.0036936316,0.025884412,0.0020425145,-0.014032321,0.020515021,-0.010495248,-0.017720154,-0.0025498813,0.042584036,-0.031056657,0.019761218,0.0035863596,-0.0107967695,0.029177949,-0.0024223148,0.023553424,-0.007230704,0.011521579,-0.024539165,0.016618442,0.0031804661,-0.034071866,0.009828423,-0.029943349,-0.0030007132,-0.018218823,0.002726735,0.01647928,-0.007885932,-0.015818253,-0.02906198,0.01731426,-0.015052853,-0.0008016398,0.00518674,-0.01628213,-0.021558747,0.0034964832,-0.011179469,-0.023704184,0.009857415,0.0010690946,-0.010437263,-0.030384034,0.021802284,-0.014809317,-0.02151236,-0.025907608,0.0014090305,-0.0077119777,0.046271868,-0.005259221,0.022648862,-0.057149816,0.008970248,0.010385077,0.012385553,-0.0061579854,0.02154715,0.0043111695,-0.044253998,0.008436788,0.012745058,-0.049124718,-0.009376141,0.0167808,-0.01213042,-0.0045025195,0.012408746,0.03618251,-0.024307227,0.059933085,-0.015516732,-0.0014068561,-0.052603807,0.030639166,0.018647911,0.021036884,0.04374373,-0.04481065,-0.020804945,-0.022567682,0.012049241,0.00059434416,-0.017256275,-0.007085742,-0.017244678,0.004015447,0.015644299,0.022614071,-0.020677378,0.002509292,0.013800382,0.050655518,-0.0074742404,0.004632985,0.019842397,0.04824335,0.021790687,-0.014844107,0.014438215,-0.013150952,-0.016722815,-0.007480039,0.040705327,0.00087774487,-0.011852092,0.010390876,-0.0022947483,0.019865591,0.0019874289,0.021837074,-0.0034877856,0.008639734,0.0138119785,0.019285744,-0.0061115976,-0.031706087,-0.03611293,-0.013603233,-0.0017844822,0.05278936,0.055850957,0.012188404,0.025258178,-0.0055926335,-0.022451714,-0.055433467,0.029015591,-0.0040705325,-0.008355609,-0.005427377,-0.007990305,0.017882511,-0.0011981109,0.013835172,-0.059979472,0.00438655,0.017836124,-0.015725477,-0.027902285,0.0038588883,0.0074394494,0.018172435,0.010025571,-0.03379354,-0.01632852,-0.012791446,-0.010976522,0.028714072,0.014728138,0.00031837277,-0.0024020202,-0.03379354,0.008790495,0.007990305,0.03416464,0.007050951,0.035788216,-0.005812976,-0.014971674,0.020677378,0.012698671,0.0022353139,-0.03191483,0.024933463,-0.022579279,-0.021825477,0.012965401,-0.00087846967,-0.026232323,-0.007143727,0.021419583,-0.0016830087,0.011573765,0.002791968,0.013255324,-0.041053236,0.04585438,-0.018624717,-0.003142776,-0.011921674,-0.02947947,-0.0050359797,0.007839545,-0.001643869,-0.0054476717,-0.0048533273,-0.00392847,0.008628137,-0.0074510463,-0.052696582,-0.046550196,-0.009515305,0.0062449626,0.016664831,-0.00831502,-0.013777188,-0.016734412,0.0063145445,-0.009254374,0.03001293,-0.0033457228,-0.00095457473,-0.015087644,0.007468442,0.01903061,0.006459506,-0.022973577,0.021280421,-0.04154031,-0.032471485,0.0021468871,0.015145629,0.0034964832,-0.011156275,-0.03829316,0.0102575105,0.018369583,0.0015032558,0.052464645,0.028853234,-0.0026629518,-0.032587454,0.0053751906,-0.037319016,-0.024492778,0.005807177,0.0074046585,0.012211598,-0.014287454,-0.023889735,-0.013069773,0.024005705,0.0071147345,-0.036739167,0.027739927,0.008025096,0.018184032,0.020422244,-0.0019308937,0.011208462,0.022938786,-0.019819204,-0.034883652,-0.0005182391,0.009150001,0.012478328,0.0016670629,0.04049658,-0.0069233845,-0.019633653,-0.018775476,-0.023217112,-0.004241588,-0.038316354,-0.0062971488,0.009828423,-0.004169107,-0.011069298,0.01254791,0.032355517,-0.0131741455,-0.026000382,-0.020201903,-0.020352663,-0.008112073,0.070231184,-0.025327759,-0.009544297,-0.011324431,0.009584887,-0.01388156,-0.03782928,0.0012292777,0.00081178715,0.009480515,-0.0068016164,-0.014936884,-0.0549232,-0.018937834,-0.019772816,-0.0190654,-0.01243194,0.018300002,-0.008257035,0.0016351712,-0.011991256,0.028342968,-0.00091326056,-0.009561693,-0.0053346013,-0.015725477,-0.03462852,-0.0038009034,-0.026858557,-0.020932512,0.02906198,-0.0012111574,-0.019552473,0.026000382,0.010924336,-0.01586464,-0.004459031,0.0029775193,0.015041256,-0.05297491,0.024191257,0.021721104,-0.0024324623,-0.021083271,-0.013904754,0.029572247,0.01479772,0.00081251195,0.02227776,-0.027484793,0.017673766,0.0147745265,0.0059434418,-0.008767301,-0.0065464834,-0.03486046,0.027879091,0.037968446,-0.004435837,-0.022706846,0.012327568,-0.0014887596,-0.03829316,0.015969014,-0.026626619,0.010037168,0.021373196,-0.017952094,-0.026649812,0.010008176,-0.016977949,0.011544773,-0.00095022586,0.022126999,-0.054969586,-0.0069465786,-0.019308938,-0.006355134,0.030059319,-0.017105514,-0.031798862,-0.005175143,-0.016954754,-0.036298484,-0.03156692,-0.028992398,0.02551331,0.002845604,-0.0034153045,0.012710268,0.0014887596,0.008338214,0.02017871,0.02757757,0.029456276,-0.00012847256,-0.010390876,0.029780991,-0.064386316,0.03752776,-0.028899623,-0.0016888072,0.010959126,-0.026441067,0.01891464,-0.04302472,0.0017221485,0.029038787,0.028783653,0.00640732,-0.013104564,0.012478328,-0.006459506,-0.019285744,0.0480578,0.004206797,-0.005366493,-0.0010285053,-0.001098087,-0.0106112175,0.038571488,0.0274616,-0.039452855,0.027693538,0.03295856,0.007311883,0.01506445,-0.023472246,0.029293919,0.02616274,-0.008645534,-0.0027557274,-0.018184032,-0.034280613,-0.017441826,0.030221676,0.0118868835,0.008396199,-0.005984031,0.01022272,0.0077177766,0.026464261,0.032401904,0.007961312,0.0105126435,0.0068769967,-0.007827948,-0.00720751,-0.030337645,0.004954801,0.0042241924,0.0046010935,-0.00369943,0.017024336,0.039545633,0.033167303,0.0029775193,-0.008187453,-0.005691208,-0.026325097,0.00020965128,0.02086293,-0.022509698,-0.015505134,0.010599621,-0.001735195,0.029270725,-0.025536504,-0.0048446297,-0.015876237,0.0139395455,-0.0013343751,0.012710268,-0.008987644,-0.019019013,-0.017418632,-0.015122435,0.02116445,-0.010054564,0.019506086,0.039174527,0.0074742404,0.009260172,-0.001293061,0.017720154,-0.0018439165,-0.0016148766,-0.009248575,0.037087075,0.017569393,-0.023437455,0.07032396,-0.03367757,0.013139355,-0.009097815,0.026603425,-0.0027020916,-0.001933793,-0.00068603264,-0.008622339,-0.026116353,-0.020190306,-0.006934982,-0.02906198,-0.027113691,-0.006186978,0.029293919,-0.011289639,0.017209888,-0.016746009,-0.0019004517,0.019865591,-0.009984982,-0.017673766,-0.002586122]},{"id":"interface-VoiceConnectionLike","type":"interface","source":"main","text":"Interface: VoiceConnectionLike\nDescription: Union of connection types (Discord-style or LiveKit).","meta":{"url":"/docs/typedefs/VoiceConnectionLike"},"embedding":[-0.032905556,-0.04906737,-0.021319838,0.02313176,0.0247982,0.013377802,-0.0023211115,0.005015849,0.0036205372,-0.014614405,-0.030472027,-0.012200714,0.03629134,0.043486122,0.0010853346,0.0057531823,-0.045179013,0.05861633,0.0061797113,0.016928904,0.005696973,0.023158211,0.042216454,0.040020987,0.0021905077,0.010468147,-0.048141573,0.044570632,-0.004238839,-0.033381682,0.06798013,-0.03518038,0.033831358,-0.0009671298,0.00702285,0.045073207,0.020473393,0.03949196,-0.018013412,-0.0007174946,0.008206551,-0.011407171,0.020658553,0.010421856,-0.040179696,0.0023740144,0.0074857497,0.042957094,-0.042216454,0.0016589996,-0.02827656,-0.030392673,-0.014839242,-0.011136045,-0.012266843,-0.0075783296,-0.016545359,-0.008887675,-0.018158894,-0.007267526,-0.026530767,-0.020711455,-0.01386054,0.0028964297,0.0044669826,0.009707669,-0.03724359,-0.008504129,-0.0021723222,0.015209562,0.031239118,-0.011202173,-0.053617015,0.05819311,-0.0280914,0.033434585,-0.046580937,0.031344924,-0.010230084,-0.048882212,0.0025641338,0.008431388,-0.061102763,-0.04102614,0.008120583,0.006897206,-0.057346664,-0.017021485,0.007604781,0.029070104,-0.033725552,-0.012736355,-0.042771935,-0.044253215,0.0191905,0.030736541,-0.006857529,-0.0003172103,-0.011023627,0.023264017,0.052532505,0.026292704,-0.03708488,-0.035444893,0.030551381,0.00348828,0.017418256,-0.047850605,-0.07210655,0.034730706,-0.053035084,0.025327228,0.008080906,0.008332195,0.0038850512,-0.050151877,0.083745174,-0.008636386,0.0030650576,-0.039650667,-0.051448,-0.020182429,0.045469977,-0.006037535,0.00931751,-0.032984912,-0.008649612,0.021557901,-0.018198572,-0.024084011,0.03478361,0.008166874,-0.0007501455,0.024388203,-0.019679852,0.011142658,-0.066181436,0.018846631,-0.04004744,-0.039386153,-0.019018566,-0.039068736,0.07543943,-0.0043281126,0.04570804,0.049384788,-0.06729239,0.0032717092,-0.044200312,-0.002643488,-0.056606025,0.010421856,-0.028726235,-0.014191183,-0.072159454,-0.01423086,0.00006685181,0.0402326,-0.030313319,-0.048802856,0.034016516,-0.03089525,0.01079879,-0.0036205372,-0.037878424,-0.018661471,0.0148260165,0.030789444,-0.027562372,0.013510059,-0.0104813725,0.00862316,-0.056235705,0.0327733,-0.024229495,-0.06713369,-0.016307296,-0.018767277,-0.039518412,-0.007895746,0.07057237,0.03089525,-0.014931822,-0.07565104,-0.01946824,-0.013152965,-0.0041198074,0.021385968,0.03872487,-0.0599389,-0.0007129482,0.022192735,0.002132645,0.075333625,0.048353184,0.03293201,0.037666813,-0.02331692,0.007935423,-0.038698416,-0.0075055882,-0.028303012,0.02590916,-0.048935115,-0.025975287,-0.0008836425,0.047057062,0.003402313,-0.015593108,-0.007386557,0.023184663,-0.009357187,0.019984042,0.023488855,-0.026901087,-0.032535236,0.0123991,-0.0042421455,-0.0064541446,-0.00076502445,0.0031807823,-0.0146408565,0.04195194,0.0134902205,-0.023515306,0.0224837,-0.002178935,-0.0374552,-0.005247299,-0.016307296,-0.026821733,-0.02350208,-0.031556536,-0.0346249,-0.019679852,-0.01796051,0.009019932,0.01249168,0.06956722,0.0026137303,-0.05165961,-0.02227209,0.01833083,0.03748165,0.0017011565,-0.02141242,0.0071815588,-0.0007203877,-0.008636386,-0.0007646112,0.0393068,0.056076996,0.012981031,0.0017854704,-0.008477678,0.0016680922,0.02069823,0.015579882,0.051448,-0.019547595,-0.020367587,-0.03666166,-0.004999317,0.017021485,-0.023859175,-0.055283453,0.0047116578,0.0014110175,-0.04684545,0.03991518,-0.02171661,-0.006464064,0.034228127,-0.0067252717,-0.03108041,-0.042586774,0.022258865,0.03425458,0.010124278,-0.0052043153,-0.062795654,-0.016981807,0.010726048,0.03764036,0.0009464646,0.02787979,-0.02266886,0.013807638,0.02996945,0.012247005,-0.008590097,0.02171661,0.040893883,-0.026319155,0.039809376,0.0034452965,0.049755108,0.007611394,0.05393443,0.02750947,0.06480596,-0.030207513,0.033275876,-0.00036060714,-0.004185936,0.019335983,0.015751816,0.02593561,0.033725552,-0.020063397,-0.009462993,-0.010732661,-0.044808693,-0.0003684599,-0.04586675,0.018529214,0.008490903,0.009383638,-0.014296989,0.011724588,0.009760572,-0.010699596,0.032006208,-0.021835642,0.051051226,0.00019611242,0.001977243,-0.04361838,-0.0037891648,0.004999317,0.013245545,-0.047109965,-0.01993114,0.013397641,0.02159758,-0.02825011,-0.037190687,-0.0056639086,-0.014429246,0.00706914,0.0017325676,0.035947468,-0.050495747,0.018859858,0.04356548,-0.0050026234,-0.0073534925,0.039412607,-0.01983856,0.02732431,-0.061896306,-0.029096555,0.0027244955,0.007419621,0.010368953,-0.0374552,0.029652033,-0.04340677,0.02030146,0.030762993,-0.023740143,0.0110765295,-0.02790624,0.01005815,-0.03637069,0.006146647,-0.0730588,-0.001391179,-0.03441329,-0.072371066,0.009019932,0.019613722,0.01249168,0.024441106,0.0063450327,-0.010111053,-0.026874635,0.00069724274,-0.008953803,0.016505681,0.04171388,0.042269357,0.029466873,-0.018582117,0.013913443,0.024295622,-0.031530082,0.028858492,-0.04451773,0.020579198,0.0561299,-0.027773984,-0.01706116,-0.026742378,0.015447625,-0.007260913,0.035048123,0.044464827,0.0030634042,-0.011499751,0.034942318,0.016069233,-0.01995759,0.020446941,-0.0027988902,0.011850233,0.015103756,0.022801118,0.032138467,0.010071375,0.046819,-0.04253387,0.028593978,0.0021987737,0.03954486,-0.05131574,-0.030736541,-0.055124745,0.07443427,0.05708215,0.038169388,0.0234095,0.009383638,-0.037058428,0.04750674,0.030630736,0.013596026,0.038645513,0.032482333,-0.05655312,-0.0318475,0.012809097,0.039227445,0.016902452,0.030577833,-0.011731202,0.019693077,0.017140515,-0.0119362,0.0058920523,-0.023726918,0.008292518,0.023211114,0.0017061161,-0.0074592982,0.027959144,-0.014125055,-0.053617015,-0.010640081,0.013219094,0.0022334913,0.034386836,-0.042480968,0.09242123,0.011784105,-0.021690158,0.0044835145,0.063747905,-0.03502167,-0.026160447,-0.0018367199,-0.0012448697,-0.02051307,0.017881155,-0.007816393,0.009674604,-0.0011812209,-0.030683639,-0.022973051,0.012742968,-0.009330736,-0.04573449,0.01061363,0.03279975,0.008788482,0.028197207,0.08871804,0.004261984,0.004123114,0.005667215,0.008583483,-0.003931341,-0.014958274,0.026610121,0.027244955,0.050098974,0.027350761,0.0012068457,-0.050971873,0.00954896,0.01128814,-0.027377212,0.006897206,-0.015275691,0.05107768,0.0012308173,-0.0336991,-0.011698137,0.015288916,-0.061473083,-0.000202002,-0.03126557,0.0041032755,0.06713369,0.07030786,0.03991518,0.04253387,-0.027932692,-0.027297858,-0.039280348,-0.0024682474,-0.007862682,0.013754735,-0.0056010867,-0.029995902,-0.007598168,-0.03166234,0.0036502948,-0.009138963,0.020724682,-0.045787394,-0.0034585223,-0.013245545,0.0053696367,0.0147334365,0.011876685,-0.0018631713,0.019547595,-0.012015554,-0.027244955,0.019534368,0.0019094613,-0.005131574,0.002301273,-0.012617324,-0.0058722137,0.011413785,-0.013073611,0.02864688,0.0041660974,-0.027826887,0.023475628,0.005310121,0.012657001,-0.0066359984,0.02375337,-0.009806861,-0.014667308,0.0163602,0.030075256,-0.0060639866,-0.02864688,-0.007221236,-0.019415338,0.0374552,0.03145073,0.013569575,0.008762031,-0.020460168,-0.008543806,0.0044603697,-0.051395096,-0.0024054253,-0.032455884,-0.03615908,0.007042689,0.009529121,0.008014778,-0.015381496,0.03687327,-0.005293589,0.008762031,0.0147334365,0.03182105,-0.00435787,-0.029096555,-0.007875908,0.0040206145,-0.0016614794,0.008127197,-0.00053150806,-0.016915679,0.012756194,0.0018797035,-0.029757839,-0.051553804,-0.013331512,-0.027641727,0.010230084,0.018595343,-0.010765725,0.03597392,0.006804626,0.02959913,-0.022444023,-0.019521143,0.016876,0.027562372,0.015130208,-0.018582117,-0.025975287,0.046289973,0.009509283,-0.02612077,0.0038850512,0.010666532,0.012471841,-0.0027294552,0.0089405775,0.02412369,0.025393356,-0.0006823638,-0.0031642502,-0.042004842,0.006850916,-0.0018631713,-0.03240298,-0.020155977,0.028408818,-0.039597765,-0.038513258,-0.005759795,-0.019243402,0.043935798,0.014706985,0.03909519,-0.012974418,-0.017484384,0.016876,-0.0028567526,-0.0044603697,0.012147811,0.037508104,-0.011724588,-0.017206645,-0.050072525,0.032984912,0.013635703,0.04438547,-0.031027507,0.006348339,-0.023356598,0.04377709,-0.0035940858,0.037005525,0.0022764746,-0.015500528,-0.032984912,0.0020417185,0.014098603,0.02959913,-0.016069233,0.03949196,-0.005571329,-0.0006112756,-0.011916362,-0.02412369,0.015910525,0.00037300625,-0.0030105014,0.009846538,0.011374108,0.022258865,-0.004705045,0.00021243791,-0.01907147,0.031186216,0.010236696,0.004784399,0.013364577,0.012379261,0.054807328,0.017722446,0.026927538,0.029652033,-0.0145482775,0.0029080021,-0.009264607,0.023898851,-0.027430115,0.015236014,0.011222011,-0.03330233,-0.013754735,0.019177275,0.008570258,0.036185533,-0.013430705,-0.009476218,-0.015130208,0.027086247,0.02097597,0.002309539,0.0032485642,0.0102763735,-0.0147334365,0.042719033,0.011030239,-0.009429929,-0.025234647,-0.0046256906,-0.034704253,-0.041660976,0.0057631014,-0.0035312637,-0.0036436822,0.034704253,-0.015936976,-0.011420397,-0.026596896,-0.047824156,0.006533499,-0.029175907,0.037296493,0.024163365,0.014786339,-0.046289973,-0.04250742,0.03279975,0.006655837,-0.0035610215,0.03330233,-0.023065632,0.014468923,-0.0029228812,0.027244955,0.0017176886,0.008821546,-0.03539199,0.023449177,-0.0031576373,-0.00716172,-0.0150111765,0.030789444,-0.012835548,0.0053894753,-0.018714374,0.014905371,-0.05070736,-0.018026637,0.018489538,0.0042917416,0.010626855,0.0074989754,-0.010673145,0.03279975,0.03033977,0.042798385,-0.027456567,0.016704068,-0.0042818226,0.010600404,-0.04134356,0.02393853,-0.019719528,-0.015460851,0.0005265484,-0.010686371,-0.008107358,0.027800435,-0.0042454517,0.020129526,0.0048174635,0.036582302,0.01958727,0.021452095,-0.025882708,-0.059251163,0.04967575,0.025618194,-0.0064673703,0.009866377,-0.039148092,0.007690748,0.015288916,-0.011863459,-0.05107768,-0.0346249,-0.0018813567,-0.012101522,-0.015685689,-0.03835455,-0.005673828,-0.047665447,0.010091214,-0.02097597,0.010342502,-0.0044140797,-0.0014035781,-0.017365353,-0.021187581,-0.0030634042,-0.005439072,-0.012108134,0.010646693,0.027430115,0.018436635,-0.10448308,-0.020936294,0.003557715,0.012392486,-0.008186712,0.0018433328,0.002774092,0.041317105,-0.0034122323,-0.017074388,-0.0029212278,-0.0005319214,0.03145073,-0.024626266,0.02106855,-0.020592425,-0.0124123255,-0.003217153,0.034942318,0.024163365,-0.0012456962,0.029387519,-0.021888545,0.06459435,0.011215399,0.021571128,-0.03205911,-0.01768277,0.016188264,0.03552425,0.009231543,-0.038857125,0.005548184,0.008166874,0.02827656,0.0043677897,0.0037329555,-0.01151959,-0.002116113,-0.05255896,-0.017259547,-0.01202878,-0.0356036,0.0024847796,-0.025724,-0.0018714374,-0.021504998,0.034545545,-0.011248463,-0.0043843216,-0.031926855,-0.03182105,0.030048804,-0.023092084,0.021571128,0.034016516,-0.023158211,0.03502167,-0.009694443,0.01323232,0.037428748,0.003868519,0.013715058,0.0147334365,0.012478454,-0.015421174,-0.010309438,0.0067418036,0.019269854,-0.01833083,0.020433716,0.03145073,0.014257312,-0.0012051925,0.032482333,0.028223658,0.00293776,0.013900218,0.011195561,0.032270722,0.050813165,-0.005518426,-0.009727507,-0.006262372,0.032508787,-0.0039048898,0.005627538,0.0005017502,-0.010064763,0.026504315,0.013278609,-0.009231543,0.021214033,0.0073072026,-0.0028038498,0.023674015,0.00066169864,0.013252158,-0.0014399488,-0.012008942,0.049384788,-0.011440236,-0.0005860641,-0.020222105,-0.00968783,0.010990562,0.016492456,0.04232226,0.05538926,0.0047083516,-0.026530767,-0.03518038,-0.023105308,0.020288233,-0.041687425,-0.03761391,0.020764358,0.00615326,-0.031212667,0.011030239,-0.050866067,0.033275876,-0.016452778,-0.045073207,-0.0012696678,0.021055324,0.014667308,-0.021914996,0.008113971,0.0055514905,-0.029652033,-0.024639491,0.0054919748,-0.0011952732,-0.006001164,-0.020155977,-0.0017970429,0.008332195,0.00094233156,0.0045463364,-0.005310121,0.020632101,0.0028484864,-0.01796051,0.0014630938,0.0022334913,0.0143631175,0.015632786,0.01061363,0.005587861,0.015249239,-0.0036536013,0.0036469884,-0.006004471,-0.0052737505,0.04700416,-0.015950201,0.020394038,0.0026467945,0.007823005,-0.029493324,0.03518038,0.02301273,-0.0002071683,-0.001279587,-0.010937659,-0.0247982,0.006004471,-0.0042057745,0.017021485,-0.0019078081,-0.010210245,-0.00073113356,-0.025089165,-0.022933375,0.049146727,0.03912164,-0.012266843,0.03160944,0.003875132,0.009218317,0.022774667,-0.01814567,-0.012233779,0.054225396,-0.021571128,0.026385285,-0.025776902,-0.035206832,-0.005974713,0.017457932,0.012293294,0.027192052,-0.044068053,-0.03481006,-0.05351121,-0.00880832,0.04512611,-0.005637457,0.03428103,0.053035084,0.01995759,0.004463676,0.035868116,-0.014376343,0.009727507,-0.0070030116,0.045628686,0.030551381,-0.0066988203,-0.020909842,0.049146727,0.0012754541,-0.032535236,0.018185345,0.045760944,-0.036635205,-0.038116485,-0.0022996196,-0.010342502,0.02556529,-0.0051348805,0.0006827771,0.0046752873,0.0061830175,0.0023839336,0.01580472,-0.0053299596,-0.029572679,0.001220898,-0.0071947845,0.0055217324,0.0045628687,-0.013371189,0.013496833,0.001759019,0.04134356,-0.008504129,0.05221509,0.01891276,-0.0019491385,0.0055614095,0.025578516,-0.025089165,0.0026550605,-0.000009267035,0.028699784,0.025155293,0.014667308,0.032905556,0.01052105,0.005217541,0.0021607499,0.01724632,-0.010494598,-0.03221782,0.000008802069,0.025618194,0.016862776,0.02153145,-0.012220553,0.005177864,-0.008728966,0.0027790517,-0.00619955,0.040391307,-0.033249427,0.029837193,0.010216858,0.029070104,-0.0049100434,0.0027542533,0.02079081,0.028038498,0.009112512,-0.030630736,0.009145576,-0.0073997825,-0.036450047,0.031344924,-0.025975287,-0.025128841,-0.015526979,0.021372741,0.024295622,-0.0059945513,-0.015579882,-0.028303012,-0.0024054253,-0.022351444,-0.031159764,-0.00068029726,0.021478547,-0.015355045,0.012941354,-0.006143341,-0.011215399,0.00081338093,0.015791493,-0.0110566905,-0.029070104,0.06485886,-0.02199435,-0.025856256,0.018582117,0.0290172,0.0034287644,0.015103756,0.0014664002,0.009648153,-0.020526296,-0.0055680224,0.05187122,0.024017883,0.0238724,0.02621335,0.003921422,-0.04269258,-0.0066227727,0.005392782,-0.027430115,-0.010355728,0.025975287,0.004301661,0.00799494,0.012518131,0.032455884,0.008107358,0.06956722,-0.021319838,0.017576965,-0.038910028,0.012220553,0.0063582584,-0.0016209757,-0.0073204283,-0.030604284,0.02772108,0.00298405,-0.040708724,0.0058391495,-0.0053729434,-0.0043512573,-0.008801708,-0.010349115,-0.008054455,0.011030239,-0.0072410745,0.009390252,0.0024434493,0.06406532,0.01353651,-0.0032469109,0.02125371,0.009462993,-0.0035940858,-0.014442472,0.026477864,-0.018899534,0.019904688,-0.0017920833,0.030392673,0.031159764,-0.027377212,-0.008034617,-0.01888631,0.030762993,0.0003407686,0.04287774,0.029942999,0.002393853,-0.034386836,0.021174356,0.017418256,0.005495281,-0.0346249,0.00066541834,0.0026782055,0.0477448,0.012194102,-0.012789258,0.013344738,-0.021306613,-0.0025376824,-0.014680534,0.020989196,0.0059185037,-0.03674101,0.035101026,-0.012842161,0.015064079,-0.034016516,-0.01863502,-0.011215399,-0.024956908,-0.006758336,0.009958957,-0.020195654,0.0134703815,0.0033064266,-0.015130208,-0.0035378765,0.012352809,0.00075262535,0.007856069,-0.017550513,0.0039081965,0.029546227,0.011274914,-0.00015674529,-0.034148775,0.025234647,0.020870164,-0.0015548471,0.030075256,0.06776852,0.014336666,0.020539522,-0.022602731,0.04004744,0.02190177,-0.017074388,-0.005072058,-0.023528531,-0.0081602605,-0.010382179,0.008133809,-0.05866923,-0.021055324,-0.03991518,-0.0008596709,-0.009059609,-0.008980255,0.02257628,-0.056658927,0.036053274,-0.006341726,-0.0010249922,-0.0123395845,-0.00041805633,0.013298448,-0.0030171142,0.011585719,0.0034089258,-0.0020565973,-0.0029559454,0.04176678,0.017828252,-0.043671284,-0.0290172,-0.004047066,-0.003713117,0.018185345,0.0005649856,-0.027562372,-0.0028881636,0.027377212,-0.012452003,0.000011004201,0.027430115,-0.0145086,-0.013913443,0.041528717,0.0003659801,0.021928221,-0.007710587,0.00247982,-0.049649302,-0.019322757,0.016122136,0.006672369,0.028884944,0.0110765295,-0.0005141493,-0.00008524381,0.006140034,0.029625582,0.0023674015,0.0148260165,0.0077568768,-0.020552747,-0.018529214,-0.021333065,-0.027377212,-0.013371189,-0.0025046181,-0.013476995,-0.041237753,-0.025155293,0.0083454205,0.02996945,0.018621795,0.006021003,-0.0024070786,0.01743148,0.021756288,0.055283453,0.0013184376,-0.0009448114,0.006996399,-0.021002421,-0.02575045,-0.021650482,-0.024851102,0.014191183,-0.019058242,0.022563055,-0.00633842,-0.014878919,0.0031179602,-0.016135361,-0.0091257375,0.019362435,-0.0016912372,0.018502763,-0.0036635206,-0.03168879,-0.040417757,0.01743148,-0.021478547,-0.054913133,0.037217136,-0.012756194,-0.0145086,0.016095685,-0.045179013,0.013886992,0.0074526854,0.0063285003,-0.0010530968,-0.03052493,0.009244769,0.014283763,0.03727004,-0.021491773,-0.030498479,-0.039730024,-0.021214033,-0.013873766,0.005997858,0.013126514,0.027800435,-0.029519776,-0.01184362,-0.00019549247,-0.018965663,-0.002349216,0.00059061043,0.017629867,-0.015725365,-0.031768147,0.003278322,0.003954486,-0.017047936,0.029043652,-0.019481465,0.00064929953,0.06565241,0.009496057,-0.0155137535,-0.019759206,0.0019342595,0.019944366,-0.02510239,-0.00014114309,0.005687054,-0.005759795,-0.009588637,-0.039968085,-0.0071418816,0.029890096,-0.0048009316,0.002673246,-0.046184167,0.007889134,0.0077568768,-0.017153742,-0.015712138,-0.006642611,-0.011195561,-0.013338125,0.036476497,-0.019084694,-0.023171438,-0.015183111,0.010091214,-0.030921701,0.01617504,-0.039280348,0.033249427,0.0061598727,0.0031989678,0.0044901273,-0.013569575,-0.0067914003,0.006047454,0.0067219655,0.0016532133,-0.03589457,0.0012349504,-0.005118348,0.02707302,0.017087612,0.013728283,-0.042930644,-0.0033593294,-0.016413102,-0.0055845547,0.00029902495,0.004347951,0.0034320708,0.02356821,0.004324806,-0.012809097,0.0050423006,0.00067327113,-0.009257995,0.025922384,0.010289599,0.0028187286,-0.017153742,0.019349208,-0.022840794,0.027615275,-0.00202188,0.00034366173,0.017656319,0.0064144675,0.013543123,-0.032164916,-0.002456675,0.019137597,0.007122043,0.021478547,0.024811424,-0.006844303,-0.0039181155,0.017285999,0.052347347,0.004176017,-0.019362435,-0.002225225,-0.011387333,0.0022136527,0.028355915,0.016267618,-0.007849457,0.038301647,0.008788482,0.010692984,0.01974598,-0.02377982,0.024441106,0.030577833,-0.0019342595,0.036238436,-0.011956039,0.0070625274,-0.045999005,-0.00040937695,0.022496926,-0.016677616,-0.025803354,-0.0018863163,0.015593108,0.03637069,0.05202993,-0.0042884354,0.0070096245,-0.0069699474,-0.000035001627,-0.0038552934,0.012088296,0.01666439,0.0111691095,0.041290656,0.013966346,0.01170475,0.050072525,0.028884944,0.0016995033,0.030472027,0.006579789,-0.0035477958,0.009588637,-0.012961192,0.0063747903,-0.022973051,0.023184663,0.0034287644,-0.00790236,-0.018661471,-0.0009340655,0.016148588,-0.0033890873,0.0028336076,-0.030657187,-0.024136914,0.0076378454,-0.03917454,-0.019045018,0.043671284,-0.017087612,-0.017114064,0.020565974,-0.0026005046,0.016148588,-0.024136914,-0.009522509,0.005310121,-0.010765725,0.0023690546,0.030683639,0.0013994451,-0.027271407,0.042480968,-0.01441602,-0.007088979,0.016466005,-0.0118370075,0.01564601,0.0035246508,0.01731245,-0.02959913,-0.00073815975,-0.00647729,0.012842161,-0.013701832,-0.023991432,-0.0053696367,0.020010494,-0.010309438,0.0238724,-0.00024467558,-0.019322757,0.023647564,-0.026795281,-0.03597392,0.015976653]},{"id":"interface-VoiceManagerOptions","type":"interface","source":"main","text":"Interface: VoiceManagerOptions\nDescription: Options for creating a VoiceManager.\nProperties: shardId: number","meta":{"url":"/docs/typedefs/VoiceManagerOptions"},"embedding":[-0.0253029,-0.0002556129,0.027909003,0.006923944,-0.038238652,-0.02556351,0.002046384,-0.04676772,-0.017022597,0.003669276,0.006977251,-0.029235747,-0.0017857734,-0.029709585,0.018159805,-0.02760101,-0.10111683,0.008623835,-0.0046169497,-0.0004993798,-0.029685892,0.052501146,0.03617746,0.032694757,-0.02736409,0.008475761,-0.035324555,0.026369033,0.0031569395,-0.05548632,0.023194324,-0.030088654,0.03553778,-0.012710679,-0.019510241,-0.022116344,0.037646353,-0.038286034,-0.024686912,-0.013445127,-0.038925715,-0.007083864,-0.0067107175,0.030254496,0.009761044,0.065768585,0.044635452,-0.003239861,-0.011466857,-0.005141132,-0.015020635,-0.02760101,-0.012485607,0.027387783,0.02134636,-0.04702833,0.014617873,-0.008031539,-0.002604623,0.014037423,-0.046270188,-0.0759087,0.003867695,0.027814236,0.04345086,0.072118,-0.076856375,0.058708414,-0.021334514,0.022981098,0.017212132,-0.0154470885,-0.0114017045,0.037764814,-0.010288187,0.027127173,-0.034708567,0.0105251055,0.033310745,-0.029235747,-0.04667295,0.01968793,-0.02774316,-0.005925925,-0.011887387,0.028643452,-0.08017323,-0.006118421,0.00042053038,-0.019711621,-0.03411627,-0.0073622433,-0.0631151,-0.0191904,-0.01808873,-0.014072961,0.053590972,0.0032783602,0.0015488549,0.015257553,0.0091865165,-0.011455012,-0.04908952,0.033002753,0.018917944,-0.006645565,-0.014072961,0.017922888,-0.023016635,0.027506242,-0.08410608,0.010667257,0.0065448745,0.014925867,-0.029306823,-0.04745478,0.034708567,0.003651507,-0.010596181,-0.02294556,-0.019474704,-0.030112345,0.0474074,-0.005949617,0.013066057,0.007160863,0.0051322477,-0.014096653,-0.07396597,0.007776851,0.0113483975,0.021038366,-0.005600162,-0.03544301,-0.0015592201,-0.009802504,-0.021216055,0.038143884,-0.027529934,-0.026937637,-0.0066929488,-0.0034145883,0.033571355,-0.030136038,0.011911079,0.014416493,-0.012864676,0.033026442,-0.010063115,0.029567434,-0.044943444,0.006823254,0.003633738,-0.023277245,0.0043208017,0.010596181,-0.0027689855,0.037148826,-0.039683856,-0.04984766,0.073871195,0.016394762,0.035229787,-0.04461176,0.012935752,-0.000022777958,-0.016134152,0.028809294,-0.03579839,-0.0081026135,0.03977862,-0.057286903,-0.05894533,-0.009660353,-0.0073326286,-0.024829062,-0.007877542,-0.009085826,-0.03276583,0.041839812,0.06259388,0.01727136,0.009464895,-0.004000962,-0.010080883,0.01750828,-0.043901004,0.0024994905,0.053875275,-0.0410106,-0.021358205,0.036248535,0.014144037,0.033144902,0.012876523,0.034329496,0.025421359,-0.017176595,-0.044374842,-0.06761655,0.020351302,-0.020102538,0.041437052,-0.018479645,-0.017958425,-0.0052892063,-0.018977175,-0.011182555,0.026013656,-0.0007736871,0.045938503,-0.008985136,0.021962348,0.002594258,-0.022673104,0.019024558,0.0412949,-0.01776889,-0.011715622,-0.03387935,0.025231823,0.019735314,0.049373824,-0.0015266438,0.050795335,0.0057896967,-0.017413512,-0.042479493,0.033831965,0.020493453,-0.040062923,-0.03245784,-0.035229787,-0.0043504164,-0.011253631,-0.028524991,-0.023869542,0.04347455,0.0378122,-0.043806236,-0.009577432,-0.0066041043,0.028690834,0.0012082845,0.026961328,0.03800173,0.0037551587,-0.02204527,0.009038442,0.003028115,-0.006450107,-0.0031658239,0.040039234,-0.02288633,0.01712921,0.0037403514,-0.04690987,0.021156825,0.045701586,-0.014120345,-0.0020937675,-0.020872522,-0.02876191,0.053733125,-0.03553778,-0.029828044,-0.0061954195,0.0058548492,-0.006479722,-0.013089749,-0.04015769,-0.0038321572,0.03068095,-0.01153201,-0.024971213,-0.012414531,0.004883483,0.011567547,-0.020979136,0.025089672,-0.03743313,0.021192363,-0.03167601,0.059845623,0.031036329,0.012568528,0.03079941,0.03437688,-0.012088768,0.03643807,-0.003313898,0.008132229,0.04487237,-0.062451724,0.005514279,0.041247517,0.05354359,-0.03759897,0.022992944,0.044374842,0.06501044,-0.0017443127,0.021654354,-0.0389731,-0.0050197113,0.0031924772,0.0273404,0.0046702567,0.028406532,-0.051837776,0.003222092,-0.040133998,-0.00413719,-0.017460896,-0.04065522,-0.0058252346,0.042763796,0.011259553,-0.0037610817,0.029591125,-0.0011549778,0.005724544,-0.038783565,-0.028098539,-0.032126155,-0.04908952,0.0019412512,-0.08078922,-0.0034205113,0.0173069,0.018681027,-0.048094463,-0.008167766,0.027198248,0.0010024615,0.012284226,0.0077116983,0.020777756,-0.020055154,-0.006307956,0.02390508,-0.023289092,-0.058471493,-0.009085826,0.011265476,-0.02126344,-0.04871045,0.0106021045,-0.014309879,-0.016465839,-0.030325573,-0.019297015,-0.054301728,-0.038522955,-0.018254573,-0.035466705,0.03224461,-0.07529271,-0.06842207,-0.016359225,-0.042029347,0.00773539,0.016998906,0.03859403,-0.015435242,-0.014298034,-0.033666123,0.000951376,-0.027790545,-0.031628624,0.021452973,-0.0066396417,-0.07510318,0.008185536,-0.015387859,-0.018645488,0.0091865165,-0.018941637,-0.018775795,0.0071845544,0.041626588,0.007433319,-0.042977024,-0.00413719,0.020315764,-0.016015694,-0.012378993,0.030017579,-0.025539817,0.008600143,0.030586183,0.036106385,-0.026155805,0.0069890968,-0.026487492,-0.004634719,-0.0038825024,0.0039624623,0.0039802315,-0.017235823,0.0383808,0.034684874,-0.032220922,0.025231823,-0.017674122,-0.055154637,-0.021583278,0.05306975,-0.002240361,-0.031202171,0.051032253,-0.022400647,0.022353264,0.06728487,0.068043,-0.056433994,0.003485664,-0.030064963,0.03245784,0.022969251,-0.018965328,0.043664087,0.014996943,-0.031391706,0.014167728,0.0244263,0.0032990905,0.022033423,0.004883483,-0.026534876,-0.047525857,0.06946451,0.075813934,-0.019261478,-0.005718621,-0.04871045,-0.00020082548,0.005484664,0.007717621,-0.017141055,-0.0191904,0.007705775,0.021749122,0.00019175594,-0.008872599,0.009346436,-0.00413719,0.0061894967,0.02044607,-0.038830947,-0.044422224,0.012124306,-0.029496357,0.03181816,-0.01541155,-0.0546808,0.0098795025,0.01782812,-0.022412494,-0.016122306,-0.012177613,-0.05008458,-0.02608473,0.03387935,-0.03425842,0.0357747,-0.04093952,-0.0077116983,-0.044043157,0.008226996,0.005478741,-0.021334514,-0.004273418,0.004267495,0.03731467,-0.00573639,0.0063612624,-0.0047976,0.010625796,-0.02710348,0.023348322,0.05813981,-0.027316706,0.035869464,0.019060096,0.10509706,0.03027819,0.028406532,-0.028856678,-0.01573139,0.009559663,-0.005152978,0.023336476,-0.011466857,0.036935598,-0.0029910966,0.014309879,-0.022637567,0.00859422,-0.015079864,0.006272418,-0.028169613,-0.0006400502,0.04226627,0.02340755,0.040039234,0.000805523,-0.048426148,-0.029330514,0.027174557,-0.043261323,0.020682989,-0.038570337,-0.029235747,0.001537009,0.0041964194,-0.024615835,0.034850717,0.002352897,0.023691854,-0.038499262,0.005582393,0.004187535,-0.017472742,0.01654876,-0.007972308,-0.042503186,-0.0044303765,-0.0070009427,0.00094471266,-0.008866676,-0.033429205,-0.054538645,0.026890254,-0.02876191,-0.00096544303,0.04257426,0.008369147,0.034163654,0.0056268154,0.017472742,0.035371937,0.002964443,0.0011468338,-0.03771743,0.0005752678,0.015695853,0.026416417,0.01553001,0.025776736,-0.006799562,-0.013314822,0.011046327,-0.04205304,0.025989963,0.020540837,0.007877542,0.030183421,0.00865345,0.0010876041,0.020659296,-0.013907118,0.016773833,-0.0029792506,-0.045677893,-0.046056964,-0.02582412,-0.0027734276,-0.03748051,-0.00043940984,0.024070922,-0.0013037923,0.027553625,0.027269322,0.0041816123,-0.00795454,-0.007113479,0.01910748,0.008712679,-0.0024935675,-0.010815331,-0.013148978,-0.0037403514,0.023691854,-0.00096988527,0.0060058846,-0.011887387,0.0076702377,0.042005654,0.043379784,0.01153201,-0.0150087895,0.034992866,0.01564847,0.013646508,-0.008067076,0.015755083,0.03454272,0.021275284,-0.0073444746,0.01596831,0.036746066,-0.030112345,-0.021571433,0.033215977,0.0077116983,0.0046702567,0.02206896,-0.005046365,0.009079902,-0.011099634,0.018455954,-0.026677027,-0.0546808,-0.044327457,0.018313803,-0.030775718,-0.017354283,0.016607989,0.01776889,-0.036722373,0.004714679,-0.0052714376,0.028809294,-0.022175575,0.012556682,-0.036248535,-0.038902022,-0.011668238,-0.01147278,-0.0012090249,0.0014918464,0.0052743987,-0.0018731372,-0.025468742,0.006752178,0.010483645,0.042147808,-0.0021263438,-0.005712698,0.055012483,-0.026037347,0.004690987,0.016880445,0.015861696,-0.011686007,-0.032220922,0.032055076,-0.016513221,0.005484664,-0.031628624,0.0014659334,0.025753045,0.009897272,0.00725563,0.021452973,0.001023192,-0.0070127887,0.008363225,0.00041238632,-0.0012667738,0.036722373,0.01724767,0.010335571,0.025847811,0.037006676,0.03428211,0.033073828,-0.025895195,0.009352359,0.02925944,0.04295333,-0.0002824513,-0.02102652,-0.0028311764,0.0025142978,0.0017383897,-0.029354207,-0.0056060846,-0.011200324,0.02954374,0.020055154,-0.03132063,-0.038451876,0.05112702,0.006781793,0.032931678,0.0020078847,0.04179243,0.014013731,0.020481607,-0.007433319,0.013220054,-0.008197381,-0.0037492358,0.024331534,0.027956387,0.017733352,0.0017295053,-0.0016717564,-0.031770777,-0.0011164786,-0.026155805,-0.0039032327,-0.0007229717,0.045061905,-0.020742217,0.036627606,0.034211036,0.009565586,-0.03873618,0.0056297765,-0.02364447,-0.038783565,0.016998906,0.01169193,-0.018491492,-0.023561548,0.02506598,-0.0022092653,-0.008789677,-0.00076258153,-0.016122306,0.013042365,0.019936694,0.017603047,0.003370166,0.011407628,-0.017579354,0.0073563205,0.01451126,0.0025335476,-0.016963366,0.0039743083,0.011638623,0.050937485,0.014736333,0.009358282,-0.013575432,-0.024331534,0.03437688,0.02824069,-0.03658022,0.010839023,-0.022080807,-0.016442146,0.03134432,0.0032694757,-0.020457916,0.048402455,-0.038025424,0.0072023235,0.001337109,0.009524125,0.021879427,-0.005798581,0.0052714376,-0.01974716,-0.07965201,0.018230882,-0.012053231,0.0019605008,-0.030609874,0.007741313,-0.018136114,-0.011549778,0.014369109,-0.018278265,0.05813981,0.06382585,-0.02544505,-0.0067462553,-0.061172366,-0.00849353,0.019901156,-0.048094463,0.0017635623,-0.048212923,-0.0102408035,-0.04053676,0.026108423,-0.03245784,-0.03591685,-0.022151884,0.026155805,-0.044398535,0.0055468553,-0.051932544,0.0005034519,0.009986117,-0.02492383,0.012461915,-0.058755796,-0.029235747,-0.008363225,0.0038262343,-0.0044422224,-0.06700056,-0.008357301,0.006284264,-0.026558567,-0.007729467,-0.018219035,0.023419397,0.025160749,-0.017709661,-0.012935752,-0.0048864447,0.0022151882,0.03821496,-0.0108094085,0.016915983,-0.0014629719,-0.022542799,0.018017655,0.018763948,0.016240766,-0.009168747,0.0070424033,-0.038878333,0.041650277,-0.04641234,-0.03999185,0.006787716,0.0058518876,0.03271845,-0.0080256155,-0.0340215,0.012189458,-0.018100576,0.029899118,0.02876191,0.0005682343,-0.008777832,-0.004163843,-0.01910748,-0.014617873,0.010080883,-0.034969177,0.012094691,0.053733125,-0.011780774,-0.029993886,0.034045193,0.017863657,-0.021441128,0.015387859,0.031083712,0.026653334,-0.009624816,0.019605009,0.01355174,0.03951801,0.004149036,0.03755159,-0.0015518164,0.00907398,0.05908748,0.03963647,0.0010846427,-0.027956387,-0.039920773,-0.020943599,-0.009287206,-0.011407628,0.00557647,0.008801524,-0.0037966196,0.024355225,0.015636623,0.022140037,0.006965405,-0.0056031235,-0.011170709,0.01009273,0.0044984906,0.0029851736,0.03999185,0.0106021045,0.03639069,0.011099634,0.012627758,0.023111403,-0.010584336,-0.0031628625,0.022459878,0.0050137886,0.019131172,-0.013966348,-0.045038212,0.000012771389,-0.009109518,-0.009269438,-0.008582374,-0.01009273,0.0015414512,0.009026596,0.029164672,0.026463801,0.035727315,0.024201227,-0.0015666238,0.000022384636,-0.015861696,0.020884369,-0.001151276,0.04818923,-0.009790658,0.0062250346,-0.035087634,0.068895906,-0.029188363,0.0015488549,0.035987925,0.001428915,-0.0028252534,0.008961444,-0.007747236,0.004273418,-0.011585317,-0.009838042,0.03146278,0.03544301,0.016773833,-0.008511298,-0.021322668,-0.0189061,0.02748255,-0.0033316668,0.009429358,0.013492511,-0.0012097652,0.00997427,-0.0059733083,-0.021689892,-0.028856678,-0.020220997,0.0039121173,0.02582412,0.005034519,-0.0021396705,0.00869491,0.019865619,-0.0108331,-0.0047976,-0.04781016,0.011715622,-0.0008551278,-0.013563586,0.026463801,0.033903044,-0.016074922,0.062214807,0.009002904,0.01387158,0.028690834,0.0212279,-0.014179574,0.000016982247,-0.020659296,0.035987925,-0.031202171,-0.024378916,0.011283245,0.017579354,0.0042201113,0.013077903,-0.019616855,-0.012888368,-0.0034205113,-0.009002904,-0.0005526865,0.054633413,0.011176632,-0.02184389,0.016572451,0.017709661,-0.0006145075,-0.008955521,0.0035508166,0.01648953,0.059134867,0.0015118364,-0.012414531,-0.018692872,-0.014298034,0.002776389,-0.02000777,-0.0038143883,-0.01291206,-0.010939714,-0.023834005,-0.0030295958,0.020434223,0.0328606,0.0014785198,-0.035727315,0.026819179,-0.010483645,-0.0046317573,0.014831101,-0.008457991,-0.00983212,-0.031889234,0.03181816,0.014688949,0.0074629337,-0.0042941486,0.02632165,-0.001403002,-0.018550722,0.009210208,0.016477684,-0.022258496,-0.041081674,-0.024615835,0.00025080048,0.022448031,0.0070542493,-0.016193382,0.035063945,0.01143132,0.028667143,-0.011182555,-0.023502318,-0.04866307,-0.0029052135,0.02492383,-0.009506356,0.00084698375,-0.0669058,0.0067166407,0.039446935,-0.026819179,0.01834934,0.0014681545,0.006159882,0.0015125767,0.008434299,-0.016667219,0.008031539,0.00069113576,-0.031747084,0.030183421,0.03774112,-0.009660353,0.013622816,-0.008132229,-0.028951446,0.017922888,-0.02428415,-0.017993962,0.027127173,-0.012248688,0.0029970196,0.005925925,-0.0024609913,-0.022116344,0.017875504,0.016181536,0.013125286,0.03691191,0.012615912,0.01968793,0.018444108,0.003210246,0.0073503973,0.020813294,-0.0032605913,0.026108423,0.008292149,-0.0328606,-0.015944617,-0.004634719,-0.007960463,-0.051932544,0.008996981,-0.034590106,0.009358282,-0.009316822,-0.0033612817,-0.0164303,-0.023194324,-0.018692872,-0.006337571,0.0061894967,0.02428415,0.02262572,0.03451903,-0.019995924,0.010033499,0.002960001,-0.001982712,-0.064726144,0.02736409,0.00072260154,-0.01547078,-0.03323967,0.014523106,-0.01698706,-0.0025054135,0.015695853,-0.026629644,0.03435319,0.00943528,-0.018384878,0.024473684,0.002686064,0.010720564,0.0097255055,-0.00517667,0.009855811,0.007231938,-0.00079441746,-0.02899883,0.0062368806,0.018598106,-0.0119170025,-0.002342532,0.014120345,-0.01329113,-0.022021579,-0.014167728,0.013350359,-0.009612969,0.03158124,0.012805447,-0.0003179891,-0.018479645,0.031533856,0.013990039,0.007125325,-0.03245784,-0.02954374,0.039020482,-0.011650469,-0.003399781,0.014558644,-0.0041727275,-0.02504229,-0.0076287766,0.012852831,0.038262345,0.013338514,0.0116327,0.04252688,-0.02582412,0.05908748,0.00013946727,-0.008996981,-0.011686007,0.054159578,-0.008949597,0.000991356,-0.0016984098,-0.04093952,-0.020363148,-0.009897272,-0.010199343,-0.001237159,-0.02518444,0.019853773,-0.036366995,-0.0017576393,0.049895044,0.007374089,-0.0135398945,0.0066988715,-0.000101800935,0.021689892,0.014937714,-0.02032761,-0.029472666,0.008943675,-0.009784736,0.03397412,0.021500356,0.016560605,-0.0051855543,0.0357747,-0.025966272,-0.023158787,0.014203266,0.0051559396,0.03707775,0.03271845,-0.0067699472,0.010442184,-0.031391706,-0.0048479456,-0.03219723,0.0052151694,-0.010957482,0.008949597,-0.027293015,0.020280227,-0.01143132,0.0012119864,-0.0048657143,0.0066988715,-0.028809294,-0.006965405,-0.027293015,0.030752026,0.023194324,-0.03617746,-0.00525663,-0.020517144,0.012497453,0.0063731084,0.06723748,0.035490397,0.014025577,0.0028874446,0.022329573,0.0077946195,0.036153767,-0.024734294,0.0028593105,-0.0011616412,0.00045643837,0.013338514,-0.006112498,0.014049269,-0.04830769,-0.00093212636,-0.014653412,0.029685892,-0.013480664,-0.010110498,0.015932772,-0.02928313,0.021760967,-0.0008936271,0.011235861,0.004267495,0.021689892,-0.011922925,0.0090325195,-0.0057097366,0.009304975,-0.018053193,0.0023380897,0.016821217,0.031202171,0.0024195304,-0.013148978,-0.008706756,0.0053691664,0.0062605725,-0.0056890063,-0.021701738,-0.039968155,0.018313803,0.005884464,0.040844753,0.0045458744,0.015636623,-0.012686987,0.016667219,-0.011425396,0.0030355188,-0.021820197,0.030159729,-0.011863695,-0.036982983,-0.005280322,0.021962348,0.020161767,-0.02710348,-0.002216669,-0.015932772,0.010258572,0.010803485,0.0067699472,0.022542799,-0.010702794,0.017685968,0.0018997905,-0.0031125173,-0.0039920774,0.003610046,0.02925944,0.015423397,-0.013279283,-0.019545779,-0.01718844,0.008126305,-0.004338571,-0.015589239,0.0021130173,-0.003986154,0.043758854,0.00605623,-0.0020034423,0.013374051,0.027719468,-0.015245708,-0.039020482,-0.013468819,-0.01808873,0.024568452,-0.006793639,0.036888216,0.032789525,-0.02480537,-0.019972233,-0.028074846,-0.014238804,-0.00021748382,-0.009790658,0.038286034,-0.052216846,-0.012367147,-0.019474704,0.013326667,-0.019936694,-0.010377032,0.014807409,-0.024876446,0.008345455,0.0314154,-0.019391783,0.000035098186,0.015399705,-0.0039950386,-0.012094691,-0.0082566105,-0.003136209,0.016264457,0.042100422,-0.004901252,-0.00581635,-0.029235747,-0.0062013427,-0.016761987,0.026558567,0.0135398945,0.026629644,0.0038499262,-0.016335532,-0.014452031,-0.0050434032,-0.015233861,0.030988945,-0.008126305,0.010898253,-0.0207896,0.012319764,0.0100098085,-0.032149844,0.013042365,-0.0046258345,-0.024568452,-0.010957482,-0.012615912,-0.019000866,-0.0034560491,0.005138171,0.015956463,0.011342475,0.025705662,0.014298034,-0.031012636,-0.030988945,-0.027150864,0.03771743,0.011330629,-0.0023810312,0.030112345,-0.058376726,-0.009145055,0.017757043,0.006349417,0.026629644,0.01259222,-0.005920002,0.0145704895,0.033168595,-0.012544836,-0.016063077,0.0029718468,-0.02454476,-0.016110461,-0.0060384613,0.004539951,-0.0007907156,-0.03312121,-0.010856791,-0.027316706,0.015624777,0.006503414,0.040323533,0.007919002,0.040181383,-0.031865545,0.0033583203,0.0012467838,0.039210018,0.011934771,-0.0056031235,-0.035111327,0.015352321,-0.001337109,-0.027648393,-0.01966424,0.01625261,0.005280322,-0.026440108,0.0244263,0.0052270154,-0.000047383706,-0.0063790316,0.003393858,-0.028809294,0.00789531,-0.03745682,-0.001385233,-0.007273399,-0.00056638336,0.030230805,-0.010483645,-0.00245803,0.0036751986,-0.010400724,0.032647375,-0.015056172,-0.018799486,0.04754955,0.025516126,0.008564605,0.0073918584,0.016501376,-0.009678122,-0.0083869165,0.026534876,-0.006562643,0.006562643,-0.006645565,-0.014700795,-0.014475723,0.009648507,0.03155755,-0.012864676,-0.0380965,-0.014866638,-0.01596831,-0.023822159,-0.022708641,0.018538876,-0.002656449,-0.002336609,0.038665105,-0.009156901,-0.0052477457,-0.01698706,0.009328667,0.026108423,-0.004551797,-0.014985098,0.008126305,0.021488512,0.018207189,-0.028169613,0.00020878446,-0.019202247,-0.003953578,-0.010051269,0.0043800315,-0.003938771,0.02454476,0.01808873,-0.012284226,0.0057956195,0.015174632,0.0042319573,0.021689892,0.009802504,-0.009755121,0.019533932,-0.01878764,-0.0062605725,0.014404647,-0.045677893,-0.0023795506,0.04577266,0.00026486753,0.06794824,-0.030254496,-0.042029347,0.0232654,-0.019083789,0.012201305,0.0060828836,0.01227238,0.017223977,-0.03466118,0.0011571989,0.09798951,-0.0038765795,0.029496357,0.0132319005,0.012710679,0.027316706,0.00069668854,0.0027467743,-0.028975137,-0.015612931,-0.031391706,0.033050135,0.021760967,0.025918888,0.05818719,0.009376051,-0.007907156,0.0025083749,0.013279283,-0.01904825,0.010714641,-0.0273404,-0.017081827,0.0028815216,-0.01462972,-0.021310823,-0.0058489265,-0.016157843,-0.012686987,0.048899986,0.043142866,0.013326667,0.013374051,-0.015861696,0.023751084,-0.030704642,-0.016382916,-0.008161844]},{"id":"interface-VoiceStateMap","type":"interface","source":"main","text":"Interface: VoiceStateMap\nDescription: Maps guild_id -> user_id -> channel_id (null if not in voice).","meta":{"url":"/docs/typedefs/VoiceStateMap"},"embedding":[-0.02025531,-0.022352865,0.013583567,0.018107211,-0.014291177,-0.037756,-0.008042735,-0.030831538,-0.00284939,-0.006545384,0.009470589,0.018157754,0.0051554376,0.031766593,0.025751917,-0.04746035,-0.060450032,0.022896208,-0.0162371,0.015731666,-0.035228822,0.016388731,0.007979556,0.009786487,-0.047232907,0.024854768,-0.03879214,-0.012218893,-0.02506958,-0.031412788,0.022163328,-0.033965237,0.0511753,-0.031463332,-0.01657827,0.004792156,0.008301771,0.04078861,-0.04945682,0.017424874,-0.021897973,0.034091596,0.027091319,0.038665783,-0.049482092,0.050391875,-0.0134193,0.04298725,-0.011201705,0.026889145,-0.014025823,-0.00018845225,-0.024134524,-0.0015794846,0.024905313,-0.026333166,0.009085195,-0.036391325,-0.03201931,0.027091319,-0.034950834,-0.04799106,-0.003917122,0.022757214,0.03217094,0.029669037,-0.04066225,0.018006124,0.022782486,-0.005183868,0.021986425,0.004836382,-0.027344037,0.009078877,-0.013368757,0.012016718,-0.05046769,0.026560612,-0.005427109,-0.038311977,-0.03836252,0.030048113,-0.009887573,-0.041167684,0.0068928706,0.007480439,-0.035557356,-0.0016442434,0.007562572,-0.0057745953,-0.016805716,-0.013406665,-0.05857992,-0.0240208,0.039044857,-0.036694586,0.026156263,-0.0091041485,-0.0233511,0.011012167,0.041420404,-0.024639959,-0.012831733,-0.05635601,0.0334598,-0.009716989,0.006153672,0.03419268,-0.06787993,-0.008819842,-0.049532637,0.046297852,-0.0021986426,-0.019535065,-0.0085608065,-0.00041264034,0.040611707,-0.040889695,0.03864051,-0.024538873,-0.052868508,-0.023186833,0.022744577,-0.018056666,0.028708711,-0.02240341,-0.0003790763,-0.026257351,-0.037983444,-0.005960975,0.022302322,-0.039727196,0.00269618,0.027622025,-0.052312527,0.00094769074,-0.0342685,0.03618915,-0.044604644,-0.022441316,-0.029037245,0.031336974,0.00857976,0.02105137,0.03487502,0.003086313,-0.05337394,0.067728296,0.010317193,0.0076889307,-0.0390954,-0.0112396125,-0.054182637,-0.017778678,-0.00056624523,-0.015377861,-0.0030468258,0.011713457,-0.03687149,-0.02810219,0.018637918,-0.038387794,0.05984351,-0.0044509876,-0.055446226,0.0075120283,0.00643482,0.035102464,-0.036568224,0.00793533,-0.0137351975,-0.0071266345,-0.046500023,0.0035412044,-0.05650764,-0.05221144,-0.011201705,-0.027874744,-0.056153834,-0.024829498,0.034647573,-0.0072403573,-0.02926469,-0.04051062,-0.024222976,0.043745402,-0.0029062515,0.0054744934,0.025815096,-0.0649484,-0.016603542,0.03315654,0.029087787,0.06535275,0.028910885,0.008611349,0.049482092,-0.0137351975,0.010096066,-0.029466864,0.0056735086,-0.040080998,0.015112508,-0.028582353,-0.022694035,-0.020975554,0.019674059,0.0150746,0.014682888,0.021746343,0.005303909,0.0031273793,0.007745792,-0.025297025,-0.046323124,0.009059924,-0.0743495,0.019813053,-0.015491584,-0.02225178,-0.030528277,0.042380728,0.016199194,-0.017083704,-0.0012248902,0.025158029,0.054586984,-0.073490255,-0.010348783,0.0020912376,-0.01130911,0.015390498,0.016704628,-0.06550438,0.00032655842,-0.030376647,0.0003129354,0.04685383,0.05145329,0.011561827,-0.0891082,-0.001949084,0.043644316,0.023111017,-0.013394029,0.0055755805,0.016376095,0.01608547,-0.0324742,0.00067246554,0.061663076,0.0645946,0.020596478,0.002561924,-0.00337062,0.04136986,0.011087982,0.06611091,0.03431904,-0.0106899515,0.026737515,-0.03477393,-0.012964409,0.021076642,-0.045514427,-0.027167134,0.022605583,0.012907548,-0.034066323,0.015049329,-0.03720002,-0.020305853,0.018486287,-0.007366716,-0.012692737,-0.027950559,0.024463058,0.01731115,0.006829691,-0.029188875,-0.05696253,0.018044032,-0.00036782247,0.045666058,0.009716989,0.035683714,0.0014862949,0.051958725,0.0013070235,0.011801909,-0.04412448,0.0614609,0.0050385557,0.00061402464,0.014114274,0.048016332,0.018928543,-0.013811013,0.02083656,0.043745402,0.048799753,-0.012541107,-0.020545935,-0.008567125,0.002614047,0.003177923,0.025865639,-0.039348118,-0.0053828834,-0.027419852,0.021190364,-0.0018179867,-0.01069627,0.01369729,-0.04066225,-0.030225016,0.023944985,0.028380178,-0.0053418167,0.040813882,-0.0051301657,0.026408982,0.018119847,-0.040914968,-0.0009769112,-0.011328063,-0.0050322376,-0.027925286,-0.034521215,0.015529492,0.026156263,-0.023553273,-0.014657617,-0.019737238,0.03520355,0.0023123655,-0.044882633,0.06515058,-0.0038886908,0.0068170554,-0.0030499846,-0.039272305,-0.03416741,0.023957621,0.0078026536,0.0045836642,-0.04998753,-0.011517601,-0.0066970144,-0.0053386576,-0.02083656,0.033232354,0.0027135545,-0.062522314,-0.016767807,-0.03257529,0.038893227,-0.011372289,-0.034217954,0.0278242,-0.014834519,-0.027622025,-0.023186833,0.023679633,-0.023742812,-0.026863873,-0.02558765,0.036416594,-0.054586984,-0.0536772,0.009792804,-0.040156815,-0.034799203,0.02025531,0.009059924,-0.005610329,-0.015794845,0.01782922,-0.0041477266,0.0420522,0.017563868,0.025777187,0.011877724,-0.054991335,0.018878,-0.027344037,-0.000045311463,0.0068612806,-0.05767014,-0.057872314,-0.0105699105,-0.03085681,-0.012648513,-0.010121337,0.009040969,-0.016830988,0.04900193,0.01464498,-0.005932544,-0.02221387,0.06641417,0.039423935,-0.0125790145,-0.012004083,-0.03300491,0.0015763256,-0.027495667,-0.01679308,0.014240633,0.038867954,0.010127655,-0.022365501,0.013229762,0.026585884,0.05236307,-0.049861167,-0.03217094,-0.04516062,0.02999757,0.03649241,0.04298725,0.0095337685,0.041572034,-0.0055566267,0.060399488,-0.0027562005,0.011479693,0.0069118245,0.04584296,-0.031943496,-0.050796222,0.040763337,-0.003781286,0.0048648124,0.023414278,-0.032398388,0.045211166,0.0039455523,0.0063053025,0.020823924,-0.013040224,-0.023982894,-0.02031849,-0.006532748,0.00873139,-0.019585608,0.022858301,-0.03272692,0.017627047,-0.0047700433,-0.005120689,0.013090768,-0.04179948,0.072327755,-0.03272692,-0.051958725,-0.0122125745,0.073793516,-0.07283319,-0.018119847,-0.01890327,-0.004921674,0.014543894,0.058984272,0.000014067285,0.002711975,-0.02926469,-0.012572697,0.011365971,0.038413063,-0.0028225388,-0.031160071,-0.005373406,0.030199744,0.02855708,0.053879377,-0.009735943,-0.010254013,0.016477183,0.03765491,-0.0013070235,0.023919715,-0.063988075,-0.014139546,0.0665658,0.073793516,0.010993212,-0.003661245,0.0054555396,0.02681333,-0.009874937,-0.02025531,0.038413063,-0.013394029,0.023275284,0.00056703493,0.038893227,-0.03330817,0.023629088,-0.013280306,-0.006267395,-0.013684654,0.010967941,0.016224464,0.049557906,0.02558765,-0.00670965,-0.005916749,-0.028708711,-0.009818076,-0.015731666,-0.008832478,-0.041572034,-0.044756275,-0.018574739,-0.016527727,-0.001483136,-0.0025635033,-0.00078737305,0.045918774,-0.041142415,0.0018811661,0.006842327,-0.025158029,-0.0043720133,0.0074741207,0.013987916,-0.015643215,0.015428405,-0.010146609,0.022668762,-0.013608838,-0.035633173,0.026232079,-0.03591116,-0.023755448,-0.0012146236,0.011302792,0.046828557,0.011820862,-0.015883297,0.012989681,0.021089278,0.038135074,0.00502592,0.019585608,-0.0125790145,0.025044307,0.024816861,-0.014607073,-0.035835344,-0.02068493,0.0041414085,-0.041117143,0.046449482,0.0011443365,0.020154223,-0.010096066,0.0057903905,-0.020091044,-0.021594713,-0.039398663,0.0121557135,0.0038255116,-0.03073045,-0.023982894,-0.017664956,0.0027893698,-0.0016410844,-0.011599734,-0.0105699105,0.024993764,0.04311361,0.054283723,0.030780995,-0.021089278,-0.010904761,0.01976251,0.029871212,0.017058434,-0.009243144,-0.0081311865,0.028936157,-0.031084256,-0.018461015,-0.036669314,-0.027723113,-0.045185894,-0.005237571,0.04109187,-0.001274644,0.0032821689,0.010727859,0.006640153,-0.014430171,-0.007151906,0.0040403213,0.00640323,-0.011890359,-0.026434254,-0.009881255,0.028430723,-0.0321204,0.012857004,0.021253545,0.0018006124,-0.01286964,0.008832478,-0.0010653624,0.03257529,0.009211554,-0.0152009595,-0.024993764,-0.036138605,-0.016489819,0.0073856697,-0.008946201,-0.014960878,0.030326104,-0.0045583923,-0.022390774,0.0076826126,0.006760194,0.028127462,-0.0019964685,0.0301492,-0.025549741,0.0050827814,-0.028455993,-0.04359377,-0.03500138,-0.005531355,0.0014783975,-0.009401092,-0.03255002,-0.03550681,-0.010323511,0.013014953,0.018056666,-0.028304363,0.027040776,-0.037098933,0.021215636,-0.007562572,0.03836252,-0.0028541286,-0.015213595,0.015883297,-0.024475692,0.0122125745,-0.01902963,-0.0006835219,-0.01731115,0.015327318,-0.0031573896,-0.01875164,-0.014720796,0.0050322376,0.03401578,-0.047915243,-0.0010558855,0.02825382,-0.005847252,0.024425149,0.033232354,0.0050764633,0.0037402194,0.03618915,-0.017450145,0.01782922,0.0071961316,0.020925011,-0.007341444,-0.0005125427,0.03201931,0.006172626,-0.021897973,-0.033409256,0.015099872,-0.034698118,0.02653534,0.010519367,-0.020027865,-0.010595182,0.010165563,0.012067262,0.019876234,-0.037680183,0.028380178,-0.034394857,-0.0052660014,0.029214146,0.0004394916,0.011612371,0.015365225,0.028279092,0.012319979,0.0073161726,-0.00735408,-0.016489819,-0.05620438,0.005585057,-0.022504495,-0.0005682196,0.0061568306,-0.031185344,-0.009123103,0.0068612806,0.01470816,0.00056703493,-0.018410472,0.020192131,-0.014581801,0.027975831,0.03330817,0.036593497,-0.037124205,-0.014101638,0.033864148,0.039120674,0.039272305,0.027773656,0.00873139,0.007796336,-0.012964409,0.0087440265,-0.05999514,-0.016603542,-0.0058820006,-0.0009784907,-0.014000551,-0.010986894,0.001284121,0.021872701,0.0026108879,0.033485074,-0.027596755,-0.015959112,-0.038665783,-0.010588865,0.0112396125,0.019711968,-0.02668697,-0.026560612,-0.011985129,0.0332829,0.0008086961,-0.006640153,-0.04814269,-0.029770125,0.0023518526,0.009325277,-0.033030182,-0.0052754786,0.0014641822,-0.017475417,0.011486012,0.0073351264,-0.013747834,0.044326656,0.00061757845,0.034293767,-0.006633835,0.023262648,-0.016464546,0.005228094,-0.010462506,-0.022908844,0.052110355,0.015997019,-0.05175655,-0.022163328,-0.022150692,0.017980851,0.013672018,-0.019231804,0.0026235238,-0.050164428,0.0072024497,-0.010702588,-0.009559041,-0.03661877,-0.0154410405,-0.01715952,-0.0023771243,-0.008567125,-0.0086176675,0.00008484793,-0.014013187,-0.017336423,-0.05504188,0.01614865,-0.027571483,0.005316545,-0.041774206,-0.006842327,0.04528698,-0.07697776,0.01044987,0.006640153,-0.016856259,0.02561292,-0.012787507,0.022138055,0.020950284,-0.02546129,-0.048370134,-0.011587098,-0.018006124,-0.0056671905,-0.0068612806,0.047182363,-0.038236164,-0.044099208,0.04960845,0.018776912,-0.0034116865,-0.020204766,0.021986425,-0.040813882,0.027748385,-0.004624731,0.014366992,-0.01782922,0.003272692,0.044149753,0.012572697,-0.008649257,-0.028632896,0.014215361,0.031210614,0.021733707,-0.012332615,-0.0012122544,0.023831263,-0.03575953,-0.038160346,-0.019155988,-0.03967665,-0.02221387,0.007265629,0.008049053,0.016856259,-0.044832088,0.036138605,-0.021809522,0.017563868,-0.03388942,0.0051270067,0.013823649,0.008023782,0.031463332,0.016616177,-0.0039234394,0.015264139,-0.0067159683,-0.011347017,0.012098852,0.02307311,0.038539425,-0.015238867,0.0011861929,-0.038160346,-0.015630579,-0.00937582,0.016843623,-0.002028058,-0.0026393186,-0.0012019877,-0.010304557,0.030654635,0.022592947,0.041294046,-0.0069307783,-0.010228742,-0.00058204005,0.015415769,0.022782486,0.043922305,-0.003582271,-0.034647573,0.02999757,-0.0074488493,0.02696496,0.0036391325,-0.0041382494,-0.032145668,0.0017800791,-0.0134319365,-0.010532003,-0.0014073207,-0.0059767696,-0.02896143,0.0000042109305,-0.005919908,0.0009153113,-0.031033712,0.02883507,-0.012509517,0.00337062,-0.038716324,-0.03158969,-0.0018527354,0.017450145,0.04136986,0.02984594,0.017386965,-0.016338188,0.002043853,-0.01694471,-0.0060431077,-0.05837775,-0.032221485,0.013292942,0.027925286,0.00018845225,0.010866853,-0.025398111,-0.000548476,0.004296198,-0.015112508,0.018890636,0.040535893,0.045489155,0.008466037,0.0052533657,0.008939883,-0.012383159,0.0010732597,-0.0066527887,-0.012174667,-0.029239418,0.043164153,0.000058589005,0.0010171881,-0.017386965,-0.013255035,0.018675825,0.014796611,-0.008573442,-0.010475142,-0.0055029243,0.016894167,0.012743281,0.010361419,-0.016047563,0.019067537,-0.009641173,0.0022728783,0.0113596525,-0.022466589,0.017715499,0.049406275,0.012850686,0.01715952,0.0036486094,0.02313629,-0.021228272,-0.0064948406,-0.011189069,0.032069854,-0.025549741,0.0012493723,-0.0007948756,0.012218893,-0.03472339,0.027622025,-0.017778678,0.0024276678,-0.006880235,0.007265629,-0.025360204,0.026055178,0.049103014,-0.017488053,0.025334932,-0.0021417812,-0.021240909,-0.0095337685,-0.028784527,-0.028531808,0.05782177,0.0041698394,-0.006640153,-0.04715709,-0.014354356,-0.024096616,0.012629558,0.0026851238,0.0061915796,0.027723113,-0.016616177,-0.04382122,0.03965138,0.021822158,-0.011713457,-0.0008110653,0.0009176805,-0.003961347,-0.012755917,0.0047479304,-0.035708986,0.029441591,-0.045514427,0.00980544,0.015971748,0.0070192292,-0.017993487,-0.015997019,0.014291177,-0.014632345,-0.009634856,0.021708436,-0.019749874,-0.0602984,0.01645191,-0.0037181065,0.012863322,-0.018776912,-0.05549677,0.010550957,-0.025511835,0.026055178,-0.031185344,-0.018675825,-0.05782177,-0.0021370426,0.021594713,0.002656693,0.00034235328,-0.014758703,0.026257351,0.01823357,0.023894442,0.01767759,0.021518897,0.015150416,-0.0073098545,0.015251502,-0.00038618397,-0.0266617,0.010904761,-0.039600838,0.02175898,0.0321204,0.018625282,0.057366878,-0.013836285,-0.007865833,-0.009540087,-0.013229762,-0.033864148,-0.01645191,-0.022188598,0.01290123,0.019143352,0.014670253,-0.014960878,-0.038842686,0.0034306403,0.0162371,-0.0076889307,0.0075246645,-0.03181714,0.017841857,0.018764276,0.04427611,0.017892402,0.005044874,0.057164706,-0.005752483,0.021518897,-0.0005386042,-0.037579097,0.017121613,-0.02810219,0.031766593,-0.040131543,-0.01571903,0.0321204,-0.004081388,0.0009974445,-0.0037402194,-0.0045678695,-0.01247161,-0.0015107769,-0.030932626,0.011144843,0.01713425,0.02025531,-0.032196213,-0.0015060385,-0.03588589,-0.028809799,-0.02135463,0.028228547,-0.008270181,-0.06878971,0.002813062,-0.03836252,0.010967941,0.040561162,-0.0064948406,0.025511835,0.03358616,0.009609584,0.0034653891,0.039550293,0.00012092928,0.04344214,0.009451635,0.0073351264,0.017879765,-0.0137351975,-0.016868895,-0.017450145,-0.021872701,-0.016654085,-0.0098370295,0.019282347,-0.0017927149,-0.012313661,-0.015491584,0.031463332,-0.01271801,0.047182363,-0.03671986,-0.011498648,-0.013874193,0.04283562,0.008238591,-0.0071266345,-0.01795558,0.019257076,0.036820944,0.018637918,-0.036568224,-0.007739474,-0.006409548,-0.01384892,0.007872151,0.028076917,0.014013187,-0.018890636,-0.008895657,0.022049604,0.000756968,0.062168512,0.0051301657,0.01758914,0.022453953,0.0040719113,0.010329829,-0.011978811,0.017475417,-0.013823649,-0.011195387,0.011612371,0.0083775865,-0.016401367,-0.041167684,0.014177454,0.016199194,0.016982619,0.048926115,0.012237846,-0.0017721817,-0.024816861,-0.010892126,0.01167555,0.023401642,-0.022441316,-0.020419577,0.01103112,-0.016527727,0.01976251,0.024425149,-0.022453953,-0.008080643,0.018928543,-0.024096616,-0.02984594,0.022542404,0.008984108,0.0023802833,0.021013463,-0.00401505,0.042279642,-0.032196213,-0.013709926,0.006734922,-0.006779148,-0.0026298417,0.025714008,-0.047409806,0.0043341056,-0.0043593775,-0.01961088,0.0015336795,0.013495116,-0.0070318654,0.0017942945,-0.035102464,0.0091926,0.028304363,-0.013356121,-0.0091041485,-0.03401578,0.0015186744,-0.011940903,0.010677315,0.02546129,0.03330817,0.01286964,0.0063053025,-0.026737515,0.004195111,-0.014594438,0.0075373,-0.011302792,-0.0023328988,0.020369032,0.0050290786,0.0025824571,-0.031387515,-0.017424874,0.018486287,0.0045647104,-0.009489543,-0.014720796,-0.005218617,-0.027445123,0.03358616,0.0160602,-0.001115116,0.008358632,0.010683633,0.0064190254,0.00017532278,-0.015377861,0.013368757,-0.008965154,-0.005610329,0.012838051,0.0116629135,-0.0033200765,-0.02343955,-0.011959857,0.044604644,0.035532083,0.009830711,-0.026232079,0.0106899515,0.010866853,0.03717475,0.027925286,-0.03492556,-0.013558296,0.0006262656,0.035254095,0.0137983775,-0.0038160346,-0.026434254,-0.012086215,-0.04359377,-0.010089748,-0.019800419,0.018840091,0.03275219,0.022302322,-0.02175898,-0.021165093,-0.012819096,0.015150416,-0.017993487,0.048825026,-0.013520388,-0.037124205,0.01645191,-0.0012177826,0.011517601,0.00980544,0.015845388,-0.011429151,-0.01872637,-0.04599459,0.03232257,-0.009944434,0.024614688,-0.021657892,0.014063731,-0.006144195,0.02896143,0.022972023,-0.00057888107,-0.0045615514,-0.029567951,0.014025823,-0.04078861,-0.02249186,-0.0602984,0.03201931,-0.02668697,0.021405175,0.011707139,0.0061757844,0.0144680785,-0.014139546,0.020937648,-0.018056666,-0.018208297,-0.0035569991,-0.024766319,-0.028178005,-0.04991171,-0.004207747,-0.011365971,-0.0019348685,0.008920928,-0.03434431,-0.015706394,0.0017342741,-0.028152732,0.001354408,-0.0141648175,0.0028999336,-0.015024057,-0.005629283,-0.030351374,0.007954285,0.025688738,0.00018934072,0.0137351975,-0.0167299,-0.00033899688,0.008472355,-0.003484343,0.008781934,0.011321745,-0.047258176,-0.001360726,-0.036239695,-0.0108163105,0.023313193,0.0062010563,0.0067665116,0.01664145,-0.021493625,0.001295967,-0.02148099,0.005910431,0.012888594,0.00062034256,-0.0030215539,0.020823924,0.00438149,-0.014025823,0.0016979459,0.020520663,0.036820944,0.017298514,-0.009931799,0.005585057,0.0007249834,-0.030048113,-0.014417535,0.026333166,0.031160071,0.0005540042,-0.0035633172,-0.07541091,0.023035202,0.015655851,0.01872637,-0.044453014,0.021771615,-0.023111017,0.01492297,0.0022760371,-0.0077773817,0.011745047,-0.010765767,-0.009205236,-0.0467022,-0.022959387,0.015213595,0.030401919,-0.000015979942,0.026863873,0.0025745598,-0.0025255957,-0.015769573,0.041016053,-0.004694228,-0.011296473,-0.007973238,0.003171605,0.0010219265,0.04528698,0.003181082,-0.03603752,-0.01078472,0.002408714,0.006880235,-0.033636704,-0.008188047,-0.002043853,-0.0054586986,0.01758914,0.021304088,-0.019585608,0.05175655,-0.027167134,-0.021064006,0.015542128,-0.0030215539,-0.025347568,-0.014531258,0.0058567286,-0.002307627,0.017905036,0.0063937535,-0.013672018,0.011959857,0.016123379,0.028304363,-0.014543894,0.007461485,0.012888594,0.041698392,0.026004633,0.0108163105,-0.007840562,-0.025271753,-0.04991171,0.013570931,0.021291452,-0.015883297,-0.02840545,0.016856259,-0.019332891,0.022390774,-0.0028004262,-0.0016237102,-0.003097369,0.026232079,-0.0039329166,0.025006399,0.014720796,0.025145395,-0.014139546,0.00934423,0.0057714367,-0.017450145,-0.0017658637,-0.017247971,0.004008732,0.001219362,0.011700821,-0.03330817,-0.012370523,0.02896143,0.0012857005,0.005796708,0.028127462,0.058327205,-0.010279286,0.011789273,-0.0014428592,-0.008598714,-0.0013488798,0.0051017352,0.00811855,0.013255035,0.018081939,0.027141862,0.033383984,-0.00088293187,0.01731115,-0.017740771,0.008636622,0.0027309288,-0.0074741207,-0.030401919,-0.008592396,0.020975554,-0.007663659,0.0026835443,-0.020280581,-0.00793533,0.0090472875,-0.01795558,0.028632896,-0.02855708,-0.01247161,0.010241378,-0.057063617,0.0058788415,0.042608175,-0.04834486,-0.0048237457,0.070861995,0.013684654,0.011302792,-0.0033990508,-0.007549936,-0.02068493,-0.020116314,-0.015997019,0.036542956,0.023123654,-0.009015698,0.04976008,-0.0062926663,-0.014101638,0.0028083236,0.01780395,0.013899464,0.028683439,0.00033998405,0.0101402905,0.017260607,0.012023036,0.015049329,-0.004154044,-0.017361695,-0.011252248,0.03603752,0.056558184,-0.015365225,0.020912375,-0.014253269,0.011467058,-0.023616454,-0.023907078,-0.0070318654]},{"id":"interface-WebhookAttachmentMeta","type":"interface","source":"main","text":"Interface: WebhookAttachmentMeta\nDescription: Attachment metadata for webhook file uploads (id matches FormData index).\nProperties: description: string | null, filename: string, flags: number, id: number, title: string | null","meta":{"url":"/docs/typedefs/WebhookAttachmentMeta"},"embedding":[-0.022789354,0.044544708,0.0044410285,-0.015117075,-0.027483711,-0.045578707,0.018374175,-0.0142898755,0.017154055,0.013938316,-0.00091379724,-0.018094994,0.054926064,-0.045950945,0.0009461097,0.024423072,-0.03724467,0.048556626,-0.010122857,0.040677547,0.013669476,0.006932968,0.039519466,0.015851215,0.011890996,0.03279847,-0.035362788,0.011012097,0.007930778,0.029158792,0.04156679,-0.019770075,0.048143025,0.03397723,-0.021920793,0.038133908,0.03265371,-0.025353672,-0.034597628,0.002745269,-0.024878033,-0.0054853684,-0.0018224245,0.037906427,-0.010712237,0.013007716,0.021465834,0.048432544,0.0077911876,0.03759623,-0.010846657,-0.00039001176,0.03668631,0.03323275,-0.016750796,0.027855951,0.0143105555,0.033749748,-0.03548687,-0.00079617975,-0.018063974,-0.014341576,-0.02917947,-0.03128883,-0.03195059,-0.006266038,-0.06720998,0.036024548,0.03166107,0.00039841302,0.088262215,0.046571344,-0.021238353,0.057076782,-0.009192257,-0.03836139,-0.017784795,-0.014631095,-0.049135666,-0.02930355,-0.023988793,0.037306707,-0.067334056,-0.021093594,-0.03674835,0.047646705,-0.022106914,-0.06960886,-0.03995375,0.052940782,-0.075606056,-0.00063267857,-0.089254856,-0.018694714,-0.0028279892,0.016440595,-0.03161971,0.00048371797,-0.040077828,-0.016998954,0.018094994,0.0053250985,-0.03397723,-0.020948833,-0.019645995,-0.03083387,0.017174736,-0.015944276,0.015230815,0.010867337,-0.03397723,-0.007036368,-0.016202776,0.03155767,0.024691913,-0.029531032,-0.018756755,0.08056925,0.0013920221,-0.018053634,-0.051948145,-0.0061522983,0.019139335,-0.013235196,-0.0095644975,0.029324232,-0.015727134,0.047398545,-0.06820262,-0.0019361645,0.058400303,0.043800227,0.018467234,-0.03031687,-0.018301794,-0.03470103,0.013803896,0.018611994,-0.045413267,-0.019180695,0.013410976,-0.03312935,0.037720308,-0.021465834,-0.017505614,0.009719597,-0.023926754,0.08334038,0.005500878,-0.020059593,-0.04049143,-0.0014669871,-0.0023109892,0.013493696,0.04047075,-0.017577995,0.008313358,-0.010107347,0.006896778,-0.006333248,0.011984057,-0.021879433,-0.016368216,0.0046607535,0.003130434,0.0100297965,0.028993351,0.0025320067,-0.019025594,-0.019087635,0.059765182,-0.020007893,-0.0052604736,0.006245358,-0.0073258877,0.020152654,0.059103422,-0.041277267,-0.019377153,0.016812835,0.026491072,0.016512975,0.012480376,-0.009383547,-0.050004225,-0.02986191,0.027483711,0.03283983,0.03416335,0.0082358075,-0.001870247,0.006571068,0.022975473,-0.013131796,0.012004737,-0.008571858,0.0014540621,0.003355329,0.005521558,-0.04233195,-0.022582553,-0.003006354,0.02829023,-0.003337234,-0.044213828,0.03277779,-0.0079617975,-0.017164394,-0.03701719,-0.03056503,0.021651953,-0.00068050105,0.020711014,0.051286384,-0.002962409,-0.007108748,0.017733095,0.029634431,0.00084917224,0.003582809,-0.015065376,0.0074189478,0.03633475,-0.027173512,-0.03920927,0.016988615,-0.03556959,0.008421928,-0.03126815,-0.044461988,-0.039581507,0.0022954794,0.010133197,-0.03139223,-0.049177025,0.003332064,-0.0078997575,-0.008365057,0.016523315,0.005935158,0.0042057936,0.004104979,-0.041463386,0.015396255,-0.03116475,0.015944276,0.0019038519,0.0082151275,0.03238487,0.003417369,0.027090792,-0.0027271742,0.007320718,0.009952247,0.015034355,-0.008297848,-0.05997198,0.03509395,0.03126815,0.027338952,0.009704087,-0.033749748,-0.03370839,0.03296391,0.009078518,0.025787951,0.07047742,0.03627271,-0.011994396,0.008830357,0.037120588,0.0044978987,0.042559426,0.029200152,-0.039664228,0.021259034,-0.04309711,-0.021776034,-0.0021248693,-0.0105984965,0.02986191,-0.007977308,-0.029634431,0.08735229,-0.029882591,0.015809854,0.016575014,0.020400815,0.039933067,0.027814591,0.012056436,-0.010846657,0.02888995,-0.03437015,-0.022685952,0.06257766,0.03362567,-0.025208913,0.06319806,-0.02833159,0.0047357185,-0.047853507,0.003316554,-0.025022792,0.0051570735,-0.016213115,0.0026366992,-0.016936915,-0.027442351,-0.022086233,0.006757188,0.005955838,-0.055918705,-0.0011141347,-0.051906783,0.025912032,0.03352227,0.020214694,-0.010531287,0.03672767,0.006969158,0.018715395,0.006622768,-0.053106222,-0.007372418,-0.0142485155,-0.007129428,0.015789175,-0.006333248,0.06551422,0.040863667,0.022355074,0.020359455,-0.040677547,0.043055747,-0.012656156,-0.011311957,0.029717151,-0.012987036,0.054429743,0.024112873,0.003021864,-0.03304663,0.0097971475,-0.036624268,-0.042125147,-0.025415713,0.008768317,-0.013359276,-0.019387495,-0.020411154,-0.040450066,-0.054388385,0.011518757,-0.051286384,-0.03343955,0.018963555,-0.054512464,-0.008892397,-0.014475996,-0.03058571,0.05471926,-0.0012963772,-0.006085088,-0.016916234,-0.024485113,0.003275194,-0.018332815,-0.0032028141,-0.052072223,0.014724156,0.010515776,-0.029717151,0.007129428,-0.025974073,0.03095795,-0.0012937922,0.025167553,-0.021321073,-0.03511463,0.044379268,0.048556626,-0.03164039,-0.010960396,0.030730471,-0.022148274,-0.027835272,0.037823707,-0.051327743,-0.020990193,0.013669476,0.029593071,-0.00044074235,-0.001880587,-0.017092016,0.015747815,0.03627271,-0.03147495,0.0017035145,-0.052899424,-0.010345167,-0.015189456,-0.012594116,0.03709991,0.015778836,-0.023409752,-0.021776034,0.015375575,0.07337262,-0.0068295677,0.014486335,0.038837027,0.009729937,0.03145427,-0.008111727,0.0013519546,-0.014879256,-0.025787951,0.055050142,0.03300527,-0.02893131,0.06960886,0.021734674,0.017629694,-0.015882235,0.007129428,-0.003559544,-0.043427985,0.023513153,-0.016037336,-0.053643905,0.017681394,0.028848592,-0.03261235,0.045495987,-0.03408063,0.018570634,0.024195593,0.015551356,0.0046917736,-0.021103933,-0.000864036,0.0050640134,0.008675258,-0.017267795,0.004019674,0.009280147,0.011136177,0.0055577485,-0.0044927285,-0.046157748,0.045620065,-0.04013987,-0.006472838,0.027173512,0.013307576,-0.073910296,-0.021424474,0.03904383,-0.015778836,-0.03221943,0.00066369853,0.0053199283,0.03170243,-0.004042939,-0.029551711,-0.052940782,0.011901337,0.007744658,-0.018601654,0.026346313,0.013038736,0.014165795,0.019677013,0.009481777,-0.031102711,0.026780592,-0.06104734,0.016368216,-0.011074137,-0.022830714,-0.029241512,-0.053188942,-0.03031687,-0.03769963,0.11390541,0.021962153,0.048267104,0.047936227,-0.0008498185,-0.051286384,0.010464077,0.058234863,-0.006731338,-0.026056793,-0.015975295,-0.015644414,-0.044586066,-0.014786196,0.006974328,-0.023409752,-0.051451825,0.027566431,-0.003239004,0.043386627,-0.008969948,-0.020711014,-0.0048210234,0.00092478347,0.006157468,0.035280067,0.0072638476,0.006426308,0.027028752,-0.043055747,0.0047925888,-0.012904316,0.042559426,0.008618387,-0.004001579,-0.052692626,0.018291455,0.043303907,0.0053199283,-0.017898535,-0.019273754,-0.020576594,-0.0058576083,0.008799338,-0.014062395,0.018405195,0.021279713,0.009864357,0.008659747,-0.026759911,0.007982478,0.0053974786,-0.03267439,0.031971272,-0.0021726917,-0.046902224,0.026594471,0.014579396,0.006653788,-0.009326677,0.026429033,-0.009817827,0.010422717,0.025208913,0.03261235,-0.009528307,-0.017092016,0.018198395,-0.0045159934,0.015024016,0.0008194448,0.029841231,-0.0027039093,0.015158435,-0.025912032,0.0137418555,-0.038837027,-0.011270597,-0.0058472683,0.013566076,0.026346313,-0.0020124218,-0.003058054,0.0590207,-0.009331848,0.0105984965,0.010608837,0.0051570735,-0.0014850821,-0.014413956,0.0011309371,-0.016740454,-0.008716618,0.016812835,-0.03428743,-0.0043634786,-0.001407532,-0.015055035,0.018736074,-0.0035569589,0.025829311,0.04487559,0.016130395,0.02820751,0.00023717368,0.022024194,-0.006767528,0.036955148,-0.0017758944,0.023699272,-0.0045780335,0.03519735,0.011529096,0.006436648,0.012594116,0.004156679,0.022106914,0.009879867,-0.03501123,0.0073879277,0.03360499,0.003422539,-0.044916946,-0.051410463,0.011332637,-0.012656156,0.04030531,-0.04003647,-0.03283983,0.00017400277,0.032053992,-0.0105984965,0.0116324965,-0.009548987,-0.03058571,0.014475996,0.03542483,0.0021856169,0.011436037,-0.00007468224,0.012046096,-0.012025416,-0.03283983,0.008106558,0.047357187,-0.006684808,-0.0053406083,-0.016430255,-0.014569055,-0.012614796,-0.009264637,0.03596251,0.012604456,-0.0008284922,0.032053992,-0.011260256,0.013338596,0.06216406,-0.00091508974,0.03178515,0.010510607,-0.026946032,0.03104067,0.00032425585,0.040429387,-0.013100776,-0.03877499,-0.015685774,0.015117075,-0.005811078,-0.03393587,0.0153445555,0.029923951,-0.03015143,0.03445287,0.011022436,-0.014083075,0.00081685977,-0.011777257,-0.027008072,0.0019064369,-0.006684808,-0.017857175,0.0007231535,-0.0059713484,-0.019842453,0.022561872,0.015964955,0.04284895,0.0031717941,-0.044503346,0.031805832,0.00025316837,-0.013080096,0.052527186,0.014713815,-0.00008885935,0.015334215,-0.0631567,-0.021010874,0.006446988,0.043552067,0.042187188,0.03215739,0.006312568,0.00057807047,-0.026863312,0.001583312,-0.0046400735,0.022106914,0.055381022,0.014858576,0.020266393,0.03672767,0.015396255,0.006410798,-0.003404444,-0.027525071,0.025457073,0.020700675,0.0048856484,0.03523871,0.016378555,-0.0038490638,-0.026904672,-0.008814847,0.0070932377,0.0044823885,0.006478008,-0.0046323184,0.03095795,-0.016037336,-0.00037159363,0.003730154,0.019366814,0.039581507,-0.052279025,-0.024092192,0.003034789,-0.010825977,-0.011291277,0.015199795,-0.0005861486,-0.003528524,-0.03039959,0.0011729434,-0.02969647,0.023513153,-0.0006591748,0.010784617,0.055794623,0.00048759548,-0.008809677,-0.020731693,0.020648973,0.024485113,0.03732739,0.03240555,0.011260256,0.03217807,-0.020400815,-0.011425696,-0.0009318922,-0.012294256,-0.0035672989,-0.008153087,0.002750439,-0.0034354639,0.010107347,0.015065376,-0.0052294536,0.009905717,-0.03147495,-0.0073569077,0.016140735,-0.013183496,0.029489672,-0.008809677,0.018167375,-0.03166107,-0.04107047,-0.008990628,-0.006136788,0.03929199,-0.017671054,-0.013731516,-0.018880835,-0.03548687,-0.016388895,0.030647751,-0.014217496,0.012283917,-0.02977919,-0.038485467,0.023223633,0.014227835,-0.018767094,0.0058989683,-0.00050148985,0.009869527,-0.039167907,-0.050748706,-0.027400991,-0.04183563,0.0026935693,-0.02820751,0.043469347,0.019770075,-0.055381022,0.021300394,0.020007893,-0.0045082388,-0.06911254,0.0025630267,0.021486513,-0.010970737,-0.026780592,-0.008649407,0.003027034,0.048515264,0.001642767,-0.04216651,-0.0017577994,0.0012433847,0.019035934,-0.010500267,0.020090614,-0.013348936,0.0011419234,0.010619177,0.027959352,-0.0121598365,-0.021010874,0.012532076,0.0040972237,0.025808632,0.0076515977,-0.012656156,-0.006410798,0.03745147,0.07014654,-0.024753952,0.012625136,0.018157035,-0.025270952,0.020142313,0.044916946,0.013648796,-0.013896956,0.038981788,-0.004159264,0.000056223733,-0.0026043868,-0.025270952,-0.017267795,0.021238353,0.013576416,0.052030865,0.03809255,0.03734807,-0.007010518,0.022086233,-0.003781854,0.0049063284,-0.015075715,-0.04082231,0.021300394,-0.0040662037,-0.028228192,-0.0043608937,-0.015055035,-0.019490894,-0.0043091937,-0.007951458,0.0022877243,-0.0027168342,0.024733273,-0.011342976,0.0013170571,-0.011808276,0.0116324965,-0.018860154,0.021021213,0.0024208517,0.03445287,0.023575192,0.025808632,0.024216272,-0.030378912,-0.030006671,0.022458473,0.0024958167,0.028703831,0.016699094,0.028434992,0.018260434,-0.00050504424,0.020142313,-0.0031769641,-0.0016440596,0.03364635,0.0027762891,0.014507015,0.011291277,0.019263415,-0.012242557,-0.011498077,-0.022168953,-0.015075715,0.0043117786,0.06683774,-0.0038051188,0.029675791,-0.025105512,-0.004138584,-0.035528228,-0.011136177,-0.018911853,-0.022458473,0.019914834,0.006793378,0.012532076,0.025208913,-0.008132407,-0.03265371,0.0011160735,-0.028703831,-0.048101664,0.03126815,0.0015380746,0.03765827,0.00032425585,-0.013845256,0.046075027,-0.023409752,-0.014600076,-0.0054129884,0.03244691,0.013069756,-0.03490783,0.010732917,-0.03625203,-0.011818617,0.018539615,0.03273643,0.026160192,-0.024050832,0.010117687,0.048349824,0.009187087,-0.0726695,-0.014899936,0.017350515,-0.007992818,0.006421138,0.006452158,0.022727313,0.0077188076,-0.03302595,0.025643192,0.013586756,-0.052279025,-0.014569055,-0.046157748,-0.046654064,0.0055525783,0.009916057,0.013669476,-0.056373663,-0.023016833,-0.009559327,0.053850703,-0.04148407,-0.008747637,0.03623135,-0.025270952,-0.010960396,-0.016337195,-0.03964355,0.008887228,0.029324232,0.0020912644,0.012800916,-0.012056436,0.031061351,-0.025436392,0.006457328,0.054098863,0.003957634,0.00014694105,0.026304953,-0.014930955,-0.023513153,0.018498255,-0.013793556,-0.039498787,0.050831426,0.028538391,-0.0008814847,-0.032053992,0.012790577,0.0009932859,0.0042885137,0.020959174,-0.011012097,-0.018374175,-0.03749283,0.019263415,-0.03548687,0.03542483,-0.025312312,-0.014041715,0.02938627,0.0013364446,0.006974328,-0.00068050105,0.001735827,-0.010867337,-0.006612428,0.0078015276,0.006798548,-0.006741678,0.039933067,0.009088857,-0.07076694,-0.027442351,-0.010221086,0.03387383,-0.049714703,0.003151114,-0.024505792,-0.017743435,0.011022436,0.028186832,0.017060995,0.0577799,-0.041690867,-0.0028383292,0.0072948677,0.023513153,-0.0047770785,0.017908875,0.005511218,-0.0030761492,-0.011467056,-0.010970737,0.025457073,-0.0016104545,-0.0053095883,0.0045237485,0.0010876384,-0.0082151275,-0.0044384436,0.005110543,0.014496676,0.006963988,-0.026160192,-0.03213671,0.006509028,0.03596251,-0.023844033,-0.029572392,-0.019573614,-0.020752374,-0.008571858,0.005743868,0.022375753,-0.009926397,-0.017598676,0.022065554,-0.013803896,0.03639679,0.04090503,0.0053147585,-0.0010191359,-0.020638634,-0.005449178,0.017681394,0.0016285495,0.020235375,0.02735963,0.03066843,-0.018911853,-0.006571068,0.0016052845,0.018932534,0.009962587,0.02829023,-0.003218324,0.020876454,0.03379111,-0.003355329,-0.022437794,-0.03472171,0.008189278,-0.04260079,-0.007977308,0.0147758555,-0.019263415,-0.0023885393,-0.0017125619,0.03277779,0.012015076,0.03625203,0.005986858,-0.027587112,0.023637233,0.003298459,-0.037740987,-0.03474239,0.019015254,-0.0050097285,-0.030296192,0.007842887,-0.023906073,-0.016378555,-0.003148529,0.011436037,0.019284094,-0.023533832,0.0023911244,0.018208735,-0.015541015,-0.025188232,0.022913434,-0.006441818,0.03023415,0.009657557,-0.023368392,-0.03463899,-0.023926754,0.008142748,0.019170355,-0.023802673,0.010226257,0.03590047,-0.010200407,-0.021010874,-0.006333248,-0.0063849483,0.008747637,0.008013498,0.016058015,-0.03614863,-0.014217496,0.0023950017,0.018250095,0.008726957,-0.027235553,-0.003453559,-0.018942874,-0.007331058,-0.010681217,0.042125147,-0.036127947,0.038216628,0.00032716396,-0.03151631,0.006627938,0.00023943555,0.006255698,-0.008654578,0.027173512,-0.021031553,0.021321073,-0.002936559,0.008080708,0.0042549088,0.03683107,0.03759623,-0.018560294,0.017226435,-0.007393098,0.0018586144,-0.0054078186,-0.0054336684,0.02982055,-0.011911676,-0.024753952,0.02938627,0.0055318982,0.0019141919,0.0053767986,0.011911676,-0.00044817425,-0.013421316,0.0043660635,-0.019945854,0.013462676,-0.00091056596,-0.060344223,-0.022230994,0.022293033,0.0127285365,0.0048649684,-0.000835601,-0.041980386,-0.0044927285,-0.025746591,-0.024774633,0.03192991,-0.025808632,0.03579707,-0.011425696,0.0050355783,-0.015685774,-0.0044772187,-0.028000712,-0.015396255,-0.011560117,-0.0030658091,-0.03581775,-0.006229848,0.032053992,0.028869271,-0.008199617,0.027380312,0.010133197,-0.0034199539,0.024671232,-0.030006671,0.0020550743,0.019097975,0.04301439,-0.030006671,-0.012097796,0.047936227,0.071056455,0.024154233,0.0059403284,0.019604634,0.006266038,0.0058989683,-0.0026405768,0.017795134,0.024423072,-0.020142313,0.027504392,-0.0035104288,-0.022499833,-0.010794957,0.012697516,-0.023244312,-0.003378594,-0.011591136,0.04309711,-0.031805832,0.03035823,-0.0024402393,-0.023988793,-0.010970737,0.010898356,0.018446553,0.018622335,0.010205577,0.03416335,0.0006837323,0.044544708,0.002729759,-0.03505259,-0.03575571,-0.040677547,-0.006483178,-0.010345167,-0.010308977,0.016192434,-0.011373997,-0.030130751,0.018374175,0.013834916,-0.00045592923,0.0010159047,-0.017733095,-0.0022541194,0.0028383292,-0.015913256,0.0015509996,-0.019604634,0.008768317,-0.024092192,-0.012128816,0.038650908,-0.00037288613,-0.017009296,0.013504036,0.013369616,0.018818794,-0.0007722685,-0.0048184386,-0.0142898755,0.009212937,0.049259745,0.027980031,-0.012625136,0.006545218,-0.0077498276,0.0122218765,0.003254514,-0.019852795,-0.03501123,-0.009419737,0.008287507,0.00084141723,-0.010960396,-0.011167197,0.013245536,0.03325343,-0.001958137,-0.017650375,-0.008225467,0.0054078186,0.006963988,-0.009466267,0.011332637,-0.0046633384,-0.014827555,0.049880143,-0.028869271,0.016399235,0.010293467,-0.03521803,-0.0048003434,0.0010120271,-0.0048210234,-0.03523871,-0.03627271,0.023244312,-0.0011005634,-0.025312312,-0.028104112,0.022355074,-0.019894155,-0.017857175,-0.009802317,-0.010339997,0.0063952883,-0.03035823,-0.019863134,-0.015902916,-0.003394104,-0.046695426,-0.059517022,-0.022706633,-0.041111827,0.009011308,0.03203331,0.008147918,0.028104112,-0.026449712,-0.015416935,-0.0137211755,0.024443753,0.018849814,0.007015688,-0.03583843,0.009476607,0.025684552,-0.009657557,-0.014889595,0.042125147,0.025705231,0.009280147,-0.014382936,0.020762714,0.013462676,-0.010081497,0.03896111,-0.006715828,-0.013483356,0.024733273,0.023058193,0.006710658,-0.0042445688,-0.018767094,-0.0090371575,-0.03159903,0.016120056,0.015230815,-0.02905539,0.008773487,-0.011001756,0.0025501018,0.008540837,0.004221304,0.001660862,-0.010562307,-0.003332064,-0.012097796,0.02938627,0.03213671,0.016854195,0.021589914,-0.014041715,-0.048970226,0.0056249583,0.024216272,-0.007196638,-0.0003360499,-0.010650197,0.03343955,-0.015644414,-0.015758155,-0.016967935,0.037554868,0.00092349097,-0.017040314,-0.029241512,0.0013454921,0.03178515,0.024030153,-0.012924996,0.010929377,-0.012573436,0.0148172155,0.006167808,-0.027194193,-0.027028752,0.021796713,0.019811435,0.003691379,-0.010003947,-0.030420272,-0.016668076,0.03226079,0.049921505,-0.0013454921,-0.010681217,0.0013177034,0.0044074235,0.0068709278,-0.022892753,0.03912655,-0.025312312,-0.007449968,-0.012976696,0.006007538,-0.025725912,-0.026966712,0.019459873,-0.03360499,-0.022520512,-0.008535667,0.009750617,0.044503346,0.03869227,0.0063642683,0.0001626126,-0.0008704985,-0.03819595,-0.044172466,-0.0048339483,-0.0028951992,-0.00029420524,-0.0122218765,-0.014713815,-0.047067665,0.012035756,0.012780236,-0.03335683,0.011301616,0.007403438,-0.022272354,0.003024449,-0.010308977,-0.005650808,0.003603489,-0.03091659,-0.0030606391,0.006855418,-0.006658958,-0.023120234,-0.013183496,-0.018891174,0.0068812678,-0.025126193,0.007382758,0.010867337,0.022127593,-0.021279713,0.011156857,0.056125503,0.008122068,-0.022934113,0.000721861,-0.02930355,-0.0006010123,0.009776467,-0.020349113,0.0001105895,0.019294433,0.018456895,0.014507015,-0.023451112,0.025725912,-0.025105512,-0.03174379,0.020711014,0.03091659,-0.001415287,0.027132152,0.009879867,-0.011746236,0.010753597,-0.0055525783,0.014134776,-0.023120234,0.023513153,0.03896111,0.008116897,-0.020080274,-0.006834738,-0.025498433,0.027566431,0.023637233,0.016016655,-0.024795312,-0.008432267,0.019128995,0.012738876,-0.0051441486,0.018684374,-0.014382936,-0.001412702,0.019718373,-0.021341754,0.026036112,0.012480376,0.059062064,0.0021481344,0.03478375,0.021672633,0.012004737,-0.005743868,0.028910631,-0.021879433,-0.008199617,0.023244312,-0.024981432,-0.0044565387,-0.014093416,0.021569233,0.024133552,0.013504036,0.003295874,-0.03863023,0.011715217,-0.022934113,-0.0077188076,-0.003494919,0.013173156,0.009362867]},{"id":"interface-WebhookFileData","type":"interface","source":"main","text":"Interface: WebhookFileData\nDescription: File data for webhook attachment uploads. Use `data` for buffers or `url` to fetch from a URL.","meta":{"url":"/docs/typedefs/WebhookFileData"},"embedding":[-0.040957026,0.027492294,-0.0066295397,-0.020272862,0.0330124,-0.049702603,0.02264326,0.028921029,0.015402179,-0.0017913287,0.023011267,0.022026306,-0.0007935153,-0.042710472,-0.025955323,0.018573534,0.01989403,0.03578328,-0.0056229318,0.022112897,0.00744132,-0.031345546,0.035631746,-0.005382104,0.0394417,0.01783752,-0.029700337,0.025500726,0.017328804,-0.010185137,-0.025998618,-0.021084642,0.021615004,0.0105802035,0.006104588,0.047797628,-0.000071876384,0.038532507,0.005000567,0.006532126,-0.039160285,-0.04229917,-0.0077443845,0.04736468,-0.006737777,-0.017956581,-0.01902813,0.06368688,-0.004348437,0.02478636,-0.029440567,-0.016830912,0.005406457,0.022275252,0.00735473,0.06494243,0.00057873176,0.02881279,-0.060569637,-0.03491738,-0.009200177,0.013042605,-0.044637095,-0.043857787,0.009384181,-0.013973446,-0.03550186,0.029375626,-0.0087780515,0.035220444,0.11516457,0.060223278,-0.005208924,0.01899566,0.013843561,-0.03327217,-0.023639044,-0.03089095,-0.056326732,-0.036432702,-0.005693286,0.043879434,-0.093430504,-0.04383614,-0.026431568,0.030674474,-0.012577184,-0.037904732,-0.022838088,0.056066964,-0.0064996546,-0.00046778843,-0.076285705,-0.0006900133,-0.020684164,0.009335474,-0.039052047,-0.017556103,-0.025067776,-0.0098441895,0.015726892,0.004862564,-0.051650878,-0.05195394,0.035631746,-0.01789164,0.031432137,-0.03225474,-0.02753559,-0.020294508,-0.029873516,-0.021062994,0.0050925687,0.013529672,0.039506644,-0.012198353,-0.0032606511,0.024158584,-0.002431282,0.0041887867,-0.021344412,0.026366625,0.015196528,-0.0041536093,0.019526023,-0.018974014,-0.01667938,0.010434084,-0.019363668,-0.03441949,0.060353164,0.024180232,-0.0063751815,-0.030284818,-0.0014003211,-0.03664918,-0.012523065,0.022708202,-0.01667938,-0.00421314,0.028726202,-0.017869992,0.07472709,-0.02933233,-0.00063352694,0.043619663,-0.010726324,0.060742818,0.014958406,-0.0009335474,-0.04853364,0.022903029,0.026539806,-0.010071488,0.0026937579,-0.010266315,0.007868857,0.03465761,-0.014655341,-0.018021524,0.008269336,0.013594615,-0.013940975,0.002144453,-0.031107424,0.018378707,0.043121774,-0.06611139,-0.0041969046,0.0051845703,0.027708769,0.0030766476,-0.008258512,0.05394551,-0.0020754517,-0.00012058321,0.00033266083,-0.025998618,-0.014027565,-0.035956457,0.02058675,-0.03998289,-0.009449123,-0.022026306,-0.037904732,-0.019417787,0.030977538,0.034852438,-0.02191807,0.002892644,-0.0317352,0.033250522,0.008880877,0.0027979363,0.028423136,0.01812976,-0.009887485,-0.013324021,0.051607583,-0.019190488,-0.011040213,-0.016289726,-0.014211568,0.004824681,-0.017934933,0.007100372,-0.014936758,0.03156202,-0.05342597,-0.0089079365,-0.005747405,0.019363668,0.018714244,0.03859745,-0.046239007,-0.004010195,0.024569886,0.03848921,0.025089424,0.014265687,0.004957272,0.028531374,0.0065483614,0.001991568,-0.044810276,0.0015762069,-0.039311815,-0.05797194,-0.054854706,-0.02324939,-0.0033770062,-0.012014349,0.007652383,-0.026712986,0.003717954,0.033618532,0.008604872,-0.018497769,0.014103331,0.010206785,-0.012404004,-0.025457432,-0.05515777,0.037471782,-0.01569442,0.00949783,-0.013497202,-0.0067973076,0.013778619,0.0235741,0.044052612,-0.0031172365,0.035523508,-0.006191178,0.025370842,-0.014958406,-0.029548805,0.042580586,0.032016616,0.045156635,0.034029834,-0.041238442,0.0044458504,0.06290757,0.00090378214,-0.013020957,0.055027883,0.023184447,-0.048490345,0.022773145,0.019569319,0.02976528,0.061868485,0.005552578,-0.043554723,-0.005203512,-0.013129194,-0.009855013,0.0044296146,0.016841736,-0.015456298,-0.0073601417,-0.051001452,0.075896055,-0.011927759,0.012274119,-0.0077010896,0.042905297,0.03998289,-0.012284943,0.005203512,0.010028194,0.015726892,-0.018790009,0.019764146,0.0167335,0.0019956266,0.0042212578,0.057928648,-0.014731107,-0.0068297787,-0.020002268,0.006034234,-0.0051548053,0.0058015236,-0.031345546,0.0034608901,-0.017826697,-0.008880877,0.007430496,-0.01832459,0.029808575,-0.0531662,0.035978105,-0.045156635,0.033726767,0.042277522,0.050395325,-0.029310683,0.019320372,-0.009800895,0.026799574,0.0009436947,-0.06831943,0.026041914,0.007966272,-0.04426909,0.018486945,-0.03636776,0.021344412,0.030566236,0.04229917,0.021777362,-0.042688824,0.048663527,-0.03987465,0.0031551197,0.01702574,-0.039809708,0.002973822,0.0024109876,-0.011137626,-0.010082312,0.0072194333,-0.040848788,-0.020164624,0.016830912,0.053209495,-0.032622747,0.0056012846,-0.05182406,-0.01789164,-0.004629854,0.043251656,-0.034809142,-0.013616262,0.009947015,-0.058188416,0.020814048,-0.046239007,-0.050611798,0.026864517,0.000826663,0.035112206,-0.0063751815,-0.0024136936,-0.0049302126,-0.02762218,0.025933675,-0.048663527,0.023595748,0.020749105,-0.00027617445,0.017188096,-0.022491727,0.0132482555,-0.0101093715,0.040350895,0.023162799,-0.005043862,0.022426786,0.065505266,-0.011678813,-0.05567731,0.00050905393,-0.00891876,-0.033856653,0.03396489,-0.02136606,-0.01853024,0.015975837,0.027730417,-0.02053263,-0.01560783,-0.021246998,0.021820655,0.04519993,-0.0063048275,0.0020362157,-0.06728035,-0.0017845638,-0.003217356,-0.005882702,0.016668556,0.013280727,-0.0037396015,0.03184344,0.03708213,0.034592666,-0.04476698,0.0036963066,0.03706048,-0.006559185,-0.023725634,0.022924677,0.00512504,-0.02469977,-0.020770753,0.0033580647,0.049226362,-0.01789164,0.016462905,-0.024721418,0.039744765,0.009876661,0.011256687,0.017512808,0.028596316,0.03292581,-0.05359915,-0.020835696,-0.018952366,0.008621108,0.0002606153,0.018551888,-0.05195394,0.024656475,0.01346473,0.014233216,0.028206661,-0.038121205,0.02924574,-0.0020132153,0.05498459,-0.043446485,-0.025024483,0.04210434,-0.004499969,-0.021788185,-0.016289726,-0.029981755,-0.002275691,-0.06663093,0.017447866,0.04606583,0.0075279097,-0.02950551,-0.014005917,0.033250522,-0.008929584,-0.0008801052,-0.026994403,0.009882073,0.04074055,0.018346235,-0.010066076,-0.026301684,0.020694988,-0.008902525,0.0027492295,0.020056387,0.019374492,-0.0058177593,0.01972085,-0.02950551,-0.037017185,0.035220444,-0.02383387,-0.010899505,0.023141151,0.0007975742,0.013627086,-0.07680525,-0.018032348,0.0143847475,0.11906112,0.026431568,-0.012144234,0.06424971,-0.035436917,-0.08628684,-0.0087076975,0.04169304,-0.007890505,-0.024721418,-0.024613181,-0.031886734,-0.010039017,0.013443083,-0.0010641088,0.01453628,-0.046542075,0.030826006,-0.008437104,0.02615015,0.008837583,-0.03879228,-0.011797874,-0.045329817,0.01082915,0.028704554,0.012674597,0.020283686,0.035891514,-0.052343596,0.0065158904,-0.008166511,0.026518159,-0.0056283437,0.016646909,-0.06398994,0.0144496905,0.0063048275,-0.009930779,-0.020510983,0.03240627,-0.010688441,-0.028682906,0.008913348,-0.022080425,0.029007617,0.0034608901,-0.0012893778,0.010758796,-0.015943367,-0.015542888,-0.017231392,-0.0061587067,0.021095466,-0.00909194,-0.020023916,0.031129071,-0.040242657,0.026366625,0.015283118,0.04519993,-0.03121566,-0.021084642,0.024894597,0.012090116,-0.0025368135,-0.02122535,0.0047597387,-0.018952366,0.053902216,0.008069097,0.022134544,-0.014525456,-0.022708202,-0.0075333216,0.03664918,-0.045806058,0.010033606,0.017664341,-0.0035420682,0.021452649,0.0069650756,-0.039376758,0.009286767,-0.014168273,-0.0046082065,0.032709338,0.005920585,0.016755147,-0.0024921657,0.004294318,-0.014417219,-0.008631931,-0.02779536,-0.005035744,-0.01647373,-0.02110629,-0.022903029,0.011267511,0.011613871,0.0097576,0.030176582,0.000041920845,0.014482162,-0.008236865,0.016625261,-0.0006511155,0.026518159,-0.018551888,0.0117112845,-0.0065916562,0.0052576307,0.012025173,-0.03355359,0.026972756,-0.038186148,0.0025787556,0.021452649,-0.026972756,0.022426786,0.052430186,0.019926501,-0.013832737,-0.044312384,0.030414704,-0.005176453,0.025457432,-0.03677906,-0.0557639,0.021593357,0.02160418,-0.025608964,0.009827954,0.0025422254,-0.034354545,0.0006250709,0.03539362,0.0093733575,0.031908378,-0.019991444,0.00949783,-0.015802657,-0.013334845,-0.020370275,0.019634262,-0.032666042,0.011419044,0.005528224,-0.02053263,-0.048143987,-0.009579008,0.0531662,-0.036043048,-0.027210878,-0.0076632067,-0.015954189,0.028574668,0.05797194,0.00068764563,0.031886734,0.010894093,-0.02032698,0.006737777,-0.0056121084,0.023639044,-0.027384058,-0.00538481,0.013388964,0.0046542073,0.013735323,-0.038987104,-0.0044810274,0.021723242,-0.0010167549,0.033726767,0.034700904,-0.015910896,-0.014168273,-0.018508593,-0.013821914,0.008361338,0.025349194,-0.0024583414,-0.0039533703,0.03405148,-0.0076577947,0.032774277,0.03182179,0.017534455,0.008718521,-0.05069839,0.016387139,0.016690204,0.0041509033,0.04091373,0.013540496,-0.01552124,-0.0029792339,-0.041303385,0.010672206,0.009530301,0.039593235,0.03242792,0.02684287,0.013497202,0.022664908,-0.025587317,-0.005866466,-0.020575926,0.0075279097,0.047624446,0.031605314,-0.0033310053,0.014027565,0.045676176,-0.0059259967,-0.033921596,-0.023227742,-0.0007617206,-0.038727336,0.0023920462,0.023097858,0.0033499468,0.020684164,-0.010466555,0.010450319,0.011938583,-0.031280603,0.02139853,-0.0066349516,0.015012525,-0.013085899,0.029657042,0.008052861,0.02383387,0.009768424,-0.03680071,-0.022210311,-0.020402746,-0.01427651,-0.001488264,0.009919956,-0.012349885,0.018302942,-0.012707069,0.010937387,-0.012068468,-0.011981878,0.009081116,-0.0047705625,0.013973446,-0.004380908,0.015813481,0.0017020328,0.028011834,0.015856776,0.0028358193,0.025565669,0.039701473,0.03987465,-0.0026491098,-0.0019996855,-0.017166449,-0.042061046,-0.030046698,-0.0022905737,0.004183375,-0.029289035,0.029613748,-0.017090682,-0.012555536,0.012772011,-0.03664918,-0.0072086095,0.026280036,-0.024504943,0.029159151,-0.00561752,0.010818326,-0.030328114,-0.019850736,-0.021593357,-0.0085074585,0.053382676,-0.007630735,-0.025847087,-0.012977662,-0.0360214,0.02003474,0.06234473,-0.014460514,-0.00068832206,-0.008128627,0.0017561516,-0.0024258704,0.0004319348,0.001177758,0.023465864,-0.006618716,-0.00095654785,-0.031237308,-0.011332454,-0.0033634766,-0.034441136,0.001095227,-0.037255306,-0.00049248006,0.0011966996,-0.046758547,0.03147543,0.0040210187,0.0007299258,-0.045156635,-0.004529734,0.03578328,-0.002764112,0.0051196283,-0.013020957,0.008079921,0.06702059,0.014644518,-0.029657042,0.041563153,-0.026063561,0.024050346,-0.011354101,0.030328114,-0.0132482555,0.03420301,0.016885031,0.0034879495,-0.0021972188,-0.0004278759,0.0129127195,0.0031226485,0.06147883,0.010704677,-0.0055228123,0.003263357,0.00909194,0.050308734,-0.030414704,0.019558495,0.016397962,-0.0005861731,0.029202444,0.024050346,0.012999309,-0.0026951109,0.032557804,-0.03208156,0.0072897878,0.00039269874,-0.008058273,-0.016603613,0.0010871092,-0.0149800535,0.06645775,0.020197095,0.034181364,-0.008139451,-0.004708326,0.008263924,-0.0012555536,0.014904288,-0.0480141,0.008832171,0.010233845,0.014687813,-0.0011128156,0.0046136184,0.018930718,-0.007517086,-0.016192311,0.009974075,0.01010396,0.017783402,0.005693286,0.034506075,-0.037363544,0.0037693668,-0.02924574,-0.0145146325,0.00969807,0.053469267,0.05472482,0.029548805,0.02933233,-0.00001848703,-0.022838088,0.010293375,0.007820151,0.045849353,0.034441136,-0.03612964,0.004713738,0.031107424,0.008902525,0.018606005,-0.03095589,0.010585615,0.02666969,-0.006045058,0.02093311,0.00042618468,-0.01598666,-0.0029684103,-0.018367883,-0.018075643,-0.009384181,0.05273325,-0.01578101,0.028596316,-0.041238442,0.010639735,-0.029570453,-0.024678122,0.00026078444,-0.03019823,0.007998742,0.016289726,-0.0031199425,-0.0051115104,0.0207924,-0.032795925,0.0060937647,-0.015164057,-0.0009883426,0.030977538,0.007690266,0.010212197,-0.008144863,-0.0057690525,0.04905318,-0.019277077,-0.028617963,-0.00012624876,0.024591533,0.015066643,-0.036995538,0.0136487335,-0.017014917,-0.023444217,0.030674474,0.016776795,0.039160285,-0.021560887,-0.012360709,0.0131833125,-0.0071761385,-0.03963653,-0.010618087,0.031930026,-0.019049779,-0.00014586678,-0.03156202,0.019677555,0.02032698,-0.012717892,0.024613181,0.017004093,0.00074480847,-0.0043619666,-0.063513696,-0.078277275,-0.03431125,0.017339628,0.011613871,-0.037168715,0.00628318,0.018844128,0.04340319,-0.024353411,0.015369708,0.00796086,-0.033921596,0.022112897,-0.010471966,-0.041303385,0.0058881133,-0.007100372,-0.0024042227,0.015153233,0.033142287,0.03738519,0.0038640746,0.031800143,0.07074395,-0.020857343,-0.015413003,0.05130452,-0.0064563598,-0.0012853189,-0.04316507,0.0075008506,0.005541754,0.056066964,0.036389407,0.009746776,-0.01844365,-0.0038343093,0.0016587379,-0.009984898,0.045416404,0.0011310807,-0.020142976,-0.021149585,0.028163366,-0.025998618,0.018043172,-0.03441949,-0.004148198,0.03541527,0.026994403,0.021008875,-0.021463472,0.0045892647,0.027297467,-0.0077552083,0.009054057,0.027752064,0.024937892,0.00079825066,0.00833969,-0.04364131,-0.008144863,-0.027903596,0.04913977,-0.028206661,0.019915678,-0.00020429805,-0.023054563,0.044030968,-0.0006051146,0.008155687,0.024678122,-0.05385892,-0.03526374,0.022535022,-0.0038748982,0.00086048717,0.021928893,-0.002072746,-0.034506075,-0.019482728,0.01827047,0.00486527,-0.010168902,0.0018021524,0.010114783,0.010834562,-0.0035637158,-0.0004934948,0.005003273,0.026712986,-0.020922286,-0.0101093715,0.00471915,0.021669123,0.02597697,-0.02247008,-0.007446732,-0.021409353,0.00064130645,0.02400705,0.018865775,0.020402746,-0.005915173,-0.003103707,0.035631746,-0.029397273,0.008502047,0.039571587,-0.010585615,-0.031713553,0.0012920838,0.0046163243,0.048750117,-0.016268078,0.0020497453,-0.005379398,0.011473162,-0.004510793,0.012209176,0.017480336,0.034679256,0.0029521745,0.008767228,-0.0048138574,0.035220444,0.0066674226,-0.006900133,-0.02855302,-0.033726767,-0.00906488,-0.041909512,0.020013092,-0.0021187468,0.0075874403,0.008853817,-0.013432259,0.0043132594,-0.008069097,0.020197095,0.011819522,-0.011126802,0.012999309,-0.0040210187,-0.04210434,-0.028293252,0.009616891,0.0103096105,-0.028141718,0.03257945,0.009118999,-0.0071653146,-0.013746147,-0.012717892,0.02788195,-0.00020987904,0.014341453,0.020456865,-0.016949974,-0.025608964,0.03920358,0.007067901,0.016690204,0.0523003,-0.00380725,-0.016462905,-0.015153233,0.016387139,0.012209176,0.003103707,0.005882702,0.017047387,0.030133286,-0.02597697,-0.024375059,0.022361843,0.012750363,0.009286767,0.0020023915,-0.019406963,0.00049755373,0.010277139,-0.011830346,-0.018638477,-0.0020930404,0.0075766165,0.018292118,-0.0012264649,0.016722675,0.012588007,-0.005871878,0.021084642,0.00009732908,-0.032622747,0.021495944,0.032103207,-0.0072248452,-0.004711032,0.027384058,0.007398025,0.021008875,0.00054456934,-0.015510417,-0.00056926097,0.030999186,0.028856086,-0.034700904,0.018032348,0.005244101,0.018227175,0.00018248145,-0.015445475,0.039181933,-0.02272985,0.000034986886,0.0180107,-0.00039371348,-0.00198345,-0.005365868,0.0004877447,0.019309549,-0.006586245,0.006402241,-0.0028655846,0.0055579897,0.0035393625,-0.02067334,-0.0036584234,0.021095466,0.021452649,-0.012577184,0.0063481224,-0.039571587,-0.022145368,0.011191745,-0.05095816,0.0014530869,-0.011732932,0.019764146,-0.0075874403,-0.0034175953,-0.02608521,-0.0012427004,-0.0060125864,-0.0009700775,-0.01896319,0.0074250842,-0.021625828,0.019428609,0.032016616,0.032557804,0.009021586,0.028358193,-0.007100372,-0.013995093,0.016116546,-0.03240627,-0.009140647,0.020575926,0.023703987,-0.009817131,0.0049410365,0.03439784,0.04468039,0.0013204961,-0.015239824,0.01870342,0.00438632,0.006975899,0.006651187,-0.0043646726,0.008372162,0.006597068,0.025327547,0.010239257,-0.037255306,-0.016203135,0.011667989,-0.030111639,0.013475554,0.010271727,0.010385376,-0.044810276,0.028769495,0.014763579,-0.0113108065,-0.002776289,-0.006434712,0.037666608,0.003991253,0.016181488,0.04400932,-0.0063751815,0.026777929,0.032233093,-0.030566236,-0.034679256,-0.0035393625,-0.009054057,0.022318548,0.008594048,-0.0063427105,0.0068351906,-0.008767228,-0.0025056954,0.0063535343,-0.0052684546,-0.0030685298,-0.045676176,-0.0016384433,0.00021562916,-0.03225474,0.027059345,-0.028033482,-0.018454473,-0.022967972,-0.012772011,0.018118937,0.013778619,-0.024634827,-0.010953623,0.010071488,0.006743189,0.0037125421,0.025067776,-0.007619912,0.008112391,0.033250522,0.017826697,-0.028098425,-0.0042807884,-0.010959035,-0.0074900268,0.018865775,-0.039571587,-0.03842427,-0.011689637,-0.020868167,-0.008269336,-0.004830093,0.010834562,0.023963757,0.028726202,0.00028040246,-0.010006546,-0.0033770062,0.0059963507,0.015954189,-0.0011919641,0.013388964,-0.005195394,0.0052928077,0.033943243,-0.0047678566,0.014287334,-0.03225474,-0.028423136,-0.00060071744,0.030133286,-0.017274685,-0.049226362,-0.006266944,0.024981188,-0.0045270287,-0.023184447,-0.031237308,-0.025370842,0.020694988,-0.028531374,0.006759424,0.009551949,0.0072573163,-0.02452659,-0.0030739417,-0.02281644,-0.0019103898,-0.016354669,-0.030393057,-0.017902462,-0.03327217,0.0029927636,0.02238349,0.011635519,0.06442289,-0.03089095,-0.02478636,-0.03216815,-0.014060035,0.019504376,0.00039269874,-0.051694173,-0.001303584,0.011949407,0.0037666608,-0.02003474,0.026301684,0.041952807,-0.009286767,0.004186081,0.037948027,-0.012339061,0.018616829,0.06559185,0.00828016,-0.0006186443,0.041974455,0.03900875,0.0060504694,-0.008258512,-0.025067776,0.015402179,-0.03732025,0.014168273,0.025024483,-0.03509056,0.022881383,-0.029548805,-0.008913348,0.037666608,-0.017253038,-0.006737777,-0.0006003792,0.026799574,-0.011483986,0.045676176,0.032189798,0.012360709,0.029743632,0.003799132,-0.038445916,-0.025998618,-0.0009017527,-0.017566927,0.0034257132,-0.042602234,0.044637095,-0.025327547,-0.007890505,0.0048950356,0.026907813,0.0017561516,-0.007679442,-0.015239824,0.03833768,0.02591203,0.027405705,-0.022859735,-0.013064252,-0.030349761,0.03526374,0.02131194,-0.021409353,-0.02478636,0.020067211,0.021896422,-0.002933233,-0.023617396,-0.0101797255,-0.031518724,0.029548805,0.049356245,-0.01320496,-0.038142852,-0.028466431,-0.012317413,0.013443083,-0.022231959,0.053122908,-0.006034234,0.0036178345,-0.012198353,0.0023460453,-0.047494564,-0.0125122415,0.0216583,-0.008150275,0.014049212,-0.02469977,-0.017718459,0.021387706,0.031756848,0.008004154,0.014731107,-0.013399787,-0.033726767,-0.01630055,-0.013681205,0.0103096105,0.004789504,0.015597006,-0.0063318866,-0.033467,0.01317249,0.000056824625,-0.012685421,0.04788422,-0.022102073,-0.03491738,0.013388964,-0.004159021,0.006786484,-0.009362534,-0.03465761,0.0073817894,-0.021084642,0.003477126,-0.017133977,-0.014287334,0.0068730735,0.0029034677,-0.00036699238,-0.010623499,0.027600532,0.01149481,0.004794916,0.023444217,0.06511561,0.014471338,-0.040264305,0.01346473,-0.0235741,0.0018955071,0.0034365368,0.022513375,-0.012241648,0.01123504,0.022253605,0.019861558,-0.018378707,0.044723686,-0.0020835695,-0.032103207,0.024180232,0.028228309,-0.0068514263,0.035653394,-0.028228309,-0.013908504,-0.00906488,-0.025305899,0.011906112,-0.037363544,0.011505634,0.033142287,-0.032471213,-0.0103799645,0.001779152,-0.023335978,-0.012988485,0.017956581,0.012999309,-0.0004765827,-0.02139853,0.020002268,0.019829089,-0.0038316033,0.016008308,-0.016430434,-0.02247008,0.04359802,-0.032471213,0.033250522,-0.014492985,0.020554278,-0.007306023,-0.0056283437,0.017956581,0.03636776,0.017090682,0.008150275,-0.024764713,-0.0068568382,0.01074256,-0.043901082,0.001570795,-0.013821914,0.044637095,-0.00354748,-0.0006074823,0.01972085,-0.002517872,0.013150842,-0.017123153,-0.008886289,-0.018173056,-0.005327985,0.012263295]},{"id":"interface-WebhookSendOptions","type":"interface","source":"main","text":"Interface: WebhookSendOptions\nDescription: Options for sending a message via webhook. Aligns with WebhookMessageRequest in the API.\nProperties: attachments: WebhookAttachmentMeta[], avatar_url: string, content: string, embeds: (APIEmbed | EmbedBuilder)[], files: MessageFileData[], tts: boolean, username: string","meta":{"url":"/docs/typedefs/WebhookSendOptions"},"embedding":[-0.034762986,0.016148482,0.05059327,-0.0020968663,-0.023964187,-0.06606559,0.043871365,-0.039973456,0.012936683,0.007930058,-0.0112661505,-0.019260842,0.003902881,-0.010182293,-0.0044398378,-0.015929721,-0.02195557,0.05206493,0.0128173595,0.011305925,-0.015144173,0.006995355,0.024719903,0.027782546,-0.017341718,0.011912487,-0.016595945,0.036234647,0.002275852,-0.025336409,0.01428902,-0.029413305,0.027802434,0.00826317,-0.031581018,0.063559785,0.010410997,0.028080856,0.0056529627,-0.0010869649,-0.028438827,-0.027563786,-0.029870713,0.024700016,-0.039237626,0.042359933,-0.009471322,-0.005116006,-0.023327794,0.021537937,-0.032336738,0.014328794,0.034126595,0.041047372,-0.012051699,-0.013861442,0.001992458,0.013712288,-0.031600907,0.014895582,-0.016894255,-0.021120304,-0.030407669,-0.05170696,0.028697362,-0.007820678,-0.06765657,0.010122632,-0.019907178,0.024879003,0.09172019,0.0015884974,-0.03070598,0.07203177,0.011435193,-0.015740791,-0.040112667,-0.01985746,-0.014905525,-0.053775236,-0.0297315,0.008133902,-0.09172019,-0.04494528,-0.03746766,0.027424576,-0.0031943962,-0.039893907,-0.027822321,0.023705652,-0.052184254,-0.010957898,-0.06546897,-0.018216759,-0.013533303,-0.031600907,0.012946627,-0.04383159,-0.021339064,0.012419614,0.05170696,-0.013095782,-0.06928732,-0.0043130564,0.010261843,-0.021975458,0.031899218,-0.010067942,0.018017886,0.013225049,-0.020841882,0.006264497,-0.013811724,0.016039101,0.014119977,-0.035956223,-0.0075074527,0.04259858,-0.0061650607,-0.05373546,-0.027961532,-0.038223375,0.07521374,0.0012634646,-0.0048450413,0.019101745,-0.018584674,0.03386806,-0.056121938,0.052104704,0.04434866,0.039834246,0.027364913,-0.012568768,-0.029413305,-0.021140192,-0.017888619,0.03537949,-0.019350335,0.012260515,0.048644315,-0.038740445,-0.016834592,-0.048286345,-0.025972804,0.023049371,-0.03746766,0.05286042,-0.016814705,0.0029433193,-0.036234647,0.02621145,0.006622468,0.014627103,-0.008969168,0.026131902,-0.020563459,0.034166366,0.015800454,-0.02658931,0.04311565,-0.021935683,-0.00056243746,-0.009168042,-0.010957898,-0.030248571,0.08456077,-0.0029955234,-0.013314542,0.0005354032,0.03776597,-0.065190546,-0.0012864592,0.043950915,0.02827973,-0.0033261497,0.02121974,-0.030188909,-0.02473979,-0.0027071575,0.05397411,0.00053043134,-0.00019312424,-0.04208151,-0.072469294,-0.01240967,0.008889619,0.015810397,0.042837225,0.0010813714,-0.012618487,-0.0011385474,0.010351336,-0.017759351,-0.016188256,0.0047108023,-0.028597925,0.00009244483,0.0033758678,-0.057036754,0.027822321,-0.0034380155,0.04407024,-0.015392764,-0.044587307,0.03575735,-0.0038208459,0.030308234,-0.015154117,-0.029313868,0.041126918,-0.006175004,0.041047372,0.018564787,-0.04243948,-0.02217433,-0.015860116,-0.007263833,-0.00014775636,0.008178649,-0.051348988,0.02372554,0.043950915,-0.014547554,-0.01762014,-0.0005434824,-0.062605195,-0.036433518,-0.043234974,-0.0012703008,-0.04347362,-0.023089146,-0.0030775585,-0.03400727,0.006045737,-0.01622803,0.021478275,0.003845705,0.023168694,-0.022532301,-0.01093801,-0.020096108,-0.028538264,0.016397072,-0.011803107,0.004414979,0.0013635225,-0.02923432,-0.01303612,0.008765324,0.049320485,-0.00804441,-0.0062446096,0.0041191555,0.037209123,-0.029711613,-0.023288019,0.0042931694,0.021537937,0.009511097,0.049797777,-0.015989382,-0.010301617,0.028836573,0.01303612,0.01762014,0.045979418,0.039834246,-0.013503471,0.014438174,0.011743446,0.044308886,0.03289358,0.03965526,-0.028080856,0.025913142,-0.048127245,-0.024461368,-0.014080202,0.0069506085,-0.041445117,0.008745437,-0.006319187,0.08062308,-0.02402385,0.009565787,0.022949934,0.010371223,0.03422603,0.047490854,0.009461379,0.0004278875,0.02460058,-0.04399069,-0.0001887739,0.033967495,0.046536263,-0.0023230843,0.08861777,-0.0016170854,-0.014915469,0.0014144836,0.0075770584,-0.044985056,0.010311561,-0.028299617,0.014547554,-0.004914647,0.014259188,-0.018882984,0.022154443,0.025594944,-0.05699698,0.009575731,-0.035498817,0.015522031,0.01303612,0.008800127,-0.0068710595,0.015402707,-0.0287968,0.031123612,-0.0077112974,-0.036493182,0.0042484226,-0.038084164,0.0013871386,-0.00545409,-0.008680803,0.043791816,0.023467004,-0.010639701,0.0066473274,-0.007726213,-0.004186275,0.042996325,-0.010291673,0.028955897,-0.014995018,0.050831918,0.0012187181,-0.013960879,0.0045417603,0.0065578343,-0.072827265,-0.049837552,-0.050911468,0.015362933,-0.0065528625,-0.000022237255,0.0042235637,-0.02086177,-0.025575057,0.025833592,-0.024898889,-0.0013896246,0.01251905,-0.03277426,-0.02658931,-0.01865428,-0.012767642,0.025972804,-0.0057275402,0.027603561,0.024719903,-0.0037686417,-0.012757698,-0.03422603,-0.006329131,-0.03949616,0.062963165,0.019539265,-0.00074018014,0.007731185,-0.027762659,0.0122505715,-0.002163986,0.027205816,-0.012330121,-0.020225376,0.06487235,0.033728845,-0.03730856,-0.022452753,0.0040097754,-0.009640365,-0.01546237,0.017470986,-0.01039111,0.0020421762,0.0155816935,0.049598906,-0.07012259,0.018336084,0.013851499,0.005568442,0.027563786,0.012936683,-0.014676821,-0.046695363,-0.014338737,-0.01699369,-0.02086177,0.0154922,-0.00545409,-0.05309907,-0.00499171,0.030566767,0.043592945,-0.021557825,0.023904525,0.04709311,0.023665877,0.033470314,0.008909507,-0.014119977,0.01884321,-0.045899868,0.046019193,0.05699698,-0.045104377,0.0452237,-0.0011397904,0.022134556,-0.013811724,-0.03502152,0.010729194,-0.018266477,0.0051905834,-0.060178947,-0.063281365,0.02026515,0.04963868,-0.01737155,0.022452753,-0.06721905,0.030964514,0.020195546,0.01358302,0.026191564,-0.051150113,0.013931048,0.01865428,-0.0031073894,-0.01230029,-0.01442823,-0.006373877,0.008248255,-0.043433845,-0.006562806,-0.01772952,-0.02871725,0.006577722,0.008203508,0.020314869,-0.016675495,-0.033370875,0.0049817665,0.037368223,0.0068412283,-0.0068263127,-0.020285038,-0.013314542,0.0140304845,0.0112263765,0.021935683,-0.006602581,0.012568768,0.0112263765,0.030566767,0.01292674,0.025754044,0.035260167,0.007865424,0.01461716,-0.044149786,0.033291325,-0.036155097,0.024680128,-0.008233339,-0.007959888,0.0033336072,-0.024839228,-0.036711942,-0.012399727,0.073105685,0.007696382,-0.0025729183,0.01699369,0.013185275,-0.009933703,-0.0013324486,-0.032038428,-0.0046735136,0.007935029,-0.041325793,-0.016029157,-0.035638027,0.0010969085,-0.005469005,-0.012161079,-0.04494528,0.0063539897,0.0061948914,0.05405366,0.0073185232,-0.069168,-0.0031496498,-0.02593303,0.045462348,-0.007969832,-0.038302924,-0.015929721,0.017928394,-0.03187933,0.0021217254,-0.01325488,0.037069913,0.016784875,-0.030586654,-0.052343354,0.011465024,0.020762334,0.005707653,-0.0010938011,0.008685775,-0.05186606,-0.060258493,0.0077063255,-0.005285048,-0.02680807,0.0034131564,-0.020583346,-0.006060652,-0.015004962,-0.01112694,-0.0069207777,-0.040649626,0.046098743,-0.015770622,-0.03531983,0.036334082,0.011146827,0.01627775,-0.00019079371,0.032595273,0.010167378,0.031223048,-0.001165271,0.016049044,-0.028478602,-0.027921759,0.03796484,-0.020742446,0.018465351,0.019141518,-0.0045541897,-0.0025455733,-0.009083521,-0.023486892,0.027424576,-0.045661222,-0.024540918,0.0035846843,-0.021259515,0.021796472,-0.015999326,0.003316206,-0.003311234,0.010520377,-0.008899563,-0.009431548,-0.014965187,-0.0036716913,-0.0045268447,-0.0027593616,0.0005089904,0.0094862385,-0.011355644,-0.024063623,-0.004148986,0.00960059,-0.01560158,0.015034793,-0.008228367,-0.013960879,0.014308906,0.039535936,0.023367569,0.018803434,0.04017233,0.017908506,0.036851153,-0.026251225,-0.017500818,-0.021458387,0.00025232002,-0.00921776,-0.031441808,0.022074893,0.01743121,0.012041755,-0.0075969454,-0.017192563,0.020225376,0.046536263,0.014527666,-0.019817686,-0.033152115,0.03084519,0.009893928,0.027762659,-0.0098094065,-0.018465351,0.01546237,0.007497509,-0.024978438,-0.010460716,0.009366915,-0.029333755,0.034047045,0.042200834,-0.008079212,0.023924412,-0.014090146,0.030546881,-0.00025480593,-0.010599926,-0.0064782854,0.043871365,0.01420947,0.048882965,-0.013831612,-0.018674167,-0.026708633,-0.0026226365,0.03378851,-0.032654934,-0.012528994,0.02247264,-0.037149463,0.014845863,0.041126918,-0.002272123,0.0107988,0.022055008,-0.037288673,0.016476622,-0.01685448,0.025057988,-0.018664224,-0.014328794,0.051428538,0.000799842,0.016486565,-0.0309844,-0.005088661,0.02798142,0.009640365,-0.0012690579,0.012757698,-0.0045044716,0.004099268,0.027325138,0.026469985,-0.004497014,-0.0000636238,-0.007944973,-0.016705325,-0.011982094,-0.051587634,0.04852499,0.010371223,-0.023307906,0.011405362,-0.05707653,0.02857804,-0.033012904,0.021557825,0.044905506,0.006060652,-0.004007289,0.0012889451,-0.020881657,0.026847845,-0.022989709,0.032734483,0.031322483,0.051587634,-0.012091474,0.031600907,-0.016973803,0.011932375,0.003510107,0.021716923,0.071037404,0.04267813,0.0273848,0.03179978,0.02026515,0.0077560437,-0.011206489,-0.0215976,0.0141796395,-0.005469005,-0.020086166,-0.0030750725,-0.0017649971,-0.0069406647,0.0011907516,-0.016407017,0.022731174,-0.008844873,0.0066373837,-0.0037810714,0.01688431,-0.0062545533,0.0038407333,-0.007442819,-0.0040570074,0.021577712,-0.034385126,-0.045820322,0.027742771,-0.0017103071,-0.020125939,0.0082731135,0.015880002,-0.011842882,0.013493528,0.0077013536,-0.022333428,-0.004859957,0.009262506,-0.012359952,0.046536263,-0.005991047,-0.014249245,-0.017689746,0.007954917,0.032575384,0.012797472,0.05170696,0.024918776,0.015671186,0.011355644,-0.0007408016,0.010072913,-0.007905198,0.004638711,0.0048997314,0.0017078212,-0.020961206,0.028239954,-0.028220067,0.015611524,0.00370898,-0.02408351,-0.014448117,-0.0030079528,0.024879003,0.037726194,-0.02408351,-0.005707653,-0.013463696,-0.023824975,0.01718262,0.027066605,0.0500762,0.0076218047,-0.005623132,-0.033828285,-0.040331427,-0.005409343,0.058428865,-0.05317862,0.006060652,-0.029194545,-0.025793817,-0.03319189,0.0145972725,-0.04208151,0.010709306,-0.00747265,-0.0022957393,-0.03848191,-0.04007289,-0.025157424,-0.008546564,-0.0051856115,-0.046178292,0.004574077,0.013702344,-0.056002613,0.02593303,0.009481266,-0.0068064258,-0.0383427,0.0126682045,0.049837552,-0.031481583,-0.01589989,-0.01710307,-0.030129246,0.031481583,-0.004034634,-0.011474967,0.018694054,-0.0026599253,0.021995345,-0.036513068,0.03561814,-0.0147862015,0.009312225,0.026987055,0.002244778,-0.0010422184,0.012956571,0.020106053,-0.011723558,0.055127572,-0.0072240587,-0.012509107,0.011425249,0.045979418,0.062287,-0.020026503,-0.016506452,0.025336409,-0.0167451,0.016208142,0.023109034,0.009834266,-0.00084458845,0.026390437,-0.041286018,-0.0051358934,0.030348007,0.0039227684,0.0016804761,0.008402381,-0.013762006,0.036990363,0.035817012,0.011902545,-0.0068959184,0.02724559,0.01898242,0.01941994,-0.024401708,-0.02209478,0.01759031,0.0136924,-0.035359606,-0.010082857,-0.013155444,-0.024620468,-0.0015400222,0.0012112603,0.0056678783,-0.024640355,0.012051699,-0.0019887292,-0.008909507,-0.02416306,-0.020255206,-0.011216433,-0.0037910151,-0.0031347345,0.055923063,-0.0035225365,0.040689398,-0.0057971454,0.0112661505,-0.0029184602,0.018604562,-0.00033870543,0.04868409,-0.0057921736,0.026052352,0.018246591,-0.009351999,0.028657587,0.010570096,-0.042638354,0.00092227315,-0.0155816935,-0.00043006268,-0.0138017805,0.020921431,-0.023705652,0.0028339392,-0.0067069894,0.0024324644,-0.008979112,0.04208151,-0.041922413,0.03766653,0.00072340027,-0.004094296,-0.042359933,0.01557175,0.006115342,-0.007323495,0.028339392,0.011683784,0.035936337,-0.032595273,-0.017828956,-0.033510085,0.050513722,-0.032575384,-0.02350678,0.05663901,0.02121974,0.013901217,-0.009168042,-0.013016232,0.050354622,-0.0040371204,-0.01754059,0.010301617,0.029751388,-0.0020546059,-0.056678783,-0.0034678464,-0.015512087,-0.015681129,0.010768969,0.023049371,0.002472239,-0.05186606,0.01505468,0.015044737,-0.034047045,-0.06638378,-0.011594291,0.031978764,-0.0042111343,-0.013294655,0.026549535,0.012359952,-0.010172349,-0.025833592,0.013732175,0.036731828,-0.08471987,0.023546554,-0.048286345,-0.046576038,0.021418612,-0.016894255,0.025376184,-0.03106395,-0.035061296,0.001375952,0.009356971,-0.01791845,0.01671527,0.036274422,-0.022671513,-0.0019812714,-0.02643021,-0.043274745,0.0034206142,0.054729827,0.018902872,0.008606225,0.023904525,0.019400053,-0.021398727,0.024938663,0.059980072,0.0118329385,0.010301617,0.041604213,0.006214779,-0.0048375838,-0.004944478,-0.006458398,0.008675831,0.053775236,0.0034703324,-0.009888956,-0.0025654607,-0.014249245,-0.01175339,0.007979776,0.0077361567,-0.017391438,-0.013970822,-0.064235955,0.013841555,-0.026549535,0.03062643,-0.048803415,0.0003018829,0.031322483,0.021458387,0.020543573,-0.015183947,-0.000716564,-0.025495509,-0.020145826,0.012648318,-0.020841882,0.022572076,0.018813377,-0.000020333979,-0.024879003,-0.014239301,0.0017749408,0.031382147,0.007721241,-0.038521685,-0.005409343,0.0043404014,0.0067219045,0.0161982,0.046218067,0.056440134,-0.026469985,0.0073433826,0.017749408,0.0076317484,-0.0052054985,0.030507106,0.022353316,-0.01660589,-0.022989709,-0.028041082,0.018316196,-0.036930703,-0.010311561,0.0000987373,-0.0024535947,-0.005175668,0.032933354,0.015174003,-0.015452426,-0.01292674,-0.017580366,-0.030487219,0.02203512,0.008924422,-0.011206489,0.00018457892,-0.0015400222,-0.0060705957,0.034762986,0.010818686,0.034623776,-0.014279076,0.0131455,0.026251225,-0.014965187,0.04904206,0.0132349925,0.015362933,0.017252225,-0.011574404,0.016218087,0.031163387,0.00014022095,0.00837255,0.0031844527,0.023069259,-0.0076367203,0.019052025,0.007129594,0.04764995,-0.0012087745,0.005623132,0.007661579,0.023626102,-0.035817012,0.006120314,-0.021458387,-0.045502122,-0.0040843524,-0.036075547,0.009471322,0.008839902,0.0049941964,-0.015472313,0.0061650607,0.013931048,-0.0006687102,0.02849849,-0.009779576,-0.020543573,0.015870059,0.014050372,-0.03422603,-0.024182947,0.013781893,0.02607224,-0.035856787,0.0074875653,-0.009968505,-0.008193565,0.015929721,-0.019479603,0.022671513,-0.021915795,0.0020396903,0.0067765946,-0.033510085,-0.010440828,0.04824657,-0.019887293,0.028239954,-0.013662569,0.012976458,-0.026668858,-0.009133238,0.02173681,-0.003452931,-0.020881657,0.0003520672,0.023188582,0.012986402,-0.017461043,0.045502122,-0.008059325,0.021677148,0.036095433,0.019787855,-0.015004962,-0.0091083795,0.0056281034,-0.02129929,-0.006930721,-0.043354295,0.009734829,-0.0042558806,0.0024573235,0.024003962,0.035001636,-0.031521358,0.033072565,0.035518702,-0.03313223,-0.004405035,-0.0025207142,0.0014393427,-0.021796472,0.02372554,0.006204835,-0.010739137,0.017202508,0.014358625,0.0055982727,0.016019214,0.03299302,-0.008526676,-0.004099268,-0.0022037604,-0.008675831,0.011027504,-0.019688418,0.008243282,-0.02438182,-0.002081951,-0.0059015537,0.01453761,-0.013732175,-0.01769969,0.025276748,0.010649645,0.019221067,-0.022134556,-0.014189582,-0.001853247,0.008954253,-0.0019091801,0.019409997,0.024799453,0.020444136,-0.0147862015,-0.013791837,-0.03362941,0.008984084,-0.05325817,-0.029254206,0.032078203,-0.03665228,0.016108707,-0.021140192,-0.0167451,-0.015283383,-0.015979439,-0.005195555,0.022949934,-0.032217413,0.016804762,-0.030507106,0.03269471,-0.0031247907,0.033231664,0.009192901,0.014875694,-0.010371223,0.0034753042,0.03746766,-0.028160404,-0.0024535947,0.026131902,0.024242608,-0.009978449,0.018912815,0.037507433,0.036771603,0.024182947,0.0273848,0.014348681,0.014567441,0.003087502,-0.009754716,0.018922757,0.014955243,-0.02173681,0.0037214095,-0.018912815,-0.035717577,-0.019260842,0.023626102,-0.01641696,0.010232012,-0.024680128,0.021975458,-0.048803415,0.054292306,0.014577385,-0.02364599,-0.024123285,-0.019946953,0.020981092,0.0108485175,0.0068113976,0.04753063,-0.027404688,0.03305268,0.00017991784,-0.020444136,-0.011842882,-0.020384474,-0.0017674831,-0.012767642,-0.0001221981,0.008989056,-0.012578712,-0.024481256,0.018853152,-0.0011578132,0.028041082,-0.017232338,-0.029572403,-0.02959229,0.011882657,-0.035777237,0.015283383,0.0022833096,0.036373857,-0.018256534,-0.020821994,0.009277422,0.006060652,-0.020294981,0.006975468,0.019807743,-0.020682784,-0.005404372,0.021716923,0.014090146,0.022591963,0.044547535,0.012688092,-0.00031695372,0.003142192,-0.015223722,0.028836573,0.0041390425,-0.02129929,-0.010977785,-0.018057661,-0.02231354,0.0071992,-0.003987402,-0.0047928374,0.013215105,-0.008894592,-0.01123632,0.0014753884,-0.011395418,-0.002838911,-0.0070052985,-0.0037040082,0.0035846843,-0.003283889,-0.011276094,0.056042388,-0.01611865,0.00336841,-0.000336841,-0.028816685,-0.019320505,0.010311561,-0.009466351,-0.026469985,0.010619814,0.029114995,-0.04470663,0.0070052985,-0.030348007,0.014239301,-0.007785875,-0.031242935,-0.027006943,0.016148482,-0.002417549,0.0017252226,0.0015300785,-0.025097763,-0.021398727,-0.012091474,-0.064593926,-0.008178649,-0.03422603,-0.004290683,0.031004287,0.0161982,0.0110772215,-0.030566767,-0.019519377,-0.023844862,0.019012252,-0.029632065,0.020662896,-0.02937353,-0.013642683,0.046695363,0.018922757,-0.007964861,0.020841882,0.01696386,0.03209809,-0.013672513,0.021478275,0.015452426,-0.009511097,0.035359606,0.031461697,-0.023685765,0.017759351,0.0092575345,0.030507106,0.0006407437,-0.010097773,0.024202835,-0.0596221,0.042280383,0.040629737,-0.012877022,-0.018415632,-0.006264497,0.01644679,-0.016257862,0.007845537,0.01431885,-0.050513722,0.014746427,-0.022850499,-0.00646337,0.027901871,-0.0038208459,-0.00026397273,-0.015522031,-0.007273777,-0.011504798,0.034922086,0.0008240797,0.0058468636,-0.039396726,0.02203512,0.00404955,-0.0038133883,-0.011952262,-0.0019253384,-0.0061650607,0.014139865,-0.002250993,0.03496186,0.01671527,0.01622803,-0.019250898,0.002381503,0.025256861,0.0061103706,-0.0039749723,-0.045502122,-0.03575735,0.023705652,0.021060642,-0.017928394,0.0064434824,-0.0018420604,-0.012618487,0.0064683417,0.05815044,0.010440828,-0.025793817,-0.015522031,-0.0025194713,-0.01630758,-0.0018868068,0.028220067,-0.033947606,-0.008849845,-0.014736483,0.01887304,-0.030149134,-0.029035445,0.011465024,0.0031297626,-0.0035076211,-0.029134883,-0.01688431,0.07425915,0.01865428,0.004484584,0.0037040082,-0.0012777585,-0.011574404,-0.022432866,0.005275104,-0.00058791804,0.013831612,-0.010351336,-0.006965524,-0.021895908,0.01699369,0.023168694,-0.034345355,0.0102419555,0.01093801,-0.024401708,0.041365568,-0.0185449,0.023248244,-0.034106705,0.0025480592,0.028677475,-0.015362933,0.011574404,-0.014328794,0.0021291832,-0.014975131,-0.009511097,-0.007915142,0.0068660877,0.015512087,-0.01535299,-0.008710634,0.008959225,0.03545904,-0.005170696,-0.003286375,-0.007547227,-0.011445137,-0.020722559,0.039893907,-0.009347027,0.006915806,0.028478602,0.05691743,0.02007622,-0.00567285,0.023844862,0.007557171,-0.00938183,0.007880339,0.021398727,-0.028140519,-0.012906852,-0.004208648,-0.019350335,0.0050662877,-0.0008178649,-0.0015089483,-0.027006943,0.007721241,0.025236974,-0.0019601411,-0.01696386,0.010768969,-0.037209123,0.015034793,0.032635044,0.03796484,-0.012230684,-0.020762334,0.009113352,-0.0046486543,-0.0075323116,0.03840236,-0.01208153,-0.01068942,0.011037447,0.013911161,0.009018887,0.011385474,0.0044000633,0.012648318,0.032635044,0.029433193,0.013165387,0.0033012906,0.026469985,-0.0042335074,-0.020961206,0.0239443,-0.059423227,-0.010768969,-0.002248507,0.003567283,0.017122958,0.0042509087,0.016705325,-0.026191564,0.013553189,-0.019797798,0.004745605,-0.006687102,-0.02151805,-0.018346027]},{"id":"interface-WebSocketConstructor","type":"interface","source":"main","text":"Interface: WebSocketConstructor","meta":{"url":"/docs/typedefs/WebSocketConstructor"},"embedding":[-0.0119990995,-0.036602296,-0.00658564,0.014570335,-0.0060090027,-0.0141544,-0.026392976,-0.014608147,0.057323426,-0.007102408,0.0073860004,0.005760072,0.01797344,0.013259509,-0.0056151245,-0.0145829385,-0.06191132,0.017305424,-0.011205041,0.016145846,0.021767274,0.022006752,0.0052937204,0.009377447,-0.009226198,-0.011854152,-0.013309925,-0.015994597,-0.029594418,-0.049130764,0.034510013,-0.043937877,0.026720684,0.01831375,0.040333107,0.03236732,0.037686247,0.0015046139,0.00037772898,0.01470898,-0.008060319,-0.019788431,0.029342335,0.0046824217,-0.040610395,0.013322529,-0.00947828,0.040307898,0.017456673,0.0066234525,-0.009736664,0.004209768,0.011167229,0.017860005,-0.029871708,-0.043257255,-0.011501238,0.033224396,-0.01021562,0.046206616,0.022195812,-0.023304973,-0.016309699,-0.004751744,-0.0050794506,-0.012024308,-0.012534773,0.017444069,-0.026670266,0.04867702,0.057222594,-0.039753318,-0.01673824,-0.004865181,-0.020027908,-0.0018071122,-0.024577986,0.011967589,0.0031069096,0.027199639,-0.0050164303,0.015150123,-0.06705379,-0.05656718,-0.03176232,0.004761197,-0.031182533,0.00846365,-0.019901868,-0.016876884,-0.017746568,0.024010802,-0.027527345,-0.024729235,0.030577537,-0.008501463,-0.006336709,0.035770424,0.009112761,-0.041064143,0.09135449,-0.05006347,-0.04736619,0.023166329,0.0071465224,-0.011520144,0.017998649,-0.05813009,-0.06589422,0.025321629,-0.039677694,-0.0050920546,0.01757011,0.008583389,0.016876884,-0.000694013,0.01699032,-0.009396354,-0.009490884,-0.034257933,0.026166104,-0.00895521,0.022221021,0.017809587,0.0054670265,-0.03387981,-0.05001305,-0.00015331701,-0.034308348,-0.016120639,0.048399728,0.0019473328,0.024666216,-0.010347962,-0.00683142,0.005003826,-0.030022956,0.022359665,-0.0006794395,-0.02529642,-0.016196264,-0.024577986,0.0680117,-0.03330002,0.017595317,0.007871258,-0.014935854,0.050996173,0.001785055,0.031106908,-0.0028879135,0.012610398,0.010083277,-0.012188161,-0.016322304,0.030779202,-0.0013328831,0.035493135,0.0090686465,-0.029569209,0.03725771,0.020733738,-0.029670041,0.0009539725,-0.042198513,-0.00024774927,0.04837452,0.002560207,-0.050365966,0.03133378,0.04280351,-0.03123295,0.0037308123,0.031989194,-0.019069998,-0.028787754,-0.010158901,-0.024023406,-0.007833445,-0.011072698,0.07859914,0.020595092,0.059592165,-0.041366644,0.005923925,-0.0027130316,0.005489084,-0.00033597794,0.053189285,-0.0713896,-0.05167679,0.043559756,0.0059837946,0.012024308,0.042954758,0.008287193,0.0130956555,-0.024351113,0.029317128,-0.008035111,-0.02151519,-0.010959261,0.011652486,-0.024603195,0.00081926625,0.023367994,0.016549177,0.01741886,0.00032061667,0.038997073,0.028611297,-0.00843214,0.03609813,-0.001904794,-0.04098852,0.007606572,0.03834166,0.007505739,-0.022964662,-0.0560126,-0.024136843,0.034913346,0.03428314,-0.047643483,0.02856088,0.0152005395,0.024099031,0.020973215,-0.018540625,0.015162727,-0.046937652,-0.021363942,-0.024540175,-0.041467477,-0.046609946,0.020784155,-0.018011253,0.002843799,0.011116813,-0.016675219,-0.06135674,-0.03193878,-0.013423362,0.024073822,-0.012244879,-0.008072923,-0.00033144833,0.008898492,-0.038543325,0.011545352,0.04625703,0.0022214719,-0.006938555,0.040484354,0.006465901,-0.01966239,0.0055174427,0.03778708,0.03453522,-0.003218771,0.022460498,-0.06665046,-0.0149484575,0.04267747,-0.003086428,-0.073154174,-0.010127391,-0.027829843,0.024628403,0.014620751,0.027376097,0.025624126,0.029493583,0.037030835,-0.01637272,0.012528472,-0.002379023,0.027653387,-0.06594463,-0.012994823,-0.061104655,-0.03871978,-0.005813639,0.04638307,-0.006311501,0.025044339,0.012509565,0.0624659,0.01646095,0.032090027,-0.013536799,0.030048164,0.015868556,0.00033400854,0.018691873,0.036904793,0.08348953,0.00683142,0.043433715,0.01317128,0.04212289,-0.024981318,0.0020450146,-0.006286293,-0.0017708754,-0.0005250394,0.031006075,-0.03163628,0.024943506,-0.034131892,-0.026014853,-0.0061413455,-0.09296781,-0.006402881,-0.026922349,-0.011091604,0.05167679,0.0138519015,-0.02551069,-0.010713481,-0.022359665,0.008261985,-0.007278865,-0.01562908,0.041845597,-0.0243133,0.025964437,-0.030627953,0.014242629,0.038971864,0.004209768,-0.041038934,0.019523744,-0.040761646,0.03791312,-0.02188071,-0.025800584,0.0045910417,0.0142174205,0.042879134,-0.03861895,-0.02418726,0.0036488858,-0.0067620976,0.035871256,-0.028989421,0.015931576,0.036904793,0.02348143,0.033249605,-0.038064368,0.008829169,-0.065188386,-0.011740715,-0.008747242,-0.03927436,0.051979292,0.009742966,-0.0018165653,0.005372496,0.022296645,0.055558853,-0.008180059,0.018502813,0.023443619,0.022775602,-0.0043799235,0.0045028133,-0.046483904,-0.07073419,0.023393203,0.0621634,-0.010612649,0.007102408,-0.011954985,-0.008413234,-0.011652486,0.007486833,0.04421517,-0.014494711,0.036274586,0.021439567,-0.039223947,-0.045778077,-0.03294711,-0.015503038,-0.0034598242,0.07436416,-0.005766374,-0.010114787,0.027955884,0.0020009002,-0.02689714,-0.020317802,0.047845148,-0.013322529,0.040534772,-0.025182983,0.033199187,-0.022636956,0.019485932,0.032014403,0.0065352237,-0.0030675218,-0.013196488,-0.04572766,0.014545127,0.026392976,0.012919198,-0.019826243,0.0015959936,-0.038114786,0.027552553,0.03405627,-0.017179383,-0.023342784,-0.016788656,-0.12412514,0.036173753,0.032972313,-0.008280891,0.033123564,-0.049307223,-0.016952509,0.022334458,0.03024983,0.019586764,0.0024152598,-0.018275939,-0.01498627,0.0012895565,0.0035039387,-0.00390727,0.04809723,0.0013242178,0.0046446095,0.007518343,-0.014595543,0.00916948,0.04055998,-0.053844698,0.023317577,0.012421336,0.021691648,-0.014444293,-0.00941526,0.01680126,-0.00048250053,-0.048979517,-0.019006977,-0.039047487,-0.022977266,0.017733963,0.040610395,0.0133477375,-0.007499437,0.005394553,0.02997254,-0.006453297,0.022536123,0.0028422235,-0.027250055,-0.05283637,0.02563673,-0.024489759,0.019990096,0.021931127,0.018477604,0.008085527,0.025220796,-0.045072246,0.01187936,-0.003270763,0.0011067971,0.004597344,0.019372495,0.022246229,-0.008967814,0.016851677,0.012597794,0.0036520367,-0.017343236,-0.027628178,-0.0018165653,0.00040018006,0.10980688,-0.019712806,-0.00074679265,-0.061961737,0.012314201,-0.0062075173,0.00901823,0.018603645,-0.014078775,-0.010902543,-0.027300471,-0.076481655,-0.038291242,0.022145396,-0.023128515,0.031863153,-0.06957461,-0.018540625,0.028964212,0.029544001,-0.006560432,-0.042324554,0.0024577987,-0.05434886,-0.052533872,0.018490208,-0.011778528,0.023128515,0.020607697,-0.026821516,-0.0030045013,-0.015402205,0.054752193,0.002240378,-0.0215404,-0.02815755,0.028812964,0.0005277965,-0.019649785,-0.02717443,0.0200027,-0.044971414,-0.029871708,0.007625478,-0.00889219,0.0041152374,0.017128967,0.0041026333,-0.033224396,-0.024855277,0.004458699,-0.022939455,-0.024628403,0.017532296,-0.032518566,-0.016965114,0.01812469,-0.020595092,-0.0020292595,-0.028107133,0.036955208,-0.0019504838,-0.022750393,-0.0027303624,0.029871708,-0.0050794506,-0.010455097,-0.0017551203,-0.006686473,0.029367544,0.019952284,0.033678144,0.00867792,-0.025674542,0.005627729,-0.036904793,0.02083457,-0.00080744986,-0.0152005395,-0.031585865,0.023405805,-0.018263334,0.01883052,-0.00053803733,-0.002043439,-0.051500335,0.0051645283,0.011192437,0.11283187,-0.0009004051,-0.029216293,-0.004606797,-0.010952959,-0.019901868,-0.029518792,-0.014721584,-0.0020560431,-0.033249605,-0.0010934053,-0.016876884,0.0031163627,0.020595092,-0.0077326125,0.036476254,0.0058483006,0.022636956,0.014746792,0.0062169703,0.03982894,-0.016511366,-0.04797119,0.027930677,0.042173304,-0.032568984,0.022889039,-0.013435966,-0.019826243,-0.015503038,-0.023367994,0.025586314,0.022107584,0.038946655,-0.010669367,0.032594193,0.02077155,0.019574162,0.028434841,-0.017595317,-0.043131217,-0.025838396,0.026468601,-0.0252334,-0.0059774923,0.022636956,-0.01215665,-0.027955884,-0.0062421784,0.009119064,0.032594193,-0.015351789,0.025586314,-0.013045239,-0.019977491,-0.001178483,0.022636956,-0.0018071122,0.0035480529,-0.014683772,-0.023342784,-0.027376097,-0.0071654283,0.054248028,0.033627726,-0.01812469,-0.006579338,-0.023998199,0.0034818815,-0.00081138866,-0.004962863,0.035089802,0.021086652,-0.022460498,0.026846724,-0.0111735305,0.0011406706,-0.020090928,0.02745172,0.035241053,-0.011179833,0.042551428,-0.008488858,-0.012698626,0.0052937204,-0.003948233,-0.0026421335,0.019196037,-0.016851677,-0.011954985,-0.00064123335,-0.013700652,0.020355614,0.0077011026,-0.0058609047,-0.049937427,0.018691873,0.033829395,0.052584287,-0.0038474002,-0.0077326125,0.010234525,-0.02104884,0.0059995498,-0.06312131,-0.02529642,0.041769974,0.00846365,0.014381274,-0.00784605,0.0018811614,0.028812964,0.00011205829,0.006446995,-0.0001688752,0.009043438,-0.009150574,0.007770425,-0.01455773,0.02593923,-0.00046950256,0.036577087,-0.012528472,0.038568534,0.0193851,-0.0022261983,-0.03781229,-0.004361017,-0.014444293,-0.0060846275,0.01923385,-0.035089802,-0.020506864,0.015440017,0.0041026333,0.034383975,0.0011950259,0.0072095427,-0.009282917,-0.016536573,-0.02704839,-0.017645733,0.03718208,0.026569434,-0.0004222372,-0.031963985,-0.0012651361,0.011110511,-0.03496376,-0.029821292,0.014885437,-0.014885437,-0.01701553,0.020229574,0.031182533,0.010921449,-0.0004494148,0.0066423584,0.018943956,-0.008072923,0.02563673,-0.03917353,0.02019176,-0.011683997,-0.026191311,-0.00021742065,-0.008375422,0.0060058516,-0.026695475,-0.00075506413,0.013511591,0.011148322,0.011954985,0.030980868,0.023569658,-0.029544001,0.03594688,0.0009957235,0.0077074044,-0.038845822,0.026292143,-0.04908035,-0.020872382,0.004559532,-0.04028269,-0.021616025,0.006459599,-0.032821067,-0.023670493,-0.01295701,-0.011406707,-0.014356066,0.0130956555,-0.00082635606,-0.01966239,0.028510464,0.02314112,0.03597209,-0.05339095,-0.0049565607,-0.03819041,-0.004735989,0.0015093405,-0.055256356,-0.013763673,-0.01707855,-0.012919198,0.012692325,-0.027527345,-0.010303848,-0.021653837,0.03229169,-0.034812514,0.019864054,0.0504668,0.0014242629,-0.010158901,-0.016423136,0.021653837,0.0037465675,-0.01566689,0.02292685,0.012515867,-0.019158226,-0.053038035,-0.013927526,-0.009976142,0.035921674,0.01993968,-0.06967544,-0.00889219,0.026645059,-0.009516092,-0.0063934275,0.019801034,0.030098582,-0.02941796,-0.023115912,-0.0003984076,-0.038795408,0.012906594,0.008167454,-0.016599594,0.02055728,-0.003280216,0.034106683,-0.010240828,0.059894662,0.002818591,-0.019712806,0.016234076,0.0504668,0.021893315,-0.026040062,0.003825343,0.024540175,0.019889263,0.0008736214,0.00081138866,-0.03052712,0.011368894,0.032266486,-0.02378393,-0.050416384,0.0060846275,-0.007341886,-0.021237902,0.011633581,-0.034736887,0.052029707,0.002224623,0.014255232,-0.016851677,-0.018162502,-0.04197164,-0.011381499,0.008507765,-0.017368443,-0.015036686,0.049836595,-0.018452397,0.058331754,-0.0003590198,-0.00072079676,-0.021691648,-0.019700201,-0.010984469,-0.03246815,0.01055593,-0.020204365,-0.03317398,-0.010814314,0.0029556605,0.011413009,-0.0033274812,0.019876659,0.048828267,0.0007247355,0.04908035,-0.01455773,-0.033753768,-0.008381723,0.044820163,0.009043438,0.025397252,0.011917173,0.011728111,0.007833445,-0.007896466,-0.025409857,0.022636956,0.029014628,-0.009843798,-0.022699976,0.0012107809,-0.0014234751,0.018767498,-0.046660364,0.040812064,0.033804186,-0.031031284,0.0008421111,-0.0029824441,-0.0053409855,0.033678144,0.017733963,0.0029824441,-0.02886338,-0.014885437,0.03249336,-0.0002605503,0.036551878,0.0090245325,0.027023181,-0.015780328,-0.0023412108,-0.013751068,0.04169435,-0.017191987,-0.015679495,0.028913796,-0.006591942,0.00430745,0.028384423,-0.0012769524,0.004509115,-0.0006644722,-0.05646635,-0.01726761,-0.010927751,0.04807202,-0.024918297,0.0022718883,-0.033678144,-0.00544812,0.00615395,0.018578438,0.00077081926,0.0038978166,-0.0006266599,-0.000042021857,-0.030199414,-0.021842899,0.0034913346,0.01680126,-0.030728785,-0.014860229,-0.033905018,0.000677864,0.015503038,0.019019581,0.05434886,0.032846272,0.0037654736,-0.009251406,-0.040081024,-0.050265133,-0.028207967,-0.0034913346,0.012301598,0.0065163174,-0.015742516,-0.01665001,0.012793157,0.018301148,0.06508755,0.035493135,-0.0024325906,-0.017065946,-0.0025775377,-0.054298446,-0.026519017,0.017620526,-0.026594643,-0.014683772,-0.016234076,-0.027376097,-0.018855728,-0.00080981315,0.03440918,0.018792707,-0.007341886,0.02348143,-0.014860229,0.031459823,-0.007852351,0.0035291468,0.015679495,0.062264234,0.014267837,0.0056686923,-0.0035070896,-0.028712131,-0.008356515,-0.018565834,-0.0108773345,-0.012673418,-0.045047037,-0.023468826,-0.011274364,0.01840198,-0.008236777,-0.010562233,-0.014809812,0.01372586,-0.012345712,-0.01575512,0.017595317,0.012578888,-0.009396354,0.00686293,0.033552103,0.031459823,-0.051097006,-0.0021442717,-0.019057393,-0.047189735,-0.018553229,0.012301598,0.008885887,-0.025372045,0.0046288543,0.016902093,-0.011249156,-0.0034913346,-0.017935628,0.053441368,0.03990457,-0.031485032,-0.0047927075,-0.024300696,0.01394013,-0.02661985,0.0156921,0.0120432135,-0.019536348,0.0036614898,-0.02578798,0.025674542,0.017242404,-0.005671843,-0.015162727,0.013549403,0.017343236,-0.0068188156,0.013486383,0.003076975,-0.026468601,-0.0015566058,0.0400054,0.019246453,-0.018225523,0.0049282014,0.024111636,0.01637272,0.00023573598,0.03403106,0.010165203,0.024086427,-0.018112086,0.020645509,0.019271662,-0.008904793,0.015137519,0.037333332,0.007014179,0.008917398,0.015830744,-0.006825118,0.029619625,-0.019851452,0.0021143372,-0.0060216067,0.004203466,-0.0018827368,0.004033311,0.022195812,0.0020009002,0.030148998,-0.01237092,0.0038410982,0.0056214267,-0.01735584,0.015868556,-0.03778708,-0.014393877,-0.010347962,-0.008243078,0.04736619,-0.022120189,-0.04474454,0.0044240374,0.0021931126,0.006888138,-0.007467927,-0.0053189285,-0.0050731488,-0.033199187,-0.00309273,-0.014809812,-0.005259059,-0.024666216,0.012162953,0.029317128,-0.042349763,0.056516767,-0.02264956,-0.03428314,-0.0062610847,-0.0029824441,0.0074238125,0.015780328,0.0141039835,0.022120189,-0.018553229,-0.007455323,0.014078775,-0.028888587,-0.00050573936,0.027199639,-0.0111987395,0.011639883,0.008173756,0.025964437,-0.010228224,-0.014721584,-0.0041435966,0.0023774477,0.010436191,-0.0011910871,0.020166554,0.0069322526,0.02286383,0.028888587,0.009333333,-0.036173753,0.027855052,-0.022347061,0.002705154,-0.0193851,-0.030980868,0.016851677,-0.00874094,0.0014179607,-0.013410758,0.025119962,-0.013927526,-0.006478505,-0.008331307,0.0041183885,-0.0014510466,0.017960837,-0.0022766148,-0.0066360566,0.0950853,-0.009112761,0.011784829,0.016284492,0.014053566,0.013372946,-0.013826693,0.0027004275,0.0019300021,0.004972316,0.010971866,-0.0035543551,-0.0063587665,-0.0111294165,0.018817915,0.0025097905,0.0038600042,-0.019473327,0.0022198963,0.0007834233,0.014935854,-0.027023181,0.008129641,0.01366284,0.0068062115,0.0027366644,-0.014267837,0.027224846,0.028686922,0.03551834,0.0027886562,-0.001649561,-0.012496961,-0.0252334,-0.038064368,0.030300247,-0.020733738,-0.017986044,-0.022158,-0.00843214,-0.009364843,-0.0025806886,-0.031459823,-0.0042948457,-0.014620751,-0.024010802,0.030905243,-0.01750709,0.020103533,-0.030375872,-0.010631555,0.006015305,0.01338555,-0.004575287,-0.0041435966,-0.014721584,0.017796984,0.048147645,0.01658699,0.003967139,-0.014633356,0.010921449,-0.009780779,0.040207066,-0.001707855,0.06392797,0.0243133,0.026972765,-0.0059648883,0.0013533648,0.008425838,-0.00658564,-0.008274589,0.038089577,-0.013990547,0.001997749,-0.003206167,-0.035846047,-0.021288319,0.0083376095,-0.011992797,-0.0034031058,0.0010658338,0.050794505,0.016826468,0.032090027,0.02969525,0.005520594,0.0066171503,-0.054449692,0.0024451946,-0.0018023857,-0.012641908,0.012812063,0.0023869006,0.019977491,0.0044240374,-0.03193878,-0.03400585,-0.0010059644,0.00093349087,-0.00019890838,0.014645959,0.022687372,-0.015767723,-0.0068818363,0.00026547376,-0.0001426823,-0.015805537,0.026443394,-0.0018323205,0.009100157,0.016549177,-0.04766869,0.023040287,-0.027829843,0.015553454,-0.026720684,-0.004742291,-0.0006282354,0.018918747,0.015654286,0.014797209,0.007852351,-0.030703578,0.010007652,0.03398064,-0.00017537418,0.010203016,0.026317352,0.028233174,-0.0012856178,-0.022019355,-0.0037182083,0.041769974,0.021931127,0.013927526,-0.018767498,-0.033652935,-0.014822417,0.034257933,-0.0193851,-0.02049426,-0.011721809,-0.013536799,-0.011986495,-0.0008216295,-0.03173711,0.012452846,0.010744992,-0.05074409,0.017544901,0.029871708,-0.023166329,0.017897816,-0.0016275039,0.013927526,-0.0050164303,0.010455097,-0.019095205,-0.024199864,-0.00944677,0.024401529,-0.003809588,-0.0038694574,-0.003563808,-0.009553905,-0.0036425837,0.009528697,-0.017191987,-0.01972541,-0.017028134,0.0114949355,0.0063650683,0.05450011,-0.032821067,0.0024704027,0.014532522,0.023872158,0.001349426,-0.030022956,0.0050384873,0.028334007,0.021653837,0.003406257,0.021868106,-0.044845372,-0.009421562,-0.017393652,-0.042047262,-0.03622417,0.007360792,-0.039097905,0.018628854,-0.022145396,-0.0039986493,-0.022271438,-0.037459373,0.00920099,-0.009371146,-0.0048431237,-0.008564483,0.057323426,0.027098807,0.017834796,0.023241952,-0.0107702,0.03277065,-0.0041120863,0.019700201,-0.030123789,0.017103758,0.01680126,-0.01618366,0.048979517,0.003544902,0.018654061,0.001378573,-0.006730587,0.021590816,0.03902228,-0.013688048,-0.009377447,-0.005652937,0.02563673,0.0036268285,-0.044920996,-0.0012485932,-0.021590816,0.009553905,-0.029065045,0.039778527,-0.00836912,-0.014305648,0.021931127,-0.027502136,-0.028686922,0.00843214,-0.014519919,0.020090928,-0.0084762545,0.032720234,-0.004880936,0.01831375,-0.024363717,0.04416475,0.03236732,0.020317802,-0.03123295,0.035997298,-0.00039427186,0.043509338,0.01237092,-0.00023770538,-0.03609813,0.031863153,0.017318027,0.016700426,0.002412109,0.018162502,0.037484583,0.01372586,0.019095205,0.0053441366,0.0034913346,-0.057827592,0.04751744,0.009364843,-0.016322304,0.009774476,-0.0020560431,-0.00054158224,-0.047290567,0.022876434,0.00042144945,-0.00920099,0.014343461,0.0016763448,0.05102138,-0.013536799,-0.003658339,0.032014403,0.018666666,-0.008192662,0.021981543,0.0046792706,-0.0015762998,-0.011948682,-0.009427864,0.01080171,-0.030552328,-0.028384423,-0.0041656536,-0.010322754,0.035593968,0.022107584,-0.034736887,0.0024672518,-0.016939905,-0.03052712,0.026367769,-0.02341841,0.012396128,-0.009742966,-0.005923925,0.007745217,-0.021805085,-0.02237227,0.02566194,0.0046509113,0.012585189,-0.022271438,-0.03236732,0.035896465,0.01778438,0.026115686,0.020670718,0.009289219,0.009327031,0.013536799,-0.00216948,0.0052212467,0.035190634,0.036022507,-0.00004096331,-0.025762772,0.0009996623,0.019788431,0.03773666,0.030426288,-0.011620976,-0.031283367,-0.004194013,-0.002153725,0.03398064,-0.028989421,-0.008715732,-0.020683322,-0.007266261,-0.009434165,0.008173756,-0.001775602,-0.032594193,-0.02489309,-0.013713256,0.011942381,-0.009585415,-0.018137293,-0.025094755,-0.042274136,0.009673644,0.011236551,0.009163178,-0.042148095,-0.026166104,-0.0022844924,-0.005804186,-0.018918747,0.0013352464,-0.0011706054,0.0178474,-0.016019806,0.011406707,-0.009950934,-0.0018023857,0.033753768,0.009194688,0.0024751292,0.04948368,0.03372856,0.0030013502,-0.0050699976,-0.02689714,-0.026519017,-0.04711411,-0.020670718,0.0069196485,-0.025598919,0.0032045913,0.03889624,0.010751294,0.020998424,0.04151789,0.03607292,-0.019069998,0.0002924544,-0.017822191,-0.025724959,0.012805762]},{"id":"interface-WebSocketLike","type":"interface","source":"main","text":"Interface: WebSocketLike","meta":{"url":"/docs/typedefs/WebSocketLike"},"embedding":[-0.020030677,-0.035105888,-0.021422664,0.019933239,0.017177107,0.0025403744,-0.011490844,0.0144070545,0.04167606,0.0030588892,0.008303196,-0.0035530443,0.0069216504,0.007843841,0.0028083317,0.007335766,-0.023065208,0.03187648,0.015437124,0.034521252,0.03299007,0.03065153,0.049192782,0.031486724,0.0056027435,-0.024540713,-0.041314144,0.013718022,-0.03866937,-0.010892291,0.07466613,-0.04852463,0.03493885,0.016230557,0.013815461,0.034103658,0.039588083,0.019571323,0.0017512924,0.008755592,-0.011087168,-0.012131157,0.03084641,0.0053974255,-0.044042435,0.0015042148,0.015381445,0.028493952,0.023956079,0.037305225,-0.009799581,-0.021909859,0.0034382052,0.013467465,-0.004259477,-0.029398743,0.009528144,0.035161566,0.006149098,0.028243395,-0.008588553,-0.030178256,-0.026517333,-0.021993378,-0.025682142,-0.023969999,-0.019529562,-0.00591942,-0.03894777,0.022146497,0.045239545,-0.03677627,-0.040896546,-0.0009787402,-0.0045100343,0.009862221,-0.0049276305,-0.007565444,0.024471113,0.0013267366,-0.018415974,0.00895047,-0.06636989,-0.06269505,-0.00987614,-0.008303196,-0.07461045,-0.01386418,-0.023956079,0.018415974,-0.0034068855,0.04735536,-0.043402124,-0.01781742,-0.018012298,0.0030275695,-0.009444625,0.006211737,-0.01290371,-0.0056027435,0.06937658,-0.05261707,-0.04565714,0.019599162,0.017149268,0.007816001,0.08207149,-0.05629191,-0.07589108,0.018235017,-0.046046894,-0.022536254,0.010432934,0.021506183,0.03466045,-0.021617543,0.042845327,-0.0028883708,0.0025334144,-0.018235017,-0.019056289,0.01890317,0.026614772,-0.008296236,-0.016355835,-0.042121496,-0.03474397,0.012959389,-0.012430435,-0.0093750255,0.05286763,-0.024596391,-0.0076768026,-0.0074749645,-0.009542064,0.025278466,-0.03694331,0.024304075,-0.019125886,-0.014198257,-0.029899858,-0.044237316,0.08006703,-0.0059994594,0.024220556,0.0053278264,-0.042873167,0.03254463,-0.008685992,-0.01579904,0.02687925,0.0032903068,-0.012820191,-0.005675823,-0.05356362,0.013028989,0.019668762,0.020336915,-0.025696062,-0.01886141,0.0042003174,-0.0085259145,-0.014810731,-0.01589648,-0.039365362,0.009479424,0.03652571,-0.0000889566,-0.046297453,0.010419015,0.012207717,-0.000018052318,0.025835259,0.028814109,-0.011525644,-0.061971214,-0.021353064,-0.024137037,-0.00895047,0.00298581,0.07706034,0.04863599,0.05044557,-0.036470033,0.0178731,0.011602203,-0.013411785,0.0159104,0.012576593,-0.055206165,-0.04888655,0.076726265,-0.00065901835,0.038056895,0.038585853,0.016745592,0.027018448,0.017511183,-0.005369586,-0.012256436,-0.01094797,-0.0021140787,0.034632612,-0.034103658,0.00075123744,0.016675992,0.02886979,0.0056027435,-0.015645923,0.025556862,0.015116967,0.032238394,0.03850233,-0.012319076,-0.033017907,-0.00789952,0.040311914,0.029593622,0.0060968986,-0.02870275,-0.012806271,0.0046422733,0.03454909,-0.007614163,0.008045679,0.032266233,0.040005676,-0.010753091,-0.03179296,0.005557504,-0.014727212,-0.015701601,-0.030679371,-0.035384282,-0.009674302,0.01386418,-0.02577958,-0.0026412935,0.016634231,-0.023162646,-0.067539155,-0.028897628,-0.015464964,0.0079134405,-0.01090621,-0.016425434,-0.015604163,-0.012486114,-0.03658139,0.005741942,0.05133644,0.0053104265,0.0029214306,-0.0073844856,0.014059058,-0.029315224,-0.01891709,0.060913306,0.038168255,0.0031284885,-0.00044935048,-0.054036897,0.0051120683,0.037110347,0.014574093,-0.07861937,0.024540713,-0.02284249,-0.024582472,0.023009527,0.032405432,0.020058518,0.026573012,0.029315224,-0.027700521,-0.025696062,0.017302386,0.018026218,-0.040868707,-0.019251166,-0.046993446,-0.050083656,0.015562403,0.04237205,-0.013022029,0.01891709,0.014212177,0.036915466,0.05584648,0.03658139,-0.020462194,0.04379188,0.03079073,-0.024777351,0.004576154,0.023482803,0.092149474,0.044348672,0.037472263,-0.011177647,0.059075885,-0.02687925,-0.011984999,-0.02870275,-0.012778431,-0.014337456,0.037500102,-0.028132036,-0.01391986,-0.032934386,-0.018443814,0.0020444794,-0.07332982,-0.0069251303,-0.058129333,-0.0334355,0.0574055,0.040256236,-0.008532874,-0.030066896,0.009124468,0.00796912,0.020197716,-0.01588256,0.0357462,-0.05373066,0.039170485,-0.03641435,0.019738361,-0.005557504,0.0070225694,-0.017455503,0.010829651,-0.034131497,0.024554633,-0.041202784,-0.039086968,0.018151497,0.0102241365,0.052784108,-0.021589702,-0.0017338925,-0.02864707,-0.0017008329,0.03474397,-0.023190485,0.00018639563,0.029370904,-0.010613893,0.029231705,-0.03184864,0.00028057216,-0.02483303,0.016063519,0.0046005137,-0.040256236,0.03571836,-0.0031250084,-0.0022463175,0.03555132,0.0022271776,0.031041287,0.014685452,0.024276236,0.023343604,-0.0020270795,-0.016703831,-0.0060098995,-0.026099738,-0.060189474,0.032182716,0.06843003,0.0065005743,-0.02573782,0.010265896,0.030902088,-0.022243936,0.021325225,0.0038175215,0.011170687,0.046019055,0.04635313,-0.018471655,-0.026280696,-0.02090763,0.01183884,-0.010022299,0.05345226,-0.04763376,0.0040193596,0.024638152,-0.033157106,-0.035050206,-0.033769578,0.035217244,-0.017678222,0.034298535,-0.0070260493,0.01592432,-0.020309076,0.019320766,0.013495304,-0.022967769,0.012757551,-0.01687087,-0.023496723,0.0076907226,0.02196554,0.0067998515,-0.018875329,-0.0013276066,-0.030206095,0.020670991,0.0009970099,0.007725522,-0.019988919,-0.05245003,-0.0972163,0.07015609,0.06843003,0.029231705,0.015228326,-0.0257935,-0.015966078,0.040423274,0.0047118724,0.03084641,0.016035678,0.011121968,-0.050389893,-0.012019799,-0.004461315,-0.0021349585,0.044961147,0.024526794,0.016550712,0.016355835,0.004367356,0.024290156,0.005578384,-0.026531253,0.014135618,-0.005766302,0.0027213325,0.0032050477,-0.019459965,0.009103588,-0.01682911,-0.026600853,-0.04944334,-0.007544564,-0.017594703,-0.025709981,0.060133792,0.005421785,-0.01187364,0.0020131597,0.029259546,0.013878101,-0.01289675,0.008108318,-0.033017907,-0.038892087,0.038975608,-0.0037548821,0.010850531,0.035356443,-0.010015339,0.011546523,0.011859721,-0.0034782249,-0.014267856,-0.015061288,0.010836611,-0.0050007096,0.012646193,0.05670951,-0.0017626022,-0.011268127,0.0005711492,-0.0026064937,-0.0050181095,-0.022647612,-0.01389202,0.012493074,0.092427865,0.0031215285,-0.027909318,-0.052032437,0.03173728,-0.039727278,0.011637002,0.045156024,-0.017441584,0.0037235625,-0.032377593,-0.07305142,-0.0074540847,0.028981147,-0.057795256,0.025765661,-0.06592446,-0.01579904,0.021116426,0.04863599,-0.032488953,-0.023106966,0.006156058,-0.034187175,-0.055178322,0.020434354,-0.012520914,0.004757112,0.01598,-0.03299007,-0.012994189,-0.04860815,0.054036897,-0.0075932834,0.016355835,-0.030233935,0.04259477,0.008839111,-0.032127038,-0.019348605,0.0015268346,-0.034382053,-0.00018324191,0.0013580563,-0.01792878,0.0051259883,0.010064059,0.03566268,-0.005647983,-0.012249476,0.0045378744,-0.0357462,-0.04167606,0.0010100598,-0.029426584,-0.016689911,0.005731502,-0.02267545,0.005630583,-0.013147308,0.0334355,-0.009507264,-0.012952429,0.01579904,0.019473884,0.0051747076,-0.033519022,0.009173187,-0.0071269684,0.035913236,0.030929929,0.0106904525,0.012305156,-0.022341374,0.031124806,-0.020253396,-0.018569093,0.025598623,-0.02886979,-0.036497872,0.011664842,0.0014337455,0.013223867,-0.0029388303,0.00893655,-0.01890317,0.003072809,-0.008685992,0.082962364,-0.015172647,-0.029176027,-0.0035234645,-0.007537604,-0.014936009,0.0007255727,-0.030094737,-0.007307926,-0.016105277,0.014476654,-0.032767348,-0.022438813,0.004739712,-0.011623083,0.03271167,0.016884789,0.027143726,0.018179337,-0.0035147646,0.030206095,-0.035328604,-0.051976755,0.036024597,0.050974526,-0.027157646,0.0028466112,-0.012917629,-0.011706602,-0.037750658,-0.019306846,0.04771728,0.040980067,0.016703831,0.013147308,0.02792324,0.006246537,-0.00799696,0.028814109,-0.012207717,-0.048051357,-0.034354214,0.004426515,-0.04849679,-0.037026826,0.025835259,-0.035300765,-0.04092439,-0.007530644,0.0178731,0.022647612,-0.018318536,0.032043517,-0.025501182,-0.025974458,0.0034295055,0.0041272384,0.020949388,0.009089668,0.0259327,-0.021046828,-0.020378675,0.0018130618,0.023649842,0.023580242,0.0047223126,-0.011637002,-0.01283411,-0.016648153,0.012687952,-0.012653152,0.04075735,0.015089128,-0.040590312,-0.0057106223,-0.010760051,0.004558754,0.022188256,0.024471113,0.04952686,-0.0026465133,0.044209473,-0.04368052,-0.014079938,0.001785222,-0.01383634,-0.009792621,0.035022367,0.0011179388,-0.02288425,0.0066850125,-0.024443274,-0.0005380896,0.030929929,-0.0132656265,-0.023719441,0.03268383,0.032127038,0.04265045,0.025111428,-0.0025160147,0.011059329,-0.0009500304,0.032488953,-0.04476627,-0.011115008,0.050946686,0.0128271505,0.03669275,-0.024081357,-0.026642611,0.006156058,-0.014072978,0.0024464154,-0.0018931009,-0.0024986148,-0.016314076,0.024707751,0.00991094,0.017302386,-0.012513954,0.014574093,-0.019404285,0.034465574,0.019571323,-0.0019261605,-0.037611462,0.0070956484,-0.025181025,-0.01585472,0.025556862,-0.03279519,-0.028090278,0.026976688,-0.039086968,0.026531253,-0.01382938,-0.014337456,-0.00044347803,-0.01386418,0.003471265,-0.017274546,0.023468884,-0.00006590183,-0.0006846831,0.006173458,-0.011428204,0.01989148,-0.0036261235,-0.039281845,0.0079134405,-0.013578823,-0.011769242,0.002789192,0.023134807,0.009458545,-0.0064866547,0.008428475,0.023552403,0.011184608,0.035913236,-0.00397412,0.004771032,-0.007123488,-0.017747821,-0.022578012,-0.007732482,0.014727212,-0.02481911,-0.008484154,-0.016063519,0.027255084,0.018081898,0.0376393,0.04972174,-0.019098047,-0.006653693,-0.005449625,0.011052368,-0.006089939,0.042455573,-0.033379823,-0.03360254,-0.006671093,-0.041731738,-0.033157106,0.016508954,-0.018026218,-0.010586053,-0.01777566,0.018165417,-0.01089925,0.015562403,-0.034242854,-0.024067437,0.02682357,0.030400973,0.038056895,-0.02892547,-0.007836881,-0.013585783,0.012437395,-0.010405095,-0.028285155,0.0021036388,0.014727212,-0.01777566,0.0067789718,-0.041314144,0.010474694,-0.029510103,0.029899858,-0.02075451,0.02892547,0.028953308,-0.0044995947,-0.020364754,-0.020587472,0.0005367846,0.030317454,-0.032934386,0.016940469,0.02674005,-0.0102241365,-0.06642557,0.0014815951,0.011031489,0.025013987,-0.004457835,-0.041592542,-0.012165957,0.030818569,0.028814109,-0.0035982837,0.02676789,-0.006034259,-0.024443274,-0.03271167,0.00037779368,-0.044988986,0.040284075,-0.011191567,0.012813231,0.025389824,0.0026047537,0.021018988,-0.015256166,0.09059045,-0.0052095074,0.0040402394,-0.017566863,0.044710588,0.02976066,-0.007809041,0.0038244815,-0.013711061,0.028326914,0.01870829,0.025570782,-0.0077742417,0.009549024,0.039421044,0.010760051,-0.02274505,-0.022619773,-0.005355666,-0.014233056,0.016314076,-0.018610852,0.037193865,-0.038975608,0.008136158,-0.008428475,-0.023274004,-0.028981147,-0.018958848,-0.0034225455,-0.01589648,0.0015999139,0.038335294,0.013202987,0.01698223,-0.0026639132,-0.008136158,-0.005832421,-0.012882831,0.0027978919,-0.023301845,0.0338531,-0.0024098756,-0.015200486,-0.01678735,-0.010293736,0.015492803,0.012729712,0.032628153,0.05556808,0.013015069,0.059632678,0.0030571492,-0.03065153,0.0011362085,0.014768971,0.022202177,0.028145956,0.01783134,0.0038558012,0.003653963,-0.017288465,-0.05342442,0.02675397,0.026837489,-0.0139685795,0.0018757011,-0.01286195,0.011490844,0.018123657,-0.010043179,0.017274546,0.030568011,-0.013641463,0.02385864,0.011532604,0.007029529,0.05857477,0.0020166396,-0.013418744,-0.021046828,-0.0075584836,0.026531253,0.010015339,0.061748497,0.055762958,0.0031789478,-0.005164268,-0.0017243226,-0.020197716,0.035272926,-0.030985607,-0.02090763,0.021060748,0.0058011017,-0.0074053654,0.017942699,-0.008623353,0.02069883,0.014086898,-0.057795256,0.0068068113,0.0119780395,0.010050138,-0.04251125,0.033630382,-0.0069007706,-0.016439354,0.010217177,0.0129733095,0.007154808,-0.002359416,-0.03198784,0.019418204,-0.013105548,0.009381985,0.019362524,0.014476654,-0.015089128,-0.018875329,-0.006361376,0.0019574803,-0.0065840934,0.0061073382,0.04053463,0.0062152175,-0.000109836394,0.0065806136,-0.05075181,-0.033351984,-0.0034242854,0.02388648,0.041453343,0.0002670873,0.0027143727,-0.0037131226,0.02693493,-0.01289675,0.058797486,0.026628692,0.011797081,-0.01776174,-0.005066829,-0.041982297,-0.020991148,0.016564634,0.008511994,0.0005524444,0.00034973648,-0.004182918,-0.024638152,0.0073984056,0.027366444,0.027018448,0.0005058999,0.02873059,-0.030874249,0.02678181,0.027617002,0.0006472735,0.015590243,0.0774501,-0.028507873,0.02078235,-0.0028013717,-0.06659261,-0.012604433,0.00796912,0.017956618,-0.0068172514,-0.044098116,-0.026350295,-0.008157038,-0.007739442,0.012131157,-0.0050181095,0.0012710572,0.036191635,0.011226367,-0.010655653,0.0028692312,-0.0072104875,0.0073984056,0.0052895467,0.024568552,0.03978296,-0.029287385,-0.013321306,0.018958848,-0.030818569,-0.029064666,0.014337456,0.0057558618,-0.026698291,0.003180688,0.017065749,-0.032043517,0.027547402,-0.0034991046,0.04273397,0.028396513,-0.03479965,0.016035678,-0.03073505,0.0048197513,-0.025041828,0.025459424,0.021478344,0.014365295,-0.0037096427,-0.01879181,0.013084668,0.007537604,0.011191567,-0.008748632,0.051837556,0.004468275,-0.041091427,0.02970498,0.028452193,-0.023260085,-0.00397064,0.0075932834,0.02487479,-0.016592473,0.021854179,0.013028989,0.021074668,0.005355666,0.02488871,0.029036827,0.0055818637,-0.041258465,-0.0029231706,0.021046828,-0.02394216,0.0217985,0.039337523,-0.0008608563,0.0007712472,0.016522873,-0.005073789,0.030679371,-0.02873059,-0.0026412935,0.0023489762,0.03360254,-0.00014017733,0.024930468,0.0005850691,0.014588013,0.021575782,0.004078519,-0.0017347626,-0.0017573823,-0.02085195,0.02573782,-0.016021758,-0.006437935,-0.015492803,0.01383634,0.039142646,-0.023093047,-0.018123657,-0.030011218,-0.0007007779,0.0066641327,-0.0002285902,0.010822691,-0.012430435,-0.023274004,-0.022257855,-0.009423745,-0.013383945,-0.0218681,-0.0010457295,-0.0043464764,-0.021659302,0.07266167,-0.02875843,-0.041314144,-0.018346375,0.009013109,0.011504764,0.012430435,0.034465574,0.00050111493,-0.017469425,-0.024471113,0.05075181,-0.030289615,0.013133388,0.044265155,-0.0062221773,0.0043151565,0.009528144,0.011755321,-0.033184946,-0.008108318,-0.006566694,0.0126809925,-0.0011396885,0.053981215,0.011121968,0.010836611,0.012541793,0.00065292843,0.022410974,-0.0060133794,0.0021419185,-0.0049276305,-0.006051659,-0.0059124604,-0.033184946,0.0067928913,-0.010446855,-0.01389202,-0.0034608252,0.003772282,0.018165417,-0.011428204,-0.013606663,0.0030432292,0.0069877696,0.013766741,0.012799311,-0.016996149,0.09972187,-0.0010004899,0.012277316,-0.004137678,0.0049032704,-0.012409555,-0.022146497,-0.0035634842,-0.024053518,0.02087979,0.004172478,0.019794041,-0.009597743,-0.020559633,0.010286776,0.017065749,0.0045343945,0.00893655,0.024902629,-0.0069077304,0.00995966,-0.044098116,0.020364754,0.023093047,-0.0016112238,-0.012200757,-0.002265457,0.011706602,0.018374214,0.035217244,-0.02480519,-0.012381715,-0.01881965,0.0052199475,-0.025682142,0.026113657,0.0060272994,-0.024081357,0.008741672,-0.012987229,0.01087837,0.004189878,-0.04635313,-0.0059020207,-0.0045378744,-0.009124468,0.02177066,-0.027519563,-0.00082692667,-0.0257239,-0.0238308,0.0042246776,0.018736131,-0.0039045205,0.008839111,0.0060829786,-0.005473985,0.048107035,0.010098858,0.00693209,0.0032798669,0.010669572,0.0072313673,0.021394825,0.026962768,0.058853168,0.026461653,0.027449964,-0.008505034,-0.0016303635,0.015757281,-0.01790094,-0.026419893,0.03360254,-0.01877789,0.013279546,0.011845801,-0.029203866,-0.025278466,-0.007029529,-0.008317116,0.0071617677,0.018638693,0.04050679,-0.008623353,0.035913236,0.025445504,0.004182918,0.0063022166,-0.05473289,-0.005526184,-0.0024098756,-0.0077951215,0.009660383,0.009521184,0.010488614,0.013049869,-0.019988919,-0.040256236,-0.018402055,-0.009033989,-0.0063857357,0.011741402,0.018221097,-0.008358875,0.009806541,0.0017251926,-0.00061943376,-0.028062437,0.024624232,-0.022230016,0.006813771,0.042873167,-0.030011218,0.012750591,-0.036887627,-0.0012649673,-0.027436044,-0.023580242,0.013439625,-0.0056688627,0.04053463,-0.008539834,0.01189452,-0.008971349,0.004840631,0.036247313,0.008191837,-0.017232787,0.029343065,0.017664302,-0.006347456,-0.012771471,-0.004464795,0.032461114,0.0078856,-0.0070747687,-0.034298535,-0.021714982,-0.005181668,0.032461114,-0.01571552,-0.010996689,-0.014351375,-0.02388648,-0.009263666,0.025835259,-0.020587472,0.03257247,0.021032907,-0.0437362,0.0069773295,0.017497264,-0.027380364,0.02671221,-0.016369754,0.0012205977,0.0035878439,-0.017469425,-0.015019529,-0.035356443,-0.030568011,0.031291846,0.016968308,0.015089128,0.0021436585,-0.038029056,-0.012604433,-0.013070748,-0.015506724,-0.024526794,0.029537942,0.021158187,0.0019244206,0.015492803,-0.019028448,0.016202716,0.005491385,0.0014781151,0.02685141,-0.029537942,0.0017260626,0.026489493,0.017483344,0.004764072,-0.009145347,-0.01891709,-0.00496243,-0.0178731,-0.016550712,-0.0008430215,0.003158068,-0.052394353,0.016244477,-0.021993378,0.0036330833,0.0039428,-0.029036827,0.008337996,0.013711061,-0.039281845,-0.0062917764,0.014671532,0.016689911,0.029482262,0.019237246,-0.01788702,0.03872505,-0.004078519,0.011539564,-0.011421245,0.01884749,0.0059055006,-0.005352186,0.048107035,0.014045139,-0.0056131836,0.009089668,-0.01592432,0.0146993715,0.043095887,-0.020531792,-0.018750051,-0.023524564,-0.008435435,0.009688223,-0.022703292,0.0018757011,-0.034994528,0.012451314,-0.018805731,0.028354755,-0.019571323,-0.022188256,0.009897021,-0.021589702,-0.010711332,-0.008122238,-0.013272586,0.035217244,-0.004854551,0.014170418,0.020239476,0.009235827,-0.025612542,0.022536254,0.033491183,-0.0029109907,-0.047856476,0.028090278,-0.011233327,0.038168255,0.0076837623,-0.01293155,-0.05751686,0.03677627,-0.0029405705,0.023622002,-0.007642003,0.011991959,0.017942699,0.009736942,0.014601933,-0.0025960538,0.0029162106,-0.036080275,0.028299075,0.021617543,0.0007755972,0.03596892,0.002778752,0.012228597,-0.031041287,0.013390905,-0.024693832,0.0015311845,0.0065945336,0.010801811,0.037917696,-0.009479424,-0.009047909,0.01980796,-0.003671363,-0.0034103657,0.01386418,0.006604973,-0.0066884924,0.000037953367,0.0046005137,-0.00694253,-0.017399825,-0.009632543,-0.03780634,-0.012590513,0.031625923,0.034521252,-0.038223933,-0.01289675,0.00018074068,-0.029621461,0.022174336,-0.019292926,0.019988919,-0.0075724036,-0.0054113455,0.022076897,-0.038140416,-0.009256707,-0.010015339,-0.0024307554,0.014420975,-0.01770606,-0.03866937,0.04468275,0.022786811,0.03198784,0.042037975,0.024053518,0.033463344,0.0132656265,0.0023420164,0.0011318586,0.01879181,0.041007906,0.023622002,-0.014295696,0.009549024,0.01881965,0.04977742,0.045434423,-0.002660433,-0.0016408034,0.0033320663,0.0023176565,0.030902088,-0.01778958,-0.0012658372,0.009388945,0.0075724036,-0.021659302,-0.029955538,-0.008783432,-0.03466045,-0.03596892,-0.0034991046,0.013328265,-0.0159104,-0.032154877,-0.01783134,-0.040033516,0.010384215,0.014024259,-0.013015069,-0.04167606,-0.005352186,0.012527874,0.018694371,-0.023538483,0.0075584836,0.0044125956,0.00095090043,-0.014908169,0.026531253,-0.0019331205,-0.000001457915,0.026419893,-0.011261166,0.008045679,0.02685141,0.008066558,0.0033529461,-0.008658153,-0.0041968375,-0.009479424,-0.036998987,-0.026921008,-0.0087903915,-0.03374174,0.0007668973,0.016383674,-0.0003569139,0.01996108,0.034242854,0.030150415,0.008157038,0.008115279,-0.0052199475,-0.039114807,0.0393932]},{"id":"interface-WebSocketManagerOptions","type":"interface","source":"main","text":"Interface: WebSocketManagerOptions\nProperties: intents: number, presence: GatewayPresenceUpdateData, rest: { get: (route: string) => Promise; }, shardCount: number, shardIds: number[], token: string, version: string, WebSocket: WSConstructor","meta":{"url":"/docs/typedefs/WebSocketManagerOptions"},"embedding":[-0.03600943,-0.0016464986,0.019308427,-0.0046557137,-0.0062263496,-0.022522751,0.020117627,-0.027108222,0.04904655,0.033402003,0.013037122,-0.0018923494,0.0067826747,-0.012610043,0.023197085,-0.004700669,-0.062083673,0.058801915,-0.016228968,0.032143246,-0.0077548395,0.03571722,0.005855466,0.041786224,-0.043314714,0.02488292,-0.006642189,0.025579732,-0.042145867,-0.014048623,0.03313227,-0.03337953,0.048911683,0.03396395,0.011289473,0.006720861,0.023084696,0.023084696,-0.011531109,0.0010585637,-0.03149139,-0.019859133,-0.0062544467,0.026433889,-0.023916375,0.0061364383,-0.0032564707,0.030749625,0.007282806,-0.010384742,-0.005051885,-0.013947472,-0.009356382,0.06532048,0.028007334,-0.030210158,0.0011920256,0.006720861,0.017105604,0.01825197,0.025017787,-0.019342143,-0.014970212,-0.009614877,0.009463152,0.012070577,-0.038594376,0.035357572,-0.018892588,0.027647689,0.015768174,0.009277711,-0.017611353,0.0069793556,0.0041134367,0.022320451,-0.0007084018,-0.011823321,0.027085744,0.020106388,-0.046484083,0.020488512,-0.070850015,-0.06298278,-0.02273629,-0.045832224,-0.046978593,-0.028794056,-0.020454794,0.023286996,-0.009963283,0.0030316927,-0.07943653,-0.018184537,-0.022781245,-0.038414553,0.049136464,0.002527347,-0.02508522,-0.0067320997,0.051923707,-0.042617902,-0.08676429,0.035020407,-0.0010473249,0.013688978,0.015577112,-0.009418196,-0.06684896,-0.019016216,-0.06518561,0.0072266115,0.010648856,0.05097964,0.023534253,-0.04275277,-0.037088364,0.012654999,0.03194095,0.023062218,-0.0028729432,-0.005296331,0.05556511,0.021331428,-0.007260328,0.0062825438,-0.040842157,-0.010952306,-0.072468415,-0.012070577,0.01020492,-0.01570074,0.019443294,-0.023826463,-0.0042904494,0.017184274,-0.021870896,0.03549244,-0.013003405,-0.0416064,-0.009412577,-0.01998276,0.06212863,-0.030839536,0.0065017026,0.023062218,-0.003925185,0.04171879,-0.0053356667,0.014161011,-0.020971784,0.032457937,0.005127747,-0.037380576,0.016644808,0.021668596,0.008136963,0.04547258,-0.010053194,-0.03875172,0.057767935,-0.0006950556,-0.018780198,-0.032795105,-0.0016984785,0.005448056,0.015239946,0.031086791,-0.054980688,-0.0022997595,0.032502893,-0.061319426,-0.011435579,-0.011480534,0.0018277258,-0.02274753,0.008777579,-0.0054930113,-0.019814176,0.0113063315,0.052598044,0.016386313,0.0089911185,-0.009227135,-0.012789866,-0.0058048908,-0.026433889,0.025624687,0.051968664,-0.028928922,-0.028254589,0.06482597,0.039066408,0.015655784,0.03018768,-0.016397553,-0.0058779437,-0.011435579,-0.018510465,-0.025557254,-0.029490868,-0.034031384,0.037875086,-0.0018235112,-0.0033267138,0.029041313,0.015599591,-0.005054694,-0.011789604,0.050619997,0.030749625,-0.0015874944,0.02315213,0.00052296,-0.024500798,0.048507083,0.026883444,-0.0062263496,-0.016431268,-0.017004453,-0.0024585088,0.02641141,0.04751806,-0.00056756433,0.03499793,0.044146392,0.0146330455,-0.012823583,0.013857561,0.0010381932,-0.056149535,-0.006642189,-0.07498593,-0.03232307,-0.02886149,0.0024697478,0.014453223,-0.001207479,0.015352335,-0.0289514,-0.0083111655,-0.03110927,-0.015959235,0.002274472,0.04428126,0.0023334762,0.00002098513,-0.014217206,-0.043494534,-0.004228635,0.03376165,-0.009682311,0.01998276,-0.015532157,-0.014104817,-0.022635141,-0.060105626,0.036953498,0.025309999,0.025242565,0.0060409075,-0.02845689,0.032390505,0.017229231,-0.0285468,-0.042955067,0.021713551,0.02152249,-0.0031356525,-0.023489296,0.029625734,0.041651357,-0.001743434,0.003804367,-0.032030858,0.011621021,-0.021398861,0.009980141,-0.026793532,0.031221658,-0.037987474,-0.025579732,-0.0011491773,0.083617404,0.008541563,0.019128604,0.040572423,0.060420316,0.018487988,0.06788294,0.004506798,0.02886149,0.016037907,-0.031693693,0.03225564,0.043584447,0.07453637,-0.029063791,0.028704146,0.022275496,0.06559021,-0.02802981,-0.04234817,-0.046439126,0.02000524,0.0060633854,0.03185104,-0.026905922,0.03142396,-0.027108222,-0.022241779,-0.026051765,-0.048192393,-0.0018319404,-0.064061716,-0.018634092,0.023062218,0.043179847,-0.010671333,-0.013509155,-0.017071886,0.0036582614,-0.037380576,0.010058814,0.011002881,-0.073457435,0.03884163,-0.054486178,0.007586256,0.019555682,0.00642303,-0.03270519,-0.0012130985,0.019825416,-0.016285162,-0.008906826,0.0018080577,0.0212078,-0.0034334834,0.023331951,-0.012621283,-0.024793008,-0.03549244,-0.012598804,0.011598542,0.006810772,-0.030210158,-0.0032030859,0.010986023,0.01712808,0.0016127819,-0.03342448,-0.07808787,-0.021387624,-0.025152653,-0.048012573,0.04081968,-0.043719314,-0.048012573,0.024410887,-0.036751196,0.04556249,0.023242041,0.025759554,0.008732623,-0.0027760079,-0.008721385,0.015869323,-0.023039741,-0.0391788,0.051923707,0.023331951,-0.005425578,0.0049619735,-0.010744386,-0.010856776,0.011901993,0.009154082,-0.0077548395,-0.014981451,0.049945664,0.041156843,-0.037155796,-0.0056363074,0.002663619,-0.016768435,-0.047652926,0.04356197,-0.012430221,0.012025621,0.011137748,0.02366912,-0.034458462,-0.033671737,-0.014543134,-0.014340834,0.017498964,-0.0152849015,0.016577374,-0.04711346,0.027085744,0.042797722,-0.03110927,0.0037678406,-0.014767912,-0.05088973,0.018207015,0.018072149,0.007569398,-0.03814482,0.027894944,-0.020443555,0.021713551,0.03315475,0.00754692,-0.03153635,-0.0006170857,-0.08842765,0.028052289,0.03315475,-0.004203348,0.0416064,-0.045315236,-0.0014013501,0.019611876,-0.008676429,0.031356525,0.0008422149,-0.013902517,-0.037560396,-0.030569803,0.060645092,0.07543548,0.034548372,0.04169631,-0.015307379,-0.0017687216,-0.011413101,-0.030434936,-0.026456365,-0.04353949,-0.009480011,-0.02722061,0.03652642,-0.006394933,0.011429959,-0.021342667,-0.020050194,-0.007737981,-0.06585994,-0.060645092,-0.016071623,-0.007737981,0.030637236,-0.013059599,-0.005698121,-0.027153177,0.02387142,-0.010272353,0.022522751,-0.005518299,-0.035986952,-0.06577003,0.02937848,-0.0052064196,0.044078957,0.010969165,-0.0127673885,-0.012104293,0.041156843,-0.029356001,-0.014700479,-0.0035065361,-0.014419506,0.016970735,-0.022994785,0.022286735,0.067298524,0.021589924,0.004231445,0.019094888,0.0041892994,-0.018364359,0.024972832,0.02998538,0.09287825,0.016588613,0.009030455,-0.049226373,0.03843703,-0.0039392337,0.0099464245,-0.010030717,-0.009980141,-0.0020328357,-0.013374289,-0.069096744,-0.046484083,-0.007737981,0.0024121485,0.024545753,-0.07592999,0.0038605614,0.017892325,0.013801367,0.012486416,-0.03589704,-0.01458809,-0.037043408,-0.022814963,-0.032502893,-0.017690025,0.012306593,0.0020258115,-0.016824631,0.015599591,-0.0034306736,0.058127582,-0.0055520157,-0.014295878,-0.0277376,0.00795714,0.0146330455,0.004208967,-0.002722623,0.013464199,-0.014307117,-0.01223916,0.010356644,0.006619711,-0.0050153583,-0.024500798,-0.034818105,-0.00076003047,-0.010266733,0.017881086,0.025534777,-0.049226373,0.028434413,-0.0154872015,-0.0039645215,0.01050837,-0.013497916,0.011587304,-0.027580256,0.012205443,0.033514395,0.00079515204,-0.006619711,0.03693102,0.012081815,-0.03140148,0.024096197,-0.02192709,0.024905398,-0.0029726885,0.0013844918,-0.0018445841,-0.027085744,-0.0072153723,-0.005377813,-0.0151837515,0.020960545,-0.01183456,-0.03794252,0.0068894443,-0.016880825,0.029760601,-0.01980294,-0.04313489,-0.023826463,0.019285949,-0.015172512,0.05394671,0.030255113,-0.017498964,0.0006392123,0.006473605,-0.016453747,-0.008288687,-0.011946948,-0.021252757,-0.03140148,0.05138424,0.0013065219,-0.0052907113,-0.0018740862,0.0025301569,0.031019358,0.03185104,0.024186108,-0.005678453,0.0105982805,-0.0020103578,0.0086595705,-0.020848155,0.0131157935,0.03225564,-0.0010971974,0.03895402,0.012891016,-0.012891016,-0.038077388,-0.026793532,0.022106912,0.037155796,0.0147791505,0.010570183,0.004577041,0.03180608,0.0017518632,0.05201362,-0.03407634,-0.053901754,-0.034143772,0.028209634,-0.04131419,-0.008136963,0.02018506,-0.021904612,-0.0028406314,0.023331951,0.006467986,0.012834822,-0.019915327,0.021691073,-0.0046922397,-0.030345025,0.0021662975,0.002733862,0.011154606,-0.002468343,0.005799271,-0.011969427,-0.0579028,0.02355673,0.01774622,0.015846847,-0.031311568,-0.010440936,0.018724004,0.011092792,0.007788556,0.002978308,0.048596993,0.007811034,-0.05772298,0.024208587,0.007586256,0.014925256,-0.040437553,-0.015689502,0.05619449,-0.0007586256,0.03803243,-0.014734196,-0.035672262,0.006192633,-0.0030906969,-0.0129696885,0.0085134655,-0.006816392,0.016644808,0.027670167,-0.010171203,0.018802676,0.018072149,0.011913232,-0.016869586,0.028434413,0.017892325,0.04967593,0.05241822,-0.011064695,0.02917618,-0.00037334213,0.014295878,-0.031693693,-0.031783603,0.022253018,0.023039741,0.031334046,-0.033626784,0.010086911,0.053002644,-0.015273662,0.03038998,0.024343453,0.034908015,0.030682191,0.025916899,0.008148201,0.04347206,-0.007187275,-0.016858347,0.037200753,0.041134365,0.040617377,-0.009193419,-0.002388266,-0.03252537,0.02416363,0.007485106,-0.0030513608,-0.011857037,-0.00028237732,-0.008002095,0.031738646,0.03009777,0.0037566016,-0.003742553,0.00990147,-0.0407972,-0.04046003,0.0010887682,0.002561064,-0.0022210872,0.002662214,0.0007691621,-0.0071816556,-0.0035374432,-0.005383432,-0.037987474,0.040032953,-0.009648594,-0.0126662385,0.05866705,0.031086791,0.013733934,-0.01966807,0.042707812,0.02243284,-0.025849465,-0.0038689906,-0.02173603,0.045045502,-0.016813392,0.0032396123,-0.009699169,-0.009985761,0.018532943,-0.011289473,-0.024860442,0.01591428,0.0019007786,-0.04702355,0.013587828,0.021084173,-0.030524846,0.026523799,-0.03153635,0.0055548255,-0.0062094913,0.026793532,0.011924471,-0.029198658,-0.018499225,-0.05017044,-0.025961854,0.018892588,-0.038009953,-0.011469295,-0.011278234,-0.010249875,-0.011857037,-0.00652418,-0.020274973,-0.0123627875,0.041471533,0.0558798,0.0024641284,-0.017678786,-0.015644547,-0.000049521394,0.02058966,-0.051249374,-0.016026668,-0.010839917,-0.016970735,-0.0403926,0.02998538,-0.030277591,-0.011823321,-0.034391027,0.046888683,-0.023129651,0.003548682,0.0016085673,-0.004731576,-0.022500273,-0.022837441,0.024545753,-0.010019477,-0.045270283,-0.028299546,-0.015565874,0.0010747196,-0.038279686,0.0108286785,0.042235777,0.0003549033,0.010896112,-0.025534777,0.0078054145,0.02816468,-0.006467986,-0.017577637,0.020904351,0.01653242,-0.01672348,-0.01590304,0.034503415,-0.04153897,0.004051623,0.018296925,0.011059076,0.016689764,0.0138238445,0.04169631,-0.012250399,0.053452197,-0.008693287,-0.023781508,0.017881086,0.011778365,0.03762783,-0.02407372,-0.0031665596,0.015745696,-0.015071362,0.001336024,0.012329071,0.0020426698,0.0077660787,0.018487988,-0.012812343,-0.013396766,0.013677739,0.014464461,-0.0008513465,0.025557254,-0.0070018335,-0.009631735,0.009182179,-0.00046360455,-0.0024599137,-0.014250923,-0.034930494,0.011767127,0.0060914825,-0.009637355,-0.009064171,0.04425878,-0.008951782,0.06918666,0.0039954283,-0.018634092,-0.0069793556,0.0065635163,-0.009524966,-0.009716027,0.00968793,-0.017161798,0.00096443796,-0.013216944,-0.0020019286,0.033604305,-0.010356644,0.016948259,0.053092554,-0.016341358,0.017791176,0.012598804,-0.03996552,0.0041892994,0.039988,0.007412053,-0.011418721,-0.015138796,0.0407972,0.024186108,0.0017897945,-0.012980927,-0.0024528895,0.023107175,0.019038694,-0.010558944,-0.00866519,-0.0039195656,0.0056447363,0.014520656,0.022489036,0.00078953255,0.016476225,-0.0052907113,-0.028614234,0.013857561,0.021544967,0.03160378,0.026141677,-0.01866781,0.009395719,0.015947996,-0.008507846,0.028479367,-0.008996738,0.054935735,-0.008047051,0.018431792,-0.0041892994,0.05435131,-0.007788556,-0.01060952,0.026343977,-0.014644284,0.0028181537,-0.00012116937,0.005821749,0.0014055647,0.035852086,-0.021702312,0.012126771,0.0075806365,0.040572423,-0.017229231,0.011441198,-0.021668596,0.020634616,0.0056025907,-0.0063555967,0.0040741004,-0.011126509,-0.00254842,0.00896864,-0.003734124,-0.032817584,-0.0045658024,0.010721909,-0.017498964,0.007468248,0.009210277,0.012621283,0.009429435,-0.005922899,0.011053456,0.0015327047,-0.00045763387,0.023893896,-0.04081968,-0.033334572,0.011446818,-0.0077773174,0.04976584,-0.036975976,0.0018417744,0.020690812,0.027310522,0.011087173,0.0387742,-0.013812605,-0.002388266,-0.008215634,-0.0047062887,-0.024815487,-0.023579208,0.00023970462,0.00458828,-0.008372979,-0.023938853,0.0057121697,0.0064792247,0.025332477,0.04068481,-0.036728717,-0.020117627,0.05484582,-0.014116056,0.01712808,-0.0050603137,0.00427921,0.004554563,0.08253846,0.010778103,-0.004031955,0.0078054145,-0.015891802,0.012486416,-0.024433365,-0.005254185,0.0047343858,0.0022477796,-0.06181394,-0.010766864,0.041449055,-0.024141153,-0.0076536895,-0.028501846,-0.00001568397,-0.012205443,-0.022635141,-0.011553587,-0.011924471,-0.0042567328,-0.016858347,0.008614616,-0.0004878384,-0.0072041336,0.0391788,0.020038955,-0.021960806,-0.015217468,0.0048804916,0.0043691215,-0.014397028,-0.025759554,0.018499225,-0.011126509,-0.003832464,-0.013486678,0.031221658,0.03149139,0.016959498,0.014914017,-0.059790935,0.0042707813,-0.029468391,0.020151343,0.022848679,0.0053356667,-0.004355073,-0.03306484,0.023714075,0.011789604,-0.0076031145,0.01600419,0.0014308522,0.011654737,-0.032390505,0.022118151,-0.0062375884,-0.01612782,0.008035812,-0.005973474,0.0017125271,0.01039598,-0.0012046694,0.03578465,-0.0020665524,0.0016872395,0.025332477,-0.009878991,-0.0021957997,-0.018274449,-0.012149248,0.003436293,0.00084502465,0.002396695,0.037672784,0.031064315,-0.011059076,0.007732362,0.021747267,0.031131748,0.00158047,-0.023197085,0.0041696313,-0.019746743,0.010429697,-0.002997976,0.031693693,0.012598804,-0.005108079,-0.021072933,-0.024096197,-0.015037646,-0.026748577,0.040257733,-0.021713551,-0.013509155,-0.003304236,0.01633012,0.016161535,-0.0030429317,-0.031693693,-0.031558827,0.01773498,-0.008406696,-0.001468081,0.011289473,-0.04457347,-0.018622855,0.0067658164,0.0035149653,-0.024703098,0.0045208465,0.021691073,0.030929448,-0.044708338,0.029828034,-0.0026706432,-0.013025883,-0.022601424,-0.0017139319,0.029445913,-0.007979617,0.0203986,0.015161273,-0.015959235,-0.015105079,-0.001642284,-0.028524322,-0.005740267,0.03967331,0.017521443,-0.024298497,0.01754392,0.0078054145,-0.013711455,-0.01418349,-0.013216944,-0.012823583,-0.012081815,0.016375074,-0.0029614496,0.017105604,0.0018333453,-0.012216683,0.035447486,-0.033199705,0.01264376,0.0034138153,-0.00013574482,-0.015217468,-0.05601467,0.0144757,-0.024815487,0.0025863515,0.007468248,0.018015953,-0.012385266,-0.006996214,-0.0045348955,-0.0064792247,-0.009328285,0.0050209775,0.020938067,-0.030075291,0.04945115,0.0030766483,-0.0073165228,0.023039741,0.035986952,-0.0047147176,0.010564564,-0.027894944,-0.005192371,-0.02508522,-0.016296402,-0.0058161295,-0.011295092,-0.023107175,0.0009040288,-0.015228706,0.0044000284,0.0106994305,-0.011356906,-0.020038955,0.011317571,0.0003564838,-0.0058105104,0.009418196,0.005352525,-0.012093054,0.023826463,-0.000568618,0.04108941,0.040729765,0.02897388,-0.013576589,-0.009783461,0.0036133057,-0.04005543,0.026523799,-0.025220087,0.012834822,0.027894944,-0.011767127,0.024590708,-0.042235777,-0.033918995,-0.020421078,-0.0138238445,0.0048636333,0.00948563,-0.025422387,0.00030327463,-0.01846551,0.005574493,0.0005282282,0.008755102,-0.01897126,-0.012654999,-0.0013205705,0.01865657,0.059521202,-0.01633012,-0.022500273,-0.013576589,0.032368027,0.020173822,0.046259303,0.008075148,0.046124436,0.03243546,0.019623116,0.01703817,0.035155274,0.00867081,-0.05273291,-0.009676691,0.017397813,0.018791437,0.003037312,-0.011576065,-0.04117932,-0.02274753,-0.04001048,0.008794438,-0.008985499,-0.01897126,0.04070729,-0.008232493,0.014599329,-0.00029993808,0.033244662,0.010783723,-0.053497154,0.002437436,-0.01571198,-0.0075918757,0.014734196,0.0002303974,0.0064567467,-0.00035121557,-0.03407634,-0.01692578,0.0022070387,-0.011632259,-0.020072673,0.0027296473,0.0075750174,-0.0289514,-0.018746482,0.022118151,0.009721647,-0.021117888,0.0030007858,-0.00969355,-0.013947472,-0.002823773,-0.022219302,0.0025779223,-0.041246757,0.0043101176,-0.011879515,-0.034098815,0.0017490535,0.026231587,0.014520656,0.024320975,-0.0065747555,-0.025579732,0.020735767,0.023062218,0.016745958,-0.026276544,0.011913232,0.016880825,0.03292997,-0.013801367,-0.006299402,0.02836698,0.034840584,0.021365145,-0.011991904,-0.011665976,-0.032053337,0.035177752,-0.01785861,-0.0395834,-0.00500131,0.011503012,0.0064904634,-0.0045742313,-0.022444079,0.014363311,0.009839655,-0.052642997,-0.022691336,0.010952306,0.0032648998,0.0285468,-0.026388932,0.01592552,0.015206229,-0.0043213563,-0.021488773,-0.023826463,-0.030772103,-0.01071067,-0.0073502394,0.018903827,-0.008552802,0.005271043,-0.00055562303,0.007670548,-0.0128685385,-0.009671072,-0.010171203,-0.029670691,0.0125650875,0.035514917,0.0066646663,-0.007569398,0.0044112676,-0.01845427,-0.027692644,-0.05754316,0.0041415337,0.0017097173,0.028007334,0.009676691,0.0023095936,-0.05677891,-0.0033941471,-0.012733672,-0.02416363,-0.023579208,0.008940543,-0.024927875,-0.024950353,-0.00632188,-0.0005882861,-0.02447832,0.008316784,-0.00010176471,0.0072266115,-0.030210158,-0.0072266115,0.0069905943,0.012553849,0.011564826,0.015959235,-0.06316261,0.0074064336,-0.02569212,0.003071029,-0.020657094,0.011857037,0.0029136844,-0.013216944,0.071029834,0.004200538,-0.008912446,-0.015509679,0.0019415197,0.007732362,0.03774022,0.0018600376,-0.01183456,-0.03976322,0.018004715,0.009828417,-0.009862133,0.015206229,-0.014161011,-0.019196037,0.015813129,0.030030336,-0.025242565,-0.029625734,0.019162321,-0.017903564,0.0021297713,0.023399385,-0.035200227,0.009339524,-0.014430745,-0.006394933,-0.028906446,0.0152849015,-0.009957664,0.023601687,0.013430483,0.018487988,-0.020510988,0.033918995,-0.0034222445,-0.004363502,0.02620911,-0.041336667,-0.03243546,0.05331733,0.0024079338,-0.00091737503,0.00040565396,0.020938067,0.0039392337,-0.012351549,0.018027192,0.004453413,0.039111365,-0.018813916,0.049091507,-0.012902255,-0.015869323,-0.0015074172,-0.00989585,0.00046887278,-0.08051547,0.045607448,0.0018530133,-0.0024458652,0.014520656,0.020881873,0.036953498,0.01691454,-0.008429173,0.069591254,0.026433889,-0.004374741,0.027445389,0.01773498,-0.020061433,-0.0019710218,0.01672348,-0.009283329,-0.0032368025,-0.016386313,-0.00010931584,-0.026568756,0.043921612,0.026883444,-0.036031906,-0.03394147,-0.0060015717,-0.0206009,-0.011587304,-0.035559874,0.033918995,-0.002416363,-0.015037646,0.010637617,-0.026950877,-0.005346906,0.023084696,0.019218516,-0.0005233112,0.017970998,-0.0006504512,-0.00068592397,0.020050194,0.0006817094,-0.008328023,0.0061139604,-0.014700479,-0.007535681,0.0069287806,0.013520394,0.015768174,0.01183456,0.037268184,-0.0047568637,0.026231587,0.006344358,0.02917618,0.026388932,-0.0110085,-0.0060521467,-0.010367883,-0.015779413,0.01967931,0.01203686,-0.030614758,0.008344882,0.010356644,-0.011755887,0.019488249,-0.01234031,-0.032997403,-0.033716694,-0.012317833,0.033222184,-0.005018168,-0.024545753,-0.00815944,-0.03670624,0.035852086,0.044123914,0.023691596,-0.046843726,-0.025669644,0.0056025907,-0.013464199,-0.0051951804,0.021027979,-0.029715646,0.0012749125,-0.046439126,0.003509346,-0.011868277,0.049226373,0.035357572,0.023826463,0.0019120175,0.018229492,0.019746743,-0.0075300615,-0.008434793,-0.045247804,-0.037492964,-0.008946163,-0.044528514,-0.01713932,-0.007558159,-0.005422768,0.047383193,0.01284606,0.015431007,0.049406197,0.012317833,-0.010339786,-0.010823059,-0.014093578,-0.018105865,0.0104521755]},{"id":"interface-WebSocketShardEvents","type":"interface","source":"main","text":"Interface: WebSocketShardEvents\nProperties: close: [code: number], debug: [message: string], dispatch: [payload: GatewayReceivePayload], error: [error: Error], ready: [payload: unknown], resumed: []","meta":{"url":"/docs/typedefs/WebSocketShardEvents"},"embedding":[-0.018851921,0.008070008,-0.015769668,0.017633356,0.014371902,0.017059913,-0.013499791,-0.01404934,0.05877785,-0.00028018787,0.043557733,0.0103100175,0.028743804,0.030822532,0.03443044,-0.01166597,-0.039543636,0.05772654,-0.02704737,0.020058539,0.030081835,-0.011570396,0.05251777,0.025159787,-0.017728928,0.024048742,0.017095752,0.019449256,-0.013105549,0.011970611,0.05973359,-0.031658802,0.023224419,0.023379726,-0.0155426795,0.026521713,-0.010238337,0.028337615,-0.02711905,0.013272803,-0.022985484,-0.036509167,-0.051514246,0.010584792,-0.035983514,-0.0034197478,-0.038611792,-0.0051221554,-0.013631205,0.022650976,0.009449854,-0.01179141,0.009270653,0.08118989,0.0039185234,-0.00933636,-0.022376202,-0.001657607,0.026330566,-0.015709933,0.0050743683,0.0093722,-0.004575593,-0.020942597,-0.0028776657,-0.0129263485,-0.036987036,0.06790514,0.01878024,0.0029060391,-0.0074846186,0.040881667,-0.012317066,-0.014479422,-0.01084762,0.036222447,0.007108297,0.008559823,0.0013805926,0.0049787946,-0.010686339,0.0021220357,-0.07999522,-0.049746133,0.018362105,-0.05724867,-0.061788425,-0.009366226,-0.011707784,0.015327639,-0.03959142,0.008291022,-0.0151364915,0.0031539334,-0.012096052,-0.054907113,0.0422197,-0.024251837,-0.0049459413,0.0017711009,0.027501345,-0.063604325,-0.05863449,-0.022997431,0.014371902,-0.012472373,0.00793262,-0.028696015,-0.035003882,-0.018839974,-0.06599367,-0.0012230452,-0.017932024,0.021850547,-0.0076100593,-0.020823129,0.038014457,-0.002944866,0.018278478,0.034024253,-0.021958066,0.051896542,-0.0006006959,0.013440058,-0.035290603,-0.0061824266,0.033355236,-0.019628458,-0.0076100593,0.019962965,0.05361687,-0.013308643,0.014037393,-0.049220476,0.022543456,0.033403024,-0.03122872,0.025709337,-0.051514246,-0.030559704,-0.0011685384,-0.047547936,0.06647154,0.00021429425,-0.020655874,0.016068336,-0.0053640762,0.032805685,0.009246759,-0.011002927,-0.022423988,0.061310556,0.035433963,-0.027835852,-0.0055940505,0.024419092,-0.0013006988,0.014407742,0.0100770565,-0.047547936,0.0062242397,0.008942118,-0.053091213,-0.018409891,-0.04167015,-0.029890688,-0.004593513,0.008506063,-0.049602773,-0.023666447,0.013368377,-0.043557733,-0.0102861235,0.022877965,-0.010799833,-0.0021504092,0.006065946,0.010787886,-0.00095051073,0.0036377755,0.023164686,0.034932204,-0.014324115,-0.021970013,-0.029819008,-0.009909802,-0.0044561257,0.048360314,0.000021630092,-0.022005854,-0.03944806,0.04429843,0.007185951,0.026163312,0.06594588,-0.016677618,-0.009192999,0.012950242,-0.033689745,-0.023355832,-0.024251837,-0.054477032,0.06608924,-0.007293471,0.009527507,0.030368555,-0.0073352847,-0.013702885,0.025852697,0.012615734,0.0636999,0.021826653,0.021898333,0.009587241,-0.0076996596,-0.003727376,0.03163491,0.035649005,0.008195449,-0.020297473,-0.015100651,0.0064034406,0.04219581,0.025135893,0.038564004,0.03476495,0.03247118,-0.017382475,-0.00389463,0.011331461,-0.0436772,0.01328475,-0.02198196,-0.018278478,0.008954065,0.022866018,0.035457857,-0.030822532,0.0074666985,-0.030559704,-0.006272027,-0.04625769,-0.00860761,-0.0032315871,0.020428887,0.031611014,0.012603787,0.014730303,-0.04243474,0.0077713397,0.019819604,0.0007623499,0.005131115,-0.0066543217,0.0029612926,-0.047810763,-0.023714235,0.0024012902,0.012131892,0.020835076,0.047309,-0.04243474,-0.0025371842,0.03665253,-0.005507437,-0.05419031,0.046138223,0.017382475,-0.009784361,-0.034263186,0.03435876,0.045469206,0.018326266,-0.0068514426,-0.034956098,-0.0044411924,-0.009157159,0.014563049,-0.0083328355,0.024192104,-0.01932979,-0.022686817,-0.0014784063,0.08362702,0.010130816,0.036939252,0.008201421,0.026234992,0.04506302,0.039878145,0.010704259,0.0032345739,0.029054418,-0.032853473,0.031395976,0.03803835,0.061453916,-0.0140135,0.02052446,-0.052565556,0.03170659,-0.07712801,-0.0022982499,-0.04319933,-0.0010139777,0.0102980705,0.03868347,0.0010072576,0.018684667,-0.0022474763,-0.012771041,0.012209546,-0.07550325,-0.022041693,-0.038635686,0.0011394182,0.072970554,0.04286482,0.014395795,-0.029795114,0.0045696194,0.006373574,-0.010148737,-0.0046442864,-0.01700018,-0.005104235,0.06336539,-0.031658802,0.011014874,0.06494236,-0.018087331,-0.03916134,0.011397169,-0.01113434,0.005874798,-0.009838122,-0.017394422,-0.008326862,-0.013308643,-0.0071620573,0.011881011,-0.014431635,-0.038755152,-0.010321964,0.012567947,-0.005785198,0.018111223,-0.009969536,-0.015697988,-0.021539932,-0.03184995,-0.0051012486,-0.07502539,-0.033976465,-0.018541306,-0.061119407,0.01397766,-0.01714354,-0.016008602,0.022101428,0.0034316946,0.019855445,-0.0017740875,0.0036825757,-0.015913028,0.044465683,-0.035147242,-0.0116122095,0.009957589,-0.06838301,0.05954244,0.054572605,-0.018565198,0.018828027,-0.027286302,0.008279075,-0.02187444,-0.002071262,0.012950242,0.01328475,0.009581268,0.024705812,-0.043151543,0.006140613,0.0034107878,-0.0016680604,-0.049220476,0.05452482,-0.0036198555,0.007389045,0.061167195,-0.001411206,-0.05299564,-0.022483723,0.030201303,-0.03192163,0.017203273,0.004017084,0.005952452,-0.017203273,0.009581268,0.009945642,-0.027286302,-0.003539215,0.009712681,-0.009593214,0.025207574,0.0140135,0.004250045,-0.05208769,0.0017905143,0.0053581027,0.020249687,0.0033868945,0.023558928,-0.03137208,0.018421838,-0.039878145,0.006958963,0.024586344,0.029245565,-0.010913326,-0.052565556,0.015279852,0.0017546741,0.017047966,0.006194373,-0.011881011,-0.011319515,-0.031754375,-0.026856221,0.035983514,0.089887105,0.0013402724,0.07421301,-0.034645483,0.0033092408,-0.028600441,-0.050988592,-0.031348187,-0.03462159,-0.0046174065,-0.018839974,0.030488024,-0.048599247,0.004232125,0.011570396,-0.03548175,-0.02336778,-0.04248253,-0.019126695,-0.043796666,0.0004106684,0.06398662,-0.04171794,-0.028074786,-0.018553253,0.015924975,0.0015695001,-0.0026312645,-0.017310794,-0.025828803,-0.045373634,0.010375724,-0.004847381,0.030010154,0.004787647,0.0023355833,-0.00057232246,0.05146646,0.012806881,-0.005605997,0.0022295562,-0.024753598,0.010333911,-0.00931844,0.022913804,0.03268622,0.020942597,-0.0031658802,-0.033068515,-0.0035451883,0.020811182,-0.008308942,0.02169524,0.0837226,0.0040499372,-0.008918225,-0.059494656,0.02253151,-0.047261216,0.027764171,0.022089481,-0.012579894,0.007245684,-0.036365807,-0.050080642,-0.030081835,0.019962965,0.007998328,-0.019078908,-0.06470342,-0.02747745,-0.0076518725,-0.005328236,0.0053252494,-0.027381876,-0.025159787,-0.03400036,-0.05404695,0.01769309,0.005367063,-0.0030673197,-0.005301356,-0.023893435,-0.0000066675284,0.00040693508,0.023176633,-0.028433189,0.0061167195,-0.024586344,-0.004539753,0.018756347,-0.014037393,0.008219342,0.00080416346,-0.016355056,0.016104175,0.005871812,0.023009378,-0.0054656235,-0.026665073,-0.039400276,0.036819782,0.0016098202,0.023081059,-0.023308046,-0.0673317,0.020225793,-0.018756347,-0.013404218,0.049602773,-0.019712085,0.0049519143,-0.030440237,0.040929455,0.029675646,-0.007693686,0.008458276,0.014467475,0.019007228,-0.0137984585,0.01783645,-0.0072636046,0.029102204,-0.00085120363,0.004238098,-0.014981184,-0.034788843,0.004760767,-0.012113972,0.031682696,0.037847202,-0.018493518,-0.02719073,0.015411266,0.00926468,-0.0047846604,-0.013690938,-0.009258706,0.012125919,-0.0025894511,-0.002286303,0.021420464,0.0010423511,0.0034735082,-0.056723014,0.0142285405,0.0018577146,-0.00695299,0.00033301476,-0.036891464,-0.04723732,0.069052026,-0.06092826,0.004545726,0.039280806,0.0076160324,0.04152679,0.009109372,0.0048384205,-0.02817036,0.02747745,0.04632937,0.015877187,-0.03846843,0.011462876,0.036270235,-0.00850009,0.022543456,0.020870917,0.01568604,-0.028433189,-0.017334687,0.04611433,0.044632938,0.0011864584,0.0075025386,0.020333314,0.0001176005,0.013738725,0.03610298,-0.00540589,-0.045397528,-0.012675468,0.006122693,-0.03729765,0.023116898,-0.002162356,-0.0578699,-0.031204827,0.0031658802,-0.012579894,0.025518188,-0.009676841,0.013165283,-0.036174662,-0.03942417,-0.006720029,-0.00396631,0.024610238,-0.0055582104,-0.008404516,-0.014754197,-0.04673556,0.022244789,0.044609044,0.01762141,-0.028027,0.010166657,-0.012376799,0.0051460485,0.028982736,-0.005384983,0.02886327,0.004175378,-0.026999582,0.0033391076,-0.0076160324,0.034741055,-0.019138642,-0.013547578,0.021468252,0.009736575,0.040356014,-0.024896959,-0.006343707,0.009103399,-0.020906756,-0.011898931,0.008201421,0.034979988,-0.014073233,0.031969417,-0.016988233,0.008989905,0.015697988,0.011367301,0.009001852,0.043079864,0.053569082,0.038564004,0.043509945,-0.0125082135,0.020225793,-0.022686817,0.018182904,-0.041144494,-0.012723254,0.04138343,0.0037482826,0.03868347,-0.048838183,0.005689624,-0.0006118959,-0.018290425,0.040236544,-0.021862494,0.017932024,0.046687774,0.0028283854,0.028528761,0.045182485,-0.013846246,0.01321307,0.03471716,0.03791888,0.016223643,0.016319217,-0.015435159,0.011654023,-0.0070664836,0.009491667,-0.03170659,0.00062272267,-0.0032853473,0.021253211,0.0118332235,0.010166657,0.00389463,0.031395976,0.012364853,-0.03156323,-0.012986082,-0.041263964,-0.012460426,-0.040977243,0.012603787,0.0061883996,-0.025589868,0.02358282,-0.007496565,-0.035696793,0.024896959,-0.010435458,-0.00024397437,0.0549549,0.032710113,-0.017466102,0.0031748402,0.016880712,0.035075564,0.018314319,0.009187026,-0.016140016,0.04465683,-0.021719133,0.0075981123,0.0035063617,0.002628278,0.033307448,-0.030894212,-0.0038707366,0.026593393,0.017955916,-0.037536588,0.024705812,0.04219581,0.012759094,0.020225793,-0.03763216,0.0068394956,-0.039734785,0.010680365,0.025781017,-0.027381876,0.0076518725,0.0068394956,-0.038779046,-0.035314497,-0.02431157,0.007944567,0.011367301,0.01324891,0.018218745,0.0018920614,-0.024466878,-0.01022639,0.043844454,0.042506423,0.013404218,-0.023594767,-0.032447286,0.029603966,0.061310556,-0.01408518,-0.031419866,0.010877486,-0.027907532,-0.026163312,-0.017346634,-0.026187206,0.008798758,-0.015697988,0.017382475,-0.0024774505,-0.0023714234,0.007974434,-0.028911056,-0.009682815,-0.026019951,-0.01805149,-0.010662446,-0.070581205,-0.009157159,-0.01940147,-0.009025745,-0.084773906,0.0076339524,0.036485277,-0.019305896,0.0009101906,-0.03220835,-0.004751807,0.012567947,0.0042799115,-0.047619615,0.01652231,0.0026193177,-0.010680365,-0.011695837,0.033498596,-0.025350936,0.053186785,0.011564422,0.020082433,-0.007329311,-0.003204707,0.0313004,0.0075801923,0.052135475,-0.019210322,0.0054805567,0.007138164,0.0027417718,0.030631384,-0.031013679,0.03667642,0.0052475957,-0.01634311,-0.01790813,0.037871096,-0.024849173,-0.01332059,0.030846424,0.009676841,-0.012436533,0.010901379,-0.0008497103,-0.006743922,0.018421838,-0.0037482826,-0.018003704,-0.029245565,0.005859865,-0.010023296,-0.0187444,-0.042171914,-0.016916553,0.009664895,0.0074129384,0.016844872,0.051944327,0.0014694462,0.06685383,0.00780718,-0.04716564,-0.0022444895,0.033164088,-0.02977122,-0.051657606,0.007191924,-0.029126098,-0.009473747,-0.0060062124,0.035075564,0.02402485,0.019867392,0.058873426,0.04090556,-0.00704259,-0.0020832089,0.041025028,-0.04131175,-0.002189236,0.02754913,-0.0047458336,-0.046855025,0.015244012,0.03667642,0.0073651513,0.0038050297,-0.007813154,0.02121737,0.036700316,0.028982736,-0.0017591541,-0.022280628,0.00035373485,0.0023400632,0.02274655,0.031085359,0.028552655,0.0037004957,-0.030034048,0.0076638195,0.006065946,0.013201123,0.012388746,0.037034824,-0.0013507258,-0.010250283,-0.022854071,-0.017346634,0.033259664,-0.024777493,0.02416821,0.016367003,-0.009521534,0.014312168,0.018350158,-0.0031091333,-0.039734785,0.027238516,0.012329012,-0.015064811,0.004844394,-0.009503614,-0.0056657307,0.018493518,0.020596141,0.021181531,0.047547936,0.0044591124,-0.019735977,0.0004640553,-0.0071680304,0.02747745,-0.010387671,0.025327042,0.0048682876,0.0047488203,-0.02423989,-0.0057194913,0.014431635,-0.021169584,0.0059853056,0.029388925,-0.037871096,-0.030941999,-0.025112001,0.01895944,0.011904904,-0.02121737,0.023558928,-0.028433189,0.019759871,0.0033510544,-0.03380921,-0.029890688,0.0011506182,0.02664118,0.055528343,-0.03290126,0.0069111763,0.017597515,0.03380921,0.016641777,0.05571949,-0.0000032375137,-0.007108297,-0.018565198,-0.029365031,-0.042554207,-0.023057165,-0.013475898,0.011498716,-0.024227943,-0.004506899,0.0044471654,-0.03297294,0.00704259,0.035696793,0.009449854,0.019962965,-0.005767278,-0.011247835,0.03232782,-0.006857416,0.005561197,0.013858193,0.05753539,0.01743026,0.030057942,-0.0005364823,-0.030368555,0.00842841,-0.028839376,0.04728511,0.020643927,-0.00075824326,-0.031539336,0.00393943,0.006875336,0.009790335,-0.0049997014,-0.012305119,-0.0037124425,-0.022698764,0.012078132,-0.037464906,0.025542082,-0.022244789,-0.021050116,0.030488024,0.012460426,-0.013189176,0.016295323,-0.009073532,-0.043438267,0.01950899,-0.0034974015,-0.005925572,-0.039519742,-0.024729706,0.0169285,-0.020584194,0.0016516338,-0.017573621,0.0203811,0.042052448,-0.01852936,0.020596141,-0.04348605,-0.033498596,-0.038348965,0.020393047,0.025924377,-0.04054716,-0.011086554,-0.02249567,0.022340363,-0.007406965,0.024610238,-0.026067737,0.012567947,0.04425064,-0.019282002,-0.0049489276,0.0043904185,-0.013571471,-0.00853593,-0.007174004,0.006773789,0.026402246,0.01408518,-0.011188101,-0.012794934,0.022280628,0.019951018,0.0051968223,-0.017036019,0.0055552237,0.0050176214,0.010357805,-0.0036676424,0.009169105,0.0436772,0.030416343,-0.01499313,-0.0025371842,0.025589868,0.021671345,-0.021599665,0.03667642,0.0035242818,-0.025327042,0.02664118,0.013523685,0.017406367,0.0008071501,0.018278478,0.015984708,-0.012072158,-0.022005854,-0.011056687,0.006540828,-0.009449854,-0.024060689,-0.02114569,0.008058061,0.013416164,-0.0073233377,-0.03060749,-0.011253808,0.020046592,-0.0062839733,0.0142524345,-0.005241622,-0.024323517,-0.021241264,-0.009175079,0.0017457141,-0.040929455,0.025112001,-0.013105549,-0.01026223,-0.036007408,-0.001999582,0.0013514725,-0.042554207,-0.022352308,-0.023379726,-0.008822651,-0.003494415,0.017597515,0.02420405,-0.024777493,-0.04401171,0.01870856,-0.014348008,-0.015351532,0.016773192,-0.00013104056,-0.043940026,0.010423511,0.027907532,-0.012962189,0.0087629175,-0.013726778,-0.012747148,0.003727376,0.019293949,0.0070545366,0.0051400755,0.022137268,-0.012830774,0.010985007,-0.03959142,-0.005376023,0.015327639,0.023176633,0.013344483,-0.046496626,-0.014455528,-0.036461383,0.025781017,-0.028982736,0.0037572428,-0.0005148289,-0.009814229,-0.0037900961,-0.018409891,0.032303926,-0.013953766,0.00079669675,-0.027071262,0.047595724,-0.015805507,0.002765665,-0.004435219,0.010602712,-0.00393047,-0.02034526,-0.0026476914,-0.018206798,-0.007944567,-0.01895944,0.04917269,-0.015100651,-0.005534317,0.0040559107,0.002184756,-0.0017263007,0.016761245,0.0066543217,-0.024610238,-0.015387372,0.000088667046,0.018362105,-0.023152739,-0.021181531,-0.037847202,0.0074009914,-0.01335643,0.052756704,0.03791888,0.033331342,-0.020464728,0.003828923,0.015745774,-0.04305597,0.022101428,0.014431635,0.004862314,-0.015244012,-0.007544352,0.01932979,-0.009521534,-0.011898931,-0.01965235,0.019676244,-0.0022668897,0.01474225,-0.033211876,0.010829699,0.005674691,-0.001886088,0.029962368,-0.012137865,-0.021563826,-0.0028672123,0.011307568,0.026545607,0.066614896,-0.019246163,-0.0073054177,-0.011958664,0.0006167493,-0.008129741,0.033761423,0.014419688,0.0151125975,0.010656472,-0.023116898,0.013786512,0.025303148,0.013440058,-0.037751626,0.019425362,0.02879159,-0.009897855,0.0102861235,-0.012245386,-0.022686817,-0.0011834718,-0.0034496146,-0.0019682217,-0.019771818,-0.003987217,0.02941282,-0.043175437,0.042840928,0.02136073,0.01495729,-0.0064810943,-0.054620393,0.0035660951,-0.008291022,0.0013888059,0.002558091,0.012794934,0.007436832,-0.009067559,-0.048933756,-0.037871096,-0.034932204,0.003906577,-0.008279075,-0.0044919658,0.011928798,-0.012436533,-0.01819485,0.017537782,-0.0067140553,-0.0095514,0.014383848,-0.028361507,-0.009348307,0.019867392,-0.00005240689,-0.007203871,-0.026736755,0.0075981123,-0.034310974,-0.033761423,0.034191504,0.04534974,0.025374828,-0.010680365,-0.0047368733,-0.00019086747,0.008058061,0.006355654,0.020034645,-0.00789678,0.023033272,0.0064691477,0.030774744,0.018099276,-0.009258706,0.02288991,0.018553253,0.035171136,0.003578042,0.018385999,0.0034526014,0.041263964,0.008004301,-0.037894987,0.007854966,0.011522609,0.017872289,0.012293172,-0.023391673,0.031802163,0.006642375,-0.05514605,-0.0151245445,0.026760647,0.012591841,0.017943969,-0.011355355,0.024287676,0.009115346,0.02198196,-0.007490592,-0.05500269,-0.03228003,-0.027716385,0.006504988,0.005824025,0.0016710472,-0.023284152,0.010292097,0.030726958,-0.018087331,0.0026626247,0.002738785,0.0011521116,-0.0040469505,0.03371364,-0.014790037,-0.01717938,-0.009939669,-0.0010528045,-0.019126695,-0.06336539,-0.0060211457,0.034024253,0.01575772,0.008756944,0.014945344,-0.01878024,-0.013643151,-0.015244012,-0.022149215,-0.0024908907,0.009951616,-0.016199749,-0.011241862,-0.028146466,0.009419987,-0.009031719,0.021659398,-0.010823726,0.009969536,-0.024849173,0.0009460307,-0.025303148,0.011331461,0.0045964997,0.012048265,-0.034263186,-0.008661371,-0.013428111,-0.0076100593,-0.030201303,0.017191326,0.020739501,-0.01870856,0.06231408,0.0074129384,-0.033498596,-0.015351532,-0.0003591482,0.030105729,0.00008796704,0.005205782,0.020404994,-0.013929873,-0.0018218744,0.010985007,-0.009832148,-0.0011946717,-0.01561436,-0.029508393,0.020488622,0.021241264,-0.0069649364,-0.041694045,0.029436713,-0.021635506,0.0076996596,-0.0042918585,-0.02774028,0.012131892,-0.01324891,0.0022191028,-0.047524042,-0.018469626,-0.0327579,0.022471776,-0.003996177,0.01947315,-0.042960398,0.01867272,-0.0089719845,0.003476495,0.027788065,-0.01903112,-0.025542082,0.059016787,-0.0024445972,-0.0124962665,0.0051072217,-0.008028194,0.025422616,0.0005271489,0.014383848,-0.006015172,0.007723553,0.0012185652,0.017788662,0.0074009914,-0.018099276,-0.002989666,-0.022591243,-0.005635864,-0.06895646,0.021492146,-0.025303148,0.0015187265,0.00926468,0.0012596321,0.040451586,-0.011014874,-0.036819782,0.026521713,0.0027955319,0.014527209,0.0155426795,0.010799833,0.006272027,-0.012866615,0.026234992,-0.015626308,-0.00944388,-0.00048346873,-0.01878024,-0.01797981,0.04374888,0.020010753,-0.057009738,-0.0068872827,0.010793859,-0.01088346,0.007245684,-0.02900663,0.041001134,-0.011433009,-0.022029748,0.004199271,-0.020321367,-0.037679948,0.01011887,0.015602414,0.005104235,0.010895407,0.022077534,0.0036736156,0.014622782,0.010787886,0.014395795,-0.0048414073,0.00045397528,0.0010289111,-0.00048309538,-0.011875037,-0.0046920734,0.033164088,0.006708082,0.02136073,0.018995281,0.0071680304,0.023785915,0.015255959,-0.010250283,-0.021970013,-0.00012730721,0.008595663,0.01721522,0.004754794,-0.014933397,0.026067737,-0.019198375,-0.010053162,-0.01488561,-0.018612986,-0.021133743,-0.055671703,-0.011355355,-0.012424586,-0.008058061,-0.026808435,-0.014634729,-0.01645063,0.02351114,0.019461203,0.0116241565,0.006809629,-0.0053700497,0.027668597,-0.030631384,0.025661549,0.044131175,-0.020297473,0.0035571351,-0.016080283,0.026354458,-0.0026043844,-0.0027238517,0.053664654,-0.0151364915,0.0062600803,0.0052296757,0.03395257,0.021707186,-0.006122693,-0.03486052,-0.002272863,-0.012472373,-0.049459413,-0.025685443,-0.012603787,-0.01171973,0.0049997014,-0.0049220477,0.015590467,0.02416821,0.007962488,-0.0028731856,-0.011731677,0.009145212,-0.00016632071,0.012036318]},{"id":"interface-WebSocketShardOptions","type":"interface","source":"main","text":"Interface: WebSocketShardOptions\nProperties: intents: number, numShards: number, presence: GatewayPresenceUpdateData, shardId: number, token: string, url: string, version: string, WebSocket: WebSocketConstructor","meta":{"url":"/docs/typedefs/WebSocketShardOptions"},"embedding":[-0.046026915,-0.020677667,0.004757693,0.010258104,0.0030354513,-0.009531532,0.015414065,-0.018933898,0.039267115,0.021506496,0.020731486,0.010586406,0.029256584,-0.0112268645,0.023939162,-0.024262084,-0.039482396,0.0409463,0.0068620574,0.025295427,-0.009730667,0.007927694,0.017857496,0.039245587,-0.048739444,0.013767172,0.030871186,0.011904997,-0.028761439,-0.0039477013,0.04180742,-0.025338484,0.044175506,0.0466297,-0.02060232,0.014972741,0.00724418,0.0076908865,-0.019472098,-0.009450803,-0.03724348,-0.0018662106,-0.026759334,0.03128022,-0.028524632,-0.0024084477,-0.029988537,-0.021043643,-0.007367966,-0.0022765885,-0.004854569,-0.0055031013,-0.011722009,0.06286183,0.014509888,-0.010737102,0.012357086,0.019536681,0.019601265,0.015403301,-0.0028309352,-0.014897392,-0.015284897,-0.0041818186,0.018320348,0.00031081084,-0.04150603,0.069234125,-0.031732306,0.02996701,0.04563941,0.025618348,0.007265708,-0.0068028555,-0.0026923486,0.038319882,-0.029902425,-0.0024622676,0.02559682,0.010532586,-0.027082253,0.006221599,-0.07767311,-0.046457477,-0.011722009,-0.031323276,-0.033777468,-0.011334505,-0.013089038,0.029235056,-0.02036551,0.0024192117,-0.061397925,-0.02342249,-0.0064799353,-0.033174686,0.0498589,0.0083367275,-0.0150480885,-0.0023667372,0.031969115,-0.029192,-0.10764012,0.01416544,-0.0011732773,0.002221423,0.012131042,-0.013304318,-0.05011724,-0.0057695103,-0.082925946,-0.004520885,0.012970635,0.029170472,0.01765298,-0.026630165,-0.009456185,0.007879256,0.0007406986,0.011097697,-0.008282907,-0.003624781,0.056231197,0.026996141,-0.019999534,-0.020247106,-0.005451972,-0.019073829,-0.051279753,-0.014413012,0.02428361,-0.01220639,0.009989003,-0.03530596,0.02063461,0.003554815,-0.03801849,0.01682415,-0.023831522,-0.03649,-0.02962256,-0.024003746,0.08731767,-0.016006086,0.004405172,0.021700248,-0.009090208,0.041010886,0.017050195,0.008406693,-0.0054815733,0.041075468,0.0348754,-0.032292034,-0.00081671943,0.033389963,0.0070773377,0.047835268,-0.014391484,-0.054638125,0.060063187,-0.006340003,-0.014789753,-0.029041303,-0.026522525,0.010634844,0.01765298,0.037394177,-0.048222773,0.0032695686,0.019795017,-0.053088106,-0.0028336262,-0.014509888,-0.01639359,-0.028115598,0.029256584,-0.010963147,-0.009504623,0.03117258,0.028460048,0.023078041,0.018255765,0.0082021775,-0.006340003,0.013228971,-0.030569794,0.020591555,0.051796425,-0.022195393,-0.040558796,0.052786715,0.014251552,0.011388324,0.04281924,-0.008040717,0.0049810465,0.007879256,-0.0057587465,-0.045294963,-0.022259977,-0.006652159,0.022303032,-0.0048438055,0.013767172,0.033540662,0.0030246873,-0.025295427,0.0021824033,0.030763546,0.048868615,0.0005287821,0.016102962,-0.0136272395,-0.024800284,0.031000353,0.035564296,-0.033303853,-0.02342249,-0.039590035,-0.015693929,0.019030772,0.036403887,0.015123437,0.018008191,0.038276825,0.014305372,-0.019482862,0.008659648,-0.0037727861,-0.067081325,0.009574588,-0.031646196,-0.029019777,-0.047878325,0.018427989,0.022023167,-0.013411959,0.012077222,-0.057006206,-0.019945715,-0.04086019,-0.0085143335,-0.009596117,0.046543587,0.0033099337,0.005438517,-0.0015271442,-0.04585469,0.00093445077,0.019708905,-0.012615422,0.012389378,-0.0035144498,-0.012669242,-0.057221487,-0.04303452,0.02820171,0.024305139,0.009246286,0.035133734,-0.029278113,0.019848838,0.019235289,-0.024348196,-0.04925612,0.0073464382,0.024326667,-0.0046635084,-0.047921382,0.040278934,0.051495034,0.005384697,-0.011926525,-0.026113493,0.007965369,-0.022496784,0.024025274,-0.0058610043,0.028589215,-0.039848372,-0.0224322,-0.037760153,0.06746883,0.0029116652,0.019676615,0.060622916,0.045553297,0.029299641,0.05489646,-0.0060493746,0.008234469,0.0041387626,-0.014423776,0.012453962,0.040257405,0.062129878,-0.012712298,0.030074649,-0.014983505,0.056015916,-0.042690072,-0.00045814324,-0.04129075,0.026565582,-0.012464725,0.039159477,-0.0077608526,0.031667724,-0.02723295,0.004483211,-0.038190715,-0.05760899,-0.004472447,-0.051365864,-0.028718384,0.039181,0.055757582,-0.011958817,-0.00740564,0.0030515974,-0.006135487,-0.022066224,0.015855389,-0.013960923,-0.043378968,0.047835268,-0.045165792,0.021592608,0.0076585943,-0.0057372185,-0.040257405,0.012044929,-0.0057049263,-0.011775829,-0.014940448,0.013185915,0.0036409271,-0.0007057155,0.019073829,-0.006447643,-0.044735234,-0.029428808,-0.014305372,-0.010268867,0.0031511644,-0.0058610043,0.0033341527,-0.006366913,0.017136307,-0.016705746,-0.037674043,-0.10643455,-0.02492945,-0.032550372,-0.075391136,0.027362118,-0.06049375,-0.042194925,0.027577398,-0.016167546,0.022518313,0.030914241,0.032292034,0.0187832,-0.0033072426,-0.020139467,0.004897625,-0.05218393,-0.05394923,0.018072776,0.025467653,-0.023336377,-0.01693179,-0.0041522174,0.004572014,0.0006555956,0.0017020594,-0.019310636,-0.030591322,0.037178896,0.034789287,-0.04934223,-0.015403301,0.010952382,-0.016038377,-0.04693109,0.077716164,-0.008874928,0.009601499,0.006409969,0.014423776,-0.04042963,-0.012712298,0.011495965,-0.005309349,0.0017356969,-0.014875865,0.0078469645,-0.034164973,0.017243948,0.022712065,-0.015855389,-0.012421669,-0.0077124145,-0.023465546,0.034078863,0.016156781,-0.0034471748,-0.04641442,0.010306542,-0.021635665,0.017082486,0.032421205,0.01971967,-0.03136633,0.0005617469,-0.06049375,0.030419098,0.023788467,0.01813736,0.0336483,-0.060063187,-0.01089318,0.017749855,0.0043674977,0.023723882,0.0033933548,-0.014746697,-0.02492945,-0.02830935,0.046457477,0.09515387,0.030440625,0.03913795,-0.028524632,0.012174098,0.0016590033,-0.042453263,-0.019816546,-0.05140892,-0.039590035,-0.0078362,0.035241377,-0.038212243,0.0077554705,-0.0031538554,-0.04049421,-0.01813736,-0.058039553,-0.03780321,-0.03179689,-0.021807889,0.04891167,-0.0047738394,-0.024886396,-0.043228272,0.0252739,-0.0043378966,0.034466367,0.0021057099,-0.05097836,-0.06716743,0.015241841,-0.00378355,0.027426703,-0.010080497,0.0028201712,-0.00043762435,0.0352629,-0.003939628,0.009983621,-0.017685272,-0.012658478,0.025360012,-0.003441793,0.028115598,0.055929806,0.037717097,0.0057964204,0.0067867097,-0.021807889,-0.013272027,0.01427308,0.025919741,0.076467544,0.028007958,0.00871885,-0.05033252,0.04017129,-0.0065768114,0.015532469,-0.010392654,-0.008465895,-0.0134011945,-0.01427308,-0.055714525,-0.047146372,-0.0017141689,0.012873759,0.00010335133,-0.041441444,-0.0047280923,0.018115832,0.0006135487,0.017620688,-0.0150911445,-0.0174377,-0.025962796,-0.011657425,0.010177373,-0.0077447067,0.034272615,0.0021635664,-0.01590921,0.011517493,0.0025510709,0.05872845,0.012184861,-0.008794198,-0.0140255075,0.020537734,0.009628409,-0.009590735,0.013218206,0.009606881,-0.03855669,-0.0077285604,0.015823098,0.00901486,-0.02299193,-0.026048908,-0.038750444,0.008821107,-0.008003043,0.03517679,0.017104015,-0.043852586,0.027857263,-0.004526267,-0.010537968,0.0067920913,-0.017136307,0.024240555,-0.034229558,0.019536681,0.03082813,-0.012453962,0.0044320817,0.028847553,0.028416991,-0.02130198,0.027254479,-0.02299193,0.034164973,-0.0069858436,0.0041172346,0.00011117206,-0.03356219,-0.01856792,-0.012152569,0.0020909093,0.029579505,-0.018148124,-0.036533058,0.0064153513,-0.0012324793,0.0268885,-0.012432434,-0.02658711,-0.022109281,-0.001344156,-0.0057748924,0.054207563,0.0302684,-0.015607817,-0.022044696,0.030311458,-0.007292618,-0.006426115,-0.012507781,-0.024800284,-0.034358725,0.04273313,0.0016536213,-0.008573536,0.021592608,0.0055919043,0.06307711,0.015026561,0.011635897,0.009057916,0.012497018,0.014671348,0.021323508,-0.034466367,0.00716345,0.028890608,0.026436413,0.03603791,0.02691003,-0.020882184,-0.0297302,-0.0213558,0.026199605,0.041893534,0.02374541,0.034681648,0.019267581,0.026802389,0.014520652,0.026070436,-0.034681648,-0.043744944,-0.022410672,0.037006672,-0.029235056,-0.003632854,0.012087985,-0.03082813,-0.0038319882,0.016759567,0.006969698,0.01792208,-0.032270506,0.012497018,-0.012647714,-0.032098282,-0.012766118,0.0005516556,0.0012775536,-0.01601685,0.006372295,-0.00047765303,-0.06458407,0.03649,0.016877972,0.022755122,-0.008126829,-0.011173044,0.0040418864,0.0065283733,0.012507781,-0.0055488483,0.04010671,0.027857263,-0.047103316,0.019009246,-0.007184978,0.009612262,-0.028051015,0.0076908865,0.056274254,-0.001371066,0.023939162,-0.015919974,-0.027685039,-0.0007999006,-0.0016442029,-0.0049245353,0.01065099,0.002693694,0.025360012,0.029364225,0.004214111,0.03061285,0.01279841,0.0018473736,-0.0085573895,0.031538554,0.02331485,0.040601853,0.021883236,-0.0030973444,0.024025274,-0.006130105,0.002369428,-0.04563941,-0.029385753,0.031538554,0.024585003,0.029837841,-0.033755943,0.010015913,0.039396282,-0.011420617,0.0325719,0.021097463,0.03625319,0.029170472,0.018158888,0.0039503924,0.05097836,-0.024348196,-0.008390548,0.040042125,0.0341865,0.024262084,-0.013713351,-0.03050521,-0.020688431,0.0352629,-0.0013596292,-0.03259343,0.000011405227,-0.0118942335,-0.009542297,0.04105394,0.0040741786,0.005764128,0.014918921,0.020440858,-0.030548265,-0.026436413,-0.013594947,0.00882649,-0.0039988304,0.016264422,-0.006953552,0.011280685,0.0076047746,-0.006404587,-0.04174284,0.045165792,-0.018847784,-0.000033427303,0.05304505,0.0195905,0.007367966,-0.0004628525,0.022346089,0.011205336,0.0032749507,0.0060547567,-0.025553765,0.027878791,-0.02114052,0.014746697,-0.009520768,-0.004442846,0.024089858,-0.0148651,-0.017523812,0.030871186,0.007427168,-0.04805055,0.028761439,0.002666784,0.0016011468,0.041678254,-0.029880896,0.0041656727,-0.009843688,0.01220639,0.017071722,-0.010037441,-0.0050698495,-0.03397122,-0.024003746,0.0007696269,-0.049686678,-0.018718617,-0.020150231,0.010554113,-0.0056403424,0.008207559,-0.023034986,-0.02766351,0.033476077,0.06411046,0.01607067,-0.016221367,-0.0195905,-0.0008469932,0.029450336,-0.053346444,-0.041850477,-0.014154675,-0.024003746,-0.049643625,0.015274133,-0.03463859,-0.0076478305,-0.023034986,0.035908744,-0.030010065,-0.022733593,-0.0071419217,-0.009789869,0.0060439925,-0.041161582,0.027921846,-0.026823917,-0.050806135,-0.013702587,-0.006205453,0.0066360133,-0.05373395,0.011399088,0.052872825,0.010688663,-0.0025012873,-0.045467187,0.016404355,0.019741198,-0.00925705,-0.034358725,0.0091225,0.010053587,-0.006340003,-0.0066629234,0.03265801,-0.03922406,0.01226021,0.01628595,-0.00042786947,0.0070988657,0.0033018608,0.0348754,0.0030193054,0.058599282,-0.030526739,-0.018933898,0.021646429,0.018158888,0.022733593,-0.02637183,0.0025604893,0.014133148,-0.015898446,0.000017659708,0.027577398,-0.03638236,0.007174214,0.0313448,-0.022948874,-0.016135253,0.020343982,-0.0050563947,-0.0069374056,0.016458174,-0.0003141746,-0.012001873,-0.021861708,0.013239735,0.005330877,-0.004897625,-0.018417224,0.017663743,-0.0004631889,0.012970635,0.02070996,0.028007958,-0.012421669,0.06303405,-0.012087985,-0.014499124,0.014369956,0.027039198,-0.00064718624,-0.03356219,0.00089408574,-0.025446124,-0.0028982102,-0.022410672,0.008229087,0.031689253,0.0029493393,0.020559262,0.056747872,-0.014111619,0.026113493,0.018632505,-0.0354136,0.0041683638,0.025316956,0.008772669,-0.0039719203,-0.0034956129,0.04520885,0.023185682,0.007179596,-0.007841582,0.009208612,0.0224322,-0.0015311807,-0.010581024,-0.022690536,0.012195625,-0.0043217507,0.0089126015,0.0049702823,0.005470809,0.015209549,-0.004526267,-0.033626772,0.023185682,0.029536448,0.026802389,0.033497605,-0.035241377,-0.0029331932,0.02309957,-0.0060439925,0.029041303,-0.008874928,0.04869639,-0.0034148828,0.010311923,0.009558443,0.047103316,-0.016856443,-0.0006529046,0.033260796,-0.023379434,-0.0025725989,0.004547795,0.0059363525,-0.008288289,0.03782474,-0.030483682,0.006038611,0.025037091,0.033820525,-0.023379434,-0.0096607,-0.03287329,0.022905817,0.025769044,0.014240787,-0.011711245,-0.0055919043,0.003611326,0.030376041,-0.006237745,-0.042173397,-0.008939512,0.0104249455,-0.0018783201,-0.013788699,-0.003654382,0.024864867,0.022066224,-0.018837022,0.01285223,-0.005260911,0.002564526,-0.001077074,-0.026953086,-0.030978827,0.011948053,-0.013153623,0.044261616,-0.04650053,0.01395016,0.024563475,0.024800284,-0.0045935423,0.044950515,-0.0009701066,-0.008347491,-0.012787646,-0.01776062,-0.0139824515,-0.020214815,0.003724348,0.005083305,-0.027060727,-0.03211981,0.015155729,-0.0068136198,0.0187832,0.036016382,-0.032744125,-0.024068331,0.03394969,-0.014531416,0.022367617,0.001031327,0.0146498205,-0.0067113615,0.091364935,0.0140685635,-0.00933778,0.00541968,-0.0070558097,-0.0028524632,-0.02200164,0.012109513,-0.0104249455,-0.008643501,-0.051925592,-0.015919974,0.028589215,-0.0037216572,0.017007139,-0.019041536,-0.005303967,-0.017276239,-0.020430095,0.006103195,-0.0030004682,-0.017114779,-0.03672681,0.014122384,0.013347375,-0.0009929801,0.011775829,-0.0017235874,-0.01454218,-0.0056403424,-0.013325847,-0.0035951799,-0.028632272,-0.032205924,0.014832809,-0.007884638,-0.013304318,-0.00694817,0.02908436,0.023465546,-0.0033153156,0.013713351,-0.045467187,-0.001114748,-0.046758868,-0.00017407426,0.029450336,0.009865217,-0.0077177966,-0.019741198,0.029773258,0.020989824,-0.0148651,0.011086932,0.009692993,0.020300927,-0.035112206,-0.0010864924,-0.008810344,-0.025123203,-0.023013458,0.009736049,0.0059578805,0.014639056,-0.016038377,0.011388324,-0.0048142043,-0.0015271442,0.026651694,-0.0069212597,0.014423776,0.00007219456,0.0045693233,0.031064939,0.003939628,0.0060009365,0.051925592,0.039181,-0.005645724,0.006151633,0.033476077,0.023487074,0.0016455483,-0.01607067,-0.00224026,-0.014143911,0.010085879,0.0037216572,0.008605828,0.011549785,-0.013788699,-0.001813736,-0.025639877,-0.015306425,-0.017168598,0.04477829,-0.013917867,-0.025769044,0.0040607234,0.027878791,0.015037324,-0.0041737454,-0.04010671,-0.02047315,0.013681059,-0.007045046,0.009348544,0.010010531,-0.045079682,-0.015123437,0.008013807,0.0068136198,-0.037760153,0.015209549,0.017556103,0.021334272,-0.043723416,0.00882649,0.0041549085,-0.02439125,-0.005543466,-0.0038239153,0.03573652,-0.016845679,0.020785308,0.022259977,-0.024864867,-0.040601853,0.0040472685,-0.026027381,0.00038044056,0.03584416,0.011539021,-0.02658711,0.01290605,0.011840413,-0.01607067,-0.0024165206,-0.034552477,-0.011818885,-0.010527204,0.0028713,0.009117118,0.00861121,0.010850124,0.0028766822,0.029105889,-0.016135253,0.009606881,0.016102962,0.012174098,-0.016242893,-0.03573652,0.023766939,-0.03179689,-0.0087780515,-0.00025228152,0.008616592,-0.009057916,-0.023250265,-0.008083773,-0.010274249,0.011678953,-0.010263485,0.047878325,-0.019030772,0.053131163,0.0010790922,-0.010688663,0.01982731,0.020774543,0.007884638,0.007943841,-0.009908273,-0.011205336,-0.03638236,-0.019461334,0.00020249798,-0.020774543,-0.022195393,-0.0011618405,-0.018072776,0.008261379,0.0070988657,-0.008638119,-0.009655318,0.012109513,-0.0052743657,-0.0027542415,-0.0034498658,-0.0029035923,-0.019095358,0.031129522,0.005352405,0.044950515,0.046888035,0.026716277,-0.023400962,0.02353013,0.009779105,-0.04693109,0.028718384,-0.013035218,0.020666903,0.01075863,0.0015930737,0.019159941,-0.027297534,-0.029041303,-0.018427989,-0.0018070085,-0.007863111,0.016511993,-0.021452677,0.010726338,-0.0088695455,0.007454078,0.007158068,-0.008751142,-0.017696036,-0.016027614,0.010586406,0.02833088,0.052872825,-0.007981515,-0.010134317,-0.017620688,0.022733593,-0.0006206126,0.054121453,0.011495965,0.037092786,0.03192606,0.004644671,0.0029385753,0.026651694,0.0040203584,-0.028675327,-0.0088534,0.01808354,0.025424596,0.002849772,0.00041744183,-0.016372062,-0.012163334,-0.014047036,0.003452557,-0.0030031593,-0.012497018,0.03629625,-0.022109281,0.014197731,0.011183809,0.022948874,0.0039611566,-0.052097816,0.014520652,-0.019795017,-0.0049971924,0.01945057,-0.004531649,0.0038319882,0.00450743,-0.045596354,-0.01977349,-0.0058610043,-0.012077222,-0.026522525,-0.00046621627,0.003565579,-0.028416991,-0.029601032,0.023379434,0.005398152,-0.0038239153,0.013648767,-0.00023714463,-0.001114748,0.0029466483,-0.028503103,0.0069212597,-0.030225346,0.0011867323,-0.017556103,-0.02538154,0.02087142,0.027405174,0.022539841,0.019536681,0.016081434,-0.0113129765,0.011065404,0.023121098,0.012809174,-0.003713584,0.015435593,0.013304318,0.017136307,0.024305139,-0.002849772,0.023874579,0.04139839,0.035908744,-0.02462806,0.0014719786,-0.009074062,0.020892948,-0.012884522,-0.047017206,-0.009875981,0.021495732,-0.0038669712,0.0014033581,-0.018976953,0.01454218,0.008837254,-0.05132281,-0.03530596,0.017889788,0.007922313,0.045251906,-0.014552944,0.001077074,0.020387039,-0.005538084,-0.02114052,-0.036446944,-0.03082813,-0.0074917525,-0.023659298,0.027211422,-0.0119803455,-0.003678601,-0.0058663865,0.015231077,-0.014348428,0.007195742,-0.0051102145,-0.021129755,-0.002529543,0.043508135,-0.023594715,-0.0059847906,-0.0043163686,-0.01891237,-0.03388511,-0.0658327,0.011657425,0.012723062,0.0393317,0.010414181,0.022518313,-0.051365864,-0.019870367,-0.010591787,-0.018320348,-0.017179362,-0.002199895,-0.0065929573,-0.038255297,-0.014671348,0.014843573,-0.034078863,0.018395696,0.00029046013,0.021054408,-0.03657611,0.007018136,0.020021062,0.017028667,0.025639877,0.0174377,-0.0352629,0.013508835,-0.024434308,0.007228034,-0.034939982,0.016888734,0.017114779,-0.011248392,0.078146726,0.0123355575,-0.01776062,-0.019063065,0.0058986787,0.006544519,0.043378968,0.012087985,-0.009956711,-0.04008518,0.018610977,-0.011689717,-0.011086932,0.017997429,-0.013939396,-0.011345268,0.013272027,0.020645374,-0.019547446,-0.05433673,0.02951492,-0.028739912,0.010134317,0.008616592,-0.043378968,-0.004671581,-0.011722009,0.00074002583,-0.014509888,0.0014894701,-0.014682112,0.019525917,0.013724115,0.018750908,-0.021915529,0.016673455,0.014014743,0.0049891197,0.0224322,-0.054681182,-0.037609458,0.068028554,0.0019429042,-0.014176204,-0.008595063,0.015295661,0.0025524164,-0.0028766822,0.012195625,0.004461683,0.033605244,-0.024649587,0.027039198,-0.010338834,-0.028051015,0.003600562,-0.016964084,-0.018018955,-0.0662202,0.033691358,-0.03410039,0.014951212,0.01389634,0.020053355,0.054422844,0.0068405294,-0.014552944,0.079998136,0.02777115,0.00743255,0.031409387,0.013907104,-0.011851178,-0.009811397,0.020860655,-0.0059148245,0.0030246873,-0.0077070324,-0.0050779227,-0.016468938,0.04443384,0.032507315,-0.04279771,-0.029923953,-0.0075240443,-0.015392537,-0.021172812,-0.057522878,0.030806603,-0.018277293,-0.020225579,0.017932843,-0.016307479,-0.011657425,0.01633977,0.008589681,0.0014598691,0.008643501,0.003619399,-0.013541127,0.023573186,-0.0010703465,-0.0013313737,-0.012572366,-0.017243948,-0.009375454,-0.0042060376,0.010548731,0.016102962,0.005414298,0.03205523,0.012658478,0.004760384,0.022259977,0.022033932,0.023616241,-0.0057748924,0.012464725,0.0047227102,-0.001441032,0.023357905,0.0040930156,-0.01835264,0.02548918,-0.018148124,-0.009009478,0.01977349,-0.0077285604,-0.03259343,-0.040365044,-0.020720722,0.022173865,0.017426936,-0.016651927,-0.008584299,-0.025661405,0.03726501,0.04934223,0.035908744,-0.034789287,-0.031452443,0.010850124,-0.024369722,-0.0032076756,0.0263503,-0.0313448,0.0010575642,-0.03625319,0.026027381,-0.015252605,0.025876684,0.055714525,0.024262084,0.0021824033,0.015521705,0.008831872,-0.0030623614,-0.01736235,-0.039719205,-0.035349015,-0.00077500887,-0.040278934,-0.011969581,0.0034687028,-0.011495965,0.043099105,0.02712531,0.029428808,0.04684498,0.014714404,-0.0077823806,-0.006318475,-0.01617831,-0.0006128759,0.013562655]},{"id":"enum-APIErrorCode","type":"enum","source":"main","text":"Enum: APIErrorCode\nMembers: Unauthorized=UNAUTHORIZED, Forbidden=FORBIDDEN, MissingAuthorization=MISSING_AUTHORIZATION, InvalidAuthToken=INVALID_AUTH_TOKEN, InvalidToken=INVALID_TOKEN, TwoFactorRequired=TWO_FACTOR_REQUIRED, SudoModeRequired=SUDO_MODE_REQUIRED, NotFound=NOT_FOUND, UnknownUser=UNKNOWN_USER, UnknownGuild=UNKNOWN_GUILD, UnknownChannel=UNKNOWN_CHANNEL, UnknownMessage=UNKNOWN_MESSAGE, UnknownRole=UNKNOWN_ROLE, UnknownEmoji=UNKNOWN_EMOJI, UnknownSticker=UNKNOWN_STICKER, UnknownWebhook=UNKNOWN_WEBHOOK, UnknownInvite=UNKNOWN_INVITE, BadRequest=BAD_REQUEST, ValidationError=VALIDATION_ERROR, InvalidRequest=INVALID_REQUEST, InvalidFormBody=INVALID_FORM_BODY, RateLimited=RATE_LIMITED, SlowmodeRateLimited=SLOWMODE_RATE_LIMITED, InternalServerError=INTERNAL_SERVER_ERROR, BadGateway=BAD_GATEWAY, GatewayTimeout=GATEWAY_TIMEOUT, ServiceUnavailable=SERVICE_UNAVAILABLE, BotsCannotSendFriendRequests=BOTS_CANNOT_SEND_FRIEND_REQUESTS, BotAlreadyInGuild=BOT_ALREADY_IN_GUILD, BotApplicationNotFound=BOT_APPLICATION_NOT_FOUND, BotIsPrivate=BOT_IS_PRIVATE, NotABotApplication=NOT_A_BOT_APPLICATION, CannotSendEmptyMessage=CANNOT_SEND_EMPTY_MESSAGE, FileSizeTooLarge=FILE_SIZE_TOO_LARGE, MaxEmojis=MAX_EMOJIS, MaxStickers=MAX_STICKERS, MaxWebhooks=MAX_WEBHOOKS","meta":{"url":"/docs/typedefs/APIErrorCode"},"embedding":[0.008881612,-0.0020769953,0.017801896,0.02629679,0.002170452,-0.008133958,-0.03464989,0.02451789,0.021372586,0.036970194,0.022158913,-0.021269463,-0.030395996,-0.0039445185,0.015352685,-0.0008515842,-0.046302974,0.026245227,-0.0476436,0.027792098,0.03599051,0.030988963,0.0051272297,0.05076312,-0.0019351988,0.037537377,0.022919457,-0.0028182038,0.021037431,-0.009635711,-0.0036158087,-0.027766317,0.00851423,-0.013522222,-0.01679643,-0.011820665,-0.021282353,0.02563937,0.03472723,-0.032767862,0.0031259665,-0.029751467,0.014721046,0.024917498,-0.079354435,-0.011601525,-0.02758585,-0.028101472,-0.0136382375,-0.0023186938,-0.05640919,0.049602967,-0.022133132,0.09255439,0.017995255,-0.0024604902,-0.020573372,-0.00906208,-0.036867067,0.018936267,0.013406207,-0.024762811,-0.012768123,-0.010673403,0.023512425,-0.006332499,-0.014901514,-0.011549963,0.020650715,0.089357525,-0.010125553,0.015584716,0.02516242,-0.00015811106,0.02075384,0.009706609,-0.0061391406,0.046328757,-0.012548983,-0.059038874,-0.014953077,0.021282353,-0.0737857,-0.064916976,0.00062317913,0.008668917,-0.075641945,-0.056667004,0.02343508,-0.029854592,-0.05372795,-0.00091039744,-0.03975456,0.0004914535,0.0015710399,-0.049577184,0.012723005,-0.01657729,-0.002974502,0.057285752,0.04313189,-0.024144063,-0.07120758,-0.017518302,-0.004792074,-0.0112405885,-0.034598324,-0.00839177,0.010563833,-0.011762657,-0.054088887,0.029854592,-0.06424667,-0.011859337,-0.010989223,-0.037047535,-0.0033708876,0.010879653,0.028127253,-0.0026747962,-0.014553469,0.002848819,0.061771676,-0.046560787,-0.013290191,0.045555323,-0.023099925,0.028849125,-0.01987728,0.019928843,0.0072316173,-0.003648035,0.060224805,-0.024788592,-0.030009279,0.00047252045,-0.016293697,-0.01084098,-0.051459208,-0.02317727,-0.0050015463,-0.03650613,-0.00093376165,0.041198306,-0.04839125,-0.013973393,-0.02254563,-0.025922963,-0.04730844,-0.005678302,-0.019297203,0.011788438,0.0027489169,-0.0140636265,-0.0016459663,-0.059966993,0.018291738,0.04532329,-0.024582343,-0.0039993036,-0.029854592,-0.044910792,0.023499534,-0.0064549595,-0.012942146,-0.022571411,0.053418577,-0.019825717,-0.04993812,-0.014476125,0.032071773,-0.0038865109,-0.04480767,-0.030550683,-0.016693305,-0.0327163,0.018678455,-0.009474579,-0.02496906,-0.042074863,0.0029664454,-0.010119108,0.005803985,-0.052670922,-0.03292255,0.004150768,0.039857686,-0.008385325,0.020354232,-0.015855419,0.011382385,0.015533153,0.016835103,-0.004643833,0.035423324,-0.06434979,0.017711662,-0.035500668,0.03645457,-0.0015976267,0.03338661,-0.039857686,0.08255129,-0.003867175,-0.0392905,-0.01702846,-0.015997214,-0.030189747,-0.02520109,0.009036299,0.055481073,-0.03377333,0.0049274256,0.0012262168,-0.028565533,0.0023767012,-0.026219446,-0.02253274,-0.028101472,-0.008088841,-0.06563885,0.059760746,-0.025600698,0.007895483,-0.01986439,0.013129059,0.027508505,-0.033876453,-0.003918737,0.013767143,-0.045142822,0.049963903,-0.024762811,-0.051691238,0.0016322702,-0.033309266,0.075796634,0.057337314,0.019039392,0.02936475,-0.0014671095,-0.0033870009,0.002589396,0.039238937,-0.021372586,-0.04047643,0.02451789,-0.022919457,-0.01746674,0.0003645618,0.0733732,0.0525678,-0.0043119,-0.006590311,0.0158812,0.0013929887,0.033051457,0.00174184,0.017737443,-0.004959652,0.015971433,0.03642879,-0.02828194,-0.012826131,-0.03583582,-0.0024621014,0.015765183,0.025278434,-0.017299162,0.022146022,0.0120011335,0.005378596,0.03593895,-0.031117868,-0.028694438,-0.0011069789,0.0014638869,0.016886665,-0.007663452,-0.012993708,0.0010441373,0.030988963,0.0070898207,0.047231097,0.014179641,0.01635815,0.038800657,-0.030550683,0.0027311924,0.003757605,-0.008656027,-0.0014308548,-0.008868721,0.0074572023,0.010776528,0.009532587,0.019374548,0.007160719,0.05347014,0.0062744915,0.003503016,-0.03557801,-0.046973284,-0.029545218,-0.008559347,0.0029696682,0.013341754,-0.016061667,-0.001077975,-0.033025675,0.018730018,-0.007837474,-0.05640919,-0.010666958,-0.016951118,-0.035036605,0.020251106,-0.011350159,0.08863565,-0.015159326,-0.009274775,-0.046535008,-0.0008475559,-0.031272557,0.024028048,-0.044446733,0.022803443,0.06615447,0.023744455,0.0013390094,-0.012316952,-0.06202949,0.00248466,0.019103844,0.00535926,0.0033289932,-0.010364029,0.07223883,0.03426317,0.009680828,0.014115189,-0.010299576,0.0075474367,0.0069866963,0.028488189,-0.03890378,-0.028153034,0.029519437,-0.0059908987,0.032458488,-0.027534286,0.039986588,-0.018923376,-0.04797875,-0.026786633,-0.0223136,0.023770235,0.003831726,-0.010538052,0.07089821,-0.015752293,0.0075925537,0.018536659,-0.013999173,0.024582343,0.013844486,-0.038207687,-0.061565425,0.019052282,-0.035500668,-0.031453025,-0.008069505,-0.04797875,-0.027302256,0.016306588,0.037021756,-0.023306174,0.04998968,-0.006277714,0.0039509637,0.017647209,0.0150948735,0.016667524,0.005088558,0.04638032,0.0061198045,-0.013651128,0.010344693,-0.059606057,0.0219011,0.023473753,-0.0024475995,-0.0050273277,-0.04442095,-0.013199957,0.0004733261,0.017144475,0.035810042,0.013071052,-0.008295091,0.02959678,-0.013199957,0.0044246926,0.032097552,0.010847426,0.035474885,0.035964727,0.011118128,0.042951424,0.023164378,0.042590488,-0.0032210345,-0.017376507,-0.004885531,0.07492007,-0.04351861,0.05878106,-0.013303082,0.0154687,0.043879546,0.0023831467,0.0027553623,-0.051459208,0.0041894396,-0.007205836,-0.0023428635,0.008817159,-0.04844281,0.015507372,-0.06697947,-0.046225633,-0.00479852,0.024350312,-0.011859337,0.020599153,-0.035913166,-0.0037866088,-0.00995153,0.010737856,0.017208928,-0.05589357,-0.000052972242,0.0010481656,0.0043086773,0.014695265,0.0057201963,-0.0010046598,-0.06837165,0.0503764,0.03199443,-0.02034134,-0.059606057,-0.004495591,-0.0046244967,-0.051562335,-0.07620913,0.033309266,0.023538206,-0.044498295,0.018008145,-0.038645968,0.02388625,0.024479218,-0.00052649976,0.015262451,-0.02650304,-0.065484166,-0.014347219,-0.007972826,-0.0024717695,-0.019129626,0.036403008,0.008952511,0.009307001,-0.006806228,-0.020689387,0.06636073,-0.017995255,0.06125605,0.064143546,-0.00929411,0.016731977,-0.03905847,-0.06692791,0.009074971,0.06672166,0.0050724447,-0.014089407,-0.042049084,0.028436627,-0.026606165,-0.00348368,0.026335461,-0.0146694835,-0.0035964728,0.007489429,-0.007798803,-0.04754047,-0.0019787045,-0.025961636,-0.02650304,-0.069970086,-0.01503042,0.027766317,0.0029132718,0.022004226,0.0251882,-0.024427656,-0.020070639,-0.010782973,-0.02143704,-0.01269078,0.015069092,-0.018098379,-0.017170258,0.009970866,-0.031710837,0.0052045733,-0.036970194,-0.00928122,-0.010989223,0.018381972,0.019593686,0.009990202,-0.004924203,-0.01635815,-0.015352685,-0.04684438,-0.036918633,0.013225739,0.029570999,0.0043699075,0.03869753,0.014166751,0.007244508,0.008900948,-0.016061667,0.020019077,-0.004166881,-0.056151383,0.010441372,-0.021192119,0.030163966,0.03294833,-0.00939079,-0.01392183,-0.035681136,0.03727957,0.000008383915,0.005275471,-0.022442507,-0.02142415,0.005475275,-0.02962256,0.008701144,0.005994121,0.007869701,-0.038413938,-0.02320305,0.013676909,0.02146282,-0.0055751773,0.048236564,-0.0036544804,-0.03593895,0.0050369953,-0.00740564,0.06672166,-0.009848406,-0.0023879805,-0.01611323,0.028178815,-0.0066193147,0.058007624,0.021411259,0.0038897335,0.031220993,0.02232649,0.0040830923,0.011008558,-0.014231204,-0.02451789,0.03660926,0.042745173,-0.054192014,-0.026000306,-0.018497987,0.010557388,-0.026709288,0.024337422,0.013051716,0.01633237,0.014746827,-0.018240176,0.020624934,0.029983496,-0.0055397283,-0.013625347,-0.00939079,0.030911619,0.01989017,-0.013225739,-0.031040525,0.006980251,0.0040992056,0.006200371,0.03310302,-0.0011778771,0.024762811,0.02209446,0.016847992,-0.021256572,-0.0047534024,-0.008540012,-0.0183433,-0.0021994559,-0.032535832,-0.0010167448,0.023344846,0.013419097,-0.008488449,-0.0063743936,-0.0016548287,-0.007244508,-0.012297616,0.0370991,-0.008179075,-0.038156126,0.014888624,-0.015674949,0.004460142,-0.012961482,-0.009081416,-0.017041352,-0.006387284,0.019361656,-0.023048364,-0.002524943,-0.0026167885,-0.01038981,0.012613436,-0.04241002,0.0072767343,-0.046277195,0.009848406,-0.020702276,-0.030782713,-0.036170978,-0.033747546,-0.011872227,0.026683507,0.0012592488,0.0074185305,-0.020508919,-0.0003812793,-0.021746414,-0.018730018,0.03444364,-0.04436939,-0.010705629,-0.008256419,0.005713751,0.015958542,0.009745281,-0.005697638,0.024414765,-0.021088995,-0.0037801636,-0.030395996,0.010364029,-0.0066837673,0.0090878615,-0.013754252,0.013315973,0.01258121,0.0017337835,-0.03336083,-0.048468594,0.0041088737,-0.0036351446,-0.013180622,-0.019774156,-0.033283487,0.017905021,0.023267504,-0.0015799021,0.056976378,0.009957976,0.027482724,-0.0052948073,0.0070833755,0.027972566,-0.012716561,-0.021140557,-0.008385325,0.035526447,-0.0060843555,0.020392902,-0.00783103,-0.07899349,-0.003222646,0.013199957,-0.022158913,-0.011176135,-0.03289677,-0.018987829,0.027740536,0.033850674,0.008249973,0.013625347,-0.03181396,0.02054759,-0.03954831,0.02228782,-0.02562648,0.0012205772,0.008262864,-0.0020447688,0.011917344,-0.030318651,0.014695265,-0.0034353405,-0.022880785,0.0073927497,-0.015700731,-0.012445859,-0.0076827877,0.018678455,-0.04063112,-0.015623387,-0.019168297,0.011137464,-0.018652674,0.00029164946,-0.0009394013,0.0014928906,0.04663813,0.028204596,-0.013960502,-0.00056960265,0.006094023,-0.016229244,-0.003722156,-0.021037431,-0.040734243,-0.010576724,-0.025768276,-0.035964727,-0.009977312,0.0048243008,0.015494482,0.009983757,-0.03694441,-0.01037692,0.018291738,-0.0309374,0.032071773,0.028900689,-0.017363615,-0.0011166468,-0.009397236,0.053779513,-0.01830463,0.051175617,-0.0013100056,-0.013341754,-0.048623282,-0.019142516,-0.009455243,0.01392183,-0.013444878,-0.0054462715,-0.027766317,0.00950036,0.035964727,-0.03818191,-0.016293697,-0.051407646,0.034366295,-0.025033513,-0.005259358,-0.010563833,0.008759151,0.026026089,-0.012658553,0.0013438433,0.01942611,0.009081416,-0.0045342627,-0.036970194,-0.030834276,0.0004652695,0.007489429,-0.019542124,-0.02936475,-0.009481024,-0.008540012,-0.09693719,0.0140636265,0.05084046,0.005559064,0.020676496,0.007972826,0.01921986,0.02918428,-0.032974113,-0.029029595,0.02758585,-0.018046817,-0.0016677192,-0.023937814,0.03470145,-0.019812826,0.0040830923,0.01269078,-0.04246158,-0.015236669,0.0024733806,-0.00022075124,-0.0096486015,0.0366866,0.0154687,0.044240482,-0.025510464,0.0035868047,0.015043311,-0.041688148,0.021707743,0.008636691,-0.007006032,-0.013908939,0.012864802,-0.025536247,-0.008817159,-0.019516343,-0.0022381276,-0.058265436,0.024388984,-0.021321025,0.017711662,0.021359697,-0.03227802,-0.023834689,-0.013431988,0.0025233317,0.009713055,-0.003103408,-0.039161593,0.009319892,-0.010357584,-0.024260078,-0.024453437,0.025716715,-0.0503764,0.026477259,-0.018820252,-0.023473753,0.01249742,-0.018149942,0.013651128,-0.02453078,0.032742083,-0.014411672,-0.0013720415,-0.033489734,-0.003029287,0.041920178,-0.0046696137,-0.014050736,0.017556975,-0.010331803,-0.02544601,0.007424976,0.014514797,-0.020947197,0.02851397,0.01237496,0.0048533045,-0.005227132,0.021565946,-0.00817263,-0.010989223,-0.004502036,0.0019271423,0.017350726,-0.005269026,-0.023087034,0.027302256,-0.0018997497,0.011343714,0.00040806754,0.010808754,0.0049983235,0.00036395757,-0.0021672293,0.02763741,-0.022004226,0.010602505,-0.004695395,-0.02143704,-0.014695265,-0.00696736,-0.02561359,-0.0019625914,0.011736876,0.014347219,-0.010370474,0.012632771,0.041275647,0.022429615,0.009371454,-0.03227802,0.0064936313,0.020031966,-0.030524902,0.028153034,-0.024208516,-0.008920284,0.013367535,0.015623387,0.028797563,-0.025922963,0.027663192,0.04395689,0.02758585,0.009055635,0.016177682,-0.034108482,-0.028797563,0.0029019925,-0.03199443,-0.0247757,0.009455243,0.025523355,-0.0016121286,-0.029570999,0.0070447037,-0.010911879,-0.0065838653,-0.019374548,-0.0010111051,0.03204599,0.013870268,-0.017866349,0.009120088,0.024569452,-0.027147569,-0.01315484,-0.036093634,-0.01393472,-0.0008467502,-0.002848819,0.006935134,0.013754252,0.02939053,-0.051974833,0.06450448,0.017763223,0.043931108,0.0086238,-0.01269078,-0.020650715,-0.01414097,-0.01481128,-0.00067594997,0.0059006647,0.004985433,-0.018949158,-0.029854592,0.0059296684,-0.004560044,-0.005559064,0.030112403,0.015726512,-0.0031630269,-0.0063486123,0.050118588,0.0011674034,-0.0020222103,-0.016538618,-0.016976899,0.03232958,0.0020334895,0.0026570715,-0.0010932826,-0.0158812,-0.0092683295,0.032406926,0.047901407,0.041456115,0.004105651,-0.013805815,-0.03957409,0.03289677,0.02825616,-0.024479218,-0.00046244968,0.058471687,0.012729451,0.009957976,-0.008198411,-0.026000306,0.018046817,-0.040295962,-0.0017708439,0.0065194126,0.03070537,-0.011801329,0.021488603,0.018536659,0.008133958,-0.0014727492,-0.014037846,-0.0041539907,-0.04413736,0.0040927604,0.0146694835,0.008926729,0.00403153,0.019477671,0.039213154,0.0018675233,0.03287099,-0.041662365,0.012323398,-0.027044443,-0.013193512,-0.008224192,-0.012130039,-0.02962256,0.004411802,0.015339795,0.0073411874,0.02453078,0.0022381276,-0.0064195106,0.004170104,0.02054759,0.015365575,-0.021346806,-0.0055945134,-0.01722182,0.019593686,0.030782713,0.03287099,0.028462408,0.0063937292,-0.022004226,0.020212434,0.0062648235,-0.00029003812,0.046483442,0.0059747854,0.02758585,0.02139837,0.0061681443,0.01269078,-0.0038639524,0.016822211,0.0018336854,0.008759151,0.0023331956,0.014102298,-0.020470247,-0.009365009,-0.0111568,0.026129212,0.005433381,-0.00024935222,0.009352119,0.01612612,-0.005143343,-0.017595647,-0.029493654,-0.0072573987,-0.021346806,0.0024024826,-0.044060014,-0.010299576,-0.0007001198,-0.0015323681,0.017879238,0.0039477414,0.028024128,-0.034417856,0.006496854,0.019993294,0.022648755,0.012897029,0.007218727,-0.035706915,0.020818293,-0.0005285139,-0.006377616,-0.0031324117,0.019915951,0.008224192,-0.032149114,-0.034314733,-0.01393472,-0.017582756,0.017350726,0.0074829836,0.004975765,0.013522222,0.03934206,0.004295787,0.006206816,0.0015645946,0.043106113,0.0030631248,0.014875733,0.016757758,-0.022158913,-0.019026501,-0.0081919655,-0.014888624,0.007747241,-0.014231204,0.0090878615,-0.01768588,-0.01613901,-0.025935855,0.039677218,0.00016939032,-0.00050434406,-0.011807774,0.034753013,-0.01326441,0.012826131,0.004940316,-0.041224085,-0.004050866,-0.011968907,0.024621014,0.026219446,-0.037898317,0.0010965052,0.011975352,-0.028436627,0.008430442,0.0067288848,0.00082096906,-0.0029422757,-0.007959935,0.008900948,-0.020624934,0.07471382,-0.018833142,-0.015197998,0.060173243,-0.012432967,0.013380426,0.014772609,0.03756316,0.02784366,0.0068642357,0.018858923,0.015597606,0.04313189,0.0041346545,-0.011388831,0.023834689,-0.027044443,0.03913581,0.0033289932,0.005752423,-0.0064581824,0.024221405,0.022751879,-0.018691346,0.001599238,-0.035758477,0.042306896,-0.027946785,0.062235735,0.041327212,-0.013792925,-0.011820665,-0.011253479,0.015056201,-0.028307721,-0.002379924,-0.014772609,-0.008888057,-0.018381972,-0.016267916,0.025368668,-0.00929411,0.031272557,0.018149942,-0.031917084,0.027817879,0.019078063,-0.055120133,-0.026554601,0.0031162985,-0.006651541,0.018459316,0.0008975069,-0.009680828,-0.017118694,-0.014862843,0.010654068,0.048339687,0.014231204,0.005285139,-0.0071671642,0.009906413,-0.0068513453,0.006203593,0.017092913,0.017505413,0.01635815,0.000030413721,-0.025587808,0.039986588,0.023718674,-0.0026490148,-0.00016435493,-0.010525161,-0.020225326,0.00215595,-0.003925183,-0.0009394013,-0.009410126,0.053779513,0.007663452,-0.039625652,-0.0016596626,0.020844074,-0.019761264,0.030860057,0.03905847,0.008307981,-0.006922243,-0.0262839,0.0016548287,0.005423713,-0.01945189,0.019116735,-0.025974525,-0.0009821013,0.0071929456,0.021707743,0.000012242278,-0.008791378,-0.024028048,-0.0055268374,-0.020160872,-0.020199545,-0.009139423,0.0040895375,-0.004447251,0.006960915,-0.023486642,0.014759718,0.022893677,0.015197998,0.035758477,0.0031581928,0.026000306,-0.011053675,0.025239762,-0.037228003,0.009700164,0.0071929456,0.036531914,0.018188613,0.02784366,0.0035932502,-0.020263998,0.022146022,-0.0005035384,0.017054241,0.020135092,0.0028729888,-0.03593895,0.038568627,0.016912445,-0.018265957,0.011247034,0.01258121,0.020715168,-0.0029068266,-0.011092347,-0.012213828,-0.008423996,0.009416571,0.0092232125,-0.0014340774,-0.02892647,-0.03862019,-0.0014066849,-0.00092973333,-0.021166338,-0.007650561,-0.025600698,0.016087448,-0.00479852,-0.00328871,0.008920284,-0.026425697,0.03382489,-0.01769877,-0.0020914972,0.022390943,0.011678869,-0.0062648235,-0.030499121,0.011756212,-0.005275471,0.016628852,-0.012465194,0.0027489169,0.01392183,0.03310302,0.0056944154,-0.030550683,-0.019954624,0.00657742,0.019310094,-0.028204596,0.009210322,-0.027688973,-0.010035319,-0.019915951,-0.033644423,-0.023383519,-0.016835103,-0.008288645,0.01791791,-0.029854592,0.021256572,-0.013805815,0.012729451,-0.015945652,-0.010338248,-0.016203463,-0.044498295,-0.040089715,0.027353818,-0.0100611,0.01830463,0.000982907,0.03158193,0.012684334,-0.03294833,-0.008204856,-0.015674949,-0.020624934,-0.01501753,0.00872048,-0.038723312,0.014089407,-0.008314426,-0.0044988138,-0.016177682,-0.008572238,0.027998347,0.011749767,-0.00035287972,-0.027895223,-0.009558368,-0.0029100492,-0.038362376,-0.0033354384,0.002908438,0.025897183,0.010705629,-0.0442147,0.0047179535,-0.026863975,-0.02828194,-0.0155202625,0.02959678,-0.0042377794,0.018472206,0.030911619,-0.033257704,-0.011865782,0.0030615136,-0.010712075,-0.042513143,0.020637823,0.0010570278,0.0039960807,0.01701557,-0.026889756,-0.03227802,0.024878826,0.009551922,0.0012092978,-0.011743321,-0.019851498,-0.020251106,0.014308548,0.04888109,0.009558368,0.013612456,-0.0142440945,-0.007180055,-0.05127874,-0.00939079,-0.026915539,-0.02228782,-0.020392902,-0.029493654,0.014501906,0.013676909,-0.012426523,0.024646796,0.008075951,0.014489016,0.013406207,-0.014347219,-0.0026554603,-0.022494068,0.04173971,0.0126069905,0.022700317,0.0067482204,-0.04269361,0.028900689,-0.012839021,-0.011305042,-0.03220068,-0.03583582,0.044988137,0.02410539,0.009577704,-0.01481128,-0.010898989,-0.027508505,0.0040895375,0.018420644,-0.033876453,-0.004357017,0.0018965271,-0.06429823,-0.03426317,0.016822211,0.032767862,0.00015156507,0.012510311,0.007225172,0.005894219,0.010447818,-0.022867896,0.0424358,-0.014708156,-0.0070447037,-0.011189027,0.016757758,0.018730018,0.008791378,0.019696811,0.02077962,0.0055558416,-0.004025085,-0.0041926624,0.005426936,0.009506805,0.043183453,0.018614002,-0.009957976,0.004366685,-0.008971846,0.0008652804,-0.0018465761,-0.01347066,0.042049084,0.01833041,-0.025974525,-0.015649168,0.0047824066,0.013612456,0.007495874,-0.00425067,0.0043280134,-0.03642879,0.021166338,0.039419405,0.00464061,-0.031917084,0.019142516,-0.04047643,-0.034108482,0.017299162,0.03511395,-0.07363101,0.0017837345,0.020496028,0.05965762,-0.03560379,0.017531194,-0.021449931,0.018768689,0.043595955,0.0049113124,-0.019116735,-0.028874908,-0.00673533,0.010454264,-0.0071865004,0.026387025,-0.0071865004,-0.017801896,-0.02451789,-0.005143343,0.024260078,-0.0051659015,0.035500668,0.015958542,-0.020934308,0.008262864,0.0370991,0.00030856833,-0.02164329,-0.02164329,-0.021514384,0.014024955,0.018962048,-0.01082809,-0.0064291786,-0.026180776,-0.012336289,0.049293593,-0.0045278175,-0.008449777,-0.003722156,-0.0039058467,0.017943691,-0.022481177,-0.025768276,0.029287405]},{"id":"enum-ChannelType","type":"enum","source":"main","text":"Enum: ChannelType\nMembers: GuildText=0, DM=1, GuildVoice=2, GroupDM=3, GuildCategory=4, GuildLink=5, GuildLinkExtended=998","meta":{"url":"/docs/typedefs/ChannelType"},"embedding":[-0.030351501,0.004135525,0.024912639,0.015189016,0.0008469203,0.0055682003,-0.029873943,-0.0012403257,-0.0011068415,0.011580796,0.027645336,0.0075878752,0.011753247,0.04725177,0.05682947,0.0006280393,-0.028096363,0.025018763,0.011627225,0.039929204,-0.01048639,0.045394596,-0.012642037,0.06091525,-0.050249774,0.038390405,0.00040501278,0.017205374,-0.013716544,-0.0029200718,0.030669874,-0.045739498,0.07089092,-0.004473795,-0.054388616,0.0010604121,-0.0064702556,0.039027147,0.0145788025,-0.041521065,0.030165784,0.00012446786,-0.0007192397,-0.0052697263,-0.009411884,0.01656863,-0.027406557,0.0044903774,0.008881263,-0.0007304325,-0.03854959,0.033322975,0.013995119,0.045872156,0.005923053,-0.0008531385,-0.017205374,-0.008602687,-0.001040514,-0.021582995,-0.02907801,-0.061551996,-0.010274142,-0.0081052305,0.04526194,0.0034921472,-0.063303046,0.020495223,0.037674066,0.023559557,0.0034490342,-0.035737302,-0.007017458,0.017391091,-0.012330297,0.02313506,-0.06409898,-0.012628771,-0.007753694,-0.009425149,-0.029449446,0.042237405,-0.06118056,-0.007541446,0.029794348,-0.00136469,-0.019327857,0.014671661,0.00048958044,0.008284315,-0.03186377,-0.064841844,-0.061074436,-0.013862465,0.020110523,-0.057253968,0.013504296,-0.022352396,-0.057413153,0.030669874,0.081556395,0.020216648,-0.04908241,-0.014565537,0.030192316,0.004722524,-0.027565742,0.027698398,-0.050859988,-0.0047357893,-0.07895635,0.06324998,-0.0074154236,0.028892294,0.034384217,0.0073955255,0.024594268,-0.0019632964,0.004908241,0.018319678,-0.042316996,-0.00041558375,0.044280294,-0.0334291,0.0126221385,0.011103237,-0.017139047,-0.03979655,-0.02722084,-0.02722084,0.023798335,-0.019288061,0.0063475496,0.015905354,-0.032500513,0.018067634,-0.024899375,-0.0109573165,-0.08054821,-0.037674066,-0.023440167,0.007946044,0.04887016,0.045102756,-0.03441075,0.0060059624,-0.087234035,-0.006291171,-0.024461612,-0.0076807337,-0.07237665,0.02926373,-0.027831053,-0.000029847411,0.0024640695,-0.031200495,0.013524193,0.014844113,-0.04979875,-0.021529933,0.013968589,-0.0549723,0.023081997,0.03544546,-0.016210461,-0.040778197,0.017881915,0.014220634,-0.048896693,0.023732008,0.02597388,0.02698206,-0.048498727,-0.034569934,-0.02440855,-0.008430235,-0.021516668,-0.012330297,-0.058792766,-0.010592515,0.0349679,0.026889201,0.010526187,-0.0749767,-0.011176198,0.019075813,0.00848993,-0.04114963,0.018863564,-0.019155405,0.0018240084,0.022790156,0.04908241,0.039504707,0.011587428,0.013862465,0.036135267,0.013995119,-0.0150563605,-0.037647534,0.046376243,-0.040061858,0.045845624,-0.0095909685,-0.03167805,-0.012967042,-0.0039431746,0.009285862,0.0004522712,0.02130442,0.02375854,-0.02091972,-0.000472584,-0.0022120248,-0.07439301,0.020123787,-0.084687054,-0.028149426,-0.008436868,-0.021795243,-0.017085984,0.016794143,0.009624132,0.028918825,-0.019460512,0.010851192,0.0076608355,-0.046986457,0.026119802,-0.008357275,-0.010267509,0.008887895,0.010864458,-0.06903375,-0.029422915,0.005312839,0.015401265,0.07969922,0.0019317908,-0.02479325,-0.07105011,-0.012469585,0.015533919,0.036294453,-0.017072719,-0.02775146,0.02440855,-0.014631865,-0.036135267,0.01079813,0.06489491,0.069458246,-0.055821292,-0.0033727575,0.00095926266,0.017351296,-0.007050622,0.059694823,0.039451644,-0.018677847,-0.016024744,-0.030139253,-0.0062812218,0.00006368484,-0.019208467,0.014976768,0.021145232,-0.0090006525,-0.021795243,-0.021039108,-0.028149426,-0.02123809,0.037461817,-0.0059893806,-0.014539005,-0.01796151,-0.007992473,0.0026116485,0.018982954,-0.02801677,-0.01272163,0.004987834,0.009677194,0.024886109,-0.032102548,-0.0032732661,0.030457625,-0.0061883633,0.05422943,0.004583236,-0.007912881,-0.0018538559,0.0047556874,-0.028706577,-0.0011101579,0.022166677,0.033110727,-0.035498522,0.039610833,0.051762044,0.006447041,0.023838133,-0.03520668,-0.030829059,0.0070638875,0.019248264,0.030537218,-0.009285862,-0.04441295,-0.06383366,0.03783325,-0.009896075,-0.029290259,0.009013918,-0.048923224,-0.02325445,0.0072695026,0.061817307,0.06160506,0.024527939,0.028361674,0.009179737,0.023095263,-0.030033128,0.024965702,-0.0063110692,-0.024488144,-0.027565742,0.022445254,-0.001679746,0.013530826,-0.055980477,0.01606454,0.04183944,0.024050381,0.01647577,-0.0058401437,0.0749767,0.0009667245,-0.011985394,0.008682281,0.0017493899,-0.011070074,0.009551171,0.0017593391,-0.014353288,-0.04091085,0.026849404,0.0022551378,0.03364135,-0.008980755,0.013139494,-0.012489484,-0.03759447,-0.002790733,-0.06935212,0.04600481,-0.004487061,-0.010181284,0.077948175,-0.00841697,-0.0061054537,-0.026411643,0.04703952,-0.008251151,0.012317032,-0.04239659,0.011839474,-0.011189463,-0.0403537,-0.012456319,-0.008695546,0.013292047,0.01264867,0.011129768,0.01303337,0.017749261,0.020362567,-0.013650216,-0.01567984,0.002203734,0.0015844001,0.03579036,-0.034835245,-0.020760532,-0.0008365566,0.011222627,0.040698603,-0.052584507,-0.021317685,0.014645129,0.0042283833,-0.03724957,-0.011308853,-0.012297134,0.02186157,0.018730909,0.026955528,0.017855385,-0.02479325,0.040380232,-0.0010645577,-0.006798577,0.003369441,-0.028680045,0.012157845,-0.031996425,0.0032881899,0.022445254,0.0129206125,0.028202487,-0.000019652136,0.02032277,0.014087978,0.021384012,-0.03061681,-0.023506494,-0.017444154,0.028361674,0.013384906,-0.028096363,-0.005528404,-0.0010488048,0.03207602,0.038204685,0.0023231236,-0.022392191,-0.020402364,0.032792356,-0.035365865,-0.056776408,0.022644237,0.021529933,0.025881022,0.012947144,-0.044837445,-0.00017877355,-0.022193208,-0.0037773557,0.042821087,-0.049135473,0.013550725,-0.0023413636,-0.0133915385,0.036586292,0.017868651,-0.00050533324,-0.060862187,0.050196715,-0.023042202,-0.040778197,-0.0008319966,-0.05964176,0.04624359,-0.0318903,-0.02674328,0.047384422,0.065160215,-0.044386417,-0.022577908,-0.030378032,0.0022120248,0.02080033,0.039690424,-0.053009003,-0.004036033,-0.046323184,0.0028985152,0.023705477,0.03271276,-0.0272739,0.02751268,0.021437075,0.011222627,-0.0026663688,0.04523541,0.029794348,-0.014830847,0.036825072,0.024779985,0.020455426,-0.021384012,-0.040406764,0.007846553,0.011892535,0.04364355,0.033561755,-0.005548302,-0.011050175,-0.026902467,-0.015427795,-0.003429136,0.036427107,-0.015772698,-0.005933002,-0.016913533,-0.0049148737,-0.04292721,0.02142381,-0.023533026,-0.026080005,-0.035418928,0.011972128,0.0019433982,0.07009499,0.050515085,0.020017663,-0.033853598,-0.008284315,-0.018213553,-0.024010584,0.009750155,-0.014034916,-0.02135748,0.010347103,-0.03592302,-0.04085779,-0.009544539,-0.02852086,0.005846776,-0.010061894,-0.0009849645,0.025814695,-0.01233693,-0.007567977,0.00072421425,0.013544092,-0.069086805,-0.0148175815,0.0070240907,0.012157845,-0.012854286,0.035631176,0.0084633995,-0.043855797,-0.002309858,0.015321671,0.018598253,0.06791944,-0.024302425,-0.007103684,0.029529039,-0.016820675,0.00020499367,0.013464499,-0.00044688207,-0.054866176,0.028892294,0.02618613,0.013311946,-0.0094715785,-0.04852526,-0.015321671,-0.004901608,-0.026172863,-0.00045724577,-0.009040449,-0.0038735308,-0.020667674,0.023161592,0.014273696,-0.04396192,0.014830847,-0.0010371975,-0.02905148,-0.02686267,-0.002588434,0.057253968,-0.012283868,-0.0025751684,-0.007760327,0.02198096,-0.021450339,0.06144587,0.022975873,-0.015321671,-0.017271701,0.05168245,0.020083992,-0.006728933,-0.0026232558,0.008204722,0.07816042,-0.002117508,-0.021529933,-0.041441474,0.013457866,-0.005750601,-0.038416933,0.026464704,0.025244277,0.017908446,-0.0049579865,0.0020694204,-0.016688019,0.007110317,-0.011832841,-0.016847206,-0.02686267,-0.017855385,0.013769606,0.03701079,-0.023227919,0.0036844972,0.010101691,0.014233898,0.016382912,0.00039755093,-0.030112721,0.008854732,0.007820021,0.004865128,0.00048709317,-0.03366788,0.010778232,-0.013365008,-0.0039962367,-0.0036380677,0.025469791,0.007203175,-0.030139253,0.0148175815,0.017749261,0.014923706,0.022816688,0.024527939,-0.0031787492,-0.023506494,0.036825072,-0.028043302,-0.011401711,-0.061551996,0.0064868373,0.0012842678,-0.026225924,-0.019128874,0.0023828184,-0.011992027,-0.0014857379,-0.010048629,0.03271276,-0.010048629,0.020654408,-0.025191216,0.016157398,-0.029767819,0.010824661,-0.032208674,-0.02772493,-0.017656403,0.023413636,0.018996218,0.015387999,0.018810501,-0.0084633995,-0.05704172,-0.032818887,0.033588286,-0.009843013,-0.02233913,-0.0365067,-0.010705272,0.021874836,0.017749261,0.019977868,-0.0050972747,-0.03568424,0.0007121924,-0.0668582,0.022325864,0.017271701,0.020256443,-0.022564642,0.01976562,0.026822874,-0.008589421,0.004026084,-0.022007491,0.00048543498,-0.0049148737,-0.0006728104,0.024899375,-0.046057872,-0.022405457,0.021954428,-0.0019815364,0.026106536,-0.008125128,0.022989139,-0.004792168,0.0056809573,0.0050011,0.00057331903,-0.024156505,-0.0065233177,0.0084633995,0.012927245,0.016144132,-0.025350401,-0.06383366,-0.019460512,0.010294041,-0.03783325,-0.0005737336,-0.004208485,-0.028626984,-0.02260444,0.0044704787,0.026544297,-0.016900267,-0.007508282,0.020508489,-0.048657913,0.00827105,-0.0005455444,0.010333837,-0.0400088,-0.025960615,0.025098357,-0.0020528387,0.03929246,0.021941165,-0.0050044158,-0.01079813,-0.005923053,0.017404357,-0.049480375,-0.0138094025,-0.026504502,0.01502983,-0.013384906,0.036188327,0.02171565,0.010313938,0.024978967,0.04183944,0.01822682,0.015480857,0.008191456,-0.026172863,0.036108736,0.0050110486,0.009464946,-0.041096568,-0.027565742,0.020389099,-0.005405698,-0.0095909685,-0.039743487,0.029502507,0.018797236,0.010453227,-0.04987834,-0.029449446,0.0007267016,-0.017351296,0.037116915,0.0019981184,-0.005326105,0.04828648,0.012363461,0.030935183,0.0025386882,0.02686267,-0.01993807,-0.011408344,-0.03260664,-0.029714756,-0.0027791257,-0.00040687824,-0.052080415,0.0036148531,-0.023546292,-0.00094682624,0.019606432,-0.050780397,-0.033561755,-0.04852526,0.011972128,-0.0272739,-0.023360575,-0.0241963,0.01887683,0.016581895,0.0017609972,-0.025244277,0.025536118,-0.008085332,-0.0073557287,-0.030271908,-0.018624784,0.008655749,-0.0054222797,0.018810501,-0.034384217,-0.025549384,0.0017079352,-0.10888336,-0.009040449,0.007150113,-0.016900267,0.016077805,-0.0024690442,0.001207991,0.021662587,-0.010022097,-0.037700597,0.006510052,-0.011229259,0.036082204,0.0015023197,0.055980477,-0.021052374,-0.0015122688,0.037116915,0.01034047,0.004669462,0.0034821979,0.0038635817,-0.0077205305,0.02455447,-0.014658395,0.015427795,-0.0110767055,-0.00075447623,0.044041514,-0.013146127,0.009750155,0.017735995,0.0044373153,-0.0020528387,-0.024527939,-0.021742182,-0.004069197,-0.01979215,0.0045998176,-0.041812908,0.006483521,-0.009047082,-0.031280085,0.02340037,-0.000058606634,0.015082892,-0.020879922,0.014791051,0.0049579865,-0.004838597,-0.024753453,0.012708364,0.039027147,0.026438173,0.006516685,0.012854286,-0.05059468,0.01187927,-0.006911334,-0.023930991,0.027990239,-0.0028471113,-0.0002607503,-0.00988281,-0.017497215,-0.0472783,-0.020614613,-0.009597601,0.013066533,0.004069197,0.042555775,0.0033047716,-0.010075159,0.0036612824,0.013743075,0.020282974,-0.022246271,-0.00094682624,-0.015812496,0.037886314,-0.024342222,0.017908446,-0.0047954842,-0.001837274,0.027804522,0.004908241,-0.018266616,-0.008290947,-0.0112557905,-0.018041102,0.026451439,-0.0004987005,-0.008768506,0.023201387,0.021821775,-0.0077205305,-0.0016532149,-0.025151419,-0.014658395,-0.025960615,0.039372053,0.012051721,-0.026570829,-0.046217058,-0.005137071,-0.020481957,-0.006520001,0.038655713,0.005326105,-0.033561755,-0.000049434773,0.02390446,0.011540999,0.0049579865,-0.033561755,-0.017417623,0.030484157,0.024501408,0.0014111192,-0.022763625,-0.027539212,-0.01529514,0.025138153,-0.027088184,-0.017497215,0.032447454,0.007820021,0.004085779,-0.019845212,0.01656863,-0.029847411,-0.0063740807,0.004858495,-0.004934772,-0.027831053,-0.014499209,-0.005216664,-0.0020229912,-0.04682727,-0.01317929,-0.0063210186,0.024395283,-0.0016316585,-0.018160492,0.016250256,0.022007491,0.0135109285,-0.00025411753,0.0140481815,-0.013444601,0.007985841,-0.019845212,0.010910887,0.011229259,-0.01950031,0.010539453,0.009139941,0.039398585,0.011143033,0.021888101,0.009391986,0.015573716,0.04451907,0.031253558,-0.01630332,0.0035020963,-0.00063715933,-0.023572823,-0.017430888,0.039955735,0.008038903,0.0018455649,-0.011547632,-0.015573716,-0.012668568,0.025867756,0.04884363,-0.019341122,-0.014127775,0.032580107,-0.0041587395,0.007926146,-0.018080898,0.0033097463,0.04706605,0.03796591,0.04658849,-0.018717643,0.022325864,0.010061894,0.0007789345,0.032580107,0.03133315,0.004347773,0.006473572,-0.05810296,0.043802734,0.025085092,-0.009975668,-0.00645699,0.018691111,0.00017939539,0.014897174,0.021967694,-0.023453433,-0.0043079765,-0.02777799,0.0150563605,-0.009352189,0.042794555,0.0032765826,0.028122894,0.015772698,-0.012429789,0.0036447006,0.003158851,-0.028600452,-0.041176163,0.02363915,0.015772698,0.004987834,-0.017735995,-0.017881915,0.022445254,0.0029615264,0.030351501,-0.03555158,0.0053758505,-0.020906454,0.014074713,0.00626464,-0.0018555141,-0.005153653,-0.01514922,0.011534366,-0.04011492,0.014366554,0.021105437,-0.025390198,0.029873943,0.017231906,0.039929204,-0.0045732865,-0.018054368,0.001898627,0.009776685,0.01887683,0.03085559,0.0029781084,0.0070240907,-0.0051602856,-0.015109423,-0.007216441,0.0024259312,0.0046528797,0.0021440391,-0.0149369715,0.002467386,0.021224827,0.004284762,-0.008483297,0.008662382,0.012894082,0.012973675,-0.00077230175,0.007567977,-0.0050110486,0.0008058801,0.009577703,0.015812496,-0.0131527595,0.009285862,0.027831053,0.030537218,-0.006098821,-0.01656863,-0.008025637,-0.01603801,-0.02085339,0.03754141,-0.04218434,-0.013968589,-0.00033827065,0.038363874,-0.013955323,-0.0005268897,-0.03162499,0.020256443,0.037143447,-0.004128892,-0.0019450563,-0.0024458296,0.00089790963,-0.03783325,0.016701285,-0.007886349,-0.011043542,-0.030431094,0.03544546,0.031943362,-0.02722084,-0.026584094,-0.03186377,-0.019102342,0.04627012,0.033694413,-0.01606454,-0.016741082,-0.008264417,0.019619698,0.045633376,-0.00063923205,0.013073166,0.014990034,0.017430888,0.011487937,-0.016873736,-0.026080005,-0.0018306412,0.0016780877,0.0033130627,-0.039982267,0.018863564,-0.0075547113,-0.012602241,-0.017563544,0.027618805,-0.022949344,0.06606227,-0.038363874,0.022975873,-0.013232352,0.00757461,0.014990034,-0.004792168,-0.036320984,-0.009584336,0.022458518,0.028069831,-0.022538112,0.009365454,-0.013411437,-0.0034987798,-0.0035120454,0.015719637,0.0078001237,0.013849199,-0.015732903,0.027459618,-0.039902672,0.07534813,0.013292047,-0.010095058,0.041255753,0.00745522,0.027963707,0.005352636,0.03204949,-0.007594508,0.030935183,0.006692453,0.027565742,0.026783077,0.0062016286,-0.010890989,-0.009093511,-0.017417623,-0.0034324522,0.042025156,0.00029723046,-0.006579696,-0.0005807809,0.017059455,0.037912846,-0.022007491,-0.028202487,0.03372094,-0.008967489,0.059800945,0.0058136126,-0.001155758,0.026119802,0.015507388,0.005249828,-0.029290259,0.0012635405,0.0038901125,-0.026424909,0.029927004,-0.0065763798,0.02118503,-0.03056375,-0.0012768059,-0.006115403,-0.015454327,0.01789518,0.014273696,-0.03085559,-0.006115403,-0.039027147,-0.010260877,-0.012277235,0.005541669,-0.02777799,0.0034324522,-0.02275036,0.021609526,0.022577908,0.026398377,0.011852738,-0.011972128,-0.0031372947,-0.0053493194,-0.0006665922,0.023864664,-0.0031804075,0.031784177,-0.012608873,-0.010937418,0.04183944,0.020959515,0.000019781683,-0.020481957,-0.017006392,-0.015228813,0.0010206157,-0.009856278,-0.014446147,-0.0034656161,0.06457653,0.022034023,-0.028573921,-0.01591862,-0.011700185,-0.07195216,0.04571297,-0.0015446035,-0.043272115,0.025934083,0.007952677,0.0028487695,0.022564642,0.0044638463,0.010738435,-0.0017560227,-0.0077735926,0.00031008144,0.0028404787,-0.0065299505,-0.021914633,-0.0101282215,0.027698398,0.029343322,0.0033561755,-0.0126221385,-0.021503402,0.0034656161,0.0045998176,-0.006135301,0.011978761,-0.0057008555,-0.0077735926,-0.003989604,-0.020362567,0.021582995,-0.032553576,0.00018685723,-0.036639355,-0.0032997972,-0.0017609972,0.022684032,0.018505394,0.0503559,0.031757645,-0.006334284,0.011746614,-0.020588081,0.0069179665,0.031147432,0.014233898,-0.038231216,-0.009312392,0.003185382,0.010771599,0.00530289,-0.0012295475,0.0019118926,-0.023944257,-0.02907801,0.038921025,-0.018545192,0.020866657,0.010645577,-0.022670766,0.018730909,0.015321671,0.01337164,-0.009816482,-0.0200044,-0.034092378,0.0030958399,-0.015839025,-0.013822668,-0.04796811,0.013769606,-0.009975668,0.0070307236,-0.005581466,0.013663482,0.013497663,0.017629871,-0.009285862,-0.022445254,0.01644924,-0.014844113,0.022763625,0.0013514245,-0.0073623615,0.005405698,0.013862465,0.012197642,0.025284074,-0.028839232,-0.030775998,-0.007176644,-0.042529244,-0.00022406285,-0.007965943,-0.035498522,-0.025151419,-0.0018273249,-0.029635163,0.0046760943,0.014220634,0.012137948,-0.02029624,-0.007567977,-0.018982954,0.05088652,0.0025121572,0.029741287,-0.021463605,-0.060490754,-0.020163585,0.0061187195,-0.0028189223,0.03499443,-0.0014044865,0.030829059,0.004026084,-0.019964602,-0.01137518,-0.002966501,-0.00484523,0.027035123,-0.0072894013,0.0066460236,0.030988246,-0.014167571,-0.018691111,0.000111824156,-0.0013995119,0.017298233,-0.007017458,-0.007103684,0.013053268,-0.002029624,0.0019218416,-0.04828648,0.01642271,0.01099048,0.017444154,0.0027045072,-0.04544766,0.022816688,-0.029953536,-0.00010705686,-0.031041307,0.01647577,0.017908446,-0.0038503162,-0.013311946,-0.019566637,0.009604233,-0.005203399,-0.008131761,-0.031014776,-0.009338924,-0.002862035,0.002949919,0.016807409,-0.014114509,-0.046217058,0.0100088315,-0.022312598,0.05059468,-0.026119802,-0.01976562,0.023479963,-0.0058932058,0.037196506,0.03748835,0.03287195,-0.018982954,-0.015441061,-0.025881022,-0.024421815,-0.030882122,-0.0005136242,-0.0092327995,-0.0047888514,0.011235892,-0.001260224,-0.040300637,0.04863138,0.008748608,-0.014804316,0.02325445,-0.035074025,0.012642037,-0.018982954,0.008635851,0.00293997,0.008158293,-0.023161592,-0.0031721166,0.0033992885,0.0033727575,0.031518865,-0.003946491,-0.024076913,0.016913533,0.03157193,0.019964602,0.013796137,-0.010313938,-0.030165784,-0.00026303032,0.028122894,-0.007501649,-0.01887683,-0.014923706,-0.017112516,-0.05059468,0.031067839,0.022233006,0.007050622,-0.013716544,0.024222832,0.006151883,0.009100144,0.00010047592,-0.009491477,-0.024872843,-0.0073225647,-0.0038503162,0.015878823,-0.01060578,0.0035319438,0.014459413,0.006659289,0.0100685265,-0.005836827,0.00495467,0.010287408,0.0013348425,0.022564642,0.03080253,0.0126818335,0.0107185375,-0.014180837,-0.0024309058,-0.001714568,-0.040247574,0.023798335,0.007209808,0.00043734748,0.024899375,0.02597388,0.02751268,-0.0019550053,-0.018996218,-0.0015545527,-0.019208467,0.036320984,0.020030929,-0.014061447,-0.012237439,0.014313492,-0.03005966,-0.017921712,-0.006738882,0.015467592,-0.017231906,0.01789518,0.0051039075,0.010466492,-0.01938092,0.054653928,-0.013796137,0.021145232,0.0084633995,-0.011799676,-0.03523321,0.03133315,-0.0077404287,0.022936078,-0.03135968,0.029184135,-0.0013555699,-0.00010923323,-0.019805416,-0.014618599,0.024461612,-0.015971681,0.043537423,0.03464953,-0.031439275,0.030271908,0.039610833,-0.02438202,-0.016555363,-0.014539005,-0.002037915,0.025350401,0.025814695,-0.02748615,0.0028504278,-0.01931459,-0.018067634,0.009405251,0.020495223,-0.0151757505,0.009789951,0.021622792,0.009697093,-0.039159805,-0.030484157,0.011998659]},{"id":"enum-DefaultMessageNotifications","type":"enum","source":"main","text":"Enum: DefaultMessageNotifications\nMembers: AllMessages=0, OnlyMentions=1","meta":{"url":"/docs/typedefs/DefaultMessageNotifications"},"embedding":[0.0041001225,0.018352928,0.044437516,0.02068284,-0.01573666,0.027308116,0.013706123,0.00079480547,0.02405405,0.017532904,-0.021164441,0.00244543,-0.012489103,0.035560425,0.034805484,0.0067033744,0.024887092,0.0288961,0.035065807,0.049696084,0.028765937,0.054147646,0.03930911,0.024535652,-0.016634783,0.009768704,0.008720895,0.039881825,0.059510347,0.013901367,0.046389956,-0.019589473,0.0022046294,0.027073823,-0.037590962,0.010094111,0.024939157,0.0073021227,-0.006361698,0.025720133,0.0133677,-0.018105619,-0.0127949845,0.01625731,-0.018782465,0.011272082,-0.0101657,0.021880336,0.0028603235,0.03222826,-0.03087457,-0.023806741,0.040584702,0.035560425,-0.017975457,-0.031629514,-0.027542409,0.01194242,0.014057562,-0.023090847,0.009345676,-0.033165433,-0.031525385,0.05229934,0.06497718,-0.026032522,-0.046181694,0.009339168,0.024795977,0.019303115,-0.051570427,-0.047118865,-0.029598977,-0.012866574,-0.010569205,0.033269566,-0.025420759,0.022544164,-0.04579121,-0.022518132,0.01444805,0.016348423,-0.029859303,0.018457059,-0.0052780937,-0.0100615695,-0.014682342,0.0014570077,0.026097603,-0.013562944,-0.050737385,-0.036783956,-0.03064028,-0.019081838,0.01636144,-0.05399145,0.02704779,-0.018704368,-0.024861058,0.024106115,0.05274189,-0.060811974,-0.054147646,-0.006228281,-0.0008273461,-0.0038072565,-0.013048802,-0.00689211,-0.046624247,0.0000025994389,-0.025355676,-0.003079973,0.033920377,-0.035768688,-0.027906865,-0.031447288,-0.062269796,-0.0031157676,0.0014513131,0.00023673325,-0.013445798,-0.03035392,-0.0075168908,0.025407743,0.0078032487,-0.0075103827,0.00657972,0.009996489,-0.014252806,0.026488092,0.04199046,0.031421255,0.041235514,-0.007575464,-0.018092602,0.025889345,0.003192238,0.02022727,-0.05716742,-0.0064886063,0.021984465,0.013100867,-0.01775418,0.041417744,-0.023754677,0.013471831,-0.0492275,0.0015017511,0.0267354,-0.006530909,-0.025928393,0.032670815,-0.009065826,0.0427454,0.0065374174,-0.014955685,0.022843538,-0.012567201,-0.0152810905,0.012040041,-0.0036412992,-0.04563501,0.019016758,-0.027906865,-0.06305077,-0.008382472,0.02141175,-0.038007483,-0.03342576,-0.014669326,0.019016758,-0.007985476,-0.0042921123,-0.05893763,0.00051495584,0.00076999323,-0.032072067,-0.037278574,-0.03136919,0.012267826,0.07986778,0.025889345,0.006189232,-0.09080144,0.024080083,0.0093196435,0.0040025003,-0.01225481,0.010705875,-0.009176464,0.0020712125,0.014526147,0.019992977,0.02991137,0.0171294,-0.017311627,0.01423979,0.03613314,-0.028609741,-0.04527056,0.0024096353,-0.026540156,0.057011224,-0.020110123,-0.020813001,-0.0074387933,0.009013761,0.012144172,-0.024548668,0.027906865,0.03787732,-0.016387474,-0.0010974335,-0.028349416,-0.052195206,-0.0044580693,-0.090645246,-0.008864074,-0.03574265,-0.025889345,-0.0100680785,-0.009280594,0.06549782,0.03891862,-0.001744179,0.026162686,-0.05841698,-0.011987977,-0.021750173,-0.007028781,-0.016166197,-0.02534266,-0.005418019,-0.015346172,-0.024704864,0.017467823,-0.009579969,0.016830025,0.020617757,-0.021125391,-0.030822506,-0.024626767,-0.003917895,0.036705855,-0.044671807,0.0001595509,0.0036120126,0.013549928,-0.02384579,-0.03394641,0.06190534,0.060551647,-0.0089877285,-0.020292351,-0.042250782,-0.021216506,-0.024431523,0.056178182,-0.024939157,0.012957688,0.0026715875,-0.03222826,-0.016699864,-0.042719368,-0.03363402,0.0004938044,0.04407306,-0.04368257,-0.032254297,0.043786705,-0.03548233,-0.035768688,0.05399145,0.029442783,0.0064951144,-0.044281323,-0.016960189,0.00023937719,0.017728148,0.0029058803,-0.012664822,0.0027203986,0.028505612,-0.003686856,0.013244046,0.015424269,0.0059028743,0.012534659,0.012332908,0.004835541,-0.009306626,-0.00926107,0.049722116,-0.0012520016,-0.022414003,0.02311688,0.020214254,-0.03043202,0.014474083,0.0037779699,0.014513131,0.019537408,-0.00082693936,0.010712383,0.01904279,0.014539164,0.037096344,-0.013029277,-0.022544164,-0.053184442,0.0009566952,0.013445798,-0.03902275,0.038580198,-0.035222,-0.044932134,0.029807238,0.040740896,0.076119095,0.045322623,0.0024259058,-0.007360696,0.038033515,-0.020773953,-0.0008663949,0.0040708357,0.026579205,0.021437783,0.04230285,0.004087106,0.0012796612,0.0022843538,0.012352432,0.051856786,0.033607986,-0.009475838,0.0028668316,0.025850294,-0.048368428,0.023207994,0.03964753,0.0059874803,-0.04368257,-0.026540156,-0.007334663,-0.04862875,-0.0694027,0.035950914,0.01465631,0.02962501,-0.019966945,-0.019225018,0.0014635159,-0.020149173,0.0034037523,-0.048967175,0.04683251,0.0033484332,-0.0005169896,0.0738803,-0.011480343,-0.0045654536,-0.004532913,-0.032332394,0.01044555,0.004653313,-0.056126118,-0.021633027,0.044307355,0.021593977,-0.0004085886,-0.008473586,0.021281587,0.018964693,-0.008161196,0.013641042,-0.013120391,-0.0040513114,0.05281999,-0.0050600716,-0.0018206496,-0.02816719,-0.026995726,-0.00489086,-0.0011128903,0.056074053,0.016179213,0.005336667,-0.042328883,-0.023975953,0.045426752,0.012495611,-0.0044678315,-0.0023006243,0.013484847,0.05633438,-0.032462556,0.036679823,0.027516376,-0.024978206,0.0013146424,-0.012157188,0.009033285,0.015411253,-0.003940673,-0.012345924,-0.021815253,0.015307123,0.026084587,0.0134588145,0.02290862,0.02631888,0.006078594,0.027125888,0.019849798,0.005134915,0.026383962,0.022414003,0.009840294,0.01935518,-0.015163944,0.018756432,-0.008890106,0.014513131,0.03902275,-0.0013048803,0.0052097584,-0.02440549,0.06534163,-0.040480573,-0.083460264,0.018600237,0.0066903583,0.030327888,0.05633438,-0.06398794,-0.002196494,0.026891597,-0.00049055036,0.003638045,0.012749428,0.036783956,-0.04839446,-0.031212995,0.0040643276,-0.03363402,-0.046520118,-0.039725628,0.07304726,-0.0013634533,-0.053626996,-0.00717196,-0.02172414,0.016335407,-0.040272314,-0.00946933,0.06789282,0.082106575,0.006970208,0.028531644,0.002333165,0.0074973665,-0.014213758,0.029651044,-0.028765937,-0.028089091,-0.03251462,-0.033217497,0.0062087565,0.02461375,0.014916635,0.006615515,0.037278574,0.03600298,0.043109857,-0.042589206,0.002699247,-0.016374456,0.02868784,0.0031613244,0.0396215,0.01925105,0.016036034,-0.051336136,-0.013953432,0.049696084,0.06466479,-0.026084587,-0.036445532,0.0023803487,-0.0049591954,-0.017780213,-0.030093595,-0.014591229,0.01723353,-0.03157745,-0.0019508122,0.019277083,0.03251462,-0.071381174,-0.046728376,-0.04488007,-0.006976716,0.004135917,0.05529308,0.025069319,-0.047509354,-0.027334148,-0.060499582,0.0130422935,-0.04521849,-0.019433279,-0.05602199,-0.0117211435,-0.014409001,0.025668068,-0.02060474,0.022999734,-0.029364685,-0.02534266,0.015163944,-0.004139171,0.028948165,-0.020136157,0.041678067,-0.017611,0.0048583196,0.00029550982,-0.02346832,-0.0045491834,0.013484847,-0.00783579,0.042459045,-0.023103863,-0.007608005,-0.01026983,-0.03222826,-0.024431523,0.05120597,-0.009892358,0.018431026,0.0331394,0.0043506855,-0.0138753345,-0.018847546,0.0055709598,0.012098615,0.05524101,0.0023575702,-0.008942172,-0.01444805,-0.013419765,0.036393467,0.013100867,-0.0065504336,-0.0038235267,-0.024223262,-0.028505612,0.003195492,0.047275063,0.00409036,-0.03964753,0.028661808,0.01068635,-0.035065807,-0.026045538,0.0037161426,0.06799695,-0.017402742,-0.016205246,-0.0015253432,0.024001986,-0.036757924,0.05727155,-0.009651558,-0.01517696,0.018899612,0.011844798,-0.008746928,0.023494352,0.037721124,-0.0015757811,0.048160166,-0.025707116,-0.04797794,0.009391232,0.020930149,0.024587717,-0.04573914,-0.014461067,0.014317888,0.0057759658,0.0019524392,-0.015007749,-0.019797733,-0.0019670825,-0.014773456,-0.022622261,-0.024795977,0.014851554,0.016218262,0.03769509,-0.030197727,0.014565197,0.06513337,0.052611727,0.0035176447,0.003917895,0.00058085064,-0.00039008108,-0.01775418,0.021242538,-0.010621269,-0.01604905,-0.0031580704,0.011786224,0.024015002,-0.031395223,0.042563174,0.010413009,-0.008753436,0.022921637,-0.01970662,-0.008890106,-0.01754592,0.014643294,0.0027513122,-0.012749428,0.02704779,-0.0102307815,0.0030555674,-0.024665816,0.019511376,-0.024041034,0.01068635,-0.0013447425,-0.0037324128,0.008473586,-0.0072500575,-0.06466479,0.03352989,0.010256814,0.007614513,0.0045101345,0.04787381,-0.0076926104,0.020839034,-0.010705875,-0.01987583,-0.017728148,0.01981075,-0.0020337908,0.022843538,0.03574265,-0.011656062,-0.03808558,-0.0010510631,0.04873288,-0.016270326,0.007022273,-0.01945931,0.024522636,0.03602901,0.013393733,0.012378464,0.0013748426,-0.05758394,-0.0025755926,-0.01127859,0.0022127645,0.02683953,0.021789221,0.011851306,0.025824262,0.024041034,-0.033686083,0.027620506,-0.013484847,-0.004122901,-0.03228033,0.010152684,0.011623521,-0.041808233,-0.018391978,0.039465304,0.008434537,-0.0037519373,-0.0197717,0.007874838,-0.012274334,0.03509184,-0.030822506,0.033738147,-0.022010498,0.002331538,-0.021229522,0.01378422,0.010575713,0.009501871,-0.021086343,-0.030588213,0.005326905,-0.030666312,0.045166425,0.0023803487,0.012768952,0.0033516872,0.016947173,0.048238263,-0.0014358563,-0.009632033,0.036705855,-0.010536663,0.016960189,-0.015710628,0.034102604,-0.026019506,-0.020344416,0.0524295,0.0007740608,0.035950914,-0.0013374209,0.0011153308,0.0385021,0.0045459294,0.009768704,-0.000923341,0.030718377,-0.018287847,0.03873639,-0.025642036,0.013797237,0.015268074,0.015723644,0.018404994,0.020839034,-0.013152932,0.01315944,0.010399993,-0.014278838,0.018287847,0.004126155,0.040402476,-0.039855793,0.025108367,0.023975953,-0.01737671,0.029052295,-0.041808233,0.02419723,-0.009423773,0.010107127,-0.037486833,0.026045538,0.0016693355,-0.0011193985,0.024015002,0.014890603,-0.011812257,0.025004238,-0.012293858,0.06471685,-0.038319875,0.017402742,0.005629533,0.013536911,-0.025355676,-0.0331394,-0.0047802217,0.0028668316,-0.030536149,-0.020578708,0.011922895,0.0014643294,0.032124132,-0.003193865,0.01987583,-0.037538897,-0.025837278,0.01127859,0.0043474315,0.03186381,0.009592985,-0.049800217,-0.02060474,-0.015567449,0.025876326,-0.036289338,-0.0069376673,-0.02126857,0.0019312878,-0.00041652037,0.016036034,-0.013471831,0.0022550672,-0.0074583176,0.014916635,-0.073932365,0.021034278,-0.00081432983,-0.05727155,0.0073997444,0.029546913,-0.017845294,-0.015463319,0.0016677085,-0.022453051,-0.007360696,-0.0074453014,0.022114627,-0.029364685,0.001298372,-0.029416751,-0.021125391,0.02301275,-0.005893112,0.032332394,-0.015229026,-0.029416751,-0.015645547,0.014539164,-0.044723872,-0.011994485,-0.027594473,0.025316628,0.06409207,-0.017884344,0.008486602,0.019420262,-0.008558191,0.0021118885,0.008473586,0.011083347,0.016452555,-0.02022727,-0.034441028,-0.026423011,0.02440549,-0.006840045,-0.016686847,0.016751928,-0.035768688,0.010055061,-0.0065341634,0.0040740897,-0.0037584454,-0.0013797237,-0.012801493,-0.004627281,-0.0057499334,0.02301275,0.01796244,0.03293114,-0.036107108,0.020175206,0.013484847,-0.03170761,0.00685957,0.013016261,0.020969197,-0.0037616994,0.020643791,-0.026579205,0.026097603,-0.008304374,-0.048993208,0.0022648294,-0.00016575395,0.0014561942,-0.012476087,0.010347928,0.009970456,-0.0018743416,0.027099855,-0.00054586946,-0.04068883,0.019420262,-0.042250782,-0.017584968,0.021919385,-0.001370775,-0.005164202,0.034519125,0.0057434253,-0.027308116,-0.011695111,-0.010647302,0.025355676,0.00056336005,-0.021919385,0.03951737,0.022400986,-0.009645049,-0.037825257,0.012612757,-0.009723147,-0.02816719,0.013862318,-0.0020728395,0.0034655796,-0.077264525,-0.0021135155,-0.0067684557,0.0033028764,0.0219324,0.051466297,-0.004233539,-0.0059549394,-0.03175968,0.03355592,0.054303844,-0.015163944,0.0076926104,-0.0070417975,0.022361936,0.0040122624,-0.01465631,0.0060948646,-0.0015497486,-0.0016546922,-0.01465631,-0.0224921,0.010107127,-0.008265326,-0.0010421145,-0.0036478073,0.005479846,-0.043083824,0.032254297,-0.026995726,-0.03134316,-0.0093652,-0.030614246,0.023962937,-0.026995726,-0.040402476,-0.0027984963,-0.01964154,0.011812257,0.012092107,0.015046798,0.017519888,0.008890106,0.016491603,-0.013081343,0.030223759,-0.026305864,0.012567201,-0.037200473,-0.004933163,0.017467823,-0.059197955,-0.010458566,-0.014148676,-0.017246546,-0.037434768,0.04016818,-0.04331812,0.032176197,-0.0077641997,0.009065826,-0.0129641965,-0.03826781,-0.050893582,-0.00440275,-0.0021314127,0.08434537,-0.011649554,0.006146929,-0.0023120134,-0.010413009,-0.032983206,0.046207726,0.010920643,-0.029364685,-0.025329644,0.011285098,-0.011955436,-0.014148676,0.00758848,0.047301095,0.011187476,0.0015001241,0.025212498,0.018391978,-0.0015285972,-0.031447288,0.03717444,0.01991488,0.009091859,0.024001986,-0.013523895,-0.011818766,-0.00088429224,0.0043702098,-0.015918888,0.019797733,0.05810459,0.00006843706,0.005219521,-0.012261318,0.0120465495,-0.003485104,0.0017832278,0.001173904,-0.04396893,0.039387207,-0.03714841,0.03459722,-0.015554432,-0.01862627,0.00034086333,0.017493855,-0.027177954,-0.0120465495,0.026292847,0.023312123,0.019068822,0.0063584438,0.013471831,0.0353782,0.01476044,0.026136653,-0.008688355,0.048342396,0.0067359153,0.0069636996,0.007965952,0.0075038746,0.011291606,-0.011018265,0.004331161,-0.023090847,0.009124399,0.021606993,-0.00078545004,-0.018951677,0.017884344,0.010953184,-0.0041619497,-0.017246546,0.0050568176,-0.02301275,0.022166694,-0.0017100113,0.010569205,0.013615009,-0.019003741,0.0006914889,0.0069832243,0.008551683,0.011597489,0.012014009,-0.018053554,0.002435668,0.007621021,0.010699367,0.035222,0.00685957,0.00223717,-0.012332908,0.00076999323,-0.025368692,0.0023022513,0.015853805,-0.0111419195,0.0024584464,-0.012970705,0.033399727,0.0010844172,-0.0043279068,-0.018613253,0.0045198966,-0.020786969,-0.016934156,-0.027099855,0.025563937,-0.009280594,-0.027099855,-0.009690607,0.030692345,-0.0007378593,-0.0048648277,-0.020253303,-0.010256814,0.043994963,0.002098872,-0.026188718,0.014057562,0.025837278,-0.023767693,0.009098367,-0.029364685,0.00068091316,0.010250306,0.023247043,0.01284705,-0.022583213,0.0037747158,-0.0138753345,-0.017324643,0.01646557,-0.0089031225,-0.0044938643,0.013927399,-0.020448547,-0.022674328,0.009130907,0.008473586,0.0077902325,-0.0038755918,0.00588335,0.00967759,0.015137912,-0.027334148,0.02332514,0.028063059,-0.00015578838,-0.0245747,0.01368009,0.009124399,-0.025251547,-0.0038528133,0.0417041,-0.0117992405,-0.011617013,0.012580217,0.010562696,-0.0054961164,0.042146653,-0.00428235,0.0006719645,0.040923126,-0.041443776,0.030458052,0.0028961182,-0.022427019,-0.025134401,0.008382472,-0.0030718376,0.004181474,0.004630535,-0.026201734,0.023142913,-0.021528896,0.0127168875,-0.018821513,0.06804901,-0.006068832,-0.010647302,0.047301095,-0.006189232,0.012443546,-0.009879342,-0.008642797,-0.006231535,0.030562181,-0.008473586,0.015931904,-0.005411511,-0.042719368,-0.011421769,0.0067098825,-0.0033842279,0.0028538152,-0.0011869203,-0.009065826,0.009963948,0.006172962,0.036914118,0.008467078,-0.027906865,-0.01841801,0.02983327,-0.0026471822,0.031108864,0.01918597,-0.027802734,-0.007913887,-0.0068009966,-0.010094111,-0.024080083,0.01625731,-0.01883453,0.00818072,0.0009916764,-0.021424767,0.0052878563,-0.019602489,0.015502367,0.011519391,-0.018613253,-0.00043319745,-0.01246307,-0.009866326,-0.016374456,-0.009020269,0.04581724,-0.011109379,-0.026787465,-0.033269566,0.00016677084,-0.02047458,0.00029042532,0.012938163,-0.013927399,-0.0024617005,-0.018613253,0.020500612,0.022544164,0.023520384,0.020071074,-0.0032589464,0.0267354,0.012606249,0.04563501,0.06534163,0.01827483,-0.02983327,0.0015017511,0.02141175,-0.008206753,0.030327888,-0.036966182,-0.018196734,0.014812505,0.042849533,0.021841286,-0.0029969942,-0.03808558,0.009710131,-0.043213986,0.017923392,-0.015398237,-0.006566704,0.008310882,-0.014330904,-0.005167456,0.05737568,0.018704368,-0.028974198,0.013940416,0.0074908584,-0.0017555682,0.014981717,0.0066480553,-0.018821513,-0.007412761,-0.003979722,0.004171712,0.00967759,-0.0385021,0.0024730896,0.010679842,-0.002336419,0.004406004,0.002839172,-0.015085847,-0.015684595,0.010901119,0.0080765905,0.012118139,-0.03561249,-0.0013325397,-0.01138272,-0.0048030005,0.007848806,0.036783956,-0.0037584454,0.003693364,-0.0018824767,-0.02374166,-0.01910787,-0.00030649226,0.0067879804,-0.0112265255,0.02683953,-0.015255058,0.055188946,-0.009130907,-0.002695993,0.025889345,-0.012170204,0.0016205246,0.002788734,-0.034310866,0.011610505,0.003638045,-0.011701619,-0.027412247,0.0050177686,0.0016270326,-0.0064690816,0.013992481,-0.0052618235,-0.03095267,-0.007913887,-0.013510879,0.03467532,0.03064028,0.012912131,-0.012840542,-0.01619223,0.025121383,-0.037616994,-0.0007175214,0.028531644,0.018300863,-0.008187228,-0.036783956,0.013393733,0.0072565656,0.015046798,-0.002434041,0.013549928,-0.04146981,-0.012404497,-0.0067619476,-0.01382327,-0.029416751,0.0037226507,0.013484847,-0.03004153,0.012202745,-0.035638522,-0.040220246,-0.030666312,0.015359188,0.0062380433,0.023299107,0.016296359,-0.0064886063,-0.054147646,-0.01671288,-0.02290862,0.039152913,-0.0029693346,0.017415758,-0.0018531902,-0.028037027,-0.053626996,-0.002344554,0.014851554,0.030588213,-0.026409995,0.010881594,-0.004122901,-0.019537408,-0.0138753345,-0.00797246,-0.04667631,0.021958433,0.013198489,0.0038593214,0.029026262,-0.019290099,-0.016803993,-0.020734904,-0.0027838529,-0.010504123,-0.01246307,0.0033516872,0.023312123,0.007224025,0.014968701,-0.0106407935,0.00668385,-0.030015498,0.03136919,0.043526378,-0.045869306,0.014356936,-0.025602985,0.010959692,-0.015463319,0.012066075,-0.033477824,-0.0007549432,0.02764654,-0.040480573,-0.011714635,-0.0012308502,-0.004435291,0.0075168908,0.01444805,-0.0006418644,-0.0078292815,0.0034135145,-0.029703109,-0.034727383,-0.00766007,-0.06346729,0.03509184,-0.013328652,-0.022791473,-0.015020765,0.048238263,0.00466633,-0.0013244046,0.03509184,-0.022075579,-0.0123264,-0.048420493,0.002242051,0.022062562,0.034623254,0.00866883,0.025004238,0.01775418,0.006410509,-0.00016402523,0.030379955,-0.0031548163,-0.009007253,-0.018886596,0.008050557,0.01904279,-0.040116116,-0.00028635774,0.010751432,0.032774948,-0.0063519357,0.0060623237,0.015242042,0.021190474,0.009788228,-0.021151425,-0.004191236,-0.005183726,0.013432781,0.009443298,0.005623025,0.03303527,0.005837793,-0.021099359,0.027099855,-0.015515383,-0.02858371,0.0017132654,-0.01677796,-0.012599741,0.015606497,0.0055644517,-0.019979961,-0.031447288,0.00558723,0.00398623,0.014500115,-0.021698108,0.027594473,-0.021424767,-0.009215513,0.021997482,-0.03457119,0.00048363546,-0.004415767,0.03355592,0.00022839471,-0.0016660815,-0.03561249,-0.026253799,0.012651806,0.04094916,0.02374166,0.033868313,-0.0036055043,0.003839797,-0.015853805,0.004663076,-0.007978968,-0.02286957,0.022335904,-0.020917132,-0.011896863,0.036107108,0.028219255,0.014356936,0.022140661,0.018769449,0.009130907,-0.018300863,0.034961678,-0.005629533,0.010406501,-0.0047053783,0.012469579,-0.012124647,-0.04745729,0.011421769,-0.019368196,-0.02332514,0.038059548,-0.005326905,0.042433012,-0.025954425,0.035143904,0.009195989,0.015346172,-0.025043286,-0.04501023,-0.03975166,0.014474083,0.030015498,0.02301275,-0.035013743,0.02517345,-0.01692114,-0.034519125,-0.044099092,0.022817506,0.03274891,0.015827773,0.02461375,0.055553403,-0.014747424,0.043760672,0.03498771,-0.023168946,0.012938163,0.008512635,-0.018756432,0.021216506,0.065185435,0.0019654555,0.0105561875,0.027177954,-0.021281587,0.044281323,0.009163448,-0.0037324128,-0.0040773437,-0.019407246,-0.005590484,-0.031837776,0.010159192,0.018105619]},{"id":"enum-GatewayOpcodes","type":"enum","source":"main","text":"Enum: GatewayOpcodes\nMembers: Dispatch=0, Heartbeat=1, Identify=2, PresenceUpdate=3, VoiceStateUpdate=4, Resume=6, Reconnect=7, RequestGuildMembers=8, InvalidSession=9, Hello=10, HeartbeatAck=11","meta":{"url":"/docs/typedefs/GatewayOpcodes"},"embedding":[-0.0059410767,0.0020143273,0.030109607,-0.0054926933,0.0063079353,0.035598904,-0.06766509,0.016073857,0.03627827,-0.015937982,0.05233854,-0.0042120838,0.013268065,0.03385972,0.04562638,-0.02023159,-0.022174584,0.035626076,0.013872703,0.03866965,-0.004083004,0.0043785293,-0.013764003,0.040055558,-0.033832546,0.027650293,-0.0023302336,0.019823968,-0.012384886,-0.06326278,0.02921284,-0.036169574,0.032283586,-0.025421964,-0.0034036355,-0.010897069,-0.050463483,-0.0055538365,-0.019334825,-0.028968267,0.012914793,-0.055626683,-0.033941243,-0.03339775,-0.037338085,-0.0069703194,-0.05073523,-0.04744709,0.005258311,0.020448988,-0.036332622,0.030163957,-0.007826324,0.088317886,0.011134848,-0.0014164831,0.027364958,-0.012344124,0.01822066,0.01584287,-0.015476012,-0.004446466,0.0019328031,-0.006450603,0.03788158,0.04448504,-0.03529998,-0.0049729766,0.05858873,0.033560798,-0.02142728,0.028153026,-0.0040422417,-0.007214892,0.013879496,0.0385066,-0.018967966,0.028941093,-0.0103535745,-0.042365413,-0.008831789,0.0012491886,-0.024892058,-0.06380628,0.023805069,-0.0061618714,-0.068045534,-0.031006373,0.015258614,-0.016250491,-0.0014614912,-0.0064268247,-0.022840366,-0.0026240603,0.0056421543,-0.029620461,0.043860022,-0.022079471,-0.020204416,0.03524563,0.07516532,-0.04432199,-0.041767567,-0.042609986,0.02755518,-0.0043819263,-0.02591111,0.020190828,-0.018560344,0.022622967,-0.10174221,0.009891603,0.00051334774,-0.009735349,0.03467496,0.004392117,0.009042393,-0.041577347,0.0071265744,-0.01646789,-0.020612037,0.020571275,0.011997646,-0.025924698,-0.018071199,0.00730321,0.008811408,-0.0036210334,-0.01868263,-0.006124506,0.010455479,-0.037854407,0.057338692,-0.017568467,-0.032962956,0.048697125,-0.026726352,-0.019674508,-0.025435552,-0.036821768,-0.021400103,-0.050191734,0.019688096,0.059838768,-0.038479425,0.011787041,-0.045952477,0.02286754,-0.04676772,0.023370272,-0.03948489,0.051903743,-0.027364958,-0.0103263995,-0.019389173,-0.007914642,-0.008172802,-0.006396253,-0.025775237,0.03483801,-0.009599475,-0.033098828,0.029131316,0.0056387577,-0.042827383,-0.040490355,-0.022949064,0.010516622,-0.051496122,-0.005149612,0.04274586,-0.015000454,-0.0408708,-0.023288747,-0.027324196,-0.03483801,-0.019266887,0.035218455,-0.074187025,-0.024552373,0.037147865,-0.0031522692,0.010095414,-0.049974337,-0.010523416,-0.021644676,-0.0039675115,0.014062925,-0.004708023,-0.01962016,0.011114467,0.040599056,0.0021637883,0.047039468,0.028832395,-0.04084363,0.017473355,-0.02823455,-0.0014351656,-0.055708207,0.006487968,-0.066741146,0.058860477,-0.040381655,-0.019361999,0.009144299,0.0037738914,-0.029022617,0.030843325,0.031359643,0.0487243,-0.03328905,0.020381052,-0.0116104055,-0.08636131,0.028778045,-0.028044326,0.005244724,-0.01254114,-0.012615871,-0.042555634,0.008546454,-0.010231288,0.0007655632,0.017106496,0.020326702,0.010265256,-0.06652375,0.010244875,-0.028778045,-0.020353876,-0.013668892,-0.0191446,-0.058316983,-0.013138984,0.019239713,0.02023159,0.01879133,0.01574776,0.017772276,-0.032039013,-0.025938286,-0.000552836,-0.0035904618,-0.016603762,0.0058323774,0.00458234,-0.0021535978,-0.03608805,-0.0002186717,0.035571728,0.05250159,0.0061177122,-0.011590024,-0.017065734,0.014049338,0.031658567,-0.008159215,0.0040286547,0.033751022,0.010007096,0.005907108,0.01532655,0.027120385,-0.048126455,-0.020054955,0.032691207,0.0072760354,-0.019429935,0.005183581,-0.055871256,0.019647334,0.049593892,-0.019878319,-0.019484285,-0.04171322,0.020027779,0.0056353607,0.05755609,-0.007310004,-0.009307347,0.005998823,0.01832936,0.026862226,-0.028071502,0.026454605,0.0046536736,0.021291405,0.0010470765,0.050001513,-0.039403368,0.0033356987,0.027962802,-0.031930313,0.045762256,0.02250068,0.029076967,-0.04527311,0.051115677,0.014538484,0.031712916,0.016209729,-0.05027326,0.003199825,-0.024348563,0.026400255,0.020870196,-0.012473203,-0.019538635,-0.04918627,0.0033747624,0.014280323,-0.0122286305,0.012405267,-0.019158188,-0.030897673,0.02864217,0.027623119,0.04125125,-0.018546756,-0.004555165,-0.01563906,0.03467496,-0.026699178,0.038751174,-0.022636555,-0.011990852,-0.010306018,-0.005506281,0.016128205,0.00096894917,-0.06364323,0.014728706,0.029946558,0.007065431,0.05337118,-0.06451282,0.06603461,0.016793987,0.04160452,-0.011841391,-0.016168967,-0.033886895,-0.029348714,0.0060871406,-0.00008051577,-0.040653404,0.007153749,-0.02390018,0.005621773,0.025109455,0.016943447,-0.028261725,-0.01563906,0.024090402,-0.04866995,0.039675113,-0.029294364,-0.021033244,0.079513274,-0.029348714,-0.00916468,-0.012568315,0.024239864,0.015217852,0.034457564,-0.023750719,-0.029158492,-0.0053602164,0.015258614,0.009735349,0.0153809,-0.033886895,-0.006420031,0.004748785,0.020014193,-0.014986866,-0.0021654868,-0.013465081,0.022677317,-0.012099551,0.021658264,0.023152875,0.018859265,0.0004878714,-0.00027068585,-0.01006824,0.004674054,-0.06413238,-0.014389022,0.02502793,-0.02203871,-0.020299528,-0.025000757,-0.024579547,-0.047419913,0.038180504,0.03679459,0.004144147,-0.032745555,0.0563604,0.012908,-0.007812737,-0.005652345,-0.021957185,-0.011882153,0.008417374,0.013356382,0.0485069,0.028288899,0.055327762,0.015190677,0.024212688,0.002117931,0.05951267,-0.041495822,0.006059966,-0.059132222,0.0030011097,0.023302335,-0.028479122,0.031441167,-0.061197504,0.052718986,0.0271068,-0.0008190635,-0.025462726,-0.04671337,0.06440412,-0.020761497,-0.042908907,0.024661072,0.01962016,0.033153176,0.046550322,-0.029919384,0.016427128,0.019959843,0.020612037,0.002933173,-0.036876116,0.004507609,-0.022786016,-0.012575109,0.0075477827,0.01842447,0.00931414,-0.06516501,0.073208734,-0.0243078,-0.037745707,-0.009436427,-0.032120537,0.047691662,-0.04676772,-0.03252816,0.029158492,0.051387426,-0.031468343,-0.02869652,-0.048425376,-0.003147174,0.0072080987,0.038723998,-0.044539392,0.028044326,-0.031169422,-0.009246204,0.010876688,0.07483922,-0.031821616,0.0003647359,0.009776111,0.020000605,0.0025068694,0.005523265,0.022378394,0.054322295,0.040436007,0.027758991,-0.014212387,-0.017745102,-0.019321237,-0.007004288,0.050816756,0.06527372,0.03453909,-0.016698875,-0.053969026,-0.0070314626,-0.005350026,0.0135262245,0.03655002,-0.017106496,0.007914642,0.008587216,-0.008580423,-0.044675265,0.0066680005,-0.019579398,-0.05250159,-0.049566716,0.01532655,0.010482654,0.053425528,0.00041292858,-0.007622513,-0.009395665,-0.019878319,-0.06978472,-0.020843022,-0.023682782,0.0016644525,-0.0563604,-0.03437604,0.0012245615,-0.0119297085,0.016902685,-0.022337632,-0.011569643,-0.01661735,0.020910958,0.02157674,0.0013459986,-0.0008296786,-0.014565658,-0.0035055408,-0.010441892,0.010761195,0.016957035,0.035218455,-0.04342523,0.007214892,0.015190677,-0.004062623,0.0052345335,-0.00021845939,-0.020639211,0.004443069,-0.040218607,-0.021359341,0.03149552,-0.0012891016,0.00068573747,0.0109582115,-0.020313114,0.0035157313,0.004446466,0.008471724,0.012677014,-0.031468343,-0.0073303846,-0.0131933335,0.024851296,-0.004317386,0.022894714,0.004643483,-0.024199102,0.025761649,0.0040965914,0.030462878,-0.030598752,0.016726049,-0.017024972,-0.025816,0.009463602,-0.019402761,0.03638697,-0.018492408,-0.025557838,-0.015394487,0.008940488,-0.011732692,0.027487244,0.003481763,-0.020843022,-0.011549262,0.018451646,0.02115553,-0.012772125,-0.009320934,-0.05538211,0.024076816,0.031441167,-0.05940397,-0.01764999,-0.018764155,0.030952023,-0.021128356,0.025231741,-0.00082246034,0.026033396,0.029566111,-0.0023947735,0.009157886,-0.016372778,-0.007880673,-0.025870347,-0.01254114,0.0046129115,-0.0048167217,0.010801957,-0.026468191,0.003994686,0.03163139,0.021549566,0.009273378,0.019416349,0.024633897,0.019022314,0.009830461,0.036984816,-0.0048438967,-0.025802411,-0.028913919,0.0031862378,-0.024661072,0.008573629,0.014103687,-0.020503338,0.004449863,-0.00026091991,-0.003187936,0.022065885,0.004422688,0.04584378,-0.027582357,-0.011685136,0.0192533,-0.019076664,-0.0007893411,-0.04809928,-0.022541443,-0.0057814247,-0.03902292,0.01517709,-0.011875359,-0.040789276,0.016454302,-0.028723694,0.0064336187,-0.0010131081,0.018804917,-0.0036414145,0.050300434,-0.009524745,-0.025924698,-0.026305143,-0.021753376,-0.0037535103,-0.015258614,-0.022799604,0.042800207,0.014484134,0.024117578,-0.010903862,-0.018546756,0.032962956,-0.025204567,-0.0037704946,-0.050436307,-0.02080226,0.023288747,0.021848487,0.00458234,0.017541291,-0.026142094,0.03029983,-0.012418854,0.0059172986,-0.003977702,0.032337934,0.07396963,0.013145778,-0.0038588124,0.012092757,-0.022269696,-0.00866874,-0.0057066944,0.013431113,0.006039585,0.03782723,-0.03448474,0.04934932,0.035626076,0.0046061175,0.04543616,-0.03149552,0.025816,-0.016630938,0.02648178,0.012935174,0.0125479335,-0.001553206,-0.0018716599,-0.0045313872,0.03467496,-0.0009256394,0.0053466293,-0.046523146,-0.0128740305,0.0072964164,0.0032303967,-0.025992634,-0.031060722,-0.02338386,0.008315469,0.0271068,-0.005791615,0.0040456387,-0.0037433198,0.020068541,-0.038071804,0.0030639514,0.0054825027,0.0035598902,-0.049784116,-0.036713067,0.039213143,-0.025381202,0.02126423,0.05842568,0.018451646,-0.026033396,-0.011888946,0.018777741,0.00091969495,0.009470395,-0.040137082,0.034973886,-0.016848335,0.060056165,0.008960869,0.016114619,-0.016943447,0.01682116,-0.0005944473,0.0039471304,-0.008315469,-0.013784384,0.01574776,-0.01868263,0.007880673,-0.027989978,-0.018179897,-0.007092606,-0.010360368,-0.006420031,-0.028424773,0.013247684,0.0063317134,0.011005768,-0.036414146,0.0030079035,0.029348714,-0.029593287,0.03293578,0.01652224,0.005584408,0.022120234,-0.011311484,0.0068004774,0.0019820572,0.053561404,0.022160996,0.03701199,-0.060164865,-0.024267038,0.00012377242,0.03655002,-0.013437906,0.008322262,-0.0128740305,0.010761195,0.030544402,-0.032908604,-0.0245252,-0.050816756,-0.014538484,-0.011977265,-0.03304448,-0.017432593,0.018750567,-0.03467496,-0.002727664,0.0039810985,0.04274586,0.020516925,-0.012350917,-0.032392286,-0.0064404123,-0.0026767114,-0.0408708,-0.03937619,-0.013043873,-0.039185967,-0.016807573,-0.10505752,0.036223922,0.03845225,-0.030028082,0.027962802,0.0056149797,0.012955555,0.022025123,-0.010767989,-0.047691662,0.028941093,-0.021345755,-0.010299224,-0.025802411,0.030163957,-0.031033548,0.013634923,0.031875964,-0.019117426,-0.005798409,0.013940639,0.0027310608,0.023927355,0.010897069,-0.006810668,0.02404964,-0.0022283283,-0.024375737,0.03035418,0.003328905,0.0005927489,-0.026998099,-0.012486791,-0.032555334,0.023614844,-0.022989826,-0.007343972,-0.0036006523,0.01847882,-0.010693259,0.00846493,-0.014620008,-0.019701684,0.019796794,0.00478615,0.006963526,-0.030408528,0.020068541,0.015489599,0.014321085,-0.01692986,0.000089591704,-0.008016547,-0.0072284797,-0.015489599,0.024470849,-0.013566987,0.054023374,-0.02244633,-0.05106133,0.042148013,0.015258614,0.011066911,-0.001868263,0.021074006,-0.04361545,-0.004239259,0.017079322,0.02487847,0.024810534,0.026128508,0.014361847,0.0115085,-0.03937619,-0.009076362,0.03665872,-0.0034715724,-0.0034545881,0.01641354,0.021141944,-0.019674508,-0.00704505,0.028207375,0.0059410767,0.023764307,-0.04206649,-0.004901643,-0.011753073,-0.006681588,-0.015530361,-0.01267022,-0.031604216,0.013465081,0.023560496,-0.0112978965,-0.027677467,-0.010550591,-0.026699178,0.005608186,-0.0027395529,0.026128508,-0.014647182,-0.003804463,-0.033886895,-0.006127903,-0.006549111,-0.0144705465,0.026712764,-0.0015633965,-0.02972916,-0.008804614,0.031169422,0.006036188,-0.006922764,-0.03913162,-0.0025425362,0.03809898,0.003159063,0.0003010451,-0.030435704,-0.013764003,0.0063453005,0.015231439,0.030109607,-0.037310913,0.023750719,0.018777741,0.00091120286,-0.0017459767,0.023818655,-0.035843477,-0.01842447,-0.04263716,-0.0015175391,-0.0033815561,0.019117426,-0.006124506,0.010367162,-0.058969174,-0.018981552,0.009280172,-0.0071469555,0.01532655,-0.0028057913,0.017677166,0.0043037985,0.007323591,-0.0023862815,0.00033734887,-0.0029688398,-0.0030214908,-0.07168695,-0.016060269,-0.005601392,-0.005587805,0.03231076,0.0028720298,0.02292189,0.009171473,0.0112911025,0.030625926,0.027677467,0.0073167975,0.000633511,-0.030462878,-0.01604668,-0.0034681757,-0.008227151,0.0028839188,0.0051462157,-0.020965308,-0.00046451812,-0.0045211967,-0.007880673,-0.007839911,0.030218305,0.027052449,0.0042834175,-0.01434826,0.006416634,0.008403786,0.012038408,0.020978896,0.033751022,0.054838616,0.040436007,0.048860174,0.0011404897,-0.040490355,-0.0069057797,0.026060572,0.03758266,0.030571576,0.02266373,-0.026210032,-0.0459253,0.047501437,0.015299376,-0.027758991,-0.019022314,0.014647182,0.008573629,-0.0006555905,-0.011372627,0.0040456387,0.014239561,-0.03179444,0.02343821,-0.009327728,0.04144147,-0.00077575375,-0.00562517,-0.011331865,0.035028234,-0.038914222,-0.008492105,-0.036169574,-0.029022617,0.012174281,0.0064268247,0.013030286,-0.0059886323,0.009986715,0.04584378,0.029185666,0.030897673,-0.07168695,-0.009001631,-0.0614149,0.008376612,0.0058765365,-0.053914674,-0.021481628,-0.0050069448,0.034240168,-0.020775085,0.0052277395,0.00062204665,-0.011182403,0.040082734,0.019525047,0.0054451376,-0.01951146,0.006566095,0.028533472,0.0141444495,0.007452671,0.020612037,0.015706997,0.036223922,0.0013281652,0.0043479577,0.007799149,-0.036305446,0.02596546,-0.0029841256,-0.009252997,-0.0069159702,0.033153176,0.0023421224,-0.0016788892,0.01626408,0.0070858123,-0.012255806,0.010387543,0.014062925,-0.034511913,-0.0057644406,-0.010407924,0.021046832,0.022989826,0.01460642,0.022595793,-0.001666151,0.01158323,-0.02565295,0.002243614,-0.01169193,-0.028424773,0.011114467,-0.028805219,-0.024905644,-0.003634621,0.014429784,-0.01460642,-0.0030045067,-0.028533472,-0.017717928,0.009123918,0.008471724,0.013750416,0.023343097,-0.0026053777,-0.039865337,0.006073553,0.008043721,-0.025951872,0.0053873914,0.020625625,0.016128205,-0.014334673,0.0009222426,-0.026767114,-0.00005190799,0.016875511,0.05062653,-0.008614391,0.0017731515,-0.0011269023,-0.0069771134,-0.0059546637,-0.010537003,0.03793593,0.024565961,0.00006767146,0.035218455,-0.0063486975,-0.03304448,-0.024919232,0.005074882,-0.0128808245,-0.006769906,0.015815696,0.00086619466,-0.010849513,-0.03282708,0.023818655,-0.004901643,0.03866965,-0.032990128,0.030897673,-0.011990852,0.020014193,0.00065261824,-0.0017748498,0.040626228,0.0061822524,0.065001965,0.00898125,-0.012194662,-0.03426734,-0.015027628,-0.0035157313,-0.0048404997,0.0069125732,-0.008227151,-0.013417525,-0.01305746,0.035082582,-0.006793684,0.06456717,-0.0061958395,-0.0020398037,0.042256713,0.0020601847,0.011019355,0.005547043,0.01091745,-0.005845965,-0.010278843,-0.015829284,0.00911033,-0.009429633,-0.0060463785,-0.006382666,0.019959843,-0.0061584744,0.03029983,0.03385972,-0.006701969,0.005903711,0.015557536,0.007500227,0.016033094,-0.0055164713,-0.06250189,0.0097081745,-0.008994837,0.0459253,0.030462878,0.00665781,0.008831789,0.0081116585,0.013376763,-0.035463028,-0.0055164713,0.010829132,-0.025041519,0.020041367,-0.0036753828,0.01615538,-0.02013648,0.016563,-0.0040218607,-0.023261573,0.007663275,0.04309913,-0.027582357,-0.009952746,-0.0035361124,0.01532655,0.011739486,0.0006254435,-0.024864882,-0.001154077,-0.029674811,0.004181512,0.046387274,0.00942284,-0.029403063,-0.029185666,0.0054892963,0.0023879798,-0.0028074898,0.007092606,-0.0073983218,-0.001912422,0.013179746,0.0020398037,0.054376643,0.02120988,-0.010469067,-0.011800629,-0.027514419,-0.022881128,-0.018560344,-0.0116036115,-0.0076157195,0.009952746,0.014620008,0.02978351,-0.010856307,-0.022758842,0.011168816,-0.0618497,0.03195749,0.009986715,0.0037501135,0.0071877176,-0.024959994,0.019891907,0.007384734,-0.019266887,-0.010047859,0.0015447139,-0.0077515934,-0.003293238,0.014973279,-0.034756485,-0.02152239,-0.007778768,0.01125034,0.018981552,0.014389022,-0.024076816,-0.017269544,0.038615298,0.004602721,-0.02611492,0.016535826,-0.010435098,-0.016128205,0.00877744,0.003869003,0.005203962,-0.038479425,0.03035418,-0.021766962,-0.00338835,0.00042333142,0.013098222,0.047148164,0.051523298,0.00229117,-0.0067495247,0.01676681,0.029566111,0.023057763,-0.027595943,-0.00070611853,-0.021644676,0.015204264,0.012473203,0.00073456706,0.000037206035,0.020639211,0.028044326,0.014266736,-0.024647485,0.009171473,-0.005584408,0.021454453,-0.027908454,-0.014823818,0.0069771134,0.0138251465,0.024185514,-0.026087746,0.0034477946,-0.010910656,0.02115553,-0.004983167,-0.008186389,-0.023546908,-0.013736828,-0.050545007,0.031359643,-0.028805219,0.0061550774,0.003587065,-0.00497977,-0.010156557,-0.038914222,0.013750416,-0.03127812,0.007310004,-0.0029960147,-0.017894562,-0.00458234,-0.0072013047,-0.003909765,-0.029348714,-0.025870347,-0.00704505,0.027025275,-0.02554425,-0.0054247566,0.004918627,-0.023886593,-0.046985116,-0.011848184,0.012045201,0.00043288505,-0.003587065,0.032691207,-0.025788823,-0.016250491,0.00088912336,0.040381655,0.018750567,0.00530247,-0.014130862,-0.033941243,-0.031169422,-0.010428305,0.021277817,0.010197319,0.00048277614,0.00872309,0.015204264,-0.049267795,-0.030272655,-0.019090252,0.024402913,0.0153809,-0.019783206,-0.033995595,0.0057236785,0.010632115,-0.012975936,-0.0061992365,0.00094262365,0.021386517,-0.021753376,0.025326854,0.04263716,0.0034155245,0.01879133,-0.022065885,0.04815363,-0.011141641,0.008267913,0.019103838,-0.060925756,0.013172952,0.013077841,-0.022487093,-0.01331562,0.015761346,-0.012690601,0.03597935,0.020639211,0.009409252,-0.025313266,0.008199977,0.0005248121,-0.015503187,-0.014389022,0.0047385944,0.0057882187,0.024864882,-0.015149915,-0.030625926,0.0066068573,-0.016332015,-0.003933543,0.0022011534,-0.014062925,-0.039865337,0.02493282,0.01506839,0.024063228,-0.017731514,-0.015000454,-0.0065049524,0.00704505,0.017269544,-0.018451646,-0.0135330185,-0.005716885,0.017106496,0.007520608,-0.019891907,-0.011128054,0.017921738,0.01298273,-0.013797971,0.035544552,-0.021359341,-0.0047182133,-0.0069771134,0.016250491,-0.033669498,0.018872853,0.00063520944,-0.017378243,0.022269696,0.012649839,0.009565507,0.010944624,-0.02203871,0.04837103,0.02983786,0.026441017,0.0044158944,-0.009307347,-0.0053602164,-0.013927052,-0.0062569827,0.0020975498,-0.009932365,-0.0048710713,-0.020421814,-0.030788975,0.02519098,-0.0049729766,-0.00032524762,-0.040707752,0.02875087,0.007323591,0.013709654,-0.0103331935,0.042501286,-0.008084483,-0.0011353944,0.016005918,-0.0065626986,-0.0020686768,0.0048201187,0.015598298,0.0033985402,0.02085661,-0.021182707,0.024212688,0.028533472,-0.004745388,0.027799753,0.03524563,-0.0052956766,0.020177241,-0.020245178,0.0015464122,0.009416046,0.0059206956,0.00020954269,0.01713367,-0.0015455631,-0.00872309,0.016332015,-0.02864217,0.0002989221,-0.0014309196,-0.0070586377,0.02436215,0.00438872,0.005217549,-0.023886593,-0.0070110816,0.041984964,-0.018723393,-0.007853499,0.00802334,-0.009483983,-0.037854407,-0.01661735,0.014307498,-0.018519582,-0.018111961,0.03225641,-0.0385066,0.00607695,0.022079471,0.0096945865,-0.007602132,0.013634923,-0.012581903,0.007133368,-0.0087366775,0.0383979,-0.030163957,-0.043887198,-0.04589813,0.021535978,0.0035530967,-0.0069907005,0.023084937,0.008539661,-0.022568617,0.023465384,0.007452671,-0.008702709,-0.02023159,-0.013797971,0.014769468,0.012690601,0.00859401,-0.005981839,-0.0144705465,-0.014266736,-0.0122286305,0.011685136,0.038615298,0.014239561,-0.0047963406,0.009993508,0.020815847,-0.028832395,-0.03644132,0.0010148066]},{"id":"enum-GuildExplicitContentFilter","type":"enum","source":"main","text":"Enum: GuildExplicitContentFilter\nMembers: Disabled=0, MembersWithoutRoles=1, AllMembers=2","meta":{"url":"/docs/typedefs/GuildExplicitContentFilter"},"embedding":[0.028283473,0.043647654,0.019520486,-0.0043300223,0.017924877,-0.012797049,-0.031011453,0.016509416,0.006504684,0.003850696,0.08106728,-0.008724384,0.027691554,0.037496835,0.03657035,-0.009001042,-0.0062473277,0.018285176,0.011838397,0.03716227,0.05836844,-0.0056425403,0.007308923,0.01778333,-0.072471574,0.007817202,0.024268713,0.007476205,0.026610658,-0.012269469,0.027614348,-0.028334945,0.015145427,0.027151106,-0.045655034,-0.017410163,0.0045841616,0.02309774,-0.0033906712,-0.04485723,0.07149362,-0.017628917,-0.0419491,-0.0042302967,0.024178639,0.03883509,0.015402784,0.005861293,-0.012346676,-0.022608764,-0.0112143075,-0.024487466,-0.006395308,0.041099824,-0.008023087,0.014373357,-0.042618226,-0.006244111,-0.039993193,-0.005652191,0.009116853,-0.015582933,-0.0140130585,0.041099824,0.050544806,-0.0038989503,-0.038629204,-0.011027724,0.020382632,0.04321015,-0.044780023,-0.027743025,-0.016741037,0.002140884,-0.0067877765,0.0037799228,0.0062730634,-0.023805471,-0.019121584,-0.04864037,0.009933959,0.03355928,-0.05476545,-0.04920655,0.010513011,0.009116853,-0.039375536,0.034640178,0.013125179,-0.0053562312,-0.056566946,-0.04004466,-0.08683207,-0.018594004,0.013041538,-0.0794202,0.016277796,-0.008074558,-0.032632798,0.075096615,0.08039816,0.0057615675,-0.019044377,-0.056927245,-0.0021473179,0.024976443,-0.034588706,-0.0140130585,-0.027923174,-0.04094541,-0.022544425,-0.011085629,0.00068360305,0.01418034,-0.0041209203,-0.0022776045,-0.030831303,0.0111371,-0.012552561,0.004207778,-0.05147129,-0.025993,-0.00011852471,-0.07694958,-0.019250263,0.009811714,0.0112722125,-0.042618226,-0.033301923,-0.00998543,0.0040308456,0.004474785,0.058986098,-0.0125203915,-0.005813039,0.0523463,-0.010911914,0.010487275,-0.029776141,-0.022737442,-0.022428615,0.019829314,0.026211753,0.10891325,-0.04385354,-0.0022470434,-0.038757883,-0.0033424168,-0.038629204,0.0126169,-0.058986098,-0.005796954,0.018606871,-0.005301543,-0.04622122,-0.077567235,0.024062827,0.0010294258,0.0023081657,0.009715206,0.0026314696,-0.038243167,0.04058511,0.0013422747,-0.010069071,-0.0020411583,0.03214382,0.009734508,-0.065522954,-0.020768665,0.0018433155,0.0113301175,-0.009245531,-0.055228695,0.0019366073,0.0070515666,-0.032890156,0.0017805849,-0.04920655,-0.04390501,0.03965863,-0.010172013,-0.01309301,-0.010706028,-0.015570065,0.025787117,-0.0041659577,-0.022763178,0.0056972285,0.0021682282,0.0014645191,0.053427197,0.013099443,0.027331255,0.0638244,0.0023918066,0.019481882,0.024577541,0.0050860066,-0.024603276,0.015608668,-0.02990482,0.020009464,-0.025105122,0.015055352,-0.010358597,0.019893654,-0.009303436,-0.017410163,0.020601384,0.028026117,-0.013434007,0.021849563,-0.015853157,-0.0263533,0.05625812,-0.041408654,-0.03350781,0.023560982,-0.009303436,-0.039221123,0.016046174,0.0072059804,0.015595801,-0.0057712183,0.008724384,-0.057596374,-0.014875202,-0.03327619,0.020884477,-0.034949005,0.00198647,-0.040996883,-0.01890283,-0.017731858,0.024140036,-0.018696945,0.084258504,-0.00009022555,-0.0057937372,-0.044342518,-0.04421384,-0.014836599,-0.005629672,-0.033096038,-0.010551615,0.018478192,0.0042689,-0.04655578,-0.012790616,0.0397101,0.07612604,-0.051497024,-0.005159997,-0.03126881,-0.011574606,0.015608668,0.04951538,0.008396254,-0.0023708963,-0.026314696,0.015711611,-0.0026025171,-0.061765548,-0.044007953,0.03250412,0.04467708,-0.047302116,0.007913711,0.022055447,-0.012964332,-0.004156307,0.0360299,-0.038732145,-0.028463623,0.008724384,0.02676507,-0.005710096,0.015055352,-0.027202576,-0.03402252,-0.035669602,0.02293046,0.017976347,-0.020935947,0.0073603946,-0.005147129,0.0005750308,0.049180817,0.018658342,0.000108270666,-0.020678591,0.030702624,0.008595705,-0.0096508665,0.016946923,0.012700541,-0.051677175,0.047945507,0.008743686,0.01873555,0.02026682,-0.041974835,0.0031445741,0.055177223,0.017641785,0.021386322,-0.014695053,-0.053736027,-0.034202673,-0.016161986,-0.0035836885,-0.03633873,0.026970956,-0.013459742,-0.012816351,0.014347622,0.030651152,0.07972903,0.025774248,0.017242882,-0.021373453,0.016342135,-0.037316684,0.054096326,-0.023136344,-0.0011195006,0.016638095,0.019983727,0.007926579,-0.0033134643,-0.010088373,-0.035772547,0.027665818,0.030831303,-0.028926864,0.014321886,0.07051567,0.021695148,-0.022171259,-0.012732711,-0.015029617,-0.041254237,-0.00682638,0.019404676,0.016226323,-0.052140415,0.071339205,0.031474695,0.037599776,0.021257643,-0.014991013,-0.038140226,0.017937744,-0.00057422655,-0.05237204,0.047842562,-0.011806227,-0.003545085,0.081993766,0.002612168,0.03757404,-0.029621728,-0.014206076,0.007604883,0.012269469,-0.03628726,-0.0017210712,0.050158773,0.03505195,0.014772261,0.030522475,-0.0075791474,0.005591069,0.018117893,0.0082161045,-0.00080705376,0.029415842,0.021373453,-0.051316876,-0.01809216,-0.015492858,0.01689545,-0.036441673,-0.02587719,0.013858645,-0.020112406,0.01536418,-0.06825093,-0.008428424,0.010172013,0.023702528,-0.010416502,-0.050055828,0.0270739,0.0013286027,0.02789744,0.04969553,0.04663299,-0.035669602,0.039375536,0.00084203813,-0.0073861303,-0.020768665,-0.04449693,-0.044239573,-0.009432114,0.0066140606,0.0053980513,0.01232094,0.02753714,0.038757883,0.0016840763,-0.030831303,0.01554433,-0.022660235,0.05188306,-0.0033778034,0.016161986,0.0064789485,-0.014579243,0.009200493,0.004371843,-0.0011371938,0.069023,-0.028823921,0.01832378,0.0004672628,0.009882487,-0.026250359,-0.09326598,0.06150819,-0.029518785,-0.002023465,0.011709718,-0.023200683,-0.008042389,-0.03682771,-0.011851264,0.034485765,-0.00076402695,-0.0046613687,-0.02771729,-0.02398562,-0.028618038,-0.059655223,0.020935947,-0.041099824,0.049592588,-0.0014854292,-0.028823921,0.032941625,-0.034228407,0.016805377,-0.039452743,-0.03592696,0.008750119,0.057956673,-0.054044854,-0.021051757,-0.02002233,0.02818053,0.014193208,0.02091021,-0.010519445,0.019481882,-0.02197824,-0.013729966,0.019713504,0.07427307,-0.020241085,0.050493333,0.0031928285,0.026584921,0.014965277,-0.025838587,0.019469015,0.0023371181,0.03168058,0.018105026,0.04153733,-0.009747376,-0.039761573,-0.012848521,0.05111099,0.069743596,0.044291046,-0.017641785,-0.029493049,-0.0021907468,-0.033816636,0.009007475,0.018491061,-0.0148880705,-0.00028892283,-0.051548496,-0.013240989,-0.05383897,-0.013922984,-0.020408366,-0.025272403,-0.03204088,0.006671966,-0.0016213456,0.014231811,0.014154605,-0.0072831875,-0.009747376,-0.033713695,0.015055352,-0.05023598,0.016612358,-0.000021626487,0.003009462,-0.016908318,-0.004156307,-0.032092348,0.0043139374,-0.039761573,0.00063012115,0.0006844073,0.0032829032,0.0059706694,-0.009444982,-0.012546127,0.0016084778,-0.014116001,0.00132619,-0.004063015,0.0012393321,0.014077398,-0.01796348,0.04094541,0.028463623,-0.034949005,-0.026739335,0.03337913,0.026224623,0.056412533,-0.03770272,-0.005787303,0.020125274,-0.006022141,0.004658152,-0.007746429,0.0027279784,0.009728074,0.004696755,0.016264927,-0.01087331,0.0133954035,-0.051548496,-0.012417449,0.0018047121,-0.02304627,-0.007759297,0.0021151484,0.005147129,-0.042412344,0.019559091,0.018632608,-0.019571958,0.04696755,0.022351408,-0.04048217,-0.020408366,0.012134356,0.018439589,0.007321791,-0.0051020915,-0.035206363,0.020369763,-0.035309304,0.047302116,0.005353014,-0.012192261,-0.009882487,0.040096134,-0.020356895,0.032812946,0.003902167,-0.0118319625,0.03031659,0.014707921,-0.04755947,-0.03615858,0.019237395,0.0070644347,-0.03204088,-0.0056264554,0.036596086,0.031603374,0.008853062,-0.031037187,-0.013845777,-0.005932066,-0.0000109451885,-0.004770745,-0.020318292,0.0029435144,0.012385279,0.024088563,-0.016869714,-0.014991013,0.029930554,0.024358789,0.04220646,0.007598449,0.028875394,0.0025027914,0.028257739,-0.0023918066,-0.009251964,-0.024577541,-0.023651058,-0.02990482,-0.017036997,-0.021875298,0.0016012397,-0.01702413,-0.0039311196,-0.026095944,0.0038635638,0.0016937271,0.010596652,0.01807929,0.0027649733,-0.023676794,0.045397677,-0.015106823,-0.025606968,-0.025594098,0.0013430789,0.010731764,-0.005201817,-0.036956385,0.015570065,0.033173244,-0.009226229,-0.00070531754,0.050802164,0.0066333623,0.021669414,-0.050313186,0.042515285,-0.014514904,0.028515095,-0.015029617,-0.03427988,-0.011542437,0.006665532,-0.022621632,-0.0017210712,-0.01205715,0.023586718,-0.033971053,-0.010686726,0.03770272,-0.01584029,0.00021292226,-0.019687768,0.0043268055,0.007604883,-0.0065336367,-0.00549456,0.010159146,-0.05311837,-0.0074118655,-0.03847479,0.0016141075,0.0057519167,0.011973509,-0.027382726,0.008820892,0.05430221,-0.017924877,-0.00034401318,-0.013961587,-0.03301883,-0.0061283004,0.0005215489,0.006807078,-0.027382726,-0.036493145,0.014077398,-0.05471398,0.00972164,-0.011536003,0.010564482,-0.023329362,0.015248369,0.012816351,0.03646741,-0.013240989,-0.030162176,0.022943327,0.014913806,-0.008615007,0.0061829886,-0.05466251,-0.0248735,0.029493049,-0.01072533,0.009502887,-0.0107124625,-0.0024111082,0.01143306,0.0007258256,0.036210053,-0.027254049,-0.026739335,0.038011547,-0.039735835,-0.009818149,-0.0040887506,-0.0067170034,-0.017410163,-0.02416577,0.03368796,0.018529665,0.048537426,0.0032442997,0.011819095,0.040327754,-0.02623749,0.006221592,0.00029173767,0.017886274,-0.006671966,0.0028904346,-0.008196803,0.0047482266,0.018928567,0.023419436,-0.0055621164,0.024410259,0.056978717,0.061611135,-0.012507523,0.00028128256,0.03072836,0.026404772,0.04997862,0.016033307,-0.05466251,0.0046742363,-0.047791094,0.010693161,-0.00497663,0.01689545,-0.00434289,0.0094642835,-0.015016749,-0.023136344,0.029698934,-0.05111099,0.022698838,0.024963576,0.024358789,0.03232397,0.0248735,0.036853444,0.009303436,0.015634404,-0.016110513,0.023136344,-0.034974743,-0.011304382,0.023856943,-0.0071352078,-0.0074311676,0.019983727,-0.0026636391,-0.023059137,0.05075069,-0.011310816,0.01702413,-0.05435368,-0.0017677171,0.0015232285,0.020524178,0.00025132464,0.022287069,-0.038243167,-0.03574681,-0.018889964,0.03518063,-0.007598449,-0.01388438,-0.030522475,-0.040868204,-0.0025703476,-0.0091490215,0.0024432777,-0.02127051,-0.01719141,-0.024448862,-0.09774398,0.035360776,0.016046174,-0.025452552,0.0053369296,0.02807759,0.03994172,0.014836599,-0.014218944,-0.030393796,-0.006388874,-0.014810864,0.00983745,-0.014978145,0.006832814,-0.021540735,-0.03770272,0.018465325,0.026970956,0.007952314,0.006527203,-0.020241085,-0.005932066,-0.054044854,-0.016946923,-0.0003094309,-0.01613625,-0.011001988,0.043004263,0.00087822886,-0.0011500616,-0.0038860824,-0.036107108,-0.011716153,0.003982591,-0.015853157,0.00029656308,-0.033765167,0.009991864,0.0054688244,-0.009348473,-0.01997086,-0.03582402,0.02972467,-0.027923174,0.024976443,-0.008447725,-0.005462391,0.006321318,-0.027099634,-0.0263533,0.02245435,0.041743215,0.011124233,-0.0066783996,0.023007667,-0.00019713906,0.019070113,-0.018619739,-0.026044473,0.011883434,0.026584921,0.035669602,-0.029261429,-0.018452458,-0.012288771,-0.012488222,-0.008312614,-0.029029807,0.01495241,0.014193208,-0.027691554,-0.02830921,-0.0064757317,-0.0061250837,-0.002245435,0.017603181,-0.023805471,-0.029930554,0.040996883,-0.0063341856,0.015286973,0.015235501,-0.014900939,0.008666478,0.018722681,-0.036776237,0.0022743875,-0.0038989503,-0.040636584,0.054456625,0.0028003599,0.0046549346,0.02676507,-0.025027914,0.00029415038,0.012031414,-0.020794401,-0.0061218664,-0.01784767,0.006305233,-0.009181191,0.0017146374,-0.06475088,-0.014965277,-0.007109472,0.018246572,0.020163877,0.0033617185,-0.021901034,0.0075727133,0.011413759,-0.01713994,0.0021585773,-0.0270739,-0.003763838,0.014926674,0.028695244,-0.016290663,-0.0035901226,-0.0061218664,0.005513862,0.010448672,0.020395499,-0.001198316,-0.017989216,0.033096038,0.0070708683,0.010854009,0.045423415,-0.028798187,0.0034099729,0.029415842,-0.024616145,-0.00478683,-0.009477152,0.000078865676,-0.017178543,-0.056206647,-0.014141737,0.00089592213,0.007180245,0.039015237,0.023084873,0.028051853,0.055588994,0.013781438,-0.00027987515,0.020485573,0.00682638,-0.01602044,-0.015402784,-0.012694106,-0.004841518,0.014862335,0.0026604224,0.0019639514,0.01547999,-0.009760243,0.03883509,-0.013678495,0.012822785,-0.021798091,0.0039697234,-0.0070515666,-0.007366828,-0.0043750596,-0.022878988,-0.0135112135,0.010319994,-0.0014452173,-0.0319122,-0.0057133134,-0.018606871,-0.031474695,0.051445555,0.001544943,-0.019391809,-0.0031622674,0.052217625,0.0092776995,-0.0012594381,-0.039452743,-0.010332861,0.06989801,0.041151296,0.02617315,-0.021167567,0.01376857,0.009194059,0.03126881,0.04220646,0.043930747,-0.0025397865,0.013691363,-0.025697041,0.014926674,-0.008035955,-0.011761189,-0.0019060462,0.046941817,-0.02410143,0.019185923,0.0013881164,-0.03857773,-0.03847479,0.016766774,-0.001666383,-0.026404772,0.025246667,-0.03538651,0.019185923,0.002639512,-0.00041458514,0.008769421,0.0003793997,-0.03834611,-0.006089697,0.0109569505,0.025619835,0.030522475,-0.032890156,0.00080785796,0.012919294,-0.03705933,0.0069293226,-0.037316684,0.016676698,-0.010673859,0.018877095,0.020820137,0.0419491,-0.0026266442,0.0019285649,0.016856847,-0.02990482,0.011658248,-0.0069807936,-0.030368062,0.009689471,0.013755702,0.032838684,0.0010173622,-0.01172902,0.0064885993,-0.003905384,0.00957366,0.0068392474,0.025272403,-0.020279689,-0.0027971428,-0.026224623,-0.0012369194,-0.026790807,0.01004977,-0.012250167,0.008409122,-0.0064049587,0.0027778412,-0.012282336,-0.0039504217,0.027331255,0.007765731,0.0037767058,-0.0012682847,-0.0011862523,-0.005742266,-0.0061122156,0.014154605,-0.023754,-0.00028771648,-0.0035032646,0.01985505,0.035875488,0.0016269753,0.014514904,-0.021759488,0.011368721,-0.016792508,0.0229948,0.00087822886,-0.007334659,-0.0072510177,0.027434198,-0.023805471,-0.008544235,-0.006935756,0.01921166,0.031706315,0.0043203714,0.01258473,0.018452458,0.02311061,-0.016753905,0.0003239072,-0.0019414327,-0.013922984,-0.042592492,0.034228407,0.018941434,-0.021759488,-0.019945124,-0.031062923,-0.013665628,0.032169554,-0.021321982,0.007405432,0.004999149,-0.010950517,0.00028811858,0.033765167,-0.025066517,-0.0032089131,0.0016189329,0.010448672,0.004912291,-0.028206266,-0.012526825,-0.0019462581,-0.008042389,-0.007296055,-0.0378314,0.00653042,-0.032092348,-0.008814459,0.01873555,0.012719843,-0.027871704,-0.0018980039,-0.006347053,0.020421235,-0.016303532,0.024744822,0.0028888262,0.02753714,-0.0040404964,0.0002076947,0.027511405,-0.0004023205,-0.0013414705,-0.026456242,-0.0087179495,0.01973924,-0.022428615,-0.0085378,0.008621441,-0.011606776,-0.018568268,0.0008452551,-0.005726181,0.07818489,-0.007855806,0.006314884,-0.019301733,-0.017410163,-0.0047482266,0.020562781,-0.010075505,0.020562781,0.027820231,-0.024474598,0.0019912955,0.0018320562,-0.022492955,-0.036210053,-0.0027858836,-0.033404868,0.0067491727,0.025632702,0.0049798475,0.004156307,0.008589271,0.019366072,-0.013279593,-0.001218422,-0.017950613,0.03916965,0.007913711,0.022647368,0.032118086,0.0026025171,-0.028823921,-0.00950932,-0.005121393,-0.027408462,-0.009560792,0.019134453,-0.012809917,0.020060936,-0.015685875,0.030934244,-0.026481979,0.006330969,0.0070451326,-0.014772261,0.0152612375,-0.023972753,-0.021013154,-0.0040887506,-0.014502035,-0.045835182,0.016985526,0.0018658342,-0.0075727133,-0.013549817,-0.028257739,0.004931593,0.01778333,0.0019205225,-0.0028067937,-0.01388438,0.013035104,-0.004252815,0.0012473746,0.029698934,-0.045268998,0.02033116,0.022634499,0.026031604,0.07072155,0.025915794,0.0048061316,-0.008209671,-0.016316399,0.0058259065,-0.0060253576,-0.006813512,-0.010558048,0.00096026127,0.050081566,0.02097455,-0.020434102,-0.009303436,0.0012650678,-0.045577828,0.03204088,0.014502035,0.007611317,0.006018924,0.02245435,-0.016290663,0.03204088,-0.021605074,-0.025967266,0.0051117423,-0.012797049,-0.011413759,-0.030548211,-0.004561643,-0.02771729,0.001848141,0.001632605,0.00020809681,0.0047192737,0.0033488509,0.014797996,-0.0022534775,-0.0014251113,0.0089753065,-0.01789914,0.0057004453,-0.034305613,-0.023393702,-0.007437601,-0.033971053,-0.0111371,0.00441688,-0.028154796,0.008891665,-0.0053240615,0.024963576,0.0025237016,0.022724574,0.0066140606,0.00011812259,-0.0022502604,-0.021347718,-0.017423032,0.014617846,0.0322725,-0.038449053,0.019173056,0.011407325,-0.018272309,0.016625227,0.00226152,0.002824487,-0.00850563,-0.015814554,0.0061894227,-0.01098912,-0.00090074755,-0.0070065293,0.021193303,0.00087822886,-0.0059996224,-0.008486329,-0.007810768,-0.016277796,-0.034665912,-0.028206266,-0.00058588805,0.014296151,0.005584635,0.002784275,-0.0030673672,0.026739335,0.006347053,0.012591165,0.017127072,0.009490019,0.0019462581,-0.015299841,0.026147416,0.012513957,0.0072510177,-0.00095382734,0.006035009,-0.023419436,0.042515285,0.003915035,0.009361341,-0.015505726,-0.018182233,-0.0073796962,-0.008048823,0.00068601576,-0.0069228886,-0.040096134,-0.019713504,0.010217051,-0.022634499,0.018400986,0.014514904,0.019456148,-0.041460123,-0.010622388,-0.018928567,0.028489359,0.02121904,0.012597598,-0.019173056,-0.025555495,-0.039607156,0.005803388,0.016882583,0.04308147,-0.012771314,0.009740941,-0.025722777,-0.041974835,-0.01666383,-0.008524932,-0.033482075,0.02730552,-0.002140884,0.008756553,0.04081673,-0.028695244,-0.010757499,0.0067041353,-0.026507715,0.03564387,0.008286878,0.0035772547,0.04081673,0.017345825,0.035772547,-0.04153733,0.002202006,0.026687864,-0.0026202104,0.016998393,-0.035077684,0.039015237,-0.00400511,-0.024693351,-0.03505195,0.030419532,-0.006150819,0.0037863567,0.024886368,0.0012015329,-0.031989407,-0.00957366,-0.008055257,-0.0056135873,0.0069164545,0.002171445,-0.014038795,-0.008138898,-0.025246667,-0.045655034,-0.009309869,-0.008338349,0.044419724,-0.02085874,-0.047816828,0.0040790997,0.022827517,0.007180245,0.014965277,0.0053272783,-0.025542628,-0.020678591,-0.02812906,-0.016985526,-0.042566758,0.0033713696,0.010493709,-0.01979071,0.016908318,0.007862239,-0.02222273,0.038629204,-0.0045198225,-0.0032153472,0.027820231,-0.003154225,-0.023380833,-0.018928567,0.0089753065,-0.0025623052,0.015711611,-0.008370519,0.022209862,0.0122630345,0.00016989547,0.01613625,-0.018992906,-0.032710005,0.029570255,0.03703359,0.018105026,0.0026411205,0.029235693,-0.026456242,0.005217902,0.013794306,-0.054919865,-0.043261617,0.012063583,-0.034614444,-0.03669903,0.0075727133,0.008080993,-0.012359544,-0.01901864,0.0028421802,-0.004709623,-0.00045198225,0.009136154,0.01878702,-0.0015312709,0.017332956,-0.0034646613,-0.020459838,-0.0022743875,0.020009464,0.049309496,-0.008705081,0.055177223,-0.025748512,-0.045423415,-0.009264832,0.021540735,0.03108866,0.0319122,0.0052500716,-0.005497777,0.0049798475,0.011104931,-0.006527203,-0.018684078,0.038912296,-0.0040340624,0.0112143075,0.014218944,0.018452458,0.039015237,-0.0036062072,-0.026533449,0.022480085,-0.009412812,0.0048189997,0.014849467,0.01459211,-0.0052436376,0.0037091498,-0.012990067,-0.0315519,0.0049830643,0.03126881,-0.023187816,0.008338349,-0.019494751,0.036982123,-0.00043187628,0.04071379,-0.023020534,0.0144763,0.033250455,0.003003028,-0.033816636,0.0064113927,0.012513957,0.041871894,-0.039993193,0.011954207,-0.009271266,-0.015570065,-0.007804334,-0.005957802,0.015196898,0.004143439,0.043107204,0.031577636,-0.00084445084,0.030625418,-0.0041659577,-0.012597598,-0.018568268,-0.0030721927,-0.01613625,0.0046163313,0.027202576,-0.028412152,-0.019842181,0.00904608,-0.024178639,-0.007965182,-0.0047321417,-0.013446874,0.000055291424,-0.03255559,-0.0017902358,-0.0040823165,-0.008550668,0.0021264076]},{"id":"enum-GuildMFALevel","type":"enum","source":"main","text":"Enum: GuildMFALevel\nMembers: None=0, Elevated=1","meta":{"url":"/docs/typedefs/GuildMFALevel"},"embedding":[-0.011319522,0.032378595,0.05286772,0.023778932,0.018959658,0.029420657,-0.05774471,0.013253003,0.019565675,0.037371017,0.04175742,-0.025813416,0.0037046364,0.05944733,0.05705212,0.016607737,-0.007647351,-0.0039787865,-0.015958434,0.057571564,0.031570572,0.024702385,0.0147896875,0.020561272,-0.074742034,0.019291524,0.018526789,0.0006353253,0.003008439,0.006305457,0.061063375,-0.02561141,0.024457093,-0.006449747,-0.07878214,-0.021816593,0.0030499222,-0.001258927,0.015640996,-0.038669623,0.0062982426,-0.046432406,-0.04666327,-0.0123800505,0.004213257,-0.0091696065,0.03442751,0.007055763,-0.0115359565,0.014933977,-0.009111891,-0.020503558,0.005324288,0.07624264,-0.0037767813,-0.0024583347,-0.009689049,-0.011774034,0.0057246913,-0.00018194021,-0.023057483,-0.028179767,0.010258993,0.016088294,0.026765728,-0.005407254,-0.07508833,0.020532414,0.05915875,0.036851574,-0.014703114,-0.039708506,0.023721216,0.02673687,-0.0021066286,0.015828572,0.0016295711,-0.05064566,-0.035726115,-0.02673687,-0.009797267,0.02046027,-0.047442432,-0.02533726,0.07306827,-0.02643386,-0.05875474,-0.0028605422,-0.004656948,-0.051049672,-0.029334083,-0.05471463,-0.050443657,-0.0038741766,0.013224145,-0.013014926,0.02450038,-0.01545342,-0.048221596,0.03898706,0.06839329,0.011911109,-0.019565675,-0.058927886,0.014501109,0.0155399935,-0.024716815,0.018873084,-0.0027198596,0.019984115,-0.05133825,0.0036523314,0.0031346923,0.026246285,0.029348511,-0.014125955,-0.035235528,0.040285666,-0.005064566,-0.014529967,-0.018627793,0.022999767,0.012596485,-0.062159974,-0.02103743,0.017055035,0.0046533407,0.00462809,-0.012481053,0.0016467054,0.043633185,-0.03774617,0.051597975,0.013440579,-0.048683323,0.037399873,-0.01308707,-0.027934473,-0.037919316,-0.032926895,-0.013267432,0.0070160837,0.028944502,0.054454908,-0.034600656,0.004642519,-0.022538042,0.033879206,-0.014991693,0.013808519,-0.037890457,0.012574842,-0.027314028,0.007037727,-0.011954396,-0.05278115,0.022523612,-0.023447067,-0.0074669886,0.010410497,0.0065687858,-0.017156038,0.011629744,-0.006853758,0.007384022,-0.013685872,0.010951583,-0.0015880878,-0.056330673,0.013014926,-0.011853393,0.039593074,-0.025669126,-0.08109078,-0.023331635,-0.005587616,-0.03910249,-0.02992567,-0.064410895,-0.031974584,0.02353364,0.012257405,-0.012206904,0.023403779,-0.020056259,0.024442665,0.019248238,0.016665453,-0.02226389,0.02393765,-0.0020958069,0.04233458,0.029362941,0.038785055,0.041584272,-0.004404441,0.038756195,0.0362167,-0.007907072,-0.030704835,0.0067780055,-0.044874076,0.053791177,-0.030041102,0.025596982,0.020301552,0.001468147,0.0060673794,-0.011521528,0.023923222,0.009371612,0.011802892,-0.00078592764,0.004750736,-0.045451235,0.05347374,-0.062621705,-0.021066288,0.044700928,0.014219743,-0.019897541,-0.0005564169,0.013779661,0.013339577,-0.009328325,-0.01864222,-0.029261937,-0.018353641,0.016521163,0.006305457,-0.021831023,-0.020517986,-0.0063451366,-0.033359762,-0.046605553,0.05304087,0.01630473,0.04299831,0.011045372,-0.009732336,-0.047933016,-0.015669854,0.03624556,0.031022271,-0.05278115,-0.0068645794,0.024976537,0.00017709298,0.0072505544,0.023115199,0.038871627,0.05849502,-0.014667042,-0.026924446,-0.043806333,0.028338484,-0.043113742,0.005699441,0.0024294767,-0.041439984,0.0025106396,-0.005017672,-0.028713638,-0.0204747,-0.024009796,0.0059230896,0.0091912495,-0.031916868,-0.00808022,0.0008400362,-0.0027631465,0.0057751928,0.023043055,-0.029319653,0.012935566,-0.031541716,0.045826387,0.02059013,0.024832247,-0.022350464,-0.019926399,0.013887878,0.05093424,-0.0131880725,-0.02757375,0.008974816,0.029218651,-0.0115359565,0.024990965,-0.000784124,-0.022061886,-0.00772671,0.053935464,-0.0055190786,-0.0077699968,-0.007856571,-0.020921998,-0.020056259,0.050472517,0.018310355,0.022148458,0.04801959,-0.050472517,-0.0017666463,0.014039381,0.0012625343,0.042594302,-0.013317933,-0.08969044,-0.021730019,0.019825395,-0.0059411256,-0.0054036467,0.044700928,-0.0033150543,-0.048914187,-0.017329186,0.05849502,0.058264155,0.03910249,0.020979714,-0.0064136744,-0.0005216972,-0.04827931,0.023302777,-0.02911765,-0.01461654,-0.00808022,-0.0015664444,0.0054180757,0.026217427,-0.04051653,-0.000651107,0.0200274,0.020647846,0.024038654,0.006323493,0.086342916,0.033446338,-0.010323923,0.01963782,-0.04092054,-0.031484,0.022797763,-0.014905119,-0.03298461,-0.008130721,0.017430188,0.03939107,0.033879206,-0.0019316775,0.028425058,-0.0062224907,-0.014876261,-0.05191541,-0.09990615,0.041728564,-0.025539266,-0.0013887878,0.062968,-0.027501605,0.008065791,-0.033706058,0.02657815,0.018295925,0.041439984,-0.027487176,0.009710693,0.007156766,-0.005284608,-0.04848132,0.029449515,0.0070737996,0.008267797,0.021470297,0.009068604,0.014010523,-0.013996094,0.043056026,-0.01725704,0.0034377007,0.018699937,0.020994142,-0.019839825,-0.0040797894,0.010634147,0.002148112,0.024601383,-0.07214482,0.023764502,0.023836648,-0.0064028525,-0.0022346857,-0.051136248,-0.018425787,-0.0040365024,0.028497202,0.057427276,0.041382268,-0.026347287,-0.0053964322,-0.014356819,0.008210081,-0.022307178,-0.0047218786,-0.007131515,-0.020950856,0.010374425,0.0017161448,0.016723169,-0.0013581262,0.016853029,0.035408676,-0.015511136,0.026650297,-0.019392528,-0.0012913923,-0.033734918,-0.034081213,-0.011355595,-0.03748645,-0.012755204,0.028078763,0.022797763,0.11335394,-0.025683556,-0.016463447,-0.0060565574,0.03136857,-0.032638315,-0.03162829,0.014097097,-0.014933977,0.03592812,0.0066589667,-0.02004183,-0.005454148,-0.008440943,-0.005612867,0.022898765,0.008130721,0.0018306747,-0.019623391,-0.032176588,-0.017805342,-0.012899494,-0.0057824072,-0.05027051,0.024298375,0.00906139,-0.031195419,0.011911109,-0.022105172,0.026650297,-0.005627296,-0.015236986,0.034571797,0.045595527,0.012863421,-0.007351557,-0.035177812,0.016492305,0.024168514,0.031397425,-0.021831023,-0.011182447,-0.035697255,0.007993646,0.046114966,0.027241884,-0.015410133,-0.002395208,0.0047435216,0.010489857,0.008787239,0.014991693,0.03286918,-0.036736142,0.08109078,0.046201542,0.008541946,-0.045595527,-0.0034575404,-0.025697984,0.03939107,0.080859914,0.028511632,0.006233312,-0.029218651,-0.04161313,-0.008830526,-0.03520667,0.054483768,-0.018728795,0.042594302,-0.024269518,0.022927623,-0.06418003,0.025827846,-0.024399377,-0.017430188,-0.04037224,-0.009652977,0.011997683,-0.00055190787,0.022509184,-0.015107125,-0.019017374,-0.03385035,0.0431426,-0.04954906,0.020287123,-0.026058707,-0.0131375715,0.0059663765,-0.019147234,-0.02323063,0.014832974,-0.020936426,0.000013534199,-0.010713506,-0.03006996,0.007290234,-0.0155832805,-0.004112255,-0.015280273,-0.010922725,-0.0347738,-0.009263394,-0.011442169,0.02338935,-0.018454645,0.04025681,0.0030715656,-0.025784558,0.01864222,0.015049409,0.003136496,0.034167785,-0.03800589,0.023331635,0.015915146,0.028843498,-0.016550021,-0.0015745607,-0.028713638,-0.04219029,0.026015421,0.009847768,-0.011153589,0.024211802,-0.016131582,0.004938313,-0.008498659,-0.014861832,0.028742496,0.008664593,-0.015669854,-0.018036205,0.022321606,0.003407039,-0.011146374,0.031253137,-0.0025773735,-0.026607009,-0.027920045,0.009299467,0.06458404,-0.006882616,-0.010684648,-0.003188801,0.04522037,-0.023014197,0.0356684,0.0060132705,-0.018974086,0.012971639,0.06423774,0.041670848,-0.0056381174,0.0083904425,-0.037399873,0.008520303,-0.038496476,-0.026765728,-0.020763278,0.019695535,0.039852798,-0.03506238,0.011593672,-0.007813284,0.020994142,-0.013455008,0.0077916402,0.014905119,0.009487043,-0.004328689,-0.017069465,-0.023490353,0.013418936,0.026982162,0.006377602,-0.024139656,0.011774034,0.01225019,-0.0023934043,0.029463943,0.031484,-0.014277459,0.002043502,-0.015525565,-0.0021318793,-0.039477643,-0.01204097,-0.024255088,-0.028064335,0.037255585,0.027386174,0.00048833026,-0.02227832,-0.018166065,0.01864222,0.018555647,0.004371976,0.034744944,0.014443393,0.008534732,-0.01965225,0.0071784095,0.006089023,-0.05835073,-0.04943363,-0.03413893,-0.009919913,0.008015289,-0.0077050664,0.008210081,0.002828077,0.001078565,-0.011889466,0.07087507,-0.007337128,-0.0008152364,-0.040747393,0.018281497,0.0008706978,0.0051114606,-0.021225005,-0.039708506,-0.012740775,0.017314756,-0.015843002,-0.021758877,-0.0035314888,0.0099776285,-0.0724334,-0.019262666,0.03439865,-0.010706291,-0.002956134,-0.021773307,0.0040942184,-0.007531919,0.042565443,0.0056958334,0.02881464,-0.025539266,0.00822451,-0.03382149,0.00009322463,0.067296684,-0.0021823808,-0.03341748,0.028006619,0.0320323,-0.018151635,-0.013909521,-0.010460999,-0.04146884,-0.0034701657,0.033100042,0.011088658,-0.033648342,-0.033388622,-0.009393255,0.0019731608,0.018007347,-0.024269518,0.02963709,-0.007712281,-0.013007711,0.018194923,0.024182944,-0.02686673,-0.016174868,0.0018793725,0.0044946223,0.023980938,-0.009602475,-0.047269285,-0.009566403,0.019608961,-0.009811696,-0.007842142,-0.019897541,-0.024269518,-0.00034268788,0.0378616,0.02672244,-0.038236752,-0.024716815,0.0069655823,-0.026347287,0.025697984,-0.015410133,0.0073623788,-0.020416984,-0.03699586,0.015337989,0.021297151,0.023418209,0.023201773,0.022336036,0.008924314,-0.026318429,0.03757302,-0.023302777,0.026390575,0.010937154,-0.018050633,-0.019378098,0.011644173,-0.017632194,0.020719992,0.035264388,0.01426303,0.028049905,0.019695535,-0.033302046,-0.016881887,0.04761558,0.014226958,0.024255088,0.019291524,-0.04025681,0.024053082,-0.011651388,0.015193699,-0.04940477,0.044787504,-0.004833703,0.012719131,-0.0017179485,-0.013043783,0.035120096,-0.04178628,0.015770858,0.021210577,-0.011774034,0.044210345,0.0025394976,0.02089314,0.023605784,-0.011067015,-0.01712718,0.00420965,-0.010533144,-0.030185392,0.013411722,-0.029420657,-0.002793808,-0.004646126,-0.00075120793,-0.00092210097,0.034975808,-0.012596485,-0.005436112,-0.057860143,0.011997683,0.0020795744,0.014299103,0.022927623,0.022148458,-0.014501109,-0.012683059,0.0016683489,0.056474965,-0.027876757,-0.01142774,-0.014284674,-0.005324288,0.0038381044,-0.025221828,0.00063712895,-0.031426284,0.005901446,-0.009544759,-0.1135848,-0.008808882,0.0014573253,-0.006842936,0.03021425,0.03260946,0.017314756,-0.003331287,0.00030143006,-0.01950796,0.018324783,-0.033475194,0.027472747,-0.0072505544,0.046432406,-0.010598074,-0.0173869,0.014154813,-0.0027018234,0.02868478,-0.035120096,-0.030935697,-0.015713142,-0.013628156,-0.04608611,0.00494192,-0.0139816655,-0.008873813,0.0325806,0.016506735,-0.00079224026,-0.006348744,-0.018411357,-0.030531688,-0.014645398,-0.012870636,-0.01643459,0.0018613363,-0.0010776633,0.01517927,0.012444981,-0.003982394,-0.026419433,0.040314525,0.018137207,0.0257557,-0.036562994,0.00967462,0.031426284,-0.00020155459,-0.023706786,0.029867955,0.026809014,0.02185988,-0.010114703,0.0083615845,-0.032378595,0.018974086,-0.012776847,-0.037832744,0.012531555,0.0028208625,-0.0015240593,-0.016723169,0.015251415,-0.0400548,-0.0020958069,-0.0053026443,-0.028987788,-0.038179036,0.042132575,-0.017358044,-0.0012850795,-0.0077050664,-0.014097097,-0.009710693,-0.003051726,-0.028309627,-0.022307178,0.01572757,0.005962769,-0.0001810384,0.030473972,-0.004530695,0.014349604,0.009371612,-0.017646622,-0.013909521,-0.0005280099,-0.023620214,0.022783333,0.018728795,-0.016766455,0.03728444,0.02490439,-0.014111526,0.010107489,0.00862852,-0.0046244827,-0.02379336,-0.008953172,0.0027144488,-0.013281861,-0.033186615,-0.038669623,-0.010078631,-0.01614601,0.009652977,0.0115720285,-0.0356684,0.006741933,0.028728066,-0.0063703875,-0.0014735579,-0.021354865,-0.017358044,-0.0038849984,0.0272996,-0.0020471092,0.013613727,-0.018829798,0.011074229,-0.032090016,0.0050970316,0.0035675613,0.01796406,0.02145587,0.02450038,-0.029348511,0.018411357,-0.011673031,0.024168514,-0.0021986132,-0.020532414,-0.023028625,-0.057889003,0.022047456,-0.020200549,-0.0034034317,-0.006139524,0.008339941,0.009335539,0.028843498,-0.0068321144,0.019161664,-0.013613727,0.011341166,0.0057751928,0.00008747559,0.008296654,-0.022610186,-0.01572757,-0.025438262,0.02657815,-0.010706291,0.016174868,0.011254592,0.0037046364,-0.036389846,0.052925438,0.023908792,0.0070016547,0.02757375,-0.0054325047,-0.05485892,0.00032961165,-0.007402058,-0.017588906,-0.024875533,0.03240745,0.014421749,-0.03382149,0.0066120727,-0.03549525,-0.016203726,0.036938146,-0.004923884,-0.013801304,-0.030935697,0.046403546,0.019479102,0.0030733692,-0.032234304,-0.0007814186,0.06446861,0.023562498,0.050443657,-0.022639044,0.029132077,0.024125228,0.014508323,0.04080511,0.04943363,-0.021326007,0.032638315,-0.043546613,-0.0037082436,0.045451235,-0.02200417,0.005555151,0.036851574,-0.02284105,0.015742,-0.005645332,-0.0031491213,-0.010042558,0.0053170733,-0.0018956051,-0.015222557,0.068451,-0.029507231,0.0042024357,-0.0045956247,-0.025279544,0.015251415,-0.020301552,-0.04724043,-0.03050283,0.03353291,-0.0025629448,0.0068934374,-0.008058576,0.019464672,0.0058617666,0.018916372,0.026202997,-0.03050283,0.017040607,-0.003450326,0.019522388,0.0013337773,-0.003939107,0.00808022,0.006233312,-0.023158487,0.007589635,-0.007246947,0.0035910083,-0.02144144,0.004775987,0.00276495,0.057802428,0.021412581,-0.004126684,0.0012616325,-0.0037226726,0.021210577,0.016795313,-0.0030769764,-0.03748645,0.0010623324,-0.014378462,0.004537909,-0.026635867,0.018353641,-0.013729159,-0.023418209,0.010749578,0.016651023,0.0049310983,0.0016999122,-0.004617268,-0.0009811695,0.0051475326,-0.012055399,0.00037222216,0.00981891,-0.0026260715,0.0013951004,0.010828937,0.007416487,0.0057102623,-0.010576431,0.029839097,-0.009652977,-0.0012697488,0.0013662425,-0.014248601,-0.01440732,0.013310719,-0.026000993,-0.050155077,0.041526556,0.03699586,-0.038265612,0.0061828108,-0.0075679915,0.011391667,0.044470064,0.01753119,0.014717543,0.014493894,0.012582056,-0.025164112,0.021066288,-0.02797776,0.0030932091,-0.028742496,0.039044775,0.0083976565,0.0047327,-0.0037371016,-0.04340232,-0.009898269,0.003264553,-0.0052016415,-0.029305225,-0.001463638,-0.009075818,0.005526293,0.0356684,0.009083033,0.008455372,0.0011885859,0.027083164,0.019190522,-0.02031598,-0.014652613,0.011391667,-0.0030192607,0.029276367,-0.029550517,0.0060998444,-0.0019136413,-0.009342754,0.008448158,0.003996823,-0.020070689,0.021109574,-0.02548155,0.02409637,-0.0036974219,0.038900487,-0.015121554,0.0019695535,-0.0019695535,-0.011802892,0.024745673,0.0115503855,-0.011817321,-0.026029851,-0.006381209,-0.008311083,-0.025524836,-0.024601383,0.00835437,0.0083760135,0.00093968626,0.023894364,-0.030675977,0.0982901,0.0012300692,0.0011633352,0.009732336,0.017718768,0.023620214,0.011290664,-0.013079856,0.03967965,0.031657144,-0.029579375,0.005930304,0.019334812,-0.009645762,-0.02532283,0.005107853,-0.03136857,0.015366847,0.029059933,0.015972862,0.0029777773,0.010201277,0.04034338,-0.007546348,-0.023894364,-0.03480266,0.019839825,0.011384453,0.023894364,-0.01295721,-0.0062369197,0.021629017,0.024154086,-0.0060421284,-0.02255247,0.0037226726,0.029132077,0.015972862,0.052550286,0.008029718,-0.019796537,-0.03272489,0.0023014196,-0.0026693582,-0.023158487,0.0010875831,-0.0020164477,0.0029146506,0.0015276666,-0.0038994274,-0.035148956,-0.02506311,-0.0147752585,-0.011925538,0.00052259903,-0.017473474,0.0059988415,0.02073442,-0.0038849984,-0.0030877981,0.012993282,-0.030012244,-0.011052586,-0.016362445,0.006814078,0.00023176523,0.020575702,0.013671443,0.019262666,0.06452633,0.019594533,-0.007712281,-0.014933977,0.010194063,-0.018281497,-0.011160803,0.017213754,0.015107125,-0.011716318,0.0356684,0.00793593,-0.04233458,0.01371473,-0.016550021,-0.03716901,0.0091912495,0.010331138,0.00015939496,-0.009761194,0.009761194,0.009010888,0.037948173,0.0034034317,-0.0060385214,-0.012834563,-0.01189668,0.009559188,-0.006392031,0.007261376,-0.010648576,-0.0075968495,-0.0076401364,0.014948406,0.014306317,-0.012704702,-0.011810107,0.0131231425,-0.0055804015,-0.0005054646,0.009083033,0.009703478,-0.0071784095,-0.006089023,-0.024312804,0.029002218,0.010828937,0.027790183,-0.019277096,0.03006996,0.014291888,0.028554918,0.02298534,0.04911619,-0.003188801,-0.02992567,0.009869411,-0.017790912,-0.008325512,0.009725122,0.015381276,-0.034658372,-0.012856207,-0.00028316843,-0.014075454,0.0089171,0.0031238706,0.02826634,-0.010966012,-0.029579375,0.057398416,-0.021960882,0.009898269,0.01587186,0.00134009,0.017228182,0.01851236,-0.024053082,0.0068068635,-0.042652015,0.005749942,-0.013909521,0.027819041,-0.007647351,-0.054656915,0.0033366978,-0.026390575,0.013750803,0.035120096,0.026145281,-0.008029718,0.0019930005,-0.0026441077,-0.029810239,0.015410133,-0.012762418,0.018598935,0.013873449,-0.0019785715,-0.0018919979,0.01023735,0.030473972,-0.010843366,-0.0031996227,-0.028655922,-0.04066082,-0.030041102,0.0033348943,0.02409637,-0.03509124,-0.028915644,-0.0056814044,-0.015208128,0.020431412,0.014089883,0.029810239,-0.038958203,0.010879438,-0.0067599695,0.039621934,-0.020157263,0.021484727,-0.023908792,-0.028381772,-0.036793858,0.004833703,0.017560048,0.0041880067,-0.0005280099,0.035437535,-0.0091407485,-0.013195287,-0.019695535,0.011752391,-0.0040761824,0.002647715,0.030531688,0.014566039,0.040574245,-0.029694807,-0.02438495,-0.010533144,0.019262666,0.005241321,0.009241751,0.0123295495,0.022076314,-0.01128345,0.022076314,-0.02868478,0.02033041,0.009523116,0.0003774076,0.013556011,-0.0567924,0.0015664444,-0.020445842,-0.0001059627,-0.014652613,0.009487043,0.000936079,-0.00085897424,-0.0049635633,-0.011629744,-0.0054288977,0.012286263,-0.014104312,-0.014919548,0.008924314,0.00856359,0.0014347801,0.00835437,-0.03494695,-0.028569348,0.0054721846,-0.033100042,0.050991956,-0.015366847,-0.013664229,0.0075102756,0.0030300824,-0.0018523182,0.022942051,0.044700928,0.002642304,-0.0022960089,-0.05165569,-0.0147391865,0.0044080485,-0.0021968097,-0.013260217,0.0044405134,0.021282721,-0.0115359565,-0.020936426,0.016174868,0.012726346,-0.03385035,0.021816593,-0.0008256073,-0.023980938,-0.041670848,-0.011406096,-0.010828937,-0.015843002,-0.038179036,0.0060240924,-0.018916372,-0.0061467383,-0.02240818,-0.0058761956,-0.027169738,0.0051006386,0.038467616,0.027083164,-0.0006263072,0.0162903,-0.018209351,-0.015006122,0.016925175,-0.031772576,-0.017170466,-0.002936294,-0.03728444,-0.026087565,0.024442665,0.027198596,0.0018279693,-0.016218156,0.016679881,0.019132806,-0.0036342952,0.00016367856,-0.005858159,-0.014623755,-0.00093156996,0.028223053,0.010273422,0.026116423,0.010699077,0.008606877,0.012004898,0.0066120727,-0.037803885,-0.0060421284,0.0020128405,0.028021047,-0.0061828108,0.03506238,-0.0045920177,0.033388622,-0.01963782,-0.010273422,0.0002226344,-0.036360987,0.007416487,0.041295692,0.014919548,0.007712281,0.017891916,0.016881887,-0.029002218,0.009876626,-0.019984115,-0.0141981,0.01379409,0.04080511,-0.011983254,-0.022869907,0.02213403,-0.033128902,-0.048510175,0.013866234,-0.025798988,-0.02923308,-0.0015078267,0.0035134526,0.008606877,-0.019825395,0.069836184,-0.010374425,0.021412581,0.010626932,-0.041151404,-0.014320746,0.0027505213,-0.011131945,0.05133825,-0.039333355,-0.001985786,-0.036649566,-0.029579375,-0.008715094,-0.005868981,0.025986563,-0.011658602,0.033792634,0.016420161,-0.025697984,0.04109369,0.014024952,-0.022292748,-0.023216203,-0.02353364,-0.0023356886,-0.008556375,0.021297151,-0.0025431048,-0.005183605,0.006392031,-0.019709965,-0.036389846,0.027559321,-0.009652977,0.004491015,-0.02089314,0.008339941,-0.023706786,-0.028093193,0.01991197]},{"id":"enum-GuildVerificationLevel","type":"enum","source":"main","text":"Enum: GuildVerificationLevel\nMembers: None=0, Low=1, Medium=2, High=3, VeryHigh=4","meta":{"url":"/docs/typedefs/GuildVerificationLevel"},"embedding":[-0.031440105,0.03460075,0.04666111,0.011228609,0.008137275,0.01151279,-0.0360979,-0.013072318,0.033852175,0.02448114,0.05472907,-0.024231615,-0.016676564,0.05436865,0.059885915,-0.0015716586,-0.0059331413,0.029222108,-0.0005661957,0.064155556,-0.015262591,0.0339908,0.049100906,0.026366437,-0.04197559,0.029721158,0.013377293,0.005447955,0.021140283,-0.025922839,0.050653502,-0.04006257,0.039702144,0.008296695,-0.06393376,-0.011734589,0.0009963658,0.029832058,0.01670429,-0.033464026,0.031855978,0.013072318,-0.032909527,-0.027378399,0.018742073,-0.013037663,-0.0028608693,-0.014943753,-0.04086659,-0.0010769414,-0.047991905,0.02247108,0.025354477,0.06737165,-0.023413729,0.0027967554,-0.0077837827,-0.018645035,-0.011547446,-0.0004669923,-0.015567565,-0.029499358,0.028639885,0.012032633,0.027794272,-0.023704842,-0.051457524,0.005316261,0.07280575,0.03806637,-0.01614979,-0.01447243,0.027988348,0.00063247565,-0.008421456,0.041171566,-0.025576275,-0.024855427,0.0039092195,-0.013945655,-0.01928271,0.02208293,-0.04555211,-0.02274833,0.046078883,-0.005770257,-0.025964426,-0.0029787004,-0.008137275,-0.022263143,-0.03981304,-0.03257683,-0.03873177,0.010791941,0.004661259,-0.0738593,0.027711097,-0.014929891,-0.045025334,0.051734775,0.047603756,0.035293873,-0.015775502,-0.040478442,0.026726862,0.03773367,-0.04582936,0.024411827,-0.029055757,-0.00010034053,-0.080014236,0.02621395,-0.020558057,0.025465377,0.017577624,0.002353156,-0.041227017,-0.014333804,0.011790039,-0.012060357,-0.030497456,-0.028556708,0.063268356,-0.052289274,0.0033148655,0.015262591,0.0017267452,-0.007624364,0.008892781,0.019157948,0.02084917,-0.04627296,0.04896228,0.0056281667,-0.03141238,0.019462923,-0.023912778,-0.04671656,-0.036624674,-0.029832058,-0.01895001,0.021389807,0.0061410787,0.045801636,-0.03712372,0.03168963,-0.044027235,0.024009816,-0.017397413,0.024924738,-0.043888614,0.008289763,-0.009752255,0.007762989,0.003382445,-0.042945962,0.015747778,0.012739619,-0.022997854,0.015553703,0.0134604685,-0.032382753,0.034073975,-0.020031285,-0.01659339,-0.009738392,0.01749445,0.0167736,-0.052344725,0.034878,0.0046716556,0.029222108,0.004487978,-0.064488254,-0.00074684113,-0.00071738334,-0.03091333,-0.0028556709,-0.04333411,-0.053647798,0.028085385,0.0030237534,0.00020999492,-0.03146783,-0.021084832,0.051623877,-0.0024363308,-0.015331903,-0.017369688,0.007790714,-0.008802675,0.037400972,0.0036735572,0.046744283,0.0509862,-0.040478442,0.029138934,0.016232964,-0.0076659513,-0.047326505,-0.006359413,-0.03168963,0.05370325,-0.037179172,0.03751187,-0.0057494636,0.039424893,-0.044498563,-0.014458567,0.024384102,0.015498253,0.0023912778,-0.024217753,0.04416586,-0.064765505,0.053564623,-0.05744612,-0.021916581,0.038482245,0.0061064223,-0.021209594,0.026421888,0.012503957,0.020710545,-0.013848618,0.003985463,0.011831626,-0.015415078,0.034517575,-0.0027343743,-0.011894008,0.0054514203,-0.010736491,-0.039951667,-0.041836966,0.033769,0.039424893,0.06271386,0.010791941,-0.033574928,-0.030996505,-0.009717599,-0.0046092747,0.029610258,-0.038094096,-0.0068549966,0.005565786,0.007887751,-0.002971769,-0.009676011,0.013987242,0.050653502,-0.033879902,-0.051568426,-0.03152328,0.004935043,-0.030053858,0.039119918,-0.002973502,-0.017064713,0.0006086495,-0.010909772,-0.033796728,-0.030608356,-0.019643134,0.048823655,-0.0066643874,-0.018575724,-0.0524279,-0.0058603636,-0.043916337,-0.009703736,0.034018528,-0.02811311,0.026574375,-0.006539625,0.038315896,0.015623015,0.018298473,0.005205361,-0.013072318,0.019144084,0.053730972,0.0680925,-0.007194627,0.02011446,0.02475839,-0.023483042,0.032909527,0.0049385084,0.020100595,-0.022609705,0.036181074,0.0022387905,-0.016870638,-0.007735264,-0.0019078238,-0.021958169,0.051457524,0.0041656755,0.019670859,0.021722507,-0.04455401,0.016856777,-0.025590139,0.038094096,0.040977493,-0.0074164267,-0.09476391,-0.038981292,0.027156599,0.027808135,-0.026033737,0.024938602,-0.024772251,-0.037206896,0.004907318,0.040561616,0.034295775,0.029804332,0.042945962,-0.0135159185,0.015040791,-0.0115335835,0.0062519787,-0.033464026,-0.018256886,-0.01005723,0.025021777,0.013148562,0.015567565,-0.02236018,0.008747225,0.0032368891,0.0013082715,0.02816856,-0.008525426,0.11145434,0.014035761,0.012871313,0.01950451,-0.03692965,0.009980986,0.01352978,0.006976293,-0.026061462,-0.016468626,0.0069901557,0.053398274,0.025063364,0.009384899,-0.0017510045,-0.0046473965,0.002344492,-0.055255845,-0.067759804,0.05428547,0.006941637,0.017425137,0.06227026,-0.015525978,0.0004539962,0.011006809,-0.00029999274,0.014846716,0.02241563,-0.01928271,-0.018686622,0.00776992,-0.014021899,-0.05018218,0.0118732145,0.009828499,0.0067059747,-0.0022578514,0.01760535,0.01637159,0.019546097,0.011089984,-0.012095014,0.0041795378,0.018714348,0.039313994,-0.023413729,0.01834006,0.014458567,-0.017050851,0.009364106,-0.058333315,-0.029471632,0.009142306,-0.023219654,-0.015387353,-0.039785318,0.00928093,0.0036943508,0.019656997,0.07047685,0.03235503,-0.03839907,-0.009059131,-0.025299026,0.0045260997,-0.022512667,-0.020391708,-0.015276453,-0.032244127,0.0010457508,0.045940258,0.0349889,0.005572717,0.030746982,0.022720605,-0.039203092,0.011942526,-0.01845096,0.011450409,-0.0074302894,0.017036987,0.0019771361,-0.054867696,0.012039564,0.020377846,-0.013654543,0.10125156,-0.03648605,-0.023552354,-0.02588125,0.02588125,-0.036735572,-0.04851868,0.035682023,0.030719256,0.0045191683,-0.011145434,-0.007735264,0.0253822,-0.037373245,0.010480035,0.028376497,-0.03113513,0.006775287,-0.054063674,-0.05544992,0.018825248,-0.013848618,-0.0031866375,-0.08239858,0.058166966,0.012497026,-0.01648249,0.025396064,-0.019948108,0.03648605,-0.040173467,-0.037622772,0.041448817,0.060773112,-0.029499358,-0.0041344846,-0.017508313,0.027239773,0.012323745,0.07058775,-0.014721954,0.0049003866,-0.05561627,0.010584003,0.02459204,0.017910324,-0.035155248,-0.011048397,0.04208649,0.017064713,0.04158744,0.021902718,0.020169908,-0.026283262,0.06498731,0.040118016,0.005742532,-0.017036987,-0.02811311,-0.0021573484,0.07907159,0.05434092,0.004786021,0.016732013,-0.047132432,-0.028057659,-0.030331107,-0.03279863,0.052122924,-0.017286513,0.04643931,-0.0044567874,0.019740172,-0.073914744,0.01637159,-0.0067198374,0.018811386,-0.07502374,0.0026044135,0.0016340398,0.01950451,0.01867276,-0.0038225788,-0.0036285042,-0.015151691,0.039341718,-0.048019633,0.005780654,0.0053959703,-0.02816856,-0.008345213,-0.033103604,0.009024475,0.014458567,-0.031384654,-0.0046716556,-0.016981538,-0.02705956,0.025839662,-0.004422131,0.013411949,-0.0070629334,-0.015373491,-0.02453659,-0.011166228,0.001135857,0.0050944616,-0.030497456,0.071641296,-0.007021346,-0.03096878,0.0013914465,0.013703061,0.013813961,0.053231925,-0.03340858,0.01627455,0.014375391,0.0077837827,-0.01425063,0.006227719,-0.013287188,-0.03895357,0.020266946,0.010258235,-0.005992057,-0.007104521,-0.047797833,0.016939951,-0.009135375,-0.019601546,0.010140404,-0.010147335,0.010445379,-0.0063143596,0.026491199,0.027586335,-0.04394406,0.026227813,-0.007236215,-0.035820648,-0.0070525366,-0.0055138012,0.06426646,0.0059504695,0.018090537,-0.004935043,0.03629197,-0.030552907,0.036763296,0.027905172,-0.0105146915,0.042114213,0.03415715,0.03845452,0.014694229,0.0031242564,-0.022706741,0.028265597,-0.03091333,-0.025229713,-0.029776607,0.023233516,0.024744527,-0.017854875,0.009849292,-0.0011965053,0.024730664,-0.015026929,-0.00036194068,0.013432743,0.012205914,-0.011783108,-0.033630375,-0.029166657,0.028348772,0.016745877,0.03315905,-0.0046300683,0.020072872,0.0011592499,0.013432743,0.033075877,0.018381648,-0.0028140834,0.0003634569,-0.01749445,0.021265045,-0.024730664,-0.0063178255,-0.027045699,-0.011866283,0.018423237,0.01782715,0.008802675,-0.015623015,-0.038094096,0.021472981,0.0029509754,0.023275103,0.058832366,0.029305283,-0.014638779,-0.01878366,-0.009433418,0.001277081,-0.047021534,-0.048407782,-0.0037636633,-0.014042692,0.016967675,-0.020876896,0.017993499,0.0027776945,0.015692327,-0.013321843,0.03845452,0.007984788,0.0063940687,-0.05115255,0.014035761,-0.002434598,-0.014486291,-0.04685518,-0.037650496,-0.030663805,0.023552354,-0.024689076,-0.012718826,0.00032663468,-0.014957616,-0.042613264,-0.04649476,0.02632485,-0.018187573,-0.01637159,-0.024411827,-0.018478686,0.011741521,0.014777403,-0.0037601977,0.018991597,-0.032465927,-0.00542023,-0.024203891,0.009066062,0.033907626,0.027253635,-0.03692965,-0.0035366653,-0.0130238,-0.014611054,-0.010410722,-0.025770351,-0.030247932,0.011485064,0.0168845,0.009655218,-0.01626069,-0.03648605,-0.022221556,0.015248728,0.03984077,-0.014541741,0.029138934,0.00024865824,0.00079189416,0.017452862,-0.00018302805,-0.014278354,-0.01793805,-0.005853432,0.0111385025,0.011242472,0.012767344,-0.045967985,-0.0054756794,0.0072431457,-0.027683374,-0.030857882,-0.01425063,-0.007679814,-0.0064079314,0.022013618,0.029111208,-0.021084832,0.0019130222,0.03900902,-0.03382445,0.015941853,-0.0024519262,0.036153346,-0.048158254,-0.043167762,0.023580078,0.010348341,0.008871987,0.020086734,0.010147335,-0.0070802616,-0.03382445,0.03318678,-0.008130345,0.010791941,-0.04885138,-0.010882047,-0.04912863,0.02442569,-0.0072916644,0.013800099,0.025742626,0.017092438,0.0041656755,0.01961541,-0.013127768,-0.0074164267,0.011381096,0.027350673,0.029194383,0.011263265,-0.024924738,-0.00472364,-0.025506964,0.0074580144,-0.041393366,0.02280378,0.0110830525,0.011748452,-0.033685826,-0.019019322,0.019559959,-0.04577391,0.028889408,0.0121573955,-0.014236767,0.048934557,0.015955715,0.004006257,0.023330554,-0.004744434,0.0061133537,0.016122064,-0.03080243,-0.011055328,0.006740631,-0.0072639394,-0.0041760723,0.0058846227,-0.011887076,0.015789365,0.045940258,-0.019157948,-0.012718826,-0.03900902,0.015373491,-0.002016991,-0.0021660125,0.00018205335,0.024619764,-0.012663376,-0.03058063,0.0039092195,0.043472737,-0.017563762,-0.00066973106,-0.018090537,-0.015858676,0.023995953,-0.013876342,0.018728212,-0.020502608,0.011200884,-0.031606454,-0.087389074,0.019338159,0.010632522,-0.021362081,0.01072956,0.04724333,0.024716802,0.0024484606,-0.020752132,-0.032382753,0.02208293,-0.048213705,0.011803902,-0.007035209,0.043805435,-0.0171063,-0.02107097,0.033658102,-0.0020048611,0.016080476,-0.024938602,-0.023843465,-0.019144084,-0.0037463352,-0.020377846,0.01972631,-0.0145971915,-0.028584434,0.042446915,-0.01050776,-0.006550022,0.015248728,-0.00024281,-0.004952371,-0.005985126,-0.028778508,-0.006803012,0.010999878,0.007950133,-0.014063486,0.017799424,0.0057633263,-0.0068827216,0.020571921,0.016011164,-0.0008772351,-0.01834006,0.007222352,0.020765996,0.009669079,-0.010389929,0.049433604,0.015415078,0.00804717,0.019698584,0.03107968,-0.029000308,-0.021112558,-0.045358036,-0.04131019,0.023399867,-0.0053613144,0.024453415,0.0008897979,0.0043250937,-0.026366437,-0.02872306,0.026518924,-0.009849292,-0.022249281,0.009384899,-0.0071183834,0.0044845124,-0.018284611,-0.003347789,0.003347789,-0.008199657,-0.021542294,-0.009433418,0.028917134,-0.012136601,0.016607251,0.03102423,-0.00289206,0.008962093,-0.011485064,-0.0040166536,-0.018201437,-0.0013853816,-0.011672208,0.010965222,0.02481384,0.008414526,0.014541741,0.0027395727,-0.011436546,0.025174264,-0.037040547,0.0011375898,-0.009537387,-0.0037567322,0.025590139,0.0003957305,-0.025340613,-0.037650496,-0.017134026,0.0035141387,-0.0017484053,0.01827075,-0.023399867,0.012815863,0.02744771,0.025687175,-0.012455438,-0.03570975,-0.0012034365,0.00028656345,0.04544121,0.026310988,-0.0006294432,-0.018423237,0.011110778,-0.010660247,-0.017286513,-0.009121512,0.037428696,0.005690548,0.017771699,-0.03058063,0.037539598,-0.026505062,0.011325646,-0.010147335,-0.01218512,-0.010958291,-0.043472737,0.005635098,-0.029554807,-0.025562413,-0.016926087,0.008712568,0.024273202,0.019033184,0.026685273,0.0026650617,0.0025299026,0.017314238,-0.035460223,0.018076673,0.0058984854,-0.033214502,-0.012164326,-0.041227017,0.012053426,-0.0037705945,0.02376029,0.010473103,0.018173711,-0.037428696,0.041393366,0.044637185,0.016343864,-0.0012502224,-0.004425597,-0.053204197,-0.012996075,0.0014061753,-0.028889408,-0.015941853,0.027004112,0.0048761275,-0.05367552,0.027627923,-0.020100595,-0.00536478,0.01609434,0.0006047507,0.0024397965,-0.017355826,0.030525181,0.026962524,0.010445379,-0.02236018,-0.01928271,0.060052264,0.033242226,0.029970681,-0.030109307,0.046189785,0.01990652,0.013058457,0.038038645,0.022679018,-0.011450409,0.011069191,-0.06204846,-0.017369688,0.024231615,-0.014943753,0.027572474,0.012919831,-0.022734467,0.008712568,0.022152243,0.006082163,-0.028778508,0.0051395143,0.010715697,-0.006612403,0.037705947,-0.023330554,0.020876896,0.016440902,-0.015290315,0.003683954,-0.013612956,-0.009273999,-0.03460075,0.021278907,0.0147080915,0.045690734,0.0012294287,0.0019875332,0.0003654063,0.0019199535,0.03873177,-0.03235503,0.015221003,-0.02761406,0.014077349,-0.012004908,0.020558057,-0.00061601395,-0.00676489,-0.03046973,-0.016718151,-0.007007484,-0.0012727489,-0.026699137,0.0025316353,0.028473534,0.034794826,-0.015345765,0.025506964,-0.008123414,0.01167914,0.019157948,-0.0016054484,-0.0039889286,-0.021847269,-0.014209042,-0.011256333,-0.003476017,-0.015664602,0.0114226835,-0.021625469,-0.012767344,-0.005243483,0.0040443786,0.009315587,0.00034981102,0.01867276,-0.0013966449,0.0061930628,0.004061707,-0.0019684723,0.007021346,0.03141238,-0.005028615,0.022110656,-0.021764094,0.006941637,0.040755693,0.022124518,-0.0072292835,-0.016953813,-0.0006714639,-0.0045468933,0.0017293444,-0.00047175752,-0.04752058,-0.057945166,0.027295223,0.030192481,-0.007104521,-0.0049835616,-0.0126911,-0.0023046373,0.031661905,0.013155494,0.0034898794,0.004155278,0.010999878,-0.024508866,0.013772374,-0.01782715,-0.005482611,-0.007166902,0.029499358,0.024994051,0.002964838,0.00027898242,-0.033852175,-0.017064713,0.01928271,0.008310556,-0.0065119,-0.00026750253,-0.01906091,0.021223458,0.052677423,0.018797522,0.01670429,0.02448114,0.013155494,0.021486845,-0.026227813,-0.01375158,-0.0060994914,-0.0059331413,-0.0071738334,-0.009183893,-0.009218549,0.008407594,-0.033491753,0.017258788,0.0066366624,-0.013356499,0.033491753,0.006373275,0.018506411,0.0010206251,0.04521941,0.0033599187,-0.013363431,-0.0063524814,-0.004844937,0.0074164267,0.013716924,-0.018132124,0.010078023,-0.0054860767,-0.008865056,-0.017147887,-0.009121512,0.005645495,0.023885053,0.003127722,0.009641355,-0.03917537,0.087666325,0.0123861255,-0.02313648,0.005136049,0.029748883,0.0011748452,0.01749445,0.0032403548,0.014008036,0.03107968,0.006383672,-0.00023133014,0.0041206223,0.019948108,-0.029277558,0.004761762,-0.019019322,-0.003604245,0.039757594,0.01162369,-0.0098354295,-0.005607373,0.033630375,0.014222904,-0.024827702,-0.028695334,0.027336812,0.008996749,0.049988102,-0.003020288,-0.02230473,0.030220207,0.031384654,0.0169954,-0.029554807,0.0015430673,0.026366437,0.009246274,0.059220515,0.017674662,0.0024571246,-0.042557813,0.0027499695,-0.0009365838,-0.024079127,-0.0010024306,-0.00081745314,-0.0017847943,-0.012843587,-0.013044594,-0.011582102,-0.016413176,-0.0055484576,-0.011062259,0.009371037,-0.021708643,0.0029128536,0.01889456,0.00014122401,0.00043796774,0.017452862,-0.013495124,-0.011949458,0.0025437651,0.004706312,0.006082163,0.0129129,0.00461274,0.005822242,0.040367544,0.043250937,0.00033161652,-0.0050494084,0.010909772,-0.01274655,-0.018700486,0.014021899,0.008560081,-0.036042448,0.026283262,0.011048397,-0.023164203,-0.013827824,-0.010909772,-0.061660312,0.032854076,0.034878,-0.01212967,0.010098817,0.0070248116,0.0019008926,0.0003435296,0.025215851,0.0033443233,0.004061707,-0.008601669,-0.008684844,0.0046369997,-0.00877495,0.007998651,-0.012011839,0.009294793,0.009662149,0.009544318,0.0014642244,-0.004477581,0.026033737,-0.02051647,0.0065292283,0.020863032,-0.0022387905,-0.012510888,-0.0049038525,-0.008449182,0.014236767,0.002205867,-0.0014261026,-0.030386556,0.042640988,-0.00078842853,0.024023678,0.013827824,0.013425812,-0.008969025,-0.014680366,-0.016357727,-0.013502056,0.0028314115,0.0033633842,0.0004353685,-0.013938724,-0.022374043,-0.0053405203,0.0060613696,0.014888303,0.013294118,0.017175613,-0.013467399,-0.006775287,0.026061462,-0.00405131,-0.022166105,0.013765443,-0.017951911,-0.010604797,0.008650187,-0.017452862,0.0030133566,-0.029055757,0.014874442,-0.0005098793,0.0097799795,-0.01005723,-0.035903823,0.0129129,-0.02839036,0.023386003,0.029610258,-0.0050598052,-0.0024519262,0.009211618,0.010188923,-0.029721158,0.01804895,0.008781881,0.01637159,-0.0058672945,-0.016676564,0.029388458,0.014132799,0.01867276,-0.0076035704,0.014403117,-0.009634424,-0.005499939,-0.03607017,-0.0017440732,0.0012138335,-0.05237245,-0.022651292,0.0052677426,-0.030081581,0.006958965,0.029887507,0.03448985,-0.02800221,-0.0140288295,-0.010084954,0.06781525,0.0042419187,0.030137032,-0.02236018,-0.02425934,-0.02179182,0.014278354,0.0147635415,0.00060301786,-0.01235147,0.03157873,0.002800221,-0.017993499,-0.035543397,-0.0018731676,-0.03712372,-0.010431516,0.017023126,0.014583329,0.015775502,0.0027222445,-0.018686622,0.0026806572,0.013411949,0.009488868,0.022124518,0.006376741,0.002427667,0.0040409127,-0.0072639394,-0.009031406,0.032854076,0.0353216,0.018769799,0.0066643874,-0.042391464,0.023690978,-0.025742626,0.013321843,-0.0011705132,-0.016537938,0.0055692513,-0.012989144,0.006026713,-0.010909772,-0.018062811,-0.016898364,0.00405131,-0.042640988,0.024384102,-0.005919279,-0.002143486,0.0100017795,-0.0038260445,0.001841977,0.009107649,-0.032660004,0.029138934,-0.010258235,-0.0023739496,0.015609153,0.01447243,-0.0025662917,0.052899223,0.00693124,-0.0034326967,-0.01430608,-0.04516396,-0.012192051,-0.0051707053,-0.011394959,-0.008615531,0.02403754,0.008435319,-0.010819666,-0.02509109,0.0524279,-0.012053426,-0.011769245,0.04067252,-0.013439675,-0.02599215,-0.040312093,-0.0011774444,-0.017882599,0.0061514755,-0.032909527,0.028126972,-0.011595964,-0.001933816,-0.01441698,0.00011122474,-0.021625469,0.009273999,0.014319942,0.036402874,-0.0051325834,0.050542604,-0.02331669,-0.022831505,0.029582532,-0.025908975,-0.016967675,-0.0052920016,-0.009980986,-0.01738355,0.027378399,0.016607251,0.0005432359,-0.04153199,0.011942526,0.019310435,0.0019043582,-0.0076659513,0.011713795,-0.0038607006,0.0035435965,0.003072272,0.011790039,0.0027811602,0.0014936823,-0.0016539672,-0.016011164,-0.008560081,-0.027849723,-0.024564315,-0.019462923,0.0029804332,0.019074773,0.04940588,0.0060683005,0.032715455,-0.02531289,-0.0043805437,-0.017674662,-0.024675215,0.005378642,0.030746982,-0.0055623204,0.0105701415,0.02861216,0.018645035,-0.026463475,-0.007004018,-0.0032230266,-0.05148525,0.027156599,0.05788972,-0.0024501933,-0.026699137,0.039258543,-0.035986997,-0.026602099,0.024065265,0.0015292049,-0.024675215,-0.004439459,0.009766118,0.0019563425,-0.042419188,0.07275029,-0.011810833,0.025465377,0.021265045,-0.030636081,-0.0062450473,-0.0017510045,-0.010050298,0.037539598,-0.02464749,0.000051415722,-0.016135927,-0.01659339,-0.011887076,-0.005836104,0.02778041,0.008005582,0.05622622,0.00083694723,-0.054202296,0.023524629,0.02778041,-0.018395511,-0.0057217386,-0.018728212,0.0045815497,0.015345765,0.027946759,0.00043731794,-0.01889456,-0.017536037,-0.0067579593,0.00024194359,0.012905969,-0.010902841,0.0039750664,-0.013786237,0.0070282775,-0.036153346,-0.03984077,0.00645645]},{"id":"enum-MessageFlags","type":"enum","source":"main","text":"Enum: MessageFlags\nMembers: SuppressEmbeds=4, SuppressNotifications=4096, VoiceMessage=8192, CompactAttachments=131072","meta":{"url":"/docs/typedefs/MessageFlags"},"embedding":[0.019320117,-0.006359706,0.0041739754,0.03647124,-0.039497122,0.023028832,0.011494332,-0.0037689628,0.0055195554,-0.024019606,0.022667332,-0.006008249,0.0064266506,0.03240103,0.022653943,-0.016562015,0.0089303665,0.041318007,0.028089818,0.023417108,0.010557112,0.03264203,0.020538503,0.023015441,-0.022131778,0.007283537,-0.015584627,0.024287384,0.06024985,-0.023176108,0.017472455,-0.028759262,0.047342993,-0.036417685,-0.019721784,-0.0048635015,0.0009204838,0.015664961,-0.018797953,-0.0036986712,0.039791677,-0.028545039,-0.04011301,-0.0067546773,-0.004163934,0.05601897,0.0016150307,-0.013375467,-0.031437032,0.021569446,-0.020752726,-0.0032635336,0.03781013,0.032668807,0.014567074,0.012692635,0.016816402,-0.017726844,-0.0024936744,0.0040166564,0.010905223,-0.047557212,-0.047262657,-0.0077856192,0.028812816,0.013268355,-0.009251699,0.04177323,0.048039213,0.024474828,-0.0076048695,-0.01555785,-0.025465602,0.017338568,0.027219543,0.018797953,-0.02268072,0.0022225499,-0.0044417526,-0.07294248,0.018931841,0.040996674,-0.029616147,0.007906119,-0.023484051,0.03098181,-0.018409677,0.029053817,-0.040541455,-0.012384691,-0.05007432,-0.0036451158,-0.05484075,-0.044745553,-0.01812851,-0.027340043,0.012003109,-0.0029706522,-0.037676238,0.014861629,0.07444204,-0.016990457,-0.075245366,-0.023939272,-0.0008426611,0.007497759,-0.009419059,-0.00485346,-0.030553367,0.036685463,-0.038158238,-0.0140984645,0.012183858,0.006416609,0.057250746,-0.015624794,-0.03558758,0.0066308305,0.016227292,-0.0015254926,-0.036337353,-0.015865793,0.038774125,-0.0026024587,0.05542986,-0.0004928772,0.024300773,-0.019547729,-0.01462063,-0.0021556057,0.04177323,0.023872329,0.102772854,-0.0026158476,-0.015638184,0.0022761053,-0.00044434264,0.026148435,-0.05101154,-0.031169254,-0.0014928574,-0.0015397184,-0.00006479997,0.0146875745,0.011213167,0.018168677,-0.062445622,0.025773546,0.00116232,0.02385894,-0.011253333,0.0311157,-0.012612302,0.0122708855,0.00005397382,-0.033632804,0.028598595,-0.007404037,-0.002928812,-0.015075851,-0.04078245,-0.027661376,0.014955351,-0.03569469,-0.016628958,0.01011528,0.03965779,-0.0013003926,-0.032775916,0.0013832361,0.019895839,-0.021930944,-0.0015338607,-0.07197849,-0.0076316474,-0.0035011857,0.019574506,0.011829054,-0.059714295,-0.014834852,0.031196034,0.051627427,0.00090458454,-0.05928585,-0.04254978,-0.0107378615,0.02233261,0.019949395,0.019909227,-0.033365026,-0.01123325,-0.013121078,0.02351083,0.04230878,0.016695902,-0.023671497,-0.00040668648,-0.015638184,-0.01415202,-0.055054974,-0.007839175,0.0065873167,0.042282004,-0.028196929,-0.028089818,-0.03542691,0.01076464,0.024755994,0.017713455,0.04137156,0.054706864,0.011152917,0.015490905,0.013234884,-0.03400769,-0.0000028830493,-0.05441231,-0.037488796,-0.031892255,-0.010416529,-0.033365026,-0.020578671,0.05299309,-0.004555558,-0.006915344,0.025519159,-0.045816664,-0.005961388,-0.03941679,0.022292444,-0.02118117,-0.028973483,-0.0003878584,-0.028196929,-0.027902374,0.013362078,-0.029134149,0.0313567,0.02585388,-0.022011278,-0.033525694,-0.02023056,0.019601284,0.013977964,-0.026871432,0.02305561,0.0036886297,-0.023336776,-0.035748243,-0.036310576,0.03577502,0.011628221,-0.013522744,-0.026523322,-0.008669284,0.010061725,0.009352115,0.042496227,0.005435875,0.022198722,-0.0039497125,-0.03740846,-0.016816402,-0.0533412,0.019239785,0.019427229,0.07181782,0.0047865156,-0.02128828,-0.004803252,-0.013047439,-0.0119964145,0.032186806,0.04399578,-0.038613457,-0.043701224,-0.01392441,-0.022479888,0.045575663,0.02701871,-0.019159451,-0.017285012,-0.043620892,0.003218346,-0.01648168,-0.023189498,0.03518591,0.04653966,0.040220123,-0.016347792,-0.013696799,-0.027795263,0.023082387,-0.033632804,-0.027232932,0.017003845,-0.0064735115,-0.044504553,0.044504553,0.01707079,0.021904167,0.010818195,-0.024595328,-0.01918623,-0.009492698,0.043540556,0.026750933,0.004143851,-0.027607819,-0.04969943,-0.0008012393,-0.0102090025,-0.0795298,-0.003956407,-0.043487,0.024099939,0.02900026,0.047530435,0.035828575,-0.0035580883,0.016575404,0.00206021,0.033847027,-0.050583094,0.04011301,0.01965484,0.0068818717,0.013576299,0.004933793,0.0047530434,-0.029268038,-0.033980913,0.00044015862,0.026804488,0.038506348,-0.03740846,-0.040728897,-0.0005401566,-0.055965416,0.04188034,0.04329956,-0.004666016,-0.016200515,-0.026402822,-0.037703015,-0.021770278,-0.081725575,0.043567333,0.025224604,0.011039111,-0.000086922955,-0.007765536,-0.0035949077,-0.016521847,0.034114804,-0.023684885,0.060892515,-0.04423678,-0.015209739,0.047932103,-0.025371881,0.048119545,-0.010677612,-0.020873226,-0.028330818,0.0002192425,-0.067479834,0.025719991,0.012465024,-0.012103525,0.028143374,0.018972008,0.016200515,-0.003342193,0.023751829,-0.0069555105,-0.015758682,-0.011802276,0.019561118,-0.016080014,0.018958619,0.011895997,-0.012940329,0.026108269,-0.016695902,0.00299743,-0.0056266664,0.034329023,-0.039443567,0.019360285,0.032186806,0.01800801,0.002175689,-0.021074058,0.020257339,0.063248955,-0.015839016,0.03740846,0.0004585683,-0.0098541975,0.0028518261,-0.011916081,0.024528382,0.022640554,0.002873583,0.00201837,-0.010998945,0.0071161767,0.06330251,0.002031759,0.07422781,-0.005482736,0.023283219,-0.02514427,0.024019606,0.0042509614,-0.009479309,-0.021489114,-0.017472455,0.016053237,-0.029375149,-0.00424092,-0.042442672,0.038024347,0.04512044,-0.01649507,-0.002388237,-0.025679825,0.062766954,-0.05628675,-0.05425164,0.004826682,0.020886615,0.03647124,0.030285591,-0.047530435,-0.00033137418,0.01508924,-0.0011690144,-0.0038225183,-0.050663427,0.0037388378,-0.009512782,-0.017967844,0.0010803132,-0.013937798,-0.018061565,-0.009747087,0.07090738,-0.037836906,-0.078994244,-0.023309996,-0.075245366,0.015624794,-0.06303473,-0.027219543,0.042174894,0.0038995042,0.057572078,0.0053722784,-0.009345421,0.0040333928,0.025184438,0.013482577,0.0057639023,0.0020535158,-0.049538765,-0.023135941,0.017619733,0.059392963,0.010336196,0.0002886972,0.012578829,0.06806894,0.039684568,-0.05494786,0.06137451,-0.042630114,0.009800642,-0.024769383,0.0018577037,0.021716723,0.00044183224,-0.024140107,-0.032106474,0.084189124,0.0568223,-0.015919348,0.008040007,-0.033713136,-0.029348372,-0.0014041562,0.010229086,-0.01624068,0.01731179,-0.0045522107,-0.0017589609,-0.03588213,0.03778335,-0.06822961,-0.02352422,0.008106952,0.018396286,-0.037569128,0.06828316,0.04854799,-0.05160065,0.00012457912,-0.029348372,-0.025398659,0.039577454,-0.010978862,-0.009231616,0.0076651196,-0.007142954,0.009291866,0.009084338,0.06207073,-0.0267911,-0.027554264,-0.01543735,-0.025894046,0.028250484,0.010885139,0.0059881657,-0.028330818,-0.021234725,-0.041692894,-0.02080628,-0.011286805,0.026951766,-0.029883925,0.011059195,-0.053608976,-0.024836326,0.006831663,-0.0013246599,0.0015681697,0.038961567,0.00014162899,-0.005827499,0.0015957842,-0.00090374774,-0.01743229,-0.027447153,-0.002319619,0.0027865556,0.04678066,-0.00675133,-0.008696062,-0.043620892,-0.0043748086,0.03274914,-0.008053397,0.025800325,0.010851667,-0.009486004,0.020993724,-0.004508697,0.029696481,0.016548624,-0.022051444,0.03823857,0.002661035,-0.028036263,-0.0036216853,-0.00021014227,0.027072266,0.006496942,0.007263454,0.0041103787,0.031329922,-0.04549533,0.05111865,-0.0066643027,-0.012665857,-0.0023781955,0.0036685464,-0.0006183977,0.00923831,0.022279056,0.012471719,0.037756573,0.0067345942,-0.02747393,0.0003449722,0.017459067,0.024474828,-0.029268038,0.013388855,0.011413999,0.003956407,0.028839594,-0.009345421,-0.0261886,0.017365346,-0.00086776516,-0.035641134,-0.020484949,-0.0013480904,0.0049672653,0.004568947,-0.019614672,0.011527805,0.03941679,0.023457274,0.002244307,-0.036765795,0.0021723418,-0.009793947,0.010095197,0.032856252,-0.059821405,-0.024809549,-0.032508142,-0.0073237037,0.039390013,-0.028625373,0.038265347,0.0020233907,-0.0014317707,0.0052551255,-0.02771493,0.015357017,-0.025559325,0.043728,-0.037167463,-0.040300455,0.0303927,0.0018543565,0.0034409359,-0.015946127,-0.0078057027,-0.0056869164,-0.010731167,-0.018222231,0.006252595,0.0029790204,0.002319619,-0.046834216,0.055590525,-0.026014546,0.03307047,0.010396446,0.029401926,0.028812816,-0.011835748,-0.021716723,0.0035681298,0.010791417,0.0021489114,-0.025090715,0.014634019,0.010557112,-0.018570343,-0.057143632,0.00086107076,0.020632226,-0.041264452,0.006647567,-0.022653943,0.018744398,0.022305833,-0.014446575,0.018744398,0.0025924172,-0.03333825,-0.0043078642,-0.020618837,0.013870854,0.020792892,0.017485846,0.011126138,-0.0038258655,-0.0019597937,-0.037569128,-0.016776236,0.0013715208,0.019601284,0.00090793177,-0.0017957803,0.021957723,-0.055215638,-0.050154652,-0.011668388,-0.0009932857,-0.004086948,-0.010061725,0.008307785,-0.007886035,0.018222231,-0.009486004,0.0076115644,-0.023952663,0.027955929,0.011085972,0.03569469,0.003912893,0.023497442,-0.044370666,-0.029348372,0.03379347,-0.0486551,-0.006262637,-0.011065889,-0.015035684,-0.037354905,-0.018048177,0.033498917,-0.010262557,-0.0014100138,0.013288439,-0.013134467,0.004729613,0.022011278,-0.017325178,-0.020752726,-0.020217171,0.05494786,0.016776236,0.023323385,-0.023323385,0.0080065355,0.05569764,0.0026292366,-0.0024769383,0.01590596,0.032508142,-0.03424869,0.03746202,-0.0011171326,0.024581939,-0.0067345942,0.024822937,-0.008562173,0.024073161,0.0014066666,0.0047865156,-0.016749458,-0.023939272,0.025719991,0.0066107474,0.039979123,-0.017619733,-0.013857465,-0.006118707,-0.006517025,0.0101085855,-0.02924126,0.023323385,-0.00567018,0.010657528,-0.0017723497,0.01918623,0.03288303,-0.0038258655,0.009064255,0.015999682,0.012719412,-0.00406017,0.004977307,0.05240398,-0.025934212,0.0065873167,-0.028277263,0.015865793,-0.06094607,-0.03625702,0.00116232,0.016039848,-0.03510558,-0.013844077,-0.03240103,-0.01682979,0.025398659,-0.03400769,-0.019226396,-0.051252536,-0.037756573,0.00032781775,0.0018878286,-0.013362078,-0.004401586,-0.010597279,-0.051252536,-0.037756573,0.004244267,-0.04129123,-0.01040314,-0.009231616,0.007732064,0.0055496804,-0.02373844,-0.020993724,0.0053187227,-0.0005602399,0.01673607,-0.11118105,0.0345968,0.0402469,-0.013509355,-0.0052986396,0.007169732,-0.032829475,0.000388486,0.005482736,-0.0031865477,-0.010985556,-0.012712718,0.02456855,-0.042415895,0.036578353,-0.009157977,0.0035815188,0.041237675,0.016321015,-0.0013623161,0.031651255,0.01567835,0.014861629,0.03799757,0.013676716,0.016173737,-0.036792573,0.02700532,0.042683672,-0.013268355,-0.0033739915,0.003601602,-0.045896996,0.0021907515,0.029991036,-0.016080014,0.0056065833,-0.014607241,-0.031437032,-0.009378893,0.022439722,-0.020297505,-0.009573031,-0.0011480943,-0.02503716,0.0155712385,0.014553686,0.018891675,0.0012618996,-0.009338726,0.012732801,-0.014218965,-0.017994622,-0.00052425737,0.037756573,0.00032467974,-0.026630433,-0.0037354906,-0.017592955,-0.027420375,-0.0058676656,0.015450739,0.043594114,0.008870116,0.031169254,-0.029535815,0.010510251,-0.0036986712,-0.01064414,-0.020833058,0.020779504,0.00093889347,-0.00014947401,-0.008307785,0.012719412,0.0033405195,-0.014272519,0.0018961966,-0.016213903,0.024488216,-0.011454166,0.003785699,0.028357595,-0.008455062,-0.01403152,0.037033573,-0.0018309259,-0.012953717,0.03240103,0.0069220383,0.029428704,0.009057561,-0.0076115644,0.01720468,-0.019346897,-0.046941325,-0.006681039,0.021542668,0.01696368,-0.014459964,0.04171967,0.017151123,-0.015731905,-0.04747688,-0.03789046,-0.03076759,-0.010483474,0.027353432,0.01146086,-0.004190712,0.012873384,-0.032320697,0.026389433,0.06432006,-0.03382025,-0.011373833,0.0182624,0.013777132,-0.042630114,-0.025130881,-0.012511885,0.014459964,0.0047865156,-0.03743524,-0.026108269,0.03823857,0.0011455839,-0.00707601,-0.0101487525,0.0034476302,-0.012645774,0.05393031,-0.011648304,-0.0038559902,-0.018744398,0.007819092,-0.00520157,0.0009798969,-0.057625633,0.005593194,0.004803252,0.013074217,0.02830404,0.009157977,0.010456696,0.011501026,0.011320277,-0.005258473,0.0007786456,-0.04233556,-0.0023012096,-0.0353198,-0.03566791,-0.016441515,-0.030098146,-0.0001687205,0.0032652072,0.004086948,-0.011574665,0.041559007,-0.012076748,0.028571816,-0.016106794,-0.0041840174,-0.034918133,-0.012692635,-0.048735432,-0.030124925,0.009914448,0.0617494,0.019320117,0.0009882649,0.017137734,-0.026817877,-0.03941679,0.03406125,-0.012552052,-0.0066776914,-0.011266721,-0.014794685,-0.005164751,0.016803013,0.03414158,-0.0113872215,0.04704844,0.020444782,0.02547899,0.020498337,-0.0006179793,0.010523641,0.041853562,0.013261661,0.0049973903,0.002796597,-0.0015790481,-0.0057103466,-0.028839594,0.018436454,-0.020792892,0.018423066,0.032320697,-0.00412042,-0.003231735,-0.0024284036,-0.011179694,0.0080266185,-0.020632226,0.012183858,-0.008990617,0.0076450366,0.004880238,0.030017814,-0.007417426,0.0021003766,-0.02139539,0.017726844,-0.045066886,-0.015638184,-0.007859258,0.045468554,0.0057906797,0.014473353,0.013007273,0.025559325,-0.014928574,0.0070559266,-0.0033137416,0.02665721,0.004930446,0.0269116,0.0033221098,0.0025924172,0.0046425858,-0.026295712,0.047798213,-0.041692894,-0.012625691,0.0011045806,0.03424869,0.008127036,0.023698274,-0.006326234,-0.021221336,0.013616466,-0.0027363473,-0.0076450366,0.02771493,-0.008515312,0.009834114,-0.0128800785,-0.003631727,-0.03813146,0.002707896,-0.014580463,0.03320436,0.019949395,-0.024233827,-0.0019112591,0.008455062,0.010436613,0.0029890619,0.011902693,0.03671224,-0.025278158,0.022346,0.00031108168,-0.0038593374,0.012799745,0.0026760974,0.014821462,0.009372199,0.041907117,0.0072567593,0.0042944755,0.0032919848,0.025157658,-0.03719424,0.016454903,-0.045896996,0.009084338,-0.05095798,-0.019976173,0.007865952,-0.0010736189,-0.03475747,0.0033606028,-0.0303927,-0.022600388,0.038506348,0.03424869,-0.0017489193,0.02700532,0.010590585,-0.018838119,0.012404774,-0.007437509,0.001272778,-0.015972905,0.057572078,-0.0016292563,-0.026215378,0.011608138,-0.02023056,-0.014808074,0.0012309379,0.0073437872,-0.012846607,0.036176685,-0.028812816,-0.010155447,0.0062090815,0.012953717,0.028705705,-0.0101688355,0.008448368,-0.014526908,-0.008796478,-0.04501333,-0.0046559745,0.0042810864,-0.007651731,0.017218068,0.012672552,0.01707079,-0.0265501,-0.015638184,0.041800007,-0.022131778,0.008033313,0.015638184,0.023323385,-0.018409677,0.02644299,-0.009077644,-0.013449105,0.018222231,-0.038426016,0.037274573,0.002388237,0.01720468,-0.038318902,0.00958642,-0.026349267,0.0010903549,-0.00030919886,-0.00959981,-0.006774761,-0.026335878,-0.012009803,-0.04230878,0.063356064,-0.018289177,-0.022198722,0.021823835,-0.022948498,0.013482577,0.036444463,0.018449843,-0.012217331,0.04621833,-0.004244267,-0.001034289,0.017097568,-0.016883347,0.0016794645,-0.014071687,-0.014660796,0.021730112,0.022292444,-0.027822042,0.002826722,0.0020786198,0.029723259,-0.005228348,-0.021448946,-0.011213167,-0.005462653,-0.002950569,0.029455481,0.024729216,-0.011634915,0.006168915,0.003852643,0.014540297,-0.031919032,0.011902693,-0.019895839,-0.010450002,0.048199877,-0.028786039,-0.015450739,-0.035748243,-0.009760476,0.013536133,-0.017592955,-0.014058298,-0.03194581,-0.00970692,0.0041840174,-0.022305833,0.04327278,-0.02547899,-0.0140984645,-0.029482258,0.014834852,-0.012572135,0.031678032,0.009753781,-0.023430496,-0.0009941225,-0.0153168505,0.0069488157,0.012116914,0.013656632,0.024501605,-0.009004005,0.023577774,-0.003019187,0.007410731,0.03545369,-0.007571398,-0.013301828,0.029160926,0.011420693,-0.029027037,0.014982129,-0.030098146,-0.029428704,0.004404933,0.044022556,0.01636118,-0.021676557,0.00017938974,0.029883925,-0.048628323,0.041505452,0.0135294385,-0.02047156,0.014406408,0.021944333,-0.021448946,0.013710188,-0.007571398,-0.016173737,0.002396605,0.017633121,0.03194581,-0.008957144,-0.022359388,-0.022238888,0.0008024945,0.013067523,0.007886035,-0.00206021,-0.03989879,0.009639976,-0.010162141,-0.013328605,0.014259131,-0.0046091136,-0.032775916,-0.04482589,0.024782771,0.0009690184,0.02257361,-0.02841115,0.0176599,-0.024608716,0.012511885,-0.0129738,-0.005271862,0.011480943,0.03307047,-0.0098541975,0.00074726547,0.0033455403,0.0029790204,0.00959981,-0.0068751774,0.01034289,0.0039664484,0.0043948917,0.00324345,0.0036819351,0.009840809,0.0057672495,0.013408938,-0.014339464,0.0051547093,0.020551892,0.019520951,0.03299014,-0.016936902,0.023216275,0.015651572,-0.015410572,0.00005815784,-0.007517842,-0.019373674,-0.020565283,-0.005496125,0.008609034,0.012130303,-0.014928574,0.01192947,0.007886035,0.030017814,-0.009660059,-0.0012158754,0.004224184,0.007497759,0.0313567,-0.023122553,0.03017848,0.006014943,-0.0034108108,0.015236517,-0.0007388975,0.003005798,-0.0028133332,-0.012331136,-0.008555478,-0.038613457,0.0057203886,0.0175394,-0.036685463,0.0123110525,0.003835907,-0.055751193,-0.051520314,0.009271782,0.0008209042,0.010617362,0.03847957,0.017271623,-0.017285012,0.0017673289,-0.027273098,0.010101891,0.010885139,0.007410731,0.0030342494,-0.034302246,-0.019561118,-0.003342193,0.026295712,0.014741129,0.031758364,0.040032677,0.009901059,-0.04948521,-0.010034947,0.033632804,-0.034677137,0.030017814,0.0028685622,0.0029020344,-0.0043078642,0.0002702875,-0.03941679,0.01767329,-0.0060785403,0.0110324165,-0.029455481,0.022131778,0.033847027,-0.016588792,-0.004113726,-0.019601284,0.007169732,-0.035132356,0.010356279,0.057572078,-0.04611122,0.00134558,-0.008260923,0.014875018,-0.018851507,0.05119898,-0.018570343,0.015156184,-0.0128599955,-0.016628958,0.0056735273,-0.022894943,0.015209739,-0.0057906797,0.03403447,0.0034342413,-0.027554264,-0.007216593,-0.018061565,-0.006527067,-0.05004754,-0.030633701,0.014285908,-0.0048099463,0.008173896,-0.019092508,0.027581042,0.007156343,0.026590267,0.021422168,-0.03805113,0.009660059,-0.049993984,0.0003150565,-0.016588792,0.015531072,-0.028170152,0.029107371,-0.012384691,0.046245106,-0.022667332,0.000073168005,0.011768804,-0.018771175,0.006014943,0.024514994,0.022105,-0.036096353,-0.0021790361,-0.00552625,0.011601443,-0.003571477,-0.013897631,0.036980018,-0.020083282,-0.0033622764,-0.010791417,0.011675082,0.020324282,0.016160348,-0.0073705646,-0.025706602,0.039550677,-0.0015305135,-0.0107780285,0.005680222,-0.02456855,-0.0057639023,-0.015209739,-0.019440617,-0.021623,0.036498018,0.015852405,-0.026282324,-0.013777132,0.007437509,-0.025492381,0.019052342,0.012110219,0.012739495,-0.03248136,-0.018115122,0.027286487,-0.00054183026,0.020511726,0.0029371802,0.023068998,-0.02163639,0.014647407,-0.01415202,0.015598017,-0.0047496962,0.016468292,0.008347951,0.035748243,0.020203782,0.017780399,-0.03406125,0.036578353,-0.016548624,-0.0030007772,0.031142477,-0.036551576,-0.004836724,0.0055831526,0.021422168,0.010858362,-0.010751251,-0.0018275788,-0.0025171048,-0.017592955,0.02012345,0.002903708,0.0055530276,-0.005037557,0.027955929,-0.01250519,-0.026817877,-0.005151362,0.015303462,-0.043567333,0.03660513,0.016816402,0.0021689946,-0.007839175,0.043620892,-0.023671497,0.019494174,0.019668229,0.009593115,-0.011019028,0.016923513,0.034784246,0.028357595,-0.029214483,0.026242156,-0.0353198,0.008388118,-0.028973483,0.017941065,0.013362078,0.028732484,0.020525115,0.019895839,0.02750071,0.027661376,0.02538527,-0.0402469,0.028678928,-0.0037790043,0.0091312,0.003648463,0.04900321,-0.027929151,0.020618837,-0.01111275,-0.029642925,0.050583094,0.01953434,-0.022720888,-0.015116017,-0.008729533,-0.012498496,-0.02784882,-0.011186388,0.029535815]},{"id":"enum-MessageType","type":"enum","source":"main","text":"Enum: MessageType\nMembers: Default=0, RecipientAdd=1, RecipientRemove=2, Call=3, ChannelNameChange=4, ChannelIconChange=5, ChannelPinnedMessage=6, UserJoin=7, Reply=19","meta":{"url":"/docs/typedefs/MessageType"},"embedding":[-0.020826671,-0.00973407,0.008649737,0.020353055,-0.00015170535,0.00793308,-0.0056023872,0.026198482,0.010606522,-0.005325072,0.013797202,0.040008146,0.026397899,0.043497954,0.06221828,-0.014233428,-0.0026204714,0.014270819,0.03370157,0.040307276,-0.007926848,0.05678415,0.021773905,0.04407128,-0.03482329,0.033601858,-0.037490502,0.023506345,0.013086777,-0.03145812,0.029912634,-0.027295278,0.039409894,-0.021051016,-0.014632263,-0.019592775,-0.017648455,0.018894814,-0.019916829,-0.025575303,-0.0152928345,-0.012164471,0.0041005234,0.014694582,-0.023119973,-0.004490011,-0.04614024,0.0014107234,0.0036861089,0.028192658,-0.018022362,-0.019119158,0.052596383,0.060622938,0.01645195,-0.012756492,-0.001177031,-0.03270448,-0.00061772706,-0.02026581,0.001022015,-0.04873267,-0.007503086,-0.039584387,0.03741572,0.0050913794,-0.033003606,0.011211006,0.047336742,-0.009740301,-0.02702108,-0.011348106,-0.019044377,-0.008288292,0.010145368,0.045890965,-0.017573673,-0.03554618,-0.0072039594,-0.023032729,-0.0033308964,0.018695395,-0.027494697,-0.011391728,0.0087993,0.00952842,-0.0177357,-0.014943853,-0.015803842,-0.03509749,-0.05474012,-0.030186834,-0.04514315,0.003157964,0.031258702,-0.057432257,-0.00035482305,-0.041404072,-0.03143319,0.0066617928,0.059825268,-0.030635523,-0.04641444,-0.00668672,0.0004112987,-0.024416188,-0.022708675,0.00010224045,-0.0437223,0.0041005234,-0.037365865,-0.00762149,-0.04043191,0.013174023,0.015965868,-0.01607804,0.014382992,-0.028591493,-0.0075778672,0.006100931,-0.032305643,0.005885934,0.05349376,-0.0020019654,-0.024727777,-0.027295278,0.0042532026,-0.02061479,0.008282061,0.025026904,0.029538726,0.0100830505,0.034075476,-0.001977038,0.006294117,0.008749446,0.0056241984,0.039783802,-0.063165516,-0.055936627,-0.0035801684,-0.008718287,0.00041675154,0.041179728,0.009534652,0.0021406228,-0.06660546,-0.0032374195,-0.023157364,-0.041827835,-0.021213043,0.025089221,-0.022160277,0.009385089,-0.00069250865,-0.02102609,0.020278273,-0.004923121,-0.021636805,0.0004272677,-0.015305297,-0.10569131,-0.015405007,0.0087993,-0.04050669,0.004184653,0.0063252756,-0.0020518198,-0.029787999,0.024166916,0.04778543,-0.022658821,-0.035172272,-0.051599294,-0.00942248,-0.012351425,0.00015306855,-0.020103782,-0.047386598,0.0004736167,0.029837852,0.047436453,-0.025899356,-0.10957995,-0.014432846,-0.023319392,0.012220558,-0.0061352057,0.03599487,-0.026198482,-0.0011396402,0.028142802,0.031931736,0.007054396,0.013498076,-0.017972508,0.034598947,0.01493139,-0.013784739,-0.08146207,0.009783924,-0.035172272,0.06341478,-0.01631485,-0.03741572,-0.01586616,-0.017573673,0.006505998,-0.006319044,0.011292019,0.049106576,-0.010631449,0.025089221,-0.0059887585,-0.074083626,0.035172272,-0.08475246,-0.010631449,-0.029738143,-0.0034898072,-0.042949557,-0.007409609,0.047486305,0.04008293,-0.032754336,0.019891901,-0.02248433,-0.048483394,-0.011678391,-0.012874897,-0.04045684,-0.008749446,0.003866831,-0.06321537,-0.02154956,-0.01202114,-0.021562023,0.021462316,0.002354062,0.007496854,-0.033552006,0.005072684,0.015405007,0.055487934,-0.05713313,-0.0042532026,0.024279088,0.005203552,-0.025176467,-0.026298191,0.06740314,0.016776003,-0.01323634,0.011005357,0.006717879,-0.007876994,0.02456575,0.05962585,0.010107977,0.01302446,0.013560394,-0.029164819,-0.0065496205,0.022272449,-0.03838788,-0.0177357,0.021350143,0.0017293241,-0.018994523,0.0036892248,-0.019891901,-0.0063034645,0.031084212,0.052297257,-0.011728245,-0.032804187,0.0066493293,-0.009677984,0.043198828,-0.0076962714,-0.03534676,-0.013223877,0.022509256,0.01804729,-0.046638783,0.022023177,0.02421677,0.0073784497,0.023880253,0.0036331387,-0.010157832,-0.03287897,-0.005452824,-0.034200113,0.006104047,0.041902617,0.014158647,-0.03170739,0.010344786,0.014856609,0.0041254507,-0.020677108,-0.0081698885,-0.004636458,0.015417471,0.037241228,0.041104946,-0.029613508,-0.019393358,-0.08664693,0.016327312,0.016227605,-0.052297257,0.013921838,-0.044918805,-0.023855325,-0.00056631473,0.037291083,0.019904366,0.03135841,0.00095268624,0.015006172,0.04282492,-0.013560394,0.035870235,0.020153638,-0.019680021,0.00063019065,0.06770226,0.030062197,0.008126265,-0.061021775,0.011179847,0.03332766,0.030436106,0.025512984,-0.050726842,0.056435168,-0.026547464,0.060323812,0.041478854,-0.014245892,0.0018944668,-0.017561208,-0.004810949,-0.028142802,-0.037016883,0.025251249,0.029463945,0.02781875,0.011235933,0.033726495,-0.014220965,-0.024241697,0.018620614,-0.03883657,0.044918805,-0.0056771687,-0.018446125,0.055438083,-0.013336049,0.010618985,-0.03385113,-0.011478974,0.02577472,0.009715375,-0.06665532,-0.024540823,0.00014333137,-0.026821662,-0.052995216,-0.010681303,0.0067988923,0.02986278,0.029339308,-0.0020175448,0.010862025,0.00322184,-0.0054902146,-0.0014208502,0.039958294,0.0122579485,0.0011334084,-0.0007404156,-0.00831322,0.0061227423,0.007341059,0.0051443498,-0.027220497,-0.0074220723,0.013635175,-0.0027046006,-0.009266685,0.0040070466,-0.006935992,0.028765984,0.0063938256,0.040008146,0.012775187,-0.050876405,0.011273324,-0.019617703,0.009603202,0.0031688698,-0.039684094,-0.022284912,-0.017984971,0.0033682873,0.02604892,0.018471051,0.060024686,0.007409609,0.007739894,0.028765984,-0.01604065,-0.020215955,-0.00935393,0.00024537707,0.0141711105,0.0105753625,-0.02182376,-0.013074314,-0.018969595,0.006372014,0.014320673,-0.013834593,-0.007852066,-0.022010714,0.085251,-0.02542574,-0.022496793,-0.004446388,0.019218868,0.041927543,0.03038625,-0.07468188,0.045118224,0.0034337211,0.010026964,0.043049265,-0.040905528,0.044495042,0.011360569,-0.030062197,0.029114963,-0.00009649551,-0.048159342,-0.031507976,0.04496866,0.0007404156,-0.061370753,-0.025226321,-0.051350024,0.023406636,-0.061470464,-0.041628417,0.051699,0.06496027,0.003901106,-0.0011427561,-0.029937562,0.0144827,0.041428998,0.057482112,-0.039509606,-0.004552329,-0.060573082,-0.027419915,0.00831322,0.029040182,0.007889457,0.012638088,0.049181357,0.013747348,0.013211413,-0.0081013385,0.0579308,-0.021711586,0.015143271,0.027320206,0.051998127,-0.001483947,-0.005163045,-0.013124168,-0.030735232,0.06974629,0.0496799,-0.013435758,-0.023880253,0.0092355255,0.014520091,0.011422887,-0.0043871864,-0.013847057,0.03534676,-0.02996249,0.0069484557,-0.010101746,-0.0030816244,-0.048109487,-0.06196901,-0.013485612,0.03332766,-0.014009084,0.08111309,0.04265043,-0.00026212505,-0.003156406,-0.017486427,-0.028217584,-0.004271898,-0.019929292,-0.00762149,-0.01905684,-0.016439484,-0.010002037,-0.004153494,0.0044401567,-0.032854043,-0.026023991,-0.0046239947,0.022135349,0.040855672,0.018732786,-0.0019926177,-0.026647171,0.020153638,-0.02754455,-0.00011188026,-0.02737006,0.05110075,-0.006287885,0.0124075115,0.00076300587,-0.0062691895,0.014009084,-0.015891086,-0.0006500545,0.042999413,-0.017461501,-0.0016062461,0.025899356,-0.034274895,-0.014956317,0.008406697,0.024366334,-0.02657239,0.018932205,0.013697494,0.00031801648,-0.024453579,-0.024154453,0.028317293,-0.019243795,0.008126265,0.019979147,-0.03190681,-0.021699123,-0.008599882,0.024304016,0.019380894,-0.04382201,0.01143535,0.004530518,-0.011254628,-0.034424458,-0.014096329,0.056584734,-0.011254628,-0.0035552413,-0.011647232,0.020103782,-0.050876405,0.07428304,0.0021188115,-0.023855325,-0.0258495,0.0053998535,0.02092638,-0.02746977,0.011753173,-0.0034119098,0.044320554,-0.019804657,-0.0086746635,-0.010899416,-0.011310714,0.0020860946,-0.034424458,0.024316479,0.019355968,-0.006468607,0.010918112,0.013946766,-0.025699938,0.023344317,-0.023082582,-0.02088899,-0.016476875,0.0030457918,-0.0056802845,0.036393706,-0.03965917,-0.016165286,0.028666275,0.058429345,0.0124075115,-0.02390518,-0.026946299,0.010936807,0.020103782,0.014258356,-0.011198542,-0.0041597257,0.008705823,-0.011877809,0.023481417,-0.008394233,0.031532902,0.029015254,-0.032654624,0.03367664,-0.017648455,0.008232206,0.0050664525,0.05474012,-0.022708675,-0.032330573,0.0714912,-0.011478974,0.010488117,-0.02297041,-0.0018399386,-0.008057715,-0.009434943,0.0018975827,-0.0025908703,-0.033552006,-0.020452764,0.00014313663,0.030136978,-0.0034524165,0.023232145,-0.008562491,0.03918555,-0.005979411,-0.020477692,-0.01638963,-0.0002442086,0.0051505817,-0.0068799057,-0.008568724,0.02941409,-0.0017495775,-0.0041067554,-0.05962585,-0.013585322,0.06201886,-0.041703198,-0.0033994461,-0.016339777,-0.01625253,0.018832495,0.020689571,0.014370528,0.014694582,-0.060922064,-0.031782173,-0.008855386,0.017523818,0.003402562,0.036942102,0.0002432349,-0.025350958,0.009497262,-0.008992486,0.0030411177,0.007839602,0.0035739366,-0.017386718,0.028466856,-0.008045252,-0.039933365,-0.00167168,0.03238043,-0.009366393,0.020029001,-0.0140215475,0.017723236,-0.0003483965,0.02737006,-0.010475654,0.023568664,-0.0203032,0.030560741,-0.0012455807,0.009696679,0.0024117061,-0.0018555181,-0.039085843,-0.028541638,0.008350611,-0.028292367,-0.008095107,-0.014557482,-0.02719557,-0.013111705,-0.00069250865,0.027893532,0.0028666274,-0.0048234123,0.014769363,0.009715375,0.025176467,-0.0029351772,0.017162373,-0.037291083,-0.008942631,0.0203032,0.0064873025,0.028018167,-0.008363074,0.0042189276,0.03325288,-0.00855626,0.021350143,-0.018458588,0.020988699,-0.01870786,0.016888175,-0.007334827,0.03529691,0.011722013,0.0059575997,0.0028962286,0.0329039,0.0033527077,-0.0062193354,0.017760627,-0.016289921,0.02234723,-0.014258356,0.033477224,-0.049630046,0.0006691394,0.027320206,-0.0062131034,-0.02168666,-0.03385113,0.015517179,0.029439017,0.008219742,-0.04130436,-0.0059887585,0.015704133,0.022197668,0.028117876,-0.024652995,-0.010849562,0.009721606,-0.005147466,0.05110075,-0.022023177,-0.021636805,-0.0046956604,-0.0034212575,-0.031757247,-0.018620614,-0.015753988,0.020864062,-0.046339657,0.000993972,-0.008712054,-0.012176935,0.019480603,-0.021499706,-0.014644727,-0.05678415,-0.021487242,-0.011902736,-0.022858238,0.01645195,0.013385904,-0.035695743,-0.026547464,-0.019031914,0.0027419915,-0.015205589,-0.024129525,-0.036393706,0.005536953,0.0008218185,0.016028186,-0.01662644,-0.00032989585,-0.024503432,0.009110889,-0.09975863,0.026871515,0.011821723,-0.03901106,0.030510888,-0.027968314,-0.011354337,-0.017324401,0.016439484,-0.02400489,-0.025874428,-0.010519276,0.0385873,-0.049106576,0.011946358,0.00056553574,-0.0026890212,0.011840418,-0.020066392,0.016264996,-0.019169012,-0.0073597543,-0.024166916,0.024877341,-0.026971225,0.018309025,-0.03357693,0.006792661,0.07488129,0.00021811295,0.008356842,0.020901453,0.014831681,-0.0035677047,0.014220965,-0.009559579,0.0039571924,-0.024727777,-0.03295375,-0.06446172,0.028068021,-0.015965868,-0.030112052,0.00017556145,-0.005717675,-0.0050882637,-0.040830746,0.034274895,0.0072600455,-0.008998717,-0.014470236,0.010382176,-0.011429119,-0.012413743,-0.00415661,0.022858238,-0.027394988,0.011871576,-0.012787651,-0.02986278,0.02727035,-0.006125858,0.0258495,-0.014345601,0.02359359,-0.05314478,-0.0022138464,-0.020066392,-0.010002037,0.021337679,0.012687942,0.013198949,-0.017174838,-0.001765157,0.010544203,0.00316108,-0.0089364,0.0013117937,-0.0024319594,0.005515142,-0.045317642,0.015492252,0.00037332368,-0.017075129,-0.005141234,0.005293913,-0.012388816,-0.021474779,0.02359359,-0.004502475,0.014071401,0.008132498,-0.022235058,0.001917836,0.012444902,-0.009472334,-0.030361323,0.0063751303,0.0051568137,-0.013734885,0.03654327,0.014557482,-0.021873614,-0.045890965,-0.00601057,-0.007783517,-0.0076588807,0.025824575,0.040107857,0.005047757,0.011672159,-0.009266685,0.04132929,0.0010422684,-0.032554917,-0.02505183,0.01853337,0.020627255,-0.025512984,-0.044993587,-0.024540823,0.0044993586,0.04641444,-0.020726962,-0.049106576,0.052147694,0.00841916,-0.0086622005,0.019742338,-0.0070107738,-0.022708675,0.02144985,-0.02799324,0.012987069,-0.021250434,-0.02532603,0.00057722034,0.007615258,-0.046813272,-0.018720323,-0.0018804453,0.0146198,-0.0021811295,0.023680836,0.0006547284,0.00066018116,-0.0055587646,0.0013242572,0.03350215,-0.033651713,-0.024229234,-0.009260453,-0.0062473784,-0.008431624,-0.020066392,0.01288736,0.006097815,-0.015118344,-0.007683808,0.045965746,-0.013585322,0.03980873,0.03145812,-0.014295747,-0.039434824,-0.024777632,-0.035969943,-0.002632935,0.015567034,0.0584792,-0.016800929,0.0087307505,0.00883669,-0.02456575,-0.038886424,0.010768549,0.049106576,-0.005755066,-0.034623872,-0.0013234783,-0.016913101,0.034249965,-0.0016078041,0.019480603,0.017561208,0.01572906,0.012700406,0.012176935,0.0044121137,-0.011030284,0.0180099,0.010407104,0.028915547,0.02674688,-0.008842923,-0.03402562,0.00090361084,0.018583223,-0.04237623,-0.003807629,0.022384621,0.005705212,0.016053114,-0.0019754802,-0.0036269068,0.00050633366,-0.020739427,0.017798018,-0.02144985,0.06157017,-0.011703318,0.025089221,-0.00019552269,0.018869886,-0.029015254,-0.011030284,-0.03367664,-0.019879438,0.013261268,0.028765984,-0.0007178253,-0.013971693,-0.008849154,0.056584734,0.029364236,0.02429155,-0.027120788,0.027444841,-0.039060913,-0.0018820033,0.011055211,-0.018221779,-0.019904366,-0.03626907,0.012974605,-0.028865691,0.0016467528,0.00545594,-0.00779598,0.020328127,0.021088406,0.03038625,-0.0140215475,-0.013049386,0.007054396,-0.006035497,0.002015987,-0.022471866,0.013198949,-0.0044121137,-0.012937214,0.0031782174,0.008961326,-0.018383807,0.030859867,0.0036362547,-0.022546647,-0.01382213,0.033826202,0.00538739,0.017299473,-0.008886545,0.0203032,0.0053998535,-0.01569167,-0.013572858,0.004493127,-0.0057363706,0.004299941,0.008637273,-0.020714499,0.028491784,0.029289454,-0.016726147,0.0005604724,-0.024154453,-0.000666413,0.0077897483,-0.03048596,0.03277926,-0.01524298,-0.02799324,-0.004648922,0.016090505,-0.009995805,-0.003932265,0.00420958,-0.0152928345,0.02404228,-0.023020264,0.011908967,0.008705823,0.009322771,-0.028741056,0.02123797,-0.0031719855,-0.030810013,-0.010319859,0.039933365,0.029663362,0.010107977,-0.019754803,-0.020515082,-0.0024677922,0.041902617,0.048159342,-0.012357657,0.020938843,-0.017760627,-0.010369713,-0.019493066,0.009085963,0.009871169,0.008587419,0.0072912048,0.033726495,-0.03252999,-0.03963424,0.0021826876,0.025363421,-0.015080953,-0.0093726255,0.011622305,0.009142049,-0.02518893,-0.022770993,0.04773558,0.010338554,0.035496324,0.010407104,0.0048234123,0.003813861,0.030161906,-0.0029133658,-0.017997434,0.021325216,-0.017798018,0.016090505,0.008475246,0.0028744172,-0.018595688,-0.018284097,-0.020901453,0.033626787,-0.004268782,-0.025899356,0.022783456,-0.0012930982,0.008325683,-0.046115313,0.051499587,0.0065558525,-0.0011630094,0.065159686,0.001794758,0.026298191,0.023306927,0.019106695,-0.009896097,0.014607336,0.0045959516,0.034648802,0.03811368,-0.0013398367,-0.01621514,0.01933104,-0.026323117,-0.003595748,0.03589516,-0.008051484,0.005172393,0.029738143,0.03250506,0.0045616766,-0.02518893,-0.020826671,-0.005206668,-0.0069484557,0.06007454,-0.0040693646,0.008007862,0.019966682,-0.0021297173,-0.026796734,-0.054440994,-0.0022185203,-0.0007314574,-0.018695395,0.018122071,-0.016601512,0.018221779,-0.04673849,0.012837506,0.021424925,-0.02022842,-0.00022239731,0.001178589,-0.02466546,-0.011080138,-0.024017353,0.013248804,0.0013616481,-0.010731158,-0.027095862,0.01292475,-0.020153638,0.009453638,0.031582758,0.0020144288,-0.0057363706,-0.006562084,0.0046239947,-0.0048981938,0.028741056,0.03973395,0.020328127,0.028741056,-0.025363421,0.025388349,0.054889683,0.0019458792,-0.0035396616,-0.005540069,-0.018520907,-0.046264876,0.019879438,-0.01724962,-0.010195223,0.027120788,0.077124745,0.033801276,-0.02404228,-0.010319859,0.007739894,-0.045442276,0.034997784,0.017274546,-0.012557074,0.008680896,-0.036368776,0.01053174,0.028915547,-0.0012736239,-0.030062197,-0.02207303,0.0100145005,0.009329002,-0.022883166,-0.014320673,-0.024092134,-0.03210623,-0.01271287,0.043597665,0.024241697,-0.033876058,0.0029507568,0.0025129728,-0.005293913,-0.012133312,0.008967559,-0.022721138,-0.034898072,0.027694114,-0.005945136,0.031757247,-0.0017916422,-0.0013982599,-0.03021176,0.005100727,-0.006780197,0.03243028,0.045168076,0.032754336,0.014146184,-0.016364703,0.004053785,-0.008151193,0.0017137447,0.005013482,0.023419099,-0.036767613,0.023157364,-0.008768141,0.0066430974,0.002472466,0.008693359,0.0054403604,-0.011211006,-0.009671751,0.04105509,0.0012004003,-0.006724111,0.024590679,-0.009964646,0.0046551535,0.009092194,0.01240128,-0.008724518,-0.01829656,-0.020427836,-0.0053998535,-0.026996152,0.021113334,-0.015479788,-0.0027030427,-0.016925566,0.022147812,-0.029563654,0.0033277806,0.041703198,0.0151557345,-0.015143271,-0.027220497,-0.005050873,-0.01617775,0.005599271,-0.010544203,0.007845835,-0.0077648214,-0.010967966,-0.019879438,-0.004496243,-0.02594921,0.0008841365,0.0020985582,-0.032729406,0.003467996,-0.006138322,-0.040905528,-0.033925913,-0.004031974,0.006792661,0.018284097,0.013223877,0.0070419325,-0.0022792805,-0.013523003,-0.026672099,0.04673849,0.0016545425,0.033078387,-0.01662644,-0.04843354,-0.023618517,0.005733255,-0.00053437677,0.013734885,0.0022387737,0.02799324,0.014358064,-0.018682932,-0.00022512373,-0.034997784,-0.009553348,0.024191843,-0.019779729,-0.009403785,0.006378246,-0.014669654,-0.008300756,0.00043466798,0.018757714,-0.016701221,-0.018907277,0.0013678798,0.020589864,-0.005555649,0.0034399529,-0.029738143,0.0073597543,-0.028815838,0.022322303,0.01226418,-0.047062546,0.0081823515,-0.0144453095,-0.018346416,-0.03741572,0.015504715,-0.022521721,0.0055899234,0.01250722,-0.022147812,0.018209316,0.005920209,-0.0155794965,0.0048514553,0.018658005,0.0072600455,-0.014407919,-0.0019334155,-0.010444495,-0.04496866,-0.008518869,-0.040556546,0.012756492,-0.0138844475,-0.036368776,-0.003901106,0.021113334,0.029214673,0.0177357,0.008263365,-0.02879091,0.0141711105,-0.030062197,0.0048576873,0.0076090265,0.02386779,-0.0034243735,0.038687006,-0.003997699,0.0078084436,-0.0013024459,0.052197546,0.007409609,-0.029264526,0.0050103664,-0.007129178,0.030909723,-0.020776818,0.0261237,-0.027170643,0.0043186364,0.0005760519,-0.0013538583,0.0022730485,-0.02948887,0.016751075,-0.0017324401,-0.000929317,0.017174838,-0.0032467672,0.013398367,-0.010905648,0.009391321,-0.029015254,-0.03813861,0.037016883,-0.0032997373,0.005948252,-0.006412521,-0.013174023,-0.044993587,0.011142456,0.016601512,-0.018957132,-0.052795798,0.004726819,0.024815023,0.023680836,-0.019717412,0.0077087353,-0.044046354,-0.015143271,0.014968781,-0.017997434,-0.037964117,-0.012912287,0.023581127,0.018633079,0.0146198,-0.020714499,0.020951308,-0.014607336,0.0051879724,0.027943386,0.019929292,0.04357274,0.02456575,-0.027519623,0.031931736,-0.000035686786,-0.03661805,0.035247054,-0.009715375,-0.0152928345,0.004867035,0.01781048,-0.006378246,0.037166446,-0.01569167,-0.016763538,-0.023431564,0.03238043,-0.013647639,-0.021138262,-0.021574488,0.016264996,-0.017835408,-0.057432257,0.00632216,-0.012046067,-0.053344198,-0.0006469386,0.017835408,0.014856609,-0.0089364,0.026098773,-0.014220965,0.012170703,-0.001394365,-0.0124760615,-0.05483983,0.031333484,0.020141173,0.021200579,-0.020377982,0.055438083,0.0049355845,-0.012183167,-0.015467324,-0.0013694378,0.030984504,0.015380079,0.02307012,0.011659696,-0.013473149,0.031034358,0.06221828,-0.025799647,0.01808468,0.017062666,-0.008381769,0.02127536,0.03534676,-0.023842862,-0.011591146,-0.011267092,-0.0040101623,0.037266158,0.0047018924,-0.008998717,0.0032062605,0.004916889,0.01091188,-0.03661805,-0.009310307,0.01808468]},{"id":"enum-OverwriteType","type":"enum","source":"main","text":"Enum: OverwriteType\nMembers: Role=0, Member=1","meta":{"url":"/docs/typedefs/OverwriteType"},"embedding":[-0.0031626525,0.039451446,-0.016329156,0.004556527,-0.029325832,-0.0092924945,0.026941827,0.012342996,-0.004287365,-0.0052166143,0.05526791,-0.009548839,0.01895669,0.03294029,0.0142271295,-0.004059859,0.022084095,0.02280186,0.012785191,0.074032344,0.00014880007,0.0077864695,0.017072557,0.03555501,-0.04624458,0.033401713,-0.008959247,0.029684715,-0.012125104,-0.038297895,0.050858784,-0.027454516,0.026711116,0.0047519896,-0.0022718548,-0.04883366,0.055524256,-0.0032603838,0.026147157,-0.012266093,0.02576264,-0.036247138,0.014701367,0.001340202,-0.009484753,0.06670088,-0.011625231,0.026993094,-0.039143834,-0.022840312,0.029069487,-0.018661892,0.0017992193,0.03786211,-0.0018713162,0.002316715,0.01134966,-0.015829284,-0.04324535,0.003989364,0.005315948,-0.070648596,0.028941315,0.041732915,0.024288658,-0.019495012,-0.05490903,0.025877995,0.021417597,0.023006935,-0.0116444575,-0.00857473,-0.05111513,0.028531164,0.016495781,0.0061650896,-0.01001026,0.013419644,0.007683932,-0.032914657,-0.008196621,0.018636258,0.0050307643,0.02914639,0.038400434,-0.015085884,-0.03150476,-0.064650126,-0.0038515788,-0.030658824,-0.038528606,-0.018341461,-0.05747248,-0.0075749853,-0.0058094114,-0.029402735,-0.017175093,-0.028044108,-0.018546538,0.073365845,0.030633189,0.0101384325,-0.003470266,0.005671626,-0.002004295,0.028531164,-0.038861852,0.0107536595,-0.028915681,-0.045347374,-0.07777498,-0.012740331,-0.0045693438,0.021789297,-0.017918494,-0.030684458,-0.028582431,0.024660358,0.010003851,-0.050038483,-0.02655731,-0.026788019,-0.0048769577,-0.040681902,-0.04114332,-0.0025778662,0.0120289745,-0.0011960082,-0.015021798,-0.050397363,0.026685482,-0.0071199737,-0.0046366346,-0.024455283,-0.027121266,0.033119734,-0.005972831,0.021532953,-0.024224572,-0.0218662,-0.027659591,0.030786997,-0.0013201751,0.032478873,-0.0152268745,0.047757015,-0.021981556,-0.0018777248,-0.04498849,0.027839033,0.0008643622,-0.0048256884,0.0033324808,0.027762128,-0.030325577,-0.055114105,0.013509365,0.0360677,-0.0020010907,-0.020751102,0.017418621,-0.059933387,0.0027188559,-0.015034616,-0.017995397,-0.038682412,0.017905677,0.016649587,-0.045629352,0.018879786,0.00792105,0.011984114,-0.030761361,-0.028556798,-0.0361446,-0.0065688323,-0.01849527,-0.0165855,0.0056235613,-0.0057453252,0.03534993,0.04675727,-0.015829284,-0.021058716,0.004268139,-0.018341461,0.0052839047,-0.007241737,-0.00801718,0.0011711748,0.045578085,0.042553216,0.031940546,0.003813127,0.007632663,-0.0113368435,0.0301205,0.021904653,-0.021661125,-0.04532174,0.028890045,-0.02404513,0.057113595,-0.015572939,-0.0027605118,0.03711871,-0.021725211,-0.024365561,-0.08008208,-0.040528093,0.034145113,-0.039272007,-0.013983603,0.0076903403,0.0072353287,-0.014432206,-0.023109473,-0.0218662,0.007882599,0.04221997,-0.019456562,0.008183804,0.009805184,-0.010003851,0.004675086,0.03937454,-0.041681644,-0.00007059492,0.0053351736,-0.025339672,-0.028531164,0.0048577315,0.01042682,-0.035939526,-0.01876443,0.020802371,-0.014175861,0.0010125615,-0.01227891,-0.018328644,-0.07372473,0.012637793,-0.012163555,0.022981301,-0.010990778,0.042783927,0.049192544,-0.0014507506,-0.048859295,-0.0043899026,0.007241737,0.05185853,0.002108435,-0.013599086,-0.029505273,-0.029274562,0.052704465,0.080184616,-0.017111007,0.00035227367,-0.008728537,-0.017341718,0.00013678391,0.0117982635,-0.043450423,0.0010958735,0.07039225,-0.03865678,0.02011024,-0.029684715,-0.02988979,0.05455015,0.006347735,0.004652656,-0.00820303,-0.030607555,0.020007702,0.007542942,-0.021238158,0.009958991,0.009497571,-0.017213546,-0.012426308,-0.015342229,-0.042963367,0.009734689,-0.055216644,0.047757015,0.010035894,-0.014239947,-0.0018136386,0.0025602425,0.05157655,-0.0237247,-0.046629097,0.011279166,-0.0040758806,-0.06752119,0.06844403,-0.0038195357,0.039118197,0.05249939,-0.0015292562,0.03873368,0.0436555,-0.0034959007,0.012125104,-0.018546538,-0.048474777,-0.055729333,-0.007126382,0.0071712425,-0.012804417,0.04342479,-0.026018985,-0.039605252,0.0010205723,0.034145113,0.047987726,0.048961833,0.001879327,-0.028941315,-0.008145352,-0.0018777248,0.053986188,0.043527327,-0.013932333,0.048910566,0.067828804,0.024237389,-0.0044603976,-0.012253276,0.006482316,0.034965415,0.018405547,0.029864155,-0.019930799,0.09018206,-0.0075044907,-0.010048712,-0.0011271156,-0.048500415,0.0016710468,-0.01987953,-0.059523236,-0.02363498,-0.016918749,0.019392475,-0.015598574,0.03734942,0.027095633,-0.025083328,-0.050012846,0.021853384,-0.012246867,0.007965911,0.040194847,-0.04280956,-0.009388624,0.052704465,-0.009382215,0.014739819,-0.036503483,-0.009042558,0.022391709,0.026236879,-0.03460653,-0.005117281,0.03791338,0.028710604,-0.019430926,0.034683436,-0.033529885,0.017303266,0.037759572,-0.0046494515,-0.0029976305,-0.015355047,0.0010061528,-0.0038964392,0.013214569,0.017316082,0.023224829,-0.031812374,-0.01603436,0.051499646,-0.005879906,0.067828804,-0.07890289,-0.055216644,0.035273027,0.040476825,0.009625743,0.01260575,-0.025224317,0.032786485,0.0031754698,0.0625481,0.032889023,-0.058754202,0.010862606,-0.032273795,-0.018008213,0.013381192,-0.028479895,-0.011561145,0.016341973,-0.009055376,0.03937454,0.007799287,0.030940803,0.008997698,0.034632165,-0.00032964323,0.061932877,0.0017111007,0.020225596,-0.011509876,-0.01784159,-0.027557053,-0.04624458,0.005431303,-0.02618561,-0.01714946,0.06670088,-0.026249696,-0.041912355,-0.037375055,0.073519655,-0.039220735,-0.013957968,0.04475778,0.0036945678,0.007780061,0.014342485,-0.010234562,0.022366073,0.006238789,0.028351722,0.015188422,-0.032837752,-0.0077928784,0.005710078,-0.0149192605,-0.012016157,-0.034350187,-0.004463602,-0.06511155,0.020930544,0.031658567,-0.03429892,0.009125871,-0.030248672,0.034760337,-0.0028726626,-0.037887745,0.026864922,0.036682922,0.006658553,0.015534488,-0.027275074,-0.006876446,0.055524256,0.021174071,-0.023045387,0.027813397,0.0017335309,-0.020238413,-0.00741477,-0.03586262,0.015534488,0.06029227,0.07946685,-0.003210717,-0.0021308651,-0.040015403,0.017892858,-0.040246114,-0.006690596,-0.0053864424,0.019930799,-0.04657783,-0.0030505017,-0.003438223,0.0188157,0.085926734,0.040681902,-0.00945271,-0.014124592,-0.006914898,0.008728537,0.0018376709,0.017674966,-0.014867991,0.02622406,-0.013957968,0.047475036,-0.03937454,-0.007248146,-0.057933897,0.0017896063,-0.0564471,0.0077864695,0.021174071,0.009395032,0.023404269,0.03517049,-0.012471168,-0.03263268,0.033940036,-0.04916691,-0.016290704,-0.0029463617,-0.016021542,-0.024865434,-0.031966183,-0.025852362,0.033760596,-0.011432973,-0.023276096,-0.00011946063,0.001630993,0.010067937,-0.00623238,-0.009337355,-0.026159974,-0.0062900577,-0.038502973,-0.013137665,-0.018123569,0.046398386,-0.0005058802,0.012150737,-0.013599086,-0.024762897,0.0014964121,0.032325063,0.044962857,0.037759572,0.0076070284,-0.00521341,0.031530395,0.011516285,0.0076903403,-0.0051300977,-0.0031930935,-0.029223293,-0.0031290073,0.030838266,0.014983347,-0.0066521442,-0.03499105,0.007164834,0.0079402765,-0.055114105,0.0062868535,-0.0122596845,-0.0020123057,-0.004934635,0.016547048,0.023224829,-0.02354526,0.020379402,-0.025403759,-0.026300965,-0.013150482,-0.01686748,0.025096145,0.019917982,-0.00546655,-0.02696746,0.037939012,-0.02613434,0.109510444,-0.029043853,-0.006065756,0.05237122,0.045142297,0.023814421,-0.04119459,-0.0032331473,-0.007530125,0.03804155,0.0056972606,-0.021250974,-0.015496036,0.028044108,0.027557053,-0.043065906,0.0074724476,0.015521671,0.023417087,0.016521415,-0.028992584,0.01454756,0.0040758806,0.006328509,-0.014803905,-0.044885952,-0.0075557595,-0.019764176,0.0497565,-0.00013037531,0.001131922,-0.011945662,0.03534993,0.032273795,-0.013188934,-0.008305567,0.006415026,0.038015917,0.02182775,-0.02154577,0.018444,0.027223805,-0.0035279437,0.01348373,-0.01042682,0.0033324808,0.02005897,0.010740842,0.0046911077,0.022789042,-0.008773397,-0.02919766,0.020392219,-0.0036849547,0.021250974,0.02187902,0.021161253,-0.03040248,-0.04221997,0.017316082,0.008235073,-0.00322033,-0.0042617302,-0.00086035684,-0.020661382,-0.007869782,-0.02057166,-0.018969506,-0.024237389,0.017623696,0.011138177,0.012221233,-0.009228408,0.016623953,0.021994373,-0.027198171,-0.015688295,0.004162397,-0.043065906,0.015483219,0.008081266,0.01867471,-0.066649616,-0.011887984,0.025378123,-0.014586013,0.030223038,0.001610165,-0.019123314,0.0061618853,-0.034324553,0.021532953,-0.0065592197,-0.025929265,-0.009048968,-0.046039503,0.013201751,-0.020610113,-0.008055632,0.017674966,0.0022910805,0.016200984,0.010836971,0.032914657,0.004476419,-0.014393754,0.0028854797,0.028351722,-0.056703445,-0.0061234334,-0.02358371,0.017175093,-0.00641823,-0.031863645,-0.040348653,-0.0025938877,-0.04486032,0.014124592,0.0005150926,0.028966948,-0.030556286,0.015393498,-0.0063092834,0.02942837,-0.01941811,-0.01663677,-0.005059603,-0.035324298,0.020443488,-0.03952835,-0.0017559611,-0.049192544,-0.04870549,0.006177907,0.027223805,0.018995142,-0.008222256,0.0047103334,-0.007280189,-0.0008142949,0.015931822,-0.01830301,0.028018473,-0.0017463481,-0.0053543993,0.05180726,0.013791344,0.028274817,0.018751614,0.022314804,0.00012727112,0.004973087,0.030428113,0.0032587817,0.034657802,-0.020456305,0.026249696,-0.02840299,-0.0056331744,-0.015521671,0.00130896,0.020840822,0.028197914,-0.0143809365,0.020443488,0.0096001085,0.0031978998,0.031222783,-0.015649842,0.03183801,-0.00843374,0.003313255,0.04106642,-0.023135107,0.002013908,-0.017072557,-0.00048425113,-0.009004107,0.009420667,-0.012112286,-0.022109728,0.029684715,-0.030428113,0.01626507,-0.012349405,-0.038015917,0.045578085,-0.0032235344,0.04657783,-0.009568065,0.0018232516,-0.014445023,0.0286337,-0.008395288,-0.004902592,-0.004197644,-0.0051012593,-0.022724956,0.016739307,-0.039220735,-0.012631384,-0.00084914174,0.00020097023,-0.0041784183,-0.056139484,-0.013650354,-0.020276865,0.00963856,0.018251741,-0.0006196332,-0.030530652,-0.033427346,0.011746995,0.012503211,-0.009843635,-0.02099463,-0.022301987,-0.023481173,0.023596527,0.0028069743,0.006421434,0.0086324075,-0.003925278,-0.0011815887,-0.10561401,0.009145097,0.01283646,-0.057011057,0.037657034,0.015367864,0.035657544,-0.025326854,0.04593697,-0.020917727,0.002927136,-0.031940546,0.015111519,-0.041809816,0.035478104,-0.0028998991,0.006825177,-0.00982441,-0.019853896,0.016393242,-0.014727002,-0.023673432,-0.013752892,-0.03350425,-0.037426323,-0.004236096,-0.009651377,-0.014406571,0.05362731,-0.015547305,0.001080653,0.048474777,-0.034042574,0.0017976171,0.015726747,0.023250462,0.0051461193,-0.026916191,0.0036272772,0.0050083343,-0.0081069,-0.022481428,-0.008209438,0.004345042,0.014496292,0.008100492,0.0019578326,-0.018136386,-0.0014355303,0.0022654461,0.007812104,0.0035663955,0.008215847,0.0023343388,-0.00076582975,0.0140733225,0.0056524,0.0073506837,-0.011420156,-0.025083328,0.045014124,0.011945662,0.023288915,-0.006799543,-0.007363501,-0.04239941,0.005091646,0.014752637,-0.018828517,-0.008440149,0.054498877,-0.012061018,-0.0120289745,0.016047178,0.00031482332,-0.0072032856,-0.0032139213,-0.0142271295,-0.028326087,0.05088442,0.023276096,-0.018328644,0.03304283,-0.0031962977,-0.0044828276,0.012996675,-0.03981033,0.010170476,-0.01830301,-0.031248417,0.016303523,-0.016367609,-0.020866457,-0.03294029,-0.006354144,0.0061682938,-0.02771086,-0.019764176,0.0047744196,0.0076070284,-0.013547816,0.021558588,-0.022071278,-0.039272007,-0.028249184,-0.00833761,0.0020475532,0.0437324,-0.00007229721,0.008561912,0.0069213063,-0.023429904,-0.04091261,0.014573195,-0.039938502,-0.003218728,0.040886976,0.022314804,-0.0033773412,0.0070238444,-0.030915169,0.024814164,0.0017175094,-0.013740075,-0.025198681,0.05362731,0.010792111,-0.013675989,-0.011253531,0.011458607,0.0074083614,0.023058204,0.027454516,-0.0094463015,-0.0064983377,-0.036118966,-0.0011863952,0.0024256615,-0.05255066,-0.03596516,0.011298392,0.020610113,0.020674199,0.01853372,0.024480917,0.030043596,0.0102153355,0.009542431,0.01798258,-0.023442721,0.015983092,0.0052774963,-0.01839273,-0.016931565,-0.015406315,0.008786214,-0.0031722654,0.034760337,0.005565884,0.017341718,-0.007126382,0.020174326,-0.026582943,-0.00588311,-0.011855941,0.015560122,0.012855685,0.0018136386,0.0139964195,0.02237889,-0.005357604,0.024275841,-0.0035183306,0.0039509125,-0.009439893,0.020046154,0.011727769,-0.010804928,-0.021494502,0.007959503,0.011708544,-0.020802371,-0.008068449,0.01714946,0.04750067,0.02914639,0.021276608,0.010561401,0.005360808,0.004168805,0.03386313,0.057011057,0.031735472,-0.014996164,-0.0052742916,-0.012785191,0.01803385,-0.006575241,-0.024173303,-0.02914639,0.015444767,-0.037554495,0.016995652,0.0046558604,-0.009209183,0.0046879034,0.0028646518,0.035067953,-0.048910566,0.03127405,-0.00032643892,0.032222528,-0.0059536053,-0.021391964,-0.020815188,-0.0062548104,-0.046090774,-0.032683946,0.028915681,0.054498877,0.004114332,-0.0032379536,-0.036964905,0.023942593,-0.0075044907,0.007914642,0.0038483746,0.045629352,-0.012727513,0.018725978,-0.032325063,0.0007237732,0.0059375837,-0.020635746,-0.020123057,0.0058702934,0.032837752,-0.016188167,-0.039323274,0.012669836,-0.014239947,0.027992839,-0.00090842147,-0.0048000542,-0.0054761632,0.007331458,0.003396567,0.03437582,-0.006533585,-0.0008291148,-0.011907211,-0.029582176,0.02048194,-0.023929777,0.052396853,0.003294029,0.017457074,-0.0022990913,0.046270214,0.0142271295,-0.0022077686,0.025852362,-0.0028438237,0.045475546,-0.043117177,-0.0063124876,0.01140093,0.008837483,0.016521415,-0.0018825312,-0.0051877755,0.030658824,0.009818002,0.02349399,-0.0071007474,-0.015214057,-0.013663172,0.030043596,-0.01714946,0.0074596303,0.008901569,-0.011625231,0.024916703,0.033196636,-0.013624719,0.0028422216,0.007030253,0.025429392,0.00044940427,0.012041791,-0.00240964,0.021981556,0.0020171122,-0.0068508117,0.018790064,-0.0007021441,-0.020430671,0.013406827,0.014855174,0.0022926826,-0.008555504,0.0141502265,-0.024480917,0.000029990326,-0.00521341,0.011811081,-0.021391964,-0.0034446316,0.012458351,-0.0047167423,0.004111128,-0.0015100304,0.018802883,0.009792367,0.02478853,0.021327877,-0.03345298,-0.019917982,-0.019469379,0.0021020265,-0.0064855204,0.007241737,0.00458857,0.013150482,-0.03573445,-0.0040053856,0.030453749,-0.028992584,-0.006357348,-0.0072289202,0.003354911,-0.0025105758,0.017444255,-0.014329668,0.017072557,0.000109046625,0.054293804,0.021699578,-0.008606773,-0.03263268,-0.034965415,-0.02131506,0.0072545544,0.031248417,0.014867991,-0.014675733,-0.019764176,-0.03655475,-0.0043354295,-0.029761618,0.070648596,0.009189957,0.001069438,0.013291472,-0.017405804,0.004787237,0.035785716,-0.023096656,-0.011343252,0.028787509,-0.019956434,0.0045116665,-0.009202774,0.00029960283,-0.0113048,0.015406315,-0.028556798,-0.007914642,0.03665729,0.009734689,-0.0017671761,0.026236879,-0.0012336588,-0.009939765,0.010420411,-0.02187902,0.03345298,-0.009568065,0.01987953,-0.0059343795,-0.0013570247,0.025493478,-0.0010309863,-0.023647796,-0.007908233,-0.0056588086,0.04773138,-0.0033420937,0.019559098,-0.0076775234,-0.016200984,-0.038067184,0.04273266,0.0011519489,-0.015496036,-0.0049570655,0.000107344335,-0.012753148,0.001920983,-0.00479685,-0.048346605,0.007780061,0.0045853653,-0.008856709,-0.010683165,-0.007478856,-0.0062996703,-0.008260707,-0.0027172535,0.010330691,0.01580365,0.037426323,-0.022686504,0.011291984,0.008311977,0.0152268745,0.0019482196,-0.0059888526,0.05403746,0.038195357,0.03773394,0.0064630904,-0.022981301,-0.042989004,-0.004697516,0.0006973376,0.013881064,0.013329923,0.0064855204,0.07516026,0.02553193,-0.010997186,-0.00004691308,0.029172026,-0.011458607,0.038246628,0.00022750591,-0.023570893,-0.004973087,-0.035093587,0.010977961,0.048808027,0.008119718,-0.017867224,-0.0038515788,-0.000680515,0.0064662946,-0.028326087,-0.018162021,0.020225596,-0.034350187,0.0086324075,0.0044924407,0.02516023,0.005972831,-0.0038259444,0.017726235,-0.00024593069,0.01635479,0.027403247,-0.009170731,-0.032171257,0.006940532,0.01594464,0.013240202,-0.0066329185,0.011554737,0.013355558,0.024147669,0.046603464,0.014432206,0.0031946956,0.023968227,0.015598574,0.033606786,-0.019456562,0.006120229,-0.0012272502,0.009741098,0.016790576,-0.03722125,0.022212267,0.005492185,-0.003085749,-0.008587547,0.009741098,0.00063204987,-0.008305567,-0.008472192,0.01181749,-0.0136888055,-0.0138426125,0.020674199,0.0037554496,-0.0018873378,-0.0029848134,0.010997186,0.02942837,0.00968342,-0.0027380816,0.012246867,0.007517308,-0.0021837363,-0.03758013,0.003790697,-0.029043853,0.013291472,-0.010305056,0.025237134,0.016008725,0.024211755,-0.039682157,-0.024532186,0.031632934,-0.022007192,0.0137657095,0.0009669001,-0.028197914,-0.0035567824,-0.0049570655,-0.01612408,0.000757819,-0.012599341,0.010817746,0.0023055,-0.033991303,0.033914402,0.010189701,-0.044527072,-0.027608322,-0.02085364,0.010458863,0.03127405,0.015265326,0.0058606802,0.011202263,-0.0017431438,-0.004902592,0.05778009,-0.009926948,0.047244325,0.008651633,-0.027915936,-0.0076711145,-0.0012945406,0.02965908,-0.014880809,-0.0034862875,0.0058382503,-0.0077608353,-0.019020775,0.011138177,-0.0007101549,-0.02673675,0.038169723,-0.013970785,-0.0030344801,0.02965908,0.0011447392,-0.037451956,0.0026627805,0.017662149,0.014201495,-0.011208671,0.011202263,0.046962347,0.01371444,0.023199193,-0.02822355,0.009273269,-0.033401713,0.0060176915,0.022250718,-0.03081263,0.015701111,-0.0020619726,-0.022455795,-0.040271748,0.012144329,0.011247123,-0.0035407608,0.043168444,-0.008600364,-0.011606005,0.006411821,0.015829284,0.0050083343,0.0008875934,-0.04657783,-0.014252764,-0.022442976,-0.018251741,-0.03814409,0.01714946,-0.04555245,-0.0020539619,0.008427331,-0.025801092,0.0042521176,0.020392219,-0.00006759088,0.0149192605,0.0020331338,0.0384517,-0.009459118,-0.027608322,-0.022930032,-0.010478089,0.0026051027,0.03150476,0.035836987,0.0031498352,0.011811081,-0.010990778,0.047475036,0.003106577,-0.044732146,0.0024272637,-0.0023583712,0.0024032313,-0.0076518888,0.0038996434,-0.014342485,0.026211243,-0.014727002,0.0015244498,0.016521415,-0.0032251365,-0.0093693985,0.0039733425,-0.046552192,-0.01885415,0.015342229,0.027762128,0.01306717,0.03460653,-0.015598574,-0.0021436824,0.017751869,-0.007895417,0.0065688323,0.011016413,-0.044962857,-0.039835963,-0.005732508,0.017944127,-0.057575017,-0.040271748,-0.027172536,-0.0048897746,0.009222,-0.011881576,0.022020008,-0.023737518,0.0014699765,0.001506025,-0.0429121,-0.018226108,-0.011042047,0.00067971396,0.01580365,0.0049698823,-0.031248417,-0.032914657,-0.0096770115,0.018097935,0.019969251,0.0012552879,-0.0024176508,-0.010945918,0.0059375837,0.00071616296,0.00558511,0.0081069,0.03873368,0.0048545273,0.010202519,0.024237389,0.036170233,0.051730357,-0.012618567,-0.026839288,0.015162788,-0.036503483,0.0068123597,-0.030223038,-0.027121266,-0.02108435,0.011541919,-0.016431695,-0.012657018,0.041963626,0.0071391994,0.015419133,0.010381959,0.013957968,0.010625487,0.0041591926,0.048449144,0.028351722,-0.026454771,0.022994118,-0.039682157,-0.036426578,0.03337608,-0.0034125885,0.029530907,-0.025070509,0.025224317,0.002750899,0.013650354,-0.031914912,0.020148693,-0.016508598,0.019110495,-0.012310953,0.023288915,-0.030453749,0.02562165,0.008786214,-0.03981033,0.02524995,0.008709311,-0.034914147,-0.003313255,0.031248417,-0.0058734976,-0.014855174,-0.0070879306,-0.0021356717,0.029018218,0.02909512,0.0141502265,-0.0139195165,-0.06367602,0.0060817776,-0.016008725,-0.014803905,0.012349405]},{"id":"enum-PermissionFlags","type":"enum","source":"main","text":"Enum: PermissionFlags\nMembers: CreateInstantInvite=CreateInstantInvite, KickMembers=KickMembers, BanMembers=BanMembers, Administrator=Administrator, ManageChannels=ManageChannels, ManageGuild=ManageGuild, AddReactions=AddReactions, ViewAuditLog=ViewAuditLog, PrioritySpeaker=PrioritySpeaker, Stream=Stream, ViewChannel=ViewChannel, SendMessages=SendMessages, SendTtsMessages=SendTtsMessages, ManageMessages=ManageMessages, EmbedLinks=EmbedLinks, AttachFiles=AttachFiles, ReadMessageHistory=ReadMessageHistory, MentionEveryone=MentionEveryone, UseExternalEmojis=UseExternalEmojis, Connect=Connect, Speak=Speak, MuteMembers=MuteMembers, DeafenMembers=DeafenMembers, MoveMembers=MoveMembers, UseVad=UseVad, ChangeNickname=ChangeNickname, ManageNicknames=ManageNicknames, ManageRoles=ManageRoles, ManageWebhooks=ManageWebhooks, ManageEmojisAndStickers=ManageEmojisAndStickers, ManageExpressions=ManageExpressions, UseExternalStickers=UseExternalStickers, ModerateMembers=ModerateMembers, CreateExpressions=CreateExpressions, PinMessages=PinMessages, BypassSlowmode=BypassSlowmode, UpdateRtcRegion=UpdateRtcRegion","meta":{"url":"/docs/typedefs/PermissionFlags"},"embedding":[-0.015766114,0.014796102,0.00038830374,0.029209664,-0.012815091,0.013914893,-0.05530436,0.002010043,0.022405917,0.02855388,0.040357973,-0.0050208378,0.014755116,0.026791465,0.021681823,-0.021654498,-0.037734844,0.028663179,0.01618964,0.05535901,0.023089023,0.06229938,0.020957729,0.059293706,-0.02299339,0.024550874,-0.012480369,0.026217654,0.013341084,-0.011353242,0.0595123,-0.030985743,0.0131908,-0.027665842,-0.030931095,-0.00430016,-0.029619528,-0.019646164,-0.0052155233,-0.01803403,-0.031914767,-0.051506285,-0.04483916,0.0109980265,-0.04535832,0.028909096,-0.030575879,0.0048978785,-0.013873908,0.009194623,-0.046396643,0.00076806865,0.010089493,0.07716379,0.0078079156,-0.0008457721,-0.0022901169,-0.0078010843,-0.026449911,0.014440887,-0.024263969,-0.06262727,-0.01784276,0.0024472317,0.015615831,0.0058132424,-0.052298687,0.01751487,0.045959454,0.033226334,-0.008675462,0.006762761,-0.025206655,-0.021736471,0.027447248,0.0043308996,0.0021108012,0.04147827,0.0046724533,-0.012760443,0.009850406,0.054047443,-0.056124087,-0.020780122,-0.0074185445,0.028198665,-0.06065992,-0.032488577,0.03267985,-0.047352992,-0.03981149,-0.011578667,-0.0940502,-0.014413562,0.03598609,-0.03388212,0.000095368174,-0.022911416,-0.026518222,0.062190082,0.08683659,-0.024824116,-0.058583274,0.0010408846,0.025152007,0.03893711,0.0018443895,-0.01032175,-0.003593144,-0.0031849875,-0.08410416,0.0036921944,0.0079991855,0.0068959673,0.017405571,-0.038445275,0.004610974,-0.036095385,0.018238962,-0.018963056,-0.041970108,-0.007869395,0.06470391,-0.054976467,0.012821922,0.0046417136,-0.02241958,0.0011988531,-0.026531884,0.02032927,0.02159985,0.0015976169,0.082792595,-0.041368973,-0.035521574,0.02676414,0.0015609,0.012924388,-0.058911167,-0.00917413,-0.015192305,-0.008313415,0.0068447343,0.032133363,-0.047271017,-0.037516247,-0.05109642,-0.007848902,-0.04530367,-0.001339744,-0.04339097,0.028471908,0.010212453,-0.012958543,-0.022733808,-0.039592892,0.011161972,0.027187666,-0.019837433,0.022651834,-0.018580517,-0.042789835,0.016681477,-0.021955065,-0.0101714665,-0.037816815,0.015424561,0.0025428666,-0.053036444,0.01236424,0.024564534,-0.025944412,-0.0046485444,-0.025070034,0.015383574,-0.029974744,0.0063392348,0.011141478,-0.04530367,-0.018621502,-0.0022491305,0.020493217,-0.019577853,-0.046970453,-0.012254943,0.010799925,-0.008299752,-0.011032182,0.021627175,-0.012637483,-0.008484191,0.04869188,0.018580517,0.06672591,0.01676345,-0.026326953,0.037516247,-0.030657852,0.015957383,-0.047271017,0.030193338,-0.04046727,0.060058787,-0.028062044,-0.016025696,-0.017911071,0.0088530695,-0.019331934,-0.017624166,0.007910381,0.052681226,-0.031559553,0.050058097,-0.0017214301,-0.06721775,0.033663522,-0.0712071,-0.049730204,-0.04669721,-0.012131984,-0.04620537,-0.018116003,0.045850154,-0.0057449318,-0.039101057,0.05320039,0.00047433257,-0.01605302,-0.021189986,0.050222043,-0.07426742,0.0049491115,-0.032051392,-0.03931965,-0.013224956,-0.019591514,-0.002621424,0.016804438,0.027310627,0.0014507489,0.0051198886,-0.0036751167,-0.022624511,0.015848087,0.009966535,-0.005905462,0.016025696,-0.01420863,-0.0030193338,-0.008771096,0.09951506,0.04095911,-0.004084981,0.01274678,0.009946041,0.0007586759,0.010150973,0.0460141,0.013969542,0.0451124,0.004610974,-0.0006813994,-0.0049047098,-0.010062169,-0.029838122,0.0013756071,0.026463574,0.0034701845,-0.02217366,-0.0038902955,0.015096669,-0.0034138283,0.042134054,0.019632502,-0.0031627864,-0.019523203,0.02358086,0.012562342,0.024646508,-0.004440197,-0.024222981,-0.025520885,0.01759684,-0.012917558,-0.028854448,0.015014697,0.013006361,0.00013608776,0.024141008,0.013580171,-0.024059037,-0.02019265,0.011742613,-0.017706139,0.02683245,0.020657161,0.025794128,-0.030357284,0.040248677,0.04426535,0.024304954,0.018512206,-0.028663179,-0.014085671,0.015301601,0.016094007,0.010629148,-0.0034667691,-0.022091687,-0.06792818,0.042134054,0.03210604,-0.022829443,-0.018443896,-0.05716241,0.007090653,0.011079999,0.016927397,0.06295516,0.045085076,0.008238273,-0.05688917,0.0010400307,-0.013580171,0.0547852,-0.03388212,0.041259676,0.012179801,0.024769468,0.011920221,0.01420863,-0.0287998,-0.029428259,0.061971486,0.021244634,-0.0041327984,-0.0075278413,0.063119106,0.0070428355,0.019345596,0.037488922,-0.018471219,-0.02057519,-0.019960392,0.008033341,0.0063768057,-0.058528624,0.011831417,0.0045085074,0.069622286,-0.0010801633,0.022624511,-0.08006016,-0.03401874,0.009092157,-0.052216716,0.042598564,-0.016845424,-0.03907373,0.048145395,0.014454548,-0.012671638,-0.007855733,-0.018334597,0.020821108,0.0254799,-0.04237997,-0.016722465,0.024947075,-0.009010184,0.011134648,-0.018307272,-0.0009990443,-0.00013502041,0.0045290007,-0.004675869,-0.010082662,0.0287998,-0.000581495,0.004395795,0.018116003,-0.010806756,0.020862093,-0.019892082,0.002612885,0.025411587,0.023526212,-0.026176669,-0.024605522,0.029674178,0.059348356,0.017665152,0.006670542,-0.019359259,0.0035316641,-0.0006937808,0.01121662,0.036150035,0.008354401,-0.025124684,0.023963401,0.015438223,-0.011237114,-0.008989691,-0.03013869,0.017624166,-0.02147689,0.041505594,0.06929439,0.019851096,0.0480361,0.014673143,0.02057519,0.00853884,0.07191753,-0.012719456,0.02045223,-0.040166702,0.021545202,0.03325366,-0.038609218,0.017801775,-0.010342243,-0.030439258,0.039019085,0.010492527,0.00083296385,-0.04798145,0.036286656,-0.039647542,-0.05429336,-0.025657507,0.037106384,0.034373954,0.025917087,-0.061206404,0.01860784,0.01249403,-0.0017265534,-0.015725128,-0.024004387,0.032707173,-0.004733933,-0.010929715,-0.014372576,-0.020889418,-0.025507223,-0.054457307,0.04683383,0.0024335694,-0.008047003,0.029920096,-0.042653214,0.04046727,-0.06290051,-0.04830934,0.06415743,0.067436345,-0.011312256,0.029510232,-0.02116266,0.013873908,0.05098712,0.025903426,-0.0029493154,-0.012931219,-0.038472597,-0.02147689,0.007124808,0.023676496,0.0029356533,0.027092032,0.024250306,0.039401624,-0.00005795738,-0.060441326,0.021271959,-0.03677849,0.05046796,0.022870429,0.058856517,0.018252624,-0.028253313,-0.029674178,0.0068276566,0.029018395,0.047298342,-0.023239307,-0.05423871,0.016982045,-0.0074253753,0.013839752,-0.0023174412,-0.016708802,0.03560355,-0.03180547,-0.0089555355,-0.04478451,-0.005229186,-0.021353932,-0.028635854,-0.03727033,-0.016544856,0.020862093,0.02185943,0.05918441,0.016203303,-0.04008473,-0.020616176,0.012275437,-0.0365599,0.002635086,0.00013363284,0.0014217169,0.02313001,-0.01236424,-0.03874584,0.02459186,-0.032652523,-0.01038323,0.02796641,0.023457902,0.008368064,-0.014509197,0.011271269,-0.014837089,0.0032942845,-0.044074077,-0.019823771,-0.0058269044,0.039019085,-0.018334597,0.033854794,-0.014932724,0.0006267509,0.0037434276,-0.0030347037,0.021053365,0.017692477,-0.051970795,0.02490609,0.024195658,0.019167988,0.010232946,-0.0033267322,-0.0072204433,-0.01229593,0.044647887,0.004600727,0.0004978144,-0.0091877915,-0.051315013,-0.01899038,-0.0025172501,0.010164635,0.03448325,-0.021012377,-0.038390625,-0.0031559553,0.011756275,0.04147827,-0.003379673,0.014891737,-0.012610159,-0.042789835,-0.04295378,0.0053043272,0.038691193,-0.025684832,-0.010943377,-0.0020561528,0.014031022,-0.02516567,0.04325435,0.00525651,-0.019058691,-0.027870774,0.016230628,-0.030603202,-0.011715288,-0.015602169,-0.012698963,0.06699915,0.008969198,-0.007555166,-0.052271362,-0.019905744,0.018512206,-0.03625933,0.012289098,0.021490553,0.017473882,0.027283302,0.013218124,-0.017788112,0.009966535,-0.028280638,-0.023867765,-0.03713371,0.021750133,0.009918717,-0.00015316544,-0.045467615,0.0005264195,0.0030705668,0.02732429,0.016900072,-0.03740695,-0.011558174,0.026258642,-0.0009059709,-0.0104037225,-0.022296619,-0.00391762,-0.023662833,-0.0012125153,0.019960392,0.0010776016,0.02466017,0.007029173,-0.008197286,0.0063187415,-0.002332811,0.023553537,-0.02332128,0.05104177,-0.02657287,-0.023457902,0.037106384,0.0040439945,0.029592205,-0.021968728,0.005454611,-0.008354401,0.0054614423,-0.006875474,0.008859901,-0.009590825,-0.0040883967,-0.03519368,0.07831141,-0.027419923,0.0244689,-0.039920785,0.013525522,0.016353587,-0.019919407,-0.0101714665,-0.026040047,-0.007500517,-0.002848557,0.0010622317,0.0060250056,-0.015178642,0.007398051,-0.042461943,-0.0026316706,0.022228308,-0.032188013,-0.031067716,-0.010622317,-0.0034121205,0.032078713,0.028307963,0.006691035,0.0079991855,-0.036150035,-0.0012748488,-0.016230628,0.004850061,-0.016148655,0.031914767,-0.00898286,-0.0011211497,0.030876447,-0.036368627,-0.007480024,-0.021818444,0.030411933,0.0112302825,0.02293874,0.015424561,-0.03330831,-0.011319086,0.0268871,-0.0025496976,0.0041191364,-0.01420863,0.01994673,-0.017747125,0.017542193,-0.0076508005,-0.0034462758,-0.03090377,0.007493686,0.027597532,0.02714668,0.004347977,0.031395607,-0.10907856,-0.015028358,0.026272302,-0.03956557,-0.021176323,-0.0058269044,-0.016804438,0.023690159,0.022187322,0.021244634,-0.013525522,-0.019208975,0.018840097,-0.025630182,0.02019265,-0.009433711,0.0004897025,-0.008832576,-0.025698492,0.055522952,-0.00136963,0.0014558722,0.021189986,0.018785449,0.01096387,-0.009058001,0.03459255,0.052599255,0.0403853,-0.02184577,0.030548554,-0.026559208,0.010909222,0.022446902,-0.0043821326,-0.025329616,0.013962711,0.02001504,0.00576884,-0.041778836,-0.043063078,0.00075269875,-0.0023737976,0.035466928,-0.027665842,-0.018635165,0.011619654,-0.008935043,-0.008675462,-0.036723845,0.05989484,0.00083509856,0.011565005,-0.03855457,0.011373735,0.005956695,-0.032406606,0.020957729,-0.022446902,-0.02491975,0.04505775,0.013334253,0.036969762,0.0076439697,0.009133143,-0.030548554,-0.006335819,-0.01726895,0.0041532917,-0.007753267,0.023375928,-0.0016590967,-0.013108827,-0.019618839,-0.025192995,0.015902735,-0.008381725,-0.010075831,-0.04472986,-0.008074327,-0.014809764,-0.007602983,0.005652712,0.015533858,-0.019810108,-0.015643155,-0.020219974,0.03013869,-0.01344355,-0.024796791,-0.03713371,-0.021750133,0.0055912323,-0.0031252154,-0.00089999376,-0.027556544,-0.019318271,0.008532009,-0.09284793,0.010916053,0.027829787,-0.020506877,0.01568414,-0.005792749,0.015766114,0.012473538,0.01860784,-0.02006969,0.040166702,-0.0074390373,0.018402908,-0.01573879,0.052544605,-0.015287939,0.0035282488,0.004525585,0.014181306,-0.00017237784,0.025575534,-0.03461987,-0.027488234,0.025083696,0.019236298,0.023198321,-0.021750133,0.01338207,0.00942688,-0.010390061,-0.017227964,0.04363689,-0.0015421145,-0.021176323,0.028444584,0.014427224,-0.0031849875,-0.0014294018,-0.0034462758,-0.035904113,0.030767148,-0.013785103,-0.005550246,-0.004433366,-0.017064018,-0.013477705,-0.009618149,0.018703476,0.009973365,-0.00007017859,-0.0027358443,0.01344355,0.006588569,0.020288285,-0.017118666,0.017282613,-0.03620468,0.030084042,0.0018290195,-0.00583032,0.02803472,-0.003975684,0.008320246,-0.008163131,0.023184659,-0.014645819,-0.0124872,-0.025698492,-0.0034428602,0.012821922,0.009290258,-0.005051578,-0.019017704,-0.021108013,-0.01751487,-0.017938396,-0.010335412,-0.0038151538,-0.020875756,0.0048944633,-0.014072008,0.027187666,0.004535832,0.01918165,-0.00583032,-0.010554006,-0.024742143,-0.018840097,0.0031166766,-0.006721775,0.05847398,-0.011455708,0.0017214301,-0.0019297779,0.023621848,-0.0019263623,-0.0069745244,0.0115923295,0.032707173,-0.018881083,0.012944882,0.009918717,0.005785918,-0.048473287,-0.019140664,0.01427694,-0.007903551,0.0113600725,0.015766114,0.012316423,0.006014759,0.022897754,0.019086014,0.023375928,-0.048910476,0.0066056466,0.024865102,0.015588506,0.012644314,-0.02300705,-0.014140319,0.0032447593,0.0006942077,0.0029339455,-0.00083509856,0.0054102093,0.009297089,0.01274678,0.010717952,-0.030002069,-0.04440197,-0.007275092,-0.0049866824,0.0037502586,-0.009700122,-0.016900072,0.021586187,0.0008641306,-0.045385644,0.008381725,-0.001221908,0.018512206,-0.0058508134,0.029428259,0.008579827,0.02375847,0.0014840504,0.006014759,0.015916398,-0.027310627,-0.0225562,-0.042297997,-0.011148309,0.018580517,-0.04650594,0.007288754,-0.0007919774,0.03114969,-0.048008773,0.016162317,0.016476545,0.020848433,0.027419923,-0.021039702,-0.05522239,0.007001849,-0.0070701595,-0.016708802,0.012357409,0.014003698,0.012835585,-0.0034121205,-0.018799111,0.00834757,-0.024209319,0.026750479,0.027775139,-0.012862909,-0.020725472,0.058146086,0.0009665967,-0.0013337668,0.00020194356,0.0004041006,0.048282016,0.0148234265,0.005481935,-0.017829098,0.0002516823,-0.007883057,0.010205622,0.024810454,0.0050823176,0.020875756,-0.037871465,-0.03664187,0.020561527,-0.001700083,-0.013525522,-0.010191959,0.025766803,-0.023963401,0.0010280764,0.0050310846,-0.03467452,-0.006762761,-0.011865572,0.023854103,0.010287595,0.035330303,0.01523329,0.028745152,0.0081289755,0.010294425,0.012500862,-0.022091687,-0.0015626077,-0.06661662,-0.0023840442,0.031696174,-0.0087506035,0.00046792845,-0.0077737602,0.032351956,-0.010840911,0.014495535,-0.047489613,0.021053365,-0.01968715,-0.010601824,-0.017091343,0.02179112,-0.006964278,-0.00847053,0.023498887,-0.021299282,0.012125153,0.020807445,0.0009196331,0.014290603,0.010362736,0.019304609,-0.026299627,-0.013286435,-0.04377351,0.01707768,0.030493906,0.031832796,0.044238023,0.014454548,-0.04052192,-0.013600664,-0.008613982,-0.02147689,0.024236644,-0.0136963,0.010840911,0.008675462,0.009891393,-0.007193119,-0.015014697,0.019140664,0.008429543,-0.0043923794,-0.012009025,0.0024284462,-0.015246953,-0.023662833,0.023676496,-0.01860784,0.015260615,-0.007275092,0.037324976,0.014317927,-0.0037673363,-0.0061069783,-0.04620537,0.008716448,-0.020657161,0.03281647,-0.01695472,-0.012821922,-0.021545202,0.02159985,-0.016462883,-0.0076849563,0.02580779,-0.030630527,-0.004006424,0.0055126753,0.008197286,0.03563087,0.011571836,-0.04880118,0.015465547,-0.013812427,-0.012193464,-0.035521574,0.0263816,0.014550184,-0.027010059,-0.01994673,-0.045330994,0.021968728,0.038718518,0.014440887,0.0011510357,0.009816251,-0.008402219,-0.0035658197,-0.014345251,-0.019905744,0.017487545,0.0030688592,0.0006344358,0.011161972,-0.01120979,-0.025971737,-0.00126631,0.00917413,-0.013231787,0.0022798702,0.020793783,0.0013807304,-0.022788456,-0.014181306,0.040767837,-0.0004004716,-0.0054204557,-0.018361922,0.021968728,-0.014440887,-0.0075210105,0.0040303324,-0.007780591,-0.0020817693,-0.014700467,0.011933883,-0.00027922008,-0.002570191,0.004600727,-0.0047168555,-0.0093175825,0.035958763,0.01459117,-0.013293266,0.024181996,-0.037024412,-0.010663304,-0.012418889,0.08230076,-0.009098988,0.0002901071,0.043308996,0.005809827,0.015028358,0.0067525147,-0.0023601353,-0.010342243,0.041259676,-0.019482218,-0.0055468306,0.016203303,-0.0030671514,-0.0014977126,-0.033854794,-0.04003008,0.021504214,0.036423277,-0.0031610786,-0.009256103,0.042543918,0.03434663,0.014495535,0.01133958,-0.015096669,-0.0041532917,-0.0034923856,0.04442929,0.00481249,-0.0071521327,0.017952057,0.005331652,0.0036307147,-0.023594523,0.045604236,0.0149054,-0.00905117,0.021217309,-0.0075961524,0.017801775,-0.03574017,0.0096796295,-0.009481528,0.0012142231,-0.0064758565,-0.014058346,-0.0489378,-0.012036349,-0.031013068,-0.021189986,0.020028703,0.008053834,-0.023867765,-0.01618964,-0.0063802213,0.0066227242,0.01191339,-0.011517188,0.007363896,-0.012692132,0.05142431,-0.0068686428,0.019208975,0.011920221,-0.0034906778,0.023744807,-0.020616176,-0.00077233807,0.024427913,-0.0020219972,0.007568828,0.01949588,0.008805252,-0.01427694,0.023990724,-0.013218124,-0.0006720067,0.017610503,0.025616521,0.023444239,-0.020875756,-0.01032175,0.051588256,-0.014468211,0.06361094,0.048063423,-0.026531884,0.02389509,-0.0001593561,-0.008648138,0.020370256,-0.02274747,0.01420863,-0.0066944505,0.0025787298,0.00021923472,0.0032874534,-0.006663711,-0.02236493,0.014290603,0.0072614294,0.038090058,0.011353242,-0.033417605,-0.008320246,0.005543415,0.021613512,0.014659481,0.01523329,0.030739825,-0.024783129,-0.0030381193,0.0065407516,-0.0062265224,-0.01274678,0.0040542413,-0.00583032,-0.013914893,-0.0066193086,0.025534548,0.03319901,0.03822668,0.030739825,0.0019673489,0.0021022623,0.01751487,-0.0073297406,0.0069745244,0.02026096,-0.01968715,0.038527247,0.00796503,-0.0036990256,-0.024045374,0.020165324,0.012610159,-0.035221007,-0.03166885,0.0054204557,-0.006346066,0.015561182,0.009003353,0.0072341054,-0.005116473,-0.024550874,0.0026846114,0.0014242785,-0.015588506,0.0005208692,-0.011045843,0.0012927804,-0.009980196,-0.009385893,0.012528186,-0.024824116,0.042789835,-0.03721568,0.008456867,0.014864413,0.0048466455,-0.0078967195,-0.020916743,0.017419234,-0.0022491305,-0.02542525,-0.0062231068,0.007671294,0.0011109031,0.005331652,-0.0016556811,-0.0068788896,-0.045276344,-0.01942757,0.024632845,-0.029455584,0.0068208254,-0.02624498,-0.017637828,-0.056506626,-0.034893118,-0.0075210105,-0.00064468244,0.013074672,0.029264312,-0.04161489,-0.007036004,-0.012077335,0.030302636,0.009310751,0.009741109,-0.017870085,-0.043063078,-0.023662833,0.038008086,0.018785449,0.02554821,0.031996742,0.04483916,-0.015711466,-0.03267985,-0.010916053,0.0031969417,-0.034783818,-0.008900887,0.0015694388,-0.01975546,0.003335271,-0.0070428355,-0.008689124,0.0018273118,0.013935387,0.039647542,-0.0150556825,0.0002928822,0.019318271,0.0014960048,0.0055536614,-0.017391909,-0.007206781,-0.020862093,0.0034958012,-0.0049832673,-0.067327045,0.022050701,-0.020739134,-0.016654154,0.008422712,0.029728826,-0.019536866,0.025397927,-0.00039940423,-0.011640146,0.010089493,-0.0029424843,-0.004535832,0.0068139946,0.035712846,-0.03606806,-0.0048773857,-0.005116473,-0.0100416755,-0.0153152635,-0.008504685,-0.047954127,0.011120985,-0.00892138,-0.026258642,-0.02772049,0.01618964,0.017350923,0.022078024,0.019605177,-0.0124462135,0.003593144,-0.041997433,0.02140858,-0.00576884,0.008456867,0.0010246608,0.0016573889,-0.018621502,0.04371886,-0.008204117,0.020561527,0.0035248331,0.034319308,0.03038461,-0.030493906,0.0013841459,-0.013716793,0.044128727,-0.0074390373,0.004696362,0.011687964,-0.040631216,0.023293955,0.020411244,-0.029018395,-0.025780465,-0.026682168,0.028499233,0.028909096,0.008948704,-0.015766114,0.008545672,-0.033854794,0.020110676,0.010431047,-0.029865447,0.0072614294,-0.00719995,-0.05803679,-0.03713371,0.039674867,0.014222292,0.004836399,-0.041396298,0.012138815,0.003562404,0.003511171,-0.024031712,0.04377351,-0.018320935,0.0009119481,0.025397927,0.0070428355,0.015916398,0.004136214,0.021640837,0.009180961,-0.0016454345,-0.016831761,-0.0025821452,-0.0124872,-0.0018204807,0.020424906,-0.0049456963,0.0024318616,0.010267101,0.0022132674,0.026668506,0.023772132,0.010198791,0.03046658,0.0064826873,-0.03147758,-0.015069345,0.001863175,0.004440197,0.015383574,-0.0034770158,-0.008450036,-0.004013255,0.02504271,0.02134027,-0.0043104063,-0.00847736,0.028307963,-0.014454548,-0.034865793,0.013061009,0.0070633283,-0.02791176,-0.0023071945,-0.003430906,0.012753611,-0.0355489,0.042216025,-0.016708802,0.024824116,-0.00059174164,0.0065168426,-0.0072614294,-0.021203648,0.014987372,0.036751166,-0.025315953,0.024496224,-0.040631216,-0.01949588,-0.009522514,0.0031081378,0.02057519,0.0028451416,0.00023609893,0.0054580267,0.023116348,0.019851096,0.01567048,-0.024100022,-0.022774795,0.0093175825,-0.013757779,0.01121662,0.01676345,-0.031750824,0.005102811,-0.0070838216,-0.030439258,0.043227024,0.0031849875,-0.009727446,0.006913045,-0.0029014978,0.007869395,-0.0317235,-0.0082314415,0.0031047224]},{"id":"enum-WebhookType","type":"enum","source":"main","text":"Enum: WebhookType\nMembers: Incoming=1, ChannelFollower=2","meta":{"url":"/docs/typedefs/WebhookType"},"embedding":[-0.031151246,0.0052498193,0.031631663,-0.017484648,0.010619743,0.0035241111,0.029128438,0.022389958,0.048850816,0.041998554,0.05014036,0.0042068087,-0.02304737,-0.0014325591,0.0015226372,-0.0008652246,0.013653955,0.020556787,-0.012617266,0.038787346,0.01907761,0.0125856595,0.041113574,0.017054802,-0.014501006,0.0086348625,-0.05203674,0.03459002,-0.043338664,-0.017320294,0.023489859,-0.023805924,-0.00056614925,0.053654987,-0.03443831,0.0054647424,-0.004718832,0.015006708,0.004674583,0.008331441,0.020645285,-0.014576862,-0.012522447,0.03112596,-0.021947468,-0.0140964445,-0.05451468,0.019697094,-0.01962124,0.021479694,-0.025310388,-0.021542907,0.033426903,0.050190926,-0.0046619405,-0.0023799601,-0.0032396538,-0.017383508,-0.045867175,-0.031656947,-0.009766371,-0.053806696,0.01367924,-0.03855978,0.042984672,-0.03499458,-0.0324155,0.013881521,0.0070039732,0.010291036,0.034615304,0.033477474,-0.012471876,0.0035810026,0.026776923,0.041492853,-0.034261312,-0.022731306,-0.054059546,-0.0011725966,-0.012825868,0.006175886,-0.065184996,-0.033882037,0.0070924712,-0.02235203,-0.014880283,-0.06832035,-0.011334047,-0.0007111435,-0.047308426,-0.03453945,-0.034817584,0.014083802,0.02542417,-0.020379793,-0.01367924,-0.06488157,-0.06225192,0.045917746,0.052441303,-0.023856493,-0.04758656,-0.013767738,0.0018063044,-0.0141849425,0.0026328112,-0.041568708,-0.012402343,-0.044729345,-0.026878063,-0.047561277,-0.012775297,0.018445482,0.028926156,-0.020329222,0.024602404,-0.007256824,-0.0084136175,0.011346689,-0.02532303,-0.005565883,0.034665875,0.00560065,-0.01164379,0.03097425,-0.036157697,0.020051086,-0.016915733,-0.00222983,0.07175912,0.017724857,0.026296506,0.013274678,-0.0036347334,0.022086537,0.0123201655,0.012547731,-0.018002992,0.013476959,0.0011955112,-0.014159657,0.040355023,-0.008483152,0.007301073,0.014475721,-0.03964704,-0.020973992,0.020392435,-0.0762093,-0.04682801,0.016283605,0.010031864,0.011182336,-0.010291036,0.034767017,0.00078778894,0.033325765,0.0005072824,-0.006883869,-0.0024400123,-0.01977295,0.0061727255,0.015107849,-0.025993085,-0.007143041,0.02958357,-0.029912276,-0.03421074,0.031151246,0.018432839,0.014766499,-0.026953919,-0.013401104,-0.011473115,-0.028268743,-0.048749678,-0.014248155,-0.06017854,-0.026650498,0.06134166,0.04134114,0.038483925,-0.042150266,-0.019153465,-0.018458124,0.043540947,-0.01749729,0.013021828,-0.044223644,-0.0070039732,0.013262036,-0.0022440527,0.034160174,0.005199249,-0.027838897,0.009153207,0.03390732,0.02700449,-0.06579184,0.031252384,-0.043642085,0.039368905,-0.039090768,-0.009854868,0.028218174,0.0008960408,0.024349554,0.0042510577,0.024905825,0.041695133,-0.01085363,0.009589375,0.0018363305,-0.09557769,0.02309794,-0.05203674,0.006953403,0.0075539243,-0.018394912,-0.016270963,-0.00074512034,0.007705635,0.048243973,-0.0127184065,0.053452704,-0.0016166662,-0.058206305,-0.018673047,-0.043161668,-0.048193403,-0.0030642382,0.020885494,-0.05673977,-0.030392693,0.026372362,0.035146292,0.022023324,-0.015423913,-0.014286082,-0.05148047,-0.024539191,-0.014880283,0.03107539,-0.034387738,0.022175035,0.02235203,-0.020493574,-0.019254604,-0.007389571,0.03911605,0.08440167,0.0035999664,0.009848547,-0.010512281,0.009677873,0.010019221,0.049078383,-0.023654213,-0.012326487,0.019798234,-0.035727847,0.009380773,0.055930644,-0.008192373,-0.034362454,0.06311161,-0.01917875,-0.0013464317,0.009816941,-0.022870375,0.0064034523,0.04766242,0.010107719,-0.063313894,-0.0045481576,0.01799035,-0.022086537,-0.03881263,-0.009330203,-0.024792042,0.010505959,0.006770086,0.03175809,-0.006106352,-0.014614789,-0.0043332344,0.01729501,0.029330717,0.013666597,-0.025462098,0.007275788,-0.029229578,-0.007162005,-0.025841374,0.049230095,0.02557588,-0.033806182,0.09057123,-0.011947211,0.00035339882,0.022769235,-0.051177047,-0.007945843,-0.0200258,0.033174053,0.004914792,-0.018875329,-0.050721914,-0.06048196,-0.025993085,0.016397389,-0.04351566,0.021833686,-0.031656947,0.018445482,0.016928377,0.03532329,0.051227618,0.00078818406,-0.0068775476,0.018698333,0.016270963,-0.032137364,0.032693636,-0.0229968,0.0019090252,0.013325249,0.051050622,0.01615718,0.014121729,-0.048749678,0.020013157,0.021150988,-0.015929613,0.007041901,-0.018710975,0.016359461,-0.019292533,0.01710537,0.01040482,-0.012598302,0.007617137,-0.023755353,-0.029431859,-0.011435187,-0.011719645,0.023325507,-0.0018710975,0.031707518,0.007572888,-0.023578357,-0.021644047,-0.0093428455,-0.038888488,-0.030190412,0.06771351,-0.024475979,0.027889468,0.04268125,-0.0342866,0.032238506,-0.04275711,0.020291295,-0.0034166493,-0.0102341445,-0.041770987,-0.08000206,0.0019753985,-0.020708498,0.014829712,-0.0020733783,0.04053202,0.014602146,-0.0067068734,0.03668868,-0.00018074898,0.054868672,0.017585788,-0.0059293564,0.050797768,0.008287192,0.0097158,-0.039293047,-0.012958615,0.04020331,-0.03335105,0.06402188,-0.06715723,-0.020721141,0.0041309535,-0.014640074,-0.0035999664,-0.014930853,0.0009434504,0.0011702261,0.034969296,0.0330982,0.03421074,-0.03226379,-0.011081195,-0.051632177,0.0118776765,0.024804685,-0.0055848467,-0.0027529155,-0.03390732,0.0062580626,0.051025335,0.02488054,0.014336653,0.03777594,0.004405929,0.011719645,-0.0073137158,-0.018066205,-0.014892925,-0.01556298,0.029356003,-0.0069786883,-0.028015893,-0.010038186,-0.020051086,0.021871613,-0.001793662,-0.043338664,-0.0068901903,0.02423577,0.080608904,-0.058408584,-0.020885494,-0.01699159,-0.000733268,0.02586666,0.022187676,-0.06968574,0.05709376,-0.02591723,0.01273737,0.025828732,-0.04386965,0.017800711,-0.0012065734,-0.005436297,0.0051834458,-0.04306053,-0.03810465,-0.053604417,-0.01710537,-0.0104996385,-0.051075906,-0.055981215,-0.03532329,0.011194979,-0.018698333,-0.017914494,0.0036157696,0.040936578,-0.000052150524,0.0024953235,-0.05044378,-0.041265287,0.03562671,0.017623715,-0.009323881,-0.00812916,-0.02235203,0.006700552,0.014488364,0.034160174,0.04852211,-0.0054742247,0.02725734,0.046018884,0.0019169268,0.0017051641,0.046120025,-0.0013883101,0.008653826,0.003543075,0.016144538,-0.004845258,-0.03484287,-0.00401401,0.009330203,0.051303472,0.049204808,-0.0047788844,-0.029381288,-0.03216265,-0.008698075,-0.009671551,0.04579132,-0.013818308,0.0010825184,-0.02730791,-0.00589775,0.007345322,0.030190412,-0.04791527,-0.044476494,-0.050974764,0.005704951,-0.009323881,0.04187213,0.039571185,-0.014071159,-0.03282006,-0.06022911,-0.036410548,-0.006536199,0.014058516,-0.012623587,0.01486764,-0.027560761,-0.028420454,-0.014930853,0.012200061,-0.032921202,0.0028635378,-0.028825017,-0.005695469,-0.006254902,0.00807859,-0.006725837,0.0011773376,0.010594457,-0.05451468,-0.018913256,-0.022023324,0.016270963,0.0100129,-0.024400122,-0.019949945,-0.011106481,0.022832448,-0.008122839,-0.011220264,0.020493574,-0.010354249,0.0023530948,0.038888488,-0.039874606,0.01244027,-0.013047112,0.03866092,-0.013944734,-0.016081326,0.0147159295,0.019166106,-0.013122967,-0.041416995,0.01362867,0.001268996,0.008963569,0.010518602,-0.020114299,0.0011575836,-0.025714949,0.008647505,0.025891945,-0.039621755,0.04766242,-0.0041183108,0.0039887247,-0.014501006,-0.026574641,0.012996542,0.011157052,0.003394525,0.011473115,-0.007617137,-0.03969761,0.013514887,-0.01100534,-0.010967413,-0.022225605,0.012162134,0.007838381,-0.020582072,-0.0027323712,0.022731306,0.052997574,0.012117885,-0.004197327,-0.0218084,0.03534857,0.022339387,-0.0048800246,-0.02067057,0.023767997,-0.00011605467,0.0073137158,0.0023230687,0.027130915,0.0120104235,-0.032187935,-0.032440785,-0.04386965,0.03350276,-0.015575623,0.05284586,-0.011289798,-0.02864802,0.025651736,0.07180969,-0.0021666172,0.0048357756,-0.03287063,0.028951442,-0.007920559,0.0062485808,0.012332808,-0.0083693685,0.007832061,0.0030357926,-0.0015487125,-0.0005610132,0.040380307,0.026903348,0.020657929,0.040557303,0.0030089272,0.013198823,-0.022883017,0.024943752,0.011808143,-0.006422416,0.025335671,0.001967497,0.00083914935,-0.01590433,-0.013767738,-0.026220651,-0.043186955,0.015449197,0.014020589,-0.04376851,-0.009336524,0.0016830396,0.003057917,0.0006009163,0.018458124,0.0051518395,0.023173796,0.026675783,-0.006027336,0.008293513,-0.018609835,0.006235938,0.021644047,-0.007073507,0.026802208,-0.0013013926,0.00013027753,-0.08682904,-0.016776664,0.034893442,0.0031574771,-0.012187419,-0.0006427947,-0.0009568831,0.015171061,-0.009741086,-0.004475463,0.006166404,-0.020202797,-0.0037358738,-0.009349166,0.004614531,-0.008875071,0.03314877,-0.009083672,-0.016688168,0.0013179859,-0.023856493,0.01253509,0.004371162,0.010000258,0.014501006,0.022073895,-0.023034727,-0.028673306,-0.031151246,0.021618763,-0.005363602,0.023426646,-0.02586666,0.034337167,0.031328242,0.024463337,-0.023262294,0.028066464,-0.022137107,0.014336653,-0.02369214,0.0171433,0.0017715375,-0.019140823,-0.0064318976,-0.030139841,-0.030620258,-0.0031985654,0.010859951,-0.023085298,-0.004526033,0.008559007,0.014463078,0.011738609,0.009488234,-0.0068016923,0.019507457,0.0017683768,0.020278651,-0.0312271,0.027181484,-0.006902833,-0.028167604,0.0083251195,0.0035304322,0.01982352,-0.016776664,0.011422545,0.0023388718,0.012939651,0.020177511,0.0027339517,0.03211208,0.010107719,0.030696115,-0.014640074,-0.041695133,-0.008514758,0.0027149878,0.017927138,0.0454879,-0.02467826,0.009671551,-0.007029258,-0.015676763,0.03676454,0.010335285,0.0359807,0.020721141,0.04847154,0.023603642,-0.00039883298,0.011593219,-0.036739253,-0.0033724005,0.00010039963,0.009159528,-0.058004025,0.024615047,0.009937045,-0.0107208835,0.03825636,-0.02438748,-0.0024811006,0.011858713,0.0062138136,0.036056556,0.0067195157,0.0066057327,-0.0029378128,0.006624697,-0.047460135,-0.028521596,0.042023838,0.022870375,-0.05689148,-0.019166106,-0.022857731,-0.005445779,0.03112596,-0.033578616,-0.031353526,-0.020999277,-0.008830822,-0.0224026,0.005366763,-0.0158664,0.008976211,-0.001125187,-0.023072656,-0.03780123,0.010796739,0.008761288,-0.020202797,-0.017320294,-0.024513906,-0.02096135,0.04682801,-0.017383508,0.019861447,0.0033692399,-0.0067827287,-0.11165901,-0.0055816863,0.014842355,-0.015891686,0.017750142,-0.02849631,-0.014854997,0.014943495,-0.031555805,-0.013350534,-0.00037730113,0.012263275,0.009355487,-0.021580834,0.036815107,-0.017623715,0.03557614,0.03395789,-0.008306156,0.011144409,-0.010095077,-0.020910779,-0.025790803,0.056082357,-0.0144504355,0.004270022,-0.026928633,0.014210227,0.04758656,-0.033174053,-0.00015319216,0.004876864,-0.006457183,-0.019962588,0.012219026,-0.018293772,-0.0064002913,0.0008747065,-0.031631663,-0.010986377,0.008868749,-0.03216265,-0.025702305,0.006612054,-0.015069921,0.03671397,-0.012421306,0.013894163,0.026549356,-0.0037295525,0.017762784,-0.0086348625,0.012655194,-0.019494813,-0.02260488,0.051025335,-0.00036781922,0.009760049,0.030797254,-0.035651993,0.0063149543,0.01546184,0.023325507,-0.0102783935,0.015069921,-0.031302955,-0.003995046,-0.0059609627,-0.015423913,0.027181484,0.03469116,0.012667836,0.033376336,0.0106323855,0.034413025,0.0068522627,-0.048142835,-0.043439806,-0.000045014396,0.0100129,0.028799731,-0.0054426184,-0.012219026,0.00500645,0.012282238,0.015272202,-0.004058259,-0.046069454,-0.015171061,-0.046651013,-0.00550267,0.004298467,-0.009481913,0.015335415,0.009943366,-0.007737241,-0.0271562,-0.01189664,0.025247173,-0.017598432,0.027864182,0.022124464,-0.027687186,-0.06017854,0.010980056,-0.010126683,0.0052213734,0.039849322,0.040633157,-0.022807162,-0.0067321584,0.0085021155,-0.015879044,-0.009500877,-0.0336039,0.0065045925,0.022225605,0.019545384,0.008748645,0.020303937,-0.014842355,0.019343102,-0.009153207,0.010600779,-0.011978817,0.050469063,0.027333194,-0.029457144,0.010057149,0.01680195,-0.03008927,0.039343618,-0.009178492,-0.0034482558,-0.038736776,-0.037143815,0.020303937,-0.06361732,-0.036107127,-0.011460473,0.037093244,-0.003906548,0.006368685,0.007838381,0.033224624,-0.00033285466,-0.033174053,0.02735848,0.028572164,-0.015272202,-0.03226379,-0.044476494,-0.055778936,0.002269338,0.0016925215,0.00649195,-0.0012508223,0.00619485,-0.0051518395,0.04579132,-0.015499768,0.033325765,0.06983745,0.021138346,-0.0141723,0.026498787,-0.029381288,-0.006039979,0.009330203,0.03370504,-0.00018410715,0.018470766,0.007528639,-0.015954899,0.0037927653,0.035449713,0.017257081,0.028117033,-0.011574255,-0.0129839,-0.0008063577,0.006985009,0.018609835,0.048597965,0.020089014,0.03355333,0.017193869,0.026574641,-0.0063212756,0.01625832,0.000097634074,0.0772207,0.0044217324,-0.0126741575,-0.022857731,-0.023565715,-0.0034103282,0.025310388,-0.045285616,-0.006229617,0.041315857,-0.008691754,0.02700449,-0.015044635,-0.007756205,-0.007503354,-0.007825739,0.006883869,-0.015145776,0.031833943,-0.009146886,0.0012247472,-0.0011828687,-0.020190153,-0.040430877,0.006239099,-0.03423603,-0.04048145,0.032036223,0.046221167,0.028268743,-0.009260668,-0.004519712,0.048749678,-0.009892796,-0.0012057833,0.0024352714,0.031833943,-0.010878915,0.02294623,0.028117033,-0.029482428,-0.022339387,0.013641313,-0.041518137,-0.047005005,-0.018622477,-0.010613422,-0.008976211,0.000020963918,-0.0075539243,0.058509726,0.010645028,-0.025525311,0.0004950349,-0.017775426,-0.0010129844,-0.0079332,0.02720677,-0.016789308,-0.013350534,0.0028730198,0.029558284,0.022731306,0.0388632,0.0021587156,0.010682955,0.013982661,0.033325765,-0.004396447,0.021884255,0.00067637645,0.013262036,0.026347077,-0.025247173,0.023135869,-0.029507713,0.004589246,-0.0042953067,0.009633624,-0.028875586,0.02710563,0.024564477,0.013009185,-0.015348057,0.0141849425,0.009677873,0.03082254,-0.044248927,0.027889468,-0.0052940683,-0.055121522,0.034564734,0.00465878,0.0027734595,0.0010975314,0.0036252516,0.01788921,0.010512281,-0.0017825997,0.03772537,-0.01233913,0.023843851,-0.019760307,0.009336524,-0.021972753,-0.03335105,-0.037093244,0.023730068,0.037598945,-0.013363176,0.022440528,-0.0048958277,-0.030847825,0.016043397,0.04708086,-0.009797977,-0.018243201,0.0055437586,-0.011422545,-0.016384747,-0.0018679369,0.019583311,0.002888823,0.011106481,0.050266784,-0.023414005,-0.03557614,0.008388332,0.009987615,0.005426815,-0.03206151,0.007591852,0.008337762,-0.0014594245,-0.034893442,0.013818308,-0.0068901903,0.028015893,0.0018473928,-0.00020228082,-0.021454409,0.027055059,0.024020847,-0.0049084704,0.0059704445,0.004589246,0.021644047,0.0123644145,0.008988854,-0.0068269777,0.015638836,-0.010164611,0.033882037,0.030544404,-0.026928633,0.03484287,-0.013552815,-0.007945843,-0.045513183,0.06842148,0.003742195,0.008944605,0.041366428,-0.029179007,-0.0060304967,0.018129418,0.030468548,0.00011161002,-0.005606971,-0.0072631454,0.03107539,0.0010027123,0.023034727,0.006523556,0.0073769283,-0.02255431,0.00035517666,0.020556787,0.0009323881,-0.025702305,0.035070438,-0.0075539243,0.006681588,-0.07024201,-0.015853759,0.024589762,0.017724857,0.009551447,0.014033232,-0.0143619375,0.0031985654,-0.038989626,0.007528639,-0.033679757,0.009431343,-0.017674286,-0.015095206,0.0037358738,0.020076372,0.008034341,-0.05203674,0.019267248,-0.042984672,0.002566438,0.03127767,0.011580577,-0.01020886,-0.00072773686,-0.040102173,-0.011327726,0.004465981,0.011131766,-0.014741214,0.004168881,-0.004914792,-0.017674286,0.0124529125,0.019343102,0.015259559,0.022630166,-0.003909709,-0.011808143,0.008540044,0.016650239,0.02542417,0.034008462,-0.01224431,0.02642293,0.013186181,0.043970793,0.015196347,-0.022389958,-0.020620001,-0.035222147,-0.00247794,-0.02220032,0.0040361346,-0.0008739163,0.029532999,0.009197456,-0.01199146,0.0022424725,0.0015084144,-0.003027891,0.05527323,0.00981062,-0.0039286725,-0.000896831,-0.041695133,0.010727204,0.05279529,0.020215439,-0.022187676,0.005287747,0.013565457,-0.0019121858,-0.048496824,-0.02859745,-0.032769494,-0.014513648,-0.025209246,0.01927989,0.00024988793,-0.027130915,-0.022187676,-0.00946295,0.0066942307,0.00007847271,0.010815702,-0.02423577,-0.00008400383,0.03147995,-0.0056828265,0.021732545,0.0057902886,0.022693379,-0.026372362,-0.00067124044,0.041063007,0.009880153,0.004801009,0.0012768976,0.021075133,-0.011169693,-0.008849786,0.03443831,0.018002992,0.013122967,0.03365447,-0.0330982,0.011947211,-0.012478198,0.008894035,0.037042674,0.03319934,-0.042605396,-0.04788998,-0.00842626,0.030948965,0.019393673,-0.018685691,0.023805924,0.00837569,0.021416482,0.033325765,-0.007914237,-0.0002988778,-0.010645028,-0.00540153,0.02958357,0.013982661,0.0018631959,0.007547603,0.013502245,-0.029912276,0.023274936,0.0043237526,-0.0036410547,0.009500877,0.03474173,-0.016296249,-0.048496824,0.013009185,0.0010177253,0.0031005857,-0.00081070355,-0.00708615,-0.025563238,0.010512281,0.012433949,-0.008356726,-0.020430362,-0.007547603,0.008653826,-0.01575262,-0.0047504385,-0.021934826,-0.03706796,-0.024577118,-0.020253366,-0.009760049,-0.005192928,0.024450693,0.025512667,-0.0062928298,-0.017206512,-0.015335415,0.02572759,0.01496878,0.029052582,0.0038717813,-0.05234016,0.00071588444,0.016776664,0.008097554,-0.022250889,-0.008615899,0.03398318,0.028875586,-0.029507713,0.01982352,-0.01902704,0.012332808,0.055778936,0.00057721144,-0.01734558,0.018407553,-0.034185458,0.0040266523,-0.013881521,0.003874942,-0.025108106,-0.030873109,0.01695366,0.021087775,-0.0062896693,0.01144783,-0.035702564,-0.008059626,-0.0018742582,-0.011985138,0.00445966,-0.032693636,0.016587026,-0.021530265,-0.008344084,-0.011852391,0.01253509,-0.009595696,0.013451674,-0.0072125755,-0.046271738,-0.005660702,-0.025714949,-0.01020886,-0.015600908,0.03335105,-0.015031993,0.0006479307,0.025588524,-0.007117756,-0.028926156,0.008072269,-0.024766758,0.033629186,-0.00069099443,-0.0026407128,0.009867511,0.0035968057,-0.0015953319,0.01962124,0.025462098,-0.024121987,-0.028622735,0.010961092,0.022175035,-0.0055880076,0.012971257,0.0009157948,0.013186181,0.04222612,0.0063655246,0.008091233,0.00896989,-0.021530265,0.003454577,0.03509572,-0.0044881054,0.031909797,0.008577971,0.021226844,-0.013502245,0.009159528,-0.0019406315,-0.035702564,-0.025714949,0.018546622,-0.0071240775,-0.012383379,-0.020190153,0.016877806,-0.010784096,0.012414985,-0.006656303,-0.0021192075,0.0036062878,-0.02185897,0.01749729,0.004232094,-0.0042068087,-0.0032744207,-0.02849631,-0.036562257,0.023679499,0.04543733,-0.017762784,0.011675396,0.0017399311,-0.010708241,0.013653955,-0.007813096,0.006352882,-0.03979875,0.013059755,0.021277413,-0.021960111,-0.0007241811,0.018407553,-0.0118334275,0.003558878,-0.021100417,0.014475721,-0.0109042,-0.03335105,-0.009412379,0.037750658,0.038003508,0.04847154,0.007503354,-0.013388461,0.003830693,-0.0026185883,-0.0029757405,0.0020180673,-0.011371975,0.02462769,0.029229578,0.037447236,0.0135781,-0.0005333576,0.00008533722,-0.008464188,-0.034337167,0.034185458,0.0068080137,0.038003508,-0.03618298,0.027459621,-0.034767017,-0.024981681,-0.003995046,0.006681588,-0.049154237,-0.007920559,0.00560065,0.008761288,0.0035114684,0.025082821,-0.0006001261,0.013363176,0.0019611758,-0.024311626,-0.019418959,-0.006928118,0.018546622,0.020215439,-0.023262294,0.05370556,0.0015257979,-0.0359807,0.005234016,0.017712213,0.022250889,0.01610661,0.05153104,0.003206467,-0.012212704,0.03196037,0.0068522627,-0.0073769283,0.00035339882,-0.014640074,-0.0062612235,0.017231798,-0.013552815,-0.0017573145,-0.01848341,0.01590433,-0.01006347,0.00028169184,0.005158161,0.023072656,-0.00713672,-0.045766033,-0.0048831855,-0.018015634,-0.014690644,0.02051886]},{"id":"guide-installation-0","type":"guide","source":"guides","text":"Guide: Installation (installation)\n\n```bash\nnpm install /core\n\n# Run your bot (Node 18+)\nFLUXER_BOT_TOKEN=your_token node your-bot.js\n```","meta":{"slug":"installation","url":"/guides/installation"},"embedding":[-0.042479027,-0.019205697,0.020315051,-0.052971672,0.031801492,-0.06341809,-0.018708799,0.054219697,-0.01961015,0.016466979,0.0020367054,0.06253985,0.017102547,-0.06341809,0.042294137,0.07816326,-0.06549813,-0.033927754,-0.009279287,0.025884936,0.012376235,-0.010769982,0.024382684,0.0056363293,-0.019621706,0.00039072963,-0.010925985,0.073124945,-0.014456274,-0.021239514,0.03889674,-0.024636911,0.034112647,0.031870827,-0.014121157,-0.004417195,0.054774374,-0.0129078,-0.0049083154,0.0074476968,-0.035984684,-0.043911945,0.02319244,-0.011879336,0.0007211526,-0.002598605,-0.053942356,-0.0057201083,-0.031385485,0.015611852,-0.01996838,-0.018454572,-0.0015686965,0.041670125,-0.0099553,0.0020164826,-0.033650417,0.018362125,-0.054543257,0.020453721,0.043449715,-0.0029929457,0.008695721,0.03818028,0.008585941,0.050013393,-0.0073668063,-0.0037671826,-0.007037467,0.014930061,0.019748818,-0.00028708877,0.038989183,-0.06831774,0.024567576,0.01982971,-0.020835062,0.013381587,0.020187939,0.0006182339,-0.019841265,-0.05246322,-0.038989183,-0.03875807,-0.032587286,-0.01802701,-0.035984684,0.0006536235,-0.039728753,-0.007927261,0.008169932,0.005171209,-0.02185197,0.060090028,0.051584978,0.010267306,0.012064229,-0.027317852,-0.011856225,0.03848073,0.085235395,-0.04904271,0.00003692431,-0.011833114,0.023261774,-0.022395091,0.015762076,-0.011393994,-0.025468927,0.005945446,-0.047193784,-0.019818153,0.009643294,0.020407498,0.043287933,-0.022926657,0.07682279,0.0081468215,0.019067029,-0.046754666,-0.023966677,-0.013023358,-0.00757481,-0.004576087,-0.013635814,-0.029328557,-0.028612098,0.015796743,-0.05218588,-0.00801393,0.013254474,-0.019263476,0.07072134,-0.028796991,-0.0026708285,-0.016778985,0.000117995296,0.008268157,0.009261954,0.02715607,-0.003434954,-0.0796424,0.045298636,0.009331288,-0.019899044,-0.0074476968,-0.011734889,0.009868632,-0.030853918,0.030206796,0.01944837,-0.013439366,-0.014340716,0.006055226,-0.009429513,-0.053896133,0.017680336,0.012919356,-0.053757463,-0.010371308,-0.002611605,0.015103398,0.019887488,-0.053295232,-0.029166775,-0.025630709,-0.027826305,-0.004968983,-0.028219203,0.045321748,0.02699429,-0.01843146,0.008897946,-0.018697243,0.040930554,0.02199064,-0.0021349294,-0.014363828,0.0052000987,0.029605895,0.019124808,0.012133564,-0.00048317583,-0.009799297,-0.017599445,-0.024775581,-0.021817302,0.04324171,-0.022660874,0.008152599,-0.017761225,0.013994043,-0.0136127025,0.006979688,0.05209343,0.011029987,0.06369543,-0.019113252,0.050013393,0.018662576,0.0043796385,0.021181734,-0.0049603162,-0.0060147806,-0.012873133,-0.027849417,-0.030345464,-0.026208498,0.013289141,-0.0036285133,0.0032442838,0.02937478,-0.011168656,0.038064722,-0.06554435,0.0062401183,0.038434505,0.04904271,-0.021713302,-0.03935897,-0.03956697,-0.016282087,0.057593983,-0.015103398,0.011255325,0.026000492,0.029421002,-0.013832263,0.005549661,0.021123957,0.010521533,0.042409692,-0.00050412066,-0.008557051,0.0055063264,-0.020234162,-0.025884936,-0.0048476476,-0.013173583,0.0010457976,-0.028796991,-0.007777036,0.03769494,-0.0045240857,0.036423802,-0.033026405,-0.02237198,-0.03427443,0.0656368,0.046639107,0.044535957,0.0205115,0.052833002,0.0042785257,0.022175532,-0.026508948,-0.02535337,0.022961324,0.008481938,-0.03399709,-0.009504625,-0.008672609,-0.0018344793,-0.005795221,-0.014756724,-0.020996843,-0.03757938,0.036678027,-0.016732762,-0.034990884,0.02013016,-0.029490337,0.038919847,-0.051076524,-0.022868877,0.009527736,0.007239693,0.05625351,-0.032309946,0.033049516,-0.020777283,-0.023042215,0.00030568635,-0.0016438089,-0.019506147,0.008984615,0.010047746,-0.00087607215,0.025191588,0.00090423936,-0.03133926,0.04592265,-0.009718407,-0.004359416,0.019113252,0.05967402,0.057778873,-0.0063961213,0.011261103,0.04120789,-0.047702238,-0.0048447587,0.017541666,-0.004630977,-0.019159475,0.008048597,-0.012757575,-0.00035588176,0.026878731,-0.02817298,-0.0063441205,-0.0061245607,-0.02349289,-0.022198644,-0.025861824,-0.009608626,0.014202047,0.011567331,0.027433408,-0.012029561,0.018142566,-0.042548362,0.05565261,-0.03029924,-0.031709045,-0.021216402,0.0037614047,-0.012653573,0.03910474,0.030738361,0.0328184,-0.034782883,-0.0070027993,0.042132355,-0.027664525,-0.013162027,-0.0004983428,0.029813899,0.037833605,0.036215797,0.01947148,-0.03610024,-0.049273822,0.014329161,-0.023203995,0.030276129,0.0052492106,-0.032402392,0.0123069,0.020707948,-0.07141469,0.040214095,-0.004154301,-0.05787132,0.014051822,-0.0074996976,0.004980539,-0.044928852,-0.010348196,0.0054485477,-0.058888227,0.028311647,0.011151322,0.052278325,-0.014225159,-0.013693593,0.00058934453,0.027826305,-0.0078117037,0.004446084,0.05491304,-0.006419233,-0.01747233,0.0043247486,-0.05232455,-0.014306049,-0.0021435963,-0.03473666,-0.019032361,0.0075170314,0.020499945,0.014132712,-0.012387791,-0.045575976,-0.045090634,-0.0052492106,0.012237566,0.004602087,0.042409692,0.055144157,0.028219203,-0.008701499,-0.0025538262,-0.00031308926,0.04203991,0.024636911,0.061199382,0.004994984,0.017842116,-0.008799722,0.034089535,0.02729474,0.021782635,0.01865102,0.07215425,-0.006205451,0.017622557,-0.03129304,-0.03834206,-0.018581687,-0.008776611,0.013000246,0.013000246,-0.0015166955,-0.0037296263,-0.005356102,0.06475856,-0.051538754,-0.01878969,0.024636911,-0.017356774,0.013034914,-0.017194992,-0.02907433,-0.0071530244,0.016258975,0.042109244,-0.039335858,-0.009874409,-0.03358108,0.00020926786,-0.055560164,0.019783486,0.05532905,0.002056928,0.002611605,-0.0011107988,-0.02669384,-0.003700737,0.048719145,0.0067485725,-0.0111051,0.04180879,0.016039416,-0.05787132,0.00054637145,-0.044374175,-0.03700159,0.0018720356,0.019263476,-0.07358717,-0.07728502,0.02805742,0.007857927,-0.0030940587,0.0019962601,0.037232704,0.041508343,0.05384991,0.030183684,-0.0023154884,0.02431335,-0.05338768,-0.0050412067,-0.009643294,0.0010299084,0.009498847,0.038272727,0.03757938,-0.04504441,0.050152063,-0.014375384,-0.012572682,-0.010388642,-0.042941257,-0.07793214,-0.0063961213,-0.015530962,0.025468927,0.001396082,0.023227107,0.047332454,-0.049458716,0.028704545,0.013138915,0.07358717,0.035591785,0.005191432,-0.034066424,0.00037267373,-0.0028340537,0.02108929,0.043796387,-0.011053098,0.02037283,-0.04890404,-0.042710144,0.0061765616,-0.04414306,-0.002614494,-0.023781784,-0.034574877,-0.04936627,0.02627783,-0.023666227,-0.030830806,0.022360424,0.0066445703,0.008008152,0.0060841152,0.04072255,-0.01649009,0.01731055,0.016085638,-0.0144100515,0.044374175,-0.030276129,0.028427206,0.019032361,-0.009030838,0.0079908185,0.042687032,-0.022337312,0.011249547,-0.0005474548,-0.015080286,-0.0052174325,-0.057778873,-0.0043854164,0.0016351421,0.031986386,-0.014675834,-0.000857294,-0.027641414,-0.0075054755,0.055745058,-0.042155467,-0.004038743,-0.04821069,0.0016452534,-0.015623407,0.05306412,-0.01372826,0.0113651045,-0.03175527,0.0246138,0.008493494,0.043079928,-0.0034638434,0.027872529,0.02357378,-0.014479386,-0.040214095,0.027433408,0.030645914,0.0151380645,0.009753074,-0.03235617,0.017819004,-0.013843819,0.029282333,-0.0024238238,0.008412604,0.009868632,0.021181734,0.005327212,-0.002155152,0.005705664,-0.00021937916,-0.002026594,-0.02149374,0.014398496,-0.0258156,0.025399594,0.0058790003,-0.02095062,-0.065082125,-0.011994895,-0.0146527225,-0.027641414,0.014941617,-0.07169203,0.02655517,0.04266392,-0.03189394,0.0146527225,-0.028265424,-0.014363828,-0.041392785,0.007077912,0.036192685,0.01766878,-0.0011779668,-0.02155152,0.022244867,0.0015296957,0.0071588024,0.015403848,-0.010330862,0.040468324,-0.028242314,-0.03508333,0.002042483,-0.011434439,0.030738361,-0.04312615,0.03494466,0.011630887,0.008089042,0.012642018,-0.00022028196,-0.004824536,-0.021274181,-0.064527445,-0.011607775,0.022764876,0.02037283,0.012283788,0.02653206,0.008851724,-0.0045818645,-0.045575976,-0.0015441404,-0.022106197,-0.00018010759,0.033719752,0.010937541,-0.014571832,0.0049054264,0.0047032004,-0.014282937,0.013820707,0.0030998366,-0.00035515951,-0.0065463465,-0.031986386,-0.0028802769,0.0316166,-0.025538262,-0.01982971,0.043542158,-0.023851119,0.013034914,-0.029952569,0.0158083,0.0028282758,-0.03367353,0.017090991,-0.024960473,-0.03714026,-0.017137215,0.049135152,-0.043611493,-0.023689339,0.0024599356,-0.032749064,-0.006511679,-0.03043791,-0.007586366,0.0007218748,-0.015738966,0.023342665,-0.009452623,0.030345464,-0.033604193,0.018939914,-0.024521355,0.040237207,-0.0063325646,0.010186415,-0.021886637,0.0005214543,-0.0030593914,0.015738966,0.022834212,0.01605097,-0.028288536,-0.06896486,0.0043709716,-0.009238842,-0.05190854,0.026647616,-0.032263722,0.039613195,0.037186485,-0.040237207,-0.0022707097,-0.019136364,0.0056536626,0.007378362,-0.014282937,0.0015542516,0.027179182,-0.00697391,0.0011259658,0.0038711845,0.02275332,0.022499094,-0.005023873,-0.044374175,-0.002978501,-0.00007100482,-0.009816631,0.021100845,-0.020650169,-0.028265424,0.010353974,-0.017264327,0.05625351,-0.020650169,-0.037163373,0.014930061,-0.020846618,-0.0034060646,-0.006292119,-0.024405796,0.0092735095,-0.012098896,-0.0092735095,-0.015426959,-0.014906949,0.013913153,-0.028681433,0.0013599702,-0.006858352,-0.018073231,0.02999879,0.01222601,-0.042479027,-0.008256601,-0.009533514,-0.01140555,-0.017079435,0.012353123,0.000084817584,0.0082334895,-0.022279534,0.030923253,-0.025422703,-0.04312615,-0.01618964,-0.01364737,0.004818758,0.007898372,0.0020742617,-0.024868026,-0.00050953747,-0.0010219638,0.015438515,-0.0017925896,-0.041231003,0.0060321144,-0.0043478603,0.009770407,-0.016374532,-0.021320404,0.007534365,-0.035245113,0.006633015,0.046824,-0.036909144,0.01186778,-0.0063498984,0.010839317,-0.011001098,0.032286834,-0.01588919,0.0067023495,-0.013739816,0.023250218,0.02939789,0.0053156563,0.02007238,0.017541666,0.0061361166,-0.01649009,-0.05269433,-0.03235617,0.0039722975,-0.018916802,-0.019055473,0.012295344,0.008412604,-0.009614404,0.028889436,-0.011341993,0.012434013,-0.0051134303,-0.028519653,-0.02201375,-0.028658321,-0.031269927,0.026716951,-0.012214454,-0.004827425,0.024729358,0.009464179,-0.054866817,-0.009417957,-0.02969834,0.0040156315,-0.023966677,0.018662576,0.01753011,0.027109848,0.019228809,-0.015623407,0.02095062,0.0060147806,-0.030160572,-0.001371526,0.004050299,-0.023180883,0.037533157,0.002797942,0.024244016,-0.023354221,-0.053480126,-0.027641414,-0.022487538,0.057825096,-0.017437665,0.0073090275,0.018107899,-0.021424407,0.0032471728,0.01873191,0.0043276376,0.003489844,0.0144100515,0.0030853918,0.016131861,0.02108929,-0.004240969,-0.0009591293,-0.016143417,-0.029721452,-0.016420756,-0.0022302645,-0.04596887,-0.04844181,0.023897342,0.020638613,0.00902506,0.010827761,0.00013099554,0.011994895,-0.018385237,-0.0020901507,-0.009429513,-0.025769377,0.031685933,0.004463418,0.0026838286,0.036886033,0.019679485,0.008967281,0.03760249,0.0010920207,0.00074823643,-0.03353486,0.014074934,-0.018258125,-0.0067601283,-0.007129913,-0.034066424,-0.024059122,-0.005535216,-0.0069219093,0.043426603,0.029166775,0.004509641,0.010816205,0.0144100515,-0.010434865,0.025376482,-0.035730455,0.021886637,0.015022507,0.019067029,0.013242918,0.0438195,-0.019228809,-0.016559426,0.021274181,-0.0016019193,-0.016016304,0.06277097,-0.015426959,-0.0014004154,-0.006968132,0.019667929,-0.0152074,-0.04619999,0.03448243,0.050660517,-0.020442165,0.009088617,-0.020465277,-0.025445815,0.025122255,0.014479386,0.06891864,0.009337066,-0.03850384,-0.052971672,-0.051862318,0.021609299,-0.02251065,-0.041277226,-0.0017767004,-0.01602786,0.046500437,0.0088748345,-0.07261649,-0.0107179815,-0.03979809,0.051353864,0.00060848374,-0.016154973,0.0065867915,-0.04950494,-0.05269433,0.0071125794,-0.014837615,0.009279287,-0.026971178,0.021262625,-0.003850962,0.004448973,-0.00626323,0.027063625,-0.015530962,0.0199106,-0.013335364,-0.006066782,0.034667324,-0.010677536,-0.01977193,0.012988691,-0.012630462,-0.017934563,0.006448122,0.0100766355,0.010013078,-0.015265178,0.0033078406,0.015923858,0.012572682,0.011671333,0.0796424,0.0012451347,0.04298748,-0.0067370166,-0.0346211,-0.04474396,0.031986386,0.008788167,0.02185197,0.006321009,-0.0133700315,0.005020984,0.021747967,-0.0049169823,0.019332811,-0.0009454068,-0.03013746,-0.0066445703,-0.023446666,-0.017437665,-0.016975433,0.0120064495,-0.01077576,0.029582784,-0.016721206,-0.003642958,-0.026901843,0.017333662,-0.00014164852,-0.00013930125,0.013658926,0.0056478847,-0.000973574,0.006251674,0.011671333,-0.030507246,0.00842416,0.00076629233,-0.015195844,0.053017896,0.0067427945,0.01635142,-0.008227712,0.016674982,0.00779437,0.0059627797,0.007280138,0.021297293,-0.0065347906,0.011578886,-0.029259222,0.03459799,0.0043767495,-0.048395585,0.034112647,0.0064943456,0.011706,0.012942468,0.028427206,-0.001536918,0.018697243,0.021620855,0.017437665,-0.006991244,-0.006413455,-0.007644145,0.0304148,-0.010538867,0.00013397477,0.021563075,0.0039231856,-0.009729962,-0.00048967596,-0.004659866,-0.018373681,-0.028242314,0.019379035,-0.0038278503,-0.0065867915,0.012214454,0.008938392,0.037024703,0.008747721,-0.02863521,0.031570375,0.053202786,0.020326607,0.0037556267,0.008429938,0.013936264,-0.0144100515,-0.019760374,0.022995992,-0.005853,0.002972723,-0.040653214,0.002682384,0.010082413,-0.0006803462,0.031223703,-0.019760374,0.041647013,0.03087703,0.014121157,0.025931159,0.01895147,-0.012919356,-0.0258156,0.025145365,-0.021563075,-0.035013996,-0.023307998,0.015230511,0.0074534747,-0.016721206,0.0047060894,0.00533299,-0.003486955,0.019413702,0.002688162,0.021921305,-0.003180727,0.0046425327,0.019113252,-0.0059916694,-0.032564174,-0.03778738,-0.02155152,-0.0151380645,-0.036631808,0.030599691,0.010845095,-0.0023862675,-0.0064018993,0.0012270788,-0.0007980707,0.036793586,0.041092336,-0.043149263,0.0037614047,-0.005220321,0.023180883,-0.008753499,-0.036654916,0.03029924,0.008817056,0.0044980855,0.011081988,0.016004749,-0.004301637,-0.019217253,-0.03473666,0.0134509215,-0.0024844916,-0.03744071,0.03531445,-0.025330259,0.0105562005,0.032148164,-0.018165678,0.00040950777,-0.0029640563,0.024844917,-0.037856717,-0.0009930744,0.024937361,-0.003888518,0.0258156,-0.0039780755,-0.03651625,0.029813899,-0.024798693,-0.009793519,-0.014421606,0.001294969,0.019020805,-0.015681187,0.015230511,-0.0069970214,0.009157952,-0.033604193,-0.059581574,-0.0199106,-0.05458948,0.033326853,0.01818879,0.035152666,-0.02059239,0.037510045,-0.0078290375,0.036932256,0.057593983,-0.014802948,0.030669026,0.014999395,0.0012400791,0.030599691,0.07233915,0.014421606,-0.008447272,0.019124808,0.031154368,0.023354221,0.026023604,0.0077192574,0.033349965,-0.009458401,-0.014248271,0.013959376,0.03686292,0.00015257233,0.005890556,-0.0066041253,-0.03210194,0.0044836407,0.001564363,-0.02398979,0.013462477,0.0054572145,-0.020187939,0.048534255,-0.02653206,0.0100766355,0.015623407,-0.0034753992,-0.020881284,-0.0052665444,-0.018396793,-0.018154122,-0.006979688,0.01039442,-0.011197546,-0.018870581,-0.008689943,0.013034914,-0.011463328,-0.019275032,-0.01772656,-0.004240969,0.015866078,-0.0060205585,-0.00026415777,0.0055178823,-0.034320652,-0.012746019,-0.0056681074,-0.012780687,-0.0027849418,0.0223142,0.035499338,-0.0035591787,-0.006257452,0.005434103,0.05694686,-0.0018633687,0.056207288,0.008002374,-0.009221508,-0.029883234,-0.026370278,-0.010105525,-0.01676743,0.013739816,0.018292792,0.02491425,-0.00014571109,0.05190854,0.0031056146,0.0021349294,-0.014664278,0.00514232,0.0043680826,0.032194387,0.010972208,-0.05371124,0.025630709,-0.016420756,0.031246815,0.008580163,0.02805742,-0.008499272,-0.011058876,-0.03224061,0.030391688,-0.01033664,0.002767608,0.020003047,0.0011765223,0.025884936,0.015045619,0.018928358,0.00888639,0.021227958,-0.04086122,-0.015970081,-0.013843819,-0.019217253,-0.00932551,0.012145119,-0.0021667078,-0.014594943,0.008169932,0.008008152,-0.0031056146,0.012480237,0.008661053,0.014178935,0.03429754,-0.017102547,0.03577668,-0.02245287,0.0072570266,0.012942468,-0.019124808,0.025145365,-0.019575482,0.002672273,0.028542763,0.0006315953,0.02327333,-0.016501646,0.011983339,0.0047985353,0.04606132,-0.03415887,0.023550669,-0.002280821,-0.007580588,-0.014791392,-0.010226861,-0.015218955,0.003790294,-0.01334692,0.0059627797,-0.013231362,-0.012064229,-0.01676743,-0.015681187,0.018165678,0.0045558643,-0.008065931,0.03818028,-0.04173946,0.016963877,0.009556626,0.017264327,0.031108145,-0.025561374,-0.030853918,0.019887488,-0.007950373,0.029305445,-0.025538262,-0.02387423,-0.0037845161,0.012919356,-0.013115805,-0.0043334155,-0.0050874297,0.011249547,-0.031986386,0.008707277,-0.022487538,0.048534255,-0.01670965,-0.00779437,0.012734463,0.015842967,-0.016802097,-0.011006875,-0.04250214,0.052833002,-0.0025798266,-0.0030622804,0.020904396,-0.031223703,-0.017079435,-0.024844917,-0.000511343,-0.017275883,-0.0009887409,-0.019402146,-0.025908047,-0.034667324,-0.017853672,-0.0044807517,0.011711778,-0.030784585,-0.02037283,0.02026883,-0.0051076524,-0.006523235,-0.031501044,-0.010769982,-0.033973977,0.009689517,0.019506147,0.008747721,-0.015681187,-0.01605097,0.02321555,-0.00615345,0.011798446,0.0025523817,-0.0025292702,-0.012445569,0.03265662,-0.0074650305,-0.00092590647,0.014641167,-0.00015798911,0.055837505,-0.0017824783,0.011578886,0.022406647,0.019032361,0.0034522878,-0.008100598,0.0028138312,-0.0107237585,-0.026046716,-0.032749064,0.022903545,0.010411753,-0.008528162,-0.0018633687,-0.019413702,0.011289991,0.017194992,-0.025607597,0.012988691,0.015334513,-0.0158083,-0.02056928,-0.022995992,0.007759703,-0.021204846,-0.0008377937,-0.03057658,-0.03295707,0.04418928,0.02639339,0.0028412761,0.014791392,-0.01066598,0.00026524113,0.004778313,-0.018535463,-0.010070858,0.008562829,-0.02415157,-0.011411328,-0.01835057,0.011711778,0.0050440957,-0.015461626,-0.007077912,0.015161176,-0.012272233,0.006841019,-0.0018344793,0.04610754,0.005642107,0.038064722,0.0041398564,-0.022083085,0.0146527225,-0.0073552504,-0.02387423,-0.02969834,-0.016663427,0.02201375,0.007551699,0.0037816272,-0.030045014,-0.004659866,-0.030992588,0.0020583724,0.006812129,0.0152998455,-0.03133926,0.017021656,0.030368576,0.020707948,0.009475735,-0.034228206,-0.009862854,-0.017715003,0.00913484,0.0030651693,0.0005366213,-0.018581687,0.0033627304,0.021759523,0.020014603,-0.0005247044,-0.009672184,-0.014583387,-0.018477684,0.009828187,0.003593846,0.022776432,0.021678634,0.021170178,-0.024660023,0.002103151,0.031709045,-0.011914004,-0.0035129555,0.022695541,0.0070894677,0.014248271,-0.025584485,-0.0013426365,0.00068937417,-0.025561374,0.0076557007,0.030391688,0.011249547,0.025237812,-0.010735314,0.044720847,0.015172732,0.008493494,-0.0089557255,0.031870827,0.01982971,-0.0028167202,0.05352635,0.024012899,0.010452198,0.012122008,-0.017738115,-0.009862854,0.016282087,-0.022406647,-0.005893445,0.0028427206,-0.01282691,-0.016212752,-0.021747967,0.0023674893,0.024359573,-0.010186415,-0.0015556961,0.013820707,0.018165678,0.041415896,0.008921058,0.01873191,-0.010879762,-0.03367353,0.0029640563,0.035707343,-0.0151380645,0.0004987039,-0.024174681,-0.04416617,0.026924955,0.009394845,0.007424585,0.015473182,0.06582169,-0.016074082,-0.008828612,0.006812129,-0.0070027993,-0.030900141,-0.023134662,-0.011711778,-0.021979084,-0.0043305266,-0.010059302,0.007233915,-0.014883838,-0.00998419,-0.03591535,0.023851119,0.038596287,-0.0096779615,-0.006303675,0.02169019,-0.0075112535,-0.039266523,-0.019875932,-0.003946297]},{"id":"guide-basic-bot-0","type":"guide","source":"guides","text":"Guide: Basic Bot (basic-bot)\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => console.log('Ready!'));\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!ping') {\n await message.reply('Pong!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"basic-bot","url":"/guides/basic-bot"},"embedding":[-0.052983865,-0.008294032,0.01338063,-0.0067454046,0.024202658,-0.03990929,-0.049923338,0.07678253,0.0045601875,0.028744482,-0.005423256,0.0005011615,0.004538764,-0.029185198,0.020260697,0.03227021,-0.075754195,-0.0162208,0.02432508,0.009144858,0.050584413,0.0007873209,0.027520271,0.04904191,-0.040276553,-0.024288353,-0.021521635,0.032759894,-0.034449305,-0.051172033,0.02803444,-0.027226461,-0.00023049604,0.0013764726,0.021950109,-0.015045557,0.050192665,0.041574217,-0.0106506385,0.007014731,-0.027838565,-0.040447943,0.05190656,-0.00040092922,-0.010858755,0.011654492,-0.034498274,0.0037277236,-0.02867103,0.051416878,-0.03990929,0.006298567,0.022403067,0.08329534,0.020236213,0.02565947,-0.035746973,-0.002172975,-0.017885728,0.050143696,0.027201977,0.018987518,0.025120817,0.027177492,-0.024239386,0.04754837,-0.0052702297,-0.0035961207,0.014200851,0.058468334,0.029797304,0.005248806,0.007455447,-0.06894758,-0.016808422,0.0015141964,-0.0014866516,0.006574015,0.0048509375,-0.01842438,0.007987979,-0.012407382,-0.0630224,-0.05347355,-0.04164767,0.0075901104,-0.053620458,-0.036457013,-0.015278158,-0.022060288,0.008385847,-0.039762385,-0.036089752,0.028181344,0.08892671,-0.02137473,0.010809787,-0.012297203,-0.019660834,0.04948262,0.091717914,-0.067870274,-0.03278438,-0.00909589,0.039835837,-0.03714257,0.0049090874,0.004731577,-0.03562455,0.020823834,-0.07521555,0.023884363,0.048576705,0.03359236,0.022280646,-0.03417998,0.072963,0.017359316,0.027079554,-0.04042346,-0.019611865,0.02387212,0.01737156,-0.0018562104,-0.0014751747,-0.06586257,0.0015448016,-0.026785744,-0.025806375,-0.027936503,0.05792968,-0.0034675787,0.037093602,-0.018522318,-0.027838565,0.010815907,-0.014237578,0.026516417,-0.02994421,-0.0061547225,0.010724091,-0.07526451,0.027520271,0.03320061,-0.0021071737,-0.032466084,-0.06512804,0.0021592027,-0.04453681,-0.001615959,0.006093512,-0.0030421652,-0.050829254,-0.0019709803,-0.023223288,0.02339468,0.0071922415,0.03714257,-0.041623186,-0.038317814,0.021350246,0.0009808993,0.011905455,-0.028744482,-0.043900218,-0.006555652,-0.0052916533,0.0069045518,-0.03236815,0.03915028,0.03726499,0.005937425,0.027079554,0.016147347,0.035869393,-0.030899094,-0.03256402,-0.0006029241,0.0018715131,0.035183836,0.042431165,0.014531389,0.0044561294,-0.013074577,-0.0093713375,-0.004958056,0.0016312617,-0.0006947399,-0.027348882,-0.027814081,-0.032515053,0.004119471,-0.024814764,-0.011091354,0.060720883,-0.001228037,0.044977523,-0.031780526,0.025059607,-0.0017414406,-0.024227142,-0.00550283,0.01929357,-0.04762182,0.006378141,-0.0027973228,0.0063230516,0.00613942,-0.002855473,0.023615036,0.024875974,0.011274987,0.009836538,0.0073269047,-0.074187204,0.009640664,0.012964398,0.043581925,-0.050290603,-0.018914064,-0.06483423,-0.03116842,0.045393758,-0.0062189936,-0.004263316,0.040741753,0.025904313,-0.03457173,-0.010956692,-0.001396366,0.0296504,0.032049853,-0.022831542,-0.05259212,0.03133981,-0.014151883,0.04257807,0.013698925,-0.0033971865,0.013196998,-0.011262745,-0.033102676,0.023957817,-0.033445455,0.018032633,-0.026785744,-0.03168259,-0.016257526,0.029258652,0.0010390494,0.0766846,-0.014519147,0.0557261,0.01424982,0.021631815,-0.016441159,0.0053681666,-0.027201977,0.0031018455,-0.04487959,-0.0017414406,0.010675123,-0.0007062169,-0.034277916,-0.044757165,-0.048797064,-0.025120817,0.024129206,-0.020040339,-0.022684636,-0.023847638,-0.0051722927,0.038024005,-0.029087262,-0.024520954,-0.012125813,-0.01448242,0.014629326,-0.028719999,0.02705507,-0.021680783,-0.010822028,0.0071922415,0.008967348,0.023847638,0.026908165,0.014457936,-0.04737698,0.0119299395,-0.00515393,0.0076084733,0.02769166,0.009469274,-0.020052582,0.03550213,0.07688047,0.070171796,0.010626154,0.048380833,0.031315327,0.02247652,-0.0406683,0.00979369,-0.0042724977,0.0050009033,0.020493299,0.0015157267,-0.029209683,0.05068235,-0.04505098,-0.002350486,0.026369512,-0.028989324,-0.032588504,0.0006916794,-0.0010933738,0.019281328,0.05567713,0.009469274,-0.0071310312,-0.016135106,-0.03897889,0.031535685,-0.0352328,-0.050633382,-0.022929478,-0.00625572,0.023211047,0.026957134,0.026320543,0.058517303,-0.028548608,-0.0011683567,0.008832685,0.001140812,-0.026491933,-0.0058578514,0.023859879,-0.022611184,0.04725456,-0.013392872,-0.032980252,-0.0665971,0.012866462,-0.01749398,0.05954564,0.033469938,0.004606095,-0.007828832,-0.010981176,-0.024508711,0.031609137,0.000003906358,-0.044169545,0.016184075,-0.027299913,0.011501466,-0.030189052,-0.01494762,0.0075839893,-0.04267601,0.021154372,-0.004704032,0.011103597,-0.020811593,-0.008440937,-0.02947901,-0.060965724,0.008263427,-0.0074860523,0.03846472,0.030556316,-0.011366802,-0.0025708438,-0.010944449,-0.035355225,-0.017420527,0.0013045502,-0.042822912,0.017126717,0.011495344,0.026516417,-0.02646745,-0.041696638,-0.025059607,-0.0065250467,0.0011675915,-0.0031370416,-0.0017766367,0.027471302,0.02884242,-0.014666052,0.0015746418,0.022341857,0.015302641,0.020015856,0.06204303,-0.026222607,0.008043068,0.021080919,0.056950312,0.010032412,-0.0030391046,0.0050529325,0.003412489,-0.041892514,0.0068739466,0.002803444,-0.028058924,0.0106506385,0.021644056,-0.023529341,0.027250944,0.004465311,-0.009695753,-0.03302922,0.019146666,-0.023908848,-0.018803887,-0.01083427,-0.0053375615,-0.005380409,0.00011878676,-0.024961669,-0.011164808,0.031021515,0.030384926,-0.027104039,-0.022892753,-0.052053466,0.00084088015,-0.04316569,0.0118809715,0.03944409,0.01726138,-0.028254798,-0.0004743819,-0.036359075,-0.030531831,0.02455768,0.009059164,-0.012033997,0.0077125314,0.036236655,-0.010589428,0.013025609,-0.024227142,0.004186803,0.018693708,-0.009334612,-0.058419365,-0.06615638,0.02061572,-0.010797544,-0.03932167,-0.014751746,0.003978687,0.03320061,0.03689773,0.031951915,-0.019881193,0.031609137,-0.042112872,-0.013270451,0.021448182,0.022292888,0.0077615,0.03702015,0.0018852855,-0.028891388,0.030335957,0.020578993,0.012003392,-0.0053957114,-0.005704825,-0.021338005,0.039297186,-0.022672394,0.014580357,0.03493899,0.07790881,0.005074356,-0.02756924,-0.018118327,-0.002212762,0.08784941,0.0044744923,-0.017077748,-0.041794576,-0.0016542156,-0.022635669,0.008208337,0.048503254,-0.012670588,0.045614116,-0.048552223,-0.011807518,0.015449547,-0.013882557,-0.0057262485,-0.025218753,-0.025010638,-0.054012205,0.017922454,-0.021644056,-0.0026167517,0.0049366322,-0.019771013,-0.0015065451,-0.021521635,0.030335957,-0.020860562,0.0018424381,0.004639761,-0.0025509503,0.013172514,-0.019722044,0.015743358,-0.022268405,-0.026026733,0.014702778,0.043704346,-0.007149394,0.00023986891,0.008477664,-0.036750823,-0.015657663,-0.041745607,-0.018314201,-0.01749398,0.022231678,0.0009365217,0.01314803,-0.017151201,-0.022696879,0.038611624,-0.025218753,-0.0035838787,-0.030801157,-0.026663324,-0.021999078,0.024190417,-0.00084088015,-0.0074615683,-0.052053466,0.020885045,0.0056099487,0.05136791,-0.029283136,0.035893876,0.062238906,-0.008912259,-0.0008898486,0.004165379,0.030923579,0.011893213,0.01216254,-0.021619573,0.007920647,0.0162208,0.008073674,0.0005363576,0.02676126,-0.0020245395,0.014470178,-0.040325522,0.00608127,0.01112196,-0.017506221,0.00049886614,-0.014568115,0.0223541,-0.02201132,0.042210806,0.0159882,0.006586257,-0.04137834,-0.011832003,-0.021803204,-0.008128763,0.026222607,-0.0547957,0.00590682,0.03469415,-0.022611184,0.0038379026,-0.022427551,-0.0012004923,0.00076321926,0.036187686,0.014200851,-0.0081226425,-0.022305131,-0.010338465,-0.027642692,-0.004664245,-0.009603938,0.010026291,-0.03320061,0.03682428,0.0127073135,-0.022109257,-0.025145302,-0.0023260016,-0.0064515937,-0.024129206,0.018265232,0.0072840573,-0.00050881284,0.012486956,0.01291543,0.01743277,-0.012168661,-0.05792968,-0.033690296,0.0019771014,-0.020028098,0.024582164,0.012841977,0.010546581,0.0015088405,0.0026228728,-0.0051631113,-0.000066949055,-0.017946938,0.03932167,0.0063842623,-0.0010474658,-0.02368849,0.005132506,0.0030804218,0.012780766,-0.0044591897,-0.0079451315,-0.02676126,-0.0074615683,0.0046948506,0.004140895,0.0048754215,-0.020248456,0.005879275,-0.02786305,0.027422335,-0.037093602,0.003000848,0.0009135677,-0.030654252,-0.0014575766,-0.015535242,-0.016049411,-0.001830196,0.017004296,-0.009579454,-0.027618207,0.018093843,-0.055921976,-0.0011966666,-0.021350246,0.012903187,0.011727945,-0.022207193,-0.0055946456,-0.016710484,0.042553585,-0.022403067,0.021252308,-0.047940116,0.016686,0.0017215472,0.0064271097,-0.010546581,0.02183993,0.008667416,-0.0004674957,0.009132616,0.019832224,-0.0013083759,-0.059006985,0.008263427,0.0040276553,0.0017490919,0.0113790445,-0.039786868,0.0026825531,0.022268405,-0.022904994,-0.0057568536,0.011372923,-0.010754697,0.0018424381,-0.028866904,-0.005092719,0.0244475,0.010509854,-0.004116411,-0.0017368499,0.022758089,0.03711809,-0.005334501,-0.04147628,-0.011495344,-0.029013809,-0.003342097,0.0062220544,0.00921219,-0.043875735,0.006818857,-0.01274404,0.024153689,-0.04958056,-0.044438872,0.041696638,-0.028107893,0.0067086783,-0.024337322,0.0132092405,-0.014274304,-0.0027774295,0.0025295266,-0.024582164,0.005230443,0.021705268,0.016049411,0.000082777726,-0.024692344,-0.044463355,0.027495787,0.045026492,-0.048454285,0.008716385,-0.00036688085,0.0225867,0.011195413,-0.009077528,-0.024692344,0.0063230516,-0.040619332,0.018583529,-0.041794576,-0.052445214,-0.0031768284,0.011128081,-0.01234005,-0.023933332,0.013539777,-0.008061431,0.014935378,0.016306495,0.00081869133,-0.022672394,-0.040350005,0.008459301,-0.010179318,-0.004147016,-0.014139641,-0.011746308,-0.00035655155,-0.016465643,-0.02114213,0.033910654,-0.04059485,0.022574456,-0.002919744,0.009830417,-0.012548166,-0.0026029793,-0.025904313,-0.025194269,0.009126496,-0.008624569,0.013980494,-0.012150298,-0.0007685752,0.025586016,0.034131013,-0.031756043,-0.049433652,-0.021191098,-0.0062067513,-0.027960988,0.00016890292,-0.006586257,0.010987297,-0.0043918584,0.01975877,-0.00076130644,-0.02259894,0.010748575,-0.053669427,-0.01841214,-0.031658106,-0.029258652,0.010736333,-0.01216254,-0.011538192,0.028230313,-0.010448644,-0.06987798,-0.011972787,-0.012988882,0.00306971,-0.04137834,-0.0051814746,0.016318737,0.032931287,-0.0000990846,-0.019905677,0.019024244,0.00041776212,0.0029564705,-0.0324416,0.035967328,-0.021264551,0.02977282,0.0028967902,0.03545316,-0.029332103,-0.044928554,-0.034890022,-0.017922454,0.036236655,0.0074064787,0.021533877,-0.012180903,0.0011331607,0.027642692,0.004547945,0.01233393,0.015510757,-0.0009931414,-0.015963716,0.018681465,0.027030587,0.007375873,0.005193717,0.0009296355,-0.03753432,-0.031217389,-0.010938329,-0.014200851,-0.02154612,0.0470342,0.008428695,-0.0003492828,0.016135106,-0.008391969,-0.015682148,0.0023795608,-0.01129947,0.015951473,-0.011715703,0.03579594,0.062238906,-0.011274987,0.047230072,0.017445011,-0.03261299,0.009169343,0.016588064,-0.007467689,-0.02183993,0.014910894,-0.020175003,-0.0078778,0.008036948,0.017567433,0.0026672506,-0.024374047,0.02472907,0.051123064,0.039125793,0.018216265,0.008991832,0.019538414,-0.030433893,0.03070322,-0.039713416,0.0003246073,0.022917237,0.034449305,0.040913142,0.051710688,-0.026736775,0.0076941685,0.016869633,0.011966666,-0.0040337765,0.045614116,-0.018608013,0.014715021,-0.0043520713,0.006592378,-0.009946717,-0.07320784,0.039297186,0.04757285,-0.038244363,0.01175855,-0.016588064,0.022280646,0.030115599,-0.022231678,0.04037449,-0.002299987,-0.010130349,-0.037901584,-0.0630224,0.028230313,-0.017824518,0.0033145521,0.017334832,-0.018228507,0.020982983,0.04593241,-0.022929478,-0.025904313,0.010436402,0.04343502,0.015045557,-0.015155736,-0.022745846,-0.04970298,-0.040913142,0.005086598,-0.000903621,-0.01813057,0.00886329,0.0032257969,0.014066189,-0.0076941685,-0.00012089087,-0.0030544072,0.00318601,-0.0013229133,0.02362728,0.0064209886,0.031927433,0.0010092092,-0.0088204425,-0.0012869522,-0.010791423,-0.0159882,0.012125813,0.005983333,0.015510757,-0.028058924,0.005221261,0.034106527,0.0025279964,0.006916794,0.012346172,0.011623886,0.033665814,-0.009426427,-0.0073942365,-0.030923579,0.037607774,0.0057293093,0.05636269,0.018497834,-0.026712291,0.012768525,0.0046213977,0.008918379,0.019085456,0.0031033757,-0.010540459,-0.008624569,-0.020995224,0.013135788,-0.02090953,0.026908165,0.02947901,0.06997592,0.0027131585,-0.013392872,0.008306274,0.032000884,0.010460886,-0.0016863511,0.03312716,0.004725456,-0.005821125,0.002948819,0.01847335,-0.038391266,0.008649053,0.018546801,0.015167979,0.045026492,-0.0139070405,-0.012364535,-0.004756061,0.023223288,0.022549974,-0.01558421,0.0010750106,-0.02798547,0.004159258,-0.021289036,-0.023443647,0.008391969,-0.0009472335,-0.025292207,0.025732923,0.010968934,0.008881654,-0.0033390364,0.008636811,-0.03320061,0.014335515,-0.013221483,0.0004303868,-0.044291966,0.020725898,-0.025610501,0.001117858,0.0019908736,-0.016649274,0.032686442,0.014102914,-0.013331662,0.025904313,0.0012349231,-0.03503693,-0.035649035,0.022158226,0.0012020225,-0.006151662,0.022513246,0.01940375,0.050878223,0.0052732904,0.0029503494,0.022794815,0.012407382,0.026026733,-0.011783035,0.0003888784,0.012535924,-0.027887534,0.009591696,0.0068310993,-0.002335183,0.0072901784,-0.012015634,0.011134203,-0.0037736315,0.015829053,0.039370637,-0.02479028,0.021031952,0.0069657625,0.02190114,0.024276111,0.01819178,-0.018987518,0.009016316,0.010209923,-0.01650237,-0.057782777,-0.007026973,0.011330076,0.009689633,-0.011464739,-0.0016848209,-0.0013879496,-0.021191098,0.019562896,0.024337322,-0.005839488,-0.027422335,-0.023088627,0.0014912424,-0.025904313,-0.019611865,-0.022831542,-0.014470178,-0.0026779624,-0.0073819943,0.015669905,0.005257988,0.0019097697,-0.02370073,-0.043949187,-0.0002769778,0.010411917,0.04321466,-0.007969616,-0.003954203,-0.008851048,0.006170025,0.012486956,-0.029209683,0.016759453,0.007890042,0.010962812,-0.013001124,-0.012560409,-0.01946496,-0.030042147,-0.020860562,0.028254798,-0.00005905863,-0.014225336,0.0547957,-0.01628201,-0.01917115,0.03474312,0.025059607,-0.027765114,-0.029356588,0.018093843,-0.03342097,-0.024165932,0.022807058,-0.013490809,-0.0019786316,-0.010509854,-0.02479028,0.036750823,-0.008508269,0.0037216025,0.0058180643,0.0021331883,0.0137111675,-0.019562896,0.047523886,-0.028915873,-0.011391287,-0.019648593,-0.03706912,0.0021821568,-0.0411335,0.0068310993,0.02050554,0.038072973,-0.023504857,0.017298106,-0.019477202,0.041892514,0.034008592,-0.022268405,0.022856025,-0.040447943,-0.013723409,-0.001315262,0.06605844,0.010467007,-0.025977764,0.025414627,0.046471063,0.03469415,0.025610501,-0.0043765553,0.017640885,-0.005242685,-0.029381072,0.023382436,0.018816128,-0.025439112,0.036408044,0.0037307842,-0.031707074,-0.0047070924,0.009836538,-0.032980252,-0.0075166575,0.029454526,-0.009493759,0.004251074,-0.044340935,-0.015204705,0.015878022,-0.033861686,0.020077066,0.016588064,0.012242113,-0.005288593,-0.03266196,-0.019917918,-0.016147347,0.007333026,-0.020101551,-0.0026152215,0.0058027618,-0.009352975,-0.018510075,-0.012187024,0.021741994,-0.03714257,0.021509394,0.038268846,-0.026271576,-0.019832224,-0.058811113,-0.03915028,0.0016251405,0.04304327,0.022292888,-0.0007658972,0.010987297,0.011611644,0.033959623,0.023100868,0.018277476,-0.012646103,0.005873154,0.01384583,-0.018852854,-0.008557238,-0.0045846715,0.02345589,0.0017261379,0.017983664,-0.007816589,0.042602554,0.0082695475,-0.0008202216,-0.017567433,0.014739505,-0.029185198,-0.009377459,0.0032288574,-0.03138878,0.015510757,0.013894799,0.009689633,0.009824296,0.015008831,-0.017016537,0.008159368,-0.014176368,0.0074064787,-0.039713416,-0.030850125,0.0067147994,-0.0029901362,0.02027294,0.02090953,-0.0021592027,0.00672092,0.0069535202,-0.034106527,-0.029332103,-0.01841214,-0.01679618,-0.016967569,0.0013933055,0.000043277785,-0.027618207,-0.012468592,0.01227884,-0.041745607,0.0077186525,0.02994421,0.0054385588,0.010662881,-0.015241431,0.03261299,-0.012927672,0.0046367003,0.0070943045,-0.015437305,0.044145063,0.009010196,-0.027667176,0.027789598,0.03902786,0.02044433,-0.03138878,-0.0005807353,0.016881874,0.010791423,-0.013062335,0.03702015,-0.0076268367,-0.008655175,-0.008679658,-0.044316452,-0.01929357,0.00095488486,-0.0072962996,0.0051110825,-0.021656299,-0.03253954,-0.022194952,0.0037001788,0.007737016,0.0033635206,-0.028597577,0.02044433,-0.035183836,0.025806375,-0.00324416,0.010460886,0.008948985,-0.010393554,-0.032637473,0.05739103,0.010258891,0.024361806,0.0054538613,0.00051187334,0.023051899,0.004244953,-0.038440235,-0.007014731,0.0018745736,0.012597134,-0.029038293,0.007210605,-0.008624569,0.047866665,-0.0006694906,-0.013037851,0.026222607,-0.0059251827,-0.015914747,-0.0024361806,-0.024312837,0.062238906,-0.017102232,-0.0014055476,0.010479249,-0.04860119,-0.016024927,-0.05357149,0.0017001235,-0.007914526,-0.009487638,-0.004893785,-0.032686442,-0.01274404,-0.0132582085,-0.011140323,0.00920607,-0.014176368,-0.031070484,0.018314201,-0.009420306,-0.021974593,-0.022366341,0.022194952,-0.039786868,0.019501686,-0.0014636976,-0.027936503,-0.02449647,-0.009028559,0.03320061,-0.0014591069,0.021129888,-0.01899976,0.0037032394,-0.040056195,0.02438629,-0.012382898,0.020762624,-0.009634543,-0.022758089,0.03961548,-0.011366802,0.0070943045,0.009622301,0.03283335,0.033935137,-0.02177872,0.009414185,-0.024937185,-0.036016297,0.017714338,0.015008831,-0.011923819,-0.0021790962,0.0065434095,-0.044732682,0.015951473,0.03863611,-0.03099703,0.02021173,0.03099703,-0.018987518,-0.03702015,-0.008159368,-0.012150298,-0.013111304,-0.014335515,-0.022109257,-0.047768727,0.03474312,0.013307177,0.023480374,0.02867103,-0.008710263,-0.027765114,0.011017902,-0.017567433,-0.005114143,0.0022892752,-0.026712291,-0.0033023101,-0.0022770332,-0.0105037335,0.011948302,-0.0060843304,-0.015449547,0.012266598,0.007308542,-0.025463596,-0.021252308,0.017359316,0.0004269437,0.0038317814,0.02039536,-0.038611624,0.01569439,0.012560409,0.009310127,-0.03474312,0.001257112,-0.018987518,0.00839809,0.016257526,-0.032588504,-0.0012089087,-0.01702878,-0.0011767731,-0.0060782093,0.003348218,-0.018387655,-0.0065434095,0.035722487,-0.0005099605,-0.022672394,-0.020530025,0.0038715685,0.010736333,0.010852634,0.022231678,0.0032288574,0.00648832,-0.0039756265,0.01448242,0.038489204,0.003005439,-0.0052671693,-0.020285182,-0.033739265,0.009542728,-0.006378141,-0.009175464,0.031070484,0.025243238,-0.006990247,-0.029699367,0.040325522,-0.0010589428,-0.007375873,0.014188609,0.0001329417,0.027299913,0.013723409,0.027275428,-0.011630008,-0.0050070244,0.032515053,0.012817493,0.019783255,0.009102011,-0.029821789,0.050633382,0.050192665,0.01442121,0.014494662,0.03249057,0.04125592,0.00095488486,0.03677531,0.0246801,-0.02879345,0.020064823,0.0071555153,-0.023994543,0.006004757,-0.008955106,-0.013417357,-0.0076513207,-0.04767079,-0.007222847,-0.06757647,-0.008838806,0.0012678239,-0.010926086,-0.030948063,0.00590988,-0.00295341,0.032515053,0.01448242,0.017445011,0.0041561974,-0.03388617,0.012089087,0.013062335,-0.0117034605,0.018987518,0.00076436694,-0.028940355,-0.00007646539,0.0021653238,0.009144858,-0.004933572,0.072277434,-0.033910654,-0.0031064362,0.028450672,0.01626977,-0.04101108,-0.024337322,0.021338005,-0.040692784,-0.021080919,-0.006800494,-0.024165932,-0.011832003,-0.006469957,-0.024263868,0.00047361676,-0.008061431,-0.0137601355,-0.01240126,0.011103597,-0.010216043,0.00038409632,-0.0070330943,0.010993418]},{"id":"guide-basic-bot-1","type":"guide","source":"guides","text":"Guide: Basic Bot (basic-bot)\nSection: Common mistakes\nAlways await message.reply() to avoid unhandled promise rejections. Use intents: 0 (Fluxer does not support intents yet). Set FLUXER_SUPPRESS_DEPRECATION=1 to silence deprecation warnings.\n\n```javascript\n// ❌ BAD — unhandled rejection if reply fails\nmessage.reply('Pong!');\n\n// ✅ GOOD\nawait message.reply('Pong!');\n```","meta":{"slug":"basic-bot","url":"/guides/basic-bot"},"embedding":[-0.030209007,0.0031615265,0.014777625,0.02338542,0.004916795,0.008083429,-0.04088703,0.041513547,0.029064933,0.05069338,0.01372208,-0.02941905,0.01755609,0.012584816,0.010950425,0.032687835,-0.03524838,-0.0018897654,0.026163887,0.01773315,0.044155814,0.003049162,-0.0040859794,0.039089203,-0.042003866,0.0057782554,0.00802895,0.040342234,-0.0025299022,-0.023821259,0.03320539,-0.026381806,0.0024618024,0.007061934,0.01969442,-0.016684415,0.036283497,0.022159627,-0.014151108,-0.016725276,-0.006646526,-0.053989407,0.05845674,-0.017338172,-0.01184934,0.044183057,-0.038326483,-0.010344338,-0.0055773617,0.06101729,-0.04317518,0.033613987,0.014110249,0.08466149,0.004354973,-0.0053322027,-0.028220497,0.020865735,0.0022472886,0.0237123,0.01180167,0.0134292515,-0.022282207,0.010868705,-0.049549308,0.0062753833,-0.010991284,-0.0039974498,0.036664855,0.052654654,-0.002758036,0.0063400776,0.02164207,-0.059818737,-0.023058543,0.018318808,0.036256257,0.048623152,0.020675056,-0.018427767,-0.009445422,-0.0021042794,-0.07774256,-0.055950675,-0.063414395,-0.020852113,-0.067500375,-0.04342034,0.00041838724,-0.045953646,-0.012407757,-0.026368186,-0.06079937,0.032796793,0.064340554,-0.028274976,0.0027495236,-0.018918084,0.026109407,0.02947353,0.073493145,-0.046689123,-0.05916498,-0.018577585,0.026340947,-0.0276076,-0.029609729,-0.006271978,-0.056223076,0.011277303,-0.07202219,0.0056080064,0.033886388,0.036011096,0.02388936,-0.02941905,0.022949584,-0.010337528,0.06281512,-0.005934885,-0.01788297,0.013939999,0.034975983,0.0005635246,0.008818905,-0.0466074,0.046498444,-0.016303057,-0.048895553,0.0028431606,0.0546704,0.0002683552,0.046144325,-0.02353524,-0.06069041,0.00010289432,-0.014178348,0.0077837906,0.011270492,0.015240703,-0.0018829554,-0.045626767,0.0051857885,-0.000656736,0.010310288,-0.028792534,-0.048922792,0.013068324,-0.03590214,0.0125167165,0.0016650365,0.032742314,-0.06292408,0.010514586,-0.02958249,-0.0002649502,0.013095563,0.017297313,-0.06325096,-0.05567828,-0.016030658,0.011522462,0.018958943,-0.05894706,0.0030117072,-0.03590214,-0.013381582,-0.012646106,-0.0312986,0.0546704,0.036256257,0.019871479,0.011835719,-0.012387327,0.020457136,-0.020511616,-0.019067902,-0.042494185,-0.006057464,0.014028529,0.042194545,0.045790207,0.029800408,-0.04159527,-0.013865089,-0.031189641,-0.012584816,0.0048146457,-0.031679958,-0.016248578,-0.030209007,-0.0007456912,-0.006520542,-0.011835719,0.024080038,-0.041813187,0.05720371,-0.03884404,-0.002730796,-0.012945744,-0.02725348,0.02158759,0.027621219,-0.026776783,-0.0033692303,-0.013926379,-0.0047874055,0.024720175,-0.01788297,0.034349464,0.029282851,-0.008117478,0.010010649,0.011406692,-0.061888967,-0.022581846,-0.0026524814,0.044128574,-0.06657422,0.010970854,-0.093705125,-0.011965109,0.07578129,0.010112799,0.0025486297,0.024461396,0.051510576,-0.010861895,-0.016888713,0.01777401,0.028465655,0.004545652,-0.012176218,-0.052409492,0.021165373,-0.009159404,0.052845333,0.0035922567,0.000010919885,0.041976627,0.00044307337,-0.01976252,0.0075931116,0.0025350095,0.012680155,-0.017746769,-0.03985192,-0.02766208,0.05088406,0.036310736,0.06935269,-0.006033629,0.04265762,-0.0197489,0.011931059,-0.056277554,0.003239841,-0.0007980428,-0.0013543318,-0.028411176,-0.034594625,0.019027043,0.008253678,-0.006265168,-0.040423956,-0.0071640834,-0.008675896,0.02768932,0.019054282,-0.036528654,-0.0078587,-0.004511602,0.034485664,0.00056054525,-0.010582686,0.01184253,0.0031240715,0.04309346,-0.03576594,0.038135804,-0.03712793,-0.009649721,0.0011823802,0.02556461,0.0435293,0.028356696,-0.0038884901,-0.040723592,0.012203458,0.014123868,-0.008553317,0.01780125,0.00686104,-0.036201775,0.044101335,0.086459324,0.054152846,-0.003364123,0.026449906,-0.004317518,0.012196648,-0.0024788275,-0.002650779,-0.03192512,0.028356696,0.018686544,-0.028928732,-0.024611214,0.00798809,-0.028901493,-0.01965356,0.020089397,-0.06701006,-0.022295827,-0.015431382,-0.009234313,0.03301471,0.019027043,0.026204746,-0.008573746,0.008553317,-0.03699173,0.022241347,-0.025932347,-0.047642518,-0.030127287,0.0058599752,-0.014832105,0.0058395453,0.059219457,0.014477986,-0.024801893,-0.0357387,0.018237088,-0.028520135,-0.01371527,-0.031679958,0.01176081,-0.028847013,0.044101335,-0.022472886,-0.018863603,-0.05725819,-0.008771235,-0.017161112,0.026109407,-0.005073424,-0.016711654,0.003035542,-0.0045899167,-0.030481406,0.030454164,0.014736765,-0.048078354,0.026599724,0.020443516,0.0054581873,0.0017280288,-0.001780806,0.036120057,-0.05742163,-0.0075794915,-0.0067588906,0.028274976,-0.0040178797,0.028656334,-0.018455006,-0.057639547,-0.009506712,0.015240703,0.002238776,0.042603143,-0.033586748,0.010146848,-0.033995345,-0.00790637,-0.027103662,0.008825715,-0.015363282,0.026109407,0.0012913396,0.016384777,-0.04320242,-0.058129866,-0.020007677,-0.006517137,-0.004504792,-0.010562256,-0.0069870246,0.018495865,0.02586425,0.0033556104,-0.03159824,0.026163887,0.038462684,0.037209652,-0.011924249,-0.016221337,0.014001288,0.020593336,0.06493983,0.007068744,-0.014668666,0.032878514,-0.025087912,-0.021110892,0.028383935,0.015131743,-0.028138777,-0.038299244,0.040532913,0.002546927,0.04777872,-0.0027495236,-0.01566292,-0.04453717,0.05878362,-0.04927691,-0.006329863,0.010875515,-0.012727825,-0.018182607,-0.022677185,-0.053390127,-0.0031700388,0.04720668,0.016371157,-0.04731564,0.01777401,-0.08727652,-0.040206034,-0.024733795,0.016970433,0.039633997,0.02553737,-0.008859765,-0.013245382,-0.042684864,-0.03933436,-0.007463722,0.020879354,-0.011631421,-0.0011466279,0.046008125,-0.030018328,0.017093014,-0.057694025,0.021192612,0.042930022,-0.014437127,-0.057694025,-0.061616566,0.012693776,-0.022077907,-0.013912759,0.013606311,0.029146653,0.0018557155,0.028710814,0.047696996,-0.0011355617,0.014409887,-0.040641874,-0.024434155,-0.0011483304,0.04453717,-0.011324973,0.020402657,-0.018849984,-0.051619537,0.013470111,0.01953098,0.021342432,-0.020579716,-0.014178348,-0.011372643,0.04897727,-0.020266457,0.012795925,0.020280076,0.03723689,0.013115994,0.008682705,-0.026504384,-0.022731664,0.07327523,0.032878514,-0.023862118,-0.084225655,0.018863603,-0.036692094,-0.010759746,0.060254574,-0.015935319,0.042221785,-0.0046205614,0.018591205,0.02388936,0.028438415,-0.010112799,-0.011910629,-0.028928732,-0.05932842,0.028901493,0.032578874,-0.021533111,0.0046409913,-0.019558221,0.016098758,-0.019244961,0.028166017,-0.026599724,-0.0021536516,0.0067759156,-0.024583975,0.025809769,-0.010643976,0.034104306,-0.011713141,-0.018209847,0.00988126,0.017283693,-0.0005350079,0.0022745284,-0.006857635,-0.02971869,-0.009636101,-0.026477145,-0.017351791,0.010678026,0.027117282,-0.0071164137,0.017093014,-0.00996298,-0.024216237,0.023971079,-0.030317966,0.0041540787,-0.032251995,-0.034349464,-0.018128129,0.0048282654,0.016997673,0.0015918294,-0.045790207,-0.0020242622,-0.0043651876,0.050094105,-0.033750188,0.027130902,0.02527859,-0.016234957,0.009295602,-0.020647814,0.033613987,0.006850825,-0.0006512029,-0.009724631,0.02557823,-0.006643121,0.022527365,-0.019149622,0.0060029845,0.006438822,-0.01942202,-0.02950077,0.012666536,0.033750188,-0.0041983435,-0.0042766584,-0.0022132387,0.006084704,-0.030508645,-0.0041506737,0.026422666,0.0021127916,-0.018659305,0.0050802343,-0.02168293,-0.025387552,0.0237123,-0.059764255,0.0155948205,0.03985192,-0.038544405,0.007238993,-0.038762324,-0.010017459,-0.028792534,0.027811898,0.039606757,-0.005155144,-0.025973208,0.012816355,-0.014164728,-0.008233248,-0.029282851,0.018523106,-0.026150268,0.036746573,0.022731664,-0.025333071,-0.010664405,-0.029909369,0.0058020903,0.0027903833,0.024161758,-0.01560844,0.0118902,0.0038816803,-0.0016114081,0.018100888,-0.00015822529,-0.07060572,-0.067500375,-0.014559706,-0.0000615025,0.0095543815,0.03148928,0.001084487,0.00343052,0.002574167,-0.015581201,-0.0031342865,-0.019353922,0.02346714,0.002283041,0.0027886808,0.00592467,-0.004099599,0.040314995,0.024188997,-0.0048452904,-0.011011714,-0.041486308,0.0013517782,0.0022047262,-0.014164728,-0.00487934,-0.02175103,0.009064064,-0.0312986,0.0354663,-0.010099178,-0.0034134951,-0.015948938,-0.021192612,0.00015748045,0.0016786564,-0.0060166046,-0.023235602,0.0075658713,-0.0058599752,-0.024624834,0.011631421,-0.018754644,-0.020566095,-0.014396267,0.0057305857,0.012795925,-0.015349662,-0.0124418065,0.008267298,0.015050024,-0.041486308,-0.021982567,-0.033777427,0.014042148,0.0069495696,-0.03127136,0.015104503,0.0077020708,0.038353726,-0.026340947,0.012312417,0.007504582,-0.0006465211,-0.059873216,0.013524591,0.006057464,-0.006510327,0.020811254,-0.034049828,-0.00015077689,0.019313062,-0.03767273,-0.0050972593,0.026844883,0.006329863,0.00033602922,0.0030542694,-0.009513522,0.02551013,0.0013611418,-0.0007665467,0.016139617,0.012434997,0.027239861,0.030890003,-0.05085682,-0.0044400976,-0.006244738,0.03135308,0.012223888,0.014614185,-0.05862018,0.03162548,-0.0049304147,0.03181616,-0.030290727,-0.052681893,0.022295827,-0.039279882,0.0061868536,-0.04192215,-0.020402657,-0.001718665,-0.005464997,0.030236246,-0.005529692,0.016139617,0.031571,-0.029282851,0.016847854,-0.02559185,-0.060036656,0.0044911723,0.04886831,-0.042603143,0.022622705,-0.020007677,0.02544203,0.014764005,0.00787232,-0.0108074155,0.0102762375,-0.043719977,0.031107921,-0.006850825,-0.026395425,-0.0023698679,0.012033209,-0.005533097,-0.024284337,-0.005825925,0.0068440153,-0.0045694867,0.011549701,0.015090884,-0.0021042794,-0.0068338,0.011971919,-0.021083653,0.017229212,-0.034213267,-0.030399686,0.00798809,-0.020497996,-0.020566095,0.025210492,-0.04118667,0.03797237,-0.02557823,0.017120253,0.010698455,0.009302413,-0.03740033,-0.0032789984,0.011502031,0.010609926,0.04113219,-0.015935319,-0.016303057,0.03334159,0.0438017,-0.02783914,-0.07006092,0.00984721,-0.009009584,0.009431802,-0.0314348,0.020784015,-0.022091528,-0.01588084,-0.009023204,0.020198356,-0.008117478,-0.012087689,-0.038707845,0.012652916,-0.020593336,-0.050148584,-0.009377322,-0.020184737,-0.025033433,-0.0008750805,-0.0042528235,-0.1058541,0.020838493,0.008689516,-0.00487934,-0.04159527,0.003701216,0.008117478,0.0196127,-0.0004194513,-0.014450747,0.016207717,0.018604826,0.007102794,-0.03557526,0.05134714,-0.0349215,0.029882127,0.028329456,0.025837008,-0.03729137,-0.018672924,-0.028683575,-0.030808283,0.031843398,0.0022949583,0.028683575,0.0054377574,0.01969442,0.0052266484,-0.008614606,0.02568719,-0.005325393,0.01780125,0.0006729097,0.004916795,0.0024992572,-0.0039804247,0.0047805957,0.008900625,-0.03726413,0.014069389,-0.022513745,-0.0039633997,-0.03353227,0.019299442,-0.0055807666,0.009540762,0.014096628,-0.009384132,-0.021029172,-0.0057305857,-0.032388195,-0.022363925,-0.013150043,0.023290081,0.035629738,0.0014147703,0.042330746,-0.012612056,-0.030808283,0.010718886,0.01771953,0.023344561,-0.038353726,0.06466743,-0.0196808,-0.03557526,-0.0057646357,0.021424152,0.004358378,-0.012911694,0.01754247,0.03508494,0.031843398,0.009908499,0.024134517,0.024406916,0.00199532,0.044509932,-0.0015577796,-0.010330717,0.023821259,0.013470111,0.042031106,0.025333071,-0.001576507,-0.006282193,0.03353227,0.011038953,0.024447776,0.02955525,-0.034649104,-0.034649104,0.0069870246,-0.014396267,-0.027975338,-0.042739343,0.0009040229,0.022922343,-0.021873608,0.034812544,0.007252613,0.0077088806,0.008893815,-0.010473726,0.026095787,0.022309447,0.009697391,-0.04513645,-0.03320539,0.016207717,-0.035956617,0.012394137,0.028656334,-0.020892974,0.019816998,0.024216237,-0.032524396,-0.032388195,0.008233248,0.038517166,0.015363282,-0.023943838,-0.010357957,-0.052164335,-0.025060672,-0.011222823,-0.0072049433,0.0062549533,0.011399882,0.010146848,0.026477145,-0.02741692,-0.0058395453,-0.0005694834,-0.0047908104,0.001867633,0.0237123,-0.0075658713,0.0045524617,0.002975955,-0.015867218,-0.024869993,-0.029119411,0.007123224,0.0037965558,0.01367441,0.036501415,-0.010800605,-0.011467982,0.031734437,-0.012005969,0.009200263,0.014314547,0.015022784,0.02966421,0.002671209,-0.02181913,-0.010984474,0.000089434,-0.016520975,0.040042598,0.005379873,-0.032524396,0.0052164337,0.0034083878,0.0005499047,0.0156493,-0.008451167,-0.00595191,-0.018373286,-0.01776039,0.0090981135,-0.0062311185,0.007627161,0.036583133,0.04982171,0.013381582,0.0061528035,0.024679314,0.03331435,0.031135162,0.00971782,0.035003223,-0.006414987,-0.0058225202,0.009316033,0.038380966,-0.040396713,0.014396267,0.034349464,-0.0001880189,0.025659949,0.0050768293,-0.012346467,0.012448616,0.009404562,0.028656334,-0.029609729,-0.0065954514,0.011359022,0.004307303,-0.00394978,-0.014083008,0.0064626574,0.003042352,-0.024338815,0.015921699,0.002048097,0.01959908,-0.029963847,0.016330296,-0.014764005,0.0016633341,-0.014968304,0.01176081,-0.014437127,-0.014832105,-0.030753804,-0.009942549,-0.001514366,0.0053696577,0.015472242,0.009486281,-0.00019291355,0.02361696,-0.025156012,-0.031080682,-0.023235602,0.0076067313,-0.00392254,-0.036855534,0.01370165,-0.0036501414,0.03195236,-0.01984424,-0.024257097,0.0033147507,0.023439901,0.02360334,0.010514586,-0.029773168,0.015145363,-0.031080682,0.012673345,0.0020140472,0.013606311,0.016425636,-0.030590365,0.0029708473,-0.008573746,0.01755609,0.015499481,-0.0033266682,0.029991087,-0.009390942,-0.005894025,0.008675896,0.033777427,-0.0065716165,-0.0047976207,0.013987669,-0.018468626,-0.042575903,-0.016902333,0.027294341,-0.009568001,0.014151108,0.009043634,-0.006850825,-0.028002577,0.008757615,0.00293169,-0.006643121,-0.048350755,-0.033886388,0.013347532,-0.029854888,-0.0036807864,-0.025401171,-0.00089721294,-0.024638455,-0.033096433,0.018209847,-0.020470755,-0.0060438444,-0.016275818,-0.03693725,0.0111479135,0.011549701,0.04342034,0.0061664237,-0.012870834,-0.012652916,0.028792534,-0.014723145,-0.044292014,0.02387574,0.014695905,0.036337975,-0.04331138,-0.001625028,0.00039455236,-0.047833197,-0.008784856,0.028710814,0.014845724,0.0027052588,0.06243376,-0.031080682,-0.008308157,0.014464366,0.013551831,-0.030862764,-0.0012649511,0.026436286,-0.015839979,-0.038598884,-0.0075182016,-0.011713141,0.007470532,-0.019027043,-0.007926799,0.037699968,0.003374338,-0.017828489,-0.012496286,0.018386906,0.024978952,0.0012011076,-0.0053662527,-0.006622691,0.006677171,-0.01761057,-0.042466942,-0.007511392,-0.07834184,0.013640361,0.01569016,-0.0048180507,-0.014709525,0.025101533,0.014328167,0.03522114,0.018318808,-0.005304963,0.016629936,-0.032578874,-0.050121345,-0.0011074706,0.085533164,-0.0052334582,-0.016847854,0.028874254,0.017842108,0.028901493,0.015131743,0.00487934,0.02553737,-0.0011585454,-0.004079169,0.016003419,0.015390522,-0.0078110304,0.010180898,0.012291987,-0.021315191,0.0394978,0.013218143,-0.02356248,-0.013538212,0.029991087,0.01169271,0.011004904,-0.024134517,-0.01184253,0.007334333,-0.027199002,0.013095563,0.025728049,-0.005046184,0.025210492,-0.048759352,-0.0054139225,-0.030072806,-0.0021570565,-0.029119411,0.002841458,-0.00789956,-0.026626965,-0.018768264,-0.01582636,0.014668666,-0.013327102,0.026014067,0.024679314,-0.026286466,-0.014518846,-0.010936804,-0.022023428,0.052409492,0.014941064,0.009322843,-0.009138973,0.0060166046,0.0065988563,-0.014859345,0.032061316,0.025006194,0.016194098,0.0020889568,0.021437772,-0.000793361,-0.014219208,0.0027103662,0.009200263,0.029201131,0.018060029,-0.004477552,0.04532713,-0.026776783,-0.009152593,0.014709525,0.006071084,-0.037699968,0.011250063,-0.003018517,-0.028302217,-0.0008257083,0.02758036,0.036583133,-0.00784508,0.017024914,-0.0067384606,0.002962335,0.01959908,0.00075505493,-0.030944483,-0.029745929,0.004140459,-0.005488832,0.008546507,0.028274976,-0.013252192,0.0073683825,0.010180898,-0.0035479919,-0.009138973,-0.020566095,-0.004157484,-0.015022784,-0.016657175,-0.008423927,-0.0351939,-0.013551831,0.018672924,-0.02349438,-0.022404786,0.0071436535,0.008137909,-0.0036331166,-0.026245607,0.02939181,-0.016371157,0.008015329,-0.0037863408,0.0003781659,-0.008124289,0.030835522,-0.021968948,0.024897233,0.035929378,0.0060642743,-0.02947353,-0.010991284,0.018060029,0.0062515484,-0.0017654835,0.010725696,-0.010998094,0.00033688048,0.00082528265,-0.006476277,-0.008369448,-0.008791666,-0.010712076,0.0073411427,-0.019258583,-0.023167502,-0.039824676,-0.011175153,0.011236443,-0.0058020903,0.005723776,0.0160579,-0.033259872,0.028955972,-0.019476501,0.002637159,0.03347779,-0.034403946,-0.028520135,0.018577585,-0.008219629,0.029909369,-0.012673345,0.0126324855,-0.0063673174,-0.005117689,-0.040805314,-0.0022966608,-0.013340722,-0.0038782752,-0.012836785,0.0018012358,0.018618446,0.034785304,0.001957865,-0.02585063,0.01588084,0.021873608,-0.003510537,-0.026722305,0.010991284,0.06069041,-0.026763164,0.004511602,0.02748502,-0.044346493,0.014273687,-0.042739343,0.005716966,0.0005333054,-0.028874254,-0.0236442,-0.02150587,-0.008178769,-0.015581201,-0.024515875,-0.016248578,-0.0138855195,-0.0046137515,0.005107474,-0.014559706,-0.017283693,-0.01582636,0.0038067705,-0.028274976,0.021206232,-0.0020208573,-0.017188353,-0.032360956,0.0063605076,0.025006194,-0.033913627,0.0030729969,-0.03127136,-0.0029061527,-0.011161533,0.0025928942,-0.015853599,0.016793374,-0.00791318,-0.0055569317,0.057312667,0.009070874,0.02952801,0.0048418855,-0.008457977,0.034867022,-0.046416722,0.023058543,-0.0064626574,-0.025891488,0.012142168,0.013245382,0.00046350327,0.00029772316,0.00988126,0.0035071322,0.008955104,0.012223888,-0.026967462,0.005049589,0.025646329,-0.022990443,-0.019122383,-0.03339607,-0.028656334,-0.010051508,-0.016139617,-0.003565017,-0.03366847,0.02191447,0.00794042,0.016357537,0.02349438,-0.017256452,-0.03385915,0.026844883,-0.0014147703,-0.005083639,-0.018495865,-0.029936608,0.015853599,-0.027784659,0.007266233,-0.0023170908,0.002838053,0.010786985,-0.0032108987,0.00247372,0.00032496304,-0.005066614,0.012019589,-0.0039633997,0.0071708937,-0.0044639325,-0.0015773582,-0.011290923,-0.0018659305,-0.004794216,-0.044292014,0.008417117,0.0016377966,0.018100888,0.040178794,-0.01370846,0.0073275226,-0.027771039,0.0057680407,0.012040019,-0.012074068,0.00485891,-0.014954684,0.014573326,-0.017256452,-0.013987669,-0.011277303,0.010221758,0.013013843,0.00297255,0.008628226,0.03740033,0.005866785,0.00002944778,0.048051115,0.0049882997,-0.023971079,-0.0006201325,-0.024706554,-0.03353227,0.016221337,-0.023290081,-0.007089174,-0.012972984,-0.00016897227,-0.0042255833,-0.016125998,0.054479722,0.025128772,-0.0077837906,0.017433511,0.024543116,0.010174088,0.020661434,0.009997029,-0.014600566,-0.027948098,0.009411372,0.00982678,0.02534669,0.020075778,-0.027226241,0.034376707,0.043856177,-0.008839335,0.0013688031,0.042766582,0.0053968974,0.012080879,0.02527859,0.008171959,-0.022472886,-0.0044435025,-0.021151753,-0.013211333,-0.017814869,-0.0059893643,-0.009983409,0.0038884901,-0.032824032,0.012557576,-0.032497156,0.018577585,0.0075386316,-0.016125998,-0.014600566,-0.0034696774,-0.013013843,0.024815515,-0.0025247945,-0.0021281142,0.005485427,-0.03557526,0.014287307,0.01189701,0.009091304,0.035820417,-0.0012104714,-0.03138032,-0.030481406,0.013081944,-0.002058312,0.0076067313,0.035629738,-0.008703136,0.00008852955,0.013075134,0.0012479261,-0.039906397,0.013081944,-0.0044435025,-0.03503046,0.0010095774,0.01769229,-0.031244121,0.0019714849,0.0016905739,-0.029800408,0.032687835,0.0012981497,0.010507776,-0.03742757,0.013163663,-0.016180478,-0.012291987,-0.012278368,0.023902979]},{"id":"guide-discord-js-compatibility-0","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: Overview\nFluxer SDK provides Discord.js-style APIs where it makes sense. Sections marked with the green \"Discord.js compatible\" badge offer familiar patterns — click the badge to see the full API reference.","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.027609399,-0.018778812,-0.027216382,0.00043216447,0.05718388,0.02851825,-0.05551356,0.046351366,0.037827823,0.029746426,0.02859194,0.0022767314,0.011194825,0.008689346,0.004332391,0.0739362,-0.049618315,-0.0178454,0.003068905,0.05458015,-0.004648647,0.016064543,0.033283573,0.050306093,-0.017673455,-0.025374118,-0.00012377712,0.0528607,-0.015855754,-0.04937268,0.020056115,-0.018398078,0.029328845,0.039203383,0.009592055,-0.026725113,0.0447793,0.036525957,-0.014799522,-0.013411683,-0.0057939207,-0.017931372,-0.03237472,-0.023740644,-0.02294233,0.01848405,-0.046818074,0.0044459975,-0.030360514,0.06951477,-0.056397848,0.025889954,-0.002098646,0.021210602,-0.018963039,-0.0014669029,-0.039080564,-0.01618736,-0.032792304,0.004507406,0.023814335,-0.0022199284,0.0034880203,-0.0033283574,-0.03215365,0.062145714,-0.03829453,-0.0059597245,0.059148964,0.028321741,0.050600857,-0.006478629,0.016629504,-0.041119337,-0.0033529208,-0.021259729,0.0102122845,0.029328845,0.009684169,-0.0018652924,-0.024723185,0.011010599,-0.07216763,-0.031883452,-0.03689441,-0.0075778468,0.01785768,-0.041880805,0.013988926,-0.018471768,-0.0035586404,-0.03006575,-0.085088044,0.012846722,0.039227944,-0.0031318492,-0.008167371,-0.022770386,0.008898136,0.04463192,0.076343425,0.00578778,-0.053155463,-0.057282135,0.044730175,-0.014959185,0.010273693,-0.0046425057,-0.041119337,0.015585555,-0.05138689,0.014676705,0.017538356,0.036378577,0.024600368,-0.031539563,0.056496102,0.019822763,0.017747145,-0.010623723,-0.063373886,-0.021861535,0.005284228,0.0030934687,-0.011059726,-0.033529207,0.007160267,-0.022537032,-0.08651273,-0.01931921,0.02224227,-0.04846383,0.051632524,-0.0050293813,-0.059934996,-0.0053517777,-0.04458279,-0.017071648,-0.004691633,-0.032030832,0.014406506,-0.045663588,0.041880805,-0.016224207,-0.03409417,-0.022979176,-0.044066958,-0.007977004,-0.08179653,0.029255155,-0.04853752,-0.010961472,-0.011796632,-0.008179653,-0.057773404,-0.004163517,0.03296425,0.010758823,-0.030557021,-0.028469123,-0.04804625,0.010574596,-0.009966649,-0.018299824,-0.027855035,-0.025251301,-0.0068470817,-0.017489228,-0.032178216,0.082533434,0.027658526,-0.026700549,-0.015401329,0.014406506,0.024391579,-0.0445091,0.017513791,-0.022770386,-0.005585131,-0.007676101,0.053794116,-0.0022414215,0.018422643,-0.035248656,-0.026651422,-0.021628182,-0.008806023,-0.006239135,0.001216662,-0.0016518969,-0.034806512,0.04136497,-0.018668277,0.0036630353,0.049053356,-0.0019681524,0.038024332,-0.00460259,0.011194825,-0.020006988,-0.029181466,0.04485299,0.021443956,-0.030090315,-0.037213735,0.008529684,0.0036968102,-0.007927877,0.015106566,-0.03397135,-0.0004809077,0.016826013,0.012797595,0.03849104,-0.050355222,-0.024023125,-0.015082003,0.047604106,-0.025963644,-0.0096350415,-0.05453102,0.033504646,0.04197906,0.021468518,-0.015487301,0.015941726,0.048709463,-0.022487905,0.011612405,0.056594357,0.025423246,-0.009051658,-0.021505363,-0.03465913,0.0066935597,-0.030041188,-0.012459847,-0.009377125,-0.009610478,0.030802658,-0.05551356,-0.021357983,0.016199643,0.013743291,-0.004716196,-0.01812788,-0.045074064,-0.023310782,0.03841735,0.033652026,0.028813012,0.031195674,0.025177611,-0.0060825422,-0.0021155335,-0.066763654,-0.007553283,0.004980254,-0.0096350415,-0.0019835045,-0.045024935,0.0053241435,0.018262979,0.02616015,-0.06283349,0.0075410013,-0.0073874793,0.0072708027,-0.02294233,0.0108755,0.018152444,-0.0006540038,0.057773404,-0.007823482,-0.028542813,-0.026528604,0.02252475,0.05738039,0.006576883,0.018017344,0.0011967041,-0.051681653,0.012048407,-0.0023534924,0.021726435,0.018226134,0.029746426,-0.012748468,0.010850936,0.009156053,-0.0450495,0.028444558,-0.016162798,0.011004458,0.021345701,0.05620134,0.054629274,-0.01911042,0.0009871465,0.030630713,-0.00892884,-0.018422643,-0.020191215,-0.0017194466,0.03925251,0.006008852,-0.017133057,0.03006575,0.014345097,-0.02155449,0.036452267,-0.0011990069,-0.04448454,-0.020670203,-0.06573199,0.021272011,0.031392183,0.051288635,0.04804625,-0.02168959,0.020117525,-0.024342451,0.012944977,-0.05384324,-0.009370984,-0.0076024104,-0.032472976,-0.03571536,0.015732937,0.028567377,0.050355222,-0.009045517,-0.0030151724,0.047309343,-0.025374118,-0.018606868,0.0066505736,0.028395431,-0.013337993,0.03362746,0.0066628554,-0.051829033,-0.04421434,-0.03682072,0.025939079,0.031121982,-0.02070705,-0.008769178,-0.010678992,-0.01276075,-0.050748236,-0.0029691157,-0.033725716,-0.07157811,0.043747634,0.0056925965,-0.013915235,-0.04917617,-0.0014876283,0.0017747144,-0.025349556,0.00026213884,-0.028370868,0.037705008,-0.009604338,-0.024710903,-0.010617583,-0.036378577,-0.0071725487,-0.060770154,0.028149797,0.017612046,-0.011379052,-0.0052258894,-0.031564128,0.03610838,-0.009506083,-0.026897058,-0.018655995,0.015855754,0.0033652026,0.015217102,0.00039128924,-0.06440555,-0.023347627,0.026700549,-0.033922225,-0.0019313069,-0.01785768,0.027977852,0.02168959,0.023949435,0.0076576783,-0.02237737,0.0013801629,-0.0040744743,0.036501393,0.0042157145,0.041880805,-0.004065263,0.042568583,0.041119337,-0.005800062,0.03564167,-0.01987189,0.020375442,0.019208675,0.016420715,-0.016089108,-0.039792906,0.026405787,-0.02719182,0.036943536,-0.014897777,-0.0097148735,-0.037262864,0.045688152,-0.044877555,0.007866468,0.049544625,0.03033595,-0.019724509,-0.045761842,-0.03701723,0.014774959,0.024796875,-0.014676705,-0.0015344525,-0.0013103104,-0.06239135,-0.032129087,-0.032399286,0.10601617,0.016789168,0.013350274,-0.027904162,0.051730778,-0.063128255,-0.006632151,0.0024870567,-0.0006781835,0.019798199,0.011661532,0.00012857468,-0.051485144,0.040824573,-0.00233507,-0.022794949,0.024219634,0.008345457,-0.023937153,0.009174475,0.017599763,-0.0061470214,-0.017685736,0.016101388,0.0038411207,0.016224207,0.044116087,-0.0011038233,0.026749676,0.010464061,-0.07359231,-0.00009820612,0.008449852,-0.0038349798,0.048734028,0.013718727,0.027167255,0.013104639,0.004378448,0.0054346793,0.04281422,0.007344493,-0.028886702,-0.02768309,0.03131849,-0.016703196,0.0447793,0.06086841,-0.018496333,-0.004700844,-0.032816865,-0.011919449,0.061752696,0.08798654,0.004123601,-0.014774959,-0.078603275,0.006840941,-0.054481894,0.036304887,0.048439268,-0.013067794,-0.0027311568,-0.036157504,-0.032030832,-0.013497655,-0.0077129463,-0.0023903379,-0.0051245647,-0.0097885635,-0.03237472,0.0713816,0.024133662,0.0064049386,0.004341603,-0.03890862,-0.009659605,-0.0059105977,0.030532459,-0.032669485,0.013816982,0.0073751975,-0.0056403987,0.02412138,-0.034757383,-0.019859608,-0.002209182,0.00053771085,-0.0036507535,0.008664782,0.010347384,0.010703555,-0.007455029,0.012527397,-0.0016703196,-0.06258786,-0.011084289,0.023937153,0.02071933,-0.0135836275,0.01834895,-0.042151004,-0.02991837,0.004958761,-0.019847326,0.010562315,0.021431673,-0.017305002,-0.008062976,0.035666235,-0.0019082787,-0.0149223395,-0.016531251,0.023138838,-0.029893806,0.033652026,-0.0132765835,0.006122458,0.038515605,-0.040628064,-0.024035407,-0.012822159,0.013067794,0.034806512,0.0040714038,0.00068931386,-0.0011237812,-0.01010789,-0.012429142,-0.025349556,-0.00039378396,0.022930048,-0.022008916,-0.028567377,0.024563523,0.014001207,-0.0020909698,0.004092897,0.009985072,-0.0067181233,0.0124721285,-0.0132397385,0.0059290202,-0.016592659,-0.040333305,0.0064110793,0.016826013,0.00941397,-0.01603998,-0.058559436,0.019994708,0.025767135,-0.041880805,-0.0012734651,-0.038933184,0.008750755,-0.0151556935,-0.0041819396,0.0071786894,0.015708372,-0.02328622,-0.0033713435,-0.0019113491,-0.013166048,0.013534501,0.021357983,-0.015389047,-0.004937268,-0.00054461934,-0.025128484,-0.01638387,-0.062096585,0.004264842,-0.028763885,0.0035402176,-0.0065277563,-0.0007752862,0.017489228,-0.024133662,0.008462134,-0.033209883,-0.06818834,-0.0387858,-0.0005254291,-0.006853223,0.0015114242,0.042445768,-0.00008784338,-0.028223487,-0.04183168,0.0035770629,-0.00509079,0.040603504,0.03296425,-0.017120775,-0.014111743,-0.0064172205,-0.016261052,-0.004200362,0.02168959,0.03284143,0.018815659,0.008910418,-0.024858285,0.02105094,0.0024839863,-0.004980254,-0.01750151,-0.0022890132,-0.0010662104,0.056741737,-0.00028766188,0.019601692,-0.017968217,-0.0026543958,-0.0013793954,-0.0036231196,-0.0062882616,0.010200003,-0.0051368466,-0.018766532,0.00066014467,0.019626254,-0.01882794,-0.0023473515,0.011029022,-0.009954368,0.0007246239,-0.023716081,-0.0015697626,0.00096565345,0.02036316,-0.021419391,0.00042218555,0.0129326945,0.029648172,0.0032515964,0.0022122522,0.0018330528,0.052271176,0.0061470214,-0.019601692,0.0013678812,-0.038859494,-0.011145698,-0.040013976,0.010992176,0.044656485,-0.035125837,0.044533666,-0.02503023,-0.010924627,0.03431524,-0.03409417,-0.0024532818,0.013092358,0.013423965,-0.025079357,-0.011765927,0.0104026515,0.042494893,-0.0030842572,0.02252475,-0.0054285387,0.006840941,0.03598556,-0.0027388327,-0.019994708,0.025300428,0.0029107775,0.011121135,-0.04183168,-0.018103316,-0.040554374,0.051927287,-0.0214808,0.038048897,-0.044877555,-0.055562686,0.017624328,-0.03728743,-0.009168335,0.0067918138,-0.0057969913,-0.008689346,-0.01715762,0.015843472,-0.018434923,-0.01247827,0.010150876,-0.047284782,-0.0082963295,-0.02106322,-0.034143295,0.009647324,0.006193078,-0.05006046,-0.0059259497,-0.0062944028,0.020240342,-0.0069637587,0.021493083,0.00039032972,0.011354488,-0.0031395252,0.02168959,-0.0447793,-0.019257803,0.012189648,0.0068348004,0.0043907296,-0.007921736,-0.00056227436,-0.0105193285,-0.004056052,0.045368828,0.024010843,0.015954008,-0.006951477,0.008701628,-0.0071848305,0.019933298,-0.021161474,-0.007958582,-0.0064479248,0.0018990673,-0.010648287,0.02405997,0.04205275,0.042372078,-0.016801449,0.034487184,0.0027449736,0.021443956,-0.020817585,0.01109043,0.033381827,-0.019294647,0.011280797,0.0028355517,-0.0067672506,0.0092543075,0.05418713,0.014136307,-0.04482843,-0.014897777,-0.01869284,-0.0011506475,-0.06288262,0.0023120416,0.014517042,-0.007958582,-0.00087891356,-0.005655751,-0.014148589,-0.005155269,0.015732937,-0.0069637587,-0.02237737,-0.0064724884,-0.025496935,-0.008486697,-0.023728363,0.017869962,0.024010843,-0.12124555,-0.03424155,0.007909454,-0.022954611,-0.03340639,0.03249754,0.0049464796,0.06273524,0.03814715,-0.015020594,-0.012994103,-0.011802773,0.0006920005,-0.03974378,0.012564242,0.0057171597,-0.0003811184,0.018963039,0.0049526202,-0.052615065,-0.011114994,-0.011649251,0.017329564,0.06499508,0.008554246,0.025546063,0.012699341,-0.057282135,0.035052147,0.023617826,0.042691402,0.0052320305,0.005471525,-0.011944013,0.03026226,0.024944257,0.02098953,-0.027363764,0.0074488884,-0.028542813,-0.014394225,-0.0052136076,-0.024047688,-0.04676895,0.02999206,0.007872609,-0.0057140896,0.009862254,-0.021259729,0.0075287195,-0.0099052405,0.0017793202,0.013546783,-0.009014812,0.013497655,0.014603014,-0.01645756,0.07187287,-0.021136912,0.0015137271,0.00857267,0.008591092,0.0135836275,-0.022647567,0.014418787,-0.0036998806,-0.05099387,-0.0017286579,0.0073629157,-0.024710903,0.019147266,0.004854366,0.037950642,0.041733425,0.00446135,0.035543416,0.0029614398,-0.015634682,0.013301147,-0.021812407,0.004519688,0.0128958495,0.030016625,0.000038380505,0.04156148,-0.013399402,0.0038564731,-0.0017547567,-0.02022806,0.00857881,0.0648477,-0.006828659,0.02544781,0.0039086705,0.016420715,-0.002259844,-0.025300428,0.02112463,0.02601277,-0.03109742,0.03296425,0.00034772736,0.009094644,-0.009549069,0.0062790504,0.013706446,0.013571346,-0.021173757,-0.04151235,-0.052615065,-0.0043262504,-0.012859004,-0.010586878,0.009401688,-0.02426876,-0.001555178,0.001419311,-0.012723905,0.0052351006,0.01178435,0.013190611,-0.010986036,-0.006675137,-0.0027142693,0.0028954253,-0.0062544867,0.0015843472,0.0013801629,-0.0029230593,0.036722466,0.009911382,-0.014492478,-0.003019778,0.015438174,0.02328622,-0.00076377206,0.02308971,0.021333419,0.002726551,0.042372078,0.008413007,0.01080795,0.002671283,0.015290793,-0.000822878,0.021345701,0.007510297,0.04212644,0.0009395547,-0.0061777257,0.040136795,-0.019356055,0.005397834,0.029672734,0.049470935,0.07236414,-0.024379296,-0.028444558,-0.016494405,-0.008204216,0.043673944,0.023138838,0.002315112,-0.030458769,-0.0054131863,0.010187721,0.006883927,0.019208675,-0.010298257,0.0032976528,0.00934642,-0.045221444,-0.015425893,-0.009542928,0.021001812,0.024281042,0.03844191,0.011084289,0.041807115,-0.0008520472,-0.0016626434,0.027732218,0.005057015,0.0043047573,0.027437454,-0.0075778468,0.042494893,-0.010562315,-0.031637818,0.010936908,-0.0020541246,0.022070326,0.023752926,-0.0019098138,0.00057378854,-0.014148589,-0.028911266,0.026897058,-0.026553167,0.0196631,0.05502229,0.014443351,0.0009595126,0.024452986,0.009499942,-0.0036968102,-0.02601277,0.026307533,0.044926684,0.030655276,-0.021173757,0.022365088,0.02225455,-0.0066935597,0.029328845,0.0013387119,0.0073322114,-0.009070081,-0.0033989775,0.007854186,0.01032282,-0.015843472,0.023347627,-0.0117168,-0.0069023496,-0.0041512353,-0.028444558,0.00019401345,-0.023396755,0.0058338367,-0.02021578,-0.008732332,-0.0003657662,0.006220712,0.023126556,-0.037754133,-0.014959185,0.009321857,0.035789054,0.040996518,0.012711623,-0.007203253,-0.015008313,-0.059787612,-0.008136666,-0.005342566,-0.0027526498,0.008713909,-0.0017102353,-0.009745577,-0.0037121624,-0.0026820295,0.010328962,0.016089108,-0.026528604,0.008560387,-0.026651422,0.03822084,0.017415537,-0.019933298,-0.02601277,0.0096350415,-0.0034204705,-0.04414065,-0.014148589,0.03311163,-0.005001747,0.0064417836,0.0057478645,0.007817341,-0.0004874324,0.01171066,0.0003120335,0.038859494,-0.020952685,-0.0003199015,0.017243592,0.013141485,-0.01053161,-0.042421203,0.009813127,-0.019957863,-0.044312596,0.02315112,0.019921016,-0.025988206,0.006374234,-0.012140521,0.037778698,0.00033966746,0.020670203,-0.01010789,0.009033236,0.010439497,0.009321857,-0.02078074,-0.04603204,0.0017777849,0.008198076,0.017698018,-0.028690195,0.015880316,-0.005677244,-0.009352561,-0.009493802,0.015475019,0.016924268,0.0022199284,0.024968822,-0.022094889,-0.004547322,-0.00016129407,0.013608191,0.0025515358,0.015990853,-0.009469238,-0.038122587,-0.016469842,0.017440101,0.010427215,0.02119832,0.0031441308,0.02684793,0.042765092,0.015106566,-0.020608796,0.02021578,0.007946299,0.026700549,-0.00920518,-0.021186039,-0.02999206,-0.031343054,-0.038245406,-0.04217557,-0.020092962,-0.045688152,0.028051542,0.018029625,0.005886034,-0.030090315,0.006478629,0.0060057812,0.01791909,0.030385077,-0.0007699129,0.053499352,-0.0066260104,-0.008891995,0.022610722,0.058805075,0.010887781,0.008971826,-0.0051153535,0.022205424,0.012957258,-0.008050694,0.028714757,0.014639859,-0.00043984057,-0.018815659,0.041045647,0.02802698,0.005551356,-0.010992176,-0.015487301,-0.031465873,0.020842148,-0.013718727,0.017833117,0.01346081,-0.008118244,0.010986036,0.018643714,-0.0071725487,-0.022303678,0.0026405787,0.012036126,0.024944257,0.0019313069,-0.01924552,-0.014627578,0.0005626582,-0.013546783,-0.029107774,-0.021861535,-0.030311387,0.024882847,0.023580981,-0.031662382,0.0049679726,-0.025496935,-0.020498259,-0.014959185,-0.011999281,0.011403616,-0.03296425,-0.0017885314,0.0059812176,0.0065584606,-0.0042986167,0.010138594,0.028469123,0.0014085645,0.0012312465,0.010488624,0.033308137,0.033774845,0.013632755,-0.017968217,-0.0051767626,0.035052147,-0.009985072,-0.028444558,-0.021701872,0.019736791,0.011440461,0.0004797563,-0.011569419,0.022229988,0.021738717,0.04129128,-0.0015528752,-0.0053517777,0.0015052834,-0.0009641183,-0.009899099,-0.03409417,0.023323065,-0.0108632175,0.01882794,0.008075258,0.031932577,0.025496935,-0.034216985,0.027904162,-0.00008251808,-0.0075962692,-0.0057632164,0.041954495,0.024465268,0.0125888055,0.016162798,0.015806627,0.00097025913,-0.032399286,-0.02071933,-0.0177103,0.02461265,0.0045012655,0.016347025,-0.00020149765,-0.023458164,0.011108853,0.0129326945,0.013915235,-0.0012596481,0.029304283,0.0036998806,0.018152444,0.024809157,-0.04777605,-0.004832873,-0.01010789,-0.013473092,-0.002490127,-0.019884171,-0.008713909,-0.002362704,-0.025644317,0.020940403,0.037950642,-0.011250094,-0.0096350415,-0.0062176418,-0.009383266,0.01674004,-0.02385118,0.01645756,0.015290793,0.021812407,-0.0067733913,0.009678028,-0.011802773,-0.01833667,0.0076883826,0.02699531,-0.027781343,0.007510297,-0.00080061733,-0.0033774844,0.020866713,0.02866563,-0.02608646,0.02462493,-0.0013241274,-0.005754005,-0.009856113,0.009499942,0.038269967,0.010335102,-0.008388443,0.014934622,-0.025251301,0.02225455,-0.009002531,-0.0107404,-0.0021155335,-0.0061777257,-0.023114275,-0.020559669,-0.0073936204,-0.0029061718,-0.03917882,0.033774845,-0.00066705316,-0.0031993988,-0.008849009,-0.018520895,0.03207996,-0.00009998121,0.015929444,0.004498195,-0.02643035,0.0100219175,-0.049544625,-0.033995915,0.009659605,-0.0437722,0.020264907,-0.050085023,-0.009438533,0.0063435296,0.033259008,0.010593019,-0.039424453,0.0012381551,-0.014001207,-0.0020065329,0.009186758,-0.030483332,-0.0014454097,0.005382482,0.0033498504,0.00008347759,-0.029623609,0.00061447185,-0.02810067,-0.008339316,-0.01032282,-0.041586045,-0.0214808,-0.007817341,0.0045657447,-0.008812164,-0.018262979,-0.019368337,0.009088503,-0.020694768,0.029034084,-0.009014812,0.04288791,0.006533897,0.031908017,0.034904767,-0.0055329334,-0.004854366,0.030409642,-0.014860931,0.015978571,0.0039639384,-0.011532574,-0.038024332,-0.029599044,0.008290188,0.027044438,0.0019543353,0.007651537,0.01234317,-0.0118580405,0.022782667,0.011630828,-0.031146547,-0.011065867,0.027240947,0.00080906105,-0.060819283,-0.0061593032,-0.014246843,-0.005244312,0.029083211,-0.014603014,-0.007774355,0.04755498,0.023273937,0.03610838,0.024391579,0.0020403075,-0.0047960277,0.020301752,0.0033897662,-0.009960508,-0.0065523195,-0.01387839,-0.010414934,-0.022008916,0.012109817,-0.0125089735,0.0019267013,-0.012214212,0.0065400377,-0.0019758283,-0.0031594832,-0.03544516,0.03871211,-0.013313429,0.020535104,0.016973395,-0.019773636,0.031146547,0.0108632175,0.003884107,-0.011428179,0.019134983,-0.023298502,0.01088164,0.022991458,0.009420111,0.0034634566,-0.013399402,-0.0126624955,0.027240947,0.010844795,-0.0036599648,0.028469123,-0.0047223372,-0.016703196,-0.019835044,-0.0026513252,-0.008001568,-0.0050170994,0.009506083,-0.0029123127,0.0037797121,0.0126256505,0.023384474,0.03689441,0.00045557658,0.014799522,-0.010986036,-0.019356055,-0.016089108,-0.00027039065,0.009567492,-0.005185974,0.024588086,0.027511146,0.0010815626,-0.019687664,0.031146547,0.023765208,0.006589165,0.010912345,-0.00096488587,0.0019881101,0.03348008,-0.0036169786,-0.022033479,0.03026226,0.022340523,-0.0076453965,0.0010186186,0.0031932578,0.0072339573,0.066272385,0.024649495,0.010378088,-0.00090885034,0.031736072,0.014836367,-0.00522896,0.03355377,0.006699701,0.015990853,0.013423965,0.002503944,0.012349311,0.02315112,-0.004559604,-0.02601277,-0.027339201,-0.005474595,-0.018091034,-0.034831073,-0.005830766,0.0038319095,-0.02878845,-0.035469726,0.015560991,-0.011913309,0.03382397,0.020657923,0.0070190267,0.0011583236,-0.018901631,-0.030360514,0.00079370884,-0.025767135,0.027142692,-0.034462623,-0.008056835,-0.008584951,0.00047591826,0.014517042,-0.022819512,0.027535709,-0.01541361,-0.0052903686,-0.005014029,0.007964722,-0.036992665,-0.004092897,-0.013792418,-0.021431673,0.0054131863,-0.03603469,0.0012151267,0.008320893,-0.020940403,-0.039080564,-0.00578778,0.0041512353,-0.0026482549,-0.008652501,-0.010537751,0.009874536,-0.022340523,-0.028149797,0.0077497913]},{"id":"guide-discord-js-compatibility-1","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: member.roles (GuildMemberRoleManager)\nmember.roles is a manager with add(), remove(), set(), and cache. Use member.roles.add(roleId), member.roles.remove(roleId), member.roles.set(roleIds), and member.roles.cache.has(roleId) instead of the old member.addRole() / member.roles.includes() pattern.\n\n```javascript\n// Discord.js style\nawait member.roles.add(roleId);\nawait member.roles.remove(roleId);\nawait member.roles.set(['id1', 'id2']);\nif (member.roles.cache.has(roleId)) { ... }\n```","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.0051349695,0.008188031,-0.00004846279,-0.013887482,0.0028011682,0.04484297,-0.0033929644,0.014494453,0.018099856,0.018755384,0.03178097,-0.03729226,0.04671244,0.009656899,0.003972621,0.011137906,-0.05181099,-0.0019043696,-0.016655266,0.0397687,0.020248532,0.044163164,0.0056023365,0.037559327,-0.035082888,-0.0010826834,0.00081258157,0.04734369,-0.013001305,-0.022494322,0.037972067,-0.020976895,-0.010288148,0.03216943,-0.0241817,-0.027993474,0.039088894,0.040812686,0.013134839,0.02112257,0.017383631,0.00069725723,-0.0050317845,-0.028988905,-0.0077388724,0.03619971,-0.010093917,-0.005905822,-0.031465344,0.01967798,-0.006579559,0.022688553,0.0028922139,0.05142253,-0.01413027,0.008643258,-0.021535309,-0.018294087,-0.027143715,0.037753556,0.0075871297,-0.045352828,-0.03547135,0.0019483749,0.003480975,0.009584062,-0.0528307,-0.034403082,0.019641561,0.046809554,0.010197102,-0.015878346,-0.009851129,-0.034985773,-0.015392768,-0.01760214,0.026512466,0.019180264,0.042342253,-0.006864835,-0.012109059,0.03418457,-0.057200886,-0.019410912,-0.017068006,-0.027556455,-0.017796371,-0.025080016,0.03702519,-0.041516773,-0.010002872,-0.029547317,-0.09604699,-0.016315363,-0.02192377,-0.034937214,0.026124004,0.023938911,-0.024982901,0.045134317,0.07885759,-0.032485053,-0.06336771,0.012637123,0.031028325,0.008958883,-0.015344211,0.026099727,-0.0712826,0.0057176608,-0.04098264,0.027629292,0.0052806423,0.012339707,-0.017505025,0.009244159,0.031246835,0.013426185,-0.010385263,-0.027750686,-0.06293069,-0.026779532,0.026293956,-0.041613888,-0.034281686,-0.030591307,-0.032485053,-0.06846626,-0.051568203,0.005365618,-0.011326067,-0.021972327,0.070165776,-0.01433664,-0.055792715,-0.01703159,-0.01843976,-0.041443937,-0.014627986,-0.016813079,0.0027237795,-0.008145543,0.004995366,0.017092286,-0.027677849,-0.009863269,-0.023902493,-0.010373124,-0.09196815,0.013620415,-0.0706028,-0.014712961,0.02232437,-0.018136274,-0.05656964,-0.043507636,-0.017468607,-0.010876909,-0.0031774899,-0.028551886,-0.03605404,-0.028042031,0.004364117,-0.051131185,0.0076114084,-0.033868946,-0.0077813603,0.022372928,-0.024363792,0.041055474,0.036806684,-0.030615585,-0.014045294,-0.018002741,0.0076114084,-0.030712701,-0.025638428,-0.03255789,0.0028193775,0.018597573,0.034160294,0.008406539,-0.015186398,0.0032746051,-0.05210234,-0.007842057,-0.03629683,-0.03661245,0.02561415,0.017881347,0.029935779,0.057540793,0.0018876778,0.024691556,0.06365905,-0.015065005,0.03496149,0.023404777,-0.014312361,-0.038384806,-0.031805247,0.027823523,0.039671585,-0.01967798,-0.015186398,-0.0027177099,-0.014482313,-0.0034293826,-0.00880107,0.0071197622,0.0017996671,-0.019908627,-0.0062457253,0.028916068,-0.015756952,-0.022615716,-0.064435974,0.009068137,-0.005141039,0.024145281,-0.05860906,-0.0013899622,0.02930453,0.015550581,-0.0019711363,0.009201671,0.03911317,-0.005981693,0.024642996,0.06793212,0.0119694555,-0.032897793,-0.045789845,-0.026803812,-0.0010250212,0.024303094,-0.016436758,0.038190577,0.00230497,0.034354523,-0.044745855,-0.016315363,-0.036345385,-0.0024885784,0.032339383,-0.018500457,-0.010197102,-0.003565951,0.018281948,0.012892051,0.02724083,0.05016003,0.02787208,-0.006433886,-0.020345647,-0.035277117,0.015004308,0.054967236,-0.03607832,0.06453309,-0.05574416,0.024023887,0.029571597,0.031683855,-0.05656964,0.020454902,0.017541444,0.019593004,-0.018876778,-0.0014999756,0.053316277,0.015404908,0.025322804,-0.04571701,-0.014057434,0.0030940315,0.019617282,0.06312492,-0.016934473,0.0050742724,0.0016949647,-0.03870043,0.035519905,0.020199973,0.016752383,0.030834096,-0.022894923,0.01865827,0.017699257,0.018973894,-0.04608119,-0.013474742,0.0051956666,-0.0001944202,0.019119566,0.023259105,0.02867328,-0.03602976,0.024885785,0.047222294,-0.012005874,0.036588173,-0.01760214,-0.028406214,0.020467041,-0.0054809423,-0.045765568,0.0073261326,-0.014203107,-0.029255971,-0.0074232477,0.052393682,-0.0072593656,0.014045294,-0.047659315,0.003480975,0.007441457,0.022166558,0.061522517,0.03365044,0.04775643,-0.040861245,-0.0068709045,-0.03602976,0.02192377,-0.038967498,-0.0071622506,-0.044745855,0.023708263,0.023744682,0.051325414,0.0011593134,0.00040856694,0.019423053,0.0011130319,0.015684115,0.0072593656,0.050742723,0.012819214,0.014591568,0.0012807075,0.0009999836,-0.021389635,-0.021972327,-0.007107623,0.004178991,-0.038821824,0.00035185314,0.0040242136,0.0007742666,-0.0026388038,0.003113758,-0.031683855,-0.05676387,-0.017080147,0.0052169105,0.025080016,0.0012966405,0.024157422,0.01064626,-0.05244224,0.018718965,-0.042730715,0.025104295,0.011356415,0.0057176608,-0.00983292,-0.027483618,0.04447879,-0.024424488,-0.009335204,0.059871558,-0.055549927,0.010476309,-0.0057449746,0.011204673,-0.025711264,0.009529435,-0.0012321499,0.032509334,-0.00051288994,0.031635296,0.013596136,-0.014093852,-0.01331693,-0.0034779403,-0.05433599,0.008855698,-0.04899465,-0.035592742,0.029984336,0.032533612,-0.015307792,0.015671976,-0.048897535,-0.011295719,0.05792925,0.04593552,0.025686987,-0.0421723,0.039210286,0.047416527,-0.025881216,0.0127706565,-0.011775225,-0.017990602,0.0018102891,0.030227125,-0.02129252,-0.034111734,0.046979506,0.036393944,0.039695863,-0.0029347017,0.039574467,-0.019180264,0.0291103,-0.019338077,0.013596136,0.02437593,-0.01434878,-0.02928025,-0.03051847,-0.06501867,0.05064561,-0.0145065915,-0.031052604,-0.010555215,0.018718965,-0.029353088,-0.08220807,0.032873515,0.03236366,0.008661468,0.0033626158,-0.0066888137,0.028042031,-0.024412349,0.014482313,0.00023937394,0.02151103,0.0068891137,-0.025759822,-0.0013323,-0.0019089219,0.0034111736,0.007939173,-0.062250882,0.025832659,0.023137711,0.0058663688,0.017638559,-0.0118359225,0.022154419,0.004112224,-0.024533743,0.020321367,0.003769286,-0.020017883,-0.021013314,-0.004446058,0.019544447,-0.016558152,0.0049680523,-0.012831354,0.03173241,0.024060305,0.003420278,0.0011062035,-0.033261977,0.01903459,0.02643963,0.053850412,-0.0044187442,-0.0051137256,-0.016448896,0.01677666,-0.02682809,-0.015999738,0.026925206,0.028600443,0.00920774,0.009244159,-0.028479049,0.038797546,0.044745855,-0.0036782403,-0.013814646,-0.027410783,0.03794779,-0.06244511,0.035349954,0.028964626,-0.011993734,0.030567028,-0.006907323,0.03955019,0.0053534787,0.00057662185,-0.003745007,0.005963484,-0.048023496,-0.026585301,0.07842057,-0.026609581,0.017383631,-0.02435165,-0.03522856,0.00450979,0.04918888,-0.006634186,-0.024048166,0.0039847605,-0.020770526,0.013292651,-0.024776531,-0.040812686,-0.0076903147,-0.0063003525,-0.027532175,-0.010433821,0.023890354,0.028867511,-0.007939173,0.003216943,0.024011748,0.025152853,-0.021219684,0.009960384,0.02600261,0.027750686,-0.022227256,0.04078841,0.0090317195,-0.029571597,-0.032485053,-0.0015333589,0.0192531,0.040836968,-0.028721837,0.012175825,0.043264847,-0.031246835,0.00009687816,-0.030348519,-0.002603903,-0.009911826,0.020127138,0.012254732,0.013341209,-0.0008763135,-0.040011488,-0.027799243,-0.028551886,-0.030275682,-0.042026628,0.004342873,-0.020661272,-0.0043003852,0.008637188,0.0026160423,-0.012807075,0.004752578,0.008436888,-0.05715233,-0.030299962,0.021632424,0.022567159,0.0038390877,0.0005614476,0.011180394,0.015356351,-0.009365553,0.0043155593,0.039671585,0.0090013705,-0.029328808,0.016946612,0.0066523952,-0.009116695,0.0045128246,-0.053801853,0.0233805,0.017140843,-0.049261715,-0.022372928,-0.03013001,0.0023535276,-0.0074718054,0.008139472,0.007441457,0.009644759,0.030227125,-0.008928535,0.0060484596,-0.014567289,-0.0067130923,0.019908627,-0.02663386,0.003103136,0.014907192,0.0034111736,-0.023671845,-0.009984663,-0.0056660683,-0.013450463,0.0458384,-0.009232019,0.030445633,0.0057115913,0.02355045,-0.008910325,-0.023392638,-0.054578777,-0.06686386,-0.027095158,0.0076903147,-0.017165123,0.038409084,0.002119844,0.016764522,0.0107373055,0.044503067,-0.016970892,0.018002741,0.03236366,-0.013001305,-0.00030538198,-0.004467302,-0.022627855,-0.02702232,0.02743506,0.009923966,-0.02006644,0.0030120905,-0.030858373,0.006737371,-0.002952911,0.03314058,-0.004591731,0.023052735,-0.00758106,0.02969299,-0.014397337,0.009080277,-0.012697821,0.015125701,-0.0030864445,-0.00922595,-0.03806918,-0.01865827,-0.03935596,-0.010075708,-0.02047918,0.015465605,-0.03627255,-0.007860267,0.033067744,-0.031878084,0.02192377,-0.045595616,-0.040642735,-0.004588696,0.023817517,0.025007179,-0.0033717204,-0.007708524,0.021850934,-0.004036353,0.018925337,-0.016218249,0.03095549,0.023283383,-0.020224253,0.028139146,-0.039016057,-0.03382039,0.010397403,-0.0123700565,0.019957187,-0.020928338,-0.0011843509,-0.005347409,-0.020989036,0.035131443,-0.025517035,-0.023210548,-0.010725167,-0.0015963321,-0.036539618,-0.0011805574,-0.0022639995,0.006804138,-0.020588435,-0.016473176,0.028430492,0.007927033,0.0048496933,0.034767263,-0.034524474,0.016169691,0.018136274,-0.005037854,-0.014567289,-0.021183265,-0.023259105,0.045789845,0.017747814,0.009717596,-0.0053747226,-0.051665317,0.005596267,-0.04612975,0.005338304,0.014615847,0.010992234,-0.015562721,-0.029668711,0.02969299,-0.0133047905,-0.0056630336,0.034136012,-0.018306226,-0.0041061547,-0.057832137,0.008394401,-0.013535439,0.01785707,-0.026973763,0.0006953604,-0.004339838,0.013583997,0.008321564,0.029814385,0.009766153,0.05224801,-0.0012913295,0.042536482,-0.019180264,0.015198538,-0.008691816,0.004919495,0.004752578,-0.038991775,-0.022457903,0.0070529957,0.014045294,0.008740373,-0.0072411564,0.037195146,-0.049310274,0.007884545,-0.004873972,0.0076781753,-0.0058876127,-0.028381934,-0.019520167,0.010615912,-0.040205717,0.059240308,0.027799243,0.021620285,-0.012697821,0.010057499,-0.006470304,0.024121003,-0.011241091,0.00035621575,0.0010644743,0.015259235,0.012491451,0.0065674195,-0.00921381,-0.023246964,0.03853048,0.014919331,-0.00942625,0.024982901,0.0018011846,-0.021668842,-0.0196537,0.0047616824,-0.008892116,-0.0095658535,-0.019872209,-0.007757081,-0.006409607,-0.010227451,0.028770396,-0.024193838,-0.050936952,0.017371492,-0.0032472915,0.035155725,-0.046761,-0.0010614394,0.018973894,-0.077109516,-0.046202585,0.032023758,-0.01698303,-0.029620154,0.020989036,0.0066463253,0.067155205,0.03836053,-0.01723796,-0.015137841,-0.06482443,-0.007969521,-0.039283123,0.0405699,0.0021335008,-0.024242397,0.028017752,0.018718965,-0.013547579,-0.0107373055,0.016096855,-0.010555215,0.0061516445,0.001421828,-0.009395901,0.030882653,-0.052490797,0.031101162,0.016691685,0.025055736,0.022700692,-0.023878215,0.0011426217,-0.041298263,0.030664144,0.02952304,-0.002857313,0.03607832,-0.044308838,0.0031289323,0.010433821,-0.014433756,-0.036393944,0.016108993,-0.006415677,0.01865827,0.01595118,-0.047635034,0.013171257,-0.022433626,0.033116303,0.018755384,0.010773724,-0.004449093,-0.011368555,-0.011453531,0.05593839,-0.0065249316,-0.005405071,0.062347997,0.018063439,-0.0061577144,-0.016922334,0.026075447,-0.000026578664,-0.028649002,0.001963549,0.0033444068,0.02069769,0.0020166591,-0.013705391,-0.011574925,0.017480746,0.0036327178,0.017517164,-0.023781098,0.0100696385,-0.008455098,-0.019180264,0.00032188397,0.0095355045,0.047489364,-0.0040879454,0.0069922986,-0.017662838,-0.041978072,-0.004136503,-0.0002913458,0.009584062,0.043119173,0.0061091566,0.020576296,-0.009814711,0.010961885,0.007933103,-0.019568725,0.0030378867,0.023866074,-0.01434878,-0.030008616,0.0062335855,0.007684245,-0.01926524,0.0042791413,-0.012157616,0.035131443,-0.008285145,-0.015489884,-0.012018014,-0.00076060975,0.012133338,-0.029401645,-0.010136405,-0.046736717,-0.006373189,0.022215115,0.018306226,-0.0028618653,0.0012230453,0.0059786583,-0.0005883819,0.005474873,0.011210742,0.014943611,0.030979767,-0.009930035,0.01823339,0.009547644,0.039695863,0.00013893931,-0.010518797,0.026269678,0.026196841,0.03093121,-0.011738807,0.016278945,0.01640034,-0.043264847,0.012327569,-0.029595876,0.03789923,-0.035277117,0.04319201,-0.009857199,0.050791282,0.029425923,0.0005015093,-0.010367054,0.02234865,0.03972014,-0.004792031,0.0041911304,-0.0010272973,0.0044581974,0.058123484,-0.015829787,0.01311056,0.012515729,-0.03338337,-0.008564352,0.015854066,0.0068769744,0.002169919,-0.010621982,0.016691685,0.033261977,-0.0033019187,0.012624984,-0.026730975,0.009256298,-0.03972014,-0.015295654,0.040399946,0.038651872,0.03935596,0.030202845,-0.0052108406,0.04030283,0.022627855,-0.014712961,0.020843362,-0.018536875,0.0033110233,0.034937214,-0.00337779,0.010834421,-0.050742723,-0.015052865,0.0044157095,0.022615716,0.004421779,0.0007776808,-0.0115688555,-0.006084878,-0.024121003,-0.008442958,-0.026585301,0.005920996,0.013535439,0.035689857,-0.020042162,-0.0034779403,0.025929775,-0.031125441,-0.0032108733,0.005138004,0.009996802,0.013875343,0.04037567,0.000084881016,0.051373973,0.02130466,-0.021013314,0.005845125,0.014895053,0.004057597,-0.02600261,0.0041273986,0.00943232,-0.007496084,0.028139146,0.00655528,-0.004798101,-0.01084049,0.014154549,-0.04523143,0.017869208,-0.051471088,0.0041850605,-0.007829918,-0.0142395245,-0.0036721707,-0.008273006,0.018876778,-0.0299115,0.0088678375,0.007951312,0.012952748,0.0397687,-0.0019377529,-0.008515795,-0.044818692,-0.037170865,-0.01782065,-0.03355332,0.0016555117,0.0059240307,0.018184833,-0.006719162,0.004792031,0.013486882,0.013171257,-0.032436498,0.028430492,0.016752383,0.01086477,0.017140843,0.04100692,-0.02069769,-0.009614411,0.007417178,-0.009596202,-0.01944733,-0.027799243,0.004691881,0.0029544283,-0.0011661418,0.049868684,-0.0013497503,0.02826054,0.00552343,0.0058147763,0.012989166,-0.008691816,-0.0102031715,-0.013899622,-0.002675222,0.011022582,-0.02641535,-0.010215311,-0.011781295,-0.022955619,0.05516147,-0.010591633,-0.029620154,-0.0004305696,-0.017541444,0.043337684,-0.010360984,0.0054718377,0.0033717204,-0.00032453946,-0.0163882,0.011417112,-0.010889049,-0.036418222,-0.026366793,0.041443937,0.014203107,-0.04734369,-0.0026190772,-0.027556455,0.018682549,-0.012819214,-0.004855763,0.024630858,-0.00073557225,0.0085704215,0.0045158598,0.028406214,0.018269809,0.05142253,-0.01597546,0.0015735707,0.0074596656,-0.008898186,-0.014858635,-0.0074596656,-0.022749249,0.00085051724,0.006858765,0.010403472,0.037559327,-0.0031046534,-0.016946612,0.012855632,0.0073079234,0.0028315168,-0.017347213,-0.0052927816,-0.04013288,-0.009347344,-0.026658138,-0.03054275,-0.0397687,-0.04671244,0.026876649,0.008024149,-0.0056235804,-0.012722099,0.020746248,0.0042336183,0.0393074,-0.0035173933,0.008364052,0.04758648,0.0035568464,-0.007599269,0.034524474,0.07273933,0.016934473,0.0049862615,-0.0042123743,0.03335909,0.0013323,0.013875343,-0.013899622,0.00030026067,-0.00943232,-0.021814516,0.01433664,0.02029709,0.008904255,-0.031222556,-0.024910064,-0.025517035,0.051471088,0.011587065,0.0299115,-0.0020060372,0.010002872,0.0028922139,0.015429187,0.0188525,-0.0022215117,0.019799374,-0.043798983,0.0023778065,0.007763151,-0.0091349045,0.012224384,-0.0040272484,-0.010276008,-0.04139538,0.005614476,-0.0058694035,0.025517035,0.012157616,-0.042317975,0.029061742,0.021778097,-0.019204542,0.004206305,-0.0021350184,-0.008109124,-0.038142018,-0.028333377,0.0032624658,-0.0031683852,-0.051519644,0.016485315,0.038991775,-0.009729735,-0.004439988,0.019605143,0.02358687,0.023538312,0.009347344,0.0035932646,0.02971727,0.05103407,-0.036126878,0.00048216208,-0.003772321,0.00052085647,0.0062942826,0.017869208,0.023477614,0.0040029697,-0.0016555117,0.03255789,0.009092417,-0.008436888,0.025468476,0.027969195,0.005763184,-0.027507897,-0.0015530854,-0.0031744551,0.04030283,-0.002981742,0.056375407,0.016813079,-0.016922334,0.032533612,0.0046493933,-0.015259235,0.019932907,0.02602689,0.011319998,-0.00963262,-0.009274507,0.00097570487,0.024339512,-0.016837358,0.008327633,-0.011793435,0.009043858,0.007210808,-0.0029407714,0.0045188945,0.00027408506,0.014385198,0.039404515,0.03605404,0.03379611,0.04712518,0.013620415,0.033626158,0.028576165,-0.027774964,0.004631184,0.004075806,-0.05962877,-0.026682418,0.00235808,-0.008309425,-0.007113693,-0.010415612,0.01864613,0.055355698,-0.004755613,0.026124004,0.005939205,-0.035180002,0.0012018014,-0.013244093,0.030178567,0.007004438,-0.009055998,0.012952748,0.014712961,0.0055841273,-0.024691556,0.011137906,0.026900927,-0.019216683,-0.004770787,-0.01661885,-0.06851482,0.048242006,0.012794935,0.010124266,0.020175695,-0.0033929644,-0.003153211,0.020867642,0.027483618,0.015659835,-0.0033140583,-0.015222817,0.0088678375,-0.037049472,0.021280382,-0.0038967498,0.023987468,0.0030227124,-0.0041547124,-0.031052604,0.005550744,-0.016837358,0.0008065119,-0.0106037725,0.04222086,0.028867511,0.012843493,0.0059027867,-0.01148388,0.016218249,0.033674717,0.03809346,-0.009547644,-0.0058056717,0.02787208,-0.033310533,-0.02070983,0.0051106904,-0.03255789,0.020187834,-0.04120115,0.032752123,-0.0071561807,0.031441066,-0.011241091,0.0067677195,0.019192403,-0.006907323,0.006330701,0.05103407,-0.0066523952,0.0063367705,-0.01636392,-0.009122765,-0.009990732,-0.011356415,0.027993474,-0.020187834,-0.008643258,-0.029207414,-0.016582431,-0.016958753,-0.040861245,-0.02558987,0.01311056,-0.011659901,0.0073625506,0.031392507,0.0077934996,-0.0007936138,-0.0040484923,0.02009072,0.0413711,0.05943454,0.017298656,0.0073018535,0.017104425,0.020042162,0.0055203955,0.049043205,-0.0015128737,-0.017881347,0.011150045,-0.0426336,0.0088678375,0.04552278,-0.024460906,-0.014579428,0.03156246,0.023683984,0.014652265,0.005019645,0.006579559,-0.008449027,0.0055537787,0.012048362,-0.03178097,0.00717439,-0.019823652,-0.008588631,0.0065188617,-0.038967498,-0.010591633,0.047974937,0.019799374,0.015137841,0.011738807,-0.045498498,0.0025568628,0.010002872,-0.011137906,-0.0061304006,-0.0372437,0.015878346,-0.025007179,-0.014627986,0.020151416,-0.015271375,-0.0055203955,0.031416785,0.03872471,-0.0016615813,0.019799374,-0.03258217,0.06317347,-0.020467041,0.024934342,0.017456468,0.008673606,-0.044163164,-0.008212309,0.02908602,0.020345647,0.011975526,0.009074207,0.011222882,0.0012996753,-0.00091652526,0.009881478,-0.018148415,-0.025007179,-0.00061304006,0.028794674,-0.01065233,0.024910064,0.015198538,-0.062347997,-0.0029620153,0.012977026,-0.009310925,0.023817517,-0.016497456,-0.013122699,-0.0013603723,0.021450333,0.0022215117,0.0057115913,-0.060794152,-0.020017883,0.0059999023,-0.044236,0.017942045,-0.0024218117,0.0090317195,-0.002579624,-0.009735805,0.006907323,0.025468476,-0.033917505,0.010876909,0.0188525,0.00941411,-0.012588565,-0.029134577,0.00481024,0.031465344,-0.0056569637,-0.006573489,-0.015137841,0.008103054,0.028916068,-0.011465671,-0.003745007,-0.020989036,0.062153768,-0.014373058,0.008558283,0.0025735544,0.0024961657,0.034500197,0.025274247,-0.013146978,-0.0077267326,-0.0014703857,-0.013559718,-0.002397533,-0.021450333,0.0067252317,0.030154288,-0.01189662,-0.030615585,0.02232437,-0.043337684,0.014591568,0.015283514,0.012479311,-0.0022806912,-0.027580734,0.025832659,-0.015611278,0.029474482,0.015671976,0.0047859615,0.00026744633,-0.015550581,-0.0483634,0.022797808,-0.022482183,0.021061871,-0.034136012,-0.009171322,0.00011968697,0.015198538,-0.011404973,-0.0110347215,0.024412349,0.025031459,0.016946612,0.03729226,-0.0026843264,-0.024363792,0.0046372535,-0.017529305,-0.012697821,0.019580863,-0.0066706045,-0.017310794,-0.0032655005,0.0031683852,-0.04071557,-0.009505156,0.004100085,-0.016436758,-0.003110723,-0.036345385,0.025565593,-0.036758125,-0.031586736,0.007945242]},{"id":"guide-discord-js-compatibility-2","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: guild.members.me\nguild.members.me returns the bot's GuildMember in that guild. Use guild.members.fetchMe() to load it when not cached. Same as Discord.js.\n\n```javascript\nconst me = guild.members.me ?? await guild.members.fetchMe();\nif (me?.permissions.has(PermissionFlags.BanMembers)) {\n await message.reply('I can ban members here.');\n}\n```","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.006123083,-0.0034042948,0.016765863,0.0044064126,-0.0044964575,0.027164647,-0.051401366,0.014384017,0.015023049,0.007284959,0.0050134924,-0.002956973,0.024027582,-0.0033026307,0.008202841,0.020367676,-0.051122516,0.012920055,0.00010847196,0.016940143,0.03850455,0.06985195,0.009957272,0.025096508,-0.003991042,-0.018160112,-0.027559685,0.024190245,-0.01230426,-0.043779463,-0.010288406,-0.019821594,0.004749166,0.018438963,-0.022424195,-0.004940875,0.044964578,-0.004374461,-0.0073081963,0.002852404,-0.033624675,-0.013082717,-0.028930698,-0.018264681,-0.014023836,-0.006704021,-0.01613845,0.008958059,0.014442111,0.05846557,-0.04438364,0.01967055,0.0051877736,0.075336,-0.009597091,-0.016103594,-0.021146132,-0.017916119,-0.029232785,0.021506313,-0.021622501,0.0033055355,-0.029976385,0.018764287,0.000251074,0.026723133,0.003375248,-0.006872493,0.011711704,0.009114913,0.03225366,0.017033093,0.017474607,-0.035832237,-0.040502977,-0.012606348,0.024190245,0.0041275625,-0.0008060511,-0.027815297,0.011264382,0.024190245,-0.08188897,-0.023783589,-0.002848047,0.0019621172,0.00405204,-0.028372997,0.06260184,-0.021273939,0.01007346,-0.056792468,-0.0788681,-0.005350436,0.026606947,-0.018729432,-0.017311944,-0.033857048,-0.015139236,0.06571567,0.08523518,-0.004188561,-0.06394962,-0.050146542,0.046405304,-0.009329859,0.00951576,0.0195776,-0.098062284,0.039294627,-0.03123121,0.05976687,0.040665638,0.012385592,-0.028047672,-0.017834786,0.031951573,0.007935609,-0.0012163382,-0.025166221,-0.048148114,0.019321987,0.016661294,-0.051401366,0.016940143,-0.025235934,-0.026235146,-0.05098309,-0.043872416,-0.015499418,0.00029137655,-0.019902926,0.045475803,0.005423053,-0.039550237,-0.0118337,-0.010939057,-0.045104,-0.020774331,-0.0024196054,0.005277819,-0.011479328,0.016487012,0.0069247773,-0.04930999,0.00041500735,-0.06353135,-0.034554172,-0.07779918,-0.016823955,-0.062044144,-0.024167009,-0.024747945,-0.03085941,-0.03931786,0.005103538,-0.0141748795,-0.022296388,-0.033508487,-0.033949997,-0.019426556,-0.057396643,-0.0010711038,-0.006547168,-0.00736629,0.005295247,-0.002885808,-0.020855663,-0.021773545,0.046730626,0.02525917,-0.0020202107,-0.0016716482,-0.04735804,0.012850341,-0.012211311,-0.022238296,-0.01211836,-0.00661688,-0.013663654,0.012827104,-0.017311944,0.005510194,-0.020553576,-0.02200592,-0.018903712,0.0021015422,-0.0019301655,-0.012617967,0.002606958,0.012188072,0.055584118,0.002522722,-0.0022859897,0.08040178,-0.0074360026,0.05177317,0.0010652945,0.014232974,-0.037272964,-0.016324349,0.034716837,0.032207187,-0.024004346,-0.00090916746,-0.004197275,0.023249127,-0.023411788,0.012141597,0.03178891,0.0043134624,-0.046498254,0.018775906,0.005045444,-0.031347398,-0.050750718,-0.08793073,0.026118958,-0.036250513,0.007122296,-0.07728795,0.029093359,0.0662269,0.046265878,0.0058413283,-0.0013158239,0.06450732,-0.023795208,-0.010503354,0.0398988,0.025468308,-0.023655783,-0.03555339,-0.044453353,0.014697724,0.020669764,0.01620816,0.06497207,0.011206288,-0.004232131,-0.013663654,0.00475207,0.013117573,0.019229038,0.021587644,-0.05790787,-0.0018778811,-0.02711817,0.040061463,0.04482515,0.012234548,0.046684153,0.05391102,-0.016707769,-0.020367676,-0.010671825,-0.03569281,0.06171882,0.03236985,0.010561448,-0.054654617,0.036970876,0.004531314,0.00024235994,-0.06106817,0.0066633555,-0.0056525236,0.009242719,-0.0066343085,0.033322588,0.04577789,0.0022278961,0.06348487,-0.017741837,-0.02955811,0.0005159453,0.009846894,0.036599074,-0.022180201,-0.013547467,-0.022877326,-0.009904987,-0.00031043857,-0.005181964,0.0006644475,0.026978746,-0.0214366,-0.014523442,0.013315092,0.042571113,-0.036180798,-0.0139541235,0.009817847,-0.0058122817,0.04940294,0.019995876,0.056374192,-0.003906806,0.06218357,0.034112662,-0.03801656,-0.0053940066,0.015673699,-0.025073271,0.002675218,0.011583897,-0.016533487,0.035088636,-0.030696748,-0.02711817,0.00503673,0.0056815706,-0.030789698,0.036784973,-0.058326144,-0.014418874,0.020297963,0.031928334,0.048519917,0.025166221,0.045940552,0.0129665295,0.0021175179,-0.024445858,-0.007598665,-0.004847925,-0.011705894,-0.041176863,0.023225889,0.030929122,0.059069745,0.029883435,-0.009283384,0.022517145,0.019136088,0.03234661,-0.0019592124,0.007976275,0.0045661703,0.025607733,0.015894456,0.020193394,-0.02767587,-0.013454517,-0.0027216931,-0.04261759,-0.019263893,0.02649076,-0.018764287,-0.011316666,-0.005995277,0.016068736,-0.014697724,-0.0825861,0.019740263,-0.028419472,-0.005977849,0.007976275,0.033996474,0.0006332221,-0.066505745,-0.0027943102,-0.027629396,0.013721748,0.005762902,0.018775906,-0.016359206,-0.024469096,0.061021697,0.00058965175,-0.036018137,0.01118886,-0.023934633,-0.005045444,0.008092462,0.021924589,-0.008679209,0.01651025,-0.0080576055,0.05391102,-0.010834488,-0.0044238404,0.013896029,-0.061114646,0.004014279,-0.0077961837,-0.017648887,0.0022976086,-0.016986618,-0.00085034757,0.045940552,0.039410815,-0.008824443,-0.053864542,-0.04054945,0.003953281,0.042989388,0.013094336,0.0027245977,-0.03236985,0.0438027,0.031858623,0.013280235,-0.010218694,-0.0041914657,0.01649863,-0.015847981,0.007569618,0.0058936127,-0.03206776,0.0231097,0.002046353,0.01929875,-0.061207596,0.04930999,-0.016905287,0.06367077,-0.01687043,0.051866118,-0.000023555209,-0.031603012,-0.048705816,0.0012192429,-0.009277575,0.0197635,-0.0019374272,0.012153217,-0.0053940066,0.046684153,-0.04940294,-0.10094374,-0.018090399,0.014581536,-0.017695362,0.00050069566,-0.018671338,0.043221764,-0.017939355,-0.023260744,0.0026389095,0.02367902,-0.03429856,-0.037621524,-0.015139236,0.0020812093,0.011427044,0.028442709,-0.06817885,0.028675085,0.039596714,0.009446047,-0.008446834,0.04261759,0.016928524,-0.026537234,0.014070311,-0.023934633,0.021320414,0.012002173,-0.027001984,-0.025003558,-0.00745924,-0.02525917,0.015801506,-0.01949627,0.019821594,0.0058500427,0.035204824,0.036389936,0.010369738,0.0008801206,0.0065297396,0.047729842,0.006123083,-0.0101606,-0.0070235366,0.017974213,-0.004903114,0.0017515272,0.046939764,0.018822381,0.02816386,-0.017451368,-0.028512422,0.032927547,0.018857237,0.031091785,-0.0028654751,-0.014186499,0.033624675,-0.057210743,0.0063845054,0.04038679,-0.011026197,0.03218395,0.011537422,0.014755817,-0.046963003,0.012606348,0.015836362,-0.029488398,-0.05530527,-0.04487163,0.060278095,-0.032927547,-0.0052371533,-0.03218395,-0.02414377,0.012536636,0.022644952,-0.021889731,0.005948802,0.0056902845,-0.017370038,0.009893369,0.014976574,-0.04680034,-0.014140024,-0.018903712,0.020507101,0.034925975,0.029790485,0.01903152,-0.028582135,-0.005434672,-0.00038196653,0.02116937,-0.03801656,0.014279448,0.049170565,0.02767587,-0.008992915,0.04763689,-0.0053940066,-0.022633333,-0.05172669,-0.021053182,0.00016420567,0.018102018,-0.051076043,0.00272605,0.020007495,-0.016545106,-0.0005464445,-0.026328096,0.012792248,-0.025677446,0.04147895,-0.0043831747,-0.016916906,0.0007051131,-0.025630971,0.0012359449,-0.0068027806,-0.03448446,-0.018810762,0.016823955,-0.018090399,-0.0006045383,-0.0011502566,0.01267606,0.00004838122,0.012083504,0.019809974,-0.014476967,-0.006256699,0.020286344,0.021029944,0.016614817,0.0026635993,0.030162284,0.024933845,-0.014023836,-0.0029526157,0.009417,-0.009080056,-0.0013993337,0.043384425,-0.008243506,0.011641991,0.009056819,-0.023318838,0.029976385,0.0121996915,-0.0374821,-0.0037180013,-0.039364338,0.008795396,-0.005585716,0.015429705,-0.013082717,-0.013036242,-0.009591281,0.004139181,0.036041375,-0.007854277,-0.019519506,0.0034420558,-0.06134702,0.015452943,0.031440347,0.0052981516,-0.0009287741,-0.012037029,0.025979534,-0.019159324,0.041711327,0.009480903,0.0021320414,-0.0045516468,-0.007319815,-0.008731494,-0.0219943,-0.054282818,-0.0363667,-0.015348374,-0.027280834,-0.01006765,0.025863346,0.016521867,0.021750307,-0.027885009,0.04110715,0.0073314337,0.022598477,0.028442709,0.0048072594,0.009928226,-0.0084991185,-0.04503429,-0.010207076,-0.022888945,0.008313218,-0.037412386,-0.011310857,-0.021111276,0.022029158,0.017869644,0.03889959,-0.014651248,0.030766461,-0.0019722835,0.019775119,-0.020971851,0.0025459595,-0.024352908,0.01091001,-0.004644597,-0.011909222,-0.009300812,-0.027466735,-0.0075928555,-0.026258383,-0.023527976,0.01900828,-0.026653422,-0.014883623,0.03555339,-0.032137472,-0.0021799686,-0.031207973,0.016928524,0.0030005432,0.016161686,-0.026444284,-0.0058790892,-0.01473258,0.033345822,-0.024840895,0.026118958,0.0032154901,0.013593942,0.018427344,-0.027745584,0.048705816,-0.016661294,-0.031068549,-0.025584497,-0.019856451,0.025607733,-0.009829465,-0.0022220868,-0.020751094,-0.008754731,0.058140244,0.002670861,0.034716837,0.0024210578,-0.023934633,-0.023760352,-0.0025154601,-0.0029206641,0.04607998,-0.0035872902,0.002163993,-0.00053337344,0.007900753,0.016893668,0.00030027216,-0.03927139,0.0056815706,0.007906562,0.0009374882,-0.005045444,-0.011037816,-0.008632734,0.051261943,0.014198117,0.005983658,-0.0335782,-0.06246242,0.039875563,-0.07361642,0.03039466,0.00032532512,0.0020754,-0.0031022073,-0.027327308,0.030719984,-0.0094286185,0.008737303,0.022795996,-0.024654996,0.010660207,-0.010544019,0.0024108915,0.011775607,0.025050033,-0.02359769,0.0033549152,-0.027489971,0.017509462,0.006192796,-0.008011131,0.014593155,0.024538808,0.015150855,0.023458265,-0.03683145,-0.03457741,0.017207375,0.025026796,-0.0032329182,-0.0425014,-0.026444284,0.0048711626,-0.0021058992,0.009393763,0.013628799,0.0118453195,-0.034972448,0.006535549,-0.04642854,0.009161388,-0.0049147326,0.0004662025,0.0011647801,0.0021393031,-0.035274535,0.05502642,-0.005678666,0.021401744,-0.0029293783,0.05985982,-0.021390125,0.015267042,-0.04596379,-0.023272363,0.0014000598,-0.023086464,-0.010555638,0.009660994,0.021924589,-0.0140122175,0.059720393,-0.0037731903,-0.04271054,0.028396234,0.008504928,-0.0023237509,-0.02525917,0.022772757,0.020576812,0.0073023867,-0.008121509,-0.01789288,-0.021006707,-0.009835275,-0.0044877436,-0.013210523,-0.019519506,0.010375547,-0.035739288,0.04326824,-0.030185523,0.01063116,0.02172707,-0.08207488,-0.03578576,0.038713686,-0.00950414,-0.0033781526,0.046010267,-0.00056096795,0.030905886,-0.009620328,-0.031533297,-0.0131872855,-0.027838534,0.021796782,-0.00054499216,0.045754652,0.0023658688,-0.016289493,0.017393274,0.030882647,-0.014546679,-0.013140811,-0.019775119,-0.029418685,0.007953037,0.01621978,0.000050151262,-0.0006310436,-0.02937221,0.023005133,0.0034042948,0.014523442,0.01855515,-0.014128405,-0.0096029,-0.028489184,-0.00069458364,0.018485438,-0.05098309,0.01566208,-0.07189685,-0.0005228439,0.005025111,-0.031440347,-0.027187884,0.0063089835,0.03927139,0.012757392,0.0186481,-0.020483863,-0.022319626,-0.021703832,0.0070874398,0.030719984,0.025468308,-0.008266743,-0.026932271,-0.05200554,0.05846557,-0.013047861,-0.0069770617,0.056792468,-0.014906861,0.019380081,-0.0033171542,0.023272363,0.013547467,-0.03216071,-0.021413364,0.004586503,0.025189457,-0.01380308,0.017265469,0.037412386,0.0203212,0.016440537,0.040595926,-0.020530337,0.0079239905,-0.009039391,0.0016237209,0.0011306499,0.021889731,0.023934633,0.019542744,0.016057117,-0.013768223,-0.005678666,0.012315879,-0.0121996915,-0.024190245,0.05716427,0.023539595,0.0017994544,0.023760352,-0.014384017,-0.018113637,-0.024259958,-0.0038980918,0.05735017,-0.024631757,0.011450282,-0.0075173336,0.005948802,-0.015243805,0.01519733,-0.030510848,-0.013500992,-0.014755817,-0.0034275323,-0.020844044,0.00030154298,0.03708706,-0.03199805,-0.02769911,-0.017869644,0.011229525,0.036296986,0.010358119,0.022052394,0.0046649296,0.0072210557,-0.0057541877,0.007319815,-0.026281621,0.010108315,0.011136576,-0.008510737,0.002185778,0.00067098305,0.04389565,-0.019751882,0.0102535505,0.023260744,-0.004374461,0.015452943,-0.012071885,0.048798766,0.00661688,-0.034019712,0.017648887,-0.0035321012,0.025886584,-0.05079719,0.026792847,0.01724223,0.016289493,0.03206776,0.0043570325,0.0026592424,0.029209547,0.053399794,-0.027768822,-0.012269404,0.012083504,-0.0052342485,0.06041752,-0.020425769,0.027745584,-0.00978299,0.00970166,-0.007122296,0.018229825,0.017474607,-0.023156177,-0.036250513,0.009068437,0.0012991219,0.007465049,-0.025282409,0.0319051,0.008696637,-0.014988192,0.024352908,0.011769798,0.03578576,0.041014202,0.0645538,-0.018020688,0.032671936,0.0029511636,0.011444473,0.010305835,-0.0177186,0.0417578,0.021924589,-0.0092659565,0.016068736,-0.037458863,0.0051122517,0.008359693,0.0065239305,0.019879688,0.029070122,0.005068681,0.017451368,-0.034461223,0.0070583927,0.012873579,-0.01295491,0.0020405436,0.0203212,0.008958059,0.015836362,-0.0059604207,0.0034449606,0.007610284,-0.0045719794,0.0130246235,0.008522356,0.033857048,-0.02191297,0.011223717,0.015081142,-0.008167984,0.009114913,0.0073140054,0.0042001796,-0.022482289,0.0047055953,-0.0064948834,-0.021599263,0.028280048,-0.0024747946,0.027536446,-0.017544318,0.024445858,-0.038155988,0.00091788155,-0.048845243,-0.0064832647,0.0052081062,-0.017195756,-0.0088593,0.02014692,0.03132416,-0.0135707045,0.02649076,0.024352908,0.0051790597,0.021239081,0.029441923,-0.0094576655,0.005995277,-0.018531913,-0.00391552,-0.019043138,0.012699298,0.023748733,0.014790674,0.027745584,0.01651025,0.022888945,0.00016465953,-0.021750307,0.015220568,0.0033171542,-0.019077994,0.034112662,0.019217419,-0.027373783,-0.008487499,-0.00032387275,-0.029697536,-0.015255424,-0.0008176698,0.021947825,-0.007720662,-0.02946516,0.025933059,-0.0014988192,0.013256998,0.014430492,-0.015859598,0.012780629,-0.005547955,-0.009730706,-0.0068202084,-0.0109042,0.015999025,0.009631947,-0.022133727,-0.038713686,-0.016638055,0.0417578,-0.03457741,-0.03130092,0.005995277,-0.021599263,0.02704846,0.006547168,0.010968104,0.013361567,-0.0012112551,-0.032578986,0.020844044,-0.014744199,-0.027815297,-0.02004235,0.026885796,0.024422621,-0.07728795,-0.0022046585,-0.025584497,0.003244537,-0.000033403918,-0.010003747,0.013303474,0.0058936127,0.008406169,-0.008818634,0.012710917,0.030882647,0.010509163,-0.00802275,-0.0064658364,0.014279448,0.008696637,-0.016545106,0.013164048,0.018299537,0.01380308,-0.027954722,-0.0049089235,0.025003558,0.017486224,-0.012629585,0.015685318,0.0070235366,0.015371611,-0.017916119,-0.016707769,-0.011572279,-0.0032881072,-0.005510194,-0.02983696,-0.06274127,-0.020774331,0.011084291,0.025538022,-0.0028741893,-0.0060359426,0.0055072894,0.0037906184,0.0027580017,-0.016487012,0.020925377,0.05651362,-0.009655184,0.00550148,0.009573854,0.062044144,0.015511036,0.0061869863,0.026165433,0.031440347,0.019449795,0.0028088337,-0.00081694365,0.020844044,-0.00087285886,-0.0013811793,0.016440537,0.017207375,-0.010218694,-0.022145344,-0.026211908,-0.037714474,0.032486036,0.01733518,0.02470147,-0.005353341,-0.003776095,0.020414151,0.0354372,0.0054956707,-0.029999623,0.02955811,0.0016774576,-0.014767436,0.0022264437,-0.0031196354,0.016068736,-0.01295491,-0.013652036,-0.03123121,-0.021936208,-0.014000598,0.000044500735,0.030975597,-0.03002286,0.042385213,0.0017631459,0.00034130088,-0.00046148238,0.0067156395,-0.01043945,-0.017521081,-0.0021828734,-0.030905886,-0.0018880476,-0.037040588,0.009358906,0.022203438,0.0030324948,0.0005747652,0.0116245635,0.012164835,0.04366328,0.013140811,0.0060010864,0.019937782,0.04810164,-0.030929122,-0.04382594,0.0036221466,-0.0020318297,0.0005435398,-0.000018948554,0.008568831,0.0035814808,-0.007354671,0.024654996,0.009196243,-0.01659158,0.018915331,0.009568044,-0.016719386,-0.0402706,-0.0030179713,0.020181775,0.023376932,0.013198905,0.029767247,0.0053097703,-0.02872156,0.03880664,-0.019844832,-0.014163261,0.045731414,0.026095722,0.015139236,-0.001767503,-0.005062872,0.017776694,0.023086464,-0.014476967,-0.015580749,-0.01956598,-0.008330647,-0.0009120722,-0.004612645,0.026653422,0.025026796,-0.035762526,0.018311156,0.040990964,0.04540609,0.010189647,-0.0016222685,0.011793035,-0.0067446865,-0.012408829,-0.01081706,-0.0067446865,-0.023795208,-0.022447433,0.0042757015,-0.010776394,0.0029889245,-0.012629585,0.043198526,0.081842504,-0.016533487,0.014953336,0.013605561,-0.030789698,-0.007186199,-0.018613243,0.02600277,0.02470147,-0.02767587,0.014128405,0.010340691,-0.0077729463,-0.013535848,0.011113338,0.0032822979,-0.031277686,-0.02862861,-0.034925975,-0.026444284,0.04763689,0.0050890143,-0.025514783,0.014616393,-0.016475393,-0.024654996,-0.0035204825,0.0024994845,0.022633333,-0.025235934,0.0131291915,0.014930098,-0.029116597,-0.004403508,-0.026095722,0.0058209957,-0.012571491,-0.02704846,-0.040595926,0.015987406,-0.022273151,-0.027885009,-0.0036134324,0.037412386,-0.0103871655,0.0011887437,0.011514185,-0.044267453,0.017927738,0.0005729498,0.030603798,-0.0016643865,-0.021587644,0.01473258,-0.06125407,-0.042176075,-0.006210224,-0.046660915,-0.015824743,-0.024817659,0.0098410845,0.0012039933,0.0011705895,0.009986319,-0.031858623,0.038434837,-0.017521081,0.0012141598,0.0203212,-0.004998969,-0.0011952793,-0.008719875,-0.02395787,-0.00950414,-0.021657357,0.012432067,-0.03801656,0.007610284,-0.014325923,-0.032462798,-0.04373299,-0.025050033,0.0049757315,0.013617179,0.010340691,-0.0014087739,0.028187096,-0.0064251707,-0.012315879,-0.0058878036,0.0195776,0.034112662,0.053492744,0.010085078,0.0020957328,0.017950974,-0.0044412687,-0.005362055,0.03309021,-0.041734565,0.013768223,-0.0058994223,-0.054282818,-0.022633333,0.016254637,-0.0063089835,-0.035669573,0.014999812,-0.015917692,0.0186481,0.00031842646,-0.0186481,0.01230426,-0.01380308,-0.0023644164,-0.04278025,0.0045981216,-0.004885686,-0.011368951,0.014976574,-0.026909035,-0.0004716488,0.045452565,0.009475093,0.020077206,-0.0026592424,-0.027931483,0.0051964875,0.0040636593,-0.0044325544,-0.009248528,-0.028837748,0.0033171542,-0.03206776,-0.011055244,0.028047672,-0.005269105,-0.007947228,-0.0016062927,0.029395448,0.0179045,0.004020089,-0.03485626,0.035483673,0.004484839,0.023435026,0.030069334,-0.003468198,-0.020297963,-0.017509462,-0.00027649003,0.0005337365,0.0056931893,0.015185711,0.011124956,0.006041752,-0.0009004534,0.010305835,-0.026072484,-0.015371611,0.023888158,0.031742435,0.0015191521,-0.015789887,-0.006721449,-0.030603798,0.0016048404,-0.0040578498,-0.0011734942,0.012978148,-0.015975786,-0.008551403,0.0065936428,0.025421834,-0.0012272309,0.03151006,-0.009190435,-0.021947825,-0.0045603607,-0.04233874,-0.0030644464,-0.003505959,-0.011810463,-0.009631947,-0.004118848,0.030557323,0.053771593,-0.003020876,0.025235934,0.023156177,0.017823169,0.0072036274,-0.008679209,0.017288705,0.016545106,0.040595926,0.0051209657,0.035065398,0.0091032935,0.035088636,-0.019926162,0.009469285,-0.023144558,0.01835763,0.01491848,-0.0034565793,0.015278662,-0.006692402,0.025793634,0.004176942,0.009347287,-0.0068841116,0.014035455,0.01967055,0.012002173,-0.009875941,-0.015789887,0.012722535,-0.027652634,-0.03787714,0.005661238,-0.0016164591,-0.02584011,0.016835574,0.023005133,0.019136088,-0.041943703,0.017393274,-0.025398595,0.021413364,-0.007499906,-0.012071885,-0.010898391,-0.031347398,-0.024190245,0.003020876,-0.029139835,0.059720393,-0.016289493,-0.031184735,-0.0007966108,-0.021564407,0.024167009,-0.01900828,0.016649675,0.003020876,-0.00079225376,0.000006461797,0.0014959145,-0.02955811,-0.021982683,-0.031835385,-0.040665638,-0.020867283,-0.0030353994,0.013361567,0.0075463806,0.015638843,-0.053213894,-0.01053821,0.015987406,-0.011978935,0.0010943414,-0.016812338,0.01687043,0.008609497,-0.018857237,0.007982084]},{"id":"guide-discord-js-compatibility-3","type":"guide","source":"guides","text":"Guide: Discord.js Compatibility (discord-js-compatibility)\nSection: Other parity\nclient.channels.cache and client.guilds.cache are compatibility aliases. Collection extends Map with find(), filter(), etc. See the API reference for full details.","meta":{"slug":"discord-js-compatibility","url":"/guides/discord-js-compatibility"},"embedding":[-0.012688876,-0.013227346,0.024313483,0.0071711475,0.03159866,0.04670115,-0.024262805,0.0052168197,-0.013607442,-0.036970686,0.0337272,-0.014215596,0.021133346,0.035095543,-0.011624607,0.02756964,-0.032967005,-0.0072281617,0.0031294583,0.03560234,0.017319715,0.0515157,0.02868459,0.041607857,-0.009559418,-0.035222244,-0.018016558,0.059801795,-0.002899817,-0.038820487,0.007963014,-0.027341582,0.045231443,0.053010743,-0.0069430894,0.002066773,0.03550098,-0.0019083994,0.004488302,-0.0061575575,0.0037756218,0.010515993,-0.0038833157,-0.043077562,-0.007506899,0.0045738234,-0.019346895,-0.0035190568,-0.03762952,0.03327108,-0.026708089,0.036767967,-0.031167883,0.01780117,0.007297846,-0.015444573,-0.02870993,-0.025770519,-0.0073675304,0.010744051,0.014266276,0.018612042,-0.049741916,-0.004089201,-0.009115973,0.041633196,-0.018345974,-0.009933179,0.008121388,0.014671711,0.022881787,0.0068544005,-0.0147857405,-0.051388998,-0.028380513,0.024351493,0.011415554,0.026023917,0.028988667,-0.01132053,-0.039301943,0.018269954,-0.06730236,-0.030762449,-0.019549612,-0.015026468,0.01982835,0.0025640652,0.031852055,0.022438342,-0.0072408314,-0.024946976,-0.093858406,0.0032324009,0.0471826,-0.054125693,0.021348733,-0.010142232,-0.04812017,0.036945347,0.07966815,-0.009489734,-0.06345072,-0.0019923374,0.06613673,-0.010712377,-0.020107087,-0.005748954,-0.08063106,0.015571272,-0.08362115,0.026834788,-0.01379749,0.0018783085,-0.00781731,-0.021576792,0.045636877,0.00034960927,0.002488046,-0.009768471,-0.043635037,0.0048082164,0.051617056,-0.03352448,-0.00011927496,-0.031243904,0.0176618,-0.05240259,-0.051693074,-0.026353333,0.028963326,0.015495253,0.052554626,0.028735269,-0.030179635,-0.027366923,-0.051008902,-0.026910808,-0.0375535,-0.025909888,0.0115739275,-0.033043023,0.053618897,0.0071394728,-0.027265564,0.009001943,-0.0473093,-0.017522432,-0.046625126,-0.0013224179,-0.030458372,-0.022336984,-0.031294584,0.010186576,-0.06618741,0.003506387,0.008336776,-0.0043014213,-0.022362323,-0.03157332,-0.042520087,-0.014291615,-0.0111051425,-0.007925005,-0.00980648,-0.01866272,-0.020778589,0.004570656,-0.023413923,0.044521928,0.0412531,-0.014392974,-0.05792665,0.013163997,0.006974764,-0.044800665,-0.020575872,-0.020993978,-0.021918878,-0.015926028,0.026251974,0.016065396,0.024402173,-0.024022076,-0.035019524,0.01685093,-0.006113213,-0.037882917,0.0032593245,0.0037914591,-0.0035032195,0.038034953,0.0006833812,0.043660376,0.04540882,-0.030686429,0.03869379,-0.0063666105,-0.012074388,-0.023008486,-0.04647309,0.022134265,0.028557891,-0.014342295,-0.027493622,-0.022413002,0.041759897,-0.020816598,0.0059104953,-0.028836628,0.014963118,0.020069076,-0.009686117,0.020069076,-0.02764566,-0.057825293,-0.079414755,-0.0010310108,-0.044927366,0.027138865,-0.049843274,0.018840099,0.037958935,0.04809483,-0.014139577,0.013556763,0.05131298,-0.038997866,0.025504451,0.042824164,0.01979034,0.0077476264,-0.016939618,-0.024326153,-0.0006160725,-0.030990506,0.015051807,0.044952706,0.0029900896,0.02366732,-0.040036794,-0.0019384903,-0.005435375,0.035424963,0.018231945,-0.021475432,-0.013468074,-0.028000416,0.045890275,0.020905288,0.012511498,0.006784716,0.019511603,0.007906,-0.014012878,0.0017104327,0.0187134,0.018852768,-0.01678758,0.021209365,-0.06603537,0.016103407,0.016812919,-0.0028412186,-0.07799573,0.029976916,-0.0019194855,-0.0022251462,-0.055544715,0.0024437015,0.06608605,0.026150614,0.07292778,-0.066795565,-0.013328705,0.0025799025,0.0047765416,0.05407501,-0.0112318415,0.001803873,-0.046016973,-0.014570353,0.035577,0.026885467,0.041734558,0.026860127,0.0246429,0.016483502,0.007088793,0.021500772,-0.013252686,0.0066390126,-0.036565248,0.03375254,0.01786452,0.05123696,0.04634639,-0.0064077876,0.054784525,0.011960358,0.0057774615,-0.013974869,-0.01867539,-0.013062637,0.04046757,0.011466234,-0.005137633,0.025352413,-0.020335143,-0.011630942,0.048626967,0.009255341,-0.07014041,-0.008197407,-0.05225055,-0.0005384695,0.0078489855,-0.0053055086,0.06927886,0.006227242,0.001583734,-0.048221532,0.01132053,0.007899665,0.0010698123,-0.0051946472,-0.024275474,-0.073535934,0.018396653,0.013062637,0.07378933,-0.028937986,0.010528663,0.042697467,-0.023540622,-0.012562178,-0.00208261,0.027442941,-0.03233351,-0.01981568,0.0049000727,-0.034031276,-0.034031276,0.006087873,0.016356803,-0.020892618,-0.012973948,0.0095404135,-0.032840308,-0.013062637,-0.026049256,-0.024908967,-0.04513008,-0.04814551,0.0010721879,0.0070444485,-0.005565241,-0.03747748,0.012087057,0.048677646,-0.017345054,0.015685301,-0.025935227,0.021095335,0.010249926,0.0007831564,-0.03043303,-0.01777583,0.02555513,-0.0437364,-0.009299686,0.0062114047,-0.029318083,-0.007304181,-0.0015188009,0.05605151,-0.024262805,0.02085461,0.005726782,0.01683826,-0.003553899,-0.013202006,0.02362931,-0.022818439,0.04551018,-0.0018862272,-0.06340004,0.00086471875,-0.042089313,-0.002530807,0.03950466,-0.0029853384,0.002237816,-0.0005321346,-0.043939114,0.012391134,0.030052936,0.0016185761,0.014608362,-0.009103303,0.031801376,0.049691238,-0.01571064,0.026784109,-0.01477307,0.029292744,-0.0056856046,0.024503531,0.025441103,-0.0014483246,0.041025043,-0.013214676,0.028836628,-0.035146225,0.026936147,-0.05214919,-0.0030851138,-0.02870993,0.004589661,0.012220091,0.037046704,-0.05351754,-0.025947897,-0.040822327,-0.0035222243,0.022235624,0.021298055,-0.03623583,0.008172067,-0.05736918,-0.08873978,0.010731381,0.06208237,0.012302445,0.015444573,-0.019144176,0.034892827,-0.020968636,-0.019283544,0.0063127633,-0.009996529,-0.0039213253,-0.034740787,0.004494637,-0.05625423,0.023870038,0.028355172,-0.055696756,-0.013962198,0.0067403717,-0.018257285,-0.0013683462,-0.010851745,0.03871913,-0.04647309,-0.012011038,-0.007082458,0.033980597,-0.0034652099,-0.029064685,0.027949737,0.000019450232,-0.07439749,0.047638718,0.046016973,0.0034747124,0.0074562193,0.026175955,0.022020238,-0.018979467,0.019448252,0.02170349,0.036970686,-0.017040977,-0.030103615,-0.0027984579,0.016432824,0.03469011,0.035272922,0.004380608,0.024313483,-0.03278963,0.0072471667,0.012023708,0.014367634,0.06882274,0.015558602,-0.008666192,-0.014076227,0.0083557805,-0.06476838,0.045839597,0.0114472285,-0.013696131,-0.03043303,-0.00104764,-0.008070708,-0.02762032,0.026885467,0.031852055,0.0038706458,-0.04234271,-0.024794938,0.07110332,0.0051724752,0.04153184,-0.015457244,-0.008799226,0.008818231,0.026404012,0.0015069229,-0.023756009,-0.033068366,0.0013715136,-0.0032466545,-0.017231025,-0.035450302,-0.021095335,-0.012093392,-0.005939002,0.014963118,0.009172987,0.029064685,-0.029090025,0.0032593245,0.02070257,0.023502612,-0.06086606,-0.017915199,0.03626117,0.010541333,-0.029166045,0.0061163804,-0.0015496836,-0.015520592,-0.04670115,-0.011307861,0.010300606,0.031167883,-0.04036621,0.00690508,-0.008140393,-0.017370393,-0.0103449505,-0.016204765,-0.0030280992,0.022146935,0.03233351,0.00076771504,0.003838971,0.029242063,-0.026074596,0.00043711058,-0.02361664,0.0038674783,-0.0042760815,0.0029077355,-0.03648923,-0.0064236247,0.0031342094,-0.028431192,0.0056666,0.007595588,-0.003506387,-0.029394101,-0.002434199,0.017421074,0.025998576,0.0072344965,0.0004268163,0.011111477,-0.0072471667,-0.021323394,-0.005150303,0.02165281,0.009572088,-0.05635559,-0.0040321867,-0.019194856,0.0069494247,0.026378673,-0.017484423,0.04439523,0.024528872,-0.038161654,-0.0048842356,-0.028152455,0.014545012,-0.0011117812,0.010465314,0.0008536326,0.0059421696,0.0003505991,-0.007164812,-0.020183105,-0.009337695,0.012961279,0.012600187,-0.021412082,-0.016521512,0.008172067,0.014126907,-0.0074752243,-0.007202822,-0.017915199,0.0042285696,0.006708697,0.010984778,0.008444469,0.014329624,0.019030146,-0.03446205,-0.023147855,-0.055037923,-0.0433563,-0.0004707649,-0.008457139,-0.021069996,0.018295294,-0.006797386,0.007956679,-0.0008575919,0.021956887,0.010528663,0.04634639,0.02769634,-0.004143048,-0.01277123,-0.00743088,-0.029698178,-0.014722391,0.0227931,0.017991217,0.0167369,0.0020984474,-0.006132218,0.0137721505,0.002017677,0.028735269,-0.0049254126,0.009470729,0.0087802205,0.019486262,-0.0131386565,0.0066326777,-0.044040475,0.0246429,0.002785788,0.0042634117,-0.015609282,0.006898745,-0.021564122,-0.008444469,-0.01775049,-0.014101567,-0.034310013,-0.017585782,0.011998368,-0.021120677,0.01379749,-0.035070203,-0.019549612,-0.020208444,0.0034810472,0.021880869,-0.011352205,0.006607338,0.020335143,0.0070761233,0.01031961,0.0064236247,0.028355172,0.015812,-0.00564126,0.01474773,-0.026327994,-0.021842858,-0.0022821606,0.0009146063,0.018396653,0.0035570664,0.02868459,-0.04241873,-0.03063575,0.018320635,-0.0050996235,0.016356803,0.022286303,-0.00041533422,-0.021108005,-0.0066706873,0.017218355,0.023540622,-0.01474773,0.018333305,0.029292744,0.024034746,0.020816598,0.028127115,-0.018295294,0.0015607699,0.0032846641,0.015077147,-0.021044657,0.009185657,-0.027721679,0.048981722,-0.024326153,0.028000416,-0.0296475,-0.06314664,0.023718,-0.038060293,-0.0033195063,0.006727702,-0.01972699,-0.030331673,-0.012023708,0.018409323,-0.03942864,0.008514154,0.029774198,-0.055595398,-0.0054132026,-0.043153584,-0.0023312564,-0.027164204,0.011073467,-0.03945398,0.016369473,0.0022520698,0.024351493,-0.00084729766,0.019118836,0.025909888,0.021171356,-0.005410035,0.023135185,-0.04543416,-0.018510683,-0.004184225,0.0069304197,-0.0022140602,-0.02563115,-0.00053728174,0.010110557,-0.01866272,0.01875141,0.0031342094,0.024351493,-0.02082927,0.009534079,-0.030483712,0.0108960895,0.015267195,-0.025175035,-0.00940738,-0.023768678,-0.01586268,0.017471753,0.01775049,0.049843274,-0.028405853,0.056913063,0.008051704,0.021956887,-0.038034953,-0.047512017,0.014392974,-0.013417394,0.014177586,-0.00008413586,0.019663641,-0.019955048,0.032967005,0.005349853,-0.041177083,-0.04447125,-0.0085268235,-0.020803928,-0.046625126,-0.011592932,-0.012701546,0.026049256,-0.0059009925,0.007779301,-0.013987538,-0.03258691,0.014671711,-0.028659249,-0.05351754,-0.008552163,-0.010839075,0.028836628,-0.034081955,0.007785636,0.032029435,-0.113826126,-0.025149696,0.031319924,0.0011054463,-0.013366714,0.018840099,0.000595088,0.054733846,0.005096456,-0.015444573,-0.007703282,-0.0062082373,-0.0028380512,-0.01379749,0.014202926,-0.000779593,0.00040444607,0.040898345,0.016420154,-0.032080114,0.009990194,0.003107286,0.009299686,0.03327108,0.010078883,0.02063922,0.0011917598,-0.0437364,0.011992034,-0.006594668,0.020157766,0.015317875,-0.01586268,0.019549612,-0.03552632,0.035805058,0.0068353955,0.0074372147,0.010991113,-0.04130378,-0.026784109,-0.005435375,-0.027797699,-0.025162365,0.029926237,0.016318794,-0.01960029,0.028127115,-0.04829755,-0.0012939107,-0.049665898,-0.02769634,0.060764704,0.0072471667,0.021234704,0.0018624711,-0.005970677,0.04936182,0.0020636052,0.008577503,0.023211205,0.02663207,0.02764566,-0.0029267403,-0.0025909888,-0.0011624608,-0.03529826,-0.029850217,0.032130793,0.03539962,-0.0176618,0.020917958,0.021374073,0.023882708,0.009876165,0.066440806,-0.036869325,-0.022007568,-0.013556763,0.0023946057,-0.0047005224,0.00048422665,-0.0071774824,0.003433535,0.019030146,0.0048779007,0.005131298,-0.042773485,-0.0049792593,-0.023743339,0.046549108,-0.015609282,0.021424754,0.011643612,0.019498933,-0.013049968,-0.029292744,-0.00037178156,0.006376113,-0.02177951,0.022945138,-0.010338616,0.026454693,-0.03575438,0.033397783,0.004839891,0.023236545,-0.0032324009,-0.014545012,0.0033891906,0.0065883333,0.021031987,-0.0074372147,-0.00831777,-0.010129563,-0.0053308485,0.01582467,0.035830397,-0.0048367237,0.015431903,0.018523352,-0.026784109,0.0018022893,-0.038237672,0.0058724857,0.007791971,0.015609282,0.026074596,-0.0036679278,0.036869325,-0.025504451,-0.006053031,-0.0013445901,0.02655605,0.024414843,-0.00007364363,0.01775049,-0.015495253,-0.011219171,0.012283441,-0.017155007,0.038972523,-0.019993057,0.01866272,0.0046086656,0.02082927,0.005657098,0.0049982644,-0.019042816,-0.0005859816,0.032662928,-0.04627037,0.019980388,0.017281706,0.0135187525,0.06816391,-0.011592932,0.03950466,0.01777583,-0.046878524,0.0038072965,-0.0071711475,-0.004174723,0.007823646,0.027366923,-0.004605498,-0.010592013,-0.0003636649,-0.008590173,0.027949737,0.041937273,-0.037654858,-0.0069304197,0.030863807,0.026530711,0.059497718,0.052757345,0.011776646,0.015267195,0.006227242,0.004231737,0.018231945,-0.0007934507,-0.029470121,0.016052727,-0.0068353955,0.0077666314,-0.0314973,0.0016185761,0.00018856332,0.033017684,0.017104326,0.004345766,0.0155079225,-0.014000208,-0.028355172,-0.022628391,-0.017129667,-0.0009565753,0.032181475,0.029976916,0.014595692,-0.0032783293,0.014038217,-0.022907129,0.0044281203,-0.042038634,-0.00934403,0.031167883,0.031928077,0.00079978566,0.016964957,0.021234704,-0.017066317,0.020043736,0.007760296,-0.010123228,0.011162157,0.012568513,0.002440534,0.017408403,-0.0010436807,-0.000839379,-0.0033163389,-0.011947689,-0.00042166916,-0.030204974,-0.024060085,-0.013202006,-0.017902529,-0.00985716,0.015191176,0.02769634,0.022438342,0.01235946,-0.050045993,0.004060694,0.044572607,0.021956887,0.013125987,0.0029599988,-0.020803928,-0.018117916,-0.07247166,-0.021298055,-0.035095543,-0.007411875,0.017053647,0.009027284,0.021817518,-0.0021887203,0.01573598,0.00740554,-0.0022172276,-0.012625527,-0.005150303,-0.025048336,0.051186282,0.0075639132,-0.0070761233,-0.015317875,-0.017078986,-0.0009256925,-0.03243487,-0.015913358,0.039124563,-0.0032419034,0.013468074,0.018954128,-0.03276429,-0.0016866766,0.046675805,0.017193016,0.032004096,-0.034233995,-0.022476353,0.00034723367,-0.012093392,-0.000115909526,-0.041101065,-0.013252686,-0.018460004,-0.013911519,0.0008053287,-0.013075307,-0.008963934,-0.03243487,0.00092965184,0.026606731,-0.030939827,0.009971189,-0.011630942,0.0029457451,0.00006300292,0.0147857405,-0.021437423,-0.02269174,0.00686707,0.02470625,-0.0016930116,-0.05696374,0.009755801,-0.007684277,-0.005533566,0.0135187525,0.011067132,0.020183105,-0.014912439,-0.0020699403,-0.025137026,0.0012669872,0.008957599,0.042900186,-0.012676206,-0.022374993,-0.0044597946,-0.01486176,-0.03740146,0.006363443,0.004643508,0.01579933,-0.0026147447,0.016711561,0.016014718,0.006186065,-0.02380669,0.04132912,-0.00980648,-0.0010127978,-0.019283544,0.0010983195,-0.028836628,-0.011668951,-0.006594668,-0.020879949,-0.004447125,-0.056456946,0.0142789455,0.010851745,0.0005527231,0.010192912,-0.00786799,0.01282191,0.012074388,0.017205685,0.0011299942,0.04216533,0.01975233,-0.0053561884,-0.0077159517,0.05524064,0.008792891,-0.0004410699,0.0066643525,0.0076462673,0.009705122,-0.027442941,0.00089797715,-0.0025624814,-0.024883628,-0.013696131,0.0337272,0.0037502819,-0.014950449,-0.020183105,-0.013531423,-0.027544301,0.014583022,-0.003433535,0.0056032506,-0.00691775,-0.0070507834,0.007006439,-0.010864415,0.009977524,-0.023084506,0.015393894,-0.040999703,-0.019118836,0.052909385,0.0022267299,0.0034810472,-0.009945849,0.009255341,-0.004738532,0.008640853,-0.001095152,0.03276429,0.041937273,-0.07252234,0.0009827069,-0.011725966,-0.034994185,-0.018472673,-0.035982434,0.028405853,-0.019955048,-0.01960029,-0.020499852,-0.012878925,-0.0337272,0.0058661504,0.023946058,0.009287016,-0.007988354,0.0005083786,0.02366732,0.06588333,0.012885259,-0.0034493725,0.0035570664,0.044065814,-0.009939514,-0.04920978,-0.024186784,-0.0159387,-0.0018117917,0.003994177,-0.0100472085,-0.021120677,-0.012568513,0.036590587,-0.009812815,-0.03438603,0.027088186,-0.00893226,-0.02949546,-0.034259334,0.0013406308,0.004887403,0.034740787,-0.02848187,0.0138988495,0.029242063,-0.044902023,0.016166756,0.0088309,-0.0167369,0.005232657,0.05529132,0.001559186,-0.034005936,-0.0028222138,0.028912647,0.013252686,-0.023489943,-0.002576735,0.0024500364,0.026150614,-0.005077451,0.004643508,0.03844039,-0.045864936,-0.013227346,0.022184946,-0.000034149263,0.031345263,0.023946058,-0.012897929,0.028557891,0.021348733,-0.015241856,0.014304285,0.002785788,-0.036185153,-0.0050647813,-0.020373153,-0.04670115,-0.0045738234,-0.020309804,0.020905288,0.08762483,-0.018472673,-0.0042063976,-0.010534998,-0.021450093,-0.0030708602,-0.004481967,0.027088186,0.015203846,-0.014468993,-0.00034268043,0.027924396,0.02267907,-0.004095536,0.018421993,0.024199454,-0.015545933,0.0062905913,0.0036299182,-0.030686429,0.045611538,0.011827325,0.0068797404,0.019131506,0.03354982,0.0030154295,-0.029470121,0.032485552,-0.011010119,-0.031193223,-0.015431903,0.004611833,-0.036970686,0.03061041,-0.025922557,0.021399412,-0.0110227885,0.015368554,-0.024174115,0.011124147,-0.017307045,-0.025479112,-0.02155145,0.0296475,0.0015108822,-0.007513234,-0.00641729,-0.017294375,0.020512521,0.025263723,0.024465522,-0.020487182,-0.0353236,0.025099015,-0.036083795,-0.024921637,-0.020132426,-0.024237465,0.00836845,-0.06370411,0.015469913,0.013430064,0.01973966,-0.003118372,-0.043685716,0.023160525,-0.017269036,0.01481108,0.015330545,0.010813735,0.030078275,-0.0014633702,0.0062050694,-0.0052770013,-0.026226634,0.005349853,0.00071980705,0.0014332792,-0.03144662,-0.033043023,-0.0069557596,-0.020005727,-0.0011537502,0.0031991426,-0.0062842565,-0.012391134,0.04426853,-0.014671711,0.007481559,-0.00007874127,0.024490861,0.027366923,0.035627678,0.006138553,-0.006338103,-0.0032719944,0.0007178274,-0.006543989,0.024009407,0.0026353332,-0.009363035,-0.00938204,-0.05701442,0.004507307,0.008976604,-0.00033080243,-0.03623583,0.019663641,0.0047765416,-0.0062652514,-0.033980597,-0.0069874343,-0.01787719,0.0020699403,-0.010395629,-0.04036621,0.0074688895,-0.02265373,0.020563202,-0.00740554,-0.024528872,0.008748546,0.038085632,0.002047768,0.006993769,-0.008412795,-0.017940538,0.0069430894,0.004814551,-0.009071628,-0.0049602548,-0.0111494865,-0.01477307,-0.031370603,-0.0068734055,0.004089201,-0.024389504,-0.008989274,0.0082290815,0.013620112,-0.0025735677,0.005042609,-0.047005225,0.05812937,0.006518649,0.008013694,0.03854175,-0.022919798,-0.016280785,-0.0045864936,0.0185867,0.033828557,0.018979467,0.007620928,-0.0076526026,-0.012492494,0.021462763,0.013214676,-0.016293455,0.00441545,0.015216515,0.027721679,-0.005261164,0.026049256,-0.004314091,-0.017421074,-0.0035190568,0.021564122,-0.0014942529,0.010737716,-0.010300606,-0.002874477,-0.0054543796,0.02072791,0.009610098,0.021006647,-0.0031389606,0.008349446,0.014405644,-0.021982227,0.013316035,0.020069076,-0.006296926,-0.01981568,0.0022995817,0.014874429,0.043483,-0.041582517,0.02848187,0.03826301,0.017522432,0.014304285,-0.0072598364,0.007595588,0.036210492,-0.0147857405,0.04059427,0.02271708,0.005989682,0.026277313,-0.015013798,-0.013328705,-0.013493413,0.051718414,0.03055973,-0.02380669,0.005767959,0.036945347,0.03453807,0.01573598,0.019574951,0.0037946266,0.029951576,0.035247583,-0.00015817543,-0.01574865,0.0022995817,-0.005159805,-0.017129667,-0.019764999,0.00003642588,-0.013936859,-0.01378482,0.0062050694,0.014950449,-0.004244407,-0.0314973,0.024427513,-0.00321498,0.033169724,0.0067593763,-0.022235624,0.030483712,-0.016306125,-0.04350834,-0.0012606522,0.0041208756,0.026201295,-0.028152455,-0.0012994537,-0.008590173,-0.004333096,0.023451932,-0.016166756,0.019397574,-0.004130378,0.011548588,-0.0029790036,0.02177951,-0.006113213,0.026125275,-0.009914175,-0.029368762,0.0024373666,-0.019942379,-0.009926844,0.0032054775,-0.02075325,-0.035070203,0.010496989,0.007373865,-0.005451212,0.01184633,-0.02769634,0.022919798,-0.010566673,-0.026049256,0.01877675]},{"id":"guide-sending-without-reply-0","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: message.send() vs message.reply()\nmessage.reply() sends a message that references another message (shows as a \"reply\" in Discord). message.send() sends to the same channel with no reference—a regular standalone message.","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.003951171,-0.007490239,0.018678261,0.008381272,0.017397404,0.04098748,0.00034718929,-0.0026146225,0.0023709808,0.03610908,-0.0042296182,0.018600296,0.016584337,0.008949304,-0.006699448,-0.061837632,-0.052971862,-0.019580431,0.0034833788,0.07226271,0.032634053,0.039049484,0.0027371394,0.04194534,0.013721895,-0.03806935,-0.003636525,0.05430841,-0.034527496,-0.04673464,-0.015671028,-0.016840508,-0.0049563665,-0.016071992,-0.0035028702,0.04481892,0.039851412,0.011516591,0.00018951837,0.02463704,0.011399643,-0.004413394,-0.005914226,0.012619243,-0.03468343,0.02187484,-0.038403485,-0.016261337,0.04816029,0.037712935,-0.0568033,0.046600983,0.030295093,0.03036192,-0.013443448,-0.044596158,-0.015403719,-0.038915828,-0.00870984,0.0044050403,-0.008030428,-0.016239062,-0.059075434,0.026730964,-0.009701112,-0.028602133,-0.042168096,-0.009205476,-0.023924213,0.03684418,0.009879319,0.0038147315,0.0225097,-0.024748418,-0.008397978,0.0026619586,0.037557006,0.026730964,-0.024726143,-0.04444023,-0.009088528,0.001422867,-0.07114892,-0.008008151,-0.068520375,-0.019313121,0.023322767,-0.048917666,0.028535305,-0.044551607,0.006003329,-0.0387599,-0.02686462,-0.018188193,0.048293944,-0.010586576,-0.05435296,0.009857044,-0.0032049313,0.022654492,0.08749936,-0.04283637,-0.11886369,-0.008074979,0.013677344,0.0022707398,0.004385549,0.017920885,-0.0014910867,-0.01029699,-0.024057869,0.017208058,0.04423975,-0.008904752,0.0030879832,-0.021640943,0.039160863,-0.046066362,0.031252954,0.0108873,-0.021150876,0.030005507,0.06428797,-0.023746006,0.02702055,-0.04421747,-0.009923871,-0.037735213,-0.021462737,0.037178315,0.082420476,-0.0008228125,-0.010202318,0.017798368,-0.046378225,0.0048449873,-0.01709668,0.01618337,-0.022621078,-0.006248363,-0.0013163608,0.0025505796,-0.014267652,-0.0102858525,-0.012040072,-0.0027677687,-0.07288643,-0.020259844,-0.0074791014,-0.009305717,-0.018433228,0.0346166,-0.027421515,0.036443215,-0.038670797,0.07533677,0.007997014,0.012563554,-0.030406473,-0.011650246,-0.058629915,-0.023255939,-0.006721724,-0.044462506,-0.056669645,-0.054085653,0.025773106,-0.007384429,0.008565047,0.028067512,-0.035485357,0.020582844,-0.001903189,-0.020582844,0.016840508,-0.040185552,0.01656206,-0.076851524,0.020404637,-0.011627969,0.031319782,0.029314958,-0.017219197,-0.031186126,0.004210127,0.03492846,-0.0066716033,-0.013621654,-0.018388676,0.012997932,-0.018678261,0.010163335,0.026396828,0.004627798,0.000028040538,-0.028602133,0.029916406,0.05453117,0.0091832,-0.043660577,0.008035996,0.016172234,0.0140560325,-0.028913993,-0.0540411,-0.0023709808,0.030428749,0.0036504474,-0.022398321,-0.010258008,0.029604543,-0.012819725,0.016005166,-0.027621998,-0.0776089,-0.037824314,-0.062327698,0.020248706,-0.02287725,0.0029014235,-0.07373291,0.04183396,0.043170508,-0.015158685,-0.0025756399,0.0052375984,0.0045192037,-0.033881497,-0.04677919,-0.0035975424,0.045843605,0.029983232,0.021674357,-0.04094293,-0.009884888,0.004251894,0.007161671,0.005685899,0.012285106,-0.041499823,-0.020504877,-0.0249489,0.011460901,0.016005166,-0.020070499,-0.021373633,0.00036650657,-0.041388445,0.032745432,0.05457572,0.06125846,-0.0003605896,-0.000626507,-0.014345618,0.008498219,-0.06896589,0.0024099636,0.035240322,0.022275804,0.014746582,-0.055333097,-0.00051547604,-0.010358249,0.028000686,-0.037000112,0.017831782,-0.0069946023,0.03927224,-0.004984211,0.046467327,0.022621078,0.016227923,0.015916063,0.0005610718,-0.012897691,0.034059703,-0.0037618263,-0.026931448,-0.02824572,0.0038787744,-0.0019602708,-0.004650074,-0.0065880693,-0.032344468,0.0044217473,0.0068498095,0.005864105,0.035485357,0.011950969,-0.0008339504,0.0085427705,0.013777585,-0.007930187,0.009366975,0.0069444817,0.042190373,0.06281777,0.016239062,-0.014211963,0.04114341,-0.004527557,0.015737856,0.04412837,0.02702055,0.00081097847,0.008620736,-0.044306573,-0.021997357,-0.012730622,-0.031564813,0.021106325,0.03466115,-0.06722838,0.01183959,-0.00833672,0.026820067,0.007278619,0.0060701566,0.026953723,-0.0009042584,0.051011592,0.013900102,0.04230175,-0.060233776,-0.034594323,0.010313697,0.025728554,-0.011850728,0.021095186,0.05577861,0.0018990122,-0.0066548963,0.02548352,0.019936845,0.015882649,0.041700304,-0.009160925,0.034327015,0.0023974334,0.030673781,0.02463704,0.038470313,0.013777585,-0.014590652,-0.05315007,-0.006810827,-0.059431843,0.022498563,-0.030072335,-0.017486507,0.010029681,-0.03009461,0.030696059,-0.05738247,0.041544374,0.0290922,-0.008125099,-0.008364565,0.00009554232,-0.020293258,-0.018533468,-0.0037228437,-0.013788722,0.0028137125,0.025038004,0.03163164,0.009829199,-0.02064967,-0.025839932,-0.05377379,0.04620002,0.044106092,-0.040274654,0.014011481,-0.02913675,-0.0006080598,-0.00546871,-0.0060868636,0.001417298,0.020905843,-0.008013721,0.009951715,-0.016394991,-0.020415774,-0.013398896,0.037200592,-0.004747531,-0.010954127,-0.012173727,-0.02367918,0.015348029,-0.021852564,-0.0093725445,0.037356522,0.008565047,0.037044663,0.00448579,-0.014312204,0.036376387,-0.026374552,0.038893554,-0.013766447,0.0029960957,-0.013733033,-0.010670111,0.04691284,-0.025238486,-0.0031130437,-0.008637443,0.0054492187,0.04348237,0.030005507,0.016305888,0.028958546,-0.016127681,-0.04412837,0.023389595,-0.013978067,0.03922769,0.022119874,-0.008141806,-0.057917092,-0.025528071,-0.047046497,0.028446201,0.0051150816,0.008353426,-0.010113215,0.030428749,-0.06660465,-0.08990514,-0.004157222,-0.014724307,-0.013510275,0.024882073,-0.018589158,-0.011059937,-0.05430841,-0.03074061,-0.010675679,0.045375813,-0.032143984,-0.0775198,0.026797792,0.0052849343,0.020783326,-0.005351762,-0.016005166,0.014234239,0.03662142,-0.019736363,-0.0435492,-0.015303478,-0.036710527,-0.049140424,0.0036058957,-0.021095186,0.035151217,-0.0073343087,0.028913993,-0.024392005,-0.029225854,0.018110229,0.0456654,0.007495808,0.015214374,-0.0443734,0.0076573077,-0.009868181,-0.03731197,-0.016105406,-0.024325179,0.034171082,-0.0040486273,-0.0058362605,0.0214516,0.014646341,-0.015459408,-0.017709265,0.041477546,0.010335973,0.011705935,0.031319782,-0.019212881,-0.034215637,-0.0023709808,0.021117462,-0.017553333,-0.006281777,0.013532551,-0.052882757,-0.0044941436,0.032210812,-0.009105235,0.040475138,-0.0070669986,-0.011221436,-0.01821047,0.029604543,-0.04232403,-0.029203579,0.019970259,-0.045108505,0.0054547875,0.009667699,0.0022303648,-0.003934464,-0.022053046,0.044997126,0.02027098,-0.0021343005,0.0052431673,0.01253014,-0.0066437586,-0.01168366,0.0225097,-0.011583418,-0.012441036,-0.022554252,-0.028691236,0.016996438,0.030807437,0.0058585363,0.0067662755,-0.006721724,0.03154254,0.004586031,0.038180728,0.018967846,-0.007941324,-0.017842919,-0.052169934,0.03982914,0.014367893,0.0052181073,-0.0155819245,-0.057872538,0.000989185,-0.022799285,0.0031631642,-0.0020939256,0.016328163,0.029225854,-0.014958203,-0.02797841,-0.014223101,0.01481341,0.046467327,0.01199552,0.020961532,0.024703866,-0.027644273,0.00003245654,-0.02962682,0.025394417,0.023122285,-0.025238486,-0.031230677,0.03938362,-0.023345042,-0.0044468073,-0.004889539,-0.0057304506,0.014011481,0.016383855,0.0155819245,0.008787804,-0.0013497745,0.017932022,-0.06005557,0.024057869,-0.0030378627,0.0036198182,-0.020727636,-0.039361347,0.0048394185,-0.036955558,0.0008262931,0.0024517307,-0.010681248,0.02659731,-0.048026633,0.012674932,0.012819725,-0.028579857,-0.006276208,-0.025795382,-0.016595474,-0.020037085,0.021206565,-0.039160863,0.016651163,0.023055457,-0.012786311,-0.0014479272,0.0011799214,-0.008876908,-0.01141635,-0.050922487,0.003566913,0.014289929,0.012997932,-0.04620002,-0.020805601,0.022966353,0.03481708,0.030116888,-0.033302326,0.024146972,-0.020794462,0.012140313,-0.012630381,-0.009400389,-0.053951997,-0.027042827,0.021585254,0.030451024,-0.010335973,0.02213101,0.0353517,-0.006164829,0.0024670453,-0.009322424,-0.00289307,-0.01577127,0.020850152,0.00584183,0.003736766,-0.0022790933,-0.0060478807,0.042814095,0.013220689,0.013978067,-0.019569295,-0.01141635,0.020516016,0.018009987,-0.011059937,-0.000573602,-0.005897519,-0.021485014,-0.005780571,0.015882649,-0.03350281,0.0040012915,-0.03223309,0.016740266,0.017508782,0.028535305,-0.021975081,-0.033413704,-0.012897691,-0.0046472894,-0.04105431,-0.0055967956,-0.002235934,-0.010870593,0.022075322,-0.02940406,-0.029203579,-0.016885059,-0.017085541,-0.0033246637,-0.02686462,-0.00961201,-0.008921459,-0.024770694,-0.010592145,0.01412286,-0.0031241814,-0.016484095,0.016595474,0.024815246,-0.013075897,0.00023824669,0.000052687497,-0.003853714,-0.0030267248,0.008732115,-0.0005593315,0.01550396,-0.009188769,0.017887471,0.02548352,0.017319437,-0.01645068,0.019123778,0.014223101,-0.0108873,-0.040007345,-0.0025867778,-0.0131427245,0.016339302,-0.0186894,0.043660577,-0.0013455978,0.045888156,0.048605803,0.014690893,-0.031342056,-0.058540814,0.003138104,0.020827876,0.010865023,0.035864044,-0.06700562,-0.004689057,-0.010904006,0.007395567,-0.024302902,-0.052570898,-0.0011311931,-0.020805601,0.018110229,-0.024859797,-0.04348237,-0.029025372,-0.02214215,0.04034148,0.016250199,-0.00053357513,0.030985644,-0.011627969,0.020783326,0.0019129347,-0.0026953723,-0.010324835,0.03722287,-0.060367428,0.02118429,-0.012151451,0.008308874,0.021518426,0.012485588,0.009689975,-0.008804511,-0.015281201,0.0374679,-0.011950969,-0.0031436728,0.01905695,0.0008701486,0.001253014,-0.017987711,0.00092305365,0.008826788,-0.039740033,0.014456997,0.006938913,-0.016283613,0.020293258,0.0051373574,-0.054709375,0.023389595,-0.032745432,-0.010675679,0.0011075251,-0.005546675,-0.0387599,0.022687906,-0.024882073,0.03147571,-0.017341714,0.03334688,-0.005919795,-0.012864277,-0.03503984,0.006025605,0.00833672,-0.0074456874,0.004725255,-0.027399238,-0.018009987,-0.0034221204,0.008526064,-0.022543114,-0.03285681,0.015726717,-0.0094059585,0.012385347,-0.020504877,0.017976575,-0.013788722,0.004995349,-0.006220518,-0.0016553707,0.0020744342,-0.020449188,-0.0071839467,-0.017764954,-0.021095186,-0.015693303,-0.012931104,0.0044245315,-0.033770118,0.012396485,-0.007729704,-0.10282511,0.027755652,0.032478124,-0.04820484,-0.04040831,0.008381272,0.010079801,-0.0017542195,-0.0024740065,-0.041076582,0.022041908,0.0052014003,0.01550396,-0.025995864,0.02298863,-0.011672521,0.0029738199,-0.010347111,0.0038286538,-0.011873003,-0.02372373,-0.013554826,-0.036821906,0.016261337,0.017553333,0.0011799214,0.0009975383,0.0016247415,0.021830289,-0.028913993,0.011020954,0.025127107,0.02176346,-0.00034405675,-0.02786703,0.011271557,0.0013184492,0.008665288,0.019068088,-0.017297162,0.01231852,-0.0093892515,-0.018488917,-0.010425076,-0.017152369,0.034059703,-0.015058444,-0.0024224936,-0.025149383,-0.013087035,0.020772187,-0.0017723186,-0.010898437,-0.018544607,0.034906186,0.026062692,-0.0059921914,-0.00056664075,0.017297162,-0.022175563,0.012329658,0.005053823,0.008915891,0.000404097,0.0374679,-0.044930298,0.0051345727,-0.017441954,-0.009149786,0.017954297,0.018399814,0.0071226885,0.02203077,0.021106325,0.0031826554,-0.0013560395,0.009222182,0.024057869,-0.023077734,0.015693303,-0.019836603,-0.011817314,0.0023180759,0.0095229065,-0.01157228,-0.011438625,0.0002201476,-0.018923296,-0.0043354286,0.03488391,0.046066362,-0.033725567,-0.031898953,-0.013053621,-0.035218045,-0.0027886522,-0.050610628,0.004371627,0.030963367,-0.033302326,0.051724415,0.030495577,0.024592487,-0.06789665,0.0030128025,0.015036168,-0.019313121,0.011861865,0.030673781,-0.006699448,0.01475772,-0.039784584,-0.0093725445,0.0046695652,-0.028022962,-0.015370305,0.0042602476,0.035774942,-0.028267995,0.012307382,-0.010324835,-0.0036755076,0.009300148,-0.0074401186,0.008164082,0.01905695,-0.028869443,-0.02367918,0.021485014,0.03769066,-0.02882489,0.04094293,-0.0016344871,-0.02690917,0.0016943533,-0.01959157,0.02617407,0.016595474,-0.025839932,-0.00981806,-0.024080144,-0.02659731,-0.031898953,0.019669535,0.014468134,-0.018132504,0.04301458,0.052437242,-0.014579514,-0.00828103,0.012507864,-0.02532759,0.014100584,-0.0072062225,0.016472956,0.0637088,-0.0073398775,-0.03163164,0.019513605,-0.023077734,-0.039561827,0.025438968,0.04927408,0.0057582953,-0.008035996,0.0103192665,0.0010574046,0.034438394,-0.036933284,0.036019973,-0.0046055224,0.014635203,-0.02118429,-0.008748822,0.026998274,0.03588632,0.013332069,0.014323342,0.004889539,0.03223309,0.0058696745,-0.0036699388,0.020482602,0.042190373,0.002436416,-0.030673781,0.011627969,-0.00026261085,-0.027644273,-0.020883566,0.029938681,-0.0040040757,0.011705935,-0.008698702,0.01379986,0.01609427,-0.044106092,-0.00610357,-0.03595315,-0.0019519173,0.018477779,0.027777927,0.03626501,-0.0034917323,0.02633,-0.0041488684,-0.00849265,0.04820484,0.02341187,0.019146053,-0.0046834876,0.008108392,0.024280626,0.007189516,-0.03610908,-0.02314456,-0.01220714,-0.0045999535,-0.014846823,0.029649096,-0.023345042,-0.0063263285,0.0051512797,0.028223444,-0.026686413,-0.004452376,0.008381272,0.0037451196,-0.06206039,-0.006471121,0.033235498,0.00039957222,0.00902727,-0.03270088,0.012251692,-0.054709375,-0.008837925,0.024258351,0.038737625,0.012418761,-0.013532551,-0.022899527,0.015938338,-0.07444574,0.003547422,-0.04167803,0.025795382,0.03227764,-0.02224239,0.005123435,-0.036487766,0.017553333,-0.013499137,-0.02744379,0.033369154,-0.010335973,-0.009534044,0.0036226027,0.004432885,-0.007941324,0.0022679553,0.026953723,0.010024112,-0.034705702,-0.03216626,0.020248706,0.017130094,-0.006911068,0.0030434318,0.008152944,-0.006732862,0.038403485,0.009116373,0.0148356855,0.01995912,-0.0032856811,0.012608105,-0.0028791477,0.017497644,-0.0038035936,-0.0026382906,-0.0019644476,-0.040207826,-0.022498563,-0.0070837056,-0.015492822,-0.0036309562,-0.018978985,0.024971176,0.024236076,0.005864105,0.03089654,-0.032411296,-0.0015022245,0.012864277,-0.023812834,-0.018555745,0.012285106,0.015225512,0.016361577,-0.007712997,0.0007055165,0.0059643467,-0.025884485,0.012463313,0.022609942,0.017118955,-0.01884533,0.0169853,-0.020204155,-0.009884888,0.00015549555,0.0408761,0.00092583813,-0.019168328,0.00448579,-0.0070280163,-0.032634053,-0.0214516,0.030161439,0.0015467762,-0.04878401,0.036710527,0.026820067,-0.019023536,-0.030606955,0.019725224,0.013610517,0.02797841,0.007473532,-0.014902513,0.023590077,-0.033948325,-0.029582268,-0.047536567,-0.021050636,-0.06486714,0.02904765,0.013788722,0.022598803,-0.0026160148,-0.011110057,0.027577445,0.0457545,0.03290136,-0.022565389,0.04241313,-0.03009461,-0.0094059585,0.018255021,0.053951997,-0.045420364,-0.008810081,0.035641287,0.02410242,0.042435408,-0.020259844,0.03731197,-0.025706278,0.011227005,0.014423583,-0.0006585285,0.052259035,0.006777413,-0.018032264,0.01922402,-0.01550396,0.02878034,0.027042827,-0.017219197,-0.035908595,0.0024503383,0.007501377,0.00074415107,-0.05185807,-0.022342632,0.015570787,0.0048756166,0.0225097,0.022899527,0.021685496,0.0054185893,0.020950394,0.015225512,-0.043504644,-0.0021510073,-0.006810827,-0.030495577,-0.01582696,-0.014746582,-0.021841425,-0.01205121,-0.004544264,0.015782407,0.015459408,0.0071226885,0.008693133,-0.0734656,-0.00030942485,0.02840165,0.0021482229,-0.0011701758,0.0029543284,-0.0043660575,0.038269833,0.0022623863,-0.020293258,0.028357098,-0.019023536,0.028624408,0.006398725,0.00028175412,0.018678261,-0.0039623086,0.025104832,-0.015203237,0.0075626355,0.008052703,0.004689057,-0.00416836,0.002235934,-0.014133997,0.0014493195,-0.011605694,-0.05426386,-0.01863371,-0.017007576,-0.0457545,-0.024748418,-0.016239062,0.020616258,-0.023545524,-0.008091685,0.009211045,-0.028156616,0.043504644,-0.00029132576,-0.006721724,-0.012240554,-0.026931448,0.0037562575,0.02160753,0.016528647,-0.0075403596,0.009706682,0.005234814,0.021663219,0.01279745,-0.005023194,0.004691841,-0.014111722,-0.00050224975,0.024748418,-0.03838121,-0.011271557,0.044417955,0.0012008051,0.004338213,0.01385555,0.008843495,-0.028357098,-0.051947176,-0.0018892667,-0.024146972,-0.013499137,-0.02782248,-0.018856468,0.010909575,0.027265584,-0.023478698,0.015659891,0.028936269,-0.03296819,0.03630956,0.014579514,-0.008720977,-0.0045414795,0.038715348,0.01884533,0.031097023,0.0129756555,0.02341187,0.0055299685,0.012552416,-0.011627969,-0.003928895,-0.019123778,0.0029376217,0.004825496,-0.0090217,-0.0057193125,0.031163849,0.02383511,-0.037935693,0.0050788834,-0.034572046,0.008464806,0.022153286,0.015593063,0.0008520495,-0.008899184,0.023857387,0.0021245547,0.006927775,-0.005791709,-0.01656206,0.007356584,-0.052259035,-0.0047809444,-0.042346302,0.03653232,-0.023879662,-0.025394417,-0.021808011,0.013454585,0.025661726,0.02808979,-0.014523825,-0.041076582,0.0046584276,-0.009940578,0.013543689,-0.007863359,0.036554594,0.01863371,-0.026575034,-0.01609427,-0.00035745703,-0.04172258,0.010954127,-0.009121941,0.014401307,-0.01980319,0.014111722,-0.017564472,0.0009738703,-0.031386606,-0.021072911,-0.0103860935,-0.008503788,-0.025884485,-0.022119874,-0.030005507,-0.0339706,-0.029760474,0.017174644,0.02336732,-0.009639855,-0.009723389,0.024481108,0.021808011,-0.019881155,0.0006178055,0.008052703,-0.035440803,-0.0049591507,-0.034215637,0.00079079106,0.017085541,0.0011165746,-0.038626242,0.008347858,0.01677368,0.0072452053,0.033681016,0.016016303,0.028446201,-0.0052737966,0.012652657,0.017865194,-0.03550763,-0.0009731742,-0.014791134,-0.032634053,-0.009589734,-0.012340795,0.004263032,0.051679865,0.031186126,0.00051756436,0.0057304506,0.034059703,-0.015348029,0.031141574,-0.026441379,0.018912157,-0.001142331,-0.045108505,-0.004586031,0.02341187,0.007841083,-0.0032578364,-0.00387599,0.03238902,-0.01873395,0.0030573541,-0.009043977,-0.012441036,0.0047419616,0.0053434083,0.033881497,-0.0120957615,-0.054709375,-0.023233663,-0.01231852,-0.010163335,0.02855758,-0.008097255,0.033168674,0.06446618,0.007974738,0.006142553,0.038915828,-0.041856237,0.008125099,-0.016116545,-0.024080144,-0.00368943,0.017976575,0.048516702,-0.003090768,0.0037200593,0.0015732286,0.00082768535,0.008125099,-0.00003128184,-0.0038954811,0.023901938,0.03561901,-0.011048798,0.029003097,0.013599378,-0.016751405,-0.023055457,-0.0034527497,-0.0020827877,0.005610718,0.0036086803,0.0023194682,-0.013031346,0.042680442,-0.0290922,0.0018294004,0.0067607067,-0.0042212647,0.01922402,0.007534791,0.0073231705,-0.014479273,-0.011928693,0.00028140604,0.0050733145,0.017475368,-0.003747904,-0.015704442,0.03281226,-0.041455273,0.02149615,-0.020694222,0.00022971923,0.0318544,0.005663623,0.010107646,0.037824314,0.025550347,0.008186358,0.014746582,0.020360084,0.012919966,-0.010196749,0.018399814,0.038336657,0.032634053,-0.023924213,0.019613845,0.026084967,-0.0070224474,-0.021830289,0.030874263,0.012251692,0.020371223,0.031297505,0.009734526,0.011026523,0.016038578,-0.0064878277,-0.0024224936,-0.017876333,0.010063094,0.008013721,-0.030406473,-0.027488342,0.0084425295,-0.012452175,0.016305888,0.031408884,-0.026686413,-0.016606612,-0.014512686,-0.039561827,0.008141806,-0.01821047,0.0052431673,-0.0023166835,-0.019346535,0.02076105,-0.010018542,0.007874496,0.03477253,0.0007034281,-0.020872429,-0.0037200593,0.004349351,-0.0050955904,0.02690917,-0.006025605,0.005293288,-0.03292364,0.0408761,0.03557446,-0.031364333,0.015013892,0.008247617,-0.04691284,-0.026040414,-0.005981053,-0.016896198,-0.020460326,0.04432885,-0.028178893,0.0076740147,-0.026508207,-0.022810424,-0.030205991,0.016283613,-0.0183664,0.008487081,-0.0012091585,0.04241313]},{"id":"guide-sending-without-reply-1","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Sending to the same channel\nUse message.send() when you want to post in the channel without replying. Same signature as reply(): pass a string or object with content and/or embeds.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!hello') {\n await message.send('Hello! This is a regular message, not a reply.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.008299562,-0.014940332,0.012866843,0.0031998986,0.021228049,0.012665098,-0.034072474,0.019434761,0.008910401,0.042433683,-0.022629054,0.016890533,0.026271671,0.011398588,-0.020544358,-0.0029253012,-0.02358174,-0.023447243,0.0050296127,0.028087376,0.023604155,0.029746167,-0.0056236396,0.06379623,-0.032010194,-0.039183345,-0.009538052,0.04698415,-0.020387445,-0.04801529,0.04335274,-0.023043754,0.0027193534,-0.0014472395,0.0042870794,0.05536777,0.04265784,0.042433683,-0.041783616,-0.010288991,-0.014368721,-0.017843217,0.008131441,0.0068649314,-0.021452209,0.037345227,-0.041424956,-0.0015887412,0.02541986,0.049898244,-0.039071266,0.0245008,0.037659053,0.030956637,0.0041469787,-0.060075153,-0.026518248,-0.014301473,-0.012822011,0.042456098,-0.020387445,-0.027795967,-0.023783484,0.033041336,-0.019401137,0.0130461715,-0.014256641,0.004026492,-0.02707865,0.0821326,-0.012485769,0.0016377765,0.018134626,-0.04359932,-0.015624023,-0.016363755,0.010087246,0.02064523,0.0005138191,-0.04595301,0.013393621,0.016778452,-0.07724589,-0.03882469,-0.097734205,0.03667274,-0.0389816,-0.073883474,0.0064670453,-0.037121065,0.0053938744,-0.020981472,-0.02997033,0.003054194,0.06760696,-0.017574225,-0.031472206,0.011723622,0.013640198,0.047297977,0.09755488,-0.047073815,-0.070610724,0.008428454,0.027504558,0.006170032,0.009879897,0.0067416425,0.022292813,-0.0175406,-0.027751135,-0.015276574,0.042164687,0.022472143,0.0071227164,-0.019176975,0.022225564,-0.04859811,0.022976505,0.0017064258,-0.03626925,0.022494558,0.06065797,-0.008607783,0.015960265,-0.07101421,-0.014357514,-0.013539325,-0.039250594,-0.0040713246,0.09020239,-0.010776541,-0.006001911,0.022057444,-0.035776097,0.013102212,0.004850284,-0.016453419,-0.031718783,-0.015736103,0.026787242,-0.018123418,0.014346305,0.017932883,0.019827042,-0.008265938,-0.07980132,0.024074893,0.0027389675,-0.033444826,0.014043688,0.019625297,-0.06406522,0.04680482,-0.0013127429,0.054202136,0.030463483,0.022752343,-0.028311538,-0.017910466,-0.008153857,-0.031875696,-0.0073020454,-0.016229257,-0.062765084,-0.027347645,0.016049929,-0.013606574,0.01265389,0.04541502,-0.02011845,0.017036237,0.02340241,0.0015565181,0.02633892,-0.06316858,0.010776541,-0.051019046,-0.015836976,0.033310328,0.024881873,0.022225564,-0.012844427,-0.041962944,0.013460869,0.0027263584,-0.010518756,-0.013348789,-0.00078036054,0.00704426,-0.04485462,0.010737313,-0.00060663576,-0.019120935,0.014581675,-0.015366238,0.054426298,0.03445355,0.008176274,-0.014054896,-0.0062204683,-0.008557347,0.0016377765,-0.042456098,-0.010406676,-0.011746038,-0.0011691399,0.011914158,-0.030665228,0.0064670453,0.0350812,0.039362676,0.0042786733,-0.040147237,-0.063527234,-0.016453419,-0.043375157,0.032705095,-0.025509523,-0.024702545,-0.08374656,0.0069938237,0.04702898,-0.015007581,-0.012452145,0.03916093,-0.0038583716,-0.037928045,-0.043150995,-0.0012672102,0.05595059,0.042523347,-0.011236072,-0.050750054,0.027235564,0.0022836404,0.037233144,0.026607914,-0.012900467,-0.019132143,0.0011887539,-0.038376365,0.015041204,-0.02012966,-0.032413684,-0.011252883,-0.02398523,-0.039542004,0.026473416,0.016722413,0.06805529,-0.01736127,0.01055238,-0.014200601,0.014682547,-0.034520797,0.023873148,-0.005477935,0.049360257,-0.017731138,0.0015130868,-0.028871939,-0.010754125,0.0064222133,-0.054605626,-0.017529393,-0.009437179,0.019502008,0.0037995293,0.025711268,-0.0132255005,0.0034324657,0.0075822463,-0.010317011,-0.024343887,0.03990066,0.0016840097,-0.04025932,-0.008675031,0.0010808764,-0.014559259,-0.012844427,-0.019053686,-0.01195899,-0.0034520796,-0.011701205,0.012990131,-0.013819527,0.01437993,0.013707447,0.016195634,0.015881808,0.014749795,-0.010053622,-0.005912247,0.07137287,0.062675424,0.031270463,0.026585497,0.025218114,-0.015366238,0.01742852,0.028244289,-0.012261608,-0.010563588,0.017462144,-0.030508315,-0.012485769,0.06303408,-0.05330549,0.012541809,0.006573522,-0.06953475,-0.015388654,0.008131441,0.011219259,-0.011734829,0.038488448,0.021721203,0.024254223,0.031091133,-0.017585432,0.039990325,-0.07137287,-0.038040124,-0.04779113,0.032077443,0.001428326,0.029185764,0.05021207,0.011364964,-0.045639183,0.042231936,0.030687643,0.021642746,0.0053266264,-0.020779727,0.0078120115,0.00353614,0.049539585,0.024366302,0.010950265,0.015478319,0.0038975996,-0.026069926,0.030485898,-0.0050940593,0.017462144,-0.020465901,-0.025554357,0.004421576,0.009532447,0.018123418,-0.07083488,0.016587915,0.01592664,-0.024523215,-0.020432277,-0.018470868,-0.013259124,-0.04548227,-0.012788386,-0.018392412,0.014682547,0.016307713,0.01719315,0.018392412,-0.045863345,-0.016587915,-0.015164493,0.04064039,0.0040124822,0.011712413,0.03272751,-0.024119725,-0.025554357,-0.016352547,0.015836976,0.0004630326,0.036426164,0.01265389,0.02582335,-0.05352965,-0.029185764,-0.03978858,0.030216906,-0.0122504,-0.023940397,-0.012160735,-0.0038947978,-0.0058225826,-0.0040741265,0.007896072,0.058864683,0.030216906,0.0503914,0.021878116,0.0104346955,0.0054218946,0.02288684,0.039721332,0.0013582757,-0.00086231943,0.007660703,0.007694327,0.019064894,-0.044540796,0.008607783,0.00014850668,0.045863345,0.018157043,-0.0051725158,0.017294023,0.051915694,-0.02806496,-0.031292878,0.020813351,-0.0038163413,0.023335163,-0.019412344,0.0021057127,-0.02541986,0.0077503673,-0.04422697,0.012317648,-0.005256576,0.038914353,-0.03606751,0.0031242443,-0.0702969,-0.0701624,-0.032279186,-0.0016447814,-0.0064502335,0.01667758,-0.008949629,0.005861811,-0.05187086,-0.017686304,-0.0034969118,0.011084762,-0.010950265,-0.051915694,0.010014393,0.007425334,-0.015018788,-0.015052413,0.005587213,0.006562314,0.023559323,-0.04756697,-0.0648722,0.015164493,-0.021295296,-0.015825769,0.00049840804,-0.017450936,0.04306133,0.025330195,0.036448583,-0.038398784,-0.020376237,-0.010557984,0.03405006,0.012015031,0.00957728,-0.013348789,0.033489656,-0.015792144,-0.029140932,-0.022169525,-0.03266026,0.02828912,0.030754892,-0.0073692934,-0.01546711,0.00796332,-0.029073684,0.0114154,0.033668984,0.048284285,0.03236885,0.0015915432,-0.0051220795,-0.05003274,0.041357707,0.04144737,-0.04859811,-0.032413684,-0.0061868443,-0.025576772,-0.0031550664,0.013797111,-0.009622112,0.044877037,-0.03391556,-0.0042758714,0.0045168446,0.033131,-0.032503348,-0.021149592,0.011449024,-0.047073815,-0.0060131196,0.029477173,-0.0011523277,-0.040797304,-0.048284285,0.009061709,-0.012485769,0.027526973,-0.00065812276,0.0023382797,-0.00888238,-0.010272179,0.02490429,-0.03357932,0.008490099,-0.031068718,-0.040617976,0.021351337,0.052453678,-0.020196907,0.006214864,-0.027728718,0.011314527,-0.012003822,-0.028378785,0.025688853,-0.027325228,0.012082279,-0.027504558,0.04073006,-0.012754762,0.021878116,0.030754892,-0.06608267,-0.016195634,-0.03938509,0.0008546139,-0.025554357,0.009829461,0.015422278,-0.0034044455,-0.033960395,-0.005542381,0.02011845,0.06397556,-0.024007645,0.013393621,0.03236885,-0.019188182,-0.0131134195,-0.023940397,0.022091068,0.050167236,-0.019199392,-0.019423552,-0.008030568,0.02806496,-0.012183151,-0.014178185,-0.0014031079,0.001091384,0.0047970456,-0.004334714,-0.0081146285,0.009823857,-0.008960837,-0.04070764,0.006001911,0.011264091,-0.010826977,-0.00739171,-0.0066799982,0.0033708212,-0.06760696,0.0031046302,-0.018201875,0.003917214,0.02674241,-0.04113355,0.040909387,0.03380348,-0.031248046,-0.0034184556,-0.01720436,-0.010782145,-0.0043375157,0.0040489086,-0.019804627,0.0078232195,-0.000544291,0.0030401838,-0.024635296,-0.0057609384,-0.0066239582,0.008658219,-0.03440872,0.016834492,0.020499526,0.01506362,-0.03606751,-0.027213149,0.001550914,0.024142142,0.023223082,-0.03162912,0.009554864,-0.002643699,0.014940332,0.014066104,-0.024859456,-0.068324275,-0.00839483,0.019468384,0.008277146,0.008899192,0.022763552,0.04415972,-0.000065672175,0.011544293,-0.0062372806,0.017394895,-0.028647779,0.023850733,0.020790935,-0.00030699553,0.007251609,-0.0045812908,0.06635166,-0.019176975,0.04158187,-0.012093487,-0.017977715,0.0122504,0.014223017,-0.006203656,-0.009666944,-0.01403248,0.0050296127,-0.03420697,0.03709865,-0.012440937,0.0042506536,-0.014155769,-0.00029491185,-0.0077391593,0.021687578,0.0040377006,-0.0075766426,0.004163791,0.022416102,-0.050122403,0.0043711397,-0.028401202,0.003723875,0.008176274,-0.011062346,-0.009521239,0.00025690955,0.0047550155,-0.018997647,0.023626572,-0.007924092,0.0065791258,-0.04420455,-0.0052313576,-0.0035809723,0.0031438584,0.003931224,0.016419794,0.025262946,-0.024837041,-0.035372607,0.004362734,0.0080025485,-0.0078120115,0.007711139,-0.01880711,-0.007212381,0.009616508,-0.009627716,-0.011129594,0.024747377,-0.029992744,0.013259124,0.019793417,-0.021597914,0.0010136281,-0.023379995,-0.0015789341,0.027751135,-0.002869261,0.038600527,-0.014245433,0.018930398,0.040079992,0.000497007,-0.02656308,-0.020488318,-0.009633319,0.0047494117,0.012900467,0.018201875,-0.05657824,-0.011258488,-0.0156128155,0.027616637,-0.03093422,-0.048149787,-0.015825769,-0.009666944,-0.013954024,-0.02828912,-0.034543213,-0.01518691,-0.009907917,0.0038639756,-0.0073300656,0.004841878,0.021362545,-0.011667581,0.026988987,0.015724896,-0.025285363,0.0040545124,0.05187086,-0.031830866,0.0078120115,-0.006848119,0.019871874,0.020152075,-0.00119716,-0.062809914,-0.000040585404,-0.0343863,0.01506362,-0.039138515,-0.016184425,0.018269124,0.0041021467,-0.005861811,-0.011460233,0.015724896,0.008831944,-0.015780935,-0.005884227,-0.0064446293,-0.008658219,0.0031494624,0.0051753176,-0.042478513,0.023335163,-0.043038916,-0.012138319,-0.017058654,-0.0020440684,-0.028468449,0.024680128,-0.04480979,0.014357514,-0.0029869457,0.0022780364,-0.007968924,-0.01397644,-0.037591804,0.015859392,0.0036594286,-0.018997647,-0.00028527994,-0.018291539,-0.011353755,0.024769792,0.0175406,-0.028199457,-0.0622271,0.0018157043,-0.019625297,-0.0062092603,0.015825769,0.01891919,-0.0066687902,-0.0034632878,0.021183217,0.007593455,-0.004354328,-0.020544358,-0.041940525,-0.011925367,-0.020634022,-0.024254223,0.0023677007,0.006892951,-0.019681338,0.026988987,-0.00039158127,-0.08033931,0.009005669,0.012810802,-0.031360127,-0.04180603,0.0016377765,0.0014430366,0.015624023,0.0027193534,-0.023648988,0.030620396,-0.005447113,0.014469594,-0.018941605,0.026518248,-0.024680128,0.03427422,-0.023469659,-0.0073020454,-0.022326438,-0.0329965,-0.0370314,-0.045101196,0.047073815,0.00032555885,0.00747577,-0.002401325,0.024814624,0.02817704,-0.016072346,0.023895565,0.0073244614,0.0185157,-0.026876906,-0.017383687,0.037860796,0.019120935,0.014940332,0.0004731899,-0.023783484,0.0075990586,0.014682547,-0.021855699,-0.02633892,0.005298606,0.041649118,-0.018011337,0.0057945624,0.0026759221,-0.015601607,-0.006427817,-0.02093664,-0.020376237,-0.015590399,0.04375623,0.049718913,-0.006881743,0.009958353,-0.008775904,-0.041828446,-0.010036809,0.0093643265,-0.0015565181,-0.002399924,0.020656439,-0.039071266,0.001532701,-0.0037687072,0.016587915,-0.005096861,0.022001404,0.02398523,0.040348984,0.058685355,0.011079159,-0.012171944,0.016610332,0.0010367447,-0.0036538246,0.010036809,-0.015713688,0.0019067697,0.014626507,0.012104695,0.004827868,-0.0020889004,-0.00042240342,0.0067920787,0.0025946638,0.031427376,0.04985341,-0.045235693,-0.031404957,-0.002388716,-0.02835637,-0.012519393,-0.07173153,0.028132208,0.026719993,-0.055053946,0.04940509,0.01055238,0.02294288,-0.038510863,-0.008988857,0.027280396,-0.012922883,0.012452145,0.008916005,-0.033624154,0.028715027,-0.02150825,0.006001911,0.019591672,-0.0054246965,-0.005001593,0.01915456,-0.010451508,-0.008456474,0.027863216,0.013707447,-0.0091177495,0.0066351662,-0.02075731,-0.026159592,0.005096861,-0.01144342,-0.025576772,-0.010160098,0.032906838,-0.012071071,0.04400281,-0.011421004,-0.0449667,0.008237918,-0.012485769,0.011869326,0.017002614,-0.009812648,0.013539325,-0.0031382544,-0.012127112,-0.011090366,-0.0131806685,-0.0034548817,-0.016419794,0.035776097,0.021934155,-0.0058898306,-0.04922576,0.019423552,-0.015399862,-0.009807045,-0.017484559,0.025554357,0.054829787,-0.013651406,-0.02696657,-0.023133418,0.028782275,-0.019883083,0.05308133,0.027347645,-0.005309814,0.013954024,0.015601607,-0.01690174,0.01616201,-0.02099268,0.0042898813,0.00030997267,0.017563015,-0.014761003,-0.027414894,0.004662549,0.002404127,0.027795967,0.015265365,0.005895435,0.009005669,0.021541875,-0.00075163995,0.024299055,0.036448583,-0.016464626,-0.0017428519,0.008562951,0.007481374,-0.019771002,-0.019132143,0.030979052,0.013427245,0.022113485,-0.011645165,-0.009711776,0.022124693,-0.024142142,0.016072346,-0.039183345,0.0067416425,0.0156128155,0.010395467,0.0078456355,-0.026585497,0.029768584,0.0018563335,-0.029992744,0.041940525,0.011000702,0.022124693,-0.008663824,0.017294023,0.0066968105,0.008691844,-0.017271606,-0.01518691,-0.031023886,0.0029421134,-0.03472254,0.023200667,0.0035025158,-0.019838251,-0.008843152,0.052946832,-0.051422536,-0.004600905,-0.004665351,-0.011678789,-0.05998549,-0.009156978,0.033422407,-0.0036202006,0.023200667,-0.0071451324,0.03232402,-0.032637846,-0.02633892,0.0013617782,0.029813416,0.03474496,-0.012754762,0.0035697643,0.018033754,-0.07711139,0.011236072,-0.024433551,-0.014223017,0.005979495,-0.031898115,-0.0051220795,-0.027168315,0.022416102,0.02725798,-0.042456098,0.043330327,-0.008669428,0.02633892,0.024007645,0.020320196,0.0055788076,0.010770937,0.02093664,0.007021844,-0.040281735,-0.0031242443,-0.017058654,0.021463418,-0.002877667,-0.01638617,0.012822011,-0.014458386,0.027437309,-0.008271541,-0.007873656,0.015130869,0.028311538,-0.0047746296,0.019860666,0.009997581,0.008109025,-0.009633319,-0.036134757,-0.024523215,-0.019905498,-0.017966505,0.0015831372,-0.019670129,-0.016442211,0.032503348,0.013998856,0.02795288,-0.011398588,-0.030844556,-0.017170735,0.02725798,-0.00003176344,-0.046401333,0.011521877,0.02593543,0.0185157,-0.0075430186,-0.0022640263,-0.0027894038,-0.029297845,0.00014658029,0.027213149,0.008630199,-0.016318923,0.020028787,-0.031180797,-0.016105969,0.0043207034,0.032974087,-0.036112342,0.0013659812,0.005979495,-0.008988857,-0.02351449,-0.013673822,0.00197682,-0.0006948992,-0.034565628,0.010709293,0.001524295,-0.028132208,0.017910466,0.033310328,0.0018787496,0.031651538,0.011084762,0.0131134195,0.0026773233,-0.01454805,-0.015556775,-0.043913145,0.0032531368,-0.047925625,0.039654084,0.024702545,0.030822141,-0.029365094,-0.007033052,0.0010654654,0.06998307,0.039026435,-0.03391556,0.0076214746,-0.043509655,-0.017439727,-0.0067584547,0.054471128,-0.019120935,-0.018101003,0.01834758,0.041738782,0.048553277,0.016856909,0.036896903,-0.007649495,0.0055395793,-0.0042982874,-0.002612877,0.011208051,0.0026535061,0.02220315,0.027190732,-0.016296506,-0.0073524816,0.00928587,-0.053260658,-0.01017691,0.000987009,-0.0066799982,0.03019449,-0.06644133,-0.02656308,-0.00393963,-0.0055479854,0.016632747,0.019132143,0.006130804,-0.0051276833,-0.014604091,0.012261608,-0.034363884,0.020544358,-0.024411134,-0.02029778,0.012160735,-0.0029729356,-0.050481062,-0.052498512,0.01017691,-0.023469659,0.013707447,0.03526053,-0.018235499,-0.064110056,-0.005088455,-0.018706238,-0.014906708,0.009039293,0.011017514,-0.008579763,0.026473416,0.0068873474,0.014514426,0.03317583,-0.01437993,0.020051204,0.009969561,-0.0058281864,0.0130237555,-0.010204931,0.0131582515,0.0103450315,-0.004620519,0.029589254,-0.0131582515,0.036246836,0.012530601,0.0020580783,-0.009762213,-0.010395467,-0.052812338,-0.0040629185,-0.0027978097,-0.033444826,-0.01695778,0.0036089923,0.019502008,-0.0077279513,-0.0071507366,0.012631473,-0.006786475,0.013886775,0.00021943262,-0.03019449,-0.025061201,-0.0091177495,-0.006366173,-0.00097510044,0.036089923,-0.04467529,0.01506362,0.013920399,-0.001992231,-0.012956507,-0.014648923,-0.0025049995,-0.0059963074,0.008540534,0.029432341,-0.015366238,0.0038583716,0.016352547,-0.03662791,0.0130237555,-0.0050184047,-0.0014808638,-0.022640264,-0.061375286,0.018560532,-0.023424827,-0.003740687,-0.010770937,0.008736676,0.009840669,-0.012721138,-0.052184686,0.021620331,0.042837173,-0.02956684,-0.0055732033,0.011213655,-0.014671339,0.035686433,0.0042422474,0.01678966,0.04144737,0.011432212,0.0065791258,-0.017753553,-0.0053798645,0.0006451634,-0.019445969,-0.017215567,-0.005503153,0.0042226333,-0.037255563,0.009963958,0.010922246,0.016991405,-0.03420697,-0.006354965,-0.032749925,0.012956507,0.009325098,0.03185328,-0.0071339244,-0.017338855,-0.012855634,0.021351337,0.011146407,0.03071006,0.012295232,0.0015957463,0.00032363247,0.0029561236,-0.028468449,0.035708852,-0.01259785,-0.024007645,-0.028558115,0.010311407,0.003516526,0.043711398,-0.019468384,-0.038264286,0.014480802,-0.008445267,0.0023312746,-0.018201875,0.008534931,0.026473416,-0.016094761,-0.0071843606,-0.0040713246,-0.04783596,0.014884292,-0.036314085,0.015287781,0.006825703,0.0039228178,-0.018773485,-0.023895565,-0.01190295,-0.018896773,-0.0029337073,-0.011981406,-0.029073684,-0.03405006,0.013147044,-0.04456321,-0.021216841,-0.006808891,0.00008033896,-0.00015778834,0.02541986,0.041312877,-0.00483067,0.0010360442,-0.011880534,0.032346435,-0.032749925,-0.00352213,-0.020566775,0.012384896,-0.0027837998,0.015646439,-0.010916642,-0.010019998,-0.0062092603,-0.016049929,0.033736233,0.007246005,0.03824187,0.021205632,0.025733685,0.014503218,-0.027325228,0.02288684,-0.032458514,-0.040931802,0.0028104188,0.000030471889,0.009151374,0.038197037,0.007660703,-0.029634086,0.014615298,0.015646439,-0.014604091,0.034431133,-0.010950265,-0.007458958,-0.0034352676,-0.0402369,-0.007873656,-0.008333186,0.011813286,0.0031326502,-0.02432147,0.029185764,-0.012889259,0.017652681,-0.00043571298,-0.002409731,0.00090925314,0.0068985554,0.026182007,-0.008097817,-0.018706238,-0.009795836,-0.010059225,-0.0031802845,0.011421004,0.0065679178,0.0035977843,0.027818382,0.022382477,0.015825769,0.0029645294,-0.03346724,0.00041434763,-0.007033052,-0.0003754697,0.014368721,0.008378018,0.03983341,0.00871426,0.0030289758,0.00039088077,-0.00017915369,-0.013942815,-0.032817174,0.018538116,-0.0073132534,0.033332743,0.00017328697,0.007884864,0.018560532,-0.014940332,-0.0092298305,0.007699931,0.002830033,0.011779661,-0.02479221,-0.0026983384,-0.013539325,0.0382867,-0.022685096,-0.008859964,-0.004130167,-0.0062316763,0.018616572,-0.012059863,0.009706172,-0.005917851,-0.035843346,-0.012866843,0.0033119791,0.010339427,0.003917214,-0.00082589325,0.037928045,-0.03909368,-0.002378909,-0.018291539,0.014917916,0.002184169,-0.018683821,-0.00022013312,0.0021267277,0.025330195,-0.009151374,0.03949717,0.008557347,0.016711203,0.008512515,-0.01046832,0.027033819,0.065813676,-0.055233274,0.022091068,0.043733817,0.026832074,-0.02582335,0.03427422,0.0058281864,0.0038415594,0.018896773,0.007257213,-0.022438519,0.035036366,-0.0175406,-0.0165655,-0.02329033,-0.009812648,-0.009392347,-0.0017022227,-0.044921868,-0.0060411394,-0.015545567,-0.0011004905,0.008703052,-0.016756035,-0.016643956,-0.013057379,-0.019176975,0.024680128,0.006848119,0.017338855,0.010221742,-0.067427635,0.03996791,0.0055367774,0.004769026,0.0542918,0.0042114253,-0.031180797,-0.008422851,0.020107243,0.008843152,-0.0012307841,0.008321978,-0.013707447,-0.019905498,0.030015161,0.039474756,-0.031337712,-0.0045616766,0.015455903,-0.052005358,-0.032906838,0.016184425,-0.03059798,-0.011432212,0.004811056,-0.03474496,0.01179087,0.0021253268,-0.014973956,-0.03835395,0.020813351,-0.007117112,-0.003073808,-0.000023795217,0.00839483]},{"id":"guide-sending-without-reply-2","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Sending to a specific channel (e.g. logging)\nUse message.sendTo(channelId, payload) to send to another channel—handy for logging, announcements, or forwarding. You only need the target channel ID.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst LOG_CHANNEL_ID = process.env.LOG_CHANNEL_ID; // Your log channel's snowflake\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!report' && message.guildId && LOG_CHANNEL_ID) {\n const embed = new EmbedBuilder()\n .setTitle('User report')\n .setDescription(message.content)\n .addFields(\n { name: 'Author', value: message.author.username, inline: true },\n { name: 'Channel', value: `<#${message.channelId}>`, inline: true }\n )\n .setTimestamp();\n\n await message.sendTo(LOG_CHANNEL_ID, { embeds: [embed] });\n await message.send('Report logged.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.008324626,-0.01822928,0.005267743,-0.012522313,0.00484031,0.021436501,-0.058390293,0.013559943,0.0035255852,0.025846431,-0.006726911,0.047730997,0.019137206,-0.023936247,0.017168067,-0.0043892944,-0.014644738,-0.015316839,-0.006738702,0.032944765,-0.012192157,0.058720447,-0.0010273131,0.0505609,-0.044806767,-0.03542093,-0.008519181,0.045726486,-0.027308546,-0.025681352,0.051551364,-0.015823863,-0.003445994,-0.023830125,0.013949054,0.039618615,0.024643723,0.04577365,-0.051928684,0.009698307,0.006550042,0.008047531,0.029713962,0.030303525,-0.015906403,0.034383297,-0.058012974,0.011926854,0.014291001,0.05263616,-0.03966578,0.024455061,0.0007258991,0.0524475,0.0046428065,-0.03685946,-0.02678973,-0.0183354,-0.030044116,0.048815794,-0.020139463,-0.025398362,-0.026931226,0.040184595,-0.0056892806,-0.0051645697,-0.046551872,0.020056924,0.030869504,0.0772563,0.021943524,-0.005238265,0.025799265,-0.03976011,-0.0048491536,0.0072987867,0.0024260506,0.015092806,0.009344569,-0.05607921,0.018276446,0.00453079,-0.10706459,-0.023275936,-0.06541788,0.019490944,-0.035397347,-0.060324058,0.007917828,-0.04650471,-0.021731282,-0.024195654,-0.044853933,-0.0050378134,0.07263413,-0.004763667,-0.0092030745,-0.01094818,0.005491777,0.020504992,0.09093416,-0.049334608,-0.08876456,-0.040750574,0.034996442,-0.003145317,0.023535345,0.040656246,0.02321698,-0.029077234,-0.04162313,0.002608815,0.0266954,0.005589055,0.009592186,0.01221574,0.029855456,-0.044217207,0.04924028,-0.0060223835,-0.043438982,0.010883328,0.06305963,-0.026907643,0.036576472,-0.06239932,-0.02895932,-0.035468094,-0.02650674,0.022026064,0.074001916,-0.023606092,0.029572466,0.03494928,-0.03308626,0.0076937936,0.023535345,0.0063967556,-0.01588282,-0.030680845,-0.006632581,-0.0018733356,0.033251338,-0.005138039,0.002025148,0.0039176443,-0.0734831,0.010688772,0.0028077925,-0.011637968,-0.020316333,0.008625302,-0.06438025,0.017403891,0.010075627,0.031482648,0.030091282,0.035279434,-0.041882537,-0.040444,-0.051928684,-0.024455061,0.014255627,-0.04209478,-0.04820265,-0.038934723,0.016590295,-0.015646994,-0.026294498,0.04006668,-0.03157698,-0.017085528,-0.0071396045,-0.0035373764,0.012852468,-0.035963327,0.0027576797,-0.055466063,-0.0038999575,0.039618615,-0.0060076443,0.028039604,-0.02903007,-0.051079717,-0.01587103,0.028558418,-0.013960846,-0.015293257,-0.0021961213,0.023700422,-0.049523268,-0.0024776375,0.0069686314,0.0076112547,0.008460226,-0.00657952,0.05112688,0.035020027,0.013206205,-0.039901607,-0.018571226,0.009539125,0.018288236,-0.03787351,-0.03485495,0.023429222,0.0006643635,0.029855456,-0.011508265,-0.0057659233,0.024855964,0.04452378,-0.003953018,-0.010600338,-0.074709386,0.0018379618,-0.050325073,0.014515035,-0.0396422,-0.025893595,-0.07249264,0.017238814,0.03787351,-0.03315701,-0.011296022,0.04400496,0.01992722,-0.045915145,-0.016036106,0.004940536,0.048532803,0.05301348,-0.0077586453,-0.03664722,0.05122121,0.013831141,0.02914798,0.042660758,-0.013371283,-0.035185102,-0.009627559,-0.043957796,0.045066174,-0.031128911,-0.040161014,-0.017179858,-0.017038362,-0.06324829,0.016885076,0.04218911,0.080652185,-0.0075994637,0.022792496,-0.029289477,0.036317065,-0.052777655,0.013276952,-0.015187136,0.033133425,-0.022155767,0.024124907,-0.016177602,-0.02293399,0.033133425,-0.021212468,-0.03167131,0.0020133567,0.018252863,-0.0062080957,0.026860477,-0.008159548,-0.013500987,0.006850719,-0.0024555288,-0.036034074,0.04275509,0.012522313,-0.030515768,-0.01605969,-0.033062678,-0.04221269,-0.0014761176,-0.015764907,-0.0075051337,0.0047725104,-0.009804429,-0.011856106,-0.0039648092,-0.0025867065,0.034831367,-0.0067976583,0.012133201,-0.016295513,-0.029525302,-0.014715486,0.044995427,0.053532295,0.01589461,0.018099576,0.04006668,-0.022415174,0.014220253,0.02029275,-0.028181098,0.011024823,0.021412918,-0.008253878,-0.03789709,0.041858952,-0.04688203,0.004946431,0.008796276,-0.04709427,-0.009108745,0.00086002465,0.00500244,0.017804794,0.020092297,0.020092297,0.013394865,0.030232776,-0.017344935,0.016000733,-0.0697099,-0.0207644,-0.021483665,0.033439998,-0.015175344,0.01009921,0.0505609,0.036411393,-0.023995204,0.021295005,0.032944765,0.040844906,0.0091677,-0.013748603,0.013312327,-0.0018232227,0.02931306,0.013123667,0.01015227,0.005441664,-0.017710464,-0.023075486,0.029548883,0.024360731,0.021825612,-0.02518612,-0.024407897,-0.01569416,0.029265894,-0.026483158,-0.057682816,0.012251114,0.012056557,-0.0003636865,-0.026247334,0.011850211,-0.028110351,-0.03711887,-0.020976642,0.0070040054,0.013783976,0.022485923,0.0067799715,0.019007502,-0.021412918,0.021436501,-0.017545387,0.05806014,0.008808067,0.0024761634,0.038321577,-0.029006487,-0.009981297,0.0044394075,0.005600846,-0.012321861,0.06315396,0.020787982,0.038109336,-0.039123382,-0.031152494,-0.02921873,0.04329749,0.010228913,-0.0035845414,-0.0023390902,-0.019007502,-0.011402143,-0.0019013399,-0.01100124,0.030633679,0.017734047,0.030586515,0.027237799,0.023712212,0.00807701,0.0017583709,0.03733111,0.01615402,-0.021448292,-0.0024732156,0.0064910855,0.012133201,-0.017793003,0.011237065,-0.015929986,0.015540874,0.023594301,-0.009957715,0.02003334,0.047613088,-0.015246092,-0.046198137,0.015611622,0.012545895,0.0035491677,-0.036906626,0.008265669,-0.032756105,0.021082763,-0.028228264,0.016719999,-0.010676981,0.050325073,-0.051740024,0.014915938,-0.07720914,-0.07720914,-0.037260365,0.035751086,0.008713737,0.026082255,-0.030492185,0.006090183,-0.03353433,-0.009191283,0.023782961,-0.012640225,-0.017333144,-0.032732524,0.019939011,0.008454329,0.0022992946,-0.019160789,0.022238307,-0.004188843,0.023452805,-0.04471244,-0.076265834,-0.008283356,-0.012557686,-0.056032043,-0.0072575174,-0.020316333,0.031529814,0.014137714,0.032850437,-0.017651508,-0.007770437,0.01009921,0.008283356,-0.003793836,0.004348025,-0.028912157,0.022332637,-0.039146964,-0.008678364,0.008648885,-0.010671086,0.010794894,0.0067976583,-0.026058672,-0.02057574,-0.008088801,-0.06173901,0.013701438,0.030940251,0.04454736,0.018913172,-0.012050662,-0.027756613,-0.037354693,0.037802763,0.045915145,-0.04292017,-0.011260648,-0.001820275,-0.03730753,-0.004999492,0.03751977,-0.011319605,0.018488687,-0.009150013,-0.032190125,-0.0026309236,0.056173537,-0.0143381655,-0.02950172,-0.008542764,-0.041245807,0.017120901,0.02085873,0.0066031027,-0.03252028,-0.027379293,-0.007587672,0.00042227432,0.012887841,0.0014495874,-0.005760028,-0.025704935,-0.0073105777,0.021672325,-0.041245807,-0.0067622843,-0.031907134,-0.01945557,0.0041033565,0.024879547,-0.008301043,0.015941776,-0.0059251054,0.028393341,-0.0052913255,-0.0041799997,0.008359999,-0.023818335,0.006709224,-0.04183537,0.0119386455,-0.014279209,-0.0103055565,0.01758076,-0.07423774,-0.014456078,-0.02443148,0.019714978,-0.025044626,0.01580028,-0.01212141,0.013512778,-0.034571957,-0.011154527,0.0031836387,0.03957145,-0.0034047249,0.007959097,0.022120394,-0.05065523,0.0005280271,-0.016566712,0.020658279,0.029006487,-0.012168575,-0.018712722,-0.011720507,0.0015932933,-0.011472891,0.008301043,0.016330888,-0.0027444146,-0.021967107,-0.011331395,0.0060548093,-0.0059133144,0.005727602,-0.032095794,0.023594301,-0.0030421438,0.0011186952,0.0023155077,0.018193906,0.0186066,-0.04419362,0.0060046962,-0.03466629,0.008413061,0.021860987,-0.03928846,0.030680845,0.025138956,-0.01748643,-0.024785217,-0.033227757,-0.018547643,-0.023488179,0.017887333,-0.013524569,0.0024098377,-0.006992214,-0.0023936247,-0.02311086,-0.006774076,0.0013176727,0.0046369107,-0.014019802,-0.009539125,0.0136424815,0.0044394075,-0.02641241,-0.03174206,-0.009108745,0.010718251,0.023806544,-0.021401128,-0.0005202891,0.005683385,-0.0003708718,-0.010128688,-0.029525302,-0.07640733,-0.011455204,0.02057574,0.016908659,-0.003908801,0.03110533,0.052494667,0.005329647,0.012699181,-0.0029360224,-0.0054062903,-0.016036106,0.024407897,0.009008518,-0.008784485,-0.009515543,-0.023924455,0.024089534,-0.01109557,0.027214216,-0.015305049,-0.013701438,-0.015328631,0.0036611846,-0.0051350915,0.008625302,-0.013984428,0.018630182,-0.014904146,0.04296733,-0.021412918,-0.016944032,-0.00996361,-0.01019354,-0.006237574,0.011484682,0.0057511847,-0.018807052,0.017981663,0.034218222,-0.011525951,0.01907825,-0.04296733,-0.0136660645,0.03497286,-0.00076716853,-0.015045641,-0.025987925,0.00550062,-0.0071690828,0.043721974,0.010488321,0.006939153,-0.059050605,-0.014727277,-0.02745004,0.0073105777,0.011466995,0.013901889,0.003687715,-0.016743582,-0.0207644,-0.009486064,-0.013406657,-0.018535852,0.0026957756,0.001424531,0.02528045,0.0008135966,-0.011620281,-0.010223018,0.024313567,-0.020929476,0.022533087,-0.00050039135,-0.008018053,-0.008189026,-0.020964852,0.0034872636,0.022238307,0.0058278274,0.01842973,0.013147249,0.030562932,0.038934723,0.00068131345,-0.055607557,-0.032567445,0.00048602078,-0.0019263963,0.007452073,0.023983411,-0.06419159,-0.015281466,0.0035992805,0.02077619,-0.030751592,-0.049476106,-0.005303117,-0.003843949,-0.025704935,-0.048910122,-0.026082255,-0.01785196,-0.037095286,0.0063083214,-0.004695867,0.0059545836,0.03447763,-0.020363497,0.031647727,0.002623554,-0.030751592,-0.01588282,0.052588996,-0.009433004,-0.021495458,-0.030327108,0.007799915,-0.0031895344,0.021188885,-0.060559884,0.004350973,-0.03733111,-0.014220253,-0.015611622,-0.02556344,0.012192157,0.013383074,-0.01005794,-0.021389335,0.016743582,0.0074874465,-0.00259555,0.0005917736,-0.0050849784,-0.013819351,0.00036294956,0.0070452746,-0.056928176,0.0186066,-0.029265894,-0.02087052,-0.016979408,0.0013397813,0.0041652606,0.0006750493,-0.041670293,0.010912806,-0.008177235,0.02987904,-0.024360731,-0.008973145,-0.047872495,0.0019087093,-0.00014471923,-0.023594301,-0.009108745,-0.024950296,-0.0036818192,0.01457399,0.014680112,-0.048910122,-0.111969754,0.015175344,-0.0071572918,-0.009144118,-0.004177052,0.010830267,0.0025351197,0.009344569,0.025044626,-0.018099576,-0.008955458,-0.019726768,-0.051645696,-0.028487671,-0.040349673,-0.017899124,0.00096098724,0.0028564315,-0.02301653,0.018193906,-0.0014341114,-0.10074448,-0.013984428,0.015163554,-0.05207018,-0.05612637,0.019620648,-0.0003266546,0.023499971,-0.0010140479,-0.021766655,0.014915938,-0.013512778,0.001217447,-0.0186066,0.04473602,-0.0136188995,0.031883553,-0.0081713395,-0.0071455003,-0.001724471,-0.02714347,-0.03664722,-0.027025556,0.037543356,-0.00021371648,0.024643723,0.007723272,-0.0054947245,0.0415288,-0.024973877,0.03167131,0.019467361,0.0136188995,-0.023747588,-0.023099069,0.03476062,0.003938279,-0.013996219,-0.00401787,-0.043863468,0.012321861,-0.00094182644,-0.018252863,-0.04145805,0.022981156,0.02914798,-0.018877799,0.008336417,0.0029124399,0.0009860437,-0.00079001405,-0.019809308,-0.020752609,-0.0069686314,0.031270407,0.039453536,-0.00084086385,-0.0018482791,-0.0041682087,-0.04360406,-0.0024850068,0.008943667,-0.008413061,0.0067976583,0.01278172,-0.040632665,-0.016826121,-0.04419362,0.011402143,-0.009975402,0.029643213,0.016661042,0.020469619,0.05626787,0.012557686,-0.0021592735,0.016201183,-0.0049257968,-0.014397122,0.00048196752,-0.027709449,0.017557178,0.02302832,0.022073228,0.0029905569,-0.004695867,-0.007870662,0.018276446,0.008330521,0.016201183,0.035114355,-0.039217714,-0.033793736,-0.0045072073,-0.009904654,-0.0022712904,-0.0543341,-0.011543638,0.0102466,-0.060276892,0.03605766,0.008389478,-0.011455204,-0.02209681,-0.014444287,0.014043384,0.008000366,0.02650674,-0.005188152,-0.031034581,0.018111367,-0.0150102675,-0.016790746,0.010240705,-0.025115373,-0.013807559,0.0045602676,-0.0020222003,0.0050584483,0.020469619,0.02603509,0.0049759094,-0.008766797,-0.020469619,-0.027756613,0.021636952,-0.020905895,-0.02012767,-0.008654781,0.032213707,-0.020705443,0.045561407,-0.013783976,-0.03214296,0.013453822,0.002896227,0.0257521,0.0122982785,-0.034359716,0.022485923,-0.008342313,-0.00057408673,-0.0003535534,-0.019703187,0.013217997,-0.006726911,0.038887557,0.027237799,-0.010506008,-0.054381266,0.010977658,-0.0046428065,0.0068448232,-0.007104231,-0.012416191,0.051174045,-0.008920084,-0.0043362337,-0.040278926,0.004952327,-0.02518612,0.047165018,0.009987192,0.018500479,-0.00005273823,0.011319605,-0.016826121,0.0088670235,-0.01870093,0.014550408,-0.019467361,0.01756897,0.009692411,0.0059811138,-0.0022432862,0.0065618334,0.05791864,0.013583525,-0.0053414386,0.003575698,0.032850437,-0.0040149223,0.006119661,0.03591616,0.013571735,-0.012021184,0.0063201124,0.012710973,-0.018559435,-0.009191283,0.019868264,0.0031099434,0.023794752,0.0035226373,-0.013052919,-0.0072693084,-0.03174206,0.020363497,-0.040373255,0.01484519,0.019196162,0.008242087,0.031506233,-0.017073737,0.013901889,0.00831873,-0.053343635,0.05159853,0.005238265,0.029737543,0.025681352,0.014008011,-0.014715486,0.03091667,-0.018311819,-0.019101832,-0.025893595,0.004701763,-0.024761634,0.0328976,-0.027662283,-0.0058101406,0.0026309236,0.036977373,-0.038934723,-0.012899633,0.0014908568,-0.021153511,-0.069992885,-0.007511029,0.029619632,-0.004701763,0.014408913,-0.01775763,0.009698307,-0.042424936,-0.033958815,0.0067504933,0.011549534,0.032072213,-0.0046752323,0.0054210294,0.015729534,-0.058720447,0.0024511071,-0.02219114,-0.0053797597,-0.0019809308,-0.037000958,0.023134442,-0.025445528,0.020846939,0.020045133,-0.04707069,0.027591536,0.010181748,0.0033103947,0.021507248,0.02565777,0.0173921,-0.0034194638,0.024738053,-0.009102848,-0.044476613,-0.023488179,0.012475148,0.004412877,-0.026483158,0.004887475,0.021059182,0.0033280817,0.0207644,-0.00629653,0.0032249081,-0.016271932,0.014503243,0.0016964668,0.014090549,-0.0077291676,0.009444795,-0.02039887,-0.0025218546,-0.027308546,-0.023075486,-0.024195654,-0.014491452,-0.030350689,-0.0035845414,0.0064321295,0.0055772634,0.038580984,-0.006284739,-0.036623638,-0.03197788,0.021342171,0.006992214,-0.034265388,0.0064321295,0.023841918,0.017510014,-0.023004739,-0.013076501,-0.016319096,-0.03994877,-0.02256846,0.028016021,0.005459351,-0.028841408,0.023405641,-0.0136660645,0.0026707193,0.033463582,0.024289984,-0.025138956,-0.009238448,-0.014326374,-0.004796093,-0.029525302,-0.0028682228,0.0022668687,-0.010052045,-0.030397855,0.0032455428,0.008472016,-0.025728518,-0.008029845,0.016495965,0.013913681,0.030279942,-0.008584034,-0.0070511703,-0.012086036,-0.00860172,-0.022651,-0.0362699,-0.031624146,-0.041245807,0.048438475,0.024761634,0.017545387,-0.021601578,0.0065618334,-0.0136188995,0.06683283,0.04999492,-0.021389335,0.023334892,-0.045443494,-0.007640733,0.008778589,0.054428432,-0.005724654,-0.027615119,0.031128911,0.012416191,0.060842875,0.0059545836,0.019797517,-0.0009300352,0.0060489136,-0.0068330322,0.02236801,0.04426437,0.0046162764,0.039429955,-0.007799915,0.00049854896,-0.0051056133,0.017168067,-0.013477404,0.004065035,0.010164062,-0.005839619,0.0324967,-0.04202403,-0.0136896465,-0.0060666003,-0.014208462,0.001756897,0.012640225,-0.00014379804,-0.008012158,0.00041232543,0.01654313,-0.05282482,0.028086768,-0.007852975,-0.01268739,-0.003098152,-0.012251114,-0.020882312,-0.03138832,-0.002863801,-0.021165302,0.0061727217,0.027332129,-0.013571735,-0.051645696,-0.029949786,0.006709224,-0.023287728,-0.003749619,0.011071988,-0.019880055,0.03270894,0.011808941,0.011791254,0.012828885,-0.0057629757,0.020068716,-0.0040444005,-0.008931875,0.010034358,-0.0024260506,0.027733032,-0.0064616078,0.0035167418,0.021471875,-0.00803574,0.007233935,0.020599322,-0.0037702536,0.006326008,-0.014173088,-0.047424424,0.00088287017,-0.008755007,-0.03327492,-0.025492692,0.025893595,0.013583525,-0.016283723,-0.009456586,0.003272073,-0.00095361774,0.022155767,0.01776942,-0.0047223973,-0.020646486,-0.0027267276,0.0013876833,-0.0071337093,0.034005977,-0.026860477,0.0036110717,0.014833398,0.00686251,-0.019514527,-0.012239322,-0.03136474,-0.021460084,0.0011349083,0.028841408,0.021188885,-0.006597207,0.039029054,-0.010895119,0.03252028,-0.004100409,0.0014532722,-0.011525951,-0.07848259,0.0065559377,-0.030138446,0.008802172,0.0070157964,0.0037879406,0.022426967,0.0017922707,-0.032260872,0.032874018,0.06522922,0.0075228205,0.0036582367,0.0030863609,-0.009161805,0.021129929,0.0008135966,0.026294498,0.02452581,0.020245584,0.004890423,0.007705585,-0.000980885,0.0062611564,-0.010105105,-0.028464088,-0.027827362,0.030586515,-0.014373539,-0.0123454435,0.008277461,0.024219237,-0.03504361,-0.0046074325,-0.02235622,0.014373539,-0.0074108033,0.016330888,-0.004872736,0.004619224,-0.0019322919,-0.000033807737,-0.00029901884,0.030232776,0.033840902,0.000042743297,-0.011349083,-0.000095619704,-0.008430747,0.049759094,-0.017616134,-0.018547643,-0.0070157964,-0.0068271365,-0.0034548377,0.031058164,-0.00018119843,-0.033628657,0.009739576,-0.007735063,0.013583525,-0.009957715,-0.008701946,0.008212609,-0.02301653,-0.019007502,-0.0031924823,-0.050325073,-0.020964852,-0.029006487,0.0096098725,-0.024973877,0.022981156,-0.0073459516,0.0027075668,-0.004297912,-0.009150013,-0.0060164877,0.0012734554,-0.031341154,-0.023405641,0.0010258391,-0.021295005,0.0010678455,-0.0058573056,0.008825754,0.002498272,0.021188885,0.033628657,-0.00022900828,0.03280327,-0.0046369107,0.036128405,-0.0143853305,-0.0037849927,-0.011195797,0.009256135,-0.011808941,0.007245726,-0.004542581,-0.0015932933,0.007735063,0.014998476,0.018394357,-0.0037525669,0.03119966,0.011384456,0.0016080324,0.0155055,-0.01588282,0.020563949,-0.021636952,-0.039807275,0.012793511,0.010511903,0.011891481,0.010794894,0.03320417,-0.013996219,-0.0035491677,0.020894103,-0.0133477,0.032543864,-0.028912157,-0.027898109,-0.007328265,-0.040892072,-0.006502877,-0.0069568404,0.0067328066,0.012510521,-0.021684118,0.026294498,-0.006709224,0.02537478,-0.017899124,0.013772185,-0.00237299,-0.014621155,0.014173088,-0.014491452,-0.006237574,-0.039052635,-0.024407897,0.0050112833,0.01446787,0.001407581,-0.010824372,0.025822848,0.052400336,0.012522313,0.015552665,-0.047589503,0.01983289,-0.023146233,0.0032308039,0.0043097036,0.014998476,0.01813495,0.017781211,0.005108561,0.010423469,0.0029655006,-0.013135457,-0.023476388,0.0026014457,-0.013229787,0.02405416,-0.03374657,-0.0006230941,0.020328123,-0.0043450776,-0.009692411,-0.013783976,0.0056037935,-0.021271423,-0.020835146,-0.013312327,0.02266279,0.03487853,-0.030610098,0.00049081095,-0.0112901265,0.0019706134,-0.012109619,-0.022238307,0.024478644,-0.011207587,-0.013972636,-0.008053427,-0.0074402816,0.008849337,0.0003174427,-0.006679746,0.034147475,-0.027119886,0.0099695055,-0.015328631,0.0077409586,-0.012628433,-0.037071705,-0.0017008885,-0.006550042,0.019809308,-0.0076466287,0.03608124,-0.0022727642,0.011343187,0.002992031,0.0008681311,0.018311819,0.047165018,-0.03891114,0.032001466,0.0415288,0.02414849,-0.021424709,0.044665273,0.021507248,-0.0020074612,0.02940739,0.0062198867,-0.02256846,0.022709956,-0.004006079,-0.017238814,-0.008878815,-0.00041490476,-0.022686373,-0.04313241,-0.03591616,-0.010629816,-0.012840676,-0.02641241,0.005079083,-0.028464088,-0.010488321,-0.0045632157,-0.019986177,0.04155238,0.0082244,0.021094555,0.003814471,-0.0657952,0.043674808,0.014715486,0.017085528,0.04942894,-0.0008872919,-0.02039887,0.008389478,0.025870012,0.010676981,-0.0064792945,-0.0032779688,-0.012557686,-0.023287728,0.02612942,0.03985444,-0.016189393,-0.0014031593,0.0155055,-0.029006487,-0.028133934,-0.012475148,-0.036340646,0.0013773659,0.006072496,-0.03898189,-0.0046103806,0.029077234,-0.03589258,-0.027874526,0.03664722,-0.018465105,-0.016142227,0.0044335118,0.003558011]},{"id":"guide-sending-without-reply-3","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: client.channels.send() — send by channel ID\nUse client.channels.send(channelId, payload) when you have a channel ID. Works even if the channel is not cached. No need to fetch first when you only need to send.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst ANNOUNCE_CHANNEL_ID = process.env.ANNOUNCE_CHANNEL_ID;\n\nclient.on(Events.Ready, async () => {\n if (ANNOUNCE_CHANNEL_ID) {\n await client.channels.send(ANNOUNCE_CHANNEL_ID, 'Bot is online!');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0048906556,-0.027151287,-0.019871913,0.00905227,0.02304214,0.024257211,-0.03523702,0.031503446,0.0033497263,0.042461164,0.0031867966,0.018822536,0.022644483,-0.0026966264,0.008991516,0.0033607725,-0.036673013,-0.024389764,-0.021727657,0.009344991,0.0039186,0.041577477,-0.018546384,0.056467608,-0.033292912,-0.05668853,-0.011510025,0.030465113,-0.017430728,-0.037777625,0.0547886,-0.02302005,0.0087485025,-0.02293168,0.01688947,0.052491013,0.0012344004,0.043035563,-0.0675137,-0.0061692405,-0.04232861,-0.010753367,0.042637903,0.00829009,-0.019838775,0.04352159,-0.048470236,-0.018203955,-0.008152014,0.049133003,-0.026554797,0.023881644,-0.002987967,0.04758655,0.023064233,-0.019308563,0.008726411,-0.034021955,-0.024544409,0.03194529,-0.02730593,-0.028167527,-0.040053118,0.043985527,-0.005727397,0.021208491,-0.02556065,0.007986322,0.011863499,0.07113681,0.013586689,0.009924911,0.024964161,-0.039699644,-0.026952457,0.010891443,-0.025383912,0.022445653,0.02186021,-0.026753627,0.015994737,0.0015616408,-0.09641026,-0.06817646,-0.062432494,0.021164306,-0.03399986,-0.053507254,0.009588005,-0.019518439,-0.0014594644,-0.0056611206,-0.035877697,-0.006666315,0.05297704,-0.010471692,0.0048575173,0.0050729164,0.00694799,0.045178503,0.09932643,-0.056379236,-0.06879504,-0.014260501,0.029250043,-0.024411855,-0.006362547,0.05708619,0.0100132795,-0.00086711795,-0.063802205,-0.013299491,0.010002233,0.02093234,-0.017055161,-0.007627324,0.035678867,-0.029890716,0.029338412,-0.007942138,-0.028079158,0.032232486,0.053683992,-0.0064951,0.0006165098,-0.066939294,-0.0170883,-0.0074064024,-0.0338894,0.016348211,0.0841712,-0.0077433083,0.037379965,0.03631954,-0.039500814,0.017386544,0.0313488,0.0117530385,-0.029868623,-0.021142215,0.01026734,-0.020026559,0.03589979,0.050281797,-0.004454335,-0.032431316,-0.063846394,0.0070197894,0.0032724037,-0.023903737,-0.021959625,0.01268091,-0.03978801,0.011112365,-0.015541847,0.03441961,0.0013372671,0.034971915,-0.038793866,-0.036142804,-0.019871913,-0.04109145,-0.005705305,-0.045001764,-0.06366966,-0.015055819,0.003421526,-0.022887496,-0.00056852837,0.044493645,-0.012161744,0.012415804,0.01846906,0.004537181,0.013432044,-0.036385816,0.02186021,-0.044383183,-0.016911563,0.036584646,0.043897156,0.048470236,0.018579522,-0.053021226,-0.0008691891,0.016248796,0.014879081,-0.028167527,-0.0104882615,0.020589909,-0.03196738,-0.015497662,-0.012835555,0.00455375,0.01333263,0.003277927,0.068220645,-0.0019468731,0.00669393,-0.05103293,-0.024566501,0.004288644,0.0053932527,-0.035126563,0.002318298,0.0017880857,-0.015199418,0.01420527,-0.008549673,-0.005553421,0.023064233,0.023417708,0.012791371,-0.035789326,-0.07007638,-0.010035371,-0.012868693,0.021539873,-0.04330067,-0.041157726,-0.0720205,-0.013288445,0.021175353,-0.032342948,-0.024190934,0.028521001,0.014934312,-0.058500085,-0.012415804,-0.015199418,0.05165151,0.056069948,-0.020103881,-0.01957367,0.03437543,0.026510613,0.054523494,0.0259804,-0.026157139,-0.03128252,-0.009880726,-0.03380103,0.017585373,-0.025162991,-0.022103224,-0.0103778,-0.0030597665,-0.049133003,0.036496278,0.016834239,0.06048838,-0.018645797,0.024787422,-0.029382596,0.014901173,-0.0060145953,0.0353033,-0.005034255,0.03194529,-0.01561917,0.026002493,-0.015398248,-0.004247221,0.017276082,-0.05103293,-0.037291594,-0.006461962,0.01993819,-0.019043457,0.01491222,-0.016547041,-0.0183586,0.008069168,-0.010571107,-0.039500814,0.038815957,-0.005467814,-0.04789584,-0.015696492,-0.029979086,-0.03733578,-0.01108475,-0.033292912,-0.005415345,0.021948578,-0.011101319,-0.014768621,-0.015144188,0.003976592,-0.009322898,0.0071689114,0.009521728,-0.012150697,-0.040141486,-0.01979459,0.06689511,0.060002353,0.016624363,0.038617127,0.061592992,0.009720558,0.027107101,0.029846532,-0.031591814,-0.014746528,0.028896568,-0.025317635,-0.008709841,0.048072577,-0.04402971,0.01496745,0.048160948,-0.044559922,-0.014404099,0.009394699,0.012769279,-0.016292982,-0.002242356,0.041356556,0.02282122,0.000025069443,-0.0019786307,0.0016776248,-0.060709305,-0.045598254,-0.030001177,0.03318245,-0.014757575,0.045509886,0.017640604,0.0038026161,-0.028521001,0.03654046,0.015044773,0.029073305,-0.0031702274,-0.027615221,-0.008522058,-0.022401469,0.019949237,0.041643754,0.02324097,0.005150239,-0.005119862,-0.025604833,0.031613905,0.006263132,-0.00070487853,-0.001999342,-0.011476886,0.008494442,0.009731604,0.0075334325,-0.072948374,0.0023196787,-0.0025530274,-0.0051281466,-0.04736563,-0.040804252,-0.02024748,-0.034485888,-0.0299349,0.0042775976,0.037092768,0.017353406,-0.005219277,0.031901103,-0.036871843,0.0043024514,-0.013675058,0.039014786,-0.018082447,-0.010438554,0.014194224,-0.0210428,-0.014017487,-0.0063128397,-0.0014346108,0.003131566,0.04838187,0.022777036,0.04608428,-0.03126043,-0.014834898,-0.025892032,0.02095443,-0.010035371,-0.025516465,-0.0152325565,0.005081201,-0.020866062,-0.013962256,-0.008533103,0.04131237,0.009665328,0.039721735,0.019905051,0.0006144387,0.011012951,0.014359916,0.053860728,0.026952457,-0.0052607,-0.006837529,0.009350514,-0.003288973,-0.014304685,-0.0016431058,-0.018369645,0.019860867,0.015265695,-0.0046421187,0.028587278,0.047409814,-0.015784862,-0.03397777,0.0168011,0.019220194,0.008770594,-0.010090602,0.008715364,-0.03965546,0.011217304,-0.035723053,-0.028388448,-0.009229007,0.046172652,-0.044559922,0.010780983,-0.07140192,-0.07321347,-0.021086983,0.031503446,0.009864157,0.046835415,-0.0066773607,-0.0063956855,-0.016933654,-0.01102952,0.0031122356,-0.020103881,-0.020291666,-0.056467608,0.01750805,0.0013980207,-0.009621143,-0.026289692,0.02304214,0.000970675,0.04250535,-0.053418886,-0.07939929,0.008439212,0.008660134,-0.049088817,0.015751723,-0.020490495,0.049133003,0.011708854,0.06256504,-0.034530073,0.00047014916,0.0019744884,0.004114668,-0.0024950353,0.029890716,-0.035480037,0.041643754,-0.026864087,-0.0302221,0.0047774334,-0.020236434,-0.00043528495,0.034132414,-0.0168011,-0.028521001,0.0029216905,-0.024942068,0.012183836,0.025406005,0.056865264,0.04360996,-0.00829009,-0.0148569895,-0.034905642,0.047453996,0.038285743,-0.018745212,-0.002802945,-0.012747186,-0.016414488,-0.0018861196,0.036385816,-0.009538298,0.03852876,-0.017607465,0.0047498182,0.039898474,0.044802938,-0.009008085,-0.02637806,-0.027526854,-0.031304616,0.01471339,0.03075231,0.020965476,-0.0066773607,-0.024942068,0.011543163,-0.0018861196,0.037998546,0.036253262,-0.00341048,-0.0017687549,-0.013796565,0.020280618,-0.026245506,-0.023285154,-0.040936805,-0.035877697,-0.005705305,0.061725546,0.0044046277,0.0071910038,-0.0048740865,0.0101513555,-0.014337823,-0.033624295,-0.00042458402,-0.024544409,0.0056721666,-0.031636,-0.007306988,-0.010808598,0.013177983,0.032409225,-0.05244683,-0.006511669,-0.037865993,0.032851066,-0.017916756,0.01669064,-0.015409294,0.017242944,-0.031812735,-0.010880398,0.028808199,0.06972291,-0.033226635,0.014437238,0.04049496,-0.032718513,-0.019308563,-0.027990788,0.013785519,0.035259116,-0.011162072,-0.036186986,-0.004796764,0.0046145036,-0.029227952,0.008842394,0.0051557617,0.000731113,-0.0170883,-0.0103888465,0.0061526713,0.0016113482,0.0015920176,-0.032917343,-0.004981786,0.009223484,-0.010786505,0.008632518,0.027836144,0.0071578654,-0.064685896,-0.0028581754,-0.0102507705,-0.001774278,0.029736072,-0.024014197,0.03857294,0.039854288,-0.036982305,-0.0024605163,-0.024544409,-0.031636,-0.01866789,0.022589251,-0.020037604,0.010543492,-0.010560061,-0.00170524,-0.04341113,-0.009648759,0.020821877,0.014989543,-0.015707538,-0.006334932,0.0032226965,-0.0021249913,-0.021175353,-0.011388518,-0.021727657,0.022997957,0.017474912,-0.019109733,-0.010642907,0.00892524,-0.006975605,-0.0038744155,-0.01612729,-0.07153447,-0.029758163,0.019871913,-0.0003194736,-0.0058378577,0.008245905,0.036164895,0.009753697,0.005581036,0.00404563,-0.0014649875,-0.020567818,0.02304214,0.024676962,-0.016171474,0.003739101,-0.016845286,0.045951728,-0.010869351,-0.00038385158,-0.0076162782,-0.030862773,-0.03245341,0.00682096,-0.024787422,-0.002178841,-0.006964559,-0.006473008,-0.014404099,0.01999342,-0.032851066,0.0022036948,-0.017143529,0.0035789327,-0.011040566,0.014470376,-0.0044764276,-0.016712733,0.012471034,0.024919976,-0.053021226,0.021164306,-0.05173988,-0.02374909,0.019496346,0.013608782,-0.017143529,-0.003849562,-0.0036286402,-0.002051811,0.0077543543,-0.00036969877,-0.0075279097,-0.034441706,0.0003655565,-0.020291666,0.008240382,0.013409952,0.027814051,0.009162731,-0.018623706,-0.034507982,-0.0059925034,0.011035043,0.0058930884,0.02352817,-0.017165622,-0.008190675,0.011200734,-0.014558745,-0.027571037,0.037622977,-0.009046746,0.025914125,0.02697455,-0.008676703,0.00854415,-0.026090862,0.009521728,0.02262239,0.012415804,0.025406005,0.0105214,0.03355802,0.03103951,0.017474912,-0.044869214,-0.04252744,0.0026538228,0.0002980718,0.0032254579,0.018932996,-0.0482935,-0.016171474,-0.016524948,0.0022975865,-0.02790242,-0.041820493,-0.0168011,0.006340455,-0.015508709,-0.03563468,-0.02355026,-0.010797552,-0.0040980987,-0.006887236,-0.021727657,0.01785048,0.02810125,0.0027546184,0.033933584,0.011631532,-0.02171661,-0.013763427,0.040428683,-0.030597666,0.010007757,-0.011322241,0.014845943,0.014934312,-0.0005360805,-0.04564244,-0.0011474125,-0.060311645,-0.0122280205,-0.039832197,-0.02679781,0.003896508,-0.004954171,-0.007478202,-0.02383746,0.021086983,-0.007831677,-0.016160429,-0.024831608,-0.011162072,-0.012459988,-0.010709183,0.0045703193,-0.048956264,0.028034974,-0.01993819,-0.0071302503,0.0019206387,-0.02171661,0.00782063,0.020468403,-0.048072577,0.010609768,0.00865461,0.015707538,-0.004241698,-0.0025129851,-0.062211573,-0.011283579,0.02053468,-0.015265695,0.0015119334,-0.009985664,-0.011322241,0.0037114858,0.0018184624,-0.036186986,-0.07617383,0.0021539873,-0.014393054,-0.01979459,-0.0023555784,0.010051941,-0.0029962517,0.02383746,0.021595104,-0.004092576,-0.01389598,-0.011962914,-0.04710052,-0.02666526,-0.04939811,-0.014337823,0.0009333945,-0.005981457,-0.017607465,0.029603519,0.013177983,-0.09163835,-0.011543163,0.0011529356,-0.048867896,-0.050060876,-0.0108638285,-0.0032033657,0.028697738,0.0065448075,-0.016513903,0.012570449,0.0026565844,0.008621472,-0.019982375,0.021639287,-0.0056390283,0.029161675,-0.009737127,0.008698795,-0.009146161,-0.04294719,-0.041047268,-0.028079158,0.028874476,0.0006617298,0.0137302885,-0.005050824,0.0043880586,0.0375567,-0.030818587,0.020457357,0.024875792,0.0066994526,0.0026662496,-0.015552893,0.044361092,-0.000036913785,-0.0035181793,-0.00042389365,-0.047409814,0.0035927403,-0.009289761,-0.009670851,-0.03256387,0.027548945,0.03731369,-0.0034767564,0.023086326,-0.011642577,-0.020777693,0.017276082,-0.004133999,-0.018712074,0.0029962517,0.019275425,0.042836733,0.004606219,0.013288445,0.0014035436,-0.0429251,0.024301395,0.016292982,0.0046255495,0.00027442627,0.0063901623,-0.028984938,-0.006500623,-0.0148569895,0.032895252,0.0067878217,0.01728713,0.012890786,0.024235118,0.053418886,0.037667163,-0.0024646586,0.006445393,-0.0023072518,0.014282593,-0.00669393,-0.008118875,0.014735483,0.013785519,0.018800443,0.00041422833,-0.004092576,-0.012084421,-0.00379157,-0.011289103,0.019308563,0.039522905,-0.05629087,-0.02536182,0.017143529,-0.022467745,-0.0015823522,-0.03978801,0.012261159,0.014072717,-0.07100426,0.05085619,0.001861266,0.015486617,-0.032917343,-0.0017646127,0.0064233006,-0.011388518,-0.0074505867,0.017154576,-0.033005714,0.032917343,-0.013177983,-0.004316259,0.0137302885,-0.026245506,-0.004023538,-0.0026220654,0.017552234,0.007196527,0.032585964,0.020015514,-0.005343545,0.009146161,-0.023925828,-0.036695108,-0.000362795,0.008395027,-0.01711039,-0.011228349,0.012813463,-0.01719876,0.04186468,-0.0063238856,-0.032144118,0.012703002,-0.0024398048,0.021628242,0.010361231,-0.023726998,0.02810125,-0.0066884067,0.0170883,-0.026731534,0.00585995,0.005456768,0.003896508,0.027968697,0.012371619,-0.020159112,-0.03523702,0.013785519,-0.010344662,-0.008152014,0.006456439,0.0033221112,0.042836733,-0.00015775196,0.008847917,-0.007588663,0.030398836,-0.016547041,0.032342948,0.042637903,0.008080214,0.010079556,0.017132483,-0.015431386,0.024190934,-0.02951515,0.007969753,-0.0010100268,0.028255895,0.020799786,-0.010278386,-0.010709183,-0.011184165,0.050591085,0.012250112,-0.0010100268,-0.00018174268,0.04360996,0.0032447886,0.025052529,0.019849822,-0.028631462,0.0019731077,0.010598722,0.024632778,-0.003976592,-0.010692614,0.021020707,0.018811489,0.015906367,0.018314416,-0.023815367,0.00096308085,-0.021937532,0.010593199,-0.04193095,0.024787422,-0.0041284757,-0.013873887,-0.0010928723,-0.02053468,0.026355967,0.0036203556,-0.03837411,0.057395477,0.018999273,0.022379376,0.010421985,0.029581426,-0.01135538,0.024190934,-0.00014006095,-0.024213027,-0.03914734,-0.011012951,-0.042858824,0.01677901,-0.011095796,-0.016856331,-0.0019786307,0.046305206,-0.040627513,0.000037798334,0.00045116368,-0.0053490684,-0.07440645,-0.006942467,0.029360505,-0.01177513,0.0009258003,0.028034974,0.003907554,-0.023064233,-0.01739759,0.00062686554,0.021528827,0.036385816,-0.0066276533,0.0050839623,0.01810454,-0.060753487,-0.000072705705,-0.016878424,-0.02567111,0.0056196977,-0.024743238,0.008129922,-0.029537242,0.031083694,0.03773344,-0.048912082,0.027769867,0.000007939377,0.03835202,0.027151287,0.020357942,-0.0056721666,-0.002860937,0.036275357,0.010924581,-0.04727726,-0.0015795907,-0.004131237,0.011051612,-0.019816684,-0.0028802676,0.012294297,0.0053932527,0.024566501,0.0065889917,0.000020948735,0.00890867,0.011819315,0.011819315,0.0070639737,-0.0035623636,-0.013465182,-0.00075044367,0.002628969,-0.022754943,-0.020888153,-0.02321888,-0.017066207,-0.030288376,-0.0007607994,0.019330656,-0.0133547215,0.038418297,-0.0066828835,-0.012813463,-0.019606808,0.01917601,0.022125315,-0.039412446,-0.009383652,0.020280618,0.026444336,-0.025472282,0.00063584046,-0.004760864,-0.010792029,-0.019330656,0.02911749,0.0005067393,-0.0350161,0.03307199,-0.019584715,-0.020380033,0.03978801,0.04961903,-0.03939035,0.008687749,-0.00854415,-0.02095443,-0.021816025,0.0144814225,-0.0050011165,-0.0023845744,-0.024014197,-0.010963243,0.018701028,-0.014470376,-0.0045288964,0.01527674,0.030155823,0.016812148,-0.009184822,0.025207175,-0.008715364,-0.02251193,-0.013034385,-0.039920565,-0.03817528,-0.05885356,0.041224003,0.011476886,0.041179817,-0.023108417,-0.0015091719,0.00834532,0.07582036,0.05081201,-0.03205575,0.0031011894,-0.056600157,-0.025008345,-0.010234201,0.048558608,-0.012261159,-0.004327305,0.015718585,0.020766648,0.053197965,0.008881056,0.021782886,0.0046448805,-0.017552234,0.009173777,0.0053214533,0.024632778,0.015088957,0.0341766,0.0117199,0.009013608,-0.0128797395,0.011797223,-0.010333616,-0.0037832854,0.011985007,-0.020589909,-0.0017590896,-0.0598698,-0.022103224,0.012890786,-0.009930434,-0.0051171007,0.022909587,0.0013966399,-0.011051612,-0.019242287,-0.008212767,-0.036960214,0.013321583,-0.032939438,-0.008643565,0.011830361,-0.01770688,-0.035347484,-0.030177914,-0.0037142474,-0.039125245,0.0032613578,0.028034974,-0.023395617,-0.07078334,-0.024986252,-0.00063653087,-0.0055727516,0.010190017,0.00848892,-0.02044631,0.025914125,0.008505489,0.02106489,0.025207175,0.0068099136,0.0046448805,0.009576959,-0.029250043,0.0019289233,-0.0104496,0.017375497,0.013200076,0.007842723,0.01344309,0.0042334134,0.022754943,0.008709841,-0.0055755135,-0.01527674,-0.019507393,-0.03563468,-0.019385885,0.0013089615,-0.019783545,-0.021009661,0.017022023,0.01603892,0.0078979535,-0.024036288,0.005056347,0.000760109,0.010504831,0.0077543543,-0.008881056,-0.01861266,0.00006994418,-0.014282593,-0.01719876,0.013222168,-0.024456041,0.009748173,0.011322241,-0.012471034,-0.011322241,-0.015088957,-0.025096714,-0.018446969,0.006108487,0.010549014,-0.011366425,0.010698137,0.018734166,-0.0196289,0.0039020309,-0.003346965,0.0061968556,-0.013122753,-0.053109594,0.025295543,-0.011095796,-0.025494372,0.00022972413,-0.0011004666,0.0071633887,-0.0033027804,-0.01618252,0.030663943,0.052402645,-0.0026206844,0.014790713,-0.008339797,-0.011195211,0.03744624,-0.0006116772,0.017253991,0.034949824,0.002548885,-0.01364192,0.016193567,-0.014127947,0.0019026888,-0.008124398,-0.025118805,-0.02084397,0.022268916,-0.028852385,0.0039434535,0.004816095,-0.008245905,-0.018734166,0.0029741593,-0.01160944,0.0066276533,-0.0040594377,0.035966065,-0.0028913138,0.014094809,-0.0068927594,0.011808269,-0.0031122356,0.033094082,0.029095398,0.026554797,-0.011305672,0.019407978,-0.033668477,0.036054432,-0.01841383,-0.010101648,-0.02324097,-0.003855085,0.004175422,0.03296153,-0.0028526525,-0.025516465,0.022754943,-0.00001304172,0.016547041,-0.01542034,-0.0027670453,0.0338894,-0.030266283,-0.008731933,-0.023461893,-0.06450916,-0.02019225,-0.03877177,0.007362218,-0.012095467,0.01612729,-0.017242944,-0.0033911492,0.016900515,-0.0064785313,0.0014553221,-0.005583798,-0.029294228,-0.030089546,0.0033552495,-0.05235846,-0.006202379,-0.048514422,0.014945358,-0.003786047,0.036673013,0.03053139,-0.011896637,0.044758752,-0.021517782,0.011498978,0.000004384995,-0.004203037,-0.011344333,0.010433031,0.007014266,0.00968742,-0.0063901623,-0.004506804,0.008356366,0.017231898,0.0144814225,-0.01491222,0.03581142,0.027018733,0.01496745,0.03143717,-0.031636,0.00043079746,-0.013420998,-0.04186468,0.0061526713,0.010930105,0.025803663,0.007572094,0.017861526,-0.02911749,0.010112694,0.009101978,-0.008383981,0.026621073,-0.012824509,-0.029294228,0.011443748,-0.027968697,0.011708854,-0.0015229795,-0.006594515,0.001993819,-0.024367671,0.021528827,0.000058337155,0.018226046,-0.014359916,-0.0045344196,-0.019109733,0.0006296271,0.01369715,-0.008251429,-0.018446969,-0.03735787,-0.0310616,0.014216316,0.0062962705,0.007218619,-0.0012054044,0.038617127,0.038219467,0.0025861654,0.0074064024,-0.028145434,0.03751252,-0.009781311,0.000068563415,0.008709841,0.006125056,0.023682814,0.011764085,0.014890128,0.016160429,-0.012448942,-0.009079885,-0.020457357,0.013984349,-0.016535996,0.025494372,-0.0126035875,-0.0035623636,0.01166467,-0.0024342819,-0.021120122,-0.009284237,0.015519755,-0.0059483186,-0.033049896,-0.013586689,0.004258267,0.032519687,-0.016160429,0.000497074,0.0015285026,-0.0047995257,-0.0036562553,-0.004802287,0.024919976,-0.0140064405,-0.011388518,-0.008881056,0.008892101,0.02064514,0.011322241,-0.008461304,0.035723053,-0.033823125,0.023461893,-0.017839434,0.011046089,-0.0036093094,-0.012294297,-0.0021277529,-0.012073375,0.020092836,-0.010261817,0.03196738,0.0029852055,0.011255965,0.008809255,0.0032696424,0.021186398,0.055230442,-0.05518626,0.032497592,0.04564244,0.015243603,-0.010184494,0.044582013,0.034839366,0.0010404035,0.028852385,-0.005302123,-0.022843312,0.035568405,-0.022489836,-0.03165809,-0.016591225,-0.010852782,-0.026709443,-0.015133142,-0.05540718,-0.011797223,-0.019905051,-0.020855015,0.0104496,-0.016414488,-0.007931092,-0.00674916,-0.02688618,0.023771184,0.006500623,0.0020241959,0.0207556,-0.057483844,0.01663541,0.0019206387,0.027350117,0.060179092,0.0013365768,-0.026355967,-0.008267998,0.008687749,0.028277988,-0.008428166,0.0070253126,-0.03143717,-0.013398905,0.020788739,0.02465487,-0.02177184,0.00043493975,0.026532706,-0.031812735,-0.010190017,-0.0035678868,-0.05876519,0.00046876838,0.0018681698,-0.02677572,0.00046013863,0.004495758,-0.041533295,-0.032828975,0.02750476,-0.011587347,-0.027018733,0.018082447,0.018402783]},{"id":"guide-sending-without-reply-4","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: client.channels.resolve() — get channel by ID\nResolve a channel by ID from cache or API. Use channel.isSendable() before sending. For sending when you only have an ID, prefer client.channels.send() which skips the fetch.\n\n```javascript\nimport { Client } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch channel (from API if not cached)\nconst channel = await client.channels.resolve(channelId);\nif (channel?.isSendable()) {\n await channel.send('Hello!');\n}\n// Or for webhooks: if (channel?.createWebhook) { ... }\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[-0.025951188,-0.023090428,-0.0035532466,-0.005386631,0.022636337,0.010075101,-0.036145486,0.026200937,0.019355545,0.028675722,0.019355545,0.0045323763,0.005017684,-0.0041322103,0.00095358695,0.006890801,-0.038733795,-0.030764531,-0.023045018,0.033920452,0.016392615,0.015700128,-0.011562242,0.02876654,-0.04713444,-0.025428986,-0.01581365,0.034033973,-0.014371918,-0.011460071,0.034692403,-0.020956209,0.008860412,-0.022579577,-0.008792299,0.058032576,0.005477449,0.034442652,-0.07247261,-0.0018716982,-0.009848055,0.012419335,0.013497796,0.0013530434,0.021716807,0.032172207,-0.057442263,0.012998299,0.017709471,0.01851548,-0.039505746,0.042434618,-0.0012373925,0.038279705,-0.010029691,-0.038438637,-0.013463739,-0.016494785,-0.060166795,0.038007252,-0.013827011,-0.039800905,-0.060575478,0.011624679,0.01596123,0.050267655,-0.031695414,0.0010479523,0.011130857,0.07696809,0.026813958,0.0041009914,0.045885697,-0.056079995,-0.01861765,0.0024577568,0.0038001575,0.015393618,0.015893117,-0.042548142,-0.008173603,-0.014451384,-0.097810775,-0.058077987,-0.06584291,0.018992273,-0.021637343,-0.06320919,0.01356591,-0.042139463,-0.015495788,-0.006902153,-0.04627167,-0.0058974815,0.049314067,-0.024066718,-0.010523513,0.020513471,0.011499804,0.03966468,0.07642318,-0.033920452,-0.063481644,0.002159761,0.050358474,-0.017005634,0.005749902,0.045068335,0.011692792,-0.010375935,-0.0571244,-0.017732177,0.01728944,0.025701439,-0.010529189,-0.01978693,0.019185262,-0.033897746,0.012725845,0.011726849,-0.039187882,0.014723836,0.062664285,-0.008111165,0.0012608066,-0.04967734,-0.00094649184,0.005630704,-0.043206573,-0.002260512,0.09980877,-0.0029459025,0.04586299,0.049087025,-0.04325198,0.010563246,0.021977909,0.0000406862,0.004889971,-0.01953718,-0.0095869545,-0.02158058,0.057714716,0.020297779,0.0413221,-0.006124526,-0.037916433,0.021841682,-0.0062153437,-0.015280096,-0.023430994,0.0066183475,-0.04763394,0.026450686,-0.01963935,0.03080994,0.0005949276,0.021047026,-0.046907395,-0.04972275,-0.04202594,-0.047724757,0.0033318782,-0.024044015,-0.039255995,-0.026359867,0.023953196,0.0022449025,0.0011557984,0.07378947,-0.012146882,0.033443656,0.0058038253,0.01892416,0.028516792,-0.03880191,0.056488674,-0.057623897,-0.005168101,0.02724534,0.030423965,0.04704362,0.00094294426,-0.035373535,0.0028962365,0.017675415,0.0069645904,-0.024339171,0.003865433,0.0016531679,-0.040777195,-0.012214995,-0.012214995,0.0007605991,0.02045671,0.0188674,0.04463695,0.0021725323,0.014598962,-0.04447802,-0.037371527,-0.008871764,0.008241716,-0.02147841,-0.018129505,-0.014428679,0.014258396,-0.0006037965,-0.02876654,-0.008105489,0.032580886,0.038166184,0.019457715,-0.02749509,-0.07074707,-0.022080079,-0.012930185,-0.007912502,-0.048178844,-0.00565057,-0.088320315,0.0057697687,0.023135835,-0.023238005,-0.020547528,0.009274769,0.00874689,-0.041662667,-0.022329828,0.029969877,0.04375148,0.044773176,-0.03044667,-0.021716807,0.035373535,0.039460335,0.036190897,0.042570848,-0.021364888,-0.043410912,-0.015597958,-0.04497752,0.00017507261,-0.030423965,-0.009598306,-0.017539188,0.0027358865,-0.07356242,0.05757849,0.016369909,0.06302756,-0.005199319,0.016528841,-0.029311446,0.021660047,-0.038574863,0.030083397,-0.026246347,0.016971577,-0.012544209,0.015654719,-0.034033973,0.0049098376,0.017993277,-0.053991184,-0.02667773,-0.012544209,0.04259355,-0.033897746,0.0163245,-0.002064686,-0.020626994,0.018856047,-0.051221244,-0.046385195,0.02524735,0.026132824,-0.032263026,-0.021228662,-0.005931538,-0.030423965,-0.023862379,-0.030060694,0.0057527404,0.001331758,-0.0010344716,-0.0216714,0.005034712,-0.0053667645,0.0036071697,0.008258744,0.016483432,-0.031400256,-0.052674327,-0.010222679,0.077512994,0.061120383,0.015461732,0.055989176,0.05639786,0.008446055,0.03732612,0.011505481,-0.031445663,-0.0036412263,0.02999258,-0.022363884,0.02060429,0.05371873,-0.03998254,-0.007339214,0.041435625,-0.040618263,0.0028721131,-0.004421692,0.00035475707,0.0022661882,-0.008582283,0.044160157,0.014405974,-0.008883117,0.005485963,0.00074569933,-0.029288743,-0.05135747,-0.03830241,0.007617343,-0.017993277,0.03612278,0.0100978045,0.03462429,-0.02260228,0.04263896,-0.009955902,-0.0042599225,0.00032513484,-0.03793914,0.0010997469,-0.047679346,0.022386588,0.035260014,-0.003669607,-0.013588614,0.02131948,-0.013554557,0.046498716,0.0073051574,-0.019593941,0.0068680965,-0.014746541,0.0043989876,-0.006896477,-0.028062701,-0.07860281,-0.012691788,0.029810945,-0.008116841,-0.042525437,-0.038529456,-0.020150201,-0.027903771,-0.022806622,-0.007889797,0.033375543,0.015075755,0.004325198,0.047860984,-0.02933415,-0.006646728,-0.0341702,0.023317471,-0.019298784,0.005378117,0.016574249,-0.010716501,-0.0418216,-0.0188674,0.007640048,-0.004467101,0.053945776,0.05626163,0.037666686,-0.031536482,-0.044296384,-0.011323845,0.0010862661,-0.009093133,-0.011533861,-0.020888096,-0.005170939,-0.00846876,-0.013100469,0.016426671,0.03809807,0.02162599,0.021296775,0.02524735,0.012714493,0.0009188208,0.0024336334,0.051130425,0.026904775,-0.001966773,0.006101821,0.0065161777,0.012328517,-0.027268047,-0.000072370436,0.0025216131,-0.026950184,0.01509846,-0.015722832,0.03916518,0.050948787,-0.0030537487,-0.028176224,0.0055938093,0.022704452,0.023385584,-0.017561894,0.00857093,-0.010444048,-0.010886785,-0.04472777,-0.027222637,-0.0013473673,0.04881457,-0.031536482,0.031173212,-0.06647863,-0.06638782,-0.015018995,0.023975901,-0.0068453923,0.016721828,0.010080776,0.008939878,-0.042775188,-0.022431998,-0.017630007,-0.021648694,-0.02458892,-0.06257347,-0.0063685984,0.0050063315,0.020683756,-0.016721828,0.012158234,-0.025338167,0.0285622,-0.040118765,-0.081009485,0.0053979834,0.0066126715,-0.019775577,0.0074754404,-0.037371527,0.039959833,0.017096452,0.04173078,-0.0484513,-0.010239707,-0.007696809,0.015995286,0.01479195,0.027971884,-0.020729164,0.030537488,-0.017380258,-0.030900758,0.0023711962,-0.025883075,0.023340177,0.015382266,-0.035850327,-0.0034056676,-0.009859408,-0.019730167,0.024066718,0.033829633,0.058940757,0.021637343,-0.025905779,-0.020275075,-0.036940143,0.035668693,0.040527444,-0.013032355,-0.034874037,0.0052475664,-0.021887092,-0.009218007,0.020842686,-0.00994455,0.019775577,-0.007202987,-0.009711829,0.047316078,0.06030302,-0.009672096,-0.012623675,-0.0012941537,-0.02352181,0.026155528,0.029152516,0.01688076,0.00714055,-0.043501727,0.009808323,-0.0051624244,0.022000613,0.04754312,-0.023272062,0.011965246,-0.030651009,0.03432913,-0.009819675,-0.020195609,-0.038574863,-0.019559884,-0.021762216,0.04259355,0.015382266,0.013645375,-0.017051043,0.030900758,-0.010069424,-0.030651009,-0.011079772,0.0083552385,0.011284112,-0.033443656,-0.0009358491,0.01168144,0.01943501,0.037712093,-0.03589574,0.0028536657,-0.020638347,0.010302145,-0.029969877,0.005772607,-0.03044667,0.020059383,-0.0351919,-0.006300485,0.015790947,0.058395848,-0.020309132,0.025883075,0.03907436,-0.037167188,-0.010154566,-0.023045018,0.035328127,0.02912981,0.0009848056,-0.022068726,-0.015904468,0.0045635947,-0.03228573,-0.0011451558,0.014326509,0.0015935687,-0.0018688601,-0.010092129,-0.008968258,-0.006379951,0.0023016639,-0.046430603,-0.007293805,0.00724272,-0.008956906,-0.011760905,0.030015284,0.009002315,-0.06003057,-0.0022832165,-0.008866088,0.016313149,0.023862379,-0.05390037,0.04972275,0.047089033,-0.02076322,-0.0046913074,-0.02066105,-0.033375543,0.011074096,0.015223335,-0.0127712535,0.006879449,-0.009399643,-0.0062664286,-0.044818588,-0.028039997,0.026745845,0.029674718,-0.021716807,-0.02647339,-0.00083367905,0.0028025808,-0.008434704,-0.023226654,-0.008633368,0.02933415,0.017607301,-0.007594639,-0.008196307,-0.006947562,-0.016176922,-0.0072086635,0.0052532423,-0.06452605,-0.01209012,0.024361877,0.005678951,-0.005585295,0.028130814,0.04586299,0.020638347,-0.0022576738,0.026087414,0.004776449,-0.01130114,0.022466054,0.04402393,-0.01597258,-0.011113829,-0.022420647,0.06343624,0.007918177,0.0040101735,-0.006238048,-0.029652014,-0.016426671,0.009149894,-0.03187705,-0.021296775,0.0035958176,0.008065756,-0.017471075,0.017573245,-0.021853035,-0.0133615695,-0.035214603,0.001656006,0.0056051617,0.0068283635,-0.0019568398,-0.026405277,0.015336857,0.0226931,-0.056579493,0.016154217,-0.017482428,-0.033284727,0.03821159,0.00025489295,-0.0060677645,-0.022148192,0.006090469,-0.028017294,0.0049098376,-0.017822994,-0.020513471,0.0017227002,-0.0006243724,-0.019593941,0.0037377202,-0.008883117,0.025837665,0.01555255,-0.022329828,-0.02223901,0.005383793,0.014508144,0.0013196962,0.009734534,-0.007685457,-0.002261931,0.011794963,-0.018799286,-0.029742831,0.01831114,-0.020377245,0.02177357,0.021024322,-0.013406979,0.012805311,-0.037961844,0.008287124,0.03405668,-0.0030849674,0.013634023,0.009530193,0.035941146,0.036486052,0.0163245,-0.039959833,-0.0484513,-0.008423352,0.013100469,-0.008616339,0.01702834,-0.05185697,-0.0067205178,-0.012691788,0.017868403,-0.017913813,-0.050630927,-0.01702834,-0.0063856267,-0.026042005,-0.0362136,-0.014326509,-0.01663101,0.023079075,0.00935991,-0.025519803,0.016449375,0.025814962,0.006283457,0.023907788,0.020740516,-0.0145422015,-0.010830023,0.033284727,-0.021228662,0.008434704,-0.022250362,0.024407284,0.030582896,0.0030282063,-0.04836048,0.017550541,-0.05262892,-0.017539188,-0.025315464,-0.020649698,-0.015382266,-0.012362574,-0.009183951,-0.007044056,0.03734882,-0.010052396,-0.02361263,-0.01943501,-0.023953196,-0.019866396,0.007747894,0.006090469,-0.040050652,0.014950881,-0.016710477,-0.02055888,-0.02524735,-0.026155528,0.016188273,0.00565057,-0.049768157,0.023238005,-0.0045465664,0.009853732,0.004872943,0.0014644371,-0.052265648,-0.04111776,0.0141221685,-0.017505132,-0.010330525,-0.011130857,-0.01585906,-0.005627866,0.008553902,-0.06434441,-0.07592369,0.00594289,-0.018731173,-0.022568224,0.0017368905,0.0062721046,-0.020070735,0.0068680965,0.00016691319,0.0050148456,-0.008207659,-0.02178492,-0.04836048,-0.019877747,-0.039414927,0.0024421476,-0.000031573378,0.0059258617,-0.020570233,0.011318169,-0.0020448198,-0.10543947,0.012941537,-0.0032041657,-0.029152516,-0.03137755,-0.0004899195,-0.0007020642,0.033988565,0.009144218,-0.010103481,0.006748898,0.015121165,0.022908792,-0.02248876,0.036054667,-0.009638039,0.017720824,0.012555562,0.002459176,0.01178361,-0.03437454,-0.03485133,-0.02667773,0.022193601,0.012124177,-0.004288303,0.0030055018,-0.016347205,0.045045633,-0.03457888,0.00075847056,0.031309437,0.025610622,0.01520063,-0.029674718,0.025814962,0.0056250277,-0.008247392,0.001083428,-0.026541503,0.011931189,0.0016162731,-0.009081781,-0.02713182,0.015018995,0.018390605,0.008241716,0.012544209,-0.012112825,-0.020888096,-0.009865084,-0.015416322,0.00042074185,-0.016460728,0.008797975,0.047089033,0.0062039914,0.03101428,-0.01841331,-0.058986165,0.016528841,0.012578266,0.017981926,0.0010812995,0.027654022,-0.017402962,-0.0099672545,-0.022965552,0.02815352,0.0040640966,0.008349562,0.02340829,0.025973892,0.05176615,0.023033665,0.0005619352,0.012793958,-0.012998299,-0.00026376187,-0.0017922326,-0.02622364,0.0128507195,0.019355545,0.01983234,0.010869756,-0.0066580805,-0.025928484,0.008230364,0.010824347,0.016403966,0.03544165,-0.048133437,-0.01978693,0.02259093,0.0054093357,0.009320177,-0.048315074,-0.0005094311,-0.010540541,-0.061529063,0.057215218,0.022568224,0.009093133,-0.05294678,0.009161246,0.02086539,-0.021660047,-0.011987951,0.018946866,-0.014144873,0.00084928836,-0.0134410355,0.0067261937,-0.00090108294,-0.02381697,-0.008576606,0.032217618,-0.024271058,0.002723115,0.03850675,0.03339825,-0.0000045730403,-0.0026479065,-0.024725148,-0.03550976,0.0014133521,0.017788937,-0.03278523,-0.0132594,0.002222198,-0.012612322,0.043637954,0.007481117,-0.013577262,0.021603286,-0.009252064,0.013316161,0.013554557,-0.03224032,0.012873424,-0.005522858,0.021762216,-0.017505132,0.003121862,0.0033517447,-0.0073165093,0.022454703,0.036077373,0.002060429,-0.040890716,0.0295839,-0.017278088,-0.0133615695,0.019242022,0.023101779,0.0504947,0.0084857885,0.014939529,0.00032016824,0.0018858885,-0.01693752,0.034351833,0.048996206,0.012498801,0.027654022,0.011658736,-0.018265732,0.037871026,-0.0077705984,0.022193601,-0.022454703,0.018912807,0.005673275,-0.0119198365,0.011942541,0.0043876353,0.050585516,0.029311446,0.0019724492,-0.012873424,0.025338167,-0.001812099,0.01785705,0.037099075,-0.023907788,0.00079749385,0.0024847183,0.02463433,-0.001910012,-0.027222637,0.030582896,0.017209975,0.02835786,0.004878619,-0.006788631,0.00006500923,-0.037121776,0.016029343,-0.046861988,0.018946866,0.01209012,0.008457408,0.0101772705,-0.009791295,0.004589137,-0.015473084,-0.029629309,0.030310443,0.03560058,0.02815352,0.030310443,0.010614331,0.00041116343,0.01887875,-0.005491639,-0.0139518855,-0.0453862,-0.013815659,-0.020025326,0.004081125,-0.0057555786,-0.020717813,-0.02009344,0.032830637,-0.021444354,-0.02361263,0.015427675,-0.013985942,-0.048315074,-0.0037944815,0.022874735,-0.012589619,0.0038058336,-0.0059258617,-0.0050545787,-0.021035675,-0.025315464,0.025769552,0.011255732,0.044092044,-0.0023768723,0.0022477407,0.014269748,-0.06743222,0.01749378,-0.017016986,-0.017448371,0.00024744304,-0.033420954,0.008122518,-0.023862379,0.028289746,0.028993584,-0.030355852,0.017834347,0.007889797,0.019185262,0.03183164,0.0316273,-0.01943501,-0.004285465,0.0028380565,-0.012180938,-0.041685373,0.009507489,0.019094443,0.010358906,-0.018583594,-0.01667642,0.011806315,-0.000705257,0.011874428,-0.009127189,0.02156923,0.016948873,0.0009188208,-0.0050659305,0.0111592375,0.007129198,-0.023215301,-0.0033091737,-0.013293456,-0.011011659,-0.016562898,0.004694145,-0.020819983,-0.02978824,-0.00037533295,0.0209108,-0.01702834,0.05044929,-0.01397459,-0.011794963,-0.019446362,0.039846312,0.003771777,-0.031786233,-0.008599311,0.023839673,0.011601974,-0.027472386,-0.0021867226,-0.010120509,-0.013883772,-0.028857358,0.028789245,0.005613676,-0.031763528,0.013634023,-0.0055512385,-0.021274071,0.0032013278,0.059076983,-0.03498756,0.004276951,0.0003873947,-0.014826007,-0.034692403,-0.009064753,0.00008061854,0.01124438,-0.026291754,-0.008707157,0.0024932325,-0.0075094975,0.0052589187,0.0134410355,0.02876654,0.003462429,-0.0052475664,0.0051737768,0.0029047506,0.0006243724,-0.010551894,-0.027971884,-0.030923463,-0.05167533,0.049314067,0.007708161,0.035736807,-0.013702136,-0.0012302975,0.007691133,0.05258351,0.039414927,-0.03355718,0.010205651,-0.032081388,-0.033897746,-0.019400954,0.050585516,-0.0046061655,-0.0030651009,0.003993145,0.009694801,0.04152644,0.018356549,0.03862027,-0.007662752,-0.013123173,-0.010529189,0.008553902,0.023272062,0.009711829,0.01489412,-0.002261931,0.009325854,-0.00007228175,-0.0067545744,-0.0061585824,-0.018890103,0.0028763702,-0.013543205,0.0038966516,-0.056851946,-0.019480418,-0.009518841,0.00236552,-0.011772258,0.0073675946,-0.0027954855,0.0036412263,-0.023272062,-0.014235691,-0.03687203,0.019877747,-0.013985942,0.0017822995,0.029720128,-0.022976905,-0.027790248,-0.04799721,0.013497796,-0.018799286,0.00061514875,0.049450297,-0.009592631,-0.05794176,-0.034033973,0.008253068,-0.020831333,0.009371262,0.023953196,-0.011528186,0.019662054,0.00034375957,0.017720824,0.0024932325,0.004180457,0.0057584164,-0.012317165,-0.00031786232,-0.004274113,0.0012161072,-0.004572109,0.004770773,0.011897133,0.022397941,-0.0074640885,-0.01820897,-0.00991617,-0.013736193,-0.008661748,-0.01795922,-0.03871109,-0.006096145,0.008417675,-0.019298784,-0.021648694,-0.0016787103,0.01667642,-0.0073505663,-0.011999303,-0.006652404,0.006782955,0.020729164,0.032013275,-0.015722832,-0.017709471,-0.0035078377,-0.009762914,0.0000022477186,0.023203949,-0.0209108,0.003067939,0.004120858,-0.002419443,-0.019877747,0.000514043,-0.03376152,-0.01499629,0.017505132,0.02377156,-0.019820986,0.018401958,0.002711763,-0.003224032,0.015541197,0.0045692706,-0.0008549645,-0.016006637,-0.047089033,0.0078103314,0.0019426496,-0.052311055,0.015586606,-0.0069702663,-0.0067091654,0.004135048,-0.02438458,0.023930492,0.03973279,-0.023839673,-0.013406979,-0.0155639015,-0.028607609,0.025065714,0.004694145,-0.004126534,0.026496096,-0.0063118376,-0.0047111735,0.02045671,0.010392963,-0.0067148414,-0.009569926,-0.021376241,-0.025338167,0.0073051574,-0.036940143,-0.0015708642,-0.01407676,0.0062550763,-0.031990573,0.011267084,-0.0086958045,-0.010483781,-0.0036525787,0.026359867,-0.0037405584,-0.00683404,-0.024339171,0.02203467,-0.005077283,0.025156531,0.028471382,0.0029799591,-0.0051113395,0.005434878,-0.033330135,0.0433655,-0.025133828,-0.021069732,-0.031559188,0.022874735,0.00351919,0.032376546,0.003984631,-0.016142866,0.03696285,-0.010160242,0.027358864,-0.014212986,0.00884906,0.022522816,-0.024884079,-0.0035731131,-0.029084403,-0.050767154,0.0011181942,-0.043887705,-0.0037831292,0.0020888096,0.023998605,-0.022670394,0.011284112,0.00096281065,-0.019775577,0.0009443633,-0.00892285,-0.01407676,-0.010597303,-0.0062210197,-0.027154524,-0.0035390563,-0.055398863,0.0076741045,0.016176922,0.023203949,0.02840327,-0.0058747767,0.035577875,-0.035373535,0.023953196,-0.012362574,-0.013486444,-0.024089422,0.019457715,0.010148889,0.0023527488,-0.019934509,0.008769594,0.0049240277,0.022295771,0.014826007,-0.0038938134,0.015518492,0.009609659,-0.0016829674,0.034442652,-0.031150507,0.010881108,-0.04116317,-0.041390214,0.012918833,0.002019277,0.025996597,0.007185959,0.017175917,-0.012430687,-0.00005716023,-0.007481117,-0.0090761045,0.016801294,-0.011306817,-0.023272062,-0.014757893,-0.02377156,-0.004725364,0.0061529065,-0.0033432306,-0.009013667,-0.011227352,0.03269441,-0.014905472,0.017459722,0.00043067505,-0.011119505,-0.007946558,0.0035362183,0.0072370437,-0.010642712,-0.020490767,-0.029856354,-0.0295839,-0.005273109,0.017414315,-0.013520501,-0.020933503,0.046907395,0.025678735,0.015291448,0.012056064,-0.022397941,0.028425973,-0.03126403,-0.0042031617,0.0146330185,0.0311051,-0.0000142124545,0.0142924525,0.014882768,0.0040584207,0.00020895191,0.0046430603,-0.030946167,0.0037065018,-0.037416935,0.025065714,-0.013055059,-0.0026989917,0.013838363,-0.0029856353,-0.03376152,-0.020819983,0.010756234,-0.0079749385,-0.045136448,-0.015064403,0.018594945,0.042411916,-0.01718727,0.018254379,0.010228355,-0.015041699,0.014326509,-0.012691788,0.018912807,0.011692792,-0.030015284,-0.0150530515,0.006641052,-0.008956906,0.0007237044,-0.010239707,0.008326857,-0.040709082,0.011562242,-0.007106493,0.008548226,-0.00036610928,-0.017788937,0.016767237,0.0064991494,0.019673407,-0.008718509,0.017630007,0.022829326,0.013963237,-0.00034056677,0.00857093,0.016245035,0.044954814,-0.031581894,0.05208401,0.048178844,-0.008343886,-0.022829326,0.056988172,0.02086539,0.00068077876,0.0042968174,-0.008179279,-0.022715803,0.051993195,-0.034306426,-0.0022761212,-0.011738202,-0.017221326,-0.017686768,0.00033737396,-0.047089033,0.012362574,-0.028494086,-0.027835658,0.026496096,-0.04150374,0.007793303,-0.0058974815,-0.025837665,0.03346636,0.009706153,0.011908485,0.0049069994,-0.06779549,0.023022315,0.0079352055,0.025633326,0.04431909,0.007657076,-0.030514782,-0.006419684,0.028335156,0.026178233,0.0027287912,0.0054064975,-0.023272062,-0.009110161,0.01907174,0.017675415,-0.0040527447,0.01769812,0.011233027,-0.029833648,-0.022988258,-0.014667075,-0.041549146,0.012862071,0.0017184431,-0.012544209,0.0020788764,0.015336857,-0.029879058,-0.03841593,0.00044167254,-0.013724841,-0.006090469,-0.012873424,0.018538184]},{"id":"guide-sending-without-reply-5","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: fetch message by id\nUse channel.messages.fetch(messageId) when you have the channel. For IDs-only, fetch the channel first.\n\n```javascript\n// When you have the channel\nconst message = await channel.messages.fetch(messageId);\nif (message) {\n await message.edit({ content: 'Updated!' });\n await message.react('👍');\n}\n\n// When you only have IDs (e.g. from sqlite)\nconst ch = await client.channels.resolve(channelId);\nconst msg = await ch?.messages?.fetch(messageId);\nif (msg) await msg.delete();\n\n// When channel is cached\nconst m = client.channels.get(channelId);\nif (m?.isSendable()) {\n const mes = await m.messages.fetch(messageId);\n if (mes) await mes.edit({ content: 'Edited!' });\n}\n\n// Refresh a stale message instance\nconst updated = await message.fetch();\nif (updated) console.log(updated.content);\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.02008852,-0.005196596,-0.015963644,0.0006939699,0.007271496,0.05101886,-0.018829873,0.021721024,-0.02945984,0.031054959,0.050171454,-0.013558505,0.009203085,0.015739331,0.016075801,0.017683381,-0.014518068,-0.021820718,-0.033771645,0.05114348,0.02457479,0.033846416,0.01453053,0.050395768,-0.021583943,-0.010324652,-0.0143186785,0.027042238,-0.019328346,-0.04224571,0.003508014,-0.013608352,0.006109427,-0.040600743,0.019789435,0.06799191,0.0047697774,0.020661766,-0.032899313,-0.011695457,0.0010242092,0.012218854,0.020238062,0.0064053964,0.01687336,0.035192296,-0.023191523,0.013558505,0.044040218,0.02759056,-0.040874906,0.016761202,-0.007427269,0.053735547,0.021658715,-0.04346697,-0.0040220656,-0.0045423484,-0.010081646,0.036986805,-0.012810793,-0.036039703,-0.05891968,0.017845385,0.0047978167,0.0155524025,-0.03481844,0.015340551,0.0025126229,0.032974083,0.018269088,0.003255661,0.020125905,-0.046183657,0.012561556,0.005015899,0.022643201,-0.0015927816,0.017583687,-0.03080572,0.01995144,-0.019627431,-0.1004426,-0.021608867,-0.06729405,0.0046358122,-0.034668896,-0.0585209,0.0180697,-0.031927288,-0.022057494,0.022057494,-0.052788444,-0.024736794,0.04453869,-0.0100629525,-0.038881008,-0.009689097,-0.014206521,0.022580892,0.09615572,-0.059019376,-0.09800008,-0.0038320222,0.022792744,-0.007720123,-0.0063680112,0.053885087,-0.038681615,-0.002243135,-0.057075325,-0.06161144,0.028587509,-0.005442718,-0.0073836525,-0.00006951382,-0.0012088005,-0.058022425,0.016948132,-0.0005467642,-0.048327096,0.017970003,0.035391685,-0.0040874905,0.022506122,-0.0575738,0.0037603667,-0.032525457,-0.033248246,0.023116753,0.08713333,0.0013832665,0.03287439,0.035790466,-0.048501562,0.019776974,0.023814617,-0.021110393,-0.016412271,-0.0046295812,0.010349575,-0.033871338,-0.017783076,0.020748999,-0.009190623,-0.0038133294,-0.06390443,0.0071593393,0.00428688,-0.034070726,-0.007931975,0.025010955,-0.03696188,0.01995144,-0.002255597,0.027889645,0.018032312,-0.021646252,-0.051641952,-0.047629233,-0.03758497,-0.05772334,-0.005249559,-0.009689097,-0.035815388,-0.031254347,0.020736536,-0.055679597,-0.017359372,0.029609382,-0.002743167,-0.019889131,0.0058695367,-0.005374178,0.030008161,-0.0044083833,0.037859134,-0.057823036,-0.011763996,0.020649305,0.026120061,0.032724846,-0.02464956,-0.017994927,-0.003570323,0.009159468,-0.007645352,0.0034457047,-0.04989729,-0.0073462673,-0.05443341,-0.0039659874,-0.013919899,-0.013234496,-0.0028522084,-0.010698508,0.04867603,0.0032650076,0.012698636,-0.041273683,-0.0124120135,0.011134673,0.024824027,-0.026992392,-0.010038029,-0.019241113,0.007913282,0.015178547,-0.009134544,-0.024400324,0.034519356,-0.002651261,-0.0062060067,-0.006991104,-0.049473587,-0.017122597,-0.036488328,-0.0033304323,-0.07412315,-0.017571224,-0.08140088,-0.0006503534,0.06285763,-0.033522405,0.0028335156,0.025671434,0.020935927,-0.015527479,-0.048252326,0.02531004,0.0336221,-0.007377422,-0.018505864,-0.038731463,0.04720553,0.048800647,0.017060287,0.04413991,0.0056794933,-0.040525973,0.0020297256,-0.04065059,-0.0059006913,-0.012748484,-0.028911518,0.00133965,-0.00971402,-0.04418976,0.043068193,0.054882035,0.054582953,-0.01982682,0.026369298,-0.020661766,0.02684285,-0.036662795,0.013894975,0.00870461,0.013109878,-0.017957542,0.0020188214,0.016499504,-0.037236042,0.022518583,-0.052738596,0.014567915,0.02263074,-0.0057418025,-0.024001544,0.009252932,-0.0089600785,-0.008766919,0.048975114,-0.029285373,-0.008349447,0.026618535,0.00040462107,-0.030382017,0.002743167,-0.0097514065,-0.031827595,-0.036513254,-0.020736536,-0.016088262,0.02324137,0.01881741,-0.019477889,0.0065050917,0.018780025,0.016773665,-0.004165377,-0.010393192,0.0040750285,-0.056626696,0.025721282,0.07038459,0.058421206,0.03354733,0.036563102,0.034469508,0.015527479,0.024063854,0.040501047,-0.03302393,-0.0032930467,0.0024269475,-0.008791843,-0.020188214,0.04212109,-0.045012243,0.009408705,0.018393707,-0.051791497,-0.014842076,-0.009315241,0.011290446,0.008268445,0.021808257,0.030082934,0.0014728362,0.033971034,-0.00007394362,0.01673628,-0.017384296,-0.07556873,-0.057324562,0.021745948,-0.032076832,0.056576848,0.066247255,0.022443812,-0.02356538,0.039404403,0.028213654,0.044214685,0.02980877,-0.046557512,0.00870461,-0.00034250645,0.011390141,0.029933391,0.022381503,0.019602507,-0.03691203,-0.033647023,-0.018730177,-0.020001287,0.008380601,-0.024126163,-0.00579165,0.033995956,0.031827595,0.04084998,-0.09306518,0.042968497,0.017359372,-0.0028226115,-0.014243907,0.007072106,-0.033522405,-0.020574532,-0.014094365,0.01941558,0.031952213,0.046358123,0.03688711,0.022643201,-0.0047136988,0.0037042883,0.0035391685,0.009963258,0.012380859,-0.016636584,0.025820976,-0.019477889,-0.012704867,0.00039235392,0.008604915,0.0040937215,0.06544969,0.037186194,0.026693307,-0.010125262,-0.018231703,0.01627519,0.023191523,0.0023210216,-0.026543764,-0.022643201,0.0025889517,-0.00575738,-0.025796052,-0.018705254,0.032151602,0.0074085766,0.035790466,-0.023802156,-0.0019829937,0.030880492,0.02818873,0.0419217,0.028363196,-0.013321729,0.023478147,0.0065923245,0.030980187,-0.033422712,0.010499118,-0.005015899,-0.019889131,0.020935927,0.032899313,0.035366762,0.0258459,-0.010629968,-0.047031064,0.017234754,0.05503158,0.028238578,-0.01472992,-0.008685918,-0.058969527,0.027540714,-0.030257398,-0.029160755,-0.018555712,0.043641437,-0.031129729,0.045037165,-0.07053413,-0.118537225,-0.015141161,-0.000094729614,-0.019926516,0.046756905,-0.00609385,-0.00032478725,-0.021085469,-0.024026468,-0.049972065,-0.030481713,-0.0155648645,-0.07237849,0.015440246,0.009682866,0.039180093,-0.018468479,-0.0025780476,0.0016200419,0.020051135,-0.04506209,-0.04735507,-0.0024845835,0.005776073,-0.049922217,0.0007083789,-0.024412787,0.009614326,0.025048342,-0.015677022,-0.031104805,-0.010355807,0.030207552,0.020312835,0.011128442,0.025621586,-0.02684285,0.024736794,-0.031852517,-0.018917104,0.012592711,-0.008062824,-0.0017555647,0.0136706615,-0.006321279,-0.02691762,-0.0006659307,-0.021010699,0.0070409514,0.036463406,0.006816638,0.0073151123,0.016362423,-0.032625154,-0.016325038,0.04379098,0.02945984,-0.047629233,0.006100081,0.010742124,-0.041099217,0.019266037,-0.0063088173,-0.012823255,0.00040656823,-0.012056851,0.0042432635,0.027291477,0.053885087,-0.031378966,-0.022954749,-0.0014105269,-0.027839798,0.030556483,0.017658457,-0.021907952,-0.016125647,-0.025870824,0.04379098,-0.004660736,0.008891538,0.03770959,-0.016424732,-0.014505606,-0.003286816,0.014680073,-0.027141934,0.00468566,-0.059767086,0.003763482,-0.009988181,0.023403374,0.024612175,0.008093979,-0.0067107123,0.005308753,-0.0064303204,-0.0010756144,-0.00276186,0.035790466,0.0136706615,-0.05428387,0.015091314,0.009215546,0.009645481,-0.016761202,-0.063405946,-0.014742382,-0.011751535,-0.014655149,-0.012355935,0.025484506,-0.0048196246,0.0034457047,-0.040501047,-0.0031310427,0.008916462,0.085388675,0.0048507797,0.0038881006,0.008835459,-0.027765026,-0.006181083,0.013346653,0.0180697,0.018032312,-0.014356064,-0.03294916,0.022992134,0.00532433,0.016673971,-0.010617506,0.034469508,-0.002965923,-0.034519356,-0.0040127193,0.00856753,-0.021122854,-0.025098188,-0.026269604,0.014268831,0.0024845835,0.0047728927,-0.01191977,0.018057236,0.057075325,-0.05062008,0.021309782,-0.011396372,-0.00035341058,0.015839025,-0.03810837,0.030033085,0.022618277,-0.028213654,0.023590304,-0.0051810187,-0.052539207,-0.03175282,0.03441966,-0.016113186,-0.016611662,-0.007265265,0.008604915,-0.025945595,0.0027571868,0.010399424,0.0105427345,-0.024163548,-0.020549608,0.0064240894,0.024188472,-0.02945984,0.0013349769,0.014754844,0.056427307,0.021770872,-0.043442048,-0.0190168,-0.0075830426,-0.02269305,-0.0022914247,0.008324523,-0.06963688,-0.013296806,0.006399166,0.012243778,-0.009321472,0.027665332,0.048775725,-0.025696358,-0.0033927418,0.021185163,0.014268831,-0.008717072,0.020985775,0.023789693,-0.015415322,0.014094365,-0.030207552,0.047504615,0.0060253097,0.024338014,-0.0028771323,-0.018904643,0.0024627752,0.027665332,-0.018917104,-0.00405322,0.0030375787,0.0031357158,-0.01707275,0.00069085445,-0.0028755744,-0.0040345276,-0.01975205,0.023914311,0.0010615948,0.004289996,0.014181598,-0.057025477,-0.01814447,0.040600743,-0.019976363,0.0057480335,-0.030257398,-0.021334706,0.03175282,-0.02263074,-0.001013305,-0.020773923,-0.0012181469,-0.021708563,0.033347942,-0.022468736,-0.020611918,-0.012611403,-0.015303166,0.0026294526,0.017297063,-0.009165699,0.0042557255,0.032699924,-0.020574532,0.028288424,-0.014617763,0.0155648645,-0.006065811,0.00405322,-0.0021932875,0.0019019915,0.001299928,-0.038930856,-0.038133293,0.027391171,-0.012343474,0.0076640444,0.0113216005,-0.00020932032,0.008598684,-0.011016285,0.005162326,0.014268831,-0.01560225,0.012561556,0.016050877,0.033572253,0.022643201,0.011882384,-0.032650076,-0.020312835,-0.017035363,0.0116331475,-0.0026029712,0.0216961,-0.043068193,-0.02102316,-0.003710519,0.027740102,-0.0052339816,-0.048825573,0.0025546816,0.004585965,-0.024362938,-0.051392715,-0.027366247,-0.009340165,-0.00004042803,0.028238578,-0.0037385584,0.04124876,0.008978771,-0.0031045612,0.014169136,-0.014081903,-0.028886594,-0.03165313,0.030431865,-0.009981951,0.022418888,-0.022917362,0.031329118,0.038382534,0.008206136,-0.014717458,-0.0010117474,-0.042544793,0.005040823,-0.005779188,0.002481468,-0.0029300952,-0.007352498,-0.011134673,-0.0047666617,0.028637357,-0.033298094,-0.01225001,-0.010885436,-0.0075705806,-0.003884985,-0.011003823,0.009009926,-0.053386614,0.017022902,-0.019340808,-0.03080572,-0.013583428,-0.015926259,-0.0214344,0.04772893,-0.042818956,-0.0005471536,-0.023527993,0.025160497,-0.016300114,0.024076317,-0.028961366,-0.03013278,0.01018134,-0.013084955,-0.02497357,-0.006299471,0.0042681876,0.00011653787,0.025995443,-0.0111533655,-0.024163548,0.017247215,0.009851101,-0.0020406297,-0.010237419,0.009066004,-0.027914569,-0.016524429,0.012200162,0.017110135,-0.011028747,-0.021770872,-0.024412787,-0.008156288,-0.026294528,-0.022107342,-0.01379528,0.0125677865,-0.0187551,-0.0064303204,-0.01393236,-0.09650465,0.031304196,0.03668772,-0.033647023,-0.009888487,0.0021465556,-0.019128956,0.00037385584,0.0016122533,-0.005480103,-0.0032089292,-0.011072364,0.012661251,-0.036513254,0.04700614,0.01808216,0.00020231053,-0.027166856,-0.0052807136,-0.0042432635,-0.033896264,-0.024026468,-0.05562975,0.024063854,0.0046420433,-0.0033927418,-0.007022259,0.0012150315,0.023179062,-0.042494945,-0.0013232939,0.008654763,0.013271882,-0.00012783143,-0.03287439,0.029783849,0.002906729,-0.009383782,-0.014169136,-0.048900343,0.03825791,-0.025945595,-0.015141161,-0.017970003,-0.0086360695,0.009701559,-0.010461733,0.018381245,-0.022256885,-0.028737051,0.030980187,-0.014455759,-0.035341837,0.0002488478,0.022830129,-0.0038444842,-0.00579165,0.023216447,0.005536182,-0.048376944,0.030955262,0.012636327,0.01881741,-0.007832279,0.037310813,-0.017359372,-0.0019206844,-0.03053156,0.029783849,0.013894975,-0.011464912,0.025272654,0.008399295,0.02324137,0.015839025,-0.0103744995,-0.005881998,-0.002330368,-0.0034737438,0.0130475685,-0.04613381,-0.0029924044,0.03232607,0.029110907,-0.0032463148,-0.0050252457,-0.015053928,0.015315628,0.014169136,0.032002058,0.024026468,-0.013969746,-0.040501047,0.02189549,-0.008305831,0.0015997915,-0.022132264,-0.004003373,0.0058228048,-0.04954836,0.024587251,0.020163292,0.014106827,-0.042494945,-0.029783849,0.01553994,-0.008056593,-0.0029519033,0.022817668,0.0034114346,0.014667611,0.035142448,-0.008536375,0.0027462826,-0.04251987,0.0031201385,0.03486829,0.0043024574,0.007645352,0.013969746,0.01654935,0.0028459774,-0.010050491,-0.031503584,-0.022007646,0.0229049,-0.019652355,-0.021010699,0.0029737116,0.007084568,0.011577069,0.03541661,0.013645738,0.014169136,0.0080254385,-0.025384812,0.03449443,0.022194576,-0.03033217,0.020462375,-0.015016543,0.0055829138,-0.02550943,0.0048912806,0.0076889684,0.0013186206,0.029484764,0.01868033,0.003623286,-0.03165313,0.05772334,-0.044962395,0.018493403,0.0024207165,0.029036136,0.048775725,-0.010866743,-0.000073310795,0.016337499,0.012443168,-0.0016169265,0.030357094,0.031952213,0.014081903,0.0029986354,-0.03040694,-0.014206521,0.016973054,-0.033422712,0.05288814,-0.0035235912,0.050271146,0.017272139,0.0054022167,0.01967728,0.0105427345,0.05827166,0.017770614,0.007981822,-0.0072278795,0.014580377,0.02062438,0.02778995,0.022917362,-0.004514309,-0.0023755422,-0.008037901,0.02945984,-0.004726161,-0.022618277,0.013882513,0.015390399,0.015377937,0.037734516,0.019241113,-0.0028413043,-0.029484764,-0.004906858,-0.037983753,0.019527737,0.027565638,0.019515274,0.022605816,-0.0032681231,0.0074521927,0.018555712,-0.026219755,0.009159468,0.02330368,0.017907694,-0.002895825,0.020512223,0.006548708,0.009788792,-0.022531046,-0.008629839,-0.052090578,-0.003956641,-0.0058508436,-0.023091828,-0.03449443,-0.0155524025,-0.016025953,0.043815903,-0.035242144,-0.010162648,0.014879462,-0.0046451585,-0.051043782,-0.028961366,0.045087013,0.011147135,-0.033347942,-0.017733227,0.02945984,-0.019477889,-0.011739073,0.014343603,0.0057013016,0.026194831,0.0022041916,0.019141419,0.0021714794,-0.04232048,0.019627431,-0.012835717,0.00943986,0.024599714,0.016437195,0.009695328,-0.010168878,0.017920157,0.028238578,-0.049573284,0.03180267,0.0080129765,-0.019104034,0.024362938,0.01553994,-0.017247215,0.008174981,0.008430449,-0.01714752,-0.034120575,-0.008935154,-0.0103744995,0.0036264015,-0.023428299,-0.0005218404,0.03770959,0.025671434,0.02483649,-0.016997978,-0.006442782,0.0037011728,0.012499247,-0.0050065527,0.0092840865,-0.0023054443,0.0053804084,-0.008872845,0.0009689097,-0.030456789,-0.021235012,-0.013720509,-0.033572253,-0.027465941,-0.024437709,0.019253576,-0.0043086885,0.029185679,0.051592104,-0.025696358,-0.029160755,0.019938977,-0.013197111,-0.020337757,-0.01560225,0.005726225,0.0027930145,-0.016599199,0.004607773,0.02289244,-0.0125802485,-0.0018552595,-0.010237419,0.025521891,-0.0040812595,0.040152118,-0.022256885,-0.02396416,0.014069441,0.054632798,-0.044488844,0.0012804562,-0.004299342,0.0024503134,-0.018954491,-0.014867,0.00609385,-0.012225086,-0.026294528,0.0035578613,0.00249393,-0.01359589,-0.0041404534,0.032151602,-0.0031902364,0.0077450466,0.0031855633,0.00050470536,-0.0044488846,-0.005424025,-0.01995144,-0.044887625,-0.0395041,-0.062957324,0.040525973,0.01258648,0.026120061,-0.011234368,-0.012810793,-0.008922692,0.051791497,0.012293626,-0.018493403,0.014555453,-0.013982208,-0.013134802,-0.0041684927,0.06729405,-0.010885436,0.0021652484,0.018493403,0.01560225,0.029958313,0.01472992,0.024263244,-0.0243754,-0.02324137,0.0024690062,0.0049411277,0.02362769,0.02129732,-0.00021418824,-0.001741545,-0.013421425,0.02544712,0.015141161,-0.013782819,0.008953847,0.013371577,0.0015826564,-0.012985259,-0.047230452,-0.017284602,0.014829615,-0.03878131,0.005719994,0.037609898,0.017222293,-0.014879462,-0.0046233507,-0.010910359,-0.04673198,0.008305831,-0.008056593,-0.0105178105,0.02886167,-0.043741133,-0.024014005,-0.020337757,0.0035453995,0.0015219048,0.014804691,0.032076832,-0.007944437,-0.043691285,-0.017010441,0.008056593,0.0006795609,0.018169394,0.027316399,-0.03127927,0.01747153,-0.018929567,0.0014525857,0.03080572,-0.03434489,0.00970779,0.00897254,0.01064243,-0.017907694,-0.0051779035,0.009664173,-0.0015234625,0.031179577,0.0076640444,-0.0068602543,-0.003816445,-0.029559534,-0.014804691,-0.003508014,-0.014430835,-0.043292504,0.011196982,0.0046981215,-0.01909157,-0.004614004,0.013583428,0.01439345,-0.0035672078,-0.01191977,-0.007271496,-0.00065580546,0.059717238,0.011932232,-0.025596663,0.02457479,-0.015527479,-0.007483348,-0.004171608,0.013969746,-0.028886594,0.01995144,0.018530788,-0.009701559,-0.027914569,0.0007636784,-0.033796567,-0.02163379,0.0024222743,0.033971034,-0.030456789,0.0066546337,0.035117526,-0.0072216485,0.017508915,0.0060564643,0.014804691,-0.03292424,-0.050395768,0.0049785133,-0.0026434723,-0.038955778,-0.009558247,-0.00823106,-0.026269604,0.0027042239,-0.025621586,0.0015920028,0.057474103,-0.030506635,-0.0015141161,-0.003956641,-0.015278242,0.014667611,0.016761202,0.004131107,0.01198831,0.0018552595,0.0044706925,0.030581407,0.009502169,0.0024207165,-0.0021886143,-0.036986805,-0.010860512,0.024213396,-0.034918133,-0.0071157226,0.004579734,-0.008685918,-0.013633276,0.0074958093,-0.009215546,-0.0036326325,-0.009277856,0.036662795,0.003741674,-0.037535127,0.0142937545,-0.0048757032,-0.012810793,0.027366247,0.043741133,0.010860512,-0.03643848,0.00991341,-0.01834386,0.0061436975,-0.032625154,-0.009720252,-0.0029378838,0.017571224,0.010623736,0.019315885,0.012044389,-0.011826307,0.027615484,-0.013109878,0.029360145,-0.016885823,0.013284344,0.013982208,-0.02015083,-0.03279962,-0.0059816935,-0.045685183,-0.017508915,0.00061218895,0.015377937,-0.0053928704,0.015427784,-0.024163548,0.0005343023,0.00034270118,-0.0035921314,-0.018966952,-0.029310297,-0.0039659874,0.011433758,0.0005175567,-0.025995443,-0.0111533655,-0.037684668,0.02778995,-0.026344374,0.019938977,0.028761975,-0.01654935,0.009813716,-0.013845128,0.00529006,-0.025771128,-0.013645738,-0.021210087,0.013820204,0.00082014623,-0.007539426,-0.001485298,-0.0060035014,0.012997721,0.01841863,0.016985517,0.018256627,0.018954491,0.021920413,0.017608609,0.024923721,-0.040525973,-0.009396243,0.0024316206,-0.03681234,-0.017596148,0.021110393,0.024001544,0.024026468,0.030357094,0.0051249405,-0.019926516,0.008667224,-0.009601864,0.0025967404,0.0014930867,-0.0014876347,0.0014728362,-0.032824542,0.02759056,-0.008162519,-0.006299471,-0.004567272,-0.017783076,0.016075801,-0.0023116753,0.04426453,0.00051405176,-0.023752308,-0.002464333,0.00810021,0.023876926,0.0021948454,-0.011664302,-0.027092086,-0.038407456,-0.0013201784,0.028014263,0.0014518069,-0.009296549,0.055530053,0.037884057,-0.012368397,0.021259936,-0.01593872,0.023552917,-0.037136346,-0.0050003217,-0.00027883414,0.013396501,0.010754586,-0.023789693,0.011502298,0.00075550034,0.00075433205,0.024848951,-0.034843363,-0.009651711,-0.037211116,0.06888917,0.0051685567,-0.006047118,-0.0038974471,0.005710648,-0.00022470293,-0.02544712,-0.0029783847,-0.02322891,-0.032002058,-0.012374628,0.010486656,0.059468,-0.013408963,-0.01627519,0.027441017,-0.011508529,-0.020412529,0.003187121,-0.011533452,-0.021596406,0.002132536,-0.03187744,-0.028064111,-0.0011978964,-0.012069313,-0.016362423,0.025484506,-0.022929825,0.016761202,-0.011334063,0.021845642,-0.0037385584,-0.020125905,0.015701946,0.010119031,0.019203728,-0.006442782,-0.00019374299,0.030855568,0.02015083,-0.027615484,0.0066047865,0.032301143,0.03556615,-0.030382017,0.033422712,0.007072106,-0.041822005,-0.011994542,0.015053928,0.0035734386,0.013633276,0.002283636,-0.032450687,-0.0027914569,0.03242576,-0.03299901,-0.011277984,-0.0024253898,-0.024288168,0.010324652,-0.02430063,-0.06006617,-0.0074646547,-0.033572253,-0.01841863,0.02128486,-0.022007646,0.0035921314,-0.0011091057,-0.03564092,0.016636584,-0.009047311,-0.004433307,-0.014617763,-0.024886336,0.015078852,0.023129214,0.023665074,0.062957324,0.0092840865,-0.018842334,-0.0061966605,0.023777232,0.031104805,-0.0018163163,0.006804176,0.007358729,-0.0136706615,0.024051392,0.03359718,-0.031030035,0.024138626,0.004853895,-0.019565122,-0.013533581,-0.0053399075,-0.025372349,0.0139946705,0.0018848565,-0.02926045,0.017284602,-0.0003828128,-0.036189243,-0.032500535,0.030930338,-0.009471014,-0.010405654,-0.0155524025,0.022730434]},{"id":"guide-sending-without-reply-6","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: message.channel and message.guild\nAccess the channel or guild from a message. Resolved from cache; null if not cached (e.g. DM channel).\n\n```javascript\nclient.on(Events.MessageCreate, async (message) => {\n const channel = message.channel; // TextChannel or DMChannel | null\n const guild = message.guild; // Guild | null (null for DMs)\n if (message.channel?.isSendable()) {\n await message.channel.send('Same channel, different API');\n }\n});\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0017052367,-0.006599601,0.020573514,0.01436418,0.0073160627,0.02075991,-0.055033565,0.008108248,-0.007549058,0.02448784,-0.022612225,0.0074733347,0.0424285,0.034786247,-0.016880533,-0.031850502,-0.040867433,0.026305206,0.0023241313,0.030569026,0.030941818,0.06989869,-0.022460777,0.04454876,-0.034786247,-0.03026613,0.010519752,0.029497245,-0.043034293,-0.03084862,0.038933568,-0.025606219,0.012698261,0.005224927,0.010741098,0.07222864,0.019851226,0.04410607,-0.016146597,0.00011950127,0.014154484,-0.018511502,-0.000031377047,0.002354712,-0.023043267,0.024068447,-0.03457655,0.012290519,0.048696086,0.014958319,-0.04359348,0.042871196,0.023287913,0.009960563,-0.0018756147,-0.06426019,-0.037535593,-0.0150748165,-0.009133428,0.034949344,-0.03830448,-0.053542394,-0.043500282,0.0159136,0.026957594,0.00717044,-0.015750503,-0.005533646,0.0037133677,0.058854695,-0.0016047574,0.007519934,0.029240951,-0.019070692,-0.028402166,0.013653544,-0.008382018,0.015144715,0.009983863,-0.02926425,-0.003832778,0.0024144172,-0.063701004,-0.03231649,-0.05205122,0.022251083,-0.016717436,-0.04205571,0.008714036,-0.032619387,0.002439173,-0.024744134,-0.042941093,-0.024814034,0.07847293,-0.029427348,-0.030172933,0.0041706217,0.010129484,0.052517213,0.08043009,-0.05377539,-0.09296525,0.020701662,0.026957594,-0.005577333,0.004068686,0.019956075,-0.01711353,0.014736973,-0.06840751,0.0013484622,0.06710274,-0.0013433654,-0.009226627,-0.0018566839,0.020829808,-0.05577915,0.019420184,0.013012805,-0.06575137,0.012535164,0.10270447,-0.03993545,0.02017742,-0.024627637,-0.011847828,-0.028798258,-0.031035017,0.011609007,0.05745672,-0.007683031,0.010001337,0.03930636,-0.034832846,0.021761792,-0.025140228,-0.018686248,-0.03143111,-0.0186047,0.013140953,-0.02072496,0.02182004,0.030242832,-0.00506183,0.007653906,-0.06826772,0.00451429,-0.016065048,-0.0036114322,-0.043733276,0.021715192,-0.057037327,0.027027491,0.00027085742,0.018930893,-0.0006316366,0.0097159175,-0.042941093,-0.022996668,-0.061976835,-0.059973072,-0.0025076154,-0.0061976835,-0.045061354,-0.035788126,0.034762945,-0.0044385665,-0.01914059,0.03033603,-0.03783849,0.022251083,-0.016356293,-0.0034250356,0.02446454,-0.033364974,0.031850502,-0.06672995,-0.014841821,0.00372793,0.03355137,0.01644949,-0.026864395,-0.048090298,0.014678724,0.027050791,-0.0026343067,-0.023602456,0.0046074884,0.013571995,-0.046156432,0.0055307336,0.0129429065,0.0095644705,0.0066811494,-0.019198839,0.0532162,0.043779876,0.027167289,-0.033854265,0.011154666,-0.012558464,0.022658825,-0.03345817,-0.03448335,-0.014655424,0.02602561,-0.010403254,-0.018558102,-0.0021814215,0.024837334,0.00047400047,-0.003564833,-0.023544207,-0.049767863,-0.052657012,-0.09543501,0.015028218,-0.010205208,0.0053996737,-0.07544398,0.043383785,0.050793044,0.0046220506,0.02024732,-0.0074150856,-0.013991387,-0.038980167,-0.033131976,0.007939326,0.065052375,0.06220983,-0.013676843,-0.04138002,0.025582919,0.02123755,0.03783849,0.03308538,-0.012663312,-0.049907662,-0.0070655923,-0.015121416,0.021458896,-0.010106185,-0.018558102,-0.04200911,0.02823907,-0.052424014,0.030545726,0.03560173,0.056245144,0.0010280932,-0.033411574,-0.0059763375,0.016379593,-0.032479588,-0.0040191743,0.016600939,0.05377539,0.0030784546,-0.01332735,-0.029287549,-0.03823458,0.01966483,-0.047554407,0.02875166,0.0027042055,0.028332267,-0.029706942,0.022740373,0.008207271,-0.0160534,0.032130096,-0.035904624,-0.02448784,0.033830963,0.0006203508,-0.02342771,-0.0042987694,-0.016228145,-0.037675392,-0.0076946802,0.0025818828,-0.009081004,0.013944788,0.013991387,-0.022775322,-0.002281901,-0.0019644443,-0.018895945,0.0019833753,0.0037191927,-0.012465266,-0.0067219236,0.01438748,0.033225175,0.03895687,-0.002682362,0.038141385,0.04629623,0.0038415154,0.008352893,0.03630072,-0.013816641,0.0048492216,0.017311575,-0.05629174,-0.009873189,0.019886177,-0.033667866,0.0130827045,0.0150748165,-0.059833277,-0.005297738,-0.028938057,-0.004400705,-0.008119897,0.027609982,0.051165838,0.0023765552,0.053449195,0.017963963,0.025955712,-0.07013168,-0.04631953,-0.0009006737,0.03832778,-0.034902744,0.020818159,0.060345866,0.023637407,-0.052377414,0.044944856,0.04089073,0.020235669,0.044315767,-0.013129303,0.021342399,0.034856144,-0.000045438697,-0.0034541602,0.021540444,0.03245629,-0.021447247,-0.0021479283,-0.03082532,-0.049861062,0.023322862,-0.01810376,-0.013187552,0.018010562,0.01706693,0.0072228643,-0.077867135,0.023206364,0.009855715,-0.016577639,0.012395367,0.0018290157,0.007007343,-0.045597244,-0.01700868,-0.005481222,0.029870039,0.028425466,0.02826237,0.010682849,-0.004860871,0.0035997822,-0.0371861,0.017323224,-0.00056173786,-0.02285687,0.022740373,-0.029171051,-0.0077762287,-0.0023372374,0.009948913,-0.0021741404,0.043733276,0.014713674,0.025280025,0.00018466724,-0.02765658,-0.00014352895,0.013863239,-0.0060404115,-0.0042667324,-0.026351804,-0.029124452,0.008865483,0.011451735,-0.0061802086,0.040564537,-0.010228508,0.038490877,0.022996668,-0.0050793043,0.0038415154,-0.003244464,0.047065116,0.0044531287,0.009809116,0.0065646516,0.0063724304,0.053542394,-0.056757733,0.000009158275,0.020457016,0.011754629,0.027912876,0.02712069,0.03040593,0.024208246,-0.0054317103,-0.025769316,0.003695893,-0.025233425,0.03665021,-0.029660342,0.0028279843,-0.024604337,0.0024551915,-0.041403323,0.026887694,-0.017101878,0.0266547,-0.025909113,0.03285238,-0.08639478,-0.107923575,-0.02453444,0.0027770165,-0.033807665,0.03038263,-0.002883321,-0.023043267,-0.048463088,-0.00126837,0.00770633,0.0029080766,-0.029101154,-0.09180027,0.0081140725,0.020049274,0.030499127,0.009348949,-0.047181614,0.011049817,0.029124452,-0.029334148,-0.042218808,0.044874955,-0.00019567991,-0.030033136,0.007286938,-0.024254844,0.04571374,0.0039813127,0.024837334,-0.03995875,-0.02069001,0.012616713,0.023765553,-0.014282632,0.0065471767,-0.030685524,-0.0005857656,-0.026188707,-0.024604337,-0.0003145441,-0.025955712,0.041333422,-0.010595476,-0.03872387,0.010776048,0.008970331,-0.033341672,-0.0039929627,0.0479039,0.021225901,0.03280578,0.0038648148,0.00718209,-0.008300469,0.02182004,0.041147027,-0.010269282,-0.023730604,-0.00877811,-0.061510842,0.0067801727,0.021388998,-0.010904195,0.01706693,-0.0072461637,-0.0010688674,-0.0130827045,0.049348474,-0.0159602,-0.021097753,-0.012407017,-0.022309331,0.014585526,0.0053064753,0.015028218,-0.03508914,-0.021948187,0.0052948254,0.0013222501,-0.030219533,-0.0030580675,-0.0160068,-0.03035933,-0.0010411992,0.024720835,-0.04138002,-0.018930893,-0.025979012,-0.0024479101,-0.008970331,0.028425466,0.011323587,0.00218579,-0.0044822535,0.033388272,0.0080267,-0.031710703,0.0056734434,0.015307812,0.0007594201,-0.025839215,0.027400285,0.013001156,0.00048128158,-0.007123841,-0.050327055,-0.016775684,-0.0092615755,0.0007306597,-0.011655606,0.015995149,0.0072170394,-0.005227839,-0.051165838,-0.0026925555,-0.006220983,0.052004624,0.016565988,0.018721199,0.017684368,-0.04573704,-0.015727205,-0.015657306,0.0057724663,0.04212561,-0.00850434,-0.02293842,0.010269282,0.019816278,-0.008888783,-0.023649056,0.017358175,-0.0071587902,-0.0006378255,-0.0061452594,0.00082058145,0.03133791,-0.004324981,-0.06626395,0.034460053,0.009966387,0.009127604,-0.01753292,0.0049628066,0.005070567,-0.040681034,0.018441603,-0.0106478995,0.0043278937,0.014597176,-0.05163183,0.052796807,0.0039667506,-0.04617973,-0.02609551,-0.004852134,0.0025877077,-0.011492509,0.01965318,-0.022565626,-0.005134641,0.007013168,0.004467691,-0.013874889,-0.024557738,0.019583281,0.018441603,-0.04473516,-0.004004612,0.022332631,0.024790734,-0.035368737,-0.015668955,0.007927676,0.011731329,0.037582193,-0.018231908,0.010263457,-0.012139072,-0.0022309332,-0.026235307,-0.0159136,-0.056012146,-0.008416967,0.01224392,-0.0027376986,-0.0015552457,0.042894494,0.033691168,0.0061627342,0.027842976,0.031011717,0.011865302,-0.011119716,0.0029240951,0.008475216,-0.0060229367,0.003774529,-0.031780604,0.04301099,-0.013595294,0.019338636,-0.019047393,-0.010525577,0.02828567,-0.015109766,-0.013106003,0.00046271473,-0.0053297747,-0.0036871557,-0.027912876,0.014469028,-0.042871196,0.007013168,-0.01973473,0.03089522,-0.011882776,0.0018261032,-0.010595476,-0.030522427,-0.00045288523,0.030499127,-0.032829084,0.0033201876,-0.022286031,-0.015051517,0.023858752,-0.03779189,-0.029054554,-0.025885813,0.005003581,-0.020305568,0.025326625,-0.00013497364,-0.011544933,-0.026491603,-0.0027609982,-0.020095872,0.013420547,0.00085407455,0.03240969,0.023276262,-0.0009450885,-0.012069173,0.018476553,-0.006797647,-0.014259332,0.0006196227,-0.013746741,0.0135486955,-0.0018945456,-0.018895945,-0.010432379,0.008888783,-0.008510165,0.031291313,0.01145756,-0.0040861606,-0.02555962,-0.01650774,-0.0118711265,0.01648444,-0.025839215,0.03832778,0.018488202,0.042451803,0.047111716,-0.0048084473,-0.026212007,-0.04093733,-0.015762154,-0.0007346643,0.0024493665,0.0318971,-0.060951654,0.00046417097,0.0029168138,0.015284513,-0.03352807,-0.058295503,-0.007543233,-0.0372094,-0.006698624,-0.041846015,-0.027446885,-0.019385235,-0.027703179,0.015552457,-0.018581402,0.018814396,0.022181183,-0.023089865,0.03136121,-0.0028818646,-0.004657,-0.0019571632,0.026817797,-0.038118083,0.02451114,-0.040704336,0.040750936,0.033830963,0.00016327896,-0.019525032,0.028006073,-0.008859659,0.008533465,-0.02236758,-0.0049016452,0.011061467,0.014935019,-0.0146204755,0.005405498,-0.026305206,0.008760636,-0.028122572,-0.0033696992,0.003675506,0.006104485,0.03082532,0.006762698,-0.046039935,0.01039743,-0.034599848,-0.02870506,0.0022396704,-0.0048317467,-0.016577639,0.01759117,-0.0060287616,0.020037623,-0.0040948982,0.044385664,0.0024289794,-0.01748632,-0.025186827,-0.017148478,-0.005539471,0.005950126,-0.019338636,-0.028006073,-0.01220897,-0.001622232,0.0046482626,-0.04464196,-0.060951654,-0.0114808595,0.012150722,-0.0153893605,-0.0005311572,0.01116049,-0.015634006,0.009372249,0.008818884,-0.0007051758,0.010053761,-0.050327055,-0.021889938,-0.01435253,-0.021913238,-0.0040803356,-0.0059617753,0.021319099,-0.041636318,0.0037628792,-0.014748623,-0.105500415,0.016857233,0.007939326,-0.04725151,-0.02448784,0.011399311,-0.011865302,0.010129484,-0.022472428,-0.030056436,0.030172933,-0.002511984,0.0051754154,-0.02069001,0.0530298,-0.01220897,-0.005018143,-0.017218376,-0.0050268807,-0.007933501,-0.012139072,-0.012896308,-0.016822284,0.0033726117,0.005568595,0.0051550283,0.026421703,0.00042230455,0.025210125,-0.03511244,0.014538927,0.022227783,-0.0024668411,-0.00908683,-0.058621697,0.009098479,0.021016205,-0.007135491,0.014282632,-0.03981895,0.005760817,0.011381836,-0.026491603,-0.042148907,-0.02926425,0.033900864,-0.024138346,-0.00069024955,-0.000015483742,-0.00047545668,-0.02177344,-0.0078053535,0.0032765009,-0.011224564,0.036417216,0.025979012,-0.023194714,0.014853471,-0.03946946,-0.041170325,0.023649056,0.012418667,-0.014608826,0.014270982,0.0186047,-0.037395798,-0.006791822,-0.04641273,0.009034405,0.01808046,-0.01223227,0.043733276,0.02342771,0.026445003,-0.011329412,-0.005390936,0.0037920037,0.021027856,-0.008469391,0.0320136,-0.034693047,-0.012045873,0.000595231,0.021295799,0.009494572,-0.004161884,-0.0052103647,0.003139616,0.008300469,0.0073684864,0.038933568,-0.027982773,-0.022740373,0.012535164,-0.0029022517,0.0006520237,-0.046529226,-0.009162553,-0.0012800196,-0.052563813,0.039702453,0.019781329,-0.00042812945,-0.060951654,0.0147719225,0.00009774895,-0.011812878,0.0062559326,0.020375468,-0.020165771,0.033691168,0.008603363,-0.0019746379,-0.0013987018,-0.02020072,-0.03618422,0.016565988,0.0099430885,0.009453798,0.017870763,0.007653906,-0.034250356,0.008137372,-0.024045149,-0.0037075428,0.008282994,-0.021179302,-0.0078869015,-0.0006421942,0.050140657,-0.024045149,0.03133791,0.015133065,-0.022950068,-0.011038167,-0.0010877983,0.0111779645,0.033807665,-0.026328506,-0.010991569,-0.013886539,0.0081897965,-0.024045149,-0.0035823076,0.018884296,-0.022507377,0.04212561,0.023043267,-0.004723986,-0.037628792,0.018325105,-0.03518234,0.0022993756,-0.012861358,0.016962081,0.06761533,-0.0015596144,0.004421092,-0.0058685774,0.0016950432,-0.04198581,0.035858028,0.03511244,0.025606219,-0.009919789,-0.00252509,-0.009622719,0.014760273,-0.03555513,0.03942286,-0.028635161,0.0013280751,-0.014224383,-0.015622356,0.013688493,0.027074091,0.043243986,-0.0008992175,-0.009348949,0.04089073,0.022018086,-0.0036871557,0.00493077,0.019035742,0.0037104553,0.001432195,-0.0063666054,-0.013770041,0.011923551,-0.009710092,0.016927132,0.014026336,0.014270982,0.0011824528,0.014830171,-0.0123254685,-0.008160671,-0.0011875496,-0.021319099,0.024278143,0.024324743,0.0024697536,0.0051754154,-0.015494209,0.010618775,-0.018243557,-0.026817797,0.01812706,0.0033638743,0.025280025,0.008323768,0.0111663155,0.029916639,0.0016047574,0.007945151,-0.019804629,-0.06071866,-0.023159765,-0.020037623,0.015668955,-0.029497245,-0.014061286,-0.010880896,0.04154312,-0.02500043,0.0061918586,-0.010554702,0.0018362968,-0.06519218,-0.019024093,0.043873075,0.0042550825,0.019851226,-0.023707304,0.01817366,-0.03984225,-0.009797466,0.02602561,0.004598751,0.03560173,0.010042111,-0.015470909,0.016461141,-0.07069087,0.00040701422,-0.030475827,-0.002800316,0.015051517,-0.021866638,0.018697899,-0.023684004,0.028541964,0.000049238526,-0.047135014,0.013711792,-0.012674962,0.00074085325,0.021272501,0.009873189,-0.0070481175,-0.014608826,0.023637407,-0.012115772,-0.03769869,-0.005938476,0.011941026,0.014748623,-0.005696743,0.0015421398,0.021901589,0.0054899594,0.034762945,-0.033248477,0.03569493,0.015552457,-0.0077412794,0.004062861,0.006803472,0.0035153215,0.0068325964,-0.017521271,-0.03296888,-0.02283357,-0.013898189,-0.022099635,-0.022018086,-0.02607221,0.002270251,0.0265149,-0.0058190655,0.0015334025,0.019024093,-0.024231544,-0.021004556,0.019245438,-0.017894063,-0.03038263,-0.010176084,0.02714399,0.010624601,-0.03515904,-0.0147719225,0.0024886844,-0.026701298,0.0108750705,0.031687405,0.019245438,-0.015657306,0.012546814,-0.024860634,0.017101878,0.024021849,0.040191744,-0.01222062,-0.007939326,0.0135486955,-0.010071236,-0.0062559326,-0.017253326,0.010414904,-0.006448154,-0.030592324,0.03033603,0.017136827,-0.008690736,0.00016710155,0.033271775,0.004284207,0.026701298,-0.005388024,0.002034343,-0.00097494107,-0.0022993756,-0.016670836,-0.04361678,-0.02338111,-0.054567575,0.055452958,0.023590807,0.016228145,-0.004499728,-0.021086104,0.007840303,0.03935296,0.038071483,-0.0044589536,0.0479505,-0.011271163,0.005056005,-0.00801505,0.056757733,-0.017241675,0.0019848314,0.01702033,0.02232098,0.057643116,0.001831928,0.039725754,-0.008207271,0.0012822041,0.013770041,0.0069490946,0.03133791,0.0065588267,-0.00030325836,0.00663455,-0.019443484,0.007018993,0.02453444,-0.009669318,-0.01118379,0.0063607804,-0.0009385355,0.028588563,-0.03345817,-0.034902744,-0.0013659368,-0.00981494,0.01965318,0.021412298,-0.012395367,-0.007013168,0.0007594201,0.020818159,-0.031221414,0.015191315,-0.0057724663,-0.01968813,0.021249201,-0.015214614,0.0005023968,-0.045597244,-0.0099430885,-0.00006939811,-0.011311937,0.01223227,0.00982659,-0.060299266,-0.008416967,0.006855896,-0.04044804,0.016356293,0.006867546,-0.00078053534,0.023882052,0.008282994,0.0068966704,0.032083496,-0.009005281,0.021062804,-0.007292763,0.010595476,0.007828653,-0.01640289,-0.002086767,-0.020060923,0.011416785,0.008312119,-0.02877496,-0.004671562,-0.012873008,-0.0071587902,-0.005737517,-0.0053385124,-0.04301099,-0.0072228643,-0.004694862,-0.03672011,-0.028378867,0.017439723,0.017987262,-0.03625412,-0.018476553,0.021097753,-0.03497264,0.029497245,0.012744861,-0.033877563,0.0042871195,-0.00092324516,-0.0082655195,-0.0025163528,0.00801505,-0.022460777,0.025443122,0.00439488,0.011807053,0.011067292,-0.01088672,0.009768342,-0.0137001425,0.036021125,0.020829808,-0.022752022,0.007811178,0.030196233,0.015750503,0.01640289,-0.0057083927,0.013933138,-0.022227783,-0.032759186,0.0012465266,-0.015552457,-0.01805716,-0.003663856,0.0069432696,-0.016845584,0.013968088,-0.040517937,0.029147752,0.043290585,-0.02179674,0.010228508,-0.0265149,-0.026747897,-0.005198715,0.009931439,0.016123297,0.032712586,-0.009844065,0.01817366,0.013036105,0.01277981,0.004756023,-0.019198839,-0.0065355273,-0.0018406654,0.020503614,-0.0320602,-0.015156365,0.023707304,0.025093628,-0.03457655,0.0056210193,-0.021016205,-0.011463384,0.011760454,0.020538565,-0.024138346,-0.01144591,-0.011486684,0.0022411267,-0.014573876,0.010129484,-0.007298588,-0.022332631,-0.025932413,-0.004662825,-0.017742617,0.030196233,-0.019536683,-0.035485234,-0.012080823,0.01490007,0.0028032286,0.024953831,-0.0010164434,-0.03254949,0.00084679347,-0.009546995,0.040238343,0.0053239497,0.0053559868,0.013432197,-0.02712069,-0.017754266,-0.013944788,-0.04892908,0.004126935,-0.016531039,-0.002635763,0.003754142,-0.0046744747,-0.04151982,-0.014410779,0.0053938488,-0.023136465,-0.0053326874,-0.015634006,-0.029637042,-0.009616895,-0.016647536,-0.045340948,-0.034762945,-0.011078942,0.015144715,0.009884839,0.023299562,0.03394746,0.023136465,0.0045900135,-0.017497972,0.006593776,-0.017847465,-0.0011358537,-0.0102576325,0.02497713,0.004726899,-0.010205208,-0.026841095,0.0132691,0.029497245,0.003296888,0.015470909,-0.008382018,0.04142662,0.0038356904,0.02439464,0.04841649,-0.020829808,0.03567163,0.005370549,-0.056897532,-0.016845584,-0.0039172387,0.0040453863,0.013746741,0.018138709,0.013362299,-0.019245438,0.0056938305,-0.015272863,0.018872645,-0.022041386,-0.005222014,-0.011533284,-0.07013168,0.0064073796,-0.0011795403,0.009343124,0.007321887,-0.020107523,0.054986965,-0.021295799,0.03147771,-0.015051517,-0.023439359,0.020620113,-0.009704268,0.022227783,0.021342399,-0.015004918,-0.004336631,-0.034693047,0.008556765,0.022251083,-0.03126801,0.023101516,0.040215045,0.042941093,0.01748632,0.027773079,-0.036859907,0.021913238,-0.014049636,-0.0022615138,0.011317763,0.025210125,0.0035007591,0.009308175,0.0011649781,0.008416967,-0.007723805,0.0029736066,-0.025093628,-0.0130827045,0.0028614774,0.04888248,0.0041007227,-0.009855715,0.018395005,0.008131547,-0.017101878,-0.0319437,0.009587769,-0.005731692,-0.017661069,0.017055279,-0.00612196,0.0265848,-0.029613743,-0.009989687,-0.0022979192,-0.0026969244,0.035881326,0.0017052367,-0.016216496,0.023544207,-0.0029910812,-0.014806871,0.01226722,-0.0028731273,-0.0103333555,-0.0012945819,0.022122934,-0.03511244,0.023777204,-0.009628544,0.013175902,0.017952312,-0.004712336,0.00044778845,0.009267401,0.00076888554,0.0032095148,0.021097753,0.048090298,0.02926425,-0.01543596,0.00412111,0.0036405565,0.037488997,-0.04138002,0.031617507,0.025909113,0.010286757,-0.012663312,0.027540082,0.007496634,0.0014897158,-0.0077704038,0.01222062,-0.011102241,0.029287549,-0.013210852,-0.0070947167,-0.038071483,-0.008446091,-0.024161646,-0.0015683518,-0.036906507,0.009022756,-0.020957956,0.0015610707,0.014667074,-0.020060923,-0.032526188,-0.0037774416,-0.03394746,0.028308967,0.0031250538,0.002356168,-0.016391242,-0.045900136,0.025116928,-0.005577333,-0.011964325,0.06174384,0.022157883,-0.021563744,-0.005932651,0.013537046,0.027936175,0.007519934,0.0075898324,0.011463384,-0.027213888,0.036533713,0.032479588,-0.019501733,0.021610344,-0.0017955225,-0.02439464,-0.030988418,0.016962081,-0.0159602,-0.015016568,0.028402166,-0.018045511,-0.000771798,0.010228508,-0.031640805,-0.016181545,0.031710703,-0.016717436,-0.01757952,-0.023439359,0.028308967]},{"id":"guide-sending-without-reply-7","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Typing indicator\nUse channel.sendTyping() before a slow operation so users see \"Bot is typing...\". Lasts ~10 seconds.\n\n```javascript\nconst channel = message.channel ?? (await message.resolveChannel());\nif (channel?.isSendable?.()) {\n await channel.sendTyping();\n await slowOperation(); // e.g. fetch external API\n await message.reply('Done!');\n}\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[0.0030561362,0.033137836,-0.008352982,-0.009942721,-0.04064798,0.027217427,-0.016089255,0.027614862,-0.0013901651,0.03138364,0.016212597,0.057449877,0.011011683,-0.011539312,0.019364666,-0.023352718,-0.03105473,-0.009209522,0.007914433,0.037660368,0.014554335,0.031520687,-0.011299481,0.046952117,-0.012450672,-0.003158921,0.021653341,0.040565755,-0.009401388,-0.042977773,0.0138828065,-0.026121056,0.018830184,-0.04870631,0.03297338,0.012635684,0.06293174,0.005546956,-0.009572696,-0.0049987696,-0.02639515,-0.04410155,0.016829306,-0.0059923567,0.025942896,0.049035225,-0.02710779,-0.002225292,0.028752347,0.053914078,-0.041634716,0.049939733,-0.023763858,0.05377703,0.02905385,-0.017925678,-0.035577264,0.00089765433,0.017171921,0.01761047,0.007297724,-0.035193533,-0.04020943,0.013382588,-0.0073525426,0.004937099,-0.032452602,0.02592919,-0.0073730997,0.011813405,0.002588465,-0.010874637,0.0071743825,-0.024969866,-0.0017139374,0.04229254,-0.015390318,0.006588509,0.030917682,-0.023393832,-0.005067293,-0.011772292,-0.04456751,-0.0038098916,-0.049802687,0.0008175678,-0.046349116,-0.050652374,0.00881894,-0.012621979,-0.020926995,0.010579987,-0.016966352,-0.023489764,0.07334727,-0.01571923,-0.014609153,-0.0022167265,0.00053705083,0.04774699,0.08135078,-0.03146587,-0.047034346,-0.018638318,0.00872986,-0.009511025,-0.009723446,0.046952117,-0.028505664,-0.028999032,-0.055914957,0.001440701,0.0009627514,0.0021225072,0.019816918,-0.029985767,0.038729332,-0.04229254,0.049007814,-0.025531756,-0.023667924,0.037386276,0.027916364,-0.0091547035,-0.036673635,-0.04073021,-0.034837212,-0.049309317,-0.0029293683,0.040483527,0.016240006,-0.024024244,0.04029166,0.012512342,0.0019580515,0.0095384335,0.009723446,0.02905385,-0.05311921,0.04380005,-0.024257224,-0.013245541,0.03607063,0.039195288,-0.030890273,0.018926118,-0.06742686,0.000080247126,-0.018706843,-0.03724923,-0.025052093,0.023051215,-0.034343842,0.027203724,0.011820258,0.028053412,0.0061773695,0.0336312,-0.07329245,-0.058601066,-0.028944213,-0.06638531,0.0036317313,-0.013327769,-0.010977422,0.0027717648,0.043169636,-0.02787525,-0.033987522,0.013087938,0.016596327,0.019858032,0.0024479926,0.014540629,0.031520687,0.007044188,0.025819553,-0.048980407,-0.017624175,0.015280681,-0.011655802,0.04917227,-0.0030150223,-0.037167,-0.035193533,-0.03996275,-0.0033507862,-0.0064000697,-0.00402574,-0.0124575235,-0.013690942,0.0051803566,0.0043340945,0.00920267,-0.010970569,-0.015623297,0.042977773,-0.0068146354,0.020392515,-0.026449967,0.017103398,0.011368005,0.017158218,-0.03217851,-0.016747078,-0.019008344,0.02905385,-0.00075675343,-0.028067116,-0.002901959,0.02291417,-0.00044026176,0.004477993,-0.025970304,-0.070332244,0.0025473512,-0.041442852,0.016788192,-0.03689291,-0.020419924,-0.071757525,-0.005574365,0.06698831,0.024928752,0.0014621145,0.027395587,0.029081259,-0.010100325,-0.016267415,-0.019488007,0.036618814,0.021900024,0.021338135,-0.015129929,0.039195288,0.010518316,0.032754105,0.046431344,0.0026449969,-0.037057362,0.0001425069,-0.008716155,-0.0039332337,-0.016034435,-0.05004937,-0.005218044,-0.024969866,-0.049364135,0.005399631,0.0090861805,0.02751893,-0.028176753,-0.0052043395,-0.025422119,0.019830624,-0.019076867,0.017377492,0.047938854,0.022968987,0.011683211,-0.019255029,-0.030890273,-0.019775804,0.018172361,-0.0015486251,-0.025819553,0.0519132,-0.004152508,0.044814195,0.008167969,0.0030852584,0.008544847,0.04344373,0.008065185,0.00021210081,0.044786785,0.01047035,-0.023215672,-0.07427918,-0.01896723,-0.012293068,0.033658613,-0.00036702756,-0.00009009735,-0.0017661863,0.0035974698,-0.025874373,-0.042429585,-0.015938504,0.0073525426,0.019460598,0.016185187,0.017870858,0.00805148,-0.021954844,0.023229375,0.022598961,0.014828428,0.028861985,-0.016020732,0.019296141,-0.017678995,0.05969744,0.003160634,-0.0132044265,0.06199982,-0.04311482,-0.04259404,0.019008344,-0.03563208,-0.00033940413,0.032699287,-0.03220592,0.0025490643,-0.0418814,-0.02775191,0.003205174,0.024353156,0.019816918,-0.043306682,0.014773609,0.021804092,0.039990157,-0.046787664,0.003160634,-0.04347114,0.05141983,-0.002965343,0.027505225,0.030095404,0.017925678,-0.033055607,-0.007530703,-0.008887463,0.029519808,0.038455237,-0.07126416,0.0031246594,-0.023613106,0.089683205,-0.018528681,0.03596099,-0.0068180617,-0.0027854694,0.026641833,0.0044231745,-0.013896512,0.036920317,0.0044368794,0.017144512,0.024188701,0.0002293387,0.046403933,-0.060958266,0.031136956,0.0066638845,-0.01807643,0.003455284,-0.049090043,0.011820258,-0.031602915,-0.013519634,0.016760783,0.02946499,0.0148558365,0.051666517,0.010689625,-0.04733585,0.007331986,0.0034193094,0.027505225,0.03206887,-0.003967495,0.0020745408,-0.036317315,-0.007592374,-0.017774926,0.011368005,-0.024997275,0.03683809,0.0065987874,0.0054818587,0.0007897302,-0.003964069,-0.02365422,0.032781515,0.007544408,-0.0033507862,-0.041634716,-0.019446893,0.014047262,-0.029711673,-0.0057285423,0.07077079,0.047390666,0.036317315,0.009750856,0.0070715975,0.009326012,-0.0014449836,0.058326975,-0.014869542,-0.013314064,0.06167091,0.018007906,-0.00004654762,-0.016294824,0.017939381,-0.012313625,0.038455237,0.07444364,-0.00008185314,0.03645436,0.018706843,0.0133620305,-0.020694016,-0.0003721668,0.014595448,0.026354035,-0.004669858,-0.07488219,-0.07778757,0.0029807605,-0.037441093,-0.008120003,0.028752347,0.030753227,-0.045444608,0.03453571,-0.09280787,-0.039304927,-0.0048000524,-0.008311868,-0.01902205,0.017308969,-0.031301413,-0.0056702974,-0.017884564,-0.018117543,-0.012875515,0.007825353,-0.017733812,-0.061396815,0.039770883,0.014609153,0.013341473,-0.055448998,-0.028053412,0.020652901,0.01395133,-0.036481768,-0.014650267,-0.020817358,0.0037482209,-0.027820433,-0.0020659755,0.022379687,0.006441184,0.017130809,0.016377052,-0.005512694,0.010223666,0.009997539,-0.00793499,0.0067461124,0.024613544,-0.046952117,0.055257134,-0.028861985,-0.0109637175,-0.014718791,-0.027039267,0.025435824,-0.021817798,-0.033220064,0.02214671,0.06907142,-0.016404461,-0.014965474,0.035467625,0.016705964,0.0022304312,0.0012830975,0.026682947,-0.005701133,0.014102081,0.042950362,-0.04108653,-0.0380441,0.013094789,-0.014746199,-0.014102081,0.06605639,-0.016212597,0.022174118,0.005084424,-0.023352718,0.00402574,0.06644013,-0.03206887,-0.023256784,0.0062219095,-0.047829214,-0.04547202,-0.0073251333,-0.005975226,0.0059067025,0.008805235,0.014526925,0.0046150396,-0.04223772,-0.013848545,-0.015842572,-0.0068112095,-0.057614334,0.0007173526,-0.019063164,0.02680629,-0.015568478,-0.039414562,-0.026847402,0.02129702,0.0058621624,0.012820696,-0.0061773695,0.0030030305,0.011409118,-0.011929895,0.0006548251,0.0101757,0.004262145,-0.04607502,0.027409293,0.0014158613,-0.025298778,0.0016017306,-0.06830396,-0.020666607,-0.056353506,-0.015404022,-0.00050493056,0.024558727,0.016925238,-0.025339892,-0.026874812,-0.008969691,0.01604814,0.040593162,0.007023631,-0.012293068,0.0073251333,-0.04854186,-0.0074964417,-0.0056017744,0.0035495034,-0.0025713344,-0.0057216897,-0.0066810152,0.023023807,-0.0092437845,0.0061431075,-0.042155493,-0.0048822802,-0.019542826,-0.018926118,0.015445136,-0.012663093,-0.017555652,0.011251515,0.0045019765,0.002247562,0.009209522,-0.008503733,0.019392075,0.025285073,-0.0038201702,-0.02987613,-0.007503294,-0.007880172,0.0052694366,0.020282878,-0.0104429405,0.05531195,0.057614334,-0.048980407,-0.004899411,-0.030670999,-0.013444258,-0.035385396,0.014609153,0.0049165417,-0.015801458,0.02498357,0.026052533,-0.006509707,-0.016185187,0.004347799,0.0056840023,-0.0348098,-0.019542826,-0.0048411665,-0.012765878,-0.0038647102,0.00006333046,0.008387243,0.027710795,0.003456997,-0.02598401,0.0064583146,-0.0056086266,0.0006184222,0.021269612,0.0143350605,-0.06654976,-0.0028094526,-0.0016454142,0.0035769127,0.0006779517,0.028999032,0.04648616,-0.01055943,0.00949732,-0.004450584,0.011875076,-0.0044197487,0.03173996,0.013396292,0.009147852,0.0023674776,-0.0057114116,0.026504787,0.010120882,0.017130809,-0.03300079,-0.038592283,0.0032668451,-0.00938083,-0.021776684,0.017651584,-0.012313625,-0.004029166,-0.05314662,0.009552139,-0.026477378,0.0069208466,0.012156022,0.004645875,-0.0002695961,0.010326451,0.0015965913,-0.03099991,-0.0063932175,0.015417728,-0.0065542473,-0.007105859,-0.011998418,-0.025243958,-0.013060528,-0.035495035,-0.016651146,-0.003433014,0.006537116,-0.0005314833,0.03996275,-0.013608714,0.0013396292,-0.027765613,0.006012914,-0.0014364183,-0.010730738,-0.014499516,0.027094087,0.017555652,0.0047794953,-0.007379952,0.009367126,0.012443819,-0.032589648,0.0068214876,-0.009161556,0.0036214527,0.0022441358,-0.015828867,0.011066502,-0.008236493,-0.010634806,0.019981375,0.056517962,-0.012272511,-0.038564876,0.006273302,-0.014458402,0.037907053,-0.0066467538,0.016774487,-0.008154265,0.04311482,0.035056487,-0.023188261,-0.03949679,-0.030670999,0.01586998,0.0029704822,0.027710795,0.019063164,-0.022694895,0.0020300008,-0.01704858,0.012546604,0.00581077,-0.037824824,0.022900464,-0.041689534,0.012025828,-0.026874812,-0.021201087,-0.03760555,-0.010107176,0.024791706,-0.029026441,0.017363787,0.027395587,-0.009901607,0.009079329,0.017267855,-0.02073513,-0.008983396,0.028670121,-0.02575103,0.040154614,0.0068865847,0.017322673,0.034261618,-0.005666871,-0.027546339,0.02751893,-0.052077655,-0.0027974609,-0.014951769,-0.03533058,0.013773169,0.002799174,0.012258806,-0.00013597579,0.02905385,0.0032702712,-0.004601335,-0.00080814585,-0.014198014,-0.030177632,-0.015787752,0.011176139,-0.067317225,0.0418814,-0.0074758846,-0.00440947,0.026902221,-0.030259859,-0.007839058,0.02227005,-0.04804849,0.009641219,-0.018049018,0.020694016,0.013115346,-0.002562769,-0.045170516,0.0061842217,-0.0089491345,-0.0054784324,-0.012395853,-0.028067116,0.028971622,0.009757708,0.020748835,-0.027052972,-0.06786541,-0.00064754457,0.032425195,0.020461038,-0.018501272,-0.005300272,-0.020570675,0.006742686,0.016267415,0.006975665,0.02365422,0.021009224,-0.03099991,0.0148558365,-0.041634716,-0.045691293,0.005656593,-0.0010561143,-0.005392778,-0.029437581,-0.014732495,-0.09225968,-0.011292629,0.013039971,-0.02621699,-0.028067116,0.01123781,-0.016610032,0.024750592,0.009188966,-0.021132564,0.032863744,0.015746638,-0.011128173,-0.05317403,0.009504172,-0.028423436,0.015924798,-0.041196167,0.02439427,-0.02757375,-0.039332334,-0.010031802,-0.05185838,0.0053825,-0.0067084245,-0.016445575,-0.0036865498,0.036180265,0.016363347,0.0062835803,-0.0031452163,0.016733373,0.031411048,0.0058690147,-0.049391545,0.024928752,0.0032325834,0.0015888824,-0.009394535,-0.020269172,0.005886146,0.00026060242,-0.0024291486,-0.020104716,0.022037072,0.012765878,-0.028204162,-0.019529121,-0.02716261,-0.014650267,-0.0017867433,0.023174558,-0.018802775,-0.042347357,-0.009051919,0.008627075,0.0049165417,0.0077705346,0.005283141,-0.02439427,0.029793901,0.014184309,-0.000029550643,-0.019227618,0.028807167,-0.027313361,-0.015842572,-0.027738204,0.004707546,-0.009421945,0.021159975,0.016007027,0.023421241,0.06775577,0.037742596,0.023023807,-0.0103744175,0.009250636,-0.0045259595,-0.004344373,-0.00063426816,-0.010490906,0.03250742,0.027957479,0.016007027,-0.023942018,-0.028724939,0.006530264,0.011553017,0.032014053,0.052488796,-0.0445401,-0.016171483,-0.009099885,-0.022461915,0.0011614688,-0.012478081,0.012868663,0.025504347,-0.011717473,0.067317225,-0.0069859433,-0.0040188874,-0.03478239,-0.0071606776,0.026258102,-0.015006588,0.057120968,0.012875515,-0.017583061,0.03289115,-0.026888516,0.00872986,-0.0011272072,-0.04922709,0.0002824442,0.028779758,0.011724325,-0.0037208116,0.009319159,-0.010977422,0.014430992,-0.021995958,-0.02155741,-0.030917682,0.04972046,-0.009003953,-0.032041464,0.0007661754,-0.0067838,-0.007592374,0.03478239,-0.00014818148,-0.029739084,-0.011422823,-0.020899586,-0.0058244746,-0.054626722,-0.04459492,0.01327295,-0.027258541,-0.009421945,-0.04256663,-0.030424315,-0.015952209,-0.01221084,0.02680629,-0.019885441,-0.0017764647,-0.028533073,0.022818236,-0.041250985,0.009935869,0.021105155,-0.002865984,0.0056291837,-0.0153080905,-0.009250636,-0.020008784,0.009511025,-0.0053345338,0.04229254,0.05353035,0.033055607,0.022407098,0.006410348,-0.028067116,0.019515416,-0.030095404,0.038098916,-0.011463936,0.032014053,0.010066063,0.0038852673,0.030095404,0.030314678,0.051639106,-0.015102521,-0.017651584,0.036618814,0.054133352,0.0010775279,0.00077431253,0.029218307,0.018514978,-0.025339892,-0.00929175,0.047829214,-0.034042343,0.0030647016,0.03338452,0.013026266,0.005046736,0.008846349,-0.010340156,-0.018268295,0.021406658,0.020036193,-0.022749713,0.0013524774,0.0006710994,-0.003861284,0.003919529,-0.004553369,0.011546165,0.027834136,-0.015938504,0.037386276,-0.001282241,-0.022571553,-0.030972501,0.03382307,0.017788632,0.005663445,-0.008627075,-0.0023434944,-0.035522442,-0.0032000348,-0.045609064,-0.002648423,-0.027984887,-0.026107352,-0.008599666,0.03571431,-0.012046385,0.031246593,0.012156022,-0.015417728,-0.026737764,-0.008421505,0.027847841,-0.015499955,0.024531318,-0.039441973,0.02291417,-0.02503839,0.013834841,0.010394975,0.03960643,0.0049508037,0.020008784,-0.023517173,0.011833962,-0.022571553,0.0024668362,-0.010545725,0.010874637,0.007797944,-0.014979179,0.0168156,-0.034563117,0.026436264,0.001738777,-0.007400509,0.02032399,-0.038893785,-0.016390758,0.023407536,0.022708599,-0.01200527,-0.021762978,0.041607305,0.0016077263,-0.01943319,-0.026559604,0.010011245,0.0047760694,-0.01589739,0.012628832,0.038153734,-0.034014933,0.062602825,0.027477816,-0.0018792497,0.00019165092,0.021653341,0.007044188,0.029684264,0.005252306,-0.022694895,-0.016733373,-0.016335938,-0.0132044265,0.003390187,-0.0044642887,-0.0037859087,-0.022585258,-0.032754105,0.006639901,0.0059032766,0.022585258,0.035878763,-0.0011383422,-0.043635596,-0.003902398,-0.008743565,-0.0037790562,0.0069311247,-0.011785996,0.020269172,-0.037413687,0.016527804,0.009415092,-0.025915487,0.023188261,-0.0036008959,0.016418166,-0.018898707,0.01781604,-0.029574627,-0.027464112,0.00307498,0.047445487,-0.0002738788,-0.0059204074,0.027546339,-0.013108495,-0.034124568,-0.027190018,0.0033028198,0.009757708,-0.027148904,0.032945972,0.03596099,-0.007928138,0.026038827,-0.014211718,0.022640076,0.011614688,-0.0032771237,0.013711499,-0.009860493,-0.01748713,0.0013439119,-0.08705191,-0.02091329,-0.04654098,0.029245716,0.015856275,0.0018946674,0.011765439,0.004258719,0.0009935868,0.04610243,-0.011203549,-0.021064041,0.010436088,-0.011210401,-0.0057353945,-0.0015486251,0.09193077,-0.04122358,-0.020721426,0.0083392775,0.020872176,0.032945972,0.02303751,0.014732495,-0.030095404,0.025860667,0.027094087,0.016377052,0.03870192,0.022009661,0.010072915,0.01191619,-0.037112184,0.0015169331,0.024065359,-0.011902485,-0.014609153,0.010367565,-0.010381269,-0.0017413467,-0.018542387,-0.022242641,0.03604322,-0.013053676,0.0383456,0.040565755,0.0057799346,0.0063897916,0.0015983044,-0.00407028,-0.07000333,0.019679872,0.013999296,-0.022379687,-0.022626372,-0.02503839,-0.028779758,-0.020461038,-0.0033370815,-0.00027602015,0.004107968,0.02114627,0.017898269,-0.042539224,0.009661776,-0.017733812,0.017788632,0.0103744175,0.046760254,-0.0049028373,0.04267627,-0.0035289465,-0.012772731,0.010881489,0.002907098,0.010011245,-0.005546956,0.010148291,-0.021516295,-0.012635684,0.04728103,0.0031931826,-0.016020732,0.021900024,-0.024832819,-0.010223666,0.010682772,-0.0075375554,-0.0043169637,-0.004937099,-0.026134761,0.0043546516,-0.0064960024,-0.048624087,-0.007215496,-0.014759904,0.014430992,0.009983835,-0.008263902,-0.019460598,-0.04700694,0.01784345,0.037167,-0.00411482,0.013190722,-0.027546339,-0.032836333,-0.02728595,0.039003424,-0.0011657515,0.0134990765,-0.01250549,-0.0047418075,0.012717912,-0.018295703,-0.012313625,-0.024339452,0.010936308,0.03757814,-0.034645345,-0.010477202,0.03297338,-0.041716944,-0.016240006,-0.008195379,-0.018898707,0.009935869,-0.051830973,0.00890802,-0.034672756,-0.0035460773,0.0007152112,0.0048891325,0.040867254,0.020652901,-0.019323552,0.019213915,0.009709742,-0.0026124483,0.021009224,0.0015340638,-0.0051632253,0.0038886934,-0.009805675,-0.006636475,0.019104278,-0.0050124745,-0.019063164,0.012251954,0.031767372,-0.00019839617,0.012793288,-0.0072771674,-0.0066227703,-0.019748395,-0.03445348,-0.006129403,0.002607309,0.017829744,-0.04760994,-0.010497759,-0.012313625,0.030177632,0.001187165,0.015212158,-0.032808922,-0.016007027,-0.001865545,0.023106035,-0.021187384,-0.013601862,-0.007516999,0.0021293594,0.0007785952,-0.0033593515,0.014650267,0.010257928,-0.03875674,-0.028039707,-0.019803215,0.03371343,0.010532021,-0.00043790627,0.0076471926,0.010497759,-0.005279715,0.0034878326,0.021365544,-0.015732935,0.0075718174,0.057175785,-0.03445348,0.0029362205,-0.005464728,-0.055668272,0.020392515,0.001971756,0.0051221116,-0.0068351924,0.0026758322,-0.007379952,-0.014348765,-0.02864271,-0.008736712,-0.023969427,-0.009894755,0.0007550404,-0.012532899,-0.04221031,-0.040922076,-0.0099221645,-0.022968987,0.040072385,-0.012197135,0.016335938,0.042840727,0.020228058,-0.0014167178,-0.045855746,0.016007027,-0.010771852,0.0064754453,-0.024079064,-0.0144035835,-0.004303259,-0.042840727,-0.005879293,0.015157339,0.018953526,-0.008195379,0.024051655,0.011518755,-0.005663445,-0.0023452076,-0.015993323,-0.013444258,-0.031411048,0.019090572,-0.014705085,-0.029273124,-0.008675042,-0.0069037154,-0.028423436,0.019570235,0.012354739,-0.027368179,-0.021201087,0.035823945,-0.016788192,0.027272247,-0.008126855,-0.0108061135,-0.02061179,-0.034206796,0.025120618,-0.0100592105,-0.014595448,-0.026614424,-0.03138364,0.03486462,-0.0055435295,0.025655098,0.01055943,-0.02380497,-0.02365422,0.008531142,0.027066676,0.0069174203,0.0058587366,-0.01866573,-0.00508785,0.028368618,0.012580865,-0.016925238,0.011957304,0.06397329,0.002247562,-0.008846349,0.010799262,-0.005526399,0.03837301,-0.0050330316,-0.0042450144,-0.0031948958,-0.003345647,0.03491944,-0.017117104,0.006146534,0.0065679518,0.021571113,0.028861985,-0.005834753,-0.007708864,-0.019282438,0.032863744,-0.0026792584,0.010991126,-0.009346569,-0.0032103134,-0.007928138,-0.022420801,-0.017034875,-0.0075718174,-0.013821136,-0.010367565,0.033165246,0.012827549,0.004190196,-0.007400509,-0.012704208,-0.0078185005,0.020049898,0.019296141,0.012258806,-0.030670999,-0.013060528,0.0030115962,-0.004515681,0.010922603,-0.015253272,-0.01743231,0.01958394,-0.015815161,0.027655976,0.008400949,0.0010167134,0.0055503817,0.00094904675,-0.010997979,0.0013199288,0.0023828954,0.005656593,0.014691381,-0.011169286,0.003857858,0.017788632,0.015650706,0.03324747,0.03300079,-0.03681068,0.032671876,0.02575103,0.016390758,-0.021858912,0.049693048,-0.0057285423,0.007921286,0.023942018,0.032452602,-0.013581305,0.022201527,-0.039387155,-0.013149608,-0.0153080905,0.008133708,-0.0143350605,-0.03957902,-0.042868134,0.013752612,-0.041305803,0.0123890005,0.03831819,-0.04141544,-0.029684264,-0.0031897565,0.008764122,0.012574013,0.02153,-0.003960643,0.015637001,-0.032014053,0.03486462,0.032041464,0.00834613,0.04771958,0.022133004,-0.002372617,-0.0031743387,0.036975138,0.0073662475,0.014266537,0.0061773695,-0.011669506,0.018528681,0.0053585167,0.012149169,-0.045088287,-0.009442502,-0.001558047,-0.015678115,-0.0017207897,-0.018624615,-0.012436966,0.008448915,0.035138715,0.008366686,0.031246593,-0.03379566,-0.017158218,-0.0019905998,0.055969775,0.0020317137,-0.02209189,0.0037619255,0.026408853]},{"id":"guide-sending-without-reply-8","type":"guide","source":"guides","text":"Guide: Sending Without Reply (sending-without-reply)\nSection: Quick reference\n\n```javascript\n// Same channel, no reply\nawait message.send('Pong!');\n\n// Reply to the message\nawait message.reply('Pong!');\n\n// Send to a specific channel\nawait message.sendTo(logChannelId, 'User joined!');\nawait client.channels.send(channelId, 'New update available!');\n```","meta":{"slug":"sending-without-reply","url":"/guides/sending-without-reply"},"embedding":[-0.011507871,0.009648256,0.0067139305,0.012630884,-0.01216598,0.03086476,-0.030212687,0.02649346,0.0005762237,0.025744785,0.014442196,0.037651144,0.028908543,0.030695705,-0.013778049,-0.025841387,-0.04257791,-0.015915398,0.013307107,0.047214873,0.0021237636,0.041660182,-0.017847463,0.049654104,-0.032410413,-0.018825572,-0.0072090225,0.05482238,-0.036854167,-0.04458243,0.022375744,-0.025551578,-0.0044709225,-0.01061429,0.017533502,0.022581026,0.032700222,0.046514496,-0.036274545,-0.0063818567,-0.0022414988,-0.004205263,0.03926925,0.0053705405,-0.016651997,0.048543166,-0.04682846,-0.006418083,0.03608134,0.035163607,-0.03407682,0.057478976,0.027217984,0.041249618,-0.0055033704,-0.050523534,-0.0045916764,-0.018982552,-0.002630931,0.014297291,-0.029246654,-0.04687676,-0.045331106,0.009207504,0.011912396,-0.007553172,-0.029077599,-0.008332036,0.008332036,0.031251173,0.0099742925,0.0022505554,-0.0004969788,-0.029922878,-0.015541059,0.019284436,-0.00015415021,0.020636884,0.0003764133,-0.042408857,-0.004540356,-0.0018022556,-0.061874427,-0.035622474,-0.08472111,0.023559134,-0.02588969,-0.06313027,0.026251951,-0.028063264,0.0034807383,-0.0262278,-0.054242764,-0.015975773,0.07090683,-0.028353075,-0.013995405,-0.002641497,0.026276102,0.0167003,0.09046901,-0.06636648,-0.11022439,-0.020141792,0.042602062,-0.004356206,-0.0037645106,0.05119976,0.0011577304,0.0022550838,-0.04745638,-0.0010769761,0.046731856,-0.005916953,-0.0037222465,0.019477643,0.024851203,-0.063951395,0.03458399,-0.0023818756,-0.04455828,0.01777501,0.08549394,-0.022134235,0.031347778,-0.039848868,-0.011984849,-0.03605719,-0.015601436,0.039969623,0.09940481,0.00047773359,0.010028632,0.021904802,-0.024899505,0.024368187,0.0064060073,0.003136589,-0.020987071,-0.023848943,0.02009349,-0.019151608,0.013524464,-0.0040482827,0.01411616,0.012787865,-0.083078854,-0.0049599768,-0.000969052,-0.03989717,0.000046792233,0.040356036,-0.058928024,0.043785453,-0.010867873,0.047359776,0.005738841,0.02296744,-0.05414616,-0.04859147,-0.03704737,-0.04866392,-0.012787865,-0.03690247,-0.04422017,-0.038979437,0.013029372,0.009575804,-0.015613511,0.033956066,0.005859595,-0.018088972,-0.0015252759,-0.0021554616,0.035791527,-0.037482087,0.029850425,-0.06327517,-0.017714633,0.008060339,0.030695705,0.052890316,-0.0118520195,-0.06622157,-0.0017796142,0.0111214565,0.00046867703,-0.0071003437,0.006701855,-0.007329777,-0.032144755,0.014804458,0.00020565941,-0.0032875317,-0.0063275173,-0.039486606,0.041660182,0.014997665,0.015601436,-0.04859147,0.0085916575,0.018596139,0.016289735,-0.054049555,-0.042167347,-0.0008603733,0.008597695,0.0046580913,-0.033931915,-0.00953354,0.038906988,-0.0039033778,0.010409008,-0.036491904,-0.07742756,-0.012111641,-0.060087264,0.017340295,-0.04682846,-0.014732006,-0.0960237,0.0059954436,0.0524556,-0.014768233,0.013802199,0.031251173,0.0026430064,-0.03117872,-0.0010686743,-0.0054973327,0.064048,0.037313033,0.00073320407,-0.035670776,0.010300329,0.0022520649,0.040259432,0.027604397,-0.030043632,-0.047866944,0.017424824,-0.036781713,0.0103124045,0.003652813,-0.018668592,-0.012642959,0.0022550838,-0.05680275,0.03028514,0.019888207,0.06235744,-0.0038550762,-0.015710115,-0.010384857,0.020310847,-0.03489795,0.014635403,0.010300329,0.031637587,0.0056482754,-0.009913916,-0.036564358,-0.019163683,0.027169684,-0.039848868,0.020709336,0.0024301773,0.0262278,-0.0064241206,0.021059522,0.0044407337,0.0049026185,0.02678327,-0.02022632,0.015251249,0.04424432,0.007329777,-0.013862576,-0.031227022,-0.006587139,-0.03893114,-0.0056090304,-0.030357592,-0.005735822,0.020721411,0.0018082934,-0.01996066,-0.0032060225,0.008156942,0.018004443,0.0054731816,0.019453494,-0.0015260306,-0.013476163,0.0056814826,0.064820826,0.055160496,0.00086339214,0.029488163,0.004827147,0.00037320578,0.015263325,0.030744005,-0.024682147,0.012703336,0.036443602,-0.024971958,-0.052214094,0.02852213,-0.057237465,0.0044860165,0.037143975,-0.0669944,-0.0009184862,-0.028956845,-0.005237711,-0.0026777233,0.028087415,0.023788568,0.006623365,0.027242135,0.007052042,0.046369594,-0.037916802,-0.034245875,-0.02473045,0.032700222,-0.03455984,0.048736375,0.060183868,0.030164385,-0.037071522,0.034197576,0.055691812,0.0104693845,0.047625437,-0.0451379,0.02448894,-0.026831571,0.027145533,0.008525243,0.027773455,0.011205985,-0.023172721,-0.003526021,-0.0055365777,-0.019610474,0.02533422,-0.014430121,-0.0113025885,0.01135089,0.0021690463,0.02430781,-0.054097857,0.04257791,0.007263362,0.007118457,-0.026879873,0.005095825,0.015504832,-0.042384706,-0.028739488,-0.021554615,0.0061131786,0.025551578,0.018427083,-0.0077282656,-0.045838274,-0.0064603467,-0.016978033,0.018137272,0.029922878,-0.007993924,0.0078067556,-0.030091934,-0.009177315,-0.012172018,0.016953882,-0.016241433,0.051634472,0.0094792005,0.02223084,-0.028449677,-0.019598398,-0.030985514,0.013524464,-0.015287475,0.0016965958,-0.009225617,-0.035646625,-0.0026279122,-0.014732006,-0.028159868,0.05588502,0.025116863,0.05448427,0.0029448918,-0.009545615,0.015359928,-0.008187131,0.02791836,0.005174315,-0.011218061,0.014913137,-0.0054580877,0.016193131,-0.03576738,0.0016392375,-0.009587879,0.0011169759,0.021204429,0.01692973,0.022532724,0.03876208,-0.0016347093,-0.04627299,0.020528205,-0.0016935769,0.02794251,-0.002517724,-0.020455753,-0.03907604,0.012498055,-0.025672331,-0.0072392114,0.011785605,0.034100972,-0.048205055,0.04339904,-0.066752896,-0.06506234,-0.003610549,-0.0008649016,-0.0003111306,0.0524073,-0.019055005,-0.022327442,-0.042940173,-0.012872392,0.0073116636,0.008458828,-0.019610474,-0.07660643,0.027821755,0.017135013,-0.0048633735,-0.03521191,-0.022750081,0.004893562,0.015082193,-0.053711444,-0.047069967,0.005014316,-0.016398413,-0.063081965,-0.0024694223,0.0011101834,0.020214245,-0.011218061,0.0095033515,-0.0305991,-0.018137272,-0.0016799921,0.0147199305,-0.0014792383,0.022472346,-0.04929184,0.02404215,-0.024657996,-0.0050414857,0.01790784,-0.026952326,0.0218082,0.0012898053,-0.0040573394,-0.022870835,0.026372707,-0.015094268,-0.0001456597,0.023764417,0.028642884,0.008676185,0.026952326,-0.0053675217,-0.031927396,0.0048392224,0.02791836,-0.018632365,-0.02557573,0.0043018665,-0.058589913,-0.004969033,0.053711444,-0.011990887,0.036660958,-0.0050505423,-0.01556521,0.012401451,0.05414616,-0.01938104,-0.033134937,0.003963755,-0.04018698,0.027169684,0.008247509,-0.0095033515,-0.021747822,-0.030671554,0.013802199,-0.016096529,-0.0018460291,0.0055758227,-0.009310145,-0.03989717,-0.018680668,0.016736524,-0.030381743,-0.018378781,-0.023909321,-0.027773455,-0.009219579,0.04694921,0.0022611215,0.014200687,-0.005316201,0.018439159,0.0113025885,0.0068527977,0.02256895,-0.00392451,0.001630181,-0.032724373,0.007547134,0.0048995996,-0.006665629,0.012498055,-0.0700374,-0.022532724,-0.021144051,-0.013790124,-0.022798384,0.013295032,0.006623365,-0.019743303,-0.033666257,-0.008905618,0.016639922,0.06086009,0.015094268,0.005657332,0.015227098,-0.04281942,0.010535799,-0.021627069,0.022001406,0.024875354,-0.02312442,-0.03402852,0.02296744,-0.022049706,-0.0015305588,0.0015652756,-0.007885246,-0.016555393,-0.006019594,0.0034173424,0.0026973458,-0.0042324327,-0.010759194,-0.039486606,0.027604397,0.0153720025,-0.013500313,-0.0017237655,0.036467753,0.00771619,-0.04455828,0.0039305473,-0.017787086,0.000025188561,0.02968137,-0.020419527,0.026904024,0.02188065,-0.030647403,-0.015806718,-0.026614213,-0.027193833,-0.024537243,0.03257947,-0.015879171,-0.012655035,-0.009122976,0.0039909245,-0.02707308,0.00887543,-0.006418083,-0.011326739,-0.03465644,-0.012045226,0.018088972,0.009056561,-0.036274545,-0.0055003515,0.00033263993,0.036346998,0.013452012,-0.034632288,0.011236173,-0.011628624,0.008531281,0.0017735765,0.00056678976,-0.06631818,-0.019827832,0.023740266,0.004917713,-0.007547134,0.02852213,0.029029297,-0.0040211133,0.023679888,0.009569766,0.024657996,-0.017159164,0.028087415,0.008144868,0.0045041298,0.015251249,-0.018632365,0.030309292,-0.005418842,0.0116165485,-0.01761803,-0.0247546,0.0041237543,0.0061826124,-0.03876208,0.016543318,-0.004084509,-0.0027667794,-0.013802199,0.026734969,-0.012220319,-0.0020558394,-0.018076897,-0.0028769677,-0.01142938,0.015396154,-0.0012498054,-0.040645845,-0.008006,0.026372707,-0.051392965,-0.0052316734,-0.03518776,-0.022786308,0.022665553,-0.028860241,-0.018716892,-0.017110862,-0.0076316623,-0.002196216,0.02138556,-0.010155424,-0.0043622437,-0.05153787,0.0012573525,-0.010149386,0.0011969755,-0.050765045,0.010892024,0.023100268,-0.018052746,-0.0049599768,0.011755416,-0.008555431,-0.018101046,0.004229414,0.002970552,0.027894208,0.0024422526,-0.024778752,-0.017787086,0.018535761,-0.030671554,0.0012732015,0.01171919,-0.0032241358,-0.040621694,-0.003547153,-0.011761454,0.03760284,-0.017605955,0.022907062,-0.0011894284,0.04593488,0.021687444,-0.0042354516,-0.038858686,-0.03286928,-0.0006799968,0.01717124,0.011375041,0.020322923,-0.05380805,-0.019972736,-0.012359187,0.03265192,-0.009593917,-0.05704426,-0.0044105453,-0.035139456,-0.0033720597,-0.044147715,-0.046731856,-0.030067783,-0.019489719,0.01019165,-0.0066354405,0.01977953,0.021916877,-0.016543318,0.028860241,0.0119546605,-0.015637662,-0.01253428,0.041322067,-0.031082118,0.028135717,-0.021095749,0.016036151,0.023064042,0.013077674,-0.03260362,0.0063456306,-0.033303995,-0.00041282823,-0.029053448,-0.015577285,0.01735237,-0.01113957,-0.00038433782,0.014188612,0.018101046,0.01340371,-0.022013482,-0.010934288,-0.0056180866,-0.0124256015,-0.0048392224,0.0077403407,-0.07679964,0.022049706,-0.023293475,-0.024609696,-0.009207504,-0.013935029,-0.023740266,0.012069377,-0.046756007,-0.013343333,-0.021349333,0.035284363,-0.0017720672,-0.0067078928,-0.034535687,-0.0025086673,0.010946363,-0.007450531,-0.0045554503,-0.007993924,-0.01324673,0.005071674,0.0139108775,-0.03113042,-0.07452946,0.0033207391,0.0016331999,0.0005052806,-0.0032060225,0.0047184685,-0.011870133,-0.016651997,0.0076316623,0.0050867684,0.018016519,-0.02169952,-0.038979437,-0.022665553,-0.035405114,-0.025406672,-0.006683742,-0.0017765954,-0.02464592,-0.018837648,-0.02188065,-0.09554068,0.025986293,0.019115381,-0.043495644,-0.046152234,0.008525243,-0.019900283,0.014393894,-0.0029328163,-0.03555002,0.020733487,0.020661034,0.009877689,-0.04607978,0.02127688,-0.021482162,0.017074637,-0.036467753,0.008078452,-0.03315909,-0.010753157,-0.034125123,-0.04306093,0.018873874,0.013355409,0.009944104,0.018366706,0.030357592,0.04141867,-0.016096529,0.028473828,0.032144755,0.008730525,-0.002206782,-0.026348555,0.024235357,0.016941806,0.0021011222,-0.0018686705,-0.06264725,0.031637587,-0.005092806,-0.030043632,-0.029633068,-0.0041992255,0.006484498,-0.021288956,0.018910099,-0.004929788,-0.007649775,-0.0028105527,-0.016108604,-0.024102528,-0.01253428,0.035719078,0.028739488,-0.008211282,0.029319108,0.005817331,-0.035067003,0.0116407,0.019610474,-0.0073478897,-0.013210503,0.038351517,-0.035477567,-0.01324673,-0.034004368,0.009358446,0.019115381,-0.0017630105,0.03233796,0.031903245,0.04492054,0.00058301614,0.0061343107,0.012498055,0.011839944,-0.013295032,0.00829581,-0.056899354,-0.0079395855,0.008790902,-0.00017094259,0.007154683,-0.017424824,0.0013048995,-0.010294291,0.020890467,0.029802123,0.034004368,-0.022061782,-0.026421007,-0.011670888,-0.004932807,-0.008724487,-0.039800566,-0.0037886614,0.006236952,-0.046103932,0.04192584,0.022013482,-0.0025373464,-0.060618583,-0.011737303,0.023945548,-0.023969699,0.05042693,0.006131292,-0.00002301876,0.016712373,-0.004784883,-0.0076014735,-0.007118457,-0.03820661,-0.00835015,-0.0013448993,0.031613436,-0.018922174,0.029439861,0.0038913025,0.014780307,0.011604474,-0.0211199,-0.017364446,0.046152234,-0.018765194,-0.026034594,0.009497314,0.024513092,-0.021470087,0.03842397,-0.020395376,-0.023691963,-0.0022898004,-0.008978071,0.0068890243,0.021687444,-0.03144438,0.0023592343,-0.016833128,-0.019393116,-0.024947807,0.008126754,0.014732006,-0.010288253,0.03555002,0.015420305,0.016845204,-0.024162905,0.032072302,-0.029319108,0.017799161,-0.018728968,0.009195428,0.05066844,-0.015347852,-0.011532021,-0.0012860317,0.0061131786,-0.03233796,0.039486606,0.05037863,0.021433862,0.011888246,0.0028030057,-0.020467827,0.006520724,-0.021458011,0.034125123,-0.0027999869,0.03144438,-0.014345593,-0.0032663997,0.027145533,0.008012038,0.05767218,0.005062618,-0.007402229,0.006315442,0.036781713,0.018813496,0.014804458,0.030985514,-0.0047788452,-0.022532724,-0.0005471672,0.018946325,-0.011417305,-0.012558431,0.03960736,-0.016060302,0.010759194,0.00006896194,-0.00940071,-0.009841463,-0.03989717,-0.010716931,-0.018185575,0.0052980883,0.03383531,-0.000601884,0.0225448,-0.009201466,0.017823312,-0.00792751,-0.047504682,0.014224838,0.0071727964,0.024368187,-0.0025569692,0.013983331,0.01279994,0.022496497,-0.03318324,-0.011785605,-0.03084061,0.005554691,-0.031879093,0.017569728,-0.0072090225,-0.015045967,-0.021771973,0.043326586,-0.023221023,0.00081207167,-0.0020996127,-0.026904024,-0.07124495,-0.0076075112,0.029029297,0.018270103,-0.014418045,-0.013584842,0.017678408,-0.04748053,-0.016482942,0.019103305,0.010433158,0.022979515,0.016519167,-0.010010519,0.0038520573,-0.06583516,0.015927471,-0.03315909,0.0035562096,-0.015082193,-0.011338814,0.009545615,-0.043519795,0.015444456,0.013729746,-0.036757562,0.027701002,-0.004036207,-0.010584101,0.0071244948,0.018294252,-0.0008830147,-0.00019320664,0.022762157,0.0021026316,-0.05008882,-0.01627766,0.013307107,0.017388597,-0.005877708,0.017630106,0.026831571,-0.007752416,0.037699446,0.0075290212,0.007196947,-0.002917722,-0.008338074,-0.009436937,-0.0057297843,0.014502573,0.015601436,-0.016217282,-0.019248212,-0.043350738,-0.008078452,0.0013652766,-0.025406672,-0.028328924,-0.011888246,0.01804067,0.001345654,0.04929184,0.0123773,-0.046731856,-0.013367484,0.0261795,-0.029270805,-0.026348555,0.010046745,0.016796902,0.02035915,-0.022556875,0.001206032,-0.0019924433,-0.026614213,0.014973515,0.028956845,0.03347305,-0.01790784,0.029198352,-0.0120331505,-0.022049706,0.013500313,0.04861562,-0.026034594,-0.025116863,0.010179575,-0.011266362,-0.03267607,-0.029633068,0.007758454,0.0002728289,-0.043278288,0.00879694,0.019211985,-0.024851203,0.011749378,0.020926693,0.012968996,0.012202207,0.0065690256,-0.0076256245,-0.011984849,-0.011067118,-0.023100268,-0.043592248,-0.020890467,-0.06834685,0.0451379,0.016205207,0.011544096,-0.013452012,-0.0010792402,0.01543238,0.054967288,0.034439083,-0.0040996033,0.025793087,-0.04453413,-0.00850713,0.0033599841,0.067574024,-0.019368965,-0.0046128086,0.02462177,0.022424046,0.049340144,0.0011584851,0.03902774,-0.00953354,-0.005666388,0.017340295,-0.0030747026,0.011785605,0.022629328,-0.0022747063,0.021578766,-0.013150127,-0.0005886765,0.036830015,-0.026396856,-0.0039456417,0.014079934,-0.0051260134,0.025672331,-0.0465628,-0.034318328,0.008344112,-0.019670852,0.011006741,0.049219392,0.0092437295,0.0053554466,0.00063886493,0.015661813,-0.060618583,0.024875354,-0.025020259,-0.011296551,-0.0063033663,-0.017581804,-0.023015741,-0.049943916,-0.011091269,0.008827128,0.014055783,-0.00001755888,0.018064821,-0.039124344,-0.0118761705,0.014744082,-0.00961203,0.0045162053,0.022158386,-0.020419527,0.036636807,0.005310164,-0.019211985,0.016531242,-0.011169759,0.020842167,-0.0041388483,0.00821732,0.007468644,0.012510129,0.014164462,-0.0030641365,0.02238782,0.016229358,-0.006810534,0.019344814,-0.021168202,-0.0047154496,-0.0058535575,-0.0029313068,-0.043809604,-0.009750897,-0.010861835,-0.031251173,0.003737341,-0.0010362215,0.028208168,-0.029174201,-0.012775789,0.008404489,-0.012606733,0.05380805,0.00080150564,-0.015601436,-0.0014362197,-0.024235357,-0.0124256015,-0.006291291,0.021095749,-0.0095576905,0.0005709407,0.012015037,0.007897321,0.0021237636,-0.028063264,-0.017702557,-0.012630884,0.000007393833,0.03820661,-0.011000703,0.010523724,0.023378003,-0.010644478,0.003918472,0.0028618732,0.02415083,-0.023233097,-0.047528833,0.022363668,-0.035091154,-0.0055426154,-0.016374262,-0.011767492,0.0073961914,0.016193131,-0.017521426,0.024211207,0.054629177,-0.006061858,0.0127637135,-0.000004719907,-0.0011516927,0.019682925,0.037361335,0.003918472,0.02620365,0.012280697,0.0019426324,0.009062598,0.0048573357,0.006762232,0.0021403672,-0.025020259,-0.011399192,0.02343838,-0.028063264,-0.012256546,0.023691963,0.017050486,-0.037385482,-0.009702596,-0.02246027,0.008235433,0.0021131975,0.04139452,-0.02506856,-0.012727487,-0.009491276,0.017412748,-0.0042988476,0.008754675,-0.008205244,0.018173499,-0.027435342,-0.007015816,-0.03470474,0.02970552,-0.024428563,-0.030985514,-0.016205207,-0.00829581,0.0137538975,0.027266286,0.012027113,-0.014732006,0.0109041,-0.011550134,0.020987071,-0.017871615,0.012172018,0.040017925,-0.024923656,-0.020479903,-0.001930557,-0.05279371,0.009642218,-0.015359928,0.021627069,0.0014867855,0.0033086636,-0.024501016,-0.013331258,-0.012075415,-0.017473126,-0.00096452376,-0.016193131,-0.01993651,-0.009648256,-0.006834685,-0.019055005,-0.020721411,-0.020033114,0.025551578,-0.015202947,0.01761803,0.034100972,-0.0012799939,0.014261065,-0.0134157855,0.03774775,-0.013125976,-0.0013698048,-0.02733874,0.014828609,-0.002641497,-0.0011396173,-0.021035373,0.009406748,0.013922953,0.0016347093,0.017714633,0.0011765982,0.029850425,0.010741081,0.0029479107,0.014224838,-0.031758342,0.02883609,-0.0000041420794,-0.05042693,0.009932029,-0.0062550646,-0.008036189,0.010867873,-0.00096452376,0.00022264046,-0.0099199535,0.0058626137,-0.0046158275,0.026614213,-0.024030074,-0.016132753,-0.0006626384,-0.059942357,0.00059509155,-0.011036929,-0.0057901614,0.0066716666,-0.015830869,0.033014186,-0.024875354,0.028377224,0.0167486,-0.018873874,0.0015909359,-0.0024135734,0.030985514,0.016917655,-0.017811237,-0.033907764,-0.016096529,0.016350111,0.032965884,-0.0036799826,0.02069726,0.060811788,0.035694927,0.003879227,0.022448195,-0.031830795,0.0262278,-0.004084509,-0.020455753,-0.0007833925,0.016796902,0.029584765,0.011525983,0.0022762157,0.001458861,0.006810534,0.0064482717,-0.026010443,0.0071305325,-0.008561469,0.032796826,-0.009587879,0.012081453,0.01851161,-0.005874689,-0.020818016,-0.019972736,0.01324673,-0.025744785,-0.01395918,-0.0038641328,0.008905618,0.022689704,-0.010988628,0.007571285,-0.009098825,-0.00771619,0.009950141,0.012437677,-0.0074143047,-0.013838425,-0.018270103,-0.0113025885,0.0009615049,-0.0031456456,0.00073093997,-0.011012779,0.025430823,-0.029971179,0.01353654,-0.01946557,0.019284436,0.027145533,-0.022194613,0.020636884,0.016048227,0.010674667,0.0036648884,0.030888911,0.015528983,0.010227877,0.00089131657,0.002709421,0.023051966,0.049557503,-0.035042852,0.026590064,0.030430045,-0.005950161,-0.007679964,0.031275325,-0.006454309,0.016603695,0.006128273,0.014587101,-0.025672331,0.030091934,-0.016917655,-0.023848943,-0.022424046,-0.018113121,-0.00495092,-0.00352904,-0.03844812,0.0021630086,-0.025189316,-0.0040180944,0.02588969,-0.03470474,-0.014478423,-0.0042988476,-0.01688143,0.029464012,-0.004911675,-0.004869411,-0.0031305512,-0.05414616,0.015830869,-0.0005116957,0.02080594,0.0582035,0.013234654,-0.021047449,-0.0108074965,0.0073599652,0.006436196,0.0077765672,-0.0072392114,-0.012226357,-0.010264102,0.02156669,0.027531946,-0.030067783,0.007329777,0.0145629505,-0.028111566,-0.0144059695,0.008561469,-0.020069338,-0.008851279,0.018028595,-0.021433862,0.016760675,0.0014784836,-0.019393116,-0.021397635,0.03784435,-0.0061343107,-0.025382522,-0.0029886651,0.01719539]},{"id":"guide-embeds-0","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Overview\nUse EmbedBuilder to create rich embeds. EmbedBuilder instances are auto-converted—no need to call .toJSON() when passing to reply(), send(), or edit(). An embed must have at least one of: title, description, fields, or image/thumbnail. A description-only embed (no title) is valid.","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.025435133,0.0005760156,-0.01962209,-0.0021063087,0.000394358,-0.030782152,0.009890759,0.007566768,-0.02433139,0.0028773954,0.015783519,-0.01981831,0.03203306,-0.03787063,-0.017831573,0.012012398,-0.003985737,0.01805232,0.02568041,0.055285234,0.03487826,-0.015452395,-0.027470924,0.040396977,-0.0069229184,-0.009338888,-0.02729923,0.039759256,0.017120272,-0.016801413,-0.003645416,-0.008020529,0.015256174,0.0108596,-0.028967109,-0.019695671,0.05891532,0.002834472,0.010638852,0.05082121,0.054156967,0.023448396,-0.0350009,-0.009363416,-0.012766622,0.049447663,-0.050477825,-0.015599561,0.008480421,0.0380178,-0.010485554,0.010976106,0.023472924,-0.0069781053,-0.058866266,-0.009712934,-0.042334657,0.010902523,-0.040593196,0.03921965,0.023742728,-0.025337022,-0.0012279135,0.05768894,-0.02823128,-0.02330123,-0.08108828,0.04147619,-0.01859193,0.010657247,0.042579934,-0.017807046,0.0016525479,0.025140801,0.0453025,-0.0056444164,-0.0004667911,0.045106277,-0.023558771,-0.042776152,-0.00079868035,0.015624088,-0.10860826,0.009933682,-0.08074489,0.008756357,-0.002276469,-0.022405973,-0.016445763,-0.02710301,-0.06642077,-0.04540061,-0.061024696,-0.024454027,0.033455662,0.021731464,-0.036865,0.00035373415,0.0032928318,0.03303869,0.05955304,-0.033406608,-0.093989804,-0.02977652,0.038140435,-0.04684774,-0.011889759,0.024956845,-0.0016234212,-0.011687406,-0.05881721,-0.004629587,-0.016862733,0.0074931853,0.037674412,-0.002389909,0.024883261,0.012135035,-0.03549145,-0.034216017,-0.05361736,-0.04024981,0.04446856,-0.0151458,0.016715568,-0.02783884,-0.013882628,-0.014299598,-0.030463293,-0.0047123674,-0.005371547,0.032057587,0.0521457,0.004350585,-0.02407385,-0.024515348,-0.04621002,0.011644484,0.021989003,-0.03509901,0.010798281,-0.008363916,0.028501084,-0.0026827075,-0.044419505,-0.00045491054,-0.020223016,-0.010522345,-0.0040102643,-0.009400207,-0.03549145,0.0085049495,-0.060632255,0.017586296,-0.03995548,-0.013845837,-0.012429367,-0.02607285,-0.013011898,-0.021155065,-0.009620955,-0.013649615,0.006683774,0.0077261976,-0.058473825,-0.026980372,0.015317493,-0.04309501,-0.037649885,0.02017396,-0.006628587,-0.024049323,-0.04915333,0.030414239,-0.001139001,-0.006505949,-0.031567037,-0.074563935,0.013036425,0.031051956,-0.0040562535,0.044861,-0.024380445,-0.008964842,-0.002075649,0.029016163,-0.031125538,-0.0006641617,0.014103376,-0.049619358,-0.03186137,-0.00860306,-0.015992003,0.01298737,0.03509901,-0.02023528,0.030193489,0.015992003,0.02874636,-0.014422235,0.037821576,0.020872997,0.011889759,0.010976106,-0.020664513,-0.013576033,0.024221016,0.006061386,-0.056413505,-0.0016801413,0.02668604,-0.03995548,0.018125905,-0.0132694375,-0.0064691575,0.02526344,-0.038336657,-0.003777252,-0.05307775,0.011012898,-0.08152978,0.0375763,0.060337923,-0.020934315,-0.027593562,0.01991642,-0.01391942,-0.025704937,-0.008934182,0.011362416,0.012306729,-0.010687906,0.0060276603,-0.04341387,-0.025901157,0.07471111,-0.021289967,0.03460846,0.004102243,-0.000741577,-0.03161609,0.0072785686,0.016764622,-0.0077323294,-0.01582031,-0.011650615,0.035785783,-0.071914956,0.019278703,0.05253814,0.044419505,0.013293965,0.036521614,-0.019033426,0.022099378,-0.03963662,-0.058964375,0.026612459,0.03122365,-0.050428767,-0.0032621722,-0.0024880196,-0.021339022,-0.020149432,0.015624088,-0.0019208186,0.01163222,0.004479355,0.01437318,-0.030365182,-0.033946212,0.00075460726,0.012325125,0.01685047,-0.04527797,0.012398708,0.012190223,-0.009154931,-0.015869364,-0.0013950078,-0.016715568,-0.03379905,-0.0062116175,0.031272706,-0.014471291,-0.012582664,0.00071743265,0.007523845,0.020554138,0.010056321,0.011478922,-0.01817496,0.047191124,0.0061594965,-0.036055587,0.010522345,0.056609727,0.0054727234,0.066813216,0.025557771,-0.01647029,0.0075422404,0.035049956,0.03387263,0.018395709,0.012962842,-0.017721198,-0.049619358,0.056511614,-0.053273972,-0.014949579,0.0017460593,-0.031444397,0.0043904423,-0.045106277,0.04137808,0.03519712,0.022835206,-0.016801413,-0.0059632757,0.032400973,0.01888626,-0.010185091,-0.063575566,-0.020713568,-0.072356455,-0.032278337,0.0012670044,0.015955212,-0.0048166094,0.035565037,-0.0008929584,-0.016568402,0.042996902,0.030855734,-0.056609727,0.004969907,-0.022442764,-0.008474289,0.03657067,-0.028353918,-0.018358916,0.023239912,-0.01627407,-0.049864635,0.005438998,-0.038827207,0.079224184,-0.018003266,-0.016261807,0.0037956478,-0.014753358,-0.018493818,-0.040789418,0.0741715,-0.017586296,0.015893891,-0.039881896,0.002281068,-0.00097497256,-0.00870117,0.012754357,0.010148299,0.0335783,-0.018383445,0.022761622,-0.010203486,0.0335783,-0.033897158,0.009271437,0.0048135435,0.05597201,-0.012791149,0.014974107,-0.018003266,0.0038232415,0.03303869,-0.0016740095,-0.007333756,0.01904569,-0.01031386,-0.008198354,0.00017418436,-0.04383084,0.01878815,-0.00037845338,0.038434766,0.010338388,-0.040102646,0.0134411305,0.013735462,-0.029187858,-0.0028727965,-0.054451298,0.074465826,0.06323218,-0.0010209618,-0.011288833,-0.0047368947,-0.0067818845,-0.022197489,-0.028819943,0.027986005,-0.012392576,0.010510081,-0.0277162,0.037429135,-0.0067083016,-0.0025570034,-0.014054321,0.022467291,-0.022933317,0.037919685,-0.014140168,-0.018506082,-0.003789516,-0.018714568,-0.0493005,0.02233239,0.041279968,-0.049423136,-0.052489087,-0.032450028,-0.0036147567,0.048000537,-0.038238544,0.040200755,0.009308228,-0.004099177,-0.037968744,-0.06548872,0.024049323,0.07441677,0.020198489,-0.0019146866,-0.00025006666,0.03519712,-0.040887527,-0.0037987137,0.016261807,-0.006006199,0.01965888,-0.016004266,-0.0012087513,-0.059994537,-0.033136804,-0.042579934,0.005932616,0.0028206753,-0.046357185,-0.023338022,0.011141667,0.011552505,0.00024700072,0.0023147934,0.02639171,0.0132694375,-0.004985237,0.015194855,0.025238913,0.0041972874,0.03441224,0.001575899,0.037355553,-0.021768255,-0.044394977,-0.05935682,0.027936948,0.014287334,-0.035172593,0.016482554,0.023988003,-0.0021063087,0.01031386,-0.0058804946,-0.022822943,-0.0056444164,-0.053028695,-0.028501084,0.004280068,-0.02397574,-0.021437133,-0.025729464,-0.016727831,-0.018224016,0.09874816,0.029359551,-0.03593295,0.027863367,-0.022136169,-0.009130403,-0.010786017,-0.00016067502,-0.012147299,0.01924191,-0.0028881263,-0.056953114,-0.018653248,0.04331576,0.009872364,-0.0115095815,0.0011481988,-0.07063952,0.049521245,0.045130804,-0.01401753,-0.021952212,-0.014557137,0.007505449,0.00834552,-0.030414239,-0.020713568,-0.009363416,0.037061222,0.018248543,0.036202755,-0.047877897,0.040838473,-0.0028038125,-0.056021065,-0.014508082,0.005868231,0.02346066,-0.0069167865,0.018457027,0.015182591,-0.0041942215,-0.013171327,0.004654114,-0.024012532,-0.040912054,-0.0044057723,0.02023528,0.024012532,-0.05842477,0.0085417405,-0.054107912,0.058719102,-0.01791742,-0.049349554,-0.028255807,0.043610092,0.010338388,0.0018119772,-0.047387343,-0.0027011032,-0.014348652,-0.004421102,-0.008038925,0.022700304,0.043806314,-0.03985737,0.050870266,-0.041132804,0.013060953,0.045572303,-0.007897891,0.022945581,0.010675643,0.0053531514,-0.0010945447,-0.01453261,0.015317493,0.029653883,-0.023350285,0.02884447,0.018739095,-0.0074931853,0.011675143,-0.03338208,-0.027789783,0.016028794,0.00082320796,0.03725744,-0.013747726,0.0032437765,-0.013674143,0.016041057,-0.030021796,-0.025901157,-0.00151458,-0.01827307,-0.042727098,-0.018125905,-0.007174326,0.007174326,0.008259673,0.00002024007,-0.008431367,0.022185225,0.025950212,0.021670144,-0.0037527245,-0.0027271637,0.02587663,-0.020774886,0.008382311,-0.011699671,-0.032376446,0.05391169,0.010203486,-0.0073582833,-0.031174595,0.021020163,-0.00667151,0.016740095,0.023068218,0.004227947,-0.034951847,-0.03161609,0.023387076,-0.002090979,-0.01272983,-0.044738363,-0.021167329,0.035049956,0.02545966,-0.017353285,0.036693305,0.01869004,0.017880628,0.008014397,-0.003096611,0.025238913,-0.040593196,0.0420158,0.010013397,-0.021510715,0.010540741,0.01688726,0.0066408506,-0.011669011,0.014937315,-0.018187223,0.0058835605,-0.023325758,0.009768121,-0.01272983,0.002386843,0.010123772,0.0057179993,0.016813677,0.03149345,-0.0032345788,-0.013036425,0.020934315,-0.00860306,0.019352285,-0.0038876263,0.0029954344,-0.026342655,-0.024944581,0.0054604593,-0.028623722,0.009915287,-0.029751992,-0.006861599,0.008290333,-0.018260807,0.0072724367,-0.027593562,-0.0026290533,0.014483554,-0.031567037,0.021670144,0.014446763,-0.048000537,-0.018923052,-0.015427867,0.01846929,-0.02658793,-0.011816177,0.009228514,-0.02197674,0.009670011,-0.039146066,0.020529611,-0.0198551,0.021498451,0.018395709,-0.021584298,-0.00032135003,-0.042113908,-0.011221382,0.0034982506,-0.022504084,0.003464525,0.018702304,0.030831207,-0.03632539,-0.03460846,0.0037496586,0.012754357,-0.033234913,0.024969108,0.053862635,0.025606826,0.004365915,-0.0060981773,-0.047509983,-0.026465293,0.019389076,-0.008370047,-0.036791418,0.020922052,-0.02977652,-0.019756991,0.011006765,0.03379905,-0.039783787,-0.025950212,0.022921052,0.00084773556,-0.01298737,-0.018285334,-0.023031427,-0.029163329,0.012325125,0.03863099,0.0021768254,-0.0065182126,-0.012331257,-0.014471291,-0.005537108,-0.027986005,-0.030978372,-0.0021093746,0.04118186,-0.027789783,0.013723198,0.015648616,0.008897391,0.028304864,0.009976606,-0.028721832,0.052194756,-0.028550139,0.0061502983,-0.021486187,0.0046326527,0.006223881,0.009768121,0.02926144,0.027667146,0.021473924,0.008560136,0.012447762,0.0031977873,0.019940948,-0.0046326527,-0.012901523,0.008744094,-0.029751992,-0.0050250944,-0.014422235,-0.003985737,0.023362549,-0.033136804,-0.026121905,0.016151432,0.022957845,0.048270337,-0.014127904,0.0055922954,-0.011429867,-0.048172228,-0.011748726,0.027470924,0.009283701,-0.0022611392,-0.029531244,-0.02568041,-0.0072785686,-0.02262672,0.08604286,-0.039146066,-0.04466478,0.0015674677,-0.024196489,0.01920512,-0.02046829,0.033897158,-0.0029187857,-0.00087302964,-0.009522845,0.014005266,-0.032278337,-0.014863732,-0.0081615625,-0.038851734,-0.004556004,-0.03676689,0.0052182493,-0.0047614225,-0.0016525479,0.0056382846,-0.0380178,-0.08883901,-0.016862733,0.02346066,-0.02568041,-0.004362849,-0.02142487,0.0032345788,-0.01250295,0.017586296,-0.029236913,-0.008032792,-0.0116812745,0.02017396,-0.017647617,-0.025054954,0.002579998,0.019646617,-0.013073217,0.0064017065,-0.020958845,0.022712568,-0.0040777153,0.01962209,-0.0009466125,0.010099244,0.002576932,0.016973106,0.038974375,0.029531244,0.004988303,0.01756177,0.05297964,-0.03912154,0.0074870535,0.005530976,-0.0068064122,0.027691673,-0.02181731,0.020345654,-0.028304864,0.01688726,-0.017880628,-0.013747726,-0.013539242,0.008130903,0.015611825,0.019254174,-0.0045222784,-0.02783884,0.02987463,0.05288153,0.007953078,-0.01334302,-0.0033173594,0.019744728,0.0324255,-0.04169694,-0.0019714066,0.022418236,0.006036858,-0.002267271,-0.013514713,0.013281701,-0.002961709,0.029801048,-0.024809679,0.012331257,-0.008204486,-0.027544508,-0.00062353787,0.01688726,0.016261807,0.012447762,0.012012398,0.0020603193,0.0035013165,-0.003088946,0.013809045,-0.02059093,0.03193495,0.013588296,-0.043070484,0.015771253,0.04682321,-0.014299598,-0.011975606,-0.008419103,-0.009167194,0.008590796,0.043879896,0.030463293,-0.024760623,0.011485054,-0.019180592,0.004418036,-0.014961842,-0.031885896,-0.016960843,0.0434384,-0.0054022064,0.058719102,0.024674777,-0.012263806,-0.013661879,-0.060337923,-0.022344654,-0.0032560404,0.010920919,-0.0070148967,0.020480555,0.027789783,-0.008370047,-0.028770888,-0.021228647,-0.018824942,-0.025852103,0.0067266976,0.0065979273,0.014912788,-0.00208638,0.032670777,0.009179458,-0.00670217,-0.049030695,-0.003098144,0.01724291,0.02742187,-0.007904023,-0.007854967,0.0031855234,-0.017684408,0.05337208,-0.011994001,-0.038827207,0.01082894,0.0052182493,0.017610826,0.030561404,-0.034731098,0.024601193,0.017892892,-0.029580299,0.023215383,-0.034436766,-0.016249543,0.0031855234,-0.032621723,0.04056867,-0.014912788,-0.04517986,0.029236913,-0.017022163,-0.0204315,-0.0038753625,0.046676043,0.041844103,-0.003715933,-0.024797415,-0.0033296233,-0.008854467,-0.043781787,0.06460573,0.017991003,-0.002333189,-0.0107492255,-0.009804913,0.0088851275,0.001132869,-0.012355784,0.01765988,-0.031125538,0.020860733,0.021670144,0.0024665578,0.0136128245,0.04064225,0.016458027,0.03399527,0.012030793,0.017144801,-0.022994636,0.04238371,0.008658247,0.018714568,0.019217383,0.0032989637,0.004776752,-0.008903523,0.007198854,0.026121905,0.00530103,0.0077384613,0.011061952,-0.03365188,-0.023779519,0.012766622,-0.01878815,-0.001008698,-0.0017445263,-0.012490686,0.0048993905,-0.026220016,0.006493685,-0.015084481,0.011393076,-0.0321557,0.0072724367,0.01340434,0.013122272,0.013330757,-0.006818676,-0.025238913,0.0050925454,0.02165788,-0.0069658416,0.022504084,-0.021866364,0.013980738,-0.0052795685,0.00931436,-0.008468158,-0.0012831007,-0.0095412405,0.023313494,-0.024993636,-0.015391076,0.016764622,0.01924191,-0.01740234,0.020333389,0.009774253,-0.006303596,0.0111968545,-0.028819943,0.04069131,-0.03068404,-0.027495451,-0.022773886,-0.015280702,0.012766622,0.023926685,0.017512714,0.0040470557,-0.03173873,-0.04468931,-0.013159064,0.055285234,0.01756177,-0.02207485,-0.004531476,0.011270437,-0.0064691575,0.028427502,-0.024343655,0.026857734,-0.0078856265,-0.030585932,-0.014275069,0.011558637,-0.007566768,0.009535109,0.017892892,0.024858734,-0.01781931,-0.012926051,0.022577666,0.0076526147,0.011209118,-0.004040924,0.027078483,-0.030929318,0.045891162,0.010736962,-0.0061686942,-0.026121905,0.02690679,-0.030144434,0.022516347,0.024012532,0.0064078383,-0.04468931,-0.034240544,0.00480128,-0.013122272,0.019413603,0.0065182126,-0.01163222,-0.007646483,0.03254814,0.037232913,0.0070823478,0.03554051,-0.015489186,-0.02536155,0.018959843,-0.017267438,-0.014974107,-0.0052090515,0.034068853,0.024760623,-0.00465718,0.012705303,-0.0069167865,-0.0033817445,-0.0142014865,0.0145448735,0.045008168,-0.010571401,0.040004533,-0.010571401,-0.016225014,-0.0033234912,0.024110641,-0.03787063,-0.00022458094,-0.005319426,0.011693538,-0.034682043,-0.00044111375,0.010884128,-0.014508082,0.011190723,-0.0054451297,0.044125173,0.0051937215,-0.020149432,0.006628587,-0.017414603,0.029016163,0.013772254,-0.01008698,0.011460526,0.0035810312,-0.021670144,-0.02433139,-0.012288333,-0.06745093,0.017120272,-0.036006533,0.0049760393,-0.008130903,0.0072172494,-0.03164062,0.01688726,0.018640984,-0.02680868,0.014826941,-0.0040501216,-0.01781931,0.0065427404,0.039783787,0.0062330794,-0.018530611,0.0005166128,0.0045222784,0.0029218516,0.031910423,0.026121905,-0.027176592,0.0046387846,-0.016654247,-0.0062208152,0.028795416,0.001764455,-0.028672777,-0.02506722,0.007640351,-0.013490186,0.021326758,-0.02387763,-0.00182884,-0.0061870897,0.017549505,0.04579305,-0.024257807,-0.007953078,0.0056934715,-0.010123772,-0.002518679,0.011711935,0.0062852004,-0.0035135802,0.016678775,0.04373273,-0.033676412,-0.0048748627,-0.04714207,0.00014860283,0.0124416305,-0.02742187,-0.0063342554,-0.019695671,0.017169328,-0.012754357,0.0132694375,-0.0029141868,-0.017328758,-0.003587163,-0.0038324392,-0.030782152,-0.014704303,0.028942581,0.022356918,0.014189223,0.014226015,0.0066531147,-0.0041942215,0.021755992,-0.02987463,0.029604826,0.011595428,0.04282521,-0.016776886,0.020492818,0.022822943,0.024772888,0.008554004,0.011270437,0.006867731,0.03181231,0.013465659,0.0036423502,-0.014974107,0.011184591,-0.008038925,0.027176592,0.008290333,-0.015624088,0.00025236612,0.030659514,0.008977106,-0.044713836,-0.00705782,0.015893891,-0.0095412405,0.03480468,-0.006245343,-0.0028881263,-0.0052673044,0.025803046,0.0045682676,-0.0035565037,0.02803506,0.017954212,0.020701304,0.011736462,0.0039366814,0.0020587863,0.01617596,0.007940814,0.0067328294,-0.017414603,-0.021069217,0.015673144,-0.003718999,0.0103015965,-0.040666778,-0.0023531178,-0.009682274,0.005368481,-0.006990369,-0.02342387,0.022160696,-0.03585937,-0.024944581,-0.015783519,-0.032499086,0.001354384,-0.0011849902,-0.048491087,0.0057793185,0.021130538,-0.005809978,0.009737462,0.044198755,-0.006180958,-0.008670511,-0.019413603,0.012594928,-0.016151432,0.032278337,0.02268804,0.018260807,0.01324491,-0.0139930025,-0.010252542,-0.017757991,-0.03009538,0.04321765,0.000042108924,-0.018898524,-0.0055647017,0.015967475,0.016384445,0.040863,-0.020210752,-0.008425235,0.010203486,0.0038048457,0.011264306,-0.010540741,0.009320492,0.024355918,-0.03225381,0.028574668,0.015942948,0.015280702,0.030414239,0.022859734,-0.05381358,0.019965475,-0.00094354653,0.008535609,-0.028770888,0.054892793,0.0005683507,0.019057954,-0.003476789,0.007861099,0.004273936,0.0046479823,-0.00555857,-0.03009538,0.0031671277,-0.008419103,-0.0125090815,0.0049515115,0.0065856637,-0.040298864,0.0120246615,0.013490186,0.017083481,0.0028206753,-0.003976539,0.00834552,0.030168962,-0.0010109975,-0.024552139,-0.006000067,-0.008192223,0.0066653783,-0.0028881263,-0.030659514,-0.024515348,0.010651115,-0.00232859,-0.0048779286,-0.023681408,0.0073521514,0.032204755,0.0045038825,-0.037110277,0.04660246,0.011724198,0.0053408872,-0.0012524412,-0.016163696,0.01298737,-0.00465718,0.030634986,0.02526344,-0.023865366,-0.008578532,-0.0027624222,0.033210386,0.027863367,0.0002922235,-0.009761989,0.008014397,-0.0049269837,0.010914787,0.003645416,-0.00892805,-0.02680868,0.024625722,-0.006751225,0.015280702,0.011938815,0.037919685,0.028942581,-0.027078483,-0.03296511,-0.03448582,0.03210664,-0.015648616,-0.025901157,-0.00401333,-0.011485054,0.015023162,-0.0056413505,-0.02007585,0.03983284,-0.003722065,0.020738095,-0.020823942,0.010185091,-0.033504717,0.013392076,-0.026514348,0.023902157,-0.019928684,0.046136435,-0.011981738,-0.02884447,-0.0138581,-0.018579666,0.037527245,-0.0060184626,-0.025140801,0.007143667,0.031910423,0.02803506,0.015599561,-0.0017951145,0.00870117,-0.04260446,-0.013526978,-0.013318493,0.04034792,0.039881896,0.0017705869,-0.0012953645,-0.0073030964,0.010657247,-0.014961842,-0.012239278,0.012619456,-0.009210118,0.013686407,-0.011098744,-0.031689674,0.0012524412,-0.018199487,0.0010876462,0.025582299,0.009878496,-0.010963842,0.0017062019,-0.013293965,-0.03276889,0.025753992,-0.011570901,-0.025999269,-0.00834552,-0.0005016663,-0.004418036,-0.00818609,0.024797415,-0.020321125,-0.017929684,-0.005347019,0.0032928318,0.017377812,-0.010387443,-0.0022335455,0.055481456,-0.027274704,0.0075483723,0.0012148833,-0.010626587,-0.011693538,-0.04375726,0.0017322625,-0.0026689107,0.0048963246,-0.012288333,0.037723467,0.033749994,0.024478557,0.024527611,0.012294465,0.020529611,0.001360516,-0.007879495,0.009001633,-0.034780152,0.016482554,0.000153585,0.024257807,0.032891527,0.007008765,0.032817945,0.02803506,-0.011932683,0.02326444,-0.03492732,-0.0050189625,0.0010462559,0.02084847,-0.020958845,-0.0028053455,0.004203419,-0.00084313663,-0.0061901556,0.026563402,0.043168597,-0.019450396,-0.026146434,0.014176959,-0.004681708,0.001355917,0.015771253,0.031984005,-0.041647885,-0.031787783,-0.0040777153,0.016531609,-0.03186137,0.011061952,0.01720612,-0.0107492255,0.0090936115,-0.0012654715,-0.019806046,0.024380445,0.030659514,0.011969474,-0.00802666,0.0554324,0.024956845,-0.03585937,0.013257174,-0.0067328294,-0.0277162,-0.014593929,-0.015170327,-0.035442397,-0.01324491,0.012643984,-0.046185493,0.027936948,0.00581611,-0.032204755,-0.002645916,0.0062790685,-0.022062587,-0.030512348,-0.008081848,-0.008878996]},{"id":"guide-embeds-1","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Basic embed\nMinimal embed with title, description, color, fields, footer, and timestamp.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embed') {\n const embed = new EmbedBuilder()\n .setTitle('Hello!')\n .setDescription('This is a Fluxer embed.')\n .setColor(0x5865f2)\n .addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true }\n )\n .setFooter({ text: 'Powered by Fluxer.js' })\n .setTimestamp();\n\n await message.reply({ embeds: [embed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.036455404,-0.0065648584,-0.013694824,-0.009931453,0.028808426,-0.03265596,0.0047703437,0.012113727,0.007803284,0.016556429,0.00802572,-0.0153180035,0.02496089,-0.057184007,0.0029562905,0.043693583,-0.020259682,-0.00230251,0.014404213,0.056606874,0.0066971174,-0.016484288,-0.025994916,0.0663219,-0.011644809,-0.025273504,-0.036263026,0.05598165,-0.011897303,-0.010183947,0.037465382,-0.0234339,0.017782832,-0.013718871,-0.016039416,-0.0016171675,0.06406148,0.019105421,-0.03477211,0.045665443,0.022243569,-0.012161821,0.0037753948,0.008729097,0.009270158,0.02705299,-0.06502336,-0.008061791,-0.022303686,0.08267393,-0.003234335,-0.016171675,0.006492717,0.018035326,-0.028928662,0.016364053,-0.06257056,0.018961139,-0.025658257,0.022435945,0.027990825,-0.013538518,0.017458195,0.04554521,-0.028736286,0.017001301,-0.054779295,0.029072944,0.012889246,0.05930015,0.07829736,-0.022844745,0.0038745892,-0.015065509,0.014873132,-0.004592996,-0.0012001006,0.023073193,-0.018552339,-0.027101083,0.017265819,0.025081126,-0.098977864,-0.0036972417,-0.072862715,0.028375579,-0.02712513,-0.009378369,-0.039172728,-0.0071600243,-0.047661353,-0.0514127,-0.06997706,-0.01774676,0.0688228,0.04953703,-0.03573399,0.0014586069,0.0014097613,0.035950415,0.08007684,-0.047661353,-0.076421686,-0.02902485,0.022207497,-0.044487137,0.004710226,-0.011765044,-0.013057576,-0.0056901453,-0.05492358,0.008626898,0.023746513,0.03433926,0.039605577,-0.0071840715,0.02912104,0.036118746,-0.0020905947,-0.030948618,-0.050306536,-0.039870095,0.043741677,0.007905484,-0.0040789894,-0.04412643,-0.008416485,-0.03234335,-0.05862683,-0.020175517,0.026235387,-0.01886495,0.03335333,-0.005025844,-0.036888253,-0.011320173,-0.0116087375,0.01188528,-0.015702756,-0.03448354,0.018191632,-0.04338097,0.04592996,0.009053733,-0.0019027268,0.0047493023,-0.04155339,0.016556429,-0.009636875,-0.0014849085,0.004472761,-0.022904864,-0.055693086,0.022952957,-0.023277594,-0.02570635,0.012083668,-0.029601982,-0.020415988,-0.045978058,0.00240471,-0.0047402848,0.0028961727,-0.024263525,-0.053625036,-0.0042413073,-0.013742918,-0.054154072,-0.04039913,0.03708063,0.0052843504,-0.031333372,-0.01476492,0.019357916,0.028375579,-0.011374279,-0.028640097,-0.051941738,0.021534178,0.034459494,0.00443669,0.023650324,-0.011584691,0.021498108,-0.007995661,0.0026767428,-0.004271366,0.018215679,-0.016364053,-0.028183201,-0.061320107,0.0033275175,-0.022640346,-0.002063542,0.017362006,0.012588657,0.035782088,0.010490548,0.04378977,-0.039870095,0.01310567,0.03335333,0.007628943,-0.0053294385,0.009961512,0.012612704,-0.007701084,0.016905112,-0.040615555,0.020764671,0.02705299,0.028087014,0.015726805,0.012468422,-0.0273656,0.05737638,-0.0057382393,0.0016532382,-0.040687695,-0.018299844,-0.06516764,0.027149176,0.054202165,-0.03308881,-0.029217228,0.038355127,-0.03708063,-0.021498108,-0.02936151,0.053769317,0.021510132,-0.002729346,-0.023686394,-0.052134115,0.01551038,0.032800246,0.0038866126,0.015606568,0.0059516574,0.0045869844,-0.021750603,-0.032752153,0.017470218,-0.03823489,0.00022299928,-0.02089693,-0.008013696,-0.06502336,0.013502447,0.05381741,0.08219299,0.016400123,0.030563865,-0.010364301,0.038066562,-0.051556986,-0.038066562,0.018985186,0.013442329,-0.059155867,-0.01713356,2.2015779e-7,-0.022904864,-0.020259682,0.026475858,-0.026259433,0.015859064,-0.007544778,0.0056751156,-0.044150475,-0.0030013788,-0.030179111,0.003474806,0.00961884,-0.038451314,-0.010352277,0.0022619304,0.003823489,-0.03542138,0.0086148735,0.0045569255,-0.026548,-0.0024798573,0.013863154,0.0008078323,-0.006606941,0.011686891,-0.015654663,0.030660054,0.0018381003,-0.018155562,-0.0010024635,0.0580497,-0.01629191,-0.015822992,0.045881867,0.06713951,0.025153268,0.06045441,0.012396281,-0.019381963,-0.030106971,0.009733064,0.012227951,0.017866995,0.029145086,0.00046365816,-0.0037333125,0.048478954,-0.05747257,-0.018672574,-0.0030705142,-0.030155065,-0.027293459,-0.0068053296,0.045978058,0.051124137,0.058193985,0.0080317315,-0.040831976,0.043140497,-0.005140068,0.022075238,-0.07930734,-0.03657564,-0.062474366,-0.019129468,0.0052963737,0.03457973,0.0013406259,0.028375579,-0.012756987,-0.006047846,0.023938889,0.022399874,-0.064879075,0.00066843425,-0.0037092653,0.023999007,0.05367313,-0.012612704,-0.04297217,-0.011969444,-0.019418035,-0.026860612,0.013634706,-0.010003594,0.014428261,0.009456523,-0.01916554,-0.02712513,-0.0046651377,-0.020428011,-0.047396835,0.05285553,-0.02705299,0.02336176,-0.0729589,-0.012913293,-0.025754444,-0.033064764,0.015654663,0.026908705,0.015522404,-0.027149176,-0.017289866,-0.005323427,-0.0003090428,-0.00626427,-0.014296002,0.018961139,0.025826586,0.0007473388,0.0025204367,-0.029337462,-0.017145583,0.023986982,0.003661171,-0.009871335,-0.0036311122,0.004731267,0.023289617,-0.01564264,-0.029481746,-0.010412395,0.0018396032,0.024816608,0.010244065,-0.025730398,0.029890547,0.01737403,-0.031718127,-0.019454105,-0.036455404,0.07146798,0.056029744,0.028038919,-0.003928695,0.0013797024,0.0021086303,0.004298419,-0.013899224,0.02371044,-0.037753947,0.018347938,-0.03383427,0.016147628,-0.010514595,0.0019718623,-0.004081995,0.012516516,-0.028014872,0.020259682,0.015462286,-0.025513973,-0.0059065693,0.015125627,-0.037777994,0.0096128285,0.027317507,-0.0020079329,-0.029145086,-0.009955499,-0.018095443,0.039581526,-0.021005142,0.04819039,-0.028808426,-0.018311867,-0.061175823,-0.045160454,-0.02827939,0.082770124,0.036864206,0.028736286,0.006630988,0.014788967,-0.039028443,-0.023133311,0.02367437,-0.008109884,0.0203198,0.0055248216,-0.0037242947,-0.04537688,-0.0086148735,-0.038451314,0.013201858,-0.018191632,-0.034387354,-0.019862905,0.010189959,0.027750354,-0.014247907,-0.018480197,0.005128044,0.0020966067,0.030106971,0.06348435,0.025562068,0.013442329,0.023073193,-0.040086515,0.032199066,0.004550914,-0.017698666,-0.021185495,0.0062101637,0.031116948,-0.026980847,0.0084826145,0.023277594,0.010616795,0.03234335,-0.012251998,-0.037200864,-0.00502885,-0.05780923,0.037513476,0.015931204,0.025898727,-0.016279887,-0.042924076,-0.023277594,-0.025538022,0.11648416,0.027846543,-0.029698169,-0.003159188,-0.014945273,-0.019213634,-0.003769383,-0.0012729934,-0.012492469,0.028255343,-0.037200864,-0.055644993,0.0047012083,0.012336163,-0.00567211,-0.009396405,-0.0029187168,-0.03914868,0.032752153,0.029986735,0.009570746,-0.024107218,-0.017782832,-0.020500153,0.011488503,0.0073764483,-0.011488503,0.0016276882,0.029890547,0.003820483,0.023650324,-0.038258936,0.04667542,-0.016147628,-0.059925374,0.012221939,0.002059033,0.0043735662,-0.009919429,0.019862905,-0.009624852,-0.031982645,-0.044439044,-0.010676913,-0.023085216,-0.009498605,0.0032673997,0.02380663,0.0066430117,-0.050643194,0.03566185,-0.058097795,0.02871224,-0.012648775,-0.0163881,-0.035204954,0.042635508,-0.0003366594,0.003934707,-0.054683108,0.017121537,-0.004154137,0.0352771,-0.014728849,0.03167003,0.040086515,-0.032126926,0.01422386,-0.015606568,0.020680506,0.06742807,0.016267864,0.0050198324,-0.009690981,0.017121537,0.008218097,-0.009107839,0.038210843,0.028664144,-0.004562937,-0.00058765104,0.025008984,0.023974959,0.009282181,-0.0110436315,-0.034459494,-0.0075628133,-0.0011024093,0.04542497,0.00013056824,0.020067306,-0.029794358,0.014247907,-0.0010565695,0.00077627046,0.0019959093,-0.024672326,-0.009240098,0.007851378,-0.014368143,0.014283977,-0.0009934459,-0.0023220482,-0.0050889677,0.0205242,0.023722464,0.0074004955,-0.006637,-0.0021807714,0.0064265877,-0.015498357,0.005560892,-0.011909327,-0.010881313,0.03316095,0.017013324,-0.031742174,-0.02512922,-0.0016036411,0.004331484,0.01229408,0.025730398,-0.005055903,-0.03145361,-0.0049597146,0.003664177,0.0060328166,-0.016724758,-0.060742978,-0.020043258,0.021498108,0.01791509,0.012276045,0.03590232,0.020259682,0.0075748367,0.0110436315,0.016568452,-0.00010210624,-0.03126123,0.022652369,-0.0075628133,-0.030419583,-0.0033756117,0.0039136657,0.022652369,0.015474309,0.0037513478,0.00978717,0.01977874,-0.02401103,0.0062943287,0.022989029,0.0037333125,-0.021630367,0.00019763711,-0.020235635,0.051941738,0.0005981716,-0.009011651,0.005972699,-0.015414191,0.008825286,-0.013009481,-0.018444126,0.0028300432,-0.017145583,0.023169382,-0.036864206,0.018961139,-0.031165043,0.015750851,-0.012209916,-0.0236383,0.0053144093,-0.007436566,0.010731019,-0.011668855,0.02160632,-0.018720668,0.02173858,-0.04429476,-0.0057352334,-0.010502571,-0.0031862408,-0.017049395,-0.008729097,0.00802572,-0.0053564915,-0.002915711,-0.034892343,0.009065757,-0.030034829,0.023782583,0.018480197,-0.026475858,0.018588409,-0.037104677,-0.018275797,0.0042172605,-0.03342547,-0.016844993,0.0344114,0.016352028,-0.024792561,-0.034964483,0.023722464,0.024540067,-0.020764671,0.0060268044,0.040928166,0.018648528,0.0034146884,0.007057824,-0.062474366,0.004145119,0.0039407187,-0.025249455,-0.0077191195,0.008681003,-0.030948618,-0.000048986574,0.0013751936,0.033641893,-0.056751158,-0.007953579,0.017566407,0.011518561,-0.012865199,-0.036022555,-0.011945398,-0.013730895,-0.008188038,0.016977252,0.0077371546,-0.010773101,-0.0046681436,-0.01422386,-0.00812792,-0.03203074,-0.046555188,0.015726805,0.038523454,-0.014656708,-0.012113727,0.005116021,-0.0024738454,0.008560768,0.003315494,-0.031862408,0.029890547,-0.029746264,-0.0039888127,-0.018840903,-0.0032944528,-0.00058502087,0.029337462,0.024167337,0.014716825,0.012396281,0.008813262,0.022291662,0.0005076193,0.008446544,-0.0058975513,-0.030467676,0.0076349545,-0.016604522,0.0065949173,-0.031044807,-0.005323427,0.0150534855,-0.023830676,-0.033449516,0.010526618,0.00924611,0.038619645,-0.0011685388,-0.0015390144,-0.02512922,-0.038619645,-0.02546588,0.001366176,-0.0044998135,0.012913293,-0.0090477215,-0.01567871,-0.037008487,-0.0045539197,0.05530833,-0.028760333,-0.05160508,-0.0016352029,-0.03251168,-0.0015630615,-0.0047282614,0.01933387,-0.0012647272,-0.0076950723,0.011187914,-0.008735109,-0.03390641,-0.0138872005,-0.033136904,-0.06497527,-0.019514222,-0.034363307,0.021389896,-0.0172057,-0.011530585,0.015293956,-0.030179111,-0.097535044,-0.015197768,0.017253796,-0.00860285,-0.022135356,-0.013827083,-0.0003731058,-0.006282305,0.018191632,-0.010358289,-0.009829252,0.0025685309,0.025393737,-0.024323642,-0.009324264,0.014103625,0.051268417,0.00988937,0.021955002,-0.030082922,-0.02844772,-0.01100756,0.019021256,0.029096993,0.003904648,0.027509883,0.010382336,-0.005479733,0.035108767,0.0058735046,0.019381963,0.031621937,-0.00738246,-0.008139944,0.03142956,0.018937092,0.018396033,-0.024347689,0.0030840407,-0.017446171,0.0039437246,-0.02285677,-0.026235387,-0.00056623406,0.05862683,0.016412146,0.012288068,0.017530337,-0.025946822,0.0033876353,0.03780204,-0.0061620697,-0.0007725131,-0.0028706226,0.044342853,0.031862408,-0.032944527,0.016808923,0.026451811,-0.024347689,-0.02306117,0.00067444606,0.024275549,0.008019708,0.016808923,-0.021089308,0.015798945,-0.0013323596,-0.021726556,-0.037777994,0.024419831,-0.0018726679,0.03674397,0.036623735,-0.008777192,0.009005639,0.013694824,-0.013153764,0.004006848,-0.0036581652,0.00015790304,-0.017518314,0.026331576,0.04321264,0.029674122,-0.022279639,-0.015330027,0.008536721,0.017037371,0.043741677,0.057905417,-0.041312918,0.012179856,0.0038385184,0.008224108,-0.0062101637,-0.043236688,0.016364053,0.06396529,-0.016736781,0.032319304,-0.013045552,-0.0021011154,0.019971117,-0.044198573,0.01534205,-0.007298295,0.0046681436,-0.032944527,-0.035373285,0.025441833,-0.022640346,0.0039737835,0.012408304,-0.025345644,-0.018961139,0.019886952,-0.015931204,0.0167969,-0.009955499,0.06290722,0.022087263,-0.01605144,-0.041192684,-0.028976757,-0.006985683,0.020500153,-0.006288317,-0.028928662,-0.013021505,0.012636752,0.0460502,-0.008470591,-0.031862408,0.024672326,0.011103748,0.018335914,0.008019708,-0.020776695,0.047493026,0.0062702815,-0.0410484,0.025826586,-0.024648279,-0.0033816237,0.034050696,-0.010670901,0.039821997,-0.023193428,-0.051316515,0.017482242,0.005407592,-0.03830703,0.010971489,0.0360947,0.044751655,-0.00711193,-0.021281684,-0.04992178,0.02414329,0.0027774402,0.053047903,0.010051688,-0.030419583,0.0075267428,-0.010183947,-0.0236383,0.0032162997,-0.014728849,0.001417276,-0.023013076,-0.0070938948,0.026163246,0.015462286,0.025562068,0.03193455,0.024467925,0.036070652,0.0072021065,-0.008157979,-0.000441114,0.027245365,0.017157607,0.006498729,0.023962935,0.006276293,0.021221567,-0.03128528,-0.0116267735,0.016376076,0.004247319,0.012624728,0.018107466,-0.02401103,-0.019117445,-0.004214254,-0.007983637,0.019730646,-0.008085838,-0.0064566466,0.014512425,-0.013382211,-0.020933,-0.027750354,0.0074004955,-0.024371736,-0.0048905793,0.02201512,0.007454601,0.020331824,-0.0137549415,0.0029788346,-0.0035709944,0.035854228,0.019790763,0.019309822,-0.031549796,0.017265819,-0.005461698,0.01713356,-0.00018025932,-0.004124078,0.011031607,0.019418035,-0.019586364,-0.01107369,0.0007867911,-0.017794855,-0.008560768,0.034627825,-0.006985683,-0.004914626,0.012805081,-0.009925441,0.037393242,-0.013791013,-0.033810224,-0.007953579,0.011350231,0.0203198,-0.00094535167,0.02604301,0.0031050819,-0.04754112,-0.027822496,-0.010773101,0.02119752,0.0150534855,-0.018215679,0.0072622243,0.010749054,-0.0016983264,0.0310929,-0.031044807,0.033497613,0.018576385,-0.020764671,0.0018245737,0.03955748,-0.017903067,0.008656956,0.017145583,0.0075507895,-0.04280384,-0.01493325,0.0034958473,0.021558225,-0.001071599,0.007087883,0.04511236,-0.023241524,0.022399874,0.020945026,-0.0068113413,-0.030756243,0.036551595,-0.016700711,0.0021176478,0.030611958,-0.018143538,-0.035373285,-0.022255592,0.0027098076,0.00042570883,0.011452432,0.018552339,-0.038138703,-0.016712734,0.029890547,0.019093398,0.015005391,0.000056266457,-0.024155313,-0.02136585,0.017181654,-0.009961512,-0.022435945,-0.0068534235,0.027678212,0.018504243,-0.012221939,0.0012061124,-0.009384381,-0.009570746,-0.01936994,0.03979795,0.028736286,-0.012877222,0.0460502,-0.0020229623,-0.015570498,0.002326557,0.020872883,-0.050643194,0.018468173,-0.0038415242,-0.008434521,-0.04405429,0.016893089,0.004571955,-0.0009167957,-0.012961388,-0.010526618,0.054202165,-0.008717074,-0.0065588467,0.026764423,-0.034074742,0.029385557,0.004463743,0.017229747,-0.0037092653,-0.0013045552,-0.016700711,-0.006104958,-0.0062161754,-0.042250756,0.03126123,-0.021654414,0.042563368,-0.01053263,-0.008368391,-0.045737587,0.027726308,0.009528664,-0.040278893,0.012053609,-0.00802572,-0.019285776,0.010989525,0.059684902,0.006655035,-0.013033529,0.0099134175,0.024227453,0.017806878,0.028880568,0.0051641148,0.0021717537,0.0010272621,-0.024696372,0.015774898,0.028760333,-0.00037930545,0.005771304,0.0011467461,0.002840564,-0.0020740624,0.005347474,-0.00924611,0.01476492,0.003955748,-0.007671025,0.035204954,-0.058530644,-0.025610162,-0.0005707429,-0.008885404,-0.005909575,-0.0047973967,0.002138689,0.004998791,0.019658504,0.01459659,-0.022940934,0.009606817,-0.035758037,-0.004632073,0.02678847,-0.015305979,-0.017494265,-0.021257637,0.00026207583,-0.038715832,0.0033064764,-0.00062146725,-0.024816608,-0.013526495,-0.00921004,-0.048262533,-0.014476354,0.0306841,0.0075026955,0.011067678,0.014849084,0.0023415864,0.029986735,0.02919318,-0.017891044,0.011223984,-0.00089199713,0.048454907,-0.015089556,0.01459659,0.023686394,0.039701764,0.01117589,0.017626524,-0.0013789509,0.04378977,0.006252246,0.0050949794,-0.014500402,0.030611958,-0.036623735,0.01886495,-0.008139944,-0.029505793,0.012648775,0.020584319,0.0018335914,-0.018371984,0.005392562,0.005681128,0.013370188,0.008650945,-0.0032764175,-0.026187293,-0.011584691,0.034146883,-0.0016457235,0.01961041,0.027654165,0.013827083,0.022616299,0.013093647,-0.00958277,-0.017422125,-0.00060455914,-0.0044096373,0.018648528,-0.010520606,-0.0013684303,0.01795116,0.0000036135232,0.001632197,-0.048719425,0.015859064,-0.014043507,-0.017494265,0.015702756,-0.022411898,0.026572047,-0.04335692,-0.018624479,0.0026872635,-0.0028676167,0.017217724,0.0007338123,-0.049224414,0.011915338,0.032824293,0.027341554,-0.02082479,0.040110566,-0.018396033,0.023409853,-0.0319586,0.009396405,-0.01774676,0.012889246,-0.00017950786,-0.006685094,0.0026797487,-0.014199813,-0.026091104,0.02628348,-0.02289284,0.013069599,-0.0025625192,-0.024503997,-0.013995413,0.022171427,0.002696281,0.050162252,-0.027221318,0.003052479,0.01154862,0.0024407806,0.0143200485,0.000097409546,-0.004626061,0.03448354,-0.005780322,0.01185522,0.0017298883,-0.0044487137,0.025008984,0.032800246,-0.03708063,-0.0010640842,0.0047493023,0.004097025,-0.020391941,0.039533433,-0.02235178,0.029169133,0.0032583822,0.0033245117,0.011470467,0.00958277,-0.037681807,-0.0145845665,-0.0055548805,-0.0045809727,-0.018023303,0.0053294385,0.009173969,-0.04229885,-0.0010054694,-0.0238427,-0.012215927,0.0030389524,0.0118912915,0.019141492,0.010027641,-0.01256461,-0.0205242,-0.0053264326,0.004271366,-0.022075238,-0.023494018,-0.011692903,-0.008687015,0.0004640339,-0.020584319,-0.007556801,-0.0063424227,0.0150534855,0.029890547,-0.007827331,-0.012239974,0.043501206,0.041938145,0.00038588082,0.0074004955,-0.018215679,0.009173969,-0.020343848,0.00978717,0.032150973,-0.012221939,-0.00042495737,-0.02671633,0.05357694,0.00069360854,-0.0015961264,0.039028443,0.031477656,0.007953579,0.0034718001,0.004893585,-0.043837864,-0.032535728,0.0273656,0.021798696,0.0052572973,-0.0096128285,0.027678212,-0.015774898,-0.014079577,-0.012793058,-0.035613757,0.053192187,0.02712513,-0.03782609,0.009799194,0.0118912915,-0.011037619,-0.009961512,-0.0030569877,0.01605144,-0.030900525,0.023866747,-0.01435612,0.013827083,-0.0026481869,0.026692282,-0.005458692,0.025898727,-0.01459659,0.01144642,0.00524828,-0.045232598,-0.022051191,-0.03914868,0.01517372,0.0033064764,-0.009763123,-0.011434397,0.025922775,-0.0019403005,0.0025204367,-0.0065648584,0.012083668,-0.032944527,0.017265819,0.017097488,0.012137774,0.049224414,-0.014524449,-0.009360334,-0.024431854,-0.0033786176,-0.038427267,-0.0163881,0.028159155,-0.037008487,-0.0046561197,-0.010340253,-0.01724177,-0.005158103,-0.014091601,-0.012408304,0.012480445,0.002888658,-0.010232042,-0.009408428,-0.01625584,-0.028495815,0.025345644,-0.0051941737,-0.022279639,-0.00020440036,-0.006600929,-0.000103609185,0.005212209,0.022087263,-0.012017539,-0.022123333,-0.016989276,-0.0056751156,-0.01771069,0.0065047406,-0.0138872005,0.02662014,0.00075823517,-0.00019575843,-0.012227951,0.012877222,-0.024984937,-0.033810224,0.00914391,-0.030203158,0.020884907,-0.0068534235,0.034531638,0.008440533,0.015366097,0.016881065,0.0058193984,0.02488875,0.019862905,-0.006787294,0.03905249,-0.012336163,0.02496089,0.009456523,0.03765776,0.049392745,0.014091601,0.023109265,-0.0027684225,-0.009510628,0.017470218,-0.008578803,0.011139819,0.023037123,0.009035698,-0.032247163,0.0021852802,-0.018347938,0.0065889056,-0.028928662,-0.0025685309,0.026860612,-0.008578803,-0.028952708,0.010250077,0.0010400371,0.0335938,0.028567955,0.027245365,-0.027509883,-0.04792587,0.02580254,0.030563865,-0.02621134,0.032247163,0.010995537,-0.008530709,0.015967274,-0.010123829,-0.0034056706,-0.012684845,0.05449073,0.010821195,-0.011783079,0.03467592,0.03376213,-0.04578568,-0.011133808,0.004923644,-0.0306841,0.0028946698,-0.0011835683,-0.041264825,-0.0021191507,-0.022207497,-0.06011775,0.0048545087,-0.004647102,-0.039100587,0.011236008,0.031213136,-0.01534205,-0.020055283,-0.01890102,-0.008037743]},{"id":"guide-embeds-2","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Title, Description, and URL\nsetTitle() and setDescription() accept strings (max 256 and 4096 chars). setURL() makes the title a clickable link.\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Clickable Title')\n .setDescription('Main body text here.')\n .setURL('https://example.com');\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.014959544,-0.009406463,-0.012789247,0.0008256262,-0.022577727,-0.023430344,0.016133275,0.0030921188,-0.0007619568,-0.0011142147,0.04043838,0.006765567,0.027172998,-0.06227422,-0.028856086,-0.0007107444,-0.021492578,0.012390621,0.04260868,0.048543774,0.017096622,-0.024936264,-0.045044724,0.060325384,0.011034186,-0.0002164414,-0.009616849,0.047525063,0.020496015,0.0030561318,0.009428609,-0.028169563,0.026929393,0.010458393,-0.026752226,-0.0061731646,0.06608331,-0.02673008,0.014583063,0.03177934,0.011637662,-0.0013107595,0.016875163,-0.016664777,-0.041102756,0.033418138,-0.061078344,0.0023253176,0.028125271,0.048632357,-0.011299936,0.0072417036,-0.02059567,-0.00977187,-0.03802448,0.013431477,-0.04511116,0.019255845,-0.027903812,-0.0072638495,0.005752393,-0.00451776,0.004354434,-0.004249241,-0.015003835,0.003177934,-0.084685855,0.035300538,-0.02285455,0.00059482455,0.05771217,-0.049075276,-0.0043101422,0.047082145,0.0043572024,0.0024401995,-0.036540706,0.048056565,-0.00948951,-0.034791183,-0.0068762964,-0.010845946,-0.06435593,-0.0037564952,-0.060059633,0.0306499,-0.0122356,-0.015590701,-0.012999633,-0.0057136375,-0.059173796,-0.0432952,-0.054921787,-0.021680819,0.033528864,0.0612998,-0.031292133,0.028546043,0.00089137175,-0.0104694655,0.06528606,-0.049075276,-0.057889335,-0.023851115,0.0019405329,-0.02759377,0.00029620118,0.021370776,0.0021038589,-0.012434913,-0.06745636,0.006859687,-0.0022630324,0.002506637,0.045620516,-0.0075351363,0.020817129,0.024404762,-0.03802448,-0.032288697,-0.057313543,-0.03532268,0.054877497,-0.007258313,-0.0032554448,-0.016498683,-0.0080002,-0.007989127,-0.046107728,-0.005068639,0.022943133,0.0133871855,0.0048305704,0.011803756,-0.035366975,-0.031712905,-0.05797792,-0.0043821163,-0.0026436646,-0.0067212754,0.06342581,-0.053770203,0.033750325,-0.015037054,-0.0030755093,0.006389087,-0.035477705,0.030362004,-0.00013443243,0.0056167496,-0.024537638,0.0059959977,-0.038533837,0.006361405,-0.028147416,-0.03561058,-0.0065828636,-0.021680819,-0.050005402,-0.012866758,0.017462028,-0.018480739,0.023518927,0.021282192,-0.05120128,0.0045925025,0.050049692,-0.012445986,-0.031934362,0.0049994327,0.03242157,-0.031225694,-0.018801855,0.0077621317,0.022090517,-0.0089690825,0.0030422907,-0.032775905,0.035300538,0.06980382,0.0122577455,0.05474462,-0.020972151,0.022810258,-0.019809492,0.0026865723,0.004459627,0.001636027,0.01833679,-0.055630457,-0.058066502,-0.033329554,-0.012445986,0.013431477,-0.03151359,0.018281426,0.020318847,-0.0088251345,0.03937538,-0.003728813,0.027239434,0.04347237,0.0062285294,0.010391955,-0.04393743,-0.034193244,-0.017938165,-0.017705632,-0.043959577,0.04433606,0.030915651,-0.011792682,-0.010436247,-0.013021779,-0.03399393,0.044225328,0.01772778,-0.022599872,0.006466598,-0.010690925,-0.0694052,0.028236,0.03151359,-0.044933997,-0.01404049,0.00024170155,-0.009306807,0.021403994,-0.017218424,0.04796798,0.03284234,-0.018325718,0.0034021612,-0.043848846,-0.027261581,0.05850942,0.012811393,0.0030755093,0.005060334,-0.025157722,-0.026176432,-0.0016830871,-0.03733796,-0.0074188705,0.029166127,-0.01400727,0.014472334,-0.072904244,-0.013719374,0.0484109,0.039331086,0.0115380045,0.04039409,-0.022190174,0.019266918,-0.043605242,-0.056073375,0.015424607,0.06125551,-0.05120128,-0.005079712,-0.0055641527,-0.016022546,-0.021470433,0.023164593,-0.021138245,-0.01766134,0.025046993,0.032155823,-0.07520742,-0.014782377,-0.026021412,0.0021564553,0.030893506,-0.025091285,-0.022633092,-0.016664777,0.01120028,-0.019433012,-0.01268959,-0.010286762,-0.0029011106,-0.007728913,0.0031364106,-0.01954374,-0.004897008,-0.023762532,-0.0087420875,0.007679085,-0.012656372,0.0015100724,-0.013165727,0.021791548,-0.005068639,-0.037360102,0.076447584,0.042099323,0.018657906,0.055098955,0.01998666,0.011870193,0.008647967,0.01844752,0.027970249,0.020972151,0.06524177,-0.022511289,-0.024271887,0.013298603,-0.03893246,0.0074410164,-0.014051562,0.011759464,-0.018702198,-0.013254311,0.021282192,0.05749071,0.03549985,-0.050049692,0.005680419,0.076359004,0.0113940565,0.01261208,-0.024648366,-0.021105027,-0.03968542,-0.0005508788,0.024271887,0.012158089,0.009666678,0.05718067,-0.0026408965,-0.00047129206,0.037648,0.015634993,-0.013442551,-0.014273021,-0.029941233,-0.0074410164,0.07232845,-0.039596837,0.0016291065,0.0005010506,-0.00621192,-0.038002335,-0.015668212,-0.0100985225,0.0036872893,0.015502118,-0.01487096,-0.015479972,-0.017362371,-0.0244712,-0.018059967,0.011028649,-0.035034787,0.027239434,-0.049518194,-0.009838308,-0.018059967,-0.011870193,0.0006695669,0.008996765,-0.0030035353,-0.047525063,-0.00287066,0.002903879,0.009007838,-0.017982457,-0.0068652234,-0.0077732047,0.04119134,0.011737318,0.0039004434,-0.020274555,0.0338832,0.014439115,-0.01280032,-0.012711736,0.0055946037,-0.0035904013,0.01468272,-0.04347237,-0.04889811,0.006610546,-0.00884728,0.07086682,0.046152018,-0.008714405,-0.03248801,0.002811143,-0.0071475836,-0.025667077,-0.013453623,0.08464156,0.04265297,0.032288697,0.000062890846,-0.0024900276,-0.042143613,-0.014250875,-0.037470832,0.027172998,-0.01562392,0.0027806924,-0.039818298,0.018048894,-0.033307407,0.0052347328,-0.0020429576,0.004210486,-0.020208118,0.033263117,-0.0047004637,-0.019067604,0.042232197,-0.0035101224,-0.060192507,0.056914918,0.025534203,-0.046284895,-0.05089124,-0.02495841,-0.03383891,0.039508253,0.0037205082,0.047480773,0.013686155,0.00082078174,-0.041390654,-0.045753393,0.041324217,0.029808357,0.006765567,-0.0048665577,0.01603362,0.010989894,-0.013054998,-0.005649968,-0.0153803155,-0.014727011,0.0301184,-0.007850715,-0.0013675082,-0.051998533,-0.01750632,-0.009888137,-0.019300137,-0.011770536,-0.04770223,-0.018491812,0.009561485,-0.022644164,0.019875929,0.019023312,0.04916386,0.026929393,-0.058332253,0.008625821,-0.008797452,0.021182537,0.0038063235,-0.04739219,0.0132432375,-0.0129553415,-0.031557884,-0.06568468,0.033462428,0.033639595,-0.06874082,0.042852283,0.014627355,0.002552313,-0.01992022,-0.01014835,-0.024338325,-0.0258221,-0.08694474,-0.025423473,-0.01025908,-0.018403228,-0.006975953,-0.007507454,0.01664263,-0.044889703,0.12135944,0.031292133,0.00047509838,0.033971783,-0.031114964,-0.046107728,0.0013031467,0.0054866425,-0.00930127,-0.010032085,-0.010203715,-0.017151985,0.00006531305,0.0009820315,0.0018464129,0.005375913,-0.0071586566,-0.0446461,0.020684253,0.0060624355,-0.020639962,-0.012589934,0.00076403294,0.005093553,0.03308595,-0.045288328,-0.061211217,0.001777207,0.015192076,0.013187873,0.004506687,-0.022987425,0.060901176,-0.0006214688,-0.06174272,-0.012545642,0.019599106,0.029431878,-0.0053482307,0.02356322,0.0073302872,-0.009594703,-0.009118567,0.012700664,-0.03308595,-0.0225888,-0.017295934,0.03308595,0.022289831,-0.052840076,0.025578493,-0.0301184,0.027638061,0.019377647,-0.034835473,-0.03538912,0.025711369,0.027172998,-0.0059849247,-0.040637694,-0.0153803155,0.0000028844795,0.0030948871,0.00023772221,-0.0062617483,0.02266631,-0.028368875,0.035787746,-0.018137477,0.0018920888,0.022201248,0.011427275,0.018270353,-0.018790781,-0.0010540056,0.0038063235,-0.014184438,0.017639196,0.028833939,-0.02356322,0.012844612,0.007424407,0.021182537,0.026154287,-0.028944667,-0.038046625,-0.0068209316,0.012368475,0.079105094,0.009910283,-0.00724724,0.00003804161,0.018358937,-0.019266918,-0.019632325,0.019643398,-0.02974192,0.0026187506,-0.03383891,-0.025999267,0.01637688,0.009306807,0.0043101422,-0.011072941,0.027837373,0.04969536,0.0077123037,0.025512056,0.013951906,0.023142448,-0.040482674,0.0052734884,-0.025689224,-0.018392155,0.026885102,0.0036513023,-0.0173513,-0.018248208,0.015568555,-0.022644164,-0.002001434,-0.00072666176,-0.0091960775,-0.020075243,-0.03572131,-0.005752393,0.01242384,0.014560917,-0.042852283,-0.0054811058,0.011549078,0.01174839,-0.028413167,0.008631358,0.0030339858,0.017085548,0.012324183,0.014904179,0.03166861,-0.03538912,0.009356636,-0.010170496,-0.02210159,0.030583464,0.002575843,0.051422738,0.01731808,0.010331054,-0.043915283,0.02318674,-0.026597206,-0.0014090318,-0.0150592,0.016886236,-0.008681186,0.0024678817,-0.002728096,0.030384151,0.018580396,-0.053504452,0.012744956,-0.026885102,0.024116866,-0.01298856,0.004550979,-0.016985891,-0.019222626,0.0039502718,-0.014693793,0.0015432911,-0.018059967,-0.030782776,-0.029564753,-0.033174533,-0.012922122,-0.028745355,-0.0025246306,-0.02216803,-0.015280658,-0.008238268,-0.017517393,-0.038157355,-0.020352066,-0.03908748,0.0026671947,-0.029121835,-0.005791148,0.0044623953,-0.000031986096,0.021769403,-0.04167855,0.01570143,-0.014771303,-0.0072693857,0.03368389,-0.01570143,0.023474636,-0.022832405,-0.03162432,-0.003269286,-0.014217656,-0.011770536,0.038002335,0.018026749,0.010236934,-0.035211954,0.027305873,0.0033329553,-0.016454391,0.0005270028,0.050846945,0.019654471,-0.0009924123,0.006411233,-0.044778973,0.0046063433,0.013830104,-0.013586499,-0.031070674,0.021702964,-0.023076009,-0.0182925,0.021636527,0.008326852,-0.018757563,-0.008492946,0.0089690825,-0.0030063035,-0.020496015,-0.029697629,-0.015945036,-0.010607878,-0.010314445,0.030029817,0.005951706,-0.035809893,-0.018203916,-0.021293266,-0.016177567,-0.022145882,-0.009362171,0.013409331,0.0012643915,-0.017572757,0.020197045,0.01261208,0.019222626,0.017484175,0.032244403,-0.02225661,0.042099323,-0.005470033,-0.012833538,0.01904546,0.0019363806,-0.022920989,0.007601574,0.0277045,0.033927493,0.0073302872,-0.0019253077,0.03206724,-0.018735416,-0.00048513323,-0.002319781,-0.019709835,0.005140613,-0.020684253,-0.025733516,-0.01901224,0.0029703164,0.039596837,-0.050049692,-0.0338832,0.002950939,-0.01063556,-0.0026616582,-0.015668212,-0.001141205,0.0018477971,-0.04619631,-0.0030146083,0.040460527,-0.0028983424,0.023939699,-0.02224554,-0.059616715,-0.034924056,-0.049119566,0.054921787,-0.0446461,-0.05018257,0.010718607,-0.011189207,0.015336024,-0.036806457,0.009683287,0.022422707,0.0113940565,0.01946623,-0.028036688,-0.023784678,-0.01120028,-0.00052285043,-0.042520095,-0.001188957,-0.017362371,-0.0067711035,-0.016764432,-0.0060901176,0.0060624355,-0.015557482,-0.0817183,-0.032244403,0.024249742,0.019964512,-0.014671647,-0.034879766,0.009384317,-0.011194743,0.030804923,-0.029321149,0.026552914,0.014693793,0.032886636,-0.024825534,-0.03760371,-0.0036402293,0.033063803,-0.026796518,-0.001611113,-0.03410466,0.016908381,0.0016498682,0.045155454,0.009567021,0.01573465,0.0061344095,0.020794984,0.033794615,0.03718294,-0.022212321,-0.022810258,0.043095887,-0.01148264,0.0040610014,-0.01112277,-0.015778942,0.020584598,-0.00560014,-0.00060174515,-0.024537638,0.019743053,-0.04023907,-0.012966414,-0.0050990894,0.00089344796,-0.010364273,0.009567021,0.022832405,-0.030804923,0.016166493,0.032399427,0.0073690424,0.006366941,0.0148045225,0.02544562,0.0009799553,-0.02108288,-0.008177367,0.024537638,-0.006461061,0.009777407,0.0015778941,-0.027793081,0.00409422,-0.007142047,-0.010851482,0.014649501,0.01705233,0.0031502517,-0.0042547775,0.015989328,0.011438348,0.026198579,0.040416237,0.009362171,0.00027682353,-0.016144348,0.03328526,0.013575426,0.02759377,0.028656771,-0.020695327,-0.006942734,0.049385317,0.0036042423,-0.0071697296,-0.016454391,-0.010519294,0.00051939016,0.037935898,0.04942961,-0.002671347,0.013320749,-0.0054146685,-0.011626588,-0.02748304,-0.03437041,-0.010452856,0.043715972,-0.010701997,0.026486475,0.012933196,-0.0024166694,0.0050188107,-0.039862588,0.0028623552,-0.006012607,0.044889703,-0.02721729,0.005467265,-0.006472134,-0.010209252,-0.024803389,-0.0004529525,-0.040770568,-0.014472334,0.003739886,0.012290965,0.0088860355,-0.02420545,0.028457459,0.03862242,-0.0008657656,-0.051156987,-0.019477304,0.019399794,0.0016844711,-0.026176432,-0.012623153,-0.010397492,0.0067821764,0.047215022,0.022300903,-0.022876697,0.004913618,-0.009090885,0.026198579,0.025002701,-0.021392923,-0.00790608,0.01430624,-0.02127112,0.010032085,-0.024537638,0.026641497,0.038600273,-0.026597206,0.012224527,-0.0017232265,-0.042741552,0.011947704,-0.0061233365,-0.030029817,0.013420405,0.026109995,-0.0050880164,-0.015424607,-0.029454023,-0.017617049,0.013652937,-0.028324584,0.02537918,0.019599106,-0.0032388354,0.02202408,-0.01938872,0.000929435,-0.01498169,-0.013088216,-0.0061953105,-0.010807191,0.008553847,0.023696095,0.0073468965,0.047746524,0.016598338,0.03437041,0.01705233,0.013010706,0.00023149367,0.021891205,0.024139011,-0.0047143046,0.005868659,0.05168849,-0.016465463,0.015878597,-0.03647427,0.02062889,0.016044691,-0.0066880565,0.0015169929,0.021979788,-0.058819465,-0.018513957,0.00209417,-0.0045814295,-0.017938165,0.016387952,-0.01185912,-0.0031142647,-0.025578493,-0.03904319,0.017096622,-0.0017481406,-0.029609045,-0.024936264,0.010187106,0.030849215,-0.00086092117,0.0036180834,-0.016996965,0.0059959977,0.035588432,0.02624287,0.041877862,-0.0006484591,-0.0015737418,-0.018757563,-0.019156188,-0.01063556,-0.0021924423,0.00041938765,0.030428443,-0.008481873,-0.026707934,0.015491045,0.011526932,0.02078391,0.022444852,-0.0061288727,-0.021138245,0.0067821764,-0.03284234,0.033905346,-0.021857986,-0.014616283,-0.009041056,0.020905713,0.038711004,0.028058833,0.019289063,-0.009306807,-0.04641777,-0.03366174,0.015269586,0.02985265,0.01890151,-0.014051562,0.009063202,0.0033910882,-0.005785612,0.017772071,-0.027062269,0.047082145,0.0069482704,-0.028523896,0.00291772,0.01758383,-0.023164593,0.012457059,0.009240369,-0.007092219,-0.023319615,0.0024263582,0.011848047,0.007828569,0.0031557882,0.047347896,0.040947735,-0.044136744,0.046063434,0.014317313,0.0068098586,-0.017373445,0.027084414,-0.0074022613,0.0015723576,0.042409364,0.009517193,-0.048499484,-0.011333155,0.023053864,0.0034409165,0.013974052,-0.0080444915,-0.036917187,-0.008614748,0.025777807,0.028435312,0.012479205,0.012368475,-0.01336504,-0.0060845814,0.0034630625,-0.016066838,0.021514725,-0.023031717,0.014926325,0.029808357,-0.009949038,-0.018458594,-0.04012834,0.010491611,0.008880499,0.02646433,0.05576333,-0.008692259,0.050315443,0.021680819,-0.01093453,-0.013431477,0.026309308,-0.030937798,0.011892339,0.0024734181,0.014295167,0.005243038,-0.018137477,-0.0019446852,-0.008509555,0.007081146,-0.024537638,0.028479604,0.0024180536,-0.0073136776,-0.00079725176,-0.051422738,0.031314276,0.006383551,0.021691892,-0.004210486,0.009550412,0.007059,-0.010248007,-0.023363905,-0.049651068,0.021581162,-0.034813326,0.015767869,-0.0160004,-0.0009931044,-0.0053703766,-0.0034630625,-0.0071918755,-0.013331821,0.0064887437,0.0012920739,0.019355502,0.038268086,0.04212147,0.011704098,-0.018048894,-0.00630604,0.029188273,0.04130207,0.029387586,-0.00032803588,-0.03941967,0.0053703766,-0.014704866,-0.0106743155,-0.0006519194,0.015070273,-0.014749157,-0.008343461,-0.00066160824,-0.030472735,0.010048694,-0.009755261,-0.005104626,-0.01468272,-0.0074299434,0.040061902,-0.029166127,-0.010386419,0.018048894,-0.00912964,0.0066271555,-0.0016069605,-0.012844612,0.027017977,0.026796518,0.061166927,-0.042785846,0.0016083447,-0.037714437,0.009722042,0.0129553415,-0.0021024747,0.005918487,-0.01127779,0.013298603,-0.019676616,0.015612847,-0.02646433,-0.011648734,0.0014380983,0.004492846,-0.025954975,-0.026176432,-0.0043101422,0.019898076,0.023031717,0.03279805,-0.012302037,-0.0103532,0.005611213,-0.017140914,0.017838508,-0.01016496,0.046816394,-0.0056139813,0.03410466,0.026397891,0.037869457,-0.0013536671,-0.0029204881,0.00960024,-0.028368875,-0.018868292,-0.00082770234,-0.028900376,0.031447154,-0.00082908646,0.02078391,-0.0034990495,-0.036717873,-0.009007838,0.019189406,-0.013730447,-0.03313024,-0.00409422,-0.0040776106,-0.00677664,0.0202967,-0.0116819525,-0.0041661942,-0.015070273,0.037448686,-0.012822466,-0.0072859954,0.045531936,0.022013007,0.025024846,0.015181002,0.0033938566,-0.016288297,-0.0026339758,-0.008819598,0.00019844787,-0.024670513,-0.015502118,0.03456972,-0.0044430178,-0.00045087634,-0.020972151,-0.019444084,-0.028523896,0.027770936,-0.0038893705,-0.03372818,0.053327285,-0.055497583,0.018248208,-0.019222626,-0.036164224,-0.022079445,-0.0027101024,-0.048366606,0.0072527765,0.007142047,0.036407832,0.016930528,0.052618615,-0.012147017,0.0070756096,0.009838308,0.012855684,0.009389854,0.027925957,-0.00310596,0.012634226,0.010613414,-0.011803756,0.025733516,0.014760231,-0.032332987,0.014095854,0.0077123037,-0.0066880565,-0.02560064,0.035234097,0.010369809,0.040106192,-0.016210785,-0.0011335923,0.013608645,-0.01961018,-0.021525798,-0.022743821,0.0061178,0.031912215,-0.016177567,0.00687076,0.021658674,0.015203148,0.031114964,0.010857019,-0.03957469,0.013774739,0.0051129307,-0.0013474385,-0.011604442,0.032930925,-0.0015086882,0.012468132,-0.0077732047,0.007081146,-0.003000767,-0.014793449,-0.021171464,-0.037980188,-0.0055364706,0.026973685,-0.041324217,0.012667445,0.006317113,-0.020717474,-0.00969436,0.019067604,-0.00077233766,-0.017938165,-0.022677384,0.005539239,0.046329185,0.013187873,-0.030162692,0.0041163657,-0.010834873,-0.0017993529,-0.02202408,-0.032997366,-0.01799353,0.012191309,-0.021503652,0.0077012307,0.010358737,0.024980556,0.029764066,0.007507454,-0.018934729,0.04420318,0.0004564128,0.010751826,0.012778174,-0.0033689423,0.016476536,-0.006222993,0.019776274,0.026663642,0.030539172,-0.00225888,-0.0051599904,0.035034787,0.0019488377,0.0031253377,-0.0066271555,0.02624287,0.029454023,0.020872494,-0.0006529575,-0.011006503,-0.00771784,0.018192843,0.015845379,-0.007551746,-0.012656372,0.007955908,0.031934362,-0.04415889,-0.013497915,-0.022788113,0.026021412,-0.00999333,-0.022920989,0.012069506,-0.007225094,-0.008963546,-0.0054506552,-0.023961844,0.017617049,-0.006937198,0.025202014,-0.032908782,0.0009093653,-0.019743053,0.024227595,-0.012080579,0.02495841,0.016631559,0.04167855,0.015158856,-0.05616196,-0.020208118,-0.010502685,0.036585,0.017462028,-0.013531134,-0.00032457558,-0.00414128,0.018779708,0.0006667987,-0.021669745,-0.003186239,-0.022544509,0.036119934,0.019731982,0.037581563,0.05168849,0.0277045,0.009655605,-0.018392155,0.0011543541,-0.014815595,-0.020340992,0.023319615,-0.020307774,0.0037371176,-0.011947704,-0.02495841,0.0066935928,-0.0052042822,-0.00265889,0.014339459,-0.019322282,-0.053017244,0.011382984,-0.019909149,-0.016321516,0.0043710438,-0.018713271,-0.006566254,-0.0035710235,0.017605977,0.0061565554,-0.0046866224,0.025157722,-0.022389486,-0.020507088,-0.019001167,-0.0062174564,-0.009279124,-0.0018394924,-0.012578861,0.039729714,0.0062894304,0.013542207,-0.0059350966,-0.01603362,-0.02225661,-0.02597712,-0.02533489,0.011770536,-0.008814061,-0.016122201,0.018170696,0.03279805,-0.023275323,0.013486843,0.0032028481,-0.01513671,0.013021779,-0.014937398,0.03490191,-0.043317348,-0.00143533,0.018425373,0.023784678,0.028213855,0.024626222,0.024781242,0.011870193,-0.017838508,0.019853784,-0.009024447,0.0066603743,0.0009010606,0.013497915,-0.018414302,0.020396357,0.0005892881,-0.006975953,0.020008804,0.027062269,0.039397527,0.012922122,0.0030367542,0.01287783,0.012091652,0.027283726,0.031048527,0.030229129,-0.021824768,-0.022433778,0.020230263,0.039198212,-0.062229928,0.038733147,0.012966414,0.011266718,0.004980055,-0.033595305,-0.004415335,0.0060181436,0.04433606,0.022832405,-0.0000091427455,0.05066978,0.0051793684,-0.03893246,-0.005093553,-0.0061565554,-0.026685787,0.0061731646,0.0066382284,-0.02495841,-0.030627755,-0.0033938566,-0.031070674,0.010602341,-0.0015640529,-0.047215022,0.018314645,0.027948104,-0.006466598,-0.061166927,0.0050381883,-0.0088251345]},{"id":"guide-embeds-3","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Color\nsetColor() accepts: number (0x5865f2), hex string (\"#5865f2\"), or [r, g, b] array.\n\n```javascript\nembed.setColor(0x5865f2);\nembed.setColor('#57f287');\nembed.setColor([88, 101, 242]);\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.019101862,-0.023603005,-0.005934342,0.009215025,0.010704209,-0.04082379,0.036009137,-0.013548214,-0.0044759493,-0.031799115,0.015048595,-0.003213502,0.037196007,-0.062792055,0.021318844,0.016683338,0.013481033,-0.007569085,-0.045011424,0.029962827,-0.0010923947,-0.016739322,-0.044070885,0.055760417,-0.029492559,0.005640424,0.007210785,-0.0050833793,0.019952824,-0.015384501,-0.023535823,-0.02555126,-0.009047071,-0.04373498,-0.015630832,-0.03948017,0.031015333,0.032829225,-0.045862384,0.0375767,0.012809221,0.012786827,0.027611485,0.02028873,0.014623114,0.012070227,-0.04734037,-0.045907173,0.022550499,0.062612906,0.0058279713,0.01918024,0.008963095,0.02680531,0.0044171656,0.04720601,-0.040599857,0.010782587,0.004590717,0.0043275906,0.03296359,-0.016537778,-0.015015004,-0.018049356,-0.0035130184,0.018586807,-0.04286162,0.017612679,0.01570921,0.007798621,0.05517818,0.012473314,0.011499187,0.010782587,0.011191273,0.03889793,-0.0082856845,-0.0033086755,0.006270248,0.012842812,-0.010317917,0.018385263,-0.05773107,-0.015037398,-0.025887167,-0.014130452,0.01771345,-0.06749474,-0.036904886,0.004898631,-0.020949345,-0.05750713,-0.08245376,0.0033590614,0.004296799,0.029716495,-0.06592718,0.00794418,0.005911948,0.017243182,0.052849233,-0.03860681,-0.03930102,-0.010620233,0.02018796,-0.006337429,0.030545065,0.058447666,-0.014164042,0.019986415,-0.029806072,0.014175239,0.011779108,0.014164042,0.052177418,0.017803025,-0.01105691,0.0014373984,0.015955541,-0.05607393,-0.060104806,-0.04165236,0.07492946,-0.013615395,-0.02196826,-0.015664423,-0.018911516,-0.046534196,-0.048370484,-0.00350742,-0.01875476,-0.026939671,0.020982936,0.01953854,-0.009215025,0.0040560667,-0.022494514,0.014376783,0.0084256455,-0.014387979,0.032874014,-0.022919996,0.0422346,-0.024543542,-0.0098140575,0.0045739217,-0.05289402,0.070719436,0.0072163837,0.008319275,-0.027723454,0.0028999897,-0.031127302,0.013772151,-0.038987506,-0.016325038,0.0054304823,-0.007876999,-0.060060017,-0.019527344,-0.0012582483,0.015261335,0.03553887,-0.025618441,-0.037307974,0.0018264896,-0.014141648,-0.00045942163,-0.009489348,0.052177418,0.013201111,-0.021632355,-0.01975128,-0.00079567765,0.009354986,0.00013996089,0.029470164,-0.033321887,0.0044283625,0.050341133,-0.00969649,0.03925623,-0.02723079,0.03853963,0.023849336,0.0032442934,0.0023023565,-0.039748892,-0.00008332047,-0.057283193,-0.0031911083,0.008733559,0.013928908,0.0028999897,-0.037666276,-0.0072163837,0.027006853,-0.0053129154,0.025170567,-0.032157414,-0.004198827,0.021710733,0.033232313,-0.011555171,-0.060866192,-0.008778347,-0.009153442,-0.040644642,0.007059627,0.02168834,0.027186003,0.014119254,-0.018598003,-0.0055564474,-0.042055447,0.033523433,-0.01774704,-0.003725759,-0.032806832,0.020579848,-0.09306839,0.00012062879,0.055626057,-0.023491036,-0.040017616,0.026715735,-0.005472471,0.0004884635,0.009791664,0.018172521,0.05428243,-0.0032554902,0.016660944,-0.027186003,0.0007578882,-0.01732156,-0.030007614,0.01818372,-0.010715405,0.0010441082,-0.040913366,-0.016269054,0.026178285,-0.0059063495,0.027208397,0.0032191004,0.030074796,-0.007261171,-0.014410373,0.0329188,0.0084256455,0.032179806,-0.006029515,-0.038382873,0.0062534525,-0.005634825,-0.0067461147,0.028910322,0.009282206,-0.03836048,-0.06194109,-0.006566965,-0.007417927,-0.060866192,-0.0046830913,0.02830569,-0.02637983,0.02139722,-0.009310198,-0.049266234,0.018161325,-0.0069308635,0.023267098,0.016101101,0.0175343,-0.031037727,0.008615992,0.038494844,-0.023311885,0.018575609,-0.029179046,-0.009494946,0.010676216,-0.015518864,-0.022281773,-0.018026963,-0.025036205,-0.009338191,-0.00030756404,-0.030589852,0.0026592568,-0.0007186992,0.013189915,0.0023555418,-0.02770106,0.040465493,0.027678665,0.003109931,0.027723454,-0.030253947,-0.021565175,0.0150597915,-0.007031635,-0.020893361,0.011213667,0.040555067,-0.023826942,-0.01807175,0.0143655855,-0.04082379,0.005979129,0.0061134915,0.020154368,-0.0065389727,0.0011651744,0.039323412,0.056700956,0.0773032,-0.03430721,-0.013335474,0.05786543,0.009791664,0.052177418,-0.041406028,-0.01703044,-0.04846006,-0.07277966,-0.0010280127,0.065524094,-0.035046205,-0.015809983,-0.016761716,-0.0056992075,0.046131108,0.03495663,-0.042324174,-0.013794545,-0.008380858,-0.048639208,-0.020624638,-0.021576371,-0.03439679,0.016235463,-0.05231178,-0.043667797,-0.044070885,-0.053028382,-0.0034458372,0.017377544,-0.010687414,-0.022069033,-0.0012960378,-0.040734217,-0.049490172,0.028148934,-0.05056507,-0.0024353196,-0.04075661,-0.030679427,0.017758237,-0.042503323,0.041831512,0.0015395698,0.00011389318,0.019572131,-0.040846188,-0.045683235,0.0140520735,0.025708016,-0.05517818,-0.036658555,0.024767479,0.0014199032,-0.013100339,-0.022125017,0.057462342,0.043533437,0.032202203,0.019247422,0.022897601,0.028574415,0.016112298,0.020736605,-0.050430708,0.0069476585,-0.032000657,0.023603005,-0.0020980136,-0.0052625295,-0.025752803,0.031687144,-0.0053045177,-0.03500142,-0.010049192,0.0683457,0.07824373,-0.0003553257,0.00022988576,0.0019006688,-0.017265575,-0.028529627,-0.039704107,0.038965113,0.0076418645,0.009450159,-0.02201305,-0.011213667,0.01785901,0.029761283,-0.02229297,0.0057775853,-0.00658376,0.03206784,0.007865802,-0.033232313,-0.011409611,0.022102624,-0.057955004,-0.013772151,0.022572892,-0.049087085,-0.037128825,0.014746279,-0.03381455,0.034867056,0.012305361,0.02100533,-0.00081387255,-0.0033198723,-0.024364391,-0.04913187,0.01843005,0.07313796,0.046220683,0.03903229,0.0056600184,0.020960543,-0.039883256,0.02222579,0.01367138,-0.034352,0.041876297,-0.016325038,0.0011504785,-0.05092337,-0.01570921,-0.011633549,-0.020333517,-0.041070122,-0.024879448,-0.003342266,-0.006785304,0.0030063598,0.009718884,0.034419183,0.04189869,0.0026284654,-0.03565084,0.020344716,0.0008334671,0.00015194505,0.015149367,-0.03589717,0.060821403,0.013066749,-0.027387546,-0.08464835,0.0047698673,0.04398131,-0.031799115,0.023356672,0.046175897,0.036882494,-0.040107194,0.01750071,-0.037330367,-0.0054584746,-0.04980368,0.000049729853,0.012439724,0.010010003,0.0051197694,0.0091870325,-0.035941955,-0.0034878254,0.08742517,0.032179806,-0.009063867,0.017993372,-0.01760148,-0.039278623,-0.008716764,-0.015798785,-0.009405372,-0.015485273,0.032403745,-0.02458833,-0.016806504,0.013872923,-0.0020532263,0.022203395,-0.039592136,-0.034083277,0.021811506,0.021766718,-0.008806339,0.017455922,-0.012170999,-0.01971769,-0.009886838,-0.013816939,-0.01613469,-0.03589717,-0.038338087,-0.02626786,0.00089435006,-0.004305197,0.0020196356,-0.017433528,-0.032448534,-0.012764433,0.0071436036,-0.002333148,-0.031485602,0.028820746,-0.0068860757,0.028708778,-0.027678665,0.032515712,-0.03052267,-0.0019202634,-0.001703324,-0.016000329,0.004940619,-0.036636163,0.022528104,-0.022774436,0.03609871,0.008028157,-0.040532675,-0.03638983,-0.003417845,-0.004562725,0.03177672,-0.042570505,0.014746279,0.004946218,0.04176433,0.019448966,0.028104147,0.038718782,-0.026760522,0.009707687,-0.027365154,-0.001076999,0.036277864,0.006566965,0.01703044,-0.0140520735,0.00023565914,0.0023527425,0.006785304,0.02375976,0.027186003,0.0012533498,0.033344284,0.039054688,0.017187197,0.018844334,-0.043488648,-0.055312544,-0.0077818255,0.015731605,0.052177418,0.02830569,-0.010340311,-0.023043161,0.022628877,0.013861727,0.0018978696,0.0016235464,0.042301778,0.0028426056,-0.014343192,-0.0022421735,0.0032023052,0.0011602758,-0.01975128,-0.019057075,0.008201708,0.031575177,0.028686384,0.0064102085,0.0077706287,0.0012715447,-0.005590038,0.0066005555,-0.026603766,0.008526417,0.04075661,0.012137408,-0.028977502,-0.020479077,0.02830569,0.008140125,0.0329188,0.019874446,-0.009063867,-0.01295478,0.014970217,-0.019605722,-0.0045039416,-0.0019580529,-0.020982936,-0.010429885,0.014791067,-0.003949696,-0.014264814,0.014903036,0.012092621,-0.00016979006,0.023535823,0.056432232,0.007826613,-0.013156324,-0.0038181331,0.008352865,-0.0066621383,0.038673993,-0.019672902,-0.0058951527,-0.03135124,-0.023491036,-0.021206874,-0.004064464,0.00065851596,-0.018698774,-0.014555933,0.031306453,-0.021565175,0.019314602,0.0014429968,0.029694103,-0.029783677,-0.023379067,0.007322754,0.015003807,-0.017299166,-0.021061314,-0.019460162,-0.031687144,-0.040532675,-0.022304168,-0.07510861,-0.014276011,-0.024610722,-0.014533538,-0.024633117,-0.028619202,-0.016123494,0.0064437995,-0.011868684,-0.0076922504,-0.034687907,0.012025439,0.0068972725,-0.03750952,-0.031306453,-0.03968171,-0.003960893,-0.04684771,0.03343386,0.002565483,-0.007843408,0.013839332,-0.016694535,-0.023020767,0.011655943,-0.002133004,0.011045713,-0.0018712771,0.00090344757,-0.03607632,-0.045033816,0.029828465,-0.0017313162,0.007389935,0.036904886,0.028171327,-0.041316453,-0.020781392,0.020344716,-0.00712121,-0.013503427,0.018833138,0.06982369,0.01549647,-0.04201066,-0.023446249,-0.05522297,0.017176,0.032694865,0.0031267263,-0.018486034,-0.009164639,-0.026043922,-0.018866727,0.019594524,0.032470927,-0.02590956,0.03146321,-0.016851291,-0.0137385605,-0.0048370482,-0.01084417,-0.029179046,0.00064417,-0.0064549963,0.015227744,0.0011546774,-0.016190676,-0.014667901,-0.017198395,-0.026088709,-0.018273294,0.0006382217,-0.01953854,0.00021501492,0.0009475352,0.015149367,-0.0015241741,0.017780632,0.034419183,0.025842378,-0.012495709,0.02261768,-0.0073395493,-0.004576721,0.021173283,-0.0015031799,-0.0060966965,0.014499948,0.017970977,-0.007249974,0.021419615,0.037979785,0.02097174,-0.016515385,-0.012170999,-0.0225393,-0.02770106,0.005590038,-0.009718884,0.0020616238,-0.02669334,0.010732201,0.029402984,-0.03992804,-0.027186003,0.0054304823,0.016201872,0.013492229,0.008341669,0.035359718,0.009058269,-0.006427004,-0.0020196356,0.014858248,-0.008711166,0.027902603,-0.0053017186,-0.012327755,-0.03726319,-0.005676814,0.052849233,-0.015474076,-0.038226116,-0.033232313,-0.01707523,0.013033158,-0.037307974,0.02211382,0.006023917,-0.002440918,0.019874446,-0.0002566533,-0.0034794277,-0.011678336,0.014891839,-0.048863146,-0.018810743,-0.04198827,0.017220788,-0.0067461147,-0.0067965006,-0.0011651744,0.006309437,-0.06682292,-0.021621158,0.04823612,0.0052681277,-0.009646105,-0.020154368,-0.0025892765,0.02225938,0.025999134,-0.0028188124,0.0029363795,0.019482557,0.020803787,0.0062534525,-0.030813789,-0.03560605,0.078378096,-0.01965051,-0.04129406,-0.01184629,0.012518102,-0.017791828,0.052401356,0.006673335,0.0069868476,0.043824553,0.0150262015,0.008554409,0.057596706,0.009047071,-0.020389503,0.050833795,0.0029139856,0.012271771,-0.005500463,-0.019706493,0.0061246883,-0.0332771,-0.0019440567,-0.022998374,0.01774704,-0.02705164,-0.019124256,-0.0077874237,0.034195244,-0.004960214,0.0025794792,0.025304928,-0.016078707,-0.012047834,0.0008369661,0.044362005,0.009478152,-0.025260141,0.02884314,-0.013615395,-0.009853247,0.0045431303,-0.02579759,-0.006863682,-0.026424617,-0.0076362663,-0.0026788514,0.027611485,0.010804981,-0.022069033,-0.024812266,-0.008218504,-0.00023006072,0.006337429,-0.008996686,0.02662616,0.031530388,0.028753566,-0.05696968,-0.0025570854,-0.011499187,-0.027454728,0.009287804,0.018105341,-0.004881836,0.004741875,-0.030612245,0.019975219,0.0024507153,-0.0038937118,-0.0077930223,-0.008576803,-0.028775958,0.021990655,0.029402984,-0.010547453,-0.0015157764,-0.0071548005,0.006712524,-0.027969785,0.0030483482,0.025439292,0.03567323,-0.010110775,-0.009438963,0.039592136,-0.0186092,-0.022953587,-0.02136363,-0.01420883,-0.012921189,0.020098384,-0.02175552,-0.021150889,0.004333189,0.009153442,-0.00547527,-0.02136363,-0.030769002,0.0042324173,-0.006326232,0.038517237,0.031127302,-0.033948913,0.020994134,0.017131213,0.041182093,-0.031552784,-0.029067077,0.01771345,0.009881238,0.0015367706,-0.030589852,0.031216877,0.01882194,0.047609095,0.018598003,0.0030259544,0.0075746835,-0.021677142,0.0039804876,0.016190676,-0.060060017,0.017702254,-0.008022558,0.008509622,-0.010793784,-0.008778347,-0.019784871,0.023468642,0.011208068,0.010457878,0.018340476,-0.017176,-0.0020672223,-0.03260529,-0.018598003,0.031507995,0.04086858,0.02848484,0.003070742,-0.027880209,0.016190676,-0.012249377,-0.0010175157,-0.003904909,0.0318439,0.003235896,-0.0005381496,-0.016145889,0.02830569,0.0068188948,-0.002526294,0.021957064,-0.0012295564,-0.0022281774,-0.008968694,0.008727961,0.019616919,0.034598332,0.045280147,0.020322321,0.03146321,-0.015328516,-0.007619471,0.06570324,0.011633549,0.009763672,0.03117209,-0.011812699,0.032381352,-0.025775198,-0.0035438098,0.02465551,-0.012159802,-0.018564412,0.025528867,-0.009069466,0.0150597915,-0.03585238,0.0008740558,0.0015199753,0.020479077,-0.0054052896,0.013895317,-0.05235657,-0.0035634043,-0.0001442472,-0.010799382,-0.00830248,-0.016078707,-0.0051113716,0.0028244108,0.02276324,-0.014499948,0.0076922504,0.014197633,0.045504086,0.004109252,0.026984459,-0.03728558,0.0075019035,-0.0053409077,0.007020438,-0.015171761,-0.01592195,-0.017590284,0.0039748894,0.014197633,-0.027477121,0.038942717,0.009338191,-0.023199918,0.034665514,0.03388173,-0.014891839,0.006415807,-0.052177418,0.019840855,-0.034083277,-0.03943538,-0.016101101,0.008095338,0.05943299,0.03565084,0.017422331,-0.02770106,-0.023782155,-0.0404431,-0.03878596,-0.008918308,0.0021693937,0.0009832253,0.023468642,-0.015171761,-0.043533437,0.035046205,-0.041182093,0.038562026,-0.0050217966,-0.027499516,0.026200678,0.02465551,0.0035522075,-0.001728517,-0.0051757535,0.012854008,-0.020378305,-0.029716495,0.010782587,0.011566368,-0.024431573,0.00848163,0.014858248,-0.02085977,0.010312319,0.0045067407,0.012786827,-0.013626592,-0.0034290417,-0.0037733456,0.024386786,0.040129587,-0.01223818,-0.037352763,-0.024319604,-0.008588,0.033053163,-0.016504189,0.015429288,-0.057283193,-0.032202203,0.048639208,0.018172521,0.009002284,-0.037845425,-0.040890973,-0.015720407,0.023782155,-0.014276011,-0.0023667386,-0.052266996,0.018519625,0.05020677,0.0025178965,-0.007249974,-0.020759,-0.0038909127,0.010553051,0.050117195,0.030433096,-0.004095256,0.05235657,0.0030315528,0.003636184,0.027275579,0.006516579,-0.0382933,0.011409611,0.0012799423,0.019986415,-0.026111104,0.004103653,-0.007110013,0.011779108,0.017176,-0.011532777,0.05714883,0.008901512,-0.0034262426,0.017803025,-0.040465493,0.010133169,0.013861727,-0.016694535,0.021822702,-0.031216877,0.0066621383,-0.0092598125,-0.034240033,-0.054372005,0.02991804,-0.025819985,0.018564412,0.012820417,-0.0143319955,-0.025327323,-0.0040392713,0.020747803,0.0070988163,0.021139693,0.0045235357,-0.015899558,0.01277563,0.054192856,-0.0022841617,0.009920428,0.0031715138,0.030903364,0.009567726,0.026782915,0.015642028,-0.012574086,-0.021318844,-0.023714973,0.0021483996,0.016560173,0.007709046,-0.036121108,0.0057775853,0.008532016,0.0052541317,0.045504086,0.0003771946,-0.027253184,0.008235299,-0.0024647112,0.027768241,-0.037442338,0.0045711226,0.03325471,-0.0037593495,-0.009310198,0.014276011,-0.012764433,0.012226983,0.034799874,0.029783677,-0.043399073,-0.0038517236,-0.027365154,0.0077314395,0.03643462,-0.020389503,-0.029694103,-0.027320366,-0.019706493,-0.0002559535,-0.001484985,-0.014455161,0.018351672,-0.010900154,0.020770196,-0.024789874,0.0026494598,0.04176433,-0.0028146135,0.0211173,0.008879119,0.0037733456,0.011079304,0.03296359,-0.0017719049,-0.0012393537,-0.023983698,0.06530015,-0.02841766,0.04626547,0.01313393,0.005718802,0.0111352885,0.01714241,0.00036844704,0.01442157,-0.006270248,0.0016417413,-0.026290253,0.017948585,-0.018374065,0.010166759,0.0031715138,-0.034262426,-0.0020098384,0.018228507,0.02315513,-0.052938808,-0.014768673,-0.013861727,-0.009131049,0.011140887,-0.0061022947,-0.022953587,0.01020035,0.0007991767,0.0408014,-0.003960893,0.0038993105,0.020131974,0.008224102,-0.0014905835,0.013906514,-0.017041638,0.004461953,0.016851291,0.011566368,-0.019930432,-0.0059679323,0.033344284,0.041137304,0.026715735,-0.03202305,0.014623114,-0.01223818,0.017019244,0.012170999,-0.011364824,0.04494424,-0.04548169,-0.027365154,0.0013401256,-0.015250139,-0.0066509414,-0.017332757,-0.045616053,0.014611917,0.027633877,0.010961737,0.0068300916,0.038427662,-0.007378738,0.008319275,0.008257693,-0.010261932,0.005718802,0.017444726,0.014040876,0.028462447,0.0057132035,-0.0032554902,-0.011331233,0.024924235,-0.0030035607,0.032717258,0.006466193,0.0077202427,-0.0013877122,0.028529627,-0.023849336,0.06229939,0.012148606,0.0116223525,0.0029839661,-0.040935762,0.004266008,-0.04666856,-0.024453966,-0.008044952,0.010637027,0.008448039,-0.0076866522,0.002025234,-0.009394175,0.027633877,-0.03553887,0.0018334877,0.0046746936,-0.004834249,-0.02812654,0.010838571,-0.005282124,0.030724214,-0.0059175463,-0.0026816507,0.0008810538,-0.0023569413,-0.002526294,-0.019740084,-0.0028636,0.029783677,-0.018709973,0.020020006,0.008571205,-0.03703925,0.012282968,-0.020691818,-0.038472448,0.0054024905,0.009338191,0.011174478,0.027208397,-0.012462118,-0.023983698,0.012372543,-0.012137408,-0.0040336726,-0.014511145,-0.040958155,-0.044608336,0.014432767,-0.009399774,0.0030931358,0.018362869,0.0068916744,0.01009398,-0.010575444,0.006040712,0.039569743,0.004047669,0.012876402,-0.0044115675,-0.013100339,0.006902871,-0.028507235,-0.0023751364,0.041159697,-0.012271771,0.017243182,0.022236986,0.00085236185,-0.009069466,0.0081457235,-0.0065221773,0.026491797,-0.004050468,0.0029391786,0.0025710815,-0.015910754,-0.02841766,0.017870206,0.032336563,-0.013559411,-0.02265127,0.01130884,-0.0019888442,-0.03141842,0.006337429,-0.03453115,0.049266234,-0.0045207366,-0.034799874,0.00017486364,0.008358465,-0.026558978,0.010099578,-0.06391174,0.007983369,-0.018598003,-0.013828136,-0.028104147,0.022236986,-0.012753236,0.022897601,0.01989684,0.024924235,0.0072947615,0.026962066,-0.0036837705,-0.051908694,-0.017556693,0.011958258,0.023311885,0.0034458372,0.009931625,0.0153733045,0.006572563,0.015563651,0.04248093,-0.0146790985,0.04021916,-0.042973593,0.0189675,0.04241375,0.051505607,0.015944345,0.0051589585,0.026917279,-0.047967397,-0.011252856,0.0056236284,0.018138932,0.012115015,-0.043958917,-0.023603005,-0.0069084694,0.0044647525,-0.0026648554,-0.024319604,-0.015507666,0.011499187,0.013413852,-0.031754326,0.022998374,-0.018631594,-0.028260903,0.023423854,-0.021643551,-0.010894556,0.014791067,-0.017343953,-0.016190676,0.029537346,-0.01105691,-0.013783349,-0.027902603,-0.029582134,-0.009690892,-0.0075914785,-0.026760522,0.016560173,0.037733454,-0.00038524234,-0.0023891323,0.01907947,-0.005024596,0.011185674,0.0047726664,-0.021699537,-0.029067077,-0.0035550066,-0.0073563443,0.001850283,0.024319604,0.004641103,0.018698774,0.0026704539,0.011264052,0.0027110425,-0.027992178,0.017590284,-0.025640834,-0.009550931,0.013861727,0.06435961,0.00876715,0.040062405,0.010222743,-0.014757476,0.0070764227,0.036882494,-0.027096428,-0.031530388,0.012730842,-0.0002566533,-0.026133498,0.016884882,0.005100175,-0.0013506226,-0.007261171,0.012764433,0.03088097,0.0014324997,-0.01313393,-0.0005357003,0.02175552,0.018900318,0.0015451682,0.022953587,-0.007804219,-0.016190676,0.0041848305,0.033075556,-0.022819223,0.029761283,0.021229267,0.026603766,-0.013884121,-0.02590956,-0.01760148,0.008291283,-0.004047669,-0.000976927,0.0018264896,0.02633504,-0.005178553,-0.052087843,0.04189869,0.031530388,-0.0020238345,0.00959012,-0.012383739,-0.06570324,-0.010541854,-0.03226938,-0.03889793,-0.0011441803,-0.018956304,-0.03771106,0.0069420603,0.009802861,-0.009690892,-0.0120030455,-0.04198827,0.009416569]},{"id":"guide-embeds-4","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Author\nsetAuthor() adds a header line with name. Optional: iconURL, url.\n\n```javascript\nembed.setAuthor({\n name: 'Fluxer.js',\n iconURL: 'https://example.com/icon.png',\n url: 'https://fluxerjs.dev',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.013851069,-0.029272394,-0.016475976,-0.034756575,0.006380632,-0.0689038,0.01229253,-0.013886224,-0.019382121,-0.0025663148,0.021421112,0.006984126,0.027420897,-0.027514644,-0.010077766,0.016288482,-0.044717155,-0.0022308775,0.016909553,0.036444012,-0.004467614,-0.01552679,-0.037850212,0.088637464,-0.032272287,0.026741235,-0.039045483,0.031569187,0.036139335,-0.0056511657,0.010968359,-0.017190794,0.048982628,0.014952592,-0.012503461,-0.0068552243,0.0715287,0.0059001804,0.00016982427,0.018503247,0.010903908,-0.022475762,0.007927452,0.042490672,-0.0170033,0.019124318,-0.040568866,-0.022499198,0.029272394,0.060888454,0.019440712,0.0043064873,-0.012948757,-0.011847234,-0.05193565,0.041928194,-0.022686692,0.032108232,-0.04656865,0.00484846,0.015726002,-0.025920952,-0.0104996255,0.02409289,-0.011067965,-0.017999358,-0.07190369,-0.0054695318,0.0012040586,0.0016376369,0.050763816,-0.0038201762,-0.00059983216,-0.0049832207,-0.027069347,0.0020140884,-0.045021832,0.023096833,-0.022956213,-0.023284325,0.04138915,0.011788642,-0.0553574,-0.029506762,-0.033139445,0.026999038,-0.039397035,-0.03147544,-0.038600188,-0.034405023,-0.04047512,-0.047342062,-0.084559485,-0.016569722,0.02817087,0.038248636,-0.026530305,-0.0046961214,0.018936826,0.009181313,0.08343453,-0.042256307,-0.047623303,-0.021303928,0.013651857,-0.0014530732,-0.00660328,0.0085309455,0.0011784248,-0.026155317,-0.06806008,0.020260997,0.008525087,-0.019979756,-0.007405986,-0.017600935,0.015386171,0.015409607,-0.0051677846,-0.063700855,-0.042279743,-0.034123782,0.07616916,-0.010651964,0.017764991,-0.01953446,-0.020260997,-0.021807816,-0.05095131,-0.063278995,0.020952377,-0.019862574,-0.017530626,-0.014050281,-0.024913175,-0.024139764,-0.019932883,-0.0129956305,-0.015655693,-0.024467878,0.026577178,-0.02347182,0.029131774,-0.021046124,0.042982843,0.033116005,-0.0304911,0.02213593,-0.02943645,0.031381693,-0.0041980925,-0.0016727919,-0.019698517,0.0032078936,-0.035295617,0.0066149984,0.036162775,-0.057794817,-0.03724086,-0.028452111,0.031569187,-0.021233618,0.008243847,-0.0032840627,-0.030280171,0.0065446887,-0.003738148,-0.03262384,-0.023296045,0.033186316,-0.02199531,-0.031780116,-0.013065941,0.016218172,0.048092037,-0.019147756,0.016534567,-0.031780116,0.0044881213,0.06543517,0.005736124,0.04567806,-0.007189197,-0.028334927,-0.008583679,0.015819749,0.012397995,-0.002944231,0.012538616,-0.00976723,-0.0034100348,-0.017870456,-0.036631506,-0.016194735,0.017390005,0.021104716,0.032014485,0.006210716,0.012058164,-0.044154678,0.024210075,0.043545324,0.01897198,-0.0064978153,-0.019499306,0.0024139765,-0.028920844,0.011366783,-0.006661872,0.047131132,0.015022902,-0.0099605825,0.01082188,0.025077231,-0.04982635,0.013675294,0.0043035573,-0.023038242,-0.025452217,-0.014624478,-0.06848194,0.03773303,0.024889737,-0.0184095,0.006427505,0.010599231,-0.01658144,-0.016804088,-0.033420682,0.06252902,0.044342168,0.00263516,0.0038524019,-0.03428784,-0.020741448,0.032483216,-0.0029618086,0.0011278895,-0.0011535233,0.0007433817,-0.030045804,-0.017811865,0.013019067,0.0078161275,-0.00027208502,0.007646212,0.0007085929,-0.046263974,-0.004060402,0.038061142,0.08849685,0.047834232,0.055076163,-0.010025034,0.020471927,-0.043264084,-0.036256522,0.0054343767,0.052685622,-0.08301266,-0.0047576427,-0.022042183,0.0006749027,0.004203952,-0.0075173103,-0.031287946,-0.03056141,0.05854479,0.020671139,-0.03379567,-0.00025432443,-0.004470544,0.015690846,0.028358364,-0.034475334,0.0067146043,-0.010446893,0.032764457,-0.061544683,0.041811008,-0.017612653,-0.013546392,-0.0347097,0.025170978,-0.04497496,-0.022077339,-0.041365713,-0.011097261,-0.014061999,-0.021092998,-0.007628634,0.025170978,0.05845104,0.008700862,0.016464258,0.052451257,0.034686264,0.035529982,0.021233618,0.0055808555,0.0333035,-0.021046124,0.015186959,0.018948544,0.009609032,0.041998502,-0.0016361722,0.014202619,0.039373595,-0.006878661,0.0028065406,0.007763395,-0.03478001,-0.020050067,0.0155971,0.04441248,0.032928515,0.043967184,0.01180622,0.027374024,0.03909236,0.019229783,0.019018853,-0.06918503,-0.041154783,-0.026131881,0.006937253,0.0347097,0.028194308,0.07326301,0.0056658136,-0.02859273,0.00933951,0.021702351,0.0009953259,-0.0065681254,-0.0077751135,0.011220303,-0.013077659,0.0226281,0.0034451897,-0.046006173,-0.033936292,-0.040217318,-0.011565994,-0.0047576427,-0.030819215,-0.021608604,-0.014741662,-0.029389577,-0.04202194,-0.005361137,-0.032366034,-0.020928942,-0.010710556,-0.013159688,0.016804088,-0.058685407,-0.013194842,-0.006204857,-0.06093533,0.007646212,0.0139799705,0.018350909,-0.034264404,-0.027655264,0.0068610837,-0.0022089055,-0.014530732,-0.02655374,-0.00058115605,0.020928942,0.010915627,0.015011184,-0.025452217,0.05924789,0.005402151,-0.028663041,-0.042139124,-0.0139799705,0.022393733,0.040006388,-0.011987854,-0.054841794,0.03731117,-0.04230318,0.015901776,0.017038455,-0.004154149,0.005952913,-0.008249706,0.004417811,-0.010353147,-0.01145467,0.0637946,0.05376371,0.03513156,-0.004868967,0.00414536,-0.01222222,-0.013663575,0.018632147,0.048045162,-0.008021198,0.027374024,-0.02957707,0.0077165216,0.00597342,0.0017811866,-0.0020565672,-0.018257162,-0.0007946494,0.021526577,0.0075173103,-0.020120377,0.008144241,0.025311599,-0.06852881,0.027491208,0.017378287,-0.03449877,-0.044646844,-0.002022877,-0.04312346,0.03885799,-0.056201123,0.05699797,-0.038623624,0.03358474,-0.009263341,-0.028334927,-0.007646212,0.036983058,0.008730157,0.017905612,-0.0011762276,0.02226483,-0.030186424,0.015561946,0.018421218,-0.006995844,0.008378607,-0.0175775,-0.0037235,-0.037287734,-0.05741983,0.0043885154,0.0017811866,-0.0124565875,-0.0076755076,0.008120804,-0.013288589,-0.0009543117,0.031241074,0.014413549,0.046053044,0.016710341,0.04363907,0.0055544893,0.009116863,-0.005964631,0.0033192176,-0.04532651,0.009122722,-0.01131405,-0.025920952,-0.038834553,0.030373918,0.017671244,-0.052216887,0.009995737,0.006661872,-0.0060583777,0.010698837,-0.040170442,-0.035998717,-0.05099818,-0.12430807,-0.014530732,-0.009269201,0.030537974,0.013030785,0.021397674,-0.009386384,-0.020260997,0.0827783,0.025124105,-0.0038318946,0.025030358,-0.05193565,0.002810935,-0.01285501,0.01721423,-0.011501543,0.0006540294,-0.05999786,-0.022581227,-0.0016464257,-0.014366675,-0.015163522,0.027303714,0.007857142,-0.03070203,0.044787467,0.026741235,-0.02353041,-0.020471927,0.004136571,-0.017999358,0.028920844,-0.013007348,-0.028991153,-0.0033543727,-0.00025212724,-0.00047825443,0.037615847,-0.02493661,0.04403749,0.0012567912,-0.043685943,0.016358793,0.05559177,-0.012526897,-0.005235165,0.050154462,-0.0058005746,-0.02129221,-0.025944388,0.0025633853,-0.021046124,-0.009298497,-0.009673484,0.010194949,0.0028446252,-0.048092037,0.04624054,-0.028498985,-0.004912911,0.017718118,-0.029553633,-0.028663041,0.054373063,0.002515047,0.02255779,-0.04335783,-0.034545645,-0.015210396,0.012151911,-0.007429423,0.0062634484,0.011882389,-0.018175133,0.022440607,-0.031100454,0.018538402,0.019065727,0.019194629,0.012937039,-0.019194629,-0.0016976934,0.014647915,0.00076535356,-0.010710556,0.040287625,-0.024116328,0.0022543143,0.017167358,0.02571002,0.012702672,-0.0085309455,-0.024303822,0.010218386,0.01124374,0.06777883,0.016323637,0.000867889,-0.004420741,0.006427505,0.014671352,0.005542771,-0.0028973576,-0.018151697,-0.014952592,-0.01482369,-0.026858417,0.009860977,0.00033598655,0.0014354957,-0.012444869,0.042396925,0.04940449,0.031311385,0.0025619203,0.01918291,0.006070096,-0.0037469368,0.018913388,-0.02852242,-0.013229997,0.01953446,-0.007411845,-0.017589217,-0.035670605,0.008929369,0.0013900872,0.028358364,0.035928406,0.00786886,-0.021186745,-0.016124425,-0.015819749,-0.027631827,0.005328912,-0.030608283,-0.02479599,0.013101095,0.037686158,-0.008724298,-0.021163309,0.012163629,-0.004101416,0.0059763496,0.019147756,0.038389258,-0.0553574,0.034311276,0.012210502,-0.006339618,0.0396314,0.004280121,0.033959728,0.038201764,0.032553528,-0.008689144,0.015936932,-0.024678808,0.018245444,0.00007026422,-0.008349312,-0.026366247,0.01735485,-0.027655264,0.026319375,0.034733135,-0.026319375,0.0069313934,-0.013159688,-0.00082174805,-0.02220624,-0.029155212,-0.020214124,-0.010903908,-0.0085309455,-0.019803982,0.018128261,-0.013687012,-0.005284968,0.017050173,-0.016007243,-0.01194098,-0.0375221,-0.010640246,-0.019522741,-0.025311599,-0.014858846,0.0073532537,-0.04145946,-0.012526897,-0.04544369,0.0045555015,-0.053857457,0.019276656,0.0065505477,0.0035858096,0.0125503335,-0.020483645,0.0011051852,-0.015116649,-0.0033250768,0.0340066,-0.012913602,0.023518693,-0.0057654195,-0.0027435545,0.010898049,-0.009796525,-0.015784593,0.020917224,0.007329817,-0.0361159,-0.02929583,0.026459994,0.01819857,-0.016171299,0.024561625,0.055544894,0.009409821,-0.008595397,0.002276286,-0.034170657,0.0017577498,0.012175348,0.0032635555,-0.0051267706,0.0061814203,-0.010628527,0.002664456,-0.005311334,0.023143707,-0.036209647,-0.024421005,-0.001497017,0.0014596648,0.0044558956,-0.009187172,-0.0074587185,0.00850751,-0.00009402131,0.021022689,0.023026522,0.003612176,0.019018853,-0.017460315,0.0122808125,-0.017647808,-0.005645307,0.021678915,0.0037703735,-0.005387503,-0.006984126,-0.028358364,-0.019311812,0.022464043,0.0155971,-0.024256948,0.042889096,-0.03494407,0.009819962,-0.0016434961,0.021983592,0.0022616382,0.009638328,0.02852242,0.025780331,0.029530197,0.0026512726,-0.0036004577,0.01883136,-0.008284861,0.0052087987,-0.013265152,0.006679449,-0.025780331,0.00632204,-0.042771913,0.039818894,0.0344519,-0.020014912,-0.019862574,0.046287414,0.004104346,0.014952592,-0.004370938,-0.0019716094,-0.024374131,-0.023846807,0.0030584848,-0.0008964524,-0.020155532,0.036162775,-0.014401831,-0.010792584,-0.017870456,-0.012151911,0.024350695,-0.022956213,-0.049357615,0.022077339,-0.04188132,0.014483859,0.007230211,0.00498615,-0.0073180986,-0.014413549,0.037990835,-0.023366354,0.0043738675,-0.025241287,-0.004280121,-0.04518589,-0.011571853,-0.010587513,0.015222114,-0.015362734,-0.0059997863,0.00927506,-0.0023158353,-0.09027803,-0.042818785,0.01545648,0.017366568,-0.017788429,0.0007239732,0.02396399,-0.0199446,0.04392031,-0.019206347,-0.015374452,0.002698146,0.010347287,-0.028077124,-0.00089132565,-0.0069313934,0.027725574,0.0060466593,0.01644082,-0.007113028,-0.01749547,-0.028475547,0.013511237,0.028827097,0.010810162,0.005495898,-0.017518906,0.0018104824,0.018737614,0.013464364,0.0058240113,-0.001082481,0.0018163415,0.017554061,0.05418557,0.017460315,0.013288589,-0.0061872792,0.015374452,-0.025452217,-0.0062634484,-0.047951415,-0.029459888,-0.0027171883,0.004195163,-0.002592681,0.008929369,0.012187066,-0.041998502,0.009585596,0.008308298,0.0062634484,-0.01496431,0.013253434,0.021409392,-0.008911791,-0.03576435,0.014718225,0.005686321,-0.034053475,-0.006943112,0.0042244587,0.02396399,0.016768934,-0.0011483965,-0.008636411,-0.0050242348,-0.005794715,-0.028545858,-0.025827205,0.023307763,0.0013886223,0.058216676,0.059622876,0.0017797217,-0.00093014265,-0.013112814,-0.033701923,0.031147327,-0.004842601,0.029717691,-0.020530518,0.050810687,0.04026419,0.0042332476,-0.0104937665,-0.010435175,-0.023928834,0.027209967,0.04497496,0.04523276,-0.030748904,0.025569402,0.0055339825,0.005528123,-0.01763609,-0.044178113,0.022217957,0.05418557,-0.009614891,-0.0023290184,0.0030204002,0.0061579836,0.017120484,-0.03979546,0.008132523,-0.029905183,0.006286885,-0.006638435,0.00016945807,0.004344572,-0.008542664,-0.03979546,-0.019136036,-0.039115794,-0.0019218065,0.020694574,0.014917437,0.013253434,-0.012397995,0.06041972,0.016874399,-0.004678544,-0.02382337,0.004886545,-0.023495257,0.0069606896,-0.008097367,-0.023331199,0.0015497494,0.006286885,0.03688931,0.014026844,-0.03105358,0.032061357,-0.025381908,0.05165441,-0.0015204536,-0.070731856,0.007681367,0.0026585967,-0.0030174705,0.009720356,-0.035108123,-0.017343132,0.020706294,-0.03970171,0.023905398,0.00087228336,-0.010212527,0.00758762,0.029905183,-0.059622876,0.0049832207,0.026319375,0.0382252,-0.01060509,-0.01847981,-0.0567636,0.05601363,-0.0010524527,0.011993713,0.011442952,0.014214337,0.018468091,-0.016956426,-0.021608604,0.007329817,-0.03192074,-0.0071481825,-0.024983484,-0.007159901,0.03773303,-0.001043664,0.025522528,0.0057742083,0.009398103,-0.012151911,-0.0028241181,-0.0071481825,-0.025592837,0.021714069,-0.015550227,-0.0023011875,0.03323319,-0.020917224,0.03667838,-0.03857675,-0.02199531,-0.013499519,0.009286778,-0.009175454,-0.009023116,-0.038201764,-0.03569404,0.009175454,0.013511237,-0.0005009587,-0.019522741,-0.012620644,0.00235392,-0.0070309993,0.003401246,-0.018139979,-0.011155852,-0.009450835,-0.017132202,0.0074997325,0.017472034,0.032342598,-0.0055134753,-0.018397782,0.011747628,0.045748368,-0.009568018,0.04544369,-0.009181313,0.025592837,-0.01693299,-0.01855012,0.0002742822,-0.013347181,0.00088400167,0.02317886,-0.02571002,-0.026295938,-0.011882389,-0.017800147,-0.008601256,0.011753487,-0.0036912747,-0.023143707,0.006146265,-0.006667731,0.021714069,-0.0022045113,-0.019780545,-0.026155317,0.021878127,0.025475655,0.051982522,0.02002663,-0.0021063702,-0.008689144,-0.020272715,-0.02732715,0.009351229,0.0009806779,-0.010622668,-0.026670923,0.015046339,-0.0042625433,0.022100775,-0.03192074,0.0052878973,0.030420791,0.009913709,-0.0026161177,0.0032694147,-0.02276872,0.029155212,0.009538722,0.019839136,-0.048045162,0.000017051088,-0.0035916688,-0.023436666,0.021655478,0.041764136,0.050060716,0.01622989,0.009532863,0.0070661544,0.019651644,-0.009679343,0.03724086,-0.018655585,0.028123997,0.027655264,0.004827953,-0.045279637,-0.011794502,-0.016487693,0.013792478,-0.004160008,0.010212527,-0.028709915,0.026178755,0.024608498,0.025967825,0.021327365,-0.012257376,0.002992569,-0.014226056,-0.0029295832,-0.004904122,-0.017296258,0.0055486304,0.014343238,0.028498985,0.014073717,0.010001597,-0.014202619,0.01631192,0.006948971,0.043873437,0.028077124,-0.012339404,0.055263653,-0.011009373,-0.013429209,-0.0032225414,-0.00028709913,-0.059201013,0.019030571,0.008741876,0.032342598,-0.02396399,-0.007652071,-0.009790666,-0.0012223686,-0.0049568545,0.004403163,0.07349738,0.016569722,-0.005088686,0.01032385,-0.032506652,0.018643867,-0.021339083,-0.02283903,-0.02992862,0.0006042265,0.0032166822,-0.019428995,-0.0013981435,-0.06763821,0.06820069,-0.010306274,0.0038465427,-0.02065942,0.019721953,0.025358472,0.027163094,-0.007130605,0.019335248,-0.018807923,-0.021456266,0.011396078,0.030092677,0.05521678,-0.017132202,-0.008384467,-0.013593266,0.022124212,0.010411738,0.03913923,0.024866302,-0.001219439,-0.025569402,-0.023518693,0.001841243,0.03035048,-0.014144027,-0.01089219,0.0077751135,-0.010089484,-0.029506762,0.014624478,0.015890058,0.006702886,-0.026952164,-0.00044236705,0.02571002,-0.027725574,-0.014073717,0.0031434426,0.015936932,0.011073824,-0.008384467,-0.016839243,0.021233618,0.042748477,0.041623518,-0.053623088,0.0045789382,-0.00456722,0.010845317,0.019780545,-0.011290614,-0.009866836,-0.0068493653,-0.013675294,-0.059669748,-0.0022220889,-0.037053365,-0.030186424,0.018046232,0.022921057,-0.02606157,-0.033631615,0.0347097,0.0061755613,0.018386064,0.017940767,-0.0017753274,0.009069989,0.021479703,-0.023940552,0.02178438,0.02087035,0.048748262,-0.014425267,0.009796525,0.028147435,0.036912747,0.02283903,-0.002009694,0.004742995,0.0048982627,0.021737507,0.03913923,-0.018608712,0.042818785,-0.0073415353,0.022534354,-0.015268987,-0.03424097,0.012491742,0.0044002337,0.01805795,0.0011234952,0.0017606794,-0.0040926277,-0.0051414184,-0.015257268,0.030397354,-0.042982843,0.005944124,0.041107908,-0.007089591,0.016042396,0.029553633,0.016159581,0.037264295,-0.005053531,-0.018796206,-0.022546072,0.006948971,0.019733671,0.012761264,-0.044717155,-0.0017020878,0.024702245,-0.00009045088,-0.00013540167,-0.042256307,-0.0070251403,0.0011015233,-0.0022733565,0.0048924037,-0.041787572,0.012655799,-0.049732603,-0.008595397,-0.01383935,-0.024983484,0.017718118,-0.013335462,-0.028920844,-0.008484073,0.006896239,0.00016662004,0.0035301477,0.04160008,0.0043064873,0.044834338,-0.001398876,0.006245871,-0.011126556,0.009966441,0.008864919,0.009784807,-0.017296258,0.010786725,-0.010798443,0.008320016,-0.0047898684,-0.010710556,-0.01819857,-0.025569402,-0.01721423,0.03618621,-0.026295938,0.04846702,-0.015421325,0.012105037,0.018843079,-0.020319588,0.00498615,0.010511344,0.013007348,0.026038134,-0.0057156165,0.0163002,-0.012421432,-0.0050740377,-0.00064817024,0.030889524,-0.031733245,0.0013073265,-0.010482049,-0.029694254,-0.035740912,0.014296365,-0.018585276,0.015515072,-0.0011440022,0.002831442,0.0175775,0.007511451,-0.02094066,-0.008882496,0.00088693126,0.028147435,-0.03070203,0.012362841,0.023389792,-0.029272394,0.008284861,-0.0018734684,-0.008454776,-0.026717797,-0.009614891,0.026085008,0.024842864,-0.0035360067,-0.020565674,-0.003289922,0.015351015,-0.0035506547,-0.06815382,-0.0049832207,-0.008138382,-0.004968573,-0.0064919563,-0.009831681,-0.010698837,-0.012069882,0.01855012,-0.011343346,0.02234686,0.041225094,-0.015655693,0.013065941,0.00864227,0.016640032,0.006070096,-0.014765099,0.015034621,0.005703898,-0.010200808,0.001184284,-0.023483537,0.018784486,0.0030233297,0.011642163,0.02129221,0.036420576,0.003380739,-0.0010927345,0.00023711313,-0.038342383,-0.011003514,0.009984019,0.03773303,0.0072184927,-0.012269094,0.021526577,-0.010933204,-0.025592837,-0.024022581,-0.036444012,0.021866407,0.0065857028,-0.01791733,-0.0030233297,-0.0104058795,-0.015351015,0.014354957,-0.013581547,-0.008747735,-0.028827097,0.025100667,-0.041998502,0.014683071,0.01011878,0.028616168,0.013640139,0.021444548,0.04209225,0.036701817,-0.011618727,-0.03913923,-0.03794396,-0.026530305,0.031452004,0.018925106,-0.03386598,0.01180622,0.0084430585,0.03492063,0.020132095,0.003351443,0.027936503,-0.025311599,0.019792262,0.021421112,0.020542236,0.026225628,0.000045934947,-0.00330164,-0.033116005,-0.021632042,0.0148705635,-0.006351336,-0.0026512726,-0.035225306,-0.026014697,-0.023506975,0.011062106,0.017296258,-0.0067087454,0.0039402894,0.017811865,-0.01665175,-0.012433151,0.012843292,-0.022299986,-0.015643973,-0.007048577,0.015796311,-0.016429102,-0.0006968746,-0.02156173,0.01040002,0.0088004675,-0.010775006,-0.03403004,-0.013815913,0.00709545,-0.0047605727,-0.00772824,-0.0048660375,0.007980185,0.035811223,0.003975444,0.0081501,-0.01229253,0.00037205705,0.01967508,-0.025381908,0.014530732,-0.0052234465,-0.0029398366,-0.020635983,0.019018853,0.028709915,0.003547725,-0.008396185,0.0129956305,0.018725894,0.026108444,0.012210502,0.021315647,-0.02058911,-0.019733671,0.0431469,0.055779263,0.056201123,0.0061872792,0.0122808125,0.0026966813,-0.020600827,0.005867955,-0.030373918,-0.002305582,0.020858632,0.0025619203,-0.01461276,-0.00040867683,0.022721846,0.001465524,0.008015339,0.016628314,0.018175133,0.0015058056,-0.007113028,-0.030397354,-0.016288482,0.02585064,0.020096939,0.026295938,-0.010704696,-0.035178434,0.025944388,0.0109390635,-0.04335783,0.016956426,0.0028211884,0.007230211,-0.0006426773,-0.026577178,-0.005454884,0.020366462,0.032694146,0.0026439487,-0.0028343715,0.053294975,0.019968038,-0.046498343,0.0041482896,-0.006034941,-0.037967395,-0.0071071684,0.004652178,-0.023589004,0.005897251,-0.012503461,-0.05352934,-0.017788429,0.013944816,-0.08615318,-0.0052410243,0.059716623,0.015808031,-0.050482575,-0.010153935,-0.026319375]},{"id":"guide-embeds-5","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Footer\nsetFooter() adds text at the bottom. Optional: iconURL.\n\n```javascript\nembed.setFooter({\n text: 'Powered by Fluxer.js',\n iconURL: 'https://example.com/footer-icon.png',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.025390495,0.0072965254,-0.0017651934,-0.01243592,0.013897583,-0.027842315,0.009925161,-0.0040077846,0.022431806,-0.0030854049,0.004794607,0.010750293,0.008681568,-0.0637002,0.026522104,0.010202169,-0.010208063,-0.03661229,0.024706813,0.058749408,-0.007991994,-0.007043092,-0.044062056,0.03680089,-0.00070467754,0.008563693,-0.008988046,0.042199615,0.005484182,0.010991938,0.03651799,-0.035009176,0.045146514,-0.007337782,0.0003267376,-0.016101863,0.09161324,0.010520435,-0.006306367,0.011705088,-0.0017887686,-0.012105867,0.02663998,0.009524383,-0.007897693,0.006577482,-0.011946734,0.016243314,0.023374815,0.05592038,0.039134838,-0.014062609,0.0054429253,-0.00428774,-0.045971647,0.026427804,-0.033641815,0.02122947,-0.02315085,-0.010078399,0.019319879,0.0072434815,0.013626467,0.012471283,-0.0075558526,0.031779375,-0.08751115,0.011145177,-0.019190216,0.013119601,0.06271004,-0.0079094805,-0.020557577,0.0021674454,-0.0021541843,0.0072670565,0.013697193,0.021370921,-0.008911427,-0.04453356,0.05323281,-0.0051010847,-0.058325052,-0.0058142347,-0.03116642,0.008263109,-0.047504034,0.00047076735,-0.07190437,-0.024494637,-0.026946457,-0.061295528,-0.08350337,-0.0013673618,0.010267002,0.028714597,-0.023304088,0.0070018354,0.021583099,-0.023869894,0.06134268,-0.061012626,-0.060729723,-0.036683016,0.029822633,-0.011074452,0.003960634,-0.003004365,-0.026144901,-0.022089966,-0.06294579,-0.012612734,-0.0056934115,0.021512372,0.029469004,-0.012942786,0.032863833,0.02423531,0.020015348,-0.04842347,-0.035551406,-0.023304088,0.031991553,0.013013513,0.011186434,0.004794607,-0.0345141,0.0023442593,-0.040714376,-0.025154741,0.023657717,-0.021889577,-0.02600345,-0.004328997,-0.010891744,0.009919267,-0.023952406,0.023410177,-0.030105535,-0.025791273,0.02482469,-0.02763014,0.022537895,-0.012129442,0.0018801225,0.014486963,-0.018966252,0.015712874,-0.036777318,-0.017704979,-0.0022499585,-0.005660996,-0.03496203,0.0054930225,-0.029586881,0.009141285,0.008563693,-0.043849878,-0.0035922716,-0.025861999,-0.031284295,-0.013437866,0.012836698,0.024376761,-0.027394386,-0.0075322776,-0.012648096,-0.043779153,-0.05563748,0.014781653,0.022974037,-0.026663555,-0.009341675,-0.010160913,0.015771812,0.008092188,-0.030930666,-0.015983988,0.0037160416,0.014428024,0.011616682,0.033736117,0.008086295,0.0014086184,-0.0072670565,0.0026787326,0.030859942,0.006618738,-0.0057022525,-0.0036394221,-0.039087687,-0.011103921,-0.02654568,-0.0022278568,-0.020687241,0.044297807,0.015642148,-0.009618683,0.021453435,-0.020970143,0.0055107037,0.04842347,0.021465223,0.010685461,-0.021512372,0.011039089,-0.06280434,0.0028525996,-0.003757298,0.041940287,0.012530221,0.0016031138,-0.0011271894,-0.0021350293,-0.039087687,0.03927629,0.03161435,0.0053103147,-0.016184377,-0.0060882964,-0.039535616,0.029516155,0.05766495,-0.02895035,-0.0050480403,0.016620519,-0.040219296,0.011993885,-0.044957913,0.08553084,0.03583431,-0.00032471158,0.010320045,-0.012659884,-0.012005673,0.04090298,-0.03878121,-0.007048986,0.015170643,-0.0057847654,-0.041704535,-0.027205786,-0.016113652,-0.007844649,-0.026569255,-0.0077090915,-0.0048152353,-0.037578873,0.023174426,0.07482769,0.07284738,0.024400335,0.03234518,-0.042176038,0.034797,-0.049177874,-0.009960524,0.016349403,0.021441648,-0.073318884,-0.022207841,-0.01386222,-0.0130253,0.011864222,0.03986567,-0.034820575,-0.018011456,0.018223632,0.012565584,-0.036046486,0.03519778,-0.027087908,0.021288408,0.033453215,-0.0068485965,0.012105867,-0.03797965,0.018765861,-0.05214835,-0.0009452183,-0.0012524327,-0.042741843,-0.039205562,-0.0005352308,-0.024258884,-0.025744122,-0.06120123,0.0005654365,0.02777159,-0.0009444816,-0.016549792,0.017021297,0.05549603,-0.015182431,-0.0021880735,0.033217464,0.054034367,0.010567585,0.030647764,-0.0030412013,0.0024768698,-0.0043083685,-0.037673175,-0.015064555,0.014310149,0.004685572,-0.008693356,0.022337506,0.019838534,-0.034844153,-0.03067134,-0.0037219352,-0.0046914653,-0.012365194,0.006483181,0.036541566,0.068085186,0.035763584,-0.0051364475,-0.026828581,0.050262336,0.016207952,0.031142844,-0.054222967,-0.040502198,-0.033641815,0.005722881,0.05195975,0.022172479,0.045500144,0.042671118,-0.008887852,0.027252935,0.023810955,0.013697193,-0.005778872,-0.017657828,-0.012011566,-0.006630526,0.031472895,-0.0076914104,-0.015854325,0.012270894,-0.030011235,0.008740507,-0.029822633,-0.06044682,0.009748347,0.01504098,-0.024801115,-0.029351128,-0.0073908265,0.004776926,-0.039299864,0.041515935,-0.017893579,0.0072316937,-0.052949905,-0.009736559,-0.0021202948,-0.07845828,0.0016001669,-0.015748236,0.01803503,-0.008092188,-0.017056659,-0.024942566,0.018836588,0.009942842,0.005882013,-0.0020819851,0.04132733,0.035127055,0.036447264,-0.05643904,0.046655327,0.038121104,-0.010390771,-0.02358699,-0.017386712,0.025861999,-0.0049773147,-0.026805006,-0.04580662,0.06879245,-0.020239312,0.018270783,0.01759889,-0.009872116,0.0086226305,-0.011292523,-0.0129309995,-0.0048181824,-0.039205562,0.091943294,0.042788994,0.023268726,-0.033217464,-0.004113873,-0.013296415,-0.001479344,-0.00810987,0.024306035,-0.025720548,0.011451655,-0.036895193,0.009919267,0.013673618,-0.017457439,-0.016184377,0.0053338897,-0.017174536,0.04045505,0.009147179,-0.04762191,0.023752017,0.018223632,-0.076902315,0.020062499,0.01666767,-0.03401902,-0.03632939,0.023917044,-0.045429416,0.06134268,-0.024164584,0.05926806,-0.006123659,-0.016585156,-0.03597576,-0.017481014,-0.007479233,0.03868691,0.036211513,0.006748402,0.020416126,0.0059291637,-0.032415904,-0.0020245207,0.015948625,-0.0072316937,0.016031139,0.0028658607,-0.016243314,-0.06294579,-0.027158635,-0.019178428,0.007821074,-0.024376761,-0.008475286,-0.017115599,0.018754074,0.0075676404,0.022726497,0.014428024,0.024400335,0.046820354,0.02113517,0.038757633,-0.033382487,0.04399133,0.016820908,-0.024188159,0.02953973,-0.03378327,-0.02487184,-0.029657606,0.032062277,0.027889466,-0.038804784,0.0024945512,-0.008168808,0.008080401,0.027417962,-0.034631975,-0.067990884,-0.016538005,-0.088076964,-0.028054493,0.012400557,-0.00050539343,-0.01784643,-0.022384657,-0.037460998,-0.055967532,0.079542734,0.053657163,0.013119601,0.03234518,-0.052525554,0.0069900476,-0.009182542,0.008516543,-0.011321992,-0.023669504,-0.015453546,-0.0150527675,0.00091943296,-0.008298472,-0.0089173205,0.01617259,0.018907314,-0.053657163,0.052336954,0.06115408,-0.026309928,-0.032250877,0.023480903,-0.026805006,0.023917044,0.014369086,-0.012247318,0.0062415353,0.004001891,0.0027509315,0.045099363,-0.05078099,0.04684393,-0.0028511262,-0.070065506,-0.019378817,0.041916713,0.01877765,-0.0012325412,0.03210943,-0.012070504,-0.042388216,-0.023822743,-0.0037661388,-0.021924939,0.011445762,-0.01666767,-0.010986045,0.018046819,-0.026144901,0.028266668,-0.04856492,0.008198277,0.01331999,-0.050262336,-0.01764604,0.065491915,0.006630526,0.013661831,-0.042388216,-0.01331999,-0.02737081,0.006282792,-0.0043967753,-0.012223743,-0.0008730193,-0.042576816,0.030199835,-0.0011014041,0.0051010847,0.031567197,0.024942566,-0.0004928691,-0.009105923,0.0033476788,-0.009294524,-0.024353186,-0.012153017,0.0694997,-0.029421855,0.017233474,-0.0018079234,0.04748046,0.018730499,-0.0055224914,-0.018978039,-0.0029247988,-0.008086295,0.061012626,0.007821074,0.026663555,-0.009147179,-0.0056639425,0.014864166,0.023044761,0.0095361695,-0.029233253,0.0052955803,-0.0037130946,-0.026239201,0.016184377,0.013626467,0.014251211,-0.01572466,0.033688966,0.050309483,0.030954242,-0.010579373,0.017481014,0.005834863,-0.0055519603,0.0012450655,-0.03647084,0.012919212,0.027983766,-0.011604894,-0.055826083,-0.021429861,-0.0027155688,0.007160968,0.019084128,0.016479068,0.0028157635,-0.015076343,-0.0021630249,-0.017976092,-0.024353186,-0.0042759525,-0.03515063,-0.021323772,-0.02290331,0.013980095,0.0026860998,-0.010402558,0.019685294,-0.009766028,0.024376761,0.033146735,-0.017787492,-0.033924717,0.024188159,0.004561802,0.006017571,0.020840479,-0.016384767,0.048046265,0.03597576,0.003197387,-0.006329942,0.021347348,-0.03170865,-0.0041168197,0.005009731,-0.0007603003,-0.020463277,0.019013401,-0.008115764,0.030930666,0.009377037,-0.004225855,0.024588937,-0.005213067,0.027559413,-0.0044851825,0.009318099,0.013237476,-0.00039856829,-0.0046325275,-0.00030942453,0.028573146,0.0002451453,-0.009595108,0.026757857,-0.034584824,-0.022514319,-0.038710482,0.003288741,-0.0069782604,-0.0044616074,-0.019237366,0.012954574,-0.025626246,-0.0029866835,-0.023893468,0.009813178,-0.062851496,-0.0032062277,0.0071373926,0.020086074,0.023598779,-0.0051128725,0.010402558,-0.047574762,-0.013826857,0.031826526,-0.038026802,0.014581263,-0.019897472,-0.025932724,-0.0026713652,-0.04604237,0.00021972826,0.03135502,0.023386601,-0.040973704,-0.0056668897,0.034136895,0.02659283,-0.028172368,-0.0058112876,0.042199615,0.010231638,-0.014911316,-0.0021615515,-0.020463277,0.007838755,-0.006954685,-0.003344732,-0.020486852,-0.006630526,-0.023799168,-0.011976203,0.008068614,0.013508592,-0.019744232,-0.025909148,0.0068132337,0.014428024,-0.007603003,-0.03208585,-0.00034883933,0.009724772,-0.01980317,0.035362806,-0.0056374203,0.00082586886,-0.0047798725,0.0033683071,0.0089644715,-0.007915375,0.0037219352,0.0013776759,0.0041669174,0.009418294,-0.010355408,-0.008050932,-0.0042170146,0.013296415,0.035574984,-0.022832585,0.02663998,-0.049979433,0.008428135,-0.009253267,0.0056020576,-0.02550837,0.032227304,0.055826083,0.007962525,0.0049596336,-0.0056167925,0.017033085,-0.0094595505,-0.012966362,-0.031991553,0.0055048103,0.007066667,-0.02147701,0.009094135,-0.011386823,0.034349073,0.02904465,-0.014486963,-0.012318044,0.0015662776,0.0075028087,0.04153951,0.033901144,-0.0021807062,-0.02349269,-0.02432961,-0.039252713,0.014039034,-0.0148052275,0.037673175,-0.0076501537,0.011787602,-0.0047504036,-0.012907424,0.040384322,-0.016384767,-0.041374482,0.0018388659,-0.028030917,0.0062238537,0.014428024,0.012612734,0.009424187,0.01853011,0.037225246,-0.04054935,0.018907314,-0.0027096749,-0.012518433,-0.06879245,-0.016585156,-0.03284026,0.015606785,-0.0067896587,-0.007432083,0.026852157,-0.014310149,-0.08935002,0.00008628893,0.007337782,0.024942566,-0.017928943,-0.0057995003,0.00023427859,-0.013885795,0.03651799,0.0052720048,-0.029822633,0.029775482,0.0031914932,-0.01558321,0.0016045873,-0.003727829,0.053657163,-0.0008855436,0.043826304,-0.042859722,-0.036895193,-0.021099808,0.011587213,0.0036541566,-0.01390937,-0.002578538,-0.0025564362,-0.0077326666,0.03378327,0.00032194887,0.002342786,0.028148793,0.014463387,0.0032386435,0.062097088,0.0010299417,0.0058731725,-0.028785324,-0.020840479,0.0059055886,0.017775703,-0.025296193,-0.048093416,0.017799279,0.0040402007,0.009365249,0.010980151,0.011109815,-0.03583431,0.009477232,0.028172368,-0.012483071,-0.039205562,0.011044983,0.007874118,-0.006724827,-0.008616737,0.012872061,0.0101727005,-0.019095914,0.0060470398,0.0016399501,-0.010485072,0.003162024,0.008693356,-0.029563306,-0.028478846,-0.010685461,-0.01440445,-0.0024370868,0.030246986,0.003960634,0.042435367,0.036753744,-0.005422297,0.0057523497,-0.003789714,-0.033665393,0.02831382,-0.006335836,0.023504479,0.007885906,0.01331999,0.04856492,0.0015353351,-0.005392828,-0.010738505,-0.0079566315,0.040124997,0.008787657,0.07746812,-0.03234518,0.00857548,0.0060765087,-0.0026698918,-0.0056668897,-0.011127496,-0.0017092023,0.050592385,-0.021712763,0.014828803,0.01327284,-0.012989937,0.0063829864,-0.019909259,0.022797221,-0.036895193,0.002971949,-0.011351461,-0.019697083,-0.014027246,-0.024494637,-0.008516543,-0.009783709,-0.04462786,0.0079566315,0.0056993053,0.04227034,0.013390715,-0.008593162,0.038616184,0.0260506,0.0054871286,-0.021406285,-0.01469914,-0.0004357729,-0.019166641,-0.014180485,-0.0047474564,0.012777761,0.014145122,0.051771145,-0.010396665,-0.013885795,0.011003726,-0.038333282,0.0036571035,-0.0021556576,-0.06440745,0.02727651,-0.004025466,-0.030294137,0.03519778,-0.025744122,0.021712763,0.0016871005,-0.0019979984,0.016054714,-0.009995886,-0.046655327,0.011964416,0.0037130946,-0.0580893,-0.0040195724,0.022502532,0.04281257,-0.010237532,-0.025767697,-0.016644094,0.06304009,-0.0016605784,0.047456887,0.008752294,-0.037578873,0.024046708,-0.019425968,-0.03823898,0.017964305,0.0016841536,0.008475286,-0.0041050324,0.019979985,0.03809753,0.0019199057,0.04340195,0.027842315,0.031001393,0.0049566864,-0.0073554637,-0.012542008,-0.0023531,0.034914877,-0.016679456,0.021323772,0.06497326,-0.003813289,0.03081279,-0.001538282,-0.0079861,-0.0006295316,0.016962359,-0.007614791,-0.020475063,-0.026333502,-0.026970033,0.0014830277,-0.009512595,0.024966141,0.004320156,-0.006866278,0.004885961,0.0023442593,0.01651443,-0.01690342,-0.013131388,-0.012153017,-0.026474953,0.01390937,0.024141008,0.025979875,-0.002160078,-0.025979875,-0.011027302,0.050168034,0.0069664726,0.010909425,-0.01572466,0.020922992,0.010608842,0.016255103,0.018647986,-0.008923215,0.037130944,-0.0044174036,-0.000030067593,-0.032745957,0.0017268837,-0.01651443,0.00017681402,0.031520046,0.011357354,-0.008887852,0.005796553,-0.00710203,0.03420762,-0.01504098,-0.030765641,-0.023139061,0.011510593,0.028266668,0.021370921,0.035504255,-0.0013062137,0.0026625246,-0.020156799,-0.0065598004,0.023304088,-0.012648096,-0.016278679,0.0051423414,0.017811066,-0.007314207,0.021571312,-0.033170313,0.0028201838,0.014651989,-0.019909259,-0.010685461,0.03760245,-0.0030706702,0.006754296,0.03288741,-0.0011618155,-0.040266447,-0.0014130388,0.025673397,-0.015642148,-0.0021836532,0.03302886,0.04113873,-0.01617259,0.014628414,0.013237476,0.02432961,-0.015194219,0.031873677,0.0004858702,0.027795166,0.011245372,-0.007826967,-0.03248663,-0.0041286075,0.044910762,-0.00399305,-0.007343676,0.008416348,-0.015229582,-0.014651989,0.03116642,0.03899339,0.011268947,-0.0015898527,-0.010101975,-0.0130253,0.005531332,-0.020734392,0.0069959415,-0.022844372,-0.0034007232,0.019496694,-0.00087228254,0.014616626,-0.007367251,-0.0011426606,-0.008793551,0.021111595,0.030341286,-0.015665723,0.050686687,-0.001235488,0.021323772,0.007508702,-0.0123416195,-0.062851496,0.012035142,0.0087464005,0.008840702,-0.03144932,-0.020227525,0.009942842,0.011180541,-0.032274455,0.0046826247,0.06652922,0.00013242634,0.02482469,0.026993608,-0.035598557,0.030388437,-0.0014181958,0.006777871,-0.04802269,-0.009259162,-0.0039753686,-0.029115377,-0.00094006123,-0.058513656,0.033382487,-0.025814848,0.005681624,-0.028879624,0.00009669517,0.0027273563,0.01769319,0.007950737,-0.0024370868,-0.0062415353,-0.020864055,0.016773757,0.01642013,0.063134395,-0.018718712,0.0113809295,0.004629581,0.032368753,0.02668713,0.019107703,0.0017077288,0.0046325275,0.009654046,-0.044910762,-0.0033889355,0.040478624,-0.026474953,-0.0058142347,0.0016443705,0.0026846263,0.005157076,-0.00390759,0.0020495693,0.0036276344,-0.011563637,0.019944623,0.019873897,-0.03937059,-0.017858217,-0.010426134,0.0028717546,-0.007791605,0.011245372,-0.019001614,0.010956576,0.009058772,0.04729186,-0.029846208,-0.0018683348,-0.012907424,0.0025814848,0.018424021,0.0015102865,-0.052902758,-0.0017445651,-0.013249264,-0.0523841,-0.014050822,-0.012282681,-0.027842315,0.022089966,0.006359411,-0.023763806,-0.0068839593,0.019178428,0.014439812,0.00059785246,0.032415904,-0.023787381,-0.023374815,0.037838202,-0.015877899,-0.0066776765,0.012824911,0.049696527,-0.03465555,0.022608621,0.033406064,0.04208174,-0.00010452288,0.006312261,0.0035893247,0.022042815,0.023787381,0.027064335,-0.020404339,0.049932282,-0.03121357,0.0074733393,-0.003583431,-0.027087908,0.0040667225,0.004376147,0.009382931,0.010879956,0.004800501,0.008522436,0.007491021,0.0010925634,-0.012129442,-0.048517767,-0.007496915,0.008386878,-0.01862441,-0.0010910899,0.030294137,0.0070313043,0.025720548,0.006418349,-0.005033306,-0.0005753823,-0.012247318,0.01449875,0.010520435,-0.019779596,-0.008422242,0.010868168,0.011316097,0.0023015293,-0.045783047,-0.011893691,-0.011286628,-0.018730499,0.008492967,-0.028667448,0.015441759,-0.04290687,0.0053338897,0.012765973,-0.0075617465,0.049366478,-0.011021407,-0.015312095,-0.0043348907,0.036164362,0.0019758968,-0.025838424,0.036164362,-0.010927107,0.033877566,-0.0016605784,-0.003138449,0.014687352,0.015653934,0.024706813,0.016985934,0.0066835703,-0.013437866,-0.01902519,0.014345512,0.006153128,-0.0006965736,-0.018424021,0.009223798,0.0029189049,0.026616406,-0.01440445,0.044321384,-0.020769754,0.011976203,0.008616737,-0.019685294,-0.00764426,-0.018742288,0.010520435,0.035032753,0.008551905,0.0037366697,-0.011870115,-0.00781518,-0.002977843,0.027653715,-0.023551628,0.02408207,-0.0031767588,-0.026899308,0.0005370726,0.009654046,-0.026805006,0.014545901,0.021524161,-0.021253046,0.014168697,-0.009530276,-0.04005427,-0.051582545,0.0060529336,0.009176648,-0.035009176,0.013838644,0.034325495,-0.02364593,-0.0060529336,-0.010856382,0.010119656,0.010202169,-0.008634418,0.031189995,0.014864166,0.0066423137,-0.0072788442,0.0011463442,-0.01331999,-0.023752017,-0.04856492,0.005599111,-0.018930888,-0.0025741176,-0.013343565,0.007962525,0.008103976,0.0022440646,-0.007461552,0.009347568,0.015477121,0.041704535,-0.001803503,0.013213902,-0.005089297,-0.005133501,-0.019284517,0.008139339,-0.0031590774,0.017033085,-0.0072434815,0.024258884,-0.0122944685,0.023198001,-0.0025092857,-0.020015348,0.022974037,0.03420762,0.02344554,-0.01607829,0.00041367114,-0.042623967,-0.015005617,0.014593051,0.011616682,0.02668713,-0.016490854,0.044344958,-0.006872172,-0.020958357,-0.004653156,-0.052289803,0.04036075,-0.0075440654,-0.04738616,0.0049832086,0.032015126,-0.008386878,0.0011293996,-0.022349292,-0.007078455,-0.013555742,0.051723998,-0.030105535,0.00044314016,-0.011156965,0.030011235,0.00024459272,0.008840702,0.02280901,0.022585046,0.009082347,-0.024400335,-0.019178428,-0.05337426,0.017728552,0.021700975,-0.013897583,-0.0017077288,0.008139339,0.03215658,0.0066128448,-0.019202003,-0.00006653549,-0.030977817,0.019072339,0.025720548,0.021866001,0.04790481,-0.0060529336,0.011092133,-0.016926996,-0.004821129,0.003551015,-0.0044733947,0.015736448,-0.041963864,-0.015948625,-0.022054603,0.035315655,0.02197209,-0.0059910486,-0.03760245,-0.0062238537,-0.037413847,-0.024518212,0.024353186,-0.0005304421,-0.038168255,0.007756242,-0.0004239853,-0.023964195,-0.015854325,-0.0055902703,-0.022761859,0.017634252,0.0023928832,-0.0140154585,-0.030529888,0.001307687,-0.005587323,0.015453546,-0.01000178,-0.0034714488,0.034089744,0.00693111,0.014522325,0.013284627,0.01356753,0.009901585,-0.026309928,-0.012247318,-0.00070394087,-0.011286628,-0.015866112,0.031779375,-0.0007496178,-0.014864166,0.009241479,-0.0037219352,0.0017136226,0.015889687,0.019013401,0.021889577,-0.04227034,-0.026922882,0.0077149854,0.0436377,0.02831382,0.0023103699,0.0062945792,-0.022125328,-0.0013916737,0.004107979,-0.004832917,0.027488688,-0.0058761197,0.0027774537,-0.021524161,0.0030677235,0.012459495,-0.00076766755,-0.008369197,0.022773646,0.037390273,-0.027535837,-0.0022308037,0.0015456493,0.0053987214,0.035716433,0.008581374,0.013060663,-0.017799279,-0.044344958,0.0005006047,0.045099363,-0.04644315,0.04245894,0.008657994,0.02442391,0.02020395,-0.010986045,-0.01626689,0.041845985,0.03769675,0.018471172,-0.011534168,0.029351128,-0.0017033084,-0.058749408,-0.025909148,0.017363137,-0.016832696,0.018978039,-0.007603003,-0.026309928,0.02181885,0.011198222,-0.06294579,-0.013013513,-0.024848264,-0.05922091,-0.010143232,0.042152464,-0.01759889,-0.033853993,0.0026050599,-0.01631404]},{"id":"guide-embeds-6","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Timestamp\nsetTimestamp() shows a date. Omit or pass null for current time. Pass Date or number (ms) for a specific time.\n\n```javascript\nembed.setTimestamp(); // current time\nembed.setTimestamp(new Date('2026-01-01'));\nembed.setTimestamp(Date.now() - 3600000); // 1 hour ago\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.021991048,-0.017538134,0.01455129,-0.03402595,-0.0050792755,-0.002394672,0.039868347,-0.021619061,0.0014031602,-0.033303857,0.012297481,0.02040463,0.02588598,-0.075622946,-0.005161332,0.017012974,-0.059999455,-0.009813915,0.01881821,0.029977847,-0.012385008,0.015032686,-0.049933903,0.04326,-0.0008732142,-0.020623446,-0.012888286,0.07395994,-0.003016931,0.019901352,-0.015328089,-0.021159546,0.027198879,-0.0100819655,-0.012286541,-0.02003264,0.07549166,0.01947466,-0.04792079,0.022242688,0.020656267,0.027176997,0.010760296,-0.0059135132,-0.016400289,0.020601563,-0.07724219,-0.034879334,0.0056782854,0.08844559,0.008873005,-0.03643293,-0.014474705,0.028183552,-0.014069894,-0.026411138,0.0015535965,0.024266738,0.010907997,-0.0012171662,-0.0033260093,-0.014573172,0.014638817,0.035995297,0.03148768,0.003949636,-0.054747865,0.036586102,-0.040240336,0.021498712,0.014179302,0.0003774583,-0.012603825,0.0008656924,0.024660608,0.05216583,-0.018085176,0.03549202,0.0054512634,-0.0096552735,0.025142005,0.01333686,-0.08166228,0.06778932,-0.025426466,0.018107057,-0.04043727,-0.045032416,-0.003574913,0.007751571,-0.020886024,-0.020481216,-0.05150938,-0.01735214,0.03240671,-0.0065043173,-0.042931776,0.0005473829,0.0046525835,0.023960395,0.02975903,-0.06406944,-0.04949627,0.0052734753,0.009135584,0.024901306,0.004961662,0.011225281,-0.038511686,0.020229576,-0.009726389,0.0020390954,-0.03538261,0.0039031375,0.0060393326,0.0088183,-0.016772278,-0.014201184,0.030262308,-0.046476603,-0.054178942,-0.05667345,0.020886024,0.0008677438,0.02227551,-0.02068909,-0.032231655,-0.03656422,-0.043807045,-0.027286405,-0.018172702,-0.018096115,0.020590624,0.005021836,0.00520236,-0.021870699,-0.014737285,0.036104705,-0.024748135,-0.0026887064,0.028840002,-0.022242688,0.037001852,0.022330213,0.039824583,0.018577512,-0.023938514,0.021509651,0.022735024,0.017045798,-0.0112909265,0.00867607,-0.019146435,0.015984537,0.006351146,0.017166147,-0.026892535,-0.030809348,-0.04282237,0.0053309146,-0.0064222612,0.014365297,0.04989014,0.021597179,-0.06297536,0.009190288,-0.011433157,-0.050896693,-0.045076177,0.0011371615,0.03308504,-0.06577621,-0.03188155,-0.023566525,0.02160812,-0.0023618494,-0.0019269519,-0.055448074,-0.0023317623,0.021892581,-0.0058642793,0.023325829,-0.036345404,0.01428871,0.053172383,0.009928794,-0.014496586,0.007302997,0.005147656,-0.014868574,-0.032713052,0.021991048,0.018074235,0.01708956,-0.002494507,0.0060666846,-0.014048013,-0.009179348,0.07846756,-0.0266956,0.029737148,0.033347618,0.02787721,-0.035557665,-0.0035284145,-0.0076148105,0.013676025,-0.025251413,-0.041465707,0.027658394,0.030524887,0.014649758,0.0058041047,-0.022045752,-0.0075491657,0.04417903,-0.026367376,-0.052122068,-0.043719515,-0.022713142,-0.069889955,0.025295176,0.037308197,-0.01975912,-0.003429947,-0.017428726,-0.026039151,0.03269117,-0.015711017,0.05658592,-0.02160812,-0.0205578,0.011312808,-0.020163931,-0.023850987,0.049715087,-0.02722076,-0.005579818,-0.04080926,0.02387287,-0.007893802,-0.01788824,-0.037767712,0.01921208,-0.017417785,-0.015470319,0.01214431,-0.06717663,0.002156709,0.06083096,0.048489712,-0.013851078,0.023850987,-0.04148759,0.027855327,-0.031531442,-0.06621384,0.06218762,0.0060885665,-0.00493978,-0.012286541,-0.017384963,-0.03547014,-0.03975894,-0.004989014,-0.021323659,0.01001632,0.0059080427,0.053172383,-0.089583434,0.0032056603,0.0029567566,-0.013249333,-0.008036032,-0.038402278,-0.009644332,-0.049583796,0.0105907135,-0.032734934,0.009212171,-0.009863149,-0.023282064,-0.01935431,0.0085830735,0.009496632,-0.009595099,-0.007313938,0.008927709,0.016859803,-0.026586192,-0.028271079,-0.011465979,0.057855055,-0.02003264,-0.0118817305,0.04498865,0.060130745,0.016980153,0.03910249,-0.0013217878,0.013676025,-0.049189925,0.0012445182,-0.004100072,-0.0017587368,0.067964375,-0.052822277,-0.06529481,0.014037072,-0.013457209,-0.029124463,-0.04013093,-0.017056739,-0.027680274,0.037986528,0.06967114,0.07356607,0.03483557,0.015645372,-0.009387223,0.03431041,-0.020470275,0.0030716353,-0.008867535,-0.006613726,-0.042144038,-0.012702292,0.012428772,0.066432655,0.026126677,-0.026476784,-0.0015563316,0.014441882,0.037176907,0.008440843,-0.018314933,0.018358696,-0.01107758,-0.0113456305,0.027111351,-0.041640762,-0.013949545,-0.030503007,-0.019835707,0.00586975,0.009425516,-0.06617008,-0.010339075,0.003079841,-0.030109137,0.0029594917,-0.0008212453,-0.011903612,-0.03472616,0.03750513,-0.01387296,0.020273339,-0.026498666,-0.02255997,-0.00012975128,-0.061706223,0.0023413354,-0.0024890364,-0.007932095,0.03135639,-0.037308197,-0.041575115,0.01507645,-0.03910249,-0.025645282,0.0041930694,0.026739364,0.0028883764,-0.00893865,-0.033303857,0.044638544,0.026870653,0.021859758,0.027658394,0.048752293,-0.00880189,-0.015404674,0.0370675,-0.061574936,0.029934084,-0.015623491,0.0135447355,0.019507483,0.021433067,-0.019146435,0.030218545,0.0000322455,-0.0074014645,-0.015700076,0.036104705,0.018741624,0.006099507,-0.012100547,0.00076654117,-0.052384645,-0.0057275193,-0.026520548,0.014518468,-0.016247118,0.038774267,0.008030562,-0.007571047,0.013172748,0.04067797,0.008796419,-0.037833355,0.021301776,0.021958226,-0.017724128,0.0057056374,0.013249333,-0.012494416,-0.008161851,0.039802704,0.008189204,-0.08341281,-0.048270896,0.010831412,-0.02242868,0.036651745,0.011586328,0.040546678,-0.013894841,0.05203454,-0.040546678,-0.013227452,0.023413355,0.04498865,0.019988878,0.0075272843,0.023325829,0.04229721,-0.02667372,0.010907997,0.04472607,-0.0028473483,0.0512468,-0.055535603,0.008386139,-0.07868638,-0.017964827,-0.06726416,-0.0054375874,0.0023030427,-0.03441982,0.039562006,-0.00011094675,0.0448136,-0.024310501,0.029277634,0.03201284,-0.009671684,-0.024923189,0.023654053,0.005366472,-0.025973506,-0.016444052,-0.028358605,0.02881812,0.0027092206,-0.029912202,-0.029824676,-0.0074233464,0.006821601,-0.024638727,0.017942945,0.016356526,0.035995297,-0.007571047,-0.028074143,-0.023741579,-0.0010551054,-0.062406436,0.013949545,-0.04015281,-0.0020719178,-0.030240426,0.005177743,0.016969211,-0.025404584,0.07260328,0.03470428,0.002490404,0.03805217,-0.04590768,0.002714691,-0.002056874,-0.031662732,-0.008862064,-0.010371897,0.030262308,-0.023238301,0.010918939,0.006367557,-0.0033916542,0.007844568,-0.0333695,-0.030306071,0.04284425,-0.0025122857,0.0033178036,-0.016345585,0.017319318,0.011695736,0.00029061554,-0.0245512,-0.013719788,-0.021969166,-0.027767802,0.0070130657,0.02003264,-0.012439712,0.052822277,-0.016170532,-0.07649821,0.0014113658,0.04560134,0.002542373,0.0057494007,0.030853111,-0.0053856187,0.013063339,-0.02203481,0.015623491,-0.01868692,0.002524594,-0.0008725304,0.02789909,0.005057394,-0.027548984,0.011411275,-0.06783308,0.019518422,-0.013533794,-0.02310701,-0.0013087955,0.039299425,0.006033862,-0.0066520185,-0.053741306,-0.030065373,-0.011542565,0.01454035,-0.018796328,0.03135639,0.016367467,-0.018260228,0.03148768,-0.0066793705,0.0245512,0.04402586,0.018883856,0.020721912,0.017505312,0.018993264,-0.000008462041,-0.012527239,0.0019638771,0.04192522,-0.0072100004,-0.003946901,0.010574303,0.014518468,0.012997694,-0.028533658,-0.03577648,0.021323659,0.010098376,0.057680003,-0.0034354175,0.029824676,-0.01601736,0.0044747954,-0.013008635,-0.0023782607,0.022231746,0.009792034,-0.018588454,-0.030656178,-0.015426556,0.017374022,-0.013052398,0.013019576,-0.022603733,0.02522953,0.05002143,0.019660654,-0.016345585,0.0018913943,0.024222976,0.0029540213,0.013807314,-0.0067340746,-0.046782944,0.038270988,-0.004953456,0.007324879,-0.018183643,0.04713305,0.029737148,0.05019648,0.008927709,0.0021662824,-0.033216327,-0.021258013,0.0019529364,-0.007406935,0.024748135,-0.046082735,-0.015481261,0.007456169,0.007702337,0.0042395676,-0.009179348,0.022603733,-0.0032576292,0.014430941,0.034354176,0.017527193,0.01653158,0.048489712,0.0027269993,-0.017592838,0.0041958042,0.001351875,0.03083123,-0.0029458157,-0.009961616,0.014124598,0.021465888,-0.0007097857,-0.019091731,-0.01040472,-0.0057165786,-0.03190343,-0.0005566142,0.011323748,0.039933994,0.00812903,-0.003722614,0.021061078,0.004359917,-0.0006120021,-0.04094055,-0.020338984,-0.057811294,-0.03496686,0.018621275,-0.03255988,0.0178773,-0.037308197,0.012450653,-0.0055497307,-0.0010756194,-0.009961616,0.0056017,-0.014923278,-0.038205344,-0.00037814208,-0.017625662,0.020207694,-0.033281974,-0.024354266,-0.020645328,-0.013391564,-0.06336923,-0.007899272,0.030481124,-0.002621694,0.023763461,-0.011925493,-0.010842352,-0.025864098,-0.025032597,0.029299516,-0.030371716,-0.010782178,-0.0266956,-0.025054477,-0.0037335549,-0.0128992265,0.0055907588,0.026586192,0.0063566165,-0.042056512,-0.026345495,0.018588454,0.034222886,-0.002610753,0.012866404,0.02962774,0.025142005,0.0080469735,-0.014102717,-0.03816158,-0.0178773,-0.00012017807,-0.03415724,-0.027264522,0.005084746,0.009255934,0.00453497,-0.003440888,0.0036651746,-0.02989032,-0.0030524887,-0.03240671,0.015503142,-0.013851078,-0.016783217,-0.028861882,-0.022931958,0.015273385,-0.0054922914,0.025338938,-0.005924454,-0.004121954,-0.0042614494,-0.005897102,-0.027920973,-0.046389077,0.009458339,0.016870745,0.0134353265,-0.0011863952,0.0069200685,0.0010133934,0.03879615,0.014682581,0.015820425,0.031575207,-0.05715484,0.035141915,0.03150956,0.00056276843,-0.014212125,0.04067797,0.016640987,0.011400335,0.045557573,0.0059627467,0.02308513,-0.0165644,0.019923232,-0.016826982,-0.019704416,0.0047784033,-0.013511913,-0.012767937,-0.0072373524,-0.0055415253,0.03455111,-0.059649352,-0.03761454,0.00480849,-0.009420046,0.0029950493,0.011870789,0.0016506962,0.002297572,-0.027964735,-0.03308504,0.016914507,-0.03002161,0.00002504422,-0.025010714,-0.021859758,-0.03255988,-0.04017469,0.04404774,0.001111177,-0.047833264,0.010875175,-0.02989032,0.04813961,-0.0033725076,0.03350079,-0.005842398,-0.026651837,0.012855464,-0.0027338373,-0.0075218137,-0.016214294,-0.020492155,-0.05321615,0.0026052827,-0.033216327,0.0135994395,0.042756725,0.005393824,-0.022231746,-0.004127424,-0.09225299,-0.0024931394,0.042516027,-0.002163547,-0.012450653,-0.021662824,-0.00035831184,-0.00063149043,0.013686966,-0.024988832,-0.0019939644,0.015174917,-0.004083661,-0.050371535,-0.029211989,-0.006608255,0.032341063,0.00908088,0.00090398523,-0.00827126,0.0044665895,-0.012461594,0.030131018,0.03562331,0.016914507,0.033960305,0.024376146,0.03735196,-0.0005484086,-0.012188073,-0.011641032,0.050108954,0.010782178,0.0065699625,0.01774601,0.0041821282,-0.006641078,-0.014507527,0.0024233917,-0.025120122,0.033260092,-0.037439484,0.022144219,0.015404674,0.042209685,0.0034928569,0.024923189,0.0033041276,-0.033216327,-0.013391564,0.0290807,0.01534997,-0.0140808355,-0.01507645,0.028271079,0.0020979021,-0.009863149,-0.013183688,-0.0048631947,-0.007953976,0.024069805,0.008435372,0.020940728,0.00009829643,0.01361038,0.016608164,0.02536082,-0.019671595,0.016050182,0.0074506984,0.010185903,-0.005787694,0.03638917,0.023654053,0.0074780504,0.04067797,-0.010153081,-0.017177088,-0.012516298,0.014956101,0.016247118,-0.036235996,0.023172656,0.012078665,0.013905782,-0.009135584,-0.011498801,-0.00973733,0.03402595,-0.0021991048,0.05002143,-0.017319318,0.004338035,-0.004338035,0.009748271,-0.013205569,-0.035141915,0.0054758806,-0.0053309146,0.009348931,0.014726344,-0.00493431,-0.024222976,-0.0026257967,-0.054353993,-0.0101913735,-0.0021307247,0.058905374,0.01746155,0.030962521,0.0055278493,0.01001632,-0.042603552,-0.0076257517,-0.024923189,-0.015415615,0.009562276,0.032537997,-0.009518513,-0.010842352,0.007839098,-0.009305167,-0.004950721,-0.027395813,-0.016170532,0.0082822,0.02308513,-0.027023826,-0.0051996247,0.022756906,0.008916768,0.036739275,0.019966997,-0.0145622315,0.004313418,-0.010049143,0.033544555,0.005366472,-0.027308287,0.005112098,-0.0077461004,-0.031312626,-0.026236085,0.00069713534,-0.0073084678,0.012078665,-0.007297527,0.010891587,-0.0112909265,-0.037133142,0.02787721,-0.033807132,-0.0035557665,0.027067589,0.039977755,0.02575469,-0.017286496,-0.022647496,-0.03695809,0.018260228,-0.009781093,0.012746056,0.023457117,0.013719788,0.044616662,0.0027721303,-0.017056739,0.015623491,-0.0392119,0.04177205,-0.0088183,0.04560134,0.02975903,-0.007833627,0.029671503,0.012045843,0.001833955,0.018293051,-0.01107758,-0.012319364,-0.004162982,0.049146164,0.025907861,0.007231882,0.045995206,0.0009415943,0.0023194537,-0.0032466883,-0.019649712,0.028314842,0.01893856,0.014299652,0.04708929,-0.012133369,-0.041137483,-0.0018366901,-0.0028610243,-0.031684615,-0.0037280845,0.018314933,-0.008380668,-0.012746056,-0.003375243,0.0017382228,0.01641123,-0.0030716353,-0.026476784,0.0076804557,0.005858809,0.025448347,-0.023128893,-0.026761245,0.015656313,0.054529045,-0.01855563,0.022603733,-0.023982277,0.014201184,-0.011465979,0.012669469,-0.013697906,-0.007997739,0.0024466407,0.022341155,-0.0061815633,-0.012111488,0.02630173,0.0018462633,-0.010317193,0.02147683,0.0053856187,-0.03870862,0.010913468,-0.011061169,0.04229721,-0.029693386,-0.052909806,-0.002449376,0.012177133,0.02803038,0.011121344,-0.011411275,-0.0024192887,-0.026192322,-0.029168226,-0.009759211,0.029452687,0.04150947,0.018665038,0.02468249,0.05045906,-0.0005990099,0.021236131,-0.07505403,0.034091596,0.020590624,-0.029211989,-0.025973506,0.00023420193,-0.011925493,0.00034019112,0.025513992,-0.003027872,-0.012505357,-0.0013135822,0.009272344,-0.018708803,0.016772278,0.039802704,0.007647633,-0.023544645,0.034813687,0.02042651,-0.0067450153,-0.020568741,0.016903566,-0.0015850513,0.016236177,0.042931776,0.00085270015,-0.03376337,-0.026345495,0.009441928,-0.016323702,0.00005872143,0.0066629592,-0.01975912,-0.014179302,0.036892444,0.023741579,0.0019119083,-0.00827126,-0.03601718,-0.0312251,-0.008320494,-0.005109363,-0.011925493,-0.034638636,-0.0045459107,0.009611511,-0.021422125,-0.019124553,-0.0091191735,0.025776573,0.019058907,0.051465616,0.02494507,0.011247163,0.04426656,0.021640942,0.0035256792,-0.0041930694,0.025426466,-0.0333695,-0.0071826484,-0.013960486,0.011110403,-0.0133478,0.021848818,0.0024069804,0.00091629365,0.0034217415,-0.005787694,0.08306271,-0.009113703,-0.009294227,0.025317058,-0.060655907,-0.002721529,0.0045021474,-0.025295176,0.0050245714,0.0128117,-0.0015754781,-0.028074143,-0.00035591854,-0.036126588,0.032100365,-0.048227135,0.009688096,-0.03925566,-0.014113658,-0.02147683,0.0065207286,-0.017658483,-0.0031728377,0.0031509562,0.01280076,0.006903657,0.042691078,0.046389077,0.011258104,0.008178263,-0.004217686,-0.002301675,-0.003938695,0.018172702,-0.0073741125,-0.0112909265,-0.010421131,0.0024521113,0.0173412,0.013785433,0.007953976,-0.03923378,0.00048037036,0.014770106,-0.015546905,0.013238392,-0.010322664,-0.0009915119,0.011279985,0.0069145984,0.042888016,-0.038861793,-0.03459487,0.016192414,-0.0011932332,0.001073568,-0.021050138,-0.02947457,0.0059080427,0.017910123,0.024748135,-0.04413527,0.0078117456,-0.022713142,0.051290564,0.014715402,0.010393779,-0.016673809,-0.008703422,-0.013621321,-0.022866314,0.022997603,0.00022890247,-0.020098286,-0.015229621,-0.0017601044,-0.0118817305,-0.026586192,0.036345404,0.011750441,0.014037072,0.009562276,0.01828211,0.014354356,0.011455039,-0.00680519,0.006444143,-0.0059025725,0.05361002,-0.028117906,0.011186988,0.029912202,-0.0008137235,0.010825941,-0.011028347,0.0245512,0.01333686,0.0047729327,0.031006284,-0.01427777,0.023807224,0.000598668,0.012264659,-0.0157329,-0.045294993,-0.014518468,0.020667208,0.003815611,-0.0058861612,-0.014058953,-0.0020828587,0.007007595,-0.0054129707,-0.008194674,-0.029408924,0.008424431,0.013205569,-0.010913468,0.010087436,0.019966997,-0.001627447,0.024310501,0.0011857114,-0.0069966544,-0.008522899,-0.03161897,-0.020568741,0.018632216,-0.01828211,0.014343414,0.051553145,0.037570775,-0.0032330123,-0.030043492,0.013205569,-0.009649803,0.0026996473,0.0035420905,0.009917853,0.015645372,-0.02242868,-0.024988832,-0.002817261,-0.014584113,0.01896044,-0.028511778,-0.02494507,0.011837967,0.025864098,-0.018665038,0.0037636422,0.04577639,-0.021006374,0.031662732,-0.017844478,-0.014868574,-0.00019112245,0.01760378,0.028489895,0.001448291,0.022713142,0.033457026,0.016422171,0.014923278,-0.027308287,0.0067833085,0.003522944,-0.024726253,0.006509788,0.037417606,-0.021454947,0.02415733,0.0024329647,-0.015142094,0.0019980671,-0.00016359944,-0.0021594444,0.0046799355,-0.0029157286,0.028008498,-0.006630137,0.010798589,-0.0010605757,0.022319272,-0.021739408,0.010557891,-0.030503007,0.035032507,-0.01960595,-0.010918939,0.0033697726,0.027548984,-0.009786563,0.015404674,-0.012461594,-0.004121954,-0.0037444956,0.020262398,-0.022352096,-0.0050382474,-0.0034572992,0.028621186,-0.037592657,0.010481305,0.0150983315,-0.06630137,0.00040651983,0.012155251,-0.010240608,0.00058738526,-0.0040207515,0.0015522288,-0.0032083953,-0.029737148,-0.019584067,0.017177088,-0.010054613,-0.01001632,-0.031990957,-0.020524979,0.0012404155,0.0054758806,-0.027986618,0.01494516,0.0073959944,-0.02135648,0.018708803,0.013686966,0.0053172386,-0.008358787,0.03069994,0.017242732,0.009830327,-0.012921108,-0.022888195,-0.021006374,0.016389348,0.04271296,-0.0068161306,-0.003320539,-0.016892625,0.031947196,-0.0074014645,0.019988878,0.025426466,0.01508739,-0.021564355,-0.01708956,0.00747258,0.005618111,-0.047614448,0.014529409,0.011542565,0.005049188,-0.0124178305,0.031837787,0.0084463125,-0.022516208,0.00090125005,-0.0072537637,0.013949545,0.007948506,-0.027439576,0.035185676,0.023063248,-0.006033862,0.0073467605,-0.049321216,0.01840246,0.0008219291,0.009901442,-0.022067634,0.018303992,-0.00074739475,0.027373932,0.013249333,0.027176997,-0.0105907135,0.020109227,0.019912291,-0.041596998,-0.043828923,-0.015700076,0.043719515,0.034091596,-0.015109273,-0.026039151,-0.015459378,0.0105907135,0.021170486,-0.011706677,0.0030497536,-0.04525123,0.028664948,0.0044775307,0.024441792,0.029387042,0.0005292622,0.0018722478,-0.00072004274,0.015897011,0.001507098,0.046958,0.038205344,-0.049715087,-0.0038347575,-0.01974818,-0.0066246665,-0.014529409,-0.033697724,-0.009190288,0.0032986572,-0.0061542112,-0.03853357,0.028139789,-0.009370812,-0.003402595,0.0049835434,-0.00840802,0.00013385409,0.011553505,-0.019540304,0.0004492574,0.017822595,0.028686829,-0.027680274,-0.015842307,-0.00013881165,-0.003082576,0.004321624,-0.022756906,0.007986799,0.0504153,-0.033522673,0.021859758,0.0015836837,0.0057056374,0.00015872736,0.012166192,-0.039846465,-0.026126677,-0.02855554,-0.021662824,0.00680519,0.028314842,0.027373932,0.005180478,0.009885031,-0.004176658,0.031837787,-0.012253718,0.004269655,-0.030218545,0.006827072,0.021673765,0.047658212,0.010760296,0.036914326,-0.003842963,-0.015251503,-0.009157467,0.0370675,-0.011520684,-0.0173412,0.002129357,-0.017505312,-0.021454947,0.023172656,-0.0117395,-0.013128984,-0.0016520638,-0.0117723225,0.011137755,-0.02013111,-0.014190244,0.0061979746,0.014999864,-0.00473464,0.01853375,0.019244902,-0.033719607,-0.042734843,0.02695818,0.04085302,-0.008200144,0.04096243,0.02163,0.02122519,0.002501345,-0.021619061,-0.008243908,0.012713233,0.028402368,0.0006520045,-0.004844048,0.020371806,0.006241738,-0.07098404,-0.0013696539,0.0063620866,-0.01668475,0.030131018,0.009726389,-0.020514037,-0.014234006,-0.005574348,-0.016640987,-0.0010489511,-0.0031017223,-0.052647226,0.0059846286,0.04148759,-0.037527014,-0.006876305,-0.0039660474,0.002397407]},{"id":"guide-embeds-7","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Fields\naddFields() adds name/value pairs. Max 25 fields. Use inline: true for side-by-side layout. spliceFields() to insert/remove.\n\n```javascript\nembed.addFields(\n { name: 'Field 1', value: 'Value 1', inline: true },\n { name: 'Field 2', value: 'Value 2', inline: true },\n { name: 'Long field', value: 'Not inline, full width' }\n);\n\n// Insert/replace fields\nembed.spliceFields(1, 1, { name: 'Replaced', value: 'New value' });\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.018604169,0.029104888,0.008345427,-0.020866381,-0.00579059,-0.046414755,0.019943489,-0.028069448,-0.021834293,-0.0059425295,0.026628833,-0.0060156854,0.04069732,-0.019819686,-0.01830029,0.015396553,-0.0035621412,0.01691595,0.036397994,0.05055652,-0.0027138114,0.026111113,-0.0137420995,0.0043753,0.0012260687,-0.022183191,-0.021294063,0.043781135,0.015914274,-0.021879314,-0.017163556,-0.0060888417,0.06127108,0.02629119,-0.021789275,-0.021811783,0.058659967,0.03549761,0.005087165,0.0359478,0.004625719,0.040067054,-0.011727491,-0.01853664,0.029194927,0.04193535,-0.037658527,-0.024467915,-0.008390446,0.071040235,0.0350024,-0.0011093003,-0.02309483,-0.021924332,0.008457975,0.026381228,-0.042475577,-0.004639787,-0.0039588725,0.0027180319,0.04031466,-0.026741382,0.024265328,0.039886978,-0.036330465,0.0032132426,-0.04497414,0.020742578,0.04024713,0.03655556,0.046909966,-0.0080134105,0.012976773,0.030725578,0.038851537,0.00035681203,-0.0020343033,0.0033229769,-0.009330221,-0.018244015,0.023860157,0.006544661,-0.08193488,-0.018424092,-0.03588027,0.03981945,-0.0010614675,-0.0072987317,-0.059155177,-0.04031466,-0.065863036,-0.048710734,-0.030455463,-0.010928402,0.0016572679,0.025345787,-0.029667627,-0.0068597947,-0.019752158,0.024783049,0.07765806,-0.05690422,-0.07801821,-0.014383622,0.008992578,-0.03065805,-0.01639823,0.01827778,-0.013381946,-0.026088605,-0.07320116,-0.023545021,-0.015542866,0.009746648,0.02313985,-0.01341571,-0.032616384,0.006347702,-0.015891764,-0.054068014,-0.04096744,-0.039931998,0.057174336,-0.012481563,-0.0187955,-0.0045328666,-0.021046458,-0.010748325,-0.0446365,-0.017827587,0.012819206,-0.012537836,0.013989705,0.005841236,-0.03864895,0.0032329385,-0.03615039,0.048980847,0.007090518,-0.03380939,0.037996173,-0.03871648,0.058659967,0.0024633922,-0.000194321,0.054428168,-0.034034487,0.0154978465,0.009971744,-0.027506707,-0.017309867,0.003956059,-0.03592529,0.0135057485,-0.032053642,-0.032683913,-0.018727971,-0.006904814,0.012774187,-0.048080463,-0.012830461,-0.024738029,0.008919422,-0.009892961,-0.035114948,0.004234615,-0.026696363,-0.034777302,-0.041575197,0.020146076,-0.0137308445,-0.09390997,-0.02285848,0.020427445,0.007760178,-0.019392004,-0.034687266,-0.04189033,0.0024957499,0.031963605,-0.034124523,0.048710734,-0.05960537,0.07239081,0.010556993,-0.0006028347,-0.018547894,0.0046566697,-0.0012689776,-0.021046458,-0.012042626,-0.018682953,0.009099498,0.008182232,-0.03128832,-0.008958813,0.0080190385,0.009195164,0.03347175,-0.017760059,0.038761497,0.012864226,-0.0241978,-0.003657807,-0.022610875,-0.031468395,-0.04454646,0.029690137,-0.040877398,-0.01903185,0.0029375004,-0.018615423,0.011885059,-0.017512454,-0.008761854,0.021924332,-0.0044709654,-0.037726056,-0.045919545,-0.016240662,-0.040629793,-0.0076138657,0.071130276,-0.017748805,-0.03212117,0.037996173,-0.027146554,-0.019752158,0.0040883026,0.021125242,0.016206898,-0.013877156,0.016904695,-0.034822322,-0.040584773,0.06802395,-0.024783049,0.023229888,-0.020888891,0.013584532,0.023477493,-0.00087506,0.020888891,0.026741382,0.010782089,0.017399905,0.010118057,-0.037410922,0.020618776,0.02175551,0.03862644,0.0042008506,0.03385441,-0.01983094,0.019763412,-0.04454646,-0.006544661,0.06550288,0.012819206,0.004597582,-0.021113986,-0.01931322,-0.012267722,0.01583549,0.021395357,0.0043387217,0.046414755,0.03279646,0.010652659,-0.06545786,0.023860157,0.0179739,-0.029420022,0.00073367165,-0.0009489195,-0.038041193,0.00712991,-0.005025264,-0.016735874,0.038153738,-0.021642962,-0.055148475,-0.017636256,-0.019482043,0.0026462825,-0.030185347,0.0016446062,-0.009971744,0.031423375,0.00022298553,-0.018547894,0.026021076,0.040179603,0.007979646,-0.012346505,0.026988987,0.0048170504,0.022306995,0.056138895,-0.017354887,0.0024493237,0.032886498,0.022250721,0.0010438818,0.029149907,-0.0036803165,-0.03873899,-0.02095642,0.01687093,-0.055643685,-0.020449955,0.026628833,-0.0068823043,-0.04447893,-0.020742578,0.03176102,0.070049815,0.017028498,0.0030190975,-0.039954506,0.008660561,0.028677206,0.016702108,-0.09134388,-0.03538506,-0.05478832,-0.0037000123,0.04240805,0.015914274,-0.014653737,-0.0018654815,0.0054754554,-0.027641766,0.003843511,0.018919302,-0.081664756,0.026628833,-0.024332857,-0.00026396,0.03376437,-0.01769253,-0.008002156,0.0021285622,-0.012312741,-0.023016047,-0.02281346,-0.010720188,0.02629119,-0.0135170035,-0.026741382,0.0049380395,-0.0067866384,-0.0382888,-0.016038077,0.029937742,-0.029442532,0.038446363,-0.07932376,0.01181753,-0.002373354,-0.031423375,0.013899666,0.021372847,0.019155653,-0.0005557053,-0.0048423735,0.0072424575,0.025953546,-0.021890568,0.017703785,-0.010286879,-0.011282927,0.007760178,0.011918823,-0.018671697,-0.006803521,0.042182956,0.0066009345,0.020753834,-0.01564416,0.021023948,0.0050111953,-0.006544661,-0.00976353,-0.0051772036,0.004383741,0.013044302,0.038491383,-0.048710734,0.00404047,-0.010517602,-0.020967675,0.008643679,-0.030815616,0.085716486,0.0015489405,0.034664754,0.0014314686,-0.004434387,-0.044659007,-0.004485034,-0.043263413,0.013168105,-0.025075672,0.017838843,-0.023500003,0.011896313,0.0063251923,0.036915712,-0.02313985,0.031423375,-0.02145163,0.03178353,0.04618966,-0.022712167,0.01747869,-0.020449955,-0.0183228,0.023297416,0.018401582,-0.01884052,0.010269997,-0.0027996292,-0.016094351,0.026741382,-0.0077264137,0.038356327,-0.037726056,0.016747128,-0.03232376,-0.07140039,0.053392727,0.058795024,0.023927685,0.0038463245,0.011704982,0.02800192,0.0054838965,0.008756227,0.0065840525,-0.057264373,0.023972703,0.010450073,0.04238554,-0.05852491,-0.017433671,-0.039436787,-0.014935107,-0.015126438,-0.027799333,-0.007979646,0.0040995576,0.014732521,0.0042937025,0.03016284,0.039571844,0.042723186,-0.013865902,0.039571844,0.03419205,0.035362553,0.02316236,-0.012954264,0.025525864,-0.0141697815,0.008103449,-0.031468395,-0.020056037,0.017411161,-0.009718511,0.030500483,-0.036870692,-0.01266164,0.024895597,-0.03925671,-0.011885059,-0.049791194,-0.04983621,-0.011592434,-0.008328545,0.023792626,0.0009531401,-0.028159486,0.0015672295,-0.03484483,0.11191764,0.02685393,0.0048930203,0.05217721,-0.048710734,0.0063139373,0.002736321,0.035655174,-0.009302084,0.015362789,0.004496289,-0.034619734,0.018649187,0.0073212413,0.0012584262,0.050736595,0.0036549931,-0.029307473,0.03380939,0.041687746,0.0077770604,-0.003154155,0.001325955,-0.020404935,0.045311786,-0.009814178,-0.010922774,0.007867099,0.00066403265,0.019470787,0.02121528,-0.020708814,0.03000527,-0.0021566993,-0.02368008,-0.0056836694,0.032931518,-0.002020235,-0.00476359,0.02177802,-0.037726056,-0.030590521,0.0017937322,0.025593393,-0.051231805,-0.021789275,-0.021294063,0.0074562985,0.027416669,-0.045311786,0.022937262,-0.030297896,0.04418631,0.023882665,-0.01877299,-0.031333335,0.03016284,0.0062295264,0.022926008,-0.036172897,0.009347104,0.015858,0.009921098,-0.002559058,0.029757665,0.0030725577,-0.025458336,0.005593631,-0.031378355,0.019346984,0.065277785,0.024265328,0.022070644,-0.014361112,-0.024783049,-0.009015087,-0.032976534,0.027821843,-0.00039004884,-0.0067697563,-0.012008862,0.004772031,-0.0070117344,0.02471552,-0.00980855,-0.06734867,-0.008947559,0.002504191,0.059245218,-0.008232879,0.011727491,-0.013235633,0.016702108,-0.014800049,-0.028564658,0.0030106565,-0.013843392,-0.020517483,-0.0080190385,0.009611591,-0.000986201,0.01142924,-0.0022073458,-0.011198517,-0.0006749357,0.018435346,0.03718583,0.02471552,0.021913078,0.038378835,-0.027281612,-0.0018260897,-0.006820403,-0.039369255,0.017523708,-0.014586208,-0.031423375,-0.011648708,0.0044062505,-0.023184868,0.020731324,0.011716237,-0.019583335,-0.0077770604,-0.013314417,0.0128417155,-0.014946362,-0.0112773,-0.041485157,-0.018547894,0.01047821,0.035700195,0.008300408,0.017625002,0.0097747855,-0.008795619,0.007855844,0.012931754,0.045244258,0.00009082968,0.035047416,0.03160345,-0.014631228,0.036803164,0.018086448,0.0069948523,0.0069948523,0.0175012,0.016927205,-0.0037478453,-0.029329984,0.010714561,-0.011125361,0.016510777,-0.027236592,0.036015328,-0.013010538,0.045536883,0.044208817,0.017534964,-0.017985156,0.0152614955,0.020607522,0.0034861714,0.0016882186,-0.022948518,-0.01125479,0.012346505,-0.026651343,0.015666667,0.0030134702,-0.0126278745,-0.033561785,0.009966117,-0.013426965,-0.010151821,-0.01905436,-0.004037656,-0.040607285,0.010917147,0.022903498,-0.015329025,-0.027079025,0.00016697537,0.017309867,-0.049701154,0.0003337749,0.00021243417,-0.0015475337,-0.004251497,-0.03657807,0.016567051,0.012481563,0.01613937,0.025053164,-0.037455942,0.014766285,-0.03855891,-0.03324665,-0.01821025,-0.013044302,-0.033044066,0.04297079,0.030185347,-0.0033820646,-0.022070644,0.030297896,0.011885059,-0.035159964,-0.0326614,0.05699426,0.011187262,-0.02281346,-0.0021609198,-0.045199238,0.013336927,0.016263172,-0.024535444,-0.0037759822,-0.030207857,0.003005029,-0.0075969836,0.0392342,0.007563219,-0.032999046,0.0014589023,0.006561543,-0.015869254,-0.00630831,-0.026673853,-0.009257065,-0.022171937,-0.0038632068,0.0015939598,0.008457975,-0.0061732526,-0.029780176,-0.01696097,-0.0077095316,-0.016477013,-0.016083095,0.0029178045,0.0018021733,0.02069756,-0.006674091,-0.010528857,0.011350456,0.036330465,0.006938578,-0.014034724,0.042475577,-0.036915712,-0.020663796,-0.010292506,0.0022228211,0.0028755988,-0.0065559153,0.054608244,0.044996653,0.004836746,0.011828785,0.0031203907,-0.0018809568,0.00006031864,-0.0067641293,-0.042700674,0.006038195,-0.020618776,0.0043274667,-0.029600099,-0.00131259,0.010962166,-0.027191574,0.0077151586,0.021868058,0.017591238,0.04555939,0.015689177,-0.004333094,-0.0013906701,-0.05843487,-0.007878353,0.019887215,-0.012988028,0.04150767,-0.03225623,-0.023927685,-0.01158118,-0.026088605,0.0667184,-0.028362071,-0.0472251,0.014507425,-0.053347707,0.0003316646,-0.028114466,0.020742578,-0.025683431,-0.021204025,-0.014136016,0.0038069328,-0.011153498,-0.02948755,0.012233958,-0.058614947,-0.018356564,-0.042025387,-0.013832137,0.011176007,0.008559268,-0.0077489233,-0.026448758,-0.07837836,-0.0022805019,0.043308433,-0.040607285,-0.005981921,-0.01983094,0.017017243,0.016251918,0.0013343961,-0.025458336,-0.0043190257,0.009662238,0.010292506,-0.021260299,-0.06653832,-0.028789753,0.049070887,0.013528259,-0.004743894,-0.046414755,-0.015092674,0.028024428,0.013370691,0.00055746385,-0.01935824,0.011271672,0.020269878,0.005258801,0.016263172,0.012481563,0.0029994017,0.040134583,-0.008885657,0.016488267,0.042025387,-0.027146554,0.014529934,-0.0010115242,0.0040067052,-0.012774187,-0.01235776,-0.016623326,0.0070961453,0.026561305,0.0069610877,0.024580462,0.0040095192,-0.00983106,-0.035295025,0.018502876,0.046369735,-0.0052531734,0.025615903,-0.010005509,0.012459053,0.003311722,-0.015227731,0.03212117,0.058930084,0.0056892964,0.0077489233,-0.00069533504,0.007293104,-0.00044210223,0.032458816,-0.031310827,0.036848184,-0.030275386,-0.032503836,-0.020731324,0.009470906,0.011524905,0.016567051,0.01881801,-0.0027208456,0.02309483,0.009082616,-0.022385778,-0.0108721275,-0.002604077,0.04830556,-0.020596266,0.015869254,-0.004586327,0.013854647,0.004195223,-0.0413501,-0.0069104414,-0.00031531,0.04830556,0.039481804,-0.016623326,0.012807951,-0.013449474,0.013663315,-0.008739345,-0.026178643,-0.005165949,0.0086886985,0.017850097,0.021237789,-0.0013435406,0.00362967,0.023184868,-0.041057475,0.011339202,-0.012267722,0.0039673136,-0.035272513,0.008176605,-0.014304839,-0.0038153739,-0.051952112,-0.02361255,-0.046909966,-0.039999526,0.0051687625,0.008553641,0.018165233,-0.008941931,0.03155843,0.032548852,0.016499523,-0.055643685,-0.00039462108,0.027259102,0.023545021,-0.0175012,-0.009020714,-0.008131586,0.016724618,0.045964565,-0.012751678,-0.005970666,0.0028333934,-0.0035959056,0.022802206,0.028857283,-0.024445405,0.027034007,0.011114106,-0.032616384,-0.009279574,-0.044929124,0.007214321,0.027619256,-0.021834293,0.02786686,-0.03223372,-0.026201151,-0.013764609,0.021789275,-0.04186782,-0.018682953,0.019166907,0.04020211,-0.011468631,-0.030905655,-0.012785442,-0.0053235157,-0.030703068,0.03324665,0.05316763,-0.011485513,0.00491553,-0.017861353,-0.008919422,-0.0022537718,-0.017287359,-0.02199186,-0.019898469,0.022689657,0.009454024,0.03374186,0.0047045024,0.039841957,0.010838363,-0.0031935468,-0.012245212,-0.021834293,-0.03005029,0.014147271,0.027214084,0.011232281,-0.0026434688,0.0053460253,0.010123684,-0.004186782,0.009150145,0.0027489825,0.003601533,0.022802206,-0.0064996416,-0.012323995,-0.0067810114,0.004614464,-0.04290326,-0.039684393,0.0075969836,-0.0038153739,-0.0015601953,-0.024895597,-0.0015433131,-0.024377877,-0.006854167,-0.024107762,0.010028019,0.011952587,0.009003832,0.025660923,-0.010934029,0.01581298,0.012380269,0.022520836,-0.008970068,0.035655174,-0.013100576,0.06361207,-0.0048986473,0.020641286,0.005703365,0.0012802324,-0.018806756,-0.018975576,-0.012807951,-0.017985156,-0.024557952,-0.017287359,-0.01745618,0.04447893,0.032098662,0.028564658,-0.01184004,-0.011468631,0.029465042,-0.0129205,-0.011761256,-0.021249045,-0.007191811,0.011873804,-0.028924812,0.010596385,0.011198517,-0.027079025,-0.020810107,-0.027484199,-0.0055204746,0.016319446,0.006381466,0.0075969836,0.01639823,0.0053629074,0.038041193,-0.039076634,0.036195405,0.018390328,-0.023590041,0.0067866384,0.0048170504,-0.028699715,0.022903498,-0.013809628,0.030748088,-0.006184507,-0.03389943,-0.002763051,0.012650385,-0.003956059,0.03275144,0.023882665,-0.023590041,0.03921169,0.011215399,-0.008947559,-0.03446217,0.055328548,-0.02734914,0.018570404,0.007754551,-0.0056048855,-0.013922175,0.006578425,0.038468875,-0.03167098,0.017343633,0.0022467375,-0.009228928,-0.0038660206,0.038468875,0.017557474,0.019977253,0.024940616,-0.02100144,-0.007687022,0.012931754,-0.02117026,-0.0005219409,-0.050196365,0.020359917,0.007861471,0.026921459,-0.009577827,-0.032999046,0.0013006317,-0.0013977042,0.010264369,0.037005752,-0.02316236,0.02579598,0.005610513,-0.0080134105,0.019459533,0.03272893,-0.06608813,0.03597031,-0.0023860156,0.011795021,-0.023364944,0.0026701991,-0.017208574,-0.016859677,0.00939775,0.013123086,0.058614947,-0.008289153,-0.0044653383,0.013055556,-0.029420022,0.024062742,0.002585788,-0.000944699,-0.0042852615,0.013775864,-0.019718394,0.0036493659,-0.032368775,-0.06055077,0.06172127,-0.03858142,0.017625002,0.0015616022,0.006319565,-0.024265328,0.011750001,-0.040112074,-0.030883145,-0.013145595,-0.03603784,-0.03277395,0.014428642,0.043961212,0.014710011,-0.011626199,0.0013695674,0.036825676,0.011896313,0.026516287,-0.017928882,-0.017118536,-0.011333574,-0.01341571,-0.0013871529,0.035745215,0.0026561306,-0.009634101,0.00014851047,0.01745618,-0.011637453,0.030568011,-0.0038097466,0.0010319236,-0.024602972,0.004530053,0.029982762,-0.005351653,-0.00095947087,0.009178282,-0.03810872,-0.000045678622,-0.0021693609,-0.011119733,0.0128529705,0.063792154,0.03808621,-0.048125483,0.0036493659,-0.024107762,0.007912118,0.02313985,0.006218272,-0.04983621,-0.0046566697,0.029465042,-0.012211448,0.011648708,-0.03369684,-0.025053164,-0.006505269,0.006792266,-0.048125483,-0.034214564,0.039504316,0.0086774435,0.004195223,0.02532328,0.010185585,-0.009448397,-0.0026533168,-0.035227492,0.020911401,-0.014766285,0.027551727,-0.018041428,0.027754312,0.020236114,0.034619734,-0.010973421,-0.00080331066,0.012222703,-0.012110154,-0.00001583804,0.018131467,-0.003517122,0.026696363,-0.0025281073,0.004251497,0.0075013177,-0.038491383,0.028317053,-0.005731502,-0.00630831,-0.037208337,-0.0023311484,-0.0071130274,0.037883624,0.0069273235,0.012909245,-0.033606805,-0.0041811545,0.018075194,-0.0069779702,0.017411161,0.032413796,0.01425982,0.01557663,-0.0029825196,0.003359555,0.00883501,0.008125959,-0.012864226,0.013764609,0.002976892,-0.009015087,0.016780892,0.042205464,-0.023038557,-0.050691575,0.0042402423,0.0013871529,0.010894638,-0.015351534,0.016015567,0.036240425,-0.043128356,-0.035092436,0.0035368179,-0.024602972,0.012087645,-0.007692649,-0.0006376542,-0.0060888417,0.031220788,-0.013190614,-0.010185585,0.040427208,-0.03270642,0.03011782,-0.02368008,0.011614944,-0.011997607,-0.001516583,0.008131586,0.0035227493,0.024355367,-0.013460729,-0.021395357,0.019178163,-0.007062381,0.037005752,-0.010078665,-0.04522175,0.010022391,0.02180053,0.0068823043,0.04776533,-0.030275386,0.013944685,0.015126438,0.009696002,-0.005033705,-0.026516287,-0.008514249,0.019425768,-0.032616384,0.02313985,0.0183228,-0.012526582,0.013708334,0.048755754,-0.033426728,0.006544661,-0.005089979,-0.0017051008,-0.03396696,0.022194447,-0.027461689,0.008300408,-0.018120212,0.0014209173,-0.014642483,0.04983621,-0.005666787,-0.031873565,-0.006544661,0.009650983,-0.009650983,0.020213604,0.015148948,-0.017242339,0.021879314,-0.00350024,0.00646025,-0.0060888417,-0.0053910445,0.014349857,0.03005029,0.009262692,-0.0241978,-0.014462406,-0.0001473674,-0.009673492,0.00808094,-0.034102015,-0.010292506,-0.005025264,-0.009712884,-0.026088605,-0.0059425295,0.020044781,0.031400867,-0.028654696,-0.0037816095,0.016026821,0.0076251207,0.036780655,-0.006606562,-0.031310827,0.0010382545,-0.014698756,0.0049802447,0.030095309,-0.020967675,0.020427445,-0.020967675,0.005343212,0.0054276227,0.020438699,0.034034487,0.014822559,-0.0154978465,0.018446602,0.0012598331,-0.0029262456,-0.020708814,0.020123566,0.026381228,-0.016499523,0.0056048855,0.03216619,0.0033089083,-0.00012441819,-0.019684628,-0.054518204,0.05645403,-0.024062742,-0.034664754,0.0326614,0.003908226,0.005070283,-0.02518822,-0.02797941,0.0010677982,-0.015914274,0.013775864,0.0074506714,-0.0012197379,0.004538494,0.020404935,-0.010984675,0.006820403,-0.0012408406,0.04826054,-0.009870451,-0.027686784,-0.029960252,-0.037208337,0.014901343,0.022655893,-0.021395357,-0.0029234318,0.019392004,0.014484915,0.017816333,0.0065671704,0.030590521,-0.015520356,0.00885752,0.004001078,0.039594352,0.048125483,-0.020314896,-0.0064996416,-0.00296001,-0.025255749,0.0036184152,-0.036623087,0.020427445,-0.033179123,-0.009515925,-0.007771433,-0.0014202138,0.0088912845,-0.002680047,0.020089801,0.01397845,0.018975576,-0.05037644,0.015722942,0.020888891,-0.015689177,0.03966188,0.007658885,-0.022183191,-0.0072368304,0.0035508864,0.0187955,-0.0062407814,0.028429601,-0.026583815,0.0086886985,-0.007602611,-0.0009643948,0.0034467797,-0.008204742,-0.0064546224,0.041642725,-0.005970666,0.030410444,-0.017726295,-0.00071256893,-0.0016488268,-0.039144162,-0.0056892964,-0.008148468,-0.0039391764,-0.008007783,0.018424092,0.009538434,0.0062126443,-0.00090952776,0.005542984,0.009003832,-0.00017884566,0.00051068614,0.036825676,-0.056769162,-0.0034917986,0.0041924096,-0.0010635777,0.015745452,0.02685393,0.013404455,0.012470308,-0.013224379,0.009954862,-0.021271555,0.010855245,-0.0018317171,0.0013758981,-0.02149665,0.03016284,0.008756227,-0.024985636,-0.015160203,0.008441092,0.039391767,0.0073550055,0.018761735,0.01966212,0.033449236,0.01075958,0.018480366,-0.004932412,-0.030995693,-0.039099142,0.002131376,0.052312266,-0.0028812264,0.04123755,0.012492818,-0.013021792,0.0046088365,-0.017838843,0.004065793,0.004811423,0.042610638,0.0048142364,0.0005138515,0.018142723,0.01637572,-0.03801868,0.02196935,0.0038744616,-0.017861353,0.020247368,-0.008925049,-0.0580297,-0.0050393324,0.0013428372,-0.010236232,0.014271074,-0.02845211,-0.042700674,0.02203688,0.03279646,0.017264849,-0.035092436,-0.0108833825,-0.016567051]},{"id":"guide-embeds-8","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Image and Thumbnail\nsetImage() adds a large image. setThumbnail() adds a small image (e.g. top-right). Pass a URL string or EmbedMediaOptions (url, width, height, content_type, etc).\n\n```javascript\nembed.setImage('https://example.com/image.png');\nembed.setThumbnail('https://example.com/thumb.png');\n\n// With metadata\nembed.setImage({\n url: 'https://example.com/image.png',\n width: 400,\n height: 200,\n content_type: 'image/png',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.013870051,-0.015462384,-0.020993643,-0.02264883,-0.002566588,-0.019872725,0.044417687,-0.023780225,-0.0177566,-0.02541446,-0.0074535813,-0.0017468513,0.019872725,-0.079909936,-0.026399191,-0.019495593,-0.017746123,-0.0038786908,0.044543397,0.05434881,-0.005075559,0.0022771922,-0.031406656,0.049739428,0.0024002837,-0.03061049,-0.041966334,0.0043684375,0.06599798,0.019359408,-0.024953522,-0.009197813,0.014268135,-0.009286858,-0.04202919,-0.0072650155,0.06251999,0.023926886,-0.01742137,0.028117234,0.02516304,0.001105859,0.025603026,-0.0043684375,-0.012036774,0.0015936417,-0.049613718,-0.021873616,-0.0031558557,0.04601002,0.00801404,-0.0015399528,-0.03593223,0.0023531422,-0.029500049,0.013870051,-0.0008662235,0.0037372664,-0.038006455,-0.0022156464,0.03964069,-0.025938254,0.022208843,-0.0033784679,-0.022942154,0.004096065,-0.03838359,0.033292312,-0.01042349,-0.023319285,0.044627205,-0.027991524,-0.018207062,-0.0016617348,0.007657861,0.03180474,-0.01577666,0.024283066,-0.004245346,-0.046806186,0.0002522393,-0.0011333581,-0.06599798,0.03048478,-0.06155621,0.058832485,-0.024471631,-0.04793758,0.0025534933,0.02011367,-0.033711348,-0.035136066,-0.04626144,-0.011638692,-0.0058245836,0.045842405,-0.016541399,-0.0042898688,0.003134904,0.061514307,0.04613573,-0.008794492,-0.08690781,-0.018751808,0.01934893,-0.08774588,0.006034101,0.077521436,0.042825356,0.006914074,-0.021496484,-0.037503615,-0.025791591,0.0022405267,0.032726616,-0.01258152,0.04142159,0.0541812,0.0080873715,-0.028829593,-0.06155621,-0.03565986,0.0843517,-0.011282512,0.03048478,-0.013042457,-0.02181076,0.010915856,-0.044836722,-0.026902033,0.029500049,-0.008694972,0.00028563113,-0.019212745,0.0038891665,-0.009197813,0.010538725,0.02516304,-0.022271698,-0.005562687,0.053049803,-0.008286413,0.035848428,-0.01872038,0.01318912,0.0059660077,-0.034654178,0.02516304,-0.024178308,-0.02782391,-0.002975147,0.022250747,-0.028242944,0.0045386706,-0.064782776,0.012330099,-0.01318912,-0.05082892,-0.034067526,-0.04106541,-0.012256768,-0.024262113,0.016363308,0.013251975,-0.018259441,0.045716695,0.0016316167,-0.005057226,-0.013859576,-0.0013278165,-0.0065317047,-0.0017822073,0.009883983,-0.034779888,0.01499097,0.006327425,0.020909837,-0.059921976,0.034235142,0.035010356,-0.008401647,0.021747906,-0.04785377,0.015682377,0.036916964,-0.012476761,-0.012015822,0.028326752,0.012864368,-0.018992752,-0.032244727,0.000056757934,-0.004323915,0.0054369764,-0.015252866,0.013157693,0.0027499157,0.028410558,0.044752914,0.019265125,0.05338503,0.06000578,0.048189,-0.008029754,-0.033459928,-0.047141414,0.0031689506,-0.04902707,-0.02373832,0.04274155,-0.0036796492,-0.035701763,0.015650949,-0.031092381,-0.029101966,0.03832073,-0.026063964,-0.02914387,-0.017232805,0.008616403,-0.041400637,-0.0014495985,0.03568081,-0.0553964,-0.03758742,0.0000251871,-0.03046383,-0.006275046,0.0003342457,-0.0034334662,0.025644928,-0.014802404,-0.003527749,-0.0102034975,-0.029730517,0.02386403,-0.014980494,-0.023570707,-0.009815889,-0.019432738,0.0020310092,-0.0010757409,-0.043118678,-0.013430065,-0.021161256,-0.017033763,0.006327425,-0.052086025,-0.038991187,0.043328196,0.0055312593,-0.014446224,0.009438759,0.030296216,0.048566133,-0.055312593,-0.018898468,0.07517484,-0.009339238,-0.0051750797,0.006175525,0.01542048,-0.018647049,-0.021726953,0.030987622,0.0025142087,-0.022732638,0.027844861,0.040290195,-0.033941817,-0.0019314885,-0.036330316,-0.0433701,0.017850881,0.0007195613,-0.005636018,-0.025477314,0.009475424,-0.018248964,0.014624314,0.014550983,-0.031511415,-0.06671034,0.027488682,-0.024995426,-0.008857348,-0.029458145,-0.044669107,0.008632117,-0.014509079,0.0073592984,-0.011607263,0.023801176,-0.007312157,-0.051373664,0.051583182,-0.008679258,0.017075667,0.022963107,-0.0010056834,0.005772204,0.012927223,-0.008364982,0.014268135,-0.0051855557,0.018772759,-0.028138187,-0.021873616,0.02089936,-0.0080664195,0.016038556,-0.018772759,-0.016394736,0.004274155,-0.002163267,0.05024227,0.041128263,-0.0022654068,-0.01542048,0.0024670672,0.051038437,0.008150226,0.019642256,-0.046051923,-0.0017049478,-0.019307029,-0.04169396,-0.006353615,0.017379468,-0.03348088,0.03442371,0.06486659,0.0044941483,0.022376457,0.03517797,0.015430956,0.011240608,-0.039305463,-0.052086025,0.028494366,-0.05032608,-0.021245064,0.018228013,-0.014372894,-0.0047796154,-0.013629107,-0.0638609,0.06587227,0.008454027,-0.03471703,0.030568589,-0.0026896796,-0.019045131,0.047392834,0.02338214,-0.00014723507,-0.0045884307,-0.07974232,-0.034528468,0.0057564904,-0.071948275,-0.0010633008,-0.013775769,0.0037189338,0.0062959976,-0.02794962,-0.018427055,0.007867378,-0.012424381,0.020511752,-0.004111779,0.057910606,-0.0010763956,0.00870021,-0.036707446,0.0240945,0.044375785,0.029060062,-0.014833831,0.011554884,-0.010648722,0.012141533,0.038467392,-0.026881082,0.013534823,-0.00042263587,0.021894567,0.016803294,-0.01608046,0.0049472293,-0.0027132502,0.010978712,-0.04253203,-0.020972691,0.024639245,0.07794047,0.0015739994,0.014655742,-0.015032873,0.017536607,-0.0058298213,-0.048272807,0.027027743,-0.02673442,0.02916482,-0.021831712,0.026336337,-0.0037555993,0.004750807,-0.010680149,-0.022145988,0.0025548027,0.03865596,0.0036377457,-0.032663763,0.030275263,0.005573163,-0.06109527,0.013063409,0.03132285,-0.050409883,-0.014928115,-0.012057726,-0.030128602,0.017987069,-0.037880745,0.02614777,0.008946393,0.039074995,-0.031280946,-0.038488343,0.053175513,0.022585975,0.028494366,0.031134285,-0.0066521773,0.018039448,-0.03959879,0.003938927,0.02998194,-0.0367284,0.018395627,0.030757153,0.001402457,-0.030107649,-0.0060026734,-0.02457639,0.025121136,-0.07144543,-0.019537497,0.0397664,0.0029306246,-0.0053453124,0.0028572935,0.04672238,-0.011408222,0.020752698,-0.04756045,0.021873616,-0.029039111,-0.0088783,0.011125374,-0.003140142,0.032600906,0.0043736757,-0.020689843,-0.017358515,0.018238489,0.002290287,-0.058036316,0.030736202,-0.011177753,0.024764955,0.013042457,-0.023172624,-0.052127928,0.00076539326,-0.07312157,-0.0192756,0.006798839,0.027865814,-0.011753926,0.0014613838,-0.022376457,-0.07014643,0.075091034,0.011837733,0.01542048,0.07861093,-0.060550526,-0.06545323,-0.0050912728,0.0050493693,-0.0070345467,0.027970571,0.005562687,-0.017662317,-0.03857215,0.0020074386,0.020281283,0.045926213,0.033187553,-0.081753686,0.012214864,0.005971246,-0.055438302,0.004229632,0.018584194,0.0071916846,0.01734804,-0.030275263,-0.0073540607,0.0021671955,0.0034858456,0.016667109,0.0108006215,-0.010596342,0.040751133,0.015650949,-0.052379347,-0.034298,0.012193913,-0.002515518,-0.042133946,0.040394954,-0.017107096,-0.018584194,-0.009255431,0.043160584,-0.024744004,-0.032831375,-0.029604807,0.0033129938,-0.001169369,-0.050870825,0.006081242,-0.043453906,0.03771313,-0.007233588,-0.038865477,-0.00824451,-0.0067045568,-0.007694526,-0.0052588866,-0.02782391,-0.02323548,-0.02998194,-0.008459264,0.0015373338,0.020731745,0.04012258,-0.013231023,0.037168387,-0.01752613,0.007490247,0.03155332,0.00831784,0.037671227,-0.008658307,0.0017049478,0.026168723,-0.006353615,-0.019851772,0.025498267,-0.018070875,0.021192685,0.02084698,-0.0075059608,0.012644375,-0.0009415188,-0.029081015,0.0024421872,0.024241162,0.06587227,-0.036770303,0.015577618,-0.009779224,0.012246292,-0.030065745,0.002114816,0.0038394062,-0.03188855,-0.01747375,-0.011240608,-0.006018387,0.02066889,-0.011481553,0.0038105976,0.01993558,0.041882526,0.051206052,0.04253203,0.018783234,-0.008689734,0.06432184,0.011649167,0.02264883,-0.026357288,-0.016709013,0.034528468,-0.0030301453,-0.017463274,-0.027195357,0.02929053,0.017568033,0.05095463,0.020784125,0.0021475533,-0.044752914,-0.023088817,0.0008171178,-0.03350183,0.016289977,-0.0128957955,-0.0003355552,0.0024814715,0.040604472,0.0055836383,0.017945165,0.0037844079,-0.0023767129,-0.0037791699,0.0074169156,0.025582073,-0.062352378,0.020176524,0.021747906,-0.033522785,0.0123824775,0.011198705,0.032852326,0.03048478,0.0059136283,-0.0022811205,0.005054607,-0.017379468,-0.010481108,-0.055354495,0.014372894,-0.002818009,0.016824247,0.01608046,0.004829376,0.035848428,-0.022083133,0.009768749,-0.03446561,0.010303018,-0.011041567,-0.010407777,-0.046429053,-0.020134622,-0.04179872,-0.016845198,0.006353615,-0.00613886,-0.004169396,0.0180604,-0.033837058,0.0099363625,-0.016289977,-0.002539089,-0.021580292,0.003622032,0.011230133,0.022292651,-0.04890136,-0.032559004,-0.032559004,-0.022145988,-0.026210627,-0.026231578,0.011732974,-0.012864368,0.005004847,-0.016803294,0.023549754,-0.025665881,0.0019157747,0.03446561,-0.01602808,0.0019026798,-0.02929053,-0.016551875,0.009208289,-0.045758598,-0.01874133,0.042092044,0.0039886874,-0.017714696,-0.02384308,0.025582073,0.0140062375,-0.04542337,-0.019537497,0.055857338,0.015703328,-0.016143315,0.023570707,-0.026168723,-0.008543071,0.0029175298,-0.017641364,-0.01729566,0.01590237,0.0005846845,-0.024073549,0.008841634,0.045088142,-0.007814999,0.01727471,-0.0053688833,0.0123615265,-0.013765293,0.0028730072,-0.045800503,-0.0043998654,-0.0018974419,0.0025364698,0.039116897,-0.0067307465,-0.014184328,-0.02866198,0.011596788,0.005939818,-0.0030956194,0.0023361188,-0.011722499,0.017337564,0.011439649,-0.0096273245,-0.023151672,0.018919421,0.028117234,-0.011146326,0.020941263,-0.04542337,0.014802404,0.012214864,0.016394736,0.010873953,0.018992752,0.021957424,0.039682593,0.029625759,0.0029515764,0.0068721706,-0.03563891,0.012864368,-0.028117234,-0.021643147,0.0031008574,-0.0150747765,-0.019170841,-0.028368656,-0.0012728182,0.026776323,-0.019307029,-0.039556883,-0.0037975027,0.0075792917,0.039577834,-0.017966116,-0.012832941,-0.021706002,-0.057156343,-0.011732974,-0.005468404,-0.0096273245,0.0028415797,-0.0361208,-0.009140196,-0.0046355724,-0.010659197,0.051164147,0.00018545563,-0.03806931,0.00418511,-0.036665544,0.018269917,-0.022669781,0.01920227,0.020166049,-0.00095985155,0.045381468,-0.009061627,-0.036812205,-0.04395675,0.006992643,-0.058371544,-0.03880262,-0.020857457,0.030673346,-0.010234925,-0.038341682,0.015064301,-0.022481216,-0.0662913,-0.0008688424,0.062017146,-0.019568924,0.007841188,-0.021318395,0.0054841177,-0.03046383,0.03314565,-0.016111888,-0.0045570033,0.020710794,-0.0009670537,-0.05443262,0.0005571853,-0.020092718,0.01922322,-0.038593102,0.014603362,0.003310375,-0.016709013,0.009810652,0.026650613,0.009103531,0.0006534324,0.017777551,0.020459373,0.012675802,0.027844861,-0.051499374,0.009805414,0.060760044,0.004748188,-0.00418511,0.016342357,0.010140642,0.03695887,-0.0056569697,-0.0060707666,-0.014446224,-0.014341465,-0.007993088,-0.01169107,-0.0066050356,0.0069612153,-0.013870051,0.03360659,0.030631443,-0.019034656,-0.00674646,0.03708458,0.0033365644,-0.024911618,0.02102507,-0.021286966,-0.0048660412,-0.019254649,0.015703328,-0.010287304,0.016237598,-0.028012475,-0.008281175,0.015525239,-0.028515317,0.009171624,-0.014624314,0.018552765,-0.000013289214,-0.0081292745,-0.004161539,0.019684158,0.01752613,0.03589033,0.020606035,-0.010465394,0.0028284849,-0.0036298889,0.032621857,-0.0039991634,0.00039742832,0.02878769,-0.0319095,0.018762283,0.019788917,0.014833831,-0.021957424,-0.0067569357,-0.03471703,0.012162484,0.0319095,0.0047167605,-0.0071916846,0.026126819,-0.018804187,-0.016457591,-0.002964671,-0.046051923,0.0096378,0.028263897,0.020145098,0.020794602,-0.00707645,0.015378577,-0.035094164,-0.047057606,-0.00928162,-0.02125554,0.013576727,-0.00052837667,-0.0037582181,-0.023172624,-0.024681149,-0.038027406,-0.010067311,-0.038844526,0.00042034427,-0.0013448398,0.05975436,0.0102454005,-0.024178308,0.023172624,0.008899251,-0.011942492,-0.0005866487,0.00593458,0.007469295,-0.0025731355,-0.009166386,-0.009433521,0.019778442,-0.005065083,0.037901696,0.023193575,-0.020909837,0.017075667,0.000943483,0.046177633,0.0075216745,-0.00090812694,-0.008684496,0.0048477086,-0.0056726835,0.022313602,-0.012832941,-0.014037665,0.02084698,-0.028347703,0.016185218,0.0020480326,-0.02660871,0.0107377665,-0.03869786,-0.01577666,0.020983167,0.02084698,0.002896578,-0.02054318,-0.016803294,0.010444442,0.024806859,-0.012015822,-0.0012688898,0.025728736,-0.012015822,0.015745232,-0.0040332098,0.003852501,0.0022130276,-0.0015988796,0.0044496255,0.032726616,0.0247021,0.013566251,-0.0030196693,0.036225557,0.020249857,0.04781187,0.017767075,0.0057355384,-0.028850544,-0.010853001,0.036435075,-0.011680595,0.02059556,0.06880551,-0.052546963,-0.005609828,-0.02127649,-0.019830821,0.017431848,-0.012413906,-0.020689843,0.0035120354,-0.02145458,-0.012843416,-0.0039860685,-0.02939529,-0.020857457,0.019191794,0.007642147,-0.0058141076,-0.02125554,-0.014477652,-0.018709904,-0.011753926,-0.025246846,-0.024031645,0.032496147,0.023905935,0.022816444,-0.024995426,-0.004394627,0.01704424,0.018887993,0.0031558557,0.044291977,-0.009480662,0.0009513399,-0.013608155,-0.0023675465,0.021601243,-0.0028520555,-0.018699428,0.0331247,-0.0063221874,0.00013495867,0.024157355,0.016237598,-0.016918529,0.012036774,0.0049577053,0.021999326,0.016499495,-0.029772421,0.026902033,-0.011072994,-0.039368317,-0.009653514,0.021538388,0.0043684375,0.024115453,0.012571043,-0.022942154,-0.019904152,-0.029206725,-0.0234869,0.051289856,-0.0070974017,-0.007778333,0.00037025652,0.013786244,-0.014414797,0.003697982,-0.058706775,0.044417687,-0.00026647994,-0.0156090455,-0.020228904,0.010135404,-0.009014485,0.022879299,0.02264883,0.014571935,-0.018280393,-0.024869714,0.019066082,-0.011596788,-0.012612947,0.02807533,0.028117234,-0.014372894,0.03107143,0.0017376848,-0.0018725618,-0.0027499157,0.03228663,-0.019212745,0.023926886,0.028934352,0.017892785,-0.036099847,-0.008186892,-0.004596288,-0.012843416,-0.0017638745,0.031218091,-0.026671564,0.013073885,0.03107143,0.0397245,-0.013566251,0.011554884,-0.014875735,-0.021423154,0.017358515,0.0073331087,-0.03201426,-0.03890738,0.032936133,0.007741668,0.0031741885,0.008773541,-0.036644593,-0.0063693286,0.010413014,0.048105195,0.03325041,-0.023193575,0.04638715,0.017976593,-0.010543963,0.020637464,0.013073885,-0.03576462,0.0007529531,-0.013870051,0.030254312,0.000043663098,-0.007642147,0.007856903,0.010303018,0.006091718,0.00794071,0.060676236,-0.019568924,-0.004172015,-0.0023086197,-0.056108758,0.030778104,0.032831375,0.011450126,0.014131948,-0.006893122,0.00091140065,-0.044836722,0.006343139,-0.06239428,0.0016067366,-0.019893676,-0.018605145,-0.014802404,0.0035984612,-0.018269917,0.0020336283,0.003134904,-0.025477314,-0.014310038,0.00852212,0.0077940472,0.03517797,0.027530586,-0.0009519947,-0.0145195555,-0.009789701,0.035974137,0.017672792,0.017128047,0.02338214,-0.013430065,-0.004030591,-0.027928669,-0.011240608,0.017976593,0.0059188665,-0.0066364636,-0.003061573,-0.016195694,-0.004266298,-0.0015085252,-0.016153792,0.007139305,-0.019118462,0.015200486,0.037168387,-0.03188855,-0.0026975365,0.0038079787,-0.007060736,0.008721162,0.016771868,-0.03188855,0.0035041785,0.026881082,0.038048357,-0.02589635,0.0054107867,-0.018217538,-0.0031113334,0.012413906,0.0076054814,0.016195694,-0.01648902,-0.00900401,-0.015818562,-0.0023007628,-0.014037665,0.014299562,0.0034884645,-0.0035198922,-0.008061182,-0.0041379686,0.030799057,0.0034177525,0.013398637,0.0072283503,0.022565024,-0.012288195,0.0023086197,-0.027069647,-0.009009248,0.022418361,0.05858106,-0.00289134,0.027153455,0.04923659,0.01674044,0.008213081,-0.015064301,0.028201042,0.016499495,0.015514763,0.030421926,-0.015430956,0.0070502604,-0.019726062,0.002539089,-0.009354952,-0.0022261222,-0.009501614,0.018353723,-0.0005526021,-0.019506069,-0.018804187,0.021297444,-0.03974545,0.014854783,0.014571935,-0.041652057,-0.011586312,0.025623977,-0.020805078,-0.01156536,0.024890667,0.032600906,0.032559004,0.017442323,-0.0043082014,0.005395073,-0.016625205,0.03700077,-0.015766183,-0.02516304,-0.006034101,0.024304017,0.033962768,0.03132285,-0.018510861,-0.0017128047,-0.0016774486,0.001935417,0.00093955453,-0.0101825455,0.044417687,-0.049320396,-0.02264883,0.015944274,-0.025938254,0.013346258,0.0088783,-0.033459928,0.012539616,0.048189,-0.016310928,-0.0028022951,0.0494042,0.024869714,0.009711131,-0.0048660412,-0.010371111,0.019265125,0.028012475,0.009140196,0.009847318,0.0020781506,-0.004596288,-0.0063117114,-0.006432184,-0.0030118125,0.028620075,-0.024995426,-0.008228796,0.0027630106,0.030861912,-0.013178644,0.028724834,-0.035576053,-0.017620413,0.023067866,0.003459656,-0.025728736,-0.017987069,0.0044731963,-0.007841188,-0.024199259,0.023780225,-0.009313048,0.0022261222,-0.015221438,0.0043920083,-0.0517927,0.01072729,0.0011739521,-0.0013310902,-0.02011367,0.05711444,0.0032789472,0.0059869597,0.0010299089,-0.0067150323,-0.0124034295,-0.0046460484,-0.012497713,-0.018626096,0.022292651,0.004805805,-0.0081292745,0.0074431053,0.028829593,-0.059000097,0.016237598,0.0016931625,-0.016908053,-0.008469741,-0.013891003,-0.003938927,0.03817407,0.000902889,-0.026126819,-0.0009546136,-0.00999398,-0.024660198,-0.014341465,-0.027844861,-0.025477314,0.018217538,-0.0030065747,0.009973028,0.0064793252,0.024345921,-0.0051017487,-0.002886102,0.002888721,0.0009906244,-0.020564131,-0.0003208235,0.007338347,0.017033763,0.016761392,-0.0023112388,-0.022376457,0.024115453,-0.012372002,-0.011177753,0.026210627,0.012979602,-0.018228013,-0.0018241107,-0.007364536,0.009512089,0.033878963,0.000705157,-0.014341465,0.037021723,-0.027027743,0.013388162,-0.0046041445,0.007904043,0.00662075,0.04274155,0.014257658,-0.007401202,-0.025393508,-0.022439312,0.01138727,-0.025833495,-0.025938254,0.057784896,0.015525239,0.006489801,0.007909281,-0.063190445,-0.002880864,0.008584975,0.017578509,-0.012476761,-0.0041536824,-0.0017219711,0.025456363,-0.007312157,0.00043114752,0.030212408,0.033941817,0.005070321,-0.04772806,-0.0076683364,-0.032957084,0.036476977,0.011753926,0.008323078,0.0023073102,-0.010041121,0.025582073,0.012780561,-0.025854446,-0.0088259205,-0.021496484,0.018322296,0.021014595,0.008810206,0.024723053,-0.018961323,0.022565024,-0.035303682,-0.017128047,0.009962552,0.016572826,0.030882863,-0.029500049,-0.023926886,-0.015525239,-0.019139415,0.00046355723,-0.01650997,0.00077848806,0.027174406,0.0065683704,-0.025330653,0.0029830039,-0.025938254,-0.034235142,0.03325041,-0.010098739,-0.018500386,-0.02325643,-0.008946393,-0.026357288,-0.0026071821,-0.000400702,-0.018751808,-0.005950294,-0.010035883,0.035827473,0.006584084,-0.009292097,0.0150747765,0.022418361,-0.03626746,0.02118221,-0.008904489,-0.008778779,0.024220211,0.0012983531,0.010706339,0.00662075,-0.012141533,-0.017431848,-0.011114898,0.022355506,0.01493859,0.015305245,0.003056335,0.019107986,0.011973919,0.004536052,0.015106204,-0.03999687,0.010413014,-0.0014312657,0.06277141,0.02662966,0.012508188,0.003860358,0.002103031,-0.03348088,0.026168723,-0.0099573145,-0.032579955,0.007731192,0.0023452854,-0.020375567,-0.0080664195,0.001529477,-0.014142424,-0.010313494,0.019024178,0.04676428,-0.009224003,0.014676694,-0.023926886,-0.02264883,0.03723124,0.02457639,0.045213852,-0.010821573,-0.0033548973,0.0022012421,0.04395675,-0.0113348905,0.024262113,0.0124034295,0.017065192,0.014226231,-0.020260332,-0.022187892,0.044752914,0.027991524,0.016111888,0.006023625,0.036686495,-0.0123824775,-0.06331616,0.0075321505,0.018290868,-0.027761055,0.017033763,-0.017505178,-0.012864368,-0.009988742,-0.0010849072,-0.030317167,-0.0005954877,0.021894567,-0.06687795,0.010570153,0.02168505,-0.0385512,-0.022816444,-0.0074431053,-0.024492584]},{"id":"guide-embeds-9","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Video and Audio\nsetVideo() and setAudio() add video/audio to embeds (Fluxer supports these). Pass URL or EmbedMediaOptions. Include a title when using video. See Embed Media guide for full examples.\n\n```javascript\nembed.setVideo('https://example.com/video.mp4');\nembed.setAudio({\n url: 'https://example.com/audio.mp3',\n duration: 120,\n content_type: 'audio/mpeg',\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.062486246,0.0033307478,-0.03719108,-0.03326935,0.0052208044,-0.032288916,0.0058281277,-0.01508777,0.01258222,-0.01650395,0.0028677657,-0.003973476,0.024292944,-0.042485416,-0.038411174,0.008894703,-0.02958728,0.007881589,0.033334713,0.04322619,-0.030131966,-0.008110357,-0.040088803,0.069893956,-0.034162633,-0.056865096,-0.019957252,0.0922914,0.02448903,-0.0137914205,0.042158607,-0.016569313,0.01726651,0.013442822,-0.04662502,-0.013933038,0.042093243,0.0014488617,-0.025796274,0.037822913,0.03276824,0.015806753,-0.019826528,-0.009793433,0.011972173,0.022702465,-0.0461457,-0.007434948,-0.021351645,0.067235895,0.021547733,0.01989189,-0.03527379,-0.031243123,0.003570409,0.02775714,-0.02732139,0.0050356113,-0.050764628,-0.036559246,0.026820282,-0.017647788,0.0190095,0.02424937,-0.014619341,-0.016373226,-0.06453426,0.011950386,-0.0039979867,0.012451495,0.057344418,-0.021634882,-0.00046638638,-0.004346585,0.00048136522,0.04453343,-0.029696217,0.020251382,-0.0137914205,-0.023225361,0.03268109,0.008404487,-0.07093976,0.006530771,-0.077214524,0.07011183,-0.034402296,0.017658683,-0.013388353,-0.023922559,-0.055122107,-0.036472097,-0.091594204,0.018650008,0.012974393,0.039478756,0.0025858912,-0.0057954467,0.037387166,0.065710776,0.044293772,-0.04137426,-0.05390201,-0.033073265,0.038062576,-0.06361919,0.027539266,0.043901596,-0.008932832,-0.022833189,-0.017963706,-0.016220715,-0.012233621,0.0023326129,0.040655278,-0.0111279115,0.034838043,0.0058335746,-0.0062257475,-0.021525946,-0.087062426,-0.031896744,0.0563422,-0.013126904,0.04762724,-0.030240903,-0.0047605457,0.0042621586,-0.06396779,-0.031155972,0.008954619,-0.037931852,0.014183593,0.0061985133,-0.02203795,0.009243302,0.0043765428,0.028868297,0.007010094,-0.0013399248,0.047278643,-0.025926998,0.0559936,0.0021610372,0.0039380714,-0.015621562,-0.037866488,0.008829341,-0.015806753,-0.018693583,-0.028040376,-0.0073151174,-0.0357749,0.025382314,-0.059566732,-0.024794053,-0.017658683,-0.026798494,-0.018399455,-0.014902577,0.017658683,-0.008257423,0.027473902,-0.013105117,-0.006236641,0.009875136,0.005926171,-0.01228809,-0.03601456,0.048847336,0.0070209876,-0.004915781,-0.0281711,0.0014692873,0.025033714,-0.046668597,-0.0002745552,-0.071244776,0.02716888,0.03309505,-0.01700506,0.019739378,-0.009134364,0.019815635,0.006040555,0.037408955,-0.03810615,-0.0131813735,0.006710517,-0.024445456,-0.023944346,-0.007723631,-0.028192887,0.038650837,-0.0064817495,0.016700037,0.021863649,0.0031700658,0.048368014,-0.015599774,0.028323611,0.037910067,0.02059998,-0.034053694,-0.031047035,-0.0024292944,-0.013693376,0.018955033,-0.021471476,0.065972224,-0.0036384948,0.03344365,0.027582841,-0.015392793,-0.032659303,0.06510073,-0.013813208,0.007870696,-0.023116425,0.0012595836,-0.062224794,0.019554185,0.01809443,-0.005751872,-0.0035132172,-0.0003147257,-0.04348764,-0.0039761993,-0.020109763,0.037648614,0.026144871,-0.032223556,-0.008943725,-0.003311684,0.018617328,0.013475503,-0.02858506,-0.0035840261,-0.008644149,0.0014597554,-0.025011927,-0.033073265,-0.016841656,-0.001196945,-0.015469049,0.0065525584,-0.0019063969,-0.060743254,-0.023094637,0.05425061,0.06388064,-0.003807347,0.05943601,0.0084480615,0.048934486,-0.05943601,-0.027735353,0.04897806,-0.020011721,-0.010703057,0.0064490684,-0.0054141674,-0.007799887,-0.0181489,0.0061168107,-0.016928805,-0.04346585,0.006035108,0.022637103,-0.03359616,-0.006901157,-0.019630441,0.00086877233,0.031047035,-0.003537728,-0.008856575,0.042027883,0.013747845,-0.0025995085,0.043356914,-0.024227582,-0.041396048,-0.0461457,0.037931852,-0.016765399,-0.0056701694,-0.014216274,-0.011939492,0.00031285334,-0.005855362,-0.023508597,0.0065144305,0.04128711,-0.04714792,-0.023421448,0.067061596,0.033814035,-0.0032245342,0.042245757,0.032724664,0.016700037,0.001035582,0.00249738,0.03187496,0.022920338,0.029151533,-0.013148692,-0.011040762,0.06374992,-0.020077083,0.020839643,-0.012157366,-0.005746425,0.004185903,-0.019020395,0.038825136,0.06771522,0.042877592,-0.01620982,-0.011122464,0.048847336,0.0055830195,0.016231608,-0.09534163,-0.0093631325,-0.047322217,-0.024859415,-0.020284064,0.0072715427,0.0009974542,0.030698437,0.013824102,0.014020188,0.036842484,0.0059425114,-0.03401012,0.014041975,-0.020676237,-0.032049257,0.004014327,-0.032877177,-0.02590521,-0.027343178,0.007434948,-0.029456556,0.012320771,-0.040589914,0.0054795295,0.006503537,-0.00310198,-0.031068822,-0.007004647,-0.028040376,-0.012222728,0.052376892,-0.02675492,-0.010953612,-0.07355424,-0.0132140545,-0.03233249,-0.037300017,0.020414788,-0.015207601,0.045187052,-0.00090145343,-0.026449896,0.015741391,0.016732719,-0.018257836,-0.0229857,0.031722445,0.028018588,0.007135371,0.032746453,-0.03459838,0.021449689,0.040001653,0.011187826,-0.032790028,0.007080903,-0.017070422,0.019902784,0.0038046236,-0.061745472,-0.0217765,-0.023966134,0.023247149,0.031352058,0.014750065,0.025948785,-0.033138625,-0.018704478,-0.029325832,-0.03320399,0.06592865,0.042267542,0.028367186,0.02525159,-0.0059806397,-0.023334298,-0.0099404985,-0.0116889365,-0.003023001,0.01997904,0.024380093,-0.0081266975,0.05690867,0.010256415,-0.012691157,-0.014739172,0.0047360347,0.0014148189,0.03651567,0.014346998,-0.013257629,0.025861636,0.004085136,-0.04832444,0.031112397,0.008208401,-0.008927384,-0.022942126,-0.018366773,-0.027953226,0.031809594,-0.046581447,0.021101091,-0.011743405,0.044271983,-0.03320399,-0.06026393,0.0107902065,0.055383556,0.015458155,0.0050900797,0.0055830195,0.005811787,-0.037234657,-0.013736951,0.014434149,-0.05974103,0.04281223,0.034554806,0.011073443,-0.055078533,-0.0026471682,-0.040154167,0.034990553,-0.030436989,-0.04588425,0.009395814,0.005637488,0.0004408543,0.0027452116,0.03470732,0.018813414,0.02623202,0.004785056,0.032463215,-0.01688523,0.0024837628,0.021994373,-0.033530798,-0.009123471,0.012647582,-0.0046134805,-0.011885023,0.02156952,-0.0035350046,-0.054424908,0.018584646,0.040306676,0.011018975,0.012331665,-0.044402707,-0.08993836,0.0056483815,-0.0706783,-0.0005103016,0.005593913,0.026166659,0.018758945,-0.040437404,0.021046622,-0.053291965,0.069937535,0.03936982,-0.034075484,0.009733518,-0.07250845,-0.035709538,-0.022898551,0.0035813027,-0.00860602,0.0019649505,-0.005915277,-0.058564514,-0.014412361,0.01859554,0.025970573,0.034249783,0.006563452,-0.038541898,0.046537872,0.03435872,-0.0056701694,-0.012821881,-0.004662502,-0.010496077,0.044751305,0.004855865,-0.02381362,0.0037910065,0.032223556,0.01029999,0.011383913,-0.014041975,0.018246941,0.0027111687,-0.040415615,-0.014216274,0.03963127,0.009259642,0.013519078,0.016863443,-0.0033171307,-0.0127892,-0.035992775,0.0066015804,-0.035143066,-0.018519284,0.0043520317,-0.015360112,-0.0029930433,-0.05259477,0.03736538,-0.043531213,0.033988334,0.0073532453,-0.021079304,-0.020534618,0.0402631,-0.030066604,0.0146411285,-0.023138212,0.002378911,-0.0017634172,0.02507729,-0.026123084,0.0024238476,0.010959059,-0.08497083,0.01709221,-0.028824722,0.020425681,0.041918945,-0.0030801927,-0.00791427,-0.033073265,-0.012898137,0.018911457,-0.034641955,0.0149788335,0.029478343,-0.012113791,-0.003902667,0.017375447,-0.02027317,-0.0013154139,-0.008480743,-0.042332906,-0.0068739224,0.005713744,0.05533998,-0.005354252,0.0049348446,-0.023987921,0.015338325,-0.03695142,0.012124685,0.0032653855,-0.04405411,0.012691157,-0.015305644,0.002506912,0.015349219,-0.015240282,0.01833409,-0.014957045,0.011852342,0.038890496,0.026362747,-0.00917794,-0.016079096,0.001428436,-0.0075384383,0.0011247742,-0.031286698,-0.009412154,0.017462596,-0.018421242,-0.02198348,0.0016667356,0.0031755127,0.019543292,0.026515258,0.007887037,0.020262277,-0.038716197,-0.005071016,0.0019785676,-0.016231608,0.0026321895,-0.03427157,-0.031286698,-0.0063510253,0.0015428198,0.0052425917,0.028367186,0.012353452,0.01985921,0.008251975,0.0013637546,-0.00018263963,-0.032833602,0.02766999,0.008426274,-0.028802935,0.019870102,0.010817441,0.036428522,0.021057516,0.031025248,-0.008529765,0.013431928,-0.041679285,-0.01942346,0.002331251,-0.0010137947,-0.00948841,0.028911872,-0.011231401,0.03621065,0.021144666,-0.017822089,0.0014965216,-0.01664557,0.002128356,-0.0066397083,-0.007963292,-0.018867882,-0.022593526,-0.019401673,-0.00041838604,0.022419227,-0.031199548,-0.023421448,0.009962286,-0.020033509,-0.011623574,-0.019750273,0.009679049,-0.0062638754,0.003003937,-0.00039489652,0.023791833,-0.024053283,0.00900364,-0.013388353,0.00057294033,-0.067323044,-0.033334713,0.012702051,-0.01859554,0.008823894,-0.033639736,0.025186228,0.008507977,0.0030420648,0.030284477,-0.042027883,0.015436368,-0.053945586,-0.01208111,0.0110952305,-0.05407631,-0.016482163,0.027887864,0.0064381748,-0.01809443,-0.035600603,0.017669575,0.015196707,-0.00044425856,-0.021547733,0.061004702,0.003962582,-0.03592741,0.01868269,-0.057954468,0.0081757195,0.0026934666,-0.007946952,-0.02675492,0.0052289744,-0.027256029,-0.014837215,-0.0056538284,0.04806299,-0.016329652,-0.0050900797,-0.007990527,0.0045617353,-0.022419227,-0.00769095,-0.020077083,-0.006421834,-0.025534825,0.018944139,0.02884651,-0.0063074506,0.009858795,-0.03636316,0.0015673307,-0.030240903,-0.030436989,0.009804327,-0.0010260501,0.0068739224,0.0010512418,0.0066723893,-0.012516857,0.0011274976,0.03435872,-0.035905626,0.03592741,-0.03651567,0.006857582,-0.0028841062,-0.024292944,-0.0056102537,0.023116425,0.057300843,0.014096444,0.020763386,0.006677836,0.008823894,0.011253188,-0.028018588,-0.0047687157,-0.029805154,0.0046652257,-0.0009926881,0.009531985,-0.05682152,0.008709511,0.028323611,-0.008355466,-0.015458155,0.0017743108,-0.0072769895,0.0191838,-0.0054822527,-0.022234036,-0.024336519,-0.049936704,-0.009597347,0.0005222166,-0.010185607,0.013889464,-0.044097684,-0.0005719191,-0.016068203,-0.008311891,0.045361355,-0.018606434,-0.045927826,-0.009798881,-0.016340544,0.016416801,-0.015469049,0.023900772,0.010643141,-0.017789407,0.03893407,-0.010136585,-0.012800094,-0.033160415,-0.043422274,-0.044271983,-0.0089873,-0.040306676,0.028149312,-0.037321806,-0.01228809,0.0076038004,-0.011351232,-0.062355522,0.008791213,0.026275596,0.00044051386,-0.010087564,-0.022462802,0.024619754,-0.01700506,0.019761166,-0.01792013,0.0006560048,-0.0013637546,0.025839848,-0.04906521,-0.010692163,-0.014238061,0.030001242,0.008780319,0.041657496,-0.028127525,0.00978254,0.007042775,0.043269765,0.038520113,0.01968491,0.012113791,0.030371627,0.009079896,0.004763269,-0.023639321,0.024140432,0.051679697,0.0042730523,0.01876984,0.027561054,0.012015748,0.02740854,-0.015676029,0.007712737,-0.03401012,0.017277403,-0.002895,-0.01818158,-0.014717384,0.04623285,-0.00037957725,0.012233621,0.0067704325,-0.003338918,-0.0017566086,0.013802314,0.00827921,-0.00998952,0.017669575,0.021340752,0.002124271,-0.033705097,0.020992154,0.003306237,-0.021852756,0.012015748,-0.0019404397,0.02658062,-0.02339966,0.006296557,-0.015850328,-0.015065983,-0.004047008,-0.021732925,-0.027103517,0.011307657,-0.0042730523,0.038977645,0.04181001,0.013889464,0.012560433,0.016253395,-0.00379373,-0.008393593,0.010071223,0.025360527,-0.014662916,0.0153819,0.014129125,0.029652642,-0.020175127,-0.028563272,-0.018127112,-0.004139605,0.03960948,0.054947805,-0.04540493,0.022179566,-0.008807554,-0.006852135,-0.021972585,-0.04488203,0.008290104,0.045274206,-0.015458155,0.057213694,0.004014327,0.013246736,0.009597347,-0.017843876,0.009482963,-0.016035521,0.002535508,-0.015959267,-0.030393414,-0.014957045,-0.025142653,-0.026406322,0.018562859,-0.013638908,0.007936058,0.014390574,-0.0034914298,-0.01169983,-0.018214261,0.05359699,0.0030829161,-0.030328052,-0.030240903,-0.019935464,-0.01830141,-0.0006025576,-0.033160415,-0.014630235,-0.017222935,-0.00039625823,0.05050318,-0.010811994,-0.0049457382,0.031700656,0.0034315144,-0.02248459,0.012146472,-0.0056592757,-0.011144252,0.0075602257,-0.026449896,0.032310706,-0.012092004,-0.022963913,0.03459838,-0.0076255878,0.035252,-0.016623782,-0.030436989,-0.0021174622,-0.0037065803,-0.03233249,0.017996388,0.043596573,0.015033302,-0.015207601,-0.013366566,0.011209614,0.0057082972,0.019575974,0.034467656,0.025229802,-0.013148692,0.033639736,0.012636689,-0.00012374559,0.006459962,0.0021882714,0.0076637156,0.0034424083,0.0060133208,0.020589087,-0.0026703174,0.018911457,0.036341373,0.031722445,0.0016272459,0.016307864,-0.022593526,-0.0071190307,0.0131813735,-0.009766199,0.0137914205,0.024031496,-0.022637103,0.025316952,-0.03244143,-0.003954412,0.021210028,-0.0025954233,-0.0059806397,0.049675256,-0.052638344,-0.011471063,-0.019750273,-0.024946565,-0.031722445,-0.012157366,0.0010233267,0.011351232,-0.009335898,0.000979071,0.009226961,-0.023007488,-0.026319172,-0.021384327,0.0071244775,0.012233621,0.025839848,-0.0023829963,-0.0034614722,-0.01317048,0.029064383,-0.015196707,0.020926792,-0.0155235175,-0.016438589,-0.023094637,0.0071190307,0.013235842,-0.00739682,-0.027452115,0.011340339,-0.01650395,0.0119939605,-0.019586867,-0.015708711,-0.007135371,0.0049457382,0.011427488,-0.018290516,0.007195287,-0.008023208,0.023094637,-0.018606434,-0.045753527,-0.0067704325,0.014357892,0.03660282,-0.0020166957,0.030480564,0.012723838,-0.023922559,0.0017892896,-0.0033225776,0.02590521,-0.012135578,0.004052455,-0.0042158607,0.018911457,-0.02265889,0.011569106,-0.03470732,0.040589914,0.02893366,-0.029064383,-0.012309877,0.022201354,-0.021101091,0.0021964416,-0.009662709,0.02065445,-0.019325418,-0.0059316177,0.007434948,-0.023530385,-0.0022808677,0.023421448,0.036755335,-0.033552587,-0.008257423,0.007843462,0.03884692,-0.021417009,0.038345814,-0.0006937923,0.014695597,0.02499014,-0.002317634,-0.02207063,0.016569313,-0.0007857079,-0.02407507,-0.0013746483,0.026384534,-0.03734359,0.018922351,0.047322217,0.013105117,0.021787394,0.002137888,-0.011231401,-0.011274976,0.01597016,-0.009722624,-0.025360527,-0.019336311,0.041853584,0.012516857,0.016482163,0.0096191345,-0.035208426,0.00007974527,0.013867676,0.035796687,0.020883217,0.009493857,0.041853584,-0.005964299,-0.003968029,0.0025641038,0.00860602,-0.025229802,0.001992185,-0.02566555,0.0038699857,-0.03150457,0.0069883065,-0.0035540685,0.008251975,-0.009303217,-0.016166246,0.040742427,-0.006933838,-0.0084153805,0.025709124,-0.049108785,0.02507729,-0.0046570553,0.004648885,-0.00929777,0.010539652,-0.008148485,-0.017778514,0.011117018,-0.06043823,0.05032888,-0.016035521,0.026035935,-0.019935464,0.0024211241,-0.0038100705,0.029652642,0.014009294,-0.01691791,0.004275776,-0.004474586,-0.0048068436,0.014837215,0.038498323,0.022637103,0.0024538052,-0.0165911,0.05050318,0.0055448916,0.019674016,0.0023625705,-0.007358692,0.0010914123,-0.03875977,0.011471063,0.021722032,-0.013192267,-0.02699458,-0.015915692,0.018813414,-0.012113791,0.022353865,-0.034249783,-0.007173499,-0.028781148,0.0053488053,0.062791266,-0.042507205,-0.0046897363,-0.0010648589,0.018421242,0.018344985,-0.0016966932,-0.028868297,0.035252,0.019238269,0.0216022,-0.043683723,0.015610668,-0.027975013,0.0032844495,0.035491664,0.012146472,-0.0018260559,-0.0052507618,-0.005234421,-0.033421863,0.023268936,0.0046189274,-0.008981853,-0.00060051505,0.006432728,-0.019107545,-0.016471269,0.025316952,0.027473902,0.016035521,0.015076877,-0.009101683,0.00008097931,-0.01029999,-0.03677712,0.003017554,-0.013976613,0.043727297,-0.0065198774,0.020175127,0.0165911,0.03886871,0.013889464,-0.00520174,-0.010169266,-0.002474231,0.003929901,0.020175127,-0.0015577986,0.04322619,-0.023617534,0.020109763,0.024968352,-0.03886871,0.0066015804,0.012375239,-0.007925164,-0.017081317,-0.012146472,0.003948965,-0.011449276,0.012952605,0.008633255,-0.0509825,-0.01664557,0.026035935,-0.018083537,0.015621562,0.041766435,0.025316952,0.032158192,0.008115804,0.016188033,0.008725851,-0.0063946,-0.0040088804,-0.007788993,-0.02599236,0.006470856,0.043727297,-0.0020602704,-0.006939285,-0.03830224,0.013257629,-0.020665342,-0.0012003492,0.005713744,-0.03895586,0.012549539,-0.055165682,-0.008671382,0.0105015235,-0.028236462,0.0229857,-0.0190095,-0.037234657,0.014390574,0.02466333,0.0102128405,-0.016329652,0.012549539,-0.0043438617,0.032005683,-0.004338415,-0.01617714,-0.00038808794,0.025796274,-0.012571326,0.008916491,-0.0087530855,0.00019234183,0.006329238,0.0052752728,-0.027517479,0.025600187,-0.004175009,0.0036357713,-0.0060187676,0.046102125,0.028149312,0.021155559,-0.021820074,-0.0035458982,0.022724252,0.007402267,0.018225154,-0.0039516883,0.00929777,0.0041014766,0.016449481,0.033225775,0.034315147,-0.0012194131,0.0017988217,0.0114165945,-0.02466333,0.011089783,-0.00007723461,-0.0055830195,0.0046516084,0.011106124,-0.02516444,0.0067377514,-0.010419821,-0.0032599387,0.003840028,0.005822681,-0.04252899,-0.050938927,0.0024006984,0.005632041,-0.016994167,0.0024292944,0.027386753,-0.046930045,-0.018508391,0.002615849,-0.010191053,-0.0058989367,-0.000066170694,0.005915277,0.0073859263,-0.0027683608,-0.016667357,-0.023748258,-0.005433231,-0.023116425,-0.043509424,-0.002766999,-0.014771853,0.03392297,-0.026166659,-0.002289038,-0.009183386,0.017277403,0.021700244,-0.03679891,-0.00010306459,0.0084480615,0.0066669425,0.022789614,-0.003878156,0.0122663025,0.012102897,-0.013268523,0.01735366,0.047975842,-0.019815635,0.03442408,-0.001390308,0.024380093,0.015065983,0.020066189,0.011645362,0.02507729,0.0411346,0.02416222,-0.0021732925,-0.010528758,-0.0279968,0.030502351,0.02122092,0.006525324,-0.015327431,0.01977206,-0.0013971166,-0.0073205642,-0.014826321,-0.024859415,0.028890084,0.0047687157,-0.013606227,0.017811194,0.01149285,-0.011895916,0.0045835227,-0.015414581,0.015741391,-0.014782746,0.020926792,-0.0090417685,0.008905597,-0.00030927887,-0.0053515285,-0.008916491,0.008409934,-0.0041695624,0.007685503,0.0042267544,-0.03660282,-0.0064109406,-0.016057309,0.036733545,-0.011062549,-0.03679891,0.00068596244,0.0022304845,-0.00014246913,0.01240792,-0.014652022,0.022201354,-0.020545512,0.007080903,0.018737158,0.02808395,0.039391607,-0.0062693227,0.011558212,-0.023203574,-0.00769095,-0.017124891,-0.00037447084,0.05006743,-0.052856218,-0.038019,-0.01773494,-0.017865663,0.0043928833,-0.027430328,-0.008774873,0.0067268577,-0.018584646,-0.020414788,0.012593114,-0.024881203,-0.011405701,0.012636689,0.0011063911,-0.020545512,-0.030545926,-0.0120266415,0.018573754,-0.0043629254,0.0008081761,0.008034102,-0.029979454,-0.012843668,0.020708917,0.008017761,-0.004578076,-0.0027942332,0.03509949,-0.015774073,-0.009237855,-0.028388973,0.017157573,-0.008889257,-0.04119996,-0.009967732,-0.022441015,-0.0049648024,-0.014009294,0.0013957549,-0.02106841,0.0056592757,0.013628014,0.0014012017,0.014238061,0.014390574,-0.0037828363,0.028606847,-0.045753527,0.005335188,0.00015770328,0.041657496,0.049762405,0.008094016,0.02481584,-0.0107902065,-0.023181787,-0.0019880997,-0.007870696,-0.016079096,0.041548558,0.006715964,-0.019728485,0.0073532453,-0.00950475,-0.0044527985,-0.013519078,0.013192267,0.0057082972,0.0047033536,0.010926378,0.014684703,-0.010245522,0.029282257,0.031112397,0.018138004,-0.01266937,-0.03952233,0.016198928,0.046014976,-0.05708297,0.028650422,-0.0030447883,0.0090254275,0.03810615,-0.033726886,0.011106124,0.020610875,0.03368331,0.0037065803,-0.014859002,0.02740854,-0.0036929632,-0.057387993,0.009738965,0.025316952,-0.03359616,0.021144666,-0.022201354,-0.029412981,0.015076877,-0.012211834,-0.03409727,-0.018846095,0.0070645623,-0.05032888,0.020000827,0.023987921,-0.0032735558,-0.04745294,-0.03666818,-0.019042183]},{"id":"guide-embeds-10","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Multiple embeds\nMessages can include up to 10 embeds. Pass an array to embeds.\n\n```javascript\nawait message.reply({\n embeds: [\n new EmbedBuilder().setTitle('First').setColor(0x5865f2),\n new EmbedBuilder().setTitle('Second').setColor(0x57f287),\n ],\n});\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.010027303,-0.008021843,0.030258683,-0.004535145,-0.017957712,-0.0069185346,0.025260272,-0.020237476,-0.0119657125,-0.004571719,-0.009350689,-0.03547654,0.03547654,-0.05661617,-0.0031301037,-0.0119657125,-0.011350054,0.0073635154,0.03169725,0.054909393,0.0307951,-0.007186742,-0.041474633,0.045936633,-0.009332403,-0.010344276,-0.0053153853,0.03040498,0.014385676,-0.011130611,0.015970537,-0.011252524,0.012739857,-0.008564354,-0.041377105,0.009881008,0.03691511,0.02484577,-0.009228777,0.057347644,0.06505252,-0.0053153853,-0.013690774,-0.022639152,-0.03313582,0.034793828,-0.059103183,-0.0136542,0.015958346,0.067393236,0.024163058,0.034647536,0.021663852,0.031038923,-0.021773573,-0.004910026,-0.06471116,0.012739857,-0.01814058,0.014690457,0.039572798,-0.011331768,0.0059798085,0.016884882,-0.011575593,-0.019457236,-0.053300146,0.011514636,0.011618262,0.023797322,0.04025551,-0.0047149663,-0.0010994984,0.02056664,0.03949965,0.0062114424,-0.039207064,0.0002131564,-0.013349419,-0.03225805,0.0132153155,-0.007973078,-0.08558258,0.017214047,-0.061053783,0.014458823,-0.0075402884,-0.031160837,-0.027820434,-0.019420663,-0.031843547,-0.03691511,-0.077341296,-0.010319893,0.02913709,-0.008570449,-0.048033528,0.012520415,-0.0036360405,0.025845451,0.08329062,-0.038914472,-0.12883714,0.006180964,-0.00926535,-0.04530269,0.025162742,0.04661934,-0.016531335,-0.015373167,-0.04600978,0.019481618,0.007991365,-0.011374437,0.053592738,0.0036329927,0.02115182,-0.00033792623,0.014970856,-0.040426187,-0.06446733,-0.04603416,0.079291895,0.0035903233,0.009240968,-0.04503448,-0.012703283,-0.024504414,-0.03732961,0.03430618,-0.015726713,-0.006449172,0.061687727,0.023992382,-0.039743476,-0.004958791,-0.03403797,0.017921139,-0.02133469,-0.012160772,0.055884693,-0.030429361,0.007765827,-0.024406884,0.019371897,-0.008009652,-0.0742691,0.012581371,-0.00882037,-0.040889453,-0.016726395,-0.0024382502,-0.06041984,0.018311258,-0.040206745,-0.022383137,0.0005996571,-0.015153725,-0.026869517,-0.035647217,-0.041572165,-0.027893582,0.010545432,-0.027966728,-0.046326753,-0.0052483333,0.026552543,-0.02123716,-0.022163693,0.015068386,-0.0057329354,-0.031794783,-0.06227291,0.0026973141,0.037744112,-0.010466189,-0.027137725,-0.06680805,0.013666392,0.03284323,0.024211824,0.04047495,-0.01900616,0.0032032512,-0.029161472,0.03430618,-0.015214681,-0.012215633,-0.00093186874,-0.035354625,-0.036695663,0.0040962603,0.023224333,0.008533875,-0.005202616,-0.045936633,0.010490571,0.014032129,0.01645819,-0.03801232,0.01666544,0.020773891,0.03272132,-0.0011345482,-0.023602262,-0.024626326,-0.016750779,0.00016639152,-0.020542257,0.02523589,0.0518372,0.0007432853,0.004949648,-0.022358753,-0.030039242,0.010063877,-0.04201105,-0.029015176,-0.068563595,0.014312528,-0.07187961,0.021578513,0.06978272,-0.022590388,-0.0021151819,0.032038607,-0.028746968,0.005781701,-0.0017357293,0.052666202,0.040986985,-0.027357167,0.0050197477,-0.058713064,-0.017104324,0.044376153,0.01510496,0.044888183,0.019957077,-0.016238745,-0.011575593,-0.008064512,0.029259002,-0.02701581,0.0246629,-0.016811734,0.010319893,-0.042961966,-0.0034257413,0.059298243,0.0586643,0.0096737575,0.01998146,-0.0072659855,0.028966412,-0.04447368,-0.036012955,0.03801232,0.014373484,-0.033208966,-0.0030310496,0.02123716,-0.049862213,-0.008783796,0.007948696,0.011490254,0.026796369,0.036134865,0.026674457,-0.04084069,-0.00041526448,-0.01194133,0.0012297924,0.016421614,-0.0027445552,-0.0005798464,0.0029137088,0.010338181,-0.02027405,0.007223316,-0.009777383,-0.034671918,0.001723538,-0.0013768494,0.007095308,-0.008283955,0.0077231573,-0.011752365,0.0014134231,0.0085094925,-0.0016199125,-0.009844434,0.033160202,0.009368976,-0.008832561,0.057542704,0.033282116,0.012617945,0.035720363,0.031233985,-0.018981777,-0.018384406,0.039792243,0.00628459,0.0032093467,0.005306242,-0.030843863,-0.024833577,0.026845135,-0.035525303,0.02212712,0.00055622583,-0.053446442,-0.008716744,-0.026576927,0.016933648,0.031550955,0.024736047,-0.01461731,-0.017384723,0.053348914,0.031819165,0.021005524,-0.06753953,-0.04757026,-0.043571528,0.0016686774,-0.01647038,0.012532606,0.019323133,0.020737316,-0.004132834,0.006979491,0.053153854,0.023711983,-0.053934094,-0.0072111245,-0.022480667,0.011795035,0.0346963,-0.019530384,-0.0006388977,0.022395328,-0.0555921,-0.045156393,-0.03216052,-0.053739034,0.02427278,-0.01276424,-0.0108624045,-0.0034866978,-0.012398502,-0.016580101,-0.04661934,0.061053783,-0.048886914,0.015860816,-0.01655572,-0.0030660995,-0.009021525,-0.017799227,0.023285288,0.02213931,0.00946041,0.010484476,0.0067234747,-0.011813322,0.024431266,-0.0087777,0.010917265,0.015519462,0.045278303,-0.0108014485,-0.00017229666,-0.034476858,0.030551273,0.01032599,0.007838974,0.021017715,0.0121729635,-0.007302559,-0.005988952,-0.019762017,-0.019542575,-0.011228141,0.00940555,0.030453743,0.020822655,-0.015360976,-0.004181599,0.019640105,-0.017531019,-0.032770082,-0.0040109213,0.07373268,0.058518004,0.027576609,-0.014202807,0.004181599,-0.0084607275,-0.0185307,-0.034184266,0.027186489,-0.0020587975,0.02272449,-0.005723792,0.0062723984,-0.012739857,0.012258302,-0.0097956695,0.021810148,-0.009228777,0.018189346,-0.0028679918,-0.022773257,0.02193206,0.002522065,-0.04608293,-0.0006617563,0.03323335,-0.023187758,-0.06558893,-0.025942981,-0.03528148,0.05642111,-0.023565687,0.06139514,-0.035720363,0.02046911,-0.053105086,-0.10084602,0.012971491,0.078121535,0.029600356,0.022968316,-0.02133469,0.010703918,-0.014605118,-0.024065528,-0.0008122421,-0.007485428,0.03411112,-0.014653883,0.024004573,-0.034671918,-0.023626644,-0.053105086,0.0016305798,0.010460093,-0.019530384,-0.032038607,-0.01266671,0.009521367,-0.0066625183,-0.01203886,0.013520097,0.03789041,0.007979173,0.020249667,-0.0019323132,-0.0026775035,0.007564671,-0.039572798,0.010362563,0.027552227,-0.026698839,-0.07007531,-0.004321798,0.031721633,-0.005528732,0.0026424536,0.019530384,-0.00013477047,0.0020953713,0.0085582575,-0.039377738,0.00152924,-0.042181727,0.0136542,0.005711601,-0.027527845,0.00025087307,-0.002963998,-0.004276081,-0.03589104,0.061687727,0.021164011,-0.037987936,0.019786399,0.010978221,-0.024833577,0.024102103,-0.017409107,-0.012800813,0.0037731922,-0.005358055,-0.032696933,-0.030575657,0.025577243,-0.024626326,0.0019582196,0.007272081,-0.0536415,0.023260906,0.021919869,0.001691536,-0.04903321,-0.015970537,0.022407519,0.03691511,-0.021224968,-0.04688755,-0.009844434,0.010161407,-0.0032489684,0.027040195,-0.005184329,0.036183633,0.0016305798,-0.049545243,0.00060918153,0.0120022865,0.0031483904,-0.026503779,0.037085783,-0.008357102,-0.007302559,-0.0207617,0.0059036133,-0.0185307,-0.011301289,-0.008930091,0.029941712,0.005108134,-0.03528148,0.015056195,-0.05978589,0.020786082,0.0084973015,-0.04727767,-0.024528796,0.026991429,0.004282177,0.006376024,-0.06695435,0.018750144,0.006016382,0.043205794,-0.0074793324,0.020286242,0.013093404,-0.033623468,0.023833895,-0.012873961,0.0133128455,0.009533558,-0.0018210681,0.019152455,0.026284337,0.01921341,0.021127438,-0.0054921582,0.051593374,0.016129024,-0.024199633,0.02282202,0.025455331,0.022212459,0.012307067,-0.005860944,-0.035598453,-0.006881961,-0.013934599,0.052129786,0.002293479,0.0029533305,-0.0155804185,0.030039242,-0.016482571,-0.04544898,0.009301924,0.00237577,-0.017689504,-0.03411112,-0.018201537,0.014824561,-0.0069551086,-0.0050045084,-0.01775046,0.021980824,0.02115182,0.010124833,0.010703918,-0.0023971046,0.022480667,-0.03711017,0.007869452,-0.030258683,-0.020798273,0.03635431,0.023370627,-0.011892565,-0.037939172,0.012142486,0.012837387,0.026796369,-0.0032428727,-0.0032428727,-0.004526002,-0.028527526,-0.005089847,0.0010766399,-0.008869135,-0.042937584,-0.04513201,0.014495397,0.027284019,-0.0016321037,0.047131374,0.02290736,0.0040078736,0.020237476,0.031112071,0.010795352,-0.04006045,0.032891992,0.0013067496,-0.030380597,0.033721,0.034257416,0.03654937,0.005812179,0.0050136517,-0.034574386,-0.00868017,-0.0046662013,-0.030721951,0.01645819,0.029307766,-0.009320211,0.017994286,-0.0043004635,0.03050251,0.0054403455,-0.017104324,0.030746333,0.00882037,-0.017018985,0.017494444,-0.021273732,-0.034476858,-0.016848309,0.01921341,-0.033550322,0.005708553,-0.03996292,-0.028844498,-0.016129024,-0.042961966,-0.010332085,-0.0026439775,0.019664487,0.004769827,-0.0066442317,0.013495714,-0.0007307131,-0.04447368,-0.028308084,-0.01655572,0.013398184,-0.028698204,0.0028192268,0.02321214,-0.013861452,0.018969586,-0.013885834,-0.015543845,-0.019408472,0.02113963,0.0009333926,-0.004586958,0.018189346,-0.035330243,-0.016787352,0.024248397,-0.024431266,-0.012581371,0.02163947,0.03138028,-0.04725329,-0.039133914,0.012642327,0.014483206,-0.024492223,0.030551273,0.028405614,0.028332466,-0.0068392917,0.0074915234,-0.012703283,-0.015604801,0.035598453,-0.01832345,-0.006327259,0.007863357,-0.027917964,-0.015019621,0.045668423,0.029795416,-0.029210236,-0.009893199,-0.012209537,0.0043644677,-0.0005741317,-0.021310305,-0.015263446,-0.036208015,-0.035257097,0.022943934,0.010393041,-0.009076386,-0.007156264,-0.00657718,0.014324719,-0.020054607,-0.036329925,-0.021663852,0.021298114,-0.018055242,0.036305543,-0.0036177535,0.01764074,0.022480667,0.027893582,-0.028868882,0.03910953,-0.016092451,0.0033739286,-0.0040292083,-0.012752048,0.019591339,-0.007912122,0.04123081,0.010612484,0.013727348,0.027771669,0.014068703,0.0052269986,-0.010435711,0.029746652,-0.034013588,0.007869452,-0.012240016,0.0052330946,-0.043571528,0.007058734,0.013873643,-0.018067433,-0.035135183,0.020359388,0.033501558,0.034988888,-0.015775478,0.0029853324,-0.0085460665,-0.030673187,-0.041572165,0.0073147505,-0.008607023,0.008186425,-0.031429045,-0.02572354,-0.011069655,-0.028259318,0.043839738,-0.030429361,-0.048813768,0.009539654,-0.010569815,0.011459775,-0.013861452,0.017531019,-0.01832345,-0.019140264,0.009417742,0.00022020447,-0.040133595,-0.029454062,0.0009585371,-0.050910663,-0.030234301,-0.035549685,0.024638517,-0.029088324,-0.0155682275,0.010405232,-0.020871421,-0.076561056,-0.025162742,0.026771987,-0.018250301,-0.030283067,-0.014495397,-0.02301708,-0.016421614,0.0018500222,-0.009326307,0.0040444476,-0.022480667,0.03267255,-0.025699155,-0.010679536,-0.0026455014,0.019518193,-0.0008229094,0.0021517558,-0.028283702,-0.0050685126,-0.00076652487,0.0029396154,0.016543526,-0.014093086,-0.002944187,0.019128073,0.026357483,0.037158933,-0.016055876,0.012203442,0.040572483,-0.010600292,0.016433805,-0.0016001016,-0.0037488095,0.028673822,-0.01861604,-0.0021045147,-0.04588787,-0.0013768494,0.008381485,-0.023992382,-0.013715157,0.016092451,0.024260588,0.013873643,0.012087625,-0.026942665,0.007308655,0.037573434,0.011587784,-0.014190616,0.002977713,0.053787798,0.020615404,-0.051544607,0.010210172,0.020139946,-0.007137977,-0.0018256397,-0.010606388,0.012630136,-0.004340085,0.028308084,-0.017957712,-0.0058274176,0.0039103436,-0.026723221,0.006363833,0.016287511,-0.0009532034,0.039914154,0.0155682275,-0.015958346,-0.022858595,-0.005927996,0.019408472,0.011819418,0.036305543,-0.0037335705,-0.021078672,0.010100451,0.025991747,-0.0014667598,-0.01726281,-0.009496984,-0.040499333,0.013129977,0.061736494,0.02252943,-0.0298198,0.0070526386,0.009820052,0.017018985,-0.024236206,-0.041791607,0.009868817,0.026138041,-0.012093721,0.02952721,0.018201537,-0.012057147,-0.011831609,-0.040231127,-0.019432854,0.011880374,0.037158933,0.017567592,-0.003239825,0.015068386,-0.008302242,-0.0084485365,0.007467141,-0.020920185,-0.01793333,-0.0016641057,0.004922217,0.005924948,-0.03652499,0.040718775,0.028454378,-0.009228777,-0.05164214,0.00028763732,0.046643727,-0.019932695,-0.0007901454,-0.0014690456,0.0024138677,-0.012160772,0.05978589,-0.014263763,0.003626897,0.010898978,0.0013600864,0.012642327,0.015629184,-0.03589104,0.011673123,0.012337546,-0.051739667,0.043961648,-0.025065212,0.0108685,0.009332403,-0.010362563,0.032965142,-0.011392724,-0.052178554,0.032770082,-0.009935869,-0.01067344,0.024504414,0.025552861,0.05022795,-0.007308655,-0.03667128,-0.029478444,-0.0042090295,-0.009716427,0.047887232,0.027942346,0.018347831,-0.019189028,-0.0076926793,-0.02272449,-0.025894217,-0.018981777,0.03869503,-0.0185307,-0.015287829,0.02046911,0.013678583,0.021224968,0.034354944,0.02407772,0.021395644,0.015677948,-0.011051369,0.0066320403,0.029771034,0.01539755,0.012276589,0.0007143311,-0.024480032,0.02543095,-0.009960252,-0.013349419,0.01676297,0.007912122,-0.009667662,0.020676361,-0.018262494,-0.00553178,-0.009033716,-0.018847674,-0.009539654,-0.0031270557,0.009545749,0.011910852,-0.019067116,-0.005888374,-0.016933648,-0.000763858,-0.012465553,-0.019762017,0.0033282114,0.004294368,0.031843547,-0.012849578,0.009643279,0.02630872,0.020383772,0.005190425,0.03294076,-0.014702648,-0.012240016,-0.009411645,0.024784813,-0.015251255,0.008649692,-0.01018579,0.03713455,-0.019640105,-0.007912122,0.0036390882,-0.02456537,-0.03667128,0.021395644,0.031331513,0.00086786464,0.0038829134,-0.020018034,0.03889009,-0.05388533,-0.04505886,-0.003124008,0.011514636,0.0155804185,0.027381549,0.019725444,-0.026357483,-0.03703702,-0.029283384,-0.020066798,0.03186793,0.0053336723,-0.011435393,0.002016128,0.021176202,-0.00079471717,0.009295829,-0.031941075,0.048399266,-0.01022846,-0.031258367,-0.00475154,0.03615925,-0.0047058226,0.025894217,-0.010234555,0.017860182,-0.03206299,-0.012678901,0.004245603,0.009838339,-0.0039408216,0.0060316212,0.037792876,-0.023248715,0.02045692,0.017104324,0.0019506001,-0.01461731,0.023443775,-0.02740593,0.01071611,0.008808179,0.0042577945,-0.05544581,-0.031916693,-0.005873135,-0.018993968,-0.01022846,0.015458506,-0.05388533,-0.009356785,0.0438885,0.048228588,-0.00858264,0.025674773,-0.030258683,-0.023431584,0.009289733,-0.018542891,-0.023846086,-0.004013969,0.03306267,0.020103373,-0.022090547,-0.0019475523,-0.015751095,-0.0060102865,-0.015531654,0.030575657,0.034062356,-0.009173916,0.044985715,-0.00296095,-0.02513836,0.020188712,0.03988977,-0.04744835,0.009722522,-0.008802083,0.0155804185,-0.03725646,-0.0035202235,-0.0022157598,-0.018299067,0.0071318815,-0.023736365,0.050715603,0.0072964635,-0.005693314,0.039450888,-0.039182678,0.021590704,0.03128275,0.0038341484,-0.007863357,0.008863039,-0.02223684,-0.050374247,-0.030136772,-0.063053146,0.033599086,-0.02476043,0.010642962,0.020737316,-0.004690584,-0.02204178,0.015263446,0.00040726396,-0.024870152,0.039158296,-0.007351324,-0.018372215,0.025894217,0.058371708,-0.006266303,-0.035257097,0.018018669,0.03147781,0.01256918,0.0011520731,0.01164874,-0.012197346,-0.02779605,-0.012264398,-0.00458391,0.048765004,0.004535145,-0.011855992,0.00692463,0.013069021,-0.01510496,0.03976786,-0.01375173,-0.0003988825,-0.005162995,0.017238429,0.04532707,-0.03820738,-0.024406884,0.015275637,-0.01998146,0.0108258305,0.036768813,-0.017884566,0.0175554,0.031794783,0.028088642,-0.03323335,0.016689822,-0.04552213,-0.008131565,0.021676043,-0.044376153,-0.027479079,-0.009216585,-0.009320211,0.0052970983,-0.005924948,-0.030258683,0.007869452,0.0029990477,0.0036177535,-0.033989206,-0.0068271,0.020030225,0.010441806,0.009356785,0.017713888,0.0038341484,0.0066381358,0.030624421,-0.018469745,0.030185537,-0.0076378183,0.061297607,0.0040444476,0.025991747,0.021164011,0.020164328,0.021737,0.0013425614,0.0046174363,0.052081022,0.004708871,-0.016019303,-0.008515589,0.026723221,-0.020432536,0.019042734,-0.008296146,-0.028771352,-0.00006619468,0.02123716,0.010990412,-0.041011367,0.017226238,0.004785066,0.00048765002,0.041986667,0.003431837,-0.016726395,-0.009484793,0.025845451,0.0018347832,-0.009253159,0.017018985,0.017774843,0.03286761,0.009137343,0.009527463,0.003825005,0.009820052,-0.0011962665,-0.0020938474,-0.004020065,-0.013105595,0.021078672,0.012325354,0.039036386,-0.030234301,0.017982095,-0.007077021,0.007973078,-0.009813957,-0.026747603,0.039353356,-0.05027672,-0.010124833,-0.0063516414,-0.012307067,-0.011246429,0.013483523,-0.04649743,0.0034013588,0.0307951,-0.003889009,0.023638835,0.031843547,-0.008619214,-0.0007147121,-0.00638212,0.009533558,-0.009533558,0.015348785,0.03789041,0.016836118,0.011721888,-0.005540923,-0.01539755,0.012508223,-0.017982095,0.033184584,-0.0055835927,-0.007662201,0.019822974,-0.0010141596,0.0038768176,0.043717824,-0.020103373,0.007851166,-0.0003609753,-0.007924313,0.008649692,-0.009436028,0.00868017,0.027722904,-0.017518828,0.035647217,0.016494762,0.006150486,0.025772303,0.017774843,-0.046180457,0.019810783,0.010173598,-0.008655788,-0.023529114,0.042328022,-0.0083875805,0.023809513,0.007966982,-0.022090547,-0.013337228,0.0075463844,-0.011301289,-0.024821386,-0.0015818147,0.010277225,-0.03186793,0.007095308,0.020152137,-0.019335324,-0.006394311,0.015153725,-0.006833196,0.010399137,0.0046753446,0.009533558,0.026625691,-0.0058975173,-0.020627595,-0.029600356,0.0005105086,-0.010027303,0.012264398,-0.03713455,-0.035647217,0.003562893,-0.018786717,-0.014141851,-0.0074305674,0.008832561,0.04564404,-0.025309036,-0.012617945,0.030331831,0.021029908,0.0011977904,-0.001497238,-0.010252842,-0.0037061402,-0.0107648745,-0.0004766017,0.04201105,-0.012532606,0.015141534,-0.03303829,0.027430315,-0.008765509,0.021676043,0.0042669377,0.021298114,0.0023163375,-0.009338498,0.016055876,-0.002669884,-0.03306267,-0.000058289417,0.016933648,-0.00042174108,-0.01451978,0.012508223,0.0040261606,-0.004989269,-0.016043685,-0.027137725,0.05983466,-0.009643279,-0.04525392,0.007089212,-0.0022538574,0.0132153155,0.0007817639,-0.034208648,0.0061901077,-0.017957712,0.006449172,-0.016592292,0.022785448,-0.038987618,0.024248397,-0.010880691,0.021090863,-0.0107770655,0.03489136,-0.018676996,-0.04564404,-0.016409423,0.0067051877,0.030161154,-0.00012819862,0.010551527,0.0026881709,0.017031178,0.0048856437,0.03225805,0.011270811,0.02476043,-0.032209285,0.011868183,0.0031148645,0.048204206,0.044571213,-0.019384088,0.00044040894,-0.036403075,-0.009411645,-0.007826783,-0.014446632,0.0016381993,-0.033818528,-0.0025403518,-0.01871357,-0.006497937,0.0095884185,-0.0011627405,0.004327894,0.0131421685,0.0039591086,-0.016311893,0.009533558,-0.018091816,-0.036378693,0.027064577,-0.03235558,-0.025089594,-0.0066747097,0.016238745,0.016592292,-0.0012884628,-0.003709188,0.003919487,-0.011014795,-0.0034501238,0.019164646,0.00044459966,-0.020786082,-0.014983047,0.03430618,-0.0061901077,0.025747921,-0.010740492,0.018847674,-0.015385359,-0.031258367,-0.015214681,-0.0029746653,0.011325672,-0.0036634707,0.003334307,0.027381549,-0.0048246873,0.0038432917,-0.0072111245,0.019457236,0.013971173,-0.023224333,0.022639152,-0.023614453,0.02085923,-0.0069490126,0.029210236,0.0041998858,0.026601309,0.00774754,0.0062541114,-0.00034687918,0.01765293,-0.013081212,0.010313798,0.028113024,0.017860182,-0.034793828,0.0036817577,-0.011319576,-0.017409107,-0.010338181,0.04103575,0.038256146,0.009436028,-0.035135183,0.0020938474,-0.021200584,0.0076439143,-0.0034775543,0.02601613,-0.041474633,-0.046765637,0.020712934,0.018286876,-0.03530586,0.04408356,0.03225805,0.006912439,-0.000040978794,0.004730205,-0.025894217,0.021590704,0.01520249,0.011307385,-0.0024108198,0.05261744,-0.0033129724,-0.047521494,0.027259637,0.019420663,-0.006016382,0.017494444,-0.01461731,-0.037085783,-0.0117036,-0.003907296,-0.051495843,0.014446632,-0.0028390375,-0.033306498,-0.0061565815,0.03711017,-0.010460093,-0.030234301,-0.028795734,0.0016793448]},{"id":"guide-embeds-11","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Load from existing embed\nEmbedBuilder.from() creates a builder from an API embed (e.g. from a received message). Edit and toJSON() to send.\n\n```javascript\nconst existing = message.embeds[0];\nif (existing) {\n const edited = EmbedBuilder.from(existing)\n .setTitle('Updated title')\n .setColor(0x57f287);\n await message.edit({ embeds: [edited] });\n}\n```","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[-0.02490618,-0.02611757,-0.021041846,-0.011326497,-0.0038279928,0.0022410718,0.022071527,-0.008164769,-0.0038128505,-0.021066075,0.0018064856,-0.0011061506,0.041187264,-0.06400985,-0.0007442478,0.009921285,0.0050605824,-0.003573601,-0.018001257,0.03924904,0.033579733,-0.0019261104,-0.020169646,0.0391279,0.011368897,-0.037310816,-0.0076680994,0.028831085,-0.030042475,-0.053737268,-0.01082377,-0.015881324,0.002695343,0.0052150344,-0.008394933,0.00607815,0.019212648,0.014367087,-0.008291965,0.026529444,0.042955894,-0.0021880735,-0.0132526085,0.011780769,-0.023210235,0.034548845,-0.059794217,0.02266511,0.0021577887,0.033022497,0.024252031,0.012622685,0.011526377,-0.000054891116,-0.028249618,-0.029606374,-0.032998268,-0.00028410883,-0.06061796,0.050975297,0.01602669,0.010938853,0.0056844484,0.025487648,-0.016244741,-0.0057389606,-0.06623881,0.041090354,0.0047940766,0.014972782,0.044845663,-0.010260475,-0.01835256,-0.0076802135,0.02192616,-0.037213907,-0.0026226596,0.041599136,-0.006232602,-0.039418634,0.0038522207,-0.0075166756,-0.08925523,0.016596045,-0.04576632,0.012852849,0.009085426,-0.019273218,0.03273176,-0.027425872,-0.033046722,-0.022967957,-0.052089777,-0.013349519,0.032901358,0.012574229,-0.056063134,0.00589947,0.042156376,0.03583292,0.086202525,-0.053301167,-0.080194026,-0.002586318,-0.011920079,-0.039176356,0.024833499,0.015723843,-0.03493649,-0.022289578,-0.05930966,-0.017553043,0.005242291,-0.03680203,0.012707482,0.013531228,0.019236876,0.02111453,-0.03176265,-0.034791123,-0.07147202,-0.05116912,0.07331333,0.0063173994,0.0058540427,-0.028080024,-0.01565116,-0.039612457,-0.03791651,-0.007353138,0.010333158,0.012107844,0.06517279,-0.0010569379,-0.024348943,-0.022556085,-0.0027483413,0.016729297,0.00061061635,-0.009406445,0.045548268,-0.058001358,-0.017032145,-0.021962503,-0.033216316,0.035227224,-0.031011587,-0.01630531,-0.013482772,-0.007334967,-0.014124809,0.008982458,-0.051120665,0.014245948,-0.049133983,-0.012961875,-0.00067535,-0.03139923,-0.008225339,-0.016608158,-0.032659076,-0.020424038,-0.009648723,-0.0046305386,-0.05005464,-0.0025272625,0.035639096,-0.052186687,-0.021272011,-0.0005913098,0.011526377,-0.019527609,-0.034355026,0.034476165,-0.012852849,-0.015396768,-0.040751163,-0.06987298,-0.011683858,0.031278092,-0.010987309,0.025196915,-0.027571239,0.0011970049,-0.021126645,0.034040064,-0.024978865,0.04024238,-0.014609365,-0.03847375,-0.0518475,-0.011453694,-0.003503946,0.019648748,0.03922481,-0.0075711883,0.052428965,0.02179291,0.03803765,-0.03462153,0.035978287,0.009491242,0.03626902,0.0069836644,-0.021005506,-0.03362819,0.013906758,0.0005920669,-0.056208503,0.018837117,0.033046722,-0.012780166,-0.017868005,-0.007849808,-0.017129056,0.002369782,-0.015869211,-0.007765011,-0.04831024,0.012780166,-0.07059982,0.010926739,0.07379789,-0.007474277,-0.047559176,0.005269547,-0.030163614,0.008558472,-0.05039383,0.06008495,0.019273218,-0.01990314,-0.030793536,-0.045378674,0.0064143105,0.07355561,-0.034766898,0.018497927,0.027498556,-0.013967329,-0.021320466,-0.018025486,0.022059415,-0.019321673,-0.022955842,-0.0011667202,0.03529991,-0.06275001,-0.0025908607,0.07118128,0.043803867,-0.0024106663,0.02403398,0.003261668,0.0238765,-0.04290744,-0.06672337,0.02325869,-0.013616025,-0.06536661,0.027643923,0.023573652,-0.013349519,-0.015626933,-0.0034827467,0.008146599,0.018279877,0.0066989874,0.059358116,-0.01676564,-0.013579683,0.006486994,0.0029300498,0.011465807,-0.029703286,-0.003976388,-0.005632964,0.017589385,-0.0028664519,0.021150872,-0.021599086,-0.038740255,-0.011920079,0.00089037174,-0.021223554,-0.021599086,-0.014245948,-0.012622685,0.014403429,0.013434317,0.0009145996,-0.018437358,0.054948658,-0.016172059,0.0075409035,0.048528288,0.055723947,-0.0043428335,0.049909275,0.048455607,-0.013700822,-0.029339869,0.019733544,0.017964916,-0.0028073967,-0.009327704,-0.019672975,-0.041865643,0.047244214,-0.04760763,-0.0027983112,0.024409512,-0.02834653,-0.017104829,-0.01372505,0.07757743,0.030551258,0.044385336,-0.02381593,-0.002484864,0.009703235,0.011035764,-0.01732288,-0.041187264,-0.038352612,-0.044239968,-0.0053785723,-0.030236298,0.033458594,0.04523331,0.020654202,0.01900671,-0.0030723882,0.040169697,0.031375006,-0.0034585188,0.0051332656,-0.045039486,0.026408305,0.042568248,-0.021138757,-0.011629345,0.034863807,-0.052865066,-0.04167182,-0.034863807,-0.018182965,0.042955894,-0.020484608,-0.0061447765,-0.001962452,-0.026723266,-0.0073289103,-0.047050394,0.066190355,-0.0121563,0.026650583,-0.045281764,0.022095757,-0.022992184,0.0053028604,0.009606324,0.010854055,0.036656667,0.0019215676,0.025560332,0.020920707,0.05194441,-0.0074015935,-0.020787455,-0.02083591,0.028031567,-0.012241097,0.0062204883,-0.025075777,-0.009182338,0.067401744,0.0064506526,0.009400387,0.025608787,0.018594839,0.0022274435,-0.022374377,-0.045015257,0.019273218,0.015566363,0.032344118,0.035130315,-0.015808642,0.01732288,0.01322838,-0.01900671,-0.02502732,-0.023719018,0.060714874,0.057855994,0.02198673,-0.009660836,0.010605721,-0.011374953,-0.039757825,-0.043755412,0.023367716,-0.0002901658,0.015396768,-0.016596045,0.0445307,-0.02179291,-0.00029168004,-0.0015240802,0.046129737,-0.021950388,0.02732896,-0.042156376,-0.018510042,-0.005000013,-0.015372541,-0.040969215,0.0016959462,0.02592375,-0.040000103,-0.070648275,-0.027643923,-0.019273218,0.02999402,-0.030163614,0.027038228,-0.022313807,0.012743824,-0.044942573,-0.0769475,0.020351354,0.07118128,-0.014306517,0.03021207,0.006644475,0.009745633,-0.009769862,-0.0048273895,0.019915253,-0.047704544,0.009297419,-0.0265779,0.001624777,-0.07379789,0.0045275707,-0.035978287,-0.0036735407,-0.016947348,-0.049061302,-0.027183594,-0.022737794,0.035227224,0.011187188,-0.031350777,-0.0039582173,-0.015178719,-0.0016853465,0.058922015,0.011332555,-0.0061659757,0.010127221,-0.012338009,0.01372505,0.021720225,-0.040097013,-0.041889872,0.0068928096,0.006059979,-0.014415543,0.028467668,0.021538517,0.0037310815,-0.015481566,-0.0146214785,-0.026699038,0.010000026,-0.041502226,-0.0099757975,0.022071527,-0.045281764,0.009630552,-0.0006287872,-0.0013385861,-0.021247784,0.08281063,0.02359788,-0.047971047,0.044070374,-0.019079395,-0.014924326,0.01207756,-0.018219307,-0.012465204,0.00034732826,-0.0328529,-0.041526455,-0.03617211,0.05039383,-0.014318631,-0.014560909,-0.015578477,-0.056160048,0.026311394,0.024797156,-0.039588228,-0.03130232,-0.017819548,0.0040975274,0.0099939685,-0.02179291,-0.011041821,-0.0002275142,0.009382216,0.028152706,0.021211442,-0.027256278,0.05940657,-0.009255021,-0.033289,-0.004900073,-0.0019533667,0.011980648,-0.0070381765,0.026723266,0.013143583,-0.015045466,-0.03801342,-0.006904924,0.0053694868,-0.0040490716,-0.013143583,0.019527609,-0.01273171,-0.032344118,-0.001873112,-0.059939586,0.013410089,-0.0011296213,-0.035663325,-0.018837117,0.05722607,0.0064385384,-0.0052786325,-0.07166584,0.0039097616,-0.024639675,0.016995804,0.011356782,0.039709367,0.027401645,-0.03726236,0.036583982,-0.01642645,-0.0026105458,0.030890448,0.006741386,0.010944909,0.023391943,0.016850436,0.009987911,-0.001184891,0.041962553,0.0005496683,0.0045275707,0.028467668,0.006371912,-0.006402197,0.0028709946,-0.0019412527,-0.021296239,0.01704426,0.0045820833,0.021780794,-0.02502732,0.02459122,0.009279248,0.017177513,-0.032004926,-0.040726937,-0.0037946797,-0.015663274,-0.031084271,-0.00512418,0.007122974,0.015542136,-0.0016959462,-0.0023682676,0.0020866196,0.033918925,0.014488226,0.013337405,0.0011546062,-0.0061205486,0.019442812,-0.039612457,0.018825002,-0.027692378,-0.03915213,0.044021916,0.004784991,-0.017456131,-0.015202946,0.0406058,0.017746866,0.022156326,-0.0029467065,-0.013519114,-0.030623943,-0.009891001,0.00526349,-0.000987283,0.0015854068,-0.006353741,-0.030672397,0.003428234,0.016680842,0.004936415,0.03583292,0.036680892,0.0055027395,0.033700872,0.027280506,-0.0056844484,-0.038885623,0.029364096,0.0023273833,-0.020327127,0.026262939,0.0037613665,0.021853479,-0.007219885,-0.0053725154,0.0007461406,0.009194451,-0.024203574,0.0064567095,-0.00020839696,-0.0009032428,-0.0014105124,-0.008964287,0.0040732995,0.032489482,-0.0027998255,-0.013349519,0.0053543444,-0.027062455,0.018376788,-0.0063173994,0.0013037586,-0.048697885,-0.03297404,0.03803765,-0.02415512,0.009073312,-0.01797703,0.0006798927,0.014233834,-0.009757748,-0.01658393,-0.029848652,-0.0022652994,-0.026335621,0.014548795,0.008582699,0.021538517,-0.026408305,-0.031108499,-0.006608133,0.014912212,-0.03813456,0.00067951414,0.016789867,-0.03639016,0.010684461,-0.025075777,-0.006026666,-0.032344118,0.010914625,-0.0031526429,-0.024264144,-0.009103597,-0.031132726,-0.022156326,0.021950388,-0.026941316,-0.014463998,0.021005506,0.020920707,-0.051314484,-0.031568825,-0.0074015935,-0.001057695,-0.041768733,0.028419213,0.056160048,0.007486391,0.02375536,0.0017807435,-0.041356858,-0.009691121,0.004669909,-0.024203574,-0.003764395,-0.00018823867,-0.030793536,-0.026190255,0.032344118,0.029315641,-0.011314384,-0.0099757975,-0.0130709,0.016462792,-0.013688709,-0.042640932,-0.014633593,-0.018934028,-0.012344065,0.022895273,-0.003943075,0.0023667535,-0.010775316,-0.03508186,-0.0023137552,-0.02133258,-0.029242957,-0.007910377,0.05291352,-0.015760185,0.02887954,-0.007983061,-0.0041641537,0.0175167,0.0015642075,-0.03450039,0.04399769,-0.012222926,-0.016995804,0.0012144186,0.008685667,-0.025972204,0.027619695,0.040508885,0.033119407,0.009394331,0.012743824,0.02313755,0.014875871,0.009618438,0.023270804,-0.014451885,0.00782558,-0.043513134,0.004155068,-0.021659655,-0.007831637,0.015869211,-0.02151429,-0.04695348,0.0096123805,0.036656667,0.03857066,-0.011156904,0.0041702106,-0.013034558,-0.0024318658,-0.001503638,0.016692957,-0.0055027395,-0.009666894,-0.03428234,-0.015639046,0.008879489,-0.04004856,0.051992863,-0.040072784,-0.035929833,-0.003670512,0.0031193297,0.0025666328,-0.041502226,0.0238765,-0.019491266,0.0096123805,-0.014185378,0.012852849,-0.034912262,-0.0130709,0.01614783,-0.043125488,0.00661419,-0.03341014,0.011423409,-0.026917089,0.008510016,0.009878887,-0.03437925,-0.08314982,-0.017831663,0.027716607,-0.009018799,0.0012537888,-0.004669909,-0.025414964,-0.009563925,0.0027377417,-0.026480988,-0.0004198224,-0.024361055,0.02589952,-0.021368923,-0.00015426296,0.016268969,0.01875232,0.0031768705,-0.0072986255,-0.014851643,0.0065475637,0.0010569379,0.008128428,0.013555456,0.008764408,0.004203524,0.023016412,0.027159367,0.018982483,-0.014173265,0.0043943175,0.05049074,-0.033458594,0.009242907,-0.024070323,0.006656589,0.013591797,-0.01611149,-0.017298652,-0.05170213,0.013955214,-0.007934606,-0.033773556,-0.03437925,-0.021659655,0.009751691,0.026723266,0.032683305,-0.013325292,0.023840157,0.05039383,0.0066868737,-0.019891025,0.022895273,0.035663325,0.0064324816,-0.050684564,0.014694163,0.027619695,-0.003885534,0.024954638,-0.0013968842,0.025657242,0.0046032825,0.0047880197,0.005466398,0.017819548,-0.002319812,-0.012041218,-0.010678404,-0.009842545,0.032004926,0.03387047,0.009406445,-0.012877077,-0.00033142878,-0.01968509,0.012029104,-0.0009002143,0.029824425,-0.0036795975,-0.035227224,0.02322235,0.053252712,-0.0020866196,-0.018667523,-0.0032980097,-0.017746866,0.033385914,0.048382923,0.025729926,-0.033119407,0.010781372,-0.01366448,0.014851643,-0.021635428,-0.025196915,0.00088355766,0.031278092,-0.0103392145,0.00953364,0.05601468,-0.0189098,-0.009418558,-0.042592477,0.007867979,-0.0031132726,0.027474329,0.007147202,-0.0032980097,0.039539773,0.0026014603,-0.03968514,-0.002981534,-0.02046038,-0.025875293,0.014766846,0.015905552,0.029751742,-0.010775316,0.047898367,0.018485814,-0.010563322,-0.042713616,0.004000616,0.007916435,0.011417352,0.0077892384,-0.008667496,-0.004288321,0.008479731,0.0121563,-0.019782001,-0.013458544,-0.013688709,0.010042424,0.0072501698,0.014960668,-0.035687555,0.018897686,0.01477896,-0.02375536,0.026602127,-0.014803187,0.0008040602,0.017032145,-0.016474906,0.03517877,0.0028694803,-0.0440946,0.039588228,-0.00092595635,-0.019430697,-0.0036402273,0.030769309,0.034888037,0.0048273895,0.00895823,-0.020787455,0.022144211,-0.025148459,0.044603385,0.007734726,-0.0038007365,-0.036680892,0.0038825055,-0.010272589,0.0056087365,-0.012210812,0.008534243,-0.020642089,-0.0018110282,0.016971575,-0.0019230818,0.028491896,0.038110334,0.029921336,0.029291414,0.022035187,0.010932796,0.007116917,0.030139387,0.015578477,0.031350777,-0.0025302912,-0.012622685,0.010054538,-0.0034645759,0.008400991,0.01630531,0.010405841,0.042616706,0.015941894,-0.0130103305,-0.009242907,-0.025342282,-0.007970947,0.005414914,-0.010321044,-0.00981226,-0.004203524,-0.02778929,0.019769887,-0.032004926,0.0108056,-0.013107241,-0.0072259423,0.0038825055,0.015093921,0.028152706,-0.034766898,-0.036680892,0.011108448,0.03794074,-0.026892861,0.01912785,-0.022907387,-0.00909754,0.011417352,-0.00076090446,-0.01571173,0.006402197,0.0018488842,0.03934595,-0.062265452,-0.012719597,0.038376838,0.025681471,-0.018582724,0.01732288,0.011417352,0.023089096,0.008497902,-0.016559703,0.046493154,-0.032901358,-0.03762578,-0.008570585,-0.021429492,0.020327127,0.019891025,0.04751072,-0.012325895,-0.050975297,-0.031714194,-0.003688683,0.043198172,0.034984946,0.007765011,0.0042156377,0.025560332,-0.0015452795,0.007843751,-0.0522836,0.059745762,-0.010042424,-0.035566416,0.004058157,0.021623313,-0.0015975208,-0.0015255945,0.004248951,-0.0038461636,-0.03033321,-0.011199302,0.027110912,0.013264722,-0.00008422947,0.0033616077,0.04111458,-0.010139336,0.03815879,0.0069230944,-0.004784991,-0.0108601125,0.010799543,-0.010557265,0.011526377,0.0070502907,-0.0038279928,-0.04915821,-0.06197472,-0.00476682,-0.018740205,0.00220473,-0.0019094537,-0.01863118,-0.018207194,0.01974566,0.024978865,0.005557252,0.05049074,-0.036123652,-0.035106085,0.021635428,-0.020072734,-0.015602705,-0.014040012,0.022701452,0.00760753,-0.015021238,0.0063052857,-0.00683224,0.016608158,-0.032901358,0.017286537,0.0391279,-0.0166445,0.03859489,-0.009388274,-0.03207761,0.010841941,0.038425297,-0.046686977,-0.00016940534,-0.01639011,0.004812247,-0.028734174,0.021162985,-0.0017913432,0.005866157,0.017892232,-0.017504588,0.05465792,0.009757748,-0.031811103,0.04210792,-0.03697163,0.029703286,0.010327101,-0.020714771,0.0038401068,0.036075197,-0.027401645,-0.035324138,-0.031447686,-0.047583405,0.021889819,-0.02943678,0.010296816,0.003370693,-0.0122471545,-0.049085528,0.00909754,-0.0009198994,-0.028734174,0.02359788,-0.0030693598,-0.006090264,0.028104251,0.05911584,-0.0016762611,-0.030236298,0.017298652,0.015905552,0.0023940098,0.017722638,0.00987283,-0.020593632,-0.024106665,-0.013737164,-0.010193848,0.059212748,-0.0064082537,-0.009073312,-0.0037371386,0.024300486,-0.015941894,0.024445852,-0.009321647,-0.01086617,0.0052786325,-0.018788662,0.03464576,-0.0635253,-0.010793486,0.0039915303,-0.020411924,0.0015808641,0.016341653,-0.0065475637,-0.012029104,0.014124809,0.021162985,-0.03152037,0.010835885,-0.0544641,0.008304079,0.0119867055,-0.021720225,-0.0063416273,-0.024954638,-0.009503355,-0.0028952225,0.0030814738,-0.027716607,-0.00047698486,0.0023970383,-0.021780794,-0.023428285,-0.018182965,0.030963132,-0.00033616077,0.02046038,0.02018176,0.012440977,0.007728669,0.022398604,-0.031229638,0.021635428,0.010133279,0.044821434,0.010799543,0.024518536,0.0046335673,0.052332055,0.010333158,-0.0022819561,0.012828621,0.020363469,0.0047365353,-0.0020305926,0.0004251222,0.00019609378,-0.016075147,-0.001956395,-0.031689964,-0.046468925,-0.0012749882,0.0369474,0.0019927367,-0.03152037,0.031375006,0.01875232,-0.0043852325,0.034888037,0.028467668,-0.0040823845,-0.019672975,0.040823847,0.00454877,-0.012586343,0.013046672,0.023307147,0.034669984,0.013591797,-0.0023046697,-0.023125438,0.010732916,-0.0023985524,0.000923685,-0.012622685,-0.021805022,0.0013196581,-0.0013469144,0.023125438,-0.014803187,0.034669984,-0.017613612,0.026044888,-0.0013416145,-0.025269598,0.03331323,-0.03263485,-0.008031516,-0.0123864645,-0.008413104,-0.01543311,0.0106178345,-0.049763907,-0.00211539,0.029848652,0.006384026,0.0090914825,0.020702658,-0.013301063,0.023307147,-0.027934657,0.01207756,0.0018503984,0.018328333,0.04179296,0.013531228,-0.013301063,-0.0062144315,-0.0054451986,-0.01602669,-0.032925583,0.032368343,0.00087295804,-0.0062871147,-0.023149665,0.036559753,0.025947977,0.022980072,-0.011096334,0.0073289103,0.0042004953,-0.0024863782,0.004312549,-0.009467014,-0.008443389,0.027595468,-0.035881374,0.025172686,0.0016202343,-0.008824977,0.012937646,0.021284124,-0.032683305,0.00572079,0.0031102442,0.00923685,-0.016002463,0.029291414,-0.0026771722,0.020957049,0.014754732,-0.007504562,0.012204756,-0.012289553,-0.012804394,-0.006153862,-0.0077892384,0.018098168,-0.02288316,0.00093428465,0.0007927034,-0.00061326625,-0.019043053,0.012277439,0.028176935,0.00846156,-0.0053604012,0.018049713,0.030575488,0.023440398,-0.015905552,-0.022192668,-0.011914022,-0.0072925687,0.0069594365,-0.033458594,-0.008467617,-0.008013345,-0.020981276,-0.010472468,-0.022871045,0.01636588,0.012023047,0.0004077085,-0.014403429,0.03219875,-0.0007544689,-0.016523361,0.007474277,-0.00967295,0.0007927034,0.0057874164,0.030405892,0.019782001,0.005339202,0.009703235,-0.03617211,0.038231473,-0.0058903843,0.000013687289,-0.016777754,0.04411883,-0.0025878323,-0.006199289,0.024118777,0.009382216,-0.013955214,0.006365855,0.017868005,0.0040309005,0.017056374,0.029509464,0.022980072,-0.026020661,-0.02049672,-0.036535528,0.01906728,0.0027195709,-0.012562116,-0.019479154,-0.017238082,0.031811103,-0.0018170852,-0.014403429,0.012204756,-0.0077589536,0.021817137,-0.00337675,0.029679058,-0.022592425,0.017104829,-0.012901305,0.033216316,-0.023997638,0.0319807,-0.030357437,-0.03341014,-0.05591777,-0.00653545,0.03571178,0.005869185,-0.020944936,0.02490618,0.025754154,0.031689964,0.010575436,-0.011677801,0.01592978,-0.014173265,0.013797734,0.023767475,0.03978205,0.03474267,0.007341024,0.02459122,-0.018122396,0.011435523,-0.009430672,-0.0073713087,-0.0130103305,-0.041647594,0.019600293,-0.019043053,-0.035445277,-0.0019018825,-0.02313755,0.00852213,0.01962452,0.008413104,-0.028637262,0.0117625985,-0.024736587,-0.028927997,0.02176868,-0.030938905,-0.0143792005,-0.006850411,-0.0075469604,-0.010569379,-0.021284124,0.007492448,-0.030090932,0.0065536206,-0.0033464653,0.012235041,-0.014633593,-0.03794074,-0.018316219,0.035663325,-0.017371334,0.018061826,0.0056874766,0.022798363,-0.032925583,-0.034573074,-0.0036644551,-0.016014578,-0.0066808164,-0.0039339894,-0.0034888035,0.02645676,0.0040793563,0.0010773801,0.0022925558,0.01322838,0.019733544,0.0051696072,-0.009206565,-0.05712916,0.01173837,0.0060508936,0.014306517,0.031593055,0.0023243548,0.0012507603,0.01571173,-0.016377995,0.013797734,-0.03408852,-0.027159367,-0.006995778,0.0072925687,-0.027256278,-0.013955214,-0.0056147934,-0.020811683,-0.0102362465,0.001394613,0.024615448,-0.02170811,-0.021962503,0.01726231,-0.015941894,-0.00032896813,0.022313807,0.024445852,-0.040944986,-0.03680203,0.013313178,0.020375581,-0.011029707,0.029824425,0.01605092,-0.018934028,0.018146625,-0.007831637,-0.0051120664,-0.012138129,0.023549424,-0.0031617281,-0.009170223,0.049666997,0.0034433764,-0.013531228,0.025536103,-0.014330746,-0.01630531,-0.00072418415,-0.015554249,-0.005218063,0.017213853,-0.00072039856,-0.029242957,0.014754732,0.003746224,-0.055190936,0.0018897686,0.026069116,-0.013385861,-0.021211442,-0.008588756,-0.011035764]},{"id":"guide-embeds-12","type":"guide","source":"guides","text":"Guide: Embeds (embeds)\nSection: Limits\nTitle ≤256, description ≤4096, field name ≤256, field value ≤1024, footer ≤2048, author name ≤256. Max 25 fields. Combined title+description+fields+footer ≤6000 chars.","meta":{"slug":"embeds","url":"/guides/embeds"},"embedding":[0.031039027,0.016257921,0.025339039,-0.038708102,-0.020714276,-0.05435716,0.036998104,-0.024030633,-0.028448123,0.018278826,0.045081727,-0.009521571,-0.019483596,-0.025481539,0.015247469,0.0150401965,-0.011905203,0.0050328304,0.03150539,0.054823525,0.010953045,-0.0176311,-0.0070796446,0.025364948,0.012488157,0.00924305,-0.0021520695,0.024976313,0.053165346,-0.009055208,-0.002200649,-0.02339586,0.060989875,0.0010460773,-0.02302018,-0.0049356716,0.07751984,0.010940092,0.005236864,0.010551455,0.020688366,0.02089564,-0.011743272,-0.031971753,-0.0071638487,0.038371284,-0.015791558,0.018265871,-0.0040547643,0.02247609,0.02800767,0.010175775,0.0021326377,-0.002067865,-0.008388051,0.04303491,-0.02505404,0.02138791,0.008426915,0.0035722086,0.014573834,-0.027308125,0.015389969,0.013628154,-0.042983092,0.0059493626,-0.063373506,0.030106302,0.030728118,0.022722226,0.036816742,-0.008252028,0.0057679997,0.027644943,0.025494494,-0.02568881,-0.02488563,-0.003795674,0.022683363,-0.048294447,-0.022838816,0.011594295,-0.08720982,0.013952017,-0.017125875,0.035935834,0.01659474,0.0010274553,-0.045599908,-0.04637718,-0.07347803,-0.051843986,-0.025766538,-0.021750636,0.023952905,0.021310184,-0.016374512,0.01928928,-0.03635038,-0.021685865,0.05060035,-0.02365495,-0.040832642,-0.03793083,0.004093628,0.0013820853,-0.024445178,-0.0010072138,-0.024095405,-0.027049035,-0.07192349,0.0008906232,0.009417935,0.03015812,0.03686856,-0.016465193,0.008232596,0.03474402,-0.004786695,-0.02247609,-0.030235847,-0.029847212,0.019470641,-0.03989992,0.010985432,-0.006490214,-0.02396586,-0.011808044,-0.035702653,-0.047802176,0.037283104,-0.027256308,0.06456532,-0.0010363616,-0.04785399,-0.032956295,-0.02479495,0.029847212,0.007617257,-0.055548977,0.025675856,-0.018304735,0.013628154,0.032438114,0.009845435,0.05518625,-0.07264894,0.04547036,0.018784052,-0.0035041973,-0.004479025,-0.012585315,-0.05461625,0.0108235,0.018019736,-0.055393524,0.015856331,-0.019755641,-0.0038345377,-0.066689864,0.0078115747,-0.030391302,-0.0012744007,0.013511564,-0.016633602,0.015428832,0.012863837,-0.02184132,-0.043786272,0.028033579,-0.010681001,-0.05383898,-0.014301789,-0.01573974,0.012216112,-0.013602245,-0.009605776,-0.012280884,0.027904034,0.041869003,0.0004457164,0.05010808,-0.0150401965,0.056999885,-0.027074944,-0.0012476821,0.029121758,-0.017695872,0.027256308,-0.046739906,-0.0107911145,-0.030935392,0.019574279,-0.01888769,-0.014301789,-0.04409718,0.01056441,-0.037309013,0.010577365,-0.0132524725,0.008193733,0.031090846,0.012896224,-0.0038183446,-0.017734736,-0.0022751375,-0.016517011,0.03987401,-0.0524658,0.011199182,0.029873122,0.005327546,0.014560879,-0.026738128,-0.017462691,0.03285266,-0.0009675406,-0.056378067,-0.03228266,-0.001463051,-0.0533208,0.024548814,0.035909925,-0.026181083,-0.03443311,0.021828365,-0.027308125,0.0058198175,-0.01004623,0.044822637,0.015921103,-0.0030022098,-0.0064092483,-0.08606982,-0.03422584,0.05710352,0.0042458437,0.04368264,-0.04308673,-0.023266315,-0.0115554305,0.030572664,0.016296785,-0.007086122,-0.02559813,-0.03425175,-0.02261859,-0.055289887,0.014224062,0.019962914,0.06435805,0.04795763,0.030365393,-0.037075832,0.021193594,-0.035754472,-0.015389969,0.037309013,0.059901696,-0.047258087,-0.042179912,-0.0124492925,-0.04477082,-0.030624483,0.04311264,-0.004527604,0.040262643,0.033759475,0.0060335672,-0.049071718,-0.0007319303,-0.015014287,0.02500222,-0.0086924825,-0.050755806,-0.037619922,0.022566771,-0.0020370982,-0.03562493,-0.002658915,-0.0180586,0.0075783934,-0.013278382,-0.005440898,0.019561324,-0.013602245,0.0262329,0.016361557,0.06301078,-0.006814077,-0.00921714,0.032774933,-0.002186075,0.011328727,-0.02772267,0.015817467,-0.011775658,0.03987401,0.033552203,-0.013025769,-0.009320776,0.021232456,0.024380405,-0.01056441,0.017281327,0.04956399,0.026168128,-0.00081370573,-0.0183436,-0.04072901,0.0030167836,-0.0055510113,-0.034044474,-0.010797592,-0.03614311,0.026556764,0.04062537,-0.006587373,0.013084064,-0.043864,0.05896897,0.0042361277,0.02434154,-0.06477259,0.0010290745,-0.01869337,-0.015092014,0.041117642,0.032982204,-0.013084064,0.017527465,-0.028448123,-0.0074553257,0.020973366,-0.00484499,-0.07384076,-0.010240547,0.0034782884,0.004527604,0.069902584,0.005622261,-0.0027625512,-0.00250508,0.01198293,-0.0481649,-0.0042749913,-0.019911095,0.016244967,0.065031685,-0.0033050217,-0.026530854,-0.0058036246,-0.01344679,-0.027385853,0.04627354,-0.04705081,0.06917713,-0.055859886,-0.04249082,0.023875179,0.001522156,0.012157816,0.028966304,0.003769765,-0.043216277,-0.0016500818,-0.03855265,0.014768152,-0.02259268,0.0056902724,0.01803269,0.030209938,0.0010039752,-0.021828365,-0.009009868,0.04062537,0.016400421,0.007876348,-0.00090681633,-0.03932992,0.0031107038,0.025079949,0.003934935,0.0028791418,0.021711774,0.005907261,0.0473099,0.03741265,-0.03712765,-0.0372572,-0.028318578,-0.00935964,0.017138828,-0.010551455,0.0828571,0.0269454,0.04741354,0.012740769,0.0027495967,-0.02245018,-0.007157372,-0.0215045,0.025468584,-0.025986765,0.007733848,-0.020260867,-0.009398503,0.01697042,0.027593125,-0.012565884,0.01843428,-0.02743767,0.033811294,0.01869337,0.012293839,0.016128376,0.0012476821,-0.020377459,-0.023499498,0.0094956625,-0.048864447,-0.024289723,-0.05168853,-0.013304291,0.028214943,-0.028163124,0.062492598,-0.028940395,0.02143973,-0.02169882,-0.03909674,0.014042699,0.04715445,0.0015755934,-0.0094956625,0.012922132,0.012183725,-0.033034023,0.0032046242,-0.014612697,-0.03961492,0.0007582442,0.009022823,-0.0062408396,-0.024043588,-0.010842932,0.0062570325,0.0039997078,0.0054538525,-0.03453675,-0.016776102,-0.00060845754,-0.010130433,-0.00007291977,0.010065661,0.008569414,0.03881174,-0.0024791711,0.02023496,0.010156343,0.0538908,0.029847212,-0.004540559,0.04342355,-0.0039576055,-0.020247914,-0.031194482,0.018991325,0.025066994,-0.03715356,0.04583309,-0.0047186837,-0.042672187,0.009631685,-0.013058155,-0.021750636,-0.03339675,-0.06943622,-0.0005501622,-0.027593125,-0.021880183,-0.041299008,-0.007662598,-0.00034592615,-0.027774489,0.12363793,0.06964349,0.00801237,0.020908594,-0.0092948675,-0.02219109,0.01507906,0.01814928,-0.014431334,-0.034044474,-0.011251,-0.026219945,-0.02436745,-0.0128508825,-0.02153041,-0.0026151936,0.010577365,-0.023201544,0.011477704,0.04088446,-0.011069637,-0.022139274,-0.010901228,-0.015428832,0.010609751,-0.0475949,-0.013025769,-0.0076496433,0.032204933,0.016011786,0.024535859,-0.012948042,0.05080762,0.0014743862,-0.02743767,0.0033050217,-0.0067622587,0.0074682804,-0.0043009003,0.02625881,-0.02384927,-0.027411763,-0.061197147,-0.010616228,-0.021310184,-0.020779049,-0.016089512,-0.01453497,0.014314744,-0.05570443,-0.008763732,-0.004320332,0.03339675,0.023201544,-0.015921103,-0.04059946,0.02110291,0.028992213,-0.0019707063,-0.010473728,-0.01427588,0.017903145,0.0184861,-0.015998831,-0.008433392,-0.020455185,-0.022463135,0.051299896,-0.018615644,-0.023292225,0.038086284,0.014638606,0.023331089,-0.013019292,0.0094762305,0.011853385,-0.042646278,0.040521733,0.01869337,-0.032956295,-0.0028499942,0.006069192,0.0136540625,0.051040806,-0.0021941715,-0.043579,-0.006542032,-0.017009282,0.030287664,0.0012395856,-0.000817754,0.00498749,0.014198152,0.01846019,-0.018408371,0.008057711,0.0020743425,0.008679528,-0.016814966,-0.015389969,-0.011659067,0.024561768,0.0006040044,-0.026440173,0.022929499,0.022502,0.011937589,0.019755641,0.01387429,-0.0020840582,-0.02393995,0.0032985443,-0.026867673,-0.025507448,-0.030909482,0.0111732725,-0.0152604235,-0.0028354204,0.011976453,-0.023369953,0.0321013,-0.00877021,0.02505404,-0.012105998,-0.025351994,0.012909178,-0.0053826026,-0.016983375,-0.0530358,-0.023667905,0.0012233924,0.039433554,-0.009281913,0.03417402,-0.0008558079,0.01037657,0.012520542,0.008789641,0.045289,-0.037619922,0.017967917,-0.028499942,-0.05028944,0.0016614171,0.007571916,0.021491546,0.012578838,0.012403952,-0.020118369,0.0042749913,-0.023382906,0.016905647,0.00961873,-0.0024597393,-0.024134269,0.03533993,-0.01992405,0.058865335,0.01616724,-0.015532468,0.0076237344,0.008996913,0.01224202,-0.015584286,0.0005469236,-0.0076755523,-0.018239962,0.01628383,-0.0044498774,-0.004336525,0.0028143693,0.0022427512,-0.023577224,-0.013304291,0.022178136,-0.021711774,-0.001290594,0.006052999,-0.037594013,0.0055963523,0.007345212,-0.04065128,-0.02356427,-0.046998996,0.02330518,-0.03826765,0.003986753,0.007902256,0.017618146,-0.007818053,-0.043864,0.01739792,-0.009819525,-0.004572945,0.041299008,-0.044537637,0.023926996,-0.021880183,-0.028474033,-0.04440809,-0.02155632,-0.0066327136,0.04360491,0.012799065,-0.009489185,-0.007831006,0.027489489,-0.0031123231,-0.040754918,0.0079994155,0.03720538,0.0035916404,-0.028292669,0.008964527,-0.0776753,-0.009417935,0.032256752,-0.051869895,-0.0223595,-0.028292669,-0.014081562,-0.02184132,0.0075978255,0.020623595,-0.06404714,0.00065501285,0.027515398,-0.015869286,-0.012157816,-0.013977926,-0.0074099847,-0.003831299,0.007364644,0.01978155,-0.009625208,-0.014703379,-0.004783456,-0.0027074944,-0.004861183,-0.013032246,-0.02058473,0.026129264,0.0006420583,0.009113504,-0.004527604,0.0038151059,0.0033114988,0.0150401965,0.029199485,-0.028577669,0.037542194,-0.017410873,0.010318275,-0.000761078,0.01923746,-0.0021779784,0.019302234,0.02396586,0.031194482,0.003986753,-0.00245812,0.013459745,0.005641693,0.0070343036,0.0054020346,-0.05435716,0.010687478,-0.023719724,-0.021089956,0.0012193441,-0.0115554305,0.014625652,-0.01616724,-0.011017818,0.026582673,0.006085385,0.039459463,-0.026466083,0.0139649715,-0.015014287,-0.02502813,-0.0481649,0.013705881,-0.022346545,0.009132936,-0.0027139718,-0.05028944,-0.03285266,-0.0070343036,0.060108967,-0.055548977,-0.043164458,0.020403367,-0.029562213,0.012941564,0.003944651,0.010013843,-0.01136759,0.032697205,-0.01453497,-0.023616089,0.003157664,-0.0070213494,0.0052789664,-0.0776753,0.0010306939,-0.019613141,-0.0029018123,0.007856916,0.0018298258,0.020455185,-0.034873564,-0.10902523,0.008802596,0.029976757,0.0017812464,-0.02018314,-0.015415877,-0.0035203905,-0.013537472,0.008569414,-0.02316268,0.0023641996,-0.0007274772,0.03992583,-0.008575891,-0.019962914,-0.007979983,0.02479495,0.005117035,0.025066994,-0.016322695,0.025986765,0.0051720915,0.033552203,0.010123957,0.0022864726,-0.01779951,0.01011748,0.0068918043,0.05414989,-0.013692927,-0.006052999,0.009884298,-0.009372595,0.014211107,0.043501273,-0.035365835,-0.015389969,-0.034666292,0.0037147084,0.0011829095,0.002900193,-0.021051094,0.0063606687,-0.0030993687,0.0051591373,-0.0036240267,0.014224062,-0.000049819235,-0.022229955,0.029458577,0.01115384,-0.0029860167,0.016607692,-0.03308584,0.007533053,-0.0014104232,-0.024211995,-0.024587678,0.0032693967,-0.0053048753,0.005502432,0.0020354788,-0.004880615,0.009553958,0.020792004,-0.006551748,0.013809517,0.003585163,-0.03777538,-0.010901228,0.03692038,-0.013679972,0.014237016,0.039692648,0.0031900504,0.03365584,-0.030054484,-0.009353163,0.012190202,-0.007740325,0.020571776,-0.008446346,0.02826676,0.017061101,0.016128376,0.02327927,-0.018045645,-0.00018014878,0.0032774932,0.02384927,0.050781716,-0.0063282824,0.008847936,0.01507906,-0.007986461,-0.008621233,-0.0014832924,-0.04015901,0.028085398,0.0008088478,0.020766094,0.0043170936,-0.006088624,0.007954075,-0.052128986,-0.011788612,-0.006108056,-0.0019480358,-0.012935087,0.0107716825,-0.03176448,-0.00005627119,-0.008122483,-0.018680416,-0.027515398,-0.016193148,0.012494634,0.036557652,0.014664516,-0.017644055,0.013084064,0.04495218,0.00083718577,-0.04632536,-0.02190609,0.06352896,0.020118369,0.00238687,0.011399977,0.013382018,0.0028192273,0.069850765,-0.0034912429,-0.024380405,0.019729732,-0.03287857,0.07156076,0.0019528937,-0.04251673,0.010460774,0.01231327,0.0111732725,0.005272489,-0.03632447,0.0140556535,0.013498609,-0.049071718,0.02285177,-0.00038013415,-0.019729732,-0.007850438,-0.019587232,-0.04821672,-0.0041454462,0.025818355,0.023525406,-0.018563826,-0.010473728,-0.02058473,0.03264539,-0.0059526013,0.03585811,-0.010966,0.024522904,0.01224202,-0.030313574,-0.027515398,-0.0064675435,-0.0038701624,0.0019431779,-0.023732679,0.002462978,0.022372454,0.007746802,0.006794645,0.055030797,0.0058651585,0.0042005028,-0.00060117064,-0.01011748,-0.006166351,0.01063566,-0.022825863,-0.013809517,0.029173577,0.015195651,0.005107319,-0.016620647,-0.028033579,0.01573974,0.014936561,0.021828365,0.02342177,-0.02422495,-0.0006728253,0.021232456,-0.00699544,0.03982219,-0.0063185664,-0.010966,0.03147948,0.009838957,-0.03041721,-0.0022718988,-0.0017650533,-0.0075265756,0.0024694551,-0.018162236,-0.007261008,-0.00036009515,0.003934935,-0.018952461,0.008588846,0.027100854,0.005826295,0.03448493,-0.00082989887,0.07819348,0.0070731672,-0.0027997955,0.0044628317,-0.012637133,0.009994411,-0.009664071,0.006176067,-0.021426775,-0.0009885917,-0.0031544254,0.015299287,0.04251673,0.024315633,0.00027002074,0.0037503333,-0.03282675,0.021867229,-0.02583131,0.014314744,0.0057323747,0.020662457,-0.00994907,0.0111085,0.005188285,0.013304291,-0.029044032,-0.02640131,-0.007384076,0.01699633,0.020973366,-0.01739792,-0.0043430026,0.021180639,-0.008122483,0.034122203,-0.04044401,0.009754753,0.0018832632,-0.0032742547,0.012967474,0.010324752,-0.008834982,0.016076557,-0.0049130013,0.012799065,-0.029769484,-0.0031107038,0.011976453,-0.015959967,0.012747247,0.015519514,0.055289887,-0.00029835876,0.009165322,-0.014224062,0.0024743131,-0.020273821,0.028033579,-0.005826295,-0.0005934789,0.02798176,0.0033195955,-0.054046255,0.018822916,0.04655854,-0.0058554425,0.008264983,-0.015804512,-0.008167824,-0.019911095,0.029173577,0.010143388,0.01969087,0.007086122,-0.010085093,-0.0052951598,0.011212136,-0.0046862974,0.017980872,-0.019069051,0.02514472,0.022281773,-0.003543061,-0.01030532,-0.012520542,-0.013692927,-0.0082002105,0.010460774,0.019483596,-0.015921103,0.03850083,-0.0014120425,0.01250111,-0.015169742,0.020921549,-0.04176537,0.011477704,-0.01198293,0.008174301,-0.00082544575,-0.0047219223,0.017022237,-0.03717947,-0.0014954372,0.009119981,0.04197264,-0.013939062,-0.0042037414,0.015001333,-0.027385853,0.0064060097,0.003172238,0.008705436,0.0058101015,0.0030993687,-0.022035636,-0.028292669,0.005178569,-0.05228444,0.028292669,-0.04819081,-0.0049000466,-0.015027242,0.014573834,-0.03228266,0.022812909,0.007921688,0.004294423,-0.03803447,-0.03202357,-0.02075314,0.02597381,0.060730785,-0.016581785,-0.030598573,0.029406758,-0.023149725,0.02393995,0.026206993,-0.003100988,0.0084010055,0.04114355,-0.0038604466,0.016737238,-0.0006355811,0.009521571,-0.006438396,0.0030005905,-0.012060657,-0.007843961,0.00241116,0.009256003,0.02035155,-0.04435627,0.002900193,-0.008601801,-0.0024160177,-0.019250415,-0.017864281,-0.036013562,0.006535555,0.0011367591,-0.0040903892,0.004411014,0.038423102,0.03873401,-0.0518958,-0.013835426,0.0030103063,0.011205659,0.013407927,-0.015752696,-0.032412205,0.008731346,0.02611631,-0.0038021512,0.012118952,-0.007947598,-0.032386295,-0.014353607,0.027308125,-0.03940765,-0.033500385,0.00084771134,0.02084382,0.0022913306,0.043527182,-0.0023253362,0.009107027,0.021374956,-0.02063655,0.034070384,0.0140556535,0.033344932,-0.02110291,0.0047899336,0.024561768,0.02169882,-0.015791558,0.017527465,-0.015195651,-0.021996774,0.0032645387,0.015221559,-0.00862771,0.035676744,-0.0024403075,0.013291337,0.0032030048,-0.0020225244,-0.0010363616,0.008601801,-0.02419904,-0.02129723,-0.0016444143,-0.0019026949,0.016089512,0.02290359,0.008465778,-0.025442675,0.015662013,0.04337173,-0.02245018,0.011425885,0.017048147,0.016219057,-0.0021488308,-0.00010727961,-0.0061177714,-0.023616089,-0.0042620366,-0.001165097,0.02006655,-0.012559406,-0.004009424,-0.00031475432,0.0025747106,-0.0037341402,-0.047283992,-0.03261948,-0.023616089,0.014366562,-0.025766538,-0.008433392,0.04168764,-0.015389969,-0.009754753,-0.005249819,-0.038086284,-0.016659511,0.034847654,-0.00080722844,0.004728399,0.015610196,0.019988822,0.0030718404,0.054512616,-0.0028856192,0.01311645,0.016296785,-0.0015877382,-0.011335204,0.026349492,0.015143832,0.015351105,0.034096293,0.004116298,-0.013220087,0.022502,-0.011166795,0.024445178,0.00018379223,-0.04313855,-0.01158134,0.011833953,0.01387429,0.03829356,-0.031401753,-0.006470782,-0.015843377,-0.028292669,-0.007740325,-0.03964083,0.017954962,0.03365584,-0.019354051,0.004126014,0.021659955,-0.007299871,0.030831754,0.040029462,0.0011068017,0.009664071,0.0019091723,-0.00907464,0.0054797614,0.023810405,-0.031013118,0.008595323,0.019133825,0.028603578,-0.0029277212,0.026582673,-0.025442675,-0.0011399976,0.013602245,0.0033649362,-0.024665404,0.029924938,0.013822472,-0.038604468,-0.0043106163,0.034951292,-0.035702653,0.00467982,-0.0044142525,0.015273378,0.003594879,0.042387187,-0.031894024,0.015532468,0.014340652,-0.00314309,-0.013304291,-0.0366872,-0.012494634,0.009560435,0.002699398,-0.0067816908,0.01980746,0.0021261603,0.030132212,0.0043235705,-0.02089564,0.054253526,-0.0033649362,0.04331991,-0.02101223,-0.01645224,0.012967474,-0.011276909,-0.008044756,0.029121758,-0.012416907,0.005282205,-0.005667602,0.019198596,0.0026556763,0.014729288,0.00546033,-0.014612697,-0.018499052,0.013103496,0.010227593,-0.030184029,-0.029018123,0.019069051,-0.0057777152,0.0051591373,-0.029329032,0.03629856,-0.0052174325,-0.034148112,-0.022657454,-0.04337173,0.02020905,-0.0015092015,-0.03362993,-0.0073257806,0.025494494,-0.00074448,-0.011199182,-0.020455185,0.005126751,-0.022774044,-0.00602709,-0.0051040803,-0.009061686,-0.012209634,0.024639495,0.009515095,0.0023140009,0.0066197594,0.045340817,0.0076302118,-0.06948804,-0.032256752,-0.05085944,-0.014509061,0.005502432,0.0027690283,-0.014353607,0.011030773,0.0064416346,0.011859862,-0.020027686,0.009437367,-0.029173577,0.015804512,-0.005036069,0.031375844,0.03373357,-0.008711914,0.0022038876,-0.012935087,-0.013628154,-0.021336094,-0.04046992,0.05031535,-0.028940395,0.017877236,-0.011535999,-0.028707214,0.021970864,0.0067816908,0.0025892844,0.013887244,-0.0013027388,-0.04223173,-0.011380545,-0.012481679,-0.026245855,0.017592236,0.021284275,-0.02370677,-0.011244522,0.0321013,0.026789945,0.017980872,0.04065128,-0.007558962,-0.0136540625,0.003902549,0.0068075997,0.0020241435,0.0010047848,-0.02396586,0.03313766,0.02138791,0.03451084,0.029665848,-0.028214943,-0.024121314,-0.016270876,-0.024963358,-0.008990436,-0.0010323132,0.023745634,0.010104525,0.041039918,-0.0084010055,0.03966674,0.01252702,-0.01219668,-0.015804512,0.0072221444,0.04894217,-0.05083353,-0.0044142525,0.018615644,0.0010679382,-0.006412487,0.027696762,0.015092014,0.017864281,-0.03425175,0.004469309,-0.0062440783,0.030598573,-0.0012088185,0.02035155,-0.031090846,0.016529966,-0.000964302,0.020766094,-0.026414264,0.019716777,0.07342622,-0.010247025,-0.02479495,0.007636689,-0.0051850462,0.04150628,0.06762259,0.010914182,-0.010959523,-0.0031398516,0.04046992,0.03749038,-0.05549716,0.022139274,0.0023625803,0.030209938,0.008718391,-0.00420698,-0.022294726,0.02318859,0.03749038,0.029743575,0.0052077165,0.020403367,0.004151923,-0.046480812,0.017825417,-0.005133228,-0.022217,-0.005023115,0.023292225,-0.05549716,-0.0034782884,-0.0058457265,-0.014599742,0.011477704,-0.0072739623,-0.066638045,-0.0035657312,0.027929943,-0.0057420903,-0.034096293,0.034096293,-0.0072350986]},{"id":"guide-editing-embeds-0","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Overview\nThe Fluxer API supports editing existing messages via PATCH. You can update the message content, embeds, or both. Only the message author (or admins with proper permissions) can edit messages.","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[-0.0024551915,0.012330062,-0.01213119,-0.017980365,0.011768541,0.011505328,0.015605601,0.03560978,-0.007364112,-0.01638939,0.022109883,-0.026204307,0.009259244,0.0146814305,-0.008569042,0.0432839,0.018027158,0.00020069984,-0.023186132,0.04625528,0.009569251,-0.018974725,0.013043662,0.06990935,-0.026274497,-0.016728641,0.0098090675,0.035796955,-0.0021715064,-0.033597663,0.023654066,-0.011452686,0.038136624,0.0116398595,-0.028543977,0.018553585,0.028333407,0.04290955,-0.020904953,-0.024660124,0.019290581,0.009300189,-0.020940049,0.01588636,-0.0146112405,0.05498225,-0.034346357,0.025385423,-0.009733028,0.03996157,0.020413622,0.0027403387,-0.0054602055,-0.025081264,0.002816378,0.022098185,-0.019126805,-0.00021824737,-0.050302908,0.016962608,-0.002278254,-0.014155005,0.0053461464,0.0016275331,-0.034065597,0.019161899,-0.037879262,0.041178197,0.032521416,0.04992856,0.049834974,-0.024098603,-0.006872781,-0.032100275,0.010370588,-0.03504826,0.014459162,0.024519743,-0.018705664,-0.037504915,0.012447045,0.010019638,-0.092042625,-0.0020574476,-0.047799464,0.065230004,0.0074810954,0.001975559,-0.016915815,-0.06822478,-0.058866102,0.0029392107,-0.06307751,0.009241697,0.045459792,0.02660205,-0.06036349,-0.007656571,-0.00078013376,0.049554214,0.082917914,-0.038347196,-0.07468227,-0.05526301,0.0046793404,-0.039025698,-0.000058720238,0.056526434,-0.02709338,-0.038721543,-0.07360602,-0.05526301,-0.0020720705,0.004547734,0.024145396,-0.038043037,0.012154587,0.016857324,0.02901191,-0.012821393,-0.054139968,-0.017723002,0.051191986,0.0016874871,-0.011932318,-0.051004812,-0.014658034,-0.023151036,-0.07908085,-0.019360771,0.030017968,-0.06902027,0.051004812,-0.027467728,-0.040991023,0.018927932,0.024005016,0.023525383,0.00094025495,-0.022250263,0.02590015,-0.025666183,-0.003682056,0.017652811,-0.03277878,-0.002667224,-0.04576395,0.02234385,-0.00057650934,0.037200756,-0.023572177,0.0043751835,-0.023735953,0.0119791115,-0.038066436,-0.009452268,0.02831001,-0.03797285,-0.013090455,-0.021162316,-0.019817006,0.0037288493,-0.0065042833,-0.040569883,-0.00829998,-0.039891377,0.012318363,-0.037855864,-0.021513268,0.016681848,-0.03640527,-0.043798625,-0.01270441,0.0048489664,0.008826406,-0.023326512,-0.0016714019,-0.045015253,-0.0038575314,0.0546079,-0.005767287,0.017816588,-0.036709424,0.012833091,-0.015991647,0.017173178,-0.048992693,0.029924382,-0.043658245,-0.017021101,-0.020694382,0.007820347,-0.005577189,-0.014997286,-0.028426994,-0.010013789,0.042722378,-0.0034100693,0.043120123,-0.03680301,0.019957388,0.034205977,0.024800504,0.006059746,-0.010002091,-0.0062118242,-0.014377274,0.016494675,-0.039423443,0.023934826,0.03235764,0.038160022,-0.025923546,0.022952165,-0.024005016,0.046348866,-0.007913934,0.0023572177,-0.072108634,-0.034744103,-0.051425952,-0.012283268,0.07196826,0.011429289,-0.022928769,0.038277004,-0.022402342,0.0075922296,-0.045646966,0.039704204,0.019933991,-0.0011925007,-0.04143556,-0.043939006,0.02688281,0.011429289,-0.051847093,-0.005290579,0.0048255697,0.00039335704,-0.03724755,-0.030345522,0.010581158,-0.006129936,-0.039189477,0.014412369,0.008212242,-0.052455407,0.03305954,0.06415376,0.08853312,0.012142888,0.040686864,-0.012891583,0.037598502,-0.066353045,0.012645918,0.038885318,0.011967413,-0.022577818,0.03427617,0.039259665,-0.03808983,-0.01333612,0.014388972,-0.006422395,-0.0029977025,0.021220809,0.007890537,-0.052970134,-0.030883648,0.015476919,0.014061418,0.021092126,-0.032030087,0.004556508,0.042698983,0.00008239112,0.015699187,0.008387717,-0.0084930025,-0.054280348,-0.034790896,-0.02716357,-0.0001955818,0.00095487793,0.016167121,-0.01426029,0.027678298,0.008680177,-0.019980785,0.0029099649,0.0446877,-0.0011537499,0.0005001045,0.055871326,0.016787134,-0.0059778574,0.006726552,0.0496478,-0.016050138,-0.011025696,-0.0137221655,0.0042903703,0.036709424,-0.0076331743,0.014225195,-0.009493212,0.069722176,-0.046068106,0.029784001,0.015652394,-0.050256114,-0.055450182,-0.021033635,0.045436397,0.029409654,0.030485902,0.0068259877,-0.0048548155,0.011072489,-0.005662002,-0.005085858,-0.080578245,-0.042535204,-0.07533738,-0.004378108,0.0069663683,0.04293295,0.036919996,0.026204307,-0.022952165,0.029924382,0.028684357,0.013839149,-0.023735953,0.02354878,0.030181745,0.041388765,-0.0031527057,0.002961145,-0.0567604,-0.0035036562,-0.01326593,-0.06785043,-0.011025696,-0.033433888,0.0035943184,0.002263631,0.008516399,-0.030275332,0.001035304,-0.035165243,-0.047448512,0.055450182,-0.012119492,0.01333612,-0.050630465,-0.0034422397,-0.03163234,-0.011815335,0.0034217676,-0.01752413,0.052127853,0.0044599962,-0.014856906,-0.009224149,0.014739922,-0.030415712,-0.022542723,0.007030709,-0.0072763744,0.012259872,0.020869859,-0.05526301,0.034088995,0.019688325,-0.03411239,-0.036756217,-0.0021305622,0.03383163,0.037598502,-0.017021101,-0.028076043,-0.018647172,0.0056152083,0.02150157,0.000021865862,-0.017372051,0.033597663,-0.007469397,0.009042826,0.011189473,-0.03694339,0.0674293,0.03853437,0.025666183,0.027210364,0.024987677,-0.0032813875,0.012119492,0.009885106,-0.01695091,0.013558389,-0.008411114,-0.002981617,0.019442659,0.013511595,0.0065510767,-0.029105498,0.013511595,-0.01199081,0.03462712,0.038464177,-0.02419219,-0.0124587435,0.053578448,-0.03996157,-0.005299353,-0.0058345525,0.0054602055,-0.029971175,-0.018307919,0.0142017985,0.05938083,-0.047284734,-0.004761229,-0.02377105,-0.020589098,-0.036218096,-0.05647964,-0.0068259877,0.05760268,-0.00464717,0.017360354,0.0011500941,0.035913937,-0.014482559,-0.019056614,-0.0007889076,-0.035867143,0.021524966,0.021489872,0.00010565073,-0.03397201,-0.0123885535,-0.029175688,0.023747653,0.012154587,-0.029128894,-0.015687488,-0.030673077,0.037130564,-0.021653648,-0.05484187,-0.0020676835,0.009715481,0.069535,0.07968917,0.03341049,0.009101317,0.010943808,-0.021630252,0.03780907,0.0050683105,-0.024309173,-0.010282851,0.027491124,-0.004071026,0.0066797584,0.0025955716,0.021302698,-0.0066505126,0.02582996,-0.02887153,-0.068645924,-0.05165992,-0.040967625,0.038136624,0.029316068,0.009113016,0.00716524,-0.01284479,0.018226031,-0.013172343,0.08614666,0.019700022,-0.0134765,0.00351243,-0.029479844,-0.011189473,0.009013579,-0.010639651,-0.010692293,0.017617717,-0.06710174,-0.061065394,-0.032685194,0.02489409,-0.011499479,-0.005085858,0.02256612,-0.018846044,-0.0014622939,0.0560585,0.0071125976,-0.007264676,-0.0054514315,-0.001621684,0.005547943,0.016611658,-0.004307918,0.016798832,0.029175688,0.021489872,0.02164195,-0.03341049,0.039750997,-0.0068903286,-0.034673914,0.030345522,0.024122,0.020366829,-0.008832255,0.0025063718,-0.02398162,-0.051191986,-0.046161693,-0.0038721543,-0.019817006,-0.010739086,-0.0234084,0.016330898,-0.01617882,-0.05924045,0.025502406,-0.035024863,0.016553167,-0.02382954,-0.0038341347,-0.03626489,0.025783166,-0.0024902865,0.01738375,-0.03376144,0.014962191,-0.016822228,0.044945065,-0.0129032815,0.016401088,0.03808983,-0.020378528,-0.00659787,0.011236266,0.018541886,0.061252568,-0.01340631,0.0034656364,0.005094632,0.018810948,0.007598079,-0.024309173,0.018272825,0.009423022,-0.031538755,-0.020811366,0.020144561,-0.023104243,-0.016646754,-0.011803636,-0.020191355,0.010973053,0.01354669,0.03284897,0.018822648,0.04078045,-0.060971804,0.021326095,-0.019735118,-0.0032111974,-0.005021517,-0.0631243,0.023864636,-0.016857324,-0.033316903,-0.012025905,-0.04440694,-0.00047597665,-0.037060376,0.006398998,0.0248239,0.046138298,0.01361688,-0.010095677,-0.014704827,-0.020507209,0.011481931,-0.018623775,-0.016845625,0.01546522,-0.02382954,-0.0034305414,-0.022601215,0.011160227,0.018787552,0.04548319,0.0043751835,0.0021144769,-0.023455193,0.0014140382,0.004129518,-0.020811366,-0.01667015,-0.018857742,-0.003319407,0.007656571,0.034650516,0.017255068,0.049975354,0.034463342,0.03312973,0.009738877,-0.007159391,0.0077033644,-0.037200756,0.008030918,0.0025414668,-0.042371426,0.025081264,-0.016646754,0.049133074,-0.00496595,0.028497184,0.044079386,-0.008908294,-0.033948615,0.032193862,0.024519743,-0.018974725,-0.01447086,0.02639148,-0.036569044,0.03610111,0.0037346985,-0.016096931,-0.024145396,-0.007726761,0.009165658,-0.0010470024,-0.012786298,-0.018237729,-0.016646754,0.019325675,0.0041616885,0.025198247,-0.020308338,0.03284897,0.009253396,0.004907458,-0.011049093,-0.025525803,0.007960728,0.0063697523,0.038604558,-0.010089828,0.004588678,-0.04765908,-0.02347859,-0.010739086,0.03256821,-0.018974725,0.00723543,0.010212661,-0.010686444,-0.00017584083,-0.016915815,0.025081264,-0.04782286,0.018226031,0.04604471,-0.016506374,0.016541468,-0.026157513,0.0054923757,0.033527475,-0.037341136,-0.04426656,0.00808941,0.012002508,-0.035001468,-0.025666183,-0.0051969923,0.009639441,-0.036756217,0.03640527,0.037504915,0.008902445,0.01440067,0.017687907,-0.039189477,0.028894927,0.0020486738,-0.012786298,-0.037855864,0.013827451,-0.05633926,-0.014026323,-0.006352205,0.055496976,-0.01120702,0.0005161897,-0.0013709005,0.009083769,-0.016728641,-0.016295804,-0.006165031,-0.015500315,0.0262511,0.024449553,0.018343015,0.003369125,-0.007878839,-0.019466056,0.0163192,-0.018693965,-0.066306256,0.021513268,0.051987473,-0.0019872573,0.004878212,-0.019372469,0.0023396702,0.010072281,0.0085456455,-0.0142368935,0.00063573226,0.00929434,0.013827451,-0.024800504,0.015921457,-0.004498016,0.029526638,0.040335916,0.008879049,0.016330898,-0.0025721749,0.020413622,0.020062672,0.008522249,0.0047290586,-0.03413579,0.007399207,-0.011534574,0.008703574,-0.038464177,0.001667015,0.024636727,-0.006235221,-0.03949363,0.007691666,0.036498856,0.054139968,0.0026993945,-0.026999794,-0.03376144,-0.013324422,-0.014962191,-0.0034305414,0.009580949,0.013663674,-0.021665346,-0.005893044,-0.028286614,0.008481304,0.024847297,-0.021653648,-0.028193027,-0.024449553,-0.0071359943,0.0076390235,-0.005372468,0.012306665,-0.030228538,-0.031959895,-0.029175688,0.010405683,-0.0053753923,-0.037364535,-0.016869022,-0.004673491,-0.012505537,-0.030134952,0.00610069,-0.029433051,-0.019372469,0.019524548,0.01035889,-0.06771006,0.03170253,0.02213328,-0.009423022,0.006632965,-0.01035889,0.0052086907,-0.0027783583,0.04251181,-0.027420934,0.030602887,-0.011154378,0.016588261,-0.022039693,0.009376229,0.011113433,-0.003348653,0.01595655,0.015991647,-0.014739922,0.0073173186,0.011768541,0.007978275,0.026999794,0.009627743,0.036615837,-0.000347112,0.013160645,0.018576981,0.015418427,0.017606018,0.024309173,-0.007937331,-0.015196158,0.025502406,0.023256322,0.003696679,-0.02489409,-0.0133478185,-0.0461149,0.024589933,0.0047787763,-0.0062293718,-0.016564865,-0.008750367,0.03200669,0.0013438481,-0.008247337,0.0093996255,-0.02398162,0.041973684,-0.008996032,-0.021290999,0.0049279304,0.025783166,-0.0085456455,-0.01610863,0.037738882,0.010148319,-0.022261962,-0.000079283745,0.016986005,0.02503447,0.0012875497,0.002512221,-0.014775017,-0.012353458,-0.006463339,-0.055824533,-0.051472746,-0.00624107,0.0013153333,0.040289123,0.043517865,-0.0007538125,0.0068786303,0.009130563,-0.017500734,0.018483395,0.017676208,-0.0133127235,0.009610196,0.043260504,0.02248423,0.010019638,0.0078086494,-0.008381869,-0.019477755,0.0044161277,0.03752831,0.05830458,-0.01745394,0.0048489664,-0.019817006,0.013991228,-0.010095677,-0.011891373,0.013382914,0.014786716,-0.011908921,0.023712557,-0.00031878008,-0.016202217,-0.016986005,-0.037621897,-0.008223941,0.0028777944,-0.0049250056,-0.013675372,-0.0075863805,0.0094698155,0.0073407153,-0.004243577,0.030088158,-0.012973472,-0.0065861717,0.009692084,-0.027257157,0.014529352,-0.011265512,0.0468168,-0.0026365158,-0.046512645,-0.030673077,0.0056795496,-0.011037394,0.010002091,0.015605601,-0.008574891,-0.010405683,-0.0016860248,0.021092126,0.004454147,0.014552749,-0.021700442,-0.0029245878,0.024075206,0.019290581,-0.007358263,0.038206816,0.000741383,-0.01681053,0.03811323,-0.0040768753,-0.0054104873,0.02688281,-0.016541468,0.0461149,-0.03879173,-0.05053688,0.015862964,-0.008574891,-0.047214545,0.0072120335,0.03731774,0.025783166,0.004427826,0.0016787134,-0.045249224,0.022449136,0.0129383765,0.031538755,-0.012259872,-0.015734281,-0.04227784,-0.013944435,-0.002617506,0.010002091,-0.011727597,-0.00038677672,-0.016997704,-0.022648009,0.013453104,-0.010698142,-0.009253396,0.03783247,0.03528223,0.017255068,0.049741387,-0.0035855446,-0.008604137,0.015313142,0.02354878,0.0034246922,0.011400043,-0.01340631,0.027350744,-0.0065803225,-0.016939212,0.013804054,0.015628997,0.02575977,0.026953,0.03135158,0.003936495,-0.012505537,-0.03341049,0.0038575314,-0.029620225,-0.0036615839,0.0019419263,0.012435347,0.010780031,-0.020413622,0.005299353,-0.020752875,0.0037230002,0.0066446634,0.008744517,0.026134117,-0.0017591396,-0.0012107793,-0.0037113018,0.014505955,0.0012656153,-0.002439106,-0.013991228,-0.024075206,0.013710467,0.009721329,0.0034773347,-0.006352205,-0.0036615839,0.037504915,-0.041809905,-0.008633384,-0.029058704,0.0020866934,-0.015067476,0.01731356,-0.008393567,-0.020355131,-0.011481931,-0.027935663,0.036498856,-0.00596031,-0.021115523,-0.018343015,0.0023966997,0.04412618,0.013453104,0.05718154,-0.03425277,-0.056807194,-0.0062469193,-0.010902863,0.011312306,0.038019642,-0.013921037,-0.025806563,0.01752413,-0.016132027,-0.002189054,-0.0525022,0.04562357,0.024917487,-0.044243164,0.0028193027,0.0028090666,-0.027795281,0.013628579,-0.0142017985,-0.0069488203,-0.02582996,-0.012716108,0.0037200756,-0.012248173,0.014751621,0.04106121,0.0037434723,-0.020390226,0.017173178,-0.018214332,0.0046881144,-0.03575016,-0.0062527684,-0.001289012,0.030181745,-0.015699187,0.012107793,-0.022297056,-0.0070482567,-0.03284897,-0.008873199,-0.018003762,0.020624192,0.025525803,0.006363903,0.018249428,0.021665346,0.0049279304,0.030392315,-0.01298517,-0.029245878,0.036194697,-0.022086486,-0.016857324,0.013418009,0.027631504,-0.000049306724,0.0090077305,0.0016947986,0.007609777,-0.0035299775,-0.014997286,-0.017559225,0.010048884,0.030111555,0.047565494,-0.002294339,-0.00142793,-0.011253813,0.0038487576,-0.050770845,0.023361607,-0.015558807,-0.008586589,-0.036335077,0.019641532,0.01234176,0.008627534,0.0031614795,0.013534992,0.03242783,-0.0051969923,-0.03242783,0.027280554,-0.031585548,0.014002927,0.016225614,0.021618553,-0.0013804054,-0.02249593,-0.051987473,-0.02831001,0.00020179656,-0.025057867,0.047565494,-0.016728641,0.029433051,-0.027257157,0.0060246508,-0.02405181,0.022893673,0.02475371,-0.028216423,0.009335284,0.011382496,-0.0326384,0.0046208487,0.044453733,-0.010850221,0.003278463,-0.008873199,0.033153128,0.019945689,0.007937331,0.020612495,-0.0060071032,-0.014587844,-0.026157513,0.0073114694,0.031047424,0.0042318786,-0.0014242743,-0.0066154175,-0.017886778,0.003731774,0.0133127235,-0.023525383,0.0004657406,-0.018834345,-0.029175688,0.047799464,-0.051051605,0.0020091918,0.002402549,-0.005723418,0.036147904,-0.012891583,-0.034533534,0.010850221,0.015231253,-0.011429289,-0.035867143,0.00886735,-0.0021013163,0.011025696,0.04120159,-0.020916652,-0.009083769,-0.010399834,0.012645918,-0.026485067,-0.0016626281,0.0009958221,-0.023443496,-0.035001468,0.009159809,-0.032170467,-0.017290164,0.03582035,0.046770006,0.0039394195,0.02291707,-0.0048986846,-0.0027447257,0.019606436,-0.034814294,0.0006159913,0.018050555,0.05348486,-0.01603844,0.020437019,-0.016365994,0.04796324,0.009452268,0.022238566,-0.0008064551,0.026976397,0.008914144,0.024847297,-0.0033662005,0.022601215,-0.0042728228,0.028193027,0.006106539,-0.028216423,0.027420934,0.011277211,-0.0037785673,0.0053110514,0.013710467,0.0016714019,-0.0034714856,0.02590015,0.033644456,-0.04880552,-0.0093996255,0.015289745,0.011306456,0.038183417,0.012856488,0.032661796,0.013534992,0.0038867772,-0.019454358,-0.008604137,0.02370086,0.018822648,-0.0030386467,-0.03483769,-0.00010565073,-0.009335284,0.009616044,0.0060538966,-0.039283063,0.015874662,0.0061533325,0.015593902,-0.015909757,-0.05292334,-0.015453522,-0.0071476926,-0.030181745,-0.010744936,-0.013967832,-0.012353458,0.0065101325,-0.024870694,-0.005925215,0.034463342,-0.005226238,-0.00400961,-0.009996241,-0.014505955,0.037200756,-0.019887196,-0.019091709,0.009692084,0.017395448,0.026157513,0.0042465013,-0.02064759,0.0012385629,-0.029199084,0.008785462,-0.0076682693,0.015278047,-0.015032381,-0.010487571,-0.0074518495,0.024145396,-0.0027257157,-0.010815126,-0.011247965,0.016635055,-0.0111426795,-0.0019989558,0.03200669,-0.0038897018,0.025783166,0.0008517862,-0.018623775,0.013031963,0.013148947,-0.027631504,0.009165658,0.038557764,-0.022729896,-0.004512639,-0.007890537,-0.015102571,-0.0069254236,0.020378528,-0.038744938,0.0070014633,0.005758513,-0.013921037,0.00083423866,-0.026485067,-0.03142177,-0.012119492,0.004524337,0.0012656153,-0.020320036,0.008182997,0.026999794,-0.031094218,-0.016365994,0.008177147,-0.0014425529,0.00011378474,0.019969085,0.0075922296,0.014388972,-0.0045360355,-0.018413205,-0.026648844,-0.004512639,-0.029058704,-0.036569044,-0.01433048,-0.003611866,0.011616463,-0.0061825784,-0.01731356,0.0019390017,0.015944853,0.012599124,-0.04241822,-0.005553792,0.028567374,0.01255233,-0.006264467,-0.0004357636,-0.009703782,-0.0039891377,0.0048343437,0.034463342,0.022168376,-0.015781075,0.0030678925,-0.009686234,0.027795281,0.006428244,0.024777107,0.013710467,0.014412369,-0.000052596883,-0.005474828,0.0016289954,-0.024660124,-0.033246715,0.020413622,0.02845039,0.015558807,-0.0018585755,0.022074789,-0.036288284,-0.010844371,-0.008703574,-0.035352416,0.0028119911,0.0044424487,0.0059778574,-0.0024946735,-0.028263217,-0.017699605,-0.0071125976,-0.0006796011,0.019735118,-0.033784837,0.019606436,-0.0155354105,0.011756843,0.0065452275,0.014388972,-0.019945689,0.01858868,0.025362026,0.004553583,-0.0018600378,-0.02852058,-0.018003762,-0.03598413,0.0048840614,-0.016190518,-0.013078757,-0.0014900775,0.0058521,0.016588261,0.0016889494,-0.011938167,0.019653229,-0.014587844,0.006866932,-0.0057409657,0.005030291,0.050724052,-0.007984125,0.011926468,-0.030485902,-0.00936453,-0.0065101325,-0.009171507,0.02220347,-0.026789224,0.020097768,0.004185085,-0.019583039,0.0078086494,-0.0003500366,-0.0043254653,0.011832882,0.009803218,-0.009850011,0.0013796743,-0.014108212,-0.02440276,0.026274497,0.008785462,-0.024940884,-0.019278882,-0.00029666288,0.0014184251,-0.026929604,-0.018822648,0.011505328,-0.02361897,-0.021946106,-0.0065861717,0.009499061,-0.018413205,-0.017559225,0.035095055,-0.0021861293,-0.028684357,0.0038984756,0.029596828,-0.02533863,-0.03079006,-0.005787759,-0.024917487,0.020694382,-0.009066222,0.011955715,0.016342597,0.021033635,-0.013254232,0.021419682,0.04078045,0.016354294,-0.011499479,0.02398162,-0.037153963,0.019454358,-0.008112807,0.045015253,0.023899732,0.010797578,0.029058704,-0.01326593,-0.0075454363,-0.020284941,-0.029550035,-0.012739505,0.033223316,-0.0073114694,-0.014892001,0.00076551083,-0.007650722,0.013067058,-0.025666183,-0.00596031,0.00929434,-0.016061837,0.014002927,0.024309173,-0.0062235226,0.023958223,0.02106873,0.0102536045,-0.041271783,-0.002383539,0.029807398,0.043658245,-0.03539921,0.056386054,-0.006562775,-0.015137666,0.008311679,-0.00044344063,0.007966577,0.013441405,0.0120493015,0.004995196,-0.025081264,0.02688281,0.036896598,-0.06167371,0.01368707,0.0062527684,-0.054795075,-0.004299144,0.008446209,-0.03142177,0.010072281,-0.009926051,-0.06962859,-0.0050770845,0.012528934,-0.051613126,-0.0074109053,0.024449553,0.017547527,-0.029433051,0.003682056,-0.0099319]},{"id":"guide-editing-embeds-1","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Content\nUpdate the text content of a message you sent.\n\n```javascript\nconst reply = await message.reply('Initial message');\nawait reply.edit({ content: 'Updated message!' });\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.012521235,0.0017571979,-0.014814783,-0.004823035,-0.044422403,0.00088065653,0.04363228,0.049558192,-0.015626853,0.0053031435,0.035994437,0.013651548,0.027654262,-0.008598061,-0.011818904,0.002908087,-0.0020260587,0.005311374,0.009547304,0.035731062,0.010452652,-0.021267444,0.0009183794,0.06509726,0.015670748,0.014716018,-0.0098436,0.0095637655,0.00002884939,-0.035511583,0.008685852,-0.0117201395,0.05491346,0.014639201,-0.017207095,0.03678456,0.03412887,0.012455392,0.0131248,-0.008082287,0.008411504,-0.0059259133,-0.0068148,-0.01040327,-0.05443061,0.03865012,-0.042512942,0.018721497,0.020773618,0.051050644,0.01864468,0.021124784,0.03434835,0.0041042436,0.00031069893,-0.0053196047,-0.008877896,0.01399174,-0.030068522,0.009399157,0.007709174,-0.012949218,-0.037442993,0.017349757,-0.024471827,-0.033207063,-0.049163133,0.017042488,0.013750314,0.022145357,0.030726958,-0.012060331,-0.0104691135,-0.022496523,-0.00018535626,-0.015999965,-0.005679,-0.016142627,-0.014244139,-0.028839445,0.013728365,-0.006567887,-0.107632145,0.0079506,-0.07027694,0.038342852,-0.009426592,-0.0045569176,-0.012718766,-0.036806505,-0.039528035,-0.016636454,-0.047934055,-0.014112453,0.032987583,-0.007956088,-0.10947576,-0.0020288022,0.011709166,0.04332501,0.10719319,-0.048197426,-0.09542915,-0.011368974,0.007599435,-0.031143967,0.011632348,0.046090435,-0.02554727,-0.008855948,-0.048241325,-0.025174158,-0.005816174,-0.020378558,0.03926466,-0.029629566,0.005574748,-0.013037009,0.0041618566,-0.03847454,-0.06615075,-0.040120628,0.06018094,-0.0318024,0.011215339,-0.047802366,-0.03665287,-0.033843547,-0.059741985,0.030573323,0.007983522,-0.01822767,0.015407374,-0.0020411478,-0.0545184,0.029805148,0.011533583,0.036718715,-0.021772245,0.009558278,0.03535795,-0.03494094,-0.024054818,0.0028477304,-0.04435656,-0.020137131,-0.06250741,0.010935505,-0.035731062,-0.007818913,-0.020345636,0.037421044,-0.05109454,0.02190393,-0.0017119305,0.02434014,0.0062880525,-0.049558192,-0.021475948,-0.045695376,-0.042512942,-0.016416974,-0.011445791,-0.038606226,-0.028532175,-0.044949148,0.024384035,-0.013805183,-0.025810644,-0.0018340152,-0.017602157,-0.057503305,-0.019204348,-0.0057228957,0.024910783,0.0049410043,-0.007956088,-0.066194646,0.009975287,0.075763896,-0.015242766,0.0057722786,-0.04595875,0.03757468,-0.013026035,0.01604386,-0.043346956,0.024493774,-0.04310553,-0.06645802,-0.015681723,-0.026337393,-0.0036433393,-0.0052153524,-0.03000268,-0.008998609,0.06040042,0.013947844,0.024076765,-0.022540418,0.034589775,0.011401896,-0.0046529393,-0.008806566,-0.031143967,-0.0034705,-0.026951931,0.012005461,-0.022430679,0.014452644,0.048109636,-0.012378574,-0.0151110785,0.022353861,-0.02004934,0.021969775,-0.026403235,-0.049821567,-0.06233183,-0.014847705,-0.059917565,-0.0025047958,0.08765962,-0.0034156304,-0.0020013675,0.026578818,-0.0037009523,0.040318158,-0.05816174,0.043171376,0.026117913,-0.021410106,-0.012235913,-0.009755809,0.0035967,0.040471792,-0.023528071,0.0148916,-0.0055884654,0.013190644,-0.0091467565,-0.0121152,0.019764017,-0.012740714,-0.004148139,0.020510243,0.0045953263,-0.05816174,0.008954713,0.08190929,0.057591096,-0.009651557,0.0474512,-0.025810644,0.032965634,-0.056230333,-0.03224136,0.046090435,0.014661148,-0.029212557,0.015813408,-0.001493824,-0.038035583,-0.012993113,0.004812061,0.020159079,0.0062770783,0.023857288,0.018919026,-0.06320974,-0.021366209,0.007347035,0.009229061,0.028510228,0.0022853175,0.040208418,-0.019390905,0.0004296973,-0.0038298958,0.022891583,-0.028290749,-0.036411446,-0.015879253,-0.032460835,-0.016482817,0.0030644652,-0.028554123,-0.008148131,0.024186505,0.0194348,-0.0035720088,-0.009722888,0.02655687,0.008027418,-0.019248243,0.05495736,0.030858645,0.013695444,0.027764,0.03816727,-0.000052469022,0.000951987,0.030639166,0.0028916262,0.031670716,0.016614504,0.004060348,-0.03272421,0.047890157,-0.029278401,0.033667967,0.030222157,-0.015736591,-0.021574713,-0.018908054,0.056625392,0.024427932,0.050128836,-0.007983522,-0.003928661,0.021256471,0.015176922,0.017624104,-0.075939484,-0.04837301,-0.043698125,0.011154983,0.025700904,0.04503694,0.03990115,0.02434014,-0.015736591,0.020927252,0.027434783,0.03485315,-0.0034567828,0.0063538956,0.01727294,0.026227653,0.020071287,-0.028751653,-0.013519862,0.03900129,-0.023681706,-0.059654195,-0.023528071,-0.06755541,0.053069845,-0.024822991,-0.001251712,-0.012082279,-0.003860074,0.0049849004,-0.04999715,0.05504515,0.0045870957,0.020356609,-0.012181044,0.008598061,-0.021794192,-0.025898436,0.018688574,0.013399148,0.035028733,0.038057532,0.032790054,-0.02655687,0.017305862,0.012685844,0.0059314,-0.0019506131,0.020334661,0.007857322,0.03232915,-0.08089969,0.017371705,0.026095966,-0.0037640522,-0.044597983,0.0072811916,-0.0057667913,0.015067183,-0.016241392,-0.0121152,0.004032913,0.0060082176,0.0015775,-0.024801044,-0.020576088,-0.0017242761,0.011100113,0.0060685743,-0.054211132,0.010337426,0.060971063,0.037816107,-0.0074128783,0.012938244,0.041152176,0.006727009,0.02091628,-0.015209844,0.012784609,-0.0077750175,0.011434818,0.008334687,-0.006847722,0.022101462,-0.0057887393,-0.005275709,0.028049322,-0.0097174,0.047582887,0.012268835,-0.023879236,-0.026929984,0.0635609,-0.031736556,0.01292727,-0.018041113,-0.034304455,-0.05039221,0.013783235,-0.0082414085,0.056976557,-0.009459513,0.015253739,-0.03182435,0.010013696,-0.05061169,-0.09305879,0.0151110785,0.04876807,-0.0155719835,0.025635062,-0.016954696,0.0001882712,-0.014156348,-0.019884732,0.002556922,-0.026622714,0.031319547,-0.009668018,0.016899826,-0.020707775,0.0021934109,-0.028400488,-0.0049410043,-0.00061591086,-0.028927235,-0.01696567,-0.015352505,0.011314104,-0.010260609,-0.046748873,0.018414227,-0.015835358,0.012016435,0.04330306,0.015275687,-0.014814783,0.017876504,-0.007187913,0.033755757,0.0074238526,-0.010441679,-0.032285254,0.027588418,0.006699574,-0.0075335917,0.0030315435,0.022759896,0.011994488,0.00863647,-0.010737974,-0.033580177,0.008954713,-0.03441419,-0.02111381,0.032043826,0.004485587,0.020400506,0.023506122,0.014737966,-0.031385392,0.035204314,0.0024279784,-0.03875986,0.030968383,-0.005432087,-0.008921792,0.008927278,-0.019094609,-0.008466374,0.03254863,-0.03274616,-0.02798348,-0.0051604826,0.044707723,-0.008696826,-0.0060466263,0.021464974,-0.047056142,0.03415082,0.04374202,0.00491357,-0.0037722827,-0.0141344005,0.0091467565,-0.0063813305,-0.008082287,-0.019467723,0.0013785979,-0.0047818827,0.0067544435,0.025832592,-0.049733777,0.043083582,-0.011198878,-0.03243889,0.003613161,0.029936835,0.042886052,-0.022167305,-0.03202188,-0.032043826,-0.0054759826,-0.04323722,0.013157723,-0.025876489,-0.0057283826,-0.021783218,0.022397757,0.0038875088,-0.046309914,-0.004444435,-0.045607585,-0.00053292065,-0.0023154956,-0.02616181,-0.01837033,0.04141555,-0.00049828424,0.014968418,-0.050655585,-0.009624122,-0.006249644,0.04192035,-0.0061563654,0.025876489,0.04977767,-0.03748689,0.016021913,0.006370357,0.023637809,0.012916296,-0.0040274262,0.013333305,0.028839445,0.026600767,0.028949184,-0.029234504,0.010617261,-0.0022386783,-0.031275652,0.0023319565,0.031560976,-0.003969813,0.009942366,-0.01393687,-0.01029353,0.01579146,-0.0017695435,0.02756647,0.022057567,0.05342101,-0.046222124,0.035314053,-0.033360697,-0.00636487,0.020181026,-0.04784626,0.0237256,-0.020630958,-0.021486923,0.0217064,-0.027390888,0.000041838044,-0.0206968,0.02333054,0.028532175,0.02899308,0.011105601,0.0058710435,-0.019533565,-0.040054783,0.0014910805,-0.012663896,-0.032680314,0.027764,0.011100113,0.015988993,-0.02919061,0.024164557,-0.0006409451,0.06342922,-0.005399165,-0.023308592,-0.0017229044,-0.021135757,0.0016090501,-0.009739348,0.017657027,-0.029519826,-0.016801061,-0.0060356525,0.038013637,-0.014737966,0.025942331,0.026117913,0.0053662434,0.011193392,0.017294887,-0.0052345567,-0.046704974,0.016932748,0.014902574,-0.015967043,0.05026052,-0.01705346,0.047319513,0.003618648,0.0040466306,0.0013072675,-0.01146774,-0.029475931,0.012455392,0.00066255004,0.008872409,-0.008038391,0.009547304,-0.022628209,0.020290766,-0.00005568404,-0.0076927133,0.0057777655,0.0010987631,0.0081700785,0.008872409,-0.0041838046,-0.030463584,-0.014705044,0.024493774,-0.015813408,0.008087774,-0.046617184,-0.009942366,0.028444383,-0.012202992,-0.021146731,-0.004043887,-0.0063977917,0.009761296,0.023374436,-0.022584314,-0.0100960005,-0.06579959,-0.049645983,-0.0066666524,0.044422403,-0.04868028,-0.009958826,0.035577428,-0.02534974,0.0464416,-0.016581584,0.030463584,-0.046748873,0.020411478,0.024866888,0.020422453,-0.013080905,-0.0307928,-0.013925896,0.013882,-0.021991722,-0.0076378435,0.00079080765,-0.00012748601,-0.04211788,-0.03292174,-0.00964607,-0.014408749,-0.028071271,0.02159666,0.06048821,0.036608975,0.00034842175,0.025305845,-0.020071287,-0.0039423783,-0.008159105,0.0014170066,-0.012532209,0.013212591,-0.04859249,-0.010249635,0.0014005457,0.05776668,-0.007818913,-0.004145396,-0.027237253,-0.011522609,-0.019039739,-0.028181009,-0.009399157,-0.032592524,0.02565701,0.02060901,0.00851027,0.00869134,-0.032043826,-0.0073964177,0.0006584348,-0.033360697,-0.031539027,0.01671327,0.05767889,-0.012740714,0.017294887,-0.04433461,0.023111062,0.034282506,0.015089131,-0.010809305,0.017953323,-0.020762645,-0.013146748,-0.009914931,0.010721513,-0.017887479,0.00023833968,0.022562366,0.025766749,0.015582957,-0.0070233047,0.0001025375,0.010101487,-0.0031769478,0.0011707793,-0.03232915,0.0050836653,-0.028554123,-0.014726992,-0.019281166,-0.0032894306,0.009925905,-0.028488278,-0.037508834,0.027193358,0.010551418,0.013464992,-0.005794226,0.01399174,-0.04604654,-0.02086141,-0.0053827045,-0.0022661132,0.009163218,0.021695428,-0.02515221,-0.019873757,-0.013651548,-0.0034293479,0.041656975,-0.024405984,-0.06268299,0.022628209,0.0063813305,0.014024661,-0.016230417,0.03441419,-0.02919061,-0.0464855,0.0006121386,0.011994488,-0.015352505,-0.049733777,-0.010266096,0.0015432065,-0.012795583,-0.056362018,0.024866888,-0.014672122,-0.017887479,0.015275687,-0.011067192,-0.051928557,0.035292104,0.049338713,-0.022222174,0.027412836,-0.033953287,-0.018304488,-0.025064418,0.04587096,-0.03423861,0.013728365,0.013871026,0.017437547,-0.032768104,-0.013421096,-0.01483673,0.0062935394,-0.014968418,-0.013750314,-0.04282021,0.010919044,0.018578835,-0.03998894,-0.0003182435,-0.002603561,0.029870993,0.010233174,0.031385392,0.015407374,0.0059807827,0.01721807,0.028356593,0.005533596,-0.02176127,-0.0102222,-0.0026735195,0.0076707653,-0.0033799654,-0.015769513,-0.026030123,0.023111062,-0.0151110785,-0.00750067,-0.009975287,-0.0020630958,0.02899308,0.0032647392,0.0010013696,-0.01934701,-0.009536331,0.03709183,0.014726992,-0.011621375,0.00141975,0.044290714,-0.016987618,-0.017316835,0.030485531,0.024405984,-0.0069464874,0.0015747566,-0.015582957,-0.0043676174,0.010573366,0.027764,-0.0042359307,-0.028949184,0.00090123265,-0.022255097,0.0021056195,-0.03421666,0.008329201,0.029432036,0.018831236,-0.024910783,-0.008559653,-0.02383534,0.022650158,0.03959388,0.043039687,-0.018293513,-0.017152227,0.0242304,0.038189217,0.008790105,-0.02989294,0.0016090501,-0.03243889,0.0055363392,0.053596593,0.058951862,-0.005201635,0.003240048,-0.018743444,-0.006106983,-0.02226607,-0.01990668,-0.021969775,0.019105583,-0.018765392,-0.0062990263,0.00078875,-0.010255122,-0.026929984,-0.03399718,0.006469122,-0.022057567,0.020060314,-0.00686967,0.0007647446,0.024998575,0.015736591,-0.009481461,0.010408757,-0.028949184,-0.005275709,0.017185148,0.0059259133,0.009920417,-0.021750296,0.015253739,0.013475966,-0.0022331914,-0.058556803,-0.008120696,0.008345661,-0.020323688,-0.012268835,0.00048868207,-0.015045235,0.021684453,0.019215323,0.0094485395,-0.0006165968,-0.025569217,-0.01141287,0.0076762526,0.058907967,-0.021410106,0.0067215217,0.0053827045,-0.035862748,0.014485566,0.0013635088,0.008718774,0.0096350955,-0.017689949,0.022046592,-0.015780488,-0.037025984,0.039528035,-0.019774992,-0.016164575,-0.017185148,0.029058922,0.03140734,0.0024416957,-0.014628227,-0.008576114,0.008427965,0.015857305,0.044290714,0.007187913,0.018984871,-0.029914888,-0.02908087,-0.0039067133,0.0017489675,-0.003124822,0.030266054,-0.018074036,0.0272592,0.0029739304,-0.0041015,0.033141218,0.042995792,0.045783166,-0.0010267468,0.04091075,-0.01651574,0.0013401891,0.028971132,0.0002335386,-0.0030370306,0.015187896,-0.0126968175,0.0048724175,-0.010359374,-0.024318192,0.017437547,0.0011742087,0.009914931,0.016823009,0.029541776,-0.0062880525,-0.01777774,-0.040537637,-0.01141287,-0.018523965,0.0012839478,0.008625496,-0.013058957,0.02383534,-0.0060301656,0.014277061,-0.0035034218,-0.0071934,0.017240018,0.011176931,-0.015890226,-0.005006848,-0.029827097,-0.0043950523,0.020894332,-0.03020021,0.011122061,-0.023528071,0.004035657,-0.010085027,0.017547287,-0.00813167,0.00083333155,0.00085802283,0.047143932,-0.035643272,0.005991757,0.0049355174,-0.009426592,-0.02504247,0.010891609,-0.0012668011,-0.007873783,-0.00995334,-0.027698157,0.05131402,-0.03939635,-0.019171426,-0.029300349,-0.013278435,0.03000268,0.008537705,0.0186776,-0.029849045,-0.055615794,-0.010897096,-0.02686414,0.0060356525,0.02212341,-0.004716039,-0.014979391,0.000005240472,-0.013914922,0.019303113,-0.051752977,0.04172282,0.019149479,-0.028707758,-0.0045404565,0.0014471848,-0.014584331,0.012762661,-0.00901507,-0.038233113,-0.03140734,-0.0077640438,0.011281183,-0.0004975984,0.018578835,0.033953287,0.007094635,-0.03715767,0.045256417,0.006342922,0.017942348,0.009470487,0.007330574,-0.0026625458,0.010919044,0.0081261825,0.017854556,-0.021640558,-0.007901218,-0.008559653,-0.01646087,0.00090740545,0.0057283826,-0.0065459395,-0.005706435,0.01705346,0.024405984,0.0007359381,0.031363446,-0.04343475,-0.026095966,0.0323072,-0.0232208,-0.020159079,0.0019835348,0.019127531,0.021541791,-0.005454035,-0.0038216654,0.00007518845,-0.003366248,-0.004779139,0.011687218,0.04565148,0.004611787,0.05008494,-0.019983497,-0.00964607,-0.0118628,0.029212557,-0.0777831,-0.004403283,-0.010370349,0.017130278,-0.031560976,-0.0058655567,0.020038366,-0.0048202914,-0.018359357,0.017898453,0.04385176,-0.003802461,-0.004823035,0.021212574,-0.040932696,0.020565113,0.022474574,0.0135308355,-0.0029437523,-0.011840853,-0.028619966,-0.03283395,0.004065835,-0.048021846,0.036521185,-0.015297635,0.04069127,-0.022298992,0.00093758374,-0.027149461,0.03009047,-0.009152244,-0.025525322,0.027127514,0.0010061706,-0.010271583,0.025766749,0.056010853,0.0013422468,-0.014726992,0.009783244,0.05258699,0.032460835,0.022375809,0.031165915,-0.021289391,-0.019039739,-0.008351148,-0.005311374,0.024384035,0.011347027,-0.0232208,0.0038737913,-0.014540435,-0.0038518435,0.058337323,-0.037530784,-0.006189287,0.009986261,-0.0067215217,0.046748873,-0.044202924,-0.0048038308,0.017997218,-0.024493774,0.026929984,0.01705346,0.01029353,0.02868581,0.0067818784,0.021695428,-0.038233113,0.015769513,-0.022650158,0.0004495875,0.024098713,-0.039879203,-0.0156488,0.0027133,-0.0061453916,-0.012389548,0.009475974,-0.024757149,-0.033667967,-0.015747566,-0.008334687,-0.012126174,-0.028707758,0.0065459395,0.040954646,-0.030266054,0.020543166,-0.013497913,-0.023308592,0.0029602132,-0.03706988,0.010919044,0.019610383,0.067379825,-0.029936835,0.01932506,-0.0012743457,0.02293548,0.013783235,0.013201618,-0.0049876436,0.02383534,-0.014430696,0.0024060304,0.0046172743,0.01923727,-0.019500645,0.01343207,-0.008290792,-0.031670716,0.01732781,0.036608975,-0.013267461,-0.02635934,0.018414227,0.013618627,-0.0019355239,0.033492383,0.0091467565,-0.035818852,0.032394994,0.007829887,-0.0043566437,-0.009569253,0.040230367,0.016164575,0.027171409,0.0013333305,-0.0033004044,-0.0027023263,-0.02049927,-0.0014924522,0.0006546625,-0.012356627,0.0033991698,-0.013980766,0.026403235,0.014342905,-0.03897934,-0.021421079,0.010661157,0.013552783,-0.024559619,-0.041152176,0.013849079,-0.031626817,-0.013892975,-0.026600767,-0.023264697,-0.028049322,-0.0012098739,-0.043456696,-0.013827131,0.026381288,-0.021838088,0.007341548,0.018381305,-0.012367601,0.011182418,0.013695444,0.0017846327,0.0051412783,0.031473182,0.0307928,0.0038216654,0.013454018,0.009761296,-0.00036385382,-0.012982139,-0.014979391,0.013838105,-0.014902574,-0.0020342893,0.011950592,0.025788696,0.01752534,0.0025596654,-0.007478722,0.017338783,-0.0012482826,0.014178297,0.0066940873,-0.029651513,0.012960192,-0.0020425196,-0.027807897,0.037596628,0.011939618,-0.01864468,-0.008965687,0.044466298,-0.026600767,0.018875131,-0.011928644,-0.020060314,-0.024098713,0.020192001,-0.028729705,0.004043887,0.0016666631,-0.0055363392,0.004145396,-0.018238643,-0.016285287,-0.016032888,0.0030260566,0.024866888,-0.029541776,-0.007923165,0.040954646,-0.050128836,-0.011270209,0.009975287,0.0070672003,-0.013135774,-0.01166527,-0.0039643263,0.011731113,-0.012993113,-0.02111381,-0.023396384,-0.024603514,0.0049519786,-0.010562392,-0.041020487,-0.012159096,-0.013794209,0.0047626784,-0.003934148,-0.01853494,0.02414261,0.019083636,-0.032790054,0.00083333155,0.025503375,0.004919057,0.007072687,-0.009964313,-0.012521235,-0.018995844,0.0026515718,0.021574713,0.015429323,-0.021860035,0.0009197511,-0.011358,0.028181009,0.01671327,0.019303113,0.00054355164,0.024603514,0.007187913,-0.03465562,0.005832635,0.0040493743,-0.032482784,0.0032318174,0.020268818,0.004743474,0.0022181023,0.016812036,0.0058765304,-0.011325079,-0.011050731,-0.019204348,0.0143868,-0.0117201395,0.015473218,-0.0012805185,-0.025678957,0.0007668022,-0.011358,-0.04213983,0.021805165,-0.027522575,0.02217828,-0.026030123,0.035094574,-0.0050781784,0.003980787,-0.01699859,0.007890244,0.039330505,0.015253739,-0.0077969655,-0.016943723,-0.038101427,-0.0066447044,0.031670716,-0.0036488262,0.0043840786,0.021102836,0.01965428,0.007961574,0.0029053437,-0.029300349,0.0030781827,-0.023550019,-0.0066721393,-0.0038381263,0.003624135,0.039440244,-0.0029355218,0.001551437,-0.0434128,0.008987635,-0.0070013567,-0.002908087,0.010266096,-0.016768139,0.021190627,0.0016844957,0.011325079,-0.018798314,-0.010831253,-0.02293548,-0.007604922,-0.004995874,-0.027764,0.004348413,-0.01954454,-0.019698175,0.033053428,-0.005253761,-0.036016382,-0.011807931,0.001898487,-0.003550061,-0.026095966,-0.012345652,-0.02313301,-0.02989294,-0.03452393,0.0061234436,0.020455375,-0.019643305,-0.005286683,0.045256417,-0.017920401,-0.0037695393,0.004123448,0.030968383,-0.0034485522,-0.025305845,-0.0019629588,-0.0009458142,0.008812052,0.004737987,0.012060331,0.0025624088,0.027083619,-0.021794192,0.008192026,0.04977767,0.0013614511,-0.025810644,-0.0012592565,-0.039923098,0.0025006805,-0.0024677587,0.057634994,0.015253739,0.01869955,0.013190644,-0.0041097305,-0.020740697,0.0027475934,-0.027698157,-0.025942331,0.014353879,-0.0059862696,0.0019958804,0.0013813414,0.0022592545,-0.004406026,-0.018556887,0.02159666,0.019423828,-0.00091632176,0.011165957,0.035379898,-0.019028766,-0.0075281044,-0.012587079,0.013377201,-0.053201534,-0.033075374,-0.0004893679,0.039462194,-0.016724244,0.066106856,-0.0021495153,0.0038902522,0.011994488,-0.008378583,-0.017283913,0.02605207,0.011292157,-0.0041316785,-0.0070013567,0.03362407,0.03191214,-0.058820177,0.02908087,0.024735201,-0.032065775,0.0042825695,-0.0032043827,-0.031275652,0.0012736599,-0.007720148,-0.051884662,0.014639201,-0.017437547,-0.05263089,0.006973922,0.028356593,0.01027707,-0.00038168643,-0.014825757,0.000090106114]},{"id":"guide-editing-embeds-2","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Embeds\nReplace or update embeds on an existing message. Pass an array of EmbedBuilder instances or APIEmbed objects.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!editembed') {\n const embed = new EmbedBuilder()\n .setTitle('Loading...')\n .setColor(0x5865f2)\n .setTimestamp();\n\n const reply = await message.reply({ embeds: [embed] });\n\n // Simulate loading, then update the embed\n await new Promise((r) => setTimeout(r, 2000));\n\n const updatedEmbed = new EmbedBuilder()\n .setTitle('Done!')\n .setDescription('This embed was edited after 2 seconds.')\n .setColor(0x57f287)\n .setTimestamp();\n\n await reply.edit({ embeds: [updatedEmbed] });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[-0.027892746,-0.016823204,-0.015935138,-0.019875145,-0.024352994,0.016898252,0.006572932,0.02143864,-0.015947646,0.008436617,0.011776242,-0.027242333,0.027842714,-0.03559765,0.005065723,0.025328616,0.0060945023,0.002657941,-0.026341759,0.037498858,0.0109382095,-0.030844625,-0.016573044,0.0622396,-0.011782496,-0.015147137,0.0016088361,0.03607295,-0.02621668,-0.03729873,0.04735513,-0.011644909,0.021901434,-0.0016166535,-0.020100288,0.011769989,0.027617572,0.028743288,-0.030094147,0.009124556,0.03307104,-0.020938322,-0.016310377,-0.012357863,-0.016347902,0.051983073,-0.06394068,0.017936412,-0.0014837565,0.032195482,0.017661236,0.030569449,-0.01708587,-0.006841853,-0.0024875202,0.010156462,-0.03692349,-0.0001984661,-0.046529602,0.036223046,0.01892454,-0.0018355428,0.008567952,0.025566267,-0.04985672,-0.008386586,-0.068643674,0.037774034,-0.008242744,0.052583456,0.029318653,-0.016710632,0.005325263,-0.041626483,0.011782496,-0.032570723,0.015122121,0.018399207,0.0020747576,-0.028217953,0.021338576,0.0052001835,-0.09856271,0.018736921,-0.07034475,0.040876005,-0.025153503,-0.027292363,0.001965313,-0.030819608,-0.047505226,-0.0013109903,-0.06539161,-0.027267348,0.022464292,0.013696214,-0.04685481,0.00067230273,0.007154552,0.06974437,0.09095787,-0.044828523,-0.085354306,-0.027167285,0.0117387185,-0.056986257,0.016923267,0.03839943,-0.009449762,-0.044553347,-0.062689885,-0.028343033,-0.01586009,-0.004215182,0.061138898,-0.013345991,0.018536793,0.043752838,0.0067355353,-0.044553347,-0.08180205,-0.038174286,0.061939407,-0.008899412,-0.0015806932,-0.049331386,0.00036155817,-0.03894978,-0.05015691,-0.016773172,0.025453694,-0.023227278,0.040375687,-0.0075485525,-0.049881738,0.011188368,0.0051939297,0.025128487,-0.017198442,-0.0073296633,0.014759391,-0.025891474,0.00010260434,0.0005065723,-0.032345578,-0.0066855033,-0.0104879225,-0.006841853,-0.017348537,-0.001633852,-0.027267348,-0.010738082,-0.045403887,0.0210634,-0.027642587,-0.02291458,0.021038385,-0.021025877,-0.0045122458,-0.0224768,-0.043952964,0.0076548704,-0.00008902148,-0.027467476,-0.028918399,-0.00616955,0.02340239,-0.040100515,-0.03497225,-0.0018730666,-0.004105737,-0.038874734,-0.007442235,0.01433412,0.0146593265,-0.008211474,-0.033171106,-0.06634221,-0.0035147362,0.053433996,-0.00894319,0.028217953,-0.05213317,0.014359136,-0.030619482,0.004177658,-0.05978804,0.020362956,-0.034647044,-0.03289593,-0.023590008,-0.020075273,0.0003097674,0.007498521,0.015184661,-0.008749316,0.042902295,0.010437891,0.04843081,-0.035197392,0.015659964,0.014359136,0.008180205,0.003527244,0.022064038,-0.022964612,-0.020425495,0.022001497,-0.032270532,0.043552708,0.032845896,0.032620754,-0.0048843576,0.0030269257,-0.018586826,0.033296183,-0.01936232,-0.01185129,-0.07074501,-0.0027611316,-0.07414717,0.0087117925,0.05983807,0.0023186626,-0.025766393,0.05133266,-0.006910647,0.0058099465,-0.051732913,0.03572273,0.022952102,-0.0023139722,-0.039525148,-0.035547618,0.02841808,0.029593829,-0.026441824,-0.007992585,0.023977755,0.020975845,-0.015334756,-0.018386697,0.012520466,-0.046279445,-0.038999815,0.0007215528,0.0107318275,-0.06319021,0.00881811,0.06283998,0.0543846,-0.007367187,0.058337115,-0.025416171,0.031069767,-0.036298092,-0.014309104,0.022439277,0.0022936468,-0.03417174,0.022401752,0.03369644,-0.014596787,-0.019062128,-0.0050876117,-0.005431581,0.029944051,0.032045387,0.022689436,-0.056586,-0.023690073,0.005853724,-0.02021286,0.010606748,-0.015222184,0.006275868,0.0034678313,0.030569449,-0.012845673,0.0024718852,-0.00465296,-0.051933043,-0.015534883,-0.001398546,-0.004374658,-0.0024797027,-0.025866456,-0.00900573,0.031369958,0.03277085,-0.009968842,-0.021351084,0.043627758,-0.018486762,-0.013070816,0.060438454,0.05518511,-0.010406621,0.042577088,0.05358409,-0.013821294,-0.021963974,-0.015197169,0.0026595045,0.0012601768,0.0007579041,-0.014196532,-0.024703218,0.06569179,-0.04680478,0.013796277,0.0067730593,-0.038999815,-0.043477662,-0.006516646,0.033721454,0.049706627,0.031069767,0.0072170915,-0.014046437,0.025741378,-0.0074860128,-0.01806149,-0.05953788,-0.039600194,-0.06809332,0.0069919485,-0.0149720255,0.033246152,0.021826386,0.029043479,0.018336667,0.0035209903,0.023314834,0.043452647,-0.022439277,-0.0030785212,-0.011401003,0.042677153,0.008505411,-0.011338464,-0.039625213,0.03774902,-0.024040295,-0.024903344,-0.036723364,-0.013571135,0.0322205,-0.027542524,-0.0037930382,0.0040775943,0.0020638132,-0.025691345,-0.053133804,0.038524512,-0.019224731,0.018486762,-0.036273077,-0.012551736,-0.025503727,-0.010738082,0.019249747,0.025316106,0.027842714,-0.0041088643,-0.00332399,0.01904962,0.027817698,0.013733738,-0.017048346,-0.0019903288,0.020062765,0.007661124,0.02714227,-0.028368048,-0.0062133283,0.020262891,0.0011288432,-0.019224731,0.014221548,0.016272854,0.009818747,-0.02554125,-0.022201626,0.0023045912,0.02088829,0.008811857,-0.0058474704,-0.03717365,0.02376512,0.018474255,-0.015472344,-0.007367187,-0.029293638,0.06529154,0.054584727,0.0344219,0.02934367,0.012583005,0.016372917,0.0028549414,-0.014934502,0.016085234,0.010681796,0.030269258,-0.0011765298,0.015484852,0.005262723,0.017786317,0.017523648,0.026066585,-0.016460473,0.04110115,-0.012414148,0.001061613,-0.011013257,0.030419353,-0.024478074,-0.017160919,0.0066855033,-0.024165375,-0.046729732,0.0040088007,-0.017160919,0.04925634,-0.042527057,0.013971389,-0.030894656,-0.023077182,-0.07009459,-0.09410988,-0.013933865,0.082852714,0.014046437,0.020550575,-0.0060350895,0.034571994,-0.014771898,-0.018974572,0.0078424895,-0.02786773,0.03086964,0.00029315526,0.026291728,-0.04728008,0.016760664,-0.049531512,0.028818335,0.0005890466,-0.02604157,-0.029843988,-0.0143466275,0.028968431,0.010663034,-0.028593192,0.012176497,-0.017548665,0.0199627,0.08685526,0.013320975,-0.008868142,0.028568177,-0.014459199,0.0066604875,0.03474711,-0.025366139,-0.028568177,0.046029285,-0.00030409973,-0.017786317,-0.011050781,0.023439914,0.02516601,0.016135266,-0.022339214,-0.055335205,-0.013896341,-0.059637945,0.008849381,0.03774902,-0.022639403,0.013821294,-0.03307104,0.0057599144,-0.02786773,0.07679886,0.025203535,-0.048305735,0.0048999926,-0.009831255,-0.005090739,0.0120514175,-0.017836347,-0.013521102,0.0077111563,-0.050857358,-0.04410306,-0.01071932,0.04105112,-0.0036929746,-0.021476164,-0.0012977007,-0.05468479,0.015972663,0.012820657,-0.0083303,-0.026666967,-0.024415534,-0.027817698,0.01861184,-0.005684867,-0.011626147,-0.0097562075,0.025553757,0.0017370427,0.04843081,-0.020925814,0.03387155,-0.013533611,-0.028968431,0.009362207,-0.0028580683,0.01647298,-0.009249635,0.02205153,-0.0260916,-0.01929978,-0.06424087,-0.021601243,-0.01056297,-0.002556314,-0.013458563,0.02095083,-0.01365869,-0.045178745,0.0036179267,-0.04943145,0.02150118,-0.019812606,-0.017260982,-0.027492492,0.03522241,0.0009756207,0.007661124,-0.06474119,0.017448602,-0.00888065,0.06304011,-0.008055125,0.014634311,0.05298371,-0.0260916,0.003141061,0.010550463,-0.007348425,0.04815564,0.008436617,0.008636745,0.0028142906,0.04122623,0.010906939,-0.0057755494,0.04115118,0.01075059,-0.0210634,0.000045439065,0.02786773,-0.00971243,-0.003814927,0.002382766,-0.03712362,0.015272217,-0.005906883,0.046604652,0.017648729,0.045679063,-0.035872824,0.024327978,-0.020563083,-0.043077406,0.0027611316,-0.06904393,0.004158896,-0.0033021008,-0.03192031,0.012995768,-0.026116617,-0.005856851,-0.02626671,0.03412171,0.01991267,0.037273716,0.011694941,-0.016873235,0.031470023,-0.036523238,0.016510505,-0.0043183723,-0.008080141,0.041076135,-0.010237764,-0.021163465,-0.012457926,0.013883834,-0.0026469966,0.009380968,0.0016713758,-0.006591694,-0.021288544,-0.010775606,0.006941917,-0.013208403,-0.005725518,-0.033721454,-0.014859454,0.000081497165,0.030669512,0.012564244,0.042977344,0.031294912,0.008211474,0.021651275,0.019587463,-0.0049812943,-0.014046437,0.023652548,0.0155599,-0.015259708,0.02626671,0.0027986555,0.021913942,0.004440325,-0.00037817028,-0.0036617047,-0.005362787,-0.0029393702,0.019087143,0.01904962,0.005334644,-0.016460473,0.03154507,-0.029443733,0.033971615,-0.0057161367,-0.014621803,-0.011394749,-0.015672471,-0.0017401696,-0.006866869,-0.0033490057,-0.022276673,-0.026616935,0.016460473,-0.0213761,0.027117252,-0.047029924,0.006597948,0.011920084,-0.011444782,-0.014921994,-0.01592263,0.0023530596,-0.0115636075,0.025616297,-0.0053096283,0.013008276,-0.044628393,-0.010537955,-0.013808786,0.024603153,-0.0066042016,0.008355316,0.02976894,-0.02051305,0.008142681,-0.023790136,-0.015584916,-0.04122623,0.022089053,0.005112628,-0.019612478,0.0031441879,-0.035922855,-0.013333484,0.039274987,-0.03172018,-0.03307104,0.0177613,0.016610568,-0.035972886,-0.04815564,0.029843988,-0.005409692,-0.040951055,0.030944688,0.042477027,0.020375464,0.024090327,0.021576228,-0.03937505,-0.0001267408,0.006466614,-0.014834438,-0.013496087,0.0019262255,-0.047505226,-0.0045716586,0.0020716304,0.04317747,-0.034647044,0.012301576,-0.0019277891,0.004440325,-0.015684979,-0.02731738,-0.0036898477,-0.018174063,-0.0048499606,0.03664832,0.007955061,-0.015322248,-0.022064038,-0.013320975,-0.0034490693,-0.020600608,-0.05923769,0.0057536606,0.062940046,-0.023439914,0.019587463,-0.020250384,0.03282088,0.026917126,-0.009574842,-0.03209542,0.01929978,-0.02242677,-0.011951353,-0.02217661,0.00014794568,-0.013821294,0.022314196,0.03252069,0.013070816,0.024765756,0.01420904,0.040475752,0.0065854397,-0.00332399,0.020137813,-0.04300236,0.008736809,-0.0022592498,0.0034240535,-0.05065723,-0.01420904,0.025691345,-0.015497359,-0.035697713,0.014621803,0.028318016,0.037824064,0.018824477,-0.031820245,-0.017311014,-0.012733101,-0.030494401,0.000029364386,0.013120848,0.0026344887,-0.016260345,-0.013133355,-0.013758753,-0.005684867,0.040375687,-0.036523238,-0.04000045,-0.01653552,-0.003852451,-0.0019778209,-0.0317452,0.03312107,-0.021488672,-0.042552073,-0.014634311,0.0048843576,-0.024327978,-0.03809924,-0.03202037,-0.010600494,0.00968116,-0.03172018,0.020137813,-0.01831165,-0.01843673,0.019249747,0.0015666217,-0.07309651,-0.0119138295,0.031069767,-0.013871325,0.011726211,-0.0061226455,0.0063696774,-0.0023968373,0.03564768,-0.026066585,0.03774902,-0.015497359,0.0032020372,-0.045804143,0.010763098,0.00238902,0.031394973,0.005600438,0.02156372,-0.034221772,-0.019737558,0.026516872,-0.004452833,0.024365501,-0.00031328527,0.03902483,0.011601131,0.0086429985,0.015522376,0.026992174,0.016885743,0.025378646,-0.029043479,-0.0054909936,0.0049938024,0.022326704,0.006188312,-0.016685616,-0.019249747,-0.050757293,0.02057559,-0.0018824476,-0.007898776,-0.0008356879,0.016623076,0.019324794,0.009137063,0.00955608,-0.012470434,-0.00713579,0.032195482,0.0063728048,-0.013758753,0.0001570335,0.031445008,0.019387335,-0.033421263,0.027917761,0.029668877,-0.023239786,-0.004249579,0.0119826235,0.011088305,-0.0043277536,0.01966251,-0.0075485525,-0.021538703,-0.0023655675,-0.03312107,-0.02989402,0.01420904,0.0026641951,0.03462203,0.032870915,-0.010456652,-0.008774333,0.0023718216,0.00079699146,0.030519417,0.030294275,0.009180841,0.004046324,0.03474711,0.0399254,0.010118938,-0.022089053,-0.012758117,-0.005412819,0.020763211,0.04635449,0.05463476,-0.036373142,0.009168333,-0.005112628,0.0061070104,-0.010256525,-0.011132083,0.01469685,0.03294596,-0.0069544245,-0.002088829,0.030944688,-0.022739468,-0.013946373,-0.03779905,0.0028674493,0.006313392,0.018736921,-0.017298507,-0.007998839,0.04833075,0.0012015457,0.006541662,0.032320563,-0.014434183,-0.010250271,0.0070857583,-0.029693892,0.028618207,-0.02480328,0.052333295,0.012983261,-0.037648953,-0.048806053,-0.009443508,0.007098266,0.004509119,0.0070107104,-0.009036999,-0.000017003005,0.003914991,0.02461566,-0.009237127,-0.005247088,0.0022201624,0.018424222,0.00548474,0.02676703,-0.020913305,0.041751564,0.0014446691,-0.03124488,0.028593192,-0.021451147,-0.00042370707,0.040325657,-0.0082239825,0.019737558,-0.032395612,-0.0633403,0.030444369,-0.015960155,-0.035072315,0.004527881,0.04387792,0.0271923,0.008374078,-0.010956971,-0.04415309,0.008274014,0.0123641165,0.050857358,0.011469797,-0.022776991,-0.005597311,0.005931899,-0.011469797,-0.018674381,-0.00255006,-0.007054488,-0.01586009,-0.007142044,0.0066980114,0.0036648316,0.037398793,0.031019736,0.039274987,0.025553757,0.042176835,0.0059037562,0.0017683125,0.019324794,0.039800324,-0.00177613,0.0029690766,-0.010294049,0.018211586,0.007611092,-0.013483578,0.022339214,0.013833801,0.03209542,0.023840168,0.020550575,-0.020775719,-0.012983261,-0.016085234,0.004815564,-0.03264577,-0.01911216,0.0027095363,-0.035472568,0.001578348,-0.039400067,0.010706812,-0.012407894,-0.013958881,0.027667603,0.010681796,0.02786773,-0.021651275,0.0073046475,-0.000222798,0.05133266,-0.0034021647,0.035322472,-0.021526195,-0.028067857,-0.01537228,0.0051063737,-0.020913305,0.003805546,0.002546933,0.042401977,-0.047855448,-0.015109614,-0.0064728684,-0.013170879,-0.035797775,0.028518144,-0.008824364,-0.002237361,0.0015423875,-0.013333484,0.03682343,-0.0177613,-0.031870276,-0.0130458,-0.022251656,0.035622664,0.02964386,0.031069767,-0.027592555,-0.046679698,-0.01420904,0.0040400703,0.011870052,0.029193575,-0.010331573,-0.0034459424,0.021576228,0.0025907108,0.0047029923,-0.039650228,0.04723005,0.009212111,-0.026141632,0.014071452,0.038124256,-0.013633674,-0.0032301801,-0.0057317717,-0.002209218,-0.024653185,-0.0005491775,0.008355316,0.005684867,-0.005062596,0.009043254,0.0055285175,-0.026016552,0.028618207,-0.0027845842,-0.004721754,-0.027092237,0.016973298,-0.0072921393,0.014909486,-0.0018621222,0.0036554507,-0.044928584,-0.03594787,-0.007917537,-0.0070044566,-0.0072671236,0.0052408343,-0.0009795295,-0.014759391,0.023940232,0.03214545,-0.006904393,0.027542524,-0.03319612,-0.035072315,0.022739468,-0.004787421,-0.017861364,0.001268776,0.018749429,0.009837509,-0.0036273077,-0.017361045,-0.008017601,0.001479066,-0.037273716,0.017223459,0.026066585,-0.002976894,0.053784218,-0.006166423,-0.013983897,0.0014720303,0.031144815,-0.070594914,0.0149720255,-0.009868779,0.010806875,-0.034822155,0.011407258,0.005931899,0.0027720763,0.0073359176,-0.032670785,0.03932502,0.012576751,-0.027792683,0.024653185,-0.043152455,0.016710632,0.015835075,0.014534247,0.008936936,0.0043058647,-0.028493129,-0.021213496,-0.006791821,-0.036147997,0.03814927,-0.028092874,0.039550163,-0.009449762,0.00565047,-0.045629032,0.021326069,-0.0019324796,-0.042552073,0.0015369153,0.0058631054,-0.013883834,0.014133993,0.07269625,0.0040932293,-0.01310834,-0.00894319,0.03717365,0.019499907,0.013608659,0.011744972,-0.01026278,-0.025741378,-0.034872185,0.008492904,0.046679698,0.007417219,0.008530428,0.00016524186,0.0055472795,0.001801146,0.023902707,-0.029818973,-0.010431637,0.018711906,-0.021038385,0.04080096,-0.04587919,-0.00664798,0.020663146,-0.019950192,0.028067857,0.00242029,0.013621166,0.01108205,-0.0072796317,0.009105793,-0.024840804,0.016635584,-0.020725686,0.010118938,0.034597013,-0.02824297,-0.0119138295,-0.017673744,-0.006941917,-0.027942779,-0.018586826,-0.003567895,-0.016510505,-0.00955608,-0.009099539,-0.019387335,-0.013446054,0.015509868,0.026792046,0.0054909936,0.009743699,0.0040431973,0.01843673,0.00046904842,-0.038299367,0.009099539,0.0014696851,0.059687976,-0.024865821,0.015785042,0.0021685672,0.032495674,0.010362843,0.008686777,-0.0073296633,0.03619803,0.003119172,-0.005262723,0.004162023,0.015059581,-0.015785042,0.028368048,-0.021813879,-0.026441824,-0.0019793843,0.03362139,0.0004307428,-0.017486125,0.02217661,-0.0050156913,0.019137176,0.025241058,0.024778266,-0.023014642,-0.023077182,0.038924765,0.0020903924,0.013496087,0.02866824,0.017811332,0.038249336,0.014409168,-0.023602517,-0.018899525,0.016247837,0.0028987192,-0.0025969648,-0.019449875,-0.019349812,-0.003239561,0.016147774,0.025353631,-0.019574955,0.028017826,-0.010437891,0.0029940924,0.0069606784,-0.035447553,0.012107703,-0.035447553,-0.032795865,0.013483578,-0.0034115454,-0.00037074368,-0.0111133205,-0.02516601,-0.007454743,0.03162012,-0.0022545594,-0.0026032187,-0.00058044743,-0.015334756,0.025140995,-0.0366233,0.0054378347,0.0052126916,0.010287795,0.032420628,0.009968842,-0.008874396,0.00047217542,-0.018912032,0.015272217,-0.018111523,0.014596787,-0.01001262,-0.017110886,-0.0078424895,0.039099876,0.0115636075,0.019650001,-0.015509868,0.0058318353,0.0000018138982,0.0130583085,0.012357863,0.0030550687,-0.00039126456,0.018286634,-0.017223459,0.03484717,0.008380332,-0.012808149,0.020538067,0.0477804,-0.036298092,0.010325319,0.0057161367,-0.008843127,-0.0097562075,0.029018462,-0.027267348,0.01384631,0.009499794,-0.010344082,0.017598696,-0.0047936747,-0.00719833,-0.015647456,-0.0033896565,0.013070816,-0.012382878,0.015409804,0.01739857,-0.026842078,-0.021088418,-0.020062765,0.021963974,0.0005347152,0.009130809,0.009393477,0.01856181,0.0052564694,-0.008824364,-0.01991267,-0.012107703,-0.012545482,-0.026992174,-0.0054440885,-0.0055660415,0.004950024,-0.036298092,-0.015059581,-0.012751863,0.024703218,0.03282088,-0.017173426,-0.008874396,0.030044114,0.020813242,-0.013070816,0.006497884,-0.008774333,-0.0009951644,-0.0070169643,0.04115118,0.01978759,-0.021901434,-0.0015079906,-0.030594464,0.018411715,-0.006610456,-0.0046811034,0.026566902,0.030769577,0.008436617,-0.0078049656,0.007792458,-0.033421263,-0.035922855,0.015647456,0.023690073,0.015059581,-0.0016275981,0.03454698,-0.01887451,0.0063290265,-0.023977755,-0.041251246,0.014746882,0.009631128,-0.010187732,-0.00001579374,0.004359023,-0.002410909,0.014459199,-0.019875145,0.018999588,-0.02461566,0.016022693,-0.015484852,0.026291728,-0.012770625,0.03387155,-0.02150118,0.022939594,-0.005725518,0.00998135,-0.003971277,-0.028217953,-0.015084597,-0.0355226,0.020225368,-0.003119172,-0.022226641,0.011782496,0.035572633,0.00600382,-0.00032012555,-0.015947646,0.010931956,-0.0112509085,0.016335392,0.00092949765,0.014234056,0.03975029,0.00095920404,0.01696079,-0.03014418,0.008517919,-0.015422313,-0.01604771,0.010681796,-0.038924765,0.0013422603,-0.011713702,-0.016485488,-0.010181478,-0.026516872,-0.005913137,0.025078455,0.016335392,-0.022626895,0.009837509,-0.025065947,-0.017723776,0.03582279,-0.0058787405,-0.031219862,-0.01507209,-0.011644909,-0.014771898,-0.03742381,0.008067633,-0.019574955,-0.0143466275,-0.040625848,0.00719833,0.021538703,-0.020262891,-0.014108976,0.03872464,-0.0019965828,0.00035178632,0.013971389,0.048806053,-0.022389244,-0.035447553,-0.003517863,-0.001547078,0.022289181,-0.0011812203,0.022751976,0.0293937,0.020262891,-0.003286466,0.01145729,0.046579637,0.017436093,-0.029243605,0.012783133,-0.029518781,0.025916489,0.0011796568,0.053333934,0.026491854,0.027342396,0.01898708,-0.014646819,-0.011907576,0.009893795,-0.022314196,-0.01023151,0.03031929,0.000445596,-0.028092874,-0.0049781674,-0.004437198,-0.010431637,-0.016548028,0.0066167098,0.008549189,-0.021088418,-0.011963862,0.023127215,-0.0005018818,0.021876419,0.00028084274,0.031344943,-0.03564768,-0.03527244,0.009118302,0.025015917,-0.019512415,0.041201215,0.00710452,-0.023202263,0.01691076,0.0060100737,-0.0017370427,0.008080141,0.04312744,-0.014421675,-0.017848857,0.013283451,0.01991267,-0.032570723,0.023302326,0.0032833389,-0.02571636,0.00626336,-0.013821294,-0.0388247,0.027042205,-0.02811789,-0.05010688,0.0022873927,0.014771898,-0.044002995,-0.012576751,0.023339849,-0.0045779124,-0.013145864,-0.031194847,0.008092648]},{"id":"guide-editing-embeds-3","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: Edit Content and Embeds Together\nYou can update both content and embeds in a single edit call.\n\n```javascript\nawait message.edit({\n content: 'Updated text',\n embeds: [new EmbedBuilder().setTitle('Updated embed').setColor(0x5865f2)],\n});\n```","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.0056942655,-0.0073240935,0.0088931285,-0.042636067,-0.02994483,0.020576939,0.05155235,0.032677613,-0.042682383,-0.013652341,0.0149376765,-0.008603638,0.037170496,-0.01882842,-0.023043392,-0.006507732,-0.0057521635,0.011458009,0.011776447,0.012945986,0.00042193147,-0.03399769,0.011249576,0.076517954,-0.00049973186,-0.019349502,-0.0036504671,0.036660995,0.009732649,-0.02252231,0.012042778,-0.0069188075,0.0354104,0.01113378,-0.03793475,0.019476878,0.03536408,0.0182147,0.01226279,0.0049821204,0.05308086,-0.0055437307,-0.03939378,-0.016026158,-0.012112255,0.02855528,-0.049884893,0.027721548,0.020565359,0.05048703,0.026123565,-0.000741094,0.010485322,-0.03140386,-0.011660651,-0.0030946466,-0.034391396,0.0009661724,-0.0365452,0.0021827535,0.014451333,-0.031635452,0.012297529,-0.0025909343,-0.017589403,-0.02484981,-0.074572586,-0.0013859327,0.020553779,-0.024595058,0.019777946,-0.027003614,-0.015366121,-0.0022406515,-0.0021697264,-0.010745863,-0.011272735,0.017265175,-0.004990805,0.0002310491,0.020403245,-0.015956681,-0.099769786,0.011869084,-0.088329144,0.024062397,0.0055553103,-0.01769362,-0.0030946466,0.0059982296,-0.04194129,-0.0001553294,-0.059519112,-0.024965605,0.032677613,0.02311287,-0.06878279,0.019256866,0.018191542,0.06591105,0.089903966,-0.056878965,-0.07850965,-0.0073240935,0.0017152274,-0.048310068,0.025498265,0.072025076,-0.015933521,-0.031519655,-0.045970988,-0.034044005,-0.029203737,-0.008412575,0.04453512,-0.044743553,0.016118795,0.01681357,-0.0152850645,-0.057434786,-0.07021866,-0.060630754,0.04997753,-0.021202236,-0.005592944,-0.01998638,-0.031033313,-0.018944217,-0.07332199,0.0029614812,-0.00013144649,-0.009790547,0.03900007,0.010375316,-0.05280295,0.012158574,-0.011348003,0.05650842,-0.018342078,0.014763983,0.05479464,-0.0381895,-0.005905593,-0.0045826244,-0.022904437,0.0004639075,-0.03999592,-0.003879164,-0.025544584,0.0075093666,-0.04393298,0.013258635,-0.04330768,0.010745863,-0.02166542,-0.009205777,-0.000036864723,-0.055998918,-0.00853416,-0.012633338,-0.03332607,-0.010114775,0.0010638752,0.011070092,-0.030616447,-0.021016963,0.023900282,-0.007532526,-0.044998303,-0.009970031,-0.020970644,-0.03561883,-0.026007768,0.02711941,0.03631361,-0.017554665,-0.048078474,-0.059519112,0.0026430425,0.069940746,-0.0074514686,0.025799336,-0.04761529,0.057156876,-0.03737893,0.018944217,-0.018041007,0.031033313,-0.040829647,-0.05451673,-0.021005385,0.005335298,-0.0053439825,0.01056638,-0.013304953,-0.011434849,0.04886589,0.04228868,0.032075476,-0.019673731,0.022059128,0.023830805,0.0033812416,-0.021318033,-0.028763711,-0.022939175,-0.023853963,-0.0014293562,-0.07114503,0.03337239,0.020715894,0.008128875,-0.017774677,0.01567877,-0.0006119092,-0.0011767762,-0.011064302,-0.03283973,-0.06257613,-0.01742729,-0.05127444,0.0029730608,0.07295144,0.00455657,-0.032098636,0.025938291,-0.019882163,0.020090597,-0.035804104,0.0519229,0.031635452,-0.0026039612,-0.02340236,-0.018133644,0.010931137,0.02255705,-0.033696618,-0.00655984,0.017091481,0.000052334337,-0.010022139,-0.0058332207,-0.0023057866,-0.030709084,-0.028879508,0.010809551,0.042566586,-0.06280772,-0.012517542,0.0793897,0.038351614,0.039463256,0.019013694,-0.019766368,0.0211096,-0.055257823,-0.007023024,0.036938906,-0.00470421,-0.0007845175,0.0056392625,0.030106945,-0.058963295,-0.026586749,0.0032104424,0.008951026,0.024409784,0.03714734,0.016732514,-0.053821955,-0.035016693,0.032168113,0.0019410294,0.018990535,-0.007023024,0.000549307,-0.016026158,0.022198083,-0.01313126,-0.016975686,-0.054702003,-0.05386827,-0.012170154,0.0030714874,-0.00065931317,0.0064556235,-0.05132076,0.007978341,0.029481648,0.0056740013,-0.021433828,-0.010242151,0.048032157,0.004591309,-0.019534776,0.07040393,0.036938906,-0.016466184,0.015597713,0.0404591,-0.0023723694,-0.009477898,0.0070346035,0.019650571,0.059704386,0.0128417695,-0.008528371,-0.024595058,0.037471566,-0.0013714582,0.007254616,-0.0012382929,-0.018168382,-0.023356041,-0.0005319376,0.047314223,0.050301757,0.03082488,-0.016500922,0.0021986754,0.057481106,-0.010022139,-0.022892857,-0.05965807,-0.047152106,-0.042404473,0.011857504,0.006415095,0.045229893,0.027721548,0.016072476,0.013513386,0.011753288,0.04277502,0.032978684,-0.018457873,0.014103945,-0.0037836323,0.03413664,0.024085555,-0.019222125,-0.01968531,0.02454874,-0.03647572,-0.048541658,-0.044396166,-0.04506778,0.052895587,-0.021352772,0.012714394,0.0017919422,-0.0064614136,-0.0049126428,-0.029898511,0.026054086,0.0051239706,0.00599244,-0.0009357759,0.00016464735,-0.023761326,0.003795212,0.021190658,0.00656563,0.026656225,0.016304068,0.0083083585,-0.020982224,0.047244743,0.0009285387,0.007104081,0.0068609095,0.02226756,0.012019618,0.018133644,-0.08050134,0.027351001,0.03140386,0.021804376,-0.009593694,-0.0080015,-0.00022073601,0.025289834,-0.024131874,-0.038050547,0.00048344806,0.021051703,0.022614947,0.007758328,-0.022360196,0.007532526,0.01881684,-0.008736804,-0.0519229,-0.0066640563,0.07267353,0.030384855,0.033858735,0.011191677,0.028184732,0.013339693,0.01654724,-0.012644917,-0.0005189106,-0.006137185,0.03110279,-0.002551853,0.01570193,0.010693755,-0.0042004976,-0.011469588,0.016767252,-0.01653566,0.04877325,-0.0010139382,-0.01822628,-0.017844155,0.0359199,-0.03279341,0.015435599,0.005760848,-0.028138414,-0.05423882,0.020472722,-0.022325458,0.051876582,-0.052293446,0.040667534,-0.0014720559,0.005167394,-0.06294668,-0.08605954,0.0354104,0.068412244,-0.0066119484,0.029458487,0.01256386,0.004015224,-0.015238746,-0.006021389,0.0063456176,-0.04050542,0.0199748,0.0058650644,0.03140386,-0.048541658,-0.014613448,-0.050116483,0.004226552,-0.0364294,-0.029921671,-0.020576939,0.019777946,0.008962606,0.012714394,-0.030176422,0.03307132,0.0011717102,-0.007619373,0.05386827,-0.0035896741,0.021086441,0.012355427,-0.025567744,0.02307813,0.038258977,-0.014879778,-0.034993533,0.03198284,-0.0004418339,-0.022487571,0.0074283094,0.02623936,-0.01025952,0.012992305,-0.012656497,-0.034414552,0.00066365546,-0.027791025,-0.010971665,0.0055784695,-0.023853963,-0.0136639215,0.0136639215,0.04247395,-0.01256386,0.042612907,0.018735783,-0.030199582,0.043840345,-0.03422928,-0.0017774677,0.018944217,-0.026054086,-0.010676386,-0.0028427904,-0.03659152,-0.053219814,-0.010936927,0.04455828,-0.009860025,0.00826783,0.029852193,-0.049745936,0.03737893,0.027026772,0.008817861,-0.033696618,-0.024085555,0.0070346035,0.018110486,-0.0073414627,-0.03158913,-0.007758328,0.023298144,0.00078307005,0.02254547,-0.013443909,0.036267288,-0.0034333498,-0.036614675,0.003022274,0.007654112,0.02196649,-0.0045218314,0.006357197,-0.020021118,0.009854235,-0.010745863,0.005532151,-0.03281657,-0.013860774,-0.013455489,-0.008018869,-0.009020504,-0.054933596,0.023657111,-0.022626527,0.017184118,-0.013027043,-0.053127177,-0.036105175,0.036359925,0.0027530484,0.022209661,-0.06141817,-0.017045163,-0.00070707896,0.029852193,-0.0009010372,0.014462913,0.03874532,-0.04536885,0.009501057,0.00799571,-0.015748248,0.016964106,0.016072476,0.0051442347,0.023066552,0.029991148,0.0045507806,-0.026494112,0.027235206,-0.0031207006,-0.026725704,0.031264905,0.032330226,-0.0040325937,0.01566719,0.0026734388,-0.026702544,0.004310504,-0.0056971605,0.02252231,0.022753902,0.053682998,-0.035757788,0.025336152,-0.03339555,-0.044071935,-0.0016037738,-0.059241205,0.009593694,-0.043400317,-0.05734215,0.019025274,-0.016987264,-0.010502692,-0.030130103,0.009917922,0.019766368,0.031612292,0.020461142,-0.00075122615,0.0128417695,-0.042196043,0.0075151566,-0.013687081,-0.027351001,0.04536885,-0.014231321,-0.010276889,-0.018388396,0.034460872,-0.023205508,0.022487571,-0.0067451135,0.010016349,-0.022765482,-0.01741571,-0.006704585,-0.030709084,0.01570193,-0.006200873,-0.020750633,-0.011926982,0.032144953,-0.006762483,0.045785714,0.009309994,0.01599142,0.03080172,0.035804104,0.010977455,-0.04129283,0.018353656,0.0043133986,-0.028370006,0.039833803,-0.0013417854,0.020588519,0.011313263,0.0068319608,0.009732649,0.0024621112,-0.045276213,0.013003884,0.0073240935,-0.0031901782,-0.025498265,-0.000052108175,-0.010456374,0.016049318,0.006224032,-0.008505212,-0.00998161,0.0058390102,0.005792692,0.0030367486,-0.007214087,-0.038675845,-0.057851654,0.024131874,-0.0042381315,0.017577823,-0.025289834,-0.010803761,0.0013244161,-0.047522653,-0.015505076,-0.004246816,0.010722704,-0.02084327,0.0051239706,-0.009923712,-0.00052361476,-0.05025544,-0.035850424,-0.020657996,0.025753018,-0.076147415,-0.006316669,0.032700773,-0.012795451,0.054655686,0.0004197603,0.011284314,-0.039509576,0.012123835,0.016188273,-0.0058071665,0.0056045237,-0.045808874,-0.021873854,0.017195698,-0.046735242,-0.017369391,0.027536275,0.009865814,-0.04226552,-0.0394401,0.00972107,0.002451979,-0.037008382,0.0023014443,0.045206737,0.036267288,0.005416355,0.012702815,-0.032029156,0.009923712,-0.010867449,-0.016095636,-0.004049963,0.020959066,-0.03131122,-0.014335537,0.013756558,0.03679995,-0.013247056,0.020681156,-0.015574554,-0.0040962812,-0.038351614,-0.01628091,-0.032330226,-0.036359925,0.020727474,0.03795791,-0.012888088,-0.013212317,-0.024757173,-0.01972005,-0.011845925,-0.039509576,-0.021734899,-0.0006614843,0.038258977,-0.016176693,0.018434715,-0.030014308,0.009246306,0.002967271,0.019638991,-0.023552895,0.044118255,-0.007219877,-0.000121857134,-0.0004772964,0.019025274,-0.0020857744,0.017543085,0.022684425,0.029898511,0.021873854,-0.00070635526,0.010207412,0.006814591,0.000051791543,0.020901168,-0.03768,0.0064208847,-0.023807645,-0.007764118,-0.035294604,-0.004791057,-0.0020206391,0.0046578916,-0.029898511,0.008065187,0.02883319,0.015574554,-0.0022377565,-0.005705845,-0.037587363,-0.021005385,-0.004516042,0.0042149723,-0.003395716,0.027327843,-0.039880123,-0.006166134,-0.02253389,-0.011892243,0.036776792,-0.011319053,-0.045716237,-0.014567129,-0.013247056,0.0028442377,-0.016327228,0.025498265,-0.005766638,-0.022869699,0.009530006,0.024803491,-0.025475107,-0.049282752,-0.009078402,-0.028485801,-0.02022955,-0.029041622,0.03682311,-0.008099926,-0.021549625,0.024710855,-0.021016963,-0.06850488,0.00400075,0.038536888,-0.017728359,-0.0019106331,-0.009089981,0.0011355239,-0.024757173,0.025336152,-0.020102175,0.011481168,0.012945986,0.00034503572,-0.038699005,-0.027767867,0.005286085,-0.0006292786,-0.019812686,0.021711739,-0.047522653,0.010485322,0.01313126,-0.0036620467,-0.00039913412,-0.009327363,0.020032698,0.042960294,0.018758943,0.02022955,0.010699545,0.018492611,0.046989992,-0.0045276214,0.009611063,-0.016211431,0.0032075476,0.011035353,-0.015041892,-0.020380085,-0.015817726,0.006224032,-0.005225292,-0.030917516,-0.00091478793,-0.006137185,0.0026835708,0.0069419667,0.0025460632,-0.0069477563,0.00012909438,0.027837344,-0.000670169,-0.018955795,-0.0023274985,0.026331997,-0.0147060845,-0.032144953,0.02484981,0.029203737,0.0108385,0.007214087,-0.010201623,-0.0020162968,0.013455489,0.014011309,0.006797222,-0.012610178,-0.0007020129,-0.026355157,-0.016431443,-0.0026690965,0.010276889,0.0098252855,0.006698795,0.0018310234,-0.02510456,-0.022730744,0.0041252305,0.026331997,0.052941903,-0.002438952,-0.03594306,0.013142839,0.04886589,0.0054047755,-0.015644033,-0.00999898,-0.03175125,-0.00427866,0.057851654,0.049792256,-0.03158913,0.00971528,-0.020912748,0.004744739,-0.010763233,0.004860535,-0.025915131,-0.0037257343,0.004875009,-0.010392685,0.020183232,0.004455249,-0.040621217,-0.031658612,-0.0036881007,-0.00030233597,0.017230436,-0.0070693423,0.012228051,0.022499152,0.018944217,-0.019766368,0.004324978,-0.023170767,-0.019233705,0.009564744,-0.016141955,0.02334446,-0.018191542,0.03821266,0.01652408,-0.008042028,-0.044975143,-0.0022464413,0.008505212,-0.010496902,0.0062645604,-0.011035353,-0.0041454947,0.021769637,0.02254547,-0.00051131146,-0.007908863,-0.008759963,0.005422145,0.0058882236,0.0451141,-0.030477492,0.032052316,0.006189293,-0.037726317,0.027999459,-0.0065482603,0.011788026,0.017855734,-0.030732242,0.016350387,-0.027258364,-0.03564199,0.038096864,-0.031218586,-0.027351001,-0.009628433,0.028068935,0.018029429,0.010213202,-0.018006269,-0.018469453,-0.006988285,0.007017234,0.037471566,0.025197197,0.013200738,-0.022985494,-0.008731014,0.016141955,-0.010137934,-0.0045420956,0.00455657,-0.011602754,0.0015183743,0.0012752028,0.011145359,0.049282752,0.032677613,0.031658612,-0.0027631808,0.051506035,-0.005700055,-0.019662151,0.012760713,-0.0058621694,-0.01741571,0.034182962,-0.01113957,0.025081402,-0.018596828,0.017160958,0.01256386,-0.00049321837,0.00969212,0.01714938,-0.005740584,-0.021364352,-0.012969146,-0.033418708,-0.018087326,0.009640012,0.0042120772,-0.011556435,-0.018967375,0.014763983,-0.0114464285,0.01652408,-0.023054972,-0.00827362,-0.0012780977,0.020299029,0.0021147234,0.009072612,-0.015180848,0.0048547448,0.04423405,-0.014011309,0.048310068,-0.024896128,-0.012911247,0.0045999936,0.0030309588,0.0015227166,-0.0052397666,0.019036854,0.035271443,-0.036406245,-0.030940676,-0.022614947,0.007098291,-0.012042778,0.012239631,-0.0018049693,0.00798992,-0.0064787827,-0.022140184,0.042126562,-0.016107215,-0.027559435,-0.026378315,-0.02165384,0.041848652,0.035526194,0.04078333,-0.051367078,-0.0604918,-0.008765752,-0.00771201,0.0007837938,0.016060896,0.010473743,-0.0035317761,0.020773793,0.0064961524,0.017346231,-0.04668892,0.051135488,0.014451333,-0.031519655,0.017195698,0.0051789735,-0.0070635523,0.0062877196,0.0057492685,-0.02714257,-0.029643761,-0.017832575,0.00456815,0.017797837,0.009970031,0.05169131,0.0027631808,-0.03823582,0.05247872,-0.0036765211,0.016315648,-0.017612563,0.013142839,-0.019245286,0.03508617,0.011735919,0.009199987,-0.019222125,0.0032422864,-0.008464684,-0.011394321,-0.010763233,-0.0080767665,0.0011319054,0.0112148365,0.019060012,0.022232821,-0.0052542407,0.028161572,-0.033789255,-0.01823786,0.017728359,-0.010398475,-0.0047736876,-0.016211431,0.028671075,0.012135414,-0.00035317763,0.0054829377,-0.0028427904,0.013108101,-0.009182618,0.017033583,0.044048775,-0.0083083585,0.055767324,-0.0149376765,-0.029041622,0.0026908081,0.012054358,-0.05132076,0.008649956,-0.00627614,0.014960836,-0.02943533,0.00972107,-0.002622778,-0.004133915,-0.010097406,0.008638377,0.04076017,0.00911314,-0.036962066,0.029504806,-0.054331455,0.017357811,0.020368505,0.010195833,-0.0070635523,0.029666921,-0.025521426,-0.005193448,-0.014347117,-0.024803491,0.028045777,-0.051506035,0.013629182,-0.015586134,-0.0017210172,-0.036962066,0.012112255,0.0024794806,-0.012679656,0.020275868,0.013362852,-0.01540086,0.041524425,0.05938016,-0.017438868,-0.0025286938,-0.0043799817,0.014752403,0.026772022,0.0014568577,-0.0055726795,-0.010618487,-0.04900484,-0.018654726,0.010398475,0.02853212,0.0064556235,-0.014636607,-0.008974185,0.0015864044,-0.019198967,0.045461487,-0.014960836,0.0032451812,0.0028297633,-0.03082488,0.03158913,-0.032978684,-0.013941831,0.023448678,-0.02651727,0.02311287,0.031056471,-0.008094137,-0.0064961524,0.014810301,0.016234592,-0.03538724,0.026030928,-0.042844497,0.0013280347,0.043794025,-0.043122407,0.0011449324,-0.0008026106,-0.014300799,-0.019256866,0.016466184,-0.012436484,-0.009309994,-0.009570534,-0.0032914996,-0.0036649415,-0.023182347,0.009061032,0.031079631,-0.004990805,0.0028760817,-0.0101668835,-0.013154419,0.0023477627,-0.03304816,0.007845175,-0.009309994,0.07475786,-0.020345347,0.0133165335,0.00015750057,0.013953411,0.003511512,0.0034941426,-0.0073588323,0.040713854,-0.015099791,0.012691235,0.0073588323,0.0057811122,0.0018831315,0.023298144,-0.011950141,-0.03334923,0.0021494622,0.0101784635,-0.028508961,-0.019940061,0.010010559,0.00485764,0.0055726795,0.029829035,0.02022955,-0.018307338,0.010305839,0.020449564,-0.004733159,0.0010602566,0.027188888,0.0182147,0.04363191,0.009275255,-0.016500922,-0.014497652,-0.0034478242,-0.0005608866,0.008435735,-0.01999796,-0.035155647,0.0049821204,0.04388666,0.010045298,-0.027628912,0.0013598786,0.005170289,0.012135414,-0.014161844,-0.03483142,0.021422248,-0.021549625,-0.031774405,-0.0054047755,-0.012401746,-0.055674687,-0.020565359,-0.044071935,-0.026169883,0.013386011,-0.012436484,0.007306724,0.031612292,-0.006362987,0.014080786,-0.0084241545,-0.0014315273,-0.013362852,0.005801377,0.03971801,0.017531505,-0.0012397403,0.0073240935,-0.006362987,0.005034229,-0.008713645,0.03742525,-0.02396976,-0.008956816,-0.006160344,0.020403245,0.038930595,0.016118795,0.010126355,0.009431579,-0.0031178058,0.013362852,0.0020119546,-0.012992305,0.018087326,-0.006646687,-0.01998638,0.02707309,0.005286085,-0.01313126,-0.001894711,0.033858735,-0.04133915,0.017299913,-0.0011282867,-0.00627614,-0.026447793,0.025150878,-0.04905116,0.001043611,0.0033262384,-0.0005789797,-0.0056305774,-0.010960086,-0.022742324,-0.021063281,-0.006988285,0.020588519,-0.01198488,0.0041425996,0.031542815,-0.034924056,-0.014694505,0.011290104,0.017103061,-0.00018265001,0.005928752,0.00041758912,0.01397657,-0.010415845,-0.027582593,-0.027837344,-0.016975686,-0.0050400184,0.00057355175,-0.03249234,0.00011860037,0.010543221,-0.00585638,-0.014347117,-0.0043191887,0.008470473,0.02396976,-0.02626252,-0.013223897,0.042381316,0.0070288135,0.01427764,-0.0051413397,0.015470338,-0.005335298,0.01198488,0.02883319,0.042960294,-0.035433557,0.018423134,-0.024988765,0.03823582,0.0052310815,0.01572509,0.019337922,0.042844497,0.0024360572,-0.012888088,-0.0011456561,-0.0101784635,-0.025150878,0.013247056,0.03768,0.0076656914,0.0076309526,0.03425244,0.009049453,-0.024988765,-0.019349502,-0.0150534725,0.009257886,0.0019612939,-0.007578844,-0.014173423,-0.023460258,-0.0017991795,0.00090537954,-0.03941694,0.010282679,-0.041200195,0.009211567,-0.011892243,0.03283973,-0.026702544,0.027443638,-0.0034999324,0.020171653,-0.0105258515,0.04078333,-0.009645802,-0.03714734,-0.046966832,-0.00052108173,0.032955524,-0.014902937,0.0030280638,0.017763097,0.0171378,0.015806146,-0.0032567608,-0.022661265,0.0044147205,-0.022464413,0.008910498,-0.0008720882,0.031519655,0.039532736,-0.009912132,0.010045298,-0.03311764,-0.0031496496,-0.017450448,0.0036794161,0.009524216,-0.0038067915,0.009356312,-0.017103061,0.025266675,-0.007214087,-0.009003134,-0.016755672,0.027976299,-0.010346367,-0.03277025,0.007104081,-0.0038588997,-0.04393298,0.014381856,-0.01171276,-0.031820726,0.0037923171,-0.003653362,-0.003083067,-0.028416324,0.006600369,-0.013223897,-0.005836115,-0.04048226,0.003966011,-0.00057861785,-0.016141955,0.002757391,0.049838573,-0.016987264,0.0071098707,0.00884102,0.020113755,-0.020368505,-0.028578438,0.0042410265,-0.038027387,0.01795995,0.023054972,0.012587019,0.015945101,0.016315648,-0.015354542,0.0022999968,0.032121792,-0.003824161,-0.035225127,-0.0068435404,-0.046248898,0.0044899876,0.0015950891,0.047476336,0.021155918,0.025081402,0.004536306,0.01228595,-0.0049473816,0.0068609095,-0.023298144,-0.022024387,0.017739939,0.010155304,-0.020623257,-0.0036967855,0.005106601,-0.013200738,-0.013826035,0.012529121,0.027513117,-0.010907978,0.012540701,0.033279754,-0.007868335,-0.0052339765,-0.00006576848,0.023205508,-0.03388189,-0.01653566,-0.00999898,0.04539201,-0.022638107,0.06655951,0.00770622,0.0020756423,0.0056161033,-0.0030193792,-0.019060012,0.011307473,0.020484302,0.018203123,0.02310129,0.04476671,0.023633951,-0.030871198,0.016894627,0.022881279,-0.012772292,0.025451949,-0.010861659,-0.014729244,0.0035636202,-0.029551124,-0.04504462,0.011342213,-0.012008039,-0.03941694,0.0031351752,0.014335537,0.011087461,-0.028948985,-0.021862274,0.00942]},{"id":"guide-editing-embeds-4","type":"guide","source":"guides","text":"Guide: Editing Embeds (editing-embeds)\nSection: API Reference\nThe edit endpoint is PATCH /channels/{channel_id}/messages/{message_id}. See openapi.json for the full request body schema. The SDK Message.edit() accepts { content?: string; embeds?: (APIEmbed | EmbedBuilder)[] }.","meta":{"slug":"editing-embeds","url":"/guides/editing-embeds"},"embedding":[0.01640587,0.021695757,-0.025737934,-0.028604578,0.003830786,0.029450135,0.04281406,0.04421645,-0.020881135,-0.019086905,0.024686143,-0.032543637,0.03503906,-0.0017748965,0.014116678,0.010254958,0.023593105,0.0075017414,-0.010713827,0.017158622,-0.011683124,0.010399321,-0.0059601464,0.07420279,-0.0055528353,-0.029429512,-0.0014410561,0.014508522,-0.0005017273,-0.020994565,0.009569231,-0.0021796296,0.029800732,0.0039416365,-0.014683821,0.03934934,0.016983323,0.014611639,-0.020530539,-0.01794231,0.020520227,0.03749324,-0.046278782,0.0028047748,-0.048506103,0.009187699,-0.04446393,0.039122485,0.026934087,0.0066097816,-0.0009847647,0.009172232,-0.0013289168,0.018890982,0.034440983,-0.0063313665,-0.0036013515,-0.009491894,-0.026604114,0.016560545,0.0032920013,-0.025882296,-0.017065817,-0.022500068,-0.009801244,-0.02410869,-0.07754377,0.034131635,0.018736308,0.019416878,0.045742575,-0.023840586,-0.022623809,-0.0072645727,-0.0020855356,-0.037451994,-0.02670723,0.016209949,-0.002887268,-0.06566472,-0.022046354,-0.0063004317,-0.09536234,-0.012178085,-0.041782893,0.0379882,0.011002554,0.0023123925,0.016024338,-0.02029337,-0.056301728,-0.0058879647,-0.05555929,-0.011445955,0.034049142,0.0066716517,-0.07742003,0.0073419106,0.0075584557,0.030295692,0.04759868,-0.021922614,-0.0983321,0.0116728125,-0.0024773793,-0.058982763,0.028315851,0.05370319,-0.0014359003,-0.046031304,-0.031615585,-0.042442843,-0.040999208,-0.024005571,0.039328717,0.0029568719,0.054280642,-0.0022891911,-0.00013566294,-0.035286542,-0.070119366,-0.023345625,0.06603595,-0.0196128,-0.027532164,-0.0117243705,-0.006913976,-0.029367642,-0.04434019,0.033781037,0.016498676,-0.004178805,0.04126731,0.0030419433,-0.008687584,0.023593105,-0.021675134,0.04269032,-0.015580936,-0.020891447,0.03256426,-0.021798875,-0.024314923,0.003957104,-0.026727853,-0.010992242,-0.025676062,0.0023781294,-0.0059188996,0.0032223975,-0.023366248,0.022500068,-0.022561938,0.0063004317,-0.029305771,-0.020004643,0.022541314,-0.04656751,0.0012825142,-0.00943518,-0.032770492,-0.0032584884,-0.0052589527,-0.008971155,-0.01998402,-0.0072439495,0.051145893,-0.039555572,-0.018643502,0.017055506,-0.025799803,-0.03491532,-0.025119232,0.00080431043,0.019385943,-0.023242509,0.029223278,-0.07634762,-0.017055506,0.025242973,-0.013807328,0.03380166,-0.07317162,0.02060272,-0.03706015,0.054734353,-0.040380508,0.02751154,-0.029347017,-0.030027589,-0.049619764,-0.015653118,0.0020275326,0.0060477955,-0.027222814,-0.0144466525,-0.0009351397,0.012229643,0.06302494,-0.022066979,0.042215984,0.026851594,0.03132686,-0.0036090852,-0.027985878,-0.035183426,-0.045206368,-0.011435644,-0.05032096,0.026995957,0.031285614,0.012425564,0.00059259887,-0.0047227456,0.011342839,0.03726638,-0.040050533,-0.029594498,-0.101301864,-0.035513397,-0.07436778,-0.006295276,0.062076263,0.003431209,-0.035183426,0.0401949,-0.022603184,0.029780108,-0.022933159,0.051640853,0.016024338,0.026109153,-0.024397416,-0.022396952,0.0045732264,0.052878253,-0.056136742,0.020994565,-0.006248873,-0.03472971,-0.012734915,-0.02534609,-0.0055167447,-0.014714756,-0.02819211,0.016313065,0.039864924,-0.06582972,-0.014199172,0.059065256,0.07795624,0.01832384,0.020943007,-0.013374238,0.019437501,-0.02732593,0.004405662,0.029326394,-0.0069191316,-0.009306284,0.06389112,0.052218307,-0.027841514,-0.032316778,-0.010755074,0.018179478,0.0018496561,0.016333688,0.031553715,-0.038565654,-0.034564722,0.00035124132,0.02602666,-0.008919596,-0.021180173,0.0036683772,0.0021345161,-0.019437501,-0.007475962,-0.016993634,-0.04198913,-0.047887404,-0.03576088,0.0052254396,0.012322448,0.031615585,0.019767474,-0.016498676,0.0089505315,0.025511077,-0.0059859254,0.0036271305,0.022912536,-0.030646289,-0.014054809,0.029738862,0.039885547,-0.0066716517,0.05217706,0.042030375,0.017189557,-0.022046354,0.014663197,-0.030357562,0.006279808,-0.0077801566,0.0061096656,-0.009332063,0.06335491,-0.07065558,0.04101983,0.018653814,-0.038875002,-0.018540386,-0.00073277316,0.04545385,0.01659148,0.016179014,-0.026789723,0.014003251,-0.015168469,0.0053878487,-0.03182182,-0.04792865,-0.04854735,-0.031100003,0.0129308365,-0.012910213,0.034564722,0.011363463,0.010786009,-0.017653583,0.0053311344,0.038318172,0.018313529,-0.00955892,0.015570625,0.005594082,0.02751154,0.021592641,0.017859817,-0.02171638,0.0032713779,-0.0022118536,-0.05267202,-0.021798875,-0.04557759,0.027965255,-0.00008748809,0.0043128566,-0.01683896,-0.020839889,-0.016395558,-0.05015597,0.0379882,0.0034466763,-0.0039107017,-0.04137043,-0.00037250915,-0.031698078,0.00044597982,0.00021364495,-0.00447011,0.052342046,0.055229314,-0.022005107,-0.018509451,0.026047284,-0.02633601,-0.03256426,0.02134516,-0.0038591432,-0.0008262227,0.014333224,-0.014797249,0.033842906,0.028522084,-0.0010930372,-0.012044033,0.007970923,0.023428118,0.039555572,-0.014405406,0.012425564,-0.0074037802,0.024748012,-0.011301592,0.008749453,-0.006754145,0.01659148,-0.024871754,-0.008362766,-0.019561242,-0.0317187,0.09593979,0.04359775,0.020592408,-0.00049624924,0.006816015,0.0039416365,-0.014230107,-0.001443634,-0.0065272884,0.014209484,0.017849505,-0.008868038,0.018674437,0.010631334,0.0046118954,-0.027490918,0.037080772,-0.025676062,0.03996804,-0.0053930045,-0.0073315986,-0.02227321,0.020056201,-0.025511077,0.003487923,0.00885257,-0.013219563,-0.0697069,-0.03472971,0.024644896,0.04578382,-0.052342046,0.010992242,0.0024077755,-0.009136141,-0.035080306,-0.06504603,0.019437501,0.06797454,-0.012281201,0.03609085,-0.008306052,0.042154115,-0.03670955,-0.014487899,0.05481685,-0.05267202,-0.009703283,-0.011270657,0.02227321,-0.026006037,-0.018622879,-0.021180173,-0.0008172,-0.021324538,-0.010486971,-0.011250034,-0.057621624,0.008770077,0.015653118,-0.03547215,-0.025139855,0.010909749,0.02813024,0.026274139,0.028253982,-0.0005110722,0.011961539,0.0074811177,0.04421645,0.016292442,-0.015364391,-0.05258953,0.030151328,-0.031368107,0.012229643,0.0058312505,0.011456268,0.014075432,0.03547215,-0.024438662,-0.06376738,-0.009600166,-0.025325466,0.014756002,0.03817381,-0.031677455,-0.006346834,-0.008883505,0.032234285,-0.007166612,0.048506103,0.01986028,-0.035018437,0.026315387,0.00065865804,0.023180638,0.012683356,-0.03897812,-0.0066149374,-0.010394165,-0.029182032,-0.04945478,-0.005712666,0.04768117,0.009914673,-0.029099539,0.022974405,-0.01394138,0.022396952,0.03138873,0.016498676,-0.033327322,-0.03811194,0.020221189,0.011260346,-0.009136141,0.0013701634,-0.0057900036,0.0059910812,0.012188396,0.022128848,-0.02115955,0.024954246,-0.020262435,-0.022520691,-0.008043104,0.009404245,0.040834222,0.0016537344,0.0056095496,-0.002321415,-0.03138873,-0.047722418,0.0048310184,-0.003959682,-0.010347763,-0.015147846,0.030110082,0.009058803,-0.030378185,0.014157926,-0.049702257,0.027057827,0.0013128048,-0.015446885,-0.03576088,0.015013794,-0.0127246035,0.02732593,-0.03755511,0.011703747,0.0021744738,0.051599607,0.0144982105,0.04454642,0.019839657,-0.032894235,0.023964325,0.00021283935,0.0009493183,0.051970825,-0.018148543,-0.030749405,0.014302289,0.04434019,0.0010833701,-0.008074039,0.018055737,0.0050088945,-0.060921356,0.0074604945,0.03959682,-0.027305307,-0.0037405589,-0.018231036,-0.020901758,0.02078833,0.0022724348,0.024170559,0.013477355,0.06644841,-0.053620692,0.012394629,-0.035781503,-0.014230107,-0.002639788,-0.039431833,0.031368107,-0.020241812,-0.027119698,-0.0016447117,-0.034337867,-0.0072491053,-0.035740256,0.01220902,0.022933159,0.023056898,0.019633424,-0.022355705,-0.016694596,-0.019932462,0.02466552,-0.010095127,-0.009919829,0.017694829,0.011590319,0.020468669,-0.015024106,0.053579446,0.0104405675,0.029470759,-0.014962235,-0.010095127,-0.017818568,0.0011955095,0.013848576,-0.017550465,0.00065543567,0.0054600304,-0.008733986,0.0046015834,0.035183426,0.0065221325,0.05927149,0.009290816,0.009084583,0.026129777,0.007207859,0.021695757,-0.036544565,0.018200101,0.0121368375,-0.03347169,0.035843372,0.011487203,0.036111474,0.014817872,0.02608853,0.016508987,-0.016117143,-0.024149936,0.00247609,0.001947617,-0.033595428,0.012848343,0.009280505,-0.014941612,0.024500532,0.0009944319,-0.013302057,-0.007955455,0.0027454826,-0.015003483,-0.0018625457,-0.0038849225,-0.022830041,-0.02670723,0.022603184,0.015426261,0.0115181375,-0.029429512,-0.027470294,0.033347946,-0.028583955,-0.02472739,-0.02590292,0.028563332,0.01326081,0.022850664,0.0010517905,0.009172232,-0.0398443,-0.00610451,-0.021365784,0.024933623,-0.036173344,-0.023675598,-0.002732593,-0.029945096,0.06026141,-0.02522235,0.010610711,-0.015828416,0.010167308,0.028604578,0.005055297,0.010713827,-0.037245758,-0.015075664,0.022974405,-0.056013003,-0.004689233,0.02134516,0.025304843,-0.028068371,-0.017911375,0.003988039,-0.014539457,-0.034523476,0.021303914,0.07383157,0.008094663,0.010827255,0.030955639,-0.020365551,-0.008460727,0.0031192808,-0.016086208,-0.0051377905,0.011146917,0.003583306,-0.026624737,0.0074347155,0.044793904,-0.021984484,-0.013126758,-0.014890054,-0.006733522,-0.01919002,-0.0196128,-0.011353151,-0.02645975,0.030955639,0.023593105,0.007037716,-0.0057384456,-0.026686607,-0.0043102787,0.0035652604,-0.007661572,-0.044876397,0.013992939,0.04883608,-0.017199868,0.009759997,0.0011458845,0.01979841,0.004534558,0.021901991,-0.014838496,0.02992447,-0.006975846,-0.020014955,0.0103890095,0.0027635281,0.013353615,0.024830505,0.033904776,0.005717822,0.02534609,-0.023015652,0.0032765337,0.015735611,0.027429048,-0.012239954,-0.007635793,0.0027841514,-0.05828157,0.018313529,-0.015312833,0.006259185,-0.004062799,-0.024335546,-0.05118714,-0.0045680706,0.019633424,0.023861209,0.009357843,-0.0010208555,-0.05370319,-0.02109768,-0.01350829,-0.017973244,0.040772352,0.010291048,-0.0417004,-0.0064241714,-0.023840586,0.004217474,0.060302656,-0.03891625,-0.015993403,-0.010419944,-0.019561242,0.0011110826,-0.0018805912,0.002985229,-0.026810346,-0.02608853,-0.015519066,0.02701658,-0.058446556,-0.03194556,0.0015944423,-0.018138232,-0.045495097,-0.021066746,0.005279576,-0.0255317,-0.012662733,0.0063726134,-0.023448741,-0.039885547,0.03854503,0.04842361,-0.017045194,0.02608853,-0.044587668,-0.028171487,-0.018860048,0.0102343345,-0.023160014,0.018200101,-0.0026011192,0.031100003,-0.042649075,0.009950764,-0.011765618,0.010012633,0.007604858,0.012961771,-0.017818568,0.044876397,0.037287004,0.014725068,0.0116212545,-0.00012277334,0.03947308,0.025057362,0.029388266,0.038008824,-0.025676062,0.011085047,0.045990057,-0.040050533,0.018066049,-0.016550234,0.009502206,0.0044365968,-0.036276463,-0.04052487,-0.050197218,0.024624273,0.0031759948,-0.027099073,-0.02590292,-0.016127454,0.027800268,-0.0034415205,0.01017762,-0.007254261,-0.012868967,0.057621624,-0.0075842347,-0.011033489,-0.0011413732,0.012538993,0.0024786682,-0.041102324,0.053373214,0.0012051767,-0.018004179,0.022479445,0.0022221652,0.00835761,-0.0019269937,-0.014395094,0.00031966183,-0.014085744,-0.028604578,-0.035513397,-0.0088989725,-0.004990849,0.006578847,0.024129312,0.03188369,-0.026604114,0.001037612,-0.030770028,0.0057436014,0.03318296,0.032234285,-0.022933159,-0.025304843,0.036070228,0.038400665,-0.025387336,-0.0014616795,-0.009796089,-0.021427654,-0.007161456,0.033286076,0.029223278,-0.027552787,0.02258256,-0.006795392,0.021283291,0.0028718007,0.009600166,-0.022005107,-0.0029568719,-0.012992706,0.0028692228,0.033100467,-0.013652653,-0.0392256,-0.012477123,-0.018158855,-0.0075017414,0.018839424,0.008744298,0.025387336,0.009584699,0.015426261,-0.0040756883,-0.009043336,-0.01714831,-0.028728317,0.03221366,0.0014281665,0.03163621,-0.015560313,0.01425073,-0.00072052807,-0.017602025,-0.022809418,-0.0010369675,0.021757627,-0.0071717678,-0.00906396,-0.024479909,-0.037596356,-0.008945376,0.023201263,0.0073264427,0.0196128,-0.003923591,0.008955687,0.03687454,0.036462072,-0.021922614,0.005537368,-0.0066974307,-0.023469366,0.008218402,0.018158855,-0.010280737,0.020190254,-0.021180173,0.019385943,-0.019107528,-0.06252998,0.05304324,-0.018158855,-0.032028053,-0.026851594,0.035843372,0.028109618,0.017736075,0.018365087,-0.026047284,0.0015196827,0.010878813,0.035843372,0.011755306,0.027924007,-0.04248409,-0.0107241385,0.004405662,-0.017385479,-0.01350829,0.02441804,-0.022871288,0.030625666,0.03219304,-0.017787633,0.022747548,0.03972056,0.06760332,0.0007566189,0.029759485,-0.008037948,-0.003681267,0.0029001578,0.017426725,-0.022087602,0.004055065,-0.004186539,0.027779644,-0.003462144,0.021180173,-0.014694133,-0.0024928467,0.022128848,0.040463,0.022293834,-0.002516048,-0.009775465,-0.05514682,-0.013168005,-0.0021229153,0.02639788,0.008058571,0.00916192,0.014951924,-0.007795624,0.009832179,-0.032028053,-0.008326675,0.003420897,0.029883225,0.029099539,-0.002858911,-0.0016949811,-0.0024928467,0.031966183,-0.0015480397,-0.005996237,-0.019571554,-0.008868038,-0.013095823,0.01659148,-0.026171023,0.0034002739,0.0131370695,0.037472617,-0.029243901,-0.01597278,-0.0020700681,0.00027680394,-0.007914208,0.029285148,0.014487899,0.012435877,-0.02584105,-0.037843835,0.044587668,-0.025511077,-0.028542709,-0.0050449856,-0.007909052,0.05027971,0.022479445,0.05931274,-0.035369035,-0.05679669,-0.0057023545,-0.018303217,0.02177825,0.03442036,0.022603184,-0.0064396393,-0.007537832,-0.005034674,0.008017325,-0.058199078,0.05502308,-0.0052357516,-0.030708158,-0.01350829,0.0063262107,-0.00073470664,0.032419898,-0.015818104,-0.01553969,-0.0131886285,0.00012011486,0.0010659691,0.024253052,0.002485113,0.037287004,0.026789723,-0.0044752657,0.028913928,-0.012095591,0.014797249,-0.005604394,-0.0011039934,-0.002768684,0.016148077,0.0012322448,0.02091207,-0.03670955,-0.020881135,-0.011456268,-0.01051275,-0.009234102,0.012466812,-0.011229411,0.01116754,0.011208788,0.0015506176,-0.004843908,0.02763528,-0.035554644,-0.038710017,0.036895163,-0.017096752,0.021633888,-0.0119821625,0.010878813,0.00009683304,0.0015248385,-0.011786241,-0.013518602,-0.0056095496,0.006877885,0.011115982,0.03165683,0.02726406,0.03788508,-0.0078987405,-0.029037667,-0.008935064,0.041122947,-0.039143108,0.02701658,-0.019148774,-0.0032636442,-0.03541028,0.016344,-0.0062385616,-0.006903664,-0.023180638,-0.015446885,0.029347017,-0.0018999255,-0.017447349,0.045123875,-0.034750335,0.011549072,0.024789259,0.017426725,-0.010450879,-0.0072130146,-0.031285614,-0.008904128,-0.023964325,-0.039143108,0.019468436,-0.042092245,0.015622183,0.00016289219,-0.015312833,-0.02905829,0.014931301,0.014890054,-0.026542243,0.014188861,0.022665055,-0.02466552,-0.005717822,0.040545493,0.010492126,-0.0033487154,-0.015116911,0.032646753,0.02577918,0.0146528855,0.02658349,-0.020509915,-0.031244365,0.008007013,0.006470574,0.03928747,0.012734915,-0.017952621,-0.00829574,0.0011149495,0.0055889264,0.041122947,-0.01948906,-0.010806632,0.0016408447,-0.009110362,0.030625666,-0.0492073,-0.022871288,0.012838031,-0.002583074,0.015281898,0.029573875,-0.03299735,0.016333688,0.013271121,0.026315387,-0.01683896,0.028088994,-0.030006966,0.001259313,0.014766314,-0.044628914,0.0061354446,-0.016570857,-0.0013972316,-0.017684517,0.0015351501,0.016508987,-0.01751953,-0.03165683,-0.0075533,-0.0036503319,-0.017797945,0.02720219,0.023366248,-0.0059859254,0.013343303,0.010621022,-0.0015467508,0.02460365,-0.035492774,0.011580007,0.007506897,0.05576552,-0.006408704,0.018921917,-0.00013429341,0.037575733,0.022355705,0.0051558358,-0.007909052,0.051022153,0.0060271723,0.0141373025,-0.0050501414,-0.023139391,-0.002982651,0.011239722,-0.0011046379,-0.028357098,-0.003299735,0.019602489,-0.022561938,-0.030130705,0.013858887,0.012394629,-0.0064396393,0.0647573,0.029800732,-0.013106135,0.015807793,0.018581633,0.0027557942,0.0032327091,-0.014353847,0.025737934,0.029326394,0.0052048163,0.0025624505,0.003018742,0.013642342,-0.009228947,-0.012611175,-0.016519299,-0.010193088,-0.014931301,-0.0008391123,0.019777786,-0.032316778,0.017849505,-0.0060684187,0.015591248,-0.010796321,-0.027470294,0.018829113,-0.023077521,-0.035162803,-0.016570857,-0.03470909,-0.04743369,-0.009857958,-0.015828416,-0.016344,0.037699472,-0.0016563123,0.029305771,-0.02874894,-0.008202935,0.014281666,0.009935296,-0.0015171047,0.016694596,0.01888067,0.01732361,0.03175995,0.016539922,0.0398443,-0.011188164,0.015570625,-0.021984484,0.012982395,0.0038462535,-0.011198476,0.0018754354,0.0010015211,0.016251195,0.0044855773,-0.023881832,0.017870128,0.0017001369,0.009543452,0.006759301,-0.033842906,0.021200797,0.0048310184,-0.030233823,0.027985878,0.004153026,0.014240419,0.009687816,0.030089458,-0.026789723,0.03532779,-0.011992474,-0.029553251,-0.014230107,0.018932229,-0.0320693,0.0007430849,0.008099819,0.005728134,0.012044033,-0.009187699,0.01264211,-0.016508987,0.012487435,0.013992939,-0.020551162,0.024191182,0.018117607,-0.038627524,-0.022417575,0.009192855,0.017107064,0.0012309558,0.0038539874,0.013900134,0.02732593,-0.0023098146,-0.019468436,-0.016478052,0.0021796296,-0.003768916,-0.008471038,-0.021922614,-0.012312137,-0.0105694635,-0.024768636,0.005779692,-0.0044855773,0.024438662,0.014075432,-0.026315387,0.024149936,0.024933623,0.018540386,0.0021989641,0.013982628,-0.015869662,0.005686887,-0.010342607,0.04176227,0.01707613,-0.021943238,0.023345625,-0.021592641,0.015034418,-0.0024296877,-0.0023832852,-0.030605042,0.018963164,-0.005717822,-0.0018470782,-0.0023948858,0.0009924985,-0.023696221,0.001986286,0.021592641,0.011177853,-0.008079194,0.039184354,-0.011445955,-0.015508754,-0.032667376,-0.014023874,0.013044265,-0.016570857,-0.009362998,0.009687816,-0.008471038,0.0019334385,0.0030625665,-0.025696686,0.006284964,-0.027676526,0.0032610663,-0.0054858094,0.024748012,-0.041947883,0.0060477955,-0.0012174217,-0.005712666,0.009888893,0.028769564,0.012992706,-0.05514682,-0.017127687,-0.022252588,0.011208788,-0.015158158,0.0057023545,0.010033256,0.0018277438,0.02441804,0.026315387,-0.014477587,0.012673045,-0.016189326,-0.007017093,-0.0011987318,0.0043309024,0.044092707,-0.009754841,0.01319894,-0.021448277,-0.0033925402,0.014766314,-0.018220725,0.033409815,-0.026748477,0.009615634,-0.009455803,-0.00022927357,0.0037611823,-0.005934367,0.013467044,0.029800732,0.019839657,-0.029573875,-0.013642342,0.0012141994,-0.037225135,0.012982395,-0.008486506,-0.035389658,-0.0089505315,0.014890054,0.004812973,-0.022561938,-0.008831947,0.011951228,-0.016313065,-0.022706302,-0.008079194,0.0005162281,-0.022170095,-0.01264211,0.050609685,-0.011280969,0.001243201,0.0066819633,0.030646289,-0.018519763,-0.027408425,0.016539922,-0.01942719,0.010775697,-0.01085819,0.009935296,0.029202655,0.037245758,-0.022252588,0.006578847,0.01098193,0.006496353,-0.018890982,0.04281406,-0.044917643,-0.0067850803,-0.018849736,0.052094568,0.0196128,0.013209252,0.005217706,-0.013302057,0.002226032,0.013405173,-0.019251892,-0.033017974,0.012807096,-0.018035114,-0.026356634,-0.013312369,-0.009316595,0.00016265051,-0.024232429,0.0027944632,0.029017044,-0.019777786,0.030666912,0.01838571,-0.029821355,0.019344697,0.019757163,0.024294298,-0.051599607,-0.0039210133,0.023551859,0.006259185,0.0059549906,0.06257123,-0.0007430849,-0.0056404844,0.006078731,0.008001857,0.010631334,-0.009754841,0.01856101,0.013374238,0.002951716,0.02707845,0.054486874,-0.052960746,0.019509682,0.0066974307,-0.043267775,0.028728317,-0.009816712,-0.027449671,0.023283755,-0.0039777276,-0.033884153,0.008398857,0.002923359,-0.042772815,-0.0053569134,0.009048492,0.0036039294,-0.031244365,0.002260834,-0.016601792]},{"id":"guide-embed-media-0","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Images and Thumbnails\nUse setImage() and setThumbnail() with a URL string, or pass full EmbedMediaOptions for width, height, content_type, and other metadata.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!embedimg') {\n const embed = new EmbedBuilder()\n .setTitle('Image Embed')\n .setDescription('Simple image from URL.')\n .setImage('https://placehold.co/400x200/5865f2/white?text=Image')\n .setThumbnail('https://placehold.co/100x100/57f287/white?text=Thumb')\n .setColor(0x5865f2);\n\n await message.reply({ embeds: [embed] });\n }\n});\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.030469608,-0.022242812,-0.03625883,-0.009331317,0.0101420265,-0.012829881,0.003884875,-0.0070460965,0.007965626,-0.008629428,0.0021995248,-0.0041487636,0.025572706,-0.09846036,-0.023439834,0.017139154,0.0051417463,-0.029250823,0.047184363,0.04391976,0.0015302816,-0.0040943534,-0.01967466,0.047793753,-0.0039256825,-0.029947272,-0.02287397,0.032341313,0.019652896,-0.013330453,0.013167223,-0.00913,0.013047521,-0.018172944,-0.03884875,0.012046377,0.055672325,0.018455876,-0.041808654,0.025202718,0.033081286,-0.027618522,0.03395185,0.019446138,-0.0046765404,0.032580715,-0.03547533,0.0040508253,0.0032646006,0.04983957,-0.014919225,0.0038059803,-0.014603647,0.013569857,-0.02581211,0.008090769,-0.04239628,-0.007845923,-0.036650583,0.031601336,0.0575005,-0.025463887,0.024092754,0.0011160853,-0.030143147,0.002564072,-0.020251406,0.036911752,-0.0048071244,0.038718164,0.037717022,-0.020566985,-0.008602223,-0.018989094,0.012829881,0.0030768863,-0.008406347,0.011110525,0.0037243653,-0.061287437,0.0010371909,0.0061809774,-0.08631604,0.020501692,-0.07304,0.06080863,-0.038369942,-0.039588723,-0.036454707,0.013613385,-0.0343436,-0.00011910692,-0.057674613,-0.0032727623,0.011883147,0.05223361,-0.015724493,-0.0025423078,0.029947272,0.07003657,0.07321411,0.0028429232,-0.08792658,-0.0063496483,0.038935807,-0.07682694,0.014853933,0.06516143,0.019750835,0.004956752,-0.030817831,-0.04548677,-0.017683255,0.03319011,0.029359642,-0.019522313,0.039109915,0.032363076,0.0026484074,-0.016388295,-0.06407323,-0.036977045,0.064900264,-0.008939565,0.025398593,-0.03223249,-0.010337902,0.025311537,-0.07743633,-0.043593302,0.032841884,-0.009723069,0.009587044,-0.0066597853,0.0028184387,-0.01586596,0.03793466,-0.0013072005,-0.022786913,0.0015316418,0.040894564,-0.017247973,0.059546318,-0.024158046,0.018542932,-0.002423966,-0.029925507,0.020936973,-0.016159773,-0.013646031,0.014135721,-0.016660346,-0.034474183,0.028206151,-0.039131682,-0.021056674,0.0054246783,-0.022079583,-0.052320667,-0.057456974,-0.001309921,-0.0068828664,0.005419237,0.008819863,-0.035845317,0.031949557,-0.0038522289,-0.025986223,-0.020795507,0.029751394,0.0074432897,-0.0073725567,0.026856782,-0.0050791744,0.02885907,0.016366532,0.036345888,-0.06037335,0.032145437,0.05815342,-0.0068665436,0.03532298,-0.018270882,0.0018567416,0.018499404,0.008754571,-0.011763445,0.028119095,0.00440177,-0.023418069,-0.060025126,-0.0046330127,-0.02330925,-0.017530905,0.023657473,0.019206734,0.014146604,0.018836746,0.044246223,0.01053922,0.02505037,0.04679261,0.022068702,-0.012699297,-0.016758284,-0.028119095,-0.0018404187,-0.040807508,-0.04983957,0.041830417,0.0076609296,0.012590477,-0.009353081,-0.04150396,-0.032841884,0.06886131,-0.012590477,-0.00989174,-0.031601336,-0.010343343,-0.053234756,0.022090465,0.03266777,-0.061635662,-0.007546669,-0.011883147,-0.029424934,-0.025616234,-0.022068702,0.009309554,0.019272026,-0.012960465,-0.013373981,0.0017111949,0.015136865,0.031340167,0.010675244,0.000739296,-0.011774327,-0.012438129,-0.013395745,-0.02831497,-0.015789786,-0.02352689,-0.028184386,-0.016932396,-0.004309273,-0.061374493,-0.016769165,0.050884243,0.036650583,-0.020327581,0.03292894,0.051319525,0.059546318,-0.037847605,-0.033886556,0.049360763,-0.0030578426,-0.03092665,0.0020784624,0.00576202,-0.014179249,-0.029207295,0.021024028,0.0033081288,-0.013091049,0.025529178,0.024049226,-0.027466174,-0.0155503815,-0.029163767,-0.02592093,0.013602503,-0.0017193564,0.014396889,0.0033217312,0.0013024397,-0.03408243,0.013700441,0.0029626251,-0.04072045,-0.045834996,0.020403754,-0.027574994,0.004058987,0.0039447257,-0.048838425,-0.0052206405,-0.0026987365,0.002266177,-0.027705578,0.049012538,-0.022416925,-0.033342455,0.06768606,0.03364715,0.0045350743,0.029881978,0.013820143,-0.036694113,-0.016018307,0.0058653993,0.0039229617,0.0007352153,0.020469047,0.0018036918,-0.026203861,0.036432944,-0.022830442,-0.0006420381,-0.001152132,-0.021938117,-0.013787497,-0.0215246,0.03961049,0.026987366,0.026617378,0.010604511,-0.02777087,0.035997663,0.010174672,0.0138419075,-0.06581435,-0.00956528,-0.06899189,-0.041416902,-0.034038905,0.010169231,-0.033886556,0.037325267,0.027292062,-0.00047438729,0.032580715,0.039784603,-0.012264017,0.022917498,-0.029794922,-0.03027373,0.036802933,-0.01728062,-0.039915185,0.020196997,0.00576202,-0.009048385,-0.0026878547,-0.032341313,0.021916352,-0.00008510066,-0.0428098,-0.010789505,0.027205005,-0.02287397,0.004755435,0.02787969,-0.015735375,-0.0060014245,-0.07813278,-0.055237044,-0.016323004,-0.051754802,0.009804685,0.014298951,0.0057892255,0.00053933926,-0.03060019,0.0071168295,-0.009788361,-0.0060939216,0.008330173,0.009135441,0.032319546,0.0045731617,0.019816127,-0.039588723,-0.010114822,0.02049081,0.014821287,-0.024092754,0.013330453,-0.01537627,0.012318427,0.032210726,-0.041699834,-0.0048098452,-0.008711043,0.039371084,0.014298951,-0.02875025,-0.005519896,0.016692992,0.021666067,-0.04439857,-0.013254279,0.038500525,0.07586932,0.0072909417,0.025268009,-0.00771534,0.032450132,0.0142445415,-0.0073290286,0.029120238,0.011094201,0.029446699,-0.036389418,0.015942134,-0.008716484,-0.008983093,0.000233623,-0.0076500475,-0.032754827,0.034321837,0.011915793,-0.04570441,0.017846484,0.020022884,-0.04640086,-0.022199284,0.033734206,-0.048403148,-0.0015751699,-0.0064693503,0.0006216344,0.024876257,-0.038326412,0.030230204,-0.0150280455,0.012013731,-0.054975875,-0.06716372,-0.010838474,0.05140658,0.049621932,0.02951199,0.00069474784,0.019663779,-0.07012362,-0.024810966,0.025202718,-0.0370641,0.026443265,0.036802933,0.008351937,-0.028032038,-0.004113397,-0.03075254,0.04918665,-0.06494379,-0.013384863,0.01749826,-0.013515447,0.008509726,0.0060177473,0.027814398,0.018009715,0.01428807,-0.005751138,0.040611632,-0.005258728,-0.0024606928,0.022482216,-0.02016435,0.026835019,0.0094999885,-0.048054922,-0.007911216,0.039632253,0.030883122,-0.054627653,0.008460757,0.020773742,0.013221633,0.022373397,-0.035801787,-0.038718164,-0.015180393,-0.061592136,-0.010419518,0.0054328395,0.041939236,-0.0017615241,-0.051145412,-0.031688392,-0.050536018,0.08444434,0.039284028,-0.034104194,0.028402027,-0.052843004,-0.06694608,-0.0056695235,-0.012427247,-0.009091913,0.026595615,-0.041569248,-0.033385985,-0.00934764,0.008215912,0.004956752,0.023722766,0.0046275714,-0.069253065,0.023918642,0.0044806646,-0.031884268,-0.0040508253,-0.002527345,-0.018249119,0.019337319,-0.0204364,-0.004766317,0.0064802323,0.02320043,0.017247973,0.017073862,-0.020033766,0.057848725,-0.0075031407,-0.029860215,-0.025877401,0.016094482,0.0031693832,-0.019163206,0.0074487305,-0.018183826,-0.029272586,-0.061940357,0.013178105,-0.016758284,-0.012536067,-0.0030306377,0.016235948,-0.012383719,-0.034387127,0.013776615,-0.04640086,0.038391706,-0.016050953,-0.04596558,-0.021883707,0.009162646,-0.014930108,0.011545804,-0.039262265,-0.0063224435,-0.031536043,0.0043011117,-0.005318579,0.019413492,0.038761694,-0.03495299,0.005511734,-0.003022476,0.030839594,0.044877376,0.0068066926,0.014320715,-0.017737664,0.023287484,0.027422646,-0.0028837307,0.0024307673,0.029599046,-0.025268009,0.0064965556,0.0059252502,-0.00891236,-0.0030088737,-0.0046275714,-0.014375125,-0.0043119933,0.017977068,0.08087504,-0.017269738,0.02228634,-0.03945814,0.025572706,-0.034517713,-0.00630612,0.00391208,-0.032994233,-0.017541789,0.0045133107,-0.0070352145,0.02330925,-0.0016731079,-0.0064367047,0.029250823,0.02374453,0.029316114,0.020664923,0.017345913,-0.025637997,0.05771814,-0.02010994,0.03151428,0.01641006,0.0025844756,-0.0006369372,0.017574433,-0.02163342,-0.02857614,-0.0015166791,0.011061556,0.035736497,0.025529178,0.0018676237,-0.03854405,-0.013178105,0.0015153189,-0.0030904887,-0.009897181,-0.027074423,-0.013711323,0.0023709163,0.020632276,0.022395162,0.031818975,0.009363963,0.0036563529,-0.009897181,0.009908063,0.020033766,-0.036041193,0.0067033134,-0.010343343,-0.036868226,0.001979164,0.03125311,0.020882562,0.012198725,0.025877401,-0.007323588,0.009625131,-0.028554374,0.0011670948,-0.036541764,0.0051553487,-0.015419797,0.031993087,-0.0038767133,0.027966747,0.022416925,-0.020882562,0.02059963,-0.044420335,0.0103542255,-0.020501692,-0.0068393387,-0.039327558,-0.010838474,-0.017813837,-0.005468206,0.029881978,-0.034865934,-0.011600215,0.021622539,-0.02483273,0.021448426,-0.005783784,0.014984517,-0.037738785,0.029229058,-0.008156061,0.017890012,-0.046183217,-0.028946126,-0.042091586,-0.006931836,0.009581603,-0.004956752,0.004450739,-0.017563552,-0.00041861704,-0.029250823,0.013754851,-0.030360786,0.009070149,0.022144875,-0.026726197,0.0037461293,-0.037238214,0.0016159774,0.019141443,-0.05118894,-0.03384303,0.03662882,-0.00052097585,0.020273171,-0.036324125,0.01798795,0.03647647,-0.02711795,0.0017098347,0.05184186,-0.00206486,-0.0051553487,0.010131144,-0.043288607,0.00412972,-0.0032265137,-0.02190547,-0.012035495,0.027400883,-0.028532611,-0.016595054,0.004875137,0.052190084,-0.0076718116,0.0036318684,-0.002304264,0.0090266215,-0.04674908,-0.0215246,-0.023396306,-0.02201429,-0.013526329,-0.0060395114,0.030534899,0.0015547661,-0.013069285,-0.038718164,0.016377414,-0.017139154,-0.030687246,0.016660346,0.012601359,0.00891236,0.0060721575,0.008819863,-0.009848212,0.0031748242,0.03408243,-0.036062956,0.03075254,-0.04505149,0.012644887,0.012677533,-0.009298671,0.011709034,0.000041232586,0.010076734,0.03564944,0.033233635,0.011349929,0.022046937,-0.023918642,0.002249854,0.0010439921,-0.041329846,0.004494267,0.0020022884,-0.011676389,-0.027292062,-0.040611632,0.012242253,-0.022895733,-0.037956424,-0.012873409,0.034909464,0.04315802,-0.028119095,-0.022057818,-0.03027373,-0.033277165,0.00084743596,0.0044044903,0.0021736799,-0.01587684,-0.013939845,0.0040127384,0.0010609953,-0.004875137,0.07338823,-0.02972963,-0.056673467,-0.00003989359,-0.017922658,0.0049159448,-0.028793778,0.019881418,0.0071603577,-0.012013731,0.041721597,-0.009636013,-0.040241644,-0.0337995,-0.026704434,-0.04439857,-0.033059523,-0.019772599,0.027205005,-0.005057411,-0.044485625,0.018978212,-0.02446274,-0.06694608,-0.018401466,0.044877376,-0.037194684,-0.013101931,-0.0067958105,0.00025453683,-0.019108796,0.0466185,-0.022591038,-0.020512575,0.017073862,0.014603647,-0.047793753,0.0226128,0.00063387665,0.03238484,-0.021339606,0.0046819816,-0.0016499836,-0.019870536,-0.0021165495,0.02157901,0.019598486,-0.02054522,0.029990798,0.02592093,-0.0117307985,0.031100763,-0.0067359596,0.0055334982,0.050013684,-0.002026773,-0.0029054948,0.017324148,0.027596759,0.034931228,-0.005419237,-0.019794362,-0.0332554,-0.009793802,0.0033271722,-0.009091913,-0.016997688,0.023657473,-0.0064802323,0.0102834925,0.023722766,-0.016453588,0.0066162576,0.015495972,-0.004325596,-0.02157901,0.026116805,0.004118838,0.023439834,-0.044006817,0.01804236,-0.010854797,-0.022025174,-0.0509713,0.016660346,0.029969035,-0.028293207,0.01646447,-0.007965626,0.004287509,-0.00003759817,-0.0151477475,-0.02113285,0.03129664,0.018934684,0.035018284,0.05036191,-0.019903183,-0.0043337573,0.026160333,0.017868249,0.0067033134,-0.01853205,-0.00019842651,-0.028184386,0.029925507,0.024789201,0.03277659,-0.014984517,-0.016507998,-0.0054246783,0.004842491,0.040851038,0.025028605,-0.018477641,0.012209606,-0.0033434953,0.0027300224,-0.010098498,-0.056412302,0.007677253,0.041721597,-0.012590477,0.018825864,-0.017215328,0.023853349,-0.02857614,-0.033168342,0.011219344,-0.019435257,0.01206814,-0.013352217,-0.04291862,0.011132289,-0.017617961,-0.0148865795,0.004156925,-0.0027585877,0.0005420598,0.016453588,-0.008237676,-0.004352801,-0.008569577,0.058022838,0.013896317,-0.044920906,-0.015071574,-0.0064258226,-0.011164934,-0.0015071573,-0.026660906,-0.020664923,0.013417509,-0.0057456973,0.035910606,0.0068828664,-0.03945814,0.018891156,-0.008906919,0.0098808585,0.027139714,0.011665506,0.0069644814,0.015691847,-0.0068012513,0.033103053,-0.02363571,-0.030143147,0.04853373,-0.02515919,0.050840717,-0.0064094993,-0.03819583,0.028793778,-0.016986806,-0.026399737,0.01646447,0.033712443,0.029642574,-0.011959321,-0.007345352,-0.010577306,0.021448426,0.0066271396,0.017160919,0.017541789,-0.010969059,0.031122526,-0.0130366385,0.011164934,0.0059905425,0.0072147674,-0.00288101,0.02287397,0.023831585,0.017487379,0.0032836443,0.034147725,0.019522313,0.050666604,0.011567568,0.01521304,-0.013384863,-0.0106153935,0.030687246,0.00451059,0.018466758,0.04200453,-0.041569248,0.010952735,-0.011491395,-0.0065400833,0.022101346,-0.014592765,0.00050805346,0.020012002,-0.023396306,-0.0019492387,0.0031748242,-0.020425519,0.0011555327,-0.0025246246,0.0009657777,-0.0040753097,-0.019924946,0.0027014571,-0.028293207,0.0015098779,-0.014984517,-0.012449011,0.045399714,-0.0026048794,0.030469608,-0.022460453,0.00024229458,0.0082213525,0.017247973,0.010370548,0.036062956,-0.0050465288,-0.010234524,-0.011241108,0.0060939216,0.00842267,-0.007193004,-0.016061835,0.037673492,-0.013134577,-0.013014875,0.026073277,-0.018945565,-0.012100787,0.011632861,0.013896317,0.0101420265,0.017900893,-0.018847628,0.029925507,0.0018730647,-0.044964433,-0.0113064,-0.0066325804,0.019544076,0.017215328,0.025202718,0.0070352145,-0.03266777,-0.022525745,-0.0097611565,0.03251542,0.0066924314,-0.039327558,0.009940709,-0.0022144874,0.0032564392,0.021383135,-0.027509702,0.028402027,0.022416925,-0.009423814,-0.012198725,0.034278307,-0.0030279171,0.013896317,0.019946711,-0.011665506,-0.023135137,-0.012906055,0.002625283,-0.011926674,-0.019696424,0.0072147674,0.044050347,0.0032101907,0.018183826,-0.006175536,-0.0052233613,-0.023831585,0.03967578,0.005582467,0.0077806315,0.011317283,-0.002433488,-0.047793753,-0.02515919,-0.011719917,-0.016420942,0.0012759148,0.041873947,-0.033864792,-0.0008562776,0.030948415,0.035344742,0.011578451,-0.010593629,-0.023940405,-0.013852789,0.024266865,0.019195853,-0.07108124,-0.021470191,0.026007986,0.005985101,0.009086472,0.016725637,-0.023178665,-0.0008243117,-0.014211895,0.019184971,0.028293207,-0.010087616,0.050884243,0.010985382,-0.030774303,-0.000016726828,-0.00039379246,-0.045617353,0.001233747,-0.008819863,0.021589892,-0.011817855,-0.0063986173,0.0051118205,0.0066706673,0.007949303,-0.0062299464,0.05184186,-0.0013745329,-0.014451299,0.0053349016,-0.048229035,0.045878522,0.022503981,0.008237676,0.014853933,0.007203886,-0.033625387,-0.027270298,-0.0074596126,-0.05419237,0.008515167,-0.01168727,0.027052658,-0.030643718,-0.003808701,-0.020360226,0.011719917,0.009663219,-0.043353897,0.0067141955,0.0090973545,-0.013787497,0.019261144,0.046226747,0.015768021,-0.008602223,-0.015136865,0.024898022,0.0025518297,0.02298279,0.019435257,-0.0010528337,0.0061700954,-0.03212367,0.0003499244,0.02875025,0.0068230154,0.020980502,0.0032673213,-0.015572146,-0.021100203,0.012525185,-0.02690031,0.022503981,-0.010658922,0.01733503,0.048620787,-0.051711276,-0.0053865914,-0.008107092,-0.0063550896,0.0060612755,0.0064584683,-0.02864143,0.007845923,0.022765148,0.02407099,-0.0142445415,0.0096741,-0.024636853,-0.009505429,0.02966434,0.004320155,-0.01092009,-0.028140858,-0.019217616,-0.0076446068,0.00081274955,0.0025504692,0.0055688648,-0.0022294503,-0.015909487,-0.0018376982,-0.014712467,0.018118534,0.013243397,0.020403754,-0.0011936197,0.020044649,0.02320043,0.0044316957,-0.025986223,-0.0033570977,0.020447282,0.049099594,0.009282348,0.019739952,0.017683255,0.02885907,0.017628845,0.005321299,-0.0047472734,0.023331013,-0.0057565793,0.008379142,-0.021807533,0.0013412068,-0.024484506,0.022678094,-0.016997688,-0.017237091,-0.0096904235,0.018999977,-0.011121406,-0.019315554,0.0016717477,0.019141443,-0.015158629,0.0103542255,0.019413492,-0.03009962,-0.021361372,0.036324125,-0.02254751,0.0066380217,0.04827256,0.02777087,0.023505125,0.026769726,-0.014897461,-0.0004560239,-0.011186698,0.020741096,-0.018281763,-0.015485089,-0.0026647304,0.033821262,-0.00027085983,0.024484506,-0.036868226,-0.0008297527,-0.0043228753,-0.0067141955,0.0068937484,-0.015365387,0.026443265,-0.053887676,-0.025637997,0.017726783,-0.018401466,0.027292062,-0.0066380217,-0.059241623,0.012655769,0.058849867,-0.0014568281,-0.032406602,0.038326412,0.018216472,0.021764005,-0.027531466,-0.00249878,0.02222105,0.03641118,0.007813278,-0.009973356,-0.009222497,-0.018575579,-0.019032622,-0.027139714,-0.013613385,0.037368797,-0.038718164,-0.011894029,0.0033162902,0.032341313,0.013439273,0.04722789,-0.025420358,-0.020022884,0.018662633,0.018336175,-0.0007590197,-0.02581211,-0.0034305514,0.02515919,-0.024484506,0.028989654,0.01152404,-0.0058164303,0.0011895389,-0.007786073,-0.02690031,-0.005016603,-0.011752563,-0.0052723303,-0.023222193,0.04422446,0.0032074703,0.020099059,0.014516591,-0.00089640496,0.0037352473,0.0065999343,-0.020012002,-0.018172944,0.004853373,0.00019655617,-0.01978348,0.008286645,0.015387151,-0.06015571,0.0036862784,-0.010294374,-0.008988534,0.011621979,0.0070243324,0.012993111,0.012753706,-0.010408635,-0.016780049,-0.010990823,-0.009630572,-0.02570329,-0.020915208,0.001065076,-0.019870536,0.0122531345,-0.0069644814,-0.0004590845,0.0054845293,0.033886556,0.019272026,0.00062197447,-0.011883147,0.009625131,0.0053349016,-0.013689559,-0.0024974195,-0.0034251104,0.020196997,0.0011895389,0.009630572,0.025768582,-0.004374565,-0.005128144,0.004717348,0.02363571,-0.0074269664,0.0012725141,0.00831385,0.0061973003,0.036541764,0.009717628,-0.00023617347,-0.014146604,-0.018771455,0.016007425,0.014712467,0.009249702,0.014538355,0.024767438,0.011154053,-0.005147187,-0.018129416,-0.02195988,0.021948999,0.005321299,-0.02635621,0.025137426,0.014396889,0.008079886,-0.010136586,-0.02809733,-0.0065292013,-0.013972491,0.023918642,-0.023766294,0.016867103,-0.0023709163,0.018020596,-0.0004070549,0.0013507286,0.009723069,0.0010739176,-0.0033271722,-0.03652,-0.010261728,-0.012481657,0.027944982,-0.0048778574,-0.024810966,0.0048724166,0.0071766805,0.013014875,-0.0024212454,-0.01587684,-0.0024552518,-0.03086136,0.018238235,0.027030895,-0.00027170999,0.04135161,-0.009478224,0.0011528122,-0.02130696,0.002804836,-0.020947855,-0.015093338,0.043332133,-0.041699834,-0.017237091,-0.028293207,-0.028772015,0.001868984,-0.018238235,0.009962473,0.015822431,0.004170527,-0.021165494,-0.025725054,-0.028924363,-0.028032038,0.027487937,0.0061102444,-0.02363571,-0.022591038,-0.013787497,-0.031100763,-0.012731943,-0.005914368,0.0010664363,-0.018183826,-0.01695416,0.02505037,-0.012166079,0.0072909417,0.015310978,0.008662074,-0.011948438,-0.0029082152,-0.016431823,0.010522896,-0.0021818415,-0.011600215,0.012166079,-0.0050465288,0.0067033134,-0.0044262544,-0.010963618,0.0009848212,0.020022884,0.010114822,-0.0068012513,0.026269155,0.04287509,-0.008460757,0.044311512,-0.020425519,0.02711795,-0.0022484937,0.061069798,0.044529155,0.010071293,0.023091609,-0.013080167,-0.026007986,0.013613385,-0.009918945,-0.02201429,0.027161479,-0.0017220769,-0.026203861,-0.0034278308,-0.020577867,-0.0215246,-0.017422086,0.0067958105,0.036955282,-0.0038875954,-0.0075140228,-0.012361955,-0.020447282,0.03625883,0.025529178,0.0553241,-0.023004552,-0.0376082,0.0061918595,0.03826112,0.008253999,0.026508559,0.020741096,-0.0056858463,0.031013707,-0.009418373,-0.000950815,0.010006001,0.042352755,0.02809733,-0.010071293,0.020479929,0.0020186114,-0.04827256,-0.004298391,0.010169231,-0.020686686,-0.008166943,-0.033081286,-0.024549797,-0.0033462157,-0.024658617,-0.040089298,-0.012721061,0.036650583,-0.051928915,0.0025871962,0.029860215,-0.022808677,-0.0057783434,-0.030208439,-0.026530322]},{"id":"guide-embed-media-1","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Image with Full Media Options\nPass an object to setImage or setThumbnail with url, width, height, content_type, description, placeholder, duration, and flags. Use EmbedMediaFlags.IS_ANIMATED for animated GIFs.\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Image with metadata')\n .setDescription('EmbedMediaOptions: width, height')\n .setImage({\n url: 'https://placehold.co/400x200/5865f2/white?text=Image',\n width: 400,\n height: 200,\n content_type: 'image/png',\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.015994161,0.009149015,-0.04545709,-0.010018503,-0.006518396,-0.046874855,0.016426137,-0.03985249,0.003453033,-0.016271068,0.010561242,0.0021557228,0.025054567,-0.110851504,-0.05870433,-0.005067402,-0.0064574764,-0.0027981475,0.044726055,0.055558667,0.007288198,0.024035547,-0.04913442,0.040450606,0.00020664201,-0.00949238,-0.019095521,0.003339501,0.043064613,0.0130035635,-0.0127931135,-0.00781986,0.025165329,-0.04286524,-0.01555111,0.00077326345,0.034934614,-0.025696991,-0.04483682,0.01417765,0.03754862,-0.014676083,0.043153223,0.02074589,0.013801056,0.044548836,-0.0143991755,-0.004524664,0.008445671,0.042754475,-0.022130426,0.044172242,-0.0048375693,0.010799382,-0.037127722,0.009863435,-0.023082986,-0.009198858,-0.024633667,0.026450178,0.022706393,-0.02972876,-0.0016572898,-0.016160306,-0.022817155,0.015318507,-0.04399502,0.04545709,-0.034580175,-0.0066956165,0.040206928,-0.021654146,-0.028643284,-0.018574936,0.009824668,0.007055596,-0.0032010474,0.011009831,0.0058316663,-0.04545709,-0.018796463,-0.014111192,-0.06659065,0.018408792,-0.078420125,0.044903275,-0.047184993,-0.05396368,-0.035953633,0.019893015,-0.053520627,-0.0073435795,-0.054938395,0.01778852,-0.022108274,0.031035762,-0.030260421,-0.0062359506,0.03555489,0.05476117,0.06557163,-0.0023440197,-0.09738273,0.010965526,0.039077148,-0.0747871,0.021022797,0.07784416,0.014199803,0.01495299,-0.046786245,-0.040450606,-0.023171596,0.00895518,0.027269823,-0.022540249,0.033007342,0.047495127,0.016403984,-0.018840767,-0.072483234,-0.022307646,0.076249175,-0.042222813,0.039210062,-0.01782175,-0.028687589,0.020889882,-0.060565148,-0.035953633,-0.007238355,0.0022401796,0.007011291,-0.041292407,-0.014831151,-0.019782253,0.010832611,-0.0100572705,-0.03486816,0.025032414,0.051349677,-0.011652256,0.035776414,-0.025696991,0.014133344,0.0003558258,-0.03187756,0.008174301,-0.051438287,0.0012675428,-0.0008251835,0.0010937835,-0.032918733,0.0058427425,-0.0429317,-0.037238482,0.012062078,-0.038213197,-0.037149873,-0.03382699,0.0016185227,-0.036463145,0.0089441035,0.008600739,-0.0096696,0.032519985,0.013324776,-0.0034641095,-0.022196883,0.02277285,0.04160254,-0.03573211,0.011707637,0.014509939,0.0026140043,0.027469197,0.06260318,-0.059767656,0.015517881,0.033383936,0.0022706392,0.036817584,-0.028798351,0.008545357,0.012815267,0.023437427,0.03006105,0.026583094,0.02328236,-0.022307646,-0.053653546,-0.014465634,0.01988194,-0.026760314,-0.01946104,-0.01035633,0.00889426,-0.024589362,0.058527112,0.0095643755,0.050552182,0.02647233,0.029174946,-0.006900528,-0.046254583,-0.013291547,0.0072217407,-0.04098227,-0.03757077,0.030105354,0.020989567,-0.03154527,-0.0040040785,-0.048514146,-0.019826557,0.028909115,-0.017090714,-0.019593956,-0.02999459,-0.008899799,-0.06503997,0.028909115,0.022230113,-0.049621776,-0.017478384,-0.01766668,-0.036485296,-0.009232087,-0.028222384,0.001219084,0.01164118,-0.013501996,-0.014543167,0.0048126476,0.010993217,-0.0053830766,0.011419654,-0.010666466,0.0026790774,-0.0006763459,0.01898476,0.0028286073,-0.01635968,-0.002122494,-0.034137122,-0.0018331258,0.0054024598,-0.06171708,-0.026516637,0.0077201733,0.018054351,-0.019073369,0.016426137,0.04002971,0.052457307,-0.042998154,-0.01981548,0.0541409,-0.00480434,-0.014587473,-0.0010037887,0.0038240887,-0.0048846435,-0.03668467,0.021388315,0.020391447,-0.030216116,0.008008157,0.033295326,-0.009143476,0.0016642124,-0.017522689,-0.014997295,0.012737732,-0.0019355816,0.034735244,-0.007360194,-0.0030930538,-0.026405873,-0.0011200898,-0.015218821,-0.03763723,-0.049798995,0.017123943,-0.041292407,0.005023097,-0.0007254969,-0.032963037,-0.004172992,-0.0012509284,0.007886318,-0.019593956,0.043529816,-0.017456232,-0.050818015,0.061628472,-0.016847035,0.006861761,0.023658954,-0.028510367,-0.015407118,-0.009531147,0.014687159,0.0030321341,0.010306487,0.026450178,0.0054966086,-0.0433969,0.022972224,-0.016104924,0.0017625145,-0.02032499,-0.005715365,0.005507685,-0.01898476,0.033383936,0.036241617,0.015972009,-0.00094633043,0.0037327094,0.043529816,0.017522689,0.009060404,-0.046431802,-0.021233246,-0.041890524,-0.0305041,-0.00996866,0.001131166,-0.027557807,0.009514532,0.044238698,-0.0065793158,0.03650745,0.038944233,-0.0001311848,0.0129481815,-0.057375178,-0.055292834,0.028621132,-0.003256429,-0.022307646,-0.005947967,-0.0013443846,-0.013302623,-0.031235136,-0.04406148,0.03686189,0.010350792,-0.05781823,0.011630104,0.0123279095,-0.027247671,0.04594445,0.03360546,-0.01632645,-0.005826128,-0.054273818,-0.034668785,0.0084788995,-0.052014254,0.009686215,0.009952046,0.006274718,-0.0060753445,-0.00063307915,-0.00036378688,0.0009504841,0.008966256,0.029662302,0.0078032454,0.042134203,-0.01988194,-0.009985275,-0.018552784,0.012372215,0.03411497,0.033383936,-0.041403167,-0.013557378,-0.0052944664,0.01349092,0.03967527,-0.018198343,0.0030875155,-0.0062193363,0.068008415,0.025564075,-0.014332718,-0.00459666,0.022196883,0.026051432,-0.05232439,-0.0012530052,0.018010046,0.08719255,-0.0072937366,-0.0049372558,-0.010738462,0.015540034,-0.018198343,-0.018242648,0.0057264413,0.018696776,0.015130211,-0.05697643,0.018486327,-0.0014800691,-0.015794788,-0.0030570559,0.017467307,-0.006014425,0.023526037,-0.0095366845,-0.014698235,0.034491565,-0.007869704,-0.0399411,0.00865612,0.015373889,-0.048425537,-0.01110398,-0.004981561,-0.013845362,-0.0073325033,0.008002619,0.0262065,0.0011837784,0.027469197,-0.050818015,-0.047406517,0.034004208,0.0219089,0.029086335,0.03531121,0.013169708,0.00084872067,-0.049710386,-0.0074432665,0.018918302,-0.05626755,0.032254152,0.01972687,0.0038600867,-0.03963096,-0.014321642,-0.029883828,0.027535655,-0.07199588,-0.031988323,0.0047295755,0.014288413,-0.013391233,0.023481732,0.04193483,0.040251233,0.0053138495,-0.024279226,-0.0035527197,-0.040428456,0.014886533,0.031811103,0.0028909114,0.03976388,0.0058427425,-0.03865625,-0.036042243,0.020557592,0.01202885,-0.041536085,-0.0065627014,0.017245783,0.021587687,0.0006500397,-0.01662551,-0.04784957,0.009304083,-0.07554029,-0.020524364,-0.0038545486,0.02698184,-0.0056101405,-0.00820753,-0.024700124,-0.04665333,0.090559736,0.0481154,-0.020336067,0.047362212,-0.09596497,-0.06667926,-0.005704289,0.006679002,-0.009741596,-0.015451423,-0.016104924,-0.04149178,-0.020136693,0.0009553299,0.007171897,0.055292834,0.000521624,-0.07939484,0.02143262,-0.009420384,-0.019084446,-0.006928219,-0.00010963796,0.00019452733,0.020092389,-0.03661821,-0.010926759,-0.009569914,0.031035762,0.008423517,-0.0054689175,-0.011452883,0.071287,0.0051837033,-0.018165113,-0.044659596,0.022285493,0.01071631,-0.026095737,-0.0007864165,-0.00895518,-0.0042228354,-0.051837035,0.02955154,-0.0067177694,-0.02101172,-0.01190701,-0.011497188,-0.006922681,-0.038168892,-0.001012096,-0.012970335,0.037149873,0.0125383595,-0.061052505,-0.016226763,-0.003220431,-0.00033194255,0.016891342,-0.032918733,-0.025564075,-0.028842656,-0.005859357,0.003333963,0.004987099,0.034513716,-0.051925644,0.030349033,0.0006974601,0.01194024,0.040849354,-0.000728266,0.016437214,0.0028438373,0.0029601383,0.02381402,-0.015628643,-0.01119259,0.014188726,-0.014808998,0.010228953,0.035355516,0.0047821878,0.024367835,-0.005826128,-0.032763664,-0.0075817197,0.030326879,0.0695591,-0.012250376,0.023415275,-0.0005908508,0.00883334,-0.046165973,0.0005690444,0.003411497,-0.023614649,-0.032054782,-0.011225819,0.00093110057,0.035709955,0.00444713,0.018021122,0.015994161,0.026228653,0.018165113,0.023415275,0.018608166,-0.01972687,0.042045593,-0.008805649,0.04459314,-0.0027233826,-0.0069503714,0.0015742176,0.024677971,-0.016437214,-0.043330442,0.007786631,0.0053969217,0.024367835,0.0080136955,-0.011873782,-0.050419267,-0.015706178,-0.011563646,-0.0015631412,0.0037631693,-0.03274151,-0.024035547,-0.0006548856,-0.0014385331,-0.0028909114,0.0257856,-0.006047654,0.005870433,0.001187932,0.010971065,0.021643069,-0.04461529,0.015495729,0.0025890826,-0.019538574,0.0025807754,0.0317668,0.00468527,0.0034364187,0.0257856,-0.01370137,0.03333963,-0.022462714,-0.0063079465,-0.037903063,0.02629511,-0.017079638,0.024345683,0.0036579445,0.006047654,0.015008371,-0.0041868375,-0.0043474436,-0.029485082,0.008456747,-0.025276091,-0.00094563817,-0.04873567,-0.0053443094,-0.03127944,-0.0075208005,0.0040068477,-0.018076504,-0.012682351,0.026095737,-0.05205856,0.019693643,-0.0029712145,0.004964947,-0.031678185,0.010062808,-0.0015977547,0.019826557,-0.03659606,-0.039232217,-0.041004423,-0.036064398,-0.020612974,-0.025763448,-0.002913064,-0.023924785,0.011873782,-0.01692457,0.013214013,-0.026760314,0.011353197,0.037349246,-0.012837419,0.004048384,-0.04089366,-0.0010183264,0.010821534,-0.046298888,0.0012460825,0.05405229,0.0057541323,-0.001247467,-0.010350792,0.018275877,0.026760314,-0.02286146,0.00036482528,0.07323642,0.009724982,-0.015229898,0.0006375789,-0.03637453,-0.025896363,-0.0055353753,-0.037770145,-0.007288198,0.04279878,-0.016946722,-0.021576611,0.005031404,0.058128364,0.008462285,-0.013280471,-0.02432353,0.014720388,-0.04683055,-0.0055326065,-0.03566565,-0.0025226248,-0.011497188,0.008152149,0.04483682,0.005981196,-0.014509939,-0.053742155,0.01011819,-0.001704364,-0.025652686,0.021764908,0.00981913,0.009736058,0.0014482248,-0.00091171707,0.007614949,0.027602112,0.0028770661,-0.03453587,0.049001504,-0.03249783,0.007930623,0.023570344,-0.017378697,0.016027391,-0.005815052,0.019616108,0.036485296,0.023592496,0.0018095887,0.0014129191,-0.028510367,0.009508994,-0.00204496,-0.03333963,0.0048486455,-0.013801056,-0.0072549693,-0.02534255,-0.018718928,-0.0066180825,-0.026428025,-0.01593878,-0.007465419,0.028244536,0.042976003,-0.020136693,-0.0028576825,-0.029507235,-0.042200662,0.010683081,0.0038794703,-0.0026389258,-0.006911604,-0.022551324,-0.009176705,-0.00027708028,-0.04461529,0.046963464,-0.005136629,-0.05467256,-0.014609626,-0.01310325,0.0101846475,-0.032542136,0.0124829775,0.00015022217,0.0053775385,0.054318123,-0.0087890355,-0.043020308,-0.02913064,-0.020025931,-0.0369505,-0.03635238,-0.003533336,0.032519985,-0.03178895,-0.012161765,0.0075927963,-0.020579746,-0.08400258,-0.019582879,0.07115408,-0.049798995,-0.025630534,-0.008379213,0.0038047053,-0.021798138,0.04674194,-0.018730005,-0.027048297,0.023393122,0.013501996,-0.03881132,0.018918302,0.007853089,0.014100116,-0.032985188,0.00040255388,0.008318293,-0.007997081,-0.0032425837,-0.0024672435,-0.0035167218,-0.009891126,0.014354871,0.027269823,0.01683596,0.020701583,-0.02964015,0.018242648,0.039586656,-0.013513072,0.02277285,-0.0030792083,0.009392693,0.02946293,0.022628859,-0.0010307871,-0.022495942,0.005975658,-0.0028853733,0.00597012,-0.0129481815,0.010677543,-0.007127592,0.0030736702,0.014698235,-0.006701155,0.031080067,0.009464689,0.010151419,-0.019527497,0.019006912,-0.027912248,0.022152578,-0.03539982,-0.0015409887,-0.017799597,-0.011563646,-0.038789164,0.01585017,0.03566565,-0.027026145,0.009149015,0.0030930538,0.011297815,-0.015340661,-0.01220607,-0.016581206,0.014930838,0.011331044,0.027026145,0.04468175,-0.02187567,0.0016849805,-0.016392907,0.030747779,-0.0015783712,-0.0016988259,0.0055104536,-0.024124157,0.02080127,0.016503671,0.010228953,-0.0046160435,-0.028200231,0.004712961,-0.0068119178,0.025409007,0.023570344,-0.034846004,0.019195208,-0.018619241,-0.010766153,-0.0182648,-0.051526897,-0.0057541323,0.05002052,0.0013727676,0.022097196,-0.01880754,0.00943146,-0.033317477,-0.025586227,-0.014487786,-0.04691916,0.020158846,0.00865612,-0.01874108,-0.0019743484,-0.028886963,-0.03263075,-0.01925059,-0.015528957,-0.014665007,0.03746001,0.025364703,0.008146611,-0.0071774353,0.035842873,0.020302838,-0.03841257,-0.007542953,0.009315159,0.009337312,0.006773151,-0.019948397,-0.015495729,0.006252565,0.0085952,0.02388048,0.0026998455,-0.028333148,0.013369081,-0.019173056,0.019582879,0.028399605,-0.0121728415,-0.01808758,0.0030182889,-0.008102305,0.011375349,-0.0060365777,-0.018707853,0.027535655,-0.037127722,0.04873567,0.0019245052,-0.040251233,0.015684025,-0.048779976,-0.009780363,-0.0020878804,0.023127291,0.01071631,-0.030437643,-0.024611514,0.0044305157,0.025674839,-0.00063342525,0.011281201,0.0041231485,-0.02095634,0.039498046,-0.012560512,0.00008640371,0.0070334435,0.011585798,0.015263126,0.010151419,0.016049543,0.032852273,-0.014742541,0.02534255,0.02543116,0.055913106,-0.0056239855,0.0142441075,-0.0042726784,-0.0139339715,0.01984871,-0.011929164,0.0038711631,0.05892586,-0.050286353,0.00083556754,-0.03351685,0.014875456,0.036219466,-0.026073584,-0.026627399,0.013823208,-0.029485082,-0.0020463443,0.010046194,-0.007991542,-0.017799597,0.016248915,-0.0011768558,-0.006352252,-0.030349033,-0.0010155572,-0.02372541,-0.0030321341,0.0002208335,-0.0024395527,0.030769931,-0.014875456,0.015163439,-0.011630104,-0.0064796293,0.0060088867,0.018076504,-0.0048541836,0.037836604,-0.015717255,0.009808054,-0.023481732,-0.012438673,0.014509939,-0.002355096,-0.025320398,0.011884858,-0.02611789,-0.0064851674,0.010500322,-0.0061861076,-0.015152363,0.013413386,0.0077534025,0.017688833,0.014509939,-0.033627614,0.033118103,-0.0067620743,-0.034159277,0.009082557,0.012294681,-0.0011796248,0.02152123,0.006817456,-0.008379213,-0.027092604,-0.04169115,-0.006368866,0.03263075,-0.017423002,-0.01576156,0.014133344,-0.02199751,-0.0037382476,0.021255398,-0.029418623,0.017135018,-0.006861761,-0.003417035,-0.00605873,0.0021834134,-0.016271068,-0.0055215303,0.028754046,0.00067357684,-0.02483304,-0.008800112,0.002874297,-0.0013367697,-0.006518396,0.018098656,0.02062405,0.020646203,0.042754475,0.007304813,-0.0069836,-0.007692483,0.036485296,-0.0011997005,0.035067532,0.011419654,0.004100996,-0.052191474,-0.030659169,0.00051747035,-0.030349033,-0.001012096,0.027535655,-0.030991457,-0.005981196,0.04098227,0.041137338,0.022562401,-0.0011609335,-0.021809213,-0.011552569,0.027447045,0.004557893,-0.041159492,-0.032785814,0.03533336,0.014687159,0.013457691,0.030703474,-0.035621345,0.0048375693,0.0027995321,0.018131886,0.04184622,-0.026073584,0.049710386,0.0014004583,-0.025475465,0.0035970248,0.004256064,-0.03170034,0.01202885,-0.015983084,0.012992487,0.01865247,-0.001237083,0.008213068,0.01310325,0.020214228,0.0028078393,0.05826128,-0.0026167734,-0.014332718,-0.004981561,-0.039143607,0.04286524,0.01674735,-0.004707423,0.01722363,0.005518761,-0.025564075,-0.03462448,-0.0014219186,-0.059235994,0.017290087,-0.020192076,-0.00058635103,-0.019715795,-0.007864165,-0.027801486,0.0022831,-0.017932512,-0.017899282,-0.002533701,-0.012859572,0.025098871,0.026937535,0.039099302,0.015717255,0.0046132742,-0.018663548,0.021355085,0.010566779,0.031057915,0.009459151,0.009442536,0.021388315,-0.011081827,-0.04452668,0.019272743,-0.011452883,0.021288628,-0.013889667,-0.037925214,-0.016226763,0.01683596,-0.010516937,0.01164118,0.003934852,0.01981548,0.028310996,-0.020247456,0.0065405485,0.009824668,-0.012926029,-0.0059258146,0.015628643,-0.03041549,-0.0031290518,0.036573905,0.024013394,-0.006994677,0.0003689789,-0.02432353,-0.007127592,0.02964015,-0.007315889,-0.0023315588,-0.023393122,-0.021332933,0.0072937366,0.01916198,-0.018851845,0.015185593,-0.016703043,0.0062636416,-0.009320697,-0.005643369,0.005903662,0.011607951,0.013645988,0.010361868,0.014022582,0.00071718975,0.014465634,-0.012051002,0.00018223957,0.011486112,0.06286902,0.0028521444,0.00964191,0.027181214,0.035266906,0.020878805,-0.028244536,0.0059147384,0.03644099,-0.015506805,0.008002619,-0.0063356375,-0.006590392,-0.014875456,0.0257856,-0.032874428,-0.0126380455,0.009060404,0.03557704,-0.005975658,-0.020967415,-0.012571588,0.019117676,-0.03659606,0.02955154,0.013369081,-0.055647276,-0.0061805695,0.042599406,-0.02118894,-0.0069503714,0.043352596,0.04064998,0.020524364,0.01620461,-0.016304297,-0.0046243505,-0.016060619,0.017301163,-0.005053557,-0.009808054,-0.019017989,0.019660413,0.018231573,0.011829477,-0.046210278,-0.00919332,-0.009553299,0.008528743,0.019505344,-0.023592496,0.040096167,-0.041646846,-0.012937105,0.0033256558,-0.011951316,0.00055969873,0.0016448289,-0.05910308,-0.010140343,0.04468175,0.0005410075,-0.0063467138,0.05196995,0.016116,0.017533766,-0.025829906,-0.012571588,0.01680273,0.029662302,0.004012386,0.013036792,0.0016116,-0.044393767,0.00073172734,-0.025741296,-0.008069077,0.017544841,-0.03686189,0.011796248,0.012161765,0.028820504,-0.0031982784,0.046697635,-0.02749135,-0.020734813,0.015296355,0.0025517,-0.0044194395,-0.024589362,0.003181664,-0.0044277464,-0.011397501,0.013900743,0.0028798352,-0.005197549,-0.016725196,-0.03119083,-0.033007342,0.00016363486,-0.020114541,-0.008855493,-0.022673164,0.031412356,0.0050286353,0.0010564011,0.023437427,0.0007047289,0.0025046258,-0.0033893446,-0.010129266,-0.0057264413,0.0030349032,0.014011506,-0.019749023,0.007714635,0.03014966,-0.100572705,0.0010127882,0.02020315,-0.0021986433,0.008368136,0.009464689,-0.0019037372,0.019571804,-0.00042470646,-0.016171383,0.0021155712,0.0040096166,-0.0016877495,-0.014100116,-0.021288628,-0.010129266,0.010040656,0.0075983345,-0.0009234856,0.020635126,0.0356435,0.014698235,-0.009508994,0.0080136955,0.021764908,-0.0186857,0.0024547826,0.00033401934,-0.003951466,-0.0011007062,0.008561972,-0.009697291,0.009974198,-0.027314128,-0.004710192,0.016913494,0.0140890395,-0.007792169,-0.0034281116,-0.019516421,0.011087365,0.03101361,-0.011630104,-0.0032065858,0.015905552,-0.034513716,-0.008766883,-0.0017292856,0.005125553,0.005316619,0.041358862,0.030083202,-0.030083202,-0.029374318,-0.0039237756,0.022252265,-0.005031404,-0.011164899,0.026272958,0.016869187,0.0066346973,-0.008429056,-0.036064398,-0.00027984937,-0.0044692825,-0.0056212167,-0.022241188,0.008362598,-0.024389988,0.0038379342,-0.003959773,0.0078032454,0.023791868,0.007138668,-0.0042283735,-0.038789164,-0.01477577,-0.010876915,0.030969305,0.0082961405,-0.0035111837,0.0069836,-0.013446615,0.028510367,0.022396257,-0.030437643,-0.006784227,-0.02301653,0.013058945,0.0136238355,0.01715717,0.04182407,0.00243263,-0.008163225,-0.014100116,-0.010982141,0.009448075,-0.020225303,0.030127507,-0.04246649,-0.016381832,-0.028709741,-0.0026763084,0.011663333,-0.0026098506,0.0007587258,0.027912248,0.00028850272,-0.025054567,-0.019272743,-0.029950285,-0.037592925,0.0052363155,-0.0028909114,-0.011751942,-0.028842656,-0.009918817,-0.009868974,-0.009198858,-0.006047654,0.008561972,-0.02277285,-0.013202936,0.02638372,-0.0053609237,0.00432806,0.021554459,0.014609626,-0.0072605074,0.0142441075,-0.021587687,0.0010577856,0.011148285,0.0015631412,-0.0067953034,-0.013269395,-0.007891856,0.0055353753,-0.0042948313,0.0078586275,0.017888207,0.005095093,-0.0014233032,-0.0008348753,0.028333148,-0.010012966,0.031345896,-0.022008587,0.014609626,-0.007437728,0.036795434,0.029861676,0.010688619,0.016470442,-0.011984545,-0.03881132,0.028820504,-0.015540034,-0.034092817,0.031744644,-0.015628643,-0.029595844,-0.015008371,-0.017267935,-0.0025060105,-0.017079638,0.0036524064,0.050242048,0.0017611299,-0.012737732,-0.024013394,-0.008866569,0.022795003,0.03533336,0.039210062,-0.025564075,-0.025143176,-0.0034751857,0.046697635,0.000021892978,0.036906194,0.01877431,0.024965955,0.016592281,-0.028842656,0.0015202207,0.025852058,0.032165542,0.016869187,0.016536899,0.01829803,-0.021809213,-0.052634526,-0.011807324,-0.0010827073,-0.027513502,-0.007398961,-0.02492165,-0.032586444,-0.0262065,-0.010190186,-0.014133344,0.005167089,0.03573211,-0.058438502,0.009503456,0.02707045,-0.017810673,-0.011807324,-0.0262065,-0.025143176]},{"id":"guide-embed-media-2","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: GIFs in embeds\nEmbeds require GIF format for animated images (not MP4). Add EmbedMediaFlags.IS_ANIMATED to the flags field. For Tenor URLs, use resolveTenorToImageUrl() to get the GIF URL and flag — see the GIFs (Tenor) guide.","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.0420796,0.034301747,-0.046550706,-0.009530203,-0.006939525,-0.02782796,-0.015287912,-0.03176346,-0.0020143252,-0.018734388,0.019852163,-0.011835616,0.03318397,-0.06883636,-0.024893798,0.008948028,-0.014903678,-0.00978636,0.019991886,0.05155741,-0.0020245132,0.011305836,-0.041730296,0.061757114,-0.027804673,0.0306224,0.004383777,-0.0023592638,0.055702493,0.058683228,-0.012470187,-0.011393162,0.034068875,-0.033999015,-0.0061128363,0.025569122,0.023356857,-0.011503776,-0.019048763,0.027269073,0.04224261,0.003964611,-0.011300014,0.011899655,0.020085033,0.0071549295,0.015823513,-0.02170348,0.0129825,0.026570462,0.0025950447,-0.0053007025,-0.00788847,0.0023578084,-0.017069368,0.029201893,-0.025382826,-0.024195189,0.0015136547,-0.010094913,0.008994603,-0.029504623,-0.005356009,-0.0358154,0.022751395,0.021051444,-0.051371112,0.071444504,-0.013157153,-0.02096994,0.032299064,-0.019863807,0.02286783,-0.02306577,-0.03385929,0.021121304,0.0017188714,0.022623317,0.00094821735,-0.062362574,-0.010607227,0.0065552895,-0.079734676,0.010380179,-0.05928869,0.032904524,-0.041427564,-0.022565098,-0.024381485,-0.00007973067,-0.062222853,-0.0046952404,-0.09696705,0.010222991,-0.04890269,-0.033440124,-0.0059440057,0.0066891895,0.013390022,0.026454028,0.0576586,-0.016405689,-0.06785831,-0.0063165976,0.0004711978,-0.059894152,-0.0021016514,0.011823972,-0.040193357,-0.00040825014,-0.036537297,-0.041986454,-0.009559312,0.04634112,0.06273517,-0.022763038,-0.00050321745,0.02376438,-0.01627761,-0.010409287,-0.0807593,0.003685167,0.06883636,-0.016836498,0.025382826,0.00785354,0.00005994582,0.029551197,-0.008284349,-0.014076989,0.0051551587,-0.0051114955,0.025056807,-0.029318327,-0.024917085,-0.0052861483,-0.014065346,0.025452686,-0.038097527,0.041334417,0.012842778,0.002976369,0.019526146,0.03434832,-0.0017538018,0.006293311,-0.05952156,0.008383319,-0.0072830077,-0.014205067,-0.029993651,-0.00022486506,-0.017535107,-0.02705949,-0.06068591,-0.058962673,-0.018629597,-0.050253335,-0.0105199,-0.03672359,-0.0042382334,-0.019491216,0.030226521,0.035792112,-0.021656906,0.05146426,0.048110932,-0.020515844,-0.01770976,0.045852095,-0.011218511,-0.036816742,-0.02759509,0.0277581,0.0044361725,0.008849058,0.0003302023,-0.022192506,0.026128009,0.01488039,-0.0006021872,0.06865007,-0.05668055,-0.020492556,-0.01341331,0.04983417,0.015916662,0.041194696,0.0313443,-0.027641663,-0.022320585,-0.016813211,0.039704327,0.039029006,-0.039261874,-0.0017494356,0.02759509,-0.03122786,0.07749912,0.009716499,0.010386,0.020585705,0.02326371,0.009943548,-0.055236753,0.0039093043,0.0015034666,-0.025801992,-0.03697975,0.040659096,0.030342955,-0.016405689,-0.023508223,-0.03914544,-0.03357985,0.03192647,-0.011864725,-0.031903185,-0.012784561,0.02573213,-0.0555162,0.0093963025,-0.0037171866,0.012365395,-0.0051114955,0.021226097,-0.02533625,-0.0078011435,-0.02343836,0.038493402,0.0014758133,-0.029947076,-0.018769318,0.00006144674,-0.0010093458,0.021063088,-0.013075648,-0.014566015,0.022600029,0.010880848,-0.0115619935,0.031577166,0.01814057,-0.006077906,-0.052675184,0.0054637115,-0.0019197217,-0.048669823,0.026360879,0.034581188,0.008109696,0.002066721,0.032299064,0.015555713,0.029853929,-0.05635453,0.0019546521,0.036863316,-0.035629105,-0.009617529,0.035163365,-0.009640817,0.007935043,-0.040100206,-0.00732376,-0.0016315451,-0.018478232,-0.005341455,-0.0027711524,0.00007027033,0.025382826,-0.0025717577,-0.016731707,0.03718933,0.001200008,0.042661775,0.050905373,-0.002237007,-0.039820764,0.0039063934,-0.01797756,-0.0691158,-0.011806507,-0.0065320022,-0.045549363,-0.004869893,-0.010257922,-0.0008667129,0.00044827466,-0.0008012182,0.019386424,-0.0039063934,0.013331805,0.0065087155,-0.040868677,0.051836852,-0.030785408,0.02096994,0.0036706128,-0.016638558,-0.036933176,-0.045083623,-0.0033678818,0.0065552895,0.030459391,0.033672996,-0.030179946,0.00059964013,0.054677866,0.026756758,0.005376385,-0.01141645,-0.0054200483,0.043290526,-0.020178182,0.04687672,0.023589727,0.006613507,-0.0015020112,-0.023123987,0.0011061323,0.035722252,0.007673065,-0.030529251,-0.02136582,-0.023054127,-0.0028701222,0.012248959,0.022355516,-0.022099359,-0.0063631716,0.01461259,0.020515844,0.04210289,0.037701648,-0.027641663,-0.0066251503,-0.049554728,-0.03255522,0.005245396,-0.017581683,-0.022332229,0.021132948,-0.019747373,-0.025173243,0.015148191,-0.050020467,0.024171902,0.00087180693,-0.049135562,0.0071374644,0.025289677,-0.012889353,0.038074236,0.004217857,0.01371604,-0.0008659852,-0.051743705,-0.027338933,0.027315646,-0.05542305,0.028223839,-0.03751535,0.024265049,0.00782443,0.0030622398,-0.02952791,0.03621128,0.036304425,-0.0031029922,0.011142828,0.06348035,0.0015704167,0.021063088,-0.010979818,-0.008068944,0.03339355,-0.017081011,-0.017465247,-0.01957272,-0.028689578,-0.0037230086,0.04000706,-0.014833816,0.0064272108,-0.012377039,0.043756265,0.029877216,-0.028689578,0.043453533,0.0050270804,0.023962319,-0.041008398,-0.028782727,0.022495238,0.036863316,0.04806436,0.0062001627,0.00392677,-0.01747689,-0.030342955,-0.019235058,-0.038563266,0.0014605313,0.023554796,-0.03185661,0.042754926,0.019153554,-0.0038132456,-0.022809612,0.005699492,-0.02496366,0.0142982155,-0.034208596,0.0016068027,0.03185661,-0.01364618,-0.05118482,0.010263744,0.022111002,-0.039704327,-0.019421354,0.0066076852,-0.00898878,-0.025382826,-0.053979255,0.016335828,0.017197447,0.04124127,-0.022891117,-0.017721403,0.028130691,0.018222075,0.013832476,0.009046998,-0.000072044146,0.013029074,-0.053699814,0.041753583,0.013925623,-0.05682027,0.013296874,0.024521207,-0.0028613897,-0.006706655,-0.004590449,-0.029108744,0.028503282,-0.009437055,-0.021063088,0.0030011116,0.016231036,-0.029271754,-0.010799345,0.014065346,0.036397576,0.0014525263,0.014903678,0.017150873,-0.03225249,-0.016126245,0.028177265,0.04217275,0.031437445,-0.008563792,-0.048949264,-0.038516693,-0.028084118,0.028969023,-0.028875874,0.0053007025,0.026058149,-0.033603135,0.01457766,-0.016184462,-0.043034367,0.00539094,-0.08439207,0.0026590838,-0.034325033,0.024358198,-0.024591068,-0.004316827,-0.03697975,-0.033812717,0.06827747,0.06785831,-0.04922871,0.031204574,-0.075775884,-0.032741517,-0.0087500885,0.020026816,-0.010287031,-0.0016839409,0.016126245,-0.042522054,-0.060499616,0.020399408,-0.0024480454,0.009990121,0.060127024,-0.036397576,0.026151296,0.05635453,0.009879508,-0.0019182663,0.02003846,-0.005536483,0.020504199,0.01910698,-0.008360031,-0.020783644,0.039704327,0.0030942596,0.032368924,-0.018489875,0.034720913,-0.004249877,-0.02386917,-0.038190674,0.0037637607,0.010455861,-0.024567781,-0.0053501874,0.010909958,0.023380144,-0.043663118,-0.019759016,-0.039867338,-0.0042062136,-0.012446899,-0.0130640045,0.0063340627,-0.026523888,0.02170348,-0.026523888,0.026034862,-0.02140075,-0.06920895,-0.011946229,-0.0009773261,-0.0049048234,0.014519442,-0.0231007,-0.023042483,-0.024870511,-0.0070559597,-0.0061710537,-0.016231036,0.034441467,-0.071444504,0.03162374,-0.0007531888,0.020795288,-0.00034766758,0.011841438,-0.010426752,0.016918002,-0.002459689,0.02190142,-0.03672359,-0.029714206,0.0075275213,-0.02136582,0.039029006,0.026617037,0.014938608,-0.0021525917,-0.030459391,-0.0063806367,-0.016126245,0.012644839,0.033300404,0.011655142,0.009477807,-0.029411476,0.00070334005,-0.02952791,-0.011463024,-0.0110496795,-0.011521242,0.014216711,-0.03665373,0.008482289,-0.019491216,-0.0052337525,0.041753583,0.022623317,-0.014659164,0.008039835,0.035792112,0.009896973,-0.018746031,-0.0024975303,-0.03208948,-0.006351528,-0.034325033,-0.019130267,0.010863383,0.027781386,-0.01754675,-0.022495238,0.033812717,0.016347472,-0.007166573,0.031064853,0.0022340962,-0.019724086,-0.028433422,0.00065058045,-0.010554831,-0.01075277,-0.037724935,-0.022145933,0.008476467,-0.0022457396,0.04023993,0.0030447748,0.0013746605,0.0059323623,-0.016289253,0.016033096,-0.0045642513,-0.052721757,0.005702403,0.0011607112,-0.028223839,-0.007742926,0.0000703613,0.025965,-0.016696775,0.024614355,-0.030436104,-0.006293311,-0.049973894,-0.030762121,-0.028153978,-0.00865694,-0.035186652,0.025149956,-0.01131748,0.013238657,0.016778281,-0.011096253,0.012970856,0.009582599,0.02100487,-0.01987545,0.0059236297,-0.026919767,-0.009343907,-0.019293277,-0.018187143,0.0173721,-0.0181755,-0.05924212,0.021854846,-0.06650766,0.024241762,-0.029038884,0.01720909,0.029784068,-0.013471527,-0.023822596,0.016731707,-0.00036622438,-0.009576777,-0.01910698,-0.023892459,-0.031321008,-0.0063631716,0.017022794,-0.019526146,0.02806083,-0.03278809,0.014938608,-0.00742273,0.019665867,0.015206409,0.0055335723,0.015951592,-0.046760287,0.008138805,0.0036065734,-0.03409216,0.016661845,0.031996332,-0.017779622,-0.027269073,-0.014344789,0.01770976,0.004875715,0.009303154,0.0048087644,0.043034367,-0.010939066,-0.0254294,0.014309859,-0.039564606,-0.021784985,0.0028948647,-0.030599112,-0.039355025,0.035838686,-0.006951168,0.005032902,-0.00023159645,0.032951098,-0.00022650242,-0.026989628,-0.030459391,-0.010450039,-0.005099852,0.0397509,-0.019898739,0.0030884377,0.014391364,0.0236363,0.04587538,-0.006759051,-0.003478495,-0.019398067,0.03954132,-0.0077778567,-0.014007128,0.020178182,0.0026445296,0.017395386,-0.013261944,-0.0058304816,0.016766638,-0.021889776,0.016615272,-0.044291865,0.025801992,-0.0017246931,0.0116202105,0.0007772035,-0.014973538,0.014496155,0.028549857,0.027688239,0.004124709,0.0032776447,0.026151296,0.004590449,-0.006467963,-0.002666361,-0.026500601,-0.0014008584,0.0068987724,0.0021482254,-0.00908775,-0.013075648,-0.0071083554,0.024404772,0.0028526569,0.009873686,0.032694943,-0.0088257715,0.062316,-0.012411969,0.010170596,0.0004912101,-0.024614355,0.0038801958,-0.016137889,0.0035134256,-0.015579,-0.022518525,-0.00024323995,0.0075275213,-0.05169713,0.033137396,-0.00426152,-0.04750547,0.004683597,-0.0009147423,-0.014472868,-0.059102394,0.013343449,-0.020492556,-0.004284807,0.0041800155,-0.016068026,-0.024102041,-0.024986947,-0.0019124445,-0.02073707,-0.055981938,-0.014926964,0.022471951,-0.03292781,-0.0006462141,0.010287031,0.0064155674,-0.07125821,-0.029667633,0.06329405,-0.046853434,-0.014135206,-0.0065028938,-0.008808306,0.015730366,0.03481406,-0.0058042835,-0.022332229,0.0054782657,0.027408794,-0.010351069,0.05016019,0.015695436,0.0145077985,-0.030552538,0.01926999,0.008243596,-0.017057724,-0.0017028616,0.033230543,-0.035233226,0.03907558,0.013890693,0.013983841,0.005652918,0.027175924,-0.020422695,0.012074308,0.013704397,0.010077448,0.008371675,0.02736222,-0.026873194,0.023450004,-0.018082352,0.010956531,0.010450039,0.024404772,0.010397644,0.008226131,-0.024893798,-0.0075915605,0.038796134,0.010257922,-0.033207256,-0.026081435,-0.015928306,0.016487192,0.028806014,0.010572297,0.036164705,-0.012225673,0.030785408,-0.034767486,-0.0152296955,-0.045852095,-0.03548938,-0.01081681,0.020143252,0.04254534,-0.03914544,0.02263496,-0.0050416347,-0.019246701,-0.020411052,-0.034581188,-0.030668974,-0.005198822,-0.007859361,0.028899161,0.016731707,0.00007368151,0.024078753,-0.019898739,0.012912639,0.0074110865,0.02473079,-0.043313812,0.0020827306,0.010933245,0.027338933,0.022553455,-0.014682451,-0.02566227,-0.0062467367,-0.0032630903,-0.019432997,0.044222005,-0.009763073,0.011201045,0.030552538,-0.005070743,-0.034720913,-0.008295992,0.008464823,0.021621976,-0.013634536,0.037957802,-0.03208948,-0.030179946,-0.050439633,-0.021656906,-0.07507727,-0.005245396,0.0071374644,0.0130640045,-0.03853998,0.0014008584,-0.030948417,-0.014100276,-0.019351494,0.0073936214,-0.010875027,0.030063512,0.00872098,-0.0070210295,-0.02143568,0.024893798,-0.019095337,-0.039494745,-0.047016446,-0.025149956,0.004989239,-0.02027133,-0.018466588,-0.00053705636,-0.0109739965,-0.012039376,0.039331734,-0.013017431,-0.022984264,0.022111002,-0.032904524,0.0052250195,0.01341331,-0.025755417,-0.007486769,-0.017185804,-0.032438785,0.011853081,-0.019432997,-0.030016938,-0.0029952899,-0.044664457,0.048716396,0.017814552,-0.028410135,0.026197871,-0.028782727,-0.021051444,-0.014600947,0.03299767,0.021354176,-0.019630937,0.0032980207,-0.014892034,-0.0153112,0.014833816,0.018746031,0.0036094843,-0.012120881,0.02559241,-0.0049252,-0.011934585,0.0020696318,0.011224332,0.025848566,-0.025406113,0.015148191,0.04713288,0.00535892,0.00932062,0.008319279,0.030575825,-0.00028308254,0.010805166,0.01597488,-0.03441818,0.048250657,-0.006700833,0.019654224,0.051417686,-0.03900572,0.0031932292,-0.028316988,-0.0023854617,0.021249384,-0.018466588,-0.01178322,-0.0032630903,-0.012924283,-0.0016679311,0.009221651,-0.0018513162,-0.022844544,0.0015427634,0.009256581,0.009413769,-0.036956463,-0.016708419,-0.010677088,-0.012598265,-0.014950251,0.02566227,-0.01797756,-0.008493932,-0.008592902,0.004246966,0.008616189,-0.00053269,0.025755417,-0.019386424,0.03108814,-0.034394894,-0.031530593,0.012074308,0.00049957883,0.004523499,-0.022239082,-0.030319668,-0.03129772,0.00009360281,0.02372945,0.006095371,0.0066367937,0.01441465,0.028945737,0.03597841,-0.00011861813,0.010205526,-0.019828876,0.026989628,0.03574554,-0.025638983,0.0077662133,0.018978901,0.019153554,0.023217134,0.015555713,0.011905476,-0.0438727,-0.025848566,-0.029248467,0.025126668,-0.0054113157,0.013529745,-0.016801568,-0.013331805,-0.0047709234,0.004549697,-0.01414685,0.014309859,0.021249384,-0.0181755,-0.012109238,-0.02213429,-0.0053938506,-0.010869205,-0.009716499,0.0010930334,-0.030342955,-0.009483629,0.0010850285,-0.008109696,-0.022483595,0.005728601,0.018780962,0.022111002,0.0070559597,0.009972656,0.00908775,-0.014461224,0.027012914,-0.011899655,0.06459813,0.018524805,-0.0019983153,-0.056075085,-0.032205917,0.0073354035,-0.02913203,0.018257005,0.05281491,-0.025522547,0.008039835,0.046061676,0.0316936,0.027711526,-0.020841861,0.010409287,-0.049182136,0.018780962,-0.009937725,-0.009978478,-0.028806014,0.044454876,0.00891892,0.030482678,0.012994144,-0.010688731,-0.03937831,-0.017814552,0.019933669,0.008581258,0.008790841,0.026034862,0.007387799,-0.0065028938,0.006869664,0.001727604,-0.023787666,0.03751535,-0.016324185,-0.0023490756,-0.03378943,0.008493932,-0.010048339,-0.011888011,0.008167914,0.0058479467,0.043779552,0.020888435,-0.021482253,0.003685167,-0.024195189,0.043616544,0.0005963654,-0.019747373,0.004666132,0.010234634,-0.017092654,-0.024381485,0.009373016,-0.05039306,0.014519442,-0.020585705,0.004171283,0.005731512,0.008779197,-0.017139228,0.027222497,-0.008057301,0.0010959442,-0.015322844,-0.024171902,0.0037608498,0.0027842515,0.038982432,0.006101193,0.008412427,0.006904594,0.00075973826,0.00848811,0.010968175,0.043523394,0.007352869,0.021086374,-0.020865148,0.007859361,0.010298674,-0.011195223,0.016091313,0.0044856574,-0.03595512,0.01697622,0.029015597,-0.008697693,-0.011154471,-0.0053530983,-0.0100425165,0.026128009,-0.0018949793,0.0051551587,-0.0066076852,0.0095476685,-0.000672412,-0.0039966307,-0.032438785,0.00872098,0.02510338,0.0016548322,-0.016708419,0.0016068027,-0.0472726,-0.009006246,0.025871852,0.01255169,0.0058566793,-0.015928306,-0.008499754,-0.0077545694,0.025312964,-0.018070709,-0.0038889283,-0.028177265,0.02107473,-0.045479503,-0.021354176,0.03767836,0.021377463,-0.0032892881,0.025219817,0.020306261,-0.014007128,-0.0067124767,-0.018501518,0.0040956005,0.022693178,0.04077553,-0.0068813073,0.0049513974,0.0173721,0.036164705,0.010112378,-0.022751395,-0.010089091,0.008790841,0.018012492,0.010537365,-0.0004122526,-0.008505575,0.012505117,-0.0027231232,0.016673489,0.008633654,-0.007900113,0.030459391,-0.009862043,-0.031204574,0.006403924,0.013599605,-0.05458472,0.015602287,0.034231883,-0.049508154,-0.02573213,0.038586553,-0.0048029427,-0.024591068,-0.00549282,0.023706162,-0.0031175467,0.017267307,-0.009285689,0.0041567287,-0.0063165976,0.028782727,0.009140146,-0.014007128,-0.0056092553,0.031111427,0.020131608,0.0067998026,-0.069814414,-0.0039034826,-0.007597382,-0.018350152,0.008429892,-0.008360031,-0.00033093005,-0.0013542844,-0.011288371,0.01930492,0.019619294,-0.016603628,0.031647027,-0.05179028,-0.00572569,0.029970363,0.011922942,0.012225673,0.039704327,0.043290526,0.008860702,-0.008167914,-0.013518102,-0.0038365326,0.014437937,-0.0050590998,-0.006374815,0.0027973503,-0.04550279,0.0026852817,0.022926047,-0.026523888,-0.0060895495,-0.043686405,0.042522054,0.014111919,0.015159834,0.022437021,0.03844683,-0.015101617,-0.011026393,0.026780045,-0.036327712,-0.010368535,-0.006054619,0.0058101052,0.018163856,0.0053647417,0.01581187,-0.014123563,-0.007661422,-0.008447357,-0.00399372,-0.026221158,-0.0076556,-0.027548516,-0.0077836784,0.0027580536,0.053234074,-0.022448665,-0.025126668,0.037794795,-0.0037259194,0.0021773342,-0.015392704,-0.006648437,-0.047878064,0.022448665,-0.011899655,-0.014472868,0.011527063,0.019223414,-0.07419237,-0.0008128617,0.041986454,-0.037957802,-0.016591985,0.0043197377,-0.0057664425,0.01964258,0.015905019,-0.016324185,-0.0197008,0.005242485,0.0040694023,-0.050113615,-0.06217628,-0.022914404,-0.009524382,0.006793981,-0.01757004,0.026151296,0.021156237,0.029644346,-0.013390022,0.025825279,0.003018577,-0.011352411,0.045828808,0.0032951098,0.015322844,0.011119541,0.0030127552,-0.0016155354,0.010554831,-0.022751395,-0.012225673,0.030319668,0.008552149,-0.010746948,-0.0010355436,-0.027734812,0.022949334,-0.008645297,0.004776745,-0.011730825,-0.024055466,-0.018990545,0.006520359,-0.02503352,0.0059498274,-0.020795288,0.04356997,0.028503282,0.0031262792,-0.04659728,-0.023275353,0.012644839,-0.0022733929,-0.025406113,0.01488039,0.0334867,-0.0070152073,0.0033533275,-0.015043399,-0.026267732,0.009798003,0.023158917,-0.040798817,0.0017334258,-0.01255169,-0.035233226,-0.04098511,0.00955349,-0.0034872277,-0.00059600157,0.008115518,-0.015218052,0.005105674,-0.009215829,0.05006704,0.006561111,0.0033737035,0.013436597,-0.0047359928,0.011055501,0.009134324,0.00025615696,0.026523888,-0.024870511,-0.01704608,0.0130640045,0.0021540471,0.021552114,-0.0039966307,0.023939032,0.001867326,0.0015835157,0.007876826,-0.031367585,0.012330464,-0.038167387,-0.018000849,-0.04070567,-0.023741093,-0.01887411,-0.008412427,-0.006770694,-0.00336206,-0.0088257715,-0.013471527,-0.019887095,-0.022250725,-0.04426858,0.01387905,0.011305836,-0.0128544215,-0.04471103,-0.019246701,-0.008924741,-0.0116958935,0.000052304775,0.014065346,-0.020329548,-0.04773834,0.05914897,0.027385507,-0.04876297,0.006566933,0.017721403,0.0035134256,-0.0018658706,-0.018757675,0.01255169,-0.0027682416,-0.000005952511,-0.021982925,-0.03178675,-0.002389828,0.009437055,0.0003038225,0.0059672925,0.032042906,0.019654224,-0.0023534421,0.02938819,0.02154047,-0.017523464,0.037329055,0.0026605392,0.00009201092,-0.007486769,0.041334417,0.02922518,-0.029551197,0.005612166,0.00042425995,-0.009815468,0.0313443,-0.013052361,-0.0036938996,0.012237316,0.003498871,-0.04103169,-0.040426224,0.0003478495,0.011579459,-0.03278809,0.0044652815,0.027967682,0.008942206,-0.021063088,-0.0040024524,-0.034790773,0.037561923,0.02317056,0.034301747,-0.037259195,-0.05961471,0.003944235,0.048809543,-0.042754926,0.021552114,-0.00891892,0.020119965,0.011206867,-0.035466094,-0.009891151,0.031740174,0.047878064,0.003341684,0.026058149,0.009902795,0.007376156,-0.07293487,-0.014437937,-0.008092231,-0.025755417,-0.0158468,0.00056798436,-0.0282937,-0.012237316,0.010729483,-0.0038743739,-0.0010246278,0.012586622,-0.07344718,-0.0022122646,0.032345638,-0.017302237,-0.010147308,-0.00439251,-0.01081681]},{"id":"guide-embed-media-3","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Video in Embeds\nUse setVideo() to add video to a rich embed. Fluxer supports the .video field. Include a title when using video. Pass a URL or EmbedMediaOptions (e.g. duration for progress bars).\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Video embed')\n .setDescription('Rich embed with video field.')\n .setVideo('https://example.com/sample.mp4')\n .setURL('https://example.com/sample.mp4')\n .setColor(0x5865f2);\n\n// With full options (duration, dimensions for progress bar):\nconst embedWithDuration = new EmbedBuilder()\n .setTitle('Video with metadata')\n .setVideo({\n url: 'https://example.com/video.mp4',\n duration: 120,\n width: 1280,\n height: 720,\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.0442879,0.013583923,-0.032860156,-0.019211547,0.047867157,-0.034326356,0.012538176,-0.011169003,0.017152397,0.006317602,0.019793715,0.0032504387,-0.0148021635,-0.0510583,-0.022230197,0.02165881,0.0007843098,-0.020526817,0.028483115,0.038875893,-0.040967386,-0.005951052,-0.02734034,0.035641626,-0.025184162,-0.04368417,-0.019028272,0.088489555,0.016742723,-0.020246513,0.02384733,-0.009875297,0.0076436517,-0.014198434,-0.04088114,-0.021583345,0.060459238,0.0073148347,-0.050195828,0.034412604,0.027771575,0.0022289492,0.0043258327,-0.0008867283,0.045624733,0.039026827,-0.027750013,-0.0018502704,-0.027663767,0.07244759,-0.0232436,0.017874718,-0.023868892,-0.022682995,-0.037927173,0.012570519,-0.01911452,0.0030887253,-0.049074616,-0.0016171336,0.035296638,-0.030229619,0.018564694,0.008872673,-0.031976122,0.0020631931,-0.06848022,0.045064125,-0.004282709,0.031286146,0.043662608,-0.004611526,0.038164355,0.002711394,0.0060211276,0.030941157,-0.011061194,-0.0091961,-0.000058199967,-0.026801296,0.032622978,-0.008818769,-0.07956298,-0.011751171,-0.087325215,0.046530325,-0.02539978,-0.02068853,-0.023674836,-0.00004337624,-0.023782646,-0.01570776,-0.07956298,0.025011668,0.036029737,0.04211016,0.009568041,-0.0146081075,0.032946404,0.067100264,0.03736657,-0.009395546,-0.055974387,-0.01948107,0.019578097,-0.043145128,0.0068889894,0.053085107,-0.009988495,-0.029388709,-0.012451929,-0.008727131,-0.01390735,0.017281769,0.03846622,-0.02335141,0.03025118,0.014252338,-0.0034391042,-0.0060804226,-0.0931469,-0.021971457,0.038919017,0.0015686196,0.022898613,-0.02576633,0.0046869926,0.019394822,-0.055370655,-0.021734277,-0.0011933099,-0.01549214,0.02408451,0.0067057144,-0.0026116709,0.011503211,0.002094188,0.015427455,-0.0013375042,0.0082958955,0.013368305,-0.017648319,0.06904083,-0.024515746,0.0055144257,0.0084899515,-0.011470868,-0.00441747,-0.039371815,-0.009692021,-0.011352278,-0.020063238,-0.050152704,0.029388709,-0.051575784,-0.06334852,0.0012809046,-0.016128212,-0.041829858,-0.028634047,0.020106362,0.0032450482,0.0073849102,0.0045198887,0.00070682215,0.0208179,-0.0146943545,-0.026520992,-0.0578287,0.07274945,0.02529197,-0.005843243,-0.010053181,0.013292839,0.025809454,-0.012883165,-0.0015160628,-0.048212145,0.02143241,0.031889874,-0.036223795,0.028569361,-0.011082756,0.007169293,-0.0015147151,0.029216215,-0.015794005,-0.0050131143,0.024882296,-0.020494474,-0.023761084,-0.0010396822,-0.018349078,0.01185898,0.016031185,0.014317024,0.040342096,0.019534975,0.06761775,-0.016764285,0.01101268,0.0503252,-0.0011218864,-0.021378508,-0.016505545,0.0056114537,-0.041463308,-0.0069482843,-0.051963896,0.05248138,-0.0026574896,0.044589765,0.022165513,-0.041096758,-0.027469711,0.067315884,0.0011818552,-0.008527685,-0.04381354,-0.025593836,-0.060890473,0.026283812,0.020332761,-0.01814424,-0.026865982,-0.010026229,-0.020494474,-0.014823725,-0.030531483,0.04696156,0.039458062,-0.013034097,-0.022424253,0.0015942242,0.040557712,0.008096449,-0.028634047,0.0041695097,-0.000849669,0.008026374,-0.013443771,-0.024666678,0.007875441,0.00050097454,-0.018478448,-0.00009062687,-0.018543134,-0.061407957,-0.014198434,0.028677171,0.05541378,-0.0075466237,0.04838464,0.0008624713,0.04911774,-0.03725876,-0.04269233,0.062399797,-0.026046634,-0.023135792,-0.0066841524,0.0020348933,-0.032213304,-0.021820523,0.014198434,-0.027016914,-0.024472622,-0.009880687,-0.0013422209,-0.03085491,0.0070938263,-0.009611164,-0.028332181,0.042562958,-0.011611019,0.0048918296,0.061666697,0.001130646,-0.014004378,0.04476226,0.0002066899,-0.041463308,-0.031393956,0.03715095,-0.021249136,0.009368595,0.011384621,-0.018812655,0.019621221,-0.0067919614,-0.03158801,-0.0030429065,0.023567028,-0.056448746,-0.030402113,0.033183582,0.031048967,0.013476114,0.02624069,0.035296638,-0.028095001,-0.0029728308,0.0050535426,0.020483693,0.014015159,0.043403868,0.0013462638,-0.04898837,0.03680596,-0.02697379,-0.0010086871,-0.007244759,0.011524772,0.0019149558,-0.063003525,0.023696398,0.047263425,0.044244777,-0.025378218,-0.025184162,0.04271389,-0.013637828,-0.018661723,-0.08741146,-0.017378796,-0.078916125,-0.016117433,-0.036008175,0.016149774,-0.010112476,0.029992439,0.014381709,-0.009325471,0.034024492,0.025852578,-0.0636935,0.03906995,-0.012085379,-0.00050232216,0.015201056,-0.0015160628,-0.039608993,-0.0050751045,0.02068853,-0.0103712175,0.0004962579,0.012020693,-0.018532353,0.012031474,-0.013174249,-0.042261094,0.016009623,-0.020861024,-0.0049672956,0.075336866,-0.03710783,-0.0038703398,-0.07999421,-0.04234734,-0.030703979,-0.04696156,0.02044057,0.006279869,0.04972147,-0.02382577,-0.028138125,0.03894058,0.011697267,-0.015449017,-0.0076921657,0.0012168931,0.022187075,0.018521572,0.011093537,-0.021561783,-0.015934156,0.03919932,0.03835841,-0.030509923,-0.008452219,-0.001869137,0.02117367,0.010074743,-0.05321448,-0.019966211,-0.018446105,0.030790225,0.036504097,-0.014209215,0.03167426,-0.022402693,-0.0006973889,-0.010090914,-0.028612485,0.047565293,0.05554315,0.014899191,0.016936779,0.0019890745,-0.020968834,-0.0054524355,-0.017389577,0.018446105,0.019933868,0.039393377,-0.029022159,0.040449902,0.012128502,-0.038250603,-0.0040805675,0.021583345,-0.0078107556,0.024343252,0.01887734,-0.029949315,0.03542601,-0.007880831,-0.022359569,0.0038056546,0.012710671,-0.013648608,-0.02539978,-0.014834506,-0.0070183603,0.031372394,-0.036245357,0.027124722,-0.0072932728,0.0084252665,-0.0183922,-0.061623573,-0.0066841524,0.09814923,0.029237777,0.01873719,0.004220719,0.009778269,-0.06554782,-0.034412604,-0.0007452291,-0.04124769,0.059984878,0.041139882,-0.0019499937,-0.029582765,0.0052449037,-0.02828906,0.041786734,-0.01065152,-0.033205144,-0.01318503,0.016225241,0.008673226,0.007950908,0.017335674,0.03141552,0.013885788,-0.015675416,0.043102004,-0.0018246658,0.0055144257,0.027642205,-0.032730784,0.017335674,0.017508168,-0.0033366857,-0.0028057268,0.028698731,0.012053036,-0.04463289,0.0057084817,0.02445106,-0.0058378526,0.01645164,-0.03229955,-0.047824033,-0.010198723,-0.057138722,0.008727131,0.0014163395,0.012527395,0.025248848,-0.06688465,0.022855489,-0.050972052,0.061666697,0.05118767,-0.057526834,-0.015988061,-0.06602218,-0.020386664,-0.015028562,-0.004002406,-0.0083390195,0.002728913,-0.029733697,-0.05455131,-0.011751171,0.022812366,0.033830438,0.034628224,-0.002261292,-0.03859559,0.022532063,0.0013273972,-0.0042341948,-0.0007095174,-0.000023309465,-0.019685907,0.060416114,-0.023976702,-0.030919597,-0.00079778593,0.040104914,0.008807988,0.032967966,-0.02371796,0.025723206,-0.002431091,-0.03316202,0.00028518826,0.028116563,0.015815567,0.03145864,0.006015737,-0.006835085,-0.0005107447,-0.037129387,0.002881193,-0.020020114,-0.007282492,-0.011158222,-0.005204475,-0.014748259,-0.048772752,0.015222618,-0.05649187,0.051834524,-0.013249715,-0.024257004,-0.026650364,0.026046634,-0.021809742,0.028849665,-0.03626692,0.015319646,-0.025723206,0.028116563,-0.018812655,0.00040630484,0.031178337,-0.076673694,0.015578387,-0.030272743,0.014079844,0.056707487,0.0026103233,0.00027929246,-0.021637248,-0.0035873414,0.017723786,-0.024343252,0.005843243,0.0181658,-0.024364814,0.004816363,0.021583345,0.0011454697,0.00069065084,0.00834441,-0.023200478,-0.011395402,0.020052457,0.06455597,0.0030186495,0.008781035,-0.033722628,0.028504675,-0.000251498,0.017702224,0.019049834,-0.051015176,-0.00031652022,-0.0145326415,0.017594414,0.008818769,-0.015567606,0.0039862343,0.0073471772,0.029453395,0.01924389,0.018068774,-0.010797063,0.00040832625,0.013389867,-0.010225675,-0.00045144983,-0.014360147,0.0051963897,0.008937359,-0.006592515,-0.04596972,-0.019319357,-0.018942026,0.015093247,0.03521039,0.03048836,0.012074598,-0.05360259,0.011535553,0.0073202252,0.009465623,0.011945227,-0.04079489,-0.0059456616,-0.0032396577,-0.017874718,0.001140753,0.03544757,0.0068620373,0.025917262,0.005018505,-0.016117433,-0.0018812655,-0.013745636,0.007417253,-0.009104462,-0.033916682,0.011557115,-0.00087257836,0.029625889,0.007525062,0.035275076,0.0043150517,0.037927173,-0.025205724,0.013314401,0.0053149792,-0.005412007,-0.011708048,0.048859,-0.023998264,0.0442879,0.016020404,-0.012063817,0.0065386104,-0.012926289,0.005967223,-0.012775356,0.0035388274,-0.023804208,-0.03085491,-0.009961544,0.0014594632,0.02335141,-0.0176591,-0.028245935,0.011589458,-0.016149774,0.014317024,-0.031113653,0.024623556,-0.032838594,0.010317313,-0.017120056,0.025119476,-0.026520992,0.0030321255,-0.02684442,-0.011438525,-0.033312954,-0.025809454,-0.02794407,-0.0258957,-0.017853156,-0.041204564,0.017217083,0.009826782,0.0010787629,0.019459508,-0.04320981,0.02311423,-0.055241287,0.00027272286,0.0147590395,-0.056233127,-0.032234866,0.03799186,0.017723786,0.006366116,-0.032709222,0.013163468,0.022068484,0.010441293,-0.021561783,0.031286146,0.020063238,-0.017411139,0.001869137,-0.05118767,0.0033932854,0.00027727103,-0.013174249,-0.027512833,0.006252917,-0.026822858,-0.022057703,-0.011848199,0.06291728,-0.010236456,-0.0046142214,-0.009508746,-0.00069199846,-0.041937668,-0.040212724,-0.021378508,-0.026865982,-0.021001175,0.002951269,0.033183582,-0.004220719,-0.01052754,-0.06645341,-0.0033959807,-0.034822278,-0.026758172,0.025809454,0.026434746,-0.003207315,0.0013839969,0.0045684027,-0.002548333,-0.009454842,0.025464464,-0.049548976,0.031868313,-0.021389289,-0.00043426777,-0.013476114,-0.0028003366,-0.0075951377,-0.0007876789,0.041700486,0.0008308024,0.01923311,0.0022073875,0.03025118,-0.016408516,-0.028741855,-0.0061990125,-0.034822278,0.0044578984,-0.0052125608,0.003975454,-0.027361901,-0.023502342,0.010085524,-0.008085668,-0.021076642,-0.012613643,-0.0027652986,0.030660855,0.0013934302,-0.036849085,-0.026542554,-0.03389512,0.014554203,-0.0019324748,-0.008139573,0.001699338,-0.037409693,0.015147152,-0.012872384,-0.014133749,0.067315884,-0.007967078,-0.06097672,-0.0039727585,0.011352278,0.014909972,-0.03906995,0.0049565146,-0.0005558897,0.0044471174,0.029388709,-0.01754051,-0.025442904,-0.028806541,-0.04308044,-0.03753906,-0.029604327,-0.0326661,0.010867138,-0.028720293,-0.015201056,0.021928333,-0.0058109,-0.05722497,-0.0075035,0.008177306,-0.010058572,-0.0183922,-0.0035981224,0.015556826,-0.034649786,0.0065763434,-0.02348078,-0.003158801,0.012236311,0.0070075793,-0.032083932,-0.02154022,0.0039107683,0.028375305,-0.002576633,0.021453973,-0.030509923,-0.017594414,0.016279146,0.002832679,0.053171355,0.0032450482,0.0104359025,0.034347918,-0.022726119,0.022726119,-0.008091059,0.04549536,0.053343847,0.0018340991,-0.022920175,0.020742435,0.023437656,0.024300128,-0.017206302,0.003953892,-0.033938244,0.0073579582,-0.016742723,-0.0074495957,-0.015955718,0.051618908,-0.014920753,0.009654288,-0.0072555398,-0.00040596793,0.011438525,-0.0050131143,0.036935333,-0.0103712175,0.005007724,0.009772878,0.015934156,-0.049764592,0.020171048,0.0043042707,-0.012893946,-0.010306532,0.013508457,0.025852578,-0.031070529,0.016731942,-0.021119766,0.0019122605,-0.009740535,-0.019017491,-0.03628848,0.019890744,0.007589747,0.03753906,0.048600256,-0.0043500895,0.006738057,0.033722628,-0.010840186,-0.0012391286,-0.009271567,-0.0013186377,-0.031135213,0.017206302,0.023006422,0.013357524,-0.024062948,-0.04284326,0.008608541,-0.006096594,0.039113075,0.06623779,-0.033981368,0.015934156,-0.0012553,-0.011125879,-0.024041386,-0.03497321,-0.003158801,0.042498272,-0.0022437728,0.059812386,-0.013562361,0.02770689,0.0159665,-0.021928333,0.010268799,-0.01572932,0.00078228844,-0.002344844,-0.04342543,-0.00039653466,-0.013896569,-0.013152687,0.01597728,0.010894091,0.006738057,0.015567606,-0.04657345,0.0019702078,0.00097499683,0.04344699,0.0019055225,-0.02238113,-0.027512833,-0.01246271,-0.008069497,0.020645406,-0.0066841524,-0.024407938,-0.012786137,-0.0084791705,0.05338697,-0.021119766,-0.029022159,0.027620643,0.0031264585,-0.031997684,-0.0075843567,0.0034876182,-0.0065493914,0.014974657,-0.022941737,0.033205144,-0.0077406797,-0.01174039,0.031544887,-0.010974947,0.06265854,-0.01814424,-0.011923665,0.0026494039,-0.016990684,-0.016904438,-0.0022397302,0.042433586,0.0068997703,-0.019049834,-0.0082527725,0.0047247256,-0.0041317767,0.03820748,0.03449885,0.005713872,-0.023265162,0.028159687,-0.009524917,-0.0055521587,0.00018293825,0.0037167121,-0.0031776677,0.0001890025,-0.011082756,0.02142163,0.0232436,0.024235442,0.032924842,0.02710316,0.0043905177,0.024731364,-0.013961254,-0.012074598,0.013217373,-0.012613643,0.044201653,0.016678039,-0.036504097,0.004414775,-0.023049545,0.0074495957,0.03631004,-0.015351989,-0.018446105,0.054508187,-0.03643941,0.021798963,-0.0019014797,-0.018338297,-0.008123402,0.0038649496,-0.0031507155,0.0083282385,-0.031027405,0.011104317,0.0052664652,-0.010090914,0.008624713,0.014015159,0.0032639147,-0.0014311633,-0.0007304054,-0.009390156,-0.015298084,-0.016969122,0.019222328,-0.018435324,0.00423689,0.013745636,0.0010255323,-0.026154442,-0.012710671,0.0058109,0.0012195883,-0.023308286,0.004099434,-0.01900671,-0.013605485,-0.017270988,-0.006630248,-0.012904727,0.01294785,0.006932113,-0.02105508,0.00011488387,-0.021367727,0.03232111,-0.006112765,-0.041657362,-0.0001962459,0.01658101,0.0244295,0.0031237633,0.021734277,0.013282058,0.009616555,-0.0193517,0.011158222,0.019157644,-0.017637538,-0.022898613,0.0148021635,0.0054389597,-0.006522439,0.012020693,-0.027879385,0.019017491,0.02274768,-0.010495197,-0.005746215,0.022963298,-0.02673661,-0.0073471772,0.009454842,0.027491271,-0.017033808,-0.004622307,0.0048783533,-0.0068296944,0.006603296,0.010236456,0.058259934,-0.035512254,0.000045903013,0.0026332326,0.03967368,-0.017594414,0.043145128,-0.0026157137,0.011988351,0.02964745,-0.01402594,-0.02358859,0.0031911437,0.001154903,-0.034261674,0.005091276,0.027491271,-0.017594414,0.016861314,0.036719713,0.019987771,0.03809967,0.0020241123,-0.012969412,0.0054039215,0.023739522,-0.011697267,-0.03764687,-0.016667258,0.029108405,0.010419731,0.032709222,0.01887734,-0.038034983,-0.0058270716,-0.0055737207,0.01367017,0.03264454,-0.009373985,0.04670282,-0.013767198,-0.013928912,-0.017648319,-0.0026588372,-0.027534395,-0.00906673,-0.014198434,-0.01887734,-0.019028272,-0.0002309469,0.002462086,0.01040356,0.0040455293,-0.02964745,0.023976702,-0.010937214,-0.0043743467,0.0035118752,-0.028526237,0.042735454,0.0031318488,0.0020901454,-0.006953675,0.009109853,-0.020289637,-0.010365827,0.011718828,-0.030057125,0.014230777,-0.007589747,0.032558292,-0.018974368,-0.008258163,-0.016548667,0.00968663,0.027987193,-0.011190565,0.008015593,0.0106299585,-0.007147731,0.01874797,0.043511678,0.018338297,0.015998842,-0.025097914,0.029367147,0.008015593,0.026305374,0.001650824,0.0013934302,0.024300128,-0.024817612,0.010058572,0.027318778,0.011697267,0.01378876,-0.010069353,0.008387533,-0.014317024,0.0015389723,-0.010387389,0.0083174575,-0.018305954,0.029582765,0.04596972,-0.02818125,0.0032693052,0.0054147025,0.01294785,0.012807699,0.0025065572,-0.010220285,-0.0029108406,0.03449885,0.0146296695,-0.039824612,0.0045171934,-0.028353743,0.012365682,0.04476226,0.006064251,-0.004220719,-0.013724075,0.0017788471,-0.005104752,0.031437077,-0.012527395,-0.020882586,0.00047671754,0.018079555,-0.017357234,-0.012106941,0.0057408246,0.029367147,0.027728451,0.024127634,0.0069752363,0.015201056,-0.0018246658,-0.032730784,-0.0064685345,0.0021575259,0.048859,-0.013637828,0.011632581,0.009638117,0.02977682,0.023933578,0.0060912035,-0.016645696,-0.00072905776,0.004296185,-0.001237781,-0.006905161,0.02503323,-0.026693486,0.017314112,0.026715048,-0.034067616,-0.005606063,0.0065008774,-0.0049053053,-0.024106072,-0.0043878225,-0.0020470216,-0.0062636975,0.015556826,0.019675126,-0.02238113,-0.015222618,0.028720293,-0.012796918,0.023437656,0.039716803,0.018101117,0.039134637,0.0067218854,0.00932008,0.024709802,0.0027922508,-0.0012822523,-0.023653274,-0.015934156,-0.0025294665,0.035404447,-0.008824159,0.004921477,-0.049031492,0.008290505,-0.024494184,-0.014317024,-0.0070830453,-0.031156775,0.017475825,-0.049807716,-0.00882955,0.017572852,-0.012247092,0.0076328707,-0.02684442,-0.047090933,0.014823725,0.035641626,0.011718828,-0.044589765,0.017637538,-0.01185898,0.019912306,-0.03374419,-0.012300997,-0.012937069,0.02721097,-0.008969702,0.000032216336,-0.005676139,-0.01318503,-0.00592949,-0.02408451,-0.02697379,0.033701066,-0.0148776295,-0.020979615,-0.005492864,0.0495921,0.012602862,0.019416384,-0.010090914,-0.0034633612,0.01873719,0.005762386,0.013260496,-0.016634915,0.009104462,0.0103819985,0.019362481,0.016117433,0.019696688,0.0015524484,0.014963876,0.016613353,0.0046546496,0.007417253,-0.008985872,0.0007459029,-0.014909972,0.00713695,-0.021949895,-0.01027958,-0.0023286724,-0.008026374,0.016893657,0.016268365,-0.033550132,-0.038875893,0.0051424853,0.010980338,-0.0032100102,0.001189267,0.03025118,-0.048600256,-0.0015996147,0.012980193,-0.003048297,0.0049080006,-0.00024374921,0.005606063,0.015179494,0.0017882803,-0.011632581,-0.014489518,0.0027868603,-0.012106941,-0.023308286,-0.018359857,-0.00392694,0.01959966,-0.0075466237,-0.02384733,-0.0002826615,0.030660855,0.024127634,-0.014467956,-0.026865982,0.020246513,0.034800716,0.0019378652,-0.014834506,0.006075032,-0.0021966065,-0.018305954,0.0031614962,0.0345851,-0.02721097,0.022445815,-0.010845576,0.017324893,0.012656766,0.011945227,0.030208057,0.042282656,0.0251626,0.026715048,-0.015362769,-0.020365104,-0.02757752,0.037517503,0.03014337,-0.0017249426,-0.0148668485,0.0042018523,0.008942749,-0.013271277,-0.0024405243,-0.023006422,0.01995543,0.014241558,-0.010915652,-0.001487763,0.015589168,0.002354277,-0.013540799,-0.013012536,0.01632227,-0.02055916,0.033938244,-0.01330362,0.009708192,-0.021551002,-0.0021548306,-0.0077029467,0.01583713,-0.008786426,0.0042422805,0.006161279,-0.036676593,-0.011826637,-0.0104574645,0.03389512,-0.001213524,-0.0464872,0.014230777,0.014942315,0.0083821425,0.014058282,-0.028741855,0.027987193,-0.027146284,0.011891323,0.0075789667,0.031717382,0.052050143,-0.008495342,-0.015718538,-0.012290216,-0.0021804352,-0.025313532,-0.0019324748,0.043015756,-0.06158045,-0.011513991,-0.013842664,-0.034067616,0.0101556,-0.028073441,-0.007282492,0.00041978096,-0.003953892,-0.024041386,-0.0048190583,-0.0387034,-0.02891435,0.005967223,0.0020200694,-0.0055845017,-0.039867736,-0.0105329305,-0.0022060398,-0.008177306,-0.01137384,0.0073956912,-0.033808876,-0.031027405,0.01984762,0.0033932854,-0.00008367824,-0.0029081453,0.007767632,0.007039922,-0.0147266975,-0.01802565,0.012689109,-0.021389289,-0.036762837,0.010225675,-0.028590923,0.010791672,-0.020677749,0.011611019,-0.00932008,0.0029216215,0.0048109726,0.0014783297,0.01113666,0.026111318,-0.009826782,0.03232111,-0.047565293,0.012053036,-0.0059348806,0.063219145,0.0495921,0.0061181556,0.035382885,-0.0051209233,-0.03736657,0.0010983032,-0.02395514,-0.006942894,0.041183002,0.0072016353,-0.017486606,0.0076759947,-0.0058971476,0.0041695097,-0.023545466,0.010856357,0.03098428,-0.0046438687,0.0021413546,0.012160845,0.0025995423,0.036676593,0.043727294,0.006565563,-0.019567318,-0.052783243,0.010171771,0.052567624,-0.033722628,0.025723206,-0.0013422209,0.0044471174,0.04872963,-0.044805385,0.009789049,0.0018489228,0.046357833,0.028030317,-0.005697701,0.028526237,-0.00076409563,-0.03906995,-0.0033447715,-0.009142196,-0.041765172,-0.006242136,-0.038185917,-0.022316445,0.004875658,-0.012128502,-0.03277391,-0.02818125,0.029841507,-0.037301883,0.015060904,0.009578822,-0.009826782,-0.02203614,-0.028526237,-0.021141328]},{"id":"guide-embed-media-4","type":"guide","source":"guides","text":"Guide: Embed Media (embed-media)\nSection: Audio in Embeds\nUse setAudio() to add audio to an embed. Pass a URL or EmbedMediaOptions (e.g. duration, content_type).\n\n```javascript\nconst embed = new EmbedBuilder()\n .setTitle('Audio embed')\n .setDescription('Rich embed with audio field.')\n .setAudio({\n url: 'https://example.com/sample.mp3',\n duration: 180,\n content_type: 'audio/mpeg',\n })\n .setColor(0x5865f2);\n```","meta":{"slug":"embed-media","url":"/guides/embed-media"},"embedding":[-0.04512249,0.01953094,-0.019188475,-0.024034888,-0.013781662,-0.03401829,0.010668335,-0.036156107,0.0062214658,-0.02434622,0.0013789446,0.01856581,0.0076172743,-0.049688704,-0.010927779,-0.011654221,-0.0033494213,-0.029701142,0.048152797,0.01753841,-0.018586565,0.024076398,-0.03235785,0.0340598,-0.0033935267,-0.049024526,-0.013158997,0.07305942,0.014871327,-0.024014132,-0.017289344,-0.01074098,0.006927153,-0.0006972556,-0.04416774,-0.03758824,0.029140744,-0.031299315,-0.032835227,0.012878797,0.017164811,-0.005432756,-0.026255727,-0.0062733544,0.0111976005,0.026048172,-0.026608571,0.0034687654,0.01235991,0.046948977,-0.014041106,0.030282296,0.012837286,-0.031589895,-0.023516,0.03188047,-0.014767549,0.0126712425,-0.033748467,-0.033665445,0.034537178,-0.009329604,0.006045044,-0.0055936114,0.00007073901,-0.034931533,-0.03526362,0.033748467,-0.029140744,0.006994609,0.04508098,-0.009469704,-0.019188475,0.004457247,-0.00985887,0.034973044,-0.056455,-0.0033182881,-0.022187646,-0.030053986,0.014757171,0.0066625206,-0.09688675,0.0020638765,-0.05882113,0.04831884,-0.032648426,0.004125159,0.0051473677,-0.0128995525,-0.049107548,-0.036405172,-0.05761731,-0.001823891,-0.010279169,0.021087604,0.00011374996,0.017382745,0.034744732,0.058945663,0.020579094,-0.029721897,-0.07322546,-0.011145712,0.008597972,-0.07260279,0.046948977,0.04396018,-0.043628093,-0.035948552,-0.015971368,0.0019458296,-0.000308414,-0.013158997,0.03127856,-0.0072177304,0.03545042,-0.01074098,-0.040805344,-0.033852246,-0.09265262,0.002332401,0.05002079,-0.02735577,0.060315527,-0.030531364,-0.009023461,0.0005250497,-0.05346621,-0.008494195,0.005432756,0.016054392,0.016894989,-0.007150275,-0.00027241613,-0.0004407304,0.0047504185,0.02536324,-0.011830644,0.0033805545,0.055417225,-0.05280203,0.043337516,-0.0019315601,-0.0034687654,-0.0049268403,-0.017849743,-0.023038622,-0.029327543,-0.012453309,-0.02272729,-0.0022766206,-0.052179366,0.041220453,-0.036778774,-0.017756343,-0.028684122,-0.02494813,-0.049315106,-0.042631827,0.027791634,0.011872155,0.026234971,0.0044001695,-0.00028636126,0.033727713,0.039310947,-0.034869265,-0.018088432,0.04549609,0.0074771745,-0.031029496,-0.024366975,0.03291825,0.013584484,-0.0459112,0.021129115,-0.0745123,0.034890022,0.028144479,0.0025710894,0.036550462,-0.026234971,0.043711115,-0.0020158794,0.03082194,-0.009734336,-0.008354095,0.012878797,-0.04248654,-0.010917401,-0.03383149,-0.013605241,0.040307213,0.00999897,0.0040317588,0.029535098,0.006927153,0.053300165,-0.040203433,0.03721464,0.00045726995,-0.0050695348,-0.030095497,-0.038937345,0.00036127568,0.002485473,-0.02438773,-0.0077262404,0.04869244,0.0041640755,-0.026442526,0.0052589285,-0.047032,-0.0411997,0.06438361,-0.009739526,-0.020080961,-0.015047749,-0.025010396,-0.053798296,0.013252396,0.00726443,-0.0017849744,-0.0013971056,-0.02133667,-0.053756785,-0.004125159,-0.0022999705,0.031112518,0.03364469,-0.041573297,-0.0043612528,0.039726056,0.029286033,0.05400585,0.0015488804,-0.0030121442,-0.014954349,-0.005526156,-0.013262774,-0.037401438,0.007108764,0.03239936,-0.019582829,0.009319226,0.01786012,-0.055790827,-0.004145914,0.034931533,0.008924872,0.015556259,0.046035733,0.017745966,0.05035288,-0.036758017,-0.026442526,0.050311368,-0.02559155,-0.023204666,-0.00781964,-0.01763181,-0.005868622,-0.031403095,0.024906619,-0.03082194,-0.014217528,0.0059620216,0.014352439,-0.03173518,-0.037754282,-0.02471982,-0.0099522695,0.007529063,0.020215873,0.013418441,0.021253647,-0.00939187,-0.02642177,0.031008739,-0.055541757,-0.041573297,-0.031589895,0.0346202,-0.010637201,-0.0075186854,-0.0009787523,-0.002478987,0.006045044,-0.016178925,-0.023453733,-0.017496899,0.05180577,-0.03165216,-0.035346642,0.03221256,0.030925717,-0.030842695,0.018161075,0.0282275,0.02438773,0.010855135,0.03943548,0.029452076,0.041988406,0.050311368,-0.008416361,-0.028206745,0.052968074,-0.027521813,0.00061780086,-0.011301378,-0.0015903914,0.023682043,-0.019458296,0.04823582,0.044914935,0.0071139527,-0.04161481,-0.01902243,0.045164,0.033125803,-0.010004158,-0.08177673,0.010938156,-0.04636782,-0.011799511,-0.009843303,-0.01513077,-0.0127853975,0.0030328997,0.011021178,-0.0080064405,0.042424273,0.01934414,-0.0045791855,0.04192614,-0.032150295,-0.041635565,0.023827331,-0.024014132,-0.007861151,0.0022636484,0.013864684,-0.020506449,-0.01856581,-0.06122877,-0.008888549,0.005443134,-0.026276482,-0.0036218374,-0.0038812815,-0.015981747,-0.010824001,0.04943964,-0.022166891,-0.011975932,-0.06882529,-0.017735587,-0.03636366,-0.047032,0.012276887,-0.02198009,0.022478223,-0.007155464,-0.022997111,-0.008219184,0.015327948,0.0028097779,-0.018119564,0.01878374,0.047198042,-0.0069686645,0.02739728,-0.038626015,0.023038622,0.05350772,0.028061457,-0.03657122,0.0048619793,-0.004872357,0.0069479086,0.034495667,-0.03812788,0.011114579,-0.0088366605,0.027231237,0.040141165,-0.030489853,0.0045973468,0.0005198608,0.00499689,-0.016635546,-0.004695935,0.060689125,0.047322575,-0.0013277044,0.003294938,0.008857416,-0.020911181,-0.014954349,-0.02781239,-0.023702798,0.021648003,0.04346205,-0.0135014625,0.06712334,0.0004741338,-0.04267334,-0.012235376,0.027916169,-0.0041173752,0.03221256,-0.02110836,-0.002131332,0.058447532,0.002786428,-0.035616465,0.023848087,0.008753639,-0.029182255,-0.03401829,0.013989218,0.004187425,0.031050252,-0.03777504,0.052054834,0.023599021,0.060232505,-0.0021209542,-0.07384812,0.023951864,0.035471175,0.013449574,-0.009749903,0.013314663,-0.03744295,-0.0515567,-0.005951644,-0.005697389,-0.050892524,0.04636782,0.0006139092,0.021544226,-0.042320497,0.00085032755,-0.032980513,0.026546305,-0.018441275,-0.027210481,0.017808232,0.0055832337,-0.018617697,0.010019725,0.06492325,0.053051095,0.022063114,-0.0060657994,0.0040395423,-0.022934845,0.015026993,0.013127863,0.006921964,0.0005244011,-0.046201777,-0.038148638,-0.016770456,0.016635546,0.0097810365,-0.023661288,0.034288112,0.041822363,-0.0063667544,0.010580124,-0.049771726,-0.06330432,0.0069115865,-0.05678709,-0.03179745,-0.0051447735,0.01680159,0.013906195,-0.03773353,-0.0057648444,-0.01800541,0.054919094,0.05923624,-0.023910353,0.04219596,-0.098713234,-0.048609417,-0.00856165,-0.0076120854,-0.006678087,-0.0035440042,0.002107982,-0.038397703,-0.0064705317,0.054254916,0.029244522,0.010844757,-0.0019678823,-0.025072662,0.04914906,0.011166467,-0.009173938,-0.03183896,-0.008712128,-0.012287265,0.011031557,-0.03756748,-0.023993377,-0.027521813,0.015929857,0.0033935267,-0.006081366,0.0019990157,0.06430059,-0.0068700756,-0.030801184,-0.033706956,0.030718163,0.0058841887,0.005059157,0.0119551765,-0.0012823017,0.009563103,-0.056496512,0.015338326,-0.023806576,-0.020184739,0.0117268665,-0.016095903,-0.0056247446,-0.028704878,0.0015553664,-0.01379204,0.041573297,0.016002502,-0.041158188,-0.016210057,0.03540891,-0.046035733,0.0076172743,-0.025529284,-0.017621433,-0.010606068,0.004716691,-0.0035725432,-0.0014165639,0.02148196,-0.07031968,0.042631827,-0.007757374,0.002921339,0.038065616,0.02105647,-0.0037230207,-0.015047749,-0.003411688,0.018918652,-0.026338749,0.0103103025,0.026359504,-0.031901225,0.008156918,0.00916356,-0.019499807,0.020745138,0.00021744646,-0.025736839,-0.008950816,-0.002721567,0.06650067,-0.0059360773,0.028352033,-0.017995032,0.019572452,-0.030448342,0.0126712425,0.0009119455,-0.011612711,-0.010097559,-0.01823372,0.015452481,0.010574935,0.0049216514,0.015037371,-0.0075550075,0.02471982,0.011374023,0.02781239,0.013574107,-0.015369459,0.023536755,-0.023329198,-0.00014204555,-0.018991297,0.0015397999,0.03221256,0.002874639,0.0053289784,-0.009589048,0.03652971,0.013937329,0.04541307,0.015369459,0.021585736,-0.022042356,-0.007196975,0.015660036,-0.012090088,0.0011765782,-0.033706956,-0.0038034483,-0.021440448,-0.0076068966,0.0011999282,0.011664599,0.01902243,-0.0047426354,-0.010559369,0.024408486,0.0010462077,-0.05520967,0.009884814,0.0042367196,-0.005243362,0.039041124,0.034391887,0.027667101,0.037318416,0.014892083,-0.03244087,0.040950634,-0.04794524,-0.0017940549,-0.026442526,-0.0077781295,-0.01735161,0.024865108,0.012629731,0.035471175,0.026836881,-0.016396858,0.010465968,-0.012422176,-0.00402657,-0.007700296,-0.005401623,-0.054628517,-0.013843928,-0.023993377,-0.0046414523,0.018264854,-0.023682043,-0.035948552,0.015203415,-0.016365724,0.0038060427,-0.027065191,0.019593207,0.007394152,0.0061280658,0.02124327,0.010907023,-0.01638648,-0.010637201,-0.029306788,0.0027423224,-0.06002495,-0.037380684,-0.013625996,-0.012204243,0.041863874,-0.054877583,0.018866764,0.020330027,0.015473236,0.008489006,-0.030303052,-0.0049787294,-0.047654662,-0.032648426,0.001682494,-0.04275636,-0.003702265,0.037339173,0.01115609,0.0017720021,-0.046990488,-0.0026956226,0.005035807,-0.004257475,-0.01351184,0.09364889,0.011623088,-0.032835227,0.007814451,-0.045662135,-0.013843928,-0.0052096345,-0.013221263,-0.010081992,0.009749903,0.0075134966,-0.02133667,0.0037126427,0.03217105,0.0088366605,0.008815905,-0.004387197,-0.014124128,-0.015940236,-0.00043586583,-0.044458315,-0.017673321,-0.024304708,0.006921964,0.031299315,-0.01106269,-0.02133667,-0.022146136,-0.008597972,-0.017694077,-0.017144056,-0.0053237895,0.010056047,0.015068504,0.014964727,0.002179329,-0.016293079,0.010279169,0.014476972,-0.032274827,0.054836072,-0.022042356,0.01397884,0.024034888,0.0072229193,0.006288921,0.019572452,0.045745157,0.0057181446,0.026712349,0.009474893,0.02411791,-0.018669587,-0.011166467,-0.019001674,-0.03684104,0.0032352658,-0.019012053,-0.014892083,-0.021295158,-0.008094651,0.016967634,0.023702798,0.0022545678,0.0025944393,0.011280622,0.032648426,-0.014404328,0.0054950225,-0.027542569,-0.036737263,0.016075147,0.015369459,0.003868309,0.012391043,-0.032378603,-0.017102545,-0.006641765,-0.01290993,0.05168123,-0.019084696,-0.04090912,0.01055418,-0.0005338059,-0.008504572,-0.01638648,0.026089683,-0.02110836,-0.0029498776,0.031548385,0.0075861407,-0.03563722,-0.02003945,-0.030116253,-0.027293503,-0.044416804,-0.038542993,0.023038622,-0.03244087,-0.010009347,0.00018015139,-0.016739324,-0.029078476,-0.0030847886,0.043337516,-0.018264854,-0.007196975,-0.014684527,0.019593207,-0.00735783,0.0055157784,-0.042548805,-0.005915322,-0.0012187379,0.017559165,-0.030489853,-0.018960163,0.0032663993,0.025010396,-0.002207868,0.024304708,-0.006890831,0.02999172,0.016095903,0.03231634,0.021876313,0.0284143,0.008333339,0.022104625,0.039414722,0.028870922,-0.01087589,0.01795352,0.07447079,-0.01994605,0.02532173,-0.0091946935,-0.0063719433,0.034807,-0.019572452,-0.005780411,-0.035056066,0.025508529,-0.022872578,-0.0176837,-0.019198852,0.030303052,0.011778755,0.03289749,0.004018787,-0.01753841,0.013760907,0.0170299,0.027335014,0.02231218,0.029119989,0.019728117,0.011830644,-0.020537583,0.02471982,0.0010728007,-0.0035414097,-0.007964929,-0.016241191,0.020994203,-0.03507682,0.005238173,0.02193858,0.010299925,-0.0017395717,-0.026587816,-0.022000846,0.0051525566,0.0038449592,0.027604835,0.019499807,-0.007830018,0.00726443,-0.0120278215,0.032648426,-0.011591955,-0.0032689937,0.025197195,-0.046907466,-0.000084886815,0.024263198,0.02022625,-0.016230812,-0.03484851,-0.00698942,-0.0024763923,0.038563747,0.057700332,-0.034371134,0.026546305,-0.009350359,-0.03188047,-0.012484442,-0.019748872,-0.016376102,0.05392283,-0.012992953,0.037961837,-0.0053756787,0.0012206838,-0.012193865,-0.01708179,-0.02254049,-0.034412645,-0.0055209673,0.007456419,-0.01217311,0.014155261,-0.017662944,-0.030718163,-0.02231218,-0.005770033,0.016645923,0.024055643,-0.00032057543,-0.0037333984,-0.010637201,0.030137008,0.0006654737,-0.03657122,-0.047032,-0.022021601,-0.0044780024,-0.017517654,-0.033810735,-0.010626824,0.004695935,0.012245754,0.049647193,-0.009594237,-0.023204666,0.018679963,0.0074252854,-0.038563747,0.0049138684,-0.023536755,-0.012131599,-0.0007582249,-0.026774615,0.0044676247,-0.022644266,-0.03947699,0.034454156,-0.015078882,0.034599446,0.0009281607,-0.020236628,0.005837489,-0.019053563,-0.02026776,-0.031216295,0.042320497,0.021585736,-0.005261523,0.006818187,0.015452481,0.0041666697,-0.020682871,0.030904962,0.023474488,0.00080881646,0.024408486,-0.01578457,0.0044131414,-0.0153902145,0.00967207,-0.009962647,0.0028720445,0.05238692,0.010626824,-0.0056818225,0.029452076,0.046948977,0.03590704,-0.009796604,0.0020093934,-0.0004420276,-0.013926951,0.02905772,-0.012505198,0.02235369,0.021772536,-0.019686606,-0.0010857729,-0.016811967,0.0078352075,0.028352033,-0.016137414,-0.0012810045,0.02901621,-0.046118755,-0.018347876,-0.024595285,-0.01290993,-0.026297238,0.0075498186,0.004799713,0.00075173884,-0.026629327,0.023391467,0.006050233,-0.016594034,-0.034142822,-0.010709845,0.0012129004,0.0023466705,-0.008255506,-0.017112922,-0.02532173,0.0068752645,0.030967228,-0.010351813,0.033852246,-0.019074319,-0.0030354941,-0.015172281,0.000407327,-0.013719396,0.008675805,-0.021461204,0.025861371,-0.006454965,0.0043612528,0.0100664245,-0.026048172,0.001065666,0.009490459,0.04794524,-0.02596515,-0.003077005,-0.026089683,0.032378603,-0.011685356,-0.055832338,-0.010834379,0.002786428,0.04508098,0.001989935,0.028808655,-0.013833551,-0.017476143,-0.007124331,-0.005707767,0.012411798,-0.015047749,-0.005873811,-0.01430055,-0.0045973468,-0.00087692053,0.041033655,-0.046741422,0.04836035,0.026048172,-0.024927374,-0.004044731,-0.005479456,-0.02175178,-0.0016331996,0.0011460936,0.0045376746,-0.020952692,0.0017369771,0.016230812,-0.029597364,0.005124018,-0.003938359,0.04669991,-0.020423427,0.0075861407,0.020952692,0.026401015,-0.014009973,0.033810735,0.020402672,0.011280622,0.0053808675,0.009890003,-0.038024105,-0.011529689,0.0028383168,-0.040660053,0.005025429,0.0098951915,-0.03165216,-0.0021572763,0.045745157,0.026068928,0.025342485,0.043711115,-0.035491932,-0.027480302,0.007980496,-0.011228734,-0.012432554,0.008629105,0.030240785,0.0012887878,0.008597972,0.004594752,-0.031444605,0.027874658,0.0005811544,0.009386682,0.030095497,0.025944395,0.030738918,-0.0034272545,-0.031921983,0.008463061,0.009417815,-0.025882127,-0.0011026368,-0.05242843,-0.006818187,-0.013563729,-0.008011629,0.007492741,0.024512263,-0.013771284,-0.023910353,0.036031574,-0.005238173,-0.0017434633,0.017133677,-0.058987174,0.030738918,-0.00930366,-0.015234549,-0.006211088,0.027646346,-0.0010319382,-0.000094372735,0.00007337399,-0.054462474,0.012764642,-0.033665445,0.025093418,-0.011332511,-0.008457872,-0.019655474,0.017694077,-0.00404992,-0.0038086371,0.0141448835,-0.0036763207,0.0005312115,0.016552523,0.039124146,0.027106702,0.01939603,-0.021461204,0.028476568,-0.007622463,0.012318399,-0.0005526156,-0.017797854,0.008359284,-0.008867794,0.0049813236,0.02026776,0.0072229193,-0.02735577,-0.023806576,-0.0002868477,-0.00870175,0.039809078,-0.01814032,-0.005749278,-0.017704455,0.01855543,0.044541337,-0.02498964,-0.005910133,0.009184316,0.0033364492,-0.005295251,0.013003331,-0.02976341,0.026940659,0.040410988,0.043628093,-0.03356167,0.011405156,-0.024699064,-0.003883876,0.014601505,0.0021767346,-0.008483817,0.011342889,-0.00615401,0.0015722302,0.019894162,-0.0067092204,-0.022602756,0.0044546523,0.01087589,0.0011687949,-0.007757374,0.013345797,0.016023258,0.013999595,0.017559165,0.015182659,0.0018744825,-0.012858042,-0.03872979,0.002804589,-0.004452058,0.059360772,-0.0049034907,0.032129537,0.008255506,0.01757992,0.015141148,-0.0018563214,0.00015526099,0.005474267,-0.005095479,0.030095497,0.006003533,0.013158997,-0.0090078935,0.016853478,-0.0017616244,-0.042507295,0.019468673,0.030012475,-0.021222515,-0.027065191,0.0073889634,0.002478987,-0.020734759,0.021295158,0.011332511,-0.03345789,-0.013895817,0.028123723,-0.02559155,0.009931514,0.03235785,0.020890426,0.037152372,0.013055219,0.007539441,0.021834802,0.0072229193,0.00698942,-0.0061280658,-0.033665445,-0.023868842,0.02758408,0.012660865,0.0027423224,-0.040224187,-0.00065379875,-0.0170299,0.0093088485,-0.003240455,-0.02137818,0.021855557,-0.059858907,-0.0076899184,-0.02120176,-0.02498964,0.015161904,-0.038958102,-0.032835227,0.0009943189,0.030386075,0.01698839,-0.0048074964,0.017486522,0.0040291646,0.030738918,-0.0030899774,0.0004942407,0.0052511455,0.038252413,0.00052894134,0.009199882,-0.0004887275,-0.006688465,0.009049404,-0.00014909919,-0.02476133,0.033935267,-0.017735587,-0.013968462,0.016656302,0.05520967,0.02592364,0.024491508,-0.0051214234,-0.00018339444,0.027791634,0.005744089,0.0060554217,-0.011623088,0.0130863525,0.0030510607,-0.0033208826,0.009002705,0.042590316,0.009324416,0.005077318,-0.014559994,-0.021129115,0.030303052,-0.015971368,-0.014103373,-0.003790476,-0.005196662,-0.0012913822,0.009687637,0.004078459,0.016075147,0.014020351,0.015514748,-0.026919903,-0.05122461,0.00040927282,0.015120393,-0.018337497,0.0019224796,0.010341436,-0.06342886,0.012401421,0.020797027,-0.013729773,-0.0028772333,-0.0012362504,0.016905367,0.03476549,0.011093823,-0.024491508,-0.010035291,0.00025020126,-0.017600678,-0.012951442,-0.012474065,-0.01906394,0.013947707,-0.002763078,0.013480707,0.008577216,0.027127458,0.011322133,-0.018773364,-0.0046492354,0.026110439,-0.0064393985,0.0404525,0.009002705,0.018773364,0.014632639,-0.023516,0.0057129557,0.051515188,-0.040514767,0.034910776,-0.012847664,0.008276261,0.019966805,0.013491085,-0.02141969,0.021959335,0.029119989,0.020579094,0.008992327,-0.0033494213,-0.04225823,0.011249489,0.02438773,-0.0027085948,0.0054638893,0.039601523,0.019313008,-0.019001674,-0.018897897,-0.022187646,0.037941083,-0.010019725,-0.012660865,0.0019886377,0.00091908016,0.0081205955,-0.00985887,-0.017870499,0.006932342,0.0023765066,0.013304286,-0.010419269,0.005640311,-0.031465363,0.007368208,-0.007845585,-0.0053860564,-0.014155261,0.0070413086,0.017476143,-0.033478647,-0.017735587,0.0067040315,0.04508098,-0.024138665,-0.028019946,0.0173101,0.0072229193,0.01661479,0.013823173,-0.012816531,0.009241393,-0.020413049,-0.0012368989,0.008546083,0.040826097,0.026919903,0.00062169257,0.0120278215,0.013937329,-0.0030951663,-0.0133873075,0.0017966493,0.05002079,-0.04956417,-0.027272748,-0.01966585,-0.018762985,-0.0033442324,-0.022872578,-0.005349734,-0.0033260714,-0.01851392,-0.016282702,0.005108451,-0.009267338,-0.039954368,0.011633466,0.007622463,-0.03156914,-0.026525548,-0.00020544717,0.0035803264,-0.016811967,0.01698839,0.017102545,-0.02003945,-0.023287687,0.012152354,0.0038397703,-0.008213995,0.0171233,0.042092185,-0.0121419765,0.038854323,-0.020859294,-0.00041219156,0.0036711318,-0.023059377,-0.012930686,-0.027853902,0.0009288093,0.012432554,-0.023516,0.008852228,0.007871529,0.0039591147,-0.0072748084,-0.006382321,-0.00055683154,-0.020579094,0.028102968,-0.079535134,0.009884814,-0.0048464127,0.046824444,0.03410131,0.013843928,0.026919903,0.016324213,-0.0353674,0.0120278215,0.002179329,-0.03864677,0.026255727,0.0057285223,-0.024906619,0.022187646,0.002598331,-0.019593207,0.0063252435,0.03601082,0.027210481,0.0045039468,0.009941892,0.025487773,-0.0022480818,0.014570372,0.046492353,0.00726443,-0.011052312,-0.05184728,-0.007466797,0.034993798,-0.04391867,0.00530044,0.021544226,0.0037515594,0.020620605,-0.028393544,0.023495244,0.0057544666,0.040514767,0.031942736,0.025612306,0.030925717,0.008961194,-0.05956833,0.009199882,0.0072229193,-0.018389387,-0.0062785433,-0.031548385,-0.023910353,0.014591128,-0.007824829,-0.022415956,-0.033146556,0.0012596004,-0.05836451,0.019904539,0.040286455,-0.006927153,-0.03231634,-0.025529284,-0.0149751045]},{"id":"guide-gifs-0","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: How Tenor GIFs Work\nTenor embeds are created by the Fluxer unfurler when you send a Tenor URL as message content. Do not use custom embeds for Tenor GIFs—the API turns the URL into a type: \"gifv\" embed.","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.049556967,0.015643379,-0.010062992,-0.016466714,0.013656917,-0.04861601,-0.016558195,0.0038128283,-0.0077824825,-0.021119215,-0.010605347,-0.028646855,0.0028293997,-0.05243211,-0.00040983004,0.02647743,-0.007488434,-0.009703599,-0.005511775,0.0746491,0.008605818,-0.0075929845,-0.008971745,0.059436996,-0.026046159,0.017512219,-0.0163883,0.062207583,0.031861786,0.027575212,-0.024412556,-0.016100787,0.04354531,-0.034841474,0.013983638,0.0065866853,0.041715674,0.0347892,-0.0054693012,0.013826812,0.039180323,0.03732455,-0.00985389,-0.013722261,0.04080086,0.036958624,-0.00019613441,-0.0023246165,-0.02869913,0.042787317,0.018518519,-0.011513631,-0.04142816,0.016087718,-0.019224234,0.022125512,-0.07856975,0.015172901,-0.0088018505,-0.009089365,-0.005433362,-0.020988526,-0.01146789,0.0012603244,0.011337202,0.04950469,-0.042813454,0.0699966,-0.017551426,-0.011330667,0.05175253,-0.025967747,0.043728273,-0.005560783,-0.025314305,0.00022686656,0.02006064,0.036644973,0.000016961389,-0.050393373,0.024621658,-0.0069395434,-0.0748582,0.010592279,-0.046943203,0.026542773,-0.045009017,-0.038709845,-0.0061750175,-0.030424213,-0.05415719,-0.0133498,-0.07193079,0.024660865,0.00049539,-0.017473012,-0.0090370895,0.03690635,0.020910112,0.016244544,0.08771792,-0.03745524,-0.037873443,-0.0015217008,-0.0039729215,-0.06550093,-0.038370058,0.0017005802,-0.04100996,-0.0045773545,-0.050445646,-0.059227895,0.011840351,0.037742753,0.065187275,-0.012990408,0.020295879,0.021445934,-0.0061129406,-0.025418855,-0.057136882,-0.023576152,0.05640503,0.015486552,-0.003169189,-0.0009768943,0.0005186688,0.0002460614,-0.023419326,-0.0109386025,0.025431925,-0.05227528,0.01695026,-0.011846886,-0.009056693,-0.04686479,-0.051909354,0.002917614,-0.021563554,0.048354637,-0.009514101,-0.010664158,0.013369403,0.009318069,-0.00040084522,-0.0021269505,-0.06973523,0.029979873,-0.033586867,0.020975458,-0.05185708,-0.008827988,-0.025967747,-0.027993413,-0.054000366,-0.024961447,-0.024896102,-0.022243133,-0.02849003,-0.023667634,0.010036854,-0.01772132,0.029666223,-0.004106877,-0.03588698,0.01927651,0.051595703,-0.04255208,-0.0104746595,0.059332445,-0.042996418,-0.016793434,-0.05802556,0.02259599,0.010997413,0.000037547332,-0.02324943,-0.012055987,0.026843358,0.01871455,0.009697065,0.05405264,-0.0416634,-0.03356073,-0.027705899,0.0027183148,-0.00653441,0.030973105,0.014833111,-0.030764002,-0.040826995,-0.013473954,0.030607177,0.037141588,-0.03852688,-0.0054039573,0.047492094,0.008115738,0.07250582,0.015185969,0.03267205,0.03991218,0.0112195825,0.03455396,-0.03609608,0.021864137,0.0034861078,-0.001023452,-0.019681644,0.011108497,0.041140646,0.022674404,-0.022190858,0.0019668576,-0.06351446,0.018557725,-0.008932538,0.0035939256,-0.028516166,0.0418725,-0.049556967,0.0161792,0.028202515,0.027287697,0.00841632,0.025314305,-0.014911524,-0.008540474,0.0039925245,0.02037429,0.022635197,-0.029849187,-0.04012128,-0.043466896,-0.0127028935,0.007357746,-0.028280927,-0.024896102,0.029796911,0.0004345383,-0.051987767,0.028176377,0.01960323,-0.010363574,-0.027941138,-0.015904754,-0.027287697,-0.03878826,0.058234666,0.072871745,0.048485324,0.0037213466,0.01850545,0.0023687237,0.037716616,-0.023171019,-0.027653623,0.03933715,-0.009690531,-0.0155388275,0.03855302,-0.028882094,-0.029718498,-0.014728561,-0.041088372,-0.021341383,-0.039128046,-0.01582634,0.006854596,0.007985049,0.0049792207,0.0044401316,-0.009004417,0.020622598,-0.031286757,0.08233357,0.05671868,0.0075407093,-0.019564023,0.0056163254,-0.0069526127,-0.04908649,-0.007723673,-0.014650147,-0.008024256,-0.0152121065,-0.03092083,-0.016375232,0.007612588,0.023079537,0.038160957,0.015878616,0.029221883,-0.009625186,-0.019250372,0.06931702,0.023118744,0.018427037,0.0015192503,-0.009651324,-0.06340992,-0.053686716,0.005158917,0.025392719,0.007168248,0.0030368671,-0.021877205,0.011859954,0.049164902,-0.0014808608,0.011611647,0.0041493503,-0.03079014,0.009122036,-0.026307536,0.046106797,0.03311639,0.0045773545,0.0076844664,-0.04255208,0.01706788,-0.008658093,0.018322486,-0.019302648,-0.018792965,-0.019799262,-0.021877205,-0.003597193,0.01585248,-0.015604172,0.015003006,-0.03146972,0.02404663,0.02616378,0.0124741895,-0.01761677,-0.025967747,-0.014480253,0.0007608504,0.035050575,-0.008997883,-0.023458533,-0.0027607884,0.0055575157,-0.018413968,0.055673175,0.0033341828,0.008808385,0.0082921665,-0.025379648,-0.005884236,0.034501687,-0.007357746,0.003275373,0.025745576,0.021027733,0.020256672,-0.050158132,-0.039075773,0.0052503985,-0.042055465,-0.00592671,-0.02348467,0.030659452,-0.030058287,0.01102355,-0.013277922,0.045061294,0.03366528,-0.00035571697,-0.004567553,0.059646096,0.0073708147,0.0063155075,-0.011343736,-0.014558666,0.014676285,-0.03745524,-0.008599284,0.008233357,-0.0066324263,0.00412648,-0.012042918,-0.020740218,-0.014414909,-0.05415719,0.034397136,0.014467184,-0.01057921,0.05162184,0.0065246085,0.008769179,-0.043780547,-0.020570323,0.059698373,0.030319663,0.05739826,0.03212316,0.00006478255,-0.0152121065,0.029666223,-0.0026578715,-0.026895633,-0.00062648655,0.008912936,-0.03779503,0.032279987,0.016100787,-0.003711545,-0.0416634,-0.006583418,-0.03434486,0.018231004,0.0121344,-0.024804622,0.019629369,-0.008625422,-0.043780547,0.024804622,0.03447555,-0.062782615,-0.025980815,-0.0021628898,-0.0044368645,-0.016087718,-0.03468465,0.016048511,0.0048191277,0.030659452,-0.033848245,-0.016336026,-0.012807444,-0.019916883,0.026555844,-0.022870436,-0.00092053507,0.041271336,0.0023327845,0.037298415,0.019733919,-0.0069722156,0.0040219296,0.048589874,-0.023367051,-0.028751405,0.011441752,-0.015081419,0.010396247,0.014820042,-0.029457122,-0.03175723,0.03609608,-0.016205337,-0.024987584,-0.021681173,0.021367522,-0.0016719922,0.033822108,0.047230717,-0.008671163,-0.037193865,-0.01761677,-0.016205337,-0.0061750175,-0.008213754,-0.021772655,-0.010657623,-0.025850127,0.034057345,-0.035050575,-0.03857916,0.02560182,-0.04176795,0.0058221593,0.009860425,-0.044407852,0.015107556,-0.041375887,0.056091376,-0.019668575,0.018897515,-0.032698188,-0.035521053,-0.03301184,-0.060012024,0.10747798,0.022203926,-0.0533992,0.02616378,-0.06586686,-0.021498209,0.006848062,0.0023164484,-0.01417967,0.034867615,-0.0013019813,-0.053320788,-0.076896936,-0.018531587,-0.02825479,0.026320605,0.059018794,-0.02249144,-0.0011026817,0.057659637,0.0030711729,0.05232756,0.02935257,0.0011075825,0.01023942,0.0021465537,-0.016205337,-0.028307065,0.022334615,-0.02004757,0.030633315,-0.033848245,0.040069003,-0.0040742047,-0.024504038,-0.018348623,-0.0014555398,-0.003045035,-0.033403903,0.009899631,0.029430984,0.026294466,-0.018923651,-0.039493974,-0.030659452,0.026333673,-0.04882511,0.014820042,0.010781777,-0.038814396,0.015172901,-0.02470007,0.02228234,-0.045139704,-0.06675553,-0.0045871558,0.022556784,0.016649676,0.029927598,-0.041506574,0.015159831,-0.034109622,-0.027679762,-0.0242688,-0.0005684937,0.040461067,-0.04001673,0.02040043,0.007044094,-0.010115267,0.015094488,0.014218877,0.00035081615,0.018244073,0.00075186556,0.013578504,-0.03102538,0.005034763,0.018361693,-0.007194386,0.03047649,-0.0031512193,0.019890744,-0.030188976,-0.03465851,0.007815154,-0.016780365,0.025993884,0.025209755,0.0011092161,-0.0072205234,-0.017316187,0.013108027,-0.006629159,0.008050393,-0.013016545,-0.021694241,0.013748399,-0.01136334,-0.008233357,-0.027287697,-0.045061294,0.018217936,0.017878147,-0.0097297365,0.037847303,0.030241251,-0.0053288117,-0.02338012,-0.011284926,-0.010605347,-0.007599519,-0.028437754,-0.027967276,0.013023079,0.00060443295,-0.03988604,-0.011755404,-0.0011933467,0.013905225,0.007514572,0.025863195,0.008259495,-0.024242662,-0.033299353,-0.0071617137,0.007906636,-0.025954677,-0.051255915,-0.031286757,0.01662354,-0.021877205,0.030424213,0.0038193627,0.030293526,0.019250372,-0.013369403,-0.0027885595,0.00703756,-0.038814396,0.020335084,-0.005211192,-0.040696308,0.0047537833,-0.028960506,0.016035443,-0.031365167,0.035808567,0.0018263677,-0.011095429,-0.02238689,-0.013722261,-0.005515042,-0.012232416,-0.025863195,-0.0053124754,-0.01450639,0.023654565,0.02471314,-0.018257143,0.017956559,0.007468831,0.018074179,-0.032855015,0.0033652212,-0.025654094,0.0074165557,0.008357511,-0.0418725,0.023223294,0.02781045,-0.023628427,0.0000010305735,-0.055568624,0.0198254,-0.02859458,-0.0035089783,0.020439636,0.0009605583,-0.04001673,0.0117292665,-0.0029094461,-0.0065670824,-0.020387359,-0.036514286,-0.010389713,0.0051556495,0.013565436,-0.0116835255,0.046943203,-0.004159152,0.020583393,-0.037376825,0.031887922,0.009474895,0.003953318,0.02969236,-0.03625291,0.02570637,0.018779894,-0.014140463,-0.0058188923,-0.0011476058,-0.0042931074,-0.04344076,-0.014062051,0.03722,0.03578243,-0.0004525079,0.014702423,-0.008507802,0.0027591547,-0.005466034,0.011781542,-0.030502627,-0.0013338365,-0.008932538,-0.023458533,-0.041088372,0.013036149,-0.003263938,-0.0040709376,0.008481665,0.03387438,-0.017041741,-0.037533652,-0.010768708,-0.024752345,0.004809326,0.043466896,0.004472804,0.01672809,0.0069395434,0.02315795,0.0015935793,-0.014532528,0.0028016283,-0.021981755,0.018753758,-0.014728561,-0.035913117,-0.0038487676,-0.0044956743,-0.004463002,-0.01551269,-0.004332314,0.02050498,-0.0068872683,0.031417444,-0.050785437,0.007664863,0.001401631,0.001816566,-0.016662747,-0.018623069,-0.006743511,0.026791083,0.033952795,-0.004413994,0.0009058326,0.017512219,0.013330197,-0.021184558,0.00053949724,-0.020910112,0.011827283,0.010990878,-0.006583418,0.006743511,-0.03092083,-0.007893568,0.042891867,-0.03246295,0.015970098,0.05107295,0.004299642,0.020570323,-0.010389713,0.0027558876,-0.0043355813,-0.027888862,0.0023295172,0.010343972,-0.001862307,-0.030554902,-0.008122272,-0.005430095,-0.002515748,-0.021837998,0.0126114115,-0.011101963,-0.0327766,0.0057600825,0.004368253,0.013460885,-0.042813454,-0.00088704616,-0.011585509,-0.00831177,-0.013578504,-0.0076060533,-0.0034370997,-0.023210226,-0.0009899632,-0.026843358,-0.012977338,-0.008350976,0.015891686,-0.04255208,-0.013140699,0.04080086,-0.008272563,-0.06581458,-0.03857916,0.04210774,-0.032070886,-0.024294937,-0.023785254,-0.0028882094,0.0032949764,0.045845423,0.027183147,-0.005717609,-0.032724325,0.012513395,-0.015185969,0.027705899,0.028934369,-0.0064559975,-0.014140463,-0.0054921717,0.011415615,-0.041088372,-0.015486552,0.042578217,-0.004472804,0.027183147,0.018688412,0.009520636,0.006083536,0.01874069,-0.0008927638,0.0127028935,-0.017015604,0.019995295,-0.005769884,0.028202515,-0.00079638127,0.027183147,-0.021080008,0.031966336,-0.0025631224,0.015264383,-0.00786743,0.0036625369,-0.035076715,-0.01928958,0.038709845,0.0022478371,-0.007893568,-0.001862307,-0.026843358,0.018570794,0.025118273,0.011814213,0.019341854,0.024203455,0.02060953,-0.021445934,-0.0054366295,0.00021767755,-0.0325675,0.0016744427,0.0032868083,0.043597586,-0.033403903,0.016649676,-0.023197155,-0.013578504,-0.00093360385,-0.051987767,-0.069421574,0.008540474,-0.009252725,0.034214173,0.023288637,0.032541364,0.0017201835,0.023210226,-0.0086973,0.018204866,0.018649207,-0.031260617,0.02138059,0.008579681,0.044277165,0.02138059,-0.0091285715,-0.032044746,0.0050380304,-0.005122978,0.011036619,0.068219244,-0.021524347,-0.001138621,-0.0026644059,-0.01197104,-0.04788416,-0.03468465,0.027313834,-0.01157244,-0.012644084,0.055464074,-0.02283123,-0.023301708,-0.028960506,-0.048589874,-0.03047649,0.026111504,-0.0069264746,-0.004505476,-0.04307483,0.00085927494,-0.03267205,0.013160302,0.00042310305,-0.03379597,0.007213989,0.027470661,0.015342795,-0.018792965,-0.011925299,0.0645077,-0.011376408,-0.041846365,-0.051883217,-0.03212316,0.0026807417,0.0035906583,-0.008024256,0.009311534,0.0033325492,-0.027392248,0.024190387,-0.012036383,-0.018413968,0.01251993,-0.016701952,0.012637549,0.012689824,-0.029770773,0.01628375,-0.0014604407,-0.039833765,0.0396508,-0.034188036,-0.027496798,-0.0015609072,-0.00819415,0.040565617,0.013473954,-0.014062051,0.03123448,-0.008527406,-0.02415118,0.016035443,0.03403121,0.028751405,-0.011578975,0.022582922,-0.028333202,-0.0074818996,0.021811862,0.030398076,-0.0023115475,-0.01717243,0.03544264,0.0009540239,-0.03165268,0.014336496,-0.014062051,0.0074361586,-0.033508457,0.0031348832,0.041715674,0.011801145,-0.0076387255,0.01451946,0.010298231,0.030162837,0.0095010325,0.02004757,-0.029535534,0.016192269,-0.005181787,0.054679945,0.029509397,-0.03557333,0.012768238,-0.029640084,-0.011650854,0.012016781,0.016440576,0.016871847,0.02616378,-0.019890744,0.0019227501,0.013304059,-0.009834288,-0.011513631,-0.040356517,0.0027019787,0.023563083,-0.00725973,-0.025288168,-0.02460859,-0.00891947,-0.0067173736,-0.0005399056,-0.020335084,0.0045479494,0.014663217,-0.0060443296,0.022295408,0.0053614834,0.035521053,0.005018427,0.010383178,-0.028855955,0.0033096788,0.038056403,-0.000049237802,0.00077514444,-0.028829819,-0.017577564,-0.015917823,0.01296427,0.020518048,0.013944431,-0.0068676653,0.006750046,0.038160957,-0.0038258971,-0.010977809,0.019537887,-0.019211166,0.03246295,0.02505293,-0.0140489815,-0.005992054,0.03588698,0.011605113,0.005894038,0.019015133,0.03146972,-0.040251967,-0.044172615,-0.015656447,0.024804622,0.020491911,-0.00420816,-0.00033815572,0.018361693,0.00023340096,0.0057110745,-0.011846886,0.020661805,0.0069852844,-0.038187094,0.017551426,-0.013656917,0.021367522,-0.022635197,-0.0006505822,-0.006139078,-0.046368174,-0.005635929,0.004319245,-0.020740218,-0.014310358,-0.00040431664,0.0100107165,-0.010716433,-0.010696829,-0.0012325532,0.018649207,-0.0050282287,0.0007294035,0.010259024,0.029666223,0.017930422,-0.0095010325,-0.024778483,-0.031417444,0.010690295,0.0027199483,0.01312763,0.038396195,-0.02846389,0.0056097913,0.044224888,0.021641966,0.011271858,-0.029065056,-0.0033325492,-0.0418725,0.018244073,-0.011997177,-0.0327766,0.024294937,0.020021433,-0.0064069894,0.017799733,0.029979873,0.0027199483,-0.048459187,-0.015787136,0.033848245,0.012637549,-0.009108968,0.029065056,0.02969236,-0.0016924122,0.0127028935,-0.010069526,-0.019080479,0.03465851,-0.022543715,-0.026974045,-0.05813011,0.0041362816,0.0163883,-0.016466714,-0.000030502422,-0.0057633496,0.046368174,0.021498209,-0.024033561,0.0045283465,-0.017603701,0.03510285,0.01595703,0.0012505228,0.007044094,-0.010461591,-0.025941608,-0.028882094,-0.0007820872,-0.034972165,0.021694241,0.013016545,-0.00018041098,0.0054594995,0.014571735,-0.009958441,0.030006012,0.010605347,0.0032688386,-0.013140699,-0.018688412,-0.0062240255,-0.0112653235,0.059175618,-0.0030025614,-0.0045871558,0.0043388484,0.0119122295,0.019080479,0.0266996,0.047335267,0.003324381,0.020975458,-0.013696124,0.02637288,0.00024871598,-0.013722261,0.025105204,0.016270682,-0.036749523,0.00997151,-0.0038814396,-0.027575212,-0.016087718,0.007213989,-0.01063802,0.039467838,-0.019799262,-0.0058384957,-0.017146293,0.017263912,0.015434277,0.0012096827,-0.0396508,-0.0030286992,0.0130753545,-0.0079197055,-0.007887033,-0.0060116574,-0.03588698,-0.0015502889,0.010272093,0.005034763,-0.01727698,-0.024033561,0.0038651037,-0.04074858,-0.0061227423,-0.007168248,-0.00037266559,-0.02481769,0.014663217,-0.049713794,-0.0004414811,0.045793146,0.04095768,-0.002030568,0.041950915,-0.01114117,-0.00792624,0.008645025,-0.007044094,0.014114326,0.0067173736,0.0007682016,0.019315716,0.014702423,0.010886327,0.029483259,0.008324838,0.0010847121,0.012931597,-0.015970098,0.02050498,0.0080111865,-0.0023932278,-0.0060966047,-0.0015176168,0.029378708,0.029300295,0.010108733,-0.034109622,0.018113386,-0.0046100263,-0.012794375,0.0067696488,0.026111504,-0.043728273,0.03160041,0.013970569,-0.05661413,-0.022569852,0.04286573,0.0048452653,-0.027575212,0.020596461,0.026869494,-0.016701952,0.0014955632,-0.01817873,0.006596487,0.0022984787,0.023968216,0.004828929,-0.010553072,0.011637785,0.027732037,0.023824459,-0.006449463,-0.04540108,0.014663217,-0.02383753,-0.0035285815,0.02383753,-0.025967747,-0.012114797,0.0037932252,-0.0054889047,0.024321076,0.017133223,0.009664393,0.037246138,-0.058234666,0.02259599,-0.0069722156,-0.007102904,-0.036592696,0.036279045,0.042499803,0.0036527354,-0.01429729,-0.0030368671,-0.013487022,0.011284926,-0.016479783,0.006913406,-0.019812332,-0.038134817,-0.02515748,0.0440942,-0.024321076,-0.012278156,-0.024111973,0.028385477,-0.00054521486,0.006991819,-0.004717844,0.026059227,-0.012480724,-0.002437335,0.030868554,-0.055673175,-0.017799733,0.0126114115,-0.017133223,0.035834707,-0.0025451528,0.0056620664,0.0060672,-0.02182493,-0.0030711729,0.005779686,-0.03536423,-0.026085366,-0.009847356,0.018792965,0.012493792,0.04163726,-0.014637079,-0.033743694,0.047256853,0.0013428213,0.0035449176,-0.019328786,-0.012709428,-0.03434486,0.021772655,-0.01551269,-0.015904754,0.011115031,0.029326433,-0.03954625,0.008827988,0.02835934,-0.029300295,-0.0061227423,0.0043845894,-0.02835934,0.016349094,-0.026621187,-0.027130872,-0.03112993,-0.015943961,-0.001278294,-0.046681825,-0.031887922,-0.01351316,-0.0067696488,0.01462401,0.015551896,-0.010363574,-0.011886092,0.042186152,-0.019564023,0.0021236832,0.006913406,0.019537887,0.033586867,-0.00067794503,0.009605583,0.011886092,0.01717243,-0.000671819,0.02192948,0.0012219347,-0.01351316,0.0325675,0.028725266,-0.0032982435,-0.0033521524,0.014101258,0.018518519,-0.01616613,0.010324368,0.011676991,-0.030528765,-0.027627487,0.021798793,-0.006233827,0.000026265267,-0.03246295,0.037638202,0.027836587,-0.0050739697,-0.023680702,-0.04798871,0.03311639,0.016610472,-0.037612066,0.011918765,-0.009076295,-0.018427037,0.016571265,0.011611647,-0.002179226,-0.01861,0.04696934,-0.01290546,0.005322277,-0.004926945,-0.030162837,-0.03290729,0.019655505,-0.005181787,-0.011533234,0.010455056,-0.010147939,0.005381087,-0.0004917144,0.027287697,0.008775713,0.019250372,0.0014775936,-0.0064429287,-0.009638255,-0.004672103,0.0026072296,0.0059169084,-0.013003476,-0.0032933427,-0.0049628844,-0.022805091,0.030554902,-0.015891686,-0.0023148148,-0.03766434,0.021798793,0.0015364032,-0.020034501,0.00017316187,-0.027888862,0.0072074546,-0.018897515,-0.037821166,-0.005109909,0.0051360466,-0.005064168,0.01772132,0.010448522,0.030215112,-0.025980815,-0.022504508,-0.014898456,0.0035155127,0.00018306558,0.009089365,-0.017459944,-0.016009305,0.020975458,0.016453644,0.010259024,0.012317363,-0.019354923,-0.0062044226,0.029457122,0.0029976608,-0.057555087,-0.0015870449,0.022138583,-0.0051001073,-0.026385948,-0.014414909,0.022765886,0.013487022,-0.017054811,-0.036958624,-0.02047884,0.022648266,0.004410727,0.0012554235,0.001973392,0.024425626,0.021406727,0.0057437466,0.024909172,0.033952795,0.0033096788,0.03975535,0.014898456,0.018126454,-0.0032819074,0.036122218,0.023732977,-0.03424031,0.027104734,0.012853185,-0.0034044278,0.013062286,-0.015996236,-0.0009033822,0.015172901,0.010696829,-0.030162837,0.015251313,-0.027418384,0.022203926,-0.0122389505,-0.001319134,0.01063802,-0.0015756097,-0.027235422,-0.0005758449,-0.027339973,0.013722261,0.016022373,0.027941138,-0.04221229,-0.02348467,0.026947908,0.059436996,-0.03092083,0.019315716,-0.014806974,0.01429729,0.010873259,0.0025386184,-0.012761703,0.024294937,0.04297028,-0.010200215,-0.005430095,0.012925063,0.02449097,-0.065762304,-0.02394208,-0.016532058,-0.029457122,-0.023079537,0.018061109,-0.0053288117,-0.034815338,-0.0040317313,-0.01280091,-0.0034763063,0.011592044,-0.05217073,-0.0034109622,0.0325675,-0.012820513,-0.012598343,0.0072074546,0.00015243553]},{"id":"guide-gifs-1","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Send a Tenor GIF\nSend the Tenor URL as content. No embeds needed. The unfurler detects the URL and creates the gifv embed.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!gif') {\n const tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\n await message.reply({ content: tenorUrl });\n }\n});\n```","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.043715186,0.0022995588,-0.017561492,-0.022988854,0.0046496205,-0.03617344,-0.044011466,0.029089587,-0.0018770191,-0.0023500614,-0.0020520953,-0.015083489,0.01155503,-0.045816097,0.014827609,0.042368446,-0.019446928,0.0029156923,0.016174348,0.059364304,0.02498203,-0.0062286733,0.004100824,0.046758816,-0.027392695,0.029466674,-0.042341508,0.036685202,0.029682152,0.0079525,-0.008376723,-0.02638264,0.019541198,-0.03857064,-0.00019948588,0.055539563,0.038112745,0.040509943,-0.033668503,0.0041109244,0.025224444,0.015527913,0.03181,-0.012605487,0.03415333,0.02756777,-0.0062859096,0.0014772055,-0.004740525,0.02529178,-0.0019056373,-0.011393421,-0.03022085,0.04228764,-0.015783794,0.0060401293,-0.069545664,0.017925112,0.00041096617,-0.0050166068,0.009999545,-0.022934984,-0.018369535,-0.009656127,0.016551437,0.04732445,-0.034234133,0.068845354,-0.0021716184,-0.000418752,0.040132854,-0.010955731,0.053492516,-0.0151373595,-0.02036271,-0.008807681,0.0036867012,0.0041210246,0.01308358,-0.05984913,0.032860458,-0.019258384,-0.07967315,-0.010282361,-0.049775515,0.020133765,-0.06976114,-0.029170392,0.0035486603,0.008235316,-0.01937959,-0.0015268666,-0.070084356,0.010470904,0.017561492,-0.03202548,-0.013790619,0.039701898,0.03140598,0.03202548,0.10860112,-0.030840348,-0.047620732,0.017251741,0.0022507394,-0.017399883,-0.018275263,0.015608718,-0.024645345,0.024335595,-0.041075572,-0.037412442,0.02010683,0.034072526,0.054542974,-0.031082762,0.017884709,-0.0099120075,-0.014787206,-0.033614635,-0.07951154,0.0016825835,0.06243487,0.009393512,-0.0010883344,-0.02487429,-0.02161518,-0.0077706906,-0.026194096,0.0077235545,0.028577825,-0.03582329,0.022450158,-0.0020419948,0.0023786798,-0.022423223,-0.028173804,-0.015002685,-0.04072542,0.07126949,0.0105786435,-0.030867284,0.0101544205,0.008518131,0.021049548,0.00647782,-0.075201966,0.026153693,-0.032321762,0.0020318942,-0.040752355,-0.0010841258,-0.022436691,-0.009130898,-0.034018654,-0.01570299,-0.029682152,0.0040604216,-0.041129444,-0.056616955,0.026557716,-0.021009145,0.04468484,-0.018679285,-0.024470268,0.025143638,0.04974858,-0.016537968,-0.0036530327,0.058556262,-0.034288004,-0.016834252,-0.0342072,0.04037527,0.027769782,0.010410301,0.0011119023,-0.0028651897,0.016403295,0.048321035,0.030328589,0.064859,-0.030247783,-0.045331273,-0.03684681,0.0044644433,-0.0012238501,0.032725785,0.0042354977,-0.026409574,-0.04015979,-0.0017574959,0.031055827,0.0348267,-0.017399883,-0.0052758544,0.059148826,0.0051344465,0.05613213,0.004292734,0.009723464,0.034745894,0.0024998863,-0.0035183586,-0.01839647,-0.0052994224,-0.003710269,0.009750399,-0.024106648,0.009110697,0.060926523,0.026207563,-0.013144184,-0.005767415,-0.059148826,0.021413168,0.0028332046,0.011945585,-0.013177852,0.037654854,-0.05093371,0.020147232,0.027015608,0.0065855593,0.03892079,0.020739798,-0.010821057,-0.013043178,0.0029948133,0.021399701,0.033453025,-0.03943255,-0.05731726,-0.022382822,0.014477456,0.009252105,0.0031395878,-0.008787479,0.017992448,-0.0072589293,-0.015272033,-0.004366805,0.029062653,-0.006188271,0.025897812,-0.00746094,-0.038597573,-0.041129444,0.049937125,0.067390874,0.058179174,-0.009063561,0.014369717,0.0050065066,0.033318352,-0.0421799,-0.027554303,0.02041658,-0.0010403567,-0.017453752,0.041129444,-0.03062487,-0.022719506,-0.0014864644,-0.039055463,-0.018840894,-0.0015899951,-0.0052657537,0.008026571,0.032160155,0.008652805,0.0008366623,-0.009582056,0.037170026,-0.027109878,0.08694554,0.04223377,0.010854726,-0.02938587,0.01435625,-0.017844306,-0.029305065,-0.022167342,-0.02860476,-0.013831021,-0.0045284135,-0.011056736,-0.02605942,0.005528368,0.037143093,0.03539233,0.008026571,0.03959416,-0.008154511,-0.0066427956,0.08128923,0.031082762,0.010174622,0.029332,0.0046866555,-0.053708,-0.059633654,0.036927614,0.015595251,-0.010484372,0.04021366,-0.023258202,0.01917758,0.05634761,0.000025448653,0.0021211158,0.02425479,-0.024753084,0.027850585,-0.0317292,0.02876637,0.0019510897,0.030113108,0.016147414,-0.019056372,0.031055827,0.0067337006,0.015797261,-0.006949179,-0.027688976,-0.028927978,0.0006683198,-0.004454343,0.021884527,-0.016591838,0.011225079,-0.018585013,0.014208108,0.021493973,0.029251195,-0.004504846,-0.032052416,-0.018665818,0.016295556,0.04613932,-0.024335595,-0.0385437,0.004612585,-0.019891351,-0.024955094,0.051014517,0.019783612,0.0048684655,0.0033466492,-0.03663133,-0.02296192,0.03207935,0.007784158,0.008565268,0.014733337,0.015164294,0.014692935,-0.0409409,-0.029628282,-0.010827791,-0.043795988,-0.01595887,-0.0050098733,0.01968934,-0.0044206744,0.02616716,-0.034584288,0.036254246,0.0708924,-0.019931754,0.00654179,0.077572234,0.023298604,0.01093553,-0.014800674,-0.04923682,-0.0026362438,-0.02254443,0.0032557442,0.02642304,-0.025843943,0.02156131,-0.03579635,-0.0042624325,-0.04861732,-0.033776242,0.02125156,0.0025200874,-0.013420265,0.028739434,0.045519818,0.0024561174,-0.07800319,0.012349607,0.038382094,0.028793303,0.0452774,0.048536513,-0.006457619,-0.0019073207,0.037897266,0.011514628,-0.03170226,0.0039526825,0.002169935,-0.032725785,0.017978981,0.01741335,-0.010544975,-0.04969471,-0.023756497,-0.0384629,0.018356068,0.019568134,-0.0011834479,0.015325903,0.022059603,-0.031675328,0.030382458,0.037493244,-0.07649484,-0.015568316,0.010417035,-0.016430229,-0.033453025,-0.02156131,0.026099823,-0.015514446,0.034045592,-0.02876637,-0.026638519,-0.033937853,-0.013602075,0.027231086,-0.0060131946,0.0018770191,0.019393058,0.022840712,0.042314574,0.015204696,-0.001777697,-0.0010933847,0.036254246,0.000044979017,-0.006747168,0.013561673,-0.017534556,0.011649302,0.0075215437,-0.00463952,-0.010046681,0.0060603307,-0.018611949,-0.036496658,-0.0385437,0.029197326,-0.027096411,0.042314574,0.050448887,-0.023339007,-0.022396289,-0.0019898086,-0.016282089,-0.008504664,-0.015002685,-0.027298423,-0.0062421407,-0.021844124,0.024120117,-0.021413168,-0.037493244,0.029655218,-0.034853633,0.020591656,0.018046318,-0.043203425,0.033614635,-0.035580873,0.05260367,-0.0171036,0.043257292,-0.0066091274,-0.034961373,-0.03181,-0.061572958,0.09028546,0.017884709,-0.07816479,0.012248602,-0.040860094,-0.02949361,0.0068010376,-0.016349426,-0.016066609,0.037089225,-0.0054778657,-0.028820239,-0.05141854,-0.011770509,-0.045816097,0.0047607264,0.034907505,-0.04683962,0.0015327586,0.04907521,0.013581874,0.05416589,0.007649484,0.0021042814,0.028281543,0.014544793,-0.017319078,-0.040698487,0.022126941,-0.02254443,0.04659721,-0.028443152,0.044630967,-0.02803913,-0.021844124,-0.013817553,0.004881933,-0.007528277,-0.04296101,-0.013177852,0.01964894,0.01850421,-0.022517495,-0.020443516,-0.03840903,0.03409946,-0.034503482,0.013130716,0.0054340963,-0.027527368,0.033937853,-0.028066065,-0.0049560037,-0.038220484,-0.054489106,0.0026025753,0.009258838,-0.0003259532,0.030140044,-0.043903727,0.0032557442,-0.009952409,0.011218346,-0.0268944,-0.00026198305,0.04145266,-0.04323036,-0.0019611903,0.0016539652,-0.0021951864,0.0054643983,0.015070022,-0.013400064,-0.0045923837,0.016430229,0.028847173,-0.018746622,0.0128344335,0.0094271805,-0.012019656,0.014598663,-0.007535011,0.039944313,-0.037277766,-0.011662769,0.019985624,-0.026409574,0.022073071,0.028308477,0.02414705,0.00038550436,-0.010827791,0.013831021,-0.009056827,0.031756133,-0.010228491,-0.009837937,0.014235043,-0.0016556487,-0.012969107,-0.022221211,-0.016147414,0.012558351,0.014612131,-0.00946085,0.028927978,0.016928524,0.0063768146,-0.028200738,-0.01430238,-0.021049548,-0.026315302,-0.019850949,-0.035365395,0.0033045637,0.0077706906,-0.043418903,-0.009265572,-0.0032641613,0.012019656,0.0045789164,0.0342072,-0.004589017,-0.01026216,-0.019581601,-0.019204514,0.021305429,-0.043984532,-0.07450166,-0.021063015,0.0034005188,-0.007359935,0.026288368,0.007535011,0.027446564,0.020928342,-0.005518268,0.017736567,0.016160881,-0.02451067,0.021857593,0.0015908368,-0.013608809,-0.013669413,-0.018989036,0.012544884,-0.02336594,0.030301653,0.002158151,-0.027715912,-0.03752018,0.004255699,-0.0099120075,-0.00433987,-0.03388398,0.0021076484,-0.007918832,0.03797807,0.014868011,-0.002003276,0.034530416,-0.0065990267,0.010006279,-0.027473498,0.0050233407,-0.0207802,0.011103872,0.02554766,-0.04363438,0.0189621,0.017507622,-0.048590384,-0.0052994224,-0.079780884,0.043176487,-0.017319078,0.0134472,-0.014396652,0.03291433,-0.046193186,0.022530962,-0.01148096,0.009521453,-0.032267895,-0.02487429,0.0003821375,0.020497385,0.02461841,-0.01575686,0.056455348,-0.016982393,0.021224624,-0.060818784,0.03202548,-0.006030029,0.023190865,0.021722918,-0.0378434,0.013871423,0.02125156,-0.01302971,-0.012484281,-0.00011005392,-0.007945767,-0.020174168,-0.018652352,0.032240957,0.04201829,0.026813596,0.021682516,-0.016066609,-0.0070232498,-0.0027540836,0.015123892,-0.03773566,-0.0009435598,-0.019191047,-0.022921517,-0.032860458,0.02285418,-0.008646072,0.0031395878,-0.00048019702,0.04789008,-0.0102150235,-0.029358935,-0.010693117,-0.034584288,0.009528186,0.012901771,0.0010773921,0.009938942,0.0062657082,0.014073434,-0.010477638,0.00958879,0.01135302,-0.018100187,0.018005915,-0.0153797725,-0.042368446,0.0030621504,0.0051007783,-0.014935348,-0.011157742,-0.00084381684,0.03590409,-0.0006030871,0.029224262,-0.0825821,0.00746094,-0.004316302,-0.014989218,-0.016389828,-0.023285137,0.00003519411,-0.005844852,0.017144002,0.003294463,-0.008147778,0.015447109,0.004424041,-0.028254608,-0.022261614,-0.002430866,-0.0063801813,0.011292416,-0.023702627,0.0058852546,-0.018531144,-0.019958688,0.012794031,-0.035257656,0.007070386,0.032941263,-0.0042220303,0.0041479594,-0.012639157,0.01288157,-0.0048246966,-0.01622822,0.011043269,0.009784067,0.0085787345,-0.038139682,0.011400155,0.014504391,-0.0010967515,-0.012760363,0.022813778,-0.0033331818,-0.059903,0.020012558,0.00886155,0.0051176124,-0.026988672,0.004191729,-0.004023386,-0.005309523,0.01730561,-0.0006430684,-0.012659357,-0.03218709,-0.025224444,-0.011514628,-0.036146507,0.0058616865,0.025830476,-0.041156378,-0.018073253,0.030032305,-0.01228227,-0.06830666,-0.035473134,0.03857064,-0.0421799,-0.034961373,-0.0051883166,-0.014989218,0.006514855,0.03566168,0.01923145,-0.012544884,-0.019339189,0.010767187,-0.010955731,0.04072542,0.032160155,-0.0001270986,-0.019568134,-0.0062623415,-0.007380136,-0.05031421,-0.024887757,0.032510307,0.006498021,0.015716458,0.0087605445,0.010363165,-0.006147869,0.030894218,-0.011225079,0.016362892,-0.0060468633,0.030193914,-0.01393876,0.031001957,-0.0004469494,0.020699397,-0.011130807,0.02269257,0.008268984,0.0124708135,0.004346604,0.0052522863,-0.053142365,-0.004248965,0.058071434,0.0152855,0.0034005188,-0.01191865,-0.029116523,0.009050094,0.01746722,-0.007629283,0.009622458,0.033453025,0.024806954,-0.020483917,-0.015689522,-0.0026412942,-0.037062287,0.000070809074,-0.0016219801,0.047297515,-0.039405618,0.017911645,-0.0081410445,-0.024268257,0.014127304,-0.015245099,-0.04538514,0.00005823599,-0.0006115042,0.034799766,0.031594522,0.022679104,-0.000773113,0.01492188,0.011642569,0.0140464995,0.014437054,-0.03073261,0.011204878,0.0014982484,0.044065338,0.046624143,-0.0022743074,-0.019150645,-0.0034291372,-0.0013618909,0.0023551118,0.058556262,-0.0256554,0.01430238,0.00023041882,-0.008747078,-0.046812687,-0.04902134,0.015931936,0.013285591,-0.026988672,0.05120306,-0.024443334,-0.006706766,-0.0050940444,-0.026598118,-0.0116089,0.018207926,-0.009292507,0.0031732565,-0.04877893,-0.0027136814,-0.047809273,0.017736567,-0.008322854,-0.031998545,0.002700214,0.039890442,0.03145985,-0.038112745,-0.0009848038,0.05211884,0.00971673,-0.036658265,-0.039163202,-0.03509605,0.0145313265,-0.020914875,-0.005646208,-0.020403113,0.014814141,-0.004854998,0.021278495,-0.012571819,-0.021803724,0.035015244,-0.01430238,0.0039257477,0.011278949,-0.01766923,0.0054071615,-0.003318031,-0.032240957,0.038786117,-0.027136814,-0.018787025,0.00030701468,0.0034274536,0.038139682,0.017251741,-0.024685746,0.028470086,-0.002328177,-0.020901406,0.00052312436,0.031432915,0.043418903,-0.0024241323,0.01210046,-0.025668867,-0.016349426,0.034395743,0.027904455,0.012921971,-0.022194277,0.050610494,-0.015177761,-0.019716276,0.007629283,-0.0019948587,0.015945403,-0.013352929,-0.0013147551,0.047917012,0.01533937,0.001168297,0.010289094,0.034072526,0.02083407,0.01912371,0.016080078,-0.01932572,0.0003791915,0.004434142,0.049209885,0.040806226,-0.015393239,-0.000576994,-0.022355886,-0.010342964,0.023244735,0.016457165,0.015554848,0.021399701,-0.026005551,-0.00598626,0.024497204,-0.004747259,-0.02554766,-0.045896903,0.0063768146,0.016335959,-0.0019275218,-0.02041658,-0.03202548,-0.008928887,0.010659448,-0.022423223,-0.006124301,0.009521453,0.0067202332,0.0005900405,0.024968563,-0.0012246919,0.02539952,-0.012450612,0.0072319945,-0.033399154,-0.0014241777,0.011467492,-0.01621475,-0.008706675,-0.030840348,-0.007245462,0.0072656632,0.00213795,0.026598118,0.018733155,-0.026975205,0.008524865,0.024524137,-0.010975932,-0.010652714,0.006026662,-0.007218527,0.033910915,0.020403113,-0.023096593,0.006865008,0.019972157,0.017157469,-0.0017591793,-0.0017473954,0.042799402,-0.033453025,-0.018356068,-0.005242186,0.008895218,0.026988672,0.01020829,0.019837482,0.0036294647,0.024025844,0.0096089905,0.0017154103,0.016107012,-0.0023921472,-0.030786479,0.008329588,-0.0071646576,0.020672461,-0.033506893,0.0003303722,-0.0268944,-0.038031943,0.01062578,-0.00009216753,-0.0055654035,-0.038786117,0.023312071,0.03471896,0.003888712,-0.0041075572,0.016928524,0.011204878,0.006878475,0.009555121,0.012780564,0.022140408,0.0044274083,-0.007393603,-0.021265026,-0.03280659,0.01621475,-0.003203558,0.016982393,0.026288368,-0.05104145,-0.0024527505,0.032321762,0.005535102,0.01943346,-0.038031943,-0.016928524,-0.032510307,0.0158646,0.0021244825,-0.0452774,0.016349426,0.020807136,-0.00090147415,0.014692935,0.024025844,0.0067842035,-0.03735857,-0.014208108,0.03253724,0.009137631,-0.012262069,0.028173804,0.03415333,-0.028981848,0.033129808,-0.0034510216,-0.033587698,0.024402931,0.0053229905,-0.024214387,-0.050287277,-0.0029241096,0.018625416,-0.019716276,-0.0079592345,-0.0043365033,0.041802812,0.017615361,-0.0036361984,0.0048448974,-0.011285682,0.042099096,0.018369535,0.021776788,-0.007811093,0.0103968335,-0.012457347,-0.034584288,-0.027554303,-0.034745894,0.023487149,0.026854,0.027338825,0.0027271488,0.01129915,-0.017278675,0.028685564,0.00152855,-0.00036677625,-0.020201102,-0.030894218,-0.0128277,-0.0036530327,0.07003049,0.0022557897,-0.002878657,0.013184586,0.013790619,0.022571364,0.02280031,0.038328223,0.011070204,0.016120479,-0.0135010695,0.02570927,-0.0043129353,-0.0069424454,0.028362347,0.009218436,-0.036146507,-0.0034459713,0.0000029854493,-0.028901042,-0.0002041153,0.01777697,0.00063801813,0.036254246,-0.009373311,-0.009117431,-0.01008035,0.0030874019,0.01002648,0.016255153,-0.027688976,0.016699577,0.013272124,0.0020133764,0.0029274763,0.00940698,-0.035473134,-0.012356341,0.01155503,-0.0005429046,-0.031136632,-0.036496658,0.0063027437,-0.035230722,0.0060199285,-0.0031816736,-0.0059525915,-0.01912371,-0.0058785207,-0.042449247,-0.014315847,0.032321762,0.025022432,-0.0029863962,0.032860458,-0.013884891,0.011056736,0.019150645,-0.012248602,0.010888394,0.0024679012,0.010901862,0.025924748,0.029816827,0.010221758,0.032375634,-0.013359662,-0.001124528,-0.005875154,0.0012406843,0.01435625,-0.010821057,-0.004514946,-0.018827427,-0.005898722,0.021184223,0.026342237,0.010948997,-0.022611767,0.012538151,-0.008262251,0.0041546933,0.010437236,0.041991357,-0.039890442,0.025534192,0.016120479,-0.04867119,-0.028389283,0.031298243,-0.0005433255,-0.02156131,0.025870878,0.021426635,-0.016672643,0.00015455947,-0.020093363,0.006831339,-0.0075888806,0.011292416,0.014585196,0.00082066975,0.021749852,0.021763321,0.02047045,0.0063094776,-0.034314938,0.01927185,-0.03315674,-0.01357514,0.016968926,-0.04861732,0.0035789618,-0.0060704313,-0.009373311,0.0041984622,0.015770327,0.005737113,0.017588425,-0.067875706,0.031890806,0.011110606,-0.004929069,-0.027271487,0.020201102,0.035984896,0.0019039538,-0.012006188,0.0009873288,-0.004023386,-0.0031581055,-0.00989854,-0.000013927713,-0.022046136,-0.021776788,-0.0065619913,0.017332546,-0.020403113,-0.018019384,-0.045627557,0.017871242,-0.00006523272,0.005019974,-0.0072791306,0.023864236,-0.030490197,0.0031210703,0.025197508,-0.026719324,-0.034288004,-0.011602166,-0.03773566,0.024833888,-0.003999818,0.017009327,0.038732246,-0.01704973,0.0059256568,-0.0033264481,-0.03913627,-0.025076302,-0.010329497,0.019864418,-0.016241686,0.03218709,-0.018638883,-0.011400155,0.045331273,-0.009736931,-0.0064003826,-0.021534374,-0.0020571456,-0.031432915,0.005710178,-0.0076966197,-0.006636062,-0.0012196415,0.016295556,-0.03819355,0.011056736,0.0045923837,-0.02461841,0.001967924,0.013346194,-0.01228227,0.012491015,-0.018975569,-0.018383002,-0.05456991,-0.019096775,-0.0017928478,-0.041641206,-0.013022977,-0.012841167,-0.02227508,0.01621475,0.029278131,-0.012066792,-0.003804541,0.028173804,-0.018019384,0.019096775,-0.0054643983,0.036496658,0.031109696,-0.0000042250026,0.00268843,0.0109894,-0.0010740253,-0.006656263,0.013480869,0.0051883166,-0.0048650987,0.03135211,0.020322308,-0.0020066428,0.011837846,0.014571728,0.007393603,-0.0022069705,0.006181537,0.011999454,-0.022059603,-0.015931936,0.025008963,0.0022002368,0.007992903,-0.023392877,0.03679294,0.028497022,0.0029325266,-0.010827791,-0.03690068,0.028012196,0.02803913,-0.03711616,0.008868284,-0.007198326,-0.017642295,0.0061142,0.005716912,-0.015325903,-0.01735948,0.059094958,-0.013743483,0.020133765,-0.01730561,-0.025857411,-0.030813415,0.0085787345,-0.004434142,-0.028739434,-0.0052320855,0.015837664,-0.003908913,0.009514719,0.0110634705,-0.0028130035,0.024241323,0.0071848584,0.016968926,-0.013898358,-0.01932572,-0.004205196,-0.0038988127,-0.016888121,0.0062286733,0.008558533,-0.034288004,0.030948088,-0.021318896,-0.007939033,-0.04015979,0.033210613,0.0003909755,-0.012942173,0.0031614725,-0.03725083,0.0057438468,-0.025224444,-0.013157651,-0.0019561402,0.01173684,0.008343055,0.009864871,0.0138040865,0.02430866,-0.03700842,-0.024537604,-0.01179071,0.007824561,-0.010975932,0.0021345832,-0.018221393,-0.009683061,0.03191774,0.005716912,-0.0026295101,-0.0021396333,-0.041964423,-0.01241021,0.019204514,0.001912371,-0.043445837,-0.003274262,0.014760272,0.0013913509,-0.013777152,-0.017709633,0.022032669,0.016645707,-0.027042542,-0.031540655,-0.002336594,0.033937853,0.0041479594,0.002070613,0.000355834,0.020753266,0.02300232,0.0052489196,0.0238373,0.047405254,-0.018611949,0.04059075,0.03937868,0.012349607,-0.015891533,0.037439376,0.023621822,-0.038624506,0.027298423,0.012928706,-0.015649121,0.015043087,-0.012309205,0.0018366169,0.03539233,0.005450931,-0.038678378,0.0207802,-0.0385437,0.0058886213,-0.014814141,-0.0015209747,0.013911826,0.00004255909,-0.028927978,0.008154511,-0.027271487,0.023433277,0.015622186,0.013002776,-0.030409392,-0.057694346,0.015649121,0.051068384,-0.02181719,0.023958506,-0.007561946,0.0034981575,0.011225079,0.0047607264,-0.009218436,0.021520907,0.03948642,-0.01131935,0.0025167207,0.012383276,0.018059785,-0.05298076,-0.03913627,-0.004632786,-0.03959416,-0.032348696,0.018787025,-0.012235134,-0.028389283,-0.014639066,-0.012618955,-0.009326176,0.004134492,-0.031783067,-0.0047506257,0.035365395,-0.007676419,0.0059896265,0.0042792666,-0.0019662406]},{"id":"guide-gifs-2","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Tenor URL in an embed\nTenor page URLs do not work as setImage() URLs. Use resolveTenorToImageUrl() to fetch the Tenor page or oEmbed, derive the GIF URL (embeds require GIF, not MP4), and return { url, flags: IS_ANIMATED }. For full gifv embeds, send the Tenor URL as content.\n\n```javascript\nimport { EmbedBuilder, resolveTenorToImageUrl } from '/core';\n\nconst tenorUrl = 'https://tenor.com/view/stressed-gif-7048057395502071840';\nconst media = await resolveTenorToImageUrl(tenorUrl);\nif (media) {\n const embed = new EmbedBuilder()\n .setTitle('Tenor in embed')\n .setDescription('GIF URL + IS_ANIMATED flag')\n .setImage(media)\n .setColor(0x5865f2);\n await message.reply({ embeds: [embed] });\n}\n```","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.055804763,0.01902092,-0.03323629,-0.010284129,0.017586803,-0.022958452,-0.0187819,-0.008397132,0.0030207662,-0.010497988,0.005827673,-0.030695137,0.032858893,-0.077341676,-0.010976027,0.050269574,-0.015989147,-0.0012265474,-0.005286734,0.060685795,0.020165699,-0.020467617,-0.020794697,0.054446127,-0.026669545,0.031550575,-0.010869097,0.03366401,0.04699878,0.035727125,-0.0010095428,-0.018756742,0.0376896,-0.05333909,-0.007856194,0.0284559,0.03899792,0.0075857244,-0.026996624,0.012774963,0.059880674,0.020039897,0.013359932,0.01441665,0.030594496,0.008655022,0.0005582363,-0.011139567,0.011837755,0.03245633,0.005120049,-0.01923478,-0.030871255,0.017901303,-0.0390734,0.008579542,-0.070498176,-0.0064598164,0.004242596,0.00015960842,0.01451729,-0.021260155,-0.025990225,-0.025650566,0.020568257,0.0566602,-0.032078933,0.06481203,-0.011240207,-0.012101934,0.055402204,-0.017674863,0.061541233,-0.00013110692,-0.020480197,0.0015158869,0.015158868,0.027424343,0.0011785863,-0.06783122,0.02371325,-0.010516858,-0.077945516,0.0001270774,-0.040255915,0.020694057,-0.06310115,-0.041262314,-0.015649488,0.012693194,-0.04428151,-0.015284668,-0.07668752,0.0029704464,-0.014882109,-0.013649272,-0.015322408,0.024858028,0.0147059895,0.0284559,0.08509094,-0.031475093,-0.06244699,0.01412731,0.0040853466,-0.050873414,-0.008812272,0.0036293224,-0.025663147,0.0023430202,-0.046193663,-0.044507947,0.007698944,0.042570632,0.05318813,-0.03396593,-0.009164511,0.017121345,-0.020039897,-0.015888507,-0.08182015,0.0012784399,0.08559414,0.018454822,0.00466088,-0.008170693,-0.008975811,0.010139459,-0.039752718,-0.013410252,0.016215587,-0.031399615,0.0073529948,-0.021977214,-0.024669329,-0.041513912,-0.029311338,0.0049439296,-0.018958021,0.042319033,0.0011974563,-0.01885738,0.026417945,-0.0060226624,-0.0058654128,0.018090002,-0.046017542,0.008988392,-0.035576165,0.011995005,-0.025512187,-0.013246712,-0.018656101,-0.015184028,-0.07039753,-0.05213141,-0.017964203,-0.020140538,-0.045061465,-0.045891743,0.022983612,-0.0072712246,0.035752285,0.0020175134,-0.026820503,0.03698512,0.052030772,-0.027751422,-0.0015717105,0.046420105,-0.02411581,-0.0125296535,-0.02863202,0.037060603,0.027374024,-0.0006946504,-0.0021543205,-0.007648624,0.040029477,0.04845806,-0.0020835581,0.06546618,-0.040658474,-0.020668898,-0.027675942,0.015209189,-0.0053464887,0.036079366,0.027474662,-0.019335419,-0.03202861,-0.01883222,0.049288336,0.029009419,-0.03884696,0.003909227,0.039400477,0.012611424,0.06692546,0.011460356,0.01929768,0.03306017,0.023021352,0.014215371,-0.029487459,0.006566746,-0.016907485,-0.015699808,-0.046973623,0.028078502,0.041715194,0.02402775,-0.021373376,-0.025864426,-0.03786572,0.024367409,0.0008051183,-0.0061327373,-0.022895552,0.045992386,-0.059930995,0.030166777,0.0074599246,0.00973061,0.02387679,0.025210267,-0.0040822015,-0.008233593,-0.00945385,0.022933291,0.017523903,-0.03711092,-0.046042703,-0.006230232,0.008699052,0.004846435,-0.009957049,-0.020027319,0.017800663,0.00467975,-0.022920713,0.0017486163,0.015523688,-0.011888076,-0.021775935,-0.004236306,-0.015838187,-0.05786788,0.046394944,0.07261161,0.023625191,0.008397132,0.01430343,-0.004380976,0.023461651,-0.046822663,-0.032380853,0.026090866,-0.02454353,-0.022681693,0.040708795,0.006223942,-0.026367625,-0.035551004,-0.02383905,-0.020178277,-0.020165699,0.00058929314,0.015938826,-0.003871487,0.016504925,-0.000541332,-0.035450365,0.027499823,-0.013573792,0.058622677,0.035223927,0.020266337,-0.041966792,0.002849364,-0.0036450473,-0.049690895,-0.015196608,0.0034186079,-0.049942497,0.0014010946,-0.02344907,-0.0037834272,0.007220905,0.031475093,0.031475093,0.015800446,0.045338225,0.0035444077,-0.0050854543,0.08106535,0.026417945,-0.003928097,0.028581701,-0.012957373,-0.05349005,-0.059629075,0.017045865,-0.0023603176,0.01918446,0.039828196,-0.020933077,0.029537778,0.051024374,0.0059314575,-0.013045433,-0.009214831,-0.018605782,0.038519878,-0.016832005,0.029713899,0.021033715,0.010441378,0.011158437,-0.034846526,0.037362523,0.012800124,-0.008780821,-0.003868342,-0.01943606,-0.022782333,0.004160826,0.0018272412,0.0088311415,-0.01864352,0.00982496,-0.016970385,0.004000432,0.02855654,0.015246928,0.0011259076,-0.033261452,-0.027097264,0.0031968858,0.032431174,-0.01416505,-0.015158868,0.017599383,-0.016580405,-0.0050036847,0.031676374,0.005730178,0.001880706,-0.010957157,-0.061641872,-0.008397132,0.03758896,0.0005625607,0.016932644,0.010887967,0.019612178,0.015121128,-0.032707933,-0.04798002,0.0035098128,-0.039903678,-0.0040822015,-0.018027103,0.017259724,-0.007831033,0.011925815,-0.016743945,0.046017542,0.049917337,-0.011403746,-0.0064723967,0.08388326,0.016253326,0.008271333,-0.017221984,-0.02448063,0.010189779,-0.023486812,-0.0065038465,0.02372583,-0.016844586,0.022518152,-0.011108117,-0.027701102,-0.01447955,-0.02913522,0.041362952,0.012699484,-0.027298544,0.035425205,0.03202861,0.00955449,-0.07834808,0.0005263933,0.032531813,0.015121128,0.045363385,0.036758684,0.004324366,-0.0010260541,0.008114083,0.007774424,-0.031575736,0.008661312,0.033135653,-0.036783844,0.030896416,-0.0014231096,-0.025726046,-0.0383186,-0.01937316,-0.04735102,0.011441486,-0.008887751,0.005808803,0.011554706,0.020354398,-0.051024374,0.020819856,0.050370216,-0.06717706,-0.021989794,0.0041922764,-0.023121992,-0.026367625,-0.021297896,0.013825391,-0.01949896,0.02888362,-0.01405183,-0.04350155,-0.0035601326,0.001535543,0.034443967,-0.016328806,0.017259724,0.022656532,-0.011126987,0.031902812,0.012057905,-0.011642765,0.008397132,0.032380853,-0.011340846,-0.031701535,0.01434117,-0.009095321,0.012278054,0.0066673863,-0.015473368,-0.0055005937,0.02372583,-0.017700024,-0.021801094,0.0010056116,0.053791966,-0.022165913,0.027776582,0.030317737,-0.032406013,-0.032104094,0.013183813,0.002624497,0.0050288443,0.01427827,-0.04803034,-0.018429661,-0.017335204,0.030544177,-0.04299835,-0.018303862,0.04191647,-0.04896126,-0.0040444615,0.0020442458,-0.024983827,0.0069944654,-0.06762994,0.0183416,-0.040708795,0.011177307,-0.03293437,-0.047401343,-0.042419672,-0.044809867,0.10033787,0.023021352,-0.07034721,0.022845233,-0.041312635,-0.027147584,-0.017196825,-0.000949788,-0.013699591,0.010592338,0.011215047,-0.045086626,-0.058169797,0.009051291,-0.039224356,0.006274262,0.051502414,-0.05660988,0.02928618,0.042721592,0.0068183457,0.026392786,0.014806629,0.0031670083,0.030745456,0.010296709,-0.018681262,-0.032355692,0.0189077,-0.014076991,0.039224356,-0.02888362,0.05213141,-0.023071673,-0.012749803,-0.025159948,-0.0039186617,0.002111863,-0.03336209,-0.01431601,0.021461435,0.02337359,-0.035047807,-0.02878298,-0.027977861,0.017385524,-0.028229462,0.017284883,-0.0068749557,-0.021511756,0.034318168,-0.041740354,0.018278701,-0.031424776,-0.0657681,0.0059314575,0.010548308,0.010831357,0.038696,-0.045262747,-0.00478668,-0.007818454,-0.0065541663,-0.018064842,0.0014506283,0.04330027,-0.05318813,0.0066862563,0.003896647,-0.0011982425,0.0094035305,0.023272952,-0.0028383567,0.0001114507,0.010265258,0.030695137,-0.012661744,0.008007153,0.007994574,-0.017662283,0.026241826,0.008629862,0.03308533,-0.024908349,-0.025097048,0.009881569,-0.029588098,0.020719217,0.045715626,0.02802818,-0.0030773762,-0.02787722,0.015372728,-0.00122812,-0.00089946814,-0.027726263,-0.025436707,0.005613813,-0.024681909,-0.017939042,-0.0017706313,-0.02399001,0.024493208,0.017461004,-0.0040633315,0.03351305,0.027298544,0.011705666,-0.024858028,0.003896647,-0.020014739,0.0017800663,-0.015951406,-0.02407807,0.013146073,0.030418377,-0.044029906,-0.019561859,0.007686364,0.020656317,-0.0040822015,0.040482357,0.014680829,-0.0058842828,-0.029512618,-0.013749911,0.008076343,-0.024795128,-0.052936528,-0.030116457,0.011944685,-0.007503954,0.036280643,0.0006604486,0.029084899,0.010328159,-0.02382647,0.030971896,0.010007369,-0.036406443,0.017850982,0.00040137977,-0.021474015,-0.000061573075,-0.016077206,0.01943606,-0.00965513,0.023247791,-0.011454066,0.000639613,-0.04835742,-0.011303106,-0.026543744,-0.0074599246,-0.035878085,0.02366293,-0.005189239,0.030493855,0.012624004,-0.026543744,0.015196608,0.0012320512,0.016970385,-0.0378154,-0.0008876744,-0.026216665,-0.0014655669,-0.0017486163,-0.0476781,0.016832005,0.007981993,-0.047376182,0.002715702,-0.07568112,0.04385379,-0.022228813,0.003115116,-0.00963626,0.012919633,-0.051351454,0.008686472,-0.008818561,-0.00951675,-0.03358853,-0.035249088,0.00942869,0.006126447,0.03338725,-0.012366114,0.058773637,-0.027072104,0.021536915,-0.04372799,0.030267417,0.0073592844,0.012026455,0.03695996,-0.040532675,0.0077492637,0.013108333,-0.0070133354,-0.00954191,0.011126987,-0.0028760964,-0.031902812,-0.022367192,0.051225655,0.023323271,0.0062994217,0.00467346,0.013058012,-0.0073844446,-0.0004941571,0.017989362,-0.036054205,-0.012932213,-0.014844369,-0.021486595,-0.040985554,0.031978294,-0.00021543205,0.01419021,0.0054376936,0.043627348,-0.008403422,-0.04176551,-0.02392711,-0.035249088,0.0005429045,0.0288333,-0.011523256,0.010063979,0.022581052,0.036205165,0.009265151,-0.012812703,0.0106615275,-0.032380853,0.01907124,-0.013787651,-0.04808066,-0.0027990441,0.020731797,0.006315147,-0.010743298,0.011749695,0.020253757,-0.017825823,0.016580405,-0.06682482,0.022216234,0.003880922,0.012183704,-0.008699052,-0.008592122,-0.009038711,0.0014207507,0.018379342,0.000021425269,-0.0064598164,0.02415355,0.0064189318,-0.03411689,-0.012007585,-0.013573792,-0.0039312416,0.009107901,0.00044108534,0.003361998,-0.029739058,-0.026040545,0.031777013,-0.017398104,0.0118063055,0.026116025,-0.0029295613,0.018178063,-0.025235428,0.0055886535,0.00932176,-0.023159731,0.005170369,-0.0030254836,0.013120913,-0.02314715,-0.0069755954,0.0017438988,0.0045822556,-0.025751207,0.037211563,-0.0065038465,-0.050772775,0.022857813,0.007906513,0.0075857244,-0.056006044,0.011089247,-0.0077870036,-0.007170585,0.016052047,0.0039847065,-0.007893934,-0.027449504,-0.0147437295,-0.0069189854,-0.045237586,0.005447129,0.017284883,-0.044231188,-0.007774424,0.027650783,-0.006654806,-0.077643596,-0.034846526,0.045011148,-0.036607724,-0.036658045,0.004475326,0.008617282,0.020995976,0.045665305,0.007573144,-0.00952933,-0.0016951514,0.024442889,-0.008755662,0.0292107,0.021574656,0.009107901,-0.018127741,0.015888507,-0.0068497956,-0.050772775,-0.0015300394,0.04430667,0.0117685655,0.014655669,0.010843937,0.016668465,-0.002715702,0.025310908,-0.029311338,0.020392137,-0.0023603176,0.035626486,0.0051672244,0.022794912,-0.023210052,0.030695137,-0.020706637,0.02396485,0.021851415,0.015611747,-0.015297248,0.006050967,-0.050848253,0.008416003,0.04865934,0.020920496,-0.00479926,-0.020895336,-0.008114083,0.0064157867,0.019788299,-0.011579866,0.018291282,0.020706637,0.024845447,-0.03836892,-0.012473044,-0.00932176,-0.027197903,-0.0050068297,0.005815093,0.046218824,-0.04287255,0.030141616,-0.006214507,-0.021021137,-0.0055351886,-0.020140538,-0.044658907,0.004745795,-0.009000971,0.03877148,0.020165699,0.011472936,0.015838187,0.010416218,0.0133725125,0.012189995,0.023612611,-0.041614555,0.0147437295,0.009114191,0.054949325,0.026594065,-0.009328051,-0.016630726,0.009019841,0.0012540661,0.0022738304,0.046822663,-0.02385163,0.0031072535,0.011265366,-0.0025820397,-0.04659622,-0.019838618,0.01892028,0.01957444,-0.017234564,0.05575444,-0.023247791,-0.013208972,-0.013837971,-0.026770184,-0.03454461,0.009296601,-0.003093101,0.011649055,-0.04179067,-0.007007045,-0.032682773,0.012869313,-0.012026455,-0.024769967,0.0010339166,0.021901734,0.016265906,-0.023084251,-0.0027172742,0.054546766,0.008642442,-0.04395443,-0.029411979,-0.0192222,0.011064087,-0.017599383,-0.009378371,-0.00927773,0.011252787,-0.008428582,0.026367625,-0.012787543,-0.030342897,0.017813243,-0.020329237,0.03290921,0.02848106,-0.019800879,0.007189455,-0.0015347567,-0.04264611,0.027197903,-0.03288405,-0.025424127,0.017838404,-0.021411115,0.045464024,0.011649055,-0.019914098,0.04219323,0.0030506437,-0.02913522,0.0060132276,0.03436849,0.03424269,-0.0060006473,-0.005324474,-0.025663147,-0.029764218,0.014806629,0.015334988,0.004352671,-0.02838042,0.05125081,-0.01885738,-0.011038927,-0.0073718647,0.00050044706,0.017008124,-0.019800879,-0.0031072535,0.050948896,0.004236306,0.013498312,0.0022848377,0.030267417,0.021662714,0.039652076,0.0058748475,-0.017926462,0.027751422,-0.0064535267,0.03814248,0.05208109,-0.040054638,0.0011927388,-0.015498527,-0.009126771,0.013158653,0.013045433,-0.00023705389,0.028053341,-0.009969629,0.0018036538,0.013045433,0.005079164,-0.02445547,-0.027474662,0.010315578,0.017058445,-0.026971463,-0.022367192,-0.024832869,-0.019700238,0.0011156864,-0.002256533,-0.012296924,0.011089247,0.019624759,0.0056075235,0.027273383,0.0019671933,0.034922007,-0.011366006,0.01892028,-0.023386171,-0.012510784,0.019687658,-0.00481184,-0.0037142374,-0.013624111,-0.01446697,-0.004777245,-0.0050099744,0.016316226,0.016492346,-0.015259508,0.008195853,0.031751852,-0.003064796,-0.020719217,0.0136366915,-0.011900655,0.034142047,0.040834595,-0.036934804,-0.0009450705,0.039325,0.015976567,0.0287075,0.008931781,0.0196625,-0.04342607,-0.02360003,-0.008447452,0.013246712,0.017674863,0.014542449,0.02381389,-0.0070322054,0.013825391,0.009114191,-0.000019865056,0.025487026,0.0028540816,-0.03248149,-0.0059188777,-0.011057797,0.0070573655,-0.022945872,0.003133986,-0.02400259,-0.03306017,0.013158653,0.0000012254418,-0.0064535267,-0.04254547,0.02390195,0.04163971,0.004292916,-0.0018382487,0.0081077935,0.010277838,-0.014882109,0.016467186,-0.0045791105,0.032003455,0.013460572,-0.013875711,-0.035324566,-0.029437138,0.017146504,-0.021197256,0.01397635,0.034469128,-0.04397959,-0.008447452,0.046369784,0.01942348,0.0149324285,-0.03341241,-0.016618146,-0.04370283,0.021436276,0.0005802513,-0.040985554,0.005079164,0.032406013,0.0056169583,0.0074662142,0.022492994,0.0016243891,-0.034922007,-0.031148015,0.035903245,0.021121776,-0.0073781544,0.03341241,0.024757389,-0.020077638,0.032707933,-0.012441594,-0.036079366,0.03874632,0.0008570107,-0.00034496648,-0.049187697,-0.00042221538,0.00023096046,-0.0096299695,-0.00965513,-0.01463051,0.039576598,0.027248222,-0.01439149,0.00928402,-0.02405291,0.036280643,0.011705666,0.0035255377,0.0024703923,0.029361658,-0.012403854,-0.036330964,-0.0074599246,-0.035626486,0.020052478,-0.0002234911,0.0049879597,0.010976027,0.0074158944,-0.004255176,0.00924628,-0.0035035226,0.0020049333,-0.020945657,-0.008026023,-0.00986899,0.014869529,0.053641006,0.00061012874,0.0013059585,0.0038935018,-0.004456456,0.017637122,0.029084899,0.048986416,0.009774639,0.012435304,-0.021562075,0.020228598,0.0009930317,-0.0091708,0.021763355,0.016932644,-0.034318168,0.019914098,0.0011581439,-0.0059314575,-0.008881462,0.00943498,-0.010277838,0.041513912,-0.009063871,0.00467346,-0.005431404,0.017435843,0.013007693,0.011510676,-0.027248222,0.0028981115,0.024644168,0.003906082,-0.011498096,0.011428907,-0.045866583,-0.003327403,0.006843506,-0.0064786864,-0.0031921684,-0.02863202,-0.012045325,-0.029638419,0.015108548,-0.014542449,0.0014907268,-0.018656101,0.004239451,-0.026946304,-0.0032456333,0.035551004,0.018366762,-0.0017690588,0.022832653,-0.006736576,0.011303106,0.009485301,0.00059047254,0.01855546,0.007554274,0.022342034,-0.003336838,0.024417728,0.010133169,0.026468264,0.007654914,-0.00009110653,-0.011711956,-0.013523472,0.007969413,-0.0034343328,-0.004223726,-0.0124919135,-0.005771063,0.021738194,0.017687444,0.015800446,-0.027575303,0.018115163,0.0011628614,-0.011366006,0.015737547,0.020895336,-0.054395806,0.034620088,0.027801743,-0.052030772,-0.028128821,0.045464024,-0.0071454253,-0.029613258,0.011359716,0.025549926,-0.003402883,-0.0044784704,-0.017146504,0.0073844446,0.0040884917,0.017549064,0.0040538968,-0.010655237,0.0035444077,0.03308533,0.020253757,0.004726925,-0.035299405,0.011535836,-0.028506221,-0.0149324285,0.029638419,-0.03389045,-0.0037393973,0.008032314,-0.016794264,0.020580838,0.018656101,0.0070133354,0.014869529,-0.06194379,0.016995544,0.021914314,-0.008252462,-0.022593632,0.040759116,0.040884916,0.00087509444,-0.002972019,-0.0020253758,-0.006768026,0.01440407,-0.010076559,0.0025631697,-0.018807061,-0.025323488,0.0051043243,0.030468697,-0.023021352,-0.01907124,-0.059025235,0.031852495,-0.00038703074,0.0037393973,0.01393861,0.040130116,-0.0197254,-0.004201711,0.023411332,-0.046671703,-0.016467186,-0.0031166885,-0.030820936,0.029009419,-0.0068686656,0.009151931,0.01444181,-0.011139567,0.005242704,-0.0070573655,-0.039123718,-0.029839698,-0.011579866,0.0002415748,-0.007503954,0.045212425,-0.008283913,-0.029437138,0.04777874,-0.00974948,0.0027786016,-0.016806845,0.0050194096,-0.029386818,0.019712819,-0.005727033,-0.008529223,0.015888507,0.016844586,-0.03836892,0.013850551,0.02440515,-0.018027103,-0.017762924,0.0037425421,0.0014608494,0.032204732,-0.0037456872,-0.0196625,-0.04850838,-0.015397888,0.0020819856,-0.05152757,-0.02787722,-0.021952054,-0.0025270022,0.008862591,0.017951623,0.010114299,0.0030915285,0.030292576,-0.00032609652,0.013058012,-0.00088059815,0.015334988,0.017800663,0.009774639,0.0012171124,0.010875387,0.0058056577,-0.006324582,0.011051507,-0.0010299854,0.008787111,0.03766444,0.011183596,-0.013083173,-0.0063182916,0.0006313574,0.012359824,-0.010504278,-0.000063489555,-0.000829492,-0.040004317,-0.015284668,0.030971896,-0.0022754027,0.00966142,-0.027298544,0.035475526,0.032808572,-0.013183813,-0.02893394,-0.031097695,0.015951406,0.025298327,-0.035676807,0.016404286,0.004352671,-0.006277407,0.0195367,0.006566746,-0.011246497,-0.011397456,0.040884916,-0.028229462,0.0023917675,-0.020568257,-0.018077422,-0.041589394,0.031978294,-0.018542882,0.0007642334,0.00958594,-0.005944038,-0.0046105604,0.0020929931,0.022115594,0.000990673,0.009674,-0.0022109305,-0.00022014954,0.0045445156,-0.009057581,0.0045256456,0.027072104,-0.025914745,0.013410252,0.013900871,-0.005333909,0.024417728,-0.0023508826,0.0028194867,-0.017171664,0.021398535,0.004160826,-0.020392137,0.0025049872,-0.036532246,-0.012422724,-0.040658474,-0.028204301,0.0058779926,0.0035695676,0.0051106145,0.010573468,0.005318184,-0.010485408,-0.042721592,-0.021587236,-0.01427827,0.00946014,-0.017196825,-0.015372728,-0.02366293,-0.015611747,0.000055184806,0.007774424,-0.015511108,0.0040664766,-0.03758896,-0.032053772,0.03333693,0.0036010174,-0.05228237,-0.0033965928,0.0020143683,0.0045162104,-0.006988175,-0.0074473443,0.0054439837,0.004336946,-0.010535728,-0.022908133,-0.00083971326,0.0106237875,-0.004619995,-0.007654914,0.01416505,0.021260155,0.014945009,0.016404286,0.019612178,0.03784056,-0.0095482,0.03683416,0.025889587,0.0063528866,-0.010674108,0.04337575,0.025008988,-0.036356125,0.023121992,-0.0018036538,-0.0029641562,0.01879448,-0.027348863,0.013963771,0.023335852,0.0016291066,-0.03796636,0.007988283,-0.027449504,0.021046296,-0.015284668,0.0104728285,0.021926895,-0.0021354505,-0.03338725,-0.0006816773,-0.022882972,0.031173175,0.012227735,0.018215802,-0.02890878,-0.06345339,0.016945224,0.059729714,-0.01401409,0.020467617,-0.0018413936,0.0063591767,0.002934279,0.002184198,-0.021939475,0.024631588,0.050571494,-0.0025553072,0.0064535267,0.0042300164,-0.0011660063,-0.045665305,-0.025008988,-0.0064912667,-0.017939042,-0.026241826,0.008214723,0.00038270638,-0.025373807,-0.008315363,-0.002558452,0.006736576,0.017033285,-0.044684067,-0.0060006473,0.020543097,-0.013183813,0.009045001,0.0010590765,0.0006517999]},{"id":"guide-gifs-3","type":"guide","source":"guides","text":"Guide: GIFs (Tenor) (gifs)\nSection: Important\nCustom embeds cannot create gifv embeds. For full animated gifv, send the Tenor URL as content. resolveTenorToImageUrl() returns GIF URL + IS_ANIMATED (derived from media.tenor.com path).","meta":{"slug":"gifs","url":"/guides/gifs"},"embedding":[-0.03045558,0.044843215,-0.0003956682,-0.0045781825,-0.0034754805,-0.04001233,0.0027091682,-0.012372579,-0.012471035,-0.012405398,-0.0051721977,-0.015372192,0.005303472,-0.07529879,-0.0053330082,0.03389496,0.00015475981,0.009563315,0.017013118,0.06479687,0.03890963,-0.003987449,-0.013875668,0.045210782,-0.02762006,0.028013883,-0.018562151,-0.003938222,0.064166754,0.033711176,-0.0207413,-0.013521228,0.036966775,-0.05870576,-0.0062814634,0.042086463,0.021135123,0.013442463,-0.016684933,0.014440146,0.06663471,0.03182083,0.015962925,0.009917755,0.02544091,0.014610802,0.0074235476,-0.0046339743,-0.008657523,0.026504232,0.023537438,-0.00983899,-0.0289328,0.017827017,-0.0414826,0.020767555,-0.063116565,-0.00817181,-0.00060591183,-0.020426244,-0.008145555,-0.02362933,-0.0038496116,-0.026622377,0.01411196,0.042821597,-0.059335873,0.06894513,-0.008998836,-0.050619274,0.04731117,-0.008244011,0.010961384,0.004033395,-0.023655584,-0.0058220043,0.0054642824,0.022881068,-0.007928953,-0.05250962,0.005355981,0.0056579118,-0.08401539,0.0032966197,-0.050934333,-0.0096355155,-0.05161696,-0.04250654,-0.014558293,0.0018739371,-0.052194566,-0.031400755,-0.065952085,0.024968324,-0.005099997,-0.031427007,-0.017511958,0.028197667,0.02712122,0.03541774,0.057603054,-0.030796893,-0.042427775,0.02407566,-0.00044633177,-0.04072121,-0.014138215,0.010127793,-0.04458067,0.0010272195,-0.060596105,-0.051039353,-0.0044469084,0.036100365,0.061698806,-0.032450948,0.02316987,0.004197488,-0.018247094,-0.04203395,-0.06322158,0.00095912104,0.06757988,-0.033474885,0.0034590713,-0.0061501893,-0.02139767,0.029274113,-0.028118903,-0.012740147,0.016212346,-0.013422772,0.021371417,-0.028355196,-0.01386254,-0.04269032,-0.049043987,0.026162919,-0.03678299,0.053979892,0.022355972,0.006885324,0.011493043,0.0117359,0.0054938192,0.015569103,-0.04912275,0.0058515407,-0.028722763,-0.0021397672,-0.039224688,-0.002564767,-0.020977594,-0.028460214,-0.08012968,-0.039802294,-0.022500373,-0.020465625,-0.03465635,-0.027305003,0.009123547,-0.03809573,0.019533578,0.0017918908,-0.03733434,0.019166011,0.058548227,-0.025217745,-0.019244777,0.035050172,-0.025467167,-0.018142074,-0.041272562,0.04720615,0.01948107,0.0035706542,0.0026189173,-0.004266407,0.033422373,0.03344863,0.012897676,0.081022345,-0.060491085,-0.020701919,-0.031400755,0.03780693,0.020675663,0.028565234,0.026688015,-0.042427775,-0.026399212,-0.02717373,0.02909033,0.030035503,-0.04513202,-0.012411961,0.029772956,-0.0071806908,0.06637216,0.00097306893,0.03476137,0.017984545,0.016383002,0.024220062,-0.047179896,0.012431653,0.007843625,0.00028941827,-0.038410787,0.005520074,0.047337424,-0.007909262,-0.006445556,-0.007371038,-0.04486947,0.022447864,-0.004899804,-0.008946327,-0.0035805,0.06731734,-0.06096367,0.019638598,0.011368333,0.0140463235,0.029064076,0.03234593,-0.00547741,-0.019310413,-0.013147096,0.04901773,0.030586854,-0.044711944,-0.025900371,-0.020111185,-0.006780305,0.0062387995,0.0039447853,-0.018115819,0.010626635,0.01320617,-0.021581454,0.034787625,0.01634362,0.0081193,-0.014597675,-0.020426244,-0.01196563,-0.04203395,0.03596909,0.052982207,0.027908863,-0.005582429,0.01664555,-0.0021233577,0.014085706,-0.054925065,-0.028880293,0.033396117,-0.011676827,-0.020623153,0.0368355,0.0031965233,-0.021647092,-0.030980676,-0.017590724,-0.020413116,-0.01618609,-0.0010969588,0.023235507,0.025427785,0.007266019,0.001325868,0.0009427118,0.018299604,-0.021187631,0.06973278,0.035837818,0.022185314,-0.030429326,0.0018509642,-0.023314271,-0.039145924,-0.016146708,-0.019100375,-0.036861755,-0.0028863882,-0.023445547,-0.0037183375,-0.011762155,-0.0032375464,0.035942838,0.014860223,0.018575279,0.0035739362,-0.025388403,0.081494935,-0.008027408,0.021542072,0.030586854,-0.02924786,-0.046024684,-0.06369417,0.0038364842,0.014663312,0.024351336,0.04825634,-0.042427775,0.04355673,0.026989946,0.012182232,-0.001168339,-0.0041777967,-0.029589172,0.037229322,-0.0130158225,0.01973049,0.019966783,-0.022789177,0.013678757,-0.031899594,0.023813114,0.018942846,0.017380685,-0.00015947747,-0.037623145,-0.03182083,-0.0025253845,0.008860999,0.036205385,-0.017590724,-0.0063306913,-0.0036034728,0.019310413,0.024902688,0.0009919396,-0.025125854,-0.026884926,-0.035155192,-0.016973736,0.03182083,-0.041325074,-0.03830577,-0.0045617735,-0.00094107084,-0.015477211,0.029562917,-0.0029520253,0.008480304,-0.0048210397,-0.05392738,0.00076713273,0.023432419,-0.02373435,0.034157507,0.010042465,0.005454437,0.012070649,-0.034131255,-0.026701143,0.04269032,-0.040143605,-0.013678757,-0.014125088,0.015306555,0.00030480194,0.026084155,-0.05295595,0.03536523,0.052588385,0.0039776037,-0.008335902,0.077346675,-0.00882818,-0.01386254,-0.01522779,-0.032083377,0.021528944,-0.0064816563,-0.0060287607,0.0016351824,-0.020911956,0.008867563,0.012274124,0.0023432418,0.0009180979,-0.02393126,0.034813877,0.0215552,-0.0140331965,0.04290036,0.027462533,0.011598063,-0.06143626,0.019796127,0.045473333,0.025585312,0.04812507,0.026084155,0.010081847,0.01345559,0.010364086,-0.002515539,-0.06815749,-0.008309647,0.009090728,-0.0250996,0.024718905,0.026793035,-0.0066424673,-0.029457897,-0.012280688,-0.056237806,0.006905015,-0.02772508,0.01315366,0.009596134,-0.005178761,-0.034918897,0.022290334,0.05119688,-0.08763856,-0.02352431,0.0035575267,-0.038725846,-0.027410023,-0.03197836,0.03116446,0.018837826,0.02109574,-0.016829334,-0.023996897,0.026071027,-0.0048046303,0.032976042,-0.028355196,-0.00006358587,0.027305003,-0.016251728,0.056605373,0.027094964,-0.03368492,-0.012070649,0.027856354,-0.01060038,-0.016120454,-0.006622776,-0.019467942,-0.0004188463,0.0057268306,-0.0038233567,0.0019920839,0.03596909,-0.021830875,-0.011118912,0.003577218,0.044501904,-0.018102692,-0.0012011576,0.0030307898,-0.023616202,-0.015897287,0.011860611,0.0123463245,0.020413116,-0.004952314,-0.040143605,-0.0368355,-0.02722624,0.040484916,-0.044711944,-0.008841308,0.01715752,-0.038830865,-0.006320846,-0.0016466689,-0.033264846,0.0033212337,-0.05965093,0.02586099,-0.024679523,0.008145555,-0.03754438,-0.01558223,-0.039986078,-0.0379382,0.10055593,0.040458664,-0.061541278,0.02838145,-0.075823896,-0.02777759,-0.004656947,0.014151343,-0.014663312,0.00032203167,0.02717373,-0.047731247,-0.059178345,-0.014203853,-0.02008493,0.02979921,0.065689534,-0.04447565,0.01781389,0.07225324,0.0150308795,0.052588385,0.03252971,0.017275665,0.037623145,-0.008060227,-0.01533281,-0.041508857,0.02362933,-0.01421698,0.039907314,-0.003938222,0.029536663,0.006494784,-0.00003535682,-0.03799071,0.00036346505,0.007088799,-0.044948235,-0.002449902,0.011847483,0.036494188,-0.026294192,-0.040301133,-0.040406153,0.003990731,-0.04016986,-0.0030603264,0.018496513,-0.029510407,0.03105944,-0.018050183,0.028670253,-0.03213589,-0.057813093,-0.0033606158,0.006064861,0.016159836,0.035811562,-0.036467932,-0.0066654403,-0.0022119677,-0.012326634,-0.017196901,-0.011972194,0.046260975,-0.061961353,0.030114267,0.008486868,-0.0061534713,-0.0009074319,0.0041810786,0.00037187478,0.015437828,0.009458296,0.024220062,-0.03226716,-0.010449415,0.013639375,-0.020281842,0.041272562,0.011420842,0.04153511,-0.022631647,-0.035443995,0.0056644753,-0.028512724,0.040353645,0.03066562,0.014203853,-0.0120050125,-0.018890336,0.0023416008,-0.025388403,0.0017918908,-0.013494973,-0.01634362,0.0008959454,-0.027593806,-0.0024958479,-0.015660994,-0.03111195,0.025729714,0.022802303,-0.018037055,0.035181448,0.034525078,-0.0042959433,-0.015949797,-0.024876432,-0.020321224,-0.007266019,-0.030534346,-0.0126810735,0.006527602,0.017210029,-0.032004613,-0.027987627,0.02068879,-0.008499995,0.008099609,0.023432419,0.013330881,-0.017288793,-0.02515211,-0.0061665988,-0.00822432,-0.0014267849,-0.054925065,-0.026399212,0.017853271,-0.010344395,0.04164013,0.001457142,0.003134168,0.019034738,-0.01214285,0.03754438,0.008998836,-0.03662546,0.012812348,-0.0116505725,-0.035785306,-0.024325082,-0.032555964,0.018181456,-0.024508866,0.040589936,-0.013225861,0.014833968,-0.049621593,-0.0289328,-0.02387875,0.0033064652,-0.025585312,0.00888069,0.0053461357,0.009418913,-0.0053198813,-0.0065111932,0.003951349,0.010889183,0.007443239,-0.04108878,0.000032664677,-0.021030104,-0.0010108103,0.005917178,-0.04381928,0.015542848,0.007935517,-0.051118117,0.0005845798,-0.061593786,0.02488956,-0.024298828,0.0015777501,0.039067157,-0.014768331,-0.03476137,0.02114825,0.00067524094,-0.0071478724,-0.028775273,-0.039539743,-0.028565234,0.00039792448,0.036993027,-0.011972194,0.05434746,-0.00260579,0.028775273,-0.052430857,0.009084164,0.00983899,0.022395354,0.02458763,-0.02722624,0.02580848,0.015962925,-0.008454049,0.018286476,0.01836524,-0.013481845,-0.03759689,-0.007686096,0.043688007,0.01902161,0.013324317,0.0018493233,-0.005182043,0.00741042,-0.016711187,0.016921226,-0.028827783,-0.018115819,-0.006672004,-0.015490338,-0.037124302,0.03116446,0.016094198,0.0038791483,-0.002271041,0.018890336,0.004128569,-0.039250944,-0.02341929,-0.02614979,0.008860999,0.013993814,-0.011716209,0.002271041,0.021830875,0.008342466,0.0052673714,-0.007876444,0.013783775,-0.032293417,0.021515818,-0.0041187233,-0.011427406,0.01130926,0.0025073343,0.0014046323,-0.0056776027,-0.0063635097,0.023104234,-0.0020413115,0.0018903464,-0.04507951,0.024062535,-0.00017537393,0.01416447,-0.0049326224,-0.007213509,-0.018207712,0.020531261,0.0189691,0.004719302,-0.0029700755,0.030823147,0.004282816,-0.025283383,-0.013980687,-0.036966775,0.0012766402,0.010981075,-0.017695742,-0.0089725815,-0.0189691,-0.005890923,0.026320448,-0.024508866,0.01138146,0.029589172,0.0011347001,0.01001621,-0.017564468,0.02772508,0.014965242,-0.031006932,0.0205969,0.0059762513,0.00022357612,-0.01467644,-0.0071216174,-0.0006018095,0.0047061746,-0.03940847,0.019625472,-0.011086094,-0.048597656,0.02706871,-0.004043241,-0.016816206,-0.037229322,-0.008480304,0.0055955565,-0.012654819,0.022999214,0.004089187,0.004906368,-0.023314271,-0.0001063525,-0.028407706,-0.036861755,-0.0046897656,0.011407715,-0.04933279,-0.010836673,0.006356946,-0.00786988,-0.08464551,-0.036336657,0.05928336,-0.04998916,-0.01795829,-0.008821616,0.0010666017,0.009989955,0.04447565,0.012635128,-0.013357135,-0.011440534,0.028906547,-0.011716209,0.034026235,0.013718138,-0.0016721033,-0.0044075265,-0.0038561753,-0.002294014,-0.033369865,-0.011854047,0.012608873,-0.019008484,0.0048243213,-0.018194584,0.016159836,0.0029126431,0.03121697,-0.015818523,0.011565244,0.0013939664,0.021660218,0.015949797,0.032923535,-0.024495738,0.026031645,-0.012825475,0.029510407,0.018102692,0.013823158,-0.004131851,0.0070165982,-0.026989946,-0.011493043,0.03279226,0.0031423727,-0.01923165,-0.028670253,-0.0075351307,0.016750569,0.023393037,0.02139767,0.020321224,0.003198164,0.010935129,-0.02625481,-0.018404622,-0.003862739,-0.02150269,-0.006202699,-0.013304626,0.053113483,-0.044659432,0.0045289546,-0.011696518,-0.016277982,-0.002031466,-0.03182083,-0.018378368,-0.0030094576,0.0016343619,0.021371417,0.0040038587,0.026189175,0.018102692,0.012733583,-0.0038955575,0.006734359,0.0135081,-0.03667797,0.0009927601,0.0053100353,0.04759997,0.021056358,0.008270266,-0.011644009,-0.009143238,-0.0011970553,-0.013074895,0.052483365,-0.02368184,-0.00847374,-0.00055955566,-0.017118137,-0.023865623,-0.023589948,-0.00042130766,0.008460613,-0.00018634762,0.061278727,-0.013166788,-0.008362157,-0.035050172,-0.040458664,-0.043898042,0.009418913,-0.0035181446,0.01563474,-0.0270162,-0.01426949,-0.04016986,0.00013424823,-0.02458763,-0.01381003,-0.014991497,0.020701919,0.041456345,-0.008893817,-0.02246099,0.04452816,-0.0046700747,-0.0422965,-0.040642448,-0.035995346,0.0067015407,-0.018890336,-0.008808489,0.0030832994,0.015542848,-0.0077386056,0.025939753,-0.014400763,-0.029982993,0.020662537,-0.035575267,0.024482612,0.006950961,-0.013770648,0.0005702217,-0.0133636985,-0.036047854,0.016212346,-0.032871023,-0.017564468,-0.01381003,-0.02246099,0.042532794,0.013133969,-0.0070756716,0.03652044,-0.01852277,-0.018864082,0.010436287,0.021030104,0.0411938,-0.004696329,0.0030767357,-0.0032194962,-0.01584478,0.019769872,0.028696507,0.0016474894,-0.029116586,0.034735113,-0.019310413,-0.01095482,0.0028174694,0.007305401,0.029431643,-0.015096516,0.0086247055,0.05718298,0.010574125,0.0016597963,0.010862928,0.028670253,0.014256362,0.018128946,0.016540531,-0.043635495,0.02727875,-0.031321988,0.028801527,0.05030422,-0.031243226,0.01416447,-0.014203853,-0.0056218114,0.0014686285,0.0083030835,0.0013406363,0.0014637057,-0.0024794387,-0.0020806938,0.02671427,-0.0113289505,-0.033369865,-0.009989955,0.013599992,0.0086378325,-0.012293815,-0.02433821,-0.036205385,-0.013002695,0.009445168,0.000606322,-0.02221157,0.0034525075,-0.0029274113,0.0036034728,0.009327021,0.0043550166,0.030376816,-0.010469106,0.028013883,-0.026832417,0.012083776,0.021515818,-0.006091116,0.0089332,-0.040353645,-0.024797669,-0.027252493,0.009386095,0.025270255,0.024758287,-0.010816982,0.010029337,0.041823912,-0.00287162,-0.0060353247,0.021542072,-0.022040913,0.01937605,0.02362933,-0.03061311,0.014742076,0.038568318,0.006350382,0.026123537,-0.005986097,0.0360216,-0.037124302,-0.018785316,-0.0086050145,0.03835828,-0.0006961627,0.006471811,0.019559834,-0.008847871,0.0076926597,0.01760385,0.011873738,0.0013668911,-0.006422583,-0.025362147,-0.00459131,-0.026241682,0.011854047,-0.021922767,-0.006251927,-0.0066424673,-0.03323859,0.0043779896,0.006498066,-0.010003082,-0.022014659,0.018627789,0.028775273,0.01274671,0.004020268,0.022894194,0.013796903,-0.010344395,-0.0012471036,0.0018247094,0.04153511,0.019060992,-0.0034984534,-0.04360924,-0.016488021,0.028040137,-0.012260997,0.020557517,0.028722763,-0.040196117,-0.010199994,0.043477967,0.011716209,0.010593816,-0.035549015,-0.013403081,-0.050908078,0.025454039,-0.0076992232,-0.035233956,0.012077213,0.011276442,0.005815441,0.01552972,0.023668712,0.011867175,-0.02114825,-0.010711962,0.02316987,0.014400763,-0.00459131,0.03657295,0.037885692,-0.0043189162,0.022172188,-0.0153984465,-0.014190725,0.04371426,-0.0041843606,0.004391117,-0.052352093,0.0029388978,0.015976053,-0.015267173,0.016698059,0.0063930466,0.03368492,0.018982228,-0.038673338,0.00352799,-0.012306943,0.033632413,0.009195748,-0.017538214,0.013980687,0.013127405,-0.014505783,-0.042611558,-0.01552972,-0.032293417,0.007850189,0.0033474884,-0.0052214256,0.013232425,0.0064324285,-0.00027998295,0.0059795333,-0.0070691076,0.021699602,-0.010101538,-0.017932035,-0.013383389,0.0153984465,0.061646294,0.01148648,0.013127405,0.0044895727,-0.0009927601,0.022001531,0.037649397,0.034236275,-0.0043550166,0.022946704,-0.0044239354,0.014952115,0.0073841657,-0.008913509,0.015345937,0.005713703,-0.030219287,0.011676827,0.0028781837,-0.015805395,-0.0044075265,-0.0009074319,0.006091116,0.017472576,-0.008447485,-0.00087133155,-0.011164858,0.013173351,0.0055069467,0.008132428,-0.024272572,0.003911967,0.016698059,-0.006780305,-0.0038233567,-0.010449415,-0.041561365,-0.0060057878,0.0144664,0.011637445,-0.0059762513,-0.0150440065,0.013088023,-0.024771415,0.002297296,-0.01826022,-0.010679144,-0.020045549,-0.000524686,-0.032976042,-0.007902698,0.060281046,0.019940529,0.0076926597,0.026661761,-0.013107714,-0.010442851,0.0031226815,-0.014322,0.020728173,0.0011248545,0.02848647,-0.011722773,0.0077582966,0.008762543,0.028355196,-0.009707716,-0.016041689,-0.0030012531,-0.014020069,0.020872574,-0.0029536663,-0.00935984,-0.009379531,0.005208298,0.02281543,0.014177598,0.016277982,-0.03035056,0.028801527,-0.012405398,-0.021240141,0.001315202,0.017787633,-0.06563703,0.030429326,0.038935885,-0.04492198,-0.03444631,0.033579905,-0.014203853,-0.03035056,0.012589182,0.041456345,-0.017328175,-0.0043189162,-0.02717373,-0.012267561,-0.0066129304,0.023117362,0.01416447,-0.015766013,0.01795829,0.02281543,0.029615426,-0.00609768,-0.04749495,-0.0055988384,-0.0330023,-0.019809255,0.02003242,-0.01781389,-0.0044567543,0.02271041,-0.01487335,0.010751345,-0.0061108074,0.008486868,0.024141299,-0.0578656,0.012622001,-0.0056579118,-0.017459448,-0.012996132,0.040406153,0.037098046,0.0048899585,0.00786988,0.0058220043,-0.006494784,0.0029027974,-0.00958957,0.00049638003,0.00095994154,-0.03977604,-0.0026418904,0.025637822,-0.030481836,-0.037675653,-0.0551351,0.038568318,-0.0093073305,0.010711962,-0.008887254,0.028827783,-0.010180303,-0.0017853271,0.035391483,-0.034131255,-0.023996897,-0.002141408,-0.015805395,0.023261763,-0.009149802,0.00948455,-0.0032441102,-0.021699602,0.0025450757,0.00349189,-0.03470886,-0.017039372,-0.015004625,0.0020478752,0.0036395732,0.057918113,-0.031295735,-0.038016967,0.05216831,-0.004371426,-0.005520074,-0.028880293,-0.002097103,-0.008867563,0.01659304,-0.0042499974,-0.00064447353,0.01533281,0.02924786,-0.057288,0.011762155,0.028644,-0.031138206,-0.023314271,-0.012490726,-0.010232813,0.02964168,0.0053888,-0.021056358,-0.03652044,-0.016632423,0.017275665,-0.040799975,-0.03704554,-0.006091116,-0.015621613,0.025362147,0.020715045,0.0123463245,-0.0035903454,0.036756735,-0.009773353,0.01836524,-0.00586795,0.009615825,0.040563684,-0.0068787606,0.0013480204,-0.0006243722,0.018942846,-0.006094398,0.0061272164,-0.008145555,-0.0030504807,0.03935596,0.011283005,0.003770847,-0.0017180492,-0.0024121606,0.01973049,-0.009241694,0.006041888,-0.004108878,-0.029457897,-0.023484929,0.02180462,-0.0113223875,-0.007797679,-0.03743936,0.040484916,0.04093125,-0.011177986,-0.018614661,-0.04224399,0.01107953,0.012169105,-0.03252971,0.015857905,0.025204618,-0.028197667,0.023182997,-0.017013118,-0.011860611,-0.014387636,0.038988393,-0.030901913,0.003997295,-0.013521228,-0.026819289,-0.040747467,0.026648633,-0.022539755,0.012615437,0.008106173,-0.0030570445,-0.0019018329,-0.002472875,0.02407566,0.008499995,0.018654043,0.014151343,-0.012832039,0.006041888,-0.0072988374,0.008565632,0.006294591,-0.024416974,-0.0032605194,0.0065079113,-0.0028174694,0.01983551,0.0020823346,0.0043287617,-0.020610027,0.023406163,-0.009740535,0.0018296321,0.0041548237,-0.042322755,0.0120050125,-0.031847086,-0.016934352,-0.0025467167,0.002892952,-0.00032141633,0.010219685,-0.0048210397,-0.005608684,-0.027383767,-0.008106173,-0.02504709,0.014768331,-0.008007717,-0.010232813,-0.026753653,-0.015555975,0.009530496,0.008834744,-0.0018575279,0.004919495,-0.018050183,-0.045867153,0.04605094,0.018483387,-0.06736984,0.004135133,0.029431643,0.0047324295,0.0030307898,-0.01983551,0.0050409236,0.022067169,-0.008710033,-0.025454039,-0.0037577199,0.0022037632,0.0044928547,-0.0076467134,-0.0048243213,0.029405387,0.028355196,0.015464083,0.00983899,0.026661761,0.0049818503,0.032844767,0.008769107,-0.0051328153,0.0020642844,0.04185017,0.027042456,-0.026477976,0.010974511,0.00033249258,-0.016264856,0.03652044,-0.033474885,-0.006865633,0.015411573,-0.008532814,-0.034787625,0.014847095,-0.014886478,0.021266397,-0.03935596,0.016172964,0.022605391,0.021069486,-0.025782224,-0.00032962093,-0.020872574,0.01618609,0.022434736,0.011420842,-0.030376816,-0.03355365,-0.002981562,0.05938838,-0.033868704,0.006950961,-0.006553857,0.021673346,0.002472875,-0.02534902,-0.026097283,0.0075810766,0.044554412,-0.023813114,-0.00017024604,0.0060779885,-0.0024466203,-0.04442314,-0.029510407,-0.017630106,-0.042821597,-0.024246318,0.012471035,-0.011565244,-0.03749187,-0.0010403469,0.017616978,0.010869492,0.009812736,-0.03355365,-0.0008368721,0.02691118,-0.010922002,-0.0038135112,0.011230495,0.0036461367]},{"id":"guide-attachments-0","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Basic File Upload\nPass files in your send options. Each file needs a name and data (Buffer, Blob, Uint8Array). Use with message.reply(), message.send(), or channel.send().\n\n```javascript\nimport { Client, Events } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!file') {\n const data = Buffer.from('Hello from Fluxer!', 'utf-8');\n await message.reply({\n content: 'Here is a file:',\n files: [{ name: 'hello.txt', data }],\n });\n }\n});\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.021233737,0.0124683995,0.013046334,-0.0062020924,0.015711254,-0.04961674,-0.045421362,0.006528518,-0.0061378772,0.03388408,-0.002188659,-0.009070359,0.051072277,-0.045121692,-0.030780358,0.054068975,0.022175556,-0.018012289,0.054582693,0.025300683,-0.0107238935,0.018600926,0.024166219,0.014855054,-0.025878618,-0.04769029,0.0032910153,0.051757235,0.024615724,-0.044993263,0.03566069,-0.026756221,0.03606739,0.019756794,-0.017562784,0.05569575,0.03379846,0.06305906,-0.04679128,-0.004658258,-0.019221669,-0.0009679063,0.02889672,0.016524643,0.02859705,0.029196389,-0.024572914,-0.022111341,-0.034462012,0.059591457,0.0010715867,0.013410218,0.059291787,0.031508125,-0.008663665,0.029859943,-0.031615153,0.017905263,-0.03548945,0.011173398,0.009353975,-0.0064107906,-0.007919841,0.026328122,-0.023160186,0.017541379,-0.03758714,0.04786153,0.0137741035,0.07192072,0.07003709,0.019414315,0.044822022,-0.016203567,0.0245087,-0.006763973,0.0029565624,-0.03426937,0.022967542,-0.030031184,-0.009776724,0.0012682449,-0.06785378,-0.036773752,-0.07363312,0.068025015,-0.0580503,-0.017519973,-0.023288615,0.0009939936,-0.0054127835,0.004505748,-0.072905354,0.02472275,0.032364327,0.012971416,-0.015443691,-0.018140718,-0.027334156,0.002804052,0.06267378,-0.026178287,-0.054283023,-0.023117376,0.018237041,-0.015208237,0.022389606,0.032535564,0.025942832,0.017573487,-0.043837395,0.010178067,0.052656244,0.025600353,0.02352407,-0.0067104604,0.021340763,0.017209603,0.02829738,-0.016546048,-0.027890686,0.002535152,0.052014094,-0.009867694,0.018215636,-0.036024578,-0.00958943,0.0068817004,-0.07915561,-0.017231006,0.0774004,-0.016406916,0.052741867,-0.0339697,-0.008877714,0.0054422156,0.016824313,0.015668444,-0.022860516,-0.015572121,0.025450518,-0.03733028,0.044993263,-0.025450518,-0.02335283,0.04743343,-0.0559098,0.07003709,-0.013709888,-0.03375565,-0.0066622994,0.010595464,-0.022860516,0.035382427,-0.009605484,-0.009048955,0.028126141,0.01694204,-0.04364475,-0.06549923,-0.0037913567,-0.004289022,-0.0052040853,-0.045207314,0.0012006855,-0.013281789,0.016653072,-0.01883638,-0.014255715,0.062887825,0.01444836,-0.028361596,0.020313324,0.024872584,0.04640599,-0.0140630705,0.016203567,-0.04537855,-0.016481834,0.04525012,0.010402819,0.0034114183,0.0048000664,-0.019467827,-0.008053623,0.038721606,0.014801542,0.024273245,-0.022796301,0.015251047,-0.027227132,0.016535345,-0.009568025,-0.029774323,0.035403833,0.005736534,0.0155186085,0.010788109,0.022967542,-0.01728452,0.008829554,0.03392689,-0.0048455517,-0.04351632,-0.029132174,0.016235676,-0.0005160606,0.056423523,0.0015170778,-0.03259978,0.029688705,0.05021608,-0.011515878,0.021576218,-0.04236045,0.026734818,0.008984739,0.04991641,-0.031315483,-0.013517244,-0.061046995,-0.013506541,0.06639824,-0.025942832,-0.013431624,0.025900023,-0.018001586,-0.02825457,-0.014705219,-0.0075238496,0.042467475,0.010547303,-0.009942612,-0.037779786,0.020816341,0.018558115,0.03728747,0.00111841,-0.009669699,0.0113553405,0.00064047705,-0.043152437,0.02085915,-0.00829978,0.00971786,-0.022774896,-0.020923365,-0.017252412,0.043452103,0.0240806,0.050772607,-0.035682097,0.052099716,-0.016524643,0.04099053,-0.070165515,-0.027355561,0.0052040853,0.036944993,-0.022368202,0.0037057367,-0.013238979,-0.013741995,0.0011438285,-0.029431844,0.01608584,0.0036495486,0.04854649,-0.027762257,-0.012896499,0.021886589,0.027612422,0.030801762,0.008727879,-0.02339564,0.02863986,0.0042970493,-0.02378093,-0.003981326,0.064386174,0.010386765,-0.015925303,-0.052056905,0.0012140636,0.0015531987,0.026328122,0.01870795,-0.029517464,0.032342922,0.01229716,0.019639067,-0.010761352,0.024958204,-0.020923365,0.004781337,0.0653708,0.006127175,0.023845145,0.03272821,0.02420903,-0.05638071,-0.017509272,0.044993263,-0.016117949,0.011184101,0.009359326,-0.03277102,0.016706586,0.036709536,-0.032749616,0.019553447,0.0145018725,-0.05967708,-0.016663775,-0.03255697,-0.00339804,-0.0032160978,0.035938956,0.0035425238,0.02893953,0.026692007,-0.0076308744,0.051286325,-0.07162105,-0.026713412,-0.035853337,-0.029196389,-0.0037726273,0.018386876,0.027227132,0.01819423,-0.019510638,-0.0016080489,0.0045565846,0.040348385,-0.032235898,-0.03405532,0.03608879,-0.018247744,0.059591457,-0.022518037,-0.041397225,0.002937833,0.030673333,-0.03959921,-0.01857952,0.018076504,0.031743582,0.013624269,-0.014726625,-0.02915358,0.03384127,-0.031443913,0.008053623,0.019243075,-0.009450298,-0.018033694,-0.08382189,0.00576329,-0.031743582,-0.04888897,0.036623918,0.010097798,0.02459432,0.027376967,0.006464303,-0.0018889892,-0.05753658,-0.010980753,-0.04283136,0.025750188,0.023481261,-0.013731293,0.029603085,-0.002012068,-0.018044395,-0.0017364788,0.008583396,-0.011515878,0.0042943736,-0.009878397,0.079626516,-0.011965383,-0.035724908,-0.023117376,-0.02472275,-0.02292473,0.0013324599,0.0052522463,0.002301035,0.014769435,0.0391283,-0.04948831,0.03989888,0.010718542,0.07085048,0.08168139,0.01759489,-0.014651707,-0.033691436,0.024465889,0.031893417,0.0046983925,0.029688705,0.035682097,-0.01759489,-0.011173398,-0.0098302355,0.015218939,-0.038678795,-0.00019715991,-0.006014799,0.021940103,0.012810879,-0.015604229,0.0062074433,-0.015058402,0.008235565,-0.025364898,0.007400771,-0.03452623,-0.004923145,-0.016481834,-0.0039465427,0.014726625,-0.0339697,0.063529976,-0.020837747,0.042296235,-0.052356575,-0.062887825,-0.06798221,-0.0025150848,0.0193501,0.03362722,-0.030887382,0.02816895,-0.027847875,-0.022325391,-0.0067425678,-0.0014568763,0.02885391,0.015379476,0.042381857,-0.011901167,0.00722418,-0.02863986,0.039534993,-0.008669016,0.032813832,-0.054197405,-0.04381599,-0.0013070415,-0.043302268,0.016760098,0.025043825,-0.01905043,0.006956618,0.083350986,0.0005715798,-0.021233737,0.040969126,-0.03626003,0.0007819506,-0.002953887,-0.02489399,-0.018922,-0.0032803128,0.0037057367,-0.0116443075,-0.018162124,0.020816341,0.029988373,0.018311959,-0.025578948,-0.04373037,0.003719115,-0.04572103,0.025878618,0.019799605,0.044051442,0.04122599,-0.023459855,-0.044565164,-0.053683683,0.09837728,0.051543187,-0.018258445,0.026328122,-0.007978706,-0.03840053,0.0027987007,0.03938516,-0.0084014535,0.0421464,-0.03797243,-0.007941247,-0.03929954,0.026285313,-0.015796874,-0.017905263,-0.022753492,-0.02412341,-0.007620172,0.022068532,-0.007925193,-0.02893953,-0.018643735,0.0040428652,0.026221098,0.061218236,-0.011537283,0.009107818,0.017016957,-0.030694738,0.015604229,-0.03750152,0.04197516,-0.004527153,-0.05753658,-0.0012702516,0.03908549,0.0050408724,-0.015861088,-0.019360803,-0.0020588913,-0.025921429,-0.026028452,0.012329267,-0.026970271,0.051457565,-0.004955252,-0.0049525765,-0.0023358183,0.0021057148,0.025386304,-0.032813832,-0.0037137636,-0.0035559018,0.0050408724,-0.014426955,0.011023563,-0.016952742,0.01444836,-0.025771594,0.021180226,-0.0066194893,0.026049858,-0.0020508645,0.0061218236,-0.010204823,-0.034975734,-0.012532614,0.0023197643,0.04313103,0.03302788,-0.0021859834,-0.0010100474,-0.03435499,-0.010980753,0.011505175,-0.013378111,-0.01079346,-0.005998745,0.004476316,-0.0022635765,-0.0068442416,-0.012136622,0.022582252,-0.003052885,0.009113169,0.033520196,-0.01582898,0.0059719887,-0.0032776373,0.010049637,-0.041568466,0.018087206,-0.039663423,-0.023973575,-0.0005551916,-0.012404185,-0.015839683,0.026263908,-0.0076255235,0.0057097776,-0.020976879,-0.02024911,0.007047589,-0.00941819,0.030908788,-0.004933847,0.037073422,-0.020848447,-0.003689683,-0.0039625964,-0.011879763,0.011815548,-0.03358441,0.02111601,0.00078663294,-0.025792997,-0.00016145708,-0.009905153,0.025921429,0.025043825,0.028211761,-0.045121692,-0.015251047,0.022047127,0.008251619,0.026863247,-0.034333583,-0.06909527,-0.016053732,0.0039064083,0.014459062,0.005126492,0.010739948,0.015079807,0.01221154,0.007336556,0.008406805,0.02283911,-0.0032134224,0.02305316,0.0057525877,-0.007684387,-0.012286457,0.01728452,-0.00133848,0.018654438,0.034890115,0.00066388876,-0.005348569,-0.032278705,0.008144594,-0.009814182,-0.021800969,-0.006127175,0.027120106,-0.0062234974,0.053555254,0.0016281161,0.011119886,0.030138208,-0.038079455,-0.0021431735,-0.0032883396,-0.022667872,-0.024166219,0.0058596125,-0.0016976823,-0.024530103,0.0089793885,-0.04124739,0.011451663,0.014994186,-0.009626889,0.03444061,0.011762035,-0.010713192,-0.010354658,0.037951026,-0.016289188,0.002018757,-0.026413742,-0.010809514,-0.0097339135,0.010525898,-0.013153358,0.019853117,-0.0035612532,-0.020067167,-0.0005571983,-0.031101432,0.017637702,-0.039513588,0.022218367,0.02851143,-0.00021555481,0.027505396,-0.032963667,-0.036709536,0.0014261067,-0.03456904,-0.027013082,0.022496631,-0.0029966969,0.0041177827,-0.025557544,-0.0019705957,0.018718652,-0.024786964,0.0035585775,0.03818648,0.01943572,0.027912091,0.019499935,-0.025707379,-0.003264259,-0.015657742,-0.019596256,0.007379366,0.025643162,-0.06395807,-0.0027344858,0.00061071076,0.04756186,-0.054625504,-0.023095971,0.016653072,-0.011216208,-0.004495045,-0.019981546,-0.008974037,-0.027034488,0.0021404978,-0.005174653,0.010953997,0.0038475448,-0.005375325,-0.013688483,0.024615724,-0.012051002,-0.04948831,0.0038421934,0.016246378,-0.013399516,-0.0019732714,-0.010814865,0.0040321625,0.0124683995,0.03711623,-0.035981767,0.017123982,-0.010729245,0.010846972,-0.03921392,-0.0063144686,0.016663775,0.0016615614,0.032492757,0.030544903,0.018301256,0.000035911868,-0.023160186,-0.0073258537,-0.04188954,-0.009065008,-0.033006474,0.004115107,0.0075399033,0.0026047183,-0.0318292,-0.0065017617,-0.01819423,-0.013313896,-0.024401674,0.027890686,-0.023566881,0.0563379,-0.021640433,0.0014929972,-0.02115882,-0.019071834,-0.0014287822,0.0038288154,0.04002731,-0.027441181,0.0043532373,-0.006833539,0.00031271335,0.029474653,0.05021608,-0.033477385,-0.037908215,0.0018354768,-0.012061705,-0.014073772,0.0232244,0.01913605,0.0034809844,-0.017241709,0.012265052,-0.009530567,-0.035831932,-0.037244663,-0.040048715,-0.010574059,-0.011280423,-0.0050087646,-0.0028629159,-0.03797243,-0.009252301,0.018536711,-0.013131954,-0.07513147,0.0044656135,0.020634398,-0.034076724,-0.04032698,-0.006373332,-0.008845607,0.038550366,0.03456904,-0.023331426,0.02162973,-0.011451663,0.02463713,-0.01027974,0.050858226,0.011205506,0.0460207,0.017958777,-0.0067425678,-0.016010923,-0.010301146,-0.020976879,0.003087668,0.077186346,-0.006244902,0.011398151,0.01638551,-0.0091292225,0.03298507,-0.0031652611,0.040562432,0.018087206,0.004519126,0.0056188065,0.039941687,0.050130457,0.003759249,0.020698613,-0.0014742678,-0.038036644,-0.01732733,0.0012361375,-0.018076504,-0.0062823608,0.01883638,0.044907644,0.038635984,0.02893953,0.014705219,-0.017123982,0.0039599207,-0.019970844,-0.0005786033,-0.014352038,0.026392337,-0.0010394793,-0.016578155,0.02395217,0.00006229183,-0.018996917,-0.014897864,-0.02825457,0.010911187,0.011537283,0.034247965,-0.01926448,-0.000062626284,-0.009423542,-0.024744155,-0.022903327,0.0011016874,-0.0163427,0.044993263,0.025557544,0.0073312046,-0.0006996752,0.03277102,-0.0092951115,-0.0058221538,-0.020227704,0.0025244495,0.025364898,0.027355561,0.019360803,0.021233737,-0.017477164,0.009873046,-0.0072402335,0.016835015,0.052784674,0.05937741,-0.005155924,0.02175816,-0.0055278353,-0.011194803,-0.007828871,-0.045935083,0.019788902,0.051329136,-0.05663757,0.025043825,-0.02262506,0.031144243,0.0064107906,-0.0106275715,0.0066248407,-0.008069676,-0.0026354878,-0.018044395,-0.04948831,0.015668444,-0.01875076,-0.01672799,0.025835808,-0.0029084014,-0.018622331,0.027312752,-0.00696732,0.0014207554,-0.01397745,0.03728747,0.023459855,0.0065338695,-0.016364105,-0.0066890554,0.011708523,-0.029945564,-0.03337036,-0.012575424,-0.004941874,-0.0064321957,0.025600353,-0.004248888,-0.0064107906,0.014523277,-0.0056776702,0.010317199,0.019029025,-0.017776834,0.00800011,-0.00950381,-0.021383572,0.010659679,-0.017937372,-0.0054850257,0.032706805,0.015978815,0.031550936,-0.008283726,-0.06519956,0.023759525,-0.003349879,-0.03384127,0.004016109,0.022432417,0.041932352,-0.02902515,-0.010499141,-0.025343493,0.02808333,0.026970271,0.030865978,0.0036763048,0.004992711,-0.007620172,-0.015133319,-0.027205726,0.005913125,0.017626999,0.014480467,0.0024588967,-0.00864226,0.03426937,0.005246895,-0.0010742623,0.025129443,0.019371504,-0.0144055495,0.028019115,-0.0077539533,-0.0021190927,0.00563486,0.017102577,0.029496059,0.044051442,-0.018889893,0.016845718,0.007159965,-0.019200265,0.005907774,-0.00082476053,-0.0005705764,0.02111601,-0.013121251,-0.018611629,0.025150849,-0.026328122,0.012725259,-0.042638715,-0.013185467,0.017209603,0.027248537,0.020827044,-0.039941687,-0.0067907292,0.03238573,-0.038593173,0.032321516,-0.0056776702,0.025043825,-0.0017779509,0.019253777,-0.009396785,-0.0057525877,-0.025857212,0.016267782,-0.018033694,0.013067739,-0.02386655,0.0051077628,0.017519973,0.0030154262,-0.0012461711,0.024615724,-0.036602512,0.00003137585,0.0054101082,-0.030865978,-0.026092667,0.018119313,0.027334156,-0.012693152,0.01789456,0.0016950066,0.025964238,-0.014394848,-0.026092667,0.017519973,0.015625633,0.017787537,0.010124555,-0.022646466,0.03349879,-0.05732253,-0.017241709,-0.018151421,0.016289188,0.008026866,-0.033049285,-0.0042943736,0.01659956,0.014105881,0.0076094694,0.009621537,0.024851179,0.010574059,-0.0022354824,0.021148117,0.008064325,0.019842414,0.00088496204,0.0060415547,0.013988153,-0.0343978,-0.007930544,0.021008985,-0.0013966748,-0.002287657,0.0124683995,0.023545476,-0.036474083,0.021918697,-0.0050060893,-0.014202203,-0.007218829,0.0070315353,0.022453822,0.0039037329,-0.0019812982,-0.0232244,-0.02480837,-0.0017752753,-0.012607532,-0.026520766,-0.008128541,0.001947853,-0.035724908,-0.0048830104,0.009701806,0.024016384,0.0032856641,-0.014052368,-0.025728783,-0.0146945175,0.029988373,0.0021726051,-0.055010792,-0.00696732,0.0023398316,0.01737014,-0.016481834,-0.012832284,-0.008454966,0.0013364733,-0.025857212,-0.0052923807,0.014683815,-0.008026866,0.044179875,0.0031572343,-0.009894451,0.04584946,0.017776834,-0.044693593,0.03596036,0.007668333,-0.037951026,-0.017637702,-0.0017016957,0.0087867435,0.002924455,-0.018001586,0.0013398178,0.04495045,0.00006747585,0.00085017894,0.010761352,-0.0012548668,-0.0004411432,0.004034838,0.031080028,-0.017990883,0.004979333,-0.021940103,-0.026135478,-0.016192865,-0.06545642,0.02808333,0.03546805,0.042809956,-0.010445629,0.02420903,-0.022068532,0.04717657,0.04948831,-0.029346224,0.032492757,-0.0064321957,-0.032278705,0.0020093923,0.04597789,-0.0016736017,-0.007828871,-0.00494455,0.04321665,0.0292392,0.038036644,0.027740851,0.01023158,0.0024027086,-0.0070154816,0.026071263,0.04781872,-0.009749968,0.037844,-0.009867694,-0.020302622,0.005230841,0.010049637,-0.01994944,0.0115479855,-0.00036288126,0.0057204803,0.012350672,-0.0013217573,-0.017969478,0.008872363,-0.017691214,-0.02842581,0.0032963667,0.007919841,0.010777406,0.011130588,0.005827505,-0.022261176,-0.02115882,-0.048032768,-0.041504253,0.009461,-0.015368774,-0.034911517,0.0020896608,-0.015315262,0.0002655555,-0.009985422,-0.0027318103,-0.0055920505,0.0017685862,-0.028404405,-0.021608325,-0.0145018725,0.02851143,0.010868377,-0.0063305222,0.030865978,0.007962652,0.034419205,0.0064750058,-0.0318292,0.009407488,0.000913725,-0.0037779785,0.015861088,0.00021170861,0.031122837,0.041825328,0.0012849675,0.013538648,0.00078997744,0.017252412,0.0059933937,0.0069512664,0.0069298614,0.015775468,-0.009022198,0.008974037,0.0012053679,-0.04670566,0.0020829719,0.0068442416,-0.0016548723,-0.014544683,0.04261731,0.0073044486,-0.015111914,0.00042174495,0.021383572,-0.040241357,-0.033049285,0.018386876,-0.0008883066,0.015550716,0.039770447,0.022154152,0.008663665,0.035853337,0.007459635,-0.021897292,0.0009839601,0.010541951,-0.0131961685,-0.0057204803,0.013923937,-0.0066408943,0.0059880423,0.029710108,-0.016524643,0.019360803,0.015679145,-0.01994944,-0.010852324,-0.043751772,-0.01359216,-0.03857177,-0.004992711,-0.010980753,-0.006833539,0.020623695,0.00232244,-0.02382374,0.010360009,0.020570183,0.00535392,0.0023478584,0.010804162,-0.011890465,0.020131381,-0.00980348,0.0011465041,0.013474434,0.019029025,-0.009428892,-0.013602863,-0.004425479,0.00093379215,-0.024444485,-0.019906629,-0.019799605,0.0016000221,-0.026049858,-0.024615724,0.026627792,0.012018895,-0.021479895,0.007818168,-0.04313103,-0.0077646556,-0.015593526,0.020281216,0.02339564,0.011333936,-0.011291126,0.030973002,-0.000025167572,0.057622198,0.043152437,0.022303987,-0.01600022,-0.0369878,-0.017338032,0.028746884,-0.005228166,0.0071492624,-0.027526801,0.009043603,-0.02868267,0.031572342,0.000559205,-0.026370933,-0.005897071,-0.012832284,-0.02756961,-0.0210732,0.0015277803,-0.015743362,-0.017091874,-0.009434244,0.005955935,-0.050729796,-0.008968686,-0.026135478,-0.009252301,0.020238407,0.0279549,-0.021554813,0.0014742678,-0.040048715,-0.0056990753,-0.042381857,0.0002312741,-0.039770447,-0.009391434,-0.0059505836,-0.012714556,0.014105881,-0.011847655,-0.015497204,0.0019518664,0.022518037,0.018536711,-0.025771594,0.0069726715,0.008481722,0.010183418,0.013271086,-0.031722177,-0.020591589,0.015090509,-0.00855664,-0.0037431954,0.015807576,0.0017016957,-0.02305316,-0.021619027,0.0054769986,-0.00034515528,0.03005259,0.04884616,0.00022659176,0.0053405417,-0.016920635,0.014651707,-0.009921207,-0.017177494,0.01638551,0.018055098,0.017059768,0.03367003,-0.0018903271,-0.000396661,0.022004317,-0.02103039,0.0017471813,0.038336314,0.023331426,-0.009273707,-0.024701344,0.009327219,-0.018258445,-0.018258445,-0.0039064083,0.0026167585,-0.027740851,0.040177144,0.019125348,0.012307862,0.02868267,0.003293691,-0.007679036,-0.021319358,0.010643625,-0.007336556,-0.017049065,-0.024765559,-0.021875886,-0.007416825,-0.0069726715,0.012115218,-0.025364898,-0.014170095,0.023267211,0.0033953646,0.0058114515,-0.025878618,0.037565734,-0.009386083,-0.017177494,0.018611629,-0.0032160978,0.040583838,-0.01647113,-0.013303193,-0.036581106,0.0072723413,-0.052185334,-0.022946136,0.01996014,-0.038379125,0.004738527,-0.007165316,-0.004462938,0.032235898,0.02863986,-0.0034676064,0.021961506,0.0128536895,-0.011462365,-0.032578375,-0.009535917,0.0063305222,0.02433746,-0.004735851,0.007844924,-0.015111914,0.0075238496,0.0038769767,-0.0014675788,0.0120403,0.00030719486,-0.031187052,0.027077297,-0.009477054,0.010092447,-0.007176019,-0.021105308,0.011483771,-0.0016709261,0.00035017205,-0.03135829,0.017723322,0.0050328453,-0.019928034,-0.00007437394,-0.008149945,0.02489399,-0.0028522133,0.0032482054,-0.016802907,0.026499363,0.012671746,-0.012821581,0.013217574,0.00298867,-0.04824682,0.04614913,-0.0017190872,0.008524532,-0.008888417,0.028704075,0.018397579,-0.0047920393,0.041782517,-0.0010107163,-0.01359216,0.028447215,0.009434244,-0.007218829,0.0215013,-0.03857177,-0.0036415218,0.001020081,-0.044137064,-0.021693945,-0.028104736,-0.00081740256,0.0045940434,-0.01023693,-0.020120678,-0.0010080406,-0.019660471,0.0163427,0.005048899,0.03452623,-0.009118521,-0.064129315,0.030823167,0.020709315,-0.025257874,0.039791852,0.0046368535,-0.017220305,0.032621186,-0.003732493,0.0167708,0.00993191,0.0020495267,-0.00022291277,0.010691786,0.03548945,0.023631096,-0.029089365,-0.006196741,-0.013538648,-0.02816895,-0.000104850944,-0.04991641,-0.04158987,-0.0089098215,0.00032341582,-0.049531117,-0.011783441,0.023095971,-0.032214493,-0.019510638,0.019157454,-0.012190134,-0.018001586,-0.0016802908,0.0036067388]},{"id":"guide-attachments-1","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Attachment Metadata\nWhen using files, you can pass attachments to set metadata per file: filename, title, description, and flags. The id in each attachment matches the file index (0, 1, 2...).\n\n```javascript\nimport { MessageAttachmentFlags } from '/core';\n\nawait message.reply({\n content: 'Spoiler image:',\n files: [{ name: 'secret.png', data: imageBuffer }],\n attachments: [\n {\n id: 0,\n filename: 'secret.png',\n title: 'Hidden image',\n flags: MessageAttachmentFlags.IS_SPOILER,\n },\n ],\n});\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.016181782,0.0007848281,0.0055478723,-0.015947942,0.0069450713,-0.03722745,-0.035426877,-0.0014410438,-0.005986324,-0.0018078815,0.0004983732,-0.006658616,0.061032444,-0.05733776,-0.024646819,0.035169654,-0.005638486,0.005708638,0.030095309,0.045622338,-0.0016325009,0.04122613,0.007266602,0.0340706,-0.0011706654,-0.010300687,-0.0033643842,0.057431296,0.043611307,0.005404645,0.04466359,-0.014159059,0.052099727,0.014615049,-0.008757337,0.040571377,0.01691838,0.025932942,-0.029347017,0.00069640705,-0.020390917,0.01450982,0.018157737,0.003273771,0.024927428,0.005942479,0.004814197,0.005156189,-0.025512028,0.061500125,0.02076506,0.021174282,0.025371725,0.06655109,-0.008090891,0.033556152,-0.031895883,0.017912203,-0.010043462,0.014100599,0.0095173195,-0.018941103,-0.015573796,0.03608163,-0.037765287,0.009447168,-0.060564764,0.030750062,0.0492001,0.050369304,0.063745,0.040571377,0.02248379,0.0038057587,0.030750062,-0.02167704,-0.0011509351,-0.025044348,-0.0032006956,-0.048077665,0.017128836,0.027686749,-0.058179587,-0.022752708,-0.06692523,0.045622338,-0.042746093,-0.03514627,-0.07861727,0.002222949,-0.03727422,-0.0014753891,-0.1120565,0.00044831663,0.033930298,0.028505191,-0.051351435,-0.013843374,-0.025067732,0.015760869,0.0690298,-0.0076816697,-0.03704038,-0.03905141,0.021536736,-0.008038277,0.018204505,0.04513127,0.010739137,0.024529899,-0.03498258,-0.01921002,0.01370307,0.00605063,0.021033978,-0.0298147,-0.01559718,0.017818667,0.036619466,0.003867142,-0.04419591,-0.0037356066,0.06617694,0.006185089,0.022904705,-0.023197005,-0.002912779,-0.01897618,-0.08624048,-0.009149021,0.04071168,-0.027990742,0.05953586,-0.058179587,-0.022437023,-0.009967463,0.024646819,0.013328925,-0.026564313,-0.015106115,0.015176266,-0.015375031,0.02930025,-0.008277964,-0.03177896,0.019221712,-0.06210811,0.055139657,-0.008622879,-0.011838189,-0.006319547,0.017970664,-0.0128612425,0.013258772,0.019876467,-0.021793962,0.0318725,-0.008903488,-0.027569829,-0.034023833,-0.018870952,-0.01617009,0.011931726,-0.06542865,0.016743,-0.016427314,0.032761093,-0.0022594866,-0.014474744,0.029978389,0.009587472,-0.0381862,0.0075238273,-0.027990742,0.05453167,0.008137659,0.020157075,-0.023372386,-0.019794622,0.0287858,-0.0037648366,0.013913526,-0.01714053,-0.008377346,-0.004133136,0.014837197,0.012183105,0.01433444,0.00037597213,-0.005053884,-0.0131652355,0.032527253,0.019630933,-0.008073353,0.0066410783,-0.01433444,0.00659431,0.00966347,0.008026585,-0.016415622,0.005372492,0.036058247,0.022846244,-0.021361355,-0.03858373,0.026026478,-0.0126157105,0.009949925,-0.0076816697,-0.015012578,0.0045452802,0.013399077,0.0052000345,0.037250835,-0.012416946,0.0044049756,-0.024179136,0.008324732,-0.042442102,0.019163253,-0.047516447,-0.02471697,0.07487582,-0.035473645,-0.038840953,0.016953457,-0.034491517,-0.005159112,-0.036946844,0.016883304,0.022682555,0.006296163,-0.01995831,-0.058740802,-0.012054492,-0.003598225,-0.0070386073,-0.031895883,0.016181782,-0.013574458,0.023091776,-0.010476067,0.0037531445,-0.0037356066,-0.019934926,-0.0137147615,-0.00023895605,-0.0071321437,0.03481889,0.03135805,0.057898976,-0.021069054,0.03222326,-0.02224995,0.024950812,-0.0533157,-0.050930522,0.05803928,0.035917945,-0.022951473,0.0053374157,-0.01788882,-0.04178735,0.0018751108,-0.024015449,0.018941103,0.018870952,0.041202746,-0.032480486,-0.03439798,0.0046505085,0.011276972,0.0027607826,0.017070377,-0.019139867,0.022425331,-0.019104792,-0.028037509,0.0058080205,0.02958086,0.03336908,-0.026915073,-0.036385626,0.011230203,-0.015117806,0.022799477,0.012580634,-0.019888159,0.0627161,0.008979486,0.011592656,-0.021805653,0.048825953,-0.0138316825,-0.013515997,0.083481155,0.0099382335,0.0050305,0.013960294,0.000010978413,-0.04260579,-0.03266756,0.039636012,-0.008172736,0.035356726,-0.014533204,-0.016778076,-0.009301017,-0.010066845,-0.03154512,0.035824407,-0.02385176,-0.06355792,-0.015012578,-0.03388353,-0.015152883,-0.01210126,0.017923895,0.03601148,0.02953409,0.02248379,0.009312709,0.0681412,-0.060798604,-0.0058109434,-0.0146267405,-0.006407237,-0.005071422,0.00816689,0.051632043,0.029370401,0.007973971,-0.001275163,0.009084715,0.023933604,-0.039028026,0.0018531882,0.031638656,-0.025301572,0.061032444,0.016696231,-0.029440554,-0.0204143,0.010101922,-0.04971455,-0.037180685,-0.051912654,0.013118467,0.01972447,-0.024927428,-0.025932942,0.013738146,-0.0356841,-0.004171135,0.010651448,-0.013656301,-0.014650125,-0.066644624,0.0084825745,-0.012966471,-0.0628564,0.024342826,0.019923234,0.008897642,0.024857275,-0.0024392516,-0.0048171203,-0.033345696,0.024296056,-0.022285026,-0.0015769638,0.031732194,-0.020893674,0.005413414,-0.0125572495,0.013574458,-0.01881249,-0.0031714656,-0.011896649,0.0057612523,0.023500998,0.06514804,-0.005746637,-0.017549751,0.016555928,-0.016778076,-0.00478789,0.009552396,-0.03170881,-0.006319547,0.021314587,0.027873822,-0.04178735,0.03996339,-0.023629611,0.07609179,0.06701877,0.023126854,-0.0003577033,-0.045271575,-0.013036624,-0.0061324746,-0.009529011,0.023302233,0.03830312,0.011937572,-0.030843599,0.00725491,0.02241364,-0.021419816,0.036292087,0.009271787,0.015550412,0.0049632704,-0.0037589904,0.029440554,0.0008155197,0.0014958503,-0.0067638448,-0.009529011,-0.01496581,0.025208035,0.007506289,0.0005612179,0.01972447,-0.019256787,0.046019867,-0.040103693,0.07838343,-0.061546892,-0.08016062,-0.034795508,0.007512135,0.011019747,0.042278413,-0.027733516,0.030960519,0.0020490298,-0.026190167,-0.025886174,-0.002231718,-0.0006288125,-0.012627402,0.02586279,-0.02993162,0.012054492,-0.039823085,0.0048755803,0.043845147,0.018192813,-0.04753983,-0.0029361632,-0.025792638,-0.01324708,0.0077108997,0.028598728,-0.0314282,0.0070269154,0.07403399,-0.001180896,-0.023419155,0.032457102,-0.027943972,0.028739031,-0.0035806869,-0.04031415,-0.04971455,-0.027873822,-0.0024348672,-0.010803444,-0.004483897,0.020554604,0.020309072,0.018426653,0.012522174,-0.06346439,0.02460005,-0.08394884,0.039472323,0.01628701,0.015807636,-0.0064949277,-0.02081183,-0.018718954,-0.066644624,0.107005544,0.055747643,-0.022401948,0.04674477,-0.019022947,-0.06341762,-0.0035251498,0.061921038,-0.011154206,0.016836537,-0.02327885,-0.0026102478,-0.063230544,0.01881249,-0.004197442,0.0034433054,0.002252179,-0.009733623,0.0035163807,0.005112344,0.007763514,-0.018192813,-0.0067053842,-0.00037816438,0.023664687,0.0340706,0.01324708,0.0079973545,0.0012642017,-0.016228551,0.0049398863,-0.032761093,0.056916844,-0.011902495,-0.04760998,0.00043443232,0.022460407,0.019759545,-0.006097398,0.009599164,-0.019362018,-0.036385626,-0.028084278,-0.024997579,-0.040688295,0.047516447,-0.028481808,0.007921357,-0.0014980425,-0.013691378,0.0058635576,-0.016766384,-0.013691378,-0.0006741191,-0.008967794,-0.032059573,0.031077439,0.017210681,0.013621225,-0.022320103,-0.0021454892,-0.03004854,0.049293637,0.015421799,0.012709246,-0.0024392516,-0.030235613,0.0038320657,0.0037911437,0.013784914,0.01577256,0.010370838,0.0066410783,0.008447498,-0.002801705,0.026587697,-0.02396868,-0.020905366,0.0064656977,0.011276972,0.0061909347,0.021127515,0.017923895,0.03159189,-0.00906133,0.026213551,0.01577256,-0.01652085,-0.0013394692,-0.0066644624,0.009885619,-0.042067956,0.014603357,-0.003948986,-0.03329893,-0.006261087,0.0068866108,-0.015737485,0.019712778,-0.0164507,0.009681009,0.004448821,0.007401061,-0.0032036186,-0.016930072,0.024833892,-0.011446506,0.005074345,-0.018835874,0.006606002,-0.0037472986,0.0007504828,0.025628949,-0.015760869,0.012089568,0.0077167456,-0.0034433054,-0.014895658,-0.025395108,0.01749129,0.042746093,0.0008447498,-0.05481228,-0.0096342405,0.0055274116,-0.02327885,0.02649416,-0.045388494,-0.067112304,-0.040735062,0.023115162,0.02098721,0.00072015653,0.012837859,0.011762192,0.024646819,0.024950812,-0.029253481,0.015573796,0.010861904,0.035099503,-0.011580965,-0.035076115,-0.009593318,0.04386853,0.008318886,-0.0003577033,0.016380547,0.012954779,0.018473422,-0.0075822873,0.004138982,-0.0019218789,0.008231196,0.01577256,0.047165684,-0.006570926,0.060517993,-0.005910326,0.025184652,0.010154536,-0.022097955,0.014696893,-0.010493605,-0.0061967806,-0.03131128,-0.031100824,-0.032831244,-0.010189612,0.000522488,-0.053502772,0.02288132,0.026517544,-0.028622111,0.03147497,-0.0061733965,-0.009412091,-0.013574458,0.019853082,-0.043494385,0.0011297433,-0.025161268,-0.03067991,0.009692701,-0.0046563544,-0.021069054,0.006658616,0.007786898,0.00018341886,0.017292526,-0.028832568,0.00653585,-0.02167704,0.008698877,0.025769254,0.0022302563,0.010172074,-0.028294735,-0.041202746,-0.0083715,-0.0025517875,-0.011481582,0.032059573,0.019455552,-0.0053081857,-0.024904042,0.007757668,-0.012335101,-0.019315248,0.03210634,0.027873822,0.029276866,0.04113259,0.021022286,-0.006068168,-0.009505628,0.00023548497,-0.040501222,0.013153544,0.043330695,-0.057103917,0.02213303,0.002556172,0.06234195,-0.041904267,-0.030235613,0.004442975,0.006898303,0.022857936,-0.010943748,0.0025766331,-0.006985993,-0.026283704,0.005796328,0.00662354,0.0019584165,-0.012428638,-0.0064364676,0.030586375,-0.007909664,-0.037765287,0.018625418,0.02001677,-0.00027531097,-0.0026438623,-0.0035573028,-0.010230534,0.028271351,0.012826167,-0.01313016,0.04340085,-0.01628701,-0.009055484,-0.033228774,-0.0038145278,0.024436362,0.022273334,0.030375917,-0.0023661763,0.003007777,-0.011633579,-0.037882205,-0.025605565,-0.046768155,-0.012522174,-0.018987872,0.0070386073,0.029721163,-0.018450037,-0.0064423135,-0.012148028,0.0035426877,-0.013200312,-0.017187297,0.03224664,0.002842627,0.045318343,-0.03905141,0.027569829,-0.024997579,-0.025699101,-0.019946618,0.004746968,0.021525044,-0.026283704,-0.0067755366,0.019654317,-0.0118264975,0.006646924,0.036105018,-0.002193719,-0.023641303,-0.0083013475,-0.026751386,0.022963164,0.009768698,0.0056706388,-0.0044546667,-0.009873927,0.01904633,-0.015749177,-0.041413203,-0.030773446,-0.050790217,-0.008693031,-0.02420252,0.011095745,-0.009347785,-0.043213777,-0.013983679,0.040618144,-0.011686193,-0.09199296,-0.007593979,0.025652334,-0.03210634,-0.010686523,0.014755353,-0.007143836,0.03767175,0.060284153,-0.053128626,-0.009640086,-0.012545558,0.017596519,-0.028435038,0.030305766,0.0012773552,0.006284471,0.021221051,0.013013239,-0.012791091,-0.020893674,-0.0008067507,-0.013480921,0.04323716,-0.009371169,0.00806166,-0.0028893952,0.020776752,0.04496758,-0.016064862,0.020788446,0.012791091,-0.0120428,0.02035584,0.014194136,0.036549315,0.0134692285,0.023828376,-0.0016953456,-0.0064598517,-0.0015813482,-0.024670202,0.0015141191,0.0240856,0.037975743,0.038724035,0.031170975,0.01324708,-0.0061266283,0.00358361,-0.0180642,-0.014778737,0.005191265,-0.016099937,0.03743791,-0.0084825745,-0.045622338,0.006208473,-0.019163253,-0.024155753,-0.01668454,-0.024857275,0.036058247,0.010353301,0.029159945,-0.013375693,-0.013738146,-0.020344147,0.0024597128,-0.013083392,0.011294509,-0.020881983,0.03916833,0.046861693,-0.0023544843,-0.00942963,-0.006880765,-0.01800574,-0.027078763,-0.014007063,0.014498129,0.011312048,0.02689169,0.029721163,0.026844922,0.0037794516,-0.00816689,0.017339293,0.018999564,0.03640901,0.054204293,-0.004162366,-0.010423453,-0.0014264288,-0.017409446,-0.025348341,-0.036292087,0.020215536,0.04419591,-0.039752934,0.0040922137,-0.0049866545,-0.0129197035,-0.020028463,-0.015304879,0.0037882207,-0.034772124,0.015491951,-0.016158398,-0.022682555,0.02930025,-0.0146852005,-0.046136785,0.020484453,-0.012323409,-0.039144948,0.025044348,0.0034491515,-0.0024889428,-0.028224582,0.021606889,0.018602034,-0.0096342405,-0.012358485,0.0016032709,0.026728,-0.0146852005,-0.019853082,-0.014182444,-0.007792744,-0.012837859,0.019970004,0.00900287,0.0013979294,0.0077167456,-0.012510481,0.03336908,0.04375161,-0.057665136,0.012405253,0.0022945628,-0.0050100386,0.033065088,0.011113283,-0.0058840187,0.035193037,-0.005732022,0.019911543,-0.0022741016,-0.07047961,0.028177815,-0.020227227,-0.031287897,0.01508273,0.0070502996,0.047750287,-0.025278188,-0.033556152,-0.028762415,0.036689617,0.00079140486,0.015363339,-0.0058986335,0.00049070024,-0.012241565,0.0017026531,-0.027663365,-0.0023442537,0.00725491,0.016544236,0.003878834,-0.034842275,0.04891949,-0.0102422265,-0.016462391,0.023746531,0.018508498,0.0019101868,0.05172558,-0.011943418,-0.020507837,0.0025839405,0.0028952411,-0.0049018874,0.04419591,-0.006874919,0.0053198775,-0.027382756,-0.0125572495,0.0240856,0.023711456,0.004992501,-0.0030457762,0.008675493,-0.00037451062,0.019818006,-0.04466359,0.012381869,-0.038326506,0.011160051,0.033673074,0.0025912481,0.012370178,-0.044078987,0.0049866545,0.018227888,-0.03182573,0.0119492635,0.00180642,0.02150166,0.014942426,0.011288663,-0.006570926,0.015971325,-0.04113259,-0.0054864893,-0.020823522,0.007558903,-0.043915298,0.010037616,-0.005471874,0.003256233,0.00041908651,0.03308847,-0.04506112,-0.002547403,0.008991178,-0.021945957,-0.04031415,0.021992726,0.006489082,-0.011773883,0.0058927876,-0.006541696,0.046861693,-0.019677702,-0.022214875,0.017584827,0.025254805,0.0007855589,0.0076349014,-0.022062877,0.010856058,-0.024646819,-0.02740614,-0.03329893,0.01725745,0.03589456,-0.0345149,-0.021373047,0.013843374,0.0034696127,0.0026555543,0.0051444974,0.004252979,0.024038833,-0.009681009,0.008798259,0.017736822,0.028715648,0.023699762,0.025839407,0.025909558,-0.041272897,0.0069976854,-0.003560226,0.005708638,0.010908673,0.026961843,0.033977065,-0.03004854,0.015152883,-0.006985993,-0.004200365,-0.010885288,0.010230534,-0.003297155,0.0164507,0.010873596,-0.031241128,-0.04115598,-0.024997579,-0.015176266,-0.038162816,-0.01875403,0.01949063,-0.05705715,0.010061,0.03577764,0.0271723,0.009301017,-0.0024991734,-0.0005860634,-0.026120014,0.032714326,-0.0122532565,-0.058460195,-0.014182444,0.011592656,-0.015012578,-0.022051185,-0.010791752,-0.014287672,0.0034842277,-0.031685427,0.008693031,0.010820982,0.0046446626,0.016415622,-0.004174058,0.0049281945,0.03257402,0.011884958,-0.012276641,0.047890592,-0.017467907,-0.016930072,-0.016357163,-0.0072782943,-0.0020256457,0.0043406696,-0.0032328488,0.0052789557,0.065709256,-0.008219504,-0.005167881,0.010949595,-0.005980478,0.0083013475,0.0054981816,0.028832568,-0.0073659844,0.026353857,-0.014755353,-0.033626303,-0.0074361367,-0.048545346,0.024576666,0.016719615,0.011750499,-0.016602695,0.030375917,-0.018321425,0.048311505,0.010195458,-0.04707215,0.022682555,0.004752814,-0.015410108,-0.0029098561,0.052707713,-0.0030837753,-0.0024582513,0.004451744,0.030866982,0.022168105,0.03584779,0.013293848,-0.016626079,0.014603357,0.0035573028,0.0070444536,0.057244223,-0.013235388,0.03004854,0.00021520659,-0.026821537,0.033252157,0.008862565,0.0030311611,0.013364,-0.010587141,0.012779399,0.007149682,0.011855728,-0.010318224,0.021829037,-0.009131483,-0.053596307,0.009055484,-0.0049603474,0.001791805,0.0032036186,0.01104313,-0.0361284,-0.017479599,-0.037835438,-0.013749838,0.016824843,-0.02035584,-0.0010004,0.000749752,-0.021069054,0.006956763,-0.00563264,-0.01731591,-0.011089899,-0.00013162679,-0.031732194,-0.0064364676,-0.0013241235,0.028598728,0.011563427,-0.008394884,0.023676379,0.00010130055,0.023243774,0.011124975,-0.03400045,0.0034491515,0.005430952,0.016240243,0.00008700521,-0.014673509,0.027148915,0.021782268,0.021910882,-0.0073484466,0.010516989,0.013749838,0.00042164416,0.0037911437,0.024997579,0.021139206,-0.0067696907,0.029113177,0.003548534,-0.0287858,0.003893449,0.008558572,0.0067112306,-0.0034462286,0.03720407,0.015760869,-0.0155387195,0.015293187,0.03227003,-0.04873242,-0.024296056,0.023723148,-0.0036888383,0.008038277,0.028505191,0.033065088,0.009587472,0.03217649,-0.0021688733,-0.011686193,-0.009797929,-0.00044429748,0.0023062546,-0.003975293,0.0024582513,0.016637772,0.008652109,0.026166784,-0.010014231,0.008991178,0.0107332915,-0.022448715,-0.016579311,-0.0586005,-0.010142844,-0.033392463,-0.008985332,-0.016743,-0.0067229224,-0.009037946,-0.00094851665,-0.0137732215,0.009675162,0.018087585,-0.016848229,0.007775206,0.015094423,-0.014042139,0.0076758238,-0.033392463,-0.009265941,0.016637772,0.020998903,-0.002222949,0.0126157105,0.002084106,0.0026073246,-0.01784205,-0.020063538,-0.019268481,-0.014650125,-0.010920364,-0.024693586,0.034725357,0.01743283,-0.014755353,0.053643074,-0.016906688,-0.019467246,-0.016824843,0.019759545,0.013153544,0.0076933615,0.011130821,0.01731591,-0.013036624,0.03928525,0.041951034,0.0035105348,-0.016427314,-0.04026738,-0.0015491951,0.023652995,-0.0073309084,-0.008353962,-0.030305766,0.0010142844,-0.005998016,0.013574458,-0.019163253,-0.006027246,-0.028107662,0.009055484,-0.011107437,-0.0023500999,0.009610856,-0.049667783,-0.033579536,-0.0099382335,0.023992063,-0.075530574,-0.034889046,-0.0061617047,-0.010552065,0.039659396,0.024179136,-0.02901964,0.016322086,-0.038794186,-0.005372492,-0.0314282,0.029113177,0.0005455067,-0.032386947,-0.0057787905,-0.0034988427,0.011563427,0.006898303,-0.008511804,0.025278188,0.02053122,0.024623435,-0.0240856,0.023080084,0.020157075,-0.020952133,0.010008385,-0.04524819,-0.0048989644,-0.0016310394,0.0029040102,-0.008687185,0.0214432,-0.027031993,0.008997024,-0.012592326,-0.0020855675,0.0024202522,-0.0037560675,0.0397997,0.0014629664,-0.0023457154,-0.038794186,0.013948603,0.011312048,-0.009686855,-0.031568505,0.0054221833,0.036034863,0.019829698,0.02958086,0.013515997,-0.0031714656,-0.02649416,0.011686193,0.03016546,0.006793075,-0.003948986,-0.007430291,-0.0066118483,-0.00082428876,-0.0038291428,-0.025792638,0.015819328,-0.0126157105,0.007792744,-0.017830359,-0.003244541,0.023629611,0.0298147,0.017736822,-0.021992726,0.016310394,-0.014638433,-0.018438345,-0.03067991,-0.006845689,-0.0029069332,0.013340617,0.014977502,-0.033509385,-0.015947942,0.0028265505,-0.0048463503,0.034725357,-0.023489306,0.019186636,0.005159112,-0.009587472,0.021337971,-0.00064452365,0.037835438,-0.028622111,-0.011025593,-0.026003094,-0.0062260106,-0.016836537,-0.011200974,0.020671524,-0.050930522,-0.01364461,0.005495258,0.020800138,0.041763965,0.051024057,-0.0017011916,0.019747853,-0.016988533,-0.016216857,-0.022425331,-0.0040366766,0.0026570158,0.030469453,-0.0029083947,-0.0045131273,-0.04948071,-0.0038379119,0.013515997,-0.016930072,-0.007821974,0.013060007,-0.024763739,0.013282157,-0.005676485,0.00089371024,-0.014369516,-0.013948603,0.014030447,0.012908011,-0.009242557,-0.03762498,-0.0040980596,-0.0042705173,-0.01032407,-0.01737437,-0.010353301,0.024062216,-0.0032036186,-0.026236935,0.0067112306,0.04403222,-0.002866011,-0.010335762,0.01605317,0.006933379,-0.033626303,0.04760998,-0.015129498,0.0065300036,-0.014463052,0.018894335,-0.0011757807,-0.014708585,0.04569249,-0.025091115,-0.008704723,0.01433444,0.021291204,0.00002502827,0.028037509,-0.00816689,-0.011563427,-0.021337971,-0.04089875,-0.016836537,-0.013609533,0.02373484,0.025254805,0.013656301,-0.0240856,-0.001221818,-0.016368855,0.04873242,-0.0054747975,0.023863452,-0.020203844,-0.04506112,0.014802122,0.010569603,-0.018485114,0.036946844,-0.014591665,0.014147367,0.026330471,-0.022285026,0.042348564,0.039986774,0.010949595,0.0004713353,0.005998016,0.041109208,0.0138316825,-0.03360292,0.015947942,-0.0008023662,-0.014088907,0.015866097,-0.043891914,-0.010470221,-0.014463052,0.016672848,-0.045154653,0.009716084,0.020823522,-0.041740578,-0.015199651,0.03241033,-0.024319442,-0.0107332915,0.009125637,0.004521896]},{"id":"guide-attachments-2","type":"guide","source":"guides","text":"Guide: File Attachments (attachments)\nSection: Attachment Flags\nMessageAttachmentFlags: IS_SPOILER (8) blurs until clicked, CONTAINS_EXPLICIT_MEDIA (16) for explicit content, IS_ANIMATED (32) for GIFs and animated WebP. Combine with bitwise OR.\n\n```javascript\nimport { MessageAttachmentFlags } from '/core';\n\n// Spoiler (blurred until clicked)\nflags: MessageAttachmentFlags.IS_SPOILER\n\n// Animated image (GIF, animated WebP)\nflags: MessageAttachmentFlags.IS_ANIMATED\n\n// Combine flags\nflags: MessageAttachmentFlags.IS_SPOILER | MessageAttachmentFlags.IS_ANIMATED\n```","meta":{"slug":"attachments","url":"/guides/attachments"},"embedding":[-0.025753293,0.014850154,-0.045201782,0.015957402,-0.008454166,-0.035353787,-0.036682483,-0.027590021,0.028032921,-0.018002555,0.022353388,0.007692119,0.0318627,-0.04061647,-0.024750255,0.046165742,-0.0036897422,0.014771995,-0.0012847336,0.020946532,-0.004940281,0.031107163,0.00011469382,0.040642526,-0.011704266,0.005920522,-0.00020964444,0.030143207,0.055440575,0.03295692,0.021636935,-0.030429788,0.050620787,-0.020373369,-0.011697752,0.028762402,-0.016374249,0.016009508,-0.0188623,0.004608107,0.007920082,0.0068779658,0.01934428,0.0012155307,0.0462439,0.06580963,0.02635251,0.0008483476,-0.022522733,0.047624703,0.014550545,0.04462862,0.010167144,0.060651153,-0.031315587,0.03556221,-0.03603116,0.010981298,-0.0017895086,-0.007438103,-0.007783304,-0.0012025043,-0.030976899,-0.0016999518,0.00042539503,0.011306959,-0.03564037,0.039079353,0.052392382,0.0145896245,0.04092911,0.015123709,0.029882677,0.011482816,0.024567885,0.002094002,0.0052822256,-0.01508463,0.011814991,-0.057785336,0.0010111782,0.050646838,-0.0430915,0.008812394,-0.06315223,0.053095814,-0.036786698,-0.0046634693,-0.09014304,-0.0049923873,-0.060286414,0.013599615,-0.07852344,-0.01464173,-0.021128902,-0.0015688732,-0.034806676,-0.020008627,-0.025193155,0.013586588,0.06481962,-0.020816268,-0.03913146,-0.0063666776,0.02631343,-0.0019604808,0.0022438061,0.020373369,-0.010942219,0.01242072,-0.010655637,-0.014329095,-0.02473723,0.064402774,0.02003468,-0.06382961,-0.042570442,0.014407254,0.042700704,0.009554901,-0.043768875,-0.02990873,0.06867544,0.00041440397,-0.0034585227,-0.0133390855,0.00502821,-0.029075038,-0.048849188,-0.029986888,0.02007376,-0.020581791,0.07378182,-0.063621186,-0.0130329635,0.023838405,0.018953485,0.038011182,-0.059400614,0.019969549,0.0104016205,-0.02686054,0.025766319,0.008376008,-0.03306113,-0.008043833,-0.062474858,0.021884438,-0.022366416,-0.010890112,-0.009476743,0.03790697,-0.007281786,0.016765041,-0.020412449,-0.03681275,0.027980816,0.018380322,-0.018367296,-0.023656035,-0.037594337,-0.024867494,0.021988649,-0.05408582,0.0066369767,0.0018171899,0.036682483,-0.0034520093,-0.02613106,0.035588264,-0.0026720506,-0.03553616,0.004683009,-0.038740665,0.034051143,0.027590021,0.022457602,-0.026665144,-0.00030591805,-0.004950051,0.02316103,0.069665454,-0.027798446,-0.032722443,-0.0156187145,0.014263963,0.03548405,0.0008532325,-0.02110285,-0.039913043,-0.013860144,0.010955245,0.036343798,0.005331075,0.016465433,-0.029882677,0.0020272413,-0.021519696,0.038323816,-0.010492806,0.0021184266,0.038506187,0.026704224,-0.0114763025,-0.032748498,0.03277455,0.026704224,0.033347715,-0.022652997,0.0073013254,0.019461516,0.023069844,-0.004044713,0.016335169,0.0021672756,-0.011495843,-0.0076269866,0.02209286,-0.008877526,0.030325577,-0.05846271,0.009515822,0.042335965,-0.010864059,-0.019839285,0.03636985,-0.017025571,0.00483607,-0.0664349,0.037047226,0.014941338,-0.0070929024,-0.016712936,-0.056691114,0.0009598866,-0.028892668,-0.014889233,-0.023434585,0.03553616,-0.028840562,0.02209286,0.010375568,0.035770632,0.008395547,-0.03240981,-0.008245743,-0.0009085949,0.0041912603,0.00399912,0.015579635,0.068988085,-0.023734193,0.00097047054,-0.015280026,0.019331252,-0.03537984,-0.021259168,0.045332048,0.01666083,-0.006767241,0.0032224183,-0.026886594,-0.027173176,-0.052418437,-0.0026134315,0.043847032,0.0350151,0.030325577,-0.018302163,-0.029960835,0.032696392,0.018914405,0.000059026104,0.031237429,-0.025883557,0.009457203,-0.009183648,-0.026052902,-0.0113004455,0.013352112,0.00461462,-0.031002952,-0.0336864,-0.015801085,-0.03566642,-0.011437223,0.010225764,-0.025193155,0.024984732,-0.011430711,0.008108965,-0.03790697,0.030742424,-0.0040609958,-0.018067688,0.086183,-0.007425077,-0.021780225,0.01801558,-0.013273953,-0.028423715,-0.04147622,0.007425077,-0.015788058,0.055023726,0.009040357,-0.017963475,0.02213194,-0.018380322,-0.019279147,0.01750755,-0.034546148,-0.03423351,-0.016530566,-0.04488915,-0.0054027205,-0.005236633,0.02433341,0.025557896,-0.0010746822,0.011189721,0.025128024,0.032227438,-0.06846702,-0.00054588966,-0.009164108,-0.011639133,0.0126161175,0.014159752,0.035067204,-0.012127626,0.025961716,-0.010427673,-0.011319986,0.0018334729,-0.03285271,-0.010408134,-0.011430711,-0.04095516,0.031107163,-0.023460638,-0.0050477497,0.011704266,-0.020047707,-0.041710693,-0.048015498,-0.067216486,-0.01761176,0.022223124,-0.0069496115,-0.025336446,0.019969549,-0.027459757,-0.024633018,-0.010557938,-0.007920082,0.014159752,-0.042804915,0.00091510813,0.02653488,-0.06690385,0.026183166,0.0012049467,0.0050054137,-0.008968711,-0.0060442733,-0.038844876,-0.01948757,0.059035875,-0.019513624,-0.0019849055,0.061172213,0.009607007,-0.026782382,0.006890992,0.00028108637,-0.01621793,-0.004660213,-0.008434626,-0.014902259,0.019383358,0.06403803,-0.001929543,-0.00362461,0.00014960064,-0.025310393,0.012752895,-0.021519696,-0.027902657,0.012199271,0.020751135,0.025701188,-0.051324215,0.028814508,-0.016895307,0.078731865,0.025636055,0.045853104,0.0068128337,-0.024580913,0.00034723632,0.009444176,-0.024255252,0.021441538,0.039287776,0.0070212567,-0.002556441,0.015840163,0.016113719,-0.008135018,0.0453581,0.00823923,0.019057697,-0.025518816,0.022731157,0.032357704,0.02928346,-0.015345159,-0.00043435072,-0.00067493296,-0.0018171899,0.0032045068,-0.011547948,0.014745942,0.011743345,-0.0032419579,0.036213532,-0.062631175,0.07649132,-0.06471541,-0.044237826,-0.004731858,0.007464156,-0.0026085468,0.043925192,-0.010851033,0.023317346,-0.005549268,-0.01692136,-0.028814508,-0.032253493,0.007965675,0.008734235,0.0041652075,-0.034598254,0.021220088,-0.02730344,-0.015240947,0.02587053,-0.021858385,-0.05036026,-0.0014092991,-0.042153593,-0.0020874888,-0.021988649,0.040303838,-0.018536638,0.0078810025,0.05799376,-0.023564849,-0.0069886907,0.03321745,-0.02249668,0.03655222,0.018171899,-0.04337808,-0.028397663,-0.04113753,0.028032921,0.013990408,0.010329975,0.0035790172,0.02304379,0.036317743,0.039548304,-0.067060165,0.05163685,-0.07748133,0.02124614,-0.0055297283,0.032383755,0.010557938,-0.010668663,-0.035796687,-0.03548405,0.123907596,0.076908164,-0.025961716,-0.007607447,-0.04356045,-0.039444093,-0.016752016,0.049865253,-0.014889233,0.020360341,-0.030742424,-0.00053408445,-0.029231355,0.03306113,-0.015110683,0.035692476,-0.006164768,-0.015319106,-0.025375526,0.019422438,-0.009457203,-0.015345159,0.012179731,-0.045748893,0.0147198895,0.011587027,0.0045657707,0.010792415,0.0045201783,-0.026886594,-0.009333452,-0.025297366,0.05757691,-0.008597458,-0.05538847,-0.013847117,-0.0022193815,0.039313827,-0.008981737,0.00027213068,-0.013326059,-0.026678171,-0.051115792,-0.047129698,-0.058045864,0.04329992,-0.01783321,0.007965675,-0.017742025,-0.041684642,0.0022714874,-0.008356468,-0.022470627,-0.0008426485,-0.0193052,-0.00331686,0.013886197,0.03420746,0.02110285,-0.006936585,-0.004217313,-0.010219251,0.042075437,0.0021672756,-0.00155259,-0.0013490518,-0.041450165,-0.0021737888,-0.016465433,0.0041293846,0.024906574,-0.00884496,-0.0020760905,0.00018776408,-0.0035008586,0.002131453,-0.050777104,-0.03556221,-0.0021509926,0.0057576913,0.010597018,0.016895307,0.03725565,0.039470144,0.014811074,0.015840163,0.018784141,-0.023174055,0.0072687594,0.02366906,-0.012564012,-0.029596096,-0.009079436,-0.01783321,-0.0028576776,-0.01005642,-0.011977822,-0.004953308,0.008265283,-0.014133699,-0.010903139,-0.014902259,0.027329493,-0.00057438505,-0.0082978485,0.0133390855,-0.0073078386,-0.0016250497,-0.013221847,-0.013052504,-0.0034878321,0.020269157,0.0036929988,-0.025518816,0.0018888353,0.020790216,-0.032279544,-0.0038102367,-0.0083629815,-0.003673459,0.02029521,-0.023682088,-0.057889547,0.033530083,0.00011072483,0.00801778,0.035327733,-0.05270502,-0.038636453,-0.02719923,0.019917443,0.009997801,0.00092894875,0.026808435,-0.010251816,-0.0026671658,-0.0058944686,-0.013319545,0.023564849,0.012127626,0.021597855,-0.0067542144,-0.018953485,0.039313827,0.045853104,-0.0038883954,-0.0029651457,-0.008721208,0.013521455,0.014941338,-0.032253493,0.006591384,0.0009737272,0.0075618546,0.015123709,0.055127937,-0.016817147,0.06950914,-0.0060377596,0.035692476,-0.0014630333,-0.019214014,0.01754663,-0.032904815,0.008148044,-0.015371212,0.005086829,-0.028319504,-0.0029293231,-0.004767681,-0.03769855,0.016335169,0.025896583,-0.034884833,-0.0027143867,0.00959398,-0.007542315,-0.016504513,0.005559038,-0.040877003,-0.00959398,-0.026144085,-0.022626944,-0.01912283,-0.028319504,-0.015045551,0.03214928,0.008740748,-0.014342122,0.002891872,-0.042804915,-0.024580913,-0.023356427,0.018575719,0.027563969,0.009659113,0.0359009,-0.040798843,-0.018145846,-0.023330374,0.0057381513,-0.034884833,0.04283097,-0.0031751974,0.00014766703,-0.021181008,0.01716886,-0.00682586,-0.025636055,0.02730344,0.045488365,0.026626065,0.026365535,0.014889233,-0.025088944,-0.017729,0.022210099,-0.058514815,0.00006935567,0.04778102,-0.058150075,0.032383755,0.014394227,0.059296403,-0.022809315,-0.025792371,0.015801085,-0.028163185,0.015827138,-0.0018758089,0.013221847,0.007828897,-0.017989527,0.0150716035,0.0029993402,-0.013156715,-0.03089874,-0.028058974,0.038636453,-0.001727633,-0.018888352,0.014954365,0.003924218,-0.01827611,0.015957402,-0.022835368,0.00682586,0.0031002953,0.015123709,-0.029361619,0.04249228,0.0027339263,0.0028397662,-0.015188841,-0.006715135,0.04085095,0.0130329635,0.04543626,0.00502821,-0.010831494,-0.0132479,-0.054294247,-0.021076797,-0.02792871,-0.0032468429,-0.017312152,0.010310436,0.01692136,-0.005246403,-0.018888352,-0.021558776,-0.0026085468,-0.006858426,0.010505833,0.012342562,0.02510197,0.0808161,-0.03600511,0.03071637,-0.013326059,-0.021845357,-0.026026849,-0.0045201783,-0.0056762756,-0.030820582,-0.00583585,0.018510586,-0.02142851,-0.012381641,0.026665144,-0.0017943935,-0.0229005,-0.005497162,-0.030742424,0.013124149,0.009802404,-0.004428993,-0.008323902,-0.0039405013,-0.0027974301,-0.012205784,-0.020790216,-0.030742424,-0.039418038,0.003136118,-0.0039795805,-0.0045299483,0.02120706,-0.040981214,-0.00623967,0.01486318,0.0012163448,-0.117446475,-0.0117172925,0.043325976,-0.03548405,-0.03342587,0.027511863,-0.023864457,0.04697338,0.05189738,-0.03530168,0.0122644035,0.004428993,0.018575719,-0.027225282,0.029153196,-0.012837567,0.01739031,-0.0005906681,0.01603556,-0.02293958,-0.004223827,-0.004656956,-0.015475423,0.013019937,-0.019031644,0.022301283,-0.00018491453,-0.0029895704,0.01593135,0.00016954739,0.012199271,0.008486733,-0.003943758,-0.009118515,0.014902259,0.0065523046,0.0063959872,0.034285616,-0.0031507728,0.0066597727,0.0037255648,-0.010792415,0.01169124,-0.014850154,0.0021884437,0.013456323,0.02518013,-0.008069886,-0.007887516,-0.0012114599,-0.024359463,-0.03556221,0.028944774,-0.01732518,0.011593541,-0.008571404,-0.04194517,0.008988251,-0.022652997,-0.021493644,-0.020907452,-0.00864305,0.051793166,0.011385118,0.020177972,-0.018627824,-0.020816268,-0.038297765,0.0041814907,-0.027173176,0.011808477,-0.020503633,0.035458,0.033477977,-0.010564451,-0.010935705,-0.013234873,-0.036135375,-0.022522733,0.0051421914,0.020386396,0.016804121,0.024450647,0.0113655785,0.038636453,0.0052529164,-0.010069447,0.0018806938,0.018953485,0.017676894,0.05773323,-0.018041633,0.0021591343,-0.003937245,-0.03537984,-0.035588264,-0.014993444,0.023213135,0.0574727,-0.035431944,0.02873635,-0.016973466,-0.008102452,-0.047051538,-0.0069886907,-0.0038460596,-0.008636537,0.027772393,-0.0073534315,-0.016738988,0.013124149,-0.020959558,-0.035588264,0.021988649,-0.025258288,-0.049891304,0.014224884,0.011391631,-0.035692476,-0.017924396,0.016986491,-0.0002912633,-0.0013482376,-0.026521854,0.012296969,0.03045584,-0.026196191,-0.023095896,-0.0061745374,0.020321263,-0.0050640325,0.0011845928,0.013072043,-0.019513624,0.0043247817,-0.025649082,0.013612641,0.027225282,-0.040251732,0.01183453,-0.010701229,-0.020438502,0.056170054,0.017142808,-0.016413327,0.02168904,-0.025349474,0.013300006,0.0016738989,-0.0574727,0.013306519,-0.020308236,-0.04608758,-0.013860144,0.015058577,0.044810988,-0.020568766,-0.022978658,-0.021024691,0.021128902,0.0018692956,0.014732916,-0.0072101406,-0.029570043,-0.00028108637,-0.00024628133,-0.05215791,-0.011333012,0.03170638,0.04069463,-0.00765304,-0.054294247,0.04921393,-0.015722925,-0.022418521,0.029413726,0.014290016,-0.021728119,0.020490607,-0.002971659,0.0029325797,0.009730758,0.013456323,-0.013111123,0.058410604,0.0051487046,0.004940281,-0.023538796,-0.0045266915,0.03564037,0.03233165,0.016778069,-0.008936145,0.0076725795,-0.00401866,0.02429433,-0.047103643,0.007346918,-0.014615677,0.020125866,0.015605688,-0.014732916,0.0000122250185,-0.039860938,-0.00642204,0.011222287,-0.011170181,0.011339525,-0.0041293846,0.0063666776,-0.013130662,0.003013995,-0.02587053,0.02686054,-0.00091347983,0.010505833,-0.023577875,-0.01183453,-0.04408151,0.027433705,-0.0061191753,-0.025310393,0.0010136206,0.0034943454,-0.047494438,0.011593541,0.009965234,-0.031211376,0.002743696,0.020243105,0.0033282582,0.014993444,-0.009098976,-0.000590261,0.05181922,-0.021298246,-0.022366416,0.01581411,0.030481894,0.02590961,0.018666904,-0.02348669,-0.007001717,-0.019682966,-0.011189721,-0.044602565,0.013182768,0.013899223,-0.0071645477,-0.021662988,0.0027404395,-0.006347138,0.0010730538,0.01783321,-0.01776808,0.019604808,0.010271356,0.0056795324,0.011456763,0.01365172,0.021571802,0.00045796114,0.022405494,-0.043873087,0.026000796,0.010675176,0.002040268,0.026000796,0.025167102,0.0057609477,-0.022340363,0.01306553,-0.0108835995,0.0035985569,-0.018562691,0.0005699072,-0.009033844,0.024281304,-0.005204067,-0.024398541,-0.050724998,-0.037047226,-0.014263963,-0.014758969,-0.013729879,0.04061647,-0.029413726,0.0048393263,0.03384272,0.032461915,0.015201868,0.0065034553,0.007034283,-0.034285616,0.02249668,0.0014443077,-0.0213243,-0.03126348,0.027590021,0.0047123185,-0.009828457,0.0012057609,-0.020712057,0.0016494743,-0.012270916,-0.006747701,0.00858443,0.014472387,0.01304599,-0.021597855,0.024255252,0.020373369,0.020816268,-0.01607464,0.045279942,-0.009346479,-0.012609604,-0.015332133,-0.0055394983,-0.026339483,0.01328698,0.0052170935,0.022470627,0.074407086,-0.0016673857,-0.0029879422,0.012752895,-0.006168024,0.0013482376,-0.010369055,-0.0113655785,-0.01003688,0.032748498,-0.03115927,-0.03618748,0.010095499,-0.07227075,0.03871461,0.0031719408,0.031237429,-0.027277388,0.022835368,-0.0156187145,0.03548405,0.004950051,-0.022418521,0.009151082,-0.030377682,-0.03233165,-0.013521455,0.07310444,-0.0051487046,0.014316069,-0.004119615,0.006734675,0.009724245,0.02073811,0.03332166,-0.015240947,0.009952208,0.0130329635,-0.010316948,0.045488365,-0.008623511,0.011424197,-0.0040968186,-0.028580032,0.025792371,0.029752413,0.009802404,-0.020803241,-0.0050672893,0.028032921,0.019539677,0.0069496115,0.018614797,0.021298246,-0.00165843,-0.017924396,0.0026394846,-0.005379924,0.00067696837,-0.003046561,0.02164996,-0.012772434,-0.016296089,-0.03556221,0.008271796,0.026248299,-0.014524492,-0.013352112,-0.011658673,-0.025232235,0.03879277,0.012205784,-0.018745063,-0.030325577,0.0022600892,-0.023473663,-0.03827171,-0.003013995,0.024059854,0.009125029,-0.0038297765,0.0029146683,0.0018758089,-0.0039893505,-0.0060898657,-0.0117172925,0.003082384,0.003657176,0.02253576,0.003189852,-0.004731858,0.0264958,0.030560052,0.032461915,-0.02322616,-0.0094376635,0.047259964,0.0044908687,-0.0013107866,0.0085388385,0.009379044,0.010004314,0.014042513,-0.015801085,-0.02473723,0.009600494,0.016139772,-0.00086544483,-0.019617835,0.029361619,0.017207941,-0.00030266144,0.008766801,0.02910109,-0.04778102,-0.030924793,0.020490607,-0.01908375,0.0021965853,0.03196691,0.015735952,0.004722088,0.027329493,0.014537519,-0.019240068,-0.0016071383,-0.009763325,0.019357305,-0.016960438,-0.03045584,-0.0020337545,0.023916563,0.02792871,-0.047807075,-0.01247934,0.01445936,-0.01732518,0.0030807555,-0.05450267,0.00821969,-0.03420746,-0.0019946753,-0.015006471,0.006161511,-0.02136338,0.002668794,-0.041684642,0.000430687,-0.005129165,0.00097616966,-0.0035529644,0.003556221,-0.015201868,0.029413726,-0.011534922,-0.011137615,0.005331075,0.042570442,0.021662988,0.009177134,-0.007438103,-0.010199711,-0.021506669,-0.011385118,-0.010349515,-0.024085907,-0.027590021,-0.00040687303,0.024567885,0.029986888,-0.010629584,0.043065444,-0.005848876,-0.028970826,-0.012140652,0.01343027,-0.0076660663,-0.0068975054,0.007216654,0.006936585,-0.014003434,0.03214928,0.031654276,-0.0014190689,-0.027277388,-0.039313827,0.014420281,-0.01025833,-0.000043938828,-0.0051812707,-0.017129783,0.018927433,-0.0018546409,0.006597897,-0.02047758,-0.015475423,0.003136118,-0.019214014,-0.0142379105,-0.0076204734,0.0094376635,-0.015188841,-0.024789335,-0.0030921537,0.013821064,-0.08738143,-0.013677773,-0.0018481277,-0.057420593,0.007314352,0.027590021,0.007802844,0.003937245,-0.022118913,-0.010668663,-0.026235271,0.029022932,0.0000064846026,-0.05049052,-0.03350403,-0.007548828,0.0048914324,0.019539677,-0.003572504,0.05596163,0.03467641,0.009548388,-0.026600013,0.005474366,0.016243983,-0.025010785,0.012212297,-0.032461915,-0.0013059017,-0.031810593,0.015579635,-0.014342122,0.031211376,-0.014824101,0.013326059,-0.024489727,0.005884699,-0.0043834005,-0.013000398,0.034494042,-0.002758351,0.011867097,-0.042179648,0.028710296,0.017520577,0.00441271,-0.039391987,0.013638694,0.02065995,0.0071580345,0.0269387,-0.010518859,0.0041814907,-0.012251377,-0.004184747,0.009177134,0.029596096,0.010479779,-0.014290016,0.016009508,-0.008102452,0.015514502,-0.032670338,-0.004354091,-0.026990805,-0.00664349,-0.039991204,0.016452407,0.009339965,0.0056209136,-0.009952208,-0.011163668,0.023994721,0.0026785638,-0.0106426105,-0.021793252,0.0011927343,-0.033191394,0.0031393745,0.0024636274,-0.02092048,-0.018875327,-0.018250057,-0.01666083,0.038662504,-0.032201387,0.020725083,-0.00043557194,-0.009600494,0.030038996,0.0073404047,0.022926552,-0.022965632,-0.017663866,-0.019135855,-0.007939622,0.005301765,-0.02322616,0.03603116,-0.055284254,-0.037776705,-0.002020728,0.010349515,0.02326524,0.019943496,0.00947023,0.0045429748,-0.0029097833,-0.021702066,-0.004223827,0.0055525247,-0.0044941255,0.021532722,-0.00035517433,-0.0021917003,-0.049318142,0.002940721,0.021806277,-0.016504513,-0.007900543,0.0042010304,-0.013482376,-0.0014329095,0.0008630023,0.0054352866,-0.01669991,-0.00007937993,0.008812394,0.017181888,-0.0021119134,-0.010277869,0.016856227,-0.0069170455,0.007425077,-0.013150202,-0.0028446512,0.007438103,0.03691696,-0.0096526,0.013228361,0.033477977,-0.017859263,-0.020243105,0.02546671,0.0193052,-0.014355148,0.04069463,-0.009841483,0.006747701,-0.010694716,0.028085027,0.0076465267,-0.026248299,0.008043833,0.005581834,0.005666506,0.019005591,0.012303483,-0.0002120869,0.0048165303,-0.011645647,-0.027173176,-0.035874844,-0.01742939,0.018771116,-0.020607844,0.030481894,0.007783304,0.02249668,-0.020464554,0.0014312812,-0.0172861,0.052835282,0.018758088,0.018771116,-0.021389432,-0.02168904,-0.005607887,0.018184924,-0.031289533,0.060494836,-0.0150716035,0.015188841,0.019826258,-0.014316069,0.036838803,0.039001193,-0.002759979,-0.023291294,0.00864305,0.022548785,0.0071840873,-0.03420746,0.011039916,-0.004937025,-0.0058716726,0.005161731,-0.02385143,-0.021923516,-0.006995204,0.008349955,-0.02811108,0.013638694,-0.005943318,-0.03384272,-0.013625667,0.019774152,-0.025935663,-0.02164996,-0.000021664107,0.011925715]},{"id":"guide-attachments-by-url-0","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Using a URL\nPass { name, url } in the files array. The SDK fetches the URL (30s timeout), validates it with URL.canParse(), and uploads the result. Works with channel.send(), message.reply(), message.send(), webhook.send(), and client.channels.send().\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!attachurl') {\n await message.reply({\n content: 'Image from URL:',\n files: [\n {\n name: 'image.png',\n url: 'https://example.com/image.png',\n },\n ],\n });\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.048690476,0.0066431537,-0.011793965,-0.024545701,0.009544313,-0.039535955,-0.042253353,0.04570579,-0.0045187925,0.026617164,-0.0142440805,-0.014288628,0.058179107,-0.06664314,-0.044324815,0.026260782,0.009455218,-0.024167048,0.027329924,-0.010708118,0.011871923,0.030359158,0.0069605554,0.04087238,-0.032586534,-0.035281662,-0.015424591,0.020202316,0.012941064,-0.037709504,0.038422264,-0.022596747,-0.003975869,0.031450573,-0.043812517,0.089540586,0.04069419,0.059649173,-0.032230154,-0.004549419,-0.015012526,0.010769371,0.023498835,0.0042208806,0.0011714614,0.020625517,-0.023988858,-0.004270997,-0.021182362,0.046329457,-0.008285845,0.034836188,0.008263571,0.012373083,-0.0058301613,0.022340598,-0.007032945,0.025548022,-0.058580033,0.0077011585,-0.004045475,-0.025392106,-0.001957308,0.0143331755,-0.007233409,0.009744777,-0.049804166,0.0204696,0.018732246,0.06610857,0.044770293,0.042943843,0.07528537,-0.013787468,0.015836656,-0.009483061,-0.011727143,0.0042821337,0.013976795,-0.04517122,0.01471183,-0.023699299,-0.079428285,-0.042943843,-0.074349865,0.05572899,-0.048334096,-0.057199057,-0.010184685,0.017585147,0.010457538,0.024679344,-0.06209929,-0.007784685,0.047398597,0.026260782,-0.03563804,-0.0031183288,0.007461715,0.01595916,0.052477017,-0.028376792,-0.056931775,-0.026327604,0.011437585,-0.02029141,0.03628398,0.02978004,0.028978184,-0.0066654277,-0.04681948,-0.0059415298,0.01034617,0.034925282,0.044837113,-0.022774937,0.025637116,0.038645003,0.02978004,-0.030336885,-0.04784407,0.013074707,0.07626541,-0.028978184,0.013787468,-0.035459854,-0.004064964,0.006854755,-0.07377075,-0.028042685,0.07978467,-0.014010206,0.034925282,-0.01374292,-0.0023805099,-0.03260881,0.026461247,-0.005061716,-0.04194152,0.009354986,0.019879345,-0.06446031,0.063480265,-0.013308582,-0.030448252,0.028733172,-0.058669128,0.050160546,0.0005133409,-0.02895591,-0.036417626,-0.013609278,-0.014645008,0.031049645,-0.009455218,-0.012785148,-0.0011596285,0.031873774,-0.041651964,-0.03425707,0.011660323,-0.029713219,0.014633872,-0.05136333,-0.014734103,-0.0024417627,0.039914608,-0.008040833,-0.013275171,0.030425979,0.010290485,-0.00090904854,0.023164729,0.034635723,0.047220405,-0.034657996,0.017206492,-0.01134292,0.008430624,0.010496518,0.013341992,0.011693733,0.010780508,-0.012941064,-0.03171786,0.010357306,0.023610203,0.046284907,-0.01613735,0.011649185,-0.028220875,-0.025859855,-0.025392106,-0.014288628,0.058713675,0.009616703,0.008191181,0.0058858455,0.038244076,-0.016872386,-0.024902083,0.020102084,0.030247789,-0.025436653,-0.012874243,0.012629231,-0.00987842,0.032051966,-0.010262643,0.003825521,0.026327604,0.053056136,0.011638048,0.0062645,-0.03490301,0.002319257,0.010156842,0.034836188,-0.015836656,-0.016304405,-0.054526206,-0.014043616,0.05532806,-0.03354431,-0.025793033,0.03113874,0.009544313,-0.030515075,-0.0065317852,0.021048719,0.02283062,0.033922963,-0.020447327,-0.04370115,0.05229883,0.02340974,0.05991646,0.013275171,-0.01134849,-0.015168442,-0.011916471,-0.02043619,0.00086310884,-0.017462641,-0.013397677,-0.03768723,-0.013876563,-0.021683522,0.047621336,0.027352197,0.048111357,-0.025369832,0.013408814,-0.025147093,0.04073874,-0.02594895,-0.045794886,0.010028768,0.025637116,-0.023810668,0.039313216,-0.0062589315,-0.03171786,-0.005752203,-0.004502087,0.007294662,0.003959164,0.040382355,-0.01600371,0.022919716,0.012016702,0.0051090475,0.019289091,-0.007083061,-0.024211595,0.0013823663,0.015936887,-0.022808347,-0.014299764,0.037887692,0.010496518,0.005768908,-0.05608537,0.007261251,0.004262644,0.004162412,0.009967515,-0.023342919,0.01613735,0.010151274,-0.008129928,-0.027797673,0.024100227,-0.009644546,0.009611134,0.076889075,0.022206955,0.027263103,0.034212522,0.056842677,-0.03666264,0.0041067274,0.033588856,-0.015658464,-0.02176148,0.007762411,-0.026438974,0.029445933,0.025793033,-0.01492343,0.020993035,0.015324359,-0.049625974,-0.0010712295,-0.004451971,-0.006726681,-0.016549416,0.031450573,0.018698836,0.046195813,0.013375403,0.0019823662,0.011242689,-0.032876093,-0.036528993,-0.04158514,-0.03191832,-0.0076955897,-0.0072556827,-0.0064872373,0.031806953,-0.0036306255,0.018342456,-0.03615034,0.04877957,-0.018865889,-0.016783291,0.004323897,-0.018064033,0.060050104,-0.03926867,-0.03721948,0.016270993,0.031116467,-0.03096055,-0.00930487,0.0067879334,0.019890483,0.005599071,-0.014934568,-0.023387466,0.01589234,-0.023565656,0.011949881,-0.0036696047,-0.0124510415,-0.013408814,-0.08343757,-0.019133175,-0.04445846,-0.038645003,0.031250108,0.016683059,0.029713219,0.0074505783,0.0068491865,0.0035387464,-0.079561934,-0.0030682127,-0.040894654,-0.018375866,0.008798142,0.026728531,0.024567977,-0.0048473305,0.0117494175,-0.014032479,0.025793033,-0.0045076557,0.04430254,0.009444081,0.061119244,-0.02247424,-0.05100695,-0.019155448,-0.018175403,-0.007005103,-0.0359276,-0.004012064,-0.005969372,-0.0059749405,0.019823661,-0.032742452,0.027285377,0.018687699,0.033566583,0.07889371,0.03162876,-0.019690018,-0.01341995,0.012896516,0.03171786,0.0012250578,0.007584221,0.056486297,0.02312018,0.0018626446,-0.022318324,0.003096055,-0.021850575,-0.020235727,0.012406494,0.033366118,-0.030604169,0.030648718,0.040360082,-0.017128535,0.026528068,-0.00034802777,0.0050477944,-0.028911361,0.007116472,-0.00015522038,-0.015491412,0.011793965,-0.059515532,0.067444995,-0.025458926,0.039558228,-0.054659847,-0.060540125,-0.071677014,0.015914613,-0.018264497,0.038221803,-0.04953688,0.0500269,-0.019723428,-0.028688625,0.005693734,-0.017161945,-0.014845472,-0.0062255207,0.025882129,-0.011782828,0.007044082,-0.03200742,0.029802313,0.01996844,0.04681948,-0.03855591,-0.057109963,0.008291413,0.0018904868,0.00018758696,0.020770296,-0.032296978,-0.015691876,0.052165184,0.0058078873,-0.030470526,0.048467737,-0.026327604,-0.02193967,0.023565656,-0.020280274,-0.050516926,0.020090947,-0.015357769,-0.029579576,0.012506725,0.030515075,0.037709504,0.014210669,-0.021238046,-0.04321113,0.008469604,-0.06410393,0.0039953585,0.03113874,0.021427372,0.009845009,-0.035014376,-0.04530486,-0.04641855,0.10174661,0.06330207,-0.00449095,0.037419945,-0.0041150805,-0.011949881,0.005729929,0.032341525,-0.009900694,0.0020018558,-0.039023656,0.010841761,-0.01839814,0.038711824,-0.005802319,-0.005841298,-0.034992103,-0.026238509,0.0047693723,0.020636654,0.004379581,-0.03207424,-0.023365192,0.031695586,0.04269883,0.061341982,-0.01141531,0.019222269,0.03131693,-0.027530389,0.027931316,-0.033477485,0.02273039,-0.008475172,-0.032898366,-0.0110310875,0.043456137,0.008748026,0.0015828302,0.006910439,0.0087313205,-0.044391636,-0.041830152,-0.016293267,-0.019990714,0.046864025,-0.0021341061,0.007433873,-0.024077952,-0.0059415298,0.034635723,-0.04713131,-0.007077493,-0.009176796,-0.005342922,-0.015970297,-0.015480275,-0.022318324,0.020848256,-0.031517394,-0.011242689,-0.00240696,0.038533635,0.0023262175,-0.0065763327,-0.012016702,-0.02995823,-0.017529462,0.01356473,0.032876093,0.01804176,0.004209744,-0.012116934,-0.05207609,-0.004541066,-0.0065484904,-0.0005203015,-0.01134292,0.0027174007,-0.004749883,-0.0018542919,0.009483061,-0.011482132,0.010730392,0.015769834,0.020035261,0.015235263,-0.0045577716,0.031183288,0.023565656,0.014867746,-0.0391573,0.0054960544,-0.024701618,-0.01757401,0.0031071918,-0.019511828,0.000040066698,0.02226264,-0.018175403,-0.0028218091,-0.017039439,-0.0464631,-0.002832946,0.018197676,0.029824587,-0.006141994,0.036618087,-0.007032945,0.0106134545,-0.012194892,-0.01799721,0.031472847,-0.022273777,0.010429696,-0.010290485,-0.033343844,0.018821342,-0.018877026,0.035838507,0.011326215,0.015290948,-0.010780508,-0.029624123,0.01370951,0.00805197,0.010552201,-0.025570296,-0.05590718,0.00200464,0.01141531,-0.006008351,0.019812524,0.0149902515,0.002819025,0.006270068,0.0062867734,0.031094192,0.021471921,-0.005301159,0.021271456,0.011771691,-0.01872111,-0.038065884,0.0048668203,0.030782359,0.017518325,0.027753126,-0.021995354,0.005768908,-0.012952201,0.0020909507,-0.0075173997,-0.022140134,0.009594429,0.008363803,0.012094661,0.037553586,0.00061879336,-0.0015187932,0.034568902,-0.03668491,-0.019534102,-0.0007294662,-0.020859392,-0.014088164,-0.01438886,-0.01621531,-0.0025392105,-0.000050203005,-0.047443144,-0.017150808,0.011894197,-0.029690944,0.027285377,-0.010869603,0.0049225045,-0.02215127,0.009700229,-0.023320645,-0.016994892,-0.02483526,-0.0006313224,-0.021928534,0.016404636,-0.0022593962,0.033922963,-0.017184218,-0.021015309,0.014466818,-0.050516926,0.009917399,-0.035014376,0.028443612,0.018776793,-0.0052983747,0.010218095,-0.037286304,-0.025659392,0.01828677,-0.011938744,-0.0024375864,0.025392106,-0.01574756,0.0031795816,-0.020714613,-0.0037670524,-0.0073503465,-0.000019217658,0.009917399,0.03532621,0.03839999,0.030425979,0.004738746,-0.0054375855,-0.007896054,-0.025748486,-0.007172156,0.0056352657,0.005039442,-0.05537261,0.010696981,-0.026283057,0.025703939,-0.030047325,-0.01141531,0.012952201,-0.017651968,-0.00079907174,-0.015903477,-0.0062589315,-0.026104866,-0.007233409,0.00026763335,-0.000577378,0.025570296,-0.022429693,-0.017384682,0.0038032474,-0.016861249,-0.040360082,-0.0020018558,0.013353129,-0.018921573,0.0021285377,0.008308119,-0.011320647,0.0046830615,0.023387466,-0.034412984,0.013464498,-0.02501345,0.0017721574,-0.033588856,-0.013609278,0.025703939,-0.0065262164,0.010167979,0.016939208,0.036751732,0.019745704,-0.008386077,-0.019367049,-0.04681948,-0.016972618,-0.011649185,0.0050116,0.023610203,0.019845935,-0.032764725,0.01585893,0.016204173,-0.01833132,-0.009917399,0.026015772,-0.017106261,0.02942366,0.01116473,-0.008202318,0.0036167046,0.0013726215,0.0023805099,0.011727143,0.032096513,-0.022028765,-0.016081667,-0.0008749418,-0.011125752,0.040404633,0.027174007,-0.011365195,-0.03131693,-0.005679813,0.015045936,-0.028109506,-0.005529465,0.009137817,0.0019392107,-0.0069048707,0.007829232,-0.027797673,-0.054570753,-0.019144312,-0.04169651,0.014578187,-0.030715538,-0.0065874695,0.0204696,-0.023877488,-0.0021842222,0.020770296,0.010340601,-0.059426438,-0.022385146,0.021750342,-0.036395352,-0.017117398,-0.007333641,-0.01241763,0.02648352,0.01725104,-0.030069599,0.0455276,-0.033700224,0.00919907,-0.023276096,0.07947283,-0.016738743,0.04298839,-0.00283573,0.019534102,-0.012250577,-0.041830152,-0.01474524,0.02719628,0.065484904,0.010541065,0.004374013,0.012283988,-0.0011470995,0.013987931,-0.017262178,0.019266818,0.021839438,0.00079907174,0.0026102082,-0.0029373544,0.03692992,0.00513689,0.0038951267,-0.026193962,-0.02283062,-0.0062867734,-0.002696519,-0.005248259,-0.017451504,-0.0022747095,0.065618545,0.050160546,0.0019893267,-0.015803244,-0.031606488,0.0045967507,-0.031695586,0.016671922,-0.00531508,0.011175867,0.004788862,-0.023097906,0.03586078,-0.00894849,-0.020425053,-0.018175403,-0.020425053,0.0054709963,-0.008592109,0.021561015,-0.01492343,-0.017083988,0.0029067278,0.008452898,-0.0118830595,-0.008113223,-0.0047693723,0.06339117,0.037664957,0.009210207,-0.017885843,0.042943843,-0.014500229,-0.008380508,-0.033232477,0.036952194,-0.002206496,0.023253823,0.042899296,0.0188993,-0.011086772,0.008079813,-0.0166051,0.008809279,0.033165652,0.054882586,-0.018264497,0.0075786524,0.022106724,-0.0030988392,-0.0047164722,-0.055595346,0.038533635,0.045438506,-0.06062922,0.030515075,-0.010852898,0.013787468,-0.0034078879,0.0000890516,-0.0125846835,0.0017206493,-0.0072167036,-0.0074505783,-0.052566115,0.016471459,-0.028644077,-0.019155448,0.04140695,0.003421809,-0.0038171685,0.03345521,-0.0006160091,0.008653362,-0.002070069,0.02208445,0.030737812,-0.009599998,0.0026672848,-0.023209276,0.010607886,-0.01600371,-0.056619942,-0.036061246,-0.011242689,-0.013687236,0.015290948,0.0066487226,0.0033772613,-0.008258003,-0.006893734,0.011515543,0.016304405,-0.037174933,0.018164264,-0.003872853,-0.011693733,0.016449183,-0.0118385125,-0.02795359,0.032787,0.0057856133,0.02312018,0.0056269127,-0.071677014,0.013787468,-0.026082592,-0.029223194,0.016048256,0.010591181,0.032475166,-0.034145698,-0.048155904,-0.022218091,0.024902083,0.011064499,0.02741902,0.020658927,0.015736423,0.009856146,-0.0044825976,-0.031450573,-0.002132714,0.0021911827,0.04494848,0.019378185,0.0029763335,0.039847787,0.0003360208,0.014010206,0.008597678,0.032475166,-0.030537348,0.030916002,-0.00398979,-0.00044443144,-0.005490486,0.015836656,0.04176333,0.04069419,-0.014656145,0.01592575,0.012473315,-0.009527608,-0.0107025495,0.011716006,0.027708579,0.021627838,-0.00076009263,-0.0204696,0.023209276,-0.040070523,0.024902083,-0.03920185,0.0105689075,-0.0050951266,-0.008837121,-0.016337816,-0.00797958,-0.007005103,0.00045104398,-0.02995823,0.014800925,-0.011019951,0.022986537,-0.0029011595,0.033700224,-0.014288628,0.004190254,0.0031294657,0.03425707,-0.029512754,-0.017451504,-0.052922495,-0.012651505,0.0049976786,0.0028510434,-0.000026058578,0.028421339,-0.021739205,-0.0025475633,0.01636009,-0.030715538,-0.017239904,0.027686305,0.007261251,-0.010051042,-0.015224126,0.0066097435,0.01563619,0.0012709973,-0.027263103,-0.0031238971,0.021137815,0.02695127,0.019133175,-0.0061809733,0.034346163,-0.05278885,-0.00107819,0.0017206493,0.02061438,-0.001253596,-0.015380043,0.0052593956,0.010708118,0.0034162404,0.023877488,0.019378185,0.020012988,0.018264497,0.02283062,0.031116467,-0.004825057,0.029824587,0.004137354,0.015424591,0.01628213,-0.014967978,0.014633872,0.025503475,0.0113819,-0.018375866,0.0035805097,0.044859387,-0.020335957,0.004265428,0.002445939,0.005454291,-0.01578097,0.035749413,0.03697447,0.03325475,-0.00009701274,-0.008881669,-0.054348014,-0.017496051,0.005640834,-0.018019486,-0.000063993604,0.012128072,-0.029579576,0.019857071,0.0060696043,0.010229232,-0.0022023197,-0.007829232,0.01825336,-0.03314338,0.028198602,0.015313221,-0.051808804,-0.021070993,-0.0021215773,0.009226912,-0.025102546,-0.020748023,0.0011324823,-0.009070995,-0.0017164729,-0.0053512747,0.014555913,-0.024523428,0.038667277,-0.013832015,-0.0093883965,0.021471921,0.011504406,-0.019099763,0.023365192,0.0077011585,-0.016939208,-0.013987931,0.0005164732,-0.0105689075,-0.009121112,-0.003574941,-0.0314283,0.037019018,0.009744777,-0.006097446,-0.00393689,-0.011109046,0.015881203,-0.003221345,0.034056604,-0.03127238,-0.0032157765,0.0023972152,-0.03797679,-0.019734567,-0.04793317,0.018954985,0.02741902,0.01878793,-0.013965658,0.033277024,-0.026349878,0.052699756,0.036172614,-0.036462173,-0.0022259855,0.0063368897,-0.010958699,-0.0061976784,0.042565186,0.008296981,-0.007172156,-0.00794617,0.037999064,0.03563804,0.047309503,0.017083988,-0.009421808,0.023877488,-0.0048723887,0.017852431,0.038890015,-0.011097909,0.057243608,-0.024523428,-0.015524822,0.017885843,0.013620415,0.0021647327,0.0077791167,0.02630533,0.015625054,0.020658927,-0.005529465,-0.015224126,0.0066264486,-0.00481392,-0.027151734,0.00081786525,0.0032686768,0.008670067,0.00051368895,0.004903015,-0.016761016,-0.027263103,-0.042943843,-0.0227638,0.013687236,-0.007406031,-0.0009953594,0.0038422265,0.004972621,-0.02924547,-0.01789698,0.011365195,-0.0052928063,-0.003822737,-0.0084473295,-0.001492343,-0.0058078873,0.04312203,-0.0030153126,-0.021427372,0.017796747,0.01979025,0.017306725,-0.003953595,-0.028042685,-0.0068658916,0.008619952,-0.016115077,-0.0006167052,0.0037364261,0.033121105,0.039847787,-0.0069215763,-0.0026770295,0.0057577714,0.008848257,0.01338654,-0.007333641,-0.00025684448,-0.00869791,-0.008452898,0.007823664,0.006503943,-0.027218556,-0.027285377,0.02459025,-0.024612524,-0.011075635,0.030849181,0.0012466355,-0.012161482,-0.010117863,0.029401386,-0.035081197,-0.03886774,0.033121105,-0.013898836,-0.0026185608,0.03922412,0.013453362,-0.006270068,0.039602775,-0.005746634,-0.030670991,0.002533642,0.00919907,-0.021872848,-0.00019907187,0.0011116007,-0.015112758,0.008753594,0.023476562,-0.023610203,0.020993035,-0.015458001,-0.0040566116,-0.0048668203,-0.026416698,0.010708118,-0.032475166,-0.008441761,0.015123894,-0.018943846,0.026617164,-0.029290017,-0.0450153,0.006242226,0.004195823,-0.005930393,0.031450573,0.0076287687,0.0044436185,0.015057073,-0.02577076,0.033922963,0.016950345,0.0039563794,-0.01256241,-0.017328998,-0.012339672,-0.008864963,-0.037820872,-0.02748584,-0.036061246,-0.010975404,-0.036038972,-0.013275171,-0.002283062,0.006141994,-0.008285845,0.017083988,-0.041496046,-0.0007781901,-0.014678419,0.02795359,0.02014663,0.013987931,-0.018799068,0.032252427,-0.0076788845,0.067578636,0.05849094,0.032541987,-0.014901157,-0.04223108,-0.034836188,0.04713131,-0.004822273,0.0039786533,0.0023805099,0.021293731,-0.0368631,0.026750807,0.011326215,-0.004488166,0.023832941,-0.015524822,-0.008597678,-0.034212522,0.00014634567,-0.02476844,-0.020558696,0.009739209,0.0002580626,-0.06138653,-0.042364724,-0.037843145,-0.0041067274,0.010101158,0.017885843,-0.012339672,0.023699299,-0.013776331,-0.0058691404,-0.04312203,0.017529462,-0.038667277,-0.011849649,-0.016471459,-0.015769834,0.021627838,-0.023253823,0.0029234332,-0.010546633,0.04240927,0.009488629,-0.012395357,0.019032942,-0.0061252885,0.011365195,0.031651035,-0.018999532,0.009538745,0.043857068,0.0039396742,-0.0016051041,0.010123432,0.004763804,0.00039153124,-0.0148566095,-0.0063870056,-0.01636009,0.017529462,0.036417626,0.006208815,0.007467284,-0.030737812,0.010312758,-0.011175867,-0.005746634,0.020057537,0.0163935,0.026038045,0.024033405,-0.009978652,0.007534105,0.019021805,-0.02229605,0.0064259847,0.035281662,0.017796747,-0.001994895,-0.011042225,0.015302084,-0.022062175,-0.00544037,-0.0050338735,0.005562876,0.00081438496,0.030047325,-0.0029401386,-0.018086307,0.019099763,0.03855591,-0.021405099,-0.03296519,-0.004552203,0.0008088165,-0.0061865416,-0.04073874,-0.017852431,0.009260323,0.022786073,0.007483989,-0.03191832,-0.0042598597,0.014611597,-0.01341995,0.02465707,-0.013921111,0.028599529,-0.0006880509,-0.0131081175,0.027285377,-0.008369371,0.029178647,-0.012874243,0.00027285377,0.004190254,0.004953131,-0.038711824,-0.031049645,0.017117398,-0.051318783,-0.008781437,-0.01786357,-0.0027883984,0.01810858,0.015691876,-0.012005566,0.027329924,0.00046600917,-0.024968904,-0.01474524,-0.019567512,0.0064593954,0.036038972,-0.014143848,-0.0143777225,-0.015981434,-0.0038505793,0.006208815,0.02358793,0.03338839,-0.014344312,-0.019701155,0.004045475,-0.027753126,0.007673316,0.01370951,-0.020012988,0.02208445,-0.0069939657,0.017562874,-0.02394431,-0.005504407,-0.017952664,-0.015948024,-0.003221345,-0.006632017,0.030760085,-0.0059638037,0.0040900223,-0.010429696,0.01739582,0.023922035,-0.028064959,0.0069939657,0.014500229,-0.038645003,0.041674238,-0.00076009263,-0.008180045,-0.013464498,0.045215767,0.012194892,0.0023387466,0.047042217,-0.011287237,-0.013999069,0.02766403,0.017529462,-0.0012619486,0.018676562,-0.028176328,-0.019088626,0.0074784206,-0.06748954,-0.020926213,-0.019367049,-0.00556566,0.008809279,0.013854289,-0.020803707,-0.018865889,-0.009817167,0.027797673,0.008057538,0.03231925,0.00458283,-0.06619766,0.02701809,0.0012257538,-0.020001851,0.02087053,-0.007940602,-0.030871455,0.02795359,-0.011961018,0.037308577,-0.023097906,0.037954517,-0.005326217,0.0040566116,0.0063870056,0.014322039,-0.018943846,-0.004838978,-0.007884917,-0.03260881,0.00070266804,-0.033655677,-0.023031086,0.016883522,-0.004841762,-0.04699767,-0.025058,0.016671922,-0.024345238,-0.017462641,0.015435727,-0.0072556827,-0.015647328,0.001077494,-0.00165522]},{"id":"guide-attachments-by-url-1","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Mixing buffers and URLs\nYou can combine file data and URLs in the same message. Order is preserved; attachments metadata id matches the file index.\n\n```javascript\nawait message.reply({\n content: 'Two files:',\n files: [\n { name: 'local.txt', data: Buffer.from('Hello') },\n { name: 'remote.png', url: 'https://example.com/logo.png' },\n ],\n});\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.043849457,0.007508704,0.03230289,0.01481122,0.015727613,-0.03076793,-0.0100516975,0.037549246,-0.028751865,0.025269566,-0.012336955,0.014937224,0.058099385,-0.056174956,-0.05896996,0.020641776,0.007548796,0.0152350515,0.034479327,-0.005183354,0.016873106,-0.005484046,0.034410596,0.03276109,-0.011540838,-0.035670638,-0.0031615596,0.042818513,0.042199947,-0.03205088,0.013333534,-0.019358825,0.022852577,0.0523261,-0.022016367,0.08600359,0.01930155,0.06762988,0.018018598,-0.0021592535,-0.0089176595,0.006294482,0.04048171,-0.008608377,-0.0138260955,0.007984083,-0.001910109,0.026185961,0.015315236,0.049210362,0.016586732,0.01392919,0.036403753,0.0029782807,-0.0169762,0.03913003,-0.012566053,0.039175846,-0.03551027,-0.017503127,0.0014647987,-0.01855698,-0.02164981,0.01546415,-0.019633744,-0.021283252,-0.055121105,-0.021077063,0.02634633,0.04032134,0.047469214,0.04187921,0.03427314,0.018797534,0.030011905,-0.004610608,-0.027400183,-0.03262363,0.012153677,-0.059703074,0.0020604548,0.00012233503,-0.05113479,-0.0323258,-0.0772062,0.008631287,-0.026529608,-0.001546415,-0.04339126,0.023482598,-0.015200687,-0.021993458,-0.105568595,-0.013562633,0.035968468,0.01788114,-0.03732015,-0.0060081086,-0.01630036,-0.018293517,0.045613516,-0.05571676,-0.07706874,-0.036770314,0.028728954,-0.017422942,0.05076823,0.04524696,0.008453735,-0.018075872,-0.023963705,-0.0044645574,0.03750343,0.001087502,0.040894087,-0.005323677,-0.010492712,-0.019748293,0.023917885,-0.004438784,-0.047285933,-0.008619832,0.077572756,0.0036512576,-0.0035653457,-0.027079444,-0.018660074,-0.010120427,-0.06671349,-0.02451354,0.05108897,0.010876453,0.025590304,-0.033013098,-0.009467497,-0.033013098,0.0013982169,-0.00068085216,-0.04036716,0.029759897,0.062498078,-0.058053564,0.04957692,-0.0035281172,-0.046965197,0.026025591,-0.07729784,0.0467361,-0.004576243,-0.018648619,-0.04332253,0.020366859,-0.0015836435,0.024376083,0.0077893496,-0.0046507,0.017491672,-0.008190272,-0.030561743,-0.03260072,-0.003702805,-0.022016367,0.0024871507,-0.03725142,0.026896166,-0.006323119,0.06721751,0.0070963264,-0.0060825655,-0.004350008,-0.014307203,-0.027583461,-0.016735647,0.02151235,0.04522405,-0.0069474126,-0.007955446,-0.031638507,0.006328847,0.034685515,0.03425023,-0.001044546,0.016426364,0.0074915215,-0.04050462,0.028179118,0.023035856,0.033081826,-0.018224787,0.0066839494,-0.021157248,0.04169593,-0.001269349,0.024903009,0.01620872,-0.023070222,0.029576618,0.008276184,0.00037156916,-0.013333534,-0.0116553875,0.038396914,0.0053694965,0.0063803936,-0.069233574,-0.003413568,0.010080335,0.009467497,-0.015246507,0.01934737,0.01794987,0.015853617,0.008385005,0.023574237,-0.039061297,-0.077847674,-0.027216904,0.010280796,-0.011472109,0.00558714,-0.036335025,-0.039336216,0.062727176,-0.012726422,-0.02634633,0.020595957,0.0031758782,-0.032073792,-0.02232565,0.025567396,0.049072903,-0.0047308845,-0.00174974,-0.049989298,0.03408986,0.03370039,0.03562482,-0.015956711,0.007308243,-0.012474414,0.011300284,-0.00968514,0.00774353,-0.0005673768,0.025086287,-0.02458227,-0.01690747,-0.011810029,0.034754246,0.019725382,0.028774774,-0.009994423,-0.006134113,-0.023264954,0.028774774,-0.039450765,-0.057824466,0.039382037,0.003871765,0.009919966,-0.014788309,-0.008677106,-0.02032104,0.026621249,-0.004851161,0.003820218,0.010555714,0.050218396,-0.039427854,-0.0059107416,0.0027162493,0.016815832,0.012669148,0.000024229854,-0.009576318,0.01867153,-0.013092981,-0.022886941,-0.0008684266,0.027537642,-0.0080757225,-0.020561593,-0.016563823,-0.0098569635,-0.014822674,0.011684025,-0.009221216,-0.007846625,0.072807506,-0.008946297,0.0016036896,-0.02011485,0.04153556,-0.021684175,0.02174145,0.050080936,0.004513241,-0.006134113,0.0038631738,-0.0002836884,-0.02241729,0.009381584,0.057824466,0.009410222,0.034845885,-0.012611873,-0.03205088,0.0051432615,0.0068443185,-0.001184153,0.021157248,-0.013608452,-0.061581682,0.013276259,-0.038099084,-0.017755136,0.00012806249,0.008476645,-0.032142524,0.028980963,0.06327701,0.016426364,0.06643857,-0.045659333,-0.013700091,0.015097592,-0.008969207,-0.011540838,-0.021397801,0.02769801,0.024903009,-0.009066574,0.027514732,-0.019839931,0.039359126,-0.024353173,-0.008522465,0.023803337,-0.020366859,0.03390658,-0.019267185,-0.011798574,0.015784888,0.016460728,-0.047606673,-0.0613984,-0.014857039,0.039084207,-0.019713927,-0.002122025,-0.036380846,0.02090524,0.0020217944,0.00140824,0.018843353,-0.007754985,-0.0039490857,-0.047011018,-0.004235459,-0.032852728,-0.008087178,0.026781617,-0.007829442,0.026598338,0.040275518,0.039450765,-0.0015278007,-0.033723302,-0.0063116644,-0.0177895,-0.01164966,0.05214282,-0.017216753,0.024101164,-0.04362036,0.025613215,-0.0042726872,0.053105038,-0.0013874779,0.030859571,-0.010349525,0.0495311,-0.041925028,-0.03257781,-0.008402188,-0.023963705,0.016174356,-0.01632327,-0.013322079,-0.034983344,0.012611873,0.009925693,-0.04492622,0.04934782,0.02169563,0.045865525,0.071341276,0.0059164693,-0.00018829035,-0.0706998,-0.008047085,-0.00801272,0.005962289,-0.0045046494,0.03367748,0.023413869,0.010675991,-0.02241729,0.007892444,-0.056862254,-0.005962289,-0.014261383,0.005567094,-0.015842162,0.0023153268,0.03718269,-0.017033475,-0.007485794,0.021409256,0.004490331,-0.020286674,-0.008362096,-0.015601609,-0.0010889339,0.022004914,-0.046965197,0.070745625,-0.018545525,0.06529308,-0.048843805,-0.08160489,-0.045750976,0.0035367084,-0.0110081835,0.033448383,-0.039152935,-0.000077052275,0.0082532745,-0.027239814,-0.0186028,-0.019587923,-0.007079144,-0.023620058,0.051455528,-0.04620917,-0.011598112,-0.018820444,0.006157023,0.046140444,0.028316576,-0.05544184,-0.030447192,-0.011821483,0.0034822975,0.004470285,0.06634693,-0.0045075133,-0.030355554,0.034479327,-0.008980662,0.016105626,0.040939905,-0.012818062,0.00070447795,0.020527227,-0.018259153,-0.042177036,-0.005481182,0.009828326,-0.009541953,0.024605181,0.014857039,0.006420486,0.008785929,-0.033173464,-0.05113479,0.03713687,-0.042039577,-0.008843203,0.041031543,0.03392949,-0.00498862,-0.015613064,-0.030630471,-0.0618566,0.079405546,0.04455966,-0.023872066,0.06973759,0.00008009499,-0.05892414,0.006792771,0.025888132,-0.010464075,-0.010561442,-0.024032434,0.00846519,-0.062131517,0.07468612,-0.009341492,0.026712887,-0.019839931,-0.0053265407,-0.012921156,0.028133297,0.014868494,-0.04806487,-0.033333834,0.025200836,0.03436478,0.055304382,-0.02799584,-0.0032761088,0.021764359,-0.022577658,0.0216269,-0.023150405,0.054387987,-0.007411337,-0.053563233,-0.0042812787,0.02169563,0.007754985,-0.020584501,0.008493828,0.039107118,-0.016575279,-0.021180158,-0.009736687,-0.059748895,0.039565314,0.0009242693,-0.0037514882,0.011036821,-0.006237207,0.0071879663,-0.024284443,-0.027423093,0.023803337,-0.02955371,-0.017972779,0.00010595807,-0.025040468,0.019118272,-0.015750524,-0.023196224,0.00016189032,0.024032434,0.018270606,0.017434398,-0.0077263475,-0.017548947,0.012485869,0.004939937,0.020916695,-0.0262776,0.011248738,-0.0045705154,-0.02313895,-0.011466381,0.013631362,-0.039588224,-0.012955521,0.008785929,-0.0016079852,0.03532699,0.013986465,0.014456117,0.02164981,0.0077378023,0.03216543,0.0031300585,-0.005183354,-0.0067870435,0.0016867379,0.036426663,-0.041008636,-0.020951059,-0.045728065,-0.057687007,-0.012783698,0.00961641,-0.01950774,-0.015590155,-0.017285483,0.0030069181,0.019565014,-0.01765204,-0.0045619244,0.0014977315,0.020527227,0.010698901,0.036037195,-0.006300209,0.005990926,-0.020481408,-0.0049313456,-0.001971679,-0.024559362,-0.004338553,-0.024444811,-0.008659924,-0.004619199,0.0052062636,0.0076748,0.04016097,0.003551027,-0.030355554,-0.0123255,-0.0069245026,0.005864922,0.026392149,-0.020412678,-0.06694259,-0.019026631,0.033631664,0.012623329,0.0073884274,0.0062085697,-0.006363211,0.016013987,0.01381464,0.010406801,0.008281912,-0.0026475198,0.025842313,-0.005833421,-0.023505509,-0.008768746,0.014227018,0.025384115,0.026025591,0.019290095,-0.03406695,-0.016243085,-0.034181498,0.017274028,-0.009415949,-0.007754985,-0.004450239,0.007915353,0.020676142,0.056999713,0.01677001,0.015635975,0.0039490857,-0.015315236,0.01677001,0.0017626267,-0.008946297,-0.051592987,-0.016918926,0.007606071,0.02234856,-0.013791731,-0.037869986,-0.004470285,-0.0011970397,-0.03411277,0.03855728,0.008585467,-0.009450314,-0.031638507,0.026094321,-0.02181018,-0.010486985,-0.017228208,-0.01171839,-0.014204108,0.036105927,-0.036999412,0.020343948,0.043780725,-0.008619832,0.031478137,-0.032852728,0.019003723,-0.009530499,0.035991378,0.0049685743,0.012749333,0.0008111519,-0.030538833,-0.049943477,-0.0026689977,0.0024184212,-0.018041508,0.011288829,-0.01862571,0.01481122,-0.014066649,-0.009060847,0.01119719,-0.021214522,0.0061169304,0.042566504,0.033723302,0.031065758,0.004587698,-0.0024570816,0.0007710597,-0.013230439,-0.019862842,0.015406875,0.017629132,-0.057778645,0.017033475,0.011191463,0.039840233,-0.012944066,-0.021455076,-0.0065235803,-0.0074800667,0.010996729,-0.018774623,-0.028866414,-0.026002683,-0.00810436,0.0045676515,-0.004914163,0.00008354041,-0.025659034,-0.016128536,0.0025845177,-0.012795152,-0.025040468,-0.022142371,0.0051003057,-0.00040486004,-0.0024126938,0.018797534,-0.0030384192,0.022119462,0.055212744,-0.015097592,0.037732527,0.011958943,-0.011764209,-0.0054869093,0.015716158,0.028362397,-0.018098783,0.01474249,0.04472003,0.017251119,0.018992268,-0.018946448,-0.029141331,-0.065338895,0.0144904815,-0.038900927,0.006220025,-0.01085927,0.008287639,-0.033608753,-0.0064033037,0.014524846,-0.017216753,-0.02648379,0.01546415,-0.026941985,0.0369765,-0.0523261,0.036884863,0.003785853,-0.017491672,-0.015670339,0.0010860702,0.0061398405,-0.02614014,-0.026048502,-0.002090524,-0.008619832,0.019187002,0.03411277,-0.001567893,-0.0058821044,0.03399822,-0.0032016519,-0.0034221592,0.01609417,0.007772167,-0.0033792031,-0.00616275,0.007520159,0.015361056,-0.043895274,-0.050722413,-0.028683135,-0.00957059,-0.048293967,-0.022577658,0.009318583,-0.04472003,-0.007880989,0.023917885,-0.016518002,-0.066301115,-0.00053694966,0.039267488,-0.039450765,-0.028522765,0.02248602,-0.011013911,0.03727433,0.015005953,-0.056862254,0.010240704,-0.026987806,0.0067183143,-0.026781617,0.02921006,-0.004544742,0.04194794,0.0073597897,0.013333534,-0.013917735,-0.010349525,0.012577509,0.00054876256,0.06882119,-0.0033648845,-0.009725232,0.014776855,0.030172275,0.026827436,-0.051592987,0.047560852,0.026529608,0.0009672253,0.010412527,-0.03709105,0.003934767,0.018087327,0.015968166,-0.023482598,0.007039052,0.0005362337,-0.010017333,-0.010945181,-0.01776659,-0.011019639,0.03727433,0.034318957,0.0071536014,-0.0062085697,-0.019943027,-0.011025366,-0.051409706,-0.0044846036,-0.01016052,0.010727538,-0.006059656,-0.011208645,0.0044416473,-0.0058047837,0.015968166,-0.017331302,-0.030057726,-0.0016652598,0.013585542,0.0446513,0.011420561,-0.008711471,0.006409031,0.008276184,0.011958943,-0.012932612,-0.0027234086,0.039038386,0.0065407627,0.033471294,-0.0043156436,0.020584501,0.042154126,-0.035258263,0.006420486,0.012153677,-0.011346105,-0.0029525072,0.027125265,0.024169894,-0.00013692216,0.028706044,-0.024467722,-0.0069817775,0.047377575,0.023333684,0.014536301,0.0030011905,-0.0017755135,0.016666917,-0.0023153268,-0.030172275,0.011752754,0.04048171,-0.056449875,0.050401673,-0.0009214056,0.015647428,-0.020779235,-0.023620058,-0.006792771,-0.021203067,0.0012435754,0.00058384327,-0.025613215,0.022405835,-0.005747509,-0.02799584,0.009902784,-0.020000301,-0.03436478,0.024124075,0.013677182,-0.029691167,-0.024169894,0.0028665953,0.039863143,0.008837475,-0.0177895,-0.009456041,0.031753056,-0.024651,-0.0224402,-0.010418255,-0.014307203,-0.025704853,0.01704493,0.0029181424,0.0040979995,-0.016896015,-0.013551177,-0.014513391,0.034410596,-0.042955972,-0.0016194402,0.0026088594,-0.0054095886,0.016815832,-0.021661265,-0.0059164693,0.026185961,0.01234841,0.022096552,-0.0138260955,-0.047744133,0.01541833,-0.021283252,-0.038144905,0.0058362847,0.016036896,0.044032734,-0.027743831,-0.047423393,-0.0033104736,0.015315236,-0.018453885,0.024467722,0.011706934,0.012084947,0.012932612,-0.03205088,-0.034754246,-0.011042548,-0.014181199,0.055121105,0.019736838,-0.030790841,0.040756628,0.013585542,0.0020246583,0.03420441,0.012451504,-0.047102656,0.07358644,0.0070905993,-0.015212142,-0.010635898,-0.025773583,0.0067183143,0.04962274,-0.020802146,-0.013917735,0.0067526787,0.019393189,-0.0041753207,0.004146683,-0.005624369,0.02474264,-0.000038123424,0.009782507,0.029805718,-0.03722851,-0.013230439,-0.025933953,0.026804527,0.0027921381,0.011449198,-0.0032703814,-0.025177928,-0.017090749,0.018969357,-0.039152935,0.0031529684,0.006294482,-0.01623163,-0.0005738202,0.042566504,-0.029232971,-0.0056444146,-0.04158138,0.025475755,-0.029026782,0.007468612,-0.028431127,-0.009759597,-0.0084480075,-0.0050630774,0.010223522,0.01469667,-0.031157399,-0.014009374,-0.0080585405,-0.028156208,-0.0068099536,0.018843353,-0.0049628466,-0.017892594,-0.01090509,0.0066782217,0.009261307,-0.032531988,-0.01923282,-0.0052520838,0.02069905,0.0025530166,0.017537491,-0.025750674,0.021638354,-0.053425774,-0.016724192,-0.036884863,0.022027822,0.010973819,-0.0061684777,-0.006701132,0.008602649,0.004518968,0.012852427,0.01948483,0.011958943,-0.006002381,-0.0232535,0.027652191,-0.00894057,0.026094321,0.03425023,0.008184545,0.01548706,-0.019839931,-0.0016566686,0.019427555,-0.000853392,0.028179118,0.027675102,0.013196074,-0.053013396,0.023688788,0.018385157,0.010338071,-0.0065235803,0.018304972,0.022566205,0.039702773,0.0026475198,-0.003742897,-0.031890515,0.0043643266,-0.014135378,-0.03427314,0.006529308,0.014261383,-0.044307653,0.0036455302,0.012004762,0.002742023,-0.014066649,0.009158214,0.007371245,-0.013470992,0.0068557733,-0.015853617,-0.047423393,-0.021214522,0.004246914,0.01618581,-0.030241005,0.008631287,0.023058766,-0.004776704,0.0065464904,-0.011981852,0.014043739,-0.010286523,0.035074983,-0.0017397169,0.0018857672,0.05269266,0.009318583,-0.022852577,0.025063379,0.0004607028,0.0077148927,0.0017010565,-0.0008712903,-0.0024785595,-0.0067813164,0.0119474875,0.0059737437,0.039061297,0.024490632,-0.0016308951,0.014719579,-0.0055298656,-0.0031901968,0.02004612,0.0430247,-0.01246296,0.012153677,-0.018304972,-0.062452257,-0.021592535,-0.04144392,0.008430826,-0.0010001583,0.0015950984,-0.011924578,0.028751865,-0.008092905,0.04359745,0.00887184,-0.031753056,0.027010715,0.026506698,-0.0065407627,-0.010710356,0.045865525,-0.0123025905,-0.010830632,0.012714968,0.03532699,0.042887244,0.040550437,-0.0065865824,-0.03979441,-0.003974859,0.015028863,0.010561442,0.03399822,-0.035991378,0.021455076,-0.0070848716,-0.020618867,0.053700693,0.036747403,0.0052205827,0.00618566,-0.010154792,0.005398134,0.02255475,0.019794112,-0.002100547,0.017869685,-0.008287639,-0.027262723,0.021844544,-0.007262423,-0.0025830858,0.0068615004,0.00086126727,-0.049897656,-0.013287714,-0.024307353,-0.027216904,0.0016223039,-0.02471973,-0.0057732826,0.023150405,-0.034639698,-0.0073196976,0.020217944,-0.009335765,0.005415316,0.007852351,-0.020618867,0.016781466,0.0076289806,0.0186028,0.031798873,-0.008957752,0.010372436,-0.000057364123,0.022039277,0.002827935,-0.033494204,0.028499857,-0.0005738202,0.015544334,0.011535111,0.003648394,0.04006933,0.021248888,-0.012039127,-0.010154792,0.011867303,0.005899287,-0.012485869,-0.008866113,-0.003539572,0.01632327,-0.0077492576,0.026460879,-0.00558714,-0.04648409,0.005856331,0.015784888,-0.014582121,0.018316427,0.02476555,0.027514732,-0.047102656,0.0048597525,0.0003583244,-0.038144905,-0.023734607,0.01776659,-0.02083651,-0.026529608,0.03354002,0.021936184,-0.011798574,0.018304972,-0.0009572022,-0.021993458,-0.022382926,0.0064491234,-0.012016217,0.011529383,-0.0017282619,0.0030842389,0.009496134,0.03913003,-0.012829517,-0.0012686331,-0.010481257,0.0046277903,-0.025842313,-0.050172575,-0.006769861,-0.012084947,-0.0035052074,-0.02076778,-0.030424284,-0.020447044,-0.0008190272,-0.012955521,0.023872066,0.012279681,-0.017640585,0.02939334,0.014685215,0.009862691,-0.0043958277,0.0027749557,-0.014845584,-0.012004762,0.0032245617,0.006128385,0.008476645,0.0007284617,-0.006769861,-0.019885752,-0.021271797,-0.026552519,-0.010864997,-0.022256922,-0.0033935218,0.010166246,-0.0038030355,0.031203218,0.023379505,-0.04824815,-0.010292251,-0.00079826516,0.028224938,0.008213182,-0.0085453745,0.019851387,0.0030556014,-0.0085281925,0.0369765,0.064193405,0.013402264,-0.030011905,-0.030218095,-0.019221365,0.054433808,-0.016609643,-0.010194884,-0.026781617,0.04620917,-0.01546415,0.024376083,-0.004876935,-0.011432016,-0.036587033,-0.021569626,-0.00855683,-0.016380545,0.0051318067,-0.016403453,-0.017170934,0.00017978864,0.020813601,-0.05118061,-0.020561593,-0.005927924,-0.002560176,0.032669447,0.0232535,-0.006832863,0.0133564435,-0.006603765,-0.0131617095,-0.046827737,0.0006389701,-0.018133149,-0.013459538,-0.02806457,0.0070104147,0.020103395,0.0059737437,-0.013608452,0.005927924,0.008407916,0.020893784,-0.014330112,-0.0044874675,0.0084881,0.0069932323,0.036335025,-0.018064419,0.0053780875,0.015280872,0.02092815,-0.023757515,0.013425173,-0.0047967504,0.03571646,-0.008178817,-0.015796343,0.0059794714,0.00481966,0.025155017,0.0049027083,0.007239513,-0.03383785,0.011878758,0.011065459,0.026919076,0.0035338446,0.012921156,0.043116342,0.012451504,-0.00091424625,0.02934752,0.002666134,-0.022382926,0.020870876,0.031936333,0.016861651,-0.0017740816,-0.02937043,-0.026392149,-0.0056358236,0.0048998445,-0.025911042,0.0075946157,0.0044187377,0.025727764,-0.0062772995,-0.015074682,0.023849156,0.033150557,-0.010343798,-0.030263914,0.0061398405,0.014078104,-0.022268375,-0.021019788,-0.023849156,0.01550997,0.020538682,-0.006655312,-0.009713777,0.01704493,-0.006643857,-0.008425098,0.01788114,-0.02932461,0.0006475613,-0.014799764,-0.0038545826,0.023734607,-0.00070913153,0.04323089,-0.03693068,-0.0008891886,-0.005449681,-0.016002532,-0.054983646,-0.027652191,0.014731035,-0.012703513,0.012233861,-0.016678372,0.02925588,0.007485794,0.029920267,-0.001984566,0.01569325,-0.016964745,-0.034410596,-0.001973111,-0.0071077817,0.0032875638,0.033288013,-0.018075872,0.006557945,0.00062930497,0.011122733,0.010681719,0.008430826,0.005128943,-0.012852427,-0.01009179,0.012989886,-0.018854808,0.009393039,-0.014948678,-0.022062188,0.019313006,-0.017411487,0.049897656,-0.031592686,-0.0034937523,0.0032990186,-0.010217794,-0.020916695,-0.010996729,0.0495311,0.018282061,0.013711547,0.01948483,0.02778965,0.019897206,-0.024421902,0.0046621547,0.006328847,-0.034754246,0.040962815,-0.033219285,-0.009645048,-0.024284443,0.017526036,0.0005881389,0.0010925136,0.05415889,-0.007880989,0.012554599,0.019679563,0.011867303,-0.0011111278,0.020687597,-0.024559362,-0.015361056,-0.017537491,-0.056449875,-0.012554599,-0.010389618,0.040710807,0.027537642,-0.0022279832,-0.008470918,0.0005183354,-0.025865223,0.013425173,0.007680528,0.01718239,-0.033471294,-0.04943946,0.019943027,0.005939379,-0.02932461,0.03993187,0.03562482,-0.0014597871,0.03711396,-0.032119613,0.011684025,0.006655312,0.009490406,0.007611798,-0.00565587,0.016792921,0.0059164693,0.005292176,-0.004140956,-0.010985274,-0.011695479,0.02792711,-0.02948498,-0.0048712073,0.011294557,0.027102355,-0.03995478,0.0010595806,-0.009673685,-0.017560402,-0.0074800667,0.018178968,0.0024513542,-0.0325549,-0.0027534778,-0.0007112793]},{"id":"guide-attachments-by-url-2","type":"guide","source":"guides","text":"Guide: File Attachments by URL (attachments-by-url)\nSection: Optional filename override\nUse filename to control the displayed attachment name independently from the local name used during upload.\n\n```javascript\nfiles: [\n {\n name: 'fetched-image.png',\n url: 'https://example.com/image.jpg',\n filename: 'custom-display.png',\n },\n]\n```","meta":{"slug":"attachments-by-url","url":"/guides/attachments-by-url"},"embedding":[-0.021499773,0.019496212,0.01816417,-0.03344409,-0.04361603,-0.046148006,-0.018307284,-0.0062363655,-0.014751509,0.012648868,-0.010414125,0.0011627822,0.051520195,-0.07661978,-0.041414313,0.0057850135,0.01926503,0.007573909,0.012439705,-0.027763661,0.03463302,0.007876646,0.004821762,0.0017269724,-0.016633978,-0.0061042625,-0.005405217,0.03199096,0.044276543,0.0024741804,-0.002578762,-0.016105566,0.02987731,0.026332544,-0.058081314,0.03205701,0.06468647,0.036174223,-0.014619406,0.03144053,-0.030251602,0.014079985,0.042405084,0.0056584147,0.024240913,0.034192678,0.003065892,0.02926083,0.013331401,0.027323317,0.023426278,0.0053006355,0.0036741165,-0.016556917,-0.018032068,0.0141460365,0.003068644,0.043241736,-0.018230224,-0.022259366,-0.027521472,-0.0430656,0.018670566,0.037142977,0.036218256,0.0035392614,-0.078116946,0.013485521,0.04506916,0.031462546,0.032123063,0.0142010795,0.02121355,0.020916319,0.0139368735,-0.0009646276,-0.013716701,-0.013518547,0.0122305425,-0.06763677,-0.020299837,0.0071886084,-0.032937698,-0.010463663,-0.040533625,0.0036520993,-0.039410748,-0.04343989,-0.027653575,0.012197517,-0.014322174,-0.012175499,-0.07265668,-0.009021538,-0.023029968,0.060679343,-0.0015301938,0.011349855,-0.0015068006,0.010320552,0.023206105,-0.03205701,-0.03800165,-0.04548749,0.022963917,-0.018153163,0.033510145,0.05702449,0.02426293,0.021973144,-0.0175587,0.0016843141,0.03659255,0.039498817,0.023316192,-0.037253063,-0.019309064,0.04064371,0.034038555,-0.07204021,-0.035073362,-0.019408142,0.03738517,-0.031616665,-0.010931529,0.0013705693,-0.019298056,0.0041584945,-0.084413856,-0.066403806,0.03408259,-0.0053611826,0.013683676,-0.056452043,-0.023272157,-0.040995985,0.021015396,0.008399554,-0.05803728,0.039674953,0.047601137,-0.045927834,0.054734703,-0.019099902,-0.031066237,0.055086978,-0.06627171,0.025804132,-0.0006894129,0.014476295,-0.036548514,0.008801367,-0.0028952588,0.0215328,0.010546228,-0.010105885,0.022633659,-0.0050419336,-0.048569895,-0.034721088,0.005906108,-0.0183293,0.005025421,-0.014377217,0.021874066,-0.0063519557,0.06666801,-0.008839897,-0.022314409,0.0003963092,0.023624431,-0.01770181,0.0038942883,0.0005628141,0.035976067,0.031770788,0.023029968,-0.005818039,0.020773208,0.023932673,0.020167734,0.009687558,-0.031836838,-0.0041612466,-0.006153801,0.007067514,0.034544952,0.012747946,0.0023778551,0.025231685,0.02004664,-0.030780014,-0.00725466,-0.021907091,0.00015437826,0.008630734,-0.013683676,0.005402465,-0.0021356663,-0.033510145,-0.011647087,0.027543489,0.02013471,-0.0097811315,-0.037517272,0.028600315,-0.016369771,0.0036025606,-0.018824687,0.0042135376,0.009175659,0.020200761,0.031946924,0.0013581846,-0.011746164,-0.022875847,0.030317653,-0.0023420772,0.011052623,-0.0038915363,0.01240668,-0.018450394,0.0265307,-0.0352495,-0.01747063,-0.0042933496,-0.017888958,-0.0022085982,-0.008427075,0.019298056,0.01466344,0.008135347,-0.008041774,-0.060503203,-0.01029303,0.029150743,0.026332544,-0.010518706,-0.011559018,-0.018351318,-0.011234265,0.013408462,-0.0161496,-0.022589624,0.032431304,-0.04119414,-0.0012646116,-0.019077884,0.030339671,0.025848167,-0.013375435,-0.008300476,-0.021774989,-0.046368178,0.034126624,-0.039190575,-0.07186407,0.045443457,-0.020927327,-0.01770181,-0.029789241,-0.020773208,-0.041612465,-0.005628141,-0.014674449,0.029216794,0.0047254367,0.049010236,-0.0014029071,-0.00009400303,0.013727711,0.013738719,0.010513202,0.03745122,0.0010375595,0.02130162,-0.0016664251,0.017415587,-0.013848805,0.015048741,0.0073152073,0.0018177932,-0.049802855,0.0056584147,-0.031308427,0.0009804524,-0.019573271,-0.019077884,0.02481336,-0.038596112,0.010133406,-0.051476162,0.008619725,-0.02090531,-0.026090356,0.07710416,0.015599171,-0.004186016,0.008647246,-0.02239147,-0.06116372,-0.023778552,0.018439386,0.0013877703,0.009274736,-0.004706172,-0.02021177,0.03549169,-0.0027755406,-0.016094556,0.014223097,-0.040225383,-0.062616855,-0.0028484724,0.008394049,-0.03168272,0.011834233,0.03892637,0.032079026,0.050199166,0.043814182,0.018835695,0.0128690405,-0.033047784,-0.011812216,0.0056749275,-0.012043396,0.034611,-0.022501556,0.021202542,0.019022841,0.013782754,0.006225357,0.0033300982,0.0047034197,-0.010160928,-0.03113229,0.029745206,-0.046059936,0.043704096,-0.07296493,-0.024791341,0.0022099742,-0.010414125,-0.039608903,-0.098636955,-0.020938337,0.036086153,-0.016468849,-0.027323317,0.0073537375,0.037957616,-0.02223735,0.011426915,-0.019496212,-0.028248038,0.019705374,-0.059314277,-0.009836175,-0.038397957,-0.01864855,0.027367352,0.035888,0.01590741,-0.016479857,0.010948041,-0.0057519875,-0.025011513,0.03496328,0.0017421092,-0.018736618,0.015687238,-0.019870503,-0.0017737589,-0.04821762,0.02815997,-0.0055648414,0.015103783,0.020509,0.0017352288,0.022831813,0.046720453,0.00017871756,-0.049890924,0.014090993,0.008041774,0.009924243,0.0026310526,-0.023976706,-0.037429202,-0.0038447496,0.039829075,-0.021797005,0.036086153,-0.027081128,0.049098305,0.06283703,0.01661196,0.011157204,-0.04423251,0.014300157,0.015951445,-0.013925865,-0.0064014946,0.053193502,0.0071335654,-0.010892998,-0.03540362,0.04456277,-0.019077884,0.0056116283,0.0039355704,0.0128690405,-0.019022841,0.025870183,0.03487521,-0.00250583,-0.019088892,0.018131146,-0.0052483445,-0.040577658,0.0051300023,-0.0027218736,-0.019617306,0.00952243,-0.01958428,0.061912302,-0.030515809,0.09335283,-0.048966203,-0.016567927,-0.020861275,-0.010529716,-0.040071264,0.039983194,-0.046720453,-0.0058400566,-0.018736618,-0.000050226685,-0.0030631397,-0.00050639507,0.0036465952,-0.039829075,0.04046757,-0.039366715,0.027257266,-0.043726116,0.01778988,0.0049648737,0.045883797,-0.05711256,0.030251602,-0.0145753715,0.006467546,0.08119935,0.03657053,-0.012714921,-0.04874603,0.039564867,-0.019606296,0.019143935,0.009148138,0.0039851093,-0.002150803,0.0072821816,-0.045663625,-0.04330779,0.008014252,-0.0139368735,-0.06380578,0.025517909,0.043043584,0.018769644,-0.010953546,-0.025936235,-0.03315787,-0.006506076,-0.08714399,-0.017888958,-0.00048678604,0.023294173,0.0069959583,0.013100221,-0.040907916,-0.048790067,0.1077961,0.0762675,0.003759433,0.04865796,-0.04487101,-0.028842503,-0.0138818305,0.02613439,-0.009082085,-0.017338527,-0.00815186,0.020376898,-0.07948201,-0.009390326,-0.0032392773,0.027477438,-0.027323317,-0.009924243,0.016744064,0.013606615,0.020013614,-0.029458983,0.0023407012,0.01162507,0.0019650331,0.022523573,-0.011790198,0.0021769484,-0.01887973,-0.024615204,0.023294173,-0.02714718,0.03980706,0.025099583,-0.03604212,-0.008272954,0.043241736,-0.0021356663,-0.012670886,0.016424814,0.020057648,-0.037979633,-0.022765761,-0.036702637,-0.020145718,0.05794921,-0.025033532,-0.022941899,0.006880368,-0.020839259,0.0021714442,0.01732752,-0.015169836,-0.0012776844,-0.008927966,-0.03496328,-0.009979286,0.01216449,0.0053364136,-0.026178425,-0.04205281,-0.005385952,-0.0074473103,0.011691121,0.005509799,-0.016832132,-0.023470312,0.0037979633,0.01279198,-0.0030163534,-0.0059116124,0.020112691,0.014531338,-0.02067413,-0.0018453147,0.017272476,-0.026266493,-0.011470949,-0.001046504,0.001066457,0.012891058,0.03496328,-0.0045960858,0.03564581,-0.015643205,0.025055548,0.025870183,-0.0006240494,0.021103464,0.007265669,0.027411386,0.001644408,0.00990773,-0.0012880049,-0.011570027,0.0035887999,0.022490546,-0.045839764,0.008773846,-0.0032282686,-0.015599171,0.0010065979,-0.03853006,-0.0059226207,0.011091153,0.03232122,-0.01716239,0.015456059,0.0053501744,0.028710399,-0.0034456884,0.019474193,0.02168692,-0.015257904,0.0019292552,-0.028204005,-0.024681257,-0.022248358,0.024835376,0.0148395775,0.051432125,0.028049884,-0.017448613,-0.014190071,-0.00012453466,-0.0041612466,-0.011157204,-0.03278358,-0.03432478,-0.004499761,0.009538942,-0.008608717,0.01263786,-0.04368208,-0.0074142846,0.0044364613,0.01793299,0.015665222,0.015940437,-0.0054905335,0.025760097,0.015852368,-0.00030308022,-0.01326535,0.007948201,0.03245332,0.030956151,-0.009390326,-0.04680852,0.045531522,-0.0003233773,0.008927966,-0.004565812,0.009439865,0.0013134623,0.017888958,0.005438243,0.047160793,0.022039196,0.0072601642,-0.0096710455,-0.009390326,0.009748106,-0.011030606,-0.006016194,-0.053017363,-0.0157643,-0.019562263,0.014773526,-0.010964555,-0.047953412,0.016512884,0.013397452,-0.03135246,0.052929293,-0.0048685484,-0.012626851,-0.030647911,-0.022501556,-0.02402074,-0.01700827,0.002859481,-0.041854654,-0.057773076,0.0076894993,-0.051520195,0.040863883,0.028710399,0.009296753,0.012946101,-0.052929293,0.021774989,-0.02426293,-0.016215652,0.012461723,0.0055290638,0.0029117716,-0.027917782,-0.040071264,-0.010309543,-0.0009708199,-0.0074858405,0.04104002,-0.014817561,-0.025826149,0.01466344,0.013210307,-0.009390326,-0.028226022,0.0029558062,0.057552904,0.037891563,0.011977345,0.00070592575,0.014024942,0.0010740254,-0.021048421,-0.04478294,0.0366586,0.015742281,-0.019628314,0.01450932,-0.028710399,0.01841737,-0.027499454,0.004150238,-0.007496849,-0.030383706,0.0033686282,-0.009841679,-0.0048713004,-0.013969899,0.022655675,0.019925546,0.017360544,0.022589624,-0.016094556,-0.024747308,-0.012450714,-0.024901427,0.0072821816,-0.0028567289,0.01068934,-0.010551732,-0.0251216,0.0042355545,-0.00013605927,0.025209669,0.024439067,0.012362645,0.053721912,0.010518706,-0.014289148,-0.01529093,0.031572632,0.03775946,0.025363788,-0.00041557424,0.040291436,0.025892202,0.021015396,-0.008603212,0.0008545417,-0.056672215,-0.014861595,0.0009832046,0.005008908,0.012296594,-0.0031539607,-0.01443226,0.029921345,0.027433403,-0.03980706,-0.017580716,0.049802855,-0.025473874,0.017833915,-0.00713907,0.01450932,-0.009803148,-0.011988353,0.021422714,0.014344191,0.0041970243,0.0032034994,-0.024703274,-0.022380462,-0.030009413,-0.004092443,0.023316192,-0.018384343,-0.002563625,0.025407823,0.0119663365,0.0030851571,0.037979633,0.014597389,0.01162507,-0.021015396,0.022226341,-0.02432898,-0.048261654,-0.04440865,-0.02598027,-0.0069794455,-0.01185625,-0.008025262,0.025165634,-0.026728854,-0.003382389,0.03582195,-0.0053006355,-0.073757544,0.0061207754,0.0069959583,-0.031176323,-0.020376898,0.008487622,-0.013089213,0.0045905816,0.037517272,-0.038265854,-0.024681257,0.008394049,0.00013012496,-0.0067812908,0.048393756,-0.016975245,0.047513068,-0.00012419064,-0.013254341,-0.0041419817,-0.0265307,-0.014960673,-0.020553036,0.024086792,0.03401654,-0.013925865,0.016204642,-0.0029860798,0.040907916,-0.053149465,0.010639801,0.021554817,0.0069133937,0.010502194,0.01856048,0.025892202,0.010226979,-0.017118355,0.0031704735,0.0067427605,-0.016369771,-0.040291436,0.018197197,0.008944479,-0.024086792,0.026354562,0.06464244,0.0062914086,0.002299419,-0.014421252,0.0053611826,-0.04315367,0.021477757,-0.0014999203,0.0059886724,-0.017844923,-0.014674449,-0.003288816,0.0035530222,0.008850905,0.010248996,-0.026310528,0.0021989655,0.011162709,0.023888638,-0.0026682068,0.0012928211,0.014344191,0.013463505,-0.012990135,0.009219693,0.011382881,0.022138271,0.029304864,-0.007326216,-0.028732417,0.025914218,-0.0040429044,-0.028710399,-0.008146356,0.033840403,-0.023580397,0.008806871,0.06200037,0.015731273,0.008680272,0.0026888477,0.008641742,0.0082344245,0.009467387,0.046720453,0.0005628141,-0.0024879412,-0.004389675,-0.010716861,0.0058235433,-0.03236525,-0.008102321,0.028688382,-0.018582499,0.02027782,-0.00928024,-0.019859495,0.00076165673,-0.033025768,-0.0004823138,-0.0393447,-0.00044447178,0.0034924748,0.00452453,0.03738517,-0.015731273,-0.040049247,0.021907091,-0.037010875,-0.014542346,0.040665727,0.023140054,0.0060492195,-0.00070248556,0.022611642,0.02981126,0.014949664,0.014124019,-0.034809157,0.01895679,-0.01941915,-0.03822182,-0.016953226,-0.0014421252,-0.011448933,0.014168054,0.007348233,0.005553833,-0.00037842023,-0.028314091,0.03172675,0.04222895,-0.07402175,-0.007573909,0.01941915,0.0021810767,0.015566145,-0.0012632356,-0.0026860957,0.044012338,0.023976706,-0.0035447655,0.026112372,-0.051608264,-0.009979286,-0.011294812,-0.03066993,-0.0061097667,0.017129363,0.018351318,-0.04266929,-0.042471137,0.0042905975,0.049582683,-0.027081128,-0.015731273,0.021752972,0.018901747,0.059006035,-0.00079743465,-0.031462546,-0.006016194,-0.0012811245,0.042405084,0.006071237,-0.015709257,0.036240276,0.0013492402,0.026178425,0.015191853,0.011559018,-0.038816284,0.013749727,0.0015068006,-0.0010740254,0.008195895,-0.0094563775,0.03058186,0.07063111,-0.028710399,-0.001290069,0.006412503,0.0042135376,-0.012593825,-0.02395469,0.024240913,0.0051547717,-0.006148297,-0.012340629,0.032541387,-0.014828569,-0.009720584,-0.037715424,-0.0032200122,0.004642872,-0.007386763,0.014289148,-0.02690499,-0.0023104276,0.032255165,-0.03315787,-0.0032172601,-0.00035949922,0.016204642,0.009219693,0.034677055,0.008603212,-0.002654446,-0.012847023,0.038860317,0.0027136172,0.008416066,-0.07499051,-0.022039196,0.012538782,0.0032255165,-0.016711038,0.02300795,-0.03331199,-0.012825006,0.016490865,-0.0042300504,0.0075518917,0.019958572,-0.018175181,0.004692411,0.0012625476,0.0050034034,0.0044832476,-0.007573909,-0.0052290796,-0.0050611985,0.0025305992,0.009434361,0.021158507,-0.01693121,0.030097483,-0.03696684,-0.025429841,-0.022028185,0.006715239,0.0020200762,-0.015489085,0.00003382131,0.010381099,-0.027983833,0.023822587,-0.0012157611,-0.015731273,0.02567203,0.009373814,0.033510145,-0.011713139,0.063013166,0.007276677,0.029128727,0.030317653,-0.024218895,0.007205121,0.03659255,0.014179062,0.014740501,0.030383706,0.031836838,-0.012957109,0.013430478,-0.0020586061,0.0016691773,-0.01739357,0.020431941,0.022248358,0.023140054,0.051123887,-0.010237988,-0.04702869,0.0067592734,0.0157643,0.01170213,0.013474513,0.0032365252,-0.042867444,0.02340426,0.011250778,0.035469674,-0.014685458,0.013309384,0.015775308,-0.0076179435,0.009913234,-0.008124338,-0.03199096,-0.030163534,-0.021830032,-0.0049621216,-0.014641423,-0.028886538,-0.00070214155,0.016259685,0.006208844,-0.0056033717,0.0044419654,-0.018593507,0.0251216,0.009225197,0.030846067,0.03223315,0.010271014,-0.012769963,0.017977025,-0.02395469,0.0032970724,0.00059515185,-0.0071831043,0.019165954,0.008795862,-0.002635181,0.017437605,0.04126019,0.021730954,-0.013738719,-0.022985933,-0.010160928,-0.0063464516,-0.016193634,0.035843965,0.0037429202,0.015687238,0.01529093,-0.014729491,-0.011162709,-0.06274895,0.021268593,0.012902066,-0.02410881,-0.034368813,0.0051134895,-0.009814157,0.016039513,0.015092775,-0.025694046,-0.019397134,-0.0026750872,0.023602415,-0.0074473103,0.04275736,-0.020960353,0.0119663365,-0.014079985,0.026618768,0.007717021,0.06521488,-0.002602155,-0.0013058939,0.022523573,0.0054877815,-0.018109128,0.02699306,0.00069216505,0.05521908,-0.0033768846,-0.03520547,0.02432898,-0.004130973,0.010733374,0.020090675,0.030713962,0.005553833,0.0036108172,0.03227718,-0.0011565898,0.016733056,0.025848167,-0.04456277,0.006258383,-0.034390833,0.0063134255,0.005493286,0.019716382,-0.02628851,-0.0430656,-0.0071500787,-0.010634297,0.01927604,0.016898183,-0.0098692,0.0019306312,0.023888638,0.0038805276,-0.0017792631,-0.025627995,-0.01622666,0.033047784,0.00016573086,-0.018769644,0.003385141,0.033135854,-0.003924562,0.010507698,0.009610498,-0.007067514,-0.016733056,-0.01080493,-0.059138138,-0.00040662976,0.005063951,0.029392932,0.004830018,0.0066712047,0.049186375,0.005518055,-0.0014421252,0.0056006196,0.027917782,-0.009742601,0.0072821816,-0.008294972,-0.018989816,0.02340426,-0.000054913937,0.0175587,-0.008008748,-0.041942723,-0.047557104,0.034390833,-0.012461723,-0.026662802,0.028600315,0.008482118,-0.01084346,-0.014366209,0.0053556785,-0.016468849,-0.03386242,0.043021563,-0.04865796,0.011107666,0.011470949,0.021774989,0.003608065,0.017646767,-0.0060492195,-0.010628792,-0.02145574,0.023051985,0.002486565,-0.023756534,-0.0145753715,-0.0069959583,0.031418514,0.017569708,0.0035585263,-0.01879166,-0.004502513,-0.016347755,-0.029304864,-0.013089213,0.008592203,-0.043748133,0.0067978036,-0.013771744,-0.031022204,0.022589624,-0.036548514,0.013848805,-0.024659239,-0.018153163,0.009181163,0.020420933,0.023624431,0.008762836,0.016556917,-0.00924171,0.0145203285,0.021631878,0.01567623,0.016722046,-0.0052318317,0.025429841,-0.01739357,-0.03027362,-0.03659255,-0.032585423,-0.020663122,-0.012373654,-0.019870503,0.008030766,0.0035777914,0.01326535,0.022941899,-0.007639961,-0.004144734,0.016105566,0.005696945,0.0013093341,0.009109607,-0.013067195,0.04104002,-0.006561119,0.027917782,0.04632414,0.0077830725,-0.028688382,-0.02309602,-0.015665222,0.028248038,-0.02223735,0.025143618,0.0026434374,0.04205281,-0.027081128,0.0034924748,-0.0043456405,-0.010050842,-0.04026942,-0.006192331,-0.014476295,-0.040753797,0.024306964,-0.017360544,-0.0048465314,0.019617306,0.014762518,-0.06380578,-0.031770788,-0.007496849,-0.018571489,0.007871141,-0.0020420933,-0.034985296,0.04214088,0.0032365252,-0.015081767,-0.0193531,-0.0046814024,0.003720903,-0.026772888,-0.012703911,-0.010133406,0.033179887,0.006583136,-0.0034842184,0.028027868,0.0280719,-0.0073207114,-0.014740501,0.0018797165,0.040687744,-0.025363788,0.016733056,-0.045355387,0.029282846,0.02855628,0.0138267875,-0.043109633,0.008735315,0.0025250951,-0.0043043583,-0.015511102,-0.010193953,0.006324434,0.013782754,0.036262292,-0.013705693,0.0026104117,-0.028292073,0.008432579,0.0077115167,0.043505944,0.018076103,-0.010970059,0.05640801,0.014696466,-0.0028952588,0.03223315,-0.02472529,-0.030559843,0.006704231,0.022589624,0.0044034356,0.025716063,-0.007006967,0.018230224,-0.005889595,-0.0052786185,-0.032343235,0.0022842821,-0.01103611,0.050727576,-0.03767139,-0.001739357,0.04407839,0.029084692,-0.019793443,-0.022963917,0.008091313,0.036240276,0.00010182945,-0.013133246,-0.02518765,-0.0028484724,0.04641221,0.007700508,-0.03049379,0.005380448,-0.014300157,-0.0073592416,0.026728854,-0.03549169,0.029965378,0.012197517,-0.0026283006,-0.0009694439,0.0031126784,0.053721912,-0.004279589,-0.01599548,0.007865637,-0.009065573,-0.015412024,-0.01072787,0.043241736,-0.025848167,0.011581035,0.0016196386,0.03813375,0.02886452,0.023734517,-0.016898183,0.020883294,-0.023051985,-0.07943798,0.01848342,-0.015643205,0.013199298,0.031088255,-0.0075463876,0.00090752053,-0.016193634,-0.013166272,0.017767861,0.03579993,-0.00866376,-0.021125482,-0.0017943999,0.0066767093,-0.024483101,-0.019298056,-0.00351174,-0.033289973,0.01903385,-0.026949026,0.04423251,-0.026156407,-0.038419977,0.030449757,0.009841679,-0.0059721596,0.013078203,0.012472731,-0.0052400883,-0.019254021,0.00045857654,0.011581035,0.0066161617,-0.011272795,-0.0049648737,-0.03386242,-0.00048506595,0.031198341,-0.04680852,-0.030846067,0.0064400244,0.018989816,-0.0072326427,0.009500412,0.05398612,0.00044343973,-0.011944319,0.017030288,0.024835376,-0.023756534,0.023910655,-0.010326057,-0.009021538,-0.0032805596,-0.041678518,-0.016821124,-0.001534322,0.012087431,0.025165634,0.022061212,0.00819039,-0.0028264553,-0.0057905177,0.002727378,-0.027917782,0.009043556,0.0017655024,-0.0090875905,-0.0020076914,0.006654692,-0.02426293,0.0139368735,0.006748265,-0.005146515,0.032167096,-0.04502513,0.0039713485,0.008647246,0.008718803,-0.0028539766,0.018637542,0.024350999,0.011735156,-0.017877948,0.026024304,-0.024835376,-0.015797324,0.017613743,0.0025705055,0.0009962773,-0.008977504,0.041744567,-0.001347864,-0.00079881074,0.025650011,-0.05548329,-0.022204325,0.016997261,-0.015279922,-0.00501166,-0.0017022031,-0.017195417]},{"id":"guide-profile-urls-0","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: User avatar and banner\nWhen you have a User object (e.g. message.author), use avatarURL(), displayAvatarURL(), and bannerURL(). These handle animated avatars (a_ prefix) and default fallbacks.\n\n```javascript\nimport { Client, Events, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!avatar') {\n const user = message.author;\n // avatarURL() returns null if no custom avatar; displayAvatarURL() uses default\n const avatarUrl = user.displayAvatarURL({ size: 256 });\n const bannerUrl = user.bannerURL({ size: 512 });\n\n const embed = new EmbedBuilder()\n .setTitle(`${user.username}'s profile`)\n .setThumbnail(avatarUrl)\n .setColor(user.avatarColor ?? 0x5865f2);\n if (bannerUrl) embed.setImage(bannerUrl);\n await message.reply({ embeds: [embed] });\n }\n});\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.017121723,-0.025510876,-0.016888691,0.022162573,0.017575523,-0.019452043,0.011945958,-0.020985149,0.037137948,0.039958864,-0.0145215755,-0.027497781,0.036622826,-0.058478776,-0.021990865,0.051512346,0.0006262736,0.0010655083,-0.009995848,0.017943468,0.03375285,-0.003167396,0.0021770098,0.06245259,-0.016704718,0.022849405,-0.022702226,0.055731453,0.000621291,-0.024750456,0.027105305,-0.021034207,0.009676962,-0.012418155,0.0030585455,-0.006580089,0.045428984,0.009768949,-0.0103760585,0.04108723,0.017146252,-0.064120606,0.04954997,0.02369568,-0.00502552,0.03149612,-0.028650677,-0.01696228,0.016667923,0.06294318,-0.017869879,0.006359322,0.022003131,0.038192727,-0.045870516,0.032084834,-0.021819158,-0.030613052,-0.052346356,0.039566386,0.008376889,-0.004050465,-0.0058779265,-0.005908589,0.016312243,-0.020727588,-0.058086302,0.012056342,0.0039155516,0.019071832,0.059361845,-0.009309017,0.041283466,-0.02205219,-0.0067763263,0.00023609825,0.0026906002,0.035249162,0.01531879,-0.054554027,0.009511387,0.017121723,-0.085559554,-0.021426683,-0.06500368,0.023327734,-0.044349678,-0.03998339,-0.023523971,0.009750552,-0.013822479,-0.03161877,-0.0646112,-0.011185538,0.065935805,0.042019356,0.009033058,0.0058349995,0.011841707,0.027963845,0.06338472,-0.009186368,-0.04655735,-0.006524897,0.050678335,-0.05200294,0.024345716,0.061814815,-0.0024284392,0.0012080872,-0.051512346,0.026173178,0.007579674,0.05445591,0.0077943085,-0.017992526,0.011351113,0.03250184,0.019734135,-0.04017963,-0.07628733,-0.010057173,0.054406848,0.022922995,0.035175573,-0.057252295,-0.017882142,-0.00154767,-0.09743192,-0.055633333,-0.001438053,-0.028307261,0.034022678,-0.042264655,-0.039689038,-0.033581145,-0.01182331,-0.03887956,-0.030122457,0.0031643298,0.032820724,-0.050482098,-0.01498764,-0.021549331,-0.031250823,-0.010529369,-0.054112494,0.045061037,-0.01065815,-0.034758568,-0.016925486,-0.024652338,-0.0567617,0.01379795,-0.03961545,0.003179661,0.027963845,-0.05021227,-0.026344886,-0.033384908,-0.00024874636,-0.026246767,0.0048906067,-0.0028776391,-0.025780702,-0.051659524,0.037579484,-0.0044184104,-0.037726663,0.026050529,-0.0016603533,-0.011118081,-0.02992622,-0.05021227,0.04108723,0.0055897026,0.016299978,-0.05185576,0.017440608,0.050236803,0.04952544,0.0536219,0.001583698,-0.04089099,-0.032452777,0.0062489384,0.010829858,0.01025341,-0.014313074,-0.00845661,0.0025817498,0.0041301865,-0.01931713,-0.022972053,0.041970298,-0.007782044,0.053229425,-0.022824876,-0.008174519,0.003066211,0.018740682,-0.0011130347,0.027865727,-0.013810215,-0.0010885049,-0.019856783,0.0020512952,0.015637677,-0.027350603,0.03448874,0.00621521,-0.007273053,-0.0012809096,-0.017587787,-0.061912935,-0.008855218,-0.0069235046,0.05131611,-0.035739757,-0.010523236,-0.052444473,0.050482098,0.054161552,-0.032796193,0.027031718,-0.016336773,0.0026967328,-0.042853367,-0.00848114,0.051070813,0.01891239,-0.004623846,0.017109457,-0.035862405,0.016753778,-0.021279505,0.012792232,0.050629277,0.00971989,-0.0075183497,-0.01625092,-0.006843783,0.03620582,0.021488007,0.007193331,-0.018593503,-0.009946789,-0.027301544,0.027767608,0.06505273,0.056369226,-0.010498707,-0.007309847,0.0027795203,0.030441344,-0.0181765,-0.050923634,0.030956468,-0.00060481013,-0.037260596,0.014901786,0.017097194,-0.021451212,0.020040756,-0.010069437,0.008113194,-0.017710436,0.0370153,-0.005936185,-0.004909004,-0.00006501326,-0.029043151,-0.0041179215,0.027743079,-0.03529822,0.015085759,0.022223897,0.012951676,-0.03210936,0.03461139,0.015588617,0.02766949,0.01691322,-0.019427514,-0.031177234,0.004666773,0.013540388,-0.025976941,-0.010216615,0.024112685,0.0011459964,0.009566579,0.021721039,-0.009799611,0.030367754,0.07349095,0.0489122,0.01645942,0.013724361,0.015956562,0.007567409,-0.042166535,0.023977771,0.019905843,0.0065310295,-0.0018151969,0.0023057908,0.027890256,0.013932863,0.009738286,-0.001945511,-0.0026062794,-0.042976014,-0.0054885177,-0.05430873,-0.0053505385,0.010958638,0.021083267,0.0072975825,0.014325338,0.01943978,-0.0056878217,-0.0063409247,-0.039787155,-0.023131497,-0.03625488,-0.017330226,0.0025832828,0.041455176,0.028282732,0.02999981,-0.009523652,-0.0031321347,0.035568047,0.010878917,0.021868218,0.0115412185,-0.0051604332,-0.018802006,0.048568785,-0.011252995,-0.084921785,0.005175764,-0.031128176,-0.04427609,-0.00009150724,-0.016189594,0.02526558,-0.04094005,-0.036377527,-0.015686736,0.049132966,-0.0026522726,-0.038290843,0.025658054,-0.008560861,0.019783193,-0.02906768,-0.04972168,-0.0010716408,-0.0021831424,0.0125346705,0.010670414,-0.018752947,-0.04346661,0.0020942222,-0.0011321985,-0.0028255135,0.030882878,-0.031422533,-0.03546993,-0.00085853913,0.012240315,-0.011252995,0.011148743,-0.014864991,-0.009315149,-0.006782459,-0.013932863,0.034341563,0.039713565,0.04567428,-0.004084193,-0.06470932,0.016680188,-0.013466799,0.0127063785,-0.006389984,-0.06142234,0.007236258,0.02369568,0.003933949,-0.024137214,-0.020985149,0.04030228,0.03873238,0.0614714,0.016900955,-0.0008976333,-0.010602958,-0.016005622,0.025461817,0.01936619,0.003296177,0.009315149,-0.021598391,-0.02752231,-0.027399663,0.0008393753,0.018716153,0.01936619,-0.012461082,0.032477308,-0.010940242,0.0016066947,0.01200115,0.044521384,-0.03760401,0.0145829,0.06382625,-0.07177387,-0.013650772,-0.033703793,-0.0722154,0.0039462135,-0.05921467,0.031815007,-0.028945033,0.028846914,-0.040743813,-0.056320164,-0.05681076,0.038266316,0.011829442,-0.035249162,-0.029337509,0.060048677,-0.01022888,-0.036475647,0.02124271,-0.022984318,0.024259862,0.0074324957,-0.0152329365,-0.0096953595,-0.0003857677,-0.012853557,0.023413587,-0.00020946054,-0.013258297,-0.016410362,-0.012185123,0.02043323,0.02005302,-0.04984433,0.037481364,0.021156857,0.047047943,0.027448721,-0.019353924,0.0018443259,0.030416815,-0.03551899,0.038830496,0.019979432,-0.042289183,-0.026835479,0.025314638,0.019096363,-0.057252295,0.029582804,0.016704718,0.035960525,-0.01417816,0.015036699,-0.017980263,-0.000028961322,-0.039762624,-0.009278355,0.024578748,0.070841745,0.03394909,-0.04170047,-0.04189671,-0.012332301,0.09331094,0.06068645,-0.047146063,0.008407551,-0.011743588,-0.042828836,-0.023450382,0.05445591,-0.0127063785,0.03856067,-0.029828101,0.007683925,-0.01263279,0.038953144,-0.01539238,0.017906673,0.016165065,-0.036843594,0.02483631,0.02766949,-0.04555163,-0.04170047,-0.019464308,-0.018262353,0.013233767,-0.032011244,-0.03870785,-0.024333451,0.015465968,-0.015208407,0.029239388,-0.024284393,0.03860973,-0.017232107,-0.042264655,-0.007886295,-0.0047342298,0.0008240442,-0.015404644,0.017624581,0.0014510844,-0.013405475,-0.09002396,-0.0022919928,-0.0074692904,0.013184708,-0.02600147,0.022726757,-0.035077456,-0.02835632,0.03137347,-0.033384908,-0.026958128,0.005764477,-0.021230446,-0.043098662,0.0055958354,0.008358492,0.002282794,-0.020629467,0.010210483,-0.007622601,0.0379229,0.011676132,-0.014080041,0.04101364,-0.00708908,-0.023254145,-0.010333131,0.016189594,0.012694114,-0.0030248172,0.006604619,-0.008364623,-0.04174953,0.0136139775,-0.004580919,0.028061964,0.027644958,0.013098854,0.002324188,0.012332301,0.030294165,-0.018679358,0.005635696,0.012240315,0.0008087132,-0.002526558,0.015453704,0.016815102,0.027718548,-0.0074263634,0.036377527,-0.0022030727,0.009676962,-0.014006453,-0.014619694,-0.020212464,-0.0013407008,-0.030367754,0.0040443325,-0.02414948,-0.013344151,0.00105401,0.029435627,0.048029132,-0.015098023,-0.014423457,-0.015686736,-0.0049641957,-0.014006453,-0.009345812,0.013196972,0.00006918139,0.0022689963,0.0048568784,-0.038928617,-0.040498517,0.00152544,0.018421797,-0.0096463,0.0051604332,-0.02529011,-0.039934333,-0.003240985,0.011945958,0.025731644,-0.01574806,-0.0141291,-0.024946693,0.008425948,0.040449455,0.0008163787,0.010008113,0.030343225,-0.011479895,0.0028669073,0.011510557,0.051708583,-0.034930278,0.030613052,0.0047127665,0.010400588,-0.0034586862,-0.006276534,0.034832157,0.0307357,-0.004550257,-0.007659395,0.011320451,-0.013540388,0.0036825195,-0.020531349,-0.02673736,-0.054063436,0.035715226,-0.0035660034,0.008824555,0.009542049,-0.023511706,0.0041240538,-0.033041492,0.02240787,-0.029018622,-0.007775911,-0.04977074,0.0034249579,-0.0134422695,-0.018115176,0.0013161711,-0.012865822,0.019452043,-0.007910824,-0.03392456,0.034096267,-0.01739155,0.009315149,0.008364623,0.017636847,-0.0049580634,-0.010504839,-0.011302054,0.006138555,-0.040743813,-0.012044077,-0.026541123,0.04160235,0.026467534,-0.029362038,-0.009597241,-0.035788815,0.0030677442,-0.040523045,0.025118401,0.022788081,-0.012927146,0.030171517,-0.033384908,0.016631128,0.0028515763,0.005957648,-0.010155291,0.0027641894,0.0022751286,-0.0126205245,-0.046974353,0.022322016,0.038241785,-0.0064083813,0.0100939665,0.0451101,-0.03149612,0.008364623,0.007365039,-0.02276355,-0.0039584786,-0.016692454,-0.012252579,-0.011817178,0.023327734,-0.026148649,0.007622601,-0.005212559,0.03066211,-0.025032548,-0.035715226,-0.01303753,-0.004547191,0.005666358,-0.023413587,0.02992622,-0.014313074,-0.019660546,0.024370246,0.005868728,-0.0050592483,0.019942638,-0.041357055,0.0047587594,-0.0056387624,-0.03473404,0.032747135,0.047366828,0.012755438,-0.018998245,-0.006800856,-0.0146932835,-0.00078188383,0.020445496,-0.0072423904,0.02162292,0.0019485771,-0.010872784,-0.010443515,-0.017048134,0.008321697,0.010425118,-0.024308922,0.011436967,-0.012816763,0.022824876,-0.0041731135,0.011522821,-0.0019286468,0.005945383,-0.028061964,0.008738701,0.009450062,-0.03691718,-0.037530422,-0.025535407,0.027963845,-0.025707114,-0.035273694,0.0046146475,0.034979336,0.04883861,-0.0034372227,0.016520746,-0.02126724,-0.006739532,0.018752947,0.0050653806,0.030220576,-0.0048998054,-0.040817402,-0.008364623,-0.023413587,0.008824555,0.048372544,-0.00027557573,-0.032084834,0.008781629,-0.008953337,-0.009738286,-0.005534511,0.04017963,0.021978602,-0.0347831,0.02276355,-0.013233767,-0.015870709,-0.037554953,-0.024958959,-0.031422533,-0.036573768,-0.019807724,-0.017967997,-0.036696415,-0.011590278,0.019047303,0.000908365,-0.09026925,-0.040326808,0.032133892,-0.036377527,0.0014587499,0.011663867,0.0057184836,-0.013552653,0.021868218,-0.021880483,-0.006739532,-0.010541634,0.0010356128,-0.0401551,0.02473819,-0.00062742346,0.012424287,-0.019734135,0.018605769,-0.030146988,-0.038143665,-0.012583731,-0.021917276,0.04094005,0.011289789,0.024235332,0.0076287333,-0.008315564,0.032084834,-0.038094606,-0.026173178,0.00688671,0.0013292026,0.02281261,-0.0015492032,0.027963845,0.0134422695,-0.015294261,-0.016299978,-0.02283714,0.017808555,0.0040719286,0.00886135,-0.03392456,0.00363346,0.02048229,0.005258552,0.022248428,-0.060244914,-0.00603737,-0.013160178,-0.013454534,-0.0228862,0.012583731,0.021230446,0.0038266315,-0.05524086,-0.0059208535,-0.020531349,-0.022162573,-0.0014664155,0.0037990354,0.016447157,-0.008947204,0.024112685,-0.010192086,-0.00037350284,-0.010474177,0.011259127,-0.011878502,-0.004096458,0.00085470633,0.041970298,0.019268071,0.019611485,0.015208407,0.034243446,-0.0003577885,0.027154366,-0.023658885,-0.0015790988,0.0034310902,0.0213163,0.019120893,0.012246447,-0.0006262736,0.0019347792,-0.023339998,0.0096953595,0.01536785,0.035739757,-0.022444665,0.0069909613,-0.0089288065,-0.0014687151,-0.0066168834,-0.014325338,0.04324584,0.056369226,-0.046189405,0.02838085,-0.028871443,-0.01162094,0.0044398736,-0.024370246,-0.017305695,0.0145215755,0.01729343,-0.010008113,-0.02374474,0.011712926,-0.030097928,-0.025854291,0.004580919,-0.034513272,0.021586126,0.023315469,0.037358716,0.0055897026,0.0016036284,0.019108627,0.009223163,-0.0019501103,0.01207474,-0.013785685,-0.015183877,-0.006463573,-0.03299243,-0.022236163,0.0291658,-0.028528027,0.01683963,-0.0035108116,-0.022003131,0.013160178,0.008149989,-0.0070032263,0.0010984702,-0.01157188,0.010357661,0.0096953595,0.0075735413,-0.015294261,-0.023168292,-0.02754684,0.02367115,-0.016925486,0.0073405094,0.002788719,-0.06780006,0.049010318,-0.0075612767,-0.038364433,0.02666377,0.023425853,0.031790476,-0.006984829,-0.030245107,-0.023940977,0.048249897,0.023658885,0.016618865,-0.010210483,-0.024235332,0.0356907,-0.033041492,-0.01539238,0.01896145,-0.0006094095,0.02845444,-0.0067088697,0.009339679,0.058478776,-0.0016036284,0.027007187,0.04636111,0.035666168,0.030318696,0.029484686,0.009358076,-0.006653678,0.019341659,-0.028724266,-0.003983008,0.042313714,-0.027154366,-0.008542464,-0.01853218,-0.022751287,0.009149574,-0.0054823854,-0.01645942,0.01572353,0.011817178,-0.0040167365,-0.0020650933,-0.000116420204,-0.0047280975,-0.03225654,0.0078004412,-0.01058456,-0.014030982,0.00012207353,-0.011326584,-0.018519916,0.0166066,-0.042951483,0.034979336,-0.023254145,0.03951733,-0.017501934,0.007978281,0.021635186,-0.015306526,-0.005372002,0.043589257,0.0035261428,-0.010302469,-0.049942445,0.000027931266,-0.003023284,-0.010872784,-0.023806063,0.03210936,-0.038438022,-0.023450382,0.0006741832,0.0060986937,-0.009634036,0.017195312,-0.026688302,0.0029374303,0.023082437,0.0028377783,0.009891597,-0.01931713,0.007953752,0.0026108788,-0.0056816894,0.013098854,0.03699077,-0.0012648121,-0.012485611,-0.030490404,-0.026688302,-0.020286053,0.02455422,0.0026369416,-0.012160594,-0.008579259,0.016483951,0.015380115,0.01969734,0.007867898,0.003661056,0.005678623,-0.009045322,-0.008726437,0.024198538,-0.014447987,0.01812744,0.016483951,0.015269731,-0.049966976,-0.005914721,0.0045686546,0.005276949,0.027694019,0.014815932,0.04984433,-0.0049365996,0.020335112,0.0016220256,-0.008149989,-0.047612127,0.030196046,-0.017710436,0.026050529,0.019893577,0.015564088,-0.04562522,-0.034071736,-0.027277013,-0.006202945,0.0030861415,0.011167141,-0.035249162,-0.0042191064,-0.0030263504,0.01943978,0.0338755,-0.011596411,-0.0011099684,-0.036770005,0.041479703,0.0041608484,-0.036009584,0.022223897,0.028282732,0.03210936,-0.008708039,-0.031079115,0.011210068,0.014803668,0.023990035,-0.0030600787,0.037579484,-0.008800026,0.03797196,-0.0005825801,0.019550161,-0.003970743,0.011032227,-0.0047097,0.0073466417,-0.0030018208,-0.0071994634,-0.011927561,-0.0029987544,-0.012013415,-0.0080764,-0.013957392,-0.007818839,0.037653074,0.013957392,-0.018237824,0.023401324,-0.008143857,0.023008848,0.006389984,-0.01063362,0.009302884,0.009879332,-0.0017186113,-0.06539615,-0.01898598,-0.049083907,0.031422533,0.007358907,0.013319621,-0.014497046,0.022739021,-0.00073435757,0.023352263,0.0094684595,-0.01962375,0.00059369515,-0.0031168035,-0.00079798145,0.024112685,0.054897442,0.00406273,-0.0054547894,0.0012456483,0.02762043,0.035028394,0.05116893,0.021304036,-0.01336868,0.006117091,0.0006021272,0.004053531,-0.003237919,-0.018863332,0.03620582,0.0073405094,-0.0058349995,0.006389984,0.022922995,-0.003964611,0.009407136,-0.01536785,0.020899294,0.02840538,-0.03851161,-0.0055590407,0.0056172987,0.007193331,0.005270817,0.021990865,-0.026393944,0.02999981,-0.015662206,0.025731644,-0.017428344,0.013650772,-0.0061968127,-0.025486346,0.035003867,0.0067211348,-0.00802734,-0.004752627,0.0043202913,-0.04488933,-0.037530422,0.004504264,0.022395605,0.009952921,0.0023303204,-0.059361845,-0.009407136,0.05509368,0.0068621803,0.009615638,-0.009523652,0.013098854,0.005880993,0.0056908876,-0.013233767,0.0072853174,0.035911463,0.049132966,-0.019059569,0.017146252,0.043074135,0.04116082,0.009842537,-0.010001981,-0.0060618995,0.020420967,0.00031294517,-0.004810885,-0.016766042,0.016692454,-0.033262257,0.02526558,-0.013847009,-0.033581145,-0.017550992,0.026492063,-0.0051880293,-0.0356907,0.01048031,-0.011308187,-0.03147159,0.009462328,0.020138875,-0.008867483,-0.006690473,0.03382644,0.00013769204,0.0055958354,0.049402792,0.055388037,0.007622601,0.014619694,-0.028699735,-0.027865727,0.00055038487,0.035960525,-0.006025105,-0.027890256,0.0029144336,0.008444346,-0.011804912,0.053082246,-0.02367115,0.0011988885,0.0043509537,-0.005939251,0.008358492,-0.02488537,0.026271297,-0.029877162,0.0027089976,-0.010799196,0.0037162479,0.025658054,0.0078004412,-0.042902425,0.021868218,0.05126705,-0.021340828,-0.008566994,0.039713565,0.00089150085,0.018409532,-0.017563257,-0.01605468,0.0145829,0.019464308,0.030514933,0.010707209,0.0010992367,-0.021353094,-0.0041332524,-0.01227711,0.0014273212,-0.029386567,-0.0023931777,-0.026884539,-0.023634356,0.016618865,-0.019035038,0.0383399,-0.04569881,0.0023333866,-0.0005212559,0.00049902586,-0.00181673,-0.013859274,-0.005580504,0.042460892,-0.013675301,0.017563257,0.007941486,0.004258967,0.01812744,-0.022910729,-0.031250823,0.022788081,-0.01141857,0.017452873,-0.025363699,0.041725002,0.0074876873,0.009394871,-0.018863332,-0.014926315,0.0022705293,-0.004479734,-0.02195407,-0.029705454,0.008579259,-0.00095819094,-0.026246767,0.008058003,0.044030793,-0.047047943,0.0015852312,0.019991696,-0.008094797,-0.020163404,-0.0060404358,0.005706219,0.004142451,0.00031352008,0.004780223,0.0007481555,-0.019402985,-0.012467214,-0.063482836,0.029533746,-0.02757137,0.020335112,-0.0056816894,0.0046207802,-0.03313961,0.0003277013,0.0066168834,0.003848095,-0.0001550353,0.011375643,0.013969658,-0.03394909,-0.0017400748,-0.0027212624,0.022346547,0.01101383,-0.0004043566,-0.008781629,0.009082117,0.02686001,-0.025633525,0.04896126,-0.0003100706,0.013564918,0.023781532,0.004593184,0.031913124,0.0052064266,0.014546106,-0.03301696,-0.033286788,0.010596826,0.02005302,0.027129836,-0.02202766,0.0115412185,-0.019586956,0.010670414,-0.012779968,-0.02250599,0.022003131,0.012037945,-0.0046821046,-0.021757834,-0.015036699,-0.00068069884,0.034096267,-0.01025341,-0.018139705,-0.013932863,0.030269636,-0.0073037148,0.0146074295,0.013969658,-0.0061232233,-0.017869879,0.016999075,0.032599956,0.006000575,0.0011306653,-0.0025250248,0.0002864991,-0.05666358,0.02762043,0.014423457,-0.03537181,0.011265259,-0.0064881025,-0.024419306,0.03485669,-0.002032898,0.019562427,0.019942638,0.0077207196,-0.0015898305,0.0032655147,0.03399815,0.0024453034,-0.0083033,0.005562107,0.0020267656,-0.013601712,-0.038683318,0.0071258745,-0.032673545,-0.010596826,-0.017281165,-0.010290205,0.01916995,0.00094056025,0.02521652,0.0067885914,0.002644607,-0.04893673,-0.019856783,-0.015183877,0.0240023,0.0049212687,-0.0027335272,-0.0055529084,-0.010952506,-0.01931713,-0.030465873,0.011553483,-0.008566994,-0.009192501,-0.0074754227,-0.011725191,-0.019954901,0.014595165,-0.011167141,-0.0034678848,0.04162688,0.005865662,-0.008941071,-0.025081607,0.008346227,0.018385002,-0.04260807,-0.009499122,0.009591108,0.021819158,-0.031422533,0.014852727,0.004473602,0.011651603,-0.0039431476,0.01724437,0.015171613,0.03780025,0.01002651,0.0141536305,0.024664601,0.012209653,0.024701396,0.0068805777,0.0026476732,-0.002121818,0.019967167,0.0036365264,-0.012657319,-0.0009459261,-0.00769619,-0.004446006,0.015404644,-0.01691322,-0.023376793,-0.0052953465,-0.0426326,-0.021034207,-0.008971734,0.0004802453,0.034366094,-0.013908333,-0.03137347,-0.017379284,-0.011173273,0.05141423,0.019513367,0.013295092,0.0060343035,-0.028552558,-0.017636847,-0.011081287,-0.018802006,0.028528027,0.0033881632,-0.039173912,-0.0053965314,-0.013969658,0.0045533236,0.028797854,0.022125779,-0.0078004412,-0.014840461,0.018446326,-0.014828197,-0.04702341,0.016618865,0.02002849,-0.028969562,0.013466799,-0.02521652,-0.013466799,0.017624581,-0.035077456,-0.042951483,-0.0032041906,0.037187006,-0.038536143,-0.027031718,0.010198218,-0.009125045,-0.007358907,0.002673736,-0.012583731]},{"id":"guide-profile-urls-1","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: Raw API data: CDN helpers\nWhen you have raw API data (e.g. from client.rest.get(Routes.user(id))), use the standalone CDN helpers. They work with id + hash and support size and extension options.\n\n```javascript\nimport { cdnAvatarURL, cdnBannerURL } from '/core';\n\n// From REST response\nconst userData = await client.rest.get(Routes.user(userId));\nconst avatarUrl = cdnAvatarURL(userData.id, userData.avatar, { size: 256 });\nconst bannerUrl = cdnBannerURL(userData.id, profile?.banner ?? null, { size: 512 });\n\n// Or use User: client.getOrCreateUser(userData) then user.displayAvatarURL()\nconst user = client.getOrCreateUser(userData);\nconst avatarUrl2 = user.displayAvatarURL({ size: 256 });\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.0023319284,-0.026319679,0.01784218,0.003252994,0.04741485,-0.022056285,-0.04349647,-0.0013661959,0.0074424557,0.041475672,0.0053045982,0.0060100295,0.025876088,-0.043595046,-0.02146483,0.055054456,-0.017041253,0.021538762,-0.037877664,0.0401449,0.03075558,-0.024126371,0.012925722,0.021477154,-0.004531396,0.021575728,-0.0033916158,0.03950416,0.012174083,-0.03962738,0.010103996,-0.034082506,0.004488269,-0.0035579621,0.022179505,-0.03366356,0.042510714,0.024459064,-0.0040847254,0.021292323,0.023189904,-0.048375964,0.03615259,0.036842622,-0.0025229186,0.0012606891,-0.017509487,-0.012950366,0.03519148,0.051160723,0.0004886422,0.008637684,0.0016850262,0.030238057,-0.051160723,0.03551185,-0.004925698,-0.025605004,-0.056434516,0.02619646,0.03179062,-0.0213909,-0.014601507,-0.018310413,0.030262701,0.008643846,-0.012888757,0.0026276552,0.0074424557,0.03809946,0.055744488,-0.004913376,0.05005175,-0.009580313,0.03644832,-0.016622307,-0.016301936,0.041377097,0.0018760164,-0.06077184,0.023140617,0.025284635,-0.07353738,-0.052442204,-0.025851443,0.014379712,-0.061412584,-0.050372116,0.0066045634,0.033786777,0.01848292,0.002709288,-0.04975602,0.0020238797,0.03361427,0.03647296,0.02740401,-0.01101582,0.013652717,0.028389765,0.042560004,-0.013960766,-0.009531026,-0.008465177,0.06989008,-0.059096057,0.020109417,0.045147613,-0.010344274,-0.014182561,-0.060081813,0.02816797,0.0107817035,0.05229434,-0.00043781416,-0.0022703186,0.0009087436,0.04354576,0.008181772,-0.034328945,-0.07058011,-0.0006988854,0.065552756,-0.008083197,-0.0035456403,-0.038469117,-0.010510621,-0.018322734,-0.1004978,-0.06165902,-0.008132485,-0.032924242,0.025075162,-0.048893485,-0.018433632,-0.035166837,0.001272241,-0.054068703,-0.020971954,-0.009968455,0.023313124,-0.06875646,0.010054708,-0.0016850262,-0.050372116,-0.027428653,-0.06579919,0.042313565,-0.040268123,-0.036916554,-0.050396763,-0.0035918474,-0.0431761,-0.015710482,-0.04403864,-0.022315046,0.027182214,-0.026221102,-0.04406328,-0.074671,0.012802502,-0.008397407,-0.027428653,0.006937256,0.0100916745,-0.017263047,0.01158879,-0.03442752,-0.059835374,0.030410564,-0.014170239,-0.012716249,-0.01620336,-0.060525402,0.015698161,-0.007768987,-0.01348021,-0.03255458,0.016609984,0.028784068,0.062792644,0.017250726,-0.008465177,-0.038173392,-0.03176598,0.00227956,-0.006549115,0.04302824,0.02057765,-0.00032556892,-0.012001576,0.0178545,-0.010233377,-0.0155749405,0.027034352,-0.00835428,0.03943023,-0.039035928,0.01652373,0.032899596,0.015008131,0.029966975,0.012605351,-0.027206859,0.0061363294,-0.02348563,-0.028882643,-0.004109369,-0.055941638,0.0020546846,-0.024606928,0.021119816,-0.03723692,0.029498741,-0.02100892,-0.009075114,0.021243036,0.04374291,0.015993888,0.011718172,-0.045295477,0.04342254,0.02829119,-0.056631666,0.018187193,-0.013960766,0.009604958,-0.035782933,0.011114396,0.044087924,0.03829661,0.020023163,-0.03878949,-0.03943023,-0.002328848,-0.019444032,0.0013738971,0.02094731,-0.010393562,-0.016228003,-0.040243477,-0.045862287,0.008754743,0.045911573,-0.008748583,-0.009857558,-0.02829119,-0.049731378,0.023079006,0.06234905,0.028463697,-0.007159051,-0.009808269,-0.024816401,0.044334363,-0.0056619346,-0.016178716,0.03499433,-0.014502931,-0.0033946964,0.03405786,0.030139482,-0.018519886,0.029276945,-0.029597316,0.018593818,-0.045467984,0.053822264,-0.014355068,-0.007799792,0.019037407,-0.014490609,-0.0061363294,0.009506382,-0.021427866,0.019973876,0.021193748,-0.008138645,-0.044704024,0.033392474,-0.0055664396,0.00048902724,-0.015562619,0.010165606,0.010911084,-0.015180638,0.018815612,0.0022811005,-0.0060932026,0.004506752,0.009247621,0.0029326233,-0.0057543493,-0.012241854,0.046108723,0.062250476,0.044013992,-0.028340477,0.00519062,0.013702005,-0.0068633244,-0.014539897,0.036571536,0.014934199,-0.0006349653,-0.009586475,0.0024089406,-0.0016388189,0.015045097,0.010221055,0.015180638,0.0010412044,-0.03183991,-0.017632706,-0.050914284,-0.0010527563,-0.012248015,-0.04325003,0.008150968,0.020097096,0.0062626293,-0.023756713,-0.02538321,-0.041475672,-0.0055910833,-0.027009707,-0.031741336,-0.017903788,0.011767459,-0.006703139,0.030016262,0.008933411,0.010978854,0.0010743197,0.0062256637,0.025802156,0.017632706,-0.023399377,0.005437059,0.033983927,0.016314257,-0.071664445,-0.008187934,-0.0322835,-0.013837546,0.016856423,0.008440534,0.009826752,-0.030681647,-0.0015725885,-0.0155749405,0.042560004,-0.0024412856,-0.0029803708,0.03179062,0.02474247,-0.0022549164,-0.047069836,-0.052885797,0.00057374063,-0.018076295,0.02969589,-0.0060038683,-0.027034352,-0.017768247,0.022216469,0.008465177,-0.0377298,0.018556852,-0.036891907,-0.015858345,-0.00088255946,-0.016659271,-0.020294245,-0.0070296708,-0.013320024,-0.0030050147,0.0038013204,0.01753413,0.03600473,0.042806443,0.035709,0.013566463,-0.07038296,0.044334363,-0.008958056,-0.0019468676,-0.009611119,-0.060574688,0.001892959,0.0031159122,0.00035906924,0.013430922,-0.013085907,0.0050458373,0.027132927,0.09128098,0.019382423,-0.01184139,-0.0001347713,-0.009654245,0.04874562,0.014971165,-0.0022348932,0.032357432,0.000035882855,-0.031199168,-0.015365467,0.002196387,-0.016881067,0.0049010543,-0.0022179503,0.03600473,-0.007768987,0.040908862,0.008224899,0.05628665,0.0024320441,0.009962294,0.05209719,-0.060821127,-0.008767065,-0.04564049,-0.0754596,-0.02272167,-0.050150324,0.015981564,-0.010325791,-0.03494504,-0.025161415,-0.026985062,-0.024656216,0.03938094,0.010683128,-0.026886487,-0.00092183566,0.03373749,-0.012365074,-0.046010148,0.031741336,-0.0028787148,0.007621124,-0.023744391,-0.036694758,-0.031223813,-0.010165606,0.027305434,0.006727783,-0.011613435,-0.022179505,-0.022475231,-0.00879787,0.04012026,0.004512913,-0.039898463,0.035018973,0.0012745514,0.042905018,0.04406328,-0.017127506,0.02969589,0.015858345,-0.029893043,0.023005074,0.06377839,-0.03588151,-0.0043958547,0.020306569,-0.0041802204,-0.073192365,0.051752176,-0.011366996,0.014330424,-0.009888362,-0.045418695,-0.046034794,-0.0128517905,-0.025013551,-0.0016018531,0.03341712,0.044161856,0.02816797,-0.067770705,-0.017115183,0.02512445,0.11109467,0.0560895,-0.03018877,0.04221499,0.0014262653,-0.043915417,-0.014712404,0.06885504,-0.0128148245,0.002670782,-0.008206417,-0.006037754,-0.014613829,0.03676869,-0.002760116,0.033491053,0.0071159243,-0.010664645,0.03805017,0.013110551,-0.02019567,-0.029794468,-0.0053569665,-0.011052786,-0.00087331794,-0.017324656,0.03652225,0.0023519516,0.0032745574,-0.043915417,0.038222678,-0.035561137,0.040465273,-0.009469416,-0.024138693,-0.013061264,0.007171373,0.010449011,-0.0060747196,-0.024261912,-0.005138252,-0.002892577,-0.07619892,0.00090181245,-0.0023457906,0.026911132,-0.02772438,0.04189462,-0.027798312,-0.016745526,-0.0029495659,-0.032258857,-0.016289614,0.0019961554,-0.019727437,-0.032061704,0.004537557,-0.020097096,-0.0018036249,0.0073007536,0.0024258832,-0.007380846,0.024594605,-0.0003430892,-0.03800088,0.026763268,-0.038518406,-0.031913843,-0.0029387842,0.021070529,0.026344322,0.028118683,-0.024976585,-0.010535264,-0.04083493,-0.017558774,-0.011385479,0.033269256,0.03716299,-0.0010666185,0.03514219,0.031987775,0.008945733,-0.027058994,-0.0075410316,0.0040046326,0.015291536,-0.002348871,0.017102862,0.010147123,0.03183991,-0.03341712,0.053082947,0.010116318,0.04209177,-0.0143673895,-0.020602295,0.0015987726,0.021243036,-0.035290055,0.019838335,-0.0017420152,-0.02760116,-0.012186405,0.031667404,0.04039134,0.016979642,0.013591107,-0.02399083,-0.019382423,0.038444474,0.031618115,0.028143326,-0.011176006,0.00034289667,0.011662723,-0.046231944,-0.032505296,0.008397407,-0.0011490216,-0.012235693,0.0050427564,0.0029788306,-0.03354034,0.0037828377,0.022549162,0.017891467,-0.01860614,-0.0060038683,0.0058652465,0.023744391,0.02614717,0.0013946904,0.012629995,0.016363544,-0.00086176617,-0.017263047,-0.0024890332,0.032012418,-0.025432497,0.03829661,-0.0051290104,-0.023892255,-0.03151954,-0.034205724,0.009278426,0.024557639,0.003456306,-0.0051259296,0.016486764,-0.0059977076,0.003120533,-0.015747448,-0.026492186,-0.03652225,0.033072107,0.0121617615,0.027995463,-0.010350435,-0.023473307,-0.025925376,-0.005748188,0.020540684,-0.016363544,-0.0043250034,-0.050347473,-0.0071344073,-0.0121247955,-0.02348563,-0.014847945,-0.005600325,0.011983093,-0.010658484,-0.034230366,0.030583072,-0.0154393995,0.0031852233,-0.010701611,0.00022872613,-0.03255458,-0.010393562,0.023214547,0.018852578,-0.023140617,0.005055079,-0.01044285,0.044580802,0.018519886,-0.012081669,-0.022709347,-0.02031889,0.017065896,-0.02278328,0.014404356,0.01664695,-0.0173493,0.0278476,-0.022647738,-0.0020654663,0.019333133,-0.009672728,0.011502537,0.031815268,0.0053662076,0.011619596,-0.047759864,0.014613829,0.027896887,-0.030262701,-0.010239538,0.035807576,-0.02696042,0.013603429,-0.0063519636,-0.02266006,-0.0085391095,-0.0343043,-0.011792103,-0.0047131446,0.000043945067,-0.021563407,0.000043054613,-0.02981911,0.04007097,-0.03809946,-0.047562715,-0.008767065,-0.031741336,-0.0036935036,-0.0012714709,0.0054339785,-0.028340477,0.0060808808,0.011028143,0.015821379,0.0034593865,0.0042264275,-0.025075162,0.00083019113,0.012654639,-0.009648085,0.03701513,0.019801369,0.005310759,-0.0213909,0.015119028,-0.042264275,-0.022290401,0.024828723,-0.011163684,0.005246069,-0.006912612,0.01848292,-0.010861796,0.003822884,-0.010338114,-0.02411405,-0.01904973,0.0068386802,0.0016480604,0.003943023,-0.003594928,-0.005621888,-0.011145201,-0.03600473,-0.0054832664,0.00866849,0.017694315,-0.023522597,0.0023303882,-0.051949326,0.0373355,0.0054216566,-0.03785302,0.001728153,0.019567251,0.036941197,-0.00810168,0.0054986686,-0.012666961,0.012802502,0.006530632,0.007239144,0.024064763,-0.04423579,-0.049928527,0.018273447,-0.017250726,0.008317314,0.060426828,-0.002481332,-0.040218834,0.0018205676,-0.024323523,-0.027527228,0.008680811,0.037384786,0.035610426,-0.010621518,0.019924589,-0.0002841749,-0.011490216,-0.019739758,-0.0063334806,-0.022080928,-0.033959284,-0.017768247,-0.014465965,-0.037187636,-0.034033217,0.0178545,-0.0030789464,-0.08911232,-0.019579573,0.012549902,-0.030213414,0.010258021,0.033392474,0.027995463,0.020971954,0.02829119,-0.028710136,0.015501009,-0.017743602,-0.0063642855,-0.026911132,0.0074979044,0.022573806,0.007146729,-0.04790773,0.02512445,-0.01803933,-0.025605004,-0.01133003,-0.01145941,0.043693624,0.04191926,0.009007343,0.0031189928,0.00047747543,0.037187636,-0.05697668,-0.007670412,0.029966975,-0.0034871108,0.02120607,0.018692393,0.04241214,0.022438265,-0.004814801,-0.015143672,-0.00051020563,0.03075558,0.004152496,0.016043175,-0.009839075,0.0041370937,0.035487205,0.003108211,0.020491397,-0.0466016,0.00810168,-0.015082063,-0.030410564,-0.02853763,-0.0016958079,0.0031482573,0.018852578,-0.043348607,0.007411651,-0.01861846,0.005393932,-0.001982293,-0.01100966,0.014663116,-0.006234905,0.040736355,-0.006998866,0.007393168,0.01753413,0.040218834,-0.0036134108,0.008908767,-0.004608408,0.037138347,0.0063766073,0.023769036,-0.005230666,0.021193748,0.009524865,-0.024828723,-0.04904135,-0.005430898,0.0012114014,0.019961553,0.011878356,0.021970032,0.00943245,-0.01297501,-0.01152102,-0.012500615,0.01487259,0.028685492,-0.018852578,0.009518703,0.0016064738,-0.036497608,-0.01709054,0.0011274582,0.025099805,0.061609734,-0.059736796,0.022709347,-0.019579573,-0.023460986,0.015599584,-0.037434075,-0.02385529,0.014761692,0.0075533534,-0.021538762,-0.021403221,0.024224946,-0.027650448,-0.029030506,-0.0015818299,-0.023411699,0.040218834,0.019949231,0.017620383,-0.0005159815,0.022425942,0.013936122,-0.0042880373,0.0014016214,0.048844196,-0.028389765,-0.009062792,-0.0025937697,-0.018889545,-0.024902655,0.046256587,-0.04736556,0.031026661,0.00405084,0.029794468,0.014663116,0.01784218,0.0028586916,-0.023325445,-0.039011285,0.019037407,0.014983487,0.0045930054,0.013246093,-0.027132927,-0.011983093,0.042362854,-0.02905515,0.036546893,0.0018205676,-0.034452163,0.028340477,-0.01930849,-0.028365122,0.025654294,-0.003998472,0.048129525,-0.021070529,-0.0010173307,-0.013135195,0.040292766,0.018310413,0.030287344,-0.0056927395,0.012999654,0.03354034,-0.033712845,-0.0031636597,0.029449452,0.009666567,0.015981564,0.010270342,0.0034871108,0.054857306,-0.001449369,0.019259203,0.029893043,0.013985409,0.037581936,0.044432938,0.0062010195,-0.015328501,0.012666961,-0.009703533,0.0065244706,0.044457585,-0.016560696,-0.026023952,-0.0056896587,-0.0064443783,-0.0053384835,0.015919955,0.010621518,0.056188077,0.0053261616,0.017669672,0.011028143,-0.001614175,-0.025309278,-0.043619692,0.00016259194,0.011132879,0.0063026757,-0.012309625,-0.008717777,-0.008255704,0.045492627,-0.04093351,0.019764403,-0.012654639,0.032505296,-0.011859873,-0.018951153,0.005862166,-0.01519296,-0.0059083733,0.017004287,0.009186011,-0.0087301,-0.0421657,-0.014835624,0.0018744761,-0.01487259,-0.028340477,0.0094016455,-0.03418108,-0.035043616,0.005082803,0.013615751,-0.0155749405,0.019542607,-0.04771058,0.027206859,-0.01297501,-0.010036225,0.018532207,-0.012137118,0.027527228,0.00023180663,-0.00885948,0.019567251,0.048400607,-0.0031852233,-0.024557639,-0.045492627,-0.026492186,-0.010079352,0.0126792835,-0.0043126815,0.010196411,0.0055756806,0.018877223,0.020984275,0.0032961208,0.009641923,-0.006696978,0.024298878,0.00019185655,-0.0024412856,0.01822416,0.014675438,0.018593818,0.015488687,-0.000009788969,-0.020861056,0.017669672,0.011385479,-0.02057765,0.0047747544,0.025198381,0.04975602,0.005794395,0.010960371,0.010387401,0.0268372,-0.027157571,0.017792892,-0.019579573,0.029030506,0.0044328202,0.009567992,-0.02848834,-0.020553008,-0.031667404,-0.006176376,0.009198333,0.00835428,-0.028365122,-0.005809798,-0.0018621542,0.0055910833,0.011601113,-0.01164424,-0.0002164042,-0.042264275,0.017805213,-0.0154393995,-0.004488269,-0.018063974,0.022807924,0.014182561,-0.011046625,-0.028882643,0.015143672,0.01733698,0.018199515,-0.010547587,0.023978509,-0.020454431,0.034008574,0.0067462656,0.03627581,-0.008563753,0.029720536,0.017866822,0.014428999,-0.025531074,-0.02278328,0.017275369,-0.014847945,-0.0013099769,0.0044728667,0.00022757096,-0.00091182406,0.024828723,0.007879885,-0.0069927047,0.0030697049,-0.014330424,0.012716249,-0.016979642,0.020676227,-0.006924934,0.0022164101,0.010313469,-0.08186702,-0.017829856,-0.04398935,0.023978509,0.0139238,-0.006469022,-0.027872244,0.033491053,-0.0022364333,0.008951894,0.02962196,-0.018532207,-0.010769381,0.04145103,0.005323081,0.025777513,0.0556952,0.023806,0.013147517,-0.015944598,0.020848734,0.0063519636,0.035314698,0.025802156,0.009149046,0.0016095543,-0.0083296355,0.016351223,-0.019702792,-0.011225293,0.012352752,0.013517176,0.015427077,0.018408988,0.009487899,-0.0019330054,0.0053662076,-0.008261865,0.017176794,0.01481098,-0.022733992,0.008052392,0.024853367,0.0031282343,-0.014133273,0.013270737,-0.029572671,-0.0066045634,-0.004783996,0.025678936,-0.027132927,-0.010769381,0.013048941,-0.02659076,0.007953817,0.008982699,0.006438217,-0.010849474,0.009130563,-0.029424809,-0.034723245,0.008120162,0.03233279,0.002968049,-0.023879932,-0.034772534,-0.010239538,0.063630536,0.033195324,-0.009081274,0.012580708,-0.007356202,0.003979989,0.013812902,-0.028882643,-0.0060285125,0.018273447,0.043940064,-0.017916111,0.018778646,0.030213414,-0.0061363294,-0.00016779026,-0.014182561,-0.0034470647,-0.021292323,0.012753215,0.019444032,-0.013517176,0.0150574185,-0.010837152,0.017139828,-0.0054493807,-0.027354721,-0.026763268,0.01487259,-0.018975798,-0.03252994,0.021021241,-0.007356202,-0.011594952,-0.007189856,0.04246143,0.007879885,-0.01158263,0.04798166,0.0056557734,-0.018815612,0.021563407,0.048302032,-0.012586868,0.008902607,-0.02076248,-0.0080031045,-0.011354674,0.038641624,0.01640051,-0.009186011,0.0174602,-0.001608014,-0.018507564,0.045344763,-0.023152938,0.03050914,0.027946174,-0.012888757,-0.018273447,-0.026985062,0.0038968157,0.008261865,-0.021883776,-0.0063642855,-0.0021979273,0.045246188,-0.0014824842,-0.010720094,0.012629995,0.033688203,-0.01670856,-0.021230714,0.02829119,0.0023457906,0.039997038,-0.020589974,-0.021526441,0.025555717,0.008576075,-0.022697026,0.011748976,-0.0050027105,-0.032899596,-0.0070851194,-0.03982453,-0.02241362,-0.007879885,-0.016191037,-0.036423676,0.013393956,0.005748188,-0.020035485,0.0441865,-0.03886342,-0.030780222,-0.0018405907,0.03474789,-0.010301148,-0.006968061,-0.01101582,0.02474247,0.0014262653,0.0178545,0.011681206,0.002753955,-0.017078219,-0.03861698,-0.021316968,0.019641183,0.006179456,0.032308143,-0.023892255,0.04583764,0.0026122527,-0.012519098,-0.011699689,-0.020084772,0.038764846,-0.00120293,-0.00987604,-0.007387007,0.0112807425,-0.012790181,-0.028808711,0.010547587,0.03703977,-0.02841441,0.023744391,0.011687366,0.0005945339,-0.010941888,0.02317758,0.012901078,0.02994233,0.0034871108,0.011946128,0.0020685468,-0.016573017,-0.030213414,-0.06491201,0.050914284,-0.014761692,0.023091327,-0.0025290796,-0.014342746,0.002398159,-0.010030065,-0.0062811123,0.014268815,0.022142539,-0.0112992255,0.028907286,-0.034082506,-0.04968209,0.007122085,0.025149094,0.005418576,0.0029403246,-0.006998866,0.054315142,0.037828375,0.029498741,0.031741336,-0.012303464,-0.0077073774,0.032973528,-0.013381634,0.015587263,0.01924688,-0.0037119864,-0.045936216,-0.008027748,0.00013207586,0.02405244,0.036103304,-0.020466754,0.007916851,0.03176598,0.0018883384,-0.031199168,-0.026812555,-0.025580361,0.007239144,0.00892109,-0.03082951,-0.028710136,0.011748976,0.019222237,0.0077505047,-0.033244614,-0.005677337,0.038222678,-0.0074732606,0.0074732606,0.03095273,0.0035425597,-0.013209127,0.022943465,-0.0033916158,0.010510621,0.017324656,0.029991617,-0.017805213,-0.044901174,0.017386267,-0.012586868,-0.026615405,0.006191778,-0.017805213,-0.01803933,0.023189904,-0.027798312,0.015168317,0.0036072498,0.025876088,-0.0035117548,-0.01297501,0.001848292,-0.012241854,-0.0058714077,0.01753413,-0.00113901,0.0051259296,-0.021193748,0.02094731,-0.011163684,-0.006274951,-0.023941543,-0.021119816,0.043890774,-0.0007924552,0.013566463,0.0031544184,0.0030173366,-0.05101286,0.0043065203,-0.021280002,0.031051306,-0.0034593865,0.021797523,-0.002760116,-0.00892109,-0.028069394,-0.032948885,-0.0029772904,-0.0046915812,0.018211838,0.007910689,-0.014798658,-0.008255704,-0.0033392475,0.015279214,0.006290354,0.010177928,0.011619596,-0.010923406,-0.0020084772,-0.008089358,0.0019715114,-0.03514219,0.02411405,0.0224013,0.002994233,-0.036029372,-0.0010643081,0.00962344,0.015266892,0.004032357,0.003912218,-0.0012044703,0.034846466,-0.00048094097,-0.0034871108,0.034501452,0.01860614,0.013073585,0.029868398,-0.013911478,0.005153654,0.033589628,0.01771896,0.0008948814,0.0006911842,-0.022462908,0.005868327,0.009457094,-0.005671176,-0.026221102,-0.0114717325,-0.030238057,-0.02209325,-0.029671248,0.00009400298,0.027083639,-0.022758635,-0.01848292,-0.015279214,-0.007645768,0.05815959,0.030804867,0.023879932,0.009524865,-0.016696237,-0.015969243,-0.0012268039,-0.02056533,0.010042386,0.012925722,-0.041500315,0.009826752,-0.038222678,0.014404356,0.019899944,0.010331952,0.011662723,-0.022068607,-0.005005791,-0.008058554,-0.030878799,0.024101729,-0.0012375856,-0.024089405,0.022462908,-0.021526441,0.009377002,0.00047478,-0.0034655475,-0.047538072,-0.007559514,0.028956575,-0.03317068,-0.021723593,0.0036349744,-0.033762135,-0.016055496,0.013689683,-0.00145553]},{"id":"guide-profile-urls-2","type":"guide","source":"guides","text":"Guide: Profile URLs (profile-urls)\nSection: Guild member and webhook avatars\nGuildMember has displayAvatarURL() (guild avatar or fallback to user) and bannerURL(). Webhook has avatarURL().\n\n```javascript\n// Member avatar (guild-specific or user fallback)\nconst memberAvatar = member.displayAvatarURL({ size: 128 });\n\n// Webhook avatar\nconst webhookAvatar = webhook.avatarURL({ size: 64 });\n```","meta":{"slug":"profile-urls","url":"/guides/profile-urls"},"embedding":[-0.028979452,-0.008618789,0.0005051199,-0.008260876,-0.007579685,-0.014789912,0.005726617,-0.031981308,0.041956704,0.02101299,-0.002535702,-0.0306882,0.021174628,-0.06248478,-0.022490826,0.026739607,-0.027386159,-0.0018242046,-0.040455777,0.010177445,0.030826747,-0.0024635422,0.023518384,0.058974918,-0.024938492,0.033666965,-0.039301217,0.008884338,0.017122123,-0.00010048279,0.0069908598,-0.03011092,0.014616728,0.017480036,-0.034267336,0.017872587,0.041795067,0.0076027764,0.01911951,0.030364923,0.010720088,-0.021544086,0.033713147,0.025123222,-0.005091609,0.044312008,-0.0299031,-0.00969253,0.0078336885,0.03701519,-0.0129541615,0.025561955,0.0073776376,0.052509382,-0.07467693,0.011060683,-0.023426019,-0.010506495,-0.047383137,0.008012645,0.012850251,-0.0050540855,0.020816714,-0.019131057,0.051077727,-0.039070304,-0.04899952,0.003524294,0.008884338,-0.010864408,0.06996632,-0.017699402,0.05075445,-0.0035214075,-0.008878565,0.0052474746,-0.005085836,0.052925024,0.018750051,-0.049738437,0.00028088276,0.02586214,-0.104834035,-0.027339976,-0.01717985,0.013831627,0.013889355,-0.03161185,0.024476668,0.03168112,-0.011799602,-0.04456601,-0.069365956,-0.023229744,0.01996234,0.01649866,0.024545942,0.0016091678,-0.015078551,0.035075527,0.06156113,-0.003879321,-0.052139923,-0.010131262,0.07052051,-0.048260603,0.0068811765,0.062392414,-0.01181692,0.025815958,-0.06608701,0.03491389,-0.015979107,0.06368552,0.004947289,0.0052878843,0.0023019037,0.038862485,0.016510205,-0.05343303,-0.08589925,-0.011845784,0.03048038,-0.030041646,0.011626418,0.007123634,-0.038816303,0.004312281,-0.08238939,-0.030226376,-0.003307814,-0.030734383,0.020412618,-0.007868325,-0.05033881,-0.0409176,0.0030826747,-0.05287884,-0.050061714,-0.008849701,0.024361212,-0.032350767,-0.00096333586,-0.010379493,-0.03493698,-0.0010217854,-0.063269876,0.05153955,-0.03706137,-0.034198064,-0.08876256,-0.026831971,-0.002454883,-0.021809636,-0.04761405,0.02208673,0.0076893684,-0.022236822,-0.043365266,-0.023426019,-0.004543193,-0.020528074,0.000013067724,0.024453577,-0.019708337,-0.05172428,0.041610338,0.01728376,-0.054402858,0.012446155,0.011078002,-0.019604426,-0.019789156,-0.05537269,0.018680777,0.019789156,0.00288207,-0.046551853,-0.0006764999,-0.014986187,0.06677974,0.042141434,0.020262524,-0.056250155,-0.02179809,0.0031086523,0.03318205,-0.0150670055,0.0004942959,-0.016048381,0.024615215,0.012769432,-0.032858774,-0.005212838,0.040178683,-0.010991409,0.023991754,-0.013635351,-0.005902687,-0.0030826747,0.017202942,-0.005033881,0.03650718,-0.010160127,-0.0009258127,-0.025169404,0.012134424,-0.00965212,0.0027189883,0.03768483,-0.00833015,-0.03932431,0.006090303,-0.011701464,-0.05227847,-0.0066560376,-0.031011477,0.045027833,0.0077759605,0.010362174,-0.046182394,0.06359316,-0.00017110938,-0.010073534,0.01697203,-0.008353241,0.019050237,-0.04592839,0.0064308983,0.028471446,0.012653976,-0.008549516,0.009952306,-0.04784496,-0.010800907,-0.014351179,0.035006255,0.05708144,0.015182462,-0.011799602,-0.021959728,0.0049357433,0.0011119854,0.028125077,0.00034077556,-0.04611312,-0.003293382,-0.015205553,0.017029759,0.026393238,0.020158615,0.019258058,-0.013023435,0.018980963,0.025538864,0.017110577,-0.060083292,0.046390213,-0.0011754862,-0.008601471,0.031380937,0.02179809,-0.010344856,0.05652725,0.015090097,0.033112776,-0.015632741,0.055511236,-0.0048145144,0.009715621,0.0030740155,-0.0128964335,0.019973885,0.03819284,-0.003365542,0.0040351865,-0.003697478,0.02307965,-0.019546699,0.0048491512,0.02586214,0.038562298,0.022156004,0.009657893,-0.012007423,0.009178751,0.012526974,0.0049732667,0.0017318397,0.027663253,-0.013785444,-0.0018776029,-0.017872587,0.011083774,0.013231256,0.04227998,0.02835599,-0.0017303965,0.014489726,0.0066964473,-0.015020823,-0.003403065,-0.018634595,0.026277782,-0.016487114,-0.00087674387,-0.0045374203,0.03165803,-0.046736583,-0.007302591,-0.0059459833,-0.00017137997,-0.017999588,0.015297918,-0.064886265,-0.013947083,0.011181912,0.021601815,0.039647587,0.0051984056,0.04258017,0.01264243,-0.0106508145,-0.015967563,-0.029418185,-0.055141777,-0.019027146,-0.022941103,0.03588372,0.012665521,0.052601747,0.021705724,0.011129957,0.02662415,-0.009929215,0.045489658,0.014870731,-0.0013140334,-0.020758986,-0.0010347742,-0.04227998,-0.035629716,0.010604632,-0.02332211,-0.041541062,-0.026531786,-0.023114288,0.039278127,-0.031011477,-0.0144204525,0.00752773,0.042718716,0.009097932,-0.031704213,-0.0061884406,-0.037292283,0.050477356,-0.015355646,-0.022017457,0.0070543606,-0.02449976,0.0262316,-0.03627627,-0.010483404,-0.008416741,0.017110577,0.011228095,-0.04308817,0.047752596,-0.040063225,-0.036391728,0.01686812,0.03087293,-0.031265482,-0.014824549,0.013693079,-0.007677823,0.023218198,-0.0057323896,0.021163082,0.021070717,0.023033468,0.031311665,-0.063269876,0.017503127,-0.023437565,0.022248369,0.011822693,-0.07412274,-0.041979797,-0.00299031,0.018634595,-0.048768606,-0.055834513,-0.016671844,-0.016071472,0.054541405,0.01204206,0.0036628412,-0.035768263,-0.021232355,-0.0034434746,0.003986118,-0.033251323,0.007129407,0.0058680503,-0.029995466,-0.008705381,0.029533641,-0.0006967047,-0.022548554,0.04578984,0.030803656,-0.04498165,0.02526177,0.022167549,0.037754107,-0.056296337,0.040432684,0.064008795,-0.06645647,0.01264243,-0.042002887,-0.053894855,0.006378943,-0.05634252,-0.0013068174,0.01649866,0.045074016,-0.05056972,-0.08229703,-0.024407394,0.025169404,-0.008740018,-0.018103499,-0.048445333,0.04821442,-0.0066618104,-0.0035416123,0.031011477,-0.023610748,0.008693836,-0.032258403,-0.01754931,0.004398873,0.008076146,0.032720227,-0.046390213,-0.022340734,0.0040929145,0.018392138,0.008018418,0.020401072,0.031265482,-0.007822143,0.026831971,0.037084464,0.026970519,-0.013854718,-0.047290772,-0.0064539895,-0.007418047,-0.007897189,0.045651298,0.026116144,-0.021959728,-0.03165803,0.02489231,0.020758986,-0.03606845,0.032373857,0.0049213115,0.026947428,-0.017895678,-0.0057727993,0.013312075,-0.0014597966,-0.027940348,-0.007816371,0.02429194,0.046043847,0.041702703,-0.05301739,-0.030272558,0.015101642,0.077632606,0.054033402,-0.014766821,0.042141434,-0.031750396,-0.057404716,-0.007614322,0.06405498,-0.01070277,0.018588414,-0.0022384028,0.021474812,-0.008099237,0.012053605,-0.012434609,-0.0091845235,-0.015748195,-0.033297505,0.046782766,0.030988386,-0.037407737,-0.058236,-0.013485259,-0.009802213,0.02604687,-0.039970864,-0.03717683,-0.023760842,-0.0077759605,-0.008422514,0.031173116,-0.02200591,0.024961583,-0.006263487,-0.01047763,-0.034198064,0.014813003,0.014281905,-0.036461,0.022802558,0.04308817,-0.012838705,-0.08400577,-0.0011054911,0.010823999,0.00044811354,-0.015956016,0.0403865,-0.017249124,-0.04165652,0.003264518,-0.017087486,-0.02932582,0.013369803,-0.042072162,-0.031935126,0.017387671,-0.009715621,0.00810501,-0.013358258,0.013727716,-0.028148169,0.012319153,0.033828605,-0.012977253,0.032489315,-0.023576112,-0.0070889974,-0.016983576,-0.008486015,-0.021832727,0.0069908598,0.024268849,-0.016764209,-0.018796233,0.02182118,-0.002860422,0.026855063,0.020158615,0.004130438,0.013577624,0.026069961,0.043850183,-0.007366092,-0.0041217785,0.013935537,0.005599615,0.012746341,0.0007836575,0.0027565116,0.016083019,-0.0019887292,0.060175657,-0.0009250911,0.04105615,-0.028125077,-0.025746685,-0.010131262,-0.015817469,-0.022571646,-0.0037378876,-0.022791011,-0.025307951,0.016360113,0.041263968,0.04784496,0.013669988,-0.008370559,-0.018853962,0.010893272,-0.01938506,-0.017514672,0.0020305822,-0.025053948,0.006263487,-0.016487114,-0.015424919,-0.02082826,0.020539619,0.009236479,-0.005720844,0.004196825,-0.0077701877,-0.034244247,0.008220466,0.03258168,-0.0071409526,-0.005207065,-0.0005260463,-0.010050443,-0.0010015806,0.025977597,-0.0069908598,-0.003085561,0.0034636795,-0.0011141503,-0.011395506,0.035791356,0.05283266,-0.01282716,0.016948938,-0.0028950588,-0.008370559,-0.0150670055,-0.017699402,0.008029964,0.016383205,-0.038816303,-0.03320514,-0.004442169,-0.008307058,0.0023755068,-0.036530275,0.0067714937,-0.02237537,0.0154480105,0.019835338,-0.00273775,-0.025331043,0.003076902,-0.00046651435,-0.004644217,0.018369047,-0.0139239915,-0.00095034705,-0.033066593,0.023830116,-0.008561062,-0.0010961102,-0.0014922686,-0.009704076,0.010541132,0.017295307,-0.03840066,0.013820081,-0.0409176,-0.0072333175,-0.006552127,0.0017635901,0.01123964,-0.013473714,0.0015110302,0.0109740915,-0.060314205,0.012757886,-0.039624494,0.028078895,0.025908323,-0.00443351,-0.006500172,-0.037084464,-0.012503883,-0.019904612,0.009069067,0.046551853,-0.017710948,0.02662415,-0.032373857,0.019558243,-0.00036657276,0.0073430007,0.00021810357,0.008006873,0.027386159,0.001303931,-0.017145215,0.0022557213,0.02074744,-0.02006625,-0.02064353,0.04923043,-0.002694454,-0.013242802,0.016821938,-0.021174628,0.0010073534,-0.015944472,-0.017803313,-0.019154148,0.0041217785,0.010356402,0.020539619,0.021047626,0.0027998076,-0.0153902825,-0.015124734,0.013866263,-0.040802144,0.018923236,-0.013542987,0.034198064,-0.013265893,-0.02289492,0.014166449,-0.0058565047,-0.0150670055,0.011880421,-0.021451723,-0.014027902,-0.014766821,0.007360319,-0.0018689438,-0.0020998558,0.008428287,-0.012180606,-0.017607037,-0.021463268,-0.00833015,0.009721394,0.041402515,0.036668822,0.007902962,0.014108721,-0.013635351,-0.0033597692,0.003192358,0.0012317711,-0.023091197,0.013034981,0.0006267095,0.037338465,0.013739262,-0.004346918,-0.011326232,-0.01012549,-0.0006332039,0.006736857,-0.008982476,-0.034775343,-0.034082606,-0.03669191,0.039462857,-0.007037042,-0.018138135,0.018842416,0.04551275,0.022687102,0.024730671,0.042995807,-0.023737751,-0.00915566,0.017064394,-0.00457783,0.03798502,-0.001181259,-0.05712762,-0.025238678,-0.024061028,0.005793004,0.056619614,-0.0073718647,-0.013265893,0.011268504,0.001267851,-0.007106316,0.009906123,0.036484092,0.02856381,0.0034261562,0.012850251,-0.0327895,-0.0020493437,-0.010823999,-0.0064828536,-0.02392248,-0.031750396,-0.0069619957,-0.005351385,-0.017145215,-0.028240534,0.0023942685,-0.008711154,-0.08192757,-0.034706067,0.032073673,-0.042557076,0.015009278,0.024661398,-0.019512061,-0.0040698233,-0.020343345,-0.016452478,0.01152828,-0.022941103,0.0031317435,-0.046621125,0.044843104,-0.011741874,0.019211875,-0.017641675,0.04167961,-0.011661055,-0.009265343,0.002144595,-0.002824342,-0.0077124597,0.020920625,0.004961721,0.022306096,-0.021751907,0.033158958,-0.030919112,-0.047336955,0.040271048,-0.0063731703,0.0028055804,-0.022121366,-0.00028954196,0.00561982,-0.0025703388,-0.0007410831,-0.00868229,0.005178201,0.0044768057,0.0033135868,-0.016002199,-0.0074642296,0.022964194,0.020528074,0.043295994,-0.029256547,0.026485603,0.00709477,0.0039716857,0.00037054156,0.014050993,-0.008318604,-0.014154904,-0.03950904,-0.023691569,-0.02567741,0.002939798,0.035745174,0.010298674,0.02284874,-0.011759192,0.012665521,-0.023356745,0.0040986873,-0.028794723,0.0196737,0.009097932,-0.01825359,-0.002483747,0.037477013,-0.009040204,0.023356745,0.024037937,0.012503883,-0.01524019,0.009553983,0.0053167483,0.01144746,-0.0036137723,-0.0039687995,0.01070277,0.005504364,-0.0055851834,0.004456601,-0.0422338,0.0047712186,-0.015782833,0.017306851,0.0054668407,0.026393238,0.009484709,-0.009380799,-0.004543193,0.0044017592,-0.001502371,0.046736583,-0.03456752,0.001653907,-0.03800811,-0.0121921515,-0.030434197,-0.009911897,-0.06576373,0.025423408,0.027524706,-0.006563673,-0.050800633,-0.0093750255,0.009894578,-0.03029565,-0.017930314,-0.03680737,0.00041419835,0.058882553,0.044265825,0.026531786,0.00482606,0.0058593913,0.038285203,0.023495292,0.035976086,-0.0008016975,0.0023509725,-0.010298674,-0.017526219,0.006119167,0.048260603,-0.047290772,0.003524294,0.02208673,-0.0064886264,0.011176139,0.0058045494,0.003489657,-0.007764415,-0.04650567,-0.008099237,0.00874579,0.017872587,-0.025931414,0.0059690746,0.006707993,0.013450623,0.01831132,0.0024952926,0.016833482,-0.04209525,0.04766023,-0.029256547,-0.053941038,0.000096694384,0.01985843,0.01948897,-0.00882661,-0.0063904887,-0.01055845,0.037407737,0.012088242,0.0249154,0.019465879,-0.015782833,0.013589169,-0.00371191,-0.015459556,0.0033770876,0.008774655,0.011903512,-0.0065579,0.021024534,0.045582023,-0.008099237,0.049184248,0.054541405,0.027132157,-0.0051897466,0.04645949,0.029741462,-0.0139817195,0.023472201,-0.025192495,0.024592124,0.07435366,-0.006171122,-0.0007143839,-0.032281492,-0.0063616247,0.0033770876,-0.014351179,0.009958079,-0.0043093944,-0.03627627,-0.008018418,-0.0041997116,0.015321009,-0.014755275,-0.012746341,0.0096983025,0.005533228,-0.00049177033,0.0048404923,0.0025703388,-0.031634938,0.00006710879,-0.05038499,0.024153393,-0.00037342796,0.0393474,-0.0007194351,0.019546699,0.02761707,-0.0092422515,0.021463268,0.04456601,0.019869976,-0.04532802,-0.0516781,-0.008901657,0.015621195,0.009617483,-0.025007766,0.024130302,-0.017745584,0.00095611985,-0.021001443,0.018022679,-0.02161336,0.020297162,0.006321215,0.008295513,-0.025307951,0.02761707,-0.020181706,-0.016579479,0.02586214,0.00032778675,-0.02095526,0.025746685,0.057358533,0.020147068,-0.024799945,-0.014201086,-0.033043504,-0.01012549,0.038747028,0.008520652,-0.007764415,-0.005241702,0.015863651,0.014870731,0.004629785,0.000061065395,0.019107966,0.018507594,-0.018980963,0.006326988,0.02854072,-0.007793279,0.011626418,-0.00479431,0.00006192229,-0.02930273,-0.0026482716,0.027363067,-0.015090097,0.010535358,0.03498316,0.041356333,0.0007454127,0.024753762,-0.018530685,0.009663666,-0.023564566,0.0034434746,-0.007458457,0.03782338,0.023102742,0.038862485,-0.04687513,-0.035606626,-0.009080613,0.032535497,0.021036081,0.01293107,-0.02119772,0.023587657,0.004346918,0.02680888,0.010431448,-0.0071178614,0.023968663,-0.041402515,0.034844615,0.004612467,-0.033436053,-0.023783933,0.031011477,0.026162326,-0.030226376,-0.0327895,0.012757886,-0.014893822,0.034151882,-0.014016356,0.03553735,-0.014108721,0.02660106,0.022537008,0.05444904,0.0023206654,0.0068580853,0.014639819,0.013485259,-0.00051197514,0.00497038,0.003250086,-0.018507594,-0.008890111,-0.0021561405,-0.03800811,-0.008924748,0.039901588,0.034613702,-0.030364923,-0.0029094908,0.003446361,0.03877012,-0.030896021,-0.015748195,-0.0005834135,0.014247268,0.0020479006,-0.04532802,-0.039601404,-0.023737751,0.034636796,0.014986187,-0.01862305,-0.0077470965,0.037384648,-0.019027146,0.010235173,0.013693079,-0.0063385335,0.011603327,0.0034492475,0.016752664,0.024823036,0.05075445,0.011972786,0.008399423,-0.007481548,0.020181706,0.016440932,0.04401182,0.014997733,-0.017249124,0.014916914,0.009017113,-0.009196069,-0.004600921,-0.019350423,0.014062539,-0.015632741,-0.004346918,0.041587245,0.02507704,0.0054581817,-0.017537763,0.006679129,0.020135524,0.037961926,-0.031773485,0.004225689,0.031103842,0.010893272,-0.009265343,0.006592537,-0.038562298,0.042903446,-0.015136279,0.025192495,-0.013381349,0.0060268026,0.02583905,-0.022906467,0.040247954,0.021890454,0.032327674,0.0071178614,0.0109740915,-0.018576868,-0.038516115,-0.0050223353,0.03412879,-0.013069618,-0.010454539,-0.039231945,-0.02567741,0.039901588,0.009178751,0.024545942,0.008832383,-0.004081369,-0.033666965,0.00034420314,-0.0153325545,0.007221772,0.042326164,0.048352968,-0.028425263,0.003149062,0.028979452,0.033228233,0.0019714108,-0.006407807,-0.004701945,0.0143627245,0.014709093,0.0042632124,-0.016544843,0.018657686,-0.021001443,0.00363975,-0.017191395,-0.013427531,-0.033597693,0.005123359,-0.028332898,-0.027039792,0.004791423,-0.02017016,-0.050246444,0.027963439,0.010777816,-0.0051984056,-0.0018357502,0.030526562,-0.0033135868,0.003475225,0.035976086,0.047336955,-0.0032443132,0.015644286,-0.019719882,-0.019246513,-0.009998488,0.034867708,-0.0059171193,-0.015863651,-0.0050252215,0.01936197,0.009323071,0.038700845,0.007643186,0.009559755,0.024199575,0.01293107,-0.0029672189,0.0048953337,0.016879665,-0.031727303,0.0036599548,-0.0072910455,0.0060960758,0.0024072572,0.0064828536,-0.010321765,0.03179658,0.049876984,-0.019004054,0.019846885,0.023287471,-0.0010564222,0.023299018,-0.020770531,-0.018403685,0.019985432,0.0023163357,0.0047510136,0.019650608,-0.008301285,-0.016879665,0.016648753,-0.021971274,-0.005209951,-0.027963439,-0.0054379767,-0.026370147,-0.013704625,0.015759742,-0.028402172,0.024615215,-0.040594324,-0.012861797,-0.005212838,-0.010113944,-0.02583905,-0.02062044,-0.012665521,0.013554533,-0.010142808,0.009069067,-0.0059459833,0.01152828,0.016383205,-0.016544843,-0.032512404,0.025931414,-0.008272422,0.0054755,0.01623311,0.048953336,0.018034225,0.002398598,-0.020678166,-0.014582091,0.019535152,0.01466291,-0.0068292213,-0.030711291,-0.012861797,-0.005640025,-0.038862485,-0.007158271,0.02510013,-0.049276613,-0.0021287198,-0.005787231,-0.016764209,-0.021971274,-0.022317642,0.018403685,0.00047950313,0.002620851,0.0025544637,0.01224988,-0.014177995,-0.007978008,-0.029187273,-0.006615628,-0.03412879,0.031034568,-0.0023740637,0.021855818,-0.017168304,0.012757886,-0.00027835715,-0.0017506013,-0.015609649,-0.0058189817,0.00013710398,-0.008757336,0.016925847,0.008122329,0.047198407,0.019708337,-0.0008904543,-0.014755275,0.022975741,0.045189474,0.03454443,0.035814445,0.013081163,0.013531442,0.0059459833,-0.015309463,0.05939056,0.00713518,0.011037592,-0.016152292,-0.027663253,0.013785444,-0.005813209,0.022537008,-0.026485603,0.0013710398,0.00849756,0.0010484847,-0.028979452,-0.020366436,0.007891417,-0.015805924,0.010235173,-0.0422338,-0.014916914,-0.0027550685,0.03299732,-0.0029268092,-0.021774998,-0.00713518,0.061468765,-0.008855474,0.012134424,0.019165693,-0.013970174,-0.00097199506,0.00839365,0.023564566,0.020724349,0.0032241084,0.019916158,-0.02507704,-0.03664573,0.049507525,0.0006162463,-0.017976496,-0.004326713,-0.0005296543,0.01253852,0.046390213,-0.019419696,0.016856574,0.012365336,0.015286372,0.002636726,0.008815064,-0.0011192014,-0.0025183836,0.010356402,0.0045691705,0.004583603,-0.012065151,-0.023356745,-0.016186928,-0.00030397397,0.0077701877,-0.0075104116,-0.010927909,0.031034568,0.02408412,0.028817814,0.0023798365,0.0006833551,-0.066133186,-0.011730328,-0.022329187,0.021336267,0.00096910866,-0.009069067,-0.010154353,-0.010720088,0.02740925,-0.01008508,0.033620782,0.008947839,-0.013265893,0.0008854031,-0.0035733627,-0.034059517,-0.015009278,-0.0008154079,0.0042141434,0.016140746,0.0017404989,0.028586902,-0.023737751,-0.019419696,0.020978352,-0.03895485,-0.011834239,0.016186928,0.00036819634,-0.027570888,0.010333311,0.030896021,0.023587657,0.004762559,0.008549516,-0.006234623,0.012965707,0.018103499,-0.008797746,0.020100886,0.0066040824,0.03265095,0.010777816,-0.016856574,-0.014905368,-0.0016019518,0.018068861,-0.010333311,0.0066040824,0.02914109,-0.0006516047,0.008376332,0.0050511993,-0.02874854,-0.00713518,-0.011291595,-0.013450623,-0.018680777,-0.0008038623,0.033436053,-0.0065694456,-0.024846127,0.005539001,-0.032258403,0.05597306,0.008607243,-0.01282716,0.024638306,-0.021428632,-0.03805429,0.0038475706,-0.02433812,0.04345763,-0.020782078,-0.047706414,0.0017029757,-0.013439077,-0.0005725895,0.030388014,0.026670333,0.020262524,-0.010500722,0.012007423,-0.013127346,-0.024176484,-0.017583946,-0.01641784,-0.036345545,0.03449825,-0.029972374,0.013831627,0.005241702,0.0051147,-0.027940348,-0.008630334,0.041725792,-0.020216342,0.009525118,-0.015932925,-0.021105355,-0.013727716,0.005028108,-0.016452478]},{"id":"guide-reactions-0","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Add a Reaction\nUse message.react() to add an emoji reaction as the bot. Pass a unicode emoji string or custom emoji { name, id }.\n\n```javascript\nconst reply = await message.reply('React to this!');\nawait reply.react('👍');\nawait reply.react({ name: 'customemoji', id: '123456789012345678' });\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.0026251995,-0.015302278,-0.044033088,0.029154632,-0.025808653,-0.029600764,-0.01084655,0.006892717,-0.0068481043,0.022685738,-0.04126708,-0.031630658,0.0148338415,-0.021536954,-0.010350229,0.01288202,-0.0033905923,-0.0030141696,-0.0050635817,0.026232477,-0.006061799,0.013551216,0.021168895,0.069417916,0.018704023,0.019942036,-0.035801977,0.059023075,-0.035355847,-0.02344416,-0.0194736,-0.013997346,0.03796571,-0.018849017,-0.008632626,-0.0047373488,0.0016911137,0.026633995,-0.017231792,0.042560857,-0.020968137,-0.03522201,0.029266166,0.03544507,-0.0638859,0.0010037938,-0.06098605,0.002213923,0.025741734,0.00864378,0.0034603002,0.017588697,0.020477394,0.037831873,-0.00018855988,-0.024916392,-0.03482049,0.016272612,-0.019518211,0.053937186,0.005989303,-0.022295374,0.0075507597,-0.026723221,-0.0399733,-0.017142568,-0.043765407,0.011220183,0.010656944,0.012937786,0.04831594,0.013830047,-0.005177903,-0.0058721937,0.0050942535,0.003669424,-0.024916392,-0.0032455998,0.014186952,-0.0727639,-0.0015349679,0.011130958,-0.057863135,-0.047066774,-0.030493025,0.012525115,-0.016930655,-0.046843708,-0.025273297,-0.00027273217,0.028106226,-0.020611232,-0.06442125,0.000106043146,0.025719427,0.005601727,-0.029333085,0.031519122,0.03321442,0.023979519,0.05179576,-0.077269815,-0.063752055,0.008281299,0.01435425,0.005041275,0.012279743,0.04383233,-0.028797727,0.0070377095,-0.018670565,-0.010885586,0.025072537,-0.0016172233,0.01458847,-0.03330365,0.047646742,-0.04137861,-0.010707133,-0.07419151,-0.06103066,-0.020733917,0.08833385,-0.042694695,0.0022641127,-0.030894542,-0.0073444243,-0.014923068,-0.018570185,0.008766466,-0.014343098,-0.0115993945,0.0019462446,-0.021760019,-0.0045588966,-0.0077069052,0.022908805,-0.0075173,-0.022975724,0.02795008,0.033772085,-0.03854568,-0.0055375956,-0.010590024,-0.031519122,-0.040062524,-0.07914356,-0.015279972,-0.03468665,-0.036649626,-0.024135664,0.016517984,-0.04401078,-0.011415366,0.016718743,-0.019139001,-0.020566618,-0.0064911996,-0.020176254,-0.055989385,-0.0030364762,-0.04438999,0.017309865,-0.048940524,0.0028970602,-0.011342869,0.0041936273,0.010361383,-0.009725646,0.038144164,0.044501524,-0.014198105,-0.014889607,0.028061612,-0.023957212,-0.012937786,-0.0091401,0.016317226,-0.029890748,0.07503916,0.02737011,0.019428985,-0.0792774,-0.011677467,0.02197193,-0.006106412,-0.0001166736,-0.0049715675,0.00025931338,-0.037474968,0.0020982078,0.040508654,0.021470033,-0.037408046,0.050145075,-0.04550532,0.07035479,-0.027972387,-0.018269047,-0.049297426,-0.0051054065,0.03330365,0.030626863,-0.003387804,-0.012246284,-0.026232477,-0.032924436,-0.046843708,0.03584659,-0.008415137,0.0345082,-0.07432535,0.01612762,0.009273939,-0.054650992,-0.02026548,-0.03618119,0.009151253,-0.069284074,0.008231109,-0.080080435,-0.0074169207,0.11135419,-0.034798183,-0.012725874,0.042360097,0.050858885,0.00049353193,-0.022596514,0.047780585,-0.017934449,-0.007076746,0.023176482,-0.0461299,0.024648713,-0.007472687,0.049698945,0.006831374,-0.0132166175,-0.002489966,0.028730808,0.00978699,0.03693961,0.0044975537,0.006814644,0.01236897,-0.001773369,0.0070878994,0.004190839,0.015123826,0.05286647,0.019808197,0.059379976,-0.021670792,0.027459336,-0.056881648,-0.028418517,0.044880733,-0.006000456,-0.026700914,-0.015558803,-0.028864648,-0.0036052926,0.0033989572,-0.019841656,-0.027682401,0.002357521,0.04349773,0.025540974,-0.010640214,0.043230053,-0.04381002,0.031251445,-0.010958082,-0.0046899477,0.0031563737,0.0037642266,0.00978699,-0.030916847,0.031006074,-0.0066083088,-0.016852582,0.021347348,-0.021648485,-0.01458847,0.010863279,-0.004826575,-0.06709804,0.016049547,-0.003354344,-0.007907664,-0.01026658,-0.020187408,-0.033794392,-0.017689077,0.067276485,0.023801066,0.009675456,0.04189166,0.029979974,-0.046352964,-0.014097726,0.028039306,-0.013885814,0.03618119,0.019707818,-0.041423224,-0.02248498,0.04670987,-0.015781868,0.026767833,0.0018249528,0.018380579,-0.0013000524,-0.01834712,0.017789457,0.027570868,0.031786803,0.0024077108,0.0029054254,0.05134963,0.0029974398,0.04889591,-0.059067685,-0.0601384,-0.025741734,0.036783464,-0.024068743,0.07387922,0.0072496217,0.033392873,-0.022574207,0.020064723,0.045661464,0.04541609,-0.008972801,0.0016395298,0.017822916,0.004057,0.06544735,0.010043514,-0.009457968,0.016584903,-0.04572838,-0.011644008,0.001015644,0.0009731223,-0.0025429442,-0.00920702,-0.011777847,-0.012614341,0.03673885,-0.021737712,-0.048672844,0.06620578,-0.00090829394,-0.03332595,-0.0013725485,0.0256302,0.010171777,-0.016272612,-0.0021107553,-0.0016116466,0.013751974,0.04106632,0.02286419,-0.013841201,-0.0066584987,0.0396387,-0.03437436,-0.022418061,-0.022886498,-0.020031262,-0.0002830141,-0.04862823,0.023154177,-0.0008950494,0.022339988,-0.01910554,0.05197421,-0.0032846362,0.012647801,0.0056853765,-0.014220412,0.009134524,-0.03308058,-0.0026935132,-0.018681718,-0.004165744,0.044613056,0.060807597,-0.027213965,-0.035712752,0.014131186,0.025228683,0.060316853,0.018012522,0.012157057,0.0113094095,-0.00187096,-0.026522461,0.0040904596,0.02518407,-0.0019378796,0.031251445,0.008816655,-0.013763128,0.012391277,-0.0032455998,0.007840744,0.046174515,0.00506637,0.025942491,0.0355343,-0.026187863,-0.026500156,0.0076734456,-0.009324129,-0.0020243174,0.009747953,-0.04581761,-0.047691356,-0.0031480088,-0.067276485,-0.007154819,0.0193063,0.035712752,0.00047192248,0.043118518,-0.025451748,-0.05982611,-0.0433862,0.014577316,-0.035177395,0.051171176,-0.025206376,0.016239153,0.014064266,0.0034352054,-0.029979974,-0.01698642,0.027570868,0.018235587,0.039928686,-0.011443249,0.02248498,-0.05866617,-0.025808653,0.014700002,0.028953873,-0.046665255,-0.009859486,0.008799925,-0.00375865,-0.021068515,-0.0069652135,0.020611232,-0.012703568,0.011287103,0.033392873,0.03482049,0.04106632,-0.006061799,0.016517984,-0.008175342,0.01664067,-0.048985135,-0.012112445,0.02890926,-0.048985135,0.00032571016,0.025228683,0.010958082,-0.002338003,-0.017097954,-0.049966622,0.043765407,-0.041333996,0.0022376236,0.036649626,0.026143251,0.03354902,-0.0053591435,-0.040397123,-0.043720797,0.044189233,0.022953417,-0.066473454,0.030626863,-0.0053507783,0.033772085,0.01387466,-0.00050224544,-0.009017414,0.032812905,-0.0023338206,0.007969007,-0.022339988,0.006095259,-0.014521549,0.0027074548,-0.021960776,-0.06669652,0.02039932,-0.00910664,0.045639157,0.048226714,0.011933993,0.055097125,0.049877398,0.0033069428,-0.048851296,0.0018221645,-0.0034184754,-0.0008434656,-0.003962197,-0.016830275,-0.017655617,-0.011789,-0.027013205,0.014086572,0.006396397,0.016874889,-0.013205465,0.00084834517,-0.021001596,0.034463584,-0.007606526,-0.007762672,-0.0032400233,0.014778075,-0.0011453008,0.03256753,-0.019763583,0.018882476,-0.02251844,-0.04889591,0.010974811,-0.028485436,-0.040575575,0.006809068,0.0059000766,0.009307398,-0.02505023,-0.018302506,-0.011989759,-0.0032260816,0.05036814,-0.0039649853,0.01715372,0.01712026,-0.026767833,0.010835396,-0.018648257,0.0027562503,-0.0003387804,-0.021826938,-0.014376557,0.04445691,-0.008571284,0.024715634,-0.011175571,-0.01616108,-0.010785206,-0.02159272,0.0072496217,0.040464044,-0.0004429937,-0.038791053,0.0070209797,0.002874754,-0.0035132782,0.01066252,-0.031474512,0.0034491469,0.02975691,-0.026656302,0.0057718144,-0.039527167,-0.017979061,-0.0047485023,-0.028351597,0.026076332,-0.033883616,-0.0023366087,0.014432324,-0.023689533,-0.041757822,-0.011181147,0.02647785,0.00960296,0.01233551,0.0088947285,0.03885797,-0.010088127,-0.009357588,-0.035355847,0.0036861538,-0.006045069,0.01937322,0.007394614,-0.025384828,-0.029779214,-0.0005799697,-0.0132166175,0.013183158,0.016517984,-0.0331475,-0.020310095,0.015692642,-0.0073276944,0.019350912,-0.0074336505,-0.0341736,-0.037118062,0.006513506,0.022061156,0.0142538715,0.010205236,0.011577088,-0.016975269,0.029444616,0.0021734922,-0.024626408,-0.009508157,0.018447498,0.02859697,0.0022724776,0.04124477,0.031965256,0.016562598,-0.004313525,-0.006379667,-0.048806682,-0.010311193,-0.039661005,0.017242946,-0.033682857,0.01349545,0.004475247,0.03102838,-0.0065079294,0.038434148,0.005434428,0.010857702,0.041200157,-0.00017862649,-0.015201899,0.04137861,-0.0050496403,-0.028998487,0.01834712,-0.01698642,-0.018860169,-0.017031034,0.00067512103,-0.010840973,0.028240064,-0.01892709,0.0024746305,-0.0059781494,0.0148338415,0.013952733,-0.0049882974,-0.021826938,0.014142339,-0.019328607,-0.0061287186,0.0015726102,-0.016272612,-0.029310778,-0.010924622,0.00917356,0.0011829431,0.009720069,-0.021514647,-0.011169994,-0.023934904,0.006095259,-0.022808425,0.040843252,-0.019005163,-0.023020336,0.0062067914,0.029846136,-0.024938699,0.021146588,0.01558111,-0.006686382,-0.012090138,-0.01349545,-0.028507743,-0.012290897,-0.0020229232,0.015938014,0.014398864,0.032790598,0.020588925,0.00078909344,-0.019060928,0.04381002,-0.001164819,-0.02832929,-0.019228227,0.03354902,-0.022496134,0.017053341,-0.0016660189,0.051617306,0.0052364576,-0.013718515,0.018257894,0.0016702013,-0.0020285,-0.016651824,-0.011867073,-0.01592686,-0.01875979,0.03946025,0.0011501804,-0.0030281113,0.015224205,-0.013250078,-0.009742376,-0.03160835,0.021403113,0.026589382,0.047066774,-0.026165558,0.04626374,-0.02583096,0.039995603,0.033504404,0.015179592,0.0017747631,0.009614114,-0.026611688,-0.002586163,-0.0074392273,-0.03290213,-0.026879366,-0.02101275,-0.0056965295,-0.008114,-0.021068515,0.0193063,-0.017176026,0.008950494,-0.05839849,-0.009273939,-0.021659639,0.0056714346,-0.03577967,0.0016283765,-0.0049102246,0.008426291,0.0030392644,-0.037831873,-0.040307898,0.014410017,-0.009497005,0.020421626,-0.0026698126,0.049386654,-0.011521322,-0.013328151,-0.00037398288,0.0033627092,-0.024938699,0.0044362107,-0.006106412,-0.011398636,-0.013830047,-0.01872633,0.024336422,-0.01445463,-0.05282186,0.017376786,0.013852354,-0.015636876,-0.029355392,0.017755996,-0.012547422,-0.0048823413,0.018436346,-0.014320791,-0.018603645,0.002435594,0.011342869,-0.031072993,-0.00160607,-0.05166192,0.03566814,-0.0300692,-0.008699546,0.027771628,0.018001368,-0.057461616,0.00063399336,0.01616108,-0.03174219,-0.03013612,-0.008208802,-0.018157514,0.017644463,0.010606755,-0.031251445,0.01824674,-0.009569501,0.01294894,-0.034218214,0.009792566,-0.019161308,0.019618591,-0.01185592,-0.030961461,-0.016852582,-0.015882248,-0.02344416,-0.028150838,0.005021757,0.022473827,0.03638195,-0.0059614195,0.036872692,0.026946286,0.008114,0.022418061,0.018547878,0.011644008,-0.0040095984,-0.02589788,0.007868628,0.02716935,-0.011432095,0.003917584,-0.029533843,0.021068515,-0.024804858,0.013183158,-0.035355847,0.0036610588,-0.01596032,-0.0050691585,0.037497275,-0.03129606,-0.004377656,0.012157057,-0.0000377294,0.013383917,0.0039733504,-0.0011975818,0.0026405354,-0.006217945,0.03406207,-0.009234902,-0.01786753,0.027392417,-0.011209031,0.016908348,-0.022429215,0.046932936,-0.028686196,-0.03977254,-0.008130729,0.026901674,0.0351997,-0.01506806,-0.0092572095,-0.009190289,0.020834297,-0.031139914,0.0120566785,0.008721853,0.027637789,0.02036586,-0.02053316,0.012201671,-0.015871095,0.0012233737,0.03102838,0.034597427,0.0018765366,-0.019908577,-0.00400681,0.0043915976,0.02679014,0.007807285,-0.03468665,-0.009006261,0.0058108508,0.019540519,-0.008671663,-0.024961004,-0.015603417,0.04233779,-0.027280884,0.022629973,0.0009891551,-0.021615027,-0.024760246,-0.031318367,-0.02364492,0.0037251902,0.00148199,-0.01841404,0.007695752,-0.0081474595,-0.033794392,-0.022607666,-0.016138773,-0.0005182782,0.02026548,0.022050003,0.01763331,0.02053316,-0.019417834,0.008320335,-0.002471842,0.02955615,-0.015090366,-0.02286419,-0.014287331,-0.023399549,0.0042633354,0.032545224,-0.042583164,0.015871095,-0.014700002,-0.008431868,-0.014041959,0.0075730663,-0.023957212,0.0223846,0.024113357,-0.024581794,0.01493422,0.0032344465,-0.02005357,-0.01435425,-0.024626408,-0.024492567,-0.0020298942,-0.008236686,0.025161764,-0.006697535,-0.03308058,0.033482097,0.019652052,0.03693961,-0.011499016,0.029689988,0.060539916,0.016874889,-0.039727926,-0.0052197278,0.025741734,0.0054121213,0.009826026,0.034932025,0.003644329,-0.023109563,-0.013461989,0.0017761573,0.009424509,-0.01650683,0.00695406,0.006831374,0.019484753,0.009279516,-0.0014248295,0.018938242,0.006814644,0.05134963,-0.0013983404,-0.008376101,0.010595601,-0.01122576,0.04062019,0.003970562,0.02286419,0.008298028,-0.00008260386,0.015279972,-0.03064917,-0.029243859,0.022429215,-0.02036586,-0.018190974,0.006396397,0.001164819,-0.023778759,-0.003794898,-0.010506375,0.0006538601,-0.038389534,-0.00083370646,0.028953873,-0.014722308,0.03946025,-0.014164645,0.003976139,0.017912142,-0.02737011,0.02948923,0.0031173374,0.0345082,-0.002010376,0.03609196,-0.01175554,0.03649348,-0.015179592,-0.016741049,-0.03058225,-0.023957212,-0.029712295,0.030470718,-0.016841428,0.00022759629,-0.02641093,0.015335738,-0.031519122,0.011175571,0.011342869,-0.023578,-0.05505251,0.010640214,0.0152688185,-0.029533843,-0.04124477,-0.012770487,0.02743703,-0.037095755,-0.006836951,-0.004653699,0.007277505,0.033192113,0.0017803397,-0.00481821,-0.009976595,-0.027057819,-0.06616116,0.0051918444,0.03116222,0.0017691865,-0.010969236,-0.006530236,-0.023689533,0.00801362,0.03796571,0.0020326823,0.039237183,-0.042248566,-0.010450608,0.016852582,-0.00019431078,-0.017822916,0.027615482,-0.005071947,-0.010272156,-0.02685706,-0.016685283,0.01602724,0.035311233,0.008114,0.028351597,0.011956299,-0.02293111,0.017990215,0.018603645,-0.0028719655,-0.0025833747,0.016830275,0.030091507,-0.009597383,-0.0062625576,0.011777847,-0.012603188,-0.020923523,-0.04465767,-0.0055264425,0.012513963,0.027035512,-0.01773369,-0.011933993,0.028150838,0.044412296,0.0019615802,-0.008069387,-0.011354023,-0.029266166,0.032924436,-0.015815329,-0.06174447,-0.02228422,0.026433235,0.029065406,-0.0026042871,0.010606755,-0.008956071,-0.02716935,0.020990442,0.020878911,0.0145438565,-0.0055487487,0.077269815,-0.03604735,-0.016718743,0.015369198,0.017878681,-0.015246512,-0.0078574745,-0.0011020818,-0.0022613243,-0.016596057,-0.014744615,-0.019016314,0.0039371024,0.014610776,-0.012614341,0.07022095,0.0017817339,0.02429181,0.028440824,-0.01018293,0.0055487487,0.032411385,0.0341736,-0.0091122165,-0.02409105,-0.009742376,-0.05197421,-0.014755769,-0.047557518,0.0014415594,0.0035104898,-0.0015628511,0.023421854,-0.009469121,-0.022886498,0.021101976,0.011287103,-0.0043358314,0.023756452,-0.022295374,0.036538094,-0.006775608,0.05897846,0.00229339,-0.013439683,0.046843708,0.045148414,0.022998031,0.012558576,0.056524742,-0.011476709,-0.03502125,0.0038255695,-0.013629288,0.046442192,-0.010656944,-0.042003192,0.0009591807,-0.032991353,0.0040793065,0.026700914,-0.010110434,-0.023377242,0.0150346,0.008426291,0.053446442,-0.003677789,-0.025987105,0.028440824,0.00017235278,-0.010478492,0.012000912,-0.00046007213,0.026321704,0.00803035,0.024916392,-0.023533387,-0.0105844475,-0.020443933,0.012993553,0.029801521,-0.012870867,-0.012748181,-0.0008476481,0.009446815,0.020042416,0.029667683,-0.006546966,-0.059915334,-0.024514874,-0.03830031,-0.0076344092,-0.005030122,0.023533387,0.023377242,-0.024113357,0.019875117,0.023622613,0.011069614,-0.0013014465,0.0036025043,0.014655389,0.0055877855,0.07089014,-0.03816647,0.008504364,-0.0066138855,0.03988407,0.026366316,-0.010428302,-0.0050245454,0.04010714,0.0135289095,-0.027526256,0.009435661,0.027481643,-0.014956527,0.028775422,-0.01071271,-0.025786346,0.013584675,0.05576632,0.038590293,-0.023578,0.044278458,0.01657375,-0.00809727,0.020990442,0.025005618,-0.02859697,-0.022228455,0.007790555,0.013997346,-0.016016087,0.01236897,0.02265228,0.029199244,-0.013149698,-0.007829592,0.006993097,0.008130729,-0.005172326,-0.023154177,-0.0020968136,0.020655844,-0.007338848,-0.0034352054,0.017967908,-0.014421171,-0.016752202,0.0017887048,0.014945374,0.02525099,-0.020488545,0.038969506,-0.032812905,-0.04974356,-0.039036423,-0.028463129,0.0037614384,-0.01243589,-0.030894542,-0.022998031,0.05036814,0.0008727429,0.0246041,0.008905881,0.014766921,0.028663889,-0.0013390888,0.0112369135,0.010238697,0.029377697,0.027927773,0.0120566785,-0.00746711,-0.013952733,0.0062960177,-0.030381491,-0.009374319,-0.009480274,-0.013261231,-0.016696436,0.010550988,0.036404252,-0.026366316,0.036337335,0.006580426,0.02091237,0.01506806,-0.005417698,0.0321214,0.0035718328,-0.027972387,-0.005367508,-0.016361838,0.03609196,-0.017979061,-0.01243589,0.002690725,-0.007623256,-0.025652507,0.0019810984,-0.004235452,0.008035927,-0.05719394,0.035712752,-0.0014304061,0.007718059,-0.013116239,-0.0216931,-0.0050496403,0.009708917,-0.00349376,-0.028373905,-0.027057819,0.04360926,-0.030916847,0.013986194,0.030604556,-0.05442793,-0.0015042964,-0.017990215,0.012569728,-0.0066194623,-0.013350457,-0.01616108,-0.009798142,-0.006591579,-0.025496362,-0.012870867,0.0058721937,-0.011041732,0.020455087,-0.018023675,-0.02569712,-0.013027012,0.0021916165,0.0054372163,0.0031033957,0.032745983,0.0269909,-0.006156602,0.001041436,-0.024381036,-0.012101292,-0.01387466,-0.015090366,-0.04318544,0.0015238147,0.022696892,-0.015603417,0.0049158013,-0.009491428,0.03662732,-0.006892717,0.044033088,0.0032483882,0.0033766506,0.015123826,0.0038701827,0.024202583,-0.024113357,0.0055543254,0.030314572,-0.018603645,-0.012748181,-0.0141088795,-0.029221551,-0.0012979611,0.017432552,0.009000684,0.011655161,0.009965441,-0.032812905,0.03638195,0.0074782637,0.012658955,-0.021458881,-0.017967908,-0.0050524287,-0.0129266335,-0.01722064,-0.0011683044,-0.038322616,0.020477394,-0.014320791,-0.0045951447,-0.00404027,-0.011878226,-0.0060673757,0.0014513185,0.01654029,-0.0056073037,0.005205786,0.013930427,-0.01892709,-0.022886498,0.049565107,0.010718287,-0.011666314,0.03468665,0.029310778,-0.00458678,-0.007043286,0.014867301,0.01654029,-0.005021757,0.011443249,0.0071938555,-0.0013000524,0.03185372,-0.017365633,0.01892709,-0.049966622,-0.0069094473,0.02839621,-0.008521094,0.018659411,-0.054561768,0.024470262,-0.025228683,0.00864378,0.030537637,0.03122914,-0.004182474,-0.033125196,-0.0070990524,-0.006212368,-0.02091237,-0.016183386,-0.014989987,0.0026084697,0.0032679064,0.0020396532,-0.008866845,-0.017321019,0.018492112,0.004218722,-0.029913055,0.00509983,0.0148338415,-0.016306072,-0.022228455,0.027838547,-0.022150382,-0.008666086,0.04247163,0.012123598,0.015246512,-0.03330365,0.004129496,0.0006434039,-0.041356303,-0.017109107,-0.010361383,0.01927284,0.0041768975,0.0015377563,0.007545183,0.009446815,0.024470262,-0.0070209797,0.02897618,-0.0028663888,-0.013372764,0.015346891,-0.023823371,-0.009753529,-0.021938471,0.01975243,0.016852582,0.027905466,0.030805316,-0.008755312,-0.01715372,0.01654029,0.00009271151,-0.01927284,-0.031429898,0.0287085,-0.022953417,0.012090138,-0.0070990524,-0.031251445,-0.007589796,0.016317226,0.015971474,0.040687107,-0.03544507,0.0042382404,-0.009625267,0.01243589,-0.018358273,0.016339531,-0.0017454858,-0.05460638,-0.012145905,0.010478492,-0.0063573606,0.03185372,0.015904555,-0.021960776,0.0046983124,0.0051388666,-0.0066473456,-0.00009985657,0.01243589,-0.0126366485,-0.024559487,0.024001824,0.013250078,-0.017443705,0.011644008,0.02364492,-0.052152663,0.0059446897,-0.027124738,-0.040597882,-0.04438999,0.00816419,-0.05010046,0.016997574,-0.055721708,-0.011314986,-0.018670565,0.01889363,0.003016958,-0.016819121,-0.010121587,0.03526662]},{"id":"guide-reactions-1","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Remove Reactions\nRemove the bot's reaction with removeReaction(emoji). Remove a specific user's reaction with removeReaction(emoji, userId). Clear all reactions with removeAllReactions() or removeReactionEmoji(emoji).\n\n```javascript\n// Remove the bot's reaction\nawait message.removeReaction('👍');\n\n// Remove a specific user's reaction (requires moderator permissions)\nawait message.removeReaction('👍', userId);\n\n// Remove all reactions of one emoji from the message\nawait message.removeReactionEmoji('👍');\n\n// Remove all reactions from the message\nawait message.removeAllReactions();\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.012536085,-0.0022413451,-0.032225464,0.018928895,-0.03151251,-0.002936474,-0.02609407,0.008929732,-0.00001780061,0.031346153,0.002259169,-0.048718434,0.007480062,-0.016350383,0.022778839,0.0036538825,0.030989679,0.012239021,-0.02754374,0.06516388,0.010379403,0.026997143,-0.0043579233,0.043585174,0.0013315877,0.00756324,0.009541684,0.04006794,-0.041565143,-0.03374643,-0.004001447,-0.011098297,0.028066572,-0.010135811,-0.0063393377,-0.029136,-0.017122747,0.016314734,-0.011401302,0.05746399,-0.018750656,-0.032629468,-0.0009996191,0.009915984,-0.04080466,0.04006794,-0.079708114,0.02740115,0.010836882,0.008650493,-0.012078607,0.03726366,0.019867616,0.05831953,-0.02427604,-0.02507217,-0.009357505,0.008680199,-0.016623681,0.05019187,-0.009446624,-0.0031726395,-0.0010746276,-0.023087785,-0.040685836,-0.012215257,-0.014187759,0.0045599267,0.009737746,0.0038202382,0.014092699,-0.007367178,0.008573256,-0.020556804,0.0067433445,-0.016041435,0.029326122,0.011573599,-0.017847583,-0.0441793,0.021400465,0.023087785,-0.02180447,0.01012987,-0.029136,0.014045169,-0.019665612,-0.030989679,0.017146513,-0.007301824,0.003324142,0.004782724,-0.074622385,-0.0059085954,0.009428799,-0.04636569,-0.0125717325,0.0331523,0.012452907,0.051760368,0.035861522,-0.09206596,-0.06345279,0.018833835,0.008888144,0.00022428304,-0.02637925,0.055135008,-0.02885082,0.0027552652,-0.014556117,-0.014068933,0.01377187,0.0035914993,0.008097954,-0.019130897,0.02208965,-0.016184026,-0.023705678,-0.063833036,-0.03355631,-0.019214075,0.07761679,-0.049573977,-0.0076701827,-0.022968959,0.011223064,-0.03983029,-0.017098982,0.011312183,0.028137866,-0.011662718,0.015886962,-0.06544906,-0.017562402,0.0042004795,0.043656472,0.0006438854,-0.0010471493,0.054517116,0.052473318,-0.007735537,-0.031298622,0.02156682,-0.057796698,-0.046009216,-0.049241267,-0.026165364,-0.028969646,-0.0105457585,-0.016932627,0.0014600677,-0.011621129,0.007913775,0.00011177019,-0.027139733,-0.009927866,0.010058574,0.0028636933,-0.041660205,-0.016908862,-0.07001196,-0.00042554364,-0.057368927,-0.011211181,0.0061551584,-0.0011206726,0.013070799,-0.017586166,0.0066066952,0.065496586,-0.024359217,-0.010771527,-0.025595002,-0.06530647,0.0018655596,-0.038974747,0.021875765,-0.026212895,0.028613169,0.03286712,-0.0009595155,-0.05461218,-0.028446812,-0.017384164,-0.043395054,0.0074384734,0.0016234528,-0.04453578,-0.0134629235,0.03707354,0.020081501,0.013498572,-0.020509273,0.042444453,-0.07091503,0.047957953,-0.03495845,-0.02633172,-0.03847568,0.013367863,0.058984954,0.056085613,0.007491945,-0.015993906,-0.048171837,-0.02390768,-0.023634382,0.035267394,0.008103896,0.022481775,-0.03184522,0.03828556,0.0031072856,-0.041945383,-0.008086072,-0.057796698,0.03747755,-0.046151806,0.040234298,-0.07357672,-0.0055253836,0.11835015,-0.010712114,-0.0026483221,0.015958259,0.04196915,0.0013768899,-0.02987272,0.015114597,-0.02545241,0.012191491,0.0025829682,-0.016029553,0.03973523,-0.043276228,0.04486849,0.00081692496,-0.008335605,-0.0321304,0.026521841,-0.01919031,0.023860151,0.009096088,0.0021759912,0.016599916,0.017942643,0.0053263507,0.003235023,0.004503485,0.056133144,0.020913279,0.04135126,-0.036265526,0.009464447,-0.027424915,0.01064676,0.03286712,-0.017930761,0.015898846,-0.0015803785,-0.003942034,0.009773393,0.008793083,-0.024097802,0.0038024145,0.013047035,0.025214761,-0.0047916365,-0.000005149296,0.0019086339,-0.02492958,0.020390447,-0.009696157,-0.036859654,0.037525076,0.045177437,0.022481775,-0.038594507,-0.004646075,0.026711961,0.0035231747,0.023277907,-0.012149902,-0.0050916704,0.018679362,-0.043157402,-0.023182845,-0.008989145,0.023919564,0.00052505994,-0.01667121,-0.0051807896,-0.03296218,-0.030538142,0.042183034,0.037929084,-0.00929215,0.019463608,0.03790532,-0.03336619,0.015055184,-0.000029335033,-0.060838632,0.032225464,0.036241762,-0.006612636,-0.020224093,0.0422068,-0.005258026,0.009939749,-0.016005788,-0.013153978,0.006074951,-0.020247856,-0.0125242025,0.00083623413,0.031583805,0.021863883,-0.0048064897,0.037097305,-0.027615035,0.015304718,-0.038333092,-0.048219368,-0.038356856,0.016041435,-0.030276725,0.07619088,0.044797197,0.050999884,0.004262863,0.015411661,0.034697033,0.018322885,0.019772556,-0.009167383,0.035600103,-0.012203374,0.024596868,0.036265526,0.012726205,-0.010605171,-0.048148073,-0.01563743,0.0026720874,-0.015376014,-0.018192176,-0.018275354,-0.010058574,-0.011234947,0.017431693,-0.033128537,-0.076666184,0.06483117,0.007295883,-0.014092699,0.01993891,0.034293026,0.022564953,0.0017437635,-0.016231557,0.007390943,0.0054273526,0.059792966,0.035861522,-0.03229676,-0.02483452,0.067778036,-0.040186767,-0.017396046,-0.039378755,0.026355485,-0.0193329,-0.04234939,0.007836538,-0.016326617,0.03151251,-0.0019309135,0.046484515,0.0032439348,-0.019950794,-0.017704992,-0.027092203,0.015423544,-0.02507217,-0.010771527,-0.030110369,0.015423544,0.052235667,0.08137167,-0.022339186,0.00424801,0.018465474,0.025761358,0.03412667,-0.011021061,0.062169477,-0.0001227244,0.012856914,0.012476672,0.023099668,0.0053887344,0.0020853868,0.003650912,0.028636934,-0.021578701,0.017146513,-0.0012981681,0.008799025,0.067540385,0.048338193,0.0009914498,0.017954526,0.010432875,-0.06055345,0.067160144,0.015447308,0.02100834,-0.003030049,-0.062264536,-0.012714324,0.008056366,-0.07314895,-0.010337815,0.045248732,0.024430513,-0.0045926035,0.039188635,-0.044488247,-0.08037353,-0.016552385,-0.0012714324,-0.05337639,0.009838748,-0.021935178,0.02086575,0.044654604,-0.041850325,-0.02526229,-0.029991545,0.007153292,0.028137866,0.03372266,-0.024074037,0.004001447,-0.040424418,-0.026450545,0.016801918,0.014817534,-0.028066572,-0.010682408,0.023574969,-0.0013301024,-0.04127996,-0.048029248,0.026783256,-0.000552167,0.05090482,0.008864379,0.040020414,0.018263472,0.035314925,0.042325627,-0.005840271,-0.0005644209,-0.04196915,-0.013522336,0.007979129,-0.007973188,0.0033865254,0.012536085,0.029421182,-0.024311688,-0.0054362644,-0.06925147,0.02894588,-0.037715197,0.021685645,0.019665612,0.041018546,0.034697033,-0.00789001,-0.0462231,-0.022802604,0.03925993,0.0052550556,-0.041826557,-0.001202365,0.030870853,0.025309822,0.027163498,-0.009001028,-0.0106942905,0.027947746,-0.037192367,0.032795824,-0.034245495,0.024382982,-0.024644399,0.024668165,-0.009636744,-0.032059107,0.017158395,-0.0497641,0.008163309,0.04013924,-0.006333397,0.022850133,0.039568875,-0.026902081,-0.021780705,-0.033817723,-0.02782892,0.004785695,0.006077922,-0.026426781,-0.018025821,-0.01727722,-0.034388084,0.022909546,0.016908862,0.01597014,-0.0075751226,0.0007367178,-0.0057778875,0.029563772,-0.024359217,-0.018025821,0.0351961,0.020010207,0.0024314658,0.019618083,0.01255985,0.010527935,-0.012880679,-0.055135008,0.008430665,-0.02063998,-0.044559546,0.010314049,-0.0040460066,0.024668165,-0.03310477,-0.013106448,-0.0057303575,0.0009364931,0.054707237,-0.011175534,0.0077949497,0.0074265907,-0.0009075294,0.008947557,-0.013308451,-0.01241726,-0.0005365712,-0.03638435,-0.037762728,0.046341926,-0.009910042,0.009250562,-0.02166188,0.00844849,-0.0061313934,-0.029349886,-0.0077474196,0.041232433,0.015102715,-0.016659329,0.0144016445,0.013795635,0.007284,-0.030110369,-0.023824504,0.0034340555,0.04047195,-0.02025974,0.014235289,-0.030633202,-0.038356856,-0.0111874165,-0.018691244,0.013688692,-0.024240391,-0.016599916,-0.0031013442,-0.043014813,-0.020271622,-0.05266344,-0.0036004111,0.012975739,-0.008198956,0.033912785,0.031203564,0.00086222717,0.01703957,-0.0026408955,0.002866664,-0.017621815,-0.0018076322,0.026260424,-0.030371785,-0.035124805,0.01848924,0.0043965415,0.014556117,0.0052669384,-0.050429523,-0.037144836,0.02170941,-0.0006312602,0.013320333,-0.011840956,-0.0109913545,-0.013415393,-0.0062205126,0.017098982,-0.0007419164,0.008959439,0.009405035,-0.023040256,0.023551205,-0.0030775792,-0.021638114,0.0055105304,0.018263472,0.020093383,0.0038647978,0.042705867,-0.0040935366,-0.019154662,0.00532041,-0.0042361272,-0.0392124,0.01909525,-0.035101037,0.010801233,-0.010438816,-0.006380927,-0.01073588,0.029848954,-0.022279773,0.039283693,-0.012666794,-0.018132763,0.023586852,-0.022612484,-0.02782892,-0.0021507407,-0.013391628,-0.016445443,0.0056412383,-0.01834665,-0.04080466,-0.0037548842,-0.0018685302,0.016623681,0.03146498,-0.021578701,-0.005662033,0.006992878,0.025595002,0.002330464,0.0040073884,-0.01031999,-0.018358532,-0.038356856,-0.025048405,-0.0019353696,0.015613664,-0.027519975,-0.0024968197,0.027234793,0.016647445,0.01638603,-0.0019071485,-0.011371596,-0.018679362,-0.0042747455,-0.015150245,0.02330167,-0.034340557,-0.02012903,0.0063393377,0.0014786342,-0.017764404,0.019178428,0.018073352,-0.003650912,-0.016397912,-0.010539818,-0.03785779,-0.010872529,-0.014698708,0.01727722,0.01686133,0.009987279,0.048670907,0.035101037,-0.05503995,-0.0063512204,0.0058046235,-0.021483641,-0.011674601,0.032011576,-0.008282134,0.044416953,-0.0006093518,0.025808888,-0.019784437,-0.028565638,0.03548128,-0.015993906,0.0032290816,-0.010112046,-0.021424228,0.017514871,-0.007390943,0.043014813,-0.03538622,0.005463,0.029825188,-0.026521841,0.010397227,-0.017146513,0.0017541607,0.022980843,0.05518254,-0.027757626,0.04104231,-0.035362456,0.0276388,-0.0022725367,0.02025974,-0.022030238,0.003445938,-0.0004801291,0.011151768,-0.016647445,-0.037952848,-0.028898349,-0.0010137296,0.00695723,-0.049146205,-0.0507147,0.0005633069,-0.0050441404,-0.0039836233,-0.021032104,0.027900215,-0.025381116,0.008050424,-0.043704,0.03823803,-0.0026587194,-0.013094565,-0.00844849,-0.024691928,-0.04318117,0.024525573,-0.011056708,0.03800038,0.0011615187,0.014900711,-0.00006437926,0.020901397,-0.00565015,0.019594317,-0.012845031,-0.0072780587,-0.007628594,0.012749971,0.013237155,-0.00020942985,0.012357847,0.011555775,0.004182656,-0.0072245873,-0.028969646,-0.007955364,-0.026997143,0.027852686,-0.002017062,-0.019356666,-0.01839418,-0.0005317439,-0.010985413,0.0032706705,-0.00480946,-0.021543054,0.023408614,-0.04477343,0.04272963,-0.012773736,-0.012286551,0.031179799,0.012203374,-0.06430834,0.029706363,0.022208476,-0.0552776,-0.025856419,0.0063155727,-0.023586852,0.056513384,0.030752027,-0.031227328,0.011490421,-0.031108502,0.01008234,-0.04686476,0.032368053,-0.029944014,0.025404882,-0.029611303,-0.01512648,-0.024549339,-0.011918193,-0.017443577,-0.03790532,0.011644894,0.023836385,0.03790532,0.015257188,0.021436112,0.000042749314,0.0213767,0.000033605324,0.032177933,-0.027258558,0.009060441,-0.028874585,0.01377187,0.024002742,0.0077652433,-0.00826431,-0.02782892,0.03044308,-0.024299804,0.01461553,-0.02749621,-0.0020601363,-0.03514857,0.015851315,-0.0011585482,0.0005150341,-0.0035172333,0.017538637,0.015269071,0.0035142626,-0.0080326,0.005635297,-0.028874585,-0.0018076322,0.020901397,-0.03455444,-0.010147694,0.024074037,-0.0014117949,0.025832653,-0.030110369,0.0321304,-0.010141753,-0.064118214,0.0062918076,-0.011496362,0.006027421,-0.035909053,-0.027971512,-0.0046668695,0.028399283,0.0005451118,0.016302852,0.029635068,0.026925847,0.002385421,-0.024905814,-0.015280953,-0.0030270785,0.0029245913,0.0060452446,0.027615035,0.01078341,-0.03232052,-0.005210496,0.012108314,0.021745058,0.02507217,-0.02647431,0.001341985,-0.008977263,-0.009957572,-0.0048510493,-0.016885096,-0.004836196,0.046199337,-0.013403511,-0.006778992,-0.0046312218,-0.037049774,-0.019891381,-0.03552881,-0.016172145,0.011603305,0.027163498,0.00746818,0.00947633,0.0067017553,-0.02236295,-0.029183531,-0.011936016,-0.021305403,0.028827054,0.0003410662,0.03885592,0.0147462385,-0.0017170277,-0.02231542,0.010106104,0.003300377,0.008692082,0.009256503,0.022564953,-0.021911412,0.058747303,0.035647634,0.01965373,0.009090147,-0.019772556,-0.0076345354,-0.0129163265,-0.012892561,0.0027300147,0.032415584,0.0077711847,-0.011330007,0.034483146,0.00010935655,-0.0008614845,-0.014591766,0.0059590964,-0.044108007,0.0036954714,0.0091139125,0.026521841,-0.017312868,-0.054089345,0.028779523,0.013308451,0.026997143,0.020283505,0.022517422,0.03925993,0.016599916,-0.028042806,-0.008983204,0.028636934,0.01568496,-0.001036752,0.022018356,-0.02245801,-0.021721292,-0.0050589936,-0.018667478,-0.015708724,-0.0014927448,0.0020972693,0.018085234,-0.008585139,0.006273984,0.010325932,0.029896483,0.0009840233,0.011466656,-0.0044737784,-0.0023824503,0.0044143656,0.020045854,0.027852686,0.0008599992,-0.009001028,0.0038202382,0.0030835206,0.02330167,-0.01863183,-0.043062344,0.021043988,0.0056917393,-0.00723647,-0.00010935655,0.023551205,-0.015851315,-0.008698023,-0.027377384,-0.00026995657,-0.04420307,-0.0122746695,0.048765965,0.009387211,0.03659824,-0.004212362,0.030918382,0.019736908,-0.018679362,0.048100542,-0.010676467,0.04444072,-0.028209163,0.029587537,0.0012929694,0.022802604,-0.0016145408,0.008864379,-0.010700232,-0.031488746,-0.018358532,0.015708724,-0.03925993,0.0013761473,-0.004004418,0.035837755,-0.0482669,0.009838748,0.011537951,-0.020473626,-0.02516723,-0.009797159,0.006844346,-0.021602467,-0.03355631,-0.00723647,0.033889018,-0.029017175,0.017015805,0.021982709,0.0056293556,0.008727729,0.025381116,-0.011799367,-0.0371686,-0.013130212,-0.0447259,-0.0012989107,0.031417448,-0.0020556804,0.02077069,-0.031132268,-0.026616901,0.0015358189,0.010866588,0.000051754054,0.020461742,-0.047268763,0.012797501,0.012583615,0.023194728,-0.02367003,-0.008359371,-0.014282819,-0.027187264,-0.023194728,-0.00625616,0.023551205,0.006713638,0.024573103,0.019071486,-0.02759127,0.0075513576,0.033461247,-0.0056323265,-0.01578002,-0.00863861,0.0038945042,-0.001461553,-0.011365655,-0.018417945,-0.003650912,0.0027136763,-0.013118329,-0.047245,0.016611798,-0.0072661764,-0.01750299,0.023325436,-0.017966408,0.029278591,0.017574284,0.007587005,0.013795635,-0.01614838,-0.028708229,0.025595002,-0.0029795482,-0.028066572,-0.04995422,0.012892561,0.0009595155,-0.04085219,-0.008644552,-0.007996953,-0.020889515,0.012963857,0.0178357,0.030110369,0.00064945535,0.05556278,-0.010420992,0.0061551584,0.015185893,0.052853562,-0.020877631,-0.011472598,-0.023075903,-0.010890353,-0.031179799,-0.0033687016,0.0021878737,-0.014223406,-0.0012692043,0.0092624435,0.072863765,0.010682408,-0.017954526,0.04051948,-0.03020543,-0.02792398,0.02067563,0.00075974024,-0.029159766,-0.026141599,-0.02156682,-0.027947746,-0.006891876,-0.05014434,-0.017158395,0.0044975434,-0.015019537,-0.012143961,-0.010652701,-0.02063998,0.011240887,0.033413716,0.017930761,0.016932627,-0.05004928,0.0076167113,0.014259054,0.059792966,-0.018370414,-0.012690558,0.0427534,0.017348517,0.011466656,0.0038737098,0.05256838,-0.012880679,-0.01834665,-0.008709906,-0.024549339,0.046936054,-0.0103496965,-0.034340557,0.015162128,-0.033461247,0.03954511,0.02279072,-0.007480062,-0.033176064,0.045034844,-0.0010894808,0.031773925,0.0015447309,-0.02273131,0.04565274,0.012250904,0.019297253,0.019356666,0.0038677684,-0.00083177816,-0.013130212,-0.018988308,-0.036479414,0.0005982119,0.026260424,-0.0021091518,-0.0048540197,-0.030514376,0.010308108,0.0019695319,0.008614846,0.024715694,0.032629468,0.024026506,-0.053804163,-0.027995277,-0.042373154,0.0021462848,-0.010807175,0.03552881,0.0211034,-0.018845716,0.0030047987,0.024050271,-0.007194881,-0.022778839,0.002306699,-0.008953498,-0.0027938834,0.07600076,-0.027139733,0.01750299,0.00017823817,0.0024567163,-0.0026141598,-0.0056204437,0.010569524,0.039378755,-0.0064819283,0.002306699,0.0029186502,0.01900019,-0.020200327,0.021412347,-0.020295387,-0.018263472,0.026403015,0.023289789,0.029658834,-0.019629965,0.045771565,-0.016279086,0.016112732,0.0251197,0.018275354,-0.02885082,-0.0028354723,-0.0147937685,-0.0030404462,-0.009298092,0.011276536,-0.0047411355,0.027448678,-0.009428799,-0.019582434,-0.0058194767,0.004868873,-0.02273131,-0.008923791,0.0077295955,0.02413345,-0.016944509,-0.02180447,0.0052283197,-0.03495845,0.009131736,0.016005788,0.01616026,0.039854057,-0.02279072,0.020628098,0.0058878013,-0.06240713,-0.025048405,-0.01391446,-0.013831283,-0.028922115,-0.019285372,0.0028235898,0.03160757,0.0060571274,0.009731804,0.0113003,0.0039479756,0.030989679,-0.005252085,0.0102486955,-0.0049282857,0.023800738,0.050809763,0.039663937,0.00033029763,-0.024953345,0.009791217,-0.04075713,-0.0039895647,-0.017966408,-0.015720608,-0.05090482,0.0074860035,0.044274364,-0.015423544,0.016112732,0.0114369495,0.007991011,-0.0015477015,0.008359371,-0.0035885286,0.0012647484,-0.016255321,-0.016029553,-0.001522451,0.018893247,-0.025951479,-0.0048005483,0.00023468026,-0.0019828996,-0.017895114,-0.014972007,-0.011674601,-0.012892561,-0.026759492,0.044892255,-0.006493811,-0.0058373003,-0.0039984765,-0.009630803,0.02502464,-0.016136495,0.009696157,-0.0226006,0.0013226758,0.043038577,-0.018465474,0.026070304,0.013486689,-0.04608051,-0.009428799,-0.018501123,0.019119015,-0.0050322576,-0.014698708,-0.002165594,-0.006470046,0.00071072474,-0.026902081,-0.00085034466,0.008193015,-0.015209658,0.005962067,-0.0077711847,-0.013997639,0.02801904,-0.0073374715,0.03911734,0.010314049,0.015839433,0.025095936,-0.0063987505,-0.0019546787,-0.028684463,-0.033698898,-0.054469585,-0.03766767,-0.028209163,-0.017930761,0.0153403655,-0.004040065,0.0015432455,-0.0050352286,0.04132749,0.007081997,0.037501313,0.01008234,0.0046104277,0.0086207865,-0.02633172,0.02507217,-0.03828556,0.013890695,0.008038542,-0.02749621,-0.009405035,-0.014734356,-0.038546976,0.00097288337,0.037382487,-0.008044483,0.013641162,0.0065710475,-0.046199337,-0.00863861,0.030775791,0.004955021,-0.026521841,-0.028090337,-0.018893247,0.012019195,0.02497711,-0.01648109,-0.028731994,0.0236225,-0.011264653,0.0055491487,-0.000032050382,-0.0048243133,0.004865902,0.0011845413,0.016504856,-0.003324142,0.009393152,0.0027478386,0.0032171991,-0.017752523,0.020057736,-0.015364131,0.007040408,0.036099173,0.014876947,-0.01657615,0.007652359,-0.019831968,0.015482957,0.007028525,0.0004021499,0.008347488,-0.013367863,0.032368053,-0.020414213,-0.005454088,-0.061884295,0.005774917,0.03039555,-0.01778817,0.021887649,-0.020247856,0.025404882,-0.027258558,0.00035926132,0.019083368,0.021911412,-0.012845031,-0.024252275,0.00606901,-0.034340557,-0.012536085,-0.0009810526,0.007604829,0.016207792,0.012155844,-0.017669344,0.007319648,-0.002311155,0.02003397,0.009131736,-0.05237826,0.0023081843,0.014841299,0.00055513764,-0.037738964,0.027615035,-0.037929084,-0.013676809,0.008579197,0.000423687,0.020271622,-0.007991011,0.043086108,0.010747762,-0.030728262,-0.027234793,0.009179266,-0.0035736754,0.017360399,0.032700766,0.007783067,0.0068740523,-0.0009914498,0.020105267,0.04135126,-0.014128346,0.009422858,0.024192862,-0.026236659,-0.040448185,0.0025889096,0.0038737098,-0.00025417507,0.033485014,0.011912252,-0.0035499104,-0.002012606,-0.00043668353,0.027258558,-0.006333397,-0.034197964,0.003986594,-0.013094565,-0.039782763,0.0043579233,-0.007260235,-0.024810754,0.01246479,0.013189625,0.029991545,-0.0059175077,0.0010167003,-0.010955706,0.004360894,-0.014865064,0.007349354,-0.004271775,-0.018750656,0.00868614,0.023052137,-0.00789001,0.025238525,-0.0016709829,-0.03151251,0.013284685,0.007307765,-0.020224093,-0.0034667326,-0.0024492897,-0.013546102,-0.033413716,-0.0147937685,0.031916518,-0.02217283,-0.0044084243,0.030942148,-0.047649007,0.0060482156,-0.009345622,-0.030894617,-0.011009178,0.01316586,-0.036336824,0.032011576,-0.019867616,-0.016112732,-0.027852686,0.0331523,0.00490155,-0.018085234,0.0007604829,0.028090337]},{"id":"guide-reactions-2","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Listen for Reactions\nMessageReactionAdd and MessageReactionRemove emit (reaction, user, messageId, channelId, emoji, userId). Use client.on(Events.X, handler) or client.events.MessageReactionAdd(handler).\n\n```javascript\nclient.on(Events.MessageReactionAdd, async (reaction, user, messageId, channelId, emoji, userId) => {\n if (emoji.name === '👍') {\n console.log(`User ${userId} voted yes on message ${messageId}`);\n const message = await reaction.fetchMessage();\n if (message) await message.react('✅');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.015167912,-0.003873281,-0.024468988,0.028306497,-0.004917213,0.026927596,-0.025925942,0.0023008785,-0.012683288,0.021659153,0.011740171,-0.03496685,0.022439662,0.0052879555,-0.012845894,0.029269125,0.0063806693,0.0023203911,-0.0077140406,0.07066217,-0.0062766015,0.041861355,0.029607346,0.065562844,-0.0096197855,-0.003765961,-0.00654978,0.062909104,-0.044124834,-0.022868944,0.016885033,-0.013346721,0.023376275,0.0056359326,-0.014530495,-0.018576138,-0.00035529467,0.0075514344,-0.035955496,0.04206949,-0.047585092,-0.0116361035,0.013762993,0.023688478,-0.04925018,0.017925713,-0.07685422,-0.011135276,-0.012806868,0.032365147,-0.01153854,0.012110914,0.015480115,0.053959258,0.0070310943,-0.036137614,-0.023051063,0.00097319845,-0.016950076,0.025626745,-0.007863638,-0.032391164,0.0049562384,-0.007258743,-0.022348603,-0.028852854,-0.020371312,0.011512523,0.04285,0.002000057,0.03676202,-0.0025090144,0.007219718,-0.012208478,0.009314086,0.014790664,0.010250698,-0.019226564,-0.007948194,-0.035357103,0.017652534,0.019187538,-0.045139495,-0.032235064,-0.040898725,0.010771038,-0.027604038,-0.02125589,-0.016767956,0.00049472955,0.00042277627,0.020436354,-0.06759217,0.00055286125,0.021346949,-0.026693443,-0.027473953,0.034030236,-0.0068814964,0.029763449,0.04113288,-0.10016545,-0.03972796,-0.005408284,0.02246568,0.012280025,0.012611741,0.035201002,-0.023129113,-0.00086994347,-0.019356648,-0.022244535,-0.0063058706,0.031246418,0.018914359,-0.03114235,0.028150395,-0.037022192,-0.049510352,-0.03436846,-0.06264894,0.0007955511,0.04995264,-0.035096932,-0.00024147029,-0.050759166,0.010686483,-0.03834906,-0.021490043,0.029269125,0.020670507,-0.009164489,0.010998687,-0.03946779,-0.01994203,0.013398755,0.028124377,-0.0047481027,-0.044254918,0.03957186,0.05055103,-0.041757286,-0.010055571,0.011499514,-0.04165322,-0.037074227,-0.054791804,-0.004367604,-0.046388313,-0.05671706,-0.019447709,0.02168517,-0.052892562,0.017678551,0.021529067,-0.009997033,0.00014299188,-0.0056034117,-0.0053139725,-0.03356193,-0.0077400575,-0.060411476,0.011759684,-0.04381263,-0.025574712,0.013476807,-0.010367774,-0.002001683,-0.008182347,0.02323318,0.042980086,-0.022517715,-0.02471615,0.0013228019,-0.03285947,-0.014608546,-0.011174302,-0.018953385,-0.027395902,0.020306269,0.02411776,0.019109488,-0.063949786,-0.05333485,-0.013645917,-0.018172875,-0.015480115,0.017561475,-0.045659836,-0.047845263,0.004491185,0.03920762,0.018680206,0.0073693153,0.020956693,-0.064834364,0.03564329,-0.022075426,-0.027734123,-0.045243565,0.02177623,0.0076034684,0.028826836,-0.016117532,-0.009275061,-0.03478473,-0.037594564,-0.0011284874,0.043344323,-0.0134898145,0.03218303,-0.015376047,0.01977292,0.007122154,-0.063741654,-0.007232726,-0.051279508,0.000014621859,-0.034914814,0.0162216,-0.08299423,-0.0072782557,0.12748331,-0.026602384,-0.012221486,0.065979116,0.047897298,-0.0050603068,-0.013606891,-0.0017220002,-0.034212355,-0.024260852,0.0032944027,-0.044358987,0.039363723,-0.035305068,0.04631026,-0.013158098,-0.006390426,-0.012436126,0.027864208,-0.022530722,0.011434472,0.017587492,0.016533803,0.042980086,0.0072652474,0.016976092,0.026667425,0.021242881,0.038999483,0.015519141,0.050264847,-0.0057887826,0.017028127,-0.03486278,0.010016545,0.02802031,0.012416613,-0.010699491,0.000045199457,-0.02653734,-0.006579049,0.00867667,-0.04675255,0.0009423032,0.03736041,0.021281905,-0.01691105,-0.016898042,0.0026927595,-0.049822558,0.03155862,0.005278199,-0.008514063,0.021425,0.019876989,0.01812084,-0.008780737,0.013671934,-0.0070115817,0.0024504762,0.015245962,-0.008234381,-0.016013464,0.024143776,-0.04815747,-0.043656528,-0.008247389,0.02913904,-0.018719232,-0.024846235,-0.0048261536,-0.027864208,-0.0009463684,0.05697723,0.047402974,-0.036579903,0.0001944161,0.014465452,-0.008449021,-0.008052262,0.011063729,-0.036423802,0.039415754,0.0116361035,-0.0074278535,-0.026693443,0.024481997,-0.02176322,0.018315969,0.010263707,-0.012865406,-0.010504364,-0.037100244,0.009125463,-0.00030143134,0.03957186,-0.02316814,-0.027552003,0.043292288,0.0024537283,0.019720886,-0.028228445,-0.04641433,-0.057393502,0.038921434,-0.061972495,0.07305574,0.060151305,0.061139952,0.0006796941,0.022491697,0.053803157,0.047767214,0.0034797739,-0.026173102,0.017821645,-0.011070234,0.06332538,0.040872708,-0.026745476,-0.0026634904,-0.060827747,-0.013632908,-0.0069400347,0.0026033262,-0.007870142,-0.030283788,-0.01492075,-0.008995377,0.011824727,-0.036319733,-0.0806527,0.05796588,0.0059774057,-0.008507559,-0.025444627,0.032781422,0.007492896,-0.024586065,-0.009131967,0.008097791,0.010543389,0.05812198,0.02168517,-0.0480534,-0.0059774057,0.041861355,-0.029867517,0.002678125,-0.011421463,-0.0132231405,0.03096023,-0.050889254,0.015844353,-0.018550122,0.012689792,0.0072522387,0.04282398,0.00624408,0.012741826,0.0022293318,-0.028592683,-0.020709533,-0.015883379,-0.045477718,-0.040976774,-0.027812174,0.023272207,0.056248754,-0.04292805,-0.04745501,0.028124377,0.02072254,0.039649907,0.008884805,0.06639539,0.02237462,0.011167797,0.0013667055,0.017301306,0.013476807,0.020930678,-0.002369173,0.017743595,-0.054843836,0.011473497,0.00038659637,0.03538312,0.058954522,0.033900153,0.043838646,0.028956922,-0.0141142225,-0.021568093,0.008247389,0.019070461,0.025652763,0.012728818,-0.041601185,-0.033613965,0.019824954,-0.05195595,0.013554857,-0.0070115817,0.030205738,-0.018094825,0.070610136,-0.045998055,-0.10110206,-0.035877444,0.03200091,-0.0096197855,0.034836765,-0.048781876,0.04761111,0.014868716,-0.018667199,0.003330176,-0.021568093,0.0065920576,0.013815028,0.03337981,-0.026003992,0.018107831,-0.048937976,-0.026615392,-0.008702687,0.013067039,-0.02342831,0.0070571112,0.006322131,0.010647457,-0.031090315,-0.043838646,0.0117076505,0.014842698,0.04196542,0.003094397,-0.0030017113,0.022075426,0.010042562,0.04110686,-0.014712614,-0.012325554,-0.04573789,-0.021177838,0.013502823,-0.03816694,0.0050082724,0.0070571112,0.017405374,-0.014998801,-0.012201973,-0.078779474,0.07763473,-0.02679751,0.015818337,0.019291606,0.024924286,0.053699087,-0.0071611796,-0.033093624,-0.016833,0.06410589,0.0030895188,-0.036840074,-0.009288069,0.028774802,0.003453757,0.019629827,0.022621782,-0.014452443,0.03210498,-0.02099572,0.027473953,-0.023545386,0.04285,-0.032937523,-0.017717578,0.007408341,-0.054843836,0.023896614,-0.0090148905,0.020267243,0.009483197,0.007206709,0.01179871,0.03442049,-0.019577794,-0.020241227,-0.021672161,-0.030023618,-0.008396987,-0.014582529,-0.0325993,-0.018263934,-0.01718423,-0.029295143,-0.006624579,0.020436354,0.044723224,0.011070234,-0.014933758,-0.0105303805,0.01421829,-0.0072262217,-0.015050835,-0.0048098927,0.0013089803,-0.00066709216,0.039910078,0.004969247,-0.0050830715,-0.0028992696,-0.074668795,-0.013541848,0.009463684,-0.04631026,0.008923831,0.0011097877,-0.0027708106,-0.03928567,-0.0017886688,0.018628173,0.005408284,0.04321424,-0.012468647,-0.0077270493,0.0029838248,-0.032937523,0.00083498313,-0.00789616,0.0001732773,0.006367661,-0.015818337,-0.026134077,0.00026342212,-0.017054144,0.020111142,-0.028514633,0.020488387,-0.01743139,-0.037776686,-0.036007527,0.034576595,0.0084165,-0.036137614,0.017808637,0.015649226,-0.009203514,-0.014374393,-0.02176322,-0.00036749014,0.012377588,-0.016663888,0.013880069,-0.014244308,-0.051747814,-0.012969474,-0.015128885,0.021828264,0.01718423,-0.003587094,-0.0115645565,-0.02497632,-0.037854735,-0.021867288,0.008364466,0.01934364,-0.022712842,0.016325668,0.052086037,-0.0050245333,0.024924286,-0.0018195639,0.014972784,-0.009710846,0.006344896,0.025223482,-0.0029610598,-0.03442049,-0.0006321318,-0.0026586123,0.04519153,-0.0019122495,-0.048755858,-0.04519153,0.01890135,-0.008071775,-0.00053212896,-0.018953385,-0.027265817,-0.031688705,-0.0050407937,0.03775067,-0.00047928194,0.016780965,0.021112796,-0.048703823,0.024078734,-0.003821247,0.0010358018,0.0047741197,0.031064298,0.007902664,0.011122268,0.054271463,0.0020114393,0.006653848,0.01227352,-0.0010244194,-0.04069059,0.0036391278,-0.035513207,0.010862098,-0.022986019,-0.008787242,0.011115763,0.019746903,-0.025236491,0.044801276,0.0041757287,0.009379129,0.03410829,0.0032358645,-0.017886687,0.01201335,0.009294573,-0.03582541,-0.008286415,0.007512409,-0.02749997,-0.028124377,-0.024390938,-0.007824613,0.02906099,0.0034765217,-0.0039058023,-0.0063026184,0.004803389,-0.013411764,0.028956922,-0.02254373,0.00072197174,-0.031168366,0.015519141,0.012969474,0.021451017,-0.028462598,0.017639527,0.016611855,-0.024481997,0.029815482,-0.03512295,-0.011076738,-0.009535231,0.00019624543,-0.002627717,0.033327777,-0.011427968,-0.03618965,-0.019824954,-0.0037887257,-0.030648027,0.00993199,-0.019096479,0.007980715,0.017028127,-0.018094825,-0.029425228,-0.010777542,-0.020059107,0.033067606,-0.0025382836,0.040118214,0.0049822554,0.006637587,-0.046622466,-0.004806641,-0.017197236,-0.014972784,-0.034914814,0.020657498,-0.020540422,0.01934364,-0.0156102,0.04441102,-0.0054343008,-0.04987459,0.010302732,0.008331944,-0.0027952015,-0.03616363,-0.023142122,-0.01577931,-0.020267243,0.043838646,-0.020852625,-0.004650539,0.029243108,-0.020059107,0.0036618928,-0.012208478,0.023467334,-0.0037529522,0.029581329,-0.04100279,0.038244992,-0.035955496,0.024742167,0.0103157405,0.013723968,-0.020397328,0.026875561,-0.023441317,-0.008715695,-0.016416727,-0.016325668,-0.022829918,-0.0056619495,0.04027432,-0.020228218,-0.007486392,0.0090864375,-0.000651238,0.0062310714,-0.05023883,0.009574256,-0.03200091,0.010159639,-0.04961442,0.022608774,-0.0050375415,-0.024599073,-0.012787356,-0.036215663,-0.04084669,0.015909396,0.014985792,0.024729159,-0.007746562,0.02498933,-0.0056652017,0.00540178,-0.02731785,0.006364409,0.007596964,-0.01605249,-0.0063806693,-0.0065075024,0.0061952984,0.002471615,0.041861355,0.010920636,-0.022738859,0.012240998,-0.015128885,-0.024442973,-0.027604038,0.02359742,-0.021112796,-0.025977975,-0.013671934,-0.010946653,-0.023701487,-0.004546471,-0.01326867,-0.028228445,0.0054505616,-0.014790664,0.0099059725,-0.027291834,-0.005834312,0.032235064,-0.011727163,-0.088717975,0.015180919,0.04381263,-0.044567123,-0.025288524,0.009528726,-0.009275061,0.038895417,-0.007648998,-0.045009412,-0.0006300992,-0.035148967,0.009327095,-0.052788492,0.025600728,-0.00244885,0.03678804,-0.039233636,-0.005743253,-0.026160095,0.0045789923,-0.028306497,-0.058174014,0.028774802,0.009236035,0.032391164,0.0030114679,0.03215701,0.03025777,0.009092942,0.016976092,0.031636674,-0.019538768,0.0040423917,-0.02072254,0.028592683,0.023012036,0.009645803,-0.015467106,-0.040352367,0.05094129,-0.017561475,-0.008566097,-0.039597876,0.025574712,-0.024846235,-0.011414959,0.017808637,-0.004722086,0.020852625,0.014634563,0.011642608,-0.009164489,0.0043058135,0.01440041,0.006868488,0.0008764477,0.023844581,0.0035968502,-0.025340559,-0.008143322,0.0064782333,0.019629827,-0.03556524,0.027421918,-0.026524331,-0.026901579,-0.009866947,-0.003691162,0.013658925,-0.011844239,-0.0005008273,0.013437781,0.019889997,0.010484851,0.025717804,0.0072132135,0.023896614,0.0075254175,-0.03436846,0.009105951,0.0005089576,-0.0003233832,0.017665543,0.036007527,0.0038830373,-0.014699605,-0.011629599,0.013802019,0.011174302,0.03486278,-0.030023618,-0.01769156,0.008227876,-0.0043578474,-0.0110116955,-0.03668397,-0.0031626916,0.03944177,-0.012169452,-0.002991955,-0.017106177,-0.030856162,-0.027994292,-0.018459061,-0.020397328,0.0051090885,0.015467106,-0.023688478,-0.0017057396,0.00016575675,-0.02420882,-0.039493807,-0.010842585,-0.0221925,0.012865406,0.013997146,0.046102125,0.020696525,-0.008546584,-0.0032537512,0.0013577623,0.010764534,-0.009912477,0.0052196607,0.044853307,-0.031532604,-0.00006240015,0.02133394,0.009001882,0.027942259,-0.0022488444,0.0043741083,0.011291378,-0.0061692814,0.0052586864,0.016663888,0.030335823,-0.01449147,0.03189684,0.0072782557,-0.01305403,-0.015402065,-0.022062417,-0.032677352,0.002082986,0.0032114736,0.036553886,0.011024704,-0.036397785,0.02749997,0.007245735,0.018550122,0.010114109,0.010491355,0.06166029,0.023207165,-0.031350486,0.0043285782,0.027708106,0.010523877,0.029997602,0.038947448,-0.0041984934,-0.030205738,-0.015584183,0.013437781,-0.021359958,-0.015675243,0.011343412,-0.005278199,-0.01144748,0.00015345965,0.0027919493,0.01218246,-0.0049302215,0.039051518,0.005743253,-0.021047754,-0.0036846576,0.008650653,0.04232966,-0.002964312,-0.015389056,0.021451017,-0.0155061325,0.028254462,-0.010933644,-0.021841273,-0.0011024704,-0.00019492424,0.015428081,0.013249158,0.0053139725,-0.012371084,-0.0046472866,-0.0077660745,-0.008520568,-0.028046327,-0.000054473094,0.01404918,0.0015715894,0.034030236,-0.008423004,0.03834906,0.010959662,-0.028228445,0.02393564,-0.005522108,0.048781876,-0.020839617,0.025288524,-0.008344953,0.023636445,-0.011252353,0.007844126,-0.018615164,-0.018628173,-0.0009081559,0.0049887598,-0.032625318,0.0053237285,-0.011792205,0.020501396,-0.027864208,0.020618472,0.02177623,-0.037594564,-0.053751122,-0.0113694295,0.016793974,-0.009958007,-0.03920762,0.018784275,0.043084152,-0.031688705,0.020787584,0.020085124,0.0040098703,0.027708106,0.006816454,-0.0006032692,-0.05838215,-0.028176412,-0.048365604,-0.009899469,0.021672161,0.013093055,0.016195582,-0.006390426,-0.008136817,0.013463798,0.018094825,0.005278199,0.028046327,-0.052346203,-0.020371312,0.007258743,0.016208591,-0.010692988,0.00958076,-0.0051611224,-0.014959775,-0.023545386,0.005405032,-0.009372625,-0.009203514,0.011141781,0.035409138,-0.016416727,-0.010914132,0.028644718,0.009853939,-0.00967182,-0.01648177,0.022127459,-0.0024927538,-0.027786156,-0.011506018,0.0077920915,-0.0156102,-0.019018427,-0.04503543,-0.0023008785,0.0017642778,-0.009444172,0.005740001,-0.0077270493,0.024742167,0.016182574,0.0054733264,0.035409138,-0.005466822,-0.008683174,0.011928795,-0.015493124,-0.046388313,-0.015128885,0.019096479,0.00038517357,-0.016520794,0.000050331717,-0.011480002,-0.004992012,0.010166143,0.022855936,0.0325993,0.013528841,0.029034972,-0.01916152,-0.032885488,0.022127459,0.021229872,-0.019811945,-0.016507788,0.002889513,0.0070506074,-0.022309577,0.0049757515,-0.0062278197,-0.021086778,-0.0012829633,-0.025821872,0.072015055,-0.0052294172,0.00064310775,0.03634575,-0.028384548,-0.012579219,0.022270553,0.016390711,-0.034914814,-0.018172875,-0.0075384257,-0.017275289,-0.011037713,-0.05135756,0.001065884,0.0041041817,0.011408455,-0.013867062,-0.016117532,-0.0117076505,0.023129113,0.025002338,-0.00893684,0.045269582,-0.038218975,0.0038830373,0.008045757,0.07518913,0.0026716208,-0.0021431504,0.023311233,0.028592683,-0.009997033,0.008000228,0.0494323,-0.027916241,-0.032078963,-0.022309577,0.005222913,0.010582415,-0.023493351,-0.03668397,0.026641408,-0.0050310376,0.017665543,0.021112796,-0.023259198,-0.014686597,0.03566931,0.02195835,0.026745476,-0.024429964,-0.030569976,0.03210498,-0.001899241,-0.0051936437,0.021008728,0.018211901,0.037516516,-0.0019935525,0.02021521,-0.03062201,0.00094149023,0.012442631,0.0071156495,0.0076750154,-0.02802031,0.0070636156,-0.016494779,0.01614355,0.0009805157,0.03337981,-0.00420825,-0.046622466,-0.01456952,-0.041497115,-0.029034972,-0.029815482,0.01847207,0.03608558,-0.014816682,0.018784275,0.01977292,0.0070636156,-0.024508014,-0.0099775195,-0.016416727,-0.011961316,0.06462623,-0.022244535,0.013125577,0.01080356,0.010634449,0.016208591,-0.009073429,-0.0097954,0.033535913,0.0134898145,0.0064944937,0.031610657,0.00066546607,-0.002497632,0.032469217,-0.0070766243,-0.013281679,0.014179265,0.012787356,0.01874525,-0.04017025,0.028306497,0.012767843,0.010159639,0.059006557,0.021789238,-0.024065726,-0.013541848,-0.01577931,0.002834227,-0.0070506074,0.036397785,-0.007694528,0.031688705,-0.005281451,-0.011414959,-0.008884805,-0.010224681,-0.033431847,-0.0033822102,-0.005700975,0.05604062,-0.0008268528,-0.02003309,0.015024818,-0.013197123,0.000026169444,0.0073888283,0.008175842,0.014946767,-0.021372966,0.030752094,-0.021984365,-0.034628626,-0.017236263,-0.011512523,-0.024390938,-0.025808865,-0.027552003,-0.00032927765,0.060931817,-0.015154903,0.018211901,-0.0017837906,-0.013606891,0.037256345,0.0029090259,0.02809836,0.0266284,0.026485307,0.039858043,0.013171107,0.012995492,-0.012943458,0.013060534,-0.04076864,-0.018029781,0.011128772,0.009613282,-0.008000228,0.024768185,0.034290407,0.008956352,-0.0023025046,0.021008728,0.0032895245,0.031246418,0.029295143,-0.0075644427,-0.0027952015,-0.0139190955,-0.006344896,-0.01153854,0.03215701,-0.0026716208,0.011655617,0.017080162,-0.013034517,-0.009021395,-0.003974097,-0.013164602,-0.0071416665,-0.03371803,0.032469217,0.015987447,0.000044843757,-0.004474924,-0.0024895018,0.0032716377,-0.0026358473,-0.0021415243,-0.018368002,-0.00072847604,0.020267243,-0.026472298,-0.011148285,0.025184456,-0.025392592,-0.004751355,-0.04173127,0.019850971,0.011811718,-0.007954698,-0.006894505,-0.010055571,0.0009309208,-0.021893306,0.0060164314,0.0069530434,-0.0024260853,0.0045887483,0.015883379,-0.017886687,-0.0024943799,-0.0007175001,0.035253037,-0.0006187168,0.015389056,0.007707536,-0.033327777,0.01179871,-0.046284243,-0.0037106746,-0.024403946,-0.012780852,-0.023467334,-0.001951275,0.012052376,-0.0062538367,0.0060717175,0.0075904597,0.029191075,0.0013707707,0.038244992,0.02038432,0.00101385,0.029087007,0.0060196836,0.030908197,-0.008383978,0.0060196836,0.015271979,-0.05838215,-0.011245849,-0.0010788925,-0.012618246,0.0013187367,0.019200547,0.0053692586,0.01873224,0.005522108,-0.026979629,0.026589375,0.012592228,0.0062603406,-0.022881951,-0.0059774057,-0.006087978,-0.004517202,0.005548125,-0.009639299,-0.028306497,0.03215701,-0.01248816,0.022660807,0.0005780652,-0.008566097,-0.009853939,0.0026358473,0.03522702,0.005200148,0.006039196,-0.011005191,-0.0039643403,0.003772465,0.034472525,-0.0023041307,-0.0049724993,0.009444172,0.039649907,-0.009749871,-0.011304387,-0.013281679,0.026355222,-0.009958007,-0.0023203911,0.022452671,-0.008045757,0.040924743,-0.027630055,0.011180806,-0.07368015,0.028696751,0.011304387,-0.023051063,0.010140126,-0.057341468,0.004494437,-0.026953613,-0.00867667,0.002110629,0.026979629,0.006422947,-0.032469217,0.0036879098,-0.014959775,-0.03337981,0.020150166,0.015284988,-0.004478176,0.013073543,-0.018146858,0.0031269183,-0.0071611796,0.019955039,-0.016846009,-0.043578476,0.003385462,0.029555313,-0.0076750154,-0.012097905,0.029867517,-0.013411764,0.004735094,0.036657955,-0.0012878415,0.018992411,-0.041523132,0.024755176,0.00483591,-0.051123407,-0.011545044,0.010042562,-0.0059936666,0.025093397,0.019473724,0.0024130768,0.018589146,0.007928681,0.018081816,0.039779995,-0.0102441935,-0.009047412,0.03736041,0.001430935,0.0005796913,0.008813259,0.017925713,-0.00540178,0.044853307,0.005613168,0.0024602327,0.0013219889,-0.009340103,-0.0058895983,-0.01900542,-0.024703141,0.009405145,-0.005743253,-0.029425228,-0.010914132,-0.03392617,-0.0013675186,0.04256381,0.0083189355,0.028046327,-0.0026488558,0.011668624,-0.008917327,0.011031209,-0.012709305,0.0030553716,0.010901123,-0.022010382,0.009853939,0.030049635,-0.00045489098,0.03634575,-0.009489701,-0.03775067,-0.015245962,0.02638124,-0.015102869,-0.018784275,0.0011114137,-0.018758258,-0.02072254,0.0121889645,0.02765607,-0.005496091,0.020280251,0.016585838,-0.029711414,0.0012130426,-0.024169793,-0.031636674,-0.031376503,0.009769384,-0.060411476,0.027109714,-0.004751355,-0.0064099384,-0.035305068,0.024599073,-0.0125271855,-0.010595423,0.004107434,0.014322359]},{"id":"guide-reactions-3","type":"guide","source":"guides","text":"Guide: Reactions (reactions)\nSection: Reaction Roles Example\nSee examples/reaction-roles-bot.js for a full bot that assigns roles when users react to a message. Uses (reaction, user), Guild.fetchMember(), member.roles.add() (Discord.js parity), and guild.createRole() if you need to create roles programmatically. See the Roles guide for role CRUD.\n\n```javascript\n// Simplified reaction-roles logic\nclient.on(Events.MessageReactionAdd, async (reaction, user) => {\n if (!reaction.guildId || reaction.messageId !== rolesMessageId) return;\n const roleId = ROLE_EMOJI_MAP[reaction.emoji.name];\n if (!roleId) return;\n const guild = client.guilds.get(reaction.guildId);\n const member = await guild?.fetchMember(user.id);\n if (member && !member.roles.cache.has(roleId)) await member.roles.add(roleId);\n});\n```","meta":{"slug":"reactions","url":"/guides/reactions"},"embedding":[0.00028723158,0.008030262,-0.0115014855,0.036154512,-0.0119415,-0.02439635,-0.014483806,0.026914211,-0.0110003585,0.035567828,0.023051862,-0.035787832,0.035861168,-0.020912904,0.018101702,0.026009737,-0.026229743,0.016854994,-0.03226772,0.055295136,0.019433966,0.020656228,0.008763619,0.050406087,-0.022587402,-0.006893558,0.0043879207,0.05896192,-0.0372301,-0.045639265,0.046739303,-0.012369292,0.01030978,-0.010682571,-0.013872675,-0.02229406,0.012589299,0.03282996,-0.014691589,0.056615178,-0.022819633,-0.016427202,0.0064902115,0.00085023604,-0.06199313,0.026229743,-0.040603545,0.0014147683,-0.008898067,0.031216573,-0.023760775,0.024274124,0.017319454,0.0883451,-0.0026538365,-0.013395992,-0.045443702,0.0012299012,-0.014239353,0.041630246,0.0012810834,-0.08003372,0.01417824,0.010847576,-0.0064841,-0.008574168,-0.06913114,-0.00806693,0.01543717,0.033318862,0.04473479,-0.017637242,0.002853982,-0.0046293177,0.006086865,-0.016158305,0.030556552,0.005066276,0.00039016898,-0.043341413,0.0023024362,0.013029314,-0.046201505,-0.038672373,-0.0016668598,-0.016317198,-0.025789728,-0.045492593,-0.02121847,-0.020705119,0.016427202,-0.028332034,-0.10315891,-0.0026324468,0.015962742,-0.02948096,-0.00077308074,0.042412493,0.00039265168,0.06086865,0.051286116,-0.05901081,-0.05377953,-0.009307525,0.027183108,0.011434262,-0.021768488,0.049037155,-0.034834467,-0.0028738435,-0.049819402,0.014043791,0.02108402,0.0026614757,0.005573515,-0.0290165,0.045077026,-0.0012512908,-0.020631783,-0.05485512,-0.06438877,-0.0054176766,0.043781426,-0.077393636,-0.013139317,-0.029407624,-0.0020732621,-0.06077087,0.0080424845,0.043830317,-0.02346743,-0.006465766,0.014398247,-0.025545277,-0.041581355,0.0067652203,0.026107518,-0.042608056,-0.01628053,0.015987188,0.017099446,0.013273766,-0.02532527,0.044881463,-0.04710598,-0.007327461,-0.052606158,-0.006380208,-0.060624197,-0.008977515,-0.050161634,-0.015962742,-0.031607695,-0.003535393,-0.0073946854,-0.027720904,-0.03036099,0.0068385564,-0.004094578,-0.034614462,-0.0071807895,-0.067273304,-0.00015001357,-0.04324363,-0.022110721,-0.03534782,-0.022110721,0.012167619,-0.03045877,0.040750217,0.032805514,-0.014288244,-0.019067287,0.019983985,-0.022159612,0.0020686786,-0.03806124,-0.003669842,0.015388279,0.010700904,0.013921564,-0.017270563,-0.06644216,-0.05764188,-0.020399554,-0.022318505,-0.033294417,-0.0144960275,-0.0071624555,-0.0003437612,0.025178598,0.0313388,0.01002866,0.015131604,0.04859714,-0.039723516,0.0508461,0.008470276,-0.025056371,-0.033318862,0.0076085813,0.0049409945,0.059744168,-0.022196278,0.0005083846,-0.029627632,-0.037841234,-0.033832215,0.031412136,-0.004335975,0.027109772,-0.06761554,0.022232946,0.012589299,-0.061455335,0.00070623826,-0.09567867,0.012485407,-0.029456515,0.031412136,-0.09176744,0.015583841,0.06345984,-0.046201505,-0.008708617,0.060477525,0.045737047,-0.01800392,0.0074313534,0.0148382615,-0.016757213,-0.0033367753,-0.013408215,-0.056517396,0.009881989,0.015962742,0.04226582,0.03143658,0.00914252,-0.007150233,0.004073188,-0.0104808975,0.015376057,-0.0038226247,0.028478706,0.018040588,0.020436222,0.025080817,0.025520831,0.019531747,0.058277454,0.022355173,0.05069943,-0.005200725,-0.0065941038,-0.03703454,0.009912545,0.024225233,0.0057293535,0.022599624,-0.026009737,0.0049134935,-0.001018297,0.007749141,-0.04920827,-0.001470534,0.014520473,0.0148382615,0.0028998167,-0.02742756,0.009545866,-0.01767391,0.040701326,-0.03573894,-0.026523087,0.020045098,0.034761135,0.01967842,-0.013347101,0.009778096,-0.0050296085,0.0011099668,0.03715677,-0.0051579457,-0.017466124,0.027867574,-0.017295009,-0.05177502,-0.006254926,0.027720904,-0.03036099,0.002985375,-0.022746297,-0.037376773,0.012130951,0.0069791162,0.022367395,-0.02052178,0.034614462,0.036863424,-0.014936042,0.027525341,0.0062090913,-0.0042229155,0.029578742,-0.016549429,-0.022355173,-0.037841234,0.013493773,-0.030556552,0.017881693,0.035983395,0.012882642,0.018162815,-0.032243274,-0.0024964702,0.025789728,0.024408573,0.021560702,0.03260995,0.03221883,-0.025496386,0.02494637,-0.025911955,-0.03036099,-0.053388406,0.010120329,-0.026571978,0.04104356,0.03395444,0.07250459,0.0026813373,0.014728257,0.052361708,0.04835269,-0.0067896657,0.002259657,0.044539228,0.032854404,0.039576843,0.01231429,-0.013628222,-0.015143827,-0.053486187,-0.01949508,0.01166038,0.010823131,0.004986829,-0.006911892,0.00060310995,-0.012381515,0.028283143,-0.04155691,-0.05485512,0.0011099668,-0.0022795186,-0.014214908,0.0035109478,0.030140983,0.024799697,-0.060233075,-0.015962742,0.0008303743,0.018859504,0.04001686,0.053828422,-0.0012535825,-0.033196636,0.040750217,-0.02686532,-0.015094936,0.025716394,-0.0693756,0.0068507786,-0.037939016,-0.003899016,-0.012082061,-0.0011328842,-0.03297663,0.041434683,-0.026645312,0.023174088,0.019226182,-0.036863424,-0.011030915,-0.02789202,-0.043292522,-0.025618613,-0.042608056,0.015143827,0.03605673,-0.016708322,-0.04155691,0.02747645,0.0021924325,0.0016179694,0.046690412,0.064731,0.0292854,-0.0059035257,0.033098858,0.015742736,0.016940553,-0.0030144039,0.0017264452,-0.00361484,-0.032952186,0.015033823,-0.013347101,0.023296315,0.049183823,0.024359683,0.035812277,0.006618549,-0.0019082567,-0.020998461,0.03811013,0.0062946496,0.0007406144,0.02532527,-0.045028135,-0.036447853,0.005503235,-0.0621398,0.033978887,-0.005717131,-0.0009770457,-0.013738225,0.041483574,-0.034076665,-0.074704655,0.008653616,0.015046046,-0.007113565,0.02774535,-0.02640086,0.027500896,-0.009551978,0.001497271,0.009582534,0.0040456876,-0.006123533,-0.0046720966,0.033978887,-0.019531747,0.011434262,-0.022184057,-0.06908225,0.026229743,0.013310433,-0.012821529,-0.0020258992,0.029872084,0.037572335,-0.027794238,-0.021255137,0.027794238,0.032634396,0.003950962,0.0018288096,0.0008639865,0.036447853,-0.00029525268,0.011458707,-0.019666197,0.0025377215,-0.03375888,-0.0011840664,-0.00081891555,-0.026987545,-0.004714876,0.01861505,0.04627484,-0.011324258,-0.016084969,-0.030972121,0.023638548,-0.033612207,-0.008641393,0.047448214,0.030703222,0.013347101,-0.026449751,-0.025716394,0.004412366,0.029089836,-0.011128696,-0.025447495,0.004882937,0.044881463,0.0037584559,0.012564854,0.03138769,-0.011923166,0.031241018,-0.027843129,0.06531768,-0.026840875,-0.00035120937,0.0044887573,-0.01445936,-0.03226772,-0.067957774,0.02093735,-0.027036436,0.04375698,0.030801004,0.008586391,0.009111963,0.07001117,-0.023699662,-0.025203044,0.010890355,-0.028234253,0.0019342297,-0.023296315,-0.053241733,-0.011862054,-0.00793248,-0.040970225,0.006422987,0.029627632,0.025985291,0.0037095654,0.009802542,-0.0023604936,0.023357429,-0.02728089,-0.017466124,0.0007696431,0.018969508,0.0037676229,0.05783744,0.007736919,-0.026840875,-0.013787116,-0.046005942,0.017466124,0.026620867,-0.06785999,0.002328409,0.025105262,0.00015736624,-0.03036099,-0.014764925,0.01161149,-0.0044245888,0.031778812,-0.0023177145,0.0021649317,0.02061956,-0.034443345,0.0012337208,-0.019507302,-0.035567828,-0.024665248,-0.0071807895,-0.029358735,0.015596064,-0.001973953,0.023919668,-0.0069363373,-0.004812657,-0.013029314,-0.04649485,-0.0033948328,0.045590375,0.032414388,-0.021181801,0.0046415403,-0.0056468504,0.013383769,0.013139317,-0.012699302,0.017698355,0.0066918847,-0.0045162584,0.010951468,-0.014080459,-0.027256444,-0.0025789728,-0.05065054,0.028967611,-0.008183044,-0.015156049,-0.01879839,-0.030336544,-0.007798032,-0.026694203,0.016573874,0.023614103,0.017661687,0.021585148,0.027696459,-0.005023497,0.009105852,-0.025056371,0.023724107,-0.026180854,0.006459655,0.005931027,-0.011354814,-0.05773966,0.0057599097,-0.030752113,-0.01553495,0.021401808,-0.02494637,-0.011030915,0.019653974,0.02052178,-0.0073824627,-0.022721851,-0.04253472,-0.022636293,-0.01595052,0.016891662,0.002507165,0.015730513,0.007920258,-0.011898721,0.026034182,0.0067407754,-0.023015194,0.007156344,0.021621816,0.023112975,0.020900682,0.00035369207,-0.019739533,-0.024127454,-0.0058760247,-0.011574822,-0.037572335,-0.0101753315,-0.05480623,-0.003251217,0.005625461,0.015119381,0.026131963,0.013836007,-0.02401745,0.016598318,-0.02681643,0.021792931,0.044514783,0.0052404488,-0.021511812,0.003889849,-0.024041895,-0.029798748,-0.0069974503,-0.008781953,-0.04346364,0.00027061647,-0.03539671,-0.022355173,0.015486061,-0.0034437233,-0.012485407,-0.040799107,-0.0228563,-0.006416876,0.011049249,0.011214254,0.011122584,-0.026645312,0.015730513,0.0050968328,0.021646261,-0.03842792,0.025545277,0.020277327,0.0031412134,0.033245526,-0.016769435,-0.017710578,-0.022587402,-0.0061693676,0.010474786,0.033416644,-0.024787474,-0.030067647,0.01445936,0.04033465,-0.014862707,0.013738225,-0.018248372,0.009924768,-0.03405222,-0.016549429,-0.008268603,-0.01394601,-0.017295009,0.011116473,0.011085917,0.01086591,0.006581881,0.0024506354,-0.038501255,-0.003330664,0.014337134,0.01291931,-0.027672013,0.017747246,-0.054121763,0.017356122,0.028112028,0.011703159,-0.017527238,-0.037083432,0.012149285,-0.019751756,0.009649759,-0.032732178,0.010872021,-0.009411418,-0.02280741,0.045590375,-0.009649759,-0.0016225529,0.049697176,-0.01674499,-0.0054787896,-0.036154512,0.012687081,-0.0035078921,0.0344189,-0.03246328,0.031045455,-0.0061388114,0.016084969,0.031485472,0.025178598,-0.015131604,0.017845025,-0.031656586,0.029920975,-0.006893558,-0.015767181,-0.023455208,-0.013078204,0.0134571055,-0.019433966,-0.021866268,-0.006349651,-0.0063313176,0.017979475,-0.019482857,0.023711884,-0.0310699,0.008971403,-0.023308538,-0.009729206,-0.0068813353,-0.025691949,-0.009527532,-0.011623712,-0.037401218,0.047961563,0.017576128,0.028307589,-0.009600868,0.03605673,-0.0014033096,0.011458707,0.012797084,0.0040792995,-0.0040029082,-0.022330727,0.009784208,0.007889702,0.0058088005,0.0015033823,0.028160919,0.0058088005,-0.01343266,0.010144775,0.015644955,-0.02891872,-0.025349716,0.012338735,-0.015376057,0.0058851917,-0.016072746,0.003712621,-0.024139676,-0.0077063623,0.00050189137,-0.029872084,-0.02020399,-0.015681623,0.008922513,0.006319095,-0.033929996,0.015706068,0.0066246605,-0.09118075,-0.014789371,0.02891872,-0.03297663,-0.019641751,0.018480603,0.0075535793,0.04683708,-0.0010748267,-0.02701199,0.019751756,-0.058521908,0.0033367753,-0.033294417,0.052263927,-0.0005179336,-0.007406908,-0.0095642,-0.01949508,-0.020228436,-0.014936042,-0.023797441,-0.03172992,-0.03419889,0.007700251,0.014190462,0.019189514,-0.002065623,0.029578742,0.003367332,0.024873033,0.025019703,-0.013505995,-0.0015453976,-0.03857459,0.038012348,0.030312099,0.011929277,0.02294186,-0.02267296,0.023687439,0.0069363373,0.006034919,-0.036741197,0.033709988,-0.017698355,0.004950161,0.027183108,-0.022880746,0.051237226,0.014214908,0.021902936,0.01231429,0.017747246,-0.00487377,0.005805745,-0.030189872,0.049697176,-0.0107131265,-0.04287695,0.037939016,0.0032267717,0.008592502,-0.013078204,0.032634396,-0.032805514,-0.033514425,-0.0123265125,0.004366531,0.028552042,-0.018395044,-0.016072746,-0.006875224,0.031363245,-0.001266569,0.028503152,0.0023116032,0.02886983,-0.01740501,-0.022184057,-0.0021145134,0.00090447394,0.0044001434,0.0014499084,0.027183108,-0.023993004,-0.016940553,0.009570312,0.0056346282,0.023100752,0.02732978,-0.019238405,0.0014697701,0.0028127306,-0.007174678,0.013371547,-0.03815902,-0.013249321,0.05275283,-0.016317198,-0.010609235,-0.017551683,-0.007816366,-0.021181801,-0.0068263337,-0.029652078,0.027183108,-0.0060807536,-0.022575181,-0.017246118,-0.023491876,-0.014716035,-0.0549529,-0.02178071,-0.02737867,0.025691949,0.029676523,0.018089479,0.0385257,-0.0028157863,0.009240301,-0.007901924,-0.009221967,0.027965356,-0.001630192,0.027085327,-0.024249678,0.004357364,0.025496386,0.004901271,0.018859504,-0.026327524,0.021915158,0.022465177,-0.00010780733,-0.011495374,0.030189872,0.020155102,-0.03221883,0.006520768,0.0014606032,0.017295009,-0.012124839,-0.00041938867,-0.028380925,0.027207553,0.026180854,0.032854404,-0.0011168419,-0.018553939,0.017368345,0.016476093,0.046201505,-0.0063313176,-0.011373148,0.04062799,0.0028845384,-0.03221883,0.0020610394,-0.0015110215,-0.00015010906,0.03605673,0.025569722,-0.02234295,-0.024176344,-0.002941068,0.02341854,-0.009301414,-0.012442628,-0.040921334,-0.028258698,-0.018431712,0.010432007,0.02178071,0.012082061,0.0035078921,0.030947676,-0.006459655,-0.01687944,0.038696818,0.012809306,0.021854045,-0.016402757,0.0054879566,0.025496386,-0.021304028,0.013615999,-0.058179673,-0.010688682,0.002294797,0.002667587,0.012002613,0.0013017091,0.02061956,-0.015852738,-0.005209892,0.010566455,-0.028283143,-0.020790678,-0.014593809,0.010248668,-0.031485472,0.011635935,0.000073097,-0.0015041463,0.015058269,-0.005423788,0.03451668,-0.015363834,0.049843848,-0.010364782,0.04920827,-0.0037340105,0.020949572,0.007070786,0.002374244,-0.02845426,-0.045737047,0.0013742809,-0.008470276,-0.024567468,-0.008720839,-0.031314354,0.00044688955,-0.0033092746,0.015241608,-0.006759109,0.010792574,-0.069277816,-0.0035690053,0.012277623,-0.015791625,-0.019250628,0.019299518,0.047937118,-0.02373633,0.032414388,0.008390829,-0.0073763514,0.01828504,0.00096253137,0.0053810086,-0.032903295,-0.03419889,-0.046250395,-0.017197227,0.018309485,0.017270563,0.00040792997,-0.009075296,-0.016720545,0.019177292,0.02457969,-0.020216214,0.033245526,-0.029823193,0.008103597,0.018150592,0.010499231,-0.0068874466,0.0021160413,0.011819274,-0.022000717,-0.0093319705,-0.0050204415,-0.015253831,0.022257391,0.014447138,0.029847639,-0.0018028365,-0.01841949,0.010908688,0.0019189514,0.006630772,-0.0022352117,0.0041343016,-0.018627273,-0.02457969,0.0058760247,-0.0030006533,-0.009325859,-0.021352919,-0.0436592,0.018871726,0.00043122933,-0.01618275,0.009778096,0.0031473248,0.03698565,0.02033844,0.016121637,0.036496744,-0.010291447,-0.015388279,0.024029672,-0.02882094,-0.04742377,-0.026107518,0.032903295,0.01954397,-0.033709988,-0.007211346,-0.02275852,0.0043512527,0.004345142,-0.00210993,0.018847281,-0.023528544,0.026327524,-0.015547173,0.009356416,0.008091375,0.02789202,-0.0050387755,-0.012625967,0.0080241505,-0.0036362296,-0.008513055,-0.012601522,-0.010181443,0.0027714793,0.006416876,-0.015547173,0.06463322,-0.015266053,0.017942807,0.015449393,-0.0010297558,-0.0013872674,-0.0008403052,0.03791457,-0.022575181,-0.012338735,-0.019201737,-0.026718648,-0.020228436,-0.012711525,0.014214908,0.016671654,-0.0037462332,0.012283734,-0.017893916,0.00009591893,0.035983395,0.017600574,-0.0016683877,0.015681623,-0.040212423,0.0061907573,0.009943102,0.06570881,0.015730513,-0.014948265,0.021939604,0.016818326,0.0059829727,0.03661897,0.013701557,-0.0028387036,-0.013603777,-0.022697406,-0.0012108034,0.009307525,-0.009753651,-0.041630246,-0.003553727,-0.016427202,0.03246328,0.027623123,0.0066918847,-0.024995258,0.026596421,0.0031473248,0.028503152,-0.0047118203,-0.021841822,0.03979685,-0.043732535,0.0070157843,0.021047352,0.008427497,0.0066429945,-0.0011970529,-0.0058851917,-0.03265884,0.006123533,0.012100394,0.018248372,0.007822477,-0.03385666,0.008928624,0.01002866,0.013420437,0.0000016829975,0.009454197,-0.0005209892,-0.037376773,-0.026083073,-0.036765642,-0.009955324,-0.05798411,0.036643416,0.050161634,-0.01343266,0.004696542,0.015522728,-0.007107454,0.0040976335,0.023846332,0.015498282,-0.009949213,0.052899502,-0.031974375,0.0053229514,0.0038654038,-0.0039051273,0.01674499,-0.010621457,-0.009509198,0.04067688,0.014948265,-0.00015345118,0.019299518,0.012894864,0.027549786,0.024909701,0.0028830105,-0.013395992,0.00013893683,0.033832215,0.0197762,-0.014581586,0.04072577,-0.010230334,0.0017707521,0.044196997,0.037694562,-0.03529893,-0.0039723516,0.013762671,0.019788422,-0.0061693676,0.0048584915,0.022245169,0.02882094,-0.0037676229,-0.004763766,-0.0036117844,-0.015143827,-0.0126504125,-0.007272459,0.0067835543,0.03806124,0.0016149137,-0.014349356,0.033612207,0.009558089,0.0259364,0.030532107,0.022196278,0.03040988,-0.017967252,0.022245169,-0.012088172,-0.042950287,-0.02891872,0.004546815,-0.008739173,-0.02411523,-0.017380567,0.0145326955,0.05490401,-0.008592502,0.03199882,0.004995996,-0.0070646745,0.0036637306,-0.028625377,0.037303437,0.016622763,-0.0010305197,0.04901271,0.030263208,0.0012917782,-0.018150592,0.012302067,-0.016256085,0.00003074753,-0.00825638,0.01879839,-0.053241733,0.035714496,0.027720904,-0.010700904,0.0096375365,-0.022514068,0.021658484,0.02149959,0.020448444,0.018945063,0.012210398,-0.027158663,0.012112617,-0.038183466,0.016732767,-0.014679368,0.009228079,0.0069974503,-0.011672603,-0.020558449,0.0080424845,-0.011831497,0.002464386,-0.017185004,0.027158663,-0.00020511085,0.03168103,-0.028649822,-0.013774893,0.01674499,0.036545634,0.018651718,-0.023002971,-0.006264093,0.025520831,-0.035714496,-0.015877184,0.027354226,-0.020375108,0.004959328,-0.038721263,0.023332983,0.00082426297,-0.0052954503,-0.017466124,-0.00064894476,0.0126137445,-0.017478347,0.0051273894,0.033685543,-0.011403705,0.0003905509,-0.004131246,-0.017270563,-0.014068237,-0.017368345,0.029920975,-0.030703222,0.000039986113,-0.0020854846,-0.0013544192,0.0039906856,-0.03969907,-0.019922871,-0.029212063,-0.018089479,-0.023247425,0.02486081,0.016219417,-0.026596421,-0.00923419,-0.0022092387,0.050357196,0.02640086,0.036081176,0.0046415403,0.0054696226,0.033929996,0.03082545,0.044881463,-0.0013414326,-0.0093319705,0.009283081,-0.059450828,0.007901924,0.008684172,-0.021462921,-0.02126736,0.013322656,0.02098624,0.025911955,-0.0051457235,-0.008775841,0.019653974,0.021719597,0.017356122,-0.037425663,0.0012574021,0.004812657,-0.009221967,-0.017857248,-0.029114282,-0.028894275,0.031143237,0.00036018534,-0.0006122769,0.0036240069,-0.041263565,-0.007211346,-0.0088491775,0.019165069,0.013848229,-0.009894211,0.011507597,-0.016989443,-0.0048371023,0.035225593,-0.013017091,-0.013114871,0.03451668,0.033685543,-0.0054910122,-0.0034834468,-0.020179547,0.06531768,-0.017001664,-0.010474786,0.01632942,0.013298211,-0.002667587,-0.021181801,0.014764925,-0.032536615,-0.0029548185,0.004925716,-0.0023054918,0.005093777,-0.041385792,-0.000088041066,-0.024689693,-0.024371905,0.013542663,0.038965713,0.0069241147,-0.013114871,0.0076696943,-0.043219186,-0.006697996,-0.007926369,0.0026507808,-0.0021664596,0.0013887952,-0.008763619,-0.005756854,0.009264747,0.026547533,0.012253177,-0.042314712,0.0011771912,0.031412136,-0.01725834,-0.010077551,0.005588793,-0.00793248,0.021487366,0.03456557,0.015009378,0.035470046,-0.030092092,0.0129682,0.02527638,-0.03226772,-0.007969148,-0.017759468,0.016720545,-0.0066674394,0.030165428,0.012271511,-0.0034162225,-0.014117126,0.0052129477,0.017759468,0.012222621,-0.011862054,0.0590597,-0.004296251,0.007388574,-0.003465113,0.00001833393,0.028527597,0.032634396,-0.012540408,-0.0028142584,-0.0015209523,-0.013163762,0.023149643,-0.01487493,-0.016537206,0.025863064,-0.02640086,-0.022379618,0.012821529,-0.034590017,0.012528186,0.030556552,0.007327461,0.019702865,-0.03534782,0.005591849,-0.010425895,0.017062778,-0.009203633,0.014997155,-0.0045315367,-0.021634039,-0.040090196,0.03627674,-0.0038348471,0.019287296,0.007504689,-0.044881463,-0.009545866,0.023430763,-0.020252882,-0.018443935,0.03400333,0.0012864309,-0.027036436,0.041434683,-0.016207194,-0.015290499,0.0051182224,0.017759468,-0.044563673,-0.002516332,-0.026474196,-0.04314585,-0.046152614,0.024054118,-0.06414431,0.016366089,-0.01646387,-0.045859274,-0.0080424845,-0.0032848292,0.006697996,-0.02635197,-0.01661054,0.029700968]},{"id":"guide-webhooks-0","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: What are Webhooks?\nWebhooks let you send messages to a channel using a URL (ID + token). You can use them in scripts, CI pipelines, or anywhere you need to post without a full bot connection. No gateway, no events—just REST.","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.04017053,-0.026942361,-0.023709279,0.0115904985,0.031316534,-0.05756156,0.00823591,0.0075438614,0.02099391,0.023350047,-0.017306505,0.023793804,-0.055363912,-0.05764609,-0.02050789,0.038649082,-0.019726034,0.017105758,-0.05532165,0.02123692,0.01286894,0.017834786,-0.02191312,0.053546622,0.003954188,0.020106398,-0.016408427,0.029583769,-0.04118483,0.00440851,0.017380465,-0.018838521,-0.015341298,-0.0021382198,-0.00079044135,0.0534621,-0.008690232,0.015594873,0.04247384,0.04249497,-0.016735962,0.027343856,-0.005380548,0.0054360176,-0.050545983,0.013481746,-0.071001045,-0.000019160525,-0.020402236,0.030872777,-0.050207883,0.008785323,0.043572664,0.04300212,-0.0009449637,0.008753626,-0.013682493,-0.0016654077,-0.04564353,0.013344393,-0.00994226,-0.01920832,-0.01613372,-0.012826677,-0.0046911407,-0.008843434,-0.012034255,-0.0071423673,-0.04027619,0.033007033,0.07417074,0.017359333,-0.006909923,0.007781588,-0.021004476,0.005211498,-0.048897743,0.058237765,-0.03995922,-0.039473202,-0.037000842,-0.047122717,-0.1322817,-0.036874056,-0.046742357,-0.02692123,0.0029530942,-0.060984828,-0.0018489856,0.014527744,-0.01714802,-0.016651437,-0.03211952,0.03640917,0.01112561,-0.0008544955,-0.04915132,0.0013959841,-0.0061967433,0.016831052,0.06005505,-0.07007127,-0.07577671,-0.020032438,0.039388675,-0.052447796,0.058744915,-0.01879626,-0.025019417,-0.05215196,-0.06360511,-0.03359871,-0.03543713,0.04517864,0.048601907,-0.0039198496,0.07653744,-0.00677257,0.015658267,-0.015193379,-0.019926783,-0.003729668,0.00330176,-0.039536595,-0.027555168,-0.004786231,-0.060604464,0.022652715,0.006038259,0.0055258255,0.024723578,0.026794443,0.033218347,0.015056025,-0.008558162,-0.026646523,-0.017169151,0.010380734,-0.008177799,0.053419836,0.061280664,-0.06550692,0.032668933,0.007010297,0.0010169421,-0.009250211,-0.06795815,-0.009752078,-0.021828596,-0.031379927,-0.06254854,0.0027998926,0.018606078,-0.009583028,-0.012932333,0.059632428,-0.017781958,0.032647803,-0.03262667,-0.04733403,-0.009820755,0.025632223,-0.009884149,-0.014760188,-0.05633595,-0.03176029,0.029055487,-0.054096036,-0.01647182,0.026857836,-0.018172886,-0.018584946,0.0019440763,0.033831153,0.015742792,-0.049024533,-0.021015042,-0.0411637,-0.0180461,0.0034840172,0.036874056,0.017623475,-0.011622195,-0.026181636,-0.03594428,0.0015993725,0.017063495,0.023730408,-0.038332112,-0.040381845,-0.009767926,-0.005594502,-0.0051032,0.034021337,0.035711836,-0.01170672,0.0034655272,-0.01153767,0.05063051,-0.023497965,-0.001534658,-0.04813702,-0.0106078945,-0.001322685,-0.027660824,0.012763283,0.03176029,0.0129006365,-0.035880886,-0.005858643,0.01204482,-0.00054941286,0.03974791,0.0017169152,-0.06390094,-0.02875965,-0.015658267,0.06119614,-0.023645883,-0.016841616,-0.043783978,0.007813285,-0.013492312,0.005185084,-0.018426463,0.024216428,0.018775128,-0.05016562,-0.00480208,0.012393487,-0.0044903937,0.024977153,-0.0031115785,-0.050588246,-0.00568431,0.023455704,0.016017498,0.017274808,-0.0076125376,-0.03357758,-0.02508281,-0.007211044,-0.01170672,0.01654578,-0.010893166,-0.014654531,-0.005010751,-0.029731689,0.02842155,0.024533397,0.05316626,-0.002618956,0.026667655,-0.018532118,0.03395794,-0.047249507,0.0057529868,0.014527744,0.02823137,-0.016260508,0.06326701,-0.02080373,-0.02740725,0.018088361,0.018532118,-0.009445675,-0.0007580841,0.024934892,0.0001898512,0.026456343,0.006740873,0.0058058146,0.05384246,-0.031337664,-0.07949582,0.00089741836,0.0008525144,-0.03492998,-0.04008601,0.004310778,-0.01187577,0.015594873,0.0048284936,0.028125713,0.023434572,0.009440392,-0.049109057,0.008505334,0.008447222,0.006709176,-0.040719945,0.043403614,-0.012647062,-0.0046435953,0.010666005,0.10464202,0.04513638,0.019852823,0.047460817,-0.010597329,-0.01035432,0.016757092,-0.0139677655,-0.0047518928,0.011115044,-0.029224537,-0.02423756,-0.07404395,-0.020433933,-0.023772672,-0.002632163,0.037888356,-0.0059801475,0.011051651,-0.030619202,0.02140597,0.05101087,0.003354588,0.010211683,-0.029816214,-0.0048654736,0.03376776,-0.015859013,-0.04232592,-0.04234705,-0.055448435,0.00936115,0.021089,0.019007571,0.016598608,0.028548338,-0.029520376,0.055025812,0.008473637,-0.027470643,-0.005261685,-0.0032330833,-0.0040783337,-0.034359436,0.026033716,0.019905651,0.011072782,-0.013650796,-0.02856947,-0.01680992,0.020233186,-0.009704533,0.018584946,0.0077287597,0.008320435,0.03328174,-0.00622844,-0.029879607,-0.044122078,-0.023730408,0.016091457,0.018246846,0.0282525,0.023983985,-0.013059121,-0.05130671,0.008410243,-0.036895186,0.027703088,0.011558801,0.015003197,0.031802554,-0.034359436,-0.016841616,-0.013006293,0.039156232,-0.015763924,0.036557086,0.0056209164,-0.03951546,0.030175446,0.006598237,0.052405536,0.021057304,0.013365525,0.026435211,0.017285373,-0.01862721,-0.012256133,0.008679667,0.044079818,-0.0002491178,0.051518023,-0.021722939,-0.00922908,0.010386016,-0.032394227,-0.0009456241,0.023709279,0.0114320135,-0.008980787,0.035352603,-0.0027232915,-0.015087723,-0.050757296,-0.003101013,0.0072533065,-0.05299721,0.011569367,0.019831691,0.007036711,-0.0072797206,0.06136519,0.01521451,-0.011865204,-0.007961203,0.08143989,-0.0007290286,-0.00677257,-0.034866586,0.000040983097,0.0070208623,-0.009107575,0.03691632,0.029520376,0.0031776137,0.006508429,-0.026329555,0.019556984,0.02140597,0.02242027,0.0070472765,0.036472563,0.027386118,-0.055786535,-0.04784118,-0.04080447,-0.02174407,0.0015610721,0.024470003,-0.024470003,0.04915132,-0.016662002,0.02740725,0.012192739,-0.049362633,-0.001026187,-0.034380566,0.032394227,-0.04551674,-0.014686229,-0.02590693,-0.03790949,-0.020455064,-0.0076495176,0.012065952,-0.07045163,0.03361984,0.015689963,-0.009482655,0.0006243628,0.008795888,0.0302811,-0.0055522397,0.042283658,-0.033049297,-0.022187827,-0.005462432,0.06639443,0.029499244,-0.014020594,-0.02239914,0.0020867123,-0.007924224,-0.047545344,0.07214213,-0.013111949,0.012382921,0.015056025,-0.026456343,-0.044544704,0.0738749,0.004141728,-0.0038089103,0.005879774,0.0017340843,-0.03277459,-0.091540635,-0.0049816957,0.03309156,0.05747704,0.017454425,-0.014527744,0.0032225177,-0.0056420476,-0.048559643,0.015066591,-0.0013590044,-0.006746156,-0.024300953,-0.020359972,-0.049404893,0.009620008,-0.0030983717,0.015077157,-0.031379927,-0.040529765,-0.04175538,0.010481107,0.030915039,-0.0026757463,-0.010090179,0.008019315,-0.009445675,0.01014829,-0.023392309,-0.05096861,-0.0049156602,0.017612908,-0.016355598,0.0030719575,-0.0120025575,0.006254854,0.0040783337,-0.00091392716,-0.043361355,0.06871887,0.04699593,0.0043926616,-0.024956023,0.024829235,-0.025463173,0.0004467281,0.0095037855,-0.0048126453,-0.029964132,0.0049050944,0.0026427286,-0.0061650462,-0.011780679,0.004260591,-0.04615068,-0.026202768,-0.0017855918,-0.00568431,-0.033704367,0.0060805213,-0.009303039,0.039874695,-0.0056737443,0.0060435412,0.004564353,0.009197382,0.014210775,0.04450244,0.016461255,-0.047756657,-0.0072744377,-0.008262324,0.026477473,0.0057318555,-0.0007871396,-0.026604261,0.011104479,0.0014606987,-0.0029187559,-0.0132281715,0.011051651,0.019873954,-0.026350686,0.025695616,0.0207509,-0.015563176,0.008410243,-0.019345673,-0.00660352,-0.0012117459,0.0051692356,-0.021976514,0.013386656,0.002534431,-0.04847512,-0.020032438,-0.017919311,0.036493693,-0.035394866,-0.0136191,-0.00739066,0.018299675,-0.014960934,0.0077974363,0.010850904,-0.0029240386,0.036303513,0.005179801,0.012647062,0.008869848,-0.006323531,0.0023099112,-0.010296208,0.0025066962,0.0079876175,-0.015985802,-0.047080457,0.021891989,-0.020180358,0.011833508,-0.03892379,-0.0059009055,-0.012308961,0.04517864,-0.02840042,0.009044181,-0.009910563,-0.0015703171,0.04266402,-0.009260776,0.002498772,-0.030154314,0.016281638,0.038649082,-0.023286654,-0.013566271,0.038691346,-0.0014923955,0.022948552,0.02861173,-0.0113474885,-0.0016588042,-0.023159865,0.03224631,0.021078436,-0.0107293995,-0.023455704,-0.0006151179,0.029245669,0.0024921685,0.0064503183,-0.038226455,-0.039240755,0.012837242,-0.010322622,-0.030830514,-0.00247632,0.002172558,-0.025484305,0.002463113,-0.0075966893,-0.008996636,0.015235641,-0.0020735052,0.0007567634,0.03326061,-0.025843536,0.016165417,-0.014886975,0.02029658,0.03841664,-0.015299035,0.02016979,-0.04530543,-0.021141829,0.0038485315,0.010143006,-0.024977153,-0.0013008934,0.008331001,0.012805546,0.003354588,-0.025061678,0.0067672874,0.003703254,0.006619368,-0.012541405,0.0014078704,-0.046108417,0.046531044,0.018606078,0.025505435,-0.0059009055,-0.013819846,-0.01056035,-0.030576939,0.0044586966,0.042875335,-0.022208959,0.00752273,-0.01845816,-0.0009799624,0.022842897,-0.012435749,0.039367545,0.0364303,0.039198495,0.018997006,-0.0018450235,-0.004125879,-0.012647062,0.011516538,0.01044941,0.018975874,0.017010668,0.023793804,-0.0067567215,-0.020328276,-0.009995088,-0.0292668,-0.039135102,-0.004635671,-0.0039673946,-0.019081531,0.014929238,-0.0129006365,0.0051032,0.023307784,0.00029616788,0.02573788,-0.014665097,-0.036366906,-0.007290286,0.012530839,-0.007406508,0.005663179,0.00819893,-0.009038898,-0.004817928,0.0025648072,-0.03425378,-0.051264446,-0.0021831237,-0.026604261,-0.0005735157,-0.0026797084,-0.012615365,-0.022948552,0.00093307736,-0.032161783,-0.0030508263,-0.017084626,0.011611629,0.023350047,-0.047376294,0.029034356,-0.014834147,-0.022208959,-0.0069416203,0.026033716,0.027343856,0.013999462,0.046700094,0.008087991,0.02607598,-0.006920489,0.0156054385,-0.023603622,-0.0032225177,0.0042843637,-0.055575226,0.04551674,-0.015594873,-0.0058427947,0.010116593,-0.044122078,0.020381104,0.013059121,-0.02827363,0.029943,0.010216966,0.037698176,0.008389112,-0.018236281,-0.038057406,-0.00022121792,0.035141293,0.011632761,-0.013999462,-0.017190283,-0.004413793,0.0054201693,0.029499244,-0.029752819,-0.049700733,-0.008362697,-0.00547828,-0.057941925,-0.010988257,0.004823211,-0.00739066,-0.0048126453,-0.011326358,-0.03951546,-0.013703625,-0.00023029775,-0.049869783,-0.03795175,-0.039325282,-0.013671928,0.034148123,-0.02675218,-0.01605976,0.00932417,-0.007036711,-0.04500959,0.01538356,0.006619368,-0.00823591,-0.02341344,-0.0360922,-0.013851544,0.04733403,0.0037455165,-0.023202127,0.0011397676,0.031379927,-0.003943622,-0.025949191,0.02022262,0.006149198,0.033810023,0.015869578,-0.025315255,0.027132543,0.010808641,-0.006117501,0.011960295,0.013418352,0.010306774,-0.0059009055,0.012129346,0.04249497,0.04200895,-0.028210238,0.00010152912,0.0142953,0.0042553083,-0.022356877,0.014876409,0.02091995,-0.014686229,0.03860682,-0.0045722774,0.0038115517,0.00024317463,0.014379825,-0.01763404,0.009704533,-0.004176066,0.024300953,-0.021976514,-0.021701807,-0.011960295,0.0006408716,0.012446314,0.01814119,0.00994226,-0.019947913,0.0002892342,0.0099528255,0.02022262,0.0018767203,0.030407889,-0.03159124,0.008278172,-0.01622881,0.019863388,-0.016271073,0.0077921534,-0.014834147,0.028315894,-0.012372355,-0.022673845,0.013428918,-0.01562657,0.05384246,0.05815324,0.044079818,0.03712763,0.021300314,-0.013936069,0.019261148,-0.0034681687,-0.017412161,0.013513443,-0.023857197,-0.030386757,0.046192944,0.01204482,0.012879506,0.0051348973,-0.012182173,0.0060963696,-0.0011602384,-0.0069310544,-0.015859013,0.003592315,-0.023962853,0.04615068,-0.030830514,-0.0045749187,0.0076495176,0.040529765,-0.025357516,0.036366906,0.0077657397,-0.0005124331,-0.03442283,0.017454425,-0.011273529,-0.014284735,0.0062178746,0.002789327,-0.02048676,0.0058110976,-0.001086279,-0.029330194,-0.008362697,-0.04080447,-0.0012058028,0.019926783,0.012499142,0.023793804,-0.012974596,0.028062318,0.017359333,-0.028125713,0.017433293,-0.021374274,0.055406176,-0.001176087,-0.010327905,0.026540868,0.02058185,-0.039536595,0.024364347,0.0149503695,0.02740725,-0.021490496,-0.033894546,0.044291127,0.025780141,-0.026604261,0.018489856,0.00009839245,-0.016461255,-0.011421449,0.012076518,-0.002542355,-0.021870859,-0.026646523,0.018880785,0.012953465,0.0036477845,0.00052927213,-0.042896464,-0.02675218,0.018637775,-0.017813655,0.06453488,0.00006459068,-0.0013946635,-0.021532757,0.031147484,-0.031189745,0.06005505,0.03962112,0.042178,0.003948905,0.0020589775,-0.00035592972,0.028823044,-0.018426463,0.01622881,-0.04898227,0.017253676,0.018067231,-0.0020180356,0.02641408,0.06457714,0.029414719,0.0070525594,0.005369982,-0.0062759854,-0.014665097,0.012657627,-0.0047598174,0.00936115,0.0057846834,0.005375265,-0.028062318,0.009244928,0.000082874176,-0.0067567215,-0.0055046943,0.029478112,0.011601063,-0.011822942,-0.036345772,0.015330732,-0.033831153,0.005932602,-0.034000203,0.022547059,-0.000377061,0.012763283,0.0041971975,0.012636496,0.025378648,-0.010512804,-0.012974596,-0.0056895926,0.023328915,0.0059801475,0.005472997,-0.010343754,0.0011212777,0.033493053,-0.0056050676,0.013904371,-0.01603863,-0.0049816957,0.014855279,-0.01521451,-0.008024598,-0.016323902,0.0014620193,0.026688786,-0.014728491,-0.005063579,0.013534575,0.015087723,-0.011822942,0.02740725,0.007094822,-0.025315255,-0.02239914,0.010174704,-0.002262366,-0.03909284,0.0040096575,0.022462534,-0.0017155944,0.01630277,-0.005472997,0.051729333,-0.0026876326,-0.03928302,-0.02408964,0.00015716377,0.025843536,-0.022039909,-0.034063596,-0.01129466,-0.0022504795,0.013735321,0.031887077,-0.019218884,0.03678953,-0.009466806,0.026477473,0.026604261,0.025759012,-0.008420808,0.018373635,-0.016017498,-0.00064153195,-0.0017657812,-0.023202127,0.029795082,-0.0035579766,0.025611091,-0.017940443,0.008352132,0.0023904743,-0.0008987391,-0.0024842443,0.0115059735,0.0020933158,0.003904001,-0.014496047,0.01697897,0.0046911407,0.00064681476,-0.027428381,-0.0066774795,0.007580841,-0.011315792,0.029710557,-0.0055258255,0.003962112,0.0020946364,0.0123300925,0.025336385,0.0006504467,0.026963493,0.0058005317,-0.014326997,0.0063076825,-0.02709028,-0.027322724,-0.017496686,0.0023244391,0.04091013,0.006455601,0.0106924195,-0.0041919146,-0.0204128,-0.012562537,-0.01354514,-0.013597968,-0.021215789,0.037043106,-0.000009569945,-0.026709918,-0.0074276393,0.036535956,0.013978331,0.012235002,0.019070966,-0.018130625,-0.008584576,-0.0018529478,0.018120058,-0.019673206,-0.019831691,0.012055386,0.036493693,-0.011727852,-0.046404254,0.004440207,0.007881962,0.07214213,0.0027100847,0.029520376,0.013217606,-0.016735962,0.023857197,-0.012763283,-0.013407787,-0.038501162,0.02740725,0.016123155,0.001082317,-0.017813655,0.030830514,-0.00094958616,0.020761468,0.030386757,-0.01975773,0.036810663,-0.00752273,-0.0009667553,-0.0005507336,0.03178142,-0.009958108,0.010903732,0.010016219,0.032394227,0.029182276,0.0012573102,0.024427742,-0.023033077,-0.040064875,-0.010766379,-0.020941082,0.001298252,0.012097648,-0.013587403,-0.031802554,-0.01589071,0.012404052,0.007295569,-0.019261148,-0.043044385,0.005568088,-0.008737777,0.01739103,-0.056082375,-0.023054209,-0.0041998387,0.0039911675,0.00990528,0.02856947,-0.01814119,-0.026709918,-0.02740725,0.015151116,-0.03645143,0.015848449,-0.023730408,0.016334467,-0.0066510653,0.0028632863,0.03262667,0.003729668,0.018743431,-0.042558365,-0.0028553621,0.030682595,0.02341344,-0.041375015,-0.020433933,-0.03877587,0.010459975,0.029520376,0.06529561,0.014379825,0.013090818,0.014992632,-0.021606717,0.01538356,-0.008526465,0.002163313,0.03391568,0.009493221,-0.0068676607,0.029985264,-0.013090818,0.026878968,0.037021976,0.023117602,0.035542786,0.0004097484,0.027534036,0.015098288,-0.020085266,0.03928302,-0.028104581,0.018172886,-0.0019969044,-0.006312965,-0.018077796,-0.00033496355,-0.050376933,-0.007601972,0.021141829,0.0033440224,-0.007808002,0.053757936,0.038184192,-0.00079836557,0.00039786208,-0.06774683,0.05067277,0.0076442347,0.027491774,0.0072533065,0.0073325485,0.010676571,-0.017940443,-0.010433561,-0.023096472,-0.017074062,0.0116750235,-0.019345673,0.018637775,0.0047281203,0.011717286,-0.011865204,-0.017612908,0.0072268923,0.023603622,0.03328174,-0.0059061884,-0.0011278812,0.040022615,-0.0002628201,-0.024322085,-0.012382921,-0.012034255,-0.0013141005,-0.03476093,0.017264243,0.017179718,-0.008008749,-0.013460615,0.029626032,0.0044903937,0.024702447,0.044206604,-0.021807464,0.027364986,0.023033077,-0.007295569,0.022187827,0.0038089103,0.0136402305,0.008304587,0.008420808,-0.045601267,-0.030724857,0.024427742,-0.01279498,0.012499142,-0.0008789285,-0.018426463,-0.037698176,0.032351963,-0.013893806,0.0052458365,0.013048556,0.012689324,-0.018405331,-0.03042902,-0.011442579,0.014073422,0.012773849,0.025505435,-0.038902655,0.0059061884,-0.023540229,0.0074434876,-0.024470003,0.012224436,-0.03125314,-0.03243649,0.009720381,0.03277459,0.010792793,0.0068729436,-0.03545826,0.0024340574,0.01052337,-0.0065929545,-0.00530923,-0.030745989,-0.014094553,0.011009389,-0.016947273,-0.0001339689,-0.021891989,-0.022187827,-0.03311269,-0.036324643,0.01061846,-0.0045432216,-0.008706081,0.010116593,0.0114320135,-0.0027681955,-0.01446435,-0.00823591,0.03425378,-0.010655439,-0.017496686,-0.011210135,-0.029520376,0.01204482,0.021976514,-0.0018978516,0.0059061884,0.029330194,0.037507992,-0.006883509,0.027660824,-0.013270434,0.044544704,-0.0009053426,0.0038353244,-0.014665097,0.0034840172,0.0041021067,0.0055205426,-0.022462534,-0.0017869124,0.026942361,0.009863017,0.030323364,-0.005652613,0.0028500792,-0.011358054,-0.02641408,-0.002823665,-0.00045564288,-0.0082306275,-0.013862109,-0.039557725,0.006460884,-0.0041839904,0.0020629396,-0.029414719,0.025357516,-0.020518458,-0.015711095,-0.0045352974,-0.035352603,0.016323902,-0.044882804,0.0076812143,-0.0350779,0.019324541,-0.019049834,0.0017644606,0.007480467,0.014274169,-0.026371818,0.045389954,-0.017982706,0.030745989,-0.019599248,-0.014591138,0.013714191,0.0068518124,0.0120025575,0.036705006,0.030893907,-0.02823137,-0.06850756,0.017380465,0.06119614,-0.002346891,-0.016165417,-0.0032806287,-0.017591776,0.030809382,0.032204047,-0.023603622,-0.0026968776,-0.026688786,0.008806454,0.008299304,-0.016429558,0.038543426,0.01078751,0.0018384199,-0.016366163,-0.0156054385,-0.0051111244,0.008906827,0.010465259,-0.0062125917,0.026646523,-0.0069574686,0.0073589627,0.015806185,0.020328276,-0.0015584307,-0.016915577,-0.023962853,-0.0006795022,-0.005573371,-0.003159124,-0.011696154,-0.0010063765,0.0029081902,-0.008177799,-0.017824221,0.034148123,0.024026247,0.01572166,0.06390094,0.016281638,-0.012182173,0.0016363523,-0.023624754,0.020264883,-0.02150106,0.01129466,0.030302232,-0.00012241275,0.025103942,0.0061597633,-0.0043556816,-0.0043530404,-0.03659935,0.017961575,-0.017951008,-0.0017974782,-0.0044507724,0.035859756,0.039473202,0.032478753,-0.026097111,0.005536391,-0.03934641,0.033049297,0.019821126,0.05067277,0.021353142,0.013936069,0.024385478,0.037803832,-0.0001333911,0.022356877,0.032373097,0.005340927,-0.034380566,0.014020594,-0.016746527,0.0022848179,-0.023878329,0.008822302,-0.04266402,0.0046779336,-0.01664087,0.0029081902,-0.023624754,0.013524009,0.020571286,0.020074701,0.010174704,0.002369343,0.0116750235,0.029921869,0.025019417,0.02406851,0.009741513,-0.019831691,0.023709279,0.010861469,-0.016598608,0.05016562,0.003042902,-0.037043106,0.0028263065,-0.0180461,0.02844268,0.010301491,0.011421449,-0.0027100847,-0.030957302,0.042431578,0.015246207,-0.004992261,-0.0071529327,-0.019969044,-0.02624503,-0.0016125796,-0.015309601,-0.0051956493,-0.01975773,0.021606717,-0.014485481,0.0026704634,0.007834416,0.019926783,0.006777853,0.0008419488,-0.00066068216,-0.026773311,-0.01647182,0.008769475]},{"id":"guide-webhooks-1","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Webhooks Without a Bot\nA Client with intents: 0 is enough. No need to connect to the gateway or handle events. Ideal for scripts or one-off sends.\n\n```javascript\nimport { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.send('Message from a script!');\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.0592185,-0.010449988,0.0035299386,-0.015010086,0.04652556,-0.04339798,-0.023673702,0.04771267,0.06067956,0.010558425,0.005202165,-0.005467552,-0.0048911194,-0.0470278,-0.0038438377,0.033261895,-0.029700566,0.0045058797,-0.041023765,0.019815596,0.023787847,0.03648079,-0.009399853,0.02022652,-0.025043445,0.013434883,-0.008772054,0.04255331,-0.061227456,-0.033239067,0.03595572,-0.025751144,-0.020922804,-0.014153997,-0.019918328,0.06784787,0.0073167034,0.022840442,-0.018103419,0.030978993,-0.023856334,-0.024495548,0.030727873,0.016482558,-0.0036897417,0.030385436,-0.056570332,0.02066027,-0.041411858,0.016745092,-0.051593605,-0.01876546,0.047119115,0.060999162,-0.018719804,0.013834392,-0.046365757,-0.010969348,-0.047530036,0.0357046,0.014998672,0.0034443296,-0.012042313,0.011950997,0.006123887,0.026116408,0.0042461995,-0.019096483,-0.010421451,0.084284775,0.052004527,0.036572102,0.0031703813,-0.0069856825,-0.017258745,0.0073338253,-0.020979878,0.026253384,-0.02892438,-0.018400198,-0.016505387,-0.020614613,-0.11304935,-0.042507652,-0.058807578,-0.02022652,-0.02561417,-0.06935459,-0.0016008856,0.011608561,0.016996212,-0.033079263,-0.04017909,0.011814022,0.04885412,0.0053048953,-0.0009738007,0.025226077,-0.009394146,0.025340222,0.097799554,-0.05241545,-0.066341154,-0.0024327184,0.024016138,-0.018046347,0.030887676,-0.010301599,-0.013206593,-0.042393506,-0.056570332,-0.046411414,-0.012019483,0.0456124,0.03552197,-0.03218893,0.006500566,0.0042119557,0.0038923493,-0.0059640836,-0.036823224,0.0034842805,0.033901107,-0.007744748,-0.002342829,-0.013937122,-0.036206838,0.03166386,-0.022144157,-0.011962411,0.06510839,0.015706372,0.0399508,0.021447873,-0.0099762855,-0.021562018,0.009907798,0.012533137,-0.010838081,0.016048808,0.025819631,-0.08405648,0.030750701,0.009211513,0.025385879,0.030408265,-0.06638681,0.036047038,-0.007744748,-0.027805757,-0.025659828,-0.022657812,-0.012202116,-0.00815567,-0.0027209348,0.06154706,-0.015375351,0.058807578,-0.02677845,-0.056752965,0.017566938,-0.022372449,0.03102465,-0.0097651165,-0.08551754,-0.021253826,0.003395818,-0.0220985,-0.012966888,0.02986037,-0.0039922264,-0.009616728,0.004203395,0.016003149,0.01246465,-0.04698214,-0.008538057,-0.032828145,-0.016802166,0.047210433,0.07013077,0.020340664,0.009913506,-0.028604772,-0.031709522,-0.01577486,0.019884083,0.002067454,-0.022281133,-0.03173235,-0.03266834,0.0017221648,0.0013561869,0.02652733,0.062094957,-0.004240492,0.0062437393,-0.004000787,0.04602332,-0.015375351,-0.03479144,-0.046571217,-0.008646495,-0.028536286,-0.0033273308,-0.0063750064,0.006814465,-0.009993407,-0.012784256,0.0016508241,0.014290972,0.028764576,-0.0008646495,0.0029563592,-0.08807439,0.008834834,0.0095139975,0.03709717,-0.01631134,-0.016973382,-0.047849644,-0.0042233705,0.011682755,-0.036001377,-0.019758524,0.028216679,0.00992492,-0.065427996,-0.036115523,0.016516803,-0.0051051416,0.034859926,-0.019119311,-0.056935597,0.006369299,0.04024758,0.061729692,0.015946077,0.016185781,-0.017578352,-0.02561417,-0.05520059,-0.011037835,-0.010775302,-0.017361477,-0.018719804,-0.02257791,-0.0235139,0.01749845,-0.012019483,0.0691263,0.007938795,0.027189372,-0.00072375155,0.022817614,-0.037302632,0.021105437,-0.0035698893,0.003926593,-0.009502583,0.059309818,-0.026002264,-0.00013938193,0.03858106,-0.00840679,-0.03143557,0.025477195,0.032805312,-0.014188241,0.021710407,-0.014496434,0.0070998278,0.024997786,-0.03622967,-0.077344745,0.0073167034,-0.006814465,-0.011203346,-0.036526445,-0.00016872078,-0.033170577,0.0057785977,-0.027623124,0.03552197,0.034608807,0.004848315,0.0022158425,0.007299582,0.023319853,0.024564035,-0.01891385,0.045658056,0.016277097,-0.023285609,0.008857663,0.09136177,0.042210873,0.011848266,0.05492664,0.02490647,0.018388782,0.012829914,-0.012247774,-0.030362608,-0.005924133,-0.0029535056,-0.0090574175,-0.049904257,0.023148635,-0.008132841,-0.022977417,0.025454367,-0.049630307,0.028696088,-0.0037553753,0.009559656,0.02652733,0.03974534,0.01870839,-0.0178523,-0.042210873,-0.0021088314,0.010512767,-0.03193781,-0.026709963,-0.06889801,-0.0035128167,0.006523395,0.03291946,0.03753092,0.032645512,-0.0040892498,0.035681773,0.020146618,-0.019758524,-0.011734121,0.00031015376,-0.02374219,-0.0054133334,0.05666165,-0.0019476014,0.0007262485,-0.042393506,-0.04675385,-0.01198524,0.04912807,0.0121108,0.02159626,0.018240394,-0.00419198,0.011488709,0.000012373155,-0.030568069,-0.047849644,-0.04871715,0.0018448709,0.0056558917,-0.021402214,-0.0026139237,-0.0010907996,-0.051319655,0.014941599,-0.020888561,0.039106127,0.0008389668,-0.009787946,0.025819631,-0.0392431,0.003972251,-0.008087183,0.050360836,0.007676261,0.01729299,-0.013081034,-0.029449446,0.0012085116,-0.021653334,0.03218893,0.019381845,-0.0034985486,0.03520236,0.026938254,-0.041914098,-0.05008689,-0.0052506765,0.012145043,-0.024107454,0.039562706,-0.027919902,0.0068030506,0.0049738744,-0.029472277,-0.0059640836,0.035544798,-0.0085551785,0.0019276261,0.02511193,0.00007040437,-0.0089718085,-0.03166386,0.017304404,0.03175518,-0.014599164,0.018137664,0.03031695,-0.019575892,-0.02629904,0.06611287,0.0041520298,0.017692497,0.0097251665,0.027623124,-0.0016222878,0.009616728,-0.059583765,-0.018320296,0.014530676,-0.032348733,0.007413727,0.0072025587,-0.011465879,0.008629372,-0.014838869,-0.002519754,-0.015112817,0.0039009103,0.022269716,-0.002006101,0.01246465,-0.0643322,-0.037051514,-0.019986814,0.007459385,0.00464,0.044174172,-0.010096137,0.026641477,0.008172792,-0.003104748,0.0027494712,-0.03565894,-0.012179287,-0.027668783,0.049949914,-0.025682658,-0.002919262,-0.030613728,-0.0034072325,-0.023251366,-0.023194293,-0.027349176,-0.07739041,0.029746223,-0.008480984,-0.019941157,0.0053905044,-0.02255508,0.029175498,0.041252054,0.046274442,-0.04935636,-0.017897958,-0.05100005,0.03524802,0.0199754,0.01876546,0.0063864207,0.037051514,0.0090574175,0.008772054,0.03501973,-0.0106954,0.010712522,0.03618401,0.019769939,-0.041023765,0.06035995,0.029449446,0.01870839,-0.0030248463,0.069674194,-0.014245314,-0.056524675,-0.012704355,0.012727183,0.0784862,0.04161732,-0.024495548,-0.03154972,0.00068201724,-0.038695205,0.012247774,-0.003587011,-0.010324428,0.016288511,-0.038718034,-0.033992425,0.0043118326,-0.012430406,-0.010963641,-0.034905586,-0.05291769,-0.04588635,0.0149530135,-0.021322312,-0.0075392867,-0.006123887,-0.022235474,-0.033261895,0.012453235,0.0037924724,-0.039813824,-0.00033119926,0.028011218,-0.017429963,0.0071797296,-0.010712522,0.035476312,-0.014987257,-0.025066273,-0.030362608,0.039334416,-0.010410037,0.008024404,-0.02349107,0.022943174,-0.0054019187,-0.009194391,-0.016368413,-0.006882952,0.008663616,0.0235139,-0.00367262,-0.001936187,-0.0044602216,0.02513476,-0.030956162,-0.025500026,-0.008149963,-0.0057557686,-0.031800836,0.018308882,-0.024244428,0.0046885116,-0.043877393,-0.01631134,0.024701009,0.026230553,-0.01009043,0.04323818,0.01676792,-0.025248906,-0.022018598,0.0023257073,0.038192965,-0.011916753,0.003840984,-0.027098056,-0.0031446987,0.012145043,0.000960246,-0.015409594,0.04285009,0.0043831733,-0.012304846,0.014405117,0.0031561132,-0.0015637885,-0.030408265,-0.019199213,-0.021288069,0.009028881,-0.0062722755,0.01398278,0.007898844,-0.0048854123,-0.0220985,0.0019789913,-0.020614613,0.0019632964,-0.0028222387,-0.01079813,-0.011619976,0.055291906,-0.024792325,-0.006882952,-0.0028693236,0.0005086593,0.032074787,0.010889446,-0.0033701353,-0.016824994,-0.0019162116,-0.0134462975,-0.018320296,0.002050332,-0.0034899877,0.0022771957,-0.041434687,0.016471144,0.01398278,-0.02174465,-0.017452793,-0.013743076,-0.014599164,0.035384994,-0.01246465,0.007482214,0.006563346,0.010786716,0.028056877,0.026002264,-0.015375351,-0.038946323,0.0008289791,0.023194293,-0.034129396,0.014987257,0.035773087,0.01787513,0.02255508,0.03029412,0.017076114,0.0036155474,-0.017669668,0.032074787,0.02515759,-0.012133629,-0.012966888,-0.0014517836,0.017121771,-0.008075769,0.0077390405,-0.01676792,-0.04538411,-0.0101417955,-0.0034928413,-0.024358574,-0.0028678968,-0.027098056,-0.038649544,-0.036069866,0.014507848,0.0009160148,0.01903941,0.021459287,-0.03451749,0.029243985,-0.0067630997,-0.005393358,-0.0011935302,0.026961083,0.051410973,-0.035088215,0.0242216,-0.0526894,-0.0066032964,-0.027919902,0.014530676,0.0034928413,0.015569397,0.015421009,-0.040590014,0.055839803,-0.02887872,0.01729299,-0.006483444,0.019381845,-0.013354981,-0.007910258,-0.010495646,0.051593605,0.017464207,0.009274293,-0.013400639,0.002735203,-0.011580025,-0.010261648,-0.0047284625,0.0073167034,-0.015478081,0.0029820418,-0.017030455,-0.0025154736,0.018651316,-0.0131951785,0.030978993,0.031572547,0.030659385,0.021356557,-0.01446219,-0.038101647,0.04020192,0.009588192,-0.0010066174,0.0053905044,-0.0006195941,0.036709078,-0.007231095,0.014005609,-0.0014482165,-0.011500123,0.003387257,-0.005901304,-0.013343567,-0.031892154,0.020774417,-0.005907011,0.0033786963,-0.02823951,-0.0012998278,0.037690725,-0.0016493973,-0.0228062,-0.02255508,0.010381501,0.0006417097,-0.01233909,0.00428615,-0.029152669,-0.0010907996,0.013788734,-0.004055006,-0.009981993,-0.008617958,-0.028810235,0.021630505,0.012795671,0.003064797,-0.004086396,0.009776532,-0.005193604,-0.00026824107,-0.011602853,-0.034175057,0.03360433,-0.05049781,0.011659927,-0.03193781,-0.03481427,0.0073737763,0.015341107,-0.0033587208,-0.002312866,0.021858795,-0.014450775,0.04611464,-0.016630948,-0.0083040595,-0.008817712,-0.05145663,0.006215203,-0.03435769,0.020614613,-0.013001132,-0.017235916,-0.013994195,-0.028171021,-0.001874834,0.01562647,-0.028102534,0.017544108,-0.0063807135,0.0399508,0.009548241,-0.01645973,-0.0456124,-0.002612497,0.0138229765,-0.0052620913,0.007938795,-0.000055333643,-0.029403789,0.023251366,0.04588635,-0.04771267,-0.04392305,-0.012909816,-0.021915868,-0.042621795,0.013971365,0.006774514,-0.014119755,-0.012259188,0.006860123,-0.02867326,-0.03262268,0.011722706,-0.036206838,-0.031207282,-0.041891266,-0.0042690285,0.03360433,-0.018491512,-0.014873112,0.018628487,-0.003141845,-0.092548884,-0.008298351,0.0070827063,-0.021436458,-0.031869322,0.006877245,-0.015101402,0.0790341,-0.0031018942,0.0099877,0.012875572,-0.018822534,0.0029592128,-0.027006742,0.036138352,-0.027280688,0.028307995,0.023833506,-0.013526199,0.003073358,-0.034859926,-0.019324772,0.007248217,0.03225742,0.002489791,0.010661156,0.0074879215,0.016117293,0.03780487,-0.0031133087,0.0098507255,0.007955916,0.015318278,-0.013092448,0.026025092,0.027417663,0.003410086,0.017429963,-0.010021944,-0.008566593,-0.0067859287,0.015500911,-0.01866273,-0.021379385,0.013115277,0.024290087,-0.007567823,-0.009753702,0.006192374,0.003410086,0.010598376,0.010581255,-0.015592227,-0.029198328,0.020340664,0.03575026,0.018160492,0.021288069,0.012487479,-0.032074787,-0.027372004,-0.013800148,0.016174367,-0.034380518,-0.0018448709,-0.026687134,0.010295892,0.0042461995,0.0035698893,-0.0043403693,-0.008994637,0.01822898,0.060953505,0.05332861,0.034426175,0.023901993,-0.0038381305,-0.01092369,0.0028379336,-0.021915868,0.0070199263,-0.006169545,0.010746765,0.023833506,0.04346647,-0.009080246,0.015523739,0.013959951,0.016220024,-0.0037353998,-0.0024384256,-0.016185781,-0.0018562854,0.0044687823,0.020409152,-0.036115523,-0.057985734,0.026915425,0.033992425,-0.03807882,0.03364999,-0.008612251,0.010056187,-0.014359459,0.0063065193,0.035270847,-0.03575026,0.0071626077,0.013138106,-0.046936482,0.009628143,-0.0043346616,-0.017555524,0.015820516,-0.012829914,0.021961525,0.050452154,-0.013115277,0.0075335796,0.007830357,0.034608807,0.015523739,-0.010044772,0.0043917345,-0.033239067,0.011294662,0.0046542683,-0.017521279,0.004662829,0.014028438,-0.013491956,0.036138352,0.0015195572,-0.004000787,-0.010358672,-0.008269816,0.035636112,-0.0016023124,-0.026869766,0.02397048,0.002058893,-0.011688462,0.021687577,-0.001890529,0.009143026,-0.0105184745,-0.003955129,0.027372004,0.003972251,-0.01929053,0.0017421403,-0.0242216,-0.03876369,0.016779335,-0.0025982289,0.037051514,0.00084110704,0.0051964577,-0.028559115,0.06319075,-0.009034588,0.044585094,0.026458845,0.018628487,0.019507404,0.00934278,-0.024518376,0.009896384,-0.025203247,-0.011243297,-0.0199754,0.015535153,0.011734121,-0.0263447,0.037234146,0.037667897,0.026413186,-0.004157737,0.0036612055,-0.005102288,0.02912984,-0.00019386839,0.0101417955,0.032303076,-0.0011707011,0.007904551,0.0045315623,0.02771444,-0.019027995,0.0057785977,0.016585289,0.051776238,0.016904896,-0.02938096,-0.0535569,0.0006131734,-0.014393702,0.017121771,-0.047803987,0.021824552,-0.0033330382,0.01671085,-0.009833604,-0.010980763,0.015991734,-0.008212743,-0.024701009,0.019233456,0.009394146,0.035156704,-0.003087626,0.0020703075,-0.018286051,0.0061581302,-0.021185338,0.032759655,-0.045840688,0.0034157934,-0.0030305535,-0.0030705044,-0.0051450925,-0.015923247,0.020237934,0.036115523,-0.037576582,0.0058071343,-0.00084538746,-0.024061795,-0.016345585,0.025796803,0.02513476,-0.017943617,0.0037011562,0.030020172,0.0070028044,-0.03595572,-0.018891022,0.025385879,0.008423911,0.019222042,-0.0034528906,0.03974534,0.008286937,-0.06323641,-0.013743076,-0.0067117345,0.0020032472,0.010370086,-0.043306667,0.0054989425,-0.00057750306,0.004985289,0.057483494,-0.014713309,0.041891266,0.0070884135,0.032280248,0.028285166,0.035910062,-0.021288069,0.02677845,-0.024769496,-0.024792325,-0.047803987,-0.012510308,0.015249791,-0.0013633211,0.01491877,-0.016802166,-0.008201328,-0.0073566544,0.009730874,0.00014705105,-0.010792423,0.007242509,0.0141996555,0.013332153,0.008520935,-0.021504944,-0.0059640836,-0.020146618,-0.038398426,0.020066716,-0.009668093,0.028125362,-0.007322411,-0.030590897,-0.015421009,0.015135646,0.004209102,0.04326101,-0.01633417,0.009245756,-0.015911832,0.014450775,0.012715769,-0.031846493,0.01385722,0.01929053,0.026709963,-0.014256728,-0.010952227,-0.03449466,-0.025294563,-0.024632521,0.009685216,0.0123162605,-0.020055301,0.041548833,0.0020788684,-0.020968463,0.005907011,0.05972074,-0.015934661,-0.0040978105,0.03456315,-0.0150785735,-0.026801279,0.005787159,0.0055132103,-0.0044459533,-0.00499385,-0.0134462975,0.016950553,-0.010741058,-0.017224502,0.009468339,0.013845806,0.04401437,-0.0039123246,0.035681773,-0.017190259,0.0022643544,-0.013457713,-0.0070598773,-0.005533186,-0.039037637,0.03355867,0.010661156,0.02442706,-0.01539818,0.025477195,-0.033033606,0.023650873,0.030750701,-0.023559557,0.007881722,-0.036115523,-0.0015851907,-0.011905339,0.04698214,-0.02960925,-0.015135646,0.023422584,0.027645953,0.024541205,0.03266834,0.009959164,0.0037696434,-0.028604772,-0.032051954,0.0055417465,-0.0003699016,-0.009462632,0.011597146,-0.015466667,-0.012738598,-0.018902436,-0.0036983027,-0.015215548,-0.027326347,0.016847823,-0.012841329,0.025431538,-0.07844054,-0.017555524,-0.006209496,-0.0022686347,0.0051194094,0.038832176,-0.0036298155,-0.012841329,-0.03846691,0.0054019187,-0.03974534,0.028718919,-0.03524802,-0.0046514147,0.01598032,-0.0036583517,-0.00570155,-0.01954165,0.020386323,-0.0470278,-0.005724379,0.03123011,0.023422584,-0.033672817,-0.033079263,-0.04024758,-0.018012103,0.02725786,0.03928876,0.0054960884,0.015295449,0.022543665,-0.0010586962,0.02771444,-0.010198869,-0.012179287,0.022258302,0.031207282,0.017920787,0.017955031,0.005370529,0.033033606,0.014222485,0.034722954,0.012875572,0.017407134,0.018343125,0.0074536777,-0.024609692,0.021664748,-0.024837984,-0.0065975892,-0.0028921526,-0.014816039,-0.018879607,-0.018103419,-0.013092448,-0.0057044034,0.025294563,0.00963385,0.014850283,0.027280688,0.025203247,-0.0019162116,-0.012647281,-0.045932006,0.012304846,-0.009782239,0.043968707,-0.004557245,-0.00022472325,0.0063807135,-0.02938096,-0.014770381,-0.041503172,-0.023719361,-0.001920492,-0.010564133,0.021322312,-0.0126929395,-0.0014510701,-0.01516989,-0.03125294,0.02702957,0.03033978,0.011699877,0.0076933824,-0.020751586,0.023468241,-0.004602903,-0.022212645,-0.021584846,-0.0007490775,-0.005641624,-0.01610588,-0.010609791,0.017966446,0.012795671,-0.015546569,-0.0013026814,-0.0021116852,-0.0016964822,0.05666165,-0.010649742,0.010164625,0.026367528,-0.0036012793,0.023080148,-0.019427503,-0.010689693,0.014485018,0.0080928905,-0.022931758,-0.0048226323,-0.015295449,-0.046411414,0.035133876,-0.027006742,-0.0153296925,-0.033695646,0.02199577,-0.0069799754,-0.0003902337,0.010718229,0.007436556,-0.0123162605,-0.0076933824,-0.02336551,0.0221784,0.014313801,0.030020172,0.00009978782,-0.0029848954,-0.006101058,0.006083936,-0.028171021,-0.007881722,-0.025066273,-0.01671085,-0.008361132,0.028216679,-0.0077732843,0.05588546,-0.014964428,-0.015158475,0.010775302,-0.0070541697,0.003450037,-0.020820074,-0.025522854,0.019564478,-0.020842902,-0.0069742682,-0.008480984,-0.034951244,-0.022452349,-0.043078378,0.0046200245,0.019199213,0.018160492,0.026390357,-0.016014563,-0.03458598,-0.010980763,-0.010649742,0.018856777,-0.026184896,-0.017738156,0.011591439,-0.028718919,-0.005376236,0.0007505043,0.00570155,0.0015195572,0.047347404,0.030705044,-0.016356999,0.01623144,-0.012533137,0.056752965,0.016779335,0.01633417,-0.024723837,0.024586864,-0.00063671585,0.020306421,-0.013480541,-0.0023556703,0.03403808,-0.019712865,0.046594046,-0.009845018,0.019884083,0.009639557,0.003110455,-0.01583193,-0.011699877,0.02010096,-0.035773087,-0.031389914,0.026276212,-0.011197639,0.0008903321,0.0046057566,0.01903941,-0.035773087,0.0038552522,0.005162214,-0.037302632,-0.011950997,-0.0019904058,-0.008709274,-0.039060466,0.012042313,-0.014530676,-0.02207567,-0.0032103322,0.006146716,-0.019005166,0.037987504,-0.004394588,0.035179533,0.010295892,0.008566593,-0.01808059,0.013229422,-0.009268586,0.0025868143,0.01964438,-0.013640344,-0.06246022,0.0263447,0.008012989,0.005096581,-0.017224502,-0.005533186,0.00251262,0.024016138,0.0027608857,-0.021893037,-0.012852743,-0.015101402,0.020386323,0.017897958,-0.019918328,0.014930185,0.0038894957,0.007259631,-0.012282018,-0.0016993358,-0.010803837,-0.012772841,0.004691365,-0.03622967,0.009479754,-0.0062722755,-0.0041520298,0.027440492,0.00079188193,-0.011431636,-0.03314775,0.009719459,-0.008264109,-0.033901107,-0.010415744,-0.010621206,-0.014279557,-0.013674588,0.022235474,-0.007881722,0.026481673,0.03552197,0.0010943665,0.03846691,0.002826519,-0.032645512,-0.009525412,-0.01812625,0.008098598,-0.0006331488,-0.0015038622,0.018731218,0.00078189425,0.015306864,-0.015249791,0.03732546,-0.020671686,-0.031184454,0.0079273805,-0.0069970973,0.0115629025,0.0066946126,0.029997343,0.027897073,0.014131169,0.0065576383,0.006917196,-0.011197639,0.0406585,-0.009656679,0.05547454,0.031275768,0.029563593,0.01974711,0.031869322,0.026915425,-0.0026224847,0.038809348,0.0012634441,-0.055291906,0.033079263,-0.0018705535,0.00010531673,-0.010004822,0.0023941942,-0.038855005,0.017932203,-0.038192965,-0.014096925,-0.043443643,-0.00805294,0.007681968,-0.0058499384,0.008355425,-0.014895941,-0.010586962,0.044927526,0.020443395,0.011893923,0.005139385,-0.059264157,0.010187454,0.011580025,-0.012647281,0.06638681,0.0003106888,-0.0620493,-0.0042205164,0.012784256,0.008869078,0.011814022,0.033946764,-0.010592669,-0.018114835,0.022829028,-0.014416532,-0.021447873,-0.020534711,-0.027006742,-0.024061795,-0.029632078,-0.0069856825,-0.009125904,-0.01469048,-0.0021701846,-0.01005048,-0.015660714,0.0062779826,0.0021502092,-0.021927282,-0.0011500124,0.0020831488,0.003250283,-0.015089988,0.018742632]},{"id":"guide-webhooks-2","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Creating a Webhook\nCreate a webhook on a text channel. Requires Manage Webhooks permission. The token is returned only when creating—store it securely. It will never be returned when listing or fetching.\n\n```javascript\nimport { Client } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\nconst channel = client.channels.get(channelId);\nif (!channel?.createWebhook) throw new Error('Channel does not support webhooks');\n\nconst webhook = await channel.createWebhook({ name: 'My Webhook' });\nconsole.log(webhook.id, webhook.token); // Store token—it won't be returned when listing\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.051986944,0.005757908,-0.027275464,-0.050528128,0.029463688,-0.025507199,0.005907105,0.05189853,0.035608403,0.022479048,0.03262446,0.028579557,-0.009460209,-0.07157046,-0.0010547414,0.05432989,-0.044029757,-0.00731619,-0.029087933,-0.008150589,-0.004851673,0.022379583,0.00028423453,0.035343163,-0.031718224,0.015383892,-0.05123543,0.009294434,-0.048980895,-0.004257647,0.024821997,-0.018290475,-0.0024479397,0.03525475,-0.0039482005,0.059059996,0.038813382,-0.004276987,-0.011361092,0.02081025,-0.041112125,0.017240567,0.034348518,0.032049775,0.025661923,0.04672636,-0.07532802,0.02429152,-0.051986944,0.028159594,-0.025485096,-0.004525649,0.0024479397,0.04148788,-0.015814906,-0.028712176,-0.043477178,0.008178218,-0.09354113,0.054108858,-0.002670354,-0.014521863,0.0018290475,-0.009255754,0.01953931,0.035962056,-0.03640412,0.0059513114,-0.014831309,0.051058605,0.10247086,0.008741852,0.041045815,-0.016080145,-0.029795239,-0.005746856,-0.02659026,0.028623763,-0.02309794,-0.009520994,-0.010117782,-0.016687986,-0.1309399,-0.01356037,-0.05835269,0.019782446,-0.025684025,-0.083285205,0.012234172,-0.017737892,-0.017848408,-0.02215855,-0.048494622,0.026966017,0.04659374,0.012444153,-0.038724966,0.022722185,-0.02712074,0.0044013183,0.062066045,-0.01543915,-0.060076747,0.0067028236,0.026081884,-0.03127616,0.016931122,-0.0002996032,-0.011117956,-0.036956705,-0.07064212,-0.054197274,-0.022921113,0.06538154,0.036934603,-0.03322125,0.036138885,0.0013621154,0.016345385,-0.016632728,-0.038968105,-0.013847712,0.044891786,-0.025595613,0.0030806463,-0.03348649,-0.03719984,0.02464517,-0.008868946,-0.014831309,0.08173797,0.009692294,0.027761735,0.008692119,-0.037641905,-0.013372492,0.018213114,0.024114693,-0.00053600484,0.026435537,0.02074394,-0.047168426,0.065779395,-0.02316425,0.001997585,-0.002901057,-0.026037678,0.035011616,-0.031010918,-0.0068907016,-0.04712422,-0.003403907,0.030436233,0.0063270675,0.014798154,0.01570439,0.0022863094,0.052605834,-0.04102371,-0.06657512,0.00043550393,0.017085845,0.015461253,-0.018688334,-0.021716485,-0.0076753683,0.019815601,-0.026435537,-0.033398073,0.0342601,0.009968584,-0.021042334,-0.007161467,0.016842708,0.008636861,-0.008233476,-0.019041987,-0.050970193,0.0061668186,0.007802462,0.018754644,0.014400295,0.042018358,-0.005840795,-0.009664665,-0.010261454,0.02262272,-0.026413435,-0.0012129182,-0.016566418,-0.046372708,0.0042272545,-0.012742548,0.0007363159,0.05021868,0.02725336,0.008752904,-0.0072498797,0.023672625,-0.0355863,-0.00912866,-0.018412042,-0.01664378,-0.014201365,-0.0006617173,0.016886916,-0.022202756,0.016323281,-0.023318974,-0.010692468,0.028314317,0.025330372,0.015461253,0.0076422133,-0.09168445,0.019307226,-0.008222424,0.023053734,-0.029176345,-0.040515333,-0.064011134,-0.012731496,0.009625983,0.003124853,0.016997432,0.032469735,0.014831309,-0.05667284,-0.007349345,0.0107200965,-0.010421703,0.024070485,-0.0100017395,-0.058308486,0.016334333,0.011095853,0.022269066,0.033795934,-0.023274766,0.012455205,-0.03081199,-0.020091893,-0.0021025757,0.005835269,-0.00929996,0.00045069994,-0.027651219,-0.0382608,0.057070702,0.008437932,0.06807814,0.020434493,0.01731793,0.009753077,0.021395987,-0.011449506,-0.004652743,0.019793497,0.027164945,-0.018179959,0.078997165,-0.025153548,-0.03852604,0.023871556,-0.004647217,-0.042902492,0.008752904,0.008465561,-0.00414713,0.0151076,-0.0117589515,-0.011289257,0.039785925,-0.017273722,-0.08916468,0.02067763,-0.025573509,-0.00949889,-0.021230211,0.02369473,-0.025264064,0.0062441803,-0.02128547,0.020633424,0.032116085,0.007769307,-0.016875863,0.006647565,0.023915762,0.032182395,-0.042394113,0.010200669,-0.01919671,-0.014510811,-0.0069459598,0.092480175,0.03947648,0.019351432,0.035939954,0.030303614,-0.018157855,0.019749291,-0.04316773,-0.02926476,-0.0053655743,0.0043902663,0.017030587,-0.054020446,0.022943217,-0.03134247,-0.012985684,0.032315012,-0.016599573,-0.02316425,-0.022545358,0.038371317,0.06569099,0.000054394823,0.02866797,-0.021451246,-0.012201018,-0.013273027,-0.015251271,-0.042814076,-0.050704952,-0.047168426,-0.00502021,0.008415828,0.050130267,0.007691946,0.05432989,-0.029242655,0.031121435,0.008205847,0.01698638,-0.041178435,0.029949961,0.0066144103,-0.0041139754,-0.0022448655,0.03640412,-0.006531523,-0.025794541,-0.018986728,-0.009841491,0.024888307,0.038702864,-0.0066641425,-0.008852368,-0.017561065,-0.020257667,0.0064044287,-0.024402035,-0.07957185,-0.034812685,0.000014246262,0.016687986,-0.0049207453,0.015969628,-0.032845493,-0.0516775,0.007614584,-0.011471609,0.0476547,0.010499064,-0.029375276,0.038437624,-0.03852604,0.008592655,-0.020500803,0.017406343,-0.020578165,0.035033718,0.007216725,-0.039697513,-0.0068851756,0.012764651,0.04544437,0.008001392,0.021429142,0.07475334,0.00009747897,-0.018113649,-0.057910625,0.004550515,0.021716485,0.016091198,0.042195186,-0.011792107,0.00543741,-0.02221381,-0.022379583,0.00072457356,0.028358525,0.009288909,0.024556758,0.03571892,-0.000060654544,0.01578175,-0.0012806095,0.018909367,0.03262446,-0.015947526,0.03147509,0.06303859,-0.014411347,-0.041333158,0.03571892,0.015361788,0.015947526,0.015229168,0.058838964,-0.005492668,0.01268729,-0.008482139,0.009725449,0.02517565,-0.021042334,0.02262272,-0.019373536,-0.0093275895,0.009443631,0.019572465,-0.008703171,-0.010996388,-0.0010181329,0.005724753,0.0054512243,-0.004851673,-0.04462655,-0.033132836,-0.061005086,0.027142843,0.014787102,0.02471148,-0.027695425,0.028756384,-0.03456955,-0.01043828,-0.015317582,-0.0152954785,0.01657747,0.012742548,0.033000216,-0.007393551,0.017804202,-0.0044869683,-0.002073565,-0.021451246,0.014820257,-0.02329687,-0.059590477,0.027938562,-0.003561393,0.0006188922,0.008520819,-0.024954617,0.039852235,0.0006185468,0.048096765,-0.032580253,-0.031939257,-0.0052108513,0.039100725,0.009598355,-0.008918678,0.0009711634,0.035100028,0.014864464,-0.029728929,0.036691464,-0.02033503,0.009294434,0.039962754,-0.0089407815,-0.008752904,0.042150978,-0.010493538,0.014610277,0.011305834,0.05746856,0.017627375,-0.065293126,0.0022655874,0.0031966886,0.10238245,0.041509982,-0.01920776,-0.05256163,-0.02491041,-0.039189138,0.0057137012,0.01537284,-0.009178393,-0.0056915977,-0.04511282,-0.049776614,0.0138808675,0.014676586,-0.010062524,-0.02725336,-0.021539658,-0.03308863,0.011946829,0.0068299174,0.00069867127,0.0025474045,-0.0069349078,-0.005039551,0.046107467,-0.0149307735,-0.004489731,-0.017284775,0.013980333,-0.01124505,0.0015955814,-0.032668665,0.017804202,-0.010919026,-0.012046294,-0.024114693,0.043609794,0.014897619,-0.004464865,-0.033994865,0.0006903825,-0.032005567,-0.0016384065,0.009913326,0.000066180364,0.014157158,0.0013179088,0.0029480266,-0.012079449,-0.009852543,-0.00005404946,-0.038083974,-0.005785537,-0.006249706,-0.0035171865,-0.040891092,0.059855714,-0.037641905,0.033840142,-0.03337597,-0.012543619,-0.005056128,0.023606317,-0.012234172,0.040935297,0.035873644,-0.045090716,-0.021716485,-0.005487142,0.032933906,0.032381322,0.009067875,-0.00065584615,0.0033293085,-0.016732192,-0.006023147,0.011637383,0.017085845,0.013074097,-0.02718705,0.0021688857,0.010703519,0.009112082,-0.011858417,-0.011012966,0.0050754687,-0.019340381,0.01832363,0.010786407,0.017008483,0.020379236,-0.045930643,0.010034895,0.0027173236,0.028778486,-0.008178218,-0.026479743,0.015627028,0.049246136,-0.014046642,0.027496496,-0.0121236555,-0.026347125,0.030767784,0.00006423769,0.0315635,-0.016931122,-0.011560022,0.018467302,-0.015693337,0.00076463574,-0.011090327,-0.00044862775,-0.015129704,0.02006979,-0.019649826,0.008051124,-0.039940648,-0.03618309,-0.026634468,0.0224901,0.0026579208,0.017704736,-0.026833396,0.033994865,0.027894355,-0.0016909018,-0.017019534,-0.033000216,0.036735673,0.026811294,-0.0152844265,0.031939257,0.020036634,0.026479743,0.025396682,0.006780185,0.004437236,0.001264032,-0.011327937,0.013140407,0.020832352,-0.01030566,0.0114052985,0.00668072,0.021020232,-0.011261627,0.03750929,-0.010333289,-0.033862244,0.0039399117,0.012598877,-0.0019934408,-0.034525342,-0.00070247025,0.012333637,-0.037177738,0.014422398,-0.0052025625,-0.02725336,0.009587303,0.0039841183,0.034238,-0.0041084494,-0.0013780021,0.0064486354,0.04867145,0.01967193,-0.013792454,0.0248441,-0.060253575,-0.014599225,0.0064044287,0.031254057,0.00052046345,0.0070730536,0.020843405,-0.023252664,0.02718705,-0.021429142,0.025905058,-0.03067937,0.010819562,-0.02006979,-0.00096770976,-0.031629812,0.028424835,-0.009681242,-0.0077251005,-0.008973937,0.007807988,-0.0006482481,-0.050130267,0.031010918,0.032867596,0.022269066,-0.004083583,-0.018566765,-0.021594917,0.021937517,-0.01242205,0.027032327,0.01336144,0.034127485,0.047035806,-0.031895053,-0.023385283,0.023650523,0.009974111,-0.0011459176,0.0010851335,0.025595613,0.023959968,0.021782795,-0.024490448,-0.0020846168,-0.0335528,-0.010377496,-0.0076698423,-0.0026606838,-0.000534278,0.019417742,-0.009504416,0.019561414,0.011847365,-0.011991036,0.028137492,0.004089109,-0.02926476,-0.0145771215,0.026811294,0.004083583,-0.00899604,0.00899604,-0.0036746725,0.009786232,0.019904016,-0.034149587,-0.03134247,-0.010360918,-0.033884346,0.030900402,0.014787102,0.0008820595,-0.01825732,-0.006365748,-0.026546054,0.021097593,-0.04040482,-0.031320367,0.035696816,-0.054860372,0.0105377445,-0.022070138,-0.030856196,-0.005835269,0.027540702,-0.019550363,0.02087656,0.032956008,-0.0014070127,0.029706825,-0.019981377,0.001967193,-0.0042548836,-0.039830133,0.005053365,-0.041134227,0.029574204,-0.023805246,-0.0064154807,0.0027684374,-0.044206586,0.00072664575,0.015881216,-0.024733584,0.031917155,0.0108803455,0.0149307735,-0.03337597,-0.041797325,-0.04619588,0.0047936514,0.03419379,-0.0047218157,-0.024136795,-0.03342018,-0.016400643,0.012455205,0.021992777,-0.048627242,-0.038857587,0.012002088,-0.004661032,-0.050174475,-0.0043571116,0.02356211,-0.018555714,-0.0029867073,0.024114693,-0.05348997,-0.012952529,0.0056059477,-0.05552347,-0.018975677,-0.025794541,-0.017295826,0.048317797,-0.010714571,-0.024976721,0.03140878,-0.004500783,-0.06927172,-0.03512213,0.010399599,-0.009034721,-0.014864464,-0.038305007,-0.017450549,0.036293607,-0.01342775,-0.01543915,0.012101552,0.0114274025,0.017340032,-0.019119348,0.030988816,0.0035365268,0.017472653,0.03927755,-0.0005522369,0.015991732,-0.031651914,-0.033818036,-0.0121347075,0.0315635,0.022125395,0.0093275895,0.011725796,0.013063046,0.042040464,-0.014997084,-0.00021205346,0.038614452,0.030259408,-0.02276639,0.012532567,0.02222486,-0.016433798,0.01617961,-0.019550363,-0.019826652,0.00886342,0.0056584426,-0.013914023,-0.0021467824,0.0010492157,0.020058738,-0.0044565764,-0.0149307735,0.0007570378,-0.011825262,-0.004600248,0.007951659,0.021992777,-0.0080842795,-0.0049179825,0.035962056,0.011957881,0.018213114,0.0026662096,-0.019229865,0.013947178,0.0138698155,0.0005487833,-0.01960562,-0.01135004,-0.016201714,-0.025153548,-0.0110848015,0.0071006827,-0.010416176,-0.011438454,0.026966017,0.041532088,0.08686594,0.033199146,-0.00960388,-0.004619588,-0.028513247,0.043963447,-0.025065133,0.014919722,0.008719749,0.01416821,0.057689592,0.03432641,0.011891571,0.0010347103,-0.0124883605,-0.0029646042,0.005647391,0.021296522,-0.012068397,0.000011882678,-0.0042990902,0.05525823,-0.023318974,-0.029596308,0.002843036,0.03249184,-0.029773135,0.008415828,0.0029425009,-0.01570439,-0.016389592,0.017693685,0.026523951,-0.0015831483,-0.0077029974,0.004218966,-0.04933455,0.018345732,-0.0042686984,-0.006150241,-0.0021025757,-0.022832701,-0.0002327753,0.025529303,-0.004705238,0.019771395,-0.0063767997,0.044759165,0.04332245,-0.012499412,0.010233824,-0.022269066,-0.020788146,0.009388373,-0.0073880255,0.01181421,0.00046140622,-0.031033022,0.053357348,-0.00035779705,-0.00061336637,-0.014046642,-0.015538614,0.034525342,0.0016605098,-0.043897137,0.019506155,-0.0033182567,-0.009172866,-0.007995866,0.012433102,0.020666579,0.01087482,-0.0020224513,0.024379931,-0.01799208,-0.020766044,-0.0060397247,-0.0055534523,-0.016875863,0.010786407,-0.024998823,0.051014397,0.0072333026,0.01104612,-0.0382829,0.03551999,-0.027363876,0.045798022,0.05384362,0.023738936,0.04069216,0.03410538,-0.009244702,0.01087482,-0.009974111,-0.007001218,-0.028380627,0.025418786,0.028026974,-0.004185811,-0.0003113456,0.016842708,0.04444972,0.016422747,-0.008835791,0.016069094,-0.004249358,0.008156115,0.010863768,0.011272679,-0.01631223,0.022070138,-0.028071182,-0.004622351,-0.019616673,0.008216899,-0.029043727,0.046947394,0.031872947,-0.018003132,-0.010239351,-0.0031966886,-0.014124004,0.0074156546,-0.039918546,0.0022780206,0.00167018,-0.0020044923,-0.0035227123,-0.0017931296,0.018699385,-0.016002784,-0.03235922,0.019904016,0.029684722,0.026479743,0.0181247,-0.014742896,-0.02356211,0.015505459,0.014378192,0.011515816,-0.0114274025,-0.011991036,0.00521914,-0.0017447786,-0.0035586301,-0.024866205,-0.007874298,0.0034702169,-0.032513943,-0.020556062,-0.0045753815,-0.0015941999,0.004536701,0.0055037197,0.028115388,-0.026081884,0.0100238435,0.026081884,-0.00303644,-0.015096549,-0.030502543,0.008984989,0.00037506525,0.022677979,-0.0011224328,0.054197274,0.008100857,-0.046240088,-0.016367488,0.010841665,0.011162163,-0.0069625373,-0.018168906,0.00041685428,-0.019473001,0.029684722,0.03739877,0.005680546,0.027607013,0.028424835,0.03812818,0.0422836,0.035409473,-0.014124004,0.020633424,-0.0082555795,-0.014875515,-0.003500609,-0.017141104,0.03330966,-0.017163206,0.008167166,-0.013947178,0.016555365,0.021572813,-0.014875515,-0.010228299,0.018555714,0.0011700931,0.014135055,0.0038376842,-0.0017737892,0.011018491,0.013350389,-0.016997432,-0.02362842,-0.00008530489,-0.016953224,0.025507199,-0.0071725184,0.0002635127,0.014333985,0.0019478527,0.017218465,0.034238,-0.020102944,0.013803506,-0.028314317,0.012178914,-0.006597833,-0.02860166,-0.012013139,0.011803159,0.026634468,-0.007349345,0.01084719,-0.011869468,-0.04343297,-0.013505111,0.021395987,-0.009150763,-0.016831657,0.04946717,0.010515641,-0.012377843,-0.0017503045,0.031674016,-0.018478353,-0.018478353,0.017207414,-0.020412391,-0.017406343,-0.00033742058,-0.0110626975,-0.007719575,-0.032536045,0.003845973,0.019583518,0.0035365268,0.0039868816,0.009786232,0.0035807334,0.024203105,-0.0028181698,0.010802984,-0.0021633597,-0.010725623,0.0054760906,0.0102061955,-0.032513943,-0.02362842,0.01731793,0.022788495,0.010576425,-0.0077803587,0.0211418,-0.032845493,0.061535567,0.019229865,-0.00993543,0.022921113,-0.028358525,-0.004503546,-0.009255754,0.069183305,-0.004995344,-0.0014256623,-0.001657747,0.028115388,0.012598877,0.017914718,0.035962056,0.0043571116,-0.021793846,-0.014179262,0.0018594394,0.012632032,-0.002840273,0.03512213,-0.001730964,-0.022854805,-0.01154897,-0.0024451767,-0.009764129,-0.03536527,0.007056476,-0.009277857,0.02939738,-0.0610935,0.011361092,-0.010974284,0.0035392896,0.011129008,-0.007879823,0.002931449,0.00009799702,-0.0128309615,-0.013947178,-0.04880407,0.010454858,-0.025794541,0.004210677,0.016975328,0.0048820646,-0.0023636709,-0.029507896,0.016765347,-0.030701473,0.006559152,0.041465778,-0.01919671,-0.0423057,-0.031033022,-0.054153066,0.007028847,0.020589218,0.029375276,0.0051417784,0.014764999,0.0066144103,-0.023517903,-0.015417047,-0.019904016,0.005967889,0.040073268,0.027540702,-0.029596308,0.019119348,-0.023937866,0.031651914,0.022456946,0.03852604,-0.0039813556,0.0063878517,0.01987086,0.018511508,-0.032536045,0.013991384,-0.015273375,0.010112256,0.019097244,-0.03746508,-0.004464865,0.005719227,-0.023584213,-0.015207065,0.04338876,0.004489731,0.028977416,0.042018358,0.023318974,-0.009360745,0.0030530172,-0.029618412,0.017771047,0.028049078,0.03967541,0.021539658,0.010996388,0.014588173,-0.02725336,-0.02873428,-0.021119695,-0.01785946,0.020511854,-0.0040725316,0.03706722,0.014068746,0.0022932165,-0.0100017395,-0.038106076,0.02975103,0.022534307,0.020290822,0.018102596,-0.021804897,0.0093275895,-0.006001044,-0.014820257,0.013460905,-0.022788495,-0.01037197,-0.0201361,-0.016831657,0.017737892,0.011272679,0.010095679,0.01235574,0.000003931213,-0.0015803854,0.04013958,-0.024623068,0.03397276,0.01369299,0.011129008,-0.0014256623,-0.019108295,-0.019904016,0.006559152,0.01168159,-0.040780574,-0.007365922,0.019108295,-0.029618412,0.010626158,-0.0002376104,0.0103553925,-0.014389243,0.03348649,0.017826306,-0.014411347,-0.0040421397,0.014986033,0.001657747,-0.001218444,-0.03370752,0.015516511,-0.0054180697,0.044162378,-0.00260957,-0.00886342,-0.0019989666,0.015538614,-0.018555714,0.032580253,-0.022401687,-0.032801285,-0.020931818,-0.0000756347,-0.018213114,0.006973589,-0.010316712,-0.022899011,0.023053734,0.00007408056,-0.02115285,-0.011968933,-0.013140407,0.011670538,-0.023274766,-0.00016439323,-0.020125048,-0.017096896,-0.01463238,-0.041576292,-0.019053038,-0.0043792147,-0.00681334,0.008725274,0.022258015,-0.0027449527,-0.009918853,-0.006465213,0.027673323,-0.022589564,-0.026501847,-0.015991732,-0.016212765,-0.0050119217,-0.007034373,0.0019326566,0.009924378,0.027054429,0.01631223,-0.0063602226,0.009349693,0.0011749282,0.04858304,0.02725336,-0.0027408083,-0.015162858,0.016124351,-0.008775007,0.01872149,-0.013372492,0.007835617,0.021296522,-0.018423093,0.045223337,-0.023738936,0.00097185414,0.013449853,-0.016301177,-0.00785772,-0.024203105,0.0056087105,-0.055081405,-0.019660879,0.009217073,-0.016411694,-0.0058573727,-0.008747378,0.009858068,-0.04283618,0.0059844665,-0.005423595,-0.03664726,0.017605273,-0.02537458,-0.03518844,-0.046063263,0.04033851,-0.017936822,-0.0033458858,0.011162163,0.043587692,-0.026037678,0.04840621,-0.009725449,0.051986944,0.00032792307,0.004713527,0.00046313304,0.006338119,-0.009907801,0.019428793,0.034768477,-0.0161133,-0.04747787,0.028889002,0.018754644,0.00718357,-0.004724579,0.012101552,0.016489057,0.008879998,0.009239176,-0.017063743,0.020854456,-0.028778486,0.026302917,0.013858764,-0.013063046,0.032536045,0.031010918,0.0028540876,0.006625462,-0.011946829,-0.0076974714,-0.011228473,0.0050367876,-0.029773135,0.0023857742,-0.017671581,-0.015538614,0.012665186,-0.014709741,-0.008542922,-0.029087933,0.0063491706,-0.0035475784,-0.021904362,0.011239524,0.0039260974,-0.012930426,0.0057965885,-0.014588173,-0.0029452636,0.041996256,0.024158899,0.02127442,0.04650533,-0.0013614247,-0.017771047,-0.02738598,-0.03706722,-0.015317582,-0.00879711,-0.0044151326,0.011792107,0.008548448,0.010659313,-0.0050478396,0.01161528,-0.03410538,-0.037752423,0.012278379,-0.011394247,0.010852717,-0.0049732407,0.0062331283,-0.007277509,0.03967541,0.0038570245,-0.0007114497,0.0010077719,0.03633781,-0.0017613561,0.022390636,0.015814906,0.01063721,0.0030778835,0.051191226,0.03815028,0.0063215415,0.012510464,-0.007454335,-0.06157977,0.0315635,-0.014753948,-0.0069072787,-0.004937323,-0.009747552,-0.03149719,0.012543619,-0.022921113,0.007338293,-0.023716833,-0.0027712004,0.009725449,-0.012366792,0.00020635496,0.013129355,-0.008034547,0.036028367,0.01604699,0.009239176,0.02169438,-0.03536527,0.004315668,0.013637732,0.0014560544,0.046991598,-0.00949889,-0.05879476,0.028314317,0.00016154398,0.032978114,0.011267154,0.047831524,-0.016212765,-0.02021346,0.0049870554,0.016234867,-0.023053734,-0.009509942,-0.022501152,-0.015682286,-0.009675716,-0.006846495,-0.014621328,-0.016566418,-0.00580764,-0.022434842,-0.015317582,0.036028367,0.0044510504,-0.012875168,0.0015223642,-0.006338119,-0.030458337,-0.0027380453,-0.0035503414]},{"id":"guide-webhooks-3","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Sending Messages\nSend text, embeds, or both. You can override the username and avatar for each message.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Hello from webhook!',\n embeds: [\n new EmbedBuilder()\n .setTitle('Webhook Message')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n username: 'Custom Name',\n avatar_url: 'https://example.com/avatar.png',\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.036601026,-0.028271139,-0.009603467,-0.008180731,0.034076817,-0.04038734,0.016372936,0.024117667,0.027743349,-0.0062244693,-0.0047013387,-0.012448939,-0.011100782,-0.071274474,0.014307674,0.04956628,-0.023681669,-0.0036658396,-0.021696722,0.015902516,0.02328009,0.009104362,0.002991761,0.05218228,-0.017302305,0.022293353,-0.037931975,0.035843764,-0.025333878,-0.04646839,0.013034096,-0.008995363,-0.0045062862,-0.0033904715,-0.031231347,0.036096185,0.0153862,0.02817935,-0.014778095,0.030978926,-0.0049308124,-0.032401662,0.024071774,0.02391114,-0.025494508,0.03676166,-0.08127952,0.0021527484,-0.022235984,0.056542277,-0.0010354993,0.0056565222,0.023796404,0.042246077,-0.007968469,-0.007882415,-0.040272605,0.0038895763,-0.076277,0.0242783,0.010854098,-0.016258199,-0.021834405,-0.035247132,0.016464725,-0.0147551475,-0.031437874,-0.010010783,0.0016981041,0.04022671,0.08825552,0.0052406015,0.0021398407,-0.012357149,-0.003998576,-0.035407767,-0.032286923,0.027445033,0.0001136611,-0.059387747,-0.026320614,-0.011330255,-0.09940793,-0.015477989,-0.094175935,0.020262511,-0.027422087,-0.046238914,-0.006281838,-0.012414518,-0.016831882,-0.021226302,-0.062692165,-0.006620311,0.037564818,0.024737246,-0.022373669,-0.0040071816,-0.0011452163,0.024048826,0.10390561,-0.03414566,-0.08251868,0.0064252587,0.019539671,-0.04656018,0.04965807,0.019310197,-0.00021871696,-0.012448939,-0.067694694,-0.04004313,-0.0012563675,0.03926292,0.02964798,-0.01885125,0.004982444,0.008169257,-0.006534259,-0.037909027,-0.06361006,-0.021673774,0.072054684,0.006935837,-0.007716047,-0.0368305,-0.06452796,0.049474493,-0.060122065,0.017153146,0.04272797,-0.015879568,0.0398825,0.027077876,-0.03979071,-0.02634356,0.013711044,0.020916512,-0.028798927,0.019149566,0.042452604,-0.054890066,0.0022746564,-0.026045246,-0.0031036295,0.00914452,-0.059158277,0.024140615,-0.026940191,-0.026412403,-0.007979942,-0.006838311,-0.031598505,0.01810546,-0.0025270772,0.044357233,0.006534259,0.036440395,-0.03336545,-0.056588173,0.0077676787,0.00589747,0.007234153,-0.024415983,-0.04141997,-0.03302124,0.038849868,-0.035247132,-0.0049250755,0.03214924,-0.0054586013,-0.021272196,0.0031724714,-0.00045679574,0.016200831,-0.024507772,0.001382578,-0.050989017,0.003298682,0.05277891,0.033296607,0.029303769,-0.00047795032,-0.034811135,-0.032470506,0.003545366,0.0049049966,0.011525308,-0.0031667347,-0.033847347,-0.02808756,0.0051344703,-0.010854098,-0.023085037,0.051952805,-0.008846205,0.026068192,-0.005137339,0.013596307,-0.025287982,0.012988201,0.01005094,0.0043485234,-0.029303769,-0.035040606,-0.0076070474,-0.0053696805,0.0083471,-0.021363985,0.015879568,0.02496672,0.011117992,0.0016665515,-0.02010188,-0.09720498,0.020813249,-0.01046973,0.01672862,-0.039744813,-0.0053438647,-0.07187111,0.0316444,0.038758077,-0.050254703,-0.0073603634,0.017795673,0.00870852,-0.02739914,-0.029257875,0.018013671,0.016349988,-0.011479413,0.012162097,-0.056221012,0.019080725,0.013435675,0.02469135,0.03111661,0.023865247,0.019126618,-0.039469447,-0.039561234,0.015110832,0.0029602086,-0.005501628,-0.008846205,-0.0064941007,-0.051952805,0.01529441,0.023543984,0.077607945,0.0037318133,0.011640045,-0.0028770242,0.052733015,-0.038253237,-0.029670928,0.018518513,0.013561886,-0.0385745,0.018965987,0.0013811438,-0.032998294,0.025242088,0.013848728,-0.008450363,0.015489463,0.025265034,-0.0033244977,-0.016327042,-0.027123772,-0.017680936,-0.001143065,0.047638703,-0.04561934,0.03196566,-0.009442836,0.0006859107,-0.02135251,0.029097242,-0.016797462,0.01919546,-0.026595982,0.0007816442,-0.02609114,0.013745464,0.013011149,-0.013974938,0.026917245,0.027490929,-0.015317358,0.015500937,0.019218408,-0.009138783,0.013022623,0.0927532,0.052824806,0.00981573,0.030565873,0.020021565,-0.029877452,0.012345675,-0.020354303,0.0041764183,0.01754325,0.018449672,-0.01576483,-0.010452519,0.0216623,-0.050392386,-0.00301184,0.04135113,-0.034811135,-0.0047816546,-0.031690296,0.012861991,0.031736188,0.03621092,-0.00518897,-0.015994305,0.025976403,0.01763504,0.008593784,-0.05869933,-0.047592808,-0.068245426,0.006907153,0.0023879588,0.03779429,0.016889252,0.03570608,-0.011003256,0.03136903,0.041075762,0.018403776,-0.0062588905,-0.0047873915,-0.004474734,-0.008542152,0.04731744,0.0063621537,-0.033732608,-0.0009845848,-0.015019042,-0.06214143,-0.0035511027,0.01906925,0.03336545,-0.023934089,-0.0100337295,-0.0013668017,0.016063146,-0.033158924,-0.05245765,0.0020380118,-0.017451461,0.016900726,-0.01769241,0.0002432778,-0.028362928,-0.025425667,0.024714299,0.0016364331,0.014204411,0.008415941,-0.0132176755,0.0057540485,-0.010240256,-0.0047386284,-0.02721556,0.028454717,-0.008054521,0.018082514,0.007297258,-0.034719344,-0.009155993,-0.013653675,0.044494916,0.0038149974,0.008685573,0.046950284,0.015351779,-0.037243553,-0.0641608,-0.017210515,0.029877452,0.016223779,0.02521914,-0.017485883,0.0069702584,0.015099358,-0.008605258,-0.046307757,0.01213915,0.045206286,0.035591345,0.04568818,0.009735415,0.007331679,-0.014651884,0.0016880647,0.0069645215,0.010458256,-0.0027981428,0.043921232,-0.0009458612,-0.017038409,0.016533567,0.0048132073,0.007956995,0.02066409,0.014961674,0.0068669952,0.016338514,-0.052228175,-0.0076127844,0.03501766,-0.05080544,0.021742616,-0.00036195864,-0.033296607,-0.019998617,-0.0007916837,-0.02765156,0.027628612,-0.016889252,0.017359672,-0.024737246,0.0029630768,-0.051952805,-0.08802605,-0.071825214,0.03614208,0.0035166817,0.034742292,-0.040157866,0.04362292,0.0011609927,-0.015959883,0.015214095,-0.022717878,0.0290284,0.0031609978,0.032791767,-0.033296607,0.00044460496,-0.02574693,-0.0028569454,-0.04176418,-0.018231671,-0.015673041,-0.060535118,0.03345724,-0.0016177883,-0.00081893365,0.017279357,0.00645968,0.05511954,0.04334755,0.028684191,-0.011989992,-0.027009035,-0.030657664,0.038345028,0.024347141,-0.038735133,-0.030221663,0.035591345,0.042590287,-0.016923673,0.021478722,0.023819352,0.009741151,0.015879568,0.00015946617,-0.056312803,0.038023762,-0.019906828,0.021237776,0.037381236,0.04750102,0.0061785746,-0.05649638,-0.022694932,-0.016005779,0.10353845,0.03586671,-0.028477665,-0.007268574,-0.019149566,-0.013802833,0.013814306,-0.004030129,-0.010693466,0.007486574,-0.033158924,-0.024255352,-0.015868094,0.000025658905,-0.036027342,-0.026710719,-0.029762717,-0.036073238,0.010263204,0.030221663,0.010716414,-0.022293353,-0.0031466556,-0.0076127844,0.025242088,-0.015064937,-0.07402816,0.0012054531,0.02505851,-0.01025173,0.029487347,-0.02661893,0.040800393,-0.002888498,-0.042177234,-0.01248336,0.03754187,0.0052807597,-0.014720727,-0.016785989,0.002157051,-0.032286923,-0.011989992,0.008811783,-0.022086827,-0.004549313,-0.00500826,0.014525674,-0.04559639,-0.029303769,0.02028546,-0.057414275,-0.02980861,0.012058834,-0.0050828387,-0.04722565,0.02833998,-0.02025104,0.017462935,-0.04653723,0.017210515,-0.006126943,0.041465867,-0.013917569,0.026917245,0.016682725,-0.029280823,-0.00074005214,-0.0027766298,0.032631136,0.02833998,-0.00792831,0.019356092,-0.0093854675,0.013493043,0.010710677,-0.010446782,0.030038085,0.032401662,-0.031919766,0.010572992,0.006849785,0.0051660226,-0.00529797,0.0027536822,-0.004833286,-0.017279357,-0.0061613643,0.024760194,-0.0016421699,0.032011557,-0.019860934,0.040800393,-0.01772683,0.00020007223,-0.012185045,0.00035658033,0.0074578896,0.02955619,-0.021455774,0.0043800757,-0.014330622,-0.010223046,0.028156402,0.012494833,0.034398083,-0.017657988,-0.004325576,-0.014032306,0.0017784198,-0.030841243,0.00016905744,-0.020021565,-0.02703198,0.013125885,-0.0043313126,-0.016625358,-0.028271139,-0.004956628,-0.0010118348,0.024048826,-0.0008712823,-0.021983564,-0.007411995,0.0048906547,0.014812516,0.007647205,-0.028133454,-0.02266051,-0.008306942,0.016063146,0.026159981,0.0073661003,0.023521036,0.029189032,0.01925283,0.011760518,0.007893889,0.020732934,-0.029625032,0.029395558,0.016372936,-0.013401254,0.010572992,0.02213272,0.022373669,0.01192115,-0.006855522,-0.030129874,-0.027674507,-0.023681669,0.034007978,-0.031185452,0.00362855,-0.021891775,-0.011439255,-0.009764099,0.038299132,0.022453984,-0.0139864115,0.014858411,-0.018139882,0.033434294,-0.004012918,0.0032900767,-0.011307308,0.03536187,0.040777445,-0.018897144,0.012999675,-0.049795754,0.016648304,-0.0013969201,-0.0043772077,0.009184678,-0.0059720487,0.013011149,-0.029716821,0.04906144,-0.008479047,0.007188258,-0.0381385,-0.010641835,-0.026940191,0.021765564,-0.01482399,0.035476606,0.012207991,-0.011967044,-0.00223163,-0.025127351,-0.0024252483,-0.033135977,0.023727562,0.026504193,-0.019000407,0.009242047,-0.021616407,0.00161492,0.0242783,-0.019677354,0.01046973,0.01573041,0.03311303,-0.00082108495,-0.03226398,-0.01828904,0.027536822,-0.0019347486,0.009419888,0.015489463,0.01525999,0.030359348,0.021077143,-0.031942714,0.0022502749,-0.018931566,-0.031598505,-0.002456801,-0.009150256,-0.035660185,-0.009620678,-0.008387257,0.028317032,-0.010561519,-0.013240622,0.01273578,0.014147043,-0.011427782,-0.020044513,0.018151356,-0.008697047,-0.031001873,0.000917177,-0.009305151,-0.009855888,0.010395151,-0.017405568,-0.00013149908,-0.015879568,-0.048831966,0.019987144,0.01685483,-0.008438889,-0.004847628,-0.017141672,-0.018013671,-0.003981366,-0.0015102227,-0.023199774,0.027743349,-0.02912019,-0.02677956,-0.009511678,-0.023417773,-0.00008488728,0.008536415,0.01304557,0.0019619986,0.013722517,0.02687135,0.04410481,-0.0013890319,-0.012563676,-0.00158767,-0.013286517,0.006344943,-0.020836197,0.020296933,-0.04348523,-0.004078892,0.011502361,-0.01785304,-0.02409472,0.0069759954,0.032975346,0.045986496,-0.019654408,0.016923673,-0.033571977,-0.028798927,-0.019677354,0.009414151,0.005100049,0.0036400238,-0.024897877,-0.034558713,-0.03155261,0.009603467,0.05479828,-0.055807963,-0.05511954,0.027972823,-0.018575883,-0.0115597285,0.012380097,0.030129874,0.015753357,-0.017313778,0.015282936,-0.044150706,-0.031024821,-0.008358574,-0.042154286,-0.014135569,-0.021157458,-0.016051672,0.032837663,-0.036256816,-0.01841525,0.0433246,-0.0019189724,-0.077929206,-0.017439988,0.030175768,-0.03345724,-0.025632193,-0.0005740424,-0.031414926,0.009569046,-0.0035597081,-0.014973148,0.0074349423,-0.008352837,0.0042538657,-0.034696396,0.032011557,-0.013206202,0.029785663,0.010418098,-0.016889252,-0.0072169425,-0.006947311,-0.016407358,-0.00069236464,0.039056394,-0.011353203,0.0041878917,0.018690618,-0.0041333917,0.0546147,-0.021237776,0.0020853407,0.025333878,0.013756938,-0.025586298,0.00905273,0.034742292,-0.0014464003,0.00044030233,-0.036968186,-0.036440395,0.0028253929,0.0053754174,-0.025976403,-0.02599935,0.010492677,0.030382294,0.014640411,0.016464725,0.00080817705,0.026412403,0.016533567,0.01317178,-0.013906096,0.005386891,0.027376192,0.028936611,-0.021593459,-0.0012821833,-0.0029888926,-0.021799985,-0.004210839,0.0020451827,0.013756938,-0.015684515,0.027077876,-0.037931975,-0.015994305,-0.02240809,-0.013561886,-0.0072112055,0.013573359,0.009614941,0.061407115,0.03545366,0.026802508,-0.0229703,0.022786722,-0.009242047,0.02912019,-0.009442836,0.009351046,-0.010613151,0.021547563,0.027077876,0.030015137,0.013378306,0.010188624,-0.026550086,0.01906925,0.02730735,0.028615348,-0.023773458,0.023085037,-0.017451461,0.030795347,-0.031621452,-0.043921232,0.015546831,0.046147127,-0.042154286,0.009368257,-0.014869885,-0.008570836,-0.014938726,-0.0086224675,0.009414151,-0.009058467,0.02599935,-0.0008024402,-0.052319963,0.018243145,-0.00636789,-0.019734723,0.016120516,-0.033296607,-0.005949101,0.04284271,-0.008834731,-0.0057655224,0.0031925505,0.049703967,0.04846481,-0.00217713,-0.0064941007,-0.017761251,0.008065995,0.0015145253,-0.027192613,0.00792831,0.027009035,-0.00046504245,0.033158924,0.0041563394,-0.018518513,-0.026022298,-0.00927073,0.012104728,0.0026475508,-0.030818295,0.02400293,0.015041989,-0.02721556,0.023704614,0.0012958084,0.013034096,-0.0030175769,0.015489463,0.029189032,-0.008243836,-0.06365596,0.01351599,-0.010498414,-0.047087967,0.007096469,0.023119457,0.06439027,-0.0010218743,-0.014789569,-0.04456376,0.04222313,0.003264261,0.04359997,0.017279357,-0.0032527873,0.014778095,-0.011852307,-0.019459356,0.0056507858,-0.0015575516,-0.0007787758,-0.024324194,0.00015865943,0.010681992,-0.004543576,0.044058915,0.037243553,0.032906502,0.0111810975,0.021547563,-0.0028253929,0.001204019,0.008065995,0.018369356,0.021788511,0.022935878,0.011158151,-0.000427753,0.019826513,-0.026687771,0.017497357,-0.006849785,0.030129874,0.013963464,-0.012299781,-0.036463343,0.0024309852,-0.0053438647,0.013183254,-0.048510704,0.0034134188,-0.022671985,0.019677354,0.013240622,-0.015925463,-0.006666206,0.0016679857,-0.05328375,0.041970707,0.005673733,0.029946296,-0.0049365493,-0.020985354,0.0047587072,0.012552202,-0.008054521,0.03579787,-0.004976707,-0.01754325,0.0009021178,0.012816097,-0.0028311296,-0.0024281167,0.018220197,0.032539345,-0.040961023,-0.018920092,0.00038759512,-0.006872732,-0.017795673,0.026481245,0.017772725,-0.025287982,-0.015064937,0.009987835,0.0058343643,-0.014892831,-0.049428597,0.009655098,-0.008192205,0.030565873,0.022362195,0.046927337,-0.019597039,-0.047592808,-0.022935878,-0.018392304,0.010188624,0.0049738386,-0.032699976,-0.009092889,0.008335626,0.012655465,0.04782228,-0.009700993,0.06819953,0.017026935,-0.0034421028,0.032126293,0.033778504,-0.0024811826,0.01707283,-0.012311255,-0.007337416,-0.047730494,-0.00025690277,0.0045665232,0.005544654,0.022993248,0.009844414,0.02980861,-0.020055987,0.015868094,-0.013068518,0.018621776,0.0006199371,0.014938726,-0.02358988,0.024645457,-0.020067459,0.013079991,-0.024668405,-0.048510704,-0.0019003276,-0.014204411,0.01351599,0.012988201,-0.020457564,0.00061635155,0.023727562,0.03058882,0.032355767,-0.008565099,-0.002238801,-0.020572301,0.02110009,0.004661181,-0.046215966,-0.0055790753,0.02088209,0.035660185,-0.012242412,-0.011978518,0.0005152398,-0.017118726,-0.007956995,0.019642934,0.021145985,-0.017646514,0.04481618,-0.0023994325,-0.024806088,0.029097242,0.04688144,-0.03327366,0.010716414,0.009465783,-0.013504517,-0.005768391,-0.0042882864,0.0010598808,-0.01772683,-0.02150167,-0.020262511,0.048235334,0.0041018394,-0.006195785,0.033296607,-0.0050111283,0.04722565,0.019551145,0.017256409,-0.009890309,-0.00379205,-0.009104362,-0.03180503,-0.016774515,-0.05296249,0.021157458,0.018702092,0.029097242,-0.015432094,0.018185778,-0.048831966,0.042865656,0.027146718,-0.05089723,0.019436408,-0.017589146,-0.0019347486,0.007796363,0.053696804,-0.006230206,-0.0166942,0.00026371528,0.0030778137,0.02031988,0.008679836,0.025127351,-0.004730023,-0.03423745,-0.017141672,-0.012804623,0.01213915,-0.009173204,0.02886777,-0.004902128,-0.0033560502,-0.022453984,0.009913256,-0.022798195,-0.018747987,0.013355359,0.0045550494,0.042337865,-0.070356585,-0.005378286,0.0077791526,-0.0010978874,0.026182929,0.030497031,-0.023429247,0.01351599,-0.014147043,0.0076701525,-0.02487493,0.019126618,-0.032883555,-0.010114046,0.04325576,-0.018369356,-0.0020408803,-0.021145985,0.005051286,-0.023475142,-0.0061556273,0.003031919,0.028982507,-0.031162504,-0.027192613,-0.0519987,-0.014147043,0.013584833,0.04038734,0.022786722,0.018908618,-0.012024413,-0.0023191168,0.032516398,-0.02019367,-0.0041993656,0.0333884,0.048418913,0.008697047,0.032791767,-0.005318049,0.040593866,0.010314835,0.021960616,-0.010555782,0.031254295,0.019987144,-0.008341363,-0.010854098,0.006872732,-0.028500613,0.019333145,-0.01015994,-0.03510945,-0.0073603634,0.016958093,-0.016992515,-0.012747254,0.023486616,0.024301246,-0.008415941,0.044311337,0.023245668,-0.015661567,-0.016189357,-0.023291564,0.017141672,0.024324194,0.04066271,0.020652618,-0.014307674,0.024071774,-0.039056394,-0.0025614982,-0.0043743392,-0.0096493615,-0.008025836,-0.011008993,0.020124828,0.014663358,0.015305884,0.0061097327,-0.02259167,0.007297258,0.017554725,0.013275043,-0.008765888,-0.025976403,0.015466516,-0.027123772,0.0061843116,-0.024645457,-0.013527464,0.005125865,-0.010435308,-0.029785663,0.008324152,0.035935555,-0.013619253,0.0019419197,0.016590936,-0.022683458,0.033663765,-0.02222451,0.011192571,0.024989666,0.010263204,0.027789244,-0.007899626,-0.01694662,-0.015019042,0.004167813,-0.034214504,-0.024645457,0.0035080765,-0.016717147,-0.0062474166,-0.009316625,0.013963464,-0.004600944,0.021008302,-0.034122713,-0.004933681,0.01772683,0.00702189,-0.0032900767,-0.011674466,0.007865205,0.030221663,-0.0011660124,0.03196566,0.0070620477,-0.02625177,0.010624624,0.005822891,-0.029923348,0.01059594,-0.016613884,-0.005768391,-0.0075955736,0.027674507,-0.016395884,0.017371146,-0.016269673,-0.03302124,-0.007733258,-0.00970673,-0.03614208,-0.019539671,-0.011026203,0.0014958805,-0.033663765,-0.0069989427,0.00981573,-0.04100692,-0.020342829,-0.009213362,-0.01046973,-0.004167813,0.0100222565,0.023119457,0.004804602,0.00006395678,-0.017256409,-0.008886362,0.0026819718,-0.04362292,-0.0307724,0.0023434984,-0.015214095,0.018197251,0.00017873837,0.0024137746,-0.0036400238,0.0316444,0.03354903,-0.031575557,0.00035353264,0.020205144,0.034788188,-0.00038149973,0.018874198,-0.013837254,0.004853365,-0.00050125626,0.020090407,-0.0040645497,-0.0009967756,0.028064612,-0.020572301,0.04731744,-0.014456832,0.01825462,0.02181146,0.011978518,0.013240622,-0.0030892873,0.018897144,-0.05071365,-0.025494508,0.007159574,0.011399098,0.0077562053,-0.010641835,0.009310888,-0.01916104,-0.003510945,-0.00073395675,-0.03586671,0.0338244,-0.016682725,-0.020446092,-0.030359348,-0.0012269663,0.003258524,0.0062244693,0.010096835,0.0115654655,-0.03866629,0.04270502,-0.01291936,0.04421955,0.016705673,0.02437009,-0.0030577348,0.026894297,0.02197209,0.02088209,0.008794573,-0.015202621,-0.047914073,0.0081061525,0.030129874,-0.002750814,-0.008593784,-0.01124994,0.024989666,0.006763732,0.025586298,-0.006780943,-0.002552893,-0.021226302,0.026595982,0.0114335185,-0.00033829416,0.045917653,-0.016315568,0.0005500194,-0.016304094,0.008421678,-0.029349664,-0.017589146,0.0060122064,-0.03398503,0.0014772358,-0.024806088,-0.01785304,0.02150167,0.002908577,0.010314835,-0.008324152,-0.0076816264,-0.008995363,-0.033663765,-0.007888152,0.004061681,-0.00051954243,-0.00880031,0.0018042356,-0.003031919,0.01769241,0.026894297,-0.0034334976,0.02306209,0.008949468,-0.020182196,-0.009230573,-0.02358988,-0.01772683,-0.017084304,-0.00479026,0.04047913,-0.0035482345,0.0014973148,-0.019344619,0.025173245,-0.032998294,-0.058194485,-0.002456801,-0.013309465,0.020124828,-0.0035080765,0.021168932,0.023406299,0.027238507,0.001375407,0.017795673,-0.0037604973,0.033158924,-0.002732169,0.020136302,0.018013671,0.0026905772,0.0045091547,0.056312803,0.019000407,0.0006518482,0.021834405,-0.00068411796,-0.036119133,0.008983889,-0.014571569,-0.02050346,0.014284727,-0.005880259,-0.03442103,-0.0097698355,-0.010653309,-0.009528888,-0.031231347,0.007417732,0.014663358,0.0046152864,0.008324152,0.014640411,-0.0034105503,0.03430629,0.0144912535,0.0072743106,-0.00083399285,-0.053605016,0.014743674,0.027261455,-0.014319148,0.06292164,0.011875255,-0.037633657,-0.0015016174,0.017623566,-0.0047529703,-0.0021541826,0.021157458,-0.0030003663,-0.0075382055,0.045298073,0.023888195,-0.026114088,0.00658589,-0.0019562617,-0.03586671,0.005558996,-0.017439988,-0.012643991,-0.015420621,-0.015959883,-0.03467345,0.013951991,0.030611768,-0.012666939,-0.012632517,0.007509521,0.0023736167,-0.004334181,-0.021891775,-0.010601677]},{"id":"guide-webhooks-4","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Simple text only\n\n```javascript\nawait webhook.send('Plain text message');\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.04589066,-0.006898228,-0.022720266,-0.010223557,0.012052206,-0.044517767,0.024036894,-0.015034311,0.043752547,-0.002215479,-0.0049035936,0.023856841,0.00027834153,-0.050324433,-0.016159633,0.03965637,-0.010223557,0.02925839,0.00527495,0.0074496362,0.012896198,0.032836918,0.0030861974,0.030383714,-0.010111025,-0.01516935,-0.048343863,0.021921286,-0.0043634386,-0.015664492,-0.000026067046,-0.02716529,0.025274748,-0.0029567855,-0.0068813483,0.042762265,0.033714667,0.010127904,0.028538184,0.022157604,-0.005024566,-0.036798052,0.029753532,0.012389803,-0.009233273,0.03288193,-0.06981502,0.0130087305,-0.014460397,0.056266136,-0.025612345,0.016047101,0.05883187,0.07872757,-0.012974971,-0.0013236608,-0.03630291,0.023699297,-0.04593567,0.008867543,0.0002786932,-0.026557615,-0.015495693,-0.031126427,0.020773457,0.0073427306,0.005868558,-0.0031874767,0.0014586996,0.016744802,0.065538794,-0.007528409,0.003693872,0.0054043625,-0.011123815,0.010623046,-0.049559213,0.021977553,-0.033917226,-0.014662955,-0.014269092,-0.022765279,-0.13143769,-0.046003193,-0.06828458,0.002906146,-0.025612345,-0.050819572,0.003412541,0.04156942,0.0039752023,-0.029978598,-0.028110562,0.029460948,0.0043634386,0.010988777,-0.041929524,0.010729952,-0.0071120397,0.010004119,0.07571171,-0.050999627,-0.097317904,-0.00495142,0.02001949,-0.010538647,0.04982929,-0.022585226,-0.02925839,-0.014426637,-0.07818742,-0.022258883,0.010606167,0.036010325,0.025589839,-0.013886482,0.0018370893,-0.009165754,0.0112532275,-0.03110392,-0.037653297,-0.0058854376,0.025477307,-0.01932179,-0.023879347,-0.034862496,-0.059146963,0.025207229,-0.01590081,0.04233464,0.026962733,0.019974478,0.009002581,0.021651208,-0.026827693,-0.0004258643,-0.006042983,0.02329418,0.003806404,0.07238076,0.06333316,-0.08201352,0.029866064,-0.00048318543,-0.015743265,-0.014933032,-0.07103037,-0.01694736,-0.05959709,-0.043527484,-0.04003898,0.0132788075,-0.021718727,0.021527423,-0.009323299,0.028470665,-0.014550422,0.029753532,-0.0648636,-0.047893733,0.0084849335,0.0069938805,0.008293629,-0.02583741,-0.03578526,-0.017048638,0.041096784,-0.04874898,-0.019119233,0.050324433,-0.0010451435,-0.030991387,0.007837873,0.032971956,0.014482903,-0.008237362,0.0111857075,-0.096327625,0.0058291717,0.010099771,0.048839007,0.03560521,0.019625628,-0.015394415,-0.0027331274,-0.014347864,0.025882423,0.029483454,-0.019051714,-0.027232809,-0.030136142,0.01021793,-0.007022014,0.012018447,0.03619038,-0.018185215,0.007815367,-0.024577048,0.005651933,-0.009098234,0.010988777,-0.0039386293,-0.021088548,-0.02001949,-0.050549496,-0.002706401,-0.0027697005,-0.0070051337,-0.010718699,-0.00141228,0.006279301,-0.01897294,-0.0010774964,0.0019608748,-0.09794809,-0.04030906,-0.0036347923,0.02531976,-0.0030102383,-0.018995447,-0.06630401,-0.012153485,0.012040953,0.0063749533,-0.0002619892,0.019524349,0.0034688073,-0.023406712,-0.02081847,-0.001582485,0.048793994,-0.009790308,0.019434324,-0.023721803,0.018961689,0.032769397,0.0145616755,0.023609271,-0.01764506,0.009222019,-0.0054353084,-0.047758695,-0.0049654865,0.026715161,0.018567825,-0.015810784,-0.016958613,-0.039948955,0.0094245775,0.017667567,0.056221124,0.020514634,0.009576497,-0.01977192,0.033309553,-0.054690685,-0.026535109,0.016339686,-0.0031115173,0.0020635605,0.027525393,-0.019603122,-0.028088056,0.004641956,0.03400725,-0.02932591,0.034727458,0.007860379,-0.003291569,0.016272167,0.0059979702,0.0011900287,0.053070217,0.01935555,-0.037833348,0.03776583,-0.0268502,-0.027210303,-0.032926943,0.053070217,-0.025567332,0.014809247,-0.029033326,0.011827142,0.0118609015,0.014426637,-0.008923809,-0.007899766,0.027727952,0.0023997508,-0.020942256,0.02462206,0.008496187,0.010060385,-0.005896691,0.056581225,0.024532035,0.028763248,0.05311523,-0.00034568508,-0.028020535,0.043437455,0.0012779447,-0.016789814,-0.0062342877,0.007685954,-0.01865785,-0.0550958,-0.0064255926,-0.03756327,0.000010159773,0.040601645,-0.039386295,0.019816933,-0.03700061,0.021786248,0.050144378,0.069229856,-0.009418951,-0.06715926,0.021021029,0.014449144,0.021504916,-0.048208825,-0.016576003,-0.038553555,0.028673222,0.006841962,0.04400012,0.0421996,0.019333044,-0.0032127963,0.058921896,0.03204919,0.018117696,-0.0111181885,-0.010893124,-0.0014882393,-0.035875287,0.04258221,0.0008664985,0.017093651,-0.0051399115,-0.029303404,-0.04645332,-0.014527916,-0.0076803276,0.025949942,0.016227154,0.005159605,0.008777517,-0.0007349764,-0.010127904,-0.0467234,-0.0041383742,-0.01061742,0.026962733,0.011354506,0.049334146,-0.015281882,-0.045868155,0.031238958,0.00035676247,0.024149425,0.013706431,0.017386235,0.021493664,-0.06193776,0.01583329,-0.011180081,0.029460948,0.019198006,0.03992645,-0.02552232,-0.057931613,0.008445547,0.0126036145,0.06585389,0.010825604,-0.025027176,0.020649672,0.015596973,-0.05802164,-0.04379756,-0.0016317179,0.020593405,0.019366805,0.03427733,-0.00034392675,-0.041614432,0.010442995,-0.002951159,-0.03396224,0.02552232,0.01789263,0.0033506483,0.02151617,-0.019006701,0.0033422085,-0.050234407,0.016092114,-0.009008208,0.005201804,0.013121263,0.037293196,-0.013503873,-0.025972448,0.031936657,-0.014415384,-0.012243511,0.039386295,0.07319099,0.0119959405,-0.018038923,-0.048388876,-0.009447084,0.036843065,-0.020908495,0.010853738,0.0011555657,-0.01875913,-0.012479829,0.008935062,0.0009966139,0.0006889085,0.07373115,0.024464516,-0.0015416921,0.028268106,-0.030068623,-0.044720326,-0.022303896,-0.010156037,0.0031227705,0.06463853,-0.020750951,0.0046081967,0.008653732,-0.009739668,0.00010391652,-0.016857333,-0.0045913165,-0.064908616,0.029235885,-0.025882423,-0.012085966,-0.0010817165,-0.04118681,-0.042627223,-0.024914645,-0.0048754606,-0.05865182,0.018252734,-0.044270195,-0.017768845,0.017442502,0.030451233,-0.0071064127,0.015023058,0.022371415,-0.007714087,-0.008513066,-0.020379594,0.012974971,0.009840947,-0.024959657,-0.0036657387,0.03184663,0.019490588,-0.0008728284,0.017858872,-0.011444532,0.007685954,0.010679312,0.012356043,-0.050954614,0.04100676,0.004293106,-0.0031509036,0.018387772,0.023654284,-0.0072020655,-0.041209318,-0.015248123,0.022337656,0.108751185,0.029641,-0.009317672,-0.002650135,-0.019873198,-0.031621568,0.020773457,0.0012575481,-0.010066012,-0.0056350534,-0.018905422,-0.035132576,0.0063018072,0.013987761,-0.021842513,-0.048793994,-0.04397761,-0.033332057,-0.0028625396,0.011495171,0.012986224,-0.02294533,0.0023913106,0.015068071,0.025724877,-0.018072683,-0.06063239,0.027637925,-0.015630733,-0.018151455,0.009081354,-0.03515508,0.023429219,0.0062624207,-0.045418024,-0.03630291,0.06351321,0.0224952,-0.0040708547,-0.041862004,-0.0052665104,0.0031509036,0.009041968,0.03319702,-0.013368834,-0.013593898,0.015158097,0.03947632,0.011095682,-0.00017767791,0.0063018072,-0.05320526,-0.029438442,0.04127684,-0.0027654807,-0.030518752,0.03713565,-0.01058366,0.0016781375,-0.037720818,0.0070614,-0.012614868,0.036010325,0.017588794,0.0421996,-0.00878877,-0.027345343,0.005035819,0.011714609,0.046813425,0.018117696,0.0035278867,-0.004805128,0.012986224,0.0240594,0.016407205,-0.011427652,0.002889266,0.017465008,-0.03225175,0.0010374069,0.0061949017,0.016823575,0.023766816,-0.008591839,-0.00008936645,0.001664071,-0.003474434,-0.0037107517,-0.0072020655,-0.0024616434,-0.03985893,0.009525857,-0.0055900407,0.018826649,-0.012547349,-0.0009269846,0.0025826157,0.031328984,-0.0303387,0.027007746,0.0010866397,-0.017723832,0.026557615,0.0026445084,0.025949942,-0.0076240613,0.003949883,-0.00028133066,-0.017971404,-0.015822038,-0.018522812,-0.022225123,-0.05910195,0.037608285,0.004281853,0.0030130516,-0.035965312,-0.0037642044,-0.014989299,0.042244613,-0.0033393952,-0.015000552,0.0148205,-0.007612808,0.004833261,0.017476263,0.010223557,-0.055680968,0.008012298,-0.0011815889,0.0012673947,0.008006671,0.012299777,0.011624584,0.014100294,0.023654284,0.012738653,0.032521825,-0.015259376,0.0075790486,0.005722266,0.008394907,0.019850692,0.023766816,0.013560139,0.009475217,-0.028898288,-0.041029267,-0.016778562,-0.004475971,0.011371386,-0.05617611,0.028043041,-0.010628673,-0.028673222,-0.01196218,0.04105177,-0.012254764,0.015957076,0.011135068,0.019254271,0.0118609015,-0.0017850432,-0.012941211,0.004144001,0.053520348,0.018128948,-0.012085966,0.018511558,-0.06301807,-0.007247078,-0.015743265,0.015686998,0.0015374721,0.00035992742,0.0006994584,-0.027457874,0.04589066,-0.007325851,-0.0050752056,-0.020109517,-0.016789814,-0.029123351,0.0067012967,-0.038125932,0.022326402,-0.006684417,0.009148873,0.010960643,0.008113577,0.0014994926,-0.049469188,0.016744802,0.03733821,0.0060767424,0.02221387,-0.028470665,-0.024216944,0.012052206,-0.016744802,0.02329418,0.03630291,0.055680968,0.012277271,-0.017127411,-0.054105517,0.04156942,0.009115114,0.010437368,0.0077084606,0.021673715,0.029190872,-0.005108965,-0.02374431,0.00011130145,-0.029123351,-0.036595494,-0.0022872183,-0.00737649,-0.0064874855,0.022540214,-0.017510021,0.029168364,-0.0116583435,-0.0035391399,0.019704401,-0.027615419,-0.016778562,-0.031509034,0.0042255865,-0.018714117,-0.034817483,0.0011000029,-0.012558602,0.0046925955,0.0067069232,-0.012716146,-0.04658836,0.0134251,-0.025747383,-0.0051961774,0.019704401,-0.0070107603,0.032454308,-0.028718235,-0.012288524,0.0137514435,0.00039667625,-0.0125360945,0.009711535,-0.0470835,-0.0030327446,0.02950596,-0.023879347,0.0134138465,0.007894139,0.0037557646,0.02354175,0.013301315,0.011534558,0.046948463,0.0004325459,-0.01157957,-0.031058908,-0.030631283,0.0056069205,-0.052214973,0.03263436,-0.017847618,-0.016891094,0.0045069177,-0.0073821167,0.00490922,0.020424606,-0.020615911,0.009103861,-0.004135561,0.046768412,-0.013301315,-0.046813425,-0.025927436,0.00918826,0.030428726,0.015720759,-0.031711593,-0.049919315,-0.040759187,0.02430697,0.05388045,-0.028988313,-0.07053523,0.033332057,0.0048276344,-0.013683924,0.00020361308,0.0063243136,0.0025291627,0.010707445,0.015686998,-0.032296762,-0.0116583435,-0.0022942517,-0.026692655,-0.0137514435,-0.02716529,-0.030698804,0.04530549,-0.03655048,-0.007235825,0.01869161,-0.019220512,-0.07994293,-0.0069544944,0.010769338,-0.040399086,-0.039993968,-0.049919315,-0.024644567,0.025679864,-0.013470112,-0.010049132,0.029978598,0.0024532035,0.0072695846,-0.010572406,0.0038767366,-0.016542245,0.06855466,-0.016902346,-0.04024154,-0.018083936,-0.0038823634,-0.014066534,0.008946315,0.015844544,0.00035517997,-0.0037473247,0.016936107,0.027142784,0.055635955,-0.019670641,0.0007434163,0.016868588,0.005235564,-0.029821051,0.017172424,-0.016846081,-0.020514634,0.03078883,-0.006172395,-0.01942307,-0.01701488,-0.004366252,-0.012716146,-0.022618987,0.013290062,0.020008238,-0.009053221,0.0069263615,0.0075227823,-0.0014052467,0.021718727,0.032589346,0.020694684,-0.015844544,0.008265495,0.013965255,0.0022422054,0.008445547,0.012581108,-0.018297747,-0.018511558,-0.025027176,0.0062117814,-0.016418459,0.027795471,-0.024959657,-0.00027939654,-0.0009101047,0.0113207465,-0.00737649,-0.0210998,0.029933585,0.05910195,0.03384971,0.04595818,-0.01869161,-0.016002089,0.020041997,0.021358624,-0.009182633,0.03916123,-0.03808092,-0.009514604,0.023946866,0.027727952,-0.005362163,0.025634851,-0.02392436,-0.004380319,0.009357058,0.027953016,-0.00022137207,0.012491082,-0.024351984,0.041411877,-0.027052758,-0.012783666,0.011163201,0.031396504,-0.038958672,0.01603585,-0.020300822,0.0049739266,-0.004886714,0.0015979583,0.038576063,-0.007832246,0.03497503,0.009131994,-0.045980684,0.01938931,-0.0015641985,0.013166276,-0.0035166335,-0.04969425,0.0036544856,0.048793994,0.021257346,-0.00917138,-0.010386729,0.039813917,0.045643087,-0.0024841498,0.0030299313,-0.028470665,0.023035355,-0.021684969,-0.000073541596,0.013706431,0.02531976,-0.024734594,0.029213378,0.0037191915,0.0024841498,-0.013245048,-0.06855466,0.024914645,0.013717684,-0.04753363,0.0030214915,-0.0021479598,-0.03713565,-0.018646598,0.0146967145,0.018950434,-0.012772413,0.027412862,0.013571392,0.0031115173,-0.028515678,0.00013363207,-0.030001104,-0.046993475,-0.009492097,-0.0077365935,0.023384206,-0.000001151148,0.00013134626,-0.013312568,0.031238958,-0.0686897,0.035402652,0.051764846,0.017206185,0.019591868,-0.006886975,-0.027817978,0.006189275,-0.003935816,-0.004897967,-0.030226167,0.03078883,-0.00091080804,-0.02513971,0.039363787,0.030901361,0.04438273,-0.031081414,-0.008383654,-0.0046391427,-0.0006846885,0.016452217,0.000013802786,0.033309553,0.007224572,0.0023448912,-0.02430697,0.017206185,-0.007927898,0.015765771,-0.02570237,0.027232809,0.004053975,-0.028493172,-0.018151455,-0.0017104906,-0.025657358,0.010071638,-0.018252734,0.0240594,-0.019603122,-0.018984195,0.025657358,0.015428174,0.020199543,0.0077478467,-0.029550975,0.021741234,0.0184778,-0.02078471,0.0043690656,-0.022045072,0.0042874794,0.015810784,0.0031790365,0.01269364,-0.023991881,0.0026065288,-0.018016417,-0.008726877,0.008091071,-0.0018595958,0.00456881,0.01872537,-0.012108472,0.018680356,0.0073145977,-0.0064706057,0.0015852983,0.0065437513,0.014145306,-0.025499813,-0.008068563,0.036865573,0.018286495,-0.02583741,-0.04208707,0.0092389,-0.005137098,0.022855304,0.004098988,0.024779607,-0.008130456,-0.040399086,-0.019130485,-0.016654776,0.009559616,-0.023001596,-0.019220512,0.028403144,-0.0026684215,0.0013925869,0.027457874,-0.018005162,0.06580887,-0.012491082,0.008664985,0.021156067,0.027817978,-0.00089181826,0.0029033325,-0.007888512,-0.015214363,-0.044337716,0.0005383966,0.039566346,-0.0026191885,0.006898228,0.007657821,0.004014589,-0.021369878,0.010195424,-0.01583329,0.017667567,0.007353984,0.016193394,0.003705125,-0.0031115173,-0.003128397,0.022011312,-0.013807709,-0.021246092,0.0049654865,-0.00917138,0.037743323,0.00021064635,-0.02053714,-0.015034311,0.0029399055,0.029528467,0.009891586,-0.014314105,0.0040399083,-0.03657299,-0.0036741786,-0.011219467,-0.026107486,0.0060598627,0.0061330087,0.0345249,-0.018770382,0.034930017,0.0069770007,-0.03128397,-0.0015754518,0.025814902,0.019535603,-0.020492127,0.037923377,0.003750138,-0.026647642,0.001093673,0.06409838,-0.02678268,-0.018365266,0.008513066,-0.013053743,-0.027660431,-0.02462206,0.023204153,-0.01168085,-0.028110562,0.019580616,0.03700061,-0.01016729,0.010718699,0.008220483,0.010420488,0.027772965,0.009047595,0.0036347923,0.005182111,-0.0037895243,0.007145799,-0.0018736623,-0.024667073,-0.052214973,0.023586763,0.0017766032,0.025657358,-0.036347922,0.0043718787,-0.021820007,0.026039967,0.023406712,-0.016936107,0.043504976,-0.029033326,0.033129502,0.00082289224,0.064908616,0.001907422,0.00885629,-0.00080530904,0.016789814,0.008062937,0.00247149,0.012479829,-0.016643522,-0.012963718,0.008288002,-0.010904377,-0.00091221475,0.023631778,0.0077253403,-0.010544274,-0.024734594,-0.011112561,0.013638911,-0.0119284205,-0.04132185,0.025859917,-0.0010001305,0.019119233,-0.06540375,-0.004354999,-0.00010303736,-0.02091975,0.009334552,0.03929627,-0.023699297,0.011827142,-0.0014284565,0.011461412,-0.027682938,0.018185215,-0.028785754,-0.011039415,0.016666029,-0.025072189,-0.0042255865,0.005260884,0.016204648,-0.032544333,0.021381132,-0.0029877317,0.010414862,-0.017836364,0.013245048,-0.040646657,-0.023406712,0.016722295,0.041726965,0.00774222,0.04233464,0.0028414398,-0.025297254,0.0111857075,-0.004166507,-0.017172424,0.036145367,0.052980192,0.0051511647,0.014381624,-0.0051680445,0.022911571,0.017476263,0.029280897,-0.0007849126,0.0068194554,0.011135068,0.0010085704,-0.023001596,0.0470835,-0.033489604,0.02071719,0.0066394038,-0.03911622,0.012524841,0.0072695846,-0.013380087,-0.005868558,0.04530549,0.0128736915,0.01349262,0.044517767,0.0015993649,-0.028448159,0.0116583435,-0.027817978,0.016823575,-0.005184924,0.036910586,0.014910526,0.007252705,0.006948868,-0.018162709,-0.0023181648,-0.030946374,-0.008670611,0.0060936227,0.0054437486,0.029573482,0.0013503872,0.0120297,0.0054409355,-0.035515185,-0.01485426,0.015765771,0.0387111,-0.0077984864,-0.03339958,0.017937643,-0.027120277,0.004354999,-0.022337656,-0.014055281,0.019411817,-0.006116129,-0.01764506,0.00638058,0.017026132,-0.0006639404,0.009897213,0.023654284,-0.010161664,0.03675304,0.013897736,0.020627165,0.022011312,0.01311001,-0.0014228299,-0.006307434,0.013155023,0.03306198,-0.011483918,-0.030766323,-0.017903885,0.024667073,-0.03675304,-0.00638058,-0.01447165,0.0060204766,0.0023955307,0.015990837,-0.0006227958,-0.0073708636,0.029168364,0.0012969344,-0.022258883,-0.030001104,-0.00850744,-0.0037613912,0.0007694394,0.027435368,0.012839932,-0.024734594,-0.005730706,-0.012299777,-0.027637925,0.0038823634,-0.0074440097,-0.0063411933,0.006971374,0.010324836,0.0054887617,0.021032281,-0.012997477,-0.013357581,-0.004633516,0.0031171439,-0.018432787,-0.0062005282,-0.009244526,0.020762203,-0.036392935,-0.02468958,-0.0035813395,-0.047758695,-0.0039723893,0.00081234233,-0.02570237,0.00067976525,-0.012288524,0.026872706,-0.0008517286,-0.008766264,-0.016137127,-0.024644567,0.014775488,-0.013087503,0.014100294,-0.01897294,-0.021324866,0.0067913225,0.026265033,0.012423563,-0.013143769,0.037270688,0.0289433,-0.012007194,-0.019816933,0.0070163873,0.04492288,0.039813917,0.014392877,-0.0117258625,-0.018387772,-0.032769397,-0.0041102413,-0.010431741,0.008901303,0.024734594,-0.013200035,0.027502887,0.00046314063,-0.000003758402,0.007466516,-0.024712086,-0.0006547971,-0.015777024,0.028268106,-0.02608498,-0.018984195,-0.008091071,0.012862438,0.011568317,-0.01100003,0.009925346,-0.004982366,-0.03308449,-0.0074440097,-0.017690074,0.040083993,-0.0282456,-0.025544826,-0.046408307,-0.022765279,0.016058356,-0.029956091,-0.017093651,0.009604629,-0.035335135,0.03826097,-0.032656863,0.057751562,-0.0069657476,-0.017543782,-0.00843992,0.01757754,-0.0013946969,0.0432349,-0.0027978336,0.0072189453,-0.070175126,0.038621075,0.048793994,0.016407205,-0.005753212,-0.0026937411,0.03344459,0.016125875,0.035245106,-0.010223557,-0.01687984,-0.020987269,0.020233301,-0.010746832,0.005896691,0.032656863,-0.020323329,-0.0054803216,-0.013019984,-0.003688245,-0.012502335,-0.009756547,0.0019313351,-0.010049132,0.00458569,-0.005924824,-0.0077703535,-0.008259868,0.010763711,-0.007984164,-0.021651208,-0.0049542333,-0.02221387,-0.019085472,-0.0027204677,-0.0024067839,-0.0233617,-0.014010267,-0.004996433,0.007466516,0.0404441,0.04246968,0.026670149,0.041299343,-0.010009745,-0.019906959,-0.013908989,-0.01681232,-0.010291076,-0.013267554,-0.015608226,0.028088056,0.003612286,0.01687984,-0.016722295,0.004656023,0.0031030774,-0.03911622,0.021561183,0.0115908235,-0.0074496362,0.038486037,0.030361207,0.016778562,0.0162159,0.01513559,-0.009593376,-0.0039667627,0.026512602,-0.002430697,0.047038488,-0.014843007,-0.008079817,0.002990545,0.02374431,0.025499813,0.0023547378,0.025094697,0.027142784,-0.03477247,0.016339686,-0.0138189625,0.0032437427,0.0071683056,-0.010628673,-0.026715161,0.0083442675,-0.00958775,0.005162418,-0.032791905,0.017059892,-0.008755011,-0.0037023118,-0.0028470664,0.026557615,-0.0022393921,0.022720266,-0.012963718,-0.0048754606,-0.00882253,-0.03826097,0.017127411,0.015878303,-0.00092135795,0.081698425,0.006144262,-0.027187796,0.0027443809,-0.005398736,0.010724326,0.00671255,0.002443357,-0.0040342817,-0.0057841586,0.048163813,0.00988596,-0.013695178,0.010623046,-0.0071064127,-0.0121984985,-0.033309553,-0.018590331,0.007787233,-0.021628702,0.01875913,-0.019704401,0.013267554,0.0010542867,0.011506424,-0.003494127,0.019603122,-0.0112532275,-0.028515678,-0.029078338,-0.0037838975]},{"id":"guide-webhooks-5","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Embeds without a title\nEmbeds can use only a description—no title required. At least one of title, description, fields, or image is needed.\n\n```javascript\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('Description-only embed works.')\n .setColor(0x5865f2),\n ],\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.027773233,0.018725198,-0.04552614,-0.031456504,-0.004669861,-0.04227754,0.031799667,0.003740464,0.036466666,0.007629632,0.007114889,-0.004289523,0.021150209,-0.07659373,-0.027567336,0.015728252,-0.021916604,0.018279089,-0.0011081268,0.058886573,0.016426014,-0.008521853,-0.039097574,0.034407694,-0.0013590639,0.00034691519,-0.03246311,0.055912506,-0.007297909,0.018999727,0.0031199132,-0.021127332,0.012102175,0.01438992,-0.03552869,0.021401862,0.06108281,-0.003920624,0.014595818,0.047996905,0.0039578,-0.03292066,-0.032874905,0.0050073033,-0.010946863,0.05028465,-0.07750882,0.01097546,-0.0024293,0.039944038,-0.025920158,-0.008401746,0.022465663,-0.0036603932,-0.04138532,-0.0030598599,-0.049323797,0.039097574,-0.03616926,-0.0024850639,0.01808463,-0.027864743,-0.0035116896,-0.02294609,0.009482706,-0.0126169175,-0.050925218,0.0027696022,-0.01790161,0.010964021,0.07329937,-0.017707152,0.008870734,0.033973023,-0.021928042,0.0032857747,-0.044267878,0.025485488,-0.037999455,-0.011238551,-0.038022332,0.0014598677,-0.11612597,-0.021298911,-0.08231309,0.018690882,0.0013969548,-0.054402594,-0.007486648,0.018770954,-0.03552869,-0.035368547,-0.076044664,-0.027269928,0.0051216907,0.06108281,-0.030861689,0.02356378,0.009865903,0.012079298,0.03912045,-0.05687336,-0.08167252,-0.026057424,0.006176913,-0.037564784,0.0092367735,-0.0025150904,-0.00035442185,-0.006451443,-0.051153995,-0.026835257,0.008373149,0.027818987,0.018038874,-0.023540903,-0.004200873,0.020944312,-0.043673065,-0.037107237,-0.066939436,-0.03289778,0.035940483,-0.011038373,0.00710345,0.014801715,-0.019914826,0.015476599,-0.033606984,0.0237468,0.052297868,0.019228503,0.039280593,0.028276537,-0.04936955,-0.023540903,-0.042140275,0.024341615,-0.0018788112,0.024707653,0.053762022,-0.050055876,0.029809326,-0.023815433,-0.012742744,-0.0013004404,-0.03642091,0.010700931,-0.014252655,-0.024478879,-0.039944038,-0.013886617,-0.029489042,0.012399581,-0.01980044,-0.016117169,-0.024067085,0.021081576,-0.05577524,-0.02743007,0.0071720826,0.02653785,0.007858407,-0.0018230473,-0.064971976,-0.014161145,0.024387369,-0.05083371,-0.028139273,0.024616143,0.020646906,-0.029191636,-0.029214513,0.04850021,0.02095575,-0.009671445,0.012433898,-0.050696444,0.015213509,0.0074351733,0.024799163,0.05174881,0.03806809,0.010929705,-0.040127058,0.002176218,0.021928042,0.008967963,0.0090022795,-0.055271935,-0.031204851,-0.025576998,-0.011381535,0.0044124895,0.011759013,-0.0116961,0.0029011476,0.017055145,0.035482936,-0.03571171,0.01646033,0.0018015997,-0.011581712,0.0030112453,-0.029740693,0.014023881,-0.0050387597,-0.020212233,-0.05270966,-0.008436062,0.0017844416,-0.024478879,0.026423462,-0.012273756,-0.04662426,0.018507862,0.028276537,0.001484175,-0.020932874,-0.022625804,-0.07984232,0.042986743,-0.00009999951,-0.016494647,-0.027452948,0.0063370555,-0.026926767,-0.017569887,-0.049232285,0.042803723,0.022957528,0.004352436,0.0018044594,-0.044222124,-0.008070023,0.029191636,0.023998452,0.012685549,-0.006377091,-0.013623525,-0.015945587,-0.010111836,-0.025760015,-0.024181472,-0.016174361,-0.022225449,0.025050815,-0.070645586,0.009671445,0.02195092,0.05920686,0.042025886,-0.0042609265,-0.031159095,0.025714261,-0.05504316,-0.0356202,0.027109787,-0.0009744367,-0.021573441,0.025622752,0.0070405374,-0.032257214,-0.012479653,0.025714261,-0.016231555,0.056187034,-0.005639293,0.010392085,-0.008150094,-0.012799937,-0.0034687943,0.030129611,0.024433123,-0.06886114,0.01142729,-0.0210587,-0.011919155,-0.02868833,-0.013280364,0.0014269814,0.01635738,-0.025005061,0.06016771,0.0014448544,0.029168757,0.0005844475,0.0044954205,0.028642576,0.033218067,0.0045640524,-0.013268925,0.013543454,0.020269427,-0.034224674,0.070005015,0.047081806,0.006405688,0.06872388,-0.000018666127,-0.016597595,0.008870734,0.035185527,0.014184023,0.0117018195,0.011267147,-0.020452447,-0.05687336,0.0037175866,-0.04868323,-0.025531242,0.028642576,-0.017878732,0.014538623,-0.022923212,0.025439732,0.065155,0.049644083,-0.007520964,-0.041545462,0.039692387,0.016597595,0.006371372,-0.068174824,-0.035025388,-0.050421916,0.0017615642,0.019354329,0.02239703,0.018839587,0.022717314,0.019560225,0.01466445,0.044313636,0.015991343,-0.043307025,-0.008653398,-0.02365529,-0.018599372,0.06053375,-0.0153164575,-0.0012253738,-0.0048357225,-0.043673065,-0.05847478,0.002806778,-0.029306022,0.03058716,0.019114114,-0.032234337,0.0069947825,-0.015854077,-0.023071915,-0.03966951,0.0015756849,-0.030884566,0.019114114,-0.022328397,0.008824979,-0.013566332,-0.019766122,0.01998346,-0.007023379,0.004975847,-0.0237468,0.010197626,0.023060476,-0.025005061,-0.004981566,-0.002771032,0.018496424,0.043124005,-0.009053754,-0.012731304,-0.04390184,0.009334003,0.006176913,0.024959305,-0.013074467,-0.0034973912,-0.022957528,-0.01448143,-0.022419907,-0.038731534,-0.005450554,0.012182246,0.043490045,0.04552614,-0.034567837,-0.044222124,-0.0027510142,-0.017787222,-0.027384317,-0.013246047,0.04831719,0.031433627,0.012662672,-0.022008114,0.0048700385,-0.035574444,-0.04955257,-0.0050130226,0.012479653,0.005948139,0.04058461,-0.035048265,0.007240715,-0.012250878,0.0066344626,0.000041018564,0.008956525,0.0421174,0.02248854,-0.0026494954,-0.03580322,0.0035946204,0.006691656,-0.051337015,0.016094292,0.033767127,-0.027567336,-0.030175366,-0.020372376,-0.0012375275,0.02868833,0.0005769409,0.03228009,-0.0011074119,0.02868833,-0.03411029,-0.07197248,-0.0008014259,0.036306523,-0.001151022,0.038159598,-0.019697491,-0.004255207,-0.016208678,0.0053762025,-0.015099121,-0.016231555,0.013920932,-0.024456002,0.015671058,-0.05252664,-0.016437452,-0.026926767,-0.01782154,-0.016975073,-0.03031263,-0.008121497,0.0029340337,0.019388644,-0.016895002,0.020990066,0.017775783,0.006783166,-0.01638026,0.020292304,0.020829925,0.009070911,-0.007744019,-0.03031263,0.046166707,0.006142597,-0.018336281,-0.061357338,0.029534796,0.031227728,-0.05252664,0.040515974,0.027727477,0.0013876607,0.004506859,0.024661899,-0.025943035,0.01412683,-0.04165985,0.008596204,-0.0010609421,-0.013417629,-0.023586659,-0.05801723,-0.024890672,0.009013718,0.10477875,0.046715766,-0.013234609,0.012273756,-0.038159598,-0.027635967,0.004558333,-0.015590987,-0.010557947,-0.020338058,-0.012880008,-0.04504571,0.0064285654,0.010374927,0.014058197,-0.03058716,-0.015957026,-0.049598325,0.033858635,0.022385592,0.011759013,-0.041431073,0.011644625,-0.012880008,0.029832203,-0.014767398,-0.060030445,-0.010689491,0.03527704,-0.0015685356,0.027727477,-0.03973814,0.05243513,-0.018839587,-0.030701548,-0.039189085,0.019102676,0.046853032,0.00112457,-0.009299686,0.015373651,-0.0051617264,0.014584378,0.017375428,-0.02832229,-0.045617647,0.0061483164,-0.0010123275,0.0013898055,-0.04252919,0.008527572,-0.046853032,0.0023335007,0.017261041,-0.01592271,-0.044016227,0.03660393,-0.011839084,-0.02402133,-0.047264826,0.00015290362,0.008373149,0.016586157,0.0014605826,0.03202844,-0.0026795221,-0.05010163,0.020246549,-0.0030913164,-0.0029797887,0.043146882,0.013440506,-0.009619971,-0.0072807507,-0.0096600065,0.0284138,-0.004426788,0.036306523,0.022911772,-0.020441007,0.033172313,0.020681221,0.013829422,0.023884065,-0.030770179,-0.028985737,-0.011198515,0.0007281466,0.004255207,0.0015084823,0.010306294,-0.017318236,0.013623525,-0.00926537,-0.013348996,-0.003202844,-0.0058337515,-0.02868833,0.01133578,-0.03411029,0.026949644,0.020669783,-0.0031742472,-0.0011302894,-0.0014448544,0.013909494,-0.020441007,0.0071663633,0.012399581,0.008985121,-0.036375158,-0.0033172313,-0.010626579,-0.029649183,0.015968464,0.008115778,-0.010048923,-0.021928042,0.005467712,-0.010941144,0.020852802,0.0076410705,-0.0025965914,-0.013886617,-0.029489042,0.015064806,0.013543454,0.003786219,-0.03843413,-0.0010852494,0.011375816,0.00060053327,-0.0108095985,0.031159095,0.008945086,0.024707653,0.028573943,0.009511302,0.027498703,-0.044267878,0.021367544,-0.0062112296,-0.019949142,0.018931096,0.034933876,0.012365266,-0.003454496,-0.0064628813,-0.03465935,0.0050902343,-0.033767127,-0.0012160798,-0.01438992,0.011455886,-0.005264675,-0.03546006,-0.0007242145,0.03820535,0.006331336,-0.009019437,0.0006856088,-0.0016385978,0.025737138,-0.01178189,-0.001429841,0.003554585,-0.004884337,0.037816435,0.00067810214,0.0061940714,-0.017009389,-0.0049615484,-0.026423462,-0.014801715,-0.0025236695,0.009436951,0.013703597,-0.024730531,-0.005630714,-0.000004487802,-0.016517524,-0.03129636,-0.02159632,-0.02807064,0.000011366119,-0.049095023,-0.019285696,0.018896779,0.0053476053,-0.0021333229,-0.04541175,0.006136878,-0.032737643,0.00719496,0.03850276,-0.010100397,0.016426014,-0.0139323715,-0.03788507,-0.00088578655,-0.029397532,0.023906942,0.056553073,0.056781847,-0.008464659,-0.018668005,-0.004955829,0.020452447,-0.008172971,0.0040607485,0.050970975,0.0047642305,0.0048528807,0.018370599,-0.030701548,-0.020818485,0.0072807507,-0.0091910185,0.0051102517,-0.0060510873,-0.0010473586,0.009048034,0.016609034,0.01376079,-0.027567336,0.00566789,0.019674612,0.011072689,-0.01619724,-0.01888534,-0.0053190086,-0.010580824,-0.020303743,0.015579548,0.003857711,-0.006417127,-0.008870734,-0.029397532,-0.040264323,-0.042872354,-0.017707152,0.004572632,0.011896278,-0.0036603932,-0.019445838,-0.0055334847,-0.023323568,0.021562003,-0.00296835,-0.031159095,0.06016771,-0.0293289,-0.007887003,0.01331468,-0.011530238,-0.0005143853,0.017695712,0.039166205,0.020829925,0.028894229,0.012891447,0.03905182,0.00080643035,0.004721335,-0.010054642,-0.007566719,0.006182633,-0.053029943,0.0028082079,-0.022705875,0.010249101,0.025325345,-0.031250607,-0.0144013595,0.00728647,-0.00233779,0.018061751,-0.012628356,0.017478377,-0.022660121,-0.06213517,-0.036466666,0.013303241,0.020841364,0.008396027,-0.025165202,-0.056049768,-0.039989796,-0.01647177,0.072384275,-0.040630363,-0.046098076,0.020486763,-0.010849634,0.007097731,-0.0078755645,0.03362986,0.004758511,0.01421834,0.0035631638,-0.028573943,-0.05019314,-0.0029454725,-0.035574444,-0.02905437,-0.0412023,-0.022191133,0.034750856,-0.045983687,-0.0016314486,0.01429841,-0.029214513,-0.093157,-0.034773733,0.018782392,-0.015876954,-0.035116896,-0.021928042,-0.012788499,0.011072689,-0.0130401505,-0.0034773734,0.008195849,0.03175391,0.027681723,-0.034590714,-0.0050130226,-0.0049329516,0.03758766,-0.0055620815,-0.015671058,-0.021630635,0.008842137,-0.00917386,0.020898556,-0.020841364,0.01357777,0.012525408,0.0035660237,0.028756963,0.056461565,-0.010317733,-0.008150094,0.040630363,-0.0098945005,0.013703597,0.0017172392,-0.0058137337,-0.0030770178,-0.0031027552,-0.0023406497,-0.012102175,0.0067545692,-0.019743245,-0.01142729,-0.029031493,0.023106232,0.017558448,0.013383312,0.023243496,-0.028894229,0.021344667,0.042140275,0.026652237,-0.0028897088,-0.009940255,0.011358657,0.014744521,-0.015350774,0.005467712,0.015533793,-0.015362212,-0.011455886,-0.015579548,0.020932874,-0.024364492,0.011770451,-0.009517022,0.006325617,0.0048157047,-0.014687328,-0.009374038,0.0065257945,0.0054820105,0.038022332,0.045800667,0.008779224,-0.0036775512,-0.013120222,0.0021933762,-0.0029254549,-0.006485759,0.018565057,-0.046166707,0.0034201797,0.037564784,0.0045554736,0.0060968422,0.0013283223,-0.0048557403,0.005081655,0.034499206,0.016345942,-0.02365529,0.023254935,-0.03454496,0.0041694166,-0.0201436,-0.022614365,-0.011078409,0.06044224,-0.01656328,0.010855353,-0.0035831816,-0.010712369,-0.016403137,-0.013429067,-0.013383312,-0.01843923,0.014767398,-0.005908103,0.0022777368,0.03049565,-0.002645206,-0.014961856,-0.020246549,-0.054631367,-0.020726975,0.026514972,0.0017587045,0.023335006,-0.016689105,0.037473273,0.062226683,-0.015671058,-0.0031342115,-0.017375428,0.039349224,0.015705375,-0.0130630275,-0.006222668,0.018187579,0.00016273379,0.041682728,-0.00011349363,-0.023266373,0.0027638827,-0.0067088143,0.044816937,-0.009465548,-0.054356836,0.0016057115,0.025325345,-0.051474277,-0.00206898,0.01096974,0.008527572,0.007601035,-0.020406691,0.03614638,0.0140010035,-0.0330808,0.005027321,-0.011953471,-0.042940985,-0.002680952,0.03761054,0.026766624,-0.01096974,-0.011987788,-0.030015223,0.024684776,-0.037084356,0.02843668,0.0393721,0.015396529,0.045205854,0.0042780843,-0.026400585,-0.0058251726,-0.013154537,-0.0064628813,-0.04918653,0.01430985,0.011249989,0.009293967,0.05019314,0.025714261,0.022900334,0.015373651,0.0058680675,-0.008647678,-0.0006934729,0.029077247,0.012205123,0.017261041,0.013703597,0.02653785,0.012273756,-0.023151986,0.024639022,0.011976348,-0.025393978,0.015270703,0.0026523552,-0.062501214,-0.03221146,0.013383312,-0.017215285,0.0030770178,-0.011272867,0.004910074,0.00575654,-0.011942033,0.00170866,0.0036746915,0.022328397,-0.03465935,-0.024639022,0.0060739648,0.009820148,-0.014332727,-0.0006902558,-0.011896278,0.0065715495,0.04509147,0.019697491,0.04406198,-0.021081576,-0.0058680675,-0.016746297,-0.013863739,0.018988289,-0.0047070365,-0.0036375157,0.030243998,-0.023369322,-0.0118734,0.012365266,0.0042151716,-0.0061483164,0.030129611,0.017684273,-0.014458553,-0.0030741582,-0.0069032726,0.019605981,-0.03131924,-0.0149161015,0.00764679,0.0017129496,0.018770954,0.022568611,0.030930322,-0.010958302,-0.034407694,-0.04541175,0.0061483164,0.036009118,-0.006405688,-0.0101518715,0.00602821,-0.0036861303,0.00084360625,0.041065034,-0.02411284,0.059252612,0.0055363444,-0.009700041,0.020017775,0.02825366,-0.025645629,0.008681995,-0.00074780686,-0.0055992575,-0.030518528,-0.031548012,0.030106733,0.017855855,0.027498703,0.0055735204,0.05174881,-0.02087568,0.027910497,-0.008058584,0.01043784,0.0009615681,0.03616926,-0.01970893,0.0044210684,0.038640026,-0.0019560226,-0.024661899,-0.048545964,0.018336281,-0.0043867524,0.024158595,0.0051674456,-0.024387369,0.0121479295,0.017421184,0.02185941,0.012605479,-0.0057107853,0.0099173775,-0.011713258,-0.0034401976,-0.006600146,-0.016872125,-0.0074180155,0.019548787,0.029534796,-0.008396027,0.010935424,-0.028482433,-0.01989195,-0.011976348,0.024067085,0.028756963,-0.023140548,0.049049266,0.005902384,-0.019548787,-0.004721335,0.05980167,-0.022351276,0.0015427985,0.017832978,0.0011417281,-0.020452447,-0.008733469,0.005316149,-0.022522856,-0.024753409,0.015785445,0.03948649,-0.0020646905,-0.021298911,0.002618039,-0.0052989908,0.027407194,0.014641573,-0.012971518,0.013806545,0.012250878,-0.0065257945,0.02239703,-0.019194186,-0.058978084,0.025256712,-0.022419907,-0.00881926,-0.0012332379,0.016403137,-0.043398537,0.034156043,0.012982957,-0.025691384,0.012982957,-0.011072689,0.010740966,0.02347227,0.057696946,-0.021024384,0.023586659,-0.0014548632,0.004804266,0.015305019,0.013737913,0.022557173,0.000051072137,-0.015636742,-0.006497198,-0.010037485,-0.00013467316,0.025371099,-0.018988289,-0.029031493,-0.012433898,-0.0004400336,0.0038748693,-0.0019803299,-0.009848746,0.008052865,0.008487537,0.033355333,-0.058520533,-0.021653512,-0.0040149936,-0.0144013595,0.00074852176,0.018290527,0.0008707732,0.0036089187,0.006891834,0.04127093,-0.036992848,0.020257987,-0.047722373,0.0032057036,0.02715554,-0.034522083,0.0031227728,-0.0058280323,0.0134977,-0.015602426,0.0178101,-0.009465548,0.00021715711,-0.013280364,0.016002782,-0.03552869,-0.017192408,0.030564282,0.035757463,0.017466938,0.028390924,0.00908235,-0.018851025,0.015064806,-0.033538353,0.014344165,0.02328925,0.0402872,-0.017752906,0.033492595,0.017055145,0.04813417,0.018633688,0.017123776,0.01376079,0.017158093,0.015957026,-0.0033944426,-0.0174555,0.04014994,-0.018953973,0.027475826,0.0041122227,-0.026148934,-0.0034144605,-0.0007267167,-0.022133939,-0.024844918,0.009837306,-0.0007363681,-0.002123314,0.04387896,0.0032771956,0.004624106,-0.0053762025,0.010077519,0.0023978434,0.0016357382,0.03049565,0.013692158,0.02005209,0.017752906,0.0060625263,-0.0062112296,-0.007446612,-0.026675114,0.019262819,-0.0068517984,-0.016403137,0.030953199,0.009762955,-0.0008114348,-0.037267376,-0.018828146,-0.013143099,0.027864743,0.004741353,-0.007944196,0.027407194,-0.031227728,-0.010512192,-0.020063529,-0.008659118,-0.038182475,-0.00027488693,-0.017318236,0.003914905,0.0006423561,0.00908807,0.023975575,0.025302468,-0.026697991,0.035048265,-0.002051822,0.024639022,0.014103952,0.022088185,0.004469683,0.0121936845,0.014824592,0.008899331,0.0002087568,-0.007955636,-0.015430844,0.018130384,-0.018130384,-0.0017386867,-0.028139273,0.013371874,0.02095575,0.040127058,-0.028116394,-0.0043581557,0.020555396,0.0025122308,-0.007297909,-0.006914711,0.03893743,0.009099509,-0.020257987,0.009877342,-0.0001325284,0.00566789,-0.00022645107,0.014550063,-0.038891677,0.004524017,-0.012456776,-0.011192796,0.0010423542,0.03825111,0.016883563,0.008670556,-0.0017558448,0.007486648,-0.002592302,0.029443286,-0.012067858,-0.023106232,0.00020804188,-0.003131352,-0.036718316,0.0037719207,-0.017306795,-0.04145395,-0.012662672,0.003248599,-0.025302468,-0.0037175866,0.0031942648,0.04145395,0.04147683,0.002203385,-0.038113844,-0.012353826,0.007143486,-0.011930593,-0.0017286778,-0.034133166,-0.02518808,0.019274257,-0.0055191866,-0.0057079257,-0.005730803,0.039532244,0.03740464,-0.0018459248,-0.008807821,0.024639022,0.046120953,0.021287473,0.0090022795,-0.0042237504,0.0005404799,-0.016597595,0.011713258,0.015819762,-0.016345942,0.012262316,0.0035688833,0.051428523,0.017581325,0.0035402863,0.016506085,-0.0067602885,-0.0003619285,0.015087683,0.009608532,-0.03221146,-0.017249603,-0.0013619236,-0.0067545692,0.01421834,-0.0037318852,0.025622752,0.015213509,-0.039532244,-0.03141075,-0.033606984,0.040241446,-0.016426014,-0.03330958,0.012285194,0.0034859525,0.026194688,-0.025348222,-0.0028110675,0.026126055,-0.02294609,0.04371882,-0.048912004,0.032691885,-0.019720368,0.037816435,-0.0018130385,0.022957528,-0.015590987,0.04504571,0.0054190974,-0.035299916,-0.055912506,0.0064914785,0.0412023,-0.0044468055,0.0081329355,-0.020315181,0.03138787,0.03996692,0.034750856,0.013280364,0.016483208,-0.048820492,0.021035822,0.021928042,0.04435939,0.05188607,-0.013280364,0.013200292,-0.0012003515,-0.009299686,-0.026194688,-0.025645629,0.020852802,-0.01151308,-0.0035002509,-0.026034545,-0.014607256,0.02193948,0.004578351,-0.005256096,0.007257873,-0.011861961,-0.0325775,-0.02050964,-0.0040006954,-0.014469991,-0.002888279,-0.020246549,-0.032005563,0.008922208,0.024547512,0.038891677,0.012548285,0.039074697,-0.019274257,-0.033767127,-0.012880008,-0.016254432,-0.011438728,0.015636742,-0.0051417085,0.03850276,0.004175136,0.027361438,0.0011310043,-0.01403532,-0.020818485,-0.03138787,0.0049472502,-0.030083856,-0.0013519147,-0.0010552227,0.019537348,0.029191636,0.006880395,0.009602812,0.0025765735,-0.012296633,0.007160644,0.020086408,0.03635228,-0.043146882,-0.0027924795,0.009414073,0.038731534,0.037015725,0.009905939,0.031204851,0.017444061,-0.026492095,0.030838812,-0.023186302,0.014790276,0.014332727,0.022728754,-0.025691384,0.014904663,-0.0048300033,-0.005999613,-0.0033486877,0.0074237348,0.03806809,-0.008253043,-0.018816708,0.0067545692,-0.0006888259,0.03706148,0.018233333,0.006228388,-0.011896278,-0.053579003,0.016151484,0.010512192,-0.021470493,0.054585613,0.017169531,-0.014184023,0.012113613,-0.012948641,-0.004884337,-0.0057622595,0.037084356,0.00039249138,0.00039463612,0.052160602,0.010260539,-0.025508365,-0.012822814,-0.026377708,-0.0100832395,0.0032057036,0.0063198972,-0.013737913,-0.027384317,0.020223672,-0.018953973,0.016757738,0.01430985,-0.036718316,-0.013463384,0.014973296,-0.010735246,-0.035002507,-0.010912547,-0.011713258]},{"id":"guide-webhooks-6","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Fetching & Listing Webhooks\nFetch by ID or list channel/guild webhooks. Requires a logged-in bot. Fetched webhooks have no token and cannot send—but you can edit or delete them with bot auth.\n\n```javascript\nimport { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// Fetch single webhook (no token)\nconst webhook = await Webhook.fetch(client, webhookId);\n\n// List channel webhooks\nconst channel = client.channels.get(channelId);\nconst channelWebhooks = await channel?.fetchWebhooks() ?? [];\n\n// List guild webhooks\nconst guild = client.guilds.get(guildId);\nconst guildWebhooks = await guild?.fetchWebhooks() ?? [];\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.06326584,-0.016247077,-0.0053099776,-0.0371262,0.03382092,-0.017620398,-0.03975646,0.050929233,0.022869274,0.023427913,0.02523185,-0.027536236,-0.006441803,-0.045063525,0.03994267,0.0389185,-0.04585493,-0.011324073,-0.055724215,0.0067153033,0.031004451,0.005609664,-0.011952542,0.045948036,-0.042456545,0.025790488,-0.046297185,0.021763634,-0.027978491,0.009438667,0.026837936,-0.013698287,0.0115626585,0.023544295,-0.014978501,0.0411065,0.005484552,0.014908671,-0.01347716,0.026861213,-0.017794972,0.0065465476,-0.002991045,0.027070703,0.0076230913,0.017003566,-0.081049174,0.00090633315,-0.03223811,0.021018783,-0.049951613,0.0010496299,-0.018446717,0.06321929,0.007099367,0.0013835038,-0.03775467,0.010055497,-0.06671078,0.021111889,-0.014035799,-0.012057287,0.0026011616,-0.0123715205,0.01794627,0.035915814,-0.04673944,-0.015071608,0.01759712,0.033192452,0.06140371,0.02165889,0.030678578,-0.028350916,0.005830792,-0.010224253,0.00073503185,0.010742158,-0.031446707,-0.034402836,-0.016165609,-0.00481535,-0.1326767,-0.055863876,-0.033332113,-0.0035176785,0.00034333006,-0.052232724,0.018144121,-0.00087432784,-0.009671433,-0.020425228,-0.050277486,0.018179037,0.021554144,0.013023266,-0.02289255,-0.019075185,-0.03254071,0.04296863,0.088870116,-0.035706326,-0.0634055,-0.038965054,0.031051004,-0.010887637,0.011335711,0.005266334,-0.019133378,-0.027303468,-0.073274784,-0.05409485,-0.02818798,0.041967735,0.022624869,-0.00068375055,0.033215728,0.020599803,0.025068915,-0.031726025,-0.05437417,0.0059646326,0.053815532,-0.03803399,-0.006435984,0.018854057,-0.04213067,0.012883606,-0.03917454,-0.0084785065,0.06787461,-0.0016468205,0.018982079,0.028350916,-0.032145005,-0.016852269,0.024929253,-0.003526407,-0.015129799,0.012429712,0.015548779,-0.081002615,0.04580838,-0.00886839,-0.03300624,-0.008949858,-0.01904027,0.0016802807,-0.034146793,-0.028304363,-0.055724215,-0.019377781,0.027885385,-0.0026026166,0.0058948025,0.012999989,0.015641885,0.033029515,-0.055258684,-0.045249738,-0.02282272,0.005353621,0.029305257,-0.007722017,-0.044458333,0.0013718655,0.009619061,-0.028979385,-0.027303468,0.02165889,0.019645462,-0.0009921656,0.015653523,0.014035799,0.0066454737,-0.008647262,-0.011952542,-0.025068915,-0.0192614,-0.017573845,0.025837041,-0.007297219,0.014897034,-0.02076274,-0.030818237,0.009223359,0.009671433,-0.018388525,-0.04124616,0.0043905512,-0.007983879,0.009962391,-0.0154091185,0.011638307,0.049253315,0.01594448,0.021938208,0.018737674,0.05074302,-0.056748386,-0.041199606,0.021565784,0.029095769,-0.01615397,0.0029386727,-0.0036340614,0.002970678,-0.003948296,0.0030434174,-0.023637403,0.0071808356,0.0070586335,0.0065698246,0.008106081,-0.07052814,0.0012809412,-0.03903488,0.03340194,-0.017678589,-0.016130693,-0.039919395,0.0066978456,-0.014803926,0.0050277486,-0.0053681694,0.02234555,0.05479315,-0.042340163,-0.022834359,0.0024367706,0.001835943,0.0141405435,-0.014222012,-0.031120833,0.0077743893,0.017131587,0.025604276,0.055305235,-0.0019959698,-0.028863002,-0.020390315,-0.051255103,-0.009665614,-0.011801244,-0.026256021,-0.039151266,-0.0091826245,-0.038196925,0.04620408,0.028001767,0.06703665,0.029375087,0.014396586,-0.0011398267,0.030003555,0.0034623963,-0.017585482,0.0037213487,-0.0068316865,-0.020297207,0.055677664,0.03465888,-0.047414463,0.023544295,-0.027629342,-0.025115468,0.008239921,0.010509391,-0.042316884,0.0048386264,-0.023672316,0.0035584124,0.06526763,-0.043527268,-0.051674083,0.013546989,-0.0034187527,-0.019854952,-0.008856752,-0.021763634,-0.00013302221,0.01738763,0.002681175,0.028653512,0.023905084,0.022240805,-0.004716424,0.0010030766,0.029235428,0.03719603,-0.04818259,0.022776168,-0.019145016,-0.038895223,-0.0013609546,0.07802321,0.05409485,0.022648146,0.07052814,0.036730498,-0.04545923,0.009380476,-0.04036165,-0.04818259,-0.009106975,-0.013546989,0.0089324005,-0.046460122,-0.011830339,-0.022298997,0.00075867213,0.027862107,-0.047135144,0.0042712586,-0.017992822,-0.0031510717,0.031656194,0.020716187,0.055444896,-0.013896138,0.011021477,-0.0037504444,-0.015478949,-0.022438657,-0.06256754,-0.076905936,-0.011358988,-0.0077452934,0.014897034,0.026768107,0.07164542,-0.022811081,0.023811977,0.015362565,-0.00687242,-0.03698654,-0.00026604443,-0.0048182593,0.0041228705,-0.009811093,-0.004777525,0.009781998,-0.029700961,-0.019843314,-0.032982964,0.03156309,0.031376876,0.014943587,-0.027187085,0.0007892227,0.0033605613,0.015339289,-0.01450133,-0.042735863,-0.048229147,-0.043271225,0.010544307,0.012697393,0.020134272,0.0008677813,-0.04057114,0.024463722,-0.01326767,0.036404625,0.025930148,-0.012988351,0.035985645,-0.02352102,0.007122644,-0.019028632,0.051720638,-0.0086298045,0.027373299,-0.018097568,-0.013721564,-0.006587282,-0.0062555904,0.06042609,0.0016046317,0.01258101,0.04550578,-0.0038871947,0.0035496836,-0.059820898,0.011987456,-0.0011958361,-0.010183519,0.029025938,-0.052977573,0.011422998,-0.032680366,-0.04105995,0.008740368,-0.014606075,0.01444314,-0.03039926,0.042922076,0.013861224,0.0066803885,-0.012906883,0.0126741165,0.031539813,-0.01265084,0.008653081,0.03477526,0.020169187,-0.049625743,0.028420746,0.027187085,-0.009403752,-0.0013624093,0.055305235,-0.001275122,-0.0107014235,-0.0069946228,-0.023090402,0.023136955,-0.014838842,0.012429712,0.0075532612,-0.007611453,-0.01258101,0.014897034,0.022380466,-0.013186202,0.0022316454,0.015979396,0.009869285,-0.0019988792,-0.063964136,-0.08063019,-0.03733569,0.023299892,0.0014446048,0.04236344,-0.036963265,0.04371348,0.006209037,0.0029052123,-0.015572055,-0.023835253,-0.0025604276,-0.0032965506,0.03842969,-0.024114573,0.018330334,-0.0040995935,-0.036753774,-0.007401963,0.0064534415,0.007954783,-0.06084507,0.03512441,0.008920763,-0.00832139,0.003732987,-0.041758247,0.008554156,0.015025055,0.0006451987,-0.039546967,0.005627122,-0.013500436,0.02639568,0.050789572,0.0101777,-0.024370614,0.027606064,0.0059588132,-0.00094561244,0.021216635,-0.009723806,-0.012743946,0.021158442,-0.014815565,-0.0035933272,0.03181913,0.0054350896,0.018388525,0.033634707,0.021193357,-0.023486104,-0.10204468,-0.01319784,0.026023256,0.064708985,0.035636496,0.0033867473,-0.018970441,-0.0037562638,-0.062939964,0.016281992,0.03340194,-0.010940009,-0.018237228,-0.033518326,-0.028141428,-0.017678589,0.008059528,-0.011225147,-0.014047436,-0.04448161,-0.029444918,0.044597995,0.01650312,-0.012243499,-0.012324967,-0.0030608748,-0.012231861,0.03181913,-0.000438255,0.005039387,-0.01615397,0.030003555,0.0006906608,0.005749324,-0.04236344,-0.014466416,-0.028979385,-0.0062614093,-0.025743935,0.026209468,0.029142322,-0.0044982056,0.0017690227,0.0061857603,-0.0037242584,-0.02660517,-0.013872862,0.0156768,0.010747977,-0.0032878218,0.0013645915,-0.012487903,-0.013174564,0.0146991825,-0.027117256,-0.024021465,-0.001760294,-0.03726586,-0.031376876,0.030003555,-0.041897908,0.03375109,-0.033588156,0.005598026,-0.02674483,0.04371348,0.0009994396,0.035915814,0.029049214,-0.022310635,-0.025022361,0.011073849,0.012045648,0.026791383,0.02357921,-0.013104734,0.014524607,-0.011009838,0.0027204542,0.011568477,0.03698654,0.026512064,-0.011417179,-0.01553714,0.031679474,-0.006936431,0.0011507376,-0.025394786,0.029328534,-0.041013394,-0.0011958361,-0.008891666,0.023707232,0.020041166,-0.0648952,0.0025313317,0.0039512054,0.010532668,-0.026256021,-0.038336582,0.037940882,0.059355367,-0.021670528,0.0030346885,-0.006657112,-0.019168291,0.0033431037,0.009019688,0.024905978,-0.0041956096,-0.012813776,-0.00029223063,-0.0013260397,-0.0058104247,0.011219328,0.0075299847,-0.02963113,-0.00068011356,-0.03128377,0.022240805,-0.046087697,-0.031260494,-0.018679483,0.0014620624,0.01092837,0.012778861,-0.023358082,0.039663352,0.0037940883,0.004463291,-0.013453883,-0.019948058,0.018679483,0.013965969,-0.05740013,0.02233391,0.0154091185,0.02681466,0.014582799,0.0041956096,0.029165598,0.011370626,0.027396575,0.0068025906,0.03403041,-0.019924782,-0.013372415,-0.01739927,0.0023465736,-0.01711995,-0.012243499,0.001243844,-0.03631152,-0.013640096,-0.0052837916,-0.020983867,0.02014591,0.011492829,0.005906441,-0.030655302,0.011830339,-0.02723364,-0.000030300514,-0.021053698,0.0027204542,-0.016095778,-0.019494165,-0.0120689245,0.021367932,0.030375982,0.03775467,-0.012383159,0.024486998,-0.055165578,-0.009688891,0.016666057,0.00584534,0.0035496836,-0.011120402,0.021344656,-0.025022361,0.026349127,-0.01093419,0.0039192,-0.011626669,0.027559511,-0.024929253,0.023905084,-0.01958727,0.021216635,-0.0072564846,0.010806168,-0.0036456997,-0.0026564435,-0.01904027,-0.03254071,0.008187549,0.048275698,-0.027862107,-0.0044429237,-0.031726025,-0.021204995,0.030841514,-0.011091307,0.035659775,0.015432395,0.041572034,0.045273013,-0.017760057,-0.0001595721,0.02083257,0.014326756,-0.012918521,0.014512969,-0.0018490361,0.037568457,0.0020788927,-0.03808054,0.01594448,-0.01265084,-0.0072913994,-0.020797655,-0.015025055,-0.019971335,0.038336582,-0.0093339225,-0.0023087491,-0.008472688,-0.025324957,0.05740013,-0.026861213,-0.020855846,-0.024975806,0.021414485,-0.016852269,-0.031958792,0.019482527,-0.018935526,0.019773483,0.014210373,-0.0024251323,-0.03086479,-0.011033115,-0.031330325,-0.015548779,0.009188443,-0.020786017,-0.028793173,-0.023462828,-0.009793635,0.009246635,-0.031865686,-0.018248865,0.03188896,-0.02977079,0.011184413,-0.02186838,-0.025324957,-0.00042225234,0.022857636,-0.012837053,-0.009572508,0.034519218,0.009048784,0.039616797,0.0053739883,-0.03561322,-0.023090402,-0.017922994,0.0067909523,-0.0385228,0.014059075,-0.025953425,-0.023253338,0.011417179,-0.016119055,-0.00041025033,0.025999978,0.00052845187,0.0063137817,0.024999084,0.006401069,-0.0061508454,-0.014862118,-0.050789572,-0.017655311,0.037102923,-0.04201429,-0.031051004,-0.01717814,-0.0049899244,0.0062730475,0.048229147,-0.028700065,-0.028141428,0.00057355035,0.009566689,-0.034751985,-0.012743946,0.0018563101,0.0028993932,-0.0032092633,0.001725379,-0.026418958,0.0109050935,0.005307068,-0.038755562,-0.00976454,-0.031516537,-0.022054592,0.027000872,-0.0053303447,-0.023544295,0.026512064,-0.016887184,-0.07914049,-0.018411802,0.013069819,-0.012022371,-0.006674569,0.02371887,0.0011441911,0.052465487,-0.036893435,0.006447622,0.019982973,-0.014827203,0.0049608285,-0.022101145,0.054420725,0.0060111857,0.028374193,0.01972693,0.00859489,0.0107537955,-0.026768107,-0.010579221,-0.003863918,0.022368826,-0.0020439776,0.020180825,-0.0020948953,-0.0022636508,0.055584554,-0.030259598,-0.013256032,0.011166955,0.019098463,-0.015339289,-0.0046582324,0.020809293,-0.005577659,0.02509219,-0.00019257762,-0.03680033,-0.007239027,-0.0042247055,-0.03719603,-0.00078267616,0.0109050935,0.043620374,0.0004960828,-0.00405886,0.016188886,-0.0025516988,0.015781544,0.024626657,-0.0011856526,0.0027189995,0.0075183464,0.0063137817,-0.0010299901,0.024137849,-0.0016730067,-0.028304363,0.012848691,0.0014278748,0.01951744,-0.03829003,0.004841536,-0.020809293,-0.013360777,-0.023974912,0.016724247,0.007960602,0.011847797,-0.009060422,0.0435971,0.043573823,0.051999956,0.013663373,0.00453894,-0.028863002,0.032494154,-0.029700961,-0.006895697,-0.0064999945,0.0011980182,0.036334794,0.03286658,-0.0068316865,-0.0055194674,0.0031307046,0.0031685291,-0.036171857,0.0025269676,-0.007948964,0.0110563915,0.024812872,0.04089701,-0.021286463,-0.020157548,0.02000625,0.025185296,-0.0353339,0.013768118,0.01079453,-0.0010016218,-0.010183519,0.0029721328,0.01560697,0.0011485554,0.0052081426,0.005691132,-0.052418936,-0.0005011746,0.027792277,-0.015525502,-0.017550567,-0.02338136,-0.00045389397,0.044993695,-0.026721554,0.010352274,0.020029526,0.04317812,0.015734991,-0.024463722,0.008839294,-0.01759712,0.0044254665,0.0043149022,0.018749313,0.0095375925,0.04343416,-0.03645118,0.032191556,0.011591754,0.01169068,-0.023160232,-0.0072623035,0.044435058,-0.00021567238,-0.036870155,0.05507247,0.0056067547,-0.025837041,-0.016049225,0.030329429,0.020262294,0.020669634,-0.024440445,0.04015216,-0.013791394,-0.018923888,0.0039337478,-0.0084785065,-0.017026844,0.030003555,0.014268565,0.046041142,-0.0012358427,0.009427029,-0.0061799414,0.033099346,-0.0046174983,0.033657983,0.048275698,-0.007914049,0.032261387,0.031190664,-0.01594448,0.00233639,-0.023835253,0.005522377,-0.030538918,0.014280203,0.02206623,0.008845113,0.024021465,0.03856935,0.049672294,0.0061101113,0.008909124,0.008140996,-0.012534457,0.016421651,0.003610785,0.004504025,0.014908671,0.01863293,-0.018376887,-0.015211267,-0.01780661,0.007599815,-0.0014162365,0.06666423,0.015700076,-0.007733655,-0.015478949,-0.013011628,-0.012383159,0.005211052,-0.035287347,0.025906872,0.012639201,0.019680377,0.015164714,0.008164273,-0.010614136,-0.016142333,-0.043131568,0.023195146,0.009543412,0.05144132,0.017469099,-0.016410014,-0.00501902,0.024626657,0.011038935,0.022473572,-0.022787806,-0.028071597,0.01629363,-0.009799454,-0.006930612,-0.022124423,0.006965527,0.0074776122,-0.030794961,-0.025883595,-0.007937325,-0.0110040195,-0.025324957,0.022531763,0.03477526,-0.01106803,-0.026977597,0.04008233,-0.005906441,-0.016037587,-0.0036282423,0.03114411,-0.029235428,0.02509219,0.0021763635,0.06079852,0.0012023826,-0.03349505,0.015572055,0.005563111,0.008030432,0.0010430833,-0.016677694,-0.0016148151,-0.0030928801,0.017259609,0.018469993,-0.012778861,0.057586346,0.012965074,0.020134272,0.042712588,0.03484509,-0.004975376,0.0047076955,-0.014559522,-0.033914026,-0.020483421,-0.005219781,0.02695432,0.0036806148,-0.0059442655,-0.025557723,0.018772589,0.0032063536,-0.00063246925,-0.034542497,0.024859425,-0.024230955,0.00058700715,0.00053427106,0.0014969773,-0.009776178,0.009752901,-0.011521924,-0.010637413,-0.0065756436,0.0030754227,-0.009584146,0.00048517194,0.00858907,-0.011190233,0.01822559,-0.0013944147,0.03912799,-0.003959934,0.0024731404,-0.038127095,0.0151065225,0.0083854,-0.040059052,-0.03328556,0.024580104,0.020751102,-0.030981174,-0.003404205,-0.012918521,-0.051161997,-0.029887173,-0.02172872,-0.002006153,-0.02097223,0.051580977,0.003520588,0.014687544,0.008344666,0.04434195,-0.039430585,-0.0048182593,0.0338442,-0.028583683,-0.019808399,-0.00832139,0.0031219758,-0.000008569613,-0.049067102,-0.0167708,0.025278402,-0.0006146481,-0.024230955,0.004181062,0.000010939327,0.016270354,-0.03396058,0.014466416,-0.020937314,-0.014629352,-0.010375551,-0.01031154,-0.04504025,-0.018120844,0.042177226,0.020727824,0.019948058,-0.013069819,0.019750208,-0.010841083,0.019447612,0.026791383,-0.023497742,0.024440445,-0.011580116,-0.0005899167,-0.005513648,0.06531418,0.012662479,-0.0029852258,0.002812106,0.019377781,0.021321379,0.022194251,0.030469088,0.024161126,-0.015269459,-0.017922994,-0.0005128129,0.023974912,-0.0050102915,0.03829003,-0.012546095,-0.010660689,0.0036486094,0.02192657,0.006127569,-0.03680033,0.023835253,-0.0025051457,0.024580104,-0.06456933,-0.007239027,0.02702415,0.005100488,0.019889867,0.000037779035,0.012743946,-0.023555934,-0.03959352,-0.0038057265,-0.042153947,0.006523271,-0.0065698246,0.020332122,0.031376876,-0.004826988,0.023486104,-0.019156653,0.012313329,-0.023602488,-0.0028499304,0.057632897,0.0046989666,-0.029887173,-0.04278242,-0.02509219,-0.017864801,0.030632025,0.03163292,0.015059969,-0.008536698,-0.0038202743,-0.012965074,0.011388084,0.0029852258,0.0029794066,0.018528186,0.011452095,-0.044109184,-0.004696057,0.017445823,0.0058016963,0.017096674,0.014862118,0.017760057,0.018656207,0.02963113,0.0057435045,-0.015397481,0.011952542,-0.023881806,0.0005204505,-0.0058075152,-0.016514758,-0.02935181,0.0202041,-0.02653534,0.004751339,0.040850457,-0.013011628,-0.0028644784,0.04799638,0.016945375,-0.025045637,-0.0016439109,-0.023660678,0.013104734,0.020052804,0.023753785,0.014571161,-0.0014911582,0.011591754,-0.031167386,-0.024440445,-0.015583693,-0.044528164,0.002572066,0.0078674955,0.022112783,-0.005769691,0.01739927,-0.0028091965,0.0030026832,0.026093084,0.019412696,0.008501783,0.027745724,-0.009293188,0.008286475,0.000038551894,-0.0378245,0.00632542,-0.0024105844,-0.022170976,-0.015059969,-0.0020934406,0.018190674,0.010887637,-0.001581355,0.020983867,-0.0077743893,-0.025022361,0.030096663,-0.0497654,0.023136955,0.016200524,-0.019866591,0.009991487,-0.00019894232,-0.0039133807,0.014652628,0.00022312817,-0.038732287,-0.015316012,0.003404205,-0.032284666,0.007809304,0.009461944,-0.0084785065,-0.014873757,0.02343955,-0.0123715205,-0.016898822,-0.01560697,0.017213056,0.00529543,-0.010404646,-0.021216635,-0.004579674,-0.008507603,0.04634374,0.0029313986,0.004614589,-0.0023087491,0.006145026,-0.031656194,0.0075183464,-0.027885385,-0.037591733,0.0014671541,0.01822559,0.003904652,0.011626669,-0.006371973,0.005766781,0.057726003,0.014222012,0.008018794,0.010544307,-0.04171169,-0.009095337,-0.038615905,-0.016398374,-0.036683943,-0.035706326,-0.040524587,-0.039197817,-0.0050859405,-0.0058337017,0.0019508712,0.01691046,0.01553714,-0.0019683286,-0.0036456997,0.004448743,0.028583683,-0.0023625763,-0.023602488,0.007576538,-0.037149478,0.028304363,-0.020227378,0.005577659,-0.0008714183,0.0540483,0.028420746,-0.02516202,0.020925676,-0.033192452,0.050975785,0.012871968,-0.0008495964,-0.009770359,0.027582789,-0.012394797,0.0156768,-0.019854952,-0.017015206,0.038871948,0.022939103,0.022368826,-0.0055747493,-0.010986562,0.03442611,-0.037242584,0.03684688,0.014408224,0.020518336,-0.04669289,-0.025418064,0.013698287,-0.0055194674,0.010486115,-0.024649935,0.025580999,-0.030259598,0.0028673878,-0.028653512,-0.035915814,-0.007890772,-0.02748968,-0.02867679,-0.038965054,0.024743041,-0.0037824498,-0.005787148,0.015921203,0.011772147,-0.044644546,0.055491447,-0.0041025034,0.033564877,0.02639568,-0.019366143,-0.006063558,0.0088800285,0.0006033735,0.016584588,0.032959685,-0.0059500844,-0.05144132,0.008600709,0.016724247,0.011987456,-0.01780661,-0.02000625,0.016526395,0.02234555,0.007431059,-0.01987823,0.030818237,-0.020937314,-0.0034536677,0.027396575,-0.025138743,0.008885847,0.003258726,0.0035758698,0.002714635,-0.00068411423,-0.024649935,-0.014803926,-0.012813776,-0.037475348,-0.00019694198,-0.001760294,-0.016654417,0.019843314,0.0360322,-0.0007543078,-0.015176353,-0.00076303654,-0.009258273,-0.024300786,0.0025749754,0.021193357,0.013861224,-0.004021035,-0.026232744,0.015339289,0.027047426,0.012464627,0.026465511,0.052093063,-0.0049404614,-0.007803485,-0.035985645,-0.050556805,-0.004841536,-0.021938208,-0.012767223,0.016654417,0.01258101,0.017445823,-0.022601593,0.010811987,-0.013034904,-0.03554339,0.023835253,-0.009072061,0.041967735,-0.014384948,0.01787644,0.04380659,0.026302574,-0.004655323,0.0013434971,-0.014478054,0.03361143,-0.020529974,0.015618608,0.031051004,-0.021810187,0.010730519,0.031307045,0.0061915796,-0.013430607,0.015572055,-0.0049695573,-0.028909555,0.01999461,0.011405541,0.003616604,-0.0033431037,0.0009667069,-0.04874123,-0.010154423,-0.01671261,0.009339741,-0.034472667,-0.013709926,0.016782438,0.013570266,0.002729183,0.008018794,-0.0030899707,0.056608725,0.0043847323,0.019622186,0.009240816,-0.04131599,0.0022592864,0.01615397,0.00563585,0.05130166,-0.0061217495,-0.06671078,0.01671261,-0.011143679,0.051953405,0.0031918057,0.042247057,-0.014350032,-0.017922994,0.0054903715,0.0104977535,0.012022371,-0.02303221,-0.027373299,-0.017585482,-0.008897486,-0.009915838,-0.012290052,-0.005836611,-0.008303932,-0.028863002,-0.027675895,0.029281981,-0.00467569,-0.003252907,0.014769012,-0.012150393,-0.009560869,-0.023241699,0.0103464555]},{"id":"guide-webhooks-7","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Editing a Webhook\nUse webhook.edit() to change name, avatar, or (with bot auth) channel. With a token (e.g. from createWebhook or fromToken), you can update name and avatar. Without a token (fetched webhook), bot auth lets you also change the target channel.\n\n```javascript\nimport { Client, Webhook } from '/core';\n\nconst client = new Client({ intents: 0 });\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n\n// With token (name and avatar only)\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\nawait webhook.edit({ name: 'New Name', avatar: null });\n// avatar: null clears the webhook avatar\n\n// With bot auth (fetched webhook — can also move to another channel)\nconst fetched = await Webhook.fetch(client, webhookId);\nawait fetched.edit({\n name: 'Updated Name',\n channel_id: newChannelId, // move webhook to different channel\n});\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.012501302,0.012295831,-0.026192175,-0.041245647,0.01320423,-0.008635199,0.006986022,0.03131814,0.010403332,0.02043898,0.048534468,-0.0055585373,-0.015367085,-0.022212522,0.0026157028,0.047626067,-0.015107542,0.0044744066,-0.04412224,-0.018730324,-0.022515321,0.0032902432,0.02476469,0.07444547,-0.013528658,0.0295446,-0.03523291,-0.004031021,-0.024980975,-0.026451718,0.019573838,-0.012187689,0.0028982258,0.019746866,-0.031123484,0.037330877,0.014026115,-0.017951697,-0.007542957,-0.0030766614,-0.02504586,-0.029674372,0.01588617,0.037439022,0.0058234874,0.04879401,-0.06994673,0.035838507,-0.026624745,0.028290143,-0.034497537,-0.01193896,-0.02046061,0.017789483,0.0014856111,0.0036363,0.008326991,-0.031577684,-0.056666803,0.04524693,-0.019271038,-0.025911003,0.0144262435,-0.042024273,-0.014112629,0.0145884575,-0.07319102,-0.005109745,-0.005542316,0.01093864,0.07695438,0.023466976,0.0050989306,0.00451496,-0.035708737,-0.03358914,-0.019238595,0.01768134,-0.011084632,-0.017843554,-0.057358917,-0.033156566,-0.1175728,-0.014685785,-0.035925023,0.019844195,-0.011679417,-0.070292786,0.018276125,-0.042002644,-0.008472985,-0.0022385549,-0.038282536,-0.009240798,0.040813074,0.034973364,-0.01565907,-0.039190933,-0.016394442,0.02132575,0.04102936,-0.035860136,-0.04641487,0.007699764,0.013344816,-0.053336006,0.033783797,0.05074058,0.0028144151,-0.040618416,-0.083832264,-0.058224056,-0.00902992,0.01773541,-0.0042175674,-0.04593904,0.034216367,0.033243082,0.004044539,-0.07396964,-0.04262987,-0.022731606,0.09456002,-0.0435599,-0.0074348142,-0.01664317,-0.045895785,0.04429527,-0.06285257,-0.014847999,0.06055994,-0.016210599,0.011495574,-0.01048444,-0.050394524,-0.04390596,0.0077376137,0.04593904,-0.0013761165,0.013171787,0.018838467,-0.0700765,0.010430369,-0.04115913,-0.031080227,0.021974606,-0.04399247,0.061079025,-0.03804462,0.0017640786,-0.046241842,0.007975528,-0.0012132265,0.020211881,-0.000971933,0.05567189,-0.0014896664,0.026062403,-0.05043778,-0.05731566,-0.012631074,0.0149237,-0.0015099432,-0.014307286,-0.01828694,-0.03802299,0.0008597349,-0.0060235513,-0.050221495,-0.00570453,0.007829535,-0.023899548,0.02038491,-0.0028955222,-0.00011828113,-0.0070887576,0.016859455,-0.03220491,-0.010533104,0.02653823,0.007699764,0.0292418,0.006493972,-0.023164177,-0.033654023,-0.026689632,0.0011294158,0.0024399708,-0.027554773,-0.01977931,-0.012620259,0.01320423,-0.007186086,-0.036465734,0.02805223,0.0141018145,0.023899548,0.018676253,0.012804102,-0.046371613,0.013625987,-0.0062290225,0.0088136345,-0.022753235,-0.030409742,0.010138383,0.002262887,0.008240478,-0.012111988,-0.017778669,0.023704892,-0.004909681,0.016859455,0.016989226,-0.08024192,0.008851484,-0.016556656,0.014880443,-0.049096808,-0.013247487,-0.028398287,0.008137742,0.009646334,-0.021963794,-0.03637922,-0.001799225,0.03239957,-0.026430089,-0.032723997,0.027100574,-0.0030144793,0.036033165,-0.01239316,-0.03521128,0.012955502,-0.017118998,0.015280571,0.014718229,0.005623423,0.022093564,-0.045290183,-0.017032484,-0.012512117,-0.009116434,-0.042456843,0.005423359,0.005001602,-0.054071374,0.025089119,0.0073428927,0.054114632,0.027857574,0.014826371,-0.007732207,0.03265911,-0.008516242,-0.011917331,0.0148696285,0.0033091682,-0.011549646,0.08024192,0.0023034406,-0.011895703,0.040229104,0.003536268,-0.008851484,0.018762767,0.03194537,-0.008397285,-0.02296952,-0.036011536,0.0054125446,-0.021487964,0.0061533228,-0.052600633,0.03058277,-0.010587175,0.011084632,-0.018546483,0.008748748,-0.0050800056,0.0070184646,-0.008078263,-0.0025846118,-0.0032442827,0.028744344,-0.027792687,-0.00585593,0.03547082,0.028939001,-0.025629831,0.028203629,-0.02431049,-0.01388553,0.018503224,0.10260584,0.04862098,-0.0059857015,0.0284848,0.019606281,-0.018178796,0.016297113,-0.019271038,-0.0049556415,0.01193896,0.037482277,0.017800298,-0.03700645,0.0042175674,-0.054720234,0.0021020249,0.046458125,-0.013636801,-0.033956826,-0.025911003,0.0052746627,0.031123484,0.015972685,0.015723957,0.026451718,-0.037179478,-0.0091759125,-0.041959386,-0.06164137,-0.03404334,-0.04844795,0.0019357553,0.011549646,0.04818841,0.015442785,0.03343774,-0.03313494,0.024829576,0.017367726,0.001153748,0.016708056,0.0025237815,0.024807947,0.00064446323,0.0033199824,-0.009300277,-0.02537029,0.001599161,-0.022385549,-0.053595547,-0.0038201427,0.054547206,-0.0057964516,-0.05718589,-0.010830496,-0.00623443,0.022299036,-0.017843554,-0.045549728,-0.032594226,-0.008905556,-0.005866744,-0.011192774,0.0041986424,-0.00359845,0.008797413,0.035751995,-0.0035714144,0.034194738,-0.0023507532,-0.026841031,0.047236755,-0.02552169,-0.007916049,-0.026884288,0.0023737333,-0.052168064,0.024050947,-0.0025805563,-0.060776226,-0.00088812236,0.030020429,0.025629831,-0.02997717,-0.015313013,0.06371771,0.023661634,-0.014015301,-0.053941604,-0.005937037,-0.0014599272,-0.0027535849,0.02402932,-0.03505988,-0.009543598,-0.015540114,-0.016210599,-0.011365803,0.012025474,0.006996836,0.009868026,0.038736735,0.028182002,0.0286362,-0.010608804,0.011495574,0.009754476,-0.018330196,-0.01350703,0.033783797,0.005071895,-0.022947893,0.059435256,0.02655986,0.024353748,0.019465696,0.022861378,0.013020387,0.03981816,-0.025997518,-0.012479673,0.050308008,-0.036465734,0.025759604,0.030799055,-0.038823247,-0.008137742,0.03345937,-0.025954261,-0.005228702,-0.0154752275,-0.0287876,-0.011701046,0.014447872,-0.042478472,-0.061122283,-0.037655305,0.01985501,-0.03248608,0.03774182,-0.055152804,0.013366444,-0.014945328,-0.010397926,-0.0076132496,-0.06025714,0.014988585,0.031902112,0.03326471,-0.028246887,0.047669325,-0.009440863,-0.0015437378,-0.03979653,0.009008291,-0.022169264,-0.04983218,0.02567309,0.030409742,0.00520437,0.0049988986,-0.0070617218,0.034821965,0.038909763,0.012101174,-0.0113982465,-0.034237996,-0.0025156708,0.084956944,0.02582449,-0.0148696285,-0.03806625,0.037222736,-0.023229063,-0.06116554,0.05688309,0.039299075,0.008889334,0.016145714,-0.016783755,-0.031274885,-0.0007624064,-0.054633718,0.01915208,0.05372532,0.03895302,0.01246886,-0.023813033,0.0021709658,0.012566187,0.09507911,0.036141306,0.0017438019,0.015907798,-0.013809829,-0.003198322,0.013031201,-0.006845436,-0.008435135,-0.017292026,-0.053033207,-0.026430089,-0.015583371,-0.0045852526,-0.010846718,-0.024050947,-0.042002644,-0.00876497,0.040077705,0.013139345,0.021963794,-0.002357512,-0.0028765972,-0.000657981,0.02327232,-0.042478472,-0.041829616,-0.0054395804,0.015572556,-0.0005488245,0.014026115,-0.013907158,0.026343575,0.012728402,0.020417351,-0.024526777,0.026905917,0.041094247,0.0110738175,-0.01626467,-0.0075321426,-0.035708737,-0.055109546,-0.006477751,-0.0037849962,0.006331758,-0.038390677,-0.008180999,-0.044208758,-0.038715106,-0.007937678,-0.024418633,-0.027835945,-0.00014590823,0.0069373576,-0.046025556,0.02283975,-0.0105493255,0.041678216,-0.02344535,0.00043595047,-0.005347659,0.04788561,0.01209036,-0.0040553533,0.029869027,-0.03164257,-0.027814316,0.011592903,0.018092282,0.017389355,0.00731045,0.011452317,-0.0004917116,-0.00034284632,0.0041634957,-0.0032686146,0.012544559,0.005136781,-0.0084297275,-0.0039147674,0.017897626,-0.01813554,-0.024440262,-0.02268835,-0.005472023,0.008213442,0.036357593,-0.0023494014,0.035254538,0.05013498,-0.020503866,0.03328634,-0.0013288041,-0.01768134,-0.024007691,-0.072455645,0.012339088,0.0061208797,-0.027035687,0.003887732,-0.044598073,-0.023813033,-0.010003204,0.02790083,0.0144262435,0.00067183684,0.0012044399,0.011517203,-0.018146355,-0.0046852846,0.0046933955,0.009311091,-0.016837826,0.0032334684,-0.030972084,0.0014491129,-0.043040816,-0.014437057,-0.034497537,0.0124472305,0.008932591,-0.010311412,-0.002057416,0.018038211,0.03343774,0.0013173139,-0.004158089,0.016437698,0.016394442,0.0021425784,0.015832098,-0.004263528,0.02200705,0.0298474,-0.02701406,0.020320022,0.027100574,0.048015382,0.00149237,0.022926264,0.023640005,-0.024851205,0.010603397,-0.0024751173,0.0024034726,0.002965815,0.014447872,0.009132655,-0.016978413,-0.0161349,0.049356353,-0.023207435,-0.021812392,-0.015778027,0.008770377,-0.010625025,0.015896985,0.0068400293,-0.026192175,-0.002941483,-0.01178756,0.021487964,-0.007223936,0.0041472744,-0.020655265,0.0074834786,0.025283776,0.005253034,0.026386831,-0.03698482,-0.00002135397,0.0141234435,0.013106901,0.018027397,0.02185565,-0.027814316,-0.018578924,0.028874114,-0.0040364284,0.0019208856,-0.0450739,-0.010998118,-0.057099372,0.010619618,-0.032853767,0.019790124,0.03536268,-0.01216606,-0.009813955,-0.027187089,0.013452958,-0.037828334,0.019952338,0.057791486,0.0058397087,0.00028167808,-0.015323828,0.014058557,0.031556055,-0.012414788,0.01998478,0.026754517,0.012414788,0.0070184646,-0.037265994,0.0028793009,-0.0048826453,-0.0003398048,-0.004658249,0.06856251,0.018719511,0.030452998,0.04089959,-0.014815557,0.021033766,-0.020092923,-0.0009448973,-0.008883927,-0.013269115,-0.025846118,0.021650178,0.0060722157,0.039320704,-0.015994312,-0.011046782,0.02046061,0.015215686,-0.012274202,-0.013042016,0.034670565,-0.012631074,-0.0002551493,0.006445308,0.025024233,0.014793929,-0.017173069,-0.023769777,-0.015367085,-0.012533745,-0.036746908,0.011473946,0.026473345,-0.016589098,-0.017140627,-0.023748148,-0.007223936,-0.006493972,-0.030409742,0.0031956183,0.040553533,-0.04120239,-0.0071320147,0.01747587,-0.005085413,0.0065264152,0.023661634,-0.017292026,-0.007840349,0.018232867,0.013290744,0.046328355,-0.015237314,-0.014469501,0.00451496,-0.00074348145,0.004596067,-0.04715024,0.008548684,-0.034973364,0.0049718632,0.007867386,-0.039472103,0.0008408099,0.017292026,-0.0014856111,0.01634037,-0.00046501384,0.014415429,-0.056580286,-0.010641247,-0.0033389074,-0.00857572,0.023380464,0.0055287983,-0.03698482,-0.036335964,-0.02446189,0.0050610807,0.038433935,-0.038671847,-0.02835503,-0.0052070734,-0.010360076,-0.037222736,-0.017270397,0.020201067,-0.007926864,-0.037049707,0.008743341,-0.056796573,-0.011874074,-0.030409742,-0.033243082,0.009673369,-0.033091683,-0.008202627,0.030085314,-0.026970802,-0.012371531,0.01836264,0.012198502,-0.04654464,0.010565547,0.04085633,-0.027533146,0.027641287,-0.014458686,-0.015107542,0.015907798,0.028030602,-0.025024233,0.019800939,0.03265911,0.019541396,-0.03371891,0.055715147,-0.031967,0.0074834786,0.034475908,-0.0030685505,0.0021966496,-0.0306044,-0.0056450516,-0.018351825,0.04278127,0.000014404953,0.045117155,0.009970762,-0.008116114,0.035557337,-0.023704892,-0.01894661,0.021574479,0.008170185,-0.0301502,-0.0013963933,0.031902112,-0.014577643,0.0031902113,-0.03815276,-0.030388113,-0.0009421937,-0.013982858,-0.011809189,-0.0007529439,-0.0075970283,0.020925622,-0.016459327,0.02567309,0.01752994,0.015799657,0.0066994433,0.015680699,0.0012226889,0.0017086555,-0.0016775645,0.000027753824,0.0029820364,0.023337206,-0.0026562563,-0.012544559,0.053595547,0.03642248,-0.013042016,-0.007921456,0.0052395165,-0.024980975,-0.01894661,-0.023207435,0.0044041136,-0.010679097,-0.010965675,-0.0033010575,0.050351266,0.041440304,0.008656828,-0.0002470386,0.00914347,-0.022255778,0.059045944,-0.013474587,0.024570033,-0.007429407,0.016286299,0.036184564,0.012490488,0.024007691,-0.008413506,-0.04490087,0.037547164,0.002564335,0.011117075,-0.001768134,0.0143181,-0.02253695,0.02006048,-0.0030766614,-0.021996235,-0.0066507794,0.020276766,-0.03493011,-0.020774223,-0.010738575,-0.01664317,-0.022104379,0.011993031,0.0015910503,-0.008927184,0.0076024355,-0.0000149329935,-0.029133657,0.03968839,0.023358835,-0.014231586,-0.01715144,-0.043019187,0.004093203,0.050351266,-0.017216327,0.05433092,0.0051584095,0.02074178,0.016610727,-0.0059965155,0.0012057917,-0.01687027,-0.0065858937,0.013366444,-0.012998759,0.012187689,0.034584053,-0.0043257102,-0.0020357873,0.00254541,0.004201346,-0.040337246,-0.001549145,0.020265952,0.0006184414,-0.018881725,0.022472063,-0.001423429,-0.01025734,-0.02177995,0.020168623,0.023921177,0.028117115,0.005261145,0.0027427706,0.0015072396,-0.026084032,0.009743662,-0.019563023,-0.032572597,0.0039904676,0.021109466,0.0444683,0.0039012497,-0.001918182,-0.037071336,0.032745626,0.030626027,0.004866424,0.0286362,0.0011429337,-0.0020763408,-0.00064277346,-0.022991149,0.0015437378,-0.0013132585,-0.020676894,-0.03908279,-0.000934083,0.0059478516,-0.009732848,0.045419957,0.03668202,0.050481036,0.002690051,0.026516603,0.023813033,-0.0018222054,-0.0007191493,-0.0057802303,-0.020255137,0.00944627,0.025932632,-0.008413506,-0.015896985,-0.016686426,-0.011322546,-0.03531942,0.05294669,0.0013963933,0.023899548,-0.03808788,-0.0062668724,-0.020265952,0.0027981936,-0.031707454,-0.0018330197,-0.0072185285,0.007699764,0.0074131857,0.012241759,0.015399528,0.008527056,-0.029522972,0.036465734,0.020449795,0.026148917,0.015399528,-0.008894742,-0.010138383,0.015323828,-0.018730324,0.023834663,0.026473345,-0.042045902,-0.00768895,0.003065847,0.006277687,-0.004268935,-0.0027143832,0.02478632,-0.03345937,-0.024699805,-0.004006689,-0.005077302,-0.029349944,0.01907638,-0.0016437698,-0.010587175,-0.013831458,0.010776426,-0.0031361398,-0.0026427384,-0.021996235,0.004909681,-0.028744344,0.038909763,0.018038211,0.03088557,-0.014739857,-0.04418713,-0.025132375,0.0036660393,-0.0014504647,0.007953899,-0.0077376137,-0.020493051,-0.020655265,0.0086514205,0.015561742,-0.0453767,0.062419996,0.008078263,0.028549686,0.047366526,0.014880443,-0.01947651,0.013993672,-0.0062182085,-0.011960588,-0.020406537,-0.022017865,0.017713783,0.0035876357,0.009624705,0.022299036,0.03131814,0.021185165,0.034411024,-0.029414829,0.031469543,-0.007148236,-0.0008583831,0.00262111,0.03192374,-0.002752233,0.030409742,0.006915729,-0.047972124,0.010754797,-0.0029441863,0.013853086,-0.0008996125,0.0088136345,0.010765611,0.004331117,0.016881084,0.019541396,0.005415248,0.009273241,-0.020157808,0.033178195,-0.0012889265,-0.024418633,-0.02268835,-0.003322686,0.015951056,0.010565547,-0.03774182,0.0059911082,-0.02213682,0.010722354,0.0118416315,0.008018785,-0.012609445,0.06267954,0.016729685,-0.021077022,-0.0018032804,0.04343013,-0.019898266,-0.003611968,0.017713783,-0.020082109,-0.008591942,0.0049799737,-0.0026359796,0.009386791,-0.029912286,-0.016902711,0.0450739,0.0023845476,-0.0290904,0.0049988986,-0.0066507794,0.009305684,0.0063533867,0.0141018145,-0.005618016,-0.010749389,-0.017940883,-0.020849923,-0.0015126468,-0.0142424,0.035016622,0.034713823,0.025175633,-0.015237314,0.016599912,-0.041851245,0.05731566,0.025954261,-0.03252934,-0.011203589,-0.0161349,0.0021236532,0.026386831,0.04702047,-0.011928146,0.008408099,-0.0035578965,0.020622823,0.046631154,0.043365244,0.019649537,-0.004344635,-0.024591662,-0.0027508812,-0.0009374625,-0.00007650255,0.013723316,0.038239278,-0.00876497,-0.010619618,0.0047177277,0.005747787,-0.0101870475,-0.018903352,0.026213802,-0.026603118,0.009235391,-0.03986142,0.014274843,0.0069643934,0.0014829074,0.030517885,0.0009563875,-0.010825089,0.007505107,0.0018722214,-0.015442785,-0.03538431,0.022039494,0.004049946,0.023185806,0.05441743,-0.009321906,0.018027397,-0.015907798,0.008445949,-0.034540795,-0.0047663916,0.0149994,0.02180158,-0.046112068,-0.024353748,-0.0286362,0.020525495,0.020525495,0.050481036,0.011463132,0.00074010197,-0.009959947,-0.016026756,-0.009262427,-0.04163496,-0.0009800437,0.0596948,0.067351304,-0.024137462,0.036790166,-0.0029441863,0.026386831,0.0053638807,0.024807947,0.010268155,0.019141268,0.0082675135,0.016480956,-0.013993672,-0.00087933574,-0.018351825,0.013442144,-0.01828694,-0.015572556,-0.009316498,0.04563624,-0.034692194,-0.0041094245,0.036898308,-0.010765611,0.006277687,0.05714263,0.039017905,-0.0052584414,0.0073969644,-0.012252574,0.025867747,0.036184564,0.03205351,0.037395764,0.013225859,0.006672408,-0.047712583,-0.04133216,-0.0043067853,-0.018276125,0.005209777,-0.033632398,0.016015941,-0.022515321,0.011463132,-0.006018144,0.012609445,0.0011253605,0.03659551,0.04490087,0.017270397,-0.014372172,0.008235071,0.0011713211,-0.008056635,-0.004758281,-0.014761486,-0.025348661,-0.018654624,0.013150158,-0.010376297,0.010873754,-0.0022845156,0.01907638,-0.0060289586,-0.02266672,0.047193497,-0.020752594,0.022039494,0.021866465,0.01915208,0.0077538355,0.0031875076,-0.021920536,-0.018600553,0.02357512,-0.03086394,-0.023466976,-0.016026756,0.005801859,-0.011679417,-0.014188329,0.052254576,0.0032496897,0.017594825,-0.012317459,0.0026738294,0.00072117697,0.018838467,0.010095126,0.000420067,-0.010608804,-0.0012929818,-0.029349944,0.047409784,-0.015540114,-0.012057917,-0.0077267997,0.03821765,-0.01924941,0.019130453,-0.04059679,-0.020298395,-0.014804743,0.003455161,-0.02006048,-0.0033740539,-0.020071294,-0.0038904354,0.025911003,0.0023291246,-0.004295971,-0.026192175,-0.023207435,0.0099437265,-0.016589098,0.020795852,-0.00030854478,-0.049140066,-0.02117435,-0.027641287,0.002633276,-0.032788884,-0.0131934155,0.0050178235,-0.0005900539,0.0032334684,-0.012706773,0.008299956,0.0011442855,0.00060086814,-0.040618416,-0.0153022,-0.013409701,0.024094205,0.0003443671,-0.002476469,0.014491129,0.034519166,0.0033902752,-0.038239278,0.023921177,-0.008629791,0.018503224,-0.02283975,0.0028036009,-0.008002563,0.008851484,-0.007953899,0.03793648,-0.043949213,-0.0070509072,0.032853767,0.0044933315,0.043105703,-0.01975768,0.0035092323,0.024094205,-0.006412865,0.004958345,-0.009100213,-0.0087325275,-0.035535708,-0.03103697,0.017778669,0.006802179,0.0018384268,-0.012955502,0.020082109,-0.030928828,-0.00021780626,0.0008043117,-0.028809229,-0.012176874,-0.027554773,0.0038688069,-0.027835945,0.010057276,-0.030496256,-0.005523391,0.004990788,0.03164257,-0.03910442,0.05398486,-0.0015937538,0.044684585,0.013907158,0.005117856,0.012101174,0.0041337567,0.007256379,0.04262987,0.053638805,-0.019433253,-0.05177875,-0.0041526817,0.017465055,0.03523291,-0.0146209,0.0057207514,0.0051340773,0.023120921,0.017173069,-0.008089078,0.009008291,-0.011290103,0.0055909804,0.022277407,-0.020525495,0.014750672,0.0039526178,0.011095447,-0.010138383,-0.0027157348,0.0074077784,-0.007191493,-0.0008056635,-0.016383627,-0.0056288303,-0.028809229,0.004282453,0.029869027,-0.002784676,0.0027562885,-0.005409841,-0.009981576,-0.018081468,-0.023769777,-0.0011084632,0.019563023,0.03371891,-0.0029955541,-0.019130453,0.0074456283,0.016124085,0.0035038253,0.0034659752,0.028982257,-0.017281212,-0.018676253,-0.014253215,-0.056320745,0.0019316999,-0.016199784,0.0000833882,0.035968278,-0.024223976,0.025197262,-0.0031631754,0.011625346,-0.010987303,-0.0468907,0.0051070414,-0.005504466,0.007910643,-0.0102465255,0.004677174,0.023034407,0.032767255,0.0042175674,0.026062403,-0.0030469222,0.020038852,0.008640606,-0.008986663,0.022363922,-0.031101856,-0.009630112,0.076219015,-0.0008408099,0.0004149978,0.017930068,-0.0032902432,-0.05683983,0.009786919,-0.0001993882,-0.02937157,0.012425602,-0.023618378,-0.021585293,0.0000013042608,-0.017497497,-0.017140627,-0.020557936,-0.01977931,0.0016870269,-0.027641287,0.011149518,0.0017086555,-0.006407458,0.029566228,0.010360076,-0.014220772,0.026300317,-0.032313053,0.0036335965,0.013139345,0.009192134,0.040034447,-0.0025751493,-0.048967037,0.0009766642,-0.0113766175,0.021314936,-0.01603757,0.03637922,-0.027922459,-0.014274843,0.008489206,0.027554773,-0.022450436,-0.003668743,0.003844475,-0.03791485,0.022190893,-0.008910962,-0.018178796,-0.0035389715,0.0026386832,-0.016253855,0.00017691478,0.037547164,-0.022071935,-0.008159371,0.00095435977,0.025391918,-0.020449795,-0.014026115,-0.0012936577]},{"id":"guide-webhooks-8","type":"guide","source":"guides","text":"Guide: Webhooks (webhooks)\nSection: Deleting a Webhook\n\n```javascript\nconst webhook = await Webhook.fetch(client, webhookId);\nawait webhook.delete();\n```","meta":{"slug":"webhooks","url":"/guides/webhooks"},"embedding":[-0.0443119,0.014830192,-0.0076496094,-0.04734941,-0.02032451,0.010977468,0.0072420025,0.03113447,0.04860015,0.010190173,0.059008084,-0.033926297,-0.013233266,-0.06678053,0.0142271565,0.058516722,-0.049225517,-0.00029994705,-0.02954871,0.037790187,0.027404586,0.058472052,-0.0028588322,0.05333509,-0.00071819784,0.023138672,-0.0056004077,-0.0039616046,-0.02718124,-0.01803521,0.022312291,-0.015444394,0.0114911655,0.03477501,-0.0033529857,0.014841359,0.024702096,0.004159824,-0.0067673917,0.061152205,-0.018481903,-0.02997307,0.017923538,0.03466334,0.012786574,0.07459765,-0.082236096,0.027918283,-0.010849045,-0.019810814,-0.034976024,0.005301682,0.0066613024,0.05914209,-0.01986665,0.0067562247,-0.0035204955,0.0060861856,-0.0466347,0.01978848,0.01583525,-0.001983594,-0.016438285,-0.017934704,-0.009743481,-0.00812422,-0.0021427283,0.017052487,-0.028990345,0.017890036,0.056193918,0.011301321,-0.019319452,-0.010139921,0.007912042,-0.01862708,0.006745057,0.031156804,-0.032429878,-0.018816922,-0.024188401,-0.020179335,-0.11185181,-0.01058103,-0.043999214,-0.021396572,-0.04181042,-0.06432372,0.046902716,0.022312291,-0.007900874,-0.0016346155,-0.022725482,0.017890036,-0.0112231495,0.013992643,-0.031268477,0.014037313,0.00036049483,0.014986535,0.072676875,-0.0466347,-0.077992514,0.024724431,-0.006571964,-0.0009883072,0.001007152,0.0061252713,-0.07294489,-0.0026536328,-0.044043884,-0.05253104,-0.051101625,0.038571898,0.0012465513,-0.0030095908,-0.0061196876,-0.0018830881,-0.012596729,-0.042569797,-0.0443119,-0.016750969,0.026868556,-0.058204036,-0.027136572,0.031737503,-0.017700192,0.054585826,-0.015343889,-0.019844316,0.06660186,0.022167116,0.02256914,-0.024925442,-0.014126651,-0.003724299,-0.0002554523,-0.016069764,0.033479605,0.044401236,0.051637657,-0.054541156,0.015757078,0.0007412304,0.00000414412,0.02327268,-0.0026913225,0.028275637,-0.035467386,-0.03718715,-0.027069567,-0.0142048225,0.038058203,0.010943967,-0.018962098,0.046411354,0.006890232,0.051101625,-0.030241083,-0.06222427,-0.014707351,0.011122644,0.022055443,-0.003643336,-0.048689485,0.024925442,0.026153848,-0.017476846,-0.0018677331,-0.008498325,0.026578205,-0.038192213,0.0015522565,-0.0076384423,-0.012083033,0.011117061,0.024925442,-0.04451291,0.009503383,-0.00299284,0.02785128,0.013825133,0.028811667,-0.0066613024,-0.04227945,-0.022144781,0.0167063,-0.00022177586,-0.061643567,-0.02838731,0.019151943,0.0035316627,-0.027382253,-0.017342838,0.050342247,0.021876767,-0.00852066,-0.0029816725,0.02689089,-0.034976024,-0.016739802,-0.0018328353,-0.004014649,-0.009179532,-0.0009666705,-0.0068678977,-0.035757735,-0.012764239,0.031469487,-0.019732643,0.014562177,0.0062704463,-0.013836301,0.014729686,-0.046411354,-0.027359918,0.0025321883,0.045272287,-0.010687118,0.0013568285,-0.022122446,-0.0189956,0.0031352232,-0.010837877,0.006711555,-0.007621691,0.02896801,-0.030375091,-0.031938516,0.019129608,-0.022435132,0.019375289,-0.006538462,0.00095620117,0.004028608,0.019330619,0.017756028,0.0070577418,-0.020726534,-0.017342838,-0.029772056,-0.05136964,-0.03278723,-0.014852527,-0.024411747,0.023094004,0.010675951,-0.021273732,0.022267623,0.021787427,0.025215793,0.043619525,0.05324575,-0.026332524,0.021876767,-0.024880774,-0.0028895424,-0.015444394,-0.020961046,-0.027828945,0.060616177,0.009201866,-0.02838731,0.017800698,0.0024107436,0.024188401,0.029169021,-0.0050839195,-0.016013928,0.025997505,-0.022714315,0.0030765948,0.045026608,-0.03906326,-0.038013533,0.041922092,-0.012071866,0.008637916,-0.050654933,-0.043038826,-0.022714315,0.019766144,-0.003936478,0.0018453985,0.045919992,0.027248245,-0.03962163,0.047170732,-0.010664784,0.032474548,-0.029615715,0.013021087,-0.036561783,-0.024702096,0.012071866,0.086524345,0.05807003,0.0023758458,0.047662094,0.005363102,-0.005885174,0.005686954,-0.02834264,-0.046411354,-0.014763188,0.00448926,-0.00598568,-0.057802014,-0.014439336,-0.01342311,-0.022222953,0.01600276,-0.050699603,0.009994745,0.011217566,-0.0014028937,-0.0025391679,0.03607042,0.014618013,-0.029236026,-0.0041374895,-0.0017895619,-0.023071669,-0.014472838,-0.024054393,-0.0615989,0.004776818,-0.010491691,0.048734155,0.059499443,0.04571898,0.0029565461,0.032742564,0.03211719,0.01036885,-0.0071414965,-0.008894765,-0.027873613,-0.024657428,-0.009804901,-0.009106944,0.017923538,-0.019073771,-0.016728636,-0.0419891,0.008721672,0.025796494,0.013199764,-0.025528478,-0.0016541582,0.00037340703,-0.0029984235,-0.013545951,-0.05494318,-0.023875715,0.0022027525,0.02843198,0.014484005,0.039219603,-0.008766341,-0.029079683,0.05552388,-0.03254155,0.015723577,0.018359063,0.020011825,-0.013646456,-0.051637657,0.026332524,-0.015355055,0.007560271,-0.019341785,0.021284899,-0.021039218,-0.07357026,0.0046456023,-0.018225055,0.05905275,0.047974776,-0.02780661,0.050520923,-0.025662486,-0.046277344,-0.055211198,0.0013665999,0.000042422704,-0.019509297,0.060035475,-0.07383827,-0.020480853,-0.0034060306,-0.044066217,0.02389805,0.012875912,0.022234121,-0.040671356,0.0051928004,0.018749919,0.015790582,-0.024947777,0.0015829667,0.020134665,-0.040872365,0.022077778,0.04348552,-0.0012221228,0.019955989,0.035043027,0.015801748,-0.038504895,0.014104317,0.074820995,0.0142494915,0.006002431,-0.025729489,-0.059365436,0.03790186,-0.033859294,0.028565986,-0.038996257,-0.054541156,0.0058014193,0.010932799,0.014763188,-0.0033083165,0.010921632,-0.008794259,0.054005127,0.020603692,-0.060884193,-0.058516722,-0.03562373,-0.01916311,-0.032184195,0.0050978786,-0.00477961,0.0008905932,0.0025489393,0.0035567891,-0.032764897,-0.06155423,-0.010837877,0.004279873,0.059365436,-0.018225055,0.004076069,-0.0060750186,-0.010798791,-0.046143338,0.020022992,0.012987585,-0.0720515,0.01945346,0.018560074,-0.000536729,-0.032653224,-0.0351547,-0.015946923,0.038616568,-0.005301682,-0.018403731,-0.018794589,-0.015500231,0.068388626,0.02423307,0.021016883,0.016784472,0.046322014,-0.008889182,-0.009927741,0.037834857,-0.009006438,0.03615976,0.013155095,-0.011770348,-0.0419891,0.04344085,0.0074597653,0.03171517,-0.002162271,0.019151943,-0.029638048,-0.0703094,-0.013668791,-0.007839453,0.06021415,0.017465677,0.0189956,0.015935756,0.024925442,-0.02660054,0.037053145,0.01388097,-0.009481049,-0.06570847,-0.028007621,-0.016929647,0.01192669,0.012518558,-0.0022906952,-0.006387703,-0.0356684,-0.0049108258,-0.0013826529,-0.0018188761,-0.0143834995,-0.03142482,-0.014305328,0.0111561455,-0.0066222167,-0.008732839,0.0030375093,-0.018638246,0.0010622906,-0.0026885306,0.012228208,-0.020224005,0.013992643,-0.0023535113,0.0030626357,-0.051816333,0.026511202,0.041006375,0.014081982,-0.045785982,0.015857585,-0.020793537,0.007917625,0.006828812,0.023451358,0.019632136,0.008420154,-0.006611049,-0.00017352958,0.004436215,-0.003576332,-0.029749721,-0.017521514,0.02601984,-0.018135717,-0.033591278,0.033635948,0.0019696348,-0.005170466,-0.0489575,-0.016304277,-0.0000873755,0.041631743,0.024255404,0.037410498,0.00835315,-0.0117368465,-0.009028773,0.012831243,0.016572293,-0.00656638,0.0036405441,-0.012351048,0.03548972,-0.011323656,-0.009296788,-0.014562177,0.028364975,-0.010502858,-0.008079551,-0.0013889346,0.01749918,0.0031994353,-0.018682916,0.0023758458,0.030620772,-0.040135324,-0.014651515,0.0028895424,0.02901268,0.04784077,-0.027024899,0.010983053,0.00096318073,-0.015399725,-0.031246142,-0.008542995,-0.013903305,0.036226764,-0.008475991,0.02660054,0.0044027134,-0.015109375,0.0025070617,-0.009548053,0.022468634,-0.035757735,-0.0051816334,-0.00079078536,-0.00017274437,-0.025416804,0.031268477,0.0032050188,-0.03370295,0.0003919029,-0.010039414,0.012585562,-0.03129081,0.0077445316,-0.022636143,0.04060435,-0.008956186,-0.002601984,-0.0019626552,0.0012605104,0.006605466,0.009598305,0.014282993,-0.028297972,0.023540696,-0.013333772,-0.011351574,0.0034255732,0.0008145159,0.016371282,0.041966762,0.009592722,0.04073836,0.016013928,0.0017016194,-0.0085094925,-0.015701242,-0.032519218,0.0070912438,0.028901007,-0.0009122299,0.0067673917,-0.030040072,-0.0142718265,-0.016326612,-0.018515404,0.0143388305,-0.032720227,0.010759707,-0.01862708,-0.026198518,-0.012697235,0.02119556,0.0030989293,-0.015288051,-0.0018733168,-0.013836301,0.024411747,-0.007817119,-0.0007073795,-0.005086711,0.015042371,0.023965053,-0.009832819,0.028208634,-0.034730345,0.0035902911,0.027024899,0.007733364,0.03524404,0.016404783,0.028766999,-0.03837089,0.028565986,-0.008297314,0.0042519546,0.016661631,-0.0011551189,-0.037455168,0.002945379,-0.042614467,0.022591475,0.031000461,-0.0029565461,0.00048508018,-0.011318072,-0.0094978,-0.050029565,0.019955989,0.040894702,-0.02718124,-0.009860737,-0.023027,-0.011949025,0.00058942474,-0.030911123,0.0030821785,0.042212445,0.033479605,0.042123105,0.0054049795,-0.04118505,-0.003964396,0.0100226635,-0.024456415,0.028744664,-0.009296788,0.025707155,0.026511202,-0.006538462,0.0024554129,-0.021787427,-0.0010029643,-0.015031204,-0.018604744,-0.022312291,0.047662094,-0.006432372,0.021854432,-0.016237274,-0.0018105006,0.018124549,-0.017856535,-0.024970112,-0.026421864,0.008403403,-0.004179367,-0.018135717,-0.0073536756,-0.031201473,0.020603692,-0.0073871776,-0.0070800767,-0.037723184,0.0071470803,0.003900184,-0.011770348,-0.0036042503,0.013177429,-0.01525455,-0.044155557,-0.011195231,-0.023295015,-0.0056841625,0.00041493546,0.048823494,-0.04281548,0.004734941,-0.018180385,-0.007409512,-0.007476516,0.040425673,-0.0026578205,-0.027672602,0.030062407,-0.007364843,0.05498785,0.01255206,0.016817974,-0.020503188,-0.02834264,0.0054552327,-0.059722792,0.025774159,-0.013344939,-0.024746766,-0.013657624,0.003269231,-0.020257507,0.025081785,0.008302897,-0.008207975,0.0033613613,0.004698647,-0.020815872,-0.017633187,-0.041832756,0.013635289,0.037388165,0.008297314,0.00015555718,-0.038102873,-0.013635289,0.023473693,0.053469095,-0.023183342,-0.03848256,0.0044808844,-0.01134599,-0.008152138,0.012339881,0.012362216,0.0075379363,-0.019844316,0.00076216913,-0.06231361,0.0009931929,0.020882875,-0.06030349,0.0055501545,-0.033501938,-0.018046377,0.034216646,-0.01857124,0.007800368,0.0028002039,-0.018280892,-0.05083361,0.020670697,0.017264666,-0.0032971492,-0.005968929,0.00014849036,-0.027985286,0.04223478,0.013657624,-0.0074709323,0.025774159,0.006437956,-0.0067562247,-0.041453067,0.0363161,-0.010625699,0.042569797,0.00076147116,-0.0058963415,-0.00887243,0.0032050188,-0.012161204,-0.0035288709,0.011362741,0.030978126,0.02111739,0.009062274,0.025573147,0.048242792,-0.008408987,-0.017175328,0.03553439,-0.012295212,0.009575971,-0.0046791043,0.010435854,-0.0189956,0.010687118,-0.0072810883,-0.030241083,0.0065161274,-0.019833148,0.0015955298,-0.035512056,-0.015165212,0.03761151,-0.0067729754,-0.00061908795,0.004095612,-0.0039867307,0.0025838371,0.033390265,0.000021015052,-0.01824739,0.0072085005,-0.0063653686,0.022423964,0.016985483,-0.011949025,-0.020045327,0.018548908,0.017264666,-0.00034426732,-0.04851081,-0.010770873,-0.010117586,-0.027404586,0.00037131316,0.0141154835,-0.0036768378,-0.00019630043,-0.002519625,0.054183803,0.03562373,0.060884193,-0.009525718,-0.03278723,-0.0049554952,0.02057019,-0.025193458,-0.006890232,-0.014327663,-0.007850621,0.040135324,0.0061978586,0.015991593,-0.024367077,-0.014484005,0.023406688,-0.016784472,-0.017945873,0.0018356271,-0.00015512096,-0.014606846,0.0072140843,-0.012284044,-0.03017408,-0.00028528995,0.023228012,-0.006432372,-0.0020687447,-0.0038192212,-0.022792486,-0.013813966,0.01030743,0.0035958749,0.01708599,0.018180385,-0.008660251,-0.0027876406,0.016896145,0.012373383,-0.02892334,-0.0019459043,-0.0178342,0.014629181,0.046992052,0.018292058,-0.017376339,0.008492742,0.008905932,0.04156474,-0.007923209,0.017007818,-0.019352954,0.048689485,0.0013268164,0.017711358,0.009866321,0.06338567,-0.010033831,0.035422716,0.021240229,0.028990345,0.009570387,0.0021999606,0.031826843,0.022770151,-0.031223807,0.03765618,0.0036545033,-0.03712015,-0.057802014,0.03211719,0.011083558,-0.010586613,0.009587138,0.02427774,0.0112231495,-0.009240951,0.0019570717,-0.024456415,-0.034507,0.0024274946,0.017968208,0.060124815,0.007269921,-0.0114911655,-0.01587992,0.0299284,-0.02718124,0.018928595,0.02240163,0.015790582,0.020391515,0.037008476,-0.013970309,0.009548053,-0.01180385,-0.011150562,-0.0039783553,0.033032913,0.001203278,-0.00061524916,0.062402945,0.034976024,0.019006766,0.0043161665,0.0046930634,0.0038443475,-0.011306904,-0.0031017212,-0.0046204757,0.017945873,0.0049834135,0.027962953,-0.013557118,0.010675951,0.001658346,0.0023590948,0.007515602,0.056997966,0.003922519,-0.022915326,-0.008252644,-0.003087762,-0.055121858,-0.004648394,-0.014774355,0.034551665,0.014305328,0.009793733,0.022703148,0.01778953,0.03557906,-0.035422716,-0.013557118,0.035020694,0.0045618475,0.013155095,0.0040202327,-0.031491823,-0.01911844,0.016795639,-0.01059778,0.054228473,-0.019821981,-0.0011662863,0.009162781,-0.03200552,0.0046065166,-0.0003266439,0.01026276,0.03948762,-0.031916182,-0.048778825,0.013188597,-0.03209486,-0.005377061,0.02959338,0.026086843,-0.002666196,-0.043128163,0.025997505,0.006080602,-0.025617816,-0.00021497077,0.030263418,-0.010815543,0.026779218,0.007850621,0.031402484,0.0012667921,-0.028364975,-0.011396243,0.0024763518,0.0022892992,-0.005952178,-0.016639296,-0.014819024,-0.012049531,0.0017602477,0.011027722,-0.012295212,0.050029565,0.018515404,0.03254155,0.011580504,0.041676413,-0.018068712,0.01687381,-0.04654536,-0.04272614,-0.040157657,-0.0052458453,0.032764897,-0.02655587,0.016237274,-0.0027234284,-0.021977272,0.020771202,0.027091902,-0.026399529,0.010837877,0.0068008937,0.0062983646,-0.0061866916,0.026667545,0.0072085005,-0.022870658,0.03263089,-0.028119294,0.01720883,0.010530776,0.031112134,-0.023473693,-0.005136964,-0.010257177,0.014830192,0.0019305493,0.028744664,-0.010899298,0.0031826843,-0.019911319,0.0052430537,-0.022892991,-0.011859686,-0.027605599,-0.0029900481,0.008252644,-0.0322512,-0.005642285,-0.020938711,-0.044490576,-0.02036918,0.009006438,0.026377194,0.013646456,0.052843727,0.06325166,-0.013166262,-0.0022306708,0.079645276,-0.030576102,-0.0026229226,0.00094294,-0.015511398,-0.0050643766,-0.03408264,0.018459568,-0.0058740065,-0.041162714,0.0049331607,0.027940618,0.015801748,-0.036986142,0.009140446,0.0017476846,0.012540893,0.0036042503,-0.018470736,-0.030486764,-0.0016513665,-0.013076924,0.030107075,-0.02622085,-0.05440715,0.028096959,-0.0015355055,0.03598108,-0.034574002,0.020581357,-0.020257507,0.017354004,0.013478947,-0.013947974,0.016348947,-0.022669645,-0.0010930008,0.0039197267,0.062090263,0.0010518213,0.017901203,-0.022334626,0.010770873,-0.008905932,0.014863694,0.034529332,-0.040157657,-0.025148788,-0.017264666,-0.010569862,-0.009146029,0.024076726,0.030017737,0.013545951,-0.012875912,0.0017462886,0.01629311,0.00581817,-0.038058203,0.021843264,-0.020592526,-0.00028354506,-0.0368298,0.005217927,0.02115089,0.006097353,-0.005592032,0.0040928205,0.022211786,-0.00041528445,-0.041207384,-0.0059800963,-0.03316692,0.02597517,0.007364843,0.017443344,0.033591278,-0.03196085,0.018057546,0.002487519,-0.00008454005,-0.028856337,0.025037115,0.04855548,-0.028230967,-0.019955989,-0.014484005,-0.032563884,0.0067338897,0.04093937,0.049940225,0.011502333,-0.0003817825,0.0070298235,-0.043820538,-0.01820272,0.000037384325,-0.012351048,0.04971688,0.05994614,-0.017610854,0.030040072,-0.015031204,0.018180385,-0.013758129,0.00989424,0.022189451,0.006845563,-0.007264337,0.016594628,-0.014629181,0.016516456,-0.039755635,0.019218946,-0.01392564,-0.009475465,-0.008408987,0.023875715,-0.028543653,-0.010313014,0.0586954,0.012284044,0.033010576,0.06423438,0.01857124,-0.012976418,0.00899527,-0.03209486,0.005120213,-0.0063151154,0.009408461,0.0070019052,0.010279512,0.0087551735,-0.047617424,-0.03519937,-0.02622085,-0.030821783,0.021039218,0.010458189,0.008559746,0.002959338,0.021664588,-0.009927741,-0.034484662,0.008945018,0.021709256,0.03595875,-0.005547363,-0.007967878,-0.0020743285,-0.010268345,-0.029057348,-0.0066278004,0.015444394,-0.020346845,-0.028029956,-0.010809959,0.01030743,0.00024655333,-0.0069684032,-0.0016960357,0.02094988,-0.02032451,0.038058203,-0.0041374895,0.03716482,0.028476648,0.009218617,0.0032106026,-0.010742955,-0.0009638787,0.0045143864,0.041721083,-0.048287462,-0.0012060698,0.0099779945,-0.044110887,-0.010167839,-0.016226105,-0.012518558,0.0017295376,0.0031156803,0.030643107,-0.0021343527,-0.011306904,0.041252054,-0.0068064774,-0.020748869,0.015332721,-0.02256914,-0.00374105,0.031447154,-0.0061922753,0.0115135,0.024501085,0.011625173,-0.06807594,0.002470768,-0.02689089,-0.0019096106,0.006102937,0.033680618,0.0005311453,0.012060698,-0.008168889,0.04384287,0.021016883,-0.014305328,0.002490311,0.009799317,-0.011150562,0.009950076,-0.020882875,-0.009179532,-0.009743481,-0.05083361,-0.009095777,-0.031201473,0.0041709915,-0.017476846,-0.006650135,0.01936412,0.036986142,-0.015064705,-0.01197136,-0.013791632,0.015958091,0.006426789,0.014428169,0.014729686,-0.003950437,0.028744664,0.003464659,0.014997701,0.011022138,0.03848256,0.029057348,-0.01953163,0.011904356,-0.004173783,0.04225711,0.022546805,0.0046204757,-0.0050420417,0.0054384815,-0.013635289,0.021675754,-0.021050386,0.018303227,0.025952836,0.011703344,0.03207252,0.00021252793,0.00084801787,0.0026145473,-0.046232678,-0.009218617,-0.02090521,-0.0030821785,-0.021753926,-0.022781318,0.0016108849,-0.0042156605,0.019553965,0.006862314,0.033010576,0.007990212,-0.01994482,-0.019643303,-0.024724431,-0.03988964,-0.014193655,-0.023741707,-0.024657428,0.011826185,-0.009441963,-0.001203278,0.02631019,0.0098439865,-0.018772254,0.058918744,-0.026131513,0.038795248,0.033233926,0.017141826,-0.020838207,0.009073442,0.014405834,0.018046377,0.027203575,-0.0020561814,-0.05874007,0.04784077,0.023987388,-0.0026913225,0.010452605,-0.015433227,-0.0036796296,0.028521318,0.022982331,0.005217927,-0.02116206,-0.024702096,0.009263286,0.007152664,-0.015053538,0.018593576,-0.0017155785,0.01866058,-0.0142271565,0.0031352232,-0.00022090341,0.014539842,-0.027493926,0.000056796256,0.031737503,-0.010391185,0.021430073,0.0056674113,-0.01682914,-0.009793733,-0.033725284,0.0014014977,-0.022021942,-0.04335151,-0.01450634,0.017778363,0.013389609,-0.010435854,-0.030888788,0.038460225,0.039643962,0.018169219,-0.0040984037,0.016304277,-0.012250543,-0.018437235,-0.045026608,-0.03548972,-0.030933456,-0.02198844,-0.015678907,0.016884977,-0.020659529,0.0017923538,0.006292781,0.030241083,-0.014472838,-0.04310583,0.015020036,-0.010603364,0.0085318275,0.0057511665,0.0101120025,0.0010560091,0.034015637,0.006035933,0.0076384423,0.012451554,0.0036600868,0.017152993,0.029325364,0.019308284,-0.023764042,0.03046443,0.02601984,0.006142022,-0.010273928,0.0116698425,-0.013166262,-0.037924197,0.026176183,0.013043421,-0.012485056,-0.0066892207,-0.024501085,-0.00656638,-0.004698647,-0.0009687644,0.004081653,-0.032295868,-0.023831047,0.009749064,0.002797412,0.042882483,0.0056506605,-0.012708402,0.018392565,-0.010363267,-0.0033836958,0.02252447,-0.026756883,-0.010301846,0.016929647,0.007962294,0.07544637,0.00014473885,-0.041654076,0.0084648235,-0.0063765356,0.0089171,-0.016114432,0.013054589,-0.006678053,-0.00910136,-0.008341983,0.021284899,-0.010815543,0.013601787,-0.00057581457,-0.022959996,-0.017934704,-0.018236222,0.009257702,-0.008660251,-0.0050811274,0.0080628,-0.010329764,0.0040984037,0.025818828,-0.016203772,-0.01026276,-0.0110891415,0.0073425085,-0.01087138,-0.003774552]},{"id":"guide-webhook-attachments-embeds-0","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Overview\nWebhooks support rich embeds and file attachments. Embeds can have just a description (no title required), and you can attach files the same way as with channel.send or message.reply.","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.025569232,0.039378777,-0.017369816,-0.029366856,0.003255492,-0.053727753,0.04194649,0.017855309,0.0069101662,0.0070827855,0.013852698,-0.02960421,0.026863877,-0.06749415,-0.031438287,0.026216555,-0.0041482574,0.021814764,0.004051159,0.036206897,0.018642884,0.014079261,-0.015298385,0.022311043,-0.030661501,-0.012698307,-0.031330403,0.047297686,-0.0010060468,-0.005852873,0.0062628435,-0.012266759,0.0059715486,0.027813284,-0.058820024,0.03927089,0.024317743,0.025633965,0.0059553655,0.041385476,0.013270108,0.020261189,-0.02474929,0.016388044,0.0030289292,0.019398093,-0.05825901,0.013302474,-0.022354199,0.06883194,-0.0047928826,0.021857917,0.042788006,-0.00920816,-0.028611647,0.011716534,-0.006510984,0.0059229997,-0.062099792,-0.0021887587,0.007287771,-0.022019748,-0.022979943,-0.011468395,-0.016118327,-0.04911019,-0.06257449,0.017715055,0.0014187148,0.021955017,0.113669805,0.019592289,-0.0069047716,0.01974333,0.014413711,0.0014874928,-0.025180839,0.0058906334,-0.03344499,-0.038170442,-0.04768608,-0.019646233,-0.12834245,-0.010508199,-0.09381858,0.04067342,-0.011274197,-0.040328182,-0.014780527,0.024296166,-0.018071081,-0.012935658,-0.053123586,-0.010141384,0.029366856,0.011953886,-0.057093833,-0.019311784,-0.008771217,0.0071313344,0.037393656,-0.015417061,-0.08246887,-0.03976717,0.026820723,-0.035214335,0.017272718,0.021037977,0.016549874,-0.020584852,-0.051656324,-0.035689037,-0.016463565,0.027748551,0.04326271,-0.014597119,0.02509453,0.02710123,-0.0011085395,-0.012353068,-0.053986683,-0.022160001,0.04509679,-0.03249558,-0.0030612953,0.0004979662,-0.044967327,0.03059677,-0.046995603,0.0077570793,0.04326271,0.024814023,0.054461386,0.0032150343,-0.014694218,-0.006408491,-0.031373557,0.032538738,-0.008641753,-0.0023816067,0.038990382,-0.05653282,0.037911512,-0.035732195,-0.039875057,0.032279808,-0.052476265,0.030942008,-0.03167564,-0.06386914,-0.0639986,0.0016547177,-0.02159899,0.01925784,-0.02800748,0.01216966,-0.03210719,-0.015061033,-0.01283856,-0.042140685,-0.005604733,0.01567599,-0.010993691,-0.002996563,-0.044881016,-0.01183521,0.04427685,-0.022483664,-0.00483334,0.022958366,0.01167338,-0.016485142,-0.032581892,0.04084604,0.04958489,-0.011209466,0.0059715486,-0.07340635,-0.002175273,-0.010508199,0.018189758,0.0073902635,0.008841344,-0.0076815584,-0.04227015,0.0006945229,0.019484403,0.009601948,-0.007972853,-0.010702396,-0.011953886,0.00060787617,-0.0015319962,-0.0056370986,0.011619437,-0.007347109,-0.02326045,0.03808413,0.050145905,-0.05195841,-0.0007026145,0.0147157945,0.018448686,-0.0137448115,-0.044039495,0.023023099,0.0013499368,0.03059677,-0.025310304,-0.018621307,0.0051570013,-0.011058424,0.056575973,0.027791707,-0.03232296,-0.0154602155,-0.009138034,0.018189758,-0.020034626,0.0072230385,-0.0608483,0.015568103,0.04244277,0.00063720794,-0.061452467,0.032409273,-0.02783486,-0.04643459,-0.0069101662,-0.020023838,0.020735893,-0.0021523468,-0.0020984032,-0.035904814,-0.0073201368,0.040155564,0.022289466,0.03117936,0.013431938,-0.01884787,-0.02459825,0.0069155605,-0.028050635,0.0054833596,-0.01775821,-0.017779788,0.008469134,-0.045744114,0.030078912,0.023433069,0.07759237,0.0072284327,0.010103623,-0.02850376,0.020466175,-0.060718838,-0.04142863,0.025439769,0.015190498,-0.01317301,0.028352719,0.000022989216,-0.04099708,0.013119066,0.005842084,0.02584974,0.019484403,0.033703916,-0.0019365727,0.021070343,0.007924304,0.015061033,0.022699436,0.0029399223,-0.05437508,0.012968024,-0.010448862,-0.030704657,-0.019980684,0.0076977415,-0.0076384037,-0.008242571,-0.022742592,0.04201122,-0.021825552,0.025936048,-0.027619086,0.016150692,0.026151823,0.017359028,-0.019290205,-0.0009871665,0.004202201,-0.010993691,-0.0058636614,0.046218816,0.02392935,0.014726584,0.07120546,-0.0017396788,-0.042874318,0.01192152,0.01192152,0.00308557,0.027985903,-0.004741636,-0.022354199,-0.051872097,0.0045366506,-0.027878016,0.009877061,0.023735153,-0.03342341,0.007503545,-0.044320002,0.008361247,0.045657802,0.026238132,-0.0059391824,0.004987079,0.027726974,0.045312565,0.016290946,-0.07444207,-0.000003895629,-0.03281924,-0.019894373,0.010578326,0.014359768,0.026194979,0.03584008,0.0088521335,0.016614607,-0.0016722494,0.006052464,-0.03901196,-0.0018893721,-0.010923564,-0.017607167,0.049886975,-0.028417451,-0.0040916167,0.016560663,-0.021803975,-0.06835724,-0.0070126588,-0.023864618,0.042960625,-0.00712594,-0.005599338,0.015071822,-0.049282808,-0.014866836,0.0116949575,0.010367947,-0.02533188,0.021383215,-0.052648883,0.020304345,-0.030208377,-0.052735195,0.023864618,-0.0035575756,0.028805844,0.012957236,0.023238873,-0.005691042,-0.015093399,-0.015902553,0.0016304431,0.05920842,0.06611319,0.005151607,0.0094563,-0.03409231,0.046391435,0.002361378,0.043543216,-0.030078912,0.0072500105,0.004293905,0.041644406,0.0054968456,-0.013658501,0.0039837295,-0.004436855,0.00045413707,0.012978813,-0.037048414,-0.01167338,-0.016485142,-0.011802844,-0.017218774,0.018998912,0.016226213,0.034308083,0.027446467,-0.0036169137,-0.014262669,-0.06300604,-0.031567752,-0.0028374295,-0.005599338,0.0018853263,0.027079651,-0.0065811104,0.0010741506,-0.0025474832,0.015158132,-0.032797664,0.009866271,0.061409313,0.0012791359,-0.01992674,-0.014402922,0.016312523,-0.01858894,-0.03249558,0.033380255,0.04932596,-0.041234434,-0.01029782,-0.019290205,0.029323703,0.030445728,-0.037717316,0.04341375,-0.006300604,0.02809379,-0.047297686,-0.057482224,0.009348414,0.017380605,-0.009386174,0.020973245,-0.043154825,0.037307344,0.0043208767,0.0028374295,-0.0039001172,-0.01884787,-0.0014268063,-0.023130985,0.0075520943,-0.04427685,-0.017564014,-0.054288767,0.0028266408,-0.02334676,0.0009129942,-0.0025785007,-0.018448686,0.013442728,-0.007514334,0.019862007,0.002649976,-0.031546175,-0.010276242,0.019398093,0.0070666024,0.0067321523,-0.005993126,-0.016582241,0.052217335,0.0017302387,-0.018189758,-0.053900376,0.012741461,0.017682688,-0.02334676,0.027554356,0.03717788,0.0020296252,0.023950927,-0.0050383257,-0.04367268,0.017294295,-0.039378777,-0.017941618,0.0015670595,-0.0119754635,-0.009359202,-0.0639986,-0.014985512,-0.023605688,0.08009535,0.038796186,-0.007929699,0.05018906,-0.009423935,-0.038817763,0.008226388,0.019969894,-0.008026797,-0.00018930808,-0.020034626,-0.029151084,-0.04343533,0.019128375,0.030510461,-0.019969894,-0.016323311,0.0021968503,-0.0067591243,0.04768608,0.001088985,-0.044881016,-0.004490799,0.02067116,0.042162262,-0.011446817,-0.025353458,-0.0042102924,0.043543216,-0.007676164,0.00012592443,-0.033703916,0.02742489,0.009100273,-0.0360127,-0.04067342,0.02716596,0.028395874,0.010135989,-0.014014529,0.025029797,-0.030208377,-0.0071475175,0.0021981988,-0.032797664,-0.0075305165,0.015287596,-0.008069952,-0.012773828,-0.041881755,0.01104224,-0.0393572,0.023368336,0.016830381,0.0029911688,-0.057136986,0.03350972,-0.021782396,-0.0005967503,-0.015125765,0.0021806671,-0.013529037,0.00871188,0.010524383,0.017326662,0.008091529,-0.04958489,0.025439769,-0.014133205,0.02567712,0.03225823,-0.011101578,-0.0004119937,-0.021415582,-0.006020098,0.012989602,-0.032625046,0.001128094,0.013043545,-0.022224734,0.02984156,0.008808978,-0.0009601948,0.019732542,-0.023389915,0.01483447,0.0029938659,-0.003945969,0.013237742,-0.0032581892,0.01467264,-0.02992787,-0.009494061,-0.032042455,-0.026410751,-0.0046283547,0.0038542652,-0.033552874,-0.012957236,-0.0057234084,-0.003883934,0.0006709226,0.005701831,0.0055669723,-0.0008819767,0.0465209,-0.017564014,0.021458736,-0.0022885543,-0.0112849865,-0.008728063,-0.0116949575,-0.03234454,-0.044320002,0.028352719,-0.006241266,0.025439769,-0.023066252,0.005685648,-0.0025879408,0.0550224,-0.014057684,-0.017553225,-0.041968066,0.0009757036,0.009483272,0.0005761843,-0.009461695,-0.038537256,-0.0025879408,0.03232296,0.0055615776,-0.01599965,0.025137685,0.00758446,0.041493364,0.024296166,0.020930089,0.016657762,-0.025223995,0.029992603,0.0069641094,-0.03210719,0.022052115,0.032474004,0.014510809,0.034545437,0.015783876,-0.016733283,-0.01133893,-0.026475484,0.009607342,-0.040565535,0.015913341,0.022332622,0.0033984424,0.0058798445,0.031956147,0.0019096009,-0.012148083,0.027619086,-0.02050933,0.026885455,-0.0019433156,-0.008274937,-0.0056424933,-0.021609778,0.014273458,0.006327576,-0.0041509545,-0.057784308,0.001857006,0.015546525,-0.017909251,0.013885064,-0.0033768648,0.00758446,-0.0043316656,-0.014758949,-0.0033714706,-0.0057827462,-0.039443508,-0.02100561,0.003471266,0.0163341,-0.07323374,0.008010614,0.010723974,0.0037679556,0.006451646,-0.03476121,0.01800635,-0.017844519,0.027014919,0.05411615,0.010443468,0.0038785397,-0.030078912,-0.023476224,-0.0044719186,-0.0062035057,0.01583782,0.049886975,0.034006,-0.005993126,-0.031049896,-0.019247051,-0.0189126,-0.005213642,0.025871316,0.062056635,0.04101866,0.0050329315,0.022311043,-0.028223254,-0.025288727,-0.009618131,-0.019635445,-0.01325932,0.012277547,-0.028697958,0.014316613,0.008296515,0.030812543,-0.051224776,-0.0024355503,0.024231434,-0.0076384037,-0.002345195,-0.004253447,-0.014273458,-0.013885064,-0.0084151905,0.018578151,0.013399573,0.008269543,-0.027726974,-0.031977724,-0.015384695,-0.034006,-0.026648104,-0.0027147082,0.008566232,0.0012332839,0.0049924734,-0.0013863487,-0.03560273,0.03359603,0.0026176097,-0.024943488,0.05851794,-0.029755251,0.015686778,-0.026885455,0.002024231,0.028331142,0.024188278,0.042874318,0.03184826,0.059942048,0.013140644,0.011231042,-0.008123895,-0.007514334,-0.016636183,-0.0011591116,0.0047470303,-0.040543955,0.025245572,-0.017715055,0.021383215,0.014100838,-0.03432966,-0.007568277,0.003134119,0.0050194454,0.037285767,-0.015147343,0.012849349,-0.021642145,-0.055756032,-0.023044676,0.024101969,0.044147383,0.0031529993,-0.017272718,-0.024943488,-0.02800748,0.003757167,0.05877687,-0.043241132,-0.030877275,-0.008803584,-0.01659303,-0.018880235,0.001324988,-0.00055190973,-0.0011651802,0.0017450731,-0.00028050636,-0.021221384,-0.047642924,-0.041493364,-0.043046936,-0.032991864,-0.04416896,-0.029064773,0.03033784,-0.04086762,0.0026567187,0.0059715486,-0.019290205,-0.070903376,-0.00575038,0.0315246,-0.03234454,-0.012806194,-0.02634602,-0.026993342,0.02960421,0.012158872,-0.014262669,0.02151268,-0.010351763,0.027468044,-0.018524207,0.023735153,-0.012158872,0.025482923,0.02425301,-0.0049358327,-0.019398093,0.027575932,-0.00276056,0.031697217,0.040457647,0.030575192,0.0007653238,0.016549874,0.029000042,0.06119354,-0.01292487,0.021145863,0.034027576,-0.013291686,0.011101578,0.025439769,0.009866271,0.0077732624,0.0016088658,0.0019959107,-0.025353458,0.0013634227,-0.0043829116,-0.006467829,-0.004887284,0.008431373,0.054634005,0.0044584326,0.008474529,0.0023586808,-0.00040895937,0.037393656,0.015934918,-0.004895375,-0.026583372,0.01775821,-0.00404037,-0.007293165,0.0066674203,0.00934302,-0.00013342594,0.0018624003,-0.030380996,0.02643233,-0.008161656,0.018955756,-0.0075305165,0.010281636,-0.028115368,-0.03840779,-0.0034469916,-0.011209466,-0.001226541,0.05860425,0.03508487,0.03117936,0.0014200634,-0.010821072,-0.018880235,-0.008355852,0.013798755,0.0342002,-0.022893634,0.0005394353,0.03808413,-0.008409796,0.004666115,-0.0032770694,-0.04334902,0.017887674,0.011166311,0.009574977,-0.0041212854,0.019883584,-0.022332622,0.005140818,-0.015956497,-0.018578151,-0.010055074,0.07461469,-0.022116847,0.055497102,-0.0077570793,-0.0130867,-0.017607167,-0.017822942,-0.016042806,-0.020444598,0.007185278,0.010524383,-0.0019581502,0.0026607646,-0.0006911515,-0.034135465,-0.016452776,-0.04084604,-0.034243353,0.018567363,0.031481445,0.0040673423,-0.025828162,0.020638794,0.04086762,-0.016895114,-0.025569232,0.004784791,0.031459868,0.007983643,-0.04449262,0.011425239,-0.004415278,-0.034135465,0.057698,0.026389174,0.015384695,-0.03586166,0.0021860616,0.04841971,0.016183058,-0.05066376,0.008059164,0.0037652582,-0.03543011,-0.0049250443,0.025051374,0.011133945,0.008269543,-0.03860199,0.029971024,0.0036115192,-0.04410423,0.0042858133,-0.033315524,-0.043478485,0.002695828,0.0268423,0.03599112,-0.02075747,-0.023821462,-0.027014919,-0.002449036,-0.040457647,0.032560315,0.041061815,0.015319962,-0.0014362464,0.00575038,-0.020973245,0.0023276634,0.013550615,0.007579066,-0.020746682,0.011371296,0.051872097,0.015352328,0.03359603,0.050534297,0.007654587,0.0043046935,0.027791707,-0.018988121,-0.019139163,0.028201677,-0.00028320352,-0.0111555215,0.023950927,-0.0029857743,-0.004353243,0.0027160568,0.016517509,0.0033660762,0.007196067,0.01433819,-0.010723974,-0.021879496,-0.057568535,0.001919041,-0.06576795,0.004447644,-0.016636183,-0.00060753897,0.0016169572,0.0018529602,0.024814023,-0.014143993,-0.0017828336,-0.030208377,-0.01841632,-0.011468395,0.024188278,-0.0071637006,0.016258579,-0.020271977,-0.014823682,0.017359028,0.0011719231,0.011597859,-0.014219514,-0.000016604492,-0.020023838,0.0012575585,0.012849349,0.0063707307,0.007929699,0.03991821,-0.027770128,0.00042615389,0.006327576,0.0042992993,-0.016226213,0.04526941,0.014046895,-0.025979204,-0.021156652,0.0027915777,0.0008556792,-0.062488183,-0.027748551,0.0038623568,-0.009655892,0.009353808,0.0013944402,0.01400374,0.007924304,-0.027295426,-0.032236654,-0.01266594,0.03174037,-0.00028134923,-0.009877061,-0.01433819,0.00425075,-0.01200783,0.021394003,-0.023195717,0.043629527,0.009699047,-0.0071583064,0.010114412,0.0017531647,-0.00021054834,0.03441597,-0.0012730673,0.007579066,-0.014370556,-0.0150502445,0.044406313,0.0030370208,0.015546525,-0.009704441,0.018071081,-0.036660023,0.038321484,-0.0034469916,0.03769574,0.0047470303,0.009709835,0.003026232,0.017056944,0.013626136,0.0008813024,-0.040457647,-0.030467305,0.0018138512,-0.03376865,0.019052854,0.018276067,-0.024166701,0.012655152,0.013992951,0.02742489,0.003714012,0.02492191,0.012029407,-0.026971765,0.025892895,-0.01774742,-0.028395874,-0.033984423,0.027230693,0.018567363,-0.028201677,-0.007843389,-0.008199416,-0.030035757,-0.00037625612,0.023023099,0.016981423,-0.010901988,0.050750073,0.0101575665,-0.01825449,-0.0022413537,0.037307344,-0.01675486,0.037782047,-0.0111555215,0.0010687562,-0.015891764,-0.002845521,0.0012056378,-0.0022777654,-0.010146778,0.011446817,0.053641446,0.017682688,-0.03109305,0.0024355503,-0.0053431066,0.023605688,0.013550615,-0.0055076345,0.014985512,-0.0116949575,-0.0004730173,-0.000871188,0.000109994224,-0.069479264,-0.001088985,-0.0027079652,0.0025623175,-0.0005576412,0.0195815,-0.014197937,0.037911512,0.028546916,-0.04309009,0.012698307,-0.0007815069,-0.01400374,0.012493322,0.043370597,-0.0055831554,0.0064138854,-0.005685648,0.020239612,0.013949797,0.03927089,0.039551396,-0.019732542,0.002322269,-0.0069910814,0.015859397,0.015158132,-0.005933788,-0.006079436,-0.018135814,-0.008409796,0.01104224,0.024080392,-0.0067753075,-0.03383338,0.011889154,-0.0008617479,0.012978813,-0.02492191,-0.012482532,-0.0027227995,-0.0023910468,-0.038127284,0.007417235,0.004123983,0.009817722,-0.0063491534,0.027575932,-0.046866138,0.017542435,-0.0328624,-0.009645103,0.026453907,-0.0044692215,0.010680819,0.007045025,-0.0011193282,-0.011781267,0.0009696349,-0.0023910468,0.006386914,-0.020735893,0.000092631155,-0.036293205,-0.014446077,0.04768608,0.03141671,0.00825336,0.015578891,0.0019581502,-0.031222515,0.0015387392,-0.04082446,0.03193457,0.044622086,0.037285767,-0.0033121328,0.004110497,0.0038326876,0.041471787,0.008345064,0.014899203,0.019311784,0.010891198,0.022224734,0.008771217,-0.010448862,0.02651864,-0.014737372,0.03435124,0.018653672,-0.029949447,-0.0047793966,0.015384695,-0.038882494,-0.026907032,0.025245572,0.025116106,-0.0154602155,0.06300604,0.024576671,-0.025223995,-0.014909991,0.007891938,0.007676164,0.027705396,0.03599112,0.044837862,0.0066026878,0.034221776,0.016798016,-0.033725493,-0.035537995,-0.013021968,-0.00071340316,-0.0130003905,0.0011469743,0.017143253,-0.0032447032,0.013356417,-0.01758559,0.0033498933,-0.008776613,0.010815677,-0.029410012,-0.02118902,0.01592413,-0.036401093,-0.014262669,-0.017952407,-0.036401093,-0.027273849,-0.006316787,-0.0005596641,-0.007061208,-0.0016789923,-0.01400374,0.0366816,0.01742376,-0.013561403,0.020973245,0.01409005,0.020369077,0.01624779,0.035537995,0.0012285638,-0.0016452776,0.015244441,0.00070531166,0.012320702,-0.032474004,-0.022958366,0.022418931,-0.013302474,-0.0043963976,-0.0041509545,0.0026702047,0.015848609,0.02392935,-0.017315872,-0.0069964756,0.001857006,0.008156261,0.0072338274,0.0051785787,0.014909991,0.0183408,-0.014607907,0.048592333,-0.0037059204,0.036962107,-0.014963935,-0.01599965,-0.04975751,0.03586166,-0.020660372,-0.028439028,-0.0038758426,0.0427017,-0.012849349,-0.0035521814,-0.01283856,-0.005534606,-0.0033876537,0.006392308,-0.01841632,-0.01567599,-0.00040592506,-0.020261189,-0.011069212,0.008026797,-0.0013243137,-0.03409231,-0.03842937,-0.01125262,-0.042636964,0.019538347,0.0053323177,0.018567363,0.035322223,-0.024533518,-0.026475484,-0.025526078,0.024188278,-0.012568843,0.0028239437,-0.034804367,-0.012568843,0.026820723,0.013431938,-0.005197459,0.0116949575,0.01325932,0.035128027,-0.036444247,0.0051138466,0.029949447,0.014543176,0.050706916,0.006343759,0.0017693477,0.01950598,-0.00042514244,0.015697567,0.024209855,-0.0255045,0.006554139,-0.024511939,0.022138424,0.028697958,0.00093322305,0.017855309,-0.013226953,-0.0067051807,0.0042723273,0.0025825466,-0.0060416753,-0.022138424,0.011522338,-0.02492191,0.0209193,0.013518249,0.018955756,0.007260799,-0.013734022,-0.05178579,-0.015417061,0.05459085,-0.0072068553,-0.0050518117,-0.016463565,0.03717788,-0.021286117,-0.0037274978,-0.022569973,0.04759977,-0.0070072645,0.027058074,-0.023691999,0.010475833,0.001794971,0.0068238564,-0.008053768,-0.010529777,0.0018057596,0.045744114,-0.004674207,-0.056446508,-0.03193457,0.0065055895,0.045398872,0.003012746,-0.011608647,-0.0066080824,-0.003989124,0.022526817,0.046650365,-0.010713185,0.009488666,-0.041148122,-0.01200783,-0.0076491926,0.015287596,0.0698245,-0.0037652582,0.012094139,-0.016970634,-0.004876495,-0.037631005,-0.011479183,0.009742201,-0.013075911,-0.02199817,-0.01675486,0.0023950927,0.025116106,-0.001329708,-0.013431938,0.011317353,-0.021706875,-0.015395483,-0.013453516,0.0021240264,-0.019527558,0.013971374,-0.008431373,-0.044622086,-0.02317414,0.0058474788,0.035947967,-0.0025731064,0.024382476,-0.006176534,-0.023972504,0.019484403,-0.007767868,0.011425239,-0.006165745,-0.006570322,0.041989643,-0.014143993,0.017466914,-0.017456125,-0.009499456,-0.016959846,-0.009548005,0.020261189,-0.0111555215,0.0037949274,-0.012644364,0.01925784,0.0094131455,0.05144055,0.010972113,-0.0041051027,-0.0014092746,-0.012040196,-0.017477704,0.03510645,-0.02567712,-0.0015913341,-0.000745095,0.041795447,0.011986252,0.00064563664,0.056619126,0.02468456,-0.004029582,0.013065123,0.014036106,0.020315133,0.01058372,0.0023802582,-0.023821462,-0.0039055115,-0.013129855,0.038494103,-0.022850478,0.027770128,0.024490362,-0.0058043236,-0.020282768,-0.0043910034,-0.011436028,0.012568843,0.011705746,0.019991472,-0.012299125,-0.03726419,0.016312523,0.01492078,-0.022526817,0.044578932,0.002950711,-0.018653672,0.031136205,-0.015233653,0.0034955407,0.01133893,0.009229738,-0.0059553655,0.00046155433,0.042982206,0.019408882,-0.012525687,0.024360897,-0.007989037,-0.022440508,0.013356417,-0.033142906,-0.0315246,-0.0123099135,0.04017714,-0.026561793,-0.008916865,0.0031017528,-0.030920431,-0.016690128,-0.01567599,-0.010351763,-0.024555095,-0.00767077,-0.010443468]},{"id":"guide-webhook-attachments-embeds-1","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Embeds Without a Title\nYou do not need a title for embeds to work. At least one of title, description, fields, or image/thumbnail is required. A description-only embed is valid.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '/core';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\n// Description only—no title\nawait webhook.send({\n embeds: [\n new EmbedBuilder()\n .setDescription('This embed has no title. Description-only works fine.')\n .setColor(0x5865f2)\n .setTimestamp(),\n ],\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.039032273,0.034383435,-0.008157925,-0.037999198,0.0014085474,-0.04538793,0.019358931,0.014227241,0.047431625,-0.009146084,0.024546765,-0.012767461,0.043299325,-0.069260955,-0.030947339,0.038403448,-0.03103717,-0.010274606,-0.016147414,0.0702042,0.021526143,0.0072259116,-0.03788691,0.011431201,-0.010353209,-0.014507969,-0.027106995,0.075908564,-0.015305233,0.01753982,0.032452036,-0.014305845,-0.019156806,0.033035945,-0.045994304,0.044916313,0.043928154,0.0056341896,-0.022098824,0.04006535,0.0051597613,-0.014552885,-0.024052685,0.019066975,0.004300737,0.029734598,-0.061939593,0.0011257151,-0.036494505,0.03382198,-0.010706926,-0.00724837,0.019212952,0.001682958,-0.044377316,-0.003051502,-0.057403047,0.03909965,-0.056055557,-0.00304308,0.026770122,-0.020526754,-0.0019707032,0.0039835153,-0.010993267,-0.02008882,-0.072045766,-0.0006947992,-0.01010617,0.03640467,0.073303424,0.0019959686,0.019853009,0.036314838,-0.019168036,-0.01144243,-0.0037785848,0.031823207,-0.039728478,-0.021144353,-0.036135174,0.000080094906,-0.09827689,-0.00956156,-0.09558191,0.054618236,-0.030700298,-0.05250717,-0.014114951,0.031733375,-0.021009605,-0.029689683,-0.08790122,-0.03092488,0.025624756,0.04895878,-0.02191916,0.029622307,-0.009426811,0.03436098,0.044265024,-0.031239295,-0.0591997,-0.02228972,0.007658231,-0.02910577,-0.007697533,-0.0011685259,0.02519805,-0.0037448974,-0.03811149,-0.0392344,0.00067725376,0.046847712,0.024209892,-0.03092488,-0.028027778,0.049407944,-0.05295633,-0.014878528,-0.0411658,-0.019875469,0.043636195,-0.0072539845,0.008079321,0.028701523,0.0050474703,0.027578615,-0.05964886,-0.005855964,0.07977137,-0.0037870065,0.041817088,0.021133125,-0.045006145,-0.03007147,-0.008786754,0.016866075,-0.0036494504,-0.0035961121,0.041772168,-0.028723981,0.028768897,-0.045612514,-0.013362602,0.027825655,-0.032564327,0.030273594,-0.0012113368,-0.030700298,-0.036449585,-0.018909767,-0.026343416,0.025512464,-0.017562278,-0.02118927,-0.008674462,0.022570446,-0.019909155,-0.01485607,0.014530427,0.019785635,0.022738883,0.0016520781,-0.06557781,-0.016955908,0.031082088,-0.04666805,-0.01789915,0.022390781,0.031486332,-0.020302173,-0.039167024,0.028521858,0.029420184,-0.017012052,0.025647214,-0.034989808,0.00023651245,0.024434473,0.020279715,0.020201111,0.025781963,-0.003408025,-0.043389156,-0.020998375,0.002866222,0.022705195,0.011970197,-0.025490006,-0.029801972,-0.033417735,0.0006014575,0.010993267,0.021402622,0.007686304,-0.007967031,0.03604534,0.03957127,-0.032946113,-0.0018668342,0.010662009,0.0023988117,-0.013093105,-0.021896701,0.02557984,-0.022952234,-0.008455495,-0.05089018,-0.02703962,0.007697533,0.003458556,0.011599638,0.013295229,-0.030161303,0.038403448,0.025737047,0.008287059,-0.0139577435,-0.0043905694,-0.071955934,0.03310332,0.009960192,-0.025714587,-0.038785234,0.02351369,-0.036561877,-0.033260528,-0.042827703,0.033552483,-0.00068883377,0.007023788,-0.008932731,-0.03761741,-0.02544509,0.009336978,0.04139038,0.012610255,0.007096777,0.0009341189,-0.025781963,-0.020672733,-0.024389558,-0.03507964,-0.023670897,-0.03687629,0.019201724,-0.06036752,0.026388332,0.019257868,0.07864846,0.018224793,0.0010457078,-0.011178547,0.01218355,-0.04603922,-0.02483872,0.018977141,0.013452435,-0.01703451,0.020987146,0.013081876,-0.02764599,-0.01339629,0.00043898675,-0.0097075375,0.042670496,0.0068721958,-0.0029841275,-0.019504908,-0.007821052,0.013003272,0.029262977,-0.001859816,-0.063781165,0.010824831,-0.024030227,-0.0049660597,-0.0272642,-0.017932838,0.0019314014,-0.007922115,-0.05443857,0.06831771,-0.0007558573,0.021964077,0.004449522,0.010639551,0.020481838,0.041862004,0.0011874749,-0.024951011,0.033080865,-0.0057661314,-0.02264905,0.06243367,0.054393653,-0.0049211434,0.048554532,0.016540432,-0.042558204,0.005053085,0.02569213,0.0067262175,0.01254288,0.009303291,-0.027780738,-0.024434473,0.008073707,-0.024793804,-0.027443865,0.0111953905,-0.038717862,-0.011431201,-0.0050671212,0.008618318,0.03469785,0.055830974,0.0128909815,-0.0010400934,0.03447327,0.0020661503,0.012161091,-0.06741938,-0.012846065,-0.044848938,-0.028881188,0.0058503496,0.017584736,0.019785635,0.023693355,0.014867299,0.020515526,0.01959474,-0.0016155835,-0.04612905,-0.002520928,-0.002186863,0.00014457438,0.06562273,-0.013239083,-0.006479178,0.008590245,-0.033642318,-0.053360578,-0.0063612727,-0.010319523,0.02434464,0.01874133,-0.041817088,0.000037393707,-0.030745216,-0.024164975,-0.021964077,-0.010330752,-0.033889357,0.018438146,-0.051474094,0.0005632084,-0.025130676,-0.023828102,0.0014625874,-0.029015938,0.024883637,-0.028297275,0.00050004484,0.0351021,-0.03168846,-0.009595247,-0.0010260569,0.036000423,0.042176418,-0.0007769118,-0.0056341896,-0.035663553,0.0061928364,-0.007882813,0.025647214,-0.006052473,-0.0068609663,0.000849199,0.03653942,-0.006855352,-0.040941216,0.010852904,-0.013497352,0.02252553,0.021279102,-0.047521457,-0.023109442,0.0013439802,-0.0120488005,-0.025040844,-0.003554003,0.027219284,0.048913863,0.037572496,-0.0068665813,-0.0006235647,-0.03469785,-0.034271147,0.014182325,0.018314626,0.010942737,0.054842815,-0.01133014,-0.008343205,-0.021481225,0.017618423,0.023109442,-0.0013320494,0.030475717,0.018067587,0.012239695,-0.015350149,-0.0047779726,0.017023282,-0.04249083,0.03018376,0.03382198,-0.044624355,-0.01302573,-0.0076806895,0.015911603,0.018954683,-0.04783587,0.04981219,-0.019314013,0.028387109,-0.037055958,-0.0751899,0.003085189,0.050575767,-0.016495515,0.037909366,-0.025984086,0.015327691,-0.015507356,-0.02143631,-0.0056033097,-0.013677017,0.0019987759,-0.010673239,0.015833,-0.05928953,0.010347595,-0.045163352,0.002894295,-0.01449674,-0.005314161,-0.025130676,0.018056357,0.027354034,-0.03725808,0.034024104,0.017865462,-0.015619648,-0.014036347,0.038987357,0.020290943,-0.002947633,-0.015282775,-0.054034323,0.021425081,0.008932731,-0.015417524,-0.046533298,0.026770122,0.032609243,-0.043478988,0.014103722,0.02483872,0.016641494,0.009875974,0.03507964,-0.020863626,0.010319523,-0.04612905,0.021761952,-0.02373827,0.0037589339,-0.022458157,-0.05493265,-0.03445081,-0.02971214,0.104655005,0.056325056,-0.014317074,0.016596576,-0.029240519,-0.009050637,-0.008870971,0.009673851,-0.009499799,-0.0010260569,-0.034495726,-0.024771346,-0.008797983,-0.00718661,0.013811766,-0.024973469,-0.009398738,-0.0360678,0.017977754,0.020156195,-0.0010218461,-0.031957954,-0.0017924416,-0.006226524,0.035618637,0.018168649,-0.021761952,-0.005580852,0.040739093,-0.005867193,0.021391394,-0.03761741,0.059244614,-0.010504803,-0.047925703,-0.017640881,0.0088372845,0.031845666,-0.0088541275,-0.01473255,0.0035792685,-0.022143742,-0.009746839,-0.0046319948,-0.031935498,-0.01974072,0.021166813,0.0021573866,-0.01217232,-0.041098423,0.015316462,-0.04882403,0.013946515,0.012329527,-0.011891593,-0.038380988,0.040155184,-0.013194166,-0.025265425,-0.035865676,-0.006052473,0.011116787,0.018527979,-0.01876379,0.026320959,0.0025658442,-0.02557984,0.015058193,0.022244804,0.006917112,0.029622307,0.013575955,-0.0028142876,-0.032968573,-0.011958968,0.020650275,0.00013773165,0.029195603,0.010667624,-0.008376892,0.041929375,0.000718661,0.006254596,0.026478166,-0.029420184,-0.016259704,-0.011667012,-0.0069451844,0.011711928,-0.0047779726,0.018718872,-0.017304009,0.024254808,-0.0069788718,-0.038291156,0.0064118034,-0.015125568,-0.030475717,0.0074561075,-0.042580664,0.011262765,0.019707032,-0.007826667,0.007366275,-0.0030122001,0.032923657,-0.021717036,0.015159255,-0.015282775,0.03445081,-0.021324018,0.00003171337,0.000060356295,-0.020122508,0.017247863,0.014552885,-0.008680077,0.0024661862,-0.0014850455,-0.002874644,0.02519805,0.015653335,-0.0076526166,-0.010179159,-0.015642105,0.00956156,0.025624756,-0.010431813,-0.038291156,-0.012700087,0.028184986,0.0023496845,0.0033939888,0.018494291,0.008225299,0.044354856,0.026680289,0.0067879776,0.022727653,-0.026747663,0.031351585,-0.008809212,-0.028387109,0.010364438,0.033574942,-0.00060180837,0.00456462,0.011414357,-0.01047673,0.006709374,-0.050845265,0.016619036,0.0008463917,0.0069451844,-0.0070462464,-0.023693355,-0.021851785,0.05942428,0.009460498,-0.006321971,0.0073494315,-0.0042249407,0.03678646,-0.023895478,-0.0126888575,0.013688246,-0.030879963,0.027556157,-0.012778691,0.00773122,-0.015529815,0.0058784224,-0.011459274,-0.020661503,0.0064847926,0.010443042,-0.0062658256,-0.03411394,0.0035989194,-0.016169872,-0.0061198473,-0.04044714,-0.016248476,0.004311966,-0.009516643,-0.055696227,-0.013351373,0.009668236,-0.0067879776,-0.0018935032,-0.04197429,0.0098086,-0.024816262,0.006748676,0.029060854,-0.017247863,0.0075290967,-0.013452435,-0.024434473,-0.005221521,-0.017697027,0.008135467,0.055067398,0.036292378,-0.0011053623,-0.029397726,-0.004763936,0.021863015,-0.0077873655,0.0075683985,0.07047369,0.016012665,0.012363215,0.021593517,-0.022750111,-0.038897526,0.00053197757,-0.008247757,0.018864851,0.008590245,-0.026994703,0.021952847,0.012149862,0.022963464,-0.048285034,-0.0031834436,0.038089033,0.01876379,-0.022053909,-0.0059008803,-0.010319523,-0.012441819,-0.009252761,0.012576567,0.0036803302,-0.004011588,-0.017360155,-0.00724837,-0.013160479,-0.049138445,-0.01668641,-0.002240201,0.016765013,0.019314013,-0.020133737,0.0059233387,-0.029779514,0.016585348,0.0007035719,-0.035371594,0.07047369,-0.02544509,0.0037533194,-0.011711928,0.0049295654,0.00973561,0.0011895804,0.045365475,0.027443865,0.034383435,0.012284611,0.025894253,-0.014665175,0.0026163752,-0.017708255,-0.009814214,0.0059738695,-0.023042068,0.011453659,-0.023042068,0.011644553,0.018685186,-0.031800747,-0.01924664,0.021593517,0.014799925,0.01888731,-0.00030879964,0.007108006,-0.021402622,-0.060547188,-0.035977967,0.016776241,0.0243671,-0.019078203,-0.0152378585,-0.026972245,-0.030857505,-0.0059233387,0.052417334,-0.0440629,-0.024771346,0.002001583,-0.027196826,0.0038908755,0.013688246,0.0253328,0.0075403256,0.00979737,-0.0006014575,-0.030004095,-0.059738696,-0.020605357,-0.035304222,-0.033193152,-0.036225006,-0.018337084,0.030430801,-0.03141896,0.0050727357,0.012846065,-0.011723157,-0.10267869,-0.041323006,0.0111841615,-0.022491843,-0.023805644,0.0035231232,-0.009729996,0.033282988,-0.0061198473,-0.0025139097,0.0072371406,0.0243671,0.027354034,-0.045971844,0.022727653,-0.0052664373,0.040042892,0.010381282,-0.0040087807,-0.039773393,-0.011492961,-0.0058222767,0.04370357,0.0068834247,0.016046353,0.012026343,0.003177829,0.016720098,0.05695388,0.0075964713,-0.0023188046,0.027601073,-0.011667012,0.0113919,0.030632924,0.021346478,0.0012871331,-0.010398126,0.00883167,-0.023670897,0.0071136206,-0.033911817,-0.013912828,-0.01752859,0.031104546,0.03912211,0.033642318,0.022323407,-0.022256032,0.007635773,0.025849337,0.0070350175,-0.021840556,-0.008500412,0.029891806,0.010252148,-0.025108218,0.018112503,0.0231319,-0.014474281,-0.016091269,-0.018977141,0.024793804,-0.022110054,0.009752454,-0.015046964,0.0020773795,-0.0021840557,-0.025018385,-0.032204997,0.007613315,-0.0047442853,0.0487342,0.052327503,0.016124956,-0.011212234,0.006748676,-0.02897102,0.0029953565,-0.0027960404,0.022357093,-0.030632924,0.020032674,0.023536148,-0.0011425586,0.00094745343,0.0059738695,-0.0025798806,0.008893429,0.028229902,0.038628027,-0.018561665,0.019302785,-0.016731326,0.0013881947,-0.021627204,-0.029779514,-0.00053057395,0.0589302,-0.029128227,0.033305444,-0.010493573,-0.010111785,-0.008870971,-0.020347089,-0.007647002,-0.019639658,0.0064847926,-0.009606476,-0.03409148,0.027354034,0.00085411174,-0.017225405,-0.0047892015,-0.04639855,-0.02751124,0.025737047,-0.015563502,0.014463052,-0.0097019235,0.052552085,0.06162518,-0.018977141,-0.006681301,-0.028072694,0.0088372845,0.020964688,-0.032070246,-0.011375056,0.009146084,0.0026612915,0.034989808,0.0037140176,-0.045006145,-0.00639496,0.006074931,0.05273175,-0.00681605,-0.051429175,0.015035735,0.030296052,-0.057447962,0.027331576,0.00706309,0.011273994,0.0135422675,-0.021997763,0.033193152,0.010179159,-0.066386305,0.0059738695,-0.0048256963,-0.034248687,0.0032227454,0.03227237,0.031800747,-0.010297065,-0.00754594,-0.034518186,0.031980414,-0.020728877,0.024299724,0.03532668,0.015046964,0.058615785,0.0009263989,-0.042580664,-0.0076638456,0.0053562704,-0.012599025,-0.014642717,-0.0041407226,0.03507964,0.0041828314,0.04442223,0.034316063,0.009095553,0.018786248,0.019942842,-0.01692222,-0.008354434,0.03375461,0.018078815,0.019527366,0.012138633,0.025894253,0.024030227,-0.020234799,0.025355257,0.0049014925,0.008730608,0.018168649,0.009415582,-0.05695388,-0.040581886,0.005760517,-0.03128421,0.01327277,-0.032519408,-0.0036887522,0.02751124,-0.0009727189,0.0037701628,-0.015496127,0.019897927,-0.026208667,-0.018056357,0.001698398,0.0055752373,-0.00032073053,0.0070911627,-0.015945291,-0.003217131,0.03858311,0.022795027,0.033440195,-0.026320959,-0.0129022105,-0.0227838,-0.009095553,0.020998375,-0.0022935392,0.0017222598,0.05151901,-0.036314838,-0.01620356,-0.005210292,0.00392737,0.0045281257,0.03436098,0.00046670856,-0.008652004,-0.003677523,-0.0025040843,0.013227854,-0.01605758,-0.021615975,0.0010351806,-0.00026300605,0.02203145,0.019650886,0.033799525,0.0036101486,-0.042176418,-0.033058405,-0.0023131901,0.030588008,0.011914051,-0.008539714,0.006282669,-0.0013390676,0.0011769477,0.03348511,-0.029240519,0.045275643,0.030296052,0.0007558573,0.021739494,0.029914264,-0.007467337,0.022188658,0.0105497185,-0.010308294,-0.034383435,-0.023401398,0.018337084,0.02204268,0.01595652,-0.00020931703,0.028566774,-0.031261753,0.022491843,-0.0019257868,-0.0010379879,-0.003624185,0.031890582,0.0031385273,0.004536547,0.0446019,-0.026231125,-0.036449585,-0.047790956,0.01898837,-0.00639496,0.022604134,0.018864851,-0.025265425,0.008910273,0.020414464,0.01040374,0.014036347,-0.002563037,0.021099437,-0.008483568,0.0020998376,0.0057549025,-0.033934273,-0.020032674,0.03532668,0.027937945,-0.02423235,0.0001772966,-0.020234799,-0.0064005745,-0.013688246,0.016416911,0.039885685,-0.0294651,0.033238072,0.014530427,-0.0036410284,-0.005552779,0.04386078,-0.033260528,0.014912215,0.008579016,-0.011015725,-0.017865462,0.007439264,-0.014260929,-0.0019861432,-0.020931002,-0.0039217556,0.024659054,-0.0018120925,-0.025984086,-0.00020300067,-0.010982038,0.028409567,-0.009954577,0.0020464994,0.0024760116,0.025153134,-0.0035792685,0.025490006,0.0064567197,-0.063870996,0.023536148,-0.021256644,0.0057015643,-0.012026343,0.013800536,-0.048240118,0.040245015,0.0243671,-0.033687234,-0.008562172,-0.0055780443,-0.014957132,0.019280327,0.05807679,-0.021222956,0.02081871,-0.019662116,0.001037286,0.010706926,0.020167423,0.024030227,-0.0025153134,-0.0013369621,-0.025781963,0.0012745004,0.0086463895,0.015619648,-0.0050586998,-0.01522663,-0.008174769,-0.0071304645,-0.00016422526,-0.0023567027,-0.0037280538,0.011891593,-0.008713764,0.036449585,-0.05394449,-0.016619036,-0.0017236634,-0.010156701,-0.017685797,0.021043291,0.012284611,0.008068092,-0.018404458,0.027578615,-0.033777066,0.023468772,-0.056549635,-0.01181299,0.028656607,-0.033687234,0.003854381,0.0051766047,0.0018556052,-0.02847694,-0.008466724,-0.013104334,0.008185998,-0.010656395,0.0025700552,-0.032160077,-0.02106575,0.036651712,0.025040844,0.005207485,0.014710092,-0.0032901198,-0.009550331,0.020740107,-0.026231125,0.021009605,0.023783186,0.03406902,-0.009089938,0.018483061,0.02362598,0.04118826,0.01876379,0.018202335,0.0049239504,0.01016793,0.01595652,-0.0109708095,-0.018471833,0.021582287,-0.025624756,0.02836465,0.019156806,-0.037213165,-0.019830551,0.007927729,-0.024322182,-0.033058405,0.015608418,0.017483674,0.011116787,0.031374045,0.009449269,-0.011633324,-0.02215497,0.026276043,-0.008006332,0.009589632,0.034405895,0.024389558,0.023244191,0.03409148,-0.0034613633,-0.021851785,-0.009679466,-0.025063302,0.006355658,-0.027106995,-0.01974072,0.030632924,-0.0064511052,-0.012565338,-0.03299103,0.0039414065,0.012250924,-0.011633324,-0.0014822383,-0.025265425,0.004648838,-0.02971214,-0.016619036,0.0017741943,-0.013104334,-0.020268485,0.0057380586,-0.023311565,-0.00156786,-0.008899044,0.0143956775,0.019358931,0.034922432,-0.02337894,0.038336072,-0.00045512855,0.017023282,0.019179264,0.017674569,-0.0013194167,0.010246534,-0.0044944384,0.025040844,-0.006928341,-0.006198451,-0.011790532,-0.008404965,-0.018191107,-0.0022219538,-0.0313965,0.017843004,0.03990814,0.03777462,-0.029936722,-0.01302573,0.022716425,0.013856682,-0.002036674,0.0027300694,0.032946113,0.017483674,-0.020111278,0.014429365,0.00398913,0.02337894,-0.008696921,0.0070181736,-0.04067172,-0.012935897,-0.0010660606,-0.020762565,-0.0047892015,0.045006145,-0.013070647,0.022480614,-0.012722545,0.0006095284,-0.004034046,0.018685186,-0.01753982,-0.019561054,-0.0024844336,-0.023828102,-0.03191304,0.0033013488,-0.020055134,-0.03847082,-0.017158031,-0.024569223,-0.02921806,0.0028395532,0.008371278,0.02472643,0.03285628,-0.02459168,-0.029487558,-0.014361991,0.0040873843,-0.030340968,-0.023558605,-0.013531039,-0.00937628,0.025063302,-0.013351373,-0.0018766597,0.0046179583,0.031127004,0.044736646,0.0023384555,-0.0057942043,0.031374045,0.05601064,0.020414464,0.006175993,0.0016380417,0.02618621,-0.008764295,0.03105963,0.019044517,-0.004429871,0.0065577812,-0.01777563,0.056055557,0.024951011,0.008354434,0.038021658,0.0075683985,-0.0052804737,0.010257763,0.012228466,-0.03918948,-0.018550437,0.009774912,-0.014339533,0.023446314,0.020055134,0.01497959,0.0066644577,-0.03687629,-0.042109042,-0.03433852,0.036314838,-0.0014401292,-0.024816262,0.014923444,0.035977967,-0.0037982357,-0.020526754,-0.0050053615,0.03824624,-0.016731326,0.046218883,-0.046353634,0.008298288,0.0054713683,0.04237854,0.002958862,0.017292779,-0.021840556,0.019168036,0.004752707,-0.042400997,-0.034248687,0.0007881409,0.03132913,-0.00712485,0.003677523,-0.016967136,0.023334024,0.03007147,0.01605758,0.008376892,0.035147015,-0.03918948,0.011172933,0.015754396,0.03117192,0.055606395,-0.0058784224,-0.00036143593,0.00547979,0.000029761442,-0.044714186,-0.035663553,0.020683961,-0.027848113,-0.017023282,-0.018718872,-0.007023788,0.03177829,0.008264601,-0.010937122,0.01728155,-0.01437322,-0.03588813,-0.013474894,0.011981426,-0.022458157,-0.0054152226,-0.020403234,-0.025826879,0.0058503496,-0.0020507104,0.0284994,0.005142918,0.021514913,-0.018730102,-0.04480402,-0.01839323,-0.03409148,-0.015002048,0.017854234,-0.008466724,0.03824624,0.0035596176,0.010847289,-0.011711928,0.0046376092,-0.035012264,-0.008893429,0.007574013,-0.028566774,0.005732444,-0.0048537687,0.011094329,0.013250312,0.016866075,0.0070687043,-0.0032283599,0.0035371594,0.0060244002,-0.010021952,0.03570847,-0.034742765,0.006709374,0.013328915,0.029644765,0.052282587,0.005906495,0.034922432,-0.0029616694,-0.017786859,0.030093929,-0.0005933866,0.015945291,0.019516136,0.017236635,-0.018000212,0.0035034723,-0.013003272,0.0051485323,-0.00022545883,-0.0039554425,0.018325856,-0.00068532466,-0.021009605,-0.0007004137,0.0050980016,0.038156405,0.007865969,0.017798088,-0.010931508,-0.048644364,0.0062882835,0.014294616,-0.012576567,0.05430382,0.013014501,-0.012396902,0.03337282,-0.002609357,-0.0051513393,0.0008281445,0.032204997,-0.0004972376,0.0011376459,0.03930177,0.013014501,-0.039638646,-0.008034405,-0.024636596,-0.001360122,0.01144243,-0.0005895266,-0.017236635,-0.021133125,0.002766564,-0.024748888,0.001640849,0.011846677,-0.045882013,-0.021391394,0.00016554118,0.00036319048,-0.009151698,-0.010746228,-0.0058222767]},{"id":"guide-webhook-attachments-embeds-2","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Direct Attachments\nAttach files to webhook messages using the files array. Each file needs name and data (Blob, ArrayBuffer, or Uint8Array). Optional filename overrides the display name.\n\n```javascript\nimport { Client, Webhook } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nconst buffer = readFileSync('report.pdf');\nawait webhook.send({\n content: 'Report attached',\n files: [\n { name: 'report.pdf', data: buffer },\n { name: 'log.txt', data: new TextEncoder().encode('Log content'), filename: 'log-2025.txt' },\n ],\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.027109843,0.026797278,0.02423424,-0.04621801,0.000793786,-0.0585956,-0.000067396926,0.0002461453,0.011429477,-0.015763717,0.011721204,-0.009913534,0.036632672,-0.10385508,-0.010627225,0.05446974,0.012002513,0.0036492017,0.0026138285,0.004425406,-0.0048187175,0.023129843,-0.007501571,0.0020342802,-0.02823508,-0.004094607,-0.02604712,0.02877686,0.006324241,-0.0069806282,0.013867487,-0.010752251,-0.009929162,0.022275498,-0.034132145,0.06751414,0.0061940053,0.05076063,-0.025359476,0.029777069,0.008965419,-0.004993233,-0.0048369505,0.04061267,0.0077307853,0.0074338485,-0.03973749,0.0010119306,-0.030985655,0.058762304,0.0057147383,0.016326336,0.04305068,0.015669947,-0.015169843,0.024671832,-0.00488644,0.024734346,-0.059054032,0.0018806021,0.043842513,-0.013273613,-0.029193614,-0.0028703928,-0.00868932,-0.021837907,-0.062346388,0.009903115,0.023025654,0.0658888,0.11152335,0.051427435,0.016888954,0.02026466,0.014513455,-0.017691204,-0.0076839007,-0.026838953,-0.011929581,-0.030652251,-0.03452806,-0.011835812,-0.09301948,-0.0050505367,-0.06705571,0.047968376,-0.030110471,-0.04034178,-0.015326126,0.016701413,-0.017482828,-0.01275267,-0.082433924,-0.0018089726,0.00651178,0.021400314,-0.04371749,-0.017389057,-0.021400314,0.0030449084,0.075515814,-0.021942094,-0.06463853,-0.009778089,0.009653063,-0.007366126,0.045717906,-0.0047744373,0.013513247,-0.0075849216,-0.034778114,-0.02098356,0.011950419,0.034340523,0.05888733,-0.018014189,-0.011700367,0.053344503,0.0074494765,-0.041717067,-0.041508693,0.003039699,0.06618053,-0.022483874,0.016576387,0.005553246,-0.036778536,0.012908953,-0.060220942,-0.0036492017,0.055761676,0.0056418064,0.07747456,-0.016649319,-0.008585131,-0.026547225,0.025880419,0.03990419,-0.015774136,-0.015951257,0.042842302,-0.04296733,0.042842302,-0.05797047,-0.0070796073,0.06693068,-0.036299266,0.055303246,-0.030298011,-0.031444084,-0.045176126,-0.0005193145,0.00529017,0.025901256,0.010502199,0.0127630895,-0.00029563482,0.033048585,-0.023463245,-0.04475937,-0.01031466,0.024546806,0.017493246,-0.007626597,-0.011471152,-0.014159215,0.039049845,-0.019285288,-0.018305916,0.025276126,0.0034225916,-0.044842724,-0.008199634,0.025067749,0.03865393,-0.015492828,0.002363776,-0.031131519,0.003591898,0.016138796,0.013513247,0.0103042405,-0.013711205,-0.013044398,-0.0385289,0.004407173,0.016628481,0.020816859,-0.005980419,0.025026074,0.00077946007,0.017253613,0.0064440574,-0.025755392,0.022046283,0.0029329057,-0.027297383,0.020691833,0.035694975,-0.035882514,-0.014523875,0.0102000525,0.013523665,-0.038799793,-0.034132145,0.016430523,-0.016242985,0.02298398,0.00732445,-0.022650575,0.0064492673,0.045259476,0.015836649,0.024005026,-0.056386806,0.008361125,0.002904254,0.020368848,-0.016242985,0.0034851048,-0.042217173,-0.008996676,0.01746199,-0.026838953,-0.06359665,0.027901676,-0.0031543062,-0.03302775,-0.009465524,-0.0029381153,0.01927487,0.005227657,0.0035215707,-0.024942722,0.0067774607,0.042800628,0.0635133,0.03127738,0.0061367014,0.0060012564,0.012877696,-0.021400314,0.0002756111,-0.0055219894,-0.016170053,-0.015232356,-0.020097958,-0.039404083,0.032527644,0.012700576,0.038466386,-0.010460524,0.02877686,-0.02080644,0.020483457,-0.04705152,-0.03925822,0.028839372,0.01601377,0.00017565527,0.041279476,-0.00058182754,-0.031339895,0.028068377,0.0028651832,0.0043160077,0.051094033,0.038591415,-0.03281937,0.013284031,0.032194242,0.02225466,0.029714555,0.019597854,-0.053886283,0.010793927,-0.023859162,-0.036528483,0.00006414104,0.03173581,0.005001047,0.010918953,-0.047426596,0.038591415,0.004823927,0.025651205,-0.031423245,0.011189843,0.026797278,0.031464923,-0.011606597,-0.0023390315,0.019597854,-0.03246513,-0.00321161,0.055761676,0.010793927,0.0007683901,0.04413424,0.009986466,-0.07051477,-0.00484216,-0.0000503035,-0.010898115,0.017482828,-0.0007749018,-0.025213612,-0.03354869,0.0058762305,-0.031131519,-0.00088625326,0.012919372,-0.047426596,-0.0005860602,-0.0036231545,0.00083741493,0.03682021,0.025734555,0.006287775,0.011887906,0.017659947,0.004326427,0.030193822,-0.06376335,-0.0061731674,-0.051510785,-0.014742671,0.00823089,0.0033861257,0.023234032,0.02542199,0.027359895,0.022379685,-0.0040138615,0.008553875,-0.040195916,-0.0058918586,-0.021671204,-0.010002094,0.04044597,-0.026693089,-0.0029876048,0.009830183,0.004938534,-0.07084817,-0.024588482,0.015336544,0.05755372,-0.029610367,-0.025276126,-0.011314869,0.0070691886,-0.06297152,0.026109634,-0.01683686,-0.013607016,0.004894254,-0.061762933,0.023880001,-0.02740157,-0.04396754,0.046092983,0.0023025654,0.03175665,0.011262775,0.00051150034,-0.010481361,-0.029360315,0.014773927,0.008658063,0.04263393,0.04588461,0.0008647644,0.014013351,-0.027526597,0.0140967015,-0.0036153405,0.06401341,0.012783927,-0.012429686,0.0056574345,0.04380084,0.011617016,-0.051802512,0.012335916,0.009038351,-0.014607226,0.030777277,-0.023775812,0.0199,0.0015432918,0.0100646075,-0.020400105,0.017743299,0.0039878143,0.029693717,0.06255476,0.0140967015,-0.0024354057,-0.041925445,-0.016274242,0.018160053,0.0039904187,-0.005058351,0.053386178,0.013252775,0.005303194,0.0037247383,0.03409047,-0.01672225,0.002849555,0.03500733,0.0046285735,-0.015023979,-0.01962911,0.016930629,-0.009429058,-0.008324659,-0.025547016,0.021587854,-0.031131519,-0.013711205,-0.011554503,0.030589739,0.018441362,-0.026255498,0.045634557,-0.016586807,0.04584293,-0.030318849,-0.07239016,-0.054511413,0.033215288,-0.005782461,0.034236334,-0.04921864,0.0251511,0.01592,-0.0018988351,-0.002958953,-0.028901884,0.018649738,-0.003419987,0.051135708,-0.037778743,-0.0077307853,-0.023025654,0.020702252,-0.045384504,0.01203377,-0.029860418,-0.025734555,-0.018837277,-0.02875602,0.038674764,0.022567226,-0.01726403,-0.029693717,0.060470995,0.011689948,0.008199634,-0.007939163,-0.044717696,0.013679948,0.009142539,-0.020275079,-0.029902095,0.027630785,0.015201099,0.0031699345,0.0071056546,0.0076213875,-0.02152534,0.037070263,0.0018636715,-0.06668063,0.011043979,-0.042758953,0.017086912,-0.0025877815,0.039299894,0.0007729483,-0.05642848,-0.02758911,-0.011200262,0.08476775,0.030339686,-0.025672043,0.025067749,0.006657644,-0.0329444,0.003946139,0.039674975,-0.007282775,-0.005902278,-0.03546576,-0.024817696,-0.05155246,0.0017060864,0.0034564529,-0.02252555,-0.044550996,0.002930301,-0.0069910474,0.04550953,-0.013471571,-0.03638262,-0.011721204,0.000036811907,0.044550996,0.03915403,-0.027734974,0.0116691105,0.02469267,-0.01936864,0.020243822,-0.027547434,0.032715183,-0.006204424,-0.047259897,-0.015399057,0.015451152,0.0019782789,-0.016534712,-0.015138587,0.003815903,-0.031673297,-0.050052147,0.00016751555,-0.021921257,0.048843563,0.0056209685,-0.010939791,-0.016399268,-0.018118378,-0.009559293,-0.04069602,0.0016657134,0.017191099,0.0055792932,-0.037695393,0.025109425,-0.023004817,-0.0012287729,-0.016888954,0.007798508,-0.01230466,0.008475733,0.004750995,0.02342157,-0.0112940315,-0.03736199,-0.008590341,0.0074130106,0.038591415,-0.0028287172,0.011502408,0.007933953,-0.023109006,-0.00823089,0.015586597,-0.0133465445,0.018316336,-0.0013251472,-0.0022048887,0.0291311,0.0077359946,-0.007459895,0.047968376,0.000105653635,0.0050817933,0.0036570157,-0.019243613,0.013513247,-0.018691413,0.027026493,-0.016857697,0.016607644,-0.04188377,-0.041279476,-0.023859162,0.0042118193,-0.04044597,0.011012723,-0.0026099214,0.005001047,0.008850812,0.0034225916,0.021421151,-0.009017513,0.047426596,-0.01963953,0.015388639,-0.027172357,0.020139635,-0.0055115707,-0.0036257592,0.003508547,-0.038299687,0.021817068,-0.011387801,-0.011179424,0.014430105,-0.01791,0.017514084,0.040841885,0.0025135472,-0.024505131,-0.009845812,0.01873309,0.006730576,0.018493455,-0.022463037,-0.056511834,-0.0006935046,0.022087958,0.0062721465,0.0019913025,-0.00651699,0.00219447,0.04876021,0.014826021,0.02967288,0.016065864,-0.00705356,0.031069005,0.0062200525,-0.017534921,-0.00050824444,0.03679937,-0.027734974,0.00032477503,0.0070223035,-0.0184622,-0.024255078,-0.019254033,0.034590576,-0.018951885,0.0184622,-0.0028287172,0.021150261,0.0049697906,0.05763707,0.012325497,0.016763927,0.02758911,-0.018264242,-0.0074286386,-0.026422199,-0.012533874,-0.022108797,0.010814765,0.003021466,-0.007767251,0.010668901,-0.049552042,0.005917906,0.010335498,-0.0117732985,0.023067331,0.014232147,-0.019827068,-0.03700775,0.009251937,-0.025109425,0.009491571,-0.018493455,-0.03129822,-0.017784974,0.02090021,-0.04317571,0.012929791,0.008611178,0.0032037958,0.013523665,-0.032444295,-0.011273194,-0.019035235,0.002578665,0.05363623,0.010377173,-0.0134819895,-0.0133465445,-0.026443036,0.017243193,-0.008095445,0.01456555,0.039591625,0.029922932,0.007652644,-0.025651205,-0.018660158,-0.0042456808,-0.01656597,-0.009522827,0.054136336,0.04198796,0.0013010537,0.018660158,-0.018503875,-0.012679738,-0.018910209,-0.025651205,-0.0013583574,-0.0049072774,-0.03538241,0.032527644,-0.0042222384,0.010668901,-0.05697026,0.008444477,0.02742241,-0.0068087173,-0.007491152,-0.020827278,0.003112631,-0.020514712,-0.012565131,-0.00321161,-0.014263404,-0.0017125981,-0.017868325,-0.018764345,-0.025547016,-0.020525131,-0.041571204,0.018212147,-0.013429895,0.024380105,-0.013252775,-0.00950199,-0.019129006,0.006303403,0.019139424,-0.033507016,0.030568901,-0.020962723,-0.008626807,-0.026484713,0.006167958,0.017576598,-0.007725576,0.029256126,0.021671204,0.046551414,0.019295707,0.002886021,-0.011867068,-0.029422827,-0.01590958,-0.026005445,0.00352678,-0.0029381153,0.011002304,-0.022275498,-0.0036596204,-0.006532618,-0.0017790183,0.005735576,0.032527644,0.007074398,0.029589528,0.0065899217,0.035444923,-0.024546806,-0.024046702,-0.022921465,0.016920209,0.024046702,-0.024317592,-0.0184622,-0.03392377,-0.016951466,0.019649947,0.046634763,-0.032652672,-0.040862724,0.023546597,-0.00849657,-0.01800377,0.0070431414,0.013148586,0.03021466,-0.013669529,0.0020017212,-0.03519487,-0.0531778,-0.03165246,-0.047801677,-0.008803926,-0.044384293,-0.016701413,0.018951885,-0.020785602,0.0039904187,0.014721832,0.0058918586,-0.08526786,-0.023880001,0.038028795,-0.02967288,-0.010450105,0.0001745157,-0.035569947,0.040633507,0.018295497,-0.022900628,0.022379685,-0.028651834,0.007381754,-0.023234032,0.04684314,-0.0066889008,0.044009216,0.016159633,-0.004750995,-0.024109215,-0.005271937,0.004902068,0.030631414,0.051885866,0.013950838,0.0072358903,0.006376335,0.008085026,0.07243183,-0.014273822,0.026922304,0.012898535,-0.038153823,-0.0037507855,0.049260315,0.02171288,-0.014367592,0.005897068,0.0011571434,-0.008658063,0.006709738,-0.01438843,-0.0035241754,-0.0009422546,0.004188377,0.07501571,0.025005236,0.012888115,0.00010866533,-0.015232356,0.021056492,0.0039487435,-0.010731414,-0.025359476,0.030172985,0.005745995,0.0040294896,0.026901467,0.009600969,-0.010700157,-0.04071686,-0.027714137,0.007590131,0.0052875653,0.016586807,-0.01582623,-0.010590759,-0.026130471,-0.02786,-0.024650995,0.0065795025,-0.012554713,0.048968587,0.018253822,0.014555131,-0.0037742278,0.02796419,-0.025213612,-0.0036752487,-0.008991466,0.049968798,0.016170053,0.0049802093,0.026422199,0.0061731674,0.0011063515,0.010814765,-0.032548483,0.02569288,0.0372578,0.0112211,-0.0013257985,0.007173377,-0.008793508,0.025276126,-0.011512827,-0.04846848,-0.0042769373,0.0772245,-0.036070053,0.007439058,-0.012450524,0.00242108,-0.004172749,-0.007814136,-0.019962514,-0.0056209685,0.0067253667,-0.003193377,-0.02821424,0.017149424,-0.005011466,-0.031527434,0.0062721465,-0.02179623,-0.016753508,0.03817466,0.005344869,0.004839555,-0.023754975,0.028380943,0.06976461,0.0014182657,0.005907487,-0.010028142,0.028360104,-0.0070848167,-0.033298638,0.0041805627,0.0030110471,-0.0139612565,0.048968587,0.0018936257,-0.0025109425,-0.023025654,0.021567017,0.03336115,0.0027714137,-0.07093152,0.024734346,0.0053761257,-0.03671602,0.013429895,0.0032506806,0.024838535,0.012460942,-0.010455314,0.018712252,0.0097572515,-0.036590993,-0.008444477,-0.01782665,-0.045384504,-0.0069129057,0.009929162,0.03465309,-0.033423666,-0.02198377,-0.037778743,0.01230466,0.00040503274,0.026818115,0.018493455,0.025046911,0.02315068,0.020306336,-0.03961246,-0.0015940837,0.014805184,0.008585131,0.010147958,0.007829765,0.042717278,0.011512827,0.03600754,0.04359246,0.013877906,-0.0026060145,0.031214869,-0.018868534,-0.005219843,-0.00016735274,0.026005445,0.01991042,0.034486387,-0.004693691,-0.01284644,0.012450524,-0.0055063614,-0.013804974,-0.00605856,0.029860418,-0.0010588155,-0.030027121,-0.031798325,0.021337802,-0.03392377,0.014763508,-0.046468064,-0.015586597,0.021837907,0.009033142,0.039841674,-0.033527855,0.0076839007,0.009548875,-0.024755184,0.006839974,0.012408848,0.02956869,0.022233821,-0.010476152,-0.027380733,0.013502827,-0.007772461,0.03842471,-0.010825183,0.0051990054,-0.019462408,0.0051443065,0.0071994243,0.0204522,0.010017723,0.046176337,-0.04530115,-0.029464504,0.009053979,-0.018858116,-0.0074286386,0.03765372,0.013763298,-0.02217131,-0.0061367014,0.01510733,0.020754347,-0.036757696,-0.034423877,0.020879371,-0.013086073,0.014555131,-0.00054080336,0.016638901,0.018899791,-0.04061267,-0.025484502,-0.005589712,0.009257147,-0.005725157,-0.014898953,-0.009376964,0.015232356,-0.022317173,0.02579707,-0.006615969,0.04867686,0.02460932,0.011825393,0.038799793,0.023775812,0.023379896,0.028193403,0.0039383247,-0.016701413,-0.03736199,-0.008267356,0.048510157,0.004089398,-0.00795479,-0.013721623,0.008324659,-0.037737068,0.00045224314,0.004555641,0.0069858376,0.011075236,0.0133465445,0.02190042,0.014773927,-0.00031793767,-0.0019730695,-0.036049213,-0.046718117,0.001250913,-0.038820628,0.0139612565,0.004362893,-0.030777277,0.016857697,0.013700785,0.028672671,-0.004323822,0.019785393,-0.013440315,-0.017691204,0.014367592,0.00047015052,-0.044384293,-0.027172357,0.020608481,0.023817487,-0.044217594,-0.019462408,-0.02631801,-0.023213195,-0.018555969,0.005402173,0.019139424,-0.01908733,0.043842513,0.015128167,-0.012971466,0.03511152,0.026401361,-0.04207131,0.017118167,-0.015597016,-0.012856859,-0.010085445,-0.008736204,0.009194634,-0.0027844373,-0.019733299,0.0065847123,0.016941048,0.024588482,-0.0076422254,0.018222565,-0.0030813743,0.012335916,0.0077307853,0.0080485605,-0.0018454385,-0.0025995027,-0.001185144,-0.015534502,-0.0021488874,-0.053802934,0.021879582,0.012137958,0.041383665,-0.012179634,0.03281937,-0.04296733,0.032881886,0.0265889,-0.034382198,0.021546178,-0.015534502,-0.021733718,0.015159424,0.04909361,0.0012925884,0.0045712697,-0.010814765,0.012106702,0.0053865444,0.049260315,0.027359895,-0.0006700622,-0.0081840055,-0.022212984,0.005673063,0.02796419,0.006345079,0.03990419,-0.030735603,-0.023942513,-0.000016645738,0.020045863,-0.0045452225,-0.009324869,0.011877487,-0.008408011,0.02225466,-0.0013017049,0.008824765,-0.0111585865,-0.012054607,-0.044009216,0.026088797,0.00049261615,0.0012678436,-0.018962303,0.029756231,-0.04425927,0.008001676,-0.024838535,-0.013429895,0.016430523,-0.029339477,-0.0045712697,0.007834974,0.0050609554,0.012200471,0.0004180563,-0.0017568783,0.010236518,-0.0068868585,-0.016378429,-0.03456974,-0.013940419,0.02786,0.009288403,0.004787461,0.03336115,0.011200262,0.008319451,0.00045484785,-0.036236756,0.0057043196,0.04325906,0.025171937,0.01873309,0.0018167867,0.015180262,0.037945446,-0.0008445779,0.00084588025,0.0077151572,0.002117631,0.0069493717,-0.005475105,-0.008741414,0.014794764,-0.009017513,0.02569288,0.003961767,-0.04125864,-0.021421151,0.0087674605,-0.021942094,-0.016816022,0.03842471,0.032777697,-0.0076057594,0.02152534,0.022129634,-0.03138157,-0.03184,0.003039699,0.014398849,0.009871859,0.025734555,0.03473644,0.004441034,0.03256932,0.0028156938,-0.034882303,-0.0025982002,-0.014180052,-0.014961466,-0.019858325,0.00062871235,0.014659319,0.023754975,-0.0065847123,-0.0039096726,0.024213403,0.008564293,-0.0075640837,-0.00081918197,-0.024817696,0.0022322382,-0.051344085,0.002256983,0.0072358903,-0.01383623,0.011825393,-0.0033757067,0.006209634,-0.0033392408,0.003881021,-0.003573665,0.011867068,0.016222147,-0.014075864,0.041592043,-0.01257555,0.0015849672,0.041946284,0.012460942,-0.0020420942,-0.00588144,-0.010752251,0.013200681,0.003328822,-0.03907068,-0.028797697,0.021962931,-0.024567645,-0.013763298,0.017159844,0.008220471,0.017149424,0.03398628,-0.032694347,-0.02631801,-0.006480524,0.033861257,0.0071994243,0.011940001,0.0059856283,0.008032932,0.003545013,0.044926073,0.023025654,0.018795602,-0.020129215,-0.029381152,-0.029464504,0.02660974,-0.022463037,-0.022900628,-0.015232356,0.026443036,-0.045009423,0.015232356,-0.0089029055,-0.017409895,-0.005871021,-0.0032923562,-0.019285288,-0.010319869,-0.010288613,-0.02044178,-0.025588691,-0.01746199,0.0036934817,-0.060012568,-0.018701833,-0.03319445,-0.014669739,0.016868114,0.02904775,0.0206189,0.036049213,-0.034944817,-0.014180052,-0.038799793,0.028297592,-0.023317382,-0.005391754,-0.013044398,0.0066055497,0.032861046,0.023192355,-0.009059189,0.032777697,0.034861468,0.029818743,-0.043134034,0.02352576,0.0100646075,0.05417801,0.042008795,0.0025265708,0.00018167867,0.022150472,-0.00470411,0.01257555,0.007532827,-0.012408848,0.0004174051,-0.029797906,0.012815183,0.006115864,-0.010731414,0.032881886,-0.0013518456,-0.015524084,0.0016071073,0.010158377,-0.016055446,0.0070639793,0.0074234293,-0.005933534,0.024130052,0.030527225,0.009371754,0.010543874,0.00393572,-0.037507854,-0.01365911,0.04396754,0.0034616624,-0.01781623,-0.030589739,0.0372578,-0.035965864,-0.014075864,-0.01410712,0.01727445,-0.003419987,0.04177958,-0.029693717,0.009871859,0.013159005,0.043467436,-0.01700356,-0.02252555,-0.015117749,0.017482828,-0.00084783375,-0.032235917,-0.03727864,0.031589948,0.029985445,0.00850699,-0.028568482,-0.02252555,0.014002932,0.014982304,0.030443875,-0.0012554713,0.019410314,-0.03763288,0.00515733,0.0015211519,0.0024653599,0.0398,-0.0076786913,-0.00940822,-0.024567645,-0.008366335,-0.04767665,-0.0038132984,0.016128378,-0.03165246,-0.029214451,-0.02750576,0.012315079,0.03757037,0.034590576,-0.013825811,-0.0015445943,-0.011679529,-0.03429885,-0.015701205,-0.015617854,0.005600131,0.008324659,-0.012367173,-0.003565851,-0.025817906,0.007282775,0.020056283,-0.0081840055,0.034778114,0.008585131,-0.029276963,-0.0021580039,-0.016503455,0.007090026,-0.0006700622,-0.021587854,0.024275916,-0.0041805627,0.033882096,-0.018691413,-0.0028443455,-0.011210681,-0.010793927,-0.00016637599,-0.0038914399,0.013867487,-0.009053979,0.0066055497,-0.00058540906,0.053511206,0.0061367014,-0.014721832,0.01203377,-0.002107212,-0.024088377,0.054428063,-0.007225471,0.004540013,0.017784974,0.021692041,0.01329445,-0.0016409686,0.044467643,0.0077203666,-0.011877487,0.020337591,0.04027927,-0.0024523365,0.03429885,-0.015221938,-0.022692252,0.0034251963,-0.015711622,-0.012325497,-0.039341573,0.01248178,0.0020798626,-0.0026724346,-0.0024341035,0.0013622644,-0.0005834555,0.024317592,-0.00005591991,0.034152985,-0.000698714,-0.07151497,0.01157534,0.030860629,-0.013419476,0.041008588,0.0038315314,-0.041133612,0.0530111,-0.018024607,0.02179623,0.0155657595,0.016399268,-0.0024484294,0.019920837,0.02542199,0.019295707,-0.011971257,0.017451571,-0.021858744,-0.017930837,0.008986257,-0.053344503,-0.020493874,-0.006266937,0.016795183,-0.01655555,-0.01130445,0.027880838,-0.0276933,-0.02008754,0.0009572317,-0.01582623,0.00823089,-0.0013427291,0.00032330988]},{"id":"guide-webhook-attachments-embeds-3","type":"guide","source":"guides","text":"Guide: Webhook Attachments & Embeds (webhook-attachments-embeds)\nSection: Full Example: Embed + Files\nCombine content, description-only embed, and file attachments in a single webhook send.\n\n```javascript\nimport { Client, Webhook, EmbedBuilder } from '/core';\nimport { readFileSync } from 'fs';\n\nconst client = new Client({ intents: 0 });\nconst webhook = Webhook.fromToken(client, webhookId, webhookToken);\n\nawait webhook.send({\n content: 'Build completed',\n embeds: [\n new EmbedBuilder()\n .setDescription('Deploy succeeded. See attachment for logs.')\n .setColor(0x57f287)\n .setTimestamp(),\n ],\n files: [{ name: 'deploy.log', data: readFileSync('deploy.log') }],\n username: 'CI Bot',\n});\n```","meta":{"slug":"webhook-attachments-embeds","url":"/guides/webhook-attachments-embeds"},"embedding":[-0.015829116,0.024127876,0.015884003,-0.051548913,0.012459117,-0.07222995,0.011668759,0.019791884,0.013831267,0.009522717,0.010658857,-0.026850222,0.02294234,-0.099760756,-0.032558363,0.06257002,0.0023793073,-0.008918972,-0.005590137,-0.004036864,-0.0030955693,-0.0040505854,-0.0011388841,0.014577717,-0.035610024,-0.012601821,-0.03844214,0.055149432,-0.004871131,-0.031987548,0.018331917,-0.007343744,-0.016004752,0.021460418,-0.038705595,0.06696089,0.014863123,0.042284157,-0.017354947,0.03960572,0.013227521,0.0005238181,-0.0030351947,0.038661685,0.027003903,0.014577717,-0.0484753,0.0050001126,-0.03503921,0.07653301,-0.0029364,0.012184688,0.044721097,0.01479726,-0.009478808,0.009813613,-0.034182988,0.034073215,-0.08601731,0.013040909,0.035631977,-0.03187778,-0.022327617,-0.0005663547,-0.016784133,-0.008529281,-0.04544559,0.007327278,0.0152912345,0.051988002,0.072976395,0.03550025,-0.027047811,0.020692015,0.024171786,-0.028035758,-0.032163184,0.005222401,-0.022162959,-0.04177921,-0.021164034,-0.035456344,-0.089047015,-0.024654781,-0.084173135,0.016586544,-0.032316864,-0.04627986,-0.024391329,0.023535108,-0.016652407,-0.018452667,-0.056510605,-0.021032307,0.04092299,0.04063758,-0.04627986,-0.0027580205,-0.0021035052,0.03679556,0.08614904,-0.026081817,-0.060813665,-0.025313415,0.004668053,-0.029616475,0.028430937,0.0013220661,0.016213318,-0.027201492,-0.03593934,-0.021877551,0.003597776,0.027530808,0.065599725,-0.02834312,0.009687375,0.033502404,-0.01162485,-0.031263053,-0.03554416,-0.030472696,0.044677187,-0.014336218,0.003460561,0.006893679,-0.018672211,0.028123576,-0.05018774,-0.010082554,0.04109862,0.009577603,0.060594123,-0.009478808,-0.029353023,-0.012382277,0.020724947,0.028826118,-0.03128501,0.009775193,0.04019849,-0.07161523,0.048826568,-0.0377396,-0.02564273,0.039517906,-0.044216145,0.028057713,-0.03754201,-0.035675887,-0.051812366,-0.027684487,-0.0077718548,0.024435239,-0.017925762,0.0015944378,-0.030209243,-0.004154869,-0.006103321,-0.043908782,-0.0014270354,0.02619159,0.00047647892,0.001937475,-0.037827417,-0.010592994,0.04309647,-0.042723246,-0.041515756,0.005735585,-0.0020582243,-0.018298985,-0.0032355285,0.033963446,0.047684938,-0.029726246,-0.019901656,-0.053700443,-0.0041713347,-0.0019059157,0.011103434,-0.024127876,-0.009912408,0.00086719845,-0.05427126,-0.013205566,0.028628526,0.023732698,-0.016575566,-0.00022263125,-0.023381427,0.008562213,-0.013436088,-0.009303174,0.02658677,0.003965512,0.0036444291,0.017925762,0.061208844,-0.03938618,-0.012107847,0.023820516,0.017168334,-0.03363413,-0.018760027,0.019736998,-0.014731397,0.01882589,-0.008265829,0.0074370503,0.008918972,0.033963446,0.029001752,0.04158162,-0.030780058,-0.00053856865,-0.004303061,0.017903807,0.0028623038,0.012305437,-0.05427126,0.015027781,0.01976993,-0.019012503,-0.048607025,0.046192043,-0.018573416,-0.042525657,-0.02904566,0.016081592,-0.009270242,0.0012438535,-0.03984722,-0.007821253,0.012360322,0.056115426,0.019100321,0.019912634,0.004742149,-0.0017055818,-0.023864424,-0.009149493,-0.015280257,-0.017014654,-0.0108290035,-0.016729247,-0.014621625,-0.03508312,0.028123576,0.010510665,0.07244949,0.026718495,0.02544514,-0.0029062126,0.035961293,-0.048124027,-0.04909002,-0.015027781,0.0028485823,-0.010691789,0.02004436,0.03264618,-0.04869484,0.011526056,0.005120862,0.02434742,0.028826118,0.016773155,-0.0022187657,0.0018976828,0.010247213,0.020955468,0.045006502,-0.0024383096,-0.046104223,-0.0034001865,-0.032602273,-0.018134328,-0.027904032,0.008540259,-0.03214123,-0.014413059,-0.040703442,0.046850674,0.011602896,0.015016804,-0.022283709,0.0023751908,0.029923836,0.0040341197,-0.024588918,0.017190289,0.03914468,-0.035170935,-0.0036142417,0.05334917,0.03934227,-0.00006341904,0.058354773,0.039913084,-0.060462397,-0.0013028559,-0.003449584,-0.0014338963,0.029462794,-0.00007315272,-0.027025856,-0.044260055,0.014632602,-0.020922536,-0.0023491199,-0.006827816,-0.0442381,0.0037569453,0.009495274,0.0129970005,0.027728397,0.025357323,0.010779606,0.010252701,0.044325918,0.0021268318,0.01874905,-0.0749962,-0.027904032,-0.031021556,-0.02529146,0.014160583,0.02869439,0.018178236,0.021317715,0.017947715,0.012832342,-0.0020047105,0.009824591,-0.054973796,0.009215356,-0.0014325241,0.015510778,0.056071516,-0.027464945,0.0012040612,-0.01292016,-0.02059322,-0.05918904,-0.0034111636,0.013589769,0.057300963,-0.017179312,-0.021054262,-0.022964293,-0.01632309,-0.04109862,0.012228596,0.0055050636,-0.033678036,0.02043954,-0.054754253,0.009193402,-0.017124426,-0.04632377,0.05378826,0.01874905,0.035851523,-0.012942114,0.012426185,0.020219995,-0.0061911386,0.00029415454,-0.0036060088,0.049573015,0.05813523,-0.0025384766,0.02713563,-0.056949694,0.00416859,0.015159507,0.07350331,0.008578679,-0.01702563,0.012755502,0.055017706,-0.030758103,-0.034753803,-0.012634752,0.0009975526,0.0018030044,0.025357323,-0.025489049,0.008167034,-0.0005927686,-0.0071296887,-0.009846545,0.014994849,0.03532462,0.036510155,0.05708142,0.011295535,0.0017426299,-0.02744299,-0.017947715,-0.0085347695,-0.010774118,-0.006674135,0.07341549,-0.0075303563,0.028123576,-0.011548011,0.01409472,-0.0052361223,0.0066960896,0.047509305,0.02294234,-0.010988173,-0.0048436876,0.0077992976,-0.0044924174,-0.025620775,0.0039984435,0.033216994,-0.040571716,-0.003762434,0.0063393307,0.014204492,0.013677586,-0.041471846,0.055149432,-0.0052031907,0.03488553,-0.041076668,-0.08860793,-0.035522208,0.034534257,0.0049232724,0.0339854,-0.021811688,0.009791659,-0.0011738739,-0.020143155,-0.00297482,-0.015884003,0.026323317,0.013381202,0.03688338,-0.041845072,0.0025988512,-0.032426637,0.016213318,-0.039320316,0.042064615,-0.007920047,-0.036576018,0.021636054,-0.011092457,0.016026706,0.026762404,-0.045928586,0.0036499177,0.06353601,0.004231709,0.030253151,0.017135402,-0.037059013,-0.018112373,0.010790584,-0.036949243,-0.03539048,0.02000045,0.029989699,0.0015093645,0.012898205,-0.0049315053,-0.023535108,0.036576018,-0.020779831,-0.034182988,0.0324925,-0.036773607,0.010247213,0.0068881903,0.0041987775,-0.021658007,-0.07618174,-0.0039408132,-0.019254,0.085709944,0.012612798,-0.03205341,0.013853221,0.013589769,-0.012063938,-0.0001763212,0.013864199,-0.009034232,-0.011537033,-0.045050412,-0.016970744,-0.045752954,-0.005019323,0.020812763,-0.021932438,-0.04463328,-0.015642505,-0.004572002,0.023161884,-0.0026962738,-0.040791262,-0.005516041,-0.016180387,0.03139478,0.015159507,-0.030736148,0.009297685,0.043206245,-0.011701691,0.013556837,-0.031153282,0.047026306,0.0067784186,-0.058003504,-0.019133253,0.025774457,0.0076236627,0.006317376,-0.025994001,-0.0025645474,-0.0122395735,-0.028804163,-0.0040505854,-0.035763703,0.006838793,0.043557514,-0.008139591,-0.019890679,-0.036927287,0.015675437,-0.03512703,0.010214281,0.0011992586,-0.03185582,-0.05383217,0.053217445,-0.0058782883,0.005376082,-0.03168019,-0.0009872615,-0.005458411,0.01417156,0.014489898,0.013732472,-0.00530473,-0.032360774,-0.008331692,0.009303174,0.0007135177,0.007952979,0.017168334,-0.0049315053,-0.03194364,-0.009171447,0.017925762,-0.018979572,0.009665421,0.017673286,-0.016180387,0.03743224,0.023974195,-0.0020431306,0.027838169,0.020604197,-0.014380127,-0.011987098,-0.01980286,0.00016791679,-0.006816839,0.016542634,-0.026498951,0.00061472296,-0.038771458,-0.03574175,-0.01307384,0.00046481565,-0.015258302,0.014193514,-0.0010126464,0.0026962738,0.0064820345,-0.012777456,0.010142929,-0.0035264243,0.04443569,-0.007453516,0.016817065,-0.012514004,0.018573416,-0.015905958,0.020615174,-0.0039902106,-0.042086568,0.016619476,-0.011306512,-0.021592144,0.0028321166,-0.005461155,-0.005469388,0.015763253,0.0013447065,-0.016542634,-0.028123576,0.010126463,0.008079216,0.017508628,-0.021087194,-0.049397383,0.0016822553,0.00951174,-0.00014776335,0.0039819777,0.0069156336,0.0029995188,0.051944092,0.008507327,0.032602273,0.005532507,-0.0066302265,0.024325466,-0.00504951,-0.024457192,-0.006718044,0.04129621,0.0029583543,0.033524357,0.005244355,-0.016893905,-0.0039216033,-0.036071066,0.026498951,-0.006635715,0.0013110888,-0.0070254053,0.019726021,-0.0042728735,0.045928586,0.0036746163,0.005527018,0.033721946,-0.021076215,0.016937813,-0.023535108,-0.015565664,-0.009374525,-0.024303513,0.02211905,-0.009423923,0.011877326,-0.06384337,-0.0072175064,0.006465568,-0.016970744,0.011493124,0.008693939,-0.004379901,-0.02434742,0.033304814,-0.025906183,0.010900356,-0.040549763,-0.003433118,-0.020757878,0.0044128327,-0.06441419,0.0069156336,-0.0031394782,0.008853109,0.017322015,-0.025159733,0.0022558137,-0.035851523,0.037300512,0.032360774,0.015686413,0.005455666,-0.022525206,-0.026367225,0.014006902,-0.021262828,0.00015882631,0.03618084,0.017881852,-0.009500763,-0.03699315,-0.009873988,-0.014588693,-0.018189214,-0.0033206018,0.04658722,0.034622077,0.019133253,0.013029932,-0.014413059,-0.0024890793,-0.01522537,-0.04494064,0.008918972,-0.0064491024,-0.03848605,0.023732698,0.009286708,0.012843319,-0.033524357,0.010582017,0.021679962,-0.013633678,-0.014610648,-0.026081817,-0.004728427,-0.030297061,-0.015982797,0.017794035,-0.018628301,0.006465568,-0.032755952,-0.013534883,-0.01616941,-0.02109817,-0.038068917,0.004322271,0.01029661,-0.0026852966,-0.021317715,-0.0012411092,-0.016970744,0.005444689,0.011416283,-0.040418036,0.04153771,-0.051856276,0.0061362525,-0.022634977,0.0021638798,0.01804651,0.00475587,0.024764555,0.04843139,0.03209732,0.0003137077,0.017168334,-0.009407457,-0.014731397,-0.010669835,-0.03299745,0.005186725,-0.020395631,0.008946415,-0.024127876,0.0065039885,0.0012809016,-0.0122395735,-0.0043195267,-0.0044457642,0.013567815,0.04522605,-0.004936994,0.008479884,-0.003946302,-0.030845921,-0.021800712,0.008929949,0.024632828,-0.0013694052,-0.013611723,-0.020637129,-0.028870026,0.022678887,0.036927287,-0.03319504,-0.033260904,0.018068464,-0.017870875,-0.02152628,0.018705143,0.0036334519,0.020461494,0.009599558,-0.005450178,-0.017925762,-0.05813523,-0.018079441,-0.05238318,-0.02544514,-0.033963446,-0.023930287,0.02959452,-0.0314826,0.01307384,0.0232497,-0.014061788,-0.08992519,-0.0049918797,0.028365074,-0.038354322,-0.028650481,0.015829116,-0.024391329,0.035017256,-0.0025357322,0.0040615625,0.02959452,-0.018375827,0.0039243475,-0.029331068,0.029023707,0.00090699084,0.017881852,0.014621625,0.0073766755,-0.03178996,0.0053568715,-0.005159282,0.045006502,0.051548913,0.011218694,0.016301136,0.009456854,0.0016822553,0.065951,0.0018057488,0.02196537,0.019583318,-0.0040533296,-0.009627,0.01789283,0.020450516,0.00039586512,0.0030544049,-0.016641429,-0.021603122,0.005389803,-0.01730006,-0.01844169,-0.015686413,0.021153057,0.06533627,0.022920385,0.016037684,0.0124920495,0.017552536,0.017168334,0.008699427,-0.01064788,-0.020011429,0.016817065,0.018891754,-0.028935889,0.018935664,0.030033609,0.0035291684,-0.028826118,-0.022173936,0.032624226,-0.010378939,0.01597182,-0.010483222,-0.015401006,-0.015521755,-0.037300512,-0.025774457,0.017047586,-0.026784359,0.051724546,0.0209884,0.0044292985,0.0020335256,0.01002218,-0.027684487,0.0063503077,-0.00326846,0.032426637,0.0007471354,-0.0023751908,0.042218294,0.015851071,-0.018244099,0.0071296887,-0.0059276856,0.016465794,0.040066764,0.026081817,-0.026433088,0.014819215,-0.018233122,0.0142593775,-0.0069924737,-0.034182988,-0.00036910822,0.08909092,-0.02313993,0.028826118,-0.0027868357,0.0042811064,0.0043195267,-0.02097742,0.024149831,0.008578679,0.013458042,-0.010055112,-0.02869439,0.022503251,-0.0135019515,-0.03589543,-0.0008342669,-0.016652407,-0.03354631,0.025884228,-0.022294685,-0.005609347,-0.004753126,0.050012104,0.066170536,-0.025511004,0.0024945678,-0.014753351,0.010752164,-0.008880552,-0.03205341,0.008117637,-0.0031038022,-0.0048491764,0.050012104,0.018661233,-0.009105584,-0.009594069,0.022283709,0.034622077,0.0068442817,-0.048563115,0.031372827,0.0077169687,-0.04632377,0.026718495,0.003781644,0.0194955,0.020681037,-0.019210093,0.04364533,-0.015082668,-0.027904032,-0.0037953656,-0.01479726,-0.038969047,-0.00001573684,0.034709893,0.040505853,-0.014753351,-0.033304814,-0.03488553,0.0105545735,-0.006542409,0.04483087,0.035873476,0.014204492,0.03185582,0.009363548,-0.047684938,-0.008381089,0.0053404057,-0.007239461,-0.016586544,0.014237423,0.03635647,0.001982756,0.03640038,0.042723246,0.010148418,-0.0031422223,0.027684487,-0.017750125,-0.013425111,0.004909551,-0.00060717616,0.01088389,0.023776606,0.0022036722,-0.00436618,0.01980286,0.011493124,0.008946415,0.0016822553,0.01784892,-0.009802636,-0.02634527,-0.04588468,0.026718495,-0.052997902,0.0069869854,-0.043996602,-0.0009076769,0.014588693,-0.00086719845,0.025335368,-0.023030156,-0.0029967744,-0.020692015,-0.009253777,-0.001358428,-0.0053925477,0.00935806,0.01088389,-0.015181462,-0.019210093,0.02584032,-0.006602783,0.039759405,-0.030933738,0.012832342,-0.0053925477,-0.0013076585,0.019583318,0.008726871,0.021548236,0.03394149,-0.040857125,-0.021658007,-0.0018126095,-0.017278107,0.015192439,0.050978098,-0.009791659,-0.012118825,-0.008715894,0.011405307,0.014972895,-0.027574716,-0.050056014,-0.009028744,-0.013381202,0.0136227,0.0023203047,0.030099472,0.014467944,-0.032470547,-0.010894867,-0.0100606,0.018342894,-0.0007903581,-0.015609573,0.002799185,0.007404119,0.0079035815,0.035610024,-0.020560289,0.05532507,0.021164034,0.0063667735,0.040549763,0.0046241437,0.011800486,0.0065863174,0.0046570753,-0.024018105,-0.034622077,-0.0032931587,0.022810614,0.026235498,-0.0013337294,-0.009863011,0.013765404,-0.032514453,0.019122275,0.0027470433,0.026762404,-0.010269167,0.019045435,0.00561758,0.032470547,-0.005258077,-0.008331692,-0.04158162,-0.025884228,-0.002532988,-0.030121425,0.018573416,0.02141651,-0.01479726,0.003918859,0.014808238,0.01033503,0.026081817,-0.0057959594,-0.0029144455,-0.011602896,0.014885078,-0.0015985542,-0.0337439,-0.022832567,0.028035758,0.03440253,-0.050714646,0.006608272,-0.012294459,-0.027355172,-0.014720419,0.024018105,0.026674585,-0.02924325,0.037981097,0.0035209355,-0.031306963,0.006443614,0.038178686,-0.039276406,0.029923836,-0.019440614,0.0023916566,-0.009154981,0.010044134,0.00084387197,-0.0052992413,-0.013743449,0.0025686638,0.03534657,0.019594295,-0.025203642,0.011202228,-0.012052962,0.023074066,0.008595144,0.019429637,-0.0072175064,0.016015729,-0.0247426,-0.0010888006,-0.00052450417,-0.03824455,0.012195664,-0.0054117576,0.022766704,-0.011602896,0.017431788,-0.026850222,0.02869439,0.025159733,-0.03719074,0.01687195,0.0022777682,-0.023886379,0.018540485,0.050363377,-0.00078418344,0.008430487,-0.0065478976,0.0039847223,0.0055736713,0.050056014,0.017574491,-0.0029418885,-0.019528432,-0.02204221,0.003166921,0.041845072,-0.0010263678,0.021175012,-0.028826118,-0.0063393307,-0.0012465979,0.015653482,0.0038145755,-0.008600633,0.014402081,0.00042193598,0.014061788,-0.028145531,0.0049260166,0.0027552762,-0.024435239,-0.014160583,0.024523055,0.004467719,-0.017826967,-0.015565664,0.01088389,-0.03295354,0.0018427968,-0.038398232,-0.01507169,0.011427261,-0.005752051,-0.0050056013,-0.0016314858,0.006608272,-0.002018432,-0.012579867,-0.0008932693,0.0013748938,-0.00892446,-0.016312113,-0.026476996,-0.027662534,0.021822665,0.03664188,0.008666496,0.029528657,-0.00014167443,-0.005252588,0.023271656,-0.019089343,0.019341819,0.016740223,0.021284783,0.0018331917,0.012711593,-0.0011066386,0.016037684,0.0028842583,0.018606348,0.0063557965,0.022678887,0.003754201,0.0066247378,-0.021372601,0.017574491,-0.016301136,0.027486898,0.004478696,-0.03855191,-0.015587619,0.005790471,-0.031504553,-0.005156538,0.03934227,0.022788659,0.006602783,0.030867875,0.018123351,0.0024232161,-0.017947715,0.008737848,0.008595144,0.027179537,0.024149831,0.029550612,0.01479726,0.03859582,0.0018661233,-0.044874776,-0.040571716,-0.020187063,0.009594069,-0.013040909,-0.012667684,0.018002601,-0.01182244,-0.012316414,-0.020373676,0.02207514,0.0006836735,-0.00082946435,0.004467719,-0.03189973,0.008946415,-0.04109862,-0.015159507,0.018101396,0.004591212,0.000945411,-0.024676736,-0.019758953,-0.0020678292,0.0017412577,0.004517116,0.013117749,0.01976993,-0.00681135,0.01769524,-0.03264618,0.026367225,0.01730006,0.03962768,-0.0049946243,0.0021062496,-0.015752276,0.010340518,-0.015686413,-0.024325466,-0.026872177,0.008595144,-0.017003676,-0.026762404,-0.004643354,-0.009133027,0.025862273,0.027355172,-0.03354631,-0.011438238,-0.0000497833,0.029616475,0.00083289476,0.0053541274,-0.0022077886,0.018858822,-0.0095446715,0.052251454,0.0015903213,0.019901656,-0.007974933,-0.008935438,-0.04118644,0.023754653,-0.015686413,-0.013886153,-0.016290158,0.038310412,-0.026476996,0.018233122,-0.0017042097,0.0002231458,-0.010560063,0.013216544,-0.033765856,-0.007887116,-0.020450516,-0.022448367,-0.012305437,0.011339444,0.009665421,-0.055193342,-0.036949243,-0.03205341,-0.027421035,0.005450178,0.032031458,0.03635647,0.024391329,-0.021877551,-0.019166185,-0.051944092,0.018364849,-0.018540485,0.006959542,-0.020757878,-0.0065094773,0.033063315,0.018068464,-0.025028007,0.018298985,0.0015711111,0.030077517,-0.027399082,0.018913709,0.032316864,0.030933738,0.047816664,0.01851853,0.0054309675,0.012689639,0.010625926,0.02133967,0.021471396,-0.020757878,0.0072833695,-0.05738878,0.02529146,-0.00086994277,-0.001258261,0.026981948,0.008935438,0.00014236051,0.0032108298,0.015115599,-0.022678887,-0.003479771,0.03558807,-0.0021048773,0.017014654,0.008167034,0.028979797,-0.009445877,-0.0012877623,-0.030933738,-0.019012503,0.03784937,0.0155437095,-0.009950828,-0.019155206,0.046631128,-0.014138629,-0.016926836,-0.018485598,0.007415096,-0.020900581,0.027596671,-0.010104509,0.016158432,0.008057262,0.038376275,-0.026081817,-0.011059525,-0.030560514,0.032272957,0.0018002602,-0.052866176,-0.03969354,0.0018414246,0.02419374,-0.019649182,-0.028255302,-0.0039133704,-0.0050879302,0.024874326,0.019155206,-0.023359474,0.000835639,-0.039869174,-0.00017263356,0.018024556,0.010115487,0.05418344,-0.019166185,-0.01162485,-0.018178236,-0.0064326366,-0.038178686,-0.011405307,-0.001974523,-0.02603791,-0.028255302,-0.030516604,-0.004322271,0.030604422,0.005186725,-0.021109147,0.0072065294,-0.020571265,-0.0018167259,-0.02540123,-0.010669835,-0.01327143,0.005817914,-0.00963249,-0.020154132,-0.016828042,0.013205566,0.03293159,-0.0039682565,0.02638918,-0.008057262,-0.021658007,0.00278958,-0.01804651,-0.009830079,0.0058728,0.001974523,0.029901883,0.0011066386,0.028211394,-0.003155944,0.012953091,-0.02270084,-0.020055337,0.017673286,-0.028518755,0.020165108,0.022097096,0.031372827,-0.01354586,0.03934227,0.007096757,-0.0034934927,0.0030324503,0.0025467095,-0.017365923,0.03550025,-0.007766366,0.023271656,0.014654556,0.039078817,0.023579016,-0.010214281,0.051856276,0.009583092,-0.02579641,0.024457192,0.017958693,0.0075852424,0.0017467464,-0.0046762857,-0.0232497,-0.0074480274,-0.019539408,0.011504102,-0.024369376,0.016773155,0.01209687,-0.009423923,-0.0232497,0.012305437,0.0003203969,0.016356021,0.00646008,0.017201265,-0.023820516,-0.062350474,0.0039517907,0.034775756,-0.01754156,0.038969047,-0.00798591,-0.028387029,0.034622077,0.00767306,0.003460561,-0.005444689,0.03479771,0.0055462285,0.006904656,0.032185137,0.018573416,-0.01115832,0.0062844446,-0.013743449,-0.014413059,0.016839018,-0.048607025,-0.0152912345,-0.008897018,-0.015422961,-0.033524357,-0.018375827,-0.0033123689,-0.01742081,-0.011306512,-0.005164771,-0.018540485,-0.0023532363,-0.024018105,-0.00087062886]},{"id":"guide-voice-0","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Installation\nAdd the voice package alongside the core library.\n\n```bash\npnpm add /voice /core\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.04644615,-0.022053836,0.01803613,-0.05617322,-0.0039990456,-0.0024193295,-0.04112238,0.004885304,-0.04216723,-0.019093422,-0.006648491,0.039729245,0.019155616,-0.037614662,0.01583448,0.05482984,-0.049381685,-0.014615485,0.02093435,0.004014594,-0.034355722,-0.016618118,-0.0076311496,0.035873245,-0.033335745,0.016543487,-0.024093784,0.09786778,0.0048479876,-0.022613578,0.0055072396,-0.031096779,0.022750404,0.008700878,-0.036345914,-0.032763567,0.0467198,-0.008744414,-0.048212446,0.0056813816,-0.009018065,-0.054133274,0.0066858074,0.0021767744,-0.006474349,0.030325579,-0.015324492,0.015660338,-0.049108032,0.0020897035,0.0060763103,-0.014540854,0.001997968,-0.008190892,0.0045898845,-0.010367666,-0.01727737,-0.01881977,-0.03813709,0.0048044524,0.01602106,-0.038759023,-0.012326763,0.018521242,0.003426865,0.02384501,-0.035748858,-0.006253562,-0.0023369228,-0.00055274524,0.0044903746,0.0027676134,-0.021158248,-0.03502741,-0.021531409,0.05637224,-0.030897759,0.049481194,0.015859356,-0.05047629,-0.0364703,-0.004717381,-0.034405477,-0.018770015,-0.027290532,-0.005852414,-0.078612655,0.012519563,-0.00347662,-0.019280003,0.020250222,-0.030425088,-0.08617539,0.0100691365,0.014528415,0.045973476,0.028011978,0.019404389,0.035574716,0.0279871,0.09055382,-0.026096417,-0.00868222,-0.025897397,0.033733785,0.006160272,0.032987464,0.00010572905,-0.05502886,0.019479021,-0.06746757,0.016804699,0.03224114,0.013956234,0.0245167,-0.013433808,0.08304084,-0.033733785,-0.0008870356,-0.0775678,-0.041371156,-0.025573991,-0.00086371304,-0.00013731171,0.033609398,-0.018583436,0.009751949,0.006934582,-0.065328114,0.016269835,0.029454868,-0.016730066,0.022501629,-0.0010448517,-0.020884596,-0.010579124,-0.016531048,0.005740465,-0.0046085427,0.032066997,-0.00002725827,-0.057367336,0.024578894,-0.021108493,0.0034050972,0.018061008,-0.028584158,-0.010143769,-0.050028495,0.038808778,-0.0343806,0.004496594,-0.052789893,-0.0080540655,-0.029703643,-0.011630195,-0.00063009845,0.032863077,-0.06303939,-0.03452986,0.018123202,-0.000936013,0.0677661,-0.050948963,0.023335023,-0.018944157,-0.03719175,0.003126781,-0.01592155,0.046595413,-0.012364079,-0.0007187243,-0.014926454,-0.0046831747,0.017526144,-0.0058368654,0.022576261,-0.023534043,-0.03545033,-0.0018300454,0.016468855,0.030524598,-0.015809603,-0.020337293,-0.0020912583,-0.022053836,-0.0025266132,0.03418158,0.019727796,0.0044934843,-0.0033677812,-0.01699128,0.0029790713,0.05731758,0.04662029,0.030997269,0.032216262,-0.015685216,0.008016749,-0.017973937,-0.026892494,0.014105499,-0.0015719421,-0.032788444,-0.038286354,-0.056421995,-0.036122017,-0.0035823488,0.017787358,-0.022576261,0.0083028395,0.018608313,-0.0056222975,0.04104775,-0.10717194,0.026320314,0.02674323,-0.00011049074,-0.012556879,-0.054979105,-0.013645266,-0.023111125,0.061148707,0.000845055,0.043560367,0.012314324,0.02704176,-0.021058738,-0.0012858518,0.005955033,0.034679126,-0.024454506,-0.006517885,0.023782816,0.013097963,0.00031330006,-0.013732337,0.029579256,0.016754944,-0.001718097,-0.056322485,-0.02741492,0.06428326,0.03619665,0.03870927,0.027365165,-0.021854816,-0.05463082,0.04796367,0.014142815,0.021407023,0.04642127,0.06736806,0.024106223,0.009515614,-0.026220804,0.005426388,0.03709224,-0.032290895,-0.045724705,-0.0039461814,-0.02296186,-0.0048231105,0.0013363841,-0.026569087,-0.055576164,0.0028158133,0.016916648,0.017961498,-0.001949768,0.0047360393,-0.029479746,0.067616835,-0.011561782,-0.0037285038,0.005811988,0.026967127,0.05338695,0.0067790975,0.07045286,-0.057566356,-0.01814808,-0.042515516,0.008439666,-0.0037782586,-0.0013394938,-0.008725756,-0.004226052,-0.014515976,0.015535951,-0.009490737,0.033360623,0.01978999,-0.015436441,0.03627128,0.033733785,0.04766514,-0.031022146,0.003467291,0.039132185,0.018508803,0.014043305,0.02617105,0.019130738,0.010056698,0.052590873,-0.021319952,0.0027334068,0.03938096,-0.015088157,0.03293771,-0.027962223,0.0044344007,-0.009154892,-0.008066504,-0.03348501,-0.005096762,0.0214319,0.017140545,-0.00040659038,-0.0017429744,0.010635098,0.056720525,-0.02268821,-0.000027015327,-0.018857086,0.011978479,-0.048311956,0.00868844,0.005656504,0.02915634,-0.013272105,0.015374247,0.037415642,0.0034393037,-0.005239807,-0.03908243,-0.005473033,-0.00255771,0.0048044524,0.015710093,-0.023136003,-0.02423061,0.0048044524,0.007444569,0.030698739,-0.020897035,-0.0110020405,0.015523512,0.010044259,-0.055377144,0.011505808,0.01437915,-0.008831485,-0.0037222845,-0.00078130653,0.028783178,-0.045699827,-0.009403666,0.012724802,-0.07428399,0.008029188,0.003349123,0.08508079,-0.035798613,0.015623022,-0.0007474888,0.024641087,-0.052590873,-0.008489421,0.039007798,-0.033858173,-0.012183717,0.043013062,-0.09637514,-0.020188028,0.002240523,-0.01689177,-0.02895732,-0.0077368785,0.034803513,-0.0015579486,0.017924184,-0.037316136,-0.026668597,-0.02607154,0.011381421,0.014068183,0.032290895,0.02962901,0.02781296,-0.0016185873,-0.019068545,0.017252494,0.034156702,-0.0038591102,0.053237684,0.040376056,0.036345914,0.0011140421,0.033733785,0.049083155,0.016170325,0.020287538,0.050650433,0.015672777,0.021195564,0.031917732,-0.019404389,-0.015162789,0.03301234,-0.024280366,0.014229886,0.04537642,0.017625654,0.021805061,0.04199309,-0.0528894,0.00801053,0.028832933,-0.00395862,0.016133009,-0.01352088,-0.04094824,0.008377472,0.01583448,-0.0029479747,0.0007505985,0.031644084,0.018695382,-0.030922636,-0.03552496,0.03948047,0.01949146,0.022265293,-0.05378499,-0.02828563,-0.0032962586,0.015573267,0.034803513,-0.01563546,-0.004266478,0.010006944,0.03863464,0.037490275,-0.013272105,-0.007911021,-0.010311692,-0.026220804,0.013968673,-0.058063906,-0.010100233,-0.014043305,0.013769654,0.04323696,-0.008576492,0.043983284,0.039256573,-0.008389911,-0.013981111,0.010703512,0.012998453,-0.041445788,-0.008178453,-0.024367435,0.009018065,0.022476751,0.009807924,-0.0045805555,-0.0060607623,0.02201652,-0.030027049,-0.022874791,-0.009235743,-0.03696785,-0.05453131,-0.015001086,-0.012494686,-0.017140545,-0.015946427,0.031967487,0.04982948,-0.03656981,0.046471026,0.012532001,0.056222975,0.03734101,-0.01650617,-0.014677679,-0.03448011,0.012283227,0.00047694685,0.025163513,-0.013272105,0.025039125,0.0035668004,-0.0279871,0.010883872,-0.014341834,-0.026693475,0.018011253,-0.015573267,-0.0036414328,0.01853368,0.026096417,0.036321037,0.059606306,-0.024976933,-0.008613808,0.02838514,0.015187667,-0.015585706,-0.014826944,-0.00078519364,-0.000016520164,0.040201914,-0.022837475,0.031967487,0.039953142,-0.0060389945,-0.0013783647,0.025424726,-0.023223074,0.012438712,0.001997968,-0.029106585,0.00005174698,-0.025822764,0.024753036,-0.016941525,0.0141676925,-0.017787358,-0.043784264,-0.060999442,-0.019329758,0.03253967,-0.005065665,0.003252723,-0.017638093,0.0000723486,-0.012320544,0.07124894,-0.017078351,0.0027007551,0.004188736,-0.007270427,0.022439435,0.022414558,0.00723933,0.024155978,-0.010212182,-0.050401658,-0.02597203,0.020125834,0.0428638,0.035649348,0.026992004,-0.028534403,-0.001128813,-0.0102868145,0.04746612,-0.03542545,0.013533318,-0.011804337,0.00065419846,-0.0237455,-0.01254444,-0.0030972392,0.035898123,0.018297344,-0.02424305,-0.038460497,0.010031821,0.012444931,0.004471717,-0.0066360524,-0.0068101943,0.015274738,0.004083007,-0.037390765,-0.008980749,-0.041818947,0.03841074,0.015001086,-0.029106585,0.026419822,-0.016817138,-0.02923097,-0.006965678,0.018658068,0.017488828,0.02441719,-0.0024535358,-0.008327717,0.011835434,-0.01457817,-0.011748363,0.0022078713,-0.0019917486,0.0031127876,-0.043784264,-0.008327717,0.023198197,0.0047764652,0.0099198725,-0.04152042,0.025312778,-0.002385123,0.033659153,0.020635823,0.007948336,-0.0030412648,-0.019578531,-0.052640628,-0.01930488,-0.0077057816,0.00974573,-0.0063188653,0.019939255,0.001371368,-0.011543124,-0.04025167,-0.019267565,-0.006803975,0.015374247,0.024342557,-0.004042581,-0.0068288525,0.02771345,-0.01786199,-0.019864623,0.0065987366,0.037490275,-0.01360795,-0.014292079,-0.03159433,-0.0017802906,0.00646813,0.018521242,-0.041545298,0.049257297,-0.010529369,0.033161603,-0.00444062,0.04015216,-0.0018595874,-0.017488828,0.030798249,-0.0028251424,-0.03214163,-0.028136365,0.031196289,-0.008047846,0.019852184,0.0045525683,-0.010672415,-0.010747046,-0.013309421,0.013371615,-0.011269473,-0.058262926,0.03174359,-0.004412633,0.0026774327,-0.006505446,0.019043667,0.009130014,0.0544318,-0.030076804,0.015274738,-0.052491363,0.00482622,0.02684274,0.0052926717,0.019454144,0.012973576,-0.022526506,-0.044256937,0.03918194,-0.032564547,-0.0058928397,0.005718698,-0.05318793,-0.016083254,0.014254764,-0.030425088,-0.033062097,-0.025362533,0.009584027,0.0024022262,-0.00520871,0.0070216525,0.006822633,-0.001529184,-0.00041008877,0.027962223,0.031196289,-0.016804699,0.006166491,-0.04229162,-0.026419822,-0.010224621,-0.02414354,-0.005706259,-0.024292804,0.002200097,-0.025549114,-0.0025981357,0.038012702,-0.018869525,-0.06264135,0.017426634,-0.0364703,-0.005933265,0.01409306,-0.03639567,-0.021693112,-0.04577446,0.024665965,-0.018284906,-0.016568363,0.022078713,-0.01959097,0.0035512522,-0.012737241,0.009901214,-0.026195927,-0.002559265,-0.024777913,0.0071771364,-0.023322584,-0.018260028,-0.024466945,0.021295074,-0.03793807,0.017202739,-0.031171411,0.018931719,-0.041843824,-0.04403304,-0.0029837359,-0.020287538,0.015187667,0.010548027,-0.012382737,-0.02761394,0.048038304,-0.00087692915,-0.039455593,-0.013060647,-0.028882688,0.008253085,-0.040898483,-0.005532117,0.0018689164,-0.030300701,0.009148672,0.01215884,0.018993912,0.011058015,0.005927046,-0.026320314,0.0038497811,0.044853993,-0.013831847,0.015436441,0.005423278,0.019528776,0.053138174,0.0151503505,-0.021108493,0.0043006847,0.0022389682,0.009789266,-0.006922143,0.004166968,-0.05771562,-0.02471572,0.007313962,-0.03378354,-0.015884234,-0.003146994,-0.031793345,-0.04112238,0.028808055,-0.017065912,0.018459048,-0.019864623,-0.013757215,-0.008974531,-0.055924445,-0.013433808,-0.010324131,-0.019168055,-0.018658068,0.04082385,-0.0025903617,-0.05721807,-0.006835072,-0.03686834,0.0071211625,0.000087119566,0.019367073,0.035002533,0.012077989,0.0013387164,-0.0027691682,0.010977163,-0.0012244356,0.0010728389,-0.0039461814,-0.004005265,-0.04112238,0.0033553424,0.001345713,0.021170687,-0.029604133,-0.017327124,0.0007113388,-0.0077368785,0.040027775,-0.009329034,-0.012395176,-0.0014840937,-0.0031703166,0.0028811165,0.023596235,-0.02664372,-0.000719113,0.010317911,0.025499359,0.011089112,-0.016904209,-0.0015968196,-0.0554269,-0.051496264,-0.025698379,-0.0019482132,-0.024292804,-0.004431291,-0.031718712,0.015971305,0.02363355,0.009534272,0.047341734,-0.018906841,0.023235513,0.020051204,-0.0114684915,0.009235743,-0.0021363487,0.012196156,0.03853513,0.0066671493,0.06517885,0.006679588,0.008501859,0.051048473,0.026817862,0.015958866,-0.0037813683,0.0036445425,-0.01854612,-0.009621344,0.0063468525,-0.009776827,-0.039057553,-0.012494686,-0.0062411237,0.007519201,-0.0026992003,-0.025350094,0.017302247,0.0056720525,0.000027501213,-0.0030770262,-0.03656981,0.00801053,0.005752904,-0.021158248,-0.012028234,0.046893943,0.010149988,-0.019043667,-0.011381421,-0.0006219356,0.014777189,0.0708509,-0.03204212,-0.014466221,-0.012637731,0.0052740136,-0.016108131,-0.018608313,0.012998453,0.021792622,-0.032962587,0.052839644,0.019827306,-0.04652078,-0.0067977556,0.022377241,0.033111848,0.011953602,-0.0038280135,-0.023011615,-0.032962587,0.016282273,-0.01726493,-0.06448228,0.024267927,-0.021494092,0.01901879,0.02036217,-0.018969035,-0.024280366,0.0034983875,0.021083616,0.029206095,-0.021008983,-0.008731975,-0.019541215,-0.036644444,-0.035649348,-0.048685115,-0.01177946,-0.037714172,0.041396033,-0.02731541,0.006611175,-0.03505229,0.043809142,0.022713087,-0.024442067,-0.0058866204,-0.00053330977,0.021419462,-0.0022591809,-0.012022015,0.026817862,-0.019939255,0.00092046463,0.00024566456,0.021357268,-0.005463704,-0.007799072,0.0032744908,0.04064971,0.016244957,0.009515614,0.019615848,0.02151897,0.058611207,0.022053836,0.0011948937,-0.026494455,0.0031003489,0.00096166786,0.005351756,0.005743575,0.018172957,-0.0071025044,-0.007257988,0.0035668004,-0.0033926584,0.0035543619,-0.0202751,-0.018160518,0.014826944,-0.007991872,0.023807693,0.00022370245,0.02761394,0.014540854,-0.017414195,-0.0007156146,-0.035475206,0.014814505,-0.008464543,0.009335252,0.03967949,0.016070815,-0.020573629,0.004353549,-0.010193524,-0.017115667,0.008868801,-0.0114684915,-0.038112212,0.03281332,-0.0063468525,-0.015187667,-0.043411102,0.021506531,0.015038402,0.0041078846,0.027539307,0.011406299,0.026370069,0.004086117,-0.02414354,-0.018459048,0.024404751,-0.057068806,0.0153991245,0.019802429,-0.0023789036,-0.00008124033,0.026693475,0.0013954679,0.019031228,-0.0011358098,0.02771345,0.004042581,-0.010187305,-0.018210273,0.010199743,0.0024970714,0.02103386,-0.038933165,0.026792984,0.0022156455,-0.007780414,0.002952639,-0.068412915,-0.035848368,0.023820132,0.01187275,-0.019964132,-0.0019808647,-0.0035885682,0.038286354,0.008924776,-0.044455953,0.030400211,0.013408931,0.019155616,-0.008756853,0.0064059366,0.014777189,0.014242325,0.010181085,0.023297707,0.013782092,0.021531409,0.0073885946,0.032066997,-0.002327594,-0.0013853615,0.02617105,-0.02838514,0.04323696,0.018396854,-0.010666195,0.018421732,0.0057093687,-0.0038870974,-0.031619206,-0.016842015,-0.033111848,-0.025922274,-0.002066381,0.018944157,-0.008016749,0.0070029944,0.024641087,0.02036217,-0.013732337,-0.010019382,0.016095692,-0.0019917486,0.016195202,0.008607589,0.011910066,0.009882556,-0.078513145,-0.0056409556,-0.04288868,0.020747771,-0.022451874,-0.0028873358,0.008234427,0.00096555497,-0.021394584,0.028335385,-0.0015260744,0.05318793,-0.0059425943,-0.005445046,-0.010747046,0.00089092273,0.024056468,-0.022041397,-0.036619566,0.037913192,0.02307381,-0.026220804,0.0024892972,0.0472671,-0.019926816,-0.0017538583,0.00054147263,0.016070815,0.00974573,0.0007844162,0.0032838199,-0.012332982,0.012034453,0.048809502,0.0020197358,0.015946427,-0.0048977425,0.004269588,-0.028907565,-0.003049039,0.00453702,-0.011449833,0.020610945,-0.015672777,-0.005000362,0.02238968,-0.0118851885,-0.012152621,0.014528415,-0.003330465,0.050501168,-0.015623022,-0.000040668754,-0.01863319,0.043983284,-0.008949653,-0.061795518,-0.02704176,-0.07234354,0.05562592,0.00801053,0.03156945,-0.0237455,0.0031407746,-0.008968311,-0.0015369583,0.025213268,-0.0012601969,0.014354273,-0.009447201,0.013545757,0.021494092,0.074831285,0.01901879,0.010821679,-0.0030630326,0.017973937,0.010597782,-0.014080621,0.033086974,0.034305967,-0.032465037,-0.017973937,0.025673501,0.024740597,-0.00878173,0.011437396,-0.008116259,0.0012096647,0.0124013955,0.0031298907,-0.022215538,0.004748478,0.0017927293,0.017240055,0.056123465,-0.025549114,-0.014404028,0.012749679,0.0022374133,0.0011544679,0.015050841,0.010143769,0.011648853,0.0013006227,0.032091875,-0.044555463,0.013931356,-0.024429629,-0.0025064005,0.0009220195,-0.011456053,-0.033310868,-0.01824759,0.011922505,-0.002952639,0.0011311453,0.00066469365,-0.013645266,-0.014304518,-0.00012778833,-0.0115182465,0.003974168,0.025138635,0.0053704134,-0.00011019921,-0.0094534205,-0.000072542956,0.028310508,-0.03271381,0.015722532,-0.0055383365,-0.029852908,-0.013670144,0.0010969389,0.0070714075,-0.0104858335,0.021382146,0.0060918587,0.02036217,0.0133342985,0.035574716,-0.009975847,0.015884234,-0.00077664206,0.01080924,0.0021876583,0.025138635,0.008159795,-0.047739774,0.04577446,-0.010610221,0.02654421,-0.0035077166,0.05368548,-0.01631959,-0.003358452,-0.013234789,0.012693705,-0.023446972,-0.016332028,0.025200829,-0.025051564,0.014802067,0.022140907,0.003436194,0.014976208,0.008246866,-0.025039125,0.034803513,-0.0027054197,-0.019429266,-0.022849914,0.012488467,0.006188259,0.01786199,-0.0016372454,-0.015672777,0.032962587,-0.0006028888,0.01427964,0.0014615486,0.03271381,-0.03726638,0.022464313,-0.03328599,0.0005686823,-0.008402349,-0.019615848,0.022327486,-0.048660237,-0.0072082332,0.0014250099,0.0068288525,0.010852776,-0.031196289,-0.028011978,-0.0103863245,0.05866096,-0.040027775,0.036122017,0.008601369,0.00791724,-0.033733785,-0.027638817,-0.02597203,0.022053836,-0.020859718,0.0064992267,-0.022924544,-0.04206772,-0.028036855,0.0004547904,0.025947152,0.0040705684,0.0002652944,0.030076804,0.006343743,0.03552496,0.013794531,0.02587252,-0.00646813,-0.017787358,-0.071199186,-0.005762233,-0.021655796,0.030872881,-0.023546482,-0.01863319,-0.015361808,-0.020100957,-0.024591332,-0.012594195,0.013247227,0.020610945,-0.011412518,-0.009235743,-0.029703643,0.0020197358,-0.010933627,-0.0018098325,-0.01496377,0.0031796456,-0.030648984,-0.047938794,-0.026270559,0.050426535,-0.040798973,-0.004760917,0.017152984,-0.01437915,0.025138635,0.00034089843,0.0063872784,0.01051693,0.015299615,0.00024022261,-0.011829214,-0.042142354,-0.009105137,-0.017302247,0.010174866,-0.032489914,-0.006290878,0.01390648,0.023534043,-0.03139531,-0.009117575,0.01196604,-0.03388305,-0.0191183,-0.014155254,-0.017414195,0.0099198725,0.011120208,0.011704828,-0.013744776,-0.019665603,0.010983382,-0.0008668227,-0.029106585,-0.0183471,0.010249498,-0.036445424,0.011953602,0.00052942266,0.035674226,0.02781296,0.018409293,0.004023923,0.005880401,-0.0053548655,0.012196156,0.019429266,0.00016627059,-0.037589785,0.009024285,0.054979105,0.0060700914,-0.012799434,0.021021422,0.021058738,0.0046769553,0.020772649,-0.008514298,0.007301524,-0.0008823711,-0.006841291,-0.0053424267,-0.021767745,0.006107407,-0.0056347363,0.017103229,-0.014702557,-0.0063375235,0.020921912,-0.027788082,0.016842015,0.010504492,0.011443615,-0.024081346,0.007656027,-0.028932443,-0.00704653,0.010678634,-0.021456778,-0.050451413,-0.028459772,0.006340633,-0.014018428,-0.023247952,-0.005351756,0.026121294,-0.014752312,0.008638685,0.012214814,0.029977294,-0.010970944,0.010498272,-0.0014856486,0.015374247,-0.014391589,-0.008271744,-0.0001718097,-0.024330119,0.012264569,0.027539307,0.02885781,0.018869525,-0.016866893,-0.0031392197,-0.03699273,0.031096779,0.0051713944,0.026992004,-0.019715358,0.007830169,0.020548752,0.012637731,-0.0016745615,-0.018745137,-0.018222712,-0.031818222,0.0008668227,-0.007152259,-0.0044872654,-0.024180856,0.015287177,0.010212182,0.024964495,0.011325447,-0.02828563,-0.006300207,-0.007985652,-0.0072268914,0.016543487,0.01921781,0.04353549,0.01013755,-0.005065665,-0.015971305,0.017998815,0.013732337,0.0041731875,-0.0047920137,0.007618711,0.002837581,-0.0016527937,-0.014802067,0.009720853,-0.00008371836,0.0017398647,0.020150712,0.035375696,0.008452104,0.011704828,0.01457817,0.00028570165,0.0046489686,-0.018658068,0.05244161,0.02518839,0.011953602,0.041619927,0.022377241,0.02654421,-0.02741492,-0.019155616,-0.02731541,0.006698246,0.019441705,0.0109025305,0.02818612,-0.011244595,-0.03318648,0.0061042975,0.016966403,-0.0039057555,-0.03967949,0.0418687,0.017041035,0.00049249525,0.022613578,0.016070815,-0.000520871,0.008601369,-0.013670144,-0.001940439,0.050998718,-0.019926816,0.0069097043,-0.037316136,-0.04759051,0.011729705,-0.0009297937,0.030723616,0.011847872,0.047217347,-0.007065188,-0.008868801,0.014789628,-0.007556517,-0.020424364,0.0105355885,-0.004459278,-0.020872157,-0.021183126,-0.0012897389,0.024404751,-0.037913192,0.00039240246,-0.017774919,0.025748132,0.043311592,-0.0079048015,-0.025822764,0.0073201815,0.0119846985,-0.01427964,-0.017513705,-0.0033677812]},{"id":"guide-voice-1","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Setup\nCreate a VoiceManager before login so it receives VoiceStatesSync from READY/GUILD_CREATE. This lets the manager see users already in voice when the bot starts.\n\n```javascript\nimport { Client, Events, VoiceChannel } from '/core';\nimport { getVoiceManager } from '/voice';\n\nconst client = new Client({ intents: 0 });\ngetVoiceManager(client); // Must be before login\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.019413743,0.013216229,-0.012946772,-0.014909959,-0.014820141,-0.021518074,-0.021761868,0.011047741,-0.00412526,0.01601345,-0.0033938764,0.0280492,0.02287819,-0.041137118,0.01760453,0.020658378,-0.09895491,0.013293217,0.0074806423,-0.02277554,-0.0040194015,0.034362197,-0.0014972512,0.0632326,-0.02436662,0.0029720475,-0.026086014,0.038339894,-0.034439184,-0.04632096,0.022056988,-0.020145126,-0.0057933275,-0.007358745,-0.0027523118,-0.0016825029,0.027253661,0.008738109,-0.049785405,0.01919561,-0.01730941,-0.025919206,0.027099686,0.007576877,0.009918587,0.028382814,-0.013832131,0.0066401926,-0.03759568,0.02305783,-0.023096323,-0.03300208,-0.00780784,0.031462323,0.02436662,-0.02505951,0.0051645944,-0.03410557,-0.04652626,0.03300208,-0.00018565274,-0.016950134,0.010893766,0.05348082,0.0075127203,0.015461705,-0.03577364,-0.00018154271,0.020299101,0.038237244,-0.0068968185,0.001213359,-0.005536702,-0.015679836,-0.04942613,0.024713065,-0.01798947,0.07134198,-0.008507146,-0.05281359,-0.03608159,-0.02902438,-0.033489667,-0.024212645,-0.025393123,0.050401308,-0.061487544,-0.006543958,0.025380293,-0.03292509,0.015602849,-0.030769434,-0.052556966,0.012420689,0.051196847,0.021505242,0.072265826,-0.008090128,0.025547098,0.025431618,0.089254454,-0.0357993,-0.032386176,-0.0083210915,0.038750496,-0.024700234,0.012985266,0.03092341,-0.04044423,-0.000007887986,-0.094233,0.0058510685,0.027920889,-0.00282128,-0.010592231,-0.045166142,0.0364152,-0.053942744,0.042214945,-0.071187995,-0.03549135,0.0134471925,0.012946772,-0.0060980706,0.058202732,-0.027510287,-0.020260608,0.0041573383,-0.045525417,-0.0011050949,0.040213265,-0.009200036,0.04721915,-0.0083852485,-0.050144684,0.0054276357,0.018656697,0.03210389,-0.056560326,-0.00073659624,0.0058318214,-0.043498073,0.0018573293,0.0024700235,-0.0025887128,-0.0092706075,-0.056868277,0.023186142,-0.04981107,0.02435379,-0.054866597,-0.0052929074,-0.038853146,-0.025790894,0.0126259895,0.004516614,-0.019721692,0.036928453,-0.04665457,-0.07590991,0.015756825,0.0017610946,0.07375426,-0.059793815,-0.03023052,-0.034259547,-0.041419405,0.007993894,-0.026432458,-0.0036665413,0.0040354407,0.0154103795,-0.009886509,0.014165744,0.024777222,-0.040906154,-0.0353887,0.04198398,-0.025790894,-0.030358832,0.04801469,0.0042407415,-0.006239215,-0.031359673,-0.016821822,0.0049657095,-0.005658599,-0.0021203707,-0.004211871,-0.06590151,-0.0079554,-0.016526703,-0.011336445,0.040906154,0.059383214,0.011856113,0.040906154,-0.02198,-0.015153754,-0.041830007,-0.024430776,-0.042830847,-0.013280385,-0.042599883,-0.021261448,-0.042009644,0.0023208596,0.046577584,0.02337861,0.021441087,0.024251139,0.0063354494,-0.017335074,0.022993673,-0.119279675,0.03659484,-0.012138401,0.0017594907,-0.017065616,-0.020363258,-0.014114419,-0.028074862,0.04413964,-0.032129552,0.0349781,0.016975798,0.035234723,-0.042574223,0.010412592,0.010252201,0.004648135,-0.018759346,-0.017014291,-0.030461483,0.01848989,-0.027433299,0.019862838,0.05579045,0.03857086,0.05291624,-0.03241184,-0.011560992,0.03551701,-0.008783018,0.034670148,0.042830847,-0.014409539,-0.034131233,0.04216362,0.008282598,0.043472413,0.033951595,0.058305383,0.012901862,0.037236404,0.02206982,-0.02346843,-0.007833503,0.013254723,-0.042394582,-0.018682359,-0.0002480048,0.0002528165,-0.00007252686,-0.027510287,-0.05181275,0.00012239849,-0.006252046,0.0046770056,0.024995353,-0.06533693,-0.039853986,0.047886375,-0.0028886443,-0.038314234,-0.024122827,0.027766913,-0.0033361355,-0.006149396,0.06672271,-0.055533826,-0.000723364,-0.032591477,0.021518074,0.010232954,0.014730321,-0.015063935,-0.016629353,-0.030615458,0.053532142,-0.01938808,0.05011902,0.01113756,-0.017142603,0.050657935,0.05178709,0.037262067,0.0032094265,0.0036280474,0.07108535,0.048938543,-0.0008011537,-0.013588336,0.040007964,0.009815937,0.030949073,-0.0044588735,-0.027689924,0.035157736,-0.032386176,-0.004718707,0.0032206539,0.04385735,-0.015602849,-0.02902438,-0.007679527,0.03587629,0.024546258,0.01079753,0.0031981992,-0.054712623,-0.003307265,0.019901332,-0.024944028,-0.018861996,-0.022698553,-0.0056297285,-0.043780364,-0.02267289,0.007474227,0.025508605,-0.0640538,0.011496836,0.026381133,0.017270917,-0.010682049,0.017514711,-0.009456661,-0.025021017,0.008776602,-0.007993894,-0.017168267,-0.0433441,0.016744833,-0.0049560857,0.052326,-0.022146808,-0.0033746294,-0.031051723,-0.017835494,-0.02387903,-0.0052191275,-0.0019214858,-0.06297597,-0.015063935,-0.016347064,0.019067297,-0.044319276,-0.023737887,0.005408389,-0.044627227,-0.022095483,0.0055014156,0.045602407,-0.044781204,0.0014627671,-0.01878501,0.01710411,-0.018733684,0.0002963226,0.0437547,-0.022429096,-0.010759037,0.049965046,-0.06056369,-0.04108579,-0.0045775627,-0.014768816,-0.022198133,0.05389142,0.027202336,-0.0059248484,0.018066457,-0.029742932,-0.026175832,-0.0026175831,0.0100469,0.009957082,0.0065215034,0.0060499534,0.0012350117,-0.0098415995,0.03271979,0.029640282,0.0055495333,0.002152449,0.04198398,0.03102606,-0.00029993142,-0.004089974,0.06297597,0.038262907,-0.026227158,-0.011663643,0.03928941,-0.0005304937,-0.005299323,0.012690146,-0.006527919,-0.019619044,0.07288173,-0.034182556,0.02715101,0.023429936,0.01511526,0.0138193,0.016526703,-0.028074862,0.009963497,0.03292509,-0.017270917,-0.019439405,0.029742932,-0.027176673,0.010842441,-0.0050876066,0.0017338281,0.013562674,0.027612938,-0.013857794,-0.06277067,-0.013870625,0.035850625,0.024867041,0.0044428343,-0.048271313,-0.02894739,-0.029896908,0.010335605,0.006236007,-0.022198133,-0.0101559665,0.014371045,0.03002522,0.030846423,0.024571922,-0.030564133,-0.0024315296,0.02017079,0.0052512055,-0.03331003,-0.021646386,0.022454757,0.009886509,-0.00082922215,-0.026920047,0.020324765,0.04054688,-0.036363877,0.0052479976,-0.025251979,0.0021428254,-0.008269766,0.020761028,0.020530066,0.027510287,0.012638821,0.013293217,-0.033438344,-0.006794168,0.008109376,-0.031641964,0.0000683166,0.012850537,0.00885359,0.00929627,0.013177735,-0.01197801,0.009828769,0.0020931042,0.0697509,0.060615014,-0.047167823,0.038057607,0.06256537,0.0944383,0.062822,-0.020530066,-0.046166983,-0.039905313,0.021646386,-0.0026047518,0.07349763,-0.01451219,0.05579045,-0.033387017,0.01780983,-0.00894341,0.011811202,-0.006236007,-0.011599487,-0.02435379,-0.019465068,0.0469112,0.024815716,0.0217747,-0.009507986,-0.028588114,-0.0062648775,0.020427415,-0.019837175,-0.0058510685,-0.040906154,0.0045486926,0.002041779,0.021248616,0.007377992,0.027766913,0.0061429804,0.005459714,-0.026509445,0.0119331,-0.005148555,0.0077885934,-0.003708243,-0.0070251315,-0.004183001,-0.039417725,0.00012350117,-0.026227158,0.015820982,-0.0062841247,-0.032257862,-0.040623866,-0.041265428,0.03341268,0.006239215,0.0059184325,-0.026265651,0.01079753,-0.023506925,0.049066853,0.0029961064,-0.0025630502,-0.022454757,-0.019619044,0.01038693,0.037364718,-0.0019856421,0.008590549,0.020157957,-0.02535463,-0.059177913,-0.0038429715,0.008815097,0.009745365,-0.0055206628,-0.010406177,0.008962656,0.00031516858,0.003126023,-0.03697978,0.015602849,-0.0117278,-0.0028822287,-0.042599883,-0.021697711,-0.007647449,-0.013030175,0.027972214,-0.013998938,-0.009655546,0.019003142,0.03577364,-0.0062809167,-0.010823193,0.0029078913,-0.007814256,0.000067514644,0.017912481,-0.009507986,-0.043703374,0.015949294,0.028767753,-0.022724215,-0.0027057983,-0.045730717,-0.00502345,0.023044998,0.02346843,0.03331003,-0.02604752,0.0054725455,0.010816778,0.0029255343,-0.0067556743,-0.039109774,0.033464007,-0.008718862,-0.0032238618,-0.006152604,0.03210389,-0.011599487,-0.020504402,0.010900181,-0.021210123,-0.0026689083,0.012818459,0.022313613,0.026381133,-0.00073900213,0.0047989027,-0.0362099,-0.05399407,-0.016513871,0.0059184325,-0.02049157,0.016436882,0.030743772,0.032796778,-0.0016207524,0.007082872,-0.034567498,-0.0018396863,0.013485686,0.013357373,0.009277023,-0.009764612,-0.008860006,-0.0280492,0.0130815,0.011695721,0.017091278,-0.015718332,-0.036132913,-0.04175302,0.010682049,0.035696648,0.0063418653,-0.023327285,0.05876731,-0.05579045,0.028254502,-0.012022919,0.022608733,-0.0025887128,-0.020453077,0.029588956,-0.015820982,-0.007005885,-0.022044158,-0.011118313,0.010322773,0.00390392,0.017553205,-0.030641122,-0.02376355,-0.008988319,0.020902172,-0.00517101,-0.053737443,0.030204857,-0.002551823,0.012029335,-0.012395026,0.0159108,-0.008032388,0.033592317,-0.0349781,-0.0032062186,-0.041932657,0.033951595,-0.004176585,-0.021043316,0.015384717,-0.0047636167,-0.0004234326,-0.043626387,0.05301889,-0.033540994,0.008186364,0.0007867185,-0.02666342,0.014101588,0.030743772,-0.002657681,0.01769435,-0.031154374,0.0020578182,-0.0012438332,-0.022531746,-0.000579012,0.005478961,0.01879784,-0.006245631,-0.0013873833,0.028819079,0.002426718,0.00651188,-0.05579045,-0.030564133,-0.011875359,0.0033040573,-0.011836865,-0.00075143244,0.018849166,-0.021736206,0.004843812,0.015987787,-0.024148488,-0.035542674,0.018733684,-0.015140923,-0.0029704438,0.017771337,-0.003798062,-0.044011325,-0.05081191,0.047578424,-0.015179416,-0.013485686,0.023340117,0.008289014,0.034259547,0.014743153,-0.020927835,-0.00038594115,0.005536702,-0.050272997,0.0016568403,-0.010701296,-0.015051103,-0.0034034997,-0.0035350204,-0.014755984,0.039828327,-0.04655192,-0.011663643,-0.04206097,-0.052659616,0.023121985,0.008936994,-0.033053406,0.011496836,-0.012677315,0.0032062186,0.04316446,0.021749036,-0.05222335,0.00810296,-0.024520596,0.009366842,-0.02187735,-0.014063094,0.017527543,-0.0012229824,0.0035895535,-0.008904915,-0.038006283,0.028767753,0.009520818,0.018451396,0.00365371,0.011798372,-0.01879784,0.005828614,-0.004978541,0.009610636,0.02576523,0.004436419,-0.04791204,-0.030307507,-0.021492412,0.009264192,0.008513561,-0.018528383,-0.023981681,-0.03261714,0.008532808,-0.022621565,-0.010694881,0.016193088,-0.011554577,0.007050794,0.026689084,-0.015846644,0.033258706,-0.010040484,-0.0175917,0.0010625912,-0.03597894,-0.018836334,-0.033181716,0.006499049,-0.032796778,0.040700853,0.0059729656,-0.07621787,-0.008430158,-0.017796999,-0.014999778,-0.002476439,-0.0026897592,0.034285206,-0.003650502,-0.009604221,-0.012549002,0.0040290253,-0.0034580329,0.018823503,-0.038365558,0.01928543,-0.02992257,-0.026689084,0.023725055,0.01819477,-0.011323614,-0.038853146,-0.016975798,-0.044267952,0.02566258,0.001934317,-0.021453917,0.0017514712,0.013780806,0.012125569,0.021890182,-0.032873765,0.0020369673,0.016629353,0.015885137,0.00012370165,0.010476748,-0.008949825,-0.014345382,-0.01138777,-0.040213265,-0.03828857,-0.009815937,0.011291536,-0.004481328,0.01909296,0.012741472,0.012863369,0.03628689,-0.030641122,0.0144608645,0.028767753,0.012497677,0.012427105,-0.0013665324,0.020915003,0.06400248,-0.0353887,0.05419937,-0.0023272752,-0.010932259,0.042368922,0.022660058,0.024225477,-0.012131985,-0.01038693,-0.022262288,-0.0010754225,0.018977478,0.008391664,-0.02037609,-0.008526392,0.016693508,0.017296579,0.015474536,0.004067519,0.029563293,0.010271448,-0.00060146675,0.018502722,-0.019862838,0.010649971,0.025213486,0.026689084,0.0143325515,0.043831687,0.0041573383,-0.010258617,-0.0066786865,0.032745454,0.0055046235,0.02656077,-0.056406353,-0.01073979,-0.008295429,-0.0007706794,-0.045807708,-0.030641122,0.005138932,0.013703818,-0.022223795,0.028100526,0.0054885843,0.021826025,0.01710411,0.010572983,0.006960975,0.014165744,-0.008212026,-0.0055784034,-0.033053406,0.016180256,-0.01197801,-0.05409672,0.025880713,-0.056662977,0.000004254124,0.024071502,-0.0012422292,-0.011990841,0.0062616696,0.015564355,0.010688465,-0.0061814743,-0.0236609,-0.025341798,-0.049503118,0.021723375,-0.02077386,0.0051998803,-0.013280385,0.03205256,0.006024291,0.008141453,-0.015718332,-0.014640503,0.0154103795,-0.039058447,-0.0028437348,0.010746206,0.015987787,0.005645768,0.00459681,0.0062103444,-0.014191407,-0.013472855,-0.0016319797,0.027099686,-0.0072240164,-0.033053406,0.0280492,0.0077693462,-0.0061558117,0.0154103795,0.0066016987,0.013703818,0.062103447,0.014807309,0.0012791193,-0.026868721,0.0049592936,0.00006024692,0.013055838,0.0010986793,0.011054156,0.005575196,0.00506836,0.030795097,0.011528915,-0.012215388,-0.02327596,-0.023134816,-0.0071341973,0.020619884,0.0116764745,-0.015564355,0.06456705,0.027304986,-0.02018362,-0.031693287,0.02317331,0.026227158,0.013280385,0.00064036157,0.03200124,0.0116764745,0.0035574753,-0.01788682,-0.0099699125,-0.023827706,0.016821822,0.010059732,-0.017193928,0.042214945,0.0045711473,-0.018605372,-0.032078225,0.042394582,0.023481261,-0.012439936,-0.01831025,-0.038801823,-0.006075616,-0.028228838,-0.013626831,-0.009623468,0.019516394,-0.02237777,0.013152072,0.015641343,-0.015294898,0.002314444,-0.0067685056,0.0003871441,0.023699393,-0.0030249767,0.027766913,0.000100043966,-0.032668464,-0.021415424,0.008590549,-0.00043907072,-0.021646386,-0.073805586,0.025200654,0.0011981217,0.031334013,-0.012446351,-0.036235563,-0.046885535,0.008584133,0.027125347,-0.04585903,0.013883457,-0.0106628025,0.025932038,0.014948454,0.007839918,0.023686562,0.0068583246,0.03271979,-0.0034484093,0.02137693,0.0054340516,-0.01748905,0.039700013,0.007050794,0.0128762,0.015667006,0.012465599,0.042035308,-0.008192779,-0.014922791,0.028511127,-0.019901332,0.0016087231,0.027202336,0.012568249,0.021056147,0.026406795,-0.010322773,-0.0364152,-0.0037018273,-0.0039359983,0.0013777599,0.011984426,0.02237777,-0.022121144,0.03451617,-0.005822198,0.028921729,-0.0028148643,-0.0070957034,0.0437547,-0.00060106575,0.0004502981,-0.0051100613,0.011817618,-0.01848989,-0.052967567,0.015667006,-0.026612096,-0.00879585,-0.003778815,-0.01959338,-0.010483164,0.0015477744,-0.021402592,-0.016436882,0.01760453,0.020863678,0.029999556,0.014358214,-0.0006612124,-0.014691828,0.02099199,-0.014884297,-0.061333567,0.017245254,0.01848989,-0.0007706794,-0.026817396,0.036440864,-0.024713065,0.0037306978,0.020209283,-0.0024138866,0.012395026,0.012863369,0.023352949,-0.003923167,-0.0011484005,0.03708243,-0.002640038,0.014499358,-0.017373567,0.0028100526,-0.0076987743,-0.003968077,-0.018938985,-0.017643025,-0.02426397,-0.0040386487,-0.0056361444,0.013152072,-0.008135038,-0.001409838,0.011342861,0.0036665413,0.043318436,-0.011265873,0.02099199,-0.022198133,0.019015972,0.013767974,-0.027997876,-0.018348746,-0.039777,0.029717268,0.026689084,0.027433299,0.006329034,-0.020517234,-0.03839122,0.008519976,0.026714746,0.025534268,0.016937302,-0.015063935,0.0028421308,0.024328126,0.0791434,-0.015243573,-0.015089598,-0.008423742,0.044113975,0.0030426197,-0.0015421608,-0.012093491,0.014345382,-0.022506082,-0.01641122,-0.0008356378,0.012138401,-0.025021017,0.030461483,-0.042933498,0.00021933486,0.018258926,0.020748196,-0.01789965,0.007031547,0.00870603,0.020440245,0.034644485,-0.012606743,-0.02187735,0.007871997,-0.025790894,0.03241184,0.012446351,-0.00860338,-0.008519976,0.013870625,-0.018271757,-0.051350825,0.012350117,-0.026483783,0.003907128,0.028511127,0.020607052,-0.002548615,-0.013703818,0.01831025,-0.027920889,0.011695721,0.016962966,-0.022506082,-0.008263351,-0.030204857,-0.011323614,0.004882306,0.025303304,0.013973275,0.0027394805,-0.006781337,-0.023827706,0.020414583,0.0035157735,-0.0017017499,-0.00651188,-0.0133188795,-0.00850073,0.020260608,0.016962966,-0.007249679,0.028280163,-0.005854276,0.032591477,-0.011593071,0.012523339,-0.0017226008,0.0035703066,0.0007470217,-0.008622627,-0.0047090836,-0.0014154518,-0.008237689,-0.050888896,0.0038846731,0.0017947768,0.017052785,-0.001229398,0.019208442,-0.004195832,-0.008770187,0.02802354,0.009007566,-0.022852529,-0.009925003,0.009880094,-0.020953497,0.030666783,0.04319012,0.015590018,0.0042375335,0.009155125,-0.03341268,0.020055307,-0.022121144,-0.02355825,-0.018849166,0.03331003,0.022903854,0.002893456,-0.03551701,-0.0035670986,-0.020042475,0.009809522,0.029383656,-0.019259768,0.029204017,-0.02217247,0.023288792,-0.014435202,0.0021011238,-0.023891862,-0.0075255516,-0.0039712843,-0.026214326,-0.039238088,0.027202336,0.021364098,-0.006665855,-0.035953276,-0.021415424,-0.00046874306,0.031077385,-0.01938808,0.037133753,-0.027715588,-0.02684306,0.0011107086,-0.03887881,-0.015859475,-0.0025373877,0.009822353,0.003692204,-0.022441927,-0.029075705,-0.021633556,0.015897969,0.013575505,0.0015213098,0.024995353,0.028767753,0.0119331,0.02206982,0.027202336,0.01333171,0.0064798016,0.016385557,-0.036440864,0.029717268,-0.028511127,0.029563293,-0.02436662,0.010823193,0.019041635,-0.0131328255,-0.03171895,-0.016090438,0.0004683421,0.0011235399,-0.0036472944,0.0039327904,-0.042112295,0.023968851,-0.0071085347,0.0024459648,-0.0032976416,0.0215694,-0.017835494,-0.03310473,-0.014884297,0.04077784,-0.031539313,-0.003923167,0.019901332,-0.016937302,0.010932259,-0.0116764745,0.0021283904,0.00023096323,0.008725277,0.0065952833,-0.0159108,-0.008359586,-0.018040795,-0.026483783,0.025033848,-0.038827486,-0.023609575,-0.0028677934,-0.014114419,-0.052351665,-0.01829742,0.018335914,-0.0044524577,-0.007576877,-0.029563293,-0.035542674,-0.010579399,-0.029717268,0.0037563602,0.0036954116,0.016436882,-0.005398765,-0.009905756,-0.02576523,-0.01580815,0.010932259,-0.013498518,0.013575505,-0.009533648,0.0236609,0.017643025,0.019221272,-0.0065888674,0.011843281,0.021851687,-0.009578559,0.017283749,-0.0022262288,-0.031385336,0.023968851,0.042882174,-0.016282907,-0.012683731,0.016975798,-0.040931817,0.028228838,0.030974735,-0.00038393628,0.019619044,-0.012196141,0.0035767222,-0.043036148,0.017976638,-0.0052095037,0.00028710012,-0.011073404,-0.014563515,-0.031103048,0.03479846,-0.010059732,0.04034158,0.0050170347,0.0031356467,-0.030435821,0.011419849,-0.016141763,0.020927835,0.02049157,-0.00509723,-0.023891862,-0.036466528,0.0066401926,-0.01511526,-0.040161937,0.005154971,0.012908278,-0.0082569355,0.006024291,-0.017335074,0.03282244,-0.01739923,0.014563515,0.032848105,-0.007499889,-0.022903854,0.005113269,0.009251361,-0.004308106,0.011330029,-0.020401752,0.0042952746,0.009302686,-0.015269236,0.012593912,-0.009822353,-0.0010786303,-0.00517101,0.039238088,-0.01034202,-0.009700456,0.0074229017,-0.0143967075,-0.017835494,0.0017915689,-0.021017654,-0.010085395,0.0048341886,0.0011347672,0.0029736515,0.00293195,0.01710411,0.0060146675,0.029794257,-0.0016023074,0.009533648,0.004391509,-0.028690765,0.0175917,0.019850006,0.01333171,-0.003166121,0.0026143754,0.009815937,-0.015153754,0.021851687,0.009899341,-0.009058891,-0.030461483,-0.016834654,0.027997876,0.0006616134,-0.0021989625,-0.0016841069,0.019773018,0.011131144,0.014499358,0.030179195,0.003814101,-0.011689305,0.009931419,0.003993739,0.032591477,-0.009129463,0.056611653,0.034464847,0.02077386,0.03251449,0.021749036,-0.019850006,-0.015897969,-0.018284589,-0.040521216,-0.008025972,0.032155212,-0.002280762,0.059999112,-0.041008804,-0.017540375,-0.0048790984,0.005770873,-0.020247776,-0.010540905,0.012420689,0.0016408012,-0.030564133,0.008917747,0.034233883,-0.008757356,0.037929293,-0.0076410333,0.021287112,0.035363037,-0.017681519,-0.0027250452,-0.019657537,-0.060512364,-0.008269766,0.018040795,0.020607052,0.0025389916,0.06841644,-0.013601168,-0.022518914,0.01878501,0.00067644956,-0.006242423,-0.008468651,-0.0022887813,-0.017322242,-0.024315296,0.017784169,-0.0034067077,-0.021197291,-0.03331003,-0.021813193,0.013857794,0.028485464,-0.0010810362,-0.01451219,-0.0059248484,0.0064477236,-0.020850847,-0.022352109,0.004503783]},{"id":"guide-voice-2","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Join a Voice Channel\nGet the user's voice channel with getVoiceChannelId, then join. The connection resolves when ready.\n\n```javascript\nconst voiceManager = getVoiceManager(client);\nconst voiceChannelId = voiceManager.getVoiceChannelId(guildId, userId);\nif (!voiceChannelId) return; // User not in voice\n\nconst channel = client.channels.get(voiceChannelId);\nif (!(channel instanceof VoiceChannel)) return;\n\nconst connection = await voiceManager.join(channel);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.043258335,-0.004046234,0.014536891,-0.008575516,-0.02237931,0.021651898,-0.022322481,0.010882778,-0.031301484,0.016923714,-0.007245714,0.03841649,0.023299944,-0.0039751977,-0.01906049,-0.0038927954,-0.07696937,-0.004054758,0.004873098,0.0014576672,-0.032960895,0.078878835,-0.0018625747,0.07751493,-0.06010249,-0.008382297,-0.038643807,0.03330187,-0.027959932,-0.03534772,0.03277904,-0.009922366,0.0010342902,0.0031739068,-0.00452644,0.021958776,0.0034097477,-0.003691052,-0.06146639,0.013877673,0.0055806204,0.036643423,0.025914084,-0.008041322,0.031869777,0.025550377,-0.029346563,0.014320941,-0.020924486,-0.021106338,-0.016275862,0.015514352,-0.0052055484,0.063375846,-0.008069737,-0.020788096,0.01911732,-0.031824313,-0.050873436,0.0034751012,-0.023777308,-0.042712774,0.0023356772,0.038871124,0.043144677,0.0077458103,-0.023845503,0.0064330576,0.023504527,-0.0046713543,-0.0010449457,-0.012616067,-0.0014001277,0.0087687345,-0.049327686,0.044667695,-0.022674823,0.03068773,-0.004208197,-0.05355577,-0.03482489,-0.0024805914,-0.027118862,0.0054442305,-0.01601445,0.0166964,-0.041348875,0.0019904403,0.03398382,-0.0105986325,0.012354652,-0.020697169,-0.08260682,-0.041212484,0.04923676,0.023277212,0.030210365,0.007779908,0.0057028034,-0.025232134,0.051646315,-0.0155029865,-0.04400848,-0.010717974,0.06110268,-0.014230014,0.013332114,0.027755346,-0.08074283,0.01933327,-0.05023695,0.06392141,-0.0030545658,0.014889232,-0.012809286,-0.026505107,0.06023888,-0.053055674,0.0066774227,-0.021720093,-0.060193416,-0.011132826,0.047281835,-0.016946446,0.04471316,-0.010899827,0.009916683,-0.01835581,-0.046213448,0.011638606,0.037893664,0.01465055,0.048054714,0.015571182,-0.03096051,-0.019185515,0.0069047394,0.002499061,-0.026095936,-0.008819881,-0.015946254,-0.024163745,0.035711426,0.0008020011,0.014639184,0.02820998,-0.03932576,0.0123432875,-0.04182624,-0.016480448,-0.06769486,-0.015264304,-0.036916204,-0.016275862,-0.033915624,0.021640534,-0.028687345,0.019537855,-0.07646928,-0.06483067,-0.009575709,-0.031869777,0.065830864,-0.032119825,-0.026459644,-0.022072434,-0.005123146,0.0360524,-0.0038871125,0.042621847,-0.010411097,0.007944712,-0.053237528,-0.00056154287,0.03139241,-0.06701291,-0.007848103,-0.01644635,-0.010064439,-0.021879215,0.02875554,0.0017062946,0.0010591529,-0.03341553,-0.03180158,0.014366404,0.028732808,0.015559816,0.01810576,-0.03918937,-0.0065637645,0.012025044,0.013559431,0.04539511,0.0459634,0.016003083,0.04253092,-0.007558274,0.011064632,-0.061875556,-0.007421884,-0.044554036,-0.0052055484,-0.036166057,-0.035302255,-0.006200058,0.01921961,0.03498401,0.009308611,-0.0073536895,0.025641304,-0.021560973,0.006188692,-0.017241959,-0.08006088,-0.015207475,-0.009337026,-0.026391448,-0.04114429,-0.04005317,-0.035415914,-0.018276248,0.048100177,0.0069502024,-0.002551628,0.020935852,0.03959854,-0.057329226,0.05628357,0.00010531148,0.0056175594,-0.020208439,-0.033233676,-0.028028127,0.01609401,-0.018503565,0.028778272,0.058011174,0.027300714,-0.016560009,-0.032074362,-0.025618572,0.060284343,0.025118476,0.027027935,0.005370353,0.0055124257,-0.060511656,0.051646315,0.016957812,0.023049895,0.06373955,0.0037961858,0.026209595,0.027187055,0.023822771,-0.0028840783,0.025073012,0.027073398,-0.02709613,-0.012013678,0.006052302,-0.016128108,0.0021879214,-0.03843922,-0.024459258,0.01810576,-0.0075412258,-0.032278948,-0.015207475,-0.041098826,-0.045167793,0.052373726,-0.04430399,-0.025482181,-0.047691006,0.0229817,0.0102690235,0.024436526,-0.0023484637,-0.033233676,0.012684261,-0.05341938,0.0008083944,0.020401658,0.021549607,-0.047918323,-0.017798884,-0.031960703,0.056601815,-0.02366365,0.032983627,0.0007885042,-0.009666635,0.028960126,0.05960239,0.05764747,0.004336063,0.036893472,0.059284147,0.020594876,-0.0036058084,-0.015048354,-0.003597284,0.016128108,0.025232134,-0.015787132,-0.0025800425,0.02807359,-0.04400848,0.0261414,0.012456945,0.011990947,0.040985167,-0.010467926,0.007637835,0.019890195,0.027687153,-0.020310732,0.045486037,-0.014332307,0.001351823,0.025936814,-0.008035639,0.00448666,-0.019992488,-0.010462243,-0.071241,-0.004250819,0.010860046,0.04168985,-0.07151378,0.009842806,0.029323831,0.010212195,0.026186863,-0.016650936,0.010467926,-0.008655077,0.006472838,0.014343672,-0.0044298307,-0.031960703,0.025664035,0.004753757,0.0315288,-0.023015797,0.0048475247,-0.026527837,-0.022788482,-0.0117636295,-0.009888269,-0.022799848,-0.060375266,-0.0074843965,0.016184935,0.02243614,-0.031074168,0.0157644,-0.0067797154,-0.032574456,-0.043326527,-0.019105954,0.042985555,-0.04484955,0.006478521,-0.052919287,0.026527837,-0.028528223,-0.023913698,0.009086978,-0.03027856,-0.00046884033,0.032801773,-0.024300136,-0.00009669831,-0.010627047,0.02023117,-0.023413602,0.07724215,0.031551532,0.021310924,0.039962243,-0.047372762,-0.01375265,0.007637835,-0.012206897,0.007774225,-0.035938744,-0.017992102,0.030937778,-0.010865729,-0.002963639,0.017151032,-0.013275284,-0.009893952,0.046872668,0.00036974452,-0.0037933444,-0.014911964,0.047691006,0.045804277,-0.02153824,0.009229051,0.02586862,0.026846081,-0.03918937,-0.0014732952,-0.013775381,-0.019787904,0.04612252,-0.026118668,0.024527453,0.030301291,0.048236564,0.004699769,-0.010820267,-0.00066419045,0.050282415,0.034438454,-0.0136730885,-0.0030432,0.04003044,0.0006322241,0.009581392,0.015889425,0.025527645,0.037234444,0.06824042,-0.02905105,-0.071195535,-0.000990958,0.03150607,0.012195531,-0.03362011,-0.017310154,0.0027491092,-0.012354652,-0.017685225,0.011439703,-0.040257756,0.008461857,0.0009760403,0.009427953,0.05932961,0.04294009,0.009257466,-0.054828744,-0.039143905,0.010342902,-0.02752803,-0.0261414,0.038757466,0.027323445,-0.0064898864,-0.020401658,-0.029733,0.034029283,-0.0608299,-0.016264496,-0.054874208,-0.011485167,-0.000990958,0.05201002,-0.020799462,0.009439318,-0.002257537,0.00020813668,-0.052782897,0.010087171,0.021788288,-0.024254672,0.022277018,0.0059215953,-0.0032648335,0.0082686385,0.027323445,-0.021970142,-0.006472838,0.0150824515,0.019765172,0.019401465,-0.009621171,0.0315288,0.019560587,0.012070507,0.0545105,0.007115007,-0.04059873,-0.036802545,0.026095936,-0.0064898864,0.04996417,-0.009905318,0.039734926,0.015434791,-0.010149683,-0.004986756,0.03962127,-0.0021310924,-0.0030233096,0.01554845,0.02262936,0.035984203,0.031574264,0.057874788,-0.017082836,-0.024686575,-0.014014063,0.022538433,-0.0016551485,0.027187055,-0.034915816,-0.0021580863,-0.0020415864,0.003105712,0.010894144,-0.023731844,-0.002625506,0.013684454,-0.042167213,0.019981122,0.009007417,0.017026007,-0.004250819,0.008643711,0.009882586,0.023527259,0.017446542,0.0045917938,0.018662686,-0.011365826,-0.037757274,-0.017764786,-0.039416686,0.023754576,-0.009337026,-0.002389665,0.008160663,0.007319592,-0.05182817,0.042099018,-0.02530033,0.0010598633,0.00088724477,-0.016616838,0.0021694521,0.028869199,0.016480448,0.02292487,0.00088937586,-0.026050473,-0.020322097,-0.021094972,-0.00080697367,0.024800232,0.0010840157,-0.027823541,0.0021524034,-0.031142363,-0.011394241,-0.01685552,-0.00784242,-0.025186671,-0.03978039,-0.046827205,-0.010842998,-0.011053266,0.023822771,0.008757369,0.015036988,-0.0045406474,0.0110134855,0.0007309647,0.047145445,0.0044099404,-0.023481796,0.020958584,-0.009416587,0.0022404885,-0.0054811696,-0.028550955,0.025777694,0.006194375,0.0046543055,-0.02918744,-0.057192836,-0.052510116,0.010462243,0.01459372,0.00081691873,-0.0310969,-0.00031167225,0.0110419,0.003031834,-0.002688018,-0.0120932385,0.014957427,0.02739164,-0.01625313,-0.019083222,0.040803317,-0.0030034196,-0.015787132,-0.018151224,-0.017276056,0.018890003,-0.017173763,0.008615296,0.0019321904,0.0071491045,-0.012445579,-0.015264304,-0.043849356,0.010962339,0.01568484,-0.020515315,0.017332885,0.03866654,0.045895204,-0.0010911193,0.00010726498,-0.0021566655,0.027732616,0.040507805,0.027027935,-0.013025236,-0.018264882,0.00829137,-0.011865922,-0.018253516,0.0067797154,0.017332885,-0.011223753,-0.00481911,-0.055465233,-0.022265652,-0.00466283,0.004125795,0.0060011563,0.05328299,-0.033915624,0.024141014,-0.0013525333,0.0050435853,-0.0043985746,-0.016673667,-0.015446157,-0.024322867,-0.022868041,-0.036416106,-0.0016636727,0.013491236,-0.018094394,0.0067569837,-0.042849164,-0.034415722,0.0120932385,0.0040575997,-0.01301387,-0.03980312,0.013627625,0.010195146,0.011297631,-0.0082686385,-0.008513004,0.006131863,0.027778078,-0.02532306,0.0023598296,-0.039280295,0.018719515,-0.010842998,-0.029733,0.022163361,0.008490272,-0.020628974,-0.04168985,0.055328842,-0.01000761,0.019787904,0.028801003,-0.032597188,-0.020299366,0.013707186,0.00770603,0.016355423,-0.035302255,0.006467155,0.0043502697,-0.010314487,0.024754768,-0.0166964,-0.012650165,-0.03523406,0.0067569837,0.02505028,0.019503757,-0.0015116548,-0.06701291,-0.03464304,-0.015753035,0.0036853692,-0.046440765,0.0055039013,0.01375265,0.013775381,0.00204869,0.0070070317,-0.014411868,-0.055374306,0.03946215,-0.039553076,-0.024800232,0.013570796,-0.017014641,-0.04214448,-0.0423718,0.031324215,-0.01974244,-0.016605472,0.034165673,0.009513197,0.005401609,-0.0021865007,-0.015718937,-0.021333655,0.008922174,-0.01601445,0.013548065,-0.04059873,-0.0064273747,-0.0057624737,-0.010394048,-0.021901947,0.03509767,-0.02752803,0.009928049,-0.05528338,-0.06205741,0.010621364,0.019026393,-0.010109902,-0.0059215953,-0.006069351,-0.011382875,0.035711426,0.015866693,-0.025800426,0.011786361,-0.009689366,0.0058534006,-0.058829516,-0.013320748,0.017469274,-0.019185515,-0.013457138,-0.01416182,-0.014002698,-0.00526806,-0.0017276056,-0.019015027,0.009047197,0.047963787,-0.016741863,0.03746176,-0.0059784246,-0.023322675,0.034938548,0.012366018,-0.028414564,0.007450299,-0.008064054,0.026050473,-0.019390099,-0.033961087,-0.06824042,-0.013082066,0.009041514,-0.03866654,-0.008558467,-0.0032648335,-0.036166057,0.0021296716,0.00204869,-0.025004817,0.023038529,-0.016525911,-0.013513967,-0.02243614,-0.03498401,0.004941293,-0.048372954,0.024254672,-0.034415722,0.009757562,-0.005216914,-0.0847436,0.0005246039,-0.022697555,-0.012025044,-0.014957427,0.015071086,0.030801388,0.034233868,-0.008996051,-0.008586882,0.003304614,-0.006989983,0.016162204,-0.060738973,0.006927471,-0.000938391,-0.019867463,0.010791852,0.021504143,0.0037393568,-0.0013901826,0.002509006,-0.025277598,0.02573223,0.020901754,-0.011729533,0.012775188,-0.014730111,0.0261414,0.011610191,-0.04969139,0.019503757,0.021708727,0.030778658,-0.017992102,0.00040703863,-0.0018313187,-0.028687345,-0.026459644,-0.06273936,-0.0013475608,-0.025027549,-0.01726469,-0.016264496,0.01301387,0.00065460056,-0.0024663843,0.005484011,-0.023322675,0.019935658,-0.012320556,0.0211859,0.0062284726,0.0035688693,0.013241188,0.029369295,-0.029232904,0.05614718,-0.008734637,-0.016957812,0.044463113,0.009268831,0.013218456,-0.0015358073,-0.010075805,-0.0040860143,-0.00842776,-0.0020458486,0.0047935373,-0.0059159123,0.0022930554,0.0050208536,0.016662301,0.022458872,0.012547872,0.019162783,-0.012354652,0.027482567,-0.004981073,0.0066831056,-0.041507997,0.007126373,0.02112907,0.021345021,0.021629168,0.009194953,-0.02461838,-0.004981073,0.017344251,0.015843961,0.03577962,-0.019310538,-0.023038529,0.01410499,0.031051436,-0.033938356,-0.016378155,-0.020538047,0.0044582454,-0.052328262,0.03909844,0.0328927,-0.0068194955,-0.019401465,-0.0038018688,-0.017230593,0.0097689275,0.019026393,-0.00024294453,-0.035415914,-0.0020685804,0.018117126,-0.06369409,0.0039013198,-0.06787671,-0.0018185321,0.012161434,-0.010962339,-0.012286458,0.014400502,0.00032552436,0.014139088,0.030596804,-0.04071239,0.012195531,0.022595262,-0.0061148144,-0.007200251,-0.029937586,-0.0083538825,-0.002781786,-0.006410326,0.02407282,-0.0031284436,0.0009660952,-0.007831054,-0.013445772,0.016980544,-0.004898671,0.016139474,-0.021879215,0.018753612,-0.022970334,-0.01568484,-0.019685611,0.0071377386,0.008620979,-0.006285302,0.017435176,0.01873088,0.018696783,0.0036967348,0.029073782,0.011809093,-0.021606436,0.05241919,0.02380004,0.03261992,-0.00130707,-0.025754962,0.0069161053,0.009928049,0.015377963,0.035165865,-0.028437296,0.0072911773,0.0107634375,0.016264496,-0.0032847237,-0.002352726,-0.019924292,0.008723271,0.015980352,0.002682335,0.012672896,0.03250626,0.050282415,-0.013468504,-0.012820652,0.023981893,0.0180262,0.012047775,-0.018946832,0.000023308823,0.02682335,-0.003622857,-0.006972934,-0.000831126,0.008672126,-0.024322867,0.022151995,-0.016548643,0.04723637,-0.012138702,-0.032551724,-0.056601815,-0.013627625,0.003585918,0.015616645,0.008143614,0.00807542,-0.018333077,-0.004563379,0.011502216,0.00030403584,-0.01252514,-0.03893932,-0.0050492682,0.0010186621,-0.008979003,-0.0029238588,-0.0040490753,0.009138124,0.023095358,-0.0072343484,0.011922752,-0.000550177,-0.039553076,0.011473801,-0.01650318,0.0012623171,-0.018367175,-0.03359738,0.020947218,0.010604315,0.016832788,0.023209017,-0.03437026,-0.043121945,0.0130707,0.03216529,-0.02145868,-0.031983435,-0.023015797,-0.011615874,0.01718513,0.0026794935,0.032324407,-0.0013205669,0.040257756,0.019265074,0.026232326,0.0063648624,-0.033665575,0.037052594,-0.0021353546,0.01761703,0.011485167,0.002661024,0.041235216,-0.00914949,0.015184743,0.012422848,-0.008047005,-0.0008794308,0.009825757,-0.0046713543,0.016264496,0.03314275,-0.010212195,-0.009337026,-0.016048547,-0.026550569,-0.024641111,0.0031398095,0.039371222,-0.020162975,0.010735023,0.004358794,0.03096051,0.017401079,-0.00509189,0.03746176,-0.00883693,0.0016253131,-0.05682913,-0.0041485266,-0.019856097,-0.023413602,0.026186863,-0.046736278,-0.0022291227,-0.018151224,0.012127336,0.019708343,-0.004157051,-0.036643423,0.008132248,0.0129229445,-0.004699769,0.014548257,0.006165961,-0.03427933,-0.01190002,0.049327686,-0.031574264,-0.021345021,-0.0048049027,0.023686381,0.0065467157,-0.0069615683,0.020594876,-0.047554616,-0.0243456,0.040394146,0.010888461,0.0364843,-0.003529089,-0.00056935684,0.02132229,-0.010928242,0.033506457,0.052100945,0.023845503,-0.015843961,0.012718359,-0.008245907,-0.0106781935,0.0031113948,-0.016275862,-0.029619342,-0.03373377,0.000011832002,0.016866885,-0.011394241,-0.013570796,0.027300714,0.007581006,0.059147757,-0.038848393,0.0019293489,-0.028914662,0.025073012,-0.016162204,-0.02998305,-0.04696359,-0.042962823,0.051373534,0.012366018,-0.01053612,0.0069558853,-0.022106532,-0.01416182,0.023186285,0.017992102,0.03671162,0.035802353,-0.019696977,0.01004739,0.012854749,0.06460336,0.033938356,0.006063668,0.010484975,0.059147757,0.03136968,-0.01810576,0.002541683,-0.0000052833334,-0.027118862,0.0019748122,0.016685033,0.01045656,0.008814198,-0.010916876,-0.027346177,0.028119054,0.0056715473,0.024413794,0.008228858,-0.025982277,0.0044269892,0.0029863708,0.030164903,-0.025573108,-0.028141785,0.015809864,-0.026095936,0.05573801,0.011718167,0.005495377,-0.00019819158,0.007558274,-0.006643325,-0.047691006,0.02366365,-0.023731844,0.0032449432,0.007984493,0.016821422,0.010496341,-0.023436334,0.029551148,-0.017105568,0.0087801,0.0015713255,0.011326046,-0.012502409,-0.028664613,-0.00029195964,-0.025982277,0.013741284,0.044963207,-0.012672896,-0.009456367,-0.0010882778,0.010996437,-0.010746389,0.0027150116,-0.0019733915,-0.03264265,-0.0017915383,-0.009081295,0.021026779,-0.00784242,0.02380004,0.006063668,0.00057930197,-0.015673473,-0.00016391653,-0.010666828,-0.017787518,-0.0008687753,-0.02780081,-0.016241765,-0.015912157,0.0012594756,-0.04664535,0.0022958969,-0.0053362553,0.0067513008,-0.023277212,0.009075612,-0.0016679349,-0.021651898,0.045213256,-0.0056061936,0.012820652,-0.0005803675,0.013707186,-0.020253902,0.02044712,0.025982277,-0.0011017747,-0.011536313,0.0009966409,0.0026127193,0.0011990947,-0.024732037,-0.011956849,-0.017582932,0.016321326,0.04896398,-0.024891159,-0.010166732,-0.003554662,0.019515123,0.029914854,0.006336448,0.008257273,0.029619342,-0.008143614,0.03607513,-0.00955866,-0.0070865927,-0.010422463,-0.008058371,-0.017776152,-0.031983435,-0.020378927,0.019628782,0.026436912,-0.0069104224,0.012752457,-0.0051998654,0.010115585,0.037370834,-0.0019591842,0.0414398,-0.032006167,-0.030460414,-0.0013844997,0.0042849164,0.009166539,0.012161434,0.027846273,-0.001459088,-0.024141014,-0.032438066,-0.014923329,-0.012911579,0.013934502,-0.0059215953,-0.011695435,0.013866308,0.009007417,0.015116548,0.013513967,0.03082412,-0.024891159,0.010121268,-0.027869005,-0.014207282,-0.02682335,0.027368909,-0.0052566947,0.017969372,-0.0059954734,-0.031210558,-0.022606628,0.028005395,-0.0017091361,-0.008200443,-0.0062512043,0.0055351574,-0.033324603,-0.016753228,0.005597669,-0.009939414,0.014082259,-0.017173763,0.017901177,-0.04228087,-0.023345407,0.025391255,-0.040962435,-0.02229975,0.005819303,-0.038030054,0.015923522,-0.0410079,0.015116548,0.009314294,0.0047594397,-0.023277212,-0.01238875,0.005836352,-0.011934117,-0.029119246,0.0171283,-0.020162975,-0.0047992202,0.00752986,0.012672896,-0.0247775,-0.013729918,0.0063705454,0.012900213,-0.013320748,-0.025232134,-0.03755269,0.012400116,-0.02409555,0.0055181086,0.023277212,-0.022720287,0.00905288,0.03218802,-0.0075412258,-0.020049317,0.006541033,-0.004060441,0.033120017,0.016219033,-0.01527567,0.011416973,0.002918176,-0.046190716,-0.017469274,0.016105376,0.019435562,0.015730303,-0.016628204,-0.06646735,0.010161049,0.03746176,-0.02780081,-0.04723637,0.008177712,-0.030005781,-0.004083173,0.01153063,-0.0048162686,0.0036938936,-0.03362011,0.004537806,-0.027550763,-0.0088539785,-0.015025622,0.024186477,-0.016423618,0.006154595,-0.026345985,0.062693894,-0.015093816,0.028028127,-0.0005508874,-0.027755346,-0.01810576,-0.0065467157,-0.009047197,0.02889193,-0.0015230207,-0.007575323,-0.012195531,-0.001191991,-0.011280582,-0.009888269,-0.026777886,0.021924678,0.03273358,0.011695435,0.002541683,-0.023595454,0.068194956,-0.0071491045,-0.0038672222,0.026391448,0.020356195,-0.015775766,0.0077514932,0.012888847,-0.02627779,0.01804893,-0.018173955,-0.0013013871,0.017173763,-0.025141208,0.017855713,-0.032665383,-0.00752986,0.007302543,0.039644,0.010996437,-0.014661916,-0.018526297,-0.04525872,-0.039030246,0.029573878,0.010950973,-0.0029920537,0.0006695182,-0.0011017747,-0.0073423237,0.0005484011,0.036029667,0.023572722,0.032710847,0.028505491,-0.0047168178,-0.0042479774,-0.013104797,0.0046599885,0.010109902,0.0020898913,0.016219033,-0.013957234,0.0046202084,-0.008393662,0.016355423,0.024754768,-0.020037951,-0.012832018,-0.025936814,0.020208439,0.015730303,0.022447506,0.005407292,0.0076889815,0.0020927328,0.031028705,0.0039808806,0.014843768,-0.01995839,0.011053266,-0.006870642,0.017514737,-0.011422656,0.046690814,0.049191296,0.043008287,-0.007785591,-0.009308611,-0.008143614,0.00030971874,-0.017821616,-0.042030826,-0.02695974,-0.013604893,0.0064387405,0.035324987,-0.018401273,-0.0025544693,-0.01416182,-0.021822385,0.0008609613,-0.025254866,-0.0011387137,0.011274899,-0.03316548,0.024959354,0.02573223,-0.012718359,0.04307648,-0.010825949,0.015514352,0.019810636,-0.018173955,0.018742247,0.0072172997,-0.023345407,0.0052765845,0.0043389043,0.017310154,-0.0069558853,0.05664728,-0.016059913,-0.008575516,0.023140822,0.032551724,0.003006261,-0.0019563427,-0.01685552,0.004196831,-0.011246485,0.0076889815,0.0022561164,-0.0052709016,-0.02077673,-0.015934888,0.009570026,0.049327686,0.0029352244,-0.018776344,-0.0057482664,0.022242922,-0.0356205,-0.035847817,0.00028645433]},{"id":"guide-voice-3","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Play Audio\nPlay a WebM/Opus URL or stream. The voice package does not use FFmpeg—input must be WebM with Opus. Use yt-dlp or similar to get direct stream URLs from YouTube.\n\n```javascript\n// URL (fetched and demuxed automatically)\nawait connection.play('https://example.com/audio.webm');\n\n// Or a Node.js ReadableStream of Opus\nawait connection.play(opusStream);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.049950294,-0.006097018,-0.043101087,-0.030674666,-0.022443386,-0.007998896,-0.020633237,-0.024424763,0.008182357,0.0058585186,0.022834769,0.01108104,0.035053268,-0.030381128,0.0023513574,0.0027626157,-0.033683427,-0.002779433,0.02602699,0.00061382964,-0.029427132,0.002826827,-0.01982601,0.043296777,-0.023666458,-0.030014208,-0.030723589,0.064089015,0.0016006966,-0.031212818,0.014481182,-0.04165786,0.007986666,-0.008488125,-0.022455616,-0.048751682,0.0050849253,-0.027763752,-0.028179597,0.0034032,0.0049503874,-0.0068186307,0.0013163321,-0.017832402,0.023103846,0.04520477,-0.013698416,-0.03177543,0.015019334,-0.018713014,0.010652964,0.023323998,0.0045223115,0.020217394,0.013991953,0.040557094,-0.006482286,-0.010689656,-0.026320526,-0.044079546,-0.003895487,-0.02568453,-0.013086879,-0.030527897,0.027470216,0.0068186307,-0.020706622,0.0063599786,-0.014554567,-0.0032656044,0.023116076,-0.022749154,-0.0037334298,0.008946777,-0.044152927,0.049632296,-0.044128466,0.032631584,-0.02169731,-0.08987139,-0.008512586,0.027103294,-0.09173046,-0.015520794,-0.013527186,0.02974513,-0.0632084,0.029842976,0.0012788755,0.02336069,-0.0021816562,-0.030943742,-0.071916685,-0.03830664,-0.007937742,0.06756254,-0.014982642,0.01850509,0.05405982,0.032900658,0.05107552,-0.014823643,-0.022052003,-0.044788927,0.032704968,-0.012878956,0.04855599,0.018346092,-0.03275389,-0.006720785,-0.059343494,-0.00763809,0.02287146,0.03358558,0.060615487,0.004935099,0.052836746,-0.018920936,0.011380693,-0.04921645,-0.06839423,0.0007904108,-0.009466584,-0.016450329,0.052885666,-0.028252982,0.007087707,-0.01931232,-0.042293858,-0.015092718,0.053717356,0.017245326,0.038991563,-0.027690368,-0.0022183482,0.0052378094,-0.019887164,-0.008628779,-0.005308136,0.075536974,0.030258821,-0.0527389,0.031995583,0.033634502,0.028375288,0.011209462,-0.056163505,-0.01947132,-0.04266078,-0.001341558,-0.047773223,-0.027347907,-0.016731637,0.041511092,-0.035004344,-0.0023819343,-0.0021969446,0.04400616,-0.061300408,-0.016376944,0.008096742,0.03830664,0.028864518,-0.0010556647,0.0148114115,0.059049957,0.013588339,0.0133559555,-0.01779571,0.06814962,-0.0148114115,0.035395727,-0.031799894,-0.00990689,-0.027812677,-0.03730372,0.022382233,-0.036863413,-0.016401406,-0.0090752,0.000047465735,0.018908706,0.016805021,-0.015349564,-0.0067146695,-0.012744418,-0.0123346895,0.012671034,0.014738027,-0.008292434,-0.010096466,0.02334846,0.0028788077,0.04615877,-0.018321631,0.03341435,0.04615877,-0.04050817,0.043957237,-0.022602385,-0.0017749844,0.016597098,-0.026834218,-0.05640812,-0.040948477,-0.0058829803,0.012291882,0.0074485135,-0.004182909,0.034417268,0.029524978,0.027274523,0.044960156,-0.019593626,-0.09960705,-0.015728716,-0.014236568,-0.0058401725,-0.016107868,-0.016682712,-0.022333309,-0.007485206,0.005577212,0.017685633,0.0017703979,0.010549003,0.0073017445,-0.013453801,0.014004184,-0.006176518,0.017171942,-0.05239644,-0.021709543,0.015924407,0.0149581805,-0.016242407,0.025611145,0.023544151,0.0148114115,0.0007686248,-0.019887164,-0.03894264,0.043981697,0.0022137617,0.038844794,0.012585419,0.0045742923,-0.10958733,0.031824354,0.0057545574,0.025782375,0.044299696,0.007748166,-0.0029338459,0.029818514,-0.0066290544,-0.048286915,0.0632084,-0.03307189,-0.008500356,-0.003173874,-0.018737476,0.004045313,-0.02605145,-0.0366188,-0.04031248,0.000514455,0.011191117,0.023788767,0.008292434,-0.033169735,0.026785295,0.04667246,0.0013155676,-0.027616983,0.014248799,0.03008759,0.0066107083,0.0094054295,0.027152216,-0.031824354,-0.009546083,-0.07167207,-0.008011127,-0.0058982684,0.005464078,-0.004204313,-0.028766673,-0.035175573,0.012022805,-0.028375288,0.023067154,0.02485284,-0.0078154355,0.013637261,0.048971836,0.06585024,-0.028106213,0.015007104,0.0063905553,0.022577925,0.0063599786,0.03246035,0.023764305,0.011496885,0.059001032,0.016315792,-0.0389671,0.008818355,-0.008812239,0.028815595,0.02135485,0.014248799,0.046501227,-0.002510357,-0.0011764432,0.03307189,0.029255902,-0.020792238,-0.029451594,0.0136128,0.013013495,0.03343881,0.0099986205,0.028106213,0.016450329,-0.008928431,-0.009539968,-0.05425551,-0.025611145,-0.0024537898,0.006451709,0.02416792,0.0050054253,-0.0008339828,-0.002290204,-0.017832402,0.008457549,-0.024277994,0.013172494,-0.041951396,-0.0136494925,-0.015508563,0.029011287,-0.042905394,0.0206577,-0.0251953,-0.017526634,0.042758625,0.024008919,-0.008922316,-0.0065067476,-0.003742603,0.017196404,0.032631584,-0.038600177,0.01259765,-0.035248958,-0.0006088609,0.010047543,-0.04251401,-0.021599466,-0.023226153,0.04332124,-0.008280203,0.030992664,-0.029476054,0.007038784,-0.004026967,-0.024803916,0.025072992,0.011105501,0.011472423,-0.00063981995,-0.046060923,0.02318946,-0.01696402,0.007271168,-0.05087983,0.05361951,-0.02402115,0.037523873,0.019018782,-0.047944453,-0.033658963,-0.051809363,0.012114536,0.04097294,-0.002595972,-0.018541783,0.053130284,0.0022810309,-0.043272316,0.012903418,0.023434075,0.0059074415,0.025831297,0.032778352,0.0016939559,-0.041070785,0.050635215,0.04486231,-0.027470216,0.061447177,0.0055833273,0.018884243,0.037915256,0.019238936,-0.0143711055,-0.018688552,0.018590707,-0.027543599,0.040752787,-0.015141642,0.016707174,0.06995977,0.058218267,-0.037719566,0.034882035,0.027176678,-0.043443546,0.005133848,0.0037762374,0.03850233,0.019287858,0.03950525,0.018859783,-0.0064700553,0.056848425,0.019899394,-0.05136906,0.0023972227,0.02350746,0.03710803,-0.024571532,-0.04019017,-0.046476766,-0.024901763,-0.013404878,-0.021795157,-0.036056187,-0.008763317,-0.034294963,0.010127042,0.014774719,0.0062407292,0.003470469,-0.0067758234,0.0025302318,-0.03945633,-0.022321079,0.0028100098,-0.0033817964,-0.01250592,0.052885666,-0.009943582,0.056310274,-0.034001425,-0.012157343,-0.040801708,0.009595006,-0.029598363,0.0055435775,-0.0052622706,-0.024901763,-0.016266868,0.028179597,0.010255465,-0.01828494,0.005653654,0.050830904,0.00028073342,-0.042929854,-0.006904246,-0.03407481,-0.064040095,0.03642311,-0.024106765,-0.0046599074,-0.034197114,0.0065556704,0.019923856,-0.033707887,0.0111666545,-0.02568453,0.07132961,0.028644364,-0.0006826275,-0.015471871,-0.076906815,-0.020584315,-0.03074805,0.0088305855,-0.012120651,-0.000528979,0.002615847,-0.033634502,-0.0047852723,0.038257718,-0.0028910383,-0.011655884,-0.0183094,-0.035395727,0.02940267,0.04168232,-0.01711079,0.054157663,-0.047626454,-0.0248773,0.0032839505,0.021746235,-0.045694,-0.024754994,-0.008402511,-0.0024446168,0.015569717,0.030307744,0.03209343,0.014603489,0.016670482,-0.04065494,0.04031248,0.01711079,0.012377497,-0.024351379,0.019642549,0.026271604,-0.011961652,0.01730648,-0.022198772,0.022895923,0.0047180033,-0.022822538,-0.054842584,-0.024571532,0.016939558,0.012719957,-0.01696402,-0.01980155,-0.027103294,0.011215578,0.011356231,-0.049632296,-0.00041584476,0.016107868,-0.026100373,0.007491321,-0.014554567,-0.004724119,0.002777904,0.008286319,-0.017184174,-0.03292512,0.00082557416,0.027690368,0.04530262,0.009344276,-0.038159873,-0.03040559,-0.014261029,0.016095638,-0.051858287,-0.0035316227,0.0026968755,-0.014493412,-0.048776142,-0.0036997953,-0.0021403774,0.016731637,0.022357771,-0.0021266178,-0.033903576,0.005607789,0.02048647,-0.0059471917,-0.0076013976,-0.00016865028,0.005335655,-0.018064786,0.036814492,-0.014750258,0.005779019,0.006567901,-0.020376394,0.019385705,-0.00663517,0.0037762374,-0.02135485,0.007846012,0.0069287075,0.05459797,0.0010166792,-0.029671747,-0.009968043,0.0010785974,-0.007680897,-0.0050268294,-0.00036271752,0.011399038,-0.015606409,-0.017379865,0.02486507,0.02602699,0.04434862,0.015166103,0.018382784,0.01344157,0.0031203646,0.038013104,0.0058034803,-0.0251953,-0.0041248132,-0.035224497,-0.033830196,-0.0061489986,0.00080340594,-0.023495229,-0.016083408,0.026344988,0.007075476,-0.008867278,-0.02702991,-0.010481734,0.02654068,-0.008744971,-0.0032808927,-0.024595995,0.0045314846,0.005402924,0.0027809618,-0.021220313,0.0003764771,0.020780006,-0.0143833365,0.009876313,-0.07446067,-0.0019003494,-0.03238697,0.026344988,-0.04217155,0.02756806,0.007246706,0.05107552,0.038062025,0.00018040324,-0.012781111,0.0029078557,-0.027543599,-0.0076992433,-0.026075913,-0.02854652,0.045229234,0.019410165,0.027616983,0.005971653,-0.011136078,-0.02336069,0.0018865898,-0.017856862,0.019079937,-0.037499413,0.017196404,0.003375681,-0.004730234,-0.010194312,0.011918845,-0.0051399637,0.025415452,-0.0345885,0.004192082,-0.06604593,-0.019923856,0.03057682,-0.0029399612,0.049338758,-0.052641053,0.010237119,-0.015178334,0.008848932,0.033194195,0.006836977,-0.005537462,-0.04295432,-0.016340252,-0.01042058,0.00394441,-0.009179162,-0.023397382,-0.0012261305,0.012695496,-0.0104389265,-0.025415452,0.014322182,0.008616548,-0.0016266869,0.070302226,0.025929144,-0.025929144,0.0044978503,-0.069813,0.015630871,-0.02030301,-0.028840058,-0.03850233,-0.012230728,-0.013111341,0.007711474,-0.0161201,-0.0052194633,-0.019202244,-0.024290226,-0.001297986,-0.058952108,-0.010255465,-0.021257006,-0.0082435105,0.003424604,-0.039676484,0.018688552,-0.009760121,-0.005886038,0.038062025,-0.0020731085,-0.017489942,-0.022736924,-0.009283123,-0.044593234,0.019520242,-0.00790105,0.017722325,-0.02082893,-0.0008370405,-0.01730648,-0.0026968755,-0.03392804,0.0143833365,-0.021098007,0.00086608843,0.005393751,-0.045082465,0.022284387,-0.014028645,0.02553776,0.010781387,-0.0027763753,-0.022394463,0.02737237,-0.031163896,-0.041780166,0.002501184,-0.028301904,0.008329126,-0.03424604,-0.0035744302,0.0069103613,-0.041242015,0.004026967,0.006396671,0.01378403,0.006243787,-0.027494676,-0.0027427408,-0.003037807,0.028619904,-0.023323998,0.004910637,0.009417661,0.0074118213,0.04919199,-0.012878956,-0.04535154,-0.00390466,-0.016266868,0.0042868704,0.02266354,-0.0024996551,-0.03529788,-0.015924407,0.0057729036,-0.03647203,-0.005604731,0.014395567,0.00051980594,-0.028717749,0.019581396,0.009515506,0.009595006,-0.011087155,-0.022211002,-0.016193485,-0.0497546,-0.03378127,0.0017000712,-0.039676484,-0.018554015,0.011111616,-0.0005305078,-0.047626454,-0.015056026,-0.02923144,0.0009394728,-0.029084671,-0.013967492,0.019874932,0.040703863,0.010940386,-0.021807387,0.019752625,-0.0005702577,0.025806837,-0.02639391,0.015202795,-0.051124442,0.00403614,-0.020474238,0.03329204,-0.012401958,0.041535553,0.0028742212,-0.017049635,0.023776535,0.004479504,-0.004644619,0.025146376,0.040092327,0.0060603255,-0.021146929,-0.022847,0.058952108,0.01713525,0.011527461,0.011698691,-0.0060022296,-0.009215853,-0.015043795,-0.035200037,-0.010683541,0.007711474,-0.041951396,-0.014640181,-0.049094144,0.009619468,0.00074416335,-0.011368462,0.021159159,0.0055863853,-0.02972067,0.0094115455,-0.0025164722,0.00063981995,0.00039329435,0.010451158,0.018761937,-0.0019018783,0.026565142,-0.014897027,-0.014689105,0.00048273156,0.0031203646,0.018896475,-0.016584868,0.0057148077,0.012383612,0.0019431569,0.02553776,-0.02334846,-0.03243589,0.018774167,0.0074668596,0.03089482,0.011661999,0.010885348,-0.011123847,0.020535393,0.03808649,-0.004913695,-0.0024537898,0.014175414,-0.06629055,-0.02301823,-0.010224889,0.04916753,-0.016010024,0.004987079,0.0040514288,0.013514955,0.020070625,0.03424604,-0.047455225,0.0028971536,-0.021758465,-0.037230335,-0.03409927,-0.008457549,0.0037487182,0.036838952,-0.028742211,0.06164287,-0.00949716,-0.02805729,-0.040557094,0.045229234,0.0018254361,-0.020046163,-0.0011642125,0.003721199,-0.024131227,0.02285923,-0.01965478,-0.040043402,0.031359587,-0.04672138,0.021905234,0.026638526,0.013722877,-0.065409936,0.018358324,0.0022963192,0.014738027,-0.010175966,-0.034857575,-0.046354458,-0.013735108,-0.0436637,-0.034392808,-0.019887164,0.012732188,0.008414741,0.014738027,0.0013621973,-0.022076463,0.021183621,0.009802928,-0.024608225,0.031653125,0.0011886739,-0.005317309,0.0035255074,0.010035313,0.008622663,0.007460744,-0.028326366,0.0028008367,-0.010029197,0.03862464,0.01662156,0.04447093,0.03710803,-0.015068257,-0.004250178,-0.023874382,0.02585576,0.031017127,-0.0028100098,0.008053934,0.03209343,-0.014897027,0.020572085,-0.0025439914,0.02135485,-0.010848655,0.023385152,-0.0181504,0.0026984045,0.0023299537,-0.0086777015,0.02382546,-0.02805729,0.032876197,0.0339525,-0.0048800604,0.024999607,0.015068257,0.029109133,-0.026491757,-0.012793342,0.017905787,0.02906021,0.005097156,-0.00040437846,0.035836034,0.04515585,-0.0065373243,-0.0000326312,-0.009221969,-0.026834218,-0.009943582,0.023813227,-0.002586799,0.056652732,-0.038453408,-0.014016414,-0.05058629,-0.00062032725,-0.0072956295,-0.014261029,0.021966388,-0.025757913,-0.012573188,0.0028864518,0.025733452,-0.028130675,0.0032900658,-0.04938768,-0.00012918707,0.016853943,-0.024118995,-0.020082856,-0.0023895786,-0.012224613,0.02048647,-0.018431706,0.022565693,-0.044617698,-0.021416005,-0.010457273,-0.0027809618,0.016022254,-0.009209738,-0.04050817,0.028595442,0.025831297,-0.00002966907,0.024485918,-0.035518035,0.00026964935,0.022027541,0.026296066,-0.024644917,0.0071305144,0.018003631,0.021305928,0.016266868,-0.013196955,0.015435179,0.02183185,0.020535393,0.01545964,0.0060358644,0.03913833,-0.015643101,0.042049244,-0.012304112,0.022455616,0.017722325,0.024241302,0.01731871,-0.015814332,0.006280479,0.025660068,-0.018395016,0.018272707,0.019434627,-0.0003543089,0.025904682,0.004568177,0.01545964,-0.014848104,-0.02383769,-0.016499253,-0.0038893716,0.00014380661,0.0480423,-0.054206587,0.010310504,0.016743867,0.051320136,-0.01664602,0.008879509,0.035811573,0.00965616,0.0044000046,0.010359427,0.02974513,-0.038698025,-0.013906338,0.023213921,-0.01697625,-0.004604869,-0.022076463,0.001225366,-0.011717037,0.008280203,-0.04889845,0.0017780421,0.025415452,0.025733452,-0.007986666,0.022333309,-0.042611856,-0.0017719268,0.030381128,-0.023152769,-0.00026964935,-0.012891187,0.017624479,-0.002510357,-0.00865324,0.02805729,-0.007992781,0.013086879,0.016401406,0.0026984045,0.04434862,0.010928156,-0.020890083,0.009136354,-0.0097050825,0.033022966,0.014297721,0.011717037,0.005396809,0.00050872186,-0.018248247,-0.006210152,-0.010775272,-0.0017489941,0.012695496,-0.032778352,-0.029965283,0.016682712,-0.005286732,-0.020339701,0.01578987,-0.03309635,0.06677978,-0.03089482,-0.013343724,-0.020890083,0.024767224,0.0070571303,-0.02265131,-0.019740395,-0.050097063,0.039872173,-0.013869646,-0.017489942,-0.030772513,-0.011344001,0.021587236,0.006032807,-0.0060114027,0.033683427,0.01914109,-0.020095086,0.03338989,0.00965616,0.04486231,0.023874382,0.046329997,-0.012866726,0.01344157,0.032778352,-0.00990689,0.010983194,0.013417109,0.005604731,0.0010923569,0.016315792,0.005931903,0.002443088,-0.010524541,-0.032044508,-0.024118995,0.0015617111,0.026296066,0.00048311375,-0.021195851,-0.023397382,0.012585419,0.035909418,-0.015263949,-0.02501184,0.0021816562,-0.004604869,0.011215578,0.009160816,0.003935237,0.010481734,-0.0070999376,0.028277444,-0.042905394,0.027763752,-0.016058946,0.015655331,-0.005531347,0.016780559,-0.019520242,-0.001768869,0.0032227968,0.0038587947,0.044984616,0.00066237035,0.009374853,-0.012866726,-0.0061704023,-0.011533577,0.0017902728,0.04434862,0.036080647,0.00323197,-0.011392923,0.011710922,0.012658804,-0.011918845,-0.012163459,0.011203347,-0.024290226,-0.0039474675,0.0007082356,0.019728165,0.01646256,0.02369092,0.020694392,0.030845895,-0.00403614,0.0013316205,-0.010493965,0.012989033,-0.0057729036,0.004614042,-0.026907602,-0.004335793,0.004152332,-0.024767224,0.021623928,0.011344001,-0.030258821,0.0015196679,0.011668115,0.020951238,-0.005497712,0.035346806,-0.004146217,-0.05171152,-0.01932455,0.019862702,-0.005913557,0.041926935,0.029842976,0.02333623,-0.016328022,0.011863806,0.009338161,0.026002528,-0.017771248,-0.0077787433,-0.0015120237,-0.022149848,0.012432535,0.031212818,0.028473135,-0.010090351,0.007020438,-0.0069959764,-0.013172494,0.03275389,-0.0005557337,-0.019581396,0.046012,-0.031799894,-0.018737476,-0.030699128,-0.011191117,0.034490652,-0.043125547,-0.032998506,0.00201807,0.02183185,0.037181415,-0.0029965283,-0.022211002,0.03627634,0.049681216,0.0010885348,0.0094054295,0.015178334,-0.007931627,-0.031041589,0.0030836724,0.0040544863,0.014212106,0.03930956,0.0072283605,-0.012377497,-0.040679403,-0.048996296,0.019251166,0.016951788,-0.0009096604,0.0251953,0.027176678,-0.020621007,0.008280203,0.01444449,0.026124835,0.010964848,-0.034686346,-0.021073544,0.004069775,-0.019385705,0.027103294,0.010493965,-0.029647285,-0.037597258,-0.04921645,-0.029916361,-0.000095887,-0.0022718578,-0.01015762,0.048947375,-0.014456721,-0.0027534426,-0.0363008,-0.00070747116,0.016450329,-0.013991953,-0.024583764,-0.0050176564,-0.05812042,-0.0005106329,0.017184174,-0.051956132,-0.0015257833,0.006616824,-0.04165786,0.011136078,-0.010096466,-0.0030072303,0.011937191,-0.010714117,0.011447961,0.024926225,0.011686461,-0.010010851,-0.010237119,-0.00067612994,0.0032258546,-0.01763671,-0.03380573,-0.002077695,0.017697863,0.009258661,0.010934271,0.011490769,-0.01378403,-0.011973883,-0.011515231,-0.0013132744,-0.031359587,0.03123728,0.030796973,-0.0031463548,0.017930247,0.02923144,-0.025268685,-0.013343724,0.022492308,-0.02888898,0.018761937,0.03965202,0.01948355,0.039725404,0.004189024,-0.029647285,-0.025806837,0.039970018,0.022920385,0.0005377698,-0.012145113,-0.044128466,0.013135802,0.019202244,-0.012102306,-0.020694392,0.018590707,-0.0045742923,0.006118422,-0.0021036852,-0.002808481,-0.00021346443,-0.0066107083,-0.018174862,0.0041767936,-0.0062927096,0.0041339863,0.0017826286,-0.024791686,0.00009254266,-0.012487574,0.048776142,-0.021807387,0.0126221115,0.004589581,0.0000622525,-0.0159611,0.0027717887,-0.00973566,0.010542887,0.017612249,-0.007693128,-0.032827273,0.029842976,0.018346092,-0.030650204,-0.0070448993,0.03177543,0.022284387,0.008744971,-0.0015533025,-0.011068809,0.044544313,-0.003559142,-0.0029002114,0.021978619,0.009215853,0.03380573,0.010536772,-0.037572797,0.0029002114,0.008604317,-0.0067330156,0.00790105,0.070253305,-0.04263632,0.0016113984,-0.02468161,0.0183094,-0.0025363471,0.011301192,0.03615403,-0.0027289812,-0.019275628,-0.025660068,-0.012719957,-0.013233648,-0.014028645,-0.0148114115,0.0073200907,-0.028424213,-0.04170678,0.0012291882,-0.009595006,0.020926775,0.0036814492,0.010377773,-0.011215578,-0.04349247,-0.010377773,0.016597098,0.011967767,0.01344157,0.029794054,-0.017734556,0.026956525,-0.014554567,-0.006989861,0.0325582,-0.010811964,-0.028130675,0.004690484,0.018761937,0.01664602,0.008524817,0.0015135526,-0.0043419083,-0.00027385366,-0.0018881187,0.019104397,0.007937742,-0.014591259,-0.0024553186,-0.021220313,-0.019887164,0.010396119,0.04180463,0.018676322,-0.0024690782,0.033218656,0.03312081,0.042391703,-0.00014409327,-0.0064700553,-0.033732347,0.0050910404,-0.008763317,-0.0019584454,0.04400616,-0.04491123,-0.0024996551,-0.020254085,0.014848104,0.0058065383,-0.01593664,0.014138722,0.0075524747,-0.022100925,0.01849286,0.023128306,-0.007986666,0.010616272,-0.018920936,-0.013025725,0.02031524,-0.02351969,-0.0073628984,0.015410718,-0.008353587,0.012249074,-0.016169023,0.028424213,-0.0059869415,0.04019017,-0.0036264108,0.00046706092,0.008579856,0.01850509,-0.02404561,0.019862702,0.0011160539,-0.02906021,-0.009289238,0.01763671,-0.015166103,0.003819045,0.018174862,0.011178886,-0.024131227,0.037523873,-0.0034184884,-0.002808481,0.007338437,0.0056628273,-0.009680621,-0.010536772,0.0018529553]},{"id":"guide-voice-4","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Getting Stream URLs from YouTube\nUse youtube-dl-exec or yt-dlp to extract a WebM/Opus URL.\n\n```javascript\nimport youtubedl from 'youtube-dl-exec';\n\nconst result = await youtubedl(videoUrl, {\n getUrl: true,\n f: 'bestaudio[ext=webm][acodec=opus]/bestaudio[ext=webm]/bestaudio',\n}, { timeout: 15000 });\n\nconst streamUrl = String(result ?? '').trim();\nawait connection.play(streamUrl);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.020217894,-0.004348312,-0.059868407,-0.028012037,-0.042217307,0.018178523,-0.020757038,-0.017744863,0.009177166,0.0028187847,0.0452412,-0.010659811,0.01763938,-0.041068695,-0.013806771,0.0047204387,0.0019163047,0.008432913,0.011509549,0.014134944,0.0010694973,-0.00451826,-0.015517966,0.050070055,-0.0008621906,-0.04071708,-0.036544576,0.021870486,-0.006247036,-0.0023148023,0.010987986,-0.02127274,0.0056287786,0.0050515435,-0.012376867,-0.02352308,0.036755543,-0.031575076,-0.02105005,0.002985802,0.035841346,-0.006493167,-0.0070323106,-0.016830664,0.03457553,0.044678614,-0.041701604,-0.0057752854,0.04369409,-0.028668387,-0.0050984253,0.040881168,-0.02557417,0.024378678,-0.004477238,0.009024799,0.0029096187,-0.003029754,-0.009769051,-0.05292986,-0.012517514,-0.053258035,0.009393996,-0.023593403,0.017733144,0.019831117,-0.050351344,0.011550571,0.0045211897,-0.0050954954,0.017955834,-0.024566205,0.04191257,-0.012564396,-0.027238484,0.035231877,-0.034763057,0.047655627,-0.040435787,-0.060665403,-0.011714658,0.01946778,-0.06558802,0.0077296817,-0.020030364,0.046999276,-0.05724301,0.000011869313,0.008755227,0.010384379,0.0022561997,-0.029395059,-0.045147434,-0.017627658,-0.011796702,0.0842002,-0.019034121,0.014592045,0.012833967,0.0016394075,0.040084172,-0.02218694,-0.024238031,-0.029301295,0.02421459,-0.025832022,0.049929406,0.017627658,-0.03872459,-0.0069795684,-0.048335418,0.012400308,0.02693375,0.032067336,0.086356774,0.007055752,0.04212354,0.002124344,-0.0096401265,-0.01857702,-0.073042266,0.00520977,-0.006247036,-0.00021921031,0.044444203,0.008520816,0.014345914,-0.040177938,-0.068307176,-0.038138565,0.051804688,0.0016145014,0.03410671,-0.031997014,-0.0043834737,-0.017123677,-0.025245996,-0.021554032,0.031153137,0.10464078,0.032254867,-0.04950747,0.024238031,0.022690922,0.015998507,-0.0026708131,-0.053679973,-0.0041519934,-0.053258035,0.034481764,-0.035630375,-0.0013507897,-0.033169065,0.034294236,-0.037740067,-0.017369809,0.013232465,0.03122346,-0.030051408,-0.025644494,-0.0042252466,0.033591006,0.033192508,0.046671104,-0.008116459,0.044327,0.02669934,-0.013291067,-0.007975812,0.054430086,-0.015119468,0.023698887,-0.019842837,-0.017041633,-0.036568016,-0.01740497,-0.016924428,-0.027332248,-0.012998055,-0.0064169834,-0.0010189526,-0.000021529584,-0.0035190855,-0.04960123,-0.0075187124,0.0009779307,0.027894832,0.016994752,0.0042662686,0.00032469496,-0.015236674,0.020745317,-0.020885963,0.014697529,-0.042615805,0.03980288,0.04003729,-0.03120002,0.07224527,-0.0007889374,0.010190991,0.021600915,-0.015166351,-0.047139924,-0.05930582,0.012822247,-0.0029989874,0.017100235,-0.014756132,0.022339307,0.023675447,0.021589193,0.03689619,0.012740203,-0.035184994,0.010009322,-0.006938547,0.018260567,0.0009522921,-0.01605711,-0.024261473,-0.015893022,0.023335552,0.012048692,-0.016912708,0.007817586,0.025972668,-0.028316772,0.026207078,0.0013749633,0.018178523,-0.016021948,-0.030918727,-0.0030414744,0.032020457,-0.021636076,0.03328627,0.024355236,0.014216988,-0.016021948,-0.011960789,-0.032536156,0.019866278,0.008116459,0.064040914,-0.006282198,-0.007313603,-0.1129858,0.005089635,0.027472895,0.027191602,0.023288669,0.01199595,-0.033192508,0.04254548,-0.018588742,-0.068072766,0.012353426,-0.0262774,-0.007975812,0.004283849,-0.0086790435,-0.01334967,-0.030473348,-0.020698436,-0.00451826,-0.02960603,0.013068378,0.046202283,-0.006206014,-0.016959589,-0.023065979,0.038748033,-0.009347113,-0.03595855,0.015775817,0.037013397,0.020030364,0.010372658,0.01199009,-0.008684904,-0.00055159687,-0.067135125,0.0070967735,-0.0015339227,-0.01561173,-0.0077003804,-0.021577474,-0.028410535,0.017252602,-0.00723742,0.0127284825,0.029676352,-0.055789664,-0.0029110836,0.032395512,0.054430086,-0.0059862547,0.006293918,0.037599422,-0.0054031587,-0.013830211,0.01740497,0.015682053,-0.015541407,0.046694543,-0.0006091007,-0.01334967,-0.028363654,-0.024308354,0.04186569,0.023663726,-0.002081857,0.046507016,0.021190697,0.0011244372,0.022362748,0.017322926,-0.026113315,-0.024988145,0.017252602,-0.0043951944,0.020546068,0.011116912,-0.00073399744,0.017463572,-0.0027513916,-0.04024826,-0.020100689,-0.012060413,0.0045329104,0.008995498,0.01605711,-0.01130444,-0.013877094,-0.004348312,-0.013162142,0.00093983905,-0.009552222,0.019268531,-0.058790118,-0.020616392,-0.013173862,-0.0055643157,-0.023230067,0.023851255,0.009528781,-0.034481764,0.016361844,0.021237578,-0.035395965,-0.03886524,-0.017264323,-0.0077238213,0.035677258,-0.0084797945,0.0032319329,-0.028855916,0.0185653,-0.001110519,-0.02215178,0.004324871,-0.020311657,0.047679067,-0.0021155535,0.01447484,-0.023206625,0.0035571773,0.010935243,-0.027613541,0.03785727,-0.014017739,0.022667482,0.038091682,-0.027308807,-0.0077765635,-0.020850802,0.021096932,-0.028621504,0.07201086,-0.005523294,0.055977196,-0.002329453,-0.06465038,-0.036966514,-0.01991316,0.011908046,0.030871844,0.011251697,-0.020757038,0.048288535,-0.01063051,0.0005168016,-0.0101206675,0.025081908,0.0066572544,0.028598065,0.022011133,-0.01358408,-0.03436456,0.059399586,0.036052313,-0.0064638657,0.028387094,0.029066885,0.047233686,0.029934203,0.043342475,-0.018893475,-0.029137207,0.033450358,-0.023687167,0.059633996,-0.017123677,0.035583492,0.033825416,0.042170424,0.015306996,0.045194317,0.026746223,-0.019526383,0.006469726,-0.016889267,0.03956847,0.0037447056,0.030918727,0.03218454,-0.027308807,0.054852024,0.0011991555,-0.038162008,0.006967848,0.037013397,0.019327134,-0.030942168,-0.01356064,-0.02195253,0.00655763,0.0045094695,-0.006967848,-0.036075756,0.0024847498,-0.030637434,0.0398732,0.00027982736,0.031176578,0.0125292335,-0.016584532,0.008749367,-0.030871844,0.00087537616,-0.0061415513,-0.0029565007,0.021565754,0.058227535,-0.039123088,-0.0004395194,-0.04960123,-0.019584985,-0.018635623,-0.0004395194,-0.029770115,0.010917663,0.0038501902,-0.0018445165,-0.0325596,0.013220744,-0.02440212,-0.051945336,-0.02378093,0.068072766,0.004113902,-0.06436908,0.013068378,-0.021507151,-0.040435787,0.019303693,-0.05161716,-0.016139153,-0.008573559,0.004594443,-0.015529687,-0.070182465,0.023616843,-0.020569509,0.061696805,0.043530002,-0.0061708526,-0.004365893,-0.06300951,-0.008907594,-0.005995045,0.023616843,-0.010577767,-0.02106177,0.017990995,-0.06357209,0.0004732159,0.035161555,0.000060891754,0.0067744595,-0.052367274,-0.022913612,0.038091682,0.080590285,-0.031832926,0.019784234,-0.054383203,-0.03305186,0.018459816,0.0024774245,-0.030754639,-0.017944112,0.009517061,0.003533736,0.022315865,0.005675661,-0.00092958356,0.001074625,0.026863428,-0.050632637,0.026300842,0.030660875,0.00860286,-0.039216854,0.03933406,0.03933406,-0.025503848,0.013337949,0.0056053377,0.012763645,-0.0041109715,-0.022995656,-0.03288777,-0.007213979,-0.0051277266,0.014615486,-0.01924509,-0.042217307,-0.023687167,-0.015049146,-0.0016145014,-0.054195676,0.0076827994,0.006909245,-0.040412348,0.022772966,-0.007946511,0.013080098,0.008526677,0.0120838545,-0.026511813,-0.038513623,0.0036538716,0.008626301,0.042850215,0.011732238,-0.034153588,-0.027285365,-0.013935696,0.003964465,-0.053351797,0.0102437325,0.0030209636,-0.0035923389,-0.030989049,0.000019698253,0.01969047,0.029254412,0.02465997,-0.0028817824,-0.04500679,0.017264323,0.0035220156,0.010448841,0.0024349375,0.014533442,0.0034897842,-0.025152232,0.028387094,-0.025175672,-0.015764097,0.011251697,0.0019368156,0.032254867,-0.017428411,-0.012763645,-0.02148371,0.0010848804,0.009915559,0.052789215,-0.010249593,-0.03480994,0.003961535,-0.02215178,-0.007354625,0.041771926,-0.014357635,0.00062265253,-0.039966967,0.0069326865,0.02468341,0.045991313,0.03668522,0.025925785,0.015471084,0.0037447056,0.0035894087,-0.003507365,0.001971977,-0.037669744,-0.015002263,-0.011591592,-0.053539325,0.026793104,0.024284914,-0.05588343,-0.018237125,0.040131055,0.0144513985,-0.025199113,-0.018518418,-0.011491968,0.044491086,0.006288058,-0.022409631,-0.021554032,-0.0009947789,-0.037411895,-0.0048728054,-0.018705947,-0.0055731065,0.013783329,-0.00006881226,0.026418047,-0.04390506,-0.016994752,-0.025456965,0.014697529,-0.035231877,0.0142521495,0.0040582293,0.041326545,0.02871527,-0.012048692,-0.039005883,-0.015424201,-0.013314509,-0.024378678,-0.012236221,-0.018436374,0.0398732,0.021823604,0.030051408,-0.0039380942,-0.0049138274,-0.010929383,0.0020012786,-0.03300498,-0.006270477,-0.05527396,0.033169065,-0.021108653,0.003486854,-0.036802426,0.013877094,0.022093177,0.025691375,-0.060946696,-0.011392344,-0.038068242,-0.021389944,0.02378093,-0.013150421,0.025175672,-0.062306274,-0.0072550005,-0.020921124,0.0036773125,0.025785139,0.00004198326,0.01718228,-0.04866359,-0.014885058,-0.007788284,-0.0018928637,-0.022327587,-0.03185637,-0.0064111236,0.036497694,-0.015482805,-0.021448549,0.009095122,0.010208571,0.008432913,0.05503955,0.03863083,-0.0072550005,0.006856503,-0.049413703,-0.0024598436,-0.022351028,-0.06047787,-0.013455154,-0.020405421,0.015400761,0.00040325907,-0.02374577,0.023417596,-0.023194905,-0.016596254,-0.0079172095,-0.05044511,-0.027238484,-0.03682587,-0.0021829465,0.00018606322,-0.039685674,0.021530591,-0.01967875,0.008995498,0.038044803,-0.05400815,-0.0037505657,-0.022444792,0.0046178843,-0.045967873,0.0059364424,-0.021378225,-0.006135691,-0.025081908,-0.002263525,-0.029277854,-0.025738258,-0.033637885,0.01740497,-0.016232917,-0.012353426,0.009100982,-0.048382297,0.026816545,-0.006088809,-0.006288058,0.027261924,0.010302335,-0.029207531,0.022550277,-0.024238031,-0.031340666,0.015072586,-0.029816998,0.006739298,-0.037669744,-0.006440425,0.008386031,-0.06193122,0.011245837,-0.02510535,0.004122692,0.014099783,-0.037505656,-0.004773181,0.019924881,0.03141099,-0.015764097,-0.005971604,-0.01041954,-0.017569056,0.058837,-0.0059628137,-0.06038411,0.003598199,0.0003602228,0.008327428,0.023909857,-0.0038619107,-0.05292986,0.0015954556,-0.0008805039,-0.031809486,0.006200154,0.005678591,-0.0034516926,-0.018717667,0.01608055,-0.0023016168,0.0075948955,0.012294823,-0.023265228,-0.0006303441,-0.008966196,-0.010126527,-0.0023191974,-0.0371306,0.01109933,-0.018729389,-0.013326229,-0.071588926,-0.04003729,-0.023569962,0.00046515805,-0.010290615,-0.005590687,0.0042633386,0.036310166,-0.01899896,-0.012693321,0.01652593,0.013302788,0.022667482,-0.038419858,0.022140058,-0.030754639,0.03300498,-0.02308942,0.008221943,-0.033098742,0.008180922,-0.0039175833,-0.037880715,0.031340666,0.0006545177,-0.0063056387,0.0162798,0.015377319,0.009657707,-0.047444656,-0.025738258,0.056867953,0.019831117,0.008040275,-0.014134944,-0.0040875305,-0.02037026,-0.0058397483,-0.027097838,-0.015682053,0.00905996,-0.024050502,-0.013267626,-0.06319703,0.00903652,-0.003144029,-0.016537651,-0.0036216401,0.008257105,-0.015435922,0.0020540208,-0.0017756585,-0.03687275,-0.0136895655,-0.012986334,0.015400761,-0.012740203,0.0083567295,-0.020393701,-0.016854106,0.009933139,0.011427505,0.022233823,-0.027801068,-0.010900082,0.014580324,-0.008298127,0.027074397,0.016209476,0.005561386,0.016397005,0.006809621,0.027894832,0.014345914,0.013724727,-0.018612182,0.0017917742,0.033825416,-0.0052361414,0.019725632,-0.013455154,-0.038818356,-0.014744411,0.0065927915,0.03464585,-0.03187981,-0.029371617,0.027894832,0.0013075703,0.04950747,0.032137662,-0.042850215,-0.00972803,-0.025456965,-0.053445563,-0.025902344,0.0038501902,-0.01697131,0.010314056,-0.017967554,0.060196582,-0.0030854263,-0.021577474,-0.015482805,0.033380035,0.018131642,-0.009645986,0.0032963958,0.0064814463,-0.034974027,0.0053709275,0.0043512424,-0.029981084,0.021659518,-0.034458324,0.006762739,0.019737352,0.0052127005,-0.01945606,0.017662821,0.0027220903,0.017475292,-0.009628406,-0.029254412,-0.027308807,-0.009751471,-0.025035027,-0.019268531,-0.050023172,0.014592045,-0.005324045,0.021811884,0.012259662,-0.0049900105,0.019995203,0.0143693555,-0.032231424,0.021975972,-0.0033286272,0.006047787,0.015963346,0.011931487,-0.0007918675,0.03169228,-0.028598065,0.01651421,-0.006270477,0.035888225,0.0073429043,0.037013397,0.066431895,-0.0065634903,-0.019303693,-0.01562345,0.006991289,0.0070205904,-0.003932234,0.006206014,0.040154494,-0.041373428,0.0072315596,0.023124581,0.013220744,-0.004843504,0.03755254,0.013279347,0.005019312,0.008667323,-0.017240882,0.036286723,-0.047421217,0.026605576,0.021659518,-0.011503688,0.042217307,-0.00028403942,0.027074397,0.0025389572,-0.006651394,0.033567563,0.028433977,0.012705041,-0.013666124,0.024027063,0.03574758,-0.00057870056,-0.0137716085,0.004658906,-0.01220106,-0.0020979727,-0.01538904,0.010360938,0.060899813,-0.035583492,0.0019793024,-0.027308807,-0.013396552,-0.011790841,-0.02327695,0.009183026,0.013419993,-0.007331184,-0.003029754,0.033403475,-0.02082736,0.0052888836,-0.04111558,0.021143815,0.0055291546,-0.016314961,-0.023230067,0.000063684536,-0.005476412,0.028387094,-0.031668838,0.008186782,-0.0334738,-0.027847951,-0.023862975,-0.023827814,0.017135397,-0.010530885,-0.014181827,0.018178523,0.0050310325,-0.006727577,0.028035479,-0.053070504,-0.0016086411,0.010196851,0.022081455,-0.014638927,0.014580324,0.030098291,0.014744411,-0.015939904,-0.008790389,0.026136756,0.018354332,0.022667482,-0.0019793024,0.0015910603,0.024894381,-0.040318582,0.049788762,0.021929089,0.016408725,0.00062558264,0.034012944,0.027332248,-0.015939904,0.017287765,0.00792307,0.010155829,-0.0035923389,0.022034574,-0.012576116,0.0044596572,0.024777176,0.002058416,-0.002852481,-0.025738258,-0.014674089,-0.007887908,0.01290429,0.041303106,-0.05292986,0.0053972984,0.002078927,0.054430086,-0.006727577,-0.012283103,0.018272288,0.032207984,0.00039410242,0.0057313335,0.0066162325,-0.022573717,0.004817133,0.021647796,-0.026066432,0.010308196,-0.015975066,-0.00074242154,-0.0049665696,-0.017498733,-0.04903865,0.0032202124,0.003920513,-0.012177618,-0.009558083,0.024120826,-0.035395965,0.005476412,0.0047438797,-0.029582588,0.0028554113,-0.02852774,0.007788284,0.01538904,-0.041982897,0.0144513985,-0.006651394,-0.0167369,0.0144513985,-0.0026649528,0.02327695,0.00016481978,-0.0062235952,-0.00007165082,-0.0017243812,0.018823152,0.019549824,0.01470925,-0.010478143,-0.0014540767,0.017545616,-0.0032817451,-0.017264323,-0.0072432803,-0.0007398577,-0.031786043,-0.027285365,0.016490769,0.022561997,-0.03434112,0.026605576,-0.019596705,0.054055028,-0.019737352,0.005271303,-0.017955834,0.00905996,-0.017662821,-0.021636076,-0.016232917,-0.02129618,0.043154947,-0.00095522223,-0.017358087,-0.012036972,-0.018190244,0.00927679,0.0015251325,-0.00087830634,0.034927145,0.017369809,-0.0132090235,0.026839986,0.013830211,0.03931062,0.004324871,0.07051063,-0.016021948,0.027426012,0.02735569,-0.002514051,0.013490316,0.0026063502,0.0011456807,0.017018192,0.009218187,0.0062353155,0.013021495,0.0039293035,-0.04435044,-0.01584614,0.023159744,0.026746223,0.014322473,0.0007460842,-0.00089222443,0.013572359,0.052414156,-0.009458458,-0.022280704,-0.013337949,0.012154177,0.017615939,-0.014814734,-0.001719986,0.011650195,-0.0077765635,0.009692868,-0.03729469,0.031129695,-0.008667323,0.017826907,-0.016561093,0.010999707,0.009757332,-0.011702937,0.00407288,-0.003258304,0.032137662,0.022292426,0.030496787,0.0121658975,-0.021190697,-0.009991742,0.0033462078,0.040623315,0.03687275,-0.019198209,-0.003533736,0.0075187124,0.008333288,-0.03366133,-0.002172691,0.004321941,-0.030215496,0.010835619,-0.022761246,0.02102661,0.018248847,0.005072054,0.016807223,0.014345914,0.0075421534,-0.0048962464,0.016197756,0.027074397,-0.010501584,0.0075714546,-0.0538675,0.005813377,0.016959589,-0.021624357,-0.0015075516,-0.012294823,-0.03919341,0.005707892,0.020452304,-0.015025704,-0.015342158,0.031317223,-0.01517807,-0.055320844,-0.01176154,0.022784688,-0.008315708,0.005707892,0.033778533,0.035888225,-0.014838176,-0.00032341306,0.004843504,0.007864468,0.0024364027,-0.007213979,-0.005971604,0.014638927,0.027191602,0.034552086,0.010589488,-0.019209929,-0.015306996,0.0007947976,-0.02693375,0.015435922,0.03691963,0.019960042,0.03373165,-0.02552729,-0.03799792,-0.0029037583,-0.019924881,0.012271382,-0.03007485,-0.0338723,0.019631868,0.023019098,0.036263283,-0.0055350144,-0.0046471856,-0.0003944687,0.033637885,-0.006815481,0.035091233,0.0004743147,-0.013853652,-0.01899896,0.022245543,-0.014674089,0.014427958,0.029395059,-0.014205268,-0.0316454,-0.051242106,-0.037904155,0.014779573,0.0119256275,-0.018436374,0.008415332,0.025550729,-0.0053504165,-0.028269889,-0.0032260725,0.030215496,0.013630962,-0.044913024,-0.014603766,-0.019374017,-0.00791135,0.043037742,-0.0010350683,-0.026300842,-0.0257617,-0.047139924,-0.029301295,0.029934203,-0.010571907,0.012423749,0.029629469,0.010378519,-0.029770115,-0.060196582,0.009341253,0.03443488,0.004166644,-0.04212354,0.004638395,-0.03185637,0.030426465,0.00746597,-0.035606932,-0.01538904,-0.032676805,-0.04662422,-0.001649663,-0.02194081,0.014205268,-0.0077414024,-0.030801522,0.021706399,0.039732557,0.016139153,-0.017721424,0.012036972,0.008972056,0.011509549,-0.0064990274,-0.025081908,0.0029901972,0.027449453,0.00029978887,0.0022796406,0.046436694,0.006422844,0.013255906,0.008098878,0.011322021,-0.047304012,0.040295143,0.025456965,-0.033426918,0.013666124,0.011351322,-0.022925334,-0.0008614581,0.003325697,-0.02421459,0.018178523,0.04435044,0.012869129,0.012775364,-0.035677258,-0.04095149,-0.019139607,0.041982897,0.0008731786,-0.0039498145,0.0066631143,-0.035817903,0.002241549,0.021401666,0.011972509,-0.028738711,0.01018513,-0.016725179,-0.013220744,-0.0034897842,0.0009347113,-0.01809648,0.00049006415,0.003639221,-0.00860286,-0.0015544337,0.009517061,0.001381556,-0.00950534,0.020850802,-0.0032319329,0.048991766,-0.01768626,0.030848403,0.020968007,0.0045387708,-0.012247941,0.009446737,-0.016549371,0.011239977,0.0111637935,-0.01741669,-0.03305186,0.025175672,0.01402946,-0.013666124,-0.01018513,0.03755254,0.008427053,0.029699793,-0.00036992886,-0.039474703,0.029090326,0.017041633,-0.0064111236,0.020921124,0.00679204,0.026675899,-0.0058954204,-0.052742332,-0.0014775178,-0.018823152,0.0070088697,-0.0026166057,0.04048267,-0.03537252,-0.010308196,-0.015330438,0.029301295,0.015002263,0.0011383554,0.038419858,-0.027027514,-0.038583945,-0.068072766,-0.029746674,-0.029277854,0.00062704773,0.008567698,0.0065048877,-0.023183184,-0.023464477,-0.0016218267,-0.024495883,0.021167256,-0.0076593584,0.004392264,0.0035015047,-0.043740973,-0.014908499,0.0018533069,0.023171464,-0.0049226177,0.008421192,0.0016716389,0.016596254,-0.012962893,-0.005901281,0.01697131,-0.022362748,-0.012095574,0.016959589,0.03300498,0.019819396,0.0070909136,0.00498415,-0.0077707036,-0.013841932,0.007131935,-0.0018796781,0.022081455,0.0033989502,0.011146213,-0.014826455,-0.028598065,0.005543805,0.038091682,0.020686714,-0.017065074,0.0141701065,-0.0012431075,0.027004074,0.017029913,0.002940385,-0.0027030446,-0.022351028,-0.02106177,-0.008784528,0.026675899,-0.053586207,0.0023719398,-0.035606932,-0.010542606,0.004869875,0.009235769,0.014732691,0.021307902,-0.0321611,0.039755996,0.019362295,0.010771156,-0.017041633,-0.0077238213,-0.006311499,0.0096811475,-0.011978369,0.016854106,0.02219866,-0.016385283,0.03218454,-0.039287176,0.051195223,0.0004937268,0.042334512,0.0060126255,-0.024425559,0.013068378,0.01901068,-0.017393248,0.026793104,-0.017569056,-0.012107295,-0.0017463572,0.0014321008,0.0038736311,0.008362589,0.024542764,0.004664766,-0.008186782,0.03785727,-0.005502783,-0.0049870806,-0.006358381,-0.006047787,-0.008221943,-0.023288669,0.0073253238]},{"id":"guide-voice-5","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Volume Control\nLiveKitRtcConnection supports setVolume(0-200) and getVolume(). 100 = normal, 50 = half, 200 = double. Affects current and future playback.\n\n```javascript\nimport { LiveKitRtcConnection } from '/voice';\n\nif (connection instanceof LiveKitRtcConnection) {\n connection.setVolume(80); // 80% volume\n console.log('Current volume:', connection.getVolume());\n}\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.034728464,-0.030164296,-0.018307664,-0.013985729,-0.03067426,0.0011976156,0.002095628,0.016165819,0.0056956466,-0.020067034,-0.016038328,0.008937097,-0.021851905,0.022081386,0.021545926,0.018906869,-0.044443253,0.022642346,-0.0052271183,-0.000024327814,-0.008395262,-0.02027102,0.0023203306,0.035544403,0.00066972454,-0.020181775,0.018154673,0.03735477,0.01089408,-0.046508603,0.021507679,-0.03449898,0.015439122,-0.082256995,-0.031133225,-0.028812895,0.028685404,-0.0011274958,-0.032382634,-0.017287737,0.0068908716,-0.025013672,-0.017682958,0.03585038,0.049670372,-0.00011763008,-0.009147457,0.0039394624,-0.031974666,0.0013976167,-0.023063065,0.007196849,-0.033912525,-0.004484485,0.04574366,0.025268653,0.0042135674,-0.030368282,0.01560486,-0.002905194,0.0015681355,-0.04342333,0.008497254,-0.017134748,0.0010143478,0.030699758,-0.028736401,-0.0075219506,0.015413624,-0.0032430443,0.0024653513,0.01410047,-0.060838558,0.01615307,-0.027741974,0.024592953,-0.018932367,-0.0081721535,-0.004965762,-0.033173077,-0.012717196,-0.04531019,-0.06308239,-0.0063267252,-0.0014645492,0.00021135565,-0.046049636,-0.034447983,0.02232362,-0.0028781022,-0.017963437,-0.04875244,-0.03052127,0.02547264,0.012908432,-0.007706812,0.046483103,-0.011308424,0.034575474,0.011391293,0.060736563,0.02245111,-0.0013625567,-0.031235218,0.030215293,0.017568218,-0.0047426536,0.008235899,-0.034320492,-0.011506035,-0.030776251,0.0014055849,0.011308424,0.00037251186,0.010964199,-0.037533257,0.037023295,-0.04954288,-0.029220866,-0.04077152,-0.0698649,-0.04217392,0.02669655,-0.029246364,0.052781146,-0.030087803,-0.0107347155,-0.0024589766,-0.052730147,0.007681314,0.032331638,0.0034549977,0.04161296,-0.018001685,-0.0075601977,-0.0056733354,-0.0014095689,0.030470274,-0.013437519,0.02602085,0.005985688,-0.02656906,0.02845592,-0.013794492,0.0033083833,0.03449898,-0.037431266,0.014954657,-0.044545244,0.022055889,-0.048981924,0.018562645,-0.04571816,-0.01752997,-0.015834343,0.032102156,0.02506467,0.035442412,-0.081900015,-0.015018403,0.0070566097,0.014087721,0.043040857,-0.042403404,-0.031235218,0.03243363,-0.0051506236,0.022565851,-0.042148422,0.028583413,-0.02998581,0.006502025,0.0025290966,-0.06955892,-0.002135469,-0.037048794,0.0052749272,0.012545084,-0.044698235,0.0328416,0.012538709,0.00084223534,-0.04217392,-0.0021322817,0.000030752148,0.024860684,-0.03998108,0.035110936,0.01438095,-0.06216446,0.021647919,-0.018588142,-0.0012956241,0.06950792,-0.008376138,0.019659065,0.024707695,0.0066358903,-0.021035964,-0.035671894,-0.00041553995,0.02176266,0.013424769,-0.099442735,-0.0492624,-0.058645718,0.0020844727,0.034830455,0.03120972,0.001778495,0.022553103,0.048726942,-0.004745841,-0.016688531,-0.070680834,0.052934133,0.00019382569,-0.0122837275,-0.018307664,0.017835947,-0.02013078,-0.035697393,0.03516193,0.0054916614,-0.011359421,-0.00038605774,0.023649523,-0.005797639,0.025549134,-0.034116507,0.016790524,-0.004293249,-0.04148547,0.0009705229,-0.004851021,-0.028251937,0.007738685,-0.004200818,0.011212806,-0.007566572,-0.013437519,-0.02121445,0.02177541,0.011914005,0.020576997,0.023585778,0.0037131663,-0.048573952,0.0070566097,0.011263803,0.009102835,0.021622421,0.027971458,0.005988875,0.013679751,-0.017504472,-0.041434474,0.04120499,-0.012800065,-0.022425612,-0.008586498,-0.047605023,-0.048624948,-0.026071846,-0.0055075977,-0.034269497,-0.024197733,0.034243997,-0.00746458,-0.0104606105,-0.046483103,-0.023369042,0.01819292,0.017593715,-0.02301207,0.0068398756,0.03748226,0.011302049,-0.006033497,0.039955582,-0.03409101,0.008650243,-0.039955582,-0.01740248,0.027588984,0.0034422486,-0.01615307,-0.00009038891,0.0225786,-0.023980998,0.050792288,0.01171002,0.038272705,-0.03888466,0.03505994,0.07297567,0.044264767,-0.033173077,0.011168184,-0.021596922,0.020347513,-0.00318408,0.0152988825,-0.0010844676,0.01410047,0.073179655,0.016765025,0.017415227,0.0112829255,-0.011142686,0.04984886,0.086030714,0.020882975,0.00475859,-0.0072478456,-0.018919619,0.013641504,0.01724949,0.027385,-0.016726779,0.0029673458,-0.025447141,0.025931606,0.0042613763,0.066499144,-0.010046266,-0.0060048113,-0.02464395,-0.008235899,-0.036054365,0.00944706,0.0060207476,-0.012519586,0.025804115,0.013463017,-0.009357817,-0.027461493,-0.006903621,-0.075066514,-0.012857436,0.031107727,0.04186794,-0.05035882,0.0051219384,0.022680594,-0.0003079697,0.0015840718,-0.04133248,0.033632044,0.0054438524,-0.033912525,0.014890912,-0.008886101,-0.015031152,0.007266969,-0.042505395,0.04778351,-0.043627314,-0.035926875,0.014852665,-0.07266969,-0.011850259,0.0055554067,0.00787255,-0.01505665,0.025039172,-0.047528528,-0.024835186,0.00016404466,-0.052934133,0.055636935,-0.026722047,0.020768233,0.010976948,-0.017568218,-0.04286237,0.011690896,-0.00065817067,-0.017083753,0.034702964,0.005692459,0.008994468,0.0042996234,-0.0051346873,0.0003280893,-0.01225823,0.016357055,0.044953216,-0.020997716,0.014903662,0.024006497,-0.0019952292,-0.031311713,0.017338734,0.053699076,-0.009185704,0.032051157,0.04235241,0.015005654,-0.027028026,0.032790605,0.007547449,-0.045947645,0.06823301,0.015923588,-0.010607225,-0.017351482,0.04077152,0.041434474,0.003770537,0.056197897,-0.02039851,0.023267051,-0.03108223,0.04602414,0.0006625532,0.029475847,-0.020589747,0.02353478,0.0067123845,-0.05477,0.005389669,-0.0016278967,-0.014444695,0.050333325,0.05997162,-0.018371409,0.03248463,0.033453558,-0.036895804,-0.007745059,0.00626298,0.026441569,0.01116181,0.015184141,0.008006415,-0.036309347,-0.009886903,0.017198494,-0.032102156,-0.0071012313,0.017236741,-0.027869465,-0.034728464,0.01547737,0.029220866,-0.007266969,-0.024172233,0.003470934,0.018511647,-0.049491886,0.034269497,-0.02232362,0.053954057,-0.012443091,-0.019059857,0.057370808,0.0099124005,-0.017682958,0.0006004014,-0.047834504,0.012417593,0.0025338775,-0.0219029,-0.023432788,0.018549895,0.035544403,0.0035824883,-0.06787604,-0.012984927,0.011467787,-0.0058390736,0.039369125,-0.012615204,0.005536283,-0.010925952,0.037711747,-0.01656104,-0.0037864733,-0.025765868,0.005593654,0.04120499,-0.041561965,0.026722047,0.08103308,0.07593346,0.03161769,0.0073434636,-0.052271184,-0.0629804,-0.015286134,-0.02792046,0.018511647,-0.013896485,0.06032859,0.011442289,-0.027767472,0.029934814,0.038680676,-0.0369468,0.04235241,-0.016688531,-0.0029769077,0.06007361,0.03531492,0.036054365,0.06517324,-0.03942012,-0.037737243,0.01956982,-0.03080175,-0.05107277,-0.028430423,-0.058951695,-0.024388969,0.013667001,0.0055044102,-0.0016446299,0.020194525,-0.0059091933,-0.04367831,0.004854208,0.0054215416,0.027716475,-0.0034518105,-0.003974522,0.022884578,0.0071012313,0.005431103,-0.014278957,0.014814418,0.001813555,-0.031541195,-0.021673417,-0.024809688,0.04092451,0.054820996,0.009000842,0.01012276,0.013730747,-0.0052558035,0.025944354,-0.0040255184,0.016624786,-0.019480577,0.0105498545,0.024274226,-0.01259608,0.005023133,0.010097262,0.024465462,-0.0058677588,-0.020322016,0.0035952374,0.014737924,-0.00066295156,0.038859162,-0.010492483,-0.004666159,0.0064446544,0.021826405,-0.024682198,0.015005654,-0.028022453,0.00013037915,-0.052143693,-0.000808769,-0.008752236,0.011442289,0.019748308,0.0054789125,0.004627912,0.019314839,0.02368777,0.0035633647,-0.033147577,-0.0010557823,-0.0011832729,0.03926713,0.012780941,-0.004615163,-0.013361024,0.023840759,-0.0037737244,-0.030164296,-0.009612798,-0.0078980485,-0.017886944,-0.004739466,0.0019792928,0.021061461,0.026645554,-0.01983755,0.017670209,-0.011059817,0.016446298,-0.004283687,-0.008541876,0.012162612,-0.015464621,-0.027537988,0.026773045,-0.012506836,0.027614484,-0.003792848,0.0072605945,-0.019773806,-0.015783347,0.013896485,0.0232798,0.0067187594,-0.02367502,-0.028965885,-0.031439204,-0.044468753,-0.042122923,-0.0029163496,0.024031995,0.026543561,0.010148259,-0.05232218,-0.014546688,-0.029322859,-0.0026741172,0.03365754,0.039955582,-0.007891674,-0.0019139539,0.03409101,-0.025153913,0.01532438,0.024286976,0.011933128,-0.022744339,0.009631922,-0.06496926,0.007075733,0.00045418556,0.022833582,-0.054413024,0.06537723,-0.0054820995,0.02848142,-0.011525158,0.006498838,-0.0035761138,-0.0342185,-0.01834591,0.0021386563,-0.007120355,0.014444695,-0.022425612,-0.015413624,0.00015019996,-0.0022629597,-0.007694063,-0.037864733,-0.012302851,0.017899692,0.0033338815,-0.027945958,0.023458287,-0.0038661552,-0.0040828893,-0.013794492,0.013909234,0.005593654,0.012321975,-0.0027059899,-0.018320411,-0.031541195,0.026875038,-0.0022868642,-0.0191746,0.03200016,0.020921221,0.0020908474,-0.015706852,0.010562603,0.013399271,0.0012502056,0.014623182,-0.05691184,-0.008937097,-0.01424071,0.014329953,0.010103637,-0.00007146451,0.008089284,-0.018027183,-0.034600973,0.041995432,0.00010348658,0.020576997,-0.037176285,0.041179493,0.03449898,-0.0049880734,0.039496616,-0.04158746,0.009408813,0.00081315154,-0.017440725,-0.016331557,-0.037660748,0.030776251,0.03954761,-0.022820832,0.026620055,-0.020704487,-0.0102757495,0.011563405,-0.027130019,0.0063713472,0.013220784,0.033504553,-0.045259193,-0.036895804,0.041026503,0.0013123573,-0.021061461,0.027283007,-0.0013609631,-0.004749028,-0.0042295037,0.019353086,-0.019340338,-0.0029721267,-0.010231128,0.043856796,0.033632044,0.017466225,0.0019346712,-0.0016231159,-0.024835186,0.023738766,-0.055636935,-0.01601283,-0.015464621,-0.024682198,0.0012263011,-0.0042295037,0.005590467,0.03903765,-0.0137434965,-0.020729985,0.034320492,-0.015043901,-0.0725677,-0.04640661,-0.01740248,0.009217577,-0.0013577758,-0.007515576,0.020589747,-0.018537145,-0.018090928,-0.032331638,0.005988875,0.0023681396,-0.020589747,-0.0328671,-0.0026470255,0.0382982,0.0084462585,0.013463017,-0.025255905,-0.02779297,0.03358105,-0.0014772983,-0.025855111,-0.02437622,0.0035378665,0.007158602,0.019761056,-0.020054284,-0.041434474,-0.0107347155,0.018460652,-0.035340417,-0.010039892,-0.012978552,-0.004321934,-0.043295838,0.01670128,-0.034116507,0.039624106,-0.00875861,-0.011608027,-0.0031522072,-0.028991383,-0.0107283415,-0.020156277,-0.029322859,-0.0058996314,0.032051157,0.009778536,-0.07037486,-0.015184141,-0.02955234,-0.045488678,0.005772141,0.0050645676,-0.007470954,0.023853507,0.009670169,-0.0232798,0.011333922,0.0015498087,0.025039172,-0.02178816,-0.03684481,-0.03998108,-0.012972177,0.011378543,0.05655487,-0.0040733274,-0.012940304,0.022948323,-0.0024605703,0.028277434,0.00465341,0.021928398,0.008726737,0.009019966,0.038655177,0.027334003,-0.009918775,0.036666322,0.022604099,-0.008184902,-0.0044048033,-0.013055046,-0.010339495,-0.037278276,-0.033071086,-0.048854433,-0.0050071967,-0.03064876,0.01012276,0.022400115,0.036462337,-0.010957825,-0.040210564,0.040746022,0.0012621578,0.000007544859,0.028302932,0.020079784,-0.0037036045,-0.03641134,0.03939462,0.059512652,-0.007955419,0.026747547,-0.0057083955,0.0029641585,0.034167506,0.031821676,0.022132384,-0.012678949,0.010830333,-0.022119634,-0.02517941,0.011015195,-0.0066040177,0.002852604,0.01012276,0.019518824,0.03806872,0.026773045,-0.0047171554,0.009702042,0.009166581,0.0032701362,0.012060619,0.0033785033,-0.0026374636,-0.000095418814,-0.0301133,-0.0070311115,0.032408133,0.009121959,0.011455039,0.0191491,-0.0018454277,0.010747465,0.02682404,-0.018218419,0.027639981,0.003101211,0.0019123603,-0.021839155,0.0051569985,-0.0027761096,-0.012857436,-0.02792046,-0.00261834,-0.0009673356,0.020984966,-0.015464621,-0.0035984246,0.024809688,0.012474963,0.017198494,0.059053686,-0.042275913,-0.010110011,-0.019531574,0.012787316,0.05120026,-0.023483785,0.03161769,0.032382634,0.013768994,-0.024898931,-0.00082231493,-0.0071076057,0.04268388,-0.017682958,-0.02232362,-0.04064403,-0.0064446544,-0.01698176,-0.008484505,0.0007266969,0.019225596,0.012889309,0.010588102,0.054922987,-0.0091793295,-0.0031713308,0.017542718,0.011888507,0.04390779,0.029042378,0.00937694,-0.018524397,0.04719705,0.020436756,0.025906108,-0.028991383,-0.0020462256,0.033479054,-0.02053875,0.031592194,0.008924348,0.025153913,0.006610392,0.008465381,0.04487672,0.035263926,0.04158746,0.0018087741,0.017568218,0.020041537,-0.010639098,0.019416831,0.044723734,0.02259135,-0.012200858,0.0017450288,-0.008102033,-0.01903436,0.0057562045,0.013055046,0.01197775,0.0063139764,0.0072605945,0.0017227179,-0.040567536,-0.007292467,0.020322016,0.053189114,-0.023980998,-0.000852594,-0.028226439,0.025510887,0.022833582,-0.0068717482,-0.014189714,0.037686247,-0.021877402,0.0021402498,0.020079784,-0.024656698,0.009160206,-0.0062470436,0.0056032157,0.04671259,-0.0019123603,-0.03641134,-0.06461228,-0.02135469,0.0044876724,-0.027155517,0.05038432,0.0076749395,0.005297238,-0.0045163576,0.026849538,-0.007190475,0.02451646,-0.04737554,0.0044430504,0.043142848,0.014954657,-0.025217658,0.002992844,0.0017274988,0.036513332,0.01795069,-0.01587259,0.005418354,-0.026645554,-0.008790483,-0.02942485,0.018282164,-0.03625835,-0.016382553,-0.012538709,0.023649523,0.0038980278,0.03052127,-0.027639981,0.001996823,0.028506918,0.0003318742,-0.0038565933,0.011703645,-0.026186587,0.032663114,-0.0034549977,-0.010071765,-0.015834343,0.009459809,0.021826405,0.009600049,-0.004019144,-0.015630359,0.014011227,-0.008286894,0.035620898,-0.0015545896,0.01183751,-0.023203306,0.05035882,0.0076876883,-0.012978552,0.052271184,0.0027681415,0.022820832,-0.0007972152,-0.020526001,0.019008862,0.02914437,-0.0067570065,-0.041842442,-0.020768233,-0.019786555,-0.033071086,-0.0052653654,0.011894881,-0.039114144,0.046330117,0.03518743,-0.004188069,-0.029220866,-0.004200818,0.019225596,0.012666199,0.010492483,0.0031139601,0.031974666,-0.022527605,-0.045692664,0.0369468,-0.03296909,-0.000088446664,-0.038629677,-0.012494087,-0.022106886,0.008293269,-0.05107277,0.00369723,0.014635931,0.022935575,-0.0046502226,0.008650243,-0.0157451,-0.003423125,0.009676543,-0.012200858,-0.0024016057,0.013080545,-0.006358598,0.016102074,0.019085355,0.00896897,-0.022298122,0.0020908474,-0.008841479,0.034243997,0.025574632,0.022922825,-0.0073307147,0.03024079,0.0094534345,0.045335688,-0.00074860937,0.039904587,0.017580966,0.00015348684,0.019531574,-0.014342702,-0.0028350742,0.020003289,-0.003971335,-0.0017370606,0.0017737142,0.01422796,0.011416791,-0.02710452,0.013399271,-0.031235218,0.055942915,-0.011212806,-0.00414026,0.0010055827,0.014329953,-0.0008693271,-0.00475859,-0.029042378,-0.016994508,0.02313956,0.0041083875,-0.0034741212,-0.014087721,-0.01477617,-0.014457444,-0.0142917065,-0.007515576,0.022846332,-0.0026852726,-0.0025657502,0.021150704,0.033912525,0.07261869,0.008560999,0.029654333,-0.019518824,0.025969854,0.05696284,0.026097344,-0.008790483,0.00800004,0.005545845,-0.03202566,-0.0034996194,0.034193,0.008248648,-0.013335526,-0.034422487,0.019136352,-0.009937899,0.011812013,-0.00835064,-0.011792889,-0.013730747,-0.0052303053,0.022425612,-0.033912525,-0.008427135,0.0063426616,-0.0029816884,0.028022453,0.030266289,-0.027359502,0.002313956,0.013271781,0.02408299,-0.039624106,0.021711664,-0.017185744,0.027843965,0.04887993,0.017721206,-0.014546688,-0.052143693,0.025230408,-0.014062223,-0.015643107,-0.008006415,0.01862639,-0.0129211815,0.010945075,0.00037350788,0.018027183,0.029730828,0.028226439,0.0078980485,0.017440725,0.004666159,0.017351482,0.0152988825,-0.0060207476,0.0040063947,-0.030164296,0.013271781,-0.008261397,0.008745861,-0.02957784,0.023114061,-0.0056733354,0.02093397,-0.018690135,0.012328349,0.009459809,0.0011681335,0.0073052165,0.0040828893,-0.012787316,-0.013322777,-0.016446298,-0.05451502,0.01860089,-0.04625362,0.01902161,0.015171392,-0.00039641635,0.011818387,-0.03393802,0.019684562,0.026594557,-0.019340338,-0.00870124,-0.0008772953,-0.009185704,0.00272352,0.033912525,-0.028557913,-0.02367502,0.00870124,0.02218338,0.0031585817,-0.008669367,-0.02970533,-0.025434392,-0.032127652,0.010690094,0.02136744,0.014011227,0.0029992184,-0.0034422486,-0.015681354,0.038935658,0.025434392,0.00200001,-0.02039851,0.028302932,0.007929921,0.011799263,-0.022540353,-0.023190556,0.037660748,-0.024337972,0.003684481,0.005402418,0.019939544,0.0062693544,-0.04125599,-0.015018403,0.028583413,0.046228122,0.018141925,-0.0024159485,0.02422323,0.038935658,-0.020105282,-0.017172996,-0.0063904705,0.010562603,0.010766588,0.010855832,-0.046993066,-0.0027362688,-0.0027346753,0.0045036087,0.013883736,0.01656104,-0.025816863,0.011544282,0.0382982,0.03164319,0.023471035,0.024605703,-0.026773045,-0.03462647,-0.025778618,0.021533176,-0.011104438,0.030572267,0.005985688,-0.0065976433,-0.011078941,-0.01588534,0.016803272,-0.00015478166,-0.0016860643,0.0015633545,0.02067899,-0.010441488,-0.06762106,0.00951718,0.009396064,0.0018741131,-0.0071076057,-0.033224072,0.013628755,-0.015005654,-0.03625835,0.06359235,-0.024720443,0.01902161,0.029475847,-0.036207356,0.013035923,-0.02148218,0.008063786,-0.019378584,0.0068335007,0.00006464176,-0.0007741075,-0.03687031,-0.0037514134,0.021596922,0.017364232,0.034116507,-0.003340256,0.021953896,-0.010231128,0.008669367,0.0052334927,0.045565173,0.028277434,-0.021647919,-0.015158643,-0.022106886,-0.0031028045,-0.04559067,-0.0037514134,0.0051824963,-0.007968168,-0.020028787,0.024121238,-0.0061578,0.0037992224,-0.020322016,-0.034167506,0.002266147,0.020882975,0.011939503,0.024197733,0.013616005,-0.023152309,-0.029832821,0.03368304,0.0076048197,0.026186587,0.026773045,-0.034371488,0.031566694,0.036079865,-0.01034587,-0.0070311115,0.0056223394,-0.018588142,-0.012054244,0.042071927,0.0017402478,0.0035059939,-0.029475847,-0.02231087,-0.020016039,0.015400875,-0.0147506725,-0.01109169,-0.010084514,-0.011843885,-0.026059097,0.008459007,0.0016318808,0.0021163453,0.001987261,0.021469431,-0.0013761026,0.015158643,-0.018983364,-0.016382553,0.04900742,-0.022106886,-0.03577389,-0.019812053,-0.0115506565,-0.004127511,-0.0060749315,0.008662992,-0.01286381,0.011945877,0.004984886,-0.04174045,0.025370646,0.024121238,0.013424769,0.0164208,0.01956982,0.021112457,0.017351482,-0.0063044145,-0.03954761,0.035569903,0.026594557,0.018218419,0.043627314,-0.01819292,-0.02027102,-0.031694185,0.0043251216,0.056860846,0.0033912524,0.032918096,-0.020169027,0.024490962,-0.014444695,0.008299644,0.02792046,0.009625547,-0.008656617,-0.00039801,0.0038438442,-0.0047904626,0.008102033,0.034728464,0.005220744,0.0054247286,0.026543561,-0.007432707,0.018460652,0.02287183,-0.00272352,0.016739527,0.013093294,0.026645554,0.019238345,0.002492443,-0.0239555,0.03518743,-0.030291786,-0.00011045873,-0.03952211,0.0287619,-0.029960312,0.0065976433,-0.021533176,0.0030629637,-0.011812013,-0.0018087741,0.000665342,-0.0036047993,0.0023777012,-0.025995351,0.009689292,0.023292549,-0.00828052,-0.0056127775,0.031592194,0.032816105,0.021316443,0.010282124,0.03261212,-0.0021561862,-0.004580103,-0.024184983,-0.0036175482,0.02053875,0.01383274,-0.0010294874,0.018792128,-0.0369978,0.0015673386,-0.012124364,0.012213608,-0.01149966,-0.026186587,-0.0054119797,-0.007273344,-0.016612036,-0.026033599,0.050282326,-0.022106886,0.0043952414,0.012137113,0.013807242,0.052526165,-0.008286894,-0.008312393,-0.020156277,-0.02710452,0.03957311,0.027945958,0.030291786,-0.016739527,0.03750776,-0.0050900658,-0.0048191478,0.009937899,-0.02845592,-0.0061418638,0.045233697,0.004532294,-0.03748226,-0.017542718,0.007681314,-0.0026629618,-0.025714872,-0.03161769,-0.0021035962,0.02011803,0.004057391,-0.024975426,-0.014087721,-0.00424544,0.004200818,-0.020079784,-0.007821553,-0.010415989]},{"id":"guide-voice-6","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: Stop and Leave\nStop playback and disconnect. getConnection accepts channel ID or guild ID. leave(guildId) leaves all channels; leaveChannel(channelId) leaves a specific channel.\n\n```javascript\n// By channel ID (primary) or guild ID\nconst connection = voiceManager.getConnection(channelId) ?? voiceManager.getConnection(guildId);\nconnection?.stop();\nif (connection) voiceManager.leaveChannel(connection.channel.id);\n// Or leave all channels in the guild:\nvoiceManager.leave(guildId);\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.010544704,0.0022724604,0.015074343,-0.020074673,-0.047191374,0.02726341,-0.023803525,0.0059906146,-0.0030365693,-0.0028195623,0.033058412,0.0021226949,0.031615775,-0.00689532,0.0057430435,0.016455851,-0.046408925,0.025527354,0.03875561,0.039635863,-0.031591322,0.0886611,-0.017397234,0.08010308,-0.027336765,0.009841724,-0.022617627,0.042814557,-0.0066569177,-0.051005807,0.040785085,-0.022483144,0.027654635,-0.040980697,0.0128003545,-0.012250196,0.00680974,-0.00042293436,-0.03958696,0.0071642864,-0.0032856688,0.020649282,0.05125032,-0.038731158,0.03811987,0.072816536,-0.01689598,0.028706048,0.0141818635,-0.0039978186,-0.0117978435,0.015881242,-0.027996955,0.04613996,-0.008735294,-0.029439593,0.036872845,-0.047900468,-0.006271807,-0.013093772,-0.051494837,-0.04093179,0.016382497,0.030148687,0.020233607,0.043450296,-0.040271603,0.009884515,-0.0052754087,-0.024475941,-0.01157778,-0.023216689,-0.028999466,0.024182523,-0.028461533,0.016309144,-0.012959289,0.0019958527,-0.014878731,-0.04584654,-0.023265593,-0.0034782244,-0.025160583,-0.0035332402,-0.022422016,0.021443956,-0.0639651,0.00009837904,0.037875358,-0.008289055,-0.021040507,-0.029415142,-0.04445281,-0.050810196,0.031566873,-0.012702549,0.07144725,-0.02419475,0.011351604,0.00596922,0.037802003,-0.034525502,-0.057069775,-0.027214507,0.067779526,-0.010856461,-0.03650607,0.04156753,-0.066263534,0.012482485,-0.046506733,0.028975016,-0.016321369,0.028363727,-0.015697856,0.012354115,0.041127406,-0.050174456,0.056727454,-0.03904903,-0.051837157,-0.021040507,0.035601366,-0.032202613,0.033082865,-0.0060303486,0.0036127076,0.0016244958,-0.005263183,-0.0016627013,0.06464974,0.0121096,0.022238629,-0.007989524,-0.037019555,0.020270284,-0.021602891,0.01042856,-0.010691414,0.013570577,-0.0123663405,-0.009921191,0.03168913,0.02562516,0.004856677,0.042570043,-0.040344957,0.022397565,-0.025894128,0.0026866074,-0.028950563,0.00045120638,-0.03875561,-0.008160684,-0.0369462,0.015074343,-0.015954597,0.04975878,-0.06210678,-0.0111743305,-0.00985395,0.013521673,0.022311984,-0.02723896,-0.032936156,-0.007421027,-0.0019927963,0.05110361,-0.022776563,0.04731363,-0.0082218135,-0.014621991,-0.05501585,-0.013374965,-0.013399416,-0.046726797,0.005067571,-0.016284691,-0.024341457,-0.041176308,-0.0007469166,0.015697856,-0.0060578566,-0.04728918,-0.013839543,0.0090898415,-0.012158503,0.008692505,-0.043499198,-0.026383156,-0.014475281,-0.0048169433,-0.0067791753,0.03723962,0.011437184,0.023216689,0.018118553,-0.02743457,0.007751122,-0.06968674,0.037215166,-0.0057002534,0.041885402,-0.05237509,-0.048560657,-0.031297907,0.0038847304,0.015221052,0.039831474,-0.011730602,0.017189397,-0.015648954,-0.023510106,-0.018289713,-0.078733794,0.029879719,-0.005984502,-0.00981116,-0.03149352,-0.02134615,-0.017507266,-0.018827647,0.07262092,-0.003973367,0.034525502,-0.016565884,0.029830817,-0.0287305,0.025380645,-0.0035790866,0.018032974,0.005474077,-0.010355205,-0.026040835,0.027874697,-0.046653442,-0.0039764233,0.029708559,0.011437184,-0.007335447,-0.035259046,-0.03958696,0.035528015,-0.023620138,0.022544272,-0.004010044,0.007848928,-0.07046919,0.019866835,-0.0015480849,0.04225217,0.028314825,0.0016733988,-0.0064246287,0.010587495,0.024268104,0.00891868,-0.001009388,0.05452682,-0.018742066,-0.02496497,-0.007317108,0.0044623967,-0.00005577996,-0.029586302,0.008551909,0.011510539,-0.0073537854,-0.0062840325,-0.007977298,-0.07751122,-0.050859097,0.018766519,-0.0094688395,-0.02485494,-0.004034496,0.03626156,0.025991933,0.021725148,0.005513811,-0.024818262,0.003664667,-0.058194544,0.012292986,0.012604742,0.023717944,-0.071153834,0.031420164,-0.010911477,0.0312001,-0.024842713,0.010043449,0.0049575395,-0.029806364,0.02709225,0.058830284,0.06983345,0.009462726,0.0016428344,0.048511755,0.046995763,0.005211224,-0.027654635,-0.015979048,0.02404804,0.020820443,-0.011822295,-0.014255218,0.004294293,-0.045455318,0.011748941,0.0072987694,0.019610094,0.03748413,-0.024989422,-0.013118224,0.017935168,-0.0015045307,0.00024757133,-0.0018858211,0.02011135,-0.018742066,0.0012378567,-0.0063512744,-0.0022617627,-0.022862142,0.00076716545,-0.059074797,-0.031909194,0.027312314,0.024842713,-0.049318653,0.016590334,0.060003955,0.028437082,0.04863401,-0.048047177,0.040491667,-0.0047955485,-0.0036982878,-0.005914204,0.038780063,-0.034941178,0.025551805,-0.0048047174,0.0112293465,-0.0076472033,-0.00062695146,-0.0023320608,0.025185034,-0.023522332,-0.006302371,-0.033620797,-0.07428362,0.03173803,-0.012788129,0.03650607,-0.018546455,0.0092793405,0.041127406,-0.029366238,-0.04384152,-0.033767506,0.033082865,-0.017959619,0.023253366,-0.06768172,-0.005403779,-0.0024986365,-0.046091057,0.03909793,-0.042227723,-0.00402227,0.032764994,-0.046897955,-0.0062901457,-0.017213847,0.010410221,-0.0064979834,0.037361875,0.023864653,-0.008172911,-0.003679949,-0.032398224,-0.00900426,0.01783736,-0.012861484,0.017776232,0.0061373236,-0.040833987,0.04873182,-0.021187216,0.004483792,0.0015106435,0.021248344,-0.0344766,0.042325526,0.025001647,-0.004441002,-0.032080352,0.08817207,0.032911703,-0.03616375,0.014475281,-0.0014518072,0.0176662,0.01153499,0.016333595,0.013460545,-0.009114292,0.050174456,0.022593176,0.0410785,0.029464044,0.037533037,-0.026309803,-0.010031223,-0.037875358,0.058439057,-0.009584984,-0.024989422,0.019463385,0.007940621,-0.0050767404,0.016944882,0.037679743,0.004719137,0.01910884,0.04892743,-0.03547911,-0.050174456,0.01626024,-0.0008741407,0.041787595,-0.007610526,-0.024011362,-0.0122868735,-0.029366238,-0.03895122,-0.019695675,-0.029341787,-0.011241572,-0.020649282,0.04547977,0.02281324,0.020637058,0.00870473,-0.05486914,-0.009303791,0.011944553,-0.03958696,-0.0013005136,0.015697856,0.057754416,-0.026725478,-0.007176512,0.032593835,0.0037044005,-0.015966821,-0.031297907,-0.006889207,-0.028608242,0.0144263785,0.05438011,-0.017103817,-0.0060517434,-0.019781254,-0.0018812364,-0.052472897,0.020135801,0.009652225,-0.005886696,-0.007934508,-0.021847406,-0.010434673,-0.006244299,0.010086239,-0.009083728,0.013815091,0.0126903225,0.027483474,0.0121218255,-0.026334254,0.021443956,-0.014047381,0.027605731,0.047044665,0.02266653,-0.053597663,-0.016321369,0.012079036,-0.019390032,0.036041494,-0.012115713,0.014499733,0.0054373997,-0.010948154,-0.0024298667,0.049856585,-0.0030457387,0.000075885575,-0.0040406086,-0.010813671,0.033718605,-0.008160684,0.018925453,0.003643272,-0.05340205,-0.014438604,-0.041812047,-0.02487939,-0.041102953,-0.042301077,-0.042863462,-0.0016443627,0.011541103,-0.01264142,-0.010520253,-0.015526695,0.023827976,-0.062302396,0.025454,0.007127609,0.025111679,0.015490019,0.039855927,0.021333924,0.01042856,0.014780926,0.0010460652,0.02741012,-0.007696106,-0.049294204,0.0025826886,-0.016162435,0.030980038,0.017116042,0.008723069,-0.007390463,-0.04010044,-0.009047051,0.017213847,-0.0001696322,-0.022801014,0.0021624286,-0.0402227,-0.012775903,0.029121723,0.022422016,0.023889106,-0.010324641,-0.040124893,-0.02375462,-0.018265262,0.010563043,-0.0042025996,-0.0049239188,-0.036432717,0.023938008,-0.0221775,-0.0011476917,-0.022104146,-0.0036004817,-0.014634216,-0.019145517,-0.037679743,-0.015000989,-0.0050553456,0.0053212554,-0.0070481417,0.017030463,-0.01427967,0.005718592,0.005779721,0.042178817,-0.0053976662,-0.0060486873,-0.0015519054,-0.006027292,-0.016076853,0.0088331,-0.03631046,0.020575928,-0.008185136,-0.01640695,-0.042961266,-0.041885402,-0.042790107,-0.035723627,0.02168847,0.012415243,-0.0056574633,-0.011956778,-0.012384679,-0.017458363,-0.007995637,0.030246492,0.015135472,-0.014438604,-0.018754292,-0.005767495,0.015245504,-0.025001647,0.021016056,-0.006314597,-0.011382168,-0.0043279137,-0.018143006,0.01689598,0.0118528595,0.019720126,-0.012470259,-0.013753963,-0.04892743,-0.0034751678,-0.0073843496,-0.025820773,-0.0056574633,0.022629853,0.05007665,0.013546125,0.016627012,-0.00981116,0.044477258,0.018057425,0.017861813,-0.02789915,-0.015086569,0.004602993,-0.03105339,-0.003961141,0.019243322,0.010355205,-0.031786937,-0.021395054,-0.038828965,-0.011186556,-0.02890166,0.014084058,-0.016015725,0.033963118,-0.03398757,0.022654304,0.00093526946,0.0069809,-0.027605731,-0.015575599,-0.014157413,-0.017715104,-0.007952847,-0.0064979834,0.006461306,0.014206315,0.006577451,0.014267444,-0.040833987,-0.023302268,0.020637058,0.01251305,0.0074393656,-0.026016384,0.022165274,0.021211667,0.03919574,-0.0073109954,-0.01427967,-0.015392212,0.01511102,-0.05565159,-0.012714774,-0.035087887,0.017739555,0.0070236903,-0.0008451046,0.026383156,-0.003013646,-0.015856791,-0.027996955,0.017776232,-0.01947561,-0.012824806,0.028485985,-0.04156753,-0.020221382,0.005419061,0.014132961,0.028217018,-0.020783765,0.009462726,0.004199543,0.0001107003,0.03198255,0.0114738615,-0.015538922,-0.03990483,0.013668383,0.03679949,0.0112293465,0.026407609,-0.059857246,-0.03821768,-0.029610753,-0.003349854,-0.019341128,0.014255218,0.009707241,0.008166797,-0.0113638295,-0.0089798095,-0.027630182,-0.056189522,0.026163094,-0.05961273,-0.018766519,-0.0138028655,-0.0056880275,-0.026236448,-0.045919895,0.033620797,-0.06381839,-0.010355205,0.037044007,0.021651793,-0.010018998,0.0040039313,-0.010764768,-0.03616375,-0.011376055,-0.007965073,0.029317336,-0.047386985,0.01574676,-0.0028501267,0.019438934,-0.0055413186,0.022739885,-0.017592845,-0.020588154,-0.01672482,-0.05599391,0.013815091,0.022862142,0.009823386,-0.013729511,-0.03723962,0.008882004,0.024084717,0.008851439,-0.039024577,0.00415064,0.0021150538,0.008234039,-0.051299226,-0.0061373236,0.01815523,-0.04200766,-0.0034446034,-0.026872186,-0.00046725268,0.005067571,0.001934724,-0.045699835,0.021896308,0.06191117,-0.001934724,0.02198189,-0.028192567,-0.010018998,0.043401394,0.048316143,-0.045186352,-0.0011041375,-0.004260672,0.020172479,0.018546455,-0.031591322,-0.031102294,-0.011198782,0.0076288646,-0.032496028,-0.0034965628,-0.0014693816,-0.010825897,-0.008026201,-0.0040253266,-0.015233277,0.030075332,-0.0046580085,-0.008484667,-0.02485494,-0.038144324,-0.017262751,-0.016443627,-0.0009367977,-0.02577187,0.005675802,-0.023974685,-0.10768436,0.016443627,-0.03418318,-0.0007484448,-0.03085778,0.026236448,0.018827647,0.05438011,0.0109053645,-0.009609435,0.037459683,0.009560532,0.031909194,-0.059955053,0.016358046,-0.012348002,0.0009474952,-0.005211224,0.036701687,-0.024451489,0.024402587,-0.0031664679,-0.05452682,0.018106328,0.027850246,0.018607583,0.021505084,-0.006302371,0.01738501,0.019121064,-0.041934304,0.033400733,-0.020037996,0.01657811,-0.015379987,0.008527457,-0.0034812808,-0.014915409,-0.014964311,-0.040809534,-0.0032398223,-0.021333924,0.00026858432,-0.00989674,-0.0078428155,-0.019414483,0.00035722097,0.017372783,0.012702549,-0.0052479007,-0.016957108,-0.0012256309,0.00091769494,-0.028681597,0.031102294,0.001191246,-0.004835282,0.035992593,-0.01789849,0.00072437536,0.06142214,0.01502544,-0.006650805,-0.021089409,-0.019011034,-0.021480633,-0.03393867,-0.010899251,-0.0038205453,-0.010575269,0.0060945335,-0.008930907,0.025307292,0.03797316,0.0014189505,0.018558681,0.0153188575,0.0279236,0.006742498,0.014707571,-0.013326062,-0.002003494,0.012971515,0.021468407,-0.00026743815,0.0141818635,-0.021737374,0.011107089,-0.004037552,0.0061342674,0.024732681,-0.041445274,-0.0005130992,0.010318529,-0.0037135698,-0.03364525,-0.0056666327,-0.019744577,0.009377146,-0.034060925,0.017311655,0.008613037,-0.021260569,-0.022593176,0.0106058335,-0.018045198,0.013338287,0.030001977,0.017421685,-0.00026953945,0.0016917374,-0.010893138,-0.03364525,0.017800683,-0.06376948,-0.03723962,0.017617298,0.002796639,-0.0016413062,-0.011761166,-0.040491667,0.01234189,0.009267114,-0.021945212,0.013741737,0.050027747,0.0017895433,0.008307394,-0.021945212,0.05041897,0.0016733988,0.0042790105,0.0172383,-0.020673733,-0.003469055,-0.007286544,0.003988649,0.03198255,0.0050156116,0.00072208303,-0.003252048,0.018204134,-0.047435887,-0.02660322,-0.02247092,-0.016883753,0.05501585,-0.0050003296,-0.0039489153,0.020942701,0.013105998,-0.0057124794,0.00813012,-0.009132631,0.006418516,0.07599523,0.029317336,-0.0101718195,0.019524515,-0.015612275,0.03892677,0.0031786936,-0.008081217,0.014340798,0.0034109827,0.01657811,-0.010208497,-0.005935599,-0.019512288,0.0070603676,-0.03594369,0.0061984523,-0.0068341913,0.004661065,0.0015847621,0.02347343,0.053255342,-0.03904903,-0.018448649,0.01789849,0.027850246,0.02453707,-0.035405755,0.025258388,0.03545466,-0.0058041723,0.03467221,-0.004324857,-0.005125643,0.0020936588,0.028975016,0.0123113245,0.04384152,-0.004743589,-0.024781585,-0.048536208,-0.01560005,-0.0015939315,-0.0039978186,0.0016795116,-0.0070175775,0.012849257,-0.005318199,0.023962459,0.0043890425,0.0061556622,-0.013350513,0.010404109,0.035723627,-0.01738501,0.009835611,-0.014927634,0.020392543,0.019035485,0.0040406086,0.01030019,0.001009388,-0.03088223,-0.008472441,-0.00830128,0.0069014328,0.004077286,-0.017617298,0.035210144,0.016981559,0.0051745465,-0.0063084844,-0.04171424,-0.056385133,0.025698515,0.020404767,-0.026480963,-0.005816398,-0.030515458,0.0030915851,0.0010949683,0.005409892,0.025429549,0.011259911,0.05565159,0.024145845,0.0011087222,0.0023840202,-0.015612275,0.03085778,-0.021847406,0.0060517434,0.05056568,0.01577121,0.045430865,0.007145948,-0.02060038,0.011082637,-0.030099783,-0.015392212,0.0018109385,0.004315688,-0.009915079,0.03875561,0.0017910716,-0.043768164,-0.023950234,-0.024488166,-0.019573417,0.0104713505,0.050810196,-0.043572553,0.011486087,0.025356194,0.010208497,0.04335249,0.020979378,0.00037976218,0.0027263411,-0.010459124,-0.02168847,-0.003230653,-0.000637649,-0.03217816,0.018314166,-0.009138744,0.008179023,-0.03318067,0.016125757,-0.003035041,-0.0070664803,-0.015441115,-0.013142675,0.008527457,-0.011999568,-0.012531389,0.01251305,-0.041274115,-0.022617627,0.032153707,-0.03381641,0.013448319,-0.029757462,0.0034996194,-0.0038663917,-0.017299429,0.012959289,-0.03300951,-0.035259046,0.006216791,-0.000981116,0.03513679,0.018436423,0.00038721226,0.046164412,0.024317006,0.06978455,0.02528284,0.022532048,0.002382492,0.0013203804,0.027948052,-0.016627012,-0.024170296,0.014010703,-0.020722637,-0.04467287,0.006565225,-0.0009069974,-0.0008924794,-0.03679949,0.022788787,-0.012604742,0.049000785,-0.024206974,-0.0015710081,-0.01361948,0.03283835,-0.025038324,-0.0018109385,-0.021248344,-0.045430865,0.051005807,-0.012060697,-0.0052876347,-0.03247158,-0.030735523,-0.008490779,-0.026089739,0.022593176,0.029855268,0.024414811,-0.014169638,0.006314597,0.023925781,0.07105603,-0.02183518,0.009860063,-0.004153697,0.047582597,0.033474088,-0.013436093,0.030270943,-0.024732681,-0.008937019,-0.0129348375,0.00552298,0.028363727,0.0052479007,-0.009181534,-0.01732388,0.01838752,0.020404767,0.021676244,0.00070107006,-0.013668383,0.0279236,0.0064246287,0.019830158,-0.027018895,-0.02309443,0.01219518,0.008435763,0.018754292,0.03344964,-0.006748611,-0.02596748,-0.023742396,-0.020661509,-0.06743721,0.027703537,0.039635863,0.014573088,0.00433097,0.020001318,0.00027698954,-0.01574676,-0.011858972,-0.019781254,0.015587824,0.010538592,-0.0133138355,-0.03758194,0.0046274443,0.007922282,-0.01666369,0.027312314,0.036408268,-0.002860824,-0.00578889,-0.030564362,-0.032740545,-0.030393202,-0.006326823,-0.0060548,-0.04746034,0.0039030688,0.015856791,0.023290044,0.0035424095,-0.0019102726,0.0073537854,0.012451921,-0.0135339,0.018118553,-0.0131793525,0.0012477901,0.0039122384,-0.029415142,-0.009731692,0.013057095,-0.0067119338,-0.04961207,-0.008698617,-0.02266653,0.01379064,-0.039171286,0.0064979834,0.007084819,0.006076195,0.074234724,-0.027141154,-0.023375623,0.029317336,-0.006754724,-0.024488166,0.0028852758,0.024378134,0.00020516328,-0.012415243,-0.0008626791,-0.006170945,0.007983411,-0.026823284,-0.013925123,-0.0032826124,0.019720126,0.019365579,-0.027996955,0.011962891,-0.026529865,0.010703639,0.022556499,0.014548636,0.030124234,0.009462726,-0.021431731,0.024903841,0.0022036904,0.0067241597,-0.024928292,0.007855041,0.0064246287,0.0020844894,-0.013289385,0.03344964,0.029586302,0.027996955,-0.022336435,-0.0012004153,0.0086558275,0.021884082,0.029879719,0.03628601,-0.019548966,-0.002663684,-0.0041170195,0.015465567,-0.0012149333,-0.002067679,0.032006998,0.0015549619,-0.0068464167,-0.042472236,-0.023228915,-0.010495801,0.0093588075,-0.0038572224,-0.016015725,0.023840202,0.034721114,0.004920862,0.009016487,0.018106328,-0.0039825365,-0.0019240265,-0.026334254,-0.02347343,-0.027630182,0.0107158655,-0.03134681,0.037386328,-0.0049147494,-0.0068341913,-0.02577187,0.015049892,-0.000567733,-0.008099556,0.030906683,-0.012066809,-0.031297907,-0.022226404,-0.000764109,0.023607913,-0.008050653,-0.028999466,0.038046516,-0.04694686,-0.024842713,0.035503563,-0.051788256,0.003848053,-0.019463385,-0.033425186,-0.018338617,0.000588746,0.022360887,0.00051424536,-0.0072682053,-0.007848928,-0.0041750916,-0.018228585,-0.009248775,-0.00755551,0.00040688805,-0.011302701,-0.0055474318,-0.0039855926,-0.009829499,-0.000012977915,-0.00007841669,0.025062777,0.0050706277,0.011773392,-0.021064958,-0.0006055564,0.01034298,-0.023082206,-0.014780926,-0.0040558907,-0.033865314,-0.0013348985,0.016419174,0.0028470703,-0.018228585,0.017764008,0.023571236,0.015648954,0.0048291693,-0.008698617,0.010122917,0.024329232,-0.038193226,-0.06044408,0.031909194,0.008869777,0.020184705,-0.0052326187,-0.054918043,0.0012225745,0.006302371,-0.0037319085,-0.02789915,0.020478122,-0.038853414,-0.010294077,0.0026178376,0.00011404327,-0.029610753,-0.02643206,0.013460545,-0.023938008,-0.026138641,-0.02249537,0.026383156,0.0060945335,-0.0034537727,-0.035723627,0.032764994,-0.0038816738,0.00428818,-0.0073415595,-0.027825795,-0.0136928335,0.007769461,-0.004557146,0.022788787,0.022874368,-0.000861915,-0.033889763,-0.021285022,-0.0009192232,-0.044257194,0.010654736,0.006259581,0.029243981,0.010679188,0.014511959,-0.033131767,0.030735523,-0.0026881355,-0.010422448,0.037459683,0.03675059,0.004774153,-0.0075983005,0.00045388076,-0.044550613,-0.005953938,-0.003258161,0.015013214,0.0074821557,-0.016773721,0.03462331,-0.030686619,-0.0067302724,0.026798831,0.018888775,0.019842383,-0.0042148256,0.00044203707,-0.03821768,-0.0121096,0.01640695,0.0065224348,0.0024023587,0.0114983125,-0.0014747304,0.0027569055,0.030686619,0.011155992,0.006650805,0.0109848315,0.025600709,-0.004520469,-0.013631705,-0.026676575,0.009529968,0.0036554977,-0.0025093341,-0.017849587,-0.015306632,0.013411642,-0.012201293,0.018509777,0.01783736,-0.014719796,-0.026652124,0.008472441,0.008851439,0.008148459,0.019353354,-0.0018705389,-0.0076288646,-0.021407278,0.010801446,-0.016516982,0.0019163855,-0.027776891,0.027116701,-0.013912898,-0.028192567,-0.01657811,0.015245504,0.02011135,0.029830817,0.012170728,-0.024206974,-0.005110361,-0.0128003545,0.013191578,-0.011107089,-0.029121723,0.022617627,0.002908199,0.029684108,-0.018424196,0.007304882,-0.004450171,-0.007885605,-0.009933418,-0.03826658,0.037044007,-0.025869675,-0.031762484,0.02419475,0.042081013,-0.021945212,0.015636727,-0.00035492863,0.010165706,0.04887853,-0.019463385,0.04122521,-0.00804454,0.0028501267,0.0014602124,0.010147368,0.004847508,-0.023950234,0.038193226,-0.02117499,-0.010012885,0.016981559,0.04085844,-0.024732681,-0.008613037,0.008258491,-0.015734533,-0.0149398595,-0.0010170292,-0.0010292549,-0.001338719,-0.01445083,0.012763677,0.0066141277,0.043083522,-0.007848928,-0.0059111477,0.033254024,0.000707947,-0.04418384,-0.0028959732,-0.0029357069]},{"id":"guide-voice-7","type":"guide","source":"guides","text":"Guide: Voice (voice)\nSection: LiveKit and serverLeave\nIf using LiveKit, the server may emit serverLeave. Listen and reconnect if needed.\n\n```javascript\nconnection.on?.('serverLeave', async () => {\n try {\n const conn = await voiceManager.join(channel);\n await conn.play(streamUrl);\n } catch (e) {\n console.error('Auto-reconnect failed:', e);\n }\n});\n```","meta":{"slug":"voice","url":"/guides/voice"},"embedding":[-0.034440678,0.030335829,0.007834253,-0.02745743,-0.042500194,0.031587306,-0.024153527,0.008566367,-0.026356127,0.012740047,-0.00357297,0.016043948,0.03589239,0.004677399,-0.015305577,0.039671853,-0.0480067,0.04039771,-0.004630469,0.0035854846,-0.017495664,0.039521676,-0.009285967,0.050384507,-0.006351251,0.013128005,-0.043000787,0.04337623,-0.008485021,-0.05761805,0.058719352,-0.0202364,0.0014423284,-0.015305577,-0.011632489,0.018196492,0.044102088,-0.016744776,-0.05997083,-0.0125398105,0.018209007,-0.02104986,0.03874576,-0.006495171,0.021475364,0.027482457,-0.025179738,0.009048186,0.0062354896,0.0072523155,-0.026931807,-0.007821738,-0.02903429,0.0318376,0.02479178,0.00625739,0.0013257846,-0.014116673,0.0040673036,-0.0027798456,0.01098172,-0.003119309,0.008747832,0.011951615,0.012364604,0.0205743,-0.02968506,-0.0060727973,-0.024966987,-0.0141792465,0.009636381,-0.00052444753,-0.047706343,-0.0065202005,-0.033564642,0.036743395,-0.017508179,0.00016239884,-0.029334646,-0.05761805,-0.034415647,-0.024166042,-0.059119824,-0.037143867,-0.026681513,-0.013916436,-0.11173196,-0.018359182,0.014442056,0.034415647,-0.0021087406,-0.026130863,-0.024929443,-0.035617065,0.03368979,0.018747142,0.082647614,-0.014029069,-0.011932843,0.020073708,0.041248716,-0.034540795,-0.07914347,-0.028809026,0.062473785,-0.0318376,0.012558582,0.028859084,-0.067729995,-0.005666067,-0.048206937,0.014104158,-0.016519511,0.021375244,0.0030536065,-0.03143713,0.052361842,-0.04970871,-0.0026312326,-0.042725462,-0.04955853,0.017545722,0.03148719,-0.027732754,0.03424044,-0.037694518,0.0018756527,0.011657518,-0.042975757,0.0048870216,0.060271185,0.020949744,0.03761943,-0.010831542,-0.020361548,0.015105341,-0.01714525,-0.003181883,-0.035742212,-0.0046554985,0.010449842,-0.040648006,0.01452966,0.009786558,0.0058256304,0.06432597,-0.011651261,0.00997428,-0.0045710234,-0.017708415,-0.040197477,0.0074150073,-0.04567895,0.022789415,-0.048907764,0.044627707,-0.02738234,0.0113071045,-0.06737958,-0.00781548,-0.02680666,0.032863814,0.034465704,-0.019798383,-0.06677887,-0.029334646,0.0029347162,0.041574102,-0.018284094,0.021587996,-0.0013195272,-0.0030051116,0.004990269,0.03709381,0.030385887,-0.059720535,0.028133227,0.008503794,-0.0023746795,0.0031631107,0.036242805,-0.0035416828,-0.00025498864,-0.03308908,-0.02858376,-0.010418555,0.0027016283,0.041448954,-0.021337701,-0.04059795,-0.00044623014,-0.007853025,0.004258154,0.031712454,0.052111547,0.005828759,0.0050371992,-0.040798184,-0.00563478,-0.045754038,0.0015142885,-0.044277295,0.006908159,-0.07694087,-0.021850808,-0.0036480585,0.009310997,0.044152144,0.035617065,0.0020899684,0.037319075,-0.004874507,-0.010499901,-0.010018082,-0.062273547,0.02858376,0.04447753,0.0050309417,-0.02395329,-0.020399092,-0.028934173,-0.04387682,0.08084548,0.009411115,0.05481474,0.0205743,0.046504926,-0.041774336,0.014955163,-0.019072525,0.00073367904,-0.024391307,-0.0061103418,-0.010762711,0.03143713,-0.012076763,0.016907468,0.008804148,0.02457903,0.012101793,-0.014116673,-0.021650571,0.010061883,0.031036656,0.031912692,0.007646531,0.012783849,-0.03426547,0.022764387,-0.030460976,0.026406188,0.0097114695,0.0647765,0.010881602,0.04783149,0.005953907,-0.011438509,-0.00700202,0.03146216,-0.04745605,-0.008616426,-0.014542175,-0.018759657,-0.014054099,-0.028608788,-0.05756799,0.04390185,-0.006526458,0.004545994,0.00004152854,-0.047756404,-0.057868347,0.022489062,-0.024328733,-0.014517145,0.012752562,0.042525224,0.008760346,0.023340065,-0.0007954707,-0.0256553,-0.01539318,-0.05977059,-0.005009041,0.0074150073,0.006845585,-0.053413082,-0.009167077,-0.012940283,0.013966495,0.005913234,0.029810207,0.016006405,-0.00090575725,0.030586123,0.026631454,0.04500315,0.0066891504,-0.02251409,0.032162987,0.04320102,0.006745467,-0.0458041,-0.0007027832,0.025617756,0.05251202,-0.0030473492,0.0011920328,0.04853232,-0.017808532,0.01369117,0.02908435,0.0019304049,0.028809026,-0.010068141,0.0041924515,0.022301339,-0.0017395545,0.01599389,-0.002944102,0.0020977901,-0.0051998915,0.023565331,0.0043864306,0.0040391455,0.0005956253,0.025955655,-0.058919586,0.002582738,0.040197477,0.017220339,-0.05366338,0.011275818,0.06512692,0.017358001,0.021663085,-0.035617065,0.014404513,-0.02848364,-0.010800255,0.0076840753,0.02193841,-0.05013421,0.017195309,-0.00016054117,0.017545722,-0.017220339,-0.03461588,-0.03989712,-0.01237086,-0.0024012735,-0.03651813,-0.009473689,-0.08189672,-0.005293752,-0.005666067,0.045203388,-0.038295228,0.0019632562,0.009367313,-0.040322624,-0.011457282,0.000841619,0.010887859,-0.012239455,0.041448954,-0.06087189,0.0077529065,-0.0060602827,-0.039046116,0.014116673,-0.017921166,-0.011375936,0.044677768,-0.07974418,-0.004624211,-0.018596964,0.0059695505,-0.0037825925,0.087503344,0.02848364,0.012233198,0.016394362,-0.04560386,-0.01237086,0.019197673,-0.047781434,0.018171461,-0.012890224,-0.01824655,0.02623098,-0.03822014,0.0062167174,-0.009874162,0.047581196,-0.027132044,0.014379483,0.020749506,0.0015221102,-0.026306069,0.04332617,0.032162987,-0.024929443,0.04783149,0.040798184,0.028133227,0.012808878,-0.022101102,0.0011740428,-0.010399783,0.074838385,-0.00856011,0.036943633,-0.004107977,0.024954472,-0.020036165,0.00815338,-0.036743395,0.0513106,0.020374063,0.0049714968,0.013290697,-0.00090653944,-0.006495171,0.0038639386,0.028834054,0.012233198,0.00856011,0.06517698,-0.04209972,-0.021625541,-0.0055252756,0.022363912,0.022363912,0.0011920328,-0.0314121,-0.006304321,-0.044677768,-0.00798443,-0.025617756,0.017245367,-0.0031302595,-0.05606622,0.07974418,0.023177374,0.006075926,-0.020787051,-0.04838214,-0.029885296,0.018809715,-0.041423924,-0.01239589,0.030586123,0.039521676,0.0023465215,-0.02102483,0.029534882,-0.00024775355,-0.004248768,-0.02848364,-0.05251202,-0.021237582,0.021237582,0.04510327,-0.0044302326,-0.0025577082,0.009799073,0.014492116,-0.013778773,0.0025905597,0.047405988,-0.0068893866,0.0061228564,-0.01282765,0.0036199002,-0.005913234,0.044752855,-0.033364404,-0.017220339,-0.009824103,-0.0035166533,0.011651261,-0.0040203733,0.0037043751,0.008347359,0.050584745,0.040347654,0.014642294,-0.053262908,-0.020611843,0.0063418653,0.006970733,0.013465904,-0.013178064,0.024716692,0.014079128,-0.028909143,0.017808532,0.035567008,-0.004445876,-0.03704375,-0.019435454,-0.018772172,0.052612137,0.015368151,0.037294045,0.008485021,-0.027557546,0.0035573265,-0.040748127,0.0059945798,-0.025730388,-0.035466887,-0.02251409,-0.018984923,-0.0027657666,-0.031637367,-0.017608296,-0.027282221,0.006551488,-0.05251202,0.023552816,0.022989651,0.05023433,-0.013065431,0.00008911893,0.013040401,0.032087896,0.010950433,-0.027732754,0.019885987,-0.0053093955,-0.04898285,0.00090028206,-0.022977138,0.026306069,-0.009285967,-0.0072585726,0.016219156,-0.0068080407,-0.018459301,0.042950727,-0.047681313,-0.010844057,-0.017808532,-0.003829523,0.022576664,-0.0037544342,0.0116262315,0.024178557,0.012145595,-0.05176113,-0.011576172,0.005957036,0.04109854,-0.0058569172,0.0065640025,-0.0386957,-0.012927769,-0.004136135,-0.00060970447,-0.040873274,-0.00095581636,-0.020048678,-0.04059795,-0.024879385,-0.0070645935,-0.012333317,0.010205803,0.021813262,0.000095180774,-0.03133701,-0.003757563,0.021337701,0.023039712,-0.0071772267,0.0033539613,-0.0047869035,0.009561293,-0.009517491,-0.00625739,-0.025354946,-0.0059758076,0.012790106,-0.023002166,-0.01568102,-0.043776702,-0.03126192,-0.018434271,0.033039022,0.022664268,-0.015493299,-0.027031926,0.022939593,-0.023577847,-0.000056609828,0.010318437,0.02481681,0.018659538,-0.014379483,-0.01712022,0.038270198,-0.006670378,-0.017608296,0.012952798,-0.0056003644,0.027006896,-0.0029081223,-0.007953143,0.017620811,0.023202403,-0.028959202,-0.015743595,-0.05696728,-0.002201037,0.0026844204,-0.025955655,0.0050559714,0.01052493,0.035742212,-0.026656482,0.010155745,-0.0061729155,0.025955655,0.013566022,0.029735118,-0.0059257485,-0.007170969,-0.0001490041,-0.006197945,-0.013128005,0.017633326,0.005190505,-0.04918309,-0.028633818,-0.05471462,0.01009317,-0.00534694,0.011519856,-0.0073774634,0.022451516,-0.05251202,0.04560386,0.0032726151,0.020824594,0.011976645,-0.020736992,0.015793653,-0.00045444298,0.00066758535,-0.02795802,-0.022551635,-0.0021494136,0.002138463,0.0050810007,-0.05421403,-0.019986104,0.023214918,0.023627905,0.003951542,-0.03241328,0.014467087,0.011019264,0.0023465215,-0.008697772,0.012683731,0.014229306,0.0318376,-0.0041736793,-0.016131552,-0.036367953,0.025580212,0.0021322058,-0.02131267,0.045703977,-0.029284587,-0.0051998915,-0.022614209,0.021487879,-0.032663576,0.0031584178,0.018234035,-0.07348679,-0.029309615,0.010293407,0.018196492,0.013616081,-0.050910126,0.0047556167,0.008428705,-0.026756601,0.002980082,0.012558582,0.023415154,-0.0066766352,0.048181906,0.02534243,-0.004852606,-0.004445876,-0.007052079,-0.024253644,-0.022626724,-0.00865397,-0.022101102,-0.0057004825,0.020298975,0.030460976,-0.026756601,0.0050747436,-0.02848364,-0.042700432,0.020636873,-0.049208116,0.010731424,-0.00088776724,-0.022126133,-0.036017537,-0.030561095,0.032763697,-0.056917224,-0.0144545715,0.04502818,0.0009597272,-0.017745959,-0.00968644,-0.021175008,-0.019072525,-0.0018881676,-0.021863323,0.036668308,-0.038495466,-0.0050027836,0.019961076,0.0075589274,0.00035276037,0.00997428,-0.060171064,-0.022176191,-0.04062298,-0.054864798,0.018909834,-0.015055281,-0.018697083,0.007759164,-0.01153237,0.012840165,0.036067598,0.020098738,-0.027757784,-0.0015698228,-0.019172644,0.008948068,-0.04620457,0.0126274135,0.018496845,-0.015305577,0.0044302326,-0.033839967,-0.020111252,0.0142668495,0.0025858665,-0.016244186,0.024341248,0.042375047,0.007533898,-0.0023371354,-0.03368979,-0.024366278,0.044052027,0.040748127,-0.02047418,-0.025630271,0.00028510235,0.025855538,0.01539318,-0.01594383,-0.06162278,0.021813262,0.017470634,-0.017608296,-0.009192106,0.000495116,-0.012608642,-0.018046314,-0.0015831197,-0.0061134705,0.003303902,0.00020277855,-0.024679147,0.013102976,-0.012020446,-0.038044933,-0.026306069,-0.036217775,-0.011194471,0.016406877,-0.021975955,-0.08044501,-0.01314052,-0.030936537,0.009060701,0.009442402,0.02076202,0.0025436291,0.03761943,0.0021619285,-0.03756937,0.025830507,0.01712022,0.02905932,-0.055215213,0.017508179,-0.00084631203,-0.00033672582,0.006135371,0.029735118,-0.010212061,0.010499901,-0.0039139977,-0.052361842,0.056817103,0.029960385,-0.0034728516,-0.004145521,-0.017633326,0.014029069,0.042124752,-0.024103468,0.03373985,-0.01009317,0.009630124,0.0023918874,0.0055158897,-0.005903848,-0.0094361445,-0.006720437,-0.04007233,0.0023277493,-0.00884795,-0.00281739,-0.0325134,0.016031435,0.014704867,-0.032888845,0.0051091593,-0.028783996,-0.010675108,-0.013002857,-0.003960928,0.010725167,-0.011638746,-0.0123082865,0.051861253,-0.0029018647,0.08014466,0.031061685,0.0018396728,0.036267836,-0.0025999458,-0.011144412,-0.026931807,-0.0096238665,-0.009861647,-0.025755418,0.00786554,-0.004965239,-0.019022467,-0.0030942794,-0.0013602002,0.029534882,0.026556365,-0.00039871308,0.03431553,-0.009317255,0.012239455,0.028608788,0.012120565,-0.0032663578,-0.016894953,0.00067501597,0.019435454,0.027482457,-0.001278072,-0.004524093,0.0032256846,0.037319075,0.015931316,0.017971225,-0.030360857,-0.0054063853,0.005027813,0.01860948,-0.004871378,-0.034741033,0.0073086317,0.021325186,-0.027432399,0.03151222,-0.0159188,0.014191762,-0.0010238655,0.023152344,-0.024541484,0.04149901,0.020774536,0.019247733,-0.016444422,-0.00039714875,-0.057267636,-0.029359676,0.04099842,-0.05301261,-0.010099428,0.040247533,-0.029384704,-0.005900719,-0.0050059124,0.00314121,0.032813754,0.027232163,-0.020073708,-0.006157272,0.02390323,-0.008766604,-0.0113071045,-0.006057154,0.012752562,0.013828833,-0.0034446933,0.013566022,-0.023915745,-0.029509854,-0.03353961,0.005953907,0.038545523,0.024779266,0.009060701,0.0027204005,0.005831888,-0.029434765,-0.038094994,-0.014141702,-0.011250787,0.020386579,-0.017595781,0.009861647,0.0084349625,-0.0003392679,0.018321639,-0.0022948978,-0.023702994,0.00008965667,0.064426094,0.008910524,-0.015643476,0.020386579,-0.028108198,0.020724477,0.030686243,-0.0017332971,0.01685741,0.022889534,0.017157765,0.007940629,0.01573108,-0.00856011,0.01618161,-0.033364404,0.021688115,0.005534662,0.0097365,0.0068330704,0.025329916,0.043551438,-0.011432252,-0.0053312965,0.009091988,0.055665743,0.032863814,-0.024666633,0.02625601,0.05121048,0.0077841934,0.01282765,0.011138155,-0.0037919786,0.036117658,0.02141279,0.004693043,0.031161804,-0.030110562,-0.040773157,-0.06542727,0.003982829,0.0030598638,-0.009142047,0.0234527,-0.013841348,0.008316072,-0.006432597,0.0256553,0.0076089865,-0.027983049,-0.03479109,-0.0019726423,0.042425107,-0.025092136,-0.025780449,0.0066641206,0.028433582,0.025955655,0.013828833,0.012639929,0.0062886775,-0.022051044,-0.021500394,-0.016169097,0.0071897414,-0.01172635,-0.021688115,0.022664268,0.020223886,0.022864504,-0.005284366,-0.040147416,-0.046529956,0.013340756,0.045954276,-0.048181906,-0.027782813,-0.01069388,0.015893772,-0.0070583364,0.01916013,0.024416337,0.015493299,0.040497832,0.0042331247,-0.0028424195,0.0010473307,-0.03589239,0.035692155,-0.022201221,-0.0030348343,0.034165353,0.009229651,0.03824517,0.006620319,-0.012596127,0.01824655,-0.0025874309,-0.013178064,-0.013228123,-0.007314889,0.025492609,0.005963293,-0.007978173,-0.025192253,-0.03699369,-0.029885296,-0.029735118,0.007853025,0.04620457,-0.038445406,0.022676783,0.027432399,0.020899683,0.031186834,0.013027887,0.013991524,-0.013791288,-0.017420575,-0.0055284044,0.01429188,-0.024554,-0.013090461,0.0062042023,-0.039046116,-0.030586123,-0.022439001,-0.0026922422,0.033214226,-0.0034165352,-0.0205743,-0.01014323,0.028733937,0.011695063,-0.0011896864,0.031562276,-0.024754236,-0.008284785,0.026881749,-0.024278674,-0.00032851298,0.028108198,0.011594945,-0.013828833,-0.012120565,0.02858376,-0.03837032,-0.0051060305,-0.009561293,0.013090461,0.022927077,0.007640274,0.027006896,0.016869925,-0.014667323,0.048807643,0.020061193,0.018396728,-0.020561785,0.017032616,0.024103468,-0.0021415919,-0.023340065,0.0144545715,-0.01599389,-0.020924713,0.0025624014,0.012633671,0.027757784,-0.005468959,0.003929641,-0.010061883,0.04783149,-0.0058131157,0.006801783,-0.029810207,0.023340065,-0.0036386724,-0.014329424,0.009911707,-0.045178358,0.036893573,-0.012683731,0.0028111327,0.0025232926,-0.026906779,0.01596886,-0.011851497,0.018972408,0.02502956,0.044052027,-0.026030743,0.018446786,0.003857681,0.06632834,0.013490934,0.022188706,-0.028333463,0.04167422,0.022751871,0.009142047,0.009786558,-0.015155399,-0.00472433,-0.01939791,0.03308908,0.03704375,-0.0055252756,-0.012602384,-0.013165549,-0.0006143975,0.0059945798,0.00896684,-0.0025311145,0.0032569717,0.0014994271,0.017758474,0.018546905,-0.011763894,-0.03481612,-0.009204621,-0.011188214,0.0342905,0.04162416,-0.0018866032,-0.008078291,-0.016782321,-0.00024403822,-0.05601616,0.019698264,-0.0055377902,0.015518328,0.021487879,0.030561095,-0.003313288,-0.0484322,0.02541752,-0.030861448,0.024541484,-0.009098246,-0.023565331,-0.035491917,-0.0025092135,0.020561785,-0.014054099,0.017220339,0.021900866,0.005121674,-0.016732262,0.009104503,-0.048131846,-0.023039712,-0.024829324,-0.017332971,-0.026356127,-0.020086223,0.016194126,-0.009085731,-0.0012147159,0.030110562,-0.009054444,0.019860957,-0.00570674,0.018083857,0.007039564,0.007890569,0.003960928,-0.02505459,-0.026130863,-0.0062135886,-0.016394362,-0.043626525,0.0111756995,-0.021825777,0.006413825,-0.003469723,-0.011551143,0.0037231473,0.00019290361,0.044752855,-0.0022948978,-0.003798236,0.0073336614,-0.008929296,-0.03353961,0.0023167988,0.026381157,-0.0027735883,0.021225069,-0.00700202,0.0112633025,0.02745743,-0.045403626,-0.013328241,-0.002326185,-0.022326369,0.024916928,-0.0154557545,-0.011838983,-0.0038764533,-0.0066578635,-0.0054720878,-0.008960583,0.048882734,0.010155745,-0.03238825,0.045378596,-0.010543703,0.00070552074,-0.027682696,0.005168604,-0.008941811,-0.0042894413,-0.003186576,0.026431216,0.029209498,-0.009411115,-0.014116673,0.005165476,0.02474172,0.02083711,0.028733937,0.023139829,0.0064388546,-0.0047180722,-0.011845239,-0.017545722,-0.013566022,0.02021137,0.026706541,0.012746304,-0.03083642,-0.03889594,-0.035567008,0.022426486,0.018158946,-0.019047497,0.008585139,0.022601694,0.031161804,0.020324003,0.01740806,0.03238825,-0.0016582084,-0.015668506,-0.028884113,0.008553852,-0.011363421,0.032713637,-0.016782321,0.013741229,0.0048807645,-0.011275818,-0.018647023,0.009129533,-0.018947378,0.0071834843,0.018459301,0.009023157,-0.020461665,-0.017645841,0.00024364714,0.015205459,-0.0081158355,-0.028633818,0.0198985,-0.054063853,-0.025855538,0.06542727,-0.016669687,-0.011163184,0.0002790405,-0.028208315,0.021575483,-0.03872073,0.018096372,-0.00015389269,-0.003128695,-0.007465067,-0.0062980633,-0.017921166,-0.024078438,-0.032313164,-0.019573117,-0.011494826,0.0141792465,0.022676783,0.01599389,-0.032263104,-0.01172635,0.014767441,-0.006107213,-0.0057223835,-0.011776408,-0.013065431,0.005152961,-0.048332084,-0.0013695863,0.02793299,0.0027923605,0.0054752165,0.025254827,-0.013803803,-0.0013648933,-0.0028424195,0.0068080407,-0.0023199276,-0.0048619923,-0.0025514509,0.035642095,0.019260248,-0.034340557,-0.025242312,0.011338391,0.009179591,0.008929296,-0.023202403,-0.060221124,0.030460976,0.018697083,-0.020324003,-0.022126133,0.0033789908,-0.05361332,0.01798374,0.001899118,0.013290697,0.000841619,-0.005684839,-0.00025322876,-0.034741033,-0.009504976,-0.004871378,0.025004532,0.0054658307,0.009404858,-0.014254335,0.037869725,0.0030958438,0.014417027,0.0044802916,0.017633326,-0.041423924,-0.0017379902,-0.01210805,0.016732262,0.017070161,0.0074462947,-0.054013792,-0.0030191909,0.022101102,-0.016419392,-0.024716692,-0.0019788996,0.019885987,0.03241328,0.0050309417,-0.014492116,0.0400473,-0.0024044022,-0.016744776,0.03426547,0.02474172,0.0035166533,0.024353763,0.018659538,-0.00697699,0.009886676,-0.0065827747,-0.00465237,0.0008619555,-0.039096173,0.007596472,-0.036968663,-0.019435454,0.0070333066,0.013503448,0.0034540794,-0.026130863,-0.023565331,-0.022501575,-0.00050254667,0.025880566,-0.023627905,-0.008447477,-0.005512761,-0.016945014,0.0034102777,0.015505813,0.016481966,-0.00390774,0.014955163,0.029735118,-0.024541484,0.007170969,-0.010743939,0.006732952,0.031011626,0.0040923334,0.02474172,-0.022113618,0.011113125,-0.011288332,0.020048678,0.03766949,-0.016844895,-0.030761331,0.017195309,0.005747413,0.025830507,0.021863323,-0.018784685,0.0053344253,0.009010642,0.012201911,-0.0019523058,-0.008397418,-0.020524241,0.021362731,-0.02251409,0.0075464128,-0.018021284,0.044127118,0.044052027,0.038845878,0.0123082865,0.0040704324,0.0041392636,-0.001908504,-0.012164366,-0.029184468,-0.03486618,0.004905794,0.0023950161,0.01596886,-0.0090294145,-0.018659538,-0.02392826,0.003488495,-0.028208315,-0.034741033,0.0031678039,-0.013340756,-0.0057411557,0.016006405,0.036067598,-0.03599251,0.016219156,-0.009229651,-0.006232361,0.012377118,-0.014379483,-0.000346503,0.0023246205,0.0041142344,-0.0037231473,0.03646807,0.0022526605,-0.04447753,0.036868542,-0.043226052,-0.014479601,0.0015627833,0.011131898,-0.012508524,-0.007890569,0.0025123423,-0.00913579,-0.011813953,0.0033633474,-0.0003730969,-0.023515273,-0.011088096,-0.0063356077,0.02280193,0.027432399,0.021362731,-0.027707724,0.009905449,-0.000818936,-0.0051091593,-0.028809026,0.005171733]},{"id":"guide-events-0","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Basic Usage\nUse client.on(Events.X, handler) to subscribe to events. Handlers receive event-specific payloads.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.Ready, () => {\n console.log('Bot is ready!');\n});\n\nclient.on(Events.MessageCreate, async (message) => {\n console.log(message.content);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.0048133307,0.013802411,0.018552804,0.0030401424,0.030319331,-0.0032398996,-0.058843583,0.044658076,0.02272308,0.031238763,0.0013032113,-0.015061156,0.017655265,-0.023379818,0.024233574,0.032858714,-0.04776663,0.023883315,0.026400805,0.042950563,0.053108085,0.035923485,0.012817306,0.060157057,-0.04415458,-0.019975733,-0.020096134,0.05604151,-0.0072022094,-0.027364017,0.033471666,-0.020128971,0.007470377,0.012642177,0.00533872,0.013594444,0.051663265,0.03625185,-0.017534863,0.016801506,-0.021300152,-0.02613811,0.030253658,-0.009944084,-0.0069559333,0.033734363,-0.0540713,-0.01684529,-0.049430363,0.0468472,-0.0040690294,-0.038243953,0.036864806,0.07569982,0.032902494,0.0009974184,-0.05227622,-0.027539147,-0.004380979,0.025393808,0.010754059,-0.008077858,0.016812453,0.009922193,-0.022186747,0.035792135,-0.007858946,0.0140651055,-0.0054864855,0.05118166,0.018695097,0.040236052,0.0109401345,-0.018804554,-0.014896971,0.01714082,-0.0025858998,0.032201976,-0.015258176,-0.0065564187,0.054158866,-0.013014327,-0.08537573,-0.039229058,-0.054859385,0.0072569377,-0.034391098,-0.020960838,-0.021967834,-0.015739784,0.0024367657,-0.0056479336,-0.046365593,0.04417647,0.0670309,-0.033931382,0.0042414228,-0.034369208,-0.03369058,0.07149671,0.08086614,-0.08187314,-0.021551901,-0.0133317495,0.023029558,-0.027451582,-0.011241139,-0.01343026,-0.0063703433,-0.0016719415,-0.078852154,0.010671967,0.031129306,0.049868185,0.014524821,-0.023226578,0.05840576,0.008198259,0.021212587,-0.0033055735,-0.02937801,0.053064305,0.018312002,0.014393474,-0.024715181,-0.07893972,0.0065673646,-0.03820017,-0.02848047,-0.033471666,0.087564856,-0.010983917,0.0443516,-0.03259602,-0.013298913,-0.028962078,0.010956553,0.028130211,-0.05643555,0.007076335,0.036339417,-0.07661925,0.030122312,0.04091468,-0.025350027,-0.034369208,-0.06615525,0.0077823265,-0.020993674,-0.027254563,-0.017852286,0.023839533,-0.008937089,-0.0071036993,-0.01786323,0.0066494565,0.011547616,0.019067248,-0.037915584,-0.011066009,0.02110313,0.01136154,-0.0004350879,-0.016637323,-0.054202646,-0.0084062265,-0.030012855,-0.01918765,0.0017034102,0.032311432,0.030319331,0.010743113,0.031786043,0.039097708,0.026006762,-0.047635283,-0.019198595,0.020654362,-0.00685195,0.0388788,0.045577507,0.009621189,-0.018859282,-0.00013254446,0.006934042,-0.011427214,-0.007152954,0.012051114,-0.0662866,-0.04597155,-0.047372587,0.012215298,-0.015247231,0.012149624,0.056347985,0.006249942,0.0056096236,-0.017578645,0.010102795,-0.021070294,-0.0044986447,-0.033449776,0.014338746,-0.011460051,0.024737073,-0.014305908,-0.009971448,0.033055734,0.038265843,-0.017699046,0.0036038412,0.024408704,0.008291298,0.012423264,-0.049605493,0.017709993,-0.030691482,0.039601207,-0.046584506,-0.029859617,-0.031961173,-0.028152103,0.03640509,-0.022482278,-0.025656503,0.039710663,0.020928001,-0.022876319,-0.013134729,-0.005204636,0.0005123912,0.03949175,-0.0031714898,-0.029947182,0.045665074,-0.019132921,0.056829594,-0.017151767,-0.018125925,0.009320185,-0.004263314,-0.016155716,0.001975682,-0.026116218,0.035617005,0.0028485942,0.006950461,0.009325657,0.038594212,0.008329608,0.07158427,-0.025503265,0.057267416,0.002076929,0.020128971,-0.008428117,0.0048981593,-0.017731884,-0.0076564522,-0.03242089,0.042271934,0.00023054185,0.0029799417,-0.0047887033,-0.05477182,-0.038594212,0.007640034,0.028918294,-0.009664971,-0.028765056,-0.006364871,-0.029837726,0.0060857576,-0.03169848,-0.055078294,-0.0034232386,-0.018049307,0.010715749,-0.044570513,0.029443683,-0.01836673,-0.03419408,0.011460051,-0.010234143,0.009024654,0.039338514,-0.011821256,-0.07447391,0.0208076,0.0023587784,0.009785373,-0.0012135942,0.023357926,-0.028983967,0.039032035,0.08393092,0.08585735,0.0078096907,0.040039033,0.017502027,-0.0051170713,-0.028918294,0.00018231277,-0.020654362,0.0028978495,0.011919767,0.0022493224,-0.029224772,0.055778816,-0.038594212,0.010387382,0.039951466,0.006611147,-0.0378718,0.0051854816,0.012335699,0.025656503,0.06357209,0.0031523348,-0.007995766,-0.01836673,-0.042928673,-0.0027555567,-0.029290445,-0.030078528,-0.038068824,-0.023554947,-0.0071474817,0.03870367,0.044570513,0.041527633,-0.042797323,0.0042660506,0.04341028,0.0028075483,-0.01009185,-0.01089088,-0.003948628,-0.0221758,0.024561943,0.0070106615,-0.058449544,-0.042315718,0.0016596277,-0.013900922,0.055822596,0.003248109,0.0064141257,-0.038178276,-0.007328084,-0.0155318165,0.010343599,-0.019165758,-0.035441875,-0.015093992,0.0033192553,0.0060802847,-0.031829827,-0.008597774,-0.015334796,-0.04851093,0.011635181,0.015061156,0.016538812,0.0074320673,-0.035989158,-0.013747683,-0.0117118,0.04518347,-0.005218318,0.06536717,0.0026871467,-0.008690813,0.0079684025,-0.0203041,-0.025547048,-0.026116218,0.0010165733,-0.010934662,0.0039458913,0.0073992307,0.042928673,0.0073390296,-0.047810413,-0.015466143,0.011897875,-0.037959367,-0.024408704,0.010775951,0.020523014,0.034588117,-0.0070653893,-0.01811498,0.027889408,0.0009933138,0.009544569,0.05534099,0.007443013,0.015455198,-0.013966595,0.049299017,0.023686294,0.013922812,0.0022096445,0.00702708,-0.051050313,-0.030078528,0.015061156,-0.024277357,-0.0008838578,0.01749108,0.0034205022,0.025021657,0.004153858,-0.04397945,-0.0077877995,0.004079975,-0.014689005,-0.006830059,-0.0020796654,0.00427426,-0.02272308,-0.01602437,0.011093373,-0.018815499,-0.022547951,0.02135488,-0.040214162,-0.0015282804,-0.03572646,-0.026203783,-0.026400805,0.031238763,0.034916487,0.008871415,-0.039272837,0.045008335,-0.04741637,-0.028217776,0.022963883,-0.007716653,-0.010491365,0.028349122,0.059062496,-0.017151767,0.018301055,-0.020544905,0.029290445,0.0055877324,-0.0034998578,-0.034675684,-0.05030601,0.029531248,0.013080001,-0.044745643,-0.012368537,-0.015903967,-0.002082402,0.026357023,0.013857138,-0.018027415,0.027539147,-0.025984872,-0.005237473,0.0006091914,0.00037967574,0.0012696905,0.029947182,0.008526628,-0.015739784,0.032793038,0.027604822,0.061207835,0.010420218,-0.00050862867,-0.032333326,0.028152103,-0.058537107,0.024846528,0.023773858,0.054202646,0.028371014,-0.0005571998,-0.0102450885,0.030516353,0.09316901,0.01983344,-0.016473139,-0.019789658,0.0052730464,-0.043760538,0.0076509793,0.039535534,-0.009134109,0.056172855,-0.064228825,-0.0117118,-0.0035655315,0.0041976403,-0.0057354984,-0.028458579,-0.022810645,-0.073948525,0.016659215,0.009073908,0.013682009,-0.008827632,-0.005431758,-0.02758293,0.022701189,0.013955649,-0.0099112475,-0.009659498,0.022591734,0.00029707063,0.0063703433,-0.009539097,-0.016330846,-0.03498216,-0.014951699,-0.023117123,0.053458344,-0.0014762888,-0.007278829,-0.0074265944,-0.02937801,-0.02200067,-0.0331433,-0.009851047,-0.03366869,0.0059215734,-0.023708185,-0.003951364,-0.025568938,-0.012105841,0.04014849,-0.02955314,-0.017053256,-0.011038645,-0.017129876,-0.04562129,0.039075818,-0.017129876,-0.0055138497,-0.031085525,0.016068151,-0.0062061595,0.055078294,-0.036799133,0.0221758,0.034828924,-0.025722178,0.0050267703,0.0020413557,0.009976921,0.019450344,0.0014147197,-0.013835248,0.0052675735,0.01612288,-0.011191883,-0.019045357,0.029662596,0.00033606435,0.020172754,-0.021858377,0.0028048118,-0.011689909,-0.03351545,0.007913674,-0.001505021,0.014218343,0.012587449,0.024474379,-0.014426311,-0.012488938,-0.037455868,-0.018574696,-0.018093089,-0.006747967,0.0111973565,-0.0338876,0.009145055,0.046234246,-0.038637992,-0.018859282,0.007853474,0.00014682506,0.011952603,0.0145029295,0.019844387,-0.03658022,-0.033449776,-0.0066768206,-0.016079098,-0.0014667114,-0.0044466527,0.030713374,-0.027429692,0.019056302,0.0047558662,0.010972971,-0.02127826,-0.02252606,-0.010507783,-0.011678963,-0.00044090275,-0.016462194,-0.016615432,0.0130362185,0.02145339,-0.003472494,-0.031983063,-0.02578785,-0.030932287,0.008367917,-0.013747683,0.006463381,0.012324754,0.026050545,0.007503214,0.000864703,-0.029180989,0.0071146446,-0.011919767,0.024934093,0.035376202,-0.0016651005,0.01577262,0.009205256,0.03443488,-0.0042414228,0.021486226,-0.007267883,-0.02307334,0.005242946,-0.011886929,-0.011394377,-0.0044247615,-0.023007667,0.0032234814,-0.027013758,0.025087332,-0.013309859,0.014163616,0.0015830084,-0.012499884,0.017272169,-0.010567984,-0.007158427,-0.0057573896,0.020030461,-0.006912151,-0.010765005,0.022744972,-0.07097132,0.011241139,-0.015083047,0.038134497,0.02127826,0.004758603,0.011460051,-0.023554947,0.019713039,-0.0066494565,0.010589875,-0.008055967,0.015619381,-0.014240235,0.017600536,-0.0047859666,0.041352503,0.005905155,-0.008428117,0.0044493894,0.009429641,0.020325992,-0.047372587,0.027079433,0.011854093,-0.018476184,-0.0016910963,-0.038178276,-0.035595115,0.0059489375,-0.031457674,-0.005937992,0.0039595733,0.006720603,0.043519735,-0.039623097,-0.012576503,0.026948085,0.02486842,0.00017889227,-0.008679867,0.009539097,0.029180989,-0.009424168,-0.032705475,0.0043618246,0.00034974635,0.0047969124,-0.0026994604,-0.0063429796,-0.026357023,0.00644149,-0.013167566,0.02379575,-0.041834112,-0.012543666,0.032201976,-0.012040168,-0.0023259416,-0.032902494,0.011350594,-0.007858946,-0.025634613,0.008231097,-0.0286556,0.0013401528,0.023226578,0.014108888,0.020413557,-0.010381908,-0.033121407,0.044570513,0.028786948,-0.045752637,0.022274312,-0.013233239,0.036120504,0.0042660506,-0.008652503,-0.050612487,0.020479232,-0.051663265,0.0072295736,-0.04649694,-0.03281493,0.01298149,0.0019373725,-0.0019934687,-0.021300152,0.05210109,0.006523582,0.0109401345,0.014404419,-0.023905206,-0.008083331,-0.035091616,0.0044411803,-0.01774283,0.007858946,-0.0015679583,0.0104038,-0.018826444,-0.014918863,-0.012828251,0.009790846,-0.006906678,0.017086092,0.013692955,0.021595683,-0.0163199,-0.015444252,-0.023489274,-0.0064141257,0.0044767535,-0.022569843,0.005456385,-0.015805457,0.0022342722,0.03914149,0.040980354,-0.021146914,-0.042293828,-0.02506544,-0.021639466,-0.035857808,-0.008488319,0.009358495,0.03174226,0.011427214,0.0076728705,0.004309833,-0.026466478,-0.008378862,-0.0515757,-0.033449776,-0.023751969,-0.031216871,-0.007546996,-0.007152954,-0.011137156,0.018125925,-0.00042345817,-0.07745112,-0.023117123,0.015061156,-0.034303535,-0.024408704,-0.010923716,-0.0016158452,0.021551901,0.020391665,-0.025459483,0.019034412,-0.014141724,-0.010628184,-0.028042646,0.03366869,-0.007404703,0.019537909,0.0018826445,0.0063210884,-0.024999768,-0.019078193,-0.049605493,-0.019132921,0.050875183,0.00499667,0.018312002,-0.0226793,0.0035108034,0.047328807,0.022416603,0.00014639749,0.017523916,-0.0050158245,-0.0031003433,0.046190463,0.04811689,0.012598394,0.013649172,-0.0054043937,-0.06309048,-0.009478896,0.026663499,0.0038829541,-0.02117975,0.033931382,0.010617239,0.0022342722,-0.0009392699,-0.012685959,-0.0079684025,0.020019516,-0.009566461,0.015247231,0.0071091717,0.04973684,0.06090136,-0.016560704,0.023773858,0.013868084,-0.04255652,-0.01793985,0.013517825,-0.024737073,-0.0135506615,-0.0072405194,-0.012992436,0.00126627,0.008526628,0.03257413,0.005795699,0.00626636,0.02559083,0.030954177,0.033449776,0.03027555,0.0057081343,0.013408368,0.0042058495,0.02758293,-0.040126596,0.03835341,0.035266746,0.017830394,0.04273165,0.04697855,-0.023598729,0.012160569,0.0069230967,0.0029306863,-0.0038364353,0.019209541,-0.018049307,-0.0021891214,0.0047887033,0.021497173,-0.017272169,-0.06313426,0.03804693,0.026203783,-0.017677156,-0.006830059,-0.023861423,0.017151767,0.017983632,-0.035266746,0.013660118,0.0142840175,-0.033099517,-0.013539717,-0.038594212,0.03570457,-0.018224437,-0.0027145105,0.014721842,-0.001934636,0.021694193,0.04073955,-0.017370678,-0.008017657,0.0067917495,0.019625474,0.0045916825,-0.023927098,-0.023051448,-0.017589591,-0.020501122,0.0032508452,-0.0063156155,-0.007360921,0.01624328,0.020227483,0.037543435,0.02775806,0.01270785,0.003275473,-0.0057245526,-0.01022867,0.033077624,0.006217105,0.030056637,0.008504737,-0.011821256,-0.0075962516,-0.020238427,0.004140176,0.01803836,-0.015061156,0.034172185,-0.0169438,-0.017381625,-0.0012929499,-0.006950461,-0.01793985,-0.002316364,-0.0004398766,0.055822596,-0.0012252239,-0.004318042,-0.0070653893,0.024999768,0.024977876,0.03966688,0.020862328,0.0033849292,-0.00860872,-0.0019702094,0.0076728705,0.026969977,-0.010048067,-0.019516017,0.0008024498,-0.011131682,-0.0048324857,-0.011744637,0.021125022,0.028261557,0.054377776,-0.009965976,-0.02883073,0.020599633,0.024649508,-0.0031003433,0.01549898,0.03570457,0.0010829311,0.0044521256,0.0069887703,0.02110313,-0.02848047,0.015750729,-0.021661356,0.04402323,0.039776336,0.00020762449,-0.03677724,-0.0034232386,0.0037488705,0.015980586,-0.012937708,0.017326897,-0.0030729792,0.0017198286,-0.021508118,-0.009462478,0.022142963,0.0045916825,-0.009068436,0.021004621,0.007443013,0.039075818,-0.008909725,0.0045670546,-0.042250045,0.015696,0.022701189,0.012291917,-0.04108981,0.010370963,0.0029087951,0.0074758497,-0.006934042,-0.028808838,0.020369776,0.020829491,-0.022230528,0.012992436,0.023160905,-0.03045068,-0.034412988,0.013123783,0.025393808,-0.00905749,0.014174561,0.019756822,0.036842912,-0.017688101,0.013167566,0.024540052,0.02008519,0.033559233,0.004181222,0.015181557,0.0025626402,-0.0371275,-0.010387382,0.018498076,0.00010449634,0.02848047,-0.002431293,0.019417508,-0.0051499084,0.018399566,0.057924155,-0.0026789373,0.021584738,0.0054837493,0.0074867955,0.04562129,0.013101892,0.00055001676,0.032858714,0.01133965,-0.008586829,-0.017556755,-0.003166017,0.002540749,-0.0018662261,0.009785373,0.008165423,-0.013747683,-0.026050545,0.0104640005,0.008466427,-0.013463097,-0.03266169,0.020785708,0.0025161214,-0.0056205695,-0.015663164,-0.0048926864,-0.0016965691,0.011460051,-0.026291348,-0.0037160337,-0.0012649017,0.0028732219,-0.010288871,-0.029312337,0.016998528,0.0011212407,0.03174226,-0.021956889,0.029837726,-0.003907582,-0.008220151,0.014294963,-0.04253463,0.015444252,0.0021426026,0.011777474,-0.002498335,-0.027670495,-0.014393474,-0.010808787,-0.021540955,0.025306243,-0.015991531,-0.014710896,0.041199267,-0.010836151,-0.038003147,0.043322712,0.023007667,-0.008980871,-0.021540955,0.022066344,-0.021289207,-0.027626712,0.033559233,-0.002397088,0.022088235,0.015805457,-0.02524057,0.019866277,-0.014678059,-0.0075086867,-0.0105406195,-0.011350594,0.0058449544,-0.009342076,0.02937801,-0.044242144,-0.039951466,-0.02105935,-0.011317758,0.011169992,-0.047810413,0.008975398,0.013167566,0.06357209,-0.04043307,0.018596586,-0.017414462,0.03640509,0.049299017,-0.028786948,0.042315718,-0.040389292,-0.039951466,0.010360017,0.0416152,0.010080905,-0.034719467,0.009052017,0.053020522,0.020369776,0.003174226,0.01415267,0.0059708287,-0.02975016,-0.025919197,0.022142963,0.013572553,-0.012828251,0.054465342,0.009451532,-0.013660118,-0.0021467071,0.0033356738,-0.034872703,-0.009369439,0.016462194,-0.010195833,-0.0030182512,-0.046409376,-0.022766864,-0.0036120503,-0.032158196,0.0003943839,0.0017731884,0.010754059,-0.009079381,-0.017086092,-0.003664042,-0.029706378,-0.0016117407,-0.025218679,-0.0122262435,-0.0004863954,-0.010042595,-0.027692387,-0.015586545,0.036864806,-0.041527633,-0.0029443684,0.02631324,-0.010726695,-0.009856519,-0.048817407,-0.039338514,-0.0037625525,0.060332187,0.012291917,-0.000022810475,0.008690813,0.027845625,0.039053928,0.028042646,-0.018443348,-0.024452487,0.013145674,0.022110127,-0.0024709709,-0.016538812,0.0018894854,0.026357023,-0.003540904,-0.01087446,0.0016432093,0.037171282,0.026378913,0.006348452,0.000029352184,0.013780519,-0.02379575,0.008887833,-0.009041072,-0.022547951,0.010059013,0.0004419289,0.011460051,-0.0062280507,0.017720938,0.000021634676,-0.0067808037,0.0009953661,0.009407749,-0.027823733,-0.04014849,-0.0009591088,0.00743754,0.014886026,0.038419083,0.0024600253,0.005174536,0.0013339958,-0.025131114,-0.046059117,-0.013736737,-0.01133965,-0.020895164,0.0054728035,0.0025298034,0.0011267135,-0.021694193,-0.0025024395,-0.04176844,0.009708754,0.014557658,-0.015827348,-0.011071482,-0.018727934,0.009758009,-0.023160905,-0.011668017,0.013539717,-0.02324847,0.003289155,-0.0024230839,-0.02524057,0.014371582,0.02648837,-0.0027322972,0.0055603683,-0.008833105,0.008553992,0.016473139,-0.026466478,0.036536437,0.023204688,-0.010567984,0.017305005,-0.045927767,-0.01965831,0.014382528,-0.0074649043,-0.0065673646,-0.008964452,-0.0060036657,0.007131063,0.0071474817,0.004528745,-0.008285825,0.009380385,0.0107212225,-0.00077029713,-0.0017882385,-0.025153005,0.03154524,0.009840101,0.008105222,-0.020325992,0.05516586,0.0082639335,0.035595115,0.02848047,0.01778661,0.0041976403,0.012368537,-0.023905206,-0.008909725,0.0029197407,-0.015630327,-0.0037817073,0.008203733,0.00076756073,0.051794615,0.0065454734,-0.0052675735,0.006381289,-0.0077659083,-0.004126494,0.012291917,-0.0175677,0.017633373,-0.010370963,-0.015728837,0.001477657,-0.016013423,-0.0061897407,-0.053108085,0.00644149,0.0014694477,-0.010896352,-0.0018689624,-0.024649508,-0.007245992,-0.024080336,-0.010743113,0.003746134,0.0051389625,-0.030297441,0.03204874,-0.027342128,-0.018301055,-0.045665074,0.030669592,-0.020490177,0.032333326,-0.01714082,-0.02162852,0.0043235146,-0.034522444,0.017512972,-0.006917624,0.015652219,-0.025043549,-0.0029936235,-0.046278026,0.031238763,-0.006381289,0.015104938,0.004482226,-0.015192503,0.023182796,-0.011558562,0.007284302,0.016713941,0.029815834,0.018848335,-0.011788419,0.014185507,0.0048981593,-0.03708372,0.01415267,0.031610914,0.0040553473,-0.009801791,0.0117118,-0.033997055,0.022876319,0.037740454,-0.031413894,0.022591734,0.02559083,-0.009336603,-0.04632181,-0.006162377,-0.00812164,-0.011350594,-0.0074320673,-0.018071197,-0.048729844,0.055822596,0.014842244,0.058974933,0.008362444,0.0048242765,-0.025897307,0.01198544,-0.0143278,-0.0024011927,0.015586545,-0.013638226,-0.0068847868,0.0150173735,-0.021223532,0.026116218,-0.036208067,-0.012412319,0.03734641,0.0008900147,-0.01298149,-0.0029908873,0.0069559333,0.005713607,0.018738879,0.049430363,-0.042862996,0.0358797,-0.007552469,0.012642177,-0.05319565,0.00854852,-0.024211682,0.0037789708,0.013747683,-0.039601207,0.01721744,0.00860872,-0.019592637,-0.011668017,0.011060536,-0.006797222,-0.004733975,0.031764153,0.02055585,-0.028130211,-0.008805741,-0.017425407,0.0072022094,0.033033844,-0.0034697575,-0.015378579,0.010037122,-0.009867465,0.0020263055,0.028918294,-0.0004740816,-0.006605674,0.01676867,-0.013528771,0.025350027,-0.009259984,-0.016648268,0.047328807,0.025897307,-0.0030729792,-0.039360404,0.02162852,0.004287942,-0.020971784,-0.0036312053,-0.0065400004,0.0056150965,0.026510261,0.04091468,0.0040143016,0.0438481,0.029969072,-0.0010117845,0.01764432,0.008466427,-0.030800939,0.04886119,0.04358541,0.035266746,0.0011068746,0.018892119,0.043913778,0.01764432,0.025284354,0.025087332,-0.030012855,0.011624235,0.001975682,-0.028962078,-0.010179414,-0.0012703745,-0.029706378,-0.016330846,-0.055559903,-0.024255466,-0.04597155,-0.00812164,-0.011843147,0.014678059,-0.022876319,-0.014229289,0.025459483,0.020917056,0.013889976,0.023642512,0.016801506,-0.023204688,-0.009052017,0.01856375,-0.0004990513,0.02648837,0.012412319,-0.027736168,-0.0005257312,0.017523916,0.042950563,0.000010785271,0.03570457,-0.032793038,-0.019275215,0.039776336,0.031610914,-0.029115316,-0.009528151,0.016724888,-0.022482278,-0.027561039,-0.01532385,-0.04058631,-0.014437256,0.0053879754,-0.048904974,-0.020785708,0.010562511,0.0006967563,-0.033756252,0.016090043,-0.029903399,0.009128637,0.009686862,0.0005681454]},{"id":"guide-events-1","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Common Events\nEssential events for most bots.\n\n```javascript\n// Bot finished loading\nclient.on(Events.Ready, () => {});\n\n// New message (DM or guild)\nclient.on(Events.MessageCreate, async (message) => {});\n\n// Reaction events\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {});\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {});\n\n// Guild joined/left/updated\nclient.on(Events.GuildCreate, (guild) => {});\nclient.on(Events.GuildDelete, (guild) => {});\n\n// Channel created/updated/deleted\nclient.on(Events.ChannelCreate, (channel) => {});\nclient.on(Events.ChannelDelete, (channel) => {});\n\n// Member joined/left/updated\nclient.on(Events.GuildMemberAdd, (member) => {});\nclient.on(Events.GuildMemberRemove, (member) => {});\n\n// Voice state changed (for /voice)\nclient.on(Events.VoiceStateUpdate, (data) => {});\nclient.on(Events.VoiceServerUpdate, (data) => {});\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.014033304,0.012952792,0.0067631984,0.0021877012,-0.018315328,0.0051190876,-0.045301422,-0.0036417223,-0.020049483,0.0476492,0.013326302,-0.017048063,0.019102367,-0.01379319,0.03321571,0.045968406,-0.06947286,0.045354784,-0.0031031342,0.026332453,0.056079853,0.037057526,0.010638365,0.06301647,-0.022050427,-0.021396786,0.015980892,0.073314674,-0.0034983212,-0.023744563,0.05768061,-0.016207665,0.012545933,-0.0043687327,-0.026252415,0.01528723,0.027012775,0.021436805,-0.0043520583,-0.000015228556,-0.017448252,-0.03689745,0.022650711,-0.013553076,-0.024811734,0.013859888,-0.037724506,0.0007382658,-0.038231414,0.0582142,-0.032895558,0.0073234634,0.045861688,0.063496694,0.013072849,0.014766984,-0.050877392,-0.04732905,-0.014540209,0.013819869,-0.005255819,-0.016714571,0.0034816465,0.015193852,0.012612632,0.019115707,-0.022010408,-0.006476396,0.029213816,0.030974649,0.01267266,0.011832262,-0.001181392,-0.02980076,-0.0064997403,0.007903738,-0.015954211,0.007736992,-0.020703124,-0.021530181,0.018342007,0.007190067,-0.10196822,-0.04578165,-0.025652131,0.008990918,-0.045674935,-0.0034516323,-0.002179364,0.0020543048,-0.00068907585,-0.046155162,-0.0632299,0.021290068,0.050530564,-0.024664998,0.018702177,-0.031134725,-0.0030714525,0.05442574,0.063550055,-0.10789102,-0.052718263,-0.01079844,0.040739268,-0.022543995,-0.018808896,0.0018208611,-0.07059339,0.0028230017,-0.08195876,0.0058294237,0.0064497166,0.045674935,0.017808422,-0.048663013,0.0735281,0.001481534,0.022383919,-0.01599423,-0.033295747,0.031908423,0.0035616844,-0.015860835,0.011485431,-0.035109937,-0.005749386,-0.043834064,-0.025118547,-0.002574551,0.042393383,0.0072167465,0.05741382,-0.049650148,-0.04103274,-0.0070099817,-0.008283918,0.016661212,-0.07459528,0.012792717,0.026385812,-0.054479096,0.018875593,0.050503884,-0.03393605,-0.018768877,-0.07096689,-0.016928006,-0.048262823,-0.04396746,-0.051837847,0.008824173,-0.03572356,0.0040152324,0.010344892,-0.023344373,-0.020356294,0.024278149,-0.037857905,-0.04207323,0.020983256,-0.014606908,-0.0037884582,-0.01081178,-0.044954594,-0.022624033,-0.021063294,-0.027639737,-0.037777867,0.017661685,0.044340968,-0.016327722,0.0021476822,0.03868496,0.025091866,-0.025558753,-0.038658284,-0.012232452,-0.0020459676,0.0020176207,0.035830278,0.0030130916,-0.03991221,-0.047969352,-0.0035316702,0.01600757,-0.0019059014,0.014446832,-0.07977106,-0.057627253,-0.021810314,-0.0053091776,-0.01414002,0.04164636,0.07171392,-0.006936614,0.021103313,-0.02159688,0.011518781,-0.034282878,0.012572613,-0.041166134,0.07998449,-0.025412017,0.016461117,-0.0320685,-0.0077303224,0.025865566,0.042900287,-0.0069499533,0.013066179,-0.014646927,0.023797922,0.020743143,-0.06264296,-0.00049273303,-0.04732905,0.049703505,-0.06403028,-0.023797922,-0.026719302,-0.008684107,0.04884977,-0.0022427272,-0.0018725522,0.037937943,0.041939832,-0.030547779,-0.0019809369,-0.0064563868,-0.009924694,0.016928006,-0.019822707,-0.018688839,0.01858212,-0.021663578,0.032975595,0.010124789,0.020342954,-0.006049528,0.014566889,-0.0043287138,-0.0005139931,0.028840305,0.01304617,-0.013533067,0.0032298607,-0.010598346,0.007376822,0.028093286,0.082812496,-0.003508326,0.06445715,-0.005259154,0.033562537,-0.01081845,0.008043804,0.006929944,-0.008544041,0.006076207,0.011865611,-0.0024011356,-0.0105049675,-0.02274409,-0.035243332,-0.03500322,-0.010558327,0.015487324,-0.0034583022,-0.011218639,0.016287703,-0.054158945,0.033455823,-0.024825074,-0.03086793,-0.00745019,-0.0068632457,0.038765,-0.014807003,0.030040873,-0.0015624056,-0.003091462,0.02980076,-0.0077303224,0.014993757,0.02681268,-0.027066134,-0.055012684,0.010898488,0.005105748,-0.0011572139,0.0045721624,0.0092577115,-0.036017034,0.040899344,0.023491109,0.07758336,-0.0019859392,0.02718619,0.007316794,-0.006269632,-0.022517316,-0.022090446,-0.0011605489,0.03014759,0.020196218,-0.003658397,-0.045168027,0.022277202,-0.023250995,0.033242386,0.03433624,-0.020409653,-0.04274021,-0.029907476,0.0010646702,0.014513531,0.08793492,0.048636336,-0.017981837,0.013506387,-0.04023236,0.01864882,-0.026199056,-0.022890825,-0.04802271,0.0013914914,-0.014927059,0.023170957,0.031748347,0.04660871,-0.038898397,0.029640684,0.039458662,0.008323937,-0.0017975167,-0.022557335,-0.016621193,-0.020049483,0.025051847,-0.0040152324,-0.026199056,-0.04284693,-0.03169499,0.003761779,0.034042764,-0.03158827,-0.0034816465,-0.048556298,0.0062462874,-0.01746159,0.027052794,-0.032148536,-0.04020568,-0.019635953,-0.014593569,0.0072434256,-0.0033482502,-0.029694043,0.025798867,-0.057467178,-0.022050427,0.032575406,0.0140733225,0.012959462,0.00781703,-0.047409087,-0.013753171,0.01376651,-0.04876973,0.026479188,0.014486851,-0.008764145,-0.008310596,-0.06749859,0.008544041,-0.030894611,0.035270013,-0.03017427,0.042606816,-0.021196691,0.016901325,0.02534532,-0.05170445,0.024051374,-0.009224363,-0.008797494,0.005669348,-0.0052391444,0.023944657,0.045621574,-0.012679329,-0.028733589,0.015460645,0.013993285,0.004949007,0.038604923,0.028760267,0.00670317,-0.02080984,0.03604371,0.010751751,0.0026112348,-0.00893756,0.009024268,0.0064563868,-0.03393605,-0.008023795,-0.0111919595,-0.0010338222,0.054532457,0.034176163,0.030307665,-0.02046301,-0.0054525784,-0.020449672,0.01265932,-0.02718619,0.010758421,0.044741157,-0.014566889,-0.040685907,-0.008737465,0.00032744653,-0.030227628,-0.006589783,0.03988553,-0.02643917,0.019489218,-0.060401898,-0.040845983,-0.011151941,0.021796975,0.033269066,0.043647308,-0.0676053,0.017248157,-0.023957998,-0.0058394284,0.027372945,-0.019129047,-0.0069566234,0.021143332,0.038871717,-0.024678338,0.022637373,-0.025158565,-0.029347213,0.013366321,0.00087041163,-0.030654497,-0.019729331,0.00031077198,0.015167173,-0.072460935,-0.04396746,0.015954211,0.0040886,-0.0021760291,-0.024144752,-0.04506131,0.04775592,0.0047522476,0.031961784,-0.008637418,0.006112891,-0.011885621,0.014460172,0.012625971,-0.01747493,0.025772188,-0.013279613,0.021503503,0.0051991255,0.00080454716,-0.0069499533,0.05365204,-0.024091393,0.024544941,0.013899907,0.017661685,0.013519727,-0.0163544,-0.0072100763,0.02117001,0.08371959,0.03137484,-0.028626872,-0.020703124,0.022130465,-0.056400005,0.010498298,0.041219495,-0.015167173,0.026319113,-0.03494986,0.0053191823,-0.019115707,0.01974267,-0.0011922305,-0.022237184,-0.031188082,-0.0491966,0.048636336,0.017394893,0.011131931,-0.016487798,0.0020543048,0.024731696,0.014606908,-0.018342007,-0.011798914,-0.01005142,-0.0035583496,0.011358705,0.014473512,-0.019809369,-0.016114287,-0.030280987,0.0039018453,-0.022490636,0.02643917,0.021036616,-0.0034749766,-0.007410171,-0.020276256,-0.014686946,-0.020796502,-0.020276256,-0.04215327,-0.008857522,-0.0012097388,0.014473512,0.0013431351,-0.037057526,0.018502083,-0.015020437,-0.0027012774,0.0008287252,-0.03756443,-0.01711476,0.041219495,0.03086793,0.005175781,-0.0215702,0.025371999,-0.028760267,0.045568217,-0.01670123,0.012966132,0.017701704,-0.038845036,0.008123842,-0.0083572855,0.006629802,0.010951846,-0.0046121813,-0.01377985,0.0043120394,0.014033304,0.005732711,-0.03788458,0.02606566,0.005189121,-0.011952319,-0.024198111,0.017448252,0.0047355727,-0.04063255,0.026025642,0.0011438743,0.020636426,0.024771715,0.006376349,-0.01747493,-0.031028006,-0.03390937,0.007777011,-0.031028006,-0.029027062,0.00061028864,-0.043754026,0.0071633877,0.031561594,-0.07096689,-0.008990918,-0.016928006,0.016634533,0.0013122873,0.020436332,0.016114287,-0.008150521,0.0058227535,0.010638365,0.0022260528,0.0030214288,-0.026572566,0.027906531,-0.05127758,0.013926586,-0.008750805,0.009644561,-0.036097072,-0.011765564,-0.0020709794,-0.004962347,-0.0092577115,-0.018808896,-0.015487324,0.020356294,0.019542575,-0.004355393,-0.004472115,-0.04055251,-0.019422518,-0.006102886,-0.041486286,0.0120523665,0.019982783,0.01114527,-0.023784582,0.017661685,-0.011091912,0.0042620157,0.016287703,0.040579192,0.022984203,0.011398724,0.01975601,-0.023757903,0.003238198,-0.00031118884,-0.00023135942,-0.03420284,-0.04570161,-0.008123842,-0.0019692646,-0.007116699,0.01228581,-0.0223439,0.004322044,-0.010011401,0.033242386,-0.037004165,0.022370579,-0.015167173,-0.008163861,0.0071033593,-0.016661212,0.008750805,-0.01415336,-0.010725072,0.0073234634,0.005872777,0.025718829,-0.04388742,-0.00066864956,-0.01751495,0.0018408706,-0.0066698208,-0.018955631,0.010758421,0.009524505,0.02722621,-0.014340115,0.018181931,-0.012799386,0.013979944,-0.008243899,0.015327249,-0.030014195,0.01894229,0.017008044,0.02418477,0.042980324,0.005435904,-0.011345365,-0.05543955,-0.0045988415,0.010711732,-0.008757475,0.0035683543,-0.04570161,-0.01898231,-0.0011913967,-0.012059037,0.026172377,-0.011685526,0.023531128,0.00577273,-0.0061762542,-0.0011697198,0.014100001,0.015874173,-0.00033369949,0.027773134,0.00668983,0.012559273,-0.006429707,-0.064617224,-0.0019275782,-0.021877013,-0.0029747402,0.0031431532,-0.0043253787,-0.001974267,0.014246738,-0.011712206,0.013806529,-0.04540814,-0.026025642,0.038524885,-0.04767588,0.011225308,-0.047489125,-0.017554969,-0.020903219,-0.01636774,0.016501136,-0.037377678,0.0038618264,0.03169499,-0.012032357,-0.010464949,-0.008417314,-0.016794609,0.022023749,0.0305211,-0.053411927,0.021543521,-0.030654497,0.045034632,0.021263389,-0.008730795,-0.01526055,0.01638108,-0.04388742,0.009164334,-0.059548162,-0.02645251,0.00896424,0.019475877,-0.0065197498,-0.014713625,0.013619774,-0.00745686,0.0040352414,0.009484486,-0.012205772,0.00071909005,-0.04583501,0.011605488,-0.04732905,0.00783037,-0.008130511,0.00045604902,0.03535005,-0.010451609,-0.008383965,0.028066607,0.00856405,0.039351944,0.0053358567,0.052424792,-0.02675932,-0.009497825,-0.016821288,-0.009757948,0.011265327,0.005432569,-0.0132129155,-0.01526055,-0.014486851,0.0024311498,0.022477297,0.0114921015,-0.057894047,-0.04663539,-0.0016699564,-0.04100606,-0.014700285,-0.016314382,0.01491372,0.011251988,0.011732215,-0.010618355,-0.00409527,-0.0078036906,-0.04319376,-0.046315238,-0.037004165,-0.028947024,-0.024344847,-0.011025214,-0.020929897,-0.025905585,-0.0017208138,-0.101487994,-0.005819419,0.0017641677,-0.041406248,-0.018968971,-0.009524505,-0.010451609,0.026986096,0.022997543,-0.040472474,0.024891771,0.0001398578,-0.033002272,-0.036924127,0.044047497,-0.011111922,0.045941725,0.0036984158,0.0033632573,-0.035616845,-0.00969792,0.008684107,-0.031054687,0.028947024,0.010511638,0.025011828,-0.013199575,-0.009744609,0.027879851,0.018528763,0.009624552,0.010044751,-0.040765945,-0.009918024,0.008684107,0.024024695,0.0065864483,0.01005809,-0.00929106,-0.059708238,0.0025512066,0.00539922,-0.0035149956,-0.033322424,0.02865355,0.0067932126,-0.018888934,-0.0057927393,-0.00086707674,0.0077703414,0.016514476,0.016607855,-0.002252732,0.014486851,0.014820342,0.04399414,-0.03756443,0.01822195,0.0064597214,-0.022850806,0.0016132629,0.0056326636,-0.01715478,-0.02127673,0.0064130328,-0.015767457,-0.032255255,-0.0017708375,0.0067932126,0.026305774,-0.027239548,0.026012301,0.01787512,0.00053650374,0.025492055,0.046448633,-0.021810314,0.012132404,0.016474457,-0.019555915,0.025718829,0.028413437,-0.011698866,0.02828004,0.048396222,-0.026932737,-0.003468307,0.0019192409,0.010318213,-0.007910408,0.029694043,-0.03473643,0.0069966423,-0.008750805,0.01710142,-0.01526055,-0.02529196,0.010444939,0.040499154,-0.012799386,0.005886117,-0.024038035,0.01455355,-0.0050457194,-0.031561594,0.0023427745,-0.02158354,-0.023757903,-0.02122337,-0.028413437,0.04055251,-0.015794136,-0.007670294,-0.00032744653,-0.025251942,0.0027996574,0.032975595,0.019649293,0.027372945,-0.0024294823,-0.0049289977,-0.011632168,-0.032895558,-0.009777958,-0.027773134,0.019809369,-0.015020437,0.01079177,-0.008030465,0.010298204,0.013179566,-0.00023990512,-0.0012297482,-0.018515423,-0.039778814,0.0074301804,-0.00464553,0.031241441,0.0035883638,0.02830672,0.0006490569,-0.0010096441,-0.029694043,-0.028146645,-0.011245318,0.0098179765,-0.02605232,0.024544941,-0.014059982,-0.0070233215,0.0124392165,-0.013419679,0.007490209,0.006406363,-0.013112868,0.051330943,0.018715518,-0.0023494444,-0.016474457,0.014847022,0.019035669,0.028039927,0.027319586,-0.006936614,-0.0066698208,0.00019248687,0.0016749587,0.006222943,-0.008517361,-0.0021493498,-0.009624552,-0.02345109,0.008457333,0.0021927035,0.0007603596,0.040819306,0.06845904,-0.009864666,-0.034096126,0.043380514,0.031241441,0.005572635,-0.009150994,0.04655535,0.034069445,-0.0009571193,0.010578336,0.011465422,-0.016674552,0.0036083732,0.013873228,0.035189975,0.023424411,0.019115707,-0.041833118,-0.02123671,0.02052971,0.0013189571,-0.019435858,0.012739358,0.012559273,-0.002923049,-0.0077236528,-0.018155253,0.0140733225,0.016514476,-0.012445886,0.03126812,0.020743143,0.025478715,-0.017701704,0.013439689,0.0032548725,0.004662205,0.016140966,0.006676491,-0.060401898,-0.021743616,-0.005555961,-0.0047922665,-0.004495459,-0.035243332,0.0007899569,0.017995177,0.0036650666,0.030494422,-0.03647058,-0.017621666,-0.052318074,-0.0025028503,0.014753644,-0.025772188,0.01376651,0.011345365,0.049836904,-0.022637373,0.04508799,0.057253744,-0.014953738,0.028546834,0.010671713,0.012952792,-0.010571666,-0.031001328,-0.014660266,0.012179093,0.015940873,0.030280987,0.010925166,0.030334346,-0.00783037,0.027826494,0.04887645,-0.013493048,0.011218639,-0.018141912,0.0021676917,0.018728858,0.007977106,-0.010091439,0.0054992675,-0.019142386,-0.024878433,-0.02495847,-0.0057260413,0.022103786,-0.008604069,0.004685549,0.000173728,-0.0018592126,-0.018021856,0.027959889,0.016127627,-0.007930418,-0.032335293,-0.02048969,-0.009331079,-0.03212186,-0.016887987,-0.00008993837,-0.028360078,-0.0021543521,-0.028813627,0.0026129023,0.00052358094,-0.010885147,-0.0060428577,-0.03756443,0.015514003,0.009984722,0.02229054,0.009064287,0.011372045,-0.025118547,-0.0065764436,-0.009624552,-0.025665471,0.0056426683,-0.0007361815,-0.005179116,-0.036603976,-0.036684014,-0.0137264915,0.0011380382,-0.004922328,0.012259131,0.00932441,-0.007423511,0.049516752,-0.015847495,-0.0010838459,0.037137564,0.011018544,0.0102048265,-0.030040873,0.02082318,-0.013559746,-0.02982744,0.014593569,-0.002861353,0.02682602,0.004962347,-0.0038451517,0.034442954,-0.016527817,-0.016554495,0.015500664,-0.023210976,0.041299533,-0.022477297,0.015620721,-0.035803597,0.012405867,0.0063463347,-0.0142867565,0.0042286664,-0.037751187,0.00781703,0.012972802,0.025358658,-0.0043120394,-0.004808941,-0.021503503,0.014540209,0.045648254,-0.023291014,0.04359395,-0.032575406,-0.029187137,0.016847968,0.07262101,0.006769868,-0.033242386,0.026599245,0.037350997,0.0099046845,0.026719302,0.03092129,0.006663151,-0.012819395,-0.0136397835,0.022957524,0.02421145,0.005002366,0.02233056,-0.010925166,-0.037004165,0.022010408,0.022303881,-0.025358658,-0.0051224227,0.012132404,-0.017194798,0.0031981792,-0.016301041,-0.04274021,0.016727911,-0.05623993,-0.006539759,0.027399624,0.015580702,-0.00043353837,-0.016421098,0.037937943,-0.023437751,0.0046421955,-0.03462971,-0.015567362,-0.008697446,-0.015460645,0.014460172,0.01040492,0.006896595,-0.026839359,0.030974649,-0.012612632,0.0066464767,-0.03604371,-0.014019963,-0.033322424,-0.026679283,0.044927914,-0.0068632457,-0.008710786,-0.02010284,-0.013299623,0.026359132,0.024878433,-0.005359201,0.0050590592,-0.01231249,0.030734535,-0.008350615,-0.009491155,-0.00015945041,0.021890352,0.0015240541,0.0013047837,0.0087441355,0.029480608,0.009137655,0.008737465,0.021009935,0.031054687,-0.030547779,0.021263389,-0.021783635,-0.010658374,-0.011785573,0.005152437,0.009050947,-0.022277202,0.0021643569,0.0061295656,-0.029187137,0.019262442,0.023491109,-0.044821195,-0.0059894994,-0.0050490545,0.006739854,0.011418734,0.033989407,0.028093286,0.024664998,0.014420153,-0.0291071,-0.02351779,-0.047062255,-0.03420284,-0.014273417,0.0126526505,0.00708335,-0.019089028,-0.004348723,-0.0003082708,-0.019129047,0.00410194,-0.0038918406,-0.0030481082,0.006443047,-0.0014748642,0.025371999,-0.017434912,-0.015487324,-0.0018808895,-0.022637373,-0.024705017,-0.01603425,-0.028813627,0.028786948,0.03388269,0.011572139,0.006403028,-0.020409653,0.012485905,-0.00028263367,-0.011985668,0.030227628,-0.0040785954,-0.019449199,0.029907476,-0.02715951,-0.008423984,0.011718876,-0.0099046845,0.01904901,0.0005898623,-0.027012775,0.003578359,-0.017675025,0.015967552,0.004208657,-0.009204353,0.011698866,0.0011747222,0.010778431,-0.015794136,0.020236237,0.0060995515,-0.006883255,-0.04498127,0.041886475,0.00464553,0.029213816,-0.0073568127,0.041566323,-0.023010882,0.01231916,-0.0063263252,-0.01604759,0.0004918993,-0.0047222334,0.007977106,0.0021093308,0.00819054,0.02082318,-0.008390634,-0.008484012,0.018955631,0.011632168,0.0015840825,0.0045855017,-0.036657337,0.04508799,-0.0035250003,-0.010858469,-0.016968025,-0.023010882,-0.02275743,-0.040872663,-0.0016607854,0.0025978952,-0.020022802,0.010098109,-0.03268212,-0.006729849,-0.031001328,-0.0065364246,0.011332026,0.016661212,-0.024344847,0.0046722097,-0.022970863,-0.023491109,-0.012832736,0.032148536,-0.038578246,0.04164636,-0.038151376,0.002307758,-0.027279567,-0.03759111,-0.0066931653,-0.02193037,0.011058563,-0.033242386,0.002497848,-0.040018927,0.013586425,-0.020196218,0.013559746,0.036097072,0.006783208,0.029560646,0.0043520583,0.0043253787,-0.0061929286,0.00040540006,0.04274021,-0.012879424,0.024905112,-0.007877058,-0.056773517,-0.0037217601,0.02868023,-0.022650711,-0.033375785,0.024491582,-0.013393001,0.022677392,0.0013639784,-0.027479662,0.029213816,0.014873701,-0.013613105,-0.04730237,-0.003091462,0.0042720204,-0.023010882,-0.01747493,-0.016301041,-0.047168974,0.06280304,0.011211969,0.077796794,-0.01116528,-0.016514476,-0.024504922,-0.015514003,-0.004252011,-0.006509745,0.009277721,-0.024278149,-0.013372991,-0.00077620044,-0.0050890734,-0.007837039,-0.031454876,-0.009497825,0.037030846,-0.0026129023,-0.013246264,0.0052524838,0.008470672,-0.004798936,0.023384392,0.050210413,-0.031108044,0.033322424,-0.017554969,0.029240495,-0.03615043,-0.0016424434,-0.02610568,-0.0014698618,0.031428196,-0.04020568,0.027346266,-0.005749386,-0.011612158,-0.00064113655,0.029080419,-0.030387703,-0.005922801,0.0133396415,-0.024024695,0.0029263839,0.021396786,-0.0154473055,-0.013739831,0.011385384,-0.018342007,-0.012572613,0.0028763602,0.017074741,0.009844656,0.019862726,0.004131954,0.02609234,-0.011999008,-0.01859546,0.040499154,0.0082705775,0.004999031,0.020329615,0.03380265,0.017675025,-0.02052971,0.030120911,0.016861307,-0.01710142,-0.0024378195,0.0045688273,-0.0051190876,0.024451563,0.039005112,-0.0037117554,0.003318236,0.019515896,-0.00031577435,0.00013423014,0.022303881,-0.030494422,0.0283334,0.023371052,-0.002571216,-0.0040785954,0.018728858,0.028119965,0.021957051,-0.0034349577,0.014180039,-0.023130938,0.011832262,-0.0025978952,-0.03126812,-0.014820342,0.010038081,-0.03729764,0.004392077,-0.0327088,-0.012746028,-0.031534914,-0.00894423,-0.014686946,0.012225782,-0.024758376,0.01191897,-0.008977579,0.038658284,0.016901325,-0.002886365,0.018888934,-0.007123369,-0.019422518,0.027613059,-0.0052524838,0.032548726,0.011185289,-0.015233871,0.017141439,-0.0064130328,0.03684409,-0.020089502,0.034282878,-0.02270407,-0.026372472,0.038338132,0.03172167,-0.024905112,-0.010938507,0.021410124,-0.010271524,-0.027399624,-0.02273075,-0.017968498,0.0034216181,-0.001897564,-0.018968971,0.022383919,-0.006623132,0.0011088577,-0.00819721,0.025265282,-0.013953266,-0.018355347,0.0007899569,0.023264335]},{"id":"guide-events-2","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Reaction Events\nListen for when users add or remove reactions. Handlers receive (reaction, user, messageId, channelId, emoji, userId). Use MessageReactionRemoveAll and MessageReactionRemoveEmoji for moderator actions.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageReactionAdd, (reaction, user, messageId, channelId, emoji, userId) => {\n const emojiStr = emoji.id ? `<:${emoji.name}:${emoji.id}>` : emoji.name;\n console.log(`User ${userId} reacted with ${emojiStr} on message ${messageId}`);\n\n // Filter for specific message (e.g. poll) or emoji\n if (emoji.name === '👍') {\n console.log('Someone voted yes!');\n }\n});\n\nclient.on(Events.MessageReactionRemove, (reaction, user, messageId, channelId, emoji, userId) => {\n console.log(`User ${userId} removed ${emoji.name} from message ${messageId}`);\n});\n\nclient.on(Events.MessageReactionRemoveAll, (data) => {\n console.log(`All reactions cleared from message ${data.message_id}`);\n});\n\nclient.on(Events.MessageReactionRemoveEmoji, (data) => {\n console.log(`All ${data.emoji.name} reactions removed from message ${data.message_id}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.010380175,0.015218445,-0.019564793,0.021133961,0.012889599,0.022653315,-0.051209696,0.015828677,0.002889263,0.033998653,0.0028581286,-0.043712556,0.026725681,0.00019303265,0.00547341,0.045356445,-0.006382531,0.024969708,-0.01848132,0.068296194,0.011096264,0.042990237,0.028020868,0.054298215,-0.010840963,-0.009464826,-0.0024923007,0.06705082,-0.024147762,-0.010268091,0.03432245,-0.011395154,0.020747896,0.010840963,-0.014159879,0.0060680746,0.019813867,0.032379672,-0.03830764,0.042815886,-0.020150118,-0.03275328,0.009533322,0.03596634,-0.009713901,0.029664759,-0.073875464,-0.00204708,-0.04044968,0.03394884,-0.02518142,-0.008885729,0.021557389,0.050039046,0.009608044,-0.021644564,-0.042915516,0.004063026,-0.030785594,0.035567824,-0.0037859306,-0.024907438,0.030362168,-0.016389094,-0.044982836,0.0025966004,-0.008997812,0.013811175,0.043338943,0.029963648,0.025878828,0.0037392292,0.013699091,-0.02685022,0.002521878,-0.008368899,0.013101312,-0.028220128,-0.014371593,-0.027298553,0.038656346,0.025629755,-0.06351397,-0.025467856,-0.0421932,0.012105015,-0.046552002,-0.017609559,-0.033899024,0.007901885,-0.010199596,0.015193538,-0.07123528,0.02859374,0.036165603,-0.021544935,-0.007061259,-0.0022883709,-0.020000674,0.05464692,0.06381286,-0.103216425,-0.013499832,-0.009776169,0.013948166,-0.00091223494,-0.0037765903,0.020299563,-0.022341972,-0.017871087,-0.035318747,-0.039129585,-0.008219454,0.03965264,0.0144089535,-0.03307708,0.041072365,0.009682767,-0.0064447997,-0.012634298,-0.05320229,0.004134635,0.051159877,-0.010199596,-0.01021205,-0.030661058,0.006229973,-0.052953213,-0.02615281,-0.00030881332,0.051309325,-0.018157523,0.018867385,-0.03957792,-0.017460115,0.0032566476,0.049939416,0.014010434,-0.039254125,0.019079098,0.030760687,-0.02246651,-0.0139232585,0.030162908,-0.042915516,-0.043064963,-0.049715247,-0.011114945,-0.0055574724,-0.0378344,-0.019477617,-0.000860085,-0.017970717,0.019377988,0.032055873,-0.029216425,0.023848873,0.0018680579,0.011071357,-0.03529384,0.0053737797,-0.046352744,-0.0045300405,-0.048220802,-0.039353754,0.0070176707,-0.015280713,0.0023739901,-0.012210872,0.02799596,0.028469203,-0.020685628,-0.002118689,0.02062336,-0.030860316,-0.0212585,-0.027447997,0.035343654,-0.0044957926,0.039528105,0.017248401,0.005127819,-0.068196565,-0.024533827,-0.015044093,-0.032653652,-0.01580377,0.024733087,-0.05504544,-0.043040056,-0.0020050488,0.032304946,0.008449849,0.016625715,0.03947829,-0.05230562,0.026725681,-0.017485023,-0.008555706,-0.0128522385,-0.0027725094,-0.0032908954,0.027796702,-0.012123696,0.026999664,-0.02799596,-0.030511612,0.020336924,0.046253115,0.0022043083,0.02752272,0.00495658,0.034945138,0.017970717,-0.0462033,0.03158263,-0.053351734,0.031458095,-0.038257826,0.0000466528,-0.058283407,-0.012030293,0.10261865,-0.0134749245,-0.026700774,0.0659549,0.041993942,-0.008599293,-0.025579939,-0.00012628849,-0.03546819,0.025442949,-0.016550994,-0.033475596,0.0565897,-0.042218108,0.041196905,-0.011239482,0.007677718,-0.018630764,0.028519018,-0.019265903,0.012223326,0.0020875547,0.007490912,0.030337261,0.012814878,0.0050468696,0.028618647,0.01911646,0.062866375,0.009396331,0.058482666,-0.01235409,0.013723998,-0.015828677,-0.0007744657,0.001141072,-0.0019910384,0.0018213565,0.025056884,-0.023761697,-0.019552339,0.003167915,-0.044260517,-0.03140828,0.024085494,0.013412655,-0.019639516,-0.01570414,-0.00080404326,-0.053899698,0.005339532,-0.0018882952,-0.017995624,0.01895456,0.030760687,0.0226035,-0.02484517,0.013238303,-0.0027429317,-0.012596937,0.017970717,-0.02300202,-0.012565803,0.012385224,-0.02585392,-0.06291619,0.0021887412,0.033475596,-0.008244363,-0.010199596,-0.00012667768,-0.02203063,-0.004287193,0.05942915,0.06460989,-0.00890441,0.025754292,0.021719286,-0.022180075,-0.02605318,-0.0045611747,-0.04665163,0.03703736,0.017410299,0.004200017,-0.02752272,0.036090877,-0.017609559,0.012497308,-0.009134803,-0.005529451,-0.02488253,-0.019863682,0.0009495961,0.018344328,0.075868055,0.0084934365,-0.015044093,0.041545607,-0.027373275,0.0061147762,-0.03873107,-0.041047458,-0.051658027,0.0116068665,-0.04757321,0.07870751,0.06057489,0.066004716,-0.012298048,0.0050250757,0.044409964,0.044584315,-0.018942107,-0.004417957,0.0067374622,0.0012414801,0.046327837,0.052853584,-0.025754292,-0.029116796,-0.043139685,0.004788455,0.021868732,0.014570852,-0.013350387,-0.012491081,-0.01151969,-0.023163918,0.019963313,-0.058731742,-0.07362639,0.035343654,-0.00091690506,-0.020038035,-0.0065382025,-0.007135981,0.009346517,-0.016600808,-0.0043712556,0.024135308,0.00025140945,0.023985863,-0.013001683,-0.04782228,-0.018008078,0.069890276,-0.05320229,0.0068993606,-0.028718276,0.011494783,0.023599798,-0.033899024,-0.01697442,-0.025804106,0.007422417,-0.009782396,0.0271242,-0.025094245,0.01620229,-0.0013862547,-0.04697543,-0.0056602154,-0.010641703,-0.04413598,-0.031084483,-0.021818915,0.03997644,0.066104345,-0.03023763,-0.008580613,0.025704477,0.026775496,0.02373679,0.02993874,0.06137193,0.019527432,0.019216089,0.02240424,0.015081454,0.02320128,0.005529451,-0.0028098705,0.0063949847,-0.068545274,0.01901683,0.01259071,0.02488253,0.055443957,0.029839111,0.021183776,0.036987547,-0.032728374,-0.033724673,0.03023763,0.020872433,0.010143555,0.0189172,-0.014745204,-0.040499493,0.0024642798,-0.031632446,-0.016426455,-0.014558398,0.02310165,-0.030611241,0.023163918,-0.02926624,-0.07915584,-0.031283744,0.06057489,0.008275497,0.03780949,-0.05514507,0.060226187,-0.005850135,-0.04211848,0.0075656343,-0.023960955,0.016164927,0.046601817,0.03790912,-0.03731134,0.015741501,-0.04211848,0.020536182,0.03663884,0.0019521205,-0.023898687,0.0020112756,0.023662066,-0.010012791,-0.04899293,-0.042243015,0.014259509,0.023487715,0.045754965,0.007970381,-0.0072605186,0.0529034,-0.011307977,0.032030966,-0.010099966,-0.017074049,-0.02377415,0.0011231698,0.012335409,-0.016961966,-0.005585493,-0.00850589,0.033276338,0.0058781556,-0.002445599,-0.0797038,0.046552002,-0.041396163,0.04289061,0.02682531,0.04191922,0.04794682,-0.013263211,-0.025467856,-0.011831033,0.07302861,-0.020038035,-0.0468758,-0.013549646,0.02976439,-0.0135621,0.017198587,-0.0006296912,-0.013400202,0.047299225,-0.036887918,0.020947156,-0.025305958,0.021146415,-0.026426792,-0.0071297544,-0.002338186,-0.072231576,0.04132144,-0.0039353753,0.02665096,0.004554948,-0.005003282,0.008144733,0.03307708,0.006924268,-0.00092858047,-0.01697442,0.010816055,0.010517166,-0.00214671,-0.036140695,-0.037211712,-0.029365871,-0.032304946,0.0089417705,0.016563447,0.010124873,0.015753955,-0.0047043925,-0.028693369,0.0016065298,-0.036315046,-0.022416694,-0.0037330023,0.012509761,0.0094274655,0.027871424,-0.007173342,-0.0050935713,0.021744194,-0.060076743,-0.0048227026,0.0007281534,-0.027572535,-0.0056602154,0.026376978,-0.0010219833,-0.021407943,-0.00419379,0.031458095,-0.010380175,0.063862674,-0.021943454,-0.0021389264,0.01580377,-0.039602827,-0.0035088353,-0.017285762,0.011009088,0.018830024,-0.0065942444,-0.028269943,0.0022478963,0.005946651,0.0014368478,-0.025505217,0.025729384,-0.0075656343,-0.036738474,-0.034671154,0.03469606,0.013512285,-0.0415207,0.037211712,-0.00059310836,0.008730058,-0.012428812,0.0022868142,0.0016096432,0.0076714912,-0.030561427,0.009545776,-0.007173342,-0.040300235,-0.013960619,-0.034895323,0.020361831,0.023188826,-0.029316055,-0.017734095,-0.016912151,-0.017136319,-0.030387076,-0.002338186,0.021644564,-0.0053644395,0.008225681,0.037610233,-0.00013611525,0.027273646,0.005750505,0.034173004,-0.013537193,0.016613262,0.0108098285,0.003614692,-0.03093504,-0.015616964,-0.003745456,0.025579939,0.0066253785,-0.031781893,-0.06645305,0.03140828,-0.007883204,0.0040661395,-0.032902725,-0.022080444,-0.022478964,0.00058843824,0.019178728,0.010940593,0.021619657,0.011488556,-0.04647728,0.027497813,0.0031912655,-0.018568495,0.008786099,0.03519421,0.016451363,0.0066253785,0.058183778,0.012148603,0.00067172246,0.01064793,0.004165769,-0.033600137,-0.0043214406,-0.029116796,0.010679064,-0.0074348706,-0.020947156,-0.004318327,0.028817907,-0.025978459,0.04824571,-0.02246651,0.0002451826,0.01831942,-0.011033995,-0.017198587,-0.0013597904,0.0054080277,-0.00430276,-0.01269034,-0.025231235,-0.014483675,0.00020840521,-0.02655133,0.009066308,0.02246651,0.020075396,-0.0121610565,0.009620498,0.026601145,-0.009471053,0.025330866,-0.026576238,0.00763413,-0.021495119,0.0010998191,0.0062922416,0.018680578,0.008350219,0.036315046,0.012964322,0.0055574724,0.02222989,-0.012111242,0.0073601482,-0.026277348,-0.0041470886,-0.012061427,0.020598453,-0.011009088,-0.044185795,-0.025629755,-0.0007845843,-0.01998822,0.016700437,-0.01496937,0.0065631103,0.029091889,-0.033824302,-0.029814204,0.006317149,0.009109896,0.031632446,-0.0052866037,0.008817233,0.01992595,0.008717604,-0.041396163,-0.0021638337,-0.008686469,-0.0061957254,-0.014570852,0.020685628,-0.009732582,0.035991248,-0.037684955,0.056041736,-0.047897004,-0.018468866,0.016812522,0.010031471,0.0030371507,-0.033899024,-0.0075780884,-0.007086166,-0.008692696,0.021246046,-0.028045775,0.0036738473,0.040873107,-0.012740155,0.01998822,-0.011868395,-0.017833726,0.03606597,0.04548098,-0.055892292,0.017970717,-0.03678829,0.021681925,0.003390525,0.0005179969,-0.05230562,0.023151465,-0.030486705,-0.005040643,-0.037087176,-0.02340054,-0.0103614945,0.01677516,0.010392629,-0.026800403,0.0035742174,-0.0060307137,0.006743689,-0.003505722,-0.03840727,0.003543083,-0.03663884,0.008549478,-0.04044968,0.024471559,-0.012802424,-0.00989448,0.014595759,-0.020835072,-0.029440593,0.012889599,0.02206799,0.030984854,0.01717368,0.017036688,0.0015870709,0.0046078763,-0.023662066,0.005439162,0.0024175784,-0.014745204,-0.0064572534,-0.013375294,-0.009402558,0.017497476,0.0294655,-0.0006495393,-0.009408785,-0.01473275,-0.011662908,-0.026700774,-0.021171322,0.018219791,0.00344034,-0.0143965,-0.016550994,-0.009097442,-0.0271242,-0.015243352,-0.033625044,-0.028992258,0.01120212,-0.041570514,0.030187815,-0.021719286,-0.027597442,0.018169977,-0.0032068328,-0.075768426,0.00014409343,0.034222823,-0.042940423,-0.033375967,-0.0038264052,-0.0041782227,0.058482666,0.027721979,-0.037510604,0.014085157,-0.047324132,0.010660384,-0.04909256,0.03275328,0.0047293,0.050437562,-0.01764692,0.007995288,-0.030013464,-0.014346684,-0.018194884,-0.02421003,0.030959947,-0.0031040895,0.044285428,-0.011395154,0.019552339,0.018531134,0.024521373,0.018356781,0.020884888,-0.018406598,-0.014483675,0.0006857329,0.04301515,0.024496466,0.020374285,-0.02504443,-0.040524404,0.033874117,0.00014010434,0.009981656,-0.04015079,0.023948502,-0.018568495,-0.0035150624,0.0022837007,-0.001302192,0.013450017,0.011631774,0.01419724,0.012746382,0.0020548636,0.02548031,0.041495793,-0.02397341,0.031258836,-0.0047417535,-0.034870416,-0.015081454,0.013039044,0.0034590205,-0.035916526,0.013587008,-0.011046449,-0.038681254,0.022354426,0.011214574,-0.0017948922,-0.00035454181,-0.0050157355,0.015679233,0.03536856,0.019776506,0.024832716,0.02028711,0.018120162,0.007590542,-0.035991248,0.01878021,0.01764692,0.0038699934,0.020822618,0.049615618,0.0009083432,-0.0055014305,0.007976607,0.027796702,0.01604039,0.047996633,-0.05066173,-0.010847189,0.008163413,0.006600471,-0.013001683,-0.05649007,0.0044023897,0.054796364,-0.013200942,0.0034527937,-0.014919556,-0.0043712556,-0.010940593,-0.012491081,-0.0023848873,0.0029717688,-0.0050063953,-0.021918546,-0.012048974,0.01667553,-0.01697442,-0.024807809,0.010473578,-0.008213228,0.022503871,0.009495961,0.012646752,0.028444296,-0.0010087512,-0.0026401884,-0.02809559,-0.015181084,-0.0148572875,-0.00030317024,0.017161226,-0.01929081,0.02500707,0.020399192,0.023886234,0.025069337,-0.006687647,0.012902053,0.009713901,-0.015641872,0.0016750252,0.006774823,0.03492023,0.00699899,0.046178393,0.010205823,-0.0016703551,-0.00015936869,-0.033101987,-0.03569236,0.02839448,-0.011015315,0.028817907,-0.031433187,-0.04413598,0.014321777,0.015205991,-0.006382531,0.014309323,0.0126778865,0.056141365,0.01794581,-0.029540222,-0.01633928,0.013188489,0.02799596,0.016152473,0.025804106,-0.00965786,-0.016252104,-0.01023073,0.019240996,-0.01731067,-0.0137862675,0.0034092057,-0.00040980522,-0.037211712,0.0073290137,-0.007827163,0.007683945,-0.0011138296,0.03900505,0.006612925,-0.003926035,0.016027937,0.011538371,0.0053986874,0.0066751936,0.0014952247,0.009022719,-0.0071546617,0.031831708,-0.007111074,-0.03636486,0.018556042,-0.0051402724,0.04590441,0.030461797,0.02849411,-0.024919892,0.007011444,-0.005750505,0.005488977,-0.04406126,0.0029624284,0.028643554,-0.00441173,0.019514978,-0.017534837,0.029042074,0.001384698,-0.029091889,0.05125951,-0.020573545,0.044683944,-0.0116068665,0.034222823,-0.016750252,0.024396837,0.026576238,0.01526826,-0.017709188,-0.015118815,-0.0060307137,0.017497476,-0.013574554,-0.021744194,0.0008764305,0.040275328,-0.037759677,0.0153429825,-0.0013613472,-0.02859374,-0.04861932,-0.0069616293,0.0053737797,-0.033052173,-0.02066072,0.011581959,0.04463413,-0.025629755,0.032205317,0.017559744,0.011569506,0.03666375,-0.00030317024,0.003599125,-0.030561427,-0.035219118,-0.031184113,-0.0055325646,0.00015236347,0.019838775,0.0128522385,-0.004909879,-0.015455065,0.014134971,0.033400875,0.01160064,0.008480983,-0.03133356,0.0029624284,0.016488725,0.022491418,-0.010623023,0.013885897,-0.018506227,-0.011731404,-0.020075396,0.0056539886,-0.009857119,-0.021383036,0.020996971,0.021532482,-0.0061147762,-0.023076743,0.019527432,0.0116068665,-0.015778862,-0.01120212,0.028195221,-0.009483507,-0.009583137,-0.0031087596,-0.010697745,0.003916695,-0.004804022,-0.037286434,-0.0041844496,-0.0013146457,0.0023848873,0.023276001,-0.0153429825,0.039503198,0.013138674,0.013462471,0.0033936384,0.0131635815,-0.014334231,0.00495658,0.0018135728,-0.04403635,-0.01911646,0.02092225,-0.0031461208,-0.0077773477,-0.02615281,-0.0035524236,-0.01473275,-0.019303264,0.03307708,0.021781554,0.0077026254,0.033276338,-0.022777854,-0.02514406,0.023139011,0.027647257,-0.014956917,-0.02367452,0.0012874033,-0.004875631,-0.031159205,0.012005385,-0.011158532,-0.014583305,0.012378997,-0.01687479,0.046327837,0.0036022384,-0.0017466341,0.028319757,-0.035169303,-0.00915971,0.016999327,0.025305958,-0.031134298,-0.022043083,-0.015741501,-0.019365534,0.004526927,-0.03561764,-0.022416694,0.012061427,0.033101987,-0.0150316395,-0.0079392465,-0.036514305,0.029490408,0.05058701,-0.029913833,0.035169303,-0.028892629,-0.021943454,0.01128307,0.066004716,0.007403736,-0.01376136,0.031557724,0.024670819,0.007827163,0.009197072,0.045207,-0.013176035,-0.020573545,-0.027846517,0.015193538,0.016102659,-0.0150316395,-0.0026199513,0.028369572,-0.021906093,0.025530124,0.015890947,-0.033973746,-0.017360484,0.029316055,-0.00028410048,0.023711883,-0.022865029,-0.023637159,0.022715583,-0.013848536,-0.0003148456,0.008038876,0.010791148,0.009321609,-0.019564793,0.002708684,-0.014496129,0.0003220454,-0.006482161,0.010143555,0.013213396,-0.034994952,-0.0018057893,-0.01687479,0.008767419,-0.032205317,0.033600137,0.013151128,-0.052255806,-0.01814507,-0.03937866,-0.032902725,-0.024757994,0.038656346,0.017721642,-0.0136119155,0.005579266,0.03589162,0.03073578,-0.002588817,-0.015778862,-0.018369237,-0.011712723,0.06739953,-0.016961966,0.0061147762,0.004492679,0.007366375,-0.004732413,-0.0069616293,-0.010286773,0.024048133,0.021906093,0.011009088,0.030810501,0.026302256,-0.014483675,0.042392462,-0.0210966,0.0017404073,0.014309323,0.0023988977,0.011737631,-0.014595759,0.039528105,0.005018849,-0.0024907438,0.010454898,0.025492763,-0.03297745,-0.02682531,-0.0054858634,0.008225681,0.00075812015,0.022952205,-0.006279788,0.03345069,0.0042031305,-0.014271962,-0.020872433,0.0026059407,-0.033600137,-0.010591888,0.017709188,0.03863144,0.0010134215,-0.011843487,0.0038014979,-0.030038372,0.0075220466,-0.007621676,-0.0075345,0.0035399697,-0.034496803,0.003359391,-0.013512285,-0.042143386,-0.0020377398,-0.021744194,-0.02397341,-0.025729384,-0.032379672,0.005728711,0.038183104,-0.009321609,0.011874622,-0.0019723577,-0.0021498234,0.020934703,-0.018630764,0.024932345,0.016314372,0.007721306,0.018294513,-0.0073850555,-0.007683945,-0.01183726,-0.006918041,-0.02397341,-0.011943117,0.010915685,0.002845675,-0.015753955,0.011868395,0.03731134,-0.0043930495,0.01687479,0.012553349,0.0040910468,-0.001045334,0.026675867,0.0012593823,0.017634466,-0.023525076,0.010261864,0.007926792,0.036838103,0.024347022,0.008524571,0.022217436,-0.0068059578,-0.0028736957,-0.02655133,-0.008848367,-0.0150316395,-0.01754729,0.03703736,0.000035026085,0.0104984855,-0.012441265,0.00075345003,0.015928308,0.0011325101,-0.015828677,-0.005607287,-0.019004377,0.027298553,-0.010286773,-0.012024066,0.0057567316,-0.03820801,-0.01798317,-0.062966004,0.003144564,0.019054191,0.0035212892,0.011108718,-0.012528442,-0.0070176707,-0.027846517,0.0015473746,0.01798317,0.0017684281,-0.027871424,0.012447492,-0.025953552,0.0005611957,-0.012789969,0.03355032,-0.0008694253,0.029963648,0.003194379,-0.03472097,0.0037267755,-0.043338943,-0.0011838817,-0.030387076,-0.017248401,-0.019166274,-0.01150101,-0.009402558,0.00071141875,0.0032192864,0.011575732,0.025156513,0.0025000842,0.030312354,0.00612723,-0.015753955,0.041445978,0.008524571,0.02377415,-0.00088888424,-0.010728879,-0.007901885,-0.036738474,0.014620666,0.019265903,0.00062346435,0.002338186,0.031034669,-0.017796366,0.027946146,-0.004243605,-0.038432177,0.012347863,0.03529384,0.010398855,-0.03140828,0.008480983,-0.015554695,-0.001387033,0.022304611,-0.0036894144,-0.037784584,0.035542917,-0.009769943,0.034596432,-0.0037703635,0.011482329,-0.015305621,-0.006513295,0.018082801,-0.0054453886,0.026800403,-0.018107709,0.0150316395,-0.01195557,0.015542242,-0.0055419053,-0.019091552,0.00020684849,0.040026255,-0.028867722,-0.017273309,-0.018693034,0.008094918,0.002632405,0.014907102,0.032603838,-0.024135308,0.05260451,-0.018207338,0.01828206,-0.06969101,0.02685022,-0.008655335,-0.019851228,0.03267856,-0.043612923,0.0036738473,-0.01721104,-0.009819758,-0.005367553,0.018693034,-0.00024420966,-0.01851868,-0.0020361831,-0.011009088,-0.026750589,0.01546752,0.010579434,0.0030916359,0.017123865,-0.018456412,-0.020585999,-0.009589364,0.022989566,-0.025368227,-0.021121508,-0.0016843656,0.0217691,0.007721306,-0.021133961,0.033126894,-0.006793504,-0.009128576,0.029066982,0.022516325,-0.002845675,-0.030760687,0.03529384,-0.0039540557,-0.04714978,-0.01633928,-0.004941013,0.00783339,0.02585392,0.034496803,-0.0009970759,0.021806462,0.018194884,-0.004492679,0.042442277,-0.0030667284,-0.023823965,0.035169303,0.008468529,0.007864524,-0.000990849,0.025804106,0.005772299,0.030013464,-0.0010352154,-0.007055032,-0.0088047795,-0.0016314372,0.007030125,-0.011812353,-0.011793672,0.013387748,-0.023637159,-0.02682531,-0.022155168,-0.028020868,-0.022204982,0.019340627,0.005084231,0.019776506,-0.010037698,0.012640526,0.014222148,0.017895995,-0.010753787,0.013088859,0.017970717,-0.027746886,0.0011535258,0.017298216,-0.017186133,0.03479569,-0.0048694042,-0.033874117,0.0019910384,0.025829013,0.011413834,-0.022292158,0.02437193,-0.019975767,-0.0264517,0.022752944,0.041495793,-0.0074410974,0.00009753792,0.023562437,-0.034148097,-0.023226187,-0.03706227,-0.0234379,-0.028743185,-0.0036489398,-0.06451026,0.010897004,-0.015978122,-0.01784618,-0.04035005,0.017721642,-0.027871424,-0.008063783,0.009651632,0.016389094]},{"id":"guide-events-3","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Error Handling\n\n```javascript\nclient.on(Events.Error, (err) => {\n console.error('Client error:', err);\n});\n```","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.011789527,0.011159377,0.027497437,0.033203155,-0.042071078,0.014115351,-0.05481156,0.0035431595,0.004262103,0.013278971,0.029376429,-0.0055195377,0.048258003,-0.002887231,-0.027130805,0.04566866,-0.022994732,0.019110719,0.0045857704,0.05678221,0.04844132,0.06021939,0.035425864,0.070301786,0.020519963,0.005296121,0.017495245,0.04408756,0.03757983,0.019328408,0.04995368,-0.015707912,0.0334323,0.008008629,0.018537857,-0.002098112,0.07153916,0.013943492,0.0013705754,0.0147111295,0.013290429,-0.0064561693,0.04521037,-0.012293646,0.003050497,0.03226366,-0.018686801,-0.013393544,0.0011772341,-0.0023014783,0.0159256,-0.021379258,0.043468866,0.038954705,-0.010185509,-0.012981082,-0.03576958,0.013668518,0.0052846638,0.009246013,0.021849006,0.014229924,-0.024610206,0.017541073,-0.013003997,-0.00508989,-0.0054593873,-0.031026276,0.025114326,0.027428694,0.00006735619,-0.000443611,0.023384279,-0.033936422,-0.015673539,-0.0093033,0.0070290323,0.036823653,0.014493441,-0.02518307,0.031072104,-0.03494466,-0.0733265,-0.014321582,-0.038908873,0.0011364175,-0.073693134,-0.014012236,-0.013794548,-0.0030705472,-0.00074901874,0.008678879,-0.013863292,0.061319288,0.032034516,-0.05485739,0.009744405,-0.008283603,0.023407195,0.015123591,0.06970601,-0.07653453,-0.030911703,0.0060608936,0.030109694,-0.0070576756,-0.022341669,-0.00006435761,-0.05769879,-0.008879381,-0.052795082,0.0280703,-0.03783189,0.05774462,0.008174759,-0.027084976,0.029307686,-0.0075446097,0.0036949683,-0.018744087,-0.02882648,0.031347077,0.010609428,-0.03792355,-0.036525764,-0.026076736,0.018423283,0.01231656,-0.010368826,-0.039573397,0.035082147,0.023315536,0.04090244,-0.03265321,0.020703278,-0.028941054,0.0012538545,0.038450584,-0.032424062,0.010729729,0.04010043,-0.04126907,0.016784895,0.019328408,0.02891814,0.008684607,-0.029513916,0.0077737547,-0.0006580767,-0.034050994,-0.017254641,0.026672514,-0.024060259,-0.003276778,-0.019030519,0.0074472227,0.008684607,0.01587977,-0.041544046,-0.031599138,-0.0017816048,0.016555749,0.020519963,0.0021596947,-0.06649797,-0.014539271,-0.03281361,0.00479773,-0.008564306,0.018744087,-0.0036090387,-0.0063072247,-0.009034054,0.040489975,0.021734433,-0.04500414,0.03858807,-0.0044511477,-0.021344885,0.057057183,-0.020611621,0.0023072069,0.0061067226,0.014401783,-0.018091023,0.007745112,0.018904489,0.025205985,-0.045118712,-0.07268489,-0.02543513,-0.0042936103,0.00033852638,0.013909121,0.026397541,0.0023329856,-0.023693625,0.011291135,0.0048922524,0.012053044,0.01307274,-0.0152839925,0.039985858,0.00044289493,0.01529545,-0.01919092,-0.016624492,0.004769087,0.048166346,-0.050457798,0.015157962,0.017827505,-0.013840377,-0.009629832,-0.014252839,0.007160791,0.0065764706,0.030247182,-0.033455215,-0.04848715,-0.046149865,-0.013049826,0.017873334,-0.033592705,-0.008077373,0.017816048,0.053757492,0.01646409,0.0033598433,0.006055165,-0.021127198,0.017987907,0.0185264,0.03464677,0.05861537,-0.004935217,0.048807953,-0.0006408908,-0.016154746,0.0064217974,0.0318512,0.010151138,-0.012156159,0.002092383,0.028184874,0.005980693,0.028941054,0.019454436,0.019843984,0.058936175,0.015054847,-0.034853004,0.05137438,-0.026535027,0.01516942,0.0064217974,0.03464677,-0.025274727,-0.033501044,-0.03318024,-0.016945297,-0.032676123,-0.00808883,0.023086391,-0.07305153,-0.030957531,0.010128223,0.03927551,-0.022547899,-0.030865874,-0.008369532,-0.03829018,0.028001558,-0.06411486,-0.026466284,0.014310125,-0.005150041,0.060998484,-0.051282723,-0.0122363595,-0.028986882,-0.0400546,-0.009160084,0.0027769548,0.030934617,0.024014428,-0.058340397,-0.09188727,-0.002543513,-0.005187277,0.020920968,-0.026305882,-0.019992929,0.017334843,-0.0009008275,0.066222996,0.047662225,-0.000506984,0.014321582,-0.0126144495,-0.02543513,-0.011961386,-0.02811613,-0.007051947,-0.0040415507,0.0099048065,-0.03288235,-0.02367071,0.032630295,-0.03331773,-0.009097069,-0.007344107,-0.011474452,0.022055237,-0.0042850175,-0.01969504,0.018881574,0.022353126,0.044614594,-0.012259275,0.0045284843,-0.0465165,-0.004030093,-0.004007179,-0.05174101,-0.023716541,-0.051282723,0.009606917,0.05481156,0.06558139,0.03636536,-0.032790694,0.012201988,0.05421578,0.020210616,0.021768805,-0.02057725,0.04145239,-0.026512112,-0.029697232,0.004869338,-0.027795326,-0.032561548,-0.016647408,0.029743062,-0.06883525,0.012602992,0.00829506,-0.011778069,-0.029216027,-0.03524255,0.0016154745,-0.07671785,-0.020554334,-0.039183848,0.026603771,-0.010638071,-0.015146505,-0.007441494,0.0075904387,-0.06489395,0.0029559745,0.013256056,-0.016693236,0.014092437,0.019328408,-0.037946463,-0.018297253,0.060494363,-0.023739455,0.013863292,0.010861488,-0.04271269,-0.011474452,-0.046539415,0.012476962,-0.028139045,0.04931207,0.021333428,0.0008707522,-0.014642386,0.022479156,0.0016584392,-0.056919698,0.013210228,0.0039814,-0.032149088,0.013897663,-0.014848616,-0.020302275,0.0386339,-0.016395347,-0.03994003,0.017415045,0.023876943,0.00720662,0.018675344,0.022971818,0.020348104,-0.006759787,0.033638533,-0.00089653104,0.0063587823,0.02811613,0.042483542,-0.037396517,-0.024793522,0.049678706,-0.018904489,-0.035609182,0.012064501,-0.007745112,0.028849395,-0.017942078,-0.0316908,-0.070668414,0.036846567,-0.039733797,0.018652428,-0.017415045,-0.03301984,-0.027176633,-0.011445808,0.035998728,-0.017197356,-0.012396761,0.018205596,-0.026580857,0.047433082,-0.043514695,0.02011896,-0.024289403,-0.028986882,0.04211691,0.0126144495,-0.0075274236,0.005078433,-0.091795616,0.01370289,0.019889813,-0.043995902,0.0037751691,0.00077551365,0.049495388,0.015948514,-0.028986882,-0.03666325,0.010489127,-0.026260054,0.0048750667,-0.005135719,-0.0400546,0.0033569788,-0.014103894,-0.054444928,-0.019041976,0.027795326,-0.039000534,0.0028299447,-0.009108527,-0.008959582,0.0143330395,-0.037098628,0.047295593,-0.026397541,0.0034629586,-0.0096183745,0.03716737,0.00997355,-0.043331377,0.0001131405,0.026076736,0.046287354,-0.019660668,0.013977864,-0.00888511,0.0016584392,-0.044270873,0.032951098,-0.016292231,0.018365998,0.02811613,0.031186678,-0.004843559,0.0049982322,0.061319288,-0.018136851,-0.023304079,0.011044804,0.028895224,-0.040512893,0.023074932,0.05036614,-0.009927721,-0.012007214,-0.02216981,-0.018904489,-0.0185264,0.029284772,0.003067683,-0.025916334,-0.016739065,-0.096790984,0.04995368,0.006026522,0.0013891935,0.00883928,-0.014905903,0.044270873,-0.0032452706,0.007739383,-0.016269317,-0.03418848,-0.020749109,-0.0293306,-0.027886985,-0.003884013,-0.015891228,-0.030522157,-0.02589342,-0.038702644,0.03301984,0.03318024,-0.0022513526,-0.009818877,-0.024083173,-0.0029645676,0.02543513,0.021803176,-0.022272924,0.01370289,-0.009360586,-0.0027927086,0.021459458,-0.015902685,0.02619131,0.008157574,-0.005087026,0.014882988,-0.06351908,-0.013679976,0.04120033,-0.029949293,0.0073555647,-0.028711908,-0.022410411,-0.0062957676,0.009658475,-0.0032051702,0.020393932,-0.018698258,-0.060448535,0.0053190356,-0.03909219,0.021218857,-0.026970403,-0.0013705754,-0.018927403,-0.017942078,-0.0063587823,0.0053791865,-0.005359136,0.017392129,-0.025412215,-0.016246403,-0.013874749,-0.0134737445,-0.008272146,-0.011972843,0.016487006,-0.006490541,0.019374236,-0.0007812423,0.048028857,0.009543902,-0.007120691,-0.008403905,-0.02862025,0.009309028,-0.019374236,0.008982496,0.02765784,-0.016315147,0.07039344,-0.03716737,-0.0253893,0.02593925,0.015352736,0.026603771,-0.0078081265,0.043812584,-0.021986494,-0.014756958,-0.016154746,0.012350933,0.0108042015,0.018022278,0.04807469,0.00025188082,0.0045886347,0.018778458,-0.013485202,0.00011296148,0.030567985,-0.019866899,0.02422066,0.00502974,-0.0029230348,-0.006742601,-0.045508258,0.014837159,0.006725415,-0.005339086,-0.020096045,-0.014436155,0.0023372823,0.009280385,-0.0011607643,-0.00988762,0.030911703,-0.041291986,0.0074644084,0.029216027,0.020439763,0.00704049,0.030659644,0.018251425,0.022651015,-0.002579317,-0.009899078,0.0047776797,0.039871287,0.008272146,-0.014012236,-0.0039040633,0.008495563,-0.018205596,-0.033386473,-0.036227874,-0.022971818,-0.027084976,-0.011388523,0.013863292,-0.022020865,0.032699037,-0.025137242,0.016223488,0.011600481,-0.009074154,0.0043795398,-0.033203155,-0.0055997386,-0.0266496,-0.011027618,0.014344497,-0.028047387,0.0015911278,-0.014905903,0.003167934,0.021986494,-0.008037272,0.048258003,-0.026787087,0.03331773,0.002715372,0.019889813,0.00035571228,-0.0038754202,-0.01680781,0.0016484141,-0.035425864,0.037534002,0.009148627,0.003377029,0.021963578,0.008879381,-0.010666714,-0.053986635,-0.022788502,0.014012236,-0.030361755,-0.004064465,-0.060356878,-0.0332719,-0.011147919,0.006650943,-0.022524985,-0.008982496,0.0009924857,0.030247182,0.0126144495,-0.01617766,0.035815414,0.015089219,-0.0008714683,0.010151138,-0.017231727,-0.004316525,0.015593339,-0.047158107,0.008873653,0.007424308,0.039917115,-0.010311539,-0.010174052,0.018686801,0.017071325,0.010294354,0.039619226,-0.023579054,-0.0097100325,-0.0105177695,-0.027703669,-0.015089219,-0.03483009,0.0034400441,-0.024862267,0.010443298,0.018148309,-0.028941054,0.014653843,0.037900634,-0.019087804,-0.023235334,-0.01944298,-0.00963556,0.00959546,0.014310125,-0.014401783,-0.017541073,-0.008478377,0.024289403,0.022089608,0.008581492,-0.01767856,0.010615157,-0.035059232,-0.01948881,-0.019924184,-0.013691433,0.009767319,0.0016799216,0.0055625024,-0.013233142,0.029353514,-0.007286821,-0.018881574,0.018446198,0.011170834,-0.01009958,-0.034623858,0.0063587823,-0.039458822,-0.012877966,0.009612646,-0.017816048,0.0075961673,0.0033226071,-0.018778458,-0.01311857,0.008455462,0.007756569,-0.014447612,0.05719467,-0.01365706,-0.033042755,-0.02011896,-0.012270732,-0.0029072813,0.012568621,0.01441324,-0.04197942,-0.021860464,0.023785284,0.021482373,-0.0019778104,-0.082767285,-0.034921747,-0.02187192,-0.0135654025,-0.010867217,-0.002162559,0.021436544,-0.0073842076,0.0082377745,0.007510238,-0.033890594,-0.0013097087,-0.07511383,-0.037694406,0.0016584392,-0.06631465,0.007722197,-0.0035345664,-0.029422259,-0.038496412,-0.010735458,-0.08427965,-0.021035539,0.0018775595,0.005568231,0.0048005944,-0.03787772,0.009182999,0.027062062,0.0052445633,-0.039779626,-0.0066681285,0.025022669,-0.023831112,-0.03322607,0.012465505,-0.0386339,0.032584462,-0.0054250155,-0.025274727,-0.0000642681,0.036686163,-0.02836819,-0.010586513,0.032194916,-0.00080988545,0.04172736,-0.0016025851,0.0054078293,0.029720148,0.035677925,0.03251572,0.0097100325,0.0017959264,-0.01777022,0.037648574,-0.0004325118,-0.01055787,-0.0345322,-0.007676368,-0.069568515,0.014504898,0.0199471,0.0036634607,0.007109233,-0.0051070764,0.0119843,-0.013290429,0.0077279257,-0.012018672,-0.011044804,-0.027084976,0.006055165,0.010901588,-0.0061181798,0.03079713,0.040673293,-0.006605114,0.024747694,-0.018194137,-0.023269707,-0.010489127,-0.011451537,-0.058982003,-0.025205985,-0.008604406,-0.0016971075,-0.02983472,-0.0009015436,0.014390326,0.018686801,0.003230949,0.041475303,0.013152941,0.031736627,-0.0037952194,0.029055625,0.0021396445,0.0020179108,-0.0037150185,-0.0038782845,-0.004559992,0.010397469,0.0063072247,0.01428721,0.042300224,-0.0019434387,0.016693236,-0.009389229,-0.0015452987,-0.0025692917,0.014882988,-0.017025497,-0.0019147955,0.0053734574,0.069247715,-0.003548888,-0.058752857,-0.017117156,-0.020050215,-0.0075961673,-0.014126808,-0.019912727,0.012156159,0.018159766,-0.0108557595,0.009211642,-0.011514552,-0.01617766,-0.028757736,0.012774851,0.01587977,0.0023745184,-0.0017028361,-0.012018672,-0.017323386,0.051007748,0.047203936,-0.00745868,-0.0067827012,0.015329822,0.027818242,0.027932813,-0.011056261,-0.034005165,-0.014390326,0.03645702,-0.0042706956,0.0018116802,-0.017575447,0.02614548,0.003013261,0.019179463,0.015387108,0.015776655,0.010156866,-0.013301886,-0.020371018,0.058065422,0.012774851,0.017117156,-0.00519587,-0.008386718,-0.04168153,-0.046837304,-0.0057887835,-0.010454755,-0.023739455,0.040169172,0.032011602,0.004098837,0.012339476,-0.018079566,-0.006290039,-0.044683337,-0.0033798935,0.04374384,0.030476326,0.029949293,-0.017930621,-0.0097615905,0.0052101915,0.009039783,-0.0068571735,0.040169172,0.010534956,-0.014470527,0.00273399,0.008529934,-0.004877931,0.020416848,-0.0013111408,0.013622689,0.009830334,-0.011869728,0.017426502,0.031186678,0.015593339,0.022398954,-0.04287309,0.03838184,0.014734044,-0.029674318,-0.010523499,0.054903217,0.019832527,0.0016770572,0.025572617,0.008495563,-0.015398565,0.014149724,-0.0016426855,0.030315924,0.05962361,-0.014573642,-0.025549702,0.00530185,0.011417165,-0.0026394676,-0.00006717717,-0.00045471024,-0.019786699,-0.020107502,-0.005794512,-0.01248842,0.0452562,-0.0119843,-0.031736627,0.034371797,-0.00025760947,0.010271438,-0.025847591,0.017357757,-0.007229535,-0.0022141165,0.016910924,0.036640335,-0.019019062,0.00905124,-0.004299339,0.013462287,0.03418848,-0.01403515,0.020829309,0.03246989,-0.017415045,-0.009417873,-0.022925988,-0.04145239,-0.005757276,-0.0090455115,0.04287309,-0.0017443687,0.026466284,0.006083808,0.048624635,-0.024449805,0.012156159,0.022272924,-0.0030705472,0.015684998,-0.0067941584,-0.012201988,-0.021528203,-0.042483542,0.0000506626,0.0045571276,-0.008564306,0.048624635,0.0036863752,0.030613814,0.007790941,-0.017105699,0.0441563,0.003302557,-0.022868702,-0.015478766,-0.012935253,0.007378479,0.006679586,0.0072467206,0.019007605,-0.016727608,-0.009778776,-0.015226706,-0.013049826,0.01764419,-0.018159766,0.028941054,0.021734433,-0.006524913,-0.007378479,0.0039985855,0.0006820654,-0.01005948,-0.019786699,0.0028342411,0.016040172,-0.018503483,0.0055882814,-0.03008678,-0.023876943,0.017655646,-0.0031077834,0.010741186,0.028963968,-0.022719758,-0.023922771,-0.026947489,0.03842767,0.029513916,0.031095019,-0.04395007,-0.042643942,-0.013519574,0.015215249,-0.008512748,-0.00867315,0.0133248,-0.0073842076,0.0147111295,0.012820681,-0.021127198,-0.030820046,-0.00018421136,-0.04463751,0.0033655718,0.010878674,0.010787016,0.046906047,0.008816366,-0.029170198,0.055682313,0.04926624,-0.031163763,-0.027359951,0.011915556,-0.017162984,-0.020588707,-0.0038525057,0.012408218,0.014871531,0.020073129,0.011096362,0.0048836595,-0.0053734574,-0.017369214,-0.01755253,-0.050091166,0.0024131867,-0.008203402,-0.0030762758,-0.013611232,0.0039785355,-0.007120691,0.0032996926,-0.012545706,-0.07131002,0.0011514552,-0.021505287,0.048258003,-0.0046659713,0.004181902,-0.0064676264,0.0046487856,0.00745868,0.024862267,0.05091609,-0.021035539,-0.039183848,0.02053142,0.06173175,-0.0017644189,-0.015547509,0.015387108,0.040283747,0.020840766,0.004479791,0.026030907,0.007882599,-0.03675491,-0.014745501,0.03519672,-0.00745868,-0.0035746668,0.011743697,0.015662082,-0.029055625,-0.026626686,0.00093663146,-0.02032519,-0.032676123,0.004981046,-0.0070347614,-0.012557163,0.009108527,-0.03240115,-0.009629832,-0.0372132,-0.0008993954,0.04889961,0.015547509,0.026810002,0.017541073,0.011010433,-0.03984837,0.017964993,-0.04807469,-0.008071643,0.010907317,-0.014905903,-0.029353514,-0.005416422,0.026328797,-0.026489198,0.005768733,0.023785284,-0.016223488,-0.005628382,-0.007911242,-0.021860464,-0.009223099,0.02057725,-0.0305909,0.010638071,-0.004866474,0.0359529,-0.013817462,0.0100480225,0.00019226724,-0.0051529054,0.007905513,0.047295593,0.006444712,0.0028986882,0.007424308,0.03606747,0.006988932,-0.0033283357,-0.009125712,0.006324411,-0.0008048729,0.022822874,0.028780652,0.02376237,-0.016979668,0.00586612,-0.018583685,-0.014504898,0.0012602992,0.0059749642,-0.011251035,-0.046837304,0.027222464,-0.0038954704,-0.01160621,0.008690336,0.031874113,-0.039367165,-0.015180877,-0.017059868,0.007240992,-0.005041197,0.03402808,-0.02346448,0.023326993,0.010546413,-0.0018732629,-0.01575374,-0.008575764,-0.023361364,-0.009899078,-0.00019924901,-0.008197674,0.038656816,0.011262492,-0.0086674215,-0.0058460697,-0.011789527,-0.033157326,-0.003431451,-0.0061640088,0.0016555749,-0.0037694403,-0.049495388,-0.03480717,0.00988762,-0.0145163555,-0.05526985,0.008518477,-0.012190531,0.022066694,0.028047387,0.0022714029,-0.008690336,-0.01445907,0.045920722,0.01605163,0.037808977,0.025022669,0.0032624565,-0.007676368,0.030315924,-0.021356344,-0.013679976,0.010494855,0.00087648083,0.014184095,0.004780544,0.015811026,-0.01479133,-0.02300619,-0.0057171755,0.009246013,0.0019334136,-0.009658475,0.042437714,0.010746915,-0.012282189,0.05334503,-0.023739455,-0.022158353,0.0077279257,0.039710883,0.006037979,0.020302275,0.035334207,0.012098873,0.006524913,-0.0017271828,-0.011995757,-0.018388912,-0.0074185794,-0.030247182,0.0062843105,0.030499242,0.022112522,0.051145233,0.032172002,0.023178048,0.006925917,-0.024793522,-0.020222073,-0.012270732,-0.0008392447,0.05343669,-0.024908096,-0.01810248,0.01236239,0.0031564767,0.03226366,-0.04555409,-0.01671615,0.003866827,-0.028276531,-0.011743697,-0.012786308,-0.011302592,-0.029216027,-0.016704693,-0.01646409,0.0018818559,-0.0047547654,0.02731412,-0.0359529,-0.048028857,0.015341279,0.0023301214,-0.025755933,0.02614548,-0.0059520495,0.001891881,-0.029765977,-0.008764808,0.0066566714,-0.029307686,-0.012717565,-0.05371166,-0.0039441637,-0.034509283,-0.0021253228,0.0024948197,0.035861243,0.006553556,0.039367165,0.0016183387,-0.0037866263,0.02216981,-0.024953924,-0.0119499285,0.013932035,-0.0026466283,0.007120691,-0.027932813,-0.008060186,0.04404173,0.0226281,-0.011205206,-0.008552849,0.011039075,-0.008862195,-0.00494381,0.007441494,-0.022811417,0.0058059692,0.008031543,0.0020436898,-0.051282723,0.016154746,0.0032825067,-0.013210228,-0.011972843,-0.021860464,-0.0065936563,0.05274925,0.010133952,0.036479935,0.002056579,0.01840037,-0.016326604,-0.0072696353,0.037236113,0.007086319,0.020164788,-0.021333428,-0.033753105,0.031026276,-0.004580042,0.0018890167,-0.046058208,-0.023189506,0.052520107,0.0004010043,-0.025778849,-0.0075159664,0.018343082,0.010655257,0.015261078,0.018870117,-0.003884013,-0.0062499386,-0.020542877,0.009492344,-0.027634924,0.0007339811,-0.017208813,-0.00586612,0.018675344,-0.035082147,0.02376237,-0.026878746,-0.001149307,-0.008638779,-0.0018661021,-0.029055625,-0.01755253,0.021551117,-0.021585489,-0.008260689,0.002732558,-0.017987907,0.0011342693,0.009211642,0.0040701935,-0.009830334,0.021356344,0.011617667,-0.019248206,0.022261467,0.009578275,0.0073555647,-0.018572228,0.006003607,0.026305882,0.008988225,-0.0052732066,0.005923406,0.00086932007,-0.029147284,-0.025297644,0.036594506,0.02912437,-0.036984053,0.010420383,0.026305882,-0.01755253,0.038610987,0.024151916,0.0061754663,0.022937447,-0.0011306889,0.006971746,-0.018835746,-0.036594506,0.0059635066,0.053161714,0.030453412,-0.019305494,-0.0025478094,0.006708229,0.0532992,0.02719955,-0.027382866,0.038038123,-0.007979985,0.038610987,0.0005685668,-0.049174584,-0.024358148,-0.0074930517,-0.013256056,0.006146823,-0.020474134,-0.02237604,-0.025068497,0.0019205242,0.0030476328,0.008696064,0.012007214,-0.002433237,0.03686948,0.009108527,0.0017930621,0.012637364,0.036823653,-0.007928428,-0.01956901,0.009555359,0.004262103,0.040742036,0.032011602,-0.004700343,-0.0042019524,-0.013084197,0.023304079,-0.028941054,0.056507234,-0.034509283,0.002526327,0.0044396906,0.04642484,-0.03959631,-0.0072352635,0.001747233,-0.005817427,-0.025755933,-0.006290039,-0.016670322,-0.021757348,0.006215567,-0.033890594,-0.017300472,-0.02065745,0.01542148,-0.027680755,0.014882988,-0.016200574,0.015490224,-0.011113548,-0.0015166556]},{"id":"guide-events-4","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Gateway Dispatch Events Reference\nAll events the Fluxer gateway can send. Use GatewayDispatchEvents from /types for type-safe checks.","meta":{"slug":"events","url":"/guides/events"},"embedding":[-0.025175834,-0.0092202565,-0.011427072,-0.010725727,0.01559886,0.019819017,-0.07376205,-0.0048187175,0.022140708,0.0072310995,-0.0095406985,-0.0014442549,-0.00004118885,0.0021010092,-0.007345975,0.029722478,-0.03458352,0.032793883,-0.00580725,0.08285534,0.0062758205,0.0031107028,0.030496376,0.031294458,-0.05997701,-0.012962773,0.033253383,0.050109826,0.028851844,0.009589067,0.07235936,-0.017412681,0.017847998,-0.015018437,0.008258931,0.02633668,0.018005196,0.012074001,-0.04007335,0.01893629,-0.029480636,-0.032068353,-0.0149217,-0.0115721775,0.012890221,0.0072552837,-0.0370745,-0.022648577,-0.043797728,0.04996472,-0.0022657646,-0.036615,0.04188717,0.010127167,0.043821912,0.01282976,-0.04638545,-0.043507516,-0.0033616147,0.018633988,0.010169489,0.0072190072,0.02119752,0.027255682,-0.014933792,0.04486184,-0.018210761,0.021294257,0.03494628,0.022527656,0.004516414,0.013531104,0.028682554,-0.07535821,-0.011898666,0.0076785088,0.023809422,0.03119772,-0.016808074,0.0132046165,0.028876029,0.0055774995,-0.06524918,-0.049311746,-0.015792334,-0.01927487,-0.023422474,-0.02701384,-0.015526307,-0.010979663,-0.015671413,0.004836856,-0.025925547,0.0955279,0.041137457,-0.014631488,0.036300603,-0.04611942,-0.018198669,0.034220755,0.091997,-0.09736591,0.014776594,-0.0536891,0.041451853,-0.025079098,-0.024002897,0.019625543,-0.022576025,-0.024268923,-0.07946954,-0.027957026,0.028730923,0.057800427,-0.0042534103,-0.020363163,0.053930942,-0.03262459,0.042806175,0.042564332,-0.037727475,0.008700294,-0.018065656,0.0052872878,-0.03741308,-0.019020936,0.026917102,-0.023313645,-0.06365302,-0.03576855,0.044619996,-0.08242002,0.05330215,-0.03052056,-0.00046214645,-0.0009787076,-0.0058314344,-0.0027887498,-0.021499824,-0.011124768,0.002386686,-0.04142767,0.03588947,0.029722478,-0.028077947,-0.027449157,-0.022394642,-0.0018349822,0.023083894,0.008803078,-0.03453515,0.02684455,-0.0043592164,-0.0027917726,-0.013676209,0.016082546,0.008960275,0.0014737295,-0.02255184,-0.04611942,-0.007279468,-0.0077571073,-0.04539389,-0.00337673,-0.042515963,-0.047667213,-0.039372005,-0.040097535,-0.035212312,0.032600407,0.004576875,-0.021777943,-0.0055019236,0.04058122,0.027279867,-0.0007028556,-0.032987356,0.018234946,-0.029456452,0.03448678,0.0014865774,-0.009836955,-0.02067756,-0.028416527,0.024885623,0.01673552,0.013833407,0.05165762,-0.053543992,-0.058525953,-0.016602507,0.047110975,-0.020205965,0.036881026,0.04053285,-0.013567381,-0.010925248,-0.015562584,0.03068985,-0.0016399964,-0.013047419,-0.04459581,0.028513264,0.01655414,-0.0039359913,0.02006086,-0.0128055755,0.01792055,0.036711734,-0.009976015,0.009685804,0.030448006,-0.002856768,0.0054868083,-0.042080645,0.076712534,-0.02373687,0.06007375,-0.024619596,-0.00031023895,-0.009589067,0.0031046567,0.020072952,-0.03429331,-0.01621556,0.019686002,0.0013286239,-0.0015810472,-0.036929395,-0.008325438,-0.021330534,0.012624194,-0.02378524,-0.056978162,0.03787258,0.0031076798,-0.01226143,-0.045079496,0.029287161,0.008131964,-0.010502023,-0.03673592,0.018065656,-0.02882766,-0.008222654,0.013216709,-0.002781192,-0.007533403,0.013688302,0.05605916,0.041814618,0.036977764,0.057074897,-0.019178133,0.030738218,-0.015852794,0.035816915,-0.010725727,0.0060430467,0.0027554962,0.045829207,-0.018452605,-0.007527357,0.024547042,-0.027134761,-0.028585818,0.012074001,0.009226303,-0.017231299,-0.008125918,0.024571227,-0.0048036026,0.027666815,-0.035647627,-0.052286413,-0.030931693,0.05127067,0.013095787,-0.0049184775,0.00658417,-0.019033028,-0.037485633,-0.00048028465,-0.01813821,0.017098285,0.0579939,0.006759506,-0.04176625,-0.0010814908,0.017545694,-0.04345915,0.035454154,-0.00057551026,-0.013265077,0.053495623,0.06302423,0.07395553,0.0029928046,0.028077947,0.0030396616,-0.004235272,-0.02289042,-0.05610753,0.005093814,0.01690481,0.014849147,-0.019867385,-0.015550491,0.0486104,-0.030206164,0.0013520523,-0.0018969544,-0.04471673,-0.04619197,-0.020363163,0.00638465,0.04945685,0.049577773,0.054946683,-0.0077933837,0.019831108,0.00097341725,0.033712886,-0.043362413,-0.0064572026,-0.04667566,-0.044499073,-0.017412681,0.031004246,0.04810253,0.013156247,-0.01712247,0.011269874,0.028876029,-0.01232189,0.007376205,-0.0050545144,-0.014486383,-0.0069953026,0.041814618,0.01802938,-0.03187488,-0.05871943,-0.041742064,0.005045445,0.008095687,-0.01316834,-0.027932841,0.013712486,-0.0036548492,-0.03344686,-0.0022173962,-0.05131904,-0.04870714,0.000010562909,-0.047231898,0.0027494503,-0.016941087,-0.04287873,0.0058314344,-0.02819887,0.014063158,0.019166041,0.03197162,-0.040315192,-0.0014102458,-0.01598581,-0.0050635836,0.024414029,-0.04544226,0.04757048,0.011040123,0.0033676608,-0.0116145,-0.02475261,-0.04159696,-0.008531004,-0.033978913,0.028102132,0.0259981,-0.014063158,0.05267336,0.013470643,-0.038404636,-0.006251636,0.0055714534,-0.022769498,-0.005027307,0.0076785088,0.0029429244,0.040653773,-0.01746105,-0.019939939,-0.0029247862,0.025079098,-0.010266227,0.05639774,0.013107879,0.010846649,-0.0113303345,0.02662689,-0.007890121,-0.0026648052,-0.008071503,-0.018380051,-0.014933792,-0.022817867,0.051802725,0.024123818,-0.06776435,-0.0068804272,0.015018437,0.02582881,0.015743965,-0.021221705,-0.029311346,0.046482183,-0.00039148302,-0.020314794,0.0077933837,0.010121121,-0.0007636942,-0.039517112,0.049867984,-0.0061095534,-0.021681206,0.014933792,0.0074850344,0.014123619,-0.057316743,-0.04328986,-0.015610952,0.035865285,0.03182651,0.058816165,-0.010562484,0.052334778,-0.053882573,-0.013156247,0.00785989,-0.0049608,0.009298855,0.039081793,0.026965471,-0.01184425,-0.00038657058,-0.01121546,0.020193873,0.020109229,-0.027207313,-0.035816915,-0.004443861,-0.008446359,-0.004171788,-0.06969909,-0.001913581,0.003078961,0.04832019,0.059348222,-0.011300105,-0.03622805,0.032140907,-0.028851844,-0.0015137848,-0.023132263,0.015949532,0.01944416,0.0028053764,0.01904512,0.0303029,-0.0073096985,-0.0047250036,0.015610952,0.036881026,-0.0012492691,-0.025925547,-0.016771797,-0.0130836945,0.057558585,0.020822665,0.0009892882,0.011028031,0.009371408,-0.004501299,0.04911827,0.0886112,0.0035097434,-0.00085022853,-0.05770369,-0.01282976,-0.02481307,0.011989356,0.021306349,-0.0122070145,0.02316854,-0.027400788,-0.03475281,-0.017775444,-0.00062123366,-0.0004919989,-0.037896764,-0.057897165,-0.034003098,0.02316854,0.037679106,0.0041234195,0.00029210074,-0.009806725,0.0005218514,-0.04070214,0.002640621,-0.014897516,-0.009450007,0.0024108703,-0.026167389,0.014462199,-0.0030865185,0.013373906,0.008748663,0.0064269723,-0.007037625,0.023047619,-0.010242042,0.0028476987,-0.01932324,0.0056772595,0.008083595,-0.043821912,0.030036874,-0.007823614,0.020834757,-0.029456452,0.004138535,0.019383699,0.013579473,0.030907508,-0.010502023,-0.005377979,-0.005970494,0.004262479,-0.025224203,0.04130675,0.007847798,0.014087343,-0.017509418,0.014256632,-0.001422338,0.008639834,-0.022261629,0.014631488,-0.009165842,-0.0332292,0.0006057406,0.002909671,0.026433418,0.056542844,-0.0067111375,-0.01633648,-0.008017088,-0.002828049,-0.011058262,-0.015187727,0.011747514,0.0061216457,0.014546844,0.003473467,-0.022007694,0.00017807564,-0.014123619,-0.009395592,-0.012382351,0.028464897,0.0059372406,0.0018591664,-0.009335131,-0.019153949,-0.02921461,-0.014498475,-0.008023134,0.014728226,-0.010447608,-0.04358007,0.010078798,0.053543992,-0.05770369,0.016227651,0.0016626691,0.002039037,0.0025831833,-0.009534652,0.0049094087,-0.006493479,-0.014051066,-0.009316994,-0.0003285661,0.009486283,-0.011916803,0.00624559,-0.018452605,0.014196171,-0.01773917,0.00030494865,-0.028126316,-0.036977764,0.035647627,0.008706341,-0.0153570175,0.0118502965,0.0015795357,-0.0159979,0.011021985,0.030157795,-0.023325738,-0.01333763,-0.0020722903,0.00099609,0.0021191475,0.026941286,0.0259981,-0.016009992,0.0030850072,-0.009673712,-0.014123619,-0.0017730099,0.009504422,0.0490699,0.003382776,-0.0027615423,-0.0053477488,-0.034728624,0.028876029,-0.023869883,0.021681206,-0.0013747251,-0.030665666,0.0012908359,-0.0055140154,-0.014897516,-0.001776033,-0.025345124,0.020435715,-0.008041273,0.028005395,0.0049063857,0.02255184,-0.0327697,0.001105675,0.041064907,0.0031046567,0.018343776,-0.031173535,0.015006345,-0.004912432,-0.008458451,0.034897916,-0.0026239944,0.011191275,-0.010780143,-0.011457302,0.0006495746,-0.010635037,0.05064188,-0.007805476,0.038694847,-0.006662769,0.007726877,0.004785464,0.027352419,0.0024864462,0.015973717,0.011789836,0.03775166,0.04916664,-0.0054263477,-0.034462597,-0.00075878174,0.0051875277,-0.023011342,0.014861239,0.021657022,-0.023869883,0.05838085,-0.03373707,0.032068353,0.01989157,-0.041862987,0.019371608,-0.026651075,0.01746105,0.025611151,0.0025287687,0.017013641,0.04793324,0.004658497,-0.010659221,0.0031893018,0.008452405,0.0144017385,-0.023108078,-0.021209612,0.0119288955,0.010846649,0.019903662,-0.027570078,0.012049817,-0.038791582,0.033664517,-0.0030079198,0.045756657,-0.053495623,0.00763014,-0.004507345,-0.034462597,-0.029891768,-0.013470643,-0.00641488,-0.03917853,-0.021330534,0.030448006,-0.02582881,-0.009165842,0.052238043,-0.009564882,-0.0003495384,-0.00024996718,-0.008428222,0.02633668,0.018839553,-0.054753207,-0.031512115,-0.0037515862,0.02233418,0.00065146404,0.009589067,-0.041113272,0.0055805226,-0.00056039507,-0.011959126,-0.034607705,-0.02667526,-0.002252161,0.019383699,-0.0144380145,-0.022902513,0.0118502965,-0.0155142145,-0.016263928,-0.0023821515,-0.022636484,-0.0012228176,-0.013047419,0.007938489,-0.03192325,0.005822365,-0.012745115,-0.006324189,0.0061125765,-0.0045587365,0.024885623,0.02058082,0.017811721,0.028392343,0.005997701,0.028634187,-0.043434966,-0.0011993891,-0.019903662,0.0003232758,0.015635137,0.012575825,0.02316854,-0.0110522155,-0.010677359,0.035599258,0.03487373,-0.0048489477,-0.0353816,-0.041234195,-0.022527656,0.0068804272,-0.021173336,-0.010514115,0.022201167,-0.03380962,0.013144156,0.0041143503,-0.0054898313,0.010139259,-0.039831508,-0.043265674,0.007116224,-0.019794833,-0.020955678,-0.02679618,-0.03888832,-0.020750111,-0.0015674436,-0.096156694,0.00483081,0.000056965313,-0.03182651,0.00675346,-0.017328035,0.014740318,0.031657223,0.041814618,-0.034631886,0.026965471,-0.0042745713,-0.022684854,0.0015304114,0.009365362,-0.042201567,0.051947832,0.033374306,0.0236885,-0.011070354,-0.0018818392,-0.010242042,0.0047461647,0.019528804,-0.0065478934,0.016820166,0.00032781035,-0.014365462,0.04595013,0.010369009,0.020266425,-0.041451853,0.01042947,-0.04447489,0.04437815,0.03296317,0.003987383,0.010302503,0.017823813,-0.03736471,-0.00039299452,0.04696587,-0.005973517,-0.010943386,0.016421126,0.02243092,-0.017110378,-0.0013694348,0.03509139,-0.002856768,0.012708839,0.0005192062,0.007974766,-0.020762203,0.022817867,0.034051463,-0.015078898,0.039009243,-0.0037001946,-0.046772394,-0.010943386,0.01910558,-0.02176585,0.00072741776,0.0005033353,-0.03182651,-0.008156148,0.0293839,0.025103282,-0.00006915192,0.03035127,0.05828411,0.031657223,0.025732072,0.002555976,0.04234667,0.009716034,-0.01792055,-0.010175535,0.01932324,0.0053296103,0.04703842,-0.007128316,0.046844948,0.06099275,-0.023229,0.01865817,-0.002646667,0.011342427,0.0032890618,0.024002897,-0.06592634,0.024462398,0.0025484185,0.010834557,-0.012219107,-0.04950522,0.012503272,-0.012146554,-0.019915754,0.013966421,-0.030036874,0.0009945785,0.01773917,-0.01232189,0.05373747,0.019637635,-0.03475281,-0.024559135,-0.021064507,0.027352419,0.023628041,-0.020834757,0.019033028,0.005789112,0.002506096,0.016650876,-0.0051603206,0.022309998,0.0035067205,0.020568728,-0.028223053,-0.057171635,0.017799629,-0.009607205,0.018585619,0.017884275,-0.0021161244,-0.035405785,0.017678708,-0.010864788,0.0011547994,-0.019770648,0.005988632,0.015381201,0.0042987554,-0.015743965,0.03148793,0.016433217,0.015453754,0.010447608,-0.028343976,0.009764402,-0.017267575,0.018005196,0.0043561934,0.0031802326,-0.004443861,-0.015211912,-0.0042534103,0.010308549,-0.04590176,-0.04024264,0.006620446,0.0035218357,0.039251085,-0.008035227,0.026119022,-0.053543992,0.0024940039,0.03487373,0.037558187,-0.009570928,0.005997701,-0.03339849,-0.013736671,-0.008591465,0.042249937,-0.017001549,-0.016493678,-0.02498236,-0.047546294,0.010913156,0.00034292552,-0.02272113,0.054801576,0.024232648,-0.004507345,0.018101932,-0.0016294158,-0.0067353216,0.020266425,-0.007472942,0.04619197,0.033882175,-0.010786189,0.056833055,0.017013641,-0.031100983,0.019238593,-0.025780441,0.04324149,0.06302423,0.025369309,-0.006499525,0.0036185728,0.01847679,0.018077748,-0.02481307,-0.024498675,0.04486184,-0.009836955,-0.007805476,0.0021312395,0.034680255,-0.014812871,0.0015810472,0.02079848,-0.021524008,0.036324788,-0.0020904287,0.027497524,-0.021342626,-0.000075575874,0.034801178,-0.015574676,-0.041621145,-0.019649727,0.011862389,0.018355867,0.008664018,-0.04328986,-0.000726662,0.029529005,0.025852995,0.003899715,-0.02582881,-0.023374105,-0.039662216,0.024764702,0.0075878175,-0.05402768,0.012878128,0.0047250036,0.029262977,-0.031149352,-0.000930339,0.023313645,0.0141598955,0.050738618,-0.010151351,0.015042622,0.013869684,-0.018198669,0.005456578,-0.0027358464,-0.01559886,0.054269522,-0.019577174,0.026119022,0.013990605,0.014667765,0.030714035,-0.00070625654,-0.0134827355,0.01282976,-0.015042622,0.0028643254,0.013470643,0.0069832103,0.020834757,-0.014002698,-0.0025801603,-0.020907309,-0.008488682,0.01390596,-0.016542047,0.017497325,0.0077631534,-0.000026168145,0.004939639,0.005220781,-0.0045466446,-0.017134562,-0.032842252,-0.01059876,0.0048277867,0.028489081,-0.0067232293,-0.027763553,-0.0044559534,0.0034099834,-0.016771797,-0.011342427,-0.005405186,0.0076966467,-0.010072752,0.0063786036,0.015804427,-0.0051512513,0.009982062,-0.006487433,0.0039329682,-0.01836796,-0.009939739,0.010000199,-0.057268374,0.03085914,-0.017847998,-0.0125274565,0.007273422,-0.005792135,-0.023011342,-0.02305971,-0.0148370555,0.014051066,-0.00827707,0.00915375,0.020024583,-0.00918398,-0.006699045,0.0056923744,0.009286763,0.017110378,0.006765552,0.018646078,-0.035018835,-0.043700993,0.021959325,0.004247364,0.024462398,0.015453754,0.024667965,0.010544346,-0.0049849846,-0.017146654,-0.017400589,-0.0102964565,0.031753957,-0.008397991,0.0128055755,-0.026312495,-0.040895615,-0.017811721,-0.018392144,0.019093487,-0.04556318,0.0152360955,0.011100584,0.028223053,-0.052044567,0.00539914,-0.020133412,-0.0055049467,0.06544266,-0.02204397,0.043700993,-0.012001448,-0.027570078,0.025780441,0.056978162,0.0055200616,-0.0013460063,0.008682156,0.012055863,0.0036850795,-0.017207114,0.022285813,0.0121526,-0.015743965,-0.017400589,0.037848398,-0.006747414,-0.010054614,0.03702613,-0.005991655,-0.011940988,-0.011064308,0.021257982,-0.028706739,-0.005226827,0.004513391,-0.0022446034,0.016094638,-0.02136681,-0.0510772,0.0017231299,-0.023071801,0.004833833,0.006644631,-0.015175635,0.015864886,-0.013216709,0.008458451,-0.021572378,-0.0050575375,-0.01690481,-0.024631688,0.013700394,0.0026043446,-0.011959126,-0.018114025,0.023507118,-0.030133612,0.00071268046,0.041814618,0.014728226,-0.028368158,-0.016941087,-0.02312017,0.038356267,0.03158467,-0.013434367,-0.017654523,-0.010628991,-0.022140708,0.034414228,0.037606552,-0.0009515002,-0.0147161335,-0.035695996,0.020278517,0.022588117,-0.014619397,-0.010248088,0.03780003,-0.0077933837,-0.006251636,0.0067836903,0.037679106,0.01724339,-0.011862389,0.0051633436,0.033495225,-0.01158427,0.04268525,-0.010508069,-0.03547834,0.0221528,0.012188877,0.0113303345,0.022926696,0.012938589,0.019383699,-0.04125838,-0.0035399739,0.014667765,-0.028876029,-0.03228601,-0.00048973167,0.031076798,0.013797131,0.0025045844,-0.004335032,0.02001249,-0.006251636,-0.024619596,-0.032890618,-0.0018500973,0.0049608,0.01299905,0.016263928,0.0034099834,0.03052056,0.014788686,-0.006644631,-0.0016173236,0.013930145,-0.0054233246,-0.0037062408,-0.018730724,-0.039831508,-0.01746105,-0.01571978,-0.034027282,0.022056062,-0.021560285,-0.0056953975,-0.023204817,0.0004081097,0.012200968,0.022297906,0.009335131,-0.006487433,-0.022660669,-0.002067756,0.026022283,0.00013707574,-0.031173535,-0.004108304,-0.009510468,0.017025732,-0.013373906,-0.036155496,0.012418627,-0.015731873,0.017896367,-0.004513391,0.009268625,0.01847679,-0.0056953975,0.0095406985,-0.015623044,-0.029891768,0.021403087,0.005021261,0.0067957826,-0.022805775,-0.014498475,-0.009431869,0.0052389195,-0.033277567,0.02527257,0.0048277867,0.0028144454,-0.0009696384,0.0037727475,0.0023912205,-0.0020178757,-0.023470843,-0.05905801,-0.0061851293,-0.013047419,0.0030426846,0.011009893,-0.007472942,0.036590815,0.0018742816,-0.020496177,-0.018887922,0.0148370555,-0.0264576,-0.008410083,-0.014232448,0.00785989,0.0034946282,-0.000030702697,-0.02515165,-0.029142056,-0.015864886,-0.020435715,-0.028658371,0.0052389195,0.0092202565,0.00002408981,-0.0183075,-0.031633038,-0.019311147,-0.014631488,0.011281966,-0.005982586,-0.03825953,0.030810772,-0.010961524,-0.030036874,-0.013688302,-0.019686002,0.0014480337,-0.019153949,0.010689451,-0.025393493,-0.026917102,-0.012938589,0.025949731,-0.02882766,-0.01542957,-0.04996472,-0.019601358,0.011003847,0.0040145903,0.008113826,0.038453005,0.0022808798,0.008035227,0.04764303,-0.008404037,0.03148793,0.028005395,-0.003379753,0.027545894,-0.014305001,0.0028990905,-0.0166146,-0.011487532,0.016118823,0.051125567,0.018114025,-0.00941373,0.013857592,-0.026651075,0.0077752457,0.032600407,-0.012503272,-0.024547042,0.024837254,-0.008228701,-0.010514115,0.009335131,-0.017255483,-0.02916624,0.019565081,0.013240892,-0.04328986,0.05069025,-0.023313645,0.041621145,-0.002950482,-0.015344925,-0.0020617098,0.024571227,-0.027763553,-0.01995203,-0.006692999,-0.02662689,-0.035115574,0.012333983,0.0075938636,-0.006844151,-0.04911827,-0.033930544,0.02464378,-0.016130915,-0.018839553,0.015876979,-0.0033434764,-0.000184783,0.0033948682,0.022128616,-0.03001269,0.015332833,-0.00624559,-0.0032437164,-0.082758605,0.011348473,-0.004706865,-0.00138455,0.023990804,-0.023095986,0.033325937,0.024595411,-0.029287161,0.0024441236,0.019008843,0.0052358964,0.024462398,0.016892718,0.024462398,-0.028489081,-0.045176234,-0.00081546366,0.006765552,-0.0054958775,0.014667765,-0.04674821,0.0046645426,-0.002555976,-0.03651826,-0.013373906,0.022479286,-0.006686953,-0.0079868585,0.00483081,0.01949253,-0.006692999,-0.0042745713,0.011396841,0.022225352,-0.052866835,-0.0008169752,0.035575073,0.01339809,-0.004939639,0.0018682355,0.016445309,0.0148370555,0.024547042,0.025054913,-0.021257982,-0.005039399,0.035284862,-0.00746085,-0.0021448433,-0.0011238132,0.012890221,0.024401937,0.008682156,0.019190226,-0.0236885,0.031294458,-0.004247364,-0.011451256,0.00014746742,-0.016034177,0.0025726026,-0.00020311016,-0.006844151,-0.011493579,-0.00088272616,0.0056802826,-0.022696946,-0.0044559534,-0.027594263,-0.029553188,-0.015550491,0.0017941712,-0.0123279365,-0.021257982,-0.0005773997,-0.0063000047,0.00092504866,0.0009590578,0.01452266,0.020048767,0.008410083,0.0050545144,0.02798121,0.010840603,-0.008077549,0.05828411,-0.011239643,-0.02136681,-0.023748962,0.030496376,0.02141518,0.015550491,0.011439164,-0.004008544,-0.04290291,0.022745315,0.03666337,-0.0045526903,-0.013639933,-0.005719582,-0.008089641,-0.033833805,-0.0298434,0.0025605105,-0.04713516,-0.0042262026,-0.032237645,-0.019153949,-0.001963461,0.023095986,-0.033712886,0.015804427,-0.027666815,0.011626592,-0.019528804,-0.012273521]},{"id":"guide-events-5","type":"guide","source":"guides","text":"Guide: Events (events)\nSection: Event Payload Reference\nPayload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from /types.","meta":{"slug":"events","url":"/guides/events"},"embedding":[0.0003911594,-0.00071400974,0.0000027891006,-0.008369661,0.025356334,0.010382981,-0.0672334,-0.01511716,0.047491353,-0.007374505,0.0114989355,-0.00562004,0.03327156,-0.046317875,-0.004541476,0.012954279,0.009652434,0.045581575,-0.002592869,0.06309171,0.0024188608,-0.022710254,0.019212829,0.02802542,-0.029037833,0.00085997547,0.0025123362,0.087987855,0.013817131,0.0031148943,0.0449143,-0.018234931,0.06507052,-0.031269744,0.016451703,0.035273373,0.0018608833,0.0439249,-0.047675427,0.039668165,-0.042176187,-0.023527088,-0.018349977,0.010262182,0.012827727,0.0066784713,-0.048549786,0.007961244,-0.06631302,0.044822264,-0.018637596,-0.004127307,0.06953434,0.06875202,0.031637892,0.012724185,-0.04249832,-0.030165292,-0.027358148,0.009589158,-0.027358148,-0.001253292,0.02081198,0.035756573,0.007155916,0.012310017,-0.039760202,0.03368573,0.034997262,0.05968632,0.045351483,0.051541004,0.000026559652,-0.023906743,0.0107971495,-0.019880101,-0.008921886,-0.0031350276,-0.00794974,-0.016773835,0.017498631,0.009537387,-0.06525459,-0.088540085,-0.008225852,-0.040174372,-0.022767778,-0.02959006,-0.02434392,0.026138652,-0.014357851,-0.0015646376,-0.04284346,0.0814532,0.040174372,-0.06645108,-0.0014941714,-0.035756573,0.0040726596,0.038264595,0.07100694,-0.065438665,0.006597939,-0.03589463,0.009019676,-0.03023432,0.0010059412,0.018557062,-0.026322726,-0.029981218,-0.06631302,-0.017728725,0.011688763,0.05167906,-0.0066612144,-0.00016690786,0.04169299,-0.0078634545,0.055406578,0.021801384,-0.04799756,0.030510433,-0.00069819076,-0.017441107,-0.03720616,-0.048411727,0.03242021,-0.041209795,-0.019891607,-0.0076161036,0.057431404,-0.06497848,0.023527088,-0.024228873,-0.010365725,-0.0037562808,-0.012988793,0.01109052,-0.012229484,-0.022204049,0.012988793,-0.051494986,0.014357851,0.029014824,-0.0071846778,0.01254011,-0.024136836,0.03474416,0.0040812884,-0.0023685277,-0.033041466,0.038195565,-0.017820762,0.0020420821,0.009514377,-0.00047420888,0.0027438682,-0.015738413,-0.012056913,-0.025011193,0.0023829085,-0.029981218,-0.03253526,0.010843169,-0.06456431,-0.024412949,-0.039000895,-0.04475324,-0.014645468,0.027174074,-0.019914616,-0.03294943,-0.03571055,0.05572871,-0.028209496,-0.014726001,-0.008841353,0.013920673,-0.0070811356,0.010296696,0.009698452,-0.011665754,-0.051771097,-0.016313648,0.009842261,0.022618217,-0.006943079,0.058535855,-0.06534663,-0.024044799,-0.0061895223,0.031499837,0.046755053,0.000093924995,0.013126849,-0.015531329,-0.014035719,-0.0107338745,0.030510433,0.012413559,0.012632147,-0.0350893,0.030809555,0.01774023,0.02245715,-0.008133815,-0.015358759,0.025724484,0.031614885,-0.032190118,0.0036498623,0.0051397197,0.015174684,0.012839233,-0.052921567,0.0328804,-0.025954576,0.05213925,-0.039438073,0.01438086,-0.01754465,0.036653936,0.053657867,-0.011113529,-0.05388796,0.020305775,-0.012977288,-0.019673018,-0.06424218,-0.043073554,-0.016819855,0.034191933,0.0071961824,-0.037735377,0.01843051,0.007155916,-0.0152552165,-0.055130467,0.014242804,-0.0024691937,-0.0013942245,-0.022399629,0.02878473,0.01589948,-0.0059076576,0.02583953,0.00032410864,0.0068740514,0.06341384,0.072801664,0.07381408,0.021295179,0.056695104,-0.016911892,0.0074838,0.01975355,0.0026805925,0.016371172,-0.0024289272,0.022411132,0.051541004,-0.0032040556,0.009186493,0.045926716,-0.05126489,-0.024090817,0.0053525562,0.013437476,-0.025264295,-0.023135928,-0.0013007488,-0.009433844,-0.0013891911,-0.0061435034,-0.053473793,0.024689062,0.01862609,-0.0063275783,-0.026644858,0.0052375095,-0.039944276,-0.025264295,-0.0110099865,-0.01698092,-0.0070753833,0.042176187,0.025310313,-0.03883983,0.002155691,0.024113826,0.0052950326,0.025241286,0.013725094,-0.032581277,0.040772617,0.05457824,0.027013008,0.002174386,0.056603067,0.0053237947,-0.00829488,-0.05430213,-0.008640021,-0.024620034,0.018775651,-0.003989251,-0.0025367837,-0.02308991,0.014254309,-0.039000895,0.004645018,0.0032529507,-0.03911594,-0.015738413,-0.0670033,0.045558564,0.056879178,0.052645452,-0.010348467,0.0021355578,0.023791695,0.009341807,-0.0060054474,-0.057477422,-0.0017400841,-0.023837714,-0.044385087,-0.03580259,0.02211201,0.059272155,0.031246733,0.018925212,-0.0030171045,0.032305166,0.00047744456,-0.007621856,-0.030717518,0.017107472,0.0145534305,0.029313946,0.0074953046,-0.058627892,-0.044891294,-0.049562197,-0.036722966,0.019143801,-0.012252493,0.008145319,-0.01310384,-0.0058213724,-0.015186189,0.0042078397,-0.041255813,-0.02728912,0.01199939,-0.039553117,0.0011253023,-0.022399629,-0.045351483,0.0115909735,-0.053473793,0.005976686,0.027818337,0.03946108,-0.022089,0.013909169,-0.024781099,0.029267928,0.02694398,-0.07689734,0.026644858,0.028669683,-0.03941506,0.015025123,-0.02044383,-0.05273749,0.011792306,0.0058530103,-0.02066242,-0.013955187,0.008812591,0.056649085,0.0035722058,-0.04328064,-0.023273984,0.003810928,-0.041785028,0.022042982,0.014806534,-0.010411743,0.04397092,-0.0039374796,-0.05121887,0.0051914905,0.003474416,-0.0019011497,0.03030335,-0.0038368136,0.010636085,-0.025540408,0.022399629,0.007828941,0.0075298185,-0.026851943,-0.024159845,-0.03833362,-0.028646674,0.031154696,0.008668782,-0.038563713,0.034445036,0.03136178,0.018246436,0.0038598229,-0.023055395,-0.024988184,0.028646674,0.014357851,-0.03317952,0.026391756,0.035135318,-0.0068798037,-0.06415014,0.05830576,-0.030464415,-0.0069948505,0.03064849,-0.00721344,0.012448072,-0.023561602,-0.022537684,-0.0069315745,0.03315651,0.014242804,0.04827367,-0.04254434,0.036078703,-0.064380236,-0.035618514,0.0328804,0.010739626,0.013725094,0.030165292,0.057845574,-0.026414765,-0.007455038,0.019857092,0.02728912,0.024896145,-0.02655282,-0.013011803,0.021168627,-0.025540408,0.017095966,-0.053243697,-0.02083499,0.004978654,0.053749904,0.048503768,-0.0035146822,0.00066763145,0.014679982,0.00341114,0.009825004,-0.046709035,-0.0021341196,0.009416588,-0.026713885,-0.030464415,0.03458309,0.01754465,-0.0022937472,0.017199509,0.011872838,0.008916133,-0.0073284865,-0.012620643,-0.024620034,0.05351981,0.027634261,0.02618467,0.03697607,-0.013230392,-0.019178316,0.035595506,0.10096514,0.00868604,-0.016773835,-0.003040114,-0.0179128,-0.057109274,-0.0016739322,0.031085668,-0.010411743,0.043303646,0.004429305,-0.021329692,-0.028347552,-0.0014898571,-0.003008476,-0.030119274,-0.042682394,-0.03727519,-0.0142773185,0.04058854,0.005953676,-0.012114436,0.00036581315,-0.018303959,-0.0069603366,-0.0039202226,0.0077311504,0.0031292753,0.018545557,-0.024251884,-0.012206474,-0.008208595,-0.025356334,-0.016704807,0.013218887,-0.037436254,0.023250975,0.0043746578,0.007915226,-0.013241896,-0.029981218,-0.0031494084,-0.05048257,0.019546466,-0.033662718,0.0057092016,-0.0142773185,-0.019742046,0.0061089895,0.018154398,0.01528973,-0.021881917,-0.03097062,0.03317952,0.018442016,-0.029544039,0.02655282,-0.0074147717,0.019063268,0.0057092016,0.031476825,-0.016325153,0.024412949,-0.020719944,0.010509533,0.011182557,-0.036745973,0.019960634,0.0030659994,0.015519825,0.04401694,0.0027654395,-0.02885376,0.0008304947,-0.0006388697,-0.00858825,-0.013460485,0.023020882,0.0074838,-0.016359666,0.019396905,-0.0027942013,-0.035871617,-0.004463819,-0.006839537,-0.008611259,0.045972735,0.008818343,-0.015347254,-0.010659094,-0.02009869,-0.039230987,-0.0021499386,-0.0009074323,0.005936419,-0.0036412338,-0.045903705,-0.024689062,0.028232506,-0.029037833,0.014564935,0.036078703,-0.010175897,-0.02623069,-0.020386308,0.03103965,-0.009922794,-0.0059019052,-0.0056689354,-0.021122608,-0.012528606,-0.013115345,0.004133059,-0.03023432,0.0031263991,-0.019661512,0.023768686,-0.044592172,-0.00682228,0.0068740514,0.0072997245,-0.012379045,0.003845442,-0.016290639,-0.0042538587,0.03170692,0.0314078,-0.03693005,-0.034905225,-0.02510323,-0.00434302,-0.018096875,0.02073145,0.016716313,-0.009221008,0.0011821067,0.007587342,0.002289433,0.0048549785,-0.018568566,0.036492873,-0.009577653,0.008847105,-0.0064138635,-0.006684224,0.01879866,-0.014357851,0.011136538,0.012954279,-0.02157129,0.014564935,-0.010768388,-0.03798848,-0.031545855,-0.0048405975,-0.0071789254,0.0017645316,0.045558564,-0.020006653,0.05025248,-0.006620948,-0.016520733,0.040519513,0.0034859206,0.0016566751,-0.010561304,-0.014852553,0.00010668801,-0.016739322,0.019224335,-0.018407501,-0.0110445,-0.00036275722,0.018545557,-0.0059939427,-0.0034859206,0.023400536,0.0015531329,0.018948222,0.005982438,0.024850126,0.012240988,0.021410225,-0.014449889,0.036699954,0.019454427,0.045558564,0.05973234,0.00074780476,-0.009428092,-0.01879866,0.006672719,0.004814712,-0.001086474,0.015991516,-0.034813188,0.011763544,-0.040381458,-0.013805626,0.023722667,-0.045811668,0.002241976,-0.0077656647,0.058167703,0.042337254,-0.008657278,-0.0065404153,0.0019529208,0.0010519599,0.018246436,0.018614586,0.024574013,0.02659884,-0.010348467,-0.015968507,-0.015266721,0.015749918,0.0135755325,-0.042613365,0.015013618,-0.027013008,0.011061758,-0.012609138,0.04689311,-0.066497095,0.0017185129,-0.010400238,-0.011930361,-0.0010469266,-0.019419914,0.010837416,-0.027772317,0.0074895523,0.0036124722,0.013771112,-0.013782617,0.04548954,0.0036987574,0.0008801087,-0.003307598,-0.017820762,0.042613365,0.024067808,-0.03244322,-0.017797753,0.0051253387,0.02044383,-0.015646376,0.00794974,-0.04353374,-0.0005561798,-0.021904927,-0.0066267005,-0.011625487,0.0032385697,0.00829488,0.0014690049,-0.014116253,-0.025954576,0.0076966365,-0.03911594,-0.015186189,0.0069603366,-0.009801994,-0.0067762616,-0.012459577,0.0064138635,-0.029981218,0.009215255,0.004794579,0.011320613,0.020409318,0.01155646,0.023515582,0.022595208,0.0201217,0.037436254,0.010716617,0.014392365,-0.021145618,-0.025172258,-0.03209808,0.015013618,0.04622584,-0.03209808,0.013126849,-0.019235838,-0.028807739,0.036676947,0.04348772,-0.008455946,-0.020317279,-0.038563713,-0.03476717,-0.014024215,-0.0067302426,0.00076290464,0.02073145,-0.01256312,0.0034168924,0.03334059,-0.0154392915,0.0058300006,-0.050068405,-0.04974627,-0.007857702,-0.024873136,-0.0033622452,-0.031775948,-0.022813797,-0.0017242652,-0.008916133,-0.08467451,0.014587944,0.033386607,-0.06461033,-0.011648497,-0.0035175583,0.010221915,0.022974862,0.024090817,-0.04390189,0.042590357,-0.017245527,0.004998787,-0.0023239471,0.02471207,-0.017188005,0.05770752,0.01550832,-0.015692394,-0.036147732,0.004133059,-0.022422638,0.012804718,0.029083852,-0.021191636,0.04173901,0.00071796443,-0.015738413,0.060698736,-0.0042711156,0.010411743,-0.02144474,-0.019442923,-0.012206474,0.031545855,0.036653936,0.0064138635,0.007472295,0.014679982,-0.04383286,0.008553736,0.027910374,-0.0063735973,-0.0032184366,0.024781099,-0.00029714452,-0.017188005,0.0023814705,0.010946711,0.036032684,0.015968507,-0.028577646,0.008197091,-0.03644685,0.0328804,0.024412949,-0.009600663,0.009514377,-0.000718324,-0.034353,-0.022940349,0.025356334,-0.008743563,-0.014392365,0.0111020245,-0.03844867,0.0042567346,0.0020507106,0.016877377,0.019270353,-0.00548486,0.025402352,0.021456243,0.050436553,0.003511806,0.056280933,-0.014726001,-0.004645018,-0.0031580369,-0.010860425,0.047215242,0.019431418,-0.0022664235,0.038126536,0.04134785,-0.0046335133,0.037758388,0.009917041,-0.003995003,0.00017077272,0.024113826,-0.05016044,-0.0103082005,0.00028060653,-0.007167421,-0.03610171,-0.023055395,0.014772019,0.020708438,-0.020374803,0.0028287151,-0.011314861,0.010066602,0.00986527,-0.021927936,0.012217979,-0.005818496,-0.023412041,-0.008795334,-0.012425063,0.016152583,0.02922191,-0.02731213,0.009715709,-0.0022333476,-0.010158639,0.03021131,0.009876775,0.02178988,-0.013034812,0.009732966,-0.007069631,-0.004762941,0.020179223,-0.0024030418,0.03465212,-0.0023814705,0.008484707,-0.020616401,0.035986666,-0.0033191026,0.010607323,0.00812231,0.039207976,-0.0012259684,0.008737811,-0.0015588852,0.029475011,-0.0028200867,0.01955797,0.013828635,-0.011401146,0.010595818,-0.010129878,0.0151631795,0.026621848,0.014495907,0.04348772,-0.007472295,-0.023906743,0.002106796,-0.034836195,-0.039668165,-0.018188912,0.023860723,0.03442203,-0.018142894,0.012701176,-0.019419914,0.024297902,0.0033881308,0.027887365,0.00051843,0.00075139996,-0.021973955,-0.032995448,-0.0186491,0.015381768,-0.042383272,0.0036412338,-0.022940349,-0.009347559,0.013264906,-0.023020882,-0.002438994,0.05770752,0.03317952,0.0042567346,-0.011205566,0.020650916,0.0015099903,0.00068920274,-0.0052461377,0.036009673,0.020248251,0.0064253686,0.034099896,-0.014403869,-0.030901592,0.032673314,-0.054072034,0.055958804,0.03584861,0.039046913,-0.010486524,0.015013618,-0.017843772,0.008168329,-0.016463209,-0.009537387,0.05756946,0.0049240068,0.0099112885,-0.008421432,0.06350588,0.010193154,-0.011941866,0.05121887,-0.015105655,0.055958804,0.02142173,0.02252618,-0.023124423,0.029106861,-0.0070983926,-0.019592484,-0.014610955,0.0019241591,0.026805924,0.0150711415,0.0051253387,-0.030326359,-0.0027539348,0.011964876,-0.0040410217,0.014070233,0.0028718577,-0.00387708,-0.056879178,0.021387216,0.010325458,-0.043303646,0.013287915,0.020478345,0.059364192,-0.018982736,0.007708141,0.005076444,0.015220703,0.027335139,-0.0034801683,0.045190416,0.019661512,-0.03202905,-0.0150711415,-0.02200847,0.009048438,0.048089597,-0.023538591,0.03697607,0.013414467,0.025977585,0.024182854,-0.020593392,0.014875562,-0.03242021,-0.02544837,0.029382974,-0.0011957686,-0.0024806985,0.006235541,0.007403267,-0.00966969,-0.031269744,0.00014237051,0.004915378,-0.024113826,0.041485906,0.0117117725,-0.009502873,-0.017038444,0.0022980615,-0.023366023,-0.009382074,0.019293362,0.026368745,0.025586426,0.005999695,0.006051466,0.004181954,0.009986069,-0.0009678319,-0.004932635,-0.02326248,-0.015105655,0.015128665,0.0057034492,0.010072354,0.011067511,0.016463209,-0.005467603,-0.029405983,0.02397577,-0.023814704,-0.008576745,0.0018105503,-0.027611252,0.010607323,0.00015225736,-0.0065634246,0.0075355708,-0.0084444415,0.0038166803,-0.025908558,-0.017072957,0.03317952,0.027082035,0.011625487,0.020765962,-0.016394181,-0.014150767,-0.011107776,0.019765055,0.020029662,0.0012302826,0.02436693,-0.026460784,-0.036032684,0.027358148,0.022779282,0.017613677,0.015795937,-0.005162729,0.012839233,0.016083553,-0.03028034,-0.009502873,-0.013414467,0.008967904,-0.000035233108,0.014818039,-0.024804108,-0.038287602,-0.0002973243,-0.014852553,-0.012574624,-0.02839357,0.013368448,-0.0038253088,0.03810353,-0.03584861,-0.016773835,-0.016520733,0.03384679,0.05126489,-0.01897123,0.063045695,-0.002075158,-0.033478644,0.001253292,0.040174372,-0.00023027352,-0.012436568,0.018787157,0.015795937,0.0009563272,0.0037447761,0.01916681,0.004495457,-0.005565393,-0.0055596405,0.03393883,-0.0037390236,0.0008053282,0.025195267,-0.012102932,-0.012942774,0.0092382645,0.035273373,-0.014829543,-0.026276708,0.03359369,-0.0007204811,-0.013437476,-0.047721446,-0.03511231,-0.008898877,-0.027795328,-0.02291734,0.0065001487,0.0022189668,0.017314555,-0.0017228271,-0.000103901715,-0.0021326817,-0.023860723,-0.016670294,-0.025931567,0.0068913084,0.01199939,-0.007316982,-0.014150767,0.009019676,-0.01700393,0.01126309,0.026736896,0.025793511,-0.023860723,0.0045529804,-0.04498333,0.015048132,0.06677321,-0.014438384,-0.017705716,0.04247531,-0.0071616685,0.021582795,0.024090817,-0.017245527,-0.0027970774,0.00009073424,0.009980317,0.00488374,-0.017314555,-0.0037907949,0.027841346,-0.018499538,0.0029221908,0.030326359,0.058627892,0.022951853,-0.0029265052,0.029636078,0.016060544,-0.007817436,0.02066242,-0.010055098,-0.019097783,0.009088703,0.022963358,-0.0013431724,-0.009405083,0.0034025116,0.021536777,-0.04095669,0.006534663,0.019212829,-0.02083499,-0.0039461083,-0.004141688,0.03584861,-0.006465635,-0.008277623,-0.0016868749,0.0134834945,0.015807442,0.0011066073,-0.04502935,-0.013736598,-0.012816222,-0.0019083401,0.041531924,0.03428397,0.029452002,0.005746592,-0.003577958,-0.019316372,0.013897664,0.0075930944,-0.010319705,-0.028623665,-0.022641227,-0.012287007,-0.013782617,-0.032328174,-0.004739932,-0.019327877,-0.021237655,-0.013149858,0.0076621226,0.025149249,0.029475011,-0.0005777511,0.006597939,0.0035376917,0.012459577,0.028347552,0.0043919147,-0.0068913084,0.010572809,0.0025784883,0.010164392,-0.00538707,-0.011130786,0.017820762,-0.0008959276,0.009405083,-0.013333933,0.00011279988,0.01933938,0.012263997,0.006632453,0.007334239,0.0047773216,0.01442688,0.0077369027,0.0127817085,-0.018292455,0.012655157,-0.0016235991,0.004328639,-0.01548531,0.01290826,0.003391007,0.008973657,0.018488035,0.008450193,0.013448981,-0.003109142,-0.031660903,-0.025264295,-0.011539202,-0.03720616,0.0091462275,0.005729335,-0.0028474103,0.03023432,0.0053669373,-0.006137751,-0.007932482,0.003008476,-0.02198546,0.038356632,0.003391007,-0.01072237,-0.008783829,-0.0009707081,0.01364456,-0.018764148,-0.016313648,-0.029083852,-0.02178988,0.025517398,0.0050217966,0.009571901,0.005936419,-0.020708438,-0.015657881,-0.024850126,0.0075125615,0.03442203,-0.023296993,0.0012719871,-0.028508618,-0.015519825,0.00327596,-0.02547138,-0.0027136684,0.0045587327,-0.017061453,-0.0068452894,0.004578866,-0.00849046,0.019132297,-0.02878473,-0.027381158,-0.040634558,-0.03953011,0.005027549,0.0094223395,-0.009928546,0.0203633,0.009853765,-0.005059187,0.036999077,-0.013448981,0.021306682,0.042222206,-0.002139872,0.004877988,-0.015048132,-0.009755976,-0.0054791076,-0.029452002,0.020512858,0.029336955,0.008714802,-0.004630637,0.022974862,-0.02659884,0.03094761,0.02142173,0.006782014,-0.012701176,0.011815315,-0.01172903,-0.02044383,0.017475622,-0.0075930944,-0.01045201,0.00976748,0.018706623,-0.027358148,0.02265273,-0.029244918,0.036838014,-0.03766635,0.017487125,0.001471162,-0.00026298998,-0.020823486,0.0125055965,-0.0023670895,-0.03536541,-0.009082952,0.018752642,0.005433089,0.031775948,-0.052277304,-0.0132073825,0.044131983,-0.007270963,0.017625183,-0.0066957287,-0.013817131,0.0021355578,-0.00976748,0.0019802444,-0.038908854,0.025678465,-0.006592186,0.016520733,-0.06520858,-0.005067815,-0.005930667,0.0029682096,0.028094448,-0.020351794,0.02915288,0.008893124,-0.032995448,0.00360672,0.014139262,0.030326359,0.023043891,0.019235838,0.0022175286,-0.003109142,-0.012816222,-0.009801994,-0.0014402432,-0.003911594,0.003408264,-0.03545745,0.006770509,0.011665754,-0.013863149,0.031223724,0.014185281,0.000026065309,-0.0008793896,-0.006270055,0.029198898,-0.015749918,-0.016451703,0.028094448,0.0067474996,-0.042981517,-0.032374192,0.024067808,0.009353312,-0.023181947,-0.018580072,0.009215255,0.016451703,0.011182557,0.013402962,-0.013759607,0.027634261,0.037390236,0.008927638,0.0029221908,0.011792306,0.0059421714,0.023906743,0.029060842,0.030878583,-0.008369661,-0.009180741,0.002909248,-0.022997871,0.013610046,0.0047600647,0.009082952,-0.025586426,0.009704204,-0.019719036,0.010250677,0.014818039,-0.030533442,-0.013161363,-0.03621676,-0.020041168,-0.02053587,0.022790788,0.012459577,-0.023423545,-0.01992612,-0.0077771693,0.005930667,0.00061945553,0.0059939427,0.015738413,-0.019765055,0.01438086,-0.004564485,-0.010210411,-0.0062988168,0.046386905,-0.025908558,-0.029336955,0.0008959276,0.020593392,0.021835899,0.0091462275,0.0066669667,-0.033754755,-0.03172993,0.02103057,0.056234915,-0.019258847,0.02063941,0.0037534046,-0.022848312,-0.02471207,-0.06580681,-0.0023483946,-0.05089674,0.022261571,-0.041554935,-0.017061453,-0.009364816,-0.027818337,-0.021824393,0.013322429,-0.040427476,0.004475324,0.019178316,-0.01384014]},{"id":"guide-permissions-0","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Overview\nUse member.permissions for guild-level checks (roles only) and member.permissionsIn(channel) for channel-specific permissions (includes overwrites). The server owner always has all permissions.","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[0.027688835,0.03430496,0.069175,0.03124412,-0.0030520114,0.013479471,-0.02841873,-0.0025296083,-0.021755513,0.0130674355,0.043063674,0.010189068,0.011101434,-0.0018482768,0.005588977,0.0009020651,-0.010118433,0.0020984418,0.01719957,0.05217556,0.030137507,0.024816355,-0.025098894,0.051280852,-0.11433417,-0.039743837,0.023803921,0.06258242,-0.01304389,-0.002254427,0.037295166,-0.01548079,0.006551376,-0.009724055,-0.04442928,0.0015068754,0.023544928,-0.015009891,-0.0038878561,-0.028607087,-0.0104833795,0.023062257,-0.022367682,-0.01601055,-0.011925506,0.01020084,-0.04428801,0.028677722,-0.002876896,-0.025663972,-0.009023594,0.022002736,-0.00042675182,0.06804484,0.021637788,0.025357887,-0.03840178,-0.0006507965,-0.037153896,0.027076667,-0.02107271,0.0050150696,-0.0017408531,0.0017923577,0.026629314,-0.0012780481,-0.07967604,0.03611792,0.04563007,0.042828225,0.01963647,-0.01872999,-0.008841121,-0.029595975,-0.009417972,-0.0034434458,0.024533816,0.062441148,0.00835845,0.003093215,-0.01390328,0.023132892,-0.041439075,0.015115844,0.009818235,0.04619515,0.016610947,0.011807782,0.020672446,-0.056743275,-0.009200181,-0.031620838,-0.0464306,-0.022367682,0.029619519,-0.06456019,0.03661236,0.016728671,-0.011142638,0.066632144,0.057308353,-0.012596536,-0.084808834,-0.04819647,0.0410859,0.02823037,-0.034611043,0.05919195,-0.038919766,-0.040567912,-0.07261256,0.028442273,0.011713602,0.029030897,-0.008605671,-0.007234179,0.0394613,-0.033527978,0.052505188,-0.0024148268,-0.04099172,-0.0065042865,0.017423246,-0.01682285,-0.016681582,-0.03687136,-0.015056982,-0.030443592,-0.024369001,-0.02775947,0.032539092,-0.023521382,0.040497277,-0.062629506,-0.035034854,0.011236817,0.010071343,-0.02202628,-0.034917127,-0.022614904,0.0040202965,0.025663972,0.02073131,0.016622718,-0.05528349,0.005026842,-0.044711817,-0.026747039,-0.020884352,0.035011306,-0.07491996,-0.0049061743,-0.0053123245,-0.01634018,-0.038284052,-0.0070046163,-0.0052446327,-0.027006032,-0.03649464,0.0038495958,-0.008823462,-0.0023795094,-0.026747039,-0.02374506,-0.027170846,-0.06380676,0.009229612,-0.0012721618,-0.017364385,0.03969675,-0.011695943,0.022038052,-0.0015274772,-0.032798085,0.040591456,-0.016246,-0.012985027,-0.019165572,-0.0071870894,-0.01782351,0.020943213,-0.011289793,0.0020086768,-0.040968176,-0.04252214,0.048149377,0.0052358033,-0.015092299,-0.022226412,-0.0032609724,0.020331046,0.0044705933,0.013149843,0.0033639816,0.039885107,-0.02794783,-0.0046530664,0.014962802,0.012584764,-0.052505188,-0.0030755561,0.0049856384,0.07360145,-0.000018003593,-0.036282733,-0.016210683,0.0067103044,-0.01290262,-0.057826344,-0.005962753,-0.00550657,-0.012820213,0.011383973,0.0003785583,-0.033080623,-0.013985687,-0.04409965,-0.005868573,-0.04080336,-0.0030578976,-0.017552745,-0.0037642454,0.0058303126,0.006386562,0.00545948,0.012266908,0.040356006,-0.003325721,0.029384071,-0.0045853746,-0.0033110054,0.032468457,-0.020366363,-0.04763139,0.007864006,-0.019954326,0.012855531,0.03875495,-0.0034140146,-0.034140147,-0.0297137,0.021143345,-0.014574311,0.022155777,0.0015201194,-0.043063674,0.02068422,0.0013979801,0.009629875,0.029619519,0.06394803,0.032303642,-0.0027841877,-0.0038201646,-0.0146214,-0.023403658,0.024439635,0.04122717,0.0050032972,0.012808441,-0.014103412,0.03435205,-0.029902058,-0.02388633,-0.04586552,0.011113206,0.015657376,-0.0033463228,-0.0036170895,-0.010453948,0.01290262,0.015928144,0.04739594,-0.046854407,-0.030584862,0.01452722,0.061828982,-0.003599431,-0.03105576,-0.047042765,-0.033857606,-0.00045655086,-0.003581772,0.022862125,0.017929463,0.03355152,-0.008199521,-0.0146920355,0.013773783,0.009300247,-0.018047187,0.011113206,0.016610947,0.057167087,0.00776394,0.030113963,0.0320211,-0.018953668,0.0170583,0.053964976,0.0033610384,0.060510464,-0.015739784,0.0004977545,0.045041446,0.00033202028,0.019389248,0.0025119495,-0.011454607,-0.020801945,0.0334338,0.024675084,-0.007034047,0.0076756463,-0.04939726,-0.0037907334,-0.0019380419,0.006351244,0.05278773,0.03602374,0.010277361,-0.0018762364,-0.04678377,-0.03225655,0.009682852,-0.020601813,-0.006415993,0.003555284,0.05857978,0.011172068,0.034375597,-0.016104732,-0.0030284664,0.034375597,-0.02427482,0.03277454,0.008941187,0.10472784,-0.0040379553,-0.016999438,0.031267665,-0.003525853,-0.04796102,0.012078548,-0.00879403,-0.021202208,-0.040026378,0.03863723,0.03187983,0.061216813,0.0012169784,-0.006321813,-0.06253533,-0.086504065,-0.029595975,-0.009447402,0.06521945,-0.008058252,-0.008505605,0.018565176,-0.0072047478,-0.02168488,-0.008040593,0.0019895465,0.03282163,0.018270865,-0.03244491,0.018035416,-0.0033021763,-0.009600445,0.023450749,0.0022853296,-0.041650977,0.008452629,0.0045059104,0.026582224,-0.010406858,0.018753536,-0.04840837,0.01182544,0.006945754,0.027006032,0.03487004,-0.044594094,0.021284616,0.018706445,-0.0104833795,0.017811738,-0.018765308,-0.03745998,-0.0072165206,0.044923723,0.04122717,0.01562206,-0.031456023,0.0032874607,0.050621595,0.07341309,0.015504335,-0.035129033,0.02232059,0.036000196,-0.021178663,0.007740395,-0.04687795,-0.0034817061,-0.044711817,0.012408177,0.0061923163,0.0010197897,0.032421365,0.045041446,0.026888307,-0.012773124,0.088010944,-0.049821068,0.039437756,-0.032892264,0.011354541,0.004823767,0.024722174,-0.0043322667,-0.03826051,0.0043558115,0.060745914,-0.031314753,0.021002077,-0.010854212,0.030467138,-0.036894903,-0.044358645,0.013173387,-0.030090418,0.0083761085,-0.016552085,-0.011407518,0.03164438,-0.053117357,-0.024157096,-0.0015436644,0.0025884705,-0.041344892,-0.017623378,-0.005933322,-0.006645556,-0.021943873,-0.004891459,-0.07247129,0.0058921184,-0.012714261,-0.0055683753,0.007975845,0.017646924,0.019059619,-0.03263327,-0.009553354,0.004414674,0.07619139,-0.06649087,0.012337542,-0.03955548,0.025051804,0.042734046,0.058203064,-0.05217556,0.0048885155,-0.038354687,-0.0107659185,-0.008329018,-0.01719957,0.018635811,0.0401441,0.01891835,-0.020884352,-0.005073932,-0.008452629,-0.03649464,-0.009412085,0.021355249,0.0012824629,0.021355249,-0.006268837,-0.0063747894,-0.022850353,-0.00016196335,0.04716049,0.06672633,0.028065555,-0.021390567,-0.0033316072,-0.051422123,0.0018571062,0.00087852014,-0.010636421,-0.020048507,-0.05316445,0.034516864,-0.056790367,0.033692792,0.027547566,0.012890848,-0.014680263,-0.030514227,0.015657376,-0.006286496,0.012690716,-0.039885107,-0.038566593,0.009935959,0.028324548,-0.056696188,0.017458564,-0.02097853,-0.008034707,-0.007793371,-0.040403098,-0.027476931,0.01820023,-0.008417312,-0.0034199008,0.005609579,0.049208898,0.0052122585,-0.012726034,0.0045294557,0.029548885,0.017211342,0.004190997,0.003572943,-0.011695943,0.0146920355,-0.04438219,0.0017320238,0.022391226,-0.0043263803,-0.0036759519,-0.008075911,0.026158415,0.012620081,-0.033009987,-0.0043675844,0.021967418,-0.02422773,0.0029180995,0.006003957,-0.025169527,-0.017305521,-0.008458516,0.021049166,-0.0053476417,0.012690716,-0.04986816,-0.018212002,-0.0020631242,-0.025145983,0.023756832,-0.030490682,-0.03731871,-0.013726693,-0.0037200986,-0.0011139694,-0.019471655,0.0040379553,-0.005488911,-0.022367682,-0.024486724,-0.010283248,0.03439914,0.02780656,-0.044405736,0.01034211,0.05175175,0.00388197,-0.00029835838,0.010913074,0.0057155313,0.0004024711,0.035223212,-0.0013891507,0.007510832,0.006727963,-0.05307027,0.035388026,0.010406858,0.0008947073,-0.04892636,-0.028913172,0.044994358,-0.01110732,0.024298366,0.018529858,0.01223159,-0.0016967064,0.0056802137,-0.00456183,0.03258618,-0.017211342,0.027665291,-0.023756832,-0.038495958,0.0010764446,0.015351293,-0.021626016,0.030066874,-0.0107718045,-0.014939257,0.019036075,0.022438316,-0.014350634,0.028607087,0.00984178,-0.04935017,-0.033174805,0.000053619893,-0.026558679,0.014103412,0.016410815,0.019106708,0.013620741,0.02393342,0.019247979,0.007051706,0.01629309,0.013208705,-0.023921646,0.0076462156,0.013608969,-0.025051804,-0.014833305,-0.03837823,0.017717559,-0.028348094,0.054153334,-0.013820873,-0.019554062,-0.035223212,0.009100115,0.0028371639,0.02107271,-0.014009233,0.02794783,-0.018953668,0.009847666,-0.05161048,-0.018659355,-0.042027697,-0.0022647278,-0.010347996,-0.006722077,-0.029384071,-0.015421928,0.0077698263,-0.014633173,-0.012478812,0.013173387,-0.024110006,-0.010501038,0.022344137,-0.026299685,0.00092340267,-0.025357887,0.00835845,0.0074990597,0.0052475757,0.0051887133,-0.03258618,-0.053446986,-0.002803318,-0.04275759,0.0022676708,-0.01566915,0.032303642,-0.015233569,0.030749677,0.013915053,-0.017458564,-0.0011397217,-0.03788379,0.0099124145,0.03889622,0.019554062,0.0029445875,0.0066337837,-0.016940575,0.0010889529,-0.009476834,0.016399043,0.0128790755,0.007110568,-0.047325306,-0.0019365703,0.034187235,0.0019100823,-0.028654177,-0.0011227988,0.035741203,0.04313431,-0.011854871,0.02432191,-0.038495958,-0.0038731406,0.023427203,-0.003681838,-0.035505753,-0.002410412,0.0071694306,-0.003681838,0.0341166,-0.01223159,-0.033480886,-0.03555284,0.043511026,-0.038213417,-0.000118552394,0.031715017,-0.009264929,-0.034917127,-0.015445473,0.04840837,0.0031873947,0.02068422,0.012219817,0.008270156,0.026605768,-0.031173484,0.004329324,0.014056322,0.033692792,-0.006898664,0.004614806,-0.03541157,0.0038466526,0.026888307,0.011207386,-0.00015377782,0.017329067,0.0065925797,0.04897345,-0.06178189,-0.005324097,0.000072152325,0.019389248,0.00095062645,-0.023909874,-0.01791769,-0.013526561,-0.022909215,0.014115185,-0.016658036,0.059851207,-0.004838483,0.00785812,-0.019318614,0.011454607,0.012667172,-0.011901961,-0.04490018,-0.01954229,-0.020119142,0.028489362,0.022332365,0.0471134,-0.00044367474,0.0040526707,-0.03531739,-0.005300552,-0.01872999,-0.024098234,0.0061511123,0.0015201194,-0.03096158,0.0061452263,0.051563393,0.014491904,0.024051145,-0.0007100267,-0.023015168,-0.045559436,-0.0031373617,-0.045300443,0.023285935,0.016975893,-0.003631805,0.0025752266,-0.008429084,0.004820824,0.013550106,-0.024816355,-0.02398051,-0.026535135,-0.048361283,0.007975845,-0.018553404,0.041486163,-0.045276895,0.0018011869,-0.011148524,-0.07557922,-0.012690716,0.027783016,-0.022191094,-0.018930122,-0.0136442855,0.02818328,0.041391984,0.012773124,-0.019895464,0.008340791,-0.04925599,0.009541582,0.013020345,0.057826344,-0.005683157,-0.004673668,0.004670725,0.029784335,0.00781103,0.033080623,-0.022767946,-0.03760125,0.002653219,0.03357507,-0.0076756463,0.011507584,-0.017305521,0.02608778,-0.009924187,-0.003093215,0.057025816,0.02202628,0.02044877,-0.01605764,0.011425177,0.011831326,-0.0057155313,-0.0009712283,-0.03541157,-0.005377073,-0.012584764,-0.031361844,-0.029266346,0.0033286642,-0.023968738,-0.016246,0.010141978,0.024369001,0.0029372298,-0.005171055,-0.0129968,0.051233765,0.023627335,-0.000030741765,-0.012961483,0.0055624894,0.037436437,-0.009935959,0.014021005,0.03449332,-0.022638448,0.033598613,-0.015810419,-0.01385619,0.0031020443,0.011330997,-0.03388115,-0.02823037,0.027665291,0.0107659185,0.029737243,0.033904698,0.031032216,-0.008823462,0.019165572,-0.004441162,-0.021425884,-0.047937475,0.00025292404,-0.022673765,0.037483525,0.022650221,0.023803921,0.041274257,0.02604069,-0.04247505,-0.030113963,-0.042074785,-0.05528349,0.06140517,-0.007911095,-0.010471607,-0.011495811,0.011054344,-0.0012169784,-0.01141929,-0.020095596,0.0120137995,-0.004776677,0.0039378894,0.0082819285,0.01557497,-0.03710681,0.0035523411,0.007964072,-0.006121681,-0.010218499,0.01595169,0.0035140805,-0.020001417,0.011766578,-0.032750994,-0.009094228,-0.04972689,-0.013938597,0.020695992,0.02804201,0.044499915,0.0048620277,-0.0061805435,-0.013797328,-0.024580905,-0.030655496,0.044005472,0.030796766,0.009329678,0.0154572455,-0.012049117,0.015374838,-0.020625357,0.026252594,0.025452068,-0.009017708,-0.011990255,-0.038660772,0.062629506,0.016399043,-0.03430496,-0.0087587135,0.0052475757,0.03164438,0.0144094955,0.06818611,-0.017788192,0.024957623,0.009476834,0.014338861,0.029807879,0.012949711,0.010960164,-0.038872678,-0.00088219903,-0.0036494639,-0.023486067,0.022650221,0.01901253,0.06380676,-0.0012029987,-0.017117163,-0.015963461,0.008841121,0.009088342,0.023285935,-0.021484748,0.027076667,0.015009891,-0.010907188,0.009364995,0.017364385,0.008440857,-0.026605768,-0.0034934788,0.027641745,0.0014590498,0.03708326,0.029831424,-0.0044558775,-0.0318092,0.033457343,0.023438975,0.0030461252,-0.051327944,-0.0029136848,0.044853088,-0.013302884,-0.0036465207,-0.025357887,0.011130865,-0.021531837,-0.020566495,0.023015168,0.022779718,-0.009264929,-0.026440954,-0.04452346,0.0051445668,-0.012714261,-0.0016981779,-0.025687516,0.0101949535,0.03889622,0.011354541,0.011684171,-0.013962142,-0.0066632144,-0.0077757123,-0.015786875,0.0055683753,0.047654934,0.040567912,-0.010094888,0.017493881,-0.0011669454,0.01701121,-0.0099124145,0.020660674,-0.015339521,0.03388115,0.02794783,0.01091896,-0.02174374,0.0073401313,0.004991525,-0.007828688,-0.00613934,-0.019000757,0.0091413185,-0.013126297,0.005789109,0.03917876,-0.003009336,-0.015009891,-0.008852893,0.004941492,-0.019601153,0.029077986,0.029266346,-0.02283858,0.031267665,0.016905257,0.023533156,-0.035953104,-0.027618201,-0.009235498,-0.014727352,0.03684781,0.022873897,-0.023391886,-0.00209697,-0.008841121,0.0058509144,0.006262951,-0.014515448,0.027123757,0.01571624,-0.009353222,0.031032216,0.006033388,-0.0013199876,0.004558887,-0.005636067,-0.015857508,0.0101007745,0.003728928,0.032162372,0.013385291,0.019754194,0.047937475,-0.031456023,0.03616501,-0.0036112033,-0.020707764,0.012890848,-0.049679797,-0.0320211,-0.008464402,0.022002736,-0.010665853,0.025216619,-0.033692792,0.008764599,-0.015798647,0.033009987,-0.037977967,0.0008961788,0.019601153,-0.013408837,-0.020590039,-0.011431063,0.007864006,0.022532497,0.018047187,-0.022438316,0.015433701,-0.017894145,-0.00821718,0.011448721,-0.014350634,-0.0028092042,-0.025711061,0.0023397773,-0.034375597,-0.016646264,0.014150502,-0.009229612,-0.0050857044,0.02432191,0.021755513,0.0010146393,0.011907848,0.010059571,0.01070117,-0.0028150904,0.013867962,-0.007098796,-0.0050003543,-0.0010506924,0.02179083,-0.0006747093,0.009406199,-0.008817576,0.03616501,0.019671787,-0.0194952,-0.035223212,0.013809101,0.007063478,-0.009700511,-0.036706544,0.0006206296,0.008511491,-0.024204185,-0.05518931,-0.026676403,-0.012208045,0.008817576,-0.008876438,0.013432382,-0.034516864,-0.0119196195,-0.0033110054,0.032091737,0.03402242,0.044264466,0.032750994,0.020766627,-0.03661236,-0.018223774,0.01395037,0.060180835,0.014456586,-0.017882373,0.018518087,0.046312872,0.025569791,0.017694013,0.026888307,-0.0052917227,0.0334338,-0.016599175,0.002207337,-0.0014274112,0.00388197,0.009082456,0.008370222,-0.0219321,0.0056949295,0.019565836,0.046030335,-0.0019071392,0.00871751,-0.00020914518,0.0035346823,0.006898664,-0.036965538,0.0010690868,-0.041509707,0.009312019,0.03955548,0.001914497,0.0034964217,0.012831986,0.018694673,-0.03932003,0.00352291,0.00984178,0.027500477,0.0133499745,0.014680263,0.014138729,-0.017682241,0.02427482,0.0023927533,-0.016281318,0.01724666,-0.025663972,-0.027877195,-0.037036173,-0.008994162,-0.052269742,0.038213417,0.016446132,-0.0106776245,-0.001078652,0.010907188,0.0013030646,0.012078548,-0.022673765,0.008811689,-0.009376768,0.023721514,-0.017446792,-0.005400618,-0.013479471,0.009288474,0.0133499745,0.003855482,0.016987666,0.008105341,0.010583445,0.035011306,-0.008617444,0.018082505,0.029595975,0.0027488703,0.014821532,-0.035435118,-0.03640046,0.010924847,0.012349315,-0.01629309,0.017187798,0.0074519697,-0.03213883,0.042263146,0.0027841877,-0.041933518,-0.002819505,0.0023530212,0.013102752,0.025734607,-0.011654739,0.025193073,-0.00019792456,-0.000016991897,0.0022661993,-0.0033374936,0.014833305,0.007958186,-0.0037524728,0.0120137995,-0.0024162983,0.005736133,0.010954278,-0.0076050116,0.0085703535,0.016811078,0.013526561,-0.008823462,0.0038731406,-0.036282733,-0.0030122793,0.035576385,-0.022391226,-0.0035641135,-0.02465154,-0.021802604,0.030019782,-0.00080347067,0.043652296,0.030608406,-0.00034011385,0.031032216,0.008423198,0.022085143,0.003016694,0.01777642,0.011660625,0.010648194,-0.007375449,0.010742374,0.009988936,-0.015892826,-0.023780378,-0.0024118836,0.01051281,-0.022709083,-0.015751557,-0.020366363,-0.039296485,0.023085803,-0.012690716,-0.012349315,-0.00067434146,-0.008417312,-0.021590699,-0.0144094955,0.03105576,-0.0064042206,0.0010036025,0.018129595,0.014385951,-0.015810419,-0.014656718,-0.0167169,0.02841873,-0.03355152,-0.0018129594,-0.0024898762,0.026393864,-0.005450651,-0.014385951,0.028701268,-0.0038731406,-0.0024825183,0.00591272,-0.0097476,0.0033845834,0.020201549,0.01395037,0.0067573944,-0.014315316,-0.010112546,0.017070074,-0.020154458,0.01605764,0.00082775136,-0.032986443,-0.030043328,0.0037377572,-0.02451027,-0.002157304,-0.003375754,0.011095547,-0.01452722,0.012831986,-0.022238184,0.056978725,0.027288571,-0.012160955,-0.012914393,-0.019789511,-0.030349413,0.016351953,-0.012596536,0.038566593,-0.0015539653,-0.01323225,-0.021755513,-0.009600445,-0.043440394,0.024251277,-0.015056982,0.0020322215,-0.02332125,-0.0056772707,0.02374506,0.0054447646,-0.024486724,0.0087587135,0.026699949,0.024533816,0.030867402,0.0037613022,0.021720197,0.034658134,-0.004711929,-0.046948586,0.0150805265,-0.017564517,0.011160295,-0.017117163,-0.051657572,0.007257724,0.00397615,-0.02474572,-0.0113722,0.010448062,-0.021119801,0.004408788,0.014197592,0.008123,-0.017847056,0.00082039356,0.00012968105,-0.039296485,0.005353528,-0.01743502,0.02079017,0.0203075,-0.0045677163,-0.006898664,0.008688078,0.0039408323,0.001015375,0.00010650401,-0.049585618,0.013703148,-0.02580524,0.010495151,0.007964072,-0.016622718,-0.028889626,0.007151772,-0.028465819,0.0038937426,-0.0041762814,0.0054182764,0.03357507,-0.009035367,0.015833965,0.010242044,-0.056931637,0.05278773,0.026535135,-0.025028259,0.017234888,-0.00017585118,-0.022626676,0.0034110714,-0.013432382,0.026723493,0.003143248,-0.02121398,-0.024886988,0.0067044185,0.021414112,0.018341498,-0.018518087,-0.039743837,0.038966857,0.059804115,0.00090795127,0.0095769,0.012561219,-0.015728012,0.019942554,0.0056125224,-0.020601813,0.0059745256,-0.0060569327,-0.010083116,-0.019295068,0.047890384,-0.009465061,0.0048149377,-0.036235645,0.0033080624,-0.015598515,0.014291772,-0.004676611,0.023309479,-0.031173484,-0.005783223,0.0010867455,0.02957243,0.022120459,-0.012502356,-0.0072871554,0.026888307,0.0041733384,-0.01366783,-0.028301004,-0.022544269,-0.0069045504,0.0046324646,0.0005010655,0.0017437963,0.0072224066,0.010318564,-0.0111544095,-0.018977212,-0.0066926456,0.04558298,-0.0056713847,-0.01605764,0.00080641377,0.009894756,0.011931392,-0.007905209,-0.010030139,0.055236403,-0.00014844342,-0.00645131,0.0076344428,-0.016422587,-0.015410155,-0.004614806,-0.009765259,-0.022532497,-0.0024177697,0.009370881,-0.0167169,0.006018672,0.012208045,-0.0005816333,-0.026346775,0.022238184,-0.0049620937,0.037200987,0.026393864,-0.016281318,0.0012692187,0.007787485,-0.00424103,0.039720293,-0.03684781,0.025263708,-0.010830667,0.010889529,-0.007163544,-0.009317906,0.004841426,0.014974575,-0.00035519732,0.03936712,-0.01719957,0.006775053,0.04313431,-0.03684781,-0.00037009685,0.003146191,-0.027406296,0.016563857,0.007640329,0.004058557,-0.004641294,0.030867402,-0.0045059104,-0.031715017,0.034681678,0.0023677368,-0.0051681115,0.00080347067,-0.0051622256,-0.026440954,-0.018859487,0.000033110056]},{"id":"guide-permissions-1","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Guild-level permissions\nmember.permissions returns an object with has(permission). Use it for server-wide actions like ban, kick, manage roles.\n\n```javascript\nimport { Client, Events, PermissionFlags } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nasync function getMemberPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id) ?? await guild.fetchMember(message.author.id);\n return member?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n const perms = await getMemberPerms(message);\n if (!perms) return;\n\n if (perms.has(PermissionFlags.BanMembers)) {\n await message.reply('You can ban members.');\n }\n if (perms.has(PermissionFlags.Administrator)) {\n await message.reply('You have Administrator.');\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.019958302,0.033239994,0.049836144,0.030140137,-0.012518649,0.0032816743,-0.07935631,0.00012006353,0.022879321,0.0061162543,0.015093913,-0.026301084,0.028113307,-0.0067243027,0.006414317,0.011642343,-0.03354998,-0.009126691,0.016548462,0.044041798,0.05408056,0.017144587,-0.01691806,0.024310024,-0.08140698,0.0053859996,0.014545478,0.042825703,-0.010509703,0.0029523147,0.05441439,-0.009538018,-0.0064202785,-0.011636382,-0.021567844,-0.007874826,0.030020911,-0.007433693,-0.026539536,-0.02363044,-0.03788978,-0.033383064,-0.027016437,-0.01989869,0.0070581334,0.024965763,-0.0635232,0.0038509748,-0.03157084,0.033716895,-0.027016437,0.018074544,0.004938905,0.10653966,0.018122233,0.030473968,-0.049979214,0.016453082,-0.036268312,0.024965763,-0.014330872,0.027111817,0.0056512756,0.033025388,-0.0031892748,0.030760108,-0.040035833,0.019529091,0.04211035,0.09976767,0.03591064,0.02169899,0.023201229,-0.037555948,0.0061013508,-0.020625964,0.054843605,0.03762748,-0.005350232,0.0050551496,0.022438187,0.041132703,-0.060232583,0.0077436785,0.010408362,0.030211672,-0.0103070205,-0.03369305,0.0121728955,-0.077162564,-0.018396452,-0.025514198,-0.051076088,-0.0016602112,0.035219133,-0.033788428,0.0016572307,0.0022518665,-0.02353506,0.081836194,0.09704933,-0.0021907636,-0.03960662,-0.043922573,0.036029864,0.033120766,-0.01436664,0.02897173,-0.035552964,-0.00048062668,-0.07964245,0.030950869,0.025347283,0.033239994,0.0056781014,-0.013150542,0.029329406,-0.003597621,0.04664091,-0.017824171,-0.056417376,0.0043934495,0.056608137,-0.0030789915,-0.011946368,-0.03524298,-0.016417313,-0.049693074,-0.029043265,-0.020327901,0.04633092,-0.035338357,0.051171467,-0.05970799,-0.032763094,0.024178876,0.02930556,-0.043827195,-0.023940425,-0.029424787,0.002542478,0.012912092,-0.00073286257,0.01994638,-0.043111842,-0.009138614,-0.029257871,0.0059702033,-0.074778065,0.013639366,-0.055940475,-0.037699018,0.001129659,-0.018503755,-0.024321945,-0.018682593,0.029639391,0.0069746757,-0.030760108,0.015308519,-0.0009903145,-0.018587213,-0.015213138,-0.04432794,-0.01749034,-0.012924015,-0.0025290651,0.006891218,-0.016488848,0.025776494,-0.008733247,-0.0015305538,0.0039403937,-0.049502313,0.032405417,-0.008846512,-0.0039016455,0.020685576,-0.04301646,-0.025585733,0.005043227,-0.02103133,-0.0059851063,-0.045353275,-0.039678156,0.029663237,-0.009526095,0.020947872,-0.019409867,0.0050283237,0.012280199,0.0238212,0.011111791,0.0012734744,0.055654336,-0.03691213,0.02906711,0.00039120778,-0.005231007,-0.04206266,-0.012459036,0.0008308508,0.07301353,-0.022867398,-0.0051505296,-0.005284658,-0.005552915,-0.014426253,-0.0015424764,0.0023710916,0.0012466487,0.009573786,0.006432201,0.03700751,-0.014307027,0.003138604,-0.03600602,0.012530571,-0.047427796,0.0010380046,-0.035481427,-0.012482882,0.020757113,0.020697499,0.00524591,0.03676906,0.04745164,0.0027064127,0.0008360669,0.032858472,-0.013400915,0.03397919,-0.04346952,-0.049979214,0.035052218,-0.022998545,0.030354742,0.028852506,0.014032809,-0.013234,0.006825644,-0.0065514264,0.014080499,-6.083514e-7,0.018146079,-0.040059675,-0.0061520217,-0.016488848,0.047427796,0.022140125,0.076304145,0.027827168,0.027517183,-0.001597618,-0.018420298,-0.00831596,-0.017752636,0.04835775,0.01653654,0.0063129757,-0.0057824235,0.053365212,-0.006360666,-0.019231029,-0.029663237,0.014831618,0.019588705,0.009758585,-0.02594341,-0.010390478,0.006891218,0.0028777989,0.026634915,-0.022283195,-0.045472503,0.017466495,0.04788085,0.001384503,-0.03426533,-0.024083495,-0.0034247446,-0.011302551,-0.008339805,0.012435191,0.01002088,0.012578261,-0.0062354794,-0.032643866,0.0025588714,0.030283207,-0.011660228,0.0024068593,0.025490353,0.03180929,0.041657295,0.022867398,0.038009003,-0.018658748,0.044637926,0.0755411,-0.006163944,0.028518675,0.0026318969,-0.024703467,0.0064202785,-0.018158002,0.0022861436,0.0084709525,-0.018932967,-0.041895743,0.047713935,0.04230111,-0.006205673,-0.012697486,-0.048810806,0.0036453113,0.018873353,0.005827133,0.05326983,0.017979164,0.017001517,-0.02632493,-0.019791387,-0.037031356,-0.02343968,-0.042086504,-0.022736251,0.013770513,0.048238527,0.006205673,0.05894495,0.01809839,-0.013222078,0.042491872,0.0033830157,0.032453105,0.010605084,0.08293307,-0.0013904643,-0.0019478421,0.04380335,-0.0016929982,-0.064810835,0.026301084,0.008137122,-0.00567214,-0.00070640945,0.015236984,0.03757979,0.019541014,-0.010926992,0.0113502415,-0.055797406,-0.051839128,-0.034909148,-0.040369663,0.035815258,-0.024214644,0.011773491,-0.00552907,-0.02689721,-0.0024485881,-0.009842043,-0.021615533,0.015463511,0.014485865,-0.033812273,0.0044083525,0.030283207,-0.0050789947,-0.004557384,-0.008953814,-0.018885275,-0.003695982,0.003558873,0.00062257925,-0.030473968,0.0059523196,-0.027207196,0.018169925,0.020220598,0.033025388,-0.0017347271,-0.030569348,0.02353506,-0.0061281766,-0.008464991,-0.003743672,-0.011207171,-0.019529091,0.013198232,0.011141597,0.03614909,0.004196728,-0.024631932,-0.011523118,0.07143976,0.06776762,0.0105275875,-0.023082003,0.022104356,0.040059675,0.025609579,0.016560383,-0.0101162605,-0.048119303,-0.03262002,0.0158808,0.027588718,-0.002783909,0.040011987,0.03824745,0.007076017,-0.015845032,0.072822765,-0.05684659,0.061567906,-0.009192265,0.0063964333,-0.022760095,-0.004900157,0.012292121,-0.015964258,-0.018873353,0.039248943,0.00032786938,0.00723101,-0.045949403,0.006187789,-0.03672137,-0.059755683,0.0016110309,-0.0052250456,0.014104344,-0.011606576,0.0040864446,0.0025439681,-0.03133239,-0.04144269,-0.01824146,0.05140992,-0.02906711,-0.002675116,0.037603635,0.026777986,-0.025752649,0.0062474017,-0.044161025,0.034742232,-0.021853983,0.0054933024,0.018515678,0.012971705,0.0138778165,-0.07124899,-0.005687043,0.016500771,0.064190865,-0.010217601,0.011081985,-0.057561938,0.022199737,0.020661732,0.017132664,-0.00813116,-0.0033859964,-0.0055976245,0.012351734,-0.012649797,0.0016050696,-0.026611071,0.033478443,0.059517235,-0.0042235535,0.010229524,-0.0048196795,-0.0018405394,-0.025609579,0.045877866,0.03946355,0.050885327,0.0141281895,-0.029901687,-0.032238502,0.025776494,0.07387195,0.049120795,0.0041699023,-0.03455147,0.01796724,-0.042849544,0.010074532,0.011505234,-0.011684072,0.0026274258,-0.045138672,0.019743698,-0.050503805,0.017216122,0.01200598,0.02410734,-0.056417376,-0.047928542,0.008679597,-0.04413718,-0.021651302,-0.01332938,-0.046235543,-0.0064500845,0.047237035,-0.025418818,0.037508257,-0.02254549,-0.022426264,0.0036930013,0.008029819,-0.05718042,0.027874857,-0.020244444,-0.023082003,0.024894226,0.055082053,0.02131747,0.0015573795,-0.0075171506,-0.011690034,0.006456046,-0.0018688554,0.00078390585,0.0062116343,0.029663237,-0.01653654,0.040798873,0.008304037,-0.0010424756,-0.0036363695,-0.029043265,-0.00088450214,0.0060059708,-0.039010495,0.008011935,0.03219081,-0.021615533,-0.0022190795,-0.017549952,-0.019374099,-0.0077734846,0.018169925,0.0059970287,0.007976168,0.010146067,-0.014473942,-0.029734772,0.0027913607,-0.0014254866,-0.00652162,-0.02079288,-0.030640883,-0.0065812324,-0.015225061,0.012089438,0.009603592,0.03743672,0.011731762,-0.02584803,-0.027278733,0.010521626,0.0587065,0.0041788444,-0.024071572,0.01569004,0.04883465,-0.011994057,0.03335922,-0.0049836147,-0.007022366,-0.012637874,0.031594686,-0.0030283208,0.031117784,-0.0014217608,-0.05803884,0.04258725,0.05427132,-0.010026841,-0.025132678,-0.02637262,0.03557681,-0.021555921,0.017716868,0.008864395,-0.003979142,-0.020578275,-0.007952322,0.0119523285,0.018754128,-0.0049776533,0.024131186,-0.020995563,-0.0021609573,0.0069746757,-0.025514198,-0.026444156,0.014593167,0.0018733264,-0.029901687,0.03691213,-0.0053472514,-0.020637887,0.020530583,-0.003630408,-0.0054187863,-0.060566414,-0.016143095,-0.025585733,-0.01068258,0.0011028333,0.040321972,0.0050819754,0.041704983,0.030354742,-0.0068971794,0.00931149,0.0138182035,0.01862298,0.009800314,-0.004611036,-0.0050968784,-0.014867386,0.00026993337,0.030783953,-0.039344326,0.039201256,-0.009490328,-0.023034314,-0.0018390492,0.032715403,-0.00723101,0.030473968,-0.036506765,0.039201256,-0.021985132,0.022509722,-0.07272739,-0.0061460603,-0.022473956,-0.018324917,-0.02618186,-0.029925533,-0.03281078,-0.0012198231,0.011052178,-0.032453105,-0.007725795,0.020566352,-0.0048852535,-0.017526109,0.01465278,-0.023654284,-0.0017883783,-0.011177365,0.016715378,-0.014712393,0.011195249,-0.0076244534,-0.015153526,-0.04277801,0.011338319,-0.026301084,0.0026766064,0.01332938,0.04633092,0.0041520186,0.0013219097,0.017931474,-0.028566364,-0.020804802,-0.048572358,0.0138778165,0.024441171,0.0060089515,0.0018569329,-0.015535047,-0.0047570867,0.029973222,0.0086021,-0.0092936065,0.024870383,0.012292121,0.0016780951,-0.008810745,0.018849509,0.018026855,-0.016739221,0.0035350278,0.0053472514,0.03326384,0.018062621,0.030736264,-0.031642374,-0.00013515296,0.012566339,-0.020077528,-0.02103133,0.00045566392,0.011803297,0.020005994,0.032214656,0.011040256,-0.055320505,-0.044733305,0.029782461,-0.045639418,0.0047809314,0.024894226,0.020220598,-0.00978243,-0.043111842,0.035982173,0.000043591725,0.00038822714,0.013985119,0.016393468,0.006456046,-0.032071587,-0.0068792957,0.036459073,0.042468026,0.0011982135,-0.000052207608,-0.015463511,0.017418806,0.01894489,-0.0024396463,-0.016619997,-0.00676007,0.007642337,0.022032822,-0.06771993,-0.027779479,0.0025171426,0.01653654,-0.0010037273,-0.03328768,-0.04067965,-0.01857529,-0.023010468,-0.01352014,-0.021210168,0.054986674,-0.02206859,0.007886749,-0.0060357773,0.0026795869,0.0053859996,-0.033931497,-0.05241141,-0.0070342883,0.005630411,0.049836144,0.010533549,0.060137205,0.013114775,-0.006748148,-0.013448605,0.01171984,-0.023332376,-0.02603879,0.0023949367,0.0019195261,0.008119238,0.0074396543,0.03266771,0.017502263,0.03951124,0.000019583675,-0.015070069,-0.032238502,-0.0052906196,-0.01304324,0.01431895,0.027421802,0.00050111854,-0.011827142,-0.013639366,-0.025299594,0.012280199,-0.013591676,-0.036125243,-0.032453105,-0.025299594,0.0026661742,-0.016345778,0.04163345,-0.040488888,0.028375603,-0.007815214,-0.071916655,-0.029520165,0.03166622,-0.03431302,-0.013639366,0.004858428,0.03638754,0.04022659,0.0069210245,-0.0119821355,0.01417588,-0.04754702,0.010247408,0.014008964,0.05923109,0.0046020937,-0.0038807811,0.0040059676,0.045210205,0.007874826,-0.01592849,-0.028566364,-0.06423855,0.016143095,0.016286166,0.0067243027,-0.0040298128,0.0029910628,0.024226567,0.0077734846,-0.005698966,0.030688573,0.012554416,0.002803283,-0.0068554506,0.021055175,0.015809266,-0.0066050775,0.0045395005,-0.045472503,0.009239955,-0.004283166,-0.029949376,-0.009740701,0.03416995,-0.010932953,0.0069210245,0.005368116,0.0185276,0.012530571,-0.0041669216,0.0038956841,0.043231066,0.010652774,0.021448618,-0.013400915,-0.029234026,0.05284062,-0.01843222,-0.001569302,0.0011795845,-0.021615533,0.017979164,-0.0049359244,0.004938905,0.012518649,-0.015916567,-0.014783928,-0.0015901665,0.014473942,0.0036900206,0.014032809,0.025800338,0.044733305,0.0061281766,-0.0009746662,0.011803297,-0.023690052,-0.013543986,-0.019159494,-0.03359767,0.054891296,0.03538605,0.019242952,0.04816699,0.0007652769,-0.017418806,-0.0040715416,-0.050503805,-0.01309093,0.07406271,0.0088822795,-0.0032906162,-0.005317445,0.0073383125,-0.012935937,-0.02363044,0.019231029,0.041561913,-0.021949364,-0.009722817,0.0074515766,0.01946948,-0.0053293677,0.017514186,-0.0069448696,0.0013003001,-0.012530571,0.0043547014,-0.019278718,-0.0086319065,0.013257845,-0.013889739,0.0063129757,-0.033573825,0.00029731792,0.046235543,-0.0008248895,0.021424772,-0.021913597,0.018312994,-0.009377064,-0.024214644,-0.0103070205,0.03383612,0.012089438,-0.008304037,0.015129681,-0.031403925,0.014438175,-0.023368144,0.03266771,0.02859021,-0.009025349,-0.0045931516,-0.030974714,0.04797623,0.013365148,-0.015463511,0.028184844,0.011117753,0.019445634,0.0037645365,0.055320505,-0.00043740755,0.017573798,0.025251903,0.029567856,0.016596152,0.013150542,0.009818197,-0.023523137,-0.010140105,0.012780944,-0.02358275,0.037412874,0.0032578292,0.049836144,-0.05732349,0.022008976,0.00040238514,0.02916249,0.0038807811,-0.014915076,-0.042038813,0.028399449,-0.01629809,-0.020959795,-0.009084962,0.026062634,0.02107902,-0.02305816,0.013162465,0.011469467,-0.0010499272,0.022175891,0.026611071,-0.019779464,-0.0008189283,0.040202748,0.021067098,-0.0033204225,-0.036244467,0.0008524604,0.03927279,-0.0067123803,0.006634884,-0.035886794,0.013210155,-0.0055409926,-0.0034485897,0.04687936,0.048047766,0.014795851,0.0025201233,-0.044518698,-0.00019094665,-0.004187786,-0.0291148,-0.028113307,-0.00019970225,0.027970238,-0.019958302,-0.007260816,-0.011117753,-0.020363668,-0.008703441,0.012017903,0.0036810788,0.059135713,0.032643866,0.008333843,-0.0032101392,-0.004381527,0.037651327,-0.020125218,0.016727298,-0.011302551,0.03142777,0.013019395,-0.0038032846,0.0042593214,0.01068258,0.02622955,-0.015177371,-0.0072846613,-0.022712406,-0.013782436,-0.028423294,0.013019395,0.015761575,-0.014271259,-0.017645333,0.0022518665,0.038533594,-0.013889739,0.009192265,0.01446202,-0.011809259,0.008494797,0.033621512,0.03407457,-0.017907629,-0.0013636386,-0.005931455,-0.009323413,0.020554429,0.04361259,-0.025919564,-0.006059622,0.009347258,0.0066706515,-0.0025722843,-0.021567844,0.032214656,0.013687056,-0.005138607,0.017943397,0.02259318,-0.015761575,-0.015535047,0.009538018,-0.043231066,-0.020304056,0.0073085064,0.016965749,0.01994638,-0.02103133,0.040345818,-0.012220586,0.018146079,-0.007314468,-0.002518633,-0.0016512694,-0.020447126,-0.035696033,-0.022199737,0.04022659,-0.00850672,0.011785413,-0.03445609,-0.0076542594,-0.018742206,0.03593448,-0.037079044,0.00931149,0.008423262,-0.031117784,-0.01691806,0.014628936,0.021746682,0.006575271,0.036888286,-0.026730295,0.003114759,-0.007302545,-0.012375578,0.003728769,-0.0040089483,0.008715364,-0.011338319,-0.0012541004,-0.032786936,-0.01640539,-0.01313862,0.00401789,0.0054098447,0.019457556,0.012697486,0.01352014,0.0070581334,0.006980637,0.01833684,-0.014903153,0.02268856,0.009031311,-0.008685558,-0.009090924,0.016882293,0.010605084,0.006956792,-0.027397957,-0.0009485857,0.015320442,-0.00656931,0.001649779,0.0019016423,0.0064202785,-0.003976161,-0.04075118,0.034384556,-0.00609539,-0.025013452,-0.038128227,-0.038748197,-0.031117784,-0.0017362174,0.011827142,0.03719827,-0.0172042,-0.01484354,-0.0016378566,-0.0012295102,0.01763341,-0.0039552967,0.014378563,0.027898703,-0.037555948,-0.0037228076,0.0068077603,0.06619385,0.0070700557,-0.020017916,0.011111791,0.05241141,0.029925533,0.016155018,0.0049240016,0.014879309,0.017526109,-0.030593192,-0.0035618537,0.03238157,-0.018837586,0.022712406,0.0039821225,-0.04380335,0.019874845,0.02448886,0.026348775,0.0013032807,0.008971699,0.01053951,0.009001505,-0.001994042,-0.032166965,0.0034247446,-0.024536552,0.027803322,0.0012906131,0.013114775,0.0286379,0.01158273,-0.013448605,-0.027660253,0.01762149,0.030974714,0.011624459,0.039725844,-0.0009679598,0.0046944935,-0.020029837,0.030664729,-0.007505228,0.009937422,0.020637887,-0.027994083,-0.019839078,-0.04423256,-0.023737742,-0.05274524,0.048000075,0.009985113,-0.013114775,-0.003961258,0.015415822,0.011320435,0.013758591,-0.018563367,-0.011117753,-0.00774964,0.033478443,-0.029377095,-0.017454574,0.0071356297,0.0017168432,0.007660221,-0.0008092412,-0.0035082023,0.037651327,0.001432193,0.023797356,-0.0037615558,-0.00006529444,0.016798835,0.0008800312,0.011535041,-0.032858472,-0.0040745223,0.011660228,0.0024754137,0.009526095,0.028256379,0.016941905,-0.025800338,0.013997042,0.004560365,-0.045591727,0.005681082,0.01956486,0.011695995,0.018909121,-0.01460509,0.022056667,-0.00879286,0.007594647,-0.01843222,-0.011499273,0.0068792957,0.0012734744,-0.015773498,0.015904645,0.030330898,0.011469467,0.019278718,0.0026766064,-0.010152028,0.024465017,0.019588705,-0.014545478,0.026587225,-0.030807799,-0.013579753,0.0041699023,-0.023117771,-0.008387495,-0.009538018,-0.008441146,0.04630708,-0.027874857,0.03593448,0.04056042,-0.014104344,0.006241441,0.0006143825,0.00803578,0.012625951,-0.017502263,0.012041748,0.019171417,-0.012709409,0.00024348026,-0.0016721338,-0.02107902,-0.040965788,0.0007287642,0.016178863,-0.03662599,-0.030211672,-0.02632493,-0.024941918,0.028280223,0.0067779543,-0.030235518,0.006932947,-0.017025363,-0.015761575,-0.018253382,0.0026169936,0.0001304026,-0.01441433,0.022676637,0.001928468,-0.0027958315,-0.0134366825,0.018253382,0.013448605,-0.006342782,-0.028232533,-0.01980331,0.028375603,0.009001505,-0.0058867456,0.01847991,0.003663195,-0.012494803,0.026587225,-0.0042712437,-0.017561875,0.00898362,0.012864402,0.0050074593,0.00063971785,-0.013687056,0.02064981,-0.028661745,-0.0105872005,0.020566352,-0.024238488,-0.020089451,-0.037174426,-0.024512706,-0.0038271297,0.0049746726,0.014831618,-0.027350267,-0.006408356,-0.01460509,0.02570496,0.032739248,-0.008888241,-0.03354998,-0.005567818,-0.029830152,0.0033025388,-0.033096924,0.040369663,-0.013782436,-0.0008807764,-0.0286379,0.0026825676,-0.038915113,-0.013842049,-0.004199709,-0.017359193,-0.025204213,0.0029597662,0.020125218,0.0031117783,-0.011177365,0.007260816,0.008494797,0.022032822,0.038557436,0.0045007523,0.009609553,0.024047729,0.0111594815,-0.023260841,0.027707942,-0.009365141,0.021377083,-0.029758617,-0.043755658,-0.010652774,0.008047703,-0.023070082,-0.0007816704,-0.002178841,-0.03762748,0.044065643,-0.004470946,-0.0088226665,0.00075596245,-0.0023800335,-0.01431895,-0.025991099,0.0011833104,-0.015868878,0.019743698,0.009371103,-0.002476904,-0.007970206,0.019171417,-0.0009098375,-0.022330886,0.028614054,-0.029257871,-0.014497788,-0.00094933086,0.008685558,-0.02665876,-0.019254874,-0.0057705007,-0.0001918781,-0.020292133,0.008739209,0.0007127433,-0.013174388,0.019874845,0.00040275772,-0.013746669,0.011493312,-0.05365135,0.049788453,0.019397944,0.017776482,0.018122233,-0.014497788,-0.03710289,-0.017609566,0.0008822667,0.008590178,0.029424787,-0.0044441205,-0.033859964,-0.0042563407,-0.017800326,-0.02689721,-0.031499304,-0.04075118,0.02283163,0.053555973,0.0031535071,-0.0053234063,0.04137115,-0.01706113,0.024345791,-0.0011326396,-0.001262297,0.03445609,0.0028941925,-0.01729958,-0.015272751,0.05360366,0.0046050744,0.00406558,-0.010593161,0.011535041,-0.0153323645,-0.016083483,-0.019302564,0.007260816,-0.025919564,-0.0147004705,0.0019955323,0.038009003,0.010086454,-0.024608087,0.018038776,0.007850981,-0.005842036,-0.008244424,-0.023225075,-0.014008964,-0.012083476,0.012119244,-0.008619984,0.013901661,0.015201217,0.03354998,0.022652794,0.018611059,-0.017144587,0.06719534,0.028280223,-0.018980656,-0.011195249,0.0058390554,0.012351734,-0.027731787,0.0055588763,0.018301072,-0.009800314,0.010211641,0.03228619,-0.012459036,0.0060506803,-0.0032161004,-0.013555909,-0.016810756,-0.0016646822,0.0071713976,-0.045877866,0.024727311,0.027469492,0.0028852504,-0.025824184,0.019099882,0.009520134,0.033025388,0.015201217,0.0018688554,-0.013532063,-0.025561888,-0.0049120793,0.04163345,-0.025347283,0.036411382,-0.027231041,-0.016131174,0.0013003001,-0.010366634,0.01417588,0.0048286216,0.008423262,0.010485859,-0.006336821,-0.005818191,0.009478405,-0.036697526,-0.020721344,-0.0148912305,-0.026921056,0.006163944,-0.020876337,0.0027615542,-0.0077734846,0.0019493324,-0.04320722,-0.038438212,0.028447138,-0.00096199854,-0.02126978,0.011523118,-0.0013666191,0.0005335329,-0.024727311,-0.015606582]},{"id":"guide-permissions-2","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Bot's own permissions (guild.members.me)\nUse guild.members.me to get the bot's GuildMember. Returns null if not cached. Use guild.members.fetchMe() to load it. Discord.js parity.\n\n```javascript\n// Check if the bot can ban members in this guild\nconst guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\nconst me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null);\nif (me?.permissions.has(PermissionFlags.BanMembers)) {\n await message.reply('I have Ban Members permission.');\n}\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.0050386516,0.026198637,0.04581234,0.019296212,-0.01526294,0.0026501426,-0.046094548,0.016332991,0.01646234,-0.007819611,0.0033042266,-0.009842127,0.014992488,-0.0047828974,-0.0010090532,-0.008172375,-0.028691504,0.017826362,0.01248786,0.027492106,0.0481641,0.06514382,-0.01726194,0.019837119,-0.046141583,-0.02645733,-0.017320732,0.029984975,-0.02249461,-0.030455327,0.007125841,-0.017908674,-0.029302964,0.010447706,-0.023423556,-0.021883152,0.027703764,-0.015745051,-0.019307971,-0.0025016875,-0.03490016,-0.036687497,-0.028197635,-0.0028191756,-0.011276702,0.0056912657,-0.0047946563,0.010300721,0.0050180736,0.03675805,-0.04943405,0.007778455,-0.006449709,0.07469198,0.011558914,0.0098538855,-0.03243081,-0.00069523987,-0.039415542,0.0059205624,-0.037745792,0.01535701,-0.03805152,0.03579383,0.0072081527,0.018073296,-0.023341244,-0.0064085536,0.008877904,0.04150861,0.027351,0.03499423,0.026151601,-0.03664046,-0.029302964,-0.009230669,0.04607103,0.004847571,-0.0030661107,-0.010024388,0.044354245,0.031325478,-0.04498922,-0.014263441,0.0062321713,0.021165865,-0.007508002,-0.015380528,0.038992226,-0.043319467,-0.019296212,-0.057853363,-0.062980205,0.0054854867,0.05211506,-0.009442328,-0.030761056,-0.013334494,-0.0005758144,0.08188838,0.051080287,-0.00047402718,-0.06599046,-0.03838077,0.04132047,0.012652484,-0.004685887,0.0120763015,-0.0848516,0.024740543,-0.05126843,0.053902403,0.048540384,0.0067436798,-0.020530889,-0.030431809,0.051973954,0.011276702,0.02100124,-0.02913834,-0.057618186,-0.0054796073,0.056959692,-0.047905408,0.00831936,-0.031207891,-0.021036517,-0.0452244,-0.020236919,-0.012723036,0.0062909652,-0.022294711,0.056583412,-0.029326482,-0.018802343,0.0051268428,0.011729416,-0.029585175,-0.02586939,-0.012640725,0.012146855,0.0077490583,0.016003745,0.025610697,-0.06904776,-0.033959452,-0.05126843,-0.03327744,-0.054984212,-0.017109074,-0.049387015,-0.02329421,-0.016967967,-0.028620953,-0.02993794,-0.014686758,-0.021530388,-0.0033689002,-0.053102802,-0.021083552,-0.006332121,-0.042566907,0.007890164,-0.038592424,-0.0034423927,-0.001347854,0.0005592786,-0.005808854,-0.028926682,0.018049778,0.0042449315,0.020072294,0.00040494415,-0.06542604,0.0140988175,-0.00594702,-0.042778563,0.009342377,-0.023870392,-0.030996233,-0.014486859,-0.01318163,0.0013529984,-0.02378808,-0.05728894,0.019190384,0.034265183,0.010412429,-0.02993794,0.011700019,0.021941947,0.034853123,0.014322235,-0.005617773,0.066178605,-0.028268188,0.023635216,-0.00436252,0.007519761,-0.0669782,0.00014064643,0.016603444,0.058935173,-0.009071925,0.0065672975,-0.014157612,0.017461838,-0.043954443,-0.007948958,0.03896871,-0.011141476,-0.04905777,0.025845872,0.007978355,-0.007155238,-0.0342887,-0.07821963,0.0031690001,-0.03918037,0.012969972,-0.05648934,0.01606254,0.038662978,0.04795244,0.007643229,0.0124761015,0.043060776,-0.004103826,-0.028879646,0.054372754,0.018202644,0.0072081527,-0.018367266,-0.038286697,0.021789081,0.009448207,0.03407704,0.05126843,0.015192387,-0.03259543,0.004450711,0.011811729,0.02586939,0.016191887,0.013169871,-0.05531346,0.012593689,-0.018814102,0.02993794,0.019061036,0.038192626,0.05291466,0.04132047,-0.0074550877,-0.019190384,0.013369771,-0.03527644,0.07596193,0.039086297,-0.005314984,-0.018578926,0.049528122,-0.029279446,-0.05686562,-0.037510615,0.008766196,0.00055560394,0.0067613176,0.0125819305,0.0056618685,0.0060969447,0.015803846,0.05103325,-0.038545392,-0.030831609,0.031654727,0.0023164863,0.0048916666,-0.031443067,-0.013122836,-0.013146354,0.022294711,0.00041890773,0.008672125,0.023270693,0.020601442,-0.00011841493,-0.016591687,-0.0006074162,0.02338828,-0.024787579,0.0020827798,0.01228796,0.008942578,0.041908413,0.010688761,0.06552011,-0.031748798,0.06528493,0.04858742,-0.024046773,0.025963461,0.014674999,-0.027115824,0.024317225,-0.0031366635,-0.026598437,0.020566165,-0.057618186,-0.04804651,0.011541275,0.033559654,-0.04607103,0.0041773184,-0.051597673,-0.026716024,-0.0021886092,0.009565795,0.06429719,0.008378155,0.02448185,0.008678004,0.003953901,-0.024528885,-0.007284585,-0.029185375,-0.00802539,0.0019152168,0.04498922,0.008772075,0.04778782,0.028127082,-0.013840123,0.02130697,0.005858829,0.01773229,0.01486314,0.045059774,-0.007743179,-0.014439823,0.030596433,0.021730287,-0.048728522,0.01993119,-0.0060175727,-0.022447575,-0.034735534,0.0342887,0.009142477,0.01832023,-0.010024388,0.013934194,-0.027303966,-0.087062255,-0.023646973,-0.03838077,0.0036452322,0.009465845,0.03139603,-0.0017373647,-0.043437056,0.005676567,-0.0044242535,0.014028264,0.033183374,0.0132874595,-0.024928685,-0.023646973,0.039415542,0.025375519,-0.045341983,-0.014239923,-0.018555408,-0.021730287,0.00931298,0.020425059,-0.025116825,0.022318227,-0.027021753,0.030572915,-0.011247305,-0.009695142,0.030032009,-0.037510615,0.033912417,-0.0100537855,0.003489428,-0.014333994,-0.013663742,0.0021886092,0.021671493,0.048728522,0.009683383,-0.026927684,-0.032266185,0.009395292,0.051174358,0.020566165,-0.015686257,-0.030290704,0.029679244,0.03259543,0.02338828,-0.007619711,-0.010818108,-0.0140988175,-0.030478844,0.026175119,0.022424057,-0.00037113755,0.03172528,0.023258934,0.018861137,-0.061616182,0.06072251,-0.01594495,0.053337976,-0.009377654,0.03327744,-0.0067142826,-0.027398035,-0.03525292,-0.0101067005,-0.018767066,0.023741044,0.009354136,0.022153605,0.002141574,0.050892144,-0.06674302,-0.07342203,-0.00021220984,-0.028315224,-0.010571173,-0.026739541,-0.017109074,0.0001702272,-0.012158613,-0.06185136,0.007854887,0.04113233,-0.0744568,-0.02110707,0.001893169,0.01398123,-0.0062556886,0.036240663,-0.07224615,0.03221915,0.014510375,0.0011538336,-0.025704766,0.03478257,0.029796833,-0.06594343,0.017967466,-0.0038186747,0.043272432,-0.020154607,-0.0059705377,-0.038898155,-0.0013868051,0.022271194,0.019590184,-0.026245672,0.03626418,-0.035770312,0.012193889,-0.00037279114,-0.011253185,-0.0048622694,0.01378133,0.043154847,-0.0011869052,0.004100886,-0.018073296,-0.0016138972,-0.028573917,0.02022516,0.043060776,0.04033273,0.03130196,-0.031090302,-0.009536398,0.033089302,0.027586177,0.061004724,0.018896414,-0.011576552,0.0070435293,-0.05131546,-0.0012655423,-0.015709775,-0.010853385,0.026198637,-0.016097816,0.037980966,-0.064579405,0.022047775,0.02100124,-0.008278205,-0.07008253,-0.033442065,0.029349998,-0.05757115,-0.006461468,-0.024105567,-0.021330487,0.018872896,0.046047512,-0.062980205,0.02238878,-0.031443067,-0.02349411,-0.012064543,0.010871023,-0.044707008,-0.003092568,-0.019648977,0.0016873897,0.038498357,0.045294948,0.012029266,-0.007560917,-0.008113582,-0.015897917,0.012828865,0.014921934,0.0073786555,0.024834614,0.024434814,-0.005629532,0.054937176,0.0063556386,-0.0034512118,-0.04607103,-0.014745552,0.00901313,-0.011852884,-0.048728522,0.023458833,0.006778956,-0.0052679484,0.017191386,-0.019648977,-0.01605078,-0.01953139,0.028080046,0.007560917,-0.003527644,0.0144045465,-0.017391285,-0.0151100755,0.00039098054,-0.035323475,-0.0111708725,0.0067613176,-0.02883261,0.0012971441,-0.0027515623,0.014722034,0.020989481,0.028926682,0.027515624,-0.013710776,-0.008777955,0.0069024237,0.048540384,0.016250681,-0.016497616,0.019707771,0.05272652,-0.019637218,0.0061910152,0.018602444,-0.009395292,0.00545021,0.025681248,-0.04045032,0.0044154343,-0.002231235,-0.033653725,0.02765673,0.014192888,-0.031325478,-0.015627462,-0.02497572,0.03327744,-0.04153213,0.0062792064,-0.016485857,-0.023646973,-0.0068495087,-0.0072551877,0.017967466,0.026010495,-0.025587179,0.01773229,-0.05362019,0.0053238026,0.009448207,-0.0030661107,-0.0023752803,0.017861638,0.011529516,-0.030761056,0.044330727,0.01832023,-0.0016859199,0.00396566,-0.014780829,-0.016180128,-0.017238421,-0.02488165,-0.026316226,-0.012546654,-0.010577053,0.013616706,0.030008493,0.02130697,0.036123075,-0.014533893,0.01318163,0.0009208621,-0.0024296648,-0.0027677307,0.028409293,-0.00052179734,0.008078305,-0.046353243,0.018896414,-0.040473837,0.014874899,-0.02280034,-0.03983886,-0.0076491083,0.02546959,0.039227404,0.044072032,-0.028620953,0.03718137,-0.027351,0.009983232,-0.049998473,-0.007819611,-0.02864447,-0.009989112,-0.002200368,-0.022553405,-0.026222154,-0.027938941,0.009900921,-0.03875705,-0.02873854,0.010788712,-0.013428565,-0.008237049,0.031090302,-0.026316226,-0.009953836,-0.022659233,0.03191342,-0.022282952,0.003151362,-0.022024257,-0.015533392,-0.03139603,0.022318227,-0.016227163,0.011553034,0.0058117937,0.015545151,0.002586939,-0.0031102062,0.046635453,0.00931298,-0.027115824,-0.050656967,-0.012299719,0.025775319,0.0059411405,-0.009689262,-0.0017491236,-0.016368268,0.03666398,0.0127818305,0.053855367,0.019472595,-0.014416305,-0.03816911,-0.0033659604,-0.0031366635,0.030008493,-0.018955206,0.007960717,0.013158113,0.013522635,0.0133932885,0.024740543,-0.06462644,0.0027074667,0.0134873595,0.00048321375,-0.0022385842,-0.00035166202,0.020236919,0.057241905,0.026386777,-0.019601943,-0.031584173,-0.05559567,0.04129695,-0.065331966,0.029114822,0.0042272937,0.003051412,-0.015991986,-0.026998235,0.039979964,0.002120996,0.013334494,0.01646234,-0.009001371,0.017167868,-0.009477603,0.0036158352,0.019249178,0.041343987,-0.014757311,0.010594691,-0.03337151,0.013557912,0.013887159,-0.0013831304,0.0194138,0.0037334233,0.012911177,0.03012608,-0.060064018,-0.037416544,0.009771574,0.028056528,0.003063171,-0.044471834,-0.039697755,-0.008448708,-0.018802343,-0.008960216,0.003795157,0.03450036,-0.0138754,0.007472726,-0.0334891,0.002894138,-0.0034923677,-6.8325136e-7,-0.0046241535,-0.008207652,-0.0003498247,0.05409054,-0.014792588,0.05362019,-0.007995993,0.03915685,-0.021142347,-0.0030896282,-0.03358317,-0.03052588,0.009942077,0.0035335235,-0.0054678484,0.0025516625,0.02457592,-0.011558914,0.046094548,-0.00723755,-0.023364762,-0.019249178,0.015415804,-0.013169871,0.0035041263,0.0354881,0.0071434793,0.0065966942,-0.016238922,-0.024387779,-0.009836247,-0.018496614,-0.029373515,-0.016979726,-0.024552403,-0.0047035255,-0.02725693,0.045530125,-0.026410295,-0.001705028,0.005482547,-0.06984735,-0.02329421,0.023705767,-0.017767567,-0.016180128,0.026104566,0.012605448,0.04698822,-0.01496897,-0.025610697,0.01050062,0.009395292,0.024834614,0.0138754,0.05686562,0.0011913148,-0.007067047,0.014040023,0.04480108,-0.003418875,-0.0057118437,-0.028127082,-0.05253838,-0.0057823965,0.012852383,0.009354136,-0.0054766675,0.0028059469,0.010377153,-0.0061674975,-0.010324238,0.025587179,0.0019901793,0.002360582,-0.028080046,0.010818108,0.009183633,-0.017814603,0.022271194,-0.054043505,-0.007919561,0.00891906,-0.01823792,-0.008883784,-0.007025891,0.025022754,0.0156157045,0.008043028,-0.014674999,-0.029255928,-0.009283584,-0.0035100058,0.06561418,0.027586177,-0.0018108573,-0.027586177,-0.03410056,0.044142585,-0.016579928,0.008578055,0.031701762,-0.012229166,0.022776822,0.008436949,0.025798837,0.01832023,-0.02497572,-0.02883261,0.0038804084,0.032830607,-0.026480848,0.023917427,0.03525292,0.019778324,-0.016591687,0.018085055,-0.02289441,0.002567831,-0.020342747,-0.0031160857,-0.0022547524,0.040191624,0.010841626,0.031207891,0.02022516,-0.0034159354,-0.010118459,0.019355007,-0.020965964,-0.02565773,0.05686562,0.02297672,-0.0098538855,-0.0021356945,-0.009812729,-0.017920433,-0.026433812,-0.014333994,0.058135573,-0.015874399,-0.01675631,-0.005262069,-0.0060969447,-0.025563661,0.02209481,-0.023799838,-0.016956208,-0.019801842,0.003618775,-0.02972628,0.00614398,0.031584173,-0.027421553,-0.024999237,-0.02488165,0.009089563,0.02528145,0.003992117,0.020719029,-0.0015477538,0.018085055,-0.015286458,-0.008419311,-0.013934194,0.0061498596,0.0034953074,-0.01872003,-0.0015139473,-0.0048593297,0.024270192,-0.034947194,0.025352001,0.028479846,-0.021060035,-0.00113987,-0.014580929,0.045177363,-0.00053870067,-0.026480848,0.020260436,0.0057853363,0.017955707,-0.019801842,0.0580415,0.013710776,0.024387779,0.027115824,0.008507501,0.0068024737,0.024646472,0.027186377,-0.04548309,-0.006373277,0.007361017,-0.03431222,0.027421553,0.004538902,0.034335736,-0.043789823,0.028691504,-0.044589423,0.026386777,0.009442328,-0.01893169,-0.05945256,0.028973717,-0.014028264,-0.0144751,-0.025210897,0.031866383,0.025540143,-0.037510615,0.03360669,0.02129521,0.0051415414,0.044636454,0.03687564,-0.03290116,0.0064555886,0.02645733,0.016815104,-0.0116765015,-0.04430721,0.0040950067,0.0334891,-0.016897416,-0.006373277,-0.028080046,0.012934695,-0.0032219149,0.024552403,0.017320732,0.044119067,0.013499117,0.03172528,-0.04597696,0.0028882585,0.0011971942,-0.022576923,-0.011864643,-0.00614398,0.021847876,0.0063791564,-0.009177754,-0.006990615,-0.0123820305,-0.003248372,-0.014051782,-0.014957211,0.0432254,-0.007643229,0.009559915,0.000057783545,-0.0028015373,0.019260937,0.0063967947,-0.010247806,-0.01606254,0.002416436,0.027233412,-0.003201337,0.0124761015,-0.002832404,0.038216144,-0.010018509,0.006855388,-0.020848377,-0.0003498247,-0.02796246,-0.0020210461,0.012158613,-0.01991943,-0.016086057,0.009924439,0.024129085,-0.0033835985,0.02220064,0.026433812,-0.0033130457,-0.009236548,0.030032009,0.015415804,-0.011817608,0.0086427275,-0.013687259,-0.0037892777,0.031748798,0.043460574,-0.0041538007,-0.006549659,0.01635651,0.02140104,0.0025193258,-0.036217146,0.0096539855,-0.0032395532,-0.009171874,0.0050856867,0.015874399,-0.01634475,-0.0125819305,-0.0032954074,-0.03896871,-0.004915184,0.0014764661,0.0214128,0.0111708725,-0.017826362,0.020754306,-0.0073786555,0.02466999,0.001247904,-0.0063086036,0.004380158,-0.025563661,-0.018849378,-0.014510375,0.020154607,-0.002448773,0.020648476,-0.0025237354,-0.04510681,-0.015027763,0.04687063,-0.046047512,-0.00039906474,0.015603946,-0.026880648,-0.006005814,0.018449578,0.014827864,0.012864142,0.032760054,-0.020566165,0.010459465,-0.0153099755,-0.019002242,0.0021533328,0.0073198616,0.021589182,-0.064156085,-0.018755307,-0.03431222,-0.0082840845,0.014910175,-0.0011259064,0.007067047,0.013428565,0.00921303,-0.009577554,0.014322235,0.013463842,0.005667748,-0.022847375,-0.0044918666,0.023964463,0.011094441,-0.021071794,0.01705028,0.0100537855,-0.006731921,-0.020166365,0.002714816,0.022424057,0.0038216144,-0.0072316704,-0.0026736602,0.008889663,0.0006129282,-0.0198136,0.0014500087,-0.012193889,-0.0050592297,-0.015333493,-0.027092306,-0.041696753,0.0032836488,0.0144751,0.029796833,-0.001655053,0.012346754,-0.0061674975,0.0067436798,0.029397033,-0.0054560895,0.027915424,0.046235655,-0.02796246,0.008995492,0.0015374649,0.07224615,0.007055288,-0.0074021732,0.023764562,0.04132047,0.020719029,0.017967466,-0.0050709886,0.008366396,0.0408266,0.0003364123,-0.017567668,0.021118829,-0.008554537,-0.0105065,-0.009371774,-0.04369575,0.027938941,0.034359254,0.02833874,0.0055119437,0.010965094,0.020189883,0.008777955,0.004300786,-0.050798073,0.0144986175,-0.01715611,-0.012558413,0.0012140975,-0.00025795898,0.009630469,-0.008989613,-0.0047623194,-0.036711015,-0.01911983,0.0144045465,-0.00084369484,0.035299957,-0.030619951,0.036123075,0.009695142,0.04687063,0.0151100755,0.004577118,0.0096010715,-0.014827864,-0.007125841,-0.046729524,0.0019975284,-0.034759052,0.0354881,0.019790083,0.0027471527,0.0011237016,0.024046773,-0.003936263,0.037204888,0.008660366,0.007261067,0.009554036,0.053432047,-0.03191342,-0.029984975,0.013322736,-0.015368769,0.0034482721,0.0006478371,0.005391416,0.019801842,-0.012723036,0.01923742,0.0113061,-0.0011545685,0.012170372,-0.0013919496,0.0041949567,-0.036522876,0.0012412898,0.01606254,0.03172528,0.015780328,0.025963461,0.0033865382,-0.01894345,0.023258934,-0.01894345,-0.029843869,0.04254339,0.01726194,-0.0026766,0.017932191,-0.026386777,0.016815104,0.016909175,-0.0065672975,-0.0057529993,-0.005312044,0.015521633,-0.004915184,-0.008242928,0.023940945,0.012064543,-0.031654727,-0.012523136,0.033324476,0.018179126,0.011670622,0.014181129,0.004747621,0.018085055,-0.008772075,-0.017320732,0.014192888,-0.031184373,-0.015568669,-0.010288962,-0.0023752803,0.0091483565,-0.013299218,0.05093918,0.06302724,-0.0137930885,0.006449709,0.0023076672,-0.0014220815,0.0033365632,-0.016403545,0.0020210461,0.005441391,-0.0346885,0.010800471,0.007995993,-0.009407051,-0.018085055,-0.0016697515,0.0071434793,-0.018919932,-0.046259172,-0.026951201,-0.018661236,0.021236418,0.009489362,-0.023846874,0.018308472,-0.028174117,-0.01686214,-0.01942556,0.0053796573,0.013746053,-0.035441063,0.023164863,-0.0038392525,-0.024622956,-0.027139341,-0.011359014,0.011141476,-0.026151601,-0.025210897,-0.017967466,0.026081048,-0.0072904644,-0.010647605,0.007878405,0.033042267,-0.014698517,0.012252684,-0.0027809595,-0.036993228,0.029397033,0.010577053,0.009507,-0.0048416913,-0.011347255,0.029491104,-0.04371927,-0.017085556,0.015592187,-0.05046883,-0.030173115,-0.0135931885,-0.010177253,-0.011288461,-0.039203886,0.015439322,-0.03151362,0.033136338,-0.024058532,0.02626919,0.039674237,-0.020965964,-0.0072551877,-0.00891906,-0.04023866,-0.001774111,-0.023552904,0.038710013,-0.01506304,0.014286959,-0.0072434293,-0.012605448,-0.029914422,-0.023999738,-0.0076373494,0.0016477037,-0.018096814,0.00050709886,0.016897416,-0.020613201,-0.020425059,-0.0073904144,-0.0076726256,0.03141955,0.031160856,0.005132722,-0.011705899,0.023435315,-0.0026486728,-0.014016505,0.028009493,-0.02972628,0.028385775,0.02704527,-0.04270801,-0.030643469,0.006361518,-0.0025516625,-0.03626418,0.017461838,-0.020554407,0.036687497,-0.0074021732,-0.008860266,0.013628465,-0.0038980467,-0.019801842,-0.018696513,-0.000021301366,-0.014921934,-0.00831936,-0.0023664613,-0.014439823,-0.016203646,0.040191624,0.000056084027,0.0057912157,-0.006449709,-0.03835725,-0.015321734,-0.012746554,-0.015580428,-0.0018402543,-0.024058532,-0.008689763,-0.007790214,-0.021777323,0.020189883,-0.016909175,-0.016262438,0.0069200615,-0.012393789,0.0067378003,0.026292708,-0.044565905,0.033559654,0.01120027,0.032054525,0.022294711,0.005817673,-0.033089302,-0.028221153,-0.0014125275,-0.00040641398,0.016133092,-0.0017667618,-0.007261067,0.0002651245,-0.004406615,-0.0050856867,-0.041861378,-0.01635651,0.026175119,0.033841867,-0.00047072,-0.027115824,0.017026762,-0.017873397,0.0111062,0.0016124273,-0.014616205,0.0049298825,-0.01358143,-0.028503364,0.005717723,0.04451887,-0.0013912147,0.037016746,-0.016168369,-0.021718528,-0.014745552,-0.027891906,-0.017308973,0.0071611176,-0.02397622,-0.020989481,-0.008131219,0.02972628,0.055736776,0.0023914487,0.020977722,0.01634475,0.015439322,-0.002259162,-0.03647584,0.0086427275,0.00000903155,0.030996233,0.0017814602,0.012146855,0.004509505,0.03259543,-0.00475644,0.010224288,-0.011323737,0.018896414,0.0066143326,-0.01813209,-0.01060645,-0.009542277,0.02240054,-0.010982731,0.0011310509,0.009924439,-0.012617207,0.014898417,0.021259936,-0.00525031,-0.02100124,0.003607016,-0.027492106,-0.03452388,0.009154236,0.016979726,-0.032760054,0.031584173,0.02011933,0.005035712,-0.024528885,0.017767567,-0.009971474,0.011411929,-0.011958714,-0.008901422,-0.008948457,-0.039674237,-0.007813731,0.030455327,-0.017708773,0.03212508,-0.0028000674,-0.027327484,-0.0036658102,-0.022141846,0.02268275,0.00079518976,0.010800471,0.016227163,0.0034247544,0.0045153843,0.013405047,-0.025399037,-0.02417612,-0.023870392,-0.02297672,-0.005482547,0.01120027,0.0049034255,-3.1578844e-7,0.009742177,-0.04339002,-0.013769571,0.016168369,-0.010918058,-0.003477669,0.0064144325,-0.005235612,0.015745051,-0.021471594,0.008966096]},{"id":"guide-permissions-3","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Editing the bot's guild profile (nickname)\nUse guild.members.me.edit({ nick }) to change the bot's nickname in that guild. Pass nick: null to clear and show the username. Requires Change Nickname permission (or bot has Manage Nicknames). See examples/ping-bot.js for a !setnick command.\n\n```javascript\nconst guild = message.guild ?? await client.guilds.resolve(message.guildId);\nconst me = guild?.members.me ?? (guild ? await guild.members.fetchMe() : null);\nif (me) {\n await me.edit({ nick: 'My Custom Nick' });\n await message.reply('Nickname updated!');\n}\n// Clear nickname (show username)\nawait me.edit({ nick: null });\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.008521699,-0.0115364,0.022136828,0.004108482,-0.025902482,-0.008576116,-0.035001002,0.05028129,-0.016597178,0.010818096,0.035371035,-0.0011033042,0.006165444,-0.0073517337,0.031061212,-0.018109972,-0.03750418,0.012145869,-0.014213715,-0.014126648,-0.0010516081,0.05646306,0.013560711,0.033760294,-0.0017127744,0.011677884,-0.010507919,0.00035337027,0.0015998592,-0.03358616,0.019176543,-0.018632373,0.013060075,0.010371876,-0.03807012,-0.020547852,0.041748706,-0.047321007,0.016706012,0.012287354,-0.07204808,-0.046580933,0.028362129,0.014496683,-0.037460648,0.02631605,-0.022506863,0.032323685,0.04192284,0.04362065,-0.03928906,0.023486368,-0.026359584,0.053894576,0.020787286,0.006214419,0.0061110267,0.0027167676,-0.009969191,0.021451173,-0.056898393,-0.024574708,0.015693856,0.012526789,0.018937109,0.032193083,-0.06577925,0.002675955,0.0011243909,0.016597178,0.0005856627,-0.0173046,-0.03881019,-0.019883964,-0.028601564,0.008505374,-0.019078594,0.010643961,0.013952513,-0.01567209,0.0020923328,-0.013212442,-0.06839126,0.0041193655,-0.007618377,0.047669273,-0.023225166,-0.041465737,0.036067575,-0.07326702,-0.02422644,-0.046014998,-0.050716624,0.002205248,0.06843479,-0.009060427,0.019535696,-0.019981915,0.021026721,0.076749705,0.073441155,-0.004239083,-0.04527493,0.018534424,0.021875625,-0.009566505,-0.013081842,0.047582205,-0.036589976,0.021320572,-0.07766391,0.031735983,0.0349357,-0.0071395077,-0.04294588,-0.009822265,0.030800011,-0.01502997,0.007765303,-0.059989277,-0.041531038,-0.0067313802,0.0696102,-0.042706445,-0.014670818,-0.032410752,-0.028144462,-0.010698378,-0.01842559,-0.012265587,0.0060457266,-0.048801146,0.019339794,-0.014540217,-0.02849273,-0.0077380943,0.029123968,-0.0068946313,-0.018904459,-0.012287354,-0.005134242,-0.030800011,-0.011253431,-0.011906435,-0.061512955,0.012037036,-0.052806236,0.0056648077,-0.050368357,0.041139238,-0.05576652,0.014823185,-0.03228015,-0.047408074,0.00031850938,0.01842559,-0.0022365379,-0.037765384,-0.08506462,-0.024400573,0.011264315,-0.013125376,-0.01957923,-0.013147142,-0.012037036,-0.026555486,0.03669881,-0.0011835693,-0.052675635,0.0021168205,-0.004973712,-0.025053577,0.020700218,-0.04307648,0.013223326,0.017533151,0.0041846656,-0.0036459377,-0.05646306,0.03323789,-0.024030538,-0.0033003897,-0.006796681,-0.042488776,-0.02768736,0.0078795785,0.0089842435,-0.038984325,-0.022506863,-0.052022632,0.009180144,0.011754068,-0.0071395077,-0.04368595,0.012559439,0.0005734189,0.062383626,0.00031867943,0.00034112643,-0.050237756,0.017968487,0.0057518748,0.06669345,-0.009571946,-0.033956196,-0.013114492,0.0076074935,-0.033542626,-0.04762574,0.005006362,0.020558735,-0.040616833,0.02951577,0.02208241,-0.05406871,0.014877602,-0.062035356,0.021113789,-0.057290196,-0.008782901,-0.039985597,0.008369331,0.03386913,-0.0036704252,0.029472236,-0.026577253,0.025097111,0.0032922272,-0.0057192245,0.029385168,0.0019889406,0.015726507,-0.027034355,-0.036132876,-0.015225871,-0.0052349134,0.006736822,0.021690609,-0.014942902,0.034021497,-0.022256544,-0.013495411,0.030495275,0.020068983,0.014028697,-0.053589843,0.0049220156,-0.024661776,0.03933259,0.00112167,0.022702765,0.023508135,0.024748843,-0.034086797,0.017043399,-0.0026419444,-0.014464033,0.057899665,0.025336545,-0.01788142,0.032584887,0.03352086,-0.0230728,-0.028601564,-0.009860356,-0.015323821,-0.014213715,0.02958107,0.0348051,-0.012505022,-0.058465604,0.001333216,-0.025358312,0.007008907,-0.007476893,0.034282696,-0.017685518,0.02496651,-0.026294284,-0.017380783,-0.053459242,0.0010312018,0.026969055,-0.033085525,-0.018349405,0.042227577,-0.047930475,-0.0401815,0.0028922625,-0.015563256,-0.0015250358,0.012592089,0.021331456,-0.00017974609,0.021026721,0.0078414865,0.04253231,-0.0041492945,0.017239299,0.019089477,-0.026881987,0.002541273,0.0018597003,-0.00012303339,0.00086523,-0.004380567,-0.032323685,-0.020907003,-0.0021358666,-0.07614024,0.0200581,0.0231381,-0.0352622,-0.018044671,-0.0173699,-0.03304199,-0.015628556,0.04120454,0.045710262,0.062993094,0.023116333,-0.015323821,-0.0075041014,-0.020341067,-0.046363268,-0.019851314,0.020841703,0.03765655,0.049236484,0.03881019,0.048017543,-0.0348704,0.011677884,0.05720313,0.013571595,0.03611111,-0.019720713,0.046189133,0.0041683405,0.010562336,-0.017250182,0.020482551,-0.015998593,0.0037275632,-0.017924953,-0.027578525,-0.008967918,0.045231394,-0.022615697,0.030016406,0.023747569,0.062470693,0.0059368922,-0.06612752,0.025793647,-0.051674362,-0.0014012372,0.017456967,-0.040965103,0.0200581,-0.010023608,-0.013451877,0.009218236,0.02153824,0.04455662,0.00072306563,-0.015084387,-0.02173414,-0.017837886,0.012450605,-0.010018166,-0.00727555,-0.012581206,0.0031942767,-0.03399973,-0.0014624563,-0.0073299673,0.013255976,-0.03012524,-0.020297533,0.0041710613,-0.0346092,-0.0033548067,-0.027230257,0.012472372,-0.017239299,0.039180227,-0.02099407,-0.015791807,-0.025902482,0.012831524,0.02259393,0.023899937,0.0012237019,-0.031322412,0.02775266,0.027578525,0.02442234,-0.003441874,-0.008630533,0.028318597,0.038548987,-0.009588271,-0.021647075,0.017903186,-0.010012724,-0.015302055,0.03066941,0.02958107,0.0054308143,0.01221117,0.034108564,0.039201993,0.022702765,0.040878035,-0.039637327,0.059553944,-0.049628284,0.02144029,0.018001137,-0.06556158,-0.023856403,0.035371035,-0.044513088,0.03182305,0.019492162,-0.004274454,0.0019263611,0.031235347,-0.04381655,-0.06704172,-0.0134627605,-0.0078088366,-0.018480007,0.027230257,-0.05089076,-0.007618377,-0.00047716888,-0.02503181,-0.008510816,-0.0055722985,0.016608061,-0.015280288,0.049845953,0.02551068,0.019720713,-0.02727379,-0.05685486,0.03358616,0.011862902,-0.024248205,-0.015824458,0.067607656,0.043881852,-0.02079817,0.0037819801,0.0346745,0.03019054,-0.010856187,-0.0150517365,-0.010078025,-0.001022359,0.038548987,0.050020088,-0.033694994,-0.032236617,-0.066214584,0.012069686,-0.01031746,-0.04301118,0.009664455,0.03534927,0.011558167,-0.01903506,-0.033020224,0.0028269622,-0.014279015,-0.010393643,0.025619514,0.03243252,0.034892168,0.03793952,-0.0025439938,0.015965942,0.030299375,0.019143892,0.057028994,-0.005243076,-0.01679308,0.007150391,-0.0049247365,-0.000810813,0.03093061,-0.008135338,0.00083530066,-0.012450605,0.03399973,-0.045144327,0.005893359,0.0049573868,-0.007319084,-0.031801283,-0.046232667,0.032519586,-0.056071255,-0.008489049,-0.011830252,-0.026838453,-0.022876898,0.041770473,-0.07731564,-0.015563256,-0.028993366,-0.04566673,0.020678451,0.0028351247,-0.034543898,0.012962124,-0.00910396,-0.020907003,0.017554918,0.048278745,0.008913501,0.0020297533,0.0054661855,-0.036307007,-0.013223326,-0.034500364,0.007857812,0.031431247,0.025314778,-0.046232667,0.030234074,-0.011808485,-0.055244118,-0.041748706,-0.020177815,0.008369331,-0.018251454,-0.025205946,-0.009822265,-0.010001841,0.004464913,0.02470531,-0.045013726,-0.013353927,-0.008238731,0.047669273,0.00839654,-0.009142052,0.026969055,0.005185938,-0.011830252,0.032149553,-0.023529902,-0.01929626,-0.0038527222,0.020341067,0.02041725,0.025750116,0.016553646,0.011405799,-0.0036296125,0.001647474,-0.0346092,-0.021364106,0.00951753,0.002739895,-0.004146574,-0.03297669,-0.019753363,0.032127786,0.010001841,0.0014502126,0.034369763,0.018436473,-0.020809053,0.04557966,-0.02931987,0.014344316,0.002640584,-0.07731564,0.035980508,-0.020983187,-0.039310824,-0.018229688,-0.028579798,0.013245093,-0.049367085,0.021494707,-0.014681701,-0.002602492,0.04442602,0.025075344,0.0154979555,0.0073299673,0.011939085,0.017729051,-0.043424748,0.004380567,-0.019154776,0.0005611751,-0.043337684,0.03628524,0.00017464449,-0.01903506,0.05015069,-0.0073517337,0.0011400357,0.004633606,0.011688767,-0.0036704252,-0.020841703,0.0002358636,-0.008679508,-0.02686022,-0.0072429,-0.010420851,-0.0047152312,0.010649403,-0.0056702495,0.018055554,0.010758237,0.033150826,-0.0005720585,0.019503046,0.016140075,0.0065300376,-0.0019848594,-0.05842207,0.02252863,-0.04884468,-0.010045375,-0.016967215,-0.019492162,-0.025053577,0.062035356,-0.013451877,0.0074170344,-0.03996383,0.040399164,-0.03234545,0.0081897555,-0.031387713,-0.023747569,-0.027121423,-0.008331239,-0.0030908845,-0.010393643,-0.003983323,-0.02727379,-0.014932019,-0.004864878,-0.04470899,0.018926226,-0.015312938,0.00253175,0.023051033,-0.03210602,0.0028922625,-0.020482551,-0.019361561,-0.02435704,0.020428134,-0.011188131,-0.014692584,-0.056071255,0.0032976689,-0.045884397,0.03874489,-0.017685518,0.025053577,0.03867959,0.022093294,0.021690609,0.01913301,0.018795624,-0.06395084,-0.015508839,0.012134986,0.020515202,-0.009414137,-0.016238026,-0.0068891896,0.03197542,-0.007602052,0.014834069,0.009310746,-0.010665728,-0.039854996,0.0021685166,0.023769336,-0.0045002843,-0.037286513,-0.012994775,0.022419795,0.007634702,0.04220581,0.027992094,-0.071482144,0.00663343,0.00090060104,-0.008162547,0.0015359193,0.026076617,0.0019236403,0.025554214,0.0114275655,0.012015269,-0.025619514,-0.039441425,0.04381655,-0.035001002,0.00810813,0.0016869263,0.011296965,-0.044273656,-0.012592089,0.044752523,-0.008690392,-0.0052485177,-0.0072048083,-0.009000569,0.024444107,-0.022027994,-0.0021875626,0.007830603,0.025184179,-0.0043560793,-0.023181634,-0.028470963,0.04390362,0.031910118,-0.03386913,0.04375125,0.032933157,0.012515905,-0.0005601548,-0.023377534,-0.023595203,-0.0012162195,0.037068848,-0.0040459023,-0.0154000055,-0.010154208,-0.008788343,-0.012091453,-0.0082278475,-0.0003441874,0.035436336,-0.021059372,0.0053056553,-0.03669881,-0.018621491,-0.034630965,0.020264883,0.006715055,-0.024313506,-0.02416114,0.041030403,0.001467898,0.018828275,-0.009337953,0.043250617,-0.033977963,-0.0026650715,0.00011963233,-0.012951241,0.013582478,0.0010420851,-0.022768063,-0.019633647,0.008886293,0.012559439,0.022441562,-0.05881387,-0.015312938,-0.010339226,0.022398029,-0.010916046,-0.0028514497,0.014725234,0.007003465,-0.054721713,0.0042934995,-0.036394075,-0.0077054445,-0.06011988,-0.042684678,-0.0005655965,-0.016640712,-0.009109402,-0.012820641,0.038636055,-0.0071993666,0.03160538,0.007803395,-0.040508,0.013125376,0.015345588,-0.044208355,0.0058443835,0.014355199,0.00047648867,0.0001291553,-0.008924385,-0.028928066,0.0036078456,0.05163083,0.016161842,-0.018545307,0.03867959,0.005474348,-0.0065953378,-0.004239083,0.028579798,0.0066551967,-0.016651595,-0.016640712,-0.066345185,-0.022550397,0.02470531,0.03093061,0.0058824755,0.016292443,0.008891734,-0.018109972,-0.020079866,0.06003281,0.0031480223,-0.0069272816,-0.02195181,0.021516474,-0.02746969,-0.025532447,-0.0017767143,-0.049845953,-0.00004663705,-0.0057137827,-0.013593362,0.011449332,-0.015813574,0.00987124,-0.012287354,0.0026691528,-0.016629828,0.010078025,0.02015605,0.0231381,0.03210602,0.011754068,-0.0025712023,-0.03567577,-0.023094567,0.035936974,-0.030081706,0.038048353,0.052283835,0.0058335,-0.0011135074,0.003512616,-0.003694913,-0.013310393,-0.024313506,-0.028601564,-0.006448412,-0.0010284809,-0.022680998,0.009435904,-0.0062253023,-0.0055260444,-0.0074551264,-0.007008907,-0.026337817,0.014507567,0.03439153,0.030821778,-0.0089842435,0.03304199,0.026098384,0.027905026,0.0013060075,-0.0076619107,-0.014877602,-0.019764246,-0.0033956196,-0.021059372,0.036219943,-0.013179792,0.035741072,-0.01951393,0.004905691,-0.016161842,-0.036394075,-0.005028129,-0.0002112059,-0.0077925115,-0.014409617,0.000039792416,-0.02775266,-0.024574708,0.013495411,-0.0123961875,-0.004826786,-0.0051451256,-0.010801771,-0.0014406895,0.017620217,0.036002275,-0.041835774,-0.031170046,-0.055418253,-0.018327639,0.040660366,0.0001977717,0.015040853,-0.014061348,0.016738662,-0.0020746472,-0.021897392,-0.033194356,0.012613856,-0.00006211188,-0.026729621,0.005637599,0.012015269,-0.004592793,-0.0061164685,-0.012352655,0.017097816,-0.011895551,-0.02435704,-0.02041725,0.011764951,0.01211322,-0.030647643,0.004220037,-0.013136259,0.009610038,-0.040377397,0.03426093,0.0023644178,-0.007950321,0.04518786,-0.0011237107,0.0232687,-0.0020134281,0.021396756,-0.042858813,0.0056811324,-0.0009482159,-0.012983891,0.012167636,-0.003945231,0.04714687,-0.055200584,0.025467146,0.0027534992,-0.0077544195,-0.010763679,-0.01676043,-0.028840998,0.018610608,-0.0064538536,-0.021690609,-0.030691177,-0.00926177,-0.012559439,-0.009425021,0.0033031106,0.00907131,0.033629693,0.04253231,0.06229656,-0.014464033,0.0029983756,0.029972872,0.0045002843,-0.02931987,-0.012537672,-0.007988413,0.052588567,-0.0025861668,-0.02727379,-0.024509408,0.003871768,0.010529686,0.0019943824,0.0021481102,0.021799441,0.047843408,0.009887565,-0.040290333,0.0289716,-0.021647075,-0.037025314,-0.0014610959,0.0013196118,-0.01519322,0.011373148,0.007743536,0.009234562,0.012581206,-0.020721985,0.012962124,0.011623466,0.03859252,-0.0074115926,0.009376045,-0.011394915,0.021560008,-0.0066769635,0.008706717,0.015552373,-0.013343044,-0.011786718,0.0066388715,-0.004054065,-0.013049192,-0.009952866,0.07252695,0.002044718,0.01563944,-0.02823153,0.021494707,-0.014246365,-0.01557414,-0.016662478,-0.011188131,-0.004304383,-0.03262842,0.03765655,0.009114844,-0.0050716624,0.009882123,-0.030038172,0.026141917,0.021364106,0.004739719,-0.014975552,-0.018871808,-0.012548556,0.0033412026,-0.0027453366,0.030277608,0.0045193303,-0.020362834,0.014790535,0.00919647,0.011906435,-0.051195495,0.022125944,-0.00698714,0.0016420324,0.02208241,0.008592441,-0.017772585,-0.006247069,0.00900601,-0.020536968,-0.021266155,-0.008418307,-0.008978802,0.030299375,-0.0046417685,0.04736454,-0.011073856,0.024814142,0.023508135,-0.0036785877,0.016988982,-0.031191813,-0.0052131466,-0.013800146,0.023355767,-0.018762974,0.032476053,0.011384032,-0.00085910806,-0.019415978,0.04505726,-0.013658661,-0.030517042,0.0021780396,-0.0032867854,0.0057573165,0.026903754,0.03719945,0.02381287,-0.00695449,-0.030364675,0.026925521,0.0066007795,0.0114275655,-0.006519154,-0.033346724,0.014289899,-0.041073937,-0.039528493,-0.024618242,0.0013230129,0.039876763,0.021462057,0.030647643,0.013234209,0.012439721,0.010007283,0.028079161,0.022332728,0.009920215,-0.022811597,-0.011960852,0.009256328,-0.015585023,-0.013451877,0.0073245256,0.0029466795,0.0041846656,-0.012265587,0.004970991,0.0348051,-0.004557422,-0.015302055,-0.019143892,-0.0115364,0.008091805,-0.018284105,0.0203846,-0.013506294,-0.019448629,-0.029189268,-0.03234545,-0.024792375,-0.026577253,0.037090614,0.03060411,0.00072374585,-0.0033275983,0.0038472805,-0.028470963,0.013789263,-0.0021712375,-0.0013046471,0.00029776292,-0.051456697,0.02503181,-0.0040078107,0.056941926,-0.0041193655,-0.0013216524,-0.002016149,0.04714687,0.045144327,0.025663048,-0.016118309,0.019894848,-0.0003608526,0.014681701,-0.005349189,0.016368628,0.00948488,0.01624891,-0.019829547,-0.05685486,0.00040812735,0.03719945,-0.0054444186,0.0060239597,0.01923096,-0.006323253,0.016477462,0.02140764,-0.026403118,0.016749546,-0.00026307208,0.018240571,0.010562336,-0.01692368,-0.0032459728,0.02201711,-0.0058062915,-0.04098687,0.0073789423,0.004301662,0.009299862,0.03635054,-0.01567209,0.025140645,-0.009566505,0.01278799,0.024814142,-0.0144858,0.008059154,-0.00050811854,-0.03902786,-0.039702628,-0.0020379159,-0.019568346,0.03297669,0.016575413,-0.009288979,0.020025449,-0.0052947723,-0.008113571,-0.004649931,-0.013005658,0.00608926,0.02775266,0.07008907,-0.045753796,-0.0007455126,0.006965373,-0.0017508663,0.0015590464,0.028645098,0.025118878,0.030299375,-0.011275198,0.0028922625,-0.009272654,0.016357744,0.019688062,0.012417954,-0.017598452,-0.04253231,0.010426293,0.02252863,0.009664455,-0.009218236,-0.014061348,0.010105233,-0.004086715,0.01865414,-0.0024201951,-0.017043399,0.054591116,0.02490121,-0.015813574,0.024748843,0.0071449494,0.024182906,0.028840998,-0.009463113,-0.03650291,0.0081897555,-0.01794672,-0.021570891,-0.019883964,-0.0085380245,0.015160571,-0.031453013,0.012602973,0.03515337,0.022136828,-0.0057790834,0.034652732,0.051717896,0.016575413,-0.0089842435,-0.01598771,0.018055554,-0.00894071,-0.033629693,-0.02720849,-0.015791807,-0.016988982,-0.015084387,0.01980778,0.02740439,0.01217852,0.0154000055,0.0027330928,-0.011166364,0.012407071,-0.02605485,0.012864174,0.021309689,-0.013310393,0.041030403,-0.0034826866,0.008434632,-0.0046689766,-0.011960852,0.009697106,-0.022833364,-0.06438617,0.024465874,-0.035458103,0.020166932,0.035936974,-0.027643826,0.0022310962,-0.022398029,-0.004791415,0.0057573165,0.0018175271,-0.0077326526,-0.030582342,0.009479438,-0.007993855,-0.030625876,0.023769336,-0.021668842,-0.006160002,-0.04172694,0.009223678,0.0043098247,0.0016937285,-0.043446515,0.009038661,-0.040595066,0.0028596122,-0.0015780925,0.020373717,-0.020079866,-0.016118309,0.028275063,-0.009637247,-0.0038772097,-0.017924953,-0.013713079,0.046842135,-0.027252024,0.010556894,0.01224382,-0.040464465,-0.016150959,0.00666608,-0.00910396,-0.033281423,-0.023007499,-0.0037629341,-0.054025177,0.010616752,-0.004557422,0.0018216084,-0.021886509,-0.015040853,-0.03195365,-0.032301918,-0.014039581,0.008565232,-0.014681701,0.019938381,-0.014137532,0.015465305,-0.0017753539,-0.016455695,-0.008086363,-0.0081897555,-0.013560711,-0.04259761,0.010780004,0.003387457,0.015955059,-0.017837886,-0.0068946313,-0.027774427,0.010137883,0.03719945,0.022746297,-0.021973576,-0.015867991,0.008663183,-0.00012133286,0.0008046911,0.026228985,-0.023181634,0.0016610783,-0.0038826515,-0.0200581,-0.022768063,0.006437529,-0.02381287,-0.0046744184,0.027317323,-0.002201167,0.0101923,0.016368628,-0.0055233235,0.012439721,-0.038244255,-0.004788694,0.0021045767,-0.004220037,-0.025293011,-0.023508135,-0.01913301,0.0049383407,-0.0055478113,0.045971464,-0.0037955844,0.028884532,0.021222621,-0.008135338,0.0014474917,-0.02086347,0.031735983,0.010137883,0.010072583,0.00040506638,-0.01621626,-0.032323685,-0.00044009733,0.010116116,-0.016629828,0.022136828,-0.00015228252,0.014823185,0.02368227,-0.015476189,0.03291139,0.010083466,0.01506262,0.010312018,-0.009174703,-0.022506863,-0.019361561,-0.0010747353,-0.018251454,-0.0023059195,0.022136828,-0.0022161314,0.0203193,-0.0073408503,0.0013658662,-0.013223326,0.008761134,0.01970983,0.022027994,0.0002304219,-0.009473996,0.0035180578,-0.055592388,0.014692584,0.015900642,0.014420499,0.008619649,-0.017446084,-0.022354495,0.011743184,0.025205946,-0.00958283,0.011547283,-0.03894079,-0.013898097,-0.028536264,-0.0064429706,-0.037700083,0.009854915,-0.035044536,-0.027295558,0.037525948,0.004848553,0.04849641,0.00025082828,0.026185451,0.012973008,0.0008931187,-0.011296965,-0.02666432,-0.0021113788,-0.032867856,0.038853724,-0.0026201776,0.029363401,0.011275198,0.051674362,0.016150959,0.009425021,-0.0057028993,0.008015621,0.0035561495,-0.022234777,-0.021603541,0.040965103,-0.0017005306,0.021385873,0.03121358,0.016150959,-0.0019603716,-0.0002513384,0.0291022,-0.03894079,-0.000113595444,-0.000044341337,-0.023312233,-0.03365146,0.0068238894,-0.010050816,-0.04566673,-0.0044349837,0.022811597,0.0045683053,-0.01577004,0.013473644,-0.0065844543,0.023551669,-0.034435064,-0.019241843,-0.017609335,0.0009434544,0.0008455038,0.047799874,-0.018893575,0.03887549,0.0064212037,0.0093923705,-0.0027888701,-0.028928066,0.016629828,0.017054282,0.018806508,0.022920432,-0.000432615,-0.0086740665,0.010007283,-0.049149416,-0.024509408,0.012940357,-0.023181634,0.0014542937,0.011111947,0.0054661855,-0.0067422637,0.023486368,-0.028405663,-0.0023385696,0.018197037,-0.040899802,0.013996047,0.036372308,0.0061327936,-0.009506647,0.005915126,0.008472724]},{"id":"guide-permissions-4","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Owner override\nThe guild owner automatically receives all permissions regardless of roles. No need to give the owner a role with Administrator.\n\n```javascript\n// When the message author is the server owner:\nconst perms = member.permissions;\nperms.has(PermissionFlags.BanMembers); // true\nperms.has(PermissionFlags.ManageRoles); // true\nperms.has(PermissionFlags.Administrator); // true\n// ... all permission flags return true for the owner\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.008920968,0.034526926,0.033891737,0.053401038,0.004406607,-0.018068789,-0.044599168,0.0071231634,0.007049436,-0.027449133,0.022254214,0.016594248,0.03588804,-0.011569469,0.011087407,0.009499442,-0.042875092,0.0028597573,0.02527135,0.049771402,0.049045473,0.021460231,-0.00953914,0.027539873,-0.080124244,0.0028994563,-0.0073840437,0.06456217,-0.010032545,-0.009119464,0.039245453,-0.014983596,-0.025951907,-0.0104692355,-0.0330297,-0.005002094,0.019826895,-0.023002828,-0.007486127,-0.02778941,-0.016798416,-0.01967944,-0.013214149,-0.019668097,0.013588455,0.047321398,-0.01975884,0.015970405,-0.02384218,0.01530119,0.012862528,0.033369977,0.020235227,0.055896416,-0.009074094,-0.0010789664,-0.035956096,-0.0025464175,-0.046323247,-0.0027094677,-0.0404024,-0.024341255,0.0050729853,-0.0033007015,0.031237567,0.011093079,-0.06469829,0.017422259,0.032712106,0.05734827,0.020382682,-0.022242872,-0.0072479323,-0.02067759,-0.010730116,-0.016424108,0.042648237,0.056077898,-0.02301417,0.0000234163,-0.000779096,0.018647261,-0.028674135,-0.0023564287,-0.001049192,0.023082225,-0.013475029,-0.021074582,0.0022259885,-0.062475134,0.017116008,-0.03992601,-0.05911772,-0.047139917,0.016231284,-0.042965833,0.012159285,0.021743797,-0.00884157,0.061386243,0.089107595,-0.028719505,-0.052992705,-0.013112064,0.030534323,0.053219557,-0.04691306,0.025951907,-0.03631906,-0.01755837,-0.059707534,0.009561826,0.04768436,0.015278504,-0.019169021,-0.013849335,0.003181604,-0.025203295,0.022923429,-0.028152375,-0.043646388,-0.015800266,0.035615817,-0.032054234,-0.015981747,-0.009629882,-0.015675496,-0.034436185,-0.033415347,-0.0038026122,-0.009510784,-0.022027362,0.062384393,-0.06574181,-0.025770426,0.015630126,0.006828255,-0.06478903,-0.021324119,-0.010990996,0.0009967324,0.022662548,-0.042602867,0.04074268,-0.041082956,0.008036244,-0.017694483,-0.026677834,-0.043328796,0.039426934,-0.04026629,-0.0032184676,0.0019963006,-0.008994695,-0.023297735,-0.013021324,-0.004999258,-0.0076052244,-0.045188986,0.01218197,0.02215213,-0.02215213,-0.010696088,-0.03854221,-0.024772275,-0.0573029,0.014960911,0.008540991,-0.00979435,0.01530119,0.0035530748,0.013565769,-0.015845636,-0.025588943,0.03951768,-0.018885456,-0.0016744538,0.0050304504,0.017444944,-0.015686838,0.043669075,-0.019531986,0.0032496597,-0.04927233,-0.034663036,0.032303773,-0.026178759,0.020496108,-0.030919973,0.013974104,0.016072487,0.006368879,0.040243603,0.02874219,0.033596832,-0.0076052244,0.0005309762,0.017739853,0.009437057,-0.052448258,-0.021925278,0.0069416813,0.080124244,-0.0072479323,-0.041060273,-0.033596832,0.015278504,-0.0020161502,-0.034209333,0.0063575367,-0.012567619,-0.02783478,0.018545179,-0.0021905429,-0.041196384,-0.016163228,-0.020257913,0.00037324298,-0.013894705,-0.012261368,-0.03541165,-0.0016418438,0.0006142736,0.013021324,0.034413498,0.0029859438,0.016900498,0.01851115,-0.015959062,0.012794471,-0.009431385,0.029536175,-0.0026541722,-0.043873243,0.014586605,-0.03198618,0.028447283,0.023501901,0.006159041,-0.008892612,-0.018091474,0.009369002,0.03815656,0.020836387,-0.012295396,-0.025430147,0.02315028,-0.0000035141065,0.008251754,0.04169546,0.04611908,0.026382927,-0.0067942273,0.017807908,-0.019577356,-0.012964611,-0.020008376,0.039245453,0.026995428,0.023002828,-0.026110703,0.028379226,-0.043941297,-0.018783374,-0.048092693,0.010815185,0.02341116,-0.030647751,-0.0013129079,0.0045654033,-0.004962395,0.01834101,0.056032527,-0.019702125,-0.024295885,0.010282082,0.044054724,-0.002082788,-0.038043138,-0.03770286,0.0014256252,0.01725212,0.004780913,0.021959307,-0.013078037,-0.00029313576,-0.014904198,0.00068481045,0.015369246,-0.014700031,-0.026269501,-0.008898282,0.03802045,0.029717656,0.020269256,0.033460718,0.021290092,-0.01903291,0.015788922,0.041604716,0.015459986,0.051722333,-0.02522598,0.011257547,0.034141276,-0.024091719,0.018522494,-0.016843786,-0.010236711,-0.013475029,0.007616567,-0.0054614698,-0.019792866,0.013327574,-0.021097267,-0.016866472,-0.0066978154,0.0053820717,0.052539002,0.024931071,0.018477123,-0.0017666125,-0.033301923,-0.0143370675,0.0011186656,-0.03770286,0.0074180714,0.010741458,0.039336193,0.025543572,0.036568597,0.0047525563,0.003436813,0.056077898,-0.028469969,0.03749869,0.0014405124,0.08597703,0.018624576,-0.023297735,0.03060238,0.034300074,-0.068826996,-0.0066694585,-0.0071685337,-0.03407322,-0.049952883,0.032167662,0.031169511,0.058664013,0.004125877,0.014246327,-0.065877914,-0.035661187,-0.05843716,-0.01477943,0.040470455,0.007911475,-0.032371826,-0.0030199718,-0.014359753,-0.016526192,0.010786829,0.022900743,0.011110093,0.043714445,-0.039676473,0.010934282,0.021641713,0.034254704,0.00013575694,0.020961156,-0.047139917,-0.014246327,0.0070551075,0.013282204,-0.018397724,0.000121578676,-0.04044777,0.000409752,0.000005225468,0.032802846,0.020779673,-0.04582417,0.020700276,-0.0085750185,-0.0027250636,-0.03545702,-0.0052487957,-0.050270475,0.011518427,0.05739364,0.040107492,0.025951907,-0.030488953,0.007599553,0.049226955,0.06297421,0.035729244,-0.020133145,0.0054189353,0.027948208,-0.0032610022,0.026314871,-0.022095418,-0.011597825,-0.077039056,0.01408753,0.021051897,0.0072706174,0.07263812,0.053355668,0.016446793,-0.062792726,0.06447143,-0.014949569,0.02774404,-0.044621855,0.0025435819,-0.035184797,-0.0038933533,0.034640353,-0.032530624,0.0025492532,0.03783897,-0.024545422,-0.020768331,-0.031713955,0.034844518,-0.016140543,-0.021936622,0.0188174,-0.041468605,-0.005430278,-0.00035871024,0.0066297594,0.0077356645,-0.03892786,-0.009783007,-0.022492409,0.020099116,-0.038678322,-0.035751928,0.005132534,-0.009119464,-0.011200834,-0.016582906,-0.06723903,0.02301417,-0.0103898365,0.0032354814,0.032462567,0.00987942,0.006726172,-0.06687607,0.000258399,0.02345653,0.07445294,-0.061567724,0.030420898,-0.0485464,0.008830227,0.016798416,0.028061634,-0.03811119,-0.0014114468,-0.015618783,-0.017150037,-0.00017749422,-0.011200834,-0.011694238,0.032144975,0.03845147,-0.045665376,0.022276899,-0.039336193,-0.027199594,-0.026587093,0.02731302,0.0033177154,0.04069731,0.015312533,-0.010480578,-0.018182214,0.009998516,0.064335324,0.04945381,-0.0060059153,-0.040992215,-0.015425959,-0.03255331,0.012941926,0.00013885844,-0.009635553,0.0041428907,-0.038678322,0.041718144,-0.051994555,-0.0043952637,0.012533591,0.0042109466,-0.045461208,-0.043374166,0.0070324223,-0.03402785,0.0023635176,-0.031124141,-0.016582906,-0.013100722,0.0122840535,-0.06973441,-0.0091364775,-0.011200834,-0.010934282,-0.014144243,-0.03772554,-0.033120442,0.053310297,-0.0079625165,-0.037952397,0.003975587,0.06415384,0.013089379,-0.017229434,0.023172965,0.013202806,0.01872666,0.017853279,0.015925033,0.01023104,0.03498063,-0.027199594,0.005577732,0.013452344,0.012250026,0.0013334664,0.0019339161,0.0008592032,0.011206505,-0.031373676,-0.00085991214,0.01434841,-0.0048886677,0.0061136703,-0.0030795205,-0.008858584,0.009238562,-0.017751195,0.014110215,0.030330157,0.005813091,-0.030942658,-0.018976199,0.021528287,-0.012318082,0.020609535,-0.03965379,-0.030103305,-0.006000244,0.010798171,0.0060342723,-0.0019736153,0.02067759,-0.0052119326,-0.033052385,-0.008376522,0.000115907365,0.050088994,0.054762155,-0.03169127,0.028016264,0.0768122,0.012862528,0.041967683,-0.005486991,-0.0068849684,0.03906397,0.015471329,0.0040323003,0.018409068,0.00927826,-0.03160053,0.017501658,0.032644052,-0.011682895,-0.025679683,-0.012578961,0.070641816,-0.014552577,0.0046759937,0.0010102018,0.0078093917,0.01504031,-0.00007558791,0.0015737881,0.028243115,-0.016446793,0.043714445,-0.030738492,-0.024159774,0.015800266,-0.005231782,-0.010962639,0.005977559,-0.008365179,-0.016741702,0.007837748,-0.011637525,-0.0037430634,0.021539629,0.0028058798,-0.042194534,-0.040969532,-0.01044655,-0.019044254,-0.0040379716,0.018499808,0.010650717,0.001590802,0.009834048,0.034821834,0.0060683,0.015074338,0.006493648,-0.044009354,0.01404216,-0.00953914,0.016174572,0.012193313,-0.026972743,0.03584267,-0.04836492,0.02812969,-0.011841692,-0.00080816145,-0.021902593,-0.0011753787,0.00927826,0.032621365,-0.018443095,0.025498202,-0.037566748,0.0034509911,-0.029967193,-0.016923184,-0.02315028,-0.0013646586,-0.010038216,-0.02926395,-0.04650473,-0.032780163,-0.0010123285,-0.017320177,-0.014620633,0.005625938,-0.014734059,-0.009822706,0.017490314,-0.015142393,-0.0025776096,-0.025384776,-0.00030181993,-0.018193558,0.01057699,0.0034481555,-0.039336193,-0.045098245,-0.011274561,-0.024205144,0.01391739,-0.037997767,0.045461208,0.001877203,0.032326456,0.01906694,-0.00580742,-0.013815307,-0.026541723,0.011382316,0.0404024,0.027539873,-0.014439151,0.020235227,0.0042506456,-0.018227585,-0.0040634926,0.014904198,-0.016957212,0.010236711,-0.035479706,-0.009215876,-0.006368879,0.029717656,-0.02301417,0.019566014,0.02822043,0.038723692,-0.008852912,0.00997016,-0.052176036,0.0065617035,0.03593341,-0.021426203,-0.027993578,-0.012953268,0.01603846,0.0036126233,0.029967193,-0.02115398,-0.049998254,-0.029989878,0.031010713,-0.03811119,0.007406729,0.021471573,-0.013497714,-0.021494258,-0.019134995,0.06324643,-0.00036792614,0.026178759,0.020076431,0.024023661,0.052039925,-0.02969497,-0.00010252662,0.020983841,0.033120442,-0.035275538,0.02969497,-0.02717691,-0.0037941053,0.026859317,0.011495742,-0.0282658,0.0117509505,0.019441245,0.026450982,-0.0585279,-0.00923289,-0.02522598,0.00074648595,-0.0026853646,-0.025498202,-0.035661187,-0.013191463,-0.021017868,0.01937319,-0.020859072,0.056758452,-0.013418316,0.0064085783,0.00242732,0.003822462,0.034300074,-0.013214149,-0.037476007,-0.0037855983,-0.0073330016,0.04772973,0.028469969,0.043555647,-0.0021976319,0.012488221,-0.03697693,-0.0023691892,-0.00068658276,-0.005064478,-0.0037657488,-0.016356053,0.002247256,0.0138039645,0.03935888,-0.008274439,0.0036920218,0.023774125,0.0014277518,-0.04069731,-0.0030851918,-0.039245453,0.019566014,0.025384776,-0.014439151,-0.0048347902,-0.010758472,0.002469855,0.019781524,-0.006017258,-0.0062894807,-0.013667854,-0.030352842,0.01365651,-0.013146093,0.05635012,-0.036296375,0.002476944,-0.010571319,-0.07073256,-0.02674589,0.0064596203,-0.03160053,-0.024931071,0.00901738,0.033778314,0.042013053,0.037339892,-0.010798171,0.005662801,-0.059934385,-0.0076732803,0.0007280542,0.034821834,0.02722228,-0.03141905,-0.026269501,0.009992845,-0.0013419733,0.016492164,-0.04772973,-0.036182947,-0.025520887,0.005739364,-0.015720867,0.025838481,-0.027857466,0.0038763392,0.012669703,0.004134384,0.05344641,0.019963006,0.010491921,0.008212054,0.004851804,0.02912784,0.019452587,0.030262101,-0.02722228,0.0026839466,-0.007798049,-0.032281086,-0.048001952,0.016650962,-0.02470422,0.012544934,-0.011042037,0.012964611,0.007764021,-0.001238472,0.0070721214,0.02393292,0.027812095,0.00001661516,-0.038564898,-0.023864865,0.040515825,-0.022685234,-0.022333613,0.009692266,-0.038292672,0.019452587,-0.0026839466,0.0132708615,0.009351987,0.023501901,-0.02856071,-0.008796199,0.0020643563,-0.013735909,0.022288242,0.02822043,0.030511638,-0.014246327,0.0010853467,-0.01451855,-0.015369246,-0.042625554,0.008331152,-0.021097267,0.034731094,0.01434841,0.02518061,0.06447143,0.018000733,-0.015312533,0.017513,-0.030647751,-0.0356385,0.080214985,0.008489949,-0.012261368,-0.042920463,0.010503263,-0.00062774296,-0.026382927,-0.0047525563,0.021358147,-0.010304768,-0.014008132,-0.0072876313,0.020087775,-0.028379226,-0.006839598,0.011626182,-0.004537047,-0.011274561,0.0005465723,-0.015199106,0.0041599046,0.019713467,-0.033800997,0.00987942,-0.068237185,-0.019010225,0.028379226,0.021006526,0.034390815,-0.005560718,0.007117492,-0.009680923,0.0058924896,-0.009805692,0.02878756,-0.021403518,0.0077810353,0.009057079,-0.021403518,0.030194046,-0.026450982,0.025520887,0.032757476,-0.004026629,-0.014382438,-0.042716295,0.030693121,0.01808013,-0.043238055,-0.017116008,0.0028399075,0.015505357,0.019928977,0.051903814,-0.0103614805,0.021324119,0.0063518654,0.021448888,0.037044987,0.0086033745,0.00962421,-0.025203295,0.000069606445,-0.0018545178,-0.03845147,0.023048198,0.007304645,0.035570446,-0.016855128,0.006970038,-0.012930583,0.008478606,-0.0002210038,0.003459498,-0.034481555,0.01955467,0.005685487,-0.011076065,-0.004786584,-0.004199604,0.008336823,-0.026882002,-0.016469479,0.009119464,-0.004729871,0.020552821,0.008586361,-0.015845636,-0.033506088,0.043691758,0.02388755,0.0023436681,-0.036568597,-0.009329302,0.0565316,-0.018522494,0.001738256,-0.033574145,-0.0064085783,-0.012749101,-0.0028810247,0.010730116,0.041241754,-0.009420043,-0.001976451,-0.030103305,0.023048198,-0.014359753,-0.010854884,-0.0397899,0.0074577704,0.015754895,0.008455921,0.00017908929,-0.022220187,0.00021568695,0.014677346,-0.01265836,-0.02917321,0.031124141,0.02960423,-0.0054160994,0.01582295,-0.010724444,0.009505113,-0.010384166,-0.008461592,-0.020439396,0.0290371,0.000045946457,-0.0065900604,-0.017093323,0.0006298697,0.018828744,-0.012692388,-0.005699665,-0.020507451,0.018352354,-0.0052204393,0.0072195753,0.02431857,-0.017932678,0.0048092697,0.0010229623,0.015788922,-0.0042421385,0.032848217,0.039381564,-0.025543572,0.017966704,0.008558004,0.02484033,-0.0376348,-0.027607929,-0.022537779,0.002705214,0.033846367,0.0364098,-0.022310928,-0.00706645,0.0057762275,-0.008711129,0.020337312,-0.01911231,0.006896311,-0.0069927233,-0.01755837,0.019055596,-0.011671552,0.010996667,0.0008485695,0.005302673,-0.030942658,-0.018624576,-0.012771786,0.01984958,0.0059151747,0.026042648,0.052221406,-0.023388475,0.020280598,-0.0016588577,-0.016344711,-0.004596595,-0.030284787,-0.026768574,-0.012476878,0.05925383,-0.005830105,0.012590305,-0.016832443,-0.020269256,-0.03874638,0.03817925,-0.033687573,0.001714153,0.00914782,-0.018738003,-0.000017168999,0.00039947277,0.040107492,0.034436185,0.018760689,-0.020609535,0.024069032,-0.0001779373,-0.013588455,-0.011739608,0.007338673,-0.000067080946,-0.018499808,-0.0025946235,-0.04013018,-0.008796199,0.031373676,-0.025634313,0.023343105,0.029944507,-0.002098384,-0.0013986864,0.009113792,-0.013327574,0.0041428907,-0.013667854,0.013928733,-0.006159041,0.0067942273,0.012261368,0.023569958,0.0073103164,0.009051408,-0.006913325,0.02327505,0.025157923,-0.011887062,-0.017104667,0.013815307,0.01382665,-0.0094484,-0.042171847,0.03854221,-0.0058584614,-0.020700276,-0.052493628,-0.02422783,-0.023524586,-0.020314626,0.013713224,0.028719505,-0.031282935,-0.012045859,0.007769692,0.027675984,0.025906537,0.013951419,0.033415347,0.038474157,-0.06297421,0.00037997766,0.015255819,0.060932536,-0.010248054,-0.018613234,0.0036608295,0.041944996,0.014677346,0.030057935,-0.0033460718,0.0028314006,0.022492409,-0.015698181,-0.018692633,0.0021026377,-0.009822706,-0.0075882105,0.0018715317,-0.053401038,0.010270739,0.027381077,0.04083342,0.018840086,-0.009040065,-0.0029235594,0.009369002,0.013055352,-0.031282935,0.0032695092,-0.04121907,0.020076431,0.030919973,-0.009391687,0.021596342,0.0069303387,0.008637402,-0.05839179,0.011149792,-0.003312044,0.008728144,0.028401911,-0.0032241389,0.01573221,-0.000258399,0.026609778,-0.007389715,-0.017501658,-0.007922818,-0.013021324,-0.028674135,-0.034390815,-0.021981992,-0.043011203,0.030216731,0.014314382,-0.010452221,0.004264824,0.01937319,-0.007644924,0.013112064,-0.02418246,0.0056372806,-0.003896189,0.02908247,-0.014552577,-0.016855128,-0.0015227463,-0.0032723448,-0.0045682387,0.012749101,0.021188008,0.036659338,-0.014473178,0.011853035,0.0104692355,0.026859317,0.023252364,0.014473178,0.016730359,-0.045052875,-0.014541235,0.014507207,0.034209333,-0.012374795,-0.0029802725,0.03956305,-0.02912784,0.03854221,0.014949569,-0.05644086,-0.0047979266,-0.017490314,0.0065390184,0.021709768,-0.033642203,0.019169021,-0.010792499,0.00511552,0.0010109107,0.0059718876,0.0019055596,0.028515339,0.007191219,0.014189613,-0.0010087839,0.024341255,0.028061634,0.0046448014,0.013565769,-0.0007904386,0.026768574,-0.00303415,-0.00043031052,-0.031350993,-0.016787073,0.016945869,-0.022707919,-0.024069032,-0.006238439,0.013974104,0.045710746,-0.001016582,0.029490802,0.03588804,-0.009204534,0.032666735,0.0077129793,0.012318082,-0.0063121663,0.0064482777,0.012522249,0.01573221,-0.017785223,0.028969044,0.005577732,-0.018885456,-0.023172965,0.004279002,0.018477123,0.0035303894,-0.009403029,-0.036659338,-0.025656998,0.0048858323,-0.0032836876,-0.014223642,0.008376522,-0.013940076,-0.02115398,-0.009822706,0.023910236,0.012272711,-0.025997277,0.031328306,0.022016019,-0.014212299,-0.025157923,0.00024705636,0.0064142495,-0.03259868,-0.020859072,-0.010094929,0.013894705,-0.012885213,0.0055947457,0.017762538,-0.015255819,-0.0050474643,0.044326946,-0.00035853303,0.009249904,0.009023052,-0.005024779,0.0037827627,0.0028314006,0.004902846,0.03584267,-0.047049172,0.012170628,0.029195895,-0.029876452,-0.021085924,0.007616567,-0.009130807,0.005197754,-0.00044058976,0.022027362,-0.026292186,0.0048035984,-0.012862528,0.041060273,0.03845147,-0.008506962,-0.035320908,0.010542962,-0.024431996,0.025611628,0.012499563,0.03722647,0.000322024,-0.02032597,-0.041037586,0.00552669,-0.0384061,0.015766237,-0.018964855,-0.0104692355,-0.03724915,0.012839842,0.0139627615,0.0040549855,-0.03207692,-0.008240411,0.02332042,0.024999127,0.025770426,0.0039869295,0.033415347,0.0370223,0.0050559714,-0.02484033,0.03926814,-0.008268768,-0.0022600163,-0.0058584614,-0.02474959,-0.013679196,-0.0014341321,-0.025702368,-0.0031107126,0.009731965,-0.029808396,0.01577758,-0.008092957,0.015845636,-0.0059265173,0.00011697073,-0.0128171565,-0.022174815,-0.03631906,-0.015936377,0.022231529,-0.024681535,-0.014722716,-0.02293477,0.011507085,-0.0036239661,-0.008455921,0.022310928,-0.06447143,0.012590305,0.0032184676,0.009181848,-0.010367151,-0.03849684,0.002902292,-0.014926883,-0.00992479,0.020019718,-0.022276899,-0.003246824,0.028356541,0.00051963364,0.000090563706,0.02011046,-0.04183157,0.054081596,0.016560221,-0.006368879,0.008796199,-0.0018119831,-0.030239416,-0.018431753,-0.023070883,0.019906292,-0.0037033644,-0.0077867066,-0.030239416,0.012771786,0.008467264,-0.028107004,-0.010162985,-0.054081596,0.032780163,0.08248351,-0.006363208,-0.0063915644,0.011597825,-0.013225491,0.039994065,-0.0050134365,-0.026723204,-0.015936377,-0.012794471,-0.0006610619,-0.020450737,0.017161379,0.0073500155,0.0047752415,-0.050860293,-0.010117614,-0.017841935,-0.0012186224,-0.023218336,0.009204534,-0.024250515,0.00003910101,0.009777335,0.041718144,0.030035248,-0.045756117,0.009403029,0.026904687,0.0053083445,-0.038428787,-0.009686595,-0.028356541,-0.008847241,0.01261299,-0.00975465,0.0011009427,-0.0037288852,0.01651485,-0.007208233,0.008331152,0.0030454926,0.050814923,-0.014382438,-0.016639618,0.0024414982,-0.015516699,0.025588943,-0.004023793,-0.012510906,0.04586954,-0.012533591,0.0067034867,0.0033687572,-0.017671797,-0.011773637,-0.0031674257,0.0014412212,-0.0132708615,0.0023394148,-0.0032808518,-0.017841935,0.023048198,0.01508568,0.024046347,-0.026110703,0.0028923673,0.021857223,0.025498202,0.020348655,-0.010854884,0.011773637,0.015505357,-0.0028838604,0.02258315,-0.046141766,0.045143615,-0.00064759253,0.011246204,-0.016639618,-0.0042506456,-0.0037997765,0.022866715,0.0023465038,0.024250515,-0.012578961,0.039585732,0.026133388,-0.03988064,0.017581055,0.0004008906,-0.0154032735,-0.0029802725,0.032961644,0.006918996,0.0038876818,0.033233866,-0.02063222,-0.018715318,0.03250794,-0.023127595,-0.0031872753,-0.0039018602,-0.017478973,-0.020291941,-0.010718773,-0.0012441432]},{"id":"guide-permissions-5","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Channel-specific permissions\nmember.permissionsIn(channel) applies channel overwrites. Use it when checking if a user can send messages, read history, or connect to voice in a specific channel.\n\n```javascript\nconst channel = message.channel;\nif (channel?.isSendable?.()) {\n const perms = member.permissionsIn(channel);\n if (perms.has(PermissionFlags.SendMessages)) {\n await channel.send('You can send here!');\n }\n}\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[0.012124612,0.007382464,0.020775123,0.047201447,0.0059117614,0.03342085,-0.026982183,-0.017521048,-0.021330979,-0.010873935,0.011586126,0.04138812,-0.00053378113,0.021898415,-0.009073193,0.0014707027,-0.0012441623,-0.001438133,0.04798891,0.031961728,0.025731506,0.06739756,-0.02304487,0.04965648,-0.08671355,-0.040832262,-0.0072203395,0.045047507,-0.006438667,0.023577563,0.046622433,-0.014707027,-0.008864747,-0.010520735,-0.022824842,0.00040458798,0.028441304,-0.0027952036,-0.013305806,-0.030803693,-0.033305045,0.024781918,-0.03242494,-0.0127615305,-0.017706333,0.010387561,-0.0661932,0.024040777,-0.010167534,0.019072814,-0.025430417,0.053918045,0.012645727,0.042638797,0.023415439,0.018540118,-0.01310894,-0.029020322,-0.033930384,0.011858264,-0.01658304,-0.0112213455,-0.040948067,-0.013317387,-0.0041168095,0.008476806,-0.04615922,0.023600724,0.022153182,0.04375051,0.019825535,0.009188997,-0.0028545528,-0.036454897,-0.0068787197,0.0011667189,0.023403859,0.060912568,0.011580336,-0.009026872,-0.0052227313,0.026287362,-0.036130648,0.010624958,-0.044885382,0.054612864,0.00036514248,-0.014591224,0.026843218,-0.054705508,-0.014707027,-0.011360309,-0.048822697,0.012170933,0.03654754,-0.03893309,0.008395744,-0.0014663601,-0.009073193,0.06665641,0.06211692,-0.02380917,-0.10098053,-0.020844605,0.040832262,0.016189309,0.010590217,0.04766466,-0.04831316,-0.042986207,-0.0330966,0.027607521,0.03411567,0.04314833,-0.0034712057,-0.011754041,0.043866314,-0.020288749,0.030896336,0.0015618978,-0.076337576,-0.021608906,0.03967423,-0.007886209,-0.006403926,-0.052574724,-0.023901813,-0.038423553,-0.034949455,-0.0220837,0.033003956,-0.024689276,0.04205978,-0.046576113,-0.014371197,0.020149784,0.019188616,-0.019177036,-0.022187924,-0.022141602,0.0220837,0.028163377,0.024503991,0.010179115,-0.016606202,-0.017370503,-0.07374358,-0.02517565,-0.016490398,-0.013606895,-0.035644274,0.0018687767,-0.005503555,-0.015969284,-0.0345094,0.012622566,0.004047327,0.010908676,-0.021284657,-0.034231473,-0.027815966,-0.013583734,-0.050397623,-0.03995216,-0.025685186,-0.018088484,0.022998547,-0.02173629,-0.018806465,0.014278554,-0.042546153,-0.02380917,-0.0075445888,-0.033003956,0.041295476,-0.029228767,0.00827994,-0.034949455,-0.028140217,-0.015100758,0.012935235,0.032355458,-0.00759091,-0.06484988,-0.030826854,0.017868457,0.029738303,0.013514252,0.014278554,-0.024735598,0.013039459,-0.0104512535,0.019512866,0.009026872,0.02899716,-0.040878586,0.014000626,0.008314681,-0.0014786641,-0.08407324,0.0059928237,0.007973061,0.0503513,-0.007770405,-0.030687891,-0.009588518,-0.013560574,-0.014799669,-0.03555163,-0.022326887,0.006073886,-0.0045337016,0.031127943,-0.0038852026,-0.016803067,-0.027074825,-0.03972055,-0.01207829,-0.08272992,0.010069102,-0.047039323,-0.034463078,0.042175584,0.008158347,0.011800362,0.038446713,0.05238944,-0.0114876935,-0.006681854,0.011325569,0.024503991,0.03731184,-0.020531936,-0.026982183,0.016779907,-0.020103464,0.0036449106,0.021296239,-0.013815341,-0.023380699,-0.022512173,0.020207686,0.023647046,0.049146947,0.0073708836,-0.002607023,0.016108247,-0.029460374,0.003410409,0.03240178,0.07202969,0.036686502,-0.010844984,-0.009768013,0.006172319,-0.014093269,0.03620013,0.05414965,0.0068150274,0.015911382,-0.004047327,0.0042210324,-0.025824148,-0.03895625,-0.03316608,-0.016779907,0.043379936,0.028904518,0.007006103,-0.008557868,0.029182447,0.02482824,0.060449354,-0.0330966,-0.043912634,0.018065324,0.039211016,0.003065894,-0.051277727,-0.009629049,-0.039766874,0.003862042,-0.028580269,0.012657307,0.01962867,0.008557868,-0.016038764,-0.01793794,-0.009484295,0.009090563,-0.025268292,0.0109549975,0.014382777,0.010908676,0.012194093,0.061329458,0.028325502,-0.019918177,0.01762527,0.06647113,0.017046254,0.048869018,0.028117055,-0.01412801,0.03101214,0.027051665,-0.0013483854,-0.0032656547,0.011672978,-0.047409896,0.03525054,0.046066575,-0.0112039745,-0.014892312,-0.057067893,0.0086331405,-0.008714203,-0.018516958,0.04314833,0.021296239,-0.01930442,0.008806845,-0.043889474,-0.057160538,-0.010978159,-0.013618475,0.0089516,0.020057142,0.06072728,0.010219647,0.04307885,-0.0073593035,0.0078572575,0.049517516,-0.005558561,0.038724642,-0.016988352,0.07189073,-0.039465785,0.006930831,0.031521674,-0.0009886712,-0.031776443,0.037033916,0.009397442,-0.0044555343,-0.05688261,0.016999934,0.02587047,0.02280168,-0.017416826,-0.026241042,-0.050119694,-0.09139201,-0.027422234,0.015135499,0.04613606,-0.017798977,0.005280633,-0.012182513,-0.010717601,-0.015077597,-0.0199645,-0.009333751,0.022639556,-0.002190131,-0.045371756,-0.0015257093,-0.0007433128,-0.004035747,0.012101451,-0.020254007,0.040508013,-0.0034683107,0.0032946055,0.025592543,-0.026403166,-0.007145067,-0.039929,0.03724236,0.028788716,0.04578865,0.016004024,-0.03620013,-0.006160739,0.013027878,-0.014232233,-0.018019002,-0.036061168,0.001690729,-0.012553084,0.013838502,0.0096753705,0.04523279,-0.020833025,0.025384096,0.024318706,0.050814513,0.005509345,-0.022697458,0.023334377,0.027630681,-0.0016415126,0.03203121,0.010457044,-0.03728868,-0.017034674,0.02065932,0.009600098,0.014452259,0.046969842,0.028070735,0.022245824,-0.0063344436,0.07513322,-0.025662024,0.04032273,-0.009727482,0.03311976,-0.032100692,0.0076024905,-0.035389505,-0.012472021,-0.02068248,0.015262882,-0.021238336,0.023901813,-0.039743714,0.036593862,-0.06642481,-0.059847176,-0.00790358,-0.018736983,0.008801055,0.00024626308,-0.035366345,0.014278554,-0.027815966,-0.025013525,-0.02170155,0.0022769836,-0.02512933,-0.0077472446,-0.0011840893,0.012228834,-0.005900181,-0.02823286,-0.06549838,-0.015135499,0.0065313093,-0.022824842,-0.025453579,0.0076082805,0.023589144,-0.05062923,-0.014093269,0.000055639895,0.08032121,-0.029136125,-0.00096623425,-0.053037938,0.0011891557,0.05827225,0.012147772,-0.0009155703,0.008714203,-0.0040241666,-0.025453579,-0.025384096,0.007677763,0.032494422,0.01241412,0.055354007,-0.0018427209,-0.01205513,-0.037080236,0.0015358421,-0.04412108,0.011603497,0.005613568,0.045070667,0.0186096,0.022465851,-0.011157653,-0.0051474595,0.040971227,0.051926225,-0.013525832,-0.01891069,0.0011761278,-0.04347258,0.006241801,-0.019536026,-0.010659699,0.009553777,-0.03242494,0.039743714,-0.015969284,0.07499426,0.0074577364,0.012564665,-0.017636852,-0.018771725,0.012692048,-0.053315867,0.00025006288,-0.04798891,-0.04974912,-0.028348662,0.00020030362,-0.065081485,0.037404485,-0.0434031,-0.024249224,-0.019617088,-0.021238336,-0.006971362,0.028696071,-0.01865592,0.0011992885,0.02174787,0.05762375,0.0031498515,0.008609979,-0.020520356,0.0008895146,0.023149092,-0.0007722636,0.02693586,-0.0083725825,0.03029416,-0.032147013,0.01620089,0.0025085902,0.0020106358,-0.0101849055,-0.031961728,0.0025100377,-0.0052024657,-0.017660012,0.01346793,0.01580716,-0.040160604,0.02487456,-0.014591224,-0.0069539915,-0.0013824026,0.006340234,0.008806845,-0.021087792,-0.007168228,-0.038794126,-0.013722698,0.0065718405,-0.0099359285,0.024226062,-0.029576179,-0.030873176,-0.012888914,-0.018818045,-0.005882811,-0.0077761956,0.0014388567,0.0044063176,-0.027514879,-0.009333751,-0.0010451253,0.041828174,0.03907205,-0.022813262,0.009061613,0.028348662,-0.011452952,0.0058104335,0.030734211,-0.021099372,-0.02098357,0.019871857,-0.030826854,0.00012439814,0.017833717,-0.036269613,0.0481742,0.021168854,-0.0066992245,-0.03379142,-0.030479444,0.009953299,0.0024289754,0.0035001566,-0.0007809489,-0.016374595,0.012564665,-0.007996222,-0.038701482,0.041295476,-0.021632068,0.008459436,-0.027167467,-0.03895625,0.005321164,-0.0089052785,0.0089516,0.01447542,0.011418211,0.0050548166,-0.00466398,-0.010428092,-0.0046726656,-0.0034972613,-0.011337149,-0.033212405,-0.025777828,-0.01413959,-0.031869084,0.016652523,0.017868457,0.011279247,0.0538254,0.053130582,0.006299703,0.018551698,-0.006311283,0.011927746,-0.020277169,0.023033287,0.054242294,-0.0017949521,0.017995842,-0.047803625,0.05479815,-0.023716528,0.05354747,-0.016953612,-0.022859583,-0.030433122,-0.0011819181,-0.011146073,0.029390892,-0.0022465852,0.02999307,-0.03138271,0.0179032,-0.0461129,-0.022697458,-0.035991684,0.0033235564,0.0044294787,0.003245389,-0.012715208,-0.03958159,0.014973374,0.003587009,-0.0054948693,0.014649125,-0.030247837,-0.040554337,0.014811249,-0.041596565,-0.016814647,-0.0011167786,0.010844984,-0.007550379,0.0075098476,0.0213773,-0.049795445,-0.026959023,-0.008980551,-0.03166064,-0.019339161,-0.040832262,0.030988978,0.02201422,0.0009778147,0.009501666,-0.015077597,0.00096623425,-0.028835036,0.02797809,0.02999307,0.018296931,0.0220837,-0.018262189,-0.011510854,0.0045452816,-0.013977465,-0.009727482,0.023647046,-0.0056743645,-0.0337451,-0.010659699,0.035320025,0.00103644,-0.031127943,-0.0029732513,0.029691981,0.04141128,-0.010370191,0.027862288,-0.022477431,-0.0046524,0.0045452816,-0.040206928,-0.010549686,-0.006444457,-0.006033355,0.018551698,0.030572087,0.021192014,-0.014707027,-0.022315307,0.021632068,-0.022952225,-0.0022769836,0.036755987,-0.011093962,-0.026542129,-0.03582956,0.027769646,0.0073998347,0.023693368,-0.0057727974,0.0029732513,0.031521674,-0.017382083,0.008059914,-0.0037375535,0.057438467,-0.015286043,-0.00044367163,-0.020392971,-0.010758132,0.027051665,0.0066355322,-0.015610293,0.012703628,0.0063228635,0.043681026,-0.041503925,-0.017995842,0.031521674,0.010920256,0.033305045,-0.026356844,-0.021632068,-0.025059847,-0.040230088,0.000018320454,-0.009605888,0.046761397,-0.015019695,0.006496568,-0.030965818,0.02480508,-0.0040502227,-0.015760837,-0.055400327,-0.029691981,0.013132101,0.0132710645,-0.013166842,0.06739756,-0.019107554,-0.021643648,-0.04314833,0.012124612,-0.021087792,-0.036038004,0.02065932,0.040183764,-0.022130022,0.019107554,0.036501218,-0.010659699,0.026796898,0.015320784,-0.043310456,-0.018725403,-0.0045742327,-0.030641569,0.01518182,0.017358923,-0.010596007,-0.0059522926,-0.012981556,-0.005969663,-0.0054746037,-0.04439901,-0.03793718,-0.03318924,-0.044329524,0.020751962,-0.024990365,0.021632068,-0.039743714,0.0054948693,0.0055701416,-0.06999155,-0.01205513,0.02241953,-0.023693368,-0.0227901,-0.014104849,0.011678768,0.03367562,-0.009837495,-0.013236324,0.009032662,-0.022465851,0.010752342,-0.006114417,0.037033916,0.0020801178,0.008795265,-0.018551698,0.030572087,-0.0008460883,0.014672286,-0.024550311,-0.058411215,0.02793177,0.025638863,-0.00055983686,-0.012136192,0.021134112,0.019501286,-0.016038764,-0.005460128,0.0627191,0.03003939,0.007446156,-0.014799669,0.011551385,0.014023786,-0.03557479,-0.015320784,-0.06679538,0.0034567302,-0.010283338,-0.038446713,-0.022929065,0.015367106,-0.011117122,-0.017497888,-0.003725973,0.0132826455,-0.0010415064,-0.024689276,-0.024944043,0.034393597,0.011852474,0.015471329,-0.007011893,-0.016467238,0.06781445,0.012205674,0.0004396909,0.036223292,-0.012275156,0.052806333,0.025523061,0.019269679,0.014788089,-0.018366413,-0.040044803,-0.007978851,0.028325502,-0.008569448,0.014371197,0.040160604,0.05201887,-0.01655988,0.026843218,-0.021481523,-0.008766314,-0.038493037,0.017138897,-0.023878653,0.055122398,0.030502604,0.04141128,0.017127316,0.044236884,-0.03520422,-0.022431111,-0.030433122,-0.029112965,0.051833585,-0.0012383722,0.0053848564,-0.016814647,0.00031556416,-0.0132710645,-0.017463146,-0.011974067,0.019593928,-0.020531936,-0.0052864235,0.005969663,0.0026649248,-0.057438467,0.0026229462,0.012275156,-0.008476806,-0.0046466095,0.034370437,0.009582728,-0.012587825,0.012008809,-0.019397063,-0.004901377,-0.046969842,-0.039164696,0.024318706,0.019142294,0.014243813,0.0060854666,0.0057756924,-0.008100445,-0.021794192,-0.026472649,0.016235631,0.032656547,-0.015610293,0.0036014845,0.00094741624,-0.028974,-0.032610226,0.03689495,0.0035667433,0.009762223,0.01034703,-0.01994134,0.059893496,0.021469943,-0.03962791,-0.005460128,-0.011817733,0.03203121,0.012912074,0.0503513,-0.017822137,0.014811249,0.029112965,0.020937247,0.034208313,0.0061954795,0.030734211,-0.027121147,0.010514945,-0.0020627473,-0.04446849,0.030664729,0.0059928237,0.068046056,-0.017521048,-0.003248284,-0.017289441,0.03937314,0.017370503,0.022153182,-0.006398136,0.040230088,-0.011603497,-0.0093048,0.039118376,0.05614147,0.011308198,-0.034694687,0.020311909,0.011082381,-0.0056656795,0.022963805,0.0419903,-0.012634146,-0.006693434,0.004805839,0.037450805,-0.0062939124,-0.017822137,-0.013815341,0.0240871,-0.008250989,-0.0049592787,0.01828535,0.0075967005,-0.01965183,-0.0101906955,0.013722698,0.029112965,0.000265443,-0.024758758,-0.041272316,-0.025013525,-0.0026432117,-0.0114876935,-0.013201583,-0.0017717914,0.027653841,0.020057142,-0.00654868,-0.016363015,-0.0035985895,-0.011238716,-0.007619861,0.008725783,0.057531107,0.029807784,0.0014801117,-0.0065718405,0.008575238,-0.018088484,-0.031776443,0.033003956,0.000148554,0.028093895,0.03161432,-0.00072015217,-0.022975387,-0.015726097,0.024411349,-0.0070929555,0.0114876935,0.01968657,-0.009837495,-0.029691981,0.0024579263,0.03031732,-0.008864747,-0.019536026,-0.006027565,0.008245199,-0.03277235,-0.0018094275,0.026750576,-0.011481903,0.03108162,0.03342085,0.027144307,-0.033258725,-0.018679082,-0.00051279174,-0.032355458,0.009739063,0.004614764,-0.009380072,0.01069444,-0.02241953,0.026750576,0.017382083,-0.013734278,0.03689495,0.006693434,-0.0025331986,0.022176344,0.019246519,-0.009241108,0.0056106728,0.0017688964,-0.01828535,-0.010769713,-0.0027546724,0.005141669,0.0091542555,0.0006727451,0.05655836,-0.015413427,0.022361629,0.003587009,-0.021481523,0.022118442,-0.03511158,-0.024411349,-0.028742393,0.028024413,-0.038191948,0.02515249,-0.020219266,0.005616463,-0.0112039745,0.019721312,-0.038863607,0.022477431,0.0025360936,-0.00096116785,-0.009524826,-0.004791364,0.020126624,0.005697525,0.02101831,-0.035088416,0.024781918,-0.039118376,-0.008378373,0.020091882,-0.0024955624,0.0058191186,-0.01930442,-0.006595001,-0.03965107,-0.018690662,0.0035088419,0.016004024,-0.012958396,-0.0059870337,-0.007660392,0.0025462264,-0.007770405,-0.001931021,0.02823286,-0.009536407,0.015980864,0.012831012,-0.017231539,-0.035644274,0.029738303,0.012680468,-0.0021771032,-0.013583734,0.03138271,0.030479444,-0.03337453,-0.011337149,0.022836423,0.009229528,0.009727482,-0.014023786,-0.0015792683,-0.010816034,0.00028335635,-0.03578324,-0.038423553,-0.015482909,-0.014996535,-0.009432184,-0.0030716842,-0.02068248,-0.0052864235,0.00092353177,0.00965221,0.063877136,0.025314614,0.021400461,0.03585272,-0.03691811,-0.02619472,0.00894002,0.061885316,0.020126624,0.003309081,0.026820058,0.032702867,0.03789086,0.008818426,0.01896859,-0.009536407,0.012170933,0.0075098476,0.010480204,0.02175945,0.009050032,-0.0026475543,0.004826105,-0.011603497,-0.00897476,0.029854106,0.039535265,0.0021220965,0.017347343,0.0040820683,0.0063807652,-0.013027878,-0.026750576,-0.01412801,-0.043240976,0.0050866627,0.019397063,-0.001532947,0.002304487,0.018482216,0.00997067,-0.03036364,0.013236324,-0.006791867,0.016444078,0.0068902997,0.005101138,-0.017741075,-0.03034048,0.013931144,0.00075272185,0.00052509585,0.011771412,-0.011082381,-0.029553017,-0.0330966,0.0030803694,-0.032957636,0.036038004,0.024596633,-0.017127316,0.006317073,0.029529857,0.0025549117,-0.010485994,-0.018435895,-0.005616463,-0.011198184,0.020937247,-0.01137189,-0.007278241,-0.0017674487,0.0060854666,0.030155195,-0.025615703,0.0008656301,0.0072435,-0.004409213,0.031475354,0.007973061,-0.0011370443,0.006595001,-0.013004717,-0.0004291962,-0.053037938,-0.011840894,0.0027604625,0.010677069,-0.0052256268,0.010468624,-0.012159353,-0.011562966,0.033536654,-0.0017877143,-0.03698759,0.005344325,-0.0076082805,0.008471016,0.015621873,0.0077067134,0.004009691,0.01140084,0.0037549238,0.0020395867,-0.010555476,0.0036014845,-0.005173515,-0.009773804,0.0054890793,0.021412041,-0.000062560954,0.012101451,-0.010601797,-0.015135499,0.024666116,0.0004118257,-0.011279247,-0.005379066,-0.04527911,-0.000036143312,0.030201515,-0.010237017,0.01100711,-0.02448083,-0.04196714,0.042152423,-0.005975453,0.028788716,0.045672845,-0.010127003,0.031776443,-0.0044642193,0.0035406877,0.041619726,0.02688954,0.01240254,0.017961102,0.00032823015,-0.00016881958,0.021516263,-0.00198458,-0.014730187,-0.01309736,0.001915098,-0.04560336,-0.013583734,-0.010242807,-0.022500593,0.031915404,-0.0041631307,-0.04029957,-0.012865753,0.0039141537,-0.018377993,0.0021568376,0.026472649,0.007347723,-0.019003332,0.018111646,0.0042152423,0.004713197,-0.019443383,0.009426394,0.011076591,-0.03272603,-0.025036687,-0.008303101,0.04277776,0.01759053,-0.0015980863,0.017787395,-0.017162059,-0.013363708,-0.0034538351,0.015575551,-0.03173012,0.022894325,-0.011516644,0.0059580826,-0.011788782,0.014996535,0.03101214,-0.017382083,0.010422302,0.0048232097,-0.037103396,-0.044584293,0.0032338088,-0.010856565,-0.020833025,-0.004102334,0.008482596,-0.00075272185,0.014348036,-0.022685878,0.033837743,0.03003939,-0.01893385,-0.00039626463,-0.015448168,-0.020890925,-0.0068845097,-0.02207212,0.021249916,-0.0028241544,-0.0015488699,-0.008830006,-0.023010127,-0.016988352,0.0011732328,-0.017775815,-0.004180501,-0.01757895,-0.00006355614,-0.009160046,-0.017162059,-0.03999848,0.013919564,-0.00111895,0.027468557,0.017023094,-0.0036738615,0.008459436,0.029877266,-0.026403166,-0.038585678,-0.0009351121,-0.0434031,0.013722698,-0.006357604,-0.044213723,0.009698532,0.032563906,-0.021157274,-0.037381325,0.022002637,-0.041156515,0.023739688,0.030155195,-0.004692931,0.0018282455,-0.03485681,-0.00826257,-0.018123226,0.00007386988,-0.012923655,0.019130714,0.022176344,-0.022292146,-0.016363015,0.016189309,0.020323489,-0.0068497686,0.0031614318,-0.044815898,0.020740382,-0.02619472,0.00621864,-0.017382083,-0.011713509,-0.057206858,-0.0038736223,-0.022627976,0.017694753,0.013027878,-0.0042152423,0.041249156,-0.006965572,0.022245824,0.03205437,-0.045116987,0.043889474,0.02827918,-0.012170933,0.00056490325,0.0037491338,-0.03166064,0.0022263196,-0.011528225,-0.011325569,0.0213773,0.031822763,-0.010370191,-0.004420793,-0.012587825,-0.013317387,-0.019478125,-0.013074199,0.034578882,0.040901747,-0.010069102,-0.019072814,0.038817286,-0.009270059,0.0037086026,0.0031295859,0.0053008986,0.012680468,-0.00017433833,-0.013305806,-0.0073303524,0.050582908,0.0061259978,-0.008453645,-0.023589144,0.017509468,-0.030687891,0.0022900114,0.0044960654,-0.011817733,-0.02793177,-0.015251302,-0.004426583,0.00792674,0.017370503,0.0037346582,0.0037665043,0.02825602,0.008007802,-0.00056598894,-0.007301402,-0.022917485,0.00042304414,-0.0025317508,-0.009530616,0.019385483,0.011771412,0.012634146,0.0036275403,-0.0019527341,-0.01032966,0.055678256,-0.008169927,-0.027885448,-0.012900494,0.00793253,0.021562586,-0.0044671143,-0.011232926,0.0503513,-0.0001735241,0.018574858,-0.0049216426,-0.018748565,-0.008604189,-0.025963113,-0.0021452573,-0.037126556,-0.009547987,0.0068381885,-0.023230154,0.0077067134,0.021967897,-0.010294919,-0.022280566,0.0066413227,0.009611678,0.03701075,0.0013042353,-0.0032946055,-0.0041254945,-0.022211084,0.008604189,0.025523061,-0.01622405,0.03550531,-0.012657307,0.013664796,-0.020960407,0.0028212594,0.023647046,0.0020091883,-0.025592543,0.020612998,-0.017764235,-0.0073303524,0.03698759,-0.03552847,-0.0007360751,0.010711811,-0.011105542,0.0119856475,0.013850082,0.011678768,0.010219647,0.006959782,-0.020091882,-0.013745858,0.017683173,-0.0039228387,-0.014185911,0.01346793,-0.002281326,-0.026403166,-0.019072814,0.011510854]},{"id":"guide-permissions-6","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: Managing roles\nCreate, fetch, edit, and delete roles with guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Use resolvePermissionsToBitfield() for permission bitfields. See the Roles guide for full examples.\n\n```javascript\n// Create a role with specific permissions\nconst role = await guild.createRole({\n name: 'Mod',\n permissions: ['KickMembers', 'BanMembers', 'ManageMessages'],\n});\n\n// Add/remove roles from members\nawait guild.addRoleToMember(userId, roleId);\nawait guild.removeRoleFromMember(userId, roleId);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.030056402,0.049418654,0.026610045,0.015842794,-0.03201978,-0.008762099,-0.037450403,0.021471841,0.03041148,0.03991507,0.040499903,-0.023539655,0.029889306,-0.023915622,0.0053287973,-0.006997147,-0.03941378,0.014234494,0.03843209,0.051214937,0.0380979,0.03068301,-0.0145478,0.028782293,-0.06876002,0.023268124,0.012218898,0.04402981,-0.023978284,-0.041565143,0.053136542,-0.01016675,-0.007352226,-0.019466689,-0.02993108,-0.026108757,0.0353617,0.009378266,0.003699611,0.008903086,-0.012030915,-0.014673121,0.013503449,-0.017628632,-0.021430068,0.031079864,-0.021127207,0.03389961,0.018913183,0.029951967,0.0055193915,0.040249262,0.0045690327,0.09148508,0.02176426,0.03237486,-0.06307876,0.022766836,-0.037909914,0.040416356,-0.016030777,-0.040228374,-0.013158814,0.018923627,-0.0015195297,0.028719634,-0.08542785,0.003088666,0.007947505,0.0646244,0.020396162,-0.033189453,0.02629674,-0.0024281144,0.031267848,-0.035737667,0.039100476,0.034693316,-0.005292245,-0.013785424,-0.0072739,0.018819192,-0.057522815,-0.021179425,0.0092163915,0.028677858,-0.025356825,-0.017576415,0.010976122,-0.05296945,-0.027675282,-0.04833253,-0.06884357,0.0069449292,0.0027910261,-0.03557057,-0.008386133,0.01795238,-0.01273063,0.060446996,0.059820384,0.0049476097,-0.069846146,-0.009994432,0.026610045,0.018370122,-0.032604616,0.05965329,-0.012438212,0.0068457164,-0.10660728,0.027403751,0.03199889,0.008605447,-0.005858805,0.017054241,0.026839802,-0.03557057,0.020772127,-0.027090447,-0.081626415,-0.031873573,0.023247238,-0.04979462,-0.027717058,-0.021450955,-0.03828588,-0.06358004,-0.024437796,0.01147741,0.01457913,-0.0022975707,0.06291166,-0.056603786,-0.045283027,-0.0010639318,-0.0016592116,-0.030453255,-0.015153523,-0.030327933,0.0062713237,0.0045089824,0.0069658165,0.044322226,-0.05042123,-0.015090861,-0.04235885,-0.021680713,-0.07782499,0.023957396,-0.046995763,-0.01830746,-0.0057700356,-0.029053826,-0.033795174,-0.029032938,-0.010229412,0.0237903,-0.051925097,-0.024646668,0.0060206796,-0.021221198,-0.0054306216,-0.025795452,0.0001368262,-0.060864735,0.0015547764,0.023080142,-0.021743374,0.037283305,0.010532273,-0.02322635,-0.01869387,-0.028281005,0.015404167,0.013660102,0.0031957119,-0.035403475,-0.006448863,-0.027946813,0.0024281144,-0.020855675,-0.029304469,0.0027753608,-0.04478174,0.012030915,-0.011926481,-0.0038353764,-0.03995684,-0.00058418344,0.0078065186,0.029262695,-0.0075924266,0.002596516,0.034108482,-0.0042687817,0.014631348,0.020939223,0.010923904,-0.047204632,0.01013542,0.011122331,0.051423807,-0.00085636723,-0.026735367,-0.038808055,-0.02874052,-0.022202887,-0.0042922795,-0.010506164,0.004738739,-0.034066707,0.016270978,-0.011623619,-0.04087587,0.027006898,-0.032437522,-0.027821492,-0.017670408,-0.005649935,-0.030119063,-0.039455555,-0.0031199965,-0.008412242,0.04164869,0.012511317,-0.00814071,0.01058449,0.04045813,0.025899887,0.0002945394,0.018411895,-0.025482148,-0.047246408,0.018850522,0.0027466412,-0.0011461745,0.035319928,-0.001818475,-0.02888673,-0.0012251534,-0.027633509,-0.020323057,-0.003824933,0.029555114,-0.030181723,0.025732791,-0.002603043,0.026798028,0.0134616755,0.0561025,0.03103809,0.026610045,0.0127828475,0.010098867,-0.020646805,-0.001660517,0.050337683,-0.019310037,0.04198288,-0.010396508,-0.017043797,-0.003595176,-0.015550376,-0.0379308,0.020563258,-0.005059877,0.008328694,-0.024876423,-0.05944442,0.00069775654,0.02343522,0.021179425,-0.07565273,-0.03252107,-0.0059736837,0.038975153,-0.00861589,-0.031894457,-0.013597441,0.009190283,-0.013493006,-0.004616028,0.017096015,0.0035168496,0.038411204,-0.01580102,-0.03887072,0.0128663955,0.015727915,0.020866118,-0.02211934,0.0060206796,-0.0029059048,0.036030084,0.0033967493,0.03398316,-0.01729444,0.037471287,0.05042123,-0.021806033,0.057857007,-0.011383418,-0.031936232,0.03824411,-0.016876701,-0.051047843,-0.04031192,0.009519253,-0.058776036,0.044865288,0.025732791,0.0035168496,-0.016532065,-0.028782293,-0.022098452,0.023957396,-0.009273831,0.022223774,0.017973268,0.041878447,-0.012114463,0.004869283,-0.011132774,0.0036421716,-0.03682379,-0.034150254,0.007033699,0.03124696,0.00028442228,0.050755423,0.010986565,-0.010171972,0.054389764,0.009999654,0.03139317,0.012479986,0.1014273,0.019122055,-0.02734109,0.029408904,0.02665182,-0.018015042,-0.009587136,-0.02721577,-0.0034359125,-0.0035168496,0.02155539,0.011393862,0.024730215,-0.01821347,0.046285603,-0.027549962,-0.048959143,-0.039142247,-0.03139317,0.045993187,-0.031581152,0.0056603784,0.0147357825,-0.05768991,-0.017722625,-0.010955235,-0.014474695,0.03828588,0.023560543,-0.015748803,-0.011101443,-0.010809026,-0.0022322987,-0.0073261173,0.03272994,-0.05840007,-0.0062556583,-0.017764399,-0.0152475145,-0.01681404,0.0065010805,-0.01395252,0.0075558745,0.012594865,0.012594865,0.00933127,-0.055308793,0.0057491483,-0.0055768304,-0.008788208,0.007232126,0.009675905,-0.018056817,0.0028719632,0.051298488,0.05923555,0.04465642,-0.019905316,-0.00897619,0.06621181,0.055726532,0.014610461,-0.03293881,0.011832489,0.036510486,0.019122055,0.017962825,-0.017785285,-0.03179002,-0.03068301,0.023351673,0.014004737,-0.029784871,0.02280861,0.045658994,0.02295482,-0.03179002,0.058984905,-0.045324802,0.048457853,-0.025795452,0.024521345,-0.0021278637,-0.04164869,-0.0020939223,-0.008067606,-0.023247238,0.038202334,-0.026672706,-0.010109311,-0.018756531,-0.010521829,-0.02197313,-0.06633713,0.04703754,0.0019046338,-0.0061303363,-0.0050520445,-0.026818916,0.013733206,-0.051298488,-0.0072947866,-0.004751794,0.00986911,-0.022244662,-0.0019894873,0.030703899,0.008156376,-0.01672005,-0.005613383,-0.09892086,0.03369074,-0.0028693525,0.0027205325,-0.0035481802,0.0025234113,-0.004266171,-0.012814178,-0.014746226,0.015059532,0.019090723,-0.05029591,-0.00035540547,-0.041460708,0.008234702,0.051256713,0.04072966,-0.04075055,0.014067398,-0.035048395,-0.004490706,-0.0068039424,-0.029889306,0.009237278,0.01723178,0.016970692,-0.023602316,0.022662401,-0.009049295,-0.0030286158,-0.030098176,0.011007452,0.051507358,0.018485,0.019947091,-0.012354664,-0.0055611655,0.017879277,0.05810765,0.034317352,-0.0019085502,-0.03055769,0.017973268,-0.06057232,0.026129644,0.008636777,-0.006516746,-0.0057230396,-0.028991165,0.026150532,-0.043570295,0.011487853,0.026359402,0.027549962,-0.04561722,-0.029784871,0.024771988,-0.06090651,-0.0035586236,0.018255243,-0.025440373,0.018025486,0.062828116,-0.046578024,-0.01737799,-0.0010391285,-0.027988588,0.0025390766,-0.015487715,-0.03878717,0.05058833,0.0014503414,-0.02155539,-0.018495444,0.0580241,0.04221264,-0.010965678,0.0034306906,0.016166542,-0.0050912076,0.016552953,0.016563395,-0.013910746,0.021680713,-0.010662816,0.021785147,0.01645896,-0.009926549,-0.022286436,0.0072373473,0.03605097,0.02197313,-0.04198288,0.00849579,0.03362808,-0.028343666,0.0043105558,-0.035466135,-0.021054102,-0.017722625,0.0010378232,0.011926481,0.037053548,0.02015596,-0.051214937,-0.032980584,-0.0046395264,0.0005815726,0.0050076596,-0.025774565,-0.031309623,-0.0077438573,-0.009195505,0.02343522,-0.022787724,0.015780132,-0.018182138,-0.058358293,-0.029408904,0.01821347,0.02006197,0.0072947866,-0.03878717,-0.00697626,0.023915622,0.027382866,0.018610323,0.0009229446,0.013043935,-0.031852685,0.029596888,-0.005378404,0.0063548717,-0.00757154,-0.05351251,0.015602593,0.0062086624,-0.03272994,-0.03724153,-0.0085375635,0.015936786,-0.009712458,0.009472257,0.011226766,0.010485277,-0.0021879137,-0.012260673,-0.0063966457,0.007519322,0.0040651336,0.039309345,-0.037993465,-0.008819538,0.01583235,-0.0022349097,-0.049543977,0.0109970085,-0.029972853,-0.019518906,0.051799774,-0.003404582,0.016490292,0.013900302,0.017075127,-0.019310037,-0.02510618,-0.008850869,0.0001513492,-0.032980584,0.0072425692,0.011247653,0.014892436,0.026693594,0.016479848,-0.013670545,0.015049088,0.009054517,-0.0138063105,-0.006161667,-0.017513754,-0.009279053,-0.021242086,-0.02107499,0.03055769,-0.027257543,0.031267848,-0.008072828,-0.025795452,-0.042463284,0.034421787,0.031434942,0.0120204715,-0.017398875,0.028552538,-0.03055769,0.009252944,-0.03878717,-0.0005169534,-0.0055089477,0.0037988243,0.0020860897,-0.023080142,-0.021889582,-0.045575447,-0.009498366,-0.005125149,-0.029032938,0.018578991,0.0073835566,-0.013096153,0.022516193,-0.0013602662,0.001764952,-0.013367684,-0.0063809804,-0.01496554,0.026902463,0.03655226,-0.025147956,-0.045575447,-0.0014464251,-0.01576969,0.0237903,-0.025231503,0.024667554,-0.00998921,0.014255381,0.019602455,0.012824622,-0.006412311,-0.03366985,0.024646668,0.03569589,0.0048614508,-0.010339068,-0.004117351,-0.018265687,0.012573978,-0.027048673,0.013962964,0.0005822253,0.034839526,-0.043570295,0.01556082,0.0031252182,0.0120204715,-0.032186877,-0.020176848,0.03697,0.03153938,-0.010647152,0.025064407,-0.056269594,-0.009973546,0.028907616,0.009127622,-0.030599464,-0.012594865,0.005313132,0.011446079,0.06257747,0.0055455,-0.018088147,-0.035487022,0.0006096395,-0.030912768,0.010798582,0.0023719806,-0.010250298,-0.029596888,-0.03402493,0.03496485,-0.006574185,-0.00939393,0.04260949,-0.0014542578,-0.00515648,-0.039685313,0.02044838,0.022516193,0.02915826,-0.010339068,-0.019560682,-0.0027414195,0.0055977176,0.035883877,0.0011527017,-0.025858114,-0.002247964,0.0037936023,0.00995788,-0.022432644,0.015633924,0.011404305,0.0063809804,-0.009743788,-0.024458684,-0.037450403,-0.032625504,-0.007613314,0.00077086105,-0.00524786,0.045032386,-0.023811188,0.0042322297,-0.011613175,-0.03473509,0.013733206,-0.044907063,-0.05225929,0.009550584,-0.024103604,0.04143982,-0.0000547468,0.057940554,-0.0062138843,0.018599879,-0.050880745,-0.01949802,-0.0011683669,0.006109449,0.010976122,0.024082718,-0.007916175,0.0049476097,0.013137926,0.005041601,0.037408628,-0.007075473,0.007869179,0.012385994,0.010072758,-0.042108204,-0.0021161148,0.023727639,-0.00047811662,-0.038954265,-0.009038852,-0.006694285,0.0039189244,-0.010485277,-0.0019216045,-0.032750826,-0.04904269,0.024918199,-0.019508464,0.043904487,-0.038954265,-0.03028616,-0.022683289,-0.06662955,-0.014767113,0.046369154,-0.03293881,-0.0017923662,-0.008401798,0.031434942,0.04833253,0.02120031,-0.018380566,0.0066264025,-0.05071365,0.016124768,0.01395252,0.028281005,0.011842933,-0.003908481,-0.009874332,0.0038588743,-0.004960664,0.02608787,-0.02027084,-0.038828943,-0.027821492,0.025210615,0.002408533,0.026359402,-0.027842378,0.047204632,-0.0062556583,0.0016474626,0.035027508,-0.0008165514,0.0017310106,-0.034860414,0.029534226,0.020605031,0.028113909,0.040583454,-0.03544525,0.007895288,0.01105967,-0.028489877,-0.020793015,0.014662678,-0.014526913,0.033314776,-0.0041774013,0.0075558745,0.022683289,0.013931633,0.0022231606,0.03864096,0.014694009,0.021210754,-0.019404028,-0.0098064495,0.03997773,-0.037366852,-0.007106804,0.034212917,-0.025482148,-0.0037701046,0.015487715,0.02623408,-0.015811464,-0.016824484,-0.026630932,-0.02018729,0.022161113,-0.0031330509,0.021785147,0.013493006,0.034317352,-0.00903363,-0.024291588,-0.0115922885,0.00058516255,-0.034212917,-0.011456523,-0.019947091,0.020709466,0.033878725,0.0015156134,0.043653842,-0.010448725,-0.031706475,-0.0062243277,-0.011916037,-0.015748803,0.061407797,0.016949804,0.004540313,-0.030390594,0.01952935,0.0062922104,-0.029032938,-0.0070075905,0.02211934,-0.0100675365,-0.039225798,0.0026670096,-0.0092425,-0.018944515,-0.0038301547,0.0077960747,0.006600294,-0.026129644,-0.026359402,0.0052034752,0.00022486167,0.01812992,-0.016270978,-0.017409319,-0.03849475,-0.0027074781,0.025503034,0.03621807,0.027925927,-0.027382866,0.0010541411,0.016062107,-0.010819469,0.025920775,0.0056238263,0.020135073,0.005153869,-0.0071329125,0.00089814124,0.0090023,-0.01684537,0.020845233,0.028698746,0.00861589,-0.002542993,-0.03308502,0.021409182,0.039330233,-0.02406183,0.008991856,0.007435774,0.019038506,-0.01747198,0.05840007,0.008072828,0.040667,0.019571124,0.033502758,0.01625009,0.025983436,-0.0040938533,-0.023497881,0.022620628,-0.023393447,-0.026798028,0.03321034,0.011132774,0.06746503,0.013764537,-0.0071120253,-0.00096798217,0.037450403,0.027090447,0.01437026,-0.03402493,0.012030915,0.0077595226,-0.019163828,0.0021565834,-0.032040667,0.0030286158,0.0011879485,-0.012333777,0.04946043,0.011999585,0.035215493,0.028072136,-0.015310176,-0.019341368,0.03201978,-0.015905455,-0.0030808335,-0.019602455,-0.008443573,0.041356273,-0.025962548,-0.01105967,-0.049084462,0.0053444626,-0.015017757,-0.003762272,0.02358143,0.031643815,0.016678274,0.017148232,-0.042317074,0.027717058,-0.032980584,0.0071746865,-0.011916037,0.024939084,-0.009634132,-0.028113909,0.032437522,-0.03369074,-0.014798444,0.0100623155,-0.0013955131,-0.003383695,0.034839526,0.020594588,0.004642137,0.003404582,0.0036421716,0.012385994,-0.020343944,-0.01768085,-0.007738636,0.007644644,-0.0020978386,-0.027111333,-0.01398385,-0.007561096,-0.021492729,-0.004749183,-0.016772266,-0.010401729,0.005065099,-0.024792876,-0.007352226,0.026108757,0.013012605,-0.024688441,-0.023685865,0.039873295,-0.011320757,0.021743374,0.012678413,-0.02191047,0.0046917438,0.0052008643,0.05259348,-0.019936647,-0.015884567,-0.012459099,0.001270191,0.027591735,0.039434668,0.01105967,-0.0058953576,-0.009294718,0.010119754,-0.009487922,-0.028865842,0.03866185,0.017889721,0.012761961,0.0062974324,0.031079864,-0.014620904,0.01580102,0.019487577,-0.039246686,-0.02239087,0.0094670355,-0.00036258536,0.014380704,-0.009702014,0.025774565,-0.01129987,0.017513754,-0.006991925,-0.0054776175,-0.009232056,-0.01795238,-0.003762272,-0.02128386,0.012427769,0.0011631452,0.0076811966,-0.024751103,0.002710089,-0.030056402,0.040646113,-0.025022633,0.0044672084,0.011049226,-0.031017203,-0.0014777557,0.027278429,0.012887282,0.020678136,0.00067491137,-0.03697,0.026463836,-0.0115087405,-0.018464113,0.009362601,0.008057162,0.0032218206,-0.011644506,-0.024813764,-0.031017203,0.03258373,-0.0059580184,-0.00156522,0.038828943,0.010187637,0.006114671,0.028134797,0.014443365,0.019477133,0.03828588,-0.019059394,-0.0007747774,0.008991856,-0.0066368463,-0.0056029395,0.00399464,-0.023059255,-0.012605308,-0.010036206,0.017879277,0.021847809,-0.020573702,0.0092425,0.008516677,0.0056603784,-0.0038771504,-0.027549962,0.027403751,-0.017973268,-0.02197313,-0.04235885,-0.008098937,-0.030599464,0.0041408488,0.024730215,0.02120031,-0.011310314,-0.007038921,-0.006595072,-0.0014346762,0.023497881,0.003213988,0.024228927,0.028009474,-0.052342836,-0.0012754127,0.017837504,0.055977177,0.030662125,-0.035883877,0.00518781,0.063454725,0.0053888476,0.029325357,-0.026526498,0.0058535836,0.019487577,-0.008970969,-0.006746503,0.0077543007,0.023915622,-0.009936993,-0.017983712,-0.026547385,0.024709327,0.021242086,0.018537218,0.0040442464,0.0019672948,0.009973546,-0.001827613,0.017169118,-0.021513617,0.0028432438,-0.046786893,0.01660517,0.007456661,-0.0063496497,0.01514308,0.022913046,-0.0017962825,-0.04068789,0.017513754,0.0385783,-0.0028275785,0.017921051,0.015842794,0.0075872047,0.0015534711,0.039580878,0.025503034,0.002575629,-0.0072582345,-0.017033353,-0.01562348,-0.054306217,-0.01025552,-0.05050478,0.057146847,0.028030362,-0.016176986,0.0054723956,0.007947505,-0.008260811,0.008997078,-0.014119616,0.004814455,-0.025732791,0.04037458,-0.037304193,0.012166681,0.00849579,0.0057543702,0.0005518739,0.0071537993,0.02406183,0.013774981,-0.018996732,0.019393586,0.00023873195,0.018359678,0.042379733,0.009289496,0.043152556,-0.018453669,-0.0033863059,0.009174617,0.003887594,-0.019268263,0.04386271,0.04164869,-0.034275576,0.044405773,0.011341644,-0.053470735,0.015529489,0.016208317,-0.0058953576,0.009404374,0.0031669922,0.037262417,0.012500873,0.014109173,0.00024835955,-0.0121040195,0.004012916,-0.017900163,0.0033497536,0.0010182415,0.0076655312,0.0018563326,0.015863681,0.008527121,0.009534918,0.02406183,0.032458406,0.027278429,0.030578576,-0.021534503,-0.036656696,0.003448967,-0.021701599,-0.02623408,-0.0030260049,0.002039094,0.04039547,-0.018714758,0.036594033,0.055099923,-0.005320965,0.03828588,0.011999585,0.013221474,-0.0015626091,-0.0074096653,0.036343392,0.0065898504,-0.0039006483,0.035737667,-0.0009000994,-0.0065637417,-0.036238953,-0.014443365,0.029889306,-0.021179425,0.009085848,0.0038928157,-0.05652024,0.024855537,0.011581845,-0.018443227,0.00033680297,-0.03571678,-0.005858805,0.015320619,0.01878786,0.019205602,-0.015863681,-0.016928919,-0.016438074,-0.01576969,0.0014046511,0.022704175,0.013357241,-0.021409182,-0.017628632,-0.024500458,0.020469265,-0.0060833404,-0.00962891,0.0011709777,0.0015378058,0.00040240123,0.026484724,-0.013848085,0.013764537,0.021252528,0.01016675,0.0071955733,-0.022578854,-0.00055122114,0.03500662,-0.026046095,0.017806172,0.032980584,-0.020103743,-0.02071991,-0.01928915,0.00047517937,0.0032400968,0.0011755468,-0.012427769,-0.0047544045,0.01764952,-0.009597579,0.017315328,0.04457287,-0.01645896,0.0035690672,-0.019017618,-0.013273693,0.009843001,-0.0043131667,0.043361425,-0.020678136,-0.002036483,-0.020302169,-0.027821492,-0.01943536,-0.011487853,-0.010391286,-0.029179147,-0.015529489,-0.0072112386,0.011080557,0.008208593,-0.030348819,-0.017492868,0.019560682,0.05071365,0.04402981,0.006997147,0.0014555632,0.024187153,-0.0020834787,-0.008678551,0.040499903,-0.018443227,-0.002412449,0.00007440996,-0.015821908,0.00004581271,-0.0031800466,-0.0334401,0.010547938,-0.011498297,0.006788277,0.0031748249,-0.012918613,-0.0037492176,0.0054567303,-0.015153523,-0.030495029,-0.013827198,-0.012887282,-0.0060990057,-0.00045853504,-0.033168565,-0.010208524,-0.01297083,0.018923627,0.007926619,0.0064227544,0.024396023,-0.042442396,-0.011613175,-0.013701876,0.0045481455,-0.001114844,-0.023832073,0.004775292,-0.010568825,-0.012198011,0.007561096,-0.017315328,-0.0031069422,0.023936508,0.008182485,-0.0008387438,0.017210893,-0.043695617,0.053804927,0.0034959626,0.0053392407,0.010965678,0.022662401,-0.039852407,-0.0103234025,-0.009169396,-0.010798582,0.0018615545,0.0025077462,-0.011623619,0.01672005,-0.012041359,0.012239786,-0.020135073,-0.04277659,0.014600017,0.061407797,0.0077647446,-0.0036317282,0.035821214,-0.037199758,0.024020057,-0.013649658,0.0008929195,0.036322504,0.0042583384,-0.009258165,-0.018944515,0.04102208,0.009816892,0.009910884,-0.027236655,0.010365177,-0.0032479295,-0.031226074,-0.01311704,0.007895288,-0.000940568,0.0012003501,0.013012605,0.014255381,0.0025247168,-0.01949802,0.004660413,0.020072412,-0.015320619,0.0074671046,-0.046285603,0.02092878,-0.02874052,0.0021761649,-0.028364554,-0.017628632,-0.03417114,0.013169257,0.000608334,0.008897864,0.0006892712,0.059736837,-0.018150808,-0.02498086,-0.026192306,-0.0012225426,0.013597441,0.009670684,-0.00038771506,0.021597164,-0.024709327,-0.007038921,0.0135452235,0.0010038817,-0.0012231952,-0.0072425692,-0.002394173,-0.010339068,0.0067203944,-0.02602521,-0.0077073053,0.015571263,0.009712458,-0.0015900233,0.0043967147,0.024730215,0.0016566006,0.034066707,0.010631486,0.02504352,-0.014203164,-0.000033941385,-0.015393724,0.058776036,-0.010621043,0.029951967,-0.009503588,-0.013660102,0.009968324,-0.010819469,0.018150808,0.032437522,0.026986012,0.025440373,0.000055440316,0.010386064,0.009195505,-0.032750826,-0.0116758365,-0.008464459,-0.023184577,-0.010427837,-0.030891882,-0.030495029,0.022182,0.030495029,0.0007649866,0.0069605946,0.027278429,-0.009472257,0.006370537,0.0031617705,-0.0027205325,-0.022286436,-0.033711627,-0.013586997]},{"id":"guide-permissions-7","type":"guide","source":"guides","text":"Guide: Permissions (permissions)\nSection: PermissionFlags reference\nCommon flags: BanMembers, KickMembers, Administrator, ManageRoles, ManageChannels, ManageGuild, ViewAuditLog, ManageMessages, SendMessages, EmbedLinks, AttachFiles, ReadMessageHistory, MentionEveryone, Connect, Speak, MuteMembers, ModerateMembers, CreateExpressions, PinMessages, BypassSlowmode.\n\n```javascript\nimport { PermissionFlags } from '/core';\n\n// Check multiple\nconst canModerate = perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator);\n\n// List all permissions the user has\nconst names = Object.keys(PermissionFlags).filter((name) =>\n perms.has(PermissionFlags[name])\n);\nawait message.reply(`Your permissions: ${names.join(', ')}`);\n```","meta":{"slug":"permissions","url":"/guides/permissions"},"embedding":[-0.026770255,0.02480112,0.0027963575,0.038560133,0.0014449145,0.031381518,-0.10528636,-0.005602062,0.026122184,0.022794597,0.021648012,-0.014955449,0.037887137,0.0077892966,0.010686914,0.0031484335,-0.033574983,0.0266207,0.039856274,0.04930313,0.040728673,0.0499512,0.0025065956,0.061516747,-0.061766006,0.005745385,-0.0064993887,0.03364976,-0.012307088,0.004838711,0.07462769,-0.01929253,0.000021870885,0.015640907,-0.020127542,-0.009122824,0.021311514,-0.015778,-0.015615981,-0.019940598,-0.02696966,-0.028091319,-0.008387514,-0.008711549,0.005458739,0.017248617,-0.04596308,0.012300857,-0.02602248,0.03569367,-0.024339993,0.02849013,0.0067611095,0.09382052,0.017161379,0.03247825,-0.055833675,0.012369403,-0.02375424,0.00910413,-0.012761983,-0.024227828,-0.030708522,0.006686332,-0.02025217,0.033550058,-0.045539342,-0.0005888708,0.042872287,0.07203542,0.04638682,0.020763148,0.013933494,-0.043944094,0.010007688,-0.01846998,0.050175533,0.032453325,-0.0033026617,-0.0063155615,0.01673764,0.05493635,-0.06425858,-0.011017181,-0.005545979,0.037488326,-0.013086018,-0.02228362,0.007128764,-0.070390314,-0.026371442,-0.018108556,-0.08230482,0.017335858,0.044342905,-0.037089515,-0.009010658,-0.00083189685,-0.009085435,0.061466895,0.09970299,-0.022121603,-0.062763035,-0.0074091787,0.027518027,0.02861476,0.017709745,0.012425486,-0.01673764,-0.009072972,-0.074478135,0.021972047,0.027044438,0.035743523,0.02254534,-0.019753655,0.012070294,-0.017796984,0.062065113,0.0032185372,-0.05688056,-0.022408249,0.0648568,-0.0097584305,-0.0047545866,-0.036217112,-0.045065753,-0.040653896,-0.041725703,-0.0037949453,0.031880032,-0.0350456,0.07717012,-0.054188576,-0.039407607,0.015503815,0.044990975,-0.019940598,-0.026421294,0.0024006611,0.011690176,-0.0019068198,0.009814514,0.036740553,-0.028415354,-0.027019512,-0.06859566,0.004327733,-0.074478135,0.018781552,-0.018681848,-0.008611846,-0.0060476097,0.005306069,-0.02293169,-0.042024814,0.038086545,-0.001860084,-0.045290086,-0.023180947,-0.017772058,-0.027542952,-0.015591056,-0.04626219,0.013721624,-0.008998196,0.0056674923,-0.0071038385,-0.011073263,0.015117466,-0.004240493,-0.036192186,-0.0060382625,-0.057578478,0.038360726,0.0027200223,0.0036266963,-0.001339759,-0.03975657,-0.01764743,-0.030010602,0.013497293,0.0029723956,-0.045315012,-0.04489127,0.012693438,-0.0136593105,0.0064183804,-0.0065492406,-0.010506203,-0.006022684,0.021996973,0.013472367,0.034347683,0.026097259,-0.037239067,0.027717432,-0.008524606,0.016799955,-0.050449714,-0.013447441,0.0054556234,0.07462769,-0.028041467,-0.025897853,-0.02926283,0.0069231265,-0.0050443485,-0.024701416,0.010911247,0.009702347,0.00910413,0.021934658,0.03295184,-0.03190496,0.013260499,-0.032278843,-0.018681848,-0.050823603,-0.0034864892,-0.030035527,-0.03312632,0.048106696,0.012687206,-0.015840312,0.039432533,0.027542952,0.010855163,-0.0041501373,0.024090735,-0.0068296553,0.024564326,-0.03207944,-0.043894242,0.023729313,-0.01331035,0.017049212,0.026770255,0.02128659,-0.013098481,0.0083625885,-0.007047755,0.000037680722,0.0083625885,0.011970591,-0.010979792,0.008044785,-0.020326948,0.028215947,0.028340576,0.09287334,0.013783939,0.026545921,-0.0057329223,0.01374655,-0.009739736,-0.018931106,0.06091853,0.009116593,0.023342963,-0.020999944,0.021573236,-0.0008996637,-0.03394887,-0.034198128,0.0042467243,0.017610041,0.016949508,-0.031755403,-0.043171395,0.01686227,0.016613012,0.03230377,0.0027356008,-0.020937629,0.004860521,0.046411745,0.010643295,-0.034572013,-0.013297887,0.0021856765,-0.0057858895,-0.003972541,0.0057204594,0.0057734265,-0.002413124,-0.0004062118,-0.041725703,0.022258693,0.021523384,-0.023766702,-0.014070585,0.02602248,-0.0048106695,0.040653896,0.047159515,0.04067882,-0.02215899,0.044642016,0.04673578,-0.00823796,0.016376216,-0.023218336,-0.022732282,0.029412383,0.009185138,-0.008549532,-0.0049415296,-0.017572653,-0.05957254,0.04626219,0.03564382,-0.024651565,-0.024639102,-0.071187936,0.00526868,0.0051627457,0.007994934,0.052094813,0.012755752,0.022296082,-0.02966164,0.007913925,-0.040953007,-0.004430552,-0.0228943,-0.001682488,0.005545979,0.045938153,0.006084998,0.052792735,-0.012986315,-0.005081737,0.0599215,0.005739154,0.0101884,-0.007708288,0.07103838,-0.002159193,-0.008767632,0.057129815,-0.005412003,-0.058575507,0.011067032,0.0013989577,0.0008700644,-0.045389786,0.0050225384,0.012026674,0.028390428,-0.01322311,0.021623086,-0.06366036,-0.037787434,-0.016937045,-0.032926913,0.023941182,-0.027742358,-0.026346516,0.010431426,-0.01903081,0.0028181674,-0.0101884,-0.025199931,0.019566713,0.013958419,-0.022495488,-0.008275349,0.027891913,-0.0069480524,0.019105587,-0.007047755,0.0042965757,-0.013347738,-0.00593856,0.004645536,-0.033550058,-0.0064931577,-0.026520997,0.021822494,0.029711492,0.005670608,-0.0007551723,-0.03335065,-0.022408249,0.009415702,0.0077643706,-0.004539602,0.0028306304,0.0028384195,0.0291382,0.027642654,0.032752432,0.009091667,0.011104421,0.019267604,0.06017076,0.07951314,0.0033307031,-0.04691026,0.020601131,0.040853303,0.008998196,0.030683596,0.00732817,-0.01608957,-0.044392757,0.034696642,0.039656866,0.0049010254,0.054687094,0.032926913,0.009340924,-0.015964942,0.065803975,-0.021934658,0.05727937,-0.016550697,0.021398755,-0.034347683,-0.014444471,0.009390776,-0.0052593327,-0.026396368,0.02315602,0.008599383,0.0039694253,-0.069393285,0.022844449,-0.049253277,-0.057528626,-0.030858077,0.016351292,0.023941182,0.008692855,-0.025548892,0.02315602,-0.020027839,-0.02319341,-0.034447383,0.0021778874,-0.0054088873,-0.0031312972,0.0021529614,0.005767195,-0.015341798,-0.015628444,-0.056681152,0.031680625,0.00037271783,-0.014581563,0.0031936115,-0.029063422,0.014058122,-0.08454814,0.0017977696,0.0307833,0.06724967,-0.005458739,0.008854873,-0.0383358,0.0307833,0.023729313,0.0041470216,0.017111527,-0.013036166,-0.013297887,-0.0054712016,-0.019541787,0.021373829,-0.0015407228,0.01409551,0.014207677,0.016712714,0.0126248915,-0.05189541,0.011571779,-0.045564268,0.04705981,0.01374655,0.041576147,0.012313319,-0.024352456,-0.008437366,0.014606489,0.04778266,0.075525016,-0.0046985038,-0.052992143,0.024265217,-0.07293274,0.020825462,-0.0029537012,-0.013360201,0.014893135,-0.041426595,0.0076085846,-0.04409365,0.016637936,-0.0006687111,0.006767341,-0.056731004,-0.033574983,0.013734087,-0.019915674,-0.012132608,-0.0007777612,-0.050100755,-0.020601131,0.023642072,-0.049627166,0.002491017,-0.022645043,0.008549532,-0.0061379657,0.00021225832,-0.044268128,0.02107472,-0.012724594,-0.014893135,0.02861476,0.03793699,0.022121603,-0.006698795,0.0049571083,-0.012587503,0.0059852954,-0.0025330791,0.011391067,-0.011210355,0.027169066,-0.013235573,0.03818625,-0.009016889,-0.0069729784,-0.012151303,-0.016899658,-0.01864446,-0.002114015,-0.05862536,0.017173842,0.02128659,-0.023280649,0.0050879684,-0.015491352,-0.013198184,0.003033152,0.033425428,-0.0008755169,0.006281289,0.008225497,-0.032752432,-0.049004022,0.00513782,0.0075961216,0.024003496,-0.031207038,-0.03230377,0.009048047,-0.011609168,0.019180363,0.00068312127,0.013883642,0.00033961333,-0.026221888,-0.03517023,0.02215899,0.04257318,0.03148122,-0.025748298,0.030459264,0.022919226,-0.015354261,0.034272905,0.01817087,-0.02271982,-0.030534042,0.01556613,-0.01647592,-0.0052406387,0.0026405714,-0.03364976,0.056830708,0.03335065,-0.003101698,-0.048655063,-0.0019784812,0.025274709,-0.04110256,-0.0065243146,0.0043900474,-0.0012135723,-0.00724093,0.014880672,-0.016899658,0.028091319,-0.008636772,0.016662862,-0.026271738,0.0019675763,0.014432008,-0.031805255,-0.03646637,-0.008337663,-0.000049948863,-0.0077207508,0.015179781,-0.034098424,0.0041470216,0.019529324,-0.02107472,-0.007216004,-0.05523546,-0.02189727,-0.024950674,0.0035238776,-0.0035238776,0.021672938,0.03008538,0.03230377,0.003819871,0.0053964243,0.0108302375,0.0044523617,-0.0047452394,0.004449246,-0.0037263995,-0.013771476,0.017423099,-0.019803507,0.03990612,-0.031730477,0.034821272,-0.010157242,-0.024626639,-0.004882331,0.029811196,0.00620028,0.016986897,-0.032453325,0.07941344,-0.032378547,0.03464679,-0.055385012,-0.0020735108,-0.027717432,-0.020302022,-0.006053841,-0.012637354,-0.015541204,-0.01985336,0.010475046,-0.022557802,-0.0071599213,0.011783647,-0.0122697,-0.0005273354,0.010306797,-0.03492097,-0.011870888,-0.008206802,0.0076210476,-0.011852194,0.019865822,-0.008792558,-0.023804089,-0.049751796,0.00910413,-0.0021529614,-0.0029973213,-0.010070003,0.037762508,0.0022230651,0.004421205,0.021386292,-0.018794015,-0.012562578,-0.028789239,0.024402307,0.03160585,0.019142974,0.036840256,-0.011571779,-0.008188108,0.018307962,-0.0025237321,0.00045684224,0.0074341046,0.016687788,-0.016239125,0.0051939026,0.02263258,0.029063422,-0.033176173,0.004904141,0.010880089,0.0333008,0.020090153,0.025523966,-0.06400932,0.010431426,0.018806478,-0.047209367,-0.024165513,0.01135991,0.0015329336,0.027218917,0.028290724,0.0064744633,-0.020887777,-0.041850332,0.016812418,-0.032104366,0.0030736565,0.004907257,0.0059447912,-0.022495488,-0.06281289,0.044168428,-0.0025657942,-0.007982471,0.012300857,0.006162891,0.028515056,-0.008568226,-0.0009331577,0.05035001,0.046835482,-0.020962555,0.0101884,-0.0029178704,-0.008001165,0.034073498,-0.0010274082,-0.03975657,-0.0069355895,0.019155437,0.021672938,-0.0515963,-0.0374634,0.00932223,0.017871762,0.007072681,-0.028016541,-0.044018872,-0.031979736,-0.03160585,-0.0025704678,-0.027842062,0.06286274,-0.021224275,0.009023121,-0.017996391,0.0007002578,0.013509756,-0.03601771,-0.04040464,-0.009671191,0.009247453,0.048580285,0.0115406215,0.07442828,-0.011204124,0.012437949,-0.025922779,0.0018242532,-0.029212978,-0.002347694,0.0016684673,0.011197893,0.0070352927,0.0083252,0.013472367,0.008343894,0.039183278,0.00630933,-0.028938795,-0.02280706,-0.012699669,-0.024626639,-0.00033571868,0.023255723,-0.0018164639,-0.026047407,-0.016924582,-0.02931268,0.020065228,-0.023205873,-0.041426595,-0.019479472,-0.032926913,0.010655757,-0.016463457,0.0078017595,-0.035195157,-0.012581271,-0.0025782571,-0.081108384,-0.018831404,0.025461651,-0.037612956,-0.030035527,0.0145691,0.021872343,0.047009964,0.013297887,-0.023604684,0.023654535,-0.024352456,0.007864074,0.020302022,0.039681792,-0.009596413,0.017934076,-0.0023710618,0.04955239,-0.0078079905,0.010986024,-0.015217169,-0.05289244,0.02644622,0.009284841,0.01691212,0.0023835248,-0.0077332132,0.012755752,0.0038946483,-0.01331035,0.020862851,0.012718363,-0.013995808,0.009615107,0.010437657,0.01422014,0.0029661641,0.0018351582,-0.053839616,0.0037388622,-0.001471398,-0.035394564,-0.031456295,0.031880032,-0.010400268,0.010437657,0.0027823367,0.011067032,0.0071225325,-0.010905015,-0.009016889,0.019741192,0.017709745,0.022869375,-0.00205949,-0.031630773,0.046187412,-0.010767924,-0.0011434687,0.006066304,-0.00801986,0.021909732,0.007402947,0.037014738,0.009284841,-0.02536195,-0.034073498,-0.0017525917,0.0019457663,0.015491352,-0.005527285,0.020837925,0.050574344,-0.004436783,0.0021872343,0.005056811,-0.013248036,-0.014768506,-0.013073555,-0.026471145,0.047458626,0.016276514,0.023218336,0.042099588,-0.0008910955,-0.01964149,0.004539602,-0.013958419,-0.009745968,0.07397962,-0.0055490946,0.012001748,-0.0023726197,0.025449188,-0.020912703,-0.0051128943,0.033749465,0.028714463,-0.019516861,-0.0043370803,-0.00269977,0.0009721042,-0.028564908,0.00637476,0.014893135,-0.014942986,-0.004982034,0.006599092,-0.009253684,-0.007184847,0.021834956,-0.0064183804,0.008960807,-0.047583252,-0.008724012,0.032627806,-0.0040036985,0.007932619,-0.004763934,0.015603519,0.0069792094,-0.02896372,0.0033961332,0.029387457,0.0027356008,-0.01079908,0.01686227,-0.008337663,-0.009683654,-0.031755403,0.017472949,0.0046330737,-0.0024084505,0.00070687867,-0.02051389,0.030434338,0.02632159,-0.01691212,0.037737582,0.003001995,0.015404113,0.019791044,0.053091843,-0.0002993037,0.042498402,0.005701765,0.023916256,0.010325491,-0.017497875,0.009777125,-0.028764313,-0.005739154,0.030883003,-0.032901987,0.029537013,-0.002313421,0.033973794,-0.055434864,0.02389133,-0.007010367,0.031157186,0.016588086,-0.007029061,-0.01331035,0.025773223,-0.014444471,-0.014020734,0.014955449,0.025486577,0.017697282,-0.053839616,0.0047452394,0.015429039,-0.0010772597,0.034198128,0.048331026,-0.018719237,-0.016588086,0.03429783,0.021436144,0.0064059175,-0.020102616,-0.0023445783,0.024364918,-0.0133228125,0.008063479,-0.03307647,-0.010325491,-0.01820826,0.0065118517,0.018893717,0.05832625,0.030259859,-0.0014067469,-0.043595135,0.0047016195,-0.0065617035,-0.023268186,-0.0048636366,0.023654535,0.011802342,-0.008424903,0.0064059175,-0.03048419,0.0041345586,-0.013185721,0.0016669094,-0.0034459848,0.04920343,0.025897853,0.014843283,-0.008730243,-0.00927861,0.006642712,-0.022682432,0.026570847,-0.022956615,0.006518083,0.029038496,-0.0111916615,-0.0069605154,-0.005583368,0.021959584,-0.015628444,-0.01331035,-0.0332011,-0.015516278,-0.02397857,0.014594026,0.007845379,-0.0000067365245,-0.015179781,-0.00626571,0.05388947,-0.013821327,0.00023776827,0.031032557,0.0069729784,-0.0017416867,0.0038510282,0.0358183,-0.028589834,-0.005249986,-0.00496334,0.00022121602,0.011602936,0.023617147,-0.0036921266,-0.0013093808,-0.0075338073,-0.005265564,-0.0005557663,-0.020314485,0.024315068,0.003664085,-0.008599383,0.0005226618,0.028290724,-0.013958419,-0.01153439,0.008262886,-0.032378547,-0.036266964,0.012518957,0.015017764,0.0069916723,-0.026346516,0.035494264,-0.011253975,0.0036173493,-0.004218683,0.0057516163,0.017323395,-0.039183278,-0.013734087,-0.0350456,0.024564326,-0.02996075,0.025848001,-0.027842062,-0.0032372316,-0.030284785,0.018619534,-0.04349543,0.017971465,0.012363171,-0.03300169,-0.0027527374,0.015927553,0.021049794,0.0050755055,0.020439114,-0.029287754,0.014020734,-0.02966164,-0.00546497,0.0037980608,0.022458099,0.008443598,-0.02814117,0.008680392,-0.035743523,-0.018482443,0.0000239886,0.010007688,0.0054867803,0.01565337,-0.0015905743,-0.0062065115,0.00091056875,-0.0008988848,0.015516278,-0.0026608238,0.012836761,0.010144779,-0.017373247,-0.02063852,0.018183334,-0.0008451387,-0.0013366432,-0.020002913,0.021124572,0.030808225,-0.017510338,-0.013559607,0.0033743232,0.002911639,-0.007440336,-0.030907929,0.019018346,-0.010593443,-0.022383323,-0.023604684,-0.03382424,-0.016239125,-0.0037731351,0.016812418,0.028539982,-0.0005070832,-0.00626571,0.0061815856,0.00797624,0.03616726,0.015017764,0.00072012044,0.043819465,-0.045290086,-0.019018346,0.012562578,0.07034046,0.006530546,-0.013734087,0.03212929,0.035793375,0.033101395,0.020351874,0.014008271,-0.0008934323,0.037388623,-0.020401726,0.0018242532,0.035020676,0.0014861978,0.010076234,-0.0019177247,-0.05224437,0.027443249,0.03950731,0.018544758,0.014282454,-0.0015594171,0.016251588,0.010780387,0.00053434575,-0.01794654,-0.0071349954,-0.026944734,0.021485996,0.0140331965,0.009272379,0.019354844,0.018245649,-0.014195214,-0.059123874,0.016426068,0.013073555,0.008013628,0.02280706,-0.0016123843,-0.007938851,-0.035394564,0.012874149,0.0003010563,0.008848641,0.0023212102,-0.012120145,-0.018046241,-0.02931268,-0.025648596,-0.033923943,0.03235362,0.008767632,-0.007670899,-0.0014659456,0.003555035,0.010475046,0.013235573,-0.0092412215,0.0053528044,-0.009035584,0.049776718,-0.022146527,0.0072907815,0.01053736,0.0010359765,0.021485996,0.0023866405,0.0075961216,0.03412335,-0.01135991,0.022271156,0.00919137,0.01929253,0.0162142,0.024701416,0.0055179377,-0.04204974,0.013783939,-0.015179781,0.027991615,-0.002691981,0.020887777,0.02207175,-0.03100763,0.026196962,0.0029194283,-0.059223577,-0.000024974432,0.02133644,0.004872984,0.008904723,-0.009571487,0.031207038,0.0029209862,0.009795819,-0.010736766,-0.0049758027,0.005910518,-0.020052765,0.008468523,0.004617495,0.024614176,0.007652205,0.0095901815,-0.0015664275,-0.0081694145,0.02397857,0.021087183,-0.015067615,0.01903081,-0.03377439,-0.021473533,0.004848058,-0.020750687,-0.0055210534,-0.01603972,-0.0068670437,0.036491297,-0.013808865,0.02978627,0.05703011,0.009185138,0.017796984,0.0077145193,0.012363171,0.030808225,-0.021348903,0.0024255868,0.015940016,-0.00085448584,0.020750687,-0.0018304846,-0.02579815,-0.028465204,-0.0067922664,0.0245394,-0.046860408,0.0013350854,-0.010817775,-0.014494323,0.03464679,0.016712714,-0.02536195,0.005190787,-0.020738224,-0.010780387,-0.0038697224,0.0072222357,0.028091319,-0.020800536,-0.004869868,0.0035051834,0.00020661109,-0.0028166096,0.005228176,0.0032683888,-0.014469397,-0.017011823,-0.008013628,0.04586338,0.0073157074,0.0035176463,0.013721624,-0.000475926,-0.019404694,0.00949671,0.0046642306,-0.008512143,0.025012989,0.004938414,-0.0012712132,-0.012737057,-0.0005347352,0.034671716,-0.025486577,0.004857405,0.014930523,-0.028988646,-0.03170555,-0.039357755,-0.020800536,-0.013970882,0.006399686,0.021249201,-0.022956615,-0.007041524,-0.011609168,0.021822494,0.05563427,-0.017223692,-0.0228943,-0.0028913869,-0.034547087,0.013335275,-0.014581563,0.015628444,0.0012478452,0.020862851,-0.009833207,-0.01855722,-0.03307647,-0.0031842643,-0.0017307816,-0.028215947,-0.02766758,-0.0038790696,0.0023056318,-0.01483082,-0.009826977,0.021087183,-0.004408742,0.031680625,0.014581563,0.00075010926,-0.008343894,0.02679518,0.0030471727,-0.03990612,0.016887195,-0.023567295,0.022233767,-0.019018346,-0.043296024,-0.0008552647,0.014581563,-0.007889,-0.0046798093,0.005302953,-0.04543964,0.03990612,0.0018507368,-0.016799955,0.014780968,-0.013285424,-0.00797624,-0.011833499,0.022757208,-0.015715685,0.00152826,-0.014107973,-0.013173258,-0.018420128,0.012244774,-0.0059167496,-0.010780387,0.01135991,-0.037363697,-0.010063771,0.005134704,-0.0035020676,-0.030534042,-0.027642654,-0.02679518,-0.0062906356,-0.02133644,0.007758139,0.00008237181,-0.011017181,0.026172036,-0.0033400503,-0.020476503,0.03377439,-0.03170555,0.04543964,0.018108556,0.022607654,0.0042311456,-0.0119145075,-0.023318037,-0.023006465,-0.0051939026,-0.013970882,0.016102033,0.0069355895,-0.04127704,0.009521636,-0.009521636,-0.03439753,-0.030160155,-0.0035145306,0.035918005,0.0582764,0.016326366,-0.014245065,0.032727506,-0.016986897,0.029861046,-0.0006453432,-0.0019644606,0.026122184,0.00054719805,-0.01808363,-0.01855722,0.0474337,0.020526353,0.014556637,-0.03295184,0.009689885,-0.008792558,-0.026221888,-0.022869375,0.020750687,-0.021884806,-0.010986024,-0.012718363,0.03183018,0.02011508,-0.017173842,0.020177394,0.009203833,-0.012774446,0.0027387165,-0.025411801,-0.0019348612,-0.013110944,0.0037793666,-0.006729952,0.005069274,0.0030175734,0.026720403,0.024988063,0.014419545,-0.0035986549,0.0733814,0.015927553,-0.026496071,-0.015778,0.01058098,0.005832625,-0.0077145193,0.008480986,0.021710327,-0.0010172821,0.0030082262,0.02215899,0.0028057045,0.0025751414,-0.0014316727,-0.009023121,-0.030234933,-0.010256945,0.0046798093,-0.019018346,0.021361366,0.015117466,-0.013248036,-0.027169066,0.020426651,0.017036749,0.03870969,-0.0031048136,0.013771476,-0.016151885,-0.023205873,0.029063422,0.045315012,-0.026820105,0.03793699,-0.021411218,-0.012581271,-0.0045894533,-0.009029352,0.031406444,0.018096093,0.004947761,0.007901463,0.024863435,-0.008823715,0.013434978,-0.04214944,-0.009122824,-0.00021498458,-0.02146107,0.0056301034,-0.006555472,-0.014519248,0.0071349954,-0.0008007397,-0.053390954,0.00104065,0.023554832,-0.005168977,-0.012363171,0.018843865,-0.008001165,-0.018507369,-0.02427768,-0.007627279]},{"id":"guide-moderation-0","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Overview\nUse guild.ban(), guild.kick(), and guild.unban() for moderation. Always check member permissions before allowing moderation commands—see the Permissions guide.","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[0.016205285,0.045986317,0.001577722,0.021806808,-0.03336454,0.029646497,-0.06550604,0.022173721,0.021476587,-0.0019568645,0.022112569,-0.018039845,0.00010739823,0.018736977,0.021464357,-0.007900841,-0.04884823,0.03128537,0.0058889394,0.06946869,0.029206203,0.08301998,0.0053508016,0.073529184,-0.0635981,0.029670957,0.011955219,0.0018544348,-0.01484771,-0.038476847,0.052003674,-0.0049441406,-0.009264531,-0.0091361115,-0.027640712,-0.005821672,0.0018315029,0.009949433,0.027371643,0.0038862107,-0.009337913,-0.05978221,0.0015295648,-0.014113885,-0.011606652,0.037351653,-0.024485268,0.008903733,-0.008585743,0.0021311478,-0.014395185,0.01183903,0.028374536,0.05185691,0.040189106,0.014713175,-0.03461204,0.0036110266,-0.006702261,0.02820331,-0.03216596,-0.010346921,-0.00940518,0.0022259334,-0.04762519,-0.022124799,-0.036813512,0.0038189434,0.008542936,0.02942635,0.030086791,-0.008108757,-0.0024781853,-0.019079428,-0.030453704,0.017195947,0.06472329,0.026124142,-0.0028756736,-0.029304046,-0.026491053,0.038427927,-0.04488558,0.051220927,0.025268013,0.015911754,-0.01604629,0.000035090747,0.022907546,-0.092266165,-0.03669121,0.0016174709,-0.06883271,0.024950022,0.07122987,-0.048359014,-0.0050114077,-0.020669382,-0.0016526332,0.06702261,0.062913194,-0.019067198,-0.04552156,-0.035639394,0.06956653,0.012016371,-0.03823224,0.044322982,-0.027836397,-0.0020898702,-0.07147448,0.027249338,-0.006641109,0.027787477,0.0010716891,0.0017749373,0.08747184,-0.005858363,0.043515775,-0.04192582,-0.04219489,-0.013991581,0.021085216,-0.051465537,-0.026319828,-0.030184636,-0.019776562,-0.0075706197,-0.007497237,0.004589459,0.043687,-0.020265779,0.04483666,-0.041338764,-0.06423408,0.019458571,0.012597315,-0.03250841,-0.04128984,-0.018871512,0.024546418,0.0028282807,0.0107811,0.052395046,-0.06012466,-0.018639134,-0.056553386,0.015716068,-0.01485994,0.021464357,-0.050536025,-0.010340806,0.0029643439,-0.03402498,-0.008750853,-0.009631443,-0.01791754,-0.012805232,-0.029328506,-0.026735662,-0.01485994,-0.04155891,0.022687398,-0.05249289,-0.014431876,-0.077736445,0.004198086,0.04821225,-0.010891174,0.030429244,-0.00069942616,0.024534188,0.0036660633,-0.050242495,0.014211728,0.012004141,-0.050829556,-0.015654916,-0.016119672,-0.00456194,-0.009747631,-0.008524591,-0.06007574,-0.004641438,-0.048970535,0.023103232,0.0049563707,-0.020522617,-0.04583955,-0.041363224,0.0054027806,0.009704825,-0.006946869,0.022393867,0.048114408,-0.022675168,0.031334292,-0.029573115,0.029499732,-0.033217777,-0.009105535,0.0013040667,0.04307548,-0.031578902,-0.0042072586,0.00401463,0.01031023,0.013991581,0.0027457254,0.022296024,-0.01824776,-0.0448122,0.05185691,0.019507494,-0.035663854,0.0079986835,-0.08429194,-0.007943647,-0.040751703,0.015422539,-0.04332009,-0.018149918,0.035101257,0.022491712,0.013771434,0.037718564,0.053471323,0.0031432137,0.03003787,0.04094739,0.016694501,0.0039045562,-0.009240069,-0.04581509,0.03607969,0.008188255,0.023396762,0.03456312,0.007485007,-0.047992103,0.01642543,0.012230403,-0.018480139,-0.0034764921,-0.017954232,-0.025952915,0.041143075,-0.018296683,0.02700473,0.02668674,0.054841127,0.0027319663,0.019311806,-0.0007842746,0.0040238025,-0.014175037,0.0036966393,0.020816145,0.028301153,-0.006280312,-0.02336007,0.0073565873,-0.0071119796,-0.01914058,-0.030111253,0.03940636,-0.0060081854,0.0004360903,-0.0061152014,-0.012976457,-0.011906298,-0.009772092,0.012915306,-0.0327041,-0.012450551,0.025219092,0.06036927,0.017966462,-0.023837056,-0.062032606,0.002588259,-0.018370066,0.044249598,0.017990923,0.009496908,0.009955549,-0.04038479,-0.0029536423,0.019544184,0.050829556,-0.046035238,-0.027420564,0.0063536945,0.05058495,0.035908464,0.009374604,0.0073504723,-0.020718303,0.04669568,0.013318909,-0.001157302,0.051954754,-0.025610464,-0.04887269,0.07812782,-0.019960018,-0.0015379732,0.015031165,-0.024901101,-0.030820616,0.041461065,0.002358939,-0.020693842,-0.014297341,-0.020767225,-0.00060043635,0.016547736,0.02154997,0.046279848,0.025414778,0.003669121,-0.011569962,0.007668463,-0.017709624,0.005256016,-0.050536025,-0.01547146,-0.016511044,0.010530377,0.009490793,0.024032742,-0.0069285235,0.0011802339,0.06809889,0.0118268,0.035248023,0.024791026,0.06516359,-0.011105206,-0.015202391,0.024717646,0.0072342837,-0.021366514,0.007760191,-0.012841923,-0.028178848,-0.024008282,0.023298917,0.0033511305,0.05547711,0.013257757,0.011417082,-0.017783007,-0.051710144,0.010597644,-0.01303761,0.008371711,0.019568644,0.019886635,0.015361386,-0.02060823,-0.0085673975,-0.02940189,-0.0013369359,0.04708705,0.022063648,-0.024778796,-0.029010516,0.010634336,0.012866384,0.009258416,0.01394266,-0.047429502,-0.0047056475,-0.031383216,0.025830612,-0.0036293722,0.023543525,0.0016251148,-0.006050992,0.01786862,-0.044029452,0.043833766,-0.039186213,0.02729826,-0.016339818,0.008292213,0.015728299,-0.00048271872,0.003592681,0.0042867563,0.035150178,0.030282479,-0.012334362,0.004540537,0.008383942,0.037351653,0.042659648,0.00985159,-0.010732179,0.03549263,0.015116778,-0.0115210395,-0.0037700217,-0.031065224,0.0009883695,-0.04823671,0.025390318,0.033437923,0.0035804505,0.04128984,0.013490135,0.03649552,-0.011044054,0.02759179,-0.048138868,0.030184636,-0.03725381,0.03488111,0.0090260375,-0.021024063,0.031578902,0.012585085,-0.04097185,0.037400573,-0.017134795,-0.025316935,0.010878944,0.037473954,-0.054498676,-0.07255075,0.0056198705,-0.016657809,0.008090411,-0.003638545,-0.019825483,0.038696997,-0.04160783,-0.015691608,0.010836137,-0.043931607,-0.0126584675,-0.018137688,0.015679376,0.008714163,-0.04278195,0.03336454,-0.059684366,0.009857705,-0.031211989,-0.0048891036,-0.00027575737,0.022296024,0.034758806,-0.04642661,-0.003953478,0.037107043,0.028252231,-0.0098148985,0.04246396,0.004143049,0.03304655,0.028423456,0.040262487,-0.042219352,0.041314304,-0.02460757,0.0382567,-0.002588259,0.019984478,0.026588896,0.035076797,-0.00011322678,-0.027445026,-0.017098105,-0.043784842,-0.003086648,-0.04762519,0.046866905,0.00938072,0.036568906,0.01228544,0.0037027546,0.020204626,0.03607969,0.06888163,0.042023666,0.03583508,-0.03485665,-0.0064087315,-0.048114408,0.022577325,0.016890187,-0.011618883,0.0048891036,-0.03123645,0.017208178,-0.05621093,0.018480139,0.03216596,-0.018700287,-0.032288264,-0.042023666,0.018736977,0.043589156,-0.0060295886,0.00057368237,-0.03850131,0.0026616415,0.01784416,-0.058510248,-0.05249289,-0.0048768735,-0.013539056,-0.01971541,0.0045069037,-0.03493003,0.004467155,-0.016657809,0.004879931,0.014016042,0.06447869,0.015569303,-0.012964227,-0.000022908118,0.009038268,0.037718564,-0.019189503,-0.0048554703,0.007894726,0.0031676744,-0.030404782,0.01700026,0.022308255,-0.0010235319,-0.050536025,-0.0039045562,0.017416093,0.010817791,-0.092608616,0.006708376,0.011086861,-0.0024093895,-0.018859282,0.007858034,-0.0033205545,-0.018688057,0.03387822,0.026466593,0.0042011435,0.013918199,-0.030478165,-0.0014607687,-0.013698052,-0.013392292,-0.0019110005,-0.023396762,-0.035590474,-0.0024674837,0.016706731,0.024791026,-0.01047534,-0.018688057,-0.017024722,-0.018871512,-0.036275376,0.0024093895,0.028032085,-0.02974434,-0.051123086,-0.0016877956,0.034049444,-0.012083638,-0.008977116,-0.0011901711,-0.004188913,-0.025610464,0.031114146,0.007680693,-0.010218502,0.003837289,-0.038672537,0.01640097,-0.023262227,-0.020877298,-0.029230664,-0.014737636,0.020803915,-0.05034034,0.005246843,-0.0012711976,0.008805891,-0.018969355,0.012523933,-0.009032153,0.011429312,-0.011441542,0.0014424232,-0.021207519,0.013612439,0.001474528,-0.017636241,-0.013869277,0.02551262,-0.01168615,0.00005518014,-0.002826752,0.0026127198,-0.016755652,0.009625328,0.040825088,-0.023152154,-0.027469486,-0.006910178,-0.017795237,-0.011808454,0.04821225,0.006194699,0.013294448,0.020363621,0.0112947775,-0.012236519,0.008995461,0.006763413,-0.011092976,0.012303785,-0.0037853098,-0.034049444,0.019054968,-0.022124799,-0.010334691,-0.048285633,0.004500788,-0.036935817,-0.036960278,-0.035884004,0.047527347,-0.00044984953,0.02245502,-0.02551262,0.04857916,-0.0224061,0.025952915,-0.037694104,-0.0031370984,-0.0035743352,0.0024843006,0.005121481,-0.022809703,-0.022895316,-0.03855023,-0.01698803,-0.015544843,0.007637887,0.041705675,-0.013257757,0.0143584935,0.019262886,-0.021060754,-0.015581533,-0.01879813,-0.010065622,-0.0024445518,0.01701249,0.017990923,-0.022821933,-0.05068279,0.0060571074,0.0049074492,0.019262886,0.003286921,0.017599551,-0.026197523,0.020143474,0.0011198462,0.0057482896,-0.010964557,-0.01138039,0.02058377,0.030576007,-0.009668134,0.031187529,-0.016290898,0.012371053,0.0020791686,0.008420632,0.053813774,0.024093894,-0.0090260375,-0.044053912,0.034049444,-0.01638874,0.007619541,-0.031578902,-0.009411295,0.018333374,0.015312465,0.004182798,0.0151534695,-0.06731614,0.0040941276,0.032239344,-0.007485007,-0.01790531,0.01212033,0.0024720703,0.005561776,0.022528403,-0.02702919,-0.023445683,-0.02274855,0.03999342,-0.04853024,0.020754995,-0.0030881767,-0.010738294,-0.017685164,-0.02517017,0.044225138,-0.014970014,-0.0066655697,0.021317592,-0.004421291,0.0045466525,-0.044494208,-0.008708047,-0.008279983,0.016559966,-0.0061702384,-0.00326246,-0.009117765,-0.0022580381,0.032924246,0.017220408,-0.006671685,0.006402616,0.008438978,0.009307337,-0.03453866,-0.032997627,0.0043081595,0.041020773,0.00052476075,-0.025977377,-0.0069529843,0.00091269385,-0.016449893,-0.007344357,-0.027518407,0.0375718,-0.008396172,0.008928195,-0.040556017,0.000351433,0.019947788,-0.030306939,0.0009769035,0.018039845,-0.011349814,0.05391162,0.008812006,0.043589156,0.012413859,0.03607969,-0.0060571074,-0.005729944,-0.049875583,0.0065310355,-0.0025148767,0.029842183,-0.007399394,-0.0061029713,0.028178848,0.02243056,0.03488111,-0.012175366,-0.02700473,0.005601525,-0.010591529,-0.008701932,0.0010999719,0.031725667,-0.009509139,0.012854154,-0.030869538,-0.011435427,0.0061794114,-0.018455679,-0.013392292,-0.0034092248,-0.024815489,-0.012071408,-0.025414778,0.046915825,-0.06756075,-0.02332338,0.010096198,-0.05215044,0.0017520053,0.03793871,-0.0070875185,-0.021733427,0.018480139,0.016474353,0.047747493,-0.0060387617,-0.049606517,0.012273209,-0.028765908,0.010187926,-0.0003997813,0.039871115,-0.004237835,-0.00066617475,-0.0067389524,0.030258017,0.0028970768,0.03549263,-0.010823906,-0.026466593,0.006188584,0.017440556,-0.013575748,0.02759179,0.0022075877,0.03206812,0.010505917,-0.007246514,-0.021598892,-0.012939767,-0.01971541,-0.03006233,0.016339818,0.00018345605,-0.0048738155,0.001041113,-0.04094739,0.010885059,0.0049686013,-0.025855072,-0.020180166,-0.02152551,-0.01031023,0.018272223,0.0100472765,-0.015495921,0.017611781,0.019067198,0.028668065,0.044714354,0.014725406,0.002702919,0.00866524,-0.0123160165,0.034391895,-0.04150999,0.028007623,0.037009202,-0.030184636,-0.0036171419,-0.028178848,-0.0045466525,0.002588259,-0.0069957906,-0.03238611,-0.034391895,0.014223959,0.005399723,0.06281535,0.007974223,0.02427735,-0.027371643,0.026662279,-0.01304984,-0.0010564011,-0.018382296,0.00019950845,0.004008515,0.025047867,0.00651269,0.030429244,0.046524454,0.0021938286,-0.034489736,-0.011502694,-0.040776163,-0.033168852,0.062032606,0.024950022,0.017624011,-0.018345606,0.004372369,-0.0020164878,-0.020534847,0.0026004894,0.0046536685,0.015862834,-0.005332456,0.010102313,-0.017379403,-0.035174638,0.008854812,-0.004069667,-0.017416093,-0.023470143,0.0070630577,0.017807467,-0.0006122846,0.024008282,-0.03642214,-0.004097185,-0.051661223,0.013820356,0.023837056,0.017159255,0.029891105,-0.00062948355,-0.00087600265,-0.0124260895,-0.05855917,-0.02151328,0.019006047,0.004467155,-0.023519065,0.02370252,-0.00864078,0.027200418,-0.023763673,-0.0033511305,-0.000046102887,-0.0018055133,-0.019801022,-0.02276078,0.025023405,0.020767225,-0.029670957,0.008708047,0.022834163,0.013893738,0.015508152,0.05004681,0.02395936,0.0020699957,0.009967779,-0.0065310355,0.014211728,0.00092263106,-0.015960677,-0.035370328,0.0026555264,-0.0038800954,-0.018492369,0.021085216,0.002580615,0.030527087,-0.010885059,-0.0043754266,-0.011600537,0.010298,-0.0005492215,-0.0022182893,-0.047992103,0.029988948,0.01607075,0.0041002426,-0.015067857,-0.0032074233,-0.018529061,-0.019874405,-0.013685822,0.036275376,0.003424513,0.057091523,0.018749207,-0.04148553,-0.01093398,0.04014018,0.0009379191,0.021916883,-0.05283534,-0.012536163,0.026344288,-0.011545501,0.0054578176,-0.051220927,0.01455418,0.006127432,-0.006671685,0.03126091,0.042879794,0.029450811,-0.01334337,-0.037351653,-0.004305102,0.0040482637,-0.0018039845,0.0066839154,-0.047576267,-0.0007858034,-0.014774327,0.024375193,-0.007485007,-0.02243056,-0.0042561805,-0.0055770637,-0.024656493,0.028447919,-0.0020409485,0.02241833,0.010389728,-0.005307995,0.06398947,-0.013587978,0.015887294,-0.036568906,0.00272738,0.024460806,-0.025414778,-0.009869935,0.0019293461,0.015532612,-0.010236847,-0.0042256042,-0.067218296,0.010897289,-0.012432205,0.029670957,0.026711201,-0.008940425,-0.028765908,-0.014162807,0.020094553,-0.0008859398,0.031921353,0.018883742,0.020082323,0.0036354873,0.010866714,0.021072986,-0.033266697,-0.012536163,-0.029573115,-0.0051520574,0.024460806,0.059977897,-0.0034061673,-0.0066655697,-0.00013262343,-0.018712517,0.0059317457,-0.016523276,0.023433452,-0.018064305,-0.016511044,0.016706731,0.015275774,-0.0029903336,0.0035712777,-0.018113228,-0.023152154,-0.0065554962,-0.01139262,0.041387685,-0.0068123345,0.0036752361,0.028765908,-0.031676743,-0.0064454223,0.0053263404,-0.0019431054,0.010860598,-0.029817723,-0.02639321,-0.017147025,0.007870264,-0.029230664,0.008163794,-0.018284453,-0.0026861024,-0.04004234,0.02883929,-0.021953573,-0.009074959,0.040776163,0.0074116243,-0.030722773,0.016009597,0.0101573495,0.0327041,0.0077785365,-0.0064759986,0.0068979473,-0.016767884,-0.009160572,0.0046261502,-0.0038097706,0.02729826,-0.039528664,0.0060448768,-0.007368818,-0.012670698,0.008787544,0.002099043,0.035394788,0.01915281,0.011184704,0.020791685,-0.00015794419,0.017697394,0.0042011435,0.017036952,0.016657809,-0.029181741,-0.0048982766,-0.021770118,-0.016780114,-0.009662018,0.011404851,-0.026735662,0.0008049134,0.010053392,-0.017379403,-0.031652283,-0.012634006,-0.0039320746,-0.0085673975,-0.0039106715,0.0064209616,0.0094785625,-0.022149261,-0.028398996,-0.01640097,-0.024424115,-0.021770118,-0.0021265612,0.025537081,0.003776137,-0.0043479083,-0.00025339867,-0.0022259334,-0.0017413037,0.0043173325,0.013624669,0.026466593,-0.03823224,-0.010450879,-6.419767e-7,0.077296145,0.0023558815,-0.0052865916,0.009655903,0.050144654,0.024203967,0.03187243,0.005635158,-0.011160243,0.02636875,-0.017758546,-0.009515254,0.0071731317,0.012303785,-0.017036952,-0.02788532,-0.021635583,0.021745658,0.056308776,-0.009301222,0.0037088697,-0.021965804,0.004580286,0.0005943212,0.01695134,-0.026344288,0.007613426,-0.010689372,0.015226852,0.008977116,0.0090260375,0.018125458,0.0067572976,-0.006228333,-0.05489005,-0.013074301,0.02154997,0.014908861,0.022393867,-0.00066617475,0.031211989,-0.020730533,0.029548654,0.0050236383,0.0066044177,0.015716068,-0.025659386,-0.052590735,-0.0013919728,0.0021861845,-0.03468542,0.04158337,0.016621118,0.0015188633,0.000029572733,0.010536493,-0.0033878216,0.013086531,-0.010035045,0.013245527,-0.021953573,0.037669644,0.008915964,0.0044763274,0.0040574363,0.022932006,-0.041974746,-0.008065951,0.0072954353,0.026857965,0.003898441,0.030869538,-0.008359481,0.012780772,0.021647813,0.012597315,0.011796224,-0.018394526,0.0032227112,-0.0128786145,0.019079428,-0.016633349,0.016755652,0.0058155567,-0.03610415,0.044322982,0.0008339606,-0.02364137,0.002030247,0.009313452,0.020216856,0.025011174,-0.010444764,0.03422067,0.0062589087,0.0073260115,-0.0011710611,-0.007815228,-0.00022377816,-0.0151534695,-0.008261638,-0.008243292,-0.012890845,-0.02331115,0.0022794413,0.008542936,0.0037547338,0.008145449,0.012377168,0.02883929,-0.0068367952,-0.033437923,-0.0037394457,-0.0023558815,-0.038868222,-0.018895973,-0.023262227,0.002259567,0.049924508,-0.035321403,0.053226713,0.06643555,-0.0045772283,0.030893998,-0.009411295,-0.0039443052,0.016572196,-0.0073565873,0.00052208535,0.028007623,-0.01734271,0.004479385,0.018969355,-0.018321143,-0.02425289,0.014211728,-0.0006256616,-0.028912673,0.0118268,-0.005522027,-0.023947129,0.017501706,0.02152551,-0.02093845,-0.00364466,-0.0032135386,-0.020131243,0.00122992,0.009386835,0.0052346126,-0.033535767,0.03610415,0.0027701864,-0.008432863,-0.013575748,-0.016266435,-0.009013807,0.010664912,-0.004213374,-0.017049182,0.018847052,-0.018529061,-0.018370066,0.019849945,0.04094739,-0.021329824,0.0081148725,-0.0010434063,0.018003153,0.020889528,0.0007193006,0.01168615,-0.0218435,-0.013123223,0.026491053,-0.037498415,-0.004069667,0.015349156,-0.033266697,-0.025659386,-0.018675826,-0.0049441406,-0.010059507,-0.015544843,0.031114146,-0.022907546,0.024803258,-0.028594682,0.038770378,0.02883929,-0.010750525,-0.01603406,0.0031202817,-0.038109936,0.018516831,-0.03727827,0.04195028,-0.019213963,0.007833573,-0.018431218,-0.015508152,-0.061103094,0.005231555,0.005953149,0.002106687,-0.00036538328,-0.014113885,0.0055709486,0.013086531,-0.0063475794,-0.0030851192,-0.004188913,0.023103232,0.045766167,0.015459229,0.016890187,0.030453704,-0.032312725,-0.04195028,0.027493946,-0.020693842,0.01876144,-0.013869277,-0.051612303,-0.0094785625,-0.010450879,-0.017550629,-0.006573842,0.01784416,0.017538399,0.0044396366,0.014786557,-0.032581795,0.015960677,-0.026026297,-0.010732179,-0.036568906,0.0021571373,-0.03485665,0.01090952,-0.0028145215,0.010652681,-0.020106783,0.013013149,-0.021916883,0.015141239,-0.031016303,-0.034416355,-0.0224061,-0.009503024,0.02150105,0.009178918,0.00454971,0.009081074,-0.0015761933,-0.006255851,0.015177931,-0.036593366,0.0077724215,0.034832187,-0.010450879,-0.0005729179,0.042512883,-0.023592448,0.026270906,0.017085873,0.013477905,0.008090411,0.015667146,-0.019947788,-0.023249997,0.003445916,-0.03336454,0.015361386,-0.00958252,-0.020131243,0.016743422,0.020498157,0.012169251,-0.029279586,-0.028032085,-0.004910507,0.0200334,0.0068062195,-0.027371643,0.00985159,-0.05586848,0.013123223,-0.022222642,-0.027469486,0.031432137,0.0069590993,-0.0033266696,-0.024301812,0.050829556,-0.0003439801,0.018626904,-0.02274855,-0.010579299,-0.0060571074,-0.029768802,-0.000339967,0.023996051,-0.029352969,-0.012328247,0.0020868126,0.038868222,0.030527087,0.008035375,-0.009081074,0.0074544307,0.0050572716,-0.018700287,-0.025708308,-0.0074544307,0.013074301,0.026295368,0.016645579,0.0069529843,-0.0028817886,0.030478165,0.02063269,-0.015018935,-0.005109251,0.04791872,0.0042347773,-0.0233723,-0.0022993158,0.004479385,-0.00545476,-0.005546488,0.005100078,0.008163794,0.00061610655,-0.017978692,0.032288264,-0.0050358684,-0.035370328,0.008377826,-0.013881507,-0.04334455,0.012964227,0.02695581,-0.021403207,0.0014393656,0.02241833,-0.025390318,0.021427667,0.017526168,-0.005026696,0.025023405,0.010096198,0.0007135676,-0.013282218,-0.011435427,0.0151534695,0.06756075,-0.030380322,0.02641767,-0.024387425,-0.027102573,0.01168615,0.004188913,-0.016926877,0.032973167,0.033511303,0.0121081,0.0016786228,0.0031294543,0.031187529,-0.046059698,0.008750853,-0.012915306,-0.04916622,0.028032085,-0.013306678,0.0019171158,0.022711858,0.009655903,-0.024901101,-0.0061366046,0.013759203,-0.015398078,-0.0038709226,0.008867042,-0.0048004333,-0.01700026,-0.023139924,-0.01791754]},{"id":"guide-moderation-1","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Ban a member\nguild.ban(userId, options) bans a user. Pass reason for the audit log. Requires BanMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.003350959,0.017954215,0.0044638235,-0.0052953805,-0.050845545,0.03341067,-0.07117387,0.035488013,0.027005514,-0.014603256,0.02407497,-0.013502757,0.024594307,0.02361746,0.001006215,-0.005267559,-0.013972633,0.016581682,-0.028662445,0.046468277,0.03516652,0.09837723,0.020476708,0.052230444,-0.012797942,-0.0013338919,-0.017731642,0.01607471,-0.007913703,-0.045479067,0.043006033,-0.0056137834,-0.01715048,-0.014640352,-0.027104435,-0.011988024,0.027376467,-0.008834908,0.018943427,-0.002984641,-0.021713223,-0.045503795,0.013997363,-0.0023849306,-0.010943168,0.04884239,-0.025126008,0.01750907,-0.0030696513,0.0105598485,-0.0202665,0.028068917,0.008884368,0.05796788,-0.012334249,-0.01147487,-0.011697443,0.032965522,-0.004235068,0.03128386,-0.011023542,-0.013910807,-0.027178627,-0.00079098396,-0.01073296,-0.012198232,-0.04367375,0.013057611,0.019227827,0.0053262934,0.033930004,-0.0008369669,0.015592469,0.0048780562,-0.0057467087,-0.0047327657,0.048669275,-0.040087853,-0.024198622,-0.022640612,0.041917898,0.04889185,-0.041027606,0.04055773,0.00043046218,0.008865821,-0.06607942,-0.006460797,0.022269657,-0.051389612,-0.010498023,0.038307272,-0.040310428,0.008346484,0.06345801,-0.035834238,-0.029255973,-0.030541949,0.010980263,0.04068138,0.049336996,-0.035092328,-0.009731382,-0.03224834,0.0443662,-0.003533345,-0.015926328,0.04258562,-0.046270434,0.030492488,-0.026337795,0.044662964,0.0064978926,0.039370675,-0.041052338,0.0047327657,0.032396723,0.009972503,0.02829149,-0.044564042,-0.03061614,-0.025645345,0.033262286,-0.05198314,-0.001516278,-0.0042845285,-0.035710588,-0.01865903,-0.023654554,0.020451978,0.041720055,-0.015654296,0.03820835,-0.034919217,-0.043352257,0.023864763,0.025843188,0.0011182743,-0.019128906,0.02067455,0.014009728,0.014380683,0.04451458,0.028934479,-0.06607942,-0.020229405,-0.057127047,0.039296485,-0.019623512,0.00991686,-0.0613312,-0.03880188,0.0052304636,-0.013626408,0.013651138,-0.0018872328,-0.027129166,0.010188893,-0.052131522,-0.06286448,-0.0003182097,-0.05801734,0.038035236,-0.0358837,0.0031902117,-0.012884499,-0.0029660931,0.041818976,-0.024285179,-0.02977531,0.01530807,-0.0306656,-0.022665342,-0.023926588,0.014454874,-0.011320306,-0.05574215,-0.04211574,-0.0015765581,-0.013811885,-0.037342787,-0.0014467239,-0.021651398,-0.01490002,-0.048817657,0.02455721,0.015988154,-0.009236776,-0.012933959,-0.047605872,-0.00014625667,0.026857132,0.011524331,0.0065597184,0.059253857,-0.015790312,0.042264123,-0.016940271,0.03125913,-0.024210988,-0.019042348,0.011277027,-0.009991051,-0.044168357,-0.011437775,0.0051686377,0.01804077,0.006269137,0.006429884,0.016087076,-0.007882791,-0.022269657,0.021280443,0.03059141,-0.005196459,-0.004760587,-0.04743276,-0.008290841,-0.005619966,-0.0009668011,-0.060787134,-0.003585897,0.014294127,0.01564193,0.004160877,0.0023694742,0.05737435,0.0175338,-0.012470266,0.054654013,-0.01712575,-0.0252002,-0.0411018,-0.0085257795,0.05336804,0.00467094,0.0046029314,0.030492488,-0.02754958,-0.057621654,0.002958365,-0.0125135435,0.0063680583,-0.037021294,0.009651009,-0.0060403817,0.041175988,-0.029429086,0.0074932883,0.04810048,0.045281224,0.029181782,0.013552218,-0.032965522,-0.026906593,-0.009514992,-0.007363454,0.057671115,0.033089172,-0.03447407,-0.0031299316,0.0029073586,-0.012736117,-0.0076293047,-0.031135477,0.016173631,0.014776369,0.005471584,0.010838064,-0.0029104499,-0.01638384,-0.006142394,-0.0017094836,-0.013688234,0.019994467,0.03838146,0.06642565,0.032001037,-0.053763725,-0.063062325,-0.016062345,0.043055493,0.06622781,0.027079705,0.006386606,0.03346013,-0.02757431,0.0066957353,0.012655743,0.076614544,-0.025113644,-0.016569316,-0.004717309,0.024952896,0.032792408,0.0011947837,0.05425833,-0.03155589,0.036576148,0.009218228,0.01334201,0.0175338,-0.023567999,-0.094271995,0.04058246,0.009539722,-0.0022319118,0.0018764134,-0.034350418,-0.015815042,0.030269915,-0.009885947,-0.049559567,-0.010201259,-0.020130483,-0.023172313,0.0003755918,0.037293326,0.009137855,0.067414865,0.05119177,-0.017434878,0.005555049,-0.01166653,-0.0012797943,-0.015444087,0.030121533,-0.04125018,0.03373216,0.011623252,0.013700599,0.0017465791,-0.020921854,0.035042867,0.03736752,0.027846344,0.0051593636,0.0342515,-0.026238874,-0.0019583325,0.0010116248,-0.009298602,-0.026486177,-0.02057563,-0.014937116,-0.008420675,0.0041021425,0.03353432,-0.02479215,-0.0019289652,-0.00819192,0.0366998,-0.007950799,-0.052922893,-0.003406602,-0.013614043,0.018621933,-0.024470655,0.015901597,0.021255713,-0.0082351975,0.0028980847,-0.01870849,-0.022999201,0.07028358,0.01715048,-0.04446512,-0.03672453,0.028835557,0.013045246,0.0031252946,-0.023555633,-0.051043388,-0.025150739,-0.021849241,0.042437237,0.011963294,0.0023540177,0.0066339094,0.026337795,0.019747164,-0.013069976,0.02972585,-0.025892649,0.00524592,0.0016770251,0.022962105,0.011895286,-0.01166653,-0.014467239,0.030962365,0.04488554,-0.004596749,-0.0007886655,-0.009923043,-0.005721979,0.047581144,0.038777146,-0.0032489463,0.006627727,0.049089693,0.022887915,0.013156532,-0.007623122,-0.007375819,0.052972354,-0.003044921,0.017212305,0.021478286,0.005499406,0.011394497,0.020031562,0.030220455,-0.006460797,0.050895005,-0.05727543,0.02594211,0.0034560626,0.051587455,0.005567414,-0.044687696,0.021626668,0.028439872,-0.053219657,0.0328666,0.00864943,0.0003630334,0.011889103,0.07468557,-0.045602717,-0.09684395,0.01224151,0.00087328954,-0.061578505,-0.022430403,-0.029206512,0.0041330555,0.005691066,-0.05420887,0.0050078905,-0.036872912,-0.0034560626,-0.0153451655,0.02170086,0.03353432,-0.022727167,0.05519808,-0.011511966,0.023444347,-0.0018578656,-0.033979464,-0.03843092,0.01379952,0.011413044,-0.062369876,-0.018609568,-0.00093125127,0.014937116,-0.015493548,0.033831082,-0.016804256,0.02215837,0.015221514,0.012439352,-0.008940012,0.004068138,-0.038826607,0.025088914,-0.029453816,0.007932251,-0.002749703,0.029503277,0.020464342,-0.0037991959,-0.024087336,-0.026115222,-0.008488684,-0.058215182,0.040285695,0.0062444066,0.047754254,0.041744787,-0.017867658,-0.0015680571,0.029206512,0.026510907,0.03350959,0.02170086,-0.035562206,0.026387256,-0.031877387,0.025150739,0.007882791,-0.012185867,0.04498446,-0.014553796,0.04303076,-0.046789773,0.044959728,0.02824203,0.00044707788,-0.045602717,-0.060737673,-0.0012102402,-0.051537994,-0.004729674,-0.0070852377,-0.019672973,0.015493548,0.05514862,-0.05519808,-0.037812665,-0.036056813,-0.026486177,-0.015629565,0.041596405,-0.03214942,0.013255454,-0.018176788,0.009193498,0.019203097,0.03885134,-0.006534988,-0.032693487,0.0026044121,-0.0048131393,0.009020385,-0.033435397,0.0037713742,0.019660607,0.0058827256,-0.006640092,0.02455721,0.014726908,-0.023098122,-0.043253336,-0.03219888,-0.014702178,0.026436716,-0.027376467,0.017311227,-0.006117664,-0.017496703,-0.017434878,-0.0025286756,-0.031679545,-0.012192049,0.04441566,0.0038177436,0.0032273072,-0.008247563,-0.033806354,-0.009867399,-0.050078906,-0.020229405,-0.0039692167,0.004500919,-0.023209408,-0.019388573,-0.024470655,0.027351737,0.005511771,0.016940271,-0.005428306,-0.031184938,-0.05042513,0.021688493,0.0013539852,-0.017768737,-0.00008336824,0.011592339,0.008365032,-0.008297023,0.017051559,0.04814994,-0.0072645326,-0.0031268403,0.037342787,-0.03538909,-0.0057652565,0.0069121253,-0.03150643,-0.012278605,-0.014590891,-0.0034653365,-0.051537994,-0.03373216,-0.0037744655,-0.060144145,0.002483852,-0.009446983,-0.0115737915,-0.034746103,0.0065720836,0.04508338,0.0049306084,-0.0031685727,-0.0045163753,-0.03667507,0.031358052,0.026164683,-0.034696642,-0.0029954605,0.024470655,0.0054035755,-0.017484339,0.011048272,0.0009436164,-0.00840831,-0.007950799,0.0033385938,0.013527487,-0.016161267,-0.019029984,-0.026313065,-0.025670076,0.029280704,-0.05732489,0.008940012,0.032273073,0.044440392,-0.009001838,0.029107591,0.019536955,-0.0071285157,0.039321214,-0.0027512484,-0.03677399,0.017904755,-0.026214143,-0.0164333,-0.05509916,0.012618648,-0.049510106,-0.028662445,-0.017447243,-0.0072088894,-0.006003286,0.0018980523,-0.041695327,0.04718546,-0.010739143,0.01379952,-0.016136536,-0.024173891,-0.005830174,-0.018288074,-0.02064982,-0.04035989,-0.02675821,-0.031234398,-0.0057745306,-0.019574052,-0.012847403,0.025595885,-0.011852007,0.007654035,0.037268598,-0.000013174211,-0.009787026,-0.0043278066,0.026164683,0.010720596,0.025311487,0.0018207701,-0.028563524,-0.02759904,0.016322013,-0.004865691,-0.00063178246,0.011950929,-0.005394302,-0.0061856722,0.01073296,0.03501814,0.00031647086,-0.026931323,-0.025113644,-0.0031809378,0.0064237015,0.019029984,0.010677317,0.024433559,-0.010547483,0.0058208997,0.017867658,0.03501814,0.012130224,0.0010525844,-0.0018269527,0.01873322,-0.0012836583,0.025843188,-0.035537474,-0.0069059427,-0.009348062,0.025447503,0.014096284,-0.027005514,-0.06998681,-0.009743747,0.03521598,-0.036477227,-0.015011307,0.010164163,0.02110733,0.0136016775,0.017855294,-0.034770835,-0.008538145,-0.04597367,0.009088394,-0.056978665,0.015728487,-0.020637454,-0.011821095,-0.0049893428,-0.0481994,0.014677447,-0.013552218,-0.016878447,0.014788734,-0.013972633,-0.0022102727,-0.0070419596,-0.013428566,-0.02098368,0.028415142,0.018411726,-0.02524966,-0.0336827,0.0005707295,0.028637715,0.026214143,-0.003032556,0.016532222,0.010083789,-0.014825829,-0.014924751,-0.023073392,-0.018337535,0.02254169,-0.0041175988,-0.030912904,-0.010021963,-0.00040843675,-0.009885947,-0.009793208,0.0024328455,0.0036446315,-0.009193498,0.0089647425,-0.05598945,-0.014788734,0.0035178885,-0.044910267,0.001450588,0.018164422,-0.020402517,0.06405154,-0.039148103,0.021255713,0.005032621,0.03964271,-0.008513414,0.004426728,-0.033212826,-0.0051871855,-0.0019011436,-0.022047084,0.00764167,-0.01832517,0.0046678483,0.029478546,0.047877908,-0.020105753,-0.00467094,-0.015011307,0.028934479,0.007981712,0.02034069,0.06509021,-0.017706912,-0.00091656763,-0.004139238,-0.009991051,-0.014022093,-0.036477227,-0.069937356,-0.011969477,-0.01379952,-0.004157786,0.0029568193,0.03346013,-0.025768997,-0.012631013,-0.013787155,-0.064002074,0.037219137,0.04649301,-0.015159688,-0.016420934,0.013069976,0.028934479,0.03907391,-0.018720854,-0.047135998,0.0016028341,-0.015530643,-0.0022009988,-0.012426987,0.009997234,0.010695865,-0.008581422,-0.006355693,0.0055210446,-0.00021967482,-0.013193628,-0.023345426,-0.04429201,0.01609944,0.012136406,-0.0035055233,0.033262286,0.02831622,0.013638773,-0.026832402,-0.009626279,-0.03828254,-0.027895804,-0.0024081152,-0.019054715,0.009014203,0.01298342,0.0043370803,0.008315572,-0.05875925,-0.013193628,-0.023172313,-0.01875795,-0.02371638,-0.010164163,-0.00457511,0.029626928,0.0052768327,-0.020204674,-0.0077220434,-0.020810567,0.040829763,0.018597204,-0.0010904527,-0.0045287404,-0.016136536,-0.0172494,0.0026863313,-0.044168357,-0.0017218487,0.027747422,0.0009969411,0.009836487,-0.009842669,-0.0011213656,-0.0048811478,-0.031803194,-0.014232301,-0.019648243,-0.0038517478,-0.0041454206,0.020921854,-0.0034962494,0.037738472,-0.014504335,0.0059136385,-0.021305174,0.008303206,-0.019734798,-0.028761366,0.0048626,0.030517219,0.0058394475,0.04451458,0.012896864,-0.009298602,-0.008828726,0.00742528,-0.01760799,-0.008841091,0.034028925,0.035488013,-0.00012403802,-0.02034069,-0.001638384,-0.019178366,-0.017026829,0.014479605,-0.0034220584,-0.01207458,-0.023938954,0.0072954455,-0.0028378046,-0.014739273,-0.010170345,-0.046888694,0.020563263,-0.011048272,0.009935408,-0.029206512,0.01633438,0.0036477228,-0.033707432,0.001463726,-0.02225729,0.03895026,0.013984998,0.014764003,0.0023308329,-0.0017203031,-0.021119697,-0.0060929335,-0.032569837,-0.0031299316,0.014219936,0.05272505,-0.03825781,0.00042427963,-0.03355905,0.031630084,-0.022788994,-0.005499406,0.022170736,-0.008130094,0.020897124,-0.00033965553,0.023345426,-0.007932251,-0.016853716,0.014121015,0.0038332,0.0025147647,-0.011592339,0.052823972,0.00960773,0.025744267,0.021181522,-0.010423832,0.00065110304,-0.000731863,-0.0018223157,-0.0054746754,-0.0040464993,-0.01240844,-0.018238613,0.030987095,-0.0027373377,0.01490002,-0.04587475,0.033138633,0.0027976178,0.029107591,0.036897644,0.030170994,-0.053219657,0.008284658,0.0011491872,-0.03289133,-0.045429606,0.013255454,-0.022405673,0.015555373,0.010955533,0.011814912,0.003990856,0.033188093,0.01712575,-0.054307792,0.013725329,0.020451978,0.022034718,-0.012136406,-0.05440671,-0.0020186126,0.0336827,-0.0050851726,-0.004980069,-0.029206512,0.00027840934,-0.0030248277,0.031456973,0.025472233,0.05406049,-0.007289263,0.012532092,-0.021713223,0.0009992596,-0.007097603,0.00007650944,0.014121015,-0.014059189,-0.0048996955,-0.012736117,-0.0026152318,-0.0077220434,0.0076664,-0.00036284022,0.022628246,-0.021169158,0.012563004,-0.011709808,0.01825098,-0.0053139282,-0.00038409283,0.020118117,-0.00090111117,0.025744267,-0.041077066,-0.01180873,-0.00134162,-0.026214143,0.015258609,0.007215072,0.06667295,-0.038752418,0.0053232023,-0.03271822,0.0011801001,-0.03363324,0.015394626,0.03880188,-0.01947513,-0.029577468,-0.01993264,0.02371638,0.04879293,-0.0001197875,-0.0003999357,0.01799131,-0.00073881843,0.008470136,-0.006479345,-0.050622974,-0.0039444864,-0.029824771,-0.004395815,0.019252557,0.05955062,-0.001463726,0.009280054,0.0072027068,0.00084160385,0.022615882,-0.0411018,0.014232301,-0.016037615,-0.009910678,0.0074871057,0.02831622,-0.008222832,-0.006343328,0.001803768,-0.042832922,-0.002364837,-0.0001229754,0.0175338,-0.019623512,-0.0041454206,0.015369896,-0.010745325,0.0031685727,0.018114962,0.013094706,-0.025744267,-0.03838146,-0.012494996,-0.049881063,0.028860288,-0.023431981,0.025163105,0.008154824,-0.007468558,-0.038752418,0.03912337,-0.035834238,-0.013107072,0.013564583,-0.0005633877,-0.019771894,0.028192569,-0.003703366,0.02977531,-0.015320435,-0.016087076,-0.0046616658,0.0017651268,-0.009502627,0.015740851,0.015777946,0.05796788,-0.059253857,-0.009923043,-0.0025425863,-0.013515122,0.019289652,0.015060767,0.03514179,0.028019456,0.012637195,0.013527487,0.011753086,0.020513803,0.013935537,0.0069368556,-0.018201519,-0.023543268,0.013292549,-0.008674161,-0.0019799715,-0.014232301,0.0040928684,-0.019648243,-0.027945265,0.03650196,0.0143312225,0.0034344236,-0.007969347,-0.016903177,-0.018485917,-0.010949351,-0.015926328,-0.022764264,0.024730323,-0.009595365,0.0052088243,-0.05579161,-0.028538793,0.04429201,0.012167319,0.00859997,-0.0030742884,0.016346743,-0.014207571,0.026931323,-0.011814912,0.013737694,-0.0047234916,-0.029280704,0.009564453,0.0107020475,0.07824674,-0.0076478524,-0.021255713,0.038702957,0.015728487,0.009583,0.009372792,0.001537917,-0.0040712296,0.012124041,-0.0037157312,-0.009842669,0.005833265,0.009681921,-0.010535118,-0.018374631,-0.02412443,0.037070755,0.030195724,-0.008513414,0.027030244,0.0034777017,0.020229405,0.018288074,0.0047636786,-0.01911654,0.023901857,-0.005842539,0.010448562,0.005950734,0.024705593,0.027302276,0.0017960398,-0.015147323,-0.03660088,0.0027126074,0.040335156,0.013082341,0.018164422,-0.012426987,0.032371994,-0.0048904214,0.020278865,0.015172053,0.023419617,0.023431981,-0.0028857195,-0.023048662,-0.027500119,-0.00094979897,-0.046839233,0.017051559,0.04515757,-0.014219936,0.017311227,0.023963684,-0.0031252946,0.007140881,0.0017821289,0.0048255045,0.00035685085,0.05509916,0.0005637741,-0.00068124314,0.0005413622,-0.026436716,-0.05262613,-0.012773212,0.0021036232,0.011048272,0.020526169,-0.0007898247,0.024433559,0.0117159905,0.003820835,0.021972893,-0.002261279,-0.03731806,0.011351218,0.017781103,0.019079445,-0.02179978,0.02980004,0.015988154,-0.015913963,0.027920535,-0.003502432,-0.006473162,0.024359368,0.030813983,0.0008655613,-0.003224216,-0.0055705053,-0.00371264,-0.008389763,0.0021515382,-0.033287015,-0.018238613,0.017657451,-0.008754535,-0.003734279,-0.0022643702,0.019586416,0.0025410408,0.034993406,0.049262803,0.016965002,0.0071346983,0.02412443,0.006918308,-0.006757561,-0.019388573,-0.01449197,-0.017929485,-0.006534988,0.008989473,0.01710102,0.012797942,0.007561296,-0.0114315925,0.034820296,0.0689976,0.009589183,0.017039193,0.014590891,0.0121549545,0.016173631,-0.013515122,-0.0027218813,0.008334119,-0.021305174,0.017756373,0.010930803,-0.013020515,-0.010868977,0.025422772,-0.003660088,-0.024000779,-0.009984869,-0.0003211078,-0.0375159,0.004967704,0.043203875,0.0009822575,-0.030146264,0.014294127,0.0059414604,0.013045246,0.007561296,-0.0015471908,-0.022554055,0.017620355,-0.016804256,0.014380683,0.0044978275,0.03373216,0.009020385,0.007771504,-0.006173307,0.009694287,0.02977531,-0.0076478524,0.0017635812,0.004352537,0.04807575,-0.015209149,-0.0104114665,-0.013515122,0.00819192,0.007697313,-0.0040805032,-0.00039124145,-0.0015394626,0.0019830628,0.020056292,-0.05816572,-0.004701853,0.029503277,-0.025422772,0.0074314624,-0.027228085,-0.002582773,-0.009354245,-0.027648501,0.010949351,-0.031580623,0.022195466,-0.01732359,0.014244666,-0.009681921,-0.017088654,-0.008618518,0.020909488,-0.03160535,0.027425928,-0.007499471,0.047482222,-0.010689682,0.012216779,0.018560108,-0.03524071,-0.024755053,-0.009638644,0.011975659,-0.0036229924,-0.03061614,-0.004853326,0.023765841,-0.024235718,0.0028888108,0.01758326,-0.005286107,0.021898702,0.062221494,0.0023540177,-0.011852007,0.009317149,-0.013403836,-0.042091012,0.03355905,-0.0067699263,0.02220783,-0.016087076,-0.06266664,-0.009261507,0.010405283,-0.0042227027,-0.018003676,0.032693487,0.016915541,-0.012618648,-0.0031175665,-0.0077838693,-0.0065906313,-0.025546424,-0.029404355,-0.013082341,-0.010368188,-0.016989732,0.00821665,0.0019336022,0.012464083,-0.033855814,0.015592469,0.0066957353,0.00053092913,0.0011043635,-0.018065501,-0.030541949,0.019153636,0.015555373,0.003885752,0.0040805032,-0.016087076,-0.03820835,0.015592469,0.012896864,-0.020773472,0.0020077932,0.017175209,0.009119307,0.0021577207,0.0137500595,-0.011783999,0.03763955,-0.0024390281,0.019067079,0.010831881,0.006522623,-0.027475389,-0.030344106,-0.0044236365,-0.036328845,0.024878705,0.022121275,-0.010646405,-0.0034560626,0.009459348,0.0148381945,-0.03838146,-0.006448432,-0.00344988,0.01760799,0.0034467888,-0.031531163,-0.006868847,-0.053219657,-0.02596684,-0.014269397,0.012309519,0.0118643725,-0.0063371453,-0.0136016775,0.000620963,0.054802395,-0.0052799243,0.016643507,-0.01909181,-0.012797942,-0.0049429736,-0.028736636,-0.0037713742,0.017756373,-0.022652976,-0.016692968,0.0069677685,0.010442379,0.052230444,0.0065288055,0.015679026,0.009644826,-0.03363324,-0.025768997,-0.04132437,0.0114996005,0.0011584611,0.05440671,0.02670875,-0.005771439,-0.022380942,0.0566819,0.024705593,-0.0041670594,0.00073572714,0.03538909,-0.005493223,0.005122268,0.020996045,0.013836616,0.025496963,-0.011400679,0.0013918536,0.0005239737,-0.02596684,-0.016470395,0.010640222,-0.034919217,-0.04211574,0.0023370155,-0.0020804384,-0.038529843,0.034004197,-0.0016322014,-0.009651009,0.021972893,0.032396723,-0.0056385137,0.040137313,0.035611667,-0.006949221,0.020662185,-0.022319118,-0.016420934,-0.042091012,-0.035685856,0.03533963,0.044168357,-0.025150739,0.054604553,0.005938369,-0.027500119,-0.0013663503,-0.012686656,-0.0124455355,0.014652717,0.028761366,0.005555049,-0.0151967835,-0.015864503,0.019289652,-0.024000779,-0.022986835,-0.012581552,-0.04201682,0.004055773,0.00025734992,0.0052490113,0.013403836,-0.021849241,-0.04285765,-0.0153328,0.050078906,-0.017447243,0.001237289,0.018485917,0.011709808,0.00515009,-0.027302276,-0.042956572]},{"id":"guide-moderation-2","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Kick a member\nguild.kick(userId, options) kicks a user from the guild. Pass reason for the audit log. Requires KickMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.025103355,0.046243023,-0.007495435,0.0076987008,-0.01652807,0.042406376,-0.073836386,0.04626843,0.040805656,-0.0003995845,0.0375534,-0.029168677,0.012570734,0.030871028,0.0056056962,-0.02160972,-0.020085225,-0.0006494985,-0.04281291,0.049419053,0.033691347,0.094518706,0.020872882,0.021990843,-0.006396528,0.0014141281,-0.024938202,-0.015613372,-0.024646007,-0.051096,0.04352434,-0.0035635077,-0.00658709,-0.019246753,-0.037350133,-0.009451871,-0.002310563,0.016108833,0.012710479,-0.01258979,-0.012323003,-0.08176376,-0.0029664137,0.0043606916,-0.015105207,0.042685866,-0.0075716595,0.015117912,-0.014177806,0.015194136,-0.03887463,0.0323193,0.017938226,0.07866395,-0.0024518964,-0.014952757,-0.0038557025,0.024214067,-0.0051388196,0.022422785,-0.012748592,-0.025535295,0.010550777,-0.012234074,-0.0021374694,-0.014101581,-0.03259879,0.0062409025,0.01652807,0.019602468,0.035292067,0.02262605,-0.035851046,-0.009915571,0.0043130512,-0.0017595215,0.06667126,-0.029524392,0.010195062,-0.037578806,0.032395523,0.03130297,-0.03844269,0.018916445,0.014520817,-0.019475427,-0.059201233,-0.01659159,0.0317095,-0.048656806,-0.033538897,0.050384566,-0.04029749,0.009426462,0.067433506,-0.021749465,0.0021739937,-0.056558773,0.007114311,0.036333803,0.041542497,-0.053001616,-0.02145727,-0.023350185,0.0507911,0.025039835,-0.03580023,0.044439036,-0.0051324675,0.0016721807,-0.05823572,0.03989096,-0.009725009,0.034834716,-0.029143268,-0.0053611416,0.03902708,-0.0044909087,0.016680518,-0.037223093,-0.065959826,-0.025992643,0.022460897,-0.04713231,-0.017290317,-0.01572771,-0.033259403,0.012126089,-0.03610513,0.052645903,0.042965356,-0.02539555,0.035037983,-0.021190483,-0.037451766,0.027466323,0.0074509704,-0.02619591,-0.029676842,0.000059203216,-0.010296695,-0.0075335475,0.023769422,0.029575208,-0.042685866,-0.03364053,-0.046370063,0.049419053,-0.033538897,-0.0014697087,-0.040195856,-0.030769397,0.013440967,0.0023693198,-0.0047386396,0.0040494404,-0.016019905,-0.008244978,-0.038188607,-0.03961147,-0.028711326,-0.044896387,0.032522567,-0.019678693,-0.052442636,-0.031531643,-0.013999948,0.04931742,-0.020339308,0.0072350004,-0.004703703,-0.040678617,-0.010131542,-0.010982717,0.018675067,0.005729561,-0.032217667,-0.02751714,-0.029041635,-0.019754918,-0.037350133,-0.020339308,-0.007431914,0.012748592,-0.056965306,0.025700448,0.031023478,-0.025941828,-0.013707753,-0.018370168,-0.0082259225,0.014482705,-0.020047113,-0.013123363,0.03524125,-0.00938835,0.045582406,-0.016756743,0.030972661,-0.022092476,-0.010900141,0.010728635,0.0037699498,-0.074700266,0.015524443,0.04540455,-0.033843793,0.023528043,-0.010493609,0.0090262825,0.013034434,-0.023299368,0.035266656,0.023007175,-0.014304847,0.018497208,-0.025014427,0.010607946,-0.021139668,0.005122939,-0.072667606,-0.0060471646,0.03973851,-0.009858402,0.011560756,0.01563878,0.035774823,-0.005974116,0.011141519,0.015168727,-0.028685918,-0.020009,-0.013301221,-0.03902708,0.041745763,0.0036238523,0.011846598,0.01797634,-0.017849298,-0.057422653,0.014508113,-0.01018871,-0.01120504,-0.02385835,-0.012126089,-0.023121512,0.022651458,-0.021635128,-0.01058889,0.029676842,0.06717943,0.023312073,0.02604346,-0.0036333804,-0.00043670437,0.021317525,0.01711246,0.010353863,0.028685918,-0.009038987,0.009629728,0.0068475245,-0.024480853,-0.017646033,-0.0378583,0.013148772,0.008105233,-0.029753065,0.010029908,-0.023502635,-0.04189821,-0.014685971,0.000352341,-0.023528043,0.039382793,0.020631501,0.047970783,0.009331182,-0.03712146,-0.066264726,0.014368367,0.019081598,0.0427875,0.008365667,-0.005866131,0.010963662,-0.020402828,0.011471827,0.01745547,0.0695678,-0.058896333,-0.026526216,-0.0012608846,0.047081497,0.031125112,-0.012348412,0.0029664137,-0.032192256,0.04207607,-0.013263108,0.014076172,0.035901863,-0.055644076,-0.09416299,0.052899987,-0.017811187,0.026526216,0.014012652,-0.03143001,-0.042533416,0.022016251,0.002312151,-0.04060239,0.033411853,-0.01258979,-0.0070571424,0.025192283,0.039535243,0.03041368,0.03770585,0.035546146,-0.030007148,0.008727735,-0.01419051,-0.020999921,-0.04497261,-0.0030235823,-0.05645714,0.011694149,0.019081598,0.053509783,-0.0215462,0.007558956,0.06082736,0.019894663,0.02117778,0.013682345,0.041085146,0.0089182975,-0.0039319275,0.010747692,-0.0016753568,-0.014685971,-0.016121536,-0.007889263,0.00020922109,0.018509913,0.0065616816,-0.0022422783,0.00500225,0.0100045,0.011230448,-0.014254031,-0.0424826,0.0024360165,-0.0406278,0.015295769,-0.01462245,0.03099807,0.0072413525,-0.039077893,0.0029283012,-0.035571557,-0.031125112,0.07668211,0.026602441,-0.05981103,-0.056660406,0.038747586,0.016299395,0.004408332,0.0014649447,-0.042177703,-0.019615171,-0.029575208,0.012024457,0.004621126,0.010182357,0.0015356113,0.024925496,0.022499008,-0.039535243,0.020479053,-0.035978086,0.012227722,-0.025230397,0.015130615,0.009807586,-0.022206815,0.004421036,-0.021266708,0.008429188,-0.0045385496,-0.013568007,0.0107731,-0.036460843,0.03290369,0.018903742,-0.0075271954,-0.006885637,0.018154198,0.011592516,0.001605484,-0.002515417,-0.02234656,0.038620546,-0.0147749,0.01222137,0.026094276,-0.012596142,0.028457245,0.027847447,0.045480777,-0.024455445,0.0292449,-0.051782023,0.039204936,-0.015867455,0.0295498,0.032370117,-0.057016123,0.030185007,-0.00027611625,-0.031633276,0.06097981,0.017620625,0.008130642,0.01397454,0.07434455,-0.05137549,-0.077901706,-0.008791256,0.005901067,-0.03491094,0.027720405,-0.04568404,0.00797184,-0.028889185,-0.026653258,-0.0033284812,-0.05605061,-0.004122489,-0.0015554616,0.03143001,0.02416325,-0.012411932,0.053967133,-0.050460793,0.034148693,-0.010607946,-0.023312073,-0.024087025,0.019284865,0.005237276,-0.016248578,-0.04060239,0.025471775,0.037223093,0.012659662,0.056558773,-0.0048529766,0.02982929,0.027593363,0.021889212,0.0024630127,-0.01563878,0.0042272983,0.039052486,-0.032776646,0.015981792,0.010169654,0.013644232,0.006872933,-0.012538973,-0.04611598,-0.006701427,-0.008823017,-0.046954453,0.041263003,0.011916471,0.018014451,0.02810153,0.008232274,0.010582537,0.015244952,0.02016145,0.026958158,0.025941828,-0.03783289,-0.0020882408,-0.015702302,0.030769397,0.04728476,-0.013110659,0.0048466246,0.0016547126,0.055542443,-0.03915412,0.015308473,0.012945506,-0.022435488,-0.016667815,-0.053306516,0.04380383,-0.034529816,0.01957706,-0.027415507,-0.035724007,-0.0023566156,0.028558878,-0.056711223,-0.047056086,-0.008359316,-0.028457245,-0.008264035,0.034453593,-0.04542996,0.008175106,-0.005929651,0.018649658,-0.008136993,0.056253873,-0.0071270154,-0.01782389,-0.0011417834,0.010055317,0.012323003,-0.028076122,0.018154198,0.02133023,0.0037286612,-0.005885187,0.031379193,0.016858377,-0.025852898,-0.04380383,-0.021660537,0.00023323983,0.023591563,-0.037756667,0.024417331,0.012323003,-0.009197788,-0.016705927,0.006101157,-0.013453671,-0.004687823,0.008327555,0.035698596,0.007006326,0.001100495,-0.041821986,0.005837546,-0.029473575,-0.01732843,-0.012634254,-0.006637906,-0.022016251,-0.015600668,0.0059455317,0.022740388,-0.0021501735,0.010144246,-0.011465475,-0.06641717,-0.034402777,0.018433688,-0.0010750868,0.009032634,-0.007927375,0.020428237,-0.014800308,-0.019653285,0.0059645874,0.043117806,-0.021749465,-0.020847473,0.039662283,0.0006895959,0.020491756,0.006415584,-0.040932696,-0.004500437,0.004598894,-0.012596142,-0.04220311,-0.023667788,-0.011814838,-0.058997966,0.011027182,-0.01585475,-0.0240108,-0.01732843,0.024874682,0.03534288,0.012850224,0.004093905,-0.02111426,-0.0378583,0.0115035875,0.0056533366,-0.030210415,-0.007990896,0.021647833,0.021558903,-0.0019167352,0.008778552,-0.008308499,-0.020453645,0.005688273,0.033513486,-0.015740413,-0.03084562,-0.0066760187,-0.00895641,-0.015105207,0.018179607,-0.03580023,0.004529021,0.030464496,0.018497208,-0.010233174,0.033996243,0.041593313,-0.017201388,0.031023478,-0.037070643,-0.027339282,0.019246753,-0.02234656,0.00040276052,-0.02465871,-0.0060122283,-0.048275683,-0.014292143,-0.017658737,0.010017204,-0.012799408,0.011306673,-0.028609695,0.048224866,0.016909193,0.02764418,0.008067121,-0.005821666,0.0069618616,0.0076605887,0.01914512,-0.009807586,-0.016413732,-0.025560703,-0.010068021,-0.02271498,-0.014901941,0.03389461,0.0053643174,0.025281213,0.02866051,-0.0069491575,-0.0073556895,-0.010417384,-0.00068800786,-0.0072350004,0.035444513,0.012399228,0.0020771248,-0.049088746,0.004700527,-0.018065268,-0.0006137681,-0.00015493079,0.0056533366,-0.008206866,-0.007558956,0.03610513,0.0028790727,-0.032090627,-0.007304873,0.013059842,0.008105233,-0.01674404,-0.00698727,0.0055707595,-0.008448244,-0.010195062,-0.0015364054,0.032649606,-0.00032256573,0.009566207,0.0022740387,0.022499008,-0.019920072,0.0067204833,-0.032217667,-0.016985418,-0.0063488875,0.00760342,0.016604293,-0.012126089,-0.05503428,0.009337533,0.036181353,-0.02385835,0.006917397,0.010531722,0.018763995,0.026653258,0.026221318,-0.056660406,-0.008238627,-0.026221318,0.029422758,-0.040856473,0.025471775,-0.019843847,0.0067395396,-0.010900141,-0.060624093,0.022664163,-0.030871028,-0.005272213,0.024709526,0.012881985,0.005637456,-0.028863776,-0.00818781,-0.023782127,0.034453593,0.029676842,-0.040272083,-0.026577033,-0.030362863,0.0397131,0.002386788,-0.027390098,0.00418601,-0.007107959,-0.014876532,-0.024989018,-0.023655085,-0.019742213,0.02176217,0.0052531566,-0.008314851,-0.012799408,0.0018405104,0.0059518837,-0.016502662,-0.0019532596,-0.007838447,0.015295769,0.009489983,-0.05823572,-0.027110606,0.012430988,-0.032649606,-0.004328931,-0.008314851,-0.029854698,0.06687453,0.006066221,0.017150572,0.043194033,0.03684197,0.0063393596,0.0023629677,-0.020720432,-0.005888363,0.0018643306,-0.0004609216,0.02102533,-0.0041129612,0.017074347,0.01218961,0.027085198,-0.03912871,-0.0067458916,-0.009559856,0.007590716,0.012316651,0.019018078,0.04891089,-0.01157346,-0.008321203,-0.021851098,-0.041999843,-0.00398592,-0.033665936,-0.038468096,-0.011586164,-0.019221345,-0.024671415,0.013885611,0.028838368,-0.04746262,-0.011401954,-0.029371941,-0.07403965,0.012138793,0.03945902,0.0049641374,0.0067840037,0.03524125,0.0267803,0.042101476,-0.029854698,-0.051705796,0.0026138742,-0.031658683,0.016185058,-0.010766747,0.034834716,0.015092503,-0.020796657,-0.01037292,0.023223145,-0.014838421,-0.008499061,-0.024353812,-0.03099807,0.0012831169,-0.0017309373,-0.0042558825,0.016718632,-0.00963608,0.0317095,-0.016337506,-0.02197814,-0.034453593,-0.02059339,-0.02044094,-0.004687823,0.04291454,-0.0028473125,-0.016401028,-0.0056628645,-0.07622476,0.019615171,-0.020034408,-0.010106133,-0.014050765,0.0075526037,-0.017785778,0.015880158,0.020352012,-0.005195988,0.02896541,0.012443692,0.027694996,0.037146866,0.0019421434,-0.00081624015,0.004808512,-0.017303022,0.020936402,-0.041288413,-0.008880185,0.025713153,-0.00843554,-0.015041687,-0.023782127,-0.026653258,-0.0043384596,-0.043422706,-0.03158246,-0.00017954505,0.0019913719,0.0043543396,0.02662785,-0.0063425354,0.017277613,-0.015346586,-0.0033221291,-0.010646058,0.0029092452,-0.026831117,-0.012716831,-0.0044400925,0.01360612,0.0056565125,0.044210363,0.01622317,0.004779928,-0.013796682,0.0061424454,-0.010417384,-0.030083373,0.03887463,0.022219518,0.0031712677,-0.00003548223,-0.011891063,0.0017452295,-0.03287828,0.006866581,0.0034332904,-0.01585475,-0.02111426,0.008670567,0.0011941879,0.010112485,0.0012608846,-0.014749492,0.011528995,-0.011541699,0.021088852,-0.022460897,0.016515365,-0.006225022,-0.029905515,0.029371941,-0.044159546,0.031201337,0.016273987,0.013796682,0.017811187,-0.0018706827,-0.00917238,-0.00013785964,-0.029422758,-0.020415531,0.0350888,0.044337403,-0.029854698,0.013568007,-0.026399177,0.06601065,-0.0044909087,-0.0062567824,0.026005348,-0.0073620416,-0.0047259354,-0.0203139,0.02016145,-0.011077999,-0.009864755,0.026754891,0.024175953,-0.0012219782,0.011122463,0.056965306,0.027898263,-0.016972713,0.027466323,0.0012743827,0.00440198,-0.023007175,-0.0040335604,-0.002501125,-0.0045703095,0.00054151344,-0.018979967,0.038086973,-0.009960036,0.025065243,-0.022981767,0.030820211,0.02111426,0.023223145,0.021622425,0.016235875,-0.022880133,0.008880185,0.0063838237,0.0006356034,-0.04192362,-0.00079361093,-0.034987167,0.007590716,-0.0103030475,0.016083425,0.036206763,0.040653206,0.024493556,-0.056863673,0.004087553,0.018357463,0.020682318,0.007984544,-0.03389461,0.009045338,0.03727391,0.005373846,-0.002996586,-0.032547973,-0.010423737,0.013936427,0.019615171,0.013212292,0.030743988,0.0049387296,-0.020707726,-0.030057965,-0.007558956,-0.0015332294,0.0009805998,0.033386447,-0.02044094,-0.012437341,0.00880396,0.017341133,-0.00096074963,-0.015740413,-0.019068895,0.031760316,-0.02299447,0.016705927,-0.026399177,0.013923723,0.0037318373,0.013263108,0.04497261,-0.0175444,0.018382872,-0.05066406,-0.011230448,0.009045338,-0.01659159,-0.008562582,-0.010569834,0.061894506,-0.022054365,-0.0016197762,-0.036918193,-0.007317577,-0.02225763,0.019932775,0.054475296,-0.035317473,-0.04919038,-0.0071333675,0.016947305,0.05239182,-0.0111034075,0.007038086,0.016362915,-0.00038291034,0.002412196,0.020059817,-0.028126936,-0.014863828,-0.018586138,-0.023477226,0.023350185,0.052010696,0.008378372,0.018675067,-0.02502713,-0.02453167,0.032827463,-0.022016251,0.0031665037,-0.013542599,-0.010906493,0.019246753,0.0295498,-0.010519017,-0.017989043,0.015867455,-0.049292013,-0.021012627,-0.01255803,0.015181432,-0.019602468,-0.002512241,0.019195937,-0.011287617,-0.017188683,0.018700475,-0.0012616786,0.003607972,-0.03186195,-0.01884022,-0.046090573,0.012799408,-0.03813779,0.015829341,0.0055707595,-0.022359263,-0.034479,0.025751265,-0.02241008,-0.009648784,0.027898263,-0.0078257425,-0.0012450045,0.013123363,0.022676867,0.025967235,-0.02465871,-0.002796496,-0.00095519156,-0.006082101,-0.006024932,0.017798482,0.005316677,0.018154198,-0.04758966,-0.016629701,-0.012780352,-0.013072547,0.010677819,0.012240427,0.030642355,0.019920072,0.019259457,0.01215785,-0.0041383696,0.0025455893,0.016426437,0.008448244,-0.0021517614,-0.026475402,-0.0073429854,0.0044527967,-0.028635103,-0.024722232,-0.007285817,-0.0123039475,-0.0012386524,0.023299368,0.015054391,-0.008543526,-0.0032681366,-0.0036810208,-0.015156023,-0.017430061,0.001299791,-0.037019826,0.024188658,-0.006631554,0.01462245,-0.038315646,-0.041542497,0.03973851,0.022067068,-0.013313925,-0.019183232,0.023566155,-0.02271498,0.0014244502,-0.013250404,-0.018332055,0.0017214093,-0.030337455,0.011986344,0.000026648891,0.08552419,-0.00024038591,0.009280365,0.013631528,0.013745866,0.017722256,0.033208586,0.013047138,0.019132415,0.029854698,-0.034809306,-0.020631501,0.030515313,0.033386447,-0.023439115,-0.03651166,-0.020453645,0.02176217,0.03684197,-0.02764418,0.022016251,-0.020847473,0.03071858,0.009864755,-0.020453645,-0.017849298,0.014940053,-0.0100045,0.002887013,-0.014381072,0.026119685,-0.009331182,0.009185084,-0.018522616,-0.03740095,0.023464523,0.029778473,0.02191462,0.018636955,-0.0024614246,0.03272583,-0.017646033,0.026246727,-0.0036302044,0.026551625,0.0092104925,-0.0010274462,-0.036333803,-0.027161423,0.023172328,-0.042609643,0.04192362,0.030007148,-0.0038398225,0.018293943,0.013682345,-0.006999974,0.0074509704,0.002590054,-0.0033729458,-0.014978166,0.031353787,-0.009890163,-0.0042527067,0.0010719107,-0.004287643,-0.060014296,-0.017087052,0.022918245,0.029626025,0.021724056,0.021304822,0.005885187,0.0062694866,0.015270361,0.0026170502,-0.00781939,-0.024480853,0.015181432,0.025675042,0.00026658818,-0.011116111,0.012062568,0.01979303,-0.006917397,0.03884922,-0.00091152114,-0.025293916,0.04583649,0.029854698,0.022054365,0.0061678537,-0.0010385624,-0.00039482044,-0.00021458065,0.012367467,-0.0045766616,-0.0009766298,-0.0061646774,-0.009413758,-0.012964562,-0.007158776,0.025586111,-0.0046115983,0.0538655,0.024861977,0.008384724,0.023096103,0.020682318,0.015270361,-0.010709579,-0.0215462,-0.01462245,-0.009661488,-0.016350212,-0.003107747,0.009178732,0.045785673,0.029295716,0.0080099525,0.020542573,0.05762592,0.0027837919,0.021749465,0.030312046,0.014724083,0.02545907,-0.017862003,0.013999948,0.021647833,-0.02853347,0.007006326,0.012545326,-0.02059339,0.0021676417,0.022244927,-0.023502635,-0.026551625,-0.0042495304,0.00069634494,-0.028609695,-0.00017200196,0.032979913,-0.015689597,-0.028304795,-0.0080036,0.009953683,0.019589763,-0.006517217,-0.0025773498,-0.0145970415,0.027008975,0.00803536,0.006701427,0.010436441,0.007901967,-0.008943706,0.00720324,-0.006097981,0.01674404,0.024048913,-0.015918272,-0.013224997,0.01520684,0.05981103,-0.026754891,-0.017137866,0.012049864,-0.024607895,0.0037254852,0.0021803458,0.015295769,-0.010074372,0.00024912,0.006701427,-0.04263505,-0.0020755366,0.015003574,-0.017531695,-0.019068895,-0.022270335,-0.0033348333,0.0012188022,-0.0025408254,0.020186858,-0.025891012,0.029803881,-0.022753092,0.014292143,0.0077685737,-0.01994548,-0.01572771,0.019742213,-0.03887463,0.04105974,-0.016718632,0.035749413,-0.015676893,0.015600668,0.011560756,-0.0375534,-0.021228597,-0.01696001,0.009242252,0.0163121,-0.0069682137,-0.015079799,0.014317552,-0.0044527967,0.0018817988,-0.011459122,0.004630654,0.030972661,0.059150416,0.008880185,-0.015168727,0.017442767,-0.018662363,-0.044566076,0.02911786,-0.009655137,0.009413758,-0.027822038,-0.07190536,0.013644232,-0.0011679857,-0.016324803,0.015613372,0.034809306,-0.0038239423,0.0027536196,0.0120054,-0.013987244,-0.007793982,-0.037299316,-0.02619591,-0.023045287,0.009998148,-0.023451818,0.0001555263,0.009725009,0.014114285,-0.022333855,0.03041368,0.0009099331,0.0046751187,-0.00011562741,-0.012265835,-0.017531695,0.0053674937,0.029067043,-0.0019294393,0.019450018,0.01892915,-0.026068868,0.0038493504,0.0075653074,-0.023032581,-0.001797634,0.036638703,-0.0026472225,0.0055262954,0.019843847,-0.009744066,0.027288465,-0.0025678216,0.026068868,0.019437315,-0.012119737,-0.017518992,-0.04207607,-0.0045607816,-0.036206763,0.036181353,0.01674404,-0.010106133,-0.010595242,0.009744066,-0.010512665,-0.050282937,-0.01665511,0.009737713,0.027872855,0.011941879,-0.030235823,-0.018217718,-0.0535606,-0.021444567,-0.027593363,0.009991796,0.027339282,-0.010436441,-0.010480905,-0.010671467,0.03130297,-0.00067490677,0.02016145,-0.024264883,-0.024112433,-0.013745866,-0.032700423,-0.02234656,-0.0005157082,-0.037350133,-0.020212267,0.021406455,0.026399177,0.04395628,-0.004608422,0.009852051,-0.008873832,-0.04250801,-0.025382847,-0.03422492,0.0015776937,0.0060185804,0.050155893,0.015384698,-0.010715931,-0.016273987,0.02998174,0.013796682,-0.016350212,-0.0012553266,0.022473602,-0.0022565706,-0.009007226,0.021647833,0.0024630127,0.021711353,-0.013809386,0.012481805,-0.012456397,-0.030286638,-0.011090703,0.012894689,-0.017366542,-0.038950853,0.000499431,-0.013059842,-0.03592727,0.045760266,0.002196226,-0.031252153,-0.007781278,0.041821986,-0.0041478975,0.052899987,0.029930923,-0.011744966,0.0295498,-0.012386524,-0.019043487,-0.031023478,-0.023680493,0.04121219,0.059201233,-0.013542599,0.05544081,-0.0001255525,-0.017518992,-0.005697801,0.016426437,-0.014215918,0.023350185,0.023312073,-0.0012378584,0.0006129741,-0.003407882,-0.003687373,-0.013428262,-0.019894663,-0.011751317,-0.034275733,0.008543526,-0.010436441,-0.00021557315,0.008791256,-0.0014911469,-0.030515313,-0.015930975,0.031684093,-0.016337506,-0.007323929,0.004389276,-0.00975677,-0.008378372,-0.025649633,-0.048377316]},{"id":"guide-moderation-3","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Unban a user\nguild.unban(userId, reason?) removes a ban. Requires BanMembers permission.\n\n```javascript\nconst userId = parseUserMention(target);\nif (userId) {\n await guild.unban(userId, rest.join(' ') || undefined);\n await message.reply(`Unbanned <@${userId}>.`);\n}\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[0.00077832106,0.003312717,0.004673732,0.011149972,-0.037803948,0.031178514,-0.0744387,0.05836228,0.030155469,-0.019462213,0.018585317,-0.004265732,0.015698869,0.027792722,-0.0024845377,-0.01867057,-0.0060621505,0.0077763596,-0.04664598,0.048180547,0.025868423,0.09772515,0.013470092,0.05027535,-0.0066376133,0.01677063,-0.01582066,0.021690989,-0.004810747,-0.050226636,0.06055452,-0.0003777426,-0.014115585,-0.006357494,-0.0038820903,-0.0057698516,0.029327288,-0.013835466,0.0013534032,0.012532301,-0.0048472844,-0.050811235,0.0076302104,-0.04567165,-0.019949377,0.06201601,-0.026428662,0.026964542,0.00327009,0.020241676,0.00037032095,0.010815047,0.0065828073,0.07024909,-0.022567885,-0.0037937916,0.0076971953,0.036853977,-0.0001960075,0.010547106,-0.01867057,-0.009006449,-0.018487884,-0.000044339562,-0.027037617,-0.0077215536,-0.03095929,0.0026717915,-0.00047688815,-0.0022211645,0.009152599,-0.008805494,0.038900066,-0.0035014933,-0.012148659,0.0038638215,0.044624247,-0.024821019,-0.03816932,-0.004034329,0.031056723,0.026696602,-0.034661736,0.025040243,-0.0042352844,0.0049416726,-0.058118697,-0.011667584,0.012995107,-0.042578157,-0.0031391648,0.017769316,-0.048034396,-0.0020978511,0.050421502,-0.046402395,-0.044746038,-0.024321675,0.017610988,0.03587965,0.03831547,-0.03151953,-0.02289672,-0.046110097,0.038388543,-0.025235109,-0.0160886,0.04077565,-0.039362874,0.028596543,-0.02468705,0.03585529,0.0092865685,0.047644664,-0.039752603,-0.000650821,0.026258154,-0.0034954036,0.011113435,-0.03695141,-0.0373655,-0.024492184,0.05617004,-0.03746293,-0.0049538515,-0.002285105,-0.02508896,-0.0039460305,-0.031397738,0.012495764,0.058557145,-0.006917733,0.028840125,-0.017477019,-0.059239175,0.016307823,0.03154389,-0.0015558809,-0.007417076,0.017148182,0.0019730153,0.0028742692,0.031690035,0.035709143,-0.07775142,-0.017684063,-0.036610395,0.025844064,-0.0047620307,-0.0022348661,-0.06771583,-0.033638693,-0.007922509,-0.020485258,-0.0039734337,-0.026647886,-0.03653732,0.0062417923,-0.04637804,-0.06513386,-0.0013206719,-0.07702067,0.03190926,-0.062600605,-0.001152448,0.003116329,0.0068202997,0.038388543,-0.016405256,-0.016880242,0.0033188066,-0.01867057,-0.044819113,-0.036586035,0.005383165,-0.0062965984,-0.043162756,-0.017282153,-0.025819706,-0.0110647185,-0.030740066,0.004320538,-0.016758451,-0.015296958,-0.06937219,0.025186393,0.0122826295,0.0022318214,-0.03242078,-0.046110097,0.006972539,0.026672244,0.010035584,0.015552719,0.059775054,-0.013530987,0.05027535,-0.030715708,0.019985914,-0.018780183,-0.027451707,0.0077763596,0.0025454334,-0.019608362,-0.01717254,0.00042170158,0.0043114037,0.014821973,0.016551405,0.013384839,-0.022543527,-0.032250274,0.012471405,0.034954038,-0.0035928364,-0.0289132,-0.04742544,0.012209554,-0.027110692,0.014517495,-0.047595948,-0.0031300304,0.010133017,0.007459703,0.008982091,-0.008494927,0.046986993,0.017501377,-0.029132424,0.06596204,-0.020667944,-0.019437855,-0.04077565,-0.013214331,0.05714437,0.0016487465,0.01185636,0.015589257,-0.021106392,-0.055439293,-0.0014729107,-0.0141764805,0.024589617,-0.02072884,0.02139869,-0.008367047,0.059677623,-0.01037051,0.03259129,0.046426754,0.039703887,0.035100184,0.01308036,-0.041262813,-0.012306987,-0.01677063,-0.0066071656,0.04486783,0.04216407,-0.043844786,-0.008129554,-0.006576718,-0.015126451,0.004783344,-0.033322036,0.026209438,0.015637973,0.007538867,0.00476812,0.003900359,0.0010626271,-0.004363165,-0.0044940906,-0.022239048,0.0026641795,0.036025796,0.07054139,0.02849911,-0.049861263,-0.062649325,0.003970389,0.04077565,0.03656168,0.006056061,0.015443107,0.036512963,-0.039338514,0.0058398815,0.01786675,0.059482757,-0.003790747,-0.011143883,0.007660658,0.025454333,0.044599887,0.023651825,0.06230831,-0.015662331,0.030569557,0.010492301,0.011545793,-0.006327046,-0.022714034,-0.09202533,0.04213971,-0.0024784482,-0.016039884,-0.0072465683,-0.015881555,-0.0070029865,0.02329863,-0.012075584,-0.0406295,-0.00015690115,-0.022994153,-0.022019824,-0.015236063,0.031836186,0.004229195,0.06781327,0.052175295,-0.008537554,0.006856837,0.0008175225,0.0058551054,-0.02645302,0.024845378,-0.034978393,0.030325975,0.03587965,0.012605376,-0.010236539,-0.023931945,0.033589978,0.032615647,0.007940778,0.0060773743,0.032250274,-0.019888481,-0.017757138,0.0052461503,0.009317016,-0.026136363,-0.0354412,-0.026233796,-0.027768364,-0.0023383885,0.0338092,-0.02072884,-0.0155161815,0.007678927,0.029376006,-0.004734628,-0.062210876,0.008568002,-0.007374449,0.006083464,-0.011740658,0.027451707,-0.0017416122,0.011539703,0.0070821503,-0.019035943,-0.002140478,0.056121323,0.021033317,-0.03894878,-0.012593197,0.02752478,0.021228183,-0.0066315234,-0.03288359,-0.048375413,-0.008549733,-0.011478808,0.01826866,-0.0011943136,0.011149972,0.002755523,0.022848004,0.037146274,-0.008829853,0.013482271,-0.03298102,0.005986031,0.0005217986,0.04306532,-0.0043296725,-0.016137317,-0.011436181,0.04101923,0.022884542,0.026404303,0.0039186277,0.0229089,-0.001305448,0.03122723,0.021508303,-0.007185673,-0.0064731953,0.054221384,0.019949377,0.020192958,-0.03066699,-0.016673198,0.06513386,-0.020607049,0.010571465,-0.0006382613,0.0067106877,0.014980301,-0.006978628,0.03178747,0.00859845,0.037998814,-0.069761924,0.030520841,0.013579704,0.056803353,0.007538867,-0.03232335,0.013798928,0.06065195,-0.04486783,0.0357335,0.012221734,0.01118042,0.00014044033,0.07219774,-0.038510334,-0.10181733,0.022287766,0.006594986,-0.06177243,-0.022653138,-0.0029610454,0.023456959,0.004984299,-0.04554986,0.012057316,-0.025600482,0.00374812,-0.0392898,0.024236422,0.039728247,-0.015650151,0.035100184,0.0031574334,0.004323583,0.011771107,-0.049861263,-0.038680844,0.0357335,0.0044788667,-0.05578031,-0.014980301,-0.002752478,0.01513863,-0.0050817323,0.055975173,-0.0034162395,0.02071666,0.004262687,0.012629733,-0.010321793,0.027110692,-0.036975767,0.019839766,-0.024857556,0.020363467,0.018512242,0.029668303,0.02849911,-0.015711047,-0.012788062,-0.04006926,0.0071369563,-0.05056765,0.04783953,0.026258154,0.042651232,0.020339109,-0.025892781,0.001928866,0.023286453,0.018731466,0.043942217,0.01444442,-0.035465557,0.03748729,-0.034028426,0.025527408,0.0061869863,-0.011771107,0.041749977,-0.019316062,0.032786157,-0.032956664,0.018780183,0.027061975,0.0028407767,-0.04567165,-0.048253622,-0.010242629,-0.03473481,-0.011844181,-0.0026093735,-0.013689316,0.005331404,0.046816487,-0.062600605,-0.038632125,-0.02672096,-0.026379945,-0.028961916,0.052370157,-0.041408964,-0.0015475077,-0.011131704,0.002536299,0.01022436,0.039582096,0.0011060152,-0.032225918,-0.0021161197,0.0126175545,0.011156062,-0.023627467,0.0003786941,0.027354274,0.011892898,-0.028182453,0.015978988,0.024187706,-0.015041197,-0.026501736,-0.036220662,-0.014225197,0.040020544,-0.027890155,0.004119583,-0.008026032,0.0036750454,-0.021703169,-0.0093900915,-0.025381258,0.0005191344,0.06454927,-0.00093703,-0.0010078211,-0.0026550454,-0.028645258,-0.009457076,-0.021800602,-0.0126175545,-0.0020202093,0.00668024,-0.047011353,-0.012946391,-0.0145053165,0.018487884,0.0036902693,0.018694928,0.00083274645,-0.023164662,-0.053393204,0.025235109,-0.008714151,-0.014018152,-0.0030234633,0.018731466,0.033175886,-0.024906274,0.01623475,0.052565023,0.0012102987,-0.0022957616,0.032055408,-0.023115944,-0.00014205786,0.007283106,-0.027646571,-0.014273913,-0.017830212,-0.009183046,-0.053636786,-0.052175295,-0.022263408,-0.048618995,0.017099466,-0.0068629268,-0.019510929,-0.026526093,0.021581378,0.033906635,0.005550628,0.0086167175,-0.016246928,-0.01582066,0.020132063,0.021958929,-0.04048335,-0.00085253746,0.026379945,-0.008714151,-0.011137793,0.004911225,0.0045854338,-0.014614928,0.00033092918,0.0066071656,0.008403583,-0.010029495,0.001070239,-0.023128124,-0.020119885,0.039192364,-0.034929678,0.017391764,0.013859823,0.041287173,0.0056267474,0.027963229,0.024431288,-0.017209077,0.036196306,-0.01513863,-0.0387052,0.036853977,-0.034588665,-0.019145556,-0.05441625,0.0072587477,-0.024589617,-0.03176311,-0.0103948675,-0.0015619704,0.0091708675,-0.0015315227,-0.042066634,0.036318097,-0.029692663,0.01977887,-0.016953317,-0.038242396,0.00014063063,-0.041530754,-0.018256482,-0.02125254,-0.023566572,-0.030423408,-0.010608002,-0.009384002,-0.019998094,0.028133737,-0.021630093,-0.006448837,0.041189738,0.001724866,-0.009158689,0.0038333738,0.03680526,0.0076423893,0.007922509,-0.0057576727,-0.037998814,-0.02289672,0.009517971,0.0077093747,0.006214389,0.021301258,-0.013543166,-0.006461016,0.0056632846,0.022531347,-0.007995583,-0.012014689,-0.0041104485,-0.011076897,0.008915106,0.005742449,0.014371346,0.0075205984,-0.0017568362,0.012714988,0.026526093,0.021690989,-0.0011638659,-0.017891107,0.006856837,0.030082393,-0.0031665678,0.0196449,-0.049593322,0.009992957,-0.005495822,0.041067947,0.007063882,-0.027378632,-0.056121323,-0.01405469,0.025941497,-0.036391173,-0.017976362,-0.0022866272,0.0013465525,0.027695289,0.0051365383,-0.021605736,-0.014712361,-0.04048335,0.0057850755,-0.04308968,0.0040586875,-0.015686689,-0.021289079,0.007307464,-0.030520841,0.023383886,-0.0059890756,-0.0113083,0.021642273,-0.010419225,0.022653138,-0.018500064,-0.009755464,-0.0060195234,0.02126472,0.021983288,-0.012106032,-0.023919765,0.0020125974,0.022397377,0.039850038,-0.009018629,0.016453974,0.026136363,-0.021008959,-0.03027726,-0.019998094,-0.02058269,0.012556659,-0.012160838,-0.04023977,-0.0142860925,0.010114748,0.0027692243,-0.022531347,-0.00092408975,0.0059160013,-0.008744598,0.008068658,-0.04674341,-0.0046859113,0.0069968966,-0.037682157,0.0011730002,0.0152726,-0.025795348,0.06459798,-0.050421502,0.029132424,0.008147823,0.035952725,-0.008525374,0.007922509,-0.03792574,-0.0069603594,0.0068933745,-0.025186393,-0.00072465686,-0.0015741496,0.004089135,0.023079406,0.030764423,-0.027378632,-0.023481317,-0.00030504857,0.01949875,-0.003790747,0.02193457,0.07200288,-0.004317493,0.000098860095,-0.018195586,-0.007526688,-0.0046524187,-0.022738392,-0.06469542,-0.0013503585,-0.012629733,-0.0026991945,0.0075875833,0.033857916,-0.037389856,-0.005925135,-0.006923822,-0.058313563,0.045087054,0.047669023,-0.020132063,-0.024601795,0.006869016,0.0229089,0.04647547,-0.006625434,-0.04596395,0.0027463885,-0.026282512,-0.013348301,-0.00051989564,0.0012582539,0.00077375385,-0.007733733,-0.009024718,-0.0049568964,-0.018719288,-0.021325616,-0.03751165,-0.049642038,0.00045823888,0.009597136,-0.0009423584,0.04133589,0.02903499,0.0144566,-0.00805039,-0.02888884,-0.019705795,-0.029400364,-0.017014213,-0.025746632,0.020753197,0.0025149856,0.00954233,0.009109972,-0.038437262,-0.0038942695,-0.01948657,-0.019109018,-0.02645302,-0.023237735,-0.0015223883,0.028572185,-0.0066558816,-0.02385887,-0.008013852,-0.014773256,0.037121918,0.0074231657,-0.004171344,-0.0253569,-0.022153795,-0.022117257,0.0047955234,-0.035246335,-0.006735046,0.03997183,-0.015625793,0.013141256,-0.011143883,0.0058398815,-0.004207881,-0.032664362,-0.01376239,-0.029497797,-0.0072891954,-0.015029018,0.030204184,0.012361793,0.04075129,-0.020107705,0.005629792,-0.01936478,0.006381852,-0.022811467,-0.012416599,-0.0044331946,0.039094932,-0.006759404,0.0403372,0.017014213,-0.003967344,-0.019169914,0.008921196,-0.005313135,0.014688003,0.050470218,0.044112723,-0.0029564782,-0.017062929,-0.006576718,-0.013494451,-0.03164132,0.01908466,-0.0045641204,-0.010023405,-0.0080625685,0.0057211355,-0.0113083,-0.024528721,-0.010900301,-0.03763344,0.0073805386,-0.008878569,0.0024632243,-0.03395535,0.020874988,0.0028499109,-0.033419468,0.0030325975,-0.019571824,0.026306871,0.006461016,0.020509616,0.004335762,0.007319643,-0.030374693,-0.0049751652,-0.015248242,0.0039216722,0.012556659,0.066887654,-0.02944908,0.02329863,-0.031470813,0.016368719,-0.023201197,0.00030904484,0.0034527767,-0.02645302,0.0119537935,0.0051395833,0.019596182,-0.00044682098,-0.0055323592,0.016344361,0.020753197,-0.003900359,-0.011746748,0.041749977,0.017379586,0.020655764,0.029424721,0.0019730153,0.027841438,0.006135225,-0.013372659,-0.01554054,-0.007678927,-0.0046311053,0.0003524329,0.052467592,-0.005919046,0.0023262093,-0.026769677,0.038802635,-0.010778509,0.02264096,0.032834873,0.007009076,-0.06011607,0.0014234331,-0.008939465,-0.027695289,-0.046938278,0.024321675,-0.022068541,0.0062052547,0.012958569,0.002799672,0.002872747,0.025137676,0.011302211,-0.04501398,0.010882032,0.017294332,0.018609675,-0.008732419,-0.058557145,-0.018731466,0.028401677,-0.013738032,0.016721914,-0.03790138,-0.0046280604,-0.018366093,0.047108784,0.008817674,0.05266246,-0.0011516868,0.036488604,-0.0133970175,-0.0049934336,-0.0040404187,-0.0041226274,-0.0031208962,-0.008939465,-0.0072343894,-0.01021827,0.004143941,-0.010023405,-0.00025119408,0.0029123288,0.026964542,-0.028547825,-0.005620658,-0.013713674,0.025600482,0.005343583,0.014614928,0.020387825,0.0033218514,0.022263408,-0.04374735,-0.023213377,-0.025527408,-0.017964182,0.012039047,0.012300897,0.058557145,-0.043406337,0.0026093735,-0.032761797,0.009609316,-0.011801555,0.0072161206,0.0256492,-0.013677137,-0.034880962,-0.020935884,0.014700182,0.041920487,0.019791048,0.018938512,0.020400004,0.0012384629,0.023761436,0.006978628,-0.049301025,-0.020777555,-0.027768364,0.0017187764,0.010845494,0.053052187,0.00061009714,0.001399836,-0.004649374,0.0035441201,0.028937558,-0.042212784,0.0060865087,-0.030618275,-0.0024373438,0.0075449566,0.028937558,-0.014688003,-0.010072121,-0.017440481,-0.047547232,0.005511046,-0.011679763,0.02577099,-0.008969912,-0.001580239,0.0035410752,-0.015735406,0.010315703,0.023420421,0.01459057,-0.029814454,-0.024102451,-0.015686689,-0.035928365,0.03229899,-0.017610988,0.020400004,0.005742449,-0.00072237325,-0.03692705,0.058264848,-0.023968482,-0.025746632,0.01022436,-0.019510929,-0.010486211,0.0125079425,-0.0095057925,0.015236063,-0.0026824484,-0.008013852,-0.0009857465,0.00545624,-0.00094159716,0.005163941,0.013031644,0.052954756,-0.041652545,-0.016453974,-0.0008129554,-0.018975047,0.018719288,0.008013852,0.036488604,0.033857916,0.011539703,0.0061961208,0.019389138,0.010236539,0.009962509,-0.003559344,-0.0033827468,-0.019510929,0.0018618809,-0.017562272,0.006448837,-0.0032122394,-0.0066558816,-0.03154389,-0.012075584,0.03354126,0.012897674,0.009292658,0.007021255,-0.0005393061,-0.006521912,-0.009049077,-0.026087647,-0.025015885,0.022981975,-0.01281242,-0.022835825,-0.05792383,-0.028279886,0.031275947,0.008866389,-0.001881672,-0.010674987,0.004661553,0.0045610755,0.021508303,-0.016429614,0.030252902,0.00023882466,-0.02930293,0.006485374,0.018621854,0.081112854,-0.016880242,-0.0024495227,0.024857556,0.01158842,0.014359167,-0.0032000602,-0.00900036,-0.009584957,0.016600123,-0.0061139115,-0.022726214,-0.005072598,0.014213017,-0.011472719,-0.0039886576,-0.018110331,0.044770397,0.025892781,-0.003665911,0.028279886,0.010163465,0.0150655545,0.0065097325,0.0068933745,-0.023737079,0.025381258,-0.0006336942,0.011880718,0.008300061,0.030374693,0.02808502,-0.0070699714,-0.031690035,-0.03887571,0.010443584,0.043235827,-0.00477421,0.01322651,-0.0071065086,0.035148904,-0.01376239,0.025600482,0.011929435,0.017294332,0.025965856,-0.015260421,-0.027037617,-0.027597856,-0.02083845,-0.041896127,0.02810938,0.043235827,-0.017416123,0.015016839,0.027159408,-0.0035502096,0.016149495,-0.0075084195,-0.0002491008,0.00913433,0.05495213,-0.0044758217,0.010815047,-0.00006555785,-0.0035197618,-0.04808311,-0.018317377,-0.008939465,0.0042170156,0.016137317,-0.018049436,0.0067472253,-0.00085482106,-0.010717614,0.015029018,0.008427942,-0.031251587,0.019169914,0.004025195,0.029132424,-0.033322036,0.04606138,0.016112959,-0.005020837,0.013786749,-0.013689316,-0.0025774036,0.0062661506,0.018524421,-0.016527047,0.0054653743,-0.012629733,-0.0177206,-0.0050330157,-0.0035989261,-0.030861856,-0.020911526,0.024309497,-0.011649315,-0.009986867,0.00075091806,0.012714988,-0.00845839,0.02111857,0.03254257,-0.002508896,0.008750688,0.016746271,0.0052796425,0.00374812,-0.004402747,-0.0016578808,-0.008342688,-0.004746807,-0.014225197,0.0079529565,-0.001662448,0.020509616,-0.0012887018,0.041116666,0.05714437,0.018999407,0.025308184,0.010382689,0.012465316,0.016173854,0.0023277318,-0.003218329,-0.007009076,-0.020960243,0.02547869,0.01062627,-0.0075754044,-0.03449123,0.027792722,-0.005535404,-0.026672244,0.00042779112,0.0038546873,-0.040580783,-0.003260956,0.038412903,0.019279527,-0.027086332,0.025697915,-0.004009971,0.029692663,0.016685376,-0.0049568964,-0.034588665,0.03232335,-0.018719288,0.010407046,0.0017720601,0.02713505,0.0050360607,0.019267347,0.0015535973,0.015784122,0.029790094,-0.02210508,-0.010321793,-0.01580848,0.043138396,-0.022604423,-0.009335285,-0.021898033,0.016064242,0.018780183,-0.009968598,0.0032365976,-0.015674511,0.019876301,0.01717254,-0.056754638,0.0049386276,0.035465557,-0.023834512,0.0133970175,-0.03641553,0.0015878511,-0.010827226,-0.03609887,0.015784122,-0.027110692,0.026574811,-0.01583284,0.017525734,-0.008714151,-0.01977887,-0.009347464,0.014834152,-0.029522154,0.030131109,-0.020533973,0.048375413,0.0057850755,0.012532301,0.01759881,-0.024199884,-0.021362154,-0.02329863,0.0025804483,-0.025137676,-0.04223714,-0.0012346569,0.017269973,-0.028474752,-0.00025176498,0.021228183,-0.0058946875,0.0013130599,0.05631619,0.009639763,-0.010266987,0.008013852,-0.021386512,-0.041408964,0.018451346,-0.0075023295,0.02439475,-0.030983647,-0.052711174,-0.012885495,0.008921196,-0.0010534928,-0.010474032,0.034028426,0.029205497,-0.013275227,-0.018219944,-0.005562807,-0.012039047,-0.018049436,-0.018707108,-0.0075571355,-0.016307823,-0.016186032,0.01594245,0.0026002394,0.01513863,-0.03190926,0.02141087,-0.0040860903,-0.003245732,0.004375344,-0.026599169,-0.025819706,0.027768364,0.023615288,0.0065888967,-0.0014523584,-0.013384839,-0.032664362,0.012995107,0.01377457,-0.03081314,0.012081674,0.03668347,0.010266987,-0.007283106,0.011710211,-0.022981975,0.0389975,-0.0073257326,0.016928958,0.021800602,0.015150809,-0.01800072,-0.025137676,0.008622807,-0.047815174,0.018755825,0.023067228,-0.0035562993,0.014322629,0.0018557914,0.010467942,-0.01896287,-0.011582331,0.0021359108,0.015175167,0.0056084786,-0.03858341,-0.010516658,-0.04647547,-0.0034010157,-0.010108658,0.0022181198,0.017647525,-0.001278045,-0.012520121,0.005109135,0.04282174,0.0035837023,0.025308184,-0.026477378,-0.009560599,-0.002924508,-0.021922393,-0.005986031,0.031154156,-0.036074515,-0.02004681,0.0064731953,0.010352241,0.043917857,0.016441794,0.015747584,0.01650269,-0.02686711,-0.020570511,-0.035392486,0.009889435,0.0024084183,0.074731,0.027208125,-0.003915583,-0.014480958,0.060018636,0.044819113,0.009913793,0.012252182,0.03315153,-0.0047955234,-0.00982245,0.014225197,0.009877255,0.017781496,-0.0053496724,-0.0008236121,-0.004159165,-0.02427296,-0.007691106,0.020253854,-0.029668303,-0.052516308,-0.007581494,-0.0039034036,-0.04036156,0.02508896,-0.0037724783,-0.021021139,0.02562484,0.046938278,-0.018512242,0.030472126,0.025868423,-0.0034314634,0.018768003,-0.018780183,-0.011984241,-0.038534693,-0.019157736,0.04250508,0.028986273,-0.006899464,0.044819113,0.014225197,-0.03122723,0.0022287765,-0.019011585,-0.011149972,0.03324896,0.034272008,0.012361793,-0.023810154,-0.023286453,0.007581494,-0.028158095,-0.010005136,-0.018159049,-0.039484665,0.008537554,0.01718472,0.009426628,0.02004681,-0.021971108,-0.04920359,-0.0072526583,0.06299034,-0.01907248,-0.005346628,0.025283825,0.017501377,0.016600123,-0.03302974,-0.016831525]},{"id":"guide-moderation-4","type":"guide","source":"guides","text":"Guide: Moderation (moderation)\nSection: Full moderation example\nSee examples/moderation-bot.js for a complete bot with !ban, !kick, !unban, and !perms commands.\n\n```javascript\nimport { Client, Events, PermissionFlags, parseUserMention } from '/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nasync function getModeratorPerms(message) {\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return null;\n const member = guild.members.get(message.author.id);\n const resolved = member ?? await guild.fetchMember(message.author.id);\n return resolved?.permissions ?? null;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content?.startsWith(PREFIX)) return;\n const [cmd, target, ...rest] = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const perms = await getModeratorPerms(message);\n if (!perms) return;\n\n const guild = message.guild ?? await message.client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n if (cmd === 'ban' && (perms.has(PermissionFlags.BanMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.ban(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Banned <@${userId}>.`);\n }\n }\n if (cmd === 'kick' && (perms.has(PermissionFlags.KickMembers) || perms.has(PermissionFlags.Administrator))) {\n const userId = parseUserMention(target);\n if (userId) {\n await guild.kick(userId, { reason: rest.join(' ') || undefined });\n await message.reply(`Kicked <@${userId}>.`);\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"moderation","url":"/guides/moderation"},"embedding":[-0.018981516,0.016824525,-0.0042156475,0.03907959,-0.014705599,0.017446246,-0.05750283,0.048392717,0.03232948,0.051184114,0.004612153,-0.013297211,0.0062711327,-0.013360652,0.0054083364,0.014908611,-0.032430984,0.021988614,-0.0031609426,0.05379788,0.05032132,0.054609925,0.029284317,0.056284763,-0.050879598,0.0084883915,-0.014172696,0.0037239806,-0.020301087,-0.04047529,0.09734371,-0.011616028,-0.022102809,-0.036821097,-0.014045814,-0.0010959415,0.015771406,0.017065601,0.0016605654,0.0061283903,-0.028370768,-0.08978155,0.015441514,-0.018017214,0.019679366,0.0415411,-0.046514865,0.025553992,-0.0016066406,0.036135934,-0.041236583,0.02328281,0.028675284,0.088258974,0.020618292,0.023803024,-0.053087343,0.022686465,-0.008139467,0.020935496,-0.025795069,-0.01825829,0.016152052,-0.005928552,-0.071358316,0.025528617,-0.027127327,0.00096033653,0.013119577,0.06704434,0.049788415,0.0074098967,-0.0032989266,-0.050143685,0.007505058,-0.02104969,0.06902369,0.02292754,0.0122504365,-0.03463873,0.002689894,0.035425395,-0.0313398,0.0015884014,-0.0078095743,0.015289255,-0.052072287,0.0007252087,-0.006451939,-0.055421967,-0.023650765,-0.015746031,-0.07014026,0.01582216,0.101606935,-0.03651658,-0.016380439,-0.02634066,0.0091037685,0.065826274,0.0858736,-0.022990981,-0.04255615,-0.002916695,0.042353142,-0.006509036,-0.0052655945,0.0035907547,-0.019222591,-0.011152909,-0.062476594,0.024513561,0.00808237,-0.007390864,0.014363019,-0.047961317,0.05735057,0.012567641,0.038800452,-0.019184526,-0.031872705,-0.012117211,0.05065121,-0.023600014,-0.009427317,-0.055827986,-0.01575872,-0.030197866,-0.028726038,0.0125042,0.053747125,-0.020453345,0.045829702,-0.04702239,-0.06404993,0.028167758,0.019857,-0.027051197,-0.032583244,-0.012383663,0.0049420455,-0.041236583,0.0062552723,0.054457664,-0.069988,-0.008970543,-0.04674325,0.026264532,-0.05065121,0.031593565,-0.015987106,-0.02634066,-0.014692911,0.02410754,-0.015314632,-0.004377422,0.010791296,0.021849044,-0.033572923,-0.034613352,0.008520112,-0.04717465,0.0014044228,-0.051615514,-0.019222591,-0.048976373,0.009167209,0.020440657,-0.018677,0.0119268885,0.0023124206,0.0073210793,-0.007650972,-0.03121292,0.036262814,0.008374198,-0.0457282,0.0025455658,-0.001343361,-0.0048024757,0.0008580381,-0.0031530126,-0.031162167,-0.0032196254,-0.062324334,-0.0010372587,0.000995229,0.001275162,-0.03935873,-0.022140872,-0.017129041,0.028548403,0.023130551,0.026949693,0.05169164,-0.042251635,0.05379788,-0.02953808,0.05623401,-0.030502383,-0.011819039,0.035019375,0.040576797,-0.03144131,0.021760227,-0.005319519,0.0027136842,0.027837865,0.0022251895,0.02885292,0.002759679,0.0070482837,0.0672981,0.044966906,-0.044890776,0.00583339,-0.045449056,0.005316347,-0.053188846,0.0063345735,-0.037861526,-0.0101886075,0.033699803,0.018651623,0.00155906,0.05552347,0.016748397,0.013183018,-0.015593772,0.04654024,0.020529473,0.031238297,-0.047682177,-0.064252935,0.036389697,0.0057731215,0.023523884,0.011793663,0.026518295,-0.033217654,0.0068389284,0.006635918,0.020821301,-0.029309694,0.00381597,-0.024412056,-0.004231508,-0.025731627,0.021024313,0.039333355,0.121908024,-0.0025027434,0.035856795,0.0022347055,-0.0049325298,0.008209252,-0.00068397215,-0.01400775,-0.017674634,0.0035590343,-0.034461096,0.019159151,-0.015225815,-0.026391413,-0.020186894,0.005595487,0.0077651655,0.0064265626,-0.012789684,-0.015390761,0.0041426904,0.001347326,-0.007606563,0.0022347055,-0.010886458,0.011730221,0.04585508,0.004691454,-0.037125614,-0.037531633,-0.018486677,-0.012294846,0.031923458,0.012510545,-0.00031383417,0.015631836,-0.020795925,-0.016202806,0.024830766,0.017712697,-0.018524742,0.0002406789,0.018131407,0.016316999,0.045550562,0.051336374,0.027304962,0.0025344638,0.059126914,0.035653785,-0.0029293834,0.027355714,-0.00062528934,-0.07359144,0.04501766,-0.002772367,-0.01202205,-0.0047770995,-0.015555708,-0.065267995,0.033674426,0.0039428514,-0.033395287,-0.011514522,-0.03555228,0.00439011,0.016697643,0.033065394,0.028548403,0.0019508075,0.011267103,-0.0345626,0.012047426,-0.015872912,-0.017585816,-0.040526044,-0.00442183,-0.0024218562,0.034790985,0.025414422,0.05430541,-0.000141949,0.000529335,0.054609925,0.030400878,-0.008507424,0.0046438733,0.06465896,0.0040158085,0.007416241,0.04174411,-0.008735811,-0.042124756,0.0043710778,-0.005106992,0.022826035,0.0075494666,0.021557216,0.020504097,0.03093378,-0.021430334,0.015644524,-0.03811529,-0.037658516,-0.0015305117,-0.018613558,-0.0038476903,0.0069658104,-0.020592915,0.008583553,-0.015238503,0.020998936,-0.0074289287,-0.0010277425,0.03770927,0.00046113602,-0.03364905,-0.039815504,0.050828844,0.014705599,0.01888001,0.0029991684,-0.008621617,-0.0020951356,-0.012421727,-0.016418504,-0.0050752717,0.015352697,-0.012535921,-0.017661946,-0.0071244123,-0.0061283903,-0.014959363,-0.01575872,0.0030784695,0.0020316946,0.012015706,0.0057255407,-0.0031561845,0.027178079,-0.008926134,-0.0011863448,0.03588217,0.03387744,0.020288398,0.023625389,0.039231848,0.046261102,-0.0020443827,0.01532732,0.028193135,0.058619387,0.008450327,0.0011903098,-0.002894491,-0.0043647336,-0.018270979,0.014921298,0.028269263,0.027203456,0.06070025,0.0045772605,0.02368883,0.013144953,0.020618292,-0.042429272,0.047707554,-0.018892698,0.026213778,-0.0034924212,-0.0038381743,0.00425054,0.015060868,-0.035856795,0.032583244,0.012554953,-0.0076446277,-0.03811529,0.0002373086,-0.041870993,-0.05998971,-0.017585816,-0.0045740884,-0.00042941555,0.00791108,-0.024031412,0.023993347,-0.018829258,-0.05552347,-0.0018381999,-0.036592707,-0.013906244,0.0018889527,0.039764754,-0.006857961,-0.01317033,0.0052370457,-0.011628716,0.027279586,-0.008158499,-0.01247248,-0.023371626,0.0054971534,0.01104506,-0.07054628,-0.006635918,0.028675284,0.087142415,0.026442165,0.038597442,-0.002482125,0.029664963,-0.003121292,-0.02181098,-0.014527965,0.008412262,-0.009414629,0.042429272,-0.03882583,0.010099791,-0.005814358,0.032633997,0.008964199,-0.008659682,-0.004666078,-0.075063266,0.029639587,-0.043799594,0.06115702,0.024412056,0.052529063,0.009167209,-0.033750556,0.012186996,-0.0021776087,0.07958026,0.039333355,-0.016329687,-0.045195293,0.027761735,-0.045068413,0.019653989,0.011844415,-0.013576352,0.034511846,-0.048544973,0.010385275,-0.020427968,-0.008240973,0.012428071,0.0026312112,-0.0415411,-0.0691252,0.007796886,0.013271836,-0.02111313,0.01247248,-0.0236127,-0.019476354,0.012808717,-0.055574223,-0.022343883,-0.0073527996,0.0037493568,-0.010328177,0.030273994,-0.05037207,0.011013339,-0.022546895,-0.011159253,0.024970336,0.04773293,0.006448767,0.012815061,-0.0010935625,-0.021620657,0.016240869,-0.049001746,-0.018169472,-0.0037620452,0.020339152,0.012827749,0.033395287,0.0009825409,-0.0107342,-0.020846678,-0.024209045,0.00099285,-0.01560646,-0.041845616,0.012960975,0.019539796,-0.003911131,-0.016431192,-0.009585919,0.008298069,0.029030554,0.06673982,0.0026407272,0.012573985,0.0019619097,-0.022128183,-0.030350124,-0.00093099516,-0.005246562,0.0077461335,-0.015251191,-0.049255513,-0.0015804713,0.021430334,0.012903878,-0.0015844364,0.005541562,0.0038032816,-0.021887109,-0.05128562,0.011577964,0.025693562,-0.017877644,-0.017065601,-0.0038001097,0.014109255,-0.0077715097,-0.0060617775,0.02460238,-0.014096567,-0.030096361,-0.006172799,0.0035653783,-0.004326669,-0.00811409,-0.038445182,0.007752477,0.010150543,0.00080411334,-0.014312266,-0.019425603,0.015390761,-0.065521754,0.0073337676,0.014705599,0.0027818833,-0.020098075,0.026721304,0.0008029238,0.024145605,-0.0014504174,0.004894465,-0.022623023,0.017522376,0.0002507898,-0.04920476,-0.018765816,0.0049008094,-0.015238503,-0.012155276,0.005731885,-0.02118926,-0.012700867,0.016393127,0.0053100027,-0.003390916,-0.0569953,-0.0122504365,-0.020174205,0.006756455,0.030197866,0.005389304,0.022331195,0.008659682,0.0134114055,-0.015720654,-0.005887315,0.009306779,-0.025515929,0.006680326,-0.008482047,-0.015720654,0.036465827,-0.01818216,0.007841295,-0.022623023,0.023942593,-0.0069721546,-0.017319364,-0.01957786,0.03057851,0.0127960285,0.01636775,-0.034816362,0.041870993,-0.026492918,0.027279586,-0.051717017,-0.02829464,0.013652481,-0.0280155,-0.0028151898,-0.029385822,-0.029284317,-0.013436781,0.0012434416,-0.0035526901,0.0016684956,0.02347313,-0.029867973,0.010030005,-0.0148959225,-0.030273994,-0.0048659164,0.0029626898,-0.0036510236,-0.035501525,0.045956586,-0.0094653815,0.006902369,-0.0448654,0.0056335516,-0.030096361,0.003758873,-0.00411097,0.034055073,0.007441617,0.01414732,0.00665495,-0.003245002,-0.025909262,-0.025731627,0.018232914,0.0038698947,0.0030308887,0.03154281,-0.034689482,0.019983882,0.0043615615,0.011470114,0.037455503,0.018385172,-0.002480539,-0.003406776,0.0122885015,-0.0073210793,-0.008139467,-0.035983674,-0.0067183906,0.0069404338,0.009129145,0.03644045,0.006448767,-0.064557455,-0.016697643,0.0015170304,-0.02278797,-0.010233017,0.020453345,-0.026949693,0.027355714,0.004831024,-0.0096810805,-0.060040463,-0.048189703,0.02556668,-0.031136792,0.0184613,-0.033116147,0.0074479613,-0.018803881,-0.031035285,0.02925894,-0.028472275,0.0022172593,0.021988614,-0.008945166,0.01428689,-0.047073144,-0.042074002,0.027761735,0.057198312,-0.030375501,-0.006851617,0.0099729085,-0.0037620452,0.013259147,-0.0102266725,-0.037024107,-0.013297211,-0.02314324,-0.022077432,-0.035932925,-0.036338944,-0.012599362,0.024335928,0.004082422,-0.030603888,-0.0047739274,-0.0134114055,-0.000038956674,-0.0055098417,-0.006807208,0.037607763,-0.02368883,0.009909468,-0.025795069,0.009674736,-0.0066930144,-0.020098075,0.00078309857,0.003888927,-0.0040253247,0.060446486,-0.028243886,0.041921742,0.01532732,0.021417646,-0.01442646,0.013906244,-0.022775281,-0.010873769,-0.00036220785,0.009915812,0.01476904,0.013995062,0.00452968,0.027634853,0.033268407,-0.0019365334,-0.023904528,-0.008393231,0.00067009445,-0.020859366,0.0029547596,0.0355269,0.00766366,-0.005931724,-0.0064043584,-0.017014848,-0.04118583,-0.01762388,-0.05197078,-0.015416138,-0.035425395,-0.028675284,0.008069682,0.020732485,-0.053138092,0.014730976,0.010461404,-0.068516165,-0.00850108,0.040297657,-0.015060868,-0.034689482,0.019857,0.031086039,0.045449056,0.018994205,-0.04577895,0.023523884,-0.023092486,0.01874044,0.004862745,0.05011831,-0.012726244,-0.0035812384,-0.025896573,0.0355269,-0.028421521,-0.014692911,-0.03588217,-0.04841809,0.016621515,0.005389304,0.02738109,0.016659578,-0.0031498405,0.00093892525,0.0131576415,-0.012003018,-0.025122594,0.0040507014,-0.014033126,-0.007270327,0.028243886,0.012383663,-0.00023750686,0.00439011,-0.057198312,0.0035558622,-0.010252048,-0.027634853,-0.039130345,0.013969685,-0.003317959,0.021823669,0.011241727,-0.004951562,-0.008799252,0.0033591953,0.030223243,0.02181098,-0.0054305405,0.026492918,0.018194849,-0.038775075,0.05065121,-0.007517746,0.015022804,-0.0035622062,-0.02354926,0.017966462,-0.0049864543,0.010556565,-0.00021946584,-0.018372484,-0.020427968,-0.012003018,-0.0069594663,-0.0028770445,0.038089912,0.03991701,0.044510134,-0.026188402,-0.0051165083,0.011983985,-0.0012719899,-0.00028786308,-0.034587976,0.0025059155,0.01825829,0.03895271,0.039460238,0.051361747,-0.026848188,-0.0108039845,0.020148829,-0.006800864,0.010277425,0.0943493,-0.01020764,0.020123452,-0.026442165,0.008919789,-0.0062140357,-0.05037207,0.043292068,0.036338944,-0.008970543,0.013284523,0.015695278,-0.02773636,-0.0100807585,0.010664415,0.024818078,-0.019793559,-0.004279088,0.0033369912,-0.020440657,0.029005177,-0.010175919,-0.02278797,0.01351291,-0.03352217,0.02278797,0.03748088,-0.024221733,0.018664312,0.0184613,0.013233771,-0.013715922,-0.038851205,-0.026010767,-0.027964747,-0.01790302,-0.03443572,0.009275059,-0.017890332,0.022559583,-0.02257227,-0.012770652,0.015441514,-0.02069442,-0.0046533896,-0.014324954,0.03907959,0.0010808742,-0.0131576415,0.03600905,0.0023790335,0.009877748,0.024551626,0.04689551,-0.0016185358,0.008196563,-0.0044313464,0.0032513458,-0.0125422655,-0.014654847,0.0025677702,-0.0017826891,-0.0040475293,0.014578718,-0.0010681861,0.028421521,0.012732588,0.00040245318,-0.041008193,0.025325606,-0.011990329,0.040881313,0.0017049741,-0.03024862,-0.033826686,0.004716831,-0.0131957065,-0.020263022,-0.028370768,0.022851411,-0.002055485,-0.047504544,0.0050435513,-0.005614519,0.016405815,0.035222385,0.032151844,-0.022978293,-0.012345598,0.011742909,0.020669043,0.002965862,-0.011964953,-0.016316999,0.011749254,-0.012561297,0.009141833,-0.010632694,-0.0125422655,0.004393282,0.020516785,0.025579369,0.055218954,0.056183256,-0.011273447,-0.023714207,-0.008615274,-0.0016169498,-0.029005177,0.008881725,-0.041008193,0.009141833,-0.02452625,-0.009497102,-0.012377319,0.007930112,-0.020301087,0.016329687,-0.0071815094,0.011901512,-0.0060490896,0.011374952,0.0020047324,-0.02466582,0.017991837,-0.030400878,0.01031549,-0.022597646,-0.006680326,0.03260862,-0.0184613,-0.0022077432,0.002988066,0.021861732,-0.02091012,-0.0039491956,-0.04501766,-0.011761942,-0.0017953773,0.013132266,-0.0038825828,-0.013487535,-0.0023140067,-0.0019983882,0.054254655,0.0027945715,0.0057636052,0.005687476,0.014972052,0.0006447181,0.0035780666,0.031466685,-0.0125042,-0.016659578,-0.0103345215,0.015720654,-0.0016462912,0.057807345,-0.0061823153,-0.0038572066,-0.009858715,-0.009915812,0.019146463,-0.030730769,0.023029044,-0.0053512393,0.015961729,0.03727787,0.032786254,-0.0001532494,-0.01945098,-0.014185384,-0.019336784,-0.029233564,-0.008285381,0.003121292,-0.00637581,-0.0074796816,0.027685607,-0.01292291,-0.017750762,0.01006807,0.0172813,0.026949693,-0.016672267,-0.017382806,-0.006591509,0.011254415,-0.0113242,0.019171838,-0.0074225846,-0.0045011314,-0.034790985,0.028243886,-0.015555708,0.0051133363,0.03555228,-0.031669695,-0.032862384,0.009884091,0.034055073,0.009896779,0.01166678,-0.0052814544,0.012815061,-0.0006522517,-0.0035717224,-0.0018699204,-0.0093575325,0.019438291,-0.031390555,-0.007638284,0.012244093,-0.035019375,-0.0096810805,0.02996948,0.0308069,-0.0061347345,0.020377215,-0.005319519,-0.020986248,0.015010116,0.024906896,-0.009700113,0.0033052706,-0.010620005,-0.011844415,-0.027355714,0.0037271527,0.0004171239,0.003406776,-0.015378073,-0.004748551,0.025274852,-0.012992695,-0.004444035,0.012218717,0.004082422,-0.0010087102,-0.017255923,0.024589691,-0.0172813,-0.0068198964,-0.030070985,-0.025972703,-0.016481945,-0.020174205,0.018968828,0.04209938,0.021100441,-0.0113242,0.005525702,-0.008336133,0.017293988,0.018296354,-0.013855492,0.0036510236,-0.028396145,-0.006318713,-0.014172696,0.073337674,0.0055764546,-0.009395597,0.043139808,0.051082607,0.008456672,0.042277012,-0.013208395,-0.0074098967,0.0104423715,-0.04263228,0.008551832,0.028320016,0.019857,0.0141346315,-0.0126881795,-0.029360447,0.030223243,0.0313398,-0.023384314,0.024069475,-0.0021696787,0.0052624224,-0.0040697334,-0.00609667,-0.004831024,-0.01575872,-0.014692911,0.04773293,0.0050403792,0.0052909707,0.0042854324,-0.0004448793,-0.005979304,-0.03895271,0.01763657,0.011057748,0.0044852714,0.030273994,-0.016481945,-0.0031514266,-0.01895614,-0.001205377,-0.014959363,0.013398717,0.01931141,-0.02989335,-0.035932925,-0.039612494,-0.01978087,-0.02124001,0.054711428,0.026442165,-0.006248928,0.018994205,0.016634203,0.010049038,0.018385172,-0.024564315,0.016545385,-0.024729261,0.04912863,-0.008260004,-0.010924522,0.014185384,0.013753986,-0.03720174,-0.021899797,0.003121292,0.027990123,-0.003053093,0.01776345,0.009693769,0.013804738,0.0047993036,0.011698501,0.00811409,-0.027076574,0.023435067,-0.0035844105,0.004256884,-0.0048024757,0.03154281,0.017116353,-0.011780974,0.007733445,0.009002263,-0.03144131,0.0044313464,0.025769692,0.025338294,0.025389045,-0.003679572,0.027228832,0.0077588214,0.017040225,-0.0057477453,-0.012307534,-0.009053016,-0.021519152,-0.003980916,0.011945921,0.0069404338,-0.030426253,-0.011159253,0.01264377,-0.025630122,0.018892698,0.00031998003,0.01644388,0.0111655975,-0.049103253,0.0076826923,0.0010063312,-0.02592195,-0.017928397,-0.01950173,0.028066251,0.03400432,-0.038318302,0.04222626,0.05176777,-0.0035748945,0.018067967,-0.0037049484,0.0016256729,0.015771406,-0.03448647,0.013119577,0.009497102,-0.023346249,-0.00721323,0.006226724,-0.00049285643,-0.027584102,-0.0006237033,0.009801619,-0.035679158,0.0061315624,-0.0005622449,-0.015796782,0.004618497,0.023726895,-0.024500873,-0.010055382,-0.04577895,-0.00013540666,-0.0052655945,0.008336133,0.010924522,-0.013652481,0.00961764,0.016316999,0.004593121,-0.006953122,0.00919893,-0.019793559,0.009674736,-0.007892047,-0.009040328,0.0100807585,-0.01937485,-0.011222694,-0.0017795172,0.04291142,-0.038013786,0.01951442,-0.0029277974,0.0042441958,0.012269469,-0.00937022,-0.012231405,-0.008761188,-0.026213778,0.026873562,-0.036059804,0.0006792141,0.025960015,-0.029233564,-0.034664106,-0.059126914,-0.015999794,-0.016900655,-0.0014797589,0.032151844,-0.030299371,0.017814204,-0.020922808,0.009306779,0.03415658,-0.0212527,-0.032862384,0.034867115,-0.041566476,0.022902163,-0.02333356,0.029944103,-0.015149686,0.018499365,-0.0057477453,-0.010283769,-0.04047529,0.017522376,0.020897431,-0.0066930144,-0.015187751,-0.0064075305,-0.0049991426,-0.013386029,0.0021585764,0.010182263,-0.007219574,0.034105826,0.014020438,0.010524845,-0.018943451,0.006030057,0.00091672095,-0.017332053,0.009179898,-0.0226484,0.017052913,-0.033623673,-0.035044752,0.0024979853,0.006467799,-0.026518295,-0.0029436576,0.027913993,-0.018524742,0.019209903,0.008532801,-0.037227117,0.014921298,0.010391619,-0.023130551,-0.004539196,-0.00055510784,-0.029944103,0.028599156,-0.022128183,0.016253557,-0.03534927,0.014274201,-0.014274201,0.021633346,0.0066930144,0.0024599207,-0.025960015,-0.0071117245,0.018638935,-0.00094130426,0.021214636,-0.011393985,0.004114142,-0.012345598,-0.00808237,-0.023841089,-0.0036986042,0.017040225,-0.0038350022,-0.020872055,0.02340969,-0.028142381,0.029994855,0.013753986,0.033395287,0.023942593,-0.0022759421,-0.005443229,-0.035577655,0.026442165,-0.033978943,0.017573128,0.0048976373,-0.03956174,0.012174307,0.00010338883,-0.022724528,-0.028472275,-0.0184613,0.006464627,0.0059412397,0.0019317752,-0.014718288,0.012339254,-0.030045608,0.00749237,-0.03024862,-0.004475755,0.013221082,0.0074035525,0.005443229,-0.01031549,0.0240441,0.030299371,0.008431295,-0.032481737,-0.0033655395,0.0027898133,-0.022737216,-0.019412914,0.009179898,-0.013335276,-0.00947807,0.024551626,0.030299371,0.022889474,0.0069214017,0.023803024,-0.006026885,-0.012377319,-0.0017430387,-0.039409485,0.0004028497,-0.008279037,0.037049484,-0.011108501,0.00030570582,-0.01608861,0.029005177,0.029081307,0.012573985,-0.0030055125,0.06070025,0.022584958,-0.023929905,-0.0063345735,0.007784198,0.0016669095,-0.007930112,0.020466033,0.013703234,-0.010030005,0.010258392,0.010213984,0.0033211308,0.0028564264,0.014451836,-0.018232914,-0.044053357,-0.01006807,0.024209045,-0.04813895,0.01957786,0.023232056,-0.03288776,0.001416318,0.01945098,0.015340009,0.03093378,0.0100807585,0.009452693,-0.019362161,-0.021087755,0.01735743,0.045347553,-0.020237645,0.019565172,-0.014972052,-0.011108501,-0.009141833,-0.008399574,-0.0006157732,0.008056994,0.034790985,0.00022977499,0.004599465,0.0046565617,0.025553992,-0.04159185,-0.013639793,0.011197318,-0.051666263,0.010721511,-0.0046248413,-0.0117111895,0.011362264,-0.0003998759,-0.049788415,-0.00048770188,0.0013520841,-0.01853743,-0.00864065,-0.00016692886,-0.0052687665,-0.008215596,-0.029461952,-0.01244076]},{"id":"guide-roles-0","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Overview\nGuild roles can be created, fetched, edited, and deleted. Use guild.createRole(), guild.fetchRoles(), guild.fetchRole(roleId), role.edit(), and role.delete(). Requires Manage Roles permission. For permission bitfields, use resolvePermissionsToBitfield() or role.has() to check a role's permissions.","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.017327465,0.045316245,0.009903026,-0.010978211,-0.028679162,-0.01670499,-0.013660517,0.015573215,0.01108573,0.036827937,0.06224759,-0.046266936,0.030784262,-0.020394573,0.028769704,0.000045978333,-0.06532601,0.010797127,0.025623372,0.09380146,0.048530485,0.033613697,0.010808445,0.03411168,-0.058354285,0.03114643,0.036465768,0.056407634,-0.016037242,-0.041445576,0.040562794,-0.014565935,-0.0006741131,-0.011668594,-0.012596648,-0.04054016,0.0248764,0.007265991,0.005511741,0.011017824,-0.0144867115,0.02021349,0.014656478,-0.022329908,-0.024468962,0.032323476,0.019149622,0.022782618,0.011176271,0.0123023875,-0.009970932,0.01143658,0.00017542503,0.047670335,-0.00075758144,0.011894949,-0.057765763,-0.016535223,-0.044705085,0.039385747,-0.011419603,-0.060798917,0.018119708,0.015278954,0.008460013,0.03556035,-0.09959614,0.008748616,-0.0004654422,0.046946,0.026755145,-0.05305758,0.02392571,-0.0054749586,0.005330657,-0.032255568,0.05292177,0.03915939,0.013287031,-0.030376824,-0.01835738,0.036941115,-0.052287973,-0.009455974,0.006434137,0.028973423,-0.00922962,-0.038774587,-0.0014614037,-0.04889265,-0.045361515,-0.050522406,-0.05935025,0.0031180384,-0.0010921622,-0.054279897,-0.015833523,0.016818168,-0.01128379,0.049345363,0.058490098,0.004849653,-0.035515077,-0.017599091,0.028271724,0.020179536,-0.05953133,0.053600833,-0.0013298348,0.012460835,-0.10158806,0.010287829,0.014690431,0.01845924,0.0014741361,0.026053445,0.04042698,-0.038299244,0.033545792,-0.03144069,-0.09271496,-0.015109188,0.0064228196,-0.07949583,-0.04153612,-0.021594254,-0.029426133,-0.058535367,-0.02126604,0.0023512612,-0.032255568,0.0055032526,0.037416458,-0.032572467,-0.03605833,0.005520229,-0.032210298,-0.023450365,-0.018142343,-0.038299244,-0.0015618486,0.001168557,-0.016410727,0.06184015,-0.04475036,0.017316148,-0.033138353,-0.0042498126,-0.042215183,0.03565089,-0.050431866,-0.0066208798,-0.011147977,-0.047489252,-0.04124186,-0.035198182,-0.015867475,-0.015641121,-0.050296053,-0.016761579,-0.005070349,-0.02462741,-0.0019211869,-0.025306474,-0.0030925735,-0.08750879,0.009755895,0.0073056035,-0.037688084,0.045950036,-0.003881986,0.0071358373,-0.028226452,-0.001875916,-0.013083312,0.0178594,-0.014350899,-0.022182778,0.022194095,0.00018249861,0.009614423,-0.022454403,-0.03893304,0.007713042,-0.014633842,0.02863389,-0.045655776,-0.03535663,-0.03762018,0.014724384,0.0055485237,0.04653856,-0.0048581413,0.025102755,0.026392978,0.011827042,0.008058233,0.026800416,-0.005435346,-0.037076928,0.018538464,-0.007005683,0.06337936,-0.005291045,-0.032006577,-0.04058543,-0.0042158593,-0.006179488,-0.026868323,-0.0073848274,0.026664604,-0.059123892,-0.033432614,-0.0033641993,-0.053646103,0.035447173,-0.06405843,0.0006705763,-0.009037218,0.0061511938,-0.03576407,-0.013468115,-0.0055768183,-0.024650045,0.017248241,0.02216014,-0.024785858,-0.003135015,0.024695316,-0.00501376,0.0054438347,0.012800368,-0.0100048855,-0.06591454,0.011215883,0.011051777,-0.02483113,0.044501368,0.0030784262,-0.0315086,-0.033228897,-0.01710111,-0.0023753115,-0.007945056,0.020100312,-0.011657276,0.04153612,0.012528742,0.044908807,0.02929032,0.035130277,0.021809291,0.020824648,-0.0004944439,-0.005005272,-0.02512539,0.020179536,0.03365897,0.025170662,0.02512539,-0.02578182,-0.0124947885,0.011645958,-0.004688375,-0.042509444,0.034881286,-0.0022253513,-0.00064051355,-0.029833572,-0.034745473,-0.032232933,0.012483471,0.04149085,-0.06786119,-0.035085004,0.007277309,0.05577384,-0.00092734763,0.0019183576,-0.03164441,0.010412324,0.008924041,0.01484888,0.020304032,-0.0029680782,0.03485865,-0.011029141,-0.018979855,0.016784213,0.031599138,0.004368649,-0.005477788,0.0079563735,0.01303804,0.028271724,-0.016207008,0.023359822,-0.026574062,0.027547387,0.035401903,-0.021288676,0.040789146,-0.01474702,0.01083108,0.025691278,-0.024446325,-0.012008126,-0.0630172,-0.004829847,-0.05722251,0.022692075,0.035379265,0.009835119,-0.022443086,-0.01930807,-0.00233287,0.020190854,0.0066095623,0.013898189,0.03180286,0.04298479,-0.017995212,-0.014203768,0.0015264807,0.00646809,-0.051246744,-0.036148872,-0.002453121,0.021107592,-0.008188387,0.05731305,-0.009410704,-0.024016252,0.055140045,-0.00023254426,0.017870717,0.0015929724,0.072252475,0.048032504,-0.027954826,0.0038508622,-0.019274117,-0.01794994,-0.022499673,-0.041287128,-0.008935358,-0.016806848,0.03264037,-0.005992745,0.03861614,0.00006308758,0.036465768,-0.02623453,-0.027502116,-0.03114643,-0.022454403,0.029380862,-0.015222365,0.019149622,0.056860343,-0.05441571,-0.030286282,-0.011442238,0.020394573,0.035786703,0.018323427,-0.014690431,-0.00060832873,-0.03725801,-0.018821407,-0.004445044,0.033093084,-0.070351094,-0.0010313294,-0.0080525745,0.003952722,-0.0018179126,-0.007667771,-0.015426084,0.0025804455,-0.004088535,-0.004323378,0.028068004,-0.03798235,0.017610408,-0.0038282268,-0.030557908,0.014407488,-0.021311311,-0.017293513,0.00009337138,0.039000943,0.046719644,0.017112428,-0.011894949,-0.015471355,0.027705835,0.052197434,0.022918431,-0.039544195,0.026347706,0.018583735,-0.0030869145,0.008505284,-0.024785858,-0.006043675,-0.038299244,0.0283849,-0.0014394755,-0.027049407,0.023314552,0.03958947,0.028068004,0.006400184,0.051427826,-0.043097965,0.031236973,-0.032006577,0.01359261,0.0035028416,-0.031485964,-0.019149622,-0.015776934,-0.013818964,0.050975118,-0.035379265,-0.011668594,0.0028902688,-0.0037744674,-0.041966192,-0.05867118,0.06310774,0.015335542,-0.0060323575,-0.024401056,0.013128582,0.014531982,-0.06727267,0.007045295,0.010910304,0.006434137,-0.01183836,-0.014464076,0.013479432,0.02578182,0.0014783803,0.0049119005,-0.07297681,0.03972528,-0.027343668,-0.009269232,0.00436299,0.021481076,0.028226452,-0.00070983474,-0.021356583,-0.014826244,0.019704191,-0.050024427,0.0010164748,-0.016331503,0.012313705,0.04076651,0.07062272,-0.041649297,0.008312883,-0.029878844,0.00029090137,-0.044275012,-0.04124186,0.006745375,0.024717951,0.004940195,-0.029878844,0.011272472,0.009806825,-0.030082563,-0.035786703,-0.0023342846,0.043165874,0.006490726,0.0015491161,-0.02252231,-0.017700952,0.038887765,0.06564291,0.037348554,0.014101909,-0.011612005,-0.0113460375,-0.029720394,0.011815724,0.045203067,-0.009320161,0.0025875191,-0.025419652,0.011600687,-0.055547483,-0.016603129,0.014464076,0.022850525,-0.005276898,-0.028882882,0.009150395,-0.013637881,0.017723586,0.0025351746,-0.0070226598,0.013185171,0.04970753,-0.04504462,0.0028930982,-0.009184348,-0.029584581,0.010536819,-0.0131399,-0.031078523,0.031870764,0.010542478,-0.03216503,-0.017293513,0.037416458,0.05292177,-0.006790646,0.0019155281,0.030625815,0.013366255,0.050114967,0.003069938,-0.006213441,0.015278954,-0.038955674,0.015493991,0.017927306,-0.022533627,-0.008369471,0.041558754,0.040970232,0.02161689,-0.047625065,-0.0016424875,0.012924863,-0.004849653,-0.0061228992,-0.035175547,-0.012143939,-0.031191701,0.004286595,0.020688836,0.023359822,0.047443982,-0.048983194,-0.0079563735,0.00090188265,-0.024491597,0.0066095623,-0.037144832,-0.016727624,-0.0005269824,-0.00877691,0.010389688,-0.024559503,-0.0024800005,-0.024038887,-0.056815073,-0.025646007,0.018097071,0.010678291,0.0004919682,-0.042509444,0.0074300985,0.022352543,0.042554714,0.011872313,0.022737347,0.01268719,-0.025193296,0.012743779,0.017033204,0.007407463,-0.011815724,-0.067680106,0.012030762,-0.01800653,-0.036465768,-0.021005731,-0.026958864,0.012098668,-0.020960461,0.03671476,0.019375976,0.013536021,0.01655786,-0.011272472,-0.019624967,-0.022284636,-0.00066810055,0.04794196,-0.03886513,-0.00962574,0.005528718,0.020032406,-0.08560741,0.019670239,-0.024219971,-0.027841648,0.044365555,-0.0058060023,0.023450365,-0.008001644,0.033636335,-0.028271724,-0.010519843,-0.022646805,-0.0040064813,-0.0241747,0.0018745012,0.017587774,0.014441441,0.017666997,0.0057550725,-0.0075715706,0.0062870067,-0.0047675995,0.0022097894,0.010746198,-0.019998454,0.001479795,-0.03565089,-0.033387344,0.007277309,-0.040245894,0.015516627,-0.009438998,-0.015188412,-0.047715608,0.01058209,0.010185969,0.011815724,0.0052740686,0.024197336,-0.01736142,-0.007984668,-0.04318851,0.020292714,-0.008103504,0.014962057,0.009144736,-0.013479432,-0.0129927695,-0.024401056,-0.0035000122,-0.00501376,-0.04699127,0.023473,-0.015516627,-0.0074753696,0.032119755,0.018221566,0.022975018,-0.05437044,-0.0005128352,0.006213441,-0.0041366355,0.03556035,-0.0033104399,-0.02412943,0.0035283065,-0.0041253176,0.02743421,-0.028996058,0.042803705,-0.0105990665,0.006004063,0.008663733,0.0012725388,-0.0012223163,-0.03857087,0.005412711,0.049526446,0.00065466075,-0.022001693,-0.020688836,0.010966893,0.013717105,-0.016410727,0.026415613,-0.026189258,0.03791444,-0.04533888,-0.00087641773,0.0047477935,0.014916786,-0.028000098,-0.0033359048,0.024899036,0.0007738507,-0.015211048,0.009659694,-0.034745473,-0.006926459,0.03605833,0.026777782,-0.030037291,0.009699306,-0.037597544,-0.012019443,0.06595981,0.014814926,-0.022612851,-0.03295727,0.01474702,-0.030059926,-0.017666997,-0.00022122651,0.01635414,-0.019523107,-0.020586975,0.05767522,0.0098520955,-0.008844816,0.060255665,0.011323403,-0.0012824418,-0.033319436,0.017768858,-0.0052995333,0.007945056,-0.019987134,-0.0343154,-0.0105990665,-0.0014111812,0.030557908,0.010265193,0.005370269,0.007633818,0.008607144,0.033274166,-0.0041564414,0.00877691,0.004246983,0.016161738,-0.011357356,-0.024038887,-0.047217626,-0.03977055,0.0020230466,0.0417172,-0.00882784,0.018889314,-0.003791444,0.006485067,-0.005641895,-0.041920923,0.006173829,-0.059621874,-0.031169066,0.0031717976,-0.027139949,0.039634738,0.035582986,0.022329908,0.014305628,0.023314552,-0.045836862,-0.010729221,-0.005675848,0.0276832,0.013603928,-0.011159295,0.010576432,0.0024545356,0.0088561345,-0.013275713,0.012313705,-0.023450365,0.024084158,-0.0107518565,-0.0024743418,-0.03230084,-0.015018646,-0.0075659114,-0.004569539,-0.026460884,-0.007582888,0.011453556,0.010740538,-0.014724384,0.010780151,-0.021322628,-0.033523157,0.023008972,-0.021084957,0.020903872,-0.04567841,-0.0088561345,-0.024084158,-0.06500912,0.014837562,0.019998454,-0.030467365,-0.009059854,-0.008601485,0.031916037,0.03214239,0.027117314,-0.022544945,0.017927306,-0.054234628,0.015788252,0.012517424,0.03173495,0.012291069,-0.000104247025,-0.010542478,0.014882833,0.0028449977,0.024265243,-0.030037291,-0.009156055,-0.048983194,0.02116418,-0.004643104,0.015414767,-0.017531184,0.053148124,-0.018583735,-0.0140453195,0.036760032,-0.010389688,-0.007633818,-0.021673478,0.021979058,0.018334744,0.024740588,0.055275857,-0.006185147,0.007911103,0.031123795,0.009784189,-0.0155392615,-0.00737351,-0.004368649,0.03110116,0.012268434,-0.001121164,0.033274166,0.021503713,0.017531184,0.027547387,0.0072546736,0.0073904865,-0.018515829,0.007186767,0.024763223,-0.036329955,-0.029380862,0.033183623,0.01003318,-0.017836764,0.007226379,0.0155392615,-0.032187663,-0.0016339992,-0.004648763,-0.029720394,-0.0021249063,-0.0030755969,0.022952383,-0.02587236,0.031418055,0.013173853,-0.010565113,-0.01123286,0.000056588717,-0.031780224,-0.0017740562,-0.03510764,0.0056956545,0.021243405,0.018051801,0.021152863,-0.017191652,-0.018549781,-0.005953133,-0.008731639,-0.025532829,0.031191701,0.008488308,0.009654035,-0.013660517,0.0015052599,0.002317308,-0.015822206,-0.036986385,0.018278155,-0.006575609,-0.038955674,-0.0007462637,-0.026506156,-0.024468962,-0.0076960656,-0.01679553,0.023903074,-0.026958864,-0.015561897,-0.02027008,-0.010780151,0.030127833,-0.016580494,-0.028407536,-0.02433315,-0.01118759,0.025238568,0.035582986,0.02221673,-0.013717105,0.0042271772,0.0062077823,-0.024468962,0.014690431,0.021492396,0.0012647578,0.0020287056,0.0031576504,0.0011423847,0.037054293,-0.006530338,-0.004232836,0.028996058,0.031169066,-0.0007731434,-0.032821454,0.012472154,0.046153758,-0.0241747,0.023473,-0.0012520254,0.019692874,0.0061172405,0.0350171,-0.0008721736,0.026664604,0.030422095,0.016693672,-0.003791444,0.015426084,-0.0038904743,-0.015573215,0.023563541,-0.024219971,-0.016274914,0.030490002,0.0023356993,0.040313803,0.021594254,-0.006784987,-0.030806897,0.05346502,0.0020598294,-0.002226766,-0.03245929,0.004043264,0.015516627,0.0078997845,-0.008041257,-0.04108341,-0.029063964,-0.00441392,0.013422844,0.06369626,0.0062077823,0.027004136,0.010774491,0.0032962929,-0.023054244,0.043505404,-0.02738894,0.01394346,-0.025894998,-0.0017698121,0.047443982,-0.015143141,0.0034207879,-0.07161868,0.011702547,-0.010678291,-0.0050279074,0.05020551,0.041400306,0.0052627507,0.013547339,-0.038389787,0.048937924,-0.04538415,0.00094432425,-0.020949144,-0.018629005,-0.015075235,-0.027253127,0.037054293,-0.0061172405,-0.023042927,-0.0034773767,0.012200528,-0.008997606,0.006966071,0.025012214,0.013264395,0.017327465,0.006666151,0.04529361,-0.004085705,-0.040245894,-0.03576407,0.025623372,-0.017814128,-0.011125342,-0.019183574,-0.023812532,-0.023631448,0.0041309763,-0.016772896,-0.022273319,0.01619569,-0.030490002,0.011521463,0.03300254,0.024785858,-0.007215061,-0.023540907,0.03234611,-0.0071980846,0.044569273,0.01555058,-0.015471355,0.016037242,-0.008963653,0.04884738,-0.0045808568,-0.019138305,-0.0060832873,0.008273271,0.021379218,0.04106077,0.017531184,-0.021582937,-0.00066916156,-0.0017217117,-0.016229644,-0.01925148,0.009857754,0.021707432,0.009472951,-0.02392571,0.021084957,-0.0049430244,0.0032991222,0.031259608,-0.02196774,-0.009110783,-0.003952722,-0.0144867115,0.009393727,0.00922962,0.010010544,-0.013287031,0.0124382,0.008833499,-0.007809243,-0.00561643,-0.018198932,-0.011940219,-0.024989577,0.014203768,0.008590167,-0.0052203094,-0.014939422,0.021831928,-0.03395323,0.03845769,-0.033500522,-0.0037178788,0.008522261,-0.004993954,0.02623453,0.016274914,0.0038452034,0.03411168,-0.0068528936,-0.038684048,0.024740588,-0.025532829,-0.014260356,-0.0028506566,0.023744626,0.010825422,-0.008448696,-0.014679113,-0.021854563,0.013287031,-0.0005188478,-0.02738894,0.026008174,-0.009195667,-0.0026342047,-0.00017073877,0.038140796,0.021526348,0.010451936,-0.008194046,0.016716307,0.002327211,-0.028747069,-0.0016127784,-0.014882833,-0.016139101,-0.021005731,-0.0042300066,0.016535223,0.009472951,-0.03311572,0.010966893,0.002126321,-0.0049684895,-0.00476477,-0.029856207,0.02999202,-0.008335518,-0.023382459,-0.034519117,0.010689609,-0.035288725,-0.004147953,0.047127083,0.026687238,-0.004790235,-0.017429326,-0.00030752431,0.010044497,0.028226452,0.013807647,0.005930498,0.015437402,-0.050522406,-0.005152403,0.026257165,0.062066507,0.023156103,-0.026483519,-0.011091389,0.038095523,0.0049119005,0.03234611,-0.032323476,0.004085705,0.020519068,-0.012721144,-0.004422408,0.007005683,0.011645958,-0.005941815,0.0046204687,-0.020688836,0.015709028,0.02528384,0.0037348554,-0.0020188026,0.0035792363,0.0017683974,0.007090566,0.0070000244,-0.03655631,0.019545743,-0.04653856,0.020813331,0.00446485,0.00008377783,-0.0007062979,0.009388068,-0.008307224,-0.038389787,0.013547339,0.034383304,0.007995985,0.013185171,-0.0008360983,0.0023540906,0.00026808906,0.023076879,0.0062191,-0.0032962929,0.0059022033,-0.0027063554,-0.025057483,-0.022352543,-0.038684048,-0.058852267,0.054144084,0.031282242,0.0045808568,-0.008539237,-0.0018320597,-0.0025620542,0.007101884,-0.015516627,0.010672632,-0.010072792,0.020236125,-0.033138353,0.017259559,0.0042696185,0.0009973762,0.006004063,0.016218327,0.024672681,0.030105198,-0.005050543,0.0024686828,0.011091389,0.018436603,0.03135015,0.013219125,0.034632295,-0.018844042,-0.013060676,0.013966096,0.012404247,-0.02322401,0.042305727,0.026845688,-0.032527193,0.062428672,0.02492167,-0.050024427,0.014203768,0.011906266,-0.0054183695,-0.002496977,0.0002679122,0.022488356,0.009744577,0.013445479,-0.0044563613,-0.022839205,0.011317743,0.0109442575,0.0032510217,-0.0045157797,0.024061523,0.010689609,0.008375131,0.017135063,0.0025960074,0.026121352,0.043663856,0.022307273,0.026890958,-0.0071358373,-0.028928151,-0.006603903,-0.024355784,-0.03626205,0.018798772,0.007820561,0.0033783463,-0.02025876,0.047670335,0.024310512,0.00025305766,0.038435057,-0.0014012781,0.00541554,-0.021673478,-0.028792338,0.036420498,-0.0007512152,-0.0036471428,0.04282634,-0.008731639,-0.0054296874,-0.039204665,-0.0035000122,0.017689632,-0.003706561,0.01615042,0.0071132015,-0.044365555,0.010378371,0.019692874,-0.025261203,0.0060606515,-0.018572416,0.0012958816,0.010423642,0.002321552,-0.0024460473,-0.018776136,-0.009184348,0.0012972964,-0.035582986,-0.0015774105,-0.016772896,0.021526348,-0.0033189282,-0.0069377767,-0.036171507,0.011657276,-0.0006734057,0.002000411,-0.0042950837,0.0019424077,0.015460038,0.03015047,0.0013545924,0.03685057,0.017395372,0.008963653,-0.002532345,-0.011549757,0.0111536365,0.024219971,-0.03630732,0.0020541705,0.030014656,-0.010446277,0.009008924,-0.007458393,0.0115554165,0.0001851512,-0.010774491,-0.028611256,0.009269232,0.010061474,-0.003966869,0.019047761,0.03429276,-0.0073452154,-0.005285386,-0.01038403,-0.021786656,-0.022907112,0.013785011,0.033840053,-0.026755145,-0.016173055,-0.039929,-0.022273319,-0.01359261,-0.0026992818,-0.008341177,-0.018968537,-0.019353341,-0.005452323,0.03390796,0.011057436,-0.0010751856,-0.015335542,0.01038403,0.019353341,0.037801262,0.0132417595,0.006043675,0.018493192,0.0061115813,0.00586825,0.033387344,0.002603081,-0.009337138,-0.0017698121,-0.03173495,0.01464516,0.005726778,-0.015958019,-0.0013489336,0.0008070966,0.021673478,0.0076847477,-0.011702547,-0.01830079,-0.012902227,-0.026664604,-0.00656995,-0.034270126,-0.017768858,-0.019624967,-0.013332302,-0.024152065,-0.0070283185,-0.00651902,0.029177142,-0.01474702,0.014260356,0.025148027,-0.07166395,-0.007894126,-0.005322169,0.006128558,0.0088561345,-0.022046965,0.009801166,-0.010101086,-0.013354938,-0.008001644,-0.02483113,-0.0077979253,0.0076960656,0.019704191,-0.007639477,0.005907862,-0.034021135,0.06423951,-0.02076806,-0.022443086,0.020156901,0.03494919,-0.027547387,0.004077217,0.007605524,0.0077073835,-0.0030982322,0.00007617372,0.019093033,0.020202173,-0.0024149234,0.029177142,0.013196489,-0.028452806,-0.011244178,0.04348277,0.00042123225,-0.011521463,0.044772994,-0.046266936,0.013875553,0.011476192,-0.007215061,0.026958864,-0.010327441,-0.0192628,-0.026755145,0.024717951,0.0018179126,0.0012491959,-0.025102755,0.0010440618,0.010327441,-0.03526609,-0.026890958,0.013196489,-0.0012675873,-0.0012909301,0.018470557,0.009444657,-0.011561075,-0.022952383,-0.005622089,0.0132417595,-0.017440643,-0.011295108,-0.042645257,0.04022326,-0.018040484,0.0056588715,0.003601872,-0.020949144,-0.038955674,0.008409084,0.0014430123,0.0009994982,-0.011057436,0.051880535,-0.01003318,-0.013468115,-0.018051801,-0.00051707943,0.018470557,0.0040545817,-0.017259559,0.01655786,-0.020383256,-0.027162584,0.014667795,0.006439796,-0.0039300863,0.006128558,-0.0025549806,0.001509504,0.010265193,-0.019636285,0.019421248,0.008295906,0.008239318,0.010344418,0.00777529,0.011566734,-0.013196489,0.013411526,0.022578899,0.039906364,-0.012268434,0.017666997,-0.019194894,0.045248337,-0.017576456,0.03977055,-0.005446664,-0.024650045,0.013411526,-0.0048383353,0.029267684,0.0389104,0.037507,0.0343154,-0.00406307,0.036397863,0.012823003,-0.033319436,0.0048638,0.0050335666,-0.033885323,-0.015403449,-0.01815366,-0.040947597,-0.016931344,0.03094271,-0.016489953,0.0110008465,0.016161738,-0.016376775,0.00073353125,-0.009716283,0.000055660308,-0.030874804,0.0037829557,0.0007292871]},{"id":"guide-roles-1","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Create a role\nUse guild.createRole() to create a new role. Pass name, permissions, color, hoist, mentionable, unicode_emoji, position, or hoist_position. Permissions accept PermissionResolvable (string, number, array) for convenience.\n\n```javascript\nimport { Client, Events, PermissionFlags, resolvePermissionsToBitfield } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.content === '!createrole' && message.guildId) {\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const role = await guild.createRole({\n name: 'Moderator',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages'],\n color: 0x5865f2,\n hoist: true,\n mentionable: false,\n });\n await message.reply(`Created role ${role.name} (${role.id})`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.012673678,0.021049427,-0.0034116984,0.027224079,-0.0021648936,-0.02272921,-0.040407486,0.022126805,0.029587362,0.049767934,0.020632377,-0.009082416,0.023771835,-0.038021035,0.014585156,0.008850722,-0.06056489,-0.011706354,0.025416864,0.056626085,0.03894781,-0.008839137,-0.018408112,0.04763635,-0.045782793,0.022960905,0.026899708,0.057413846,-0.035843108,-0.04953624,0.057413846,-0.027942332,-0.028776431,-0.019566583,-0.018431282,-0.027641129,0.03236769,0.012581,-0.029587362,0.03570409,-0.026621675,-0.0349395,0.052501928,-0.022381669,-0.001799975,0.048099734,-0.010872255,0.030884849,0.0007689354,0.022879811,-0.017921554,0.0043703336,0.019867785,0.09657018,-0.0059545436,0.011781655,-0.07428119,0.00020780083,-0.044508476,0.058757674,-0.010993894,-0.0592674,0.013461439,0.01808374,-0.0013590319,0.04270126,-0.08456842,-0.0034812067,0.00771542,0.08123202,0.036028463,-0.02921665,0.027432604,-0.025857083,-0.018269096,-0.047682688,0.032599386,0.030259276,-0.009053455,-0.028197195,-0.017238056,0.022300577,-0.03848442,-0.025324186,-0.0034638296,0.033873707,-0.028104518,-0.045666944,-0.01663565,-0.06927659,-0.007976077,-0.04390607,-0.081417374,0.011816409,0.046616893,-0.0072694086,-0.00020725779,0.024397409,-0.0007863125,0.06649626,0.06695965,0.0040980927,-0.048794817,-0.01768986,0.003906945,0.0071535613,-0.025694897,0.037603986,0.015071714,0.0013300701,-0.09860909,0.03171895,0.034313925,0.0034667258,0.001329346,0.009748537,0.04999963,-0.02272921,0.053567722,-0.041241586,-0.05722849,-0.03776617,0.039040487,-0.04819241,-0.030212937,-0.033642013,-0.032205507,-0.044763338,-0.02643632,0.009592144,0.0057315375,0.0003193037,0.058340624,-0.02968004,-0.035240702,0.008954984,-0.008346787,-0.032390863,-0.024930306,-0.0064874403,-0.016542973,-0.012198704,0.014446139,0.046570554,-0.012928542,0.009893347,-0.034730975,0.012337721,-0.07122283,0.044021916,-0.043929238,-0.015106468,-0.022381669,-0.00041053334,-0.029610531,-0.04870214,0.00579815,0.011127119,-0.04907285,-0.01950866,0.013669963,-0.012569415,-0.0021286914,-0.04223787,-0.010310397,-0.05815527,-0.009094001,0.01521073,-0.03575043,0.060703907,0.02557905,0.018906254,-0.0015972425,0.00660908,0.019554999,0.0023850033,-0.0070145447,-0.0132297445,0.016114337,0.0116889775,0.0030294028,-0.006238369,-0.025949761,-0.015604611,-0.037650324,0.00041053334,-0.01786363,-0.02557905,0.0008210667,0.007651704,-0.03521753,0.01299805,0.0071535613,-0.0064700632,0.04796072,0.01420286,0.05644073,0.02108418,0.03042146,-0.04186716,-0.0060588056,0.004703394,0.0394112,-0.045829132,-0.010258265,-0.011202419,-0.018952593,-0.010866462,-0.017956307,-0.000681326,0.032182336,-0.03167261,-0.00472946,0.012546246,-0.05037034,0.05240925,-0.056672424,0.008485803,-0.01707587,-0.01506013,-0.06209407,0.0009854248,0.01909161,-0.023181014,0.00017458528,0.036260158,0.0045527928,-0.0012793869,0.008103508,0.043141477,0.007113015,0.023412708,-0.023424294,-0.058247946,0.013820564,-0.013368761,0.015720459,0.049721595,0.028730093,0.0019751939,-0.024026698,-0.033920046,0.006417932,-0.02921665,0.013449854,-0.033642013,0.023795005,-0.00085726887,0.046987604,0.027502112,0.07803464,0.0025211235,0.03336398,0.01992571,0.009916516,-0.01157313,0.0069508287,0.01641554,0.0011425425,-0.013137067,-0.014110182,-0.020168988,0.01461991,-0.004995908,-0.02292615,0.004604924,-0.010953348,-0.011219796,-0.023250522,-0.017875215,-0.0063947625,-0.024420578,0.016531387,-0.02798867,-0.038623437,0.017875215,0.033873707,0.01764352,-0.011909087,-0.0053579304,0.013832149,-0.008682744,0.0012207393,0.0067480966,-0.011816409,0.033224963,-0.008033999,-0.043326832,0.007640119,0.0039880383,0.014365046,-0.006516402,-0.0056823026,-0.0006429517,0.029749548,0.0017463957,0.053938434,0.0018216964,0.033085946,0.052687284,-0.024235222,0.026181456,-0.0065395716,-0.00375924,0.021732925,-0.015083299,-0.028174026,-0.034174908,0.029077634,-0.051853184,0.043210987,0.048470445,0.0129401265,-0.016230185,-0.023795005,-0.0069334516,0.024443747,0.020412268,0.020979919,0.04629252,0.023354786,-0.057460185,0.017006362,-0.037140597,-0.0036665623,-0.038090542,-0.018686146,-0.006973998,0.024096206,0.0019143741,0.06496708,-0.030583646,-0.010356735,0.057830896,0.03885513,-0.010571052,-0.00067299954,0.07659814,0.060750246,-0.021454891,-0.0039243223,-0.028197195,-0.016670404,0.0019056855,-0.02840572,0.0029569985,0.0316031,0.0064874403,0.0036723546,0.046454705,-0.029981242,0.050324,-0.012824279,-0.023331616,-0.017655104,-0.028197195,0.012581,-0.016566142,0.010067117,0.02641315,-0.07687616,-0.007165146,-0.020968333,0.015685704,0.0025587738,0.0058473847,0.001928855,-0.021999374,0.02435107,-0.0037853057,-0.0020389098,0.030514138,-0.066913314,0.0070435065,-0.011555753,-0.032390863,-0.0121060265,-0.013032804,-0.030908018,-0.0031104959,-0.0025833915,-0.0049698427,-0.001976642,-0.05328969,-0.015986906,-0.019276965,-0.0043500606,-0.0080629615,-0.0065569486,-0.0051812637,0.00016797836,0.032228675,0.043350004,0.056209035,-0.005801046,0.023725497,0.06302085,0.053984772,0.020203743,0.0037621362,0.0225091,0.023470633,0.031881135,0.023771835,-0.000058873884,-0.031834796,-0.028127687,0.007767551,0.0016276524,0.0043992954,0.0259961,0.012673678,0.01909161,0.02641315,0.04142694,-0.023181014,0.040546503,-0.027015556,-0.019195873,-0.0067191347,-0.030490968,-0.022821888,0.008369956,-0.046362028,0.047288805,-0.015755212,-0.0036752508,-0.036376003,-0.008659574,-0.01580155,-0.03848442,-0.0006950829,0.047010772,0.019740354,0.0022488828,-0.027316757,-0.009233017,-0.06088926,-0.001718882,0.007338917,-0.003973557,-0.0016175158,0.013299253,0.02803501,0.012928542,0.006481648,0.01422603,-0.05732117,0.030583646,-0.014457724,-0.022045713,-0.010472582,0.03408223,0.015488763,-0.0014408489,-0.021281121,0.00187962,0.067979105,-0.03278474,0.010750615,-0.023957191,0.017805707,0.027548451,0.025254678,-0.031579934,-0.0073968405,-0.04548159,-0.017655104,-0.020006802,-0.036005292,-0.0026659325,0.025115661,0.047497332,-0.012349306,0.010553675,-0.012662093,-0.0016537181,-0.03943437,0.037997864,0.04763635,0.030259276,0.024652272,-0.029193481,-0.048841156,0.017388657,0.0835953,0.03605163,-0.020551285,-0.043743882,0.0019114779,-0.013530947,0.021756094,0.021443307,-0.010449412,0.022428008,-0.0601015,0.023887683,-0.049814273,-0.0223585,0.022984074,0.0017565324,-0.04341951,-0.056718763,0.012812695,-0.015245484,0.0215244,0.044137765,-0.022300577,-0.006736512,0.06214041,-0.009957062,0.0007761759,0.003990934,-0.025903422,-0.0009760122,-0.021559155,-0.051436134,0.03083851,-0.011764278,-0.043512188,-0.000036111727,0.04680225,0.02435107,-0.008340995,0.0052449796,0.0048076566,-0.008120885,-0.022578608,-0.0016262044,-0.02435107,0.037557647,-0.01054209,0.018419696,-0.013206575,-0.015546687,-0.0016653028,-0.0034348678,0.0243279,0.0078949835,-0.03609797,0.000956463,0.025486372,-0.0066148723,0.0012446328,-0.020945163,0.001620412,-0.016994776,0.036005292,0.0050654165,0.028058179,0.037905186,-0.04800706,-0.024837628,0.014017505,0.0014509856,0.014457724,-0.013241329,-0.03236769,0.0002611991,0.0021924074,0.01825751,0.0042689675,0.00053760316,-0.008566896,-0.04754367,-0.033920046,0.012650508,0.042098854,-0.012407229,-0.04467066,-0.005589625,0.008879684,0.04680225,0.02680703,0.0059053083,-0.010634768,-0.012395645,0.023331616,0.011011272,0.0040285843,-0.015094884,-0.07293736,0.03211283,-0.010976518,-0.029726379,-0.02029642,-0.015118053,0.010576844,-0.016716743,0.003159731,0.0025022984,0.014353462,0.013090728,0.005801046,-0.015002206,-0.018199587,-0.013693132,0.03012026,-0.017284395,-0.000956463,0.008074546,-0.025254678,-0.06445735,-0.013461439,-0.021142105,-0.038461253,0.05037034,-0.010594222,0.016612481,0.009406788,0.035171196,-0.000291609,-0.051806845,-0.032668896,-0.0023690742,-0.026135117,0.018338604,0.02332003,0.03007392,0.018431282,0.015280238,-0.0058850353,0.004118366,-0.010901216,-0.010901216,-0.0016768875,-0.01828068,-0.0041560163,-0.023227353,-0.011358812,0.012511492,-0.05690412,0.015164392,-0.0068639433,-0.0047410447,-0.042469565,0.017852046,0.040847704,0.0076806657,-0.021698171,0.027085064,-0.042400055,0.0029425176,-0.048146073,-0.0056301714,0.016461879,0.0038142672,0.012847449,-0.005056728,-0.015419255,-0.027919162,0.005430335,-0.016067998,-0.042793937,0.030583646,-0.026482658,-0.00751848,0.029981242,0.007958699,0.016380787,-0.0259961,-0.028498398,-0.01464308,0.04212202,0.04017579,-0.0019230626,-0.043720715,0.014214445,-0.005780773,-0.0028310146,0.010408866,0.043141477,-0.024212053,0.012650508,-0.0071072225,-0.0017956308,-0.019624507,-0.036769886,0.033757858,0.012302967,0.01199018,-0.010275642,-0.0068871127,-0.0047989683,0.03948071,-0.015986906,0.00700296,-0.018095324,0.01784046,-0.05111176,-0.018384943,0.007964492,-0.00029179,-0.0043529565,-0.012453568,0.0088565145,0.014330292,0.014295538,0.019184288,-0.061352648,0.00092750124,0.014851605,0.010576844,-0.009198263,-0.004066235,-0.021165274,-0.013762641,0.058711335,0.017168548,-0.043512188,-0.04592181,0.002251779,-0.013947996,0.0012757668,-0.020064726,0.027108233,-0.0055519748,-0.03570409,0.024235222,0.004248694,-0.007472141,0.04432312,-0.014932698,-0.023123091,-0.041264754,0.0031713156,0.033132285,0.024513256,-0.037580814,-0.02218473,-0.007176731,0.0063136695,0.036422342,0.015662534,-0.027061895,0.0065048174,-0.011225589,0.01670516,-0.009841215,-0.017388657,-0.008115092,0.023655988,-0.007981868,-0.014828435,-0.033016436,-0.00982963,0.008514766,0.00023929676,-0.014863189,0.041380603,-0.022717625,0.0069624134,0.005977713,-0.017539259,-0.012638924,-0.040708687,-0.026528997,-0.01017138,-0.027339926,0.07177889,0.00065091613,0.044647492,0.0127316015,0.03700158,-0.023354786,-0.029193481,-0.0021750303,0.004283448,-0.011613676,-0.016554557,0.01506013,-0.012488322,0.009875969,-0.0042689675,0.01319499,-0.017909968,-0.0018578987,-0.012963296,0.000009684098,-0.04436946,-0.0215244,0.012453568,-0.0072404468,-0.024235222,0.004940881,-0.012569415,-0.006580118,-0.022960905,-0.0039416994,-0.024907136,-0.038924642,0.014434555,0.013924827,0.022717625,-0.035194363,0.014075428,-0.0106869,-0.07173255,-0.041218415,0.023030413,-0.008474219,-0.0134151,-0.0040980927,0.027247248,0.025833914,0.035958953,-0.012048103,0.010785369,-0.037580814,0.035171196,0.027849654,0.041172076,0.017388657,-0.0067017577,-0.0082309395,-0.018929424,-0.019624507,-0.025509542,-0.052316573,-0.029008126,-0.011781655,0.010582637,0.001944784,0.01280111,-0.03361884,0.034337096,-0.000047062902,0.0070898454,0.023934022,0.00832941,-0.0078544365,-0.014550402,0.045273066,0.014550402,0.013160236,0.032089658,-0.03252988,0.011845371,0.016102754,-0.0050654165,-0.027942332,0.0012236355,-0.012175535,0.05560663,0.014307123,-0.0053926846,0.024235222,0.007842852,0.010437828,0.03533338,0.022845058,0.014631495,0.007605365,-0.02761796,0.024953475,-0.029587362,-0.032668896,0.025694897,-0.0097311605,-0.0031307691,0.0098528,0.012117611,-0.029100804,-0.017909968,-0.005743122,-0.016091168,-0.017967893,0.0057112644,0.011353021,-0.00019404397,0.04944356,-0.01683259,-0.019960463,0.0049843234,0.008294656,0.001182365,-0.017330734,-0.029123973,0.02012265,0.035588242,0.0074258023,0.046570554,-0.030490968,-0.019694015,-0.0008246869,-0.007883399,0.01145149,0.053057995,0.004283448,0.007941322,-0.026274133,0.0015031167,-0.003964869,-0.045643777,0.010837501,0.053521384,-0.029378837,-0.03491633,-0.004376126,-0.007437387,-0.01125455,0.007385256,0.008201978,0.019103196,-0.028591076,-0.021860357,-0.029378837,0.023065167,0.004830826,-0.005673614,0.007182523,-0.036908902,0.012581,0.037673492,0.0016870241,0.028475229,-0.0038519176,0.011283512,0.0058850353,-0.009464712,0.014307123,-0.015500348,-0.0046918094,-0.016589312,0.0057286415,-0.0010006297,0.017006362,-0.0060066744,-0.006545364,0.03371152,0.0011686081,-0.0013163132,-0.018396527,-0.006545364,0.01963609,-0.033989552,0.00700296,-0.0023053582,0.023435878,0.004002519,0.015813136,-0.0046599517,0.039712403,0.042098854,0.02294932,-0.008572689,0.01017138,0.006307877,-0.005152302,0.012256628,-0.019300135,-0.019578168,0.047196127,-0.001393786,0.022555439,-0.010993894,-0.0005064692,0.0036868355,0.040963553,0.009540013,-0.013484608,-0.034383435,0.005690991,0.007952907,-0.021037841,-0.0016551662,-0.046964433,-0.0031510424,-0.0009999058,0.014747342,0.036260158,-0.0010223511,0.027919162,0.03206649,0.0042226287,-0.024073036,0.04986061,-0.013067558,0.016276523,-0.0042805523,0.0059892978,0.033757858,-0.0134382695,0.013866903,-0.08758044,-0.012835864,-0.0042689675,-0.009928101,0.014770512,0.03658453,0.012291382,-0.011764278,-0.037858848,0.043187816,0.0023039102,-0.0008340995,-0.023099922,0.012430399,-0.017933138,-0.045620605,0.029054465,-0.0056041055,-0.00039931064,0.003194485,0.029031295,-0.019578168,0.010043948,0.0055925213,0.01319499,-0.0030033372,-0.0060761827,0.03825273,-0.005569352,-0.022960905,-0.027780145,0.013762641,0.0009933893,-0.01639237,-0.011660015,-0.006846566,-0.011967011,-0.012059688,-0.023099922,-0.031510424,0.017168548,-0.020748224,0.004277656,0.014341877,-0.008300448,0.008537935,-0.022706041,0.039133165,-0.011799032,0.024907136,0.016485048,0.0098528,0.010130833,-0.00030608987,0.029842226,-0.017504504,-0.02358648,-0.0035478189,0.019137949,0.019404396,0.034591958,0.014133352,-0.016450295,-0.0070898454,-0.00042501424,-0.0069450364,-0.025857083,0.041936666,0.012882203,0.046593722,0.0034174907,0.042261038,-0.0025356044,0.0063658007,0.028058179,-0.016519804,-0.021049427,-0.0068639433,-0.018072154,0.020238496,0.013959581,-0.008144055,0.010889632,0.0055490783,-0.021698171,0.0059892978,0.000551722,-0.02132746,-0.0025645662,-0.025764406,0.010907009,0.0068060197,-0.0015537998,-0.010889632,-0.017238056,-0.030259276,0.046547383,-0.021964619,0.017979477,0.00030880506,-0.010866462,0.015998492,0.037117425,-0.0037129011,0.022126805,-0.001588554,-0.026227795,0.02761796,-0.0065048174,-0.03419808,0.004457219,0.024698611,0.026343642,-0.005433231,-0.009059247,-0.04504137,0.0010346598,-0.020586038,0.016589312,0.03456879,-0.01216395,0.0049727387,0.014944282,0.018871501,0.029031295,0.012233458,-0.022659702,0.015384501,0.002461752,-0.020667132,0.001232324,0.00011847181,-0.03415174,0.004442738,0.002434238,-0.0015016686,0.012245043,-0.031116543,0.026274133,0.014214445,0.010252473,0.01506013,-0.021628663,0.03042146,-0.016554557,-0.020006802,-0.039179504,-0.0071999,-0.024188884,-0.011810617,0.05407745,0.039642893,0.013924827,-0.019751938,-0.0082714865,-0.01963609,0.036329664,0.00044166725,0.002238746,0.022567024,-0.051667828,-0.004413776,0.014365046,0.07011069,0.01641554,-0.04147328,0.0021851668,0.056996796,0.016577726,0.021883527,-0.011804825,0.008972362,0.02476812,-0.021014672,-0.0012591137,0.017713029,0.020435438,0.016600896,-0.003385633,-0.042029344,0.01889467,0.0205397,0.0021721341,0.011799032,0.0031684195,-0.013820564,0.007993453,-0.0021142105,-0.019473905,-0.00042899646,-0.03899415,0.018141663,0.003484103,0.006736512,0.019462321,0.013693132,-0.018222757,-0.040407486,0.027015556,0.02400353,0.0027730912,0.016994776,-0.006771266,0.0011150287,-0.01543084,0.007970284,-0.010970725,0.006417932,0.0034464526,-0.026320472,-0.02476812,-0.035055347,-0.036677208,-0.037905186,0.049675256,0.02562539,-0.004211044,-0.005627275,0.02356331,0.010142418,0.012662093,0.00065707054,0.020389099,-0.038090542,0.038113713,-0.020412268,0.0123145515,0.0025877357,0.025671728,0.010182965,0.0243279,0.013577286,0.039202675,-0.0009448783,0.015743628,0.0034464526,0.019821446,0.012036518,0.015743628,0.028637415,-0.016878929,0.009209848,0.0043326835,0.01746975,-0.023459047,0.05157515,0.030490968,-0.01643871,0.032251846,0.020377513,-0.04467066,-0.0006744476,0.024026698,0.015685704,0.00035369582,-0.00030120258,0.029981242,-0.0033479827,0.020284835,-0.012407229,-0.016334448,0.0197056,0.01054209,-0.0038345405,0.028243534,0.021234782,0.017921554,0.004129951,0.01992571,0.0054853624,0.025857083,0.015361331,0.029471515,0.0422147,-0.028174026,0.0076459115,0.0007761759,-0.0037186935,-0.03005075,0.024490086,0.028081348,0.0069276593,-0.042724427,0.037928358,0.052270234,0.019775108,0.021234782,0.0024284457,-0.00015213988,-0.0014828435,-0.046130333,0.048841156,0.012986465,-0.0043645413,0.024883967,-0.020945163,-0.016044829,-0.04056967,-0.00874646,0.01865139,-0.04429995,-0.0066670035,0.009881762,-0.04548159,0.01380898,0.048794817,-0.024652272,0.021223197,-0.034406602,-0.0042168363,0.005717057,0.009592144,-0.0013199334,0.002529812,-0.02358648,0.021130519,-0.03776617,0.013901657,0.0019360954,-0.00025848395,-0.012974881,0.0021257952,-0.027293587,0.0110634025,0.003973557,0.01199018,-0.019624507,-0.0011005478,0.0014003024,0.039295353,-0.008358371,-0.0054187505,0.013704717,0.014886359,0.0017463957,0.0026847576,-0.008346787,0.034221247,-0.02761796,-0.0037244859,0.03456879,-0.00742001,-0.0033827368,-0.042075682,0.0006523642,0.0018289369,-0.002319839,-0.011214004,-0.011040233,0.00431241,-0.008717498,-0.0011309577,0.041264754,-0.026459489,-0.01280111,-0.013449854,-0.017956307,-0.013623624,-0.029448345,0.032182336,-0.016403956,-0.004103885,-0.016902098,-0.0118975025,-0.010125041,0.010617391,-0.0031191844,-0.030653154,-0.00094053405,-0.0015900021,0.01722647,0.0075242724,-0.019045271,-0.012036518,0.00359995,0.042469565,0.025648559,0.01115608,-0.014017505,0.0074431794,0.023285277,0.006174653,0.016485048,-0.0021677897,-0.0076574963,-0.014538817,-0.02233533,0.0012728706,0.0074489717,-0.04015262,0.013797395,-0.007599573,-0.014561987,0.015118053,-0.008954984,-0.0064121396,0.017295979,-0.0048018643,-0.023713911,-0.034754146,-0.002574703,-0.017284395,-0.007472141,-0.026482658,0.0055664554,-0.025926592,0.026204625,-0.021234782,0.01909161,0.010090287,-0.03526387,-0.012488322,0.0070145447,0.02761796,-0.009986024,-0.0053724116,0.030745832,-0.02135063,-0.0064758556,0.0011019959,-0.018801993,-0.007651704,0.01238406,0.026760692,-0.017909968,0.012302967,-0.031417746,0.061955053,-0.013137067,0.00638897,0.02641315,0.03378103,-0.016067998,0.00089853944,0.010414658,0.006499025,-0.010003401,-0.002757162,-0.015396086,0.018778823,-0.021802433,0.0027470256,-0.023795005,-0.03848442,-0.010374112,0.03174212,0.015708873,-0.00036166032,0.023528555,-0.006858151,0.014596741,-0.0076922504,0.0071535613,0.023354786,-0.0056214826,-0.010866462,-0.009319903,0.018570298,0.0110634025,0.0063658007,-0.00466864,-0.0054564006,0.0022141286,-0.044577982,-0.023621233,-0.0011324058,0.01125455,0.015720459,0.013600456,0.011955426,-0.002188063,-0.03568092,0.00020617172,0.010258265,-0.009835423,-0.011607884,-0.055513952,0.042886615,-0.03408223,0.001702953,-0.021871941,-0.018454451,-0.024165714,0.004961154,0.010640561,0.01847762,-0.00498722,0.042075682,0.022265822,0.0003127873,-0.024142545,0.03531021,0.03132507,0.0005332589,-0.006163068,0.009887554,-0.015917398,0.00032473405,0.002820878,-0.01584789,0.010009194,0.0077270046,-0.013137067,-0.0036028463,0.009881762,-0.03329447,0.0037186935,0.0070087523,-0.016600896,0.0060588056,-0.017527673,0.019358058,0.0039619724,0.032182336,0.017029531,0.028104518,-0.00073816354,-0.013600456,-0.01768986,0.027131403,-0.028591076,0.0402453,0.014446139,-0.01953183,0.0027108232,-0.008201978,0.020423852,0.021535985,0.040708687,0.015175977,-0.000518778,0.035124857,0.00031695055,-0.037094258,-0.0059284777,0.020389099,-0.04295612,-0.012071272,-0.024536425,-0.046153504,-0.01749292,0.008277278,-0.02435107,-0.019972049,0.00793553,-0.014527232,0.008115092,-0.003921426,0.0043500606,-0.04175131,-0.026250964,-0.021257952]},{"id":"guide-roles-2","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Fetch roles\nUse guild.fetchRoles() to fetch all roles from the API and cache them. Use guild.fetchRole(roleId) to fetch a single role by ID. Throws FluxerError with ROLE_NOT_FOUND on 404.\n\n```javascript\n// Fetch all roles (updates guild.roles cache)\nconst roles = await guild.fetchRoles();\n\n// Fetch a single role by ID\nconst role = await guild.fetchRole(roleId);\nconsole.log(role.name, role.color);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.038224455,-0.0007951521,0.011202143,-0.012265203,0.03513815,-0.017134706,-0.0380187,0.027090896,0.012688141,0.028759787,0.018517828,-0.044397064,0.037515745,-0.016837506,0.040487744,0.020883994,-0.05555348,-0.011247866,-0.017854843,0.056239326,0.05779391,-0.037309993,-0.0150886,0.03351498,-0.059119876,0.016334552,0.026153574,0.08605074,0.00038507365,-0.043276846,0.049700934,-0.01688323,-0.028394002,-0.013225387,0.010773489,-0.040487744,0.020255303,0.04629457,-0.0041922303,0.013099648,0.02565062,-0.021044025,0.016025921,-0.050295334,0.00050259614,0.033126336,-0.0007658608,-0.004952376,-0.004277961,0.05509625,-0.021489825,-0.026793696,-0.034017935,0.075397275,-0.0015874464,0.0022932957,-0.05779391,-0.0073214,-0.026679387,0.033995073,-0.0060583013,-0.04558586,0.04076208,0.0006269056,0.039161775,0.059988614,-0.06840165,-0.025239112,0.039458975,0.04723189,0.035275318,-0.026199296,0.03788153,-0.028531171,0.026816558,-0.0010109076,0.036006887,0.020506779,0.005841117,-0.045928784,-0.008510199,0.024256067,-0.037378576,-0.05431896,0.028028218,-0.017397612,-0.0010516297,-0.026770834,-0.020060979,-0.01795772,-0.025033358,-0.038498793,-0.08390176,0.015957337,0.005592498,-0.007047062,0.0215927,-0.025513452,-0.011630796,0.0859593,0.08079259,-0.0063497857,-0.054821912,-0.02368453,0.014002678,0.018609274,-0.033835042,0.045768753,-0.009813305,-0.007755769,-0.11010106,0.006778439,0.040053375,0.027319511,-0.03337781,0.047734845,0.004366549,-0.009464667,0.03337781,-0.01298534,-0.047872014,0.0062183323,0.022015639,-0.04464854,-0.057062343,-0.008835976,-0.007338546,-0.047414783,-0.062823445,-0.013854078,-0.01388837,-0.043231126,0.027342372,-0.018746443,-0.040990695,-0.025993543,-0.013534017,-0.047780566,0.0028819798,-0.011110696,-0.010156228,0.025101943,-0.008327307,0.041607957,-0.0655211,-0.009944759,-0.03308061,-0.012493818,-0.03257766,0.011459335,-0.040533468,-0.026336465,-0.031754643,-0.027090896,-0.02718234,-0.043734077,0.02052964,-0.0019446576,-0.039893344,-0.011333596,-0.015945908,-0.019798072,-0.017489059,-0.0431854,-0.002566205,-0.06259483,-0.0365327,-0.007361408,-0.031960398,0.045128632,0.004103642,0.028439725,0.008201568,0.010642035,0.0026990876,0.007304254,-0.010522013,0.0031520315,0.024850467,-0.008487337,0.015637277,-0.0015074312,-0.018735012,0.0033349234,-0.02519339,-0.00610974,-0.023730252,-0.0062697707,-0.030908769,0.061360307,-0.00026951582,0.0383159,-0.008973145,0.022998685,0.009933328,0.020941148,0.019946672,0.018277781,-0.0015131466,0.0010509152,-0.020323887,0.03317206,0.07868934,-0.025124805,0.0009430375,-0.015362938,-0.002364738,-0.014665662,-0.01660889,-0.015774446,0.022107085,-0.017146137,-0.026176434,0.014997154,-0.050203886,0.03756147,-0.035092425,0.03346926,0.0057925363,0.00082087127,-0.03109166,0.004692326,0.04256814,-0.03394935,-0.009927613,0.023593083,0.0035006695,-0.012173757,0.009533252,0.018952196,0.04176799,0.008310161,-0.03198326,-0.051392686,0.030703016,0.0024590418,-0.005909702,0.05747385,0.0070527773,-0.039619006,-0.04103642,-0.06652701,0.0032634812,-0.026885143,0.030611569,-0.02971997,0.017271874,-0.014231293,0.04480857,0.04300251,0.026908003,0.02487333,0.01599163,-0.011865126,0.02294153,-0.029354185,0.024964774,0.014779969,-0.0042379536,0.041813713,-0.026176434,0.029994307,-0.022895807,0.009156037,-0.062411938,-0.0043579764,-0.025719205,-0.013865509,-0.037378576,-0.016403137,-0.0012152324,0.0061268862,0.04405414,-0.045425832,-0.02280436,0.009093167,0.041562233,0.0038721692,0.005398175,0.0066126934,0.024621852,0.00951039,0.015831599,0.001163794,0.007487146,0.018049166,0.015111461,-0.029148431,0.0017731963,0.0052781524,-0.018140612,0.016963243,0.009567544,-0.03609833,0.018929334,0.009236052,0.03602975,0.0035035273,0.043665495,0.031023076,-0.038430206,0.016631752,-0.027570987,0.0030520123,0.013019633,-0.019660903,-0.024256067,-0.033995073,0.019272257,-0.05070684,0.019386565,0.0443742,-0.03212043,0.014162709,-0.023227299,-0.039093193,0.035412487,0.013831217,0.061771814,0.036852762,0.05687945,-0.026245018,0.014219862,-0.00516956,-0.01328254,-0.07452854,-0.043985557,-0.027936772,-0.016037352,0.024324652,0.0817985,-0.030268647,0.0012623842,0.015328646,0.0070813545,0.004726618,-0.028165387,0.027639572,0.050203886,-0.037104238,0.0014774255,-0.012425234,-0.038704544,-0.0217413,-0.026725112,0.0018789307,0.000033600176,0.016128799,-0.009196045,0.030245785,-0.002586209,0.037470024,0.011270727,0.0010309115,-0.04524294,-0.03360643,0.00071906607,-0.019558026,0.006835593,0.034337997,-0.055873543,-0.009076022,-0.017031828,0.021912763,0.011007819,-0.0012495246,0.028302556,-0.0051838486,0.023775976,-0.0069784774,-0.0019718057,0.03756147,-0.06369218,0.0012752439,0.009801875,-0.009538967,-0.024370376,0.0007565733,0.020301025,0.03303489,0.01690609,0.027570987,0.0139340935,-0.06684707,-0.020895425,-0.03726427,-0.020723963,-0.010070497,-0.035389625,-0.0004568731,-0.006229763,0.026016405,0.025627758,0.0014674235,0.0103505505,-0.010910658,0.05491336,0.048969366,0.019226534,-0.0049438025,0.047917735,0.028325418,0.00965899,0.02097544,-0.013225387,0.00019610893,-0.038567375,0.0039264653,-0.027959634,-0.046546046,0.009024583,0.035778273,0.024507545,-0.0042550997,0.031503167,-0.029056985,0.057108063,0.0031948967,-0.022667192,0.0062411935,-0.004803776,-0.035869718,0.009316067,-0.0049438025,0.01705469,-0.01796915,0.017191859,-0.037812945,-0.000093767936,-0.008721668,-0.059119876,0.023318745,0.035321042,-0.0062526246,0.0068413084,0.01146505,0.03287486,-0.038681682,0.0037607192,-0.0104248505,0.0025361993,-0.04133362,-0.023753114,0.008047253,-0.004235096,0.030451538,0.0061211707,-0.06684707,0.0377215,0.004286534,0.004995241,0.004986668,0.014654231,0.038590237,0.013762632,0.008687376,-0.0022975823,0.038841713,0.006955616,-0.01839209,-0.0009987624,0.015442953,0.0025562032,-0.019729488,0.024507545,0.008881698,0.012699571,0.007058493,-0.007584308,-0.019055072,0.009790444,0.022712916,-0.002390457,0.0080758305,0.003163462,-0.0068984623,-0.023193007,-0.03941325,-0.013465432,0.05491336,-0.012608126,0.010950666,-0.04163082,-0.043139677,0.034177966,0.061771814,0.019809503,-0.009670421,-0.0013481149,-0.018220628,-0.020541072,0.014059831,0.059119876,-0.009927613,0.022015639,-0.010619174,0.025216252,-0.037035655,-0.016688906,-0.012939618,-0.009470383,-0.025399143,-0.038704544,0.04240811,-0.016368845,0.009150322,0.016643183,-0.012288065,0.00007117433,0.047597673,0.008453045,0.0057353824,-0.0032606237,-0.0150886,0.0007830069,-0.012630987,-0.056788005,-0.007790061,-0.016003061,-0.014917139,-0.012448095,0.031457447,0.026930865,-0.014162709,0.018940765,0.025307696,0.0026333607,-0.008510199,0.014768539,0.0292856,0.047597673,-0.032257598,0.015625846,0.011842265,-0.03278341,0.020495348,-0.0035035273,0.02384456,0.016208814,-0.034086518,-0.022164239,0.010081928,-0.025467727,0.0023761687,-0.032851998,0.014242724,-0.018849319,0.021787023,0.006378363,0.0048723603,0.015362938,-0.036944207,-0.0045865914,0.0031177392,-0.01252811,-0.005641079,-0.00686417,-0.04149365,0.011990865,-0.008310161,0.019672334,-0.012505249,0.019066503,-0.006732716,-0.0374243,-0.012962479,0.02217567,0.015054308,0.0076528923,-0.03605261,0.0033549273,-0.0042236648,0.0037035653,0.025764927,0.02430179,0.0076300306,-0.028896956,0.0221871,0.029194156,0.017317597,-0.018746443,-0.02896554,0.02384456,0.020941148,-0.03184609,-0.00070727814,-0.022278547,-0.014802831,-0.03602975,0.006304063,0.037241407,0.0050638258,0.004738049,-0.020895425,-0.02309013,-0.012893895,0.01809489,0.03093163,-0.016917521,-0.0010916373,-0.0068013007,-0.005989717,-0.06232049,-0.0041550803,-0.0010852076,-0.033720735,0.042796757,0.010441997,0.0040550614,-0.0035063848,0.018517828,-0.01599163,-0.03198326,-0.036555562,-0.014208431,-0.021787023,-0.023867423,0.011739388,-0.0047694836,0.010121936,0.0010266249,-0.033880766,0.009727575,-0.023890283,0.021009732,-0.001185941,-0.0031520315,-0.0005929705,-0.0226329,-0.05509625,0.009178898,-0.014654231,-0.0038064423,0.003237762,-0.008887414,-0.041745126,-0.020849701,0.011042112,0.028279694,0.012871033,0.03550393,-0.026496496,-0.0011745103,-0.024850467,0.024416098,-0.024553267,0.028119663,-0.013111079,-0.009138891,-0.0024819032,-0.030657291,-0.009556114,-0.033789318,-0.036761317,0.033423536,-0.021809885,-0.0017989154,0.015054308,0.003294916,0.024393236,-0.056650836,-0.0017503347,-0.006138317,0.020266734,0.018060597,-0.0032892006,0.0053953175,0.043574046,0.017706243,0.02354736,-0.0031491737,0.036944207,-0.014357031,0.013568309,0.009230337,0.008367315,0.0037521461,0.0029891431,-0.008001531,0.03666987,-0.060720183,-0.0053324485,-0.043345433,-0.015568692,0.034086518,-0.03852165,0.018186335,-0.015020016,0.035206735,-0.024919052,-0.022907238,0.021044025,0.03241763,-0.007212808,-0.02939991,0.000984474,-0.01992381,-0.01132788,0.0024333226,-0.05564493,0.01764909,0.031594615,0.015923046,-0.020152425,-0.024736159,-0.04679752,0.015808737,0.03317206,0.004832353,-0.024347514,-0.048192073,0.023524499,-0.035069562,-0.005501052,-0.0059668557,0.022209963,-0.019180812,-0.028096803,0.044168446,-0.008333023,0.0061783246,0.047186166,0.0030863045,-0.0026447915,-0.0092874905,-0.014116986,-0.022587176,0.008710237,-0.016380275,-0.005198137,-0.006264055,-0.00016422784,0.0127110025,0.016357414,-0.0069784774,-0.005869694,0.0036206925,0.031137384,-0.010327689,-0.003900746,0.016220246,-0.0018360654,-0.037012793,-0.017774828,-0.04213377,-0.02457613,0.02807394,0.02821111,-0.02535342,-0.0045037186,-0.007972954,0.0065383934,0.0060297246,-0.014665662,0.007961523,-0.08531918,-0.022061363,0.016894659,-0.023890283,0.05523342,0.021386947,-0.01418557,0.006401224,0.019798072,-0.01809489,0.02339876,-0.0004504433,-0.009664706,0.017614797,-0.021421239,-0.0025161954,-0.005195279,-0.010607743,-0.009121745,0.009813305,-0.012871033,0.011419327,0.018769303,0.0020532499,-0.008241576,-0.0050209602,-0.034040798,0.016163092,-0.023455914,-0.0049380874,0.018289212,0.011024966,-0.004878076,-0.004746622,-0.0124023715,-0.016025921,0.00002244849,-0.004003623,-0.0047523375,-0.037652917,-0.0052410024,-0.016666045,-0.08980003,-0.024050314,-0.0042265225,-0.020175288,-0.0033692159,0.0066927085,0.030542985,0.032806274,0.020266734,0.014951431,0.008264437,-0.056330774,0.0034720926,-0.013225387,0.02187847,0.017111843,-0.001886075,-0.0048637874,0.009378936,-0.0069327545,-0.032600522,-0.020838272,-0.0067212856,-0.0150886,-0.013225387,0.011539349,0.009196045,-0.035023842,0.074208476,-0.004840926,-0.018895043,0.022450007,-0.010899227,0.00610974,-0.009156037,0.031023076,0.018723581,0.014665662,0.05157558,-0.03925322,0.0023190149,0.027136618,0.013808355,-0.025216252,0.020403903,0.012048018,0.023775976,0.018780734,0.008338737,-0.0016174522,0.017546212,0.016997537,-0.00076800404,0.021638423,0.005401033,-0.023570223,0.0011094979,0.059668556,-0.032646243,-0.05701662,0.04252242,0.0148485545,0.00080658286,-0.010762058,0.046591766,-0.03276055,-0.008338737,0.00829873,0.007298539,-0.014116986,0.018986488,0.0010659181,-0.01900935,0.026725112,0.012185188,-0.015420092,0.019798072,-0.021809885,-0.042773895,-0.025444867,-0.024804743,0.026359327,0.04316254,-0.011453619,0.034337997,-0.03212043,-0.019878088,0.020472487,-0.00641837,-0.012448095,0.022838654,0.014711385,0.010482005,-0.0047123297,-0.016448861,0.009653275,-0.003440658,-0.005758244,0.035366762,-0.040967833,-0.002723378,-0.015637277,-0.0040750653,-0.0041350764,-0.011659373,0.004020769,0.038270175,-0.037972976,-0.029902862,-0.04165368,-0.0039779036,0.05084401,0.014128417,-0.009093167,-0.03346926,0.0021704151,0.02277007,0.015888752,0.018815028,0.01539723,0.044122726,0.01931798,-0.017591937,0.041013557,-0.000032662498,0.025444867,0.007149939,0.02036961,-0.001035198,0.06428658,-0.0030577276,-0.008853122,0.040853526,0.026610803,0.00829873,-0.01824349,0.022850085,0.033720735,-0.017911997,0.03365215,0.004312253,0.030337231,-0.006732716,0.01631169,0.013819786,0.055324867,0.024050314,0.033835042,-0.0152372,0.0007701473,0.023707392,0.00074299925,-0.0062697707,0.0076929,0.0031891814,0.0136254635,-0.031617474,0.012150895,0.027731018,0.015785877,-0.000434726,0.031434584,0.01237951,-0.016791783,-0.0031377429,0.0040550614,0.028919816,-0.00015744082,-0.014608508,-0.031000214,0.00004634815,0.0058439746,0.020929717,0.037058517,0.013854078,0.027022311,0.03410938,0.026839418,0.008818829,0.036898486,-0.023455914,0.006669847,0.0061783246,0.022049932,0.027228065,-0.015042877,0.017923428,-0.06277772,-0.01208231,-0.0054667597,0.0075728768,0.047872014,0.030291507,0.0074585695,0.034223687,-0.026885143,0.041973744,-0.020266734,-0.013179664,-0.00096732785,0.020392472,-0.016768921,-0.027982494,0.028256834,-0.016185952,0.008110123,-0.03845307,0.02096401,0.0015645849,0.014265586,0.012539541,0.019580888,0.026473634,0.022415716,0.031365998,-0.014825692,-0.058616925,-0.05902843,0.01962661,-0.017271874,-0.013065356,-0.012768156,-0.014025539,-0.02549059,-0.004406557,-0.024256067,-0.0079157995,0.016071646,-0.027022311,0.006246909,0.02217567,0.014059831,-0.002899126,0.0039979075,0.035206735,-0.007910084,0.026450774,0.022061363,-0.005140983,0.018643565,-0.0029777123,0.038864575,-0.010156228,-0.006155463,0.021215485,0.0079900995,-0.017306168,0.052718654,0.02232427,-0.0041693687,0.006892747,-0.0075957384,0.0030034315,-0.034932394,0.03376646,0.026336465,-0.0030720162,0.023158714,0.050569672,-0.00513241,-0.02354736,0.008035823,-0.03833876,-0.038110144,0.0058382596,-0.018986488,0.0024776168,0.0032434775,0.02202707,0.029217016,-0.0013738342,-0.020609656,-0.034086518,0.013762632,-0.009961905,-0.011807973,-0.028233971,0.0009680423,0.012665279,-0.01463137,-0.017580505,0.014437047,-0.051987085,0.04195088,-0.0389103,-0.0046408875,-0.0009058875,-0.013351125,0.038681682,-0.0053781713,0.017409043,0.017694812,-0.015705861,-0.040030513,-0.0012066594,-0.009950475,-0.028919816,-0.021364085,0.015225769,0.017168999,-0.019272257,-0.011910849,-0.0146428,0.0013759774,-0.025033358,-0.018803596,0.018277781,-0.017569074,0.022747207,-0.004026484,0.0371271,0.023478776,0.010613458,-0.014665662,0.011293588,0.017911997,-0.024416098,-0.021146901,-0.027273787,-0.022598607,0.01026482,0.0021118324,0.0063440707,0.014105555,-0.018197766,0.018723581,0.0040750653,-0.0007451425,-0.0023504496,-0.052901547,0.02866834,-0.010373413,-0.013076787,-0.034726642,-0.033492118,-0.04179085,-0.009064591,0.06168037,0.016403137,-0.0136254635,-0.024233205,0.0019217961,-0.0028348279,0.01643743,0.024073176,-0.002427607,0.0229301,-0.02067824,-0.011407896,0.024187483,0.063326396,0.03847593,-0.011619365,-0.010259105,0.001784627,0.0030720162,0.005566779,-0.010482005,0.0365327,0.008510199,-0.018369228,-0.0029148431,0.01646029,-0.00006947757,0.0035949734,0.0022818649,-0.020632517,0.02368453,-0.00075585884,0.020426763,0.0009623269,0.006401224,0.002530484,0.01962661,-0.012779587,-0.011127843,0.038407344,-0.053678837,0.010813497,0.02291867,-0.019683765,-0.03381218,-0.023730252,-0.017774828,-0.019558026,-0.001449563,0.019786641,0.010304828,0.023798836,-0.0033263504,0.016780352,-0.008590214,0.0033292081,-0.024416098,0.00040650633,0.009276059,0.019397996,-0.019352272,-0.014528492,-0.014071262,-0.043436877,0.04855786,0.011687949,0.005703948,-0.018609274,-0.021501254,0.0016203099,0.027090896,0.004252242,-0.013065356,-0.019592319,0.0058096824,-0.020849701,-0.003274912,0.013819786,-0.027685294,0.02097544,0.029697109,0.011144988,0.031434584,-0.0086816605,0.009779013,-0.008624506,0.029011263,0.025582036,0.031503167,0.016974675,0.002023244,-0.023775976,0.013751201,0.023135854,-0.008864553,0.06940756,0.0011623652,-0.02127264,0.040556327,0.013865509,-0.053953175,-0.011739388,0.024941914,0.018174905,-0.023044407,-0.015557261,0.022575745,0.0069727623,0.016277399,-0.02443896,-0.023638807,0.02140981,0.014402755,-0.0015617273,0.012036588,0.010459143,0.017911997,0.035869718,0.011173566,0.009899036,0.043848384,0.051392686,0.026953727,0.0221871,-0.017477628,-0.0080758305,0.0078414995,-0.029948585,-0.024736159,0.026885143,-0.015557261,-0.0131682325,-0.0063440707,0.02880551,0.018620703,0.018780734,0.0033892195,0.0019889518,0.008030107,-0.014014109,-0.041127864,0.018552119,-0.006321209,-0.018037735,0.024073176,0.0048466413,-0.040350575,-0.014768539,-0.016837506,0.0017331886,0.014985723,0.03321778,-0.017557643,-0.033697873,0.02427893,-0.00022736492,-0.02640505,0.028828371,-0.027959634,0.006852739,0.0021575554,0.0115736425,0.01660889,-0.011853696,-0.038361624,0.021832747,-0.030268647,0.019123657,0.012539541,-0.00066334114,0.006892747,-0.014585647,-0.020861132,-0.021832747,0.0010344835,0.0005704662,0.0032320467,0.012128034,0.010081928,0.026679387,0.018014874,0.00089731446,0.03109166,0.022735776,0.01252811,-0.013328264,-0.014071262,-0.0013359698,-0.035709687,-0.02578779,0.013419709,-0.0085959295,-0.011139274,-0.031800367,-0.0017303309,0.010819212,0.034726642,-0.043871246,0.012722434,0.008207284,-0.003294916,-0.006024009,0.038293038,-0.013213956,-0.020632517,0.031320274,-0.019375134,-0.0036178348,-0.021478394,0.006064017,-0.022530023,0.0009744721,-0.020483917,-0.02170701,0.0020446768,-0.03152603,-0.011373604,-0.036898486,-0.010236244,0.012733864,0.044465646,-0.0067498623,-0.017511921,-0.0030805892,0.017077552,0.030611569,0.05779391,0.018609274,0.008967429,-0.0068127317,0.04208805,0.009721859,0.047643397,0.01177368,-0.009716144,-0.0307716,-0.027868187,0.016631752,0.03925322,-0.007955807,-0.011819404,0.00031381001,-0.008955998,0.0057553863,-0.017694812,-0.0053581675,-0.03244049,0.009247483,-0.019660903,-0.046568908,-0.008121553,0.0064983857,-0.008453045,-0.0006722714,-0.031068798,-0.053084437,0.04256814,-0.017043259,0.0150886,0.04213377,-0.06863027,-0.0029777123,0.027022311,0.014677092,-0.016014492,-0.026633665,0.011968004,-0.03696707,-0.020266734,0.0044837147,-0.026176434,-0.0084473295,-0.0006269056,0.022084223,-0.011899418,-0.0069670468,-0.019958103,0.08152416,-0.016197383,-0.016128799,0.01237951,0.0010752056,-0.02384456,-0.0052781524,0.0022061362,0.009716144,-0.007715761,-0.019146519,0.029559938,0.0022975823,-0.027205203,0.02608499,0.01992381,-0.034063656,0.0018389231,0.061360307,0.00033399244,0.0002620144,0.018780734,-0.027662434,-0.004812349,-0.017329028,-0.004780914,0.041402202,-0.0005761816,-0.011373604,-0.0006522676,-0.0099676205,-0.010270536,0.024621852,-0.017683381,-0.0015531542,0.016083077,-0.025536312,-0.033583567,-0.015157185,0.0018746442,0.002586209,-0.008024392,0.00080372515,0.0077329073,-0.03257766,0.016014492,0.0215927,-0.015420092,-0.0071156467,-0.017637659,0.027982494,-0.01252811,0.002401888,0.019992394,-0.02096401,-0.014151278,0.007155654,-0.008413037,0.020472487,-0.026245018,0.025467727,0.0046408875,-0.00905316,0.008601645,0.017363321,0.036441255,-0.009070306,-0.012436665,-0.01750049,-0.0074185617,-0.014768539,-0.0063326396,0.01343114,0.017683381,0.007921515,-0.02128407,-0.019489441,-0.0074414234,-0.032989167,0.010973527,-0.012276634,-0.0035435348,0.01599163,-0.0032892006,-0.016746059,-0.00015369011,0.04329971,0.020643948,0.036166918,0.015808737,-0.0071156467,-0.00596114,0.02578779,-0.0082244305,0.021809885,-0.0075500156,-0.038133007,0.011487911,0.011196427,0.04243097,0.015637277,0.026450774,0.017546212,-0.022312839,0.030840185,-0.007995815,-0.007995815,0.004635172,-0.0026419337,-0.0065612546,-0.016471721,-0.038270175,-0.028119663,-0.01810632,0.010173374,-0.045128632,-0.016014492,0.015031446,-0.033926487,-0.0021389804,-0.0047151875,-0.017340459,-0.046568908,-0.012116603,0.010973527]},{"id":"guide-roles-3","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Edit a role\nUse role.edit() to update a role. Pass any of name, permissions, color, hoist, mentionable, unicode_emoji, position, hoist_position. Permissions accept PermissionResolvable.\n\n```javascript\nconst role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId);\nawait role.edit({\n name: 'Senior Mod',\n permissions: ['BanMembers', 'KickMembers', 'ManageMessages', 'ManageRoles'],\n color: 0x57f287,\n});\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[0.0007415542,0.03679697,-0.0033291955,0.016662993,-0.01294246,0.014473776,-0.013192008,0.030467527,0.019941144,0.035118192,0.045780692,-0.03305375,0.027631756,0.007151815,0.012795,-0.014383032,-0.027041914,0.02577149,-0.00739002,0.073185585,0.026270585,0.0058048237,0.008257766,0.06833074,-0.033620905,0.040086463,0.016345385,0.048412286,-0.015800918,-0.041424945,0.049909573,-0.019079069,-0.01433766,-0.013849907,-0.030263351,-0.026701622,0.024864042,0.011530246,0.007038384,0.0063464562,0.005342593,-0.04026795,0.014065426,-0.019725624,-0.016175238,0.06284069,-0.00055368437,0.043081038,0.015823605,0.016073152,0.0117060635,0.011394129,0.02096202,0.060617447,0.019294588,0.01978234,-0.03353016,-0.022856316,-0.026542818,0.046597395,-0.02147246,-0.07073548,0.010123704,-0.0109914495,-0.016957913,0.016821796,-0.093920745,-0.0018999667,0.011184282,0.029083671,0.026157154,-0.027041914,0.015868977,-0.0017000448,-0.0010237134,-0.042332392,0.03305375,0.023412127,-0.0014590044,-0.018296396,-0.025567314,0.01978234,-0.07173367,-0.032441225,0.008887307,0.016640306,-0.026996542,-0.06411111,0.011053836,-0.06837612,-0.027019229,-0.030694388,-0.071098454,-0.0024600315,0.01058877,-0.011144581,-0.01827371,-0.00006158941,-0.021971555,0.06647048,0.05272266,0.004066496,-0.064428724,-0.0067888363,-0.0099649,0.024047341,-0.021393059,0.056715425,-0.00091524515,-0.012137101,-0.1015433,0.023207951,0.016935226,0.005813331,-0.02253871,0.0060912366,0.022765571,-0.025249707,0.024478378,-0.06755941,-0.06520005,-0.045689948,0.025272394,-0.061207287,-0.033189867,-0.021869468,-0.055762608,-0.038611863,-0.02926516,0.014723324,-0.01577823,-0.014360346,0.043398645,-0.031420346,-0.03548117,0.0025124934,-0.006709435,-0.04058556,-0.00037503074,-0.016901197,0.013747819,0.0028485323,-0.026111782,0.02742758,-0.050000317,0.019226529,-0.031011995,-0.0057622874,-0.06860298,0.033666275,-0.043806996,0.0066527193,-0.032894947,-0.0068852524,-0.027949361,-0.034210745,-0.010004601,-0.004571263,-0.06206936,-0.022345878,-0.009976244,-0.026520133,-0.032123618,-0.051134627,0.006794508,-0.08157947,-0.0012881492,0.02445569,-0.027926676,0.034528352,0.012250531,-0.019646224,0.012193817,-0.0015979571,0.0016319863,-0.015800918,0.017128058,-0.008376868,-0.020689787,0.03666085,-0.013169322,-0.0002679804,-0.04727798,0.018080877,-0.028062792,-0.0022898852,-0.039950345,-0.0068625663,-0.035390425,-0.0011499053,0.0066413763,0.028289653,0.017661184,-0.006828537,0.010055645,0.015018244,0.029718883,0.010118032,0.0093637165,-0.045326967,0.008762533,0.0060118353,0.04453295,-0.026452074,-0.039541993,-0.020939335,-0.034687154,-0.022039615,-0.024001967,-0.0066357045,0.028629947,-0.0184552,-0.016424786,0.013203351,-0.051860586,0.024001967,-0.028652633,-0.037590984,-0.037159946,0.0039700796,-0.05181521,-0.02801742,0.026202526,-0.016186582,0.0013469914,0.046279788,0.01896564,0.0319875,0.018852208,0.03672891,0.014768696,-0.0013165068,-0.017547753,-0.0145418355,0.015608085,0.0024515244,0.009284315,0.026610877,0.0073956912,-0.01095742,-0.013645731,-0.025136277,0.0067604785,-0.012987833,0.019725624,-0.01489347,0.054356065,-0.005135582,0.027495638,0.03434686,0.03371165,0.049546596,0.030853191,-0.01948742,0.0031335272,-0.011966955,0.0026230884,0.0519967,-0.007146144,0.008507314,-0.0014646759,-0.0024756284,0.0079061305,-0.010821303,-0.052314308,0.0029945744,0.007548823,-0.015449282,-0.00474141,-0.03736412,-0.020825904,0.019101756,-0.0042933575,-0.0061366092,-0.02117754,0.03305375,0.03784053,0.030671703,-0.017706556,-0.014235572,0.006845552,-0.001103115,-0.00970968,0.0014029979,-0.01055474,0.042264335,-0.029106356,-0.01522242,0.027563697,-0.0021991406,0.0028059958,-0.0030938264,0.008586715,-0.010815632,0.021982899,0.0017794465,0.047777075,0.0063918284,0.03647936,0.01187621,-0.012624853,0.056579307,-0.010520712,-0.016027778,0.03679697,-0.00897238,-0.035549227,-0.033144496,0.012171131,-0.059074786,0.02878875,0.06769553,0.018874893,-0.005271699,-0.024478378,-0.014065426,0.0019155635,0.025340453,0.019430704,0.058212712,0.018772805,-0.01955548,-0.004324551,-0.019986516,-0.0012378142,-0.045054734,-0.027518325,-0.007231217,0.03518625,0.0013172157,0.05081702,-0.022481995,-0.007934488,0.080172926,0.041084655,0.03731875,-0.021404402,0.097369045,0.0567608,-0.029877687,-0.011258012,-0.01430363,-0.005144089,-0.011223983,-0.04959197,-0.02445569,0.0013406109,0.010492354,-0.016311357,0.027813245,0.0005419868,0.03999572,-0.011603976,-0.016334042,-0.032668084,-0.014065426,0.022822287,0.014984216,0.020190692,0.018670717,-0.04668814,-0.017491037,-0.02481867,0.0059437766,0.03820351,0.026905797,0.00013664873,0.013157979,0.021359028,0.0066300333,-0.02357093,0.029242473,-0.046120983,-0.0032497938,-0.025453882,-0.002715251,-0.0027620413,-0.0110651795,-0.044396836,-0.004905884,0.014859442,0.019158471,-0.00012255849,-0.042400453,-0.021188883,-0.028130852,-0.014711982,-0.0101520615,-0.007202859,-0.042536568,0.0031930786,0.03275883,0.012613511,0.032327794,-0.014031396,0.0042848503,0.0398596,0.06665197,0.013781848,-0.015562713,0.018523257,0.025136277,0.014859442,0.017434321,-0.010208776,-0.0065619745,-0.016152553,0.023797793,-0.0029024119,-0.027495638,0.018443856,0.012307247,0.03754561,0.015029588,0.04918362,-0.07010026,0.055308882,-0.04453295,-0.0006869656,0.009012081,-0.045032047,-0.026497446,0.030104548,-0.029855,0.05118,-0.021880811,-0.03257734,-0.034369547,0.011099209,-0.022481995,-0.057532128,0.048820637,0.03434686,-0.0038084409,0.02416077,-0.008013889,0.0017525066,-0.0291971,0.003731875,-0.014133484,-0.02220976,0.002417495,-0.0021169032,0.013872593,0.027767872,0.007945831,0.029310532,-0.0674233,0.0068625663,-0.009346702,-0.004647829,0.018999668,0.013123949,0.037772473,-0.015245106,-0.013214694,-0.002009144,0.016447473,-0.031533778,-0.014904814,-0.012795,0.02742758,0.037885904,0.04959197,-0.024659866,-0.00004125161,-0.05490053,-0.004551413,-0.041379575,-0.045780692,0.03103468,0.044056542,0.034823272,-0.01801282,0.024795985,-0.040313326,-0.009987586,-0.043330584,0.0033490458,0.058893297,-0.003782919,0.025204334,0.016606277,-0.034868643,0.051134627,0.043330584,0.019328617,-0.027813245,0.016254641,0.01801282,-0.012012327,0.033938512,0.0040438096,-0.009352374,0.013725133,-0.034959387,0.027314149,-0.049138244,-0.010753245,0.0015454954,-0.007843743,-0.051134627,-0.03561729,0.03180601,-0.016889853,0.011377114,0.03532237,-0.021676635,0.020417552,0.05680617,-0.045145478,-0.021529175,0.014201542,-0.048548404,0.007957174,-0.03650205,-0.041016597,0.019714281,-0.0024756284,-0.009664308,-0.0060061635,0.039587367,0.058121968,0.00086561916,-0.007866429,0.008541343,0.010265492,0.0039332146,0.016265985,-0.0029350233,0.025612686,-0.05372085,0.0060628788,0.0034171045,-0.020383524,-0.01187621,0.00327248,0.016697021,0.023083178,-0.037727103,-0.0042933575,0.015585399,-0.0018900415,0.009726696,-0.027813245,-0.015800918,-0.023434814,0.026021037,0.016039122,0.025431197,0.037885904,-0.032804202,-0.022402594,0.019373989,-0.018024161,-0.005365279,-0.020485612,-0.01786536,0.009721024,-0.016220612,0.03867992,-0.004610964,0.005121403,-0.02559,-0.05526351,-0.038725294,0.037296064,0.013169322,-0.011331742,-0.038407687,-0.0045429054,0.014462434,0.028471144,-0.002457196,0.03062633,0.025022846,-0.021574548,0.029582765,0.007089428,-0.0034029256,-0.008348511,-0.089791864,0.020973364,-0.03405194,-0.043920424,-0.02676968,-0.029106356,0.0035050132,-0.035208937,0.019646224,0.013464242,0.021608576,0.01838714,-0.0056119915,-0.016594933,-0.026043724,-0.01830774,0.017559096,-0.022028271,0.004534398,-0.0014412807,-0.011530246,-0.051043883,0.015540026,-0.023548245,-0.011002793,0.037817847,-0.016458817,0.0006309591,0.0055836337,0.02617984,-0.009420432,-0.02754101,-0.0067037633,-0.012250531,-0.033915825,0.02742758,0.0034624767,0.022754228,0.010157732,-0.0008627834,0.012500079,0.026928484,-0.014564522,-0.008132992,0.010163404,0.002627342,0.0037120245,-0.0126929125,-0.03505013,-0.0007784192,-0.050272554,0.010912048,-0.0044720112,-0.009823112,-0.065699145,0.028811436,-0.0018063863,0.02096202,-0.028108165,0.039473936,-0.016697021,0.005016479,-0.021245599,0.008473285,0.004701709,0.02301512,-0.008711489,0.0002988194,-0.012466051,-0.055308882,-0.043693565,-0.026157154,-0.02304915,0.02253871,-0.017230146,-0.012999175,0.035503857,-0.0020601877,0.016776422,-0.03185138,-0.019861743,-0.012307247,0.024705239,0.03827157,-0.02481867,-0.042740744,-0.00977774,0.0033178523,0.022640798,-0.016844481,0.011388457,0.0076906118,0.0060855653,0.04069899,0.016334042,0.0031874068,-0.022255134,-0.0022884675,0.018375797,0.028153537,-0.024546437,-0.013520957,-0.016061809,0.031057367,-0.018194309,0.01478004,-0.0017085522,0.02978694,-0.060390584,-0.010452653,0.018908923,-0.002292721,-0.014836756,-0.029401276,0.039360505,0.016424786,-0.0056942287,0.024410319,-0.057123777,0.018058192,0.035798777,0.013827221,-0.0060288496,-0.022640798,-0.022470651,-0.0022913031,0.050317924,0.021143511,-0.024319574,-0.022413936,0.010180419,-0.022810943,-0.0040863464,0.008927008,-0.014984216,-0.025272394,-0.009902514,0.04673351,0.01150756,-0.009993258,0.03334867,-0.004554249,-0.016265985,-0.04378431,0.018738776,-0.005118567,0.04158375,-0.005617663,-0.01489347,-0.03375702,0.012137101,0.01912444,0.017740585,-0.0004551413,0.008047919,-0.0063294414,0.032146305,0.0005873591,0.018001476,-0.0026457745,0.013759162,-0.026134469,-0.018477885,-0.044555638,-0.018103564,0.0011470695,0.0081783645,-0.032713458,0.02956008,-0.022799602,0.0060798936,-0.00963028,-0.03073976,0.0045684273,-0.03779516,-0.022516023,0.010237134,-0.023412127,0.06892058,-0.0013817295,0.045644574,0.008422241,0.041311517,-0.046347845,0.00059692987,0.016572248,0.0104469815,0.011087866,0.0038651563,-0.00018946496,-0.0062500397,0.0017780286,0.0030399468,0.016016437,0.0012753882,0.00853,0.0041600764,0.019317273,-0.047187235,-0.012091729,0.0056261704,-0.0010754663,-0.05326713,-0.0039247074,0.012749627,0.021427087,-0.040676303,0.02088262,-0.008467613,-0.045780692,0.002526672,-0.013589016,0.01963488,-0.03375702,-0.009828784,-0.0061649666,-0.045395028,-0.0032100931,0.060209095,-0.008257766,0.017275518,-0.011740093,0.031737953,0.020202035,0.04437415,-0.01563077,0.014643922,-0.037590984,0.026996542,0.014972872,0.030240664,-0.007361662,-0.011774123,-0.008110306,-0.0064372006,-0.019351304,-0.0057367655,-0.035231624,-0.03702383,-0.021858124,-0.012545452,0.0070610703,0.011683377,-0.018228337,0.048140053,0.0048293183,-0.015267792,0.012295905,-0.0063407845,-0.021540519,-0.03459641,0.036887713,0.011371443,-0.0037885904,0.023979282,-0.015290478,0.013668418,-0.000100847115,-0.018466543,-0.019861743,0.01356633,-0.024319574,0.01955548,0.014723324,-0.005617663,0.011127567,0.017547753,0.029083671,0.01404274,0.031783324,-0.0054333378,-0.05353936,-0.006596004,0.04845766,-0.03529968,-0.02588492,0.0503633,-0.005589305,-0.0034000897,0.012216503,0.008195379,-0.005504232,-0.028403085,-0.006647048,-0.019011011,-0.007225545,-0.0021877976,0.019805027,-0.007004355,0.030013803,-0.049319733,-0.013838564,-0.03021798,0.009358046,-0.0043358942,0.0015128839,-0.028471144,0.010288178,0.021461116,0.022016928,0.033076435,-0.0037488895,-0.020939335,0.00277622,-0.012976489,0.0058048237,0.0362525,0.023321383,0.0109914495,-0.02518165,0.016163897,-0.0066413763,-0.0061309375,0.0011357263,0.019237872,-0.005297221,-0.067877024,0.002331004,-0.00235369,-0.027268777,-0.0026358494,-0.0099535575,0.012568139,-0.015449282,-0.011564275,0.010758916,0.0058473605,0.046506647,-0.0016943733,-0.019657567,-0.052223563,-0.012000984,0.020893963,0.026520133,0.04206016,-0.011399801,-0.0056091556,0.020428896,-0.0023111536,0.008785219,0.00882492,0.030013803,-0.02298109,0.0049626,0.013986024,0.019249216,0.017298205,-0.02194887,0.024478378,0.020689787,-0.010265492,-0.038884096,0.01463258,0.050000317,-0.035934895,0.0044833543,0.0031193483,0.020179348,-0.02235722,0.019011011,0.025680745,0.044805188,0.03548117,0.004140226,0.020757847,0.013986024,0.021120824,-0.017162088,0.007577181,-0.027336836,-0.0022416771,0.020304123,-0.010855332,0.03210093,-0.0016589261,-0.009131184,0.0030314394,0.027790558,-0.007957174,-0.0016532546,-0.05662468,0.00041154132,0.025136277,-0.03416537,-0.011513231,-0.038747977,0.00015446091,0.020190692,-0.009392074,0.03126154,0.036048323,0.023207951,0.0369104,-0.022016928,0.0060288496,0.058076594,-0.010265492,0.025748802,-0.0028896509,-0.0019581001,0.040063776,-0.009755054,0.012103071,-0.07127994,-0.0041685835,-0.006743464,-0.0070724133,0.021132167,0.038997527,0.022879003,0.0060798936,-0.05485516,0.017706556,-0.010651157,0.011898897,-0.015857633,0.019566821,-0.004897377,-0.008853278,0.039791543,-0.014201542,0.016152553,-0.014802726,0.0025238364,-0.00018928773,0.008995066,0.007838071,0.014020053,0.0071234573,-0.0037602326,0.015494654,-0.017320892,-0.024364946,-0.041606437,-0.003731875,-0.0021055602,-0.006533617,-0.0025933129,-0.026089096,-0.002468539,-0.002492643,-0.009210585,-0.031238856,0.031737953,-0.039723486,0.0069136103,-0.0010527801,0.011087866,-0.00966998,-0.023843165,0.04265,-0.01525645,0.02867532,0.002590477,-0.013838564,0.030376783,0.006386157,0.046347845,-0.03768173,-0.030013803,0.00004333413,0.013021862,-0.0032753157,0.052268937,0.017513724,-0.0030512898,-0.010526383,-0.011161596,-0.0024089876,-0.04394311,0.07155218,-0.0008266273,0.006448544,0.007287932,0.027382208,-0.006856895,-0.009766396,0.018024161,-0.0385438,-0.024705239,-0.0039757513,-0.02357093,0.026406702,-0.004576935,0.039042898,0.004758424,0.020621728,-0.0028995762,-0.0021495146,0.0064428723,-0.017763272,0.007208531,-0.023775106,0.019430704,0.0141902,0.016526874,0.016799109,0.004764096,-0.010775931,0.051452234,-0.040472127,0.000458686,0.009182228,-0.015471968,0.009346702,0.027677128,-0.008303138,0.038339626,-0.022436623,-0.016039122,0.04056287,-0.007106443,-0.012704255,0.00020789748,0.013577673,0.03459641,0.0016107181,-0.024478378,-0.025794176,0.02801742,-0.0028698004,-0.0004487608,0.042536568,-0.017706556,0.030013803,0.02040621,0.011524575,0.013804534,0.021120824,-0.027268777,0.007855087,-0.009057454,-0.010401609,0.00019690886,-0.016027778,-0.031420346,0.020338152,-0.0018021327,0.007327633,0.012477393,-0.029764256,0.024001967,0.0069873403,-0.0110651795,-0.0039870944,-0.031238856,0.019169813,-0.011189953,-0.04147032,-0.022413936,0.007770013,-0.03548117,0.0063521275,0.04600755,0.021756038,-0.020746503,-0.012148445,-0.006856895,-0.029287845,0.026678937,-0.017695213,0.007509122,0.020599043,-0.03185138,-0.00035323075,0.043965798,0.069918774,0.010946077,-0.013464242,-0.005464531,0.056125585,0.039315134,0.031374972,-0.015710173,-0.0015171376,0.0012335605,-0.0075431517,-0.00478111,0.00027382915,0.02683774,-0.007038384,-0.011399801,-0.04786782,0.01463258,0.03750024,0.010237134,0.0007415542,0.0062783975,-0.016526874,0.004165748,0.023775106,-0.01522242,0.021937527,-0.047550213,0.021858124,0.003930379,-0.004894541,0.026905797,0.025068218,-0.016708365,-0.040494815,0.020281436,0.03246391,0.023979282,0.034573723,-0.025340453,0.013691104,0.005864375,-0.009505506,-0.0017709392,0.002282796,-0.00411754,-0.008700146,-0.030558271,-0.021892155,-0.01341887,-0.03795396,0.04732335,0.042786118,-0.013135293,-0.00761121,0.012295905,-0.0058530318,0.001326432,-0.021279627,0.0035135206,-0.011910239,0.055671863,-0.03287226,0.033099122,-0.0063634706,0.0083995545,0.0045570843,0.007140472,0.03677428,0.022436623,-0.011683377,0.015948378,0.005087374,0.020043232,0.032668084,0.013838564,0.024274202,-0.0063975,0.0143716885,0.01584629,0.0088192485,-0.013917966,0.0447825,0.029310532,-0.030717075,0.058212712,0.028153537,-0.035503857,0.026384016,0.009250286,0.015971065,-0.024977474,-0.021495147,0.037636355,0.021347687,0.007996875,-0.008660446,-0.013021862,0.00999893,0.001909892,-0.0055694547,-0.011377114,0.018818177,0.0029945744,0.04423803,0.010889362,0.025907606,0.001238523,0.024024654,0.03323524,0.013294096,-0.03602564,0.006647048,-0.00024954788,-0.02547657,-0.043988485,0.01569883,-0.02713266,0.008564029,-0.011048165,-0.00006123493,0.052631915,0.010339222,0.03434686,0.016753737,-0.0022360056,-0.0011421068,0.0011243833,0.029401276,0.012965146,-0.0060969084,0.034029257,0.013339468,-0.008184036,-0.023775106,-0.004188434,0.01926056,-0.024795985,0.0024330916,0.0012675897,-0.04950122,0.0029548737,0.032736145,-0.0051270747,0.0009925199,-0.017184773,0.010707872,0.020973364,0.008711489,0.013498271,-0.012182473,-0.01048101,-0.017116716,-0.05022718,0.014938843,0.0063180984,-0.0006986631,-0.01816028,0.01356633,-0.019147128,0.010543398,-0.01445109,0.0008620745,-0.0069476394,0.0016319863,-0.0050023007,0.022164388,-0.010055645,0.019056384,0.020746503,0.0019198172,0.011649349,-0.013770505,0.006930625,0.043693565,-0.03820351,-0.008904322,0.02713266,-0.008461941,0.0012782239,-0.029446648,0.022844974,-0.016889853,0.010055645,-0.0029974103,0.00053206156,0.013589016,-0.023480186,0.01525645,0.024954787,-0.00010953166,-0.0010712126,-0.016991941,-0.016867168,-0.009913856,0.005691393,0.027291462,-0.012511423,-0.007299275,-0.012205159,-0.02547657,-0.011439501,-0.0041742553,-0.027949361,-0.031057367,-0.0087455185,0.002467121,0.010395938,0.012670226,-0.0050646877,-0.020462925,0.005543933,0.055762608,0.042513885,0.0016334043,0.00384247,0.02429689,0.009755054,0.0092276,0.013577673,0.0019524285,-0.028856808,0.0008812159,-0.028221596,-0.0020360837,0.025726117,-0.021892155,0.013940652,0.009392074,-0.0056119915,0.004925735,-0.018353112,-0.006386157,-0.0070610703,-0.02150649,0.0039388863,-0.021540519,-0.0107929455,-0.03334867,-0.0059551196,-0.043262526,-0.002420331,-0.02849383,0.034210745,-0.026542818,0.02051964,0.0027095794,-0.03879335,0.004968271,0.006408843,0.03824888,0.00053206156,-0.0016234791,0.008779548,-0.029809628,-0.0076168817,0.015415252,-0.008138663,0.0019623537,0.03534505,0.022153046,-0.007100771,0.0326454,-0.027654441,0.07191516,-0.009289986,-0.0015894498,0.02011129,0.024932101,-0.017581781,-0.00985147,0.01522242,-0.01720746,-0.0032781516,0.0035900865,0.0030172607,0.01356633,-0.016833138,0.01702597,-0.011116223,-0.026678937,-0.015324508,0.024841357,0.007554495,-0.0028442785,0.016991941,-0.04301298,0.021926183,-0.0021920511,0.010310864,0.03169258,-0.009681324,-0.025022846,-0.025862234,0.022822287,0.018069534,0.014972872,-0.034936704,-0.014235572,-0.007639568,-0.04714186,-0.045871437,-0.005507068,0.007157487,-0.005365279,0.03654742,-0.0017128058,-0.007441064,-0.014677952,0.005464531,0.020156663,-0.0063748136,-0.011019807,-0.04727798,0.023661675,-0.0148140695,0.009930871,-0.013214694,-0.027382208,-0.041379575,0.02724609,0.012749627,0.00014223166,-0.007100771,0.04353476,-0.016118525,-0.018784149,-0.015789574,0.028629947,0.015052274,0.016674334,-0.0025975665,0.008592387,-0.012103071,-0.010583098,-0.015914349,-0.036819655,0.017003285,0.00481514,0.001847505,-0.012057699,0.016969256,-0.030785132,0.0145418355,-0.005813331,0.004477683,0.0026117454,0.00039346327,0.016833138,0.004077839,0.012965146,-0.0004065787,0.011740093,-0.0033575532,0.009550878,-0.025045533,0.035276994,-0.015812261,0.03080782,-0.008734176,-0.003298002,-0.013906622,0.00016642433,-0.0011747183,0.01525645,0.01150756,0.0124206785,-0.00875119,0.032486595,0.0020219048,-0.048140053,-0.006533617,0.019181157,-0.028561888,-0.0060515357,-0.016379414,-0.04063093,-0.007860758,0.011898897,-0.0141902,-0.000023350804,0.0014689295,-0.025567314,0.010475339,-0.009358046,0.019895772,-0.025090905,-0.027178032,-0.00952252]},{"id":"guide-roles-4","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Delete a role\nUse role.delete() to remove a role. The role is removed from guild.roles cache.\n\n```javascript\nconst role = guild.roles.get(roleId) ?? await guild.fetchRole(roleId);\nawait role.delete();\nawait message.reply('Role deleted.');\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.0011599298,0.03632482,-0.011486787,-0.0121297045,-0.02280213,0.011583225,-0.037267767,0.039818004,0.055162296,0.02318788,0.05807685,-0.04491848,0.027023952,-0.008390069,0.039968017,0.012611892,-0.05323354,0.00804718,0.0006258397,0.07809301,0.04676151,0.034653235,-0.002869018,0.046247177,-0.038682185,0.010249171,0.046804372,0.061805774,-0.02209492,-0.048433095,0.042153936,-0.02111983,0.010109873,-0.006889929,0.0042861146,-0.048475955,0.043718368,0.02361649,-0.0082936315,0.028374078,0.0076828604,-0.036196236,0.010227741,-0.031160053,-0.005839831,0.0807504,0.008807966,0.02548095,0.010688499,-0.0074846274,-0.018698175,0.002116269,0.006338092,0.06549183,-0.020144738,0.000014283561,-0.021516295,0.007506058,-0.015494304,0.041318145,-0.014765665,-0.050704736,0.016137222,0.023059295,0.0039164373,0.02063764,-0.06339163,0.011379634,-0.008802608,0.03566047,-0.0036753432,-0.04457559,-0.020059016,-0.0122582875,0.0046156095,-0.04301116,0.03632482,0.023980811,-0.010495623,-0.055548046,0.00040450206,0.022544963,-0.043546923,-0.013597699,0.012515455,-0.026423896,-0.048733123,-0.0063488074,0.01802311,-0.009231219,-0.016030068,-0.033238817,-0.043225463,-0.013854865,-0.01384415,-0.049590345,-0.017605215,0.01886962,-0.0003703471,0.049118873,0.08580802,-0.019062495,-0.07222103,0.012761906,-0.02248067,0.03300308,-0.05503371,0.05649099,-0.032081567,-0.0023720965,-0.07599281,0.020048302,0.023059295,0.012569031,-0.041361004,0.064506024,0.030924316,-0.032981653,0.023423616,-0.03321739,-0.0494189,-0.025052339,0.022287795,-0.071578115,-0.044018395,-0.0072649643,-0.017894529,-0.051476236,-0.030131385,0.012494024,0.0010407222,-0.0009054417,0.017648077,-0.04266827,-0.010200952,-0.0032601259,-0.012440448,-0.06536325,0.015247853,-0.0017198034,0.015022832,0.01366199,-0.015430013,0.060519937,-0.04980465,0.018751752,-0.006579186,-0.015751472,-0.048561677,0.0053522857,-0.02316645,-0.018516015,0.0030752872,-0.013319101,-0.059576992,-0.029359885,0.011315342,0.013179802,-0.036796294,-0.040160894,-0.02580241,-0.044404145,0.0076775025,-0.045518536,0.0025261287,-0.0553766,0.010324178,0.01734805,-0.010249171,0.035681903,-0.0002503024,0.015944347,0.0006409081,-0.025695257,-0.036924876,0.034674667,-0.004012875,-0.01272976,0.01870889,0.00020158132,-0.0037503503,-0.020262606,0.0020613533,0.016876576,-0.035253294,0.033774585,-0.011797531,-0.024859464,-0.049547486,0.049718928,0.016855145,0.02193419,0.00159122,0.00231852,0.02880269,0.014637081,0.046932954,0.015472873,-0.02073408,-0.018441008,0.016158652,0.017840952,0.057776824,-0.023787936,-0.005721963,-0.03431035,-0.03707489,-0.020498343,-0.024409423,-0.015772901,0.029059857,-0.040353768,-0.044789895,-0.026595341,-0.036517695,0.014154893,-0.054305073,0.0377821,-0.00042961602,-0.00927408,-0.04005374,-0.015783617,0.032253012,-0.028974134,0.027388273,-0.0031636884,0.007929312,0.010908161,-0.005550518,0.0209591,0.0012248912,0.0010273281,0.004071809,-0.026745355,0.026809646,0.014283476,-0.01441206,0.04521851,0.012451163,-0.042111076,-0.033453126,-0.05563377,0.0015376436,-0.030152816,0.0276883,-0.0134584,0.053662155,0.009815202,0.030967178,0.039775144,0.02543809,0.04418984,0.028995564,-0.029317023,-0.009097278,-0.005025469,0.017465917,0.0048433095,-0.0045915004,0.009745553,-0.0014371878,-0.014840672,0.0062416545,-0.00086391997,-0.035789058,0.03488897,-0.0006958239,-0.030838594,-0.023209311,-0.006472033,-0.020809086,-0.017926674,0.032703053,-0.044489868,-0.014058456,0.053276405,0.040289477,0.015537165,-0.004942426,-0.048947427,0.0045084567,0.0061612898,0.013833434,-0.011861822,-0.0053388914,0.036003362,-0.021066252,-0.0065202517,-0.0055773067,0.034460362,-0.008743674,0.0049531413,-0.0038628608,-0.019373238,0.0069595785,0.0012657432,0.04348263,0.0023694178,-0.0070506586,0.01889105,-0.0033003082,0.028974134,-0.019008918,-0.038789336,-0.0192768,-0.010500981,-0.047190122,-0.039753713,0.0011451963,-0.03767495,0.014872817,0.038467877,-0.0086150905,0.027966898,-0.002852945,-0.028974134,-0.026981091,0.022009198,0.038789336,0.03853217,0.06094855,-0.020723363,-0.00012364436,-0.01516213,-0.0185053,-0.032360166,-0.015719324,-0.028545523,0.018666029,0.046675786,0.059791297,-0.00075073977,-0.015365721,0.05730535,0.02507377,0.043589786,-0.0117761,0.05246204,0.047790177,-0.03431035,0.012204711,0.029874219,-0.0085507985,-0.00897941,-0.0217306,-0.0003539393,-0.009022271,-0.00029517265,-0.012172566,0.013940588,-0.014444206,0.033796012,0.007554277,-0.052804932,-0.01457279,0.012097558,0.03591764,0.0107635055,0.0494189,0.02991708,-0.05126193,-0.026102437,-0.020037586,0.006697054,0.037996404,0.03626053,-0.02916701,-0.019362522,0.015140699,-0.017198035,-0.016169367,0.0029359884,-0.068149224,-0.012376156,-0.03135293,-0.019758988,-0.015483589,0.006611332,0.016597979,-0.010431332,0.00031358955,-0.0017251611,-0.006836353,-0.033088803,0.0047843754,-0.027838314,-0.04271113,0.01818384,-0.04069666,-0.020455481,0.022309227,0.021837754,0.025138061,0.027516855,0.0130405035,-0.012997642,0.030281398,0.059148382,-0.005930911,-0.03261733,0.05040471,0.02730255,-0.0062577273,0.0077953706,-0.021762747,0.005716605,-0.01566575,0.0074364087,-0.021966336,-0.04676151,0.024495145,0.061805774,0.029788496,0.00970805,0.01893391,-0.08195051,0.049247455,-0.012086843,-0.0039003643,-0.020894809,-0.03784639,-0.007538204,0.019201793,-0.033624567,0.050747596,-0.0020332255,0.0007567671,0.018001681,0.004382552,-0.035810485,-0.086322345,0.027431132,0.010795651,-0.035231862,-0.003736956,0.03671057,0.013608414,-0.045389954,-0.026102437,-0.00925265,-0.017969536,-0.036860585,-0.031095762,0.019180363,0.041232422,-0.0002821134,0.023016436,-0.051476236,0.028524091,0.0024283517,-0.015580026,-0.006354165,0.019909002,0.020862663,-0.017530208,-0.061805774,0.00916157,0.0328745,-0.030581428,-0.007784656,-0.007522131,0.00027407694,0.02203063,0.05057615,-0.037610654,0.014551359,0.009804487,0.009831275,-0.036796294,-0.016630124,0.011958259,0.025738118,0.039175086,-0.020648357,0.011679662,-0.019780418,-0.02545952,-0.025138061,0.008331135,0.040289477,0.030131385,0.007891809,-0.028866982,-0.062062938,0.0037208833,0.02207349,0.024580866,-0.030860025,-0.0034797892,0.03823214,-0.010918877,0.024495145,0.0250952,-0.00720603,0.0018791934,-0.015633604,0.04526137,-0.017540924,0.018355286,-0.0042753993,0.0169623,-0.033495985,-0.010227741,0.025330937,-0.05271921,-0.0071256654,-0.006557755,-0.02132342,0.025116632,0.037910685,-0.019169647,-0.021966336,-0.0073506865,-0.039025072,0.015387151,-0.014347768,-0.060862828,0.0037637444,-0.015269283,-0.025138061,-0.004323618,0.041511018,0.045389954,-0.00916157,-0.013211948,0.033153094,-0.0018376716,0.007195315,0.010650994,0.032274444,0.055505183,-0.033495985,0.02700252,0.041789617,-0.009616969,-0.020144738,-0.0013052558,0.02809548,0.02841694,-0.033410262,0.00406913,0.02116269,0.012151135,-0.01059206,-0.032810207,-0.023873659,-0.026638202,0.016587263,0.034203194,0.03141722,0.011872537,-0.029059857,-0.0016059536,0.0014599578,-0.024280839,-0.035424735,-0.042732563,-0.020530488,0.026809646,-0.002481928,0.009466955,-0.021473434,-0.0009549999,-0.023145018,-0.05087618,-0.0538336,0.00888833,0.033688862,-0.02248067,-0.014647797,0.023745075,-0.012644038,-0.0024698735,0.0075757075,0.034738958,0.021827038,-0.024473714,0.022609254,0.0012898525,-0.019598259,-0.015172846,-0.03973228,0.006889929,-0.0058987653,-0.055119433,-0.007088162,-0.023059295,-0.011851107,-0.036346253,-0.003710168,0.027731162,-0.0043879095,0.010474192,-0.010795651,-0.019716127,-0.008749031,0.031267207,0.024838034,-0.025138061,-0.009129424,-0.0025488988,0.020069731,-0.070035115,0.020326898,-0.0017854345,-0.021151975,0.034653235,-0.0235522,0.029788496,-0.005582664,0.0284598,-0.015022832,-0.0070345853,-0.026359605,-0.01402631,-0.0670777,0.017465917,-0.010779578,-0.008154333,0.023337893,0.033088803,0.002725701,0.033624567,-0.037439212,0.0025622929,-0.0002432705,-0.045047063,0.008406142,-0.026081007,-0.028974134,0.0023720965,-0.02282356,-0.0039994805,-0.009241935,0.00879725,-0.06026277,-0.011840392,0.01120819,0.017626647,-0.03480325,0.020219745,-0.012794052,0.0036056938,-0.02503091,0.005738036,0.0028449085,0.00044367983,-0.01036704,-0.011561794,-0.018558877,-0.025673825,-0.012644038,-0.023080727,-0.025588105,0.021012677,-0.0201876,-0.009081205,0.053362127,0.018258847,0.030409982,-0.020605495,-0.005973772,-0.016233658,0.026445327,0.017551638,-0.02209492,-0.004460238,0.016062215,-0.0013447684,0.009504459,-0.007104235,0.0318244,0.0063488074,0.0061023557,0.027816884,0.012686899,-0.010083085,-0.026466757,-0.01384415,0.0024752312,-0.024452284,-0.027816884,-0.011497502,-0.0020452803,-0.002696234,-0.025673825,0.008459719,-0.030795733,0.022587825,-0.024152255,-0.008175763,0.0024631764,0.0031449366,-0.011786815,-0.03178154,0.019244654,0.0023587025,0.01611579,0.017690938,-0.045389954,-0.024645159,0.030988608,0.021430572,-0.008245413,0.0070399432,-0.035339013,0.0054862266,0.03338883,0.024216548,-0.027345411,-0.03101004,0.012944066,-0.04560426,-0.015847908,-0.027752591,0.022887852,-0.018280279,-0.029767066,0.028909843,-0.017326618,-0.0015965777,0.04483276,0.011336773,0.00094897253,-0.017669506,0.013576268,-0.01793739,0.020809086,-0.008936549,-0.017969536,-0.032403026,0.009059775,0.009129424,0.037053462,0.015558596,0.011004599,-0.0013280258,0.024066534,0.00023657343,0.0047575873,-0.0073506865,0.03786782,-0.0039459043,-0.061505742,-0.064291716,-0.014551359,0.010833154,0.018290995,0.019137502,0.014251331,-0.0120654125,0.004355764,-0.011926114,-0.016083645,-0.0061827204,-0.065749,-0.025716687,0.012333294,-0.031952985,0.04517565,0.021966336,-0.00797753,0.025545243,0.030988608,-0.018912481,0.0032440529,-0.009343729,0.024002241,0.016490826,-0.0033003082,0.015129984,0.00008333647,-0.00993307,0.011133183,0.013887011,-0.015494304,0.016544402,0.0132976705,0.006723842,0.002507377,-0.010008077,-0.0012610552,-0.011272482,-0.032338735,-0.0012998981,-0.0053978255,0.0092633655,-0.011476072,-0.000029508894,0.0060648522,-0.042882577,0.008936549,0.013222664,0.022373518,-0.041296713,-0.014422775,-0.003648555,-0.047575872,0.012933351,0.013919157,-0.018033827,-0.015976492,0.021677025,0.014658512,0.021516295,0.04976179,-0.005716605,0.031631526,-0.0471044,0.026638202,-0.009204431,0.03748207,-0.0058344733,-0.0032253012,-0.004824558,-0.00083847117,-0.022266366,-0.012944066,-0.028566953,-0.027023952,-0.031631526,-0.0023908482,0.005239775,0.008668667,-0.004998681,0.039796572,0.020091161,0.0015604136,0.04153245,-0.0403752,0.008459719,-0.04650434,0.036174808,0.017808806,-0.003391388,0.041403867,-0.0092687225,0.003736956,0.002191276,0.008599018,-0.04005374,-0.0032065494,-0.013736997,0.01461565,-0.0019568792,-0.009124067,0.03321739,0.004803127,0.035446167,-0.012429732,0.015419297,0.027645439,-0.0339246,0.019126786,0.025652396,-0.03338883,-0.028695537,0.059662715,0.032595903,-0.012611892,-0.022544963,0.01516213,-0.033174526,-0.05400504,0.01595506,-0.007431051,-0.009831275,-0.010902804,-0.0015778259,-0.007414978,0.025288075,0.008041822,-0.0011384991,-0.0099812895,0.020605495,-0.007784656,0.008765104,-0.054905128,0.0016193476,0.0053067454,0.0052022715,0.008395427,-0.003573548,-0.037974976,0.011111752,-0.009713407,-0.013533407,0.017358763,0.017926674,-0.0059523415,-0.021987768,-0.01832314,0.0073828325,-0.03628196,-0.03321739,0.02395938,-0.019266086,-0.04198249,-0.008068611,-0.03812499,-0.0134584,0.0054862266,-0.025138061,0.06060566,0.0019582186,-0.010029508,-0.013897726,0.020069731,0.028888412,-0.019158931,0.0033297753,-0.039432254,-0.0021859184,0.0071256654,0.049333178,-0.015194276,-0.018880334,-0.006557755,0.017380195,-0.0031208273,0.024602298,0.01441206,0.053319264,-0.041403867,0.008652594,-0.003889649,0.07517845,-0.0064291717,-0.013147657,0.037589226,0.03664628,-0.005663029,-0.0070399432,0.01795882,0.04607573,-0.014647797,0.0062630847,-0.007013155,0.009402663,-0.05687674,0.02955276,0.00055585545,0.0112831965,0.06390597,0.020101877,0.0038950066,-0.00916157,0.028888412,0.020669788,0.008754389,-0.009043702,0.008079326,0.036796294,-0.00079494034,0.01911607,0.0040771663,-0.018923195,-0.0051540527,0.02655248,-0.006788134,0.013415539,-0.027966898,-0.0034396069,-0.003726241,0.005636241,-0.02770973,-0.03398889,-0.008518653,0.026595341,0.0021725243,0.038682185,0.020905524,0.006279158,0.011861822,-0.0005990515,-0.0032788776,0.04108241,-0.020969816,0.00663812,-0.008240055,-0.0037476714,0.016330097,0.0026145298,-0.010474192,-0.055205155,-0.014540643,-0.010881374,0.032338735,0.017540924,0.0020680502,0.0047950908,0.024645159,-0.0396037,0.033110235,-0.02209492,-0.009772341,0.027216827,0.0076935757,-0.016983729,0.0036137304,0.025266645,0.008052538,-0.010838512,-0.0058184005,0.035767626,-0.02916701,-0.0018443686,0.007447124,0.022287795,0.022244934,-0.004824558,0.018280279,0.0031369,-0.040568076,-0.035746194,0.008395427,-0.026445327,-0.00916157,0.009429452,-0.014701373,0.012986927,-0.032360166,-0.022737838,-0.022437809,0.010554557,-0.0478759,0.020359045,0.005646956,-0.0023854906,-0.012986927,-0.010870658,0.02616673,-0.011315342,0.0419182,0.022052059,-0.0047656237,0.031245776,-0.008904403,0.0107635055,-0.0013708869,-0.025052339,0.004264684,-0.005571949,-0.013019073,0.04826165,0.017101597,-0.028031189,-0.0013554838,-0.011765384,-0.020648357,-0.022973575,0.01873032,0.018173127,0.019341093,-0.021880616,0.047318704,-0.013394108,-0.014862102,-0.0014197754,-0.03844645,-0.030174246,-0.0049933232,-0.02582384,-0.01011523,0.014101317,0.032145858,-0.005770182,0.04005374,0.026338173,-0.0134584,-0.027088244,-0.007940027,-0.009541962,-0.011186759,0.015569312,0.012033267,-0.017508779,0.030645719,0.0008230679,0.00000458068,0.040268045,-0.031674385,-0.02430227,0.006922075,-0.006755988,0.04573284,-0.000984467,-0.010072369,0.024859464,-0.018451722,-0.026595341,0.007790013,-0.02878126,-0.009884852,-0.017273042,0.029767066,0.006214866,-0.02584527,-0.029959941,-0.03786782,-0.0006563113,-0.0175945,-0.023102157,0.05271921,-0.00019672596,0.017583786,0.040846672,0.039539408,0.033131666,0.03398889,-0.008791893,0.006691696,-0.034588944,-0.008641878,-0.01161537,-0.036089085,-0.037910685,-0.0022086883,-0.009750911,0.008036464,0.014883533,-0.027495425,0.0034262128,0.027109675,-0.0016769423,0.014219185,-0.013876296,0.0068524256,-0.038082127,-0.017465917,-0.03171725,0.013319101,-0.030109955,-0.04457559,0.06459174,0.00825077,-0.00843293,-0.0380607,-0.0020024192,-0.004880813,0.010174165,0.009156212,-0.007972173,0.023895089,-0.03851074,0.0058344733,0.04607573,0.06257727,-0.0052826363,-0.019298231,-0.020091161,0.021055538,0.02189133,-0.00090945995,0.0009590181,-0.017701654,0.016930152,-0.01586934,-0.015772901,0.02548095,0.024345132,-0.010704571,0.023102157,-0.006563113,0.04127528,0.03326025,0.01402631,-0.010533126,0.005135301,-0.02548095,-0.0054246136,0.005180841,-0.013651275,0.056233823,-0.027131105,0.0030592142,0.017712368,-0.0048192,-0.0031636884,-0.026723925,-0.009906283,-0.02953133,0.028588384,0.051733404,0.0050951187,0.012676184,-0.031202914,0.029274162,0.012054698,-0.016072929,-0.010720644,0.013929872,0.016019354,-0.032724485,-0.049118873,-0.008925834,-0.0055344454,-0.048818845,0.061977215,0.023980811,-0.024259409,-0.019576829,0.016072929,-0.0059576994,-0.014669227,-0.0025930994,0.019898286,0.0043664793,0.0538336,-0.015590741,0.009697334,0.018901765,-0.017037306,-0.0032976293,-0.000046418954,0.031674385,0.022909282,-0.007329256,0.015515734,0.0110260295,0.00943481,-0.0045030992,0.013329816,-0.00073265773,-0.004805806,-0.003664628,0.013319101,0.010067011,-0.02661677,0.058934074,0.033838876,-0.010854585,0.06660622,0.0062684426,-0.049976096,0.007613211,0.0018939269,-0.0033110236,-0.022373518,-0.024538007,0.009043702,0.026466757,0.01234401,-0.020369759,-0.010334894,0.012472593,0.012719045,-0.010200952,0.016597979,0.010174165,0.008534726,0.027131105,0.031224344,0.0020466198,0.019973293,0.034996126,0.02002687,0.0123868715,-0.026038146,-0.0075435615,0.0044977413,-0.025138061,-0.039389394,0.027238257,0.0023921877,0.0017760587,-0.015558596,0.025266645,0.023830798,-0.001770701,0.0034288915,0.019105356,-0.018151695,-0.00082708616,-0.00675063,0.047061536,-0.006788134,0.010233099,0.039968017,0.0063434495,-0.011990406,-0.027881175,0.006397026,-0.0053147823,0.003110112,0.010383112,-0.016447965,-0.039475117,0.007972173,-0.006922075,-0.007950743,0.015194276,-0.0029842074,0.019598259,0.015279998,0.035617612,-0.01802311,-0.020541204,-0.013779858,-0.009504459,-0.040182322,0.022716407,-0.023787936,0.021109113,0.0153121445,-0.0055130147,-0.040225185,0.012204711,-0.0065523977,0.01666227,0.008968695,0.00907049,0.03071001,0.029681344,-0.0026064934,0.017744515,0.026209591,0.004157531,0.028031189,-0.001584523,0.007393548,0.027366841,-0.034867544,-0.018173127,0.0032440529,-0.020659072,0.0026587304,-0.006054137,0.02430227,-0.0020734079,-0.008507937,-0.037160613,0.0033994247,-0.0013374017,-0.0023720965,-0.010120588,0.03032426,0.010313463,0.00825077,0.018612452,-0.02016617,-0.013801289,0.008234697,0.03630339,-0.02245924,0.0058987653,-0.013490546,-0.00045673907,0.0060594943,-0.030259969,-0.024516575,-0.023487907,-0.022652116,0.003335133,0.022437809,0.018366002,-0.008861542,-0.029981371,0.015430013,0.045132786,0.05014754,0.007511416,0.0143370535,0.02248067,0.0012818162,-0.011690377,0.026381034,0.010050938,-0.002439067,-0.0035038986,-0.047447287,0.01366199,0.010945665,-0.011401065,0.006021991,0.03587478,0.022566393,-0.002677482,-0.013158372,0.0021979732,-0.034203194,-0.005448723,0.0032922716,-0.022502102,-0.047833037,-0.02286642,-0.016405104,-0.002719004,-0.013008358,-0.019341093,0.049633205,-0.02503091,0.018441008,0.011561794,-0.049118873,-0.018290995,0.0057005323,0.028652675,-0.0075007007,-0.016212229,0.02318788,-0.023037866,0.00031141302,0.010897446,-0.0354676,0.0034931833,-0.0012101576,0.010768862,-0.022159211,0.021087684,-0.022673545,0.051904846,-0.021784177,-0.019769704,0.005855904,0.026252452,-0.018783897,-0.021773461,0.00021849139,-0.0020238496,-0.0036164091,0.0026855187,0.034181762,-0.0010688498,0.008807966,0.022052059,0.0049531413,-0.005764824,-0.014176324,0.024195116,0.011808245,-0.017080167,0.03139579,-0.03823214,-0.017851667,-0.018087404,0.013072649,0.03373172,-0.027409703,-0.01763736,-0.00078623416,0.032103,0.0082293395,0.013876296,-0.031545803,-0.0076828604,-0.0013487866,-0.02809548,-0.021966336,-0.021452004,0.00014683291,-0.012761906,-0.013169087,-0.005464796,-0.007511416,-0.017433772,0.04043949,0.017369479,-0.009043702,-0.018826758,-0.028352648,0.02920987,0.0022488707,0.026873939,-0.0037155256,-0.028224064,-0.050018955,0.012622607,0.021205552,-0.009027629,-0.009627685,0.04148959,-0.0062684426,-0.01873032,-0.0054594385,0.024280839,0.03514614,-0.007227461,-0.034524653,-0.023037866,-0.030602857,-0.024045102,-0.005451402,-0.012311864,-0.009440167,0.0049504624,0.0022287795,-0.032081567,0.006139859,-0.018537445,0.00429683,-0.0030458202,-0.003964656,0.020284038,0.02916701,0.0040021595,-0.040739518,0.00852401,-0.004848667,0.022223504,-0.008245413,-0.006397026,-0.022180643,0.024988048,-0.01625509,0.047318704,-0.0060112756,-0.009065133,0.004339691,0.010292033,0.010575987,0.020884093,0.009815202,0.031567235,-0.0086847395,0.023702214,0.0020399226,-0.027088244,-0.018516015,0.0045272084,-0.031031469,-0.02805262,-0.019994725,-0.029681344,-0.013876296,0.005995203,-0.026873939,0.0059255534,0.017498063,0.0015095159,-0.017069452,-0.0034047822,0.007088162,-0.0133619625,-0.014358484,-0.0026225664]},{"id":"guide-roles-5","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Check role permissions\nUse role.has(permission) to check if a role has a specific permission. Administrator implies all permissions.\n\n```javascript\nimport { PermissionFlags } from '/core';\n\nif (role.has(PermissionFlags.BanMembers)) {\n await message.reply('This role can ban members.');\n}\nif (role.has('ManageChannels')) {\n await message.reply('This role can manage channels.');\n}\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.040436853,0.018719899,-0.012690662,0.02054623,0.026107175,0.038493447,-0.050107043,-0.0036614435,0.032850552,0.012257494,0.036854435,-0.019071115,0.036713947,-0.018064292,-0.014868212,0.026669122,-0.059051383,0.016003815,0.037510037,0.086024895,0.06120552,0.003216568,0.004088758,0.03788467,-0.061814297,0.0049258266,-0.016893566,0.07970298,-0.011607742,-0.013217489,0.09628045,-0.012866272,-0.038774423,0.039781246,-0.0075863,-0.03870418,0.03896174,0.011467255,-0.009125804,-0.015816499,-0.016893566,-0.0008590197,0.0032019338,-0.017069176,0.0076389825,0.023625236,-0.033435915,0.015804792,-0.031141294,0.015125771,-0.00042804645,0.0028346188,0.019410625,0.07089913,0.023882797,0.02774619,-0.07141425,-0.019843794,-0.026996925,-0.008581417,-0.017186247,-0.037814427,-0.007305326,0.029080817,-0.024304258,0.017853562,-0.04629048,-0.030883733,0.030790076,0.060409427,0.02335597,0.013521877,0.02322719,-0.039921734,-0.01649552,-0.03481737,0.06944743,0.043949027,0.0019273065,-0.0050750943,-0.009219462,0.043995857,-0.03896174,-0.002476084,-0.021119885,0.031375438,-0.02706717,-0.043457326,-0.029361792,-0.06457721,-0.006848743,-0.01610918,-0.061954785,0.0288935,0.037392966,-0.016483812,0.003699492,0.020148182,0.004873144,0.06453038,0.0740835,-0.011279939,-0.042403672,-0.0047092424,0.017326735,0.038470034,0.0119413985,0.029642764,-0.019656477,-0.046056334,-0.029221304,-0.0065911836,0.023180362,0.06523281,-0.005013631,-0.0054292385,0.024234014,-0.04156075,0.045119755,0.00067645975,-0.04303586,-0.04556463,0.03294421,-0.021365738,-0.04739096,-0.036292486,-0.025217423,-0.044651464,-0.045962676,-0.012866272,0.020089647,-0.023074996,0.045377314,-0.05361922,-0.0045541213,0.021471102,0.011584327,-0.039711002,-0.003494615,0.0028814478,0.017525759,0.03858711,0.015582354,0.016881859,-0.003620468,0.0003193885,-0.022407683,-0.012526761,-0.039312955,0.007211668,-0.011174574,-0.025428154,-0.011057501,-0.011473108,-0.047320716,-0.03278031,0.016823323,0.014470165,-0.028331554,-0.024702305,-0.024280842,-0.023871088,-0.021728663,-0.045798775,-0.00871605,-0.04015588,0.0050487528,-0.01317066,-0.0039424174,0.050107043,-0.021681832,0.01462236,-0.003825345,-0.029127646,0.04378513,-0.008511173,0.010905307,-0.006286795,0.008938488,0.004718023,0.0020268182,0.015324795,0.016952103,-0.030017396,-0.03310811,-0.008622392,-0.014856504,0.010372627,-0.009951165,-0.003667297,0.0044780243,0.030836904,0.01640186,0.0272779,0.026903268,-0.033131525,0.005288752,0.009406778,0.013264318,-0.030321786,-0.012725784,0.015114063,0.056241643,-0.021798905,-0.03055593,-0.028987158,-0.0056341155,-0.019129653,-0.03563688,-0.0077853235,0.022899387,-0.016682835,-0.0034975419,0.016636007,-0.033131525,0.034325667,-0.00945946,-0.0064682574,-0.032873966,-0.009658484,-0.033061285,-0.018637948,0.03184373,-0.012245786,-0.0121053,0.071226925,0.018087706,0.021412566,-0.000545119,0.013217489,0.0084584905,0.0121638365,-0.03008764,-0.033904206,0.031515926,-0.0111218905,-0.003746321,0.033857375,0.014786261,-0.025240839,-0.005083875,-0.016378447,0.02250134,0.006930694,0.020733545,0.0010251163,0.03128178,-0.0067784996,0.029033989,0.035262246,0.05919187,0.021494517,0.03924271,-0.02634132,-0.012269202,-0.02748863,0.0009534094,0.05642896,-0.011882862,0.0154067455,-0.01998428,0.018860385,-0.019316968,-0.042005625,-0.05268264,-0.011677985,0.033225186,-0.012327737,-0.03397445,-0.018661361,0.008997024,0.02945545,0.059004556,-0.026364734,-0.032241777,0.014388214,0.064717695,0.0026282785,-0.051043622,0.015196014,0.0045950967,0.015582354,-0.012842856,0.009114097,0.003620468,0.02011306,-0.014563823,-0.049966555,-0.015348209,0.026036931,-0.0037346138,0.016799908,0.03221836,-0.011666277,0.025334496,0.033154942,0.06626305,-0.030696418,0.028495455,0.036831018,-0.0017853561,0.049076807,-0.010255554,0.0038341254,0.03107105,0.0005359727,-0.019668186,-0.0030029104,-0.013393098,-0.061861128,0.032920796,0.061252348,-0.011496522,-0.017151127,-0.053666048,-0.019457454,0.0064975256,-0.034114935,0.043363664,0.031000806,0.009529704,-0.042731475,-0.014458458,-0.035192,0.001802917,-0.024257429,-0.018263316,0.02083891,0.04483878,0.027910091,0.05638213,0.020792082,-0.0014041386,0.057974316,-0.017666245,0.0037960769,-0.01610918,0.09126975,-0.0129131,-0.0040975385,0.030485688,-0.014598945,-0.06270405,0.00865166,-0.032358848,0.01231603,-0.0303452,-0.020218426,0.03980466,0.023718895,-0.031890556,0.020042818,-0.0560075,-0.032124702,-0.051933374,-0.01802917,0.025802786,-0.041584164,-0.002335597,-0.0018980384,-0.036503214,-0.0119413985,-0.0054936283,-0.0043082694,-0.0036146145,-0.00013234685,-0.015875036,-0.014552115,0.029057402,0.012866272,0.014762846,0.002616571,-0.011953105,-0.003670224,0.0006534111,0.007240936,-0.030392028,-0.017080883,-0.01914136,0.038048573,0.025498398,0.022360854,0.01483309,-0.04167782,0.004437049,0.0038663205,-0.01683503,-0.033646647,-0.0037433943,0.0008334101,0.02821448,0.03589444,0.04977924,0.008113126,-0.006005821,0.027582288,0.048889488,0.081857115,0.027605703,-0.030157885,0.019738428,0.035660293,-0.015804792,0.050013386,0.007697519,-0.016273081,-0.042380255,0.024234014,-0.006743378,-0.027371557,0.040671,0.02327402,0.004375586,0.0044136345,0.07080547,-0.014540409,0.057740174,0.006474111,0.00465656,-0.03715882,-0.0034858347,-0.012819442,-0.0053355806,-0.008072151,0.017502343,0.0054292385,0.014353093,-0.07469227,0.016799908,-0.05642896,-0.02140086,-0.0047092424,0.0148096755,0.03699492,-0.02655205,0.0040682703,0.009418485,-0.05553921,-0.04931095,-0.009430192,0.030157885,-0.032873966,0.010600918,-0.006134601,-0.009242876,-0.00084438565,-0.007334594,-0.07394301,0.022267196,-0.012889686,-0.03055593,-0.027301315,0.0014648701,0.023578407,-0.06663769,-0.00173121,0.026903268,0.09201901,-0.006239966,0.039406613,-0.02826131,0.010085799,0.03008764,-0.003119983,-0.005236069,-0.0040536365,-0.00070280104,-0.024514988,-0.019925745,-0.026411563,0.017631123,0.0080311755,0.040296365,-0.0121638365,0.03280372,-0.053759705,0.0025887664,-0.062188927,0.023156947,0.0015482842,0.0395471,0.010776526,-0.035543222,-0.0030351053,0.029806666,0.07244448,0.043129522,-0.0019638918,-0.04462805,0.018228194,-0.039664175,0.02140086,-0.006029235,-0.0111218905,0.028916916,-0.021424273,0.022056464,0.020557936,0.030111056,0.013053588,0.006128747,-0.055679698,-0.042544156,0.00047853397,-0.017759902,-0.01649552,0.01891892,-0.038118817,-0.0037433943,0.03797833,-0.03280372,0.00060219184,-0.0026399856,-0.011063354,-0.017596,-0.026200833,-0.02685644,0.023578407,-0.019843794,-0.019621355,0.029830081,0.037135407,0.04322318,0.019082822,-0.015359916,0.019270139,0.018146243,-0.0021263298,0.0068604504,-0.011537498,0.04135002,-0.037088577,0.03252275,-0.024023283,-0.0022404755,-0.0053560683,0.0047268034,0.0056224084,-0.008675074,-0.035519805,0.012187251,0.020452572,-0.04561146,0.0038955885,-0.017853562,-0.005265337,0.008657514,0.015711134,-0.008159955,0.021412566,0.024795962,-0.03537932,-0.03741638,-0.000074496544,0.013006758,0.010952136,-0.029221304,-0.04542414,-0.008259467,-0.03636273,0.016472105,0.009512143,0.013322854,-0.0034594934,-0.042684644,-0.0075628855,-0.0037755892,0.033482745,0.05408751,-0.021248665,0.026364734,0.03210129,-0.0084584905,0.026247662,0.019832088,-0.01265554,-0.009576533,-0.008300442,-0.0046389992,-0.013826266,0.0019141359,-0.03870418,0.03622224,0.030462272,-0.0037755892,-0.045915846,-0.019398918,0.01879014,-0.03741638,-0.0147745535,0.020557936,-0.009582386,-0.0061755762,-0.018298436,-0.046220236,0.017279906,-0.0055521647,0.03898515,-0.016518934,-0.0020165744,0.018228194,-0.018310145,-0.035917852,-0.01756088,0.0028448624,-0.017994048,0.028495455,-0.022255488,-0.002680961,0.009494582,0.011285792,-0.01982038,-0.043878786,-0.020241842,-0.018965751,-0.005034119,0.02821448,0.019398918,0.0393832,0.028987158,0.011625302,0.008171663,-0.01790039,-0.015933571,-0.021857442,-0.00073755695,0.010946282,0.0013338951,0.005909236,-0.0121287145,0.04458122,-0.02774619,0.03924271,-0.00060292357,-0.008306297,-0.032452505,-0.027886678,0.029736424,0.007194107,-0.021635003,0.058021147,-0.05834895,0.007305326,-0.04823388,0.0016653568,-0.026224246,-0.014634066,0.013732608,-0.016764786,-0.01845063,-0.023964748,-0.009734581,-0.05216752,-0.018075999,0.015371623,-0.034981273,-0.019176481,0.017865269,0.007732641,-0.013416512,-0.0067609386,0.01457553,-0.008540441,0.008528734,0.008294589,-0.042380255,-0.028495455,0.006737524,0.013580414,-0.00091975107,-0.024585232,0.021506224,0.009225315,-0.007129717,0.013475048,-0.014915041,-0.0069072796,-0.023297435,0.009412631,0.036151998,0.016530642,0.0145872375,-0.004747291,0.007317033,0.015757963,-0.00671411,0.0121287145,-0.017830146,0.0030029104,-0.020124769,-0.020710131,0.031375438,0.038376376,-0.0117716435,-0.010495553,0.00824776,0.0023151094,0.0056721643,0.019949159,-0.04137343,0.003965832,0.021599881,-0.0020165744,-0.033857375,-0.0027409606,-0.031141294,0.019071115,0.04991973,0.010665308,-0.028846672,-0.05118411,0.024772547,-0.011607742,-0.01641357,0.019059408,0.0027658385,-0.023543287,-0.044557806,0.053478733,0.01044287,-0.019586235,0.019106237,-0.008440929,0.036081754,-0.022196952,-0.007896543,0.048561685,0.0589109,-0.019761844,-0.004609731,0.0024643769,-0.026107175,0.019340383,0.0049492414,-0.03413835,0.0076682507,0.012877978,0.02774619,-0.018017463,-0.028916916,0.010197017,0.014762846,0.005736554,-0.018087706,-0.033272013,-0.035145175,-0.03210129,0.0070477664,-0.01862624,0.054789945,-0.016097473,0.007024352,-0.0036760776,-0.0026999852,-0.0074223983,-0.04991973,-0.05596067,-0.028425211,0.018860385,0.062516734,0.007902396,0.045119755,-0.021681832,-0.003746321,-0.03999198,-0.0082536135,-0.03128178,-0.002907789,0.019258432,-0.0018234047,0.02987691,0.016518934,0.038001742,-0.009436046,0.009957019,0.024304258,0.019843794,0.0026692536,-0.012842856,-0.019726722,0.003839979,0.01683503,-0.00459217,-0.005423385,-0.011022379,0.0084760515,0.026622294,-0.0062809414,-0.030743247,-0.0133579755,-0.027535459,0.018403802,-0.016015522,0.0109345745,-0.03643297,-0.0014473092,0.0027775457,-0.08401125,-0.013451634,-0.00013362731,-0.0075336173,-0.01610918,0.007510203,0.03601151,0.047250472,0.03875101,-0.0080662975,0.002601937,-0.021775492,0.0018629166,0.016331619,0.028589113,-0.0027248631,-0.001018531,0.0012226762,0.043316837,-0.009219462,0.0010595064,-0.0439022,-0.05783383,0.024140356,-0.018637948,0.01410724,0.0046448526,-0.016460398,0.033951033,0.0024673035,-0.0010734088,0.02940862,0.020733545,0.013603828,0.013229196,0.024327673,0.018087706,-0.005139484,0.027043754,-0.046805598,-0.013182367,0.008967756,-0.032850552,-0.051933374,0.02229061,-0.012409688,0.011016525,-0.017958926,0.010636039,0.0014282849,0.0059619187,-0.0070594735,0.0074048378,0.018755019,0.00999214,0.004846803,-0.024983278,0.065794766,-0.005800944,-0.035402734,0.010840916,0.0075745927,0.027839849,0.009348242,0.037439797,0.0021731588,-0.016038937,-0.012152129,0.0025829128,0.0058828946,0.013674072,0.000092697665,0.010319944,0.07174205,0.00924873,-0.007791177,-0.009605802,-0.026528636,-0.042427085,-0.017701367,-0.03371689,0.061861128,-0.0044633904,0.01317066,0.044698294,-0.0007602398,-0.006813621,0.013229196,-0.027629118,-0.022466218,0.061252348,-0.0016390154,0.006228259,-0.01747893,0.017221369,0.015968693,-0.03451298,0.009746288,0.03481737,-0.013861388,-0.015652597,-0.012725784,-0.007445813,-0.018204778,0.013158953,0.032194946,0.0028126675,-0.03336567,-0.0077619087,0.010278968,0.011502376,0.03521542,-0.012327737,-0.016167717,-0.044183172,-0.009272144,0.0071414243,0.010472138,-0.0027790093,-0.0059209433,0.02263012,0.0011677985,-0.035262246,0.017982341,0.01457553,-0.00025609616,-0.017408686,-0.0024160843,-0.005502409,-0.003163885,-0.024257429,0.0032399823,0.011988227,0.00085023924,0.020944277,-0.032920796,0.013685779,0.02685644,-0.017865269,0.012397981,0.006035089,0.023461336,0.022068173,0.0395471,-0.025943274,0.050575335,0.010799941,0.021787198,0.0035297368,0.00003978637,0.008007761,0.0034975419,0.016952103,0.027160827,-0.041022215,0.040507097,0.001210969,0.02272378,-0.023789138,0.021260371,-0.0139901675,0.04682901,-0.0042731473,0.000069831935,-0.010197017,0.024561817,-0.0070828884,0.0007558495,0.015992109,-0.01184774,0.007041913,-0.04530707,0.015055528,0.02535791,-0.008189224,0.011917984,0.033857375,0.012456518,-0.016460398,0.024374502,0.009465314,0.049451437,-0.018040877,-0.0076448363,0.023215484,-0.019258432,0.013158953,-0.031000806,-0.006210698,0.0019097456,0.011127744,0.026575465,0.07642495,-0.004249733,-0.0014216995,-0.024140356,0.014341385,-0.016179424,-0.0013931631,-0.032873966,0.0066555734,-0.00046353406,-0.002108769,0.014751139,-0.009020438,-0.015933571,0.011209695,0.00004893266,-0.03802516,0.026247662,0.037135407,0.005376556,-0.01157262,-0.022700364,0.04031978,-0.007024352,0.00897361,-0.027090583,0.021834027,0.017244784,-0.0021731588,-0.026130589,-0.013229196,-0.008985316,-0.0015716987,-0.00405071,-0.012807735,0.0005107289,-0.02446816,0.005704359,0.0045394874,0.0010638966,-0.001709259,0.0043170494,0.020183304,-0.029127646,0.019960867,0.02041745,-0.00090072677,-0.0038429059,-0.013615536,0.03184373,-0.012983344,0.003556078,0.021974513,-0.0015131625,0.0013280415,0.043199763,0.024819376,-0.0024716938,-0.00036292485,0.004510219,0.006099479,-0.018532582,0.03875101,0.01137945,0.0047063157,-0.022981338,0.021236958,-0.002976569,0.0017107223,0.027231071,-0.03336567,-0.00924873,-0.01619113,-0.012608712,0.019808672,0.0030380322,0.03448957,-0.0051365574,0.01623796,-0.033037867,-0.005297532,0.0075628855,-0.035613462,-0.02706717,-0.029478863,0.034583226,-0.015804792,-0.0050048507,-0.019890623,-0.0036116876,-0.020932568,0.031609584,-0.026879853,0.0051687523,0.023473043,-0.020979397,-0.004281928,-0.012269202,0.032335434,0.014306263,0.019715015,-0.017923804,0.023028167,-0.011578473,-0.02748863,0.0055287504,0.014013582,0.016214546,-0.0036321753,0.013498463,-0.028659355,0.006708256,-0.017186247,-0.0032721772,0.017759902,0.0010602381,0.005288752,-0.006222405,0.00032725433,0.0015453574,0.015839914,-0.009201901,0.010390188,0.023297435,-0.005581433,-0.008628245,0.0063394774,-0.022735486,-0.015055528,-0.0064038676,0.012889686,0.0258262,-0.037697356,0.033131525,-0.0072702044,0.0050985087,0.00085536117,-0.027441802,0.011373596,-0.014961869,-0.027371557,-0.023309141,-0.027910091,-0.01990233,-0.00077194703,0.026200833,0.018204778,0.005689725,-0.021354029,0.007504349,0.014435044,0.062750876,0.026388148,0.0033921767,0.030438859,-0.0439022,-0.02748863,0.026388148,0.06935377,0.026434978,0.0009753605,0.0056838715,0.034887616,0.016226253,-0.004878998,-0.01901258,0.02868277,0.023754017,-0.011859448,0.0110867685,0.01781844,-0.014821382,-0.0048058275,0.009523851,-0.042989034,0.000110944515,0.03516859,0.028659355,0.017455515,0.0028624234,0.006415575,0.0017121858,0.014095533,-0.023332555,-0.009547265,-0.037908085,0.013603828,0.012245786,-0.000027255948,0.019504284,0.0047414377,-0.029221304,-0.04799974,0.01781844,0.0056019207,0.020089647,0.023648651,0.0072760577,0.008300442,-0.013627242,0.027231071,-0.029338377,0.0021834027,0.0054789945,-0.017748196,-0.01880185,-0.032031044,-0.020241842,-0.045541216,0.04577536,0.015687719,0.00005236252,-0.012070178,0.021775492,-0.010981403,-0.0015380403,-0.01265554,0.0258262,-0.006362892,0.04069441,0.00052353373,0.019281846,-0.0019141359,-0.010191164,0.042427085,0.0012738955,0.0073287403,0.009523851,-0.002749741,0.0042204647,0.019551113,0.012292616,0.01781844,0.013077002,0.043106105,-0.03404469,0.008563856,-0.017748196,0.03064959,0.005408751,0.04334025,0.020955984,-0.009078975,0.032241777,0.010811648,-0.055445552,-0.009131658,0.001677064,-0.01076482,0.0019258432,-0.015500403,0.03210129,0.006474111,-0.014224312,0.0042468063,-0.015324795,0.0350281,-0.0065150866,0.0076565435,0.00792581,0.00978141,0.026107175,0.021389151,0.0019712087,-0.0033951034,0.010940428,0.022115001,-0.003998027,0.016905274,-0.037650526,-0.027348144,0.008809708,-0.0376037,-0.01756088,-0.0060936254,0.012327737,0.01901258,-0.0025141325,0.033763718,0.03673736,-0.015992109,0.013615536,-0.0016609665,-0.01150823,0.024351086,-0.019492576,0.0078614205,0.015617476,0.019867208,0.026645709,-0.0033424208,-0.041139286,-0.014879919,-0.011906276,0.013779437,-0.04322318,0.014657481,-0.015277965,-0.015207722,0.013556999,0.012327737,-0.029221304,0.017596,-0.018661361,-0.014036996,0.009599947,0.012222372,0.046735354,-0.026622294,-0.008487758,0.009190193,0.00080194685,-0.01704576,-0.0065150866,0.015933571,0.009617508,-0.025474982,-0.051277768,0.027816433,0.00810142,0.013802852,0.0006940206,-0.018474046,-0.010138481,0.026739366,0.015242844,-0.0015936499,0.028870087,0.008686782,-0.0036380289,-0.007832153,0.023063289,0.03392762,-0.03657346,0.0010895062,0.0018307217,-0.019235017,0.011871154,-0.038048573,-0.019199895,-0.014762846,0.0048555834,-0.00711801,0.024585232,0.008259467,-0.012725784,0.007352155,0.052401666,-0.016390154,-0.015207722,0.021939393,-0.026996925,-0.021763783,0.0007682885,0.004577536,-0.006567769,-0.005736554,-0.03392762,-0.002983886,-0.004972656,-0.026996925,0.0054146047,-0.027184242,-0.034630056,-0.009541411,-0.0016126741,0.0041326606,-0.027652532,0.020171598,0.01005653,0.028823256,0.0067960606,0.005019485,0.0056985053,0.019785257,0.015523817,-0.026622294,0.002691205,-0.0028799842,-0.024585232,-0.0077033727,-0.011408718,0.0107121365,0.039734416,-0.012327737,-0.014189191,0.0065911836,-0.050107043,0.034793958,0.006146308,-0.007428252,-0.0069072796,0.008657514,-0.016003815,-0.007240936,0.004530707,-0.03273348,-0.0075745927,-0.021073056,-0.008423368,-0.0047443644,0.017420392,0.0068897186,-0.023110118,0.015676012,-0.06865133,-0.013369683,0.021014519,0.005350215,-0.024140356,-0.0376037,-0.027722776,-0.0033131526,-0.034840785,0.013873095,-0.019867208,-0.004235099,0.035964683,-0.0059267967,-0.020780375,0.015020406,-0.016823323,0.08401125,-0.000006465285,-0.0013207245,0.0058214315,0.012023349,-0.015102357,-0.0055433842,0.004138514,0.0109170135,-0.00029414473,0.0024629133,-0.0011399938,0.012515054,-0.014727725,-0.036971506,-0.02241939,-0.031258367,-0.0054350924,0.06926011,0.005625335,-0.0026707172,0.040928558,-0.033482745,0.043246593,0.016273081,0.0001129567,0.009787263,0.011713107,-0.014072118,-0.030813491,0.032312017,0.013030173,0.00664972,-0.029127646,0.0039892467,-0.01811112,-0.0409988,-0.0013558463,0.0028038872,0.012327737,-0.0036936384,-0.013720901,0.0026180346,-0.000024374867,-0.010355066,0.0152194295,0.017841853,0.0041268067,-0.010109213,-0.033342257,0.006321917,-0.0060936254,-0.011672132,-0.028378382,-0.0039248564,-0.028331554,0.028635941,0.009699459,0.021880856,0.0011224329,0.09112926,0.008165809,-0.0080487365,-0.013826266,0.01870819,0.022782315,-0.0047443644,-0.0151843075,0.024351086,-0.014505287,0.00012484688,0.005329727,0.0032663236,0.01675308,-0.011525791,0.0031463243,-0.04338708,-0.012959929,-0.014821382,0.00559314,0.03367006,0.011127744,-0.0141423615,-0.014739431,0.00072475214,0.03622224,0.021834027,-0.0043843663,0.024444744,0.005238996,-0.018485753,0.0012226762,0.023320848,-0.01751405,0.033833962,-0.01397846,-0.008686782,0.0011217012,-0.00018658435,0.03128178,0.0440661,0.000049161317,0.01231603,0.0058887484,0.012983344,-0.0011524328,-0.033061285,0.02369548,0.017654538,-0.028027164,-0.01870819,-0.0037785158,-0.01990233,-0.01244481,0.010202871,-0.046992913,-0.0050370456,0.008757025,0.01163701,-0.032546163,-0.020511108,-0.0045219264,-0.014060411,-0.026013516,-0.0023121824]},{"id":"guide-roles-6","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Add/remove roles from members (member.roles)\nUse member.roles.add(), member.roles.remove(), and member.roles.set() for Discord.js-style role management. member.roles.cache is a Collection of Role objects. Also available: guild.addRoleToMember() and guild.removeRoleFromMember() when you only have user ID.\n\n```javascript\n// Discord.js parity: member.roles.add(), remove(), set()\nconst member = await guild.fetchMember(userId);\n\nawait member.roles.add(roleId); // Add a role\nawait member.roles.remove(roleId); // Remove a role\nawait member.roles.set(['id1', 'id2']); // Replace all roles\n\n// Check if member has a role\nif (member.roles.cache.has(roleId)) {\n await message.reply('Member already has this role.');\n}\n\n// Guild-level: when you only have user ID (no member fetch needed)\nawait guild.addRoleToMember(userId, roleId);\nawait guild.removeRoleFromMember(userId, roleId);\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.019880949,0.0029966785,-0.018058343,0.018706877,0.022575723,0.01947841,-0.0007103833,0.022475088,0.01886342,0.041953497,0.03130858,-0.034752525,0.050004277,0.0055964086,0.016660638,-0.011774262,-0.050898805,0.011606538,-0.007832736,0.054298025,0.012489887,0.04510672,-0.0029379749,0.043764923,-0.051882792,0.0035026474,0.01079587,0.069773406,-0.030570593,-0.04537508,0.04181932,-0.012445161,-0.035155065,0.02207255,-0.015520111,-0.026276844,0.033477817,0.03419344,0.029273523,0.02884862,0.005065281,-0.018561516,0.015341205,-0.023526162,-0.020686027,0.04875193,-0.017141448,-0.020272305,-0.039806623,0.02105502,-0.0042210678,0.010438058,0.011354951,0.088961095,-0.018852238,0.014223041,-0.034685437,-0.014167133,-0.034886703,0.01743217,0.01715263,-0.02712665,-0.02037294,0.027149012,0.012612886,-0.0011747706,-0.07102575,-0.011807808,0.004232249,0.036809947,0.02486796,-0.011528267,0.0074413787,-0.037547935,0.017991252,-0.0013285181,0.030771863,0.010717598,0.02692538,-0.011718354,0.015419476,0.025225772,-0.029094616,-0.0062896702,-0.017577533,-0.01975795,-0.036653403,-0.013619233,0.0033516954,-0.05783142,-0.0053224587,-0.020149307,-0.091689415,-0.0014088862,-0.019288322,-0.013731049,0.024443056,0.024152333,-0.025382314,0.06270661,0.08126813,-0.027864637,-0.06252771,0.010739962,0.026768837,0.014245404,-0.02023876,0.049288653,-0.04559871,-0.000092597926,-0.060201928,0.023503799,0.024599599,-0.0057249977,-0.027797546,0.04790213,0.028244812,-0.0060939915,-0.017174993,-0.032314926,-0.07460388,-0.031621665,0.044122737,-0.056892164,-0.03862137,-0.037905745,-0.036474496,-0.061633177,-0.052598417,0.037078306,-0.003192357,-0.020809025,0.039269906,-0.02556122,-0.034327623,-0.013786958,-0.017789982,-0.032493833,-0.0045565167,-0.003642418,0.029273523,-0.011606538,0.0012425593,0.03517743,-0.03303055,-0.015218207,-0.021625284,-0.005439866,-0.08153649,0.0024068472,-0.05125662,-0.0035166244,0.019735588,-0.019321866,-0.050943535,-0.032493833,-0.020473575,0.0023187918,-0.018002434,-0.020249942,-0.029899694,-0.05684744,0.00635676,-0.07044431,0.011405269,-0.05098826,-0.0133956,0.018483244,-0.016481731,0.055326734,0.028490808,-0.021278653,-0.01387641,-0.011444405,-0.0004507597,-0.0041092513,-0.034685437,-0.02323544,-0.0075643766,0.009454073,-0.002658434,0.00032426746,-0.03054823,-0.0063735326,-0.04866248,-0.0033936265,-0.0071450653,-0.025158681,-0.0056858617,0.0362285,0.017230902,0.025538856,-0.010930049,0.023391983,0.06731345,-0.024935048,0.05657908,0.029497156,-0.021446377,-0.042445492,-0.01995922,0.02658993,0.048304666,-0.017879436,0.0091298055,-0.010052291,-0.025807217,-0.031107312,-0.0026807971,-0.008106686,-0.010102608,-0.04202059,0.009208078,0.02003749,-0.03130858,0.0055936133,-0.071383566,0.03088368,-0.0010412899,0.023705069,-0.056892164,-0.0033684678,0.029989148,-0.0094932085,-0.0027031605,-0.0011971339,0.013663959,-0.0059709935,0.016280461,0.049914822,0.015631927,-0.037078306,-0.027327918,-0.028513173,0.019679679,0.02958661,-0.024711415,0.031241491,0.0115506295,0.0032091294,-0.027573915,-0.035512876,-0.025717763,-0.001253741,0.043586016,-0.011729537,0.013451508,0.0070500216,0.018941691,0.0060324925,0.047186505,0.03602723,0.033567272,-0.0063623507,-0.013585688,-0.037011214,0.024935048,0.048125762,-0.027327918,0.05890486,-0.03130858,0.029295886,-0.006451804,0.013060151,-0.057473607,0.017678166,0.00012588076,-0.011405269,-0.009577071,-0.019098233,0.036183774,0.013239057,0.012120893,-0.037771568,-0.004422337,0.029139344,0.012892426,0.03466307,-0.007748874,0.0153635675,0.019567862,-0.015620746,0.0423784,0.013854047,0.01708554,0.034841977,-0.0005492979,0.0014885553,0.0145361265,0.016772455,-0.020719571,-0.011422041,0.0027828296,-0.00731279,0.03177821,0.0055125467,0.03649686,-0.013116059,0.043026935,0.052195877,-0.0029575427,0.04470418,-0.020339396,-0.019422501,0.0028597035,-0.023011807,-0.04606834,-0.029653698,-0.0002610213,-0.051838063,0.010918868,0.057965603,0.0018841056,0.02303417,-0.039448813,0.005112803,0.018136613,0.028826257,0.036809947,0.038710825,0.048975565,-0.041662775,0.0037206893,-0.022855263,0.022564542,-0.047141775,-0.012344526,-0.034014538,0.03991844,0.023257803,0.0608281,0.009487618,0.0053392313,0.032359656,0.008525997,0.025986122,0.000023389712,0.036049593,-0.004461473,0.00854277,0.01223271,0.003357286,-0.027641004,-0.010438058,-0.02945243,0.021278653,-0.019198868,0.016928997,0.0061666723,-0.00008495423,0.008839083,0.021289835,-0.033723813,-0.03247147,-0.023705069,0.015084027,0.018136613,-0.008056369,0.029206432,-0.0031056993,-0.045017265,0.017957708,-0.03097313,0.010745552,0.015822016,0.0024697438,0.0043161116,-0.034282897,0.02542704,-0.010007564,-0.00977275,0.040812973,-0.051480252,0.0075755585,0.009353438,-0.0097951135,-0.021233927,0.028244812,-0.019836223,0.03962772,0.023347257,0.022273818,0.020831387,-0.0089676725,0.0045704935,-0.017745256,-0.037436116,0.009051534,-0.045240898,-0.022665177,0.029519519,0.03710067,-0.0118525345,0.03596014,-0.029273523,-0.01743217,0.05098826,0.064898215,0.011572993,-0.04906502,0.017555168,0.020987932,-0.001612951,-0.0050289407,-0.013440327,-0.004970237,0.0035865097,0.0045732893,-0.006172263,-0.011941987,0.039359357,0.047454864,0.033790905,0.015251751,0.03593778,-0.033052918,0.020104581,-0.002724126,0.019511955,-0.003273424,-0.026232118,-0.019456046,-0.016772455,-0.04758904,0.04385438,-0.009353438,-0.011164864,0.0016325188,0.0189976,-0.0130825145,-0.09848785,0.03765975,0.028177723,0.010466011,-0.009962837,0.005372776,0.03922518,-0.0073183808,-0.0072065643,0.0052134376,0.016761273,-0.0142342225,-0.029676061,0.033410728,0.004363633,0.026276844,0.01578847,-0.050719902,0.021043839,0.026075576,0.00082185026,0.01346269,-0.0004413252,0.039001547,-0.014401947,-0.023347257,0.008486861,0.02549413,-0.013563325,-0.03218075,-0.020451212,0.022944717,0.006026902,0.0022363272,-0.0062840795,0.01817016,-0.012009077,0.015229388,-0.008430953,-0.031286217,0.020171672,0.016515275,0.07634821,-0.02296708,0.0075028776,-0.028535536,0.009878975,-0.036944125,-0.015676653,0.039873715,0.021312198,0.013149604,-0.009487618,-0.019970402,0.018416155,0.022475088,0.01647055,-0.008386227,0.005543296,0.017454533,-0.060067747,0.025382314,0.027462099,-0.008375045,0.029608972,-0.009610616,0.058725953,-0.016090374,0.010762325,-0.004961851,0.014055316,-0.047812674,-0.033120006,0.05720525,-0.040432796,0.025113955,0.007748874,-0.024621962,0.0105610555,0.084577896,-0.007491696,-0.024018154,-0.009783931,-0.016358733,0.006261716,-0.014603216,-0.041126058,-0.014044135,-0.00984543,-0.035691783,-0.004975828,0.017365081,0.014748578,-0.023637978,0.023816885,0.0142342225,0.0108853225,-0.0020783865,0.019500773,0.028692078,0.020730752,-0.031755846,0.02755155,0.014703851,-0.011086592,-0.02002631,-0.015397113,-0.0014787713,0.03287401,-0.04175223,0.01667182,0.029027527,-0.038845003,-0.0136080505,-0.0340369,-0.017812347,-0.02542704,0.018103069,0.017454533,0.00594863,-0.013138422,-0.038800277,-0.017186174,-0.038218834,-0.021580558,-0.013048969,-0.009783931,-0.037145395,-0.0024110402,-0.024957411,0.0126799755,-0.011220772,0.0036480087,-0.0014955439,-0.052464236,-0.033768542,0.012970698,0.017320354,-0.0042602033,-0.0016478936,0.00052483805,0.0070388396,-0.019836223,0.0017806755,0.04161805,0.009962837,-0.04045516,0.009476436,-0.013205512,-0.005369981,-0.008855856,-0.06431677,0.021021476,0.024800869,-0.035110336,-0.0138093205,-0.021166837,-0.008878219,-0.0069046603,0.018237248,0.018293157,0.020518303,0.033880357,0.0049115336,-0.00023691091,0.0002220603,0.0011768672,0.020529484,-0.022922354,-0.01600092,-0.0052861185,-0.0027898182,-0.037033577,0.000047478276,-0.019087052,-0.037682112,0.038599007,-0.014893939,0.021558193,0.0072009736,0.019310685,-0.0116512645,-0.019221231,-0.033477817,-0.034752525,-0.013596869,0.03350018,-0.01620219,0.017510442,0.017197356,0.018360246,0.0074134246,0.025874306,-0.02193837,0.024890322,0.028803894,0.004033775,0.010963595,-0.0052777324,-0.03989608,-0.01907587,0.006966159,0.01572138,-0.018125432,0.0015612359,-0.04334002,-0.005920676,-0.0062561254,0.03546815,0.000069885224,0.021569375,-0.019288322,-0.0027283193,-0.0155648375,0.010969185,-0.013171967,0.007815964,0.0011132717,-0.017063176,-0.037123032,-0.011528267,-0.02090966,-0.024040516,-0.045442168,0.025986122,-0.034059264,-0.0065412573,0.032784555,-0.021569375,0.021614103,-0.03553524,-0.015900286,-0.011997895,0.013171967,0.028177723,0.006910251,-0.021043839,0.017946526,0.0054845926,0.03486434,-0.008587496,0.021971915,0.01223271,-0.010890913,0.018416155,-0.02426415,-0.01168481,0.011433222,-0.0074190153,0.023749795,-0.01798007,-0.016638275,-0.0047410135,-0.020339396,0.037637386,-0.031263854,0.0044027693,-0.019634953,0.0072680633,-0.035579965,-0.0071674287,-0.005520933,-0.0056858617,-0.023772158,-0.013026606,0.03971717,0.011097774,-0.013675141,0.049243923,-0.06355642,-0.0016045647,0.019601408,-0.0012670191,-0.018147795,-0.00656362,-0.010488374,0.036004867,0.028557898,-0.00854836,-0.0040980694,-0.056221265,0.0032957871,-0.0412826,0.0067537082,-0.0052330056,0.015397113,-0.007899825,-0.045330353,0.034081627,0.00032671343,-0.000047478276,0.05022791,-0.0007973904,-0.006507712,-0.059978295,0.00826882,-0.023190713,0.016571185,-0.027976453,-0.0009860805,-0.01974677,-0.004824876,0.022128457,0.027014833,-0.0013075526,0.02549413,-0.01168481,0.018975236,-0.026165029,0.004271385,-0.011125728,-0.003566942,0.0112878615,-0.043228205,-0.033366002,0.00064818544,0.018226067,-0.010029928,-0.0055796364,0.046694513,-0.035848323,0.005892722,-0.013048969,-0.005562864,-0.010549873,-0.03629559,-0.014949847,-0.009526754,-0.031487487,0.048036307,0.00990693,0.027931727,-0.0015332819,0.022799356,-0.020719571,0.010169698,0.0026500477,-0.012802973,-0.0020043082,0.0013124446,0.008235275,0.0075420137,-0.004327293,-0.008140231,0.018673332,0.013485053,0.0028317494,0.009509982,0.002422222,-0.023906337,-0.0023593253,0.015296478,-0.02180419,-0.023928702,-0.033097643,-0.021021476,0.005476206,-0.014077679,0.010997139,-0.018192522,-0.04461473,0.007989279,0.007978098,0.016325189,-0.049646463,-0.00888381,0.005137962,-0.07827145,-0.031957116,0.03238202,-0.027573915,-0.020965567,0.0018463676,0.028244812,0.048975565,0.02336962,-0.016761273,-0.008453317,-0.056087088,0.006038083,-0.036854673,0.032918736,0.011774262,-0.0095323445,0.013093696,0.005831223,0.0021888053,-0.00867695,0.00040743087,-0.0066474825,-0.013820502,-0.0035501695,-0.01079587,0.02003749,-0.043407112,0.026880654,0.008307955,0.009370211,0.019880949,-0.020563029,0.0055321143,-0.04933338,0.052240603,0.017230902,0.015889104,0.02925116,-0.043787286,-0.0033656724,0.017599896,-0.0019987174,-0.04121551,0.019064689,-0.006759299,0.009213668,0.03280692,-0.028982801,0.019925674,-0.0037961653,0.03826356,0.018427337,0.030056238,0.008050778,-0.023190713,-0.0062393527,0.045710526,-0.01633637,-0.01947841,0.07500641,0.021636466,0.00086517906,-0.012322163,0.038710825,-0.017510442,-0.0093310755,-0.0016912224,0.009728023,0.022363272,-0.010264742,0.004693492,-0.003192357,0.010264742,-0.003745848,0.007223337,-0.011707173,0.008319138,-0.033768542,-0.03613905,-0.016325189,0.0027143422,0.025315223,-0.004620811,0.008922946,-0.02439833,-0.030257506,-0.0034327623,-0.008962081,0.014457855,0.04477127,0.02289999,0.0134067815,-0.028267175,0.02808827,0.007676193,-0.013675141,-0.007827145,0.043966193,-0.03596014,-0.046962872,-0.008157004,-0.0022125663,-0.021882461,0.006474167,-0.006876706,0.03390272,-0.0077600554,-0.031621665,-0.016604729,0.011449995,0.024599599,-0.027059559,-0.018606242,-0.04354129,0.0076314667,0.02945243,0.040231526,-0.004612425,0.0018030388,0.012255073,0.019053508,0.005629954,0.033477817,0.007832736,0.023637978,-0.034439437,-0.001972161,0.0116512645,0.038039926,0.0028611012,-0.003944322,0.03303055,0.010946821,0.017465716,-0.0070388396,0.013205512,0.0051798928,-0.050764628,0.020864932,-0.025851943,0.034528892,-0.036116686,0.044055644,0.007804782,0.050272636,0.05282205,0.0040197982,-0.0031532214,0.008492452,0.038285922,0.006334397,-0.0053839576,0.0005258863,-0.010851778,0.051927518,-0.012132075,0.016258098,0.005831223,-0.0011621913,-0.019042326,0.017051995,0.025605947,0.0032370836,-0.031084947,0.024487782,0.013373236,-0.023078896,0.017107904,-0.036004867,0.0045565167,-0.016325189,-0.0029267932,0.05277732,0.043205842,0.030257506,0.025337588,0.00697175,0.015553656,0.038487192,-0.0069493866,0.010432466,-0.019355413,-0.007402243,0.038308285,-0.013384419,0.005562864,-0.06619529,-0.01148354,-0.015039301,0.03417108,0.0024389944,0.01209853,-0.022363272,0.0040701153,-0.023682704,-0.0020140922,-0.044167463,0.004310521,0.020864932,0.008498044,-0.020976748,-0.010650508,0.019646134,-0.03540106,0.0020700004,-0.010041109,0.029273523,-0.010147335,0.05590818,0.0007904019,0.05541619,0.030033873,0.009465255,-0.0075196503,0.018695695,-0.005434275,-0.021714738,0.011097774,-0.0054426612,-0.029094616,0.029362977,-0.023302529,0.0010391932,-0.021491105,-0.0039471174,-0.021233927,0.026276844,-0.06556911,-0.00017165559,0.009140987,-0.011740718,-0.004791331,0.013171967,0.022285001,-0.027104286,0.0311744,-0.0053420267,0.0077432827,0.030168055,-0.008106686,0.019992765,-0.0608281,-0.023280166,-0.02625448,-0.037637386,0.006882297,0.018147795,0.025919031,-0.012735884,-0.0011845545,0.010063472,0.022050187,-0.040164437,0.041975863,0.021793008,-0.0037738022,-0.0016423027,0.036586314,-0.017789982,-0.013417963,-0.001073437,-0.008224093,-0.0022349295,-0.024621962,-0.012512251,0.000087574925,0.011360542,0.050317362,0.0137086855,0.0038576643,-0.0034607162,-0.0146367615,0.013630414,-0.0042154766,-0.0068599335,-0.033880357,-0.00014116816,0.0018156181,-0.007256882,-0.0073519256,-0.022251455,-0.016772455,0.05707107,-0.018326702,-0.007866281,0.00915776,-0.0189976,0.039739534,-0.0074246065,-0.0061946264,0.0100578815,-0.0016814385,-0.018024797,0.011461177,-0.011774262,-0.035512876,-0.019724406,0.039672446,0.010700826,-0.029340614,-0.029989148,-0.033052918,0.009700069,0.0014633966,0.009526754,0.038084652,-0.007089157,0.012534614,0.008380637,0.01818134,0.0128812445,0.039873715,-0.01018647,-0.009543526,0.009789523,-0.013205512,-0.011399678,-0.013429144,-0.022285001,-0.002662627,0.0011964351,-0.00057725195,0.04307166,-0.009560299,-0.006334397,0.034014538,0.0034271714,0.0019693656,-0.023705069,-0.013619233,-0.033522546,0.003650804,-0.033768542,-0.025069227,-0.028244812,-0.039091,0.048215214,0.010583418,0.0022125663,-0.006384714,0.017242083,0.0051435526,0.042557307,0.0061834445,0.0008875424,0.041729864,-0.024689052,-0.00078970304,0.040634066,0.07169665,0.023280166,-0.010303877,-0.004631993,0.055282008,0.0020867728,0.0094932085,-0.01927714,-0.011975532,-0.006457395,-0.020730752,0.009342257,0.008514816,0.01572138,-0.025315223,-0.018852238,-0.019064689,0.047857404,0.030794226,0.027998816,-0.00001585521,0.008425362,0.007005295,0.011640083,0.001163589,-0.01264643,0.026701747,-0.039963167,0.01332851,-0.0015374749,-0.01647055,0.017655803,0.0062505347,-0.019165324,-0.031040221,0.012903608,0.02323544,0.013451508,0.022799356,-0.034439437,0.038576644,0.016604729,0.011410859,-0.002440392,-0.0053755715,-0.006725754,-0.023056533,-0.021278653,-0.013798139,-0.0038436875,-0.04682869,0.040432796,0.036317952,-0.017230902,-0.0030050646,0.020976748,0.008397409,0.014278949,-0.0038408919,-0.0040421616,0.010152926,0.062080443,-0.039404087,0.017678166,0.007659421,-0.0035781234,0.0021063406,0.002430608,0.011718354,0.016727727,-0.015620746,0.0074413787,0.009923702,0.0043049296,0.019511955,0.028132996,0.0077824187,-0.0047186506,0.0077432827,-0.007659421,0.03021278,-0.009817476,0.06185681,-0.01120959,-0.018975236,0.029989148,0.009068307,-0.029474793,0.006982932,0.016727727,0.008285592,-0.008760812,-0.0010007564,0.010102608,0.014413129,0.0034131943,0.00063630496,-0.008470089,0.011561812,-0.011265499,-0.014256586,0.006636301,0.013596869,0.014972211,0.025315223,0.031845298,0.03280692,0.04045516,0.02938534,0.023816885,0.056802712,-0.02235209,-0.0013697504,-0.0056774756,-0.039672446,-0.020182854,-0.008017233,0.011908443,-0.01100273,0.000034615026,0.025762489,0.046873417,-0.007922189,0.01831552,0.016481731,-0.02275463,-0.0065412573,-0.015732562,0.020932022,-0.0077153286,-0.008006051,0.028692078,0.015341205,-0.0027143422,-0.036385044,0.01216562,0.009124215,-0.019031145,-0.010566646,-0.008973263,-0.07236755,0.04318348,0.016213372,0.0105946,0.016649457,-0.0068599335,-0.004782945,0.029922059,0.03795047,0.003935936,-0.020607755,-0.025270497,0.010432466,-0.023481436,0.009560299,-0.0031336534,0.035289243,0.0007694363,-0.012802973,-0.032359656,0.0045341533,-0.01913178,0.008727266,0.0067481175,0.03144276,0.022642814,0.028803894,-0.015318842,-0.006116355,0.028244812,0.03177821,0.016246917,-0.032314926,0.009688888,0.034059264,-0.028110633,-0.0256954,0.012624067,-0.03739139,0.009951656,-0.046381425,0.044793632,-0.004886375,0.0027255237,-0.012802973,0.020618936,0.009700069,-0.0022307364,0.024644326,0.04969119,-0.022061368,0.013250238,0.0031252673,-0.016984904,-0.005892722,-0.018404974,0.044927813,-0.027842274,0.0069493866,-0.019333048,-0.005515342,-0.013652777,-0.05317986,-0.033857994,-0.012858882,-0.022083731,-0.0073239715,0.037816294,-0.0026137074,-0.011382906,-0.012993061,0.011164864,0.0485283,0.05541619,0.0121544385,0.01620219,0.018192522,0.011422041,0.0111872265,0.05018318,0.006815207,-0.010404512,0.017812347,-0.05693689,0.007027658,0.03725721,-0.023145987,-0.015262933,0.025337588,0.02077548,0.00717861,-0.0008868435,0.015486565,-0.005037327,-0.0071730195,0.011662446,-0.026612293,0.024554873,-0.011030684,-0.0038325058,-0.00008185307,-0.025851943,-0.0228329,0.03739139,0.002960338,0.005892722,0.018203704,-0.039135724,-0.003670372,-0.00049304025,-0.0035082384,-0.011237544,-0.041103695,0.005414707,-0.02296708,-0.006714572,0.027260829,-0.013652777,-0.0070220674,0.04222186,0.05134607,-0.009750387,0.025203407,-0.03582596,0.06597165,-0.022944717,0.004880784,0.024935048,0.007933371,-0.038218834,-0.023816885,0.02296708,-0.000011094279,0.006714572,0.015195843,0.00085120206,-0.0012467525,-0.011595356,0.001650689,-0.0057305885,-0.034685437,-0.020551847,0.026679384,-0.00005442312,0.0018617423,0.025113955,-0.056221265,0.0039051864,0.018158976,-0.011259908,0.03177821,-0.0021077383,-0.012903608,0.0017541192,0.025181044,-0.000032846056,0.015676653,-0.04647088,-0.016437005,0.015207025,-0.027037196,0.0015905877,0.0018882988,0.017275628,-0.005870359,-0.0040197982,-0.006233762,0.01093564,-0.045643438,0.0139099555,0.022944717,-0.010343013,-0.025069227,-0.039202817,0.021837736,0.0012467525,0.0077265105,-0.0023159964,-0.036474496,-0.009789523,0.027797546,0.0059989477,0.0009071102,-0.016593548,0.060067747,-0.026075576,-0.009783931,-0.00041791363,0.01709672,0.032717466,0.032717466,-0.04434637,-0.0054566385,-0.027372645,-0.011410859,-0.010874141,-0.023928702,0.002799602,0.014905121,0.0010587611,-0.040142074,0.027618641,-0.04387674,0.009655342,0.012601703,0.00031256166,0.0063735326,-0.0057110204,0.026522841,-0.0051854835,0.012221528,0.00135787,-0.0069158417,0.0028960437,-0.01776762,-0.038397737,0.036921762,-0.00772092,0.02542704,-0.01168481,-0.013921137,0.0034663072,-0.0011097774,0.012210347,-0.0034495348,0.023951065,0.046157792,-0.016369915,0.049646463,-0.0041931137,-0.009342257,-0.0008204525,0.0018673332,-0.010493966,0.008559543,-0.01969086,-0.013921137,-0.0117518995,0.004271385,-0.040701155,-0.0053811623,0.0049115336,-0.020462394,-0.00001511268,-0.0072345184,0.023973428,-0.01831552,-0.042937484,-0.011332588]},{"id":"guide-roles-7","type":"guide","source":"guides","text":"Guide: Roles (roles)\nSection: Permission bitfields for create/edit\nWhen creating or editing roles, pass permissions as a string (API format), number, PermissionString, or array. Use resolvePermissionsToBitfield() to combine multiple permissions. Handles high bits (PinMessages, ModerateMembers, etc.) correctly with BigInt.\n\n```javascript\nimport { resolvePermissionsToBitfield, PermissionFlags } from '/core';\n\n// Single permission by name\nresolvePermissionsToBitfield('SendMessages'); // \"2048\"\n\n// Array of permissions (OR'd together)\nresolvePermissionsToBitfield(['SendMessages', 'ViewChannel', 'ReadMessageHistory']);\n// Returns combined bitfield as string\n\n// From PermissionFlags enum\nresolvePermissionsToBitfield(PermissionFlags.BanMembers); // \"4\"\n```","meta":{"slug":"roles","url":"/guides/roles"},"embedding":[-0.029801585,-0.0013411003,0.00015403796,0.0075316313,-0.00687595,-0.02683071,-0.051711783,0.0032784063,0.011361274,0.045514725,0.02748059,-0.004331558,0.03864458,-0.0093246,-0.00018839957,0.017361049,0.0013693875,0.001939482,0.028594667,0.037205562,0.006324713,0.016966479,0.01925266,0.021480815,-0.05844267,-0.00017217074,0.024347246,0.040222857,0.005483352,-0.017488703,0.051897462,-0.021875385,0.0050684744,-0.0004924863,-0.03820359,-0.029314175,0.026482562,0.023407241,-0.006405948,-0.018916115,-0.011953128,0.009086698,0.007189284,-0.01358943,-0.000059702175,0.031519122,-0.03209937,0.013032391,0.001475283,0.025020333,0.010020899,0.047719672,0.0042474223,0.07882101,0.024115145,0.055796735,-0.04785893,0.009458058,-0.011929918,0.03267962,-0.000008023755,-0.05282586,-0.018939326,-0.013136836,0.00041669127,0.05366142,-0.08077065,0.010270406,0.026552191,0.09655342,0.027434168,-0.0039631003,0.030497884,-0.015689932,0.036184322,-0.025438113,0.03165838,0.04412213,-0.012904736,-0.02720207,-0.010160158,0.008349782,-0.04259027,-0.02163168,0.0037861243,0.049530048,-0.023001067,-0.045236208,-0.030683564,-0.06081009,-0.035743333,-0.031240603,-0.08230251,0.009899046,0.0057589705,-0.03801791,-0.03228505,0.02696997,-0.023929466,0.02759664,0.08569116,0.025089964,-0.040130015,0.0073749637,0.0059939716,0.0066438504,-0.0038470505,0.035789754,0.010142751,0.0011554207,-0.0673553,0.030149734,0.008407807,0.03669494,0.018266236,-0.00806546,-0.006202861,-0.012127203,0.031124553,0.029290965,-0.0722758,-0.06034589,0.024138356,-0.013136836,-0.046094976,-0.033027768,-0.034443576,-0.0671232,-0.0089938585,-0.025206013,0.028757136,-0.019055374,0.08350942,-0.04785893,-0.03790186,-0.006452368,0.010543123,0.011268434,-0.010073122,-0.034281105,0.0037542107,-0.008924228,0.017511912,-0.0018553459,0.011575966,0.045978926,-0.051479686,-0.006411751,-0.039155196,0.020946987,-0.050969064,-0.037205562,-0.026180832,-0.0076650884,-0.018126976,-0.05807131,0.044423856,0.03697346,-0.033770487,-0.011802264,-0.0052831667,0.0033973574,-0.025206013,-0.045514725,0.009156328,-0.025902312,0.017709197,-0.0014694805,-0.035998642,0.056910813,-0.019612413,-0.022153905,-0.011361274,-0.04284558,0.004789955,-0.009562503,0.014970423,-0.03650926,-0.023291191,0.010647568,-0.01370548,0.01698969,-0.02643614,-0.012788686,-0.034327526,0.0020758405,-0.031008502,0.008048053,-0.008419412,-0.009434847,0.020378342,0.04298484,0.023859836,0.010131146,0.005552982,-0.010926087,-0.012637822,-0.008605092,0.007676693,-0.023766996,-0.008825586,0.014506223,0.07775336,-0.0069919997,-0.02692355,-0.04340262,-0.03249394,-0.014169679,-0.019925749,0.000021532675,0.026343301,0.0066728625,-0.009527687,-0.02690034,-0.019670438,0.0010995717,-0.027364539,-0.041174464,-0.0757573,-0.02671466,-0.024950704,-0.04286879,0.007363359,-0.009655342,0.012591402,0.04217249,0.012777082,0.038783837,0.017036108,0.008692129,-0.00093202485,0.04293842,-0.046419915,-0.0540792,0.01356622,0.017105738,-0.025229223,0.018800065,-0.0010125344,-0.00592144,0.0026880032,-0.00008554138,0.018301051,0.003452481,0.0017175368,0.005170018,0.017720802,-0.0008914074,0.01855636,0.008692129,0.0384589,0.0188813,0.022246744,-0.0002471498,-0.0004634738,-0.022850202,0.010705593,0.06995481,-0.011314854,0.050087087,-0.020807726,-0.024416875,0.009423243,-0.03342234,-0.045700405,0.008152497,0.01100152,0.032981347,-0.023059092,-0.05282586,-0.0022586188,0.023186747,0.009794602,-0.018544756,-0.019844513,-0.044748798,0.053336482,-0.020888962,-0.03804112,0.017941296,0.014668693,-0.0107288025,-0.023198351,-0.012800291,0.0131716505,-0.00967275,0.0066438504,-0.056353774,0.023743786,-0.004186496,0.0081583,0.009893244,0.03254036,-0.003652667,0.019682044,0.029128496,0.025275644,-0.061599225,0.05426488,0.046303865,-0.0021121062,0.021654889,-0.0012765477,-0.023059092,0.020830937,0.014239308,-0.038691,-0.035023823,0.0006234049,-0.068469375,0.06568418,0.025948731,-0.03697346,-0.040153224,-0.056910813,0.0037222968,0.03718235,-0.010293616,0.0013374737,-0.004575263,0.019217845,-0.030288994,-0.012138807,-0.050736967,0.035186294,-0.0061390335,-0.026366511,0.025345273,0.050087087,-0.036021855,0.030033685,0.02692355,0.0014063783,0.04284558,-0.021155875,-0.007653483,-0.012324487,0.055100437,-0.01857957,0.00042902154,0.040803105,-0.0040733474,-0.009800404,-0.017593147,-0.017790431,-0.010612753,-0.010502505,0.016920058,0.050040666,0.010073122,-0.019682044,0.036277164,-0.058535513,-0.044284597,-0.023639342,-0.03397938,0.024904285,-0.072368644,-0.03172801,0.027527008,-0.07473606,-0.015179312,-0.017453888,-0.027248489,0.009957071,0.014610668,-0.018115371,-0.045329046,-0.020981802,-0.034954194,-0.017941296,0.033399127,-0.018335866,0.020041797,0.003629457,-0.008668919,0.0026575401,-0.0047638435,-0.025043543,0.012719057,0.016351415,0.0384589,-0.022815388,-0.056725133,-0.014773138,0.020714886,0.0070036044,0.00813509,0.00032639003,-0.007270519,0.011541151,0.056446616,0.077660516,0.062202685,-0.00554718,0.034768514,0.06651974,0.07988867,0.014947212,-0.031565543,0.009446452,0.027550219,0.022571683,0.03667173,0.018231422,-0.030172944,-0.046628803,0.0076186685,0.02338403,-0.0007673792,0.021364765,0.0111871995,0.017279813,-0.0094058355,0.08100275,-0.009075093,0.06020663,0.025577372,0.011193002,-0.015782772,-0.034791727,-0.0033509375,-0.013925974,-0.056400195,0.0377626,-0.024115145,-0.021411186,-0.07561804,0.014285728,-0.011825473,-0.029615905,0.023349216,0.012568192,0.00398631,-0.00347279,-0.016142525,0.030428253,-0.040106807,-0.026180832,-0.01953118,0.018324262,0.03172801,0.00692237,0.009063488,-0.0022484646,-0.0012627668,-0.020192662,-0.041731503,0.046628803,-0.02722528,-0.020645257,-0.018103767,-0.0016827219,0.031054923,-0.02091217,0.010635963,0.05389352,0.042451013,-0.008106077,-0.012544982,-0.039572977,0.022989463,0.04957647,0.008164102,-0.023233168,-0.025484532,-0.046396703,0.003417666,-0.0066728625,-0.007055827,0.008697932,0.0038267416,0.0132760955,0.011413496,0.012997576,-0.03741445,0.0021672298,-0.055982415,0.022618104,0.016757589,0.014065234,-0.0036120496,-0.044632748,-0.007647681,-0.0010074571,0.083695106,0.07148667,0.013554615,-0.044423856,0.008361387,-0.045259416,0.006904962,-0.0106765805,-0.010757815,0.0389231,-0.005750267,0.016235365,-0.014076839,0.03797149,-0.008576079,0.011152385,-0.03386333,-0.035650495,-0.015156102,-0.020413157,0.026087992,0.047464363,-0.028919606,-0.027805528,0.041847553,-0.0025052247,-0.003664272,-0.0032639003,-0.0111349765,-0.013809924,-0.0009994787,-0.0014056531,0.045537937,0.0063769356,-0.044331018,-0.0021788348,0.040199645,0.028919606,0.008506449,0.006417553,-0.009109908,-0.014912398,0.00400952,0.01051411,-0.03223863,0.040965576,-0.020645257,0.017744012,-0.01659512,-0.0072240992,-0.00088923145,-0.0057589705,0.040640634,0.004656498,-0.023581317,-0.0031333442,0.010647568,-0.035023823,0.023813415,-0.03769297,-0.012417327,-0.00024406721,0.011024729,0.0042242124,0.036207534,0.0065858252,-0.044888057,-0.027944788,0.005706748,0.019333893,0.020285502,0.0039079767,-0.025600582,-0.02664503,0.0002641946,0.020111429,-0.020633651,0.0027199169,-0.008883611,-0.03766976,-0.01932229,0.0041371747,0.023859836,0.06034589,-0.025438113,-0.004508534,0.036207534,0.014343753,0.027921578,0.0046477937,-0.012394117,-0.046211023,-0.0036381606,0.024045516,0.0036381606,-0.012672637,-0.047093004,0.040153224,0.009434847,-0.017987717,-0.023952676,-0.002862078,0.006260886,-0.011506336,0.001088692,-0.00020145517,0.023163537,0.0131716505,0.006347923,-0.010073122,0.0140884435,-0.006237676,0.0375305,-0.041476194,-0.015179312,0.018985745,-0.017906481,-0.046675224,0.01184288,-0.035232715,-0.015573882,0.034049008,-0.01051411,0.026250461,0.0075838533,0.019194635,-0.0047377325,-0.028316148,-0.014877583,0.00050554186,0.0009037377,0.019449944,0.014250914,0.030915663,0.02685392,-0.009933862,-0.0025458422,0.009545095,0.0054137222,-0.018962534,0.0024022306,-0.006168046,-0.020633651,0.021260321,0.011303249,0.007021012,-0.021086246,0.02149242,-0.0035511234,-0.028084047,-0.02650577,0.047951773,0.045189787,-0.008210522,-0.0135198,0.047766093,-0.034118637,0.016908454,-0.04460954,-0.011964733,-0.028269727,0.000050182465,0.0193455,-0.022351189,-0.018776855,-0.021480815,0.0056255134,-0.01610771,-0.016490674,0.006817925,0.0038470505,-0.0140884435,0.0031565542,-0.011883498,-0.0004725402,0.00046601243,0.012614612,-0.02142279,-0.0050017457,0.036184322,-0.011222014,-0.04980857,-0.0337937,-0.015597091,-0.0016290488,-0.008750154,0.05848909,-0.00463909,-0.003794828,-0.0050452645,-0.011239422,-0.009695959,-0.010873864,0.031936903,0.03154233,0.012695846,0.012927946,-0.004424398,-0.017256603,0.012301277,-0.027967999,-0.016560305,0.005370204,0.022107484,-0.046582382,-0.0031478505,0.02153884,0.013484985,-0.03274925,0.008175707,0.034977406,0.019171424,0.0054514385,0.016606724,-0.0629454,-0.015597091,0.027643058,-0.016212154,-0.022200324,-0.012173623,-0.025693422,0.02708602,0.04962289,0.023546502,-0.028408987,-0.03367765,-0.022525264,-0.007833361,-0.0026488362,0.016258575,0.0055123647,-0.014622273,-0.019670438,0.031403072,0.020471182,-0.00967275,0.0016841725,-0.01326449,0.012800291,-0.020076612,-0.0027358737,0.03790186,0.045700405,-0.0056632296,0.020053403,-0.016467465,0.008726944,0.016641539,-0.0011082755,-0.06512714,0.01056053,0.0070384196,0.008169905,-0.029894425,0.007369161,0.006463973,-0.013032391,-0.0059359465,-0.024161566,-0.052175984,-0.024625765,-0.02708602,-0.00946386,-0.013125231,0.052175984,-0.021921804,0.0070500243,0.018034136,-0.017604752,0.01650228,-0.034536418,-0.06396664,-0.01647907,-0.004505633,0.046884112,-0.013102021,0.079610154,-0.02671466,-0.012045967,-0.049483627,-0.0028432198,-0.011274236,-0.011071149,0.012707451,0.0012584148,0.009115711,0.012846711,-0.0024979715,-0.012220043,0.04762683,-0.011964733,-0.007589656,0.00032276346,-0.036393214,-0.0370663,-0.0028751334,-0.008686326,0.0013026588,-0.04393645,-0.01617734,-0.00051642157,-0.011338064,-0.019728463,-0.034072217,-0.017593147,-0.035511233,0.038296428,-0.02181736,0.010096331,0.0019264264,-0.0008254041,0.0056400197,-0.08197757,-0.015550671,0.030288994,-0.029198125,-0.04384361,-0.01837068,0.018219816,0.07626792,0.01895093,-0.02158526,0.025159594,-0.032981347,0.036718152,0.04804461,0.0193455,-0.015306966,0.019299079,0.0012344796,0.008239535,-0.009353613,-0.018266236,-0.01076942,-0.034768514,0.013055601,0.0067308876,0.023766996,0.013960789,-0.005790884,0.05305796,-0.046373494,0.00023826472,0.047766093,0.02694676,-0.0017378455,-0.011256829,0.01846352,0.0026909043,0.020645257,0.013299305,-0.031170972,0.013867949,-0.0032697027,-0.0029259052,-0.02258329,0.01848673,-0.02146921,0.040872734,-0.0011546954,0.0072415066,0.013032391,0.0022354089,-0.01876525,0.016548699,-0.029987264,0.034188267,-0.011274236,-0.008274349,0.03244752,-0.0063537257,-0.017024504,-0.010920284,-0.004343163,0.020355131,0.023500081,0.0547755,-0.018185,-0.012579797,-0.02673787,-0.003928285,-0.004351867,0.018185,-0.000084952066,0.0041313726,0.057607114,0.014262519,-0.01356622,0.012208438,-0.014517828,-0.064245164,-0.016061291,0.003995014,0.033724066,0.05556464,-0.011558559,0.04340262,-0.018811671,-0.0028374172,0.007392371,-0.0070442217,0.010972507,0.075014584,-0.009011266,-0.010299418,-0.023001067,0.025113173,0.0019148214,-0.033956166,0.03189048,0.0036613706,-0.015272152,-0.017651172,-0.0043808795,0.0015565178,-0.034838144,0.011326459,0.009272378,0.0071602715,-0.04370435,-0.0042155082,0.007392371,-0.011506336,0.0037426057,0.0044766204,-0.0066380478,-0.028130468,0.0167808,0.024532925,0.011332261,0.01892772,-0.024300825,-0.01083905,-0.012591402,-0.029360596,0.017732408,-0.014308939,0.025043543,0.015446226,-0.014239308,0.005303475,-0.010369048,-0.020993406,0.039596185,0.014007209,0.005930144,0.007757928,-0.013856344,0.013009181,0.026018362,-0.03834285,0.015121287,-0.0137519,0.021759335,0.042265333,0.04412213,-0.013102021,0.040013965,0.010189171,0.010641765,0.009191143,-0.0015971352,-0.005436932,0.010090529,-0.005790884,0.0021411185,-0.042451013,0.02151563,-0.004876992,0.019008955,-0.015156102,-0.0003960199,-0.017395863,0.039155196,0.009452255,0.014274123,-0.0023442057,-0.0052454504,0.0022209028,-0.008581881,0.04999425,0.0074678035,0.017314628,-0.0431241,0.021945015,0.022850202,-0.013241281,0.01671117,0.018359076,-0.014181283,-0.0076070633,0.0015129991,-0.009904849,-0.010612753,-0.00083555846,-0.008947439,0.013601035,-0.029848006,-0.012695846,-0.040013965,0.00007652033,-0.013960789,0.017070923,0.047905352,0.056214515,0.010450283,0.014889187,-0.013624244,0.010775222,-0.014900792,-0.015562276,-0.010044109,0.039155196,-0.019171424,-0.041336935,0.016281785,-0.022989463,-0.012428932,0.00550076,0.0010937692,-0.0027373242,0.041801132,0.024115145,0.017813642,-0.03674136,-0.010664975,-0.004543349,-0.01345017,-0.012823502,-0.012649426,-0.0017175368,0.0048450786,-0.012486957,-0.016235365,-0.017906481,-0.02197983,-0.013809924,-0.015504251,-0.0032784063,-0.002319545,-0.012788686,-0.011100162,0.014007209,0.0004384506,-0.0066032326,-0.023001067,0.057142913,0.0079262005,-0.014610668,-0.014471408,-0.010119542,-0.012695846,0.0066206404,0.041313723,-0.0038586555,-0.011570164,-0.0026836512,-0.0032464927,-0.010038306,0.014250914,0.007340149,0.008715339,-0.012544982,0.004482423,-0.005657427,-0.018614385,0.020146243,0.024950704,0.011941523,0.0036990868,0.020691676,-0.013125231,0.023952676,0.024927493,-0.0069803945,-0.0068933573,0.012092387,-0.0109841125,0.021132667,-0.0016885244,0.029778374,-0.0037106918,-0.01613092,-0.030451464,-0.0037774206,-0.01650228,0.0019438339,-0.00047145225,-0.031101342,0.029035656,-0.00557039,-0.012336092,-0.033631228,-0.009742379,-0.009713367,0.025020333,-0.030080104,-0.0027982504,0.0059823664,-0.024138356,0.010247196,0.022026248,0.030544303,0.009568305,0.030683564,-0.0645701,0.029267756,-0.023627736,-0.014123259,-0.0024559037,0.010664975,0.0025414904,0.010398061,0.01603808,-0.023105511,0.023024278,-0.024184775,-0.0044214968,0.019600809,0.01580598,-0.0036613706,0.002373218,0.011349669,0.022780573,0.041267302,-0.028478617,0.020181058,0.016304994,-0.01599166,-0.030613933,0.011506336,-0.023163537,-0.012568192,0.001396224,0.01610771,0.03165838,-0.0032668014,0.008796574,0.012811896,-0.0024559037,-0.006521998,0.008396202,0.02759664,-0.006928172,-0.01074621,-0.04259027,-0.018289447,0.0005624788,0.020053403,0.029058866,0.016850429,0.00046093523,-0.0045346455,0.00024316057,0.0036265557,0.054311298,0.0145990625,-0.0016856231,0.029290965,-0.05783921,-0.01321807,-0.012022758,0.05356858,0.013148441,-0.011732633,0.010740408,0.030544303,0.007021012,0.015689932,0.0048073623,0.0058460077,0.022931438,-0.012603006,0.03247073,0.0043953857,0.022246744,0.00014778215,-0.0001990979,-0.023592921,0.013102021,0.025809472,0.038482107,-0.007763731,0.015225732,0.0027938986,-0.010711395,0.007258914,-0.018939326,-0.010943495,-0.052036725,0.037507292,-0.0041458784,-0.020946987,-0.004424398,0.040988784,-0.010705593,-0.055935998,0.02130674,-0.008367189,0.004969832,0.018660806,0.01687364,-0.038853467,-0.0009066389,0.024115145,0.015411411,0.008372992,-0.019032165,0.0011503435,-0.0025124778,-0.021318346,-0.040431745,-0.030126525,0.04307768,0.008634104,-0.010154356,-0.009742379,-0.0014005759,0.025414903,-0.019473154,-0.017268209,-0.0008246788,-0.024556134,0.018312655,0.00057372113,0.01104794,0.0082279295,0.026296882,0.03374728,0.00468551,0.022165509,0.016560305,-0.0034002587,0.02151563,0.0071718767,0.017593147,0.0335616,0.011256829,0.03256357,-0.027155649,-0.006568418,-0.014227703,0.0148543725,-0.0040298286,0.036903832,0.039317667,-0.017395863,0.022618104,0.017337838,-0.058164153,-0.0010110837,0.0082279295,0.015875611,0.018614385,-0.012278067,0.018614385,0.0014353908,0.00941744,0.014436593,-0.021063035,0.019844513,-0.016490674,0.012498562,-0.0022470139,-0.0022600696,-0.00093927793,0.011906708,-0.011436706,-0.007142864,0.025275644,0.04846239,0.014076839,0.014784742,-0.015852401,-0.03650926,0.017569937,-0.02114427,0.0004718149,-0.0059939716,0.0038818654,0.039851498,0.0064697755,0.023906255,0.02690034,-0.003995014,0.019496365,0.008367189,0.011871893,0.020714886,-0.023534896,0.012997576,0.039572977,0.009376823,0.033886537,-0.015144497,-0.012997576,-0.016537094,-0.037019882,0.025902312,-0.03850532,0.012614612,0.020517603,-0.045746826,0.0052976725,0.010107936,-0.019658834,-0.002196242,-0.024811445,-0.0123593025,0.01846352,0.00473193,0.021620074,-0.03820359,-0.034838144,-0.0049379184,-0.022606498,-0.00042684563,0.018092161,0.0036671732,-0.01356622,-0.008442622,-0.009724972,0.035650495,0.0061564413,0.0074271862,-0.020703282,-0.02375539,0.0060519963,0.030033685,-0.0106243575,-0.002300687,0.01643265,0.0005729958,-0.005039462,-0.018962534,0.0054746484,0.028362567,-0.007345951,0.03850532,0.022861809,-0.031054923,-0.029708745,-0.02722528,-0.011523744,0.010340036,0.014947212,-0.012254857,-0.0061390335,-0.0025864595,0.0011249576,0.020030193,0.035789754,-0.030706773,-0.017128948,-0.020703282,-0.007345951,0.022316374,0.01580598,-0.0007601261,0.009922257,-0.0125101665,-0.004923412,-0.025159594,-0.014250914,-0.003936989,-0.0071950867,-0.03374728,-0.046048556,-0.011808066,-0.021991434,0.009614725,-0.04356509,-0.005254154,0.017651172,0.036277164,-0.0047522387,0.0010176116,-0.025020333,-0.001265668,0.008140893,-0.002927356,-0.0044708177,-0.017685987,-0.006318911,-0.0049988446,-0.0030347018,0.005750267,-0.00019547135,-0.0020787418,0.011918313,0.014053629,-0.051526103,0.0037077905,-0.01638623,-0.020006983,0.010717197,0.006121626,-0.038412478,-0.019380314,0.005538476,-0.012231647,-0.0037048894,-0.022339584,-0.024393665,-0.0026096695,0.0015144497,-0.0039776065,-0.018092161,0.02692355,-0.029917635,0.004990141,0.01046769,-0.0002322809,-0.0050829807,-0.0160845,-0.007258914,-0.012034363,-0.012835106,0.0024268911,-0.0039660013,-0.0025095765,0.023975886,0.011721028,-0.0025037741,0.02692355,-0.027643058,0.050690547,-0.00062086637,0.012939551,-0.0030753193,0.024973914,-0.019948957,0.0056226123,0.003974705,-0.017883271,-0.0060926136,0.017303023,-0.0044447067,0.03325987,-0.033538386,-0.027155649,-0.022664523,-0.020192662,0.036393214,0.042892,0.028896397,0.021039827,0.05426488,-0.03244752,0.020262292,-0.00951028,0.00018422904,0.017581543,-0.0035801358,0.008964846,-0.03722877,0.025832683,0.019856118,-0.015817586,-0.019032165,0.029383805,-0.002830164,-0.02641293,-0.011193002,0.019426733,-0.001697228,-0.007473606,0.010548925,0.013252885,-0.02692355,-0.002927356,-0.004705819,0.012196832,-0.015283757,0.009051884,-0.0326332,0.01592203,-0.0163166,-0.018509941,-0.03230826,0.0047116214,-0.033932958,-0.012753871,0.0035801358,0.020459577,0.006632245,0.07557162,-0.024022305,-0.019624019,-0.033724066,0.017036108,0.02239761,-0.0011873344,0.014691902,0.010334234,-0.021353161,0.024370454,-0.003037603,-0.0022441128,0.00036718877,-0.014401779,-0.0107288025,-0.003606247,-0.018010927,-0.034977406,-0.00091969455,0.036462843,0.025925523,-0.03704309,0.015016843,0.016374625,0.017152159,0.045700405,0.0036265557,0.031147763,-0.0070152096,-0.007792743,-0.0015507153,0.058349833,0.0006310207,0.024091935,-0.0050713755,0.0015115484,-0.0009175186,-0.0047116214,0.02172452,0.04389003,0.016629934,0.014320543,0.015980056,-0.008703734,0.016966479,-0.030892452,0.01580598,0.00016818152,-0.022061065,-0.010073122,-0.019507969,-0.028942816,0.020378342,0.015643511,-0.009841022,0.03205295,0.020076612,-0.023151932,-0.012185227,-0.00340316,-0.0005613908,-0.027898367,-0.01869562,0.01051411]},{"id":"guide-prefix-commands-0","type":"guide","source":"guides","text":"Guide: Prefix Commands (prefix-commands)\nSection: Basic Structure\nCheck for a prefix, split args, and dispatch to command handlers.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst PREFIX = '!';\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (message.author.bot || !message.content) return;\n if (!message.content.startsWith(PREFIX)) return;\n\n const args = message.content.slice(PREFIX.length).trim().split(/\\s+/);\n const command = args.shift()?.toLowerCase();\n\n if (command === 'ping') {\n await message.reply('Pong!');\n }\n if (command === 'hello') {\n const name = args[0] ?? 'there';\n await message.reply(`Hello, ${name}!`);\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"prefix-commands","url":"/guides/prefix-commands"},"embedding":[-0.013574409,-0.026486654,0.03622295,0.002224082,0.013611197,0.0047240662,-0.057093453,0.03695869,0.018234098,0.04534613,-0.001417833,-0.0044726883,0.066854276,-0.0304106,0.01629665,0.010355545,-0.06391131,-0.034113828,0.0103371525,0.031097293,0.07377023,-0.0067136306,0.02641308,0.065088496,-0.029282466,0.0026164767,-0.024303956,0.065088496,0.004279556,-0.02353143,0.055572923,-0.024536941,-0.011385582,-0.019435808,0.009135443,-0.011980305,0.03327999,0.00885954,-0.0042550317,0.025873536,-0.017069176,-0.046940234,0.017817179,-0.013807395,-0.022783427,-0.01635796,-0.032372575,-0.0005824611,0.02039227,0.03502124,-0.03732656,-0.0021826965,0.01656642,0.12331008,0.0036051278,-0.002429476,-0.060526907,-0.03511934,-0.0075781257,0.005839939,0.008976032,-0.050766084,0.019644268,0.027688362,-0.023212608,0.01882269,-0.014702545,0.003396668,0.061409794,0.037571806,0.043727502,0.05562197,0.015242088,-0.04995677,0.008571375,0.0016584814,0.009773085,0.0570444,0.02410776,-0.0027053787,-0.0018071623,0.0028785842,-0.008552982,-0.06400941,-0.03695869,0.02783551,-0.034677897,-0.020821452,-0.032568775,-0.06042881,0.00912318,-0.025333993,-0.059202574,0.04326153,0.033353563,0.010705022,0.025775438,0.0016554159,-0.040858116,0.040367622,0.101041675,-0.05802539,-0.06400941,-0.04277104,0.029306991,-0.014923267,0.0013097711,0.043310583,-0.01221329,0.0046842135,-0.052875206,0.0087062605,0.020907288,0.012556636,0.034825042,-0.013476311,0.026388554,-0.0030257322,-0.008044095,-0.03779253,-0.006269121,0.022096736,0.047087383,-0.0041232114,0.011986436,-0.07779228,0.0021750324,-0.011410107,-0.02071109,-0.040024277,0.083874404,-0.03769443,0.024365269,-0.029282466,-0.01751062,0.025799962,-0.008264816,0.017130489,-0.016063664,0.053610947,-0.009012819,-0.058613982,0.056161515,0.0062507275,-0.0007127485,-0.015953304,-0.05890828,0.019116987,-0.056553908,0.008712392,-0.011391713,0.024303956,-0.017878491,0.020784665,-0.00568666,0.025530191,0.019497119,-0.01194965,-0.05439574,-0.032642346,-0.0006682975,0.006382548,0.0068730414,-0.017571932,-0.047259055,-0.02945414,-0.0079582585,0.03217638,-0.020563943,0.037768006,-0.0095952805,-0.030852046,-0.0021964915,-0.005383167,0.034604322,-0.035830557,-0.061213598,0.01818505,-0.016419273,0.03558531,0.02825243,0.030361552,-0.003580603,-0.030753948,-0.016259862,0.024745401,0.00025367714,0.014346937,-0.04397275,-0.0015672803,-0.0050766086,0.002665526,0.022722114,0.009135443,0.036517248,-0.012348176,0.071121566,-0.020416794,0.014960054,-0.030042732,0.011348795,-0.0066829748,0.019950826,-0.0059564314,-0.020968601,-0.010459775,0.0055425772,-0.0023635658,0.0418391,-0.018013377,0.016063664,-0.0076823556,-0.0025153123,0.017155012,-0.067688115,-0.0142611,-0.006983402,0.021520406,-0.018589707,-0.039190438,-0.025775438,-0.053659998,0.05660296,-0.05056989,0.0026026815,0.037866104,0.026854523,-0.017032389,-0.00063266006,0.036173902,0.027663838,0.024573728,-0.014359199,-0.06180219,0.019435808,-0.021103486,0.0063396296,0.003801325,0.027222393,0.010024463,0.0069466154,-0.0345798,0.05238471,-0.032299,0.027271442,0.011888338,-0.024782188,-0.0343836,0.028963646,0.010938006,0.07715464,0.0066400566,0.03484957,-0.009877315,0.01896984,-0.021667553,0.015131727,-0.02626593,0.011931256,0.03401573,-0.04595925,0.0124707995,0.014015853,0.0072531737,-0.033672385,-0.009760822,-0.017682293,0.019386759,0.016394747,-0.030753948,0.00072577724,0.024684088,0.020662041,-0.033157367,-0.023200346,-0.03963188,0.02972391,0.044880163,-0.016750356,0.027712887,-0.040637393,-0.039877128,0.026069734,0.0073206164,0.02594711,0.034506224,0.0070385826,-0.042280547,0.033795007,-0.02044132,-0.020870501,0.015475072,-0.0090005575,-0.033378087,0.017608719,0.07465312,0.011937387,-0.04129956,0.03281402,0.053659998,-0.013071653,-0.0067442865,0.017216325,-0.011170991,0.02751669,-0.00301347,-0.017216325,-0.011753452,0.012139716,-0.053316653,0.028963646,0.036566295,-0.03641915,-0.01986499,0.02196185,-0.018896265,-0.016554158,0.020036662,0.018479345,0.0014009723,-0.000644156,-0.016554158,0.018847216,-0.037449185,-0.013329163,0.016480584,-0.01876138,0.011894469,-0.0062415306,0.053120453,0.0421334,-0.01939902,0.020208335,0.05056989,-0.004975444,0.00723478,-0.0383566,0.032642346,-0.009601411,0.022256145,-0.006928222,-0.028595775,-0.03936211,-0.0049049356,-0.028718399,0.03737561,0.013807395,0.0019297857,0.000041744643,0.015659008,-0.038699944,0.034113828,-0.023985136,-0.03470242,0.0071121566,-0.023372019,0.00086219574,-0.049883198,-0.03014083,0.00080165046,-0.034359075,0.008264816,-0.006014677,0.0066645816,-0.018957576,-0.0031146342,-0.029527713,-0.041397657,-0.011649222,-0.033427138,0.04328606,0.005404626,0.021164797,-0.018368984,-0.04125051,-0.018540656,-0.04617997,-0.009570756,0.025971634,0.019693317,0.034506224,0.012826407,-0.032274477,-0.021888277,-0.014101691,0.032642346,-0.0025628288,-0.0067749424,-0.015376974,-0.006909828,0.0401469,0.00053456135,0.03281402,0.033034742,-0.038013253,0.053954292,0.06410751,0.029110793,0.0077252737,-0.012532111,0.06297938,0.027958134,-0.027860034,0.0011013113,0.022660803,-0.0018960643,0.001011643,0.019803679,0.0034426518,0.005806218,0.07558506,-0.014763856,0.04917198,0.06126265,0.03313284,-0.0438256,-0.0026348701,-0.049883198,-0.018197311,-0.026462128,0.014714807,0.0039975224,-0.0042856876,-0.0110851545,-0.004923329,0.04019595,0.02903722,-0.06626568,0.014322412,-0.05419954,-0.024782188,-0.034677897,0.044782065,0.021888277,0.019227348,-0.0083567845,0.03766991,0.013243327,-0.013267851,-0.0020002942,0.0067258934,0.0043286057,0.0057632993,0.035364587,-0.03369691,0.00297515,-0.01645606,-0.018565182,0.011262959,-0.0016768749,-0.0458121,-0.045297083,-0.007835635,0.01174119,-0.0014891078,-0.018908527,-0.009086394,0.018136,0.06798241,0.04355583,-0.026829999,0.026118783,-0.028963646,-0.0014822102,0.011250696,0.014420511,-0.023126772,0.032421626,-0.011471419,0.016345698,0.03791515,0.047430728,-0.006232334,-0.019460332,0.0009526305,-0.030729422,0.0064193346,-0.05101133,0.025101008,0.022268409,0.048681486,-0.00010346349,0.016075928,-0.022194834,-0.02626593,0.10535802,0.0039607356,0.01573258,-0.028865546,0.003654177,-0.047430728,0.008933114,0.036566295,-0.0132188015,0.03747371,-0.016186288,0.00047593206,0.02196185,-0.0014592183,-0.010631449,0.007995045,-0.04257484,-0.018945314,0.016259862,0.040367622,0.0008982164,0.036517248,-0.022807952,-0.022844737,-0.025015172,-0.015744844,-0.023813464,-0.037154887,0.006897566,-0.018798167,0.059251625,-0.028007183,0.016026877,0.014628971,-0.041667428,0.020821452,0.0030809129,-0.0068791723,0.025873536,-0.026535703,-0.031219916,-0.03668892,-0.069061495,-0.038724467,0.022942837,0.040809065,-0.0030885767,0.0024110824,-0.02207221,-0.013145228,0.031391587,0.0029950764,-0.009141574,-0.014861955,0.015609958,-0.036443673,0.02557924,-0.004503344,0.012102929,-0.041275036,-0.01200483,0.014101691,0.035315536,0.01053335,0.024831237,0.010827646,-0.026094258,0.014003592,-0.012985817,0.039607357,0.017424785,0.019006627,-0.017437046,0.04161838,-0.0063334983,0.0038197187,-0.010944138,0.017964328,-0.022734378,0.023163559,-0.020686567,0.005042887,-0.0033047004,-0.012176503,-0.053954292,0.007854029,0.012826407,-0.011459156,0.056063414,0.024034185,-0.019484857,-0.016370224,0.0002220633,-0.013255589,-0.04257484,0.010962531,-0.043114386,0.04350678,0.051403727,-0.0032311263,-0.021275159,-0.0014308618,-0.0035499472,-0.00031747963,0.054444786,0.0035714062,-0.0035100947,-0.005027559,0.004245835,-0.030655848,0.008142194,0.015401498,0.008712392,-0.0050827395,0.0033782744,0.008583638,-0.02935604,-0.014003592,0.007381928,-0.03433455,-0.0125198485,0.020122498,-0.024512416,0.0155976955,-0.015143989,0.0064867777,0.030606799,-0.039141387,-0.044487767,-0.019300923,0.015916517,-0.016639994,-0.014089428,-0.011201647,0.009625936,0.018319935,0.0024846564,-0.01106063,0.009816003,0.0048620175,0.03146516,0.0022639344,-0.040637393,0.031268965,0.010251315,0.05238471,0.002732969,0.011851551,0.0064070723,-0.019619742,0.020662041,0.034064777,0.00061579933,0.028178856,-0.029674862,0.046523314,-0.038233973,0.05792729,-0.021471357,-0.018172788,-0.012010962,-0.04058834,0.03470242,-0.0034978322,-0.0065235645,-0.0033660121,0.024610516,0.016958816,-0.019926302,0.001336595,-0.017179538,0.0012277667,-0.008369046,-0.013979067,0.022341982,-0.020796927,0.00015069265,-0.0065174336,0.020343222,-0.014064903,-0.005465938,-0.015867468,0.017486095,-0.0064806463,0.012066142,0.001750449,0.04728358,0.053905245,0.020576205,0.00186081,-0.011189384,-0.0105394805,-0.037154887,0.03175946,0.00028375819,0.03161231,0.022807952,-0.021140274,0.030238928,0.024966123,-0.024156809,-0.021569455,-0.027246919,0.0073451414,0.009944757,-0.023837987,-0.0014147674,0.026339505,-0.017903015,0.015659008,-0.0019727037,0.0323971,0.035756983,0.008693999,-0.020539418,-0.0060821204,-0.027394066,-0.0013956075,0.027860034,0.008761441,-0.035928655,0.02626593,0.033108316,0.025726387,-0.0161495,-0.032372575,-0.0004284155,-0.037866104,0.00045217376,-0.022525918,0.016689043,-0.00707537,-0.014960054,0.0066829748,-0.029380566,-0.010987056,0.007044714,0.007762061,0.014849693,0.003122298,-0.041495755,0.019877251,0.02773741,-0.01446956,0.048951257,0.02060073,0.021765653,-0.018332196,0.045027312,-0.01153273,0.0019849662,-0.016590945,-0.010809252,-0.025333993,-0.020110236,-0.0028969776,-0.007633306,-0.020245122,-0.01666452,-0.0001007811,-0.012875456,-0.014947792,0.018884003,-0.04100526,-0.022256145,-0.017449308,0.008418096,0.010698891,-0.01184542,-0.0028601906,-0.019092463,-0.024990648,0.001122004,-0.034064777,0.01749836,0.0032679134,0.022317458,-0.004812968,0.028203381,-0.017216325,0.0037614726,-0.016345698,-0.023666315,-0.010551743,0.010226791,0.05267901,-0.008013438,-0.0067381556,0.018528394,0.03340261,-0.03700774,-0.043359634,-0.004696476,-0.028963646,-0.004911067,-0.010766334,0.019325446,-0.012354307,-0.01278962,0.009975413,-0.00602694,0.0002009874,-0.0039791293,-0.026633801,-0.021299683,0.0053586424,-0.019190561,0.0011350327,-0.039435685,0.016738093,0.0029874125,0.009957019,-0.1295884,0.0051379204,0.024058709,0.011544992,-0.019018888,0.0061464976,-0.0065358267,0.049392704,-0.013549885,-0.014579921,0.03097467,0.026633801,-0.0049662474,0.0052605434,0.032004707,-0.021140274,0.042010773,-0.0285222,0.0026992476,-0.03622295,0.008129931,-0.00078478974,-0.020895027,0.047725026,0.005625348,0.0360758,-0.0040619,0.0013841116,0.025333993,-0.0010009134,-0.019938564,0.015352448,-0.015953304,0.005668266,-0.0031851425,0.024647303,-0.00943587,-0.004288753,0.03298569,-0.09054511,-0.0011227705,-0.04031857,-0.01200483,0.007369666,-0.005941103,0.014359199,0.010655973,-0.015438286,0.008289342,-0.012814145,-0.022795688,-0.012023224,-0.0017489161,0.02228067,0.05665201,0.031833034,-0.041741002,0.026535703,0.0064193346,0.010006069,0.0025352386,-0.0031575523,0.019497119,-0.012102929,-0.009558493,-0.026928097,-0.021360995,0.014923267,0.024708614,-0.0019451135,0.02783551,0.036149375,0.053267602,0.042967238,-0.00012693438,0.020318696,0.001052262,-0.0323971,0.009748559,-0.02631498,0.013329163,0.018209575,0.031857558,0.038650893,0.068227656,-0.046057347,-0.025113272,-0.0004644361,-0.00030904927,0.0011028441,0.056112465,-0.024046447,0.01472707,-0.008896328,0.018111475,0.0016293584,-0.04102979,0.035732456,0.021863751,-0.018810429,0.021630766,-0.019963088,-0.012121323,-0.009245804,-0.04115241,0.048387192,-0.014040379,0.0018700068,-0.04240317,-0.055523872,0.022709852,-0.0065664826,-0.018209575,-0.0011066762,-0.041765526,-0.0025827552,0.03475147,-0.028816497,-0.039264012,0.012801882,0.029969158,0.011072893,-0.035830557,0.0028096086,-0.014187527,-0.0066952375,-0.0046320986,0.002723772,-0.03470242,0.0063334983,0.016971078,0.010876695,-0.014861955,0.02972391,0.033893105,0.0034211928,-0.0011028441,0.02232972,-0.0049570506,0.025101008,-0.021078961,0.0050398214,-0.0058736606,0.007308354,-0.0076455683,0.008945377,-0.0043991143,0.014248839,-0.002208754,-0.047847647,-0.008632687,-0.018368984,-0.0048037716,0.005196166,-0.022268409,0.034530748,0.019484857,-0.012354307,-0.00006653277,-0.015389236,-0.002414148,0.00067826064,0.0019405152,-0.032617822,0.001247693,0.028105281,-0.005720381,-0.0054383473,-0.004239704,-0.023359757,-0.002806543,-0.0089515075,0.019141512,-0.011066761,0.03413835,0.032225426,0.05096228,0.00031058205,-0.026829999,0.01525435,0.029871058,0.01923961,-0.007590388,0.019190561,-0.0005387765,-0.0118760755,0.0010445981,-0.005193101,0.0002594251,-0.029233417,0.030852046,0.010754071,0.052286614,0.0051777726,-0.015536384,-0.00021248336,0.038969714,-0.00006782606,-0.03413835,0.00091584347,-0.037964202,0.05258091,-0.001713662,-0.016137239,0.011422369,-0.013182015,-0.037890628,-0.00828321,0.018773641,0.039558306,-0.015928779,-0.00980374,-0.03156326,0.030631324,0.015560908,0.002023286,-0.016897503,0.0038442435,-0.0034058648,0.003470242,-0.020563943,0.0017182603,0.020576205,0.019828202,-0.010416857,-0.007296092,0.01834446,-0.03722846,-0.007510683,0.008117668,-0.004068031,-0.03678702,0.0050091655,-0.008129931,0.0027375673,-0.0058644637,0.0044420324,0.019215086,0.012194896,0.01834446,0.021397782,0.014763856,0.03381953,-0.0024831237,0.01933771,0.015475072,-0.011649222,0.042280547,0.0048099025,0.01839351,0.016701305,-0.0015350915,0.035634357,-0.011771846,-0.008841147,0.0100122,0.0073451414,0.03156326,0.015487335,0.014665758,0.0039178175,-0.005435282,0.00943587,-0.024966123,-0.013292376,-0.0035346192,0.024132283,0.0070937634,0.012188765,0.002297656,-0.029552238,0.01677488,0.002009491,0.013329163,-0.028178856,-0.018933052,0.009999937,-0.027075246,-0.005288134,-0.024402056,-0.017032389,0.018994363,-0.038994238,0.020048926,-0.016897503,-0.02080919,-0.00574184,-0.034064777,-0.005447544,0.011508206,0.038013253,-0.017032389,0.0048865424,0.0016554159,0.023335231,0.0023635658,-0.038233973,-0.018319935,-0.005236019,0.0162476,-0.028350528,-0.008730786,-0.0012745169,-0.013917755,0.01221329,0.026928097,-0.013243327,-0.022108998,0.047087383,-0.0024386728,-0.028914597,0.0325933,0.026388554,-0.009963151,-0.0058736606,0.005205363,-0.0030809129,-0.021091223,0.006578745,-0.0026793212,0.00237123,0.020269647,-0.002038614,0.027860034,-0.0073512723,-0.017253112,-0.016333437,0.0058613983,0.009834396,-0.030018207,0.04617997,-0.021692079,-0.0019297857,-0.0054291505,-0.030802997,0.024671827,-0.05576912,0.033378087,0.047013808,0.034726944,-0.035291012,0.010177742,-0.01912925,0.015904253,0.032961167,-0.012219422,0.019116987,-0.033059265,-0.01824636,-0.013378212,0.066854276,-0.00169067,0.001495239,-0.003684833,0.050717037,0.040980738,0.012384962,-0.0200244,0.0048620175,-0.03401573,-0.021777915,0.040073324,0.009503313,-0.010993187,0.028546726,0.012814145,-0.0074616335,0.024610516,0.039337583,-0.0052390844,0.004392983,0.043629404,0.007676224,-0.001125836,-0.01373382,-0.023543691,-0.016051402,-0.03234805,0.022023162,-0.02091955,0.0011426967,0.005668266,-0.037620857,-0.018589707,-0.037032265,0.019582955,-0.033255465,0.008528457,0.011649222,0.00854072,-0.017167276,0.0012292995,0.011606304,-0.03507029,-0.019227348,0.020085711,0.009233542,-0.0021091225,-0.03156326,0.013746083,-0.011036105,0.017657768,0.006468384,-0.009472657,0.0006464552,0.004644361,0.034359075,0.023862513,0.013083916,0.0045799837,-0.030606799,0.032936644,0.010557874,-0.018074688,0.0054015606,0.011318139,-0.020821452,-0.0037553415,-0.03894519,0.02977296,0.009865052,-0.04414442,-0.00067902706,0.029257942,-0.019926302,0.017056914,0.011048368,-0.029601287,0.013034867,0.044414192,0.024941599,-0.027663838,0.014628971,0.016639994,0.014690283,-0.015744844,-0.0048620175,-0.01771908,-0.03879804,0.0012369634,-0.018172788,0.03374596,-0.0012155044,-0.008779835,-0.0067872046,-0.008313866,-0.016210813,-0.0057357093,-0.026879048,-0.023752151,0.00828321,-0.012765096,-0.011379451,0.0032587168,-0.023617266,-0.01022066,-0.008362915,0.013280113,-0.0038626369,0.002170434,-0.004435901,-0.030876571,0.018111475,-0.010147085,-0.010803121,0.0012270004,-0.013586672,0.03369691,-0.0054751346,-0.003182077,0.027320491,0.046449743,0.010079643,-0.004816034,-0.012985817,0.006431597,0.015340187,-0.017363472,0.0053034616,0.036443673,-0.017032389,0.006578745,-0.025677338,0.0020570075,-0.014543135,-0.021802438,0.025027435,-0.03641915,-0.0033905369,0.0019313184,-0.021618504,0.035928655,0.00990797,-0.0009970815,0.0162476,-0.026241407,0.030680373,-0.025750913,-0.023408806,-0.008522326,-0.010582399,-0.030238928,0.027271442,0.007412584,0.024573728,0.019092463,0.0009840528,0.019950826,-0.004865083,-0.030337028,-0.01629665,-0.023825726,0.015438286,-0.029552238,-0.00602694,0.0071121566,0.025113272,-0.018479345,-0.0030916424,-0.013979067,0.0017550474,0.00019734702,0.001705998,-0.020514894,0.0089515075,-0.0033322908,0.0073267478,0.008270948,-0.017375736,-0.039141387,-0.02431622,-0.000526131,-0.007437109,0.0058644637,-0.016259862,0.029282466,-0.001207074,0.0013358286,-0.0055272495,0.023887036,-0.021925062,-0.03683607,0.035830557,-0.0015818417,-0.007903078,-0.030484175,-0.014984579,-0.008908589,0.013255589,-0.00043224747,0.00007869931,0.005677463,0.035340063,0.031367064,-0.021790177,-0.018589707,0.0076516997,0.0047976403,-0.012427881,-0.0047485908,-0.012010962,0.024070973,-0.012691521,-0.029920109,0.007933734,-0.013905493,0.009356165,0.014579921,-0.005493528,0.0051777726,-0.025284944,0.013108441,-0.028791973,-0.0075352076,0.01163696,0.02248913,-0.030950144,-0.011299746,0.025922585,0.004923329,0.008847278,0.01871233,-0.009742429,0.0031575523,0.01221329,-0.02908627,-0.01578163,-0.008522326,-0.044683963,0.021876013,0.004031244,-0.028276954,-0.0039300798,-0.010723416,0.012029354,0.031931132,0.026903573,0.0007855561,-0.026143307,0.008681736,0.009883446,0.0017075307,-0.0038932927,0.0051041986,0.011538861,-0.016701305,0.008877934,-0.0058522015,-0.006014677,0.02500291,0.028178856,-0.02678095,-0.012292995,-0.030287977,-0.016517371,-0.000025338975,0.0075965193,0.025383042,-0.015560908,0.021410044,-0.009938626,0.009625936,-0.031783983,-0.01771908,-0.018847216,-0.022979625,0.002245541,-0.0005659836,-0.017682293,-0.0038258499,-0.008375178,0.013169752,0.03190661,0.03082752,-0.017682293,0.040269524,-0.005928841,-0.0017305226,-0.0063396296,0.0070998943,0.032421626,0.0044542947,0.0011181721,0.026756424,-0.024242645,-0.018798167,-0.00095799525,0.01839351,-0.018074688,-0.0305087,-0.019644268,-0.008087013,0.0011871477,-0.010386202,-0.015855204,0.048264567,0.02631498,-0.0077497982,-0.029110793,0.010128693,0.013120703,-0.021042174,0.017326685,0.030042732,-0.01677488,0.016799405,0.005754103,0.007486158,0.023911562,0.026879048,0.02495386,0.0133659495,-0.0009978479,-0.003779866,0.043212485,0.050717037,-0.018062426,0.004607574,0.013905493,0.022893788,-0.016431535,0.015327924,0.022648541,0.001524362,0.02085824,0.016922029,-0.0055333804,-0.011722797,0.018086951,-0.028718399,-0.026756424,-0.03681154,-0.008571375,-0.017804917,0.025530191,0.024610516,-0.03423645,0.0098957075,-0.0073144855,-0.028056232,0.026879048,-0.00021382455,0.030435126,0.0016646126,-0.043727502,-0.010760203,0.02599616,-0.0012890784,0.04593472,-0.009012819,-0.028448626,-0.00080548244,-0.01573258,0.038503744,-0.010974794,0.019803679,-0.023715364,0.0077130115,0.015916517,0.016860716,-0.017657768,0.022207096,0.020318696,-0.01573258,-0.005058215,0.020993125,-0.02584901,0.020882763,-0.010312627,-0.03134254,-0.0074187154,0.0022210162,0.015229826,-0.010300365,0.029699385,0.018307673,-0.0033936023,-0.027860034,-0.013047129]},{"id":"guide-prefix-commands-1","type":"guide","source":"guides","text":"Guide: Prefix Commands (prefix-commands)\nSection: Guild-Only Commands\n\n```javascript\nif (!message.guildId) {\n await message.reply('This command only works in a server.');\n return;\n}\n```","meta":{"slug":"prefix-commands","url":"/guides/prefix-commands"},"embedding":[-0.013338029,0.00095869176,0.036594253,0.008827326,-0.008439165,0.03461329,-0.07126108,0.038628753,-0.0026769752,0.020050544,-0.007555763,-0.01273571,0.09187379,-0.009677266,0.001001356,0.0005065339,-0.06815579,-0.00900133,0.0035838005,0.053271808,0.07918493,0.023905389,-0.019849772,0.0780606,-0.027599614,0.025565114,-0.004828594,0.06906596,0.009516647,-0.029125491,0.029928584,-0.033221263,0.0015476263,-0.039458614,-0.013137256,-0.0033679695,0.03921769,0.026595749,0.0051866397,0.023155836,-0.023383379,-0.044866104,0.01682479,-0.038655523,-0.043554388,-0.0035637233,-0.041600194,-0.017159412,-0.011992849,0.006063349,-0.032204013,0.016811404,0.00056885724,0.119393095,-0.017601112,-0.015740614,-0.057608508,-0.014027351,0.008593091,0.0036440326,0.012789249,-0.024547864,-0.011263373,0.045187343,0.04026171,-0.0017902273,-0.009958348,0.011316913,0.047998168,0.01564692,0.0042831604,0.015419377,0.0146029,-0.039886933,-0.025123414,0.018671902,0.012468012,0.07666857,0.027813774,-0.020759944,-0.0036440326,0.021375647,-0.056002323,-0.027974391,-0.029767964,0.0074888384,-0.039297998,0.024092777,0.016918484,-0.011437377,0.012059773,-0.06430095,-0.06483634,-0.019287607,-0.005377374,-0.0051565235,0.027813774,0.00051448116,-0.045883358,0.06494342,0.104187876,-0.06365847,-0.07773936,-0.06451511,0.041466348,0.01847113,-0.016450012,0.028402707,-0.0046445522,0.023677846,-0.068905346,0.007087292,0.025765887,-0.004875441,0.0050661755,0.0023791618,0.004962443,-0.043126073,0.007843537,-0.025899736,-0.021670114,0.028456246,0.042697754,-0.04229621,0.015713844,-0.032123704,-0.0036139167,-0.023838464,-0.028108241,-0.008064388,0.02703745,-0.011751921,0.036112398,-0.024186471,-0.019930081,0.028215319,-0.0292058,-0.031936314,-0.037129648,0.050460983,-0.011323606,-0.023718001,0.043018993,0.028804254,-0.04328669,-0.028001161,-0.07077923,-0.027024066,-0.029366419,-0.0053974516,-0.059589468,0.0061436584,-0.0045441655,-0.010600822,-0.048105244,0.012012927,0.004065656,-0.01570046,-0.07720397,-0.0031119836,-0.028054701,-0.01567369,0.010707901,-0.032096934,-0.029312879,-0.044170093,0.042430058,0.02165673,-0.021589806,0.047998168,0.0127624795,0.022914909,-0.030249821,-0.030972604,0.020759944,-0.00050444255,-0.03156154,0.014696594,-0.035443153,0.0071542165,0.040368788,0.014134429,-0.0055513773,-0.030517519,-0.016945254,0.035336073,-0.011457454,-0.020050544,-0.021509496,-0.0014455667,-0.023021987,0.009369413,0.03236463,0.03247171,0.029286109,-0.019823002,0.06665669,-0.04430394,0.023517227,-0.029767964,0.035496693,-0.008613168,0.03378343,-0.0082049295,-0.029071951,-0.029660886,0.024079392,-0.021924427,0.009784345,-0.00284094,0.0013794788,-0.018029429,-0.006919981,-0.00016250076,-0.046713218,-0.039753083,-0.043045763,-0.0189396,-0.024213241,-0.039458614,-0.07506239,-0.009978426,0.035336073,-0.022192124,0.019367917,0.027679924,0.019006524,-0.004427048,-0.008412395,0.054985072,0.021014256,-0.026662674,0.0048921723,-0.04882803,0.011490916,0.006595398,0.015446147,0.047891088,0.028161779,-0.03466683,0.0068062097,-0.026328051,0.050327133,-0.028322399,0.02160319,-0.040449098,0.0014882309,-0.0057220347,0.0135454945,0.024762021,0.055359848,0.04446456,0.0034097973,-0.0205324,0.02173704,-0.0061804666,-0.020599324,0.0013476898,0.038601983,0.011169679,-0.047810778,0.00022210529,-0.020505631,-0.0050159823,-0.051424693,0.027090989,0.03375666,-0.0020863677,0.004714823,-0.011276758,0.016409859,0.010861827,0.072117716,-0.03702257,-0.016436627,-0.0003772862,0.017159412,0.056377098,-0.016516937,-0.0024193164,-0.033007104,-0.0078100753,0.007160909,0.008111235,0.033033874,0.025953274,0.00072947575,-0.03688872,0.018190047,-0.00952334,-0.01564692,0.014776903,0.0061804666,0.012775864,0.014576131,0.021295339,0.052120708,-0.0043467386,0.03279295,0.057769127,0.0011502628,-0.010935443,0.0049825204,-0.0381469,0.015365838,0.004862056,0.016048467,-0.0135588795,-0.006980213,-0.033114184,0.03488099,0.050648373,-0.04438425,0.023463689,-0.021014256,-0.029955354,-0.003603878,0.04023494,0.047275383,0.027318532,0.043741774,-0.013706113,0.012367626,-0.041386038,-0.025524959,-0.011035831,-0.015539842,-0.013077024,0.01847113,0.0760261,0.03464006,-0.01907345,0.009182025,0.05734081,0.01844436,0.018819137,-0.028804254,0.04320638,0.0029965392,-0.013418338,0.011892462,0.022607056,-0.02225905,-0.013659266,-0.014870598,-0.01901991,-0.023958929,0.038816143,0.002427682,0.020211164,-0.011082677,0.03589824,-0.023169221,-0.08684108,0.012099928,-0.055948783,0.019501764,0.009891423,0.003941846,0.026729599,-0.062212903,-0.008787171,0.0006993598,0.018712057,0.017534187,0.021790579,-0.002948019,-0.012394396,0.011122832,-0.01844436,0.011544456,0.0027438996,0.004721515,-0.015526457,-0.022473207,0.03683518,-0.02116149,0.022513362,0.044571638,0.010828365,0.026394976,0.000106817584,0.00085914176,-0.0015551553,0.01679802,0.013391568,-0.0009553455,0.0014455667,-0.037156418,-0.031963084,0.03897676,0.020304857,0.012307393,0.004350085,-0.025096644,0.035362843,0.027947621,-0.0026686096,0.014535976,-0.038334284,0.036594253,0.021442572,-0.017989274,0.035282534,0.01674448,0.008613168,-0.003267583,0.013880117,-0.03241817,-0.0022202164,0.04775724,0.030678136,0.048854798,0.043929163,0.032953564,-0.047061224,0.0216835,-0.07383098,-0.011771998,-0.012949868,-0.020572554,0.0036774948,0.019006524,-0.00979773,0.051424693,0.02324953,0.002153292,-0.06440803,0.03464006,-0.068851806,-0.052388407,-0.022821214,-0.0059964247,0.02165673,0.018216817,-0.00014995244,0.011618072,0.0016705999,-0.030089201,-0.0146296695,0.008552936,-0.005236833,-0.047837548,0.014442282,-0.015513072,0.006745978,-0.0049590967,-0.04775724,0.03996724,-0.015365838,-0.028349169,-0.019341147,0.0026184164,-0.019113604,-0.007254603,-0.050594833,0.0032173896,0.021389032,0.03589824,0.0369958,-0.037424114,0.0035938392,-0.023932159,0.04773047,-0.014013966,0.033140954,-0.03900353,0.045695968,0.0011352048,-0.003771189,0.007107369,0.042001743,0.011316913,-0.01580754,0.028161779,-0.01139053,-0.01353211,-0.028322399,0.01564692,0.012066466,0.024936024,-0.024708482,0.03485422,-0.023115681,-0.011229911,0.050701912,0.023410149,0.00066046,-0.024547864,-0.0010113947,-0.039485384,0.009188717,0.0055513773,-0.015285528,0.012528244,0.020385167,0.0074486835,-0.0046579367,0.014469051,0.006709169,-0.024092777,-0.030865524,-0.033997584,0.046204593,0.023155836,0.0001370904,-0.0061905053,-0.024480939,0.013665958,0.00065125787,-0.047328923,-0.027679924,-0.030597826,-0.037557963,-0.020880407,0.036567483,-0.06253414,0.0043166224,0.0014146141,-0.02270075,0.018230202,0.030517519,0.017146027,-0.0075089154,0.009021407,0.01193931,-0.014415512,-0.027331917,-0.010600822,0.018230202,0.021201644,-0.04882803,0.015740614,0.016583862,-0.024025854,-0.016864944,-0.02173704,0.013264412,0.014817058,-0.034452673,-0.009202102,0.04979174,-0.01630278,0.0070404448,-0.03683518,-0.020920562,-0.027117759,0.025953274,0.005885999,0.016369704,-0.021563036,-0.041359268,-0.010493743,-0.010667746,0.02648867,-0.019930081,-0.009108408,-0.024695097,0.0653182,-0.0012598515,0.043688238,-0.014295048,0.0070337523,-0.017253105,-0.0016898406,-0.0103598945,0.0058257673,0.018618362,-0.029848274,-0.049952358,0.012869558,0.024762021,-0.031133221,0.037611503,0.03485422,-0.0065753204,-0.028456246,0.030999374,-0.0039786543,-0.012126698,0.028670404,-0.029901814,0.06333724,0.04550858,-0.040636484,-0.0401814,-0.027438996,0.022473207,0.012601861,0.030303359,-0.020840252,-0.003024982,0.0007031243,0.0016915137,-0.012675478,0.003423182,0.013880117,0.007622687,0.00839901,0.00436347,0.012454627,-0.021509496,-0.01904668,0.026261127,0.0093158735,-0.0075892247,0.03263233,-0.013157333,0.04328669,-0.016182315,-0.001253159,0.010353202,-0.026314666,-0.07490177,-0.040797103,0.00448728,0.0045475117,-0.0073750666,-0.008378932,-0.0005274478,0.022165354,-0.003160504,-0.023637692,0.007455376,0.003423182,0.03908384,-0.00043793643,-0.043741774,0.02272752,-0.006284199,0.020746559,-0.02332984,-0.019608844,-0.021308724,-0.019367917,-0.010105582,-0.008332086,-0.005149831,0.039458614,-0.017306644,0.019930081,-0.024494324,0.06772748,-0.016409859,0.018872676,-0.013498648,0.025779271,-0.009108408,-0.001176196,-0.024588017,-0.012628631,0.012528244,0.0043802005,-0.009596956,0.0008541224,-0.022687364,-0.02066625,-0.014067505,-0.01616893,-0.0061336197,-0.024507709,0.0151650645,0.0064414716,0.025926506,-0.014107659,-0.017146027,-0.024855714,0.0056049167,-0.004751631,0.0068798265,0.0009837884,0.016704326,0.034024354,0.022847984,-0.0019458263,-0.0076026097,-0.033007104,-0.06858411,0.0067894785,-0.017668037,0.012675478,0.012494782,-0.0021599843,0.041439578,0.02434709,0.01572723,0.0060533104,0.009476492,0.0034466055,-0.020960717,0.008760401,-0.012581783,0.03263233,-0.0066255135,-0.008004156,0.001863844,0.017159412,0.03383697,0.0018236894,-0.044009473,-0.0011042523,-0.005102984,-0.010507128,0.011042523,0.023691231,-0.011470839,0.012969946,0.025632039,0.008030926,-0.018203432,-0.040475864,0.034265283,-0.080844656,0.0047917855,-0.0095768785,-0.011022446,-0.011852308,-0.025739117,0.027305147,-0.022339359,0.003085214,0.01729326,0.006709169,0.00013834525,-0.023624307,-0.021000871,0.0145895155,0.039405074,0.0021298684,0.022941679,-0.0058793067,0.018243587,-0.013016792,0.04232298,0.022098431,0.037236724,-0.019622229,0.013826577,-0.006672361,-0.030597826,-0.0063745473,0.015031216,0.0037812276,-0.036647793,-0.009878038,0.008693477,-0.0090414835,0.014723364,-0.030704906,-0.00027146202,-0.029928584,0.010694516,-0.0057521504,-0.0052669486,-0.014402127,-0.0216835,-0.0037076108,-0.004838633,-0.04981851,0.031240301,0.0066255135,-0.011597996,-0.002307218,0.07233187,-0.03678164,0.020880407,-0.034265283,-0.036299784,-0.01904668,0.005163216,0.014147814,0.0056751873,0.009663881,0.0064883186,0.0074486835,-0.04210882,-0.0454015,-0.0075825322,0.008987945,0.014121044,0.016035082,0.025029719,-0.016557092,-0.015486302,0.009857961,-0.018230202,0.024815561,-0.015901232,0.0075022234,0.0030132702,-0.016035082,-0.012836096,0.00448728,-0.00017923187,-0.0111429095,-0.013264412,0.014402127,-0.110505536,-0.0056450716,0.032311093,0.020840252,-0.026341436,0.016677557,-0.02066625,0.040957723,-0.02599343,-0.022459822,0.006886519,0.004249698,0.0076762266,0.010212661,0.040368788,-0.021241799,0.016342934,-0.017534187,0.024025854,-0.008546243,0.00446051,-0.00031705425,-0.026903601,0.026609134,0.0065184347,0.020425322,0.002121503,-0.0002599594,0.02379831,-0.0045140497,-0.010647669,0.014750133,-0.021616574,0.010674438,-0.021496112,-0.003975308,0.0021348877,-0.017614497,0.025069874,-0.051879782,-0.019287607,-0.0326591,-0.025605269,-0.0047315536,-0.023021987,0.026783137,0.0014689901,0.0021901003,-0.026729599,-0.025899736,-0.025913121,0.045803048,-0.0034867602,0.012789249,0.0326591,0.007207756,-0.03260556,0.04232298,-0.039699543,-0.002948019,0.023731386,-0.0059763473,0.013960426,-0.029071951,-0.0047114766,-0.030383669,-0.041653734,-0.014067505,0.005196678,-0.0013426704,-0.0076159947,0.025404494,0.029366419,0.006418048,-0.0032558711,0.033060644,-0.021616574,-0.026394976,0.024173087,-0.0030751752,-0.013706113,0.00872694,0.03271264,0.027385456,0.05190655,-0.029955354,-0.028563326,0.005534646,-0.021790579,-0.01844436,0.049577583,0.007361682,-0.0013334682,0.003878268,0.020304857,-0.006796171,-0.018270357,-0.013291182,0.009831192,-0.011758613,0.01570046,-0.025431264,-0.025712347,-0.04877449,-0.025980044,0.016583862,-0.011604688,0.048961878,-0.009309181,-0.038548443,0.018149892,0.021027641,-0.014509206,-0.0040221554,-0.056377098,-0.006063349,0.018283742,-0.023048757,-0.028161779,0.028857794,0.022580286,0.0068195947,-0.016262624,-0.027492536,0.006980213,0.010011887,-0.012173545,0.024721866,-0.017855424,0.029312879,-0.013665958,0.008579706,-0.00090515224,0.017574342,0.016570477,-0.012314086,0.019408071,-0.0035503383,-0.057447888,-0.003073502,-0.0021332146,0.00019460355,-0.033355113,-0.010674438,0.0043367,-0.0015057985,0.0098512685,-0.0059295003,0.006324354,-0.024360474,-0.008392317,-0.031963084,-0.009188717,-0.0062674684,-0.014576131,0.062159367,0.015272144,0.010493743,-0.015579996,-0.03263233,-0.020478861,-0.016570477,-0.0014497495,0.009008022,-0.028804254,0.025163567,-0.012742402,-0.0029865005,-0.019769462,-0.00087921903,-0.0061905053,0.032284323,-0.009182025,0.023932159,0.002932961,0.041653734,0.018738827,-0.029580576,-0.029607346,0.038307514,0.033890508,0.024547864,-0.019956851,-0.009831192,0.028536556,-0.013331337,0.028536556,-0.028536556,-0.0066690147,-0.00897456,0.044999953,-0.00023862725,0.036540713,-0.002305545,-0.016075237,-0.032980334,0.035389613,-0.00045968685,-0.033408653,0.013217566,-0.03172216,0.04347408,0.005591532,-0.008198237,-0.021281954,-0.004674668,-0.031963084,0.012220392,-0.017989274,0.029419959,-0.025217107,-0.015446147,0.026903601,0.015111526,0.013960426,0.002305545,-0.034988068,-0.021335492,-0.005390759,0.006334393,0.0032575442,0.01732003,0.009329258,0.0401814,-0.021790579,0.0051331,-0.005454337,-0.03812013,-0.024146317,0.0028091508,0.00039046194,-0.03707611,0.0060131554,-0.011705074,-0.013210873,-0.019863157,0.027572844,0.04234975,-0.012514859,0.03148123,0.055681087,0.002506318,0.0017601112,0.0052435254,0.021148104,0.0082584685,0.022245664,0.056698337,0.0151650645,0.004601051,0.005588186,-0.006551897,0.0027338609,-0.011096062,-0.005798998,0.0031688695,0.0060165017,0.008144697,0.017132642,0.0068396716,-0.0062406985,-0.006933366,0.010246123,-0.031508,0.0075892247,0.029553806,0.010092197,0.00436347,0.017440494,-0.006414702,0.012521552,0.020411937,-0.0047282074,0.009362721,-0.033917278,-0.043072533,-0.0040723486,-0.014469051,-0.0019458263,-0.018671902,-0.027653154,0.0013409973,-0.044170093,0.035309304,-0.027465766,0.007180986,-0.0043333536,-0.030999374,0.0021750424,0.019863157,0.033114184,0.010781518,0.005638379,0.0010297989,0.020237932,-0.02116149,-0.042804834,-0.015004447,-0.0067259003,0.028081471,-0.04872095,0.001115964,-0.015914617,-0.035148684,0.017708192,0.020398552,0.013097102,-0.006337739,0.03383697,-0.00076502934,0.011129525,0.030517519,0.05196009,-0.011229911,-0.024748636,0.024240011,-0.00080183777,-0.013170718,-0.010741363,-0.015084756,-0.010808287,-0.020104084,0.0073148347,0.022058276,-0.025163567,-0.016342934,-0.012802634,0.016690942,0.032123704,-0.03573762,-0.002201812,-0.01732003,0.0059796935,-0.019474994,-0.018323896,-0.0042061973,-0.0783283,0.043126073,0.026408361,-0.023610922,-0.0216835,-0.010433511,0.0031755618,0.0119660795,0.007281373,0.01904668,0.027050834,-0.022325974,0.032150473,0.012882943,0.100279495,-0.017386954,0.0038247283,-0.008030926,0.049952358,0.043500848,-0.0029848274,-0.000839901,0.004326661,-0.005973001,-0.010192583,0.0036473789,0.041519888,0.0073081423,-0.0072479104,0.00839901,-0.014027351,0.025123414,0.029687656,0.021589806,-0.012441242,0.016637402,0.020880407,0.005363989,-0.002106445,-0.041011263,0.01789558,-0.022580286,0.019421456,0.012642016,-0.018270357,0.011357067,-0.017962504,0.006645591,-0.023477074,0.009489877,0.008887558,0.007877,0.024159702,-0.015499687,0.0059194616,-0.012949868,-0.0011661573,-0.0073750666,-0.025980044,-0.003818036,-0.0041626967,-0.032846488,-0.01844436,0.010139043,-0.03795951,0.0114172995,0.03455975,-0.014723364,0.011986157,0.00011669939,-0.006073388,0.044250403,-0.0065418584,0.0145895155,-0.00038293295,0.049631122,0.005437606,-0.0094698,0.027572844,0.0151382955,0.021442572,0.0111429095,-0.050701912,0.030758446,0.012963253,-0.035523463,-0.007281373,0.013652573,-0.031159991,-0.005936193,0.0071140616,-0.030704906,-0.025645424,0.026234357,0.025123414,-0.033970814,0.014134429,0.0030484055,-0.034292053,0.038816143,-0.0023707962,-0.029393189,-0.022995217,0.008566321,-0.020478861,0.0013719498,-0.009061561,-0.002961404,0.015486302,0.0036306477,-0.025257261,0.005116369,-0.03477391,-0.007555763,-0.0014530956,0.0016655806,0.014964292,-0.0151516795,-0.0015066351,0.0006955953,0.014027351,0.0058893454,-0.011705074,0.0061503504,-0.008191545,-0.03378343,0.005862576,-0.019274222,-0.0017517457,-0.028509786,0.0038715755,0.0072612953,0.023892004,-0.02544465,0.045214113,0.036085628,0.003941846,0.020960717,-0.012923098,0.012581783,0.015205219,-0.019314377,0.01844436,0.013364799,-0.0058257673,0.008332086,0.022740904,0.019300992,0.0048219017,0.0012498128,0.012367626,-0.012280624,-0.015191834,-0.00073909614,-0.03485422,0.034024354,-0.015272144,-0.0087670935,0.008051003,0.004778401,0.0031722158,-0.007361682,-0.02215197,-0.013043562,-0.033997584,-0.006893211,-0.011229911,-0.020304857,0.016704326,-0.006960136,0.025939891,0.008405702,0.0015467898,-0.027184684,-0.025136797,-0.009891423,0.0033094108,-0.008077773,0.018511284,0.030249821,0.013893502,-0.009556802,-0.020492246,0.014683209,0.027211454,0.027358687,-0.018778982,-0.043607928,0.021643344,-0.029607346,-0.008131312,0.0011644842,-0.024173087,-0.034479443,-0.0027305149,-0.021790579,0.006036579,-0.00924895,-0.016115392,-0.007180986,0.021201644,-0.0068798265,-0.017279875,0.025872966,-0.03375666,-0.021455957,0.007743151,-0.043741774,-0.024280166,-0.044143323,0.044116553,-0.026809907,0.023169221,-0.021723654,0.0114306845,0.019113604,0.024909254,0.0045910124,0.0002821281,-0.021937812,0.0065753204,0.028911334,-0.002917903,-0.024467554,-0.002183408,0.026006814,0.011564533,-0.00919541,-0.007622687,0.013759653,0.013244335,0.0034332208,-0.030651366,0.012019619,-0.025083259,0.038334284,-0.008439165,-0.026100509,0.0034332208,0.0045307805,-0.035416383,-0.0071140616,0.008238391,0.023610922,-0.0116783045,-0.0006508396,-0.0135454945,-0.009188717,-0.026676059,-0.017172797,-0.00051908224,-0.027572844,-0.017989274,0.016061852,-0.013773038,-0.02278106,0.0019073449,-0.0026301283,-0.0006855566,0.012260547,-0.00623066,-0.03576439,0.0035135301,0.009503262,0.017480649,0.00095199933,-0.010440203,0.030490749,-0.010279585,0.007073907,0.014803673,-0.005347258,0.0063310466,-0.0013066985,0.012789249,-0.027546076,0.024159702,-0.027144529,0.02215197,-0.003436567,-0.014308433,0.034184974,0.0077833054,-0.002431028,-0.027546076,0.008981252,-0.019167142,-0.002795766,-0.006274161,-0.012387703,0.01298333,-0.006397971,0.01899314,0.000018861696,-0.013398261,0.007609302,0.04449133,0.01784204,-0.019167142,0.004688053,-0.023905389,0.001039001,0.011256681,-0.00021750425,0.0025247224,-0.023450304,-0.012059773,0.012588476,0.010808287,-0.0041024648,0.013445108,0.007455376,-0.019086834,-0.0057220347,-0.027171299,-0.012976637,0.020331627,-0.028964872,-0.021870887,0.011872386,0.03386374,0.0100855045,-0.008546243,0.007682919,0.012682171,0.008586398,-0.00070605223,0.029553806,0.002489587,0.025243877,0.020278087,0.03343542,0.0037310342,0.0045207418,0.01004535,0.026555594,0.020572554,-0.014254893,0.041359268,0.022580286,-0.037343804,0.014335202,0.011745229,0.023597537,-0.0013083717,0.00064205576,0.020947332,0.009262335,0.026100509,0.0011653207,-0.0146162845,-0.030249821,0.033381883,-0.013177411,-0.012334163,-0.0019859811,0.023423534,-0.029446729,0.025056489,0.008900942,-0.01901991,-0.022392899,0.026006814,-0.036032088,0.03276618,-0.00057345827,-0.0047717085,0.013364799,-0.03801305,-0.0248691,0.0025866274,-0.014495821,0.06815579,-0.0037544577,-0.015057986,0.001328449,-0.03263233,0.01737357,-0.014883982,0.025110029,0.01567369,-0.010185891,0.022071661,0.0053238347,-0.032123704,-0.00082149677,0.0011703401,-0.00092104677,0.002414297,0.043500848,-0.012608553,0.02379831,0.010935443,-0.034292053,-0.0024795483,0.014723364,0.021563036,-0.0058391523,0.037129648,0.005785613,-0.010547282,-0.02113472,0.0007746497]},{"id":"guide-channels-0","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Create\nUse guild.createChannel() to create text (0), voice (2), category (4), or link (5) channels. Requires Manage Channels permission. Pass parent_id to put a channel under a category.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!createchannel') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n // Text channel (0), voice (2), category (4), link (5)\n const textChannel = await guild.createChannel({\n type: 0,\n name: 'general',\n });\n\n // Category, then voice channel under it\n const category = await guild.createChannel({\n type: 4,\n name: 'Voice Chats',\n });\n const voiceChannel = await guild.createChannel({\n type: 2,\n name: 'Lounge',\n parent_id: category.id,\n bitrate: 64000,\n });\n\n await message.reply(`Created ${textChannel.name} and ${voiceChannel.name} in ${category.name}`);\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.02023937,-0.003249744,-0.0100413775,-0.010216063,0.022395825,-0.023877637,-0.031877007,0.0284074,0.006294685,0.029202519,0.02915433,0.036430866,0.024251102,-0.021793464,0.032937165,0.015528897,-0.050983936,-0.03269622,0.020757401,0.013613385,-0.030913226,0.04112929,-0.008764369,0.069006614,-0.045177165,0.005370059,0.005370059,0.030407242,-0.034937005,-0.01664929,0.05271874,-0.025829291,0.0067464565,0.019709291,-0.02172118,0.014637401,0.01551685,0.01683,-0.01831181,0.008902913,-0.0129146455,0.010872637,0.06442866,-0.025853384,0.0053158463,0.040020943,-0.0555137,0.037756063,-0.0052525983,0.008800511,-0.03264803,0.023070471,0.0026247932,0.02722677,0.013938661,0.00081620074,-0.040261887,-0.0071922042,-0.055995587,0.021516377,-0.0100112595,-0.040984724,0.018323857,0.008113818,0.031154172,0.025082361,-0.0686211,0.015047007,0.0253474,0.056622047,0.028455589,-0.024022203,0.013649527,-0.02356441,-0.037298266,-0.004725531,-0.042237636,0.02268496,0.0038129527,-0.03597307,-0.016685432,0.022865668,-0.06977764,-0.0017875098,-0.04038236,0.0555137,-0.015432519,-0.0004382185,0.0021429034,-0.059465196,0.0034334643,-0.032166142,-0.07917449,-0.016661339,0.06288661,-0.013276063,0.031371024,0.009186023,-0.015167479,0.0067283856,0.082885034,-0.033635903,-0.05556189,0.01140874,0.019167164,-0.022781339,-0.004065945,0.04570724,-0.012221929,-0.021841653,-0.08919779,0.020046614,0.0135411015,0.011529212,0.019902047,-0.02010685,0.07450015,-0.035105668,0.03259984,-0.010481102,-0.05787496,-0.0218537,0.07199433,-0.030503621,0.027106298,-0.018155197,-0.015324094,-0.028624251,-0.039876375,-0.02325118,0.058838736,-0.003204567,0.04780346,0.002439567,-0.023853542,0.025973856,-0.008168031,0.011264172,-0.05932063,-0.020094803,-0.0080837,-0.018504566,0.070741415,0.011788228,-0.015757795,-0.011673779,-0.05175496,0.03339496,-0.038792126,0.006150118,-0.07006677,0.012408661,-0.026672598,-0.014625354,0.002706112,-0.007174134,0.016685432,0.014324172,-0.05074299,-0.07893354,0.019287637,-0.023407795,0.024359526,-0.022275353,-0.01064374,-0.03806929,-0.013420629,0.009673936,-0.047755275,0.04541811,0.0019953246,0.022239212,-0.030334959,-0.016950471,0.021191102,-0.009089645,-0.04300866,-0.04127386,-0.0049273227,0.017335983,0.021034487,0.042237636,-0.039394487,-0.022371732,-0.0034455117,0.056718424,0.008963149,-0.054887243,0.016336063,-0.016408347,-0.075945824,-0.024311338,0.01817929,0.028214645,0.06746457,0.005508602,0.07054866,0.0055838972,0.02464866,-0.042912282,0.025082361,-0.027009921,0.00528874,-0.0314674,-0.013444724,-0.017528739,-0.023648739,0.027780944,-0.0192274,-0.0040689567,0.024817321,-0.014577165,-0.020251416,0.0042285826,-0.08211401,0.003629232,-0.055224564,0.0016113188,-0.06288661,-0.053778894,-0.05262236,-0.012625512,0.053827085,-0.007216299,0.0022061516,0.02604614,0.008336693,-0.033033542,0.022504251,0.041490708,0.016155353,0.026214803,-0.006276614,-0.057248503,-0.00036424087,-0.020167086,0.014926535,0.05734488,0.009836574,-0.018203385,-0.035298426,-0.03951496,0.0076319287,-0.0052194684,0.023648739,-0.014312126,-0.015432519,-0.028913384,0.04688787,0.03098551,0.1062085,-0.0029335038,0.0072223227,0.011709921,0.018733464,-0.018974409,0.008276456,0.0007299877,0.038406614,-0.04182803,0.0459,-0.045345824,-0.021757321,-0.002817549,-0.005514626,-0.019155117,-0.021528425,0.038575273,-0.021456141,-0.021733228,-0.00813189,-0.062308345,0.028383305,-0.032286614,-0.008071654,-0.010824448,-0.009318543,0.002439567,0.012842362,0.0025811219,-0.04284,0.0001143547,-0.015818032,0.018600944,-0.0035449015,0.01734803,-0.007210275,-0.023528267,0.028335117,0.027564093,-0.010252205,0.0042617125,-0.02561244,-0.021913936,0.0106979525,0.06910299,0.047297478,0.024347479,0.039129447,0.066693544,0.008023464,-0.0123845665,0.008643897,-0.008746299,0.0077042123,0.004876122,0.007282559,-0.009770314,0.07989732,-0.05122488,0.04773118,0.031563777,0.008999291,-0.045610864,-0.03378047,0.006445275,0.017757637,0.05927244,0.0032587794,0.034165982,0.0054212594,-0.024479998,0.0096980315,-0.057248503,-0.029395275,-0.025323305,0.011432834,-0.031178266,0.018902125,-0.012986928,0.048309445,-0.055754643,0.015456613,0.04715291,0.035394803,-0.018914172,0.020335747,0.042936377,0.0058368896,-0.0061410824,0.009685984,-0.023672834,-0.02045622,0.022347637,0.006722362,0.043996535,0.011968937,0.008939055,0.0043249605,0.027034014,-0.042912282,0.027299054,-0.018347953,-0.09435401,-0.026262991,-0.016817952,0.025973856,-0.030961417,-0.015673464,0.01831181,-0.043297794,-0.01328811,-0.0053610234,0.047177006,0.011535236,-0.03002173,-0.0008139419,-0.0058730314,-0.026624408,-0.034238268,-0.0024802263,-0.019552676,0.0016173425,0.015950551,-0.025949763,-0.043683305,0.00010258981,-0.007890944,-0.040285982,0.03956315,0.01398685,0.001814616,0.009083622,-0.02281748,-0.0057435236,0.004568917,0.012276141,0.016071023,-0.007776496,0.012661653,-0.0030223522,-0.00525561,-0.01721551,0.03720189,0.016962519,0.028648345,0.034069605,0.018131102,0.010758189,0.0058579724,0.054694485,0.016613148,-0.0027497835,0.026768975,0.029828975,0.007252441,-0.009101693,-0.004888169,0.004668307,0.010390747,0.012029173,0.004888169,0.028576061,0.037346456,0.0068609053,-0.021612756,-0.011511141,-0.024588425,0.017625118,-0.008487283,0.0022332578,-0.04165937,0.046140943,-0.035057478,0.007354842,-0.0067645274,0.007059685,-0.010234133,0.010872637,-0.02910614,-0.07488567,-0.011956889,0.070789605,0.014504882,0.031877007,-0.014167558,-0.0009110728,-0.055128187,0.0003021223,0.018914172,-0.030889133,0.017829921,0.025997952,0.014637401,0.012059291,0.030865038,-0.005499567,-0.023552362,-0.008872795,-0.028985668,-0.05700756,-0.034406926,0.011553307,0.019902047,-0.02910614,-0.0047556493,-0.02067307,0.05970614,-0.029563935,0.012529134,-0.024720944,0.027250865,0.00821622,0.040406454,-0.01809496,0.009499252,-0.021058582,0.022275353,-0.00560498,-0.030190393,-0.002915433,0.009692008,0.030624093,0.033925038,-0.026166612,-0.0031804724,0.0038159643,-0.020444173,0.015227716,0.035780314,0.065537006,0.02343189,-0.030045826,-0.015420472,-0.018191338,0.10379905,0.018588897,-0.0061922832,-0.023323463,-0.020359842,-0.0140711805,0.010607598,0.041731652,-0.012053267,0.0034003346,-0.05267055,-0.02958803,0.007921062,0.030262675,-0.00093366136,0.008137913,-0.017793778,-0.03517795,0.020215275,0.028070077,-0.0024892618,0.023793306,-0.025516061,-0.0044243503,0.024323385,-0.007306653,0.005686299,0.0029530807,0.010457007,0.012649606,0.011794251,-0.052863304,0.01092685,-0.024793228,-0.0059844684,-0.02705811,0.023528267,0.0025103444,0.007421102,-0.0022965057,0.008878819,-0.0018718404,-0.049225036,-0.009716102,-0.0018899114,0.021480236,-0.022805432,0.015059055,0.0034485236,-0.031443305,0.016275827,-0.029298896,0.000604621,0.012408661,-0.0052074213,-0.035105668,0.0437074,-0.013974803,0.0249137,-0.0034756297,-0.009764291,-0.005481496,0.036430866,0.006517559,0.033370864,0.03553937,-0.047972124,-0.02343189,-0.016745668,0.010390747,0.04332189,0.0073668896,-0.015275905,-0.003680433,-0.0009095669,-0.0052827164,-0.0010639222,0.01280622,-0.002102244,-0.026190707,-0.02915433,-0.008234291,0.022215117,-0.03633449,-0.03038315,0.004493622,-0.008059606,0.05267055,0.01717937,0.023130707,0.0096980315,-0.04773118,0.009469134,-0.0003367581,-0.00083803636,-0.00924626,-0.06481417,0.055224564,0.006068799,-0.02561244,0.0049152756,-0.032744408,-0.021456141,0.010089567,0.017299842,0.004957441,0.014300078,-0.0011648178,0.014589212,-0.020829685,-0.0093546845,-0.029756691,0.023986062,0.00018080277,-0.00071417564,0.0038460826,0.014926535,-0.054887243,-0.013745905,-0.013878425,-0.0009848622,0.0049785236,-0.012059291,-0.012270118,0.027178582,0.010583503,-0.008788465,-0.04081606,-0.054598108,0.016528819,0.00038890008,0.03635858,0.02303433,0.031081889,0.020889921,-0.000084283645,-0.0044785626,-0.00089601375,0.02819055,0.0010285334,0.022166928,0.0026458758,-0.022648819,0.01599874,-0.011378622,0.024817321,-0.029997637,0.031081889,0.002819055,-0.035515275,-0.021793464,0.0026112401,0.007198228,-0.011890629,0.0007552116,0.050502047,-0.026262991,0.0060236217,-0.01468559,-0.0076740943,-0.013468819,0.0049273227,0.0103847245,0.012233976,-0.013565197,-0.00047737203,0.05030929,0.011155748,-0.0112280315,0.033105824,-0.055320945,-0.033419054,0.012191811,-0.018191338,-0.0023507185,-0.034165982,0.0019305708,0.009408898,0.033346772,0.011896653,0.011601496,-0.040358268,0.011330432,-0.037900627,0.0015646358,0.0012137598,0.015348189,-0.006210354,-0.018263621,0.009384803,-0.0108545665,-0.0069211414,-0.051321257,0.056043778,-0.0034545471,0.012565275,0.036262203,-0.03252756,-0.021660944,0.031371024,-0.017155275,0.019179212,-0.021407953,0.016805904,0.004716496,-0.022444015,0.003903307,-0.011685826,0.011637637,-0.0015224704,-0.0010307922,0.027636377,0.01975748,0.002102244,-0.06915118,-0.02346803,-0.006276614,0.013878425,-0.0036412794,0.040599212,0.01613126,-0.028383305,0.019155117,0.014528976,-0.017733542,-0.034720156,0.0013733858,-0.0039906492,-0.020889921,-0.023058424,0.03139512,-0.040141415,-0.057441257,0.012492992,-0.0026022047,-0.0050568306,0.019396063,-0.021709133,-0.012294212,-0.020588739,-0.010685905,0.01302307,-0.0137579525,-0.03484063,0.015047007,-0.024070393,0.021227242,0.044117007,0.016552912,-0.03312992,0.038527086,-0.04009323,0.002295,-0.013456771,-0.04086425,-0.014022992,0.027732754,0.006915118,-0.0030825885,0.0074994094,-0.008559567,0.015432519,-0.008951102,-0.018107006,0.013878425,-0.024889605,0.007993346,-0.04358693,-0.013938661,-0.03876803,0.0060447045,-0.011667755,-0.02722677,-0.009077598,0.036238108,-0.02356441,0.021805512,0.0033009448,0.043225512,-0.037756063,-0.023588503,-0.010890708,-0.010782283,0.0074271257,0.014155512,-0.041466612,-0.014143464,-0.0013447736,-0.0033882873,0.001578189,-0.05083937,-0.054308973,-0.031130077,-0.006372992,-0.043803778,-0.031611968,0.018372046,-0.025564251,0.009252283,0.033346772,-0.043418266,0.006848858,-0.039587244,-0.048694957,-0.039442677,-0.04536992,-0.010360629,0.014324172,0.027805038,-0.041225668,0.01852866,-0.025058268,-0.08211401,-0.020986298,0.010956968,-0.003921378,-0.007210275,-0.035202045,0.009872716,0.013673621,0.011595472,-0.02333551,0.012468897,-0.0029892223,0.021648897,-0.00060123275,0.026889447,0.01442055,0.011764133,-0.0021444093,-0.0038430707,-0.001017992,-0.010703976,-0.01774559,-0.02604614,0.018347953,0.0233837,-0.0016324015,0.008836653,-0.017167322,0.017998582,-0.00037195865,0.00981248,0.049008187,0.02963622,0.012288189,-0.02137181,0.031178266,0.002867244,-0.00022739172,0.0031142125,-0.06360944,-0.009378779,0.00008080124,-0.022793384,-0.012962834,0.0052044094,0.012203858,0.0079812985,0.004123169,0.004011732,0.011306338,-0.014083228,-0.01105937,0.03951496,0.042358108,0.028142361,0.033226296,-0.049971968,0.013661575,0.0064272047,-0.018938268,0.04038236,0.02325118,0.009505276,-0.0074813385,-0.016251732,-0.054549918,-0.021974172,-0.009192047,-0.0051953737,-0.010475079,0.017203463,0.034551494,0.013769999,0.03780425,0.018119054,-0.0043339957,-0.009541417,0.021395905,0.03180472,0.0009667913,-0.019709291,0.011264172,0.00933059,0.013300157,0.040936533,0.013818189,-0.00948118,-0.0059513384,0.0061561414,0.02464866,0.034647875,-0.023287322,0.005273681,0.015408425,0.008143936,-0.0075475983,-0.019805668,-0.021998268,-0.002438061,-0.06105543,0.0097281495,0.013348346,-0.008240314,-0.024154723,0.017685354,0.013926614,0.0025434743,0.017733542,-0.017625118,-0.05088756,0.026720786,0.0018507577,-0.016420392,0.00939685,-0.03720189,-0.02298614,0.00926433,0.003921378,-0.011071417,-0.0077343304,0.0013334793,-0.012288189,0.02268496,-0.041635275,-0.0034997242,-0.002817549,-0.016890235,-0.013709763,-0.012167716,-0.0069090943,-0.033611808,0.02005866,-0.00075069384,0.016842047,0.0050237007,-0.018829841,-0.0033641928,0.016854094,-0.038406614,0.014769921,-0.0083547635,0.0068428344,-0.004776732,-0.011222008,-0.002278435,0.014986771,0.029684408,0.024118582,-0.028817007,-0.034937005,0.012468897,-0.0039093303,0.021058582,0.021118818,-0.019082833,0.056091968,0.008746299,0.03688866,-0.021130865,-0.013408582,-0.003632244,0.023986062,0.0721389,0.027901417,0.0037286219,0.014890393,0.002725689,-0.0150711015,-0.0075897635,-0.0030223522,-0.034479212,0.029949447,0.01919126,0.023769211,-0.02749181,0.038888503,0.07411464,-0.009938976,-0.018070865,0.017733542,0.008987244,0.0149144875,0.014300078,-0.008601732,0.010770236,-0.006210354,0.009993189,-0.013950708,0.0074150786,-0.021082677,-0.03378047,-0.006704291,0.03151559,0.0071138972,-0.0139145665,-0.04168346,0.008035512,0.007210275,-0.019118976,0.011450905,0.0010059448,-0.0066801966,0.0075475983,0.014854251,0.002038996,0.0026022047,-0.044213384,0.03317811,0.01385433,0.0218537,0.009776338,0.0105714565,-0.007342795,0.016360156,0.005764606,0.013866377,-0.0062344484,-0.018817795,0.028720628,-0.0051532085,-0.029274803,-0.025226928,-0.027082203,0.008270433,-0.035515275,-0.014059133,-0.002343189,-0.022082597,-0.027780944,0.010505197,0.03173244,-0.0017076968,0.011746063,-0.007692165,0.012818268,-0.01683,-0.023576455,0.027829133,0.0059995274,0.048743147,-0.0058639958,0.026696691,0.002391378,-0.052285038,-0.013264015,0.008939055,-0.0038219881,0.017829921,-0.0010315452,0.006258543,-0.021492282,0.026214803,0.0142277945,-0.010932874,0.00021101501,0.02102244,0.027250865,0.0058549605,0.014275984,-0.0047707083,0.0023010236,0.0069512594,0.0030253641,-0.010890708,-0.012770078,0.006993425,0.007409055,-0.009860669,0.015637321,0.029612124,0.014974724,0.0123845665,0.0068789762,0.0057585826,-0.010505197,-0.020155039,-0.0072705117,-0.008529449,-0.003599114,0.029612124,-0.032310706,0.00046381887,-0.027467715,0.0009607677,0.012986928,0.00751748,-0.029491652,0.011444882,0.000572997,0.0009291437,0.015781889,-0.007005472,-0.011101535,-0.0375874,0.023576455,-0.022444015,-0.011083464,-0.0069813775,0.016239684,0.01551685,0.0026428641,-0.017769685,-0.02215488,-0.022299448,0.005014665,0.020492362,0.01669748,-0.022516299,0.014998819,-0.0014584694,0.010866614,0.031130077,0.01105937,-0.026142519,0.0060748225,-0.0009780856,-0.01613126,-0.02019118,0.0032768503,-0.025419684,-0.0075536217,-0.03252756,0.008101772,0.0033641928,-0.025106456,0.0068127164,0.01704685,-0.0019230413,0.046116848,-0.013565197,0.044020627,-0.024889605,-0.008493307,-0.016709527,-0.019697243,-0.03247937,-0.051128503,0.05700756,0.03606945,0.016601102,-0.029226612,0.0020480314,-0.028142361,0.036527243,0.018504566,-0.015986692,0.009318543,-0.024961889,0.00057149114,0.009017362,0.07025953,0.0147578735,-0.03325039,0.019853858,0.056332912,0.040406454,-0.0069874013,0.014986771,-0.024841417,-0.0253474,-0.020950157,0.025275117,0.033852756,0.010788307,0.02207055,0.0046080705,-0.012782126,-0.006499488,0.015962597,-0.032407086,0.015878268,-0.00097582676,0.00026466287,0.036527243,-0.03732236,-0.003915354,0.018480472,-0.028913384,0.020094803,-0.0035117716,-0.00072396407,0.0021594684,0.016360156,0.0025916633,-0.034141887,0.03206976,-0.009240236,-0.024793228,0.0118846055,-0.016360156,-0.027154487,-0.032840785,-0.0007646235,-0.016179448,-0.004797815,0.022937952,-0.020082755,-0.03792472,-0.023937874,-0.055802833,-0.02469685,0.028600156,0.026937637,-0.038551178,-0.0025811219,0.012330354,0.0051833265,0.0012702312,-0.0008327657,0.022998188,-0.029298896,0.01989,-0.008276456,0.012782126,-0.011089488,0.014697637,0.022588583,0.0036894684,-0.019263543,0.009186023,0.005620039,0.0014705167,-0.015299999,0.02207055,-0.01801063,0.0015119291,0.0085113775,-0.050068345,-0.0015465649,0.012926692,-0.0016158365,-0.0563811,0.017191418,-0.0067163385,-0.005002618,0.022588583,0.010366653,-0.034864724,-0.0005236786,0.0013139026,-0.011734015,0.025251023,0.045659054,0.014107322,0.0038340352,0.0085113775,-0.00933059,0.00716811,-0.0030524703,-0.002737736,-0.01293874,0.027034014,0.017203463,0.016926378,-0.018022677,0.013420629,-0.022166928,0.02137181,-0.021600708,0.0139145665,0.029732598,-0.046357792,0.008155984,-0.008463189,0.010191968,-0.0027211711,-0.008776417,-0.015950551,-0.004827933,-0.04430976,0.045466296,0.03746693,0.034117796,0.018685276,-0.031009605,-0.0013455265,0.009011338,-0.02609433,0.038430706,-0.0034424998,-0.0053399405,0.009818504,-0.0044303737,-0.018914172,-0.014095275,-0.010734094,-0.00981248,-0.022215117,-0.009902834,0.0033491338,-0.017890157,0.0034184053,0.026335275,-0.02823874,0.018781653,-0.0011377116,0.007342795,-0.0068729525,0.013348346,-0.029443463,0.0027648425,-0.037177794,0.028913384,-0.033226296,0.031828817,0.024359526,0.019938188,-0.016311968,0.0054694484,-0.0105413385,0.025636535,-0.002660935,0.011962913,-0.026552126,-0.017058898,-0.01656496,0.003885236,-0.010746141,-0.0021910924,0.008553543,0.014095275,0.013480865,-0.03871984,-0.022130787,0.018552756,-0.033057638,0.007692165,0.002867244,-0.026503935,-0.0032286614,-0.02373307,0.014324172,-0.0013876918,0.0067524803,-0.012818268,-0.00012216657,-0.0060507283,0.0007386466,0.0021910924,0.0086679915,-0.03247937,-0.026913542,-0.020745354,-0.031274643,-0.02220307,-0.049875587,0.025901575,0.005879055,0.024046298,-0.009890787,-0.018649133,0.004460492,0.010818425,0.009692008,-0.017841969,-0.018637085,-0.006415157,0.032455273,-0.010306417,-0.0045508463,-0.022841575,-0.000045671288,0.030744566,0.0034937006,0.0022197047,-0.025732912,0.008451141,0.014047086,-0.0014125393,0.007150039,0.012348425,0.032358896,-0.016456535,-0.050453857,0.004999606,0.016492676,-0.009776338,-0.016986614,0.0076740943,-0.014492834,0.015456613,0.0037617518,-0.005779665,0.03339496,-0.014432598,-0.018516613,-0.047538422,-0.021299526,-0.014143464,0.0010149803,0.0111979125,0.01932378,-0.03937039,0.024347479,-0.012264094,0.052333225,-0.018323857,-0.027901417,-0.010023307,-0.017926298,0.023949921,0.018890077,0.016805904,-0.0049725,-0.025419684,-0.0062525193,-0.017661259,0.0032075786,-0.009270354,0.008439094,0.02123929,-0.0038400588,0.00094796746,-0.031154172,0.05271874,-0.0057555707,0.009143858,0.03344315,0.0096980315,0.019408109,0.0025043208,0.0076018106,0.009426968,-0.020745354,-0.014239842,-0.024070393,0.022540392,-0.016805904,0.015324094,-0.013721811,-0.018215433,-0.002755807,0.010631693,0.014396456,0.008222244,0.008908937,-0.012685748,-0.024239054,-0.0033160038,0.0035238187,0.019588819,0.0023055412,-0.0137579525,-0.0030087992,0.039924566,0.0075837397,-0.001816122,0.025226928,0.024636613,-0.010920826,-0.0014373867,-0.01787811,0.0060266335,-0.0035087597,-0.0059754327,0.014155512,0.019155117,-0.0027799015,-0.030889133,0.018299764,-0.01761307,-0.032792598,0.008258386,-0.03211795,0.02360055,-0.0052676573,0.0051471847,-0.009348661,0.029804882,0.0027527951,-0.008619803,-0.005430295,0.03329858,-0.023022283,0.01852866,0.019287637,0.0039123422,-0.024937794,0.053730708,0.020926062,0.011920747,-0.008252362,-0.00017336737,-0.024419762,0.015480708,-0.011324409,-0.016480628,-0.011149724,-0.0005605733,-0.0192274,0.0042165355,-0.03002173,-0.017637165,0.0011911712,0.009282401,0.0010398277,0.008710157,-0.004800827,0.024961889,-0.02023937,0.027106298,0.025805196,0.0065537007,0.0078246845,-0.014649448,0.005674252,0.020118898,0.00054062007,0.057971336,-0.0019290649,-0.013167637,0.014637401,-0.010155827,0.037033226,-0.009493228,0.054598108,0.01814315,-0.015914408,0.022697007,0.024600472,-0.033419054,-0.011848464,0.0074994094,-0.012998976,0.01272189,-0.011589448,-0.037780154,-0.008427047,-0.018275669,-0.03325039,-0.0036744094,0.02867244,-0.015480708,0.00011548412,0.020986298,0.014649448,-0.040719684,-0.01962496,-0.0029681397]},{"id":"guide-channels-1","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Fetch and Edit\nUse guild.fetchChannels() to load all guild channels. Use channel.edit() to rename, set topic, move to a category, set slowmode, or update permission overwrites.\n\n```javascript\nconst guild = client.guilds.get(guildId) ?? await client.guilds.resolve(guildId);\nif (!guild) return;\n\nconst channels = await guild.fetchChannels();\n\n// Edit a text channel\nconst channel = guild.channels.get(channelId);\nif (channel) {\n await channel.edit({\n name: 'renamed-channel',\n topic: 'New topic here',\n parent_id: categoryId, // Move under category\n rate_limit_per_user: 5, // 5 second slowmode\n nsfw: false,\n });\n}\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.021066522,0.024109464,-0.015507301,-0.009222455,-0.012639913,0.034502283,-0.033378735,0.01104822,0.017649064,0.030452827,0.05584969,0.019299274,0.015203007,0.026894927,0.06671065,-0.005816701,-0.027316257,-0.015015748,-0.0015009897,0.027105592,-0.01534345,0.038458105,0.008994235,0.07850791,-0.05416437,0.015378561,0.009912969,0.023009323,-0.0129208,-0.014067755,0.04386518,-0.016115889,0.007209432,-0.005693813,-0.027316257,-0.0028425176,0.008338831,0.0072269873,-0.009924673,-0.018561946,-0.03501724,0.005646998,0.021991108,-0.026309745,0.011071628,0.031084824,-0.048733886,0.026754484,0.004105046,0.0039997133,-0.01262821,0.009749118,-0.047727376,0.04302252,0.022634808,-0.0021797998,-0.022166662,0.0006590603,-0.039839134,0.016782995,-0.019147128,-0.056645535,0.0026508707,0.0041694157,0.01934609,0.021558074,-0.0778525,0.018386392,0.028182324,0.02018875,0.015846705,-0.06436993,0.01585841,-0.034712948,-0.013939016,-0.01114185,0.004725338,0.01402094,0.004941855,-0.01883113,-0.018760908,0.013939016,-0.05926715,-0.0007709762,-0.020727117,0.04632294,0.0011879178,-0.0015053785,0.04377155,-0.059360776,-0.013669832,-0.015905224,-0.07743117,0.000918003,0.033425547,-0.04487169,0.038902845,-0.034057543,-0.0030400162,0.045854796,0.10027664,-0.028065288,-0.06647658,0.006887582,0.04564413,-0.007057285,-0.018550243,0.07846109,-0.029703796,-0.037709076,-0.09133507,0.0001219737,0.0064194375,-0.01304954,0.0032857922,-0.011393477,0.055287916,-0.01925246,0.05093417,-0.024718052,-0.06792783,0.02125378,0.05940759,-0.02949313,0.0048862626,-0.016338259,-0.0109428875,-0.01036941,-0.029118614,0.0020642267,0.045948423,-0.009122974,0.021019708,-0.019708902,-0.02839299,0.0124643585,-0.019720605,0.007905797,-0.04047113,-0.008251054,0.015074267,-0.01925246,0.026965149,0.025537306,-0.06156106,-0.0046404866,-0.056598723,0.014571011,-0.026028858,0.0000033716492,-0.07068989,0.013775164,-0.03265311,0.004432747,0.0015609708,0.010913629,-0.0009984653,-0.011697771,-0.059735294,-0.07008129,-0.010708815,-0.022892287,-0.0010226041,0.0049798917,-0.007794613,-0.05116824,0.0057025906,-0.0080579445,-0.04751671,0.016361665,-0.0025879636,-0.0049272254,-0.0066242507,-0.024273315,0.024530794,0.004816041,-0.021148447,-0.038528327,-0.03707708,0.03560242,-0.016654257,0.050044693,-0.026754484,-0.040400907,-0.023255099,0.039230544,-0.001195964,-0.025396863,-0.029001579,-0.0098017845,-0.04342044,-0.004134305,0.019147128,0.014547604,0.03511087,-0.006834916,0.038809214,0.008502683,0.009479935,-0.043631107,0.032348815,0.005181779,0.048453,-0.033683028,-0.024156278,-0.037802704,-0.014219902,0.00076951325,-0.028416397,-0.008373942,-0.00063016696,0.015074267,-0.031646598,0.01560093,-0.06633614,-0.02448398,-0.07406053,-0.010310892,-0.08510875,-0.017848026,-0.03356599,-0.031974297,0.03621101,0.008543645,0.001988153,0.013985829,0.0184098,0.023524283,0.05271312,0.038832624,0.04545687,0.019954678,-0.0030049053,-0.048780702,0.015519004,-0.0129442075,-0.002427039,0.04414607,-0.028252546,-0.035251312,-0.015074267,-0.027831215,-0.027995067,-0.032933995,0.011791401,-0.030218756,0.007964316,-0.038387883,0.04412266,0.02567775,0.05608376,0.04548028,0.020703709,-0.033683028,0.03162319,-0.007578096,0.0077243913,0.0082920175,0.004500043,-0.017848026,0.034572504,-0.008016982,0.0012003529,-0.015507301,-0.038411293,0.0052871117,-0.023430653,0.015530708,-0.022435846,-0.028205732,-0.00036043502,-0.025865007,0.030406013,-0.040517945,-0.0019925418,0.006056625,0.008362239,0.013611314,0.0041489345,-0.03595353,-0.03279355,-0.018866241,0.004813115,0.006887582,-0.0014636844,0.0167947,-0.03901988,-0.00875431,0.055334732,0.038481515,-0.01049815,-0.007771206,-0.019229053,-0.031646598,0.0129208,0.06221646,0.029867647,0.041618083,0.04054135,0.031576376,-0.016654257,0.005617739,0.0067939535,-0.029282466,0.022330513,-0.015612634,0.004377155,-0.02057497,0.06413586,-0.0717198,0.036913227,0.058939446,-0.0027796105,-0.025139382,-0.026684262,-0.027667366,0.00571722,0.07031537,0.03152956,0.052057717,-0.022377327,0.0022295401,-0.0016560627,-0.023653023,-0.012476062,-0.037615445,0.011007258,-0.039675284,0.031974297,0.008151574,0.037287746,-0.041594677,0.012429248,0.06188876,0.035696052,0.017976765,-0.010486446,0.044684432,-0.0052812602,-0.03904329,0.032419037,-0.011633402,-0.020727117,-0.009292677,0.0014322309,0.015191303,-0.001585841,0.018082097,0.000110452944,0.045925017,-0.009585268,0.021862369,-0.007390838,-0.075558595,-0.02341895,-0.030382605,-0.0011125756,-0.01908861,-0.019849345,0.028088696,-0.016818106,-0.022822065,0.00079365197,0.041828748,0.05346215,0.013002725,-0.008093055,0.012651617,-0.010404521,-0.025373455,-0.0025821119,-0.028369583,-0.0036807896,0.006565733,-0.009415565,-0.0003317246,0.023664726,-0.0054099998,-0.026567224,0.03382347,0.018994981,-0.010989702,0.01931098,-0.016818106,0.015706262,-0.0014037034,0.0007420829,-0.0030341644,-0.019802531,-0.035227906,0.009515046,-0.0076600215,-0.022084737,-0.0077419467,0.0043742293,-0.004807263,0.020071713,0.027760994,0.013353834,0.005129113,0.06315275,0.013985829,-0.023372136,0.034993835,0.012230286,0.017695878,-0.0013064169,0.02125378,0.02916543,-0.027690772,0.012850578,0.020305786,0.05477296,0.037989963,0.014313531,-0.04131379,0.011457847,-0.02703537,0.008625571,0.0029785722,0.00852609,-0.046088867,0.039183732,0.0075312816,0.01124133,0.010726371,0.0071216547,-0.02044623,0.0080755,-0.029095208,-0.07008129,0.0031043862,0.025326641,-0.01915883,0.054960214,-0.011937696,0.010814148,-0.023465764,0.0036251973,-0.00888305,-0.064463556,-0.0023670578,0.00020517915,0.015050859,0.024413759,0.0552411,0.011182812,-0.037732482,0.0047750785,-0.0078121684,-0.016443592,-0.029142022,0.012288804,0.049529735,-0.04606546,0.004889189,-0.019779123,0.03323829,0.0070046186,-0.0018403948,-0.023793466,0.036702562,-0.012382434,0.04967018,0.01049815,0.0200249,-0.031131638,0.042624597,-0.02600545,-0.0044883396,0.017028771,0.015987149,-0.0048394483,0.0229391,-0.05158957,-0.019814234,-0.025115976,-0.0033150513,0.032536075,0.043233186,0.008233499,0.022271995,0.0066242507,0.001010169,0.0054538883,0.07232839,0.012979318,0.025022347,0.03808359,-0.0137166465,-0.044707842,0.017426696,0.025607528,-0.010603483,-0.0149806375,-0.05126187,0.00077536504,-0.014231606,0.03621101,-0.0065013627,-0.0027693699,-0.032255188,-0.044848286,0.020106824,0.005243223,-0.013950719,0.000043751435,-0.030874157,-0.0026932964,0.012862282,-0.04971699,0.02464783,-0.0177661,-0.022552881,0.011428588,0.004874559,-0.057020053,-0.012417545,-0.018433206,0.019650383,-0.029118614,0.0429523,0.043911994,0.0049828175,-0.0029273687,0.03000809,0.008186685,-0.03382347,-0.011393477,0.015074267,0.00788239,-0.04503554,0.010375262,0.013646425,-0.03452569,-0.00087704026,-0.021031411,-0.00002484734,0.009222455,-0.051027797,-0.025233012,0.022073034,-0.015109378,0.04107972,-0.008713348,-0.009836895,-0.012604802,0.04505895,0.03127208,-0.0036778636,0.036117382,-0.044848286,-0.002731333,0.008847939,-0.016478702,0.019170536,0.01143444,-0.03934758,0.014407161,-0.01705218,-0.002829351,-0.011422737,0.00794676,-0.011416884,-0.030288978,-0.03740478,0.0029010356,0.0037100485,-0.025303233,-0.04250756,0.028767506,0.015203007,0.025771378,0.020715414,0.028790914,0.028767506,-0.05032558,0.0134474635,0.0012895929,-0.009427269,-0.011744586,-0.06797464,0.06113973,-0.0029273687,-0.027058776,-0.024928717,-0.04260119,-0.010205559,-0.014149681,0.032957405,0.013061244,0.026731076,0.014091162,0.010662001,-0.03204452,-0.0039880094,-0.022424143,0.022857176,-0.016385073,0.013131466,0.005026706,0.019474829,-0.050278764,0.020305786,-0.009930524,-0.010451335,0.0057669603,-0.024530794,0.00046485328,0.019896159,0.016490405,-0.017005365,-0.021815553,-0.019240757,0.0050822985,-0.009409714,0.0004718023,-0.0013846849,0.024811681,0.027690772,-0.016443592,-0.0021695592,0.038200628,0.035064057,0.02958676,0.011879178,0.016291443,-0.008719199,0.021967702,-0.058705375,0.021581482,-0.0274567,0.0073206164,0.010585927,-0.039324176,-0.029422909,0.016338259,-0.03494702,0.0016619145,0.0047165602,0.06479126,-0.0014439345,0.00965549,0.009667193,-0.0015478042,-0.021581482,0.0042074528,-0.011598291,-0.0016984884,0.0017584694,-0.032863773,0.008233499,0.024109464,-0.03340214,0.029376095,-0.027854623,-0.035579015,0.024952125,-0.033425547,0.006436993,-0.05397711,-0.010954591,-0.008256907,0.029399501,0.00490967,-0.020247268,-0.04021365,0.011791401,-0.033214882,0.033776656,-0.0051525203,0.014126273,0.005448037,-0.016818106,0.045339838,-0.01695855,0.023196582,-0.042460747,0.01699366,0.046346348,-0.011961103,0.036913227,-0.052572675,-0.0030400162,0.021277187,-0.015483893,0.016864922,0.0007548837,0.034268208,-0.014102866,0.009105419,0.024952125,-0.0056674797,-0.010960443,-0.00084412383,0.023594504,0.027269442,0.0076951324,0.016174408,-0.05917352,0.0071040993,0.003672012,0.015191303,-0.018245948,0.023255099,0.0031014602,-0.019603569,0.01198451,0.00946238,-0.031927485,-0.04217986,0.016127594,-0.00859046,-0.029774018,-0.013482574,0.011767994,-0.029446317,-0.030569864,0.042554375,-0.0042981557,-0.0068173604,0.014629529,-0.022470957,-0.003478902,-0.013505981,-0.0048950403,-0.0229391,0.022915695,-0.019041795,0.029142022,-0.011767994,0.026848111,0.053836666,-0.004043602,-0.016256332,0.034080952,-0.027878031,-0.0053982963,0.005155446,-0.016385073,-0.0025982044,0.043888588,0.018632168,-0.027269442,0.019369496,-0.0022763547,0.01585841,-0.005924959,-0.034127764,0.0037510113,-0.018058691,0.007174321,-0.059360776,-0.004137231,-0.01750862,-0.020785635,-0.017333066,-0.01563604,-0.009579415,0.027105592,-0.010837555,0.0024665387,-0.008608015,0.04948292,-0.043162964,0.00056762574,-0.029212244,-0.0037012708,0.01111259,0.0041752676,-0.04210964,-0.010492298,0.0149806375,-0.017918248,0.0030575716,-0.033261698,-0.04445036,-0.03597694,-0.001985227,-0.017649064,-0.03213815,0.006360919,-0.008327128,-0.026403375,0.012206879,-0.0016033964,0.014992341,-0.046931528,-0.012288804,-0.017438399,-0.040986087,-0.020329194,-0.000102589576,0.032933995,-0.034923613,-0.0005782321,-0.014863602,-0.061233357,0.010474742,0.041407418,-0.017028771,0.022447549,-0.005401222,0.013833683,0.04096268,-0.00017299419,-0.03188067,0.022646511,0.019989789,0.0066242507,0.0031160896,0.028533434,0.012359026,0.023945613,-0.015975446,0.013974126,0.018585354,0.021838961,-0.003195089,-0.028275954,0.01695855,0.016478702,0.013564499,0.02151126,-0.020329194,0.029095208,-0.00030209977,-0.012183472,0.035766274,0.0039528986,0.0025338344,-0.032770146,0.030710308,0.0064721038,-0.012206879,-0.0027576662,-0.068583235,0.006360919,0.0018755057,-0.017965062,-0.006922693,0.0034584207,0.0007717077,-0.014676344,0.000040208346,0.013037836,-0.0015638967,0.011416884,0.024975533,0.02125378,0.058424488,0.015776483,-0.016677663,-0.027948253,0.024764867,-0.014477382,-0.00036976134,0.05364941,0.027526923,0.02073882,-0.0006722269,-0.018011875,-0.035906717,-0.01756714,-0.029563352,-0.013295316,0.0005500703,0.01437205,0.027643958,0.003543272,0.039558247,0.009187344,-0.0006191948,-0.024905311,0.013564499,0.02549049,0.026075672,-0.031646598,0.010451335,-0.005278334,0.0039265654,0.025467085,0.0071684695,-0.028065288,-0.0040904162,0.004096268,-0.016619146,0.03255948,0.0041898973,0.02839299,0.012054732,0.011937696,-0.01915883,0.00068356475,-0.027831215,-0.026637446,-0.05364941,-0.0071040993,0.0041196756,-0.015167896,-0.04253097,0.0015214711,-0.0021403,-0.0065364735,0.025911821,-0.0065832883,-0.015717966,0.02134741,0.03834107,-0.02128889,-0.0129559105,-0.05355578,-0.03962847,-0.00018780658,0.023770059,0.005796219,0.022143256,-0.0018901351,-0.019744013,0.0043742293,-0.030663492,0.006565733,0.031038009,-0.012967614,0.005632369,0.0014783139,0.020364305,-0.013997533,0.013108058,-0.003385273,0.032863773,0.0018594131,-0.019615272,0.0055884803,0.037006855,-0.04896796,0.022506068,-0.021733629,0.009854451,-0.026918333,-0.0044210437,0.0187375,0.022365624,0.012850578,0.009813488,0.002731333,-0.012382434,0.037685666,-0.03621101,0.027667366,0.03527472,0.018199135,0.02635656,-0.007466912,0.056926426,-0.00056725997,-0.018936463,0.004936003,0.010158745,0.056739166,0.02248266,0.0024767793,0.008110611,0.005840108,-0.014524196,-0.02406265,0.0017628582,-0.0258416,0.024296721,0.0055065546,0.037779298,0.008572904,0.047118787,0.08749629,-0.023535987,-0.03351918,0.026216116,-0.0028703136,0.008473423,-0.0014856287,-0.0016502109,0.026894927,0.00045717278,-0.0011623161,-0.02393391,0.010568372,-0.02108993,-0.024601016,0.029633574,0.021663407,0.04386518,-0.014769972,-0.04770397,-0.019861048,-0.01818743,-0.006021514,-0.0024606867,-0.006191217,-0.01883113,0.035344943,0.008385646,0.010024154,0.018105505,-0.022950806,0.004848226,0.02464783,0.04131379,0.01798847,0.022587992,-0.0021988181,0.021628296,0.0060975878,0.0033618659,-0.016935144,-0.029867647,0.019147128,-0.017040476,-0.033472363,-0.018573651,-0.018000172,0.016771292,-0.021206966,-0.009895413,-0.015050859,-0.025279826,-0.037287746,0.011814808,0.037217524,0.022833768,0.0049740397,-0.012288804,0.022353921,-0.0151796,0.012066436,0.041852158,-0.006805657,0.04709538,0.008531941,0.045012135,-0.018257651,-0.050419208,-0.00047728838,0.013330427,-0.020071713,0.008455868,0.015437079,-0.007706836,-0.023571098,-0.005632369,0.00053544075,-0.031482745,0.0044971174,0.0025645564,-0.024928717,0.02053986,0.02483509,-0.0038914548,0.006308253,-0.0014088236,-0.037264336,-0.01166266,0.0045439317,-0.0026567224,-0.0058284043,-0.012827171,0.036421675,-0.0022631881,0.02483509,0.04150105,-0.02780781,0.0134474635,-0.017391585,-0.022073034,-0.005190557,-0.018480022,0.0017277474,0.048499815,-0.012124954,0.020340897,-0.02525642,0.009842747,-0.0187375,-0.015132785,-0.015308339,-0.005155446,-0.020048307,-0.008239351,0.0113232555,0.009503342,-0.033214882,-0.042133044,0.012359026,-0.032887183,-0.003759789,-0.018362984,-0.0013576203,0.017918248,-0.00881868,-0.034057543,-0.023664726,0.0043947105,0.001585841,0.0032389776,0.009058604,-0.018386392,0.024624424,-0.0057991454,0.009877858,0.013775164,0.03475976,-0.024179686,0.010334299,-0.0057874415,-0.0014336938,-0.011024813,-0.00037195577,-0.00017098262,0.0335894,-0.024671238,0.01026993,0.014898713,-0.0229391,-0.016045667,-0.00534563,-0.016115889,0.005720146,-0.037779298,0.00939801,-0.008356387,-0.01996638,-0.019357793,-0.018035283,-0.026801297,-0.033659622,0.04744649,0.03766226,-0.0053982963,-0.026239524,-0.005500703,-0.006969508,0.0056294426,0.009152234,-0.0031248673,0.014512493,-0.016736181,-0.0013261668,0.021487853,0.064416744,0.012382434,-0.009895413,0.00041438141,0.03026557,0.06507215,-0.008081352,-0.0014556381,-0.01466464,-0.022564586,-0.01369324,0.01198451,0.015565819,0.016466998,0.005500703,0.010082671,0.005243223,-0.010550817,0.028112102,-0.009971487,0.013353834,0.009538453,-0.012394137,0.014231606,-0.013786868,-0.019486533,0.042788446,-0.042250082,0.013412353,0.008344684,-0.013529388,0.020668598,-0.010287485,-0.0061619575,-0.03862196,0.024858495,0.0019998567,0.003695419,0.018842833,-0.007221136,-0.0017292104,-0.008373942,-0.018983277,-0.0012208342,-0.011176961,0.020563265,-0.010199708,-0.034900203,-0.036257826,-0.017169215,-0.028252546,0.030616678,0.026988555,-0.021148447,-0.0044210437,0.0051934826,0.013166577,0.0010321133,-0.008192536,0.012885689,-0.012862282,0.048265744,-0.032419037,0.013880497,-0.012522877,-0.006360919,0.015004045,-0.016232926,-0.008128166,-0.007209432,-0.031318896,0.010919481,-0.0010972146,0.013131466,0.008438312,0.016420184,-0.0007336709,-0.036725968,-0.012148361,0.026403375,-0.015121081,-0.048687074,0.00975497,-0.010784889,-0.02464783,0.061935574,0.012686728,-0.026403375,0.006834916,0.015238117,-0.021429334,0.013002725,0.042062823,0.03316807,0.017742693,0.007800465,-0.031412523,-0.022822065,-0.015156192,-0.031225268,-0.018070394,0.016747884,0.015238117,-0.021920886,0.008063797,0.019989789,0.01508597,0.011674364,-0.008110611,0.021183558,-0.009041049,-0.030148534,-0.0018608761,-0.029680388,-0.01831617,-0.015846705,-0.02086756,-0.040588167,0.00033849073,-0.019896159,0.020329194,0.03628123,0.037381373,0.022599697,-0.039417803,-0.008473423,0.009889562,-0.0020349675,0.025888415,0.014079459,-0.006483807,0.02525642,0.014606122,0.0052929637,-0.018503428,-0.006156106,0.0067471387,-0.016443592,0.0013707869,0.0015668225,-0.023758356,0.010234819,0.049202032,-0.0066008437,0.010111931,-0.0077536507,0.015261524,-0.009608675,0.00962623,-0.019697199,-0.036725968,-0.026122488,0.0049008923,-0.053368524,0.03129549,-0.0016282666,0.008842087,-0.026216116,0.027269442,-0.007466912,0.017976765,-0.021534666,-0.0110657755,-0.010474742,-0.0149806375,-0.0031892373,-0.0032770145,0.025139382,0.013084651,0.035813086,0.011943548,0.042484153,-0.042788446,-0.032863773,0.004874559,-0.022658214,0.0067003244,-0.0075254296,-0.038060185,-0.0048570037,-0.025982045,0.041009497,-0.019135425,0.0011454921,0.0016911735,0.0017379881,0.0073147644,0.0020130232,0.016771292,-0.004064083,0.001834543,-0.030288978,-0.012909097,-0.047774192,-0.0066008437,-0.058705375,0.038645364,0.008988382,0.025467085,-0.024577608,-0.026450189,0.0027810736,0.011650957,0.008128166,-0.02380517,-0.013658129,-0.004906744,0.03602375,-0.018234245,-0.00054458424,-0.01198451,0.0009421417,0.02932928,0.032348815,-0.029563352,-0.0075605405,0.023793466,0.00859046,-0.018667279,0.025303233,-0.01637337,-0.0025587047,-0.021031411,-0.06053114,-0.0032419036,0.01640848,-0.006366771,-0.014676344,0.025724564,-0.01792995,0.0034116062,0.0025835747,-0.0070631364,0.022014515,-0.04599524,-0.0020905598,-0.026918333,-0.018655576,-0.0089298645,-0.009146381,-0.01372835,0.009790081,-0.034315024,0.025467085,-0.014255013,0.0436077,-0.023278506,-0.047001753,-0.0001616563,-0.024366943,0.032606296,0.012440952,0.014758269,-0.01747351,-0.039722096,-0.0054304814,0.007361579,0.023664726,0.003850492,0.030640086,0.014266717,0.00043120538,0.0013320186,-0.041852158,0.06432311,0.0039587505,-0.0132016875,0.033542585,-0.0077770576,0.0018199134,-0.0019208571,0.02134741,-0.004505895,-0.0047077825,-0.015448783,-0.042882077,0.011592438,-0.0071333586,0.036257826,-0.001988153,0.0045848945,0.0033296808,0.009608675,-0.0024504461,-0.0074493564,0.0029785722,-0.03279355,0.00073074497,0.008052093,0.009029346,0.043162964,-0.0014154069,-0.030452827,-0.0040582316,0.027760994,-0.017227734,0.0026845187,-0.005740627,0.0018798945,0.0011645105,-0.017134104,-0.034385245,0.0031482747,-0.015706262,-0.0184098,0.00029112762,-0.00091434555,0.015940335,0.0051437425,0.015331746,-0.005807923,-0.026497003,0.0069402484,-0.019006684,-0.0068524713,-0.01359961,0.0029902759,0.0290718,0.023875391,0.0018711168,0.017063882,-0.0049330774,0.013681536,-0.0452228,0.020036602,-0.0017804137,-0.04250756,-0.01317828,0.055475175,0.012394137,0.0033735693,-0.027222628,0.0076190587,0.00658914,0.019076906,-0.0057377014,-0.027222628,0.017368177,-0.021874072,-0.020937782,-0.018760908,-0.031482745,-0.018842833,-0.00936875,0.0015756002,0.0132133905,-0.008227647,0.0053836666,0.015577523,-0.019065203,0.020692006,-0.01624463,0.0069929147,0.0020642267,0.0071918764,0.013365538,0.03417458,0.0043127853,0.06961315,-0.014383753,0.019568458,0.02804188,-0.009661341,0.031927485,-0.013505981,0.026848111,0.021218669,-0.011334959,0.011416884,0.03340214,-0.055100657,0.0070338775,-0.0024460573,-0.009251714,0.010901925,-0.012171769,-0.028720692,0.018597057,0.003505235,-0.022166662,-0.006805657,0.01237073,-0.028814321,0.018456614,0.037100486,0.01675959,-0.03298081,-0.01411457,-0.007765354]},{"id":"guide-channels-2","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channels — Delete and Reorder\nUse channel.delete() to remove a channel. Use guild.setChannelPositions() to reorder channels or move them between categories.\n\n```javascript\n// Delete channel (silent: true skips system message)\nawait channel.delete();\nawait channel.delete({ silent: true });\n\n// Reorder channels\nawait guild.setChannelPositions([\n { id: channelId1, position: 0 },\n { id: channelId2, position: 1, parent_id: categoryId },\n]);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[0.0025216362,0.0027504808,-0.025839167,-0.028967675,-0.022339871,0.039442386,-0.047785077,0.014043529,0.0027939323,0.021505602,0.06113338,0.0055733807,0.026905177,0.024564588,0.066695176,-0.010886053,-0.018087417,-0.019396756,-0.010416776,0.0552008,-0.027554052,0.055896025,-0.0029720834,0.058074396,-0.036707837,0.0030300189,0.041551232,0.008551258,0.0025592942,-0.012027379,0.05149294,-0.019906586,0.017450128,0.032721885,-0.0249122,-0.023695558,0.016430466,0.020231025,0.0010044541,0.03056669,-0.015410803,0.030798431,0.020231025,-0.029268939,0.050056145,0.079765394,-0.041226797,0.013811788,0.0051301755,-0.006905894,-0.024170628,0.027322311,-0.027716272,0.044587046,0.015770003,-0.0073577897,-0.023324773,0.012235946,-0.0014085532,0.018886924,-0.01791361,-0.067344055,0.024958549,0.025885515,-0.007467867,0.010532646,-0.06358984,0.030358125,0.018122178,0.0038584943,-0.035688177,-0.06331175,-0.0013339615,-0.027136918,-0.00004587303,-0.002837384,0.003090851,0.0424782,0.0088641085,-0.03140096,-0.05872327,-0.0050577563,-0.027971188,-0.0023637624,-0.024448719,0.022560025,0.010463124,0.013023867,0.02400841,-0.04136584,0.0047651827,-0.00061773567,-0.055154454,-0.0060252766,0.0103762215,-0.054598276,0.02938481,0.010775975,-0.012409752,0.02305827,0.074852474,-0.05821344,-0.0821755,0.011187316,0.0055386196,-0.029848292,-0.027345486,0.09881453,-0.04410039,-0.03325489,-0.052744344,0.00090379146,-0.021922737,-0.015016843,-0.0055907615,0.01071804,0.040392525,-0.011083033,0.057564564,-0.012189598,-0.04481879,-0.02799436,0.0579817,-0.05445923,-0.03056669,0.0055038584,0.002226166,-0.032652363,-0.051353894,-0.012432926,0.03863129,0.005718219,0.0025390168,-0.021505602,-0.013777026,0.009993848,-0.0058109155,-0.0054401294,-0.0046087573,-0.00727668,0.025815992,0.006094799,0.015874285,0.008759825,-0.038028765,0.023382708,-0.024981724,0.013023867,-0.012826887,-0.014182574,-0.043011203,0.013371479,0.024216976,-0.0012021585,-0.0296629,0.021204337,0.015318107,0.0049042273,-0.029338462,-0.08087775,-0.016442053,-0.023985235,0.02709057,-0.004886847,-0.021181164,-0.033764724,0.0023318978,0.03302315,-0.04062427,0.019999282,0.003050296,-0.02792484,-0.013441001,-0.052188165,-0.0054835808,0.02364921,-0.02091466,-0.058955014,-0.0006731364,0.017890437,0.009124817,0.04824856,0.00056631805,-0.030636214,0.011737702,0.047924124,-0.0019379375,-0.024425544,-0.04069379,0.019431517,-0.018724706,0.00093131076,-0.008081981,0.0377275,0.029477507,-0.008284755,0.03408916,0.018608835,0.008643954,-0.06219939,0.031099696,-0.015538261,0.008904664,-0.026511217,-0.031771746,-0.0438223,-0.03211936,-0.002747584,-0.029407984,-0.00793135,0.007885002,-0.0140203545,-0.06437776,-0.027577227,-0.059186753,-0.037912894,-0.08365864,0.03828368,-0.056683946,-0.038237333,-0.025004897,-0.02950068,0.037356716,0.0046666926,-0.000018896882,0.0033631471,0.041551232,-0.020555463,0.018539311,0.0054430263,0.020624984,0.047506988,0.027507704,-0.02535251,-0.0035166757,-0.0029836704,-0.024471892,0.01573524,-0.014819862,-0.029639725,-0.007299854,-0.031655874,-0.028782282,-0.05478367,0.022212414,-0.002026289,0.016349357,-0.013823375,0.0042553516,0.0139160715,0.06465585,0.039766826,0.0031690637,-0.039650954,0.01704458,0.024587763,0.028573714,-0.018342333,0.0030126383,0.0021725756,0.034390423,-0.0030445026,0.017983133,-0.0038961524,-0.028481018,0.015654132,-0.025700122,0.008846728,-0.026951525,-0.016998231,0.0027562743,-0.039581433,0.028643237,-0.04342834,0.009113231,0.025282986,-0.0016989541,0.011175729,0.013719091,-0.06743675,-0.048480302,-0.017890437,0.00939132,-0.0072013643,0.005683458,0.027669923,-0.037379887,-0.009460843,0.016082853,0.026650261,-0.02037007,-0.0063149533,-0.029523855,-0.036638316,-0.007879208,0.0740182,0.04303438,0.034158684,0.008562845,0.01751965,0.015966984,0.01676649,-0.0075721503,-0.026117256,-0.012989106,-0.0013303405,-0.0041481713,-0.02882863,0.042941682,-0.033115845,0.013568459,0.04428578,0.012525623,-0.03425138,-0.0363834,-0.05172468,-0.031910792,0.032930452,0.03649927,0.03728719,-0.0066220104,-0.031215567,-0.025815992,-0.032930452,-0.01676649,-0.021598298,0.009773694,-0.051261198,0.020590223,0.0043017,0.015515087,-0.03582722,0.0014317273,0.043474685,0.026233127,0.04477244,0.0023101722,0.062384784,-0.027136918,-0.04871204,0.027345486,0.017786153,-0.00014176057,0.0020060115,-0.0013730678,0.004264042,-0.01368433,-0.0071839835,-0.0032704505,0.024170628,-0.04029983,0.0019350407,0.009234895,-0.083936736,-0.018886924,-0.009536158,0.02242098,0.009443462,-0.0076822275,0.041574407,-0.0051127947,-0.021100055,-0.03214253,0.00478546,0.045374967,0.0033747342,-0.046927635,-0.010202415,-0.016465226,-0.018203286,0.022061782,-0.051307548,-0.01570048,-0.023232076,-0.027855316,-0.03353298,0.0133019565,0.017786153,-0.0019466277,0.009680997,0.018249635,-0.040531572,0.0064597917,-0.019987697,0.0014889385,0.0071955705,-0.014228922,0.025561078,-0.015213823,-0.015132713,0.020984184,-0.0013158567,0.0057993284,0.04259407,0.02574647,-0.0031429927,0.037472583,0.025120769,-0.00965203,-0.014819862,0.045815274,0.0047014537,-0.040531572,0.02345223,-0.022119718,-0.00020820517,0.017959958,-0.012595145,-0.008319517,-0.040207133,0.0031487863,0.037124973,0.043636907,0.047460638,-0.030265426,-0.0634508,0.007815478,-0.03793607,0.034228206,-0.0139160715,-0.007502628,-0.028481018,0.0511685,0.0041163065,-0.008974186,-0.001762683,0.012386578,0.022629548,0.017484888,-0.039488737,-0.0822682,0.021366557,0.01475034,-0.04630193,0.055154454,0.030775258,-0.010839704,-0.050287884,0.008655542,-0.007386757,-0.074203596,-0.02558425,-0.0098895645,0.008788792,-0.0025448103,0.030659387,0.0062628114,-0.012884822,0.0045884796,-0.019524213,-0.0438223,-0.018226461,-0.000988522,0.042918507,-0.02709057,-0.0012050553,0.0031487863,0.020346895,-0.005622626,-0.00966941,-0.020740855,0.048155863,0.00873665,0.074898824,-0.010839704,0.03341711,-0.0095883,0.0168476,-0.029431159,0.011662386,0.036846884,-0.0017742701,0.03167905,0.01475034,-0.050473277,-0.0127110155,-0.0058630574,-0.022606375,0.032999977,0.020578636,0.054830015,0.018377094,-0.0068595456,-0.008186265,-0.0061990824,0.06354349,0.0058746445,-0.008139917,-0.00013985956,0.023197314,-0.028388321,0.025422031,0.046023842,-0.010266144,-0.0063555078,-0.04959266,0.01081653,0.002388385,0.05204912,-0.008249994,0.032327924,-0.02748453,0.0012970277,0.0012354713,0.018910099,-0.043845475,-0.0038584943,-0.021053707,0.016140789,0.0101966215,-0.01032408,0.012305468,-0.02214289,-0.009136405,0.014785102,0.024054758,-0.045722578,-0.024842678,-0.013441001,0.018933272,-0.023892539,0.026348997,0.022733832,-0.0029141482,0.0035050886,0.048433952,0.020961009,-0.019396756,-0.006482966,0.00065611786,0.013162912,-0.027971188,0.0023695559,0.065860905,-0.019825477,0.0106079625,-0.02519029,0.03689323,-0.0008009562,-0.03045082,-0.016743317,0.0038440104,-0.016812839,0.047391117,0.0037165526,-0.009200133,-0.009107437,0.04456387,0.04275629,0.023208901,0.016708555,-0.03756528,-0.017902024,0.012873235,-0.0017192315,0.0088641085,-0.010515266,-0.04769238,0.031841267,-0.01779774,-0.033301238,-0.011795637,0.0027186163,-0.0112220775,-0.011042478,-0.044981007,-0.003426876,0.003238586,-0.013058628,-0.0344136,0.022606375,-0.004863673,0.029454332,-0.0015483223,0.03687006,0.047785077,-0.063775234,0.0020914662,-0.008771412,-0.04674224,-0.013777026,-0.047785077,0.049268223,-0.009055295,-0.039789997,-0.0141594,-0.058537878,-0.022722244,-0.0276004,-0.008794586,0.014657644,0.014298445,0.012293882,-0.0048926403,-0.022455743,0.024425544,-0.0018235152,0.03218888,0.00083789,-0.013325131,0.0006180978,0.02535251,-0.048897438,0.0174733,-0.028550541,-0.012699429,0.0030329155,-0.027021047,-0.009860597,0.030265426,0.026882002,-0.01273419,0.0030821606,-0.032420624,0.017137276,-0.016048092,0.029245766,0.0014085532,0.00039540877,0.011419058,-0.0097099645,0.023046682,0.0022594787,0.04057792,0.021100055,0.012305468,0.022606375,-0.01301228,0.030867955,-0.035618655,0.0086323675,-0.030195905,0.004295906,-0.00019390238,-0.0062743984,-0.05580333,-0.002004563,0.0007412104,0.007809685,-0.009287037,0.05691569,0.0018800021,0.00929283,-0.018052654,-0.022038607,-0.001981389,0.008255787,0.016917123,-0.007954524,-0.0068363715,-0.026140431,-0.0075663566,0.015167475,-0.03089113,0.015677307,-0.013151324,-0.028481018,0.039789997,-0.04326612,-0.0012159182,-0.026951525,-0.0064597917,-0.0014396935,0.023510166,0.023000333,-0.033486634,-0.035734523,0.013672743,-0.020115154,0.0105036795,-0.020231025,0.023695558,0.013649569,-0.009906945,0.009066883,-0.009727346,-0.0067842295,-0.01640729,0.0018611732,0.0178325,-0.011083033,0.031261913,-0.029083546,0.0042321775,0.01609444,-0.02669661,0.009321798,0.0032298958,0.019246124,0.034969777,0.019269297,0.0155846095,-0.0035166757,-0.002623023,0.006117973,0.019477865,0.02040483,0.02020785,0.022316698,-0.05038058,-0.0024752878,0.0025259813,0.030358125,0.0029503577,0.02653439,-0.0046435185,-0.004411777,0.008835141,-0.0010399396,-0.009680997,-0.017114103,0.0070970803,-0.010115513,-0.02653439,0.0029561513,0.02317414,-0.043289293,-0.030473994,0.0063439207,-0.027554052,-0.004510267,0.030798431,-0.0044407444,-0.010793356,-0.0040902356,0.0145070115,-0.03279141,0.011789843,-0.0123518165,0.006065831,-0.025097594,0.016754903,0.033973288,0.025885515,-0.02519029,0.044702917,-0.028573714,0.0076648467,0.009072676,-0.0085802255,-0.010671692,0.0350393,0.035919916,-0.0283188,-0.0059615476,0.0071608094,0.00046022394,-0.011164142,-0.0058775414,-0.00037187253,-0.01981389,0.00660463,-0.06766849,0.019999282,-0.022826528,-0.040531572,-0.013267195,-0.037843373,-0.0050172014,0.01676649,-0.015260171,-0.0072013643,-0.009124817,0.023104617,-0.040323004,-0.013220847,-0.04416991,0.021227513,-0.013371479,0.029755596,-0.020242611,0.0018524828,0.02546838,-0.017380605,0.000046438803,-0.045792103,-0.015885873,-0.00909585,-0.033787895,-0.0055733807,-0.02882863,0.014958908,-0.007740163,-0.009501398,0.0046522086,-0.011465406,0.016523162,-0.039766826,-0.0040323003,-0.017751392,-0.050565973,-0.018678358,0.031053348,0.034274552,-0.05872327,-0.018516138,-0.022363046,-0.065999955,0.0025694328,0.03619801,-0.01566572,-0.0027432388,-0.009831629,0.013522111,0.039372865,0.03733354,-0.029268939,0.007427312,0.018956447,0.001856828,-0.015306519,0.023823015,-0.006853752,0.033092674,-0.0042437646,-0.0010862878,-0.007265093,0.018342333,0.005793535,-0.030311776,-0.018597247,0.019431517,0.011691354,0.015202236,-0.015005256,0.011697147,0.027716272,0.0053619165,0.04903648,-0.023104617,0.047391117,-0.037449412,0.023660798,0.0134294145,0.0037571075,0.0050780335,-0.050797716,-0.009721552,-0.018214874,-0.02882863,-0.009003153,-0.002404317,-0.021482429,-0.018226461,-0.01724156,0.009698378,0.00052322866,-0.007577944,0.012490862,0.01858566,0.039581433,0.037657976,-0.01760076,-0.014808276,0.012235946,-0.0017930991,-0.0026012973,0.06113338,0.050473277,0.022328284,-0.02725279,0.0036151658,-0.040438876,-0.048851088,-0.03689323,-0.0054864776,0.0038150428,0.016024917,0.020335307,-0.020022457,0.052419905,0.013580047,0.028202929,-0.021992259,0.025653774,0.032999977,0.016279833,-0.02558425,-0.0042524547,-0.008794586,-0.0049824403,0.006865339,0.026372172,-0.058955014,-0.011656593,0.0045682024,0.005208388,0.005712426,0.012861648,0.0026809582,0.008302135,0.012282294,0.005173627,-0.00063584046,-0.045421313,-0.024077931,-0.028643237,0.004898434,0.008209439,-0.018214874,-0.052419905,0.035456434,-0.0005598003,0.028782282,0.026650261,0.0038121461,-0.00947243,0.01732267,0.04528227,-0.036128484,-0.040856007,-0.05557159,-0.04616289,-0.022965573,0.03385742,-0.01455336,0.010167654,-0.03941921,-0.02187639,0.013359892,-0.008951012,-0.0009798317,0.05603507,-0.025491554,0.020103566,-0.023730319,0.031771746,-0.0048028408,0.024379196,0.00010835721,0.042848986,0.011645005,-0.0018090314,-0.012293882,0.021134816,-0.046417803,0.00083499326,-0.013371479,-0.0013006487,-0.052929737,-0.0087076835,0.0038324234,0.0037802816,0.04481879,0.0052025947,-0.017867262,-0.008331103,0.010318286,0.004374119,0.019837065,0.018226461,0.019188188,0.04203789,-0.012490862,0.026951525,0.018411854,-0.05598872,-0.0034065987,-0.02091466,0.06535108,0.0242865,0.021123229,0.023602862,0.0016468123,-0.0006383751,-0.0061121797,-0.000050331335,-0.044123564,0.014182574,-0.0031545798,0.03788972,-0.010347254,0.014657644,0.054830015,0.0077807177,-0.0011833295,0.015573022,-0.0060600378,0.021783693,-0.0089394245,-0.006204876,0.0062743984,0.020555463,-0.004026507,-0.015515087,0.030937478,-0.014970494,-0.0016120512,0.0004960714,0.022212414,0.036012612,0.014761928,-0.035502784,-0.008968392,-0.023660798,-0.0011637764,0.015190649,0.010219796,-0.015885873,0.04080966,0.01914184,0.025167117,-0.0018264119,-0.02278018,0.041110925,-0.011280012,0.029176243,0.0069232746,0.020937836,0.015851112,0.024216976,0.0014889385,-0.0041858293,0.01491256,-0.02163306,0.018550899,-0.006007896,-0.0417598,-0.026974699,-0.04097188,0.012235946,-0.03246697,-0.048665695,-0.0013969662,-0.014031942,-0.034344077,0.029848292,0.031632703,0.028898153,-0.0020668437,-0.0068479585,-0.012745777,-0.03341711,0.01455336,0.03089113,0.0007676434,0.04623241,-0.013672743,0.009675204,0.010190828,-0.05445923,-0.014727166,-0.015329693,-0.0111467615,0.011048271,0.011726115,-0.014367967,-0.017183624,0.020080393,-0.010034403,-0.009443462,-0.0063091596,-0.005747187,0.0046145506,-0.003241483,0.036800534,-0.0017583378,0.0076474664,-0.009310211,-0.0070333513,-0.005805122,-0.022768592,0.02364921,-0.024379196,-0.020277373,0.026997874,-0.016824426,0.045467664,0.036313877,-0.021227513,0.00063801307,-0.0049274014,-0.019489452,0.008904664,0.0123518165,-0.004849189,0.0034094953,0.02586234,0.01214325,-0.020497527,0.009623062,-0.0064076497,-0.014483837,-0.02519029,0.016430466,0.021204337,-0.021470841,0.018574074,-0.030613039,-0.028017536,-0.029593376,0.0022522367,-0.04562988,0.0008646851,-0.03895573,0.011534928,0.008180471,-0.005185214,-0.04108775,-0.028527366,-0.0077807177,-0.0016583994,0.010474712,0.009205927,-0.021470841,0.022154478,0.036290705,0.013047041,0.036035787,0.02281494,-0.009727346,0.021204337,0.0006423582,-0.0178325,-0.022131303,-0.013927658,-0.017728217,0.010526854,-0.009402907,0.020775616,0.0073346156,-0.016499989,-0.030821607,0.016998231,-0.007890794,0.0174733,-0.0025172909,-0.00093493174,-0.010955575,-0.01937358,-0.029616551,0.0037484171,-0.0363834,-0.07503787,0.053995747,0.01724156,-0.0022913432,-0.021760518,-0.0009733139,0.009959087,-0.0046116537,0.013603221,0.010445744,0.022131303,-0.010312492,0.0006072349,0.021818453,0.06257018,-0.006569869,-0.007676434,0.0109671615,0.030775258,0.04662637,-0.018052654,0.0022276142,-0.026209952,-0.03318537,-0.008389039,0.013858136,0.025097594,0.010451538,0.011048271,0.0050548594,0.01130898,0.007896588,0.037820198,-0.037912894,-0.0038179397,0.0037194495,-0.034344077,0.0007346927,-0.010463124,-0.013371479,0.030914303,-0.012873235,-0.0021392629,0.006963829,-0.018342333,-0.005185214,-0.016360942,-0.009495604,-0.051817376,0.032235228,0.008180471,0.0042553516,0.009512984,-0.018492963,0.000032384956,-0.015109539,-0.015573022,-0.006482966,0.01388131,0.02361445,-0.03939604,-0.04583845,-0.0070739063,-0.03459899,-0.028110232,0.03867764,0.03374155,-0.0336952,-0.020810379,0.010393602,0.0035688176,-0.020115154,0.0124561,0.014703992,-0.03195714,0.051353894,-0.016013332,0.022606375,0.0055994517,-0.0019089698,0.0072535058,-0.03990587,0.023938887,-0.003649927,-0.010526854,0.010544234,-0.019199776,0.020509114,0.0008668577,0.0033428697,-0.02574647,-0.037843373,-0.011036685,-0.005616832,0.008053014,-0.053207826,0.0041221003,-0.01740378,-0.012560384,0.06558282,0.008012459,-0.03413551,-0.018516138,-0.0041510677,-0.032490145,0.017554412,0.024054758,0.0035804047,0.024842678,-0.02325525,-0.03151683,-0.0026215746,-0.007989285,-0.019582149,-0.01597857,0.0178325,-0.0005192456,0.016720142,0.0028895256,0.03246697,0.0020422211,0.029940989,-0.016662207,-0.001887244,-0.0051417626,-0.0344136,0.015688892,-0.002578123,-0.042895332,0.0014244855,-0.0048926403,-0.019095492,-0.006593043,-0.008163091,0.053346872,0.012073727,0.028226104,0.0024781846,-0.013753852,-0.015515087,0.020242611,0.0076416726,0.014286857,0.0023941784,-0.015596196,0.011436438,0.03508565,0.0036093723,-0.02653439,0.013336718,-0.017728217,0.009536158,0.0044784024,-0.0046377247,-0.022084955,0.0032965215,0.01874788,0.013116564,0.011401677,0.024402369,0.009796868,0.015943808,0.027461356,-0.039141122,-0.022675896,-0.027183266,-0.0042321775,-0.032374274,0.015387629,-0.009240689,0.024703633,-0.0054314393,0.024147455,-0.021123229,0.023104617,-0.015688892,-0.0015787383,-0.030613039,-0.019802302,0.017774565,-0.0023232074,0.002804071,0.03211936,0.017450128,-0.009507191,0.055386197,-0.036985926,-0.022166066,0.027739447,-0.01589746,0.01827281,-0.006975416,-0.04393817,-0.008562845,-0.0191766,0.042779464,-0.011007717,-0.0018061346,-0.017693456,0.016592685,-0.015063191,-0.0025621909,0.0037947656,0.022235587,0.0050693434,-0.0012419891,0.007039145,-0.019211363,0.014449077,-0.036360227,0.031377785,0.013719091,0.023985235,0.0043045967,-0.0079139685,0.022548439,-0.020856727,-0.012409752,-0.016303008,-0.029940989,-0.0010790459,0.010225589,0.0054430263,0.011841985,-0.019049143,-0.0101966215,0.029917816,0.049685355,-0.009234895,-0.013649569,0.0046116537,-0.0063033663,-0.035525955,0.037032276,-0.00670312,0.0010392154,-0.008904664,-0.04342834,0.0005880438,0.02519029,-0.014715579,-0.01273419,0.034575816,0.00006413624,-0.016917123,-0.004863673,-0.012189598,-0.00031230776,-0.02736866,-0.008435387,-0.00210595,-0.03246697,-0.013568459,0.012154836,0.010961369,-0.0008103707,-0.012027379,0.024332847,0.0071202544,0.038121462,-0.016048092,-0.039650954,0.004382809,-0.050519627,0.034181856,0.019489452,0.015051604,-0.0026519906,-0.016279833,0.010665898,0.0054806843,0.008371659,0.016314594,0.02658074,-0.0009414494,0.006135354,-0.004272732,-0.018099004,0.039488737,0.00095665746,-0.012270708,0.03056669,0.017658696,0.0008849625,-0.008389039,0.006477172,-0.017311083,-0.019443104,0.008134123,-0.0134294145,0.0038845653,0.021482429,0.012108488,-0.009304417,0.042941682,-0.00054133346,-0.023150966,0.0012847164,-0.0016598478,0.015294933,-0.031818096,-0.015827937,0.0002407938,0.013151324,0.05770361,0.013626395,-0.016893947,0.015839525,0.038260505,-0.022849703,-0.013591633,-0.010509472,0.015433977,-0.004000436,-0.005286601,-0.01827281,0.0029445642,-0.020613398,-0.013359892,-0.01763552,-0.018701531,-0.00077923044,0.0027982774,0.026233127,-0.012780539,0.0062396373,0.0062512243,-0.023823015,-0.020161502,0.0015874286,-0.004756492,0.019860238,-0.0005855091,-0.005718219,-0.009066883,0.0037194495,0.0051533496,-0.018875338,0.01273419,0.0002936598,-0.04477244,-0.015213823,0.037032276,0.0016526058,0.024077931,-0.032976802,-0.018423442,0.0064134435,0.019408343,0.0015830834,-0.012676255,-0.029616551,-0.02191115,-0.008354277,-0.02692835,-0.025375683,-0.012328642,0.0030850575,-0.008852522,0.02519029,0.017855676,0.024147455,-0.0025433619,-0.028944502,0.005955754,0.0053010844,-0.014333205,-0.009020534,0.01950104,0.019779129,0.017971545,0.021853214,0.068688154,-0.010833911,0.01396242,0.01846979,-0.010254557,0.00067603315,-0.01704458,0.024610937,0.024031583,-0.016917123,-0.010990336,0.04824856,-0.034274552,-0.008846728,-0.00079588685,-0.004843395,0.010793356,-0.0054893745,-0.040601093,0.014008768,0.00008477571,-0.0011427748,0.008638161,0.047831427,-0.013220847,-0.000988522,0.03874716,0.028295625,-0.04583845,-0.00812833,-0.0042119]},{"id":"guide-channels-3","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Channel Permission Overwrites\nUse channel.editPermission() to add or update overwrites (type 0=role, 1=member). Use channel.deletePermission() to remove. Use resolvePermissionsToBitfield() for allow/deny bitfields.\n\n```javascript\nimport { resolvePermissionsToBitfield, PermissionFlags } from '/core';\n\n// Deny SendMessages for a role (type 0=role, 1=member)\nawait channel.editPermission(roleId, {\n type: 0,\n deny: resolvePermissionsToBitfield(['SendMessages']),\n});\n\n// Allow ViewChannel for a specific member\nawait channel.editPermission(userId, {\n type: 1,\n allow: resolvePermissionsToBitfield([PermissionFlags.ViewChannel]),\n});\n\n// Remove overwrite\nawait channel.deletePermission(roleId);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.004411866,0.0062396787,-0.023440653,0.012635629,-0.0013262108,0.015794536,-0.035071682,0.011764975,-0.003842593,0.012870035,0.060722455,0.01577221,0.013361173,0.036589745,0.009415329,0.011290582,0.033642918,-0.009348356,0.027548349,0.055230644,-0.01551548,0.035741415,0.008176323,0.045809735,-0.08920843,-0.010911066,0.02875387,0.036746014,-0.022279784,0.0012606328,0.05424837,-0.008399568,-0.009404167,0.014064392,-0.032906212,-0.020315234,0.044849783,0.0027542769,-0.025159635,-0.017770248,-0.003435172,0.032928538,0.011497082,-0.015727563,0.014120203,0.05375723,-0.03902311,0.024288982,-0.014421583,-0.015694076,0.0039263093,0.055587836,-0.022078862,0.04442562,0.027972514,0.034937736,-0.01586151,-0.010899904,-0.051837333,0.007322414,-0.0053160056,-0.048131477,-0.012334249,0.0018682759,-0.011078499,0.03480379,-0.08193067,0.019545041,0.034067083,0.06308884,0.016955405,-0.032057885,0.038889162,-0.04665806,0.00006614485,-0.03712553,0.03304016,0.024623848,0.019589689,-0.025405204,-0.009197666,0.03132118,-0.044224698,0.006836857,-0.023596924,0.058356065,-0.00025254514,-0.04060814,0.019053902,-0.08179672,-0.032459725,0.008075863,-0.06741978,0.0018892051,0.013450471,-0.013160253,0.0059271366,0.008550257,-0.0052490323,0.042081553,0.062553056,-0.02267046,-0.06951828,-0.012133329,0.036143254,0.005324377,-0.00982275,0.05773098,-0.012803062,-0.044403296,-0.033665244,-0.012602142,-0.003429591,0.025717746,0.004124439,-0.033776864,0.028999437,-0.0018068837,0.061392188,-0.012624467,-0.08219856,-0.042237826,0.04290756,-0.0057597035,-0.04875656,-0.02594099,-0.02155424,-0.038665917,-0.029512899,-0.034357302,0.06349068,-0.02513731,0.052730307,-0.043354046,-0.028039487,0.040786736,0.031455126,0.0031449543,-0.009577181,-0.04498373,0.008751177,0.02251419,0.038308725,0.004875098,-0.009493465,0.033642918,-0.02281557,-0.030963987,-0.030204957,0.02221281,-0.03103096,-0.0075735636,0.0016896805,0.0042528044,-0.03607628,-0.0077744834,0.03904543,0.02674467,-0.010581781,-0.058043525,0.010252495,-0.0017733971,-0.025405204,-0.06174938,-0.02382017,-0.050140675,0.019187849,0.011999383,-0.029870091,0.023150437,-0.025360554,0.003560747,0.006351301,-0.036835313,0.01017436,-0.010302725,-0.017301435,-0.055275295,0.006474085,0.021487266,-0.0039765392,0.04467119,-0.021900268,-0.006965223,-0.012937008,0.01904274,0.010520388,-0.009197666,-0.01188776,-0.002468245,-0.0030807715,0.02654375,0.012646791,0.011642192,0.0043337303,-0.014745288,0.027994838,0.012133329,0.0053690257,-0.06514269,0.003892823,0.009454397,0.041545767,-0.019578528,-0.019031579,-0.018506953,-0.018830659,-0.014332285,-0.06572313,-0.02317276,0.021766322,0.018551603,0.009699966,-0.018607413,-0.02090683,-0.037036233,-0.034781463,-0.0402956,-0.098495394,-0.01783722,-0.036589745,-0.03183464,0.021074263,-0.00032876214,0.018819496,0.037817586,0.009895304,0.009298126,0.010587362,0.02099613,0.011329649,0.04346567,-0.029423602,-0.04226015,0.027637647,-0.0019826887,-0.011218027,0.0021724463,-0.013405821,-0.03922403,-0.018451143,0.0010290168,-0.004509535,0.0009083253,-0.00068787154,0.019801771,0.012825387,-0.027459051,0.011413366,0.02870922,0.05496275,0.041635066,0.007634956,-0.02402109,-0.010771538,-0.04435865,0.06648216,0.06009737,-0.011575218,0.016787972,0.0042388514,0.004894632,-0.0055280873,-0.023351356,-0.025248934,-0.002724976,0.01803814,0.017591653,-0.015236425,-0.040719762,0.024088062,0.022346757,0.016028943,-0.020438017,-0.020315234,-0.010754795,0.05652546,0.006619194,-0.011296162,-0.0067810463,-0.009482303,-0.016051266,-0.038866837,-0.0022952307,0.008036796,0.016307998,-0.04839937,-0.01818325,0.016084753,0.008734434,-0.018730199,0.010871998,0.011831949,-0.005235079,-0.017435381,0.073447384,0.042483393,-0.019935718,0.048533317,0.036545094,0.0028059022,0.05188198,0.00093413796,-0.000924371,0.036991585,0.008885124,-0.0066024507,-0.009415329,0.033776864,-0.05219452,0.027548349,0.04518465,-0.036812987,-0.015437345,-0.031053284,-0.014912721,0.013283037,0.006155962,0.039357975,0.03192394,-0.014466232,-0.023061138,-0.06291025,-0.065008745,0.0071940483,0.00060415495,0.012736089,0.014912721,0.10153152,-0.014957369,0.025807044,-0.00327332,0.00770751,0.038286403,-0.01868555,0.018908793,-0.02070591,0.10358536,-0.03324108,-0.030606797,0.046300873,-0.026588399,-0.029914739,0.0053662355,-0.012635629,-0.0039960733,-0.016575892,0.00051032257,0.018607413,0.03964819,-0.02075056,0.006161543,-0.061213594,-0.058266766,-0.042528044,0.01022459,0.031410474,-0.05188198,-0.019176688,0.007824713,-0.024981039,-0.00035788855,-0.030517498,0.007696348,0.036946934,-0.021543076,-0.0264991,-0.009448816,-0.016687512,-0.008522352,0.0012857477,-0.019545041,0.00800889,0.010235752,-0.015604778,-0.004417447,-0.011932409,-0.035116334,-0.060052723,0.025963314,0.03192394,0.045497194,0.014522043,-0.037549693,-0.023954116,0.03279459,-0.036634393,0.025717746,-0.019143201,-0.007640537,0.007288927,0.04181366,0.031410474,0.044157725,-0.011123149,0.048979804,0.035540495,0.070188016,0.020683587,-0.0019171106,0.02155424,0.030227281,-0.021543076,0.024824768,-0.008840475,-0.0152141005,-0.0050509027,0.018573927,0.017658627,0.0081316745,0.004799753,0.010129711,0.025561474,0.018808333,0.05853466,-0.03083004,0.044157725,-0.0039263093,0.017759087,-0.0354512,0.0072554406,-0.012501682,0.000087466426,-0.018652063,0.02377552,-0.041835986,0.0026314924,-0.05022997,0.056346867,-0.04991743,-0.05670406,0.00071787,0.03163372,-0.009298126,0.018797172,0.017446544,0.022134675,-0.047774285,-0.019288309,-0.017435381,-0.019545041,-0.012256113,0.010386442,-0.005360654,0.0015389905,0.008472122,-0.009794844,-0.029021762,0.011675678,0.013182577,-0.036187906,-0.033218756,0.0035551658,0.033575945,-0.042751286,-0.028843166,0.0013806266,0.0669733,-0.016508918,0.024266658,-0.05139084,0.002810088,0.04040722,0.021777483,-0.0076070502,0.0038760796,-0.01022459,0.013629066,-0.040317923,-0.024668498,0.04085371,0.019533878,0.03283924,0.021643536,-0.0133834975,-0.045720436,-0.01758049,-0.06250841,0.008444216,0.020482667,0.040273275,0.00036521375,-0.0026356783,0.008723272,-0.0032454142,0.08054655,0.047684986,-0.0063345577,-0.055319943,0.0055029723,-0.024936391,0.008712109,-0.011363136,-0.009292545,0.042394098,-0.05514135,0.012490519,0.0019659454,0.059963424,-0.0060666646,0.037594344,-0.041724365,-0.0042639663,-0.006250841,-0.02297184,-0.013651391,0.0083604995,-0.0472385,-0.013573254,0.0362772,-0.017189812,0.0040853713,0.009041395,-0.00074926374,-0.008198648,0.0049839295,-0.022056539,0.022112349,-0.00448163,-0.0063792067,0.008661879,0.029334303,0.008181904,0.032749943,-0.00927022,0.019533878,-0.0034435436,-0.017000055,-0.007930755,-0.005712264,0.022994164,-0.025405204,-0.00014728893,0.0075679827,-0.00045904613,0.011095243,-0.027101861,0.032973185,0.006914993,0.0091865035,-0.0029747307,0.006931736,-0.04080906,0.03949192,-0.0068256953,0.0010492483,-0.0023203457,0.026677696,0.013785337,0.017770248,0.01077712,-0.06273165,-0.03922403,0.023864819,-0.016564729,0.051435493,-0.01425415,-0.034245677,-0.03310713,-0.04109928,0.016453106,-0.0041272296,-0.0024445252,-0.010029251,-0.04159042,-0.02790554,-0.011497082,0.011943571,0.022748597,-0.032816917,0.0029524062,0.027793918,0.018149763,0.030160308,0.028954789,0.027347429,-0.026789319,0.033218756,-0.0067810463,-0.021074263,0.00025271956,-0.07210792,0.06130289,0.0029579874,-0.017323758,-0.023931792,-0.025092661,-0.010994783,-0.029579872,0.021018453,0.015604778,0.017413057,-0.0017259576,-0.012233789,-0.030450525,0.02030407,0.0008699552,0.029423602,-0.016553566,-0.017000055,-0.001601778,0.012278438,-0.016464269,0.0029747307,-0.028195757,0.0071382374,0.026007963,-0.04438097,-0.010403185,0.024713146,0.010765958,-0.02321741,-0.017770248,0.0028938046,-0.0038258496,0.009393005,0.037795264,0.017547004,0.049470942,0.053221446,0.015359209,-0.001999432,0.010352955,0.01843998,-0.029021762,0.017234461,0.016955405,-0.020873344,0.026275856,-0.022168161,0.027079536,-0.037304126,0.045452543,0.016084753,-0.030227281,-0.03576374,0.029289655,-0.007032196,-0.00060624786,-0.018573927,0.035495847,-0.03585304,0.03400011,-0.015258749,-0.020359881,-0.047774285,0.005748541,0.017212138,-0.018596252,-0.030919338,-0.022648137,-0.0018013027,-0.009286963,-0.0037058557,0.018652063,-0.021877943,-0.019377608,0.0353619,-0.021464942,0.00007303403,-0.019310635,0.008980003,-0.0038760796,0.005486229,0.021743996,-0.043041505,-0.052730307,-0.026655372,-0.010179941,0.0017399105,-0.040362574,0.0054834387,0.0052908906,-0.0016645654,-0.001370162,-0.003747714,0.02806181,-0.023462977,0.0100739,0.035317253,0.025003364,0.009945534,-0.008332594,-0.008673042,-0.0047467323,-0.03219183,-0.022849057,0.005435999,0.0035970241,-0.03616558,-0.0031672788,0.03596466,0.012177978,-0.049158398,-0.007227535,0.042751286,0.03757202,-0.0072052106,0.027325105,-0.032705292,-0.010313888,0.021397969,-0.018216737,-0.010313888,-0.0047885906,-0.017323758,0.019701311,0.0131156035,0.0152141005,-0.020717073,-0.030651445,-0.0028993855,0.015403858,-0.011273839,0.03408941,0.008583744,-0.021989565,-0.012099843,0.037616666,0.0075065903,-0.0009229757,0.0068424386,-0.015627103,0.0054443707,-0.016587052,-0.006669424,0.013885797,0.074920796,-0.019779447,0.0046127858,-0.03299551,-0.00024923135,0.025159635,0.010732471,-0.040563494,0.010592943,-0.019678988,0.012032869,-0.02931198,0.008187486,-0.006139219,0.013260713,0.021755159,-0.023061138,-0.004146763,-0.023462977,-0.033620596,-0.007484266,-0.014109041,0.04065279,-0.045698114,0.005837839,-0.02095148,0.0049336995,-0.012099843,-0.033017837,-0.052149873,-0.04982813,-0.0005591573,0.030048685,-0.029981712,0.06549989,-0.021833295,-0.0074117114,-0.06692865,-0.0023663898,-0.04357729,-0.021889105,0.025025688,0.030539824,-0.015013181,0.023686223,0.0021794226,0.0025296372,-0.0031840221,-0.007394968,-0.005293681,-0.033575945,-0.017223299,-0.04462654,-0.00901349,0.022101188,-0.01208868,-0.036522772,-0.02050499,-0.0026468404,-0.008974422,-0.048488665,-0.05433767,-0.029445926,-0.040273275,0.019891068,-0.0060220156,0.024713146,-0.013483957,0.012445871,0.0014343448,-0.07759973,0.022357918,0.017000055,-0.030963987,0.001752468,-0.037214827,0.013662552,0.03308481,0.03768364,-0.027235808,0.010743633,-0.016910758,-0.0024794072,0.0019031578,0.035094008,-0.014332285,0.023485303,0.0034268002,0.024043413,0.008572582,0.002136169,-0.028597597,-0.04185831,0.018105114,0.013428146,0.018931119,0.026409803,-0.024155036,0.021230536,-0.013740688,-0.0078582,0.060231317,0.010408767,0.021777483,-0.005606223,0.028374353,0.025427528,-0.0016966568,-0.016698675,-0.062017273,-0.017200975,-0.0142987985,-0.008661879,-0.032615997,0.012914684,-0.01808279,-0.013740688,-0.03259367,0.0099622775,-0.01465599,-0.005399722,-0.012546331,0.00008367302,0.0093148695,0.024088062,-0.003404476,-0.0002445223,0.0569273,0.007992147,-0.0037002745,0.026766995,0.033575945,0.057373792,0.019399932,0.006088989,-0.03118723,-0.02080637,-0.03455822,-0.015481994,0.00047020835,0.02361925,0.010877579,0.013829986,0.07978752,-0.0017747923,0.0033961043,0.011218027,-0.011117567,-0.008477703,0.011552894,0.0017008426,0.032057885,0.03388849,0.030562147,0.026231207,0.020538477,-0.046925955,0.006820114,-0.0062731653,-0.005681568,0.05938299,-0.017569328,-0.00065891957,-0.044001456,0.025003364,0.0007143818,-0.016330322,-0.0071438183,-0.0058322577,-0.013450471,-0.004579299,0.011139892,-0.0070656827,-0.0372818,0.0052546132,0.027860891,-0.011932409,0.000108221175,0.00005524425,0.010648754,0.0035495847,0.035719093,-0.0373711,-0.019031579,-0.03471449,-0.016397296,0.0054890197,0.00018522302,0.024757795,0.010129711,-0.0014029511,-0.019545041,-0.011865436,-0.015950806,-0.0039821207,0.040630467,0.008561419,-0.017613977,-0.019031579,-0.025650773,-0.01581686,0.0255838,0.022112349,0.026231207,0.011296162,-0.029021762,0.034535896,0.037505046,-0.039759815,0.015013181,-0.011474758,0.010336212,0.015504318,0.03821943,-0.02050499,0.04397913,0.027526025,0.016486593,-0.0012159839,-0.010185522,0.025851693,0.0038258496,0.027146509,0.0122895995,-0.017591653,0.022860218,0.0063233953,0.05344469,-0.010040414,-0.010503645,-0.007930755,0.03817478,0.02638748,0.02044918,0.013774174,0.01587267,-0.012457033,-0.01218914,0.030495174,0.012111004,-0.011391042,-0.017189812,-0.0033709893,0.03451357,-0.009934372,0.02835203,0.040228628,0.0033933136,-0.009789264,-0.013137928,0.009794844,0.00011284303,0.0063345577,-0.013718364,0.02261465,-0.023507627,-0.0027710202,0.0046211574,0.008198648,-0.02674467,0.0011671492,0.034223355,0.049292345,0.0142987985,-0.009850656,-0.036031634,-0.021185886,-0.02654375,-0.0131156035,-0.017011218,0.02171051,-0.008516771,0.013963932,0.0043086153,-0.005363445,0.011273839,0.008070283,0.011575218,-0.011452434,0.05612362,0.03853197,0.024534551,-0.03491541,0.001792931,0.003203556,-0.017457705,0.018618576,-0.013696039,0.009794844,0.028039487,-0.0055922703,-0.022067701,-0.020772884,0.022324432,-0.035183307,-0.030026361,-0.008901867,-0.011709165,-0.014868071,0.01591732,0.009125112,0.008120513,-0.019578528,-0.004911375,0.0061894488,-0.011123149,-0.0037198085,-0.007701929,-0.007992147,0.03953657,0.00034271492,0.041255552,-0.024222009,-0.038777538,-0.0009857632,0.0032426238,-0.015493155,0.02578472,-0.006055502,-0.005260194,-0.027771594,0.013763012,-0.009080463,-0.010414348,0.024646172,0.034134056,0.006808952,-0.0051653157,0.03288389,-0.012222626,0.022090025,0.012657953,-0.02594099,-0.0042500137,-0.0093148695,-0.002865899,0.011865436,-0.002186399,0.054426964,-0.00124668,0.02770462,0.019388769,-0.017692113,0.013137928,-0.0065298965,-0.011954733,-0.028017161,0.027883215,-0.023909466,-0.007863781,-0.0019980366,0.009437653,-0.017256785,0.012546331,-0.021397969,0.023284383,0.017145164,0.021464942,-0.013651391,0.006619194,0.014544368,-0.0046127858,0.008349338,-0.028575273,0.031164907,-0.023284383,-0.013606741,0.005357864,-0.006814533,-0.009286963,-0.0073056705,0.007082426,-0.019991528,-0.002084544,-0.021855619,0.015582453,-0.0046267384,0.0021166352,0.01531456,0.014365772,-0.00053683284,0.0037365519,0.038576618,-0.036187906,0.02069475,-0.004347683,-0.036120933,-0.030651445,0.016799135,0.0022547676,-0.0033179687,-0.012858873,0.009789264,0.04871191,-0.03192394,-0.0117873,0.026588399,0.0044760485,-0.011619867,-0.031298853,0.02135332,-0.0060499213,-0.014365772,-0.044113077,-0.02341833,-0.010950134,0.000032723605,0.036388826,0.012323086,-0.012713764,-0.027950188,-0.020058502,0.023351356,0.057864927,0.02513731,-0.015604778,-0.0045960424,-0.04297453,-0.02770462,0.007071264,0.055275295,0.0024905694,0.005645291,0.005988529,0.018875306,0.039960735,0.016866108,0.0054890197,-0.008790245,0.0068256953,-0.015828023,0.026633047,0.020225935,0.024847092,0.020583127,0.011675678,-0.015147127,-0.0059494614,0.009856237,0.024065739,0.006769884,0.012814224,-0.024646172,-0.008120513,0.0025701001,-0.0030305416,0.006451761,-0.050810408,0.016598215,0.0101408735,-0.009778101,0.010079481,0.027369754,-0.02181097,-0.05139084,0.010068319,0.02931198,0.014376935,0.014276475,0.0071382374,-0.034870762,-0.039291,0.011999383,-0.0007049637,0.0016213119,-0.0012962123,-0.020940317,-0.033977784,-0.027950188,-0.008611649,-0.03098631,0.017312597,0.02569542,-0.021677023,-0.017178651,0.028441327,0.014812261,-0.013919284,-0.0132941995,0.006786627,-0.017904194,0.03087469,-0.0111957025,0.021063102,-0.0124681955,0.013640228,0.02261465,-0.00046776663,0.024847092,-0.008851637,-0.0070154527,0.011497082,0.00068403454,-0.0063345577,-0.00045904613,0.0048081246,0.02201189,-0.03757202,-0.013137928,0.0031337922,0.005645291,-0.020828696,0.024489902,0.0013617903,0.0028142738,0.027034888,-0.0034240098,-0.046479467,-0.017290272,-0.027927864,-0.0064852475,0.027079536,0.00041404844,0.0077912267,-0.0003784689,-0.00082391105,-0.0030054266,-0.021397969,0.005670406,-0.002120821,-0.016732162,-0.0014001605,-0.0015989875,0.012099843,0.017859546,0.0022994166,0.0026510262,0.02161005,0.0026384688,-0.0026566074,0.0025324277,-0.042595018,-0.025248934,0.014946207,-0.015995456,0.014533205,-0.010749214,0.011346392,0.025807044,0.019221336,0.032415077,0.04310848,0.016486593,-0.009353937,-0.0074619413,-0.0019687358,0.02317276,-0.0010436672,0.008700947,0.002080358,-0.004043513,0.012814224,0.01768095,-0.010079481,-0.016676351,-0.0144773945,0.0038370118,-0.035540495,0.028128784,-0.007919592,-0.030204957,0.0058155144,0.007590307,-0.0070601017,-0.011776138,-0.0069708037,-0.0028477605,0.0073559005,0.040742088,0.02654375,-0.00468534,-0.011530569,0.007612631,-0.033352703,0.007171724,0.005656453,0.026655372,-0.029088736,0.011698002,-0.010927809,0.034647517,-0.02382017,-0.00036207438,-0.0127472505,-0.032615997,0.0067531406,-0.00009801821,-0.004916956,0.012166816,0.040675115,-0.017759087,0.017747924,-0.011452434,0.00044300046,0.03667904,-0.017547004,0.038063157,-0.011820787,-0.04045187,-0.014856909,-0.030182632,0.012814224,-0.005555993,-0.002105473,0.004272338,0.033977784,0.0090693,-0.0040407223,0.034468923,0.028441327,-0.015939644,-0.0062452597,-0.014120203,-0.019857582,0.011898923,-0.019980367,0.026454452,0.031789992,-0.0038118968,0.0075289146,-0.021889105,0.0015822442,0.008137256,-0.007171724,-0.016129402,-0.03496006,-0.0050788084,0.012122166,0.008287946,-0.01898693,0.0018919957,0.015749887,0.045765087,0.006033178,-0.0042025745,-0.004869517,0.024065739,0.013428146,-0.02377552,0.009543695,-0.031142583,0.0013583022,-0.009465559,-0.036433473,0.0062787463,0.037996184,-0.0066359374,-0.011223609,0.033218756,-0.030093335,0.0030807715,0.025851693,-0.013405821,-0.0067363973,-0.0046267384,-0.020058502,-0.0068982495,-0.0055727363,-0.047372445,-0.0016450316,0.00382864,-0.004459305,-0.030852364,0.0072163725,0.01591732,-0.0028770613,0.006669424,-0.046613414,-0.0073056705,-0.0061280564,-0.012870035,-0.0029775212,-0.0077465777,-0.03873289,-0.009577181,-0.0264991,-0.010146454,0.0047858004,0.008165161,0.06237446,0.01798233,0.018752523,0.012881197,-0.029914739,0.065410584,0.019031579,0.0015068991,0.0035802808,0.012144491,-0.0059996913,0.0014287636,-0.0063624633,-0.015705237,0.01894228,0.017915357,-0.030941663,0.038063157,-0.0076796045,-0.0012683067,-0.010157617,-0.014365772,0.017535841,0.021141237,0.0113742985,0.012177978,0.011675678,-0.021163562,-0.016185213,0.003842593,0.0061782864,0.037661318,0.013930446,-0.021621212,-0.016241025,0.03904543,-0.0092255715,-0.03933565,-0.025248934,0.02966917,-0.023038814,-0.018071627,0.0021487265,0.011608705,-0.0015989875,-0.013405821,-0.0038118968,-0.0043002437,-0.01577221,-0.0034268002,0.0017775829,0.0005518321,0.009443235,0.027972514,-0.042237826,-0.00634572,-0.017468868,0.0027989256,-0.028173434,0.02044918,-0.02100729,0.016497755,0.0053913505,0.0012948171,0.0038649172,0.06447296,0.006100151,-0.03212486,-0.012032869,0.046970606,0.02654375,0.00016717163,-0.029646846,0.020058502,-0.0100515755,0.01002367,-0.013573254,-0.005656453,-0.0014210896,-0.03083004,-0.010531551,-0.03283924,-0.014064392,-0.0010255286,-0.0072554406,0.02281557,0.01395277,-0.0144773945,0.006820114,0.015236425,0.016654026,0.017011218,-0.009632993,-0.008712109,-0.020661263,0.005117876,0.015281074,0.04603298,0.012557493,0.04880121,-0.017067028,0.026789319,0.008075863,0.010230171,0.0077912267,0.017167488,0.0028770613,0.019355282,-0.018953443,-0.020761723,0.03248205,-0.027771594,0.02125286,0.0014496928,-0.03283924,0.0031393731,-0.0012201697,-0.018462306,0.025092661,-0.0054527423,-0.00533833,-0.0015627103,0.0413895,0.0038063156,-0.016352646,-0.011809625,0.026811643,-0.027302781,-0.012200302,-0.013428146]},{"id":"guide-channels-4","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Roles — Quick Reference\nCreate roles with guild.createRole(), fetch with guild.fetchRoles() or guild.fetchRole(roleId). Add/remove with guild.addRoleToMember() / guild.removeRoleFromMember(). Reorder with guild.setRolePositions().\n\n```javascript\n// See the Roles guide for full examples and permission bitfields.\nconst role = await guild.createRole({ name: 'Mod', permissions: ['KickMembers', 'BanMembers'] });\nawait guild.addRoleToMember(userId, role.id);\nawait guild.removeRoleFromMember(userId, role.id);\nawait guild.setRolePositions([{ id: role.id, position: 5 }]);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.013526746,0.02232472,-0.014689376,0.002568405,-0.0014204481,0.008373167,-0.032911357,0.02026776,0.018680325,0.02347617,0.0418323,-0.01629917,0.046549894,-0.020312477,0.054196417,-0.010513971,-0.042972572,-0.016131483,0.008775616,0.049456466,0.012308221,0.022783065,0.005044582,0.06653818,-0.06045673,0.0069142915,0.00006061184,0.04695234,-0.030295439,-0.031413354,0.09444128,-0.01606441,-0.000086245236,0.0051116566,-0.008244608,-0.031279203,0.027321791,0.02975884,-0.005497337,0.021486286,-0.006791321,0.029490544,0.027836032,-0.024549367,-0.010407769,0.055537913,-0.013493209,0.023900978,0.007126695,0.034297567,-0.0143316435,0.030474305,-0.014622301,0.07981898,0.013068402,-0.0017942502,-0.04619216,-0.008965662,-0.03543784,0.027388867,-0.030362515,-0.0747213,0.009027147,0.020390732,0.013537926,0.0035857058,-0.08598986,0.005913759,0.013068402,0.031167412,0.01887037,-0.057416007,0.02309608,-0.023789186,0.010234493,-0.025980296,0.0011444633,0.025063608,0.020480165,-0.029132811,-0.009781738,0.019664088,-0.04838327,-0.014365181,0.0031776675,0.015505452,0.012654774,-0.017629487,0.011861056,-0.05263134,-0.024482293,-0.02116209,-0.08518496,0.0009488286,0.020446626,-0.025220115,0.03326909,0.015740214,-0.013772687,0.045767356,0.08004256,-0.01591908,-0.0842012,-0.011480966,0.042279467,-0.005595154,-0.03673462,0.07087568,-0.031100336,-0.007775084,-0.06703006,0.021016764,0.0106369415,0.0031664884,-0.0033202013,0.040714387,0.060099,-0.031614576,0.046371028,-0.02772424,-0.07659939,-0.031502787,0.040423732,-0.05057438,-0.02656161,-0.013795045,-0.032687772,-0.037159424,-0.04429171,0.01822198,0.018344952,-0.0032307683,0.042547766,-0.008021025,-0.018043114,0.016410962,0.0041642254,-0.024929458,-0.02528719,-0.010620173,0.005919349,0.008322862,0.031234486,0.031905234,-0.03863507,0.007026083,-0.05017193,0.0014295311,-0.06474952,0.015326586,-0.05880222,-0.0031636935,0.0049579437,-0.012073459,-0.04491774,-0.032285325,-0.018389668,-0.01052515,-0.03633217,-0.061753508,-0.0065397904,-0.05406227,0.008697363,-0.009451954,-0.0064000515,-0.07190416,-0.009658768,0.032777205,-0.047131207,0.047041774,0.0100947535,-0.0126659535,-0.013918016,-0.0025139067,0.009161296,0.01811019,-0.021072658,-0.060590878,-0.002368578,0.00021904106,0.00487969,0.017159963,-0.029199885,-0.02631567,-0.01926164,0.02553313,-0.0071546426,-0.048830435,-0.0065397904,0.003130156,-0.018814474,0.017685382,-0.014320465,0.026159162,0.03977534,0.0017523285,0.04169815,0.022615379,0.02568964,-0.047801957,0.024236351,0.004672876,0.025711996,-0.024996532,-0.009815276,-0.023163155,-0.036041513,-0.011022622,-0.044001054,-0.008015435,0.015002391,-0.02555549,-0.011570399,-0.016377425,-0.053302087,0.022816602,-0.0990918,0.01552781,-0.046236876,-0.01898216,-0.054151703,-0.002233031,0.026069729,-0.013124297,-0.0024817667,0.02966941,0.017797174,-0.0019283998,0.048606854,0.010569867,0.020055357,0.024079844,-0.010055627,-0.05365982,0.001778879,0.021732228,-0.01193931,0.077225424,-0.025890863,-0.06278199,-0.009435185,-0.022984289,-0.020346016,-0.027254717,0.021083837,-0.020826718,0.02001064,-0.00017083107,0.012341758,0.022436513,0.07731485,0.035996795,0.028730363,0.0074005835,0.0055392585,-0.013571463,0.036153305,0.031748727,-0.00095162337,0.03733829,0.0035745266,-0.015371302,0.009943835,0.00045065864,-0.03943997,0.043442097,-0.022861319,0.009714663,-0.012341758,-0.035258975,0.005751662,-0.025354264,0.03454351,-0.05146871,-0.0066180443,0.0049104323,0.021989347,0.0044241403,-0.0013393994,-0.0426372,-0.019988284,-0.017025813,0.010156238,0.004250864,-0.0058690426,0.025779072,-0.015963797,-0.028081972,0.008680594,0.022794245,-0.019093953,-0.008932124,-0.009798506,-0.028797437,0.031279203,0.017405905,0.035773214,0.0023979233,0.031525142,0.034901243,-0.027277075,0.060903896,-0.000026790609,-0.019295176,0.017472979,-0.021206807,-0.027277075,-0.02926696,0.033693895,-0.056655828,0.05133456,0.0636316,0.013124297,-0.013962733,-0.03850092,-0.04326323,0.022615379,0.037494797,0.032911357,0.04838327,0.01579611,-0.017372366,0.005491747,-0.022704812,0.013034864,-0.03297843,0.0033705074,-0.03566142,0.0226042,0.0011297908,0.04932232,-0.047399506,-0.0058969907,0.034208134,0.003719855,0.01939579,0.0016810616,0.06448121,0.01577375,-0.029356394,0.020603135,0.015371302,-0.027679523,-0.008736489,-0.029445827,0.016723977,0.0043067597,0.008244608,0.007534733,0.036913484,-0.01604205,0.03648868,-0.009614051,-0.05079796,-0.019865312,-0.019015698,0.044336427,-0.028953945,0.030384872,0.025242474,-0.05638753,-0.023587963,-0.02272717,-0.0011095286,0.042212393,-0.0003399154,0.0029177526,-0.021743406,-0.011419481,0.0008880421,-0.013191372,0.018479101,-0.056924127,0.0046644914,0.002189712,-0.02116209,-0.0016824589,-0.0022162623,-0.022984289,0.0406026,0.028171405,-0.002664825,0.030228365,-0.03570614,-0.00018812378,-0.0032531265,-0.013605,0.01565078,-0.021855198,-0.026472177,0.00590817,0.022626556,0.011626294,0.021150913,0.023945695,0.0041642254,0.059472967,0.04234654,0.011514503,-0.026360387,0.044873025,0.041250985,0.004225711,0.0058634533,-0.01269949,-0.010860524,-0.02761245,-0.00060926256,0.0045778533,-0.020480165,0.025376623,0.020804359,0.027947823,0.021553362,0.033157296,-0.041116837,0.018400846,-0.019485222,0.012766565,-0.0023168745,-0.028998662,-0.045007173,0.01257652,-0.016500395,0.024884742,-0.02940111,0.009194834,-0.017551232,0.021653973,-0.01553899,-0.08214424,0.034208134,0.016768694,-0.022984289,0.02119563,-0.0056538447,0.0073894043,-0.042413615,0.022548303,0.02157572,-0.022000527,-0.016768694,-0.022894856,0.016265633,0.01733883,0.0019912825,0.013437313,-0.08160764,0.010882882,-0.0062323646,-0.020569598,0.001395295,0.002196699,0.035147183,-0.019529939,-0.013616179,0.004329118,0.051558144,-0.05379397,0.004597417,-0.023677396,0.019943567,0.03416342,0.024102202,-0.018456742,0.02477295,-0.014197494,0.0031497197,-0.023587963,-0.016735157,0.0338504,0.015237153,0.024146918,0.019071594,-0.004197763,-0.015673138,0.000636861,-0.031480428,0.0023476172,0.05316794,0.02926696,0.004994276,-0.009871171,-0.0067969104,0.01771892,0.061753508,0.029222244,0.0022456076,-0.0007490016,0.0019367841,-0.037830174,0.018434385,0.04301729,-0.008960072,0.014432256,-0.045230757,0.026740476,-0.013448493,0.0111511815,0.016567469,0.014029807,-0.053838685,-0.03275485,0.026293311,-0.002175738,-0.0032447423,0.018400846,-0.016265633,0.018534996,0.061753508,-0.04532019,-0.009982962,0.0029345213,-0.02374447,-0.006070267,-0.011715727,-0.05696884,-0.0023783597,-0.0040328708,0.012464729,-0.012889536,0.04789139,0.024705876,-0.002365783,0.012252325,0.033939835,0.011905773,-0.003993744,0.02593558,-0.015103003,0.025913222,-0.02452701,0.026114445,0.028529137,-0.023386737,0.006098215,-0.0033928656,0.013336701,0.017159963,-0.040379014,-0.013929195,0.03300079,-0.03774074,0.017282933,-0.010737553,0.0111232335,-0.0021408033,0.02103912,0.022749528,0.029311677,0.03248655,-0.062960856,-0.017663024,-0.0051144515,-0.001572065,0.0057293037,-0.008954482,-0.04259248,0.0025055222,-0.025063608,-0.0032531265,-0.00654538,-0.006092625,-0.016254453,-0.051692292,-0.040379014,0.01578493,0.01693638,0.00093695073,-0.04082618,-0.006852806,0.000603673,0.037226498,0.014734092,0.025197757,0.0056398707,-0.042212393,0.01823316,-0.011100875,-0.016444499,-0.008311682,-0.06863985,0.031346276,-0.013593821,-0.020994404,-0.034364644,-0.032777205,-0.022268826,-0.015304227,0.030250723,0.022738349,0.011492144,-0.0008237621,0.002040191,-0.02991535,0.006433589,-0.014063344,0.021754585,-0.027768956,-0.014108061,-0.007394994,0.0006710971,-0.0695789,0.007121105,-0.026092088,-0.032933716,0.019675268,-0.017551232,-0.010955547,0.023766829,0.047712523,-0.0021533798,-0.009435185,-0.019149847,0.0063050287,-0.016489215,0.018054293,0.009792917,0.020457806,0.033202015,-0.0017872633,-0.007020493,0.016914023,0.0318158,0.008932124,0.018456742,0.001714599,0.0026885807,0.0063329767,-0.04348681,-0.00023528573,-0.02940111,0.010117112,-0.002157572,-0.02156454,-0.04496246,-0.009362521,0.008909766,0.020614315,-0.0070428513,0.04223475,-0.019775879,0.0024747797,-0.012911894,0.014018628,0.010363053,0.026405104,0.0012164289,-0.0111511815,-0.017394725,-0.04941175,-0.001354072,-0.0020988814,-0.033425596,0.027523017,-0.04355389,-0.026025012,0.037204143,-0.01694756,-0.014231032,-0.05638753,-0.0151477195,-0.010200955,0.01604205,0.039350536,-0.022011705,-0.026539253,0.009932656,-0.024549367,0.014901779,-0.03541548,0.009340162,-0.0023560014,-0.0003531906,-0.0018585302,-0.005134015,-0.012822461,-0.014074524,0.0102456715,0.035885006,-0.008266966,0.0037142658,-0.030183649,-0.009748201,0.003686318,-0.024437577,0.014029807,-0.0037002917,0.0210503,-0.023252588,0.015885543,0.015550168,-0.00055651105,-0.018322593,-0.031771086,0.027053492,0.033783328,0.005441441,0.004899253,-0.05880222,-0.0074508893,0.02658397,0.00912217,-0.02566728,0.0041949684,-0.0035242205,-0.009206013,0.042257108,-0.006455947,-0.012263505,-0.048562136,0.00340125,-0.02452701,-0.01437636,-0.0006864684,0.017405905,-0.03758423,-0.038411487,0.02169869,-0.01167101,-0.004572264,0.045364905,-0.009686715,-0.014801167,-0.03092147,0.011984026,-0.014175136,0.016377425,-0.008613519,-0.00069205795,-0.01964173,0.0015832442,0.04632631,0.02580143,-0.02631567,0.028216122,-0.018903907,0.022559483,-0.0029792378,-0.010614583,0.0020709336,0.008048973,0.015751394,-0.009211603,-0.00097118685,-0.002483164,0.00019720683,-0.002575392,-0.0067074774,0.011112055,-0.022302363,0.0059249382,-0.04107212,-0.009535797,-0.0061541107,-0.044269353,-0.02671812,-0.020882614,0.0026676196,0.055627346,-0.008143996,0.016723977,0.0055169,0.029334035,-0.034387,-0.019529939,-0.015203616,-0.0012457742,0.0044437037,0.0052569853,-0.025108324,0.003993744,0.015471915,-0.0077415467,0.004485626,-0.018076653,-0.01219643,0.008143996,-0.004876895,-0.028931586,-0.014096882,0.016142663,0.0029401109,-0.01013947,0.00020681389,-0.0067074774,0.009301036,-0.020636672,-0.0080881,-0.0452084,-0.05442,0.025331907,-0.0107599115,0.02848442,-0.04350917,-0.036935844,-0.0203013,-0.07713599,0.0024035128,0.03528133,-0.006427999,0.0015944233,-0.014834705,0.006226775,0.00743971,-0.0029065735,-0.028394988,0.007791853,-0.020111253,0.013895658,0.0014302299,0.03941761,0.0029429058,0.010603404,0.0032279736,0.020234223,0.0040133074,0.024929458,-0.015315407,-0.022861319,-0.011341226,0.0073279194,-0.0020387936,0.025130682,-0.023968052,0.04069203,-0.004161431,-0.0012639402,0.04672876,-0.009904709,0.030899113,-0.047533657,0.046281595,0.029803557,0.022157034,0.026136804,-0.073022075,0.0002876879,0.015583706,-0.017819531,-0.039730623,0.009748201,-0.017931323,0.0036108587,0.0034934778,0.0037142658,0.03212882,0.011145592,0.018848011,0.03351503,0.04053552,0.011648652,-0.007931592,-0.028730363,0.03590736,-0.023900978,-0.028014898,0.06653818,0.009166886,0.00897684,0.0043598604,0.013403776,-0.0300495,-0.008009846,-0.021866377,-0.022525946,0.036376886,0.008166354,0.027880749,-0.0047930516,0.039752983,-0.007612987,0.016612185,-0.019071594,-0.011480966,-0.027679523,-0.010905241,-0.036041513,0.012587699,0.017484158,-0.0051116566,0.031122696,-0.026405104,-0.045767356,-0.0023015032,-0.0007392199,-0.0063050287,0.03738301,0.006919881,0.010357463,-0.01103939,0.014566406,0.007355867,-0.012397654,-0.018412026,0.013750329,-0.04469416,-0.010290388,0.004393398,-0.006573328,-0.03821026,0.008032205,0.017394725,0.0018711067,0.0053575975,-0.014398718,-0.011374764,-0.0010033268,0.03092147,-0.025041249,-0.046281595,-0.057952605,-0.022559483,0.014365181,0.029244602,0.01629917,-0.0009488286,-0.010363053,-0.005992013,-0.0047706934,0.010424538,0.008188712,0.03706999,-0.013772687,-0.0047958465,-0.007769495,0.008870639,-0.026494537,0.007920413,0.017148783,0.02837263,0.0075906287,-0.017450621,-0.0038595942,0.025220115,-0.05428585,0.021631615,-0.0028073587,0.02323023,-0.032195892,0.024951816,-0.008032205,0.025063608,0.026270954,0.026338028,0.007691241,-0.01438754,0.026226237,0.0032335632,0.019351073,-0.006260312,-0.004737156,0.028551497,-0.019608192,0.04084854,0.030764963,-0.018814474,0.0023979233,0.040647313,0.057326574,0.020603135,-0.015035928,0.014957675,0.019697625,-0.009289856,-0.007685651,-0.016869307,-0.027008776,0.018479101,0.0064391783,0.052944355,-0.0011311881,0.024482293,0.057684306,-0.0062826704,-0.03067553,0.042681914,-0.008960072,0.022939572,-0.0049327905,0.008395526,0.033738613,-0.027053492,0.004337502,-0.051423993,0.029825917,-0.03311258,0.0023448223,0.003169283,0.03179344,0.007909234,0.00821666,-0.023006648,0.005746072,-0.04375511,0.008048973,-0.0008041986,0.015304227,-0.041608717,0.00020262171,0.033067863,-0.017785994,-0.0038176726,-0.007545912,0.021676332,-0.014231032,0.044246994,0.018143727,0.03130156,0.010128291,0.015416019,0.017730098,-0.013660896,-0.019283997,-0.014834705,0.003976975,-0.0062155956,-0.018814474,-0.02361032,-0.02412456,-0.00021362618,-0.017808354,-0.037941962,-0.021027941,-0.00082446076,-0.056521676,0.007981898,0.0318158,0.027098209,-0.008406705,-0.011961668,0.024281068,-0.03706999,0.031771086,0.024795309,-0.012520624,0.02363268,-0.009021557,0.04505189,-0.012095817,-0.03990949,-0.0006742412,0.007216128,-0.0013086568,0.0300495,0.023118438,-0.0018990545,-0.023677396,0.015136541,-0.002861857,-0.02001064,0.022045244,0.022525946,0.01721586,-0.010592225,0.032531265,-0.0034962727,0.01618738,0.010581045,-0.01911631,0.0012199224,-0.006455947,-0.011704548,0.016220916,-0.016232096,0.022402974,0.014700555,0.020659031,0.006405641,-0.0025963527,0.01438754,-0.00885387,-0.015483093,-0.029065736,-0.0017858659,0.00693106,0.013236089,-0.017920144,0.006942239,-0.041564003,0.04299493,-0.022134677,0.0019703214,-0.01013947,0.012990148,0.018065473,-0.0058802217,0.020200687,0.026762836,-0.014108061,-0.033783328,0.016858127,-0.03186052,-0.014991212,-0.02745594,0.028081972,0.0110002635,-0.00693106,-0.0341187,-0.02207878,0.014219852,-0.0074508893,-0.0024705876,0.037651308,-0.020189507,0.031279203,0.0090942215,0.011615115,0.0054749786,0.030586097,-0.0133925965,0.0010207943,-0.00077834685,-0.021106197,-0.011117644,-0.0063050287,-0.026047371,-0.010933189,-0.017573591,0.011760443,0.01437636,-0.032419473,0.004820999,0.011357995,0.0042536585,0.015035928,-0.02940111,0.009440774,-0.017003456,-0.015550168,-0.026248595,-0.012934253,-0.04632631,-0.018501459,0.04838327,0.018344952,-0.004351476,-0.006187648,0.011112055,0.0025711998,0.03644396,0.0044381144,0.007870107,0.045096606,-0.031145053,-0.015259511,0.02157572,0.06474952,0.017595949,-0.014789988,-0.00097118685,0.048830435,0.03863507,0.016578648,-0.025957938,-0.00770242,-0.01257652,-0.011374764,0.010223313,0.022559483,0.02439286,-0.015348944,0.0034739145,-0.017551232,0.026405104,0.037941962,0.0020038588,0.017227039,0.0051423996,0.012498266,0.01476763,-0.00911099,-0.010161828,0.015438377,-0.04838327,0.006869575,0.01015065,-0.010592225,0.0055504376,-0.0048321784,-0.009138938,-0.053078506,0.02991535,0.01950758,0.0032503319,0.0021408033,0.00859675,-0.000083930805,-0.019049237,0.018970981,-0.006019961,-0.0045023942,-0.00009580863,-0.0061205733,-0.026986418,-0.02642746,-0.027925465,-0.06211124,0.04516368,0.042838424,-0.018669145,-0.010368642,0.018646788,0.013470851,-0.011693369,0.009815276,0.02361032,-0.008898587,0.042413615,-0.025354264,0.012252325,0.016321529,-0.00564546,0.0123641165,-0.0053743664,0.016735157,0.014946495,-0.018557355,0.009602872,-0.009194834,0.01693638,0.023766829,0.01705935,0.02642746,-0.030966187,-0.0026312876,-0.013526746,0.0055476427,-0.04668404,0.025063608,-0.007266434,-0.019317536,0.06282671,0.0023643859,-0.039618835,0.003001596,0.006226775,-0.01988767,0.0042648376,0.010888472,0.026785193,-0.002111458,0.00719377,-0.01269949,-0.020178327,-0.010374232,-0.013236089,-0.009982962,0.01732765,0.028059615,0.017394725,0.0008852473,0.033738613,0.014689376,0.043710396,0.007607397,0.033336163,0.02309608,-0.025510773,0.0041921735,-0.0042648376,-0.03376097,-0.018378489,-0.0045359316,-0.0013980898,0.020513702,-0.011648652,0.045230757,0.05276549,0.019529939,0.027388867,-0.0053603924,-0.0021771353,0.0026536458,-0.015840827,0.039484683,0.0001959841,0.00071511493,0.01709289,0.020558419,0.0003912695,-0.036265094,-0.0026955674,-0.0018976572,-0.032531265,0.01167101,0.01669044,-0.048427988,0.01758477,0.008887407,-0.01709289,0.00590258,-0.028551497,0.0061429315,0.008920945,0.024079844,-0.0027249127,-0.013973911,-0.047131207,0.00667394,-0.032821923,0.00897684,0.0046393387,0.02926696,-0.0051955003,0.0076688826,-0.03233004,0.028596213,-0.016612185,-0.010832576,-0.015427198,-0.0048573315,0.00590258,0.02145275,0.0012625429,0.022022884,0.01334788,0.015516631,0.0418323,-0.027947823,-0.013839762,0.026919343,-0.022257647,0.0013491812,0.005248601,-0.031659294,-0.006327387,-0.030071856,0.04261484,-0.0063721035,0.0054861577,-0.018624429,0.012923073,0.004918817,-0.0024384474,0.023073722,0.049993064,-0.004633749,0.009083043,0.00031493703,-0.03143571,-0.002804564,-0.025980296,0.041675795,-0.024035128,0.00022061313,-0.011995206,-0.007517964,0.0045638797,-0.018635608,-0.008585571,-0.017819531,-0.025488414,0.0044632675,0.035616707,0.007098747,-0.008770027,-0.0032279736,0.001159136,0.05482245,0.04838327,-0.005083709,-0.014365181,0.013526746,0.0022693633,-0.015583706,0.044224635,-0.008613519,-0.008356399,-0.0154495565,-0.043732755,0.0203013,0.030519022,-0.037897248,-0.021340957,0.011458607,-0.0013973911,-0.0023056953,-0.011492144,0.003001596,0.020647852,-0.02926696,-0.014063344,-0.03335852,-0.017003456,-0.010105933,-0.0029932118,-0.028350271,-0.0015818467,-0.03541548,0.022134677,0.0026997598,0.034744732,0.0031357456,-0.069802485,-0.00539393,-0.018590892,0.024974175,0.010301568,-0.019552296,0.004287196,-0.019149847,-0.015203616,0.014599943,0.0019773084,0.00912217,0.04529783,0.028685646,-0.000708128,0.009301036,-0.04404577,0.0706521,0.0010759912,-0.008892997,0.025890863,0.020748464,-0.019541118,-0.009720253,0.00077555206,0.002861857,-0.013448493,0.0024622031,-0.025466057,0.006852806,-0.017595949,0.019339893,-0.006366514,-0.0315475,0.00253347,0.048204403,0.0051228357,0.0021561745,0.022838961,-0.02644982,-0.014398718,-0.01000532,0.022056421,0.035214256,0.010776681,-0.014912958,-0.014544047,0.03362682,-0.0001344989,0.018076653,-0.021508645,0.01487942,0.011894593,-0.042435974,-0.0039350535,-0.0044213454,0.008138406,0.0075291432,-0.0005365982,-0.00033013365,0.009641998,-0.018769758,0.008965662,0.013426134,-0.030273082,0.014409898,-0.048562136,0.02091615,-0.029445827,0.014521689,-0.0020527677,-0.0050501716,-0.026651043,-0.0047678985,-0.01245355,0.026941702,-0.016276812,0.052989073,0.015237153,-0.020044178,-0.008909766,0.027142925,0.008440242,-0.0014952085,-0.031234486,-0.0071322843,-0.0009152912,0.004454883,-0.0031357456,-0.011693369,-0.013157835,-0.0076688826,-0.014857063,-0.0149353165,-0.012420013,-0.03590736,0.016410962,0.0056789974,0.010111522,0.002414692,0.0032531265,0.017785994,-0.023051364,0.015214794,0.0031636935,0.008624698,-0.012990148,0.013381418,-0.025041249,0.033939835,0.010793449,0.04223475,-0.0035829109,-0.018020757,0.019339893,-0.0036555752,0.017506516,0.00333697,0.039730623,0.023811545,-0.007847749,0.021497466,-0.0033341753,-0.027232358,-0.0032698952,0.00048803884,-0.019563476,-0.008960072,-0.017808354,-0.040893253,0.0015874363,0.015695497,-0.011380353,0.006483895,0.03706999,-0.030496664,0.0027346944,0.007383815,0.019820595,-0.047310073,-0.030608455,-0.02156454]},{"id":"guide-channels-5","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Invites\nUse channel.createInvite() to create an invite. Use channel.fetchInvites() to list channel invites. Use invite.delete() to revoke. invite.url gives the full invite URL.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.content.startsWith('!invite') || !message.guildId) return;\n const channel = message.channel;\n if (!channel?.createInvite) return;\n\n if (message.content === '!invite') {\n const invite = await channel.createInvite({\n max_age: 86400, // 24 hours\n max_uses: 10,\n temporary: false,\n });\n await message.reply(`Invite: ${invite.url}`);\n }\n\n if (message.content === '!invitelist') {\n const invites = await channel.fetchInvites();\n const list = invites.map((i) => `${i.code} (${i.max_uses ?? '∞'} uses)`).join('\\n');\n await message.reply(list || 'No invites.');\n }\n\n if (message.content.startsWith('!inviterevoke ')) {\n const code = message.content.slice(13).trim();\n const invites = await channel.fetchInvites();\n const inv = invites.find((i) => i.code === code);\n if (inv) {\n await inv.delete();\n await message.reply('Invite revoked.');\n }\n }\n});\n\nawait client.login(process.env.FLUXER_BOT_TOKEN);\n```","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.017906569,-0.0123555325,-0.027050857,-0.02259809,0.013597054,-0.028674386,-0.072867796,0.03411798,-0.0049511665,0.052382685,0.019494286,-0.024185807,0.026071964,-0.027671618,0.05037715,0.02781487,-0.04149549,-0.008237022,0.0027904403,0.02009117,0.00028389372,0.052812442,0.027122483,0.03898857,-0.022741342,-0.02154757,-0.00793261,0.01831245,0.007192472,-0.012653976,0.05543874,-0.016796362,-0.0130121065,0.006153891,-0.025904836,0.039179575,0.030441167,-0.0040528537,-0.054292716,0.022657778,-0.017464874,0.03559826,0.047344968,0.0059300587,0.0032918244,0.026071964,-0.07181728,0.009001035,0.01174074,0.014802764,-0.020485114,-0.008207178,-0.001680233,0.062458113,0.000035486715,-0.0071805343,-0.024854317,-0.01143036,-0.041949123,0.042498257,0.022383211,-0.005912152,0.017906569,0.022884596,0.004103589,0.014993767,-0.039084073,0.03442836,0.035765387,0.069716245,0.014647573,-0.00949645,0.030632172,-0.04932663,-0.019613663,-0.012319719,-0.017739441,0.03366435,0.021320755,-0.03251833,0.015017643,0.00040662833,-0.08590378,-0.030870926,-0.04655708,0.023111412,-0.020282174,-0.022323523,0.016032347,-0.023815736,-0.01236747,0.023815736,-0.060977835,-0.0070432504,0.065800674,0.0013683604,0.031634938,-0.0015145973,-0.017142555,0.058160536,0.08556952,-0.042522132,-0.07172178,-0.003685769,0.032255698,-0.02750449,0.014695324,0.021070063,-0.008780188,-0.01555484,-0.05672801,-0.0028904187,-0.0075804475,0.019243592,0.020688057,-0.015113144,0.04681971,-0.042140126,0.063174374,-0.013453802,-0.07921866,-0.017249996,0.06689894,-0.014086501,-0.013704495,-0.039370578,-0.0007095478,-0.024639439,-0.02578546,-0.00019715879,0.057444274,0.0046497392,0.030703798,0.012880792,-0.01945847,0.009771018,-0.04149549,0.04331002,-0.03392698,0.016378542,0.01784688,-0.042808637,0.039442204,0.0070790634,-0.031849816,-0.04708234,-0.042856388,0.010934945,-0.0054197214,-0.0032679487,-0.04295189,0.015841344,0.0125107225,0.004196106,-0.028650511,-0.0016668031,0.014814702,-0.007341693,-0.043405525,-0.017440999,-0.0010535031,-0.040779226,0.0065358975,-0.03815293,-0.03705466,-0.023779923,0.010970758,0.003632049,-0.027146358,0.079887174,0.0106544085,-0.0013825364,-0.021117814,0.022395149,0.053528704,0.03471487,-0.015017643,-0.054770228,0.03027404,0.01748875,-0.0032142291,0.025594456,-0.0009139811,-0.060977835,-0.025689958,0.039060198,0.0019309251,-0.038272306,-0.015578715,-0.027981998,-0.04273701,-0.027146358,-0.022848783,0.020365737,0.043572653,-0.0017712581,0.05319445,-0.014182002,0.051379915,-0.056632508,-0.015065393,-0.009174132,0.019446533,-0.03392698,0.011627332,-0.030345665,0.010153024,0.027217984,-0.024448436,0.01649792,0.042808637,0.0046586925,0.022669716,0.00021618452,-0.035765387,0.016736673,-0.014719199,-0.00323512,-0.041686494,-0.01988823,-0.075446345,-0.009257697,0.027217984,-0.0025128885,0.008004236,0.042259503,0.0055659586,-0.03595639,-0.012474909,0.03449999,-0.0016653109,0.031969193,0.0002669198,-0.07239029,0.0070313127,0.008541433,0.014564009,0.022454837,-0.0017399216,-0.042211752,-0.013680619,-0.032064695,0.005443597,-0.008619028,0.01236747,-0.036290646,-0.011275169,-0.020234423,0.030632172,0.07243804,0.106293395,-0.005449566,0.03855881,0.023302415,0.024925943,-0.012391346,-0.015089269,-0.030990303,0.009257697,-0.025355702,0.033210717,-0.026477847,-0.022072831,0.012194374,-0.02812525,-0.007186503,-0.030202413,0.019673351,-0.022502588,-0.022502588,0.0066373684,-0.08222696,0.0434294,-0.025236325,-0.014122314,0.016247228,0.034595493,-0.0043154834,0.004154324,-0.023469543,-0.032589957,-0.020604493,-0.022538401,-0.03208857,0.005040699,0.020222485,-0.017249996,-0.050759155,0.010302247,-0.0049451976,-0.021857953,0.0049929484,-0.014265567,-0.014886328,0.02379186,0.06608718,0.04452767,0.01080363,0.0533377,0.05176192,-0.017858818,-0.025904836,-0.020186672,-0.032637708,-0.015041518,0.022693591,0.01858702,-0.0009609859,0.06503666,-0.04502905,0.061885104,0.0505204,-0.056775764,-0.032709334,-0.0060733114,0.024496187,0.036983036,0.056871265,0.021487882,0.039848085,0.023911238,-0.00241291,-0.00756851,-0.03657715,-0.0010057522,-0.047416594,0.005124263,-0.04139999,0.038320057,0.0085653085,0.055916246,-0.031706564,-0.041376114,0.028220752,0.019864354,-0.020604493,-0.005130232,0.02812525,-0.0188974,0.027098607,0.026907604,-0.009066693,-0.007968423,0.013358301,-0.013525428,0.03533563,-0.005103372,0.00014437172,-0.007484946,0.039322827,-0.032900337,0.042522132,-0.022120582,-0.07048026,0.0016653109,-0.0017727503,0.045220055,-0.044694796,-0.015674217,-0.0021487882,-0.07434808,0.0015787625,0.019530099,0.011382609,-0.002356206,-0.008887627,-0.011299045,-0.022204146,0.03278096,-0.033425596,0.007860984,-0.00652396,-0.021487882,-0.027050857,-0.006774652,-0.030035285,-0.0032769023,0.011627332,0.024854317,0.020998437,0.03110968,-0.00652396,-0.004354281,-0.04550656,-0.018324388,0.010982696,0.005073528,-0.014755013,-0.011704927,0.024245495,0.010397748,-0.018610895,-0.0071029393,0.011340827,0.07205603,0.0055152234,0.01843183,-0.00012637189,0.013071795,0.015996534,0.051427666,0.03318684,0.0059419964,-0.026955355,0.003778286,-0.010069461,0.009192039,0.008786157,-0.014731137,-0.028578885,0.02348148,-0.014528196,0.024042554,0.0038290215,0.018073697,-0.043142892,0.0052585625,0.0029441384,0.013537366,-0.0046109417,0.01080363,0.0030888831,0.010469374,-0.017703628,0.010069461,-0.029462274,0.058781296,0.010224651,-0.001016944,-0.054244965,-0.08155845,-0.030393416,0.038845316,0.024472311,0.028746013,-0.018909337,0.06498891,-0.040683724,-0.003763364,-0.005625647,-0.010326122,-0.009007004,0.019721102,0.032971963,0.0070969705,0.028626636,0.0041931216,-0.028316254,0.019601725,-0.0025606393,-0.035837013,-0.045745317,0.032852586,-0.010475343,-0.014969892,0.014241692,-0.036887534,0.05266919,-0.0032440734,0.038439434,-0.036887534,0.01158555,0.005031746,0.009227852,0.015041518,0.014719199,-0.0070850323,0.038749814,0.005485379,-0.04457542,0.008314617,-0.0025218418,0.033234593,0.051427666,-0.017679753,-0.045052927,0.015065393,-0.0084101185,0.0189929,0.03631452,0.051523168,0.035407256,-0.013955186,0.016462106,-0.011663145,0.07816815,0.014504321,-0.020365737,-0.054149464,0.0016653109,-0.00412448,-0.0046586925,0.008380274,-0.011943681,0.0070074373,-0.0266211,-0.021857953,0.002056271,0.01936297,0.00081922556,-0.013179235,-0.013680619,-0.01685605,0.050138395,0.019040652,0.02724186,-0.015745843,-0.03886919,-0.012403283,0.02499757,0.0018473611,0.0141342515,-0.0015078824,0.022956222,-0.0015198201,0.041829746,-0.044909675,0.0027546273,-0.037245665,-0.015542902,-0.020795496,0.033950854,-0.026262969,0.011209512,0.007108908,0.0004704205,-0.033377845,-0.023863487,0.015793594,-0.028435633,0.03349722,-0.03397473,0.001707093,-0.0062732683,-0.006040483,0.030703798,-0.038129054,0.024830442,-0.00033556164,0.00016181197,-0.0008237022,0.053433202,-0.026740476,0.007144721,-0.022538401,-0.011997402,0.02197733,0.03595639,0.0008401165,0.02776712,0.028101375,-0.032948088,-0.024806567,-0.0031366341,0.04013459,0.042975765,-0.000261324,-0.041208986,-0.0027919326,-0.022060893,0.0002921009,-0.014898266,-0.018324388,-0.006392645,0.0009326338,-0.024400685,0.006446365,0.023732172,-0.022502588,-0.02860276,0.032112446,-0.005261547,-0.014444632,0.03820068,0.023505356,-0.0061031557,-0.07200828,-0.007407351,-0.018694459,0.003366435,-0.0008028112,-0.058017284,0.041328363,0.048992373,-0.015232521,-0.029366773,-0.025331827,-0.012146623,0.0055928184,-0.016820237,0.014492383,-0.0072163474,0.019709164,0.00047527018,-0.04646158,-0.0019174952,-0.0087980945,0.030679923,-0.007192472,0.024078367,-0.019912105,0.017476812,-0.0336166,-0.017082866,-0.027265737,0.01696349,-0.014002937,-0.017345497,-0.019876292,0.013394114,0.00446172,-0.0072402228,-0.009627765,-0.026430096,-0.024973694,0.018085634,0.016092036,0.025857085,0.049278878,0.0028337145,0.011042384,0.007341693,0.008535464,0.030226288,0.015626466,0.053480953,-0.009723267,-0.049708635,-0.00007712882,0.021798264,0.03005916,-0.0011967557,0.013931311,-0.0008983129,-0.013179235,-0.013776121,-0.024042554,0.009938146,0.008642904,0.004912369,0.035096876,-0.037603796,0.012606225,-0.004246841,-0.01920778,-0.010254495,0.001478038,0.000058103087,-0.012964356,0.012236156,-0.0078311395,0.0059837787,-0.01539965,-0.018145323,0.045100678,-0.03686366,-0.020222485,0.032160196,-0.022526463,-0.017596189,-0.013716432,-0.0074252575,0.019768853,0.022239959,-0.008105707,0.023159163,-0.047822475,0.0046527237,-0.053576455,0.0144804455,-0.0077237003,0.042307254,-0.002259212,-0.011131917,-0.012158561,0.017429061,-0.016414355,-0.039275076,0.03481037,0.0127017265,0.0041065733,0.035216253,-0.026406221,-0.011340827,0.035001375,-0.0024770754,0.0280775,-0.024758816,0.013704495,0.007108908,-0.029271271,0.020413488,0.005416737,0.0041841683,0.012534599,-0.0056942888,0.02281297,0.027170233,-0.007407351,-0.05257369,-0.007664012,0.0047989604,-0.0020920841,-0.017548438,0.023947053,-0.021487882,0.012236156,0.019171966,0.002606898,-0.036338396,-0.009138319,0.03110968,-0.022466775,0.0056554913,-0.028411757,0.031205181,-0.006613493,-0.027886497,0.005939012,-0.025546705,0.023314353,0.027838746,-0.013250861,0.012844979,-0.0051123253,-0.020150859,0.04696296,0.025093073,-0.025642207,-0.0030441168,-0.030297915,0.0016115912,0.015841344,0.024782691,-0.03846331,0.021046188,-0.03115743,-0.0051809675,-0.03438061,-0.038845316,0.00970536,0.0074252575,0.01027837,-0.001268382,0.0018428845,0.0023263618,-0.007884859,0.0026471878,-0.027074732,0.0054734414,-0.033831477,0.007407351,-0.04787023,0.016414355,-0.030656047,-0.0055659586,-0.00039618285,-0.044861924,-0.013859685,0.04023009,-0.009048786,0.008069894,0.007604323,0.008213147,-0.044766422,-0.016891863,-0.024949819,-0.00284416,-0.003721582,0.01586522,-0.005610725,-0.016724735,0.00923979,-0.021786327,0.011299045,-0.03982421,-0.07649686,-0.022681653,-0.0045363307,-0.025307951,0.008511589,0.0118541485,0.0023218852,-0.032589957,0.026334595,-0.027146358,-0.006034514,-0.0084101185,-0.038749814,-0.033879228,-0.02077162,0.006440396,0.007819202,-0.00960389,-0.052955694,0.010994634,-0.009669547,-0.07267679,-0.0052943756,0.02154757,-0.0027068763,-0.009162194,-0.019721102,0.0114243915,-0.010409686,0.01936297,-0.020473177,-0.001881682,0.0050377147,0.025594456,-0.02264584,0.042760886,-0.013024044,0.044742547,0.017990133,0.011108042,-0.0060792803,-0.00809377,-0.0041573085,-0.0077057937,0.038391683,0.024615563,0.02781487,-0.0039931647,-0.0027009074,0.019971794,-0.01137664,-0.00031896075,0.042498257,0.00793261,-0.0065597733,0.014659511,0.017106742,0.01236747,-0.0026188358,-0.020317987,-0.07253354,-0.0037156132,0.011770585,-0.021105876,-0.004154324,-0.0010184362,0.04008684,0.009168163,0.0041095577,0.013716432,-0.01738131,0.028316254,-0.011651208,0.01539965,0.01957785,-0.006935811,0.035574384,-0.0050168238,0.058638044,0.028005874,-0.010845412,0.04818061,-0.0022040003,0.010117211,-0.030297915,0.011287107,-0.02160726,-0.01205709,0.0017160462,-0.008959253,-0.0045273774,0.0096098585,0.020007607,0.041256737,0.028292378,0.009269634,-0.0018801898,0.008619028,-0.0033216686,0.03208857,0.0047721006,-0.00751479,-0.0073775067,0.013919373,0.040779226,0.02092681,0.0020040434,-0.012522661,-0.0024532,-0.0024144023,0.039489955,0.05500898,-0.016259165,0.0033932948,0.01606816,0.026644975,0.005736071,-0.06365188,0.017763317,0.03268546,-0.05839929,0.023529232,0.0251647,0.014110376,0.0005771138,0.003924523,0.023159163,-0.00814152,-0.010355966,-0.005631616,-0.029868158,0.016987365,0.03375985,-0.027003106,0.025403453,-0.011090135,-0.00636877,0.006440396,-0.0076759495,0.016008472,-0.009329323,0.032852586,-0.023923177,0.008225084,-0.012928543,0.0038439436,0.0071805343,0.010170931,-0.008792126,-0.02154757,0.014528196,-0.057587527,0.042522132,-0.00022476475,0.028722137,-0.006894029,-0.008780188,0.020055357,0.02233546,0.008660811,0.049087875,-0.008547402,-0.003924523,-0.0378903,0.013107609,-0.0051212786,0.03156331,0.019279405,0.0128569165,-0.050281648,-0.029032517,-0.0029083253,-0.00029788323,0.0031008208,0.008660811,0.005410768,0.058829047,0.0008833907,0.008786157,-0.018419892,0.017512625,0.024006741,0.040683724,0.06637368,0.017632002,-0.019016776,0.019744977,0.002098053,0.0064941156,0.0007117861,0.009675516,-0.012844979,0.0051272474,0.018228887,0.036338396,-0.032398954,0.0052227494,0.05104566,0.008863752,-0.0003639137,0.01346574,0.008075863,0.014850515,0.0021860937,-0.009896364,-0.008475776,-0.015089269,0.008941347,-0.016784424,0.033377845,-0.010170931,-0.00091920386,0.02855501,0.03282871,0.010164962,-0.006285206,-0.012236156,-0.0188974,-0.018324388,-0.013358301,-0.006118078,-0.023660546,-0.011872055,-0.007950516,0.007192472,0.011842211,-0.0069298423,-0.030130787,0.020890998,0.0068343407,0.02473494,0.0037961926,0.0029396617,0.011842211,0.03767542,0.025379578,0.009180102,-0.035502758,-0.01258235,-0.0069895308,-0.009389011,-0.03543113,-0.015984597,0.006947749,0.054388218,-0.044121787,-0.0055778963,-0.04390691,-0.014205879,-0.032303452,0.015495151,0.039489955,-0.008266866,-0.021774389,0.00016134566,0.015148957,-0.028220752,-0.014289442,0.009753112,0.013417989,0.017309684,-0.016294979,0.029008642,0.029032517,-0.04347715,0.0058285883,0.0032858555,0.01388356,0.015829407,0.0064941156,-0.0022293678,-0.026406221,0.010821536,-0.013417989,0.0030545623,0.010063492,0.015363837,0.047321092,0.0071805343,0.054626975,-0.03299584,0.0034947654,0.0058882767,0.006720932,-0.0378903,-0.008314617,0.007556572,0.00041931216,-0.04237888,-0.010236588,0.009717298,0.03125293,0.0044020317,-0.007998267,0.0036559245,-0.012224218,-0.03757992,-0.015566777,-0.017178368,-0.0030918675,0.0070730946,-0.025427328,-0.010588751,-0.04273701,0.017918507,-0.025642207,0.006643337,0.0027038918,-0.007693856,0.016676985,-0.015304148,0.031085804,0.00068529934,0.0028396833,-0.024173869,0.01634273,-0.0016712798,-0.024436498,-0.009747143,0.014922141,0.021881828,0.0052227494,-0.026597224,-0.032303452,-0.02114169,-0.013847747,0.030560544,0.027599992,-0.015733905,0.043835282,0.0104216235,-0.017130617,-0.002411418,0.03182594,-0.03648165,0.0050645745,0.022777155,-0.010815567,-0.028244628,0.0026919541,-0.0055152234,-0.006870154,-0.013943248,0.0122003425,0.02583321,-0.013859685,-0.04655708,0.019518161,0.0007576717,-0.0013750753,-0.014217816,0.035813138,0.0015698093,-0.00647024,-0.0238993,-0.018885462,-0.01502958,-0.051188912,0.04875362,-0.000059222246,0.032494456,-0.01575778,-0.007353631,-0.00030142724,0.0533377,0.010642471,-0.032613833,0.031205181,-0.0049392288,-0.03251833,0.014002937,0.069716245,0.025427328,-0.007693856,0.031396184,0.035478882,0.04493355,0.014182002,0.027217984,-0.00050959113,0.008201209,-0.033330094,0.012015308,0.032709334,0.0042557945,0.0059628873,0.031706564,0.000014642351,-0.012015308,0.02061643,-0.014110376,-0.012606225,0.013680619,0.0035842983,0.019840479,-0.035216253,-0.008416087,0.025284076,-0.01362093,0.035717636,-0.01945847,0.0032918244,0.0064224894,-0.028173001,-0.014193941,-0.026955355,0.01623529,-0.0028426677,0.0033724038,0.033162966,0.013967124,-0.029557778,-0.035884764,0.03717404,-0.047010712,0.011084166,0.03428511,-0.0337121,-0.038797565,-0.038964696,-0.030990303,-0.024854317,0.013907435,0.007914703,-0.025498955,-0.008499651,0.015089269,0.033473346,0.0119317435,0.0072820047,0.026573349,-0.017309684,0.013549304,-0.0043781563,0.0050496524,0.006816434,0.014838577,-0.006899998,0.009645672,-0.012003371,0.007992298,-0.009824738,0.015614528,-0.014969892,0.033330094,-0.045769192,-0.0037484418,0.012474909,-0.03125293,-0.01346574,0.019744977,0.0063389256,-0.046891335,0.0147908265,-0.011919806,-0.0075028525,0.010982696,0.021404319,-0.026000338,-0.01304792,-0.0011191606,-0.03036954,0.0029023564,0.012152592,-0.006326988,0.006141953,0.0051153097,-0.003059039,-0.015435463,-0.016092036,-0.01716643,-0.0081773335,0.021010375,0.030250164,0.013537366,0.0023308385,0.022383211,-0.010666346,0.023039786,-0.027647743,0.011722834,0.01346574,-0.047106214,0.0066672126,-0.025618332,-0.03187369,0.025045322,-0.019565912,0.017858818,-0.007270067,-0.044694796,0.033377845,0.017858818,0.0031814005,0.014420757,0.0014631159,-0.012164529,0.017572314,-0.012594287,0.031921443,-0.02468719,0.0015742859,0.0057002576,-0.008051987,-0.0065896176,-0.021165565,-0.0079863295,-0.007490915,-0.012534599,0.010218682,-0.00929351,-0.027623868,0.009174132,-0.012015308,0.0032381045,0.009311416,-0.035407256,-0.008010205,-0.020544803,0.020067295,0.0037335197,0.0011370671,-0.036839783,0.030035285,-0.0156025905,0.03218407,0.030297915,0.0252602,-0.016366605,-0.017417124,-0.04242663,0.015674217,-0.00566146,-0.0024532,-0.022192208,0.011830273,-0.030130787,0.006434427,0.00032567573,-0.01847958,0.026334595,0.014420757,-0.0018518377,-0.007562541,-0.02134463,0.009042817,-0.025236325,-0.0044796267,-0.017978195,-0.027528366,-0.025451204,-0.05257369,-0.00001509701,0.006326988,0.0077833887,0.0013124023,0.014957954,-0.01362093,0.013752245,-0.01555484,0.014289442,-0.019673351,-0.01430138,0.009973959,-0.03151556,0.0018727287,-0.023493418,0.013955186,-0.008583215,0.026955355,0.025594456,-0.046389952,-0.005010855,0.009257697,0.0007953501,0.0029426462,-0.0077953264,-0.012206311,0.034858122,0.0026456956,0.02552283,-0.013238924,0.027074732,0.01837214,-0.0037961926,-0.011860117,-0.022574214,0.0031455874,0.046007946,0.011567644,0.028698262,-0.00751479,-0.0054585193,-0.043930784,-0.03349722,0.020902935,0.0036559245,0.0008371321,-0.010564876,0.0047213654,-0.044456042,0.024806567,0.013585117,-0.02745674,0.009585983,-0.008732437,-0.020019544,-0.01221228,0.029557778,-0.03407023,0.012451034,-0.02118944,0.016426293,-0.019124215,0.023660546,-0.0003463802,0.011758647,-0.00062822213,-0.039084073,-0.011830273,-0.0100336475,0.01764394,0.015686154,0.0057301023,-0.0149460165,-0.007114877,-0.0026233124,-0.014862453,0.029868158,-0.009269634,0.007938579,0.021857953,-0.02077162,-0.0014929601,-0.010737972,0.024364872,-0.0040379316,-0.0056017716,0.042211752,-0.009329323,0.021953454,0.01430138,0.039585456,-0.025093073,-0.0010333583,-0.026764352,-0.02891314,0.011394546,-0.02745674,0.007944548,-0.008445932,0.0006629161,0.018825773,0.0045482684,0.018240824,-0.00059128983,0.041590992,0.0073834755,-0.02385155,0.003799177,0.015733905,0.036815908,-0.024639439,-0.014420757,-0.007819202,0.01461176,0.019160029,0.009884426,0.00730588,0.030942552,-0.0080639245,0.0012803196,-0.012809166,0.029366773,-0.015686154,-0.010099305,0.02666885,0.0055928184,0.0023248696,-0.015638404,0.023660546,0.0017264917,-0.02186989,0.028292378,-0.0113885775,0.03929895,-0.010511156,0.03972871,-0.004384125,0.024496187,0.0020398567,-0.0020025512,0.018551206,0.01148408,-0.024806567,0.03411798,0.0077117626,0.015781656,-0.0066313995,0.03617127,0.03208857,-0.009311416,-0.0037663484,-0.018969025,0.006040483,0.0117765535,-0.036123518,-0.0050377147,-0.0032589955,-0.010869288,-0.01628304,-0.025069198,-0.034643244,-0.020317987,-0.011973526,-0.009400949,-0.0054794103,0.018849649,-0.025642207,0.013143422,-0.030178538,0.013680619,0.0027397051,0.02834013,0.008463838,-0.047010712,-0.009979928,0.007341693,0.013334425,0.047679223,0.0058524637,-0.02781487,0.024543937,0.0046437704,0.026000338,0.0009303955,0.025355702,-0.017978195,-0.030106911,-0.007956485,0.047106214,-0.020795496,-0.018193074,0.02635847,-0.025116948,-0.004891478,-0.02771937,-0.031754315,-0.011609426,-0.021750513,-0.022944285,0.0025800383,0.014683386,0.0021860937,-0.007920672,0.016557608,-0.015125082,-0.029915908,-0.036075767,-0.00060770416]},{"id":"guide-channels-6","type":"guide","source":"guides","text":"Guide: Channels (channels)\nSection: Quick Reference","meta":{"slug":"channels","url":"/guides/channels"},"embedding":[-0.01745148,0.0041453857,-0.02122121,-0.027732562,-0.012864535,0.027574392,-0.04995552,0.007328567,-0.02168254,0.019824037,0.02048308,0.020219464,0.017082416,0.004586945,0.057890408,0.007111083,-0.023132438,0.0068870075,-0.001117903,0.05008733,-0.0062708016,0.026546285,0.0034369135,0.08667744,-0.04262695,0.0021320067,-0.013365408,0.04336508,0.013371998,0.014630772,0.089788124,-0.028681586,0.036221046,0.028628863,-0.0005552444,-0.0030283062,0.0037400736,0.03355851,0.0058325375,0.012218672,0.0057995855,0.063479096,0.020443538,-0.020720337,0.030658718,0.030105121,-0.018848652,0.01776782,0.0076185465,0.008046925,-0.001320559,0.028813396,-0.008501665,-0.0066167996,0.0126800025,0.0021962635,-0.01941543,-0.04800475,0.009259566,-0.006860646,-0.0069133695,-0.047424793,0.0040135765,0.004273899,-0.008554389,0.010188817,-0.063426375,0.030790526,0.013009525,-0.03160774,0.004033348,-0.0022160348,-0.008323723,-0.03284674,-0.0059775272,-0.015553433,-0.016383829,0.047451153,0.0112564685,-0.041150693,-0.023686035,0.026968071,-0.050878182,-0.014182623,-0.023686035,0.006999045,0.001320559,-0.0032853333,0.005367912,-0.02604541,-0.014709857,-0.024200087,-0.047029365,-0.016080668,0.017860087,-0.0198504,0.021906616,0.004544107,-0.0321877,0.0090948045,0.05296076,-0.03532475,-0.074076526,-0.013365408,0.08340858,-0.01911227,-0.023396054,0.034349363,-0.04436683,-0.027258052,-0.038171817,-0.03429664,-0.010254721,0.045078594,0.044208657,0.0052163317,0.04331236,-0.022157053,0.06442812,0.003581903,-0.055728745,-0.01565888,0.043101463,-0.029103374,-0.011447591,-0.0041915188,-0.001683857,-0.0034039612,-0.039331734,-0.039806247,0.070754945,-0.012607507,0.028971566,-0.021708902,0.016462915,0.019309983,-0.017346032,0.008455532,-0.020535804,-0.011460772,0.019204536,-0.0031502293,0.072916605,0.0013806968,0.015329359,0.0041651567,-0.08862821,0.005008733,0.0068540554,-0.0028932022,-0.040465288,0.029024288,-0.022526117,-0.019178174,-0.029156098,-0.007256072,-0.0098131625,-0.022921544,-0.028918842,-0.058312196,-0.0023396055,-0.03221406,-0.0010923651,0.010590834,-0.045263126,-0.03448117,-0.03883086,0.007434014,-0.07376018,0.050192777,-0.012258215,-0.01084127,0.0032803905,-0.010109732,0.020338092,-0.014854847,-0.01642337,-0.04033348,-0.041097973,0.003703826,0.024503248,0.041335225,-0.0049098763,-0.033822127,0.025360005,0.04679211,0.01610703,-0.033769403,-0.0024499954,-0.03250404,-0.032082252,0.009417736,-0.015527071,0.008949814,-0.012363662,-0.011361915,0.0049428283,-0.035904706,0.03838271,-0.050799094,0.0053613214,0.007895345,0.010821499,-0.0083566755,-0.03023693,-0.023224704,-0.025360005,0.03864633,-0.063373655,-0.013490627,0.018571854,-0.010663329,-0.037275515,-0.011803474,-0.038013645,0.007447195,-0.048215643,0.04394504,-0.056941383,-0.009556135,-0.054516103,-0.01896728,0.07629091,0.019797675,-0.026322208,0.052117184,0.005450292,-0.029314268,0.049533732,-0.037380964,0.030289654,0.045790363,0.017016511,-0.028523415,-0.027363498,0.013879462,0.00063309394,0.019520877,-0.038277265,-0.07434014,-0.025056845,0.019731771,0.009885657,0.029973311,0.011355325,-0.014498964,0.0027745743,-0.0379082,0.029973311,0.028048905,0.07128218,0.044894062,0.016726531,-0.029024288,0.0038158635,-0.018308237,0.0448677,0.00857416,0.009977923,-0.02286882,-0.010307445,-0.03659011,0.013009525,-0.02302699,-0.025504995,0.054568827,-0.018097343,0.022196595,-0.031238675,-0.017398756,0.0027449173,-0.022315223,0.08013973,-0.027099881,-0.015474348,-0.01820279,0.019718591,-0.014261708,-0.01114443,-0.016937425,-0.036326494,-0.01593568,0.0010767129,-0.008409399,-0.0041849283,-0.0026608894,-0.02152437,-0.005074637,0.017477842,-0.00094737543,-0.037539136,0.021959338,-0.008620293,-0.0016682046,-0.01941543,0.05311893,0.011658485,-0.0024434049,0.025083207,-0.0054437015,-0.0028388312,0.03885722,0.009720896,0.012805221,0.025267739,0.026269486,-0.003776321,-0.030632356,0.021550732,-0.02799618,0.03624741,0.039358094,-0.0045408118,-0.017029691,-0.04022803,-0.028312521,0.022763373,0.024305535,0.02663855,-0.0083434945,0.0027119652,-0.010584244,0.034692064,-0.021234391,0.010584244,0.0014276536,-0.0047319345,-0.017227406,0.040728908,-0.026427656,0.063426375,-0.06426995,0.019323165,0.0037071214,-0.04863743,-0.0067749703,0.006999045,0.019916303,-0.060737476,0.0056480053,0.0162652,-0.012073683,-0.006952912,0.015131646,-0.028549777,0.019599963,0.00857416,0.014973475,0.030316014,0.04573764,-0.0126931835,-0.0035588364,-0.028866118,-0.07054405,0.008600522,-0.006059908,0.021445286,-0.04710845,0.010735824,0.06263552,-0.032741297,-0.008705969,-0.020061294,0.009997695,-0.00458365,-0.0076514985,0.0009424326,-0.010175636,-0.019955846,-0.028365245,0.017372394,-0.01849277,-0.00029883516,-0.008013973,-0.0045935353,0.011553038,0.03988533,-0.0090289,-0.03550928,0.0030316014,0.014643953,-0.026150858,0.012844764,-0.01866412,0.05414704,-0.00594787,-0.03867269,0.046739385,-0.032161336,-0.0076844506,0.004995552,-0.000068169844,0.012930439,-0.012436156,0.05509606,0.039806247,0.027653478,0.031212315,0.042969655,-0.039489903,0.04426138,0.012363662,-0.021023497,0.030816888,-0.010781957,0.014248527,-0.025926784,0.004804429,0.0010149274,-0.018295055,0.01836096,-0.051379055,0.036748283,0.029762417,-0.009648401,-0.03147593,-0.005779814,0.012159358,0.02601905,0.011948464,-0.0018931034,-0.06469174,-0.014011271,0.0055919867,-0.020509442,0.011025802,0.025386367,0.015672062,0.063584544,-0.04890105,-0.0104985675,0.010024056,0.002008436,0.027600754,0.03416483,-0.018756386,0.00032602073,-0.07465648,0.037987284,0.027310776,-0.030922335,-0.01099285,-0.007842621,-0.004409003,-0.018624578,-0.0026674797,-0.004076186,-0.053171653,-0.021642998,-0.012818402,-0.030184206,0.020667613,-0.022987448,0.0370119,-0.03669556,-0.00556892,0.027969819,0.022895182,0.006514648,0.021168487,0.028048905,0.051906288,-0.008857548,0.066853404,0.005901737,-0.024173727,0.009345241,0.002792698,-0.009252975,-0.006801332,0.05404159,0.019085908,0.0303951,0.019744951,-0.040518012,-0.045263126,-0.0049856664,-0.013905824,0.020548986,-0.0021616637,0.0069001885,-0.022737011,-0.024424164,0.028470691,0.028681586,0.09147528,0.06500808,0.03959535,0.010195407,-0.012126406,-0.031976804,-0.004784658,0.017978715,-0.015013018,-0.025267739,-0.04995552,-0.03867269,0.009608858,0.04394504,-0.007394471,0.022961086,-0.005512901,-0.02213069,0.03535111,0.094375074,0.013292913,0.010999441,0.0065410095,-0.013101791,0.0031930672,-0.015382082,0.0006903484,-0.027653478,0.003062906,-0.018677302,-0.00052805885,-0.011875969,-0.0037565497,0.003265562,0.025373187,-0.009424326,0.0029459258,0.033822127,0.010346987,0.01594886,0.03234587,0.009846115,-0.0589976,0.00070806016,-0.03991169,0.003189772,-0.03384849,-0.012100044,0.037802752,-0.016027946,0.029287906,-0.0059808223,0.0037532544,-0.010327216,-0.032556765,-0.0409398,0.013075429,-0.021300295,0.036062878,0.017411938,-0.024265993,0.010880813,0.00616865,0.026388114,0.027310776,0.03126504,-0.043154188,0.023303788,-0.018888196,0.024780046,0.0069595026,-0.0075592324,-0.022947906,0.03593107,-0.03585198,-0.045974895,-0.019191355,-0.015408444,-0.025755432,0.0059544607,-0.005776519,0.014973475,-0.024555972,0.014472602,-0.041097973,0.0025834516,0.004181633,0.01596204,0.013187466,0.025979506,-0.0028586024,-0.037222795,0.004079481,-0.008738921,0.0077767167,-0.007447195,-0.04244242,0.042205166,-0.021181667,0.0017283424,-0.036959175,-0.02362013,-0.012969982,0.002683956,-0.007585594,0.04948101,0.014933933,-0.038145456,0.012989753,-0.04758296,-0.0019408839,-0.025228197,0.0011665075,-0.026888987,-0.01775464,-0.013760834,0.013919005,-0.045658555,0.003160115,-0.027284414,0.026203582,-0.038461797,-0.020496262,-0.024859132,0.018756386,0.011197154,0.008435761,0.006801332,-0.030737802,0.024490068,0.0126536405,0.013161104,0.0022308633,0.018519131,0.01279204,-0.019217717,0.0246746,0.0105249295,0.023699215,-0.0065706666,0.043259636,0.037407327,-0.017991895,0.007750355,-0.053619802,0.0022473393,-0.0058127665,0.033505786,-0.0009729134,-0.034718428,-0.005222922,-0.0141562605,-0.038013645,0.00962863,0.0090618525,0.050350945,-0.0017151615,0.0007105316,-0.0090948045,0.034349363,-0.022222957,0.035113852,0.012172539,0.006966093,0.001510858,-0.015751146,-0.007163806,0.012271396,-0.006455334,0.014063994,-0.03160774,-0.015171188,0.016344287,-0.029446077,-0.02213069,-0.046423044,0.0033907804,0.007723993,-0.032451317,-0.01159258,-0.008791644,-0.0025636803,-0.014327612,-0.04154612,-0.016581543,-0.06664251,0.018150067,0.017491022,-0.02333015,-0.017965535,-0.010729233,0.019085908,-0.0040728906,-0.006198307,0.029736057,-0.010920356,0.027758924,-0.046739385,0.006227964,-0.0052855313,-0.00021212971,0.012686593,0.019006822,0.007783307,-0.011131249,0.007407652,0.03007876,0.009101395,-0.011605761,-0.0027482125,-0.018400503,0.038593605,0.00963522,-0.012818402,-0.12632552,-0.0018370845,0.016489277,-0.00124065,-0.020127198,0.021234391,-0.021840712,-0.047635686,-0.006198307,0.012053911,-0.036431942,-0.038013645,0.012535013,-0.027627116,-0.02994695,-0.009747257,0.014920752,-0.04950737,0.015856594,0.02555772,0.008040334,-0.0043398035,0.020522624,-0.047134813,-0.012132997,0.0035983792,-0.0032787428,-0.020852145,0.0035423604,0.0061126314,0.0047451155,-0.020074474,-0.004224471,0.029867865,0.02603223,-0.008547798,0.06216101,-0.03150229,0.009285927,-0.011836426,-0.044894062,-0.024806408,0.010478796,0.023541044,0.023976013,0.04903286,0.009213433,-0.021498008,-0.007644908,-0.037090983,-0.0219857,-0.0048077246,0.010973079,-0.041915186,-0.00079373585,0.011777112,-0.016357467,0.003822454,-0.049191028,0.011915511,0.035693813,0.0071044923,0.014077175,-0.011071936,0.024569152,-0.016739713,-0.015487529,-0.028075265,-0.02228886,0.0007249482,-0.0025224902,-0.049428284,0.010999441,0.0246746,-0.016383829,0.010162455,-0.025201835,-0.05209082,-0.03461298,-0.03764458,-0.007176987,-0.023949651,0.009220023,-0.017807363,0.011843017,0.00062773924,0.002316539,0.034955684,-0.038778137,-0.025597261,-0.03324217,-0.015434805,-0.022592021,0.01444624,0.00903549,-0.041467037,-0.019837217,-0.0033298188,-0.104497984,0.023857385,-0.009826343,0.010544701,0.018571854,-0.030263292,0.008020563,-0.00060261315,0.010557882,-0.055939637,-0.0036082647,0.06247735,0.010452434,-0.016238838,0.01942861,-0.01082809,0.06484991,0.020522624,0.042864207,-0.018611398,0.045658555,-0.002603223,0.019362707,0.022486575,0.017438298,0.0097933905,0.0014746105,-0.007460376,0.04697664,-0.02165618,0.0017827135,0.08077241,0.0023742053,0.03023693,-0.010142684,0.01969223,0.0043727555,-0.008976176,0.0071967584,-0.056994107,0.018084161,-0.012429566,0.00086169975,0.0041750423,0.00089382817,-0.0028866117,-0.029129736,-0.013958547,0.013141333,0.008831187,-0.0070385877,-0.021076221,0.031344123,0.019020004,0.012508651,0.011361915,-0.015276635,-0.0018173133,-0.0076712696,0.00025496757,0.035799257,0.0463176,0.03669556,0.009503411,-0.0053810924,-0.026427656,0.0008674664,-0.04138795,-0.014802123,0.044155933,0.022829277,0.03585198,0.003417142,0.0294988,0.011296011,0.053250737,-0.023659673,-0.009391374,-0.019138632,0.008560979,-0.022802915,-0.0025933373,-0.012917259,0.00601707,0.04726662,-0.004254128,-0.024015555,-0.012370252,0.020746699,0.010063599,0.017359214,0.0016443143,0.01834778,0.007598775,0.037407327,-0.010689691,-0.019164994,-0.019230898,-0.018993642,-0.042257886,0.06801332,0.015724786,-0.010267902,-0.04331236,0.005104294,0.014617591,-0.011935283,0.0021089402,0.0065871426,0.018927738,-0.008139191,0.015540252,-0.0029640496,-0.020720337,-0.030922335,-0.017899629,0.007611956,0.020364454,-0.016146572,0.0056282342,-0.011803474,-0.032398593,-0.008613703,-0.046844833,0.0009968037,0.015144827,0.0005733681,0.01970541,-0.007256072,0.006531124,-0.028523415,0.02918246,-0.021959338,0.034112107,0.019020004,-0.02815435,-0.0029937064,0.021932978,-0.037829112,0.033453062,-0.013919005,0.0044946787,-0.014195804,0.011381687,-0.041440673,-0.0009004186,-0.01369493,0.013602664,0.0025340235,-0.04729298,0.016726531,-0.0056743673,0.003506113,0.019336345,0.0057369764,0.05841764,-0.014512144,0.018571854,0.014723038,-0.020390814,-0.026704455,0.037697304,0.04336508,0.035720173,0.004880219,0.016041126,-0.009417736,0.015329359,0.0021072926,0.03659011,-0.018229151,0.026111316,0.014261708,0.026546285,-0.0032326097,0.056941383,0.06321548,0.006043432,-0.010426072,-0.013787196,0.0022555774,0.038936306,-0.0003620622,0.023672853,0.008640064,-0.007394471,0.019072728,-0.01760965,0.019982208,-0.029261544,-0.01791281,0.0106831,0.012403204,0.0067156563,0.02767984,0.011454181,-0.03429664,-0.039226286,-0.013154514,0.019586781,0.049401924,-0.00798102,0.0361156,0.0072165295,0.02481959,-0.0083830375,-0.008191914,-0.020904869,0.0055788057,0.022091148,0.020377634,-0.015237093,-0.0060401363,0.01896728,0.0031419913,0.013055658,-0.02002175,-0.0076251365,0.012442747,-0.0038092732,-0.00023622601,-0.046686664,-0.05683594,-0.00579629,0.00040181077,-0.022908362,-0.015144827,-0.023910109,-0.0246746,0.018136885,0.032767657,0.03864633,-0.0063037537,0.0044188886,-0.026309028,-0.033215806,0.023870567,0.033057638,-0.016304744,0.0032260194,-0.013589483,0.023844205,0.012390023,-0.051695395,0.0072626625,-0.009365012,0.003759845,-0.006755199,-0.01849277,-0.004316737,-0.01836096,0.01158599,0.013490627,0.0038784728,-0.030895973,-0.009338651,-0.01219231,0.001708571,0.01399809,0.019244079,0.027785286,-0.017069234,0.026783539,0.011875969,-0.0012217024,0.015566614,0.008508256,0.022025244,-0.011796884,-0.00004548947,-0.007269253,0.012508651,0.0063564773,0.019454973,-0.011724389,-0.020403996,0.0026971367,-0.010017466,-0.00129914,0.0020067883,-0.009048671,0.013945366,-0.051827203,-0.012436156,0.013154514,-0.004850562,-0.002654299,0.026981253,0.010004285,-0.029762417,0.040122587,-0.0005877847,0.009819753,-0.03387485,0.017214224,-0.06305731,-0.0055590346,-0.008224866,0.0070715398,-0.009575906,0.02317198,0.017570108,0.009879067,0.010096551,0.0068408744,0.024503248,-0.0009383136,-0.021563914,0.016344287,-0.008673016,0.0063729533,-0.0090948045,0.033347618,0.004329918,-0.0021039974,0.00024487596,-0.009384784,-0.024648238,-0.014868028,0.025504995,-0.0020265598,-0.0077898977,0.036168322,0.012264805,-0.041018885,-0.028681586,0.0062576206,-0.0106831,0.026269486,-0.01911227,0.0064026103,-0.005466768,-0.030922335,0.006046727,-0.013945366,-0.0035357699,-0.037117347,0.016120212,0.008956405,0.0090684425,-0.033769403,0.0051240656,0.015843414,0.014182623,0.0423897,0.00390813,0.034059383,-0.0033265236,-0.0321877,0.0011969883,0.07750355,0.012574555,0.009246385,0.002792698,0.010201998,0.04710845,-0.012014369,0.025478633,-0.0074537853,-0.031739548,-0.005822652,0.030922335,0.018611398,0.0065377145,-0.0015940622,0.008350085,0.00015755265,-0.040834352,0.046159428,-0.014433059,0.01836096,-0.020957593,0.008086467,0.0052723503,-0.0046726204,-0.012831583,0.009510002,-0.03189772,-0.0036379218,0.003674169,-0.010571063,-0.02857614,0.003522589,0.008376447,-0.051589947,0.005555739,0.014775762,-0.0005185851,0.008804825,-0.00029121496,-0.030816888,-0.033031274,0.008013973,-0.0051833796,-0.0011409696,0.027811648,0.0044913837,-0.022644745,-0.004376051,-0.017477842,-0.017543746,0.020641252,0.023580587,-0.020838965,-0.0083434945,0.0017332851,0.01834778,-0.03384849,0.023079714,0.014907571,-0.018176427,0.026981253,0.015237093,0.0056084627,-0.0067947414,-0.0036906453,0.037565496,-0.0119682355,0.010043828,-0.014090356,-0.01684516,0.013615845,-0.012818402,0.029736057,-0.017398756,-0.0058621946,-0.0055491487,-0.034982044,0.00034105516,-0.011394868,0.022222957,-0.037407327,-0.019375887,-0.029577885,-0.016673809,0.044024125,0.010636967,-0.026467199,-0.0006149702,-0.011777112,-0.009701124,0.010070189,0.031027783,0.040254395,-0.012508651,-0.0052855313,-0.017240586,-0.01700333,-0.016594723,0.004379346,0.00068705314,0.010208588,0.00691996,0.0014910866,-0.006893598,0.01083468,-0.013813558,-0.010122913,-0.0112762395,0.026704455,-0.013734473,-0.015896136,0.019402249,-0.018901376,-0.034797512,-0.009305699,-0.03176591,-0.001573467,0.014261708,0.01610703,0.016331105,-0.0026262896,0.020140378,-0.01714832,-0.0047945436,0.014551687,0.0011541505,0.001789304,-0.0000645657,0.006323525,0.0033973707,-0.00692655,0.020034932,-0.00096220395,-0.012238443,0.022236139,-0.03324217,-0.020588528,0.01596204,0.01912545,-0.021432104,-0.0071374443,0.024424164,-0.0020990544,0.025504995,0.022367947,0.0055194916,-0.02873431,0.016950607,-0.018875014,-0.0052558742,-0.006682704,0.025267739,-0.021893434,0.012502061,-0.019204536,0.016950607,0.010129503,0.0370119,-0.016449733,0.02016674,-0.020562166,-0.016383829,-0.021445286,-0.012310938,-0.003319933,-0.017860087,0.014775762,0.043681424,-0.0048242006,-0.015817052,0.041440673,-0.030526908,-0.011816655,-0.007994201,0.008521437,0.009832934,-0.025953144,-0.06332093,0.014485783,-0.0012332357,0.03340034,-0.012811812,0.005012028,-0.012890897,0.01714832,-0.02002175,-0.0105381105,0.04157248,0.0155929765,0.0370119,-0.01503938,0.003146934,-0.020838965,0.012567965,-0.015434805,-0.0053053023,0.027758924,0.011032393,-0.0006182655,-0.0004535045,0.017082416,0.033189446,0.013035886,0.0063268202,-0.022552479,-0.029999673,0.035377473,-0.01203414,0.010452434,-0.010043828,-0.006985864,0.008066696,0.013101791,-0.036379218,-0.013760834,0.006827694,-0.0026378229,-0.02707352,0.008165552,-0.005901737,-0.009562725,-0.0246746,-0.045816723,0.026071772,0.02197252,-0.008158962,-0.044630446,0.0020430358,-0.029630609,-0.022183415,0.004076186,-0.016041126,0.004774772,-0.031555016,0.0025801565,-0.046607576,0.0051734936,-0.019903123,0.0105117485,0.012442747,-0.008653245,-0.029973311,-0.007163806,-0.022539297,0.0339803,-0.009259566,-0.029393353,0.0018090752,-0.0063531823,0.01925726,0.04138795,0.021128943,-0.031370483,-0.018242333,-0.039199926,0.014353974,0.0010948365,0.0039311964,0.023277426,-0.020825785,-0.0056447103,-0.002852012,-0.03084325,0.051510863,0.008600522,-0.021458466,0.009951562,0.0031650579,0.016186116,0.0115794,-0.003822454,0.010142684,-0.018097343,-0.0070254067,-0.005961051,0.008791644,-0.0008979472,0.023369692,0.013523579,0.03158138,-0.0019721885,0.03835635,-0.03234587,0.015817052,0.019085908,-0.011006031,0.0115794,-0.0056941384,0.003235905,0.01762283,0.019323165,0.0014391869,-0.029366992,0.0026592417,-0.00050663995,0.010544701,-0.00903549,0.022012062,0.0060368413,-0.028207075,0.013681749,0.008053515,0.003628036,-0.00019668338,0.019679047,-0.0006689294,0.0133917695,0.020285368,-0.01428807,0.012508651,-0.025373187,-0.004336508,-0.026888987,-0.0013353875,-0.0180578,0.015131646,0.037829112,0.032293145,0.024081461,0.017227406,-0.030816888,0.029024288,-0.042468783,0.07112401,0.033004913,-0.012759088,-0.014525325,0.063584544,0.0025669755,0.016634265,-0.00932547,0.0012464166,0.013325865,0.017280128,0.00084316416,-0.0050153234,-0.019665867,-0.020654432,-0.027653478,-0.004412298,-0.017108778,0.006939731,-0.01866412,-0.0035687222,0.03445481,-0.0069792736,0.016607903,0.01324019,-0.010926946,0.009220023,0.015513891,-0.004063005,0.009536364,0.041467037,0.004000396,0.019507697,-0.006050022,0.0397008,0.017069234,-0.0018024847,0.033031274,-0.022947906,0.013760834,0.0090552615,0.021774806,-0.0017036282,-0.04531585,0.013174285,0.008053515,-0.036300134,0.034797512,0.028127989,-0.025702707,0.016528819,-0.011520086,-0.01580387,-0.011783703,0.011381687,0.0075262804,0.013629026,0.0062246686,-0.021076221,-0.008172143,0.036089238,-0.0010973079,-0.04405049,-0.0048274957,-0.0028602502]},{"id":"guide-emojis-0","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Fetch Emojis\nUse guild.fetchEmojis() to get all emojis in a guild. Cached in guild.emojis. Use guild.fetchEmoji(emojiId) for a single emoji. Use emoji.delete() to remove an emoji (e.g. autocreated ones).\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || message.content !== '!emojis') return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const emojis = await guild.fetchEmojis();\n const list = emojis.map((e) => `:${e.name}: (${e.id})`).join(', ');\n await message.reply(emojis.length ? list : 'No emojis.');\n\n // Or get from cache after fetching: guild.emojis.get(emojiId)\n});\n\n// Fetch single emoji by ID\nconst emoji = await guild.fetchEmoji(emojiId);\nawait emoji.delete();\n```","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[-0.003905362,-0.013520318,-0.0019698099,0.0020069222,-0.002156799,0.0011883092,-0.046407577,0.03386931,0.0066231284,0.018247861,0.021285364,-0.04229667,0.022884052,-0.06828674,0.019012947,0.016809044,-0.05353315,-0.013269096,-0.016169569,0.023226626,0.033777956,0.007645146,-0.003457159,0.045516882,-0.00075723487,0.04357562,-0.029141765,0.040264055,0.015427322,-0.027314696,-0.042319506,-0.023546364,0.067784294,-0.051751755,-0.028296746,0.040949207,0.0045648203,0.019058624,-0.046704475,0.016192408,-0.009860468,-0.028205393,0.01221853,-0.009066835,0.007251184,0.0018813111,-0.035353802,0.0022452977,0.019789452,0.00829604,-0.017642645,-0.00899261,-0.029004736,0.05229988,-0.02289547,-0.043644134,-0.074909866,0.012252788,-0.051020928,0.03875672,0.037432097,-0.028273908,0.015107585,-0.010168786,0.026309807,0.046065003,-0.048280325,0.016112473,0.007713661,0.031083029,0.0185676,0.010163077,0.027017796,-0.0398758,0.028799191,-0.03622166,0.0139428275,0.016272342,0.016180988,-0.046498932,0.0034114823,0.038436983,-0.0398758,-0.055040482,-0.0016429356,-0.029461503,-0.046453252,-0.020463184,-0.014502368,0.009774825,-0.0042793406,-0.018761724,-0.10048885,-0.01965242,0.03263604,0.00012132886,0.008929805,0.008113333,-0.022050451,0.04709273,0.08148732,-0.043233044,-0.10651818,-0.014490949,0.0063719065,0.017676901,-0.034394592,0.044854566,-0.01883024,0.015552933,-0.07952322,0.0018955851,0.01109374,0.009289509,-0.00028815606,0.007456729,-0.011773182,-0.00842736,0.039578903,-0.045402687,-0.080939196,0.007222636,0.059379775,-0.044649024,0.01812225,0.008946933,-0.032384817,-0.032361977,-0.04946792,-0.03133425,0.028593644,-0.037500612,0.026583867,0.017026009,-0.038299955,-0.02262141,0.015621448,-0.02163936,-0.045037273,0.020234799,0.037021004,-0.04337007,0.0024908101,0.007097025,-0.061617933,-0.029530019,-0.05170608,-0.01278949,-0.080847844,-0.0041936967,-0.021102658,-0.024962343,0.0013424682,0.0046847216,0.0047018505,-0.0053727278,0.012412657,-0.0047132694,-0.024962343,-0.021388138,-0.034874197,-0.024756799,0.031905208,-0.030991673,-0.016477887,-0.00001467544,0.0011611886,-0.031791016,-0.0020069222,0.020897113,0.043461427,-0.042958982,-0.019903643,0.0016914671,-0.031174382,-0.007371085,-0.010014627,0.016489306,-0.06184632,0.024802474,0.010968129,0.01588409,-0.058146503,-0.006788707,-0.018156508,0.003976732,0.024071647,-0.0049073957,-0.02783998,0.03188237,-0.006434712,0.0038168633,0.0014673655,-0.010711198,0.057095937,-0.01700317,0.0542183,-0.010985258,0.009500763,-0.036313016,-0.010636973,0.07221494,0.04314169,-0.017642645,0.015130423,-0.048828445,-0.018704629,-0.027565919,0.045722425,0.016226666,0.015689963,-0.009769115,-0.020234799,0.015507257,-0.046476092,0.025350595,-0.041268945,0.016649175,-0.012115758,0.016649175,-0.044215094,0.021433815,0.051614728,-0.02950718,-0.007108444,-0.0035171097,-0.0018941577,-0.019960739,0.00308889,0.049376566,0.0026877911,-0.0054983385,-0.037295066,-0.059060037,0.025350595,-0.025213566,0.013645929,0.042936143,0.009489344,-0.00786782,-0.021422395,-0.046179194,0.03327551,-0.020223381,0.0019398344,-0.0075138253,-0.030854644,-0.012880843,0.037980217,0.018304957,0.050929576,0.0032459039,0.024528414,-0.013017873,0.024688283,-0.01925275,-0.015233196,0.015906928,0.005204295,0.03877956,-0.02065731,0.011459154,-0.036038954,0.010003208,-0.006811545,0.013303353,0.0016572096,0.022415865,-0.06125252,-0.006069298,0.0048131873,-0.018613275,0.066962115,0.019070042,-0.020428926,0.02094279,-0.0155300945,0.005033007,-0.00730828,0.0102772685,-0.010225882,-0.03263604,-0.0038596853,0.0015487273,-0.010928162,0.030534906,0.046042163,-0.04145165,-0.005735287,0.026309807,0.011830278,0.0028390954,0.004964492,-0.020189123,0.03275023,0.036335856,0.03528529,0.045722425,0.06554613,0.0382086,-0.03905362,-0.0612982,-0.017437099,-0.027360372,-0.025076535,-0.017939543,-0.008592938,0.012538267,0.03921349,-0.015381645,0.035330966,-0.023820424,-0.03763764,0.019994996,-0.022792697,0.014445272,0.01460514,0.047412466,0.067875646,-0.01727723,0.037272226,-0.00018681076,0.043735486,-0.01854476,-0.062759854,-0.070068136,-0.012755232,-0.033321187,0.008627196,0.015849832,0.031448442,-0.0120244045,0.0033943534,0.070753284,0.03306997,-0.01532455,-0.010774003,-0.0045476914,0.021730714,-0.030512068,0.015141842,-0.021993354,-0.014719333,-0.03092316,0.012195692,-0.01194447,0.0034485946,0.055588603,-0.00983763,-0.0021710729,-0.021685036,0.0362445,0.0371352,-0.061161168,0.034622975,-0.029598534,-0.0030232298,-0.008809903,0.013782959,0.03302429,-0.008021979,0.008216105,0.0016357986,0.036975328,0.010328655,-0.004079505,0.022107547,0.038825236,0.060521692,-0.03062626,-0.0017085959,-0.0047389627,-0.025053697,-0.025647495,0.023683395,-0.010145948,-0.023706233,0.027474565,0.024916667,0.045197144,0.0049530724,0.0062462953,0.0062063285,-0.019229911,0.026104262,-0.009746277,-0.01769974,-0.033092804,-0.029461503,0.010996677,0.017871028,-0.012481172,-0.036746945,-0.013508898,0.012252788,0.012995035,0.0012368407,0.017231554,-0.0006373334,0.014639398,0.009986079,0.01741426,0.02724618,-0.008490166,0.012241369,0.017448518,-0.03021517,0.0073653758,0.020634472,-0.030580584,-0.0017471357,0.028022686,0.0056867553,-0.0013574559,0.01461656,-0.029575694,0.022963986,-0.025921555,0.008216105,0.028547969,-0.020234799,-0.04161152,-0.0017171603,-0.03119722,0.0016072507,-0.021685036,0.02079434,-0.035102583,-0.002389465,-0.04316453,-0.05280232,-0.0152103575,0.02569317,-0.019321265,0.045288496,-0.013269096,0.035764895,0.0063205203,-0.013554575,-0.05019875,-0.039807286,-0.03469149,-0.010362913,0.025601817,-0.002840523,0.02402597,-0.026743736,-0.023283724,0.012995035,0.039989993,0.00048888393,-0.013097808,0.024665445,-0.002522213,-0.012995035,0.015792737,-0.013988504,0.014867782,0.03147128,-0.014399596,0.0054755,0.0018670372,-0.003539948,0.001081968,0.04428361,-0.016477887,-0.034211885,0.00095064734,0.03441743,0.0306491,-0.040104184,-0.0077022417,0.0142625645,0.040469598,0.008804194,-0.025807364,0.005001604,-0.04120043,0.027611595,0.029073251,0.012070081,0.027634433,-0.03768332,-0.062851205,-0.026195616,0.070890315,0.0371352,-0.055588603,0.00927238,-0.03501123,-0.047503818,0.017494194,0.006999962,-0.009717728,0.0139428275,-0.010243011,0.008324588,-0.046590284,0.0051072314,-0.01783677,0.019915063,-0.014114115,-0.05590834,0.066642374,0.0030232298,0.033755116,0.029050412,-0.026378322,0.027931333,-0.0011776037,0.0134632215,0.005721013,-0.021445233,-0.015415903,0.02235877,0.0030603423,-0.05663917,0.012858005,-0.026880767,-0.024574092,-0.025556142,0.0078792395,0.048828445,-0.0365414,0.0120815,0.0029804078,0.0017257247,-0.053578828,-0.015061908,0.03485136,0.038254276,-0.027611595,0.01040288,-0.0029190297,0.0023866103,0.014502368,-0.02081718,0.020908533,0.015724221,-0.031653985,-0.0011933051,0.032773066,-0.00003064446,0.019469714,-0.038048733,0.017505614,-0.060750075,0.05691323,0.011156546,-0.005101522,0.0039167814,-0.018624695,0.02235877,-0.010140238,0.017939543,0.023021081,-0.017882448,-0.015027651,0.026172778,0.01812225,0.017448518,0.018990109,0.041223265,0.013303353,-0.01532455,-0.004382113,0.025533304,0.03613031,-0.013451803,-0.0115447985,0.00983192,-0.0043450007,0.014707914,0.022792697,0.0071312822,0.05367018,-0.031562634,0.03501123,-0.020988466,0.0101173995,-0.010842518,-0.018521922,0.026446838,0.015781317,-0.027908495,0.0362445,-0.016923236,-0.035171095,-0.045745265,0.006685934,0.03622166,-0.01659208,0.008124752,-0.020440346,0.003848266,0.010853938,-0.025601817,0.003328693,-0.028273908,-0.0035171097,-0.02305534,-0.015244615,-0.027474565,0.014365338,-0.010208754,-0.033092804,0.00018261779,-0.022769859,0.014159792,0.016706271,-0.022507219,0.006897189,-0.030991673,-0.050061718,-0.018030897,-0.013794378,-0.01067694,0.0011597612,-0.0069371564,0.01769974,-0.005858043,-0.0142511455,0.039852962,-0.02473396,0.029735563,0.025190728,0.026720898,-0.009215284,-0.00031331394,-0.010642682,0.00414802,-0.015541514,-0.021662198,-0.01532455,0.008101913,-0.023660555,-0.0076051787,-0.017459938,0.02937015,-0.022735601,0.04311885,-0.027040636,0.040264055,-0.019778032,0.019081462,0.011424897,0.0075823404,-0.02459693,0.0077079516,0.00386254,-0.0051100864,0.008735678,-0.012709555,-0.043666974,0.0089983195,-0.020017836,0.0023152402,0.033755116,-0.037021004,0.024094485,-0.024048809,0.03327551,-0.03695249,0.039715935,-0.021331042,0.038825236,0.018487664,0.029324474,0.00086500344,0.0020297605,0.0059779445,0.02178781,-0.011978728,0.019857967,-0.01952681,-0.030238008,-0.028068362,-0.051112283,0.01686614,0.0017242973,-0.036335856,-0.004958782,-0.057689734,-0.026926443,0.049970362,-0.024665445,0.011407768,0.01153338,0.018373473,0.0016229519,-0.006999962,0.0056153852,0.017071685,0.0055982564,-0.00065410533,0.005070119,-0.0026849364,0.021582264,0.01108803,-0.03864253,-0.00786782,0.01712878,-0.056091048,-0.009055415,0.001630089,-0.012241369,0.020063512,-0.019161396,0.029164605,-0.015004812,-0.048371676,0.010699779,-0.033206996,-0.0068343836,-0.023957456,-0.02541911,-0.0051957304,-0.02994111,0.02822823,-0.046065003,0.013588833,0.05293935,-0.01769974,0.01123648,-0.020177703,-0.017905286,0.010305816,0.014125534,-0.033526734,0.009380862,-0.026469676,0.02724618,0.00870713,-0.017711159,-0.0052356976,0.009734857,0.0049673463,0.027657272,-0.042479377,-0.026880767,-0.012252788,0.01165899,-0.024505576,-0.018750306,-0.031562634,0.0025022295,-0.00618349,-0.0013253394,-0.054172624,-0.029164605,-0.01334903,0.0066231284,-0.0026249858,-0.0034200465,-0.0035742056,-0.034942713,-0.0077935955,0.0030032462,-0.028205393,0.0194012,0.039533228,0.007388214,0.0049816202,0.04357562,-0.008438779,-0.0030432134,-0.012583944,0.00042929008,-0.009295219,-0.032361977,-0.042205315,-0.012743813,-0.008061946,0.0152103575,0.026766576,-0.0043193074,-0.017950963,-0.0038025894,0.015518676,0.021570845,-0.04227383,0.012378399,0.011453445,-0.005606821,0.023386495,-0.004176568,-0.011773182,-0.0041508744,-0.010254431,-0.04515147,-0.0060122022,-0.012618202,0.009500763,0.007405343,-0.037272226,0.02304392,0.00053705863,-0.07413337,-0.038825236,0.02950718,-0.021513749,-0.0088441605,0.02697212,-0.018727466,0.029164605,0.0031545504,0.0077935955,0.016946074,-0.0424337,-0.0033829343,-0.028159715,0.033755116,0.009437959,0.028822029,-0.004030973,-0.014399596,-0.01813367,-0.01700317,-0.013394707,0.018339215,0.0035228194,0.0072112167,0.0009413693,0.0015059053,-0.02614994,0.018716048,0.00087785005,-0.016009701,0.021993354,0.011773182,-0.022107547,0.006942866,0.010140238,0.007530954,-0.0030546326,0.014536626,-0.039122134,0.03501123,-0.0017085959,0.02345501,-0.020988466,-0.006126394,-0.0061035557,0.0128237475,0.031151542,-0.025327757,-0.036609914,0.009866178,-0.012389818,0.01194447,0.029301634,-0.010642682,-0.033412542,-0.024391385,0.0502901,-0.03676978,-0.011818859,0.020680148,-0.016797625,0.04567675,0.000013861377,0.037295066,-0.0085187135,-0.018750306,0.006280553,0.03720371,0.0013574559,0.011042354,-0.01068265,-0.015838413,0.01686614,-0.008547261,0.006223457,0.031220058,-0.0210684,-0.002683509,-0.0057723993,-0.021730714,-0.0073139896,0.020474603,0.018933013,0.02669806,-0.0045134337,-0.042091124,-0.008347426,0.010876776,-0.014045601,0.036975328,0.006840093,-0.002242443,0.02107982,0.017551292,0.0006020053,-0.005675336,0.009466507,0.043347236,-0.034211885,0.04172571,0.0009542158,0.01602112,-0.022735601,-0.03160831,-0.0052471166,0.011967308,-0.026378322,-0.0067259013,-0.0306491,0.0012546832,0.021856325,0.0005723868,0.02052028,-0.025259241,0.029118927,0.026492514,0.005392711,-0.0063547776,-0.0059950734,0.037066683,0.01054562,-0.001615815,-0.010305816,-0.020771502,-0.0032116463,0.003514255,0.024003131,-0.006685934,0.055542927,0.0013774395,-0.00026406872,0.031265736,-0.00323163,0.029347312,-0.025282081,0.01614673,0.027794302,-0.0066802246,0.03128857,-0.0022495799,-0.010602715,-0.029781241,-0.024208678,-0.021479491,0.026195616,0.001212575,0.054081272,0.0027249036,-0.045494042,0.04764085,0.0037454935,-0.017117362,0.027497403,0.054994807,0.05060984,-0.008256072,-0.021159753,-0.012241369,-0.000024912562,0.062348764,0.014673656,0.0131434845,-0.03964742,-0.00086286233,-0.009186736,-0.019275589,0.0052299877,-0.031083029,0.012538267,0.0388024,0.016694851,0.010214463,0.039396197,-0.0032287752,0.014833524,0.02459693,0.0061206846,0.007645146,0.014981974,-0.03313848,0.000092245624,0.019412618,0.013189161,0.030945998,-0.014171211,0.013417545,-0.030100977,-0.022655668,-0.003879669,-0.008164719,0.017688321,-0.00646326,0.033206996,0.011499122,-0.013543156,-0.006480389,-0.0076794033,-0.019184235,0.0011497694,0.046179194,0.02544195,0.020668728,-0.016238084,-0.033937823,0.014650817,-0.04611068,0.023101015,0.023009662,0.035102583,0.007262603,0.021433815,0.023226626,0.026264131,0.026012909,-0.004045247,-0.055999696,-0.026264131,0.012012985,0.01742568,-0.014445272,-0.0050901026,-0.009346604,-0.010151657,-0.042045448,-0.0005160045,-0.015290292,-0.025464788,-0.031585474,0.017688321,0.0012589653,0.000119009346,-0.0050387164,0.020063512,0.032544684,-0.021730714,0.0018741741,0.016809044,0.0069714137,0.018807402,0.0015344532,0.024368545,-0.011442026,-0.006394745,-0.009369443,0.022712763,0.014924878,0.051203635,0.0069200275,0.006531775,-0.0074510197,0.0015087601,0.004510579,-0.015198939,0.02234735,0.037751835,-0.008592938,0.02822823,0.037066683,-0.033892147,0.005309922,-0.011276447,-0.022587152,-0.034097694,-0.000669093,-0.004776075,-0.004810333,0.0029861175,-0.0105912965,0.0077022417,0.0048674284,0.027086312,-0.0061606513,-0.0002963636,-0.0036027536,0.005818076,-0.007987722,-0.0070228004,0.0013938545,-0.0013296216,-0.0037569127,-0.017802512,-0.013782959,0.003865395,-0.019469714,-0.008924095,0.0056524975,-0.017928123,0.042547893,0.0027177667,0.019070042,-0.03284158,-0.0068058358,-0.04622487,0.017962381,-0.00414802,-0.03119722,-0.04355278,0.01881882,-0.0061035557,-0.015016232,-0.022495799,0.007645146,0.00036166707,-0.007405343,-0.014696494,0.0024123034,-0.005441243,0.027977008,0.016614918,0.024300031,0.01994932,0.03259036,-0.03286442,-0.005406985,-0.010488523,-0.011190804,-0.046407577,-0.031083029,-0.002415158,0.023135273,-0.00940941,-0.018362053,0.024231516,-0.0018970125,-0.034097694,0.053304765,0.003962458,0.014353919,-0.01728865,0.018419148,-0.017745417,-0.011070902,-0.0654091,-0.046430416,-0.013725863,-0.06618561,0.014879201,0.014959135,-0.011773182,-0.021513749,0.0029004735,-0.051888786,-0.007856401,0.013874313,0.014490949,0.0043050335,-0.014570883,0.012115758,-0.00400528,0.061663613,0.022667088,-0.020897113,0.00435642,0.0401727,0.01813367,-0.003191663,0.019755194,0.010557039,-0.010853938,-0.007388214,0.0030175203,0.0261271,-0.024916667,0.011978728,0.0021368153,-0.014970555,0.048691414,0.014719333,0.0060064923,-0.002676372,0.031973723,-0.0035199644,0.053487472,-0.02316953,-0.027611595,0.026766576,-0.010191625,-0.0009356597,0.006417583,-0.0012546832,-0.020897113,-0.030831806,-0.0043764035,0.00554687,-0.00062270253,-0.01040859,-0.03204224,0.026538191,-0.02305534,0.0010591296,-0.010893905,-0.004610497,0.0058437693,-0.0076794033,0.0044220802,-0.0069200275,-0.034440268,-0.04129178,-0.004864574,0.013782959,0.028456615,-0.007148411,-0.0042507923,-0.003597044,-0.009380862,0.0064061643,0.041017722,0.0060179117,-0.007405343,-0.008107623,0.057552703,-0.053989917,-0.008952643,-0.0066402573,0.020554537,0.0034742877,0.0031117285,-0.0022010484,0.050518483,0.005426969,0.0063319393,-0.01306355,0.008204686,-0.023957456,0.015975444,0.0068686414,0.0055325963,-0.016706271,0.027314696,0.030260846,-0.0093180565,0.048600063,0.0008421651,-0.020348992,0.03638153,0.008741388,-0.024893828,0.015655706,0.030032463,-0.020314734,-0.019503972,0.0062177475,0.012618202,0.0063205203,0.0039710226,-0.026286969,0.009329476,0.0065146466,-0.010625554,-0.028433776,0.03724939,0.0034799974,-0.013805797,0.028776351,-0.0044192253,-0.031242896,0.029552856,0.00280912,0.01446811,0.029438665,-0.017676901,0.022758441,0.015187519,-0.039419036,-0.017950963,0.00033775816,-0.0063148104,-0.015084746,-0.030375037,0.020508861,0.04188558,-0.008113333,0.010808261,0.00075580744,0.0063033914,-0.010385751,-0.03302429,0.01828212,-0.010003208,-0.013565995,0.024916667,0.0017885303,-0.01838489,-0.021022724,-0.0099518215,0.005943687,0.015689963,-0.019766614,-0.0443978,-0.0058637527,0.020554537,0.0014609423,-0.019926481,0.030854644,-0.01883024,0.00013756553,-0.017094523,-0.010808261,-0.0023195224,-0.008079075,-0.023797587,-0.0028505146,-0.01659208,0.03768332,0.0013281943,-0.003514255,-0.012720975,0.0027762898,-0.00870142,-0.031265736,-0.0006748026,-0.00801627,-0.014445272,0.029963948,-0.0039025072,0.021410976,0.018898755,-0.023158113,0.017813932,0.02107982,-0.0155300945,-0.00005116331,-0.06294256,-0.00085358426,-0.025373435,-0.0056410786,0.0025678896,-0.02991827,-0.02991827,-0.01614673,0.0002526495,0.02036041,-0.0011055201,-0.0020697278,-0.009900436,0.009780534,-0.0033658054,-0.025647495,-0.01503907,-0.006771578,-0.030009624,-0.0035114002,-0.052208524,0.008747097,-0.050518483,0.01896727,0.00842736,0.051112283,0.01994932,-0.020965628,-0.020897113,-0.007685113,0.0032002272,-0.00040680854,-0.0034257562,-0.0066688056,0.025921555,-0.01838489,-0.005820931,0.011761763,-0.013794378,0.03919065,0.05229988,0.018316377,0.023569202,-0.027177665,0.026720898,-0.004227954,0.020189123,-0.00020750804,0.0105342,-0.019287007,-0.014867782,0.012389818,-0.022541476,0.004330727,0.017471356,0.045585394,-0.010094562,0.013257677,-0.030717613,-0.020874275,-0.0171402,0.019755194,0.0055040484,-0.051797435,-0.010014627,0.0074852775,0.008912676,0.015335969,-0.0005588265,-0.0110651925,0.035445157,-0.029324474,0.015678544,0.0018042315,-0.021822067,0.014422433,0.006674515,0.014216888,-0.018579017,-0.013109227,0.026652383,-0.032795906,-0.05997357,0.013999924,0.0017085959,-0.0019112865,-0.03679262,-0.00604075,-0.015610029,0.025898717,-0.011219352,0.022096127,0.0036455756,0.0000906398,0.029826917,-0.050472807,0.02585304,-0.025967231,0.026309807,-0.012287046,0.01152767,-0.01040288,-0.015552933,0.023409333,-0.032339137,0.025236404,-0.00393391,0.019960739,0.012572525,0.021490911,-0.0017071685,-0.03528529,-0.006252005,-0.008273201,-0.037706155,-0.000507797,-0.018933013,0.0466588,-0.0061720707,-0.03512542,0.017779674,0.0015016231,-0.01334903,0.027702948,-0.009175317,-0.006297682,-0.0032773067,-0.0010705488,-0.060795754,0.0074852775,-0.024642605,0.0022039032,0.0051757465,0.012880843,0.018362053,-0.033800796,0.047549497,0.01586125,-0.0029490052,-0.021730714,-0.004653319,0.034052018,-0.014308242,0.007839272,0.030945998,0.026332647,0.036998168,0.011898793,0.009614956,0.0010455693,-0.028251069,-0.018419148,0.002278128,-0.032247785,-0.034508783,-0.021742133,0.017242974,-0.013897151,0.010294397,-0.0024608348,-0.0074966964,0.04567675,0.02162794,0.0020283333,0.0056039663,0.03722655,-0.02921028,-0.026515353,0.0018427713,0.02361488,-0.05239123,-0.011504831,0.001411697,0.025921555,-0.038939428,-0.013862893,-0.03861969,0.0443978,-0.0066231284,0.037432097,-0.022872632,-0.035193935,-0.036290176,0.01838489,-0.002379473,0.048006263,-0.03270455,-0.048097618,0.001236127,0.015644286,0.01742568,0.02235877,-0.007114154,0.010008918,-0.006309101,0.006383326,0.028867705,-0.038825236,-0.012766652,-0.010311526,-0.018864498,-0.0045790942,-0.031905208,-0.01686614,-0.0032230655,-0.01615815,-0.038162924,0.003779751,-0.041520163,-0.015221776,-0.01306355,0.03722655,0.0038197183,-0.004830316,-0.027337534,0.010174496]},{"id":"guide-emojis-1","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Create Emojis & Stickers\nUse guild.createEmojisBulk() and guild.createStickersBulk() with base64 image data. Use emoji.edit() / emoji.delete() and sticker.edit() / sticker.delete() for individual updates.\n\n```javascript\nimport { Client, Events } from '/core';\n\nconst client = new Client({ intents: 0 });\n\n// Create emoji from URL (fetch and convert to base64)\nasync function createEmojiFromUrl(guild, name, imageUrl) {\n const res = await fetch(imageUrl);\n const buf = await res.arrayBuffer();\n const base64 = Buffer.from(buf).toString('base64');\n const [emoji] = await guild.createEmojisBulk([{ name, image: base64 }]);\n return emoji;\n}\n\nclient.on(Events.MessageCreate, async (message) => {\n if (!message.guildId || !message.content.startsWith('!addemoji ')) return;\n const guild = client.guilds.get(message.guildId) ?? await client.guilds.resolve(message.guildId);\n if (!guild) return;\n\n const [_, name, url] = message.content.split(/\\s+/);\n if (!name || !url) return;\n const emoji = await createEmojiFromUrl(guild, name, url);\n await message.reply(`Created emoji :${emoji.name}:`);\n});\n\n// Bulk create stickers\nconst stickers = await guild.createStickersBulk([\n { name: 'cool', image: base64Image, description: 'A cool sticker' },\n]);\n\n// Edit and delete\nawait emoji.edit({ name: 'newname' });\nawait emoji.delete();\n```","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[0.012299076,0.007264533,-0.01700936,-0.01787405,-0.025963452,0.00416132,-0.023642443,0.057979733,0.00020319501,0.024143051,0.01664528,-0.029103642,0.023437647,-0.058389325,-0.012321831,0.025485598,-0.06348644,-0.0114912735,-0.010996353,-0.015985386,0.027556302,-0.0073839966,0.037750542,0.07031294,0.0054469774,0.04170991,-0.005421378,0.047512434,-0.006894764,-0.04421296,-0.032425873,-0.036407996,0.07991555,-0.031333633,-0.04607887,0.048195083,-0.0040276344,0.02996833,-0.020854956,-0.0048923246,-0.0093238605,-0.03916135,0.032334853,0.016065028,-0.01564406,0.026509572,-0.03993502,0.03219832,0.019751338,0.016383598,-0.014449423,-0.006900453,-0.0029268616,0.016895585,-0.009852914,-0.014767993,-0.05929952,0.0061381604,-0.07108661,0.060619313,0.049423855,-0.039548185,0.028489256,-0.032403115,0.008248687,0.047011826,-0.047148354,0.023801727,0.03092404,0.047239374,0.025826922,-0.011923619,0.020911843,-0.029126396,-0.006542062,-0.051471803,0.0022484781,0.017396195,0.0113263,-0.029991087,-0.005822435,0.031492915,-0.036385242,-0.03970747,-0.031083327,0.015791968,-0.043553066,-0.04134583,-0.030400677,-0.023983767,0.011855354,-0.01141732,-0.066353574,-0.012287699,0.067445815,-0.006689969,0.020433988,0.007008539,-0.018283641,0.056386884,0.072588444,-0.038000844,-0.08310125,0.006058518,0.0031231234,-0.026031718,-0.017896805,0.07354415,-0.01000651,0.007531904,-0.08633246,-0.014483556,-0.0053360467,-0.009921179,0.03520198,-0.023392137,0.013425448,-0.018158488,0.03520198,-0.048832223,-0.07044947,-0.01541651,0.059071973,-0.0412093,0.021992706,-0.01546202,-0.029103642,-0.012481116,-0.03156118,-0.029080886,0.03065098,-0.033586375,0.050652623,-0.004039012,-0.03552055,-0.01700936,0.032721687,-0.009659496,-0.021537606,0.016702168,0.040321857,-0.050470583,0.01546202,-0.004693218,-0.06121094,-0.011775712,-0.07449986,0.013141011,-0.065443374,0.010074775,-0.04107277,-0.009284039,-0.015154828,-0.004556688,0.013186521,-0.01700936,0.0045509995,0.010842756,-0.035293,-0.018112978,-0.005233649,-0.008066647,0.03615769,-0.03556606,-0.0024930944,-0.015712326,0.004511178,-0.011485585,-0.027078446,0.028921602,0.038046356,-0.039844,-0.016611148,-0.0036720878,-0.042278785,-0.01714589,0.0072076456,-0.02001302,-0.04648846,0.030628227,0.012367341,0.025508352,-0.076775365,-0.0061666043,-0.03888829,0.01787405,-0.0026794008,0.01568957,0.015211715,0.016360844,-0.041277565,0.000011721934,-0.004693218,-0.022299897,0.07645679,-0.01500692,0.06157502,-0.0037119088,0.034405556,-0.028580276,0.021071127,0.031538427,0.016906964,-0.020707047,0.0025087385,-0.049378343,-0.02024057,-0.025531108,0.031447407,0.027283242,0.03115159,-0.014642841,-0.03042343,0.008407972,-0.058525853,0.045441728,-0.02987731,0.014893145,-0.029809047,0.01955792,-0.03679483,0.010933776,0.030491697,-0.031856995,0.0036720878,0.008538812,0.0031544114,-0.004275095,0.0050658314,0.036499016,-0.008271442,0.009727761,-0.03383668,-0.06257624,0.020399855,-0.047011826,0.019432768,0.025326312,0.019626185,0.017316554,-0.009414881,-0.048468143,0.009727761,-0.028807826,0.0003189255,0.00868672,-0.033768415,-0.005077209,0.03993502,0.0054242224,0.08123534,-0.03292648,0.0093011055,0.013095501,0.025895188,-0.018465681,-0.022254387,0.02269811,0.016429108,0.023483157,-0.009414881,-0.017214155,-0.03652177,0.016770434,0.006035763,0.020115418,-0.004428691,0.044417754,-0.032812707,-0.022766374,-0.0007729588,-0.019751338,0.028466502,0.018340528,0.0014022767,0.008567257,-0.008624144,0.042415313,-0.018715985,0.026714366,-0.023005303,-0.04330276,-0.026691612,0.009540033,-0.022117857,0.04343929,0.043006945,-0.039684717,0.0028216196,0.017726144,0.048104063,0.004829748,0.0027249109,-0.003552624,0.045783054,0.045077648,0.00832264,0.026464062,0.036749322,0.046784274,-0.034951676,-0.047831003,0.028079666,0.0023935414,-0.025531108,-0.017111758,-0.0113319885,-0.018750118,0.06826499,-0.00054611993,0.047375903,0.0045140227,-0.009949623,-0.010308014,-0.029012622,0.027897626,0.015985386,0.063987054,0.005193828,-0.017669255,0.014995543,-0.017316554,0.04298419,-0.055249132,-0.041050017,-0.0719513,-0.015018298,-0.03970747,0.014608708,-0.014620086,0.006451042,-0.017111758,0.015587173,0.08132636,0.064169094,-0.009517278,0.027169466,0.0076741227,0.04116379,0.002960994,-0.0034729815,-0.04371235,-0.0032681865,-0.021594493,0.0036692433,0.0066217044,0.021480717,0.06626255,-0.028079666,-0.0028884625,-0.029308436,0.0692207,0.008834627,-0.045737546,0.052700575,-0.047330394,0.0040703,-0.037409216,0.0023167431,0.010125974,-0.024029277,0.025758658,-0.013357183,0.018852515,0.00782203,-0.010455921,0.026395798,0.020399855,0.047375903,-0.031538427,-0.00836815,0.019068688,-0.01541651,-0.0051284074,-0.024802947,-0.018021958,-0.012993104,0.031310875,-0.019250728,0.03019588,0.013994323,0.00836815,-0.005990253,-0.012867951,-0.003316541,0.0055180867,0.016884208,-0.011360432,-0.00786754,0.005552219,0.036225956,-0.011787089,-0.059982173,0.021457963,0.01555304,0.021184903,0.010125974,0.029513232,-0.016087784,0.031720467,0.016884208,0.01687283,0.025599372,0.0043718037,0.0070711155,0.021480717,-0.014221873,0.0091759525,0.017885428,0.001905731,-0.013357183,-0.008328329,0.019717205,0.011991884,0.011206836,-0.024052031,0.00026310465,-0.029399456,-0.009227151,0.025713148,-0.036567282,-0.032767195,0.017942315,-0.052564044,0.017748898,-0.03879727,0.013584733,-0.041232057,-0.031265367,-0.02992282,-0.04116379,-0.006177982,0.0412093,-0.014779371,0.04407643,-0.027146712,-0.0029126396,-0.013960191,-0.013448203,-0.009847225,-0.055385664,-0.0115481615,0.0030577027,0.046101626,-0.018272262,0.026896406,-0.02992282,-0.026350288,0.0066444594,-0.0073214206,-0.024711927,-0.022686733,0.024575397,-0.0091076875,-0.010239749,0.01796507,-0.007418129,0.0034957365,0.026555082,-0.02005853,0.0030463252,0.019956132,0.005239338,0.022004083,0.019922,-0.0058935443,-0.057433613,0.023574177,0.032494135,0.022026837,-0.020024398,0.0050231656,0.03606667,0.037727784,-0.0020010176,-0.043325514,-0.008572945,-0.041050017,0.04157338,0.049878955,0.028147932,0.03565708,-0.014108098,-0.063805014,-0.039844,0.07691189,0.026668856,-0.07518251,-0.009813093,-0.0416644,-0.026191002,0.021913063,0.024643661,-0.009722073,0.011258035,-0.051562823,-0.02024057,-0.03611218,-0.010905333,-0.02196995,0.036954116,-0.042779393,-0.04216501,0.062849306,0.01755548,0.018727362,0.034269027,-0.013300296,0.03588463,0.0068378765,0.019683072,-0.001526007,0.002952461,-0.025917942,0.008254375,0.0011981928,-0.03470137,0.043234494,-0.03779605,-0.025007742,-0.035952896,0.01705487,0.020069908,-0.0113319885,-0.015291358,-0.012651779,-0.014972788,-0.049787935,-0.009613986,0.0000036304664,0.017862672,-0.027305996,0.015371,0.004912235,-0.011610737,0.002101993,-0.026077228,0.010199928,0.007691189,-0.031788733,-0.00044265582,0.04362133,0.011946374,0.03379117,-0.040048797,-0.012026016,-0.040503897,0.03593014,0.0042551844,0.008464859,0.015405133,-0.027351506,0.026441308,-0.0070654266,0.038820025,0.031515673,-0.024780191,-0.0005564308,0.018670475,0.023096323,0.019353125,-0.0020152396,0.02278913,0.0040105684,-0.012378719,-0.0077423877,0.020581895,0.02969527,-0.047603454,0.0021631469,-0.011576605,0.006109717,0.045350708,0.03183424,0.0037119088,0.0384787,-0.022550203,0.014893145,-0.027192222,-0.01527998,-0.023369383,-0.064169094,0.016201558,0.0037574188,-0.048604675,0.029900067,-0.017987825,-0.018226752,-0.009022356,0.011787089,0.026532328,0.0026210912,0.004067456,-0.01755548,0.020354345,0.01983098,-0.032721687,0.0062064254,-0.03597565,0.010717603,-0.019387258,-0.025280802,-0.056750964,0.0058935443,-0.018329151,-0.024370601,0.000303637,-0.018454302,0.004744417,0.03351811,-0.0076513677,0.02278913,-0.03388219,-0.034360047,-0.007918739,-0.016110538,0.014369781,0.020229192,0.007418129,0.0067980555,-0.007059738,0.007509149,0.033859435,-0.0014975632,0.015120695,0.037682276,0.0029809047,0.0006200737,-0.0028713963,0.027442526,-0.015257225,-0.027260486,-0.009710695,-0.0065306844,0.00013190787,-0.03397321,0.025713148,-0.021617247,0.021867553,-0.023665197,0.032425873,-0.02065016,0.057797693,-0.013937436,0.022846017,0.036271464,-0.009272661,-0.019523788,-0.00076869223,0.01546202,-0.0069573405,0.0089256475,0.0062519354,-0.027715586,0.0019071532,-0.014267383,0.0015544507,-0.00052372046,-0.04089073,0.026668856,0.0041470984,0.016804565,-0.032949235,0.040913485,-0.008453482,0.032266587,-0.018829761,0.022595713,-0.004912235,0.007264533,-0.0034985808,0.020980107,-0.012321831,0.003674932,-0.01951241,-0.01091671,-0.02960425,-0.050197523,0.03333607,0.0047330395,-0.010364901,0.009705006,-0.048513655,-0.010455921,0.033358827,-0.031720467,-0.0020365722,0.0036550215,0.012390096,-0.009739139,-0.0076286127,-0.004448602,0.00095784315,0.002360831,0.00977896,0.022163367,0.020354345,0.020365722,0.008652587,-0.027192222,0.004425847,0.0070199165,-0.04644295,-0.023642443,0.010160106,-0.016702168,-0.0023394981,-0.0034104052,0.043006945,0.007145069,-0.03506545,0.007691189,-0.04216501,0.010984975,-0.028534766,-0.014108098,-0.005685905,-0.023221474,0.011451452,-0.020581895,0.0027761096,0.031265367,-0.023915501,-0.019762715,-0.022277143,-0.009284039,0.030855777,0.015814723,-0.02065016,-0.00032994745,-0.022800507,0.026236512,-0.0015601395,0.00088175613,-0.011832599,0.010342146,0.016679414,0.03269893,-0.02206097,-0.017498594,-0.0311971,0.0023807415,-0.0022285676,-0.00037901293,-0.0231077,-0.0018886648,-0.012879329,-0.007577414,-0.024256827,-0.006013008,-0.017760275,0.006405532,-0.013277541,-0.0026210912,-0.008976846,-0.009665185,0.008646899,-0.017885428,-0.027283242,0.01596263,0.029080886,0.010410411,0.005139785,0.039320637,-0.01746446,-0.021310056,-0.009500211,0.024711927,-0.02087771,-0.014938655,-0.0311971,-0.027237732,0.0021162147,0.035361268,0.022720864,-0.015746458,-0.019341748,-0.025098762,-0.0037716408,0.008726542,-0.045874074,0.03069649,0.0073157316,-0.014494933,0.018181242,-0.0058110575,-0.027943136,-0.028034156,-0.024393357,-0.036089424,-0.03228934,-0.012902084,0.024029277,-0.0020550606,-0.04057216,0.032061793,0.002323854,-0.07436333,-0.04134583,0.047239374,-0.044190206,-0.015450643,0.0025770036,-0.010717603,0.024598151,0.024598151,0.0007637146,0.007981315,-0.038729005,0.0020152396,-0.013368561,0.031674955,0.015939876,0.023096323,-0.0031487227,-0.026873652,-0.018033335,-0.002012395,-0.009386436,0.013584733,0.0070483605,0.037682276,-0.014654218,0.0032141434,-0.018624965,0.019580675,-0.01487039,0.010586763,0.039684717,0.01114426,-0.037545744,0.0035668458,0.022948414,0.035042696,0.016850075,-0.008908581,-0.031401895,0.021913063,-0.0074693277,0.0114116315,-0.046238154,-0.020775313,-0.014699728,0.010802935,0.04216501,-0.024416111,-0.01527998,-0.0016070717,-0.038023602,0.022481937,0.021048373,-0.0052222717,-0.011787089,-0.04139134,0.013641621,-0.04248358,0.0072531556,-0.0006186515,0.014779371,0.033040255,0.0057627033,0.029672517,-0.034223516,-0.020593273,0.017817162,0.016201558,-0.0011896597,0.012811064,-0.0028827738,0.022231633,0.019410012,-0.012151169,-0.0000016749589,0.034678616,-0.00557213,0.0037033758,0.012071526,-0.014290138,-0.008288507,0.04061767,0.015894366,0.020763936,0.0000058109686,-0.017839918,-0.0167363,0.004249496,0.031083327,0.048377123,0.0049236123,0.005748481,-0.009813093,0.027260486,-0.012310454,-0.015564418,-0.004093055,0.051653843,-0.028989866,0.014119476,0.003916704,0.021446586,-0.006490863,-0.026464062,-0.001921375,0.004269406,-0.00777652,-0.007924428,-0.042415313,0.019990265,0.0067297905,-0.0034559153,0.026350288,-0.024279581,0.008567257,0.022709487,0.0050060996,-0.0054242224,-0.00964243,0.03374566,0.012162546,0.0024618062,-0.012378719,-0.018283641,-0.002359409,0.0006278957,0.006399843,-0.012344586,0.04039012,-0.0067753005,0.006126783,0.021184903,-0.014585953,0.023528667,-0.014233251,0.0045254,0.027510792,-0.0066217044,0.018499812,-0.013243409,-0.024393357,-0.0024162962,-0.03228934,-0.016759055,0.019455522,-0.006445353,0.037864316,-0.0113092335,-0.04616989,0.022254387,0.014290138,0.0025869587,0.016394975,0.042233273,0.045350708,-0.019011801,0.0014541865,-0.033267807,0.0021531917,0.04607887,0.025189782,0.031128837,-0.02092322,-0.032152813,-0.015746458,0.00029208174,0.0030264147,-0.009477456,-0.0311971,0.014403913,0.00048034376,0.014733861,0.026941916,0.0018246664,0.004314916,0.042961434,-0.01632671,0.020206438,0.028580276,-0.03019588,-0.013607488,0.031674955,0.008567257,0.033813927,-0.009881358,0.020399855,-0.03292648,-0.016724924,-0.009517278,-0.0066387705,0.015382378,0.0077480767,0.0014605864,-0.01109875,-0.0051739174,-0.0055209314,0.0002954594,-0.019660318,-0.002474606,0.033950455,0.01105324,0.009676563,-0.0043462045,-0.021355566,0.028011402,-0.054338932,0.052473024,0.014119476,0.030127617,-0.0057513257,-0.0025002053,0.02046812,0.03106057,0.0072247116,-0.011349055,-0.022993924,-0.010495743,-0.008419349,-0.005062987,-0.0051966724,-0.007304354,-0.008572945,0.016759055,-0.051835883,-0.008123534,-0.038296662,-0.017794408,-0.044235714,0.005216583,-0.0058537233,0.006610327,0.005461199,0.00015119629,0.031629447,-0.021310056,-0.000630029,0.008754985,0.0057797693,0.031174347,-0.0044144695,0.003956525,-0.030582717,-0.02178791,-0.039047576,0.029103642,0.0043718037,0.056068312,0.0035270245,0.018875271,-0.016702168,0.023687951,0.0011249501,-0.016588394,0.041823685,0.026486818,-0.015541663,0.017862672,0.0032368985,-0.02278913,0.016247068,-0.016793188,-0.013880548,-0.02233403,-0.001844577,0.0008085135,0.007122314,0.00539009,-0.010746048,0.013197899,0.010296636,0.025986208,0.0112182135,-0.009420569,-0.006195048,-0.00025066052,0.012697289,-0.004926457,0.0066842805,-0.0070711155,-0.014142231,-0.022038216,-0.028694052,-0.022356784,0.003234054,-0.019034555,0.002010973,-0.0043547377,0.027351506,0.017498594,0.007941494,-0.037409216,-0.0090849325,-0.030742,0.017794408,-0.0093693705,-0.0348379,-0.03010486,0.005887856,0.006849254,0.016577015,-0.022686733,0.00051589846,0.011957751,0.011798467,-0.0056773718,0.021310056,-0.0069744065,0.042824905,0.012970349,-0.003834217,0.033950455,0.02256158,-0.037500236,-0.020263325,0.0015160517,-0.0035554683,-0.03602116,-0.014904523,-0.02183342,0.01714589,-0.015314113,-0.002687934,0.012890706,-0.027101202,-0.022891527,0.050925683,-0.004357582,0.039639205,0.0059618093,0.04139134,-0.0077878977,-0.021230413,-0.050060995,-0.04157338,-0.003143034,-0.044622548,0.013095501,0.023505913,0.010268193,-0.012424229,0.017168645,-0.07372619,0.00873223,0.010859823,-0.002943928,-0.007145069,-0.013857793,0.012913461,0.013175144,0.06498827,0.012503871,-0.029126396,-0.004644864,0.06867458,0.006945963,0.0031259677,0.031697713,-0.008863072,-0.027442526,-0.014130853,0.0034331603,0.02169689,-0.012970349,0.018966291,0.015359623,-0.032539647,0.044622548,0.021480717,-0.018477058,0.016303955,0.023801727,-0.01996751,0.043234494,-0.013778151,-0.008521747,0.022413673,-0.0065477504,0.0052478714,0.012151169,0.002983749,-0.0025898032,0.003029259,0.009249906,-0.023346627,-0.0002954594,-0.012913461,-0.03797809,0.036635544,-0.0029666827,-0.012902084,-0.003666399,-0.0022527447,0.0011107282,0.010609518,-0.008555879,0.008681032,-0.024143051,-0.038182884,-0.026987426,0.013846416,0.03055996,0.023756217,-0.0050885864,0.009972378,-0.0012102814,-0.004363271,0.031265367,-0.021719646,-0.005188139,-0.015632683,0.06385052,-0.037477482,0.0020507942,-0.007145069,0.050561603,0.00388826,-0.012754176,-0.0022527447,0.04061767,0.017794408,0.035179228,-0.019000422,0.006627393,-0.026259268,0.01623569,0.004676152,-0.014631463,-0.012890706,0.031765975,0.0017421795,-0.028625786,0.04434949,0.018602211,-0.015200338,0.033540867,0.03310852,-0.010410411,-0.003865505,0.017123135,-0.012026016,-0.03474688,0.020206438,0.020308835,0.0039963466,0.004667619,-0.032858215,-0.0023793194,-0.0034303158,-0.011610737,-0.02119628,0.021310056,0.027101202,0.0049833446,0.013960191,0.016850075,-0.028398236,0.029718027,-0.008954091,0.016565638,0.04284766,-0.022675354,0.029900067,0.0042637177,-0.012993104,-0.022026837,0.0010716182,0.015063808,-0.009045111,-0.0453052,0.024211317,0.065079294,-0.0014733861,0.020274702,-0.015302735,0.026941916,0.0019725738,-0.025212537,0.044986628,-0.0012422806,0.0116846915,0.019432768,-0.0116391815,-0.019080065,-0.026441308,-0.0010573963,-0.0043518934,0.01682732,-0.014802125,-0.025144272,-0.031583935,0.009653808,0.0407542,-0.003953681,0.012014639,-0.015211715,0.0031970772,-0.014335648,-0.010512808,-0.011798467,0.0057427925,-0.0339277,0.007526215,-0.018841138,0.025007742,0.027260486,-0.0045822877,-0.018807005,0.00502601,-0.0028216196,-0.0298318,-0.004949212,0.000018643987,-0.036476262,0.0362032,-0.016303955,0.018124355,-0.009830159,-0.01678181,-0.012594891,0.0059333653,-0.028944356,0.006422598,-0.063076854,0.027920382,-0.0045054895,0.018727362,0.018317772,-0.03920686,-0.018715985,-0.0032966302,-0.0017734676,0.016929718,0.0022484781,0.01923935,-0.025371822,-0.00084975694,0.000112797235,-0.014108098,-0.012708666,-0.024325091,-0.024052031,-0.01741895,-0.03329056,0.001951241,-0.02192444,0.018044712,0.005967498,0.042733885,0.04061767,-0.008009759,-0.021992706,0.015837478,0.012333209,-0.0048240595,-0.011440075,-0.016747678,0.007509149,0.01960343,0.012117036,0.014039833,0.003074769,0.03042343,0.043325514,0.014608708,-0.007480705,-0.0167363,0.025826922,0.0114685185,0.010194239,0.00823162,0.0067297905,-0.0038711939,-0.011900864,0.012435606,-0.025053252,-0.006018697,0.023369383,0.050971195,0.009722073,0.019865112,-0.019227972,-0.008846005,0.007145069,0.007890295,0.019546542,-0.051198743,-0.01527998,-0.0010645072,-0.0114798965,-0.0042096744,0.020763936,-0.0076741227,0.031583935,-0.024529887,0.014460801,-0.011246657,0.014164986,0.0009038001,-0.0092783505,0.015291358,-0.0060300743,-0.0023409203,0.043689594,-0.026122738,-0.050698135,0.023392137,-0.010455921,0.0013304562,-0.03033241,0.0047501056,-0.01737344,0.03388219,-0.022083726,0.003552624,0.0011448608,0.009784649,0.028603032,-0.03602116,0.040594917,-0.017362064,0.036590036,-0.017032115,0.009710695,-0.014699728,-0.03456484,0.03788707,-0.027055692,0.027146712,-0.024825701,0.007031294,-0.007190579,0.012947594,0.0025627816,-0.007264533,-0.0023039435,-0.0114343865,-0.03697687,0.010239749,0.0007878918,0.033313315,-0.006542062,-0.024234071,0.0065022404,0.008254375,-0.0075887917,0.010791558,-0.0090849325,0.0012963237,-0.0031743222,0.0060926504,-0.041960213,0.007873229,-0.0008860227,-0.0012949016,0.00059482985,0.031606693,-0.0013574779,-0.036407996,0.022857394,0.0013169454,0.0004600776,-0.026464062,-0.02964976,0.03306301,-0.013186521,-0.0051511624,-0.006018697,0.019182462,0.035224736,-0.010296636,0.02210648,0.01646324,-0.017271044,-0.0035782233,-0.008851694,-0.008629832,-0.053110164,-0.0008134912,0.013607488,0.0028216196,-0.0033819615,-0.005324669,-0.02042261,0.028989866,0.015951253,-0.021298677,0.012435606,0.03797809,-0.037204422,-0.0064112204,-0.00093651033,0.0055550635,-0.022857394,-0.0017222689,0.0002702156,0.014096721,-0.03147016,0.012378719,-0.03333607,0.04252909,0.0072247116,0.02996833,-0.012526626,-0.03015037,-0.024529887,0.031128837,0.012674534,0.029080886,-0.0074920827,-0.03597565,0.022891527,0.0030776134,0.0077480767,-0.007645679,-0.007486394,0.010922398,0.0038854158,0.014153608,0.023915501,-0.044281226,-0.014722483,-0.0019626184,-0.025417332,-0.006581883,-0.028898846,-0.018681852,0.004363271,-0.02247056,-0.021958573,0.009807404,-0.052017923,-0.010569696,-0.006041452,0.024666417,0.026964672,-0.031606693,-0.045145914,-0.0033421402]},{"id":"guide-emojis-2","type":"guide","source":"guides","text":"Guide: Emojis & Stickers (emojis)\nSection: Quick Reference","meta":{"slug":"emojis","url":"/guides/emojis"},"embedding":[0.000002835665,-0.0006991855,-0.018913923,-0.017874695,-0.058098875,0.001905758,-0.03386656,0.04523692,-0.023877757,0.00041148785,-0.030296508,-0.003310242,0.006754972,-0.04054206,0.003722876,0.017911375,-0.039784037,0.015820695,-0.0034416737,0.047584347,0.016199708,-0.0040835487,0.013326552,0.062500305,0.031788103,0.04626392,-0.06029959,0.019953148,0.013583302,-0.0053703557,-0.0049913437,-0.032203794,0.09189208,-0.0296852,-0.035358153,0.01593073,-0.03151913,0.028658198,-0.007610806,0.0117982775,-0.016603172,0.010111063,0.040077463,-0.0066388235,-0.022960793,0.018742755,0.0025583312,0.01095467,0.01571066,-0.004948552,0.015148254,-0.007292925,-0.0019485496,-0.0066327103,-0.010257777,-0.045408085,-0.031592485,-0.032326058,-0.0056576715,0.0018369857,0.032008175,-0.04440554,-0.027557842,-0.019610815,-0.01811922,0.018033637,-0.06699955,0.03880594,-0.014451361,-0.043354083,0.03266839,0.040273085,-0.01756904,-0.031250153,0.028609294,-0.041495703,-0.0044442215,0.042204823,-0.0037289893,-0.04083549,-0.02672646,0.020295482,-0.038047917,-0.021249125,-0.043965396,-0.019781983,-0.051154397,-0.03283956,-0.023437614,-0.024489067,0.0013059104,-0.033010725,-0.045677062,-0.045065753,0.04699749,-0.015771791,-0.019036185,0.022801852,-0.045530345,0.02672646,0.047486536,-0.054822255,-0.09820079,0.003169641,0.041935846,-0.005266433,-0.030051986,0.024171187,-0.033695392,0.01596741,-0.0695915,-0.026873175,-0.033524223,0.0312257,0.034331154,0.025283769,0.018644946,-0.04924711,0.047168657,-0.048366822,-0.06939588,-0.032595035,0.058539018,-0.025259318,-0.004413656,0.007977592,-0.020002054,-0.012434039,-0.037338797,-0.034331154,0.042204823,-0.043036204,0.042229276,-0.008772294,-0.021065732,-0.01413348,0.028829366,0.006418752,-0.010349473,0.0041538496,0.0363607,-0.02258178,0.008711163,-0.013668885,-0.016921053,-0.017813565,-0.077025026,-0.00058647525,-0.06235359,0.00064340344,-0.001348702,0.018583816,0.0011454416,-0.028193604,-0.025919532,-0.011951105,0.0027371391,-0.018596042,-0.025748365,-0.030467676,-0.009157419,-0.04726647,0.051154397,-0.041104466,-0.042424895,-0.022716269,-0.0045664837,-0.02297302,-0.017715756,0.04577487,0.026873175,-0.05159454,-0.011627111,-0.022752948,-0.056680635,-0.027631199,0.023303127,0.006528788,-0.08035055,0.013534397,0.019415196,0.050812062,-0.045383632,-0.01693328,0.018938376,-0.01320429,0.0317392,-0.011138063,-0.013681111,-0.029269509,0.022594007,0.0064554303,0.0022328086,-0.05066535,0.02206828,-0.017752433,0.015368326,-0.07531336,0.031910367,-0.034233343,0.008491091,0.07076521,0.046019394,0.0055873706,-0.008509431,-0.025332674,-0.035798296,0.014182385,-0.0028257791,0.0056515583,0.036800843,-0.04147125,-0.029440675,0.0032521677,-0.04425882,0.0327662,-0.017789112,0.0065960316,-0.025772817,0.0404198,-0.04699749,-0.00002705523,0.07242797,-0.024000019,-0.023278674,0.02348652,0.011627111,-0.013424361,0.03132351,0.025748365,0.010538979,0.023584329,-0.010759051,-0.02547939,0.025406031,-0.044381086,-0.011089158,-0.0073785083,-0.015148254,-0.0028043832,-0.0049302126,0.03880594,0.031054534,0.028609294,0.017226707,0.008234342,-0.008906783,-0.010924105,0.03129906,-0.010098836,0.09287017,0.0007041524,0.048415728,-0.015294969,0.0069383653,-0.03438006,0.014194611,0.047657706,0.010477848,0.02569946,-0.037827846,-0.027460031,-0.003438617,-0.014182385,0.014316874,0.022728495,-0.020906791,0.045383632,-0.033719845,-0.010190533,-0.018229255,0.0018064202,0.082893595,0.067537494,-0.036091726,0.005049418,-0.0049393824,0.0028471749,-0.046019394,0.024024472,-0.002903721,-0.039343894,-0.0035272571,-0.031665843,-0.03142132,0.033450868,0.026017342,-0.013008671,-0.014536945,0.018253708,-0.0033866558,0.0030061156,0.028095795,0.012739695,0.0070789666,0.035309248,0.006012231,0.009511979,0.004520635,-0.01413348,-0.021102412,-0.0243179,0.02589508,0.0052817157,-0.00051693874,0.013253194,-0.032570582,-0.01924403,0.022141637,0.012923087,0.014683659,-0.015429457,0.004141623,-0.0095180925,-0.046092752,0.0097503895,0.028315866,0.023205316,0.02714215,-0.050812062,0.008839538,0.0037351022,0.075606786,-0.0026484993,-0.040053014,-0.04159351,-0.022153864,0.013742242,0.032595035,-0.034062177,0.026457485,-0.033744294,-0.0055965404,0.055458017,-0.014695886,-0.021481423,0.002067755,0.0008497205,-0.028242508,0.0184371,-0.0062170196,-0.05281716,-0.020319935,-0.01525829,-0.04487013,0.0016123294,0.0031268492,0.04411211,0.005098323,0.019843113,-0.050127394,0.03254613,0.0045542573,-0.06162002,0.045114655,-0.003946004,0.004080492,-0.04342744,0.032643937,0.06675502,-0.011144176,-0.03132351,-0.019647494,0.013069802,0.0063942997,-0.017226707,0.006871121,-0.0066327103,0.03861032,-0.026286317,-0.026139604,0.0060917013,-0.011773825,-0.022251673,0.007372395,-0.0039398912,-0.0017834961,0.019953148,-0.026457485,0.033206344,0.006424865,-0.009426395,-0.0004966891,-0.014940409,0.045530345,-0.00017517844,0.0006307952,0.010056045,-0.0058532907,0.015563945,0.027729008,-0.007904234,-0.011773825,-0.011779938,0.062744826,0.042278178,-0.005477335,0.057120778,0.0134365875,-0.044283275,-0.0011943463,0.0001537826,0.0016108011,0.019268481,-0.014292421,0.01606522,-0.04677742,0.01596741,-0.0004389968,-0.019671947,0.01156598,-0.057903256,0.018131446,0.017556814,-0.009738164,-0.008130419,0.0033591469,-0.019415196,0.0404198,0.026995437,-0.018106993,-0.0429873,-0.037094273,-0.035676036,-0.002802855,0.01413348,0.013827826,-0.00888233,0.041642416,-0.034135535,-0.012165063,0.003628123,0.0009276625,0.00042486025,0.040468704,-0.039343894,0.019684173,-0.006877234,0.02267959,-0.022459518,-0.064896636,-0.04369642,0.0048110075,0.016395327,-0.018241482,0.0030412658,-0.04922266,-0.042155918,-0.009322473,0.013130932,-0.034257796,0.03164139,-0.01892615,0.0017773829,-0.0025950097,0.0016734604,0.014353552,-0.007800312,0.04230263,0.021065732,0.036972012,0.017116671,0.019708624,0.034477867,0.009175759,-0.04420992,-0.058734637,0.004468674,0.047486536,0.017300066,0.009426395,0.020124316,0.0378523,0.011578206,0.022532877,-0.058587924,0.02473359,-0.06328278,0.026848722,0.006602145,-0.0017223652,0.0022159978,0.00105833,-0.02384108,0.0013410606,0.05467554,0.08925122,-0.031910367,0.02376772,-0.038463607,-0.04313401,0.007635258,0.00013792675,-0.012213968,0.008900669,-0.030369867,0.0017972506,-0.06029959,-0.0058746864,-0.021126863,0.035578225,0.016921053,-0.04095775,0.0655324,0.08255126,0.026286317,0.066803925,0.032912914,0.024525745,-0.017226707,0.00030794725,-0.03748551,-0.030687748,-0.008179324,-0.017617946,0.012421813,-0.0046948586,0.024648007,-0.0046673496,-0.027484484,-0.019256257,-0.006742746,0.07590021,-0.012220081,-0.018168125,-0.0103372475,0.0151604805,-0.041911393,-0.016982183,-0.04159351,0.017886922,-0.013791147,-0.008539997,-0.0070850793,0.0010674996,0.041838035,-0.0057921596,0.019623041,-0.005098323,-0.028927175,-0.0076046926,0.026848722,0.0337932,0.034966916,-0.013888957,-0.017495684,-0.037338797,0.022153864,0.022826305,0.0047834986,0.008295473,-0.025406031,0.07448197,-0.014610302,0.035064723,-0.009077949,-0.030981176,-0.003466126,0.042253725,-0.011223646,-0.0019195125,-0.02396334,-0.0024421823,-0.008601127,-0.020552233,-0.00084895635,0.026090698,0.009762616,0.008870103,-0.015087124,-0.0011530829,-0.00055208907,0.030858913,0.020540006,-0.002529294,0.009285795,-0.008870103,0.0044870134,-0.02550384,0.0129964445,-0.0065165614,-0.0016474797,0.00379929,-0.036556322,0.011119723,0.004869082,-0.012678564,-0.016273065,-0.022532877,-0.0048904778,0.062011257,-0.010820182,-0.013693337,-0.0097503895,-0.021420293,0.020393291,-0.055262398,-0.03337751,-0.031005628,-0.017899148,-0.022716269,-0.029783009,-0.03616508,0.0093713775,-0.021664817,0.015331647,-0.038659226,-0.034257796,0.013326552,0.007292925,-0.027484484,0.025870627,-0.012690789,-0.031078985,-0.0015183404,0.013656659,0.019940922,-0.0017544589,-0.00077330676,-0.015686207,-0.016370874,0.008778407,0.025992889,-0.008154872,-0.0067121806,0.042644966,0.033108532,-0.007488544,0.008124306,-0.02027103,-0.011810504,0.01259298,0.0068833474,-0.015270516,0.008429961,-0.001476313,-0.0064982222,-0.039979655,0.029000532,-0.020002054,0.031543583,-0.023083055,0.04814675,-0.0071645495,0.045701515,0.028804913,0.008179324,-0.012085593,0.001548906,0.015380552,0.0037870635,-0.021982698,-0.0056974064,-0.019647494,-0.0088456515,0.003169641,0.019965375,0.026970984,-0.04313401,-0.003927665,-0.015881827,0.012024462,-0.009921556,-0.012764147,-0.03963732,0.036482964,0.024831401,0.015172707,-0.020674495,-0.02212941,-0.055458017,0.018045863,0.019060636,-0.003236885,-0.034673486,-0.02190934,-0.0032949594,-0.037412155,0.018681625,0.000406903,-0.017434552,-0.013778921,-0.044601157,-0.005984722,0.024782496,-0.005572088,0.012110045,0.03183701,0.0030275113,-0.02948958,0.004184415,0.0030229264,0.017471232,0.016175255,0.024232317,0.011076932,0.04905149,-0.0004985995,-0.0153071955,-0.09507088,-0.00931636,0.0041935844,-0.05487116,-0.020026507,-0.00015617053,-0.04012637,-0.036091726,-0.01458585,0.05599597,-0.0075313356,-0.02220277,0.011028027,-0.04516356,-0.022153864,-0.021408066,-0.02232503,-0.021273578,0.0072440202,0.036996465,0.003398882,-0.012055027,0.046386182,-0.029783009,-0.00042638852,0.0015106992,-0.00080310815,0.014683659,-0.005822725,-0.0035486529,-0.012281212,-0.018840564,0.007555788,0.018938376,-0.0038084595,0.0064004124,0.03428225,0.004597049,0.01920735,-0.009579223,-0.038854845,-0.036556322,-0.018131446,-0.0046673496,0.012629659,-0.0054589957,0.016676528,-0.037387703,-0.0029021928,-0.057267494,-0.047290917,0.020063184,0.008570562,-0.005504844,-0.019133994,0.020185446,-0.009591449,0.0030443224,-0.020833435,-0.009640354,0.0073907343,0.042840585,0.041446798,-0.019867565,0.034893557,0.0083199255,-0.020026507,-0.0053061685,-0.00422415,-0.0291717,-0.01914622,-0.049369372,-0.017397875,0.013399908,0.014267969,0.03000308,-0.015661756,-0.029465128,-0.009958236,-0.020503327,0.03134796,-0.04641063,0.011596546,-0.007818651,-0.00023802872,0.0021472254,0.00058800355,0.012690789,-0.01760572,-0.0015970466,-0.03633625,-0.0061161537,-0.024452388,0.009359152,-0.028682651,-0.04956499,-0.011669902,0.006290377,-0.07081412,0.0048660254,0.01693328,-0.005822725,-0.0015359157,-0.0016398383,-0.030051986,0.017483458,0.016652076,-0.014830373,0.015771791,0.0049577216,0.0018706077,-0.033744294,0.015282743,-0.000037944184,0.062500305,0.020283256,0.0116821285,-0.047779966,0.019060636,-0.004862969,0.037192084,0.026359675,0.02733777,-0.012580754,-0.0036220101,0.006363734,0.01593073,-0.0034233343,0.009145193,0.035358153,0.017544588,-0.017177803,0.03357313,0.009946009,0.0073357164,-0.017838018,-0.00941417,-0.018938376,0.06284264,-0.016407553,0.039906297,-0.021884888,-0.00031463348,-0.020808982,-0.028535938,0.02135916,-0.018730529,0.0060886447,-0.00056546147,-0.018094767,0.034820203,0.002651556,-0.004872138,-0.01564953,-0.0066449367,-0.0012440153,-0.03156803,0.03000308,0.023889983,-0.0010399907,0.03748551,0.01336323,0.037509963,-0.004508409,-0.009206324,-0.008069288,0.02052778,0.019513005,0.0010896595,0.018657172,0.0038023463,-0.0044442215,-0.036189534,0.033499774,0.013864504,-0.03041877,-0.021664817,0.0013678055,-0.01259298,-0.007256246,0.0007606985,0.010214985,0.032643937,0.009548658,-0.011908313,-0.028853819,0.024978114,0.012360683,0.04741318,0.0063087163,0.006320942,-0.0070178355,0.041080013,-0.0006418752,-0.013668885,-0.0022633742,0.02723996,-0.00594193,0.047046397,-0.0046153883,-0.009151306,-0.039759584,-0.047144204,0.028022436,-0.006547127,-0.008093741,0.008980139,0.022007149,-0.027997985,-0.0060305703,-0.002484974,0.0057921596,-0.03134796,0.018217029,0.012910861,0.023413163,-0.016468683,-0.007989818,0.0013968427,0.008870103,-0.010068271,-0.029538484,-0.017006636,0.014255743,0.020821208,0.02753339,0.0049852305,0.0067671984,0.0066938414,0.014157933,0.0052725463,-0.019219577,0.037338797,-0.0153071955,0.0073601687,0.039539512,0.00629649,0.0025720857,0.00067740754,-0.0020876226,0.0022939397,-0.0111258365,-0.058441207,0.008919009,-0.023877757,0.033964366,0.025968436,-0.063918546,0.027264412,0.00059144216,0.0038573642,-0.0006162766,0.045114655,0.03951506,-0.0070728534,-0.033695392,-0.003906269,-0.009738164,0.017862469,0.014035671,0.007751407,-0.019586364,-0.0158696,0.0053917514,-0.02094347,0.029440675,0.0035180873,0.024036698,0.028438127,0.037950106,0.018351518,0.037192084,0.0088150855,0.023816627,0.021505876,0.008760069,0.0030687747,-0.008955687,-0.028389223,0.025234865,0.0048110075,0.024085602,0.035798296,0.0011446774,0.018217029,-0.024684686,-0.016603172,0.012605206,0.002535407,0.0040315874,-0.014463588,0.026115151,0.016004087,0.014915957,-0.020344388,-0.024036698,-0.006913913,-0.00957311,0.052230302,0.016908826,0.032643937,-0.0049210433,-0.012825278,-0.0010552733,-0.030443223,-0.0153561,0.0132898735,0.009854312,-0.019390743,-0.0014365778,0.018779434,0.026237413,0.0020066241,-0.014561397,-0.04044425,-0.012391248,0.000014387269,0.017556814,0.00026229006,-0.019965375,-0.036091726,-0.02390221,0.00009623352,0.014402457,-0.028902723,-0.005449826,-0.019598588,0.009291908,0.002535407,0.021518102,0.008099854,-0.008228228,0.020332161,-0.02887827,0.03684975,0.0076046926,0.0143413255,0.006779425,-0.00025350248,0.011480397,-0.016664302,-0.0088456515,-0.030492129,0.010728485,0.03980849,0.03748551,-0.010789616,0.0022847701,0.00058265455,-0.009200211,0.026555294,0.008246568,0.008050948,-0.000039735132,-0.030492129,-0.004447278,0.0013785034,-0.017397875,0.0343067,-0.0061375494,0.0070789666,-0.0020876226,-0.012073367,0.008900669,-0.0044319956,0.042571608,-0.023156412,-0.023975566,-0.022141637,0.022312805,0.016945506,0.0038023463,0.006430978,-0.008863991,0.016199708,0.009285795,0.006033627,-0.010074384,-0.0034997482,-0.008417735,-0.01805809,-0.000096663345,0.033695392,-0.013130932,0.014316874,0.0030336245,0.03993075,0.0011668374,0.014035671,-0.032521676,0.014646981,-0.03633625,0.01719003,-0.034477867,-0.024427935,-0.02422009,0.013240968,-0.01930516,0.03594501,0.019109542,0.02723996,0.024855852,0.02206828,-0.0047682156,0.015417231,0.004104945,0.016432004,-0.0052725463,-0.000819155,-0.0143413255,0.026653104,0.010905765,-0.0106001105,-0.018229255,-0.010942444,-0.04198475,-0.033499774,0.0048171203,-0.008796747,0.026922079,0.02396334,0.025430484,-0.042033654,-0.02001428,0.04487013,-0.011272551,0.021322483,0.009505866,-0.011229759,0.016945506,-0.02621296,-0.028731557,-0.037461057,-0.005070814,-0.04587268,-0.016358647,-0.01215895,-0.015417231,-0.019830886,0.023523198,-0.04308511,-0.0010575658,0.03186146,0.016517589,0.0059297043,-0.027508937,-0.00596027,0.011755486,0.07761188,-0.0032399416,-0.0063148295,-0.000107170235,0.033157438,0.023058603,-0.0037198195,0.053844158,0.016969958,-0.015282743,0.0076597105,0.019109542,0.021090185,-0.004386147,-0.0138155995,-0.000043603573,-0.020735625,0.019781983,0.04790223,-0.0064676567,0.00577382,0.0043250164,0.0050005135,0.028976081,0.00078476884,-0.031372413,0.017838018,-0.010728485,0.0012180345,-0.0014954164,0.00048484502,-0.020026507,0.006736633,0.02875601,-0.02672646,-0.007861443,0.01215895,-0.0129964445,0.0068405555,-0.012910861,-0.0047834986,-0.009456961,0.031543583,0.027362222,0.0014136537,-0.0063087163,0.007885896,-0.031665843,-0.010746825,-0.0014457474,0.027093247,0.01606522,0.0196964,0.0017636286,-0.0050952663,-0.022887435,-0.023914436,-0.006430978,0.004040757,-0.01602854,-0.010147741,0.07443307,-0.030687748,0.015686207,0.004590936,0.03288846,0.02017322,-0.020650042,0.00064837036,0.026481936,-0.0075863535,0.012226194,-0.026555294,0.035896108,-0.023303127,0.02348652,0.014194611,-0.009132967,0.012012236,0.014940409,0.04782887,0.0062323026,0.02875601,0.0048018377,-0.0077636335,0.024427935,0.029367318,-0.030051986,0.004104945,0.013351004,-0.0014144179,-0.0088150855,0.02042997,0.044772323,-0.009952122,-0.010936331,-0.007158437,0.00878452,-0.0012944483,-0.00045848227,-0.010844634,0.010331134,0.0065226746,-0.015405005,0.0064554303,-0.007445752,-0.0470953,-0.01294754,-0.019525232,0.014573623,0.032105986,-0.006045853,0.056582827,-0.010214985,-0.051056586,-0.027655652,-0.02518596,-0.008760069,0.009114628,0.014708112,-0.007616919,0.013057576,-0.01310648,0.010667355,0.015123802,0.02171372,-0.0038329118,0.0074151866,-0.0032124326,-0.0086683715,0.013240968,0.01121142,0.005896082,-0.0042455457,-0.042131465,0.024427935,-0.016248612,0.025381578,-0.013656659,-0.013778921,-0.0074702045,0.0025033134,0.040615417,-0.025626102,0.014989314,-0.0003834058,0.0072073415,-0.014219063,-0.015894052,-0.000601758,0.0024834457,0.0025033134,0.011382586,-0.011492622,0.0038543078,-0.022569554,-0.026066246,0.0013120235,0.010508413,0.011150289,-0.020931244,-0.010349473,-0.024207864,-0.011676015,0.00864392,-0.015515041,-0.0037259327,0.023266448,0.027166603,-0.034942463,-0.021077959,-0.011443717,-0.012910861,-0.026530841,0.013583302,0.009554771,0.0038145725,0.026090698,-0.055555828,-0.001688743,0.026359675,0.0109485565,0.019231804,-0.009878765,-0.004807951,-0.0109791225,-0.019892018,-0.019586364,0.008974027,-0.01010495,0.012764147,-0.011425379,-0.0069994964,-0.030443223,0.019464102,0.020148767,-0.011095271,0.01728784,0.042742774,0.028731557,-0.0010713203,-0.000088926456,0.019733077,0.0098482,-0.0052847723,0.01500154,-0.03831689,0.0022190541,-0.01898728,0.016676528,-0.0035547658,-0.018901696,0.006158945,0.051154397,-0.005471222,0.029269509,-0.01164545,-0.010673467,-0.015478361,-0.009744276,-0.012935313,-0.01644423,-0.021065732,-0.013008671,0.034233343,-0.03826799,0.0009765673,0.01215895,0.03714318,-0.026139604,0.0034875218,-0.012800825,-0.042571608,-0.0073418296,0.0018171181,0.022080507,-0.055017874,0.0029663804,-0.0075863535,0.02052778,0.0059388736,0.00029629417,-0.013693337,0.00066021446,-0.03337751,0.030296508,-0.008160984,0.0030489073,-0.0013143158,0.0050738705,0.01156598,0.00080769294,0.003655632,0.019231804,-0.013937862,-0.06582583,0.031665843,0.003025983,0.016908826,-0.016823243,-0.037387703,-0.027631199,0.03438006,-0.023254221,0.0031085098,0.018351518,-0.011639337,0.007873669,-0.033499774,0.04271832,-0.023462066,0.015466136,0.012910861,0.014671433,0.019488553,-0.006492109,0.032326058,-0.016016314,0.011028027,-0.01564953,0.03401327,-0.0035578224,0.02499034,-0.049809515,-0.0071339845,-0.00001004721,-0.017410101,-0.008338264,-0.0057218587,-0.015686207,0.030663295,0.019781983,-0.01644423,-0.029929724,-0.015857374,0.011700468,0.017972505,-0.017825792,-0.002764648,-0.005122775,0.01458585,-0.03144577,0.01879166,-0.008332151,0.006742746,0.016872147,0.030589938,0.002084566,0.0047315373,0.009628128,0.0168966,-0.011871634,-0.03973513,-0.016725434,0.011889974,-0.006620484,0.0038848731,0.013791147,0.014329099,0.057120778,0.00033755758,-0.0082893595,0.0043616947,0.00019657428,0.016346421,-0.0016138576,-0.029709652,-0.028511485,0.016395327,0.0023138071,0.011492622,0.011015801,-0.007629145,-0.019549685,0.02621296,0.0013082027,-0.018742755,-0.014671433,0.02550384,-0.032741748,-0.013852278,0.012482944,0.03491801,-0.045603704,-0.010111063,0.020417744,0.016603172,-0.038854845,-0.008216002,-0.036311798,0.029734105,0.01154764,0.03186146,0.005590427,0.017446779,-0.03308408,0.01602854,-0.034233343,0.0032277151,-0.014255743,-0.034673486,0.024183411,-0.0035822748,-0.0037320456,0.025332674,-0.0032277151,-0.012715242,-0.032081533,0.01602854,0.0053917514,-0.050420824,0.009377491,0.016749887,-0.038928203,0.007861443,-0.009976574,-0.0049241,-0.020307709,-0.011284777,-0.0010927161,0.03797456,-0.05506678,-0.00905961,-0.019549685,0.04883142,0.007953139,-0.009456961,-0.0074213,0.0019240973]}]} \ No newline at end of file diff --git a/apps/docs/public/favicon.svg b/apps/docs/public/favicon.svg deleted file mode 100644 index f438d0e..0000000 --- a/apps/docs/public/favicon.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/apps/docs/public/flux.png b/apps/docs/public/flux.png new file mode 100644 index 0000000..a849c06 Binary files /dev/null and b/apps/docs/public/flux.png differ diff --git a/apps/docs/public/fluxer-icon.svg b/apps/docs/public/fluxer-icon.svg deleted file mode 100644 index 079b038..0000000 --- a/apps/docs/public/fluxer-icon.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/docs/public/locales/guides-en.json b/apps/docs/public/locales/guides-en.json index 16c9b7c..bc13b83 100644 --- a/apps/docs/public/locales/guides-en.json +++ b/apps/docs/public/locales/guides-en.json @@ -331,7 +331,7 @@ }, "voice": { "title": "Voice", - "description": "Join voice channels and play audio with @fluxerjs/voice. Supports WebM/Opus streams—no FFmpeg required.", + "description": "Join voice channels and play audio with @erinjs/voice. Supports WebM/Opus streams—no FFmpeg required.", "sections": [ { "title": "Installation", @@ -389,11 +389,11 @@ }, { "title": "Gateway Dispatch Events Reference", - "description": "All events the Fluxer gateway can send. Use GatewayDispatchEvents from @fluxerjs/types for type-safe checks." + "description": "All events the Fluxer gateway can send. Use GatewayDispatchEvents from @erinjs/types for type-safe checks." }, { "title": "Event Payload Reference", - "description": "Payload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from @fluxerjs/types." + "description": "Payload structure for each event. Handler receives (data) or (message), (reaction, user, ...) etc. Types: Gateway*DispatchData from @erinjs/types." } ] }, diff --git a/apps/docs/public/sitemap.xml b/apps/docs/public/sitemap.xml index 4983f39..ab33cc0 100644 --- a/apps/docs/public/sitemap.xml +++ b/apps/docs/public/sitemap.xml @@ -1,32 +1,32 @@ - https://fluxerjs.blstmo.com/ + https://erin.js.org/ weekly 1 - https://fluxerjs.blstmo.com/changelog + https://erin.js.org/changelog weekly 0.9 - https://fluxerjs.blstmo.com/v/latest/guides + https://erin.js.org/v/latest/guides weekly 0.9 - https://fluxerjs.blstmo.com/v/latest/docs + https://erin.js.org/v/latest/docs weekly 0.9 - https://fluxerjs.blstmo.com/v/latest/guides/basic-bot + https://erin.js.org/v/latest/guides/basic-bot monthly 0.8 - https://fluxerjs.blstmo.com/v/latest/guides/installation + https://erin.js.org/v/latest/guides/installation monthly 0.8 diff --git a/apps/docs/src/App.vue b/apps/docs/src/App.vue index bda015a..3b215eb 100644 --- a/apps/docs/src/App.vue +++ b/apps/docs/src/App.vue @@ -4,7 +4,7 @@